commit 20a40bd2259cf67f64ad8ad49cf16bbffb07ccc2 Author: Max W. <66736561+Walzen665@users.noreply.github.com> Date: Thu Jan 23 19:13:31 2025 +0100 Initial diff --git a/daten-abfragen/notes.md b/daten-abfragen/notes.md new file mode 100644 index 0000000..bede75e --- /dev/null +++ b/daten-abfragen/notes.md @@ -0,0 +1,10 @@ +# Daten abfragen + +1. Bei Suche nach Daten, die Daten immer in `` ` `` Quotes setzen. Sonst werden die Spalten miteinander verglichen. + +2. MySQL ignoriert Groß- und Kleinschreibung und Ä = A, Ö = O, Ü = U. + +# Syntax +`SELECT COUNT(*)` Zählt die Anzahl der Zeilen in einer Tabelle. + +`SELECT DISTINCT ` Gibt nur einzigartige Werte zurück. \ No newline at end of file diff --git a/daten-abfragen/select.sql b/daten-abfragen/select.sql new file mode 100644 index 0000000..e888e41 --- /dev/null +++ b/daten-abfragen/select.sql @@ -0,0 +1,67 @@ +# use bookstore; + +select * +from customers; + +select customers.firstname, customers.lastname, customers.age +from customers; + +select count(*) +from customers +where customers.age > 30; + +select count(*) +from customers +where customers.age > 30 + AND customers.age < 40; + +select * +from customers +where title = 'Frau Dr.' + OR title = 'Herr Dr.'; + +select * +from customers +where (title = 'Frau Dr.' OR title = 'Herr Dr.') + AND age < 30; + +select count(distinct customers.lastname) +from customers; + +select count(customers.age) +from customers +where age < 30; + +select distinct customers.firstname +from customers; + +select distinct customers.firstname, lastname +from customers; + +select count(distinct customers.firstname) +from customers; + +# Aufgabe SELECT + +select count(*) +from baby_names; # 220636 + +select count(*) +from baby_names +where gender = 'm'; # 94322 + +select count(distinct baby_names.name) +from baby_names; # 6809 + +select count(distinct baby_names.name) +from baby_names +where gender = 'm'; # 2756 +select count(distinct baby_names.name) +from baby_names +where gender = 'f'; # 4535 + +select * +from baby_names +where `count` = 19250; # Sandra + +select * from baby_names where gender != 'm' and gender != 'f'; \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..5e002ee --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3.8' + +services: + mysql: + image: mysql:latest + container_name: mysql_container + environment: + MYSQL_ROOT_PASSWORD: root_password + MYSQL_DATABASE: bookstore + MYSQL_USER: my_user + MYSQL_PASSWORD: my_password + volumes: + - ./sql-scripts:/docker-entrypoint-initdb.d + ports: + - "3306:3306" + restart: unless-stopped \ No newline at end of file diff --git a/sql-scripts/bookstore.sql b/sql-scripts/bookstore.sql new file mode 100644 index 0000000..454dd4a --- /dev/null +++ b/sql-scripts/bookstore.sql @@ -0,0 +1,301938 @@ +-- phpMyAdmin SQL Dump +-- version 4.9.0.1 +-- https://www.phpmyadmin.net/ +-- +-- Host: localhost:8889 +-- Generation Time: Dec 17, 2019 at 04:13 PM +-- Server version: 5.7.26 +-- PHP Version: 7.3.7 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + + +/*!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 utf8mb4 */; + +-- +-- Database: `bookstore` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `baby_names` +-- + +CREATE TABLE `baby_names` ( + `id` bigint(20) UNSIGNED NOT NULL, + `name` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `year` int(11) NOT NULL, + `gender` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, + `count` bigint(20) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `baby_names` +-- + +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(1, 'Mary', 1880, 'F', 7065), +(2, 'Anna', 1880, 'F', 2604), +(3, 'Emma', 1880, 'F', 2003), +(4, 'Elizabeth', 1880, 'F', 1939), +(5, 'Minnie', 1880, 'F', 1746), +(6, 'Margaret', 1880, 'F', 1578), +(7, 'Ida', 1880, 'F', 1472), +(8, 'Alice', 1880, 'F', 1414), +(9, 'Bertha', 1880, 'F', 1320), +(10, 'Sarah', 1880, 'F', 1288), +(11, 'Annie', 1880, 'F', 1258), +(12, 'Clara', 1880, 'F', 1226), +(13, 'Ella', 1880, 'F', 1156), +(14, 'Florence', 1880, 'F', 1063), +(15, 'Cora', 1880, 'F', 1045), +(16, 'Martha', 1880, 'F', 1040), +(17, 'Laura', 1880, 'F', 1012), +(18, 'Nellie', 1880, 'F', 995), +(19, 'Grace', 1880, 'F', 982), +(20, 'Carrie', 1880, 'F', 949), +(21, 'Maude', 1880, 'F', 858), +(22, 'Mabel', 1880, 'F', 808), +(23, 'Bessie', 1880, 'F', 796), +(24, 'Jennie', 1880, 'F', 793), +(25, 'Gertrude', 1880, 'F', 787), +(26, 'Julia', 1880, 'F', 783), +(27, 'Hattie', 1880, 'F', 769), +(28, 'Edith', 1880, 'F', 768), +(29, 'Mattie', 1880, 'F', 704), +(30, 'Rose', 1880, 'F', 700), +(31, 'Catherine', 1880, 'F', 688), +(32, 'Lillian', 1880, 'F', 672), +(33, 'Ada', 1880, 'F', 652), +(34, 'Lillie', 1880, 'F', 647), +(35, 'Helen', 1880, 'F', 636), +(36, 'Jessie', 1880, 'F', 635), +(37, 'Louise', 1880, 'F', 635), +(38, 'Ethel', 1880, 'F', 633), +(39, 'Lula', 1880, 'F', 621), +(40, 'Myrtle', 1880, 'F', 615), +(41, 'Eva', 1880, 'F', 614), +(42, 'Frances', 1880, 'F', 605), +(43, 'Lena', 1880, 'F', 603), +(44, 'Lucy', 1880, 'F', 590), +(45, 'Edna', 1880, 'F', 588), +(46, 'Maggie', 1880, 'F', 582), +(47, 'Pearl', 1880, 'F', 569), +(48, 'Daisy', 1880, 'F', 564), +(49, 'Fannie', 1880, 'F', 560), +(50, 'Josephine', 1880, 'F', 544), +(51, 'Dora', 1880, 'F', 524), +(52, 'Rosa', 1880, 'F', 507), +(53, 'Katherine', 1880, 'F', 502), +(54, 'Agnes', 1880, 'F', 473), +(55, 'Marie', 1880, 'F', 471), +(56, 'Nora', 1880, 'F', 471), +(57, 'May', 1880, 'F', 462), +(58, 'Mamie', 1880, 'F', 436), +(59, 'Blanche', 1880, 'F', 427), +(60, 'Stella', 1880, 'F', 414), +(61, 'Ellen', 1880, 'F', 411), +(62, 'Nancy', 1880, 'F', 411), +(63, 'Effie', 1880, 'F', 406), +(64, 'Sallie', 1880, 'F', 404), +(65, 'Nettie', 1880, 'F', 403), +(66, 'Della', 1880, 'F', 391), +(67, 'Lizzie', 1880, 'F', 388), +(68, 'Flora', 1880, 'F', 365), +(69, 'Susie', 1880, 'F', 361), +(70, 'Maud', 1880, 'F', 345), +(71, 'Mae', 1880, 'F', 344), +(72, 'Etta', 1880, 'F', 323), +(73, 'Harriet', 1880, 'F', 319), +(74, 'Sadie', 1880, 'F', 317), +(75, 'Caroline', 1880, 'F', 306), +(76, 'Katie', 1880, 'F', 303), +(77, 'Lydia', 1880, 'F', 302), +(78, 'Elsie', 1880, 'F', 301), +(79, 'Kate', 1880, 'F', 299), +(80, 'Susan', 1880, 'F', 286), +(81, 'Mollie', 1880, 'F', 283), +(82, 'Alma', 1880, 'F', 277), +(83, 'Addie', 1880, 'F', 274), +(84, 'Georgia', 1880, 'F', 259), +(85, 'Eliza', 1880, 'F', 252), +(86, 'Lulu', 1880, 'F', 249), +(87, 'Nannie', 1880, 'F', 248), +(88, 'Lottie', 1880, 'F', 245), +(89, 'Amanda', 1880, 'F', 241), +(90, 'Belle', 1880, 'F', 238), +(91, 'Charlotte', 1880, 'F', 237), +(92, 'Rebecca', 1880, 'F', 236), +(93, 'Ruth', 1880, 'F', 234), +(94, 'Viola', 1880, 'F', 229), +(95, 'Olive', 1880, 'F', 224), +(96, 'Amelia', 1880, 'F', 221), +(97, 'Hannah', 1880, 'F', 221), +(98, 'Jane', 1880, 'F', 215), +(99, 'Virginia', 1880, 'F', 213), +(100, 'Emily', 1880, 'F', 210), +(101, 'Matilda', 1880, 'F', 210), +(102, 'Irene', 1880, 'F', 204), +(103, 'Kathryn', 1880, 'F', 204), +(104, 'Esther', 1880, 'F', 198), +(105, 'Willie', 1880, 'F', 192), +(106, 'Henrietta', 1880, 'F', 191), +(107, 'Ollie', 1880, 'F', 183), +(108, 'Amy', 1880, 'F', 167), +(109, 'Rachel', 1880, 'F', 166), +(110, 'Sara', 1880, 'F', 165), +(111, 'Estella', 1880, 'F', 162), +(112, 'Theresa', 1880, 'F', 153), +(113, 'Augusta', 1880, 'F', 151), +(114, 'Ora', 1880, 'F', 149), +(115, 'Pauline', 1880, 'F', 144), +(116, 'Josie', 1880, 'F', 141), +(117, 'Lola', 1880, 'F', 138), +(118, 'Sophia', 1880, 'F', 138), +(119, 'Leona', 1880, 'F', 137), +(120, 'Anne', 1880, 'F', 136), +(121, 'Mildred', 1880, 'F', 132), +(122, 'Ann', 1880, 'F', 131), +(123, 'Beulah', 1880, 'F', 131), +(124, 'Callie', 1880, 'F', 131), +(125, 'Lou', 1880, 'F', 131), +(126, 'Delia', 1880, 'F', 129), +(127, 'Eleanor', 1880, 'F', 129), +(128, 'Barbara', 1880, 'F', 127), +(129, 'Iva', 1880, 'F', 127), +(130, 'Louisa', 1880, 'F', 126), +(131, 'Maria', 1880, 'F', 125), +(132, 'Mayme', 1880, 'F', 124), +(133, 'Evelyn', 1880, 'F', 122), +(134, 'Estelle', 1880, 'F', 119), +(135, 'Nina', 1880, 'F', 119), +(136, 'Betty', 1880, 'F', 117), +(137, 'Marion', 1880, 'F', 115), +(138, 'Bettie', 1880, 'F', 113), +(139, 'Dorothy', 1880, 'F', 112), +(140, 'Luella', 1880, 'F', 111), +(141, 'Inez', 1880, 'F', 106), +(142, 'Lela', 1880, 'F', 106), +(143, 'Rosie', 1880, 'F', 106), +(144, 'Allie', 1880, 'F', 105), +(145, 'Millie', 1880, 'F', 105), +(146, 'John', 1880, 'M', 9655), +(147, 'William', 1880, 'M', 9532), +(148, 'James', 1880, 'M', 5927), +(149, 'Charles', 1880, 'M', 5348), +(150, 'George', 1880, 'M', 5126), +(151, 'Frank', 1880, 'M', 3242), +(152, 'Joseph', 1880, 'M', 2632), +(153, 'Thomas', 1880, 'M', 2534), +(154, 'Henry', 1880, 'M', 2444), +(155, 'Robert', 1880, 'M', 2415), +(156, 'Edward', 1880, 'M', 2364), +(157, 'Harry', 1880, 'M', 2152), +(158, 'Walter', 1880, 'M', 1755), +(159, 'Arthur', 1880, 'M', 1599), +(160, 'Fred', 1880, 'M', 1569), +(161, 'Albert', 1880, 'M', 1493), +(162, 'Samuel', 1880, 'M', 1024), +(163, 'David', 1880, 'M', 869), +(164, 'Louis', 1880, 'M', 828), +(165, 'Joe', 1880, 'M', 731), +(166, 'Charlie', 1880, 'M', 730), +(167, 'Clarence', 1880, 'M', 730), +(168, 'Richard', 1880, 'M', 728), +(169, 'Andrew', 1880, 'M', 644), +(170, 'Daniel', 1880, 'M', 643), +(171, 'Ernest', 1880, 'M', 615), +(172, 'Will', 1880, 'M', 588), +(173, 'Jesse', 1880, 'M', 569), +(174, 'Oscar', 1880, 'M', 544), +(175, 'Lewis', 1880, 'M', 517), +(176, 'Peter', 1880, 'M', 496), +(177, 'Benjamin', 1880, 'M', 490), +(178, 'Frederick', 1880, 'M', 483), +(179, 'Willie', 1880, 'M', 476), +(180, 'Alfred', 1880, 'M', 469), +(181, 'Sam', 1880, 'M', 457), +(182, 'Roy', 1880, 'M', 440), +(183, 'Herbert', 1880, 'M', 424), +(184, 'Jacob', 1880, 'M', 404), +(185, 'Tom', 1880, 'M', 399), +(186, 'Elmer', 1880, 'M', 373), +(187, 'Carl', 1880, 'M', 372), +(188, 'Lee', 1880, 'M', 361), +(189, 'Howard', 1880, 'M', 357), +(190, 'Martin', 1880, 'M', 357), +(191, 'Michael', 1880, 'M', 354), +(192, 'Bert', 1880, 'M', 348), +(193, 'Herman', 1880, 'M', 347), +(194, 'Jim', 1880, 'M', 345), +(195, 'Francis', 1880, 'M', 344), +(196, 'Harvey', 1880, 'M', 344), +(197, 'Earl', 1880, 'M', 335), +(198, 'Eugene', 1880, 'M', 328), +(199, 'Ralph', 1880, 'M', 317), +(200, 'Ed', 1880, 'M', 310), +(201, 'Claude', 1880, 'M', 309), +(202, 'Edwin', 1880, 'M', 309), +(203, 'Ben', 1880, 'M', 305), +(204, 'Charley', 1880, 'M', 305), +(205, 'Paul', 1880, 'M', 301), +(206, 'Edgar', 1880, 'M', 283), +(207, 'Isaac', 1880, 'M', 274), +(208, 'Otto', 1880, 'M', 271), +(209, 'Luther', 1880, 'M', 260), +(210, 'Lawrence', 1880, 'M', 257), +(211, 'Ira', 1880, 'M', 249), +(212, 'Patrick', 1880, 'M', 248), +(213, 'Guy', 1880, 'M', 239), +(214, 'Oliver', 1880, 'M', 234), +(215, 'Theodore', 1880, 'M', 232), +(216, 'Hugh', 1880, 'M', 224), +(217, 'Clyde', 1880, 'M', 221), +(218, 'Alexander', 1880, 'M', 211), +(219, 'August', 1880, 'M', 210), +(220, 'Floyd', 1880, 'M', 206), +(221, 'Homer', 1880, 'M', 205), +(222, 'Jack', 1880, 'M', 204), +(223, 'Leonard', 1880, 'M', 200), +(224, 'Horace', 1880, 'M', 199), +(225, 'Marion', 1880, 'M', 189), +(226, 'Philip', 1880, 'M', 186), +(227, 'Allen', 1880, 'M', 184), +(228, 'Archie', 1880, 'M', 183), +(229, 'Stephen', 1880, 'M', 176), +(230, 'Chester', 1880, 'M', 168), +(231, 'Willis', 1880, 'M', 166), +(232, 'Raymond', 1880, 'M', 165), +(233, 'Rufus', 1880, 'M', 163), +(234, 'Warren', 1880, 'M', 158), +(235, 'Jessie', 1880, 'M', 154), +(236, 'Milton', 1880, 'M', 149), +(237, 'Alex', 1880, 'M', 147), +(238, 'Leo', 1880, 'M', 147), +(239, 'Julius', 1880, 'M', 143), +(240, 'Ray', 1880, 'M', 142), +(241, 'Sidney', 1880, 'M', 142), +(242, 'Bernard', 1880, 'M', 140), +(243, 'Dan', 1880, 'M', 140), +(244, 'Jerry', 1880, 'M', 136), +(245, 'Calvin', 1880, 'M', 134), +(246, 'Perry', 1880, 'M', 134), +(247, 'Dave', 1880, 'M', 131), +(248, 'Anthony', 1880, 'M', 130), +(249, 'Eddie', 1880, 'M', 129), +(250, 'Amos', 1880, 'M', 128), +(251, 'Dennis', 1880, 'M', 128), +(252, 'Clifford', 1880, 'M', 127), +(253, 'Leroy', 1880, 'M', 124), +(254, 'Wesley', 1880, 'M', 123), +(255, 'Alonzo', 1880, 'M', 122), +(256, 'Garfield', 1880, 'M', 122), +(257, 'Franklin', 1880, 'M', 120), +(258, 'Emil', 1880, 'M', 119), +(259, 'Leon', 1880, 'M', 118), +(260, 'Nathan', 1880, 'M', 114), +(261, 'Harold', 1880, 'M', 113), +(262, 'Matthew', 1880, 'M', 113), +(263, 'Levi', 1880, 'M', 112), +(264, 'Moses', 1880, 'M', 111), +(265, 'Everett', 1880, 'M', 110), +(266, 'Lester', 1880, 'M', 109), +(267, 'Winfield', 1880, 'M', 108), +(268, 'Adam', 1880, 'M', 104), +(269, 'Lloyd', 1880, 'M', 104), +(270, 'Mack', 1880, 'M', 104), +(271, 'Fredrick', 1880, 'M', 103), +(272, 'Jay', 1880, 'M', 103), +(273, 'Jess', 1880, 'M', 103), +(274, 'Melvin', 1880, 'M', 103), +(275, 'Noah', 1880, 'M', 103), +(276, 'Aaron', 1880, 'M', 102), +(277, 'Alvin', 1880, 'M', 102), +(278, 'Norman', 1880, 'M', 102), +(279, 'Gilbert', 1880, 'M', 101), +(280, 'Elijah', 1880, 'M', 100), +(281, 'Victor', 1880, 'M', 100), +(282, 'Mary', 1881, 'F', 6919), +(283, 'Anna', 1881, 'F', 2698), +(284, 'Emma', 1881, 'F', 2034), +(285, 'Elizabeth', 1881, 'F', 1852), +(286, 'Margaret', 1881, 'F', 1658), +(287, 'Minnie', 1881, 'F', 1653), +(288, 'Ida', 1881, 'F', 1439), +(289, 'Annie', 1881, 'F', 1326), +(290, 'Bertha', 1881, 'F', 1324), +(291, 'Alice', 1881, 'F', 1308), +(292, 'Clara', 1881, 'F', 1242), +(293, 'Sarah', 1881, 'F', 1226), +(294, 'Ella', 1881, 'F', 1148), +(295, 'Nellie', 1881, 'F', 1096), +(296, 'Grace', 1881, 'F', 1089), +(297, 'Florence', 1881, 'F', 1046), +(298, 'Martha', 1881, 'F', 1044), +(299, 'Cora', 1881, 'F', 969), +(300, 'Laura', 1881, 'F', 962), +(301, 'Carrie', 1881, 'F', 958), +(302, 'Maude', 1881, 'F', 923), +(303, 'Bessie', 1881, 'F', 903), +(304, 'Mabel', 1881, 'F', 893), +(305, 'Gertrude', 1881, 'F', 791), +(306, 'Ethel', 1881, 'F', 788), +(307, 'Jennie', 1881, 'F', 784), +(308, 'Edith', 1881, 'F', 778), +(309, 'Hattie', 1881, 'F', 775), +(310, 'Mattie', 1881, 'F', 754), +(311, 'Julia', 1881, 'F', 737), +(312, 'Rose', 1881, 'F', 734), +(313, 'Lillian', 1881, 'F', 723), +(314, 'Lillie', 1881, 'F', 678), +(315, 'Eva', 1881, 'F', 661), +(316, 'Jessie', 1881, 'F', 661), +(317, 'Lula', 1881, 'F', 655), +(318, 'Myrtle', 1881, 'F', 643), +(319, 'Pearl', 1881, 'F', 641), +(320, 'Edna', 1881, 'F', 637), +(321, 'Catherine', 1881, 'F', 635), +(322, 'Ada', 1881, 'F', 628), +(323, 'Louise', 1881, 'F', 617), +(324, 'Helen', 1881, 'F', 612), +(325, 'Lucy', 1881, 'F', 611), +(326, 'Frances', 1881, 'F', 586), +(327, 'Dora', 1881, 'F', 585), +(328, 'Fannie', 1881, 'F', 565), +(329, 'Josephine', 1881, 'F', 563), +(330, 'Daisy', 1881, 'F', 562), +(331, 'Lena', 1881, 'F', 555), +(332, 'Maggie', 1881, 'F', 532), +(333, 'Katherine', 1881, 'F', 504), +(334, 'Rosa', 1881, 'F', 500), +(335, 'Marie', 1881, 'F', 499), +(336, 'Nora', 1881, 'F', 498), +(337, 'Effie', 1881, 'F', 463), +(338, 'Blanche', 1881, 'F', 456), +(339, 'May', 1881, 'F', 451), +(340, 'Nancy', 1881, 'F', 429), +(341, 'Della', 1881, 'F', 428), +(342, 'Agnes', 1881, 'F', 424), +(343, 'Nettie', 1881, 'F', 419), +(344, 'Sallie', 1881, 'F', 416), +(345, 'Stella', 1881, 'F', 416), +(346, 'Ellen', 1881, 'F', 413), +(347, 'Mamie', 1881, 'F', 412), +(348, 'Lizzie', 1881, 'F', 396), +(349, 'Susie', 1881, 'F', 367), +(350, 'Sadie', 1881, 'F', 366), +(351, 'Elsie', 1881, 'F', 344), +(352, 'Maud', 1881, 'F', 328), +(353, 'Flora', 1881, 'F', 317), +(354, 'Caroline', 1881, 'F', 316), +(355, 'Etta', 1881, 'F', 316), +(356, 'Mae', 1881, 'F', 314), +(357, 'Lulu', 1881, 'F', 313), +(358, 'Lydia', 1881, 'F', 299), +(359, 'Alma', 1881, 'F', 293), +(360, 'Susan', 1881, 'F', 292), +(361, 'Lottie', 1881, 'F', 289), +(362, 'Addie', 1881, 'F', 287), +(363, 'Mollie', 1881, 'F', 281), +(364, 'Katie', 1881, 'F', 279), +(365, 'Ruth', 1881, 'F', 275), +(366, 'Harriet', 1881, 'F', 270), +(367, 'Kate', 1881, 'F', 267), +(368, 'Amanda', 1881, 'F', 263), +(369, 'Nannie', 1881, 'F', 258), +(370, 'Georgia', 1881, 'F', 256), +(371, 'Emily', 1881, 'F', 244), +(372, 'Eliza', 1881, 'F', 238), +(373, 'Viola', 1881, 'F', 237), +(374, 'Amelia', 1881, 'F', 235), +(375, 'Willie', 1881, 'F', 229), +(376, 'Charlotte', 1881, 'F', 227), +(377, 'Rebecca', 1881, 'F', 226), +(378, 'Belle', 1881, 'F', 219), +(379, 'Kathryn', 1881, 'F', 218), +(380, 'Jane', 1881, 'F', 216), +(381, 'Olive', 1881, 'F', 211), +(382, 'Virginia', 1881, 'F', 210), +(383, 'Irene', 1881, 'F', 206), +(384, 'Hannah', 1881, 'F', 196), +(385, 'Ora', 1881, 'F', 191), +(386, 'Esther', 1881, 'F', 189), +(387, 'Matilda', 1881, 'F', 187), +(388, 'Henrietta', 1881, 'F', 181), +(389, 'Theresa', 1881, 'F', 173), +(390, 'Ollie', 1881, 'F', 169), +(391, 'Pauline', 1881, 'F', 166), +(392, 'Estella', 1881, 'F', 163), +(393, 'Beulah', 1881, 'F', 162), +(394, 'Augusta', 1881, 'F', 157), +(395, 'Rachel', 1881, 'F', 157), +(396, 'Mildred', 1881, 'F', 154), +(397, 'Josie', 1881, 'F', 149), +(398, 'Sara', 1881, 'F', 147), +(399, 'Amy', 1881, 'F', 145), +(400, 'Louisa', 1881, 'F', 142), +(401, 'Luella', 1881, 'F', 141), +(402, 'Leona', 1881, 'F', 138), +(403, 'Anne', 1881, 'F', 131), +(404, 'Ann', 1881, 'F', 130), +(405, 'Barbara', 1881, 'F', 130), +(406, 'Lola', 1881, 'F', 129), +(407, 'Estelle', 1881, 'F', 127), +(408, 'Lela', 1881, 'F', 125), +(409, 'Millie', 1881, 'F', 124), +(410, 'Nina', 1881, 'F', 123), +(411, 'Iva', 1881, 'F', 122), +(412, 'Sophia', 1881, 'F', 122), +(413, 'Maria', 1881, 'F', 120), +(414, 'Ruby', 1881, 'F', 119), +(415, 'Victoria', 1881, 'F', 117), +(416, 'Evelyn', 1881, 'F', 116), +(417, 'Mayme', 1881, 'F', 115), +(418, 'Alta', 1881, 'F', 114), +(419, 'Lou', 1881, 'F', 114), +(420, 'Janie', 1881, 'F', 113), +(421, 'Betty', 1881, 'F', 112), +(422, 'Delia', 1881, 'F', 111), +(423, 'Eleanor', 1881, 'F', 110), +(424, 'Marion', 1881, 'F', 110), +(425, 'Dorothy', 1881, 'F', 109), +(426, 'Ina', 1881, 'F', 108), +(427, 'Celia', 1881, 'F', 107), +(428, 'Callie', 1881, 'F', 104), +(429, 'Bettie', 1881, 'F', 103), +(430, 'John', 1881, 'M', 8769), +(431, 'William', 1881, 'M', 8524), +(432, 'James', 1881, 'M', 5442), +(433, 'George', 1881, 'M', 4664), +(434, 'Charles', 1881, 'M', 4636), +(435, 'Frank', 1881, 'M', 2834), +(436, 'Joseph', 1881, 'M', 2456), +(437, 'Henry', 1881, 'M', 2339), +(438, 'Thomas', 1881, 'M', 2282), +(439, 'Edward', 1881, 'M', 2177), +(440, 'Robert', 1881, 'M', 2140), +(441, 'Harry', 1881, 'M', 2002), +(442, 'Walter', 1881, 'M', 1670), +(443, 'Arthur', 1881, 'M', 1575), +(444, 'Fred', 1881, 'M', 1418), +(445, 'Albert', 1881, 'M', 1319), +(446, 'Samuel', 1881, 'M', 919), +(447, 'David', 1881, 'M', 750), +(448, 'Louis', 1881, 'M', 746), +(449, 'Charlie', 1881, 'M', 668), +(450, 'Clarence', 1881, 'M', 668), +(451, 'Richard', 1881, 'M', 641), +(452, 'Joe', 1881, 'M', 639), +(453, 'Andrew', 1881, 'M', 588), +(454, 'Ernest', 1881, 'M', 571), +(455, 'Will', 1881, 'M', 550), +(456, 'Jesse', 1881, 'M', 536), +(457, 'Oscar', 1881, 'M', 530), +(458, 'Daniel', 1881, 'M', 527), +(459, 'Willie', 1881, 'M', 498), +(460, 'Benjamin', 1881, 'M', 481), +(461, 'Sam', 1881, 'M', 481), +(462, 'Alfred', 1881, 'M', 466), +(463, 'Roy', 1881, 'M', 440), +(464, 'Lewis', 1881, 'M', 439), +(465, 'Frederick', 1881, 'M', 433), +(466, 'Peter', 1881, 'M', 428), +(467, 'Elmer', 1881, 'M', 388), +(468, 'Jacob', 1881, 'M', 381), +(469, 'Herbert', 1881, 'M', 369), +(470, 'Carl', 1881, 'M', 359), +(471, 'Howard', 1881, 'M', 359), +(472, 'Tom', 1881, 'M', 349), +(473, 'Lee', 1881, 'M', 342), +(474, 'Ralph', 1881, 'M', 329), +(475, 'Martin', 1881, 'M', 327), +(476, 'Jim', 1881, 'M', 323), +(477, 'Earl', 1881, 'M', 314), +(478, 'Eugene', 1881, 'M', 314), +(479, 'Bert', 1881, 'M', 312), +(480, 'Edgar', 1881, 'M', 312), +(481, 'Herman', 1881, 'M', 304), +(482, 'Claude', 1881, 'M', 302), +(483, 'Michael', 1881, 'M', 298), +(484, 'Paul', 1881, 'M', 291), +(485, 'Ben', 1881, 'M', 289), +(486, 'Ira', 1881, 'M', 286), +(487, 'Harvey', 1881, 'M', 282), +(488, 'Chester', 1881, 'M', 274), +(489, 'Edwin', 1881, 'M', 274), +(490, 'Ed', 1881, 'M', 272), +(491, 'Charley', 1881, 'M', 266), +(492, 'Francis', 1881, 'M', 259), +(493, 'Isaac', 1881, 'M', 258), +(494, 'Luther', 1881, 'M', 249), +(495, 'Lawrence', 1881, 'M', 244), +(496, 'Oliver', 1881, 'M', 238), +(497, 'Clyde', 1881, 'M', 232), +(498, 'Otto', 1881, 'M', 221), +(499, 'Hugh', 1881, 'M', 220), +(500, 'Alexander', 1881, 'M', 209), +(501, 'Leonard', 1881, 'M', 206), +(502, 'Jack', 1881, 'M', 197), +(503, 'Raymond', 1881, 'M', 195), +(504, 'Patrick', 1881, 'M', 188), +(505, 'Guy', 1881, 'M', 186), +(506, 'Homer', 1881, 'M', 181), +(507, 'Floyd', 1881, 'M', 178), +(508, 'Theodore', 1881, 'M', 178), +(509, 'Allen', 1881, 'M', 172), +(510, 'August', 1881, 'M', 172), +(511, 'Marion', 1881, 'M', 162), +(512, 'Philip', 1881, 'M', 156), +(513, 'Warren', 1881, 'M', 156), +(514, 'Horace', 1881, 'M', 152), +(515, 'Dan', 1881, 'M', 148), +(516, 'Ray', 1881, 'M', 148), +(517, 'Garfield', 1881, 'M', 147), +(518, 'Stephen', 1881, 'M', 147), +(519, 'Emil', 1881, 'M', 145), +(520, 'Jessie', 1881, 'M', 143), +(521, 'Milton', 1881, 'M', 143), +(522, 'Willis', 1881, 'M', 142), +(523, 'Calvin', 1881, 'M', 138), +(524, 'Dave', 1881, 'M', 135), +(525, 'Bernard', 1881, 'M', 130), +(526, 'Julius', 1881, 'M', 129), +(527, 'Leroy', 1881, 'M', 129), +(528, 'Sidney', 1881, 'M', 129), +(529, 'Anthony', 1881, 'M', 128), +(530, 'Archie', 1881, 'M', 125), +(531, 'Perry', 1881, 'M', 123), +(532, 'Leo', 1881, 'M', 122), +(533, 'Leon', 1881, 'M', 121), +(534, 'Rufus', 1881, 'M', 121), +(535, 'Harold', 1881, 'M', 120), +(536, 'Franklin', 1881, 'M', 117), +(537, 'Adam', 1881, 'M', 116), +(538, 'Alex', 1881, 'M', 114), +(539, 'Alonzo', 1881, 'M', 111), +(540, 'Everett', 1881, 'M', 111), +(541, 'Clifford', 1881, 'M', 110), +(542, 'Victor', 1881, 'M', 110), +(543, 'Eddie', 1881, 'M', 109), +(544, 'Alvin', 1881, 'M', 105), +(545, 'Levi', 1881, 'M', 104), +(546, 'Amos', 1881, 'M', 102), +(547, 'Roscoe', 1881, 'M', 102), +(548, 'Wesley', 1881, 'M', 102), +(549, 'Mary', 1882, 'F', 8148), +(550, 'Anna', 1882, 'F', 3143), +(551, 'Emma', 1882, 'F', 2303), +(552, 'Elizabeth', 1882, 'F', 2187), +(553, 'Minnie', 1882, 'F', 2004), +(554, 'Margaret', 1882, 'F', 1821), +(555, 'Ida', 1882, 'F', 1673), +(556, 'Alice', 1882, 'F', 1542), +(557, 'Bertha', 1882, 'F', 1508), +(558, 'Annie', 1882, 'F', 1492), +(559, 'Clara', 1882, 'F', 1490), +(560, 'Sarah', 1882, 'F', 1410), +(561, 'Florence', 1882, 'F', 1322), +(562, 'Martha', 1882, 'F', 1229), +(563, 'Ella', 1882, 'F', 1206), +(564, 'Grace', 1882, 'F', 1195), +(565, 'Laura', 1882, 'F', 1151), +(566, 'Bessie', 1882, 'F', 1144), +(567, 'Nellie', 1882, 'F', 1138), +(568, 'Maude', 1882, 'F', 1089), +(569, 'Cora', 1882, 'F', 1076), +(570, 'Carrie', 1882, 'F', 1037), +(571, 'Mabel', 1882, 'F', 997), +(572, 'Ethel', 1882, 'F', 989), +(573, 'Mattie', 1882, 'F', 966), +(574, 'Gertrude', 1882, 'F', 939), +(575, 'Jennie', 1882, 'F', 934), +(576, 'Rose', 1882, 'F', 886), +(577, 'Edith', 1882, 'F', 876), +(578, 'Hattie', 1882, 'F', 859), +(579, 'Helen', 1882, 'F', 838), +(580, 'Lillian', 1882, 'F', 830), +(581, 'Pearl', 1882, 'F', 824), +(582, 'Louise', 1882, 'F', 813), +(583, 'Julia', 1882, 'F', 811), +(584, 'Lillie', 1882, 'F', 810), +(585, 'Jessie', 1882, 'F', 806), +(586, 'Myrtle', 1882, 'F', 803), +(587, 'Edna', 1882, 'F', 783), +(588, 'Lula', 1882, 'F', 780), +(589, 'Eva', 1882, 'F', 765), +(590, 'Catherine', 1882, 'F', 726), +(591, 'Lena', 1882, 'F', 697), +(592, 'Ada', 1882, 'F', 689), +(593, 'Frances', 1882, 'F', 681), +(594, 'Lucy', 1882, 'F', 673), +(595, 'Fannie', 1882, 'F', 650), +(596, 'Daisy', 1882, 'F', 648), +(597, 'Josephine', 1882, 'F', 638), +(598, 'Maggie', 1882, 'F', 627), +(599, 'Dora', 1882, 'F', 594), +(600, 'Katherine', 1882, 'F', 591), +(601, 'Marie', 1882, 'F', 591), +(602, 'Agnes', 1882, 'F', 565), +(603, 'Effie', 1882, 'F', 561), +(604, 'Blanche', 1882, 'F', 547), +(605, 'Rosa', 1882, 'F', 542), +(606, 'Nora', 1882, 'F', 539), +(607, 'May', 1882, 'F', 511), +(608, 'Mamie', 1882, 'F', 508), +(609, 'Stella', 1882, 'F', 506), +(610, 'Lizzie', 1882, 'F', 495), +(611, 'Sallie', 1882, 'F', 487), +(612, 'Ellen', 1882, 'F', 452), +(613, 'Elsie', 1882, 'F', 448), +(614, 'Della', 1882, 'F', 447), +(615, 'Nancy', 1882, 'F', 439), +(616, 'Nettie', 1882, 'F', 439), +(617, 'Maud', 1882, 'F', 432), +(618, 'Susie', 1882, 'F', 412), +(619, 'Mae', 1882, 'F', 406), +(620, 'Sadie', 1882, 'F', 391), +(621, 'Flora', 1882, 'F', 380), +(622, 'Alma', 1882, 'F', 368), +(623, 'Etta', 1882, 'F', 352), +(624, 'Lydia', 1882, 'F', 342), +(625, 'Addie', 1882, 'F', 341), +(626, 'Katie', 1882, 'F', 327), +(627, 'Susan', 1882, 'F', 326), +(628, 'Ruth', 1882, 'F', 323), +(629, 'Georgia', 1882, 'F', 320), +(630, 'Lottie', 1882, 'F', 319), +(631, 'Viola', 1882, 'F', 310), +(632, 'Mollie', 1882, 'F', 305), +(633, 'Caroline', 1882, 'F', 304), +(634, 'Nannie', 1882, 'F', 299), +(635, 'Kate', 1882, 'F', 293), +(636, 'Olive', 1882, 'F', 291), +(637, 'Willie', 1882, 'F', 291), +(638, 'Harriet', 1882, 'F', 289), +(639, 'Amanda', 1882, 'F', 288), +(640, 'Eliza', 1882, 'F', 280), +(641, 'Lulu', 1882, 'F', 279), +(642, 'Virginia', 1882, 'F', 274), +(643, 'Emily', 1882, 'F', 272), +(644, 'Kathryn', 1882, 'F', 272), +(645, 'Esther', 1882, 'F', 266), +(646, 'Belle', 1882, 'F', 264), +(647, 'Rebecca', 1882, 'F', 259), +(648, 'Charlotte', 1882, 'F', 257), +(649, 'Jane', 1882, 'F', 254), +(650, 'Amelia', 1882, 'F', 252), +(651, 'Matilda', 1882, 'F', 242), +(652, 'Irene', 1882, 'F', 232), +(653, 'Ollie', 1882, 'F', 218), +(654, 'Hannah', 1882, 'F', 214), +(655, 'Henrietta', 1882, 'F', 211), +(656, 'Pauline', 1882, 'F', 204), +(657, 'Rachel', 1882, 'F', 203), +(658, 'Estella', 1882, 'F', 198), +(659, 'Amy', 1882, 'F', 196), +(660, 'Beulah', 1882, 'F', 190), +(661, 'Augusta', 1882, 'F', 183), +(662, 'Ora', 1882, 'F', 181), +(663, 'Sara', 1882, 'F', 180), +(664, 'Sophia', 1882, 'F', 179), +(665, 'Eleanor', 1882, 'F', 174), +(666, 'Lola', 1882, 'F', 174), +(667, 'Mildred', 1882, 'F', 172), +(668, 'Nina', 1882, 'F', 171), +(669, 'Theresa', 1882, 'F', 170), +(670, 'Josie', 1882, 'F', 169), +(671, 'Anne', 1882, 'F', 168), +(672, 'Leona', 1882, 'F', 163), +(673, 'Ann', 1882, 'F', 150), +(674, 'Delia', 1882, 'F', 143), +(675, 'Lela', 1882, 'F', 143), +(676, 'Marion', 1882, 'F', 141), +(677, 'Mayme', 1882, 'F', 140), +(678, 'Rosie', 1882, 'F', 140), +(679, 'Bettie', 1882, 'F', 136), +(680, 'Ruby', 1882, 'F', 136), +(681, 'Iva', 1882, 'F', 134), +(682, 'Janie', 1882, 'F', 134), +(683, 'Estelle', 1882, 'F', 133), +(684, 'Victoria', 1882, 'F', 132), +(685, 'Lou', 1882, 'F', 131), +(686, 'Barbara', 1882, 'F', 130), +(687, 'Callie', 1882, 'F', 129), +(688, 'Louisa', 1882, 'F', 128), +(689, 'Celia', 1882, 'F', 126), +(690, 'Evelyn', 1882, 'F', 125), +(691, 'Mable', 1882, 'F', 125), +(692, 'Beatrice', 1882, 'F', 123), +(693, 'Betty', 1882, 'F', 123), +(694, 'Millie', 1882, 'F', 122), +(695, 'Maria', 1882, 'F', 121), +(696, 'Alta', 1882, 'F', 119), +(697, 'Luella', 1882, 'F', 117), +(698, 'Dorothy', 1882, 'F', 115), +(699, 'Allie', 1882, 'F', 113), +(700, 'Birdie', 1882, 'F', 113), +(701, 'Essie', 1882, 'F', 113), +(702, 'Ola', 1882, 'F', 113), +(703, 'Sophie', 1882, 'F', 110), +(704, 'Inez', 1882, 'F', 106), +(705, 'Ina', 1882, 'F', 104), +(706, 'Tillie', 1882, 'F', 104), +(707, 'Nell', 1882, 'F', 103), +(708, 'Rena', 1882, 'F', 103), +(709, 'John', 1882, 'M', 9557), +(710, 'William', 1882, 'M', 9298), +(711, 'James', 1882, 'M', 5892), +(712, 'George', 1882, 'M', 5193), +(713, 'Charles', 1882, 'M', 5092), +(714, 'Frank', 1882, 'M', 3176), +(715, 'Joseph', 1882, 'M', 2670), +(716, 'Thomas', 1882, 'M', 2610), +(717, 'Henry', 1882, 'M', 2579), +(718, 'Robert', 1882, 'M', 2500), +(719, 'Edward', 1882, 'M', 2477), +(720, 'Harry', 1882, 'M', 2232), +(721, 'Walter', 1882, 'M', 1805), +(722, 'Arthur', 1882, 'M', 1686), +(723, 'Fred', 1882, 'M', 1641), +(724, 'Albert', 1882, 'M', 1499), +(725, 'Samuel', 1882, 'M', 1003), +(726, 'Louis', 1882, 'M', 852), +(727, 'David', 1882, 'M', 838), +(728, 'Clarence', 1882, 'M', 837), +(729, 'Charlie', 1882, 'M', 753), +(730, 'Richard', 1882, 'M', 746), +(731, 'Joe', 1882, 'M', 739), +(732, 'Andrew', 1882, 'M', 673), +(733, 'Will', 1882, 'M', 666), +(734, 'Jesse', 1882, 'M', 660), +(735, 'Ernest', 1882, 'M', 642), +(736, 'Oscar', 1882, 'M', 625), +(737, 'Daniel', 1882, 'M', 594), +(738, 'Sam', 1882, 'M', 555), +(739, 'Willie', 1882, 'M', 541), +(740, 'Alfred', 1882, 'M', 523), +(741, 'Roy', 1882, 'M', 521), +(742, 'Benjamin', 1882, 'M', 478), +(743, 'Carl', 1882, 'M', 478), +(744, 'Peter', 1882, 'M', 461), +(745, 'Frederick', 1882, 'M', 457), +(746, 'Elmer', 1882, 'M', 441), +(747, 'Lewis', 1882, 'M', 441), +(748, 'Herbert', 1882, 'M', 431), +(749, 'Lee', 1882, 'M', 427), +(750, 'Howard', 1882, 'M', 422), +(751, 'Ralph', 1882, 'M', 407), +(752, 'Paul', 1882, 'M', 397), +(753, 'Jim', 1882, 'M', 396), +(754, 'Jacob', 1882, 'M', 390), +(755, 'Tom', 1882, 'M', 390), +(756, 'Martin', 1882, 'M', 387), +(757, 'Earl', 1882, 'M', 377), +(758, 'Claude', 1882, 'M', 356), +(759, 'Herman', 1882, 'M', 348), +(760, 'Bert', 1882, 'M', 341), +(761, 'Eugene', 1882, 'M', 341), +(762, 'Ed', 1882, 'M', 337), +(763, 'Ben', 1882, 'M', 334), +(764, 'Francis', 1882, 'M', 327), +(765, 'Michael', 1882, 'M', 321), +(766, 'Edgar', 1882, 'M', 308), +(767, 'Edwin', 1882, 'M', 305), +(768, 'Chester', 1882, 'M', 300), +(769, 'Harvey', 1882, 'M', 300), +(770, 'Clyde', 1882, 'M', 293), +(771, 'Lawrence', 1882, 'M', 287), +(772, 'Luther', 1882, 'M', 284), +(773, 'Isaac', 1882, 'M', 278), +(774, 'Jack', 1882, 'M', 271), +(775, 'Charley', 1882, 'M', 262), +(776, 'Guy', 1882, 'M', 253), +(777, 'Otto', 1882, 'M', 252), +(778, 'Patrick', 1882, 'M', 249), +(779, 'Ira', 1882, 'M', 244), +(780, 'Oliver', 1882, 'M', 244), +(781, 'Hugh', 1882, 'M', 239), +(782, 'August', 1882, 'M', 234), +(783, 'Theodore', 1882, 'M', 232), +(784, 'Floyd', 1882, 'M', 231), +(785, 'Leonard', 1882, 'M', 231), +(786, 'Raymond', 1882, 'M', 230), +(787, 'Alexander', 1882, 'M', 225), +(788, 'Allen', 1882, 'M', 206), +(789, 'Stephen', 1882, 'M', 201), +(790, 'Archie', 1882, 'M', 195), +(791, 'Ray', 1882, 'M', 195), +(792, 'Jessie', 1882, 'M', 192), +(793, 'Homer', 1882, 'M', 190), +(794, 'Warren', 1882, 'M', 183), +(795, 'Philip', 1882, 'M', 182), +(796, 'Horace', 1882, 'M', 176), +(797, 'Alex', 1882, 'M', 172), +(798, 'Eddie', 1882, 'M', 169), +(799, 'Julius', 1882, 'M', 168), +(800, 'Emil', 1882, 'M', 157), +(801, 'Marion', 1882, 'M', 157), +(802, 'Clifford', 1882, 'M', 155), +(803, 'Milton', 1882, 'M', 155), +(804, 'Leroy', 1882, 'M', 152), +(805, 'Dan', 1882, 'M', 150), +(806, 'Rufus', 1882, 'M', 147), +(807, 'Leo', 1882, 'M', 146), +(808, 'Sidney', 1882, 'M', 146), +(809, 'Mack', 1882, 'M', 145), +(810, 'Wesley', 1882, 'M', 145), +(811, 'Bernard', 1882, 'M', 144), +(812, 'Willis', 1882, 'M', 143), +(813, 'Anthony', 1882, 'M', 139), +(814, 'Dave', 1882, 'M', 139), +(815, 'Everett', 1882, 'M', 139), +(816, 'Dennis', 1882, 'M', 135), +(817, 'Amos', 1882, 'M', 134), +(818, 'Lester', 1882, 'M', 134), +(819, 'Alonzo', 1882, 'M', 133), +(820, 'Perry', 1882, 'M', 133), +(821, 'Alvin', 1882, 'M', 132), +(822, 'Leon', 1882, 'M', 131), +(823, 'Harold', 1882, 'M', 127), +(824, 'Percy', 1882, 'M', 126), +(825, 'Calvin', 1882, 'M', 123), +(826, 'Jess', 1882, 'M', 122), +(827, 'Leslie', 1882, 'M', 122), +(828, 'Lloyd', 1882, 'M', 121), +(829, 'Gus', 1882, 'M', 120), +(830, 'Otis', 1882, 'M', 116), +(831, 'Adam', 1882, 'M', 114), +(832, 'Nathan', 1882, 'M', 113), +(833, 'Franklin', 1882, 'M', 112), +(834, 'Elijah', 1882, 'M', 111), +(835, 'Matthew', 1882, 'M', 109), +(836, 'Victor', 1882, 'M', 109), +(837, 'Noah', 1882, 'M', 108), +(838, 'Cornelius', 1882, 'M', 107), +(839, 'Norman', 1882, 'M', 107), +(840, 'Jerry', 1882, 'M', 105), +(841, 'Levi', 1882, 'M', 105), +(842, 'Earnest', 1882, 'M', 104), +(843, 'Hiram', 1882, 'M', 104), +(844, 'Nelson', 1882, 'M', 104), +(845, 'Phillip', 1882, 'M', 103), +(846, 'Wallace', 1882, 'M', 103), +(847, 'Maurice', 1882, 'M', 102), +(848, 'Mary', 1883, 'F', 8012), +(849, 'Anna', 1883, 'F', 3306), +(850, 'Emma', 1883, 'F', 2367), +(851, 'Elizabeth', 1883, 'F', 2255), +(852, 'Minnie', 1883, 'F', 2035), +(853, 'Margaret', 1883, 'F', 1881), +(854, 'Bertha', 1883, 'F', 1681), +(855, 'Ida', 1883, 'F', 1634), +(856, 'Annie', 1883, 'F', 1589), +(857, 'Clara', 1883, 'F', 1548), +(858, 'Alice', 1883, 'F', 1488), +(859, 'Sarah', 1883, 'F', 1359), +(860, 'Grace', 1883, 'F', 1307), +(861, 'Florence', 1883, 'F', 1298), +(862, 'Martha', 1883, 'F', 1255), +(863, 'Ella', 1883, 'F', 1251), +(864, 'Nellie', 1883, 'F', 1246), +(865, 'Bessie', 1883, 'F', 1241), +(866, 'Laura', 1883, 'F', 1183), +(867, 'Ethel', 1883, 'F', 1132), +(868, 'Carrie', 1883, 'F', 1108), +(869, 'Maude', 1883, 'F', 1096), +(870, 'Mabel', 1883, 'F', 1086), +(871, 'Cora', 1883, 'F', 1081), +(872, 'Gertrude', 1883, 'F', 923), +(873, 'Lillian', 1883, 'F', 907), +(874, 'Jennie', 1883, 'F', 904), +(875, 'Hattie', 1883, 'F', 895), +(876, 'Pearl', 1883, 'F', 886), +(877, 'Mattie', 1883, 'F', 883), +(878, 'Edith', 1883, 'F', 881), +(879, 'Eva', 1883, 'F', 879), +(880, 'Rose', 1883, 'F', 877), +(881, 'Julia', 1883, 'F', 875), +(882, 'Helen', 1883, 'F', 862), +(883, 'Catherine', 1883, 'F', 853), +(884, 'Myrtle', 1883, 'F', 851), +(885, 'Louise', 1883, 'F', 847), +(886, 'Lillie', 1883, 'F', 837), +(887, 'Jessie', 1883, 'F', 833), +(888, 'Edna', 1883, 'F', 823), +(889, 'Lena', 1883, 'F', 800), +(890, 'Lula', 1883, 'F', 790), +(891, 'Ada', 1883, 'F', 778), +(892, 'Frances', 1883, 'F', 710), +(893, 'Josephine', 1883, 'F', 697), +(894, 'Fannie', 1883, 'F', 696), +(895, 'Lucy', 1883, 'F', 663), +(896, 'Maggie', 1883, 'F', 663), +(897, 'Daisy', 1883, 'F', 659), +(898, 'Dora', 1883, 'F', 640), +(899, 'Agnes', 1883, 'F', 623), +(900, 'Marie', 1883, 'F', 622), +(901, 'Blanche', 1883, 'F', 610), +(902, 'Nora', 1883, 'F', 589), +(903, 'Katherine', 1883, 'F', 583), +(904, 'May', 1883, 'F', 532), +(905, 'Mamie', 1883, 'F', 531), +(906, 'Stella', 1883, 'F', 529), +(907, 'Effie', 1883, 'F', 507), +(908, 'Rosa', 1883, 'F', 507), +(909, 'Ellen', 1883, 'F', 500), +(910, 'Lizzie', 1883, 'F', 496), +(911, 'Nettie', 1883, 'F', 494), +(912, 'Elsie', 1883, 'F', 479), +(913, 'Della', 1883, 'F', 453), +(914, 'Susie', 1883, 'F', 436), +(915, 'Maud', 1883, 'F', 425), +(916, 'Sadie', 1883, 'F', 425), +(917, 'Mae', 1883, 'F', 423), +(918, 'Nancy', 1883, 'F', 412), +(919, 'Sallie', 1883, 'F', 409), +(920, 'Flora', 1883, 'F', 387), +(921, 'Ruth', 1883, 'F', 387), +(922, 'Lydia', 1883, 'F', 378), +(923, 'Lottie', 1883, 'F', 372), +(924, 'Addie', 1883, 'F', 362), +(925, 'Katie', 1883, 'F', 361), +(926, 'Alma', 1883, 'F', 359), +(927, 'Etta', 1883, 'F', 352), +(928, 'Emily', 1883, 'F', 342), +(929, 'Harriet', 1883, 'F', 341), +(930, 'Viola', 1883, 'F', 331), +(931, 'Georgia', 1883, 'F', 325), +(932, 'Susan', 1883, 'F', 322), +(933, 'Caroline', 1883, 'F', 321), +(934, 'Nannie', 1883, 'F', 305), +(935, 'Lulu', 1883, 'F', 302), +(936, 'Mollie', 1883, 'F', 301), +(937, 'Kate', 1883, 'F', 294), +(938, 'Olive', 1883, 'F', 294), +(939, 'Charlotte', 1883, 'F', 291), +(940, 'Kathryn', 1883, 'F', 290), +(941, 'Amanda', 1883, 'F', 287), +(942, 'Eliza', 1883, 'F', 274), +(943, 'Willie', 1883, 'F', 264), +(944, 'Amelia', 1883, 'F', 262), +(945, 'Belle', 1883, 'F', 262), +(946, 'Esther', 1883, 'F', 260), +(947, 'Irene', 1883, 'F', 260), +(948, 'Ollie', 1883, 'F', 249), +(949, 'Jane', 1883, 'F', 247), +(950, 'Rebecca', 1883, 'F', 244), +(951, 'Theresa', 1883, 'F', 241), +(952, 'Virginia', 1883, 'F', 234), +(953, 'Estella', 1883, 'F', 233), +(954, 'Beulah', 1883, 'F', 217), +(955, 'Augusta', 1883, 'F', 213), +(956, 'Ora', 1883, 'F', 212), +(957, 'Amy', 1883, 'F', 209), +(958, 'Hannah', 1883, 'F', 209), +(959, 'Henrietta', 1883, 'F', 203), +(960, 'Pauline', 1883, 'F', 197), +(961, 'Eleanor', 1883, 'F', 185), +(962, 'Marion', 1883, 'F', 184), +(963, 'Anne', 1883, 'F', 183), +(964, 'Mildred', 1883, 'F', 183), +(965, 'Sara', 1883, 'F', 183), +(966, 'Leona', 1883, 'F', 178), +(967, 'Nina', 1883, 'F', 177), +(968, 'Rachel', 1883, 'F', 174), +(969, 'Lola', 1883, 'F', 172), +(970, 'Iva', 1883, 'F', 170), +(971, 'Ann', 1883, 'F', 167), +(972, 'Matilda', 1883, 'F', 167), +(973, 'Lela', 1883, 'F', 163), +(974, 'Ruby', 1883, 'F', 163), +(975, 'Delia', 1883, 'F', 162), +(976, 'Sophia', 1883, 'F', 159), +(977, 'Mayme', 1883, 'F', 157), +(978, 'Millie', 1883, 'F', 155), +(979, 'Estelle', 1883, 'F', 151), +(980, 'Josie', 1883, 'F', 148), +(981, 'Allie', 1883, 'F', 146), +(982, 'Louisa', 1883, 'F', 143), +(983, 'Lou', 1883, 'F', 142), +(984, 'Dorothy', 1883, 'F', 141), +(985, 'Inez', 1883, 'F', 141), +(986, 'Maria', 1883, 'F', 141), +(987, 'Essie', 1883, 'F', 139), +(988, 'Evelyn', 1883, 'F', 139), +(989, 'Barbara', 1883, 'F', 135), +(990, 'Callie', 1883, 'F', 135), +(991, 'Janie', 1883, 'F', 135), +(992, 'Bettie', 1883, 'F', 130), +(993, 'Beatrice', 1883, 'F', 126), +(994, 'Ola', 1883, 'F', 126), +(995, 'Winifred', 1883, 'F', 125), +(996, 'Hazel', 1883, 'F', 123), +(997, 'Betty', 1883, 'F', 120), +(998, 'Luella', 1883, 'F', 120), +(999, 'Mable', 1883, 'F', 120), +(1000, 'Cornelia', 1883, 'F', 116), +(1001, 'Nell', 1883, 'F', 116), +(1002, 'Rosie', 1883, 'F', 115), +(1003, 'Alta', 1883, 'F', 114), +(1004, 'Tillie', 1883, 'F', 114), +(1005, 'Ina', 1883, 'F', 113), +(1006, 'Victoria', 1883, 'F', 110), +(1007, 'Bertie', 1883, 'F', 106), +(1008, 'Eunice', 1883, 'F', 106), +(1009, 'Rena', 1883, 'F', 105), +(1010, 'Christine', 1883, 'F', 103), +(1011, 'Sophie', 1883, 'F', 103), +(1012, 'Verna', 1883, 'F', 103), +(1013, 'Celia', 1883, 'F', 101), +(1014, 'Dollie', 1883, 'F', 100), +(1015, 'Mathilda', 1883, 'F', 100), +(1016, 'John', 1883, 'M', 8894), +(1017, 'William', 1883, 'M', 8387), +(1018, 'James', 1883, 'M', 5224), +(1019, 'Charles', 1883, 'M', 4826), +(1020, 'George', 1883, 'M', 4736), +(1021, 'Frank', 1883, 'M', 2986), +(1022, 'Joseph', 1883, 'M', 2515), +(1023, 'Henry', 1883, 'M', 2383), +(1024, 'Robert', 1883, 'M', 2334), +(1025, 'Thomas', 1883, 'M', 2316), +(1026, 'Edward', 1883, 'M', 2250), +(1027, 'Harry', 1883, 'M', 2110), +(1028, 'Walter', 1883, 'M', 1705), +(1029, 'Arthur', 1883, 'M', 1591), +(1030, 'Fred', 1883, 'M', 1502), +(1031, 'Albert', 1883, 'M', 1496), +(1032, 'Samuel', 1883, 'M', 937), +(1033, 'Clarence', 1883, 'M', 837), +(1034, 'Louis', 1883, 'M', 796), +(1035, 'David', 1883, 'M', 735), +(1036, 'Richard', 1883, 'M', 649), +(1037, 'Charlie', 1883, 'M', 643), +(1038, 'Ernest', 1883, 'M', 641), +(1039, 'Andrew', 1883, 'M', 623), +(1040, 'Daniel', 1883, 'M', 615), +(1041, 'Joe', 1883, 'M', 607), +(1042, 'Oscar', 1883, 'M', 607), +(1043, 'Jesse', 1883, 'M', 584), +(1044, 'Will', 1883, 'M', 576), +(1045, 'Roy', 1883, 'M', 556), +(1046, 'Benjamin', 1883, 'M', 508), +(1047, 'Carl', 1883, 'M', 480), +(1048, 'Sam', 1883, 'M', 476), +(1049, 'Willie', 1883, 'M', 474), +(1050, 'Alfred', 1883, 'M', 457), +(1051, 'Peter', 1883, 'M', 450), +(1052, 'Frederick', 1883, 'M', 438), +(1053, 'Lewis', 1883, 'M', 431), +(1054, 'Howard', 1883, 'M', 429), +(1055, 'Elmer', 1883, 'M', 423), +(1056, 'Herbert', 1883, 'M', 422), +(1057, 'Earl', 1883, 'M', 389), +(1058, 'Lee', 1883, 'M', 388), +(1059, 'Tom', 1883, 'M', 386), +(1060, 'Ralph', 1883, 'M', 385), +(1061, 'Martin', 1883, 'M', 377), +(1062, 'Herman', 1883, 'M', 359), +(1063, 'Paul', 1883, 'M', 358), +(1064, 'Jacob', 1883, 'M', 356), +(1065, 'Clyde', 1883, 'M', 336), +(1066, 'Eugene', 1883, 'M', 325), +(1067, 'Jim', 1883, 'M', 322), +(1068, 'Harvey', 1883, 'M', 318), +(1069, 'Claude', 1883, 'M', 315), +(1070, 'Michael', 1883, 'M', 307), +(1071, 'Ben', 1883, 'M', 306), +(1072, 'Edwin', 1883, 'M', 299), +(1073, 'Edgar', 1883, 'M', 292), +(1074, 'Chester', 1883, 'M', 290), +(1075, 'Francis', 1883, 'M', 285), +(1076, 'Lawrence', 1883, 'M', 282), +(1077, 'Bert', 1883, 'M', 273), +(1078, 'Charley', 1883, 'M', 254), +(1079, 'Ed', 1883, 'M', 247), +(1080, 'Jack', 1883, 'M', 242), +(1081, 'Otto', 1883, 'M', 240), +(1082, 'Ira', 1883, 'M', 239), +(1083, 'Raymond', 1883, 'M', 233), +(1084, 'Luther', 1883, 'M', 229), +(1085, 'Isaac', 1883, 'M', 227), +(1086, 'Guy', 1883, 'M', 224), +(1087, 'Oliver', 1883, 'M', 219), +(1088, 'Floyd', 1883, 'M', 217), +(1089, 'Hugh', 1883, 'M', 215), +(1090, 'Patrick', 1883, 'M', 213), +(1091, 'Homer', 1883, 'M', 210), +(1092, 'August', 1883, 'M', 209), +(1093, 'Ray', 1883, 'M', 202), +(1094, 'Leonard', 1883, 'M', 200), +(1095, 'Alexander', 1883, 'M', 187), +(1096, 'Theodore', 1883, 'M', 185), +(1097, 'Allen', 1883, 'M', 175), +(1098, 'Horace', 1883, 'M', 167), +(1099, 'Archie', 1883, 'M', 166), +(1100, 'Philip', 1883, 'M', 166), +(1101, 'Sidney', 1883, 'M', 165), +(1102, 'Marion', 1883, 'M', 163), +(1103, 'Julius', 1883, 'M', 160), +(1104, 'Jessie', 1883, 'M', 151), +(1105, 'Milton', 1883, 'M', 149), +(1106, 'Warren', 1883, 'M', 146), +(1107, 'Anthony', 1883, 'M', 143), +(1108, 'Everett', 1883, 'M', 143), +(1109, 'Leroy', 1883, 'M', 143), +(1110, 'Leo', 1883, 'M', 142), +(1111, 'Bernard', 1883, 'M', 141), +(1112, 'Leon', 1883, 'M', 140), +(1113, 'Stephen', 1883, 'M', 140), +(1114, 'Emil', 1883, 'M', 139), +(1115, 'Clifford', 1883, 'M', 138), +(1116, 'Dave', 1883, 'M', 135), +(1117, 'Perry', 1883, 'M', 133), +(1118, 'Willis', 1883, 'M', 131), +(1119, 'Grover', 1883, 'M', 127), +(1120, 'Eddie', 1883, 'M', 125), +(1121, 'Rufus', 1883, 'M', 125), +(1122, 'Calvin', 1883, 'M', 122), +(1123, 'Alex', 1883, 'M', 120), +(1124, 'Dan', 1883, 'M', 120), +(1125, 'Leslie', 1883, 'M', 120), +(1126, 'Lester', 1883, 'M', 116), +(1127, 'Adolph', 1883, 'M', 115), +(1128, 'Alvin', 1883, 'M', 113), +(1129, 'Amos', 1883, 'M', 113), +(1130, 'Dennis', 1883, 'M', 112), +(1131, 'Jess', 1883, 'M', 112), +(1132, 'Harold', 1883, 'M', 108), +(1133, 'Adam', 1883, 'M', 107), +(1134, 'Jerry', 1883, 'M', 107), +(1135, 'Norman', 1883, 'M', 106), +(1136, 'Aaron', 1883, 'M', 105), +(1137, 'Wesley', 1883, 'M', 104), +(1138, 'Alonzo', 1883, 'M', 100), +(1139, 'Wallace', 1883, 'M', 100), +(1140, 'Mary', 1884, 'F', 9217), +(1141, 'Anna', 1884, 'F', 3860), +(1142, 'Emma', 1884, 'F', 2587), +(1143, 'Elizabeth', 1884, 'F', 2549), +(1144, 'Minnie', 1884, 'F', 2243), +(1145, 'Margaret', 1884, 'F', 2143), +(1146, 'Ida', 1884, 'F', 1882), +(1147, 'Clara', 1884, 'F', 1852), +(1148, 'Bertha', 1884, 'F', 1789), +(1149, 'Annie', 1884, 'F', 1739), +(1150, 'Alice', 1884, 'F', 1732), +(1151, 'Florence', 1884, 'F', 1570), +(1152, 'Grace', 1884, 'F', 1525), +(1153, 'Sarah', 1884, 'F', 1518), +(1154, 'Bessie', 1884, 'F', 1451), +(1155, 'Martha', 1884, 'F', 1443), +(1156, 'Nellie', 1884, 'F', 1417), +(1157, 'Ethel', 1884, 'F', 1386), +(1158, 'Ella', 1884, 'F', 1374), +(1159, 'Mabel', 1884, 'F', 1270), +(1160, 'Laura', 1884, 'F', 1246), +(1161, 'Carrie', 1884, 'F', 1245), +(1162, 'Cora', 1884, 'F', 1244), +(1163, 'Maude', 1884, 'F', 1225), +(1164, 'Pearl', 1884, 'F', 1138), +(1165, 'Lillian', 1884, 'F', 1109), +(1166, 'Edith', 1884, 'F', 1104), +(1167, 'Gertrude', 1884, 'F', 1063), +(1168, 'Jennie', 1884, 'F', 1063), +(1169, 'Rose', 1884, 'F', 1060), +(1170, 'Mattie', 1884, 'F', 1007), +(1171, 'Hattie', 1884, 'F', 993), +(1172, 'Helen', 1884, 'F', 986), +(1173, 'Myrtle', 1884, 'F', 979), +(1174, 'Louise', 1884, 'F', 962), +(1175, 'Edna', 1884, 'F', 957), +(1176, 'Julia', 1884, 'F', 935), +(1177, 'Eva', 1884, 'F', 929), +(1178, 'Lula', 1884, 'F', 916), +(1179, 'Lillie', 1884, 'F', 911), +(1180, 'Lena', 1884, 'F', 906), +(1181, 'Jessie', 1884, 'F', 888), +(1182, 'Catherine', 1884, 'F', 874), +(1183, 'Ada', 1884, 'F', 854), +(1184, 'Josephine', 1884, 'F', 800), +(1185, 'Frances', 1884, 'F', 789), +(1186, 'Lucy', 1884, 'F', 787), +(1187, 'Maggie', 1884, 'F', 749), +(1188, 'Marie', 1884, 'F', 746), +(1189, 'Fannie', 1884, 'F', 738), +(1190, 'Dora', 1884, 'F', 720), +(1191, 'Blanche', 1884, 'F', 711), +(1192, 'Agnes', 1884, 'F', 703), +(1193, 'Daisy', 1884, 'F', 685), +(1194, 'Katherine', 1884, 'F', 671), +(1195, 'Nora', 1884, 'F', 648), +(1196, 'Mamie', 1884, 'F', 609), +(1197, 'Rosa', 1884, 'F', 607), +(1198, 'Ellen', 1884, 'F', 597), +(1199, 'Stella', 1884, 'F', 584), +(1200, 'May', 1884, 'F', 564), +(1201, 'Effie', 1884, 'F', 558), +(1202, 'Elsie', 1884, 'F', 549), +(1203, 'Mae', 1884, 'F', 542), +(1204, 'Della', 1884, 'F', 541), +(1205, 'Lizzie', 1884, 'F', 523), +(1206, 'Nettie', 1884, 'F', 522), +(1207, 'Nancy', 1884, 'F', 520), +(1208, 'Sallie', 1884, 'F', 494), +(1209, 'Alma', 1884, 'F', 480), +(1210, 'Sadie', 1884, 'F', 466), +(1211, 'Maud', 1884, 'F', 461), +(1212, 'Susie', 1884, 'F', 455), +(1213, 'Ruth', 1884, 'F', 442), +(1214, 'Etta', 1884, 'F', 423), +(1215, 'Lottie', 1884, 'F', 397), +(1216, 'Flora', 1884, 'F', 393), +(1217, 'Caroline', 1884, 'F', 380), +(1218, 'Mollie', 1884, 'F', 374), +(1219, 'Lydia', 1884, 'F', 369), +(1220, 'Emily', 1884, 'F', 364), +(1221, 'Viola', 1884, 'F', 362), +(1222, 'Katie', 1884, 'F', 360), +(1223, 'Olive', 1884, 'F', 360), +(1224, 'Addie', 1884, 'F', 356), +(1225, 'Charlotte', 1884, 'F', 344), +(1226, 'Kate', 1884, 'F', 344), +(1227, 'Kathryn', 1884, 'F', 344), +(1228, 'Lulu', 1884, 'F', 344), +(1229, 'Georgia', 1884, 'F', 341), +(1230, 'Harriet', 1884, 'F', 339), +(1231, 'Amanda', 1884, 'F', 337), +(1232, 'Willie', 1884, 'F', 332), +(1233, 'Susan', 1884, 'F', 326), +(1234, 'Irene', 1884, 'F', 324), +(1235, 'Amelia', 1884, 'F', 315), +(1236, 'Nannie', 1884, 'F', 314), +(1237, 'Jane', 1884, 'F', 295), +(1238, 'Esther', 1884, 'F', 291), +(1239, 'Belle', 1884, 'F', 286), +(1240, 'Eliza', 1884, 'F', 280), +(1241, 'Rebecca', 1884, 'F', 278), +(1242, 'Hannah', 1884, 'F', 275), +(1243, 'Ollie', 1884, 'F', 275), +(1244, 'Virginia', 1884, 'F', 263), +(1245, 'Ora', 1884, 'F', 251), +(1246, 'Mildred', 1884, 'F', 247), +(1247, 'Matilda', 1884, 'F', 244), +(1248, 'Ruby', 1884, 'F', 244), +(1249, 'Anne', 1884, 'F', 242), +(1250, 'Henrietta', 1884, 'F', 240), +(1251, 'Theresa', 1884, 'F', 240), +(1252, 'Beulah', 1884, 'F', 233), +(1253, 'Pauline', 1884, 'F', 230), +(1254, 'Rachel', 1884, 'F', 230), +(1255, 'Estella', 1884, 'F', 222), +(1256, 'Augusta', 1884, 'F', 217), +(1257, 'Ann', 1884, 'F', 214), +(1258, 'Iva', 1884, 'F', 213), +(1259, 'Lela', 1884, 'F', 213), +(1260, 'Leona', 1884, 'F', 210), +(1261, 'Hazel', 1884, 'F', 209), +(1262, 'Amy', 1884, 'F', 205), +(1263, 'Eleanor', 1884, 'F', 198), +(1264, 'Josie', 1884, 'F', 198), +(1265, 'Lola', 1884, 'F', 197), +(1266, 'Sara', 1884, 'F', 197), +(1267, 'Barbara', 1884, 'F', 193), +(1268, 'Maria', 1884, 'F', 190), +(1269, 'Mayme', 1884, 'F', 190), +(1270, 'Nina', 1884, 'F', 187), +(1271, 'Estelle', 1884, 'F', 182), +(1272, 'Marion', 1884, 'F', 181), +(1273, 'Evelyn', 1884, 'F', 170), +(1274, 'Sophia', 1884, 'F', 170), +(1275, 'Beatrice', 1884, 'F', 167), +(1276, 'Dorothy', 1884, 'F', 163), +(1277, 'Callie', 1884, 'F', 161), +(1278, 'Luella', 1884, 'F', 158), +(1279, 'Rosie', 1884, 'F', 152), +(1280, 'Allie', 1884, 'F', 148), +(1281, 'Essie', 1884, 'F', 148), +(1282, 'Inez', 1884, 'F', 148), +(1283, 'Louisa', 1884, 'F', 147), +(1284, 'Lou', 1884, 'F', 146), +(1285, 'Winifred', 1884, 'F', 146), +(1286, 'Delia', 1884, 'F', 145), +(1287, 'Tillie', 1884, 'F', 145), +(1288, 'Betty', 1884, 'F', 144), +(1289, 'Millie', 1884, 'F', 144), +(1290, 'Alta', 1884, 'F', 140), +(1291, 'Mable', 1884, 'F', 139), +(1292, 'Goldie', 1884, 'F', 135), +(1293, 'Ina', 1884, 'F', 134), +(1294, 'Christine', 1884, 'F', 129), +(1295, 'Birdie', 1884, 'F', 128), +(1296, 'Hilda', 1884, 'F', 125), +(1297, 'Victoria', 1884, 'F', 124), +(1298, 'Celia', 1884, 'F', 122), +(1299, 'Janie', 1884, 'F', 122), +(1300, 'Ola', 1884, 'F', 121), +(1301, 'Nell', 1884, 'F', 120), +(1302, 'Sophie', 1884, 'F', 120), +(1303, 'Bettie', 1884, 'F', 118), +(1304, 'Isabelle', 1884, 'F', 115), +(1305, 'Adeline', 1884, 'F', 112), +(1306, 'Eunice', 1884, 'F', 112), +(1307, 'Eula', 1884, 'F', 111), +(1308, 'Cecelia', 1884, 'F', 109), +(1309, 'Bess', 1884, 'F', 105), +(1310, 'Harriett', 1884, 'F', 105), +(1311, 'Hettie', 1884, 'F', 105), +(1312, 'Jean', 1884, 'F', 103), +(1313, 'Leila', 1884, 'F', 103), +(1314, 'Alberta', 1884, 'F', 102), +(1315, 'Isabel', 1884, 'F', 102), +(1316, 'Lelia', 1884, 'F', 102), +(1317, 'Roxie', 1884, 'F', 100), +(1318, 'John', 1884, 'M', 9388), +(1319, 'William', 1884, 'M', 8897), +(1320, 'James', 1884, 'M', 5693), +(1321, 'George', 1884, 'M', 4961), +(1322, 'Charles', 1884, 'M', 4802), +(1323, 'Frank', 1884, 'M', 3218), +(1324, 'Joseph', 1884, 'M', 2708), +(1325, 'Thomas', 1884, 'M', 2572), +(1326, 'Henry', 1884, 'M', 2474), +(1327, 'Robert', 1884, 'M', 2469), +(1328, 'Edward', 1884, 'M', 2439), +(1329, 'Harry', 1884, 'M', 2323), +(1330, 'Walter', 1884, 'M', 1902), +(1331, 'Arthur', 1884, 'M', 1690), +(1332, 'Fred', 1884, 'M', 1638), +(1333, 'Albert', 1884, 'M', 1435), +(1334, 'Samuel', 1884, 'M', 945), +(1335, 'Clarence', 1884, 'M', 889), +(1336, 'Louis', 1884, 'M', 886), +(1337, 'Grover', 1884, 'M', 802), +(1338, 'David', 1884, 'M', 761), +(1339, 'Joe', 1884, 'M', 759), +(1340, 'Richard', 1884, 'M', 749), +(1341, 'Charlie', 1884, 'M', 746), +(1342, 'Ernest', 1884, 'M', 690), +(1343, 'Roy', 1884, 'M', 680), +(1344, 'Jesse', 1884, 'M', 670), +(1345, 'Will', 1884, 'M', 650), +(1346, 'Andrew', 1884, 'M', 616), +(1347, 'Oscar', 1884, 'M', 615), +(1348, 'Willie', 1884, 'M', 578), +(1349, 'Daniel', 1884, 'M', 573), +(1350, 'Sam', 1884, 'M', 533), +(1351, 'Peter', 1884, 'M', 524), +(1352, 'Elmer', 1884, 'M', 523), +(1353, 'Carl', 1884, 'M', 521), +(1354, 'Alfred', 1884, 'M', 520), +(1355, 'Benjamin', 1884, 'M', 509), +(1356, 'Lewis', 1884, 'M', 477), +(1357, 'Earl', 1884, 'M', 464), +(1358, 'Ralph', 1884, 'M', 464), +(1359, 'Frederick', 1884, 'M', 454), +(1360, 'Lee', 1884, 'M', 435), +(1361, 'Howard', 1884, 'M', 432), +(1362, 'Paul', 1884, 'M', 422), +(1363, 'Herbert', 1884, 'M', 421), +(1364, 'Tom', 1884, 'M', 394), +(1365, 'Herman', 1884, 'M', 385), +(1366, 'Martin', 1884, 'M', 385), +(1367, 'Jacob', 1884, 'M', 381), +(1368, 'Michael', 1884, 'M', 373), +(1369, 'Ben', 1884, 'M', 367), +(1370, 'Harvey', 1884, 'M', 358), +(1371, 'Claude', 1884, 'M', 353), +(1372, 'Jim', 1884, 'M', 346), +(1373, 'Clyde', 1884, 'M', 345), +(1374, 'Francis', 1884, 'M', 340), +(1375, 'Chester', 1884, 'M', 338), +(1376, 'Eugene', 1884, 'M', 321), +(1377, 'Ed', 1884, 'M', 314), +(1378, 'Edwin', 1884, 'M', 308), +(1379, 'Raymond', 1884, 'M', 299), +(1380, 'Charley', 1884, 'M', 290), +(1381, 'Edgar', 1884, 'M', 290), +(1382, 'Otto', 1884, 'M', 288), +(1383, 'Ira', 1884, 'M', 284), +(1384, 'Bert', 1884, 'M', 280), +(1385, 'Jack', 1884, 'M', 274), +(1386, 'Luther', 1884, 'M', 273), +(1387, 'Floyd', 1884, 'M', 263), +(1388, 'Lawrence', 1884, 'M', 262), +(1389, 'Guy', 1884, 'M', 260), +(1390, 'Hugh', 1884, 'M', 246), +(1391, 'Oliver', 1884, 'M', 245), +(1392, 'Isaac', 1884, 'M', 243), +(1393, 'Alexander', 1884, 'M', 236), +(1394, 'Ray', 1884, 'M', 232), +(1395, 'Patrick', 1884, 'M', 222), +(1396, 'Homer', 1884, 'M', 216), +(1397, 'August', 1884, 'M', 213), +(1398, 'Theodore', 1884, 'M', 211), +(1399, 'Archie', 1884, 'M', 206), +(1400, 'Leonard', 1884, 'M', 206), +(1401, 'Leo', 1884, 'M', 192), +(1402, 'Harold', 1884, 'M', 191), +(1403, 'Marion', 1884, 'M', 184), +(1404, 'Allen', 1884, 'M', 182), +(1405, 'Anthony', 1884, 'M', 179), +(1406, 'Eddie', 1884, 'M', 179), +(1407, 'Jessie', 1884, 'M', 177), +(1408, 'Emil', 1884, 'M', 175), +(1409, 'Cleveland', 1884, 'M', 174), +(1410, 'Stephen', 1884, 'M', 165), +(1411, 'Warren', 1884, 'M', 164), +(1412, 'Julius', 1884, 'M', 162), +(1413, 'Philip', 1884, 'M', 161), +(1414, 'Dave', 1884, 'M', 159), +(1415, 'Horace', 1884, 'M', 154), +(1416, 'Leroy', 1884, 'M', 154), +(1417, 'Dan', 1884, 'M', 151), +(1418, 'Willis', 1884, 'M', 151), +(1419, 'Clifford', 1884, 'M', 150), +(1420, 'Leon', 1884, 'M', 150), +(1421, 'Milton', 1884, 'M', 150), +(1422, 'Alex', 1884, 'M', 148), +(1423, 'Alvin', 1884, 'M', 145), +(1424, 'Sidney', 1884, 'M', 142), +(1425, 'Bernard', 1884, 'M', 140), +(1426, 'Calvin', 1884, 'M', 139), +(1427, 'Amos', 1884, 'M', 137), +(1428, 'Perry', 1884, 'M', 135), +(1429, 'Everett', 1884, 'M', 134), +(1430, 'Norman', 1884, 'M', 130), +(1431, 'Percy', 1884, 'M', 126), +(1432, 'Leslie', 1884, 'M', 125), +(1433, 'Jess', 1884, 'M', 124), +(1434, 'Victor', 1884, 'M', 124), +(1435, 'Lester', 1884, 'M', 123), +(1436, 'Lloyd', 1884, 'M', 122), +(1437, 'Jerry', 1884, 'M', 121), +(1438, 'Wesley', 1884, 'M', 120), +(1439, 'Mack', 1884, 'M', 119), +(1440, 'Gus', 1884, 'M', 117), +(1441, 'Matthew', 1884, 'M', 117), +(1442, 'Rufus', 1884, 'M', 117), +(1443, 'Maurice', 1884, 'M', 115), +(1444, 'Dennis', 1884, 'M', 113), +(1445, 'Alonzo', 1884, 'M', 112), +(1446, 'Jose', 1884, 'M', 112), +(1447, 'Jay', 1884, 'M', 110), +(1448, 'Ross', 1884, 'M', 110), +(1449, 'Earnest', 1884, 'M', 109), +(1450, 'Adolph', 1884, 'M', 107), +(1451, 'Otis', 1884, 'M', 107), +(1452, 'Russell', 1884, 'M', 107), +(1453, 'Stanley', 1884, 'M', 105), +(1454, 'Felix', 1884, 'M', 102), +(1455, 'Wallace', 1884, 'M', 102), +(1456, 'Clinton', 1884, 'M', 101), +(1457, 'Gilbert', 1884, 'M', 100), +(1458, 'Nathan', 1884, 'M', 100), +(1459, 'Mary', 1885, 'F', 9128), +(1460, 'Anna', 1885, 'F', 3994), +(1461, 'Emma', 1885, 'F', 2728), +(1462, 'Elizabeth', 1885, 'F', 2582), +(1463, 'Margaret', 1885, 'F', 2204), +(1464, 'Minnie', 1885, 'F', 2178), +(1465, 'Clara', 1885, 'F', 1910), +(1466, 'Bertha', 1885, 'F', 1860), +(1467, 'Ida', 1885, 'F', 1854), +(1468, 'Annie', 1885, 'F', 1703), +(1469, 'Alice', 1885, 'F', 1681), +(1470, 'Florence', 1885, 'F', 1667), +(1471, 'Bessie', 1885, 'F', 1588), +(1472, 'Grace', 1885, 'F', 1575), +(1473, 'Ethel', 1885, 'F', 1495), +(1474, 'Nellie', 1885, 'F', 1432), +(1475, 'Martha', 1885, 'F', 1425), +(1476, 'Sarah', 1885, 'F', 1424), +(1477, 'Ella', 1885, 'F', 1395), +(1478, 'Mabel', 1885, 'F', 1349), +(1479, 'Laura', 1885, 'F', 1325), +(1480, 'Carrie', 1885, 'F', 1283), +(1481, 'Cora', 1885, 'F', 1253), +(1482, 'Maude', 1885, 'F', 1222), +(1483, 'Rose', 1885, 'F', 1164), +(1484, 'Pearl', 1885, 'F', 1146), +(1485, 'Lillian', 1885, 'F', 1143), +(1486, 'Helen', 1885, 'F', 1134), +(1487, 'Gertrude', 1885, 'F', 1086), +(1488, 'Edna', 1885, 'F', 1077), +(1489, 'Edith', 1885, 'F', 1071), +(1490, 'Julia', 1885, 'F', 1062), +(1491, 'Jennie', 1885, 'F', 1045), +(1492, 'Myrtle', 1885, 'F', 1026), +(1493, 'Mattie', 1885, 'F', 1014), +(1494, 'Hattie', 1885, 'F', 1008), +(1495, 'Lillie', 1885, 'F', 979), +(1496, 'Eva', 1885, 'F', 971), +(1497, 'Louise', 1885, 'F', 956), +(1498, 'Jessie', 1885, 'F', 952), +(1499, 'Lula', 1885, 'F', 949), +(1500, 'Marie', 1885, 'F', 885), +(1501, 'Ada', 1885, 'F', 876), +(1502, 'Lena', 1885, 'F', 876), +(1503, 'Catherine', 1885, 'F', 846), +(1504, 'Frances', 1885, 'F', 844), +(1505, 'Fannie', 1885, 'F', 783), +(1506, 'Josephine', 1885, 'F', 783), +(1507, 'Dora', 1885, 'F', 776), +(1508, 'Katherine', 1885, 'F', 751), +(1509, 'Maggie', 1885, 'F', 716), +(1510, 'Lucy', 1885, 'F', 711), +(1511, 'Blanche', 1885, 'F', 710), +(1512, 'Agnes', 1885, 'F', 695), +(1513, 'Elsie', 1885, 'F', 685), +(1514, 'Nora', 1885, 'F', 670), +(1515, 'Stella', 1885, 'F', 649), +(1516, 'Rosa', 1885, 'F', 623), +(1517, 'Effie', 1885, 'F', 613), +(1518, 'Daisy', 1885, 'F', 607), +(1519, 'May', 1885, 'F', 607), +(1520, 'Mamie', 1885, 'F', 606), +(1521, 'Mae', 1885, 'F', 578), +(1522, 'Ellen', 1885, 'F', 555), +(1523, 'Lizzie', 1885, 'F', 537), +(1524, 'Nettie', 1885, 'F', 536), +(1525, 'Nancy', 1885, 'F', 527), +(1526, 'Alma', 1885, 'F', 515), +(1527, 'Sadie', 1885, 'F', 514), +(1528, 'Ruth', 1885, 'F', 506), +(1529, 'Della', 1885, 'F', 500), +(1530, 'Susie', 1885, 'F', 477), +(1531, 'Sallie', 1885, 'F', 457), +(1532, 'Flora', 1885, 'F', 445), +(1533, 'Maud', 1885, 'F', 429), +(1534, 'Addie', 1885, 'F', 406), +(1535, 'Lydia', 1885, 'F', 404), +(1536, 'Caroline', 1885, 'F', 399), +(1537, 'Mollie', 1885, 'F', 396), +(1538, 'Lottie', 1885, 'F', 393), +(1539, 'Katie', 1885, 'F', 388), +(1540, 'Irene', 1885, 'F', 376), +(1541, 'Etta', 1885, 'F', 372), +(1542, 'Georgia', 1885, 'F', 371), +(1543, 'Lulu', 1885, 'F', 360), +(1544, 'Olive', 1885, 'F', 349), +(1545, 'Emily', 1885, 'F', 346), +(1546, 'Viola', 1885, 'F', 345), +(1547, 'Harriet', 1885, 'F', 342), +(1548, 'Amanda', 1885, 'F', 339), +(1549, 'Jane', 1885, 'F', 330), +(1550, 'Esther', 1885, 'F', 320), +(1551, 'Kathryn', 1885, 'F', 320), +(1552, 'Charlotte', 1885, 'F', 317), +(1553, 'Willie', 1885, 'F', 312), +(1554, 'Beulah', 1885, 'F', 309), +(1555, 'Kate', 1885, 'F', 309), +(1556, 'Ollie', 1885, 'F', 305), +(1557, 'Rebecca', 1885, 'F', 302), +(1558, 'Susan', 1885, 'F', 302), +(1559, 'Eliza', 1885, 'F', 300), +(1560, 'Amelia', 1885, 'F', 298), +(1561, 'Virginia', 1885, 'F', 289), +(1562, 'Nannie', 1885, 'F', 285), +(1563, 'Hazel', 1885, 'F', 281), +(1564, 'Ruby', 1885, 'F', 272), +(1565, 'Matilda', 1885, 'F', 260), +(1566, 'Belle', 1885, 'F', 255), +(1567, 'Pauline', 1885, 'F', 254), +(1568, 'Estella', 1885, 'F', 246), +(1569, 'Mildred', 1885, 'F', 245), +(1570, 'Amy', 1885, 'F', 240), +(1571, 'Hannah', 1885, 'F', 236), +(1572, 'Theresa', 1885, 'F', 232), +(1573, 'Leona', 1885, 'F', 231), +(1574, 'Iva', 1885, 'F', 229), +(1575, 'Henrietta', 1885, 'F', 225), +(1576, 'Augusta', 1885, 'F', 223), +(1577, 'Eleanor', 1885, 'F', 222), +(1578, 'Ora', 1885, 'F', 218), +(1579, 'Sara', 1885, 'F', 215), +(1580, 'Rachel', 1885, 'F', 212), +(1581, 'Josie', 1885, 'F', 211), +(1582, 'Ann', 1885, 'F', 208), +(1583, 'Anne', 1885, 'F', 203), +(1584, 'Marion', 1885, 'F', 198), +(1585, 'Mayme', 1885, 'F', 198), +(1586, 'Dorothy', 1885, 'F', 196), +(1587, 'Barbara', 1885, 'F', 195), +(1588, 'Nina', 1885, 'F', 193), +(1589, 'Evelyn', 1885, 'F', 191), +(1590, 'Lola', 1885, 'F', 191), +(1591, 'Beatrice', 1885, 'F', 188), +(1592, 'Sophia', 1885, 'F', 185), +(1593, 'Estelle', 1885, 'F', 183), +(1594, 'Mable', 1885, 'F', 180), +(1595, 'Allie', 1885, 'F', 176), +(1596, 'Maria', 1885, 'F', 175), +(1597, 'Lela', 1885, 'F', 168), +(1598, 'Goldie', 1885, 'F', 167), +(1599, 'Victoria', 1885, 'F', 163), +(1600, 'Eula', 1885, 'F', 158), +(1601, 'Callie', 1885, 'F', 157), +(1602, 'Alta', 1885, 'F', 155), +(1603, 'Betty', 1885, 'F', 155), +(1604, 'Delia', 1885, 'F', 155), +(1605, 'Janie', 1885, 'F', 155), +(1606, 'Celia', 1885, 'F', 153), +(1607, 'Essie', 1885, 'F', 153), +(1608, 'Millie', 1885, 'F', 152), +(1609, 'Nell', 1885, 'F', 151), +(1610, 'Inez', 1885, 'F', 150), +(1611, 'Rena', 1885, 'F', 148), +(1612, 'Rosie', 1885, 'F', 142), +(1613, 'Ola', 1885, 'F', 139), +(1614, 'Louisa', 1885, 'F', 138), +(1615, 'Eunice', 1885, 'F', 136); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(1616, 'Lou', 1885, 'F', 135), +(1617, 'Christine', 1885, 'F', 132), +(1618, 'Birdie', 1885, 'F', 131), +(1619, 'Luella', 1885, 'F', 131), +(1620, 'Bettie', 1885, 'F', 127), +(1621, 'Bertie', 1885, 'F', 126), +(1622, 'Ina', 1885, 'F', 126), +(1623, 'Sophie', 1885, 'F', 125), +(1624, 'Vera', 1885, 'F', 124), +(1625, 'Leila', 1885, 'F', 123), +(1626, 'Hilda', 1885, 'F', 121), +(1627, 'Olga', 1885, 'F', 121), +(1628, 'Winifred', 1885, 'F', 120), +(1629, 'Hulda', 1885, 'F', 113), +(1630, 'Lora', 1885, 'F', 113), +(1631, 'Sylvia', 1885, 'F', 112), +(1632, 'Dollie', 1885, 'F', 110), +(1633, 'Nelle', 1885, 'F', 109), +(1634, 'Elva', 1885, 'F', 108), +(1635, 'Verna', 1885, 'F', 108), +(1636, 'Christina', 1885, 'F', 107), +(1637, 'Sally', 1885, 'F', 107), +(1638, 'Hettie', 1885, 'F', 106), +(1639, 'Rhoda', 1885, 'F', 106), +(1640, 'Isabelle', 1885, 'F', 105), +(1641, 'Lois', 1885, 'F', 105), +(1642, 'Lelia', 1885, 'F', 104), +(1643, 'Isabel', 1885, 'F', 102), +(1644, 'Mathilda', 1885, 'F', 102), +(1645, 'Tillie', 1885, 'F', 101), +(1646, 'Lucille', 1885, 'F', 100), +(1647, 'John', 1885, 'M', 8756), +(1648, 'William', 1885, 'M', 8044), +(1649, 'James', 1885, 'M', 5175), +(1650, 'George', 1885, 'M', 4674), +(1651, 'Charles', 1885, 'M', 4599), +(1652, 'Frank', 1885, 'M', 3067), +(1653, 'Joseph', 1885, 'M', 2540), +(1654, 'Henry', 1885, 'M', 2406), +(1655, 'Robert', 1885, 'M', 2322), +(1656, 'Thomas', 1885, 'M', 2266), +(1657, 'Edward', 1885, 'M', 2220), +(1658, 'Harry', 1885, 'M', 2198), +(1659, 'Walter', 1885, 'M', 1808), +(1660, 'Fred', 1885, 'M', 1562), +(1661, 'Arthur', 1885, 'M', 1516), +(1662, 'Albert', 1885, 'M', 1429), +(1663, 'Clarence', 1885, 'M', 906), +(1664, 'Samuel', 1885, 'M', 888), +(1665, 'Louis', 1885, 'M', 809), +(1666, 'Grover', 1885, 'M', 768), +(1667, 'Ernest', 1885, 'M', 718), +(1668, 'David', 1885, 'M', 712), +(1669, 'Charlie', 1885, 'M', 705), +(1670, 'Roy', 1885, 'M', 691), +(1671, 'Joe', 1885, 'M', 681), +(1672, 'Richard', 1885, 'M', 672), +(1673, 'Will', 1885, 'M', 625), +(1674, 'Oscar', 1885, 'M', 623), +(1675, 'Willie', 1885, 'M', 614), +(1676, 'Andrew', 1885, 'M', 599), +(1677, 'Jesse', 1885, 'M', 556), +(1678, 'Daniel', 1885, 'M', 535), +(1679, 'Peter', 1885, 'M', 516), +(1680, 'Carl', 1885, 'M', 494), +(1681, 'Sam', 1885, 'M', 492), +(1682, 'Earl', 1885, 'M', 481), +(1683, 'Frederick', 1885, 'M', 466), +(1684, 'Benjamin', 1885, 'M', 464), +(1685, 'Alfred', 1885, 'M', 446), +(1686, 'Elmer', 1885, 'M', 443), +(1687, 'Howard', 1885, 'M', 438), +(1688, 'Lewis', 1885, 'M', 437), +(1689, 'Paul', 1885, 'M', 428), +(1690, 'Ralph', 1885, 'M', 422), +(1691, 'Herbert', 1885, 'M', 388), +(1692, 'Jim', 1885, 'M', 370), +(1693, 'Michael', 1885, 'M', 370), +(1694, 'Tom', 1885, 'M', 361), +(1695, 'Martin', 1885, 'M', 357), +(1696, 'Lee', 1885, 'M', 348), +(1697, 'Eugene', 1885, 'M', 345), +(1698, 'Claude', 1885, 'M', 343), +(1699, 'Jacob', 1885, 'M', 343), +(1700, 'Ed', 1885, 'M', 328), +(1701, 'Herman', 1885, 'M', 326), +(1702, 'Francis', 1885, 'M', 319), +(1703, 'Clyde', 1885, 'M', 318), +(1704, 'Raymond', 1885, 'M', 307), +(1705, 'Harvey', 1885, 'M', 304), +(1706, 'Edgar', 1885, 'M', 303), +(1707, 'Jack', 1885, 'M', 295), +(1708, 'Ben', 1885, 'M', 292), +(1709, 'Edwin', 1885, 'M', 289), +(1710, 'Lawrence', 1885, 'M', 288), +(1711, 'Charley', 1885, 'M', 285), +(1712, 'Bert', 1885, 'M', 276), +(1713, 'Chester', 1885, 'M', 273), +(1714, 'Guy', 1885, 'M', 266), +(1715, 'Otto', 1885, 'M', 263), +(1716, 'Floyd', 1885, 'M', 259), +(1717, 'Luther', 1885, 'M', 259), +(1718, 'Oliver', 1885, 'M', 258), +(1719, 'Hugh', 1885, 'M', 257), +(1720, 'Ray', 1885, 'M', 237), +(1721, 'Ira', 1885, 'M', 235), +(1722, 'Homer', 1885, 'M', 228), +(1723, 'Patrick', 1885, 'M', 217), +(1724, 'Alexander', 1885, 'M', 205), +(1725, 'Leonard', 1885, 'M', 205), +(1726, 'Isaac', 1885, 'M', 204), +(1727, 'Jessie', 1885, 'M', 202), +(1728, 'Harold', 1885, 'M', 201), +(1729, 'Leo', 1885, 'M', 199), +(1730, 'Theodore', 1885, 'M', 199), +(1731, 'Archie', 1885, 'M', 196), +(1732, 'August', 1885, 'M', 193), +(1733, 'Allen', 1885, 'M', 184), +(1734, 'Sidney', 1885, 'M', 170), +(1735, 'Philip', 1885, 'M', 163), +(1736, 'Leroy', 1885, 'M', 162), +(1737, 'Bernard', 1885, 'M', 160), +(1738, 'Alex', 1885, 'M', 159), +(1739, 'Stephen', 1885, 'M', 158), +(1740, 'Horace', 1885, 'M', 155), +(1741, 'Anthony', 1885, 'M', 153), +(1742, 'Warren', 1885, 'M', 151), +(1743, 'Julius', 1885, 'M', 150), +(1744, 'Cleveland', 1885, 'M', 147), +(1745, 'Leon', 1885, 'M', 146), +(1746, 'Victor', 1885, 'M', 143), +(1747, 'Eddie', 1885, 'M', 141), +(1748, 'Lester', 1885, 'M', 141), +(1749, 'Marion', 1885, 'M', 141), +(1750, 'Clifford', 1885, 'M', 139), +(1751, 'Emil', 1885, 'M', 138), +(1752, 'Willis', 1885, 'M', 133), +(1753, 'Milton', 1885, 'M', 130), +(1754, 'Dan', 1885, 'M', 129), +(1755, 'Dave', 1885, 'M', 128), +(1756, 'Everett', 1885, 'M', 128), +(1757, 'Alvin', 1885, 'M', 125), +(1758, 'Leslie', 1885, 'M', 122), +(1759, 'Earnest', 1885, 'M', 120), +(1760, 'Calvin', 1885, 'M', 119), +(1761, 'Jess', 1885, 'M', 119), +(1762, 'Norman', 1885, 'M', 118), +(1763, 'Rufus', 1885, 'M', 118), +(1764, 'Franklin', 1885, 'M', 117), +(1765, 'Jerry', 1885, 'M', 115), +(1766, 'Perry', 1885, 'M', 115), +(1767, 'Amos', 1885, 'M', 114), +(1768, 'Dennis', 1885, 'M', 112), +(1769, 'Jose', 1885, 'M', 111), +(1770, 'Matthew', 1885, 'M', 111), +(1771, 'Melvin', 1885, 'M', 110), +(1772, 'Lloyd', 1885, 'M', 109), +(1773, 'Ross', 1885, 'M', 109), +(1774, 'Wesley', 1885, 'M', 108), +(1775, 'Wallace', 1885, 'M', 107), +(1776, 'Alonzo', 1885, 'M', 104), +(1777, 'Mack', 1885, 'M', 104), +(1778, 'Nathan', 1885, 'M', 103), +(1779, 'Adolph', 1885, 'M', 102), +(1780, 'Emmett', 1885, 'M', 101), +(1781, 'Jake', 1885, 'M', 100), +(1782, 'Mary', 1886, 'F', 9890), +(1783, 'Anna', 1886, 'F', 4283), +(1784, 'Emma', 1886, 'F', 2764), +(1785, 'Elizabeth', 1886, 'F', 2680), +(1786, 'Minnie', 1886, 'F', 2372), +(1787, 'Margaret', 1886, 'F', 2275), +(1788, 'Ida', 1886, 'F', 2049), +(1789, 'Bertha', 1886, 'F', 2001), +(1790, 'Clara', 1886, 'F', 1916), +(1791, 'Florence', 1886, 'F', 1860), +(1792, 'Alice', 1886, 'F', 1811), +(1793, 'Bessie', 1886, 'F', 1791), +(1794, 'Annie', 1886, 'F', 1765), +(1795, 'Grace', 1886, 'F', 1723), +(1796, 'Ethel', 1886, 'F', 1699), +(1797, 'Sarah', 1886, 'F', 1569), +(1798, 'Nellie', 1886, 'F', 1492), +(1799, 'Martha', 1886, 'F', 1491), +(1800, 'Ella', 1886, 'F', 1464), +(1801, 'Mabel', 1886, 'F', 1422), +(1802, 'Carrie', 1886, 'F', 1396), +(1803, 'Laura', 1886, 'F', 1372), +(1804, 'Edna', 1886, 'F', 1314), +(1805, 'Lillian', 1886, 'F', 1282), +(1806, 'Helen', 1886, 'F', 1267), +(1807, 'Rose', 1886, 'F', 1261), +(1808, 'Gertrude', 1886, 'F', 1250), +(1809, 'Cora', 1886, 'F', 1231), +(1810, 'Pearl', 1886, 'F', 1204), +(1811, 'Maude', 1886, 'F', 1189), +(1812, 'Edith', 1886, 'F', 1184), +(1813, 'Eva', 1886, 'F', 1155), +(1814, 'Hattie', 1886, 'F', 1139), +(1815, 'Jennie', 1886, 'F', 1100), +(1816, 'Myrtle', 1886, 'F', 1094), +(1817, 'Julia', 1886, 'F', 1061), +(1818, 'Louise', 1886, 'F', 1061), +(1819, 'Frances', 1886, 'F', 1059), +(1820, 'Mattie', 1886, 'F', 1044), +(1821, 'Lula', 1886, 'F', 1040), +(1822, 'Jessie', 1886, 'F', 1003), +(1823, 'Lillie', 1886, 'F', 995), +(1824, 'Lena', 1886, 'F', 992), +(1825, 'Marie', 1886, 'F', 988), +(1826, 'Catherine', 1886, 'F', 916), +(1827, 'Ada', 1886, 'F', 915), +(1828, 'Josephine', 1886, 'F', 844), +(1829, 'Fannie', 1886, 'F', 837), +(1830, 'Dora', 1886, 'F', 827), +(1831, 'Lucy', 1886, 'F', 817), +(1832, 'Blanche', 1886, 'F', 787), +(1833, 'Agnes', 1886, 'F', 779), +(1834, 'Maggie', 1886, 'F', 756), +(1835, 'Katherine', 1886, 'F', 744), +(1836, 'Mamie', 1886, 'F', 712), +(1837, 'Nora', 1886, 'F', 708), +(1838, 'Stella', 1886, 'F', 702), +(1839, 'Elsie', 1886, 'F', 698), +(1840, 'Rosa', 1886, 'F', 673), +(1841, 'Effie', 1886, 'F', 672), +(1842, 'Mae', 1886, 'F', 641), +(1843, 'Alma', 1886, 'F', 603), +(1844, 'Daisy', 1886, 'F', 602), +(1845, 'May', 1886, 'F', 602), +(1846, 'Nettie', 1886, 'F', 591), +(1847, 'Ruth', 1886, 'F', 581), +(1848, 'Della', 1886, 'F', 565), +(1849, 'Sadie', 1886, 'F', 562), +(1850, 'Susie', 1886, 'F', 559), +(1851, 'Ellen', 1886, 'F', 551), +(1852, 'Lizzie', 1886, 'F', 512), +(1853, 'Nancy', 1886, 'F', 492), +(1854, 'Sallie', 1886, 'F', 490), +(1855, 'Maud', 1886, 'F', 478), +(1856, 'Lottie', 1886, 'F', 450), +(1857, 'Flora', 1886, 'F', 443), +(1858, 'Viola', 1886, 'F', 440), +(1859, 'Irene', 1886, 'F', 437), +(1860, 'Etta', 1886, 'F', 433), +(1861, 'Katie', 1886, 'F', 431), +(1862, 'Hazel', 1886, 'F', 429), +(1863, 'Mollie', 1886, 'F', 421), +(1864, 'Addie', 1886, 'F', 417), +(1865, 'Olive', 1886, 'F', 404), +(1866, 'Esther', 1886, 'F', 396), +(1867, 'Georgia', 1886, 'F', 395), +(1868, 'Lydia', 1886, 'F', 392), +(1869, 'Willie', 1886, 'F', 388), +(1870, 'Kathryn', 1886, 'F', 383), +(1871, 'Lulu', 1886, 'F', 376), +(1872, 'Amanda', 1886, 'F', 370), +(1873, 'Caroline', 1886, 'F', 370), +(1874, 'Emily', 1886, 'F', 369), +(1875, 'Charlotte', 1886, 'F', 368), +(1876, 'Rebecca', 1886, 'F', 355), +(1877, 'Virginia', 1886, 'F', 353), +(1878, 'Nannie', 1886, 'F', 347), +(1879, 'Beulah', 1886, 'F', 345), +(1880, 'Harriet', 1886, 'F', 341), +(1881, 'Kate', 1886, 'F', 335), +(1882, 'Amelia', 1886, 'F', 326), +(1883, 'Susan', 1886, 'F', 323), +(1884, 'Ollie', 1886, 'F', 318), +(1885, 'Matilda', 1886, 'F', 309), +(1886, 'Jane', 1886, 'F', 306), +(1887, 'Ruby', 1886, 'F', 301), +(1888, 'Mildred', 1886, 'F', 289), +(1889, 'Henrietta', 1886, 'F', 288), +(1890, 'Eliza', 1886, 'F', 287), +(1891, 'Ora', 1886, 'F', 287), +(1892, 'Pauline', 1886, 'F', 276), +(1893, 'Theresa', 1886, 'F', 276), +(1894, 'Marion', 1886, 'F', 273), +(1895, 'Eleanor', 1886, 'F', 271), +(1896, 'Belle', 1886, 'F', 270), +(1897, 'Hannah', 1886, 'F', 254), +(1898, 'Sara', 1886, 'F', 247), +(1899, 'Estella', 1886, 'F', 246), +(1900, 'Nina', 1886, 'F', 238), +(1901, 'Augusta', 1886, 'F', 237), +(1902, 'Iva', 1886, 'F', 237), +(1903, 'Dorothy', 1886, 'F', 230), +(1904, 'Lela', 1886, 'F', 230), +(1905, 'Ann', 1886, 'F', 229), +(1906, 'Leona', 1886, 'F', 227), +(1907, 'Amy', 1886, 'F', 226), +(1908, 'Mayme', 1886, 'F', 219), +(1909, 'Sophia', 1886, 'F', 218), +(1910, 'Estelle', 1886, 'F', 216), +(1911, 'Rachel', 1886, 'F', 213), +(1912, 'Josie', 1886, 'F', 212), +(1913, 'Anne', 1886, 'F', 211), +(1914, 'Barbara', 1886, 'F', 207), +(1915, 'Goldie', 1886, 'F', 204), +(1916, 'Evelyn', 1886, 'F', 203), +(1917, 'Inez', 1886, 'F', 197), +(1918, 'Beatrice', 1886, 'F', 192), +(1919, 'Lola', 1886, 'F', 191), +(1920, 'Mable', 1886, 'F', 187), +(1921, 'Ola', 1886, 'F', 186), +(1922, 'Eula', 1886, 'F', 181), +(1923, 'Maria', 1886, 'F', 180), +(1924, 'Allie', 1886, 'F', 178), +(1925, 'Nell', 1886, 'F', 175), +(1926, 'Millie', 1886, 'F', 170), +(1927, 'Delia', 1886, 'F', 169), +(1928, 'Betty', 1886, 'F', 167), +(1929, 'Vera', 1886, 'F', 167), +(1930, 'Essie', 1886, 'F', 163), +(1931, 'Victoria', 1886, 'F', 162), +(1932, 'Alta', 1886, 'F', 159), +(1933, 'Sophie', 1886, 'F', 156), +(1934, 'Callie', 1886, 'F', 155), +(1935, 'Bertie', 1886, 'F', 151), +(1936, 'Christine', 1886, 'F', 151), +(1937, 'Olga', 1886, 'F', 151), +(1938, 'Ina', 1886, 'F', 149), +(1939, 'Janie', 1886, 'F', 149), +(1940, 'Celia', 1886, 'F', 147), +(1941, 'Winifred', 1886, 'F', 146), +(1942, 'Hilda', 1886, 'F', 143), +(1943, 'Tillie', 1886, 'F', 143), +(1944, 'Eunice', 1886, 'F', 142), +(1945, 'Bettie', 1886, 'F', 141), +(1946, 'Loretta', 1886, 'F', 141), +(1947, 'Lucille', 1886, 'F', 139), +(1948, 'Sylvia', 1886, 'F', 137), +(1949, 'Dollie', 1886, 'F', 136), +(1950, 'Genevieve', 1886, 'F', 136), +(1951, 'Isabelle', 1886, 'F', 136), +(1952, 'Louisa', 1886, 'F', 136), +(1953, 'Luella', 1886, 'F', 136), +(1954, 'Bernice', 1886, 'F', 135), +(1955, 'Verna', 1886, 'F', 134), +(1956, 'Rosie', 1886, 'F', 133), +(1957, 'Gladys', 1886, 'F', 131), +(1958, 'Isabel', 1886, 'F', 131), +(1959, 'Lou', 1886, 'F', 129), +(1960, 'Winnie', 1886, 'F', 129), +(1961, 'Bess', 1886, 'F', 128), +(1962, 'Marguerite', 1886, 'F', 125), +(1963, 'Jean', 1886, 'F', 124), +(1964, 'Birdie', 1886, 'F', 123), +(1965, 'Mathilda', 1886, 'F', 120), +(1966, 'Rena', 1886, 'F', 119), +(1967, 'Cornelia', 1886, 'F', 117), +(1968, 'Lois', 1886, 'F', 116), +(1969, 'Leila', 1886, 'F', 115), +(1970, 'Rhoda', 1886, 'F', 114), +(1971, 'Elva', 1886, 'F', 110), +(1972, 'Lora', 1886, 'F', 109), +(1973, 'Flossie', 1886, 'F', 105), +(1974, 'Johanna', 1886, 'F', 105), +(1975, 'Sally', 1886, 'F', 104), +(1976, 'Violet', 1886, 'F', 103), +(1977, 'Lelia', 1886, 'F', 102), +(1978, 'John', 1886, 'M', 9026), +(1979, 'William', 1886, 'M', 8252), +(1980, 'James', 1886, 'M', 5355), +(1981, 'George', 1886, 'M', 4671), +(1982, 'Charles', 1886, 'M', 4533), +(1983, 'Frank', 1886, 'M', 3127), +(1984, 'Joseph', 1886, 'M', 2594), +(1985, 'Robert', 1886, 'M', 2444), +(1986, 'Henry', 1886, 'M', 2404), +(1987, 'Thomas', 1886, 'M', 2337), +(1988, 'Edward', 1886, 'M', 2312), +(1989, 'Harry', 1886, 'M', 2257), +(1990, 'Walter', 1886, 'M', 1880), +(1991, 'Arthur', 1886, 'M', 1656), +(1992, 'Fred', 1886, 'M', 1599), +(1993, 'Albert', 1886, 'M', 1488), +(1994, 'Clarence', 1886, 'M', 995), +(1995, 'Samuel', 1886, 'M', 870), +(1996, 'Louis', 1886, 'M', 846), +(1997, 'Roy', 1886, 'M', 767), +(1998, 'Joe', 1886, 'M', 759), +(1999, 'Charlie', 1886, 'M', 723), +(2000, 'Richard', 1886, 'M', 720), +(2001, 'David', 1886, 'M', 674), +(2002, 'Ernest', 1886, 'M', 668), +(2003, 'Oscar', 1886, 'M', 645), +(2004, 'Will', 1886, 'M', 642), +(2005, 'Willie', 1886, 'M', 641), +(2006, 'Andrew', 1886, 'M', 614), +(2007, 'Jesse', 1886, 'M', 614), +(2008, 'Earl', 1886, 'M', 570), +(2009, 'Carl', 1886, 'M', 556), +(2010, 'Daniel', 1886, 'M', 555), +(2011, 'Sam', 1886, 'M', 519), +(2012, 'Elmer', 1886, 'M', 485), +(2013, 'Alfred', 1886, 'M', 480), +(2014, 'Howard', 1886, 'M', 467), +(2015, 'Paul', 1886, 'M', 466), +(2016, 'Benjamin', 1886, 'M', 463), +(2017, 'Frederick', 1886, 'M', 461), +(2018, 'Ralph', 1886, 'M', 440), +(2019, 'Peter', 1886, 'M', 437), +(2020, 'Lewis', 1886, 'M', 431), +(2021, 'Herman', 1886, 'M', 418), +(2022, 'Grover', 1886, 'M', 407), +(2023, 'Herbert', 1886, 'M', 400), +(2024, 'Lee', 1886, 'M', 399), +(2025, 'Claude', 1886, 'M', 391), +(2026, 'Jim', 1886, 'M', 389), +(2027, 'Tom', 1886, 'M', 383), +(2028, 'Eugene', 1886, 'M', 362), +(2029, 'Raymond', 1886, 'M', 353), +(2030, 'Michael', 1886, 'M', 348), +(2031, 'Jacob', 1886, 'M', 346), +(2032, 'Francis', 1886, 'M', 344), +(2033, 'Ben', 1886, 'M', 335), +(2034, 'Lawrence', 1886, 'M', 331), +(2035, 'Martin', 1886, 'M', 329), +(2036, 'Edwin', 1886, 'M', 313), +(2037, 'Harvey', 1886, 'M', 310), +(2038, 'Edgar', 1886, 'M', 309), +(2039, 'Clyde', 1886, 'M', 307), +(2040, 'Ed', 1886, 'M', 303), +(2041, 'Jack', 1886, 'M', 299), +(2042, 'Chester', 1886, 'M', 287), +(2043, 'Floyd', 1886, 'M', 275), +(2044, 'Ray', 1886, 'M', 271), +(2045, 'Otto', 1886, 'M', 270), +(2046, 'Theodore', 1886, 'M', 258), +(2047, 'Guy', 1886, 'M', 255), +(2048, 'Luther', 1886, 'M', 253), +(2049, 'Patrick', 1886, 'M', 249), +(2050, 'Leo', 1886, 'M', 240), +(2051, 'Leonard', 1886, 'M', 236), +(2052, 'Oliver', 1886, 'M', 230), +(2053, 'Bert', 1886, 'M', 228), +(2054, 'Hugh', 1886, 'M', 227), +(2055, 'Harold', 1886, 'M', 224), +(2056, 'Homer', 1886, 'M', 224), +(2057, 'Isaac', 1886, 'M', 224), +(2058, 'Charley', 1886, 'M', 214), +(2059, 'Allen', 1886, 'M', 211), +(2060, 'Alexander', 1886, 'M', 206), +(2061, 'August', 1886, 'M', 203), +(2062, 'Ira', 1886, 'M', 198), +(2063, 'Eddie', 1886, 'M', 197), +(2064, 'Philip', 1886, 'M', 186), +(2065, 'Marion', 1886, 'M', 182), +(2066, 'Jessie', 1886, 'M', 181), +(2067, 'Stephen', 1886, 'M', 181), +(2068, 'Bernard', 1886, 'M', 180), +(2069, 'Archie', 1886, 'M', 175), +(2070, 'Anthony', 1886, 'M', 174), +(2071, 'Julius', 1886, 'M', 173), +(2072, 'Clifford', 1886, 'M', 172), +(2073, 'Alex', 1886, 'M', 161), +(2074, 'Norman', 1886, 'M', 161), +(2075, 'Lester', 1886, 'M', 160), +(2076, 'Horace', 1886, 'M', 156), +(2077, 'Leroy', 1886, 'M', 155), +(2078, 'Sidney', 1886, 'M', 155), +(2079, 'Dan', 1886, 'M', 154), +(2080, 'Everett', 1886, 'M', 150), +(2081, 'Willis', 1886, 'M', 150), +(2082, 'Victor', 1886, 'M', 146), +(2083, 'Milton', 1886, 'M', 145), +(2084, 'Lloyd', 1886, 'M', 144), +(2085, 'Warren', 1886, 'M', 144), +(2086, 'Leon', 1886, 'M', 142), +(2087, 'Perry', 1886, 'M', 141), +(2088, 'Jess', 1886, 'M', 140), +(2089, 'Dave', 1886, 'M', 139), +(2090, 'Rufus', 1886, 'M', 139), +(2091, 'Leslie', 1886, 'M', 136), +(2092, 'Nathan', 1886, 'M', 136), +(2093, 'Emil', 1886, 'M', 127), +(2094, 'Franklin', 1886, 'M', 127), +(2095, 'Jerry', 1886, 'M', 125), +(2096, 'Percy', 1886, 'M', 122), +(2097, 'Amos', 1886, 'M', 121), +(2098, 'Wesley', 1886, 'M', 121), +(2099, 'Russell', 1886, 'M', 115), +(2100, 'Alvin', 1886, 'M', 112), +(2101, 'Matthew', 1886, 'M', 112), +(2102, 'Calvin', 1886, 'M', 109), +(2103, 'Jay', 1886, 'M', 107), +(2104, 'Ross', 1886, 'M', 107), +(2105, 'Alonzo', 1886, 'M', 106), +(2106, 'Mark', 1886, 'M', 106), +(2107, 'Wilbur', 1886, 'M', 106), +(2108, 'Earnest', 1886, 'M', 105), +(2109, 'Marshall', 1886, 'M', 105), +(2110, 'Wallace', 1886, 'M', 104), +(2111, 'Adam', 1886, 'M', 103), +(2112, 'Gus', 1886, 'M', 102), +(2113, 'Mary', 1887, 'F', 9888), +(2114, 'Anna', 1887, 'F', 4227), +(2115, 'Elizabeth', 1887, 'F', 2681), +(2116, 'Emma', 1887, 'F', 2647), +(2117, 'Margaret', 1887, 'F', 2419), +(2118, 'Minnie', 1887, 'F', 2215), +(2119, 'Bertha', 1887, 'F', 2037), +(2120, 'Clara', 1887, 'F', 1984), +(2121, 'Florence', 1887, 'F', 1964), +(2122, 'Ida', 1887, 'F', 1929), +(2123, 'Ethel', 1887, 'F', 1907), +(2124, 'Annie', 1887, 'F', 1844), +(2125, 'Bessie', 1887, 'F', 1838), +(2126, 'Alice', 1887, 'F', 1819), +(2127, 'Grace', 1887, 'F', 1692), +(2128, 'Ella', 1887, 'F', 1521), +(2129, 'Martha', 1887, 'F', 1504), +(2130, 'Mabel', 1887, 'F', 1494), +(2131, 'Nellie', 1887, 'F', 1457), +(2132, 'Sarah', 1887, 'F', 1436), +(2133, 'Helen', 1887, 'F', 1405), +(2134, 'Laura', 1887, 'F', 1364), +(2135, 'Carrie', 1887, 'F', 1344), +(2136, 'Edna', 1887, 'F', 1339), +(2137, 'Pearl', 1887, 'F', 1316), +(2138, 'Lillian', 1887, 'F', 1308), +(2139, 'Cora', 1887, 'F', 1257), +(2140, 'Gertrude', 1887, 'F', 1251), +(2141, 'Edith', 1887, 'F', 1243), +(2142, 'Rose', 1887, 'F', 1242), +(2143, 'Maude', 1887, 'F', 1162), +(2144, 'Hattie', 1887, 'F', 1135), +(2145, 'Eva', 1887, 'F', 1125), +(2146, 'Frances', 1887, 'F', 1105), +(2147, 'Louise', 1887, 'F', 1088), +(2148, 'Myrtle', 1887, 'F', 1087), +(2149, 'Lillie', 1887, 'F', 1072), +(2150, 'Jennie', 1887, 'F', 1047), +(2151, 'Julia', 1887, 'F', 1043), +(2152, 'Mattie', 1887, 'F', 1031), +(2153, 'Jessie', 1887, 'F', 1012), +(2154, 'Lena', 1887, 'F', 1004), +(2155, 'Marie', 1887, 'F', 994), +(2156, 'Catherine', 1887, 'F', 967), +(2157, 'Ada', 1887, 'F', 910), +(2158, 'Agnes', 1887, 'F', 896), +(2159, 'Lula', 1887, 'F', 891), +(2160, 'Dora', 1887, 'F', 842), +(2161, 'Elsie', 1887, 'F', 832), +(2162, 'Josephine', 1887, 'F', 816), +(2163, 'Lucy', 1887, 'F', 811), +(2164, 'Fannie', 1887, 'F', 798), +(2165, 'Katherine', 1887, 'F', 794), +(2166, 'Blanche', 1887, 'F', 763), +(2167, 'Maggie', 1887, 'F', 740), +(2168, 'Nora', 1887, 'F', 735), +(2169, 'Mamie', 1887, 'F', 716), +(2170, 'Mae', 1887, 'F', 680), +(2171, 'Stella', 1887, 'F', 664), +(2172, 'Rosa', 1887, 'F', 659), +(2173, 'May', 1887, 'F', 648), +(2174, 'Ruth', 1887, 'F', 627), +(2175, 'Alma', 1887, 'F', 623), +(2176, 'Effie', 1887, 'F', 615), +(2177, 'Nettie', 1887, 'F', 595), +(2178, 'Ellen', 1887, 'F', 579), +(2179, 'Daisy', 1887, 'F', 532), +(2180, 'Lizzie', 1887, 'F', 525), +(2181, 'Sallie', 1887, 'F', 525), +(2182, 'Sadie', 1887, 'F', 519), +(2183, 'Nancy', 1887, 'F', 511), +(2184, 'Hazel', 1887, 'F', 504), +(2185, 'Irene', 1887, 'F', 504), +(2186, 'Della', 1887, 'F', 496), +(2187, 'Susie', 1887, 'F', 485), +(2188, 'Lydia', 1887, 'F', 448), +(2189, 'Katie', 1887, 'F', 440), +(2190, 'Etta', 1887, 'F', 437), +(2191, 'Esther', 1887, 'F', 431), +(2192, 'Viola', 1887, 'F', 420), +(2193, 'Lottie', 1887, 'F', 414), +(2194, 'Flora', 1887, 'F', 408), +(2195, 'Maud', 1887, 'F', 402), +(2196, 'Caroline', 1887, 'F', 398), +(2197, 'Olive', 1887, 'F', 394), +(2198, 'Addie', 1887, 'F', 393), +(2199, 'Kathryn', 1887, 'F', 384), +(2200, 'Willie', 1887, 'F', 379), +(2201, 'Mildred', 1887, 'F', 373), +(2202, 'Beulah', 1887, 'F', 355), +(2203, 'Charlotte', 1887, 'F', 351), +(2204, 'Georgia', 1887, 'F', 351), +(2205, 'Amelia', 1887, 'F', 344), +(2206, 'Harriet', 1887, 'F', 342), +(2207, 'Nannie', 1887, 'F', 340), +(2208, 'Amanda', 1887, 'F', 338), +(2209, 'Ollie', 1887, 'F', 338), +(2210, 'Emily', 1887, 'F', 335), +(2211, 'Susan', 1887, 'F', 335), +(2212, 'Mollie', 1887, 'F', 333), +(2213, 'Virginia', 1887, 'F', 332), +(2214, 'Kate', 1887, 'F', 331), +(2215, 'Lulu', 1887, 'F', 322), +(2216, 'Pauline', 1887, 'F', 314), +(2217, 'Ruby', 1887, 'F', 309), +(2218, 'Eliza', 1887, 'F', 290), +(2219, 'Jane', 1887, 'F', 288), +(2220, 'Theresa', 1887, 'F', 284), +(2221, 'Hannah', 1887, 'F', 279), +(2222, 'Rebecca', 1887, 'F', 275), +(2223, 'Belle', 1887, 'F', 272), +(2224, 'Dorothy', 1887, 'F', 272), +(2225, 'Henrietta', 1887, 'F', 269), +(2226, 'Matilda', 1887, 'F', 266), +(2227, 'Nina', 1887, 'F', 266), +(2228, 'Beatrice', 1887, 'F', 262), +(2229, 'Estella', 1887, 'F', 260), +(2230, 'Marion', 1887, 'F', 254), +(2231, 'Iva', 1887, 'F', 253), +(2232, 'Amy', 1887, 'F', 251), +(2233, 'Anne', 1887, 'F', 249), +(2234, 'Eleanor', 1887, 'F', 247), +(2235, 'Lola', 1887, 'F', 246), +(2236, 'Ann', 1887, 'F', 239), +(2237, 'Ora', 1887, 'F', 231), +(2238, 'Rachel', 1887, 'F', 226), +(2239, 'Augusta', 1887, 'F', 221), +(2240, 'Mayme', 1887, 'F', 214), +(2241, 'Sara', 1887, 'F', 214), +(2242, 'Leona', 1887, 'F', 208), +(2243, 'Lela', 1887, 'F', 207), +(2244, 'Barbara', 1887, 'F', 204), +(2245, 'Maria', 1887, 'F', 203), +(2246, 'Gladys', 1887, 'F', 201), +(2247, 'Evelyn', 1887, 'F', 194), +(2248, 'Josie', 1887, 'F', 192), +(2249, 'Sophia', 1887, 'F', 192), +(2250, 'Eula', 1887, 'F', 188), +(2251, 'Alta', 1887, 'F', 187), +(2252, 'Essie', 1887, 'F', 185), +(2253, 'Allie', 1887, 'F', 183), +(2254, 'Mable', 1887, 'F', 182), +(2255, 'Inez', 1887, 'F', 180), +(2256, 'Betty', 1887, 'F', 178), +(2257, 'Ina', 1887, 'F', 178), +(2258, 'Marguerite', 1887, 'F', 178), +(2259, 'Estelle', 1887, 'F', 170), +(2260, 'Ola', 1887, 'F', 170), +(2261, 'Millie', 1887, 'F', 168), +(2262, 'Callie', 1887, 'F', 167), +(2263, 'Vera', 1887, 'F', 167), +(2264, 'Rosie', 1887, 'F', 162), +(2265, 'Christine', 1887, 'F', 161), +(2266, 'Goldie', 1887, 'F', 159), +(2267, 'Victoria', 1887, 'F', 157), +(2268, 'Hilda', 1887, 'F', 156), +(2269, 'Bess', 1887, 'F', 155), +(2270, 'Janie', 1887, 'F', 155), +(2271, 'Rena', 1887, 'F', 155), +(2272, 'Celia', 1887, 'F', 154), +(2273, 'Winifred', 1887, 'F', 154), +(2274, 'Olga', 1887, 'F', 153), +(2275, 'Delia', 1887, 'F', 150), +(2276, 'Genevieve', 1887, 'F', 149), +(2277, 'Lucille', 1887, 'F', 149), +(2278, 'Sophie', 1887, 'F', 149), +(2279, 'Lou', 1887, 'F', 147), +(2280, 'Nell', 1887, 'F', 146), +(2281, 'Tillie', 1887, 'F', 140), +(2282, 'Louisa', 1887, 'F', 138), +(2283, 'Mathilda', 1887, 'F', 138), +(2284, 'Eunice', 1887, 'F', 136), +(2285, 'Sylvia', 1887, 'F', 135), +(2286, 'Loretta', 1887, 'F', 134), +(2287, 'Birdie', 1887, 'F', 133), +(2288, 'Lois', 1887, 'F', 129), +(2289, 'Verna', 1887, 'F', 129), +(2290, 'Bernice', 1887, 'F', 127), +(2291, 'Luella', 1887, 'F', 127), +(2292, 'Flossie', 1887, 'F', 123), +(2293, 'Frieda', 1887, 'F', 123), +(2294, 'Sue', 1887, 'F', 123), +(2295, 'Bettie', 1887, 'F', 117), +(2296, 'Alberta', 1887, 'F', 116), +(2297, 'Winnie', 1887, 'F', 114), +(2298, 'Cornelia', 1887, 'F', 112), +(2299, 'Jean', 1887, 'F', 112), +(2300, 'Leila', 1887, 'F', 112), +(2301, 'Sally', 1887, 'F', 112), +(2302, 'Roxie', 1887, 'F', 111), +(2303, 'Katharine', 1887, 'F', 110), +(2304, 'Isabel', 1887, 'F', 109), +(2305, 'Bertie', 1887, 'F', 108), +(2306, 'Hulda', 1887, 'F', 108), +(2307, 'Isabelle', 1887, 'F', 108), +(2308, 'Teresa', 1887, 'F', 107), +(2309, 'Abbie', 1887, 'F', 104), +(2310, 'Adelaide', 1887, 'F', 104), +(2311, 'Rhoda', 1887, 'F', 104), +(2312, 'Adeline', 1887, 'F', 103), +(2313, 'Dollie', 1887, 'F', 103), +(2314, 'Lelia', 1887, 'F', 102), +(2315, 'Nelle', 1887, 'F', 100), +(2316, 'Virgie', 1887, 'F', 100), +(2317, 'John', 1887, 'M', 8110), +(2318, 'William', 1887, 'M', 7470), +(2319, 'James', 1887, 'M', 4768), +(2320, 'George', 1887, 'M', 4284), +(2321, 'Charles', 1887, 'M', 4031), +(2322, 'Frank', 1887, 'M', 2883), +(2323, 'Joseph', 1887, 'M', 2456), +(2324, 'Henry', 1887, 'M', 2228), +(2325, 'Thomas', 1887, 'M', 2151), +(2326, 'Edward', 1887, 'M', 2125), +(2327, 'Robert', 1887, 'M', 2125), +(2328, 'Harry', 1887, 'M', 2057), +(2329, 'Walter', 1887, 'M', 1705), +(2330, 'Arthur', 1887, 'M', 1489), +(2331, 'Fred', 1887, 'M', 1454), +(2332, 'Albert', 1887, 'M', 1294), +(2333, 'Clarence', 1887, 'M', 892), +(2334, 'Samuel', 1887, 'M', 802), +(2335, 'Louis', 1887, 'M', 791), +(2336, 'Roy', 1887, 'M', 726), +(2337, 'Joe', 1887, 'M', 685), +(2338, 'David', 1887, 'M', 673), +(2339, 'Ernest', 1887, 'M', 653), +(2340, 'Charlie', 1887, 'M', 642), +(2341, 'Richard', 1887, 'M', 622), +(2342, 'Jesse', 1887, 'M', 601), +(2343, 'Willie', 1887, 'M', 590), +(2344, 'Carl', 1887, 'M', 588), +(2345, 'Oscar', 1887, 'M', 574), +(2346, 'Will', 1887, 'M', 561), +(2347, 'Daniel', 1887, 'M', 557), +(2348, 'Earl', 1887, 'M', 537), +(2349, 'Andrew', 1887, 'M', 520), +(2350, 'Benjamin', 1887, 'M', 473), +(2351, 'Alfred', 1887, 'M', 468), +(2352, 'Elmer', 1887, 'M', 467), +(2353, 'Frederick', 1887, 'M', 464), +(2354, 'Ralph', 1887, 'M', 463), +(2355, 'Sam', 1887, 'M', 463), +(2356, 'Paul', 1887, 'M', 449), +(2357, 'Herbert', 1887, 'M', 445), +(2358, 'Howard', 1887, 'M', 429), +(2359, 'Peter', 1887, 'M', 421), +(2360, 'Lee', 1887, 'M', 400), +(2361, 'Herman', 1887, 'M', 394), +(2362, 'Claude', 1887, 'M', 375), +(2363, 'Raymond', 1887, 'M', 372), +(2364, 'Michael', 1887, 'M', 345), +(2365, 'Lewis', 1887, 'M', 343), +(2366, 'Jim', 1887, 'M', 339), +(2367, 'Martin', 1887, 'M', 331), +(2368, 'Tom', 1887, 'M', 329), +(2369, 'Eugene', 1887, 'M', 327), +(2370, 'Francis', 1887, 'M', 327), +(2371, 'Clyde', 1887, 'M', 320), +(2372, 'Jacob', 1887, 'M', 317), +(2373, 'Edwin', 1887, 'M', 310), +(2374, 'Ben', 1887, 'M', 305), +(2375, 'Grover', 1887, 'M', 290), +(2376, 'Lawrence', 1887, 'M', 283), +(2377, 'Harold', 1887, 'M', 279), +(2378, 'Ed', 1887, 'M', 275), +(2379, 'Luther', 1887, 'M', 267), +(2380, 'Edgar', 1887, 'M', 266), +(2381, 'Harvey', 1887, 'M', 262), +(2382, 'Ray', 1887, 'M', 258), +(2383, 'Otto', 1887, 'M', 253), +(2384, 'Jack', 1887, 'M', 251), +(2385, 'Hugh', 1887, 'M', 250), +(2386, 'Homer', 1887, 'M', 248), +(2387, 'Guy', 1887, 'M', 238), +(2388, 'Bert', 1887, 'M', 237), +(2389, 'Floyd', 1887, 'M', 232), +(2390, 'Leo', 1887, 'M', 232), +(2391, 'Charley', 1887, 'M', 221), +(2392, 'Patrick', 1887, 'M', 218), +(2393, 'Ira', 1887, 'M', 215), +(2394, 'Chester', 1887, 'M', 207), +(2395, 'Leonard', 1887, 'M', 207), +(2396, 'Oliver', 1887, 'M', 203), +(2397, 'Allen', 1887, 'M', 202), +(2398, 'Theodore', 1887, 'M', 201), +(2399, 'August', 1887, 'M', 194), +(2400, 'Isaac', 1887, 'M', 194), +(2401, 'Archie', 1887, 'M', 184), +(2402, 'Jessie', 1887, 'M', 182), +(2403, 'Alexander', 1887, 'M', 180), +(2404, 'Leroy', 1887, 'M', 177), +(2405, 'Lester', 1887, 'M', 168), +(2406, 'Leslie', 1887, 'M', 166), +(2407, 'Clifford', 1887, 'M', 165), +(2408, 'Stephen', 1887, 'M', 165), +(2409, 'Julius', 1887, 'M', 164), +(2410, 'Warren', 1887, 'M', 163), +(2411, 'Philip', 1887, 'M', 161), +(2412, 'Horace', 1887, 'M', 160), +(2413, 'Bernard', 1887, 'M', 159), +(2414, 'Anthony', 1887, 'M', 153), +(2415, 'Leon', 1887, 'M', 147), +(2416, 'Emil', 1887, 'M', 146), +(2417, 'Sidney', 1887, 'M', 144), +(2418, 'Dan', 1887, 'M', 140), +(2419, 'Everett', 1887, 'M', 140), +(2420, 'Alex', 1887, 'M', 136), +(2421, 'Marion', 1887, 'M', 131), +(2422, 'Eddie', 1887, 'M', 129), +(2423, 'Alvin', 1887, 'M', 128), +(2424, 'Lloyd', 1887, 'M', 127), +(2425, 'Jess', 1887, 'M', 124), +(2426, 'Percy', 1887, 'M', 123), +(2427, 'Calvin', 1887, 'M', 122), +(2428, 'Milton', 1887, 'M', 122), +(2429, 'Norman', 1887, 'M', 119), +(2430, 'Rufus', 1887, 'M', 119), +(2431, 'Victor', 1887, 'M', 119), +(2432, 'Wesley', 1887, 'M', 115), +(2433, 'Willis', 1887, 'M', 113), +(2434, 'Perry', 1887, 'M', 112), +(2435, 'Wilbur', 1887, 'M', 112), +(2436, 'Dave', 1887, 'M', 111), +(2437, 'Stanley', 1887, 'M', 110), +(2438, 'Mack', 1887, 'M', 109), +(2439, 'Matthew', 1887, 'M', 108), +(2440, 'Jay', 1887, 'M', 106), +(2441, 'Nathan', 1887, 'M', 106), +(2442, 'Amos', 1887, 'M', 104), +(2443, 'Gilbert', 1887, 'M', 102), +(2444, 'Roscoe', 1887, 'M', 102), +(2445, 'Mary', 1888, 'F', 11754), +(2446, 'Anna', 1888, 'F', 4982), +(2447, 'Elizabeth', 1888, 'F', 3224), +(2448, 'Emma', 1888, 'F', 3087), +(2449, 'Margaret', 1888, 'F', 2904), +(2450, 'Minnie', 1888, 'F', 2654), +(2451, 'Bertha', 1888, 'F', 2450), +(2452, 'Florence', 1888, 'F', 2444), +(2453, 'Ethel', 1888, 'F', 2374), +(2454, 'Bessie', 1888, 'F', 2279), +(2455, 'Clara', 1888, 'F', 2230), +(2456, 'Ida', 1888, 'F', 2229), +(2457, 'Alice', 1888, 'F', 2202), +(2458, 'Annie', 1888, 'F', 2188), +(2459, 'Grace', 1888, 'F', 2090), +(2460, 'Helen', 1888, 'F', 1847), +(2461, 'Mabel', 1888, 'F', 1830), +(2462, 'Ella', 1888, 'F', 1774), +(2463, 'Martha', 1888, 'F', 1769), +(2464, 'Sarah', 1888, 'F', 1755), +(2465, 'Nellie', 1888, 'F', 1736), +(2466, 'Edna', 1888, 'F', 1687), +(2467, 'Lillian', 1888, 'F', 1656), +(2468, 'Carrie', 1888, 'F', 1647), +(2469, 'Laura', 1888, 'F', 1624), +(2470, 'Pearl', 1888, 'F', 1591), +(2471, 'Rose', 1888, 'F', 1590), +(2472, 'Gertrude', 1888, 'F', 1468), +(2473, 'Edith', 1888, 'F', 1453), +(2474, 'Frances', 1888, 'F', 1453), +(2475, 'Cora', 1888, 'F', 1433), +(2476, 'Maude', 1888, 'F', 1396), +(2477, 'Louise', 1888, 'F', 1334), +(2478, 'Eva', 1888, 'F', 1329), +(2479, 'Myrtle', 1888, 'F', 1310), +(2480, 'Hattie', 1888, 'F', 1298), +(2481, 'Jennie', 1888, 'F', 1298), +(2482, 'Julia', 1888, 'F', 1292), +(2483, 'Mattie', 1888, 'F', 1268), +(2484, 'Marie', 1888, 'F', 1258), +(2485, 'Lillie', 1888, 'F', 1249), +(2486, 'Catherine', 1888, 'F', 1212), +(2487, 'Jessie', 1888, 'F', 1200), +(2488, 'Lula', 1888, 'F', 1173), +(2489, 'Lena', 1888, 'F', 1162), +(2490, 'Ada', 1888, 'F', 1116), +(2491, 'Elsie', 1888, 'F', 1112), +(2492, 'Agnes', 1888, 'F', 1046), +(2493, 'Josephine', 1888, 'F', 1001), +(2494, 'Fannie', 1888, 'F', 991), +(2495, 'Lucy', 1888, 'F', 964), +(2496, 'Blanche', 1888, 'F', 942), +(2497, 'Mamie', 1888, 'F', 917), +(2498, 'Dora', 1888, 'F', 898), +(2499, 'Hazel', 1888, 'F', 898), +(2500, 'Katherine', 1888, 'F', 893), +(2501, 'Maggie', 1888, 'F', 882), +(2502, 'Alma', 1888, 'F', 853), +(2503, 'Ruth', 1888, 'F', 850), +(2504, 'Mae', 1888, 'F', 836), +(2505, 'Nora', 1888, 'F', 832), +(2506, 'Rosa', 1888, 'F', 832), +(2507, 'May', 1888, 'F', 782), +(2508, 'Stella', 1888, 'F', 775), +(2509, 'Effie', 1888, 'F', 744), +(2510, 'Irene', 1888, 'F', 722), +(2511, 'Nettie', 1888, 'F', 692), +(2512, 'Ellen', 1888, 'F', 691), +(2513, 'Sadie', 1888, 'F', 691), +(2514, 'Sallie', 1888, 'F', 633), +(2515, 'Della', 1888, 'F', 621), +(2516, 'Susie', 1888, 'F', 621), +(2517, 'Daisy', 1888, 'F', 612), +(2518, 'Viola', 1888, 'F', 596), +(2519, 'Lizzie', 1888, 'F', 593), +(2520, 'Nancy', 1888, 'F', 582), +(2521, 'Esther', 1888, 'F', 572), +(2522, 'Flora', 1888, 'F', 541), +(2523, 'Willie', 1888, 'F', 522), +(2524, 'Katie', 1888, 'F', 516), +(2525, 'Lottie', 1888, 'F', 511), +(2526, 'Etta', 1888, 'F', 500), +(2527, 'Mildred', 1888, 'F', 499), +(2528, 'Georgia', 1888, 'F', 477), +(2529, 'Lydia', 1888, 'F', 472), +(2530, 'Maud', 1888, 'F', 469), +(2531, 'Olive', 1888, 'F', 465), +(2532, 'Charlotte', 1888, 'F', 464), +(2533, 'Caroline', 1888, 'F', 458), +(2534, 'Emily', 1888, 'F', 457), +(2535, 'Addie', 1888, 'F', 455), +(2536, 'Jane', 1888, 'F', 446), +(2537, 'Kathryn', 1888, 'F', 446), +(2538, 'Ruby', 1888, 'F', 445), +(2539, 'Beulah', 1888, 'F', 426), +(2540, 'Ollie', 1888, 'F', 411), +(2541, 'Amanda', 1888, 'F', 404), +(2542, 'Pauline', 1888, 'F', 393), +(2543, 'Harriet', 1888, 'F', 389), +(2544, 'Virginia', 1888, 'F', 385), +(2545, 'Theresa', 1888, 'F', 377), +(2546, 'Mollie', 1888, 'F', 375), +(2547, 'Dorothy', 1888, 'F', 373), +(2548, 'Nannie', 1888, 'F', 373), +(2549, 'Lulu', 1888, 'F', 367), +(2550, 'Susan', 1888, 'F', 363), +(2551, 'Kate', 1888, 'F', 360), +(2552, 'Amelia', 1888, 'F', 358), +(2553, 'Henrietta', 1888, 'F', 349), +(2554, 'Eliza', 1888, 'F', 343), +(2555, 'Rebecca', 1888, 'F', 337), +(2556, 'Matilda', 1888, 'F', 328), +(2557, 'Ora', 1888, 'F', 325), +(2558, 'Marion', 1888, 'F', 322), +(2559, 'Belle', 1888, 'F', 317), +(2560, 'Beatrice', 1888, 'F', 316), +(2561, 'Gladys', 1888, 'F', 314), +(2562, 'Leona', 1888, 'F', 311), +(2563, 'Lola', 1888, 'F', 304), +(2564, 'Nina', 1888, 'F', 304), +(2565, 'Estella', 1888, 'F', 303), +(2566, 'Iva', 1888, 'F', 302), +(2567, 'Ann', 1888, 'F', 295), +(2568, 'Hannah', 1888, 'F', 295), +(2569, 'Sara', 1888, 'F', 293), +(2570, 'Anne', 1888, 'F', 292), +(2571, 'Lela', 1888, 'F', 292), +(2572, 'Eleanor', 1888, 'F', 288), +(2573, 'Rachel', 1888, 'F', 281), +(2574, 'Estelle', 1888, 'F', 274), +(2575, 'Augusta', 1888, 'F', 270), +(2576, 'Vera', 1888, 'F', 263), +(2577, 'Goldie', 1888, 'F', 261), +(2578, 'Josie', 1888, 'F', 257), +(2579, 'Barbara', 1888, 'F', 253), +(2580, 'Sophia', 1888, 'F', 251), +(2581, 'Mayme', 1888, 'F', 247), +(2582, 'Maria', 1888, 'F', 239), +(2583, 'Evelyn', 1888, 'F', 237), +(2584, 'Amy', 1888, 'F', 236), +(2585, 'Marguerite', 1888, 'F', 235), +(2586, 'Inez', 1888, 'F', 233), +(2587, 'Essie', 1888, 'F', 230), +(2588, 'Allie', 1888, 'F', 223), +(2589, 'Eula', 1888, 'F', 223), +(2590, 'Hilda', 1888, 'F', 219), +(2591, 'Alta', 1888, 'F', 218), +(2592, 'Betty', 1888, 'F', 214), +(2593, 'Millie', 1888, 'F', 213), +(2594, 'Rosie', 1888, 'F', 211), +(2595, 'Mable', 1888, 'F', 209), +(2596, 'Victoria', 1888, 'F', 207), +(2597, 'Ina', 1888, 'F', 206), +(2598, 'Janie', 1888, 'F', 206), +(2599, 'Delia', 1888, 'F', 200), +(2600, 'Ola', 1888, 'F', 200), +(2601, 'Celia', 1888, 'F', 196), +(2602, 'Callie', 1888, 'F', 195), +(2603, 'Nell', 1888, 'F', 188), +(2604, 'Flossie', 1888, 'F', 182), +(2605, 'Birdie', 1888, 'F', 181), +(2606, 'Eunice', 1888, 'F', 180), +(2607, 'Bertie', 1888, 'F', 179), +(2608, 'Lucille', 1888, 'F', 179), +(2609, 'Winifred', 1888, 'F', 176), +(2610, 'Olga', 1888, 'F', 172), +(2611, 'Rena', 1888, 'F', 172), +(2612, 'Luella', 1888, 'F', 171), +(2613, 'Sophie', 1888, 'F', 171), +(2614, 'Christine', 1888, 'F', 170), +(2615, 'Leila', 1888, 'F', 170), +(2616, 'Bettie', 1888, 'F', 169), +(2617, 'Lou', 1888, 'F', 169), +(2618, 'Sylvia', 1888, 'F', 166), +(2619, 'Verna', 1888, 'F', 165), +(2620, 'Bess', 1888, 'F', 164), +(2621, 'Bernice', 1888, 'F', 157), +(2622, 'Loretta', 1888, 'F', 157), +(2623, 'Frieda', 1888, 'F', 154), +(2624, 'Genevieve', 1888, 'F', 154), +(2625, 'Tillie', 1888, 'F', 154), +(2626, 'Isabelle', 1888, 'F', 153), +(2627, 'Louisa', 1888, 'F', 152), +(2628, 'Alberta', 1888, 'F', 147), +(2629, 'Jean', 1888, 'F', 145), +(2630, 'Violet', 1888, 'F', 145), +(2631, 'Isabel', 1888, 'F', 144), +(2632, 'Winnie', 1888, 'F', 143), +(2633, 'Sally', 1888, 'F', 142), +(2634, 'Selma', 1888, 'F', 139), +(2635, 'Abbie', 1888, 'F', 137), +(2636, 'Roxie', 1888, 'F', 136), +(2637, 'Myra', 1888, 'F', 134), +(2638, 'Dollie', 1888, 'F', 133), +(2639, 'Mathilda', 1888, 'F', 133), +(2640, 'Rhoda', 1888, 'F', 130), +(2641, 'Adeline', 1888, 'F', 128), +(2642, 'Elva', 1888, 'F', 128), +(2643, 'Lelia', 1888, 'F', 128), +(2644, 'Hulda', 1888, 'F', 126), +(2645, 'Jeanette', 1888, 'F', 126), +(2646, 'Lilly', 1888, 'F', 124), +(2647, 'Carolyn', 1888, 'F', 123), +(2648, 'Hettie', 1888, 'F', 120), +(2649, 'Irma', 1888, 'F', 120), +(2650, 'Lois', 1888, 'F', 120), +(2651, 'Gussie', 1888, 'F', 118), +(2652, 'Harriett', 1888, 'F', 118), +(2653, 'Johanna', 1888, 'F', 118), +(2654, 'Leah', 1888, 'F', 118), +(2655, 'Marjorie', 1888, 'F', 118), +(2656, 'Sue', 1888, 'F', 117), +(2657, 'Adele', 1888, 'F', 116), +(2658, 'Cornelia', 1888, 'F', 116), +(2659, 'Christina', 1888, 'F', 114), +(2660, 'Cecelia', 1888, 'F', 113), +(2661, 'Hester', 1888, 'F', 113), +(2662, 'Virgie', 1888, 'F', 112), +(2663, 'Teresa', 1888, 'F', 111), +(2664, 'Zella', 1888, 'F', 111), +(2665, 'Geneva', 1888, 'F', 109), +(2666, 'Jeannette', 1888, 'F', 109), +(2667, 'Katharine', 1888, 'F', 108), +(2668, 'Lora', 1888, 'F', 107), +(2669, 'Lenora', 1888, 'F', 105), +(2670, 'Nelle', 1888, 'F', 105), +(2671, 'Mina', 1888, 'F', 104), +(2672, 'Helena', 1888, 'F', 103), +(2673, 'Lily', 1888, 'F', 102), +(2674, 'Norma', 1888, 'F', 101), +(2675, 'Frankie', 1888, 'F', 100), +(2676, 'John', 1888, 'M', 9248), +(2677, 'William', 1888, 'M', 8705), +(2678, 'James', 1888, 'M', 5562), +(2679, 'George', 1888, 'M', 4912), +(2680, 'Charles', 1888, 'M', 4591), +(2681, 'Frank', 1888, 'M', 3459), +(2682, 'Joseph', 1888, 'M', 2993), +(2683, 'Robert', 1888, 'M', 2815), +(2684, 'Harry', 1888, 'M', 2759), +(2685, 'Henry', 1888, 'M', 2596), +(2686, 'Edward', 1888, 'M', 2470), +(2687, 'Thomas', 1888, 'M', 2449), +(2688, 'Walter', 1888, 'M', 2040), +(2689, 'Arthur', 1888, 'M', 1710), +(2690, 'Fred', 1888, 'M', 1665), +(2691, 'Albert', 1888, 'M', 1568), +(2692, 'Clarence', 1888, 'M', 1022), +(2693, 'Samuel', 1888, 'M', 931), +(2694, 'Louis', 1888, 'M', 884), +(2695, 'Roy', 1888, 'M', 856), +(2696, 'David', 1888, 'M', 801), +(2697, 'Charlie', 1888, 'M', 796), +(2698, 'Joe', 1888, 'M', 789), +(2699, 'Willie', 1888, 'M', 786), +(2700, 'Benjamin', 1888, 'M', 781), +(2701, 'Richard', 1888, 'M', 772), +(2702, 'Ernest', 1888, 'M', 766), +(2703, 'Will', 1888, 'M', 707), +(2704, 'Carl', 1888, 'M', 675), +(2705, 'Earl', 1888, 'M', 675), +(2706, 'Oscar', 1888, 'M', 647), +(2707, 'Jesse', 1888, 'M', 637), +(2708, 'Andrew', 1888, 'M', 615), +(2709, 'Sam', 1888, 'M', 607), +(2710, 'Daniel', 1888, 'M', 566), +(2711, 'Ralph', 1888, 'M', 547), +(2712, 'Alfred', 1888, 'M', 536), +(2713, 'Paul', 1888, 'M', 529), +(2714, 'Elmer', 1888, 'M', 527), +(2715, 'Howard', 1888, 'M', 513), +(2716, 'Peter', 1888, 'M', 498), +(2717, 'Frederick', 1888, 'M', 496), +(2718, 'Herbert', 1888, 'M', 485), +(2719, 'Grover', 1888, 'M', 474), +(2720, 'Raymond', 1888, 'M', 469), +(2721, 'Michael', 1888, 'M', 466), +(2722, 'Ben', 1888, 'M', 463), +(2723, 'Lee', 1888, 'M', 430), +(2724, 'Tom', 1888, 'M', 416), +(2725, 'Lewis', 1888, 'M', 412), +(2726, 'Herman', 1888, 'M', 403), +(2727, 'Harrison', 1888, 'M', 400), +(2728, 'Eugene', 1888, 'M', 398), +(2729, 'Martin', 1888, 'M', 378), +(2730, 'Claude', 1888, 'M', 374), +(2731, 'Jim', 1888, 'M', 362), +(2732, 'Francis', 1888, 'M', 353), +(2733, 'Jacob', 1888, 'M', 353), +(2734, 'Leo', 1888, 'M', 353), +(2735, 'Clyde', 1888, 'M', 344), +(2736, 'Lawrence', 1888, 'M', 343), +(2737, 'Harvey', 1888, 'M', 334), +(2738, 'Ray', 1888, 'M', 331), +(2739, 'Jack', 1888, 'M', 330), +(2740, 'Edgar', 1888, 'M', 321), +(2741, 'Otto', 1888, 'M', 312), +(2742, 'Floyd', 1888, 'M', 302), +(2743, 'Ed', 1888, 'M', 301), +(2744, 'Edwin', 1888, 'M', 298), +(2745, 'Harold', 1888, 'M', 298), +(2746, 'Guy', 1888, 'M', 297), +(2747, 'Chester', 1888, 'M', 288), +(2748, 'Bert', 1888, 'M', 282), +(2749, 'Luther', 1888, 'M', 275), +(2750, 'Allen', 1888, 'M', 260), +(2751, 'Homer', 1888, 'M', 256), +(2752, 'Charley', 1888, 'M', 254), +(2753, 'Jessie', 1888, 'M', 254), +(2754, 'Hugh', 1888, 'M', 253), +(2755, 'Theodore', 1888, 'M', 249), +(2756, 'Patrick', 1888, 'M', 245), +(2757, 'Alexander', 1888, 'M', 237), +(2758, 'Leonard', 1888, 'M', 225), +(2759, 'Ira', 1888, 'M', 222), +(2760, 'Isaac', 1888, 'M', 221), +(2761, 'August', 1888, 'M', 213), +(2762, 'Bernard', 1888, 'M', 207), +(2763, 'Oliver', 1888, 'M', 206), +(2764, 'Julius', 1888, 'M', 197), +(2765, 'Leon', 1888, 'M', 196), +(2766, 'Philip', 1888, 'M', 196), +(2767, 'Clifford', 1888, 'M', 194), +(2768, 'Anthony', 1888, 'M', 193), +(2769, 'Eddie', 1888, 'M', 193), +(2770, 'Leroy', 1888, 'M', 192), +(2771, 'Archie', 1888, 'M', 191), +(2772, 'Lester', 1888, 'M', 189), +(2773, 'Stephen', 1888, 'M', 187), +(2774, 'Leslie', 1888, 'M', 175), +(2775, 'Lloyd', 1888, 'M', 175), +(2776, 'Sidney', 1888, 'M', 168), +(2777, 'Alex', 1888, 'M', 167), +(2778, 'Horace', 1888, 'M', 165), +(2779, 'Milton', 1888, 'M', 165), +(2780, 'Marion', 1888, 'M', 162), +(2781, 'Alvin', 1888, 'M', 157), +(2782, 'Everett', 1888, 'M', 156), +(2783, 'Norman', 1888, 'M', 156), +(2784, 'Dan', 1888, 'M', 154), +(2785, 'Stanley', 1888, 'M', 154), +(2786, 'Percy', 1888, 'M', 151), +(2787, 'Warren', 1888, 'M', 148), +(2788, 'Wesley', 1888, 'M', 147), +(2789, 'Dave', 1888, 'M', 146), +(2790, 'Russell', 1888, 'M', 146), +(2791, 'Emil', 1888, 'M', 142), +(2792, 'Roscoe', 1888, 'M', 141), +(2793, 'Earnest', 1888, 'M', 138), +(2794, 'Willis', 1888, 'M', 135), +(2795, 'Victor', 1888, 'M', 134), +(2796, 'Gus', 1888, 'M', 133), +(2797, 'Jess', 1888, 'M', 132), +(2798, 'Franklin', 1888, 'M', 129), +(2799, 'Nathan', 1888, 'M', 129), +(2800, 'Rufus', 1888, 'M', 126), +(2801, 'Perry', 1888, 'M', 124), +(2802, 'Calvin', 1888, 'M', 123), +(2803, 'Willard', 1888, 'M', 123), +(2804, 'Jay', 1888, 'M', 122), +(2805, 'Adam', 1888, 'M', 120), +(2806, 'Melvin', 1888, 'M', 119), +(2807, 'Max', 1888, 'M', 118), +(2808, 'Otis', 1888, 'M', 116), +(2809, 'Phillip', 1888, 'M', 116), +(2810, 'Mark', 1888, 'M', 115), +(2811, 'Matthew', 1888, 'M', 114), +(2812, 'Virgil', 1888, 'M', 112), +(2813, 'Wallace', 1888, 'M', 111), +(2814, 'Alonzo', 1888, 'M', 110), +(2815, 'Glenn', 1888, 'M', 110), +(2816, 'Gilbert', 1888, 'M', 109), +(2817, 'Simon', 1888, 'M', 109), +(2818, 'Adolph', 1888, 'M', 107), +(2819, 'Jake', 1888, 'M', 107), +(2820, 'Dennis', 1888, 'M', 106), +(2821, 'Cornelius', 1888, 'M', 105), +(2822, 'Wilbur', 1888, 'M', 103), +(2823, 'Clinton', 1888, 'M', 101), +(2824, 'Felix', 1888, 'M', 101), +(2825, 'Lonnie', 1888, 'M', 101), +(2826, 'Manuel', 1888, 'M', 101), +(2827, 'Emmett', 1888, 'M', 100), +(2828, 'Maurice', 1888, 'M', 100), +(2829, 'Mary', 1889, 'F', 11648), +(2830, 'Anna', 1889, 'F', 5062), +(2831, 'Elizabeth', 1889, 'F', 3058), +(2832, 'Margaret', 1889, 'F', 2917), +(2833, 'Emma', 1889, 'F', 2884), +(2834, 'Minnie', 1889, 'F', 2624), +(2835, 'Florence', 1889, 'F', 2465), +(2836, 'Ethel', 1889, 'F', 2463), +(2837, 'Bessie', 1889, 'F', 2342), +(2838, 'Clara', 1889, 'F', 2319), +(2839, 'Bertha', 1889, 'F', 2293), +(2840, 'Alice', 1889, 'F', 2145), +(2841, 'Annie', 1889, 'F', 2123), +(2842, 'Ida', 1889, 'F', 2122), +(2843, 'Grace', 1889, 'F', 2049), +(2844, 'Mabel', 1889, 'F', 1947), +(2845, 'Helen', 1889, 'F', 1909), +(2846, 'Edna', 1889, 'F', 1815), +(2847, 'Nellie', 1889, 'F', 1752), +(2848, 'Sarah', 1889, 'F', 1730), +(2849, 'Martha', 1889, 'F', 1711), +(2850, 'Ella', 1889, 'F', 1647), +(2851, 'Lillian', 1889, 'F', 1640), +(2852, 'Pearl', 1889, 'F', 1588), +(2853, 'Laura', 1889, 'F', 1567), +(2854, 'Rose', 1889, 'F', 1550), +(2855, 'Carrie', 1889, 'F', 1547), +(2856, 'Gertrude', 1889, 'F', 1543), +(2857, 'Edith', 1889, 'F', 1523), +(2858, 'Marie', 1889, 'F', 1436), +(2859, 'Eva', 1889, 'F', 1372), +(2860, 'Cora', 1889, 'F', 1365), +(2861, 'Myrtle', 1889, 'F', 1361), +(2862, 'Frances', 1889, 'F', 1351), +(2863, 'Hattie', 1889, 'F', 1328), +(2864, 'Maude', 1889, 'F', 1293), +(2865, 'Lillie', 1889, 'F', 1289), +(2866, 'Louise', 1889, 'F', 1283), +(2867, 'Jennie', 1889, 'F', 1252), +(2868, 'Julia', 1889, 'F', 1201), +(2869, 'Elsie', 1889, 'F', 1199), +(2870, 'Catherine', 1889, 'F', 1198), +(2871, 'Jessie', 1889, 'F', 1196), +(2872, 'Mattie', 1889, 'F', 1173), +(2873, 'Lena', 1889, 'F', 1096), +(2874, 'Ruth', 1889, 'F', 1073), +(2875, 'Lula', 1889, 'F', 1067), +(2876, 'Hazel', 1889, 'F', 1056), +(2877, 'Josephine', 1889, 'F', 1047), +(2878, 'Agnes', 1889, 'F', 1033), +(2879, 'Ada', 1889, 'F', 1005), +(2880, 'Blanche', 1889, 'F', 972), +(2881, 'Fannie', 1889, 'F', 909), +(2882, 'Lucy', 1889, 'F', 893), +(2883, 'Stella', 1889, 'F', 891), +(2884, 'Katherine', 1889, 'F', 889), +(2885, 'Mae', 1889, 'F', 883), +(2886, 'Mamie', 1889, 'F', 883), +(2887, 'Dora', 1889, 'F', 882), +(2888, 'Nora', 1889, 'F', 831), +(2889, 'Maggie', 1889, 'F', 825), +(2890, 'Alma', 1889, 'F', 819), +(2891, 'Irene', 1889, 'F', 737), +(2892, 'May', 1889, 'F', 723), +(2893, 'Effie', 1889, 'F', 711), +(2894, 'Rosa', 1889, 'F', 707), +(2895, 'Sadie', 1889, 'F', 664), +(2896, 'Ellen', 1889, 'F', 653), +(2897, 'Mildred', 1889, 'F', 625), +(2898, 'Nettie', 1889, 'F', 622), +(2899, 'Susie', 1889, 'F', 607), +(2900, 'Della', 1889, 'F', 606), +(2901, 'Daisy', 1889, 'F', 583), +(2902, 'Lizzie', 1889, 'F', 570), +(2903, 'Esther', 1889, 'F', 553), +(2904, 'Viola', 1889, 'F', 536), +(2905, 'Sallie', 1889, 'F', 525), +(2906, 'Ruby', 1889, 'F', 522), +(2907, 'Flora', 1889, 'F', 516), +(2908, 'Katie', 1889, 'F', 502), +(2909, 'Beulah', 1889, 'F', 498), +(2910, 'Lottie', 1889, 'F', 498), +(2911, 'Lydia', 1889, 'F', 496), +(2912, 'Caroline', 1889, 'F', 491), +(2913, 'Willie', 1889, 'F', 488), +(2914, 'Nancy', 1889, 'F', 470), +(2915, 'Etta', 1889, 'F', 465), +(2916, 'Olive', 1889, 'F', 464), +(2917, 'Charlotte', 1889, 'F', 455), +(2918, 'Addie', 1889, 'F', 448), +(2919, 'Georgia', 1889, 'F', 445), +(2920, 'Maud', 1889, 'F', 432), +(2921, 'Emily', 1889, 'F', 429), +(2922, 'Kathryn', 1889, 'F', 415), +(2923, 'Pauline', 1889, 'F', 415), +(2924, 'Gladys', 1889, 'F', 414), +(2925, 'Amanda', 1889, 'F', 413), +(2926, 'Mollie', 1889, 'F', 402), +(2927, 'Harriet', 1889, 'F', 397), +(2928, 'Nannie', 1889, 'F', 396), +(2929, 'Virginia', 1889, 'F', 395), +(2930, 'Dorothy', 1889, 'F', 377), +(2931, 'Jane', 1889, 'F', 374), +(2932, 'Ollie', 1889, 'F', 366), +(2933, 'Kate', 1889, 'F', 362), +(2934, 'Theresa', 1889, 'F', 359), +(2935, 'Susan', 1889, 'F', 356), +(2936, 'Beatrice', 1889, 'F', 352), +(2937, 'Leona', 1889, 'F', 348), +(2938, 'Amelia', 1889, 'F', 346), +(2939, 'Ora', 1889, 'F', 346), +(2940, 'Ann', 1889, 'F', 341), +(2941, 'Lulu', 1889, 'F', 341), +(2942, 'Rebecca', 1889, 'F', 337), +(2943, 'Marion', 1889, 'F', 331), +(2944, 'Henrietta', 1889, 'F', 323), +(2945, 'Iva', 1889, 'F', 321), +(2946, 'Evelyn', 1889, 'F', 320), +(2947, 'Matilda', 1889, 'F', 320), +(2948, 'Marguerite', 1889, 'F', 315), +(2949, 'Nina', 1889, 'F', 315), +(2950, 'Vera', 1889, 'F', 313), +(2951, 'Eleanor', 1889, 'F', 312), +(2952, 'Lola', 1889, 'F', 312), +(2953, 'Anne', 1889, 'F', 311), +(2954, 'Eliza', 1889, 'F', 307), +(2955, 'Hannah', 1889, 'F', 301), +(2956, 'Estella', 1889, 'F', 288), +(2957, 'Estelle', 1889, 'F', 286), +(2958, 'Sara', 1889, 'F', 286), +(2959, 'Inez', 1889, 'F', 277), +(2960, 'Augusta', 1889, 'F', 273), +(2961, 'Lela', 1889, 'F', 268), +(2962, 'Rachel', 1889, 'F', 266), +(2963, 'Belle', 1889, 'F', 265), +(2964, 'Essie', 1889, 'F', 265), +(2965, 'Amy', 1889, 'F', 252), +(2966, 'Hilda', 1889, 'F', 251), +(2967, 'Sophia', 1889, 'F', 251), +(2968, 'Barbara', 1889, 'F', 246), +(2969, 'Goldie', 1889, 'F', 246), +(2970, 'Rosie', 1889, 'F', 239), +(2971, 'Maria', 1889, 'F', 238), +(2972, 'Mayme', 1889, 'F', 237), +(2973, 'Allie', 1889, 'F', 236), +(2974, 'Mable', 1889, 'F', 231), +(2975, 'Alta', 1889, 'F', 226), +(2976, 'Janie', 1889, 'F', 226), +(2977, 'Flossie', 1889, 'F', 221), +(2978, 'Ina', 1889, 'F', 209), +(2979, 'Ola', 1889, 'F', 209), +(2980, 'Lucille', 1889, 'F', 208), +(2981, 'Josie', 1889, 'F', 207), +(2982, 'Bernice', 1889, 'F', 206), +(2983, 'Genevieve', 1889, 'F', 201), +(2984, 'Nell', 1889, 'F', 194), +(2985, 'Olga', 1889, 'F', 194), +(2986, 'Eula', 1889, 'F', 193), +(2987, 'Betty', 1889, 'F', 189), +(2988, 'Christine', 1889, 'F', 189), +(2989, 'Tillie', 1889, 'F', 188), +(2990, 'Winifred', 1889, 'F', 186), +(2991, 'Eunice', 1889, 'F', 185), +(2992, 'Bess', 1889, 'F', 182), +(2993, 'Delia', 1889, 'F', 182), +(2994, 'Callie', 1889, 'F', 181), +(2995, 'Victoria', 1889, 'F', 175), +(2996, 'Millie', 1889, 'F', 174), +(2997, 'Verna', 1889, 'F', 174), +(2998, 'Loretta', 1889, 'F', 172), +(2999, 'Luella', 1889, 'F', 172), +(3000, 'Sophie', 1889, 'F', 172), +(3001, 'Jean', 1889, 'F', 171), +(3002, 'Louisa', 1889, 'F', 170), +(3003, 'Mathilda', 1889, 'F', 168), +(3004, 'Celia', 1889, 'F', 167), +(3005, 'Birdie', 1889, 'F', 166), +(3006, 'Sylvia', 1889, 'F', 166), +(3007, 'Frieda', 1889, 'F', 162), +(3008, 'Winnie', 1889, 'F', 162), +(3009, 'Rena', 1889, 'F', 161), +(3010, 'Marjorie', 1889, 'F', 157), +(3011, 'Violet', 1889, 'F', 155), +(3012, 'Adeline', 1889, 'F', 154), +(3013, 'Lois', 1889, 'F', 154), +(3014, 'Isabel', 1889, 'F', 153), +(3015, 'Rhoda', 1889, 'F', 148), +(3016, 'Bettie', 1889, 'F', 144), +(3017, 'Bertie', 1889, 'F', 143), +(3018, 'Christina', 1889, 'F', 142), +(3019, 'Isabelle', 1889, 'F', 141), +(3020, 'Hulda', 1889, 'F', 139), +(3021, 'Cecelia', 1889, 'F', 138), +(3022, 'Lora', 1889, 'F', 138), +(3023, 'Elva', 1889, 'F', 135), +(3024, 'Lucile', 1889, 'F', 135), +(3025, 'Irma', 1889, 'F', 134), +(3026, 'Leah', 1889, 'F', 134), +(3027, 'Carolyn', 1889, 'F', 133), +(3028, 'Gussie', 1889, 'F', 133), +(3029, 'Selma', 1889, 'F', 133), +(3030, 'Lelia', 1889, 'F', 131), +(3031, 'Alberta', 1889, 'F', 130), +(3032, 'Dollie', 1889, 'F', 130), +(3033, 'Leila', 1889, 'F', 126), +(3034, 'Roxie', 1889, 'F', 125), +(3035, 'Sally', 1889, 'F', 123), +(3036, 'Myra', 1889, 'F', 121), +(3037, 'Virgie', 1889, 'F', 121), +(3038, 'Lou', 1889, 'F', 120), +(3039, 'Katharine', 1889, 'F', 119), +(3040, 'Nelle', 1889, 'F', 119), +(3041, 'Geneva', 1889, 'F', 117), +(3042, 'Cornelia', 1889, 'F', 116), +(3043, 'Adele', 1889, 'F', 115), +(3044, 'Johanna', 1889, 'F', 114), +(3045, 'Lila', 1889, 'F', 113), +(3046, 'Teresa', 1889, 'F', 113), +(3047, 'Freda', 1889, 'F', 112), +(3048, 'Sue', 1889, 'F', 112), +(3049, 'Hester', 1889, 'F', 109), +(3050, 'Hettie', 1889, 'F', 109), +(3051, 'Norma', 1889, 'F', 108), +(3052, 'Abbie', 1889, 'F', 107), +(3053, 'Gertie', 1889, 'F', 106), +(3054, 'Jeanette', 1889, 'F', 106), +(3055, 'Adelaide', 1889, 'F', 105), +(3056, 'Harriett', 1889, 'F', 105), +(3057, 'Elsa', 1889, 'F', 104), +(3058, 'Fern', 1889, 'F', 103), +(3059, 'Helena', 1889, 'F', 103), +(3060, 'Leola', 1889, 'F', 102), +(3061, 'Lura', 1889, 'F', 100), +(3062, 'Olivia', 1889, 'F', 100), +(3063, 'John', 1889, 'M', 8548), +(3064, 'William', 1889, 'M', 7772), +(3065, 'James', 1889, 'M', 5020), +(3066, 'George', 1889, 'M', 4430), +(3067, 'Charles', 1889, 'M', 4199), +(3068, 'Frank', 1889, 'M', 2975), +(3069, 'Joseph', 1889, 'M', 2729), +(3070, 'Harry', 1889, 'M', 2559), +(3071, 'Robert', 1889, 'M', 2513), +(3072, 'Edward', 1889, 'M', 2299), +(3073, 'Henry', 1889, 'M', 2286), +(3074, 'Thomas', 1889, 'M', 2233), +(3075, 'Walter', 1889, 'M', 1916), +(3076, 'Arthur', 1889, 'M', 1668), +(3077, 'Fred', 1889, 'M', 1554), +(3078, 'Albert', 1889, 'M', 1353), +(3079, 'Clarence', 1889, 'M', 984), +(3080, 'Roy', 1889, 'M', 888), +(3081, 'Louis', 1889, 'M', 837), +(3082, 'Samuel', 1889, 'M', 810), +(3083, 'Benjamin', 1889, 'M', 760), +(3084, 'David', 1889, 'M', 757), +(3085, 'Ernest', 1889, 'M', 736), +(3086, 'Richard', 1889, 'M', 711), +(3087, 'Joe', 1889, 'M', 708), +(3088, 'Willie', 1889, 'M', 708), +(3089, 'Carl', 1889, 'M', 704), +(3090, 'Earl', 1889, 'M', 688), +(3091, 'Charlie', 1889, 'M', 685), +(3092, 'Will', 1889, 'M', 631), +(3093, 'Jesse', 1889, 'M', 576), +(3094, 'Oscar', 1889, 'M', 572), +(3095, 'Andrew', 1889, 'M', 561), +(3096, 'Elmer', 1889, 'M', 557), +(3097, 'Paul', 1889, 'M', 556), +(3098, 'Daniel', 1889, 'M', 515), +(3099, 'Raymond', 1889, 'M', 511), +(3100, 'Howard', 1889, 'M', 503), +(3101, 'Ralph', 1889, 'M', 495), +(3102, 'Sam', 1889, 'M', 486), +(3103, 'Alfred', 1889, 'M', 472), +(3104, 'Herbert', 1889, 'M', 472), +(3105, 'Ben', 1889, 'M', 453), +(3106, 'Frederick', 1889, 'M', 451), +(3107, 'Peter', 1889, 'M', 425), +(3108, 'Lee', 1889, 'M', 415), +(3109, 'Lewis', 1889, 'M', 414), +(3110, 'Herman', 1889, 'M', 405), +(3111, 'Claude', 1889, 'M', 386), +(3112, 'Tom', 1889, 'M', 379), +(3113, 'Michael', 1889, 'M', 377), +(3114, 'Eugene', 1889, 'M', 369), +(3115, 'Martin', 1889, 'M', 367), +(3116, 'Ray', 1889, 'M', 355), +(3117, 'Francis', 1889, 'M', 346), +(3118, 'Lawrence', 1889, 'M', 343), +(3119, 'Harold', 1889, 'M', 340), +(3120, 'Jim', 1889, 'M', 328), +(3121, 'Leo', 1889, 'M', 325), +(3122, 'Edgar', 1889, 'M', 322), +(3123, 'Jack', 1889, 'M', 322), +(3124, 'Clyde', 1889, 'M', 318), +(3125, 'Floyd', 1889, 'M', 313), +(3126, 'Harvey', 1889, 'M', 311), +(3127, 'Otto', 1889, 'M', 309), +(3128, 'Edwin', 1889, 'M', 306), +(3129, 'Jacob', 1889, 'M', 295), +(3130, 'Harrison', 1889, 'M', 288), +(3131, 'Chester', 1889, 'M', 275), +(3132, 'Guy', 1889, 'M', 271), +(3133, 'Ed', 1889, 'M', 270), +(3134, 'Luther', 1889, 'M', 270), +(3135, 'Homer', 1889, 'M', 255), +(3136, 'Patrick', 1889, 'M', 236), +(3137, 'Bert', 1889, 'M', 231), +(3138, 'Theodore', 1889, 'M', 231), +(3139, 'Leonard', 1889, 'M', 229), +(3140, 'Hugh', 1889, 'M', 225), +(3141, 'Allen', 1889, 'M', 222), +(3142, 'Anthony', 1889, 'M', 219), +(3143, 'Bernard', 1889, 'M', 215), +(3144, 'Lester', 1889, 'M', 213), +(3145, 'Grover', 1889, 'M', 210), +(3146, 'Oliver', 1889, 'M', 210), +(3147, 'Ira', 1889, 'M', 207), +(3148, 'Jessie', 1889, 'M', 207), +(3149, 'Clifford', 1889, 'M', 202), +(3150, 'Charley', 1889, 'M', 199), +(3151, 'Russell', 1889, 'M', 198), +(3152, 'Archie', 1889, 'M', 195), +(3153, 'Isaac', 1889, 'M', 188), +(3154, 'Leroy', 1889, 'M', 186), +(3155, 'Alexander', 1889, 'M', 185), +(3156, 'Leon', 1889, 'M', 184), +(3157, 'Philip', 1889, 'M', 183), +(3158, 'August', 1889, 'M', 171), +(3159, 'Milton', 1889, 'M', 171), +(3160, 'Lloyd', 1889, 'M', 167), +(3161, 'Warren', 1889, 'M', 167), +(3162, 'Horace', 1889, 'M', 166), +(3163, 'Stephen', 1889, 'M', 164), +(3164, 'Everett', 1889, 'M', 163), +(3165, 'Julius', 1889, 'M', 159), +(3166, 'Victor', 1889, 'M', 158), +(3167, 'Eddie', 1889, 'M', 155), +(3168, 'Leslie', 1889, 'M', 155), +(3169, 'Marion', 1889, 'M', 153), +(3170, 'Stanley', 1889, 'M', 151), +(3171, 'Emil', 1889, 'M', 146), +(3172, 'Percy', 1889, 'M', 144), +(3173, 'Sidney', 1889, 'M', 144), +(3174, 'Norman', 1889, 'M', 141), +(3175, 'Alvin', 1889, 'M', 137), +(3176, 'Alex', 1889, 'M', 127), +(3177, 'Willis', 1889, 'M', 124), +(3178, 'Jess', 1889, 'M', 121), +(3179, 'Nathan', 1889, 'M', 121), +(3180, 'Matthew', 1889, 'M', 118), +(3181, 'Dan', 1889, 'M', 116), +(3182, 'Dave', 1889, 'M', 116), +(3183, 'Otis', 1889, 'M', 116), +(3184, 'Ross', 1889, 'M', 115), +(3185, 'Wallace', 1889, 'M', 115), +(3186, 'Amos', 1889, 'M', 114), +(3187, 'Gus', 1889, 'M', 114), +(3188, 'Morris', 1889, 'M', 112), +(3189, 'Sylvester', 1889, 'M', 112); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(3190, 'Dennis', 1889, 'M', 111), +(3191, 'Jerry', 1889, 'M', 110), +(3192, 'Mack', 1889, 'M', 110), +(3193, 'Maurice', 1889, 'M', 109), +(3194, 'Emmett', 1889, 'M', 108), +(3195, 'Rufus', 1889, 'M', 108), +(3196, 'Calvin', 1889, 'M', 107), +(3197, 'Jake', 1889, 'M', 107), +(3198, 'Lonnie', 1889, 'M', 106), +(3199, 'Gilbert', 1889, 'M', 105), +(3200, 'Perry', 1889, 'M', 105), +(3201, 'Jay', 1889, 'M', 104), +(3202, 'Glenn', 1889, 'M', 103), +(3203, 'Alonzo', 1889, 'M', 102), +(3204, 'Cecil', 1889, 'M', 102), +(3205, 'Wilbur', 1889, 'M', 102), +(3206, 'Adolph', 1889, 'M', 101), +(3207, 'Earnest', 1889, 'M', 101), +(3208, 'Mark', 1889, 'M', 101), +(3209, 'Wesley', 1889, 'M', 101), +(3210, 'Franklin', 1889, 'M', 100), +(3211, 'Willard', 1889, 'M', 100), +(3212, 'Mary', 1890, 'F', 12078), +(3213, 'Anna', 1890, 'F', 5233), +(3214, 'Elizabeth', 1890, 'F', 3112), +(3215, 'Margaret', 1890, 'F', 3100), +(3216, 'Emma', 1890, 'F', 2980), +(3217, 'Florence', 1890, 'F', 2745), +(3218, 'Ethel', 1890, 'F', 2718), +(3219, 'Minnie', 1890, 'F', 2650), +(3220, 'Clara', 1890, 'F', 2496), +(3221, 'Bertha', 1890, 'F', 2388), +(3222, 'Bessie', 1890, 'F', 2370), +(3223, 'Helen', 1890, 'F', 2312), +(3224, 'Grace', 1890, 'F', 2278), +(3225, 'Alice', 1890, 'F', 2271), +(3226, 'Annie', 1890, 'F', 2220), +(3227, 'Ida', 1890, 'F', 2178), +(3228, 'Mabel', 1890, 'F', 2058), +(3229, 'Edna', 1890, 'F', 1973), +(3230, 'Lillian', 1890, 'F', 1862), +(3231, 'Nellie', 1890, 'F', 1821), +(3232, 'Sarah', 1890, 'F', 1786), +(3233, 'Martha', 1890, 'F', 1784), +(3234, 'Ella', 1890, 'F', 1758), +(3235, 'Pearl', 1890, 'F', 1741), +(3236, 'Rose', 1890, 'F', 1725), +(3237, 'Gertrude', 1890, 'F', 1713), +(3238, 'Laura', 1890, 'F', 1634), +(3239, 'Marie', 1890, 'F', 1563), +(3240, 'Carrie', 1890, 'F', 1510), +(3241, 'Edith', 1890, 'F', 1493), +(3242, 'Louise', 1890, 'F', 1472), +(3243, 'Eva', 1890, 'F', 1436), +(3244, 'Frances', 1890, 'F', 1416), +(3245, 'Myrtle', 1890, 'F', 1406), +(3246, 'Lillie', 1890, 'F', 1390), +(3247, 'Cora', 1890, 'F', 1386), +(3248, 'Hazel', 1890, 'F', 1366), +(3249, 'Hattie', 1890, 'F', 1363), +(3250, 'Maude', 1890, 'F', 1359), +(3251, 'Julia', 1890, 'F', 1275), +(3252, 'Jennie', 1890, 'F', 1259), +(3253, 'Mattie', 1890, 'F', 1256), +(3254, 'Jessie', 1890, 'F', 1250), +(3255, 'Catherine', 1890, 'F', 1232), +(3256, 'Elsie', 1890, 'F', 1220), +(3257, 'Ruth', 1890, 'F', 1195), +(3258, 'Lena', 1890, 'F', 1137), +(3259, 'Lula', 1890, 'F', 1121), +(3260, 'Josephine', 1890, 'F', 1118), +(3261, 'Agnes', 1890, 'F', 1095), +(3262, 'Ada', 1890, 'F', 1074), +(3263, 'Fannie', 1890, 'F', 1005), +(3264, 'Lucy', 1890, 'F', 973), +(3265, 'Mamie', 1890, 'F', 967), +(3266, 'Blanche', 1890, 'F', 953), +(3267, 'Stella', 1890, 'F', 924), +(3268, 'Alma', 1890, 'F', 922), +(3269, 'Mae', 1890, 'F', 920), +(3270, 'Katherine', 1890, 'F', 900), +(3271, 'Irene', 1890, 'F', 893), +(3272, 'Maggie', 1890, 'F', 891), +(3273, 'Dora', 1890, 'F', 883), +(3274, 'Nora', 1890, 'F', 835), +(3275, 'Rosa', 1890, 'F', 770), +(3276, 'May', 1890, 'F', 751), +(3277, 'Effie', 1890, 'F', 717), +(3278, 'Nettie', 1890, 'F', 707), +(3279, 'Viola', 1890, 'F', 697), +(3280, 'Sadie', 1890, 'F', 680), +(3281, 'Ellen', 1890, 'F', 659), +(3282, 'Mildred', 1890, 'F', 635), +(3283, 'Della', 1890, 'F', 631), +(3284, 'Susie', 1890, 'F', 630), +(3285, 'Lizzie', 1890, 'F', 620), +(3286, 'Esther', 1890, 'F', 619), +(3287, 'Daisy', 1890, 'F', 588), +(3288, 'Willie', 1890, 'F', 578), +(3289, 'Lydia', 1890, 'F', 576), +(3290, 'Beulah', 1890, 'F', 573), +(3291, 'Sallie', 1890, 'F', 571), +(3292, 'Ruby', 1890, 'F', 540), +(3293, 'Gladys', 1890, 'F', 525), +(3294, 'Georgia', 1890, 'F', 512), +(3295, 'Nancy', 1890, 'F', 512), +(3296, 'Flora', 1890, 'F', 510), +(3297, 'Emily', 1890, 'F', 509), +(3298, 'Katie', 1890, 'F', 509), +(3299, 'Lottie', 1890, 'F', 502), +(3300, 'Olive', 1890, 'F', 491), +(3301, 'Pauline', 1890, 'F', 475), +(3302, 'Kathryn', 1890, 'F', 474), +(3303, 'Addie', 1890, 'F', 468), +(3304, 'Dorothy', 1890, 'F', 458), +(3305, 'Caroline', 1890, 'F', 455), +(3306, 'Etta', 1890, 'F', 452), +(3307, 'Marguerite', 1890, 'F', 442), +(3308, 'Maud', 1890, 'F', 439), +(3309, 'Beatrice', 1890, 'F', 417), +(3310, 'Charlotte', 1890, 'F', 417), +(3311, 'Virginia', 1890, 'F', 405), +(3312, 'Theresa', 1890, 'F', 401), +(3313, 'Harriet', 1890, 'F', 399), +(3314, 'Vera', 1890, 'F', 393), +(3315, 'Amanda', 1890, 'F', 392), +(3316, 'Ollie', 1890, 'F', 392), +(3317, 'Marion', 1890, 'F', 386), +(3318, 'Rebecca', 1890, 'F', 374), +(3319, 'Jane', 1890, 'F', 372), +(3320, 'Amelia', 1890, 'F', 368), +(3321, 'Henrietta', 1890, 'F', 366), +(3322, 'Lulu', 1890, 'F', 364), +(3323, 'Nannie', 1890, 'F', 355), +(3324, 'Iva', 1890, 'F', 354), +(3325, 'Ora', 1890, 'F', 354), +(3326, 'Susan', 1890, 'F', 354), +(3327, 'Kate', 1890, 'F', 352), +(3328, 'Eleanor', 1890, 'F', 351), +(3329, 'Mollie', 1890, 'F', 349), +(3330, 'Lola', 1890, 'F', 346), +(3331, 'Leona', 1890, 'F', 332), +(3332, 'Ann', 1890, 'F', 328), +(3333, 'Estella', 1890, 'F', 320), +(3334, 'Anne', 1890, 'F', 319), +(3335, 'Rachel', 1890, 'F', 318), +(3336, 'Evelyn', 1890, 'F', 316), +(3337, 'Nina', 1890, 'F', 314), +(3338, 'Belle', 1890, 'F', 304), +(3339, 'Hilda', 1890, 'F', 304), +(3340, 'Lela', 1890, 'F', 304), +(3341, 'Augusta', 1890, 'F', 299), +(3342, 'Inez', 1890, 'F', 299), +(3343, 'Eliza', 1890, 'F', 297), +(3344, 'Matilda', 1890, 'F', 293), +(3345, 'Estelle', 1890, 'F', 277), +(3346, 'Amy', 1890, 'F', 275), +(3347, 'Hannah', 1890, 'F', 267), +(3348, 'Sara', 1890, 'F', 262), +(3349, 'Essie', 1890, 'F', 256), +(3350, 'Goldie', 1890, 'F', 254), +(3351, 'Eula', 1890, 'F', 248), +(3352, 'Mable', 1890, 'F', 247), +(3353, 'Maria', 1890, 'F', 247), +(3354, 'Mayme', 1890, 'F', 246), +(3355, 'Sophia', 1890, 'F', 245), +(3356, 'Verna', 1890, 'F', 244), +(3357, 'Josie', 1890, 'F', 242), +(3358, 'Barbara', 1890, 'F', 241), +(3359, 'Lucille', 1890, 'F', 241), +(3360, 'Ola', 1890, 'F', 239), +(3361, 'Rosie', 1890, 'F', 238), +(3362, 'Alta', 1890, 'F', 234), +(3363, 'Flossie', 1890, 'F', 231), +(3364, 'Callie', 1890, 'F', 230), +(3365, 'Allie', 1890, 'F', 229), +(3366, 'Bernice', 1890, 'F', 229), +(3367, 'Loretta', 1890, 'F', 228), +(3368, 'Olga', 1890, 'F', 225), +(3369, 'Sylvia', 1890, 'F', 223), +(3370, 'Victoria', 1890, 'F', 223), +(3371, 'Nell', 1890, 'F', 221), +(3372, 'Christine', 1890, 'F', 220), +(3373, 'Janie', 1890, 'F', 220), +(3374, 'Genevieve', 1890, 'F', 217), +(3375, 'Betty', 1890, 'F', 216), +(3376, 'Ina', 1890, 'F', 215), +(3377, 'Eunice', 1890, 'F', 214), +(3378, 'Tillie', 1890, 'F', 207), +(3379, 'Sophie', 1890, 'F', 206), +(3380, 'Celia', 1890, 'F', 204), +(3381, 'Millie', 1890, 'F', 204), +(3382, 'Winifred', 1890, 'F', 204), +(3383, 'Delia', 1890, 'F', 197), +(3384, 'Frieda', 1890, 'F', 195), +(3385, 'Rena', 1890, 'F', 192), +(3386, 'Luella', 1890, 'F', 184), +(3387, 'Violet', 1890, 'F', 183), +(3388, 'Marjorie', 1890, 'F', 181), +(3389, 'Lois', 1890, 'F', 175), +(3390, 'Birdie', 1890, 'F', 168), +(3391, 'Louisa', 1890, 'F', 168), +(3392, 'Winnie', 1890, 'F', 166), +(3393, 'Alberta', 1890, 'F', 165), +(3394, 'Selma', 1890, 'F', 165), +(3395, 'Leah', 1890, 'F', 162), +(3396, 'Elva', 1890, 'F', 160), +(3397, 'Isabel', 1890, 'F', 160), +(3398, 'Jean', 1890, 'F', 160), +(3399, 'Bertie', 1890, 'F', 158), +(3400, 'Isabelle', 1890, 'F', 156), +(3401, 'Bess', 1890, 'F', 154), +(3402, 'Irma', 1890, 'F', 154), +(3403, 'Leila', 1890, 'F', 154), +(3404, 'Sally', 1890, 'F', 154), +(3405, 'Virgie', 1890, 'F', 154), +(3406, 'Adeline', 1890, 'F', 150), +(3407, 'Lucile', 1890, 'F', 149), +(3408, 'Hulda', 1890, 'F', 147), +(3409, 'Nelle', 1890, 'F', 143), +(3410, 'Abbie', 1890, 'F', 140), +(3411, 'Christina', 1890, 'F', 139), +(3412, 'Mathilda', 1890, 'F', 138), +(3413, 'Rhoda', 1890, 'F', 138), +(3414, 'Lelia', 1890, 'F', 137), +(3415, 'Bettie', 1890, 'F', 136), +(3416, 'Erma', 1890, 'F', 135), +(3417, 'Roxie', 1890, 'F', 135), +(3418, 'Norma', 1890, 'F', 134), +(3419, 'Adele', 1890, 'F', 133), +(3420, 'Myra', 1890, 'F', 133), +(3421, 'Lou', 1890, 'F', 132), +(3422, 'Cecelia', 1890, 'F', 130), +(3423, 'Dollie', 1890, 'F', 130), +(3424, 'Lora', 1890, 'F', 130), +(3425, 'Jeanette', 1890, 'F', 129), +(3426, 'Freda', 1890, 'F', 127), +(3427, 'Gussie', 1890, 'F', 125), +(3428, 'Carolyn', 1890, 'F', 124), +(3429, 'Cornelia', 1890, 'F', 123), +(3430, 'Naomi', 1890, 'F', 122), +(3431, 'Gertie', 1890, 'F', 121), +(3432, 'Hallie', 1890, 'F', 121), +(3433, 'Lila', 1890, 'F', 120), +(3434, 'Sue', 1890, 'F', 120), +(3435, 'Fern', 1890, 'F', 119), +(3436, 'Hester', 1890, 'F', 119), +(3437, 'Katharine', 1890, 'F', 119), +(3438, 'Meta', 1890, 'F', 115), +(3439, 'Harriett', 1890, 'F', 114), +(3440, 'Regina', 1890, 'F', 114), +(3441, 'Geneva', 1890, 'F', 112), +(3442, 'Marian', 1890, 'F', 112), +(3443, 'Lura', 1890, 'F', 110), +(3444, 'Teresa', 1890, 'F', 110), +(3445, 'Elma', 1890, 'F', 108), +(3446, 'Johanna', 1890, 'F', 108), +(3447, 'Zella', 1890, 'F', 108), +(3448, 'Maudie', 1890, 'F', 107), +(3449, 'Elsa', 1890, 'F', 106), +(3450, 'Kathleen', 1890, 'F', 105), +(3451, 'Lilly', 1890, 'F', 104), +(3452, 'Vivian', 1890, 'F', 103), +(3453, 'Adelaide', 1890, 'F', 102), +(3454, 'Corinne', 1890, 'F', 102), +(3455, 'Dessie', 1890, 'F', 102), +(3456, 'Lenora', 1890, 'F', 102), +(3457, 'Francis', 1890, 'F', 101), +(3458, 'Lucinda', 1890, 'F', 101), +(3459, 'Helena', 1890, 'F', 100), +(3460, 'Madge', 1890, 'F', 100), +(3461, 'John', 1890, 'M', 8502), +(3462, 'William', 1890, 'M', 7494), +(3463, 'James', 1890, 'M', 5097), +(3464, 'George', 1890, 'M', 4458), +(3465, 'Charles', 1890, 'M', 4061), +(3466, 'Frank', 1890, 'M', 3078), +(3467, 'Joseph', 1890, 'M', 2670), +(3468, 'Robert', 1890, 'M', 2541), +(3469, 'Henry', 1890, 'M', 2349), +(3470, 'Harry', 1890, 'M', 2345), +(3471, 'Edward', 1890, 'M', 2282), +(3472, 'Thomas', 1890, 'M', 2200), +(3473, 'Walter', 1890, 'M', 1905), +(3474, 'Arthur', 1890, 'M', 1610), +(3475, 'Fred', 1890, 'M', 1507), +(3476, 'Albert', 1890, 'M', 1417), +(3477, 'Clarence', 1890, 'M', 1018), +(3478, 'Roy', 1890, 'M', 941), +(3479, 'Louis', 1890, 'M', 860), +(3480, 'Samuel', 1890, 'M', 815), +(3481, 'Charlie', 1890, 'M', 797), +(3482, 'Ernest', 1890, 'M', 774), +(3483, 'Willie', 1890, 'M', 758), +(3484, 'Earl', 1890, 'M', 744), +(3485, 'Richard', 1890, 'M', 744), +(3486, 'David', 1890, 'M', 731), +(3487, 'Carl', 1890, 'M', 693), +(3488, 'Joe', 1890, 'M', 682), +(3489, 'Oscar', 1890, 'M', 628), +(3490, 'Will', 1890, 'M', 613), +(3491, 'Paul', 1890, 'M', 607), +(3492, 'Ralph', 1890, 'M', 587), +(3493, 'Jesse', 1890, 'M', 576), +(3494, 'Andrew', 1890, 'M', 575), +(3495, 'Alfred', 1890, 'M', 549), +(3496, 'Raymond', 1890, 'M', 546), +(3497, 'Benjamin', 1890, 'M', 537), +(3498, 'Elmer', 1890, 'M', 528), +(3499, 'Daniel', 1890, 'M', 505), +(3500, 'Howard', 1890, 'M', 501), +(3501, 'Sam', 1890, 'M', 489), +(3502, 'Herbert', 1890, 'M', 467), +(3503, 'Frederick', 1890, 'M', 410), +(3504, 'Lee', 1890, 'M', 410), +(3505, 'Peter', 1890, 'M', 410), +(3506, 'Eugene', 1890, 'M', 408), +(3507, 'Harold', 1890, 'M', 408), +(3508, 'Michael', 1890, 'M', 394), +(3509, 'Leo', 1890, 'M', 393), +(3510, 'Herman', 1890, 'M', 382), +(3511, 'Lewis', 1890, 'M', 375), +(3512, 'Lawrence', 1890, 'M', 372), +(3513, 'Jack', 1890, 'M', 368), +(3514, 'Ben', 1890, 'M', 363), +(3515, 'Francis', 1890, 'M', 363), +(3516, 'Ray', 1890, 'M', 349), +(3517, 'Claude', 1890, 'M', 347), +(3518, 'Martin', 1890, 'M', 347), +(3519, 'Tom', 1890, 'M', 347), +(3520, 'Floyd', 1890, 'M', 341), +(3521, 'Edgar', 1890, 'M', 338), +(3522, 'Jim', 1890, 'M', 336), +(3523, 'Edwin', 1890, 'M', 323), +(3524, 'Clyde', 1890, 'M', 317), +(3525, 'Harvey', 1890, 'M', 296), +(3526, 'Jacob', 1890, 'M', 290), +(3527, 'Leonard', 1890, 'M', 275), +(3528, 'Otto', 1890, 'M', 267), +(3529, 'Chester', 1890, 'M', 263), +(3530, 'Ed', 1890, 'M', 262), +(3531, 'Luther', 1890, 'M', 253), +(3532, 'Guy', 1890, 'M', 249), +(3533, 'Jessie', 1890, 'M', 241), +(3534, 'Leroy', 1890, 'M', 236), +(3535, 'Patrick', 1890, 'M', 227), +(3536, 'Lester', 1890, 'M', 225), +(3537, 'Homer', 1890, 'M', 223), +(3538, 'Stanley', 1890, 'M', 223), +(3539, 'Archie', 1890, 'M', 221), +(3540, 'Hugh', 1890, 'M', 219), +(3541, 'Oliver', 1890, 'M', 218), +(3542, 'Ira', 1890, 'M', 209), +(3543, 'Clifford', 1890, 'M', 207), +(3544, 'August', 1890, 'M', 206), +(3545, 'Alexander', 1890, 'M', 202), +(3546, 'Eddie', 1890, 'M', 197), +(3547, 'Leon', 1890, 'M', 197), +(3548, 'Philip', 1890, 'M', 192), +(3549, 'Theodore', 1890, 'M', 190), +(3550, 'Allen', 1890, 'M', 189), +(3551, 'Anthony', 1890, 'M', 189), +(3552, 'Isaac', 1890, 'M', 187), +(3553, 'Charley', 1890, 'M', 183), +(3554, 'Lloyd', 1890, 'M', 182), +(3555, 'Russell', 1890, 'M', 182), +(3556, 'Leslie', 1890, 'M', 181), +(3557, 'Bert', 1890, 'M', 180), +(3558, 'Bernard', 1890, 'M', 178), +(3559, 'Grover', 1890, 'M', 177), +(3560, 'Sidney', 1890, 'M', 176), +(3561, 'Emil', 1890, 'M', 165), +(3562, 'Everett', 1890, 'M', 163), +(3563, 'Horace', 1890, 'M', 162), +(3564, 'Dan', 1890, 'M', 160), +(3565, 'Julius', 1890, 'M', 159), +(3566, 'Warren', 1890, 'M', 157), +(3567, 'Harrison', 1890, 'M', 156), +(3568, 'Norman', 1890, 'M', 156), +(3569, 'Stephen', 1890, 'M', 156), +(3570, 'Dave', 1890, 'M', 152), +(3571, 'Alex', 1890, 'M', 147), +(3572, 'Alvin', 1890, 'M', 147), +(3573, 'Percy', 1890, 'M', 140), +(3574, 'Victor', 1890, 'M', 138), +(3575, 'Wallace', 1890, 'M', 138), +(3576, 'Marion', 1890, 'M', 137), +(3577, 'Wesley', 1890, 'M', 131), +(3578, 'Willis', 1890, 'M', 129), +(3579, 'Milton', 1890, 'M', 126), +(3580, 'Earnest', 1890, 'M', 122), +(3581, 'Cecil', 1890, 'M', 120), +(3582, 'Otis', 1890, 'M', 119), +(3583, 'Glenn', 1890, 'M', 117), +(3584, 'Calvin', 1890, 'M', 116), +(3585, 'Gilbert', 1890, 'M', 116), +(3586, 'Rufus', 1890, 'M', 115), +(3587, 'Amos', 1890, 'M', 114), +(3588, 'Jess', 1890, 'M', 114), +(3589, 'Mack', 1890, 'M', 114), +(3590, 'Nathan', 1890, 'M', 110), +(3591, 'Donald', 1890, 'M', 109), +(3592, 'Gus', 1890, 'M', 109), +(3593, 'Jay', 1890, 'M', 108), +(3594, 'Perry', 1890, 'M', 108), +(3595, 'Lonnie', 1890, 'M', 107), +(3596, 'Emmett', 1890, 'M', 104), +(3597, 'Jerry', 1890, 'M', 103), +(3598, 'Adolph', 1890, 'M', 102), +(3599, 'Dennis', 1890, 'M', 102), +(3600, 'Maurice', 1890, 'M', 102), +(3601, 'Ross', 1890, 'M', 101), +(3602, 'Virgil', 1890, 'M', 100), +(3603, 'Mary', 1891, 'F', 11703), +(3604, 'Anna', 1891, 'F', 5099), +(3605, 'Margaret', 1891, 'F', 3065), +(3606, 'Elizabeth', 1891, 'F', 3059), +(3607, 'Emma', 1891, 'F', 2884), +(3608, 'Florence', 1891, 'F', 2715), +(3609, 'Ethel', 1891, 'F', 2689), +(3610, 'Minnie', 1891, 'F', 2428), +(3611, 'Helen', 1891, 'F', 2417), +(3612, 'Bertha', 1891, 'F', 2372), +(3613, 'Clara', 1891, 'F', 2360), +(3614, 'Bessie', 1891, 'F', 2323), +(3615, 'Annie', 1891, 'F', 2096), +(3616, 'Grace', 1891, 'F', 2088), +(3617, 'Mabel', 1891, 'F', 2029), +(3618, 'Alice', 1891, 'F', 2015), +(3619, 'Ida', 1891, 'F', 2002), +(3620, 'Edna', 1891, 'F', 1963), +(3621, 'Ruth', 1891, 'F', 1857), +(3622, 'Lillian', 1891, 'F', 1812), +(3623, 'Martha', 1891, 'F', 1744), +(3624, 'Rose', 1891, 'F', 1696), +(3625, 'Ella', 1891, 'F', 1685), +(3626, 'Sarah', 1891, 'F', 1669), +(3627, 'Nellie', 1891, 'F', 1647), +(3628, 'Gertrude', 1891, 'F', 1645), +(3629, 'Pearl', 1891, 'F', 1605), +(3630, 'Marie', 1891, 'F', 1596), +(3631, 'Edith', 1891, 'F', 1509), +(3632, 'Laura', 1891, 'F', 1509), +(3633, 'Myrtle', 1891, 'F', 1458), +(3634, 'Hazel', 1891, 'F', 1447), +(3635, 'Eva', 1891, 'F', 1412), +(3636, 'Frances', 1891, 'F', 1397), +(3637, 'Cora', 1891, 'F', 1343), +(3638, 'Carrie', 1891, 'F', 1342), +(3639, 'Louise', 1891, 'F', 1333), +(3640, 'Elsie', 1891, 'F', 1303), +(3641, 'Lillie', 1891, 'F', 1247), +(3642, 'Jennie', 1891, 'F', 1238), +(3643, 'Catherine', 1891, 'F', 1219), +(3644, 'Hattie', 1891, 'F', 1219), +(3645, 'Julia', 1891, 'F', 1200), +(3646, 'Maude', 1891, 'F', 1188), +(3647, 'Lena', 1891, 'F', 1174), +(3648, 'Mattie', 1891, 'F', 1165), +(3649, 'Agnes', 1891, 'F', 1125), +(3650, 'Jessie', 1891, 'F', 1119), +(3651, 'Josephine', 1891, 'F', 1031), +(3652, 'Lula', 1891, 'F', 1010), +(3653, 'Ada', 1891, 'F', 975), +(3654, 'Irene', 1891, 'F', 950), +(3655, 'Lucy', 1891, 'F', 944), +(3656, 'Mae', 1891, 'F', 933), +(3657, 'Alma', 1891, 'F', 929), +(3658, 'Blanche', 1891, 'F', 917), +(3659, 'Fannie', 1891, 'F', 916), +(3660, 'Dora', 1891, 'F', 870), +(3661, 'Stella', 1891, 'F', 867), +(3662, 'Maggie', 1891, 'F', 841), +(3663, 'Mamie', 1891, 'F', 830), +(3664, 'Katherine', 1891, 'F', 803), +(3665, 'Nora', 1891, 'F', 801), +(3666, 'Mildred', 1891, 'F', 761), +(3667, 'Rosa', 1891, 'F', 729), +(3668, 'Esther', 1891, 'F', 710), +(3669, 'Effie', 1891, 'F', 704), +(3670, 'May', 1891, 'F', 696), +(3671, 'Ellen', 1891, 'F', 675), +(3672, 'Gladys', 1891, 'F', 633), +(3673, 'Nettie', 1891, 'F', 620), +(3674, 'Sadie', 1891, 'F', 617), +(3675, 'Viola', 1891, 'F', 609), +(3676, 'Della', 1891, 'F', 607), +(3677, 'Sallie', 1891, 'F', 569), +(3678, 'Dorothy', 1891, 'F', 566), +(3679, 'Susie', 1891, 'F', 566), +(3680, 'Willie', 1891, 'F', 562), +(3681, 'Daisy', 1891, 'F', 557), +(3682, 'Ruby', 1891, 'F', 554), +(3683, 'Beulah', 1891, 'F', 526), +(3684, 'Lizzie', 1891, 'F', 525), +(3685, 'Nancy', 1891, 'F', 523), +(3686, 'Marguerite', 1891, 'F', 511), +(3687, 'Olive', 1891, 'F', 509), +(3688, 'Lydia', 1891, 'F', 507), +(3689, 'Kathryn', 1891, 'F', 504), +(3690, 'Lottie', 1891, 'F', 501), +(3691, 'Flora', 1891, 'F', 497), +(3692, 'Katie', 1891, 'F', 494), +(3693, 'Beatrice', 1891, 'F', 485), +(3694, 'Addie', 1891, 'F', 467), +(3695, 'Pauline', 1891, 'F', 455), +(3696, 'Etta', 1891, 'F', 452), +(3697, 'Emily', 1891, 'F', 444), +(3698, 'Georgia', 1891, 'F', 444), +(3699, 'Virginia', 1891, 'F', 439), +(3700, 'Vera', 1891, 'F', 426), +(3701, 'Marion', 1891, 'F', 413), +(3702, 'Caroline', 1891, 'F', 402), +(3703, 'Charlotte', 1891, 'F', 387), +(3704, 'Jane', 1891, 'F', 379), +(3705, 'Eleanor', 1891, 'F', 376), +(3706, 'Ollie', 1891, 'F', 376), +(3707, 'Amanda', 1891, 'F', 371), +(3708, 'Susan', 1891, 'F', 370), +(3709, 'Theresa', 1891, 'F', 370), +(3710, 'Maud', 1891, 'F', 366), +(3711, 'Evelyn', 1891, 'F', 362), +(3712, 'Mollie', 1891, 'F', 356), +(3713, 'Harriet', 1891, 'F', 354), +(3714, 'Amelia', 1891, 'F', 353), +(3715, 'Leona', 1891, 'F', 352), +(3716, 'Henrietta', 1891, 'F', 348), +(3717, 'Anne', 1891, 'F', 342), +(3718, 'Iva', 1891, 'F', 341), +(3719, 'Ann', 1891, 'F', 337), +(3720, 'Lela', 1891, 'F', 337), +(3721, 'Lola', 1891, 'F', 337), +(3722, 'Matilda', 1891, 'F', 336), +(3723, 'Ora', 1891, 'F', 327), +(3724, 'Hilda', 1891, 'F', 324), +(3725, 'Rebecca', 1891, 'F', 320), +(3726, 'Lulu', 1891, 'F', 315), +(3727, 'Nannie', 1891, 'F', 315), +(3728, 'Goldie', 1891, 'F', 306), +(3729, 'Kate', 1891, 'F', 305), +(3730, 'Hannah', 1891, 'F', 293), +(3731, 'Flossie', 1891, 'F', 292), +(3732, 'Eliza', 1891, 'F', 280), +(3733, 'Nina', 1891, 'F', 273), +(3734, 'Mable', 1891, 'F', 268), +(3735, 'Estella', 1891, 'F', 267), +(3736, 'Rachel', 1891, 'F', 267), +(3737, 'Amy', 1891, 'F', 266), +(3738, 'Rosie', 1891, 'F', 264), +(3739, 'Inez', 1891, 'F', 263), +(3740, 'Sara', 1891, 'F', 260), +(3741, 'Augusta', 1891, 'F', 256), +(3742, 'Estelle', 1891, 'F', 254), +(3743, 'Lucille', 1891, 'F', 252), +(3744, 'Bernice', 1891, 'F', 248), +(3745, 'Maria', 1891, 'F', 248), +(3746, 'Eula', 1891, 'F', 246), +(3747, 'Belle', 1891, 'F', 240), +(3748, 'Alta', 1891, 'F', 239), +(3749, 'Betty', 1891, 'F', 239), +(3750, 'Eunice', 1891, 'F', 237), +(3751, 'Olga', 1891, 'F', 237), +(3752, 'Winifred', 1891, 'F', 235), +(3753, 'Mayme', 1891, 'F', 234), +(3754, 'Barbara', 1891, 'F', 221), +(3755, 'Sophia', 1891, 'F', 220), +(3756, 'Ola', 1891, 'F', 219), +(3757, 'Josie', 1891, 'F', 218), +(3758, 'Sylvia', 1891, 'F', 218), +(3759, 'Essie', 1891, 'F', 217), +(3760, 'Ina', 1891, 'F', 216), +(3761, 'Loretta', 1891, 'F', 212), +(3762, 'Frieda', 1891, 'F', 207), +(3763, 'Tillie', 1891, 'F', 207), +(3764, 'Lois', 1891, 'F', 206), +(3765, 'Selma', 1891, 'F', 206), +(3766, 'Janie', 1891, 'F', 204), +(3767, 'Victoria', 1891, 'F', 204), +(3768, 'Sophie', 1891, 'F', 203), +(3769, 'Verna', 1891, 'F', 203), +(3770, 'Winnie', 1891, 'F', 202), +(3771, 'Genevieve', 1891, 'F', 201), +(3772, 'Marjorie', 1891, 'F', 195), +(3773, 'Callie', 1891, 'F', 194), +(3774, 'Irma', 1891, 'F', 193), +(3775, 'Allie', 1891, 'F', 192), +(3776, 'Millie', 1891, 'F', 192), +(3777, 'Nell', 1891, 'F', 190), +(3778, 'Violet', 1891, 'F', 188), +(3779, 'Celia', 1891, 'F', 187), +(3780, 'Jean', 1891, 'F', 181), +(3781, 'Leila', 1891, 'F', 178), +(3782, 'Delia', 1891, 'F', 177), +(3783, 'Lucile', 1891, 'F', 177), +(3784, 'Rena', 1891, 'F', 173), +(3785, 'Alberta', 1891, 'F', 167), +(3786, 'Luella', 1891, 'F', 163), +(3787, 'Christine', 1891, 'F', 161), +(3788, 'Freda', 1891, 'F', 161), +(3789, 'Elva', 1891, 'F', 158), +(3790, 'Bertie', 1891, 'F', 156), +(3791, 'Isabel', 1891, 'F', 150), +(3792, 'Leah', 1891, 'F', 144), +(3793, 'Lelia', 1891, 'F', 141), +(3794, 'Erma', 1891, 'F', 139), +(3795, 'Virgie', 1891, 'F', 139), +(3796, 'Bettie', 1891, 'F', 138), +(3797, 'Birdie', 1891, 'F', 138), +(3798, 'Hulda', 1891, 'F', 138), +(3799, 'Mathilda', 1891, 'F', 138), +(3800, 'Rhoda', 1891, 'F', 138), +(3801, 'Bess', 1891, 'F', 137), +(3802, 'Gussie', 1891, 'F', 137), +(3803, 'Lora', 1891, 'F', 135), +(3804, 'Adeline', 1891, 'F', 132), +(3805, 'Naomi', 1891, 'F', 132), +(3806, 'Teresa', 1891, 'F', 131), +(3807, 'Cecelia', 1891, 'F', 130), +(3808, 'Isabelle', 1891, 'F', 130), +(3809, 'Cornelia', 1891, 'F', 129), +(3810, 'Lila', 1891, 'F', 128), +(3811, 'Norma', 1891, 'F', 127), +(3812, 'Sue', 1891, 'F', 127), +(3813, 'Dollie', 1891, 'F', 125), +(3814, 'Louisa', 1891, 'F', 125), +(3815, 'Madeline', 1891, 'F', 125), +(3816, 'Abbie', 1891, 'F', 124), +(3817, 'Christina', 1891, 'F', 124), +(3818, 'Fern', 1891, 'F', 124), +(3819, 'Johanna', 1891, 'F', 122), +(3820, 'Nelle', 1891, 'F', 122), +(3821, 'Cecilia', 1891, 'F', 121), +(3822, 'Roxie', 1891, 'F', 120), +(3823, 'Adelaide', 1891, 'F', 119), +(3824, 'Mina', 1891, 'F', 119), +(3825, 'Elma', 1891, 'F', 118), +(3826, 'Katharine', 1891, 'F', 117), +(3827, 'Sally', 1891, 'F', 115), +(3828, 'Zella', 1891, 'F', 115), +(3829, 'Adele', 1891, 'F', 113), +(3830, 'Kathleen', 1891, 'F', 113), +(3831, 'Myra', 1891, 'F', 113), +(3832, 'Carolyn', 1891, 'F', 110), +(3833, 'Lou', 1891, 'F', 109), +(3834, 'Hettie', 1891, 'F', 108), +(3835, 'Marian', 1891, 'F', 108), +(3836, 'Vivian', 1891, 'F', 108), +(3837, 'Regina', 1891, 'F', 105), +(3838, 'Velma', 1891, 'F', 103), +(3839, 'Wilhelmina', 1891, 'F', 103), +(3840, 'Elsa', 1891, 'F', 102), +(3841, 'Hester', 1891, 'F', 102), +(3842, 'Lura', 1891, 'F', 102), +(3843, 'Harriett', 1891, 'F', 101), +(3844, 'Jeanette', 1891, 'F', 101), +(3845, 'Bonnie', 1891, 'F', 100), +(3846, 'John', 1891, 'M', 7681), +(3847, 'William', 1891, 'M', 6763), +(3848, 'James', 1891, 'M', 4516), +(3849, 'George', 1891, 'M', 3931), +(3850, 'Charles', 1891, 'M', 3640), +(3851, 'Frank', 1891, 'M', 2652), +(3852, 'Joseph', 1891, 'M', 2572), +(3853, 'Robert', 1891, 'M', 2240), +(3854, 'Harry', 1891, 'M', 2132), +(3855, 'Henry', 1891, 'M', 2049), +(3856, 'Edward', 1891, 'M', 1989), +(3857, 'Thomas', 1891, 'M', 1982), +(3858, 'Walter', 1891, 'M', 1668), +(3859, 'Arthur', 1891, 'M', 1514), +(3860, 'Fred', 1891, 'M', 1362), +(3861, 'Albert', 1891, 'M', 1207), +(3862, 'Clarence', 1891, 'M', 1008), +(3863, 'Roy', 1891, 'M', 838), +(3864, 'Louis', 1891, 'M', 786), +(3865, 'Samuel', 1891, 'M', 753), +(3866, 'Willie', 1891, 'M', 739), +(3867, 'Ernest', 1891, 'M', 715), +(3868, 'Charlie', 1891, 'M', 707), +(3869, 'Carl', 1891, 'M', 675), +(3870, 'Earl', 1891, 'M', 674), +(3871, 'David', 1891, 'M', 673), +(3872, 'Richard', 1891, 'M', 609), +(3873, 'Ralph', 1891, 'M', 587), +(3874, 'Joe', 1891, 'M', 584), +(3875, 'Raymond', 1891, 'M', 575), +(3876, 'Paul', 1891, 'M', 564), +(3877, 'Oscar', 1891, 'M', 551), +(3878, 'Andrew', 1891, 'M', 521), +(3879, 'Will', 1891, 'M', 520), +(3880, 'Jesse', 1891, 'M', 519), +(3881, 'Elmer', 1891, 'M', 508), +(3882, 'Daniel', 1891, 'M', 505), +(3883, 'Herbert', 1891, 'M', 501), +(3884, 'Alfred', 1891, 'M', 499), +(3885, 'Howard', 1891, 'M', 485), +(3886, 'Benjamin', 1891, 'M', 461), +(3887, 'Harold', 1891, 'M', 419), +(3888, 'Sam', 1891, 'M', 418), +(3889, 'Frederick', 1891, 'M', 412), +(3890, 'Peter', 1891, 'M', 396), +(3891, 'Lawrence', 1891, 'M', 389), +(3892, 'Herman', 1891, 'M', 383), +(3893, 'Eugene', 1891, 'M', 362), +(3894, 'Ray', 1891, 'M', 360), +(3895, 'Lewis', 1891, 'M', 357), +(3896, 'Leo', 1891, 'M', 353), +(3897, 'Lee', 1891, 'M', 342), +(3898, 'Floyd', 1891, 'M', 336), +(3899, 'Francis', 1891, 'M', 333), +(3900, 'Michael', 1891, 'M', 333), +(3901, 'Martin', 1891, 'M', 331), +(3902, 'Claude', 1891, 'M', 327), +(3903, 'Clyde', 1891, 'M', 327), +(3904, 'Edwin', 1891, 'M', 327), +(3905, 'Tom', 1891, 'M', 318), +(3906, 'Ben', 1891, 'M', 302), +(3907, 'Jack', 1891, 'M', 291), +(3908, 'Jim', 1891, 'M', 288), +(3909, 'Edgar', 1891, 'M', 277), +(3910, 'Harvey', 1891, 'M', 274), +(3911, 'Otto', 1891, 'M', 274), +(3912, 'Guy', 1891, 'M', 262), +(3913, 'Chester', 1891, 'M', 252), +(3914, 'Jacob', 1891, 'M', 238), +(3915, 'Ed', 1891, 'M', 237), +(3916, 'Luther', 1891, 'M', 236), +(3917, 'Leonard', 1891, 'M', 235), +(3918, 'Hugh', 1891, 'M', 233), +(3919, 'Homer', 1891, 'M', 230), +(3920, 'Jessie', 1891, 'M', 227), +(3921, 'Theodore', 1891, 'M', 224), +(3922, 'Oliver', 1891, 'M', 212), +(3923, 'Patrick', 1891, 'M', 212), +(3924, 'Archie', 1891, 'M', 201), +(3925, 'Philip', 1891, 'M', 198), +(3926, 'Clifford', 1891, 'M', 196), +(3927, 'Charley', 1891, 'M', 193), +(3928, 'Lester', 1891, 'M', 191), +(3929, 'Leroy', 1891, 'M', 190), +(3930, 'Bernard', 1891, 'M', 187), +(3931, 'August', 1891, 'M', 186), +(3932, 'Russell', 1891, 'M', 186), +(3933, 'Lloyd', 1891, 'M', 185), +(3934, 'Bert', 1891, 'M', 181), +(3935, 'Eddie', 1891, 'M', 179), +(3936, 'Ira', 1891, 'M', 179), +(3937, 'Stanley', 1891, 'M', 178), +(3938, 'Everett', 1891, 'M', 174), +(3939, 'Allen', 1891, 'M', 173), +(3940, 'Alexander', 1891, 'M', 172), +(3941, 'Anthony', 1891, 'M', 170), +(3942, 'Horace', 1891, 'M', 165), +(3943, 'Leslie', 1891, 'M', 164), +(3944, 'Grover', 1891, 'M', 163), +(3945, 'Norman', 1891, 'M', 163), +(3946, 'Isaac', 1891, 'M', 160), +(3947, 'Julius', 1891, 'M', 155), +(3948, 'Victor', 1891, 'M', 154), +(3949, 'Leon', 1891, 'M', 150), +(3950, 'Milton', 1891, 'M', 141), +(3951, 'Stephen', 1891, 'M', 140), +(3952, 'Warren', 1891, 'M', 139), +(3953, 'Glenn', 1891, 'M', 138), +(3954, 'Alex', 1891, 'M', 133), +(3955, 'Emil', 1891, 'M', 133), +(3956, 'Percy', 1891, 'M', 131), +(3957, 'Mack', 1891, 'M', 127), +(3958, 'Dave', 1891, 'M', 124), +(3959, 'Virgil', 1891, 'M', 123), +(3960, 'Alvin', 1891, 'M', 121), +(3961, 'Marion', 1891, 'M', 121), +(3962, 'Willis', 1891, 'M', 118), +(3963, 'Lonnie', 1891, 'M', 117), +(3964, 'Maurice', 1891, 'M', 117), +(3965, 'Wesley', 1891, 'M', 115), +(3966, 'Earnest', 1891, 'M', 114), +(3967, 'Dan', 1891, 'M', 113), +(3968, 'Matthew', 1891, 'M', 113), +(3969, 'Sidney', 1891, 'M', 113), +(3970, 'Franklin', 1891, 'M', 109), +(3971, 'Cecil', 1891, 'M', 108), +(3972, 'Melvin', 1891, 'M', 108), +(3973, 'Jerry', 1891, 'M', 107), +(3974, 'Rufus', 1891, 'M', 107), +(3975, 'Harrison', 1891, 'M', 106), +(3976, 'Nathan', 1891, 'M', 106), +(3977, 'Amos', 1891, 'M', 104), +(3978, 'Calvin', 1891, 'M', 104), +(3979, 'Perry', 1891, 'M', 104), +(3980, 'Willard', 1891, 'M', 101), +(3981, 'Donald', 1891, 'M', 100), +(3982, 'Mary', 1892, 'F', 13173), +(3983, 'Anna', 1892, 'F', 5542), +(3984, 'Elizabeth', 1892, 'F', 3461), +(3985, 'Margaret', 1892, 'F', 3435), +(3986, 'Ruth', 1892, 'F', 3291), +(3987, 'Florence', 1892, 'F', 3154), +(3988, 'Emma', 1892, 'F', 3128), +(3989, 'Ethel', 1892, 'F', 3035), +(3990, 'Helen', 1892, 'F', 2936), +(3991, 'Clara', 1892, 'F', 2661), +(3992, 'Bertha', 1892, 'F', 2617), +(3993, 'Minnie', 1892, 'F', 2609), +(3994, 'Bessie', 1892, 'F', 2541), +(3995, 'Alice', 1892, 'F', 2373), +(3996, 'Annie', 1892, 'F', 2348), +(3997, 'Grace', 1892, 'F', 2299), +(3998, 'Ida', 1892, 'F', 2259), +(3999, 'Edna', 1892, 'F', 2218), +(4000, 'Mabel', 1892, 'F', 2170), +(4001, 'Lillian', 1892, 'F', 2154), +(4002, 'Marie', 1892, 'F', 2066), +(4003, 'Rose', 1892, 'F', 2023), +(4004, 'Gertrude', 1892, 'F', 1924), +(4005, 'Martha', 1892, 'F', 1915), +(4006, 'Hazel', 1892, 'F', 1897), +(4007, 'Pearl', 1892, 'F', 1831), +(4008, 'Ella', 1892, 'F', 1808), +(4009, 'Sarah', 1892, 'F', 1799), +(4010, 'Laura', 1892, 'F', 1744), +(4011, 'Nellie', 1892, 'F', 1738), +(4012, 'Frances', 1892, 'F', 1670), +(4013, 'Myrtle', 1892, 'F', 1666), +(4014, 'Edith', 1892, 'F', 1625), +(4015, 'Eva', 1892, 'F', 1611), +(4016, 'Carrie', 1892, 'F', 1588), +(4017, 'Lillie', 1892, 'F', 1503), +(4018, 'Elsie', 1892, 'F', 1489), +(4019, 'Louise', 1892, 'F', 1447), +(4020, 'Cora', 1892, 'F', 1419), +(4021, 'Hattie', 1892, 'F', 1363), +(4022, 'Julia', 1892, 'F', 1360), +(4023, 'Catherine', 1892, 'F', 1334), +(4024, 'Agnes', 1892, 'F', 1328), +(4025, 'Mattie', 1892, 'F', 1303), +(4026, 'Maude', 1892, 'F', 1270), +(4027, 'Jessie', 1892, 'F', 1246), +(4028, 'Lena', 1892, 'F', 1234), +(4029, 'Jennie', 1892, 'F', 1212), +(4030, 'Josephine', 1892, 'F', 1211), +(4031, 'Ada', 1892, 'F', 1134), +(4032, 'Irene', 1892, 'F', 1107), +(4033, 'Mae', 1892, 'F', 1101), +(4034, 'Lula', 1892, 'F', 1098), +(4035, 'Blanche', 1892, 'F', 1094), +(4036, 'Lucy', 1892, 'F', 1057), +(4037, 'Alma', 1892, 'F', 1056), +(4038, 'Fannie', 1892, 'F', 1031), +(4039, 'Mamie', 1892, 'F', 978), +(4040, 'Stella', 1892, 'F', 972), +(4041, 'Katherine', 1892, 'F', 961), +(4042, 'Dora', 1892, 'F', 960), +(4043, 'Mildred', 1892, 'F', 959), +(4044, 'Nora', 1892, 'F', 899), +(4045, 'Maggie', 1892, 'F', 883), +(4046, 'Gladys', 1892, 'F', 867), +(4047, 'Viola', 1892, 'F', 833), +(4048, 'Esther', 1892, 'F', 824), +(4049, 'Rosa', 1892, 'F', 796), +(4050, 'Ellen', 1892, 'F', 760), +(4051, 'May', 1892, 'F', 753), +(4052, 'Sadie', 1892, 'F', 724), +(4053, 'Effie', 1892, 'F', 721), +(4054, 'Nettie', 1892, 'F', 705), +(4055, 'Ruby', 1892, 'F', 695), +(4056, 'Susie', 1892, 'F', 669), +(4057, 'Della', 1892, 'F', 666), +(4058, 'Beulah', 1892, 'F', 638), +(4059, 'Willie', 1892, 'F', 631), +(4060, 'Dorothy', 1892, 'F', 626), +(4061, 'Lizzie', 1892, 'F', 597), +(4062, 'Nancy', 1892, 'F', 591), +(4063, 'Flora', 1892, 'F', 585), +(4064, 'Olive', 1892, 'F', 583), +(4065, 'Sallie', 1892, 'F', 582), +(4066, 'Daisy', 1892, 'F', 564), +(4067, 'Katie', 1892, 'F', 563), +(4068, 'Georgia', 1892, 'F', 552), +(4069, 'Kathryn', 1892, 'F', 549), +(4070, 'Lottie', 1892, 'F', 547), +(4071, 'Beatrice', 1892, 'F', 541), +(4072, 'Marguerite', 1892, 'F', 535), +(4073, 'Pauline', 1892, 'F', 526), +(4074, 'Lydia', 1892, 'F', 522), +(4075, 'Emily', 1892, 'F', 518), +(4076, 'Marion', 1892, 'F', 497), +(4077, 'Addie', 1892, 'F', 493), +(4078, 'Etta', 1892, 'F', 492), +(4079, 'Charlotte', 1892, 'F', 486), +(4080, 'Vera', 1892, 'F', 486), +(4081, 'Caroline', 1892, 'F', 476), +(4082, 'Virginia', 1892, 'F', 475), +(4083, 'Amanda', 1892, 'F', 455), +(4084, 'Ollie', 1892, 'F', 441), +(4085, 'Leona', 1892, 'F', 440), +(4086, 'Henrietta', 1892, 'F', 424), +(4087, 'Evelyn', 1892, 'F', 418), +(4088, 'Theresa', 1892, 'F', 417), +(4089, 'Mollie', 1892, 'F', 411), +(4090, 'Anne', 1892, 'F', 407), +(4091, 'Ora', 1892, 'F', 405), +(4092, 'Harriet', 1892, 'F', 402), +(4093, 'Maud', 1892, 'F', 402), +(4094, 'Jane', 1892, 'F', 396), +(4095, 'Iva', 1892, 'F', 394), +(4096, 'Ann', 1892, 'F', 393), +(4097, 'Eleanor', 1892, 'F', 390), +(4098, 'Lola', 1892, 'F', 388), +(4099, 'Amelia', 1892, 'F', 385), +(4100, 'Nannie', 1892, 'F', 385), +(4101, 'Lucille', 1892, 'F', 380), +(4102, 'Hilda', 1892, 'F', 370), +(4103, 'Rachel', 1892, 'F', 369), +(4104, 'Susan', 1892, 'F', 366), +(4105, 'Lela', 1892, 'F', 353), +(4106, 'Rebecca', 1892, 'F', 353), +(4107, 'Kate', 1892, 'F', 345), +(4108, 'Nina', 1892, 'F', 340), +(4109, 'Inez', 1892, 'F', 336), +(4110, 'Estella', 1892, 'F', 332), +(4111, 'Matilda', 1892, 'F', 332), +(4112, 'Amy', 1892, 'F', 331), +(4113, 'Hannah', 1892, 'F', 326), +(4114, 'Lulu', 1892, 'F', 325), +(4115, 'Flossie', 1892, 'F', 301), +(4116, 'Maria', 1892, 'F', 301), +(4117, 'Olga', 1892, 'F', 301), +(4118, 'Bernice', 1892, 'F', 299), +(4119, 'Eula', 1892, 'F', 297), +(4120, 'Goldie', 1892, 'F', 296), +(4121, 'Estelle', 1892, 'F', 295), +(4122, 'Essie', 1892, 'F', 294), +(4123, 'Eunice', 1892, 'F', 294), +(4124, 'Augusta', 1892, 'F', 290), +(4125, 'Eliza', 1892, 'F', 285), +(4126, 'Alta', 1892, 'F', 282), +(4127, 'Mable', 1892, 'F', 279), +(4128, 'Barbara', 1892, 'F', 278), +(4129, 'Sara', 1892, 'F', 276), +(4130, 'Sylvia', 1892, 'F', 275), +(4131, 'Belle', 1892, 'F', 265), +(4132, 'Frieda', 1892, 'F', 265), +(4133, 'Josie', 1892, 'F', 263), +(4134, 'Loretta', 1892, 'F', 263), +(4135, 'Ola', 1892, 'F', 259), +(4136, 'Betty', 1892, 'F', 255), +(4137, 'Rosie', 1892, 'F', 249), +(4138, 'Verna', 1892, 'F', 246), +(4139, 'Allie', 1892, 'F', 244), +(4140, 'Janie', 1892, 'F', 242), +(4141, 'Lois', 1892, 'F', 242), +(4142, 'Marjorie', 1892, 'F', 242), +(4143, 'Sophia', 1892, 'F', 241), +(4144, 'Violet', 1892, 'F', 238), +(4145, 'Genevieve', 1892, 'F', 236), +(4146, 'Freda', 1892, 'F', 229), +(4147, 'Victoria', 1892, 'F', 229), +(4148, 'Celia', 1892, 'F', 222), +(4149, 'Christine', 1892, 'F', 222), +(4150, 'Mayme', 1892, 'F', 222), +(4151, 'Winnie', 1892, 'F', 218), +(4152, 'Ina', 1892, 'F', 216), +(4153, 'Nell', 1892, 'F', 216), +(4154, 'Isabelle', 1892, 'F', 213), +(4155, 'Winifred', 1892, 'F', 213), +(4156, 'Selma', 1892, 'F', 209), +(4157, 'Luella', 1892, 'F', 207), +(4158, 'Delia', 1892, 'F', 203), +(4159, 'Sophie', 1892, 'F', 203), +(4160, 'Lucile', 1892, 'F', 201), +(4161, 'Tillie', 1892, 'F', 195), +(4162, 'Irma', 1892, 'F', 194), +(4163, 'Jean', 1892, 'F', 194), +(4164, 'Millie', 1892, 'F', 193), +(4165, 'Norma', 1892, 'F', 190), +(4166, 'Alberta', 1892, 'F', 189), +(4167, 'Callie', 1892, 'F', 189), +(4168, 'Elva', 1892, 'F', 181), +(4169, 'Rena', 1892, 'F', 181), +(4170, 'Leila', 1892, 'F', 178), +(4171, 'Bess', 1892, 'F', 177), +(4172, 'Cecelia', 1892, 'F', 175), +(4173, 'Fern', 1892, 'F', 172), +(4174, 'Lelia', 1892, 'F', 171), +(4175, 'Bertie', 1892, 'F', 169), +(4176, 'Marian', 1892, 'F', 164), +(4177, 'Leah', 1892, 'F', 163), +(4178, 'Sue', 1892, 'F', 163), +(4179, 'Erma', 1892, 'F', 160), +(4180, 'Sally', 1892, 'F', 160), +(4181, 'Isabel', 1892, 'F', 158), +(4182, 'Madeline', 1892, 'F', 158), +(4183, 'Bettie', 1892, 'F', 155), +(4184, 'Virgie', 1892, 'F', 155), +(4185, 'Birdie', 1892, 'F', 153), +(4186, 'Vivian', 1892, 'F', 152), +(4187, 'Gussie', 1892, 'F', 151), +(4188, 'Mathilda', 1892, 'F', 150), +(4189, 'Kathleen', 1892, 'F', 149), +(4190, 'Adeline', 1892, 'F', 148), +(4191, 'Roxie', 1892, 'F', 148), +(4192, 'Lila', 1892, 'F', 147), +(4193, 'Velma', 1892, 'F', 146), +(4194, 'Dollie', 1892, 'F', 144), +(4195, 'Naomi', 1892, 'F', 143), +(4196, 'Teresa', 1892, 'F', 143), +(4197, 'Elsa', 1892, 'F', 142), +(4198, 'Johanna', 1892, 'F', 141), +(4199, 'Lora', 1892, 'F', 140), +(4200, 'Louisa', 1892, 'F', 140), +(4201, 'Rhoda', 1892, 'F', 140), +(4202, 'Cecilia', 1892, 'F', 138), +(4203, 'Lou', 1892, 'F', 137), +(4204, 'Doris', 1892, 'F', 134), +(4205, 'Juanita', 1892, 'F', 133), +(4206, 'Nelle', 1892, 'F', 133), +(4207, 'Geneva', 1892, 'F', 131), +(4208, 'Jeanette', 1892, 'F', 129), +(4209, 'Gertie', 1892, 'F', 128), +(4210, 'Regina', 1892, 'F', 128), +(4211, 'Christina', 1892, 'F', 127), +(4212, 'Meta', 1892, 'F', 127), +(4213, 'Bonnie', 1892, 'F', 126), +(4214, 'Hulda', 1892, 'F', 126), +(4215, 'Helena', 1892, 'F', 124), +(4216, 'Adele', 1892, 'F', 123), +(4217, 'Cornelia', 1892, 'F', 123), +(4218, 'Hettie', 1892, 'F', 123), +(4219, 'Katharine', 1892, 'F', 123), +(4220, 'Carolyn', 1892, 'F', 122), +(4221, 'Hester', 1892, 'F', 122), +(4222, 'Jeannette', 1892, 'F', 122), +(4223, 'Leola', 1892, 'F', 122), +(4224, 'Lucinda', 1892, 'F', 122), +(4225, 'Lenora', 1892, 'F', 120), +(4226, 'Abbie', 1892, 'F', 119), +(4227, 'Maudie', 1892, 'F', 116), +(4228, 'Myra', 1892, 'F', 113), +(4229, 'Adelaide', 1892, 'F', 112), +(4230, 'Elma', 1892, 'F', 112), +(4231, 'Hallie', 1892, 'F', 112), +(4232, 'Veronica', 1892, 'F', 112), +(4233, 'Harriett', 1892, 'F', 111), +(4234, 'Wilhelmina', 1892, 'F', 110), +(4235, 'Lilly', 1892, 'F', 109), +(4236, 'Letha', 1892, 'F', 107), +(4237, 'Opal', 1892, 'F', 107), +(4238, 'Francis', 1892, 'F', 106), +(4239, 'Mina', 1892, 'F', 105), +(4240, 'Linnie', 1892, 'F', 104), +(4241, 'Madge', 1892, 'F', 104), +(4242, 'Mittie', 1892, 'F', 103), +(4243, 'Lettie', 1892, 'F', 102), +(4244, 'Zella', 1892, 'F', 102), +(4245, 'Olivia', 1892, 'F', 101), +(4246, 'Ophelia', 1892, 'F', 101), +(4247, 'John', 1892, 'M', 9039), +(4248, 'William', 1892, 'M', 7782), +(4249, 'James', 1892, 'M', 5398), +(4250, 'George', 1892, 'M', 4760), +(4251, 'Charles', 1892, 'M', 4319), +(4252, 'Frank', 1892, 'M', 3150), +(4253, 'Joseph', 1892, 'M', 3064), +(4254, 'Robert', 1892, 'M', 2711), +(4255, 'Harry', 1892, 'M', 2460), +(4256, 'Henry', 1892, 'M', 2452), +(4257, 'Edward', 1892, 'M', 2416), +(4258, 'Thomas', 1892, 'M', 2413), +(4259, 'Walter', 1892, 'M', 2229), +(4260, 'Arthur', 1892, 'M', 1768), +(4261, 'Fred', 1892, 'M', 1628), +(4262, 'Albert', 1892, 'M', 1500), +(4263, 'Clarence', 1892, 'M', 1276), +(4264, 'Roy', 1892, 'M', 1048), +(4265, 'Willie', 1892, 'M', 948), +(4266, 'Samuel', 1892, 'M', 902), +(4267, 'Earl', 1892, 'M', 888), +(4268, 'Louis', 1892, 'M', 865), +(4269, 'Joe', 1892, 'M', 819), +(4270, 'David', 1892, 'M', 813), +(4271, 'Carl', 1892, 'M', 808), +(4272, 'Ernest', 1892, 'M', 805), +(4273, 'Richard', 1892, 'M', 802), +(4274, 'Charlie', 1892, 'M', 761), +(4275, 'Paul', 1892, 'M', 747), +(4276, 'Ralph', 1892, 'M', 725), +(4277, 'Raymond', 1892, 'M', 681), +(4278, 'Andrew', 1892, 'M', 637), +(4279, 'Oscar', 1892, 'M', 634), +(4280, 'Will', 1892, 'M', 607), +(4281, 'Jesse', 1892, 'M', 602), +(4282, 'Elmer', 1892, 'M', 592), +(4283, 'Harold', 1892, 'M', 583), +(4284, 'Sam', 1892, 'M', 551), +(4285, 'Howard', 1892, 'M', 548), +(4286, 'Alfred', 1892, 'M', 542), +(4287, 'Daniel', 1892, 'M', 533), +(4288, 'Benjamin', 1892, 'M', 525), +(4289, 'Herbert', 1892, 'M', 513), +(4290, 'Lawrence', 1892, 'M', 468), +(4291, 'Peter', 1892, 'M', 465), +(4292, 'Lee', 1892, 'M', 460), +(4293, 'Grover', 1892, 'M', 454), +(4294, 'Frederick', 1892, 'M', 453), +(4295, 'Leo', 1892, 'M', 444), +(4296, 'Francis', 1892, 'M', 429), +(4297, 'Herman', 1892, 'M', 421), +(4298, 'Floyd', 1892, 'M', 420), +(4299, 'Eugene', 1892, 'M', 414), +(4300, 'Jack', 1892, 'M', 401), +(4301, 'Lewis', 1892, 'M', 399), +(4302, 'Clyde', 1892, 'M', 390), +(4303, 'Ray', 1892, 'M', 385), +(4304, 'Tom', 1892, 'M', 381), +(4305, 'Michael', 1892, 'M', 380), +(4306, 'Ben', 1892, 'M', 361), +(4307, 'Martin', 1892, 'M', 359), +(4308, 'Claude', 1892, 'M', 353), +(4309, 'Edwin', 1892, 'M', 338), +(4310, 'Jim', 1892, 'M', 334), +(4311, 'Guy', 1892, 'M', 315), +(4312, 'Ed', 1892, 'M', 306), +(4313, 'Edgar', 1892, 'M', 303), +(4314, 'Homer', 1892, 'M', 301), +(4315, 'Harvey', 1892, 'M', 298), +(4316, 'Luther', 1892, 'M', 295), +(4317, 'Leonard', 1892, 'M', 294), +(4318, 'Chester', 1892, 'M', 285), +(4319, 'Jacob', 1892, 'M', 283), +(4320, 'Otto', 1892, 'M', 275), +(4321, 'Russell', 1892, 'M', 269), +(4322, 'Lloyd', 1892, 'M', 268), +(4323, 'Hugh', 1892, 'M', 265), +(4324, 'Anthony', 1892, 'M', 255), +(4325, 'Jessie', 1892, 'M', 251), +(4326, 'Clifford', 1892, 'M', 240), +(4327, 'Lester', 1892, 'M', 240), +(4328, 'Philip', 1892, 'M', 239), +(4329, 'Theodore', 1892, 'M', 239), +(4330, 'Oliver', 1892, 'M', 238), +(4331, 'Bernard', 1892, 'M', 237), +(4332, 'Patrick', 1892, 'M', 234), +(4333, 'Leroy', 1892, 'M', 233), +(4334, 'Ira', 1892, 'M', 231), +(4335, 'Allen', 1892, 'M', 224), +(4336, 'Eddie', 1892, 'M', 218), +(4337, 'Archie', 1892, 'M', 214), +(4338, 'Charley', 1892, 'M', 210), +(4339, 'Leslie', 1892, 'M', 207), +(4340, 'Isaac', 1892, 'M', 203), +(4341, 'Alexander', 1892, 'M', 202), +(4342, 'Bert', 1892, 'M', 200), +(4343, 'Victor', 1892, 'M', 200), +(4344, 'Norman', 1892, 'M', 191), +(4345, 'Julius', 1892, 'M', 190), +(4346, 'Horace', 1892, 'M', 187), +(4347, 'Leon', 1892, 'M', 187), +(4348, 'August', 1892, 'M', 181), +(4349, 'Stanley', 1892, 'M', 181), +(4350, 'Stephen', 1892, 'M', 178), +(4351, 'Everett', 1892, 'M', 176), +(4352, 'Sidney', 1892, 'M', 174), +(4353, 'Milton', 1892, 'M', 173), +(4354, 'Marion', 1892, 'M', 166), +(4355, 'Alvin', 1892, 'M', 164), +(4356, 'Alex', 1892, 'M', 163), +(4357, 'Harrison', 1892, 'M', 158), +(4358, 'Emil', 1892, 'M', 157), +(4359, 'Warren', 1892, 'M', 157), +(4360, 'Dan', 1892, 'M', 156), +(4361, 'Cecil', 1892, 'M', 151), +(4362, 'Earnest', 1892, 'M', 149), +(4363, 'Percy', 1892, 'M', 149), +(4364, 'Nathan', 1892, 'M', 144), +(4365, 'Willis', 1892, 'M', 143), +(4366, 'Wesley', 1892, 'M', 142), +(4367, 'Glenn', 1892, 'M', 139), +(4368, 'Dave', 1892, 'M', 138), +(4369, 'Donald', 1892, 'M', 137), +(4370, 'Maurice', 1892, 'M', 137), +(4371, 'Rufus', 1892, 'M', 137), +(4372, 'Morris', 1892, 'M', 136), +(4373, 'Mack', 1892, 'M', 135), +(4374, 'Matthew', 1892, 'M', 132), +(4375, 'Virgil', 1892, 'M', 130), +(4376, 'Otis', 1892, 'M', 126), +(4377, 'Calvin', 1892, 'M', 124), +(4378, 'Willard', 1892, 'M', 121), +(4379, 'Gilbert', 1892, 'M', 120), +(4380, 'Lonnie', 1892, 'M', 120), +(4381, 'Wallace', 1892, 'M', 119), +(4382, 'Amos', 1892, 'M', 117), +(4383, 'Emmett', 1892, 'M', 117), +(4384, 'Gus', 1892, 'M', 117), +(4385, 'Jerry', 1892, 'M', 117), +(4386, 'Jake', 1892, 'M', 116), +(4387, 'Wilbur', 1892, 'M', 116), +(4388, 'Adolph', 1892, 'M', 115), +(4389, 'Ollie', 1892, 'M', 115), +(4390, 'Melvin', 1892, 'M', 114), +(4391, 'Jay', 1892, 'M', 111), +(4392, 'Perry', 1892, 'M', 110), +(4393, 'Franklin', 1892, 'M', 109), +(4394, 'Jess', 1892, 'M', 108), +(4395, 'Vernon', 1892, 'M', 108), +(4396, 'Johnnie', 1892, 'M', 107), +(4397, 'Adam', 1892, 'M', 106), +(4398, 'Glen', 1892, 'M', 106), +(4399, 'Jose', 1892, 'M', 106), +(4400, 'Alonzo', 1892, 'M', 104), +(4401, 'Phillip', 1892, 'M', 104), +(4402, 'Cornelius', 1892, 'M', 103), +(4403, 'Kenneth', 1892, 'M', 102), +(4404, 'Owen', 1892, 'M', 102), +(4405, 'Christopher', 1892, 'M', 100), +(4406, 'Mary', 1893, 'F', 12784), +(4407, 'Anna', 1893, 'F', 5695), +(4408, 'Ruth', 1893, 'F', 3658), +(4409, 'Margaret', 1893, 'F', 3565), +(4410, 'Elizabeth', 1893, 'F', 3360), +(4411, 'Helen', 1893, 'F', 3249), +(4412, 'Florence', 1893, 'F', 3231), +(4413, 'Ethel', 1893, 'F', 3119), +(4414, 'Emma', 1893, 'F', 2968), +(4415, 'Bertha', 1893, 'F', 2623), +(4416, 'Clara', 1893, 'F', 2532), +(4417, 'Minnie', 1893, 'F', 2510), +(4418, 'Alice', 1893, 'F', 2434), +(4419, 'Edna', 1893, 'F', 2378), +(4420, 'Bessie', 1893, 'F', 2352), +(4421, 'Grace', 1893, 'F', 2308), +(4422, 'Annie', 1893, 'F', 2251), +(4423, 'Ida', 1893, 'F', 2247), +(4424, 'Marie', 1893, 'F', 2212), +(4425, 'Lillian', 1893, 'F', 2193), +(4426, 'Mabel', 1893, 'F', 2191), +(4427, 'Hazel', 1893, 'F', 2052), +(4428, 'Rose', 1893, 'F', 2012), +(4429, 'Gertrude', 1893, 'F', 1811), +(4430, 'Martha', 1893, 'F', 1805), +(4431, 'Pearl', 1893, 'F', 1796), +(4432, 'Nellie', 1893, 'F', 1770), +(4433, 'Ella', 1893, 'F', 1760), +(4434, 'Myrtle', 1893, 'F', 1759), +(4435, 'Edith', 1893, 'F', 1733), +(4436, 'Laura', 1893, 'F', 1683), +(4437, 'Eva', 1893, 'F', 1668), +(4438, 'Sarah', 1893, 'F', 1632), +(4439, 'Frances', 1893, 'F', 1622), +(4440, 'Elsie', 1893, 'F', 1586), +(4441, 'Carrie', 1893, 'F', 1451), +(4442, 'Louise', 1893, 'F', 1447), +(4443, 'Agnes', 1893, 'F', 1393), +(4444, 'Esther', 1893, 'F', 1382), +(4445, 'Julia', 1893, 'F', 1367), +(4446, 'Lillie', 1893, 'F', 1351), +(4447, 'Catherine', 1893, 'F', 1335), +(4448, 'Hattie', 1893, 'F', 1315), +(4449, 'Cora', 1893, 'F', 1308), +(4450, 'Jennie', 1893, 'F', 1273), +(4451, 'Lena', 1893, 'F', 1261), +(4452, 'Mattie', 1893, 'F', 1257), +(4453, 'Jessie', 1893, 'F', 1216), +(4454, 'Maude', 1893, 'F', 1202), +(4455, 'Josephine', 1893, 'F', 1178), +(4456, 'Irene', 1893, 'F', 1111), +(4457, 'Blanche', 1893, 'F', 1075), +(4458, 'Mae', 1893, 'F', 1071), +(4459, 'Alma', 1893, 'F', 1055), +(4460, 'Ada', 1893, 'F', 1051), +(4461, 'Lucy', 1893, 'F', 1036), +(4462, 'Lula', 1893, 'F', 1034), +(4463, 'Gladys', 1893, 'F', 1017), +(4464, 'Mamie', 1893, 'F', 1011), +(4465, 'Mildred', 1893, 'F', 1008), +(4466, 'Fannie', 1893, 'F', 1003), +(4467, 'Katherine', 1893, 'F', 963), +(4468, 'Stella', 1893, 'F', 926), +(4469, 'Maggie', 1893, 'F', 886), +(4470, 'Dora', 1893, 'F', 877), +(4471, 'Viola', 1893, 'F', 839), +(4472, 'Nora', 1893, 'F', 825), +(4473, 'Dorothy', 1893, 'F', 821), +(4474, 'Ellen', 1893, 'F', 798), +(4475, 'Rosa', 1893, 'F', 790), +(4476, 'Ruby', 1893, 'F', 769), +(4477, 'Sadie', 1893, 'F', 706), +(4478, 'May', 1893, 'F', 693), +(4479, 'Effie', 1893, 'F', 674), +(4480, 'Nettie', 1893, 'F', 668), +(4481, 'Della', 1893, 'F', 660), +(4482, 'Willie', 1893, 'F', 648), +(4483, 'Susie', 1893, 'F', 644), +(4484, 'Marguerite', 1893, 'F', 638), +(4485, 'Beulah', 1893, 'F', 622), +(4486, 'Lydia', 1893, 'F', 598), +(4487, 'Olive', 1893, 'F', 589), +(4488, 'Lizzie', 1893, 'F', 584), +(4489, 'Daisy', 1893, 'F', 573), +(4490, 'Beatrice', 1893, 'F', 564), +(4491, 'Pauline', 1893, 'F', 545), +(4492, 'Georgia', 1893, 'F', 541), +(4493, 'Nancy', 1893, 'F', 538), +(4494, 'Flora', 1893, 'F', 537), +(4495, 'Kathryn', 1893, 'F', 534), +(4496, 'Vera', 1893, 'F', 534), +(4497, 'Lottie', 1893, 'F', 532), +(4498, 'Marion', 1893, 'F', 532), +(4499, 'Sallie', 1893, 'F', 516), +(4500, 'Emily', 1893, 'F', 506), +(4501, 'Katie', 1893, 'F', 504), +(4502, 'Virginia', 1893, 'F', 498), +(4503, 'Etta', 1893, 'F', 486), +(4504, 'Caroline', 1893, 'F', 483), +(4505, 'Charlotte', 1893, 'F', 476), +(4506, 'Theresa', 1893, 'F', 469), +(4507, 'Leona', 1893, 'F', 463), +(4508, 'Ollie', 1893, 'F', 459), +(4509, 'Evelyn', 1893, 'F', 457), +(4510, 'Harriet', 1893, 'F', 428), +(4511, 'Addie', 1893, 'F', 416), +(4512, 'Hilda', 1893, 'F', 410), +(4513, 'Henrietta', 1893, 'F', 409), +(4514, 'Anne', 1893, 'F', 400), +(4515, 'Ann', 1893, 'F', 397), +(4516, 'Eleanor', 1893, 'F', 397), +(4517, 'Nannie', 1893, 'F', 392), +(4518, 'Amanda', 1893, 'F', 387), +(4519, 'Amelia', 1893, 'F', 385), +(4520, 'Lola', 1893, 'F', 385), +(4521, 'Iva', 1893, 'F', 384), +(4522, 'Lucille', 1893, 'F', 368), +(4523, 'Mollie', 1893, 'F', 367), +(4524, 'Maud', 1893, 'F', 366), +(4525, 'Lela', 1893, 'F', 358), +(4526, 'Rebecca', 1893, 'F', 358), +(4527, 'Susan', 1893, 'F', 356), +(4528, 'Jane', 1893, 'F', 354), +(4529, 'Ora', 1893, 'F', 350), +(4530, 'Bernice', 1893, 'F', 340), +(4531, 'Estelle', 1893, 'F', 335), +(4532, 'Eula', 1893, 'F', 332), +(4533, 'Nina', 1893, 'F', 330), +(4534, 'Estella', 1893, 'F', 329), +(4535, 'Matilda', 1893, 'F', 328), +(4536, 'Inez', 1893, 'F', 325), +(4537, 'Kate', 1893, 'F', 323), +(4538, 'Loretta', 1893, 'F', 323), +(4539, 'Rachel', 1893, 'F', 321), +(4540, 'Eunice', 1893, 'F', 310), +(4541, 'Hannah', 1893, 'F', 304), +(4542, 'Lulu', 1893, 'F', 304), +(4543, 'Goldie', 1893, 'F', 301), +(4544, 'Betty', 1893, 'F', 298), +(4545, 'Flossie', 1893, 'F', 296), +(4546, 'Mable', 1893, 'F', 294), +(4547, 'Verna', 1893, 'F', 292), +(4548, 'Sara', 1893, 'F', 290), +(4549, 'Sylvia', 1893, 'F', 286), +(4550, 'Belle', 1893, 'F', 284), +(4551, 'Amy', 1893, 'F', 281), +(4552, 'Alta', 1893, 'F', 274), +(4553, 'Eliza', 1893, 'F', 272), +(4554, 'Ola', 1893, 'F', 264), +(4555, 'Olga', 1893, 'F', 262), +(4556, 'Augusta', 1893, 'F', 260), +(4557, 'Lois', 1893, 'F', 260), +(4558, 'Essie', 1893, 'F', 258), +(4559, 'Frieda', 1893, 'F', 256), +(4560, 'Barbara', 1893, 'F', 255), +(4561, 'Maria', 1893, 'F', 255), +(4562, 'Violet', 1893, 'F', 254), +(4563, 'Ina', 1893, 'F', 248), +(4564, 'Sophia', 1893, 'F', 247), +(4565, 'Christine', 1893, 'F', 245), +(4566, 'Genevieve', 1893, 'F', 243), +(4567, 'Rosie', 1893, 'F', 242), +(4568, 'Sophie', 1893, 'F', 235), +(4569, 'Josie', 1893, 'F', 233), +(4570, 'Marjorie', 1893, 'F', 233), +(4571, 'Winifred', 1893, 'F', 232), +(4572, 'Freda', 1893, 'F', 231), +(4573, 'Victoria', 1893, 'F', 223), +(4574, 'Celia', 1893, 'F', 219), +(4575, 'Irma', 1893, 'F', 215), +(4576, 'Jean', 1893, 'F', 215), +(4577, 'Mayme', 1893, 'F', 215), +(4578, 'Allie', 1893, 'F', 214), +(4579, 'Winnie', 1893, 'F', 214), +(4580, 'Janie', 1893, 'F', 211), +(4581, 'Selma', 1893, 'F', 211), +(4582, 'Isabelle', 1893, 'F', 205), +(4583, 'Tillie', 1893, 'F', 202), +(4584, 'Luella', 1893, 'F', 199), +(4585, 'Millie', 1893, 'F', 198), +(4586, 'Callie', 1893, 'F', 194), +(4587, 'Delia', 1893, 'F', 194), +(4588, 'Lucile', 1893, 'F', 194), +(4589, 'Madeline', 1893, 'F', 190), +(4590, 'Fern', 1893, 'F', 189), +(4591, 'Isabel', 1893, 'F', 189), +(4592, 'Norma', 1893, 'F', 189), +(4593, 'Nell', 1893, 'F', 187), +(4594, 'Naomi', 1893, 'F', 186), +(4595, 'Rena', 1893, 'F', 186), +(4596, 'Vivian', 1893, 'F', 185), +(4597, 'Cecelia', 1893, 'F', 182), +(4598, 'Virgie', 1893, 'F', 180), +(4599, 'Alberta', 1893, 'F', 179), +(4600, 'Leila', 1893, 'F', 173), +(4601, 'Kathleen', 1893, 'F', 170), +(4602, 'Bess', 1893, 'F', 169), +(4603, 'Bertie', 1893, 'F', 167), +(4604, 'Leah', 1893, 'F', 167), +(4605, 'Lila', 1893, 'F', 167), +(4606, 'Elva', 1893, 'F', 156), +(4607, 'Velma', 1893, 'F', 156), +(4608, 'Erma', 1893, 'F', 155), +(4609, 'Hester', 1893, 'F', 155), +(4610, 'Johanna', 1893, 'F', 155), +(4611, 'Dollie', 1893, 'F', 152), +(4612, 'Geneva', 1893, 'F', 152), +(4613, 'Birdie', 1893, 'F', 149), +(4614, 'Cornelia', 1893, 'F', 148), +(4615, 'Mathilda', 1893, 'F', 148), +(4616, 'Carolyn', 1893, 'F', 146), +(4617, 'Lora', 1893, 'F', 146), +(4618, 'Hallie', 1893, 'F', 145), +(4619, 'Adelaide', 1893, 'F', 144), +(4620, 'Adele', 1893, 'F', 144), +(4621, 'Jeanette', 1893, 'F', 142), +(4622, 'Adeline', 1893, 'F', 141), +(4623, 'Marian', 1893, 'F', 140), +(4624, 'Christina', 1893, 'F', 139), +(4625, 'Jeannette', 1893, 'F', 139), +(4626, 'Gussie', 1893, 'F', 138), +(4627, 'Hulda', 1893, 'F', 137), +(4628, 'Lou', 1893, 'F', 137), +(4629, 'Rhoda', 1893, 'F', 136), +(4630, 'Doris', 1893, 'F', 134), +(4631, 'Sally', 1893, 'F', 134), +(4632, 'Hettie', 1893, 'F', 133), +(4633, 'Lelia', 1893, 'F', 133), +(4634, 'Teresa', 1893, 'F', 132), +(4635, 'Bettie', 1893, 'F', 129), +(4636, 'Elma', 1893, 'F', 129), +(4637, 'Louisa', 1893, 'F', 129), +(4638, 'Katharine', 1893, 'F', 128), +(4639, 'Roxie', 1893, 'F', 127), +(4640, 'Cecilia', 1893, 'F', 126), +(4641, 'Opal', 1893, 'F', 123), +(4642, 'Sue', 1893, 'F', 123), +(4643, 'Cleo', 1893, 'F', 122), +(4644, 'Bonnie', 1893, 'F', 120), +(4645, 'Nelle', 1893, 'F', 120), +(4646, 'Anita', 1893, 'F', 119), +(4647, 'Harriett', 1893, 'F', 119), +(4648, 'Wilhelmina', 1893, 'F', 119), +(4649, 'Meta', 1893, 'F', 118), +(4650, 'Myra', 1893, 'F', 117), +(4651, 'Neva', 1893, 'F', 116), +(4652, 'Abbie', 1893, 'F', 115), +(4653, 'Lilly', 1893, 'F', 114), +(4654, 'Regina', 1893, 'F', 114), +(4655, 'Cecil', 1893, 'F', 112), +(4656, 'Dessie', 1893, 'F', 109), +(4657, 'Isabella', 1893, 'F', 109), +(4658, 'Zella', 1893, 'F', 109), +(4659, 'Juanita', 1893, 'F', 108), +(4660, 'Miriam', 1893, 'F', 108), +(4661, 'Faye', 1893, 'F', 107), +(4662, 'Francis', 1893, 'F', 107), +(4663, 'Leola', 1893, 'F', 107), +(4664, 'Olivia', 1893, 'F', 107), +(4665, 'Letha', 1893, 'F', 106), +(4666, 'Margie', 1893, 'F', 106), +(4667, 'Madge', 1893, 'F', 105), +(4668, 'Mina', 1893, 'F', 105), +(4669, 'Elsa', 1893, 'F', 104), +(4670, 'Lura', 1893, 'F', 103), +(4671, 'Gertie', 1893, 'F', 102), +(4672, 'Veronica', 1893, 'F', 102), +(4673, 'Linnie', 1893, 'F', 100), +(4674, 'John', 1893, 'M', 8049), +(4675, 'William', 1893, 'M', 7223), +(4676, 'James', 1893, 'M', 5028), +(4677, 'George', 1893, 'M', 4320), +(4678, 'Charles', 1893, 'M', 3723), +(4679, 'Joseph', 1893, 'M', 2997), +(4680, 'Frank', 1893, 'M', 2917), +(4681, 'Robert', 1893, 'M', 2563), +(4682, 'Edward', 1893, 'M', 2309), +(4683, 'Harry', 1893, 'M', 2245), +(4684, 'Henry', 1893, 'M', 2162), +(4685, 'Thomas', 1893, 'M', 2157), +(4686, 'Walter', 1893, 'M', 2004), +(4687, 'Arthur', 1893, 'M', 1635), +(4688, 'Fred', 1893, 'M', 1493), +(4689, 'Albert', 1893, 'M', 1353), +(4690, 'Clarence', 1893, 'M', 1169), +(4691, 'Roy', 1893, 'M', 920), +(4692, 'Willie', 1893, 'M', 882), +(4693, 'Samuel', 1893, 'M', 851), +(4694, 'Earl', 1893, 'M', 819), +(4695, 'Louis', 1893, 'M', 816), +(4696, 'Ernest', 1893, 'M', 796), +(4697, 'Carl', 1893, 'M', 786), +(4698, 'Paul', 1893, 'M', 743), +(4699, 'Richard', 1893, 'M', 732), +(4700, 'David', 1893, 'M', 724), +(4701, 'Joe', 1893, 'M', 721), +(4702, 'Raymond', 1893, 'M', 703), +(4703, 'Charlie', 1893, 'M', 691), +(4704, 'Ralph', 1893, 'M', 636), +(4705, 'Elmer', 1893, 'M', 574), +(4706, 'Oscar', 1893, 'M', 574), +(4707, 'Harold', 1893, 'M', 566), +(4708, 'Howard', 1893, 'M', 556), +(4709, 'Jesse', 1893, 'M', 541), +(4710, 'Will', 1893, 'M', 538), +(4711, 'Alfred', 1893, 'M', 530), +(4712, 'Daniel', 1893, 'M', 522), +(4713, 'Andrew', 1893, 'M', 520), +(4714, 'Herbert', 1893, 'M', 519), +(4715, 'Benjamin', 1893, 'M', 481), +(4716, 'Sam', 1893, 'M', 481), +(4717, 'Herman', 1893, 'M', 455), +(4718, 'Leo', 1893, 'M', 448), +(4719, 'Lee', 1893, 'M', 445), +(4720, 'Frederick', 1893, 'M', 432), +(4721, 'Francis', 1893, 'M', 418), +(4722, 'Michael', 1893, 'M', 407), +(4723, 'Jack', 1893, 'M', 406), +(4724, 'Lawrence', 1893, 'M', 395), +(4725, 'Claude', 1893, 'M', 394), +(4726, 'Eugene', 1893, 'M', 392), +(4727, 'Peter', 1893, 'M', 392), +(4728, 'Clyde', 1893, 'M', 391), +(4729, 'Ray', 1893, 'M', 378), +(4730, 'Lewis', 1893, 'M', 364), +(4731, 'Edwin', 1893, 'M', 354), +(4732, 'Floyd', 1893, 'M', 351), +(4733, 'Tom', 1893, 'M', 349), +(4734, 'Martin', 1893, 'M', 347), +(4735, 'Ben', 1893, 'M', 321), +(4736, 'Edgar', 1893, 'M', 310), +(4737, 'Homer', 1893, 'M', 293), +(4738, 'Jacob', 1893, 'M', 292), +(4739, 'Chester', 1893, 'M', 291), +(4740, 'Grover', 1893, 'M', 289), +(4741, 'Harvey', 1893, 'M', 284), +(4742, 'Leonard', 1893, 'M', 275), +(4743, 'Luther', 1893, 'M', 271), +(4744, 'Clifford', 1893, 'M', 269), +(4745, 'Guy', 1893, 'M', 267), +(4746, 'Otto', 1893, 'M', 257), +(4747, 'Jim', 1893, 'M', 255), +(4748, 'Russell', 1893, 'M', 246), +(4749, 'Leroy', 1893, 'M', 244), +(4750, 'Lester', 1893, 'M', 243), +(4751, 'Hugh', 1893, 'M', 241), +(4752, 'Patrick', 1893, 'M', 234), +(4753, 'Ed', 1893, 'M', 225), +(4754, 'Anthony', 1893, 'M', 220), +(4755, 'Eddie', 1893, 'M', 220), +(4756, 'Alexander', 1893, 'M', 218), +(4757, 'Bernard', 1893, 'M', 217), +(4758, 'Jessie', 1893, 'M', 214), +(4759, 'Oliver', 1893, 'M', 214), +(4760, 'Stanley', 1893, 'M', 212), +(4761, 'Leon', 1893, 'M', 211); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(4762, 'Lloyd', 1893, 'M', 211), +(4763, 'Theodore', 1893, 'M', 209), +(4764, 'Philip', 1893, 'M', 208), +(4765, 'Julius', 1893, 'M', 195), +(4766, 'Archie', 1893, 'M', 194), +(4767, 'Charley', 1893, 'M', 191), +(4768, 'Leslie', 1893, 'M', 185), +(4769, 'Bert', 1893, 'M', 184), +(4770, 'Isaac', 1893, 'M', 182), +(4771, 'Ira', 1893, 'M', 181), +(4772, 'Allen', 1893, 'M', 180), +(4773, 'Percy', 1893, 'M', 177), +(4774, 'Stephen', 1893, 'M', 175), +(4775, 'Milton', 1893, 'M', 174), +(4776, 'Victor', 1893, 'M', 172), +(4777, 'Horace', 1893, 'M', 171), +(4778, 'Donald', 1893, 'M', 166), +(4779, 'Norman', 1893, 'M', 166), +(4780, 'Alvin', 1893, 'M', 163), +(4781, 'Sidney', 1893, 'M', 163), +(4782, 'Everett', 1893, 'M', 160), +(4783, 'Emil', 1893, 'M', 159), +(4784, 'August', 1893, 'M', 155), +(4785, 'Maurice', 1893, 'M', 149), +(4786, 'Willis', 1893, 'M', 149), +(4787, 'Cecil', 1893, 'M', 147), +(4788, 'Dan', 1893, 'M', 143), +(4789, 'Warren', 1893, 'M', 140), +(4790, 'Marion', 1893, 'M', 139), +(4791, 'Rufus', 1893, 'M', 139), +(4792, 'Wesley', 1893, 'M', 136), +(4793, 'Alex', 1893, 'M', 133), +(4794, 'Earnest', 1893, 'M', 132), +(4795, 'Glenn', 1893, 'M', 131), +(4796, 'Otis', 1893, 'M', 124), +(4797, 'Gilbert', 1893, 'M', 122), +(4798, 'Harrison', 1893, 'M', 120), +(4799, 'Adolph', 1893, 'M', 119), +(4800, 'Virgil', 1893, 'M', 119), +(4801, 'Jerry', 1893, 'M', 118), +(4802, 'Willard', 1893, 'M', 118), +(4803, 'Mack', 1893, 'M', 115), +(4804, 'Lonnie', 1893, 'M', 114), +(4805, 'Nathan', 1893, 'M', 114), +(4806, 'Wallace', 1893, 'M', 114), +(4807, 'Dave', 1893, 'M', 113), +(4808, 'Morris', 1893, 'M', 113), +(4809, 'Vernon', 1893, 'M', 112), +(4810, 'Melvin', 1893, 'M', 111), +(4811, 'Matthew', 1893, 'M', 108), +(4812, 'Hubert', 1893, 'M', 107), +(4813, 'Jess', 1893, 'M', 107), +(4814, 'Max', 1893, 'M', 107), +(4815, 'Amos', 1893, 'M', 105), +(4816, 'Jay', 1893, 'M', 105), +(4817, 'Wilbur', 1893, 'M', 104), +(4818, 'Abraham', 1893, 'M', 103), +(4819, 'Calvin', 1893, 'M', 103), +(4820, 'Emmett', 1893, 'M', 103), +(4821, 'Marvin', 1893, 'M', 102), +(4822, 'Rudolph', 1893, 'M', 101), +(4823, 'Mary', 1894, 'F', 13151), +(4824, 'Anna', 1894, 'F', 5565), +(4825, 'Margaret', 1894, 'F', 3701), +(4826, 'Helen', 1894, 'F', 3676), +(4827, 'Elizabeth', 1894, 'F', 3425), +(4828, 'Ruth', 1894, 'F', 3372), +(4829, 'Ethel', 1894, 'F', 3287), +(4830, 'Florence', 1894, 'F', 3233), +(4831, 'Emma', 1894, 'F', 2937), +(4832, 'Marie', 1894, 'F', 2649), +(4833, 'Clara', 1894, 'F', 2603), +(4834, 'Minnie', 1894, 'F', 2592), +(4835, 'Bessie', 1894, 'F', 2520), +(4836, 'Bertha', 1894, 'F', 2496), +(4837, 'Edna', 1894, 'F', 2458), +(4838, 'Lillian', 1894, 'F', 2441), +(4839, 'Alice', 1894, 'F', 2414), +(4840, 'Annie', 1894, 'F', 2393), +(4841, 'Grace', 1894, 'F', 2361), +(4842, 'Mabel', 1894, 'F', 2221), +(4843, 'Ida', 1894, 'F', 2195), +(4844, 'Rose', 1894, 'F', 2126), +(4845, 'Hazel', 1894, 'F', 2103), +(4846, 'Martha', 1894, 'F', 1968), +(4847, 'Gertrude', 1894, 'F', 1908), +(4848, 'Edith', 1894, 'F', 1820), +(4849, 'Myrtle', 1894, 'F', 1818), +(4850, 'Pearl', 1894, 'F', 1789), +(4851, 'Frances', 1894, 'F', 1776), +(4852, 'Nellie', 1894, 'F', 1767), +(4853, 'Ella', 1894, 'F', 1761), +(4854, 'Laura', 1894, 'F', 1730), +(4855, 'Elsie', 1894, 'F', 1716), +(4856, 'Sarah', 1894, 'F', 1701), +(4857, 'Eva', 1894, 'F', 1673), +(4858, 'Esther', 1894, 'F', 1654), +(4859, 'Louise', 1894, 'F', 1571), +(4860, 'Agnes', 1894, 'F', 1470), +(4861, 'Carrie', 1894, 'F', 1452), +(4862, 'Lillie', 1894, 'F', 1432), +(4863, 'Catherine', 1894, 'F', 1430), +(4864, 'Lena', 1894, 'F', 1360), +(4865, 'Irene', 1894, 'F', 1347), +(4866, 'Hattie', 1894, 'F', 1325), +(4867, 'Julia', 1894, 'F', 1320), +(4868, 'Cora', 1894, 'F', 1319), +(4869, 'Gladys', 1894, 'F', 1258), +(4870, 'Josephine', 1894, 'F', 1256), +(4871, 'Mattie', 1894, 'F', 1238), +(4872, 'Mildred', 1894, 'F', 1220), +(4873, 'Jennie', 1894, 'F', 1210), +(4874, 'Alma', 1894, 'F', 1177), +(4875, 'Maude', 1894, 'F', 1144), +(4876, 'Mae', 1894, 'F', 1134), +(4877, 'Jessie', 1894, 'F', 1120), +(4878, 'Blanche', 1894, 'F', 1091), +(4879, 'Lucy', 1894, 'F', 1077), +(4880, 'Dorothy', 1894, 'F', 1052), +(4881, 'Mamie', 1894, 'F', 1043), +(4882, 'Lula', 1894, 'F', 1042), +(4883, 'Stella', 1894, 'F', 1035), +(4884, 'Ada', 1894, 'F', 1018), +(4885, 'Fannie', 1894, 'F', 1003), +(4886, 'Katherine', 1894, 'F', 948), +(4887, 'Viola', 1894, 'F', 906), +(4888, 'Maggie', 1894, 'F', 895), +(4889, 'Ruby', 1894, 'F', 874), +(4890, 'Nora', 1894, 'F', 854), +(4891, 'Dora', 1894, 'F', 827), +(4892, 'Rosa', 1894, 'F', 780), +(4893, 'May', 1894, 'F', 763), +(4894, 'Ellen', 1894, 'F', 759), +(4895, 'Sadie', 1894, 'F', 745), +(4896, 'Effie', 1894, 'F', 712), +(4897, 'Willie', 1894, 'F', 709), +(4898, 'Beatrice', 1894, 'F', 684), +(4899, 'Della', 1894, 'F', 681), +(4900, 'Susie', 1894, 'F', 678), +(4901, 'Beulah', 1894, 'F', 675), +(4902, 'Pauline', 1894, 'F', 656), +(4903, 'Daisy', 1894, 'F', 645), +(4904, 'Nettie', 1894, 'F', 630), +(4905, 'Marguerite', 1894, 'F', 624), +(4906, 'Flora', 1894, 'F', 619), +(4907, 'Lydia', 1894, 'F', 618), +(4908, 'Vera', 1894, 'F', 618), +(4909, 'Lottie', 1894, 'F', 597), +(4910, 'Olive', 1894, 'F', 589), +(4911, 'Marion', 1894, 'F', 587), +(4912, 'Sallie', 1894, 'F', 584), +(4913, 'Virginia', 1894, 'F', 583), +(4914, 'Lizzie', 1894, 'F', 562), +(4915, 'Emily', 1894, 'F', 551), +(4916, 'Georgia', 1894, 'F', 535), +(4917, 'Katie', 1894, 'F', 525), +(4918, 'Kathryn', 1894, 'F', 520), +(4919, 'Etta', 1894, 'F', 519), +(4920, 'Nancy', 1894, 'F', 515), +(4921, 'Evelyn', 1894, 'F', 491), +(4922, 'Charlotte', 1894, 'F', 484), +(4923, 'Theresa', 1894, 'F', 484), +(4924, 'Addie', 1894, 'F', 481), +(4925, 'Caroline', 1894, 'F', 473), +(4926, 'Leona', 1894, 'F', 471), +(4927, 'Ann', 1894, 'F', 470), +(4928, 'Hilda', 1894, 'F', 470), +(4929, 'Ollie', 1894, 'F', 452), +(4930, 'Eleanor', 1894, 'F', 450), +(4931, 'Lucille', 1894, 'F', 440), +(4932, 'Anne', 1894, 'F', 427), +(4933, 'Iva', 1894, 'F', 424), +(4934, 'Amanda', 1894, 'F', 418), +(4935, 'Lela', 1894, 'F', 413), +(4936, 'Harriet', 1894, 'F', 411), +(4937, 'Lola', 1894, 'F', 407), +(4938, 'Ora', 1894, 'F', 404), +(4939, 'Henrietta', 1894, 'F', 400), +(4940, 'Rebecca', 1894, 'F', 399), +(4941, 'Amelia', 1894, 'F', 390), +(4942, 'Jane', 1894, 'F', 390), +(4943, 'Bernice', 1894, 'F', 389), +(4944, 'Mollie', 1894, 'F', 379), +(4945, 'Nannie', 1894, 'F', 374), +(4946, 'Inez', 1894, 'F', 357), +(4947, 'Susan', 1894, 'F', 357), +(4948, 'Goldie', 1894, 'F', 349), +(4949, 'Nina', 1894, 'F', 347), +(4950, 'Estella', 1894, 'F', 335), +(4951, 'Maud', 1894, 'F', 333), +(4952, 'Mable', 1894, 'F', 332), +(4953, 'Loretta', 1894, 'F', 330), +(4954, 'Amy', 1894, 'F', 329), +(4955, 'Kate', 1894, 'F', 328), +(4956, 'Eula', 1894, 'F', 327), +(4957, 'Estelle', 1894, 'F', 326), +(4958, 'Rachel', 1894, 'F', 317), +(4959, 'Essie', 1894, 'F', 311), +(4960, 'Verna', 1894, 'F', 310), +(4961, 'Maria', 1894, 'F', 309), +(4962, 'Lois', 1894, 'F', 308), +(4963, 'Sara', 1894, 'F', 304), +(4964, 'Olga', 1894, 'F', 303), +(4965, 'Frieda', 1894, 'F', 299), +(4966, 'Alta', 1894, 'F', 298), +(4967, 'Betty', 1894, 'F', 298), +(4968, 'Eliza', 1894, 'F', 297), +(4969, 'Flossie', 1894, 'F', 297), +(4970, 'Eunice', 1894, 'F', 295), +(4971, 'Matilda', 1894, 'F', 295), +(4972, 'Hannah', 1894, 'F', 293), +(4973, 'Barbara', 1894, 'F', 290), +(4974, 'Rosie', 1894, 'F', 288), +(4975, 'Sylvia', 1894, 'F', 288), +(4976, 'Violet', 1894, 'F', 286), +(4977, 'Lulu', 1894, 'F', 278), +(4978, 'Sophia', 1894, 'F', 276), +(4979, 'Augusta', 1894, 'F', 272), +(4980, 'Genevieve', 1894, 'F', 271), +(4981, 'Marjorie', 1894, 'F', 269), +(4982, 'Christine', 1894, 'F', 267), +(4983, 'Ola', 1894, 'F', 264), +(4984, 'Celia', 1894, 'F', 254), +(4985, 'Victoria', 1894, 'F', 251), +(4986, 'Belle', 1894, 'F', 249), +(4987, 'Janie', 1894, 'F', 246), +(4988, 'Ina', 1894, 'F', 242), +(4989, 'Jean', 1894, 'F', 242), +(4990, 'Isabel', 1894, 'F', 241), +(4991, 'Josie', 1894, 'F', 241), +(4992, 'Irma', 1894, 'F', 240), +(4993, 'Lucile', 1894, 'F', 239), +(4994, 'Mayme', 1894, 'F', 235), +(4995, 'Sophie', 1894, 'F', 234), +(4996, 'Allie', 1894, 'F', 232), +(4997, 'Luella', 1894, 'F', 228), +(4998, 'Alberta', 1894, 'F', 227), +(4999, 'Callie', 1894, 'F', 227), +(5000, 'Freda', 1894, 'F', 227), +(5001, 'Rena', 1894, 'F', 217), +(5002, 'Winifred', 1894, 'F', 216), +(5003, 'Nell', 1894, 'F', 215), +(5004, 'Madeline', 1894, 'F', 214), +(5005, 'Selma', 1894, 'F', 212), +(5006, 'Vivian', 1894, 'F', 212), +(5007, 'Erma', 1894, 'F', 211), +(5008, 'Winnie', 1894, 'F', 202), +(5009, 'Tillie', 1894, 'F', 198), +(5010, 'Fern', 1894, 'F', 197), +(5011, 'Naomi', 1894, 'F', 196), +(5012, 'Velma', 1894, 'F', 196), +(5013, 'Doris', 1894, 'F', 187), +(5014, 'Millie', 1894, 'F', 185), +(5015, 'Isabelle', 1894, 'F', 184), +(5016, 'Leah', 1894, 'F', 182), +(5017, 'Geneva', 1894, 'F', 180), +(5018, 'Bertie', 1894, 'F', 178), +(5019, 'Bess', 1894, 'F', 177), +(5020, 'Lora', 1894, 'F', 177), +(5021, 'Virgie', 1894, 'F', 177), +(5022, 'Elva', 1894, 'F', 176), +(5023, 'Adeline', 1894, 'F', 174), +(5024, 'Norma', 1894, 'F', 174), +(5025, 'Delia', 1894, 'F', 172), +(5026, 'Birdie', 1894, 'F', 169), +(5027, 'Kathleen', 1894, 'F', 168), +(5028, 'Sally', 1894, 'F', 168), +(5029, 'Dollie', 1894, 'F', 166), +(5030, 'Gussie', 1894, 'F', 165), +(5031, 'Opal', 1894, 'F', 164), +(5032, 'Hallie', 1894, 'F', 161), +(5033, 'Lila', 1894, 'F', 161), +(5034, 'Cecelia', 1894, 'F', 159), +(5035, 'Teresa', 1894, 'F', 157), +(5036, 'Jeanette', 1894, 'F', 152), +(5037, 'Leila', 1894, 'F', 152), +(5038, 'Miriam', 1894, 'F', 152), +(5039, 'Adele', 1894, 'F', 151), +(5040, 'Myra', 1894, 'F', 148), +(5041, 'Carolyn', 1894, 'F', 147), +(5042, 'Lelia', 1894, 'F', 146), +(5043, 'Cecilia', 1894, 'F', 144), +(5044, 'Hulda', 1894, 'F', 144), +(5045, 'Hester', 1894, 'F', 143), +(5046, 'Katharine', 1894, 'F', 140), +(5047, 'Louisa', 1894, 'F', 139), +(5048, 'Zella', 1894, 'F', 138), +(5049, 'Elsa', 1894, 'F', 137), +(5050, 'Adelaide', 1894, 'F', 136), +(5051, 'Mathilda', 1894, 'F', 136), +(5052, 'Rhoda', 1894, 'F', 136), +(5053, 'Cornelia', 1894, 'F', 135), +(5054, 'Jeannette', 1894, 'F', 133), +(5055, 'Regina', 1894, 'F', 131), +(5056, 'Gertie', 1894, 'F', 128), +(5057, 'Leola', 1894, 'F', 128), +(5058, 'Maudie', 1894, 'F', 128), +(5059, 'Elma', 1894, 'F', 127), +(5060, 'Johanna', 1894, 'F', 127), +(5061, 'Lilly', 1894, 'F', 127), +(5062, 'Olivia', 1894, 'F', 127), +(5063, 'Roxie', 1894, 'F', 127), +(5064, 'Fay', 1894, 'F', 124), +(5065, 'Marian', 1894, 'F', 124), +(5066, 'Hettie', 1894, 'F', 122), +(5067, 'Christina', 1894, 'F', 121), +(5068, 'Faye', 1894, 'F', 121), +(5069, 'Bonnie', 1894, 'F', 119), +(5070, 'Lettie', 1894, 'F', 119), +(5071, 'Abbie', 1894, 'F', 118), +(5072, 'Bettie', 1894, 'F', 118), +(5073, 'Cleo', 1894, 'F', 118), +(5074, 'Harriett', 1894, 'F', 118), +(5075, 'Lou', 1894, 'F', 118), +(5076, 'Nola', 1894, 'F', 118), +(5077, 'Roberta', 1894, 'F', 116), +(5078, 'Madge', 1894, 'F', 115), +(5079, 'Nelle', 1894, 'F', 113), +(5080, 'Veronica', 1894, 'F', 113), +(5081, 'Ila', 1894, 'F', 112), +(5082, 'Juanita', 1894, 'F', 111), +(5083, 'Margie', 1894, 'F', 110), +(5084, 'Lura', 1894, 'F', 109), +(5085, 'Claudia', 1894, 'F', 108), +(5086, 'Francis', 1894, 'F', 108), +(5087, 'Lily', 1894, 'F', 108), +(5088, 'Anita', 1894, 'F', 107), +(5089, 'Dessie', 1894, 'F', 106), +(5090, 'Helena', 1894, 'F', 106), +(5091, 'Lorena', 1894, 'F', 106), +(5092, 'Sue', 1894, 'F', 105), +(5093, 'Dovie', 1894, 'F', 104), +(5094, 'Lucinda', 1894, 'F', 104), +(5095, 'Rita', 1894, 'F', 104), +(5096, 'Mina', 1894, 'F', 103), +(5097, 'Cecile', 1894, 'F', 102), +(5098, 'Neva', 1894, 'F', 102), +(5099, 'Lenora', 1894, 'F', 101), +(5100, 'Reba', 1894, 'F', 100), +(5101, 'Vesta', 1894, 'F', 100), +(5102, 'John', 1894, 'M', 8238), +(5103, 'William', 1894, 'M', 7274), +(5104, 'James', 1894, 'M', 5110), +(5105, 'George', 1894, 'M', 4365), +(5106, 'Charles', 1894, 'M', 3788), +(5107, 'Joseph', 1894, 'M', 2977), +(5108, 'Frank', 1894, 'M', 2863), +(5109, 'Robert', 1894, 'M', 2497), +(5110, 'Henry', 1894, 'M', 2278), +(5111, 'Harry', 1894, 'M', 2189), +(5112, 'Edward', 1894, 'M', 2179), +(5113, 'Thomas', 1894, 'M', 2170), +(5114, 'Walter', 1894, 'M', 2010), +(5115, 'Arthur', 1894, 'M', 1712), +(5116, 'Fred', 1894, 'M', 1475), +(5117, 'Albert', 1894, 'M', 1447), +(5118, 'Clarence', 1894, 'M', 1185), +(5119, 'Roy', 1894, 'M', 1018), +(5120, 'Willie', 1894, 'M', 986), +(5121, 'Earl', 1894, 'M', 896), +(5122, 'Louis', 1894, 'M', 869), +(5123, 'Carl', 1894, 'M', 861), +(5124, 'Paul', 1894, 'M', 824), +(5125, 'Ernest', 1894, 'M', 821), +(5126, 'Richard', 1894, 'M', 808), +(5127, 'Samuel', 1894, 'M', 776), +(5128, 'Raymond', 1894, 'M', 767), +(5129, 'Joe', 1894, 'M', 741), +(5130, 'David', 1894, 'M', 729), +(5131, 'Charlie', 1894, 'M', 704), +(5132, 'Ralph', 1894, 'M', 692), +(5133, 'Harold', 1894, 'M', 690), +(5134, 'Howard', 1894, 'M', 612), +(5135, 'Oscar', 1894, 'M', 601), +(5136, 'Andrew', 1894, 'M', 594), +(5137, 'Herbert', 1894, 'M', 585), +(5138, 'Elmer', 1894, 'M', 575), +(5139, 'Jesse', 1894, 'M', 567), +(5140, 'Will', 1894, 'M', 559), +(5141, 'Alfred', 1894, 'M', 521), +(5142, 'Daniel', 1894, 'M', 515), +(5143, 'Leo', 1894, 'M', 515), +(5144, 'Sam', 1894, 'M', 507), +(5145, 'Benjamin', 1894, 'M', 469), +(5146, 'Lee', 1894, 'M', 455), +(5147, 'Floyd', 1894, 'M', 445), +(5148, 'Jack', 1894, 'M', 441), +(5149, 'Herman', 1894, 'M', 433), +(5150, 'Lawrence', 1894, 'M', 431), +(5151, 'Francis', 1894, 'M', 423), +(5152, 'Michael', 1894, 'M', 423), +(5153, 'Eugene', 1894, 'M', 421), +(5154, 'Claude', 1894, 'M', 419), +(5155, 'Frederick', 1894, 'M', 413), +(5156, 'Peter', 1894, 'M', 391), +(5157, 'Clyde', 1894, 'M', 386), +(5158, 'Ray', 1894, 'M', 379), +(5159, 'Edwin', 1894, 'M', 366), +(5160, 'Lewis', 1894, 'M', 359), +(5161, 'Leonard', 1894, 'M', 343), +(5162, 'Tom', 1894, 'M', 343), +(5163, 'Ben', 1894, 'M', 326), +(5164, 'Chester', 1894, 'M', 325), +(5165, 'Edgar', 1894, 'M', 313), +(5166, 'Clifford', 1894, 'M', 307), +(5167, 'Martin', 1894, 'M', 299), +(5168, 'Harvey', 1894, 'M', 293), +(5169, 'Jacob', 1894, 'M', 292), +(5170, 'Lester', 1894, 'M', 291), +(5171, 'Jim', 1894, 'M', 287), +(5172, 'Luther', 1894, 'M', 285), +(5173, 'Russell', 1894, 'M', 278), +(5174, 'Homer', 1894, 'M', 273), +(5175, 'Otto', 1894, 'M', 270), +(5176, 'Hugh', 1894, 'M', 269), +(5177, 'Guy', 1894, 'M', 261), +(5178, 'Anthony', 1894, 'M', 257), +(5179, 'Bernard', 1894, 'M', 256), +(5180, 'Jessie', 1894, 'M', 255), +(5181, 'Lloyd', 1894, 'M', 253), +(5182, 'Ed', 1894, 'M', 241), +(5183, 'Theodore', 1894, 'M', 241), +(5184, 'Leroy', 1894, 'M', 239), +(5185, 'Leon', 1894, 'M', 236), +(5186, 'Patrick', 1894, 'M', 229), +(5187, 'Everett', 1894, 'M', 226), +(5188, 'Leslie', 1894, 'M', 223), +(5189, 'Oliver', 1894, 'M', 222), +(5190, 'Allen', 1894, 'M', 219), +(5191, 'Stanley', 1894, 'M', 218), +(5192, 'Philip', 1894, 'M', 214), +(5193, 'Archie', 1894, 'M', 207), +(5194, 'Ira', 1894, 'M', 206), +(5195, 'Eddie', 1894, 'M', 203), +(5196, 'Alexander', 1894, 'M', 199), +(5197, 'Norman', 1894, 'M', 199), +(5198, 'Horace', 1894, 'M', 196), +(5199, 'Bert', 1894, 'M', 187), +(5200, 'Charley', 1894, 'M', 186), +(5201, 'Victor', 1894, 'M', 180), +(5202, 'Julius', 1894, 'M', 178), +(5203, 'Cecil', 1894, 'M', 175), +(5204, 'Stephen', 1894, 'M', 174), +(5205, 'Percy', 1894, 'M', 173), +(5206, 'Isaac', 1894, 'M', 170), +(5207, 'Donald', 1894, 'M', 169), +(5208, 'Sidney', 1894, 'M', 168), +(5209, 'Alvin', 1894, 'M', 167), +(5210, 'August', 1894, 'M', 162), +(5211, 'Milton', 1894, 'M', 156), +(5212, 'Marion', 1894, 'M', 154), +(5213, 'Alex', 1894, 'M', 152), +(5214, 'Wesley', 1894, 'M', 149), +(5215, 'Glenn', 1894, 'M', 142), +(5216, 'Warren', 1894, 'M', 141), +(5217, 'Gilbert', 1894, 'M', 139), +(5218, 'Lonnie', 1894, 'M', 138), +(5219, 'Willis', 1894, 'M', 133), +(5220, 'Earnest', 1894, 'M', 131), +(5221, 'Vernon', 1894, 'M', 131), +(5222, 'Dave', 1894, 'M', 129), +(5223, 'Otis', 1894, 'M', 129), +(5224, 'Emil', 1894, 'M', 128), +(5225, 'Rufus', 1894, 'M', 128), +(5226, 'Jerry', 1894, 'M', 127), +(5227, 'Nathan', 1894, 'M', 127), +(5228, 'Emmett', 1894, 'M', 126), +(5229, 'Maurice', 1894, 'M', 125), +(5230, 'Melvin', 1894, 'M', 125), +(5231, 'Virgil', 1894, 'M', 125), +(5232, 'Johnnie', 1894, 'M', 124), +(5233, 'Matthew', 1894, 'M', 124), +(5234, 'Morris', 1894, 'M', 122), +(5235, 'Willard', 1894, 'M', 122), +(5236, 'Bennie', 1894, 'M', 121), +(5237, 'Mack', 1894, 'M', 119), +(5238, 'Grover', 1894, 'M', 118), +(5239, 'Dan', 1894, 'M', 114), +(5240, 'Gordon', 1894, 'M', 112), +(5241, 'Phillip', 1894, 'M', 110), +(5242, 'Ross', 1894, 'M', 110), +(5243, 'Amos', 1894, 'M', 108), +(5244, 'Glen', 1894, 'M', 108), +(5245, 'Hubert', 1894, 'M', 105), +(5246, 'Kenneth', 1894, 'M', 105), +(5247, 'Orville', 1894, 'M', 105), +(5248, 'Jess', 1894, 'M', 104), +(5249, 'Rudolph', 1894, 'M', 104), +(5250, 'Wilbur', 1894, 'M', 104), +(5251, 'Alonzo', 1894, 'M', 102), +(5252, 'Irving', 1894, 'M', 102), +(5253, 'Sylvester', 1894, 'M', 101), +(5254, 'Cornelius', 1894, 'M', 100), +(5255, 'Sherman', 1894, 'M', 100), +(5256, 'Mary', 1895, 'F', 13446), +(5257, 'Anna', 1895, 'F', 5950), +(5258, 'Helen', 1895, 'F', 4023), +(5259, 'Margaret', 1895, 'F', 3931), +(5260, 'Elizabeth', 1895, 'F', 3603), +(5261, 'Ruth', 1895, 'F', 3551), +(5262, 'Florence', 1895, 'F', 3471), +(5263, 'Ethel', 1895, 'F', 3391), +(5264, 'Marie', 1895, 'F', 3011), +(5265, 'Emma', 1895, 'F', 2952), +(5266, 'Bertha', 1895, 'F', 2626), +(5267, 'Clara', 1895, 'F', 2613), +(5268, 'Minnie', 1895, 'F', 2567), +(5269, 'Edna', 1895, 'F', 2560), +(5270, 'Bessie', 1895, 'F', 2542), +(5271, 'Lillian', 1895, 'F', 2495), +(5272, 'Alice', 1895, 'F', 2457), +(5273, 'Grace', 1895, 'F', 2448), +(5274, 'Annie', 1895, 'F', 2390), +(5275, 'Mabel', 1895, 'F', 2359), +(5276, 'Rose', 1895, 'F', 2262), +(5277, 'Hazel', 1895, 'F', 2252), +(5278, 'Ida', 1895, 'F', 2170), +(5279, 'Gertrude', 1895, 'F', 2129), +(5280, 'Martha', 1895, 'F', 2096), +(5281, 'Pearl', 1895, 'F', 1958), +(5282, 'Edith', 1895, 'F', 1940), +(5283, 'Myrtle', 1895, 'F', 1938), +(5284, 'Frances', 1895, 'F', 1834), +(5285, 'Nellie', 1895, 'F', 1833), +(5286, 'Esther', 1895, 'F', 1803), +(5287, 'Elsie', 1895, 'F', 1795), +(5288, 'Sarah', 1895, 'F', 1777), +(5289, 'Eva', 1895, 'F', 1767), +(5290, 'Ella', 1895, 'F', 1693), +(5291, 'Laura', 1895, 'F', 1643), +(5292, 'Louise', 1895, 'F', 1582), +(5293, 'Catherine', 1895, 'F', 1514), +(5294, 'Mildred', 1895, 'F', 1474), +(5295, 'Agnes', 1895, 'F', 1466), +(5296, 'Gladys', 1895, 'F', 1464), +(5297, 'Carrie', 1895, 'F', 1463), +(5298, 'Irene', 1895, 'F', 1428), +(5299, 'Lillie', 1895, 'F', 1414), +(5300, 'Julia', 1895, 'F', 1380), +(5301, 'Hattie', 1895, 'F', 1338), +(5302, 'Josephine', 1895, 'F', 1334), +(5303, 'Jessie', 1895, 'F', 1300), +(5304, 'Cora', 1895, 'F', 1295), +(5305, 'Lena', 1895, 'F', 1289), +(5306, 'Mattie', 1895, 'F', 1276), +(5307, 'Mae', 1895, 'F', 1193), +(5308, 'Jennie', 1895, 'F', 1177), +(5309, 'Blanche', 1895, 'F', 1156), +(5310, 'Alma', 1895, 'F', 1144), +(5311, 'Maude', 1895, 'F', 1136), +(5312, 'Dorothy', 1895, 'F', 1127), +(5313, 'Ada', 1895, 'F', 1124), +(5314, 'Mamie', 1895, 'F', 1119), +(5315, 'Stella', 1895, 'F', 1026), +(5316, 'Lucy', 1895, 'F', 1016), +(5317, 'Fannie', 1895, 'F', 1012), +(5318, 'Viola', 1895, 'F', 1010), +(5319, 'Lula', 1895, 'F', 987), +(5320, 'Katherine', 1895, 'F', 968), +(5321, 'Ruby', 1895, 'F', 954), +(5322, 'Maggie', 1895, 'F', 890), +(5323, 'Dora', 1895, 'F', 884), +(5324, 'Marion', 1895, 'F', 856), +(5325, 'Nora', 1895, 'F', 846), +(5326, 'Rosa', 1895, 'F', 832), +(5327, 'Sadie', 1895, 'F', 829), +(5328, 'Beatrice', 1895, 'F', 814), +(5329, 'Beulah', 1895, 'F', 760), +(5330, 'Ellen', 1895, 'F', 746), +(5331, 'Pauline', 1895, 'F', 734), +(5332, 'Vera', 1895, 'F', 729), +(5333, 'Willie', 1895, 'F', 724), +(5334, 'Effie', 1895, 'F', 708), +(5335, 'May', 1895, 'F', 691), +(5336, 'Marguerite', 1895, 'F', 680), +(5337, 'Nettie', 1895, 'F', 677), +(5338, 'Susie', 1895, 'F', 674), +(5339, 'Daisy', 1895, 'F', 665), +(5340, 'Lydia', 1895, 'F', 656), +(5341, 'Della', 1895, 'F', 648), +(5342, 'Evelyn', 1895, 'F', 630), +(5343, 'Virginia', 1895, 'F', 628), +(5344, 'Emily', 1895, 'F', 605), +(5345, 'Kathryn', 1895, 'F', 585), +(5346, 'Olive', 1895, 'F', 577), +(5347, 'Sallie', 1895, 'F', 573), +(5348, 'Nancy', 1895, 'F', 566), +(5349, 'Georgia', 1895, 'F', 562), +(5350, 'Lottie', 1895, 'F', 553), +(5351, 'Flora', 1895, 'F', 552), +(5352, 'Ann', 1895, 'F', 551), +(5353, 'Eleanor', 1895, 'F', 544), +(5354, 'Lizzie', 1895, 'F', 543), +(5355, 'Katie', 1895, 'F', 536), +(5356, 'Lucille', 1895, 'F', 532), +(5357, 'Leona', 1895, 'F', 520), +(5358, 'Theresa', 1895, 'F', 515), +(5359, 'Hilda', 1895, 'F', 513), +(5360, 'Caroline', 1895, 'F', 484), +(5361, 'Charlotte', 1895, 'F', 472), +(5362, 'Addie', 1895, 'F', 471), +(5363, 'Anne', 1895, 'F', 462), +(5364, 'Bernice', 1895, 'F', 447), +(5365, 'Lola', 1895, 'F', 446), +(5366, 'Ollie', 1895, 'F', 446), +(5367, 'Etta', 1895, 'F', 445), +(5368, 'Harriet', 1895, 'F', 435), +(5369, 'Iva', 1895, 'F', 435), +(5370, 'Amanda', 1895, 'F', 431), +(5371, 'Henrietta', 1895, 'F', 420), +(5372, 'Ora', 1895, 'F', 416), +(5373, 'Inez', 1895, 'F', 403), +(5374, 'Jane', 1895, 'F', 394), +(5375, 'Susan', 1895, 'F', 393), +(5376, 'Lela', 1895, 'F', 388), +(5377, 'Rebecca', 1895, 'F', 386), +(5378, 'Mollie', 1895, 'F', 382), +(5379, 'Estelle', 1895, 'F', 381), +(5380, 'Amelia', 1895, 'F', 379), +(5381, 'Loretta', 1895, 'F', 365), +(5382, 'Sara', 1895, 'F', 363), +(5383, 'Goldie', 1895, 'F', 358), +(5384, 'Nannie', 1895, 'F', 355), +(5385, 'Rachel', 1895, 'F', 351), +(5386, 'Betty', 1895, 'F', 350), +(5387, 'Marjorie', 1895, 'F', 349), +(5388, 'Nina', 1895, 'F', 348), +(5389, 'Eula', 1895, 'F', 342), +(5390, 'Matilda', 1895, 'F', 339), +(5391, 'Essie', 1895, 'F', 335), +(5392, 'Eunice', 1895, 'F', 334), +(5393, 'Mable', 1895, 'F', 331), +(5394, 'Olga', 1895, 'F', 329), +(5395, 'Verna', 1895, 'F', 326), +(5396, 'Rosie', 1895, 'F', 322), +(5397, 'Violet', 1895, 'F', 316), +(5398, 'Genevieve', 1895, 'F', 313), +(5399, 'Lois', 1895, 'F', 311), +(5400, 'Maud', 1895, 'F', 305), +(5401, 'Estella', 1895, 'F', 304), +(5402, 'Amy', 1895, 'F', 303), +(5403, 'Hannah', 1895, 'F', 301), +(5404, 'Frieda', 1895, 'F', 299), +(5405, 'Barbara', 1895, 'F', 298), +(5406, 'Christine', 1895, 'F', 295), +(5407, 'Flossie', 1895, 'F', 295), +(5408, 'Maria', 1895, 'F', 295), +(5409, 'Augusta', 1895, 'F', 288), +(5410, 'Belle', 1895, 'F', 283), +(5411, 'Alta', 1895, 'F', 277), +(5412, 'Sylvia', 1895, 'F', 276), +(5413, 'Celia', 1895, 'F', 273), +(5414, 'Eliza', 1895, 'F', 273), +(5415, 'Victoria', 1895, 'F', 269), +(5416, 'Marian', 1895, 'F', 265), +(5417, 'Kate', 1895, 'F', 262), +(5418, 'Ola', 1895, 'F', 261), +(5419, 'Sophia', 1895, 'F', 259), +(5420, 'Lulu', 1895, 'F', 258), +(5421, 'Allie', 1895, 'F', 252), +(5422, 'Freda', 1895, 'F', 250), +(5423, 'Naomi', 1895, 'F', 249), +(5424, 'Lucile', 1895, 'F', 248), +(5425, 'Irma', 1895, 'F', 247), +(5426, 'Nell', 1895, 'F', 247), +(5427, 'Alberta', 1895, 'F', 242), +(5428, 'Sophie', 1895, 'F', 240), +(5429, 'Madeline', 1895, 'F', 237), +(5430, 'Josie', 1895, 'F', 234), +(5431, 'Winifred', 1895, 'F', 234), +(5432, 'Jean', 1895, 'F', 232), +(5433, 'Luella', 1895, 'F', 227), +(5434, 'Ina', 1895, 'F', 220), +(5435, 'Janie', 1895, 'F', 220), +(5436, 'Norma', 1895, 'F', 219), +(5437, 'Elva', 1895, 'F', 218), +(5438, 'Vivian', 1895, 'F', 216), +(5439, 'Isabel', 1895, 'F', 212), +(5440, 'Tillie', 1895, 'F', 212), +(5441, 'Callie', 1895, 'F', 211), +(5442, 'Mayme', 1895, 'F', 209), +(5443, 'Selma', 1895, 'F', 208), +(5444, 'Velma', 1895, 'F', 208), +(5445, 'Isabelle', 1895, 'F', 205), +(5446, 'Erma', 1895, 'F', 203), +(5447, 'Leah', 1895, 'F', 203), +(5448, 'Doris', 1895, 'F', 198), +(5449, 'Winnie', 1895, 'F', 196), +(5450, 'Delia', 1895, 'F', 193), +(5451, 'Kathleen', 1895, 'F', 192), +(5452, 'Virgie', 1895, 'F', 191), +(5453, 'Rena', 1895, 'F', 189), +(5454, 'Birdie', 1895, 'F', 184), +(5455, 'Fern', 1895, 'F', 184), +(5456, 'Millie', 1895, 'F', 181), +(5457, 'Adeline', 1895, 'F', 180), +(5458, 'Geneva', 1895, 'F', 180), +(5459, 'Lila', 1895, 'F', 175), +(5460, 'Thelma', 1895, 'F', 173), +(5461, 'Miriam', 1895, 'F', 169), +(5462, 'Hulda', 1895, 'F', 167), +(5463, 'Jeanette', 1895, 'F', 167), +(5464, 'Teresa', 1895, 'F', 167), +(5465, 'Adele', 1895, 'F', 166), +(5466, 'Lora', 1895, 'F', 166), +(5467, 'Hester', 1895, 'F', 164), +(5468, 'Cecelia', 1895, 'F', 163), +(5469, 'Sally', 1895, 'F', 162), +(5470, 'Elsa', 1895, 'F', 160), +(5471, 'Opal', 1895, 'F', 158), +(5472, 'Dollie', 1895, 'F', 157), +(5473, 'Lelia', 1895, 'F', 157), +(5474, 'Sue', 1895, 'F', 157), +(5475, 'Bertie', 1895, 'F', 154), +(5476, 'Juanita', 1895, 'F', 154), +(5477, 'Veronica', 1895, 'F', 153), +(5478, 'Johanna', 1895, 'F', 151), +(5479, 'Bess', 1895, 'F', 150), +(5480, 'Gussie', 1895, 'F', 150), +(5481, 'Jeannette', 1895, 'F', 150), +(5482, 'Carolyn', 1895, 'F', 149), +(5483, 'Leila', 1895, 'F', 147), +(5484, 'Katharine', 1895, 'F', 145), +(5485, 'Adelaide', 1895, 'F', 142), +(5486, 'Roxie', 1895, 'F', 141), +(5487, 'Cecilia', 1895, 'F', 138), +(5488, 'Regina', 1895, 'F', 138), +(5489, 'Elma', 1895, 'F', 137), +(5490, 'Zella', 1895, 'F', 137), +(5491, 'Gertie', 1895, 'F', 136), +(5492, 'Rhoda', 1895, 'F', 136), +(5493, 'Leola', 1895, 'F', 135), +(5494, 'Bettie', 1895, 'F', 133), +(5495, 'Lessie', 1895, 'F', 133), +(5496, 'Hallie', 1895, 'F', 130), +(5497, 'Roberta', 1895, 'F', 130), +(5498, 'Bonnie', 1895, 'F', 129), +(5499, 'Cornelia', 1895, 'F', 127), +(5500, 'Harriett', 1895, 'F', 127), +(5501, 'Mathilda', 1895, 'F', 127), +(5502, 'Myra', 1895, 'F', 127), +(5503, 'Anita', 1895, 'F', 126), +(5504, 'Christina', 1895, 'F', 126), +(5505, 'Francis', 1895, 'F', 126), +(5506, 'Madge', 1895, 'F', 126), +(5507, 'Cleo', 1895, 'F', 125), +(5508, 'Lou', 1895, 'F', 125), +(5509, 'Hettie', 1895, 'F', 124), +(5510, 'Meta', 1895, 'F', 122), +(5511, 'Neva', 1895, 'F', 122), +(5512, 'Fay', 1895, 'F', 121), +(5513, 'Maudie', 1895, 'F', 120), +(5514, 'Claire', 1895, 'F', 118), +(5515, 'Faye', 1895, 'F', 118), +(5516, 'Letha', 1895, 'F', 117), +(5517, 'Olivia', 1895, 'F', 117), +(5518, 'Louisa', 1895, 'F', 112), +(5519, 'Nelle', 1895, 'F', 112), +(5520, 'Lorena', 1895, 'F', 111), +(5521, 'Nola', 1895, 'F', 111), +(5522, 'Cecile', 1895, 'F', 109), +(5523, 'Pearlie', 1895, 'F', 109), +(5524, 'Corinne', 1895, 'F', 108), +(5525, 'Gracie', 1895, 'F', 108), +(5526, 'Lilly', 1895, 'F', 108), +(5527, 'Muriel', 1895, 'F', 108), +(5528, 'Helena', 1895, 'F', 107), +(5529, 'Lettie', 1895, 'F', 107), +(5530, 'Rita', 1895, 'F', 105), +(5531, 'Erna', 1895, 'F', 103), +(5532, 'Johnnie', 1895, 'F', 103), +(5533, 'Lenora', 1895, 'F', 103), +(5534, 'Audrey', 1895, 'F', 102), +(5535, 'Lily', 1895, 'F', 101), +(5536, 'John', 1895, 'M', 8321), +(5537, 'William', 1895, 'M', 7277), +(5538, 'James', 1895, 'M', 5335), +(5539, 'George', 1895, 'M', 4289), +(5540, 'Charles', 1895, 'M', 3633), +(5541, 'Frank', 1895, 'M', 3012), +(5542, 'Joseph', 1895, 'M', 2992), +(5543, 'Robert', 1895, 'M', 2635), +(5544, 'Henry', 1895, 'M', 2221), +(5545, 'Edward', 1895, 'M', 2203), +(5546, 'Thomas', 1895, 'M', 2153), +(5547, 'Harry', 1895, 'M', 2128), +(5548, 'Walter', 1895, 'M', 2015), +(5549, 'Arthur', 1895, 'M', 1666), +(5550, 'Fred', 1895, 'M', 1483), +(5551, 'Albert', 1895, 'M', 1391), +(5552, 'Clarence', 1895, 'M', 1325), +(5553, 'Willie', 1895, 'M', 1071), +(5554, 'Roy', 1895, 'M', 1028), +(5555, 'Paul', 1895, 'M', 933), +(5556, 'Louis', 1895, 'M', 913), +(5557, 'Earl', 1895, 'M', 852), +(5558, 'Carl', 1895, 'M', 851), +(5559, 'Ernest', 1895, 'M', 834), +(5560, 'Samuel', 1895, 'M', 814), +(5561, 'Raymond', 1895, 'M', 806), +(5562, 'Charlie', 1895, 'M', 767), +(5563, 'Joe', 1895, 'M', 763), +(5564, 'Harold', 1895, 'M', 753), +(5565, 'Ralph', 1895, 'M', 736), +(5566, 'Richard', 1895, 'M', 727), +(5567, 'David', 1895, 'M', 707), +(5568, 'Howard', 1895, 'M', 641), +(5569, 'Elmer', 1895, 'M', 610), +(5570, 'Jesse', 1895, 'M', 577), +(5571, 'Herbert', 1895, 'M', 569), +(5572, 'Andrew', 1895, 'M', 562), +(5573, 'Alfred', 1895, 'M', 551), +(5574, 'Oscar', 1895, 'M', 549), +(5575, 'Daniel', 1895, 'M', 516), +(5576, 'Lawrence', 1895, 'M', 509), +(5577, 'Leo', 1895, 'M', 509), +(5578, 'Sam', 1895, 'M', 487), +(5579, 'Will', 1895, 'M', 485), +(5580, 'Francis', 1895, 'M', 480), +(5581, 'Jack', 1895, 'M', 479), +(5582, 'Lee', 1895, 'M', 478), +(5583, 'Benjamin', 1895, 'M', 452), +(5584, 'Herman', 1895, 'M', 439), +(5585, 'Eugene', 1895, 'M', 430), +(5586, 'Floyd', 1895, 'M', 427), +(5587, 'Michael', 1895, 'M', 413), +(5588, 'Peter', 1895, 'M', 412), +(5589, 'Frederick', 1895, 'M', 406), +(5590, 'Claude', 1895, 'M', 389), +(5591, 'Ray', 1895, 'M', 380), +(5592, 'Chester', 1895, 'M', 378), +(5593, 'Lewis', 1895, 'M', 377), +(5594, 'Clyde', 1895, 'M', 370), +(5595, 'Edwin', 1895, 'M', 346), +(5596, 'Leonard', 1895, 'M', 342), +(5597, 'Tom', 1895, 'M', 335), +(5598, 'Ben', 1895, 'M', 324), +(5599, 'Edgar', 1895, 'M', 323), +(5600, 'Martin', 1895, 'M', 317), +(5601, 'Russell', 1895, 'M', 300), +(5602, 'Homer', 1895, 'M', 296), +(5603, 'Lester', 1895, 'M', 295), +(5604, 'Otto', 1895, 'M', 283), +(5605, 'Harvey', 1895, 'M', 282), +(5606, 'Jim', 1895, 'M', 279), +(5607, 'Clifford', 1895, 'M', 272), +(5608, 'Luther', 1895, 'M', 269), +(5609, 'Jacob', 1895, 'M', 266), +(5610, 'Lloyd', 1895, 'M', 263), +(5611, 'Guy', 1895, 'M', 261), +(5612, 'Bernard', 1895, 'M', 259), +(5613, 'Leroy', 1895, 'M', 249), +(5614, 'Jessie', 1895, 'M', 245), +(5615, 'Hugh', 1895, 'M', 243), +(5616, 'Leslie', 1895, 'M', 235), +(5617, 'Patrick', 1895, 'M', 233), +(5618, 'Stanley', 1895, 'M', 233), +(5619, 'Ed', 1895, 'M', 229), +(5620, 'Eddie', 1895, 'M', 228), +(5621, 'Anthony', 1895, 'M', 221), +(5622, 'Leon', 1895, 'M', 219), +(5623, 'Oliver', 1895, 'M', 216), +(5624, 'Archie', 1895, 'M', 212), +(5625, 'Horace', 1895, 'M', 211), +(5626, 'Norman', 1895, 'M', 211), +(5627, 'Philip', 1895, 'M', 211), +(5628, 'Theodore', 1895, 'M', 208), +(5629, 'Everett', 1895, 'M', 207), +(5630, 'Ira', 1895, 'M', 207), +(5631, 'Donald', 1895, 'M', 203), +(5632, 'Alexander', 1895, 'M', 199), +(5633, 'Allen', 1895, 'M', 196), +(5634, 'Victor', 1895, 'M', 196), +(5635, 'Cecil', 1895, 'M', 192), +(5636, 'August', 1895, 'M', 190), +(5637, 'Milton', 1895, 'M', 188), +(5638, 'Alvin', 1895, 'M', 179), +(5639, 'Stephen', 1895, 'M', 179), +(5640, 'Charley', 1895, 'M', 178), +(5641, 'Sidney', 1895, 'M', 178), +(5642, 'Isaac', 1895, 'M', 172), +(5643, 'Julius', 1895, 'M', 165), +(5644, 'Percy', 1895, 'M', 164), +(5645, 'Warren', 1895, 'M', 160), +(5646, 'Melvin', 1895, 'M', 158), +(5647, 'Wesley', 1895, 'M', 156), +(5648, 'Glenn', 1895, 'M', 150), +(5649, 'Bert', 1895, 'M', 149), +(5650, 'Marion', 1895, 'M', 148), +(5651, 'Virgil', 1895, 'M', 146), +(5652, 'Alex', 1895, 'M', 143), +(5653, 'Earnest', 1895, 'M', 143), +(5654, 'Mack', 1895, 'M', 140), +(5655, 'Dave', 1895, 'M', 139), +(5656, 'Emmett', 1895, 'M', 138), +(5657, 'Emil', 1895, 'M', 136), +(5658, 'Maurice', 1895, 'M', 136), +(5659, 'Rufus', 1895, 'M', 135), +(5660, 'Willis', 1895, 'M', 135), +(5661, 'Vincent', 1895, 'M', 134), +(5662, 'Otis', 1895, 'M', 133), +(5663, 'Gilbert', 1895, 'M', 132), +(5664, 'Vernon', 1895, 'M', 131), +(5665, 'Calvin', 1895, 'M', 130), +(5666, 'Kenneth', 1895, 'M', 127), +(5667, 'Morris', 1895, 'M', 125), +(5668, 'Wilbur', 1895, 'M', 125), +(5669, 'Johnnie', 1895, 'M', 120), +(5670, 'Lonnie', 1895, 'M', 120), +(5671, 'Nathan', 1895, 'M', 119), +(5672, 'Wallace', 1895, 'M', 119), +(5673, 'Willard', 1895, 'M', 113), +(5674, 'Matthew', 1895, 'M', 112), +(5675, 'Irving', 1895, 'M', 110), +(5676, 'Felix', 1895, 'M', 109), +(5677, 'Dennis', 1895, 'M', 108), +(5678, 'Nelson', 1895, 'M', 108), +(5679, 'Marvin', 1895, 'M', 107), +(5680, 'Elbert', 1895, 'M', 106), +(5681, 'Hubert', 1895, 'M', 106), +(5682, 'Rudolph', 1895, 'M', 106), +(5683, 'Gordon', 1895, 'M', 104), +(5684, 'Jose', 1895, 'M', 104), +(5685, 'Franklin', 1895, 'M', 103), +(5686, 'Glen', 1895, 'M', 102), +(5687, 'Jerry', 1895, 'M', 102), +(5688, 'Jess', 1895, 'M', 102), +(5689, 'Mark', 1895, 'M', 102), +(5690, 'Reuben', 1895, 'M', 102), +(5691, 'Ellis', 1895, 'M', 100), +(5692, 'Marshall', 1895, 'M', 100), +(5693, 'Mary', 1896, 'F', 13811), +(5694, 'Anna', 1896, 'F', 5860), +(5695, 'Helen', 1896, 'F', 4392), +(5696, 'Margaret', 1896, 'F', 4051), +(5697, 'Ruth', 1896, 'F', 3905), +(5698, 'Ethel', 1896, 'F', 3502), +(5699, 'Elizabeth', 1896, 'F', 3471), +(5700, 'Florence', 1896, 'F', 3323), +(5701, 'Marie', 1896, 'F', 3087), +(5702, 'Emma', 1896, 'F', 2872), +(5703, 'Lillian', 1896, 'F', 2702), +(5704, 'Alice', 1896, 'F', 2652), +(5705, 'Edna', 1896, 'F', 2604), +(5706, 'Clara', 1896, 'F', 2582), +(5707, 'Bertha', 1896, 'F', 2565), +(5708, 'Minnie', 1896, 'F', 2530), +(5709, 'Grace', 1896, 'F', 2485), +(5710, 'Bessie', 1896, 'F', 2435), +(5711, 'Annie', 1896, 'F', 2358), +(5712, 'Rose', 1896, 'F', 2341), +(5713, 'Mabel', 1896, 'F', 2283), +(5714, 'Hazel', 1896, 'F', 2226), +(5715, 'Gertrude', 1896, 'F', 2221), +(5716, 'Ida', 1896, 'F', 2159), +(5717, 'Pearl', 1896, 'F', 2101), +(5718, 'Martha', 1896, 'F', 2022), +(5719, 'Esther', 1896, 'F', 1964), +(5720, 'Frances', 1896, 'F', 1964), +(5721, 'Edith', 1896, 'F', 1932), +(5722, 'Myrtle', 1896, 'F', 1928), +(5723, 'Elsie', 1896, 'F', 1878), +(5724, 'Eva', 1896, 'F', 1779), +(5725, 'Gladys', 1896, 'F', 1757), +(5726, 'Nellie', 1896, 'F', 1696), +(5727, 'Sarah', 1896, 'F', 1691), +(5728, 'Ella', 1896, 'F', 1683), +(5729, 'Laura', 1896, 'F', 1665), +(5730, 'Agnes', 1896, 'F', 1654), +(5731, 'Mildred', 1896, 'F', 1620), +(5732, 'Catherine', 1896, 'F', 1594), +(5733, 'Irene', 1896, 'F', 1593), +(5734, 'Louise', 1896, 'F', 1531), +(5735, 'Lillie', 1896, 'F', 1483), +(5736, 'Julia', 1896, 'F', 1407), +(5737, 'Carrie', 1896, 'F', 1388), +(5738, 'Dorothy', 1896, 'F', 1366), +(5739, 'Hattie', 1896, 'F', 1320), +(5740, 'Lena', 1896, 'F', 1318), +(5741, 'Mattie', 1896, 'F', 1288), +(5742, 'Josephine', 1896, 'F', 1256), +(5743, 'Alma', 1896, 'F', 1243), +(5744, 'Cora', 1896, 'F', 1204), +(5745, 'Jennie', 1896, 'F', 1178), +(5746, 'Blanche', 1896, 'F', 1150), +(5747, 'Mae', 1896, 'F', 1148), +(5748, 'Maude', 1896, 'F', 1104), +(5749, 'Jessie', 1896, 'F', 1103), +(5750, 'Mamie', 1896, 'F', 1081), +(5751, 'Lucy', 1896, 'F', 1074), +(5752, 'Stella', 1896, 'F', 1054), +(5753, 'Katherine', 1896, 'F', 1047), +(5754, 'Viola', 1896, 'F', 1047), +(5755, 'Ada', 1896, 'F', 1041), +(5756, 'Lula', 1896, 'F', 1012), +(5757, 'Fannie', 1896, 'F', 1001), +(5758, 'Ruby', 1896, 'F', 994), +(5759, 'Marion', 1896, 'F', 987), +(5760, 'Dora', 1896, 'F', 874), +(5761, 'Maggie', 1896, 'F', 871), +(5762, 'Beatrice', 1896, 'F', 870), +(5763, 'Nora', 1896, 'F', 844), +(5764, 'Sadie', 1896, 'F', 827), +(5765, 'Ellen', 1896, 'F', 811), +(5766, 'Rosa', 1896, 'F', 808), +(5767, 'Pauline', 1896, 'F', 756), +(5768, 'Willie', 1896, 'F', 755), +(5769, 'Beulah', 1896, 'F', 750), +(5770, 'Marguerite', 1896, 'F', 725), +(5771, 'Susie', 1896, 'F', 718), +(5772, 'Effie', 1896, 'F', 716), +(5773, 'Vera', 1896, 'F', 675), +(5774, 'May', 1896, 'F', 671), +(5775, 'Daisy', 1896, 'F', 661), +(5776, 'Evelyn', 1896, 'F', 646), +(5777, 'Della', 1896, 'F', 642), +(5778, 'Lucille', 1896, 'F', 637), +(5779, 'Nettie', 1896, 'F', 628), +(5780, 'Kathryn', 1896, 'F', 625), +(5781, 'Virginia', 1896, 'F', 621), +(5782, 'Olive', 1896, 'F', 583), +(5783, 'Lydia', 1896, 'F', 580), +(5784, 'Lottie', 1896, 'F', 574), +(5785, 'Georgia', 1896, 'F', 562), +(5786, 'Leona', 1896, 'F', 556), +(5787, 'Hilda', 1896, 'F', 549), +(5788, 'Emily', 1896, 'F', 527), +(5789, 'Flora', 1896, 'F', 527), +(5790, 'Nancy', 1896, 'F', 527), +(5791, 'Katie', 1896, 'F', 516), +(5792, 'Lizzie', 1896, 'F', 508), +(5793, 'Sallie', 1896, 'F', 498), +(5794, 'Eleanor', 1896, 'F', 493), +(5795, 'Charlotte', 1896, 'F', 492), +(5796, 'Bernice', 1896, 'F', 489), +(5797, 'Ann', 1896, 'F', 488), +(5798, 'Addie', 1896, 'F', 485), +(5799, 'Etta', 1896, 'F', 484), +(5800, 'Theresa', 1896, 'F', 469), +(5801, 'Lola', 1896, 'F', 450), +(5802, 'Caroline', 1896, 'F', 437), +(5803, 'Harriet', 1896, 'F', 437), +(5804, 'Iva', 1896, 'F', 434), +(5805, 'Lela', 1896, 'F', 425), +(5806, 'Anne', 1896, 'F', 423), +(5807, 'Jane', 1896, 'F', 413), +(5808, 'Henrietta', 1896, 'F', 412), +(5809, 'Ollie', 1896, 'F', 409), +(5810, 'Ora', 1896, 'F', 408), +(5811, 'Nannie', 1896, 'F', 400), +(5812, 'Inez', 1896, 'F', 398), +(5813, 'Estelle', 1896, 'F', 392), +(5814, 'Loretta', 1896, 'F', 391), +(5815, 'Lois', 1896, 'F', 388), +(5816, 'Marjorie', 1896, 'F', 387), +(5817, 'Goldie', 1896, 'F', 384), +(5818, 'Essie', 1896, 'F', 381), +(5819, 'Mollie', 1896, 'F', 374), +(5820, 'Rebecca', 1896, 'F', 371), +(5821, 'Amanda', 1896, 'F', 367), +(5822, 'Mable', 1896, 'F', 367), +(5823, 'Amelia', 1896, 'F', 365), +(5824, 'Eula', 1896, 'F', 365), +(5825, 'Estella', 1896, 'F', 363), +(5826, 'Olga', 1896, 'F', 355), +(5827, 'Violet', 1896, 'F', 354), +(5828, 'Eunice', 1896, 'F', 351), +(5829, 'Rachel', 1896, 'F', 348), +(5830, 'Susan', 1896, 'F', 343), +(5831, 'Betty', 1896, 'F', 342), +(5832, 'Sylvia', 1896, 'F', 340), +(5833, 'Frieda', 1896, 'F', 339), +(5834, 'Matilda', 1896, 'F', 339), +(5835, 'Sara', 1896, 'F', 326), +(5836, 'Verna', 1896, 'F', 326), +(5837, 'Barbara', 1896, 'F', 324), +(5838, 'Hannah', 1896, 'F', 323), +(5839, 'Amy', 1896, 'F', 320), +(5840, 'Nina', 1896, 'F', 320), +(5841, 'Flossie', 1896, 'F', 315), +(5842, 'Rosie', 1896, 'F', 314), +(5843, 'Maria', 1896, 'F', 312), +(5844, 'Doris', 1896, 'F', 308), +(5845, 'Genevieve', 1896, 'F', 305), +(5846, 'Kate', 1896, 'F', 303), +(5847, 'Alta', 1896, 'F', 302), +(5848, 'Lucile', 1896, 'F', 300), +(5849, 'Maud', 1896, 'F', 298), +(5850, 'Victoria', 1896, 'F', 281), +(5851, 'Madeline', 1896, 'F', 279), +(5852, 'Sophia', 1896, 'F', 278), +(5853, 'Christine', 1896, 'F', 274), +(5854, 'Ola', 1896, 'F', 273), +(5855, 'Naomi', 1896, 'F', 269), +(5856, 'Marian', 1896, 'F', 267), +(5857, 'Augusta', 1896, 'F', 265), +(5858, 'Irma', 1896, 'F', 261), +(5859, 'Eliza', 1896, 'F', 260), +(5860, 'Thelma', 1896, 'F', 260), +(5861, 'Kathleen', 1896, 'F', 259), +(5862, 'Alberta', 1896, 'F', 258), +(5863, 'Celia', 1896, 'F', 258), +(5864, 'Sophie', 1896, 'F', 258), +(5865, 'Jean', 1896, 'F', 255), +(5866, 'Velma', 1896, 'F', 249), +(5867, 'Freda', 1896, 'F', 246), +(5868, 'Belle', 1896, 'F', 238), +(5869, 'Ina', 1896, 'F', 238), +(5870, 'Selma', 1896, 'F', 238), +(5871, 'Isabel', 1896, 'F', 232), +(5872, 'Luella', 1896, 'F', 230), +(5873, 'Lulu', 1896, 'F', 228), +(5874, 'Josie', 1896, 'F', 227), +(5875, 'Vivian', 1896, 'F', 224), +(5876, 'Janie', 1896, 'F', 223), +(5877, 'Allie', 1896, 'F', 221), +(5878, 'Fern', 1896, 'F', 218), +(5879, 'Nell', 1896, 'F', 215), +(5880, 'Millie', 1896, 'F', 213), +(5881, 'Callie', 1896, 'F', 212), +(5882, 'Winifred', 1896, 'F', 212), +(5883, 'Virgie', 1896, 'F', 211), +(5884, 'Teresa', 1896, 'F', 209), +(5885, 'Winnie', 1896, 'F', 205), +(5886, 'Rena', 1896, 'F', 203), +(5887, 'Lila', 1896, 'F', 201), +(5888, 'Elva', 1896, 'F', 198), +(5889, 'Geneva', 1896, 'F', 197), +(5890, 'Norma', 1896, 'F', 197), +(5891, 'Erma', 1896, 'F', 192), +(5892, 'Cecelia', 1896, 'F', 190), +(5893, 'Delia', 1896, 'F', 190), +(5894, 'Tillie', 1896, 'F', 189), +(5895, 'Adeline', 1896, 'F', 187), +(5896, 'Mayme', 1896, 'F', 186), +(5897, 'Opal', 1896, 'F', 186), +(5898, 'Sally', 1896, 'F', 185), +(5899, 'Bertie', 1896, 'F', 183), +(5900, 'Isabelle', 1896, 'F', 180), +(5901, 'Lora', 1896, 'F', 179), +(5902, 'Jeanette', 1896, 'F', 172), +(5903, 'Leah', 1896, 'F', 169), +(5904, 'Miriam', 1896, 'F', 169), +(5905, 'Cecilia', 1896, 'F', 168), +(5906, 'Dollie', 1896, 'F', 167), +(5907, 'Gussie', 1896, 'F', 167), +(5908, 'Juanita', 1896, 'F', 165), +(5909, 'Bonnie', 1896, 'F', 163), +(5910, 'Birdie', 1896, 'F', 162), +(5911, 'Elma', 1896, 'F', 160), +(5912, 'Myra', 1896, 'F', 158), +(5913, 'Johanna', 1896, 'F', 157), +(5914, 'Lelia', 1896, 'F', 153), +(5915, 'Adele', 1896, 'F', 152), +(5916, 'Bess', 1896, 'F', 151), +(5917, 'Katharine', 1896, 'F', 151), +(5918, 'Hester', 1896, 'F', 150), +(5919, 'Carolyn', 1896, 'F', 149), +(5920, 'Leila', 1896, 'F', 149), +(5921, 'Regina', 1896, 'F', 149), +(5922, 'Veronica', 1896, 'F', 145), +(5923, 'Cecile', 1896, 'F', 144), +(5924, 'Muriel', 1896, 'F', 144), +(5925, 'Leola', 1896, 'F', 141), +(5926, 'Anita', 1896, 'F', 139), +(5927, 'Louisa', 1896, 'F', 138), +(5928, 'Jeannette', 1896, 'F', 135), +(5929, 'Cleo', 1896, 'F', 134), +(5930, 'Hallie', 1896, 'F', 134), +(5931, 'Lenora', 1896, 'F', 134), +(5932, 'Faye', 1896, 'F', 132), +(5933, 'Maudie', 1896, 'F', 132), +(5934, 'Roxie', 1896, 'F', 132), +(5935, 'Harriett', 1896, 'F', 131), +(5936, 'Hettie', 1896, 'F', 131), +(5937, 'Adelaide', 1896, 'F', 130), +(5938, 'Cornelia', 1896, 'F', 130), +(5939, 'Lou', 1896, 'F', 130), +(5940, 'Margie', 1896, 'F', 130), +(5941, 'Rhoda', 1896, 'F', 130), +(5942, 'Zella', 1896, 'F', 130), +(5943, 'Elsa', 1896, 'F', 129), +(5944, 'Hulda', 1896, 'F', 129), +(5945, 'Letha', 1896, 'F', 128), +(5946, 'Ila', 1896, 'F', 126), +(5947, 'Bettie', 1896, 'F', 125), +(5948, 'Lucinda', 1896, 'F', 124), +(5949, 'Meta', 1896, 'F', 122), +(5950, 'Abbie', 1896, 'F', 121), +(5951, 'Lilly', 1896, 'F', 121), +(5952, 'Mathilda', 1896, 'F', 121), +(5953, 'Sue', 1896, 'F', 121), +(5954, 'Lessie', 1896, 'F', 120), +(5955, 'Gertie', 1896, 'F', 119), +(5956, 'Christina', 1896, 'F', 118), +(5957, 'Helena', 1896, 'F', 118), +(5958, 'Lorena', 1896, 'F', 118), +(5959, 'Alvina', 1896, 'F', 114), +(5960, 'Elvira', 1896, 'F', 114), +(5961, 'Francis', 1896, 'F', 114), +(5962, 'Olivia', 1896, 'F', 114), +(5963, 'Roberta', 1896, 'F', 113), +(5964, 'Neva', 1896, 'F', 112), +(5965, 'Madge', 1896, 'F', 109), +(5966, 'Reba', 1896, 'F', 109), +(5967, 'Rita', 1896, 'F', 109), +(5968, 'Audrey', 1896, 'F', 108), +(5969, 'Cecil', 1896, 'F', 108), +(5970, 'Dessie', 1896, 'F', 108), +(5971, 'Fanny', 1896, 'F', 108), +(5972, 'Nola', 1896, 'F', 108), +(5973, 'Fay', 1896, 'F', 107), +(5974, 'Mina', 1896, 'F', 107), +(5975, 'Claire', 1896, 'F', 106), +(5976, 'Elnora', 1896, 'F', 106), +(5977, 'Phoebe', 1896, 'F', 106), +(5978, 'Wilma', 1896, 'F', 105), +(5979, 'Linda', 1896, 'F', 104), +(5980, 'Wilhelmina', 1896, 'F', 103), +(5981, 'Corinne', 1896, 'F', 102), +(5982, 'Janet', 1896, 'F', 102), +(5983, 'Helene', 1896, 'F', 100), +(5984, 'Lily', 1896, 'F', 100), +(5985, 'John', 1896, 'M', 8139), +(5986, 'William', 1896, 'M', 7747), +(5987, 'James', 1896, 'M', 5207), +(5988, 'George', 1896, 'M', 4286), +(5989, 'Charles', 1896, 'M', 3639), +(5990, 'Joseph', 1896, 'M', 3051), +(5991, 'Frank', 1896, 'M', 2845), +(5992, 'Robert', 1896, 'M', 2719), +(5993, 'Edward', 1896, 'M', 2296), +(5994, 'Henry', 1896, 'M', 2183), +(5995, 'Harry', 1896, 'M', 2091), +(5996, 'Thomas', 1896, 'M', 2088), +(5997, 'Walter', 1896, 'M', 2017), +(5998, 'Arthur', 1896, 'M', 1821), +(5999, 'Albert', 1896, 'M', 1434), +(6000, 'Fred', 1896, 'M', 1393), +(6001, 'Clarence', 1896, 'M', 1254), +(6002, 'Willie', 1896, 'M', 1092), +(6003, 'Roy', 1896, 'M', 1027), +(6004, 'Paul', 1896, 'M', 964), +(6005, 'Earl', 1896, 'M', 892), +(6006, 'Louis', 1896, 'M', 871), +(6007, 'Harold', 1896, 'M', 862), +(6008, 'Raymond', 1896, 'M', 859), +(6009, 'Carl', 1896, 'M', 852), +(6010, 'Richard', 1896, 'M', 833), +(6011, 'Joe', 1896, 'M', 767), +(6012, 'David', 1896, 'M', 765), +(6013, 'Ernest', 1896, 'M', 764), +(6014, 'Ralph', 1896, 'M', 746), +(6015, 'Samuel', 1896, 'M', 734), +(6016, 'Charlie', 1896, 'M', 714), +(6017, 'Howard', 1896, 'M', 677), +(6018, 'Herbert', 1896, 'M', 635), +(6019, 'Jesse', 1896, 'M', 586), +(6020, 'Elmer', 1896, 'M', 576), +(6021, 'Andrew', 1896, 'M', 566), +(6022, 'Daniel', 1896, 'M', 561), +(6023, 'Francis', 1896, 'M', 551), +(6024, 'Jack', 1896, 'M', 539), +(6025, 'Oscar', 1896, 'M', 539), +(6026, 'Alfred', 1896, 'M', 527), +(6027, 'Sam', 1896, 'M', 518), +(6028, 'Will', 1896, 'M', 508), +(6029, 'Eugene', 1896, 'M', 507), +(6030, 'Lawrence', 1896, 'M', 499), +(6031, 'Leo', 1896, 'M', 497), +(6032, 'Lee', 1896, 'M', 455), +(6033, 'Herman', 1896, 'M', 427), +(6034, 'Ray', 1896, 'M', 426), +(6035, 'Benjamin', 1896, 'M', 416), +(6036, 'Peter', 1896, 'M', 402), +(6037, 'Michael', 1896, 'M', 400), +(6038, 'Claude', 1896, 'M', 398), +(6039, 'Floyd', 1896, 'M', 396), +(6040, 'Lewis', 1896, 'M', 386), +(6041, 'Frederick', 1896, 'M', 381), +(6042, 'Clyde', 1896, 'M', 372), +(6043, 'Edwin', 1896, 'M', 351), +(6044, 'Leonard', 1896, 'M', 350), +(6045, 'Martin', 1896, 'M', 343), +(6046, 'Tom', 1896, 'M', 339), +(6047, 'Chester', 1896, 'M', 329), +(6048, 'Russell', 1896, 'M', 327), +(6049, 'Lester', 1896, 'M', 318), +(6050, 'Clifford', 1896, 'M', 311), +(6051, 'Lloyd', 1896, 'M', 308), +(6052, 'Edgar', 1896, 'M', 306), +(6053, 'Ben', 1896, 'M', 299), +(6054, 'Harvey', 1896, 'M', 292), +(6055, 'Jim', 1896, 'M', 281), +(6056, 'Leroy', 1896, 'M', 278), +(6057, 'Anthony', 1896, 'M', 276), +(6058, 'Luther', 1896, 'M', 265), +(6059, 'Hugh', 1896, 'M', 263), +(6060, 'Eddie', 1896, 'M', 262), +(6061, 'Guy', 1896, 'M', 262), +(6062, 'Stanley', 1896, 'M', 259), +(6063, 'Homer', 1896, 'M', 258), +(6064, 'Otto', 1896, 'M', 250), +(6065, 'Ed', 1896, 'M', 246), +(6066, 'Bernard', 1896, 'M', 241), +(6067, 'Jacob', 1896, 'M', 241), +(6068, 'Theodore', 1896, 'M', 241), +(6069, 'Leslie', 1896, 'M', 237), +(6070, 'Leon', 1896, 'M', 235), +(6071, 'Alexander', 1896, 'M', 232), +(6072, 'Archie', 1896, 'M', 230), +(6073, 'Jessie', 1896, 'M', 229), +(6074, 'Everett', 1896, 'M', 224), +(6075, 'Allen', 1896, 'M', 219), +(6076, 'Philip', 1896, 'M', 218), +(6077, 'Patrick', 1896, 'M', 214), +(6078, 'Donald', 1896, 'M', 211), +(6079, 'Horace', 1896, 'M', 204), +(6080, 'Victor', 1896, 'M', 201), +(6081, 'Cecil', 1896, 'M', 200), +(6082, 'Milton', 1896, 'M', 194), +(6083, 'Oliver', 1896, 'M', 194), +(6084, 'Isaac', 1896, 'M', 191), +(6085, 'Ira', 1896, 'M', 190), +(6086, 'Alvin', 1896, 'M', 183), +(6087, 'August', 1896, 'M', 180), +(6088, 'Norman', 1896, 'M', 178), +(6089, 'Sidney', 1896, 'M', 176), +(6090, 'Kenneth', 1896, 'M', 175), +(6091, 'Glenn', 1896, 'M', 174), +(6092, 'Julius', 1896, 'M', 174), +(6093, 'Bert', 1896, 'M', 173), +(6094, 'Marion', 1896, 'M', 172), +(6095, 'Charley', 1896, 'M', 168), +(6096, 'Alex', 1896, 'M', 165), +(6097, 'Stephen', 1896, 'M', 164), +(6098, 'Lonnie', 1896, 'M', 159), +(6099, 'Melvin', 1896, 'M', 159), +(6100, 'Bryan', 1896, 'M', 157), +(6101, 'Percy', 1896, 'M', 157), +(6102, 'Willard', 1896, 'M', 152), +(6103, 'Mack', 1896, 'M', 148), +(6104, 'Max', 1896, 'M', 145), +(6105, 'Rufus', 1896, 'M', 145), +(6106, 'Wesley', 1896, 'M', 145), +(6107, 'Willis', 1896, 'M', 145), +(6108, 'Earnest', 1896, 'M', 144), +(6109, 'Emil', 1896, 'M', 143), +(6110, 'Virgil', 1896, 'M', 138), +(6111, 'Morris', 1896, 'M', 136), +(6112, 'Hobart', 1896, 'M', 135), +(6113, 'Dan', 1896, 'M', 133), +(6114, 'Wallace', 1896, 'M', 130), +(6115, 'Gilbert', 1896, 'M', 129), +(6116, 'Vernon', 1896, 'M', 129), +(6117, 'Maurice', 1896, 'M', 127), +(6118, 'Warren', 1896, 'M', 125), +(6119, 'Otis', 1896, 'M', 124), +(6120, 'Matthew', 1896, 'M', 123), +(6121, 'Mckinley', 1896, 'M', 121), +(6122, 'Mark', 1896, 'M', 120), +(6123, 'Wilbur', 1896, 'M', 120), +(6124, 'Hubert', 1896, 'M', 119), +(6125, 'Dave', 1896, 'M', 118), +(6126, 'Marshall', 1896, 'M', 118), +(6127, 'Gordon', 1896, 'M', 117), +(6128, 'Johnnie', 1896, 'M', 116), +(6129, 'Emmett', 1896, 'M', 113), +(6130, 'Glen', 1896, 'M', 113), +(6131, 'Vincent', 1896, 'M', 112), +(6132, 'Perry', 1896, 'M', 111), +(6133, 'Sylvester', 1896, 'M', 111), +(6134, 'Amos', 1896, 'M', 110), +(6135, 'Edmund', 1896, 'M', 110), +(6136, 'Nathan', 1896, 'M', 110), +(6137, 'Abraham', 1896, 'M', 109), +(6138, 'Rudolph', 1896, 'M', 108), +(6139, 'Curtis', 1896, 'M', 107), +(6140, 'Ellis', 1896, 'M', 106), +(6141, 'Nicholas', 1896, 'M', 106), +(6142, 'Jose', 1896, 'M', 104), +(6143, 'Manuel', 1896, 'M', 104), +(6144, 'Arnold', 1896, 'M', 102), +(6145, 'Clayton', 1896, 'M', 102), +(6146, 'Sherman', 1896, 'M', 100), +(6147, 'Mary', 1897, 'F', 13413), +(6148, 'Anna', 1897, 'F', 5429), +(6149, 'Helen', 1897, 'F', 4519), +(6150, 'Margaret', 1897, 'F', 4146), +(6151, 'Ruth', 1897, 'F', 3878), +(6152, 'Elizabeth', 1897, 'F', 3442), +(6153, 'Florence', 1897, 'F', 3369), +(6154, 'Ethel', 1897, 'F', 3182), +(6155, 'Marie', 1897, 'F', 3078), +(6156, 'Emma', 1897, 'F', 2698), +(6157, 'Lillian', 1897, 'F', 2683), +(6158, 'Edna', 1897, 'F', 2567), +(6159, 'Bertha', 1897, 'F', 2502), +(6160, 'Grace', 1897, 'F', 2458), +(6161, 'Clara', 1897, 'F', 2454), +(6162, 'Alice', 1897, 'F', 2431), +(6163, 'Bessie', 1897, 'F', 2407), +(6164, 'Hazel', 1897, 'F', 2339), +(6165, 'Rose', 1897, 'F', 2316), +(6166, 'Annie', 1897, 'F', 2307), +(6167, 'Minnie', 1897, 'F', 2284), +(6168, 'Mabel', 1897, 'F', 2222), +(6169, 'Gertrude', 1897, 'F', 2135), +(6170, 'Ida', 1897, 'F', 2108), +(6171, 'Pearl', 1897, 'F', 2076), +(6172, 'Martha', 1897, 'F', 1990), +(6173, 'Frances', 1897, 'F', 1975), +(6174, 'Esther', 1897, 'F', 1911), +(6175, 'Myrtle', 1897, 'F', 1833), +(6176, 'Edith', 1897, 'F', 1823), +(6177, 'Elsie', 1897, 'F', 1763), +(6178, 'Gladys', 1897, 'F', 1737), +(6179, 'Mildred', 1897, 'F', 1723), +(6180, 'Sarah', 1897, 'F', 1713), +(6181, 'Eva', 1897, 'F', 1709), +(6182, 'Ella', 1897, 'F', 1708), +(6183, 'Nellie', 1897, 'F', 1693), +(6184, 'Irene', 1897, 'F', 1587), +(6185, 'Laura', 1897, 'F', 1585), +(6186, 'Agnes', 1897, 'F', 1579), +(6187, 'Louise', 1897, 'F', 1563), +(6188, 'Catherine', 1897, 'F', 1511), +(6189, 'Dorothy', 1897, 'F', 1472), +(6190, 'Lillie', 1897, 'F', 1401), +(6191, 'Julia', 1897, 'F', 1380), +(6192, 'Carrie', 1897, 'F', 1365), +(6193, 'Josephine', 1897, 'F', 1267), +(6194, 'Hattie', 1897, 'F', 1251), +(6195, 'Cora', 1897, 'F', 1246), +(6196, 'Lena', 1897, 'F', 1239), +(6197, 'Alma', 1897, 'F', 1213), +(6198, 'Jessie', 1897, 'F', 1191), +(6199, 'Mattie', 1897, 'F', 1181), +(6200, 'Mae', 1897, 'F', 1144), +(6201, 'Blanche', 1897, 'F', 1092), +(6202, 'Jennie', 1897, 'F', 1074), +(6203, 'Ruby', 1897, 'F', 1025), +(6204, 'Viola', 1897, 'F', 1017), +(6205, 'Mamie', 1897, 'F', 1006), +(6206, 'Marion', 1897, 'F', 994), +(6207, 'Lucy', 1897, 'F', 984), +(6208, 'Maude', 1897, 'F', 984), +(6209, 'Lula', 1897, 'F', 971), +(6210, 'Stella', 1897, 'F', 966), +(6211, 'Katherine', 1897, 'F', 962), +(6212, 'Ada', 1897, 'F', 956), +(6213, 'Fannie', 1897, 'F', 956), +(6214, 'Beatrice', 1897, 'F', 942), +(6215, 'Dora', 1897, 'F', 862), +(6216, 'Willie', 1897, 'F', 818), +(6217, 'Nora', 1897, 'F', 812), +(6218, 'Pauline', 1897, 'F', 778), +(6219, 'Vera', 1897, 'F', 776), +(6220, 'Rosa', 1897, 'F', 770), +(6221, 'Maggie', 1897, 'F', 760), +(6222, 'Sadie', 1897, 'F', 757), +(6223, 'Ellen', 1897, 'F', 733), +(6224, 'Marguerite', 1897, 'F', 728), +(6225, 'Effie', 1897, 'F', 698), +(6226, 'Evelyn', 1897, 'F', 691), +(6227, 'Beulah', 1897, 'F', 688), +(6228, 'Lucille', 1897, 'F', 648), +(6229, 'Lydia', 1897, 'F', 642), +(6230, 'Virginia', 1897, 'F', 638), +(6231, 'Susie', 1897, 'F', 626), +(6232, 'Daisy', 1897, 'F', 624), +(6233, 'Della', 1897, 'F', 624), +(6234, 'Emily', 1897, 'F', 619), +(6235, 'Leona', 1897, 'F', 619), +(6236, 'Nettie', 1897, 'F', 614), +(6237, 'May', 1897, 'F', 595), +(6238, 'Olive', 1897, 'F', 583), +(6239, 'Kathryn', 1897, 'F', 570), +(6240, 'Hilda', 1897, 'F', 561), +(6241, 'Eleanor', 1897, 'F', 559), +(6242, 'Nancy', 1897, 'F', 553), +(6243, 'Ann', 1897, 'F', 545), +(6244, 'Sallie', 1897, 'F', 545), +(6245, 'Lizzie', 1897, 'F', 543), +(6246, 'Theresa', 1897, 'F', 533), +(6247, 'Georgia', 1897, 'F', 529), +(6248, 'Lottie', 1897, 'F', 523), +(6249, 'Bernice', 1897, 'F', 519), +(6250, 'Charlotte', 1897, 'F', 492), +(6251, 'Katie', 1897, 'F', 492), +(6252, 'Flora', 1897, 'F', 488), +(6253, 'Lola', 1897, 'F', 487), +(6254, 'Anne', 1897, 'F', 479), +(6255, 'Etta', 1897, 'F', 467), +(6256, 'Addie', 1897, 'F', 461), +(6257, 'Lois', 1897, 'F', 457), +(6258, 'Caroline', 1897, 'F', 456), +(6259, 'Ollie', 1897, 'F', 455), +(6260, 'Iva', 1897, 'F', 454), +(6261, 'Estelle', 1897, 'F', 439), +(6262, 'Lela', 1897, 'F', 438), +(6263, 'Thelma', 1897, 'F', 419), +(6264, 'Henrietta', 1897, 'F', 416), +(6265, 'Violet', 1897, 'F', 411), +(6266, 'Marjorie', 1897, 'F', 410), +(6267, 'Amelia', 1897, 'F', 408), +(6268, 'Ora', 1897, 'F', 408), +(6269, 'Loretta', 1897, 'F', 406), +(6270, 'Goldie', 1897, 'F', 400), +(6271, 'Jane', 1897, 'F', 396), +(6272, 'Inez', 1897, 'F', 391), +(6273, 'Eunice', 1897, 'F', 387), +(6274, 'Harriet', 1897, 'F', 383), +(6275, 'Rebecca', 1897, 'F', 376), +(6276, 'Genevieve', 1897, 'F', 371), +(6277, 'Mable', 1897, 'F', 371), +(6278, 'Betty', 1897, 'F', 367), +(6279, 'Olga', 1897, 'F', 364), +(6280, 'Eula', 1897, 'F', 359), +(6281, 'Sylvia', 1897, 'F', 357), +(6282, 'Amanda', 1897, 'F', 354), +(6283, 'Sara', 1897, 'F', 353), +(6284, 'Verna', 1897, 'F', 350), +(6285, 'Doris', 1897, 'F', 349), +(6286, 'Susan', 1897, 'F', 341), +(6287, 'Rosie', 1897, 'F', 339), +(6288, 'Nina', 1897, 'F', 336), +(6289, 'Mollie', 1897, 'F', 333), +(6290, 'Nannie', 1897, 'F', 333), +(6291, 'Essie', 1897, 'F', 329), +(6292, 'Matilda', 1897, 'F', 326), +(6293, 'Estella', 1897, 'F', 317), +(6294, 'Amy', 1897, 'F', 315), +(6295, 'Marian', 1897, 'F', 309), +(6296, 'Irma', 1897, 'F', 308), +(6297, 'Sophie', 1897, 'F', 308), +(6298, 'Maria', 1897, 'F', 304), +(6299, 'Barbara', 1897, 'F', 299), +(6300, 'Rachel', 1897, 'F', 297), +(6301, 'Alta', 1897, 'F', 295), +(6302, 'Alberta', 1897, 'F', 294), +(6303, 'Madeline', 1897, 'F', 290), +(6304, 'Hannah', 1897, 'F', 288), +(6305, 'Christine', 1897, 'F', 281), +(6306, 'Velma', 1897, 'F', 280), +(6307, 'Freda', 1897, 'F', 279), +(6308, 'Flossie', 1897, 'F', 278), +(6309, 'Frieda', 1897, 'F', 278), +(6310, 'Sophia', 1897, 'F', 278), +(6311, 'Maud', 1897, 'F', 270), +(6312, 'Lucile', 1897, 'F', 269), +(6313, 'Kate', 1897, 'F', 267), +(6314, 'Ola', 1897, 'F', 266), +(6315, 'Allie', 1897, 'F', 265), +(6316, 'Ina', 1897, 'F', 262), +(6317, 'Celia', 1897, 'F', 260), +(6318, 'Jean', 1897, 'F', 258), +(6319, 'Kathleen', 1897, 'F', 250), +(6320, 'Janie', 1897, 'F', 247), +(6321, 'Eliza', 1897, 'F', 244), +(6322, 'Naomi', 1897, 'F', 241), +(6323, 'Vivian', 1897, 'F', 241), +(6324, 'Fern', 1897, 'F', 237), +(6325, 'Augusta', 1897, 'F', 236), +(6326, 'Victoria', 1897, 'F', 234), +(6327, 'Callie', 1897, 'F', 231), +(6328, 'Opal', 1897, 'F', 230), +(6329, 'Winifred', 1897, 'F', 217), +(6330, 'Isabelle', 1897, 'F', 215), +(6331, 'Erma', 1897, 'F', 213); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(6332, 'Belle', 1897, 'F', 212), +(6333, 'Cecelia', 1897, 'F', 212), +(6334, 'Isabel', 1897, 'F', 210), +(6335, 'Josie', 1897, 'F', 209), +(6336, 'Nell', 1897, 'F', 209), +(6337, 'Mayme', 1897, 'F', 207), +(6338, 'Luella', 1897, 'F', 206), +(6339, 'Sally', 1897, 'F', 206), +(6340, 'Millie', 1897, 'F', 204), +(6341, 'Norma', 1897, 'F', 200), +(6342, 'Lulu', 1897, 'F', 199), +(6343, 'Tillie', 1897, 'F', 199), +(6344, 'Elva', 1897, 'F', 198), +(6345, 'Virgie', 1897, 'F', 194), +(6346, 'Rena', 1897, 'F', 193), +(6347, 'Miriam', 1897, 'F', 188), +(6348, 'Adele', 1897, 'F', 187), +(6349, 'Delia', 1897, 'F', 186), +(6350, 'Geneva', 1897, 'F', 183), +(6351, 'Selma', 1897, 'F', 183), +(6352, 'Dollie', 1897, 'F', 176), +(6353, 'Lila', 1897, 'F', 176), +(6354, 'Regina', 1897, 'F', 176), +(6355, 'Bertie', 1897, 'F', 175), +(6356, 'Juanita', 1897, 'F', 175), +(6357, 'Adeline', 1897, 'F', 172), +(6358, 'Lora', 1897, 'F', 169), +(6359, 'Gussie', 1897, 'F', 166), +(6360, 'Cecilia', 1897, 'F', 160), +(6361, 'Teresa', 1897, 'F', 159), +(6362, 'Jeanette', 1897, 'F', 158), +(6363, 'Leila', 1897, 'F', 157), +(6364, 'Elma', 1897, 'F', 156), +(6365, 'Veronica', 1897, 'F', 155), +(6366, 'Winnie', 1897, 'F', 155), +(6367, 'Hallie', 1897, 'F', 152), +(6368, 'Lelia', 1897, 'F', 152), +(6369, 'Muriel', 1897, 'F', 152), +(6370, 'Birdie', 1897, 'F', 151), +(6371, 'Faye', 1897, 'F', 148), +(6372, 'Leah', 1897, 'F', 147), +(6373, 'Carolyn', 1897, 'F', 145), +(6374, 'Katharine', 1897, 'F', 145), +(6375, 'Sue', 1897, 'F', 145), +(6376, 'Anita', 1897, 'F', 144), +(6377, 'Jeannette', 1897, 'F', 144), +(6378, 'Roxie', 1897, 'F', 144), +(6379, 'Adelaide', 1897, 'F', 142), +(6380, 'Bonnie', 1897, 'F', 142), +(6381, 'Cornelia', 1897, 'F', 141), +(6382, 'Fay', 1897, 'F', 141), +(6383, 'Hester', 1897, 'F', 140), +(6384, 'Letha', 1897, 'F', 140), +(6385, 'Bettie', 1897, 'F', 138), +(6386, 'Cecil', 1897, 'F', 138), +(6387, 'Maudie', 1897, 'F', 138), +(6388, 'Myra', 1897, 'F', 138), +(6389, 'Bess', 1897, 'F', 137), +(6390, 'Lenora', 1897, 'F', 133), +(6391, 'Cleo', 1897, 'F', 131), +(6392, 'Helena', 1897, 'F', 131), +(6393, 'Olivia', 1897, 'F', 131), +(6394, 'Wilma', 1897, 'F', 131), +(6395, 'Hulda', 1897, 'F', 130), +(6396, 'Roberta', 1897, 'F', 130), +(6397, 'Elsa', 1897, 'F', 128), +(6398, 'Zella', 1897, 'F', 128), +(6399, 'Rhoda', 1897, 'F', 127), +(6400, 'Madge', 1897, 'F', 125), +(6401, 'Neva', 1897, 'F', 124), +(6402, 'Johanna', 1897, 'F', 123), +(6403, 'Cecile', 1897, 'F', 121), +(6404, 'Leola', 1897, 'F', 121), +(6405, 'Christina', 1897, 'F', 120), +(6406, 'Ila', 1897, 'F', 119), +(6407, 'Harriett', 1897, 'F', 118), +(6408, 'Hettie', 1897, 'F', 118), +(6409, 'Lorena', 1897, 'F', 117), +(6410, 'Rita', 1897, 'F', 117), +(6411, 'Gracie', 1897, 'F', 116), +(6412, 'Francis', 1897, 'F', 115), +(6413, 'Lou', 1897, 'F', 114), +(6414, 'Margie', 1897, 'F', 114), +(6415, 'Lily', 1897, 'F', 113), +(6416, 'Dessie', 1897, 'F', 112), +(6417, 'Louisa', 1897, 'F', 109), +(6418, 'Meta', 1897, 'F', 109), +(6419, 'Helene', 1897, 'F', 108), +(6420, 'Mathilda', 1897, 'F', 108), +(6421, 'Claire', 1897, 'F', 105), +(6422, 'Pearlie', 1897, 'F', 105), +(6423, 'Zelma', 1897, 'F', 104), +(6424, 'Elvira', 1897, 'F', 103), +(6425, 'Janet', 1897, 'F', 103), +(6426, 'Ophelia', 1897, 'F', 103), +(6427, 'Rosalie', 1897, 'F', 102), +(6428, 'Lessie', 1897, 'F', 101), +(6429, 'Catharine', 1897, 'F', 100), +(6430, 'John', 1897, 'M', 7550), +(6431, 'William', 1897, 'M', 7199), +(6432, 'James', 1897, 'M', 5113), +(6433, 'George', 1897, 'M', 4078), +(6434, 'Charles', 1897, 'M', 3341), +(6435, 'Joseph', 1897, 'M', 2827), +(6436, 'Frank', 1897, 'M', 2726), +(6437, 'Robert', 1897, 'M', 2701), +(6438, 'Edward', 1897, 'M', 2121), +(6439, 'Henry', 1897, 'M', 1994), +(6440, 'Thomas', 1897, 'M', 1980), +(6441, 'Walter', 1897, 'M', 1895), +(6442, 'Harry', 1897, 'M', 1879), +(6443, 'Arthur', 1897, 'M', 1647), +(6444, 'Albert', 1897, 'M', 1377), +(6445, 'Fred', 1897, 'M', 1301), +(6446, 'Clarence', 1897, 'M', 1201), +(6447, 'Willie', 1897, 'M', 1151), +(6448, 'Roy', 1897, 'M', 999), +(6449, 'Paul', 1897, 'M', 923), +(6450, 'Harold', 1897, 'M', 860), +(6451, 'Raymond', 1897, 'M', 837), +(6452, 'Louis', 1897, 'M', 831), +(6453, 'Earl', 1897, 'M', 829), +(6454, 'Carl', 1897, 'M', 828), +(6455, 'Joe', 1897, 'M', 798), +(6456, 'Ernest', 1897, 'M', 785), +(6457, 'Samuel', 1897, 'M', 759), +(6458, 'David', 1897, 'M', 730), +(6459, 'Charlie', 1897, 'M', 714), +(6460, 'Richard', 1897, 'M', 702), +(6461, 'Ralph', 1897, 'M', 697), +(6462, 'Howard', 1897, 'M', 634), +(6463, 'Elmer', 1897, 'M', 587), +(6464, 'Herbert', 1897, 'M', 565), +(6465, 'Andrew', 1897, 'M', 555), +(6466, 'Oscar', 1897, 'M', 543), +(6467, 'Jesse', 1897, 'M', 529), +(6468, 'Daniel', 1897, 'M', 520), +(6469, 'Alfred', 1897, 'M', 513), +(6470, 'Lawrence', 1897, 'M', 505), +(6471, 'Jack', 1897, 'M', 497), +(6472, 'Francis', 1897, 'M', 496), +(6473, 'Will', 1897, 'M', 491), +(6474, 'Sam', 1897, 'M', 478), +(6475, 'Leo', 1897, 'M', 462), +(6476, 'Lee', 1897, 'M', 453), +(6477, 'Floyd', 1897, 'M', 451), +(6478, 'Eugene', 1897, 'M', 447), +(6479, 'Herman', 1897, 'M', 412), +(6480, 'Peter', 1897, 'M', 397), +(6481, 'Ray', 1897, 'M', 396), +(6482, 'Edwin', 1897, 'M', 380), +(6483, 'Benjamin', 1897, 'M', 378), +(6484, 'Lewis', 1897, 'M', 378), +(6485, 'Frederick', 1897, 'M', 369), +(6486, 'Michael', 1897, 'M', 368), +(6487, 'Clyde', 1897, 'M', 359), +(6488, 'Claude', 1897, 'M', 345), +(6489, 'Martin', 1897, 'M', 312), +(6490, 'Leonard', 1897, 'M', 310), +(6491, 'Lester', 1897, 'M', 310), +(6492, 'Tom', 1897, 'M', 298), +(6493, 'Russell', 1897, 'M', 295), +(6494, 'Ben', 1897, 'M', 291), +(6495, 'Leroy', 1897, 'M', 291), +(6496, 'Chester', 1897, 'M', 290), +(6497, 'Clifford', 1897, 'M', 285), +(6498, 'Edgar', 1897, 'M', 278), +(6499, 'Homer', 1897, 'M', 278), +(6500, 'Luther', 1897, 'M', 271), +(6501, 'Harvey', 1897, 'M', 268), +(6502, 'Eddie', 1897, 'M', 263), +(6503, 'Lloyd', 1897, 'M', 258), +(6504, 'Jim', 1897, 'M', 252), +(6505, 'Anthony', 1897, 'M', 249), +(6506, 'Stanley', 1897, 'M', 240), +(6507, 'Bernard', 1897, 'M', 234), +(6508, 'Jessie', 1897, 'M', 234), +(6509, 'Otto', 1897, 'M', 234), +(6510, 'Leon', 1897, 'M', 229), +(6511, 'Allen', 1897, 'M', 226), +(6512, 'Leslie', 1897, 'M', 222), +(6513, 'Cecil', 1897, 'M', 216), +(6514, 'Theodore', 1897, 'M', 215), +(6515, 'Hugh', 1897, 'M', 213), +(6516, 'Patrick', 1897, 'M', 210), +(6517, 'Jacob', 1897, 'M', 204), +(6518, 'Philip', 1897, 'M', 200), +(6519, 'Ed', 1897, 'M', 198), +(6520, 'Norman', 1897, 'M', 197), +(6521, 'Donald', 1897, 'M', 195), +(6522, 'Guy', 1897, 'M', 195), +(6523, 'Stephen', 1897, 'M', 194), +(6524, 'Archie', 1897, 'M', 190), +(6525, 'Victor', 1897, 'M', 190), +(6526, 'Alvin', 1897, 'M', 186), +(6527, 'Percy', 1897, 'M', 183), +(6528, 'Ira', 1897, 'M', 180), +(6529, 'Everett', 1897, 'M', 179), +(6530, 'Isaac', 1897, 'M', 175), +(6531, 'Oliver', 1897, 'M', 174), +(6532, 'Alexander', 1897, 'M', 172), +(6533, 'Glenn', 1897, 'M', 171), +(6534, 'Kenneth', 1897, 'M', 164), +(6535, 'Milton', 1897, 'M', 161), +(6536, 'Horace', 1897, 'M', 160), +(6537, 'Julius', 1897, 'M', 159), +(6538, 'Mack', 1897, 'M', 159), +(6539, 'Virgil', 1897, 'M', 159), +(6540, 'Dewey', 1897, 'M', 158), +(6541, 'Charley', 1897, 'M', 156), +(6542, 'Marion', 1897, 'M', 153), +(6543, 'Vernon', 1897, 'M', 152), +(6544, 'Sidney', 1897, 'M', 149), +(6545, 'Earnest', 1897, 'M', 148), +(6546, 'Bert', 1897, 'M', 143), +(6547, 'Willard', 1897, 'M', 143), +(6548, 'Nathan', 1897, 'M', 139), +(6549, 'August', 1897, 'M', 137), +(6550, 'Warren', 1897, 'M', 137), +(6551, 'Marvin', 1897, 'M', 134), +(6552, 'Otis', 1897, 'M', 133), +(6553, 'Morris', 1897, 'M', 132), +(6554, 'Willis', 1897, 'M', 132), +(6555, 'Emil', 1897, 'M', 131), +(6556, 'Wallace', 1897, 'M', 131), +(6557, 'Alex', 1897, 'M', 130), +(6558, 'Melvin', 1897, 'M', 128), +(6559, 'Johnnie', 1897, 'M', 125), +(6560, 'Rufus', 1897, 'M', 124), +(6561, 'Hubert', 1897, 'M', 123), +(6562, 'Max', 1897, 'M', 122), +(6563, 'Dave', 1897, 'M', 121), +(6564, 'Gilbert', 1897, 'M', 121), +(6565, 'Wesley', 1897, 'M', 121), +(6566, 'Emmett', 1897, 'M', 118), +(6567, 'Jerry', 1897, 'M', 118), +(6568, 'Maurice', 1897, 'M', 117), +(6569, 'Dan', 1897, 'M', 115), +(6570, 'Mckinley', 1897, 'M', 115), +(6571, 'Lonnie', 1897, 'M', 114), +(6572, 'Vincent', 1897, 'M', 112), +(6573, 'Sylvester', 1897, 'M', 111), +(6574, 'Wilbur', 1897, 'M', 111), +(6575, 'Jess', 1897, 'M', 110), +(6576, 'Rudolph', 1897, 'M', 109), +(6577, 'Hobart', 1897, 'M', 105), +(6578, 'Mark', 1897, 'M', 104), +(6579, 'Nelson', 1897, 'M', 104), +(6580, 'Arnold', 1897, 'M', 103), +(6581, 'Calvin', 1897, 'M', 103), +(6582, 'Perry', 1897, 'M', 103), +(6583, 'Curtis', 1897, 'M', 102), +(6584, 'Jake', 1897, 'M', 102), +(6585, 'Matthew', 1897, 'M', 100), +(6586, 'Mary', 1898, 'F', 14406), +(6587, 'Anna', 1898, 'F', 5773), +(6588, 'Helen', 1898, 'F', 5230), +(6589, 'Margaret', 1898, 'F', 4696), +(6590, 'Ruth', 1898, 'F', 4249), +(6591, 'Florence', 1898, 'F', 3790), +(6592, 'Elizabeth', 1898, 'F', 3659), +(6593, 'Ethel', 1898, 'F', 3531), +(6594, 'Marie', 1898, 'F', 3435), +(6595, 'Lillian', 1898, 'F', 3061), +(6596, 'Alice', 1898, 'F', 2846), +(6597, 'Edna', 1898, 'F', 2813), +(6598, 'Emma', 1898, 'F', 2788), +(6599, 'Clara', 1898, 'F', 2731), +(6600, 'Grace', 1898, 'F', 2726), +(6601, 'Bessie', 1898, 'F', 2647), +(6602, 'Bertha', 1898, 'F', 2642), +(6603, 'Annie', 1898, 'F', 2470), +(6604, 'Hazel', 1898, 'F', 2439), +(6605, 'Rose', 1898, 'F', 2436), +(6606, 'Minnie', 1898, 'F', 2409), +(6607, 'Frances', 1898, 'F', 2379), +(6608, 'Mabel', 1898, 'F', 2331), +(6609, 'Gertrude', 1898, 'F', 2302), +(6610, 'Martha', 1898, 'F', 2184), +(6611, 'Pearl', 1898, 'F', 2158), +(6612, 'Gladys', 1898, 'F', 2136), +(6613, 'Mildred', 1898, 'F', 2102), +(6614, 'Ida', 1898, 'F', 2090), +(6615, 'Myrtle', 1898, 'F', 2090), +(6616, 'Esther', 1898, 'F', 2047), +(6617, 'Edith', 1898, 'F', 1981), +(6618, 'Elsie', 1898, 'F', 1919), +(6619, 'Irene', 1898, 'F', 1902), +(6620, 'Eva', 1898, 'F', 1823), +(6621, 'Nellie', 1898, 'F', 1810), +(6622, 'Sarah', 1898, 'F', 1800), +(6623, 'Laura', 1898, 'F', 1768), +(6624, 'Ella', 1898, 'F', 1715), +(6625, 'Agnes', 1898, 'F', 1708), +(6626, 'Catherine', 1898, 'F', 1705), +(6627, 'Louise', 1898, 'F', 1693), +(6628, 'Dorothy', 1898, 'F', 1671), +(6629, 'Lillie', 1898, 'F', 1522), +(6630, 'Julia', 1898, 'F', 1462), +(6631, 'Josephine', 1898, 'F', 1425), +(6632, 'Carrie', 1898, 'F', 1371), +(6633, 'Hattie', 1898, 'F', 1328), +(6634, 'Lena', 1898, 'F', 1320), +(6635, 'Mattie', 1898, 'F', 1314), +(6636, 'Cora', 1898, 'F', 1304), +(6637, 'Alma', 1898, 'F', 1299), +(6638, 'Viola', 1898, 'F', 1272), +(6639, 'Blanche', 1898, 'F', 1269), +(6640, 'Jessie', 1898, 'F', 1244), +(6641, 'Mae', 1898, 'F', 1239), +(6642, 'Jennie', 1898, 'F', 1194), +(6643, 'Ruby', 1898, 'F', 1191), +(6644, 'Lucy', 1898, 'F', 1144), +(6645, 'Beatrice', 1898, 'F', 1122), +(6646, 'Marion', 1898, 'F', 1086), +(6647, 'Fannie', 1898, 'F', 1085), +(6648, 'Mamie', 1898, 'F', 1084), +(6649, 'Lula', 1898, 'F', 1069), +(6650, 'Stella', 1898, 'F', 1062), +(6651, 'Ada', 1898, 'F', 1022), +(6652, 'Maude', 1898, 'F', 1009), +(6653, 'Dora', 1898, 'F', 929), +(6654, 'Katherine', 1898, 'F', 914), +(6655, 'Pauline', 1898, 'F', 900), +(6656, 'Willie', 1898, 'F', 878), +(6657, 'Maggie', 1898, 'F', 876), +(6658, 'Vera', 1898, 'F', 875), +(6659, 'Nora', 1898, 'F', 868), +(6660, 'Rosa', 1898, 'F', 841), +(6661, 'Evelyn', 1898, 'F', 836), +(6662, 'Sadie', 1898, 'F', 808), +(6663, 'Virginia', 1898, 'F', 801), +(6664, 'Marguerite', 1898, 'F', 800), +(6665, 'Lucille', 1898, 'F', 795), +(6666, 'Ellen', 1898, 'F', 786), +(6667, 'Beulah', 1898, 'F', 783), +(6668, 'Effie', 1898, 'F', 714), +(6669, 'Daisy', 1898, 'F', 712), +(6670, 'Susie', 1898, 'F', 702), +(6671, 'May', 1898, 'F', 696), +(6672, 'Nettie', 1898, 'F', 678), +(6673, 'Lydia', 1898, 'F', 677), +(6674, 'Kathryn', 1898, 'F', 671), +(6675, 'Leona', 1898, 'F', 665), +(6676, 'Della', 1898, 'F', 656), +(6677, 'Georgia', 1898, 'F', 654), +(6678, 'Olive', 1898, 'F', 644), +(6679, 'Emily', 1898, 'F', 628), +(6680, 'Eleanor', 1898, 'F', 620), +(6681, 'Bernice', 1898, 'F', 619), +(6682, 'Hilda', 1898, 'F', 610), +(6683, 'Flora', 1898, 'F', 607), +(6684, 'Thelma', 1898, 'F', 605), +(6685, 'Sallie', 1898, 'F', 598), +(6686, 'Ann', 1898, 'F', 593), +(6687, 'Lottie', 1898, 'F', 586), +(6688, 'Lizzie', 1898, 'F', 582), +(6689, 'Katie', 1898, 'F', 580), +(6690, 'Charlotte', 1898, 'F', 569), +(6691, 'Nancy', 1898, 'F', 546), +(6692, 'Theresa', 1898, 'F', 540), +(6693, 'Lola', 1898, 'F', 534), +(6694, 'Anne', 1898, 'F', 496), +(6695, 'Harriet', 1898, 'F', 491), +(6696, 'Addie', 1898, 'F', 481), +(6697, 'Etta', 1898, 'F', 479), +(6698, 'Inez', 1898, 'F', 479), +(6699, 'Lois', 1898, 'F', 466), +(6700, 'Lela', 1898, 'F', 459), +(6701, 'Ollie', 1898, 'F', 459), +(6702, 'Marjorie', 1898, 'F', 457), +(6703, 'Loretta', 1898, 'F', 454), +(6704, 'Iva', 1898, 'F', 451), +(6705, 'Ora', 1898, 'F', 447), +(6706, 'Goldie', 1898, 'F', 446), +(6707, 'Caroline', 1898, 'F', 441), +(6708, 'Eunice', 1898, 'F', 437), +(6709, 'Henrietta', 1898, 'F', 430), +(6710, 'Doris', 1898, 'F', 429), +(6711, 'Betty', 1898, 'F', 421), +(6712, 'Violet', 1898, 'F', 411), +(6713, 'Estelle', 1898, 'F', 410), +(6714, 'Verna', 1898, 'F', 410), +(6715, 'Jane', 1898, 'F', 406), +(6716, 'Eula', 1898, 'F', 400), +(6717, 'Genevieve', 1898, 'F', 391), +(6718, 'Sylvia', 1898, 'F', 391), +(6719, 'Nina', 1898, 'F', 383), +(6720, 'Susan', 1898, 'F', 382), +(6721, 'Rebecca', 1898, 'F', 376), +(6722, 'Amanda', 1898, 'F', 371), +(6723, 'Rachel', 1898, 'F', 367), +(6724, 'Sara', 1898, 'F', 362), +(6725, 'Amelia', 1898, 'F', 360), +(6726, 'Nannie', 1898, 'F', 359), +(6727, 'Mollie', 1898, 'F', 357), +(6728, 'Mable', 1898, 'F', 356), +(6729, 'Matilda', 1898, 'F', 349), +(6730, 'Marian', 1898, 'F', 343), +(6731, 'Amy', 1898, 'F', 341), +(6732, 'Jean', 1898, 'F', 341), +(6733, 'Hannah', 1898, 'F', 338), +(6734, 'Madeline', 1898, 'F', 337), +(6735, 'Essie', 1898, 'F', 336), +(6736, 'Frieda', 1898, 'F', 335), +(6737, 'Velma', 1898, 'F', 331), +(6738, 'Lucile', 1898, 'F', 330), +(6739, 'Rosie', 1898, 'F', 330), +(6740, 'Maria', 1898, 'F', 329), +(6741, 'Olga', 1898, 'F', 329), +(6742, 'Ola', 1898, 'F', 327), +(6743, 'Flossie', 1898, 'F', 320), +(6744, 'Estella', 1898, 'F', 319), +(6745, 'Irma', 1898, 'F', 319), +(6746, 'Alta', 1898, 'F', 317), +(6747, 'Vivian', 1898, 'F', 308), +(6748, 'Kathleen', 1898, 'F', 306), +(6749, 'Barbara', 1898, 'F', 304), +(6750, 'Winnie', 1898, 'F', 304), +(6751, 'Alberta', 1898, 'F', 302), +(6752, 'Christine', 1898, 'F', 302), +(6753, 'Ina', 1898, 'F', 297), +(6754, 'Kate', 1898, 'F', 297), +(6755, 'Winifred', 1898, 'F', 289), +(6756, 'Victoria', 1898, 'F', 276), +(6757, 'Freda', 1898, 'F', 273), +(6758, 'Allie', 1898, 'F', 271), +(6759, 'Celia', 1898, 'F', 265), +(6760, 'Fern', 1898, 'F', 265), +(6761, 'Naomi', 1898, 'F', 264), +(6762, 'Maud', 1898, 'F', 262), +(6763, 'Opal', 1898, 'F', 262), +(6764, 'Elva', 1898, 'F', 261), +(6765, 'Luella', 1898, 'F', 261), +(6766, 'Eliza', 1898, 'F', 259), +(6767, 'Sophie', 1898, 'F', 259), +(6768, 'Belle', 1898, 'F', 257), +(6769, 'Isabel', 1898, 'F', 252), +(6770, 'Augusta', 1898, 'F', 248), +(6771, 'Nell', 1898, 'F', 246), +(6772, 'Norma', 1898, 'F', 241), +(6773, 'Erma', 1898, 'F', 240), +(6774, 'Sophia', 1898, 'F', 240), +(6775, 'Callie', 1898, 'F', 235), +(6776, 'Janie', 1898, 'F', 235), +(6777, 'Cecelia', 1898, 'F', 229), +(6778, 'Selma', 1898, 'F', 229), +(6779, 'Tillie', 1898, 'F', 225), +(6780, 'Isabelle', 1898, 'F', 221), +(6781, 'Geneva', 1898, 'F', 220), +(6782, 'Josie', 1898, 'F', 219), +(6783, 'Rena', 1898, 'F', 218), +(6784, 'Teresa', 1898, 'F', 217), +(6785, 'Veronica', 1898, 'F', 216), +(6786, 'Adeline', 1898, 'F', 213), +(6787, 'Cecilia', 1898, 'F', 213), +(6788, 'Lulu', 1898, 'F', 209), +(6789, 'Lila', 1898, 'F', 208), +(6790, 'Virgie', 1898, 'F', 204), +(6791, 'Sally', 1898, 'F', 199), +(6792, 'Anita', 1898, 'F', 198), +(6793, 'Millie', 1898, 'F', 197), +(6794, 'Jeanette', 1898, 'F', 191), +(6795, 'Bonnie', 1898, 'F', 187), +(6796, 'Leah', 1898, 'F', 185), +(6797, 'Neva', 1898, 'F', 183), +(6798, 'Dollie', 1898, 'F', 181), +(6799, 'Gussie', 1898, 'F', 181), +(6800, 'Delia', 1898, 'F', 179), +(6801, 'Birdie', 1898, 'F', 178), +(6802, 'Madge', 1898, 'F', 178), +(6803, 'Juanita', 1898, 'F', 176), +(6804, 'Miriam', 1898, 'F', 176), +(6805, 'Mayme', 1898, 'F', 174), +(6806, 'Cecile', 1898, 'F', 172), +(6807, 'Elma', 1898, 'F', 172), +(6808, 'Fay', 1898, 'F', 171), +(6809, 'Roxie', 1898, 'F', 171), +(6810, 'Carolyn', 1898, 'F', 169), +(6811, 'Leola', 1898, 'F', 169), +(6812, 'Bertie', 1898, 'F', 167), +(6813, 'Regina', 1898, 'F', 167), +(6814, 'Adele', 1898, 'F', 165), +(6815, 'Johanna', 1898, 'F', 161), +(6816, 'Leila', 1898, 'F', 161), +(6817, 'Wilma', 1898, 'F', 159), +(6818, 'Hester', 1898, 'F', 158), +(6819, 'Letha', 1898, 'F', 157), +(6820, 'Lora', 1898, 'F', 157), +(6821, 'Lou', 1898, 'F', 156), +(6822, 'Cornelia', 1898, 'F', 154), +(6823, 'Faye', 1898, 'F', 153), +(6824, 'Bess', 1898, 'F', 151), +(6825, 'Bettie', 1898, 'F', 150), +(6826, 'Lelia', 1898, 'F', 149), +(6827, 'Adelaide', 1898, 'F', 148), +(6828, 'Rhoda', 1898, 'F', 148), +(6829, 'Rita', 1898, 'F', 146), +(6830, 'Jeannette', 1898, 'F', 144), +(6831, 'Roberta', 1898, 'F', 144), +(6832, 'Hallie', 1898, 'F', 143), +(6833, 'Harriett', 1898, 'F', 143), +(6834, 'Myra', 1898, 'F', 143), +(6835, 'Sue', 1898, 'F', 143), +(6836, 'Olivia', 1898, 'F', 141), +(6837, 'Lessie', 1898, 'F', 140), +(6838, 'Cleo', 1898, 'F', 139), +(6839, 'Hulda', 1898, 'F', 138), +(6840, 'Jewell', 1898, 'F', 137), +(6841, 'Erna', 1898, 'F', 135), +(6842, 'Lenora', 1898, 'F', 135), +(6843, 'Cecil', 1898, 'F', 133), +(6844, 'Claire', 1898, 'F', 133), +(6845, 'Helena', 1898, 'F', 133), +(6846, 'Lilly', 1898, 'F', 133), +(6847, 'Reba', 1898, 'F', 133), +(6848, 'Christina', 1898, 'F', 131), +(6849, 'Hettie', 1898, 'F', 130), +(6850, 'Jewel', 1898, 'F', 130), +(6851, 'Mathilda', 1898, 'F', 130), +(6852, 'Lorena', 1898, 'F', 129), +(6853, 'Muriel', 1898, 'F', 129), +(6854, 'Antoinette', 1898, 'F', 126), +(6855, 'Katharine', 1898, 'F', 125), +(6856, 'Audrey', 1898, 'F', 124), +(6857, 'Corinne', 1898, 'F', 124), +(6858, 'Dovie', 1898, 'F', 124), +(6859, 'Francis', 1898, 'F', 124), +(6860, 'Alvina', 1898, 'F', 123), +(6861, 'Margie', 1898, 'F', 123), +(6862, 'Janet', 1898, 'F', 122), +(6863, 'Nola', 1898, 'F', 122), +(6864, 'Abbie', 1898, 'F', 120), +(6865, 'Lettie', 1898, 'F', 120), +(6866, 'June', 1898, 'F', 118), +(6867, 'Lucinda', 1898, 'F', 118), +(6868, 'Edythe', 1898, 'F', 116), +(6869, 'Gertie', 1898, 'F', 115), +(6870, 'Maudie', 1898, 'F', 115), +(6871, 'Zella', 1898, 'F', 115), +(6872, 'Dorothea', 1898, 'F', 114), +(6873, 'Ila', 1898, 'F', 114), +(6874, 'Elvira', 1898, 'F', 113), +(6875, 'Oma', 1898, 'F', 113), +(6876, 'Angeline', 1898, 'F', 111), +(6877, 'Elsa', 1898, 'F', 111), +(6878, 'Lee', 1898, 'F', 111), +(6879, 'Louisa', 1898, 'F', 111), +(6880, 'Dessie', 1898, 'F', 110), +(6881, 'Geraldine', 1898, 'F', 110), +(6882, 'Nelle', 1898, 'F', 109), +(6883, 'Pearlie', 1898, 'F', 109), +(6884, 'Phyllis', 1898, 'F', 108), +(6885, 'Marcella', 1898, 'F', 106), +(6886, 'Wanda', 1898, 'F', 106), +(6887, 'Wilhelmina', 1898, 'F', 106), +(6888, 'Catharine', 1898, 'F', 105), +(6889, 'Elnora', 1898, 'F', 105), +(6890, 'Dewey', 1898, 'F', 104), +(6891, 'Manila', 1898, 'F', 104), +(6892, 'Mina', 1898, 'F', 104), +(6893, 'Pansy', 1898, 'F', 104), +(6894, 'Zelma', 1898, 'F', 104), +(6895, 'Claudia', 1898, 'F', 103), +(6896, 'Linda', 1898, 'F', 102), +(6897, 'Annette', 1898, 'F', 101), +(6898, 'Rosalie', 1898, 'F', 101), +(6899, 'Meta', 1898, 'F', 100), +(6900, 'John', 1898, 'M', 8159), +(6901, 'William', 1898, 'M', 7400), +(6902, 'James', 1898, 'M', 5321), +(6903, 'George', 1898, 'M', 4853), +(6904, 'Charles', 1898, 'M', 3557), +(6905, 'Joseph', 1898, 'M', 3171), +(6906, 'Robert', 1898, 'M', 2932), +(6907, 'Frank', 1898, 'M', 2925), +(6908, 'Edward', 1898, 'M', 2337), +(6909, 'Thomas', 1898, 'M', 2161), +(6910, 'Henry', 1898, 'M', 2145), +(6911, 'Harry', 1898, 'M', 2129), +(6912, 'Walter', 1898, 'M', 2002), +(6913, 'Arthur', 1898, 'M', 1619), +(6914, 'Fred', 1898, 'M', 1447), +(6915, 'Albert', 1898, 'M', 1417), +(6916, 'Clarence', 1898, 'M', 1326), +(6917, 'Willie', 1898, 'M', 1134), +(6918, 'Dewey', 1898, 'M', 1115), +(6919, 'Roy', 1898, 'M', 1049), +(6920, 'Paul', 1898, 'M', 991), +(6921, 'Harold', 1898, 'M', 963), +(6922, 'Raymond', 1898, 'M', 929), +(6923, 'Carl', 1898, 'M', 919), +(6924, 'Earl', 1898, 'M', 883), +(6925, 'Richard', 1898, 'M', 873), +(6926, 'Louis', 1898, 'M', 862), +(6927, 'Ernest', 1898, 'M', 839), +(6928, 'Joe', 1898, 'M', 827), +(6929, 'David', 1898, 'M', 815), +(6930, 'Ralph', 1898, 'M', 803), +(6931, 'Samuel', 1898, 'M', 749), +(6932, 'Charlie', 1898, 'M', 728), +(6933, 'Herbert', 1898, 'M', 716), +(6934, 'Howard', 1898, 'M', 706), +(6935, 'Alfred', 1898, 'M', 645), +(6936, 'Jack', 1898, 'M', 633), +(6937, 'Andrew', 1898, 'M', 611), +(6938, 'Leo', 1898, 'M', 588), +(6939, 'Elmer', 1898, 'M', 583), +(6940, 'Oscar', 1898, 'M', 546), +(6941, 'Sam', 1898, 'M', 543), +(6942, 'Francis', 1898, 'M', 541), +(6943, 'Lawrence', 1898, 'M', 533), +(6944, 'Daniel', 1898, 'M', 523), +(6945, 'Lee', 1898, 'M', 498), +(6946, 'Jesse', 1898, 'M', 476), +(6947, 'Will', 1898, 'M', 475), +(6948, 'Eugene', 1898, 'M', 474), +(6949, 'Herman', 1898, 'M', 467), +(6950, 'Floyd', 1898, 'M', 434), +(6951, 'Michael', 1898, 'M', 434), +(6952, 'Leonard', 1898, 'M', 421), +(6953, 'Peter', 1898, 'M', 409), +(6954, 'Benjamin', 1898, 'M', 405), +(6955, 'Ray', 1898, 'M', 394), +(6956, 'Edwin', 1898, 'M', 392), +(6957, 'Clyde', 1898, 'M', 383), +(6958, 'Claude', 1898, 'M', 371), +(6959, 'Frederick', 1898, 'M', 368), +(6960, 'Russell', 1898, 'M', 359), +(6961, 'Lewis', 1898, 'M', 352), +(6962, 'Martin', 1898, 'M', 339), +(6963, 'Tom', 1898, 'M', 337), +(6964, 'Anthony', 1898, 'M', 325), +(6965, 'Chester', 1898, 'M', 321), +(6966, 'Clifford', 1898, 'M', 317), +(6967, 'Leroy', 1898, 'M', 315), +(6968, 'Ben', 1898, 'M', 310), +(6969, 'Lester', 1898, 'M', 298), +(6970, 'Stanley', 1898, 'M', 295), +(6971, 'Edgar', 1898, 'M', 285), +(6972, 'Bernard', 1898, 'M', 284), +(6973, 'Harvey', 1898, 'M', 284), +(6974, 'Theodore', 1898, 'M', 281), +(6975, 'Luther', 1898, 'M', 275), +(6976, 'Jim', 1898, 'M', 269), +(6977, 'Jessie', 1898, 'M', 267), +(6978, 'Lloyd', 1898, 'M', 265), +(6979, 'Otto', 1898, 'M', 259), +(6980, 'Eddie', 1898, 'M', 256), +(6981, 'Jacob', 1898, 'M', 256), +(6982, 'Leon', 1898, 'M', 252), +(6983, 'Hugh', 1898, 'M', 250), +(6984, 'Homer', 1898, 'M', 246), +(6985, 'Philip', 1898, 'M', 244), +(6986, 'Cecil', 1898, 'M', 243), +(6987, 'Donald', 1898, 'M', 238), +(6988, 'Ed', 1898, 'M', 228), +(6989, 'Leslie', 1898, 'M', 228), +(6990, 'Milton', 1898, 'M', 225), +(6991, 'Archie', 1898, 'M', 222), +(6992, 'Patrick', 1898, 'M', 219), +(6993, 'Guy', 1898, 'M', 215), +(6994, 'Everett', 1898, 'M', 212), +(6995, 'Norman', 1898, 'M', 207), +(6996, 'Victor', 1898, 'M', 205), +(6997, 'Ira', 1898, 'M', 195), +(6998, 'Stephen', 1898, 'M', 195), +(6999, 'Kenneth', 1898, 'M', 191), +(7000, 'Horace', 1898, 'M', 189), +(7001, 'Oliver', 1898, 'M', 186), +(7002, 'Allen', 1898, 'M', 185), +(7003, 'Alvin', 1898, 'M', 184), +(7004, 'Julius', 1898, 'M', 181), +(7005, 'Alexander', 1898, 'M', 180), +(7006, 'Otis', 1898, 'M', 179), +(7007, 'Glenn', 1898, 'M', 178), +(7008, 'Sidney', 1898, 'M', 171), +(7009, 'Charley', 1898, 'M', 170), +(7010, 'Marion', 1898, 'M', 166), +(7011, 'August', 1898, 'M', 164), +(7012, 'Morris', 1898, 'M', 164), +(7013, 'Earnest', 1898, 'M', 161), +(7014, 'Melvin', 1898, 'M', 159), +(7015, 'Emil', 1898, 'M', 158), +(7016, 'Isaac', 1898, 'M', 156), +(7017, 'Wilbur', 1898, 'M', 156), +(7018, 'Percy', 1898, 'M', 155), +(7019, 'Virgil', 1898, 'M', 155), +(7020, 'Johnnie', 1898, 'M', 153), +(7021, 'Mack', 1898, 'M', 153), +(7022, 'Warren', 1898, 'M', 151), +(7023, 'Wesley', 1898, 'M', 151), +(7024, 'Alex', 1898, 'M', 149), +(7025, 'Bert', 1898, 'M', 143), +(7026, 'Gilbert', 1898, 'M', 143), +(7027, 'Jerry', 1898, 'M', 143), +(7028, 'Maurice', 1898, 'M', 143), +(7029, 'Vernon', 1898, 'M', 143), +(7030, 'Rufus', 1898, 'M', 141), +(7031, 'Vincent', 1898, 'M', 140), +(7032, 'Wallace', 1898, 'M', 138), +(7033, 'Willard', 1898, 'M', 137), +(7034, 'Matthew', 1898, 'M', 133), +(7035, 'Max', 1898, 'M', 132), +(7036, 'Emmett', 1898, 'M', 131), +(7037, 'Lonnie', 1898, 'M', 129), +(7038, 'Curtis', 1898, 'M', 128), +(7039, 'Dave', 1898, 'M', 127), +(7040, 'Marvin', 1898, 'M', 127), +(7041, 'Dan', 1898, 'M', 125), +(7042, 'Calvin', 1898, 'M', 121), +(7043, 'Willis', 1898, 'M', 121), +(7044, 'Jake', 1898, 'M', 117), +(7045, 'Bennie', 1898, 'M', 116), +(7046, 'Rudolph', 1898, 'M', 115), +(7047, 'Sylvester', 1898, 'M', 115), +(7048, 'Hubert', 1898, 'M', 114), +(7049, 'Irving', 1898, 'M', 113), +(7050, 'Arnold', 1898, 'M', 112), +(7051, 'Franklin', 1898, 'M', 112), +(7052, 'Nelson', 1898, 'M', 112), +(7053, 'Glen', 1898, 'M', 111), +(7054, 'Gordon', 1898, 'M', 110), +(7055, 'Jose', 1898, 'M', 110), +(7056, 'Marshall', 1898, 'M', 109), +(7057, 'Jess', 1898, 'M', 108), +(7058, 'Mark', 1898, 'M', 108), +(7059, 'Mike', 1898, 'M', 106), +(7060, 'Alonzo', 1898, 'M', 104), +(7061, 'Felix', 1898, 'M', 103), +(7062, 'Edmund', 1898, 'M', 101), +(7063, 'Orville', 1898, 'M', 101), +(7064, 'Gerald', 1898, 'M', 100), +(7065, 'Mary', 1899, 'F', 13172), +(7066, 'Anna', 1899, 'F', 5115), +(7067, 'Helen', 1899, 'F', 5048), +(7068, 'Margaret', 1899, 'F', 4249), +(7069, 'Ruth', 1899, 'F', 3912), +(7070, 'Florence', 1899, 'F', 3314), +(7071, 'Elizabeth', 1899, 'F', 3287), +(7072, 'Marie', 1899, 'F', 3156), +(7073, 'Ethel', 1899, 'F', 2999), +(7074, 'Lillian', 1899, 'F', 2703), +(7075, 'Edna', 1899, 'F', 2534), +(7076, 'Alice', 1899, 'F', 2523), +(7077, 'Emma', 1899, 'F', 2445), +(7078, 'Clara', 1899, 'F', 2441), +(7079, 'Grace', 1899, 'F', 2353), +(7080, 'Bertha', 1899, 'F', 2294), +(7081, 'Mildred', 1899, 'F', 2291), +(7082, 'Annie', 1899, 'F', 2289), +(7083, 'Bessie', 1899, 'F', 2280), +(7084, 'Gladys', 1899, 'F', 2228), +(7085, 'Rose', 1899, 'F', 2197), +(7086, 'Mabel', 1899, 'F', 2127), +(7087, 'Gertrude', 1899, 'F', 2111), +(7088, 'Frances', 1899, 'F', 2058), +(7089, 'Minnie', 1899, 'F', 2036), +(7090, 'Hazel', 1899, 'F', 2033), +(7091, 'Pearl', 1899, 'F', 1999), +(7092, 'Martha', 1899, 'F', 1907), +(7093, 'Esther', 1899, 'F', 1823), +(7094, 'Myrtle', 1899, 'F', 1821), +(7095, 'Ida', 1899, 'F', 1804), +(7096, 'Edith', 1899, 'F', 1793), +(7097, 'Elsie', 1899, 'F', 1706), +(7098, 'Irene', 1899, 'F', 1703), +(7099, 'Dorothy', 1899, 'F', 1687), +(7100, 'Catherine', 1899, 'F', 1628), +(7101, 'Agnes', 1899, 'F', 1611), +(7102, 'Sarah', 1899, 'F', 1587), +(7103, 'Eva', 1899, 'F', 1582), +(7104, 'Louise', 1899, 'F', 1536), +(7105, 'Nellie', 1899, 'F', 1510), +(7106, 'Ella', 1899, 'F', 1502), +(7107, 'Laura', 1899, 'F', 1472), +(7108, 'Josephine', 1899, 'F', 1388), +(7109, 'Lillie', 1899, 'F', 1350), +(7110, 'Carrie', 1899, 'F', 1346), +(7111, 'Julia', 1899, 'F', 1297), +(7112, 'Mattie', 1899, 'F', 1171), +(7113, 'Lena', 1899, 'F', 1159), +(7114, 'Viola', 1899, 'F', 1156), +(7115, 'Alma', 1899, 'F', 1146), +(7116, 'Ruby', 1899, 'F', 1103), +(7117, 'Hattie', 1899, 'F', 1087), +(7118, 'Jessie', 1899, 'F', 1081), +(7119, 'Blanche', 1899, 'F', 1063), +(7120, 'Beatrice', 1899, 'F', 1061), +(7121, 'Jennie', 1899, 'F', 1061), +(7122, 'Cora', 1899, 'F', 1056), +(7123, 'Mae', 1899, 'F', 1035), +(7124, 'Lucy', 1899, 'F', 1018), +(7125, 'Ada', 1899, 'F', 984), +(7126, 'Stella', 1899, 'F', 975), +(7127, 'Marion', 1899, 'F', 973), +(7128, 'Mamie', 1899, 'F', 966), +(7129, 'Katherine', 1899, 'F', 942), +(7130, 'Maude', 1899, 'F', 908), +(7131, 'Lula', 1899, 'F', 894), +(7132, 'Fannie', 1899, 'F', 886), +(7133, 'Vera', 1899, 'F', 864), +(7134, 'Maggie', 1899, 'F', 814), +(7135, 'Lucille', 1899, 'F', 812), +(7136, 'Pauline', 1899, 'F', 811), +(7137, 'Willie', 1899, 'F', 806), +(7138, 'Evelyn', 1899, 'F', 802), +(7139, 'Virginia', 1899, 'F', 776), +(7140, 'Beulah', 1899, 'F', 770), +(7141, 'Rosa', 1899, 'F', 765), +(7142, 'Thelma', 1899, 'F', 736), +(7143, 'Dora', 1899, 'F', 717), +(7144, 'Nora', 1899, 'F', 709), +(7145, 'Ellen', 1899, 'F', 708), +(7146, 'Sadie', 1899, 'F', 705), +(7147, 'Marguerite', 1899, 'F', 693), +(7148, 'Leona', 1899, 'F', 665), +(7149, 'Daisy', 1899, 'F', 660), +(7150, 'Susie', 1899, 'F', 622), +(7151, 'Hilda', 1899, 'F', 621), +(7152, 'Kathryn', 1899, 'F', 621), +(7153, 'Nettie', 1899, 'F', 611), +(7154, 'Effie', 1899, 'F', 597), +(7155, 'Della', 1899, 'F', 595), +(7156, 'Ann', 1899, 'F', 586), +(7157, 'Lottie', 1899, 'F', 584), +(7158, 'Eleanor', 1899, 'F', 575), +(7159, 'May', 1899, 'F', 571), +(7160, 'Emily', 1899, 'F', 569), +(7161, 'Lydia', 1899, 'F', 566), +(7162, 'Olive', 1899, 'F', 565), +(7163, 'Georgia', 1899, 'F', 553), +(7164, 'Sallie', 1899, 'F', 544), +(7165, 'Theresa', 1899, 'F', 532), +(7166, 'Flora', 1899, 'F', 520), +(7167, 'Bernice', 1899, 'F', 515), +(7168, 'Charlotte', 1899, 'F', 496), +(7169, 'Lizzie', 1899, 'F', 492), +(7170, 'Anne', 1899, 'F', 476), +(7171, 'Nancy', 1899, 'F', 475), +(7172, 'Katie', 1899, 'F', 459), +(7173, 'Marjorie', 1899, 'F', 448), +(7174, 'Lola', 1899, 'F', 437), +(7175, 'Violet', 1899, 'F', 435), +(7176, 'Iva', 1899, 'F', 432), +(7177, 'Doris', 1899, 'F', 431), +(7178, 'Harriet', 1899, 'F', 431), +(7179, 'Inez', 1899, 'F', 431), +(7180, 'Lela', 1899, 'F', 417), +(7181, 'Lois', 1899, 'F', 415), +(7182, 'Addie', 1899, 'F', 412), +(7183, 'Betty', 1899, 'F', 410), +(7184, 'Henrietta', 1899, 'F', 410), +(7185, 'Loretta', 1899, 'F', 410), +(7186, 'Goldie', 1899, 'F', 397), +(7187, 'Etta', 1899, 'F', 394), +(7188, 'Caroline', 1899, 'F', 393), +(7189, 'Nina', 1899, 'F', 390), +(7190, 'Eunice', 1899, 'F', 385), +(7191, 'Ollie', 1899, 'F', 383), +(7192, 'Jane', 1899, 'F', 382), +(7193, 'Estelle', 1899, 'F', 376), +(7194, 'Sylvia', 1899, 'F', 371), +(7195, 'Ora', 1899, 'F', 357), +(7196, 'Genevieve', 1899, 'F', 356), +(7197, 'Eula', 1899, 'F', 354), +(7198, 'Susan', 1899, 'F', 350), +(7199, 'Rebecca', 1899, 'F', 347), +(7200, 'Essie', 1899, 'F', 342), +(7201, 'Mable', 1899, 'F', 339), +(7202, 'Marian', 1899, 'F', 336), +(7203, 'Velma', 1899, 'F', 334), +(7204, 'Amelia', 1899, 'F', 332), +(7205, 'Rosie', 1899, 'F', 332), +(7206, 'Nannie', 1899, 'F', 331), +(7207, 'Verna', 1899, 'F', 329), +(7208, 'Amanda', 1899, 'F', 326), +(7209, 'Rachel', 1899, 'F', 324), +(7210, 'Sara', 1899, 'F', 323), +(7211, 'Jean', 1899, 'F', 318), +(7212, 'Madeline', 1899, 'F', 316), +(7213, 'Matilda', 1899, 'F', 312), +(7214, 'Frieda', 1899, 'F', 307), +(7215, 'Lucile', 1899, 'F', 305), +(7216, 'Alberta', 1899, 'F', 304), +(7217, 'Mollie', 1899, 'F', 301), +(7218, 'Christine', 1899, 'F', 299), +(7219, 'Olga', 1899, 'F', 292), +(7220, 'Victoria', 1899, 'F', 289), +(7221, 'Estella', 1899, 'F', 288), +(7222, 'Hannah', 1899, 'F', 288), +(7223, 'Amy', 1899, 'F', 281), +(7224, 'Ola', 1899, 'F', 280), +(7225, 'Alta', 1899, 'F', 278), +(7226, 'Opal', 1899, 'F', 278), +(7227, 'Sophie', 1899, 'F', 278), +(7228, 'Irma', 1899, 'F', 276), +(7229, 'Barbara', 1899, 'F', 273), +(7230, 'Naomi', 1899, 'F', 272), +(7231, 'Freda', 1899, 'F', 266), +(7232, 'Maria', 1899, 'F', 266), +(7233, 'Flossie', 1899, 'F', 265), +(7234, 'Winnie', 1899, 'F', 264), +(7235, 'Eliza', 1899, 'F', 256), +(7236, 'Vivian', 1899, 'F', 250), +(7237, 'Erma', 1899, 'F', 247), +(7238, 'Luella', 1899, 'F', 246), +(7239, 'Maud', 1899, 'F', 244), +(7240, 'Ina', 1899, 'F', 243), +(7241, 'Isabel', 1899, 'F', 243), +(7242, 'Josie', 1899, 'F', 243), +(7243, 'Winifred', 1899, 'F', 241), +(7244, 'Sophia', 1899, 'F', 238), +(7245, 'Wilma', 1899, 'F', 235), +(7246, 'Fern', 1899, 'F', 232), +(7247, 'Celia', 1899, 'F', 231), +(7248, 'Kathleen', 1899, 'F', 230), +(7249, 'Augusta', 1899, 'F', 228), +(7250, 'Janie', 1899, 'F', 224), +(7251, 'Allie', 1899, 'F', 219), +(7252, 'Kate', 1899, 'F', 219), +(7253, 'Geneva', 1899, 'F', 218), +(7254, 'Cecelia', 1899, 'F', 214), +(7255, 'Norma', 1899, 'F', 214), +(7256, 'Callie', 1899, 'F', 208), +(7257, 'Selma', 1899, 'F', 206), +(7258, 'Virgie', 1899, 'F', 206), +(7259, 'Cecilia', 1899, 'F', 205), +(7260, 'Adeline', 1899, 'F', 200), +(7261, 'Elva', 1899, 'F', 194), +(7262, 'Rena', 1899, 'F', 193), +(7263, 'Juanita', 1899, 'F', 192), +(7264, 'Millie', 1899, 'F', 192), +(7265, 'Nell', 1899, 'F', 192), +(7266, 'Lila', 1899, 'F', 190), +(7267, 'Sally', 1899, 'F', 185), +(7268, 'Veronica', 1899, 'F', 182), +(7269, 'Isabelle', 1899, 'F', 181), +(7270, 'Miriam', 1899, 'F', 181), +(7271, 'Belle', 1899, 'F', 180), +(7272, 'Delia', 1899, 'F', 180), +(7273, 'Lulu', 1899, 'F', 179), +(7274, 'Tillie', 1899, 'F', 175), +(7275, 'Mayme', 1899, 'F', 170), +(7276, 'Muriel', 1899, 'F', 167), +(7277, 'Adele', 1899, 'F', 164), +(7278, 'Birdie', 1899, 'F', 163), +(7279, 'Bertie', 1899, 'F', 162), +(7280, 'Jeanette', 1899, 'F', 162), +(7281, 'Teresa', 1899, 'F', 162), +(7282, 'Bonnie', 1899, 'F', 159), +(7283, 'Lora', 1899, 'F', 154), +(7284, 'Maudie', 1899, 'F', 153), +(7285, 'Leola', 1899, 'F', 151), +(7286, 'Roxie', 1899, 'F', 151), +(7287, 'Leah', 1899, 'F', 149), +(7288, 'Dollie', 1899, 'F', 148), +(7289, 'Hester', 1899, 'F', 148), +(7290, 'Lelia', 1899, 'F', 148), +(7291, 'Cecile', 1899, 'F', 147), +(7292, 'Rita', 1899, 'F', 147), +(7293, 'Adelaide', 1899, 'F', 144), +(7294, 'Anita', 1899, 'F', 142), +(7295, 'Carolyn', 1899, 'F', 141), +(7296, 'Jewell', 1899, 'F', 141), +(7297, 'Lorena', 1899, 'F', 140), +(7298, 'Roberta', 1899, 'F', 140), +(7299, 'Fay', 1899, 'F', 139), +(7300, 'Leila', 1899, 'F', 139), +(7301, 'Gussie', 1899, 'F', 137), +(7302, 'Elma', 1899, 'F', 136), +(7303, 'Bettie', 1899, 'F', 135), +(7304, 'Helena', 1899, 'F', 135), +(7305, 'Cleo', 1899, 'F', 132), +(7306, 'Neva', 1899, 'F', 131), +(7307, 'Regina', 1899, 'F', 131), +(7308, 'Antoinette', 1899, 'F', 130), +(7309, 'Geraldine', 1899, 'F', 130), +(7310, 'Audrey', 1899, 'F', 129), +(7311, 'Letha', 1899, 'F', 129), +(7312, 'Johanna', 1899, 'F', 128), +(7313, 'Mathilda', 1899, 'F', 127), +(7314, 'Rhoda', 1899, 'F', 127), +(7315, 'Faye', 1899, 'F', 125), +(7316, 'Jeannette', 1899, 'F', 125), +(7317, 'Lou', 1899, 'F', 125), +(7318, 'Hallie', 1899, 'F', 124), +(7319, 'Bess', 1899, 'F', 123), +(7320, 'Marcella', 1899, 'F', 123), +(7321, 'Cornelia', 1899, 'F', 122), +(7322, 'Madge', 1899, 'F', 122), +(7323, 'Sue', 1899, 'F', 122), +(7324, 'Claire', 1899, 'F', 121), +(7325, 'Zelma', 1899, 'F', 120), +(7326, 'Hulda', 1899, 'F', 118), +(7327, 'Cecil', 1899, 'F', 117), +(7328, 'Hettie', 1899, 'F', 117), +(7329, 'Margie', 1899, 'F', 117), +(7330, 'Harriett', 1899, 'F', 116), +(7331, 'Lily', 1899, 'F', 115), +(7332, 'Myra', 1899, 'F', 115), +(7333, 'Ila', 1899, 'F', 113), +(7334, 'Christina', 1899, 'F', 112), +(7335, 'Ophelia', 1899, 'F', 112), +(7336, 'Phyllis', 1899, 'F', 111), +(7337, 'Dessie', 1899, 'F', 110), +(7338, 'Olivia', 1899, 'F', 110), +(7339, 'Elnora', 1899, 'F', 109), +(7340, 'Eugenia', 1899, 'F', 109), +(7341, 'Wilhelmina', 1899, 'F', 109), +(7342, 'Gracie', 1899, 'F', 108), +(7343, 'Lilly', 1899, 'F', 107), +(7344, 'Meta', 1899, 'F', 107), +(7345, 'Constance', 1899, 'F', 106), +(7346, 'Erna', 1899, 'F', 106), +(7347, 'Nola', 1899, 'F', 106), +(7348, 'Angeline', 1899, 'F', 105), +(7349, 'Jewel', 1899, 'F', 105), +(7350, 'Elvira', 1899, 'F', 104), +(7351, 'Katharine', 1899, 'F', 104), +(7352, 'Nona', 1899, 'F', 104), +(7353, 'Alvina', 1899, 'F', 103), +(7354, 'Corinne', 1899, 'F', 103), +(7355, 'Rosalie', 1899, 'F', 103), +(7356, 'Gertie', 1899, 'F', 102), +(7357, 'Zella', 1899, 'F', 102), +(7358, 'Francis', 1899, 'F', 101), +(7359, 'Lessie', 1899, 'F', 101), +(7360, 'Louisa', 1899, 'F', 101), +(7361, 'Oma', 1899, 'F', 101), +(7362, 'John', 1899, 'M', 6990), +(7363, 'William', 1899, 'M', 6086), +(7364, 'James', 1899, 'M', 4598), +(7365, 'George', 1899, 'M', 4018), +(7366, 'Charles', 1899, 'M', 3147), +(7367, 'Joseph', 1899, 'M', 2679), +(7368, 'Robert', 1899, 'M', 2609), +(7369, 'Frank', 1899, 'M', 2550), +(7370, 'Edward', 1899, 'M', 1901), +(7371, 'Henry', 1899, 'M', 1831), +(7372, 'Thomas', 1899, 'M', 1811), +(7373, 'Walter', 1899, 'M', 1749), +(7374, 'Harry', 1899, 'M', 1732), +(7375, 'Arthur', 1899, 'M', 1357), +(7376, 'Albert', 1899, 'M', 1210), +(7377, 'Fred', 1899, 'M', 1182), +(7378, 'Clarence', 1899, 'M', 1139), +(7379, 'Willie', 1899, 'M', 1088), +(7380, 'Harold', 1899, 'M', 914), +(7381, 'Roy', 1899, 'M', 912), +(7382, 'Paul', 1899, 'M', 885), +(7383, 'Raymond', 1899, 'M', 869), +(7384, 'Earl', 1899, 'M', 821), +(7385, 'Joe', 1899, 'M', 780), +(7386, 'Carl', 1899, 'M', 774), +(7387, 'Louis', 1899, 'M', 770), +(7388, 'Ernest', 1899, 'M', 744), +(7389, 'Richard', 1899, 'M', 744), +(7390, 'Ralph', 1899, 'M', 742), +(7391, 'Samuel', 1899, 'M', 704), +(7392, 'Charlie', 1899, 'M', 678), +(7393, 'David', 1899, 'M', 647), +(7394, 'Herbert', 1899, 'M', 590), +(7395, 'Howard', 1899, 'M', 589), +(7396, 'Jack', 1899, 'M', 582), +(7397, 'Andrew', 1899, 'M', 578), +(7398, 'Elmer', 1899, 'M', 514), +(7399, 'Francis', 1899, 'M', 501), +(7400, 'Dewey', 1899, 'M', 499), +(7401, 'Lawrence', 1899, 'M', 497), +(7402, 'Alfred', 1899, 'M', 496), +(7403, 'Daniel', 1899, 'M', 485), +(7404, 'Leo', 1899, 'M', 482), +(7405, 'Sam', 1899, 'M', 469), +(7406, 'Eugene', 1899, 'M', 449), +(7407, 'Oscar', 1899, 'M', 447), +(7408, 'Jesse', 1899, 'M', 423), +(7409, 'Will', 1899, 'M', 414), +(7410, 'Herman', 1899, 'M', 413), +(7411, 'Lee', 1899, 'M', 388), +(7412, 'Michael', 1899, 'M', 375), +(7413, 'Floyd', 1899, 'M', 356), +(7414, 'Peter', 1899, 'M', 354), +(7415, 'Lewis', 1899, 'M', 352), +(7416, 'Frederick', 1899, 'M', 350), +(7417, 'Russell', 1899, 'M', 338), +(7418, 'Benjamin', 1899, 'M', 335), +(7419, 'Clyde', 1899, 'M', 330), +(7420, 'Edwin', 1899, 'M', 329), +(7421, 'Leonard', 1899, 'M', 321), +(7422, 'Ray', 1899, 'M', 315), +(7423, 'Clifford', 1899, 'M', 297), +(7424, 'Claude', 1899, 'M', 293), +(7425, 'Anthony', 1899, 'M', 291), +(7426, 'Lester', 1899, 'M', 290), +(7427, 'Chester', 1899, 'M', 288), +(7428, 'Tom', 1899, 'M', 288), +(7429, 'Lloyd', 1899, 'M', 287), +(7430, 'Leroy', 1899, 'M', 269), +(7431, 'Jessie', 1899, 'M', 261), +(7432, 'Jim', 1899, 'M', 261), +(7433, 'Martin', 1899, 'M', 260), +(7434, 'Ben', 1899, 'M', 259), +(7435, 'Donald', 1899, 'M', 258), +(7436, 'Eddie', 1899, 'M', 258), +(7437, 'Stanley', 1899, 'M', 258), +(7438, 'Cecil', 1899, 'M', 256), +(7439, 'Theodore', 1899, 'M', 252), +(7440, 'Harvey', 1899, 'M', 251), +(7441, 'Edgar', 1899, 'M', 249), +(7442, 'Luther', 1899, 'M', 248), +(7443, 'Homer', 1899, 'M', 239), +(7444, 'Norman', 1899, 'M', 223), +(7445, 'Philip', 1899, 'M', 223), +(7446, 'Bernard', 1899, 'M', 222), +(7447, 'Patrick', 1899, 'M', 221), +(7448, 'Kenneth', 1899, 'M', 214), +(7449, 'Hugh', 1899, 'M', 209), +(7450, 'Milton', 1899, 'M', 207), +(7451, 'Guy', 1899, 'M', 200), +(7452, 'Allen', 1899, 'M', 191), +(7453, 'Jacob', 1899, 'M', 189), +(7454, 'Leon', 1899, 'M', 188), +(7455, 'Otis', 1899, 'M', 185), +(7456, 'Everett', 1899, 'M', 181), +(7457, 'Leslie', 1899, 'M', 181), +(7458, 'Alexander', 1899, 'M', 178), +(7459, 'Stephen', 1899, 'M', 178), +(7460, 'Archie', 1899, 'M', 177), +(7461, 'Victor', 1899, 'M', 175), +(7462, 'Ed', 1899, 'M', 174), +(7463, 'Otto', 1899, 'M', 174), +(7464, 'Alvin', 1899, 'M', 173), +(7465, 'Warren', 1899, 'M', 173), +(7466, 'Horace', 1899, 'M', 169), +(7467, 'Melvin', 1899, 'M', 166), +(7468, 'Glenn', 1899, 'M', 161), +(7469, 'Julius', 1899, 'M', 161), +(7470, 'Oliver', 1899, 'M', 161), +(7471, 'Mack', 1899, 'M', 160), +(7472, 'Virgil', 1899, 'M', 154), +(7473, 'Marion', 1899, 'M', 152), +(7474, 'Johnnie', 1899, 'M', 151), +(7475, 'Earnest', 1899, 'M', 146), +(7476, 'Sidney', 1899, 'M', 144), +(7477, 'Willard', 1899, 'M', 144), +(7478, 'August', 1899, 'M', 142), +(7479, 'Percy', 1899, 'M', 142), +(7480, 'Isaac', 1899, 'M', 139), +(7481, 'Ira', 1899, 'M', 138), +(7482, 'Marvin', 1899, 'M', 138), +(7483, 'Alex', 1899, 'M', 133), +(7484, 'Vernon', 1899, 'M', 130), +(7485, 'Emil', 1899, 'M', 128), +(7486, 'Bert', 1899, 'M', 127), +(7487, 'Max', 1899, 'M', 127), +(7488, 'Rufus', 1899, 'M', 127), +(7489, 'Willis', 1899, 'M', 126), +(7490, 'Hubert', 1899, 'M', 125), +(7491, 'Vincent', 1899, 'M', 125), +(7492, 'Wallace', 1899, 'M', 121), +(7493, 'Charley', 1899, 'M', 120), +(7494, 'Dave', 1899, 'M', 120), +(7495, 'Dan', 1899, 'M', 119), +(7496, 'Lonnie', 1899, 'M', 119), +(7497, 'Wesley', 1899, 'M', 119), +(7498, 'Maurice', 1899, 'M', 117), +(7499, 'Franklin', 1899, 'M', 116), +(7500, 'Morris', 1899, 'M', 116), +(7501, 'Wilbur', 1899, 'M', 115), +(7502, 'Nathan', 1899, 'M', 112), +(7503, 'Jerry', 1899, 'M', 111), +(7504, 'Calvin', 1899, 'M', 108), +(7505, 'Gerald', 1899, 'M', 108), +(7506, 'Gilbert', 1899, 'M', 107), +(7507, 'Gordon', 1899, 'M', 107), +(7508, 'Nelson', 1899, 'M', 107), +(7509, 'Perry', 1899, 'M', 104), +(7510, 'Curtis', 1899, 'M', 103), +(7511, 'Glen', 1899, 'M', 101), +(7512, 'Matthew', 1899, 'M', 101), +(7513, 'Roland', 1899, 'M', 101), +(7514, 'Rudolph', 1899, 'M', 100), +(7515, 'Mary', 1900, 'F', 16707), +(7516, 'Helen', 1900, 'F', 6343), +(7517, 'Anna', 1900, 'F', 6114), +(7518, 'Margaret', 1900, 'F', 5306), +(7519, 'Ruth', 1900, 'F', 4765), +(7520, 'Elizabeth', 1900, 'F', 4096), +(7521, 'Florence', 1900, 'F', 3920), +(7522, 'Ethel', 1900, 'F', 3896), +(7523, 'Marie', 1900, 'F', 3856), +(7524, 'Lillian', 1900, 'F', 3414), +(7525, 'Annie', 1900, 'F', 3324), +(7526, 'Edna', 1900, 'F', 3102), +(7527, 'Emma', 1900, 'F', 3095), +(7528, 'Alice', 1900, 'F', 3059), +(7529, 'Bessie', 1900, 'F', 3044), +(7530, 'Bertha', 1900, 'F', 3019), +(7531, 'Grace', 1900, 'F', 2942), +(7532, 'Rose', 1900, 'F', 2845), +(7533, 'Clara', 1900, 'F', 2826), +(7534, 'Mildred', 1900, 'F', 2800), +(7535, 'Gladys', 1900, 'F', 2733), +(7536, 'Minnie', 1900, 'F', 2673), +(7537, 'Gertrude', 1900, 'F', 2580), +(7538, 'Pearl', 1900, 'F', 2512), +(7539, 'Mabel', 1900, 'F', 2509), +(7540, 'Frances', 1900, 'F', 2495), +(7541, 'Dorothy', 1900, 'F', 2491), +(7542, 'Martha', 1900, 'F', 2437), +(7543, 'Hazel', 1900, 'F', 2425), +(7544, 'Ida', 1900, 'F', 2285), +(7545, 'Irene', 1900, 'F', 2264), +(7546, 'Myrtle', 1900, 'F', 2252), +(7547, 'Eva', 1900, 'F', 2089), +(7548, 'Catherine', 1900, 'F', 2081), +(7549, 'Louise', 1900, 'F', 2070), +(7550, 'Edith', 1900, 'F', 2068), +(7551, 'Sarah', 1900, 'F', 2055), +(7552, 'Elsie', 1900, 'F', 2045), +(7553, 'Esther', 1900, 'F', 2017), +(7554, 'Lillie', 1900, 'F', 2004), +(7555, 'Agnes', 1900, 'F', 1914), +(7556, 'Ella', 1900, 'F', 1911), +(7557, 'Nellie', 1900, 'F', 1850), +(7558, 'Mattie', 1900, 'F', 1834), +(7559, 'Laura', 1900, 'F', 1824), +(7560, 'Julia', 1900, 'F', 1766), +(7561, 'Josephine', 1900, 'F', 1743), +(7562, 'Carrie', 1900, 'F', 1711), +(7563, 'Viola', 1900, 'F', 1674), +(7564, 'Hattie', 1900, 'F', 1553), +(7565, 'Ruby', 1900, 'F', 1541), +(7566, 'Lena', 1900, 'F', 1506), +(7567, 'Jessie', 1900, 'F', 1422), +(7568, 'Mae', 1900, 'F', 1406), +(7569, 'Cora', 1900, 'F', 1389), +(7570, 'Beatrice', 1900, 'F', 1382), +(7571, 'Alma', 1900, 'F', 1372), +(7572, 'Willie', 1900, 'F', 1351), +(7573, 'Mamie', 1900, 'F', 1337), +(7574, 'Blanche', 1900, 'F', 1332), +(7575, 'Lucy', 1900, 'F', 1246), +(7576, 'Lula', 1900, 'F', 1237), +(7577, 'Fannie', 1900, 'F', 1236), +(7578, 'Jennie', 1900, 'F', 1204), +(7579, 'Katherine', 1900, 'F', 1201), +(7580, 'Marion', 1900, 'F', 1197), +(7581, 'Lucille', 1900, 'F', 1182), +(7582, 'Stella', 1900, 'F', 1177), +(7583, 'Rosa', 1900, 'F', 1118), +(7584, 'Evelyn', 1900, 'F', 1116), +(7585, 'Pauline', 1900, 'F', 1104), +(7586, 'Ada', 1900, 'F', 1101), +(7587, 'Thelma', 1900, 'F', 1094), +(7588, 'Virginia', 1900, 'F', 1068), +(7589, 'Maggie', 1900, 'F', 1045), +(7590, 'Vera', 1900, 'F', 1024), +(7591, 'Maude', 1900, 'F', 1013), +(7592, 'Beulah', 1900, 'F', 974), +(7593, 'Dora', 1900, 'F', 958), +(7594, 'Susie', 1900, 'F', 946), +(7595, 'Daisy', 1900, 'F', 931), +(7596, 'Ellen', 1900, 'F', 922), +(7597, 'Nora', 1900, 'F', 919), +(7598, 'Sadie', 1900, 'F', 895), +(7599, 'Leona', 1900, 'F', 825), +(7600, 'Marguerite', 1900, 'F', 786), +(7601, 'Georgia', 1900, 'F', 765), +(7602, 'Eleanor', 1900, 'F', 753), +(7603, 'Effie', 1900, 'F', 752), +(7604, 'Della', 1900, 'F', 748), +(7605, 'May', 1900, 'F', 744), +(7606, 'Ann', 1900, 'F', 736), +(7607, 'Kathryn', 1900, 'F', 722), +(7608, 'Nettie', 1900, 'F', 711), +(7609, 'Olive', 1900, 'F', 705), +(7610, 'Bernice', 1900, 'F', 702), +(7611, 'Lottie', 1900, 'F', 690), +(7612, 'Sallie', 1900, 'F', 676), +(7613, 'Nancy', 1900, 'F', 673), +(7614, 'Betty', 1900, 'F', 665), +(7615, 'Hilda', 1900, 'F', 663), +(7616, 'Theresa', 1900, 'F', 659), +(7617, 'Lizzie', 1900, 'F', 657), +(7618, 'Lydia', 1900, 'F', 644), +(7619, 'Emily', 1900, 'F', 626), +(7620, 'Flora', 1900, 'F', 623), +(7621, 'Katie', 1900, 'F', 618), +(7622, 'Anne', 1900, 'F', 614), +(7623, 'Violet', 1900, 'F', 614), +(7624, 'Charlotte', 1900, 'F', 602), +(7625, 'Marjorie', 1900, 'F', 601), +(7626, 'Inez', 1900, 'F', 588), +(7627, 'Ollie', 1900, 'F', 585), +(7628, 'Lola', 1900, 'F', 584), +(7629, 'Lois', 1900, 'F', 577), +(7630, 'Rosie', 1900, 'F', 576), +(7631, 'Doris', 1900, 'F', 557), +(7632, 'Estelle', 1900, 'F', 555), +(7633, 'Addie', 1900, 'F', 541), +(7634, 'Alberta', 1900, 'F', 541), +(7635, 'Loretta', 1900, 'F', 535), +(7636, 'Lela', 1900, 'F', 530), +(7637, 'Etta', 1900, 'F', 508), +(7638, 'Mable', 1900, 'F', 506), +(7639, 'Eunice', 1900, 'F', 503), +(7640, 'Rebecca', 1900, 'F', 503), +(7641, 'Goldie', 1900, 'F', 502), +(7642, 'Jane', 1900, 'F', 495), +(7643, 'Essie', 1900, 'F', 492), +(7644, 'Henrietta', 1900, 'F', 491), +(7645, 'Iva', 1900, 'F', 483), +(7646, 'Jean', 1900, 'F', 473), +(7647, 'Ora', 1900, 'F', 463), +(7648, 'Harriet', 1900, 'F', 461), +(7649, 'Caroline', 1900, 'F', 455), +(7650, 'Nannie', 1900, 'F', 446), +(7651, 'Sylvia', 1900, 'F', 446), +(7652, 'Eula', 1900, 'F', 437), +(7653, 'Mollie', 1900, 'F', 437), +(7654, 'Opal', 1900, 'F', 432), +(7655, 'Velma', 1900, 'F', 426), +(7656, 'Genevieve', 1900, 'F', 420), +(7657, 'Verna', 1900, 'F', 412), +(7658, 'Susan', 1900, 'F', 411), +(7659, 'Marian', 1900, 'F', 408), +(7660, 'Amelia', 1900, 'F', 398), +(7661, 'Lucile', 1900, 'F', 395), +(7662, 'Victoria', 1900, 'F', 391), +(7663, 'Madeline', 1900, 'F', 389), +(7664, 'Maria', 1900, 'F', 389), +(7665, 'Christine', 1900, 'F', 383), +(7666, 'Vivian', 1900, 'F', 383), +(7667, 'Rachel', 1900, 'F', 379), +(7668, 'Amanda', 1900, 'F', 377), +(7669, 'Nina', 1900, 'F', 376), +(7670, 'Olga', 1900, 'F', 376), +(7671, 'Sara', 1900, 'F', 375), +(7672, 'Flossie', 1900, 'F', 368), +(7673, 'Estella', 1900, 'F', 365), +(7674, 'Ola', 1900, 'F', 352), +(7675, 'Matilda', 1900, 'F', 348), +(7676, 'Barbara', 1900, 'F', 341), +(7677, 'Sophie', 1900, 'F', 338), +(7678, 'Alta', 1900, 'F', 337), +(7679, 'Amy', 1900, 'F', 335), +(7680, 'Eliza', 1900, 'F', 335), +(7681, 'Janie', 1900, 'F', 330), +(7682, 'Irma', 1900, 'F', 326), +(7683, 'Hannah', 1900, 'F', 325), +(7684, 'Freda', 1900, 'F', 321), +(7685, 'Kathleen', 1900, 'F', 321), +(7686, 'Geneva', 1900, 'F', 319), +(7687, 'Celia', 1900, 'F', 316), +(7688, 'Norma', 1900, 'F', 316), +(7689, 'Callie', 1900, 'F', 310), +(7690, 'Naomi', 1900, 'F', 307), +(7691, 'Winifred', 1900, 'F', 302), +(7692, 'Elva', 1900, 'F', 301), +(7693, 'Frieda', 1900, 'F', 300), +(7694, 'Kate', 1900, 'F', 297), +(7695, 'Belle', 1900, 'F', 291), +(7696, 'Ina', 1900, 'F', 288), +(7697, 'Sally', 1900, 'F', 288), +(7698, 'Allie', 1900, 'F', 286), +(7699, 'Isabel', 1900, 'F', 286), +(7700, 'Maud', 1900, 'F', 286), +(7701, 'Wilma', 1900, 'F', 285), +(7702, 'Erma', 1900, 'F', 275), +(7703, 'Juanita', 1900, 'F', 273), +(7704, 'Winnie', 1900, 'F', 271), +(7705, 'Lila', 1900, 'F', 268), +(7706, 'Luella', 1900, 'F', 268), +(7707, 'Josie', 1900, 'F', 267), +(7708, 'Fern', 1900, 'F', 266), +(7709, 'Cecelia', 1900, 'F', 264), +(7710, 'Virgie', 1900, 'F', 260), +(7711, 'Sophia', 1900, 'F', 259), +(7712, 'Nell', 1900, 'F', 256), +(7713, 'Cecilia', 1900, 'F', 249), +(7714, 'Augusta', 1900, 'F', 245), +(7715, 'Selma', 1900, 'F', 239), +(7716, 'Adeline', 1900, 'F', 237), +(7717, 'Gussie', 1900, 'F', 236), +(7718, 'Leola', 1900, 'F', 235), +(7719, 'Rena', 1900, 'F', 235), +(7720, 'Jeanette', 1900, 'F', 233), +(7721, 'Delia', 1900, 'F', 231), +(7722, 'Mayme', 1900, 'F', 229), +(7723, 'Millie', 1900, 'F', 229), +(7724, 'Isabelle', 1900, 'F', 224), +(7725, 'Muriel', 1900, 'F', 224), +(7726, 'Bonnie', 1900, 'F', 220), +(7727, 'Veronica', 1900, 'F', 218), +(7728, 'Miriam', 1900, 'F', 214), +(7729, 'Roxie', 1900, 'F', 208), +(7730, 'Lelia', 1900, 'F', 206), +(7731, 'Margie', 1900, 'F', 206), +(7732, 'Dollie', 1900, 'F', 205), +(7733, 'Birdie', 1900, 'F', 204), +(7734, 'Teresa', 1900, 'F', 204), +(7735, 'Bertie', 1900, 'F', 203), +(7736, 'Regina', 1900, 'F', 201), +(7737, 'Tillie', 1900, 'F', 201), +(7738, 'Cornelia', 1900, 'F', 200), +(7739, 'Roberta', 1900, 'F', 199), +(7740, 'Cleo', 1900, 'F', 198), +(7741, 'Audrey', 1900, 'F', 196), +(7742, 'Lulu', 1900, 'F', 196), +(7743, 'Faye', 1900, 'F', 194), +(7744, 'Adele', 1900, 'F', 186), +(7745, 'Carolyn', 1900, 'F', 185), +(7746, 'Madge', 1900, 'F', 184), +(7747, 'Adelaide', 1900, 'F', 183), +(7748, 'Hester', 1900, 'F', 183), +(7749, 'Elma', 1900, 'F', 182), +(7750, 'Elnora', 1900, 'F', 182), +(7751, 'Letha', 1900, 'F', 182), +(7752, 'Leila', 1900, 'F', 178), +(7753, 'Lorena', 1900, 'F', 178), +(7754, 'Anita', 1900, 'F', 177), +(7755, 'Ila', 1900, 'F', 177), +(7756, 'Jewell', 1900, 'F', 177), +(7757, 'Lessie', 1900, 'F', 176), +(7758, 'Lora', 1900, 'F', 176), +(7759, 'Maudie', 1900, 'F', 176), +(7760, 'Cecile', 1900, 'F', 175), +(7761, 'Zella', 1900, 'F', 171), +(7762, 'Fay', 1900, 'F', 170), +(7763, 'Jeannette', 1900, 'F', 170), +(7764, 'Bettie', 1900, 'F', 167), +(7765, 'Olivia', 1900, 'F', 167), +(7766, 'Leah', 1900, 'F', 166), +(7767, 'Johnnie', 1900, 'F', 164), +(7768, 'Myra', 1900, 'F', 164), +(7769, 'Jewel', 1900, 'F', 162), +(7770, 'Rita', 1900, 'F', 162), +(7771, 'Francis', 1900, 'F', 159), +(7772, 'Gracie', 1900, 'F', 158), +(7773, 'Hallie', 1900, 'F', 157), +(7774, 'Neva', 1900, 'F', 157), +(7775, 'Sue', 1900, 'F', 157), +(7776, 'Claire', 1900, 'F', 156), +(7777, 'Dovie', 1900, 'F', 154), +(7778, 'Lilly', 1900, 'F', 154), +(7779, 'Lenora', 1900, 'F', 153), +(7780, 'Rhoda', 1900, 'F', 151), +(7781, 'Harriett', 1900, 'F', 150), +(7782, 'Ophelia', 1900, 'F', 150), +(7783, 'Geraldine', 1900, 'F', 145), +(7784, 'Johanna', 1900, 'F', 144), +(7785, 'Louisa', 1900, 'F', 144), +(7786, 'Lettie', 1900, 'F', 143), +(7787, 'Katharine', 1900, 'F', 141), +(7788, 'Dorothea', 1900, 'F', 140), +(7789, 'Lou', 1900, 'F', 140), +(7790, 'Pearlie', 1900, 'F', 140), +(7791, 'Helene', 1900, 'F', 138), +(7792, 'Lee', 1900, 'F', 138), +(7793, 'Elvira', 1900, 'F', 135), +(7794, 'Antoinette', 1900, 'F', 134), +(7795, 'Bess', 1900, 'F', 134), +(7796, 'Angeline', 1900, 'F', 133), +(7797, 'Christina', 1900, 'F', 132), +(7798, 'Hettie', 1900, 'F', 132), +(7799, 'Nona', 1900, 'F', 132), +(7800, 'Rosetta', 1900, 'F', 132), +(7801, 'Zelma', 1900, 'F', 131), +(7802, 'Cecil', 1900, 'F', 129), +(7803, 'Nola', 1900, 'F', 129), +(7804, 'Isabella', 1900, 'F', 128), +(7805, 'June', 1900, 'F', 126), +(7806, 'Lily', 1900, 'F', 126), +(7807, 'Linda', 1900, 'F', 126), +(7808, 'Phyllis', 1900, 'F', 126), +(7809, 'Claudia', 1900, 'F', 125), +(7810, 'Dessie', 1900, 'F', 125), +(7811, 'Marcella', 1900, 'F', 125), +(7812, 'Lucinda', 1900, 'F', 123), +(7813, 'Corinne', 1900, 'F', 122), +(7814, 'Rosalie', 1900, 'F', 121), +(7815, 'Edythe', 1900, 'F', 119), +(7816, 'Lorraine', 1900, 'F', 119), +(7817, 'Gertie', 1900, 'F', 117), +(7818, 'Oma', 1900, 'F', 116), +(7819, 'Reba', 1900, 'F', 116), +(7820, 'Alvina', 1900, 'F', 115), +(7821, 'Angelina', 1900, 'F', 115), +(7822, 'Erna', 1900, 'F', 115), +(7823, 'Wilhelmina', 1900, 'F', 114), +(7824, 'Annette', 1900, 'F', 113), +(7825, 'Blanch', 1900, 'F', 113), +(7826, 'Clarice', 1900, 'F', 113), +(7827, 'Linnie', 1900, 'F', 113), +(7828, 'Mathilda', 1900, 'F', 113), +(7829, 'Merle', 1900, 'F', 113), +(7830, 'Abbie', 1900, 'F', 112), +(7831, 'Constance', 1900, 'F', 112), +(7832, 'Eugenia', 1900, 'F', 112), +(7833, 'Helena', 1900, 'F', 112), +(7834, 'Vesta', 1900, 'F', 112), +(7835, 'Louella', 1900, 'F', 111), +(7836, 'Hulda', 1900, 'F', 110), +(7837, 'Priscilla', 1900, 'F', 110), +(7838, 'Shirley', 1900, 'F', 110), +(7839, 'Corine', 1900, 'F', 109), +(7840, 'Janet', 1900, 'F', 108), +(7841, 'Angela', 1900, 'F', 107), +(7842, 'Eloise', 1900, 'F', 107), +(7843, 'Mittie', 1900, 'F', 107), +(7844, 'Golda', 1900, 'F', 106), +(7845, 'Jannie', 1900, 'F', 105), +(7846, 'Catharine', 1900, 'F', 104), +(7847, 'Lorene', 1900, 'F', 104), +(7848, 'Lona', 1900, 'F', 103), +(7849, 'Elsa', 1900, 'F', 102), +(7850, 'Minerva', 1900, 'F', 101), +(7851, 'John', 1900, 'M', 9829), +(7852, 'William', 1900, 'M', 8578), +(7853, 'James', 1900, 'M', 7245), +(7854, 'George', 1900, 'M', 5403), +(7855, 'Charles', 1900, 'M', 4101), +(7856, 'Robert', 1900, 'M', 3823), +(7857, 'Joseph', 1900, 'M', 3714), +(7858, 'Frank', 1900, 'M', 3477), +(7859, 'Edward', 1900, 'M', 2720), +(7860, 'Henry', 1900, 'M', 2606), +(7861, 'Thomas', 1900, 'M', 2557), +(7862, 'Walter', 1900, 'M', 2298), +(7863, 'Harry', 1900, 'M', 2272), +(7864, 'Willie', 1900, 'M', 2113), +(7865, 'Arthur', 1900, 'M', 1853), +(7866, 'Albert', 1900, 'M', 1741), +(7867, 'Fred', 1900, 'M', 1646), +(7868, 'Clarence', 1900, 'M', 1483), +(7869, 'Paul', 1900, 'M', 1288), +(7870, 'Harold', 1900, 'M', 1246), +(7871, 'Roy', 1900, 'M', 1215), +(7872, 'Joe', 1900, 'M', 1179), +(7873, 'Raymond', 1900, 'M', 1150), +(7874, 'Richard', 1900, 'M', 1142), +(7875, 'Charlie', 1900, 'M', 1124), +(7876, 'Louis', 1900, 'M', 1098), +(7877, 'Jack', 1900, 'M', 1053), +(7878, 'Earl', 1900, 'M', 1037), +(7879, 'Carl', 1900, 'M', 1016), +(7880, 'Ernest', 1900, 'M', 1012), +(7881, 'Ralph', 1900, 'M', 896), +(7882, 'David', 1900, 'M', 885), +(7883, 'Samuel', 1900, 'M', 877), +(7884, 'Sam', 1900, 'M', 821), +(7885, 'Howard', 1900, 'M', 780), +(7886, 'Herbert', 1900, 'M', 751), +(7887, 'Andrew', 1900, 'M', 718), +(7888, 'Elmer', 1900, 'M', 699), +(7889, 'Lee', 1900, 'M', 675), +(7890, 'Lawrence', 1900, 'M', 659), +(7891, 'Francis', 1900, 'M', 652), +(7892, 'Alfred', 1900, 'M', 640), +(7893, 'Will', 1900, 'M', 603), +(7894, 'Daniel', 1900, 'M', 598), +(7895, 'Eugene', 1900, 'M', 587), +(7896, 'Leo', 1900, 'M', 570), +(7897, 'Oscar', 1900, 'M', 563), +(7898, 'Floyd', 1900, 'M', 555), +(7899, 'Herman', 1900, 'M', 550); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(7900, 'Jesse', 1900, 'M', 536), +(7901, 'Michael', 1900, 'M', 497), +(7902, 'Lewis', 1900, 'M', 469), +(7903, 'Tom', 1900, 'M', 469), +(7904, 'Leonard', 1900, 'M', 465), +(7905, 'Ray', 1900, 'M', 457), +(7906, 'Clyde', 1900, 'M', 451), +(7907, 'Benjamin', 1900, 'M', 450), +(7908, 'Peter', 1900, 'M', 443), +(7909, 'Claude', 1900, 'M', 433), +(7910, 'Lester', 1900, 'M', 432), +(7911, 'Theodore', 1900, 'M', 429), +(7912, 'Russell', 1900, 'M', 427), +(7913, 'Eddie', 1900, 'M', 425), +(7914, 'Frederick', 1900, 'M', 420), +(7915, 'Leroy', 1900, 'M', 419), +(7916, 'Clifford', 1900, 'M', 409), +(7917, 'Anthony', 1900, 'M', 406), +(7918, 'Jim', 1900, 'M', 399), +(7919, 'Jessie', 1900, 'M', 397), +(7920, 'Martin', 1900, 'M', 383), +(7921, 'Edgar', 1900, 'M', 374), +(7922, 'Chester', 1900, 'M', 364), +(7923, 'Ben', 1900, 'M', 355), +(7924, 'Edwin', 1900, 'M', 350), +(7925, 'Dewey', 1900, 'M', 345), +(7926, 'Cecil', 1900, 'M', 344), +(7927, 'Stanley', 1900, 'M', 342), +(7928, 'Lloyd', 1900, 'M', 337), +(7929, 'Donald', 1900, 'M', 328), +(7930, 'Homer', 1900, 'M', 326), +(7931, 'Harvey', 1900, 'M', 322), +(7932, 'Luther', 1900, 'M', 316), +(7933, 'Norman', 1900, 'M', 316), +(7934, 'Johnnie', 1900, 'M', 313), +(7935, 'Leon', 1900, 'M', 310), +(7936, 'Bernard', 1900, 'M', 308), +(7937, 'Ed', 1900, 'M', 297), +(7938, 'Hugh', 1900, 'M', 290), +(7939, 'Patrick', 1900, 'M', 285), +(7940, 'Kenneth', 1900, 'M', 279), +(7941, 'Leslie', 1900, 'M', 275), +(7942, 'Victor', 1900, 'M', 269), +(7943, 'Alexander', 1900, 'M', 261), +(7944, 'Philip', 1900, 'M', 259), +(7945, 'Oliver', 1900, 'M', 256), +(7946, 'Mack', 1900, 'M', 250), +(7947, 'Horace', 1900, 'M', 244), +(7948, 'Milton', 1900, 'M', 242), +(7949, 'Guy', 1900, 'M', 240), +(7950, 'Everett', 1900, 'M', 237), +(7951, 'Jacob', 1900, 'M', 233), +(7952, 'Melvin', 1900, 'M', 231), +(7953, 'Charley', 1900, 'M', 224), +(7954, 'Allen', 1900, 'M', 223), +(7955, 'Alvin', 1900, 'M', 223), +(7956, 'Earnest', 1900, 'M', 223), +(7957, 'Ira', 1900, 'M', 218), +(7958, 'Sidney', 1900, 'M', 218), +(7959, 'Archie', 1900, 'M', 216), +(7960, 'Otis', 1900, 'M', 212), +(7961, 'Virgil', 1900, 'M', 212), +(7962, 'Julius', 1900, 'M', 206), +(7963, 'Jerry', 1900, 'M', 205), +(7964, 'Percy', 1900, 'M', 201), +(7965, 'Otto', 1900, 'M', 199), +(7966, 'Isaac', 1900, 'M', 198), +(7967, 'Bill', 1900, 'M', 196), +(7968, 'Glenn', 1900, 'M', 194), +(7969, 'Maurice', 1900, 'M', 193), +(7970, 'Alex', 1900, 'M', 192), +(7971, 'Dan', 1900, 'M', 192), +(7972, 'Warren', 1900, 'M', 191), +(7973, 'Hubert', 1900, 'M', 189), +(7974, 'Marion', 1900, 'M', 189), +(7975, 'Lonnie', 1900, 'M', 186), +(7976, 'Nathan', 1900, 'M', 186), +(7977, 'Stephen', 1900, 'M', 181), +(7978, 'Wesley', 1900, 'M', 181), +(7979, 'Vincent', 1900, 'M', 178), +(7980, 'Marvin', 1900, 'M', 176), +(7981, 'Manuel', 1900, 'M', 174), +(7982, 'Willard', 1900, 'M', 172), +(7983, 'Vernon', 1900, 'M', 170), +(7984, 'Willis', 1900, 'M', 169), +(7985, 'Dave', 1900, 'M', 166), +(7986, 'Morris', 1900, 'M', 162), +(7987, 'Jose', 1900, 'M', 161), +(7988, 'Wallace', 1900, 'M', 161), +(7989, 'Wilbur', 1900, 'M', 161), +(7990, 'Gerald', 1900, 'M', 157), +(7991, 'Rufus', 1900, 'M', 157), +(7992, 'Bennie', 1900, 'M', 154), +(7993, 'Bert', 1900, 'M', 153), +(7994, 'August', 1900, 'M', 148), +(7995, 'Rudolph', 1900, 'M', 147), +(7996, 'Gilbert', 1900, 'M', 145), +(7997, 'Curtis', 1900, 'M', 144), +(7998, 'Perry', 1900, 'M', 142), +(7999, 'Max', 1900, 'M', 141), +(8000, 'Steve', 1900, 'M', 139), +(8001, 'Franklin', 1900, 'M', 137), +(8002, 'Gordon', 1900, 'M', 137), +(8003, 'Mark', 1900, 'M', 137), +(8004, 'Nelson', 1900, 'M', 135), +(8005, 'Glen', 1900, 'M', 134), +(8006, 'Mckinley', 1900, 'M', 133), +(8007, 'Roland', 1900, 'M', 133), +(8008, 'Dennis', 1900, 'M', 132), +(8009, 'Mike', 1900, 'M', 132), +(8010, 'Sylvester', 1900, 'M', 131), +(8011, 'Johnie', 1900, 'M', 130), +(8012, 'Matthew', 1900, 'M', 130), +(8013, 'Calvin', 1900, 'M', 128), +(8014, 'Jess', 1900, 'M', 128), +(8015, 'Emil', 1900, 'M', 127), +(8016, 'Phillip', 1900, 'M', 127), +(8017, 'Marshall', 1900, 'M', 126), +(8018, 'Amos', 1900, 'M', 125), +(8019, 'Elbert', 1900, 'M', 125), +(8020, 'Felix', 1900, 'M', 123), +(8021, 'Arnold', 1900, 'M', 122), +(8022, 'Jake', 1900, 'M', 121), +(8023, 'Ellis', 1900, 'M', 120), +(8024, 'Gus', 1900, 'M', 120), +(8025, 'Emmett', 1900, 'M', 119), +(8026, 'Clayton', 1900, 'M', 118), +(8027, 'Irvin', 1900, 'M', 118), +(8028, 'Jimmie', 1900, 'M', 118), +(8029, 'Nathaniel', 1900, 'M', 118), +(8030, 'Adolph', 1900, 'M', 117), +(8031, 'Moses', 1900, 'M', 117), +(8032, 'Alonzo', 1900, 'M', 116), +(8033, 'Cornelius', 1900, 'M', 116), +(8034, 'Pete', 1900, 'M', 116), +(8035, 'Irving', 1900, 'M', 115), +(8036, 'Orville', 1900, 'M', 112), +(8037, 'Adam', 1900, 'M', 111), +(8038, 'Ollie', 1900, 'M', 109), +(8039, 'Clifton', 1900, 'M', 108), +(8040, 'Douglas', 1900, 'M', 108), +(8041, 'Claud', 1900, 'M', 107), +(8042, 'Jay', 1900, 'M', 107), +(8043, 'Aaron', 1900, 'M', 103), +(8044, 'Tony', 1900, 'M', 101), +(8045, 'Abraham', 1900, 'M', 100), +(8046, 'Mary', 1901, 'F', 13136), +(8047, 'Helen', 1901, 'F', 5247), +(8048, 'Anna', 1901, 'F', 4923), +(8049, 'Margaret', 1901, 'F', 4424), +(8050, 'Ruth', 1901, 'F', 3974), +(8051, 'Elizabeth', 1901, 'F', 3216), +(8052, 'Marie', 1901, 'F', 3157), +(8053, 'Florence', 1901, 'F', 3131), +(8054, 'Ethel', 1901, 'F', 3067), +(8055, 'Lillian', 1901, 'F', 2681), +(8056, 'Gladys', 1901, 'F', 2676), +(8057, 'Alice', 1901, 'F', 2562), +(8058, 'Edna', 1901, 'F', 2488), +(8059, 'Mildred', 1901, 'F', 2424), +(8060, 'Grace', 1901, 'F', 2398), +(8061, 'Annie', 1901, 'F', 2396), +(8062, 'Emma', 1901, 'F', 2374), +(8063, 'Clara', 1901, 'F', 2319), +(8064, 'Bertha', 1901, 'F', 2257), +(8065, 'Rose', 1901, 'F', 2212), +(8066, 'Bessie', 1901, 'F', 2183), +(8067, 'Dorothy', 1901, 'F', 2173), +(8068, 'Hazel', 1901, 'F', 2097), +(8069, 'Mabel', 1901, 'F', 2097), +(8070, 'Frances', 1901, 'F', 2071), +(8071, 'Minnie', 1901, 'F', 2026), +(8072, 'Gertrude', 1901, 'F', 1964), +(8073, 'Myrtle', 1901, 'F', 1892), +(8074, 'Martha', 1901, 'F', 1886), +(8075, 'Irene', 1901, 'F', 1879), +(8076, 'Pearl', 1901, 'F', 1866), +(8077, 'Edith', 1901, 'F', 1863), +(8078, 'Esther', 1901, 'F', 1844), +(8079, 'Ida', 1901, 'F', 1835), +(8080, 'Elsie', 1901, 'F', 1747), +(8081, 'Louise', 1901, 'F', 1640), +(8082, 'Eva', 1901, 'F', 1617), +(8083, 'Catherine', 1901, 'F', 1599), +(8084, 'Agnes', 1901, 'F', 1525), +(8085, 'Sarah', 1901, 'F', 1514), +(8086, 'Nellie', 1901, 'F', 1454), +(8087, 'Ella', 1901, 'F', 1435), +(8088, 'Josephine', 1901, 'F', 1434), +(8089, 'Laura', 1901, 'F', 1402), +(8090, 'Lillie', 1901, 'F', 1382), +(8091, 'Julia', 1901, 'F', 1362), +(8092, 'Viola', 1901, 'F', 1331), +(8093, 'Carrie', 1901, 'F', 1247), +(8094, 'Ruby', 1901, 'F', 1225), +(8095, 'Mattie', 1901, 'F', 1224), +(8096, 'Lena', 1901, 'F', 1216), +(8097, 'Alma', 1901, 'F', 1195), +(8098, 'Beatrice', 1901, 'F', 1183), +(8099, 'Mae', 1901, 'F', 1140), +(8100, 'Jessie', 1901, 'F', 1116), +(8101, 'Hattie', 1901, 'F', 1106), +(8102, 'Thelma', 1901, 'F', 1090), +(8103, 'Cora', 1901, 'F', 1027), +(8104, 'Blanche', 1901, 'F', 1025), +(8105, 'Mamie', 1901, 'F', 992), +(8106, 'Lucy', 1901, 'F', 979), +(8107, 'Evelyn', 1901, 'F', 966), +(8108, 'Marion', 1901, 'F', 963), +(8109, 'Pauline', 1901, 'F', 938), +(8110, 'Stella', 1901, 'F', 928), +(8111, 'Ada', 1901, 'F', 913), +(8112, 'Lula', 1901, 'F', 905), +(8113, 'Willie', 1901, 'F', 901), +(8114, 'Jennie', 1901, 'F', 898), +(8115, 'Lucille', 1901, 'F', 894), +(8116, 'Katherine', 1901, 'F', 890), +(8117, 'Fannie', 1901, 'F', 873), +(8118, 'Vera', 1901, 'F', 860), +(8119, 'Beulah', 1901, 'F', 859), +(8120, 'Rosa', 1901, 'F', 845), +(8121, 'Virginia', 1901, 'F', 825), +(8122, 'Maude', 1901, 'F', 819), +(8123, 'Leona', 1901, 'F', 779), +(8124, 'Dora', 1901, 'F', 768), +(8125, 'Maggie', 1901, 'F', 746), +(8126, 'Nora', 1901, 'F', 727), +(8127, 'Ellen', 1901, 'F', 711), +(8128, 'Marguerite', 1901, 'F', 699), +(8129, 'Eleanor', 1901, 'F', 686), +(8130, 'Sadie', 1901, 'F', 676), +(8131, 'Bernice', 1901, 'F', 660), +(8132, 'Daisy', 1901, 'F', 653), +(8133, 'Susie', 1901, 'F', 650), +(8134, 'Ann', 1901, 'F', 634), +(8135, 'Kathryn', 1901, 'F', 620), +(8136, 'Violet', 1901, 'F', 611), +(8137, 'Hilda', 1901, 'F', 574), +(8138, 'Nettie', 1901, 'F', 562), +(8139, 'Theresa', 1901, 'F', 554), +(8140, 'May', 1901, 'F', 550), +(8141, 'Georgia', 1901, 'F', 549), +(8142, 'Effie', 1901, 'F', 545), +(8143, 'Olive', 1901, 'F', 539), +(8144, 'Emily', 1901, 'F', 537), +(8145, 'Della', 1901, 'F', 534), +(8146, 'Doris', 1901, 'F', 531), +(8147, 'Nancy', 1901, 'F', 519), +(8148, 'Lydia', 1901, 'F', 507), +(8149, 'Anne', 1901, 'F', 504), +(8150, 'Charlotte', 1901, 'F', 503), +(8151, 'Lottie', 1901, 'F', 498), +(8152, 'Flora', 1901, 'F', 493), +(8153, 'Lola', 1901, 'F', 493), +(8154, 'Lois', 1901, 'F', 488), +(8155, 'Sallie', 1901, 'F', 488), +(8156, 'Marjorie', 1901, 'F', 480), +(8157, 'Betty', 1901, 'F', 474), +(8158, 'Ollie', 1901, 'F', 462), +(8159, 'Inez', 1901, 'F', 459), +(8160, 'Lizzie', 1901, 'F', 458), +(8161, 'Katie', 1901, 'F', 453), +(8162, 'Lela', 1901, 'F', 443), +(8163, 'Loretta', 1901, 'F', 438), +(8164, 'Goldie', 1901, 'F', 430), +(8165, 'Iva', 1901, 'F', 427), +(8166, 'Mable', 1901, 'F', 425), +(8167, 'Eunice', 1901, 'F', 424), +(8168, 'Harriet', 1901, 'F', 414), +(8169, 'Eula', 1901, 'F', 408), +(8170, 'Caroline', 1901, 'F', 406), +(8171, 'Opal', 1901, 'F', 406), +(8172, 'Ora', 1901, 'F', 400), +(8173, 'Addie', 1901, 'F', 399), +(8174, 'Sylvia', 1901, 'F', 390), +(8175, 'Velma', 1901, 'F', 388), +(8176, 'Alberta', 1901, 'F', 386), +(8177, 'Henrietta', 1901, 'F', 383), +(8178, 'Estelle', 1901, 'F', 381), +(8179, 'Etta', 1901, 'F', 381), +(8180, 'Rachel', 1901, 'F', 369), +(8181, 'Essie', 1901, 'F', 368), +(8182, 'Genevieve', 1901, 'F', 368), +(8183, 'Verna', 1901, 'F', 361), +(8184, 'Nannie', 1901, 'F', 358), +(8185, 'Amelia', 1901, 'F', 350), +(8186, 'Maria', 1901, 'F', 350), +(8187, 'Lucile', 1901, 'F', 346), +(8188, 'Victoria', 1901, 'F', 346), +(8189, 'Rebecca', 1901, 'F', 342), +(8190, 'Susan', 1901, 'F', 342), +(8191, 'Vivian', 1901, 'F', 342), +(8192, 'Madeline', 1901, 'F', 341), +(8193, 'Rosie', 1901, 'F', 330), +(8194, 'Jean', 1901, 'F', 329), +(8195, 'Jane', 1901, 'F', 325), +(8196, 'Mollie', 1901, 'F', 324), +(8197, 'Ola', 1901, 'F', 324), +(8198, 'Sophie', 1901, 'F', 324), +(8199, 'Frieda', 1901, 'F', 323), +(8200, 'Amanda', 1901, 'F', 317), +(8201, 'Sara', 1901, 'F', 315), +(8202, 'Irma', 1901, 'F', 304), +(8203, 'Flossie', 1901, 'F', 301), +(8204, 'Marian', 1901, 'F', 296), +(8205, 'Nina', 1901, 'F', 295), +(8206, 'Elva', 1901, 'F', 283), +(8207, 'Estella', 1901, 'F', 281), +(8208, 'Janie', 1901, 'F', 278), +(8209, 'Barbara', 1901, 'F', 277), +(8210, 'Alta', 1901, 'F', 275), +(8211, 'Christine', 1901, 'F', 275), +(8212, 'Matilda', 1901, 'F', 275), +(8213, 'Olga', 1901, 'F', 273), +(8214, 'Kathleen', 1901, 'F', 272), +(8215, 'Hannah', 1901, 'F', 266), +(8216, 'Norma', 1901, 'F', 264), +(8217, 'Naomi', 1901, 'F', 256), +(8218, 'Freda', 1901, 'F', 255), +(8219, 'Celia', 1901, 'F', 251), +(8220, 'Juanita', 1901, 'F', 251), +(8221, 'Cecelia', 1901, 'F', 249), +(8222, 'Ina', 1901, 'F', 249), +(8223, 'Wilma', 1901, 'F', 245), +(8224, 'Amy', 1901, 'F', 244), +(8225, 'Geneva', 1901, 'F', 244), +(8226, 'Selma', 1901, 'F', 242), +(8227, 'Luella', 1901, 'F', 239), +(8228, 'Erma', 1901, 'F', 236), +(8229, 'Winifred', 1901, 'F', 232), +(8230, 'Augusta', 1901, 'F', 225), +(8231, 'Maud', 1901, 'F', 221), +(8232, 'Sophia', 1901, 'F', 221), +(8233, 'Regina', 1901, 'F', 219), +(8234, 'Miriam', 1901, 'F', 218), +(8235, 'Winnie', 1901, 'F', 218), +(8236, 'Fern', 1901, 'F', 217), +(8237, 'Rena', 1901, 'F', 215), +(8238, 'Virgie', 1901, 'F', 215), +(8239, 'Allie', 1901, 'F', 214), +(8240, 'Isabel', 1901, 'F', 214), +(8241, 'Sally', 1901, 'F', 214), +(8242, 'Belle', 1901, 'F', 208), +(8243, 'Eliza', 1901, 'F', 207), +(8244, 'Josie', 1901, 'F', 205), +(8245, 'Nell', 1901, 'F', 205), +(8246, 'Veronica', 1901, 'F', 199), +(8247, 'Bertie', 1901, 'F', 196), +(8248, 'Cecilia', 1901, 'F', 196), +(8249, 'Kate', 1901, 'F', 196), +(8250, 'Millie', 1901, 'F', 196), +(8251, 'Muriel', 1901, 'F', 195), +(8252, 'Isabelle', 1901, 'F', 194), +(8253, 'Adeline', 1901, 'F', 192), +(8254, 'Elma', 1901, 'F', 189), +(8255, 'Anita', 1901, 'F', 184), +(8256, 'Leah', 1901, 'F', 184), +(8257, 'Callie', 1901, 'F', 183), +(8258, 'Mayme', 1901, 'F', 183), +(8259, 'Lila', 1901, 'F', 181), +(8260, 'Bonnie', 1901, 'F', 179), +(8261, 'Roxie', 1901, 'F', 179), +(8262, 'Leola', 1901, 'F', 176), +(8263, 'Birdie', 1901, 'F', 170), +(8264, 'Dollie', 1901, 'F', 169), +(8265, 'Gussie', 1901, 'F', 167), +(8266, 'Jeannette', 1901, 'F', 167), +(8267, 'Margie', 1901, 'F', 165), +(8268, 'Roberta', 1901, 'F', 165), +(8269, 'Delia', 1901, 'F', 164), +(8270, 'Teresa', 1901, 'F', 164), +(8271, 'Faye', 1901, 'F', 161), +(8272, 'Jeanette', 1901, 'F', 161), +(8273, 'Jewel', 1901, 'F', 161), +(8274, 'Cleo', 1901, 'F', 160), +(8275, 'Hester', 1901, 'F', 160), +(8276, 'Jewell', 1901, 'F', 159), +(8277, 'Lora', 1901, 'F', 159), +(8278, 'Adele', 1901, 'F', 157), +(8279, 'Tillie', 1901, 'F', 156), +(8280, 'Fay', 1901, 'F', 151), +(8281, 'Maudie', 1901, 'F', 149), +(8282, 'Carolyn', 1901, 'F', 148), +(8283, 'Adelaide', 1901, 'F', 147), +(8284, 'Letha', 1901, 'F', 147), +(8285, 'Leila', 1901, 'F', 145), +(8286, 'Madge', 1901, 'F', 143), +(8287, 'Antoinette', 1901, 'F', 141), +(8288, 'Geraldine', 1901, 'F', 141), +(8289, 'Ila', 1901, 'F', 138), +(8290, 'Lelia', 1901, 'F', 138), +(8291, 'Cornelia', 1901, 'F', 137), +(8292, 'Hallie', 1901, 'F', 135), +(8293, 'Lulu', 1901, 'F', 135), +(8294, 'Rita', 1901, 'F', 135), +(8295, 'Sue', 1901, 'F', 135), +(8296, 'Audrey', 1901, 'F', 134), +(8297, 'Cecile', 1901, 'F', 133), +(8298, 'Lessie', 1901, 'F', 132), +(8299, 'Lorena', 1901, 'F', 130), +(8300, 'Cecil', 1901, 'F', 128), +(8301, 'Zelma', 1901, 'F', 127), +(8302, 'Corinne', 1901, 'F', 126), +(8303, 'Francis', 1901, 'F', 126), +(8304, 'Olivia', 1901, 'F', 126), +(8305, 'Rhoda', 1901, 'F', 125), +(8306, 'Phyllis', 1901, 'F', 124), +(8307, 'Reba', 1901, 'F', 124), +(8308, 'Edythe', 1901, 'F', 123), +(8309, 'Marcella', 1901, 'F', 123), +(8310, 'Angelina', 1901, 'F', 122), +(8311, 'Claire', 1901, 'F', 122), +(8312, 'Helene', 1901, 'F', 122), +(8313, 'Zella', 1901, 'F', 122), +(8314, 'Gracie', 1901, 'F', 121), +(8315, 'Neva', 1901, 'F', 120), +(8316, 'Helena', 1901, 'F', 119), +(8317, 'Johanna', 1901, 'F', 119), +(8318, 'Lenora', 1901, 'F', 118), +(8319, 'Rosalie', 1901, 'F', 118), +(8320, 'Hettie', 1901, 'F', 117), +(8321, 'Oma', 1901, 'F', 117), +(8322, 'Elnora', 1901, 'F', 116), +(8323, 'Myra', 1901, 'F', 115), +(8324, 'June', 1901, 'F', 113), +(8325, 'Pearlie', 1901, 'F', 113), +(8326, 'Bettie', 1901, 'F', 111), +(8327, 'Angeline', 1901, 'F', 110), +(8328, 'Christina', 1901, 'F', 110), +(8329, 'Johnnie', 1901, 'F', 110), +(8330, 'Dorothea', 1901, 'F', 109), +(8331, 'Gertie', 1901, 'F', 109), +(8332, 'Mathilda', 1901, 'F', 109), +(8333, 'Janet', 1901, 'F', 108), +(8334, 'Bess', 1901, 'F', 107), +(8335, 'Clarice', 1901, 'F', 107), +(8336, 'Dessie', 1901, 'F', 107), +(8337, 'Wilhelmina', 1901, 'F', 107), +(8338, 'Annette', 1901, 'F', 106), +(8339, 'Katharine', 1901, 'F', 106), +(8340, 'Lorene', 1901, 'F', 106), +(8341, 'Meta', 1901, 'F', 106), +(8342, 'Elvira', 1901, 'F', 105), +(8343, 'Lilly', 1901, 'F', 105), +(8344, 'Hulda', 1901, 'F', 104), +(8345, 'Harriett', 1901, 'F', 101), +(8346, 'Lorraine', 1901, 'F', 101), +(8347, 'John', 1901, 'M', 6899), +(8348, 'William', 1901, 'M', 5990), +(8349, 'James', 1901, 'M', 4735), +(8350, 'George', 1901, 'M', 3609), +(8351, 'Charles', 1901, 'M', 3049), +(8352, 'Joseph', 1901, 'M', 2766), +(8353, 'Robert', 1901, 'M', 2543), +(8354, 'Frank', 1901, 'M', 2402), +(8355, 'Edward', 1901, 'M', 1917), +(8356, 'Henry', 1901, 'M', 1870), +(8357, 'Thomas', 1901, 'M', 1820), +(8358, 'Walter', 1901, 'M', 1718), +(8359, 'Harry', 1901, 'M', 1594), +(8360, 'Arthur', 1901, 'M', 1329), +(8361, 'Albert', 1901, 'M', 1317), +(8362, 'Willie', 1901, 'M', 1294), +(8363, 'Clarence', 1901, 'M', 1196), +(8364, 'Fred', 1901, 'M', 1133), +(8365, 'Paul', 1901, 'M', 924), +(8366, 'Roy', 1901, 'M', 917), +(8367, 'Harold', 1901, 'M', 915), +(8368, 'Raymond', 1901, 'M', 888), +(8369, 'Earl', 1901, 'M', 818), +(8370, 'Carl', 1901, 'M', 817), +(8371, 'Louis', 1901, 'M', 797), +(8372, 'Richard', 1901, 'M', 784), +(8373, 'Joe', 1901, 'M', 756), +(8374, 'Ernest', 1901, 'M', 691), +(8375, 'Ralph', 1901, 'M', 682), +(8376, 'David', 1901, 'M', 672), +(8377, 'Charlie', 1901, 'M', 654), +(8378, 'Jack', 1901, 'M', 645), +(8379, 'Samuel', 1901, 'M', 628), +(8380, 'Howard', 1901, 'M', 584), +(8381, 'Herbert', 1901, 'M', 573), +(8382, 'Francis', 1901, 'M', 543), +(8383, 'Lawrence', 1901, 'M', 536), +(8384, 'Elmer', 1901, 'M', 520), +(8385, 'Alfred', 1901, 'M', 506), +(8386, 'Andrew', 1901, 'M', 480), +(8387, 'Sam', 1901, 'M', 479), +(8388, 'Leo', 1901, 'M', 456), +(8389, 'Theodore', 1901, 'M', 450), +(8390, 'Eugene', 1901, 'M', 445), +(8391, 'Lee', 1901, 'M', 424), +(8392, 'Floyd', 1901, 'M', 423), +(8393, 'Oscar', 1901, 'M', 422), +(8394, 'Daniel', 1901, 'M', 416), +(8395, 'Jesse', 1901, 'M', 411), +(8396, 'Russell', 1901, 'M', 395), +(8397, 'Herman', 1901, 'M', 393), +(8398, 'Michael', 1901, 'M', 384), +(8399, 'Will', 1901, 'M', 364), +(8400, 'Leonard', 1901, 'M', 362), +(8401, 'Clyde', 1901, 'M', 356), +(8402, 'Benjamin', 1901, 'M', 343), +(8403, 'Peter', 1901, 'M', 343), +(8404, 'Claude', 1901, 'M', 341), +(8405, 'Ray', 1901, 'M', 338), +(8406, 'Frederick', 1901, 'M', 336), +(8407, 'Lester', 1901, 'M', 332), +(8408, 'Anthony', 1901, 'M', 323), +(8409, 'Lewis', 1901, 'M', 309), +(8410, 'Martin', 1901, 'M', 304), +(8411, 'Edwin', 1901, 'M', 299), +(8412, 'Eddie', 1901, 'M', 296), +(8413, 'Tom', 1901, 'M', 291), +(8414, 'Lloyd', 1901, 'M', 285), +(8415, 'Clifford', 1901, 'M', 282), +(8416, 'Cecil', 1901, 'M', 278), +(8417, 'Edgar', 1901, 'M', 271), +(8418, 'Leroy', 1901, 'M', 268), +(8419, 'Ben', 1901, 'M', 259), +(8420, 'Homer', 1901, 'M', 257), +(8421, 'Chester', 1901, 'M', 253), +(8422, 'Harvey', 1901, 'M', 253), +(8423, 'Donald', 1901, 'M', 250), +(8424, 'Kenneth', 1901, 'M', 246), +(8425, 'Luther', 1901, 'M', 244), +(8426, 'Bernard', 1901, 'M', 242), +(8427, 'Jim', 1901, 'M', 239), +(8428, 'Stanley', 1901, 'M', 239), +(8429, 'Norman', 1901, 'M', 238), +(8430, 'Philip', 1901, 'M', 232), +(8431, 'Jessie', 1901, 'M', 231), +(8432, 'Everett', 1901, 'M', 218), +(8433, 'Leon', 1901, 'M', 208), +(8434, 'Allen', 1901, 'M', 199), +(8435, 'Leslie', 1901, 'M', 198), +(8436, 'Milton', 1901, 'M', 197), +(8437, 'Hugh', 1901, 'M', 192), +(8438, 'Oliver', 1901, 'M', 187), +(8439, 'Patrick', 1901, 'M', 181), +(8440, 'Glenn', 1901, 'M', 180), +(8441, 'Alvin', 1901, 'M', 179), +(8442, 'Horace', 1901, 'M', 178), +(8443, 'Melvin', 1901, 'M', 176), +(8444, 'Jacob', 1901, 'M', 172), +(8445, 'Guy', 1901, 'M', 170), +(8446, 'Victor', 1901, 'M', 169), +(8447, 'Julius', 1901, 'M', 168), +(8448, 'Alexander', 1901, 'M', 162), +(8449, 'Ed', 1901, 'M', 162), +(8450, 'Johnnie', 1901, 'M', 162), +(8451, 'Archie', 1901, 'M', 161), +(8452, 'Maurice', 1901, 'M', 160), +(8453, 'Marion', 1901, 'M', 159), +(8454, 'Charley', 1901, 'M', 158), +(8455, 'Stephen', 1901, 'M', 158), +(8456, 'Virgil', 1901, 'M', 158), +(8457, 'Otto', 1901, 'M', 156), +(8458, 'Manuel', 1901, 'M', 150), +(8459, 'Warren', 1901, 'M', 149), +(8460, 'Lonnie', 1901, 'M', 148), +(8461, 'Morris', 1901, 'M', 146), +(8462, 'Wesley', 1901, 'M', 146), +(8463, 'Marvin', 1901, 'M', 145), +(8464, 'Ira', 1901, 'M', 142), +(8465, 'Hubert', 1901, 'M', 140), +(8466, 'Alex', 1901, 'M', 138), +(8467, 'Dewey', 1901, 'M', 137), +(8468, 'Willard', 1901, 'M', 136), +(8469, 'Sidney', 1901, 'M', 134), +(8470, 'Gerald', 1901, 'M', 133), +(8471, 'Isaac', 1901, 'M', 133), +(8472, 'Wallace', 1901, 'M', 132), +(8473, 'Earnest', 1901, 'M', 131), +(8474, 'Nathan', 1901, 'M', 131), +(8475, 'Vincent', 1901, 'M', 131), +(8476, 'Wilbur', 1901, 'M', 130), +(8477, 'Gilbert', 1901, 'M', 129), +(8478, 'Vernon', 1901, 'M', 129), +(8479, 'Bert', 1901, 'M', 128), +(8480, 'Jose', 1901, 'M', 127), +(8481, 'Otis', 1901, 'M', 127), +(8482, 'Emil', 1901, 'M', 122), +(8483, 'Rufus', 1901, 'M', 121), +(8484, 'Percy', 1901, 'M', 120), +(8485, 'Sylvester', 1901, 'M', 120), +(8486, 'Dan', 1901, 'M', 117), +(8487, 'August', 1901, 'M', 116), +(8488, 'Jerry', 1901, 'M', 116), +(8489, 'Curtis', 1901, 'M', 114), +(8490, 'Mack', 1901, 'M', 114), +(8491, 'Roland', 1901, 'M', 113), +(8492, 'Arnold', 1901, 'M', 110), +(8493, 'Emmett', 1901, 'M', 110), +(8494, 'Max', 1901, 'M', 110), +(8495, 'Willis', 1901, 'M', 106), +(8496, 'Dave', 1901, 'M', 105), +(8497, 'Glen', 1901, 'M', 105), +(8498, 'Bill', 1901, 'M', 104), +(8499, 'Gordon', 1901, 'M', 103), +(8500, 'Clifton', 1901, 'M', 101), +(8501, 'Bennie', 1901, 'M', 100), +(8502, 'Mary', 1902, 'F', 14486), +(8503, 'Helen', 1902, 'F', 5967), +(8504, 'Anna', 1902, 'F', 5288), +(8505, 'Margaret', 1902, 'F', 5011), +(8506, 'Ruth', 1902, 'F', 4384), +(8507, 'Elizabeth', 1902, 'F', 3694), +(8508, 'Florence', 1902, 'F', 3509), +(8509, 'Marie', 1902, 'F', 3423), +(8510, 'Ethel', 1902, 'F', 3295), +(8511, 'Alice', 1902, 'F', 3135), +(8512, 'Lillian', 1902, 'F', 3063), +(8513, 'Gladys', 1902, 'F', 2809), +(8514, 'Edna', 1902, 'F', 2754), +(8515, 'Mildred', 1902, 'F', 2750), +(8516, 'Dorothy', 1902, 'F', 2707), +(8517, 'Annie', 1902, 'F', 2664), +(8518, 'Grace', 1902, 'F', 2642), +(8519, 'Emma', 1902, 'F', 2514), +(8520, 'Bessie', 1902, 'F', 2448), +(8521, 'Rose', 1902, 'F', 2444), +(8522, 'Clara', 1902, 'F', 2432), +(8523, 'Bertha', 1902, 'F', 2372), +(8524, 'Frances', 1902, 'F', 2326), +(8525, 'Mabel', 1902, 'F', 2280), +(8526, 'Hazel', 1902, 'F', 2238), +(8527, 'Irene', 1902, 'F', 2210), +(8528, 'Gertrude', 1902, 'F', 2207), +(8529, 'Pearl', 1902, 'F', 2100), +(8530, 'Minnie', 1902, 'F', 2055), +(8531, 'Martha', 1902, 'F', 2030), +(8532, 'Catherine', 1902, 'F', 1896), +(8533, 'Myrtle', 1902, 'F', 1884), +(8534, 'Edith', 1902, 'F', 1853), +(8535, 'Ida', 1902, 'F', 1836), +(8536, 'Esther', 1902, 'F', 1833), +(8537, 'Louise', 1902, 'F', 1832), +(8538, 'Eva', 1902, 'F', 1727), +(8539, 'Elsie', 1902, 'F', 1720), +(8540, 'Sarah', 1902, 'F', 1710), +(8541, 'Agnes', 1902, 'F', 1676), +(8542, 'Josephine', 1902, 'F', 1566), +(8543, 'Nellie', 1902, 'F', 1566), +(8544, 'Laura', 1902, 'F', 1559), +(8545, 'Lillie', 1902, 'F', 1533), +(8546, 'Ella', 1902, 'F', 1525), +(8547, 'Julia', 1902, 'F', 1501), +(8548, 'Ruby', 1902, 'F', 1458), +(8549, 'Viola', 1902, 'F', 1447), +(8550, 'Beatrice', 1902, 'F', 1429), +(8551, 'Carrie', 1902, 'F', 1376), +(8552, 'Mattie', 1902, 'F', 1353), +(8553, 'Thelma', 1902, 'F', 1309), +(8554, 'Mae', 1902, 'F', 1261), +(8555, 'Jessie', 1902, 'F', 1240), +(8556, 'Alma', 1902, 'F', 1229), +(8557, 'Lena', 1902, 'F', 1225), +(8558, 'Hattie', 1902, 'F', 1163), +(8559, 'Blanche', 1902, 'F', 1159), +(8560, 'Evelyn', 1902, 'F', 1151), +(8561, 'Mamie', 1902, 'F', 1127), +(8562, 'Lucille', 1902, 'F', 1087), +(8563, 'Cora', 1902, 'F', 1081), +(8564, 'Stella', 1902, 'F', 1075), +(8565, 'Willie', 1902, 'F', 1071), +(8566, 'Lucy', 1902, 'F', 1065), +(8567, 'Marion', 1902, 'F', 1033), +(8568, 'Virginia', 1902, 'F', 1008), +(8569, 'Katherine', 1902, 'F', 1004), +(8570, 'Jennie', 1902, 'F', 985), +(8571, 'Pauline', 1902, 'F', 985), +(8572, 'Lula', 1902, 'F', 976), +(8573, 'Fannie', 1902, 'F', 971), +(8574, 'Vera', 1902, 'F', 947), +(8575, 'Ada', 1902, 'F', 921), +(8576, 'Rosa', 1902, 'F', 909), +(8577, 'Leona', 1902, 'F', 875), +(8578, 'Beulah', 1902, 'F', 873), +(8579, 'Maggie', 1902, 'F', 853), +(8580, 'Eleanor', 1902, 'F', 837), +(8581, 'Maude', 1902, 'F', 834), +(8582, 'Bernice', 1902, 'F', 794), +(8583, 'Dora', 1902, 'F', 780), +(8584, 'Ann', 1902, 'F', 753), +(8585, 'Ellen', 1902, 'F', 753), +(8586, 'Daisy', 1902, 'F', 748), +(8587, 'Nora', 1902, 'F', 724), +(8588, 'Kathryn', 1902, 'F', 717), +(8589, 'Susie', 1902, 'F', 717), +(8590, 'Sadie', 1902, 'F', 716), +(8591, 'Marguerite', 1902, 'F', 695), +(8592, 'Georgia', 1902, 'F', 664), +(8593, 'Effie', 1902, 'F', 658), +(8594, 'Doris', 1902, 'F', 656), +(8595, 'Hilda', 1902, 'F', 649), +(8596, 'Violet', 1902, 'F', 649), +(8597, 'Della', 1902, 'F', 609), +(8598, 'Emily', 1902, 'F', 606), +(8599, 'Lois', 1902, 'F', 594), +(8600, 'Olive', 1902, 'F', 593), +(8601, 'Flora', 1902, 'F', 587), +(8602, 'Betty', 1902, 'F', 580), +(8603, 'Katie', 1902, 'F', 572), +(8604, 'Nancy', 1902, 'F', 571), +(8605, 'Nettie', 1902, 'F', 569), +(8606, 'Lola', 1902, 'F', 565), +(8607, 'Anne', 1902, 'F', 564), +(8608, 'May', 1902, 'F', 560), +(8609, 'Sallie', 1902, 'F', 556), +(8610, 'Theresa', 1902, 'F', 549), +(8611, 'Marjorie', 1902, 'F', 543), +(8612, 'Lottie', 1902, 'F', 537), +(8613, 'Lydia', 1902, 'F', 535), +(8614, 'Velma', 1902, 'F', 526), +(8615, 'Charlotte', 1902, 'F', 524), +(8616, 'Lizzie', 1902, 'F', 504), +(8617, 'Inez', 1902, 'F', 503), +(8618, 'Opal', 1902, 'F', 498), +(8619, 'Eunice', 1902, 'F', 490), +(8620, 'Mable', 1902, 'F', 478), +(8621, 'Goldie', 1902, 'F', 473), +(8622, 'Estelle', 1902, 'F', 472), +(8623, 'Addie', 1902, 'F', 469), +(8624, 'Eula', 1902, 'F', 466), +(8625, 'Loretta', 1902, 'F', 461), +(8626, 'Lela', 1902, 'F', 459), +(8627, 'Caroline', 1902, 'F', 452), +(8628, 'Iva', 1902, 'F', 438), +(8629, 'Henrietta', 1902, 'F', 437), +(8630, 'Verna', 1902, 'F', 436), +(8631, 'Ollie', 1902, 'F', 428), +(8632, 'Ora', 1902, 'F', 427), +(8633, 'Vivian', 1902, 'F', 425), +(8634, 'Essie', 1902, 'F', 424), +(8635, 'Alberta', 1902, 'F', 417), +(8636, 'Rosie', 1902, 'F', 417), +(8637, 'Sylvia', 1902, 'F', 411), +(8638, 'Genevieve', 1902, 'F', 410), +(8639, 'Jean', 1902, 'F', 408), +(8640, 'Etta', 1902, 'F', 400), +(8641, 'Harriet', 1902, 'F', 399), +(8642, 'Rachel', 1902, 'F', 393), +(8643, 'Jane', 1902, 'F', 388), +(8644, 'Lucile', 1902, 'F', 388), +(8645, 'Rebecca', 1902, 'F', 382), +(8646, 'Nina', 1902, 'F', 369), +(8647, 'Irma', 1902, 'F', 368), +(8648, 'Ola', 1902, 'F', 362), +(8649, 'Nannie', 1902, 'F', 359), +(8650, 'Amelia', 1902, 'F', 355), +(8651, 'Madeline', 1902, 'F', 355), +(8652, 'Victoria', 1902, 'F', 339), +(8653, 'Marian', 1902, 'F', 338), +(8654, 'Mollie', 1902, 'F', 337), +(8655, 'Sara', 1902, 'F', 335), +(8656, 'Susan', 1902, 'F', 335), +(8657, 'Maria', 1902, 'F', 331), +(8658, 'Flossie', 1902, 'F', 330), +(8659, 'Naomi', 1902, 'F', 327), +(8660, 'Kathleen', 1902, 'F', 325), +(8661, 'Christine', 1902, 'F', 323), +(8662, 'Olga', 1902, 'F', 321), +(8663, 'Geneva', 1902, 'F', 308), +(8664, 'Barbara', 1902, 'F', 306), +(8665, 'Amanda', 1902, 'F', 301), +(8666, 'Matilda', 1902, 'F', 290), +(8667, 'Erma', 1902, 'F', 288), +(8668, 'Celia', 1902, 'F', 285), +(8669, 'Estella', 1902, 'F', 283), +(8670, 'Frieda', 1902, 'F', 282), +(8671, 'Alta', 1902, 'F', 279), +(8672, 'Sophie', 1902, 'F', 279), +(8673, 'Norma', 1902, 'F', 277), +(8674, 'Wilma', 1902, 'F', 272), +(8675, 'Hannah', 1902, 'F', 271), +(8676, 'Sally', 1902, 'F', 266), +(8677, 'Janie', 1902, 'F', 262), +(8678, 'Luella', 1902, 'F', 262), +(8679, 'Allie', 1902, 'F', 261), +(8680, 'Isabel', 1902, 'F', 256), +(8681, 'Sophia', 1902, 'F', 256), +(8682, 'Amy', 1902, 'F', 255), +(8683, 'Elva', 1902, 'F', 253), +(8684, 'Selma', 1902, 'F', 252), +(8685, 'Eliza', 1902, 'F', 249), +(8686, 'Freda', 1902, 'F', 247), +(8687, 'Nell', 1902, 'F', 247), +(8688, 'Cecelia', 1902, 'F', 243), +(8689, 'Adeline', 1902, 'F', 240), +(8690, 'Lila', 1902, 'F', 239), +(8691, 'Fern', 1902, 'F', 238), +(8692, 'Juanita', 1902, 'F', 234), +(8693, 'Rena', 1902, 'F', 230), +(8694, 'Winifred', 1902, 'F', 226), +(8695, 'Ina', 1902, 'F', 224), +(8696, 'Callie', 1902, 'F', 221), +(8697, 'Josie', 1902, 'F', 221), +(8698, 'Winnie', 1902, 'F', 221), +(8699, 'Maud', 1902, 'F', 218), +(8700, 'Veronica', 1902, 'F', 217), +(8701, 'Kate', 1902, 'F', 213), +(8702, 'Belle', 1902, 'F', 212), +(8703, 'Audrey', 1902, 'F', 210), +(8704, 'Virgie', 1902, 'F', 210), +(8705, 'Leola', 1902, 'F', 207), +(8706, 'Muriel', 1902, 'F', 206), +(8707, 'Bertie', 1902, 'F', 205), +(8708, 'Isabelle', 1902, 'F', 204), +(8709, 'Jewell', 1902, 'F', 201), +(8710, 'Miriam', 1902, 'F', 200), +(8711, 'Elma', 1902, 'F', 199), +(8712, 'Cleo', 1902, 'F', 198), +(8713, 'Jeanette', 1902, 'F', 198), +(8714, 'Regina', 1902, 'F', 198), +(8715, 'Augusta', 1902, 'F', 195), +(8716, 'Cecilia', 1902, 'F', 195), +(8717, 'Zelma', 1902, 'F', 189), +(8718, 'Margie', 1902, 'F', 187), +(8719, 'Gussie', 1902, 'F', 185), +(8720, 'Millie', 1902, 'F', 185), +(8721, 'Bonnie', 1902, 'F', 183), +(8722, 'Faye', 1902, 'F', 183), +(8723, 'Cecile', 1902, 'F', 181), +(8724, 'Fay', 1902, 'F', 181), +(8725, 'Carolyn', 1902, 'F', 179), +(8726, 'Cornelia', 1902, 'F', 179), +(8727, 'Dollie', 1902, 'F', 176), +(8728, 'Roberta', 1902, 'F', 176), +(8729, 'Jeannette', 1902, 'F', 174), +(8730, 'Birdie', 1902, 'F', 173), +(8731, 'Adele', 1902, 'F', 172), +(8732, 'Leah', 1902, 'F', 171), +(8733, 'Roxie', 1902, 'F', 170), +(8734, 'Lora', 1902, 'F', 166), +(8735, 'Mayme', 1902, 'F', 166), +(8736, 'Hester', 1902, 'F', 164), +(8737, 'Lessie', 1902, 'F', 164), +(8738, 'Phyllis', 1902, 'F', 164), +(8739, 'Anita', 1902, 'F', 163), +(8740, 'Elnora', 1902, 'F', 162), +(8741, 'Lulu', 1902, 'F', 161), +(8742, 'Gracie', 1902, 'F', 160), +(8743, 'Letha', 1902, 'F', 159), +(8744, 'Tillie', 1902, 'F', 159), +(8745, 'Claire', 1902, 'F', 156), +(8746, 'Geraldine', 1902, 'F', 156), +(8747, 'Maudie', 1902, 'F', 155), +(8748, 'Rosalie', 1902, 'F', 155), +(8749, 'Ila', 1902, 'F', 154), +(8750, 'Johnnie', 1902, 'F', 154), +(8751, 'Madge', 1902, 'F', 154), +(8752, 'Sue', 1902, 'F', 154), +(8753, 'Jewel', 1902, 'F', 153), +(8754, 'Teresa', 1902, 'F', 153), +(8755, 'Hallie', 1902, 'F', 152), +(8756, 'Rhoda', 1902, 'F', 152), +(8757, 'Adelaide', 1902, 'F', 151), +(8758, 'Rita', 1902, 'F', 148), +(8759, 'Lorena', 1902, 'F', 146), +(8760, 'Bettie', 1902, 'F', 145), +(8761, 'Marcella', 1902, 'F', 145), +(8762, 'Antoinette', 1902, 'F', 143), +(8763, 'Francis', 1902, 'F', 140), +(8764, 'Gertie', 1902, 'F', 140), +(8765, 'Leila', 1902, 'F', 140), +(8766, 'Lelia', 1902, 'F', 140), +(8767, 'Elvira', 1902, 'F', 137), +(8768, 'Lorene', 1902, 'F', 137), +(8769, 'Myra', 1902, 'F', 136), +(8770, 'Lee', 1902, 'F', 134), +(8771, 'Helena', 1902, 'F', 133), +(8772, 'Delia', 1902, 'F', 132), +(8773, 'Nola', 1902, 'F', 131), +(8774, 'Olivia', 1902, 'F', 130), +(8775, 'Angeline', 1902, 'F', 129), +(8776, 'Lenora', 1902, 'F', 129), +(8777, 'Pearlie', 1902, 'F', 129), +(8778, 'Reba', 1902, 'F', 129), +(8779, 'June', 1902, 'F', 128), +(8780, 'Lilly', 1902, 'F', 126), +(8781, 'Dorothea', 1902, 'F', 124), +(8782, 'Eloise', 1902, 'F', 124), +(8783, 'Neva', 1902, 'F', 124), +(8784, 'Zella', 1902, 'F', 124), +(8785, 'Oma', 1902, 'F', 122), +(8786, 'Dessie', 1902, 'F', 121), +(8787, 'Lou', 1902, 'F', 121), +(8788, 'Clarice', 1902, 'F', 120), +(8789, 'Corinne', 1902, 'F', 119), +(8790, 'Angelina', 1902, 'F', 118), +(8791, 'Constance', 1902, 'F', 117), +(8792, 'Angela', 1902, 'F', 116), +(8793, 'Annette', 1902, 'F', 115), +(8794, 'Hettie', 1902, 'F', 115), +(8795, 'Janet', 1902, 'F', 115), +(8796, 'Johanna', 1902, 'F', 114), +(8797, 'Edythe', 1902, 'F', 113), +(8798, 'Ernestine', 1902, 'F', 113), +(8799, 'Cecil', 1902, 'F', 112), +(8800, 'Merle', 1902, 'F', 112), +(8801, 'Wilhelmina', 1902, 'F', 112), +(8802, 'Christina', 1902, 'F', 111), +(8803, 'Dovie', 1902, 'F', 109), +(8804, 'Vesta', 1902, 'F', 109), +(8805, 'Dolores', 1902, 'F', 108), +(8806, 'Harriett', 1902, 'F', 108), +(8807, 'Lettie', 1902, 'F', 108), +(8808, 'Lura', 1902, 'F', 107), +(8809, 'Wanda', 1902, 'F', 106), +(8810, 'Bess', 1902, 'F', 104), +(8811, 'Mathilda', 1902, 'F', 104), +(8812, 'Shirley', 1902, 'F', 104), +(8813, 'Catharine', 1902, 'F', 103), +(8814, 'Lorraine', 1902, 'F', 103), +(8815, 'Blanch', 1902, 'F', 101), +(8816, 'John', 1902, 'M', 7907), +(8817, 'William', 1902, 'M', 6616), +(8818, 'James', 1902, 'M', 5592), +(8819, 'George', 1902, 'M', 4223), +(8820, 'Charles', 1902, 'M', 3361), +(8821, 'Robert', 1902, 'M', 3180), +(8822, 'Joseph', 1902, 'M', 3098), +(8823, 'Frank', 1902, 'M', 2756), +(8824, 'Edward', 1902, 'M', 2294), +(8825, 'Henry', 1902, 'M', 2154), +(8826, 'Thomas', 1902, 'M', 2134), +(8827, 'Walter', 1902, 'M', 1858), +(8828, 'Harry', 1902, 'M', 1750), +(8829, 'Willie', 1902, 'M', 1565), +(8830, 'Arthur', 1902, 'M', 1486), +(8831, 'Albert', 1902, 'M', 1375), +(8832, 'Clarence', 1902, 'M', 1292), +(8833, 'Fred', 1902, 'M', 1286), +(8834, 'Harold', 1902, 'M', 1077), +(8835, 'Paul', 1902, 'M', 1067), +(8836, 'Raymond', 1902, 'M', 1065), +(8837, 'Roy', 1902, 'M', 1002), +(8838, 'Joe', 1902, 'M', 955), +(8839, 'Carl', 1902, 'M', 952), +(8840, 'Louis', 1902, 'M', 912), +(8841, 'Richard', 1902, 'M', 908), +(8842, 'Earl', 1902, 'M', 877), +(8843, 'Ralph', 1902, 'M', 867), +(8844, 'Ernest', 1902, 'M', 790), +(8845, 'Charlie', 1902, 'M', 761), +(8846, 'David', 1902, 'M', 761), +(8847, 'Jack', 1902, 'M', 743), +(8848, 'Samuel', 1902, 'M', 702), +(8849, 'Theodore', 1902, 'M', 642), +(8850, 'Howard', 1902, 'M', 632), +(8851, 'Herbert', 1902, 'M', 615), +(8852, 'Lawrence', 1902, 'M', 598), +(8853, 'Francis', 1902, 'M', 597), +(8854, 'Alfred', 1902, 'M', 590), +(8855, 'Elmer', 1902, 'M', 574), +(8856, 'Sam', 1902, 'M', 559), +(8857, 'Andrew', 1902, 'M', 558), +(8858, 'Leo', 1902, 'M', 551), +(8859, 'Eugene', 1902, 'M', 524), +(8860, 'Daniel', 1902, 'M', 501), +(8861, 'Lee', 1902, 'M', 475), +(8862, 'Floyd', 1902, 'M', 471), +(8863, 'Michael', 1902, 'M', 460), +(8864, 'Herman', 1902, 'M', 457), +(8865, 'Jesse', 1902, 'M', 437), +(8866, 'Peter', 1902, 'M', 433), +(8867, 'Leonard', 1902, 'M', 426), +(8868, 'Russell', 1902, 'M', 422), +(8869, 'Anthony', 1902, 'M', 420), +(8870, 'Oscar', 1902, 'M', 397), +(8871, 'Edwin', 1902, 'M', 393), +(8872, 'Ray', 1902, 'M', 391), +(8873, 'Lester', 1902, 'M', 385), +(8874, 'Lewis', 1902, 'M', 385), +(8875, 'Clyde', 1902, 'M', 382), +(8876, 'Benjamin', 1902, 'M', 374), +(8877, 'Leroy', 1902, 'M', 370), +(8878, 'Donald', 1902, 'M', 366), +(8879, 'Will', 1902, 'M', 359), +(8880, 'Cecil', 1902, 'M', 354), +(8881, 'Eddie', 1902, 'M', 353), +(8882, 'Lloyd', 1902, 'M', 344), +(8883, 'Claude', 1902, 'M', 336), +(8884, 'Stanley', 1902, 'M', 334), +(8885, 'Frederick', 1902, 'M', 330), +(8886, 'Clifford', 1902, 'M', 326), +(8887, 'Martin', 1902, 'M', 325), +(8888, 'Jessie', 1902, 'M', 323), +(8889, 'Chester', 1902, 'M', 321), +(8890, 'Tom', 1902, 'M', 312), +(8891, 'Edgar', 1902, 'M', 307), +(8892, 'Jim', 1902, 'M', 300), +(8893, 'Kenneth', 1902, 'M', 275), +(8894, 'Ben', 1902, 'M', 273), +(8895, 'Homer', 1902, 'M', 269), +(8896, 'Luther', 1902, 'M', 266), +(8897, 'Harvey', 1902, 'M', 264), +(8898, 'Bernard', 1902, 'M', 259), +(8899, 'Norman', 1902, 'M', 256), +(8900, 'Leslie', 1902, 'M', 251), +(8901, 'Leon', 1902, 'M', 248), +(8902, 'Melvin', 1902, 'M', 248), +(8903, 'Everett', 1902, 'M', 238), +(8904, 'Allen', 1902, 'M', 227), +(8905, 'Philip', 1902, 'M', 226), +(8906, 'Johnnie', 1902, 'M', 221), +(8907, 'Hugh', 1902, 'M', 217), +(8908, 'Alexander', 1902, 'M', 216), +(8909, 'Stephen', 1902, 'M', 210), +(8910, 'Jacob', 1902, 'M', 207), +(8911, 'Milton', 1902, 'M', 207), +(8912, 'Victor', 1902, 'M', 205), +(8913, 'Patrick', 1902, 'M', 203), +(8914, 'Alvin', 1902, 'M', 201), +(8915, 'Horace', 1902, 'M', 199), +(8916, 'Otto', 1902, 'M', 192), +(8917, 'Maurice', 1902, 'M', 187), +(8918, 'Archie', 1902, 'M', 186), +(8919, 'Guy', 1902, 'M', 186), +(8920, 'Marvin', 1902, 'M', 186), +(8921, 'Glenn', 1902, 'M', 185), +(8922, 'Oliver', 1902, 'M', 181), +(8923, 'Marion', 1902, 'M', 176), +(8924, 'Ed', 1902, 'M', 175), +(8925, 'Sidney', 1902, 'M', 175), +(8926, 'Vernon', 1902, 'M', 175), +(8927, 'Otis', 1902, 'M', 169), +(8928, 'Charley', 1902, 'M', 168), +(8929, 'Percy', 1902, 'M', 167), +(8930, 'Gilbert', 1902, 'M', 166), +(8931, 'Roosevelt', 1902, 'M', 166), +(8932, 'Hubert', 1902, 'M', 165), +(8933, 'Willard', 1902, 'M', 164), +(8934, 'Virgil', 1902, 'M', 163), +(8935, 'Wilbur', 1902, 'M', 163), +(8936, 'Earnest', 1902, 'M', 159), +(8937, 'Julius', 1902, 'M', 159), +(8938, 'Wallace', 1902, 'M', 157), +(8939, 'Ira', 1902, 'M', 156), +(8940, 'Alex', 1902, 'M', 154), +(8941, 'Rufus', 1902, 'M', 152), +(8942, 'Gerald', 1902, 'M', 151), +(8943, 'Morris', 1902, 'M', 150), +(8944, 'Warren', 1902, 'M', 149), +(8945, 'Jerry', 1902, 'M', 148), +(8946, 'Vincent', 1902, 'M', 148), +(8947, 'Mack', 1902, 'M', 147), +(8948, 'Wesley', 1902, 'M', 145), +(8949, 'Willis', 1902, 'M', 144), +(8950, 'Isaac', 1902, 'M', 143), +(8951, 'Nathan', 1902, 'M', 143), +(8952, 'Bill', 1902, 'M', 138), +(8953, 'Lonnie', 1902, 'M', 138), +(8954, 'Dewey', 1902, 'M', 136), +(8955, 'Emil', 1902, 'M', 136), +(8956, 'Sylvester', 1902, 'M', 135), +(8957, 'Max', 1902, 'M', 133), +(8958, 'Bert', 1902, 'M', 130), +(8959, 'Calvin', 1902, 'M', 130), +(8960, 'Curtis', 1902, 'M', 129), +(8961, 'Jose', 1902, 'M', 125), +(8962, 'Bennie', 1902, 'M', 124), +(8963, 'Dan', 1902, 'M', 124), +(8964, 'Glen', 1902, 'M', 123), +(8965, 'Jimmie', 1902, 'M', 123), +(8966, 'Rudolph', 1902, 'M', 119), +(8967, 'Manuel', 1902, 'M', 118), +(8968, 'Roland', 1902, 'M', 115), +(8969, 'Felix', 1902, 'M', 114), +(8970, 'Johnie', 1902, 'M', 113), +(8971, 'Clifton', 1902, 'M', 112), +(8972, 'Dave', 1902, 'M', 112), +(8973, 'Ellis', 1902, 'M', 112), +(8974, 'Nicholas', 1902, 'M', 112), +(8975, 'Ollie', 1902, 'M', 110), +(8976, 'Gordon', 1902, 'M', 109), +(8977, 'August', 1902, 'M', 108), +(8978, 'Elbert', 1902, 'M', 108), +(8979, 'Orville', 1902, 'M', 108), +(8980, 'Perry', 1902, 'M', 108), +(8981, 'Arnold', 1902, 'M', 107), +(8982, 'Edmund', 1902, 'M', 104), +(8983, 'Irving', 1902, 'M', 104), +(8984, 'Mark', 1902, 'M', 104), +(8985, 'Matthew', 1902, 'M', 104), +(8986, 'Jake', 1902, 'M', 102), +(8987, 'Mary', 1903, 'F', 14275), +(8988, 'Helen', 1903, 'F', 6129), +(8989, 'Anna', 1903, 'F', 5098), +(8990, 'Margaret', 1903, 'F', 5046), +(8991, 'Ruth', 1903, 'F', 4518), +(8992, 'Elizabeth', 1903, 'F', 3723), +(8993, 'Marie', 1903, 'F', 3469), +(8994, 'Florence', 1903, 'F', 3468), +(8995, 'Ethel', 1903, 'F', 3257), +(8996, 'Mildred', 1903, 'F', 3088), +(8997, 'Dorothy', 1903, 'F', 3078), +(8998, 'Alice', 1903, 'F', 2996), +(8999, 'Lillian', 1903, 'F', 2972), +(9000, 'Gladys', 1903, 'F', 2674), +(9001, 'Edna', 1903, 'F', 2667), +(9002, 'Grace', 1903, 'F', 2615), +(9003, 'Annie', 1903, 'F', 2551), +(9004, 'Rose', 1903, 'F', 2478), +(9005, 'Frances', 1903, 'F', 2365), +(9006, 'Clara', 1903, 'F', 2342), +(9007, 'Bessie', 1903, 'F', 2339), +(9008, 'Bertha', 1903, 'F', 2309), +(9009, 'Emma', 1903, 'F', 2308), +(9010, 'Gertrude', 1903, 'F', 2253), +(9011, 'Mabel', 1903, 'F', 2163), +(9012, 'Hazel', 1903, 'F', 2139), +(9013, 'Pearl', 1903, 'F', 2046), +(9014, 'Irene', 1903, 'F', 2001), +(9015, 'Martha', 1903, 'F', 1980), +(9016, 'Myrtle', 1903, 'F', 1980), +(9017, 'Louise', 1903, 'F', 1935), +(9018, 'Catherine', 1903, 'F', 1916), +(9019, 'Edith', 1903, 'F', 1901), +(9020, 'Esther', 1903, 'F', 1883), +(9021, 'Minnie', 1903, 'F', 1846), +(9022, 'Eva', 1903, 'F', 1783), +(9023, 'Ida', 1903, 'F', 1774), +(9024, 'Elsie', 1903, 'F', 1720), +(9025, 'Agnes', 1903, 'F', 1616), +(9026, 'Josephine', 1903, 'F', 1587), +(9027, 'Sarah', 1903, 'F', 1553), +(9028, 'Ruby', 1903, 'F', 1538), +(9029, 'Laura', 1903, 'F', 1504), +(9030, 'Viola', 1903, 'F', 1495), +(9031, 'Nellie', 1903, 'F', 1491), +(9032, 'Lillie', 1903, 'F', 1485), +(9033, 'Thelma', 1903, 'F', 1479), +(9034, 'Julia', 1903, 'F', 1447), +(9035, 'Beatrice', 1903, 'F', 1439), +(9036, 'Ella', 1903, 'F', 1419), +(9037, 'Mattie', 1903, 'F', 1278), +(9038, 'Carrie', 1903, 'F', 1252), +(9039, 'Alma', 1903, 'F', 1244), +(9040, 'Evelyn', 1903, 'F', 1211), +(9041, 'Jessie', 1903, 'F', 1202), +(9042, 'Lena', 1903, 'F', 1200), +(9043, 'Lucille', 1903, 'F', 1193), +(9044, 'Mae', 1903, 'F', 1192), +(9045, 'Blanche', 1903, 'F', 1174), +(9046, 'Hattie', 1903, 'F', 1106), +(9047, 'Marion', 1903, 'F', 1042), +(9048, 'Pauline', 1903, 'F', 1042), +(9049, 'Virginia', 1903, 'F', 1032), +(9050, 'Fannie', 1903, 'F', 1016), +(9051, 'Stella', 1903, 'F', 1016), +(9052, 'Katherine', 1903, 'F', 1015), +(9053, 'Willie', 1903, 'F', 1014), +(9054, 'Lucy', 1903, 'F', 990), +(9055, 'Mamie', 1903, 'F', 990), +(9056, 'Cora', 1903, 'F', 986), +(9057, 'Jennie', 1903, 'F', 936), +(9058, 'Beulah', 1903, 'F', 920), +(9059, 'Lula', 1903, 'F', 913), +(9060, 'Rosa', 1903, 'F', 911), +(9061, 'Vera', 1903, 'F', 899), +(9062, 'Leona', 1903, 'F', 881), +(9063, 'Bernice', 1903, 'F', 868), +(9064, 'Ada', 1903, 'F', 843), +(9065, 'Eleanor', 1903, 'F', 840), +(9066, 'Maggie', 1903, 'F', 780), +(9067, 'Dora', 1903, 'F', 778), +(9068, 'Daisy', 1903, 'F', 776), +(9069, 'Maude', 1903, 'F', 776), +(9070, 'Ann', 1903, 'F', 774), +(9071, 'Ellen', 1903, 'F', 773), +(9072, 'Kathryn', 1903, 'F', 729), +(9073, 'Nora', 1903, 'F', 724), +(9074, 'Hilda', 1903, 'F', 698), +(9075, 'Sadie', 1903, 'F', 683), +(9076, 'Susie', 1903, 'F', 680), +(9077, 'Marguerite', 1903, 'F', 667), +(9078, 'Lois', 1903, 'F', 664), +(9079, 'Violet', 1903, 'F', 636), +(9080, 'Georgia', 1903, 'F', 632), +(9081, 'Doris', 1903, 'F', 629), +(9082, 'Della', 1903, 'F', 611), +(9083, 'Olive', 1903, 'F', 597), +(9084, 'Betty', 1903, 'F', 596), +(9085, 'Velma', 1903, 'F', 589), +(9086, 'Anne', 1903, 'F', 581), +(9087, 'Emily', 1903, 'F', 558), +(9088, 'Theresa', 1903, 'F', 553), +(9089, 'Effie', 1903, 'F', 552), +(9090, 'Lola', 1903, 'F', 547), +(9091, 'Nettie', 1903, 'F', 547), +(9092, 'Opal', 1903, 'F', 542), +(9093, 'May', 1903, 'F', 541), +(9094, 'Flora', 1903, 'F', 536), +(9095, 'Nancy', 1903, 'F', 527), +(9096, 'Sallie', 1903, 'F', 523), +(9097, 'Katie', 1903, 'F', 512), +(9098, 'Marjorie', 1903, 'F', 511), +(9099, 'Lottie', 1903, 'F', 509), +(9100, 'Loretta', 1903, 'F', 505), +(9101, 'Charlotte', 1903, 'F', 504), +(9102, 'Lydia', 1903, 'F', 502), +(9103, 'Inez', 1903, 'F', 485), +(9104, 'Alberta', 1903, 'F', 483), +(9105, 'Eunice', 1903, 'F', 469), +(9106, 'Sylvia', 1903, 'F', 464), +(9107, 'Jean', 1903, 'F', 462), +(9108, 'Mable', 1903, 'F', 461), +(9109, 'Ollie', 1903, 'F', 460), +(9110, 'Lizzie', 1903, 'F', 458), +(9111, 'Eula', 1903, 'F', 449), +(9112, 'Addie', 1903, 'F', 441), +(9113, 'Henrietta', 1903, 'F', 433), +(9114, 'Vivian', 1903, 'F', 432), +(9115, 'Goldie', 1903, 'F', 430), +(9116, 'Genevieve', 1903, 'F', 427), +(9117, 'Verna', 1903, 'F', 424), +(9118, 'Rosie', 1903, 'F', 423), +(9119, 'Lela', 1903, 'F', 420), +(9120, 'Etta', 1903, 'F', 416), +(9121, 'Harriet', 1903, 'F', 416), +(9122, 'Estelle', 1903, 'F', 402), +(9123, 'Madeline', 1903, 'F', 400), +(9124, 'Ora', 1903, 'F', 399), +(9125, 'Iva', 1903, 'F', 398), +(9126, 'Essie', 1903, 'F', 396), +(9127, 'Caroline', 1903, 'F', 389), +(9128, 'Rachel', 1903, 'F', 383), +(9129, 'Jane', 1903, 'F', 381), +(9130, 'Maria', 1903, 'F', 379), +(9131, 'Lucile', 1903, 'F', 370), +(9132, 'Christine', 1903, 'F', 363), +(9133, 'Marian', 1903, 'F', 355), +(9134, 'Naomi', 1903, 'F', 355), +(9135, 'Kathleen', 1903, 'F', 352), +(9136, 'Amelia', 1903, 'F', 347), +(9137, 'Barbara', 1903, 'F', 346), +(9138, 'Irma', 1903, 'F', 346), +(9139, 'Nina', 1903, 'F', 345), +(9140, 'Rebecca', 1903, 'F', 334), +(9141, 'Sara', 1903, 'F', 333), +(9142, 'Victoria', 1903, 'F', 330), +(9143, 'Nannie', 1903, 'F', 325), +(9144, 'Norma', 1903, 'F', 311), +(9145, 'Sophie', 1903, 'F', 311), +(9146, 'Ola', 1903, 'F', 309), +(9147, 'Geneva', 1903, 'F', 308), +(9148, 'Estella', 1903, 'F', 305), +(9149, 'Susan', 1903, 'F', 305), +(9150, 'Juanita', 1903, 'F', 304), +(9151, 'Erma', 1903, 'F', 302), +(9152, 'Flossie', 1903, 'F', 297), +(9153, 'Frieda', 1903, 'F', 294), +(9154, 'Wilma', 1903, 'F', 293), +(9155, 'Sally', 1903, 'F', 288), +(9156, 'Luella', 1903, 'F', 286), +(9157, 'Mollie', 1903, 'F', 284), +(9158, 'Alta', 1903, 'F', 282), +(9159, 'Olga', 1903, 'F', 281), +(9160, 'Freda', 1903, 'F', 280), +(9161, 'Celia', 1903, 'F', 278), +(9162, 'Audrey', 1903, 'F', 276), +(9163, 'Fern', 1903, 'F', 276), +(9164, 'Winifred', 1903, 'F', 272), +(9165, 'Janie', 1903, 'F', 260), +(9166, 'Isabel', 1903, 'F', 257), +(9167, 'Ina', 1903, 'F', 256), +(9168, 'Elva', 1903, 'F', 255), +(9169, 'Hannah', 1903, 'F', 250), +(9170, 'Allie', 1903, 'F', 247), +(9171, 'Amanda', 1903, 'F', 247), +(9172, 'Eliza', 1903, 'F', 247), +(9173, 'Matilda', 1903, 'F', 245), +(9174, 'Amy', 1903, 'F', 242), +(9175, 'Cecelia', 1903, 'F', 242), +(9176, 'Cleo', 1903, 'F', 221), +(9177, 'Muriel', 1903, 'F', 220), +(9178, 'Cecilia', 1903, 'F', 218), +(9179, 'Miriam', 1903, 'F', 218), +(9180, 'Selma', 1903, 'F', 218), +(9181, 'Rena', 1903, 'F', 217), +(9182, 'Virgie', 1903, 'F', 214), +(9183, 'Isabelle', 1903, 'F', 213), +(9184, 'Regina', 1903, 'F', 213), +(9185, 'Sophia', 1903, 'F', 213), +(9186, 'Adeline', 1903, 'F', 212), +(9187, 'Josie', 1903, 'F', 210), +(9188, 'Winnie', 1903, 'F', 208), +(9189, 'Lila', 1903, 'F', 206), +(9190, 'Nell', 1903, 'F', 206), +(9191, 'Augusta', 1903, 'F', 205), +(9192, 'Roberta', 1903, 'F', 205), +(9193, 'Leola', 1903, 'F', 204), +(9194, 'Anita', 1903, 'F', 202), +(9195, 'Kate', 1903, 'F', 202), +(9196, 'Belle', 1903, 'F', 200), +(9197, 'Bonnie', 1903, 'F', 200), +(9198, 'Callie', 1903, 'F', 199), +(9199, 'Margie', 1903, 'F', 199), +(9200, 'Geraldine', 1903, 'F', 198), +(9201, 'Jeanette', 1903, 'F', 198), +(9202, 'Jewel', 1903, 'F', 197), +(9203, 'Jewell', 1903, 'F', 197), +(9204, 'Dollie', 1903, 'F', 193), +(9205, 'Fay', 1903, 'F', 190), +(9206, 'Faye', 1903, 'F', 190), +(9207, 'Millie', 1903, 'F', 189), +(9208, 'Bertie', 1903, 'F', 188), +(9209, 'Tillie', 1903, 'F', 179), +(9210, 'Maud', 1903, 'F', 176), +(9211, 'Zelma', 1903, 'F', 176), +(9212, 'Leah', 1903, 'F', 175), +(9213, 'Veronica', 1903, 'F', 175), +(9214, 'Rita', 1903, 'F', 174), +(9215, 'Teresa', 1903, 'F', 174), +(9216, 'Gussie', 1903, 'F', 170), +(9217, 'Letha', 1903, 'F', 165), +(9218, 'Adele', 1903, 'F', 164), +(9219, 'Claire', 1903, 'F', 164), +(9220, 'Roxie', 1903, 'F', 163), +(9221, 'Elma', 1903, 'F', 162), +(9222, 'Jeannette', 1903, 'F', 161), +(9223, 'Ila', 1903, 'F', 160), +(9224, 'Antoinette', 1903, 'F', 159), +(9225, 'Cecile', 1903, 'F', 159), +(9226, 'Mayme', 1903, 'F', 158), +(9227, 'Carolyn', 1903, 'F', 157), +(9228, 'Angeline', 1903, 'F', 152), +(9229, 'Gracie', 1903, 'F', 151), +(9230, 'Maudie', 1903, 'F', 151), +(9231, 'Phyllis', 1903, 'F', 150), +(9232, 'Angelina', 1903, 'F', 149), +(9233, 'Lelia', 1903, 'F', 149), +(9234, 'Marcella', 1903, 'F', 149), +(9235, 'Cornelia', 1903, 'F', 148), +(9236, 'Hester', 1903, 'F', 147), +(9237, 'Madge', 1903, 'F', 146), +(9238, 'Sue', 1903, 'F', 146), +(9239, 'Delia', 1903, 'F', 145), +(9240, 'Lessie', 1903, 'F', 145), +(9241, 'Lora', 1903, 'F', 145), +(9242, 'Adelaide', 1903, 'F', 144), +(9243, 'Constance', 1903, 'F', 144), +(9244, 'June', 1903, 'F', 143), +(9245, 'Lorena', 1903, 'F', 143), +(9246, 'Johnnie', 1903, 'F', 141), +(9247, 'Birdie', 1903, 'F', 138), +(9248, 'Leila', 1903, 'F', 138), +(9249, 'Dorothea', 1903, 'F', 136), +(9250, 'Eloise', 1903, 'F', 134), +(9251, 'Wanda', 1903, 'F', 134), +(9252, 'Lou', 1903, 'F', 133), +(9253, 'Angela', 1903, 'F', 132), +(9254, 'Elnora', 1903, 'F', 132), +(9255, 'Lenora', 1903, 'F', 132), +(9256, 'Zella', 1903, 'F', 132), +(9257, 'Nola', 1903, 'F', 131), +(9258, 'Olivia', 1903, 'F', 130), +(9259, 'Dovie', 1903, 'F', 129), +(9260, 'Dessie', 1903, 'F', 128), +(9261, 'Myra', 1903, 'F', 128), +(9262, 'Hallie', 1903, 'F', 127), +(9263, 'Rosalie', 1903, 'F', 127), +(9264, 'Katharine', 1903, 'F', 126), +(9265, 'Oma', 1903, 'F', 126), +(9266, 'Reba', 1903, 'F', 126), +(9267, 'Lorraine', 1903, 'F', 125), +(9268, 'Bettie', 1903, 'F', 123), +(9269, 'Helene', 1903, 'F', 123), +(9270, 'Lilly', 1903, 'F', 123), +(9271, 'Lulu', 1903, 'F', 122), +(9272, 'Ophelia', 1903, 'F', 122), +(9273, 'Rhoda', 1903, 'F', 122), +(9274, 'Neva', 1903, 'F', 121), +(9275, 'Janet', 1903, 'F', 119), +(9276, 'Corinne', 1903, 'F', 118), +(9277, 'Lorene', 1903, 'F', 116), +(9278, 'Dolores', 1903, 'F', 114), +(9279, 'Merle', 1903, 'F', 113), +(9280, 'Bess', 1903, 'F', 112), +(9281, 'Harriett', 1903, 'F', 112), +(9282, 'Pearlie', 1903, 'F', 112), +(9283, 'Elvira', 1903, 'F', 110), +(9284, 'Lee', 1903, 'F', 110), +(9285, 'Alvina', 1903, 'F', 109), +(9286, 'Francis', 1903, 'F', 109), +(9287, 'Yvonne', 1903, 'F', 109), +(9288, 'Helena', 1903, 'F', 108), +(9289, 'Hulda', 1903, 'F', 108), +(9290, 'Hettie', 1903, 'F', 107), +(9291, 'Ernestine', 1903, 'F', 106), +(9292, 'Vesta', 1903, 'F', 105), +(9293, 'Wilhelmina', 1903, 'F', 105), +(9294, 'Cecil', 1903, 'F', 103), +(9295, 'Shirley', 1903, 'F', 102), +(9296, 'Catharine', 1903, 'F', 101), +(9297, 'Eileen', 1903, 'F', 101), +(9298, 'Eugenia', 1903, 'F', 100), +(9299, 'John', 1903, 'M', 7608), +(9300, 'William', 1903, 'M', 6311), +(9301, 'James', 1903, 'M', 5480), +(9302, 'George', 1903, 'M', 3961), +(9303, 'Charles', 1903, 'M', 3212), +(9304, 'Joseph', 1903, 'M', 3121), +(9305, 'Robert', 1903, 'M', 3044), +(9306, 'Frank', 1903, 'M', 2644), +(9307, 'Edward', 1903, 'M', 2268), +(9308, 'Thomas', 1903, 'M', 1962), +(9309, 'Henry', 1903, 'M', 1922), +(9310, 'Walter', 1903, 'M', 1840), +(9311, 'Harry', 1903, 'M', 1647), +(9312, 'Willie', 1903, 'M', 1454), +(9313, 'Arthur', 1903, 'M', 1435), +(9314, 'Albert', 1903, 'M', 1337), +(9315, 'Clarence', 1903, 'M', 1261), +(9316, 'Fred', 1903, 'M', 1204), +(9317, 'Paul', 1903, 'M', 1081), +(9318, 'Harold', 1903, 'M', 1065), +(9319, 'Raymond', 1903, 'M', 1051), +(9320, 'Roy', 1903, 'M', 975), +(9321, 'Carl', 1903, 'M', 910), +(9322, 'Joe', 1903, 'M', 895), +(9323, 'Louis', 1903, 'M', 889), +(9324, 'Richard', 1903, 'M', 863), +(9325, 'Earl', 1903, 'M', 837), +(9326, 'Jack', 1903, 'M', 831), +(9327, 'Ralph', 1903, 'M', 807), +(9328, 'Ernest', 1903, 'M', 764), +(9329, 'Samuel', 1903, 'M', 741), +(9330, 'Charlie', 1903, 'M', 739), +(9331, 'David', 1903, 'M', 716), +(9332, 'Herbert', 1903, 'M', 668), +(9333, 'Francis', 1903, 'M', 665), +(9334, 'Theodore', 1903, 'M', 663), +(9335, 'Howard', 1903, 'M', 636), +(9336, 'Leo', 1903, 'M', 636), +(9337, 'Alfred', 1903, 'M', 557), +(9338, 'Elmer', 1903, 'M', 556), +(9339, 'Sam', 1903, 'M', 552), +(9340, 'Andrew', 1903, 'M', 551), +(9341, 'Lawrence', 1903, 'M', 536), +(9342, 'Eugene', 1903, 'M', 478), +(9343, 'Lee', 1903, 'M', 477), +(9344, 'Floyd', 1903, 'M', 472), +(9345, 'Michael', 1903, 'M', 466), +(9346, 'Herman', 1903, 'M', 449), +(9347, 'Leonard', 1903, 'M', 448), +(9348, 'Daniel', 1903, 'M', 432), +(9349, 'Oscar', 1903, 'M', 427), +(9350, 'Clyde', 1903, 'M', 413), +(9351, 'Lester', 1903, 'M', 400), +(9352, 'Anthony', 1903, 'M', 399), +(9353, 'Ray', 1903, 'M', 397), +(9354, 'Russell', 1903, 'M', 390), +(9355, 'Jesse', 1903, 'M', 388), +(9356, 'Peter', 1903, 'M', 372), +(9357, 'Stanley', 1903, 'M', 361), +(9358, 'Donald', 1903, 'M', 359), +(9359, 'Clifford', 1903, 'M', 348), +(9360, 'Edwin', 1903, 'M', 347), +(9361, 'Frederick', 1903, 'M', 341), +(9362, 'Leroy', 1903, 'M', 340), +(9363, 'Lewis', 1903, 'M', 335), +(9364, 'Cecil', 1903, 'M', 332), +(9365, 'Kenneth', 1903, 'M', 330), +(9366, 'Chester', 1903, 'M', 327), +(9367, 'Benjamin', 1903, 'M', 324), +(9368, 'Eddie', 1903, 'M', 314), +(9369, 'Claude', 1903, 'M', 301), +(9370, 'Lloyd', 1903, 'M', 299), +(9371, 'Tom', 1903, 'M', 295), +(9372, 'Harvey', 1903, 'M', 293), +(9373, 'Will', 1903, 'M', 293), +(9374, 'Leon', 1903, 'M', 287), +(9375, 'Martin', 1903, 'M', 283), +(9376, 'Jessie', 1903, 'M', 280), +(9377, 'Bernard', 1903, 'M', 271), +(9378, 'Luther', 1903, 'M', 265), +(9379, 'Ben', 1903, 'M', 259), +(9380, 'Edgar', 1903, 'M', 259), +(9381, 'Homer', 1903, 'M', 257), +(9382, 'Jim', 1903, 'M', 257), +(9383, 'Philip', 1903, 'M', 250), +(9384, 'Norman', 1903, 'M', 238), +(9385, 'Johnnie', 1903, 'M', 237), +(9386, 'Melvin', 1903, 'M', 230), +(9387, 'Leslie', 1903, 'M', 227), +(9388, 'Alvin', 1903, 'M', 222), +(9389, 'Allen', 1903, 'M', 219), +(9390, 'Milton', 1903, 'M', 210), +(9391, 'Oliver', 1903, 'M', 210), +(9392, 'Patrick', 1903, 'M', 210), +(9393, 'Everett', 1903, 'M', 204), +(9394, 'Stephen', 1903, 'M', 200), +(9395, 'Glenn', 1903, 'M', 198), +(9396, 'Roosevelt', 1903, 'M', 196), +(9397, 'Victor', 1903, 'M', 196), +(9398, 'Alexander', 1903, 'M', 195), +(9399, 'Hugh', 1903, 'M', 193), +(9400, 'Archie', 1903, 'M', 192), +(9401, 'Jacob', 1903, 'M', 189), +(9402, 'Marion', 1903, 'M', 188), +(9403, 'Guy', 1903, 'M', 187), +(9404, 'Marvin', 1903, 'M', 185), +(9405, 'Gerald', 1903, 'M', 182), +(9406, 'Maurice', 1903, 'M', 182), +(9407, 'Vernon', 1903, 'M', 179), +(9408, 'Morris', 1903, 'M', 178), +(9409, 'Horace', 1903, 'M', 175), +(9410, 'Julius', 1903, 'M', 173), +(9411, 'Virgil', 1903, 'M', 173), +(9412, 'Warren', 1903, 'M', 173), +(9413, 'Hubert', 1903, 'M', 170), +(9414, 'Vincent', 1903, 'M', 170), +(9415, 'Ed', 1903, 'M', 168), +(9416, 'Otis', 1903, 'M', 168), +(9417, 'Ira', 1903, 'M', 167), +(9418, 'Otto', 1903, 'M', 166), +(9419, 'Wilbur', 1903, 'M', 165), +(9420, 'Sidney', 1903, 'M', 162), +(9421, 'Willard', 1903, 'M', 162), +(9422, 'Wallace', 1903, 'M', 157), +(9423, 'Dan', 1903, 'M', 155), +(9424, 'Wesley', 1903, 'M', 153), +(9425, 'Manuel', 1903, 'M', 151), +(9426, 'Nathan', 1903, 'M', 146), +(9427, 'Lonnie', 1903, 'M', 145), +(9428, 'Bennie', 1903, 'M', 144), +(9429, 'Gordon', 1903, 'M', 142), +(9430, 'Jose', 1903, 'M', 142), +(9431, 'Dewey', 1903, 'M', 140), +(9432, 'Earnest', 1903, 'M', 140), +(9433, 'Alex', 1903, 'M', 138), +(9434, 'Curtis', 1903, 'M', 138), +(9435, 'Gilbert', 1903, 'M', 138), +(9436, 'Isaac', 1903, 'M', 138), +(9437, 'Arnold', 1903, 'M', 134), +(9438, 'Rufus', 1903, 'M', 134), +(9439, 'Willis', 1903, 'M', 133), +(9440, 'Bert', 1903, 'M', 132), +(9441, 'Mack', 1903, 'M', 131), +(9442, 'Bill', 1903, 'M', 129), +(9443, 'Emil', 1903, 'M', 128), +(9444, 'Jimmie', 1903, 'M', 128), +(9445, 'Steve', 1903, 'M', 127), +(9446, 'Charley', 1903, 'M', 126), +(9447, 'Irving', 1903, 'M', 125), +(9448, 'Orville', 1903, 'M', 125), +(9449, 'Percy', 1903, 'M', 124), +(9450, 'Glen', 1903, 'M', 121), +(9451, 'Rudolph', 1903, 'M', 120), +(9452, 'August', 1903, 'M', 116), +(9453, 'Franklin', 1903, 'M', 116), +(9454, 'Sylvester', 1903, 'M', 114), +(9455, 'Mike', 1903, 'M', 113), +(9456, 'Jerry', 1903, 'M', 112), +(9457, 'Clifton', 1903, 'M', 110), +(9458, 'Ellis', 1903, 'M', 110), +(9459, 'Max', 1903, 'M', 110), +(9460, 'Roland', 1903, 'M', 107), +(9461, 'Calvin', 1903, 'M', 106), +(9462, 'Clinton', 1903, 'M', 106), +(9463, 'Nathaniel', 1903, 'M', 105), +(9464, 'Edmund', 1903, 'M', 102), +(9465, 'Matthew', 1903, 'M', 102), +(9466, 'Douglas', 1903, 'M', 100), +(9467, 'Mary', 1904, 'F', 14962); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(9468, 'Helen', 1904, 'F', 6488), +(9469, 'Anna', 1904, 'F', 5330), +(9470, 'Margaret', 1904, 'F', 5302), +(9471, 'Ruth', 1904, 'F', 4900), +(9472, 'Elizabeth', 1904, 'F', 3833), +(9473, 'Marie', 1904, 'F', 3595), +(9474, 'Florence', 1904, 'F', 3572), +(9475, 'Mildred', 1904, 'F', 3525), +(9476, 'Dorothy', 1904, 'F', 3477), +(9477, 'Ethel', 1904, 'F', 3296), +(9478, 'Lillian', 1904, 'F', 3139), +(9479, 'Alice', 1904, 'F', 3131), +(9480, 'Gladys', 1904, 'F', 2976), +(9481, 'Edna', 1904, 'F', 2762), +(9482, 'Frances', 1904, 'F', 2657), +(9483, 'Annie', 1904, 'F', 2631), +(9484, 'Rose', 1904, 'F', 2631), +(9485, 'Grace', 1904, 'F', 2513), +(9486, 'Bertha', 1904, 'F', 2363), +(9487, 'Bessie', 1904, 'F', 2340), +(9488, 'Emma', 1904, 'F', 2312), +(9489, 'Hazel', 1904, 'F', 2301), +(9490, 'Clara', 1904, 'F', 2281), +(9491, 'Gertrude', 1904, 'F', 2269), +(9492, 'Irene', 1904, 'F', 2212), +(9493, 'Mabel', 1904, 'F', 2172), +(9494, 'Louise', 1904, 'F', 2136), +(9495, 'Martha', 1904, 'F', 2019), +(9496, 'Pearl', 1904, 'F', 2015), +(9497, 'Catherine', 1904, 'F', 1983), +(9498, 'Esther', 1904, 'F', 1957), +(9499, 'Edith', 1904, 'F', 1944), +(9500, 'Myrtle', 1904, 'F', 1905), +(9501, 'Minnie', 1904, 'F', 1885), +(9502, 'Eva', 1904, 'F', 1858), +(9503, 'Thelma', 1904, 'F', 1757), +(9504, 'Ida', 1904, 'F', 1751), +(9505, 'Elsie', 1904, 'F', 1719), +(9506, 'Josephine', 1904, 'F', 1701), +(9507, 'Ruby', 1904, 'F', 1701), +(9508, 'Agnes', 1904, 'F', 1672), +(9509, 'Sarah', 1904, 'F', 1594), +(9510, 'Nellie', 1904, 'F', 1560), +(9511, 'Beatrice', 1904, 'F', 1549), +(9512, 'Viola', 1904, 'F', 1545), +(9513, 'Laura', 1904, 'F', 1508), +(9514, 'Ella', 1904, 'F', 1432), +(9515, 'Julia', 1904, 'F', 1426), +(9516, 'Evelyn', 1904, 'F', 1371), +(9517, 'Lillie', 1904, 'F', 1364), +(9518, 'Mattie', 1904, 'F', 1362), +(9519, 'Lucille', 1904, 'F', 1351), +(9520, 'Carrie', 1904, 'F', 1280), +(9521, 'Alma', 1904, 'F', 1257), +(9522, 'Pauline', 1904, 'F', 1243), +(9523, 'Lena', 1904, 'F', 1228), +(9524, 'Mae', 1904, 'F', 1214), +(9525, 'Virginia', 1904, 'F', 1213), +(9526, 'Jessie', 1904, 'F', 1197), +(9527, 'Willie', 1904, 'F', 1188), +(9528, 'Blanche', 1904, 'F', 1142), +(9529, 'Katherine', 1904, 'F', 1128), +(9530, 'Hattie', 1904, 'F', 1123), +(9531, 'Marion', 1904, 'F', 1109), +(9532, 'Lucy', 1904, 'F', 1086), +(9533, 'Mamie', 1904, 'F', 1041), +(9534, 'Stella', 1904, 'F', 1026), +(9535, 'Leona', 1904, 'F', 998), +(9536, 'Cora', 1904, 'F', 993), +(9537, 'Vera', 1904, 'F', 993), +(9538, 'Beulah', 1904, 'F', 983), +(9539, 'Fannie', 1904, 'F', 964), +(9540, 'Jennie', 1904, 'F', 964), +(9541, 'Bernice', 1904, 'F', 962), +(9542, 'Rosa', 1904, 'F', 903), +(9543, 'Lula', 1904, 'F', 894), +(9544, 'Ann', 1904, 'F', 880), +(9545, 'Ada', 1904, 'F', 878), +(9546, 'Eleanor', 1904, 'F', 868), +(9547, 'Maggie', 1904, 'F', 805), +(9548, 'Dora', 1904, 'F', 788), +(9549, 'Kathryn', 1904, 'F', 787), +(9550, 'Ellen', 1904, 'F', 774), +(9551, 'Daisy', 1904, 'F', 772), +(9552, 'Maude', 1904, 'F', 757), +(9553, 'Violet', 1904, 'F', 755), +(9554, 'Doris', 1904, 'F', 736), +(9555, 'Georgia', 1904, 'F', 736), +(9556, 'Lois', 1904, 'F', 727), +(9557, 'Betty', 1904, 'F', 707), +(9558, 'Sadie', 1904, 'F', 703), +(9559, 'Nora', 1904, 'F', 698), +(9560, 'Marguerite', 1904, 'F', 684), +(9561, 'Susie', 1904, 'F', 662), +(9562, 'Marjorie', 1904, 'F', 639), +(9563, 'Anne', 1904, 'F', 631), +(9564, 'Hilda', 1904, 'F', 629), +(9565, 'Lola', 1904, 'F', 624), +(9566, 'Opal', 1904, 'F', 621), +(9567, 'Velma', 1904, 'F', 615), +(9568, 'Della', 1904, 'F', 607), +(9569, 'Emily', 1904, 'F', 599), +(9570, 'Inez', 1904, 'F', 596), +(9571, 'Effie', 1904, 'F', 578), +(9572, 'Olive', 1904, 'F', 573), +(9573, 'Flora', 1904, 'F', 569), +(9574, 'Theresa', 1904, 'F', 561), +(9575, 'May', 1904, 'F', 555), +(9576, 'Charlotte', 1904, 'F', 554), +(9577, 'Nettie', 1904, 'F', 547), +(9578, 'Lydia', 1904, 'F', 545), +(9579, 'Alberta', 1904, 'F', 517), +(9580, 'Goldie', 1904, 'F', 513), +(9581, 'Nancy', 1904, 'F', 508), +(9582, 'Loretta', 1904, 'F', 506), +(9583, 'Eunice', 1904, 'F', 502), +(9584, 'Lottie', 1904, 'F', 497), +(9585, 'Sylvia', 1904, 'F', 497), +(9586, 'Katie', 1904, 'F', 494), +(9587, 'Mable', 1904, 'F', 486), +(9588, 'Jean', 1904, 'F', 483), +(9589, 'Sallie', 1904, 'F', 483), +(9590, 'Genevieve', 1904, 'F', 481), +(9591, 'Eula', 1904, 'F', 480), +(9592, 'Vivian', 1904, 'F', 470), +(9593, 'Rosie', 1904, 'F', 468), +(9594, 'Estelle', 1904, 'F', 464), +(9595, 'Essie', 1904, 'F', 457), +(9596, 'Ollie', 1904, 'F', 456), +(9597, 'Henrietta', 1904, 'F', 449), +(9598, 'Harriet', 1904, 'F', 448), +(9599, 'Lucile', 1904, 'F', 433), +(9600, 'Addie', 1904, 'F', 432), +(9601, 'Lela', 1904, 'F', 431), +(9602, 'Caroline', 1904, 'F', 429), +(9603, 'Verna', 1904, 'F', 429), +(9604, 'Iva', 1904, 'F', 424), +(9605, 'Lizzie', 1904, 'F', 420), +(9606, 'Ora', 1904, 'F', 412), +(9607, 'Marian', 1904, 'F', 406), +(9608, 'Jane', 1904, 'F', 395), +(9609, 'Madeline', 1904, 'F', 393), +(9610, 'Maria', 1904, 'F', 393), +(9611, 'Geneva', 1904, 'F', 374), +(9612, 'Rebecca', 1904, 'F', 371), +(9613, 'Kathleen', 1904, 'F', 362), +(9614, 'Irma', 1904, 'F', 360), +(9615, 'Sara', 1904, 'F', 359), +(9616, 'Sophie', 1904, 'F', 359), +(9617, 'Barbara', 1904, 'F', 357), +(9618, 'Rachel', 1904, 'F', 356), +(9619, 'Amelia', 1904, 'F', 353), +(9620, 'Wilma', 1904, 'F', 352), +(9621, 'Naomi', 1904, 'F', 350), +(9622, 'Nina', 1904, 'F', 348), +(9623, 'Erma', 1904, 'F', 345), +(9624, 'Estella', 1904, 'F', 344), +(9625, 'Juanita', 1904, 'F', 344), +(9626, 'Etta', 1904, 'F', 343), +(9627, 'Flossie', 1904, 'F', 338), +(9628, 'Mollie', 1904, 'F', 336), +(9629, 'Ola', 1904, 'F', 335), +(9630, 'Alta', 1904, 'F', 327), +(9631, 'Christine', 1904, 'F', 325), +(9632, 'Susan', 1904, 'F', 324), +(9633, 'Victoria', 1904, 'F', 320), +(9634, 'Olga', 1904, 'F', 298), +(9635, 'Amanda', 1904, 'F', 294), +(9636, 'Celia', 1904, 'F', 293), +(9637, 'Nannie', 1904, 'F', 289), +(9638, 'Matilda', 1904, 'F', 285), +(9639, 'Fern', 1904, 'F', 281), +(9640, 'Norma', 1904, 'F', 281), +(9641, 'Frieda', 1904, 'F', 280), +(9642, 'Sally', 1904, 'F', 278), +(9643, 'Audrey', 1904, 'F', 276), +(9644, 'Cecelia', 1904, 'F', 272), +(9645, 'Janie', 1904, 'F', 272), +(9646, 'Isabel', 1904, 'F', 271), +(9647, 'Bonnie', 1904, 'F', 268), +(9648, 'Allie', 1904, 'F', 261), +(9649, 'Hannah', 1904, 'F', 261), +(9650, 'Virgie', 1904, 'F', 261), +(9651, 'Adeline', 1904, 'F', 259), +(9652, 'Lila', 1904, 'F', 259), +(9653, 'Freda', 1904, 'F', 256), +(9654, 'Amy', 1904, 'F', 255), +(9655, 'Winifred', 1904, 'F', 252), +(9656, 'Cecilia', 1904, 'F', 250), +(9657, 'Luella', 1904, 'F', 246), +(9658, 'Leola', 1904, 'F', 244), +(9659, 'Elva', 1904, 'F', 234), +(9660, 'Selma', 1904, 'F', 231), +(9661, 'Cleo', 1904, 'F', 230), +(9662, 'Ina', 1904, 'F', 230), +(9663, 'Sophia', 1904, 'F', 230), +(9664, 'Jewel', 1904, 'F', 229), +(9665, 'Miriam', 1904, 'F', 227), +(9666, 'Nell', 1904, 'F', 226), +(9667, 'Rena', 1904, 'F', 225), +(9668, 'Isabelle', 1904, 'F', 223), +(9669, 'Jeanette', 1904, 'F', 221), +(9670, 'Geraldine', 1904, 'F', 219), +(9671, 'Faye', 1904, 'F', 214), +(9672, 'Muriel', 1904, 'F', 214), +(9673, 'Kate', 1904, 'F', 213), +(9674, 'Jeannette', 1904, 'F', 212), +(9675, 'Roberta', 1904, 'F', 211), +(9676, 'Josie', 1904, 'F', 206), +(9677, 'Belle', 1904, 'F', 205), +(9678, 'Eliza', 1904, 'F', 204), +(9679, 'Veronica', 1904, 'F', 203), +(9680, 'Winnie', 1904, 'F', 203), +(9681, 'Jewell', 1904, 'F', 202), +(9682, 'Margie', 1904, 'F', 199), +(9683, 'Regina', 1904, 'F', 198), +(9684, 'Zelma', 1904, 'F', 198), +(9685, 'Dollie', 1904, 'F', 191), +(9686, 'Anita', 1904, 'F', 190), +(9687, 'Tillie', 1904, 'F', 189), +(9688, 'Augusta', 1904, 'F', 188), +(9689, 'Bertie', 1904, 'F', 188), +(9690, 'Antoinette', 1904, 'F', 186), +(9691, 'Fay', 1904, 'F', 186), +(9692, 'Delia', 1904, 'F', 184), +(9693, 'Carolyn', 1904, 'F', 183), +(9694, 'Millie', 1904, 'F', 181), +(9695, 'Phyllis', 1904, 'F', 181), +(9696, 'Teresa', 1904, 'F', 179), +(9697, 'Gracie', 1904, 'F', 178), +(9698, 'Johnnie', 1904, 'F', 175), +(9699, 'Lessie', 1904, 'F', 175), +(9700, 'Cecile', 1904, 'F', 173), +(9701, 'Gussie', 1904, 'F', 173), +(9702, 'Rosalie', 1904, 'F', 173), +(9703, 'Callie', 1904, 'F', 170), +(9704, 'Madge', 1904, 'F', 170), +(9705, 'Hester', 1904, 'F', 169), +(9706, 'Dorothea', 1904, 'F', 168), +(9707, 'Maudie', 1904, 'F', 166), +(9708, 'Rita', 1904, 'F', 166), +(9709, 'Adele', 1904, 'F', 163), +(9710, 'Claire', 1904, 'F', 163), +(9711, 'Sue', 1904, 'F', 163), +(9712, 'Angelina', 1904, 'F', 161), +(9713, 'Mayme', 1904, 'F', 161), +(9714, 'Elma', 1904, 'F', 160), +(9715, 'Maud', 1904, 'F', 159), +(9716, 'Olivia', 1904, 'F', 157), +(9717, 'Lelia', 1904, 'F', 156), +(9718, 'Bettie', 1904, 'F', 155), +(9719, 'Elnora', 1904, 'F', 155), +(9720, 'Letha', 1904, 'F', 155), +(9721, 'Roxie', 1904, 'F', 153), +(9722, 'Angeline', 1904, 'F', 151), +(9723, 'Birdie', 1904, 'F', 151), +(9724, 'Lulu', 1904, 'F', 151), +(9725, 'Leah', 1904, 'F', 149), +(9726, 'Leila', 1904, 'F', 148), +(9727, 'Marcella', 1904, 'F', 146), +(9728, 'Hallie', 1904, 'F', 144), +(9729, 'Lora', 1904, 'F', 144), +(9730, 'Ila', 1904, 'F', 143), +(9731, 'Lorena', 1904, 'F', 140), +(9732, 'Nola', 1904, 'F', 140), +(9733, 'Lee', 1904, 'F', 139), +(9734, 'Cornelia', 1904, 'F', 138), +(9735, 'Dolores', 1904, 'F', 138), +(9736, 'Lenora', 1904, 'F', 138), +(9737, 'Neva', 1904, 'F', 138), +(9738, 'Shirley', 1904, 'F', 138), +(9739, 'June', 1904, 'F', 133), +(9740, 'Lilly', 1904, 'F', 133), +(9741, 'Lorene', 1904, 'F', 133), +(9742, 'Cecil', 1904, 'F', 130), +(9743, 'Dovie', 1904, 'F', 129), +(9744, 'Janet', 1904, 'F', 128), +(9745, 'Reba', 1904, 'F', 128), +(9746, 'Constance', 1904, 'F', 127), +(9747, 'Corinne', 1904, 'F', 127), +(9748, 'Lorraine', 1904, 'F', 126), +(9749, 'Zella', 1904, 'F', 126), +(9750, 'Dessie', 1904, 'F', 125), +(9751, 'Johanna', 1904, 'F', 125), +(9752, 'Angela', 1904, 'F', 124), +(9753, 'Patricia', 1904, 'F', 124), +(9754, 'Adelaide', 1904, 'F', 123), +(9755, 'Annette', 1904, 'F', 123), +(9756, 'Christina', 1904, 'F', 123), +(9757, 'Francis', 1904, 'F', 122), +(9758, 'Ernestine', 1904, 'F', 121), +(9759, 'Helene', 1904, 'F', 121), +(9760, 'Eileen', 1904, 'F', 120), +(9761, 'Eloise', 1904, 'F', 120), +(9762, 'Myra', 1904, 'F', 119), +(9763, 'Lou', 1904, 'F', 117), +(9764, 'Pearlie', 1904, 'F', 117), +(9765, 'Edythe', 1904, 'F', 116), +(9766, 'Elvira', 1904, 'F', 116), +(9767, 'Rhoda', 1904, 'F', 116), +(9768, 'Wanda', 1904, 'F', 116), +(9769, 'Eugenia', 1904, 'F', 113), +(9770, 'Hettie', 1904, 'F', 113), +(9771, 'Helena', 1904, 'F', 112), +(9772, 'Oma', 1904, 'F', 111), +(9773, 'Peggy', 1904, 'F', 111), +(9774, 'Jeanne', 1904, 'F', 109), +(9775, 'Katharine', 1904, 'F', 109), +(9776, 'Ophelia', 1904, 'F', 109), +(9777, 'Catharine', 1904, 'F', 108), +(9778, 'Leota', 1904, 'F', 108), +(9779, 'Yvonne', 1904, 'F', 108), +(9780, 'Odessa', 1904, 'F', 107), +(9781, 'Gertie', 1904, 'F', 106), +(9782, 'Pansy', 1904, 'F', 106), +(9783, 'Lily', 1904, 'F', 105), +(9784, 'Rosetta', 1904, 'F', 105), +(9785, 'Harriett', 1904, 'F', 104), +(9786, 'Louisa', 1904, 'F', 103), +(9787, 'Dolly', 1904, 'F', 102), +(9788, 'Erna', 1904, 'F', 102), +(9789, 'Linda', 1904, 'F', 101), +(9790, 'Lucinda', 1904, 'F', 101), +(9791, 'Mathilda', 1904, 'F', 101), +(9792, 'Tessie', 1904, 'F', 101), +(9793, 'Alvina', 1904, 'F', 100), +(9794, 'Claudia', 1904, 'F', 100), +(9795, 'John', 1904, 'M', 8108), +(9796, 'William', 1904, 'M', 6416), +(9797, 'James', 1904, 'M', 5855), +(9798, 'George', 1904, 'M', 4219), +(9799, 'Robert', 1904, 'M', 3414), +(9800, 'Charles', 1904, 'M', 3406), +(9801, 'Joseph', 1904, 'M', 3291), +(9802, 'Frank', 1904, 'M', 2799), +(9803, 'Edward', 1904, 'M', 2334), +(9804, 'Henry', 1904, 'M', 2086), +(9805, 'Thomas', 1904, 'M', 2057), +(9806, 'Walter', 1904, 'M', 1873), +(9807, 'Harry', 1904, 'M', 1722), +(9808, 'Willie', 1904, 'M', 1675), +(9809, 'Arthur', 1904, 'M', 1495), +(9810, 'Albert', 1904, 'M', 1453), +(9811, 'Clarence', 1904, 'M', 1310), +(9812, 'Fred', 1904, 'M', 1223), +(9813, 'Paul', 1904, 'M', 1194), +(9814, 'Harold', 1904, 'M', 1186), +(9815, 'Roy', 1904, 'M', 1123), +(9816, 'Raymond', 1904, 'M', 1093), +(9817, 'Joe', 1904, 'M', 959), +(9818, 'Richard', 1904, 'M', 957), +(9819, 'Carl', 1904, 'M', 953), +(9820, 'Louis', 1904, 'M', 936), +(9821, 'Jack', 1904, 'M', 908), +(9822, 'Ralph', 1904, 'M', 899), +(9823, 'Earl', 1904, 'M', 854), +(9824, 'Theodore', 1904, 'M', 834), +(9825, 'David', 1904, 'M', 817), +(9826, 'Ernest', 1904, 'M', 749), +(9827, 'Charlie', 1904, 'M', 739), +(9828, 'Samuel', 1904, 'M', 727), +(9829, 'Howard', 1904, 'M', 726), +(9830, 'Francis', 1904, 'M', 686), +(9831, 'Herbert', 1904, 'M', 680), +(9832, 'Lawrence', 1904, 'M', 662), +(9833, 'Elmer', 1904, 'M', 620), +(9834, 'Sam', 1904, 'M', 603), +(9835, 'Alfred', 1904, 'M', 600), +(9836, 'Leo', 1904, 'M', 552), +(9837, 'Andrew', 1904, 'M', 547), +(9838, 'Eugene', 1904, 'M', 541), +(9839, 'Lee', 1904, 'M', 532), +(9840, 'Leonard', 1904, 'M', 508), +(9841, 'Herman', 1904, 'M', 497), +(9842, 'Russell', 1904, 'M', 473), +(9843, 'Daniel', 1904, 'M', 472), +(9844, 'Michael', 1904, 'M', 462), +(9845, 'Clyde', 1904, 'M', 457), +(9846, 'Floyd', 1904, 'M', 446), +(9847, 'Jesse', 1904, 'M', 443), +(9848, 'Oscar', 1904, 'M', 442), +(9849, 'Ray', 1904, 'M', 432), +(9850, 'Anthony', 1904, 'M', 422), +(9851, 'Kenneth', 1904, 'M', 414), +(9852, 'Donald', 1904, 'M', 413), +(9853, 'Lewis', 1904, 'M', 402), +(9854, 'Leroy', 1904, 'M', 401), +(9855, 'Lester', 1904, 'M', 398), +(9856, 'Peter', 1904, 'M', 395), +(9857, 'Frederick', 1904, 'M', 390), +(9858, 'Edwin', 1904, 'M', 388), +(9859, 'Stanley', 1904, 'M', 371), +(9860, 'Clifford', 1904, 'M', 361), +(9861, 'Cecil', 1904, 'M', 359), +(9862, 'Benjamin', 1904, 'M', 358), +(9863, 'Chester', 1904, 'M', 355), +(9864, 'Claude', 1904, 'M', 337), +(9865, 'Martin', 1904, 'M', 334), +(9866, 'Bernard', 1904, 'M', 326), +(9867, 'Lloyd', 1904, 'M', 324), +(9868, 'Tom', 1904, 'M', 318), +(9869, 'Eddie', 1904, 'M', 315), +(9870, 'Jessie', 1904, 'M', 313), +(9871, 'Norman', 1904, 'M', 305), +(9872, 'Alton', 1904, 'M', 302), +(9873, 'Harvey', 1904, 'M', 300), +(9874, 'Edgar', 1904, 'M', 299), +(9875, 'Will', 1904, 'M', 287), +(9876, 'Luther', 1904, 'M', 286), +(9877, 'Ben', 1904, 'M', 282), +(9878, 'Johnnie', 1904, 'M', 267), +(9879, 'Jim', 1904, 'M', 266), +(9880, 'Philip', 1904, 'M', 266), +(9881, 'Homer', 1904, 'M', 256), +(9882, 'Alvin', 1904, 'M', 247), +(9883, 'Jacob', 1904, 'M', 243), +(9884, 'Leon', 1904, 'M', 241), +(9885, 'Leslie', 1904, 'M', 236), +(9886, 'Melvin', 1904, 'M', 234), +(9887, 'Milton', 1904, 'M', 230), +(9888, 'Roosevelt', 1904, 'M', 230), +(9889, 'Everett', 1904, 'M', 229), +(9890, 'Allen', 1904, 'M', 228), +(9891, 'Patrick', 1904, 'M', 226), +(9892, 'Victor', 1904, 'M', 218), +(9893, 'Glenn', 1904, 'M', 217), +(9894, 'Virgil', 1904, 'M', 211), +(9895, 'Vincent', 1904, 'M', 206), +(9896, 'Horace', 1904, 'M', 205), +(9897, 'Alexander', 1904, 'M', 203), +(9898, 'Marvin', 1904, 'M', 203), +(9899, 'Hugh', 1904, 'M', 202), +(9900, 'Gerald', 1904, 'M', 201), +(9901, 'Sidney', 1904, 'M', 201), +(9902, 'Oliver', 1904, 'M', 200), +(9903, 'Marion', 1904, 'M', 198), +(9904, 'Earnest', 1904, 'M', 189), +(9905, 'Julius', 1904, 'M', 189), +(9906, 'Gilbert', 1904, 'M', 188), +(9907, 'Archie', 1904, 'M', 185), +(9908, 'Ed', 1904, 'M', 184), +(9909, 'Otis', 1904, 'M', 181), +(9910, 'Willard', 1904, 'M', 180), +(9911, 'Stephen', 1904, 'M', 178), +(9912, 'Vernon', 1904, 'M', 178), +(9913, 'Gordon', 1904, 'M', 177), +(9914, 'Jerry', 1904, 'M', 177), +(9915, 'Wilbur', 1904, 'M', 177), +(9916, 'Guy', 1904, 'M', 175), +(9917, 'Morris', 1904, 'M', 175), +(9918, 'Hubert', 1904, 'M', 173), +(9919, 'Alex', 1904, 'M', 169), +(9920, 'Isaac', 1904, 'M', 167), +(9921, 'Charley', 1904, 'M', 166), +(9922, 'Maurice', 1904, 'M', 166), +(9923, 'Wesley', 1904, 'M', 166), +(9924, 'Wallace', 1904, 'M', 163), +(9925, 'Warren', 1904, 'M', 163), +(9926, 'Otto', 1904, 'M', 161), +(9927, 'Irving', 1904, 'M', 159), +(9928, 'Bennie', 1904, 'M', 158), +(9929, 'Mack', 1904, 'M', 158), +(9930, 'Dan', 1904, 'M', 156), +(9931, 'Arnold', 1904, 'M', 149), +(9932, 'Manuel', 1904, 'M', 149), +(9933, 'Curtis', 1904, 'M', 144), +(9934, 'Ira', 1904, 'M', 144), +(9935, 'Jose', 1904, 'M', 144), +(9936, 'Roland', 1904, 'M', 139), +(9937, 'Rufus', 1904, 'M', 138), +(9938, 'Willis', 1904, 'M', 136), +(9939, 'Max', 1904, 'M', 134), +(9940, 'Orville', 1904, 'M', 134), +(9941, 'Lonnie', 1904, 'M', 133), +(9942, 'Nathan', 1904, 'M', 131), +(9943, 'Bill', 1904, 'M', 128), +(9944, 'Rudolph', 1904, 'M', 128), +(9945, 'August', 1904, 'M', 127), +(9946, 'Phillip', 1904, 'M', 127), +(9947, 'Percy', 1904, 'M', 125), +(9948, 'Jimmie', 1904, 'M', 124), +(9949, 'Sylvester', 1904, 'M', 124), +(9950, 'Steve', 1904, 'M', 123), +(9951, 'Bert', 1904, 'M', 120), +(9952, 'Emmett', 1904, 'M', 120), +(9953, 'Glen', 1904, 'M', 120), +(9954, 'Calvin', 1904, 'M', 118), +(9955, 'Mike', 1904, 'M', 118), +(9956, 'Aaron', 1904, 'M', 117), +(9957, 'Marshall', 1904, 'M', 116), +(9958, 'Clifton', 1904, 'M', 115), +(9959, 'Mark', 1904, 'M', 114), +(9960, 'Abraham', 1904, 'M', 111), +(9961, 'Clinton', 1904, 'M', 109), +(9962, 'Edmund', 1904, 'M', 109), +(9963, 'Franklin', 1904, 'M', 108), +(9964, 'Irvin', 1904, 'M', 107), +(9965, 'Johnie', 1904, 'M', 107), +(9966, 'Cornelius', 1904, 'M', 106), +(9967, 'Ellis', 1904, 'M', 106), +(9968, 'Nathaniel', 1904, 'M', 105), +(9969, 'Adam', 1904, 'M', 103), +(9970, 'Felix', 1904, 'M', 103), +(9971, 'Dave', 1904, 'M', 102), +(9972, 'Jerome', 1904, 'M', 102), +(9973, 'Jess', 1904, 'M', 102), +(9974, 'Nicholas', 1904, 'M', 102), +(9975, 'Emil', 1904, 'M', 101), +(9976, 'Elbert', 1904, 'M', 100), +(9977, 'Ollie', 1904, 'M', 100), +(9978, 'Mary', 1905, 'F', 16067), +(9979, 'Helen', 1905, 'F', 6811), +(9980, 'Margaret', 1905, 'F', 5690), +(9981, 'Anna', 1905, 'F', 5424), +(9982, 'Ruth', 1905, 'F', 5068), +(9983, 'Elizabeth', 1905, 'F', 4121), +(9984, 'Dorothy', 1905, 'F', 3937), +(9985, 'Mildred', 1905, 'F', 3758), +(9986, 'Marie', 1905, 'F', 3643), +(9987, 'Alice', 1905, 'F', 3611), +(9988, 'Florence', 1905, 'F', 3478), +(9989, 'Ethel', 1905, 'F', 3401), +(9990, 'Lillian', 1905, 'F', 3185), +(9991, 'Gladys', 1905, 'F', 2996), +(9992, 'Edna', 1905, 'F', 2953), +(9993, 'Frances', 1905, 'F', 2887), +(9994, 'Annie', 1905, 'F', 2793), +(9995, 'Rose', 1905, 'F', 2724), +(9996, 'Grace', 1905, 'F', 2630), +(9997, 'Bessie', 1905, 'F', 2446), +(9998, 'Bertha', 1905, 'F', 2434), +(9999, 'Clara', 1905, 'F', 2397), +(10000, 'Louise', 1905, 'F', 2367), +(10001, 'Irene', 1905, 'F', 2357), +(10002, 'Hazel', 1905, 'F', 2351), +(10003, 'Emma', 1905, 'F', 2298), +(10004, 'Gertrude', 1905, 'F', 2276), +(10005, 'Catherine', 1905, 'F', 2198), +(10006, 'Mabel', 1905, 'F', 2178), +(10007, 'Edith', 1905, 'F', 2137), +(10008, 'Pearl', 1905, 'F', 2108), +(10009, 'Martha', 1905, 'F', 2091), +(10010, 'Myrtle', 1905, 'F', 2026), +(10011, 'Esther', 1905, 'F', 1993), +(10012, 'Minnie', 1905, 'F', 1950), +(10013, 'Thelma', 1905, 'F', 1945), +(10014, 'Josephine', 1905, 'F', 1894), +(10015, 'Ruby', 1905, 'F', 1885), +(10016, 'Eva', 1905, 'F', 1815), +(10017, 'Elsie', 1905, 'F', 1811), +(10018, 'Sarah', 1905, 'F', 1762), +(10019, 'Ida', 1905, 'F', 1757), +(10020, 'Agnes', 1905, 'F', 1718), +(10021, 'Viola', 1905, 'F', 1697), +(10022, 'Beatrice', 1905, 'F', 1661), +(10023, 'Evelyn', 1905, 'F', 1661), +(10024, 'Julia', 1905, 'F', 1642), +(10025, 'Nellie', 1905, 'F', 1626), +(10026, 'Laura', 1905, 'F', 1567), +(10027, 'Lucille', 1905, 'F', 1533), +(10028, 'Lillie', 1905, 'F', 1481), +(10029, 'Ella', 1905, 'F', 1437), +(10030, 'Virginia', 1905, 'F', 1394), +(10031, 'Pauline', 1905, 'F', 1381), +(10032, 'Mattie', 1905, 'F', 1371), +(10033, 'Alma', 1905, 'F', 1333), +(10034, 'Jessie', 1905, 'F', 1315), +(10035, 'Carrie', 1905, 'F', 1288), +(10036, 'Willie', 1905, 'F', 1285), +(10037, 'Mae', 1905, 'F', 1284), +(10038, 'Lena', 1905, 'F', 1258), +(10039, 'Hattie', 1905, 'F', 1197), +(10040, 'Blanche', 1905, 'F', 1190), +(10041, 'Katherine', 1905, 'F', 1190), +(10042, 'Marion', 1905, 'F', 1141), +(10043, 'Lucy', 1905, 'F', 1132), +(10044, 'Stella', 1905, 'F', 1097), +(10045, 'Fannie', 1905, 'F', 1085), +(10046, 'Leona', 1905, 'F', 1083), +(10047, 'Mamie', 1905, 'F', 1068), +(10048, 'Vera', 1905, 'F', 1053), +(10049, 'Cora', 1905, 'F', 1044), +(10050, 'Eleanor', 1905, 'F', 1041), +(10051, 'Bernice', 1905, 'F', 1032), +(10052, 'Ann', 1905, 'F', 996), +(10053, 'Jennie', 1905, 'F', 981), +(10054, 'Beulah', 1905, 'F', 968), +(10055, 'Lula', 1905, 'F', 963), +(10056, 'Rosa', 1905, 'F', 922), +(10057, 'Ada', 1905, 'F', 873), +(10058, 'Ellen', 1905, 'F', 845), +(10059, 'Violet', 1905, 'F', 831), +(10060, 'Doris', 1905, 'F', 812), +(10061, 'Maggie', 1905, 'F', 809), +(10062, 'Betty', 1905, 'F', 807), +(10063, 'Kathryn', 1905, 'F', 788), +(10064, 'Daisy', 1905, 'F', 776), +(10065, 'Lois', 1905, 'F', 763), +(10066, 'Dora', 1905, 'F', 757), +(10067, 'Marguerite', 1905, 'F', 753), +(10068, 'Sadie', 1905, 'F', 750), +(10069, 'Nora', 1905, 'F', 742), +(10070, 'Susie', 1905, 'F', 739), +(10071, 'Georgia', 1905, 'F', 723), +(10072, 'Velma', 1905, 'F', 722), +(10073, 'Marjorie', 1905, 'F', 712), +(10074, 'Maude', 1905, 'F', 709), +(10075, 'Anne', 1905, 'F', 708), +(10076, 'Opal', 1905, 'F', 702), +(10077, 'Emily', 1905, 'F', 683), +(10078, 'Hilda', 1905, 'F', 655), +(10079, 'Flora', 1905, 'F', 628), +(10080, 'Lola', 1905, 'F', 624), +(10081, 'Charlotte', 1905, 'F', 614), +(10082, 'Sallie', 1905, 'F', 607), +(10083, 'Inez', 1905, 'F', 601), +(10084, 'Olive', 1905, 'F', 598), +(10085, 'Theresa', 1905, 'F', 598), +(10086, 'Della', 1905, 'F', 593), +(10087, 'Alberta', 1905, 'F', 577), +(10088, 'Nettie', 1905, 'F', 573), +(10089, 'Mable', 1905, 'F', 562), +(10090, 'Katie', 1905, 'F', 553), +(10091, 'Goldie', 1905, 'F', 548), +(10092, 'Jean', 1905, 'F', 548), +(10093, 'Lottie', 1905, 'F', 547), +(10094, 'Effie', 1905, 'F', 542), +(10095, 'Nancy', 1905, 'F', 535), +(10096, 'May', 1905, 'F', 530), +(10097, 'Sylvia', 1905, 'F', 528), +(10098, 'Loretta', 1905, 'F', 527), +(10099, 'Eunice', 1905, 'F', 525), +(10100, 'Lydia', 1905, 'F', 518), +(10101, 'Estelle', 1905, 'F', 509), +(10102, 'Genevieve', 1905, 'F', 508), +(10103, 'Eula', 1905, 'F', 502), +(10104, 'Rosie', 1905, 'F', 500), +(10105, 'Vivian', 1905, 'F', 492), +(10106, 'Verna', 1905, 'F', 488), +(10107, 'Ollie', 1905, 'F', 486), +(10108, 'Lucile', 1905, 'F', 479), +(10109, 'Essie', 1905, 'F', 476), +(10110, 'Lizzie', 1905, 'F', 476), +(10111, 'Addie', 1905, 'F', 465), +(10112, 'Lela', 1905, 'F', 465), +(10113, 'Marian', 1905, 'F', 455), +(10114, 'Sara', 1905, 'F', 437), +(10115, 'Ora', 1905, 'F', 431), +(10116, 'Maria', 1905, 'F', 430), +(10117, 'Henrietta', 1905, 'F', 428), +(10118, 'Irma', 1905, 'F', 428), +(10119, 'Iva', 1905, 'F', 422), +(10120, 'Rachel', 1905, 'F', 421), +(10121, 'Harriet', 1905, 'F', 413), +(10122, 'Madeline', 1905, 'F', 411), +(10123, 'Caroline', 1905, 'F', 407), +(10124, 'Flossie', 1905, 'F', 406), +(10125, 'Rebecca', 1905, 'F', 402), +(10126, 'Geneva', 1905, 'F', 398), +(10127, 'Etta', 1905, 'F', 397), +(10128, 'Jane', 1905, 'F', 393), +(10129, 'Kathleen', 1905, 'F', 386), +(10130, 'Sophie', 1905, 'F', 374), +(10131, 'Barbara', 1905, 'F', 366), +(10132, 'Amelia', 1905, 'F', 365), +(10133, 'Naomi', 1905, 'F', 361), +(10134, 'Juanita', 1905, 'F', 360), +(10135, 'Wilma', 1905, 'F', 357), +(10136, 'Nina', 1905, 'F', 354), +(10137, 'Christine', 1905, 'F', 344), +(10138, 'Mollie', 1905, 'F', 344), +(10139, 'Ola', 1905, 'F', 344), +(10140, 'Victoria', 1905, 'F', 343), +(10141, 'Erma', 1905, 'F', 330), +(10142, 'Susan', 1905, 'F', 321), +(10143, 'Leola', 1905, 'F', 319), +(10144, 'Alta', 1905, 'F', 316), +(10145, 'Amanda', 1905, 'F', 311), +(10146, 'Norma', 1905, 'F', 311), +(10147, 'Freda', 1905, 'F', 310), +(10148, 'Janie', 1905, 'F', 306), +(10149, 'Nannie', 1905, 'F', 303), +(10150, 'Sally', 1905, 'F', 303), +(10151, 'Allie', 1905, 'F', 298), +(10152, 'Cecelia', 1905, 'F', 293), +(10153, 'Isabel', 1905, 'F', 292), +(10154, 'Olga', 1905, 'F', 288), +(10155, 'Luella', 1905, 'F', 287), +(10156, 'Ina', 1905, 'F', 283), +(10157, 'Winifred', 1905, 'F', 276), +(10158, 'Estella', 1905, 'F', 275), +(10159, 'Frieda', 1905, 'F', 275), +(10160, 'Fern', 1905, 'F', 273), +(10161, 'Audrey', 1905, 'F', 272), +(10162, 'Celia', 1905, 'F', 270), +(10163, 'Amy', 1905, 'F', 269), +(10164, 'Matilda', 1905, 'F', 268), +(10165, 'Bonnie', 1905, 'F', 264), +(10166, 'Elva', 1905, 'F', 261), +(10167, 'Geraldine', 1905, 'F', 259), +(10168, 'Isabelle', 1905, 'F', 253), +(10169, 'Jewell', 1905, 'F', 253), +(10170, 'Cleo', 1905, 'F', 248), +(10171, 'Virgie', 1905, 'F', 244), +(10172, 'Jeanette', 1905, 'F', 243), +(10173, 'Roberta', 1905, 'F', 243), +(10174, 'Cecilia', 1905, 'F', 237), +(10175, 'Sophia', 1905, 'F', 237), +(10176, 'Adeline', 1905, 'F', 236), +(10177, 'Miriam', 1905, 'F', 234), +(10178, 'Nell', 1905, 'F', 229), +(10179, 'Selma', 1905, 'F', 224), +(10180, 'Regina', 1905, 'F', 223), +(10181, 'Eliza', 1905, 'F', 222), +(10182, 'Hannah', 1905, 'F', 219), +(10183, 'Callie', 1905, 'F', 217), +(10184, 'Dorothea', 1905, 'F', 217), +(10185, 'Josie', 1905, 'F', 217), +(10186, 'Veronica', 1905, 'F', 217), +(10187, 'Augusta', 1905, 'F', 216), +(10188, 'Fay', 1905, 'F', 215), +(10189, 'Lila', 1905, 'F', 211), +(10190, 'Carolyn', 1905, 'F', 210), +(10191, 'Anita', 1905, 'F', 209), +(10192, 'Winnie', 1905, 'F', 207), +(10193, 'Belle', 1905, 'F', 205), +(10194, 'Gussie', 1905, 'F', 205), +(10195, 'Jeannette', 1905, 'F', 205), +(10196, 'Rena', 1905, 'F', 204), +(10197, 'Jewel', 1905, 'F', 201), +(10198, 'Adele', 1905, 'F', 200), +(10199, 'Dollie', 1905, 'F', 200), +(10200, 'Millie', 1905, 'F', 193), +(10201, 'Maud', 1905, 'F', 192), +(10202, 'Sue', 1905, 'F', 191), +(10203, 'Margie', 1905, 'F', 190), +(10204, 'Elnora', 1905, 'F', 189), +(10205, 'Faye', 1905, 'F', 189), +(10206, 'Rita', 1905, 'F', 188), +(10207, 'Muriel', 1905, 'F', 186), +(10208, 'Lora', 1905, 'F', 185), +(10209, 'Claire', 1905, 'F', 184), +(10210, 'Madge', 1905, 'F', 184), +(10211, 'Kate', 1905, 'F', 183), +(10212, 'Phyllis', 1905, 'F', 183), +(10213, 'Antoinette', 1905, 'F', 181), +(10214, 'Johnnie', 1905, 'F', 181), +(10215, 'Teresa', 1905, 'F', 178), +(10216, 'Marcella', 1905, 'F', 175), +(10217, 'Letha', 1905, 'F', 174), +(10218, 'Roxie', 1905, 'F', 174), +(10219, 'Tillie', 1905, 'F', 172), +(10220, 'Angelina', 1905, 'F', 171), +(10221, 'Delia', 1905, 'F', 171), +(10222, 'Elma', 1905, 'F', 171), +(10223, 'Lorene', 1905, 'F', 171), +(10224, 'Gracie', 1905, 'F', 168), +(10225, 'Leah', 1905, 'F', 168), +(10226, 'Lessie', 1905, 'F', 168), +(10227, 'Ila', 1905, 'F', 166), +(10228, 'Bertie', 1905, 'F', 165), +(10229, 'Cornelia', 1905, 'F', 165), +(10230, 'Lee', 1905, 'F', 165), +(10231, 'Maudie', 1905, 'F', 164), +(10232, 'Constance', 1905, 'F', 163), +(10233, 'Reba', 1905, 'F', 162), +(10234, 'Shirley', 1905, 'F', 162), +(10235, 'Cecile', 1905, 'F', 161), +(10236, 'Zelma', 1905, 'F', 161), +(10237, 'Hester', 1905, 'F', 160), +(10238, 'Lenora', 1905, 'F', 160), +(10239, 'Angeline', 1905, 'F', 154), +(10240, 'Janet', 1905, 'F', 154), +(10241, 'Leila', 1905, 'F', 154), +(10242, 'Olivia', 1905, 'F', 153), +(10243, 'Rosalie', 1905, 'F', 152), +(10244, 'Eloise', 1905, 'F', 151), +(10245, 'Francis', 1905, 'F', 149), +(10246, 'Lorraine', 1905, 'F', 149), +(10247, 'Angela', 1905, 'F', 148), +(10248, 'Birdie', 1905, 'F', 148), +(10249, 'June', 1905, 'F', 148), +(10250, 'Helene', 1905, 'F', 146), +(10251, 'Lorena', 1905, 'F', 145), +(10252, 'Rhoda', 1905, 'F', 145), +(10253, 'Lou', 1905, 'F', 143), +(10254, 'Dolores', 1905, 'F', 142), +(10255, 'Dovie', 1905, 'F', 141), +(10256, 'Neva', 1905, 'F', 141), +(10257, 'Corinne', 1905, 'F', 139), +(10258, 'Lelia', 1905, 'F', 139), +(10259, 'Elvira', 1905, 'F', 138), +(10260, 'Mayme', 1905, 'F', 136), +(10261, 'Pearlie', 1905, 'F', 136), +(10262, 'Catharine', 1905, 'F', 135), +(10263, 'Maxine', 1905, 'F', 135), +(10264, 'Lily', 1905, 'F', 134), +(10265, 'Oma', 1905, 'F', 133), +(10266, 'Rosetta', 1905, 'F', 133), +(10267, 'Dessie', 1905, 'F', 131), +(10268, 'Adelaide', 1905, 'F', 130), +(10269, 'Hallie', 1905, 'F', 130), +(10270, 'Lilly', 1905, 'F', 130), +(10271, 'Bettie', 1905, 'F', 128), +(10272, 'Frankie', 1905, 'F', 128), +(10273, 'Nola', 1905, 'F', 127), +(10274, 'Lulu', 1905, 'F', 126), +(10275, 'Myra', 1905, 'F', 126), +(10276, 'Ophelia', 1905, 'F', 125), +(10277, 'Wanda', 1905, 'F', 125), +(10278, 'Eileen', 1905, 'F', 124), +(10279, 'Annette', 1905, 'F', 123), +(10280, 'Ernestine', 1905, 'F', 123), +(10281, 'Claudia', 1905, 'F', 122), +(10282, 'Jeanne', 1905, 'F', 122), +(10283, 'Katharine', 1905, 'F', 121), +(10284, 'Patricia', 1905, 'F', 121), +(10285, 'Christina', 1905, 'F', 118), +(10286, 'Cecil', 1905, 'F', 117), +(10287, 'Edythe', 1905, 'F', 117), +(10288, 'Erna', 1905, 'F', 117), +(10289, 'Eugenia', 1905, 'F', 116), +(10290, 'Harriett', 1905, 'F', 116), +(10291, 'Gertie', 1905, 'F', 115), +(10292, 'Clarice', 1905, 'F', 114), +(10293, 'Linnie', 1905, 'F', 114), +(10294, 'Lenore', 1905, 'F', 113), +(10295, 'Odessa', 1905, 'F', 113), +(10296, 'Billie', 1905, 'F', 112), +(10297, 'Wilhelmina', 1905, 'F', 112), +(10298, 'Aline', 1905, 'F', 110), +(10299, 'Merle', 1905, 'F', 110), +(10300, 'Zella', 1905, 'F', 110), +(10301, 'Corine', 1905, 'F', 107), +(10302, 'Lucinda', 1905, 'F', 107), +(10303, 'Helena', 1905, 'F', 106), +(10304, 'Jimmie', 1905, 'F', 106), +(10305, 'Linda', 1905, 'F', 106), +(10306, 'Peggy', 1905, 'F', 106), +(10307, 'Isabella', 1905, 'F', 105), +(10308, 'Joan', 1905, 'F', 105), +(10309, 'Nona', 1905, 'F', 105), +(10310, 'Vesta', 1905, 'F', 103), +(10311, 'Dolly', 1905, 'F', 102), +(10312, 'Johanna', 1905, 'F', 102), +(10313, 'Leone', 1905, 'F', 102), +(10314, 'Melba', 1905, 'F', 102), +(10315, 'Cassie', 1905, 'F', 101), +(10316, 'Iris', 1905, 'F', 100), +(10317, 'Isabell', 1905, 'F', 100), +(10318, 'Jannie', 1905, 'F', 100), +(10319, 'John', 1905, 'M', 8060), +(10320, 'William', 1905, 'M', 6496), +(10321, 'James', 1905, 'M', 6042), +(10322, 'George', 1905, 'M', 4256), +(10323, 'Charles', 1905, 'M', 3608), +(10324, 'Robert', 1905, 'M', 3410), +(10325, 'Joseph', 1905, 'M', 3302), +(10326, 'Frank', 1905, 'M', 2837), +(10327, 'Edward', 1905, 'M', 2366), +(10328, 'Thomas', 1905, 'M', 2135), +(10329, 'Henry', 1905, 'M', 2126), +(10330, 'Walter', 1905, 'M', 1902), +(10331, 'Willie', 1905, 'M', 1782), +(10332, 'Harry', 1905, 'M', 1619), +(10333, 'Albert', 1905, 'M', 1532), +(10334, 'Arthur', 1905, 'M', 1505), +(10335, 'Clarence', 1905, 'M', 1377), +(10336, 'Fred', 1905, 'M', 1284), +(10337, 'Paul', 1905, 'M', 1262), +(10338, 'Harold', 1905, 'M', 1258), +(10339, 'Raymond', 1905, 'M', 1159), +(10340, 'Richard', 1905, 'M', 1034), +(10341, 'Joe', 1905, 'M', 1024), +(10342, 'Roy', 1905, 'M', 1017), +(10343, 'Louis', 1905, 'M', 981), +(10344, 'Carl', 1905, 'M', 959), +(10345, 'Ralph', 1905, 'M', 938), +(10346, 'Jack', 1905, 'M', 907), +(10347, 'Earl', 1905, 'M', 904), +(10348, 'Samuel', 1905, 'M', 856), +(10349, 'Ernest', 1905, 'M', 845), +(10350, 'David', 1905, 'M', 838), +(10351, 'Theodore', 1905, 'M', 834), +(10352, 'Charlie', 1905, 'M', 801), +(10353, 'Howard', 1905, 'M', 735), +(10354, 'Francis', 1905, 'M', 685), +(10355, 'Herbert', 1905, 'M', 681), +(10356, 'Lawrence', 1905, 'M', 670), +(10357, 'Andrew', 1905, 'M', 620), +(10358, 'Sam', 1905, 'M', 620), +(10359, 'Elmer', 1905, 'M', 602), +(10360, 'Eugene', 1905, 'M', 593), +(10361, 'Alfred', 1905, 'M', 591), +(10362, 'Floyd', 1905, 'M', 523), +(10363, 'Michael', 1905, 'M', 514), +(10364, 'Leo', 1905, 'M', 512), +(10365, 'Leonard', 1905, 'M', 495), +(10366, 'Anthony', 1905, 'M', 490), +(10367, 'Lee', 1905, 'M', 486), +(10368, 'Daniel', 1905, 'M', 484), +(10369, 'Herman', 1905, 'M', 475), +(10370, 'Clyde', 1905, 'M', 474), +(10371, 'Kenneth', 1905, 'M', 474), +(10372, 'Jesse', 1905, 'M', 443), +(10373, 'Leroy', 1905, 'M', 441), +(10374, 'Oscar', 1905, 'M', 436), +(10375, 'Lester', 1905, 'M', 432), +(10376, 'Russell', 1905, 'M', 432), +(10377, 'Donald', 1905, 'M', 426), +(10378, 'Ray', 1905, 'M', 424), +(10379, 'Clifford', 1905, 'M', 420), +(10380, 'Peter', 1905, 'M', 409), +(10381, 'Claude', 1905, 'M', 399), +(10382, 'Chester', 1905, 'M', 388), +(10383, 'Lewis', 1905, 'M', 384), +(10384, 'Stanley', 1905, 'M', 384), +(10385, 'Frederick', 1905, 'M', 381), +(10386, 'Benjamin', 1905, 'M', 379), +(10387, 'Lloyd', 1905, 'M', 369), +(10388, 'Edwin', 1905, 'M', 357), +(10389, 'Norman', 1905, 'M', 350), +(10390, 'Cecil', 1905, 'M', 347), +(10391, 'Eddie', 1905, 'M', 346), +(10392, 'Jessie', 1905, 'M', 338), +(10393, 'Martin', 1905, 'M', 332), +(10394, 'Homer', 1905, 'M', 318), +(10395, 'Tom', 1905, 'M', 317), +(10396, 'Edgar', 1905, 'M', 315), +(10397, 'Luther', 1905, 'M', 308), +(10398, 'Milton', 1905, 'M', 299), +(10399, 'Johnnie', 1905, 'M', 297), +(10400, 'Bernard', 1905, 'M', 292), +(10401, 'Melvin', 1905, 'M', 291), +(10402, 'Ben', 1905, 'M', 290), +(10403, 'Harvey', 1905, 'M', 286), +(10404, 'Will', 1905, 'M', 286), +(10405, 'Leon', 1905, 'M', 274), +(10406, 'Allen', 1905, 'M', 272), +(10407, 'Everett', 1905, 'M', 270), +(10408, 'Victor', 1905, 'M', 268), +(10409, 'Roosevelt', 1905, 'M', 264), +(10410, 'Alvin', 1905, 'M', 258), +(10411, 'Stephen', 1905, 'M', 246), +(10412, 'Leslie', 1905, 'M', 237), +(10413, 'Jim', 1905, 'M', 236), +(10414, 'Philip', 1905, 'M', 234), +(10415, 'Virgil', 1905, 'M', 226), +(10416, 'Jacob', 1905, 'M', 220), +(10417, 'Otis', 1905, 'M', 216), +(10418, 'Marvin', 1905, 'M', 215), +(10419, 'Horace', 1905, 'M', 212), +(10420, 'Oliver', 1905, 'M', 211), +(10421, 'Alexander', 1905, 'M', 210), +(10422, 'Vernon', 1905, 'M', 209), +(10423, 'Guy', 1905, 'M', 203), +(10424, 'Maurice', 1905, 'M', 202), +(10425, 'Hugh', 1905, 'M', 200), +(10426, 'Jose', 1905, 'M', 200), +(10427, 'Sidney', 1905, 'M', 196), +(10428, 'Patrick', 1905, 'M', 193), +(10429, 'Ed', 1905, 'M', 190), +(10430, 'Julius', 1905, 'M', 190), +(10431, 'Gerald', 1905, 'M', 189), +(10432, 'Glenn', 1905, 'M', 189), +(10433, 'Morris', 1905, 'M', 188), +(10434, 'Archie', 1905, 'M', 184), +(10435, 'Gilbert', 1905, 'M', 183), +(10436, 'Curtis', 1905, 'M', 182), +(10437, 'Willard', 1905, 'M', 180), +(10438, 'Lonnie', 1905, 'M', 179), +(10439, 'Jerry', 1905, 'M', 177), +(10440, 'Vincent', 1905, 'M', 176), +(10441, 'Wesley', 1905, 'M', 174), +(10442, 'Earnest', 1905, 'M', 172), +(10443, 'Otto', 1905, 'M', 172), +(10444, 'Warren', 1905, 'M', 172), +(10445, 'Marion', 1905, 'M', 170), +(10446, 'Ira', 1905, 'M', 169), +(10447, 'Percy', 1905, 'M', 169), +(10448, 'Charley', 1905, 'M', 168), +(10449, 'Nathan', 1905, 'M', 168), +(10450, 'Wilbur', 1905, 'M', 167), +(10451, 'Alex', 1905, 'M', 166), +(10452, 'Gordon', 1905, 'M', 165), +(10453, 'Alton', 1905, 'M', 164), +(10454, 'Hubert', 1905, 'M', 163), +(10455, 'Wallace', 1905, 'M', 162), +(10456, 'Manuel', 1905, 'M', 157), +(10457, 'Rufus', 1905, 'M', 157), +(10458, 'Dan', 1905, 'M', 153), +(10459, 'Mack', 1905, 'M', 151), +(10460, 'Irving', 1905, 'M', 149), +(10461, 'Johnie', 1905, 'M', 148), +(10462, 'Bill', 1905, 'M', 147), +(10463, 'Isaac', 1905, 'M', 147), +(10464, 'Arnold', 1905, 'M', 144), +(10465, 'Roland', 1905, 'M', 143), +(10466, 'Calvin', 1905, 'M', 141), +(10467, 'Max', 1905, 'M', 140), +(10468, 'Dave', 1905, 'M', 137), +(10469, 'Bennie', 1905, 'M', 136), +(10470, 'Jimmie', 1905, 'M', 136), +(10471, 'Willis', 1905, 'M', 136), +(10472, 'Bert', 1905, 'M', 134), +(10473, 'Elbert', 1905, 'M', 132), +(10474, 'Rudolph', 1905, 'M', 132), +(10475, 'Emmett', 1905, 'M', 128), +(10476, 'Glen', 1905, 'M', 128), +(10477, 'Phillip', 1905, 'M', 127), +(10478, 'Nelson', 1905, 'M', 126), +(10479, 'Steve', 1905, 'M', 126), +(10480, 'Sylvester', 1905, 'M', 126), +(10481, 'Orville', 1905, 'M', 125), +(10482, 'Emil', 1905, 'M', 122), +(10483, 'Clifton', 1905, 'M', 121), +(10484, 'Marshall', 1905, 'M', 119), +(10485, 'Mike', 1905, 'M', 117), +(10486, 'Nathaniel', 1905, 'M', 117), +(10487, 'Felix', 1905, 'M', 115), +(10488, 'Ted', 1905, 'M', 115), +(10489, 'Abraham', 1905, 'M', 112), +(10490, 'Ervin', 1905, 'M', 112), +(10491, 'Nicholas', 1905, 'M', 112), +(10492, 'Clayton', 1905, 'M', 110), +(10493, 'August', 1905, 'M', 109), +(10494, 'Edmund', 1905, 'M', 108), +(10495, 'Matthew', 1905, 'M', 107), +(10496, 'Wayne', 1905, 'M', 107), +(10497, 'Dennis', 1905, 'M', 106), +(10498, 'Perry', 1905, 'M', 104), +(10499, 'Ellis', 1905, 'M', 103), +(10500, 'Amos', 1905, 'M', 102), +(10501, 'Adam', 1905, 'M', 101), +(10502, 'Mary', 1906, 'F', 16370), +(10503, 'Helen', 1906, 'F', 7176), +(10504, 'Margaret', 1906, 'F', 6096), +(10505, 'Anna', 1906, 'F', 5502), +(10506, 'Ruth', 1906, 'F', 5140), +(10507, 'Dorothy', 1906, 'F', 4326), +(10508, 'Elizabeth', 1906, 'F', 4321), +(10509, 'Alice', 1906, 'F', 4192), +(10510, 'Mildred', 1906, 'F', 3873), +(10511, 'Florence', 1906, 'F', 3691), +(10512, 'Marie', 1906, 'F', 3690), +(10513, 'Ethel', 1906, 'F', 3511), +(10514, 'Lillian', 1906, 'F', 3293), +(10515, 'Frances', 1906, 'F', 3026), +(10516, 'Edna', 1906, 'F', 3011), +(10517, 'Gladys', 1906, 'F', 3000), +(10518, 'Rose', 1906, 'F', 2901), +(10519, 'Annie', 1906, 'F', 2774), +(10520, 'Grace', 1906, 'F', 2626), +(10521, 'Irene', 1906, 'F', 2423), +(10522, 'Bessie', 1906, 'F', 2396), +(10523, 'Gertrude', 1906, 'F', 2375), +(10524, 'Hazel', 1906, 'F', 2315), +(10525, 'Louise', 1906, 'F', 2307), +(10526, 'Bertha', 1906, 'F', 2302), +(10527, 'Catherine', 1906, 'F', 2230), +(10528, 'Clara', 1906, 'F', 2228), +(10529, 'Emma', 1906, 'F', 2224), +(10530, 'Martha', 1906, 'F', 2199), +(10531, 'Edith', 1906, 'F', 2159), +(10532, 'Thelma', 1906, 'F', 2114), +(10533, 'Evelyn', 1906, 'F', 2077), +(10534, 'Esther', 1906, 'F', 2065), +(10535, 'Mabel', 1906, 'F', 2054), +(10536, 'Pearl', 1906, 'F', 2035), +(10537, 'Ruby', 1906, 'F', 1962), +(10538, 'Myrtle', 1906, 'F', 1921), +(10539, 'Josephine', 1906, 'F', 1900), +(10540, 'Minnie', 1906, 'F', 1777), +(10541, 'Elsie', 1906, 'F', 1771), +(10542, 'Agnes', 1906, 'F', 1759), +(10543, 'Eva', 1906, 'F', 1758), +(10544, 'Ida', 1906, 'F', 1753), +(10545, 'Sarah', 1906, 'F', 1697), +(10546, 'Beatrice', 1906, 'F', 1679), +(10547, 'Lucille', 1906, 'F', 1676), +(10548, 'Viola', 1906, 'F', 1675), +(10549, 'Julia', 1906, 'F', 1603), +(10550, 'Nellie', 1906, 'F', 1596), +(10551, 'Lillie', 1906, 'F', 1500), +(10552, 'Virginia', 1906, 'F', 1491), +(10553, 'Laura', 1906, 'F', 1467), +(10554, 'Pauline', 1906, 'F', 1428), +(10555, 'Ella', 1906, 'F', 1343), +(10556, 'Mattie', 1906, 'F', 1325), +(10557, 'Katherine', 1906, 'F', 1277), +(10558, 'Alma', 1906, 'F', 1266), +(10559, 'Jessie', 1906, 'F', 1247), +(10560, 'Willie', 1906, 'F', 1233), +(10561, 'Mae', 1906, 'F', 1225), +(10562, 'Lena', 1906, 'F', 1206), +(10563, 'Carrie', 1906, 'F', 1188), +(10564, 'Marion', 1906, 'F', 1183), +(10565, 'Blanche', 1906, 'F', 1173), +(10566, 'Stella', 1906, 'F', 1141), +(10567, 'Bernice', 1906, 'F', 1107), +(10568, 'Eleanor', 1906, 'F', 1088), +(10569, 'Vera', 1906, 'F', 1083), +(10570, 'Lucy', 1906, 'F', 1077), +(10571, 'Ann', 1906, 'F', 1064), +(10572, 'Hattie', 1906, 'F', 1056), +(10573, 'Leona', 1906, 'F', 1017), +(10574, 'Mamie', 1906, 'F', 1002), +(10575, 'Jennie', 1906, 'F', 986), +(10576, 'Beulah', 1906, 'F', 980), +(10577, 'Fannie', 1906, 'F', 955), +(10578, 'Cora', 1906, 'F', 952), +(10579, 'Kathryn', 1906, 'F', 911), +(10580, 'Lula', 1906, 'F', 911), +(10581, 'Ellen', 1906, 'F', 898), +(10582, 'Betty', 1906, 'F', 865), +(10583, 'Rosa', 1906, 'F', 865), +(10584, 'Doris', 1906, 'F', 856), +(10585, 'Maggie', 1906, 'F', 839), +(10586, 'Anne', 1906, 'F', 835), +(10587, 'Violet', 1906, 'F', 830), +(10588, 'Ada', 1906, 'F', 819), +(10589, 'Lois', 1906, 'F', 799), +(10590, 'Marguerite', 1906, 'F', 791), +(10591, 'Daisy', 1906, 'F', 773), +(10592, 'Dora', 1906, 'F', 761), +(10593, 'Sadie', 1906, 'F', 748), +(10594, 'Marjorie', 1906, 'F', 728), +(10595, 'Velma', 1906, 'F', 721), +(10596, 'Opal', 1906, 'F', 718), +(10597, 'Georgia', 1906, 'F', 706), +(10598, 'Hilda', 1906, 'F', 705), +(10599, 'Susie', 1906, 'F', 693), +(10600, 'Theresa', 1906, 'F', 669), +(10601, 'Jean', 1906, 'F', 666), +(10602, 'Nora', 1906, 'F', 644), +(10603, 'Inez', 1906, 'F', 620), +(10604, 'Charlotte', 1906, 'F', 619), +(10605, 'Emily', 1906, 'F', 619), +(10606, 'Maude', 1906, 'F', 619), +(10607, 'Flora', 1906, 'F', 618), +(10608, 'Sylvia', 1906, 'F', 617), +(10609, 'Lola', 1906, 'F', 616), +(10610, 'Effie', 1906, 'F', 578), +(10611, 'Genevieve', 1906, 'F', 561), +(10612, 'Olive', 1906, 'F', 561), +(10613, 'Della', 1906, 'F', 557), +(10614, 'Nancy', 1906, 'F', 557), +(10615, 'Eunice', 1906, 'F', 554), +(10616, 'Alberta', 1906, 'F', 548), +(10617, 'Nettie', 1906, 'F', 537), +(10618, 'Verna', 1906, 'F', 533), +(10619, 'Lottie', 1906, 'F', 529), +(10620, 'May', 1906, 'F', 524), +(10621, 'Estelle', 1906, 'F', 520), +(10622, 'Loretta', 1906, 'F', 520), +(10623, 'Sallie', 1906, 'F', 520), +(10624, 'Mable', 1906, 'F', 510), +(10625, 'Eula', 1906, 'F', 507), +(10626, 'Katie', 1906, 'F', 498), +(10627, 'Marian', 1906, 'F', 498), +(10628, 'Harriet', 1906, 'F', 497), +(10629, 'Rosie', 1906, 'F', 497), +(10630, 'Vivian', 1906, 'F', 489), +(10631, 'Lucile', 1906, 'F', 485), +(10632, 'Goldie', 1906, 'F', 482), +(10633, 'Lydia', 1906, 'F', 477), +(10634, 'Henrietta', 1906, 'F', 475), +(10635, 'Ollie', 1906, 'F', 458), +(10636, 'Sara', 1906, 'F', 457), +(10637, 'Lizzie', 1906, 'F', 449), +(10638, 'Addie', 1906, 'F', 447), +(10639, 'Lela', 1906, 'F', 447), +(10640, 'Erma', 1906, 'F', 444), +(10641, 'Jane', 1906, 'F', 438), +(10642, 'Madeline', 1906, 'F', 418), +(10643, 'Barbara', 1906, 'F', 413), +(10644, 'Kathleen', 1906, 'F', 412), +(10645, 'Caroline', 1906, 'F', 409), +(10646, 'Essie', 1906, 'F', 409), +(10647, 'Christine', 1906, 'F', 408), +(10648, 'Wilma', 1906, 'F', 408), +(10649, 'Ora', 1906, 'F', 407), +(10650, 'Iva', 1906, 'F', 400), +(10651, 'Rebecca', 1906, 'F', 397), +(10652, 'Geneva', 1906, 'F', 396), +(10653, 'Irma', 1906, 'F', 391), +(10654, 'Maria', 1906, 'F', 389), +(10655, 'Juanita', 1906, 'F', 388), +(10656, 'Etta', 1906, 'F', 384), +(10657, 'Sophie', 1906, 'F', 384), +(10658, 'Naomi', 1906, 'F', 372), +(10659, 'Rachel', 1906, 'F', 366), +(10660, 'Victoria', 1906, 'F', 362), +(10661, 'Amelia', 1906, 'F', 358), +(10662, 'Sally', 1906, 'F', 358), +(10663, 'Mollie', 1906, 'F', 355), +(10664, 'Ola', 1906, 'F', 341), +(10665, 'Nina', 1906, 'F', 340), +(10666, 'Norma', 1906, 'F', 332), +(10667, 'Susan', 1906, 'F', 327), +(10668, 'Nannie', 1906, 'F', 323), +(10669, 'Geraldine', 1906, 'F', 321), +(10670, 'Isabel', 1906, 'F', 317), +(10671, 'Olga', 1906, 'F', 317), +(10672, 'Alta', 1906, 'F', 316), +(10673, 'Flossie', 1906, 'F', 296), +(10674, 'Matilda', 1906, 'F', 295), +(10675, 'Luella', 1906, 'F', 291), +(10676, 'Cecelia', 1906, 'F', 290), +(10677, 'Celia', 1906, 'F', 289), +(10678, 'Freda', 1906, 'F', 287), +(10679, 'Winifred', 1906, 'F', 287), +(10680, 'Audrey', 1906, 'F', 278), +(10681, 'Isabelle', 1906, 'F', 278), +(10682, 'Fern', 1906, 'F', 277), +(10683, 'Leola', 1906, 'F', 273), +(10684, 'Miriam', 1906, 'F', 273), +(10685, 'Estella', 1906, 'F', 271), +(10686, 'Jeanette', 1906, 'F', 269), +(10687, 'Bonnie', 1906, 'F', 268), +(10688, 'Janie', 1906, 'F', 265), +(10689, 'Adeline', 1906, 'F', 264), +(10690, 'Ina', 1906, 'F', 262), +(10691, 'Amanda', 1906, 'F', 260), +(10692, 'Hannah', 1906, 'F', 256), +(10693, 'Jewell', 1906, 'F', 255), +(10694, 'Selma', 1906, 'F', 252), +(10695, 'Sophia', 1906, 'F', 247), +(10696, 'Frieda', 1906, 'F', 244), +(10697, 'Lila', 1906, 'F', 242), +(10698, 'Nell', 1906, 'F', 241), +(10699, 'Amy', 1906, 'F', 240), +(10700, 'Faye', 1906, 'F', 239), +(10701, 'Cleo', 1906, 'F', 238), +(10702, 'Elva', 1906, 'F', 235), +(10703, 'Roberta', 1906, 'F', 233), +(10704, 'Regina', 1906, 'F', 229), +(10705, 'Jewel', 1906, 'F', 227), +(10706, 'Allie', 1906, 'F', 225), +(10707, 'Virgie', 1906, 'F', 224), +(10708, 'Muriel', 1906, 'F', 221), +(10709, 'Cecilia', 1906, 'F', 219), +(10710, 'Jeannette', 1906, 'F', 216), +(10711, 'Veronica', 1906, 'F', 216), +(10712, 'Anita', 1906, 'F', 215), +(10713, 'Fay', 1906, 'F', 215), +(10714, 'Claire', 1906, 'F', 213), +(10715, 'Millie', 1906, 'F', 213), +(10716, 'Winnie', 1906, 'F', 211), +(10717, 'Antoinette', 1906, 'F', 210), +(10718, 'Eliza', 1906, 'F', 209), +(10719, 'Callie', 1906, 'F', 208), +(10720, 'Rita', 1906, 'F', 203), +(10721, 'Adele', 1906, 'F', 199), +(10722, 'Johnnie', 1906, 'F', 199), +(10723, 'Teresa', 1906, 'F', 198), +(10724, 'Kate', 1906, 'F', 196), +(10725, 'Lorene', 1906, 'F', 195), +(10726, 'Phyllis', 1906, 'F', 195), +(10727, 'Margie', 1906, 'F', 194), +(10728, 'Elma', 1906, 'F', 193), +(10729, 'Josie', 1906, 'F', 193), +(10730, 'Belle', 1906, 'F', 191), +(10731, 'Angelina', 1906, 'F', 189), +(10732, 'Gussie', 1906, 'F', 188), +(10733, 'Rena', 1906, 'F', 188), +(10734, 'Zelma', 1906, 'F', 188), +(10735, 'Shirley', 1906, 'F', 187), +(10736, 'Carolyn', 1906, 'F', 184), +(10737, 'Dollie', 1906, 'F', 184), +(10738, 'Dolores', 1906, 'F', 183), +(10739, 'Marcella', 1906, 'F', 182), +(10740, 'Augusta', 1906, 'F', 181), +(10741, 'Maud', 1906, 'F', 181), +(10742, 'Olivia', 1906, 'F', 181), +(10743, 'Dorothea', 1906, 'F', 178), +(10744, 'Sue', 1906, 'F', 178), +(10745, 'Eloise', 1906, 'F', 176), +(10746, 'Lenora', 1906, 'F', 176), +(10747, 'Lora', 1906, 'F', 175), +(10748, 'Maxine', 1906, 'F', 173), +(10749, 'Wanda', 1906, 'F', 173), +(10750, 'Angeline', 1906, 'F', 170), +(10751, 'Letha', 1906, 'F', 169), +(10752, 'Madge', 1906, 'F', 169), +(10753, 'Elnora', 1906, 'F', 168), +(10754, 'Constance', 1906, 'F', 167), +(10755, 'Roxie', 1906, 'F', 165), +(10756, 'Leah', 1906, 'F', 164), +(10757, 'Rosalie', 1906, 'F', 164), +(10758, 'Cecile', 1906, 'F', 163), +(10759, 'Eileen', 1906, 'F', 161), +(10760, 'Tillie', 1906, 'F', 161), +(10761, 'Leila', 1906, 'F', 160), +(10762, 'Lorraine', 1906, 'F', 159), +(10763, 'Hester', 1906, 'F', 158), +(10764, 'Patricia', 1906, 'F', 158), +(10765, 'Lessie', 1906, 'F', 155), +(10766, 'Maudie', 1906, 'F', 155), +(10767, 'Adelaide', 1906, 'F', 154), +(10768, 'Cornelia', 1906, 'F', 153), +(10769, 'Gracie', 1906, 'F', 153), +(10770, 'June', 1906, 'F', 153), +(10771, 'Bertie', 1906, 'F', 150), +(10772, 'Birdie', 1906, 'F', 150), +(10773, 'Lee', 1906, 'F', 150), +(10774, 'Reba', 1906, 'F', 150), +(10775, 'Helene', 1906, 'F', 149), +(10776, 'Neva', 1906, 'F', 147), +(10777, 'Edythe', 1906, 'F', 146), +(10778, 'Ila', 1906, 'F', 146), +(10779, 'Claudia', 1906, 'F', 142), +(10780, 'Lorena', 1906, 'F', 141), +(10781, 'Peggy', 1906, 'F', 140), +(10782, 'Francis', 1906, 'F', 139), +(10783, 'Janet', 1906, 'F', 139), +(10784, 'Myra', 1906, 'F', 139), +(10785, 'Lilly', 1906, 'F', 137), +(10786, 'Clarice', 1906, 'F', 136), +(10787, 'Carmen', 1906, 'F', 135), +(10788, 'Harriett', 1906, 'F', 134), +(10789, 'Katharine', 1906, 'F', 133), +(10790, 'Hallie', 1906, 'F', 132), +(10791, 'Odessa', 1906, 'F', 132), +(10792, 'Rhoda', 1906, 'F', 132), +(10793, 'Billie', 1906, 'F', 127), +(10794, 'Annette', 1906, 'F', 126), +(10795, 'Corinne', 1906, 'F', 125), +(10796, 'Delia', 1906, 'F', 125), +(10797, 'Dovie', 1906, 'F', 125), +(10798, 'Mayme', 1906, 'F', 125), +(10799, 'Nola', 1906, 'F', 125), +(10800, 'Oma', 1906, 'F', 125), +(10801, 'Lelia', 1906, 'F', 124), +(10802, 'Angela', 1906, 'F', 123), +(10803, 'Elvira', 1906, 'F', 123), +(10804, 'Iris', 1906, 'F', 123), +(10805, 'Dessie', 1906, 'F', 121), +(10806, 'Christina', 1906, 'F', 120), +(10807, 'Ernestine', 1906, 'F', 120), +(10808, 'Ophelia', 1906, 'F', 120), +(10809, 'Erna', 1906, 'F', 119), +(10810, 'Jeanne', 1906, 'F', 119), +(10811, 'Pearlie', 1906, 'F', 118), +(10812, 'Rosetta', 1906, 'F', 118), +(10813, 'Lenore', 1906, 'F', 117), +(10814, 'Aline', 1906, 'F', 115), +(10815, 'Lulu', 1906, 'F', 115), +(10816, 'Catharine', 1906, 'F', 114), +(10817, 'Eugenia', 1906, 'F', 111), +(10818, 'Bettie', 1906, 'F', 110), +(10819, 'Frankie', 1906, 'F', 110), +(10820, 'Gertie', 1906, 'F', 110), +(10821, 'Isabella', 1906, 'F', 110), +(10822, 'Cecil', 1906, 'F', 109), +(10823, 'Wilhelmina', 1906, 'F', 109), +(10824, 'Johanna', 1906, 'F', 108), +(10825, 'Zella', 1906, 'F', 108), +(10826, 'Arlene', 1906, 'F', 107), +(10827, 'Priscilla', 1906, 'F', 107), +(10828, 'Vesta', 1906, 'F', 107), +(10829, 'Lucinda', 1906, 'F', 106), +(10830, 'Rosella', 1906, 'F', 106), +(10831, 'Lettie', 1906, 'F', 105), +(10832, 'Mathilda', 1906, 'F', 102), +(10833, 'Bess', 1906, 'F', 101), +(10834, 'Corine', 1906, 'F', 101), +(10835, 'Lou', 1906, 'F', 100), +(10836, 'Maurine', 1906, 'F', 100), +(10837, 'John', 1906, 'M', 8264), +(10838, 'William', 1906, 'M', 6567), +(10839, 'James', 1906, 'M', 5908), +(10840, 'George', 1906, 'M', 4201), +(10841, 'Robert', 1906, 'M', 3635), +(10842, 'Charles', 1906, 'M', 3607), +(10843, 'Joseph', 1906, 'M', 3527), +(10844, 'Frank', 1906, 'M', 2798), +(10845, 'Edward', 1906, 'M', 2398), +(10846, 'Thomas', 1906, 'M', 2176), +(10847, 'Henry', 1906, 'M', 2112), +(10848, 'Walter', 1906, 'M', 1934), +(10849, 'Willie', 1906, 'M', 1756), +(10850, 'Harry', 1906, 'M', 1631), +(10851, 'Arthur', 1906, 'M', 1486), +(10852, 'Albert', 1906, 'M', 1469), +(10853, 'Harold', 1906, 'M', 1330), +(10854, 'Clarence', 1906, 'M', 1319), +(10855, 'Paul', 1906, 'M', 1309), +(10856, 'Fred', 1906, 'M', 1193), +(10857, 'Raymond', 1906, 'M', 1133), +(10858, 'Louis', 1906, 'M', 1101), +(10859, 'Richard', 1906, 'M', 1084), +(10860, 'Roy', 1906, 'M', 1024), +(10861, 'Joe', 1906, 'M', 1020), +(10862, 'Ralph', 1906, 'M', 984), +(10863, 'Carl', 1906, 'M', 951), +(10864, 'Ernest', 1906, 'M', 943), +(10865, 'Earl', 1906, 'M', 912), +(10866, 'Jack', 1906, 'M', 880), +(10867, 'David', 1906, 'M', 878), +(10868, 'Howard', 1906, 'M', 803), +(10869, 'Samuel', 1906, 'M', 783), +(10870, 'Charlie', 1906, 'M', 744), +(10871, 'Francis', 1906, 'M', 737), +(10872, 'Lawrence', 1906, 'M', 717), +(10873, 'Herbert', 1906, 'M', 689), +(10874, 'Theodore', 1906, 'M', 688), +(10875, 'Eugene', 1906, 'M', 637), +(10876, 'Alfred', 1906, 'M', 632), +(10877, 'Andrew', 1906, 'M', 611), +(10878, 'Elmer', 1906, 'M', 598), +(10879, 'Sam', 1906, 'M', 552), +(10880, 'Anthony', 1906, 'M', 542), +(10881, 'Kenneth', 1906, 'M', 534), +(10882, 'Michael', 1906, 'M', 531), +(10883, 'Leo', 1906, 'M', 508), +(10884, 'Daniel', 1906, 'M', 506), +(10885, 'Herman', 1906, 'M', 502), +(10886, 'Leonard', 1906, 'M', 492), +(10887, 'Donald', 1906, 'M', 486), +(10888, 'Lester', 1906, 'M', 482), +(10889, 'Russell', 1906, 'M', 459), +(10890, 'Floyd', 1906, 'M', 458), +(10891, 'Clyde', 1906, 'M', 457), +(10892, 'Stanley', 1906, 'M', 455), +(10893, 'Jesse', 1906, 'M', 436), +(10894, 'Lee', 1906, 'M', 436), +(10895, 'Peter', 1906, 'M', 427), +(10896, 'Ray', 1906, 'M', 421), +(10897, 'Chester', 1906, 'M', 420), +(10898, 'Leroy', 1906, 'M', 420), +(10899, 'Clifford', 1906, 'M', 413), +(10900, 'Oscar', 1906, 'M', 412), +(10901, 'Edwin', 1906, 'M', 390), +(10902, 'Eddie', 1906, 'M', 377), +(10903, 'Frederick', 1906, 'M', 377), +(10904, 'Cecil', 1906, 'M', 368), +(10905, 'Lewis', 1906, 'M', 365), +(10906, 'Lloyd', 1906, 'M', 357), +(10907, 'Benjamin', 1906, 'M', 352), +(10908, 'Harvey', 1906, 'M', 351), +(10909, 'Claude', 1906, 'M', 346), +(10910, 'Bernard', 1906, 'M', 343), +(10911, 'Martin', 1906, 'M', 334), +(10912, 'Norman', 1906, 'M', 324), +(10913, 'Jessie', 1906, 'M', 323), +(10914, 'Milton', 1906, 'M', 303), +(10915, 'Edgar', 1906, 'M', 301), +(10916, 'Tom', 1906, 'M', 298), +(10917, 'Everett', 1906, 'M', 291), +(10918, 'Ben', 1906, 'M', 285), +(10919, 'Melvin', 1906, 'M', 285), +(10920, 'Allen', 1906, 'M', 282), +(10921, 'Philip', 1906, 'M', 280), +(10922, 'Homer', 1906, 'M', 267), +(10923, 'Leon', 1906, 'M', 263), +(10924, 'Leslie', 1906, 'M', 263), +(10925, 'Luther', 1906, 'M', 262), +(10926, 'Jim', 1906, 'M', 261), +(10927, 'Johnnie', 1906, 'M', 255), +(10928, 'Will', 1906, 'M', 253), +(10929, 'Victor', 1906, 'M', 249), +(10930, 'Marvin', 1906, 'M', 245), +(10931, 'Alvin', 1906, 'M', 239), +(10932, 'Morris', 1906, 'M', 226), +(10933, 'Vernon', 1906, 'M', 223), +(10934, 'Glenn', 1906, 'M', 217), +(10935, 'Archie', 1906, 'M', 216), +(10936, 'Patrick', 1906, 'M', 213), +(10937, 'Sidney', 1906, 'M', 209), +(10938, 'Stephen', 1906, 'M', 207), +(10939, 'Virgil', 1906, 'M', 207), +(10940, 'Alexander', 1906, 'M', 204), +(10941, 'Manuel', 1906, 'M', 204), +(10942, 'Horace', 1906, 'M', 202), +(10943, 'Gilbert', 1906, 'M', 199), +(10944, 'Roosevelt', 1906, 'M', 198), +(10945, 'Maurice', 1906, 'M', 197), +(10946, 'Hugh', 1906, 'M', 195), +(10947, 'Vincent', 1906, 'M', 193), +(10948, 'Gerald', 1906, 'M', 191), +(10949, 'Julius', 1906, 'M', 190), +(10950, 'Jacob', 1906, 'M', 187), +(10951, 'Gordon', 1906, 'M', 184), +(10952, 'Otis', 1906, 'M', 184), +(10953, 'Earnest', 1906, 'M', 183), +(10954, 'Oliver', 1906, 'M', 183), +(10955, 'Marion', 1906, 'M', 181), +(10956, 'Willard', 1906, 'M', 178), +(10957, 'Curtis', 1906, 'M', 177), +(10958, 'Alex', 1906, 'M', 176), +(10959, 'Wilbur', 1906, 'M', 175), +(10960, 'Otto', 1906, 'M', 173), +(10961, 'Irving', 1906, 'M', 170), +(10962, 'Guy', 1906, 'M', 168), +(10963, 'Arnold', 1906, 'M', 164), +(10964, 'Isaac', 1906, 'M', 163), +(10965, 'Hubert', 1906, 'M', 162), +(10966, 'Wallace', 1906, 'M', 162), +(10967, 'Charley', 1906, 'M', 157), +(10968, 'Lonnie', 1906, 'M', 156), +(10969, 'Max', 1906, 'M', 156), +(10970, 'Rufus', 1906, 'M', 156), +(10971, 'Jose', 1906, 'M', 155), +(10972, 'Wesley', 1906, 'M', 155), +(10973, 'Ira', 1906, 'M', 151), +(10974, 'Ed', 1906, 'M', 149), +(10975, 'Nathan', 1906, 'M', 148), +(10976, 'Orville', 1906, 'M', 148), +(10977, 'Willis', 1906, 'M', 148), +(10978, 'Jerry', 1906, 'M', 146), +(10979, 'Nicholas', 1906, 'M', 144), +(10980, 'Warren', 1906, 'M', 144), +(10981, 'Johnie', 1906, 'M', 141), +(10982, 'Mike', 1906, 'M', 141), +(10983, 'Percy', 1906, 'M', 141), +(10984, 'Emil', 1906, 'M', 139), +(10985, 'Jimmie', 1906, 'M', 139), +(10986, 'Matthew', 1906, 'M', 137), +(10987, 'Bennie', 1906, 'M', 133), +(10988, 'Mack', 1906, 'M', 132), +(10989, 'Steve', 1906, 'M', 131), +(10990, 'Bill', 1906, 'M', 128), +(10991, 'Dan', 1906, 'M', 128), +(10992, 'Franklin', 1906, 'M', 125), +(10993, 'Roland', 1906, 'M', 125), +(10994, 'Rudolph', 1906, 'M', 125), +(10995, 'Sylvester', 1906, 'M', 125), +(10996, 'Calvin', 1906, 'M', 123), +(10997, 'Abraham', 1906, 'M', 122), +(10998, 'Edmund', 1906, 'M', 122), +(10999, 'Phillip', 1906, 'M', 122), +(11000, 'August', 1906, 'M', 120); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(11001, 'Glen', 1906, 'M', 120), +(11002, 'Amos', 1906, 'M', 118), +(11003, 'Wayne', 1906, 'M', 116), +(11004, 'Felix', 1906, 'M', 112), +(11005, 'Karl', 1906, 'M', 108), +(11006, 'Marshall', 1906, 'M', 107), +(11007, 'Alton', 1906, 'M', 106), +(11008, 'Bert', 1906, 'M', 106), +(11009, 'Adam', 1906, 'M', 105), +(11010, 'Clifton', 1906, 'M', 105), +(11011, 'Jerome', 1906, 'M', 102), +(11012, 'Julian', 1906, 'M', 102), +(11013, 'Ellis', 1906, 'M', 101), +(11014, 'Ervin', 1906, 'M', 101), +(11015, 'Nathaniel', 1906, 'M', 101), +(11016, 'Clayton', 1906, 'M', 100), +(11017, 'Clinton', 1906, 'M', 100), +(11018, 'Nelson', 1906, 'M', 100), +(11019, 'Mary', 1907, 'F', 17580), +(11020, 'Helen', 1907, 'F', 7579), +(11021, 'Margaret', 1907, 'F', 6713), +(11022, 'Anna', 1907, 'F', 5575), +(11023, 'Ruth', 1907, 'F', 5573), +(11024, 'Dorothy', 1907, 'F', 4967), +(11025, 'Elizabeth', 1907, 'F', 4624), +(11026, 'Mildred', 1907, 'F', 4277), +(11027, 'Alice', 1907, 'F', 4107), +(11028, 'Marie', 1907, 'F', 3879), +(11029, 'Florence', 1907, 'F', 3750), +(11030, 'Ethel', 1907, 'F', 3698), +(11031, 'Lillian', 1907, 'F', 3542), +(11032, 'Gladys', 1907, 'F', 3303), +(11033, 'Edna', 1907, 'F', 3301), +(11034, 'Frances', 1907, 'F', 3299), +(11035, 'Rose', 1907, 'F', 3116), +(11036, 'Evelyn', 1907, 'F', 3035), +(11037, 'Annie', 1907, 'F', 2891), +(11038, 'Grace', 1907, 'F', 2747), +(11039, 'Louise', 1907, 'F', 2619), +(11040, 'Irene', 1907, 'F', 2617), +(11041, 'Hazel', 1907, 'F', 2530), +(11042, 'Gertrude', 1907, 'F', 2499), +(11043, 'Catherine', 1907, 'F', 2457), +(11044, 'Bertha', 1907, 'F', 2363), +(11045, 'Emma', 1907, 'F', 2356), +(11046, 'Thelma', 1907, 'F', 2339), +(11047, 'Clara', 1907, 'F', 2319), +(11048, 'Bessie', 1907, 'F', 2311), +(11049, 'Martha', 1907, 'F', 2274), +(11050, 'Edith', 1907, 'F', 2177), +(11051, 'Josephine', 1907, 'F', 2156), +(11052, 'Ruby', 1907, 'F', 2113), +(11053, 'Pearl', 1907, 'F', 2108), +(11054, 'Mabel', 1907, 'F', 2069), +(11055, 'Esther', 1907, 'F', 2062), +(11056, 'Ida', 1907, 'F', 1980), +(11057, 'Myrtle', 1907, 'F', 1929), +(11058, 'Minnie', 1907, 'F', 1907), +(11059, 'Virginia', 1907, 'F', 1893), +(11060, 'Eva', 1907, 'F', 1884), +(11061, 'Elsie', 1907, 'F', 1872), +(11062, 'Beatrice', 1907, 'F', 1858), +(11063, 'Lucille', 1907, 'F', 1853), +(11064, 'Agnes', 1907, 'F', 1829), +(11065, 'Viola', 1907, 'F', 1805), +(11066, 'Sarah', 1907, 'F', 1799), +(11067, 'Julia', 1907, 'F', 1680), +(11068, 'Nellie', 1907, 'F', 1671), +(11069, 'Laura', 1907, 'F', 1621), +(11070, 'Pauline', 1907, 'F', 1591), +(11071, 'Lillie', 1907, 'F', 1536), +(11072, 'Ella', 1907, 'F', 1451), +(11073, 'Katherine', 1907, 'F', 1413), +(11074, 'Willie', 1907, 'F', 1394), +(11075, 'Mae', 1907, 'F', 1375), +(11076, 'Alma', 1907, 'F', 1347), +(11077, 'Mattie', 1907, 'F', 1320), +(11078, 'Jessie', 1907, 'F', 1314), +(11079, 'Carrie', 1907, 'F', 1283), +(11080, 'Ann', 1907, 'F', 1264), +(11081, 'Marion', 1907, 'F', 1251), +(11082, 'Lena', 1907, 'F', 1238), +(11083, 'Bernice', 1907, 'F', 1185), +(11084, 'Blanche', 1907, 'F', 1156), +(11085, 'Eleanor', 1907, 'F', 1155), +(11086, 'Lucy', 1907, 'F', 1152), +(11087, 'Vera', 1907, 'F', 1152), +(11088, 'Stella', 1907, 'F', 1150), +(11089, 'Hattie', 1907, 'F', 1142), +(11090, 'Leona', 1907, 'F', 1106), +(11091, 'Beulah', 1907, 'F', 1092), +(11092, 'Fannie', 1907, 'F', 1089), +(11093, 'Mamie', 1907, 'F', 1059), +(11094, 'Doris', 1907, 'F', 1023), +(11095, 'Betty', 1907, 'F', 1018), +(11096, 'Jennie', 1907, 'F', 998), +(11097, 'Anne', 1907, 'F', 980), +(11098, 'Cora', 1907, 'F', 969), +(11099, 'Violet', 1907, 'F', 956), +(11100, 'Rosa', 1907, 'F', 924), +(11101, 'Ada', 1907, 'F', 906), +(11102, 'Lula', 1907, 'F', 905), +(11103, 'Lois', 1907, 'F', 899), +(11104, 'Opal', 1907, 'F', 889), +(11105, 'Marguerite', 1907, 'F', 888), +(11106, 'Kathryn', 1907, 'F', 865), +(11107, 'Ellen', 1907, 'F', 855), +(11108, 'Velma', 1907, 'F', 854), +(11109, 'Maggie', 1907, 'F', 846), +(11110, 'Georgia', 1907, 'F', 787), +(11111, 'Marjorie', 1907, 'F', 787), +(11112, 'Dora', 1907, 'F', 786), +(11113, 'Sadie', 1907, 'F', 771), +(11114, 'Jean', 1907, 'F', 770), +(11115, 'Susie', 1907, 'F', 756), +(11116, 'Daisy', 1907, 'F', 739), +(11117, 'Theresa', 1907, 'F', 734), +(11118, 'Emily', 1907, 'F', 714), +(11119, 'Hilda', 1907, 'F', 702), +(11120, 'Inez', 1907, 'F', 680), +(11121, 'Genevieve', 1907, 'F', 678), +(11122, 'Nora', 1907, 'F', 676), +(11123, 'Charlotte', 1907, 'F', 666), +(11124, 'Lola', 1907, 'F', 639), +(11125, 'Alberta', 1907, 'F', 627), +(11126, 'Flora', 1907, 'F', 617), +(11127, 'Sylvia', 1907, 'F', 611), +(11128, 'Estelle', 1907, 'F', 609), +(11129, 'Eunice', 1907, 'F', 608), +(11130, 'Maude', 1907, 'F', 585), +(11131, 'Della', 1907, 'F', 582), +(11132, 'Nancy', 1907, 'F', 582), +(11133, 'Effie', 1907, 'F', 578), +(11134, 'Vivian', 1907, 'F', 572), +(11135, 'Mable', 1907, 'F', 569), +(11136, 'Olive', 1907, 'F', 568), +(11137, 'Marian', 1907, 'F', 556), +(11138, 'May', 1907, 'F', 544), +(11139, 'Nettie', 1907, 'F', 542), +(11140, 'Katie', 1907, 'F', 539), +(11141, 'Verna', 1907, 'F', 538), +(11142, 'Jane', 1907, 'F', 526), +(11143, 'Wilma', 1907, 'F', 525), +(11144, 'Goldie', 1907, 'F', 520), +(11145, 'Loretta', 1907, 'F', 520), +(11146, 'Eula', 1907, 'F', 517), +(11147, 'Barbara', 1907, 'F', 515), +(11148, 'Lottie', 1907, 'F', 512), +(11149, 'Lydia', 1907, 'F', 512), +(11150, 'Rosie', 1907, 'F', 511), +(11151, 'Lucile', 1907, 'F', 508), +(11152, 'Sara', 1907, 'F', 494), +(11153, 'Sallie', 1907, 'F', 492), +(11154, 'Maria', 1907, 'F', 490), +(11155, 'Essie', 1907, 'F', 486), +(11156, 'Harriet', 1907, 'F', 477), +(11157, 'Addie', 1907, 'F', 471), +(11158, 'Henrietta', 1907, 'F', 470), +(11159, 'Geneva', 1907, 'F', 464), +(11160, 'Lizzie', 1907, 'F', 462), +(11161, 'Ollie', 1907, 'F', 462), +(11162, 'Lela', 1907, 'F', 453), +(11163, 'Christine', 1907, 'F', 452), +(11164, 'Sophie', 1907, 'F', 451), +(11165, 'Madeline', 1907, 'F', 449), +(11166, 'Juanita', 1907, 'F', 443), +(11167, 'Kathleen', 1907, 'F', 440), +(11168, 'Erma', 1907, 'F', 439), +(11169, 'Caroline', 1907, 'F', 437), +(11170, 'Nina', 1907, 'F', 433), +(11171, 'Ora', 1907, 'F', 424), +(11172, 'Rachel', 1907, 'F', 420), +(11173, 'Naomi', 1907, 'F', 410), +(11174, 'Irma', 1907, 'F', 409), +(11175, 'Etta', 1907, 'F', 407), +(11176, 'Iva', 1907, 'F', 401), +(11177, 'Rebecca', 1907, 'F', 400), +(11178, 'Victoria', 1907, 'F', 400), +(11179, 'Flossie', 1907, 'F', 391), +(11180, 'Sally', 1907, 'F', 387), +(11181, 'Amelia', 1907, 'F', 380), +(11182, 'Norma', 1907, 'F', 375), +(11183, 'Mollie', 1907, 'F', 356), +(11184, 'Luella', 1907, 'F', 355), +(11185, 'Susan', 1907, 'F', 355), +(11186, 'Ola', 1907, 'F', 350), +(11187, 'Geraldine', 1907, 'F', 344), +(11188, 'Isabel', 1907, 'F', 326), +(11189, 'Cleo', 1907, 'F', 325), +(11190, 'Audrey', 1907, 'F', 324), +(11191, 'Matilda', 1907, 'F', 322), +(11192, 'Cecelia', 1907, 'F', 321), +(11193, 'Nannie', 1907, 'F', 320), +(11194, 'Alta', 1907, 'F', 319), +(11195, 'Adeline', 1907, 'F', 315), +(11196, 'Celia', 1907, 'F', 314), +(11197, 'Olga', 1907, 'F', 314), +(11198, 'Leola', 1907, 'F', 310), +(11199, 'Estella', 1907, 'F', 309), +(11200, 'Freda', 1907, 'F', 306), +(11201, 'Miriam', 1907, 'F', 301), +(11202, 'Elva', 1907, 'F', 297), +(11203, 'Janie', 1907, 'F', 295), +(11204, 'Jeanette', 1907, 'F', 294), +(11205, 'Isabelle', 1907, 'F', 291), +(11206, 'Roberta', 1907, 'F', 291), +(11207, 'Ina', 1907, 'F', 289), +(11208, 'Amanda', 1907, 'F', 285), +(11209, 'Jewell', 1907, 'F', 284), +(11210, 'Bonnie', 1907, 'F', 279), +(11211, 'Fern', 1907, 'F', 276), +(11212, 'Faye', 1907, 'F', 268), +(11213, 'Frieda', 1907, 'F', 267), +(11214, 'Rita', 1907, 'F', 266), +(11215, 'Allie', 1907, 'F', 265), +(11216, 'Sophia', 1907, 'F', 265), +(11217, 'Winifred', 1907, 'F', 264), +(11218, 'Phyllis', 1907, 'F', 262), +(11219, 'Nell', 1907, 'F', 261), +(11220, 'Fay', 1907, 'F', 257), +(11221, 'Veronica', 1907, 'F', 257), +(11222, 'Antoinette', 1907, 'F', 254), +(11223, 'Virgie', 1907, 'F', 251), +(11224, 'Jewel', 1907, 'F', 250), +(11225, 'Amy', 1907, 'F', 247), +(11226, 'Shirley', 1907, 'F', 247), +(11227, 'Anita', 1907, 'F', 242), +(11228, 'Regina', 1907, 'F', 242), +(11229, 'Dorothea', 1907, 'F', 239), +(11230, 'Hannah', 1907, 'F', 239), +(11231, 'Jeannette', 1907, 'F', 235), +(11232, 'Winnie', 1907, 'F', 235), +(11233, 'Cecilia', 1907, 'F', 234), +(11234, 'Callie', 1907, 'F', 233), +(11235, 'Eliza', 1907, 'F', 232), +(11236, 'Selma', 1907, 'F', 231), +(11237, 'Elma', 1907, 'F', 228), +(11238, 'Margie', 1907, 'F', 228), +(11239, 'Johnnie', 1907, 'F', 227), +(11240, 'Maxine', 1907, 'F', 219), +(11241, 'Muriel', 1907, 'F', 219), +(11242, 'Lila', 1907, 'F', 218), +(11243, 'Tillie', 1907, 'F', 217), +(11244, 'Augusta', 1907, 'F', 213), +(11245, 'Zelma', 1907, 'F', 212), +(11246, 'Rena', 1907, 'F', 209), +(11247, 'Millie', 1907, 'F', 207), +(11248, 'Claire', 1907, 'F', 206), +(11249, 'Marcella', 1907, 'F', 203), +(11250, 'Dollie', 1907, 'F', 202), +(11251, 'Sue', 1907, 'F', 201), +(11252, 'Leah', 1907, 'F', 200), +(11253, 'Wanda', 1907, 'F', 200), +(11254, 'Lorene', 1907, 'F', 199), +(11255, 'Angelina', 1907, 'F', 197), +(11256, 'Janet', 1907, 'F', 197), +(11257, 'Belle', 1907, 'F', 196), +(11258, 'Eloise', 1907, 'F', 196), +(11259, 'Constance', 1907, 'F', 194), +(11260, 'Gussie', 1907, 'F', 194), +(11261, 'June', 1907, 'F', 193), +(11262, 'Dolores', 1907, 'F', 192), +(11263, 'Lee', 1907, 'F', 192), +(11264, 'Lorraine', 1907, 'F', 192), +(11265, 'Adele', 1907, 'F', 191), +(11266, 'Josie', 1907, 'F', 191), +(11267, 'Teresa', 1907, 'F', 191), +(11268, 'Angeline', 1907, 'F', 190), +(11269, 'Bertie', 1907, 'F', 188), +(11270, 'Lessie', 1907, 'F', 186), +(11271, 'Gracie', 1907, 'F', 185), +(11272, 'Carolyn', 1907, 'F', 184), +(11273, 'Kate', 1907, 'F', 184), +(11274, 'Rosalie', 1907, 'F', 184), +(11275, 'Letha', 1907, 'F', 181), +(11276, 'Lorena', 1907, 'F', 178), +(11277, 'Roxie', 1907, 'F', 178), +(11278, 'Patricia', 1907, 'F', 177), +(11279, 'Angela', 1907, 'F', 174), +(11280, 'Leila', 1907, 'F', 171), +(11281, 'Olivia', 1907, 'F', 171), +(11282, 'Cornelia', 1907, 'F', 169), +(11283, 'Iola', 1907, 'F', 169), +(11284, 'Eileen', 1907, 'F', 168), +(11285, 'Reba', 1907, 'F', 167), +(11286, 'Lenora', 1907, 'F', 166), +(11287, 'Madge', 1907, 'F', 166), +(11288, 'Elnora', 1907, 'F', 163), +(11289, 'Delia', 1907, 'F', 162), +(11290, 'Francis', 1907, 'F', 162), +(11291, 'Ila', 1907, 'F', 162), +(11292, 'Maudie', 1907, 'F', 161), +(11293, 'Helene', 1907, 'F', 160), +(11294, 'Hester', 1907, 'F', 159), +(11295, 'Hallie', 1907, 'F', 158), +(11296, 'Bettie', 1907, 'F', 157), +(11297, 'Birdie', 1907, 'F', 157), +(11298, 'Cecile', 1907, 'F', 156), +(11299, 'Jeanne', 1907, 'F', 156), +(11300, 'Elvira', 1907, 'F', 154), +(11301, 'Edythe', 1907, 'F', 153), +(11302, 'Annette', 1907, 'F', 152), +(11303, 'Adelaide', 1907, 'F', 150), +(11304, 'Odessa', 1907, 'F', 147), +(11305, 'Harriett', 1907, 'F', 145), +(11306, 'Lora', 1907, 'F', 145), +(11307, 'Lilly', 1907, 'F', 144), +(11308, 'Claudia', 1907, 'F', 143), +(11309, 'Ernestine', 1907, 'F', 143), +(11310, 'Maud', 1907, 'F', 143), +(11311, 'Myra', 1907, 'F', 142), +(11312, 'Nola', 1907, 'F', 142), +(11313, 'Lelia', 1907, 'F', 141), +(11314, 'Helena', 1907, 'F', 139), +(11315, 'Mayme', 1907, 'F', 139), +(11316, 'Clarice', 1907, 'F', 138), +(11317, 'Rhoda', 1907, 'F', 138), +(11318, 'Neva', 1907, 'F', 137), +(11319, 'Iris', 1907, 'F', 136), +(11320, 'Dessie', 1907, 'F', 134), +(11321, 'Pearlie', 1907, 'F', 134), +(11322, 'Dovie', 1907, 'F', 133), +(11323, 'Ophelia', 1907, 'F', 132), +(11324, 'Oma', 1907, 'F', 129), +(11325, 'Christina', 1907, 'F', 128), +(11326, 'Cecil', 1907, 'F', 127), +(11327, 'Lulu', 1907, 'F', 127), +(11328, 'Isabella', 1907, 'F', 126), +(11329, 'Carmen', 1907, 'F', 125), +(11330, 'Gertie', 1907, 'F', 124), +(11331, 'Lou', 1907, 'F', 124), +(11332, 'Rosetta', 1907, 'F', 124), +(11333, 'Zella', 1907, 'F', 123), +(11334, 'Katharine', 1907, 'F', 122), +(11335, 'Corinne', 1907, 'F', 119), +(11336, 'Pansy', 1907, 'F', 119), +(11337, 'Billie', 1907, 'F', 118), +(11338, 'Catharine', 1907, 'F', 118), +(11339, 'Priscilla', 1907, 'F', 117), +(11340, 'Johanna', 1907, 'F', 116), +(11341, 'Peggy', 1907, 'F', 115), +(11342, 'Carmela', 1907, 'F', 113), +(11343, 'Corine', 1907, 'F', 113), +(11344, 'Jannie', 1907, 'F', 113), +(11345, 'Melba', 1907, 'F', 113), +(11346, 'Molly', 1907, 'F', 113), +(11347, 'Carol', 1907, 'F', 112), +(11348, 'Merle', 1907, 'F', 112), +(11349, 'Rosella', 1907, 'F', 112), +(11350, 'Wilhelmina', 1907, 'F', 112), +(11351, 'Aline', 1907, 'F', 110), +(11352, 'Eugenia', 1907, 'F', 110), +(11353, 'Jimmie', 1907, 'F', 109), +(11354, 'Joan', 1907, 'F', 109), +(11355, 'Lettie', 1907, 'F', 108), +(11356, 'Louisa', 1907, 'F', 106), +(11357, 'Willa', 1907, 'F', 106), +(11358, 'Ione', 1907, 'F', 105), +(11359, 'Lucinda', 1907, 'F', 105), +(11360, 'Lily', 1907, 'F', 104), +(11361, 'Bess', 1907, 'F', 103), +(11362, 'Blanch', 1907, 'F', 103), +(11363, 'Connie', 1907, 'F', 103), +(11364, 'Dolly', 1907, 'F', 103), +(11365, 'Elaine', 1907, 'F', 103), +(11366, 'Fanny', 1907, 'F', 103), +(11367, 'Vesta', 1907, 'F', 103), +(11368, 'Linda', 1907, 'F', 102), +(11369, 'Arlene', 1907, 'F', 101), +(11370, 'Nona', 1907, 'F', 101), +(11371, 'Yvonne', 1907, 'F', 101), +(11372, 'Donna', 1907, 'F', 100), +(11373, 'Elinor', 1907, 'F', 100), +(11374, 'Gwendolyn', 1907, 'F', 100), +(11375, 'Lona', 1907, 'F', 100), +(11376, 'John', 1907, 'M', 8983), +(11377, 'William', 1907, 'M', 6905), +(11378, 'James', 1907, 'M', 6707), +(11379, 'George', 1907, 'M', 4445), +(11380, 'Robert', 1907, 'M', 4020), +(11381, 'Charles', 1907, 'M', 3884), +(11382, 'Joseph', 1907, 'M', 3844), +(11383, 'Frank', 1907, 'M', 2943), +(11384, 'Edward', 1907, 'M', 2576), +(11385, 'Henry', 1907, 'M', 2203), +(11386, 'Thomas', 1907, 'M', 2175), +(11387, 'Walter', 1907, 'M', 2095), +(11388, 'Willie', 1907, 'M', 1968), +(11389, 'Harry', 1907, 'M', 1813), +(11390, 'Albert', 1907, 'M', 1636), +(11391, 'Arthur', 1907, 'M', 1553), +(11392, 'Harold', 1907, 'M', 1452), +(11393, 'Clarence', 1907, 'M', 1389), +(11394, 'Fred', 1907, 'M', 1370), +(11395, 'Paul', 1907, 'M', 1358), +(11396, 'Raymond', 1907, 'M', 1290), +(11397, 'Richard', 1907, 'M', 1236), +(11398, 'Joe', 1907, 'M', 1177), +(11399, 'Roy', 1907, 'M', 1128), +(11400, 'Louis', 1907, 'M', 1111), +(11401, 'Jack', 1907, 'M', 1019), +(11402, 'Carl', 1907, 'M', 1018), +(11403, 'Earl', 1907, 'M', 1006), +(11404, 'Ralph', 1907, 'M', 998), +(11405, 'Ernest', 1907, 'M', 978), +(11406, 'David', 1907, 'M', 946), +(11407, 'Samuel', 1907, 'M', 892), +(11408, 'Howard', 1907, 'M', 875), +(11409, 'Lawrence', 1907, 'M', 801), +(11410, 'Charlie', 1907, 'M', 793), +(11411, 'Alfred', 1907, 'M', 738), +(11412, 'Francis', 1907, 'M', 717), +(11413, 'Theodore', 1907, 'M', 712), +(11414, 'Herbert', 1907, 'M', 710), +(11415, 'Andrew', 1907, 'M', 708), +(11416, 'Eugene', 1907, 'M', 691), +(11417, 'Leo', 1907, 'M', 651), +(11418, 'Sam', 1907, 'M', 631), +(11419, 'Donald', 1907, 'M', 616), +(11420, 'Elmer', 1907, 'M', 616), +(11421, 'Anthony', 1907, 'M', 593), +(11422, 'Kenneth', 1907, 'M', 589), +(11423, 'Michael', 1907, 'M', 586), +(11424, 'Herman', 1907, 'M', 562), +(11425, 'Leroy', 1907, 'M', 550), +(11426, 'Leonard', 1907, 'M', 547), +(11427, 'Daniel', 1907, 'M', 528), +(11428, 'Floyd', 1907, 'M', 521), +(11429, 'Lee', 1907, 'M', 516), +(11430, 'Stanley', 1907, 'M', 516), +(11431, 'Clyde', 1907, 'M', 507), +(11432, 'Russell', 1907, 'M', 503), +(11433, 'Lester', 1907, 'M', 491), +(11434, 'Oscar', 1907, 'M', 483), +(11435, 'Ray', 1907, 'M', 475), +(11436, 'Peter', 1907, 'M', 473), +(11437, 'Edwin', 1907, 'M', 468), +(11438, 'Jesse', 1907, 'M', 466), +(11439, 'Benjamin', 1907, 'M', 460), +(11440, 'Clifford', 1907, 'M', 445), +(11441, 'Lewis', 1907, 'M', 427), +(11442, 'Chester', 1907, 'M', 424), +(11443, 'Frederick', 1907, 'M', 410), +(11444, 'Cecil', 1907, 'M', 399), +(11445, 'Eddie', 1907, 'M', 394), +(11446, 'Jessie', 1907, 'M', 386), +(11447, 'Lloyd', 1907, 'M', 386), +(11448, 'Bernard', 1907, 'M', 378), +(11449, 'Claude', 1907, 'M', 364), +(11450, 'Norman', 1907, 'M', 362), +(11451, 'Philip', 1907, 'M', 356), +(11452, 'Harvey', 1907, 'M', 335), +(11453, 'Melvin', 1907, 'M', 331), +(11454, 'Martin', 1907, 'M', 329), +(11455, 'Leon', 1907, 'M', 324), +(11456, 'Edgar', 1907, 'M', 321), +(11457, 'Ben', 1907, 'M', 314), +(11458, 'Tom', 1907, 'M', 313), +(11459, 'Homer', 1907, 'M', 312), +(11460, 'Allen', 1907, 'M', 309), +(11461, 'Johnnie', 1907, 'M', 307), +(11462, 'Marvin', 1907, 'M', 304), +(11463, 'Everett', 1907, 'M', 302), +(11464, 'Milton', 1907, 'M', 292), +(11465, 'Jim', 1907, 'M', 281), +(11466, 'Luther', 1907, 'M', 280), +(11467, 'Alexander', 1907, 'M', 279), +(11468, 'Virgil', 1907, 'M', 276), +(11469, 'Leslie', 1907, 'M', 273), +(11470, 'Stephen', 1907, 'M', 273), +(11471, 'Morris', 1907, 'M', 260), +(11472, 'Will', 1907, 'M', 260), +(11473, 'Archie', 1907, 'M', 250), +(11474, 'Alvin', 1907, 'M', 245), +(11475, 'Victor', 1907, 'M', 245), +(11476, 'Jacob', 1907, 'M', 243), +(11477, 'Gerald', 1907, 'M', 239), +(11478, 'Vincent', 1907, 'M', 239), +(11479, 'Glenn', 1907, 'M', 234), +(11480, 'Julius', 1907, 'M', 231), +(11481, 'Marion', 1907, 'M', 226), +(11482, 'Earnest', 1907, 'M', 225), +(11483, 'Horace', 1907, 'M', 223), +(11484, 'Vernon', 1907, 'M', 222), +(11485, 'Roosevelt', 1907, 'M', 220), +(11486, 'Patrick', 1907, 'M', 215), +(11487, 'Gilbert', 1907, 'M', 212), +(11488, 'Hugh', 1907, 'M', 212), +(11489, 'Wilbur', 1907, 'M', 209), +(11490, 'Curtis', 1907, 'M', 208), +(11491, 'Maurice', 1907, 'M', 208), +(11492, 'Oliver', 1907, 'M', 207), +(11493, 'Willard', 1907, 'M', 201), +(11494, 'Sidney', 1907, 'M', 200), +(11495, 'Gordon', 1907, 'M', 199), +(11496, 'Otis', 1907, 'M', 199), +(11497, 'Max', 1907, 'M', 197), +(11498, 'Ira', 1907, 'M', 196), +(11499, 'Irving', 1907, 'M', 196), +(11500, 'Wesley', 1907, 'M', 191), +(11501, 'Guy', 1907, 'M', 189), +(11502, 'Alex', 1907, 'M', 186), +(11503, 'Wallace', 1907, 'M', 185), +(11504, 'Hubert', 1907, 'M', 184), +(11505, 'Manuel', 1907, 'M', 184), +(11506, 'Lonnie', 1907, 'M', 182), +(11507, 'Warren', 1907, 'M', 182), +(11508, 'Ed', 1907, 'M', 178), +(11509, 'Isaac', 1907, 'M', 178), +(11510, 'Arnold', 1907, 'M', 177), +(11511, 'Nathan', 1907, 'M', 176), +(11512, 'Rufus', 1907, 'M', 175), +(11513, 'Bill', 1907, 'M', 174), +(11514, 'Jose', 1907, 'M', 170), +(11515, 'Otto', 1907, 'M', 170), +(11516, 'Jerry', 1907, 'M', 165), +(11517, 'Charley', 1907, 'M', 164), +(11518, 'Jimmie', 1907, 'M', 161), +(11519, 'Nicholas', 1907, 'M', 161), +(11520, 'Dan', 1907, 'M', 160), +(11521, 'Percy', 1907, 'M', 160), +(11522, 'Mike', 1907, 'M', 157), +(11523, 'Steve', 1907, 'M', 157), +(11524, 'Sylvester', 1907, 'M', 151), +(11525, 'Emil', 1907, 'M', 150), +(11526, 'Glen', 1907, 'M', 150), +(11527, 'Abraham', 1907, 'M', 148), +(11528, 'Emmett', 1907, 'M', 148), +(11529, 'Orville', 1907, 'M', 148), +(11530, 'Wayne', 1907, 'M', 148), +(11531, 'Willis', 1907, 'M', 146), +(11532, 'Bennie', 1907, 'M', 145), +(11533, 'Mack', 1907, 'M', 142), +(11534, 'Clinton', 1907, 'M', 139), +(11535, 'Tony', 1907, 'M', 139), +(11536, 'Calvin', 1907, 'M', 136), +(11537, 'Rudolph', 1907, 'M', 135), +(11538, 'August', 1907, 'M', 134), +(11539, 'Johnie', 1907, 'M', 133), +(11540, 'Roland', 1907, 'M', 132), +(11541, 'Aaron', 1907, 'M', 130), +(11542, 'Edmund', 1907, 'M', 129), +(11543, 'Nelson', 1907, 'M', 129), +(11544, 'Adam', 1907, 'M', 127), +(11545, 'Roger', 1907, 'M', 127), +(11546, 'Antonio', 1907, 'M', 126), +(11547, 'Clifton', 1907, 'M', 126), +(11548, 'Amos', 1907, 'M', 125), +(11549, 'Matthew', 1907, 'M', 124), +(11550, 'Nathaniel', 1907, 'M', 124), +(11551, 'Phillip', 1907, 'M', 124), +(11552, 'Franklin', 1907, 'M', 122), +(11553, 'Pete', 1907, 'M', 122), +(11554, 'Juan', 1907, 'M', 121), +(11555, 'Alton', 1907, 'M', 120), +(11556, 'Elbert', 1907, 'M', 120), +(11557, 'Ellis', 1907, 'M', 120), +(11558, 'Irvin', 1907, 'M', 120), +(11559, 'Marshall', 1907, 'M', 118), +(11560, 'Jake', 1907, 'M', 117), +(11561, 'Ervin', 1907, 'M', 116), +(11562, 'Forrest', 1907, 'M', 115), +(11563, 'Felix', 1907, 'M', 112), +(11564, 'Ted', 1907, 'M', 112), +(11565, 'Bert', 1907, 'M', 111), +(11566, 'Dennis', 1907, 'M', 111), +(11567, 'Clayton', 1907, 'M', 108), +(11568, 'Dave', 1907, 'M', 107), +(11569, 'Cornelius', 1907, 'M', 106), +(11570, 'Owen', 1907, 'M', 104), +(11571, 'Booker', 1907, 'M', 100), +(11572, 'Mary', 1908, 'F', 18666), +(11573, 'Helen', 1908, 'F', 8439), +(11574, 'Margaret', 1908, 'F', 6976), +(11575, 'Ruth', 1908, 'F', 6180), +(11576, 'Anna', 1908, 'F', 5860), +(11577, 'Dorothy', 1908, 'F', 5703), +(11578, 'Elizabeth', 1908, 'F', 4904), +(11579, 'Mildred', 1908, 'F', 4624), +(11580, 'Alice', 1908, 'F', 4270), +(11581, 'Marie', 1908, 'F', 4076), +(11582, 'Florence', 1908, 'F', 3883), +(11583, 'Ethel', 1908, 'F', 3786), +(11584, 'Lillian', 1908, 'F', 3634), +(11585, 'Frances', 1908, 'F', 3593), +(11586, 'Gladys', 1908, 'F', 3580), +(11587, 'Rose', 1908, 'F', 3382), +(11588, 'Edna', 1908, 'F', 3365), +(11589, 'Louise', 1908, 'F', 2937), +(11590, 'Grace', 1908, 'F', 2901), +(11591, 'Evelyn', 1908, 'F', 2857), +(11592, 'Annie', 1908, 'F', 2820), +(11593, 'Catherine', 1908, 'F', 2750), +(11594, 'Irene', 1908, 'F', 2732), +(11595, 'Hazel', 1908, 'F', 2698), +(11596, 'Gertrude', 1908, 'F', 2562), +(11597, 'Thelma', 1908, 'F', 2526), +(11598, 'Edith', 1908, 'F', 2410), +(11599, 'Josephine', 1908, 'F', 2389), +(11600, 'Bertha', 1908, 'F', 2384), +(11601, 'Emma', 1908, 'F', 2357), +(11602, 'Clara', 1908, 'F', 2352), +(11603, 'Martha', 1908, 'F', 2324), +(11604, 'Ruby', 1908, 'F', 2229), +(11605, 'Bessie', 1908, 'F', 2201), +(11606, 'Virginia', 1908, 'F', 2195), +(11607, 'Esther', 1908, 'F', 2187), +(11608, 'Mabel', 1908, 'F', 2096), +(11609, 'Lucille', 1908, 'F', 2080), +(11610, 'Pearl', 1908, 'F', 2076), +(11611, 'Beatrice', 1908, 'F', 1997), +(11612, 'Elsie', 1908, 'F', 1983), +(11613, 'Viola', 1908, 'F', 1964), +(11614, 'Ida', 1908, 'F', 1952), +(11615, 'Myrtle', 1908, 'F', 1952), +(11616, 'Agnes', 1908, 'F', 1934), +(11617, 'Eva', 1908, 'F', 1930), +(11618, 'Minnie', 1908, 'F', 1817), +(11619, 'Sarah', 1908, 'F', 1814), +(11620, 'Nellie', 1908, 'F', 1757), +(11621, 'Julia', 1908, 'F', 1749), +(11622, 'Pauline', 1908, 'F', 1702), +(11623, 'Laura', 1908, 'F', 1558), +(11624, 'Alma', 1908, 'F', 1474), +(11625, 'Lillie', 1908, 'F', 1471), +(11626, 'Katherine', 1908, 'F', 1430), +(11627, 'Ella', 1908, 'F', 1428), +(11628, 'Mae', 1908, 'F', 1384), +(11629, 'Jessie', 1908, 'F', 1382), +(11630, 'Willie', 1908, 'F', 1371), +(11631, 'Mattie', 1908, 'F', 1364), +(11632, 'Bernice', 1908, 'F', 1363), +(11633, 'Ann', 1908, 'F', 1354), +(11634, 'Marion', 1908, 'F', 1349), +(11635, 'Lena', 1908, 'F', 1331), +(11636, 'Eleanor', 1908, 'F', 1302), +(11637, 'Carrie', 1908, 'F', 1239), +(11638, 'Stella', 1908, 'F', 1215), +(11639, 'Vera', 1908, 'F', 1204), +(11640, 'Blanche', 1908, 'F', 1162), +(11641, 'Doris', 1908, 'F', 1156), +(11642, 'Hattie', 1908, 'F', 1137), +(11643, 'Betty', 1908, 'F', 1128), +(11644, 'Leona', 1908, 'F', 1118), +(11645, 'Lucy', 1908, 'F', 1118), +(11646, 'Anne', 1908, 'F', 1088), +(11647, 'Fannie', 1908, 'F', 1085), +(11648, 'Kathryn', 1908, 'F', 1058), +(11649, 'Jennie', 1908, 'F', 1038), +(11650, 'Mamie', 1908, 'F', 1028), +(11651, 'Lois', 1908, 'F', 1023), +(11652, 'Violet', 1908, 'F', 1017), +(11653, 'Beulah', 1908, 'F', 1015), +(11654, 'Cora', 1908, 'F', 962), +(11655, 'Opal', 1908, 'F', 955), +(11656, 'Marjorie', 1908, 'F', 942), +(11657, 'Rosa', 1908, 'F', 941), +(11658, 'Ada', 1908, 'F', 922), +(11659, 'Marguerite', 1908, 'F', 913), +(11660, 'Lula', 1908, 'F', 892), +(11661, 'Velma', 1908, 'F', 860), +(11662, 'Jean', 1908, 'F', 852), +(11663, 'Ellen', 1908, 'F', 848), +(11664, 'Dora', 1908, 'F', 806), +(11665, 'Theresa', 1908, 'F', 795), +(11666, 'Maggie', 1908, 'F', 772), +(11667, 'Sadie', 1908, 'F', 770), +(11668, 'Georgia', 1908, 'F', 768), +(11669, 'Charlotte', 1908, 'F', 766), +(11670, 'Daisy', 1908, 'F', 765), +(11671, 'Inez', 1908, 'F', 757), +(11672, 'Sylvia', 1908, 'F', 748), +(11673, 'Hilda', 1908, 'F', 735), +(11674, 'Emily', 1908, 'F', 732), +(11675, 'Susie', 1908, 'F', 698), +(11676, 'Flora', 1908, 'F', 677), +(11677, 'Eunice', 1908, 'F', 676), +(11678, 'Estelle', 1908, 'F', 675), +(11679, 'Genevieve', 1908, 'F', 654), +(11680, 'Nancy', 1908, 'F', 651), +(11681, 'Nora', 1908, 'F', 648), +(11682, 'Olive', 1908, 'F', 648), +(11683, 'Alberta', 1908, 'F', 641), +(11684, 'Wilma', 1908, 'F', 630), +(11685, 'Lola', 1908, 'F', 623), +(11686, 'Lucile', 1908, 'F', 592), +(11687, 'Lottie', 1908, 'F', 580), +(11688, 'Marian', 1908, 'F', 579), +(11689, 'Juanita', 1908, 'F', 572), +(11690, 'Loretta', 1908, 'F', 566), +(11691, 'Mable', 1908, 'F', 566), +(11692, 'Vivian', 1908, 'F', 561), +(11693, 'Eula', 1908, 'F', 558), +(11694, 'Della', 1908, 'F', 549), +(11695, 'Effie', 1908, 'F', 549), +(11696, 'Verna', 1908, 'F', 549), +(11697, 'Harriet', 1908, 'F', 548), +(11698, 'Sara', 1908, 'F', 546), +(11699, 'Nettie', 1908, 'F', 543), +(11700, 'Goldie', 1908, 'F', 538), +(11701, 'Jane', 1908, 'F', 531), +(11702, 'Katie', 1908, 'F', 531), +(11703, 'Kathleen', 1908, 'F', 526), +(11704, 'Sophie', 1908, 'F', 523), +(11705, 'May', 1908, 'F', 515), +(11706, 'Barbara', 1908, 'F', 514), +(11707, 'Geneva', 1908, 'F', 511), +(11708, 'Maude', 1908, 'F', 510), +(11709, 'Christine', 1908, 'F', 504), +(11710, 'Rosie', 1908, 'F', 502), +(11711, 'Lydia', 1908, 'F', 499), +(11712, 'Sallie', 1908, 'F', 489), +(11713, 'Maria', 1908, 'F', 480), +(11714, 'Irma', 1908, 'F', 478), +(11715, 'Erma', 1908, 'F', 477), +(11716, 'Henrietta', 1908, 'F', 468), +(11717, 'Naomi', 1908, 'F', 458), +(11718, 'Madeline', 1908, 'F', 457), +(11719, 'Essie', 1908, 'F', 451), +(11720, 'Rebecca', 1908, 'F', 450), +(11721, 'Caroline', 1908, 'F', 449), +(11722, 'Nina', 1908, 'F', 449), +(11723, 'Ollie', 1908, 'F', 447), +(11724, 'Addie', 1908, 'F', 445), +(11725, 'Sally', 1908, 'F', 443), +(11726, 'Lizzie', 1908, 'F', 436), +(11727, 'Victoria', 1908, 'F', 435), +(11728, 'Norma', 1908, 'F', 430), +(11729, 'Ora', 1908, 'F', 426), +(11730, 'Rachel', 1908, 'F', 425), +(11731, 'Iva', 1908, 'F', 418), +(11732, 'Lela', 1908, 'F', 411), +(11733, 'Etta', 1908, 'F', 400), +(11734, 'Amelia', 1908, 'F', 370), +(11735, 'Audrey', 1908, 'F', 370), +(11736, 'Ola', 1908, 'F', 368), +(11737, 'Fern', 1908, 'F', 364), +(11738, 'Geraldine', 1908, 'F', 362), +(11739, 'Celia', 1908, 'F', 351), +(11740, 'Isabel', 1908, 'F', 351), +(11741, 'Susan', 1908, 'F', 350), +(11742, 'Freda', 1908, 'F', 349), +(11743, 'Adeline', 1908, 'F', 346), +(11744, 'Olga', 1908, 'F', 345), +(11745, 'Miriam', 1908, 'F', 342), +(11746, 'Mollie', 1908, 'F', 341), +(11747, 'Flossie', 1908, 'F', 340), +(11748, 'Luella', 1908, 'F', 336), +(11749, 'Cecelia', 1908, 'F', 325), +(11750, 'Leola', 1908, 'F', 321), +(11751, 'Estella', 1908, 'F', 317), +(11752, 'Frieda', 1908, 'F', 317), +(11753, 'Alta', 1908, 'F', 313), +(11754, 'Nannie', 1908, 'F', 313), +(11755, 'Faye', 1908, 'F', 311), +(11756, 'Isabelle', 1908, 'F', 308), +(11757, 'Jeanette', 1908, 'F', 304), +(11758, 'Virgie', 1908, 'F', 302), +(11759, 'Bonnie', 1908, 'F', 299), +(11760, 'Ina', 1908, 'F', 299), +(11761, 'Roberta', 1908, 'F', 296), +(11762, 'Cleo', 1908, 'F', 290), +(11763, 'Jewell', 1908, 'F', 288), +(11764, 'Nell', 1908, 'F', 288), +(11765, 'Phyllis', 1908, 'F', 288), +(11766, 'Veronica', 1908, 'F', 286), +(11767, 'Janie', 1908, 'F', 284), +(11768, 'Matilda', 1908, 'F', 284), +(11769, 'Shirley', 1908, 'F', 284), +(11770, 'Winifred', 1908, 'F', 281), +(11771, 'Carolyn', 1908, 'F', 280), +(11772, 'Elva', 1908, 'F', 279), +(11773, 'Anita', 1908, 'F', 277), +(11774, 'Sophia', 1908, 'F', 276), +(11775, 'Fay', 1908, 'F', 267), +(11776, 'Antoinette', 1908, 'F', 266), +(11777, 'Cecilia', 1908, 'F', 263), +(11778, 'Muriel', 1908, 'F', 262), +(11779, 'Amanda', 1908, 'F', 260), +(11780, 'Jeannette', 1908, 'F', 260), +(11781, 'Selma', 1908, 'F', 257), +(11782, 'Regina', 1908, 'F', 256), +(11783, 'Rita', 1908, 'F', 255), +(11784, 'Lila', 1908, 'F', 254), +(11785, 'Lorraine', 1908, 'F', 253), +(11786, 'Angelina', 1908, 'F', 251), +(11787, 'Marcella', 1908, 'F', 248), +(11788, 'Dorothea', 1908, 'F', 246), +(11789, 'Allie', 1908, 'F', 245), +(11790, 'Amy', 1908, 'F', 245), +(11791, 'Jewel', 1908, 'F', 244), +(11792, 'Eliza', 1908, 'F', 243), +(11793, 'Margie', 1908, 'F', 243), +(11794, 'Hannah', 1908, 'F', 240), +(11795, 'Claire', 1908, 'F', 235), +(11796, 'Teresa', 1908, 'F', 233), +(11797, 'Janet', 1908, 'F', 231), +(11798, 'Wanda', 1908, 'F', 226), +(11799, 'Maxine', 1908, 'F', 220), +(11800, 'Lorene', 1908, 'F', 218), +(11801, 'Callie', 1908, 'F', 214), +(11802, 'Constance', 1908, 'F', 214), +(11803, 'Gussie', 1908, 'F', 213), +(11804, 'Dolores', 1908, 'F', 212), +(11805, 'Elma', 1908, 'F', 208), +(11806, 'Josie', 1908, 'F', 207), +(11807, 'June', 1908, 'F', 206), +(11808, 'Sue', 1908, 'F', 206), +(11809, 'Patricia', 1908, 'F', 205), +(11810, 'Eloise', 1908, 'F', 201), +(11811, 'Rena', 1908, 'F', 201), +(11812, 'Madge', 1908, 'F', 200), +(11813, 'Eileen', 1908, 'F', 199), +(11814, 'Zelma', 1908, 'F', 199), +(11815, 'Letha', 1908, 'F', 198), +(11816, 'Tillie', 1908, 'F', 198), +(11817, 'Lee', 1908, 'F', 197), +(11818, 'Winnie', 1908, 'F', 197), +(11819, 'Ila', 1908, 'F', 196), +(11820, 'Leah', 1908, 'F', 194), +(11821, 'Adele', 1908, 'F', 192), +(11822, 'Kate', 1908, 'F', 191), +(11823, 'Maudie', 1908, 'F', 189), +(11824, 'Angeline', 1908, 'F', 188), +(11825, 'Johnnie', 1908, 'F', 188), +(11826, 'Belle', 1908, 'F', 187), +(11827, 'Dollie', 1908, 'F', 187), +(11828, 'Annette', 1908, 'F', 185), +(11829, 'Hester', 1908, 'F', 184), +(11830, 'Neva', 1908, 'F', 184), +(11831, 'Angela', 1908, 'F', 183), +(11832, 'Reba', 1908, 'F', 183), +(11833, 'Lessie', 1908, 'F', 181), +(11834, 'Olivia', 1908, 'F', 181), +(11835, 'Lenora', 1908, 'F', 180), +(11836, 'Rosalie', 1908, 'F', 180), +(11837, 'Elvira', 1908, 'F', 179), +(11838, 'Millie', 1908, 'F', 177), +(11839, 'Augusta', 1908, 'F', 176), +(11840, 'Ernestine', 1908, 'F', 176), +(11841, 'Gracie', 1908, 'F', 174), +(11842, 'Elnora', 1908, 'F', 170), +(11843, 'Delia', 1908, 'F', 168), +(11844, 'Adelaide', 1908, 'F', 167), +(11845, 'Lora', 1908, 'F', 167), +(11846, 'Francis', 1908, 'F', 166), +(11847, 'Bertie', 1908, 'F', 164), +(11848, 'Cornelia', 1908, 'F', 164), +(11849, 'Odessa', 1908, 'F', 162), +(11850, 'Roxie', 1908, 'F', 162), +(11851, 'Iola', 1908, 'F', 156), +(11852, 'Birdie', 1908, 'F', 155), +(11853, 'Cecile', 1908, 'F', 155), +(11854, 'Katharine', 1908, 'F', 155), +(11855, 'Corinne', 1908, 'F', 154), +(11856, 'Jeanne', 1908, 'F', 154), +(11857, 'Lorena', 1908, 'F', 152), +(11858, 'Mayme', 1908, 'F', 151), +(11859, 'Leila', 1908, 'F', 150), +(11860, 'Peggy', 1908, 'F', 150), +(11861, 'Frankie', 1908, 'F', 148), +(11862, 'Myra', 1908, 'F', 148), +(11863, 'Edythe', 1908, 'F', 147), +(11864, 'Lou', 1908, 'F', 147), +(11865, 'Carol', 1908, 'F', 146), +(11866, 'Nola', 1908, 'F', 144), +(11867, 'Arlene', 1908, 'F', 143), +(11868, 'Clarice', 1908, 'F', 141), +(11869, 'Lelia', 1908, 'F', 141), +(11870, 'Dessie', 1908, 'F', 140), +(11871, 'Wilhelmina', 1908, 'F', 140), +(11872, 'Billie', 1908, 'F', 139), +(11873, 'Helene', 1908, 'F', 138), +(11874, 'Maud', 1908, 'F', 138), +(11875, 'Lilly', 1908, 'F', 137), +(11876, 'Pearlie', 1908, 'F', 137), +(11877, 'Claudia', 1908, 'F', 134), +(11878, 'Dovie', 1908, 'F', 132), +(11879, 'Oma', 1908, 'F', 132), +(11880, 'Eugenia', 1908, 'F', 131), +(11881, 'Iris', 1908, 'F', 131), +(11882, 'Bettie', 1908, 'F', 130), +(11883, 'Hallie', 1908, 'F', 130), +(11884, 'Elaine', 1908, 'F', 129), +(11885, 'Gwendolyn', 1908, 'F', 127), +(11886, 'Zella', 1908, 'F', 125), +(11887, 'Dolly', 1908, 'F', 124), +(11888, 'Helena', 1908, 'F', 124), +(11889, 'Ophelia', 1908, 'F', 124), +(11890, 'Aline', 1908, 'F', 123), +(11891, 'Catharine', 1908, 'F', 123), +(11892, 'Carmen', 1908, 'F', 122), +(11893, 'Lulu', 1908, 'F', 120), +(11894, 'Merle', 1908, 'F', 120), +(11895, 'Rosella', 1908, 'F', 119), +(11896, 'Rosetta', 1908, 'F', 119), +(11897, 'Christina', 1908, 'F', 118), +(11898, 'Corine', 1908, 'F', 117), +(11899, 'Tessie', 1908, 'F', 117), +(11900, 'Connie', 1908, 'F', 116), +(11901, 'Ione', 1908, 'F', 116), +(11902, 'Lettie', 1908, 'F', 116), +(11903, 'Harriett', 1908, 'F', 115), +(11904, 'Lenore', 1908, 'F', 115), +(11905, 'Cecil', 1908, 'F', 114), +(11906, 'Annabelle', 1908, 'F', 113), +(11907, 'Isabella', 1908, 'F', 112), +(11908, 'Lucinda', 1908, 'F', 112), +(11909, 'Vesta', 1908, 'F', 112), +(11910, 'Alvina', 1908, 'F', 109), +(11911, 'Gertie', 1908, 'F', 108), +(11912, 'Rhoda', 1908, 'F', 108), +(11913, 'Erna', 1908, 'F', 107), +(11914, 'Leone', 1908, 'F', 107), +(11915, 'Pansy', 1908, 'F', 107), +(11916, 'Jimmie', 1908, 'F', 106), +(11917, 'Melba', 1908, 'F', 106), +(11918, 'Priscilla', 1908, 'F', 106), +(11919, 'Alyce', 1908, 'F', 105), +(11920, 'Carmela', 1908, 'F', 105), +(11921, 'Joyce', 1908, 'F', 105), +(11922, 'Linnie', 1908, 'F', 105), +(11923, 'Maybelle', 1908, 'F', 105), +(11924, 'Isabell', 1908, 'F', 104), +(11925, 'Joan', 1908, 'F', 104), +(11926, 'Yvonne', 1908, 'F', 104), +(11927, 'Johanna', 1908, 'F', 103), +(11928, 'Lily', 1908, 'F', 102), +(11929, 'Iona', 1908, 'F', 101), +(11930, 'Louisa', 1908, 'F', 101), +(11931, 'Molly', 1908, 'F', 101), +(11932, 'John', 1908, 'M', 9342), +(11933, 'William', 1908, 'M', 7528), +(11934, 'James', 1908, 'M', 7012), +(11935, 'George', 1908, 'M', 4584), +(11936, 'Robert', 1908, 'M', 4220), +(11937, 'Joseph', 1908, 'M', 4162), +(11938, 'Charles', 1908, 'M', 3929), +(11939, 'Frank', 1908, 'M', 3146), +(11940, 'Edward', 1908, 'M', 2707), +(11941, 'Thomas', 1908, 'M', 2301), +(11942, 'Henry', 1908, 'M', 2283), +(11943, 'Walter', 1908, 'M', 2192), +(11944, 'Willie', 1908, 'M', 1964), +(11945, 'Harry', 1908, 'M', 1934), +(11946, 'Albert', 1908, 'M', 1642), +(11947, 'Arthur', 1908, 'M', 1601), +(11948, 'Harold', 1908, 'M', 1542), +(11949, 'Paul', 1908, 'M', 1478), +(11950, 'Clarence', 1908, 'M', 1428), +(11951, 'Raymond', 1908, 'M', 1382), +(11952, 'Fred', 1908, 'M', 1381), +(11953, 'Louis', 1908, 'M', 1317), +(11954, 'Richard', 1908, 'M', 1244), +(11955, 'Joe', 1908, 'M', 1209), +(11956, 'Ralph', 1908, 'M', 1138), +(11957, 'Roy', 1908, 'M', 1097), +(11958, 'Jack', 1908, 'M', 1086), +(11959, 'Howard', 1908, 'M', 1078), +(11960, 'Carl', 1908, 'M', 1074), +(11961, 'David', 1908, 'M', 1017), +(11962, 'Ernest', 1908, 'M', 1000), +(11963, 'Earl', 1908, 'M', 999), +(11964, 'Samuel', 1908, 'M', 960), +(11965, 'Francis', 1908, 'M', 853), +(11966, 'Lawrence', 1908, 'M', 815), +(11967, 'Herbert', 1908, 'M', 759), +(11968, 'Charlie', 1908, 'M', 740), +(11969, 'Alfred', 1908, 'M', 739), +(11970, 'Andrew', 1908, 'M', 722), +(11971, 'Kenneth', 1908, 'M', 692), +(11972, 'Anthony', 1908, 'M', 690), +(11973, 'Elmer', 1908, 'M', 689), +(11974, 'Eugene', 1908, 'M', 689), +(11975, 'Michael', 1908, 'M', 689), +(11976, 'Donald', 1908, 'M', 664), +(11977, 'Sam', 1908, 'M', 644), +(11978, 'Theodore', 1908, 'M', 643), +(11979, 'Leonard', 1908, 'M', 614), +(11980, 'Leo', 1908, 'M', 584), +(11981, 'Herman', 1908, 'M', 562), +(11982, 'Lee', 1908, 'M', 553), +(11983, 'Stanley', 1908, 'M', 547), +(11984, 'Peter', 1908, 'M', 542), +(11985, 'Daniel', 1908, 'M', 530), +(11986, 'Floyd', 1908, 'M', 529), +(11987, 'Leroy', 1908, 'M', 523), +(11988, 'Russell', 1908, 'M', 523), +(11989, 'Clifford', 1908, 'M', 515), +(11990, 'Clyde', 1908, 'M', 511), +(11991, 'Lester', 1908, 'M', 509), +(11992, 'Lewis', 1908, 'M', 489), +(11993, 'Jesse', 1908, 'M', 482), +(11994, 'Benjamin', 1908, 'M', 480), +(11995, 'Edwin', 1908, 'M', 477), +(11996, 'Oscar', 1908, 'M', 476), +(11997, 'Chester', 1908, 'M', 461), +(11998, 'Ray', 1908, 'M', 447), +(11999, 'Frederick', 1908, 'M', 438), +(12000, 'Claude', 1908, 'M', 428), +(12001, 'Bernard', 1908, 'M', 414), +(12002, 'Eddie', 1908, 'M', 413), +(12003, 'Cecil', 1908, 'M', 397), +(12004, 'Lloyd', 1908, 'M', 394), +(12005, 'Norman', 1908, 'M', 374), +(12006, 'Melvin', 1908, 'M', 366), +(12007, 'Edgar', 1908, 'M', 360), +(12008, 'Jessie', 1908, 'M', 355), +(12009, 'Ben', 1908, 'M', 353), +(12010, 'Milton', 1908, 'M', 346), +(12011, 'Homer', 1908, 'M', 340), +(12012, 'Tom', 1908, 'M', 340), +(12013, 'Harvey', 1908, 'M', 339), +(12014, 'Martin', 1908, 'M', 331), +(12015, 'Leon', 1908, 'M', 327), +(12016, 'Johnnie', 1908, 'M', 321), +(12017, 'Philip', 1908, 'M', 319), +(12018, 'Marvin', 1908, 'M', 311), +(12019, 'Victor', 1908, 'M', 308), +(12020, 'Alvin', 1908, 'M', 307), +(12021, 'Everett', 1908, 'M', 294), +(12022, 'Luther', 1908, 'M', 292), +(12023, 'Allen', 1908, 'M', 287), +(12024, 'Vernon', 1908, 'M', 285), +(12025, 'Stephen', 1908, 'M', 280), +(12026, 'Leslie', 1908, 'M', 279), +(12027, 'Will', 1908, 'M', 274), +(12028, 'Gerald', 1908, 'M', 270), +(12029, 'Morris', 1908, 'M', 269), +(12030, 'Julius', 1908, 'M', 263), +(12031, 'Virgil', 1908, 'M', 258), +(12032, 'Sidney', 1908, 'M', 253), +(12033, 'Vincent', 1908, 'M', 250), +(12034, 'Glenn', 1908, 'M', 247), +(12035, 'Alexander', 1908, 'M', 246), +(12036, 'Otis', 1908, 'M', 243), +(12037, 'Maurice', 1908, 'M', 241), +(12038, 'Horace', 1908, 'M', 235), +(12039, 'Jacob', 1908, 'M', 235), +(12040, 'Marion', 1908, 'M', 233), +(12041, 'Wilbur', 1908, 'M', 233), +(12042, 'Earnest', 1908, 'M', 230), +(12043, 'Willard', 1908, 'M', 229), +(12044, 'Nicholas', 1908, 'M', 226), +(12045, 'Irving', 1908, 'M', 225), +(12046, 'Archie', 1908, 'M', 223), +(12047, 'Gilbert', 1908, 'M', 223), +(12048, 'Jim', 1908, 'M', 220), +(12049, 'Manuel', 1908, 'M', 220), +(12050, 'Max', 1908, 'M', 218), +(12051, 'Patrick', 1908, 'M', 216), +(12052, 'Hugh', 1908, 'M', 215), +(12053, 'Oliver', 1908, 'M', 207), +(12054, 'Curtis', 1908, 'M', 203), +(12055, 'Hubert', 1908, 'M', 203), +(12056, 'Arnold', 1908, 'M', 202), +(12057, 'Guy', 1908, 'M', 200), +(12058, 'Alex', 1908, 'M', 199), +(12059, 'Jerry', 1908, 'M', 198), +(12060, 'Gordon', 1908, 'M', 196), +(12061, 'Ira', 1908, 'M', 196), +(12062, 'Roosevelt', 1908, 'M', 194), +(12063, 'Warren', 1908, 'M', 194), +(12064, 'Jose', 1908, 'M', 192), +(12065, 'Wallace', 1908, 'M', 190), +(12066, 'Wesley', 1908, 'M', 185), +(12067, 'Mack', 1908, 'M', 183), +(12068, 'Nathan', 1908, 'M', 178), +(12069, 'Wayne', 1908, 'M', 178), +(12070, 'Otto', 1908, 'M', 177), +(12071, 'Rudolph', 1908, 'M', 173), +(12072, 'Johnie', 1908, 'M', 172), +(12073, 'Lonnie', 1908, 'M', 169), +(12074, 'Sylvester', 1908, 'M', 166), +(12075, 'Bill', 1908, 'M', 164), +(12076, 'Isaac', 1908, 'M', 162), +(12077, 'Willis', 1908, 'M', 161), +(12078, 'Jimmie', 1908, 'M', 160), +(12079, 'Marshall', 1908, 'M', 160), +(12080, 'Bennie', 1908, 'M', 158), +(12081, 'Glen', 1908, 'M', 158), +(12082, 'Roland', 1908, 'M', 156), +(12083, 'Rufus', 1908, 'M', 156), +(12084, 'Charley', 1908, 'M', 155), +(12085, 'Orville', 1908, 'M', 153), +(12086, 'Dan', 1908, 'M', 152), +(12087, 'Ed', 1908, 'M', 152), +(12088, 'Matthew', 1908, 'M', 152), +(12089, 'Percy', 1908, 'M', 151), +(12090, 'Abraham', 1908, 'M', 150), +(12091, 'Nathaniel', 1908, 'M', 150), +(12092, 'Steve', 1908, 'M', 149), +(12093, 'Clifton', 1908, 'M', 143), +(12094, 'Tony', 1908, 'M', 142), +(12095, 'Edmund', 1908, 'M', 141), +(12096, 'Emil', 1908, 'M', 141), +(12097, 'Clinton', 1908, 'M', 140), +(12098, 'Mike', 1908, 'M', 139), +(12099, 'August', 1908, 'M', 138), +(12100, 'Calvin', 1908, 'M', 135), +(12101, 'Clayton', 1908, 'M', 134), +(12102, 'Franklin', 1908, 'M', 133), +(12103, 'Perry', 1908, 'M', 133), +(12104, 'Pete', 1908, 'M', 131), +(12105, 'Phillip', 1908, 'M', 131), +(12106, 'Jerome', 1908, 'M', 127), +(12107, 'Emmett', 1908, 'M', 126), +(12108, 'Ellis', 1908, 'M', 123), +(12109, 'Elbert', 1908, 'M', 121), +(12110, 'Bert', 1908, 'M', 120), +(12111, 'Alton', 1908, 'M', 119), +(12112, 'Amos', 1908, 'M', 119), +(12113, 'Felix', 1908, 'M', 118), +(12114, 'Sherman', 1908, 'M', 118), +(12115, 'Dave', 1908, 'M', 116), +(12116, 'Jake', 1908, 'M', 115), +(12117, 'Roger', 1908, 'M', 115), +(12118, 'Aaron', 1908, 'M', 114), +(12119, 'Ted', 1908, 'M', 113), +(12120, 'Nelson', 1908, 'M', 112), +(12121, 'Booker', 1908, 'M', 111), +(12122, 'Douglas', 1908, 'M', 111), +(12123, 'Adam', 1908, 'M', 109), +(12124, 'Don', 1908, 'M', 107), +(12125, 'Johnny', 1908, 'M', 107), +(12126, 'Tommie', 1908, 'M', 106), +(12127, 'Forrest', 1908, 'M', 105), +(12128, 'Owen', 1908, 'M', 105), +(12129, 'Irvin', 1908, 'M', 104), +(12130, 'Reuben', 1908, 'M', 102), +(12131, 'Dennis', 1908, 'M', 101), +(12132, 'Juan', 1908, 'M', 101), +(12133, 'Wilbert', 1908, 'M', 101), +(12134, 'Dale', 1908, 'M', 100), +(12135, 'Mary', 1909, 'F', 19259), +(12136, 'Helen', 1909, 'F', 9250), +(12137, 'Margaret', 1909, 'F', 7359), +(12138, 'Ruth', 1909, 'F', 6509), +(12139, 'Dorothy', 1909, 'F', 6253), +(12140, 'Anna', 1909, 'F', 5803), +(12141, 'Elizabeth', 1909, 'F', 5176), +(12142, 'Mildred', 1909, 'F', 5054), +(12143, 'Marie', 1909, 'F', 4301), +(12144, 'Alice', 1909, 'F', 4170), +(12145, 'Florence', 1909, 'F', 3789), +(12146, 'Frances', 1909, 'F', 3780), +(12147, 'Ethel', 1909, 'F', 3661), +(12148, 'Lillian', 1909, 'F', 3596), +(12149, 'Gladys', 1909, 'F', 3538), +(12150, 'Edna', 1909, 'F', 3429), +(12151, 'Rose', 1909, 'F', 3374), +(12152, 'Evelyn', 1909, 'F', 3157), +(12153, 'Louise', 1909, 'F', 3019), +(12154, 'Irene', 1909, 'F', 2961), +(12155, 'Grace', 1909, 'F', 2912), +(12156, 'Annie', 1909, 'F', 2903), +(12157, 'Catherine', 1909, 'F', 2897), +(12158, 'Hazel', 1909, 'F', 2708), +(12159, 'Gertrude', 1909, 'F', 2622), +(12160, 'Thelma', 1909, 'F', 2612), +(12161, 'Ruby', 1909, 'F', 2524), +(12162, 'Martha', 1909, 'F', 2510), +(12163, 'Bertha', 1909, 'F', 2444), +(12164, 'Virginia', 1909, 'F', 2420), +(12165, 'Josephine', 1909, 'F', 2416), +(12166, 'Clara', 1909, 'F', 2403), +(12167, 'Edith', 1909, 'F', 2371), +(12168, 'Emma', 1909, 'F', 2338), +(12169, 'Bessie', 1909, 'F', 2276), +(12170, 'Lucille', 1909, 'F', 2191), +(12171, 'Esther', 1909, 'F', 2185), +(12172, 'Beatrice', 1909, 'F', 2105), +(12173, 'Elsie', 1909, 'F', 2064), +(12174, 'Pearl', 1909, 'F', 2048), +(12175, 'Mabel', 1909, 'F', 2007), +(12176, 'Agnes', 1909, 'F', 1974), +(12177, 'Myrtle', 1909, 'F', 1950), +(12178, 'Ida', 1909, 'F', 1943), +(12179, 'Julia', 1909, 'F', 1931), +(12180, 'Viola', 1909, 'F', 1926), +(12181, 'Eva', 1909, 'F', 1896), +(12182, 'Pauline', 1909, 'F', 1896), +(12183, 'Sarah', 1909, 'F', 1845), +(12184, 'Minnie', 1909, 'F', 1779), +(12185, 'Nellie', 1909, 'F', 1768), +(12186, 'Lillie', 1909, 'F', 1634), +(12187, 'Katherine', 1909, 'F', 1557), +(12188, 'Willie', 1909, 'F', 1549), +(12189, 'Laura', 1909, 'F', 1524), +(12190, 'Ann', 1909, 'F', 1478), +(12191, 'Eleanor', 1909, 'F', 1460), +(12192, 'Marion', 1909, 'F', 1445), +(12193, 'Mattie', 1909, 'F', 1407), +(12194, 'Ella', 1909, 'F', 1382), +(12195, 'Alma', 1909, 'F', 1375), +(12196, 'Bernice', 1909, 'F', 1337), +(12197, 'Jessie', 1909, 'F', 1321), +(12198, 'Doris', 1909, 'F', 1298), +(12199, 'Lena', 1909, 'F', 1295), +(12200, 'Carrie', 1909, 'F', 1276), +(12201, 'Vera', 1909, 'F', 1242), +(12202, 'Mae', 1909, 'F', 1230), +(12203, 'Blanche', 1909, 'F', 1217), +(12204, 'Stella', 1909, 'F', 1188), +(12205, 'Lucy', 1909, 'F', 1175), +(12206, 'Leona', 1909, 'F', 1167), +(12207, 'Lois', 1909, 'F', 1157), +(12208, 'Kathryn', 1909, 'F', 1138), +(12209, 'Hattie', 1909, 'F', 1134), +(12210, 'Anne', 1909, 'F', 1110), +(12211, 'Betty', 1909, 'F', 1082), +(12212, 'Marjorie', 1909, 'F', 1082), +(12213, 'Fannie', 1909, 'F', 1071), +(12214, 'Beulah', 1909, 'F', 1052), +(12215, 'Marguerite', 1909, 'F', 1036), +(12216, 'Opal', 1909, 'F', 1028), +(12217, 'Jennie', 1909, 'F', 998), +(12218, 'Mamie', 1909, 'F', 974), +(12219, 'Cora', 1909, 'F', 969), +(12220, 'Ellen', 1909, 'F', 961), +(12221, 'Rosa', 1909, 'F', 959), +(12222, 'Ada', 1909, 'F', 945), +(12223, 'Violet', 1909, 'F', 945), +(12224, 'Jean', 1909, 'F', 940), +(12225, 'Lula', 1909, 'F', 922), +(12226, 'Velma', 1909, 'F', 857), +(12227, 'Sylvia', 1909, 'F', 847), +(12228, 'Charlotte', 1909, 'F', 841), +(12229, 'Dora', 1909, 'F', 829), +(12230, 'Inez', 1909, 'F', 826), +(12231, 'Georgia', 1909, 'F', 813), +(12232, 'Maggie', 1909, 'F', 794), +(12233, 'Genevieve', 1909, 'F', 785), +(12234, 'Hilda', 1909, 'F', 773), +(12235, 'Susie', 1909, 'F', 770), +(12236, 'Daisy', 1909, 'F', 754), +(12237, 'Emily', 1909, 'F', 749), +(12238, 'Sadie', 1909, 'F', 749), +(12239, 'Alberta', 1909, 'F', 738), +(12240, 'Theresa', 1909, 'F', 724), +(12241, 'Nora', 1909, 'F', 670), +(12242, 'Estelle', 1909, 'F', 669), +(12243, 'Juanita', 1909, 'F', 668), +(12244, 'Flora', 1909, 'F', 667), +(12245, 'Vivian', 1909, 'F', 652), +(12246, 'Olive', 1909, 'F', 645), +(12247, 'Wilma', 1909, 'F', 645), +(12248, 'Marian', 1909, 'F', 641), +(12249, 'Lola', 1909, 'F', 634), +(12250, 'Jane', 1909, 'F', 627), +(12251, 'Eunice', 1909, 'F', 625), +(12252, 'Nancy', 1909, 'F', 610), +(12253, 'Rosie', 1909, 'F', 604), +(12254, 'Mable', 1909, 'F', 586), +(12255, 'Lottie', 1909, 'F', 583), +(12256, 'Verna', 1909, 'F', 582), +(12257, 'Loretta', 1909, 'F', 573), +(12258, 'Lucile', 1909, 'F', 570), +(12259, 'Della', 1909, 'F', 568), +(12260, 'Barbara', 1909, 'F', 567), +(12261, 'Sara', 1909, 'F', 559), +(12262, 'Nettie', 1909, 'F', 549), +(12263, 'Eula', 1909, 'F', 548), +(12264, 'Maria', 1909, 'F', 544), +(12265, 'Geneva', 1909, 'F', 539), +(12266, 'Effie', 1909, 'F', 538), +(12267, 'Katie', 1909, 'F', 534), +(12268, 'Goldie', 1909, 'F', 530), +(12269, 'Harriet', 1909, 'F', 527), +(12270, 'Kathleen', 1909, 'F', 527), +(12271, 'Christine', 1909, 'F', 524), +(12272, 'Maude', 1909, 'F', 520), +(12273, 'Essie', 1909, 'F', 508), +(12274, 'Lizzie', 1909, 'F', 504), +(12275, 'Naomi', 1909, 'F', 504), +(12276, 'Lydia', 1909, 'F', 503), +(12277, 'Irma', 1909, 'F', 499), +(12278, 'Sophie', 1909, 'F', 496), +(12279, 'Erma', 1909, 'F', 487), +(12280, 'May', 1909, 'F', 483), +(12281, 'Ollie', 1909, 'F', 481), +(12282, 'Henrietta', 1909, 'F', 480), +(12283, 'Ora', 1909, 'F', 473), +(12284, 'Sallie', 1909, 'F', 472), +(12285, 'Rebecca', 1909, 'F', 470), +(12286, 'Sally', 1909, 'F', 470), +(12287, 'Madeline', 1909, 'F', 466), +(12288, 'Rachel', 1909, 'F', 462), +(12289, 'Addie', 1909, 'F', 453), +(12290, 'Geraldine', 1909, 'F', 444), +(12291, 'Caroline', 1909, 'F', 443), +(12292, 'Norma', 1909, 'F', 438), +(12293, 'Nina', 1909, 'F', 434), +(12294, 'Victoria', 1909, 'F', 426), +(12295, 'Lela', 1909, 'F', 414), +(12296, 'Iva', 1909, 'F', 401), +(12297, 'Amelia', 1909, 'F', 388), +(12298, 'Susan', 1909, 'F', 380), +(12299, 'Audrey', 1909, 'F', 371), +(12300, 'Etta', 1909, 'F', 367), +(12301, 'Mollie', 1909, 'F', 361), +(12302, 'Olga', 1909, 'F', 359), +(12303, 'Isabel', 1909, 'F', 356), +(12304, 'Nannie', 1909, 'F', 355), +(12305, 'Roberta', 1909, 'F', 353), +(12306, 'Phyllis', 1909, 'F', 352), +(12307, 'Adeline', 1909, 'F', 345), +(12308, 'Fern', 1909, 'F', 345), +(12309, 'Flossie', 1909, 'F', 343), +(12310, 'Miriam', 1909, 'F', 339), +(12311, 'Bonnie', 1909, 'F', 337), +(12312, 'Cleo', 1909, 'F', 333), +(12313, 'Maxine', 1909, 'F', 332), +(12314, 'Alta', 1909, 'F', 327), +(12315, 'Isabelle', 1909, 'F', 326), +(12316, 'Leola', 1909, 'F', 326), +(12317, 'Luella', 1909, 'F', 325), +(12318, 'Ola', 1909, 'F', 325), +(12319, 'Celia', 1909, 'F', 324), +(12320, 'Freda', 1909, 'F', 321), +(12321, 'Estella', 1909, 'F', 318), +(12322, 'Jeanette', 1909, 'F', 317), +(12323, 'Frieda', 1909, 'F', 315), +(12324, 'Jeannette', 1909, 'F', 311), +(12325, 'Muriel', 1909, 'F', 311), +(12326, 'Jewell', 1909, 'F', 304), +(12327, 'Janie', 1909, 'F', 301), +(12328, 'Carolyn', 1909, 'F', 299), +(12329, 'Winifred', 1909, 'F', 297), +(12330, 'Antoinette', 1909, 'F', 296), +(12331, 'Rita', 1909, 'F', 295), +(12332, 'Cecelia', 1909, 'F', 294), +(12333, 'Anita', 1909, 'F', 291), +(12334, 'Ina', 1909, 'F', 287), +(12335, 'Margie', 1909, 'F', 286), +(12336, 'Virgie', 1909, 'F', 285), +(12337, 'Shirley', 1909, 'F', 281), +(12338, 'Matilda', 1909, 'F', 280), +(12339, 'Elva', 1909, 'F', 279), +(12340, 'Hannah', 1909, 'F', 278), +(12341, 'Nell', 1909, 'F', 277), +(12342, 'Johnnie', 1909, 'F', 275), +(12343, 'Lorene', 1909, 'F', 274), +(12344, 'Allie', 1909, 'F', 272), +(12345, 'Wanda', 1909, 'F', 272), +(12346, 'Amanda', 1909, 'F', 271), +(12347, 'Veronica', 1909, 'F', 270), +(12348, 'Lorraine', 1909, 'F', 269), +(12349, 'Marcella', 1909, 'F', 266), +(12350, 'Regina', 1909, 'F', 264), +(12351, 'Faye', 1909, 'F', 261), +(12352, 'Claire', 1909, 'F', 259), +(12353, 'Lila', 1909, 'F', 259), +(12354, 'Adele', 1909, 'F', 257), +(12355, 'Cecilia', 1909, 'F', 257), +(12356, 'Sophia', 1909, 'F', 256), +(12357, 'Dorothea', 1909, 'F', 253), +(12358, 'Jewel', 1909, 'F', 252), +(12359, 'Selma', 1909, 'F', 250), +(12360, 'Eliza', 1909, 'F', 249), +(12361, 'Elma', 1909, 'F', 248), +(12362, 'Fay', 1909, 'F', 246), +(12363, 'Amy', 1909, 'F', 244), +(12364, 'Eloise', 1909, 'F', 243), +(12365, 'Sue', 1909, 'F', 243), +(12366, 'Janet', 1909, 'F', 242), +(12367, 'Zelma', 1909, 'F', 240), +(12368, 'Patricia', 1909, 'F', 233), +(12369, 'Angeline', 1909, 'F', 232), +(12370, 'Angelina', 1909, 'F', 227), +(12371, 'Winnie', 1909, 'F', 225), +(12372, 'Dolores', 1909, 'F', 220), +(12373, 'Millie', 1909, 'F', 219), +(12374, 'Eileen', 1909, 'F', 216), +(12375, 'Teresa', 1909, 'F', 215), +(12376, 'June', 1909, 'F', 213), +(12377, 'Elnora', 1909, 'F', 211), +(12378, 'Gussie', 1909, 'F', 211), +(12379, 'Tillie', 1909, 'F', 210), +(12380, 'Reba', 1909, 'F', 208), +(12381, 'Constance', 1909, 'F', 206), +(12382, 'Angela', 1909, 'F', 204), +(12383, 'Jeanne', 1909, 'F', 202), +(12384, 'Josie', 1909, 'F', 202), +(12385, 'Belle', 1909, 'F', 201), +(12386, 'Dollie', 1909, 'F', 200), +(12387, 'Ila', 1909, 'F', 200), +(12388, 'Adelaide', 1909, 'F', 198), +(12389, 'Rosalie', 1909, 'F', 197), +(12390, 'Callie', 1909, 'F', 196), +(12391, 'Elvira', 1909, 'F', 196), +(12392, 'Lee', 1909, 'F', 196), +(12393, 'Rena', 1909, 'F', 193), +(12394, 'Letha', 1909, 'F', 191), +(12395, 'Gracie', 1909, 'F', 189), +(12396, 'Lenora', 1909, 'F', 189), +(12397, 'Cecile', 1909, 'F', 186), +(12398, 'Bertie', 1909, 'F', 184), +(12399, 'Kate', 1909, 'F', 183), +(12400, 'Annette', 1909, 'F', 182), +(12401, 'Madge', 1909, 'F', 180), +(12402, 'Augusta', 1909, 'F', 179), +(12403, 'Hester', 1909, 'F', 179), +(12404, 'Olivia', 1909, 'F', 179), +(12405, 'Cornelia', 1909, 'F', 176), +(12406, 'Helene', 1909, 'F', 176), +(12407, 'Leah', 1909, 'F', 176), +(12408, 'Lora', 1909, 'F', 174), +(12409, 'Nola', 1909, 'F', 172), +(12410, 'Ernestine', 1909, 'F', 169), +(12411, 'Lorena', 1909, 'F', 169), +(12412, 'Odessa', 1909, 'F', 168), +(12413, 'Neva', 1909, 'F', 163), +(12414, 'Iola', 1909, 'F', 162), +(12415, 'Peggy', 1909, 'F', 162), +(12416, 'Arlene', 1909, 'F', 160), +(12417, 'Maudie', 1909, 'F', 160), +(12418, 'Ophelia', 1909, 'F', 160), +(12419, 'Birdie', 1909, 'F', 159), +(12420, 'Roxie', 1909, 'F', 159), +(12421, 'Carmen', 1909, 'F', 157), +(12422, 'Francis', 1909, 'F', 157), +(12423, 'Lessie', 1909, 'F', 156), +(12424, 'Claudia', 1909, 'F', 155), +(12425, 'Corinne', 1909, 'F', 152), +(12426, 'Edythe', 1909, 'F', 151), +(12427, 'Helena', 1909, 'F', 151), +(12428, 'Clarice', 1909, 'F', 149), +(12429, 'Delia', 1909, 'F', 147), +(12430, 'Leila', 1909, 'F', 145), +(12431, 'Billie', 1909, 'F', 144), +(12432, 'Dessie', 1909, 'F', 144), +(12433, 'Katharine', 1909, 'F', 144), +(12434, 'Myra', 1909, 'F', 144), +(12435, 'Aline', 1909, 'F', 143), +(12436, 'Carol', 1909, 'F', 142), +(12437, 'Joan', 1909, 'F', 142), +(12438, 'Lelia', 1909, 'F', 142), +(12439, 'Harriett', 1909, 'F', 141), +(12440, 'Mayme', 1909, 'F', 141), +(12441, 'Lou', 1909, 'F', 140), +(12442, 'Pearlie', 1909, 'F', 140), +(12443, 'Elaine', 1909, 'F', 139), +(12444, 'Oma', 1909, 'F', 139), +(12445, 'Iris', 1909, 'F', 138), +(12446, 'Bettie', 1909, 'F', 137), +(12447, 'Eugenia', 1909, 'F', 137), +(12448, 'Rhoda', 1909, 'F', 136), +(12449, 'Rosetta', 1909, 'F', 133), +(12450, 'Connie', 1909, 'F', 131), +(12451, 'Zella', 1909, 'F', 131), +(12452, 'Hallie', 1909, 'F', 130), +(12453, 'Jimmie', 1909, 'F', 129), +(12454, 'Frankie', 1909, 'F', 128), +(12455, 'Wilhelmina', 1909, 'F', 128), +(12456, 'Lilly', 1909, 'F', 125), +(12457, 'Catharine', 1909, 'F', 123), +(12458, 'Donna', 1909, 'F', 123), +(12459, 'Gwendolyn', 1909, 'F', 123), +(12460, 'Lulu', 1909, 'F', 123), +(12461, 'Melba', 1909, 'F', 123), +(12462, 'Rosemary', 1909, 'F', 123), +(12463, 'Willa', 1909, 'F', 123), +(12464, 'Maud', 1909, 'F', 122), +(12465, 'Christina', 1909, 'F', 120), +(12466, 'Merle', 1909, 'F', 120), +(12467, 'Natalie', 1909, 'F', 120), +(12468, 'Pansy', 1909, 'F', 120), +(12469, 'Rosella', 1909, 'F', 117), +(12470, 'Elinor', 1909, 'F', 116), +(12471, 'Dovie', 1909, 'F', 114), +(12472, 'Lenore', 1909, 'F', 114), +(12473, 'Cecil', 1909, 'F', 113), +(12474, 'Corine', 1909, 'F', 112), +(12475, 'Jannie', 1909, 'F', 112), +(12476, 'Erna', 1909, 'F', 111), +(12477, 'Ione', 1909, 'F', 109), +(12478, 'Lily', 1909, 'F', 109), +(12479, 'Lona', 1909, 'F', 109), +(12480, 'Molly', 1909, 'F', 109), +(12481, 'Annabelle', 1909, 'F', 108), +(12482, 'Dolly', 1909, 'F', 108), +(12483, 'Alyce', 1909, 'F', 107), +(12484, 'Imogene', 1909, 'F', 107), +(12485, 'Carmela', 1909, 'F', 106), +(12486, 'Georgie', 1909, 'F', 105), +(12487, 'Isabell', 1909, 'F', 105), +(12488, 'Linda', 1909, 'F', 105), +(12489, 'Yvonne', 1909, 'F', 105), +(12490, 'Eddie', 1909, 'F', 104), +(12491, 'Aileen', 1909, 'F', 103), +(12492, 'Louella', 1909, 'F', 103), +(12493, 'Lucinda', 1909, 'F', 103), +(12494, 'Johanna', 1909, 'F', 102), +(12495, 'Gertie', 1909, 'F', 101), +(12496, 'Golda', 1909, 'F', 101), +(12497, 'Iona', 1909, 'F', 101), +(12498, 'Alvina', 1909, 'F', 100), +(12499, 'Laverne', 1909, 'F', 100), +(12500, 'Lura', 1909, 'F', 100), +(12501, 'Tessie', 1909, 'F', 100), +(12502, 'John', 1909, 'M', 9591), +(12503, 'William', 1909, 'M', 7914), +(12504, 'James', 1909, 'M', 7594), +(12505, 'George', 1909, 'M', 4688), +(12506, 'Robert', 1909, 'M', 4563), +(12507, 'Joseph', 1909, 'M', 4348), +(12508, 'Charles', 1909, 'M', 4030), +(12509, 'Frank', 1909, 'M', 3244), +(12510, 'Edward', 1909, 'M', 2935), +(12511, 'Thomas', 1909, 'M', 2468), +(12512, 'Henry', 1909, 'M', 2411), +(12513, 'Walter', 1909, 'M', 2287), +(12514, 'Willie', 1909, 'M', 2175), +(12515, 'Harry', 1909, 'M', 1924), +(12516, 'Albert', 1909, 'M', 1816); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(12517, 'Harold', 1909, 'M', 1725), +(12518, 'Paul', 1909, 'M', 1676), +(12519, 'Arthur', 1909, 'M', 1665), +(12520, 'Clarence', 1909, 'M', 1518), +(12521, 'Raymond', 1909, 'M', 1441), +(12522, 'Richard', 1909, 'M', 1427), +(12523, 'Fred', 1909, 'M', 1355), +(12524, 'Joe', 1909, 'M', 1292), +(12525, 'Louis', 1909, 'M', 1231), +(12526, 'Carl', 1909, 'M', 1215), +(12527, 'Howard', 1909, 'M', 1166), +(12528, 'Jack', 1909, 'M', 1150), +(12529, 'Roy', 1909, 'M', 1135), +(12530, 'David', 1909, 'M', 1094), +(12531, 'Ralph', 1909, 'M', 1091), +(12532, 'Earl', 1909, 'M', 1007), +(12533, 'Samuel', 1909, 'M', 983), +(12534, 'Francis', 1909, 'M', 886), +(12535, 'Ernest', 1909, 'M', 885), +(12536, 'Lawrence', 1909, 'M', 854), +(12537, 'Charlie', 1909, 'M', 833), +(12538, 'Herbert', 1909, 'M', 831), +(12539, 'Andrew', 1909, 'M', 766), +(12540, 'Alfred', 1909, 'M', 763), +(12541, 'Anthony', 1909, 'M', 758), +(12542, 'Kenneth', 1909, 'M', 746), +(12543, 'Donald', 1909, 'M', 725), +(12544, 'Eugene', 1909, 'M', 724), +(12545, 'Sam', 1909, 'M', 700), +(12546, 'Elmer', 1909, 'M', 687), +(12547, 'Leonard', 1909, 'M', 665), +(12548, 'Michael', 1909, 'M', 635), +(12549, 'Herman', 1909, 'M', 618), +(12550, 'Leo', 1909, 'M', 609), +(12551, 'Stanley', 1909, 'M', 607), +(12552, 'Theodore', 1909, 'M', 595), +(12553, 'Lee', 1909, 'M', 584), +(12554, 'Floyd', 1909, 'M', 570), +(12555, 'Daniel', 1909, 'M', 569), +(12556, 'Leroy', 1909, 'M', 568), +(12557, 'Peter', 1909, 'M', 539), +(12558, 'Clifford', 1909, 'M', 536), +(12559, 'Russell', 1909, 'M', 528), +(12560, 'Jesse', 1909, 'M', 517), +(12561, 'Clyde', 1909, 'M', 516), +(12562, 'Lester', 1909, 'M', 500), +(12563, 'Edwin', 1909, 'M', 492), +(12564, 'Benjamin', 1909, 'M', 489), +(12565, 'Frederick', 1909, 'M', 477), +(12566, 'Lewis', 1909, 'M', 477), +(12567, 'Chester', 1909, 'M', 475), +(12568, 'Ray', 1909, 'M', 475), +(12569, 'Bernard', 1909, 'M', 463), +(12570, 'Eddie', 1909, 'M', 462), +(12571, 'Oscar', 1909, 'M', 459), +(12572, 'Melvin', 1909, 'M', 448), +(12573, 'Cecil', 1909, 'M', 432), +(12574, 'Jessie', 1909, 'M', 432), +(12575, 'Claude', 1909, 'M', 419), +(12576, 'Norman', 1909, 'M', 415), +(12577, 'Lloyd', 1909, 'M', 412), +(12578, 'Johnnie', 1909, 'M', 401), +(12579, 'Philip', 1909, 'M', 395), +(12580, 'Martin', 1909, 'M', 391), +(12581, 'Leon', 1909, 'M', 377), +(12582, 'Milton', 1909, 'M', 369), +(12583, 'Alvin', 1909, 'M', 363), +(12584, 'Harvey', 1909, 'M', 361), +(12585, 'Ben', 1909, 'M', 358), +(12586, 'Marvin', 1909, 'M', 354), +(12587, 'Edgar', 1909, 'M', 347), +(12588, 'Luther', 1909, 'M', 347), +(12589, 'Tom', 1909, 'M', 340), +(12590, 'Victor', 1909, 'M', 320), +(12591, 'Everett', 1909, 'M', 314), +(12592, 'Stephen', 1909, 'M', 314), +(12593, 'Homer', 1909, 'M', 313), +(12594, 'Allen', 1909, 'M', 312), +(12595, 'Morris', 1909, 'M', 305), +(12596, 'Gerald', 1909, 'M', 301), +(12597, 'Leslie', 1909, 'M', 292), +(12598, 'Vernon', 1909, 'M', 284), +(12599, 'Julius', 1909, 'M', 269), +(12600, 'Otis', 1909, 'M', 267), +(12601, 'Will', 1909, 'M', 267), +(12602, 'Vincent', 1909, 'M', 264), +(12603, 'Jacob', 1909, 'M', 262), +(12604, 'Glenn', 1909, 'M', 261), +(12605, 'Hugh', 1909, 'M', 260), +(12606, 'Jim', 1909, 'M', 259), +(12607, 'Wilbur', 1909, 'M', 259), +(12608, 'Alexander', 1909, 'M', 255), +(12609, 'Earnest', 1909, 'M', 255), +(12610, 'Horace', 1909, 'M', 252), +(12611, 'Virgil', 1909, 'M', 250), +(12612, 'Marion', 1909, 'M', 247), +(12613, 'Oliver', 1909, 'M', 246), +(12614, 'Maurice', 1909, 'M', 245), +(12615, 'Curtis', 1909, 'M', 244), +(12616, 'Manuel', 1909, 'M', 243), +(12617, 'Gilbert', 1909, 'M', 239), +(12618, 'Arnold', 1909, 'M', 237), +(12619, 'Archie', 1909, 'M', 235), +(12620, 'Sidney', 1909, 'M', 233), +(12621, 'Warren', 1909, 'M', 231), +(12622, 'Gordon', 1909, 'M', 230), +(12623, 'Max', 1909, 'M', 228), +(12624, 'Alex', 1909, 'M', 227), +(12625, 'Hubert', 1909, 'M', 222), +(12626, 'Willard', 1909, 'M', 219), +(12627, 'Orville', 1909, 'M', 218), +(12628, 'Jose', 1909, 'M', 213), +(12629, 'Isaac', 1909, 'M', 209), +(12630, 'Lonnie', 1909, 'M', 209), +(12631, 'Nathan', 1909, 'M', 209), +(12632, 'Rufus', 1909, 'M', 206), +(12633, 'Bill', 1909, 'M', 205), +(12634, 'Nicholas', 1909, 'M', 204), +(12635, 'Irving', 1909, 'M', 202), +(12636, 'Patrick', 1909, 'M', 199), +(12637, 'Wesley', 1909, 'M', 197), +(12638, 'Guy', 1909, 'M', 195), +(12639, 'Jerry', 1909, 'M', 192), +(12640, 'Willis', 1909, 'M', 189), +(12641, 'Bennie', 1909, 'M', 187), +(12642, 'Steve', 1909, 'M', 187), +(12643, 'Jimmie', 1909, 'M', 185), +(12644, 'Wallace', 1909, 'M', 185), +(12645, 'Otto', 1909, 'M', 180), +(12646, 'Glen', 1909, 'M', 178), +(12647, 'Calvin', 1909, 'M', 176), +(12648, 'Ira', 1909, 'M', 175), +(12649, 'Rudolph', 1909, 'M', 173), +(12650, 'Clinton', 1909, 'M', 171), +(12651, 'Franklin', 1909, 'M', 168), +(12652, 'Elbert', 1909, 'M', 167), +(12653, 'Mike', 1909, 'M', 167), +(12654, 'Abraham', 1909, 'M', 163), +(12655, 'Dan', 1909, 'M', 163), +(12656, 'Wayne', 1909, 'M', 163), +(12657, 'Roosevelt', 1909, 'M', 160), +(12658, 'Ed', 1909, 'M', 159), +(12659, 'Percy', 1909, 'M', 159), +(12660, 'Clifton', 1909, 'M', 157), +(12661, 'Tony', 1909, 'M', 155), +(12662, 'Mack', 1909, 'M', 154), +(12663, 'Emil', 1909, 'M', 153), +(12664, 'Roland', 1909, 'M', 153), +(12665, 'Sylvester', 1909, 'M', 151), +(12666, 'Felix', 1909, 'M', 148), +(12667, 'Charley', 1909, 'M', 147), +(12668, 'Edmund', 1909, 'M', 147), +(12669, 'Emmett', 1909, 'M', 147), +(12670, 'Johnie', 1909, 'M', 147), +(12671, 'Matthew', 1909, 'M', 147), +(12672, 'Phillip', 1909, 'M', 146), +(12673, 'Nathaniel', 1909, 'M', 143), +(12674, 'Aaron', 1909, 'M', 142), +(12675, 'Jerome', 1909, 'M', 141), +(12676, 'Kermit', 1909, 'M', 139), +(12677, 'Clayton', 1909, 'M', 137), +(12678, 'Marshall', 1909, 'M', 134), +(12679, 'Ellis', 1909, 'M', 131), +(12680, 'August', 1909, 'M', 129), +(12681, 'Roger', 1909, 'M', 128), +(12682, 'Douglas', 1909, 'M', 126), +(12683, 'Forrest', 1909, 'M', 125), +(12684, 'Juan', 1909, 'M', 123), +(12685, 'Bruce', 1909, 'M', 122), +(12686, 'Ted', 1909, 'M', 122), +(12687, 'Antonio', 1909, 'M', 120), +(12688, 'Dennis', 1909, 'M', 120), +(12689, 'Pete', 1909, 'M', 120), +(12690, 'Bert', 1909, 'M', 119), +(12691, 'Johnny', 1909, 'M', 117), +(12692, 'Amos', 1909, 'M', 116), +(12693, 'Sherman', 1909, 'M', 115), +(12694, 'Adam', 1909, 'M', 113), +(12695, 'Nelson', 1909, 'M', 113), +(12696, 'Tommie', 1909, 'M', 113), +(12697, 'Ivan', 1909, 'M', 111), +(12698, 'Don', 1909, 'M', 110), +(12699, 'Irvin', 1909, 'M', 109), +(12700, 'Jake', 1909, 'M', 109), +(12701, 'Perry', 1909, 'M', 109), +(12702, 'Moses', 1909, 'M', 108), +(12703, 'Adolph', 1909, 'M', 107), +(12704, 'Roscoe', 1909, 'M', 107), +(12705, 'Wilson', 1909, 'M', 106), +(12706, 'Gus', 1909, 'M', 104), +(12707, 'Ervin', 1909, 'M', 103), +(12708, 'Austin', 1909, 'M', 102), +(12709, 'Dale', 1909, 'M', 102), +(12710, 'Dave', 1909, 'M', 102), +(12711, 'Julian', 1909, 'M', 102), +(12712, 'Karl', 1909, 'M', 102), +(12713, 'Alton', 1909, 'M', 101), +(12714, 'Booker', 1909, 'M', 101), +(12715, 'Mark', 1909, 'M', 101), +(12716, 'Mary', 1910, 'F', 22848), +(12717, 'Helen', 1910, 'F', 10479), +(12718, 'Margaret', 1910, 'F', 8226), +(12719, 'Dorothy', 1910, 'F', 7318), +(12720, 'Ruth', 1910, 'F', 7212), +(12721, 'Anna', 1910, 'F', 6436), +(12722, 'Elizabeth', 1910, 'F', 5799), +(12723, 'Mildred', 1910, 'F', 5692), +(12724, 'Marie', 1910, 'F', 4790), +(12725, 'Alice', 1910, 'F', 4671), +(12726, 'Frances', 1910, 'F', 4448), +(12727, 'Florence', 1910, 'F', 4282), +(12728, 'Ethel', 1910, 'F', 4146), +(12729, 'Lillian', 1910, 'F', 4127), +(12730, 'Gladys', 1910, 'F', 3842), +(12731, 'Rose', 1910, 'F', 3837), +(12732, 'Evelyn', 1910, 'F', 3776), +(12733, 'Edna', 1910, 'F', 3664), +(12734, 'Annie', 1910, 'F', 3519), +(12735, 'Louise', 1910, 'F', 3457), +(12736, 'Irene', 1910, 'F', 3281), +(12737, 'Catherine', 1910, 'F', 3161), +(12738, 'Grace', 1910, 'F', 3145), +(12739, 'Hazel', 1910, 'F', 3032), +(12740, 'Thelma', 1910, 'F', 2976), +(12741, 'Gertrude', 1910, 'F', 2932), +(12742, 'Ruby', 1910, 'F', 2893), +(12743, 'Martha', 1910, 'F', 2858), +(12744, 'Virginia', 1910, 'F', 2854), +(12745, 'Josephine', 1910, 'F', 2801), +(12746, 'Lucille', 1910, 'F', 2692), +(12747, 'Clara', 1910, 'F', 2665), +(12748, 'Bertha', 1910, 'F', 2651), +(12749, 'Emma', 1910, 'F', 2607), +(12750, 'Edith', 1910, 'F', 2592), +(12751, 'Beatrice', 1910, 'F', 2459), +(12752, 'Bessie', 1910, 'F', 2392), +(12753, 'Esther', 1910, 'F', 2378), +(12754, 'Pearl', 1910, 'F', 2177), +(12755, 'Sarah', 1910, 'F', 2173), +(12756, 'Agnes', 1910, 'F', 2163), +(12757, 'Pauline', 1910, 'F', 2153), +(12758, 'Myrtle', 1910, 'F', 2145), +(12759, 'Elsie', 1910, 'F', 2141), +(12760, 'Eva', 1910, 'F', 2123), +(12761, 'Mabel', 1910, 'F', 2123), +(12762, 'Ida', 1910, 'F', 2107), +(12763, 'Viola', 1910, 'F', 2090), +(12764, 'Julia', 1910, 'F', 2074), +(12765, 'Minnie', 1910, 'F', 1983), +(12766, 'Nellie', 1910, 'F', 1928), +(12767, 'Ann', 1910, 'F', 1842), +(12768, 'Laura', 1910, 'F', 1834), +(12769, 'Lillie', 1910, 'F', 1824), +(12770, 'Eleanor', 1910, 'F', 1797), +(12771, 'Willie', 1910, 'F', 1796), +(12772, 'Katherine', 1910, 'F', 1753), +(12773, 'Bernice', 1910, 'F', 1720), +(12774, 'Marion', 1910, 'F', 1703), +(12775, 'Mattie', 1910, 'F', 1687), +(12776, 'Alma', 1910, 'F', 1630), +(12777, 'Ella', 1910, 'F', 1587), +(12778, 'Jessie', 1910, 'F', 1541), +(12779, 'Doris', 1910, 'F', 1536), +(12780, 'Mae', 1910, 'F', 1453), +(12781, 'Lena', 1910, 'F', 1431), +(12782, 'Anne', 1910, 'F', 1413), +(12783, 'Marjorie', 1910, 'F', 1391), +(12784, 'Betty', 1910, 'F', 1389), +(12785, 'Carrie', 1910, 'F', 1381), +(12786, 'Vera', 1910, 'F', 1346), +(12787, 'Stella', 1910, 'F', 1319), +(12788, 'Hattie', 1910, 'F', 1314), +(12789, 'Blanche', 1910, 'F', 1288), +(12790, 'Lucy', 1910, 'F', 1283), +(12791, 'Lois', 1910, 'F', 1272), +(12792, 'Jean', 1910, 'F', 1246), +(12793, 'Fannie', 1910, 'F', 1237), +(12794, 'Leona', 1910, 'F', 1220), +(12795, 'Kathryn', 1910, 'F', 1198), +(12796, 'Jennie', 1910, 'F', 1183), +(12797, 'Beulah', 1910, 'F', 1131), +(12798, 'Rosa', 1910, 'F', 1131), +(12799, 'Marguerite', 1910, 'F', 1086), +(12800, 'Cora', 1910, 'F', 1079), +(12801, 'Mamie', 1910, 'F', 1079), +(12802, 'Opal', 1910, 'F', 1051), +(12803, 'Ellen', 1910, 'F', 1038), +(12804, 'Violet', 1910, 'F', 1037), +(12805, 'Velma', 1910, 'F', 1035), +(12806, 'Georgia', 1910, 'F', 1010), +(12807, 'Sylvia', 1910, 'F', 1000), +(12808, 'Lula', 1910, 'F', 974), +(12809, 'Ada', 1910, 'F', 960), +(12810, 'Maggie', 1910, 'F', 940), +(12811, 'Theresa', 1910, 'F', 926), +(12812, 'Inez', 1910, 'F', 916), +(12813, 'Genevieve', 1910, 'F', 908), +(12814, 'Charlotte', 1910, 'F', 896), +(12815, 'Sadie', 1910, 'F', 886), +(12816, 'Daisy', 1910, 'F', 877), +(12817, 'Susie', 1910, 'F', 858), +(12818, 'Dora', 1910, 'F', 833), +(12819, 'Alberta', 1910, 'F', 832), +(12820, 'Nancy', 1910, 'F', 811), +(12821, 'Marian', 1910, 'F', 806), +(12822, 'Vivian', 1910, 'F', 801), +(12823, 'Flora', 1910, 'F', 793), +(12824, 'Hilda', 1910, 'F', 793), +(12825, 'Emily', 1910, 'F', 785), +(12826, 'Nora', 1910, 'F', 753), +(12827, 'Estelle', 1910, 'F', 749), +(12828, 'Eunice', 1910, 'F', 742), +(12829, 'Rosie', 1910, 'F', 736), +(12830, 'Juanita', 1910, 'F', 732), +(12831, 'Jane', 1910, 'F', 709), +(12832, 'Geneva', 1910, 'F', 699), +(12833, 'Lucile', 1910, 'F', 698), +(12834, 'Wilma', 1910, 'F', 698), +(12835, 'Lola', 1910, 'F', 685), +(12836, 'Mable', 1910, 'F', 679), +(12837, 'Katie', 1910, 'F', 672), +(12838, 'Christine', 1910, 'F', 665), +(12839, 'Loretta', 1910, 'F', 655), +(12840, 'Olive', 1910, 'F', 646), +(12841, 'Harriet', 1910, 'F', 637), +(12842, 'Lottie', 1910, 'F', 634), +(12843, 'Sara', 1910, 'F', 633), +(12844, 'Nettie', 1910, 'F', 627), +(12845, 'Verna', 1910, 'F', 626), +(12846, 'Kathleen', 1910, 'F', 622), +(12847, 'Maria', 1910, 'F', 621), +(12848, 'Sophie', 1910, 'F', 621), +(12849, 'Essie', 1910, 'F', 620), +(12850, 'Eula', 1910, 'F', 615), +(12851, 'Barbara', 1910, 'F', 613), +(12852, 'Della', 1910, 'F', 602), +(12853, 'May', 1910, 'F', 594), +(12854, 'Goldie', 1910, 'F', 592), +(12855, 'Erma', 1910, 'F', 577), +(12856, 'Maude', 1910, 'F', 575), +(12857, 'Victoria', 1910, 'F', 574), +(12858, 'Effie', 1910, 'F', 572), +(12859, 'Sallie', 1910, 'F', 569), +(12860, 'Madeline', 1910, 'F', 560), +(12861, 'Caroline', 1910, 'F', 553), +(12862, 'Sally', 1910, 'F', 553), +(12863, 'Geraldine', 1910, 'F', 551), +(12864, 'Irma', 1910, 'F', 547), +(12865, 'Ollie', 1910, 'F', 538), +(12866, 'Rachel', 1910, 'F', 538), +(12867, 'Lydia', 1910, 'F', 536), +(12868, 'Henrietta', 1910, 'F', 525), +(12869, 'Rebecca', 1910, 'F', 519), +(12870, 'Lizzie', 1910, 'F', 505), +(12871, 'Naomi', 1910, 'F', 502), +(12872, 'Addie', 1910, 'F', 495), +(12873, 'Ora', 1910, 'F', 495), +(12874, 'Norma', 1910, 'F', 486), +(12875, 'Nina', 1910, 'F', 478), +(12876, 'Lela', 1910, 'F', 469), +(12877, 'Audrey', 1910, 'F', 453), +(12878, 'Amelia', 1910, 'F', 449), +(12879, 'Roberta', 1910, 'F', 433), +(12880, 'Etta', 1910, 'F', 430), +(12881, 'Leola', 1910, 'F', 423), +(12882, 'Ola', 1910, 'F', 422), +(12883, 'Iva', 1910, 'F', 406), +(12884, 'Celia', 1910, 'F', 402), +(12885, 'Mollie', 1910, 'F', 399), +(12886, 'Maxine', 1910, 'F', 397), +(12887, 'Adeline', 1910, 'F', 395), +(12888, 'Susan', 1910, 'F', 395), +(12889, 'Fern', 1910, 'F', 394), +(12890, 'Phyllis', 1910, 'F', 392), +(12891, 'Isabel', 1910, 'F', 389), +(12892, 'Isabelle', 1910, 'F', 389), +(12893, 'Flossie', 1910, 'F', 387), +(12894, 'Jeanette', 1910, 'F', 382), +(12895, 'Olga', 1910, 'F', 381), +(12896, 'Estella', 1910, 'F', 377), +(12897, 'Janie', 1910, 'F', 377), +(12898, 'Bonnie', 1910, 'F', 374), +(12899, 'Luella', 1910, 'F', 374), +(12900, 'Winifred', 1910, 'F', 370), +(12901, 'Miriam', 1910, 'F', 368), +(12902, 'Muriel', 1910, 'F', 365), +(12903, 'Jewell', 1910, 'F', 362), +(12904, 'Regina', 1910, 'F', 359), +(12905, 'Cleo', 1910, 'F', 357), +(12906, 'Alta', 1910, 'F', 347), +(12907, 'Jeannette', 1910, 'F', 347), +(12908, 'Freda', 1910, 'F', 345), +(12909, 'Elva', 1910, 'F', 342), +(12910, 'Anita', 1910, 'F', 338), +(12911, 'Cecelia', 1910, 'F', 335), +(12912, 'Nannie', 1910, 'F', 334), +(12913, 'Rita', 1910, 'F', 333), +(12914, 'Carolyn', 1910, 'F', 331), +(12915, 'Antoinette', 1910, 'F', 320), +(12916, 'Frieda', 1910, 'F', 319), +(12917, 'Jewel', 1910, 'F', 318), +(12918, 'Nell', 1910, 'F', 318), +(12919, 'Shirley', 1910, 'F', 318), +(12920, 'Fay', 1910, 'F', 316), +(12921, 'Patricia', 1910, 'F', 316), +(12922, 'Veronica', 1910, 'F', 314), +(12923, 'Faye', 1910, 'F', 312), +(12924, 'Lila', 1910, 'F', 311), +(12925, 'Lorraine', 1910, 'F', 310), +(12926, 'Wanda', 1910, 'F', 308), +(12927, 'Dorothea', 1910, 'F', 307), +(12928, 'Hannah', 1910, 'F', 305), +(12929, 'Margie', 1910, 'F', 305), +(12930, 'Johnnie', 1910, 'F', 299), +(12931, 'Ina', 1910, 'F', 296), +(12932, 'Janet', 1910, 'F', 296), +(12933, 'June', 1910, 'F', 295), +(12934, 'Marcella', 1910, 'F', 295), +(12935, 'Dolores', 1910, 'F', 294), +(12936, 'Selma', 1910, 'F', 293), +(12937, 'Virgie', 1910, 'F', 292), +(12938, 'Lorene', 1910, 'F', 290), +(12939, 'Adele', 1910, 'F', 288), +(12940, 'Amy', 1910, 'F', 287), +(12941, 'Cecilia', 1910, 'F', 287), +(12942, 'Matilda', 1910, 'F', 281), +(12943, 'Rosalie', 1910, 'F', 281), +(12944, 'Amanda', 1910, 'F', 278), +(12945, 'Dollie', 1910, 'F', 278), +(12946, 'Sue', 1910, 'F', 277), +(12947, 'Angeline', 1910, 'F', 276), +(12948, 'Claire', 1910, 'F', 274), +(12949, 'Eliza', 1910, 'F', 273), +(12950, 'Elma', 1910, 'F', 273), +(12951, 'Eloise', 1910, 'F', 273), +(12952, 'Sophia', 1910, 'F', 271), +(12953, 'Constance', 1910, 'F', 261), +(12954, 'Angela', 1910, 'F', 260), +(12955, 'Eileen', 1910, 'F', 258), +(12956, 'Rena', 1910, 'F', 253), +(12957, 'Josie', 1910, 'F', 251), +(12958, 'Angelina', 1910, 'F', 249), +(12959, 'Winnie', 1910, 'F', 248), +(12960, 'Millie', 1910, 'F', 247), +(12961, 'Gracie', 1910, 'F', 246), +(12962, 'Callie', 1910, 'F', 244), +(12963, 'Elnora', 1910, 'F', 241), +(12964, 'Gussie', 1910, 'F', 240), +(12965, 'Allie', 1910, 'F', 237), +(12966, 'Reba', 1910, 'F', 236), +(12967, 'Hallie', 1910, 'F', 233), +(12968, 'Annette', 1910, 'F', 232), +(12969, 'Francis', 1910, 'F', 227), +(12970, 'Helene', 1910, 'F', 226), +(12971, 'Lee', 1910, 'F', 224), +(12972, 'Teresa', 1910, 'F', 221), +(12973, 'Jeanne', 1910, 'F', 220), +(12974, 'Zelma', 1910, 'F', 220), +(12975, 'Tillie', 1910, 'F', 219), +(12976, 'Madge', 1910, 'F', 217), +(12977, 'Lenora', 1910, 'F', 214), +(12978, 'Elvira', 1910, 'F', 213), +(12979, 'Hester', 1910, 'F', 212), +(12980, 'Lorena', 1910, 'F', 212), +(12981, 'Olivia', 1910, 'F', 211), +(12982, 'Lessie', 1910, 'F', 208), +(12983, 'Arlene', 1910, 'F', 207), +(12984, 'Leah', 1910, 'F', 207), +(12985, 'Adelaide', 1910, 'F', 206), +(12986, 'Kate', 1910, 'F', 206), +(12987, 'Peggy', 1910, 'F', 204), +(12988, 'Cornelia', 1910, 'F', 202), +(12989, 'Letha', 1910, 'F', 202), +(12990, 'Ila', 1910, 'F', 199), +(12991, 'Maudie', 1910, 'F', 198), +(12992, 'Joan', 1910, 'F', 196), +(12993, 'Bertie', 1910, 'F', 195), +(12994, 'Elaine', 1910, 'F', 195), +(12995, 'Odessa', 1910, 'F', 194), +(12996, 'Belle', 1910, 'F', 193), +(12997, 'Edythe', 1910, 'F', 189), +(12998, 'Birdie', 1910, 'F', 187), +(12999, 'Cecile', 1910, 'F', 187), +(13000, 'Carol', 1910, 'F', 185), +(13001, 'Ernestine', 1910, 'F', 184), +(13002, 'Clarice', 1910, 'F', 182), +(13003, 'Augusta', 1910, 'F', 181), +(13004, 'Carmen', 1910, 'F', 181), +(13005, 'Harriett', 1910, 'F', 177), +(13006, 'Pearlie', 1910, 'F', 176), +(13007, 'Rosetta', 1910, 'F', 176), +(13008, 'Helena', 1910, 'F', 175), +(13009, 'Iola', 1910, 'F', 175), +(13010, 'Lora', 1910, 'F', 173), +(13011, 'Rhoda', 1910, 'F', 170), +(13012, 'Ophelia', 1910, 'F', 169), +(13013, 'Roxie', 1910, 'F', 169), +(13014, 'Eugenia', 1910, 'F', 168), +(13015, 'Bettie', 1910, 'F', 166), +(13016, 'Frankie', 1910, 'F', 166), +(13017, 'Billie', 1910, 'F', 165), +(13018, 'Dessie', 1910, 'F', 164), +(13019, 'Leila', 1910, 'F', 163), +(13020, 'Melba', 1910, 'F', 160), +(13021, 'Nola', 1910, 'F', 158), +(13022, 'Katharine', 1910, 'F', 157), +(13023, 'Corine', 1910, 'F', 156), +(13024, 'Myra', 1910, 'F', 155), +(13025, 'Lily', 1910, 'F', 154), +(13026, 'Gwendolyn', 1910, 'F', 151), +(13027, 'Isabella', 1910, 'F', 151), +(13028, 'Zella', 1910, 'F', 151), +(13029, 'Delia', 1910, 'F', 149), +(13030, 'Corinne', 1910, 'F', 146), +(13031, 'Molly', 1910, 'F', 145), +(13032, 'Eleanore', 1910, 'F', 144), +(13033, 'Lou', 1910, 'F', 144), +(13034, 'Iris', 1910, 'F', 143), +(13035, 'Maud', 1910, 'F', 143), +(13036, 'Wilhelmina', 1910, 'F', 143), +(13037, 'Jannie', 1910, 'F', 142), +(13038, 'Mayme', 1910, 'F', 142), +(13039, 'Priscilla', 1910, 'F', 142), +(13040, 'Aline', 1910, 'F', 141), +(13041, 'Alyce', 1910, 'F', 141), +(13042, 'Johanna', 1910, 'F', 141), +(13043, 'Neva', 1910, 'F', 141), +(13044, 'Rosemary', 1910, 'F', 141), +(13045, 'Carmela', 1910, 'F', 140), +(13046, 'Lenore', 1910, 'F', 140), +(13047, 'Catharine', 1910, 'F', 139), +(13048, 'Lelia', 1910, 'F', 138), +(13049, 'Merle', 1910, 'F', 138), +(13050, 'Claudia', 1910, 'F', 137), +(13051, 'Linda', 1910, 'F', 137), +(13052, 'Natalie', 1910, 'F', 136), +(13053, 'Joyce', 1910, 'F', 135), +(13054, 'Nona', 1910, 'F', 135), +(13055, 'Laverne', 1910, 'F', 134), +(13056, 'Oma', 1910, 'F', 134), +(13057, 'Willa', 1910, 'F', 134), +(13058, 'Dolly', 1910, 'F', 133), +(13059, 'Elinor', 1910, 'F', 133), +(13060, 'Gertie', 1910, 'F', 131), +(13061, 'Yvonne', 1910, 'F', 131), +(13062, 'Cecil', 1910, 'F', 130), +(13063, 'Christina', 1910, 'F', 130), +(13064, 'Jimmie', 1910, 'F', 130), +(13065, 'Connie', 1910, 'F', 129), +(13066, 'Isabell', 1910, 'F', 129), +(13067, 'Lilly', 1910, 'F', 129), +(13068, 'Pansy', 1910, 'F', 129), +(13069, 'Berniece', 1910, 'F', 127), +(13070, 'Eddie', 1910, 'F', 126), +(13071, 'Iona', 1910, 'F', 124), +(13072, 'Aileen', 1910, 'F', 123), +(13073, 'Lucinda', 1910, 'F', 123), +(13074, 'Rosella', 1910, 'F', 123), +(13075, 'Maurine', 1910, 'F', 122), +(13076, 'Annabelle', 1910, 'F', 121), +(13077, 'Erna', 1910, 'F', 120), +(13078, 'Tessie', 1910, 'F', 118), +(13079, 'Louella', 1910, 'F', 117), +(13080, 'Dovie', 1910, 'F', 115), +(13081, 'Gloria', 1910, 'F', 115), +(13082, 'Verda', 1910, 'F', 113), +(13083, 'Lulu', 1910, 'F', 112), +(13084, 'Ione', 1910, 'F', 111), +(13085, 'Loraine', 1910, 'F', 111), +(13086, 'Florine', 1910, 'F', 110), +(13087, 'Lona', 1910, 'F', 110), +(13088, 'Polly', 1910, 'F', 110), +(13089, 'Vesta', 1910, 'F', 109), +(13090, 'Blanch', 1910, 'F', 108), +(13091, 'Cassie', 1910, 'F', 108), +(13092, 'Leota', 1910, 'F', 108), +(13093, 'Donna', 1910, 'F', 107), +(13094, 'Hettie', 1910, 'F', 107), +(13095, 'Vada', 1910, 'F', 107), +(13096, 'Georgie', 1910, 'F', 106), +(13097, 'Kay', 1910, 'F', 106), +(13098, 'Maybelle', 1910, 'F', 106), +(13099, 'Sybil', 1910, 'F', 106), +(13100, 'Alvina', 1910, 'F', 105), +(13101, 'Estell', 1910, 'F', 105), +(13102, 'Arline', 1910, 'F', 104), +(13103, 'Floy', 1910, 'F', 104), +(13104, 'Leora', 1910, 'F', 104), +(13105, 'Elisabeth', 1910, 'F', 102), +(13106, 'Fanny', 1910, 'F', 102), +(13107, 'Hortense', 1910, 'F', 102), +(13108, 'Lettie', 1910, 'F', 102), +(13109, 'Mona', 1910, 'F', 101), +(13110, 'Artie', 1910, 'F', 100), +(13111, 'Minerva', 1910, 'F', 100), +(13112, 'Mittie', 1910, 'F', 100), +(13113, 'John', 1910, 'M', 11450), +(13114, 'James', 1910, 'M', 9195), +(13115, 'William', 1910, 'M', 8844), +(13116, 'Robert', 1910, 'M', 5610), +(13117, 'George', 1910, 'M', 5441), +(13118, 'Joseph', 1910, 'M', 5228), +(13119, 'Charles', 1910, 'M', 4785), +(13120, 'Frank', 1910, 'M', 3768), +(13121, 'Edward', 1910, 'M', 3408), +(13122, 'Henry', 1910, 'M', 2899), +(13123, 'Willie', 1910, 'M', 2897), +(13124, 'Thomas', 1910, 'M', 2851), +(13125, 'Walter', 1910, 'M', 2596), +(13126, 'Albert', 1910, 'M', 2183), +(13127, 'Paul', 1910, 'M', 2005), +(13128, 'Harry', 1910, 'M', 1978), +(13129, 'Arthur', 1910, 'M', 1942), +(13130, 'Harold', 1910, 'M', 1909), +(13131, 'Raymond', 1910, 'M', 1737), +(13132, 'Clarence', 1910, 'M', 1706), +(13133, 'Richard', 1910, 'M', 1654), +(13134, 'Fred', 1910, 'M', 1587), +(13135, 'Jack', 1910, 'M', 1576), +(13136, 'Louis', 1910, 'M', 1569), +(13137, 'Joe', 1910, 'M', 1553), +(13138, 'Carl', 1910, 'M', 1339), +(13139, 'Howard', 1910, 'M', 1310), +(13140, 'Ralph', 1910, 'M', 1279), +(13141, 'Roy', 1910, 'M', 1267), +(13142, 'David', 1910, 'M', 1258), +(13143, 'Ernest', 1910, 'M', 1167), +(13144, 'Samuel', 1910, 'M', 1129), +(13145, 'Earl', 1910, 'M', 1109), +(13146, 'Charlie', 1910, 'M', 1107), +(13147, 'Lawrence', 1910, 'M', 1009), +(13148, 'Francis', 1910, 'M', 1000), +(13149, 'Anthony', 1910, 'M', 980), +(13150, 'Alfred', 1910, 'M', 922), +(13151, 'Eugene', 1910, 'M', 888), +(13152, 'Sam', 1910, 'M', 888), +(13153, 'Herbert', 1910, 'M', 886), +(13154, 'Andrew', 1910, 'M', 884), +(13155, 'Kenneth', 1910, 'M', 880), +(13156, 'Donald', 1910, 'M', 860), +(13157, 'Michael', 1910, 'M', 844), +(13158, 'Leonard', 1910, 'M', 793), +(13159, 'Stanley', 1910, 'M', 761), +(13160, 'Elmer', 1910, 'M', 760), +(13161, 'Lee', 1910, 'M', 741), +(13162, 'Leroy', 1910, 'M', 733), +(13163, 'Leo', 1910, 'M', 707), +(13164, 'Herman', 1910, 'M', 696), +(13165, 'Daniel', 1910, 'M', 692), +(13166, 'Theodore', 1910, 'M', 692), +(13167, 'Floyd', 1910, 'M', 687), +(13168, 'Peter', 1910, 'M', 631), +(13169, 'Clyde', 1910, 'M', 617), +(13170, 'Russell', 1910, 'M', 615), +(13171, 'Eddie', 1910, 'M', 595), +(13172, 'Jesse', 1910, 'M', 590), +(13173, 'Chester', 1910, 'M', 561), +(13174, 'Bernard', 1910, 'M', 560), +(13175, 'Norman', 1910, 'M', 557), +(13176, 'Lester', 1910, 'M', 556), +(13177, 'Lewis', 1910, 'M', 555), +(13178, 'Clifford', 1910, 'M', 551), +(13179, 'Lloyd', 1910, 'M', 545), +(13180, 'Ray', 1910, 'M', 545), +(13181, 'Frederick', 1910, 'M', 543), +(13182, 'Benjamin', 1910, 'M', 536), +(13183, 'Edwin', 1910, 'M', 536), +(13184, 'Jessie', 1910, 'M', 516), +(13185, 'Oscar', 1910, 'M', 505), +(13186, 'Johnnie', 1910, 'M', 502), +(13187, 'Melvin', 1910, 'M', 482), +(13188, 'Milton', 1910, 'M', 476), +(13189, 'Cecil', 1910, 'M', 472), +(13190, 'Claude', 1910, 'M', 463), +(13191, 'Ben', 1910, 'M', 454), +(13192, 'Edgar', 1910, 'M', 441), +(13193, 'Leon', 1910, 'M', 435), +(13194, 'Tom', 1910, 'M', 428), +(13195, 'Philip', 1910, 'M', 418), +(13196, 'Marvin', 1910, 'M', 413), +(13197, 'Alvin', 1910, 'M', 401), +(13198, 'Martin', 1910, 'M', 396), +(13199, 'Luther', 1910, 'M', 383), +(13200, 'Everett', 1910, 'M', 382), +(13201, 'Harvey', 1910, 'M', 382), +(13202, 'Victor', 1910, 'M', 372), +(13203, 'Morris', 1910, 'M', 367), +(13204, 'Allen', 1910, 'M', 355), +(13205, 'Sidney', 1910, 'M', 353), +(13206, 'Vernon', 1910, 'M', 351), +(13207, 'Julius', 1910, 'M', 350), +(13208, 'Stephen', 1910, 'M', 350), +(13209, 'Glenn', 1910, 'M', 349), +(13210, 'Homer', 1910, 'M', 347), +(13211, 'Vincent', 1910, 'M', 343), +(13212, 'Jim', 1910, 'M', 331), +(13213, 'Alexander', 1910, 'M', 324), +(13214, 'Leslie', 1910, 'M', 313), +(13215, 'Oliver', 1910, 'M', 307), +(13216, 'Wilbur', 1910, 'M', 298), +(13217, 'Gerald', 1910, 'M', 289), +(13218, 'Hubert', 1910, 'M', 289), +(13219, 'Manuel', 1910, 'M', 288), +(13220, 'Marion', 1910, 'M', 286), +(13221, 'Otis', 1910, 'M', 285), +(13222, 'Maurice', 1910, 'M', 283), +(13223, 'Virgil', 1910, 'M', 280), +(13224, 'Hugh', 1910, 'M', 279), +(13225, 'Will', 1910, 'M', 278), +(13226, 'Curtis', 1910, 'M', 277), +(13227, 'Max', 1910, 'M', 277), +(13228, 'Gilbert', 1910, 'M', 274), +(13229, 'Jacob', 1910, 'M', 273), +(13230, 'Irving', 1910, 'M', 272), +(13231, 'Archie', 1910, 'M', 265), +(13232, 'Gordon', 1910, 'M', 265), +(13233, 'Willard', 1910, 'M', 265), +(13234, 'Warren', 1910, 'M', 264), +(13235, 'Horace', 1910, 'M', 261), +(13236, 'Bill', 1910, 'M', 259), +(13237, 'Jimmie', 1910, 'M', 259), +(13238, 'Arnold', 1910, 'M', 258), +(13239, 'Alex', 1910, 'M', 256), +(13240, 'Earnest', 1910, 'M', 255), +(13241, 'Patrick', 1910, 'M', 254), +(13242, 'Isaac', 1910, 'M', 252), +(13243, 'Jerry', 1910, 'M', 252), +(13244, 'Wallace', 1910, 'M', 251), +(13245, 'Guy', 1910, 'M', 250), +(13246, 'Jose', 1910, 'M', 249), +(13247, 'Nathan', 1910, 'M', 245), +(13248, 'Steve', 1910, 'M', 245), +(13249, 'Nicholas', 1910, 'M', 235), +(13250, 'Ira', 1910, 'M', 233), +(13251, 'Nathaniel', 1910, 'M', 233), +(13252, 'Ed', 1910, 'M', 229), +(13253, 'Wayne', 1910, 'M', 228), +(13254, 'Orville', 1910, 'M', 223), +(13255, 'Mike', 1910, 'M', 222), +(13256, 'Roosevelt', 1910, 'M', 222), +(13257, 'Rufus', 1910, 'M', 221), +(13258, 'Bennie', 1910, 'M', 218), +(13259, 'Rudolph', 1910, 'M', 218), +(13260, 'Lonnie', 1910, 'M', 217), +(13261, 'Willis', 1910, 'M', 216), +(13262, 'Mack', 1910, 'M', 213), +(13263, 'Tony', 1910, 'M', 212), +(13264, 'Wesley', 1910, 'M', 209), +(13265, 'Calvin', 1910, 'M', 201), +(13266, 'Edmund', 1910, 'M', 200), +(13267, 'Otto', 1910, 'M', 200), +(13268, 'Sylvester', 1910, 'M', 200), +(13269, 'Johnie', 1910, 'M', 199), +(13270, 'Matthew', 1910, 'M', 197), +(13271, 'Jerome', 1910, 'M', 196), +(13272, 'Percy', 1910, 'M', 195), +(13273, 'Emil', 1910, 'M', 194), +(13274, 'Abraham', 1910, 'M', 191), +(13275, 'Roland', 1910, 'M', 191), +(13276, 'Dan', 1910, 'M', 188), +(13277, 'Glen', 1910, 'M', 184), +(13278, 'Elbert', 1910, 'M', 183), +(13279, 'Charley', 1910, 'M', 181), +(13280, 'Clifton', 1910, 'M', 178), +(13281, 'Dave', 1910, 'M', 178), +(13282, 'Franklin', 1910, 'M', 176), +(13283, 'Roger', 1910, 'M', 176), +(13284, 'Douglas', 1910, 'M', 169), +(13285, 'Johnny', 1910, 'M', 167), +(13286, 'Phillip', 1910, 'M', 167), +(13287, 'Clinton', 1910, 'M', 162), +(13288, 'Felix', 1910, 'M', 161), +(13289, 'Booker', 1910, 'M', 159), +(13290, 'Clayton', 1910, 'M', 159), +(13291, 'Emmett', 1910, 'M', 159), +(13292, 'Antonio', 1910, 'M', 158), +(13293, 'Pete', 1910, 'M', 156), +(13294, 'Adam', 1910, 'M', 154), +(13295, 'Juan', 1910, 'M', 150), +(13296, 'Jake', 1910, 'M', 148), +(13297, 'Ellis', 1910, 'M', 147), +(13298, 'Wilbert', 1910, 'M', 146), +(13299, 'Aaron', 1910, 'M', 145), +(13300, 'August', 1910, 'M', 144), +(13301, 'Nelson', 1910, 'M', 142), +(13302, 'Bert', 1910, 'M', 141), +(13303, 'Don', 1910, 'M', 140), +(13304, 'Irvin', 1910, 'M', 137), +(13305, 'Kermit', 1910, 'M', 136), +(13306, 'Roscoe', 1910, 'M', 136), +(13307, 'Angelo', 1910, 'M', 135), +(13308, 'Dennis', 1910, 'M', 135), +(13309, 'Moses', 1910, 'M', 132), +(13310, 'Simon', 1910, 'M', 132), +(13311, 'Ervin', 1910, 'M', 131), +(13312, 'Mark', 1910, 'M', 131), +(13313, 'Julian', 1910, 'M', 129), +(13314, 'Tommie', 1910, 'M', 129), +(13315, 'Salvatore', 1910, 'M', 128), +(13316, 'Ted', 1910, 'M', 127), +(13317, 'Dale', 1910, 'M', 125), +(13318, 'Marshall', 1910, 'M', 125), +(13319, 'Perry', 1910, 'M', 125), +(13320, 'Amos', 1910, 'M', 124), +(13321, 'Nick', 1910, 'M', 124), +(13322, 'Adolph', 1910, 'M', 122), +(13323, 'Alton', 1910, 'M', 122), +(13324, 'Delbert', 1910, 'M', 122), +(13325, 'Jay', 1910, 'M', 120), +(13326, 'Owen', 1910, 'M', 118), +(13327, 'Ronald', 1910, 'M', 118), +(13328, 'Lyle', 1910, 'M', 117), +(13329, 'Grady', 1910, 'M', 114), +(13330, 'Larry', 1910, 'M', 114), +(13331, 'Laurence', 1910, 'M', 114), +(13332, 'Ollie', 1910, 'M', 114), +(13333, 'Grover', 1910, 'M', 113), +(13334, 'Preston', 1910, 'M', 112), +(13335, 'Wilson', 1910, 'M', 112), +(13336, 'Ivan', 1910, 'M', 109), +(13337, 'Cleveland', 1910, 'M', 108), +(13338, 'Sherman', 1910, 'M', 107), +(13339, 'Gus', 1910, 'M', 106), +(13340, 'Aubrey', 1910, 'M', 105), +(13341, 'Bob', 1910, 'M', 103), +(13342, 'Forrest', 1910, 'M', 103), +(13343, 'Jess', 1910, 'M', 103), +(13344, 'Ross', 1910, 'M', 103), +(13345, 'Austin', 1910, 'M', 101), +(13346, 'Elijah', 1910, 'M', 101), +(13347, 'Merle', 1910, 'M', 100), +(13348, 'Mary', 1911, 'F', 24390), +(13349, 'Helen', 1911, 'F', 11802), +(13350, 'Margaret', 1911, 'F', 9279), +(13351, 'Dorothy', 1911, 'F', 8869), +(13352, 'Ruth', 1911, 'F', 8003), +(13353, 'Anna', 1911, 'F', 6753), +(13354, 'Elizabeth', 1911, 'F', 6298), +(13355, 'Mildred', 1911, 'F', 6270), +(13356, 'Marie', 1911, 'F', 5017), +(13357, 'Frances', 1911, 'F', 4967), +(13358, 'Alice', 1911, 'F', 4812), +(13359, 'Florence', 1911, 'F', 4424), +(13360, 'Lillian', 1911, 'F', 4367), +(13361, 'Rose', 1911, 'F', 4150), +(13362, 'Ethel', 1911, 'F', 4141), +(13363, 'Evelyn', 1911, 'F', 4075), +(13364, 'Edna', 1911, 'F', 3957), +(13365, 'Gladys', 1911, 'F', 3933), +(13366, 'Louise', 1911, 'F', 3725), +(13367, 'Catherine', 1911, 'F', 3565), +(13368, 'Irene', 1911, 'F', 3502), +(13369, 'Ruby', 1911, 'F', 3372), +(13370, 'Grace', 1911, 'F', 3304), +(13371, 'Annie', 1911, 'F', 3298), +(13372, 'Hazel', 1911, 'F', 3290), +(13373, 'Virginia', 1911, 'F', 3263), +(13374, 'Thelma', 1911, 'F', 3166), +(13375, 'Martha', 1911, 'F', 3019), +(13376, 'Josephine', 1911, 'F', 3011), +(13377, 'Gertrude', 1911, 'F', 2895), +(13378, 'Edith', 1911, 'F', 2824), +(13379, 'Lucille', 1911, 'F', 2740), +(13380, 'Clara', 1911, 'F', 2691), +(13381, 'Esther', 1911, 'F', 2676), +(13382, 'Emma', 1911, 'F', 2616), +(13383, 'Bertha', 1911, 'F', 2606), +(13384, 'Beatrice', 1911, 'F', 2522), +(13385, 'Pauline', 1911, 'F', 2345), +(13386, 'Agnes', 1911, 'F', 2315), +(13387, 'Bessie', 1911, 'F', 2279), +(13388, 'Elsie', 1911, 'F', 2224), +(13389, 'Sarah', 1911, 'F', 2201), +(13390, 'Mabel', 1911, 'F', 2171), +(13391, 'Julia', 1911, 'F', 2158), +(13392, 'Ida', 1911, 'F', 2119), +(13393, 'Eva', 1911, 'F', 2109), +(13394, 'Viola', 1911, 'F', 2082), +(13395, 'Pearl', 1911, 'F', 2075), +(13396, 'Eleanor', 1911, 'F', 2035), +(13397, 'Myrtle', 1911, 'F', 2033), +(13398, 'Bernice', 1911, 'F', 1915), +(13399, 'Minnie', 1911, 'F', 1899), +(13400, 'Ann', 1911, 'F', 1882), +(13401, 'Nellie', 1911, 'F', 1865), +(13402, 'Katherine', 1911, 'F', 1858), +(13403, 'Doris', 1911, 'F', 1812), +(13404, 'Laura', 1911, 'F', 1790), +(13405, 'Marion', 1911, 'F', 1744), +(13406, 'Marjorie', 1911, 'F', 1722), +(13407, 'Lillie', 1911, 'F', 1690), +(13408, 'Willie', 1911, 'F', 1637), +(13409, 'Alma', 1911, 'F', 1611), +(13410, 'Ella', 1911, 'F', 1605), +(13411, 'Anne', 1911, 'F', 1598), +(13412, 'Mattie', 1911, 'F', 1552), +(13413, 'Jessie', 1911, 'F', 1550), +(13414, 'Vera', 1911, 'F', 1510), +(13415, 'Lois', 1911, 'F', 1508), +(13416, 'Betty', 1911, 'F', 1456), +(13417, 'Lena', 1911, 'F', 1449), +(13418, 'Mae', 1911, 'F', 1449), +(13419, 'Stella', 1911, 'F', 1422), +(13420, 'Kathryn', 1911, 'F', 1397), +(13421, 'Jean', 1911, 'F', 1380), +(13422, 'Blanche', 1911, 'F', 1361), +(13423, 'Leona', 1911, 'F', 1329), +(13424, 'Lucy', 1911, 'F', 1309), +(13425, 'Carrie', 1911, 'F', 1281), +(13426, 'Beulah', 1911, 'F', 1244), +(13427, 'Vivian', 1911, 'F', 1211), +(13428, 'Opal', 1911, 'F', 1190), +(13429, 'Sylvia', 1911, 'F', 1184), +(13430, 'Violet', 1911, 'F', 1183), +(13431, 'Ellen', 1911, 'F', 1162), +(13432, 'Jennie', 1911, 'F', 1161), +(13433, 'Hattie', 1911, 'F', 1135), +(13434, 'Marguerite', 1911, 'F', 1112), +(13435, 'Fannie', 1911, 'F', 1100), +(13436, 'Mamie', 1911, 'F', 1095), +(13437, 'Velma', 1911, 'F', 1045), +(13438, 'Cora', 1911, 'F', 1022), +(13439, 'Rosa', 1911, 'F', 1022), +(13440, 'Genevieve', 1911, 'F', 989), +(13441, 'Lula', 1911, 'F', 970), +(13442, 'Charlotte', 1911, 'F', 960), +(13443, 'Georgia', 1911, 'F', 957), +(13444, 'Ada', 1911, 'F', 939), +(13445, 'Jane', 1911, 'F', 937), +(13446, 'Inez', 1911, 'F', 924), +(13447, 'Theresa', 1911, 'F', 919), +(13448, 'Hilda', 1911, 'F', 916), +(13449, 'Wilma', 1911, 'F', 914), +(13450, 'Emily', 1911, 'F', 909), +(13451, 'Dora', 1911, 'F', 888), +(13452, 'Marian', 1911, 'F', 884), +(13453, 'Estelle', 1911, 'F', 864), +(13454, 'Juanita', 1911, 'F', 862), +(13455, 'Daisy', 1911, 'F', 833), +(13456, 'Eunice', 1911, 'F', 830), +(13457, 'Nancy', 1911, 'F', 827), +(13458, 'Maggie', 1911, 'F', 822), +(13459, 'Susie', 1911, 'F', 822), +(13460, 'Sadie', 1911, 'F', 806), +(13461, 'Alberta', 1911, 'F', 801), +(13462, 'Harriet', 1911, 'F', 791), +(13463, 'Nora', 1911, 'F', 779), +(13464, 'Flora', 1911, 'F', 749), +(13465, 'Loretta', 1911, 'F', 739), +(13466, 'Barbara', 1911, 'F', 737), +(13467, 'Lola', 1911, 'F', 712), +(13468, 'Olive', 1911, 'F', 699), +(13469, 'Geneva', 1911, 'F', 688), +(13470, 'Sara', 1911, 'F', 687), +(13471, 'Christine', 1911, 'F', 686), +(13472, 'Sophie', 1911, 'F', 671), +(13473, 'Kathleen', 1911, 'F', 663), +(13474, 'Mable', 1911, 'F', 659), +(13475, 'Lucile', 1911, 'F', 654), +(13476, 'Maria', 1911, 'F', 646), +(13477, 'Della', 1911, 'F', 645), +(13478, 'Rosie', 1911, 'F', 643), +(13479, 'Verna', 1911, 'F', 639), +(13480, 'Madeline', 1911, 'F', 628), +(13481, 'Geraldine', 1911, 'F', 627), +(13482, 'Lottie', 1911, 'F', 620), +(13483, 'Nettie', 1911, 'F', 617), +(13484, 'Irma', 1911, 'F', 615), +(13485, 'Katie', 1911, 'F', 595), +(13486, 'Erma', 1911, 'F', 594), +(13487, 'Goldie', 1911, 'F', 593), +(13488, 'Naomi', 1911, 'F', 585), +(13489, 'Lydia', 1911, 'F', 568), +(13490, 'Eula', 1911, 'F', 561), +(13491, 'Henrietta', 1911, 'F', 558), +(13492, 'Maude', 1911, 'F', 553), +(13493, 'Caroline', 1911, 'F', 550), +(13494, 'Effie', 1911, 'F', 549), +(13495, 'Rebecca', 1911, 'F', 546), +(13496, 'May', 1911, 'F', 541), +(13497, 'Rachel', 1911, 'F', 537), +(13498, 'Sally', 1911, 'F', 535), +(13499, 'Maxine', 1911, 'F', 531), +(13500, 'Norma', 1911, 'F', 531), +(13501, 'Audrey', 1911, 'F', 527), +(13502, 'Phyllis', 1911, 'F', 527), +(13503, 'Essie', 1911, 'F', 525), +(13504, 'Ollie', 1911, 'F', 521), +(13505, 'Ora', 1911, 'F', 513), +(13506, 'Sallie', 1911, 'F', 509), +(13507, 'Victoria', 1911, 'F', 503), +(13508, 'Addie', 1911, 'F', 497), +(13509, 'Lela', 1911, 'F', 489), +(13510, 'Olga', 1911, 'F', 489), +(13511, 'Miriam', 1911, 'F', 487), +(13512, 'Nina', 1911, 'F', 466), +(13513, 'Winifred', 1911, 'F', 463), +(13514, 'Susan', 1911, 'F', 459), +(13515, 'Isabel', 1911, 'F', 447), +(13516, 'Jeanette', 1911, 'F', 444), +(13517, 'Lizzie', 1911, 'F', 441), +(13518, 'Roberta', 1911, 'F', 441), +(13519, 'Fern', 1911, 'F', 435), +(13520, 'Etta', 1911, 'F', 434), +(13521, 'Amelia', 1911, 'F', 430), +(13522, 'Cecelia', 1911, 'F', 416), +(13523, 'Adeline', 1911, 'F', 413), +(13524, 'Freda', 1911, 'F', 413), +(13525, 'Celia', 1911, 'F', 410), +(13526, 'Rita', 1911, 'F', 403), +(13527, 'Iva', 1911, 'F', 397), +(13528, 'Bonnie', 1911, 'F', 389), +(13529, 'Dorothea', 1911, 'F', 389), +(13530, 'Antoinette', 1911, 'F', 388), +(13531, 'Faye', 1911, 'F', 388), +(13532, 'Carolyn', 1911, 'F', 387), +(13533, 'Janet', 1911, 'F', 386), +(13534, 'Anita', 1911, 'F', 381), +(13535, 'Lorene', 1911, 'F', 380), +(13536, 'Wanda', 1911, 'F', 380), +(13537, 'Mollie', 1911, 'F', 378), +(13538, 'Isabelle', 1911, 'F', 377), +(13539, 'Jeannette', 1911, 'F', 373), +(13540, 'Lorraine', 1911, 'F', 365), +(13541, 'Estella', 1911, 'F', 364), +(13542, 'Ola', 1911, 'F', 364), +(13543, 'Dolores', 1911, 'F', 363), +(13544, 'Leola', 1911, 'F', 363), +(13545, 'Shirley', 1911, 'F', 362), +(13546, 'Angelina', 1911, 'F', 359), +(13547, 'Cleo', 1911, 'F', 358), +(13548, 'Alta', 1911, 'F', 356), +(13549, 'Elva', 1911, 'F', 354), +(13550, 'Muriel', 1911, 'F', 353), +(13551, 'Veronica', 1911, 'F', 353), +(13552, 'Luella', 1911, 'F', 352), +(13553, 'Regina', 1911, 'F', 343), +(13554, 'Cecilia', 1911, 'F', 342), +(13555, 'Fay', 1911, 'F', 339), +(13556, 'Flossie', 1911, 'F', 339), +(13557, 'Jewell', 1911, 'F', 338), +(13558, 'Eileen', 1911, 'F', 336), +(13559, 'Frieda', 1911, 'F', 335), +(13560, 'Claire', 1911, 'F', 333), +(13561, 'Sue', 1911, 'F', 330), +(13562, 'Nannie', 1911, 'F', 329), +(13563, 'Jewel', 1911, 'F', 327), +(13564, 'Marcella', 1911, 'F', 327), +(13565, 'Patricia', 1911, 'F', 325), +(13566, 'Eloise', 1911, 'F', 324), +(13567, 'Nell', 1911, 'F', 322), +(13568, 'Angeline', 1911, 'F', 321), +(13569, 'Matilda', 1911, 'F', 321), +(13570, 'Selma', 1911, 'F', 321), +(13571, 'Janie', 1911, 'F', 317), +(13572, 'Rosalie', 1911, 'F', 309), +(13573, 'Ina', 1911, 'F', 306), +(13574, 'Lila', 1911, 'F', 302), +(13575, 'Adele', 1911, 'F', 298), +(13576, 'Constance', 1911, 'F', 298), +(13577, 'Amy', 1911, 'F', 296), +(13578, 'Angela', 1911, 'F', 292), +(13579, 'Helene', 1911, 'F', 283), +(13580, 'Teresa', 1911, 'F', 281), +(13581, 'Amanda', 1911, 'F', 280), +(13582, 'Hannah', 1911, 'F', 279), +(13583, 'June', 1911, 'F', 278), +(13584, 'Virgie', 1911, 'F', 275), +(13585, 'Sophia', 1911, 'F', 272), +(13586, 'Margie', 1911, 'F', 271), +(13587, 'Zelma', 1911, 'F', 268), +(13588, 'Jeanne', 1911, 'F', 266), +(13589, 'Rena', 1911, 'F', 260), +(13590, 'Reba', 1911, 'F', 259), +(13591, 'Eliza', 1911, 'F', 258), +(13592, 'Lee', 1911, 'F', 258), +(13593, 'Johnnie', 1911, 'F', 256), +(13594, 'Allie', 1911, 'F', 253), +(13595, 'Elma', 1911, 'F', 252), +(13596, 'Gussie', 1911, 'F', 245), +(13597, 'Ila', 1911, 'F', 243), +(13598, 'Ernestine', 1911, 'F', 238), +(13599, 'Winnie', 1911, 'F', 237), +(13600, 'Francis', 1911, 'F', 234), +(13601, 'Joan', 1911, 'F', 233), +(13602, 'Elvira', 1911, 'F', 230), +(13603, 'Annette', 1911, 'F', 227), +(13604, 'Arlene', 1911, 'F', 226), +(13605, 'Letha', 1911, 'F', 225), +(13606, 'Adelaide', 1911, 'F', 223), +(13607, 'Callie', 1911, 'F', 223), +(13608, 'Lessie', 1911, 'F', 220), +(13609, 'Eugenia', 1911, 'F', 219), +(13610, 'Tillie', 1911, 'F', 219), +(13611, 'Kate', 1911, 'F', 216), +(13612, 'Millie', 1911, 'F', 216), +(13613, 'Cornelia', 1911, 'F', 213), +(13614, 'Belle', 1911, 'F', 211), +(13615, 'Lenora', 1911, 'F', 211), +(13616, 'Madge', 1911, 'F', 210), +(13617, 'Elnora', 1911, 'F', 202), +(13618, 'Leah', 1911, 'F', 202), +(13619, 'Hester', 1911, 'F', 201), +(13620, 'Carmen', 1911, 'F', 199), +(13621, 'Elaine', 1911, 'F', 199), +(13622, 'Lora', 1911, 'F', 199), +(13623, 'Gracie', 1911, 'F', 197), +(13624, 'Dollie', 1911, 'F', 196), +(13625, 'Clarice', 1911, 'F', 194), +(13626, 'Gwendolyn', 1911, 'F', 194), +(13627, 'Josie', 1911, 'F', 193), +(13628, 'Augusta', 1911, 'F', 192), +(13629, 'Peggy', 1911, 'F', 192), +(13630, 'Olivia', 1911, 'F', 191), +(13631, 'Natalie', 1911, 'F', 190), +(13632, 'Odessa', 1911, 'F', 187), +(13633, 'Myra', 1911, 'F', 186), +(13634, 'Corinne', 1911, 'F', 185), +(13635, 'Cecile', 1911, 'F', 184), +(13636, 'Hallie', 1911, 'F', 184), +(13637, 'Lorena', 1911, 'F', 184), +(13638, 'Carol', 1911, 'F', 181), +(13639, 'Edythe', 1911, 'F', 181), +(13640, 'Claudia', 1911, 'F', 178), +(13641, 'Harriett', 1911, 'F', 177), +(13642, 'Elinor', 1911, 'F', 176), +(13643, 'Maudie', 1911, 'F', 176), +(13644, 'Rosetta', 1911, 'F', 176), +(13645, 'Dessie', 1911, 'F', 175), +(13646, 'Helena', 1911, 'F', 175), +(13647, 'Bertie', 1911, 'F', 174), +(13648, 'Iris', 1911, 'F', 173), +(13649, 'Carmela', 1911, 'F', 172), +(13650, 'Delia', 1911, 'F', 170), +(13651, 'Frankie', 1911, 'F', 170), +(13652, 'Billie', 1911, 'F', 169), +(13653, 'Neva', 1911, 'F', 168), +(13654, 'Nola', 1911, 'F', 168), +(13655, 'Roxie', 1911, 'F', 168), +(13656, 'Annabelle', 1911, 'F', 164), +(13657, 'Pearlie', 1911, 'F', 163), +(13658, 'Rhoda', 1911, 'F', 161), +(13659, 'Rosemary', 1911, 'F', 160), +(13660, 'Eleanore', 1911, 'F', 159), +(13661, 'Lelia', 1911, 'F', 159), +(13662, 'Lilly', 1911, 'F', 154), +(13663, 'Bettie', 1911, 'F', 153), +(13664, 'Lou', 1911, 'F', 153), +(13665, 'Avis', 1911, 'F', 152), +(13666, 'Corine', 1911, 'F', 152), +(13667, 'Alyce', 1911, 'F', 151), +(13668, 'Connie', 1911, 'F', 151), +(13669, 'Merle', 1911, 'F', 151), +(13670, 'Aileen', 1911, 'F', 150), +(13671, 'Donna', 1911, 'F', 149), +(13672, 'Christina', 1911, 'F', 148), +(13673, 'Katharine', 1911, 'F', 148), +(13674, 'Priscilla', 1911, 'F', 148), +(13675, 'Melba', 1911, 'F', 146), +(13676, 'Willa', 1911, 'F', 145), +(13677, 'Zella', 1911, 'F', 144), +(13678, 'Aline', 1911, 'F', 143), +(13679, 'Leila', 1911, 'F', 143), +(13680, 'Ione', 1911, 'F', 142), +(13681, 'Wilhelmina', 1911, 'F', 141), +(13682, 'Rosella', 1911, 'F', 140), +(13683, 'Concetta', 1911, 'F', 138), +(13684, 'Dolly', 1911, 'F', 138), +(13685, 'Imogene', 1911, 'F', 137), +(13686, 'Joyce', 1911, 'F', 136), +(13687, 'Laverne', 1911, 'F', 136), +(13688, 'Tessie', 1911, 'F', 136), +(13689, 'Maud', 1911, 'F', 135), +(13690, 'Pansy', 1911, 'F', 135), +(13691, 'Arline', 1911, 'F', 133), +(13692, 'Mayme', 1911, 'F', 132), +(13693, 'Nadine', 1911, 'F', 132), +(13694, 'Yvonne', 1911, 'F', 132), +(13695, 'Catharine', 1911, 'F', 131), +(13696, 'Lenore', 1911, 'F', 131), +(13697, 'Erna', 1911, 'F', 130), +(13698, 'Lily', 1911, 'F', 130), +(13699, 'Linda', 1911, 'F', 130), +(13700, 'Isabella', 1911, 'F', 129), +(13701, 'Molly', 1911, 'F', 129), +(13702, 'Ophelia', 1911, 'F', 129), +(13703, 'Gloria', 1911, 'F', 126), +(13704, 'Iola', 1911, 'F', 125), +(13705, 'Oma', 1911, 'F', 125), +(13706, 'Jimmie', 1911, 'F', 123), +(13707, 'Berniece', 1911, 'F', 122), +(13708, 'Dovie', 1911, 'F', 122), +(13709, 'Bernadine', 1911, 'F', 121), +(13710, 'Birdie', 1911, 'F', 121), +(13711, 'Johanna', 1911, 'F', 121), +(13712, 'Leora', 1911, 'F', 121), +(13713, 'Leota', 1911, 'F', 121), +(13714, 'Eddie', 1911, 'F', 120), +(13715, 'Gertie', 1911, 'F', 120), +(13716, 'Isabell', 1911, 'F', 120), +(13717, 'Lucinda', 1911, 'F', 120), +(13718, 'Jannie', 1911, 'F', 119), +(13719, 'Maurine', 1911, 'F', 119), +(13720, 'Stephanie', 1911, 'F', 118), +(13721, 'Alvina', 1911, 'F', 117), +(13722, 'Janice', 1911, 'F', 117), +(13723, 'Zelda', 1911, 'F', 117), +(13724, 'Cecil', 1911, 'F', 116), +(13725, 'Garnet', 1911, 'F', 116), +(13726, 'Loraine', 1911, 'F', 116), +(13727, 'Rubye', 1911, 'F', 116), +(13728, 'Minerva', 1911, 'F', 114), +(13729, 'Kay', 1911, 'F', 111), +(13730, 'Leone', 1911, 'F', 111), +(13731, 'Vesta', 1911, 'F', 111), +(13732, 'Alpha', 1911, 'F', 110), +(13733, 'Iona', 1911, 'F', 110), +(13734, 'Louella', 1911, 'F', 110), +(13735, 'Antonia', 1911, 'F', 109), +(13736, 'Philomena', 1911, 'F', 109), +(13737, 'Georgie', 1911, 'F', 108), +(13738, 'Vada', 1911, 'F', 106), +(13739, 'Cynthia', 1911, 'F', 105), +(13740, 'Mona', 1911, 'F', 105), +(13741, 'Paula', 1911, 'F', 105), +(13742, 'Rae', 1911, 'F', 105), +(13743, 'Hortense', 1911, 'F', 104), +(13744, 'Lona', 1911, 'F', 104), +(13745, 'Blanch', 1911, 'F', 103), +(13746, 'Elsa', 1911, 'F', 103), +(13747, 'Ester', 1911, 'F', 101), +(13748, 'Vida', 1911, 'F', 101), +(13749, 'Artie', 1911, 'F', 100), +(13750, 'Fanny', 1911, 'F', 100), +(13751, 'Lura', 1911, 'F', 100), +(13752, 'Queen', 1911, 'F', 100), +(13753, 'John', 1911, 'M', 13445), +(13754, 'William', 1911, 'M', 10593), +(13755, 'James', 1911, 'M', 9951), +(13756, 'George', 1911, 'M', 6586), +(13757, 'Robert', 1911, 'M', 6526), +(13758, 'Joseph', 1911, 'M', 6488), +(13759, 'Charles', 1911, 'M', 5725), +(13760, 'Frank', 1911, 'M', 4314), +(13761, 'Edward', 1911, 'M', 4164), +(13762, 'Thomas', 1911, 'M', 3293), +(13763, 'Henry', 1911, 'M', 3167), +(13764, 'Walter', 1911, 'M', 3074), +(13765, 'Harry', 1911, 'M', 2538), +(13766, 'Willie', 1911, 'M', 2492), +(13767, 'Albert', 1911, 'M', 2478), +(13768, 'Harold', 1911, 'M', 2448), +(13769, 'Paul', 1911, 'M', 2393), +(13770, 'Arthur', 1911, 'M', 2376), +(13771, 'Raymond', 1911, 'M', 2088), +(13772, 'Richard', 1911, 'M', 2030), +(13773, 'Louis', 1911, 'M', 1838), +(13774, 'Fred', 1911, 'M', 1808), +(13775, 'Clarence', 1911, 'M', 1774), +(13776, 'Ralph', 1911, 'M', 1674), +(13777, 'Jack', 1911, 'M', 1668), +(13778, 'Carl', 1911, 'M', 1574), +(13779, 'David', 1911, 'M', 1556), +(13780, 'Howard', 1911, 'M', 1467), +(13781, 'Joe', 1911, 'M', 1449), +(13782, 'Samuel', 1911, 'M', 1398), +(13783, 'Roy', 1911, 'M', 1394), +(13784, 'Ernest', 1911, 'M', 1338), +(13785, 'Francis', 1911, 'M', 1311), +(13786, 'Earl', 1911, 'M', 1305), +(13787, 'Anthony', 1911, 'M', 1288), +(13788, 'Donald', 1911, 'M', 1275), +(13789, 'Lawrence', 1911, 'M', 1221), +(13790, 'Michael', 1911, 'M', 1159), +(13791, 'Alfred', 1911, 'M', 1158), +(13792, 'Kenneth', 1911, 'M', 1149), +(13793, 'Herbert', 1911, 'M', 1125), +(13794, 'Andrew', 1911, 'M', 1098), +(13795, 'Eugene', 1911, 'M', 1058), +(13796, 'Stanley', 1911, 'M', 997), +(13797, 'Charlie', 1911, 'M', 978), +(13798, 'Leonard', 1911, 'M', 953), +(13799, 'Sam', 1911, 'M', 928), +(13800, 'Elmer', 1911, 'M', 894), +(13801, 'Herman', 1911, 'M', 853), +(13802, 'Peter', 1911, 'M', 845), +(13803, 'Leo', 1911, 'M', 844), +(13804, 'Frederick', 1911, 'M', 802), +(13805, 'Daniel', 1911, 'M', 795), +(13806, 'Bernard', 1911, 'M', 777), +(13807, 'Russell', 1911, 'M', 770), +(13808, 'Theodore', 1911, 'M', 753), +(13809, 'Floyd', 1911, 'M', 734), +(13810, 'Chester', 1911, 'M', 708), +(13811, 'Leroy', 1911, 'M', 706), +(13812, 'Edwin', 1911, 'M', 699), +(13813, 'Clyde', 1911, 'M', 697), +(13814, 'Clifford', 1911, 'M', 694), +(13815, 'Norman', 1911, 'M', 691), +(13816, 'Benjamin', 1911, 'M', 690), +(13817, 'Lester', 1911, 'M', 657), +(13818, 'Lewis', 1911, 'M', 654), +(13819, 'Lee', 1911, 'M', 646), +(13820, 'Oscar', 1911, 'M', 636), +(13821, 'Philip', 1911, 'M', 612), +(13822, 'Milton', 1911, 'M', 608), +(13823, 'Ray', 1911, 'M', 602), +(13824, 'Jesse', 1911, 'M', 597), +(13825, 'Melvin', 1911, 'M', 594), +(13826, 'Lloyd', 1911, 'M', 590), +(13827, 'Martin', 1911, 'M', 567), +(13828, 'Cecil', 1911, 'M', 560), +(13829, 'Leon', 1911, 'M', 540), +(13830, 'Eddie', 1911, 'M', 523), +(13831, 'Jessie', 1911, 'M', 500), +(13832, 'Vincent', 1911, 'M', 496), +(13833, 'Victor', 1911, 'M', 493), +(13834, 'Marvin', 1911, 'M', 488), +(13835, 'Edgar', 1911, 'M', 486), +(13836, 'Stephen', 1911, 'M', 486), +(13837, 'Morris', 1911, 'M', 478), +(13838, 'Ben', 1911, 'M', 467), +(13839, 'Claude', 1911, 'M', 466), +(13840, 'Gerald', 1911, 'M', 462), +(13841, 'Alvin', 1911, 'M', 460), +(13842, 'Johnnie', 1911, 'M', 455), +(13843, 'Harvey', 1911, 'M', 446), +(13844, 'Sidney', 1911, 'M', 433), +(13845, 'Irving', 1911, 'M', 431), +(13846, 'Alexander', 1911, 'M', 426), +(13847, 'Homer', 1911, 'M', 419), +(13848, 'Vernon', 1911, 'M', 418), +(13849, 'Gordon', 1911, 'M', 404), +(13850, 'Allen', 1911, 'M', 402), +(13851, 'Maurice', 1911, 'M', 397), +(13852, 'Luther', 1911, 'M', 394), +(13853, 'Wilbur', 1911, 'M', 386), +(13854, 'Everett', 1911, 'M', 384), +(13855, 'Gilbert', 1911, 'M', 369), +(13856, 'Julius', 1911, 'M', 368), +(13857, 'Tom', 1911, 'M', 365), +(13858, 'Max', 1911, 'M', 360), +(13859, 'Virgil', 1911, 'M', 355), +(13860, 'Arnold', 1911, 'M', 348), +(13861, 'Nathan', 1911, 'M', 348), +(13862, 'Marion', 1911, 'M', 346), +(13863, 'Glenn', 1911, 'M', 343), +(13864, 'Manuel', 1911, 'M', 340), +(13865, 'Warren', 1911, 'M', 338), +(13866, 'Willard', 1911, 'M', 338), +(13867, 'Oliver', 1911, 'M', 333), +(13868, 'Jacob', 1911, 'M', 323), +(13869, 'Leslie', 1911, 'M', 323), +(13870, 'Curtis', 1911, 'M', 321), +(13871, 'Hubert', 1911, 'M', 316), +(13872, 'Nicholas', 1911, 'M', 308), +(13873, 'Hugh', 1911, 'M', 307), +(13874, 'Otis', 1911, 'M', 302), +(13875, 'Horace', 1911, 'M', 300), +(13876, 'Abraham', 1911, 'M', 292), +(13877, 'Earnest', 1911, 'M', 283), +(13878, 'Wayne', 1911, 'M', 280), +(13879, 'Archie', 1911, 'M', 272), +(13880, 'Patrick', 1911, 'M', 272), +(13881, 'Alex', 1911, 'M', 268), +(13882, 'Jose', 1911, 'M', 268), +(13883, 'Wesley', 1911, 'M', 261), +(13884, 'Wallace', 1911, 'M', 257), +(13885, 'Steve', 1911, 'M', 255), +(13886, 'Jim', 1911, 'M', 245), +(13887, 'Bill', 1911, 'M', 243), +(13888, 'Guy', 1911, 'M', 243), +(13889, 'Jimmie', 1911, 'M', 243), +(13890, 'Mike', 1911, 'M', 243), +(13891, 'Roger', 1911, 'M', 241), +(13892, 'Jerry', 1911, 'M', 238), +(13893, 'Ira', 1911, 'M', 236), +(13894, 'Edmund', 1911, 'M', 235), +(13895, 'Isaac', 1911, 'M', 233), +(13896, 'Willis', 1911, 'M', 233), +(13897, 'Glen', 1911, 'M', 231), +(13898, 'Orville', 1911, 'M', 230), +(13899, 'Roland', 1911, 'M', 230), +(13900, 'Rufus', 1911, 'M', 230), +(13901, 'Will', 1911, 'M', 230), +(13902, 'Otto', 1911, 'M', 228), +(13903, 'Bennie', 1911, 'M', 227), +(13904, 'Franklin', 1911, 'M', 220), +(13905, 'Matthew', 1911, 'M', 220), +(13906, 'Sylvester', 1911, 'M', 219), +(13907, 'Rudolph', 1911, 'M', 217), +(13908, 'Emil', 1911, 'M', 214), +(13909, 'Calvin', 1911, 'M', 213), +(13910, 'Lonnie', 1911, 'M', 213), +(13911, 'Jerome', 1911, 'M', 212), +(13912, 'Phillip', 1911, 'M', 212), +(13913, 'Nathaniel', 1911, 'M', 207), +(13914, 'Tony', 1911, 'M', 207), +(13915, 'Clifton', 1911, 'M', 206), +(13916, 'Dan', 1911, 'M', 205), +(13917, 'Clayton', 1911, 'M', 203), +(13918, 'Salvatore', 1911, 'M', 200), +(13919, 'Mack', 1911, 'M', 197), +(13920, 'Roosevelt', 1911, 'M', 197), +(13921, 'Elbert', 1911, 'M', 195), +(13922, 'Adam', 1911, 'M', 189), +(13923, 'Aaron', 1911, 'M', 187), +(13924, 'Johnie', 1911, 'M', 184), +(13925, 'Percy', 1911, 'M', 184), +(13926, 'Angelo', 1911, 'M', 181), +(13927, 'Nelson', 1911, 'M', 180), +(13928, 'Clinton', 1911, 'M', 179), +(13929, 'Marshall', 1911, 'M', 178), +(13930, 'Bert', 1911, 'M', 177), +(13931, 'Felix', 1911, 'M', 173), +(13932, 'Grady', 1911, 'M', 173), +(13933, 'Douglas', 1911, 'M', 169), +(13934, 'Amos', 1911, 'M', 168), +(13935, 'Wilfred', 1911, 'M', 168), +(13936, 'Don', 1911, 'M', 167), +(13937, 'Ellis', 1911, 'M', 167), +(13938, 'Wilbert', 1911, 'M', 167), +(13939, 'Antonio', 1911, 'M', 166), +(13940, 'August', 1911, 'M', 166), +(13941, 'Dennis', 1911, 'M', 166), +(13942, 'Ed', 1911, 'M', 164), +(13943, 'Irvin', 1911, 'M', 164), +(13944, 'Adolph', 1911, 'M', 161), +(13945, 'Charley', 1911, 'M', 160), +(13946, 'Alton', 1911, 'M', 156), +(13947, 'Karl', 1911, 'M', 156), +(13948, 'Owen', 1911, 'M', 156), +(13949, 'Bruce', 1911, 'M', 155), +(13950, 'Forrest', 1911, 'M', 152), +(13951, 'Juan', 1911, 'M', 152), +(13952, 'Julian', 1911, 'M', 152), +(13953, 'Perry', 1911, 'M', 152), +(13954, 'Tommie', 1911, 'M', 152), +(13955, 'Dale', 1911, 'M', 150), +(13956, 'Johnny', 1911, 'M', 147), +(13957, 'Ervin', 1911, 'M', 144), +(13958, 'Pete', 1911, 'M', 143), +(13959, 'Mark', 1911, 'M', 142), +(13960, 'Emmett', 1911, 'M', 141), +(13961, 'Delbert', 1911, 'M', 140), +(13962, 'Malcolm', 1911, 'M', 140), +(13963, 'Ross', 1911, 'M', 140), +(13964, 'Murray', 1911, 'M', 139), +(13965, 'Cornelius', 1911, 'M', 138), +(13966, 'Hyman', 1911, 'M', 137), +(13967, 'Ivan', 1911, 'M', 137), +(13968, 'Loyd', 1911, 'M', 137), +(13969, 'Simon', 1911, 'M', 137), +(13970, 'Ronald', 1911, 'M', 136), +(13971, 'Dave', 1911, 'M', 135), +(13972, 'Nick', 1911, 'M', 130), +(13973, 'Solomon', 1911, 'M', 129), +(13974, 'Wilson', 1911, 'M', 129), +(13975, 'Alonzo', 1911, 'M', 128), +(13976, 'Lyle', 1911, 'M', 128), +(13977, 'Moses', 1911, 'M', 128), +(13978, 'Preston', 1911, 'M', 128), +(13979, 'Leland', 1911, 'M', 127), +(13980, 'Roscoe', 1911, 'M', 127), +(13981, 'Jay', 1911, 'M', 126), +(13982, 'Emanuel', 1911, 'M', 124), +(13983, 'Sherman', 1911, 'M', 123), +(13984, 'Dominic', 1911, 'M', 121), +(13985, 'Laurence', 1911, 'M', 121), +(13986, 'Woodrow', 1911, 'M', 121), +(13987, 'Dominick', 1911, 'M', 119), +(13988, 'Merle', 1911, 'M', 115), +(13989, 'Elwood', 1911, 'M', 114), +(13990, 'Grover', 1911, 'M', 114), +(13991, 'Jasper', 1911, 'M', 114), +(13992, 'Carroll', 1911, 'M', 113), +(13993, 'Booker', 1911, 'M', 110), +(13994, 'Buster', 1911, 'M', 110), +(13995, 'Cleveland', 1911, 'M', 110), +(13996, 'Jake', 1911, 'M', 110), +(13997, 'Ollie', 1911, 'M', 109), +(13998, 'Reuben', 1911, 'M', 109), +(13999, 'Carlton', 1911, 'M', 108), +(14000, 'Aubrey', 1911, 'M', 107), +(14001, 'Dewey', 1911, 'M', 107), +(14002, 'Jess', 1911, 'M', 106), +(14003, 'Elmo', 1911, 'M', 104), +(14004, 'Lowell', 1911, 'M', 104), +(14005, 'Myron', 1911, 'M', 104), +(14006, 'Gene', 1911, 'M', 102), +(14007, 'Allan', 1911, 'M', 101), +(14008, 'Austin', 1911, 'M', 101), +(14009, 'Freddie', 1911, 'M', 100), +(14010, 'Gus', 1911, 'M', 100), +(14011, 'Millard', 1911, 'M', 100), +(14012, 'Troy', 1911, 'M', 100), +(14013, 'Mary', 1912, 'F', 32303), +(14014, 'Helen', 1912, 'F', 16133), +(14015, 'Dorothy', 1912, 'F', 12645), +(14016, 'Margaret', 1912, 'F', 12535), +(14017, 'Ruth', 1912, 'F', 11278), +(14018, 'Mildred', 1912, 'F', 8764), +(14019, 'Anna', 1912, 'F', 8586), +(14020, 'Elizabeth', 1912, 'F', 8528), +(14021, 'Frances', 1912, 'F', 6680), +(14022, 'Marie', 1912, 'F', 6642), +(14023, 'Alice', 1912, 'F', 6285), +(14024, 'Florence', 1912, 'F', 5739), +(14025, 'Evelyn', 1912, 'F', 5620), +(14026, 'Lillian', 1912, 'F', 5568), +(14027, 'Rose', 1912, 'F', 5431), +(14028, 'Edna', 1912, 'F', 5135), +(14029, 'Louise', 1912, 'F', 5116), +(14030, 'Ethel', 1912, 'F', 5073), +(14031, 'Gladys', 1912, 'F', 4980), +(14032, 'Virginia', 1912, 'F', 4809), +(14033, 'Catherine', 1912, 'F', 4666); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(14034, 'Irene', 1912, 'F', 4646), +(14035, 'Ruby', 1912, 'F', 4451), +(14036, 'Grace', 1912, 'F', 4418), +(14037, 'Hazel', 1912, 'F', 4197), +(14038, 'Thelma', 1912, 'F', 4183), +(14039, 'Annie', 1912, 'F', 4083), +(14040, 'Josephine', 1912, 'F', 3980), +(14041, 'Martha', 1912, 'F', 3911), +(14042, 'Gertrude', 1912, 'F', 3887), +(14043, 'Edith', 1912, 'F', 3841), +(14044, 'Lucille', 1912, 'F', 3763), +(14045, 'Esther', 1912, 'F', 3569), +(14046, 'Clara', 1912, 'F', 3480), +(14047, 'Emma', 1912, 'F', 3357), +(14048, 'Bertha', 1912, 'F', 3288), +(14049, 'Beatrice', 1912, 'F', 3205), +(14050, 'Pauline', 1912, 'F', 3163), +(14051, 'Eleanor', 1912, 'F', 3120), +(14052, 'Agnes', 1912, 'F', 2945), +(14053, 'Sarah', 1912, 'F', 2919), +(14054, 'Elsie', 1912, 'F', 2895), +(14055, 'Bessie', 1912, 'F', 2832), +(14056, 'Julia', 1912, 'F', 2825), +(14057, 'Ida', 1912, 'F', 2740), +(14058, 'Mabel', 1912, 'F', 2714), +(14059, 'Ann', 1912, 'F', 2666), +(14060, 'Doris', 1912, 'F', 2657), +(14061, 'Eva', 1912, 'F', 2636), +(14062, 'Myrtle', 1912, 'F', 2599), +(14063, 'Bernice', 1912, 'F', 2593), +(14064, 'Viola', 1912, 'F', 2550), +(14065, 'Katherine', 1912, 'F', 2545), +(14066, 'Pearl', 1912, 'F', 2528), +(14067, 'Marion', 1912, 'F', 2522), +(14068, 'Marjorie', 1912, 'F', 2468), +(14069, 'Laura', 1912, 'F', 2413), +(14070, 'Anne', 1912, 'F', 2369), +(14071, 'Nellie', 1912, 'F', 2365), +(14072, 'Minnie', 1912, 'F', 2295), +(14073, 'Willie', 1912, 'F', 2267), +(14074, 'Alma', 1912, 'F', 2183), +(14075, 'Lois', 1912, 'F', 2146), +(14076, 'Jean', 1912, 'F', 2056), +(14077, 'Jessie', 1912, 'F', 2052), +(14078, 'Betty', 1912, 'F', 2011), +(14079, 'Lillie', 1912, 'F', 2003), +(14080, 'Vera', 1912, 'F', 1974), +(14081, 'Ella', 1912, 'F', 1921), +(14082, 'Mattie', 1912, 'F', 1915), +(14083, 'Kathryn', 1912, 'F', 1905), +(14084, 'Lena', 1912, 'F', 1902), +(14085, 'Stella', 1912, 'F', 1834), +(14086, 'Mae', 1912, 'F', 1775), +(14087, 'Blanche', 1912, 'F', 1761), +(14088, 'Leona', 1912, 'F', 1650), +(14089, 'Sylvia', 1912, 'F', 1638), +(14090, 'Lucy', 1912, 'F', 1636), +(14091, 'Marguerite', 1912, 'F', 1620), +(14092, 'Beulah', 1912, 'F', 1607), +(14093, 'Jennie', 1912, 'F', 1595), +(14094, 'Carrie', 1912, 'F', 1580), +(14095, 'Violet', 1912, 'F', 1535), +(14096, 'Vivian', 1912, 'F', 1487), +(14097, 'Opal', 1912, 'F', 1465), +(14098, 'Ellen', 1912, 'F', 1449), +(14099, 'Fannie', 1912, 'F', 1425), +(14100, 'Velma', 1912, 'F', 1403), +(14101, 'Jane', 1912, 'F', 1390), +(14102, 'Hattie', 1912, 'F', 1389), +(14103, 'Charlotte', 1912, 'F', 1375), +(14104, 'Genevieve', 1912, 'F', 1353), +(14105, 'Marian', 1912, 'F', 1313), +(14106, 'Rosa', 1912, 'F', 1305), +(14107, 'Mamie', 1912, 'F', 1273), +(14108, 'Ada', 1912, 'F', 1268), +(14109, 'Theresa', 1912, 'F', 1268), +(14110, 'Cora', 1912, 'F', 1253), +(14111, 'Wilma', 1912, 'F', 1241), +(14112, 'Inez', 1912, 'F', 1228), +(14113, 'Georgia', 1912, 'F', 1195), +(14114, 'Barbara', 1912, 'F', 1184), +(14115, 'Juanita', 1912, 'F', 1182), +(14116, 'Hilda', 1912, 'F', 1158), +(14117, 'Emily', 1912, 'F', 1147), +(14118, 'Alberta', 1912, 'F', 1133), +(14119, 'Lula', 1912, 'F', 1094), +(14120, 'Nancy', 1912, 'F', 1078), +(14121, 'Eunice', 1912, 'F', 1066), +(14122, 'Dora', 1912, 'F', 1061), +(14123, 'Estelle', 1912, 'F', 1053), +(14124, 'Daisy', 1912, 'F', 1044), +(14125, 'Harriet', 1912, 'F', 1043), +(14126, 'Sadie', 1912, 'F', 1032), +(14127, 'Maggie', 1912, 'F', 1013), +(14128, 'Geneva', 1912, 'F', 991), +(14129, 'Sophie', 1912, 'F', 989), +(14130, 'Kathleen', 1912, 'F', 985), +(14131, 'Loretta', 1912, 'F', 978), +(14132, 'Susie', 1912, 'F', 976), +(14133, 'Sara', 1912, 'F', 962), +(14134, 'Geraldine', 1912, 'F', 949), +(14135, 'Christine', 1912, 'F', 944), +(14136, 'Madeline', 1912, 'F', 942), +(14137, 'Mable', 1912, 'F', 919), +(14138, 'Verna', 1912, 'F', 914), +(14139, 'Lola', 1912, 'F', 903), +(14140, 'Flora', 1912, 'F', 899), +(14141, 'Lucile', 1912, 'F', 882), +(14142, 'Nora', 1912, 'F', 882), +(14143, 'Olive', 1912, 'F', 874), +(14144, 'Naomi', 1912, 'F', 834), +(14145, 'Maria', 1912, 'F', 828), +(14146, 'Maxine', 1912, 'F', 823), +(14147, 'Henrietta', 1912, 'F', 822), +(14148, 'Sally', 1912, 'F', 821), +(14149, 'Norma', 1912, 'F', 800), +(14150, 'Rosie', 1912, 'F', 793), +(14151, 'Caroline', 1912, 'F', 785), +(14152, 'Phyllis', 1912, 'F', 779), +(14153, 'Erma', 1912, 'F', 774), +(14154, 'Lottie', 1912, 'F', 772), +(14155, 'Nettie', 1912, 'F', 762), +(14156, 'Rebecca', 1912, 'F', 754), +(14157, 'Audrey', 1912, 'F', 745), +(14158, 'Irma', 1912, 'F', 743), +(14159, 'Eula', 1912, 'F', 742), +(14160, 'Della', 1912, 'F', 733), +(14161, 'Katie', 1912, 'F', 732), +(14162, 'Victoria', 1912, 'F', 711), +(14163, 'Rachel', 1912, 'F', 703), +(14164, 'Lydia', 1912, 'F', 701), +(14165, 'May', 1912, 'F', 698), +(14166, 'Olga', 1912, 'F', 696), +(14167, 'Essie', 1912, 'F', 695), +(14168, 'Muriel', 1912, 'F', 695), +(14169, 'Roberta', 1912, 'F', 693), +(14170, 'Goldie', 1912, 'F', 688), +(14171, 'Miriam', 1912, 'F', 686), +(14172, 'Amelia', 1912, 'F', 672), +(14173, 'Effie', 1912, 'F', 666), +(14174, 'Winifred', 1912, 'F', 662), +(14175, 'Ollie', 1912, 'F', 644), +(14176, 'Sallie', 1912, 'F', 637), +(14177, 'Rita', 1912, 'F', 636), +(14178, 'Jeanette', 1912, 'F', 623), +(14179, 'Fern', 1912, 'F', 613), +(14180, 'Ora', 1912, 'F', 605), +(14181, 'Maude', 1912, 'F', 598), +(14182, 'Nina', 1912, 'F', 582), +(14183, 'Addie', 1912, 'F', 578), +(14184, 'Adeline', 1912, 'F', 570), +(14185, 'Freda', 1912, 'F', 566), +(14186, 'Dorothea', 1912, 'F', 562), +(14187, 'Isabel', 1912, 'F', 556), +(14188, 'Lorraine', 1912, 'F', 554), +(14189, 'Janet', 1912, 'F', 553), +(14190, 'Veronica', 1912, 'F', 552), +(14191, 'Iva', 1912, 'F', 550), +(14192, 'Lizzie', 1912, 'F', 548), +(14193, 'Wanda', 1912, 'F', 545), +(14194, 'Anita', 1912, 'F', 540), +(14195, 'Bonnie', 1912, 'F', 539), +(14196, 'Lela', 1912, 'F', 523), +(14197, 'Dolores', 1912, 'F', 522), +(14198, 'Susan', 1912, 'F', 522), +(14199, 'Isabelle', 1912, 'F', 520), +(14200, 'Celia', 1912, 'F', 519), +(14201, 'Carolyn', 1912, 'F', 517), +(14202, 'Leola', 1912, 'F', 514), +(14203, 'Cecelia', 1912, 'F', 513), +(14204, 'Etta', 1912, 'F', 510), +(14205, 'Ola', 1912, 'F', 509), +(14206, 'Antoinette', 1912, 'F', 507), +(14207, 'Patricia', 1912, 'F', 504), +(14208, 'Lorene', 1912, 'F', 500), +(14209, 'Marcella', 1912, 'F', 490), +(14210, 'Shirley', 1912, 'F', 489), +(14211, 'Jeannette', 1912, 'F', 487), +(14212, 'Luella', 1912, 'F', 483), +(14213, 'Regina', 1912, 'F', 483), +(14214, 'Eloise', 1912, 'F', 474), +(14215, 'Eileen', 1912, 'F', 470), +(14216, 'Cleo', 1912, 'F', 469), +(14217, 'June', 1912, 'F', 467), +(14218, 'Mollie', 1912, 'F', 463), +(14219, 'Alta', 1912, 'F', 459), +(14220, 'Faye', 1912, 'F', 459), +(14221, 'Jewell', 1912, 'F', 456), +(14222, 'Cecilia', 1912, 'F', 453), +(14223, 'Frieda', 1912, 'F', 445), +(14224, 'Claire', 1912, 'F', 440), +(14225, 'Fay', 1912, 'F', 436), +(14226, 'Rosalie', 1912, 'F', 433), +(14227, 'Sue', 1912, 'F', 431), +(14228, 'Elva', 1912, 'F', 430), +(14229, 'Nannie', 1912, 'F', 427), +(14230, 'Nell', 1912, 'F', 422), +(14231, 'Ina', 1912, 'F', 419), +(14232, 'Adele', 1912, 'F', 418), +(14233, 'Janie', 1912, 'F', 416), +(14234, 'Jewel', 1912, 'F', 416), +(14235, 'Angela', 1912, 'F', 398), +(14236, 'Matilda', 1912, 'F', 398), +(14237, 'Sophia', 1912, 'F', 397), +(14238, 'Lila', 1912, 'F', 396), +(14239, 'Estella', 1912, 'F', 394), +(14240, 'Flossie', 1912, 'F', 393), +(14241, 'Angelina', 1912, 'F', 387), +(14242, 'Selma', 1912, 'F', 387), +(14243, 'Angeline', 1912, 'F', 386), +(14244, 'Helene', 1912, 'F', 378), +(14245, 'Constance', 1912, 'F', 375), +(14246, 'Elma', 1912, 'F', 375), +(14247, 'Amy', 1912, 'F', 371), +(14248, 'Johnnie', 1912, 'F', 365), +(14249, 'Hannah', 1912, 'F', 359), +(14250, 'Avis', 1912, 'F', 358), +(14251, 'Margie', 1912, 'F', 356), +(14252, 'Ernestine', 1912, 'F', 354), +(14253, 'Jeanne', 1912, 'F', 347), +(14254, 'Teresa', 1912, 'F', 344), +(14255, 'Annette', 1912, 'F', 342), +(14256, 'Virgie', 1912, 'F', 342), +(14257, 'Reba', 1912, 'F', 335), +(14258, 'Arlene', 1912, 'F', 325), +(14259, 'Carol', 1912, 'F', 324), +(14260, 'Allie', 1912, 'F', 322), +(14261, 'Rena', 1912, 'F', 319), +(14262, 'Joan', 1912, 'F', 317), +(14263, 'Elnora', 1912, 'F', 315), +(14264, 'Elaine', 1912, 'F', 313), +(14265, 'Lee', 1912, 'F', 312), +(14266, 'Amanda', 1912, 'F', 310), +(14267, 'Zelma', 1912, 'F', 307), +(14268, 'Elvira', 1912, 'F', 305), +(14269, 'Leah', 1912, 'F', 302), +(14270, 'Adelaide', 1912, 'F', 299), +(14271, 'Rosemary', 1912, 'F', 298), +(14272, 'Eliza', 1912, 'F', 297), +(14273, 'Edythe', 1912, 'F', 293), +(14274, 'Millie', 1912, 'F', 293), +(14275, 'Gracie', 1912, 'F', 289), +(14276, 'Olivia', 1912, 'F', 285), +(14277, 'Tillie', 1912, 'F', 283), +(14278, 'Lenora', 1912, 'F', 281), +(14279, 'Belle', 1912, 'F', 279), +(14280, 'Winnie', 1912, 'F', 277), +(14281, 'Gwendolyn', 1912, 'F', 276), +(14282, 'Cecile', 1912, 'F', 275), +(14283, 'Ila', 1912, 'F', 274), +(14284, 'Francis', 1912, 'F', 273), +(14285, 'Dollie', 1912, 'F', 272), +(14286, 'Josie', 1912, 'F', 269), +(14287, 'Elinor', 1912, 'F', 268), +(14288, 'Eugenia', 1912, 'F', 266), +(14289, 'Hester', 1912, 'F', 265), +(14290, 'Harriett', 1912, 'F', 262), +(14291, 'Katharine', 1912, 'F', 261), +(14292, 'Letha', 1912, 'F', 261), +(14293, 'Kate', 1912, 'F', 260), +(14294, 'Gussie', 1912, 'F', 259), +(14295, 'Billie', 1912, 'F', 258), +(14296, 'Clarice', 1912, 'F', 254), +(14297, 'Cornelia', 1912, 'F', 254), +(14298, 'Callie', 1912, 'F', 253), +(14299, 'Eleanore', 1912, 'F', 253), +(14300, 'Augusta', 1912, 'F', 252), +(14301, 'Peggy', 1912, 'F', 251), +(14302, 'Lessie', 1912, 'F', 246), +(14303, 'Lily', 1912, 'F', 245), +(14304, 'Lora', 1912, 'F', 245), +(14305, 'Rosetta', 1912, 'F', 240), +(14306, 'Corinne', 1912, 'F', 239), +(14307, 'Lorena', 1912, 'F', 238), +(14308, 'Madge', 1912, 'F', 234), +(14309, 'Carmen', 1912, 'F', 231), +(14310, 'Donna', 1912, 'F', 227), +(14311, 'Laverne', 1912, 'F', 225), +(14312, 'Odessa', 1912, 'F', 225), +(14313, 'Claudia', 1912, 'F', 224), +(14314, 'Myra', 1912, 'F', 224), +(14315, 'Neva', 1912, 'F', 224), +(14316, 'Bertie', 1912, 'F', 222), +(14317, 'Joyce', 1912, 'F', 222), +(14318, 'Natalie', 1912, 'F', 222), +(14319, 'Merle', 1912, 'F', 221), +(14320, 'Helena', 1912, 'F', 220), +(14321, 'Iris', 1912, 'F', 220), +(14322, 'Annabelle', 1912, 'F', 219), +(14323, 'Maudie', 1912, 'F', 218), +(14324, 'Melba', 1912, 'F', 218), +(14325, 'Yvonne', 1912, 'F', 217), +(14326, 'Carmela', 1912, 'F', 213), +(14327, 'Lou', 1912, 'F', 212), +(14328, 'Nola', 1912, 'F', 211), +(14329, 'Ophelia', 1912, 'F', 208), +(14330, 'Frankie', 1912, 'F', 207), +(14331, 'Priscilla', 1912, 'F', 205), +(14332, 'Roxie', 1912, 'F', 204), +(14333, 'Aline', 1912, 'F', 202), +(14334, 'Christina', 1912, 'F', 202), +(14335, 'Molly', 1912, 'F', 197), +(14336, 'Pearlie', 1912, 'F', 197), +(14337, 'Leila', 1912, 'F', 195), +(14338, 'Aileen', 1912, 'F', 192), +(14339, 'Bettie', 1912, 'F', 191), +(14340, 'Wilhelmina', 1912, 'F', 191), +(14341, 'Linda', 1912, 'F', 189), +(14342, 'Rhoda', 1912, 'F', 189), +(14343, 'Dolly', 1912, 'F', 188), +(14344, 'Johanna', 1912, 'F', 188), +(14345, 'Lelia', 1912, 'F', 186), +(14346, 'Rosella', 1912, 'F', 186), +(14347, 'Zella', 1912, 'F', 186), +(14348, 'Berniece', 1912, 'F', 185), +(14349, 'Birdie', 1912, 'F', 185), +(14350, 'Connie', 1912, 'F', 185), +(14351, 'Catharine', 1912, 'F', 183), +(14352, 'Alyce', 1912, 'F', 182), +(14353, 'Hallie', 1912, 'F', 182), +(14354, 'Corine', 1912, 'F', 181), +(14355, 'Iola', 1912, 'F', 181), +(14356, 'Willa', 1912, 'F', 180), +(14357, 'Ione', 1912, 'F', 178), +(14358, 'Dovie', 1912, 'F', 175), +(14359, 'Bernadine', 1912, 'F', 172), +(14360, 'Erna', 1912, 'F', 172), +(14361, 'Imogene', 1912, 'F', 172), +(14362, 'Delia', 1912, 'F', 171), +(14363, 'Tessie', 1912, 'F', 170), +(14364, 'Vesta', 1912, 'F', 169), +(14365, 'Lenore', 1912, 'F', 168), +(14366, 'Lilly', 1912, 'F', 168), +(14367, 'Mayme', 1912, 'F', 165), +(14368, 'Stephanie', 1912, 'F', 165), +(14369, 'Oma', 1912, 'F', 164), +(14370, 'Paula', 1912, 'F', 164), +(14371, 'Loraine', 1912, 'F', 163), +(14372, 'Jimmie', 1912, 'F', 162), +(14373, 'Isabella', 1912, 'F', 161), +(14374, 'Maurine', 1912, 'F', 161), +(14375, 'Eddie', 1912, 'F', 160), +(14376, 'Isabell', 1912, 'F', 160), +(14377, 'Gloria', 1912, 'F', 159), +(14378, 'Rubye', 1912, 'F', 158), +(14379, 'Cynthia', 1912, 'F', 157), +(14380, 'Nadine', 1912, 'F', 157), +(14381, 'Pansy', 1912, 'F', 157), +(14382, 'Arline', 1912, 'F', 156), +(14383, 'Leota', 1912, 'F', 156), +(14384, 'Mona', 1912, 'F', 156), +(14385, 'Dessie', 1912, 'F', 155), +(14386, 'Concetta', 1912, 'F', 153), +(14387, 'Allene', 1912, 'F', 152), +(14388, 'Beryl', 1912, 'F', 149), +(14389, 'Maud', 1912, 'F', 149), +(14390, 'Alvina', 1912, 'F', 147), +(14391, 'Antonia', 1912, 'F', 146), +(14392, 'Lucinda', 1912, 'F', 146), +(14393, 'Nona', 1912, 'F', 146), +(14394, 'Vada', 1912, 'F', 146), +(14395, 'Polly', 1912, 'F', 145), +(14396, 'Carmella', 1912, 'F', 143), +(14397, 'Elise', 1912, 'F', 143), +(14398, 'Kay', 1912, 'F', 143), +(14399, 'Bernadette', 1912, 'F', 142), +(14400, 'Janice', 1912, 'F', 142), +(14401, 'Georgie', 1912, 'F', 141), +(14402, 'Iona', 1912, 'F', 141), +(14403, 'Robbie', 1912, 'F', 141), +(14404, 'Leone', 1912, 'F', 139), +(14405, 'Philomena', 1912, 'F', 139), +(14406, 'Verda', 1912, 'F', 138), +(14407, 'Wilda', 1912, 'F', 137), +(14408, 'Cecil', 1912, 'F', 135), +(14409, 'Gretchen', 1912, 'F', 134), +(14410, 'Leora', 1912, 'F', 134), +(14411, 'Zelda', 1912, 'F', 134), +(14412, 'Gertie', 1912, 'F', 133), +(14413, 'Hortense', 1912, 'F', 133), +(14414, 'Clare', 1912, 'F', 132), +(14415, 'Ramona', 1912, 'F', 132), +(14416, 'Althea', 1912, 'F', 131), +(14417, 'Elisabeth', 1912, 'F', 131), +(14418, 'Leta', 1912, 'F', 130), +(14419, 'Louella', 1912, 'F', 130), +(14420, 'Madeleine', 1912, 'F', 130), +(14421, 'Monica', 1912, 'F', 130), +(14422, 'Dixie', 1912, 'F', 129), +(14423, 'Margery', 1912, 'F', 127), +(14424, 'Rae', 1912, 'F', 127), +(14425, 'Harriette', 1912, 'F', 126), +(14426, 'Alva', 1912, 'F', 125), +(14427, 'Bess', 1912, 'F', 125), +(14428, 'Lulu', 1912, 'F', 125), +(14429, 'Madelyn', 1912, 'F', 125), +(14430, 'Lona', 1912, 'F', 124), +(14431, 'Beth', 1912, 'F', 123), +(14432, 'Ester', 1912, 'F', 123), +(14433, 'Florine', 1912, 'F', 123), +(14434, 'Jannie', 1912, 'F', 123), +(14435, 'Marietta', 1912, 'F', 123), +(14436, 'Tommie', 1912, 'F', 123), +(14437, 'Linnie', 1912, 'F', 122), +(14438, 'Mercedes', 1912, 'F', 122), +(14439, 'Agatha', 1912, 'F', 121), +(14440, 'Reva', 1912, 'F', 121), +(14441, 'Elsa', 1912, 'F', 120), +(14442, 'Mathilda', 1912, 'F', 120), +(14443, 'Elda', 1912, 'F', 118), +(14444, 'Floy', 1912, 'F', 118), +(14445, 'Judith', 1912, 'F', 118), +(14446, 'Lura', 1912, 'F', 118), +(14447, 'Maybelle', 1912, 'F', 118), +(14448, 'Mozelle', 1912, 'F', 117), +(14449, 'Sybil', 1912, 'F', 117), +(14450, 'Fanny', 1912, 'F', 116), +(14451, 'Queen', 1912, 'F', 116), +(14452, 'Enid', 1912, 'F', 115), +(14453, 'Mazie', 1912, 'F', 114), +(14454, 'Bella', 1912, 'F', 113), +(14455, 'Vida', 1912, 'F', 113), +(14456, 'Zola', 1912, 'F', 113), +(14457, 'Artie', 1912, 'F', 112), +(14458, 'John', 1912, 'F', 112), +(14459, 'Alpha', 1912, 'F', 111), +(14460, 'Delores', 1912, 'F', 111), +(14461, 'Ivy', 1912, 'F', 111), +(14462, 'Lauretta', 1912, 'F', 111), +(14463, 'Minerva', 1912, 'F', 111), +(14464, 'Dorthy', 1912, 'F', 110), +(14465, 'Oleta', 1912, 'F', 110), +(14466, 'Una', 1912, 'F', 109), +(14467, 'Winona', 1912, 'F', 108), +(14468, 'Yetta', 1912, 'F', 108), +(14469, 'Bobbie', 1912, 'F', 107), +(14470, 'Evangeline', 1912, 'F', 107), +(14471, 'Garnet', 1912, 'F', 107), +(14472, 'Mittie', 1912, 'F', 107), +(14473, 'Belva', 1912, 'F', 106), +(14474, 'Hettie', 1912, 'F', 106), +(14475, 'Melva', 1912, 'F', 106), +(14476, 'Estell', 1912, 'F', 105), +(14477, 'Myrtis', 1912, 'F', 105), +(14478, 'Eve', 1912, 'F', 104), +(14479, 'Golda', 1912, 'F', 104), +(14480, 'Lorna', 1912, 'F', 104), +(14481, 'Magnolia', 1912, 'F', 104), +(14482, 'Ocie', 1912, 'F', 104), +(14483, 'Orpha', 1912, 'F', 104), +(14484, 'Phoebe', 1912, 'F', 104), +(14485, 'Cassie', 1912, 'F', 103), +(14486, 'Aurora', 1912, 'F', 102), +(14487, 'Dorotha', 1912, 'F', 102), +(14488, 'Elvera', 1912, 'F', 101), +(14489, 'Veda', 1912, 'F', 101), +(14490, 'Nelle', 1912, 'F', 100), +(14491, 'John', 1912, 'M', 24587), +(14492, 'William', 1912, 'M', 19625), +(14493, 'James', 1912, 'M', 17644), +(14494, 'Robert', 1912, 'M', 12837), +(14495, 'Joseph', 1912, 'M', 12062), +(14496, 'George', 1912, 'M', 11734), +(14497, 'Charles', 1912, 'M', 11070), +(14498, 'Edward', 1912, 'M', 7937), +(14499, 'Frank', 1912, 'M', 7912), +(14500, 'Thomas', 1912, 'M', 6085), +(14501, 'Walter', 1912, 'M', 5808), +(14502, 'Henry', 1912, 'M', 5644), +(14503, 'Harold', 1912, 'M', 5102), +(14504, 'Paul', 1912, 'M', 4785), +(14505, 'Arthur', 1912, 'M', 4685), +(14506, 'Harry', 1912, 'M', 4624), +(14507, 'Albert', 1912, 'M', 4587), +(14508, 'Raymond', 1912, 'M', 4374), +(14509, 'Richard', 1912, 'M', 4188), +(14510, 'Louis', 1912, 'M', 3591), +(14511, 'Clarence', 1912, 'M', 3590), +(14512, 'Willie', 1912, 'M', 3508), +(14513, 'Ralph', 1912, 'M', 3435), +(14514, 'Carl', 1912, 'M', 3224), +(14515, 'Howard', 1912, 'M', 3212), +(14516, 'Fred', 1912, 'M', 3103), +(14517, 'Donald', 1912, 'M', 2872), +(14518, 'Jack', 1912, 'M', 2870), +(14519, 'David', 1912, 'M', 2858), +(14520, 'Samuel', 1912, 'M', 2602), +(14521, 'Roy', 1912, 'M', 2591), +(14522, 'Ernest', 1912, 'M', 2569), +(14523, 'Kenneth', 1912, 'M', 2538), +(14524, 'Earl', 1912, 'M', 2518), +(14525, 'Francis', 1912, 'M', 2516), +(14526, 'Joe', 1912, 'M', 2515), +(14527, 'Anthony', 1912, 'M', 2480), +(14528, 'Lawrence', 1912, 'M', 2467), +(14529, 'Herbert', 1912, 'M', 2236), +(14530, 'Alfred', 1912, 'M', 2210), +(14531, 'Eugene', 1912, 'M', 2114), +(14532, 'Michael', 1912, 'M', 2104), +(14533, 'Stanley', 1912, 'M', 2017), +(14534, 'Andrew', 1912, 'M', 1946), +(14535, 'Leonard', 1912, 'M', 1928), +(14536, 'Woodrow', 1912, 'M', 1843), +(14537, 'Elmer', 1912, 'M', 1840), +(14538, 'Peter', 1912, 'M', 1679), +(14539, 'Leo', 1912, 'M', 1654), +(14540, 'Herman', 1912, 'M', 1646), +(14541, 'Frederick', 1912, 'M', 1564), +(14542, 'Theodore', 1912, 'M', 1561), +(14543, 'Daniel', 1912, 'M', 1524), +(14544, 'Edwin', 1912, 'M', 1518), +(14545, 'Chester', 1912, 'M', 1460), +(14546, 'Russell', 1912, 'M', 1448), +(14547, 'Charlie', 1912, 'M', 1446), +(14548, 'Lester', 1912, 'M', 1443), +(14549, 'Floyd', 1912, 'M', 1438), +(14550, 'Bernard', 1912, 'M', 1437), +(14551, 'Norman', 1912, 'M', 1367), +(14552, 'Clifford', 1912, 'M', 1345), +(14553, 'Sam', 1912, 'M', 1325), +(14554, 'Milton', 1912, 'M', 1319), +(14555, 'Clyde', 1912, 'M', 1314), +(14556, 'Leroy', 1912, 'M', 1306), +(14557, 'Benjamin', 1912, 'M', 1272), +(14558, 'Lewis', 1912, 'M', 1247), +(14559, 'Philip', 1912, 'M', 1237), +(14560, 'Lloyd', 1912, 'M', 1227), +(14561, 'Melvin', 1912, 'M', 1185), +(14562, 'Vincent', 1912, 'M', 1178), +(14563, 'Oscar', 1912, 'M', 1157), +(14564, 'Jesse', 1912, 'M', 1106), +(14565, 'Martin', 1912, 'M', 1064), +(14566, 'Cecil', 1912, 'M', 1057), +(14567, 'Ray', 1912, 'M', 1050), +(14568, 'Lee', 1912, 'M', 1030), +(14569, 'Leon', 1912, 'M', 1006), +(14570, 'Sidney', 1912, 'M', 1003), +(14571, 'Victor', 1912, 'M', 989), +(14572, 'Morris', 1912, 'M', 960), +(14573, 'Marvin', 1912, 'M', 958), +(14574, 'Glenn', 1912, 'M', 948), +(14575, 'Edgar', 1912, 'M', 945), +(14576, 'Alvin', 1912, 'M', 929), +(14577, 'Gerald', 1912, 'M', 929), +(14578, 'Stephen', 1912, 'M', 928), +(14579, 'Claude', 1912, 'M', 890), +(14580, 'Vernon', 1912, 'M', 889), +(14581, 'Harvey', 1912, 'M', 875), +(14582, 'Wilbur', 1912, 'M', 832), +(14583, 'Gordon', 1912, 'M', 822), +(14584, 'Irving', 1912, 'M', 815), +(14585, 'Maurice', 1912, 'M', 811), +(14586, 'Everett', 1912, 'M', 806), +(14587, 'Alexander', 1912, 'M', 803), +(14588, 'Homer', 1912, 'M', 794), +(14589, 'Arnold', 1912, 'M', 767), +(14590, 'Julius', 1912, 'M', 758), +(14591, 'Max', 1912, 'M', 734), +(14592, 'Ben', 1912, 'M', 731), +(14593, 'Allen', 1912, 'M', 730), +(14594, 'Eddie', 1912, 'M', 718), +(14595, 'Willard', 1912, 'M', 718), +(14596, 'Johnnie', 1912, 'M', 709), +(14597, 'Warren', 1912, 'M', 697), +(14598, 'Leslie', 1912, 'M', 693), +(14599, 'Jessie', 1912, 'M', 692), +(14600, 'Jacob', 1912, 'M', 691), +(14601, 'Virgil', 1912, 'M', 684), +(14602, 'Marion', 1912, 'M', 680), +(14603, 'Nicholas', 1912, 'M', 676), +(14604, 'Luther', 1912, 'M', 664), +(14605, 'Gilbert', 1912, 'M', 649), +(14606, 'Hugh', 1912, 'M', 648), +(14607, 'Oliver', 1912, 'M', 645), +(14608, 'Wayne', 1912, 'M', 617), +(14609, 'Horace', 1912, 'M', 615), +(14610, 'Nathan', 1912, 'M', 581), +(14611, 'Curtis', 1912, 'M', 566), +(14612, 'Hubert', 1912, 'M', 544), +(14613, 'Steve', 1912, 'M', 543), +(14614, 'Tom', 1912, 'M', 538), +(14615, 'Abraham', 1912, 'M', 533), +(14616, 'Otis', 1912, 'M', 522), +(14617, 'Roland', 1912, 'M', 522), +(14618, 'Wallace', 1912, 'M', 507), +(14619, 'Franklin', 1912, 'M', 497), +(14620, 'Archie', 1912, 'M', 496), +(14621, 'Wilson', 1912, 'M', 496), +(14622, 'Earnest', 1912, 'M', 486), +(14623, 'Jerome', 1912, 'M', 486), +(14624, 'Wesley', 1912, 'M', 485), +(14625, 'Alex', 1912, 'M', 482), +(14626, 'Orville', 1912, 'M', 477), +(14627, 'Manuel', 1912, 'M', 469), +(14628, 'Roger', 1912, 'M', 464), +(14629, 'Glen', 1912, 'M', 460), +(14630, 'Guy', 1912, 'M', 455), +(14631, 'Rudolph', 1912, 'M', 453), +(14632, 'Willis', 1912, 'M', 453), +(14633, 'Edmund', 1912, 'M', 452), +(14634, 'Patrick', 1912, 'M', 431), +(14635, 'Mike', 1912, 'M', 430), +(14636, 'Emil', 1912, 'M', 407), +(14637, 'Jerry', 1912, 'M', 405), +(14638, 'Clifton', 1912, 'M', 404), +(14639, 'Jim', 1912, 'M', 401), +(14640, 'Otto', 1912, 'M', 398), +(14641, 'Marshall', 1912, 'M', 397), +(14642, 'Ira', 1912, 'M', 394), +(14643, 'Tony', 1912, 'M', 394), +(14644, 'Bennie', 1912, 'M', 392), +(14645, 'Angelo', 1912, 'M', 384), +(14646, 'Matthew', 1912, 'M', 380), +(14647, 'Calvin', 1912, 'M', 375), +(14648, 'Salvatore', 1912, 'M', 374), +(14649, 'Dale', 1912, 'M', 371), +(14650, 'Jimmie', 1912, 'M', 366), +(14651, 'Clinton', 1912, 'M', 362), +(14652, 'Isaac', 1912, 'M', 359), +(14653, 'Jose', 1912, 'M', 356), +(14654, 'Nathaniel', 1912, 'M', 356), +(14655, 'Douglas', 1912, 'M', 350), +(14656, 'Nelson', 1912, 'M', 349), +(14657, 'Sylvester', 1912, 'M', 348), +(14658, 'Bill', 1912, 'M', 347), +(14659, 'Clayton', 1912, 'M', 346), +(14660, 'Irvin', 1912, 'M', 344), +(14661, 'August', 1912, 'M', 343), +(14662, 'Elbert', 1912, 'M', 342), +(14663, 'Ivan', 1912, 'M', 339), +(14664, 'Percy', 1912, 'M', 337), +(14665, 'Rufus', 1912, 'M', 336), +(14666, 'Bert', 1912, 'M', 332), +(14667, 'Don', 1912, 'M', 332), +(14668, 'Bruce', 1912, 'M', 328), +(14669, 'Lonnie', 1912, 'M', 327), +(14670, 'Delbert', 1912, 'M', 325), +(14671, 'Lyle', 1912, 'M', 325), +(14672, 'Karl', 1912, 'M', 323), +(14673, 'Adolph', 1912, 'M', 318), +(14674, 'Jay', 1912, 'M', 318), +(14675, 'Wilfred', 1912, 'M', 317), +(14676, 'Johnie', 1912, 'M', 311), +(14677, 'Forrest', 1912, 'M', 308), +(14678, 'Adam', 1912, 'M', 307), +(14679, 'Phillip', 1912, 'M', 306), +(14680, 'Aaron', 1912, 'M', 303), +(14681, 'Ronald', 1912, 'M', 302), +(14682, 'Alton', 1912, 'M', 300), +(14683, 'Felix', 1912, 'M', 300), +(14684, 'Dan', 1912, 'M', 298), +(14685, 'Mack', 1912, 'M', 295), +(14686, 'Ervin', 1912, 'M', 294), +(14687, 'Julian', 1912, 'M', 294), +(14688, 'Wilbert', 1912, 'M', 291), +(14689, 'Emmett', 1912, 'M', 290), +(14690, 'Charley', 1912, 'M', 288), +(14691, 'Mark', 1912, 'M', 284), +(14692, 'Ellis', 1912, 'M', 282), +(14693, 'Dominick', 1912, 'M', 275), +(14694, 'Laurence', 1912, 'M', 271), +(14695, 'Antonio', 1912, 'M', 270), +(14696, 'Dennis', 1912, 'M', 268), +(14697, 'Merle', 1912, 'M', 268), +(14698, 'Roosevelt', 1912, 'M', 267), +(14699, 'Owen', 1912, 'M', 265), +(14700, 'Roscoe', 1912, 'M', 264), +(14701, 'Pete', 1912, 'M', 263), +(14702, 'Elwood', 1912, 'M', 262), +(14703, 'Carroll', 1912, 'M', 256), +(14704, 'Will', 1912, 'M', 256), +(14705, 'Hyman', 1912, 'M', 255), +(14706, 'Murray', 1912, 'M', 254), +(14707, 'Grady', 1912, 'M', 252), +(14708, 'Leland', 1912, 'M', 252), +(14709, 'Nick', 1912, 'M', 248), +(14710, 'Ted', 1912, 'M', 244), +(14711, 'Amos', 1912, 'M', 243), +(14712, 'Cornelius', 1912, 'M', 243), +(14713, 'Ross', 1912, 'M', 240), +(14714, 'Aubrey', 1912, 'M', 236), +(14715, 'Malcolm', 1912, 'M', 233), +(14716, 'Solomon', 1912, 'M', 233), +(14717, 'Myron', 1912, 'M', 231), +(14718, 'Ed', 1912, 'M', 229), +(14719, 'Byron', 1912, 'M', 227), +(14720, 'Simon', 1912, 'M', 226), +(14721, 'Lowell', 1912, 'M', 225), +(14722, 'Austin', 1912, 'M', 223), +(14723, 'Dave', 1912, 'M', 222), +(14724, 'Allan', 1912, 'M', 221), +(14725, 'Reuben', 1912, 'M', 220), +(14726, 'Grover', 1912, 'M', 219), +(14727, 'Sherman', 1912, 'M', 218), +(14728, 'Johnny', 1912, 'M', 217), +(14729, 'Juan', 1912, 'M', 217), +(14730, 'Dominic', 1912, 'M', 216), +(14731, 'Perry', 1912, 'M', 216), +(14732, 'Wendell', 1912, 'M', 212), +(14733, 'Erwin', 1912, 'M', 210), +(14734, 'Emanuel', 1912, 'M', 207), +(14735, 'Moses', 1912, 'M', 207), +(14736, 'Preston', 1912, 'M', 206), +(14737, 'Troy', 1912, 'M', 202), +(14738, 'Carlton', 1912, 'M', 201), +(14739, 'Loren', 1912, 'M', 201), +(14740, 'Edmond', 1912, 'M', 200), +(14741, 'Tommie', 1912, 'M', 199), +(14742, 'Dean', 1912, 'M', 198), +(14743, 'Harley', 1912, 'M', 197), +(14744, 'Loyd', 1912, 'M', 196), +(14745, 'Fredrick', 1912, 'M', 193), +(14746, 'Clark', 1912, 'M', 187), +(14747, 'Gene', 1912, 'M', 187), +(14748, 'Jake', 1912, 'M', 187), +(14749, 'Millard', 1912, 'M', 187), +(14750, 'Dwight', 1912, 'M', 186), +(14751, 'Wade', 1912, 'M', 181), +(14752, 'Jasper', 1912, 'M', 178), +(14753, 'Alonzo', 1912, 'M', 177), +(14754, 'Louie', 1912, 'M', 177), +(14755, 'Monroe', 1912, 'M', 175), +(14756, 'Abe', 1912, 'M', 172), +(14757, 'Clement', 1912, 'M', 172), +(14758, 'Boyd', 1912, 'M', 171), +(14759, 'Jess', 1912, 'M', 171), +(14760, 'Harrison', 1912, 'M', 170), +(14761, 'Elmo', 1912, 'M', 169), +(14762, 'Grant', 1912, 'M', 169), +(14763, 'Keith', 1912, 'M', 169), +(14764, 'Sol', 1912, 'M', 169), +(14765, 'Ollie', 1912, 'M', 167), +(14766, 'Dewey', 1912, 'M', 166), +(14767, 'Kermit', 1912, 'M', 165), +(14768, 'Larry', 1912, 'M', 164), +(14769, 'Rex', 1912, 'M', 164), +(14770, 'Burton', 1912, 'M', 163), +(14771, 'Gus', 1912, 'M', 163), +(14772, 'Booker', 1912, 'M', 161), +(14773, 'Anton', 1912, 'M', 159), +(14774, 'Barney', 1912, 'M', 159), +(14775, 'Eli', 1912, 'M', 159), +(14776, 'Cleveland', 1912, 'M', 156), +(14777, 'Lynn', 1912, 'M', 156), +(14778, 'Eldon', 1912, 'M', 153), +(14779, 'Mario', 1912, 'M', 152), +(14780, 'Christopher', 1912, 'M', 151), +(14781, 'Maynard', 1912, 'M', 151), +(14782, 'Neil', 1912, 'M', 151), +(14783, 'Steven', 1912, 'M', 151), +(14784, 'Gerard', 1912, 'M', 149), +(14785, 'Isadore', 1912, 'M', 148), +(14786, 'Claud', 1912, 'M', 146), +(14787, 'Cyril', 1912, 'M', 146), +(14788, 'Freddie', 1912, 'M', 146), +(14789, 'Jesus', 1912, 'M', 146), +(14790, 'Garland', 1912, 'M', 145), +(14791, 'Meyer', 1912, 'M', 143), +(14792, 'Alphonse', 1912, 'M', 142), +(14793, 'Elijah', 1912, 'M', 142), +(14794, 'Emerson', 1912, 'M', 142), +(14795, 'Russel', 1912, 'M', 142), +(14796, 'Bob', 1912, 'M', 141), +(14797, 'Earle', 1912, 'M', 141), +(14798, 'Orval', 1912, 'M', 141), +(14799, 'Randolph', 1912, 'M', 141), +(14800, 'Buster', 1912, 'M', 140), +(14801, 'Cleo', 1912, 'M', 139), +(14802, 'Alva', 1912, 'M', 138), +(14803, 'Ellsworth', 1912, 'M', 138), +(14804, 'Emery', 1912, 'M', 137), +(14805, 'Mitchell', 1912, 'M', 137), +(14806, 'Morton', 1912, 'M', 137), +(14807, 'Clair', 1912, 'M', 136), +(14808, 'Herschel', 1912, 'M', 136), +(14809, 'Dallas', 1912, 'M', 135), +(14810, 'Pasquale', 1912, 'M', 135), +(14811, 'Elton', 1912, 'M', 134), +(14812, 'Jeff', 1912, 'M', 134), +(14813, 'Reginald', 1912, 'M', 134), +(14814, 'Ruben', 1912, 'M', 134), +(14815, 'Thurman', 1912, 'M', 134), +(14816, 'Wilmer', 1912, 'M', 134), +(14817, 'Conrad', 1912, 'M', 133), +(14818, 'Marcus', 1912, 'M', 132), +(14819, 'Alfonso', 1912, 'M', 131), +(14820, 'Adrian', 1912, 'M', 130), +(14821, 'Stewart', 1912, 'M', 130), +(14822, 'Armand', 1912, 'M', 129), +(14823, 'Joel', 1912, 'M', 129), +(14824, 'Elvin', 1912, 'M', 128), +(14825, 'Timothy', 1912, 'M', 128), +(14826, 'Bruno', 1912, 'M', 127), +(14827, 'Neal', 1912, 'M', 127), +(14828, 'Irwin', 1912, 'M', 126), +(14829, 'Norbert', 1912, 'M', 126), +(14830, 'Saul', 1912, 'M', 125), +(14831, 'Carlos', 1912, 'M', 124), +(14832, 'Al', 1912, 'M', 121), +(14833, 'Forest', 1912, 'M', 121), +(14834, 'Mathew', 1912, 'M', 121), +(14835, 'Pedro', 1912, 'M', 120), +(14836, 'Lionel', 1912, 'M', 119), +(14837, 'Merrill', 1912, 'M', 119), +(14838, 'Patsy', 1912, 'M', 119), +(14839, 'Frederic', 1912, 'M', 118), +(14840, 'Mary', 1912, 'M', 118), +(14841, 'Seymour', 1912, 'M', 118), +(14842, 'Stuart', 1912, 'M', 118), +(14843, 'Emory', 1912, 'M', 117), +(14844, 'Ramon', 1912, 'M', 117), +(14845, 'Levi', 1912, 'M', 116), +(14846, 'Noah', 1912, 'M', 116), +(14847, 'Doyle', 1912, 'M', 115), +(14848, 'Rocco', 1912, 'M', 115), +(14849, 'Sydney', 1912, 'M', 115), +(14850, 'Basil', 1912, 'M', 114), +(14851, 'Hollis', 1912, 'M', 114), +(14852, 'Ward', 1912, 'M', 114), +(14853, 'Andy', 1912, 'M', 113), +(14854, 'Dudley', 1912, 'M', 113), +(14855, 'Ferdinand', 1912, 'M', 113), +(14856, 'Maxwell', 1912, 'M', 113), +(14857, 'Odell', 1912, 'M', 112), +(14858, 'Wiley', 1912, 'M', 112), +(14859, 'Ned', 1912, 'M', 109), +(14860, 'Buford', 1912, 'M', 108), +(14861, 'Silas', 1912, 'M', 108), +(14862, 'Delmar', 1912, 'M', 107), +(14863, 'Hugo', 1912, 'M', 107), +(14864, 'Augustus', 1912, 'M', 106), +(14865, 'Francisco', 1912, 'M', 106), +(14866, 'Weldon', 1912, 'M', 106), +(14867, 'Carmine', 1912, 'M', 105), +(14868, 'Spencer', 1912, 'M', 105), +(14869, 'Norris', 1912, 'M', 104), +(14870, 'Freeman', 1912, 'M', 103), +(14871, 'Alan', 1912, 'M', 102), +(14872, 'Harlan', 1912, 'M', 101), +(14873, 'Isidore', 1912, 'M', 101), +(14874, 'Royal', 1912, 'M', 100), +(14875, 'Sterling', 1912, 'M', 100), +(14876, 'Mary', 1913, 'F', 36641), +(14877, 'Helen', 1913, 'F', 18888), +(14878, 'Dorothy', 1913, 'F', 14674), +(14879, 'Margaret', 1913, 'F', 14486), +(14880, 'Ruth', 1913, 'F', 12608), +(14881, 'Mildred', 1913, 'F', 9921), +(14882, 'Anna', 1913, 'F', 9686), +(14883, 'Elizabeth', 1913, 'F', 9505), +(14884, 'Frances', 1913, 'F', 7694), +(14885, 'Marie', 1913, 'F', 7352), +(14886, 'Alice', 1913, 'F', 6933), +(14887, 'Evelyn', 1913, 'F', 6680), +(14888, 'Florence', 1913, 'F', 6278), +(14889, 'Rose', 1913, 'F', 6170), +(14890, 'Virginia', 1913, 'F', 6036), +(14891, 'Lillian', 1913, 'F', 6015), +(14892, 'Louise', 1913, 'F', 5577), +(14893, 'Edna', 1913, 'F', 5558), +(14894, 'Gladys', 1913, 'F', 5428), +(14895, 'Ethel', 1913, 'F', 5369), +(14896, 'Irene', 1913, 'F', 5335), +(14897, 'Catherine', 1913, 'F', 5302), +(14898, 'Ruby', 1913, 'F', 4912), +(14899, 'Josephine', 1913, 'F', 4822), +(14900, 'Grace', 1913, 'F', 4669), +(14901, 'Thelma', 1913, 'F', 4595), +(14902, 'Hazel', 1913, 'F', 4589), +(14903, 'Martha', 1913, 'F', 4538), +(14904, 'Edith', 1913, 'F', 4366), +(14905, 'Annie', 1913, 'F', 4267), +(14906, 'Lucille', 1913, 'F', 4098), +(14907, 'Esther', 1913, 'F', 4090), +(14908, 'Gertrude', 1913, 'F', 4015), +(14909, 'Eleanor', 1913, 'F', 3937), +(14910, 'Pauline', 1913, 'F', 3636), +(14911, 'Clara', 1913, 'F', 3632), +(14912, 'Beatrice', 1913, 'F', 3567), +(14913, 'Emma', 1913, 'F', 3474), +(14914, 'Bertha', 1913, 'F', 3345), +(14915, 'Elsie', 1913, 'F', 3208), +(14916, 'Agnes', 1913, 'F', 3205), +(14917, 'Julia', 1913, 'F', 3195), +(14918, 'Sarah', 1913, 'F', 3178), +(14919, 'Doris', 1913, 'F', 3049), +(14920, 'Bernice', 1913, 'F', 3035), +(14921, 'Ann', 1913, 'F', 2998), +(14922, 'Bessie', 1913, 'F', 2951), +(14923, 'Marjorie', 1913, 'F', 2922), +(14924, 'Ida', 1913, 'F', 2916), +(14925, 'Eva', 1913, 'F', 2891), +(14926, 'Marion', 1913, 'F', 2854), +(14927, 'Viola', 1913, 'F', 2847), +(14928, 'Myrtle', 1913, 'F', 2843), +(14929, 'Katherine', 1913, 'F', 2794), +(14930, 'Pearl', 1913, 'F', 2756), +(14931, 'Mabel', 1913, 'F', 2741), +(14932, 'Anne', 1913, 'F', 2684), +(14933, 'Nellie', 1913, 'F', 2645), +(14934, 'Lois', 1913, 'F', 2561), +(14935, 'Jean', 1913, 'F', 2544), +(14936, 'Jessie', 1913, 'F', 2475), +(14937, 'Laura', 1913, 'F', 2454), +(14938, 'Minnie', 1913, 'F', 2332), +(14939, 'Alma', 1913, 'F', 2297), +(14940, 'Willie', 1913, 'F', 2264), +(14941, 'Kathryn', 1913, 'F', 2246), +(14942, 'Betty', 1913, 'F', 2239), +(14943, 'Vera', 1913, 'F', 2209), +(14944, 'Stella', 1913, 'F', 2205), +(14945, 'Ella', 1913, 'F', 2071), +(14946, 'Lillie', 1913, 'F', 2030), +(14947, 'Sylvia', 1913, 'F', 2013), +(14948, 'Lena', 1913, 'F', 1973), +(14949, 'Leona', 1913, 'F', 1911), +(14950, 'Mattie', 1913, 'F', 1868), +(14951, 'Blanche', 1913, 'F', 1856), +(14952, 'Lucy', 1913, 'F', 1855), +(14953, 'Marguerite', 1913, 'F', 1822), +(14954, 'Mae', 1913, 'F', 1814), +(14955, 'Jennie', 1913, 'F', 1809), +(14956, 'Jane', 1913, 'F', 1759), +(14957, 'Violet', 1913, 'F', 1751), +(14958, 'Vivian', 1913, 'F', 1727), +(14959, 'Genevieve', 1913, 'F', 1684), +(14960, 'Beulah', 1913, 'F', 1640), +(14961, 'Opal', 1913, 'F', 1629), +(14962, 'Charlotte', 1913, 'F', 1603), +(14963, 'Ellen', 1913, 'F', 1579), +(14964, 'Velma', 1913, 'F', 1556), +(14965, 'Carrie', 1913, 'F', 1517), +(14966, 'Fannie', 1913, 'F', 1488), +(14967, 'Wilma', 1913, 'F', 1469), +(14968, 'Marian', 1913, 'F', 1452), +(14969, 'Barbara', 1913, 'F', 1450), +(14970, 'Juanita', 1913, 'F', 1443), +(14971, 'Hattie', 1913, 'F', 1434), +(14972, 'Theresa', 1913, 'F', 1403), +(14973, 'Inez', 1913, 'F', 1394), +(14974, 'Emily', 1913, 'F', 1387), +(14975, 'Georgia', 1913, 'F', 1382), +(14976, 'Rosa', 1913, 'F', 1366), +(14977, 'Nancy', 1913, 'F', 1290), +(14978, 'Cora', 1913, 'F', 1288), +(14979, 'Ada', 1913, 'F', 1282), +(14980, 'Hilda', 1913, 'F', 1275), +(14981, 'Mamie', 1913, 'F', 1245), +(14982, 'Eunice', 1913, 'F', 1214), +(14983, 'Alberta', 1913, 'F', 1195), +(14984, 'Dora', 1913, 'F', 1183), +(14985, 'Kathleen', 1913, 'F', 1179), +(14986, 'Lula', 1913, 'F', 1179), +(14987, 'Estelle', 1913, 'F', 1129), +(14988, 'Sophie', 1913, 'F', 1122), +(14989, 'Sara', 1913, 'F', 1121), +(14990, 'Sadie', 1913, 'F', 1111), +(14991, 'Rita', 1913, 'F', 1096), +(14992, 'Madeline', 1913, 'F', 1084), +(14993, 'Loretta', 1913, 'F', 1074), +(14994, 'Maxine', 1913, 'F', 1073), +(14995, 'Geneva', 1913, 'F', 1068), +(14996, 'Geraldine', 1913, 'F', 1058), +(14997, 'Phyllis', 1913, 'F', 1054), +(14998, 'Daisy', 1913, 'F', 1052), +(14999, 'Christine', 1913, 'F', 1045), +(15000, 'Harriet', 1913, 'F', 1039), +(15001, 'Verna', 1913, 'F', 1038), +(15002, 'Maggie', 1913, 'F', 1019), +(15003, 'Lucile', 1913, 'F', 1003), +(15004, 'Olive', 1913, 'F', 994), +(15005, 'Lola', 1913, 'F', 965), +(15006, 'Susie', 1913, 'F', 965), +(15007, 'Flora', 1913, 'F', 943), +(15008, 'Maria', 1913, 'F', 909), +(15009, 'Mable', 1913, 'F', 907), +(15010, 'Nora', 1913, 'F', 890), +(15011, 'Audrey', 1913, 'F', 884), +(15012, 'Muriel', 1913, 'F', 882), +(15013, 'Sally', 1913, 'F', 879), +(15014, 'Norma', 1913, 'F', 878), +(15015, 'Erma', 1913, 'F', 865), +(15016, 'Henrietta', 1913, 'F', 865), +(15017, 'Naomi', 1913, 'F', 840), +(15018, 'Lottie', 1913, 'F', 837), +(15019, 'Irma', 1913, 'F', 830), +(15020, 'Rachel', 1913, 'F', 827), +(15021, 'Miriam', 1913, 'F', 826), +(15022, 'Victoria', 1913, 'F', 825), +(15023, 'Olga', 1913, 'F', 810), +(15024, 'Caroline', 1913, 'F', 805), +(15025, 'Goldie', 1913, 'F', 790), +(15026, 'Della', 1913, 'F', 789), +(15027, 'Nettie', 1913, 'F', 777), +(15028, 'Eula', 1913, 'F', 773), +(15029, 'Lydia', 1913, 'F', 759), +(15030, 'Roberta', 1913, 'F', 755), +(15031, 'Rosie', 1913, 'F', 744), +(15032, 'Winifred', 1913, 'F', 741), +(15033, 'Rebecca', 1913, 'F', 739), +(15034, 'Jeanette', 1913, 'F', 734), +(15035, 'Lorraine', 1913, 'F', 724), +(15036, 'Amelia', 1913, 'F', 721), +(15037, 'Janet', 1913, 'F', 713), +(15038, 'June', 1913, 'F', 710), +(15039, 'Effie', 1913, 'F', 708), +(15040, 'Dolores', 1913, 'F', 706), +(15041, 'Fern', 1913, 'F', 697), +(15042, 'May', 1913, 'F', 695), +(15043, 'Wanda', 1913, 'F', 687), +(15044, 'Shirley', 1913, 'F', 684), +(15045, 'Carolyn', 1913, 'F', 676), +(15046, 'Katie', 1913, 'F', 674), +(15047, 'Ollie', 1913, 'F', 669), +(15048, 'Adeline', 1913, 'F', 668), +(15049, 'Nina', 1913, 'F', 668), +(15050, 'Essie', 1913, 'F', 661), +(15051, 'Dorothea', 1913, 'F', 658), +(15052, 'Isabel', 1913, 'F', 657), +(15053, 'Sallie', 1913, 'F', 656), +(15054, 'Maude', 1913, 'F', 655), +(15055, 'Bonnie', 1913, 'F', 648), +(15056, 'Antoinette', 1913, 'F', 646), +(15057, 'Ora', 1913, 'F', 622), +(15058, 'Veronica', 1913, 'F', 615), +(15059, 'Eileen', 1913, 'F', 614), +(15060, 'Freda', 1913, 'F', 613), +(15061, 'Isabelle', 1913, 'F', 606), +(15062, 'Addie', 1913, 'F', 605), +(15063, 'Lela', 1913, 'F', 595), +(15064, 'Marcella', 1913, 'F', 590), +(15065, 'Patricia', 1913, 'F', 588), +(15066, 'Iva', 1913, 'F', 577), +(15067, 'Jeannette', 1913, 'F', 570), +(15068, 'Anita', 1913, 'F', 562), +(15069, 'Faye', 1913, 'F', 561), +(15070, 'Lorene', 1913, 'F', 559), +(15071, 'Susan', 1913, 'F', 543), +(15072, 'Etta', 1913, 'F', 542), +(15073, 'Cecelia', 1913, 'F', 536), +(15074, 'Cleo', 1913, 'F', 536), +(15075, 'Celia', 1913, 'F', 532), +(15076, 'Lizzie', 1913, 'F', 532), +(15077, 'Eloise', 1913, 'F', 529), +(15078, 'Angelina', 1913, 'F', 520), +(15079, 'Luella', 1913, 'F', 519), +(15080, 'Leola', 1913, 'F', 511), +(15081, 'Frieda', 1913, 'F', 506), +(15082, 'Mollie', 1913, 'F', 506), +(15083, 'Regina', 1913, 'F', 504), +(15084, 'Elva', 1913, 'F', 496), +(15085, 'Adele', 1913, 'F', 492), +(15086, 'Nell', 1913, 'F', 491), +(15087, 'Claire', 1913, 'F', 490), +(15088, 'Alta', 1913, 'F', 486), +(15089, 'Cecilia', 1913, 'F', 485), +(15090, 'Sue', 1913, 'F', 483), +(15091, 'Jewell', 1913, 'F', 482), +(15092, 'Angeline', 1913, 'F', 478), +(15093, 'Arlene', 1913, 'F', 471), +(15094, 'Janie', 1913, 'F', 471), +(15095, 'Ola', 1913, 'F', 471), +(15096, 'Ina', 1913, 'F', 469), +(15097, 'Estella', 1913, 'F', 465), +(15098, 'Flossie', 1913, 'F', 463), +(15099, 'Rosalie', 1913, 'F', 462), +(15100, 'Constance', 1913, 'F', 458), +(15101, 'Selma', 1913, 'F', 455), +(15102, 'Jeanne', 1913, 'F', 449), +(15103, 'Angela', 1913, 'F', 447), +(15104, 'Johnnie', 1913, 'F', 440), +(15105, 'Matilda', 1913, 'F', 432), +(15106, 'Lila', 1913, 'F', 430), +(15107, 'Sophia', 1913, 'F', 429), +(15108, 'Fay', 1913, 'F', 427), +(15109, 'Ernestine', 1913, 'F', 425), +(15110, 'Helene', 1913, 'F', 425), +(15111, 'Teresa', 1913, 'F', 424), +(15112, 'Margie', 1913, 'F', 423), +(15113, 'Joan', 1913, 'F', 412), +(15114, 'Elaine', 1913, 'F', 411), +(15115, 'Reba', 1913, 'F', 410), +(15116, 'Annette', 1913, 'F', 408), +(15117, 'Nannie', 1913, 'F', 402), +(15118, 'Hannah', 1913, 'F', 396), +(15119, 'Jewel', 1913, 'F', 392), +(15120, 'Elma', 1913, 'F', 388), +(15121, 'Rosemary', 1913, 'F', 388), +(15122, 'Amy', 1913, 'F', 387), +(15123, 'Leah', 1913, 'F', 370), +(15124, 'Virgie', 1913, 'F', 364), +(15125, 'Elnora', 1913, 'F', 353), +(15126, 'Amanda', 1913, 'F', 346), +(15127, 'Zelma', 1913, 'F', 342), +(15128, 'Millie', 1913, 'F', 336), +(15129, 'Carol', 1913, 'F', 332), +(15130, 'Winnie', 1913, 'F', 328), +(15131, 'Elvira', 1913, 'F', 327), +(15132, 'Adelaide', 1913, 'F', 321), +(15133, 'Clarice', 1913, 'F', 319), +(15134, 'Edythe', 1913, 'F', 318), +(15135, 'Eliza', 1913, 'F', 315), +(15136, 'Eleanore', 1913, 'F', 313), +(15137, 'Letha', 1913, 'F', 313), +(15138, 'Eugenia', 1913, 'F', 310), +(15139, 'Iris', 1913, 'F', 310), +(15140, 'Rena', 1913, 'F', 306), +(15141, 'Myra', 1913, 'F', 305), +(15142, 'Tillie', 1913, 'F', 303), +(15143, 'Avis', 1913, 'F', 301), +(15144, 'Carmen', 1913, 'F', 300), +(15145, 'Francis', 1913, 'F', 299), +(15146, 'Gwendolyn', 1913, 'F', 298), +(15147, 'Lee', 1913, 'F', 294), +(15148, 'Allie', 1913, 'F', 293), +(15149, 'Billie', 1913, 'F', 289), +(15150, 'Lenora', 1913, 'F', 289), +(15151, 'Neva', 1913, 'F', 289), +(15152, 'Laverne', 1913, 'F', 288), +(15153, 'Cornelia', 1913, 'F', 287), +(15154, 'Olivia', 1913, 'F', 287), +(15155, 'Cecile', 1913, 'F', 282), +(15156, 'Elinor', 1913, 'F', 279), +(15157, 'Ila', 1913, 'F', 279), +(15158, 'Peggy', 1913, 'F', 276), +(15159, 'Hester', 1913, 'F', 275), +(15160, 'Gussie', 1913, 'F', 274), +(15161, 'Melba', 1913, 'F', 274), +(15162, 'Belle', 1913, 'F', 273), +(15163, 'Callie', 1913, 'F', 273), +(15164, 'Gracie', 1913, 'F', 273), +(15165, 'Joyce', 1913, 'F', 273), +(15166, 'Donna', 1913, 'F', 267), +(15167, 'Madge', 1913, 'F', 264), +(15168, 'Harriett', 1913, 'F', 260), +(15169, 'Lorena', 1913, 'F', 259), +(15170, 'Dollie', 1913, 'F', 258), +(15171, 'Natalie', 1913, 'F', 258), +(15172, 'Josie', 1913, 'F', 257), +(15173, 'Kate', 1913, 'F', 257), +(15174, 'Odessa', 1913, 'F', 255), +(15175, 'Augusta', 1913, 'F', 253), +(15176, 'Lora', 1913, 'F', 252), +(15177, 'Helena', 1913, 'F', 245), +(15178, 'Lessie', 1913, 'F', 245), +(15179, 'Priscilla', 1913, 'F', 241), +(15180, 'Annabelle', 1913, 'F', 240), +(15181, 'Carmela', 1913, 'F', 238), +(15182, 'Linda', 1913, 'F', 238), +(15183, 'Frankie', 1913, 'F', 237), +(15184, 'Katharine', 1913, 'F', 236), +(15185, 'Berniece', 1913, 'F', 235), +(15186, 'Claudia', 1913, 'F', 235), +(15187, 'Leila', 1913, 'F', 234), +(15188, 'Merle', 1913, 'F', 232), +(15189, 'Aileen', 1913, 'F', 231), +(15190, 'Bertie', 1913, 'F', 230), +(15191, 'Connie', 1913, 'F', 229), +(15192, 'Imogene', 1913, 'F', 227), +(15193, 'Rosetta', 1913, 'F', 227), +(15194, 'Maudie', 1913, 'F', 226), +(15195, 'Rosella', 1913, 'F', 225), +(15196, 'Corinne', 1913, 'F', 223), +(15197, 'Erna', 1913, 'F', 220), +(15198, 'Yvonne', 1913, 'F', 220), +(15199, 'Alyce', 1913, 'F', 218), +(15200, 'Bettie', 1913, 'F', 216), +(15201, 'Christina', 1913, 'F', 216), +(15202, 'Iola', 1913, 'F', 216), +(15203, 'Birdie', 1913, 'F', 214), +(15204, 'Maurine', 1913, 'F', 213), +(15205, 'Lily', 1913, 'F', 212), +(15206, 'Roxie', 1913, 'F', 212), +(15207, 'Lenore', 1913, 'F', 210), +(15208, 'Aline', 1913, 'F', 209), +(15209, 'Willa', 1913, 'F', 208), +(15210, 'Leota', 1913, 'F', 207), +(15211, 'Nadine', 1913, 'F', 206), +(15212, 'Nola', 1913, 'F', 205), +(15213, 'Concetta', 1913, 'F', 204), +(15214, 'Ione', 1913, 'F', 204), +(15215, 'Wilhelmina', 1913, 'F', 201), +(15216, 'Pearlie', 1913, 'F', 200), +(15217, 'Lou', 1913, 'F', 199), +(15218, 'Zella', 1913, 'F', 199), +(15219, 'Delia', 1913, 'F', 198), +(15220, 'Dessie', 1913, 'F', 197), +(15221, 'Molly', 1913, 'F', 197), +(15222, 'Bernadine', 1913, 'F', 196), +(15223, 'Johanna', 1913, 'F', 196), +(15224, 'Ramona', 1913, 'F', 196), +(15225, 'Rhoda', 1913, 'F', 189), +(15226, 'Arline', 1913, 'F', 187), +(15227, 'Catharine', 1913, 'F', 187), +(15228, 'Ophelia', 1913, 'F', 187), +(15229, 'Tessie', 1913, 'F', 187), +(15230, 'Carmella', 1913, 'F', 186), +(15231, 'Jimmie', 1913, 'F', 186), +(15232, 'Loraine', 1913, 'F', 186), +(15233, 'Stephanie', 1913, 'F', 185), +(15234, 'Bernadette', 1913, 'F', 183), +(15235, 'Dolly', 1913, 'F', 183), +(15236, 'Eddie', 1913, 'F', 183), +(15237, 'Elisabeth', 1913, 'F', 180), +(15238, 'Lilly', 1913, 'F', 179), +(15239, 'Hallie', 1913, 'F', 176), +(15240, 'Nona', 1913, 'F', 175), +(15241, 'Mona', 1913, 'F', 174), +(15242, 'Mayme', 1913, 'F', 173), +(15243, 'Corine', 1913, 'F', 172), +(15244, 'Antonia', 1913, 'F', 171), +(15245, 'Oma', 1913, 'F', 171), +(15246, 'Pansy', 1913, 'F', 170), +(15247, 'Maud', 1913, 'F', 168), +(15248, 'Leone', 1913, 'F', 167), +(15249, 'Cynthia', 1913, 'F', 165), +(15250, 'Isabella', 1913, 'F', 165), +(15251, 'Lelia', 1913, 'F', 165), +(15252, 'Sybil', 1913, 'F', 165), +(15253, 'Monica', 1913, 'F', 164), +(15254, 'Reva', 1913, 'F', 164), +(15255, 'Cecil', 1913, 'F', 162), +(15256, 'Kay', 1913, 'F', 159), +(15257, 'Louisa', 1913, 'F', 159), +(15258, 'Lucinda', 1913, 'F', 159), +(15259, 'Gloria', 1913, 'F', 158), +(15260, 'Gretchen', 1913, 'F', 158), +(15261, 'Janice', 1913, 'F', 157), +(15262, 'Maybelle', 1913, 'F', 156), +(15263, 'Philomena', 1913, 'F', 156), +(15264, 'Dixie', 1913, 'F', 155), +(15265, 'Madelyn', 1913, 'F', 155), +(15266, 'Zelda', 1913, 'F', 155), +(15267, 'Agatha', 1913, 'F', 153), +(15268, 'Dovie', 1913, 'F', 153), +(15269, 'Vada', 1913, 'F', 153), +(15270, 'Isabell', 1913, 'F', 151), +(15271, 'Hortense', 1913, 'F', 150), +(15272, 'Leora', 1913, 'F', 150), +(15273, 'Paula', 1913, 'F', 150), +(15274, 'Beryl', 1913, 'F', 149), +(15275, 'Louella', 1913, 'F', 149), +(15276, 'Robbie', 1913, 'F', 149), +(15277, 'Yetta', 1913, 'F', 149), +(15278, 'Alpha', 1913, 'F', 148), +(15279, 'Gertie', 1913, 'F', 148), +(15280, 'Alvina', 1913, 'F', 147), +(15281, 'Georgie', 1913, 'F', 147), +(15282, 'Iona', 1913, 'F', 147), +(15283, 'Harriette', 1913, 'F', 145), +(15284, 'Minerva', 1913, 'F', 145), +(15285, 'Elise', 1913, 'F', 144), +(15286, 'Verda', 1913, 'F', 144), +(15287, 'Elda', 1913, 'F', 143), +(15288, 'Alva', 1913, 'F', 142), +(15289, 'Lettie', 1913, 'F', 142), +(15290, 'Tommie', 1913, 'F', 142), +(15291, 'Althea', 1913, 'F', 141), +(15292, 'Lona', 1913, 'F', 140), +(15293, 'Evangeline', 1913, 'F', 139), +(15294, 'Jannie', 1913, 'F', 139), +(15295, 'Mozelle', 1913, 'F', 139), +(15296, 'Polly', 1913, 'F', 138), +(15297, 'Rubye', 1913, 'F', 138), +(15298, 'Judith', 1913, 'F', 137), +(15299, 'Florine', 1913, 'F', 136), +(15300, 'Linnie', 1913, 'F', 135), +(15301, 'Vida', 1913, 'F', 135), +(15302, 'Garnet', 1913, 'F', 133), +(15303, 'Jacqueline', 1913, 'F', 133), +(15304, 'Oleta', 1913, 'F', 133), +(15305, 'Wilda', 1913, 'F', 133), +(15306, 'Bobbie', 1913, 'F', 132), +(15307, 'Elsa', 1913, 'F', 131), +(15308, 'Mercedes', 1913, 'F', 131), +(15309, 'Leta', 1913, 'F', 130), +(15310, 'Rae', 1913, 'F', 130), +(15311, 'Beth', 1913, 'F', 129), +(15312, 'Allene', 1913, 'F', 128), +(15313, 'Margery', 1913, 'F', 127), +(15314, 'Dorthy', 1913, 'F', 126), +(15315, 'Queen', 1913, 'F', 126), +(15316, 'Artie', 1913, 'F', 125), +(15317, 'Bella', 1913, 'F', 125), +(15318, 'Blanch', 1913, 'F', 124), +(15319, 'Cassie', 1913, 'F', 124), +(15320, 'Fanny', 1913, 'F', 124), +(15321, 'Ona', 1913, 'F', 124), +(15322, 'Eve', 1913, 'F', 123), +(15323, 'Valeria', 1913, 'F', 123), +(15324, 'John', 1913, 'F', 122), +(15325, 'Vesta', 1913, 'F', 122), +(15326, 'Abbie', 1913, 'F', 121), +(15327, 'Ester', 1913, 'F', 121), +(15328, 'Earline', 1913, 'F', 120), +(15329, 'Joy', 1913, 'F', 120), +(15330, 'Mina', 1913, 'F', 120), +(15331, 'Bess', 1913, 'F', 119), +(15332, 'Julie', 1913, 'F', 119), +(15333, 'Rowena', 1913, 'F', 119), +(15334, 'Winona', 1913, 'F', 119), +(15335, 'Madeleine', 1913, 'F', 118), +(15336, 'Golda', 1913, 'F', 117), +(15337, 'Melva', 1913, 'F', 117), +(15338, 'Rosalind', 1913, 'F', 117), +(15339, 'Delma', 1913, 'F', 116), +(15340, 'Elena', 1913, 'F', 116), +(15341, 'Lauretta', 1913, 'F', 116), +(15342, 'Valerie', 1913, 'F', 116), +(15343, 'Guadalupe', 1913, 'F', 115), +(15344, 'Rhea', 1913, 'F', 115), +(15345, 'Angie', 1913, 'F', 114), +(15346, 'Zola', 1913, 'F', 114), +(15347, 'Clare', 1913, 'F', 113), +(15348, 'Delores', 1913, 'F', 113), +(15349, 'Floy', 1913, 'F', 113), +(15350, 'Glenna', 1913, 'F', 113), +(15351, 'Marcia', 1913, 'F', 113), +(15352, 'Alene', 1913, 'F', 112), +(15353, 'Ava', 1913, 'F', 112), +(15354, 'Hettie', 1913, 'F', 112), +(15355, 'Phoebe', 1913, 'F', 112), +(15356, 'Freida', 1913, 'F', 111), +(15357, 'Marietta', 1913, 'F', 111), +(15358, 'Millicent', 1913, 'F', 111), +(15359, 'Camille', 1913, 'F', 110), +(15360, 'Enid', 1913, 'F', 110), +(15361, 'Lucia', 1913, 'F', 110), +(15362, 'Lulu', 1913, 'F', 110), +(15363, 'Lorna', 1913, 'F', 109), +(15364, 'Orpha', 1913, 'F', 109), +(15365, 'Yolanda', 1913, 'F', 108), +(15366, 'Albina', 1913, 'F', 107), +(15367, 'Ferne', 1913, 'F', 107), +(15368, 'Juliette', 1913, 'F', 107), +(15369, 'Veda', 1913, 'F', 107), +(15370, 'Germaine', 1913, 'F', 106), +(15371, 'Ivy', 1913, 'F', 106), +(15372, 'Elvera', 1913, 'F', 105), +(15373, 'Filomena', 1913, 'F', 105), +(15374, 'Nelle', 1913, 'F', 105), +(15375, 'Una', 1913, 'F', 105), +(15376, 'Hope', 1913, 'F', 104), +(15377, 'Beverly', 1913, 'F', 103), +(15378, 'Aurelia', 1913, 'F', 102), +(15379, 'Lorine', 1913, 'F', 102), +(15380, 'Retha', 1913, 'F', 102), +(15381, 'Bennie', 1913, 'F', 101), +(15382, 'Diana', 1913, 'F', 101), +(15383, 'Mathilda', 1913, 'F', 101), +(15384, 'Myrtis', 1913, 'F', 101), +(15385, 'Margarita', 1913, 'F', 100), +(15386, 'John', 1913, 'M', 29329), +(15387, 'William', 1913, 'M', 23537), +(15388, 'James', 1913, 'M', 20831), +(15389, 'Robert', 1913, 'M', 15682), +(15390, 'Joseph', 1913, 'M', 14471), +(15391, 'George', 1913, 'M', 13873), +(15392, 'Charles', 1913, 'M', 13189), +(15393, 'Edward', 1913, 'M', 9474), +(15394, 'Frank', 1913, 'M', 9237), +(15395, 'Thomas', 1913, 'M', 7097), +(15396, 'Walter', 1913, 'M', 6890), +(15397, 'Henry', 1913, 'M', 6391), +(15398, 'Harold', 1913, 'M', 6157), +(15399, 'Paul', 1913, 'M', 5966), +(15400, 'Harry', 1913, 'M', 5458), +(15401, 'Albert', 1913, 'M', 5449), +(15402, 'Arthur', 1913, 'M', 5422), +(15403, 'Raymond', 1913, 'M', 5311), +(15404, 'Richard', 1913, 'M', 5107), +(15405, 'Louis', 1913, 'M', 4258), +(15406, 'Clarence', 1913, 'M', 4046), +(15407, 'Ralph', 1913, 'M', 3963), +(15408, 'Carl', 1913, 'M', 3935), +(15409, 'Willie', 1913, 'M', 3760), +(15410, 'Donald', 1913, 'M', 3703), +(15411, 'Howard', 1913, 'M', 3663), +(15412, 'Fred', 1913, 'M', 3624), +(15413, 'Jack', 1913, 'M', 3538), +(15414, 'David', 1913, 'M', 3282), +(15415, 'Francis', 1913, 'M', 3205), +(15416, 'Earl', 1913, 'M', 3110), +(15417, 'Roy', 1913, 'M', 3090), +(15418, 'Kenneth', 1913, 'M', 3065), +(15419, 'Ernest', 1913, 'M', 2940), +(15420, 'Lawrence', 1913, 'M', 2853), +(15421, 'Samuel', 1913, 'M', 2850), +(15422, 'Joe', 1913, 'M', 2806), +(15423, 'Anthony', 1913, 'M', 2781), +(15424, 'Herbert', 1913, 'M', 2723), +(15425, 'Michael', 1913, 'M', 2607), +(15426, 'Stanley', 1913, 'M', 2595), +(15427, 'Alfred', 1913, 'M', 2577), +(15428, 'Eugene', 1913, 'M', 2525), +(15429, 'Woodrow', 1913, 'M', 2333), +(15430, 'Elmer', 1913, 'M', 2323), +(15431, 'Leonard', 1913, 'M', 2276), +(15432, 'Andrew', 1913, 'M', 2222), +(15433, 'Leo', 1913, 'M', 2031), +(15434, 'Frederick', 1913, 'M', 1997), +(15435, 'Russell', 1913, 'M', 1946), +(15436, 'Peter', 1913, 'M', 1934), +(15437, 'Bernard', 1913, 'M', 1916), +(15438, 'Herman', 1913, 'M', 1905), +(15439, 'Daniel', 1913, 'M', 1878), +(15440, 'Edwin', 1913, 'M', 1825), +(15441, 'Chester', 1913, 'M', 1765), +(15442, 'Norman', 1913, 'M', 1748), +(15443, 'Floyd', 1913, 'M', 1740), +(15444, 'Lester', 1913, 'M', 1736), +(15445, 'Theodore', 1913, 'M', 1651), +(15446, 'Melvin', 1913, 'M', 1642), +(15447, 'Charlie', 1913, 'M', 1618), +(15448, 'Leroy', 1913, 'M', 1582), +(15449, 'Clyde', 1913, 'M', 1537), +(15450, 'Sam', 1913, 'M', 1527), +(15451, 'Vincent', 1913, 'M', 1527), +(15452, 'Lloyd', 1913, 'M', 1521), +(15453, 'Clifford', 1913, 'M', 1520), +(15454, 'Philip', 1913, 'M', 1484), +(15455, 'Benjamin', 1913, 'M', 1466), +(15456, 'Milton', 1913, 'M', 1419), +(15457, 'Lewis', 1913, 'M', 1384), +(15458, 'Ray', 1913, 'M', 1328), +(15459, 'Cecil', 1913, 'M', 1276), +(15460, 'Martin', 1913, 'M', 1259), +(15461, 'Oscar', 1913, 'M', 1249), +(15462, 'Marvin', 1913, 'M', 1236), +(15463, 'Lee', 1913, 'M', 1228), +(15464, 'Jesse', 1913, 'M', 1214), +(15465, 'Victor', 1913, 'M', 1177), +(15466, 'Leon', 1913, 'M', 1160), +(15467, 'Alvin', 1913, 'M', 1144), +(15468, 'Vernon', 1913, 'M', 1143), +(15469, 'Gerald', 1913, 'M', 1142), +(15470, 'Glenn', 1913, 'M', 1122), +(15471, 'Stephen', 1913, 'M', 1097), +(15472, 'Edgar', 1913, 'M', 1087), +(15473, 'Claude', 1913, 'M', 1076), +(15474, 'Morris', 1913, 'M', 1073), +(15475, 'Sidney', 1913, 'M', 1073), +(15476, 'Wilbur', 1913, 'M', 1044), +(15477, 'Arnold', 1913, 'M', 1032), +(15478, 'Harvey', 1913, 'M', 1028), +(15479, 'Gordon', 1913, 'M', 1017), +(15480, 'Maurice', 1913, 'M', 994), +(15481, 'Homer', 1913, 'M', 987), +(15482, 'Everett', 1913, 'M', 948), +(15483, 'Alexander', 1913, 'M', 937), +(15484, 'Willard', 1913, 'M', 926), +(15485, 'Allen', 1913, 'M', 903), +(15486, 'Max', 1913, 'M', 897), +(15487, 'Eddie', 1913, 'M', 878), +(15488, 'Gilbert', 1913, 'M', 868), +(15489, 'Irving', 1913, 'M', 862), +(15490, 'Leslie', 1913, 'M', 838), +(15491, 'Julius', 1913, 'M', 835), +(15492, 'Virgil', 1913, 'M', 819), +(15493, 'Ben', 1913, 'M', 809), +(15494, 'Warren', 1913, 'M', 798), +(15495, 'Nicholas', 1913, 'M', 796), +(15496, 'Marion', 1913, 'M', 771), +(15497, 'Hubert', 1913, 'M', 765), +(15498, 'Wayne', 1913, 'M', 760), +(15499, 'Jessie', 1913, 'M', 758), +(15500, 'Hugh', 1913, 'M', 754), +(15501, 'Luther', 1913, 'M', 747), +(15502, 'Jacob', 1913, 'M', 744), +(15503, 'Johnnie', 1913, 'M', 717), +(15504, 'Curtis', 1913, 'M', 676), +(15505, 'Orville', 1913, 'M', 676), +(15506, 'Steve', 1913, 'M', 661), +(15507, 'Wilson', 1913, 'M', 659), +(15508, 'Horace', 1913, 'M', 657), +(15509, 'Oliver', 1913, 'M', 645), +(15510, 'Manuel', 1913, 'M', 624), +(15511, 'Wallace', 1913, 'M', 621), +(15512, 'Nathan', 1913, 'M', 615), +(15513, 'Roland', 1913, 'M', 611), +(15514, 'Glen', 1913, 'M', 606), +(15515, 'Alex', 1913, 'M', 604), +(15516, 'Edmund', 1913, 'M', 599), +(15517, 'Franklin', 1913, 'M', 593), +(15518, 'Wesley', 1913, 'M', 585), +(15519, 'Archie', 1913, 'M', 583), +(15520, 'Tom', 1913, 'M', 573), +(15521, 'Willis', 1913, 'M', 573), +(15522, 'Guy', 1913, 'M', 566), +(15523, 'Roger', 1913, 'M', 565), +(15524, 'Rudolph', 1913, 'M', 564), +(15525, 'Otis', 1913, 'M', 557), +(15526, 'Jerome', 1913, 'M', 554), +(15527, 'Abraham', 1913, 'M', 551), +(15528, 'Emil', 1913, 'M', 551), +(15529, 'Earnest', 1913, 'M', 521), +(15530, 'Mike', 1913, 'M', 520), +(15531, 'Otto', 1913, 'M', 509), +(15532, 'Tony', 1913, 'M', 508), +(15533, 'Patrick', 1913, 'M', 502), +(15534, 'Clifton', 1913, 'M', 497), +(15535, 'Jerry', 1913, 'M', 494), +(15536, 'Matthew', 1913, 'M', 491), +(15537, 'Ira', 1913, 'M', 479), +(15538, 'Angelo', 1913, 'M', 478), +(15539, 'Jim', 1913, 'M', 473), +(15540, 'Dale', 1913, 'M', 472), +(15541, 'Bill', 1913, 'M', 466), +(15542, 'Sylvester', 1913, 'M', 464), +(15543, 'Jimmie', 1913, 'M', 452), +(15544, 'Bennie', 1913, 'M', 446), +(15545, 'Calvin', 1913, 'M', 440); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(15546, 'Jose', 1913, 'M', 432), +(15547, 'Salvatore', 1913, 'M', 431), +(15548, 'Douglas', 1913, 'M', 428), +(15549, 'Marshall', 1913, 'M', 426), +(15550, 'Irvin', 1913, 'M', 422), +(15551, 'Aaron', 1913, 'M', 417), +(15552, 'Ronald', 1913, 'M', 417), +(15553, 'Elbert', 1913, 'M', 416), +(15554, 'Rufus', 1913, 'M', 410), +(15555, 'Wilbert', 1913, 'M', 405), +(15556, 'August', 1913, 'M', 401), +(15557, 'Isaac', 1913, 'M', 398), +(15558, 'Forrest', 1913, 'M', 395), +(15559, 'Ellis', 1913, 'M', 391), +(15560, 'Bruce', 1913, 'M', 390), +(15561, 'Don', 1913, 'M', 388), +(15562, 'Karl', 1913, 'M', 387), +(15563, 'Clinton', 1913, 'M', 386), +(15564, 'Adolph', 1913, 'M', 385), +(15565, 'Wilfred', 1913, 'M', 384), +(15566, 'Clayton', 1913, 'M', 381), +(15567, 'Dan', 1913, 'M', 374), +(15568, 'Alton', 1913, 'M', 372), +(15569, 'Delbert', 1913, 'M', 369), +(15570, 'Phillip', 1913, 'M', 369), +(15571, 'Felix', 1913, 'M', 362), +(15572, 'Julian', 1913, 'M', 360), +(15573, 'Nelson', 1913, 'M', 357), +(15574, 'Percy', 1913, 'M', 356), +(15575, 'Grady', 1913, 'M', 354), +(15576, 'Lonnie', 1913, 'M', 351), +(15577, 'Adam', 1913, 'M', 349), +(15578, 'Jay', 1913, 'M', 349), +(15579, 'Mark', 1913, 'M', 349), +(15580, 'Ervin', 1913, 'M', 347), +(15581, 'Lyle', 1913, 'M', 342), +(15582, 'Bert', 1913, 'M', 340), +(15583, 'Emmett', 1913, 'M', 340), +(15584, 'Pete', 1913, 'M', 340), +(15585, 'Leland', 1913, 'M', 338), +(15586, 'Nathaniel', 1913, 'M', 337), +(15587, 'Merle', 1913, 'M', 331), +(15588, 'Johnie', 1913, 'M', 326), +(15589, 'Dominick', 1913, 'M', 325), +(15590, 'Dennis', 1913, 'M', 324), +(15591, 'Elwood', 1913, 'M', 322), +(15592, 'Lowell', 1913, 'M', 322), +(15593, 'Ivan', 1913, 'M', 316), +(15594, 'Laurence', 1913, 'M', 314), +(15595, 'Amos', 1913, 'M', 312), +(15596, 'Antonio', 1913, 'M', 309), +(15597, 'Nick', 1913, 'M', 309), +(15598, 'Byron', 1913, 'M', 303), +(15599, 'Roscoe', 1913, 'M', 301), +(15600, 'Ross', 1913, 'M', 300), +(15601, 'Owen', 1913, 'M', 293), +(15602, 'Reuben', 1913, 'M', 293), +(15603, 'Mack', 1913, 'M', 292), +(15604, 'Grover', 1913, 'M', 288), +(15605, 'Malcolm', 1913, 'M', 288), +(15606, 'Sherman', 1913, 'M', 284), +(15607, 'Hyman', 1913, 'M', 280), +(15608, 'Perry', 1913, 'M', 280), +(15609, 'Will', 1913, 'M', 280), +(15610, 'Charley', 1913, 'M', 278), +(15611, 'Cornelius', 1913, 'M', 277), +(15612, 'Myron', 1913, 'M', 276), +(15613, 'Erwin', 1913, 'M', 275), +(15614, 'Murray', 1913, 'M', 268), +(15615, 'Carroll', 1913, 'M', 264), +(15616, 'Johnny', 1913, 'M', 263), +(15617, 'Austin', 1913, 'M', 258), +(15618, 'Dominic', 1913, 'M', 258), +(15619, 'Aubrey', 1913, 'M', 255), +(15620, 'Dave', 1913, 'M', 249), +(15621, 'Millard', 1913, 'M', 249), +(15622, 'Gene', 1913, 'M', 248), +(15623, 'Jasper', 1913, 'M', 248), +(15624, 'Ted', 1913, 'M', 247), +(15625, 'Eldon', 1913, 'M', 243), +(15626, 'Juan', 1913, 'M', 243), +(15627, 'Rex', 1913, 'M', 243), +(15628, 'Wendell', 1913, 'M', 243), +(15629, 'Fredrick', 1913, 'M', 241), +(15630, 'Roosevelt', 1913, 'M', 241), +(15631, 'Ed', 1913, 'M', 238), +(15632, 'Simon', 1913, 'M', 238), +(15633, 'Loyd', 1913, 'M', 235), +(15634, 'Allan', 1913, 'M', 230), +(15635, 'Jake', 1913, 'M', 227), +(15636, 'Ollie', 1913, 'M', 225), +(15637, 'Tommie', 1913, 'M', 225), +(15638, 'Dean', 1913, 'M', 224), +(15639, 'Emanuel', 1913, 'M', 224), +(15640, 'Loren', 1913, 'M', 223), +(15641, 'Preston', 1913, 'M', 218), +(15642, 'Sol', 1913, 'M', 218), +(15643, 'Troy', 1913, 'M', 218), +(15644, 'Anton', 1913, 'M', 216), +(15645, 'Solomon', 1913, 'M', 215), +(15646, 'Keith', 1913, 'M', 212), +(15647, 'Larry', 1913, 'M', 212), +(15648, 'Louie', 1913, 'M', 210), +(15649, 'Monroe', 1913, 'M', 210), +(15650, 'Moses', 1913, 'M', 208), +(15651, 'Burton', 1913, 'M', 207), +(15652, 'Kermit', 1913, 'M', 207), +(15653, 'Dwight', 1913, 'M', 206), +(15654, 'Harley', 1913, 'M', 204), +(15655, 'Norbert', 1913, 'M', 204), +(15656, 'Abe', 1913, 'M', 202), +(15657, 'Gerard', 1913, 'M', 201), +(15658, 'Edmond', 1913, 'M', 200), +(15659, 'Isadore', 1913, 'M', 200), +(15660, 'Carlton', 1913, 'M', 198), +(15661, 'Gus', 1913, 'M', 198), +(15662, 'Alphonse', 1913, 'M', 197), +(15663, 'Boyd', 1913, 'M', 197), +(15664, 'Elmo', 1913, 'M', 197), +(15665, 'Harrison', 1913, 'M', 197), +(15666, 'Wilmer', 1913, 'M', 197), +(15667, 'Mitchell', 1913, 'M', 196), +(15668, 'Russel', 1913, 'M', 196), +(15669, 'Earle', 1913, 'M', 194), +(15670, 'Clement', 1913, 'M', 193), +(15671, 'Garland', 1913, 'M', 193), +(15672, 'Lynn', 1913, 'M', 192), +(15673, 'Clair', 1913, 'M', 191), +(15674, 'Clark', 1913, 'M', 191), +(15675, 'Grant', 1913, 'M', 186), +(15676, 'Barney', 1913, 'M', 185), +(15677, 'Morton', 1913, 'M', 185), +(15678, 'Alonzo', 1913, 'M', 184), +(15679, 'Neil', 1913, 'M', 184), +(15680, 'Bruno', 1913, 'M', 180), +(15681, 'Jess', 1913, 'M', 180), +(15682, 'Reginald', 1913, 'M', 180), +(15683, 'Wade', 1913, 'M', 179), +(15684, 'Steven', 1913, 'M', 177), +(15685, 'Forest', 1913, 'M', 176), +(15686, 'Cleveland', 1913, 'M', 173), +(15687, 'Cyril', 1913, 'M', 172), +(15688, 'Dewey', 1913, 'M', 172), +(15689, 'Marcus', 1913, 'M', 172), +(15690, 'Emery', 1913, 'M', 171), +(15691, 'Maynard', 1913, 'M', 169), +(15692, 'Alva', 1913, 'M', 167), +(15693, 'Eli', 1913, 'M', 167), +(15694, 'Freddie', 1913, 'M', 167), +(15695, 'Joel', 1913, 'M', 167), +(15696, 'Meyer', 1913, 'M', 167), +(15697, 'Mario', 1913, 'M', 166), +(15698, 'Orval', 1913, 'M', 165), +(15699, 'Bob', 1913, 'M', 164), +(15700, 'Rocco', 1913, 'M', 164), +(15701, 'Claud', 1913, 'M', 162), +(15702, 'Carlos', 1913, 'M', 160), +(15703, 'Thurman', 1913, 'M', 160), +(15704, 'Timothy', 1913, 'M', 160), +(15705, 'Conrad', 1913, 'M', 159), +(15706, 'Alan', 1913, 'M', 158), +(15707, 'Christopher', 1913, 'M', 157), +(15708, 'Seymour', 1913, 'M', 157), +(15709, 'Stuart', 1913, 'M', 157), +(15710, 'Alfonso', 1913, 'M', 156), +(15711, 'Wiley', 1913, 'M', 156), +(15712, 'Adrian', 1913, 'M', 155), +(15713, 'Buster', 1913, 'M', 155), +(15714, 'Elton', 1913, 'M', 154), +(15715, 'Ruben', 1913, 'M', 154), +(15716, 'Booker', 1913, 'M', 151), +(15717, 'Emory', 1913, 'M', 151), +(15718, 'Andy', 1913, 'M', 150), +(15719, 'Ward', 1913, 'M', 150), +(15720, 'Elijah', 1913, 'M', 149), +(15721, 'Stewart', 1913, 'M', 149), +(15722, 'Ned', 1913, 'M', 148), +(15723, 'Randolph', 1913, 'M', 148), +(15724, 'Saul', 1913, 'M', 148), +(15725, 'Armand', 1913, 'M', 146), +(15726, 'Truman', 1913, 'M', 146), +(15727, 'Cleo', 1913, 'M', 145), +(15728, 'Jesus', 1913, 'M', 145), +(15729, 'Sydney', 1913, 'M', 145), +(15730, 'Jeff', 1913, 'M', 143), +(15731, 'Neal', 1913, 'M', 143), +(15732, 'Ramon', 1913, 'M', 142), +(15733, 'Noah', 1913, 'M', 141), +(15734, 'Harlan', 1913, 'M', 140), +(15735, 'Mathew', 1913, 'M', 140), +(15736, 'Doyle', 1913, 'M', 139), +(15737, 'Hollis', 1913, 'M', 138), +(15738, 'Ellsworth', 1913, 'M', 137), +(15739, 'Herschel', 1913, 'M', 137), +(15740, 'Levi', 1913, 'M', 137), +(15741, 'Pasquale', 1913, 'M', 137), +(15742, 'Buford', 1913, 'M', 136), +(15743, 'Merrill', 1913, 'M', 136), +(15744, 'Francisco', 1913, 'M', 134), +(15745, 'Frederic', 1913, 'M', 134), +(15746, 'Roman', 1913, 'M', 134), +(15747, 'Sterling', 1913, 'M', 132), +(15748, 'Hiram', 1913, 'M', 131), +(15749, 'Odell', 1913, 'M', 131), +(15750, 'Rodney', 1913, 'M', 131), +(15751, 'Weldon', 1913, 'M', 130), +(15752, 'Elvin', 1913, 'M', 129), +(15753, 'Lionel', 1913, 'M', 129), +(15754, 'Patsy', 1913, 'M', 129), +(15755, 'Milford', 1913, 'M', 128), +(15756, 'Noel', 1913, 'M', 128), +(15757, 'Ferdinand', 1913, 'M', 127), +(15758, 'Pedro', 1913, 'M', 127), +(15759, 'Dallas', 1913, 'M', 126), +(15760, 'Mary', 1913, 'M', 126), +(15761, 'Silas', 1913, 'M', 126), +(15762, 'Irwin', 1913, 'M', 125), +(15763, 'Carmen', 1913, 'M', 124), +(15764, 'Spencer', 1913, 'M', 124), +(15765, 'Wilford', 1913, 'M', 123), +(15766, 'Ambrose', 1913, 'M', 122), +(15767, 'Benny', 1913, 'M', 122), +(15768, 'Foster', 1913, 'M', 122), +(15769, 'Vito', 1913, 'M', 122), +(15770, 'Maxwell', 1913, 'M', 121), +(15771, 'Vern', 1913, 'M', 121), +(15772, 'Basil', 1913, 'M', 120), +(15773, 'Harris', 1913, 'M', 120), +(15774, 'Tommy', 1913, 'M', 120), +(15775, 'Laverne', 1913, 'M', 119), +(15776, 'Miles', 1913, 'M', 119), +(15777, 'Norris', 1913, 'M', 119), +(15778, 'Aloysius', 1913, 'M', 118), +(15779, 'Elias', 1913, 'M', 117), +(15780, 'Hugo', 1913, 'M', 117), +(15781, 'Augustus', 1913, 'M', 116), +(15782, 'Darrell', 1913, 'M', 116), +(15783, 'Israel', 1913, 'M', 116), +(15784, 'Scott', 1913, 'M', 116), +(15785, 'Waldo', 1913, 'M', 116), +(15786, 'Wilburn', 1913, 'M', 116), +(15787, 'Isidore', 1913, 'M', 115), +(15788, 'Luke', 1913, 'M', 115), +(15789, 'Emerson', 1913, 'M', 114), +(15790, 'Gabriel', 1913, 'M', 114), +(15791, 'Carmine', 1913, 'M', 113), +(15792, 'Shirley', 1913, 'M', 113), +(15793, 'Milo', 1913, 'M', 112), +(15794, 'Billy', 1913, 'M', 111), +(15795, 'Delmar', 1913, 'M', 111), +(15796, 'Elliott', 1913, 'M', 111), +(15797, 'Omer', 1913, 'M', 110), +(15798, 'Eric', 1913, 'M', 109), +(15799, 'Travis', 1913, 'M', 109), +(15800, 'Odis', 1913, 'M', 108), +(15801, 'Olin', 1913, 'M', 108), +(15802, 'Vance', 1913, 'M', 108), +(15803, 'Jackson', 1913, 'M', 107), +(15804, 'Sanford', 1913, 'M', 107), +(15805, 'Freeman', 1913, 'M', 106), +(15806, 'Morgan', 1913, 'M', 106), +(15807, 'Olen', 1913, 'M', 106), +(15808, 'Columbus', 1913, 'M', 103), +(15809, 'Dudley', 1913, 'M', 103), +(15810, 'Newton', 1913, 'M', 103), +(15811, 'Thaddeus', 1913, 'M', 103), +(15812, 'Al', 1913, 'M', 101), +(15813, 'Jean', 1913, 'M', 100), +(15814, 'Mary', 1914, 'F', 45344), +(15815, 'Helen', 1914, 'F', 23221), +(15816, 'Dorothy', 1914, 'F', 18782), +(15817, 'Margaret', 1914, 'F', 17763), +(15818, 'Ruth', 1914, 'F', 15840), +(15819, 'Anna', 1914, 'F', 11865), +(15820, 'Mildred', 1914, 'F', 11649), +(15821, 'Elizabeth', 1914, 'F', 11366), +(15822, 'Frances', 1914, 'F', 9677), +(15823, 'Marie', 1914, 'F', 8829), +(15824, 'Evelyn', 1914, 'F', 8505), +(15825, 'Alice', 1914, 'F', 8197), +(15826, 'Florence', 1914, 'F', 7887), +(15827, 'Virginia', 1914, 'F', 7601), +(15828, 'Rose', 1914, 'F', 7573), +(15829, 'Lillian', 1914, 'F', 7354), +(15830, 'Louise', 1914, 'F', 6648), +(15831, 'Catherine', 1914, 'F', 6612), +(15832, 'Edna', 1914, 'F', 6289), +(15833, 'Gladys', 1914, 'F', 6227), +(15834, 'Ethel', 1914, 'F', 6204), +(15835, 'Irene', 1914, 'F', 6197), +(15836, 'Josephine', 1914, 'F', 5896), +(15837, 'Ruby', 1914, 'F', 5623), +(15838, 'Grace', 1914, 'F', 5595), +(15839, 'Thelma', 1914, 'F', 5496), +(15840, 'Martha', 1914, 'F', 5431), +(15841, 'Eleanor', 1914, 'F', 5373), +(15842, 'Hazel', 1914, 'F', 5324), +(15843, 'Lucille', 1914, 'F', 5320), +(15844, 'Edith', 1914, 'F', 5209), +(15845, 'Gertrude', 1914, 'F', 4937), +(15846, 'Annie', 1914, 'F', 4800), +(15847, 'Pauline', 1914, 'F', 4699), +(15848, 'Esther', 1914, 'F', 4654), +(15849, 'Doris', 1914, 'F', 4428), +(15850, 'Clara', 1914, 'F', 4240), +(15851, 'Beatrice', 1914, 'F', 4232), +(15852, 'Emma', 1914, 'F', 3972), +(15853, 'Ann', 1914, 'F', 3887), +(15854, 'Bertha', 1914, 'F', 3859), +(15855, 'Julia', 1914, 'F', 3813), +(15856, 'Bernice', 1914, 'F', 3730), +(15857, 'Agnes', 1914, 'F', 3721), +(15858, 'Marjorie', 1914, 'F', 3710), +(15859, 'Elsie', 1914, 'F', 3683), +(15860, 'Sarah', 1914, 'F', 3680), +(15861, 'Katherine', 1914, 'F', 3652), +(15862, 'Ida', 1914, 'F', 3561), +(15863, 'Marion', 1914, 'F', 3550), +(15864, 'Lois', 1914, 'F', 3432), +(15865, 'Eva', 1914, 'F', 3401), +(15866, 'Anne', 1914, 'F', 3365), +(15867, 'Jean', 1914, 'F', 3281), +(15868, 'Bessie', 1914, 'F', 3260), +(15869, 'Pearl', 1914, 'F', 3223), +(15870, 'Viola', 1914, 'F', 3204), +(15871, 'Mabel', 1914, 'F', 3130), +(15872, 'Laura', 1914, 'F', 3058), +(15873, 'Myrtle', 1914, 'F', 3049), +(15874, 'Nellie', 1914, 'F', 2952), +(15875, 'Betty', 1914, 'F', 2933), +(15876, 'Kathryn', 1914, 'F', 2901), +(15877, 'Jessie', 1914, 'F', 2861), +(15878, 'Stella', 1914, 'F', 2771), +(15879, 'Willie', 1914, 'F', 2759), +(15880, 'Minnie', 1914, 'F', 2717), +(15881, 'Vera', 1914, 'F', 2683), +(15882, 'Alma', 1914, 'F', 2648), +(15883, 'Sylvia', 1914, 'F', 2565), +(15884, 'Jane', 1914, 'F', 2340), +(15885, 'Ella', 1914, 'F', 2308), +(15886, 'Lucy', 1914, 'F', 2298), +(15887, 'Lillie', 1914, 'F', 2287), +(15888, 'Lena', 1914, 'F', 2259), +(15889, 'Genevieve', 1914, 'F', 2254), +(15890, 'Jennie', 1914, 'F', 2225), +(15891, 'Mattie', 1914, 'F', 2193), +(15892, 'Leona', 1914, 'F', 2174), +(15893, 'Blanche', 1914, 'F', 2164), +(15894, 'Vivian', 1914, 'F', 2080), +(15895, 'Barbara', 1914, 'F', 2062), +(15896, 'Violet', 1914, 'F', 2061), +(15897, 'Marguerite', 1914, 'F', 2050), +(15898, 'Mae', 1914, 'F', 2049), +(15899, 'Ellen', 1914, 'F', 2039), +(15900, 'Rita', 1914, 'F', 2010), +(15901, 'Charlotte', 1914, 'F', 2008), +(15902, 'Opal', 1914, 'F', 1893), +(15903, 'Marian', 1914, 'F', 1862), +(15904, 'Carrie', 1914, 'F', 1798), +(15905, 'Theresa', 1914, 'F', 1794), +(15906, 'Velma', 1914, 'F', 1794), +(15907, 'Juanita', 1914, 'F', 1793), +(15908, 'Wilma', 1914, 'F', 1787), +(15909, 'Beulah', 1914, 'F', 1776), +(15910, 'Hattie', 1914, 'F', 1678), +(15911, 'Emily', 1914, 'F', 1650), +(15912, 'Fannie', 1914, 'F', 1616), +(15913, 'Sophie', 1914, 'F', 1584), +(15914, 'Inez', 1914, 'F', 1579), +(15915, 'Nancy', 1914, 'F', 1575), +(15916, 'Hilda', 1914, 'F', 1525), +(15917, 'Rosa', 1914, 'F', 1514), +(15918, 'Cora', 1914, 'F', 1500), +(15919, 'Ada', 1914, 'F', 1494), +(15920, 'Georgia', 1914, 'F', 1492), +(15921, 'Sara', 1914, 'F', 1488), +(15922, 'Eunice', 1914, 'F', 1478), +(15923, 'Kathleen', 1914, 'F', 1475), +(15924, 'Harriet', 1914, 'F', 1455), +(15925, 'Estelle', 1914, 'F', 1432), +(15926, 'Phyllis', 1914, 'F', 1407), +(15927, 'Maxine', 1914, 'F', 1396), +(15928, 'Mamie', 1914, 'F', 1386), +(15929, 'Madeline', 1914, 'F', 1381), +(15930, 'Christine', 1914, 'F', 1374), +(15931, 'Geneva', 1914, 'F', 1371), +(15932, 'Alberta', 1914, 'F', 1350), +(15933, 'Lula', 1914, 'F', 1345), +(15934, 'Dora', 1914, 'F', 1343), +(15935, 'Loretta', 1914, 'F', 1323), +(15936, 'Geraldine', 1914, 'F', 1320), +(15937, 'Sadie', 1914, 'F', 1296), +(15938, 'Verna', 1914, 'F', 1226), +(15939, 'Daisy', 1914, 'F', 1202), +(15940, 'Olive', 1914, 'F', 1200), +(15941, 'Norma', 1914, 'F', 1172), +(15942, 'Lucile', 1914, 'F', 1166), +(15943, 'Susie', 1914, 'F', 1165), +(15944, 'Flora', 1914, 'F', 1152), +(15945, 'June', 1914, 'F', 1148), +(15946, 'Muriel', 1914, 'F', 1133), +(15947, 'Naomi', 1914, 'F', 1128), +(15948, 'Maria', 1914, 'F', 1117), +(15949, 'Olga', 1914, 'F', 1107), +(15950, 'Mable', 1914, 'F', 1081), +(15951, 'Audrey', 1914, 'F', 1070), +(15952, 'Sally', 1914, 'F', 1064), +(15953, 'Henrietta', 1914, 'F', 1058), +(15954, 'Maggie', 1914, 'F', 1055), +(15955, 'Lottie', 1914, 'F', 1053), +(15956, 'Nora', 1914, 'F', 1038), +(15957, 'Lola', 1914, 'F', 1031), +(15958, 'Victoria', 1914, 'F', 1026), +(15959, 'Irma', 1914, 'F', 1015), +(15960, 'Erma', 1914, 'F', 992), +(15961, 'Caroline', 1914, 'F', 989), +(15962, 'Miriam', 1914, 'F', 981), +(15963, 'Jeanette', 1914, 'F', 977), +(15964, 'Rachel', 1914, 'F', 974), +(15965, 'Lorraine', 1914, 'F', 969), +(15966, 'Rosie', 1914, 'F', 957), +(15967, 'Nettie', 1914, 'F', 936), +(15968, 'Dolores', 1914, 'F', 934), +(15969, 'Amelia', 1914, 'F', 926), +(15970, 'Eula', 1914, 'F', 923), +(15971, 'Roberta', 1914, 'F', 921), +(15972, 'Eileen', 1914, 'F', 920), +(15973, 'Shirley', 1914, 'F', 906), +(15974, 'Winifred', 1914, 'F', 904), +(15975, 'Rebecca', 1914, 'F', 890), +(15976, 'Janet', 1914, 'F', 883), +(15977, 'Wanda', 1914, 'F', 881), +(15978, 'Della', 1914, 'F', 879), +(15979, 'Adeline', 1914, 'F', 878), +(15980, 'Katie', 1914, 'F', 861), +(15981, 'Lydia', 1914, 'F', 839), +(15982, 'Carolyn', 1914, 'F', 835), +(15983, 'Antoinette', 1914, 'F', 830), +(15984, 'Nina', 1914, 'F', 828), +(15985, 'Fern', 1914, 'F', 821), +(15986, 'Goldie', 1914, 'F', 787), +(15987, 'Bonnie', 1914, 'F', 783), +(15988, 'May', 1914, 'F', 769), +(15989, 'Veronica', 1914, 'F', 767), +(15990, 'Ollie', 1914, 'F', 765), +(15991, 'Sallie', 1914, 'F', 760), +(15992, 'Isabel', 1914, 'F', 747), +(15993, 'Isabelle', 1914, 'F', 739), +(15994, 'Essie', 1914, 'F', 737), +(15995, 'Dorothea', 1914, 'F', 731), +(15996, 'Marcella', 1914, 'F', 729), +(15997, 'Effie', 1914, 'F', 726), +(15998, 'Lorene', 1914, 'F', 722), +(15999, 'Anita', 1914, 'F', 720), +(16000, 'Adele', 1914, 'F', 709), +(16001, 'Addie', 1914, 'F', 708), +(16002, 'Jeannette', 1914, 'F', 699), +(16003, 'Ora', 1914, 'F', 698), +(16004, 'Regina', 1914, 'F', 694), +(16005, 'Maude', 1914, 'F', 693), +(16006, 'Celia', 1914, 'F', 692), +(16007, 'Freda', 1914, 'F', 689), +(16008, 'Angelina', 1914, 'F', 686), +(16009, 'Cecelia', 1914, 'F', 679), +(16010, 'Cleo', 1914, 'F', 672), +(16011, 'Faye', 1914, 'F', 663), +(16012, 'Eloise', 1914, 'F', 662), +(16013, 'Susan', 1914, 'F', 661), +(16014, 'Patricia', 1914, 'F', 656), +(16015, 'Lela', 1914, 'F', 647), +(16016, 'Mollie', 1914, 'F', 644), +(16017, 'Frieda', 1914, 'F', 639), +(16018, 'Sue', 1914, 'F', 634), +(16019, 'Angeline', 1914, 'F', 632), +(16020, 'Iva', 1914, 'F', 618), +(16021, 'Jeanne', 1914, 'F', 612), +(16022, 'Arlene', 1914, 'F', 608), +(16023, 'Luella', 1914, 'F', 603), +(16024, 'Constance', 1914, 'F', 600), +(16025, 'Angela', 1914, 'F', 590), +(16026, 'Margie', 1914, 'F', 588), +(16027, 'Selma', 1914, 'F', 587), +(16028, 'Rosalie', 1914, 'F', 584), +(16029, 'Etta', 1914, 'F', 581), +(16030, 'Joan', 1914, 'F', 578), +(16031, 'Claire', 1914, 'F', 571), +(16032, 'Ola', 1914, 'F', 571), +(16033, 'Jewell', 1914, 'F', 570), +(16034, 'Elaine', 1914, 'F', 568), +(16035, 'Leola', 1914, 'F', 567), +(16036, 'Fay', 1914, 'F', 566), +(16037, 'Elva', 1914, 'F', 563), +(16038, 'Rosemary', 1914, 'F', 563), +(16039, 'Lila', 1914, 'F', 560), +(16040, 'Alta', 1914, 'F', 552), +(16041, 'Lizzie', 1914, 'F', 551), +(16042, 'Sophia', 1914, 'F', 548), +(16043, 'Flossie', 1914, 'F', 538), +(16044, 'Helene', 1914, 'F', 538), +(16045, 'Nell', 1914, 'F', 530), +(16046, 'Annette', 1914, 'F', 526), +(16047, 'Cecilia', 1914, 'F', 525), +(16048, 'Teresa', 1914, 'F', 524), +(16049, 'Jewel', 1914, 'F', 515), +(16050, 'Estella', 1914, 'F', 514), +(16051, 'Reba', 1914, 'F', 502), +(16052, 'Ina', 1914, 'F', 495), +(16053, 'Johnnie', 1914, 'F', 494), +(16054, 'Matilda', 1914, 'F', 494), +(16055, 'Elma', 1914, 'F', 484), +(16056, 'Ernestine', 1914, 'F', 473), +(16057, 'Amy', 1914, 'F', 472), +(16058, 'Janie', 1914, 'F', 472), +(16059, 'Leah', 1914, 'F', 457), +(16060, 'Nannie', 1914, 'F', 457), +(16061, 'Joyce', 1914, 'F', 456), +(16062, 'Hannah', 1914, 'F', 443), +(16063, 'Carol', 1914, 'F', 438), +(16064, 'Eleanore', 1914, 'F', 438), +(16065, 'Elnora', 1914, 'F', 426), +(16066, 'Iris', 1914, 'F', 425), +(16067, 'Elvira', 1914, 'F', 405), +(16068, 'Lee', 1914, 'F', 405), +(16069, 'Tillie', 1914, 'F', 404), +(16070, 'Virgie', 1914, 'F', 402), +(16071, 'Millie', 1914, 'F', 401), +(16072, 'Adelaide', 1914, 'F', 396), +(16073, 'Lenora', 1914, 'F', 396), +(16074, 'Natalie', 1914, 'F', 394), +(16075, 'Rena', 1914, 'F', 387), +(16076, 'Francis', 1914, 'F', 385), +(16077, 'Winnie', 1914, 'F', 383), +(16078, 'Gwendolyn', 1914, 'F', 382), +(16079, 'Laverne', 1914, 'F', 379), +(16080, 'Ila', 1914, 'F', 376), +(16081, 'Amanda', 1914, 'F', 375), +(16082, 'Carmen', 1914, 'F', 374), +(16083, 'Peggy', 1914, 'F', 373), +(16084, 'Zelma', 1914, 'F', 373), +(16085, 'Eugenia', 1914, 'F', 367), +(16086, 'Edythe', 1914, 'F', 365), +(16087, 'Harriett', 1914, 'F', 359), +(16088, 'Elinor', 1914, 'F', 358), +(16089, 'Belle', 1914, 'F', 353), +(16090, 'Neva', 1914, 'F', 353), +(16091, 'Cornelia', 1914, 'F', 352), +(16092, 'Melba', 1914, 'F', 352), +(16093, 'Cecile', 1914, 'F', 351), +(16094, 'Allie', 1914, 'F', 350), +(16095, 'Letha', 1914, 'F', 347), +(16096, 'Josie', 1914, 'F', 344), +(16097, 'Carmela', 1914, 'F', 341), +(16098, 'Olivia', 1914, 'F', 340), +(16099, 'Gracie', 1914, 'F', 339), +(16100, 'Gussie', 1914, 'F', 336), +(16101, 'Lessie', 1914, 'F', 336), +(16102, 'Imogene', 1914, 'F', 333), +(16103, 'Lorena', 1914, 'F', 328), +(16104, 'Helena', 1914, 'F', 327), +(16105, 'Billie', 1914, 'F', 326), +(16106, 'Myra', 1914, 'F', 322), +(16107, 'Callie', 1914, 'F', 318), +(16108, 'Annabelle', 1914, 'F', 315), +(16109, 'Eliza', 1914, 'F', 311), +(16110, 'Kate', 1914, 'F', 311), +(16111, 'Hester', 1914, 'F', 309), +(16112, 'Concetta', 1914, 'F', 306), +(16113, 'Dollie', 1914, 'F', 306), +(16114, 'Clarice', 1914, 'F', 300), +(16115, 'Aileen', 1914, 'F', 298), +(16116, 'Yvonne', 1914, 'F', 295), +(16117, 'Avis', 1914, 'F', 293), +(16118, 'Connie', 1914, 'F', 293), +(16119, 'Christina', 1914, 'F', 291), +(16120, 'Katharine', 1914, 'F', 290), +(16121, 'Madge', 1914, 'F', 288), +(16122, 'Claudia', 1914, 'F', 286), +(16123, 'Donna', 1914, 'F', 283), +(16124, 'Iola', 1914, 'F', 283), +(16125, 'Berniece', 1914, 'F', 282), +(16126, 'Frankie', 1914, 'F', 282), +(16127, 'Maudie', 1914, 'F', 282), +(16128, 'Stephanie', 1914, 'F', 280), +(16129, 'Corinne', 1914, 'F', 279), +(16130, 'Priscilla', 1914, 'F', 279), +(16131, 'Rosetta', 1914, 'F', 278), +(16132, 'Aline', 1914, 'F', 277), +(16133, 'Lora', 1914, 'F', 270), +(16134, 'Lenore', 1914, 'F', 269), +(16135, 'Alyce', 1914, 'F', 267), +(16136, 'Augusta', 1914, 'F', 266), +(16137, 'Rhoda', 1914, 'F', 266), +(16138, 'Odessa', 1914, 'F', 263), +(16139, 'Arline', 1914, 'F', 260), +(16140, 'Leila', 1914, 'F', 259), +(16141, 'Bettie', 1914, 'F', 256), +(16142, 'Johanna', 1914, 'F', 256), +(16143, 'Bernadine', 1914, 'F', 252), +(16144, 'Lily', 1914, 'F', 252), +(16145, 'Willa', 1914, 'F', 251), +(16146, 'Loraine', 1914, 'F', 250), +(16147, 'Leota', 1914, 'F', 249), +(16148, 'Delia', 1914, 'F', 248), +(16149, 'Merle', 1914, 'F', 247), +(16150, 'Molly', 1914, 'F', 247), +(16151, 'Maurine', 1914, 'F', 246), +(16152, 'Carmella', 1914, 'F', 245), +(16153, 'Corine', 1914, 'F', 245), +(16154, 'Nadine', 1914, 'F', 244), +(16155, 'Bertie', 1914, 'F', 239), +(16156, 'Rosella', 1914, 'F', 237), +(16157, 'Roxie', 1914, 'F', 237), +(16158, 'Erna', 1914, 'F', 232), +(16159, 'Tessie', 1914, 'F', 230), +(16160, 'Lilly', 1914, 'F', 229), +(16161, 'Lou', 1914, 'F', 227), +(16162, 'Madelyn', 1914, 'F', 227), +(16163, 'Nola', 1914, 'F', 227), +(16164, 'Ione', 1914, 'F', 226), +(16165, 'Lelia', 1914, 'F', 226), +(16166, 'Dessie', 1914, 'F', 225), +(16167, 'Janice', 1914, 'F', 225), +(16168, 'Ophelia', 1914, 'F', 224), +(16169, 'Zella', 1914, 'F', 224), +(16170, 'Pearlie', 1914, 'F', 223), +(16171, 'Linda', 1914, 'F', 219), +(16172, 'Elisabeth', 1914, 'F', 217), +(16173, 'Wilhelmina', 1914, 'F', 216), +(16174, 'Kay', 1914, 'F', 215), +(16175, 'Mona', 1914, 'F', 212), +(16176, 'Birdie', 1914, 'F', 211), +(16177, 'Eddie', 1914, 'F', 210), +(16178, 'Isabell', 1914, 'F', 210), +(16179, 'Pansy', 1914, 'F', 208), +(16180, 'Mayme', 1914, 'F', 207), +(16181, 'Philomena', 1914, 'F', 207), +(16182, 'Ramona', 1914, 'F', 207), +(16183, 'Sybil', 1914, 'F', 206), +(16184, 'Hallie', 1914, 'F', 205), +(16185, 'Delores', 1914, 'F', 203), +(16186, 'Florine', 1914, 'F', 203), +(16187, 'Antonia', 1914, 'F', 202), +(16188, 'Dolly', 1914, 'F', 202), +(16189, 'Rae', 1914, 'F', 202), +(16190, 'Bernadette', 1914, 'F', 201), +(16191, 'Althea', 1914, 'F', 199), +(16192, 'Catharine', 1914, 'F', 199), +(16193, 'Gretchen', 1914, 'F', 196), +(16194, 'Alvina', 1914, 'F', 194), +(16195, 'Cecil', 1914, 'F', 193), +(16196, 'Jimmie', 1914, 'F', 192), +(16197, 'Gloria', 1914, 'F', 191), +(16198, 'Georgie', 1914, 'F', 190), +(16199, 'Oma', 1914, 'F', 189), +(16200, 'Harriette', 1914, 'F', 188), +(16201, 'Nona', 1914, 'F', 188), +(16202, 'Isabella', 1914, 'F', 187), +(16203, 'Paula', 1914, 'F', 184), +(16204, 'Cynthia', 1914, 'F', 183), +(16205, 'Dovie', 1914, 'F', 182), +(16206, 'Beryl', 1914, 'F', 180), +(16207, 'Robbie', 1914, 'F', 180), +(16208, 'Phoebe', 1914, 'F', 177), +(16209, 'Wilda', 1914, 'F', 177), +(16210, 'Verda', 1914, 'F', 176), +(16211, 'Gertie', 1914, 'F', 175), +(16212, 'Maud', 1914, 'F', 175), +(16213, 'Reva', 1914, 'F', 175), +(16214, 'Beth', 1914, 'F', 173), +(16215, 'Louisa', 1914, 'F', 173), +(16216, 'Agatha', 1914, 'F', 172), +(16217, 'Rubye', 1914, 'F', 172), +(16218, 'Yolanda', 1914, 'F', 172), +(16219, 'Leone', 1914, 'F', 171), +(16220, 'Clare', 1914, 'F', 169), +(16221, 'John', 1914, 'F', 169), +(16222, 'Fanny', 1914, 'F', 167), +(16223, 'Margery', 1914, 'F', 167), +(16224, 'Mercedes', 1914, 'F', 167), +(16225, 'Elsa', 1914, 'F', 166), +(16226, 'Vida', 1914, 'F', 166), +(16227, 'Dixie', 1914, 'F', 164), +(16228, 'Iona', 1914, 'F', 164), +(16229, 'Judith', 1914, 'F', 164), +(16230, 'Polly', 1914, 'F', 164), +(16231, 'Marietta', 1914, 'F', 163), +(16232, 'Rosalind', 1914, 'F', 163), +(16233, 'Leora', 1914, 'F', 162), +(16234, 'Hortense', 1914, 'F', 161), +(16235, 'Julie', 1914, 'F', 161), +(16236, 'Oleta', 1914, 'F', 161), +(16237, 'Allene', 1914, 'F', 160), +(16238, 'Tommie', 1914, 'F', 160), +(16239, 'Vesta', 1914, 'F', 160), +(16240, 'Zelda', 1914, 'F', 159), +(16241, 'Garnet', 1914, 'F', 158), +(16242, 'Lulu', 1914, 'F', 158), +(16243, 'Earline', 1914, 'F', 157), +(16244, 'Elise', 1914, 'F', 157), +(16245, 'Joy', 1914, 'F', 157), +(16246, 'Madeleine', 1914, 'F', 157), +(16247, 'Ava', 1914, 'F', 156), +(16248, 'Guadalupe', 1914, 'F', 156), +(16249, 'Jannie', 1914, 'F', 156), +(16250, 'Louella', 1914, 'F', 156), +(16251, 'Lura', 1914, 'F', 156), +(16252, 'Monica', 1914, 'F', 156), +(16253, 'Elda', 1914, 'F', 155), +(16254, 'Leta', 1914, 'F', 153), +(16255, 'Mozelle', 1914, 'F', 153), +(16256, 'Bella', 1914, 'F', 152), +(16257, 'Diana', 1914, 'F', 152), +(16258, 'Valeria', 1914, 'F', 152), +(16259, 'Albina', 1914, 'F', 151), +(16260, 'Angie', 1914, 'F', 151), +(16261, 'Floy', 1914, 'F', 150), +(16262, 'Glenna', 1914, 'F', 149), +(16263, 'Yetta', 1914, 'F', 149), +(16264, 'Bobbie', 1914, 'F', 148), +(16265, 'Queen', 1914, 'F', 148), +(16266, 'Cassie', 1914, 'F', 147), +(16267, 'Ferne', 1914, 'F', 145), +(16268, 'Lauretta', 1914, 'F', 145), +(16269, 'Corrine', 1914, 'F', 144), +(16270, 'Vada', 1914, 'F', 144), +(16271, 'Dorthy', 1914, 'F', 143), +(16272, 'Beverly', 1914, 'F', 142), +(16273, 'Mathilda', 1914, 'F', 142), +(16274, 'Maybelle', 1914, 'F', 141), +(16275, 'Lona', 1914, 'F', 139), +(16276, 'Minerva', 1914, 'F', 139), +(16277, 'Una', 1914, 'F', 139), +(16278, 'Winona', 1914, 'F', 139), +(16279, 'Hettie', 1914, 'F', 138), +(16280, 'Lucinda', 1914, 'F', 138), +(16281, 'Marjory', 1914, 'F', 136), +(16282, 'Rowena', 1914, 'F', 136), +(16283, 'Alpha', 1914, 'F', 135), +(16284, 'Evangeline', 1914, 'F', 135), +(16285, 'Lorna', 1914, 'F', 135), +(16286, 'Melva', 1914, 'F', 135), +(16287, 'Velda', 1914, 'F', 135), +(16288, 'Artie', 1914, 'F', 134), +(16289, 'Ester', 1914, 'F', 134), +(16290, 'Lettie', 1914, 'F', 133), +(16291, 'Blanch', 1914, 'F', 132), +(16292, 'Delma', 1914, 'F', 132), +(16293, 'Elena', 1914, 'F', 132), +(16294, 'Jacqueline', 1914, 'F', 132), +(16295, 'Marcia', 1914, 'F', 132), +(16296, 'Suzanne', 1914, 'F', 131), +(16297, 'Alene', 1914, 'F', 130), +(16298, 'Belva', 1914, 'F', 130), +(16299, 'Eve', 1914, 'F', 130), +(16300, 'Filomena', 1914, 'F', 130), +(16301, 'Magdalene', 1914, 'F', 130), +(16302, 'Enid', 1914, 'F', 129), +(16303, 'Edwina', 1914, 'F', 128), +(16304, 'Ivy', 1914, 'F', 128), +(16305, 'Lorine', 1914, 'F', 128), +(16306, 'Mazie', 1914, 'F', 128), +(16307, 'Clementine', 1914, 'F', 127), +(16308, 'Nelle', 1914, 'F', 127), +(16309, 'Ona', 1914, 'F', 127), +(16310, 'Eleanora', 1914, 'F', 126), +(16311, 'Evalyn', 1914, 'F', 126), +(16312, 'Golda', 1914, 'F', 126), +(16313, 'Anastasia', 1914, 'F', 125), +(16314, 'Lucia', 1914, 'F', 125), +(16315, 'Orpha', 1914, 'F', 125), +(16316, 'Hope', 1914, 'F', 124), +(16317, 'Rhea', 1914, 'F', 123), +(16318, 'Freida', 1914, 'F', 122), +(16319, 'Odell', 1914, 'F', 122), +(16320, 'Alva', 1914, 'F', 121), +(16321, 'Germaine', 1914, 'F', 121), +(16322, 'Linnie', 1914, 'F', 120), +(16323, 'Zora', 1914, 'F', 120), +(16324, 'Juana', 1914, 'F', 119), +(16325, 'Margret', 1914, 'F', 119), +(16326, 'Mavis', 1914, 'F', 119), +(16327, 'Ursula', 1914, 'F', 119), +(16328, 'Era', 1914, 'F', 118), +(16329, 'Idella', 1914, 'F', 118), +(16330, 'Marianne', 1914, 'F', 118), +(16331, 'Veda', 1914, 'F', 118), +(16332, 'Estell', 1914, 'F', 117), +(16333, 'Nelda', 1914, 'F', 117), +(16334, 'Vernice', 1914, 'F', 117), +(16335, 'Elvera', 1914, 'F', 115), +(16336, 'Magnolia', 1914, 'F', 115), +(16337, 'Hedwig', 1914, 'F', 114), +(16338, 'Juliette', 1914, 'F', 114), +(16339, 'Aurelia', 1914, 'F', 111), +(16340, 'Camille', 1914, 'F', 111), +(16341, 'Emilie', 1914, 'F', 111), +(16342, 'Margarette', 1914, 'F', 111), +(16343, 'Petra', 1914, 'F', 111), +(16344, 'Vergie', 1914, 'F', 111), +(16345, 'Adell', 1914, 'F', 109), +(16346, 'Evie', 1914, 'F', 109), +(16347, 'Gene', 1914, 'F', 109), +(16348, 'Mina', 1914, 'F', 109), +(16349, 'Millicent', 1914, 'F', 108), +(16350, 'Myrtis', 1914, 'F', 108), +(16351, 'Ray', 1914, 'F', 108), +(16352, 'Tina', 1914, 'F', 108), +(16353, 'Alfreda', 1914, 'F', 107), +(16354, 'Aurora', 1914, 'F', 107), +(16355, 'Delphine', 1914, 'F', 107), +(16356, 'Elna', 1914, 'F', 107), +(16357, 'George', 1914, 'F', 107), +(16358, 'James', 1914, 'F', 107), +(16359, 'Ruthie', 1914, 'F', 107), +(16360, 'Dortha', 1914, 'F', 105), +(16361, 'Mittie', 1914, 'F', 105), +(16362, 'Bennie', 1914, 'F', 104), +(16363, 'Jo', 1914, 'F', 103), +(16364, 'Margarita', 1914, 'F', 103), +(16365, 'Valerie', 1914, 'F', 103), +(16366, 'Cathryn', 1914, 'F', 102), +(16367, 'Gail', 1914, 'F', 102), +(16368, 'Katheryn', 1914, 'F', 102), +(16369, 'Lyda', 1914, 'F', 102), +(16370, 'Charlie', 1914, 'F', 101), +(16371, 'Dorris', 1914, 'F', 101), +(16372, 'Kathlyn', 1914, 'F', 101), +(16373, 'Verla', 1914, 'F', 101), +(16374, 'Zola', 1914, 'F', 101), +(16375, 'Dorotha', 1914, 'F', 100), +(16376, 'Johnie', 1914, 'F', 100), +(16377, 'Rosalee', 1914, 'F', 100), +(16378, 'Therese', 1914, 'F', 100), +(16379, 'John', 1914, 'M', 37948), +(16380, 'William', 1914, 'M', 29756), +(16381, 'James', 1914, 'M', 26263), +(16382, 'Robert', 1914, 'M', 21188), +(16383, 'Joseph', 1914, 'M', 18828), +(16384, 'George', 1914, 'M', 17603), +(16385, 'Charles', 1914, 'M', 16938), +(16386, 'Edward', 1914, 'M', 12317), +(16387, 'Frank', 1914, 'M', 12001), +(16388, 'Walter', 1914, 'M', 8962), +(16389, 'Thomas', 1914, 'M', 8850), +(16390, 'Henry', 1914, 'M', 8110), +(16391, 'Paul', 1914, 'M', 7733), +(16392, 'Harold', 1914, 'M', 7563), +(16393, 'Albert', 1914, 'M', 6942), +(16394, 'Raymond', 1914, 'M', 6820), +(16395, 'Richard', 1914, 'M', 6669), +(16396, 'Arthur', 1914, 'M', 6641), +(16397, 'Harry', 1914, 'M', 6588), +(16398, 'Louis', 1914, 'M', 5495), +(16399, 'Ralph', 1914, 'M', 5010), +(16400, 'Clarence', 1914, 'M', 4909), +(16401, 'Donald', 1914, 'M', 4836), +(16402, 'Carl', 1914, 'M', 4807), +(16403, 'Willie', 1914, 'M', 4709), +(16404, 'Howard', 1914, 'M', 4490), +(16405, 'Jack', 1914, 'M', 4486), +(16406, 'Fred', 1914, 'M', 4441), +(16407, 'David', 1914, 'M', 4251), +(16408, 'Kenneth', 1914, 'M', 4177), +(16409, 'Francis', 1914, 'M', 3901), +(16410, 'Roy', 1914, 'M', 3852), +(16411, 'Earl', 1914, 'M', 3842), +(16412, 'Joe', 1914, 'M', 3712), +(16413, 'Samuel', 1914, 'M', 3704), +(16414, 'Lawrence', 1914, 'M', 3703), +(16415, 'Anthony', 1914, 'M', 3695), +(16416, 'Ernest', 1914, 'M', 3631), +(16417, 'Stanley', 1914, 'M', 3559), +(16418, 'Michael', 1914, 'M', 3363), +(16419, 'Alfred', 1914, 'M', 3346), +(16420, 'Herbert', 1914, 'M', 3253), +(16421, 'Eugene', 1914, 'M', 3211), +(16422, 'Andrew', 1914, 'M', 2965), +(16423, 'Leonard', 1914, 'M', 2923), +(16424, 'Elmer', 1914, 'M', 2878), +(16425, 'Leo', 1914, 'M', 2655), +(16426, 'Peter', 1914, 'M', 2624), +(16427, 'Russell', 1914, 'M', 2568), +(16428, 'Bernard', 1914, 'M', 2436), +(16429, 'Herman', 1914, 'M', 2430), +(16430, 'Frederick', 1914, 'M', 2415), +(16431, 'Edwin', 1914, 'M', 2386), +(16432, 'Norman', 1914, 'M', 2335), +(16433, 'Daniel', 1914, 'M', 2324), +(16434, 'Chester', 1914, 'M', 2289), +(16435, 'Lester', 1914, 'M', 2164), +(16436, 'Floyd', 1914, 'M', 2090), +(16437, 'Melvin', 1914, 'M', 2064), +(16438, 'Leroy', 1914, 'M', 2004), +(16439, 'Vincent', 1914, 'M', 1962), +(16440, 'Clifford', 1914, 'M', 1960), +(16441, 'Clyde', 1914, 'M', 1953), +(16442, 'Theodore', 1914, 'M', 1929), +(16443, 'Charlie', 1914, 'M', 1906), +(16444, 'Lloyd', 1914, 'M', 1884), +(16445, 'Sam', 1914, 'M', 1880), +(16446, 'Philip', 1914, 'M', 1870), +(16447, 'Milton', 1914, 'M', 1834), +(16448, 'Benjamin', 1914, 'M', 1823), +(16449, 'Woodrow', 1914, 'M', 1785), +(16450, 'Lewis', 1914, 'M', 1767), +(16451, 'Martin', 1914, 'M', 1676), +(16452, 'Ray', 1914, 'M', 1657), +(16453, 'Marvin', 1914, 'M', 1627), +(16454, 'Victor', 1914, 'M', 1559), +(16455, 'Oscar', 1914, 'M', 1553), +(16456, 'Alvin', 1914, 'M', 1532), +(16457, 'Cecil', 1914, 'M', 1530), +(16458, 'Stephen', 1914, 'M', 1486), +(16459, 'Gerald', 1914, 'M', 1468), +(16460, 'Jesse', 1914, 'M', 1456), +(16461, 'Vernon', 1914, 'M', 1455), +(16462, 'Lee', 1914, 'M', 1451), +(16463, 'Leon', 1914, 'M', 1414), +(16464, 'Morris', 1914, 'M', 1365), +(16465, 'Edgar', 1914, 'M', 1361), +(16466, 'Gordon', 1914, 'M', 1355), +(16467, 'Sidney', 1914, 'M', 1337), +(16468, 'Everett', 1914, 'M', 1336), +(16469, 'Glenn', 1914, 'M', 1326), +(16470, 'Willard', 1914, 'M', 1302), +(16471, 'Claude', 1914, 'M', 1284), +(16472, 'Maurice', 1914, 'M', 1256), +(16473, 'Harvey', 1914, 'M', 1250), +(16474, 'Wilbur', 1914, 'M', 1248), +(16475, 'Arnold', 1914, 'M', 1174), +(16476, 'Alexander', 1914, 'M', 1169), +(16477, 'Max', 1914, 'M', 1159), +(16478, 'Irving', 1914, 'M', 1156), +(16479, 'Homer', 1914, 'M', 1152), +(16480, 'Nicholas', 1914, 'M', 1151), +(16481, 'Leslie', 1914, 'M', 1076), +(16482, 'Gilbert', 1914, 'M', 1059), +(16483, 'Allen', 1914, 'M', 1049), +(16484, 'Julius', 1914, 'M', 1048), +(16485, 'Virgil', 1914, 'M', 1048), +(16486, 'Warren', 1914, 'M', 1034), +(16487, 'Eddie', 1914, 'M', 1009), +(16488, 'Ben', 1914, 'M', 1005), +(16489, 'Wayne', 1914, 'M', 1001), +(16490, 'Steve', 1914, 'M', 998), +(16491, 'Jacob', 1914, 'M', 997), +(16492, 'Luther', 1914, 'M', 991), +(16493, 'Marion', 1914, 'M', 982), +(16494, 'Hugh', 1914, 'M', 967), +(16495, 'Jessie', 1914, 'M', 949), +(16496, 'Hubert', 1914, 'M', 932), +(16497, 'Johnnie', 1914, 'M', 928), +(16498, 'Curtis', 1914, 'M', 915), +(16499, 'Roland', 1914, 'M', 882), +(16500, 'Oliver', 1914, 'M', 861), +(16501, 'Glen', 1914, 'M', 853), +(16502, 'Nathan', 1914, 'M', 848), +(16503, 'Horace', 1914, 'M', 840), +(16504, 'Roger', 1914, 'M', 816), +(16505, 'Wallace', 1914, 'M', 810), +(16506, 'Manuel', 1914, 'M', 794), +(16507, 'Mike', 1914, 'M', 794), +(16508, 'Edmund', 1914, 'M', 792), +(16509, 'Alex', 1914, 'M', 789), +(16510, 'Wesley', 1914, 'M', 789), +(16511, 'Orville', 1914, 'M', 787), +(16512, 'Franklin', 1914, 'M', 770), +(16513, 'Willis', 1914, 'M', 743), +(16514, 'Jerome', 1914, 'M', 737), +(16515, 'Tom', 1914, 'M', 736), +(16516, 'Tony', 1914, 'M', 733), +(16517, 'Rudolph', 1914, 'M', 732), +(16518, 'Otis', 1914, 'M', 709), +(16519, 'Abraham', 1914, 'M', 700), +(16520, 'Dale', 1914, 'M', 691), +(16521, 'Emil', 1914, 'M', 684), +(16522, 'Jerry', 1914, 'M', 649), +(16523, 'Archie', 1914, 'M', 648), +(16524, 'Angelo', 1914, 'M', 643), +(16525, 'Earnest', 1914, 'M', 638), +(16526, 'Salvatore', 1914, 'M', 634), +(16527, 'Patrick', 1914, 'M', 633), +(16528, 'Clifton', 1914, 'M', 616), +(16529, 'Matthew', 1914, 'M', 613), +(16530, 'Ira', 1914, 'M', 605), +(16531, 'Wilson', 1914, 'M', 605), +(16532, 'Bennie', 1914, 'M', 598), +(16533, 'Otto', 1914, 'M', 598), +(16534, 'Guy', 1914, 'M', 580), +(16535, 'Clinton', 1914, 'M', 566), +(16536, 'Clayton', 1914, 'M', 563), +(16537, 'Bill', 1914, 'M', 559), +(16538, 'Jose', 1914, 'M', 552), +(16539, 'Karl', 1914, 'M', 548), +(16540, 'Wilbert', 1914, 'M', 545), +(16541, 'Ronald', 1914, 'M', 541), +(16542, 'Sylvester', 1914, 'M', 538), +(16543, 'Phillip', 1914, 'M', 537), +(16544, 'August', 1914, 'M', 533), +(16545, 'Marshall', 1914, 'M', 533), +(16546, 'Calvin', 1914, 'M', 531), +(16547, 'Bruce', 1914, 'M', 530), +(16548, 'Jimmie', 1914, 'M', 530), +(16549, 'Nelson', 1914, 'M', 527), +(16550, 'Felix', 1914, 'M', 526), +(16551, 'Don', 1914, 'M', 521), +(16552, 'Jim', 1914, 'M', 513), +(16553, 'Douglas', 1914, 'M', 502), +(16554, 'Forrest', 1914, 'M', 501), +(16555, 'Isaac', 1914, 'M', 496), +(16556, 'Lyle', 1914, 'M', 495), +(16557, 'Rufus', 1914, 'M', 495), +(16558, 'Ervin', 1914, 'M', 494), +(16559, 'Irvin', 1914, 'M', 491), +(16560, 'Adam', 1914, 'M', 489), +(16561, 'Aaron', 1914, 'M', 485), +(16562, 'Delbert', 1914, 'M', 472), +(16563, 'Nathaniel', 1914, 'M', 470), +(16564, 'Lonnie', 1914, 'M', 468), +(16565, 'Wilfred', 1914, 'M', 463), +(16566, 'Elbert', 1914, 'M', 450), +(16567, 'Julian', 1914, 'M', 449), +(16568, 'Percy', 1914, 'M', 449), +(16569, 'Bert', 1914, 'M', 448), +(16570, 'Dan', 1914, 'M', 447), +(16571, 'Ivan', 1914, 'M', 439), +(16572, 'Pete', 1914, 'M', 432), +(16573, 'Ellis', 1914, 'M', 426), +(16574, 'Nick', 1914, 'M', 425), +(16575, 'Dominick', 1914, 'M', 424), +(16576, 'Alton', 1914, 'M', 419), +(16577, 'Adolph', 1914, 'M', 418), +(16578, 'Grover', 1914, 'M', 416), +(16579, 'Merle', 1914, 'M', 415), +(16580, 'Leland', 1914, 'M', 413), +(16581, 'Grady', 1914, 'M', 408), +(16582, 'Emmett', 1914, 'M', 406), +(16583, 'Johnie', 1914, 'M', 405), +(16584, 'Kermit', 1914, 'M', 401), +(16585, 'Byron', 1914, 'M', 395), +(16586, 'Antonio', 1914, 'M', 391), +(16587, 'Lowell', 1914, 'M', 390), +(16588, 'Mark', 1914, 'M', 386), +(16589, 'Carroll', 1914, 'M', 382), +(16590, 'Dennis', 1914, 'M', 382), +(16591, 'Jay', 1914, 'M', 379), +(16592, 'Laurence', 1914, 'M', 379), +(16593, 'Elwood', 1914, 'M', 373), +(16594, 'Reuben', 1914, 'M', 372), +(16595, 'Amos', 1914, 'M', 367), +(16596, 'Myron', 1914, 'M', 366), +(16597, 'Dominic', 1914, 'M', 362), +(16598, 'Mack', 1914, 'M', 361), +(16599, 'Roscoe', 1914, 'M', 361), +(16600, 'Erwin', 1914, 'M', 360), +(16601, 'Ross', 1914, 'M', 360), +(16602, 'Charley', 1914, 'M', 359), +(16603, 'Owen', 1914, 'M', 356), +(16604, 'Gene', 1914, 'M', 352), +(16605, 'Wendell', 1914, 'M', 350), +(16606, 'Fredrick', 1914, 'M', 344), +(16607, 'Murray', 1914, 'M', 340), +(16608, 'Perry', 1914, 'M', 338), +(16609, 'Dean', 1914, 'M', 337), +(16610, 'Hyman', 1914, 'M', 336), +(16611, 'Rex', 1914, 'M', 334), +(16612, 'Johnny', 1914, 'M', 332), +(16613, 'Harley', 1914, 'M', 322), +(16614, 'Austin', 1914, 'M', 320), +(16615, 'Sherman', 1914, 'M', 320), +(16616, 'Preston', 1914, 'M', 319), +(16617, 'Will', 1914, 'M', 319), +(16618, 'Malcolm', 1914, 'M', 317), +(16619, 'Aubrey', 1914, 'M', 313), +(16620, 'Loyd', 1914, 'M', 312), +(16621, 'Ted', 1914, 'M', 309), +(16622, 'Allan', 1914, 'M', 307), +(16623, 'Troy', 1914, 'M', 307), +(16624, 'Jasper', 1914, 'M', 306), +(16625, 'Juan', 1914, 'M', 299), +(16626, 'Solomon', 1914, 'M', 297), +(16627, 'Tommie', 1914, 'M', 296), +(16628, 'Eldon', 1914, 'M', 295), +(16629, 'Keith', 1914, 'M', 291), +(16630, 'Mario', 1914, 'M', 289), +(16631, 'Norbert', 1914, 'M', 288), +(16632, 'Boyd', 1914, 'M', 287), +(16633, 'Anton', 1914, 'M', 286), +(16634, 'Ed', 1914, 'M', 286), +(16635, 'Dwight', 1914, 'M', 284), +(16636, 'Carlton', 1914, 'M', 283), +(16637, 'Cornelius', 1914, 'M', 283), +(16638, 'Millard', 1914, 'M', 279), +(16639, 'Jake', 1914, 'M', 274), +(16640, 'Simon', 1914, 'M', 274), +(16641, 'Loren', 1914, 'M', 273), +(16642, 'Mitchell', 1914, 'M', 272), +(16643, 'Edmond', 1914, 'M', 269), +(16644, 'Louie', 1914, 'M', 268), +(16645, 'Dave', 1914, 'M', 267), +(16646, 'Larry', 1914, 'M', 267), +(16647, 'Roosevelt', 1914, 'M', 266), +(16648, 'Harrison', 1914, 'M', 262), +(16649, 'Jess', 1914, 'M', 258), +(16650, 'Moses', 1914, 'M', 258), +(16651, 'Wilmer', 1914, 'M', 255), +(16652, 'Grant', 1914, 'M', 253), +(16653, 'Steven', 1914, 'M', 253), +(16654, 'Emanuel', 1914, 'M', 252), +(16655, 'Garland', 1914, 'M', 252), +(16656, 'Monroe', 1914, 'M', 251), +(16657, 'Sol', 1914, 'M', 251), +(16658, 'Alphonse', 1914, 'M', 250), +(16659, 'Wade', 1914, 'M', 250), +(16660, 'Elmo', 1914, 'M', 247), +(16661, 'Conrad', 1914, 'M', 246), +(16662, 'Seymour', 1914, 'M', 245), +(16663, 'Burton', 1914, 'M', 244), +(16664, 'Clark', 1914, 'M', 242), +(16665, 'Isadore', 1914, 'M', 242), +(16666, 'Barney', 1914, 'M', 241), +(16667, 'Thurman', 1914, 'M', 241), +(16668, 'Elton', 1914, 'M', 236), +(16669, 'Gerard', 1914, 'M', 236), +(16670, 'Morton', 1914, 'M', 233), +(16671, 'Clement', 1914, 'M', 232), +(16672, 'Cyril', 1914, 'M', 232), +(16673, 'Lynn', 1914, 'M', 232), +(16674, 'Neil', 1914, 'M', 232), +(16675, 'Ollie', 1914, 'M', 232), +(16676, 'Freddie', 1914, 'M', 231), +(16677, 'Forest', 1914, 'M', 228), +(16678, 'Pasquale', 1914, 'M', 227), +(16679, 'Abe', 1914, 'M', 225), +(16680, 'Andy', 1914, 'M', 225), +(16681, 'Gus', 1914, 'M', 223), +(16682, 'Bruno', 1914, 'M', 219), +(16683, 'Ellsworth', 1914, 'M', 219), +(16684, 'Booker', 1914, 'M', 218), +(16685, 'Bob', 1914, 'M', 217), +(16686, 'Russel', 1914, 'M', 216), +(16687, 'Cleo', 1914, 'M', 215), +(16688, 'Cleveland', 1914, 'M', 214), +(16689, 'Emery', 1914, 'M', 211), +(16690, 'Harlan', 1914, 'M', 211), +(16691, 'Carlos', 1914, 'M', 210), +(16692, 'Maynard', 1914, 'M', 210), +(16693, 'Eli', 1914, 'M', 208), +(16694, 'Armand', 1914, 'M', 205), +(16695, 'Dewey', 1914, 'M', 205), +(16696, 'Alonzo', 1914, 'M', 204), +(16697, 'Clair', 1914, 'M', 204), +(16698, 'Ferdinand', 1914, 'M', 204), +(16699, 'Christopher', 1914, 'M', 200), +(16700, 'Joel', 1914, 'M', 200), +(16701, 'Reginald', 1914, 'M', 200), +(16702, 'Ruben', 1914, 'M', 199), +(16703, 'Doyle', 1914, 'M', 198), +(16704, 'Rocco', 1914, 'M', 198), +(16705, 'Earle', 1914, 'M', 194), +(16706, 'Jesus', 1914, 'M', 194), +(16707, 'Levi', 1914, 'M', 193), +(16708, 'Ward', 1914, 'M', 193), +(16709, 'Elvin', 1914, 'M', 192), +(16710, 'Marcus', 1914, 'M', 192), +(16711, 'Orval', 1914, 'M', 192), +(16712, 'Randolph', 1914, 'M', 192), +(16713, 'Roman', 1914, 'M', 191), +(16714, 'Emory', 1914, 'M', 189), +(16715, 'Rodney', 1914, 'M', 189), +(16716, 'Stuart', 1914, 'M', 188), +(16717, 'Claud', 1914, 'M', 187), +(16718, 'Elijah', 1914, 'M', 187), +(16719, 'Irwin', 1914, 'M', 187), +(16720, 'Buster', 1914, 'M', 186), +(16721, 'Meyer', 1914, 'M', 186), +(16722, 'Alan', 1914, 'M', 184), +(16723, 'Dallas', 1914, 'M', 183), +(16724, 'Ramon', 1914, 'M', 181), +(16725, 'Tommy', 1914, 'M', 181), +(16726, 'Odell', 1914, 'M', 180), +(16727, 'Sydney', 1914, 'M', 180), +(16728, 'Alva', 1914, 'M', 178), +(16729, 'Ned', 1914, 'M', 178), +(16730, 'Neal', 1914, 'M', 176), +(16731, 'Adrian', 1914, 'M', 174), +(16732, 'Patsy', 1914, 'M', 174), +(16733, 'Timothy', 1914, 'M', 174), +(16734, 'Weldon', 1914, 'M', 174), +(16735, 'Carmen', 1914, 'M', 173), +(16736, 'Frederic', 1914, 'M', 173), +(16737, 'Silas', 1914, 'M', 173), +(16738, 'Lyman', 1914, 'M', 171), +(16739, 'Noah', 1914, 'M', 171), +(16740, 'Stewart', 1914, 'M', 170), +(16741, 'Hugo', 1914, 'M', 169), +(16742, 'Lionel', 1914, 'M', 169), +(16743, 'Wilford', 1914, 'M', 169), +(16744, 'Luke', 1914, 'M', 168), +(16745, 'Merrill', 1914, 'M', 166), +(16746, 'Buford', 1914, 'M', 165), +(16747, 'Jeff', 1914, 'M', 165), +(16748, 'Emerson', 1914, 'M', 164), +(16749, 'Laverne', 1914, 'M', 162), +(16750, 'Pedro', 1914, 'M', 162), +(16751, 'Saul', 1914, 'M', 162), +(16752, 'Truman', 1914, 'M', 162), +(16753, 'Basil', 1914, 'M', 161), +(16754, 'Delmar', 1914, 'M', 159), +(16755, 'Hollis', 1914, 'M', 159), +(16756, 'Winston', 1914, 'M', 158), +(16757, 'Isidore', 1914, 'M', 156), +(16758, 'Thaddeus', 1914, 'M', 156), +(16759, 'Herschel', 1914, 'M', 155), +(16760, 'Vern', 1914, 'M', 155), +(16761, 'Augustus', 1914, 'M', 154), +(16762, 'Alfonso', 1914, 'M', 152), +(16763, 'Sterling', 1914, 'M', 151), +(16764, 'Vito', 1914, 'M', 151), +(16765, 'Francisco', 1914, 'M', 150), +(16766, 'Norris', 1914, 'M', 150), +(16767, 'Travis', 1914, 'M', 150), +(16768, 'Jackson', 1914, 'M', 149), +(16769, 'Milo', 1914, 'M', 149), +(16770, 'Ambrose', 1914, 'M', 147), +(16771, 'Omer', 1914, 'M', 146), +(16772, 'Eric', 1914, 'M', 145), +(16773, 'Al', 1914, 'M', 144), +(16774, 'Benny', 1914, 'M', 144), +(16775, 'Aloysius', 1914, 'M', 143), +(16776, 'Dudley', 1914, 'M', 143), +(16777, 'Mathew', 1914, 'M', 143), +(16778, 'Wiley', 1914, 'M', 143), +(16779, 'Billy', 1914, 'M', 142), +(16780, 'Coy', 1914, 'M', 141), +(16781, 'Shirley', 1914, 'M', 141), +(16782, 'Carmine', 1914, 'M', 138), +(16783, 'Foster', 1914, 'M', 138), +(16784, 'Scott', 1914, 'M', 138), +(16785, 'Harris', 1914, 'M', 137), +(16786, 'Noel', 1914, 'M', 136), +(16787, 'Freeman', 1914, 'M', 135), +(16788, 'Vance', 1914, 'M', 135), +(16789, 'Van', 1914, 'M', 134), +(16790, 'Lorenzo', 1914, 'M', 133), +(16791, 'Sammie', 1914, 'M', 133), +(16792, 'Wilburn', 1914, 'M', 133), +(16793, 'Maxwell', 1914, 'M', 132), +(16794, 'Sanford', 1914, 'M', 132), +(16795, 'Bertram', 1914, 'M', 131), +(16796, 'Gabriel', 1914, 'M', 131), +(16797, 'Hiram', 1914, 'M', 131), +(16798, 'Milford', 1914, 'M', 131), +(16799, 'Darrell', 1914, 'M', 130), +(16800, 'Dick', 1914, 'M', 129), +(16801, 'Elliott', 1914, 'M', 129), +(16802, 'Pat', 1914, 'M', 128), +(16803, 'Mary', 1914, 'M', 127), +(16804, 'Merlin', 1914, 'M', 127), +(16805, 'Miles', 1914, 'M', 127), +(16806, 'Chris', 1914, 'M', 126), +(16807, 'Billie', 1914, 'M', 125), +(16808, 'Morgan', 1914, 'M', 125), +(16809, 'Odis', 1914, 'M', 125), +(16810, 'Royal', 1914, 'M', 125), +(16811, 'Spencer', 1914, 'M', 124), +(16812, 'Waldo', 1914, 'M', 124), +(16813, 'Micheal', 1914, 'M', 123), +(16814, 'Valentine', 1914, 'M', 123), +(16815, 'Christian', 1914, 'M', 122), +(16816, 'Emile', 1914, 'M', 121), +(16817, 'Gustave', 1914, 'M', 121), +(16818, 'Jules', 1914, 'M', 119), +(16819, 'Linwood', 1914, 'M', 119), +(16820, 'Mervin', 1914, 'M', 119), +(16821, 'Noble', 1914, 'M', 119), +(16822, 'Newton', 1914, 'M', 118), +(16823, 'Sigmund', 1914, 'M', 118), +(16824, 'Winfred', 1914, 'M', 116), +(16825, 'Benedict', 1914, 'M', 115), +(16826, 'Hal', 1914, 'M', 115), +(16827, 'Duane', 1914, 'M', 114), +(16828, 'Alden', 1914, 'M', 113), +(16829, 'Jean', 1914, 'M', 113), +(16830, 'Theron', 1914, 'M', 113), +(16831, 'Mose', 1914, 'M', 112), +(16832, 'Elias', 1914, 'M', 111), +(16833, 'Olen', 1914, 'M', 111), +(16834, 'Randall', 1914, 'M', 111), +(16835, 'Rolland', 1914, 'M', 111), +(16836, 'Ulysses', 1914, 'M', 111), +(16837, 'Anderson', 1914, 'M', 110), +(16838, 'Columbus', 1914, 'M', 110), +(16839, 'Rubin', 1914, 'M', 110), +(16840, 'Elwin', 1914, 'M', 109), +(16841, 'Major', 1914, 'M', 109), +(16842, 'Olin', 1914, 'M', 109), +(16843, 'Nolan', 1914, 'M', 108), +(16844, 'Clay', 1914, 'M', 107), +(16845, 'Ezra', 1914, 'M', 107), +(16846, 'Gregory', 1914, 'M', 107), +(16847, 'Casimir', 1914, 'M', 106), +(16848, 'Fletcher', 1914, 'M', 106), +(16849, 'Houston', 1914, 'M', 106), +(16850, 'Carlo', 1914, 'M', 105), +(16851, 'Jefferson', 1914, 'M', 105), +(16852, 'Lucius', 1914, 'M', 105), +(16853, 'Armando', 1914, 'M', 104), +(16854, 'Luis', 1914, 'M', 104), +(16855, 'Wilton', 1914, 'M', 104), +(16856, 'Jimmy', 1914, 'M', 103), +(16857, 'Lincoln', 1914, 'M', 103), +(16858, 'Matt', 1914, 'M', 103), +(16859, 'Coleman', 1914, 'M', 102), +(16860, 'Fay', 1914, 'M', 101), +(16861, 'Isiah', 1914, 'M', 101), +(16862, 'Orlando', 1914, 'M', 101), +(16863, 'Phil', 1914, 'M', 101), +(16864, 'Riley', 1914, 'M', 101), +(16865, 'Verne', 1914, 'M', 101), +(16866, 'Israel', 1914, 'M', 100), +(16867, 'Mary', 1915, 'F', 58187), +(16868, 'Helen', 1915, 'F', 30866), +(16869, 'Dorothy', 1915, 'F', 25154), +(16870, 'Margaret', 1915, 'F', 23055), +(16871, 'Ruth', 1915, 'F', 21881), +(16872, 'Mildred', 1915, 'F', 15252), +(16873, 'Anna', 1915, 'F', 15120), +(16874, 'Elizabeth', 1915, 'F', 14103), +(16875, 'Frances', 1915, 'F', 12787), +(16876, 'Evelyn', 1915, 'F', 11594), +(16877, 'Marie', 1915, 'F', 11362), +(16878, 'Virginia', 1915, 'F', 10952), +(16879, 'Alice', 1915, 'F', 10525), +(16880, 'Florence', 1915, 'F', 10104), +(16881, 'Lillian', 1915, 'F', 9546), +(16882, 'Rose', 1915, 'F', 9375), +(16883, 'Irene', 1915, 'F', 8323), +(16884, 'Louise', 1915, 'F', 8314), +(16885, 'Catherine', 1915, 'F', 8180), +(16886, 'Edna', 1915, 'F', 8143), +(16887, 'Gladys', 1915, 'F', 7857), +(16888, 'Josephine', 1915, 'F', 7605), +(16889, 'Ethel', 1915, 'F', 7379), +(16890, 'Ruby', 1915, 'F', 7237), +(16891, 'Martha', 1915, 'F', 7217), +(16892, 'Hazel', 1915, 'F', 7091), +(16893, 'Grace', 1915, 'F', 7044), +(16894, 'Eleanor', 1915, 'F', 7036), +(16895, 'Lucille', 1915, 'F', 7006), +(16896, 'Thelma', 1915, 'F', 6762), +(16897, 'Edith', 1915, 'F', 6760), +(16898, 'Pauline', 1915, 'F', 6334), +(16899, 'Esther', 1915, 'F', 6320), +(16900, 'Doris', 1915, 'F', 6292), +(16901, 'Gertrude', 1915, 'F', 6077), +(16902, 'Annie', 1915, 'F', 5936), +(16903, 'Beatrice', 1915, 'F', 5342), +(16904, 'Clara', 1915, 'F', 5285), +(16905, 'Marjorie', 1915, 'F', 5119), +(16906, 'Emma', 1915, 'F', 5044), +(16907, 'Elsie', 1915, 'F', 4967), +(16908, 'Bernice', 1915, 'F', 4937), +(16909, 'Ann', 1915, 'F', 4896), +(16910, 'Julia', 1915, 'F', 4831), +(16911, 'Agnes', 1915, 'F', 4795), +(16912, 'Bertha', 1915, 'F', 4785), +(16913, 'Lois', 1915, 'F', 4775), +(16914, 'Jean', 1915, 'F', 4603), +(16915, 'Katherine', 1915, 'F', 4489), +(16916, 'Marion', 1915, 'F', 4456), +(16917, 'Sarah', 1915, 'F', 4414), +(16918, 'Anne', 1915, 'F', 4332), +(16919, 'Betty', 1915, 'F', 4182), +(16920, 'Ida', 1915, 'F', 4125), +(16921, 'Eva', 1915, 'F', 4079), +(16922, 'Pearl', 1915, 'F', 3976), +(16923, 'Bessie', 1915, 'F', 3888), +(16924, 'Myrtle', 1915, 'F', 3865), +(16925, 'Viola', 1915, 'F', 3855), +(16926, 'Kathryn', 1915, 'F', 3778), +(16927, 'Laura', 1915, 'F', 3722), +(16928, 'Mabel', 1915, 'F', 3683), +(16929, 'Nellie', 1915, 'F', 3679), +(16930, 'Stella', 1915, 'F', 3657), +(16931, 'Vera', 1915, 'F', 3460), +(16932, 'Jessie', 1915, 'F', 3356), +(16933, 'Sylvia', 1915, 'F', 3284), +(16934, 'Minnie', 1915, 'F', 3270), +(16935, 'Jane', 1915, 'F', 3265), +(16936, 'Alma', 1915, 'F', 3248), +(16937, 'Rita', 1915, 'F', 3063), +(16938, 'Willie', 1915, 'F', 3041), +(16939, 'Jennie', 1915, 'F', 3015), +(16940, 'Leona', 1915, 'F', 2972), +(16941, 'Ella', 1915, 'F', 2954), +(16942, 'Genevieve', 1915, 'F', 2928), +(16943, 'Lena', 1915, 'F', 2927), +(16944, 'Vivian', 1915, 'F', 2857), +(16945, 'Lucy', 1915, 'F', 2814), +(16946, 'Wilma', 1915, 'F', 2773), +(16947, 'Charlotte', 1915, 'F', 2757), +(16948, 'Violet', 1915, 'F', 2752), +(16949, 'Barbara', 1915, 'F', 2706), +(16950, 'Lillie', 1915, 'F', 2687), +(16951, 'Marguerite', 1915, 'F', 2687), +(16952, 'Marian', 1915, 'F', 2612), +(16953, 'Blanche', 1915, 'F', 2590), +(16954, 'Ellen', 1915, 'F', 2580), +(16955, 'Mae', 1915, 'F', 2486), +(16956, 'Opal', 1915, 'F', 2482), +(16957, 'Mattie', 1915, 'F', 2434), +(16958, 'Juanita', 1915, 'F', 2398), +(16959, 'Theresa', 1915, 'F', 2309), +(16960, 'Velma', 1915, 'F', 2287), +(16961, 'Beulah', 1915, 'F', 2268), +(16962, 'June', 1915, 'F', 2139), +(16963, 'Sophie', 1915, 'F', 2112), +(16964, 'Maxine', 1915, 'F', 2110), +(16965, 'Emily', 1915, 'F', 2091), +(16966, 'Phyllis', 1915, 'F', 2088), +(16967, 'Inez', 1915, 'F', 2005), +(16968, 'Nancy', 1915, 'F', 1988), +(16969, 'Carrie', 1915, 'F', 1968), +(16970, 'Kathleen', 1915, 'F', 1939), +(16971, 'Fannie', 1915, 'F', 1927), +(16972, 'Sara', 1915, 'F', 1913), +(16973, 'Hilda', 1915, 'F', 1891), +(16974, 'Geraldine', 1915, 'F', 1866), +(16975, 'Eunice', 1915, 'F', 1860), +(16976, 'Geneva', 1915, 'F', 1856), +(16977, 'Georgia', 1915, 'F', 1853), +(16978, 'Harriet', 1915, 'F', 1849), +(16979, 'Hattie', 1915, 'F', 1825), +(16980, 'Ada', 1915, 'F', 1817), +(16981, 'Loretta', 1915, 'F', 1810), +(16982, 'Rosa', 1915, 'F', 1793), +(16983, 'Estelle', 1915, 'F', 1784), +(16984, 'Norma', 1915, 'F', 1737), +(16985, 'Cora', 1915, 'F', 1683), +(16986, 'Alberta', 1915, 'F', 1675), +(16987, 'Madeline', 1915, 'F', 1670), +(16988, 'Dora', 1915, 'F', 1666), +(16989, 'Olive', 1915, 'F', 1654), +(16990, 'Mamie', 1915, 'F', 1629), +(16991, 'Christine', 1915, 'F', 1625), +(16992, 'Verna', 1915, 'F', 1570), +(16993, 'Audrey', 1915, 'F', 1565), +(16994, 'Naomi', 1915, 'F', 1548), +(16995, 'Lula', 1915, 'F', 1537), +(16996, 'Olga', 1915, 'F', 1532), +(16997, 'Daisy', 1915, 'F', 1518), +(16998, 'Eileen', 1915, 'F', 1493), +(16999, 'Sadie', 1915, 'F', 1458), +(17000, 'Muriel', 1915, 'F', 1445), +(17001, 'Lucile', 1915, 'F', 1441), +(17002, 'Lola', 1915, 'F', 1420), +(17003, 'Caroline', 1915, 'F', 1402), +(17004, 'Miriam', 1915, 'F', 1377), +(17005, 'Erma', 1915, 'F', 1375), +(17006, 'Flora', 1915, 'F', 1368), +(17007, 'Lorraine', 1915, 'F', 1323), +(17008, 'Irma', 1915, 'F', 1310), +(17009, 'Winifred', 1915, 'F', 1299), +(17010, 'Nora', 1915, 'F', 1293), +(17011, 'Mable', 1915, 'F', 1287), +(17012, 'Maria', 1915, 'F', 1286), +(17013, 'Dolores', 1915, 'F', 1280), +(17014, 'Jeanette', 1915, 'F', 1273), +(17015, 'Susie', 1915, 'F', 1270), +(17016, 'Maggie', 1915, 'F', 1269), +(17017, 'Victoria', 1915, 'F', 1266), +(17018, 'Henrietta', 1915, 'F', 1246), +(17019, 'Lottie', 1915, 'F', 1238), +(17020, 'Wanda', 1915, 'F', 1233), +(17021, 'Elaine', 1915, 'F', 1212), +(17022, 'Rachel', 1915, 'F', 1205), +(17023, 'Fern', 1915, 'F', 1175), +(17024, 'Janet', 1915, 'F', 1173), +(17025, 'Rebecca', 1915, 'F', 1169), +(17026, 'Eula', 1915, 'F', 1162), +(17027, 'Roberta', 1915, 'F', 1156), +(17028, 'Shirley', 1915, 'F', 1135), +(17029, 'Sally', 1915, 'F', 1121), +(17030, 'Anita', 1915, 'F', 1116), +(17031, 'Amelia', 1915, 'F', 1115), +(17032, 'Nettie', 1915, 'F', 1106), +(17033, 'Adeline', 1915, 'F', 1097), +(17034, 'Carolyn', 1915, 'F', 1096), +(17035, 'Della', 1915, 'F', 1086), +(17036, 'Lydia', 1915, 'F', 1086), +(17037, 'Nina', 1915, 'F', 1085), +(17038, 'Goldie', 1915, 'F', 1051), +(17039, 'Antoinette', 1915, 'F', 1047), +(17040, 'Rosie', 1915, 'F', 975), +(17041, 'May', 1915, 'F', 974), +(17042, 'Freda', 1915, 'F', 944), +(17043, 'Isabel', 1915, 'F', 943), +(17044, 'Isabelle', 1915, 'F', 942), +(17045, 'Lorene', 1915, 'F', 940), +(17046, 'Bonnie', 1915, 'F', 939), +(17047, 'Katie', 1915, 'F', 937), +(17048, 'Dorothea', 1915, 'F', 925), +(17049, 'Angeline', 1915, 'F', 922), +(17050, 'Cleo', 1915, 'F', 914), +(17051, 'Veronica', 1915, 'F', 914), +(17052, 'Marcella', 1915, 'F', 905), +(17053, 'Jeannette', 1915, 'F', 903), +(17054, 'Adele', 1915, 'F', 897), +(17055, 'Patricia', 1915, 'F', 895); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(17056, 'Iva', 1915, 'F', 878), +(17057, 'Essie', 1915, 'F', 869), +(17058, 'Regina', 1915, 'F', 869), +(17059, 'Arlene', 1915, 'F', 864), +(17060, 'Ollie', 1915, 'F', 855), +(17061, 'Celia', 1915, 'F', 853), +(17062, 'Effie', 1915, 'F', 844), +(17063, 'Rosalie', 1915, 'F', 840), +(17064, 'Jeanne', 1915, 'F', 828), +(17065, 'Angelina', 1915, 'F', 826), +(17066, 'Cecelia', 1915, 'F', 821), +(17067, 'Rosemary', 1915, 'F', 820), +(17068, 'Susan', 1915, 'F', 817), +(17069, 'Sue', 1915, 'F', 812), +(17070, 'Claire', 1915, 'F', 809), +(17071, 'Addie', 1915, 'F', 808), +(17072, 'Ora', 1915, 'F', 803), +(17073, 'Eloise', 1915, 'F', 798), +(17074, 'Frieda', 1915, 'F', 792), +(17075, 'Faye', 1915, 'F', 790), +(17076, 'Joan', 1915, 'F', 784), +(17077, 'Luella', 1915, 'F', 783), +(17078, 'Sallie', 1915, 'F', 782), +(17079, 'Lela', 1915, 'F', 774), +(17080, 'Maude', 1915, 'F', 771), +(17081, 'Etta', 1915, 'F', 766), +(17082, 'Elva', 1915, 'F', 753), +(17083, 'Selma', 1915, 'F', 741), +(17084, 'Margie', 1915, 'F', 740), +(17085, 'Mollie', 1915, 'F', 738), +(17086, 'Constance', 1915, 'F', 728), +(17087, 'Cecilia', 1915, 'F', 723), +(17088, 'Alta', 1915, 'F', 721), +(17089, 'Ina', 1915, 'F', 705), +(17090, 'Fay', 1915, 'F', 701), +(17091, 'Angela', 1915, 'F', 698), +(17092, 'Jewell', 1915, 'F', 692), +(17093, 'Sophia', 1915, 'F', 692), +(17094, 'Nell', 1915, 'F', 689), +(17095, 'Teresa', 1915, 'F', 686), +(17096, 'Lila', 1915, 'F', 684), +(17097, 'Helene', 1915, 'F', 682), +(17098, 'Matilda', 1915, 'F', 682), +(17099, 'Leola', 1915, 'F', 669), +(17100, 'Reba', 1915, 'F', 662), +(17101, 'Annette', 1915, 'F', 660), +(17102, 'Lizzie', 1915, 'F', 657), +(17103, 'Jewel', 1915, 'F', 652), +(17104, 'Joyce', 1915, 'F', 640), +(17105, 'Amy', 1915, 'F', 624), +(17106, 'Ola', 1915, 'F', 611), +(17107, 'Nannie', 1915, 'F', 607), +(17108, 'Estella', 1915, 'F', 599), +(17109, 'Carol', 1915, 'F', 597), +(17110, 'Flossie', 1915, 'F', 582), +(17111, 'Elma', 1915, 'F', 575), +(17112, 'Gwendolyn', 1915, 'F', 575), +(17113, 'Janie', 1915, 'F', 571), +(17114, 'Eleanore', 1915, 'F', 570), +(17115, 'Ernestine', 1915, 'F', 564), +(17116, 'Laverne', 1915, 'F', 564), +(17117, 'Iris', 1915, 'F', 563), +(17118, 'Leah', 1915, 'F', 552), +(17119, 'Hannah', 1915, 'F', 546), +(17120, 'Johnnie', 1915, 'F', 545), +(17121, 'Lenora', 1915, 'F', 543), +(17122, 'Edythe', 1915, 'F', 542), +(17123, 'Millie', 1915, 'F', 521), +(17124, 'Rena', 1915, 'F', 519), +(17125, 'Elinor', 1915, 'F', 508), +(17126, 'Eugenia', 1915, 'F', 506), +(17127, 'Francis', 1915, 'F', 503), +(17128, 'Adelaide', 1915, 'F', 502), +(17129, 'Tillie', 1915, 'F', 499), +(17130, 'Melba', 1915, 'F', 493), +(17131, 'Virgie', 1915, 'F', 488), +(17132, 'Zelma', 1915, 'F', 487), +(17133, 'Carmen', 1915, 'F', 483), +(17134, 'Donna', 1915, 'F', 483), +(17135, 'Neva', 1915, 'F', 472), +(17136, 'Clarice', 1915, 'F', 470), +(17137, 'Billie', 1915, 'F', 468), +(17138, 'Cecile', 1915, 'F', 468), +(17139, 'Elnora', 1915, 'F', 467), +(17140, 'Elvira', 1915, 'F', 465), +(17141, 'Harriett', 1915, 'F', 460), +(17142, 'Winnie', 1915, 'F', 459), +(17143, 'Letha', 1915, 'F', 452), +(17144, 'Ila', 1915, 'F', 451), +(17145, 'Lee', 1915, 'F', 445), +(17146, 'Imogene', 1915, 'F', 444), +(17147, 'Carmela', 1915, 'F', 430), +(17148, 'Allie', 1915, 'F', 429), +(17149, 'Natalie', 1915, 'F', 429), +(17150, 'Annabelle', 1915, 'F', 427), +(17151, 'Peggy', 1915, 'F', 423), +(17152, 'Gracie', 1915, 'F', 414), +(17153, 'Amanda', 1915, 'F', 412), +(17154, 'Belle', 1915, 'F', 407), +(17155, 'Helena', 1915, 'F', 405), +(17156, 'Lorena', 1915, 'F', 395), +(17157, 'Cornelia', 1915, 'F', 394), +(17158, 'Priscilla', 1915, 'F', 392), +(17159, 'Aileen', 1915, 'F', 390), +(17160, 'Myra', 1915, 'F', 390), +(17161, 'Claudia', 1915, 'F', 387), +(17162, 'Berniece', 1915, 'F', 385), +(17163, 'Rhoda', 1915, 'F', 385), +(17164, 'Alyce', 1915, 'F', 384), +(17165, 'Josie', 1915, 'F', 379), +(17166, 'Yvonne', 1915, 'F', 379), +(17167, 'Madge', 1915, 'F', 378), +(17168, 'Olivia', 1915, 'F', 372), +(17169, 'Carmella', 1915, 'F', 371), +(17170, 'Augusta', 1915, 'F', 369), +(17171, 'Dollie', 1915, 'F', 369), +(17172, 'Avis', 1915, 'F', 366), +(17173, 'Leila', 1915, 'F', 363), +(17174, 'Stephanie', 1915, 'F', 361), +(17175, 'Lenore', 1915, 'F', 360), +(17176, 'Hester', 1915, 'F', 359), +(17177, 'Rosella', 1915, 'F', 357), +(17178, 'Concetta', 1915, 'F', 356), +(17179, 'Eliza', 1915, 'F', 356), +(17180, 'Bernadine', 1915, 'F', 354), +(17181, 'Merle', 1915, 'F', 353), +(17182, 'Callie', 1915, 'F', 350), +(17183, 'Bettie', 1915, 'F', 347), +(17184, 'Gussie', 1915, 'F', 344), +(17185, 'Katharine', 1915, 'F', 344), +(17186, 'Arline', 1915, 'F', 343), +(17187, 'Lily', 1915, 'F', 343), +(17188, 'Odessa', 1915, 'F', 343), +(17189, 'Bertie', 1915, 'F', 342), +(17190, 'Lora', 1915, 'F', 341), +(17191, 'Christina', 1915, 'F', 339), +(17192, 'Kate', 1915, 'F', 339), +(17193, 'Frankie', 1915, 'F', 338), +(17194, 'Nadine', 1915, 'F', 337), +(17195, 'Connie', 1915, 'F', 336), +(17196, 'Ione', 1915, 'F', 326), +(17197, 'Molly', 1915, 'F', 325), +(17198, 'Corinne', 1915, 'F', 323), +(17199, 'Lessie', 1915, 'F', 321), +(17200, 'Nola', 1915, 'F', 320), +(17201, 'Johanna', 1915, 'F', 319), +(17202, 'Leota', 1915, 'F', 312), +(17203, 'Maurine', 1915, 'F', 312), +(17204, 'Beverly', 1915, 'F', 311), +(17205, 'Erna', 1915, 'F', 310), +(17206, 'Aline', 1915, 'F', 307), +(17207, 'Roxie', 1915, 'F', 301), +(17208, 'Wilhelmina', 1915, 'F', 301), +(17209, 'Maudie', 1915, 'F', 299), +(17210, 'Loraine', 1915, 'F', 296), +(17211, 'Rosetta', 1915, 'F', 293), +(17212, 'Tessie', 1915, 'F', 292), +(17213, 'Willa', 1915, 'F', 292), +(17214, 'Mayme', 1915, 'F', 291), +(17215, 'Linda', 1915, 'F', 290), +(17216, 'Iola', 1915, 'F', 289), +(17217, 'Gretchen', 1915, 'F', 288), +(17218, 'Dolly', 1915, 'F', 287), +(17219, 'Janice', 1915, 'F', 286), +(17220, 'Lou', 1915, 'F', 285), +(17221, 'Philomena', 1915, 'F', 284), +(17222, 'Dessie', 1915, 'F', 283), +(17223, 'Catharine', 1915, 'F', 281), +(17224, 'Delia', 1915, 'F', 280), +(17225, 'Eddie', 1915, 'F', 280), +(17226, 'Lilly', 1915, 'F', 280), +(17227, 'Oma', 1915, 'F', 279), +(17228, 'Margery', 1915, 'F', 275), +(17229, 'Lelia', 1915, 'F', 272), +(17230, 'Iona', 1915, 'F', 270), +(17231, 'Sybil', 1915, 'F', 269), +(17232, 'Alvina', 1915, 'F', 268), +(17233, 'Pansy', 1915, 'F', 267), +(17234, 'Althea', 1915, 'F', 266), +(17235, 'Florine', 1915, 'F', 266), +(17236, 'Mona', 1915, 'F', 265), +(17237, 'Zella', 1915, 'F', 265), +(17238, 'Mavis', 1915, 'F', 264), +(17239, 'Elisabeth', 1915, 'F', 261), +(17240, 'Wilda', 1915, 'F', 261), +(17241, 'Corine', 1915, 'F', 260), +(17242, 'Ophelia', 1915, 'F', 260), +(17243, 'Reva', 1915, 'F', 260), +(17244, 'Bernadette', 1915, 'F', 256), +(17245, 'Birdie', 1915, 'F', 256), +(17246, 'Hallie', 1915, 'F', 254), +(17247, 'Judith', 1915, 'F', 254), +(17248, 'Yolanda', 1915, 'F', 251), +(17249, 'Pearlie', 1915, 'F', 250), +(17250, 'Isabell', 1915, 'F', 249), +(17251, 'Jimmie', 1915, 'F', 248), +(17252, 'Kay', 1915, 'F', 244), +(17253, 'Isabella', 1915, 'F', 242), +(17254, 'Nona', 1915, 'F', 242), +(17255, 'Elda', 1915, 'F', 241), +(17256, 'Gloria', 1915, 'F', 239), +(17257, 'Delores', 1915, 'F', 237), +(17258, 'Elsa', 1915, 'F', 237), +(17259, 'Antonia', 1915, 'F', 235), +(17260, 'Mercedes', 1915, 'F', 232), +(17261, 'Harriette', 1915, 'F', 231), +(17262, 'Ramona', 1915, 'F', 231), +(17263, 'Zelda', 1915, 'F', 230), +(17264, 'Dorthy', 1915, 'F', 228), +(17265, 'Paula', 1915, 'F', 228), +(17266, 'Verda', 1915, 'F', 226), +(17267, 'Leone', 1915, 'F', 225), +(17268, 'Lauretta', 1915, 'F', 224), +(17269, 'Leta', 1915, 'F', 224), +(17270, 'Leora', 1915, 'F', 223), +(17271, 'Cynthia', 1915, 'F', 216), +(17272, 'Jannie', 1915, 'F', 216), +(17273, 'Marietta', 1915, 'F', 216), +(17274, 'Rae', 1915, 'F', 215), +(17275, 'Ferne', 1915, 'F', 213), +(17276, 'Beryl', 1915, 'F', 211), +(17277, 'Fanny', 1915, 'F', 211), +(17278, 'Hope', 1915, 'F', 210), +(17279, 'Rubye', 1915, 'F', 210), +(17280, 'Beth', 1915, 'F', 209), +(17281, 'Hortense', 1915, 'F', 209), +(17282, 'Madelyn', 1915, 'F', 209), +(17283, 'Polly', 1915, 'F', 209), +(17284, 'Louella', 1915, 'F', 208), +(17285, 'Angie', 1915, 'F', 207), +(17286, 'Melva', 1915, 'F', 207), +(17287, 'Oleta', 1915, 'F', 207), +(17288, 'Dixie', 1915, 'F', 206), +(17289, 'Gertie', 1915, 'F', 206), +(17290, 'Minerva', 1915, 'F', 205), +(17291, 'Alene', 1915, 'F', 204), +(17292, 'Lorna', 1915, 'F', 204), +(17293, 'Tommie', 1915, 'F', 204), +(17294, 'Allene', 1915, 'F', 202), +(17295, 'Cecil', 1915, 'F', 200), +(17296, 'John', 1915, 'F', 200), +(17297, 'Agatha', 1915, 'F', 199), +(17298, 'Albina', 1915, 'F', 199), +(17299, 'Phoebe', 1915, 'F', 198), +(17300, 'Dovie', 1915, 'F', 197), +(17301, 'Georgie', 1915, 'F', 197), +(17302, 'Vada', 1915, 'F', 197), +(17303, 'Monica', 1915, 'F', 196), +(17304, 'Orpha', 1915, 'F', 195), +(17305, 'Robbie', 1915, 'F', 195), +(17306, 'Vesta', 1915, 'F', 195), +(17307, 'Bobbie', 1915, 'F', 193), +(17308, 'Garnet', 1915, 'F', 193), +(17309, 'Yetta', 1915, 'F', 193), +(17310, 'Winona', 1915, 'F', 192), +(17311, 'Joy', 1915, 'F', 190), +(17312, 'Lettie', 1915, 'F', 190), +(17313, 'Evangeline', 1915, 'F', 188), +(17314, 'Louisa', 1915, 'F', 188), +(17315, 'Ester', 1915, 'F', 187), +(17316, 'Vida', 1915, 'F', 187), +(17317, 'Elise', 1915, 'F', 186), +(17318, 'Elvera', 1915, 'F', 186), +(17319, 'Glenna', 1915, 'F', 185), +(17320, 'Floy', 1915, 'F', 184), +(17321, 'Jacqueline', 1915, 'F', 183), +(17322, 'Alpha', 1915, 'F', 182), +(17323, 'Lucinda', 1915, 'F', 182), +(17324, 'Maud', 1915, 'F', 182), +(17325, 'Rowena', 1915, 'F', 182), +(17326, 'Linnie', 1915, 'F', 179), +(17327, 'Marjory', 1915, 'F', 179), +(17328, 'Lura', 1915, 'F', 178), +(17329, 'Marcia', 1915, 'F', 178), +(17330, 'Madeleine', 1915, 'F', 177), +(17331, 'Blanch', 1915, 'F', 175), +(17332, 'Mozelle', 1915, 'F', 175), +(17333, 'Julie', 1915, 'F', 173), +(17334, 'Valeria', 1915, 'F', 173), +(17335, 'Evalyn', 1915, 'F', 172), +(17336, 'Rhea', 1915, 'F', 172), +(17337, 'Ava', 1915, 'F', 171), +(17338, 'Clare', 1915, 'F', 171), +(17339, 'Valerie', 1915, 'F', 171), +(17340, 'Suzanne', 1915, 'F', 169), +(17341, 'Zora', 1915, 'F', 169), +(17342, 'Ona', 1915, 'F', 168), +(17343, 'Veda', 1915, 'F', 168), +(17344, 'Lulu', 1915, 'F', 167), +(17345, 'Camille', 1915, 'F', 165), +(17346, 'Dorotha', 1915, 'F', 165), +(17347, 'Aurelia', 1915, 'F', 164), +(17348, 'Elena', 1915, 'F', 164), +(17349, 'Una', 1915, 'F', 164), +(17350, 'Ivy', 1915, 'F', 162), +(17351, 'Bella', 1915, 'F', 160), +(17352, 'Emilie', 1915, 'F', 160), +(17353, 'Lona', 1915, 'F', 160), +(17354, 'Earline', 1915, 'F', 159), +(17355, 'Golda', 1915, 'F', 158), +(17356, 'Diana', 1915, 'F', 157), +(17357, 'Maybelle', 1915, 'F', 156), +(17358, 'Mina', 1915, 'F', 156), +(17359, 'Rosalind', 1915, 'F', 156), +(17360, 'Guadalupe', 1915, 'F', 155), +(17361, 'James', 1915, 'F', 155), +(17362, 'Retha', 1915, 'F', 155), +(17363, 'Artie', 1915, 'F', 154), +(17364, 'Justine', 1915, 'F', 154), +(17365, 'Adell', 1915, 'F', 153), +(17366, 'Eleanora', 1915, 'F', 153), +(17367, 'Hettie', 1915, 'F', 153), +(17368, 'Velda', 1915, 'F', 153), +(17369, 'Delma', 1915, 'F', 152), +(17370, 'Hedwig', 1915, 'F', 152), +(17371, 'Marianne', 1915, 'F', 152), +(17372, 'Magdalene', 1915, 'F', 151), +(17373, 'Vernice', 1915, 'F', 151), +(17374, 'Katheryn', 1915, 'F', 150), +(17375, 'Lorine', 1915, 'F', 149), +(17376, 'Bette', 1915, 'F', 148), +(17377, 'Dortha', 1915, 'F', 148), +(17378, 'Zola', 1915, 'F', 148), +(17379, 'Aurora', 1915, 'F', 147), +(17380, 'Cassie', 1915, 'F', 147), +(17381, 'Ethelyn', 1915, 'F', 147), +(17382, 'Joanna', 1915, 'F', 147), +(17383, 'Millicent', 1915, 'F', 147), +(17384, 'Alva', 1915, 'F', 146), +(17385, 'Filomena', 1915, 'F', 146), +(17386, 'Mathilda', 1915, 'F', 146), +(17387, 'Nelda', 1915, 'F', 146), +(17388, 'Era', 1915, 'F', 145), +(17389, 'Edwina', 1915, 'F', 144), +(17390, 'Georgiana', 1915, 'F', 144), +(17391, 'Ursula', 1915, 'F', 144), +(17392, 'Corrine', 1915, 'F', 143), +(17393, 'Dorris', 1915, 'F', 143), +(17394, 'Eve', 1915, 'F', 143), +(17395, 'Juliette', 1915, 'F', 143), +(17396, 'Verla', 1915, 'F', 143), +(17397, 'Antonette', 1915, 'F', 141), +(17398, 'Felicia', 1915, 'F', 141), +(17399, 'Gene', 1915, 'F', 140), +(17400, 'Lucia', 1915, 'F', 140), +(17401, 'Queen', 1915, 'F', 140), +(17402, 'Vergie', 1915, 'F', 140), +(17403, 'Belva', 1915, 'F', 139), +(17404, 'George', 1915, 'F', 139), +(17405, 'Nelle', 1915, 'F', 139), +(17406, 'Winnifred', 1915, 'F', 139), +(17407, 'Crystal', 1915, 'F', 138), +(17408, 'Freida', 1915, 'F', 138), +(17409, 'Idella', 1915, 'F', 138), +(17410, 'Myrtis', 1915, 'F', 138), +(17411, 'Enid', 1915, 'F', 137), +(17412, 'Germaine', 1915, 'F', 137), +(17413, 'Alfreda', 1915, 'F', 136), +(17414, 'Bennie', 1915, 'F', 136), +(17415, 'Cathryn', 1915, 'F', 136), +(17416, 'Elna', 1915, 'F', 136), +(17417, 'Gail', 1915, 'F', 136), +(17418, 'Cordelia', 1915, 'F', 135), +(17419, 'Marvel', 1915, 'F', 135), +(17420, 'Ocie', 1915, 'F', 135), +(17421, 'Celeste', 1915, 'F', 133), +(17422, 'Charlene', 1915, 'F', 133), +(17423, 'Tina', 1915, 'F', 133), +(17424, 'Tressie', 1915, 'F', 133), +(17425, 'Alda', 1915, 'F', 132), +(17426, 'Clementine', 1915, 'F', 132), +(17427, 'Margarette', 1915, 'F', 132), +(17428, 'Reta', 1915, 'F', 132), +(17429, 'Hulda', 1915, 'F', 131), +(17430, 'Camilla', 1915, 'F', 130), +(17431, 'Margarita', 1915, 'F', 130), +(17432, 'Claudine', 1915, 'F', 129), +(17433, 'Maryann', 1915, 'F', 129), +(17434, 'Theodora', 1915, 'F', 129), +(17435, 'William', 1915, 'F', 129), +(17436, 'Ilene', 1915, 'F', 128), +(17437, 'Jo', 1915, 'F', 128), +(17438, 'Myrna', 1915, 'F', 128), +(17439, 'Patsy', 1915, 'F', 128), +(17440, 'Almeda', 1915, 'F', 127), +(17441, 'Lavina', 1915, 'F', 127), +(17442, 'Charlie', 1915, 'F', 126), +(17443, 'Estell', 1915, 'F', 126), +(17444, 'Faith', 1915, 'F', 126), +(17445, 'Johnie', 1915, 'F', 126), +(17446, 'Meta', 1915, 'F', 126), +(17447, 'Ray', 1915, 'F', 126), +(17448, 'Odell', 1915, 'F', 125), +(17449, 'Abbie', 1915, 'F', 124), +(17450, 'Hildegarde', 1915, 'F', 124), +(17451, 'Theda', 1915, 'F', 124), +(17452, 'Delphine', 1915, 'F', 123), +(17453, 'Lennie', 1915, 'F', 123), +(17454, 'Velva', 1915, 'F', 123), +(17455, 'Bess', 1915, 'F', 122), +(17456, 'Consuelo', 1915, 'F', 122), +(17457, 'Roma', 1915, 'F', 122), +(17458, 'Ruthie', 1915, 'F', 121), +(17459, 'Florene', 1915, 'F', 120), +(17460, 'Idell', 1915, 'F', 120), +(17461, 'Lilyan', 1915, 'F', 120), +(17462, 'Magnolia', 1915, 'F', 120), +(17463, 'Petra', 1915, 'F', 120), +(17464, 'Roslyn', 1915, 'F', 120), +(17465, 'Ardis', 1915, 'F', 119), +(17466, 'Chloe', 1915, 'F', 119), +(17467, 'Emilia', 1915, 'F', 119), +(17468, 'Lida', 1915, 'F', 119), +(17469, 'Celestine', 1915, 'F', 118), +(17470, 'Leatha', 1915, 'F', 118), +(17471, 'Clyde', 1915, 'F', 117), +(17472, 'Vernie', 1915, 'F', 117), +(17473, 'Adela', 1915, 'F', 116), +(17474, 'Berneice', 1915, 'F', 116), +(17475, 'Robert', 1915, 'F', 116), +(17476, 'Therese', 1915, 'F', 115), +(17477, 'Anastasia', 1915, 'F', 114), +(17478, 'Joe', 1915, 'F', 114), +(17479, 'Maureen', 1915, 'F', 114), +(17480, 'Nita', 1915, 'F', 114), +(17481, 'Dena', 1915, 'F', 113), +(17482, 'Elouise', 1915, 'F', 113), +(17483, 'Janette', 1915, 'F', 113), +(17484, 'Jaunita', 1915, 'F', 113), +(17485, 'Lovie', 1915, 'F', 113), +(17486, 'Malinda', 1915, 'F', 113), +(17487, 'Novella', 1915, 'F', 113), +(17488, 'Annabel', 1915, 'F', 112), +(17489, 'Myrtice', 1915, 'F', 112), +(17490, 'Manuela', 1915, 'F', 111), +(17491, 'Margret', 1915, 'F', 111), +(17492, 'Leonora', 1915, 'F', 110), +(17493, 'Lupe', 1915, 'F', 110), +(17494, 'Marilyn', 1915, 'F', 110), +(17495, 'Sibyl', 1915, 'F', 110), +(17496, 'Hellen', 1915, 'F', 109), +(17497, 'Ima', 1915, 'F', 109), +(17498, 'Carmel', 1915, 'F', 108), +(17499, 'Kathlyn', 1915, 'F', 108), +(17500, 'Libby', 1915, 'F', 108), +(17501, 'Rosalee', 1915, 'F', 108), +(17502, 'Rosalyn', 1915, 'F', 108), +(17503, 'Susanna', 1915, 'F', 108), +(17504, 'Deloris', 1915, 'F', 107), +(17505, 'Mazie', 1915, 'F', 107), +(17506, 'Adella', 1915, 'F', 106), +(17507, 'Deborah', 1915, 'F', 106), +(17508, 'Jenny', 1915, 'F', 106), +(17509, 'Melvina', 1915, 'F', 106), +(17510, 'Twila', 1915, 'F', 106), +(17511, 'Freddie', 1915, 'F', 105), +(17512, 'Hilma', 1915, 'F', 105), +(17513, 'Kitty', 1915, 'F', 105), +(17514, 'Berenice', 1915, 'F', 104), +(17515, 'Evie', 1915, 'F', 104), +(17516, 'Lue', 1915, 'F', 104), +(17517, 'Rosamond', 1915, 'F', 104), +(17518, 'Annetta', 1915, 'F', 103), +(17519, 'Greta', 1915, 'F', 103), +(17520, 'Madie', 1915, 'F', 103), +(17521, 'Earnestine', 1915, 'F', 102), +(17522, 'Elmira', 1915, 'F', 102), +(17523, 'Zula', 1915, 'F', 102), +(17524, 'Charles', 1915, 'F', 101), +(17525, 'Gilda', 1915, 'F', 101), +(17526, 'Marianna', 1915, 'F', 101), +(17527, 'Myrtie', 1915, 'F', 101), +(17528, 'Carolina', 1915, 'F', 100), +(17529, 'Ouida', 1915, 'F', 100), +(17530, 'John', 1915, 'M', 47577), +(17531, 'William', 1915, 'M', 38563), +(17532, 'James', 1915, 'M', 33776), +(17533, 'Robert', 1915, 'M', 28738), +(17534, 'Joseph', 1915, 'M', 23050), +(17535, 'George', 1915, 'M', 22308), +(17536, 'Charles', 1915, 'M', 21959), +(17537, 'Edward', 1915, 'M', 15889), +(17538, 'Frank', 1915, 'M', 15005), +(17539, 'Thomas', 1915, 'M', 11490), +(17540, 'Walter', 1915, 'M', 11257), +(17541, 'Harold', 1915, 'M', 10444), +(17542, 'Paul', 1915, 'M', 10327), +(17543, 'Henry', 1915, 'M', 10139), +(17544, 'Richard', 1915, 'M', 9144), +(17545, 'Raymond', 1915, 'M', 8982), +(17546, 'Albert', 1915, 'M', 8825), +(17547, 'Arthur', 1915, 'M', 8563), +(17548, 'Harry', 1915, 'M', 8470), +(17549, 'Donald', 1915, 'M', 7117), +(17550, 'Ralph', 1915, 'M', 6816), +(17551, 'Carl', 1915, 'M', 6613), +(17552, 'Louis', 1915, 'M', 6519), +(17553, 'Clarence', 1915, 'M', 6267), +(17554, 'Howard', 1915, 'M', 6103), +(17555, 'Fred', 1915, 'M', 5778), +(17556, 'Jack', 1915, 'M', 5748), +(17557, 'Kenneth', 1915, 'M', 5682), +(17558, 'Francis', 1915, 'M', 5594), +(17559, 'Willie', 1915, 'M', 5433), +(17560, 'David', 1915, 'M', 5395), +(17561, 'Roy', 1915, 'M', 5052), +(17562, 'Earl', 1915, 'M', 4908), +(17563, 'Stanley', 1915, 'M', 4808), +(17564, 'Ernest', 1915, 'M', 4788), +(17565, 'Anthony', 1915, 'M', 4722), +(17566, 'Lawrence', 1915, 'M', 4688), +(17567, 'Joe', 1915, 'M', 4648), +(17568, 'Samuel', 1915, 'M', 4351), +(17569, 'Herbert', 1915, 'M', 4341), +(17570, 'Eugene', 1915, 'M', 4321), +(17571, 'Alfred', 1915, 'M', 4232), +(17572, 'Michael', 1915, 'M', 4083), +(17573, 'Leonard', 1915, 'M', 3993), +(17574, 'Elmer', 1915, 'M', 3802), +(17575, 'Andrew', 1915, 'M', 3573), +(17576, 'Leo', 1915, 'M', 3529), +(17577, 'Bernard', 1915, 'M', 3302), +(17578, 'Peter', 1915, 'M', 3302), +(17579, 'Norman', 1915, 'M', 3262), +(17580, 'Russell', 1915, 'M', 3250), +(17581, 'Frederick', 1915, 'M', 3159), +(17582, 'Edwin', 1915, 'M', 3151), +(17583, 'Chester', 1915, 'M', 3043), +(17584, 'Daniel', 1915, 'M', 3002), +(17585, 'Herman', 1915, 'M', 2983), +(17586, 'Lester', 1915, 'M', 2943), +(17587, 'Willard', 1915, 'M', 2889), +(17588, 'Floyd', 1915, 'M', 2824), +(17589, 'Melvin', 1915, 'M', 2780), +(17590, 'Clifford', 1915, 'M', 2741), +(17591, 'Lloyd', 1915, 'M', 2653), +(17592, 'Clyde', 1915, 'M', 2517), +(17593, 'Theodore', 1915, 'M', 2504), +(17594, 'Vincent', 1915, 'M', 2491), +(17595, 'Leroy', 1915, 'M', 2451), +(17596, 'Ray', 1915, 'M', 2365), +(17597, 'Sam', 1915, 'M', 2339), +(17598, 'Philip', 1915, 'M', 2328), +(17599, 'Lewis', 1915, 'M', 2307), +(17600, 'Benjamin', 1915, 'M', 2241), +(17601, 'Marvin', 1915, 'M', 2227), +(17602, 'Milton', 1915, 'M', 2225), +(17603, 'Victor', 1915, 'M', 2211), +(17604, 'Charlie', 1915, 'M', 2193), +(17605, 'Cecil', 1915, 'M', 2181), +(17606, 'Jesse', 1915, 'M', 2111), +(17607, 'Gerald', 1915, 'M', 2085), +(17608, 'Martin', 1915, 'M', 2070), +(17609, 'Vernon', 1915, 'M', 2060), +(17610, 'Alvin', 1915, 'M', 2006), +(17611, 'Leon', 1915, 'M', 1977), +(17612, 'Woodrow', 1915, 'M', 1966), +(17613, 'Lee', 1915, 'M', 1916), +(17614, 'Edgar', 1915, 'M', 1895), +(17615, 'Stephen', 1915, 'M', 1850), +(17616, 'Glenn', 1915, 'M', 1842), +(17617, 'Oscar', 1915, 'M', 1788), +(17618, 'Everett', 1915, 'M', 1731), +(17619, 'Gordon', 1915, 'M', 1717), +(17620, 'Arnold', 1915, 'M', 1690), +(17621, 'Wilbur', 1915, 'M', 1685), +(17622, 'Morris', 1915, 'M', 1660), +(17623, 'Sidney', 1915, 'M', 1615), +(17624, 'Harvey', 1915, 'M', 1613), +(17625, 'Claude', 1915, 'M', 1605), +(17626, 'Wayne', 1915, 'M', 1517), +(17627, 'Homer', 1915, 'M', 1487), +(17628, 'Allen', 1915, 'M', 1458), +(17629, 'Gilbert', 1915, 'M', 1452), +(17630, 'Maurice', 1915, 'M', 1440), +(17631, 'Max', 1915, 'M', 1434), +(17632, 'Alexander', 1915, 'M', 1432), +(17633, 'Nicholas', 1915, 'M', 1428), +(17634, 'Warren', 1915, 'M', 1420), +(17635, 'Leslie', 1915, 'M', 1408), +(17636, 'Irving', 1915, 'M', 1385), +(17637, 'Virgil', 1915, 'M', 1376), +(17638, 'Julius', 1915, 'M', 1362), +(17639, 'Steve', 1915, 'M', 1335), +(17640, 'Hugh', 1915, 'M', 1318), +(17641, 'Marion', 1915, 'M', 1295), +(17642, 'Ben', 1915, 'M', 1263), +(17643, 'Jessie', 1915, 'M', 1240), +(17644, 'Luther', 1915, 'M', 1198), +(17645, 'Hubert', 1915, 'M', 1195), +(17646, 'Johnnie', 1915, 'M', 1168), +(17647, 'Roland', 1915, 'M', 1137), +(17648, 'Oliver', 1915, 'M', 1131), +(17649, 'Eddie', 1915, 'M', 1124), +(17650, 'Jacob', 1915, 'M', 1122), +(17651, 'Horace', 1915, 'M', 1114), +(17652, 'Glen', 1915, 'M', 1112), +(17653, 'Roger', 1915, 'M', 1086), +(17654, 'Dale', 1915, 'M', 1081), +(17655, 'Wallace', 1915, 'M', 1079), +(17656, 'Orville', 1915, 'M', 1076), +(17657, 'Curtis', 1915, 'M', 1058), +(17658, 'Mike', 1915, 'M', 1029), +(17659, 'Tony', 1915, 'M', 1016), +(17660, 'Alex', 1915, 'M', 1008), +(17661, 'Franklin', 1915, 'M', 1001), +(17662, 'Wesley', 1915, 'M', 990), +(17663, 'Manuel', 1915, 'M', 976), +(17664, 'Rudolph', 1915, 'M', 974), +(17665, 'Edmund', 1915, 'M', 961), +(17666, 'Willis', 1915, 'M', 950), +(17667, 'Emil', 1915, 'M', 918), +(17668, 'Nathan', 1915, 'M', 916), +(17669, 'Jerome', 1915, 'M', 907), +(17670, 'Otis', 1915, 'M', 901), +(17671, 'Tom', 1915, 'M', 868), +(17672, 'Earnest', 1915, 'M', 824), +(17673, 'Clifton', 1915, 'M', 820), +(17674, 'Guy', 1915, 'M', 816), +(17675, 'Ira', 1915, 'M', 812), +(17676, 'Jerry', 1915, 'M', 801), +(17677, 'Salvatore', 1915, 'M', 800), +(17678, 'Angelo', 1915, 'M', 799), +(17679, 'Matthew', 1915, 'M', 798), +(17680, 'Archie', 1915, 'M', 794), +(17681, 'Abraham', 1915, 'M', 790), +(17682, 'Otto', 1915, 'M', 773), +(17683, 'Wilson', 1915, 'M', 767), +(17684, 'Ronald', 1915, 'M', 764), +(17685, 'Don', 1915, 'M', 747), +(17686, 'Bill', 1915, 'M', 746), +(17687, 'Douglas', 1915, 'M', 734), +(17688, 'Lyle', 1915, 'M', 719), +(17689, 'Karl', 1915, 'M', 715), +(17690, 'Marshall', 1915, 'M', 715), +(17691, 'August', 1915, 'M', 709), +(17692, 'Sylvester', 1915, 'M', 706), +(17693, 'Patrick', 1915, 'M', 705), +(17694, 'Clayton', 1915, 'M', 699), +(17695, 'Calvin', 1915, 'M', 694), +(17696, 'Clinton', 1915, 'M', 681), +(17697, 'Irvin', 1915, 'M', 681), +(17698, 'Elbert', 1915, 'M', 669), +(17699, 'Jim', 1915, 'M', 668), +(17700, 'Bennie', 1915, 'M', 663), +(17701, 'Bruce', 1915, 'M', 663), +(17702, 'Ivan', 1915, 'M', 662), +(17703, 'Jose', 1915, 'M', 659), +(17704, 'Wilbert', 1915, 'M', 651), +(17705, 'Forrest', 1915, 'M', 643), +(17706, 'Nick', 1915, 'M', 642), +(17707, 'Adolph', 1915, 'M', 637), +(17708, 'Delbert', 1915, 'M', 630), +(17709, 'Phillip', 1915, 'M', 628), +(17710, 'Wilfred', 1915, 'M', 626), +(17711, 'Ellis', 1915, 'M', 618), +(17712, 'Jimmie', 1915, 'M', 611), +(17713, 'Nelson', 1915, 'M', 606), +(17714, 'Leland', 1915, 'M', 597), +(17715, 'Merle', 1915, 'M', 595), +(17716, 'Emmett', 1915, 'M', 592), +(17717, 'Rufus', 1915, 'M', 588), +(17718, 'Felix', 1915, 'M', 583), +(17719, 'Ervin', 1915, 'M', 582), +(17720, 'Julian', 1915, 'M', 579), +(17721, 'Dan', 1915, 'M', 578), +(17722, 'Jess', 1915, 'M', 577), +(17723, 'Adam', 1915, 'M', 574), +(17724, 'Alton', 1915, 'M', 568), +(17725, 'Isaac', 1915, 'M', 568), +(17726, 'Nathaniel', 1915, 'M', 554), +(17727, 'Aaron', 1915, 'M', 553), +(17728, 'Lonnie', 1915, 'M', 546), +(17729, 'Jay', 1915, 'M', 537), +(17730, 'Lowell', 1915, 'M', 536), +(17731, 'Bert', 1915, 'M', 532), +(17732, 'Pete', 1915, 'M', 531), +(17733, 'Elwood', 1915, 'M', 529), +(17734, 'Mark', 1915, 'M', 529), +(17735, 'Antonio', 1915, 'M', 527), +(17736, 'Carroll', 1915, 'M', 527), +(17737, 'Dominick', 1915, 'M', 521), +(17738, 'Dennis', 1915, 'M', 514), +(17739, 'Roscoe', 1915, 'M', 505), +(17740, 'Grady', 1915, 'M', 497), +(17741, 'Gene', 1915, 'M', 493), +(17742, 'Wendell', 1915, 'M', 491), +(17743, 'Percy', 1915, 'M', 489), +(17744, 'Myron', 1915, 'M', 484), +(17745, 'Owen', 1915, 'M', 479), +(17746, 'Grover', 1915, 'M', 478), +(17747, 'Perry', 1915, 'M', 478), +(17748, 'Amos', 1915, 'M', 474), +(17749, 'Dominic', 1915, 'M', 469), +(17750, 'Malcolm', 1915, 'M', 464), +(17751, 'Laurence', 1915, 'M', 462), +(17752, 'Byron', 1915, 'M', 458), +(17753, 'Johnie', 1915, 'M', 456), +(17754, 'Dean', 1915, 'M', 453), +(17755, 'Ross', 1915, 'M', 451), +(17756, 'Allan', 1915, 'M', 441), +(17757, 'Loyd', 1915, 'M', 436), +(17758, 'Harley', 1915, 'M', 434), +(17759, 'Mack', 1915, 'M', 434), +(17760, 'Reuben', 1915, 'M', 431), +(17761, 'Fredrick', 1915, 'M', 427), +(17762, 'Sherman', 1915, 'M', 425), +(17763, 'Austin', 1915, 'M', 424), +(17764, 'Erwin', 1915, 'M', 423), +(17765, 'Keith', 1915, 'M', 422), +(17766, 'Johnny', 1915, 'M', 417), +(17767, 'Troy', 1915, 'M', 415), +(17768, 'Charley', 1915, 'M', 414), +(17769, 'Millard', 1915, 'M', 406), +(17770, 'Ted', 1915, 'M', 403), +(17771, 'Eldon', 1915, 'M', 401), +(17772, 'Rex', 1915, 'M', 401), +(17773, 'Aubrey', 1915, 'M', 394), +(17774, 'Loren', 1915, 'M', 392), +(17775, 'Preston', 1915, 'M', 388), +(17776, 'Hyman', 1915, 'M', 378), +(17777, 'Cornelius', 1915, 'M', 372), +(17778, 'Will', 1915, 'M', 362), +(17779, 'Louie', 1915, 'M', 360), +(17780, 'Murray', 1915, 'M', 360), +(17781, 'Anton', 1915, 'M', 357), +(17782, 'Grant', 1915, 'M', 357), +(17783, 'Jake', 1915, 'M', 355), +(17784, 'Mario', 1915, 'M', 354), +(17785, 'Wilmer', 1915, 'M', 352), +(17786, 'Carlton', 1915, 'M', 349), +(17787, 'Cleo', 1915, 'M', 349), +(17788, 'Bruno', 1915, 'M', 348), +(17789, 'Juan', 1915, 'M', 348), +(17790, 'Emanuel', 1915, 'M', 345), +(17791, 'Garland', 1915, 'M', 343), +(17792, 'Dwight', 1915, 'M', 337), +(17793, 'Boyd', 1915, 'M', 335), +(17794, 'Jasper', 1915, 'M', 332), +(17795, 'Norbert', 1915, 'M', 332), +(17796, 'Conrad', 1915, 'M', 331), +(17797, 'Burton', 1915, 'M', 328), +(17798, 'Mitchell', 1915, 'M', 328), +(17799, 'Simon', 1915, 'M', 326), +(17800, 'Edmond', 1915, 'M', 323), +(17801, 'Gerard', 1915, 'M', 323), +(17802, 'Kermit', 1915, 'M', 322), +(17803, 'Ed', 1915, 'M', 321), +(17804, 'Clement', 1915, 'M', 320), +(17805, 'Thurman', 1915, 'M', 318), +(17806, 'Tommie', 1915, 'M', 318), +(17807, 'Elton', 1915, 'M', 317), +(17808, 'Harrison', 1915, 'M', 313), +(17809, 'Solomon', 1915, 'M', 313), +(17810, 'Monroe', 1915, 'M', 310), +(17811, 'Earle', 1915, 'M', 307), +(17812, 'Marcus', 1915, 'M', 307), +(17813, 'Lynn', 1915, 'M', 305), +(17814, 'Russel', 1915, 'M', 305), +(17815, 'Seymour', 1915, 'M', 303), +(17816, 'Elvin', 1915, 'M', 301), +(17817, 'Larry', 1915, 'M', 301), +(17818, 'Steven', 1915, 'M', 298), +(17819, 'Alphonse', 1915, 'M', 297), +(17820, 'Clair', 1915, 'M', 297), +(17821, 'Bob', 1915, 'M', 296), +(17822, 'Dave', 1915, 'M', 295), +(17823, 'Maynard', 1915, 'M', 294), +(17824, 'Rocco', 1915, 'M', 290), +(17825, 'Clark', 1915, 'M', 289), +(17826, 'Neil', 1915, 'M', 289), +(17827, 'Ollie', 1915, 'M', 288), +(17828, 'Gus', 1915, 'M', 287), +(17829, 'Moses', 1915, 'M', 287), +(17830, 'Dewey', 1915, 'M', 286), +(17831, 'Elmo', 1915, 'M', 286), +(17832, 'Morton', 1915, 'M', 286), +(17833, 'Freddie', 1915, 'M', 283), +(17834, 'Andy', 1915, 'M', 277), +(17835, 'Barney', 1915, 'M', 276), +(17836, 'Billy', 1915, 'M', 276), +(17837, 'Emery', 1915, 'M', 274), +(17838, 'Carlos', 1915, 'M', 273), +(17839, 'Cyril', 1915, 'M', 273), +(17840, 'Booker', 1915, 'M', 272), +(17841, 'Claud', 1915, 'M', 272), +(17842, 'Joel', 1915, 'M', 272), +(17843, 'Roosevelt', 1915, 'M', 272), +(17844, 'Sol', 1915, 'M', 272), +(17845, 'Abe', 1915, 'M', 271), +(17846, 'Eli', 1915, 'M', 269), +(17847, 'Alonzo', 1915, 'M', 267), +(17848, 'Dallas', 1915, 'M', 266), +(17849, 'Harlan', 1915, 'M', 266), +(17850, 'Wade', 1915, 'M', 266), +(17851, 'Isadore', 1915, 'M', 265), +(17852, 'Doyle', 1915, 'M', 264), +(17853, 'Alva', 1915, 'M', 262), +(17854, 'Irwin', 1915, 'M', 261), +(17855, 'Merrill', 1915, 'M', 261), +(17856, 'Pasquale', 1915, 'M', 260), +(17857, 'Ellsworth', 1915, 'M', 259), +(17858, 'Orval', 1915, 'M', 258), +(17859, 'Ruben', 1915, 'M', 256), +(17860, 'Thaddeus', 1915, 'M', 254), +(17861, 'Timothy', 1915, 'M', 253), +(17862, 'Forest', 1915, 'M', 252), +(17863, 'Ned', 1915, 'M', 252), +(17864, 'Stuart', 1915, 'M', 249), +(17865, 'Ferdinand', 1915, 'M', 245), +(17866, 'Cleveland', 1915, 'M', 244), +(17867, 'Reginald', 1915, 'M', 244), +(17868, 'Basil', 1915, 'M', 243), +(17869, 'Elijah', 1915, 'M', 243), +(17870, 'Christopher', 1915, 'M', 242), +(17871, 'Jesus', 1915, 'M', 242), +(17872, 'Frederic', 1915, 'M', 240), +(17873, 'Patsy', 1915, 'M', 240), +(17874, 'Wilford', 1915, 'M', 240), +(17875, 'Alan', 1915, 'M', 238), +(17876, 'Odell', 1915, 'M', 237), +(17877, 'Ward', 1915, 'M', 237), +(17878, 'Rodney', 1915, 'M', 235), +(17879, 'Roman', 1915, 'M', 234), +(17880, 'Adrian', 1915, 'M', 231), +(17881, 'Darrell', 1915, 'M', 231), +(17882, 'Laverne', 1915, 'M', 231), +(17883, 'Emerson', 1915, 'M', 229), +(17884, 'Neal', 1915, 'M', 228), +(17885, 'Herschel', 1915, 'M', 226), +(17886, 'Sanford', 1915, 'M', 226), +(17887, 'Emory', 1915, 'M', 225), +(17888, 'Lionel', 1915, 'M', 224), +(17889, 'Noel', 1915, 'M', 223), +(17890, 'Hollis', 1915, 'M', 220), +(17891, 'Randolph', 1915, 'M', 220), +(17892, 'Stewart', 1915, 'M', 220), +(17893, 'Weldon', 1915, 'M', 219), +(17894, 'Levi', 1915, 'M', 218), +(17895, 'Armand', 1915, 'M', 217), +(17896, 'Buster', 1915, 'M', 214), +(17897, 'Vern', 1915, 'M', 212), +(17898, 'Wiley', 1915, 'M', 212), +(17899, 'Carmen', 1915, 'M', 211), +(17900, 'Benny', 1915, 'M', 210), +(17901, 'Buford', 1915, 'M', 209), +(17902, 'Sterling', 1915, 'M', 209), +(17903, 'Saul', 1915, 'M', 207), +(17904, 'Delmar', 1915, 'M', 205), +(17905, 'Mathew', 1915, 'M', 204), +(17906, 'Meyer', 1915, 'M', 203), +(17907, 'Truman', 1915, 'M', 202), +(17908, 'Vito', 1915, 'M', 198), +(17909, 'Silas', 1915, 'M', 197), +(17910, 'Winston', 1915, 'M', 197), +(17911, 'Duane', 1915, 'M', 196), +(17912, 'Harris', 1915, 'M', 196), +(17913, 'Wilburn', 1915, 'M', 196), +(17914, 'Hugo', 1915, 'M', 195), +(17915, 'Milford', 1915, 'M', 195), +(17916, 'Pedro', 1915, 'M', 193), +(17917, 'Tommy', 1915, 'M', 193), +(17918, 'Ramon', 1915, 'M', 191), +(17919, 'Coy', 1915, 'M', 189), +(17920, 'Noah', 1915, 'M', 189), +(17921, 'Omer', 1915, 'M', 189), +(17922, 'Aloysius', 1915, 'M', 187), +(17923, 'Ambrose', 1915, 'M', 187), +(17924, 'Miles', 1915, 'M', 186), +(17925, 'Alfonso', 1915, 'M', 184), +(17926, 'Norris', 1915, 'M', 184), +(17927, 'Jeff', 1915, 'M', 183), +(17928, 'Isidore', 1915, 'M', 182), +(17929, 'Lyman', 1915, 'M', 180), +(17930, 'Milo', 1915, 'M', 180), +(17931, 'Merlin', 1915, 'M', 179), +(17932, 'Casimir', 1915, 'M', 178), +(17933, 'Maxwell', 1915, 'M', 176), +(17934, 'Al', 1915, 'M', 175), +(17935, 'Jackson', 1915, 'M', 175), +(17936, 'Waldo', 1915, 'M', 174), +(17937, 'Gabriel', 1915, 'M', 173), +(17938, 'Sydney', 1915, 'M', 173), +(17939, 'Van', 1915, 'M', 173), +(17940, 'Carmine', 1915, 'M', 172), +(17941, 'Elliott', 1915, 'M', 172), +(17942, 'Micheal', 1915, 'M', 172), +(17943, 'Freeman', 1915, 'M', 171), +(17944, 'Shirley', 1915, 'M', 171), +(17945, 'Billie', 1915, 'M', 170), +(17946, 'Dick', 1915, 'M', 167), +(17947, 'Dudley', 1915, 'M', 166), +(17948, 'Foster', 1915, 'M', 166), +(17949, 'Pat', 1915, 'M', 166), +(17950, 'Francisco', 1915, 'M', 163), +(17951, 'Mervin', 1915, 'M', 163), +(17952, 'Augustus', 1915, 'M', 162), +(17953, 'Jean', 1915, 'M', 162), +(17954, 'Hiram', 1915, 'M', 161), +(17955, 'Lorenzo', 1915, 'M', 161), +(17956, 'Travis', 1915, 'M', 160), +(17957, 'Wilber', 1915, 'M', 160), +(17958, 'Bertram', 1915, 'M', 159), +(17959, 'Mary', 1915, 'M', 159), +(17960, 'Sammie', 1915, 'M', 159), +(17961, 'Luke', 1915, 'M', 157), +(17962, 'Royal', 1915, 'M', 157), +(17963, 'Scott', 1915, 'M', 157), +(17964, 'Randall', 1915, 'M', 156), +(17965, 'Alden', 1915, 'M', 155), +(17966, 'Eric', 1915, 'M', 155), +(17967, 'Cletus', 1915, 'M', 154), +(17968, 'Olen', 1915, 'M', 154), +(17969, 'Spencer', 1915, 'M', 153), +(17970, 'Gustave', 1915, 'M', 152), +(17971, 'Hal', 1915, 'M', 152), +(17972, 'Odis', 1915, 'M', 152), +(17973, 'Olin', 1915, 'M', 152), +(17974, 'Christian', 1915, 'M', 151), +(17975, 'Major', 1915, 'M', 151), +(17976, 'Jefferson', 1915, 'M', 150), +(17977, 'Evan', 1915, 'M', 149), +(17978, 'Everette', 1915, 'M', 149), +(17979, 'Denver', 1915, 'M', 148), +(17980, 'Junior', 1915, 'M', 148), +(17981, 'Theron', 1915, 'M', 148), +(17982, 'Wilton', 1915, 'M', 147), +(17983, 'Orlando', 1915, 'M', 146), +(17984, 'Winfred', 1915, 'M', 146), +(17985, 'Chris', 1915, 'M', 145), +(17986, 'Houston', 1915, 'M', 145), +(17987, 'Rolland', 1915, 'M', 145), +(17988, 'Gail', 1915, 'M', 143), +(17989, 'Newton', 1915, 'M', 143), +(17990, 'Riley', 1915, 'M', 142), +(17991, 'Fay', 1915, 'M', 141), +(17992, 'Hershel', 1915, 'M', 141), +(17993, 'Noble', 1915, 'M', 141), +(17994, 'Rubin', 1915, 'M', 141), +(17995, 'Albin', 1915, 'M', 139), +(17996, 'Darwin', 1915, 'M', 139), +(17997, 'Fletcher', 1915, 'M', 139), +(17998, 'Sigmund', 1915, 'M', 139), +(17999, 'Israel', 1915, 'M', 137), +(18000, 'Valentine', 1915, 'M', 137), +(18001, 'Gregory', 1915, 'M', 136), +(18002, 'Jimmy', 1915, 'M', 136), +(18003, 'Joshua', 1915, 'M', 136), +(18004, 'Morgan', 1915, 'M', 136), +(18005, 'Columbus', 1915, 'M', 135), +(18006, 'Ezra', 1915, 'M', 135), +(18007, 'Lavern', 1915, 'M', 135), +(18008, 'Linwood', 1915, 'M', 135), +(18009, 'Palmer', 1915, 'M', 135), +(18010, 'Ora', 1915, 'M', 134), +(18011, 'Benedict', 1915, 'M', 133), +(18012, 'Ford', 1915, 'M', 133), +(18013, 'Ulysses', 1915, 'M', 133), +(18014, 'Clay', 1915, 'M', 132), +(18015, 'Teddy', 1915, 'M', 132), +(18016, 'Vance', 1915, 'M', 131), +(18017, 'Bud', 1915, 'M', 130), +(18018, 'Burl', 1915, 'M', 130), +(18019, 'Marlin', 1915, 'M', 128), +(18020, 'Mose', 1915, 'M', 128), +(18021, 'Emile', 1915, 'M', 127), +(18022, 'Avery', 1915, 'M', 125), +(18023, 'Lamar', 1915, 'M', 125), +(18024, 'Lucien', 1915, 'M', 125), +(18025, 'Sheldon', 1915, 'M', 125), +(18026, 'Cyrus', 1915, 'M', 124), +(18027, 'Elwin', 1915, 'M', 124), +(18028, 'Lucian', 1915, 'M', 124), +(18029, 'Raleigh', 1915, 'M', 124), +(18030, 'Verne', 1915, 'M', 124), +(18031, 'Walton', 1915, 'M', 124), +(18032, 'Arlie', 1915, 'M', 122), +(18033, 'Dewitt', 1915, 'M', 122), +(18034, 'Justin', 1915, 'M', 122), +(18035, 'Anderson', 1915, 'M', 121), +(18036, 'Dee', 1915, 'M', 120), +(18037, 'Phil', 1915, 'M', 120), +(18038, 'Elmore', 1915, 'M', 119), +(18039, 'Lucius', 1915, 'M', 119), +(18040, 'Vaughn', 1915, 'M', 119), +(18041, 'Winfield', 1915, 'M', 119), +(18042, 'Lincoln', 1915, 'M', 118), +(18043, 'Nolan', 1915, 'M', 118), +(18044, 'Harmon', 1915, 'M', 117), +(18045, 'Hoyt', 1915, 'M', 117), +(18046, 'Rupert', 1915, 'M', 117), +(18047, 'Coleman', 1915, 'M', 116), +(18048, 'Junius', 1915, 'M', 116), +(18049, 'Elias', 1915, 'M', 114), +(18050, 'Harland', 1915, 'M', 114), +(18051, 'Antone', 1915, 'M', 113), +(18052, 'Delmer', 1915, 'M', 113), +(18053, 'Beverly', 1915, 'M', 112), +(18054, 'Carlo', 1915, 'M', 112), +(18055, 'Oren', 1915, 'M', 112), +(18056, 'Sebastian', 1915, 'M', 112), +(18057, 'Domenic', 1915, 'M', 111), +(18058, 'Jules', 1915, 'M', 111), +(18059, 'King', 1915, 'M', 111), +(18060, 'Asa', 1915, 'M', 109), +(18061, 'Gaylord', 1915, 'M', 109), +(18062, 'Otho', 1915, 'M', 109), +(18063, 'Royce', 1915, 'M', 109), +(18064, 'Casper', 1915, 'M', 108), +(18065, 'Hector', 1915, 'M', 108), +(18066, 'Jewel', 1915, 'M', 108), +(18067, 'Otha', 1915, 'M', 108), +(18068, 'Lenard', 1915, 'M', 107), +(18069, 'Rosario', 1915, 'M', 107), +(18070, 'Taylor', 1915, 'M', 107), +(18071, 'Hobert', 1915, 'M', 106), +(18072, 'Matt', 1915, 'M', 106), +(18073, 'Rudy', 1915, 'M', 106), +(18074, 'Blaine', 1915, 'M', 105), +(18075, 'Judson', 1915, 'M', 105), +(18076, 'Merton', 1915, 'M', 105), +(18077, 'Rene', 1915, 'M', 105), +(18078, 'Terry', 1915, 'M', 105), +(18079, 'Davis', 1915, 'M', 104), +(18080, 'Elroy', 1915, 'M', 104), +(18081, 'Gale', 1915, 'M', 104), +(18082, 'Luis', 1915, 'M', 104), +(18083, 'Miguel', 1915, 'M', 104), +(18084, 'Jewell', 1915, 'M', 103), +(18085, 'Porter', 1915, 'M', 103), +(18086, 'Walker', 1915, 'M', 103), +(18087, 'Casimer', 1915, 'M', 102), +(18088, 'Eldred', 1915, 'M', 102), +(18089, 'Napoleon', 1915, 'M', 102), +(18090, 'Salvador', 1915, 'M', 102), +(18091, 'Durward', 1915, 'M', 101), +(18092, 'Edd', 1915, 'M', 101), +(18093, 'Garfield', 1915, 'M', 101), +(18094, 'Guido', 1915, 'M', 101), +(18095, 'Kelly', 1915, 'M', 101), +(18096, 'Reed', 1915, 'M', 101), +(18097, 'Webster', 1915, 'M', 101), +(18098, 'Raphael', 1915, 'M', 100), +(18099, 'Mary', 1916, 'F', 61437), +(18100, 'Helen', 1916, 'F', 32661), +(18101, 'Dorothy', 1916, 'F', 27415), +(18102, 'Margaret', 1916, 'F', 24954), +(18103, 'Ruth', 1916, 'F', 23189), +(18104, 'Mildred', 1916, 'F', 15633), +(18105, 'Anna', 1916, 'F', 15228), +(18106, 'Elizabeth', 1916, 'F', 14939), +(18107, 'Frances', 1916, 'F', 13746), +(18108, 'Virginia', 1916, 'F', 12488), +(18109, 'Evelyn', 1916, 'F', 11890), +(18110, 'Marie', 1916, 'F', 11682), +(18111, 'Alice', 1916, 'F', 10719), +(18112, 'Florence', 1916, 'F', 10412), +(18113, 'Rose', 1916, 'F', 9605), +(18114, 'Lillian', 1916, 'F', 9592), +(18115, 'Irene', 1916, 'F', 9033), +(18116, 'Louise', 1916, 'F', 8630), +(18117, 'Edna', 1916, 'F', 8625), +(18118, 'Catherine', 1916, 'F', 8470), +(18119, 'Josephine', 1916, 'F', 8127), +(18120, 'Gladys', 1916, 'F', 8019), +(18121, 'Ruby', 1916, 'F', 7685), +(18122, 'Martha', 1916, 'F', 7610), +(18123, 'Ethel', 1916, 'F', 7601), +(18124, 'Grace', 1916, 'F', 7461), +(18125, 'Eleanor', 1916, 'F', 7406), +(18126, 'Edith', 1916, 'F', 7306), +(18127, 'Thelma', 1916, 'F', 7290), +(18128, 'Lucille', 1916, 'F', 7241), +(18129, 'Hazel', 1916, 'F', 7214), +(18130, 'Doris', 1916, 'F', 7160), +(18131, 'Pauline', 1916, 'F', 6655), +(18132, 'Esther', 1916, 'F', 6420), +(18133, 'Gertrude', 1916, 'F', 6243), +(18134, 'Annie', 1916, 'F', 6106), +(18135, 'Marjorie', 1916, 'F', 5865), +(18136, 'Beatrice', 1916, 'F', 5586), +(18137, 'Clara', 1916, 'F', 5543), +(18138, 'Ann', 1916, 'F', 5343), +(18139, 'Emma', 1916, 'F', 5217), +(18140, 'Bernice', 1916, 'F', 5183), +(18141, 'Lois', 1916, 'F', 5149), +(18142, 'Betty', 1916, 'F', 5136), +(18143, 'Jean', 1916, 'F', 5081), +(18144, 'Julia', 1916, 'F', 5066), +(18145, 'Marion', 1916, 'F', 5033), +(18146, 'Elsie', 1916, 'F', 5028), +(18147, 'Bertha', 1916, 'F', 4900), +(18148, 'Agnes', 1916, 'F', 4853), +(18149, 'Katherine', 1916, 'F', 4801), +(18150, 'Sarah', 1916, 'F', 4795), +(18151, 'Anne', 1916, 'F', 4570), +(18152, 'Ida', 1916, 'F', 4363), +(18153, 'Eva', 1916, 'F', 4337), +(18154, 'Bessie', 1916, 'F', 4122), +(18155, 'Pearl', 1916, 'F', 4073), +(18156, 'Myrtle', 1916, 'F', 3960), +(18157, 'Viola', 1916, 'F', 3948), +(18158, 'Kathryn', 1916, 'F', 3933), +(18159, 'Nellie', 1916, 'F', 3862), +(18160, 'Jane', 1916, 'F', 3826), +(18161, 'Stella', 1916, 'F', 3818), +(18162, 'Laura', 1916, 'F', 3743), +(18163, 'Mabel', 1916, 'F', 3680), +(18164, 'Vera', 1916, 'F', 3622), +(18165, 'Rita', 1916, 'F', 3477), +(18166, 'Jessie', 1916, 'F', 3414), +(18167, 'Sylvia', 1916, 'F', 3414), +(18168, 'Alma', 1916, 'F', 3403), +(18169, 'Minnie', 1916, 'F', 3274), +(18170, 'Marian', 1916, 'F', 3198), +(18171, 'Willie', 1916, 'F', 3116), +(18172, 'Barbara', 1916, 'F', 3113), +(18173, 'Leona', 1916, 'F', 3086), +(18174, 'Genevieve', 1916, 'F', 3063), +(18175, 'Vivian', 1916, 'F', 3049), +(18176, 'Marguerite', 1916, 'F', 3034), +(18177, 'Jennie', 1916, 'F', 3010), +(18178, 'Charlotte', 1916, 'F', 2995), +(18179, 'Ella', 1916, 'F', 2965), +(18180, 'Wilma', 1916, 'F', 2962), +(18181, 'Violet', 1916, 'F', 2921), +(18182, 'Lucy', 1916, 'F', 2877), +(18183, 'Lena', 1916, 'F', 2869), +(18184, 'June', 1916, 'F', 2840), +(18185, 'Ellen', 1916, 'F', 2838), +(18186, 'Lillie', 1916, 'F', 2825), +(18187, 'Blanche', 1916, 'F', 2714), +(18188, 'Juanita', 1916, 'F', 2644), +(18189, 'Opal', 1916, 'F', 2636), +(18190, 'Mae', 1916, 'F', 2607), +(18191, 'Mattie', 1916, 'F', 2556), +(18192, 'Geraldine', 1916, 'F', 2549), +(18193, 'Phyllis', 1916, 'F', 2427), +(18194, 'Maxine', 1916, 'F', 2424), +(18195, 'Beulah', 1916, 'F', 2401), +(18196, 'Theresa', 1916, 'F', 2348), +(18197, 'Velma', 1916, 'F', 2319), +(18198, 'Emily', 1916, 'F', 2213), +(18199, 'Sophie', 1916, 'F', 2198), +(18200, 'Nancy', 1916, 'F', 2165), +(18201, 'Carrie', 1916, 'F', 2159), +(18202, 'Kathleen', 1916, 'F', 2155), +(18203, 'Hilda', 1916, 'F', 2075), +(18204, 'Harriet', 1916, 'F', 2067), +(18205, 'Inez', 1916, 'F', 2057), +(18206, 'Georgia', 1916, 'F', 1992), +(18207, 'Sara', 1916, 'F', 1992), +(18208, 'Eunice', 1916, 'F', 1963), +(18209, 'Norma', 1916, 'F', 1921), +(18210, 'Geneva', 1916, 'F', 1919), +(18211, 'Loretta', 1916, 'F', 1903), +(18212, 'Cora', 1916, 'F', 1899), +(18213, 'Hattie', 1916, 'F', 1889), +(18214, 'Fannie', 1916, 'F', 1883), +(18215, 'Ada', 1916, 'F', 1860), +(18216, 'Eileen', 1916, 'F', 1858), +(18217, 'Audrey', 1916, 'F', 1852), +(18218, 'Rosa', 1916, 'F', 1793), +(18219, 'Christine', 1916, 'F', 1787), +(18220, 'Estelle', 1916, 'F', 1772), +(18221, 'Alberta', 1916, 'F', 1765), +(18222, 'Dora', 1916, 'F', 1725), +(18223, 'Verna', 1916, 'F', 1713), +(18224, 'Olga', 1916, 'F', 1685), +(18225, 'Lula', 1916, 'F', 1676), +(18226, 'Lorraine', 1916, 'F', 1671), +(18227, 'Mamie', 1916, 'F', 1653), +(18228, 'Naomi', 1916, 'F', 1649), +(18229, 'Madeline', 1916, 'F', 1644), +(18230, 'Olive', 1916, 'F', 1616), +(18231, 'Sadie', 1916, 'F', 1529), +(18232, 'Muriel', 1916, 'F', 1524), +(18233, 'Jeanette', 1916, 'F', 1522), +(18234, 'Mable', 1916, 'F', 1520), +(18235, 'Daisy', 1916, 'F', 1511), +(18236, 'Wanda', 1916, 'F', 1505), +(18237, 'Lucile', 1916, 'F', 1483), +(18238, 'Miriam', 1916, 'F', 1460), +(18239, 'Flora', 1916, 'F', 1459), +(18240, 'Janet', 1916, 'F', 1449), +(18241, 'Lottie', 1916, 'F', 1389), +(18242, 'Caroline', 1916, 'F', 1385), +(18243, 'Erma', 1916, 'F', 1378), +(18244, 'Dolores', 1916, 'F', 1374), +(18245, 'Lola', 1916, 'F', 1372), +(18246, 'Winifred', 1916, 'F', 1365), +(18247, 'Irma', 1916, 'F', 1353), +(18248, 'Victoria', 1916, 'F', 1340), +(18249, 'Anita', 1916, 'F', 1338), +(18250, 'Fern', 1916, 'F', 1332), +(18251, 'Rachel', 1916, 'F', 1328), +(18252, 'Nora', 1916, 'F', 1314), +(18253, 'Roberta', 1916, 'F', 1313), +(18254, 'Susie', 1916, 'F', 1313), +(18255, 'Maggie', 1916, 'F', 1277), +(18256, 'Henrietta', 1916, 'F', 1264), +(18257, 'Maria', 1916, 'F', 1261), +(18258, 'Shirley', 1916, 'F', 1245), +(18259, 'Elaine', 1916, 'F', 1235), +(18260, 'Sally', 1916, 'F', 1221), +(18261, 'Carolyn', 1916, 'F', 1215), +(18262, 'Eula', 1916, 'F', 1210), +(18263, 'Della', 1916, 'F', 1172), +(18264, 'Adeline', 1916, 'F', 1167), +(18265, 'Amelia', 1916, 'F', 1159), +(18266, 'Lydia', 1916, 'F', 1148), +(18267, 'Rebecca', 1916, 'F', 1132), +(18268, 'Nina', 1916, 'F', 1130), +(18269, 'Nettie', 1916, 'F', 1125), +(18270, 'Arlene', 1916, 'F', 1105), +(18271, 'Jeannette', 1916, 'F', 1082), +(18272, 'Patricia', 1916, 'F', 1079), +(18273, 'Antoinette', 1916, 'F', 1063), +(18274, 'Jeanne', 1916, 'F', 1050), +(18275, 'Lorene', 1916, 'F', 1043), +(18276, 'Goldie', 1916, 'F', 1039), +(18277, 'Dorothea', 1916, 'F', 1036), +(18278, 'Cleo', 1916, 'F', 1031), +(18279, 'Rosie', 1916, 'F', 1030), +(18280, 'Marcella', 1916, 'F', 1002), +(18281, 'Isabel', 1916, 'F', 1000), +(18282, 'Rosemary', 1916, 'F', 996), +(18283, 'Bonnie', 1916, 'F', 992), +(18284, 'Veronica', 1916, 'F', 976), +(18285, 'Eloise', 1916, 'F', 953), +(18286, 'Freda', 1916, 'F', 948), +(18287, 'Angeline', 1916, 'F', 940), +(18288, 'May', 1916, 'F', 938), +(18289, 'Katie', 1916, 'F', 935), +(18290, 'Isabelle', 1916, 'F', 927), +(18291, 'Ollie', 1916, 'F', 925), +(18292, 'Regina', 1916, 'F', 921), +(18293, 'Margie', 1916, 'F', 915), +(18294, 'Sallie', 1916, 'F', 912), +(18295, 'Essie', 1916, 'F', 904), +(18296, 'Adele', 1916, 'F', 902), +(18297, 'Lela', 1916, 'F', 888), +(18298, 'Cecelia', 1916, 'F', 883), +(18299, 'Effie', 1916, 'F', 878), +(18300, 'Angelina', 1916, 'F', 871), +(18301, 'Sue', 1916, 'F', 868), +(18302, 'Faye', 1916, 'F', 865), +(18303, 'Ora', 1916, 'F', 857), +(18304, 'Iva', 1916, 'F', 844), +(18305, 'Susan', 1916, 'F', 844), +(18306, 'Claire', 1916, 'F', 838), +(18307, 'Frieda', 1916, 'F', 838), +(18308, 'Luella', 1916, 'F', 837), +(18309, 'Addie', 1916, 'F', 823), +(18310, 'Joan', 1916, 'F', 823), +(18311, 'Constance', 1916, 'F', 811), +(18312, 'Celia', 1916, 'F', 810), +(18313, 'Carol', 1916, 'F', 789), +(18314, 'Rosalie', 1916, 'F', 787), +(18315, 'Elva', 1916, 'F', 783), +(18316, 'Leola', 1916, 'F', 780), +(18317, 'Annette', 1916, 'F', 773), +(18318, 'Alta', 1916, 'F', 765), +(18319, 'Joyce', 1916, 'F', 746), +(18320, 'Etta', 1916, 'F', 742), +(18321, 'Maude', 1916, 'F', 739), +(18322, 'Jewel', 1916, 'F', 726), +(18323, 'Eleanore', 1916, 'F', 724), +(18324, 'Nell', 1916, 'F', 722), +(18325, 'Helene', 1916, 'F', 718), +(18326, 'Selma', 1916, 'F', 718), +(18327, 'Angela', 1916, 'F', 715), +(18328, 'Lila', 1916, 'F', 708), +(18329, 'Jewell', 1916, 'F', 699), +(18330, 'Sophia', 1916, 'F', 697), +(18331, 'Cecilia', 1916, 'F', 685), +(18332, 'Ernestine', 1916, 'F', 676), +(18333, 'Fay', 1916, 'F', 676), +(18334, 'Johnnie', 1916, 'F', 676), +(18335, 'Ola', 1916, 'F', 672), +(18336, 'Ina', 1916, 'F', 671), +(18337, 'Lizzie', 1916, 'F', 669), +(18338, 'Matilda', 1916, 'F', 665), +(18339, 'Reba', 1916, 'F', 665), +(18340, 'Teresa', 1916, 'F', 662), +(18341, 'Mollie', 1916, 'F', 650), +(18342, 'Janie', 1916, 'F', 649), +(18343, 'Laverne', 1916, 'F', 642), +(18344, 'Elma', 1916, 'F', 622), +(18345, 'Donna', 1916, 'F', 606), +(18346, 'Amy', 1916, 'F', 595), +(18347, 'Estella', 1916, 'F', 594), +(18348, 'Nannie', 1916, 'F', 593), +(18349, 'Melba', 1916, 'F', 581), +(18350, 'Elinor', 1916, 'F', 580), +(18351, 'Iris', 1916, 'F', 577), +(18352, 'Gwendolyn', 1916, 'F', 574), +(18353, 'Rena', 1916, 'F', 573), +(18354, 'Elvira', 1916, 'F', 567), +(18355, 'Billie', 1916, 'F', 565), +(18356, 'Peggy', 1916, 'F', 554), +(18357, 'Elnora', 1916, 'F', 550), +(18358, 'Hannah', 1916, 'F', 549), +(18359, 'Flossie', 1916, 'F', 548), +(18360, 'Eugenia', 1916, 'F', 536), +(18361, 'Lenora', 1916, 'F', 532), +(18362, 'Millie', 1916, 'F', 524), +(18363, 'Francis', 1916, 'F', 519), +(18364, 'Leah', 1916, 'F', 514), +(18365, 'Ila', 1916, 'F', 513), +(18366, 'Harriett', 1916, 'F', 511), +(18367, 'Virgie', 1916, 'F', 509), +(18368, 'Carmen', 1916, 'F', 508), +(18369, 'Edythe', 1916, 'F', 507), +(18370, 'Beverly', 1916, 'F', 495), +(18371, 'Clarice', 1916, 'F', 484), +(18372, 'Winnie', 1916, 'F', 477), +(18373, 'Lee', 1916, 'F', 475), +(18374, 'Zelma', 1916, 'F', 466), +(18375, 'Cornelia', 1916, 'F', 465), +(18376, 'Tillie', 1916, 'F', 457), +(18377, 'Carmela', 1916, 'F', 451), +(18378, 'Adelaide', 1916, 'F', 449), +(18379, 'Neva', 1916, 'F', 449), +(18380, 'Annabelle', 1916, 'F', 448), +(18381, 'Olivia', 1916, 'F', 446), +(18382, 'Letha', 1916, 'F', 445), +(18383, 'Allie', 1916, 'F', 443), +(18384, 'Priscilla', 1916, 'F', 440), +(18385, 'Nadine', 1916, 'F', 429), +(18386, 'Natalie', 1916, 'F', 428), +(18387, 'Helena', 1916, 'F', 424), +(18388, 'Imogene', 1916, 'F', 423), +(18389, 'Myra', 1916, 'F', 422), +(18390, 'Amanda', 1916, 'F', 421), +(18391, 'Gracie', 1916, 'F', 421), +(18392, 'Madge', 1916, 'F', 418), +(18393, 'Cecile', 1916, 'F', 417), +(18394, 'Arline', 1916, 'F', 414), +(18395, 'Carmella', 1916, 'F', 411), +(18396, 'Bernadine', 1916, 'F', 407), +(18397, 'Dollie', 1916, 'F', 404), +(18398, 'Yvonne', 1916, 'F', 403), +(18399, 'Connie', 1916, 'F', 399), +(18400, 'Stephanie', 1916, 'F', 397), +(18401, 'Avis', 1916, 'F', 391), +(18402, 'Lorena', 1916, 'F', 391), +(18403, 'Berniece', 1916, 'F', 389), +(18404, 'Gussie', 1916, 'F', 388), +(18405, 'Rosella', 1916, 'F', 387), +(18406, 'Rhoda', 1916, 'F', 385), +(18407, 'Frankie', 1916, 'F', 382), +(18408, 'Lessie', 1916, 'F', 382), +(18409, 'Hester', 1916, 'F', 378), +(18410, 'Janice', 1916, 'F', 373), +(18411, 'Lily', 1916, 'F', 373), +(18412, 'Merle', 1916, 'F', 373), +(18413, 'Alyce', 1916, 'F', 369), +(18414, 'Leila', 1916, 'F', 368), +(18415, 'Johanna', 1916, 'F', 366), +(18416, 'Lora', 1916, 'F', 366), +(18417, 'Josie', 1916, 'F', 363), +(18418, 'Claudia', 1916, 'F', 361), +(18419, 'Erna', 1916, 'F', 358), +(18420, 'Callie', 1916, 'F', 357), +(18421, 'Concetta', 1916, 'F', 355), +(18422, 'Aileen', 1916, 'F', 354), +(18423, 'Odessa', 1916, 'F', 353), +(18424, 'Christina', 1916, 'F', 346), +(18425, 'Ione', 1916, 'F', 344), +(18426, 'Augusta', 1916, 'F', 342), +(18427, 'Leota', 1916, 'F', 341), +(18428, 'Aline', 1916, 'F', 340), +(18429, 'Tessie', 1916, 'F', 340), +(18430, 'Bettie', 1916, 'F', 339), +(18431, 'Rosetta', 1916, 'F', 339), +(18432, 'Katharine', 1916, 'F', 336), +(18433, 'Belle', 1916, 'F', 334), +(18434, 'Molly', 1916, 'F', 333), +(18435, 'Corinne', 1916, 'F', 332), +(18436, 'Gloria', 1916, 'F', 331), +(18437, 'Jimmie', 1916, 'F', 330), +(18438, 'Lenore', 1916, 'F', 330), +(18439, 'Margery', 1916, 'F', 330), +(18440, 'Eliza', 1916, 'F', 328), +(18441, 'Bertie', 1916, 'F', 327), +(18442, 'Iona', 1916, 'F', 320), +(18443, 'Wilhelmina', 1916, 'F', 320), +(18444, 'Kate', 1916, 'F', 318), +(18445, 'Iola', 1916, 'F', 317), +(18446, 'Lilly', 1916, 'F', 316), +(18447, 'Willa', 1916, 'F', 316), +(18448, 'Theda', 1916, 'F', 315), +(18449, 'Lou', 1916, 'F', 308), +(18450, 'Loraine', 1916, 'F', 307), +(18451, 'Florine', 1916, 'F', 305), +(18452, 'Dolly', 1916, 'F', 302), +(18453, 'Nola', 1916, 'F', 301), +(18454, 'Linda', 1916, 'F', 297), +(18455, 'Gretchen', 1916, 'F', 296), +(18456, 'Philomena', 1916, 'F', 296), +(18457, 'Judith', 1916, 'F', 295), +(18458, 'Yolanda', 1916, 'F', 292), +(18459, 'Paula', 1916, 'F', 289), +(18460, 'Sybil', 1916, 'F', 287), +(18461, 'Corine', 1916, 'F', 286), +(18462, 'Beth', 1916, 'F', 285), +(18463, 'Mayme', 1916, 'F', 285), +(18464, 'Oma', 1916, 'F', 284), +(18465, 'Alvina', 1916, 'F', 283), +(18466, 'Dessie', 1916, 'F', 283), +(18467, 'Maudie', 1916, 'F', 283), +(18468, 'Wilda', 1916, 'F', 283), +(18469, 'Dorthy', 1916, 'F', 278), +(18470, 'Elisabeth', 1916, 'F', 278), +(18471, 'Monica', 1916, 'F', 278), +(18472, 'Ramona', 1916, 'F', 278), +(18473, 'Reva', 1916, 'F', 277), +(18474, 'Roxie', 1916, 'F', 277), +(18475, 'Birdie', 1916, 'F', 275), +(18476, 'Maurine', 1916, 'F', 275), +(18477, 'Pansy', 1916, 'F', 273), +(18478, 'Kay', 1916, 'F', 272), +(18479, 'Delores', 1916, 'F', 271), +(18480, 'Pearlie', 1916, 'F', 270), +(18481, 'Catharine', 1916, 'F', 267), +(18482, 'Delia', 1916, 'F', 267), +(18483, 'Ophelia', 1916, 'F', 266), +(18484, 'Althea', 1916, 'F', 265), +(18485, 'Lelia', 1916, 'F', 265), +(18486, 'Hope', 1916, 'F', 262), +(18487, 'Zelda', 1916, 'F', 258), +(18488, 'Eddie', 1916, 'F', 254), +(18489, 'Nona', 1916, 'F', 254), +(18490, 'Polly', 1916, 'F', 254), +(18491, 'Bernadette', 1916, 'F', 253), +(18492, 'Leone', 1916, 'F', 253), +(18493, 'Mona', 1916, 'F', 253), +(18494, 'Elda', 1916, 'F', 250), +(18495, 'Hallie', 1916, 'F', 250), +(18496, 'Antonia', 1916, 'F', 248), +(18497, 'Zella', 1916, 'F', 248), +(18498, 'Ferne', 1916, 'F', 247), +(18499, 'Isabella', 1916, 'F', 246), +(18500, 'Madelyn', 1916, 'F', 246), +(18501, 'Leora', 1916, 'F', 243), +(18502, 'Cecil', 1916, 'F', 241), +(18503, 'Fanny', 1916, 'F', 241), +(18504, 'Rubye', 1916, 'F', 241), +(18505, 'Dixie', 1916, 'F', 235), +(18506, 'Louella', 1916, 'F', 235), +(18507, 'Bette', 1916, 'F', 230), +(18508, 'Georgie', 1916, 'F', 230), +(18509, 'John', 1916, 'F', 227), +(18510, 'Mercedes', 1916, 'F', 227), +(18511, 'Lorine', 1916, 'F', 226), +(18512, 'Mavis', 1916, 'F', 226), +(18513, 'Valeria', 1916, 'F', 226), +(18514, 'Louisa', 1916, 'F', 225), +(18515, 'Melva', 1916, 'F', 225), +(18516, 'Cynthia', 1916, 'F', 224), +(18517, 'Lauretta', 1916, 'F', 223), +(18518, 'Earline', 1916, 'F', 221), +(18519, 'Glenna', 1916, 'F', 221), +(18520, 'Isabell', 1916, 'F', 220), +(18521, 'Vesta', 1916, 'F', 220), +(18522, 'Leta', 1916, 'F', 219), +(18523, 'Winona', 1916, 'F', 219), +(18524, 'Lorna', 1916, 'F', 218), +(18525, 'Clare', 1916, 'F', 215), +(18526, 'Lucinda', 1916, 'F', 215), +(18527, 'Joy', 1916, 'F', 214), +(18528, 'Robbie', 1916, 'F', 214), +(18529, 'Agatha', 1916, 'F', 213), +(18530, 'Beryl', 1916, 'F', 213), +(18531, 'Jannie', 1916, 'F', 213), +(18532, 'Marietta', 1916, 'F', 213), +(18533, 'Verda', 1916, 'F', 213), +(18534, 'Garnet', 1916, 'F', 209), +(18535, 'Maybelle', 1916, 'F', 208), +(18536, 'Bella', 1916, 'F', 207), +(18537, 'Tommie', 1916, 'F', 207), +(18538, 'Allene', 1916, 'F', 206), +(18539, 'Angie', 1916, 'F', 204), +(18540, 'Oleta', 1916, 'F', 204), +(18541, 'Harriette', 1916, 'F', 203), +(18542, 'Hortense', 1916, 'F', 202), +(18543, 'Vada', 1916, 'F', 202), +(18544, 'Elsa', 1916, 'F', 201), +(18545, 'Mozelle', 1916, 'F', 201), +(18546, 'Elvera', 1916, 'F', 200), +(18547, 'Phoebe', 1916, 'F', 199), +(18548, 'Rae', 1916, 'F', 199), +(18549, 'Alpha', 1916, 'F', 198), +(18550, 'Elise', 1916, 'F', 198), +(18551, 'Ester', 1916, 'F', 198), +(18552, 'Lulu', 1916, 'F', 198), +(18553, 'Yetta', 1916, 'F', 197), +(18554, 'Evalyn', 1916, 'F', 196), +(18555, 'Gail', 1916, 'F', 196), +(18556, 'Bobbie', 1916, 'F', 194), +(18557, 'Albina', 1916, 'F', 193), +(18558, 'Vida', 1916, 'F', 193), +(18559, 'Gertie', 1916, 'F', 192), +(18560, 'Orpha', 1916, 'F', 192), +(18561, 'Rosalind', 1916, 'F', 190), +(18562, 'Ivy', 1916, 'F', 188), +(18563, 'Julie', 1916, 'F', 188), +(18564, 'Alene', 1916, 'F', 186), +(18565, 'Ava', 1916, 'F', 186), +(18566, 'Ona', 1916, 'F', 185), +(18567, 'Lura', 1916, 'F', 184), +(18568, 'Camille', 1916, 'F', 183); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(18569, 'Aurora', 1916, 'F', 182), +(18570, 'Dorotha', 1916, 'F', 181), +(18571, 'Minerva', 1916, 'F', 181), +(18572, 'Artie', 1916, 'F', 180), +(18573, 'Marjory', 1916, 'F', 179), +(18574, 'Valerie', 1916, 'F', 179), +(18575, 'Linnie', 1916, 'F', 178), +(18576, 'Mina', 1916, 'F', 178), +(18577, 'Katheryn', 1916, 'F', 177), +(18578, 'Alfreda', 1916, 'F', 176), +(18579, 'Alva', 1916, 'F', 176), +(18580, 'Evangeline', 1916, 'F', 176), +(18581, 'Jacqueline', 1916, 'F', 176), +(18582, 'Dovie', 1916, 'F', 175), +(18583, 'Maryann', 1916, 'F', 175), +(18584, 'Eleanora', 1916, 'F', 174), +(18585, 'Enid', 1916, 'F', 174), +(18586, 'Lona', 1916, 'F', 173), +(18587, 'Una', 1916, 'F', 173), +(18588, 'Queen', 1916, 'F', 172), +(18589, 'Floy', 1916, 'F', 171), +(18590, 'Marcia', 1916, 'F', 171), +(18591, 'Veda', 1916, 'F', 171), +(18592, 'Belva', 1916, 'F', 170), +(18593, 'Hettie', 1916, 'F', 170), +(18594, 'Mathilda', 1916, 'F', 170), +(18595, 'Charlene', 1916, 'F', 169), +(18596, 'Rhea', 1916, 'F', 169), +(18597, 'Blanch', 1916, 'F', 168), +(18598, 'Joanna', 1916, 'F', 168), +(18599, 'Lettie', 1916, 'F', 168), +(18600, 'Freida', 1916, 'F', 167), +(18601, 'Lucia', 1916, 'F', 167), +(18602, 'Suzanne', 1916, 'F', 167), +(18603, 'Zola', 1916, 'F', 167), +(18604, 'Cassie', 1916, 'F', 166), +(18605, 'Elena', 1916, 'F', 166), +(18606, 'James', 1916, 'F', 166), +(18607, 'Maud', 1916, 'F', 165), +(18608, 'Rowena', 1916, 'F', 165), +(18609, 'Deloris', 1916, 'F', 164), +(18610, 'Mazie', 1916, 'F', 164), +(18611, 'Aurelia', 1916, 'F', 162), +(18612, 'Margret', 1916, 'F', 162), +(18613, 'Elna', 1916, 'F', 161), +(18614, 'Rachael', 1916, 'F', 161), +(18615, 'Winnifred', 1916, 'F', 161), +(18616, 'Retha', 1916, 'F', 160), +(18617, 'Diana', 1916, 'F', 159), +(18618, 'Dorris', 1916, 'F', 159), +(18619, 'Justine', 1916, 'F', 159), +(18620, 'Nelda', 1916, 'F', 158), +(18621, 'Odell', 1916, 'F', 158), +(18622, 'Celeste', 1916, 'F', 157), +(18623, 'Dortha', 1916, 'F', 157), +(18624, 'Era', 1916, 'F', 157), +(18625, 'Hedwig', 1916, 'F', 157), +(18626, 'Madeleine', 1916, 'F', 157), +(18627, 'Magdalene', 1916, 'F', 156), +(18628, 'Marianne', 1916, 'F', 156), +(18629, 'Filomena', 1916, 'F', 155), +(18630, 'Roma', 1916, 'F', 155), +(18631, 'Adela', 1916, 'F', 154), +(18632, 'Adell', 1916, 'F', 154), +(18633, 'Golda', 1916, 'F', 154), +(18634, 'Emilie', 1916, 'F', 153), +(18635, 'Myrna', 1916, 'F', 153), +(18636, 'Jaunita', 1916, 'F', 152), +(18637, 'Jo', 1916, 'F', 152), +(18638, 'Zora', 1916, 'F', 152), +(18639, 'Clementine', 1916, 'F', 151), +(18640, 'Ethelyn', 1916, 'F', 151), +(18641, 'Myrtis', 1916, 'F', 151), +(18642, 'Guadalupe', 1916, 'F', 150), +(18643, 'Edwina', 1916, 'F', 149), +(18644, 'Hulda', 1916, 'F', 148), +(18645, 'Cordelia', 1916, 'F', 147), +(18646, 'Reta', 1916, 'F', 147), +(18647, 'Roslyn', 1916, 'F', 147), +(18648, 'Ursula', 1916, 'F', 147), +(18649, 'Vernice', 1916, 'F', 147), +(18650, 'Abbie', 1916, 'F', 146), +(18651, 'Florene', 1916, 'F', 146), +(18652, 'Idella', 1916, 'F', 146), +(18653, 'Marilyn', 1916, 'F', 146), +(18654, 'Ruthie', 1916, 'F', 146), +(18655, 'Corrine', 1916, 'F', 145), +(18656, 'Elouise', 1916, 'F', 145), +(18657, 'Georgiana', 1916, 'F', 145), +(18658, 'Lyda', 1916, 'F', 145), +(18659, 'Eve', 1916, 'F', 144), +(18660, 'Crystal', 1916, 'F', 143), +(18661, 'Claudine', 1916, 'F', 142), +(18662, 'Verla', 1916, 'F', 142), +(18663, 'Nelle', 1916, 'F', 141), +(18664, 'Margarette', 1916, 'F', 140), +(18665, 'Velva', 1916, 'F', 139), +(18666, 'Germaine', 1916, 'F', 138), +(18667, 'Ilene', 1916, 'F', 138), +(18668, 'Leatha', 1916, 'F', 138), +(18669, 'Margarita', 1916, 'F', 138), +(18670, 'Ocie', 1916, 'F', 138), +(18671, 'Delphine', 1916, 'F', 137), +(18672, 'Tressie', 1916, 'F', 137), +(18673, 'Jenny', 1916, 'F', 136), +(18674, 'William', 1916, 'F', 136), +(18675, 'Camilla', 1916, 'F', 135), +(18676, 'Eldora', 1916, 'F', 135), +(18677, 'George', 1916, 'F', 135), +(18678, 'Juliette', 1916, 'F', 135), +(18679, 'Almeda', 1916, 'F', 134), +(18680, 'Jayne', 1916, 'F', 134), +(18681, 'Lupe', 1916, 'F', 134), +(18682, 'Johnie', 1916, 'F', 132), +(18683, 'Ray', 1916, 'F', 132), +(18684, 'Bess', 1916, 'F', 131), +(18685, 'Darlene', 1916, 'F', 131), +(18686, 'Magnolia', 1916, 'F', 131), +(18687, 'Mittie', 1916, 'F', 130), +(18688, 'Annabel', 1916, 'F', 129), +(18689, 'Delma', 1916, 'F', 129), +(18690, 'Marvel', 1916, 'F', 129), +(18691, 'Alda', 1916, 'F', 128), +(18692, 'Celestine', 1916, 'F', 128), +(18693, 'Myrtice', 1916, 'F', 128), +(18694, 'Chloe', 1916, 'F', 127), +(18695, 'Evelyne', 1916, 'F', 127), +(18696, 'Tina', 1916, 'F', 127), +(18697, 'Anastasia', 1916, 'F', 126), +(18698, 'Freddie', 1916, 'F', 126), +(18699, 'Georgianna', 1916, 'F', 126), +(18700, 'Consuelo', 1916, 'F', 125), +(18701, 'Patsy', 1916, 'F', 125), +(18702, 'Velda', 1916, 'F', 125), +(18703, 'Audra', 1916, 'F', 124), +(18704, 'Adella', 1916, 'F', 123), +(18705, 'Ardis', 1916, 'F', 123), +(18706, 'Charles', 1916, 'F', 123), +(18707, 'Gilda', 1916, 'F', 123), +(18708, 'Lilyan', 1916, 'F', 123), +(18709, 'Vernie', 1916, 'F', 123), +(18710, 'Manuela', 1916, 'F', 122), +(18711, 'Meta', 1916, 'F', 122), +(18712, 'Robert', 1916, 'F', 122), +(18713, 'Theodora', 1916, 'F', 122), +(18714, 'Annetta', 1916, 'F', 121), +(18715, 'Antonette', 1916, 'F', 121), +(18716, 'Millicent', 1916, 'F', 120), +(18717, 'Cathryn', 1916, 'F', 119), +(18718, 'Charlie', 1916, 'F', 119), +(18719, 'Estell', 1916, 'F', 119), +(18720, 'Gene', 1916, 'F', 119), +(18721, 'Bennie', 1916, 'F', 118), +(18722, 'Joanne', 1916, 'F', 118), +(18723, 'Rubie', 1916, 'F', 118), +(18724, 'Judy', 1916, 'F', 117), +(18725, 'Leonora', 1916, 'F', 117), +(18726, 'Mozell', 1916, 'F', 117), +(18727, 'Therese', 1916, 'F', 117), +(18728, 'Clyde', 1916, 'F', 116), +(18729, 'Albertha', 1916, 'F', 115), +(18730, 'Bonita', 1916, 'F', 115), +(18731, 'Lida', 1916, 'F', 115), +(18732, 'Dorcas', 1916, 'F', 114), +(18733, 'Nan', 1916, 'F', 114), +(18734, 'Faith', 1916, 'F', 113), +(18735, 'Lavina', 1916, 'F', 113), +(18736, 'Emilia', 1916, 'F', 112), +(18737, 'Jerry', 1916, 'F', 112), +(18738, 'Lovie', 1916, 'F', 112), +(18739, 'Aletha', 1916, 'F', 111), +(18740, 'Carolina', 1916, 'F', 111), +(18741, 'Greta', 1916, 'F', 111), +(18742, 'Lennie', 1916, 'F', 111), +(18743, 'Octavia', 1916, 'F', 111), +(18744, 'Rosamond', 1916, 'F', 111), +(18745, 'Berneice', 1916, 'F', 110), +(18746, 'Felicia', 1916, 'F', 110), +(18747, 'Ima', 1916, 'F', 110), +(18748, 'Susanna', 1916, 'F', 110), +(18749, 'Vergie', 1916, 'F', 110), +(18750, 'Malinda', 1916, 'F', 109), +(18751, 'Treva', 1916, 'F', 109), +(18752, 'Betsy', 1916, 'F', 108), +(18753, 'Hildegarde', 1916, 'F', 108), +(18754, 'Kathrine', 1916, 'F', 108), +(18755, 'Nita', 1916, 'F', 108), +(18756, 'Rosina', 1916, 'F', 108), +(18757, 'Gayle', 1916, 'F', 107), +(18758, 'Hellen', 1916, 'F', 107), +(18759, 'Novella', 1916, 'F', 107), +(18760, 'Zona', 1916, 'F', 107), +(18761, 'Idell', 1916, 'F', 106), +(18762, 'Libby', 1916, 'F', 106), +(18763, 'Charline', 1916, 'F', 105), +(18764, 'Zula', 1916, 'F', 105), +(18765, 'Bethel', 1916, 'F', 104), +(18766, 'Claudie', 1916, 'F', 104), +(18767, 'Dona', 1916, 'F', 104), +(18768, 'Elmira', 1916, 'F', 104), +(18769, 'Esta', 1916, 'F', 104), +(18770, 'Kathryne', 1916, 'F', 104), +(18771, 'Lue', 1916, 'F', 104), +(18772, 'Rosalyn', 1916, 'F', 104), +(18773, 'Diane', 1916, 'F', 103), +(18774, 'Sibyl', 1916, 'F', 103), +(18775, 'Verona', 1916, 'F', 103), +(18776, 'Easter', 1916, 'F', 102), +(18777, 'Joe', 1916, 'F', 101), +(18778, 'Leslie', 1916, 'F', 101), +(18779, 'Lina', 1916, 'F', 101), +(18780, 'Pearline', 1916, 'F', 101), +(18781, 'Rosalee', 1916, 'F', 101), +(18782, 'Carmel', 1916, 'F', 100), +(18783, 'Eda', 1916, 'F', 100), +(18784, 'Vina', 1916, 'F', 100), +(18785, 'John', 1916, 'M', 50046), +(18786, 'William', 1916, 'M', 40421), +(18787, 'James', 1916, 'M', 35569), +(18788, 'Robert', 1916, 'M', 31741), +(18789, 'Joseph', 1916, 'M', 23884), +(18790, 'Charles', 1916, 'M', 23613), +(18791, 'George', 1916, 'M', 23380), +(18792, 'Edward', 1916, 'M', 17006), +(18793, 'Frank', 1916, 'M', 15293), +(18794, 'Thomas', 1916, 'M', 11997), +(18795, 'Walter', 1916, 'M', 11760), +(18796, 'Paul', 1916, 'M', 10792), +(18797, 'Harold', 1916, 'M', 10698), +(18798, 'Henry', 1916, 'M', 10655), +(18799, 'Richard', 1916, 'M', 10133), +(18800, 'Raymond', 1916, 'M', 9565), +(18801, 'Albert', 1916, 'M', 9044), +(18802, 'Arthur', 1916, 'M', 8922), +(18803, 'Harry', 1916, 'M', 8476), +(18804, 'Donald', 1916, 'M', 7737), +(18805, 'Ralph', 1916, 'M', 7085), +(18806, 'Louis', 1916, 'M', 6816), +(18807, 'Carl', 1916, 'M', 6785), +(18808, 'Clarence', 1916, 'M', 6304), +(18809, 'Howard', 1916, 'M', 6172), +(18810, 'Jack', 1916, 'M', 6162), +(18811, 'Kenneth', 1916, 'M', 6012), +(18812, 'David', 1916, 'M', 5813), +(18813, 'Fred', 1916, 'M', 5745), +(18814, 'Willie', 1916, 'M', 5660), +(18815, 'Francis', 1916, 'M', 5652), +(18816, 'Earl', 1916, 'M', 5553), +(18817, 'Roy', 1916, 'M', 5327), +(18818, 'Stanley', 1916, 'M', 5130), +(18819, 'Joe', 1916, 'M', 4911), +(18820, 'Ernest', 1916, 'M', 4823), +(18821, 'Anthony', 1916, 'M', 4749), +(18822, 'Lawrence', 1916, 'M', 4742), +(18823, 'Eugene', 1916, 'M', 4646), +(18824, 'Herbert', 1916, 'M', 4464), +(18825, 'Samuel', 1916, 'M', 4399), +(18826, 'Leonard', 1916, 'M', 4328), +(18827, 'Alfred', 1916, 'M', 4278), +(18828, 'Michael', 1916, 'M', 4210), +(18829, 'Elmer', 1916, 'M', 3936), +(18830, 'Andrew', 1916, 'M', 3723), +(18831, 'Leo', 1916, 'M', 3620), +(18832, 'Norman', 1916, 'M', 3609), +(18833, 'Bernard', 1916, 'M', 3476), +(18834, 'Peter', 1916, 'M', 3370), +(18835, 'Russell', 1916, 'M', 3330), +(18836, 'Frederick', 1916, 'M', 3325), +(18837, 'Edwin', 1916, 'M', 3300), +(18838, 'Chester', 1916, 'M', 3212), +(18839, 'Daniel', 1916, 'M', 3151), +(18840, 'Herman', 1916, 'M', 3043), +(18841, 'Melvin', 1916, 'M', 2984), +(18842, 'Lloyd', 1916, 'M', 2926), +(18843, 'Lester', 1916, 'M', 2907), +(18844, 'Floyd', 1916, 'M', 2783), +(18845, 'Clifford', 1916, 'M', 2767), +(18846, 'Clyde', 1916, 'M', 2707), +(18847, 'Leroy', 1916, 'M', 2699), +(18848, 'Woodrow', 1916, 'M', 2668), +(18849, 'Theodore', 1916, 'M', 2642), +(18850, 'Marvin', 1916, 'M', 2529), +(18851, 'Vincent', 1916, 'M', 2500), +(18852, 'Charlie', 1916, 'M', 2415), +(18853, 'Willard', 1916, 'M', 2413), +(18854, 'Philip', 1916, 'M', 2410), +(18855, 'Lewis', 1916, 'M', 2374), +(18856, 'Milton', 1916, 'M', 2345), +(18857, 'Ray', 1916, 'M', 2334), +(18858, 'Sam', 1916, 'M', 2313), +(18859, 'Vernon', 1916, 'M', 2288), +(18860, 'Gerald', 1916, 'M', 2261), +(18861, 'Jesse', 1916, 'M', 2230), +(18862, 'Victor', 1916, 'M', 2215), +(18863, 'Benjamin', 1916, 'M', 2186), +(18864, 'Cecil', 1916, 'M', 2181), +(18865, 'Martin', 1916, 'M', 2122), +(18866, 'Alvin', 1916, 'M', 2093), +(18867, 'Lee', 1916, 'M', 2016), +(18868, 'Glenn', 1916, 'M', 1970), +(18869, 'Leon', 1916, 'M', 1954), +(18870, 'Oscar', 1916, 'M', 1916), +(18871, 'Stephen', 1916, 'M', 1877), +(18872, 'Edgar', 1916, 'M', 1874), +(18873, 'Arnold', 1916, 'M', 1859), +(18874, 'Gordon', 1916, 'M', 1792), +(18875, 'Everett', 1916, 'M', 1764), +(18876, 'Harvey', 1916, 'M', 1763), +(18877, 'Claude', 1916, 'M', 1733), +(18878, 'Wilbur', 1916, 'M', 1680), +(18879, 'Sidney', 1916, 'M', 1659), +(18880, 'Hugh', 1916, 'M', 1619), +(18881, 'Morris', 1916, 'M', 1618), +(18882, 'Wayne', 1916, 'M', 1587), +(18883, 'Alexander', 1916, 'M', 1584), +(18884, 'Maurice', 1916, 'M', 1584), +(18885, 'Allen', 1916, 'M', 1573), +(18886, 'Warren', 1916, 'M', 1548), +(18887, 'Homer', 1916, 'M', 1506), +(18888, 'Virgil', 1916, 'M', 1496), +(18889, 'Max', 1916, 'M', 1493), +(18890, 'Gilbert', 1916, 'M', 1441), +(18891, 'Nicholas', 1916, 'M', 1417), +(18892, 'Steve', 1916, 'M', 1399), +(18893, 'Irving', 1916, 'M', 1373), +(18894, 'Marion', 1916, 'M', 1357), +(18895, 'Julius', 1916, 'M', 1355), +(18896, 'Leslie', 1916, 'M', 1355), +(18897, 'Hubert', 1916, 'M', 1351), +(18898, 'Eddie', 1916, 'M', 1311), +(18899, 'Johnnie', 1916, 'M', 1306), +(18900, 'Luther', 1916, 'M', 1287), +(18901, 'Jessie', 1916, 'M', 1269), +(18902, 'Roland', 1916, 'M', 1201), +(18903, 'Ben', 1916, 'M', 1191), +(18904, 'Curtis', 1916, 'M', 1175), +(18905, 'Dale', 1916, 'M', 1161), +(18906, 'Glen', 1916, 'M', 1156), +(18907, 'Jacob', 1916, 'M', 1132), +(18908, 'Wallace', 1916, 'M', 1126), +(18909, 'Mike', 1916, 'M', 1114), +(18910, 'Horace', 1916, 'M', 1106), +(18911, 'Oliver', 1916, 'M', 1103), +(18912, 'Alex', 1916, 'M', 1094), +(18913, 'Roger', 1916, 'M', 1087), +(18914, 'Franklin', 1916, 'M', 1073), +(18915, 'Orville', 1916, 'M', 1063), +(18916, 'Tony', 1916, 'M', 1054), +(18917, 'Manuel', 1916, 'M', 1049), +(18918, 'Edmund', 1916, 'M', 1032), +(18919, 'Wesley', 1916, 'M', 1026), +(18920, 'Willis', 1916, 'M', 990), +(18921, 'Rudolph', 1916, 'M', 988), +(18922, 'Jerome', 1916, 'M', 985), +(18923, 'Emil', 1916, 'M', 970), +(18924, 'Tom', 1916, 'M', 970), +(18925, 'Wilson', 1916, 'M', 911), +(18926, 'Otis', 1916, 'M', 908), +(18927, 'Nathan', 1916, 'M', 904), +(18928, 'Guy', 1916, 'M', 903), +(18929, 'Jerry', 1916, 'M', 885), +(18930, 'Angelo', 1916, 'M', 865), +(18931, 'Bill', 1916, 'M', 854), +(18932, 'Matthew', 1916, 'M', 825), +(18933, 'Ira', 1916, 'M', 820), +(18934, 'Salvatore', 1916, 'M', 819), +(18935, 'Douglas', 1916, 'M', 816), +(18936, 'Archie', 1916, 'M', 806), +(18937, 'Lyle', 1916, 'M', 805), +(18938, 'Patrick', 1916, 'M', 802), +(18939, 'Earnest', 1916, 'M', 780), +(18940, 'Clifton', 1916, 'M', 771), +(18941, 'Calvin', 1916, 'M', 766), +(18942, 'Abraham', 1916, 'M', 753), +(18943, 'Clayton', 1916, 'M', 753), +(18944, 'Don', 1916, 'M', 744), +(18945, 'Delbert', 1916, 'M', 743), +(18946, 'Bruce', 1916, 'M', 739), +(18947, 'Marshall', 1916, 'M', 739), +(18948, 'Irvin', 1916, 'M', 724), +(18949, 'Ivan', 1916, 'M', 723), +(18950, 'Phillip', 1916, 'M', 723), +(18951, 'Ronald', 1916, 'M', 723), +(18952, 'Wilfred', 1916, 'M', 723), +(18953, 'Bennie', 1916, 'M', 720), +(18954, 'Otto', 1916, 'M', 719), +(18955, 'Wilbert', 1916, 'M', 716), +(18956, 'Sylvester', 1916, 'M', 715), +(18957, 'Ervin', 1916, 'M', 692), +(18958, 'Felix', 1916, 'M', 691), +(18959, 'Jose', 1916, 'M', 686), +(18960, 'Karl', 1916, 'M', 685), +(18961, 'Jim', 1916, 'M', 684), +(18962, 'August', 1916, 'M', 676), +(18963, 'Jimmie', 1916, 'M', 667), +(18964, 'Clinton', 1916, 'M', 662), +(18965, 'Elbert', 1916, 'M', 662), +(18966, 'Nick', 1916, 'M', 656), +(18967, 'Forrest', 1916, 'M', 652), +(18968, 'Jay', 1916, 'M', 640), +(18969, 'Adolph', 1916, 'M', 633), +(18970, 'Isaac', 1916, 'M', 629), +(18971, 'Julian', 1916, 'M', 626), +(18972, 'Nelson', 1916, 'M', 619), +(18973, 'Adam', 1916, 'M', 609), +(18974, 'Alton', 1916, 'M', 605), +(18975, 'Merle', 1916, 'M', 604), +(18976, 'Dan', 1916, 'M', 594), +(18977, 'Grover', 1916, 'M', 590), +(18978, 'Nathaniel', 1916, 'M', 590), +(18979, 'Aaron', 1916, 'M', 583), +(18980, 'Pete', 1916, 'M', 582), +(18981, 'Rufus', 1916, 'M', 577), +(18982, 'Leland', 1916, 'M', 571), +(18983, 'Mark', 1916, 'M', 571), +(18984, 'Ellis', 1916, 'M', 570), +(18985, 'Dominick', 1916, 'M', 568), +(18986, 'Lonnie', 1916, 'M', 567), +(18987, 'Bert', 1916, 'M', 556), +(18988, 'Antonio', 1916, 'M', 551), +(18989, 'Carroll', 1916, 'M', 541), +(18990, 'Dennis', 1916, 'M', 532), +(18991, 'Dominic', 1916, 'M', 530), +(18992, 'Lowell', 1916, 'M', 529), +(18993, 'Elwood', 1916, 'M', 526), +(18994, 'Grady', 1916, 'M', 526), +(18995, 'Percy', 1916, 'M', 523), +(18996, 'Gene', 1916, 'M', 517), +(18997, 'Wendell', 1916, 'M', 515), +(18998, 'Myron', 1916, 'M', 514), +(18999, 'Dean', 1916, 'M', 504), +(19000, 'Emmett', 1916, 'M', 500), +(19001, 'Roscoe', 1916, 'M', 494), +(19002, 'Johnie', 1916, 'M', 493), +(19003, 'Owen', 1916, 'M', 489), +(19004, 'Jess', 1916, 'M', 485), +(19005, 'Mack', 1916, 'M', 485), +(19006, 'Erwin', 1916, 'M', 484), +(19007, 'Amos', 1916, 'M', 478), +(19008, 'Keith', 1916, 'M', 476), +(19009, 'Malcolm', 1916, 'M', 476), +(19010, 'Byron', 1916, 'M', 471), +(19011, 'Laurence', 1916, 'M', 470), +(19012, 'Loyd', 1916, 'M', 467), +(19013, 'Sherman', 1916, 'M', 463), +(19014, 'Charley', 1916, 'M', 461), +(19015, 'Rex', 1916, 'M', 461), +(19016, 'Johnny', 1916, 'M', 458), +(19017, 'Ross', 1916, 'M', 457), +(19018, 'Harley', 1916, 'M', 454), +(19019, 'Ted', 1916, 'M', 453), +(19020, 'Allan', 1916, 'M', 446), +(19021, 'Troy', 1916, 'M', 442), +(19022, 'Austin', 1916, 'M', 441), +(19023, 'Reuben', 1916, 'M', 441), +(19024, 'Perry', 1916, 'M', 439), +(19025, 'Fredrick', 1916, 'M', 437), +(19026, 'Norbert', 1916, 'M', 436), +(19027, 'Loren', 1916, 'M', 434), +(19028, 'Murray', 1916, 'M', 434), +(19029, 'Aubrey', 1916, 'M', 429), +(19030, 'Eldon', 1916, 'M', 424), +(19031, 'Preston', 1916, 'M', 418), +(19032, 'Cornelius', 1916, 'M', 402), +(19033, 'Millard', 1916, 'M', 398), +(19034, 'Dwight', 1916, 'M', 397), +(19035, 'Carlton', 1916, 'M', 395), +(19036, 'Boyd', 1916, 'M', 384), +(19037, 'Hyman', 1916, 'M', 379), +(19038, 'Mario', 1916, 'M', 379), +(19039, 'Neil', 1916, 'M', 375), +(19040, 'Seymour', 1916, 'M', 375), +(19041, 'Tommie', 1916, 'M', 372), +(19042, 'Steven', 1916, 'M', 368), +(19043, 'Edmond', 1916, 'M', 365), +(19044, 'Garland', 1916, 'M', 365), +(19045, 'Elmo', 1916, 'M', 363), +(19046, 'Jake', 1916, 'M', 362), +(19047, 'Will', 1916, 'M', 362), +(19048, 'Billy', 1916, 'M', 361), +(19049, 'Gerard', 1916, 'M', 359), +(19050, 'Burton', 1916, 'M', 358), +(19051, 'Jasper', 1916, 'M', 358), +(19052, 'Dewey', 1916, 'M', 357), +(19053, 'Louie', 1916, 'M', 354), +(19054, 'Bruno', 1916, 'M', 353), +(19055, 'Conrad', 1916, 'M', 353), +(19056, 'Simon', 1916, 'M', 352), +(19057, 'Grant', 1916, 'M', 351), +(19058, 'Mitchell', 1916, 'M', 346), +(19059, 'Wilmer', 1916, 'M', 343), +(19060, 'Freddie', 1916, 'M', 340), +(19061, 'Juan', 1916, 'M', 338), +(19062, 'Clark', 1916, 'M', 335), +(19063, 'Anton', 1916, 'M', 334), +(19064, 'Clement', 1916, 'M', 333), +(19065, 'Moses', 1916, 'M', 333), +(19066, 'Dave', 1916, 'M', 329), +(19067, 'Cyril', 1916, 'M', 328), +(19068, 'Roosevelt', 1916, 'M', 328), +(19069, 'Wade', 1916, 'M', 328), +(19070, 'Elton', 1916, 'M', 322), +(19071, 'Lynn', 1916, 'M', 320), +(19072, 'Morton', 1916, 'M', 320), +(19073, 'Cleo', 1916, 'M', 319), +(19074, 'Solomon', 1916, 'M', 317), +(19075, 'Thurman', 1916, 'M', 316), +(19076, 'Rocco', 1916, 'M', 315), +(19077, 'Claud', 1916, 'M', 308), +(19078, 'Alphonse', 1916, 'M', 306), +(19079, 'Emanuel', 1916, 'M', 306), +(19080, 'Bob', 1916, 'M', 304), +(19081, 'Clair', 1916, 'M', 301), +(19082, 'Larry', 1916, 'M', 301), +(19083, 'Forest', 1916, 'M', 300), +(19084, 'Monroe', 1916, 'M', 300), +(19085, 'Harrison', 1916, 'M', 298), +(19086, 'Ollie', 1916, 'M', 295), +(19087, 'Booker', 1916, 'M', 294), +(19088, 'Harlan', 1916, 'M', 294), +(19089, 'Andy', 1916, 'M', 291), +(19090, 'Maynard', 1916, 'M', 291), +(19091, 'Gus', 1916, 'M', 288), +(19092, 'Neal', 1916, 'M', 283), +(19093, 'Doyle', 1916, 'M', 282), +(19094, 'Joel', 1916, 'M', 282), +(19095, 'Orval', 1916, 'M', 280), +(19096, 'Marcus', 1916, 'M', 278), +(19097, 'Carmen', 1916, 'M', 276), +(19098, 'Earle', 1916, 'M', 276), +(19099, 'Alonzo', 1916, 'M', 274), +(19100, 'Ed', 1916, 'M', 274), +(19101, 'Russel', 1916, 'M', 274), +(19102, 'Isadore', 1916, 'M', 273), +(19103, 'Eli', 1916, 'M', 271), +(19104, 'Jesus', 1916, 'M', 271), +(19105, 'Merrill', 1916, 'M', 270), +(19106, 'Thaddeus', 1916, 'M', 269), +(19107, 'Emery', 1916, 'M', 266), +(19108, 'Barney', 1916, 'M', 265), +(19109, 'Elvin', 1916, 'M', 265), +(19110, 'Roman', 1916, 'M', 265), +(19111, 'Kermit', 1916, 'M', 263), +(19112, 'Randolph', 1916, 'M', 263), +(19113, 'Abe', 1916, 'M', 261), +(19114, 'Alva', 1916, 'M', 260), +(19115, 'Christopher', 1916, 'M', 260), +(19116, 'Stuart', 1916, 'M', 259), +(19117, 'Patsy', 1916, 'M', 256), +(19118, 'Dallas', 1916, 'M', 255), +(19119, 'Sol', 1916, 'M', 254), +(19120, 'Cleveland', 1916, 'M', 252), +(19121, 'Ellsworth', 1916, 'M', 252), +(19122, 'Alan', 1916, 'M', 251), +(19123, 'Ferdinand', 1916, 'M', 246), +(19124, 'Timothy', 1916, 'M', 246), +(19125, 'Basil', 1916, 'M', 244), +(19126, 'Buford', 1916, 'M', 244), +(19127, 'Irwin', 1916, 'M', 244), +(19128, 'Laverne', 1916, 'M', 243), +(19129, 'Pasquale', 1916, 'M', 243), +(19130, 'Reginald', 1916, 'M', 243), +(19131, 'Adrian', 1916, 'M', 242), +(19132, 'Armand', 1916, 'M', 240), +(19133, 'Odell', 1916, 'M', 237), +(19134, 'Rodney', 1916, 'M', 237), +(19135, 'Ruben', 1916, 'M', 237), +(19136, 'Carlos', 1916, 'M', 234), +(19137, 'Elijah', 1916, 'M', 232), +(19138, 'Herschel', 1916, 'M', 231), +(19139, 'Emory', 1916, 'M', 229), +(19140, 'Noah', 1916, 'M', 229), +(19141, 'Coy', 1916, 'M', 228), +(19142, 'Ned', 1916, 'M', 227), +(19143, 'Ramon', 1916, 'M', 227), +(19144, 'Wilburn', 1916, 'M', 226), +(19145, 'Emerson', 1916, 'M', 225), +(19146, 'Stewart', 1916, 'M', 225), +(19147, 'Wilford', 1916, 'M', 225), +(19148, 'Delmar', 1916, 'M', 223), +(19149, 'Darrell', 1916, 'M', 222), +(19150, 'Saul', 1916, 'M', 222), +(19151, 'Vito', 1916, 'M', 222), +(19152, 'Dick', 1916, 'M', 221), +(19153, 'Merlin', 1916, 'M', 220), +(19154, 'Buster', 1916, 'M', 219), +(19155, 'Truman', 1916, 'M', 219), +(19156, 'Billie', 1916, 'M', 217), +(19157, 'Mathew', 1916, 'M', 217), +(19158, 'Miles', 1916, 'M', 217), +(19159, 'Duane', 1916, 'M', 215), +(19160, 'Sanford', 1916, 'M', 215), +(19161, 'Levi', 1916, 'M', 214), +(19162, 'Alfonso', 1916, 'M', 212), +(19163, 'Weldon', 1916, 'M', 212), +(19164, 'Tommy', 1916, 'M', 211), +(19165, 'Ward', 1916, 'M', 211), +(19166, 'Meyer', 1916, 'M', 210), +(19167, 'Vern', 1916, 'M', 210), +(19168, 'Hollis', 1916, 'M', 207), +(19169, 'Lionel', 1916, 'M', 205), +(19170, 'Foster', 1916, 'M', 204), +(19171, 'Sydney', 1916, 'M', 204), +(19172, 'Harris', 1916, 'M', 203), +(19173, 'Norris', 1916, 'M', 203), +(19174, 'Sterling', 1916, 'M', 203), +(19175, 'Frederic', 1916, 'M', 202), +(19176, 'Hugo', 1916, 'M', 200), +(19177, 'Pedro', 1916, 'M', 200), +(19178, 'Aloysius', 1916, 'M', 199), +(19179, 'Junior', 1916, 'M', 199), +(19180, 'Benny', 1916, 'M', 196), +(19181, 'Milford', 1916, 'M', 196), +(19182, 'Winston', 1916, 'M', 194), +(19183, 'Milo', 1916, 'M', 193), +(19184, 'Newton', 1916, 'M', 192), +(19185, 'Winfred', 1916, 'M', 192), +(19186, 'Lyman', 1916, 'M', 190), +(19187, 'Odis', 1916, 'M', 190), +(19188, 'Silas', 1916, 'M', 190), +(19189, 'Travis', 1916, 'M', 189), +(19190, 'Carmine', 1916, 'M', 186), +(19191, 'Jeff', 1916, 'M', 186), +(19192, 'Hiram', 1916, 'M', 185), +(19193, 'Van', 1916, 'M', 185), +(19194, 'Dudley', 1916, 'M', 184), +(19195, 'Francisco', 1916, 'M', 183), +(19196, 'Luke', 1916, 'M', 183), +(19197, 'Evan', 1916, 'M', 182), +(19198, 'Casimir', 1916, 'M', 181), +(19199, 'Micheal', 1916, 'M', 181), +(19200, 'Noel', 1916, 'M', 181), +(19201, 'Rolland', 1916, 'M', 180), +(19202, 'Ambrose', 1916, 'M', 179), +(19203, 'Isidore', 1916, 'M', 179), +(19204, 'Olen', 1916, 'M', 178), +(19205, 'Jackson', 1916, 'M', 177), +(19206, 'Pat', 1916, 'M', 177), +(19207, 'Vance', 1916, 'M', 177), +(19208, 'Wiley', 1916, 'M', 177), +(19209, 'Lorenzo', 1916, 'M', 176), +(19210, 'Omer', 1916, 'M', 176), +(19211, 'Alden', 1916, 'M', 174), +(19212, 'Gabriel', 1916, 'M', 174), +(19213, 'Royal', 1916, 'M', 174), +(19214, 'Freeman', 1916, 'M', 173), +(19215, 'Jimmy', 1916, 'M', 172), +(19216, 'Mervin', 1916, 'M', 172), +(19217, 'Cletus', 1916, 'M', 171), +(19218, 'Spencer', 1916, 'M', 169), +(19219, 'Lamar', 1916, 'M', 167), +(19220, 'Riley', 1916, 'M', 166), +(19221, 'Mary', 1916, 'M', 164), +(19222, 'Olin', 1916, 'M', 164), +(19223, 'Elias', 1916, 'M', 162), +(19224, 'Jean', 1916, 'M', 162), +(19225, 'Dorsey', 1916, 'M', 160), +(19226, 'Ulysses', 1916, 'M', 160), +(19227, 'Elliott', 1916, 'M', 158), +(19228, 'Houston', 1916, 'M', 158), +(19229, 'Noble', 1916, 'M', 158), +(19230, 'Randall', 1916, 'M', 156), +(19231, 'Bertram', 1916, 'M', 155), +(19232, 'Eric', 1916, 'M', 155), +(19233, 'Marlin', 1916, 'M', 155), +(19234, 'Morgan', 1916, 'M', 155), +(19235, 'Shirley', 1916, 'M', 155), +(19236, 'Christian', 1916, 'M', 154), +(19237, 'Sammie', 1916, 'M', 154), +(19238, 'Waldo', 1916, 'M', 154), +(19239, 'Bud', 1916, 'M', 153), +(19240, 'Ezra', 1916, 'M', 153), +(19241, 'Fay', 1916, 'M', 153), +(19242, 'Hershel', 1916, 'M', 153), +(19243, 'Ora', 1916, 'M', 153), +(19244, 'Wilton', 1916, 'M', 153), +(19245, 'Arlie', 1916, 'M', 152), +(19246, 'Gail', 1916, 'M', 151), +(19247, 'Lucius', 1916, 'M', 151), +(19248, 'Burl', 1916, 'M', 150), +(19249, 'Darwin', 1916, 'M', 150), +(19250, 'Nolan', 1916, 'M', 150), +(19251, 'Sigmund', 1916, 'M', 150), +(19252, 'Fletcher', 1916, 'M', 149), +(19253, 'Linwood', 1916, 'M', 149), +(19254, 'Augustus', 1916, 'M', 148), +(19255, 'Chris', 1916, 'M', 148), +(19256, 'Lucien', 1916, 'M', 147), +(19257, 'Maxwell', 1916, 'M', 147), +(19258, 'Scott', 1916, 'M', 147), +(19259, 'Benedict', 1916, 'M', 146), +(19260, 'Teddy', 1916, 'M', 146), +(19261, 'Verne', 1916, 'M', 144), +(19262, 'Everette', 1916, 'M', 143), +(19263, 'Gregory', 1916, 'M', 143), +(19264, 'Lavern', 1916, 'M', 143), +(19265, 'Dewitt', 1916, 'M', 140), +(19266, 'Junius', 1916, 'M', 139), +(19267, 'Mose', 1916, 'M', 138), +(19268, 'Delmer', 1916, 'M', 137), +(19269, 'Emile', 1916, 'M', 136), +(19270, 'Mason', 1916, 'M', 136), +(19271, 'Palmer', 1916, 'M', 136), +(19272, 'Anderson', 1916, 'M', 135), +(19273, 'Lemuel', 1916, 'M', 135), +(19274, 'Sheldon', 1916, 'M', 135), +(19275, 'Columbus', 1916, 'M', 134), +(19276, 'Rubin', 1916, 'M', 134), +(19277, 'Sebastian', 1916, 'M', 134), +(19278, 'Clay', 1916, 'M', 133), +(19279, 'Hal', 1916, 'M', 133), +(19280, 'Salvador', 1916, 'M', 133), +(19281, 'Gustave', 1916, 'M', 132), +(19282, 'Lincoln', 1916, 'M', 131), +(19283, 'Major', 1916, 'M', 130), +(19284, 'Porter', 1916, 'M', 130), +(19285, 'Albin', 1916, 'M', 128), +(19286, 'Antone', 1916, 'M', 127), +(19287, 'Carlo', 1916, 'M', 127), +(19288, 'Jules', 1916, 'M', 127), +(19289, 'Wilber', 1916, 'M', 125), +(19290, 'Winfield', 1916, 'M', 125), +(19291, 'Cyrus', 1916, 'M', 124), +(19292, 'Valentine', 1916, 'M', 124), +(19293, 'Alfredo', 1916, 'M', 123), +(19294, 'Dock', 1916, 'M', 123), +(19295, 'Elden', 1916, 'M', 123), +(19296, 'Hoyt', 1916, 'M', 123), +(19297, 'Justin', 1916, 'M', 123), +(19298, 'Royce', 1916, 'M', 123), +(19299, 'Al', 1916, 'M', 122), +(19300, 'Vaughn', 1916, 'M', 122), +(19301, 'Dalton', 1916, 'M', 121), +(19302, 'Lucian', 1916, 'M', 121), +(19303, 'Orlando', 1916, 'M', 121), +(19304, 'Coleman', 1916, 'M', 120), +(19305, 'Harmon', 1916, 'M', 120), +(19306, 'Israel', 1916, 'M', 120), +(19307, 'Blaine', 1916, 'M', 119), +(19308, 'Durward', 1916, 'M', 118), +(19309, 'Lenard', 1916, 'M', 118), +(19310, 'Romeo', 1916, 'M', 118), +(19311, 'Theron', 1916, 'M', 118), +(19312, 'Denver', 1916, 'M', 117), +(19313, 'Merton', 1916, 'M', 117), +(19314, 'Oren', 1916, 'M', 117), +(19315, 'Raphael', 1916, 'M', 117), +(19316, 'Rene', 1916, 'M', 117), +(19317, 'Granville', 1916, 'M', 116), +(19318, 'Carrol', 1916, 'M', 115), +(19319, 'Davis', 1916, 'M', 115), +(19320, 'Harland', 1916, 'M', 115), +(19321, 'Domenic', 1916, 'M', 114), +(19322, 'Gale', 1916, 'M', 114), +(19323, 'Rosario', 1916, 'M', 114), +(19324, 'Carson', 1916, 'M', 113), +(19325, 'Aldo', 1916, 'M', 112), +(19326, 'Jewel', 1916, 'M', 111), +(19327, 'Lacy', 1916, 'M', 111), +(19328, 'Warner', 1916, 'M', 111), +(19329, 'Elroy', 1916, 'M', 110), +(19330, 'Isaiah', 1916, 'M', 110), +(19331, 'Graham', 1916, 'M', 109), +(19332, 'Jefferson', 1916, 'M', 109), +(19333, 'Jeremiah', 1916, 'M', 109), +(19334, 'Nickolas', 1916, 'M', 109), +(19335, 'Phil', 1916, 'M', 108), +(19336, 'Frances', 1916, 'M', 107), +(19337, 'Oswald', 1916, 'M', 107), +(19338, 'Rupert', 1916, 'M', 107), +(19339, 'Avery', 1916, 'M', 106), +(19340, 'Edd', 1916, 'M', 106), +(19341, 'Hobert', 1916, 'M', 106), +(19342, 'Casimer', 1916, 'M', 105), +(19343, 'Luis', 1916, 'M', 105), +(19344, 'Matt', 1916, 'M', 105), +(19345, 'Walton', 1916, 'M', 105), +(19346, 'Alois', 1916, 'M', 104), +(19347, 'Walker', 1916, 'M', 104), +(19348, 'Rudy', 1916, 'M', 103), +(19349, 'Elwin', 1916, 'M', 102), +(19350, 'Gaylord', 1916, 'M', 102), +(19351, 'Hilton', 1916, 'M', 102), +(19352, 'King', 1916, 'M', 102), +(19353, 'Ottis', 1916, 'M', 102), +(19354, 'Raleigh', 1916, 'M', 102), +(19355, 'Enoch', 1916, 'M', 101), +(19356, 'Ford', 1916, 'M', 101), +(19357, 'Jonathan', 1916, 'M', 101), +(19358, 'Taylor', 1916, 'M', 101), +(19359, 'Alphonso', 1916, 'M', 100), +(19360, 'Arvid', 1916, 'M', 100), +(19361, 'Orin', 1916, 'M', 100), +(19362, 'Reed', 1916, 'M', 100), +(19363, 'Shelby', 1916, 'M', 100), +(19364, 'Webster', 1916, 'M', 100), +(19365, 'Mary', 1917, 'F', 64280), +(19366, 'Helen', 1917, 'F', 34249), +(19367, 'Dorothy', 1917, 'F', 28855), +(19368, 'Margaret', 1917, 'F', 25560), +(19369, 'Ruth', 1917, 'F', 23567), +(19370, 'Mildred', 1917, 'F', 16257), +(19371, 'Anna', 1917, 'F', 15160), +(19372, 'Elizabeth', 1917, 'F', 15130), +(19373, 'Frances', 1917, 'F', 14363), +(19374, 'Virginia', 1917, 'F', 14261), +(19375, 'Evelyn', 1917, 'F', 12532), +(19376, 'Marie', 1917, 'F', 11813), +(19377, 'Alice', 1917, 'F', 10990), +(19378, 'Florence', 1917, 'F', 10538), +(19379, 'Lillian', 1917, 'F', 9843), +(19380, 'Rose', 1917, 'F', 9784), +(19381, 'Irene', 1917, 'F', 9165), +(19382, 'Catherine', 1917, 'F', 8689), +(19383, 'Louise', 1917, 'F', 8582), +(19384, 'Edna', 1917, 'F', 8421), +(19385, 'Josephine', 1917, 'F', 8326), +(19386, 'Martha', 1917, 'F', 8261), +(19387, 'Gladys', 1917, 'F', 8075), +(19388, 'Ethel', 1917, 'F', 7864), +(19389, 'Doris', 1917, 'F', 7819), +(19390, 'Eleanor', 1917, 'F', 7669), +(19391, 'Ruby', 1917, 'F', 7662), +(19392, 'Edith', 1917, 'F', 7533), +(19393, 'Lucille', 1917, 'F', 7528), +(19394, 'Grace', 1917, 'F', 7373), +(19395, 'Hazel', 1917, 'F', 7285), +(19396, 'Thelma', 1917, 'F', 7244), +(19397, 'Pauline', 1917, 'F', 6896), +(19398, 'Betty', 1917, 'F', 6639), +(19399, 'Annie', 1917, 'F', 6402), +(19400, 'Marjorie', 1917, 'F', 6399), +(19401, 'Gertrude', 1917, 'F', 6300), +(19402, 'Esther', 1917, 'F', 6281), +(19403, 'Beatrice', 1917, 'F', 5838), +(19404, 'Jean', 1917, 'F', 5692), +(19405, 'Clara', 1917, 'F', 5626), +(19406, 'Bernice', 1917, 'F', 5545), +(19407, 'Lois', 1917, 'F', 5485), +(19408, 'Ann', 1917, 'F', 5455), +(19409, 'Marion', 1917, 'F', 5371), +(19410, 'Emma', 1917, 'F', 5121), +(19411, 'Julia', 1917, 'F', 5078), +(19412, 'Agnes', 1917, 'F', 5067), +(19413, 'Katherine', 1917, 'F', 4956), +(19414, 'Elsie', 1917, 'F', 4938), +(19415, 'Bertha', 1917, 'F', 4880), +(19416, 'Sarah', 1917, 'F', 4768), +(19417, 'Anne', 1917, 'F', 4605), +(19418, 'Eva', 1917, 'F', 4286), +(19419, 'Jane', 1917, 'F', 4258), +(19420, 'Ida', 1917, 'F', 4247), +(19421, 'Pearl', 1917, 'F', 4232), +(19422, 'Myrtle', 1917, 'F', 4046), +(19423, 'Viola', 1917, 'F', 4040), +(19424, 'Kathryn', 1917, 'F', 3984), +(19425, 'Bessie', 1917, 'F', 3928), +(19426, 'Stella', 1917, 'F', 3872), +(19427, 'Rita', 1917, 'F', 3870), +(19428, 'Laura', 1917, 'F', 3808), +(19429, 'Nellie', 1917, 'F', 3808), +(19430, 'Vera', 1917, 'F', 3714), +(19431, 'Barbara', 1917, 'F', 3534), +(19432, 'Mabel', 1917, 'F', 3499), +(19433, 'Sylvia', 1917, 'F', 3469), +(19434, 'Jessie', 1917, 'F', 3465), +(19435, 'Alma', 1917, 'F', 3407), +(19436, 'Willie', 1917, 'F', 3380), +(19437, 'June', 1917, 'F', 3370), +(19438, 'Marian', 1917, 'F', 3267), +(19439, 'Minnie', 1917, 'F', 3262), +(19440, 'Charlotte', 1917, 'F', 3230), +(19441, 'Genevieve', 1917, 'F', 3192), +(19442, 'Marguerite', 1917, 'F', 3161), +(19443, 'Vivian', 1917, 'F', 3119), +(19444, 'Leona', 1917, 'F', 3115), +(19445, 'Jennie', 1917, 'F', 3109), +(19446, 'Wilma', 1917, 'F', 3071), +(19447, 'Ella', 1917, 'F', 3054), +(19448, 'Violet', 1917, 'F', 3026), +(19449, 'Lena', 1917, 'F', 3004), +(19450, 'Lillie', 1917, 'F', 2930), +(19451, 'Lucy', 1917, 'F', 2929), +(19452, 'Juanita', 1917, 'F', 2928), +(19453, 'Geraldine', 1917, 'F', 2897), +(19454, 'Ellen', 1917, 'F', 2855), +(19455, 'Blanche', 1917, 'F', 2836), +(19456, 'Phyllis', 1917, 'F', 2695), +(19457, 'Maxine', 1917, 'F', 2647), +(19458, 'Mattie', 1917, 'F', 2572), +(19459, 'Opal', 1917, 'F', 2541), +(19460, 'Mae', 1917, 'F', 2507), +(19461, 'Theresa', 1917, 'F', 2490), +(19462, 'Nancy', 1917, 'F', 2411), +(19463, 'Velma', 1917, 'F', 2411), +(19464, 'Sophie', 1917, 'F', 2382), +(19465, 'Kathleen', 1917, 'F', 2358), +(19466, 'Beulah', 1917, 'F', 2232), +(19467, 'Emily', 1917, 'F', 2220), +(19468, 'Harriet', 1917, 'F', 2203), +(19469, 'Georgia', 1917, 'F', 2163), +(19470, 'Eileen', 1917, 'F', 2147), +(19471, 'Sara', 1917, 'F', 2147), +(19472, 'Norma', 1917, 'F', 2124), +(19473, 'Carrie', 1917, 'F', 2073), +(19474, 'Inez', 1917, 'F', 2050), +(19475, 'Eunice', 1917, 'F', 2036), +(19476, 'Hilda', 1917, 'F', 2006), +(19477, 'Geneva', 1917, 'F', 1997), +(19478, 'Loretta', 1917, 'F', 1970), +(19479, 'Fannie', 1917, 'F', 1961), +(19480, 'Lorraine', 1917, 'F', 1961), +(19481, 'Audrey', 1917, 'F', 1907), +(19482, 'Hattie', 1917, 'F', 1858), +(19483, 'Ada', 1917, 'F', 1853), +(19484, 'Christine', 1917, 'F', 1843), +(19485, 'Rosa', 1917, 'F', 1828), +(19486, 'Alberta', 1917, 'F', 1818), +(19487, 'Shirley', 1917, 'F', 1800), +(19488, 'Verna', 1917, 'F', 1799), +(19489, 'Dora', 1917, 'F', 1740), +(19490, 'Cora', 1917, 'F', 1737), +(19491, 'Madeline', 1917, 'F', 1728), +(19492, 'Muriel', 1917, 'F', 1714), +(19493, 'Estelle', 1917, 'F', 1704), +(19494, 'Mamie', 1917, 'F', 1689), +(19495, 'Olga', 1917, 'F', 1655), +(19496, 'Jeanette', 1917, 'F', 1638), +(19497, 'Naomi', 1917, 'F', 1619), +(19498, 'Miriam', 1917, 'F', 1614), +(19499, 'Lula', 1917, 'F', 1608), +(19500, 'Janet', 1917, 'F', 1585), +(19501, 'Anita', 1917, 'F', 1574), +(19502, 'Olive', 1917, 'F', 1566), +(19503, 'Dolores', 1917, 'F', 1562), +(19504, 'Wanda', 1917, 'F', 1545), +(19505, 'Winifred', 1917, 'F', 1526), +(19506, 'Lucile', 1917, 'F', 1516), +(19507, 'Lola', 1917, 'F', 1493), +(19508, 'Mable', 1917, 'F', 1463), +(19509, 'Flora', 1917, 'F', 1450), +(19510, 'Maria', 1917, 'F', 1441), +(19511, 'Patricia', 1917, 'F', 1441), +(19512, 'Erma', 1917, 'F', 1437), +(19513, 'Roberta', 1917, 'F', 1426), +(19514, 'Daisy', 1917, 'F', 1417), +(19515, 'Sadie', 1917, 'F', 1404), +(19516, 'Caroline', 1917, 'F', 1368), +(19517, 'Lottie', 1917, 'F', 1362), +(19518, 'Nora', 1917, 'F', 1360), +(19519, 'Henrietta', 1917, 'F', 1350), +(19520, 'Irma', 1917, 'F', 1340), +(19521, 'Rachel', 1917, 'F', 1339), +(19522, 'Victoria', 1917, 'F', 1333), +(19523, 'Susie', 1917, 'F', 1329), +(19524, 'Elaine', 1917, 'F', 1281), +(19525, 'Maggie', 1917, 'F', 1268), +(19526, 'Fern', 1917, 'F', 1261), +(19527, 'Adeline', 1917, 'F', 1235), +(19528, 'Carolyn', 1917, 'F', 1224), +(19529, 'Rebecca', 1917, 'F', 1215), +(19530, 'Jeanne', 1917, 'F', 1212), +(19531, 'Arlene', 1917, 'F', 1208), +(19532, 'Della', 1917, 'F', 1192), +(19533, 'Lydia', 1917, 'F', 1180), +(19534, 'Antoinette', 1917, 'F', 1177), +(19535, 'Bonnie', 1917, 'F', 1177), +(19536, 'Eula', 1917, 'F', 1170), +(19537, 'Amelia', 1917, 'F', 1160), +(19538, 'Nina', 1917, 'F', 1154), +(19539, 'Marcella', 1917, 'F', 1133), +(19540, 'Rosemary', 1917, 'F', 1124), +(19541, 'Jeannette', 1917, 'F', 1113), +(19542, 'Nettie', 1917, 'F', 1106), +(19543, 'Rosie', 1917, 'F', 1099), +(19544, 'Dorothea', 1917, 'F', 1076), +(19545, 'Lorene', 1917, 'F', 1062), +(19546, 'Joan', 1917, 'F', 1048), +(19547, 'Veronica', 1917, 'F', 1038), +(19548, 'Sally', 1917, 'F', 1029), +(19549, 'Joyce', 1917, 'F', 1017), +(19550, 'Regina', 1917, 'F', 1016), +(19551, 'Goldie', 1917, 'F', 1012), +(19552, 'Freda', 1917, 'F', 1010), +(19553, 'Cleo', 1917, 'F', 1009), +(19554, 'Isabelle', 1917, 'F', 982), +(19555, 'Eloise', 1917, 'F', 964), +(19556, 'Adele', 1917, 'F', 960), +(19557, 'Margie', 1917, 'F', 951), +(19558, 'Essie', 1917, 'F', 945), +(19559, 'May', 1917, 'F', 945), +(19560, 'Angeline', 1917, 'F', 941), +(19561, 'Faye', 1917, 'F', 931), +(19562, 'Isabel', 1917, 'F', 931), +(19563, 'Katie', 1917, 'F', 927), +(19564, 'Claire', 1917, 'F', 926), +(19565, 'Cecelia', 1917, 'F', 919), +(19566, 'Ollie', 1917, 'F', 911), +(19567, 'Effie', 1917, 'F', 891), +(19568, 'Ora', 1917, 'F', 887), +(19569, 'Angelina', 1917, 'F', 886), +(19570, 'Iva', 1917, 'F', 855), +(19571, 'Constance', 1917, 'F', 845), +(19572, 'Luella', 1917, 'F', 842), +(19573, 'Celia', 1917, 'F', 839), +(19574, 'Susan', 1917, 'F', 837), +(19575, 'Addie', 1917, 'F', 836), +(19576, 'Lela', 1917, 'F', 828), +(19577, 'Rosalie', 1917, 'F', 809), +(19578, 'Sallie', 1917, 'F', 807), +(19579, 'Carol', 1917, 'F', 798), +(19580, 'Selma', 1917, 'F', 786), +(19581, 'Alta', 1917, 'F', 783), +(19582, 'Sue', 1917, 'F', 778), +(19583, 'Annette', 1917, 'F', 775), +(19584, 'Frieda', 1917, 'F', 766), +(19585, 'Nell', 1917, 'F', 766), +(19586, 'Laverne', 1917, 'F', 762), +(19587, 'Elva', 1917, 'F', 760), +(19588, 'Etta', 1917, 'F', 750), +(19589, 'Jewell', 1917, 'F', 746), +(19590, 'Angela', 1917, 'F', 742), +(19591, 'Ernestine', 1917, 'F', 742), +(19592, 'Maude', 1917, 'F', 728), +(19593, 'Ola', 1917, 'F', 723), +(19594, 'Helene', 1917, 'F', 721), +(19595, 'Eleanore', 1917, 'F', 708), +(19596, 'Leola', 1917, 'F', 708), +(19597, 'Cecilia', 1917, 'F', 704), +(19598, 'Melba', 1917, 'F', 701), +(19599, 'Sophia', 1917, 'F', 698), +(19600, 'Johnnie', 1917, 'F', 695), +(19601, 'Ina', 1917, 'F', 691), +(19602, 'Fay', 1917, 'F', 689), +(19603, 'Matilda', 1917, 'F', 685), +(19604, 'Lila', 1917, 'F', 678), +(19605, 'Teresa', 1917, 'F', 673), +(19606, 'Mollie', 1917, 'F', 672), +(19607, 'Donna', 1917, 'F', 652), +(19608, 'Lizzie', 1917, 'F', 646), +(19609, 'Jewel', 1917, 'F', 642), +(19610, 'Janie', 1917, 'F', 634), +(19611, 'Beverly', 1917, 'F', 630), +(19612, 'Francis', 1917, 'F', 627), +(19613, 'Billie', 1917, 'F', 618), +(19614, 'Reba', 1917, 'F', 618), +(19615, 'Iris', 1917, 'F', 617), +(19616, 'Estella', 1917, 'F', 616), +(19617, 'Amy', 1917, 'F', 610), +(19618, 'Nannie', 1917, 'F', 596), +(19619, 'Elvira', 1917, 'F', 589), +(19620, 'Elma', 1917, 'F', 580), +(19621, 'Peggy', 1917, 'F', 580), +(19622, 'Gwendolyn', 1917, 'F', 577), +(19623, 'Flossie', 1917, 'F', 574), +(19624, 'Millie', 1917, 'F', 574), +(19625, 'Elnora', 1917, 'F', 570), +(19626, 'Imogene', 1917, 'F', 564), +(19627, 'Edythe', 1917, 'F', 561), +(19628, 'Carmen', 1917, 'F', 559), +(19629, 'Elinor', 1917, 'F', 548), +(19630, 'Harriett', 1917, 'F', 542), +(19631, 'Hannah', 1917, 'F', 541), +(19632, 'Adelaide', 1917, 'F', 537), +(19633, 'Leah', 1917, 'F', 534), +(19634, 'Arline', 1917, 'F', 533), +(19635, 'Rena', 1917, 'F', 522), +(19636, 'Lenora', 1917, 'F', 516), +(19637, 'Winnie', 1917, 'F', 511), +(19638, 'Virgie', 1917, 'F', 509), +(19639, 'Annabelle', 1917, 'F', 500), +(19640, 'Eugenia', 1917, 'F', 494), +(19641, 'Ila', 1917, 'F', 494), +(19642, 'Clarice', 1917, 'F', 491), +(19643, 'Neva', 1917, 'F', 487), +(19644, 'Natalie', 1917, 'F', 484), +(19645, 'Carmela', 1917, 'F', 479), +(19646, 'Lee', 1917, 'F', 479), +(19647, 'Zelma', 1917, 'F', 477), +(19648, 'Cecile', 1917, 'F', 476), +(19649, 'Olivia', 1917, 'F', 476), +(19650, 'Myra', 1917, 'F', 465), +(19651, 'Tillie', 1917, 'F', 459), +(19652, 'Priscilla', 1917, 'F', 456), +(19653, 'Janice', 1917, 'F', 455), +(19654, 'Nadine', 1917, 'F', 453), +(19655, 'Bettie', 1917, 'F', 447), +(19656, 'Amanda', 1917, 'F', 445), +(19657, 'Letha', 1917, 'F', 442), +(19658, 'Helena', 1917, 'F', 440), +(19659, 'Gracie', 1917, 'F', 437), +(19660, 'Lorena', 1917, 'F', 436), +(19661, 'Gloria', 1917, 'F', 435), +(19662, 'Madge', 1917, 'F', 435), +(19663, 'Yvonne', 1917, 'F', 428), +(19664, 'Cornelia', 1917, 'F', 425), +(19665, 'Carmella', 1917, 'F', 424), +(19666, 'Berniece', 1917, 'F', 422), +(19667, 'Allie', 1917, 'F', 420), +(19668, 'Connie', 1917, 'F', 417), +(19669, 'Bernadine', 1917, 'F', 408), +(19670, 'Josie', 1917, 'F', 403), +(19671, 'Lora', 1917, 'F', 398), +(19672, 'Rosella', 1917, 'F', 398), +(19673, 'Stephanie', 1917, 'F', 394), +(19674, 'Delores', 1917, 'F', 393), +(19675, 'Tessie', 1917, 'F', 393), +(19676, 'Margery', 1917, 'F', 390), +(19677, 'Bette', 1917, 'F', 387), +(19678, 'Dollie', 1917, 'F', 386), +(19679, 'Alyce', 1917, 'F', 378), +(19680, 'Eliza', 1917, 'F', 377), +(19681, 'Avis', 1917, 'F', 371), +(19682, 'Frankie', 1917, 'F', 370), +(19683, 'Odessa', 1917, 'F', 370), +(19684, 'Lenore', 1917, 'F', 367), +(19685, 'Aileen', 1917, 'F', 365), +(19686, 'Loraine', 1917, 'F', 365), +(19687, 'Gussie', 1917, 'F', 364), +(19688, 'Rosetta', 1917, 'F', 362), +(19689, 'Christina', 1917, 'F', 361), +(19690, 'Concetta', 1917, 'F', 361), +(19691, 'Ione', 1917, 'F', 360), +(19692, 'Merle', 1917, 'F', 359), +(19693, 'Hester', 1917, 'F', 358), +(19694, 'Katharine', 1917, 'F', 357), +(19695, 'Callie', 1917, 'F', 356), +(19696, 'Johanna', 1917, 'F', 354), +(19697, 'Leila', 1917, 'F', 352), +(19698, 'Aline', 1917, 'F', 351), +(19699, 'Rhoda', 1917, 'F', 345), +(19700, 'Claudia', 1917, 'F', 342), +(19701, 'Corinne', 1917, 'F', 339), +(19702, 'Lou', 1917, 'F', 338), +(19703, 'Yolanda', 1917, 'F', 338), +(19704, 'Jimmie', 1917, 'F', 337), +(19705, 'Willa', 1917, 'F', 336), +(19706, 'Lessie', 1917, 'F', 334), +(19707, 'Theda', 1917, 'F', 334), +(19708, 'Elisabeth', 1917, 'F', 331), +(19709, 'Erna', 1917, 'F', 331), +(19710, 'Iona', 1917, 'F', 330), +(19711, 'Lily', 1917, 'F', 330), +(19712, 'Florine', 1917, 'F', 329), +(19713, 'Augusta', 1917, 'F', 325), +(19714, 'Dorthy', 1917, 'F', 322), +(19715, 'Kate', 1917, 'F', 322), +(19716, 'Belle', 1917, 'F', 314), +(19717, 'Leota', 1917, 'F', 314), +(19718, 'Maurine', 1917, 'F', 313), +(19719, 'Mona', 1917, 'F', 313), +(19720, 'Maudie', 1917, 'F', 310), +(19721, 'Molly', 1917, 'F', 310), +(19722, 'Nola', 1917, 'F', 307), +(19723, 'Iola', 1917, 'F', 303), +(19724, 'Paula', 1917, 'F', 303), +(19725, 'Wilda', 1917, 'F', 302), +(19726, 'Bertie', 1917, 'F', 301), +(19727, 'Beth', 1917, 'F', 298), +(19728, 'Lilly', 1917, 'F', 298), +(19729, 'Zella', 1917, 'F', 298), +(19730, 'Ramona', 1917, 'F', 296), +(19731, 'Hope', 1917, 'F', 295), +(19732, 'Alvina', 1917, 'F', 293), +(19733, 'Isabell', 1917, 'F', 293), +(19734, 'Linda', 1917, 'F', 291), +(19735, 'Philomena', 1917, 'F', 290), +(19736, 'Reva', 1917, 'F', 289), +(19737, 'Sybil', 1917, 'F', 288), +(19738, 'Dolly', 1917, 'F', 287), +(19739, 'Ophelia', 1917, 'F', 285), +(19740, 'Delia', 1917, 'F', 283), +(19741, 'Kay', 1917, 'F', 283), +(19742, 'Mayme', 1917, 'F', 282), +(19743, 'Pearlie', 1917, 'F', 282), +(19744, 'Harriette', 1917, 'F', 281), +(19745, 'Judith', 1917, 'F', 280), +(19746, 'Wilhelmina', 1917, 'F', 279), +(19747, 'Lelia', 1917, 'F', 273), +(19748, 'Bernadette', 1917, 'F', 269), +(19749, 'Polly', 1917, 'F', 267), +(19750, 'Madelyn', 1917, 'F', 266), +(19751, 'Nona', 1917, 'F', 266), +(19752, 'Althea', 1917, 'F', 265), +(19753, 'Roxie', 1917, 'F', 265), +(19754, 'Antonia', 1917, 'F', 264), +(19755, 'Catharine', 1917, 'F', 263), +(19756, 'Corine', 1917, 'F', 262), +(19757, 'Dessie', 1917, 'F', 256), +(19758, 'Joy', 1917, 'F', 256), +(19759, 'Dixie', 1917, 'F', 255), +(19760, 'Eddie', 1917, 'F', 254), +(19761, 'John', 1917, 'F', 253), +(19762, 'Mercedes', 1917, 'F', 253), +(19763, 'Monica', 1917, 'F', 252), +(19764, 'Elda', 1917, 'F', 250), +(19765, 'Glenna', 1917, 'F', 249), +(19766, 'Gretchen', 1917, 'F', 246), +(19767, 'Hallie', 1917, 'F', 245), +(19768, 'Verda', 1917, 'F', 245), +(19769, 'Georgie', 1917, 'F', 244), +(19770, 'Rubye', 1917, 'F', 244), +(19771, 'Cynthia', 1917, 'F', 240), +(19772, 'Zelda', 1917, 'F', 240), +(19773, 'Jacqueline', 1917, 'F', 238), +(19774, 'Pansy', 1917, 'F', 238), +(19775, 'Isabella', 1917, 'F', 237), +(19776, 'Marietta', 1917, 'F', 236), +(19777, 'Mavis', 1917, 'F', 236), +(19778, 'Birdie', 1917, 'F', 235), +(19779, 'Dovie', 1917, 'F', 235), +(19780, 'Bobbie', 1917, 'F', 232), +(19781, 'Garnet', 1917, 'F', 232), +(19782, 'Earline', 1917, 'F', 231), +(19783, 'Lura', 1917, 'F', 230), +(19784, 'Louella', 1917, 'F', 229), +(19785, 'Rae', 1917, 'F', 229), +(19786, 'Allene', 1917, 'F', 228), +(19787, 'Valeria', 1917, 'F', 228), +(19788, 'Albina', 1917, 'F', 227), +(19789, 'Leora', 1917, 'F', 227), +(19790, 'Phoebe', 1917, 'F', 227), +(19791, 'Marjory', 1917, 'F', 226), +(19792, 'Robbie', 1917, 'F', 224), +(19793, 'Rowena', 1917, 'F', 224), +(19794, 'Oma', 1917, 'F', 223), +(19795, 'Jannie', 1917, 'F', 220), +(19796, 'Melva', 1917, 'F', 220), +(19797, 'Tommie', 1917, 'F', 219), +(19798, 'Agatha', 1917, 'F', 217), +(19799, 'Beryl', 1917, 'F', 217), +(19800, 'Gail', 1917, 'F', 217), +(19801, 'Leone', 1917, 'F', 217), +(19802, 'Alene', 1917, 'F', 216), +(19803, 'Bella', 1917, 'F', 215), +(19804, 'Vesta', 1917, 'F', 213), +(19805, 'Lorna', 1917, 'F', 211), +(19806, 'Minerva', 1917, 'F', 211), +(19807, 'Elise', 1917, 'F', 210), +(19808, 'Fanny', 1917, 'F', 209), +(19809, 'Evangeline', 1917, 'F', 208), +(19810, 'Marcia', 1917, 'F', 208), +(19811, 'Floy', 1917, 'F', 207), +(19812, 'Louisa', 1917, 'F', 207), +(19813, 'Oleta', 1917, 'F', 206), +(19814, 'Dortha', 1917, 'F', 205), +(19815, 'Orpha', 1917, 'F', 204), +(19816, 'Charlene', 1917, 'F', 203), +(19817, 'Ferne', 1917, 'F', 203), +(19818, 'Maybelle', 1917, 'F', 203), +(19819, 'Mozelle', 1917, 'F', 203), +(19820, 'Gertie', 1917, 'F', 202), +(19821, 'Winona', 1917, 'F', 200), +(19822, 'Angie', 1917, 'F', 199), +(19823, 'Deloris', 1917, 'F', 199), +(19824, 'Elsa', 1917, 'F', 198), +(19825, 'Elvera', 1917, 'F', 198), +(19826, 'Cecil', 1917, 'F', 197), +(19827, 'Evalyn', 1917, 'F', 196), +(19828, 'Leta', 1917, 'F', 196), +(19829, 'Suzanne', 1917, 'F', 194), +(19830, 'Guadalupe', 1917, 'F', 193), +(19831, 'Vida', 1917, 'F', 193), +(19832, 'Rosalind', 1917, 'F', 192), +(19833, 'Alpha', 1917, 'F', 191), +(19834, 'Enid', 1917, 'F', 191), +(19835, 'Patsy', 1917, 'F', 191), +(19836, 'Vada', 1917, 'F', 191), +(19837, 'Retha', 1917, 'F', 190), +(19838, 'Clare', 1917, 'F', 189), +(19839, 'Lauretta', 1917, 'F', 188), +(19840, 'Dorris', 1917, 'F', 187), +(19841, 'Freida', 1917, 'F', 187), +(19842, 'Katheryn', 1917, 'F', 187), +(19843, 'Mazie', 1917, 'F', 187), +(19844, 'Lucinda', 1917, 'F', 186), +(19845, 'Yetta', 1917, 'F', 186), +(19846, 'Aurora', 1917, 'F', 185), +(19847, 'Cassie', 1917, 'F', 185), +(19848, 'Hortense', 1917, 'F', 185), +(19849, 'Magdalene', 1917, 'F', 183), +(19850, 'James', 1917, 'F', 182), +(19851, 'Lorine', 1917, 'F', 182), +(19852, 'Ona', 1917, 'F', 182), +(19853, 'Valerie', 1917, 'F', 182), +(19854, 'Queen', 1917, 'F', 181), +(19855, 'Rhea', 1917, 'F', 181), +(19856, 'Ava', 1917, 'F', 180), +(19857, 'Dorotha', 1917, 'F', 180), +(19858, 'Consuelo', 1917, 'F', 177), +(19859, 'Julie', 1917, 'F', 177), +(19860, 'Marianne', 1917, 'F', 177), +(19861, 'Nelda', 1917, 'F', 177), +(19862, 'Ester', 1917, 'F', 175), +(19863, 'Jayne', 1917, 'F', 175), +(19864, 'Alfreda', 1917, 'F', 174), +(19865, 'Gene', 1917, 'F', 174), +(19866, 'Aurelia', 1917, 'F', 173), +(19867, 'Corrine', 1917, 'F', 173), +(19868, 'Elna', 1917, 'F', 173), +(19869, 'Mina', 1917, 'F', 172), +(19870, 'Crystal', 1917, 'F', 171), +(19871, 'Darlene', 1917, 'F', 170), +(19872, 'Joanna', 1917, 'F', 170), +(19873, 'Roslyn', 1917, 'F', 170), +(19874, 'Nelle', 1917, 'F', 169), +(19875, 'Veda', 1917, 'F', 169), +(19876, 'Camille', 1917, 'F', 168), +(19877, 'Margret', 1917, 'F', 168), +(19878, 'Maud', 1917, 'F', 168), +(19879, 'Robert', 1917, 'F', 168), +(19880, 'Blanch', 1917, 'F', 167), +(19881, 'Linnie', 1917, 'F', 167), +(19882, 'Lulu', 1917, 'F', 166), +(19883, 'William', 1917, 'F', 165), +(19884, 'Ethelyn', 1917, 'F', 164), +(19885, 'Lettie', 1917, 'F', 164), +(19886, 'Lupe', 1917, 'F', 164), +(19887, 'Marilyn', 1917, 'F', 164), +(19888, 'Mathilda', 1917, 'F', 164), +(19889, 'Elena', 1917, 'F', 162), +(19890, 'Alva', 1917, 'F', 161), +(19891, 'Una', 1917, 'F', 161), +(19892, 'Madeleine', 1917, 'F', 160), +(19893, 'Millicent', 1917, 'F', 160), +(19894, 'Justine', 1917, 'F', 159), +(19895, 'Lona', 1917, 'F', 159), +(19896, 'Alda', 1917, 'F', 158), +(19897, 'Myrtis', 1917, 'F', 158), +(19898, 'Belva', 1917, 'F', 156), +(19899, 'Celeste', 1917, 'F', 156), +(19900, 'Faith', 1917, 'F', 156), +(19901, 'Juliette', 1917, 'F', 156), +(19902, 'Artie', 1917, 'F', 155), +(19903, 'Adell', 1917, 'F', 154), +(19904, 'Edwina', 1917, 'F', 154), +(19905, 'Ivy', 1917, 'F', 154), +(19906, 'Lucia', 1917, 'F', 153), +(19907, 'Margarita', 1917, 'F', 153), +(19908, 'Antonette', 1917, 'F', 152), +(19909, 'Ilene', 1917, 'F', 152), +(19910, 'Charlie', 1917, 'F', 151), +(19911, 'Emilie', 1917, 'F', 151), +(19912, 'Claudine', 1917, 'F', 150), +(19913, 'Odell', 1917, 'F', 150), +(19914, 'Clementine', 1917, 'F', 149), +(19915, 'Diana', 1917, 'F', 149), +(19916, 'Elouise', 1917, 'F', 149), +(19917, 'Ima', 1917, 'F', 149), +(19918, 'Lavina', 1917, 'F', 149), +(19919, 'Rosalee', 1917, 'F', 149), +(19920, 'Ruthie', 1917, 'F', 148), +(19921, 'Delma', 1917, 'F', 147), +(19922, 'Winnifred', 1917, 'F', 147), +(19923, 'Hettie', 1917, 'F', 146), +(19924, 'Maryann', 1917, 'F', 146), +(19925, 'Era', 1917, 'F', 145), +(19926, 'Jaunita', 1917, 'F', 145), +(19927, 'Jo', 1917, 'F', 145), +(19928, 'Rachael', 1917, 'F', 145), +(19929, 'Golda', 1917, 'F', 144), +(19930, 'Velda', 1917, 'F', 144), +(19931, 'Cathryn', 1917, 'F', 142), +(19932, 'Ardis', 1917, 'F', 141), +(19933, 'Bennie', 1917, 'F', 141), +(19934, 'Filomena', 1917, 'F', 141), +(19935, 'George', 1917, 'F', 139), +(19936, 'Adela', 1917, 'F', 138), +(19937, 'Eve', 1917, 'F', 138), +(19938, 'Freddie', 1917, 'F', 138), +(19939, 'Georgiana', 1917, 'F', 138), +(19940, 'Johnie', 1917, 'F', 138), +(19941, 'Hedwig', 1917, 'F', 137), +(19942, 'Tina', 1917, 'F', 137), +(19943, 'Treva', 1917, 'F', 137), +(19944, 'Vernice', 1917, 'F', 137), +(19945, 'Zola', 1917, 'F', 137), +(19946, 'Abbie', 1917, 'F', 136), +(19947, 'Judy', 1917, 'F', 136), +(19948, 'Margarette', 1917, 'F', 136), +(19949, 'Tressie', 1917, 'F', 136), +(19950, 'Gilda', 1917, 'F', 135), +(19951, 'Mittie', 1917, 'F', 135), +(19952, 'Rosemarie', 1917, 'F', 135), +(19953, 'Ursula', 1917, 'F', 135), +(19954, 'Zora', 1917, 'F', 135), +(19955, 'Grayce', 1917, 'F', 134), +(19956, 'Estell', 1917, 'F', 133), +(19957, 'Myrtice', 1917, 'F', 133), +(19958, 'Ray', 1917, 'F', 133), +(19959, 'Felicia', 1917, 'F', 132), +(19960, 'Anastasia', 1917, 'F', 131), +(19961, 'Jenny', 1917, 'F', 131), +(19962, 'Cordelia', 1917, 'F', 130), +(19963, 'Delphine', 1917, 'F', 130), +(19964, 'Idella', 1917, 'F', 130), +(19965, 'Theodora', 1917, 'F', 129), +(19966, 'Verla', 1917, 'F', 129), +(19967, 'Florene', 1917, 'F', 128), +(19968, 'Vergie', 1917, 'F', 128), +(19969, 'Eleanora', 1917, 'F', 127), +(19970, 'Gayle', 1917, 'F', 127), +(19971, 'Georgianna', 1917, 'F', 127), +(19972, 'Lue', 1917, 'F', 127), +(19973, 'Marvel', 1917, 'F', 127), +(19974, 'Lavonne', 1917, 'F', 126), +(19975, 'Ocie', 1917, 'F', 126), +(19976, 'Charles', 1917, 'F', 124), +(19977, 'Clyde', 1917, 'F', 124), +(19978, 'Hulda', 1917, 'F', 124), +(19979, 'Annetta', 1917, 'F', 123), +(19980, 'Berneice', 1917, 'F', 123), +(19981, 'Evelyne', 1917, 'F', 123), +(19982, 'Novella', 1917, 'F', 123), +(19983, 'Petra', 1917, 'F', 123), +(19984, 'Reta', 1917, 'F', 122), +(19985, 'Annabel', 1917, 'F', 121), +(19986, 'Lilyan', 1917, 'F', 121), +(19987, 'Violette', 1917, 'F', 121), +(19988, 'Adrienne', 1917, 'F', 120), +(19989, 'Emilia', 1917, 'F', 120), +(19990, 'Germaine', 1917, 'F', 120), +(19991, 'Elenora', 1917, 'F', 119), +(19992, 'Roma', 1917, 'F', 118), +(19993, 'Sibyl', 1917, 'F', 118), +(19994, 'Celestine', 1917, 'F', 117), +(19995, 'Yvette', 1917, 'F', 117), +(19996, 'Bethel', 1917, 'F', 116), +(19997, 'Camilla', 1917, 'F', 116), +(19998, 'Evie', 1917, 'F', 116), +(19999, 'Lina', 1917, 'F', 115), +(20000, 'Myrna', 1917, 'F', 115), +(20001, 'Joanne', 1917, 'F', 114), +(20002, 'Myrtie', 1917, 'F', 114), +(20003, 'Esta', 1917, 'F', 113), +(20004, 'Leatha', 1917, 'F', 113), +(20005, 'Betsy', 1917, 'F', 112), +(20006, 'Delphia', 1917, 'F', 112), +(20007, 'Madaline', 1917, 'F', 112), +(20008, 'Melvina', 1917, 'F', 112), +(20009, 'Meta', 1917, 'F', 112), +(20010, 'Earnestine', 1917, 'F', 111), +(20011, 'Rosamond', 1917, 'F', 111), +(20012, 'Therese', 1917, 'F', 111), +(20013, 'Adella', 1917, 'F', 110), +(20014, 'Alicia', 1917, 'F', 110), +(20015, 'Gwen', 1917, 'F', 110), +(20016, 'Twila', 1917, 'F', 110), +(20017, 'Lyda', 1917, 'F', 109), +(20018, 'Pearline', 1917, 'F', 109), +(20019, 'Rubie', 1917, 'F', 108), +(20020, 'Velva', 1917, 'F', 108), +(20021, 'Alvera', 1917, 'F', 107), +(20022, 'Dona', 1917, 'F', 107), +(20023, 'Hellen', 1917, 'F', 107), +(20024, 'Libby', 1917, 'F', 107), +(20025, 'Lovie', 1917, 'F', 107), +(20026, 'Zula', 1917, 'F', 107), +(20027, 'Elmira', 1917, 'F', 105), +(20028, 'Kathrine', 1917, 'F', 105), +(20029, 'Almeda', 1917, 'F', 104), +(20030, 'Chloe', 1917, 'F', 104), +(20031, 'Francisca', 1917, 'F', 104), +(20032, 'Laverna', 1917, 'F', 104), +(20033, 'Manuela', 1917, 'F', 104), +(20034, 'Audra', 1917, 'F', 103), +(20035, 'Bess', 1917, 'F', 103), +(20036, 'Georgette', 1917, 'F', 103), +(20037, 'Jerry', 1917, 'F', 103), +(20038, 'Kathryne', 1917, 'F', 103), +(20039, 'Rosina', 1917, 'F', 103), +(20040, 'Vina', 1917, 'F', 103), +(20041, 'Carolina', 1917, 'F', 102), +(20042, 'Juana', 1917, 'F', 102), +(20043, 'Larue', 1917, 'F', 102), +(20044, 'Lida', 1917, 'F', 102), +(20045, 'Magnolia', 1917, 'F', 102), +(20046, 'Nan', 1917, 'F', 102), +(20047, 'Claudie', 1917, 'F', 101), +(20048, 'Dorcas', 1917, 'F', 101), +(20049, 'Vernie', 1917, 'F', 101), +(20050, 'Aletha', 1917, 'F', 100), +(20051, 'Idell', 1917, 'F', 100), +(20052, 'Lavern', 1917, 'F', 100), +(20053, 'Octavia', 1917, 'F', 100), +(20054, 'Sammie', 1917, 'F', 100), +(20055, 'John', 1917, 'M', 51851), +(20056, 'William', 1917, 'M', 42420), +(20057, 'James', 1917, 'M', 37340), +(20058, 'Robert', 1917, 'M', 35219), +(20059, 'Joseph', 1917, 'M', 24763), +(20060, 'George', 1917, 'M', 24195), +(20061, 'Charles', 1917, 'M', 24145), +(20062, 'Edward', 1917, 'M', 17502), +(20063, 'Frank', 1917, 'M', 15769), +(20064, 'Thomas', 1917, 'M', 12612), +(20065, 'Walter', 1917, 'M', 12582), +(20066, 'Harold', 1917, 'M', 11198), +(20067, 'Paul', 1917, 'M', 11155), +(20068, 'Richard', 1917, 'M', 10914), +(20069, 'Henry', 1917, 'M', 10697), +(20070, 'Raymond', 1917, 'M', 9957), +(20071, 'Arthur', 1917, 'M', 9283), +(20072, 'Albert', 1917, 'M', 9157), +(20073, 'Harry', 1917, 'M', 8856), +(20074, 'Donald', 1917, 'M', 8728), +(20075, 'Ralph', 1917, 'M', 7393), +(20076, 'Jack', 1917, 'M', 6874), +(20077, 'Louis', 1917, 'M', 6772); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(20078, 'Carl', 1917, 'M', 6699), +(20079, 'Clarence', 1917, 'M', 6586), +(20080, 'Howard', 1917, 'M', 6410), +(20081, 'Kenneth', 1917, 'M', 6142), +(20082, 'David', 1917, 'M', 6100), +(20083, 'Fred', 1917, 'M', 5987), +(20084, 'Francis', 1917, 'M', 5801), +(20085, 'Willie', 1917, 'M', 5752), +(20086, 'Earl', 1917, 'M', 5632), +(20087, 'Roy', 1917, 'M', 5586), +(20088, 'Stanley', 1917, 'M', 5185), +(20089, 'Joe', 1917, 'M', 5143), +(20090, 'Lawrence', 1917, 'M', 5095), +(20091, 'Ernest', 1917, 'M', 5055), +(20092, 'Anthony', 1917, 'M', 5028), +(20093, 'Eugene', 1917, 'M', 4873), +(20094, 'Herbert', 1917, 'M', 4744), +(20095, 'Leonard', 1917, 'M', 4695), +(20096, 'Samuel', 1917, 'M', 4490), +(20097, 'Alfred', 1917, 'M', 4424), +(20098, 'Michael', 1917, 'M', 4290), +(20099, 'Elmer', 1917, 'M', 3812), +(20100, 'Norman', 1917, 'M', 3789), +(20101, 'Leo', 1917, 'M', 3779), +(20102, 'Andrew', 1917, 'M', 3751), +(20103, 'Bernard', 1917, 'M', 3711), +(20104, 'Peter', 1917, 'M', 3464), +(20105, 'Frederick', 1917, 'M', 3455), +(20106, 'Russell', 1917, 'M', 3437), +(20107, 'Lloyd', 1917, 'M', 3416), +(20108, 'Daniel', 1917, 'M', 3359), +(20109, 'Edwin', 1917, 'M', 3346), +(20110, 'Chester', 1917, 'M', 3338), +(20111, 'Melvin', 1917, 'M', 3156), +(20112, 'Herman', 1917, 'M', 2973), +(20113, 'Clifford', 1917, 'M', 2969), +(20114, 'Leroy', 1917, 'M', 2951), +(20115, 'Lester', 1917, 'M', 2855), +(20116, 'Floyd', 1917, 'M', 2820), +(20117, 'Theodore', 1917, 'M', 2809), +(20118, 'Clyde', 1917, 'M', 2719), +(20119, 'Vincent', 1917, 'M', 2636), +(20120, 'Philip', 1917, 'M', 2544), +(20121, 'Charlie', 1917, 'M', 2537), +(20122, 'Marvin', 1917, 'M', 2517), +(20123, 'Gerald', 1917, 'M', 2488), +(20124, 'Lewis', 1917, 'M', 2477), +(20125, 'Vernon', 1917, 'M', 2463), +(20126, 'Sam', 1917, 'M', 2455), +(20127, 'Woodrow', 1917, 'M', 2429), +(20128, 'Ray', 1917, 'M', 2427), +(20129, 'Milton', 1917, 'M', 2394), +(20130, 'Benjamin', 1917, 'M', 2386), +(20131, 'Martin', 1917, 'M', 2337), +(20132, 'Victor', 1917, 'M', 2207), +(20133, 'Jesse', 1917, 'M', 2200), +(20134, 'Willard', 1917, 'M', 2188), +(20135, 'Alvin', 1917, 'M', 2142), +(20136, 'Cecil', 1917, 'M', 2101), +(20137, 'Leon', 1917, 'M', 2101), +(20138, 'Gordon', 1917, 'M', 2019), +(20139, 'Lee', 1917, 'M', 2004), +(20140, 'Glenn', 1917, 'M', 1997), +(20141, 'Oscar', 1917, 'M', 1962), +(20142, 'Edgar', 1917, 'M', 1920), +(20143, 'Stephen', 1917, 'M', 1893), +(20144, 'Harvey', 1917, 'M', 1808), +(20145, 'Arnold', 1917, 'M', 1781), +(20146, 'Wilbur', 1917, 'M', 1749), +(20147, 'Warren', 1917, 'M', 1743), +(20148, 'Everett', 1917, 'M', 1734), +(20149, 'Sidney', 1917, 'M', 1727), +(20150, 'Wayne', 1917, 'M', 1715), +(20151, 'Alexander', 1917, 'M', 1665), +(20152, 'Claude', 1917, 'M', 1625), +(20153, 'Morris', 1917, 'M', 1624), +(20154, 'Allen', 1917, 'M', 1592), +(20155, 'Maurice', 1917, 'M', 1554), +(20156, 'Homer', 1917, 'M', 1552), +(20157, 'Virgil', 1917, 'M', 1523), +(20158, 'Max', 1917, 'M', 1511), +(20159, 'Gilbert', 1917, 'M', 1509), +(20160, 'Irving', 1917, 'M', 1470), +(20161, 'Leslie', 1917, 'M', 1440), +(20162, 'Marion', 1917, 'M', 1416), +(20163, 'Nicholas', 1917, 'M', 1413), +(20164, 'Hugh', 1917, 'M', 1403), +(20165, 'Johnnie', 1917, 'M', 1403), +(20166, 'Steve', 1917, 'M', 1385), +(20167, 'Julius', 1917, 'M', 1384), +(20168, 'Jessie', 1917, 'M', 1360), +(20169, 'Hubert', 1917, 'M', 1338), +(20170, 'Luther', 1917, 'M', 1304), +(20171, 'Roland', 1917, 'M', 1285), +(20172, 'Eddie', 1917, 'M', 1265), +(20173, 'Roger', 1917, 'M', 1249), +(20174, 'Dale', 1917, 'M', 1248), +(20175, 'Curtis', 1917, 'M', 1242), +(20176, 'Glen', 1917, 'M', 1235), +(20177, 'Wallace', 1917, 'M', 1215), +(20178, 'Franklin', 1917, 'M', 1194), +(20179, 'Horace', 1917, 'M', 1182), +(20180, 'Mike', 1917, 'M', 1182), +(20181, 'Oliver', 1917, 'M', 1175), +(20182, 'Manuel', 1917, 'M', 1158), +(20183, 'Ben', 1917, 'M', 1128), +(20184, 'Jacob', 1917, 'M', 1122), +(20185, 'Tony', 1917, 'M', 1111), +(20186, 'Alex', 1917, 'M', 1081), +(20187, 'Jerome', 1917, 'M', 1073), +(20188, 'Orville', 1917, 'M', 1061), +(20189, 'Edmund', 1917, 'M', 1045), +(20190, 'Wesley', 1917, 'M', 1014), +(20191, 'Emil', 1917, 'M', 1004), +(20192, 'Douglas', 1917, 'M', 981), +(20193, 'Tom', 1917, 'M', 981), +(20194, 'Willis', 1917, 'M', 954), +(20195, 'Rudolph', 1917, 'M', 946), +(20196, 'Archie', 1917, 'M', 939), +(20197, 'Earnest', 1917, 'M', 923), +(20198, 'Wilson', 1917, 'M', 921), +(20199, 'Otis', 1917, 'M', 912), +(20200, 'Guy', 1917, 'M', 904), +(20201, 'Bill', 1917, 'M', 891), +(20202, 'Nathan', 1917, 'M', 881), +(20203, 'Jerry', 1917, 'M', 862), +(20204, 'Matthew', 1917, 'M', 862), +(20205, 'Ira', 1917, 'M', 857), +(20206, 'Angelo', 1917, 'M', 856), +(20207, 'Lyle', 1917, 'M', 855), +(20208, 'Patrick', 1917, 'M', 836), +(20209, 'Salvatore', 1917, 'M', 834), +(20210, 'Bruce', 1917, 'M', 805), +(20211, 'Otto', 1917, 'M', 803), +(20212, 'Jose', 1917, 'M', 800), +(20213, 'Clifton', 1917, 'M', 793), +(20214, 'Calvin', 1917, 'M', 785), +(20215, 'Marshall', 1917, 'M', 777), +(20216, 'Delbert', 1917, 'M', 775), +(20217, 'Jim', 1917, 'M', 774), +(20218, 'Wilfred', 1917, 'M', 773), +(20219, 'Ronald', 1917, 'M', 767), +(20220, 'Clayton', 1917, 'M', 759), +(20221, 'Don', 1917, 'M', 757), +(20222, 'Ivan', 1917, 'M', 756), +(20223, 'Wilbert', 1917, 'M', 754), +(20224, 'Irvin', 1917, 'M', 734), +(20225, 'Abraham', 1917, 'M', 731), +(20226, 'Bennie', 1917, 'M', 730), +(20227, 'Phillip', 1917, 'M', 723), +(20228, 'Ervin', 1917, 'M', 718), +(20229, 'Sylvester', 1917, 'M', 715), +(20230, 'Jimmie', 1917, 'M', 713), +(20231, 'Nick', 1917, 'M', 705), +(20232, 'Merle', 1917, 'M', 701), +(20233, 'Elbert', 1917, 'M', 675), +(20234, 'Adolph', 1917, 'M', 673), +(20235, 'Karl', 1917, 'M', 673), +(20236, 'Clinton', 1917, 'M', 670), +(20237, 'Forrest', 1917, 'M', 663), +(20238, 'August', 1917, 'M', 661), +(20239, 'Felix', 1917, 'M', 661), +(20240, 'Julian', 1917, 'M', 652), +(20241, 'Rufus', 1917, 'M', 646), +(20242, 'Jay', 1917, 'M', 643), +(20243, 'Nathaniel', 1917, 'M', 640), +(20244, 'Pete', 1917, 'M', 639), +(20245, 'Leland', 1917, 'M', 627), +(20246, 'Isaac', 1917, 'M', 622), +(20247, 'Adam', 1917, 'M', 614), +(20248, 'Nelson', 1917, 'M', 605), +(20249, 'Alton', 1917, 'M', 603), +(20250, 'Lonnie', 1917, 'M', 597), +(20251, 'Aaron', 1917, 'M', 596), +(20252, 'Dan', 1917, 'M', 596), +(20253, 'Dennis', 1917, 'M', 582), +(20254, 'Antonio', 1917, 'M', 579), +(20255, 'Ellis', 1917, 'M', 574), +(20256, 'Carroll', 1917, 'M', 563), +(20257, 'Dean', 1917, 'M', 559), +(20258, 'Johnie', 1917, 'M', 552), +(20259, 'Lowell', 1917, 'M', 551), +(20260, 'Malcolm', 1917, 'M', 544), +(20261, 'Emmett', 1917, 'M', 542), +(20262, 'Gene', 1917, 'M', 542), +(20263, 'Grover', 1917, 'M', 541), +(20264, 'Bert', 1917, 'M', 533), +(20265, 'Johnny', 1917, 'M', 531), +(20266, 'Elwood', 1917, 'M', 528), +(20267, 'Mark', 1917, 'M', 528), +(20268, 'Grady', 1917, 'M', 527), +(20269, 'Perry', 1917, 'M', 527), +(20270, 'Keith', 1917, 'M', 518), +(20271, 'Percy', 1917, 'M', 515), +(20272, 'Dominick', 1917, 'M', 507), +(20273, 'Dominic', 1917, 'M', 505), +(20274, 'Ross', 1917, 'M', 503), +(20275, 'Ted', 1917, 'M', 498), +(20276, 'Laurence', 1917, 'M', 495), +(20277, 'Myron', 1917, 'M', 490), +(20278, 'Owen', 1917, 'M', 489), +(20279, 'Loyd', 1917, 'M', 488), +(20280, 'Byron', 1917, 'M', 487), +(20281, 'Mack', 1917, 'M', 480), +(20282, 'Erwin', 1917, 'M', 479), +(20283, 'Fredrick', 1917, 'M', 471), +(20284, 'Rex', 1917, 'M', 471), +(20285, 'Billy', 1917, 'M', 469), +(20286, 'Roscoe', 1917, 'M', 468), +(20287, 'Sherman', 1917, 'M', 467), +(20288, 'Norbert', 1917, 'M', 466), +(20289, 'Wendell', 1917, 'M', 466), +(20290, 'Amos', 1917, 'M', 461), +(20291, 'Charley', 1917, 'M', 457), +(20292, 'Allan', 1917, 'M', 451), +(20293, 'Eldon', 1917, 'M', 440), +(20294, 'Aubrey', 1917, 'M', 437), +(20295, 'Murray', 1917, 'M', 436), +(20296, 'Seymour', 1917, 'M', 434), +(20297, 'Harley', 1917, 'M', 430), +(20298, 'Reuben', 1917, 'M', 430), +(20299, 'Loren', 1917, 'M', 424), +(20300, 'Millard', 1917, 'M', 421), +(20301, 'Dewey', 1917, 'M', 417), +(20302, 'Gerard', 1917, 'M', 413), +(20303, 'Preston', 1917, 'M', 413), +(20304, 'Austin', 1917, 'M', 409), +(20305, 'Juan', 1917, 'M', 407), +(20306, 'Burton', 1917, 'M', 398), +(20307, 'Grant', 1917, 'M', 398), +(20308, 'Garland', 1917, 'M', 396), +(20309, 'Troy', 1917, 'M', 394), +(20310, 'Louie', 1917, 'M', 392), +(20311, 'Boyd', 1917, 'M', 388), +(20312, 'Carlton', 1917, 'M', 388), +(20313, 'Cornelius', 1917, 'M', 387), +(20314, 'Steven', 1917, 'M', 385), +(20315, 'Mitchell', 1917, 'M', 380), +(20316, 'Jasper', 1917, 'M', 377), +(20317, 'Solomon', 1917, 'M', 376), +(20318, 'Tommie', 1917, 'M', 375), +(20319, 'Elmo', 1917, 'M', 366), +(20320, 'Emanuel', 1917, 'M', 362), +(20321, 'Mario', 1917, 'M', 359), +(20322, 'Edmond', 1917, 'M', 358), +(20323, 'Simon', 1917, 'M', 358), +(20324, 'Neil', 1917, 'M', 357), +(20325, 'Freddie', 1917, 'M', 354), +(20326, 'Bob', 1917, 'M', 352), +(20327, 'Jess', 1917, 'M', 352), +(20328, 'Dwight', 1917, 'M', 349), +(20329, 'Clark', 1917, 'M', 346), +(20330, 'Lynn', 1917, 'M', 345), +(20331, 'Anton', 1917, 'M', 343), +(20332, 'Morton', 1917, 'M', 343), +(20333, 'Wilmer', 1917, 'M', 342), +(20334, 'Thurman', 1917, 'M', 340), +(20335, 'Moses', 1917, 'M', 339), +(20336, 'Will', 1917, 'M', 339), +(20337, 'Monroe', 1917, 'M', 334), +(20338, 'Maynard', 1917, 'M', 333), +(20339, 'Bruno', 1917, 'M', 328), +(20340, 'Earle', 1917, 'M', 328), +(20341, 'Hyman', 1917, 'M', 328), +(20342, 'Doyle', 1917, 'M', 327), +(20343, 'Dave', 1917, 'M', 323), +(20344, 'Larry', 1917, 'M', 322), +(20345, 'Elton', 1917, 'M', 320), +(20346, 'Harrison', 1917, 'M', 320), +(20347, 'Rocco', 1917, 'M', 320), +(20348, 'Wade', 1917, 'M', 317), +(20349, 'Alphonse', 1917, 'M', 316), +(20350, 'Alva', 1917, 'M', 316), +(20351, 'Clair', 1917, 'M', 314), +(20352, 'Cleo', 1917, 'M', 313), +(20353, 'Alan', 1917, 'M', 310), +(20354, 'Conrad', 1917, 'M', 308), +(20355, 'Joel', 1917, 'M', 308), +(20356, 'Cyril', 1917, 'M', 306), +(20357, 'Russel', 1917, 'M', 305), +(20358, 'Ed', 1917, 'M', 304), +(20359, 'Clement', 1917, 'M', 303), +(20360, 'Jake', 1917, 'M', 299), +(20361, 'Andy', 1917, 'M', 298), +(20362, 'Barney', 1917, 'M', 298), +(20363, 'Carlos', 1917, 'M', 298), +(20364, 'Sol', 1917, 'M', 298), +(20365, 'Ollie', 1917, 'M', 295), +(20366, 'Claud', 1917, 'M', 293), +(20367, 'Elvin', 1917, 'M', 291), +(20368, 'Gus', 1917, 'M', 291), +(20369, 'Jesus', 1917, 'M', 289), +(20370, 'Ruben', 1917, 'M', 289), +(20371, 'Cleveland', 1917, 'M', 287), +(20372, 'Emery', 1917, 'M', 287), +(20373, 'Alonzo', 1917, 'M', 286), +(20374, 'Forest', 1917, 'M', 286), +(20375, 'Roosevelt', 1917, 'M', 285), +(20376, 'Marcus', 1917, 'M', 283), +(20377, 'Orval', 1917, 'M', 282), +(20378, 'Abe', 1917, 'M', 280), +(20379, 'Ned', 1917, 'M', 280), +(20380, 'Stuart', 1917, 'M', 278), +(20381, 'Neal', 1917, 'M', 277), +(20382, 'Laverne', 1917, 'M', 275), +(20383, 'Delmar', 1917, 'M', 274), +(20384, 'Adrian', 1917, 'M', 273), +(20385, 'Ellsworth', 1917, 'M', 270), +(20386, 'Harlan', 1917, 'M', 268), +(20387, 'Junior', 1917, 'M', 268), +(20388, 'Thaddeus', 1917, 'M', 268), +(20389, 'Armand', 1917, 'M', 267), +(20390, 'Stewart', 1917, 'M', 267), +(20391, 'Dallas', 1917, 'M', 265), +(20392, 'Randolph', 1917, 'M', 265), +(20393, 'Kermit', 1917, 'M', 264), +(20394, 'Christopher', 1917, 'M', 263), +(20395, 'Pasquale', 1917, 'M', 262), +(20396, 'Tommy', 1917, 'M', 262), +(20397, 'Reginald', 1917, 'M', 261), +(20398, 'Timothy', 1917, 'M', 260), +(20399, 'Odell', 1917, 'M', 259), +(20400, 'Carmen', 1917, 'M', 258), +(20401, 'Merrill', 1917, 'M', 257), +(20402, 'Elijah', 1917, 'M', 256), +(20403, 'Roman', 1917, 'M', 256), +(20404, 'Lionel', 1917, 'M', 255), +(20405, 'Wiley', 1917, 'M', 255), +(20406, 'Irwin', 1917, 'M', 254), +(20407, 'Buford', 1917, 'M', 249), +(20408, 'Billie', 1917, 'M', 246), +(20409, 'Eli', 1917, 'M', 246), +(20410, 'Patsy', 1917, 'M', 246), +(20411, 'Vito', 1917, 'M', 246), +(20412, 'Isadore', 1917, 'M', 243), +(20413, 'Ward', 1917, 'M', 242), +(20414, 'Darrell', 1917, 'M', 241), +(20415, 'Emory', 1917, 'M', 237), +(20416, 'Ferdinand', 1917, 'M', 236), +(20417, 'Rodney', 1917, 'M', 234), +(20418, 'Booker', 1917, 'M', 233), +(20419, 'Miles', 1917, 'M', 232), +(20420, 'Wilford', 1917, 'M', 232), +(20421, 'Pedro', 1917, 'M', 231), +(20422, 'Herschel', 1917, 'M', 230), +(20423, 'Merlin', 1917, 'M', 230), +(20424, 'Milford', 1917, 'M', 230), +(20425, 'Emerson', 1917, 'M', 229), +(20426, 'Alfonso', 1917, 'M', 228), +(20427, 'Saul', 1917, 'M', 228), +(20428, 'Francisco', 1917, 'M', 227), +(20429, 'Wilburn', 1917, 'M', 227), +(20430, 'Truman', 1917, 'M', 225), +(20431, 'Benny', 1917, 'M', 223), +(20432, 'Hollis', 1917, 'M', 223), +(20433, 'Basil', 1917, 'M', 221), +(20434, 'Dick', 1917, 'M', 220), +(20435, 'Lyman', 1917, 'M', 220), +(20436, 'Noah', 1917, 'M', 219), +(20437, 'Frederic', 1917, 'M', 218), +(20438, 'Sterling', 1917, 'M', 217), +(20439, 'Meyer', 1917, 'M', 214), +(20440, 'Winfred', 1917, 'M', 214), +(20441, 'Ramon', 1917, 'M', 212), +(20442, 'Duane', 1917, 'M', 209), +(20443, 'Mathew', 1917, 'M', 208), +(20444, 'Buster', 1917, 'M', 206), +(20445, 'Jackson', 1917, 'M', 206), +(20446, 'Winston', 1917, 'M', 206), +(20447, 'Casimir', 1917, 'M', 205), +(20448, 'Silas', 1917, 'M', 205), +(20449, 'Travis', 1917, 'M', 205), +(20450, 'Micheal', 1917, 'M', 204), +(20451, 'Spencer', 1917, 'M', 204), +(20452, 'Bertram', 1917, 'M', 203), +(20453, 'Levi', 1917, 'M', 203), +(20454, 'Mervin', 1917, 'M', 202), +(20455, 'Vern', 1917, 'M', 200), +(20456, 'Weldon', 1917, 'M', 200), +(20457, 'Ambrose', 1917, 'M', 199), +(20458, 'Coy', 1917, 'M', 196), +(20459, 'Dudley', 1917, 'M', 196), +(20460, 'Vance', 1917, 'M', 196), +(20461, 'Milo', 1917, 'M', 193), +(20462, 'Lorenzo', 1917, 'M', 192), +(20463, 'Noel', 1917, 'M', 192), +(20464, 'Gabriel', 1917, 'M', 190), +(20465, 'Cletus', 1917, 'M', 189), +(20466, 'Jean', 1917, 'M', 187), +(20467, 'Eric', 1917, 'M', 186), +(20468, 'Royal', 1917, 'M', 186), +(20469, 'Pat', 1917, 'M', 185), +(20470, 'Sanford', 1917, 'M', 185), +(20471, 'Hugo', 1917, 'M', 183), +(20472, 'Norris', 1917, 'M', 183), +(20473, 'Teddy', 1917, 'M', 182), +(20474, 'Hiram', 1917, 'M', 181), +(20475, 'Aloysius', 1917, 'M', 180), +(20476, 'Jeff', 1917, 'M', 180), +(20477, 'Sydney', 1917, 'M', 180), +(20478, 'Morgan', 1917, 'M', 179), +(20479, 'Rolland', 1917, 'M', 179), +(20480, 'Foster', 1917, 'M', 177), +(20481, 'Jimmy', 1917, 'M', 177), +(20482, 'Bud', 1917, 'M', 176), +(20483, 'Harris', 1917, 'M', 175), +(20484, 'Isidore', 1917, 'M', 174), +(20485, 'Odis', 1917, 'M', 174), +(20486, 'Shirley', 1917, 'M', 172), +(20487, 'Freeman', 1917, 'M', 171), +(20488, 'Omer', 1917, 'M', 171), +(20489, 'Sammie', 1917, 'M', 171), +(20490, 'Newton', 1917, 'M', 170), +(20491, 'Scott', 1917, 'M', 170), +(20492, 'Alden', 1917, 'M', 166), +(20493, 'Carmine', 1917, 'M', 166), +(20494, 'Wilton', 1917, 'M', 166), +(20495, 'Marlin', 1917, 'M', 164), +(20496, 'Waldo', 1917, 'M', 164), +(20497, 'Lamar', 1917, 'M', 163), +(20498, 'Luke', 1917, 'M', 163), +(20499, 'Van', 1917, 'M', 162), +(20500, 'Evan', 1917, 'M', 161), +(20501, 'Major', 1917, 'M', 159), +(20502, 'Mary', 1917, 'M', 159), +(20503, 'Ulysses', 1917, 'M', 159), +(20504, 'Gail', 1917, 'M', 158), +(20505, 'Gregory', 1917, 'M', 158), +(20506, 'Randall', 1917, 'M', 157), +(20507, 'Orlando', 1917, 'M', 156), +(20508, 'Delmer', 1917, 'M', 154), +(20509, 'Elias', 1917, 'M', 154), +(20510, 'Fletcher', 1917, 'M', 154), +(20511, 'Houston', 1917, 'M', 154), +(20512, 'Lavern', 1917, 'M', 154), +(20513, 'Verne', 1917, 'M', 154), +(20514, 'Benedict', 1917, 'M', 152), +(20515, 'Elliott', 1917, 'M', 152), +(20516, 'Gustave', 1917, 'M', 152), +(20517, 'Jefferson', 1917, 'M', 152), +(20518, 'Wilber', 1917, 'M', 151), +(20519, 'Denver', 1917, 'M', 150), +(20520, 'Augustus', 1917, 'M', 149), +(20521, 'Christian', 1917, 'M', 149), +(20522, 'Nolan', 1917, 'M', 149), +(20523, 'Sigmund', 1917, 'M', 149), +(20524, 'Linwood', 1917, 'M', 147), +(20525, 'Maxwell', 1917, 'M', 147), +(20526, 'Noble', 1917, 'M', 147), +(20527, 'Sheldon', 1917, 'M', 147), +(20528, 'Everette', 1917, 'M', 146), +(20529, 'Hershel', 1917, 'M', 146), +(20530, 'Olin', 1917, 'M', 146), +(20531, 'Chris', 1917, 'M', 145), +(20532, 'Columbus', 1917, 'M', 145), +(20533, 'Elroy', 1917, 'M', 143), +(20534, 'Israel', 1917, 'M', 143), +(20535, 'Fay', 1917, 'M', 142), +(20536, 'Justin', 1917, 'M', 142), +(20537, 'Olen', 1917, 'M', 142), +(20538, 'Hoyt', 1917, 'M', 141), +(20539, 'Lenard', 1917, 'M', 141), +(20540, 'Ezra', 1917, 'M', 140), +(20541, 'Rosario', 1917, 'M', 140), +(20542, 'Arlie', 1917, 'M', 139), +(20543, 'Riley', 1917, 'M', 139), +(20544, 'Albin', 1917, 'M', 138), +(20545, 'Emile', 1917, 'M', 138), +(20546, 'Cyrus', 1917, 'M', 136), +(20547, 'Palmer', 1917, 'M', 135), +(20548, 'Rene', 1917, 'M', 135), +(20549, 'Theron', 1917, 'M', 135), +(20550, 'Nickolas', 1917, 'M', 134), +(20551, 'Al', 1917, 'M', 133), +(20552, 'Darwin', 1917, 'M', 133), +(20553, 'Dewitt', 1917, 'M', 133), +(20554, 'Phil', 1917, 'M', 133), +(20555, 'Kelly', 1917, 'M', 131), +(20556, 'Oren', 1917, 'M', 131), +(20557, 'Otha', 1917, 'M', 131), +(20558, 'Burl', 1917, 'M', 130), +(20559, 'Antone', 1917, 'M', 129), +(20560, 'Ora', 1917, 'M', 129), +(20561, 'Royce', 1917, 'M', 129), +(20562, 'Anderson', 1917, 'M', 128), +(20563, 'Lincoln', 1917, 'M', 128), +(20564, 'Blaine', 1917, 'M', 127), +(20565, 'Casimer', 1917, 'M', 127), +(20566, 'Reed', 1917, 'M', 127), +(20567, 'Enoch', 1917, 'M', 126), +(20568, 'Carlo', 1917, 'M', 125), +(20569, 'Clay', 1917, 'M', 125), +(20570, 'Hal', 1917, 'M', 125), +(20571, 'Harland', 1917, 'M', 125), +(20572, 'Alfredo', 1917, 'M', 124), +(20573, 'Jules', 1917, 'M', 124), +(20574, 'Salvador', 1917, 'M', 124), +(20575, 'Gale', 1917, 'M', 123), +(20576, 'Arther', 1917, 'M', 122), +(20577, 'Joshua', 1917, 'M', 122), +(20578, 'Sebastian', 1917, 'M', 122), +(20579, 'Granville', 1917, 'M', 121), +(20580, 'Aldo', 1917, 'M', 120), +(20581, 'Armando', 1917, 'M', 120), +(20582, 'Eldred', 1917, 'M', 120), +(20583, 'Florian', 1917, 'M', 120), +(20584, 'Hobert', 1917, 'M', 120), +(20585, 'Walton', 1917, 'M', 120), +(20586, 'Elwin', 1917, 'M', 119), +(20587, 'Lucien', 1917, 'M', 119), +(20588, 'Rubin', 1917, 'M', 119), +(20589, 'Shelby', 1917, 'M', 119), +(20590, 'Taylor', 1917, 'M', 119), +(20591, 'Vaughn', 1917, 'M', 119), +(20592, 'Edison', 1917, 'M', 118), +(20593, 'Harmon', 1917, 'M', 118), +(20594, 'Rupert', 1917, 'M', 117), +(20595, 'Arden', 1917, 'M', 116), +(20596, 'Merton', 1917, 'M', 116), +(20597, 'Raleigh', 1917, 'M', 116), +(20598, 'Augustine', 1917, 'M', 115), +(20599, 'Avery', 1917, 'M', 115), +(20600, 'Junius', 1917, 'M', 115), +(20601, 'Lemuel', 1917, 'M', 115), +(20602, 'Romeo', 1917, 'M', 115), +(20603, 'Davis', 1917, 'M', 114), +(20604, 'Luis', 1917, 'M', 114), +(20605, 'Mason', 1917, 'M', 114), +(20606, 'Matt', 1917, 'M', 114), +(20607, 'Mose', 1917, 'M', 114), +(20608, 'Dalton', 1917, 'M', 113), +(20609, 'Domenic', 1917, 'M', 113), +(20610, 'Domingo', 1917, 'M', 113), +(20611, 'Dee', 1917, 'M', 111), +(20612, 'Hilton', 1917, 'M', 111), +(20613, 'Jewel', 1917, 'M', 111), +(20614, 'Lucius', 1917, 'M', 111), +(20615, 'Coleman', 1917, 'M', 110), +(20616, 'Dorsey', 1917, 'M', 110), +(20617, 'Lacy', 1917, 'M', 110), +(20618, 'Carrol', 1917, 'M', 109), +(20619, 'Elzie', 1917, 'M', 109), +(20620, 'Edd', 1917, 'M', 108), +(20621, 'Isaiah', 1917, 'M', 108), +(20622, 'Judson', 1917, 'M', 108), +(20623, 'Porter', 1917, 'M', 108), +(20624, 'Casper', 1917, 'M', 107), +(20625, 'Gaylord', 1917, 'M', 107), +(20626, 'Jewell', 1917, 'M', 107), +(20627, 'Miguel', 1917, 'M', 107), +(20628, 'Rudy', 1917, 'M', 107), +(20629, 'Stanford', 1917, 'M', 107), +(20630, 'Ottis', 1917, 'M', 106), +(20631, 'Joesph', 1917, 'M', 105), +(20632, 'Lucian', 1917, 'M', 105), +(20633, 'Rogers', 1917, 'M', 105), +(20634, 'Walker', 1917, 'M', 105), +(20635, 'Americo', 1917, 'M', 104), +(20636, 'Jeremiah', 1917, 'M', 104), +(20637, 'Marcel', 1917, 'M', 104), +(20638, 'Otho', 1917, 'M', 104), +(20639, 'Valentine', 1917, 'M', 104), +(20640, 'Dock', 1917, 'M', 103), +(20641, 'Durward', 1917, 'M', 103), +(20642, 'Guido', 1917, 'M', 103), +(20643, 'Clem', 1917, 'M', 102), +(20644, 'Mckinley', 1917, 'M', 102), +(20645, 'Carlyle', 1917, 'M', 101), +(20646, 'Emilio', 1917, 'M', 101), +(20647, 'Garfield', 1917, 'M', 101), +(20648, 'Hobart', 1917, 'M', 100), +(20649, 'Rollin', 1917, 'M', 100), +(20650, 'Winfield', 1917, 'M', 100), +(20651, 'Mary', 1918, 'F', 67370), +(20652, 'Helen', 1918, 'F', 36150), +(20653, 'Dorothy', 1918, 'F', 32033), +(20654, 'Margaret', 1918, 'F', 27138), +(20655, 'Ruth', 1918, 'F', 25535), +(20656, 'Mildred', 1918, 'F', 17256), +(20657, 'Virginia', 1918, 'F', 16421), +(20658, 'Frances', 1918, 'F', 16130), +(20659, 'Elizabeth', 1918, 'F', 15852), +(20660, 'Anna', 1918, 'F', 15666), +(20661, 'Evelyn', 1918, 'F', 13493), +(20662, 'Marie', 1918, 'F', 12587), +(20663, 'Alice', 1918, 'F', 11590), +(20664, 'Florence', 1918, 'F', 11317), +(20665, 'Lillian', 1918, 'F', 9986), +(20666, 'Irene', 1918, 'F', 9774), +(20667, 'Rose', 1918, 'F', 9569), +(20668, 'Louise', 1918, 'F', 9110), +(20669, 'Doris', 1918, 'F', 9061), +(20670, 'Catherine', 1918, 'F', 8842), +(20671, 'Betty', 1918, 'F', 8802), +(20672, 'Gladys', 1918, 'F', 8735), +(20673, 'Edna', 1918, 'F', 8699), +(20674, 'Josephine', 1918, 'F', 8683), +(20675, 'Martha', 1918, 'F', 8342), +(20676, 'Eleanor', 1918, 'F', 8176), +(20677, 'Ruby', 1918, 'F', 8134), +(20678, 'Ethel', 1918, 'F', 8076), +(20679, 'Lucille', 1918, 'F', 7902), +(20680, 'Edith', 1918, 'F', 7859), +(20681, 'Grace', 1918, 'F', 7770), +(20682, 'Thelma', 1918, 'F', 7741), +(20683, 'Hazel', 1918, 'F', 7615), +(20684, 'Marjorie', 1918, 'F', 7516), +(20685, 'Pauline', 1918, 'F', 7222), +(20686, 'Annie', 1918, 'F', 6742), +(20687, 'Jean', 1918, 'F', 6600), +(20688, 'Esther', 1918, 'F', 6574), +(20689, 'Gertrude', 1918, 'F', 6264), +(20690, 'Beatrice', 1918, 'F', 5907), +(20691, 'Bernice', 1918, 'F', 5893), +(20692, 'Lois', 1918, 'F', 5877), +(20693, 'Clara', 1918, 'F', 5779), +(20694, 'Ann', 1918, 'F', 5613), +(20695, 'Marion', 1918, 'F', 5583), +(20696, 'Emma', 1918, 'F', 5323), +(20697, 'Agnes', 1918, 'F', 5291), +(20698, 'Julia', 1918, 'F', 5267), +(20699, 'Elsie', 1918, 'F', 5194), +(20700, 'Katherine', 1918, 'F', 5192), +(20701, 'Bertha', 1918, 'F', 5052), +(20702, 'Sarah', 1918, 'F', 4969), +(20703, 'Jane', 1918, 'F', 4731), +(20704, 'Anne', 1918, 'F', 4567), +(20705, 'Eva', 1918, 'F', 4564), +(20706, 'Pearl', 1918, 'F', 4521), +(20707, 'Ida', 1918, 'F', 4451), +(20708, 'Rita', 1918, 'F', 4447), +(20709, 'Viola', 1918, 'F', 4331), +(20710, 'Barbara', 1918, 'F', 4224), +(20711, 'Bessie', 1918, 'F', 4102), +(20712, 'Myrtle', 1918, 'F', 4076), +(20713, 'Kathryn', 1918, 'F', 4069), +(20714, 'Laura', 1918, 'F', 4062), +(20715, 'Nellie', 1918, 'F', 4048), +(20716, 'June', 1918, 'F', 4034), +(20717, 'Stella', 1918, 'F', 3927), +(20718, 'Vera', 1918, 'F', 3923), +(20719, 'Lorraine', 1918, 'F', 3874), +(20720, 'Willie', 1918, 'F', 3868), +(20721, 'Sylvia', 1918, 'F', 3675), +(20722, 'Vivian', 1918, 'F', 3663), +(20723, 'Alma', 1918, 'F', 3650), +(20724, 'Mabel', 1918, 'F', 3636), +(20725, 'Jessie', 1918, 'F', 3591), +(20726, 'Marian', 1918, 'F', 3503), +(20727, 'Geraldine', 1918, 'F', 3446), +(20728, 'Charlotte', 1918, 'F', 3372), +(20729, 'Leona', 1918, 'F', 3335), +(20730, 'Phyllis', 1918, 'F', 3326), +(20731, 'Genevieve', 1918, 'F', 3304), +(20732, 'Wilma', 1918, 'F', 3298), +(20733, 'Violet', 1918, 'F', 3294), +(20734, 'Ella', 1918, 'F', 3290), +(20735, 'Juanita', 1918, 'F', 3260), +(20736, 'Marguerite', 1918, 'F', 3250), +(20737, 'Maxine', 1918, 'F', 3216), +(20738, 'Minnie', 1918, 'F', 3181), +(20739, 'Lillie', 1918, 'F', 3112), +(20740, 'Lucy', 1918, 'F', 3108), +(20741, 'Jennie', 1918, 'F', 3033), +(20742, 'Ellen', 1918, 'F', 3030), +(20743, 'Lena', 1918, 'F', 2937), +(20744, 'Opal', 1918, 'F', 2847), +(20745, 'Mae', 1918, 'F', 2756), +(20746, 'Blanche', 1918, 'F', 2739), +(20747, 'Norma', 1918, 'F', 2655), +(20748, 'Shirley', 1918, 'F', 2654), +(20749, 'Kathleen', 1918, 'F', 2630), +(20750, 'Mattie', 1918, 'F', 2610), +(20751, 'Theresa', 1918, 'F', 2511), +(20752, 'Nancy', 1918, 'F', 2510), +(20753, 'Velma', 1918, 'F', 2439), +(20754, 'Beulah', 1918, 'F', 2363), +(20755, 'Emily', 1918, 'F', 2361), +(20756, 'Harriet', 1918, 'F', 2345), +(20757, 'Georgia', 1918, 'F', 2344), +(20758, 'Sophie', 1918, 'F', 2300), +(20759, 'Sara', 1918, 'F', 2295), +(20760, 'Eileen', 1918, 'F', 2264), +(20761, 'Eunice', 1918, 'F', 2224), +(20762, 'Geneva', 1918, 'F', 2192), +(20763, 'Carrie', 1918, 'F', 2130), +(20764, 'Hilda', 1918, 'F', 2119), +(20765, 'Inez', 1918, 'F', 2105), +(20766, 'Loretta', 1918, 'F', 2051), +(20767, 'Rosa', 1918, 'F', 2033), +(20768, 'Audrey', 1918, 'F', 2022), +(20769, 'Christine', 1918, 'F', 2014), +(20770, 'Fannie', 1918, 'F', 2014), +(20771, 'Hattie', 1918, 'F', 1998), +(20772, 'Alberta', 1918, 'F', 1988), +(20773, 'Ada', 1918, 'F', 1943), +(20774, 'Cora', 1918, 'F', 1916), +(20775, 'Verna', 1918, 'F', 1873), +(20776, 'Jeanne', 1918, 'F', 1846), +(20777, 'Dolores', 1918, 'F', 1835), +(20778, 'Wanda', 1918, 'F', 1827), +(20779, 'Janet', 1918, 'F', 1812), +(20780, 'Muriel', 1918, 'F', 1797), +(20781, 'Jeanette', 1918, 'F', 1774), +(20782, 'Lula', 1918, 'F', 1771), +(20783, 'Patricia', 1918, 'F', 1760), +(20784, 'Victoria', 1918, 'F', 1758), +(20785, 'Madeline', 1918, 'F', 1745), +(20786, 'Dora', 1918, 'F', 1738), +(20787, 'Mamie', 1918, 'F', 1708), +(20788, 'Miriam', 1918, 'F', 1708), +(20789, 'Estelle', 1918, 'F', 1702), +(20790, 'Naomi', 1918, 'F', 1692), +(20791, 'Olga', 1918, 'F', 1691), +(20792, 'Roberta', 1918, 'F', 1680), +(20793, 'Olive', 1918, 'F', 1618), +(20794, 'Mable', 1918, 'F', 1593), +(20795, 'Winifred', 1918, 'F', 1593), +(20796, 'Lola', 1918, 'F', 1567), +(20797, 'Maria', 1918, 'F', 1543), +(20798, 'Rachel', 1918, 'F', 1542), +(20799, 'Daisy', 1918, 'F', 1524), +(20800, 'Flora', 1918, 'F', 1504), +(20801, 'Anita', 1918, 'F', 1482), +(20802, 'Elaine', 1918, 'F', 1473), +(20803, 'Erma', 1918, 'F', 1462), +(20804, 'Caroline', 1918, 'F', 1457), +(20805, 'Sadie', 1918, 'F', 1453), +(20806, 'Lucile', 1918, 'F', 1447), +(20807, 'Henrietta', 1918, 'F', 1411), +(20808, 'Maggie', 1918, 'F', 1395), +(20809, 'Susie', 1918, 'F', 1388), +(20810, 'Joan', 1918, 'F', 1384), +(20811, 'Nora', 1918, 'F', 1381), +(20812, 'Lottie', 1918, 'F', 1379), +(20813, 'Marcella', 1918, 'F', 1343), +(20814, 'Fern', 1918, 'F', 1341), +(20815, 'Arlene', 1918, 'F', 1340), +(20816, 'Irma', 1918, 'F', 1332), +(20817, 'Carolyn', 1918, 'F', 1329), +(20818, 'Eula', 1918, 'F', 1306), +(20819, 'Adeline', 1918, 'F', 1301), +(20820, 'Joyce', 1918, 'F', 1261), +(20821, 'Rosemary', 1918, 'F', 1259), +(20822, 'Rebecca', 1918, 'F', 1243), +(20823, 'Lorene', 1918, 'F', 1238), +(20824, 'Rosie', 1918, 'F', 1189), +(20825, 'Nettie', 1918, 'F', 1167), +(20826, 'Nina', 1918, 'F', 1165), +(20827, 'Della', 1918, 'F', 1162), +(20828, 'Bonnie', 1918, 'F', 1151), +(20829, 'Antoinette', 1918, 'F', 1149), +(20830, 'Lydia', 1918, 'F', 1148), +(20831, 'Regina', 1918, 'F', 1132), +(20832, 'Veronica', 1918, 'F', 1117), +(20833, 'Amelia', 1918, 'F', 1115), +(20834, 'Sally', 1918, 'F', 1086), +(20835, 'Jeannette', 1918, 'F', 1077), +(20836, 'Claire', 1918, 'F', 1072), +(20837, 'Dorothea', 1918, 'F', 1065), +(20838, 'Margie', 1918, 'F', 1064), +(20839, 'Eloise', 1918, 'F', 1063), +(20840, 'Isabel', 1918, 'F', 1041), +(20841, 'Adele', 1918, 'F', 1030), +(20842, 'Freda', 1918, 'F', 1025), +(20843, 'Goldie', 1918, 'F', 1021), +(20844, 'Essie', 1918, 'F', 1019), +(20845, 'Katie', 1918, 'F', 1013), +(20846, 'Carol', 1918, 'F', 1011), +(20847, 'Cleo', 1918, 'F', 1009), +(20848, 'Constance', 1918, 'F', 971), +(20849, 'Laverne', 1918, 'F', 965), +(20850, 'May', 1918, 'F', 961), +(20851, 'Ollie', 1918, 'F', 956), +(20852, 'Angeline', 1918, 'F', 949), +(20853, 'Luella', 1918, 'F', 949), +(20854, 'Angelina', 1918, 'F', 935), +(20855, 'Cecelia', 1918, 'F', 934), +(20856, 'Faye', 1918, 'F', 932), +(20857, 'Effie', 1918, 'F', 918), +(20858, 'Susan', 1918, 'F', 912), +(20859, 'Lela', 1918, 'F', 896), +(20860, 'Johnnie', 1918, 'F', 890), +(20861, 'Rosalie', 1918, 'F', 890), +(20862, 'Iva', 1918, 'F', 889), +(20863, 'Isabelle', 1918, 'F', 886), +(20864, 'Addie', 1918, 'F', 881), +(20865, 'Ora', 1918, 'F', 858), +(20866, 'Sallie', 1918, 'F', 850), +(20867, 'Annette', 1918, 'F', 846), +(20868, 'Ernestine', 1918, 'F', 823), +(20869, 'Melba', 1918, 'F', 822), +(20870, 'Jewell', 1918, 'F', 821), +(20871, 'Alta', 1918, 'F', 820), +(20872, 'Frieda', 1918, 'F', 804), +(20873, 'Selma', 1918, 'F', 798), +(20874, 'Celia', 1918, 'F', 791), +(20875, 'Elva', 1918, 'F', 789), +(20876, 'Sue', 1918, 'F', 785), +(20877, 'Leola', 1918, 'F', 778), +(20878, 'Eleanore', 1918, 'F', 761), +(20879, 'Cecilia', 1918, 'F', 755), +(20880, 'Etta', 1918, 'F', 755), +(20881, 'Lila', 1918, 'F', 748), +(20882, 'Jewel', 1918, 'F', 747), +(20883, 'Donna', 1918, 'F', 746), +(20884, 'Peggy', 1918, 'F', 735), +(20885, 'Helene', 1918, 'F', 728), +(20886, 'Maude', 1918, 'F', 727), +(20887, 'Lizzie', 1918, 'F', 726), +(20888, 'Angela', 1918, 'F', 721), +(20889, 'Billie', 1918, 'F', 709), +(20890, 'Ina', 1918, 'F', 707), +(20891, 'Beverly', 1918, 'F', 706), +(20892, 'Mollie', 1918, 'F', 701), +(20893, 'Matilda', 1918, 'F', 690), +(20894, 'Ola', 1918, 'F', 689), +(20895, 'Reba', 1918, 'F', 689), +(20896, 'Nell', 1918, 'F', 687), +(20897, 'Teresa', 1918, 'F', 674), +(20898, 'Fay', 1918, 'F', 663), +(20899, 'Elma', 1918, 'F', 659), +(20900, 'Gwendolyn', 1918, 'F', 657), +(20901, 'Janie', 1918, 'F', 656), +(20902, 'Iris', 1918, 'F', 655), +(20903, 'Francis', 1918, 'F', 653), +(20904, 'Carmen', 1918, 'F', 637), +(20905, 'Nannie', 1918, 'F', 631), +(20906, 'Sophia', 1918, 'F', 629), +(20907, 'Estella', 1918, 'F', 597), +(20908, 'Imogene', 1918, 'F', 590), +(20909, 'Leah', 1918, 'F', 588), +(20910, 'Bette', 1918, 'F', 582), +(20911, 'Edythe', 1918, 'F', 582), +(20912, 'Elnora', 1918, 'F', 579), +(20913, 'Elvira', 1918, 'F', 575), +(20914, 'Amy', 1918, 'F', 573), +(20915, 'Elinor', 1918, 'F', 571), +(20916, 'Virgie', 1918, 'F', 566), +(20917, 'Flossie', 1918, 'F', 564), +(20918, 'Harriett', 1918, 'F', 564), +(20919, 'Ila', 1918, 'F', 564), +(20920, 'Lenora', 1918, 'F', 563), +(20921, 'Eugenia', 1918, 'F', 561), +(20922, 'Clarice', 1918, 'F', 548), +(20923, 'Yvonne', 1918, 'F', 523), +(20924, 'Bettie', 1918, 'F', 522), +(20925, 'Priscilla', 1918, 'F', 518), +(20926, 'Rena', 1918, 'F', 518), +(20927, 'Carmela', 1918, 'F', 516), +(20928, 'Gloria', 1918, 'F', 516), +(20929, 'Hannah', 1918, 'F', 513), +(20930, 'Janice', 1918, 'F', 510), +(20931, 'Lee', 1918, 'F', 507), +(20932, 'Millie', 1918, 'F', 506), +(20933, 'Winnie', 1918, 'F', 504), +(20934, 'Cecile', 1918, 'F', 495), +(20935, 'Helena', 1918, 'F', 488), +(20936, 'Adelaide', 1918, 'F', 486), +(20937, 'Bernadine', 1918, 'F', 486), +(20938, 'Annabelle', 1918, 'F', 484), +(20939, 'Nadine', 1918, 'F', 484), +(20940, 'Arline', 1918, 'F', 482), +(20941, 'Berniece', 1918, 'F', 476), +(20942, 'Frankie', 1918, 'F', 474), +(20943, 'Letha', 1918, 'F', 473), +(20944, 'Zelma', 1918, 'F', 471), +(20945, 'Myra', 1918, 'F', 468), +(20946, 'Olivia', 1918, 'F', 466), +(20947, 'Natalie', 1918, 'F', 465), +(20948, 'Madge', 1918, 'F', 464), +(20949, 'Sybil', 1918, 'F', 460), +(20950, 'Neva', 1918, 'F', 457), +(20951, 'Carmella', 1918, 'F', 455), +(20952, 'Gracie', 1918, 'F', 448), +(20953, 'Connie', 1918, 'F', 439), +(20954, 'Odessa', 1918, 'F', 437), +(20955, 'Delores', 1918, 'F', 436), +(20956, 'Rhoda', 1918, 'F', 433), +(20957, 'Josie', 1918, 'F', 430), +(20958, 'Avis', 1918, 'F', 429), +(20959, 'Claudia', 1918, 'F', 428), +(20960, 'Allie', 1918, 'F', 427), +(20961, 'Willa', 1918, 'F', 425), +(20962, 'Cornelia', 1918, 'F', 424), +(20963, 'Rosella', 1918, 'F', 420), +(20964, 'Dollie', 1918, 'F', 415), +(20965, 'Dorthy', 1918, 'F', 412), +(20966, 'Lenore', 1918, 'F', 412), +(20967, 'Alyce', 1918, 'F', 404), +(20968, 'Iona', 1918, 'F', 404), +(20969, 'Lora', 1918, 'F', 401), +(20970, 'Amanda', 1918, 'F', 397), +(20971, 'Lorena', 1918, 'F', 397), +(20972, 'Concetta', 1918, 'F', 396), +(20973, 'Hester', 1918, 'F', 394), +(20974, 'Gussie', 1918, 'F', 391), +(20975, 'Nola', 1918, 'F', 390), +(20976, 'Lily', 1918, 'F', 388), +(20977, 'Tillie', 1918, 'F', 388), +(20978, 'Loraine', 1918, 'F', 387), +(20979, 'Eliza', 1918, 'F', 386), +(20980, 'Rosetta', 1918, 'F', 379), +(20981, 'Margery', 1918, 'F', 378), +(20982, 'Merle', 1918, 'F', 376), +(20983, 'Stephanie', 1918, 'F', 374), +(20984, 'Katharine', 1918, 'F', 372), +(20985, 'Lou', 1918, 'F', 371), +(20986, 'Corinne', 1918, 'F', 370), +(20987, 'Hope', 1918, 'F', 369), +(20988, 'Leila', 1918, 'F', 369), +(20989, 'Iola', 1918, 'F', 368), +(20990, 'Jimmie', 1918, 'F', 366), +(20991, 'Aline', 1918, 'F', 363), +(20992, 'Lessie', 1918, 'F', 361), +(20993, 'Tessie', 1918, 'F', 360), +(20994, 'Leota', 1918, 'F', 359), +(20995, 'Augusta', 1918, 'F', 358), +(20996, 'Ramona', 1918, 'F', 358), +(20997, 'Aileen', 1918, 'F', 357), +(20998, 'Ione', 1918, 'F', 356), +(20999, 'Dolly', 1918, 'F', 354), +(21000, 'Maudie', 1918, 'F', 354), +(21001, 'Theda', 1918, 'F', 354), +(21002, 'Dixie', 1918, 'F', 350), +(21003, 'Christina', 1918, 'F', 346), +(21004, 'Beth', 1918, 'F', 335), +(21005, 'Wilda', 1918, 'F', 332), +(21006, 'Callie', 1918, 'F', 331), +(21007, 'Judith', 1918, 'F', 331), +(21008, 'Corine', 1918, 'F', 324), +(21009, 'Linda', 1918, 'F', 322), +(21010, 'Erna', 1918, 'F', 321), +(21011, 'Florine', 1918, 'F', 321), +(21012, 'Lilly', 1918, 'F', 319), +(21013, 'Althea', 1918, 'F', 318), +(21014, 'Eddie', 1918, 'F', 315), +(21015, 'Robbie', 1918, 'F', 315), +(21016, 'Ophelia', 1918, 'F', 313), +(21017, 'Pearlie', 1918, 'F', 312), +(21018, 'Kay', 1918, 'F', 311), +(21019, 'Roxie', 1918, 'F', 309), +(21020, 'Bertie', 1918, 'F', 308), +(21021, 'Dessie', 1918, 'F', 308), +(21022, 'Lelia', 1918, 'F', 308), +(21023, 'Johanna', 1918, 'F', 307), +(21024, 'Molly', 1918, 'F', 306), +(21025, 'Yolanda', 1918, 'F', 306), +(21026, 'Reva', 1918, 'F', 304), +(21027, 'Joy', 1918, 'F', 303), +(21028, 'Kate', 1918, 'F', 302), +(21029, 'Maurine', 1918, 'F', 302), +(21030, 'Sibyl', 1918, 'F', 299), +(21031, 'Delia', 1918, 'F', 294), +(21032, 'Antonia', 1918, 'F', 292), +(21033, 'Elisabeth', 1918, 'F', 292), +(21034, 'Polly', 1918, 'F', 292), +(21035, 'Mavis', 1918, 'F', 290), +(21036, 'Jacqueline', 1918, 'F', 286), +(21037, 'Belle', 1918, 'F', 285), +(21038, 'Oma', 1918, 'F', 284), +(21039, 'Bernadette', 1918, 'F', 283), +(21040, 'Verda', 1918, 'F', 283), +(21041, 'Isabell', 1918, 'F', 281), +(21042, 'Nona', 1918, 'F', 280), +(21043, 'Glenna', 1918, 'F', 276), +(21044, 'Georgie', 1918, 'F', 275), +(21045, 'Madelyn', 1918, 'F', 275), +(21046, 'Mayme', 1918, 'F', 274), +(21047, 'Alvina', 1918, 'F', 272), +(21048, 'Cynthia', 1918, 'F', 271), +(21049, 'Beryl', 1918, 'F', 268), +(21050, 'Bobbie', 1918, 'F', 267), +(21051, 'Paula', 1918, 'F', 265), +(21052, 'Philomena', 1918, 'F', 265), +(21053, 'Birdie', 1918, 'F', 264), +(21054, 'Harriette', 1918, 'F', 264), +(21055, 'Tommie', 1918, 'F', 262), +(21056, 'Earline', 1918, 'F', 260), +(21057, 'Garnet', 1918, 'F', 258), +(21058, 'Vesta', 1918, 'F', 257), +(21059, 'Marcia', 1918, 'F', 256), +(21060, 'Clare', 1918, 'F', 255), +(21061, 'Isabella', 1918, 'F', 254), +(21062, 'Rubye', 1918, 'F', 254), +(21063, 'Leone', 1918, 'F', 252), +(21064, 'Marjory', 1918, 'F', 251), +(21065, 'Louella', 1918, 'F', 250), +(21066, 'Zelda', 1918, 'F', 250), +(21067, 'Charlene', 1918, 'F', 248), +(21068, 'Elda', 1918, 'F', 248), +(21069, 'John', 1918, 'F', 248), +(21070, 'Angie', 1918, 'F', 246), +(21071, 'Marietta', 1918, 'F', 245), +(21072, 'Marilyn', 1918, 'F', 245), +(21073, 'Mona', 1918, 'F', 245), +(21074, 'Zella', 1918, 'F', 244), +(21075, 'Valeria', 1918, 'F', 243), +(21076, 'Hallie', 1918, 'F', 241), +(21077, 'Wilhelmina', 1918, 'F', 239), +(21078, 'Bella', 1918, 'F', 238), +(21079, 'Cecil', 1918, 'F', 238), +(21080, 'Guadalupe', 1918, 'F', 238), +(21081, 'Catharine', 1918, 'F', 236), +(21082, 'Mercedes', 1918, 'F', 236), +(21083, 'Leora', 1918, 'F', 235), +(21084, 'Suzanne', 1918, 'F', 234), +(21085, 'Leta', 1918, 'F', 233), +(21086, 'Rae', 1918, 'F', 231), +(21087, 'Allene', 1918, 'F', 230), +(21088, 'Jannie', 1918, 'F', 230), +(21089, 'Pansy', 1918, 'F', 229), +(21090, 'Aurora', 1918, 'F', 226), +(21091, 'Ferne', 1918, 'F', 225), +(21092, 'Floy', 1918, 'F', 225), +(21093, 'Lauretta', 1918, 'F', 224), +(21094, 'Monica', 1918, 'F', 223), +(21095, 'Winona', 1918, 'F', 223), +(21096, 'Evalyn', 1918, 'F', 222), +(21097, 'Evangeline', 1918, 'F', 222), +(21098, 'Gertie', 1918, 'F', 220), +(21099, 'Vada', 1918, 'F', 220), +(21100, 'Vida', 1918, 'F', 220), +(21101, 'Enid', 1918, 'F', 219), +(21102, 'Agatha', 1918, 'F', 218), +(21103, 'Hortense', 1918, 'F', 218), +(21104, 'Lorna', 1918, 'F', 218), +(21105, 'Retha', 1918, 'F', 218), +(21106, 'Queen', 1918, 'F', 216), +(21107, 'Lupe', 1918, 'F', 215), +(21108, 'Phoebe', 1918, 'F', 215), +(21109, 'James', 1918, 'F', 212), +(21110, 'Maybelle', 1918, 'F', 212), +(21111, 'Mozelle', 1918, 'F', 212), +(21112, 'Diana', 1918, 'F', 209), +(21113, 'Elise', 1918, 'F', 209), +(21114, 'Lorine', 1918, 'F', 207), +(21115, 'Gail', 1918, 'F', 206), +(21116, 'Melva', 1918, 'F', 206), +(21117, 'Elvera', 1918, 'F', 204), +(21118, 'Una', 1918, 'F', 204), +(21119, 'Ester', 1918, 'F', 202), +(21120, 'Fanny', 1918, 'F', 202), +(21121, 'Julie', 1918, 'F', 202), +(21122, 'Valerie', 1918, 'F', 202), +(21123, 'Deloris', 1918, 'F', 201), +(21124, 'Rosalind', 1918, 'F', 201), +(21125, 'Albina', 1918, 'F', 200), +(21126, 'Consuelo', 1918, 'F', 200), +(21127, 'Lura', 1918, 'F', 200), +(21128, 'Minerva', 1918, 'F', 200), +(21129, 'Jo', 1918, 'F', 199), +(21130, 'Margret', 1918, 'F', 199), +(21131, 'Freida', 1918, 'F', 198), +(21132, 'Lona', 1918, 'F', 198), +(21133, 'Alfreda', 1918, 'F', 196), +(21134, 'Alva', 1918, 'F', 196), +(21135, 'Camille', 1918, 'F', 196), +(21136, 'Johnie', 1918, 'F', 196), +(21137, 'Alene', 1918, 'F', 194), +(21138, 'Dovie', 1918, 'F', 194), +(21139, 'Jaunita', 1918, 'F', 193), +(21140, 'Louisa', 1918, 'F', 193), +(21141, 'Alda', 1918, 'F', 191), +(21142, 'Claudine', 1918, 'F', 191), +(21143, 'Lucia', 1918, 'F', 191), +(21144, 'Aurelia', 1918, 'F', 188), +(21145, 'Elena', 1918, 'F', 188), +(21146, 'Dortha', 1918, 'F', 186), +(21147, 'Ilene', 1918, 'F', 186), +(21148, 'Oleta', 1918, 'F', 186), +(21149, 'Lucinda', 1918, 'F', 185), +(21150, 'Magdalene', 1918, 'F', 185), +(21151, 'Syble', 1918, 'F', 184), +(21152, 'Edwina', 1918, 'F', 183), +(21153, 'Lulu', 1918, 'F', 183), +(21154, 'Maud', 1918, 'F', 182), +(21155, 'Yetta', 1918, 'F', 182), +(21156, 'Bennie', 1918, 'F', 181), +(21157, 'Darlene', 1918, 'F', 181), +(21158, 'Katheryn', 1918, 'F', 181), +(21159, 'Orpha', 1918, 'F', 181), +(21160, 'Joanna', 1918, 'F', 180), +(21161, 'Madeleine', 1918, 'F', 180), +(21162, 'Mathilda', 1918, 'F', 180), +(21163, 'Alpha', 1918, 'F', 179), +(21164, 'Margarita', 1918, 'F', 179), +(21165, 'Marianne', 1918, 'F', 179), +(21166, 'Betsy', 1918, 'F', 178), +(21167, 'Cassie', 1918, 'F', 178), +(21168, 'Charlie', 1918, 'F', 178), +(21169, 'Robert', 1918, 'F', 178), +(21170, 'Patsy', 1918, 'F', 177), +(21171, 'Roslyn', 1918, 'F', 177), +(21172, 'Ruthie', 1918, 'F', 177), +(21173, 'Gretchen', 1918, 'F', 176), +(21174, 'Linnie', 1918, 'F', 176), +(21175, 'Zola', 1918, 'F', 176), +(21176, 'Elouise', 1918, 'F', 175), +(21177, 'Rowena', 1918, 'F', 175), +(21178, 'Velda', 1918, 'F', 175), +(21179, 'Ava', 1918, 'F', 174), +(21180, 'Emilie', 1918, 'F', 174), +(21181, 'Faith', 1918, 'F', 174), +(21182, 'Rhea', 1918, 'F', 174), +(21183, 'Corrine', 1918, 'F', 173), +(21184, 'Elsa', 1918, 'F', 173), +(21185, 'Georgiana', 1918, 'F', 172), +(21186, 'William', 1918, 'F', 172), +(21187, 'Joanne', 1918, 'F', 171), +(21188, 'Camilla', 1918, 'F', 170), +(21189, 'Eleanora', 1918, 'F', 170), +(21190, 'Mazie', 1918, 'F', 170), +(21191, 'Adell', 1918, 'F', 169), +(21192, 'Belva', 1918, 'F', 169), +(21193, 'Ona', 1918, 'F', 169), +(21194, 'Maryann', 1918, 'F', 168), +(21195, 'Veda', 1918, 'F', 167), +(21196, 'Theodora', 1918, 'F', 166), +(21197, 'Winnifred', 1918, 'F', 166), +(21198, 'Margarette', 1918, 'F', 165), +(21199, 'Dorris', 1918, 'F', 164), +(21200, 'Hettie', 1918, 'F', 164), +(21201, 'Idella', 1918, 'F', 164), +(21202, 'Juliette', 1918, 'F', 164), +(21203, 'Nelda', 1918, 'F', 164), +(21204, 'Adela', 1918, 'F', 163), +(21205, 'Dorotha', 1918, 'F', 163), +(21206, 'Elna', 1918, 'F', 162), +(21207, 'Justine', 1918, 'F', 162), +(21208, 'Ray', 1918, 'F', 162), +(21209, 'Lettie', 1918, 'F', 161), +(21210, 'Verla', 1918, 'F', 161), +(21211, 'Delma', 1918, 'F', 160), +(21212, 'Filomena', 1918, 'F', 160), +(21213, 'Hedwig', 1918, 'F', 159), +(21214, 'Ivy', 1918, 'F', 159), +(21215, 'Artie', 1918, 'F', 158), +(21216, 'Florene', 1918, 'F', 158), +(21217, 'Ima', 1918, 'F', 158), +(21218, 'Vernice', 1918, 'F', 158), +(21219, 'Anastasia', 1918, 'F', 157), +(21220, 'George', 1918, 'F', 157), +(21221, 'Jayne', 1918, 'F', 156), +(21222, 'Blanch', 1918, 'F', 155), +(21223, 'Ursula', 1918, 'F', 155), +(21224, 'Berneice', 1918, 'F', 154), +(21225, 'Celeste', 1918, 'F', 154), +(21226, 'Mina', 1918, 'F', 153), +(21227, 'Rosemarie', 1918, 'F', 153), +(21228, 'Ethelyn', 1918, 'F', 152), +(21229, 'Hellen', 1918, 'F', 152), +(21230, 'Myrtice', 1918, 'F', 152), +(21231, 'Myrtis', 1918, 'F', 152), +(21232, 'Nelle', 1918, 'F', 152), +(21233, 'Gene', 1918, 'F', 151), +(21234, 'Manuela', 1918, 'F', 151), +(21235, 'Liberty', 1918, 'F', 150), +(21236, 'Marvel', 1918, 'F', 150), +(21237, 'Estell', 1918, 'F', 148), +(21238, 'Clementine', 1918, 'F', 147), +(21239, 'Golda', 1918, 'F', 147), +(21240, 'Evelyne', 1918, 'F', 146), +(21241, 'Magnolia', 1918, 'F', 146), +(21242, 'Charles', 1918, 'F', 144), +(21243, 'Marcelle', 1918, 'F', 144), +(21244, 'Georgianna', 1918, 'F', 143), +(21245, 'Judy', 1918, 'F', 143), +(21246, 'Cathryn', 1918, 'F', 142), +(21247, 'Crystal', 1918, 'F', 142), +(21248, 'Era', 1918, 'F', 142), +(21249, 'Jenny', 1918, 'F', 142), +(21250, 'Roma', 1918, 'F', 142), +(21251, 'Millicent', 1918, 'F', 141), +(21252, 'Jerry', 1918, 'F', 140), +(21253, 'Rosalee', 1918, 'F', 140), +(21254, 'Janette', 1918, 'F', 139), +(21255, 'Rachael', 1918, 'F', 139), +(21256, 'Freddie', 1918, 'F', 138), +(21257, 'Adella', 1918, 'F', 135), +(21258, 'Kathrine', 1918, 'F', 134), +(21259, 'Nita', 1918, 'F', 134), +(21260, 'Petra', 1918, 'F', 134), +(21261, 'Zora', 1918, 'F', 134), +(21262, 'Earnestine', 1918, 'F', 133), +(21263, 'Lavina', 1918, 'F', 133), +(21264, 'Leonora', 1918, 'F', 133), +(21265, 'Violette', 1918, 'F', 133), +(21266, 'Myrna', 1918, 'F', 132), +(21267, 'Odell', 1918, 'F', 132), +(21268, 'Annetta', 1918, 'F', 131), +(21269, 'Antonette', 1918, 'F', 131), +(21270, 'Lavonne', 1918, 'F', 131), +(21271, 'Reta', 1918, 'F', 131), +(21272, 'Albertha', 1918, 'F', 129), +(21273, 'Annabel', 1918, 'F', 129), +(21274, 'Therese', 1918, 'F', 129), +(21275, 'Lavern', 1918, 'F', 128), +(21276, 'Tina', 1918, 'F', 128), +(21277, 'Eve', 1918, 'F', 127), +(21278, 'Leslie', 1918, 'F', 127), +(21279, 'Leatha', 1918, 'F', 126), +(21280, 'Rubie', 1918, 'F', 126), +(21281, 'Velva', 1918, 'F', 126), +(21282, 'Cordelia', 1918, 'F', 125), +(21283, 'Delphine', 1918, 'F', 125), +(21284, 'Easter', 1918, 'F', 125), +(21285, 'Eldora', 1918, 'F', 125), +(21286, 'Felicia', 1918, 'F', 125), +(21287, 'Gayle', 1918, 'F', 125), +(21288, 'Libby', 1918, 'F', 125), +(21289, 'Lida', 1918, 'F', 125), +(21290, 'Ardis', 1918, 'F', 124), +(21291, 'Lilyan', 1918, 'F', 124), +(21292, 'Ellie', 1918, 'F', 123), +(21293, 'Dena', 1918, 'F', 122), +(21294, 'Abbie', 1918, 'F', 120), +(21295, 'Yvette', 1918, 'F', 120), +(21296, 'Juana', 1918, 'F', 119), +(21297, 'Alicia', 1918, 'F', 118), +(21298, 'Larue', 1918, 'F', 118), +(21299, 'Lue', 1918, 'F', 118), +(21300, 'Malinda', 1918, 'F', 118), +(21301, 'Mittie', 1918, 'F', 118), +(21302, 'Rosalyn', 1918, 'F', 118), +(21303, 'Emilia', 1918, 'F', 117), +(21304, 'Jackie', 1918, 'F', 117), +(21305, 'Marianna', 1918, 'F', 117), +(21306, 'Meta', 1918, 'F', 117), +(21307, 'Ouida', 1918, 'F', 117), +(21308, 'Twila', 1918, 'F', 117), +(21309, 'Emogene', 1918, 'F', 116), +(21310, 'Idell', 1918, 'F', 116), +(21311, 'Audra', 1918, 'F', 115), +(21312, 'Dona', 1918, 'F', 115), +(21313, 'Gilda', 1918, 'F', 115), +(21314, 'Lovie', 1918, 'F', 115), +(21315, 'Vincenza', 1918, 'F', 115), +(21316, 'Almeda', 1918, 'F', 114), +(21317, 'Earlene', 1918, 'F', 114), +(21318, 'Joe', 1918, 'F', 114), +(21319, 'Madaline', 1918, 'F', 114), +(21320, 'Tressie', 1918, 'F', 114), +(21321, 'Aletha', 1918, 'F', 113), +(21322, 'Alvera', 1918, 'F', 113), +(21323, 'Bethel', 1918, 'F', 113), +(21324, 'Claudie', 1918, 'F', 113), +(21325, 'Joann', 1918, 'F', 113), +(21326, 'Maureen', 1918, 'F', 113), +(21327, 'Ocie', 1918, 'F', 113), +(21328, 'Sammie', 1918, 'F', 113), +(21329, 'Laverna', 1918, 'F', 112), +(21330, 'Norene', 1918, 'F', 112), +(21331, 'Vergie', 1918, 'F', 112), +(21332, 'Evie', 1918, 'F', 111), +(21333, 'Mandy', 1918, 'F', 111), +(21334, 'Rosamond', 1918, 'F', 111), +(21335, 'Bettye', 1918, 'F', 110), +(21336, 'Lyda', 1918, 'F', 110), +(21337, 'Vivienne', 1918, 'F', 110), +(21338, 'Clyde', 1918, 'F', 109), +(21339, 'Francisca', 1918, 'F', 109), +(21340, 'Vernie', 1918, 'F', 109), +(21341, 'Berta', 1918, 'F', 108), +(21342, 'Elmira', 1918, 'F', 108), +(21343, 'Kathryne', 1918, 'F', 108), +(21344, 'Nan', 1918, 'F', 108), +(21345, 'Novella', 1918, 'F', 107), +(21346, 'Trinidad', 1918, 'F', 107), +(21347, 'Celestine', 1918, 'F', 106), +(21348, 'Dorcas', 1918, 'F', 106), +(21349, 'Germaine', 1918, 'F', 106), +(21350, 'Grayce', 1918, 'F', 106), +(21351, 'Verona', 1918, 'F', 106), +(21352, 'Adelle', 1918, 'F', 105), +(21353, 'Esta', 1918, 'F', 105), +(21354, 'Lilian', 1918, 'F', 105), +(21355, 'Mozell', 1918, 'F', 105), +(21356, 'Sabina', 1918, 'F', 105), +(21357, 'Theo', 1918, 'F', 105), +(21358, 'Georgina', 1918, 'F', 104), +(21359, 'Lina', 1918, 'F', 104), +(21360, 'Sonia', 1918, 'F', 104), +(21361, 'Alverta', 1918, 'F', 103), +(21362, 'Bess', 1918, 'F', 103), +(21363, 'Jettie', 1918, 'F', 103), +(21364, 'Susanna', 1918, 'F', 103), +(21365, 'Vernell', 1918, 'F', 103), +(21366, 'Hilma', 1918, 'F', 102), +(21367, 'Treva', 1918, 'F', 102), +(21368, 'Charline', 1918, 'F', 101), +(21369, 'Hulda', 1918, 'F', 101), +(21370, 'Pearline', 1918, 'F', 101), +(21371, 'Juliet', 1918, 'F', 100), +(21372, 'Octavia', 1918, 'F', 100), +(21373, 'John', 1918, 'M', 56559), +(21374, 'William', 1918, 'M', 45290), +(21375, 'James', 1918, 'M', 42122), +(21376, 'Robert', 1918, 'M', 40623), +(21377, 'Charles', 1918, 'M', 26922), +(21378, 'George', 1918, 'M', 26321), +(21379, 'Joseph', 1918, 'M', 26262), +(21380, 'Edward', 1918, 'M', 19489), +(21381, 'Frank', 1918, 'M', 17018), +(21382, 'Thomas', 1918, 'M', 13911), +(21383, 'Walter', 1918, 'M', 13338), +(21384, 'Richard', 1918, 'M', 12325), +(21385, 'Harold', 1918, 'M', 12184), +(21386, 'Paul', 1918, 'M', 11755), +(21387, 'Raymond', 1918, 'M', 11603), +(21388, 'Henry', 1918, 'M', 11354), +(21389, 'Arthur', 1918, 'M', 10104), +(21390, 'Donald', 1918, 'M', 9974), +(21391, 'Albert', 1918, 'M', 9936), +(21392, 'Harry', 1918, 'M', 9897), +(21393, 'Jack', 1918, 'M', 8342), +(21394, 'Ralph', 1918, 'M', 8162), +(21395, 'Clarence', 1918, 'M', 7188), +(21396, 'Louis', 1918, 'M', 7083), +(21397, 'Carl', 1918, 'M', 7004), +(21398, 'Howard', 1918, 'M', 6929), +(21399, 'Kenneth', 1918, 'M', 6811), +(21400, 'David', 1918, 'M', 6627), +(21401, 'Willie', 1918, 'M', 6537), +(21402, 'Francis', 1918, 'M', 6347), +(21403, 'Earl', 1918, 'M', 6323), +(21404, 'Roy', 1918, 'M', 6211), +(21405, 'Fred', 1918, 'M', 6179), +(21406, 'Joe', 1918, 'M', 5803), +(21407, 'Eugene', 1918, 'M', 5632), +(21408, 'Stanley', 1918, 'M', 5620), +(21409, 'Ernest', 1918, 'M', 5526), +(21410, 'Lawrence', 1918, 'M', 5371), +(21411, 'Anthony', 1918, 'M', 5167), +(21412, 'Herbert', 1918, 'M', 5128), +(21413, 'Leonard', 1918, 'M', 4980), +(21414, 'Alfred', 1918, 'M', 4874), +(21415, 'Samuel', 1918, 'M', 4772), +(21416, 'Elmer', 1918, 'M', 4373), +(21417, 'Michael', 1918, 'M', 4296), +(21418, 'Andrew', 1918, 'M', 4139), +(21419, 'Bernard', 1918, 'M', 4098), +(21420, 'Leo', 1918, 'M', 4035), +(21421, 'Norman', 1918, 'M', 3867), +(21422, 'Russell', 1918, 'M', 3833), +(21423, 'Lloyd', 1918, 'M', 3741), +(21424, 'Daniel', 1918, 'M', 3726), +(21425, 'Peter', 1918, 'M', 3712), +(21426, 'Chester', 1918, 'M', 3692), +(21427, 'Edwin', 1918, 'M', 3487), +(21428, 'Melvin', 1918, 'M', 3469), +(21429, 'Leroy', 1918, 'M', 3422), +(21430, 'Woodrow', 1918, 'M', 3358), +(21431, 'Frederick', 1918, 'M', 3351), +(21432, 'Clifford', 1918, 'M', 3299), +(21433, 'Floyd', 1918, 'M', 3235), +(21434, 'Lester', 1918, 'M', 3228), +(21435, 'Victor', 1918, 'M', 3184), +(21436, 'Theodore', 1918, 'M', 3143), +(21437, 'Herman', 1918, 'M', 3043), +(21438, 'Vernon', 1918, 'M', 2971), +(21439, 'Clyde', 1918, 'M', 2918), +(21440, 'Marvin', 1918, 'M', 2829), +(21441, 'Ray', 1918, 'M', 2762), +(21442, 'Charlie', 1918, 'M', 2744), +(21443, 'Philip', 1918, 'M', 2733), +(21444, 'Gerald', 1918, 'M', 2711), +(21445, 'Vincent', 1918, 'M', 2621), +(21446, 'Lewis', 1918, 'M', 2593), +(21447, 'Sam', 1918, 'M', 2505), +(21448, 'Milton', 1918, 'M', 2454), +(21449, 'Leon', 1918, 'M', 2443), +(21450, 'Benjamin', 1918, 'M', 2432), +(21451, 'Jesse', 1918, 'M', 2432), +(21452, 'Alvin', 1918, 'M', 2408), +(21453, 'Martin', 1918, 'M', 2402), +(21454, 'Cecil', 1918, 'M', 2328), +(21455, 'Willard', 1918, 'M', 2311), +(21456, 'Glenn', 1918, 'M', 2253), +(21457, 'Gordon', 1918, 'M', 2233), +(21458, 'Lee', 1918, 'M', 2159), +(21459, 'Harvey', 1918, 'M', 2112), +(21460, 'Oscar', 1918, 'M', 2111), +(21461, 'Edgar', 1918, 'M', 2087), +(21462, 'Warren', 1918, 'M', 1991), +(21463, 'Wayne', 1918, 'M', 1912), +(21464, 'Arnold', 1918, 'M', 1911), +(21465, 'Everett', 1918, 'M', 1891), +(21466, 'Claude', 1918, 'M', 1878), +(21467, 'Sidney', 1918, 'M', 1878), +(21468, 'Stephen', 1918, 'M', 1842), +(21469, 'Wilbur', 1918, 'M', 1800), +(21470, 'Allen', 1918, 'M', 1780), +(21471, 'Virgil', 1918, 'M', 1707), +(21472, 'Homer', 1918, 'M', 1679), +(21473, 'Morris', 1918, 'M', 1679), +(21474, 'Leslie', 1918, 'M', 1645), +(21475, 'Maurice', 1918, 'M', 1638), +(21476, 'Alexander', 1918, 'M', 1590), +(21477, 'Gilbert', 1918, 'M', 1577), +(21478, 'Max', 1918, 'M', 1536), +(21479, 'Marion', 1918, 'M', 1535), +(21480, 'Irving', 1918, 'M', 1534), +(21481, 'Steve', 1918, 'M', 1523), +(21482, 'Johnnie', 1918, 'M', 1521), +(21483, 'Dale', 1918, 'M', 1491), +(21484, 'Hugh', 1918, 'M', 1489), +(21485, 'Nicholas', 1918, 'M', 1488), +(21486, 'Hubert', 1918, 'M', 1454), +(21487, 'Douglas', 1918, 'M', 1432), +(21488, 'Roger', 1918, 'M', 1426), +(21489, 'Eddie', 1918, 'M', 1424), +(21490, 'Julius', 1918, 'M', 1416), +(21491, 'Luther', 1918, 'M', 1416), +(21492, 'Jessie', 1918, 'M', 1412), +(21493, 'Roland', 1918, 'M', 1385), +(21494, 'Wilson', 1918, 'M', 1381), +(21495, 'Curtis', 1918, 'M', 1336), +(21496, 'Wallace', 1918, 'M', 1334), +(21497, 'Glen', 1918, 'M', 1318), +(21498, 'Manuel', 1918, 'M', 1312), +(21499, 'Mike', 1918, 'M', 1286), +(21500, 'Ben', 1918, 'M', 1277), +(21501, 'Franklin', 1918, 'M', 1275), +(21502, 'Oliver', 1918, 'M', 1248), +(21503, 'Alex', 1918, 'M', 1207), +(21504, 'Horace', 1918, 'M', 1199), +(21505, 'Jacob', 1918, 'M', 1199), +(21506, 'Orville', 1918, 'M', 1188), +(21507, 'Tony', 1918, 'M', 1163), +(21508, 'Jerome', 1918, 'M', 1146), +(21509, 'Wesley', 1918, 'M', 1145), +(21510, 'Archie', 1918, 'M', 1111), +(21511, 'Tom', 1918, 'M', 1104), +(21512, 'Edmund', 1918, 'M', 1099), +(21513, 'Willis', 1918, 'M', 1091), +(21514, 'Earnest', 1918, 'M', 1084), +(21515, 'Bill', 1918, 'M', 1038), +(21516, 'Guy', 1918, 'M', 999), +(21517, 'Lyle', 1918, 'M', 993), +(21518, 'Bruce', 1918, 'M', 988), +(21519, 'Jerry', 1918, 'M', 986), +(21520, 'Matthew', 1918, 'M', 963), +(21521, 'Rudolph', 1918, 'M', 962), +(21522, 'Nathan', 1918, 'M', 945), +(21523, 'Otis', 1918, 'M', 936), +(21524, 'Clifton', 1918, 'M', 934), +(21525, 'Don', 1918, 'M', 931), +(21526, 'Emil', 1918, 'M', 912), +(21527, 'Salvatore', 1918, 'M', 908), +(21528, 'Marshall', 1918, 'M', 878), +(21529, 'Clayton', 1918, 'M', 877), +(21530, 'Calvin', 1918, 'M', 874), +(21531, 'Jimmie', 1918, 'M', 874), +(21532, 'Jose', 1918, 'M', 871), +(21533, 'Patrick', 1918, 'M', 871), +(21534, 'Angelo', 1918, 'M', 863), +(21535, 'Ira', 1918, 'M', 862), +(21536, 'Delbert', 1918, 'M', 833), +(21537, 'Jim', 1918, 'M', 827), +(21538, 'Clinton', 1918, 'M', 822), +(21539, 'Bennie', 1918, 'M', 819), +(21540, 'Ervin', 1918, 'M', 806), +(21541, 'Irvin', 1918, 'M', 798), +(21542, 'Merle', 1918, 'M', 795), +(21543, 'Wilbert', 1918, 'M', 790), +(21544, 'Sylvester', 1918, 'M', 766), +(21545, 'Nick', 1918, 'M', 761), +(21546, 'Abraham', 1918, 'M', 757), +(21547, 'Forrest', 1918, 'M', 757), +(21548, 'Ronald', 1918, 'M', 751), +(21549, 'Ivan', 1918, 'M', 749), +(21550, 'Felix', 1918, 'M', 746), +(21551, 'Phillip', 1918, 'M', 729), +(21552, 'Wilfred', 1918, 'M', 729), +(21553, 'Otto', 1918, 'M', 728), +(21554, 'Julian', 1918, 'M', 725), +(21555, 'Rufus', 1918, 'M', 721), +(21556, 'Dan', 1918, 'M', 710), +(21557, 'Jay', 1918, 'M', 706), +(21558, 'Bert', 1918, 'M', 698), +(21559, 'Leland', 1918, 'M', 690), +(21560, 'Grover', 1918, 'M', 673), +(21561, 'Dean', 1918, 'M', 668), +(21562, 'Nelson', 1918, 'M', 664), +(21563, 'Elbert', 1918, 'M', 663), +(21564, 'Gene', 1918, 'M', 663), +(21565, 'Nathaniel', 1918, 'M', 661), +(21566, 'Isaac', 1918, 'M', 658), +(21567, 'Lonnie', 1918, 'M', 658), +(21568, 'Aaron', 1918, 'M', 656), +(21569, 'Adam', 1918, 'M', 653), +(21570, 'Billy', 1918, 'M', 645), +(21571, 'Johnny', 1918, 'M', 644), +(21572, 'Alton', 1918, 'M', 642), +(21573, 'Pete', 1918, 'M', 638), +(21574, 'Adolph', 1918, 'M', 637), +(21575, 'Dennis', 1918, 'M', 637), +(21576, 'Johnie', 1918, 'M', 633), +(21577, 'Mark', 1918, 'M', 627), +(21578, 'Ellis', 1918, 'M', 624), +(21579, 'August', 1918, 'M', 618), +(21580, 'Myron', 1918, 'M', 609), +(21581, 'Karl', 1918, 'M', 601), +(21582, 'Dominick', 1918, 'M', 594), +(21583, 'Emmett', 1918, 'M', 591), +(21584, 'Owen', 1918, 'M', 591); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(21585, 'Antonio', 1918, 'M', 589), +(21586, 'Keith', 1918, 'M', 580), +(21587, 'Elwood', 1918, 'M', 572), +(21588, 'Grady', 1918, 'M', 569), +(21589, 'Ross', 1918, 'M', 569), +(21590, 'Loyd', 1918, 'M', 567), +(21591, 'Percy', 1918, 'M', 567), +(21592, 'Ted', 1918, 'M', 564), +(21593, 'Roscoe', 1918, 'M', 561), +(21594, 'Laurence', 1918, 'M', 557), +(21595, 'Dewey', 1918, 'M', 556), +(21596, 'Mack', 1918, 'M', 556), +(21597, 'Lowell', 1918, 'M', 555), +(21598, 'Perry', 1918, 'M', 553), +(21599, 'Dominic', 1918, 'M', 552), +(21600, 'Loren', 1918, 'M', 524), +(21601, 'Amos', 1918, 'M', 523), +(21602, 'Eldon', 1918, 'M', 522), +(21603, 'Carroll', 1918, 'M', 521), +(21604, 'Wendell', 1918, 'M', 519), +(21605, 'Erwin', 1918, 'M', 512), +(21606, 'Seymour', 1918, 'M', 511), +(21607, 'Rex', 1918, 'M', 510), +(21608, 'Malcolm', 1918, 'M', 508), +(21609, 'Byron', 1918, 'M', 505), +(21610, 'Fredrick', 1918, 'M', 503), +(21611, 'Sherman', 1918, 'M', 502), +(21612, 'Harley', 1918, 'M', 491), +(21613, 'Norbert', 1918, 'M', 484), +(21614, 'Austin', 1918, 'M', 483), +(21615, 'Quentin', 1918, 'M', 480), +(21616, 'Allan', 1918, 'M', 477), +(21617, 'Bob', 1918, 'M', 477), +(21618, 'Murray', 1918, 'M', 477), +(21619, 'Charley', 1918, 'M', 462), +(21620, 'Troy', 1918, 'M', 454), +(21621, 'Cornelius', 1918, 'M', 453), +(21622, 'Reuben', 1918, 'M', 453), +(21623, 'Burton', 1918, 'M', 450), +(21624, 'Gerard', 1918, 'M', 447), +(21625, 'Juan', 1918, 'M', 436), +(21626, 'Grant', 1918, 'M', 435), +(21627, 'Boyd', 1918, 'M', 433), +(21628, 'Millard', 1918, 'M', 433), +(21629, 'Tommie', 1918, 'M', 433), +(21630, 'Carlton', 1918, 'M', 431), +(21631, 'Mitchell', 1918, 'M', 431), +(21632, 'Aubrey', 1918, 'M', 428), +(21633, 'Edmond', 1918, 'M', 427), +(21634, 'Preston', 1918, 'M', 417), +(21635, 'Kermit', 1918, 'M', 409), +(21636, 'Dwight', 1918, 'M', 405), +(21637, 'Garland', 1918, 'M', 402), +(21638, 'Larry', 1918, 'M', 398), +(21639, 'Morton', 1918, 'M', 397), +(21640, 'Louie', 1918, 'M', 396), +(21641, 'Jasper', 1918, 'M', 390), +(21642, 'Junior', 1918, 'M', 389), +(21643, 'Jess', 1918, 'M', 387), +(21644, 'Emanuel', 1918, 'M', 384), +(21645, 'Steven', 1918, 'M', 378), +(21646, 'Jake', 1918, 'M', 377), +(21647, 'Simon', 1918, 'M', 374), +(21648, 'Harrison', 1918, 'M', 372), +(21649, 'Freddie', 1918, 'M', 371), +(21650, 'Solomon', 1918, 'M', 367), +(21651, 'Cleo', 1918, 'M', 363), +(21652, 'Will', 1918, 'M', 363), +(21653, 'Jesus', 1918, 'M', 362), +(21654, 'Lynn', 1918, 'M', 362), +(21655, 'Monroe', 1918, 'M', 362), +(21656, 'Andy', 1918, 'M', 361), +(21657, 'Neil', 1918, 'M', 359), +(21658, 'Thurman', 1918, 'M', 359), +(21659, 'Dave', 1918, 'M', 358), +(21660, 'Alphonse', 1918, 'M', 357), +(21661, 'Maynard', 1918, 'M', 352), +(21662, 'Moses', 1918, 'M', 352), +(21663, 'Armand', 1918, 'M', 351), +(21664, 'Mario', 1918, 'M', 351), +(21665, 'Earle', 1918, 'M', 350), +(21666, 'Bruno', 1918, 'M', 348), +(21667, 'Joel', 1918, 'M', 348), +(21668, 'Carlos', 1918, 'M', 347), +(21669, 'Clement', 1918, 'M', 344), +(21670, 'Wilmer', 1918, 'M', 344), +(21671, 'Laverne', 1918, 'M', 343), +(21672, 'Ollie', 1918, 'M', 336), +(21673, 'Elmo', 1918, 'M', 334), +(21674, 'Alan', 1918, 'M', 333), +(21675, 'Ed', 1918, 'M', 333), +(21676, 'Hyman', 1918, 'M', 333), +(21677, 'Roosevelt', 1918, 'M', 331), +(21678, 'Dallas', 1918, 'M', 330), +(21679, 'Thaddeus', 1918, 'M', 328), +(21680, 'Clark', 1918, 'M', 327), +(21681, 'Adrian', 1918, 'M', 325), +(21682, 'Clair', 1918, 'M', 325), +(21683, 'Wade', 1918, 'M', 324), +(21684, 'Conrad', 1918, 'M', 323), +(21685, 'Cleveland', 1918, 'M', 321), +(21686, 'Doyle', 1918, 'M', 321), +(21687, 'Harlan', 1918, 'M', 321), +(21688, 'Sol', 1918, 'M', 321), +(21689, 'Claud', 1918, 'M', 318), +(21690, 'Elton', 1918, 'M', 318), +(21691, 'Elvin', 1918, 'M', 317), +(21692, 'Forest', 1918, 'M', 316), +(21693, 'Anton', 1918, 'M', 314), +(21694, 'Cyril', 1918, 'M', 313), +(21695, 'Gus', 1918, 'M', 309), +(21696, 'Rocco', 1918, 'M', 307), +(21697, 'Billie', 1918, 'M', 306), +(21698, 'Russel', 1918, 'M', 306), +(21699, 'Ned', 1918, 'M', 304), +(21700, 'Orval', 1918, 'M', 304), +(21701, 'Duane', 1918, 'M', 303), +(21702, 'Ellsworth', 1918, 'M', 300), +(21703, 'Barney', 1918, 'M', 299), +(21704, 'Tommy', 1918, 'M', 297), +(21705, 'Merrill', 1918, 'M', 296), +(21706, 'Pershing', 1918, 'M', 295), +(21707, 'Irwin', 1918, 'M', 292), +(21708, 'Alonzo', 1918, 'M', 287), +(21709, 'Eli', 1918, 'M', 287), +(21710, 'Neal', 1918, 'M', 287), +(21711, 'Timothy', 1918, 'M', 287), +(21712, 'Ruben', 1918, 'M', 286), +(21713, 'Delmar', 1918, 'M', 285), +(21714, 'Benny', 1918, 'M', 282), +(21715, 'Patsy', 1918, 'M', 282), +(21716, 'Stuart', 1918, 'M', 280), +(21717, 'Reginald', 1918, 'M', 278), +(21718, 'Alva', 1918, 'M', 274), +(21719, 'Carmen', 1918, 'M', 273), +(21720, 'Emerson', 1918, 'M', 273), +(21721, 'Marcus', 1918, 'M', 273), +(21722, 'Vito', 1918, 'M', 273), +(21723, 'Christopher', 1918, 'M', 272), +(21724, 'Emery', 1918, 'M', 272), +(21725, 'Wilford', 1918, 'M', 271), +(21726, 'Roman', 1918, 'M', 269), +(21727, 'Merlin', 1918, 'M', 268), +(21728, 'Lionel', 1918, 'M', 266), +(21729, 'Wilburn', 1918, 'M', 265), +(21730, 'Elijah', 1918, 'M', 264), +(21731, 'Sammie', 1918, 'M', 264), +(21732, 'Stewart', 1918, 'M', 264), +(21733, 'Hollis', 1918, 'M', 263), +(21734, 'Teddy', 1918, 'M', 260), +(21735, 'Ferdinand', 1918, 'M', 259), +(21736, 'Ward', 1918, 'M', 258), +(21737, 'Herschel', 1918, 'M', 257), +(21738, 'Abe', 1918, 'M', 256), +(21739, 'Francisco', 1918, 'M', 254), +(21740, 'Odell', 1918, 'M', 253), +(21741, 'Rodney', 1918, 'M', 253), +(21742, 'Buford', 1918, 'M', 252), +(21743, 'Darrell', 1918, 'M', 251), +(21744, 'Dick', 1918, 'M', 251), +(21745, 'Levi', 1918, 'M', 251), +(21746, 'Pasquale', 1918, 'M', 250), +(21747, 'Ramon', 1918, 'M', 250), +(21748, 'Sterling', 1918, 'M', 250), +(21749, 'Noah', 1918, 'M', 247), +(21750, 'Randolph', 1918, 'M', 247), +(21751, 'Buster', 1918, 'M', 246), +(21752, 'Coy', 1918, 'M', 246), +(21753, 'Miles', 1918, 'M', 245), +(21754, 'Travis', 1918, 'M', 244), +(21755, 'Vern', 1918, 'M', 244), +(21756, 'Isadore', 1918, 'M', 243), +(21757, 'Basil', 1918, 'M', 240), +(21758, 'Truman', 1918, 'M', 240), +(21759, 'Wiley', 1918, 'M', 240), +(21760, 'Saul', 1918, 'M', 239), +(21761, 'Booker', 1918, 'M', 238), +(21762, 'Alfonso', 1918, 'M', 237), +(21763, 'Harris', 1918, 'M', 234), +(21764, 'Omer', 1918, 'M', 234), +(21765, 'Freeman', 1918, 'M', 229), +(21766, 'Silas', 1918, 'M', 229), +(21767, 'Emory', 1918, 'M', 226), +(21768, 'Norris', 1918, 'M', 226), +(21769, 'Pedro', 1918, 'M', 226), +(21770, 'Jean', 1918, 'M', 225), +(21771, 'Royal', 1918, 'M', 223), +(21772, 'Winston', 1918, 'M', 223), +(21773, 'Sanford', 1918, 'M', 222), +(21774, 'Jackson', 1918, 'M', 216), +(21775, 'Weldon', 1918, 'M', 216), +(21776, 'Pat', 1918, 'M', 215), +(21777, 'Milford', 1918, 'M', 214), +(21778, 'Foster', 1918, 'M', 212), +(21779, 'Winfred', 1918, 'M', 211), +(21780, 'Spencer', 1918, 'M', 210), +(21781, 'Hiram', 1918, 'M', 205), +(21782, 'Mathew', 1918, 'M', 205), +(21783, 'Newton', 1918, 'M', 203), +(21784, 'Eric', 1918, 'M', 202), +(21785, 'Frederic', 1918, 'M', 202), +(21786, 'Cletus', 1918, 'M', 200), +(21787, 'Jeff', 1918, 'M', 198), +(21788, 'Jimmy', 1918, 'M', 198), +(21789, 'Bertram', 1918, 'M', 196), +(21790, 'Mervin', 1918, 'M', 193), +(21791, 'Rolland', 1918, 'M', 193), +(21792, 'Ambrose', 1918, 'M', 192), +(21793, 'Micheal', 1918, 'M', 191), +(21794, 'Van', 1918, 'M', 191), +(21795, 'Carmine', 1918, 'M', 190), +(21796, 'Gabriel', 1918, 'M', 190), +(21797, 'Lavern', 1918, 'M', 190), +(21798, 'Vance', 1918, 'M', 190), +(21799, 'Armando', 1918, 'M', 187), +(21800, 'Dudley', 1918, 'M', 187), +(21801, 'Sydney', 1918, 'M', 187), +(21802, 'Ulysses', 1918, 'M', 187), +(21803, 'Noel', 1918, 'M', 186), +(21804, 'Milo', 1918, 'M', 185), +(21805, 'Noble', 1918, 'M', 185), +(21806, 'Randall', 1918, 'M', 185), +(21807, 'Aloysius', 1918, 'M', 184), +(21808, 'Hugo', 1918, 'M', 184), +(21809, 'Bud', 1918, 'M', 183), +(21810, 'Meyer', 1918, 'M', 183), +(21811, 'Orlando', 1918, 'M', 183), +(21812, 'Hershel', 1918, 'M', 182), +(21813, 'Marlin', 1918, 'M', 182), +(21814, 'Shirley', 1918, 'M', 182), +(21815, 'Alden', 1918, 'M', 181), +(21816, 'Casimir', 1918, 'M', 179), +(21817, 'Chris', 1918, 'M', 179), +(21818, 'Evan', 1918, 'M', 178), +(21819, 'Luke', 1918, 'M', 176), +(21820, 'Gregory', 1918, 'M', 175), +(21821, 'Olin', 1918, 'M', 175), +(21822, 'Riley', 1918, 'M', 174), +(21823, 'Palmer', 1918, 'M', 173), +(21824, 'Everette', 1918, 'M', 172), +(21825, 'Hal', 1918, 'M', 171), +(21826, 'Isidore', 1918, 'M', 171), +(21827, 'Gail', 1918, 'M', 170), +(21828, 'Sheldon', 1918, 'M', 170), +(21829, 'Mary', 1918, 'M', 169), +(21830, 'Lorenzo', 1918, 'M', 168), +(21831, 'Morgan', 1918, 'M', 168), +(21832, 'Houston', 1918, 'M', 167), +(21833, 'Augustus', 1918, 'M', 166), +(21834, 'Benedict', 1918, 'M', 163), +(21835, 'Waldo', 1918, 'M', 163), +(21836, 'Fletcher', 1918, 'M', 162), +(21837, 'Israel', 1918, 'M', 162), +(21838, 'Hoyt', 1918, 'M', 161), +(21839, 'Lamar', 1918, 'M', 161), +(21840, 'Scott', 1918, 'M', 161), +(21841, 'Delmer', 1918, 'M', 160), +(21842, 'Dewitt', 1918, 'M', 159), +(21843, 'Odis', 1918, 'M', 158), +(21844, 'Darwin', 1918, 'M', 156), +(21845, 'Lyman', 1918, 'M', 156), +(21846, 'Christian', 1918, 'M', 155), +(21847, 'Gale', 1918, 'M', 155), +(21848, 'Harland', 1918, 'M', 155), +(21849, 'Phil', 1918, 'M', 155), +(21850, 'Wilton', 1918, 'M', 155), +(21851, 'Olen', 1918, 'M', 154), +(21852, 'Emile', 1918, 'M', 153), +(21853, 'Hobert', 1918, 'M', 153), +(21854, 'Major', 1918, 'M', 153), +(21855, 'Columbus', 1918, 'M', 152), +(21856, 'Mose', 1918, 'M', 152), +(21857, 'Elliott', 1918, 'M', 151), +(21858, 'Sigmund', 1918, 'M', 151), +(21859, 'Wilber', 1918, 'M', 151), +(21860, 'Maxwell', 1918, 'M', 150), +(21861, 'Jefferson', 1918, 'M', 149), +(21862, 'Granville', 1918, 'M', 148), +(21863, 'Verne', 1918, 'M', 148), +(21864, 'Arlie', 1918, 'M', 147), +(21865, 'Gustave', 1918, 'M', 147), +(21866, 'Quinton', 1918, 'M', 147), +(21867, 'Clay', 1918, 'M', 146), +(21868, 'Jules', 1918, 'M', 146), +(21869, 'Elroy', 1918, 'M', 145), +(21870, 'Justin', 1918, 'M', 144), +(21871, 'Luis', 1918, 'M', 144), +(21872, 'Elias', 1918, 'M', 142), +(21873, 'Ezra', 1918, 'M', 142), +(21874, 'Valentine', 1918, 'M', 142), +(21875, 'Vaughn', 1918, 'M', 141), +(21876, 'Burl', 1918, 'M', 140), +(21877, 'Cyrus', 1918, 'M', 140), +(21878, 'Harmon', 1918, 'M', 140), +(21879, 'Nickolas', 1918, 'M', 140), +(21880, 'Augustine', 1918, 'M', 139), +(21881, 'Gaylord', 1918, 'M', 139), +(21882, 'Rupert', 1918, 'M', 138), +(21883, 'Theron', 1918, 'M', 138), +(21884, 'Linwood', 1918, 'M', 137), +(21885, 'Merton', 1918, 'M', 137), +(21886, 'Taylor', 1918, 'M', 137), +(21887, 'Casimer', 1918, 'M', 135), +(21888, 'Lenard', 1918, 'M', 135), +(21889, 'Lucius', 1918, 'M', 135), +(21890, 'Anderson', 1918, 'M', 134), +(21891, 'Al', 1918, 'M', 133), +(21892, 'Coleman', 1918, 'M', 133), +(21893, 'Davis', 1918, 'M', 133), +(21894, 'Hobart', 1918, 'M', 133), +(21895, 'Isaiah', 1918, 'M', 133), +(21896, 'Judson', 1918, 'M', 133), +(21897, 'Royce', 1918, 'M', 133), +(21898, 'Salvador', 1918, 'M', 133), +(21899, 'Albin', 1918, 'M', 132), +(21900, 'Nolan', 1918, 'M', 132), +(21901, 'Oren', 1918, 'M', 132), +(21902, 'Elmore', 1918, 'M', 131), +(21903, 'Ora', 1918, 'M', 131), +(21904, 'Isiah', 1918, 'M', 130), +(21905, 'Rubin', 1918, 'M', 130), +(21906, 'Lincoln', 1918, 'M', 128), +(21907, 'Matt', 1918, 'M', 128), +(21908, 'Junius', 1918, 'M', 127), +(21909, 'Alfredo', 1918, 'M', 126), +(21910, 'Carlo', 1918, 'M', 124), +(21911, 'Elden', 1918, 'M', 124), +(21912, 'Jewel', 1918, 'M', 124), +(21913, 'Fay', 1918, 'M', 123), +(21914, 'Reed', 1918, 'M', 123), +(21915, 'Rene', 1918, 'M', 123), +(21916, 'Enoch', 1918, 'M', 122), +(21917, 'Lemuel', 1918, 'M', 122), +(21918, 'Winfield', 1918, 'M', 122), +(21919, 'Antone', 1918, 'M', 121), +(21920, 'Denver', 1918, 'M', 120), +(21921, 'Garfield', 1918, 'M', 119), +(21922, 'Jewell', 1918, 'M', 119), +(21923, 'Otha', 1918, 'M', 119), +(21924, 'Avery', 1918, 'M', 118), +(21925, 'Joshua', 1918, 'M', 118), +(21926, 'Kelly', 1918, 'M', 118), +(21927, 'Lucien', 1918, 'M', 118), +(21928, 'Asa', 1918, 'M', 117), +(21929, 'Blaine', 1918, 'M', 117), +(21930, 'Dock', 1918, 'M', 117), +(21931, 'Joesph', 1918, 'M', 117), +(21932, 'Rosario', 1918, 'M', 117), +(21933, 'Bernice', 1918, 'M', 116), +(21934, 'Mason', 1918, 'M', 116), +(21935, 'Raleigh', 1918, 'M', 116), +(21936, 'Carlyle', 1918, 'M', 115), +(21937, 'Edd', 1918, 'M', 115), +(21938, 'Porter', 1918, 'M', 115), +(21939, 'Romeo', 1918, 'M', 115), +(21940, 'Arden', 1918, 'M', 114), +(21941, 'Elwin', 1918, 'M', 114), +(21942, 'Sebastian', 1918, 'M', 114), +(21943, 'Walton', 1918, 'M', 114), +(21944, 'Carrol', 1918, 'M', 113), +(21945, 'Domingo', 1918, 'M', 113), +(21946, 'Shelby', 1918, 'M', 113), +(21947, 'Dee', 1918, 'M', 112), +(21948, 'Hilton', 1918, 'M', 112), +(21949, 'Marcel', 1918, 'M', 112), +(21950, 'Domenic', 1918, 'M', 111), +(21951, 'Florian', 1918, 'M', 110), +(21952, 'Guadalupe', 1918, 'M', 110), +(21953, 'Lacy', 1918, 'M', 110), +(21954, 'Emilio', 1918, 'M', 109), +(21955, 'Napoleon', 1918, 'M', 109), +(21956, 'Omar', 1918, 'M', 109), +(21957, 'Connie', 1918, 'M', 108), +(21958, 'Mckinley', 1918, 'M', 108), +(21959, 'Warner', 1918, 'M', 108), +(21960, 'Aldo', 1918, 'M', 107), +(21961, 'Dana', 1918, 'M', 107), +(21962, 'Edison', 1918, 'M', 107), +(21963, 'Walker', 1918, 'M', 107), +(21964, 'Alois', 1918, 'M', 106), +(21965, 'Dalton', 1918, 'M', 106), +(21966, 'Dorsey', 1918, 'M', 106), +(21967, 'Loyal', 1918, 'M', 106), +(21968, 'Darrel', 1918, 'M', 105), +(21969, 'General', 1918, 'M', 105), +(21970, 'Jeremiah', 1918, 'M', 105), +(21971, 'Oswald', 1918, 'M', 105), +(21972, 'Ottis', 1918, 'M', 105), +(21973, 'Raymon', 1918, 'M', 105), +(21974, 'Guido', 1918, 'M', 104), +(21975, 'Rollin', 1918, 'M', 104), +(21976, 'Bennett', 1918, 'M', 103), +(21977, 'Carson', 1918, 'M', 103), +(21978, 'Sylvan', 1918, 'M', 103), +(21979, 'Talmadge', 1918, 'M', 103), +(21980, 'Jason', 1918, 'M', 102), +(21981, 'Lucian', 1918, 'M', 102), +(21982, 'Miguel', 1918, 'M', 102), +(21983, 'Alphonso', 1918, 'M', 101), +(21984, 'Haywood', 1918, 'M', 101), +(21985, 'Pearl', 1918, 'M', 101), +(21986, 'Raul', 1918, 'M', 101), +(21987, 'Raphael', 1918, 'M', 100), +(21988, 'Seth', 1918, 'M', 100), +(21989, 'Terry', 1918, 'M', 100), +(21990, 'Mary', 1919, 'F', 65840), +(21991, 'Helen', 1919, 'F', 33705), +(21992, 'Dorothy', 1919, 'F', 31734), +(21993, 'Margaret', 1919, 'F', 26237), +(21994, 'Ruth', 1919, 'F', 24566), +(21995, 'Mildred', 1919, 'F', 17300), +(21996, 'Virginia', 1919, 'F', 15636), +(21997, 'Elizabeth', 1919, 'F', 15288), +(21998, 'Frances', 1919, 'F', 15106), +(21999, 'Anna', 1919, 'F', 14500), +(22000, 'Evelyn', 1919, 'F', 13321), +(22001, 'Marie', 1919, 'F', 12010), +(22002, 'Alice', 1919, 'F', 11141), +(22003, 'Florence', 1919, 'F', 10482), +(22004, 'Betty', 1919, 'F', 10106), +(22005, 'Irene', 1919, 'F', 9712), +(22006, 'Lillian', 1919, 'F', 9515), +(22007, 'Doris', 1919, 'F', 9432), +(22008, 'Rose', 1919, 'F', 9193), +(22009, 'Louise', 1919, 'F', 8810), +(22010, 'Gladys', 1919, 'F', 8717), +(22011, 'Edna', 1919, 'F', 8404), +(22012, 'Catherine', 1919, 'F', 8334), +(22013, 'Ruby', 1919, 'F', 8334), +(22014, 'Martha', 1919, 'F', 8321), +(22015, 'Josephine', 1919, 'F', 8104), +(22016, 'Lucille', 1919, 'F', 7855), +(22017, 'Ethel', 1919, 'F', 7811), +(22018, 'Edith', 1919, 'F', 7767), +(22019, 'Eleanor', 1919, 'F', 7611), +(22020, 'Thelma', 1919, 'F', 7558), +(22021, 'Hazel', 1919, 'F', 7430), +(22022, 'Marjorie', 1919, 'F', 7336), +(22023, 'Grace', 1919, 'F', 7194), +(22024, 'Annie', 1919, 'F', 7148), +(22025, 'Pauline', 1919, 'F', 6972), +(22026, 'Jean', 1919, 'F', 6799), +(22027, 'Esther', 1919, 'F', 6249), +(22028, 'Gertrude', 1919, 'F', 6015), +(22029, 'Lois', 1919, 'F', 5976), +(22030, 'Beatrice', 1919, 'F', 5856), +(22031, 'Bernice', 1919, 'F', 5793), +(22032, 'Clara', 1919, 'F', 5404), +(22033, 'Marion', 1919, 'F', 5158), +(22034, 'Emma', 1919, 'F', 5088), +(22035, 'Sarah', 1919, 'F', 5020), +(22036, 'Elsie', 1919, 'F', 4995), +(22037, 'Julia', 1919, 'F', 4949), +(22038, 'Ann', 1919, 'F', 4925), +(22039, 'Agnes', 1919, 'F', 4900), +(22040, 'Katherine', 1919, 'F', 4846), +(22041, 'Bertha', 1919, 'F', 4754), +(22042, 'Jane', 1919, 'F', 4526), +(22043, 'Rita', 1919, 'F', 4517), +(22044, 'Eva', 1919, 'F', 4483), +(22045, 'Pearl', 1919, 'F', 4273), +(22046, 'Ida', 1919, 'F', 4162), +(22047, 'Viola', 1919, 'F', 4127), +(22048, 'Bessie', 1919, 'F', 4107), +(22049, 'Barbara', 1919, 'F', 4084), +(22050, 'Willie', 1919, 'F', 4049), +(22051, 'Lorraine', 1919, 'F', 3978), +(22052, 'Anne', 1919, 'F', 3975), +(22053, 'June', 1919, 'F', 3963), +(22054, 'Vera', 1919, 'F', 3849), +(22055, 'Kathryn', 1919, 'F', 3826), +(22056, 'Myrtle', 1919, 'F', 3816), +(22057, 'Geraldine', 1919, 'F', 3727), +(22058, 'Nellie', 1919, 'F', 3726), +(22059, 'Stella', 1919, 'F', 3700), +(22060, 'Laura', 1919, 'F', 3663), +(22061, 'Vivian', 1919, 'F', 3639), +(22062, 'Juanita', 1919, 'F', 3636), +(22063, 'Violet', 1919, 'F', 3597), +(22064, 'Jessie', 1919, 'F', 3528), +(22065, 'Alma', 1919, 'F', 3438), +(22066, 'Sylvia', 1919, 'F', 3412), +(22067, 'Mabel', 1919, 'F', 3405), +(22068, 'Charlotte', 1919, 'F', 3353), +(22069, 'Minnie', 1919, 'F', 3272), +(22070, 'Marian', 1919, 'F', 3263), +(22071, 'Lillie', 1919, 'F', 3262), +(22072, 'Norma', 1919, 'F', 3198), +(22073, 'Phyllis', 1919, 'F', 3190), +(22074, 'Maxine', 1919, 'F', 3184), +(22075, 'Wilma', 1919, 'F', 3170), +(22076, 'Ella', 1919, 'F', 3157), +(22077, 'Genevieve', 1919, 'F', 3155), +(22078, 'Shirley', 1919, 'F', 3149), +(22079, 'Leona', 1919, 'F', 3033), +(22080, 'Lucy', 1919, 'F', 3008), +(22081, 'Ellen', 1919, 'F', 2929), +(22082, 'Jennie', 1919, 'F', 2928), +(22083, 'Lena', 1919, 'F', 2872), +(22084, 'Mattie', 1919, 'F', 2856), +(22085, 'Marguerite', 1919, 'F', 2836), +(22086, 'Blanche', 1919, 'F', 2668), +(22087, 'Opal', 1919, 'F', 2653), +(22088, 'Mae', 1919, 'F', 2634), +(22089, 'Nancy', 1919, 'F', 2630), +(22090, 'Kathleen', 1919, 'F', 2586), +(22091, 'Theresa', 1919, 'F', 2380), +(22092, 'Eileen', 1919, 'F', 2346), +(22093, 'Velma', 1919, 'F', 2340), +(22094, 'Emily', 1919, 'F', 2307), +(22095, 'Georgia', 1919, 'F', 2283), +(22096, 'Geneva', 1919, 'F', 2263), +(22097, 'Beulah', 1919, 'F', 2212), +(22098, 'Sophie', 1919, 'F', 2200), +(22099, 'Rosa', 1919, 'F', 2190), +(22100, 'Carrie', 1919, 'F', 2180), +(22101, 'Sara', 1919, 'F', 2171), +(22102, 'Harriet', 1919, 'F', 2168), +(22103, 'Patricia', 1919, 'F', 2144), +(22104, 'Audrey', 1919, 'F', 2114), +(22105, 'Christine', 1919, 'F', 2111), +(22106, 'Inez', 1919, 'F', 2083), +(22107, 'Loretta', 1919, 'F', 2067), +(22108, 'Eunice', 1919, 'F', 2061), +(22109, 'Alberta', 1919, 'F', 2016), +(22110, 'Fannie', 1919, 'F', 1981), +(22111, 'Cora', 1919, 'F', 1939), +(22112, 'Hilda', 1919, 'F', 1916), +(22113, 'Dolores', 1919, 'F', 1911), +(22114, 'Hattie', 1919, 'F', 1896), +(22115, 'Janet', 1919, 'F', 1864), +(22116, 'Dora', 1919, 'F', 1835), +(22117, 'Wanda', 1919, 'F', 1823), +(22118, 'Ada', 1919, 'F', 1818), +(22119, 'Jeanne', 1919, 'F', 1817), +(22120, 'Verna', 1919, 'F', 1816), +(22121, 'Mamie', 1919, 'F', 1793), +(22122, 'Muriel', 1919, 'F', 1793), +(22123, 'Lula', 1919, 'F', 1776), +(22124, 'Jeanette', 1919, 'F', 1767), +(22125, 'Elaine', 1919, 'F', 1688), +(22126, 'Olga', 1919, 'F', 1687), +(22127, 'Maria', 1919, 'F', 1677), +(22128, 'Madeline', 1919, 'F', 1660), +(22129, 'Naomi', 1919, 'F', 1632), +(22130, 'Estelle', 1919, 'F', 1618), +(22131, 'Lola', 1919, 'F', 1617), +(22132, 'Mable', 1919, 'F', 1610), +(22133, 'Roberta', 1919, 'F', 1552), +(22134, 'Miriam', 1919, 'F', 1540), +(22135, 'Anita', 1919, 'F', 1504), +(22136, 'Erma', 1919, 'F', 1498), +(22137, 'Daisy', 1919, 'F', 1494), +(22138, 'Olive', 1919, 'F', 1488), +(22139, 'Rachel', 1919, 'F', 1488), +(22140, 'Susie', 1919, 'F', 1475), +(22141, 'Lucile', 1919, 'F', 1448), +(22142, 'Flora', 1919, 'F', 1444), +(22143, 'Victoria', 1919, 'F', 1429), +(22144, 'Arlene', 1919, 'F', 1427), +(22145, 'Maggie', 1919, 'F', 1427), +(22146, 'Sadie', 1919, 'F', 1412), +(22147, 'Rosie', 1919, 'F', 1398), +(22148, 'Eula', 1919, 'F', 1389), +(22149, 'Irma', 1919, 'F', 1375), +(22150, 'Nora', 1919, 'F', 1373), +(22151, 'Lottie', 1919, 'F', 1367), +(22152, 'Bonnie', 1919, 'F', 1344), +(22153, 'Winifred', 1919, 'F', 1332), +(22154, 'Rosemary', 1919, 'F', 1331), +(22155, 'Carolyn', 1919, 'F', 1330), +(22156, 'Henrietta', 1919, 'F', 1301), +(22157, 'Lorene', 1919, 'F', 1300), +(22158, 'Caroline', 1919, 'F', 1295), +(22159, 'Rebecca', 1919, 'F', 1267), +(22160, 'Marcella', 1919, 'F', 1266), +(22161, 'Adeline', 1919, 'F', 1261), +(22162, 'Joyce', 1919, 'F', 1255), +(22163, 'Joan', 1919, 'F', 1248), +(22164, 'Della', 1919, 'F', 1190), +(22165, 'Fern', 1919, 'F', 1181), +(22166, 'Margie', 1919, 'F', 1158), +(22167, 'Nina', 1919, 'F', 1124), +(22168, 'Nettie', 1919, 'F', 1109), +(22169, 'Antoinette', 1919, 'F', 1090), +(22170, 'Amelia', 1919, 'F', 1085), +(22171, 'Constance', 1919, 'F', 1078), +(22172, 'Katie', 1919, 'F', 1073), +(22173, 'Jeannette', 1919, 'F', 1068), +(22174, 'Regina', 1919, 'F', 1068), +(22175, 'Lydia', 1919, 'F', 1059), +(22176, 'Veronica', 1919, 'F', 1047), +(22177, 'Eloise', 1919, 'F', 1029), +(22178, 'Essie', 1919, 'F', 1023), +(22179, 'Cleo', 1919, 'F', 1014), +(22180, 'Dorothea', 1919, 'F', 1001), +(22181, 'Sally', 1919, 'F', 991), +(22182, 'Goldie', 1919, 'F', 989), +(22183, 'May', 1919, 'F', 981), +(22184, 'Ollie', 1919, 'F', 975), +(22185, 'Isabel', 1919, 'F', 957), +(22186, 'Claire', 1919, 'F', 953), +(22187, 'Laverne', 1919, 'F', 944), +(22188, 'Angelina', 1919, 'F', 941), +(22189, 'Carol', 1919, 'F', 932), +(22190, 'Effie', 1919, 'F', 929), +(22191, 'Faye', 1919, 'F', 926), +(22192, 'Ora', 1919, 'F', 921), +(22193, 'Rosalie', 1919, 'F', 910), +(22194, 'Luella', 1919, 'F', 905), +(22195, 'Freda', 1919, 'F', 900), +(22196, 'Lela', 1919, 'F', 898), +(22197, 'Sallie', 1919, 'F', 897), +(22198, 'Angeline', 1919, 'F', 894), +(22199, 'Isabelle', 1919, 'F', 887), +(22200, 'Adele', 1919, 'F', 886), +(22201, 'Cecelia', 1919, 'F', 868), +(22202, 'Iva', 1919, 'F', 861), +(22203, 'Addie', 1919, 'F', 846), +(22204, 'Johnnie', 1919, 'F', 832), +(22205, 'Leola', 1919, 'F', 830), +(22206, 'Susan', 1919, 'F', 824), +(22207, 'Jewell', 1919, 'F', 817), +(22208, 'Lizzie', 1919, 'F', 810), +(22209, 'Annette', 1919, 'F', 800), +(22210, 'Melba', 1919, 'F', 791), +(22211, 'Billie', 1919, 'F', 790), +(22212, 'Elva', 1919, 'F', 782), +(22213, 'Jewel', 1919, 'F', 778), +(22214, 'Donna', 1919, 'F', 774), +(22215, 'Janie', 1919, 'F', 751), +(22216, 'Lila', 1919, 'F', 749), +(22217, 'Cecilia', 1919, 'F', 746), +(22218, 'Frieda', 1919, 'F', 746), +(22219, 'Etta', 1919, 'F', 742), +(22220, 'Alta', 1919, 'F', 738), +(22221, 'Ernestine', 1919, 'F', 738), +(22222, 'Eleanore', 1919, 'F', 737), +(22223, 'Peggy', 1919, 'F', 736), +(22224, 'Ola', 1919, 'F', 735), +(22225, 'Bette', 1919, 'F', 718), +(22226, 'Celia', 1919, 'F', 711), +(22227, 'Ina', 1919, 'F', 710), +(22228, 'Reba', 1919, 'F', 707), +(22229, 'Teresa', 1919, 'F', 706), +(22230, 'Imogene', 1919, 'F', 702), +(22231, 'Sue', 1919, 'F', 693), +(22232, 'Beverly', 1919, 'F', 684), +(22233, 'Selma', 1919, 'F', 682), +(22234, 'Iris', 1919, 'F', 677), +(22235, 'Maude', 1919, 'F', 674), +(22236, 'Francis', 1919, 'F', 673), +(22237, 'Nell', 1919, 'F', 666), +(22238, 'Helene', 1919, 'F', 664), +(22239, 'Fay', 1919, 'F', 660), +(22240, 'Angela', 1919, 'F', 654), +(22241, 'Gwendolyn', 1919, 'F', 647), +(22242, 'Matilda', 1919, 'F', 645), +(22243, 'Mollie', 1919, 'F', 638), +(22244, 'Carmen', 1919, 'F', 633), +(22245, 'Nannie', 1919, 'F', 621), +(22246, 'Flossie', 1919, 'F', 613), +(22247, 'Amy', 1919, 'F', 609), +(22248, 'Bettie', 1919, 'F', 608), +(22249, 'Eugenia', 1919, 'F', 606), +(22250, 'Sophia', 1919, 'F', 604), +(22251, 'Elma', 1919, 'F', 595), +(22252, 'Elinor', 1919, 'F', 589), +(22253, 'Janice', 1919, 'F', 589), +(22254, 'Elnora', 1919, 'F', 576), +(22255, 'Estella', 1919, 'F', 572), +(22256, 'Nadine', 1919, 'F', 563), +(22257, 'Virgie', 1919, 'F', 559), +(22258, 'Priscilla', 1919, 'F', 557), +(22259, 'Elvira', 1919, 'F', 553), +(22260, 'Ila', 1919, 'F', 549), +(22261, 'Gloria', 1919, 'F', 547), +(22262, 'Yvonne', 1919, 'F', 546), +(22263, 'Clarice', 1919, 'F', 542), +(22264, 'Winnie', 1919, 'F', 541), +(22265, 'Hannah', 1919, 'F', 534), +(22266, 'Harriett', 1919, 'F', 527), +(22267, 'Leah', 1919, 'F', 527), +(22268, 'Natalie', 1919, 'F', 520), +(22269, 'Edythe', 1919, 'F', 517), +(22270, 'Rena', 1919, 'F', 517), +(22271, 'Sybil', 1919, 'F', 515), +(22272, 'Arline', 1919, 'F', 513), +(22273, 'Millie', 1919, 'F', 505), +(22274, 'Lenora', 1919, 'F', 493), +(22275, 'Adelaide', 1919, 'F', 489), +(22276, 'Zelma', 1919, 'F', 488), +(22277, 'Delores', 1919, 'F', 486), +(22278, 'Lee', 1919, 'F', 484), +(22279, 'Josie', 1919, 'F', 481), +(22280, 'Carmela', 1919, 'F', 480), +(22281, 'Gracie', 1919, 'F', 479), +(22282, 'Cecile', 1919, 'F', 478), +(22283, 'Annabelle', 1919, 'F', 472), +(22284, 'Olivia', 1919, 'F', 471), +(22285, 'Frankie', 1919, 'F', 469), +(22286, 'Myra', 1919, 'F', 461), +(22287, 'Odessa', 1919, 'F', 457), +(22288, 'Letha', 1919, 'F', 450), +(22289, 'Carmella', 1919, 'F', 442), +(22290, 'Allie', 1919, 'F', 441), +(22291, 'Cornelia', 1919, 'F', 440), +(22292, 'Helena', 1919, 'F', 440), +(22293, 'Bernadine', 1919, 'F', 439), +(22294, 'Connie', 1919, 'F', 434), +(22295, 'Madge', 1919, 'F', 428), +(22296, 'Tillie', 1919, 'F', 424), +(22297, 'Rhoda', 1919, 'F', 420), +(22298, 'Rosetta', 1919, 'F', 418), +(22299, 'Loraine', 1919, 'F', 414), +(22300, 'Neva', 1919, 'F', 414), +(22301, 'Alyce', 1919, 'F', 410), +(22302, 'Dollie', 1919, 'F', 404), +(22303, 'Marilyn', 1919, 'F', 404), +(22304, 'Lorena', 1919, 'F', 402), +(22305, 'Berniece', 1919, 'F', 400), +(22306, 'Jacqueline', 1919, 'F', 396), +(22307, 'Margery', 1919, 'F', 393), +(22308, 'Lenore', 1919, 'F', 390), +(22309, 'Eliza', 1919, 'F', 388), +(22310, 'Christina', 1919, 'F', 386), +(22311, 'Concetta', 1919, 'F', 385), +(22312, 'Leila', 1919, 'F', 384), +(22313, 'Dorthy', 1919, 'F', 382), +(22314, 'Willa', 1919, 'F', 382), +(22315, 'Amanda', 1919, 'F', 379), +(22316, 'Lessie', 1919, 'F', 375), +(22317, 'Gussie', 1919, 'F', 374), +(22318, 'Rosella', 1919, 'F', 374), +(22319, 'Aileen', 1919, 'F', 371), +(22320, 'Merle', 1919, 'F', 370), +(22321, 'Lily', 1919, 'F', 368), +(22322, 'Jimmie', 1919, 'F', 367), +(22323, 'Mavis', 1919, 'F', 364), +(22324, 'Hester', 1919, 'F', 360), +(22325, 'Tessie', 1919, 'F', 357), +(22326, 'Theda', 1919, 'F', 356), +(22327, 'Beth', 1919, 'F', 355), +(22328, 'Claudia', 1919, 'F', 355), +(22329, 'Pearlie', 1919, 'F', 355), +(22330, 'Iona', 1919, 'F', 353), +(22331, 'Katharine', 1919, 'F', 353), +(22332, 'Avis', 1919, 'F', 348), +(22333, 'Aline', 1919, 'F', 346), +(22334, 'Corine', 1919, 'F', 346), +(22335, 'Ramona', 1919, 'F', 344), +(22336, 'Callie', 1919, 'F', 343), +(22337, 'Nola', 1919, 'F', 343), +(22338, 'Dolly', 1919, 'F', 341), +(22339, 'Corinne', 1919, 'F', 340), +(22340, 'Hope', 1919, 'F', 333), +(22341, 'Lora', 1919, 'F', 333), +(22342, 'Ophelia', 1919, 'F', 331), +(22343, 'Florine', 1919, 'F', 330), +(22344, 'Kay', 1919, 'F', 330), +(22345, 'Yolanda', 1919, 'F', 326), +(22346, 'Marcia', 1919, 'F', 325), +(22347, 'Joy', 1919, 'F', 322), +(22348, 'Lelia', 1919, 'F', 316), +(22349, 'Ione', 1919, 'F', 314), +(22350, 'Lou', 1919, 'F', 313), +(22351, 'Maudie', 1919, 'F', 313), +(22352, 'Eddie', 1919, 'F', 312), +(22353, 'Leota', 1919, 'F', 311), +(22354, 'Stephanie', 1919, 'F', 311), +(22355, 'Earline', 1919, 'F', 310), +(22356, 'Wilda', 1919, 'F', 310), +(22357, 'Kate', 1919, 'F', 309), +(22358, 'Dixie', 1919, 'F', 307), +(22359, 'John', 1919, 'F', 307), +(22360, 'Roxie', 1919, 'F', 305), +(22361, 'Bernadette', 1919, 'F', 303), +(22362, 'Judith', 1919, 'F', 303), +(22363, 'Delia', 1919, 'F', 300), +(22364, 'Bertie', 1919, 'F', 299), +(22365, 'Sibyl', 1919, 'F', 299), +(22366, 'Lilly', 1919, 'F', 298), +(22367, 'Bobbie', 1919, 'F', 296), +(22368, 'Johanna', 1919, 'F', 294), +(22369, 'Reva', 1919, 'F', 291), +(22370, 'Augusta', 1919, 'F', 290), +(22371, 'Madelyn', 1919, 'F', 285), +(22372, 'Maurine', 1919, 'F', 284), +(22373, 'Verda', 1919, 'F', 283), +(22374, 'Georgie', 1919, 'F', 282), +(22375, 'Linda', 1919, 'F', 282), +(22376, 'Dessie', 1919, 'F', 281), +(22377, 'Lupe', 1919, 'F', 280), +(22378, 'Guadalupe', 1919, 'F', 276), +(22379, 'Glenna', 1919, 'F', 275), +(22380, 'Isabell', 1919, 'F', 274), +(22381, 'Isabella', 1919, 'F', 274), +(22382, 'Elisabeth', 1919, 'F', 273), +(22383, 'Erna', 1919, 'F', 270), +(22384, 'Iola', 1919, 'F', 268), +(22385, 'Cynthia', 1919, 'F', 264), +(22386, 'Marietta', 1919, 'F', 264), +(22387, 'Robbie', 1919, 'F', 263), +(22388, 'Althea', 1919, 'F', 261), +(22389, 'Molly', 1919, 'F', 258), +(22390, 'Tommie', 1919, 'F', 258), +(22391, 'Mayme', 1919, 'F', 257), +(22392, 'Hallie', 1919, 'F', 256), +(22393, 'Rubye', 1919, 'F', 256), +(22394, 'Zella', 1919, 'F', 255), +(22395, 'Mona', 1919, 'F', 253), +(22396, 'Antonia', 1919, 'F', 252), +(22397, 'Belle', 1919, 'F', 252), +(22398, 'Harriette', 1919, 'F', 249), +(22399, 'Polly', 1919, 'F', 249), +(22400, 'Alvina', 1919, 'F', 248), +(22401, 'Leora', 1919, 'F', 247), +(22402, 'Enid', 1919, 'F', 246), +(22403, 'Oma', 1919, 'F', 245), +(22404, 'Paula', 1919, 'F', 245), +(22405, 'Philomena', 1919, 'F', 244), +(22406, 'Louella', 1919, 'F', 242), +(22407, 'Vesta', 1919, 'F', 242), +(22408, 'Melva', 1919, 'F', 241), +(22409, 'Ester', 1919, 'F', 240), +(22410, 'Pansy', 1919, 'F', 239), +(22411, 'Jannie', 1919, 'F', 237), +(22412, 'Elda', 1919, 'F', 236), +(22413, 'Mozelle', 1919, 'F', 236), +(22414, 'Nona', 1919, 'F', 235), +(22415, 'Beryl', 1919, 'F', 234), +(22416, 'Birdie', 1919, 'F', 234), +(22417, 'Elise', 1919, 'F', 234), +(22418, 'Charlene', 1919, 'F', 233), +(22419, 'Clare', 1919, 'F', 233), +(22420, 'Lorine', 1919, 'F', 233), +(22421, 'Marjory', 1919, 'F', 232), +(22422, 'Queen', 1919, 'F', 232), +(22423, 'Evangeline', 1919, 'F', 231), +(22424, 'Darlene', 1919, 'F', 229), +(22425, 'Hortense', 1919, 'F', 229), +(22426, 'Jo', 1919, 'F', 227), +(22427, 'Mercedes', 1919, 'F', 225), +(22428, 'Zelda', 1919, 'F', 225), +(22429, 'Deloris', 1919, 'F', 224), +(22430, 'Aurora', 1919, 'F', 223), +(22431, 'Lorna', 1919, 'F', 222), +(22432, 'Garnet', 1919, 'F', 221), +(22433, 'Valeria', 1919, 'F', 221), +(22434, 'Dortha', 1919, 'F', 219), +(22435, 'Syble', 1919, 'F', 218), +(22436, 'Elvera', 1919, 'F', 217), +(22437, 'Gertie', 1919, 'F', 217), +(22438, 'Vada', 1919, 'F', 216), +(22439, 'Alene', 1919, 'F', 215), +(22440, 'Allene', 1919, 'F', 214), +(22441, 'Corrine', 1919, 'F', 214), +(22442, 'Vernice', 1919, 'F', 214), +(22443, 'Diana', 1919, 'F', 213), +(22444, 'Rae', 1919, 'F', 213), +(22445, 'Retha', 1919, 'F', 213), +(22446, 'Ferne', 1919, 'F', 212), +(22447, 'Bella', 1919, 'F', 211), +(22448, 'Angie', 1919, 'F', 210), +(22449, 'Lauretta', 1919, 'F', 210), +(22450, 'Wilhelmina', 1919, 'F', 210), +(22451, 'Dovie', 1919, 'F', 206), +(22452, 'Ilene', 1919, 'F', 206), +(22453, 'Louisa', 1919, 'F', 205), +(22454, 'Leone', 1919, 'F', 204), +(22455, 'Consuelo', 1919, 'F', 203), +(22456, 'Dorris', 1919, 'F', 203), +(22457, 'Freida', 1919, 'F', 202), +(22458, 'Catharine', 1919, 'F', 200), +(22459, 'Cecil', 1919, 'F', 200), +(22460, 'Rowena', 1919, 'F', 200), +(22461, 'Agatha', 1919, 'F', 199), +(22462, 'Charlie', 1919, 'F', 199), +(22463, 'Suzanne', 1919, 'F', 199), +(22464, 'Albina', 1919, 'F', 198), +(22465, 'Floy', 1919, 'F', 196), +(22466, 'Elouise', 1919, 'F', 195), +(22467, 'Lura', 1919, 'F', 195), +(22468, 'Adell', 1919, 'F', 194), +(22469, 'Phoebe', 1919, 'F', 193), +(22470, 'Yetta', 1919, 'F', 193), +(22471, 'James', 1919, 'F', 191), +(22472, 'Ruthie', 1919, 'F', 191), +(22473, 'Vida', 1919, 'F', 191), +(22474, 'Fanny', 1919, 'F', 190), +(22475, 'Margarita', 1919, 'F', 190), +(22476, 'Alpha', 1919, 'F', 189), +(22477, 'Oleta', 1919, 'F', 189), +(22478, 'Jaunita', 1919, 'F', 188), +(22479, 'Lucinda', 1919, 'F', 188), +(22480, 'Winona', 1919, 'F', 188), +(22481, 'Una', 1919, 'F', 186), +(22482, 'Minerva', 1919, 'F', 185), +(22483, 'Gail', 1919, 'F', 184), +(22484, 'Lona', 1919, 'F', 184), +(22485, 'Robert', 1919, 'F', 184), +(22486, 'Leta', 1919, 'F', 183), +(22487, 'Lulu', 1919, 'F', 183), +(22488, 'Roslyn', 1919, 'F', 183), +(22489, 'Edwina', 1919, 'F', 182), +(22490, 'Julie', 1919, 'F', 182), +(22491, 'Johnie', 1919, 'F', 181), +(22492, 'Margarette', 1919, 'F', 181), +(22493, 'Bennie', 1919, 'F', 179), +(22494, 'Evalyn', 1919, 'F', 179), +(22495, 'Monica', 1919, 'F', 179), +(22496, 'Verla', 1919, 'F', 179), +(22497, 'Alfreda', 1919, 'F', 178), +(22498, 'Magdalene', 1919, 'F', 178), +(22499, 'Margret', 1919, 'F', 177), +(22500, 'Rhea', 1919, 'F', 177), +(22501, 'Rosalind', 1919, 'F', 177), +(22502, 'Florene', 1919, 'F', 176), +(22503, 'Elena', 1919, 'F', 175), +(22504, 'William', 1919, 'F', 175), +(22505, 'Alva', 1919, 'F', 174), +(22506, 'Claudine', 1919, 'F', 172), +(22507, 'Maryann', 1919, 'F', 172), +(22508, 'Zola', 1919, 'F', 172), +(22509, 'Filomena', 1919, 'F', 171), +(22510, 'Valerie', 1919, 'F', 171), +(22511, 'Cassie', 1919, 'F', 170), +(22512, 'Lettie', 1919, 'F', 170), +(22513, 'Earnestine', 1919, 'F', 169), +(22514, 'Elsa', 1919, 'F', 169), +(22515, 'Jayne', 1919, 'F', 169), +(22516, 'Judy', 1919, 'F', 169), +(22517, 'Emilie', 1919, 'F', 168), +(22518, 'Patsy', 1919, 'F', 168), +(22519, 'Velda', 1919, 'F', 168), +(22520, 'Madeleine', 1919, 'F', 166), +(22521, 'Belva', 1919, 'F', 165), +(22522, 'Joanna', 1919, 'F', 165), +(22523, 'Blanch', 1919, 'F', 164), +(22524, 'George', 1919, 'F', 164), +(22525, 'Maybelle', 1919, 'F', 164), +(22526, 'Veda', 1919, 'F', 164), +(22527, 'Mazie', 1919, 'F', 163), +(22528, 'Ona', 1919, 'F', 163), +(22529, 'Freddie', 1919, 'F', 162), +(22530, 'Maud', 1919, 'F', 162), +(22531, 'Katheryn', 1919, 'F', 161), +(22532, 'Gene', 1919, 'F', 160), +(22533, 'Lue', 1919, 'F', 160), +(22534, 'Myrtis', 1919, 'F', 160), +(22535, 'Artie', 1919, 'F', 159), +(22536, 'Ava', 1919, 'F', 159), +(22537, 'Aurelia', 1919, 'F', 158), +(22538, 'Delma', 1919, 'F', 158), +(22539, 'Manuela', 1919, 'F', 158), +(22540, 'Juliette', 1919, 'F', 157), +(22541, 'Lucia', 1919, 'F', 157), +(22542, 'Marianne', 1919, 'F', 155), +(22543, 'Dorotha', 1919, 'F', 154), +(22544, 'Nelda', 1919, 'F', 154), +(22545, 'Camille', 1919, 'F', 153), +(22546, 'Eleanora', 1919, 'F', 153), +(22547, 'Faith', 1919, 'F', 152), +(22548, 'Hedwig', 1919, 'F', 152), +(22549, 'Linnie', 1919, 'F', 152), +(22550, 'Myrna', 1919, 'F', 152), +(22551, 'Adela', 1919, 'F', 151), +(22552, 'Odell', 1919, 'F', 151), +(22553, 'Vergie', 1919, 'F', 151), +(22554, 'Era', 1919, 'F', 150), +(22555, 'Evelyne', 1919, 'F', 148), +(22556, 'Hellen', 1919, 'F', 148), +(22557, 'Marcelle', 1919, 'F', 148), +(22558, 'Abbie', 1919, 'F', 147), +(22559, 'Delphine', 1919, 'F', 147), +(22560, 'Ivy', 1919, 'F', 147), +(22561, 'Reta', 1919, 'F', 147), +(22562, 'Cordelia', 1919, 'F', 146), +(22563, 'Jenny', 1919, 'F', 146), +(22564, 'Novella', 1919, 'F', 146), +(22565, 'Betsy', 1919, 'F', 145), +(22566, 'Hettie', 1919, 'F', 145), +(22567, 'Mina', 1919, 'F', 145), +(22568, 'Petra', 1919, 'F', 145), +(22569, 'Alda', 1919, 'F', 144), +(22570, 'Clementine', 1919, 'F', 144), +(22571, 'Joanne', 1919, 'F', 144), +(22572, 'Millicent', 1919, 'F', 144), +(22573, 'Mittie', 1919, 'F', 144), +(22574, 'Anastasia', 1919, 'F', 143), +(22575, 'Trinidad', 1919, 'F', 143), +(22576, 'Celeste', 1919, 'F', 142), +(22577, 'Idella', 1919, 'F', 142), +(22578, 'Jerry', 1919, 'F', 142), +(22579, 'Mathilda', 1919, 'F', 142), +(22580, 'Treva', 1919, 'F', 142), +(22581, 'Ursula', 1919, 'F', 142), +(22582, 'Adella', 1919, 'F', 141), +(22583, 'Justine', 1919, 'F', 141), +(22584, 'Orpha', 1919, 'F', 141), +(22585, 'Rosalee', 1919, 'F', 141), +(22586, 'Berneice', 1919, 'F', 139), +(22587, 'Elna', 1919, 'F', 139), +(22588, 'Estell', 1919, 'F', 139), +(22589, 'Ima', 1919, 'F', 139), +(22590, 'Antonette', 1919, 'F', 138), +(22591, 'Georgianna', 1919, 'F', 138), +(22592, 'Georgiana', 1919, 'F', 137), +(22593, 'Ardis', 1919, 'F', 136), +(22594, 'Magnolia', 1919, 'F', 136), +(22595, 'Juana', 1919, 'F', 135), +(22596, 'Winnifred', 1919, 'F', 135), +(22597, 'Myrtice', 1919, 'F', 133), +(22598, 'Roma', 1919, 'F', 133), +(22599, 'Rosalyn', 1919, 'F', 133), +(22600, 'Theodora', 1919, 'F', 133), +(22601, 'Hulda', 1919, 'F', 131), +(22602, 'Aletha', 1919, 'F', 130), +(22603, 'Almeda', 1919, 'F', 130), +(22604, 'Joe', 1919, 'F', 130), +(22605, 'Charles', 1919, 'F', 129), +(22606, 'Easter', 1919, 'F', 129), +(22607, 'Eldora', 1919, 'F', 129), +(22608, 'Albertha', 1919, 'F', 128), +(22609, 'Gretchen', 1919, 'F', 128), +(22610, 'Marvel', 1919, 'F', 128), +(22611, 'Golda', 1919, 'F', 127), +(22612, 'Rosemarie', 1919, 'F', 127), +(22613, 'Ray', 1919, 'F', 126), +(22614, 'Tressie', 1919, 'F', 126), +(22615, 'Alicia', 1919, 'F', 125), +(22616, 'Celestine', 1919, 'F', 125), +(22617, 'Gilda', 1919, 'F', 125), +(22618, 'Nelle', 1919, 'F', 125), +(22619, 'Rubie', 1919, 'F', 125), +(22620, 'Annabel', 1919, 'F', 124), +(22621, 'Janette', 1919, 'F', 122), +(22622, 'Camilla', 1919, 'F', 121), +(22623, 'Laverna', 1919, 'F', 120), +(22624, 'Tina', 1919, 'F', 120), +(22625, 'Therese', 1919, 'F', 119), +(22626, 'Annetta', 1919, 'F', 118), +(22627, 'Lavonne', 1919, 'F', 118), +(22628, 'Pearline', 1919, 'F', 118), +(22629, 'Rachael', 1919, 'F', 118), +(22630, 'Germaine', 1919, 'F', 117), +(22631, 'Kathrine', 1919, 'F', 117), +(22632, 'Lovie', 1919, 'F', 117), +(22633, 'Zora', 1919, 'F', 117), +(22634, 'Zula', 1919, 'F', 116), +(22635, 'Bulah', 1919, 'F', 115), +(22636, 'Jackie', 1919, 'F', 115), +(22637, 'Sammie', 1919, 'F', 115), +(22638, 'Velva', 1919, 'F', 115), +(22639, 'Yvette', 1919, 'F', 115), +(22640, 'Grayce', 1919, 'F', 114), +(22641, 'Leslie', 1919, 'F', 114), +(22642, 'Libby', 1919, 'F', 114), +(22643, 'Nan', 1919, 'F', 114), +(22644, 'Cathryn', 1919, 'F', 113), +(22645, 'Crystal', 1919, 'F', 113), +(22646, 'Gayle', 1919, 'F', 113), +(22647, 'Lavina', 1919, 'F', 113), +(22648, 'Leonora', 1919, 'F', 113), +(22649, 'Emilia', 1919, 'F', 112), +(22650, 'Felicia', 1919, 'F', 112), +(22651, 'Lavern', 1919, 'F', 112), +(22652, 'Ouida', 1919, 'F', 112), +(22653, 'Marianna', 1919, 'F', 111), +(22654, 'Mozell', 1919, 'F', 110), +(22655, 'Carolina', 1919, 'F', 109), +(22656, 'Clyde', 1919, 'F', 109), +(22657, 'Evie', 1919, 'F', 109), +(22658, 'Francisca', 1919, 'F', 109), +(22659, 'Lyda', 1919, 'F', 109), +(22660, 'Nita', 1919, 'F', 109), +(22661, 'Theo', 1919, 'F', 109), +(22662, 'Adrienne', 1919, 'F', 108), +(22663, 'Idell', 1919, 'F', 108), +(22664, 'Lida', 1919, 'F', 108), +(22665, 'Twila', 1919, 'F', 108), +(22666, 'Emogene', 1919, 'F', 107), +(22667, 'Leatha', 1919, 'F', 107), +(22668, 'Dorcas', 1919, 'F', 106), +(22669, 'Bethel', 1919, 'F', 105), +(22670, 'Bettye', 1919, 'F', 105), +(22671, 'Carmel', 1919, 'F', 105), +(22672, 'Delphia', 1919, 'F', 105), +(22673, 'Georgina', 1919, 'F', 105), +(22674, 'Dena', 1919, 'F', 104), +(22675, 'Doretha', 1919, 'F', 104), +(22676, 'Eve', 1919, 'F', 104), +(22677, 'Myrtie', 1919, 'F', 104), +(22678, 'Claudie', 1919, 'F', 103), +(22679, 'Earlene', 1919, 'F', 103), +(22680, 'Larue', 1919, 'F', 103), +(22681, 'Pearle', 1919, 'F', 103), +(22682, 'Verona', 1919, 'F', 103), +(22683, 'Vina', 1919, 'F', 103), +(22684, 'Dona', 1919, 'F', 102), +(22685, 'Georgette', 1919, 'F', 102), +(22686, 'Josefina', 1919, 'F', 102), +(22687, 'Lina', 1919, 'F', 102), +(22688, 'Malinda', 1919, 'F', 102), +(22689, 'Eloisa', 1919, 'F', 101), +(22690, 'Eulalia', 1919, 'F', 100), +(22691, 'Mandy', 1919, 'F', 100), +(22692, 'Vernie', 1919, 'F', 100), +(22693, 'John', 1919, 'M', 53532), +(22694, 'William', 1919, 'M', 43978), +(22695, 'James', 1919, 'M', 42390), +(22696, 'Robert', 1919, 'M', 41029), +(22697, 'Charles', 1919, 'M', 25194), +(22698, 'George', 1919, 'M', 25174), +(22699, 'Joseph', 1919, 'M', 24266), +(22700, 'Edward', 1919, 'M', 18536), +(22701, 'Frank', 1919, 'M', 15703), +(22702, 'Thomas', 1919, 'M', 13436), +(22703, 'Walter', 1919, 'M', 12880), +(22704, 'Richard', 1919, 'M', 12442), +(22705, 'Harold', 1919, 'M', 12020), +(22706, 'Raymond', 1919, 'M', 11384), +(22707, 'Paul', 1919, 'M', 11307), +(22708, 'Henry', 1919, 'M', 10614), +(22709, 'Donald', 1919, 'M', 9902), +(22710, 'Albert', 1919, 'M', 9607), +(22711, 'Arthur', 1919, 'M', 9539), +(22712, 'Harry', 1919, 'M', 8989), +(22713, 'Jack', 1919, 'M', 8265), +(22714, 'Ralph', 1919, 'M', 7710), +(22715, 'Willie', 1919, 'M', 6942), +(22716, 'Howard', 1919, 'M', 6842), +(22717, 'Clarence', 1919, 'M', 6826), +(22718, 'Kenneth', 1919, 'M', 6794), +(22719, 'David', 1919, 'M', 6719), +(22720, 'Louis', 1919, 'M', 6660), +(22721, 'Carl', 1919, 'M', 6473), +(22722, 'Fred', 1919, 'M', 6093), +(22723, 'Earl', 1919, 'M', 5977), +(22724, 'Roy', 1919, 'M', 5968), +(22725, 'Eugene', 1919, 'M', 5892), +(22726, 'Francis', 1919, 'M', 5726), +(22727, 'Joe', 1919, 'M', 5710), +(22728, 'Ernest', 1919, 'M', 5297), +(22729, 'Stanley', 1919, 'M', 5235), +(22730, 'Lawrence', 1919, 'M', 5205), +(22731, 'Leonard', 1919, 'M', 5010), +(22732, 'Herbert', 1919, 'M', 4959), +(22733, 'Anthony', 1919, 'M', 4737), +(22734, 'Alfred', 1919, 'M', 4614), +(22735, 'Samuel', 1919, 'M', 4472), +(22736, 'Elmer', 1919, 'M', 3981), +(22737, 'Bernard', 1919, 'M', 3915), +(22738, 'Michael', 1919, 'M', 3913), +(22739, 'Andrew', 1919, 'M', 3851), +(22740, 'Norman', 1919, 'M', 3807), +(22741, 'Leo', 1919, 'M', 3802), +(22742, 'Russell', 1919, 'M', 3646), +(22743, 'Daniel', 1919, 'M', 3527), +(22744, 'Edwin', 1919, 'M', 3450), +(22745, 'Chester', 1919, 'M', 3431), +(22746, 'Theodore', 1919, 'M', 3424), +(22747, 'Leroy', 1919, 'M', 3422), +(22748, 'Melvin', 1919, 'M', 3384), +(22749, 'Peter', 1919, 'M', 3376), +(22750, 'Lloyd', 1919, 'M', 3239), +(22751, 'Floyd', 1919, 'M', 3121), +(22752, 'Clifford', 1919, 'M', 3039), +(22753, 'Herman', 1919, 'M', 3027), +(22754, 'Lester', 1919, 'M', 3020), +(22755, 'Marvin', 1919, 'M', 2997), +(22756, 'Frederick', 1919, 'M', 2933), +(22757, 'Vernon', 1919, 'M', 2928), +(22758, 'Charlie', 1919, 'M', 2890), +(22759, 'Clyde', 1919, 'M', 2885), +(22760, 'Victor', 1919, 'M', 2749), +(22761, 'Ray', 1919, 'M', 2722), +(22762, 'Gerald', 1919, 'M', 2689), +(22763, 'Vincent', 1919, 'M', 2531), +(22764, 'Philip', 1919, 'M', 2530), +(22765, 'Milton', 1919, 'M', 2447), +(22766, 'Lewis', 1919, 'M', 2430), +(22767, 'Sam', 1919, 'M', 2384), +(22768, 'Alvin', 1919, 'M', 2383), +(22769, 'Jesse', 1919, 'M', 2357), +(22770, 'Cecil', 1919, 'M', 2300), +(22771, 'Benjamin', 1919, 'M', 2278), +(22772, 'Leon', 1919, 'M', 2249), +(22773, 'Martin', 1919, 'M', 2204), +(22774, 'Lee', 1919, 'M', 2190), +(22775, 'Warren', 1919, 'M', 2181), +(22776, 'Glenn', 1919, 'M', 2153), +(22777, 'Harvey', 1919, 'M', 2027), +(22778, 'Gordon', 1919, 'M', 2017), +(22779, 'Willard', 1919, 'M', 2014), +(22780, 'Oscar', 1919, 'M', 1992), +(22781, 'Edgar', 1919, 'M', 1984), +(22782, 'Wayne', 1919, 'M', 1957), +(22783, 'Woodrow', 1919, 'M', 1807), +(22784, 'Claude', 1919, 'M', 1772), +(22785, 'Everett', 1919, 'M', 1772), +(22786, 'Arnold', 1919, 'M', 1766), +(22787, 'Sidney', 1919, 'M', 1716), +(22788, 'Johnnie', 1919, 'M', 1715), +(22789, 'Stephen', 1919, 'M', 1693), +(22790, 'Wilbur', 1919, 'M', 1689), +(22791, 'Morris', 1919, 'M', 1661), +(22792, 'Eddie', 1919, 'M', 1660), +(22793, 'Allen', 1919, 'M', 1653), +(22794, 'Gilbert', 1919, 'M', 1592), +(22795, 'Virgil', 1919, 'M', 1571), +(22796, 'Homer', 1919, 'M', 1548), +(22797, 'Leslie', 1919, 'M', 1538), +(22798, 'Marion', 1919, 'M', 1487), +(22799, 'Wallace', 1919, 'M', 1481), +(22800, 'Jessie', 1919, 'M', 1473), +(22801, 'Maurice', 1919, 'M', 1473), +(22802, 'Max', 1919, 'M', 1459), +(22803, 'Irving', 1919, 'M', 1440), +(22804, 'Dale', 1919, 'M', 1428), +(22805, 'Alexander', 1919, 'M', 1422), +(22806, 'Hubert', 1919, 'M', 1416), +(22807, 'Hugh', 1919, 'M', 1416), +(22808, 'Glen', 1919, 'M', 1389), +(22809, 'Luther', 1919, 'M', 1378), +(22810, 'Manuel', 1919, 'M', 1362), +(22811, 'Roland', 1919, 'M', 1355), +(22812, 'Curtis', 1919, 'M', 1346), +(22813, 'Douglas', 1919, 'M', 1328), +(22814, 'Nicholas', 1919, 'M', 1322), +(22815, 'Julius', 1919, 'M', 1317), +(22816, 'Roger', 1919, 'M', 1299), +(22817, 'Steve', 1919, 'M', 1296), +(22818, 'Horace', 1919, 'M', 1215), +(22819, 'Ben', 1919, 'M', 1214), +(22820, 'Oliver', 1919, 'M', 1209), +(22821, 'Franklin', 1919, 'M', 1206), +(22822, 'Bill', 1919, 'M', 1196), +(22823, 'Willis', 1919, 'M', 1136), +(22824, 'Mike', 1919, 'M', 1122), +(22825, 'Orville', 1919, 'M', 1120), +(22826, 'Jerome', 1919, 'M', 1109), +(22827, 'Wesley', 1919, 'M', 1099), +(22828, 'Tony', 1919, 'M', 1097), +(22829, 'Alex', 1919, 'M', 1082), +(22830, 'Jacob', 1919, 'M', 1082), +(22831, 'Earnest', 1919, 'M', 1063), +(22832, 'Tom', 1919, 'M', 1058), +(22833, 'Jose', 1919, 'M', 1027), +(22834, 'Jimmie', 1919, 'M', 1021), +(22835, 'Archie', 1919, 'M', 1019), +(22836, 'Edmund', 1919, 'M', 1008), +(22837, 'Don', 1919, 'M', 956), +(22838, 'Otis', 1919, 'M', 931), +(22839, 'Jerry', 1919, 'M', 917), +(22840, 'Guy', 1919, 'M', 908), +(22841, 'Clayton', 1919, 'M', 901), +(22842, 'Clifton', 1919, 'M', 884), +(22843, 'Bruce', 1919, 'M', 880), +(22844, 'Matthew', 1919, 'M', 878), +(22845, 'Lyle', 1919, 'M', 877), +(22846, 'Billy', 1919, 'M', 858), +(22847, 'Wilson', 1919, 'M', 853), +(22848, 'Nathan', 1919, 'M', 849), +(22849, 'Salvatore', 1919, 'M', 849), +(22850, 'Delbert', 1919, 'M', 848), +(22851, 'Jim', 1919, 'M', 848), +(22852, 'Emil', 1919, 'M', 847), +(22853, 'Angelo', 1919, 'M', 844), +(22854, 'Bennie', 1919, 'M', 834), +(22855, 'Calvin', 1919, 'M', 833), +(22856, 'Ira', 1919, 'M', 817), +(22857, 'Marshall', 1919, 'M', 817), +(22858, 'Patrick', 1919, 'M', 816), +(22859, 'Clinton', 1919, 'M', 812), +(22860, 'Wilbert', 1919, 'M', 809), +(22861, 'Ervin', 1919, 'M', 803), +(22862, 'Rudolph', 1919, 'M', 803), +(22863, 'Ronald', 1919, 'M', 784), +(22864, 'Irvin', 1919, 'M', 764), +(22865, 'Sylvester', 1919, 'M', 749), +(22866, 'Nathaniel', 1919, 'M', 748), +(22867, 'Dan', 1919, 'M', 747), +(22868, 'Abraham', 1919, 'M', 742), +(22869, 'Phillip', 1919, 'M', 741), +(22870, 'Isaac', 1919, 'M', 737), +(22871, 'Elbert', 1919, 'M', 735), +(22872, 'Felix', 1919, 'M', 725), +(22873, 'Dean', 1919, 'M', 722), +(22874, 'Merle', 1919, 'M', 720), +(22875, 'Ivan', 1919, 'M', 702), +(22876, 'Wilfred', 1919, 'M', 696), +(22877, 'Forrest', 1919, 'M', 686), +(22878, 'Julian', 1919, 'M', 685), +(22879, 'Nelson', 1919, 'M', 682), +(22880, 'Nick', 1919, 'M', 682), +(22881, 'Grover', 1919, 'M', 680), +(22882, 'Rufus', 1919, 'M', 677), +(22883, 'Gene', 1919, 'M', 676), +(22884, 'Leland', 1919, 'M', 669), +(22885, 'Johnny', 1919, 'M', 660), +(22886, 'Keith', 1919, 'M', 653), +(22887, 'Aaron', 1919, 'M', 645), +(22888, 'Johnie', 1919, 'M', 645), +(22889, 'Jay', 1919, 'M', 637), +(22890, 'Ellis', 1919, 'M', 634), +(22891, 'Alton', 1919, 'M', 630), +(22892, 'Emmett', 1919, 'M', 629), +(22893, 'Pete', 1919, 'M', 628), +(22894, 'Dennis', 1919, 'M', 626), +(22895, 'August', 1919, 'M', 620), +(22896, 'Lowell', 1919, 'M', 608), +(22897, 'Dewey', 1919, 'M', 607), +(22898, 'Grady', 1919, 'M', 605), +(22899, 'Loyd', 1919, 'M', 604), +(22900, 'Otto', 1919, 'M', 596), +(22901, 'Percy', 1919, 'M', 595), +(22902, 'Lonnie', 1919, 'M', 592), +(22903, 'Elwood', 1919, 'M', 588), +(22904, 'Mark', 1919, 'M', 587), +(22905, 'Roscoe', 1919, 'M', 586), +(22906, 'Mack', 1919, 'M', 579), +(22907, 'Antonio', 1919, 'M', 578), +(22908, 'Seymour', 1919, 'M', 576), +(22909, 'Ted', 1919, 'M', 571), +(22910, 'Bert', 1919, 'M', 570), +(22911, 'Ross', 1919, 'M', 569), +(22912, 'Quentin', 1919, 'M', 566), +(22913, 'Owen', 1919, 'M', 556), +(22914, 'Bob', 1919, 'M', 548), +(22915, 'Myron', 1919, 'M', 546), +(22916, 'Adam', 1919, 'M', 542), +(22917, 'Adolph', 1919, 'M', 539), +(22918, 'Dominic', 1919, 'M', 536), +(22919, 'Laurence', 1919, 'M', 531), +(22920, 'Carroll', 1919, 'M', 530), +(22921, 'Perry', 1919, 'M', 528), +(22922, 'Amos', 1919, 'M', 524), +(22923, 'Juan', 1919, 'M', 524), +(22924, 'Rex', 1919, 'M', 522), +(22925, 'Eldon', 1919, 'M', 517), +(22926, 'Karl', 1919, 'M', 515), +(22927, 'Junior', 1919, 'M', 508), +(22928, 'Malcolm', 1919, 'M', 499), +(22929, 'Troy', 1919, 'M', 499), +(22930, 'Dominick', 1919, 'M', 489), +(22931, 'Byron', 1919, 'M', 487), +(22932, 'Allan', 1919, 'M', 481), +(22933, 'Loren', 1919, 'M', 479), +(22934, 'Wendell', 1919, 'M', 473), +(22935, 'Charley', 1919, 'M', 470), +(22936, 'Fredrick', 1919, 'M', 467), +(22937, 'Murray', 1919, 'M', 464), +(22938, 'Sherman', 1919, 'M', 463), +(22939, 'Tommie', 1919, 'M', 458), +(22940, 'Burton', 1919, 'M', 456), +(22941, 'Harley', 1919, 'M', 453), +(22942, 'Norbert', 1919, 'M', 449), +(22943, 'Erwin', 1919, 'M', 443), +(22944, 'Louie', 1919, 'M', 442), +(22945, 'Jesus', 1919, 'M', 439), +(22946, 'Freddie', 1919, 'M', 437), +(22947, 'Reuben', 1919, 'M', 432), +(22948, 'Kermit', 1919, 'M', 431), +(22949, 'Austin', 1919, 'M', 430), +(22950, 'Millard', 1919, 'M', 430), +(22951, 'Preston', 1919, 'M', 430), +(22952, 'Jasper', 1919, 'M', 424), +(22953, 'Cornelius', 1919, 'M', 415), +(22954, 'Boyd', 1919, 'M', 414), +(22955, 'Gerard', 1919, 'M', 410), +(22956, 'Grant', 1919, 'M', 406), +(22957, 'Larry', 1919, 'M', 405), +(22958, 'Carlton', 1919, 'M', 397), +(22959, 'Edmond', 1919, 'M', 396), +(22960, 'Aubrey', 1919, 'M', 392), +(22961, 'Steven', 1919, 'M', 381), +(22962, 'Dwight', 1919, 'M', 380), +(22963, 'Garland', 1919, 'M', 379), +(22964, 'Morton', 1919, 'M', 377), +(22965, 'Will', 1919, 'M', 373), +(22966, 'Ollie', 1919, 'M', 369), +(22967, 'Neil', 1919, 'M', 366), +(22968, 'Simon', 1919, 'M', 363), +(22969, 'Mitchell', 1919, 'M', 361), +(22970, 'Dave', 1919, 'M', 360), +(22971, 'Roosevelt', 1919, 'M', 359), +(22972, 'Joel', 1919, 'M', 358), +(22973, 'Billie', 1919, 'M', 356), +(22974, 'Cleo', 1919, 'M', 355), +(22975, 'Jess', 1919, 'M', 355), +(22976, 'Maynard', 1919, 'M', 355), +(22977, 'Thurman', 1919, 'M', 355), +(22978, 'Cleveland', 1919, 'M', 354), +(22979, 'Mario', 1919, 'M', 353), +(22980, 'Solomon', 1919, 'M', 353), +(22981, 'Moses', 1919, 'M', 347), +(22982, 'Lynn', 1919, 'M', 346), +(22983, 'Claud', 1919, 'M', 344), +(22984, 'Clair', 1919, 'M', 339), +(22985, 'Monroe', 1919, 'M', 339), +(22986, 'Laverne', 1919, 'M', 337), +(22987, 'Jake', 1919, 'M', 334), +(22988, 'Wade', 1919, 'M', 333), +(22989, 'Wilmer', 1919, 'M', 333), +(22990, 'Rocco', 1919, 'M', 332), +(22991, 'Alan', 1919, 'M', 330), +(22992, 'Elton', 1919, 'M', 330), +(22993, 'Anton', 1919, 'M', 327), +(22994, 'Clark', 1919, 'M', 327), +(22995, 'Ed', 1919, 'M', 327), +(22996, 'Alphonse', 1919, 'M', 324), +(22997, 'Elmo', 1919, 'M', 324), +(22998, 'Gus', 1919, 'M', 323), +(22999, 'Emanuel', 1919, 'M', 322), +(23000, 'Harrison', 1919, 'M', 322), +(23001, 'Alonzo', 1919, 'M', 321), +(23002, 'Russel', 1919, 'M', 317), +(23003, 'Doyle', 1919, 'M', 315), +(23004, 'Elvin', 1919, 'M', 315), +(23005, 'Rodney', 1919, 'M', 315), +(23006, 'Carlos', 1919, 'M', 313), +(23007, 'Duane', 1919, 'M', 311), +(23008, 'Irwin', 1919, 'M', 308), +(23009, 'Harlan', 1919, 'M', 307), +(23010, 'Odell', 1919, 'M', 305), +(23011, 'Barney', 1919, 'M', 304), +(23012, 'Cyril', 1919, 'M', 304), +(23013, 'Emery', 1919, 'M', 304), +(23014, 'Delmar', 1919, 'M', 302), +(23015, 'Dallas', 1919, 'M', 301), +(23016, 'Patsy', 1919, 'M', 299), +(23017, 'Tommy', 1919, 'M', 298), +(23018, 'Forest', 1919, 'M', 296), +(23019, 'Elijah', 1919, 'M', 295), +(23020, 'Clement', 1919, 'M', 294), +(23021, 'Neal', 1919, 'M', 294), +(23022, 'Hyman', 1919, 'M', 292), +(23023, 'Ruben', 1919, 'M', 292), +(23024, 'Darrell', 1919, 'M', 290), +(23025, 'Marcus', 1919, 'M', 287), +(23026, 'Andy', 1919, 'M', 285), +(23027, 'Levi', 1919, 'M', 285), +(23028, 'Earle', 1919, 'M', 283), +(23029, 'Ramon', 1919, 'M', 280), +(23030, 'Francisco', 1919, 'M', 279), +(23031, 'Merrill', 1919, 'M', 279), +(23032, 'Benny', 1919, 'M', 276), +(23033, 'Adrian', 1919, 'M', 274), +(23034, 'Wilburn', 1919, 'M', 274), +(23035, 'Ned', 1919, 'M', 270), +(23036, 'Orval', 1919, 'M', 270), +(23037, 'Stuart', 1919, 'M', 270), +(23038, 'Conrad', 1919, 'M', 269), +(23039, 'Dick', 1919, 'M', 269), +(23040, 'Thaddeus', 1919, 'M', 267), +(23041, 'Abe', 1919, 'M', 264), +(23042, 'Alva', 1919, 'M', 264), +(23043, 'Christopher', 1919, 'M', 264), +(23044, 'Emerson', 1919, 'M', 264), +(23045, 'Basil', 1919, 'M', 262), +(23046, 'Bruno', 1919, 'M', 261), +(23047, 'Miles', 1919, 'M', 261), +(23048, 'Armand', 1919, 'M', 260), +(23049, 'Buford', 1919, 'M', 258), +(23050, 'Roman', 1919, 'M', 258), +(23051, 'Coy', 1919, 'M', 257), +(23052, 'Carmen', 1919, 'M', 256), +(23053, 'Sterling', 1919, 'M', 254), +(23054, 'Lionel', 1919, 'M', 253), +(23055, 'Noah', 1919, 'M', 253), +(23056, 'Stewart', 1919, 'M', 252), +(23057, 'Merlin', 1919, 'M', 251), +(23058, 'Hollis', 1919, 'M', 249), +(23059, 'Timothy', 1919, 'M', 249), +(23060, 'Mathew', 1919, 'M', 248), +(23061, 'Sanford', 1919, 'M', 246), +(23062, 'Reginald', 1919, 'M', 244), +(23063, 'Ward', 1919, 'M', 243), +(23064, 'Randolph', 1919, 'M', 242), +(23065, 'Eli', 1919, 'M', 241), +(23066, 'Jimmy', 1919, 'M', 239), +(23067, 'Teddy', 1919, 'M', 239), +(23068, 'Wilford', 1919, 'M', 238), +(23069, 'Weldon', 1919, 'M', 237), +(23070, 'Jackson', 1919, 'M', 235), +(23071, 'Herschel', 1919, 'M', 234), +(23072, 'Wiley', 1919, 'M', 234), +(23073, 'Pedro', 1919, 'M', 232), +(23074, 'Saul', 1919, 'M', 232), +(23075, 'Travis', 1919, 'M', 232), +(23076, 'Ellsworth', 1919, 'M', 231), +(23077, 'Orlando', 1919, 'M', 231), +(23078, 'Vern', 1919, 'M', 231), +(23079, 'Sammie', 1919, 'M', 229), +(23080, 'Sol', 1919, 'M', 228), +(23081, 'Isadore', 1919, 'M', 225), +(23082, 'Truman', 1919, 'M', 225), +(23083, 'Emory', 1919, 'M', 224), +(23084, 'Jean', 1919, 'M', 224), +(23085, 'Winfred', 1919, 'M', 222), +(23086, 'Alfonso', 1919, 'M', 220), +(23087, 'Casimir', 1919, 'M', 220), +(23088, 'Buster', 1919, 'M', 219), +(23089, 'Lavern', 1919, 'M', 219), +(23090, 'Booker', 1919, 'M', 215), +(23091, 'Everette', 1919, 'M', 211), +(23092, 'Hiram', 1919, 'M', 211), +(23093, 'Vito', 1919, 'M', 211), +(23094, 'Mervin', 1919, 'M', 210), +(23095, 'Luis', 1919, 'M', 209); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(23096, 'Newton', 1919, 'M', 208), +(23097, 'Winston', 1919, 'M', 208), +(23098, 'Hershel', 1919, 'M', 206), +(23099, 'Ferdinand', 1919, 'M', 205), +(23100, 'Milford', 1919, 'M', 205), +(23101, 'Carmine', 1919, 'M', 202), +(23102, 'Royal', 1919, 'M', 202), +(23103, 'Silas', 1919, 'M', 202), +(23104, 'Harris', 1919, 'M', 201), +(23105, 'Norris', 1919, 'M', 200), +(23106, 'Freeman', 1919, 'M', 199), +(23107, 'Omer', 1919, 'M', 199), +(23108, 'Odis', 1919, 'M', 198), +(23109, 'Sheldon', 1919, 'M', 198), +(23110, 'Shirley', 1919, 'M', 197), +(23111, 'Milo', 1919, 'M', 196), +(23112, 'Pasquale', 1919, 'M', 195), +(23113, 'Riley', 1919, 'M', 194), +(23114, 'Denver', 1919, 'M', 193), +(23115, 'Dudley', 1919, 'M', 192), +(23116, 'Aloysius', 1919, 'M', 191), +(23117, 'Gabriel', 1919, 'M', 191), +(23118, 'Eric', 1919, 'M', 190), +(23119, 'Noble', 1919, 'M', 190), +(23120, 'Scott', 1919, 'M', 189), +(23121, 'Delmer', 1919, 'M', 188), +(23122, 'Foster', 1919, 'M', 188), +(23123, 'Ambrose', 1919, 'M', 187), +(23124, 'Wilton', 1919, 'M', 185), +(23125, 'Bertram', 1919, 'M', 184), +(23126, 'Jeff', 1919, 'M', 184), +(23127, 'Armando', 1919, 'M', 183), +(23128, 'Isidore', 1919, 'M', 183), +(23129, 'Major', 1919, 'M', 183), +(23130, 'Marlin', 1919, 'M', 183), +(23131, 'Olen', 1919, 'M', 183), +(23132, 'Lenard', 1919, 'M', 182), +(23133, 'Pat', 1919, 'M', 180), +(23134, 'Van', 1919, 'M', 180), +(23135, 'Salvador', 1919, 'M', 178), +(23136, 'Augustus', 1919, 'M', 176), +(23137, 'Gail', 1919, 'M', 176), +(23138, 'Rolland', 1919, 'M', 176), +(23139, 'Meyer', 1919, 'M', 172), +(23140, 'Elliott', 1919, 'M', 171), +(23141, 'Houston', 1919, 'M', 171), +(23142, 'Bud', 1919, 'M', 169), +(23143, 'Cletus', 1919, 'M', 168), +(23144, 'Elias', 1919, 'M', 168), +(23145, 'Mose', 1919, 'M', 168), +(23146, 'Alden', 1919, 'M', 167), +(23147, 'Hobert', 1919, 'M', 167), +(23148, 'Randall', 1919, 'M', 167), +(23149, 'Verne', 1919, 'M', 167), +(23150, 'Olin', 1919, 'M', 166), +(23151, 'Lorenzo', 1919, 'M', 165), +(23152, 'Luke', 1919, 'M', 165), +(23153, 'Noel', 1919, 'M', 165), +(23154, 'Columbus', 1919, 'M', 164), +(23155, 'Lyman', 1919, 'M', 164), +(23156, 'Ulysses', 1919, 'M', 164), +(23157, 'Edd', 1919, 'M', 163), +(23158, 'Gregory', 1919, 'M', 163), +(23159, 'Lamar', 1919, 'M', 163), +(23160, 'Hal', 1919, 'M', 162), +(23161, 'Wilber', 1919, 'M', 162), +(23162, 'Guadalupe', 1919, 'M', 161), +(23163, 'Sydney', 1919, 'M', 161), +(23164, 'Al', 1919, 'M', 160), +(23165, 'Spencer', 1919, 'M', 160), +(23166, 'Linwood', 1919, 'M', 159), +(23167, 'Micheal', 1919, 'M', 159), +(23168, 'Hugo', 1919, 'M', 158), +(23169, 'Ora', 1919, 'M', 158), +(23170, 'Vance', 1919, 'M', 158), +(23171, 'Albin', 1919, 'M', 157), +(23172, 'Justin', 1919, 'M', 156), +(23173, 'Darwin', 1919, 'M', 155), +(23174, 'Mary', 1919, 'M', 155), +(23175, 'Hoyt', 1919, 'M', 153), +(23176, 'Quinton', 1919, 'M', 152), +(23177, 'Frederic', 1919, 'M', 151), +(23178, 'Davis', 1919, 'M', 150), +(23179, 'Dewitt', 1919, 'M', 150), +(23180, 'Emile', 1919, 'M', 150), +(23181, 'Theron', 1919, 'M', 150), +(23182, 'Nolan', 1919, 'M', 149), +(23183, 'Fay', 1919, 'M', 148), +(23184, 'Anderson', 1919, 'M', 147), +(23185, 'Jefferson', 1919, 'M', 146), +(23186, 'Gale', 1919, 'M', 145), +(23187, 'Isiah', 1919, 'M', 144), +(23188, 'Ezra', 1919, 'M', 143), +(23189, 'Harmon', 1919, 'M', 143), +(23190, 'Kelly', 1919, 'M', 143), +(23191, 'Lucius', 1919, 'M', 142), +(23192, 'Shelby', 1919, 'M', 142), +(23193, 'Valentine', 1919, 'M', 142), +(23194, 'Palmer', 1919, 'M', 140), +(23195, 'Arlie', 1919, 'M', 139), +(23196, 'Fletcher', 1919, 'M', 139), +(23197, 'Isaiah', 1919, 'M', 139), +(23198, 'Joshua', 1919, 'M', 139), +(23199, 'Morgan', 1919, 'M', 138), +(23200, 'Haywood', 1919, 'M', 137), +(23201, 'Lemuel', 1919, 'M', 137), +(23202, 'Miguel', 1919, 'M', 137), +(23203, 'Blaine', 1919, 'M', 136), +(23204, 'Elroy', 1919, 'M', 136), +(23205, 'Royce', 1919, 'M', 136), +(23206, 'Maxwell', 1919, 'M', 134), +(23207, 'Alfredo', 1919, 'M', 132), +(23208, 'Evan', 1919, 'M', 132), +(23209, 'Oren', 1919, 'M', 132), +(23210, 'Domingo', 1919, 'M', 131), +(23211, 'Gustave', 1919, 'M', 131), +(23212, 'Nickolas', 1919, 'M', 131), +(23213, 'Burl', 1919, 'M', 130), +(23214, 'Phil', 1919, 'M', 130), +(23215, 'Coleman', 1919, 'M', 129), +(23216, 'Israel', 1919, 'M', 129), +(23217, 'Lucien', 1919, 'M', 129), +(23218, 'Chris', 1919, 'M', 128), +(23219, 'Clay', 1919, 'M', 128), +(23220, 'Jules', 1919, 'M', 128), +(23221, 'Jewel', 1919, 'M', 127), +(23222, 'Sebastian', 1919, 'M', 126), +(23223, 'Christian', 1919, 'M', 125), +(23224, 'Dee', 1919, 'M', 125), +(23225, 'Mason', 1919, 'M', 125), +(23226, 'Mckinley', 1919, 'M', 125), +(23227, 'Antone', 1919, 'M', 124), +(23228, 'Augustine', 1919, 'M', 124), +(23229, 'Waldo', 1919, 'M', 124), +(23230, 'Walton', 1919, 'M', 124), +(23231, 'Dalton', 1919, 'M', 123), +(23232, 'Granville', 1919, 'M', 123), +(23233, 'Carlo', 1919, 'M', 122), +(23234, 'Rubin', 1919, 'M', 122), +(23235, 'Jeremiah', 1919, 'M', 121), +(23236, 'Junius', 1919, 'M', 121), +(23237, 'Alphonso', 1919, 'M', 120), +(23238, 'Arther', 1919, 'M', 120), +(23239, 'King', 1919, 'M', 120), +(23240, 'Benedict', 1919, 'M', 119), +(23241, 'Taylor', 1919, 'M', 119), +(23242, 'Walker', 1919, 'M', 119), +(23243, 'Carrol', 1919, 'M', 118), +(23244, 'Dock', 1919, 'M', 118), +(23245, 'Rene', 1919, 'M', 118), +(23246, 'Sigmund', 1919, 'M', 118), +(23247, 'Domenic', 1919, 'M', 116), +(23248, 'Lincoln', 1919, 'M', 116), +(23249, 'Omar', 1919, 'M', 116), +(23250, 'Emmitt', 1919, 'M', 115), +(23251, 'Alberto', 1919, 'M', 114), +(23252, 'Otha', 1919, 'M', 114), +(23253, 'Porter', 1919, 'M', 114), +(23254, 'Casper', 1919, 'M', 113), +(23255, 'Rupert', 1919, 'M', 113), +(23256, 'Avery', 1919, 'M', 112), +(23257, 'Enoch', 1919, 'M', 112), +(23258, 'Rosario', 1919, 'M', 112), +(23259, 'Garfield', 1919, 'M', 111), +(23260, 'Ottis', 1919, 'M', 111), +(23261, 'Romeo', 1919, 'M', 111), +(23262, 'Winfield', 1919, 'M', 111), +(23263, 'Elden', 1919, 'M', 110), +(23264, 'Gaylord', 1919, 'M', 110), +(23265, 'Jewell', 1919, 'M', 110), +(23266, 'Napoleon', 1919, 'M', 109), +(23267, 'Raul', 1919, 'M', 109), +(23268, 'Bennett', 1919, 'M', 108), +(23269, 'Darrel', 1919, 'M', 108), +(23270, 'Rafael', 1919, 'M', 108), +(23271, 'Raymon', 1919, 'M', 108), +(23272, 'Carter', 1919, 'M', 107), +(23273, 'Dempsey', 1919, 'M', 107), +(23274, 'Hector', 1919, 'M', 107), +(23275, 'Warner', 1919, 'M', 107), +(23276, 'Elvis', 1919, 'M', 106), +(23277, 'Harland', 1919, 'M', 106), +(23278, 'Felton', 1919, 'M', 105), +(23279, 'Elwin', 1919, 'M', 104), +(23280, 'Guido', 1919, 'M', 104), +(23281, 'Haskell', 1919, 'M', 104), +(23282, 'Joesph', 1919, 'M', 104), +(23283, 'Merton', 1919, 'M', 104), +(23284, 'Reed', 1919, 'M', 104), +(23285, 'Bernice', 1919, 'M', 103), +(23286, 'Carson', 1919, 'M', 103), +(23287, 'Pershing', 1919, 'M', 103), +(23288, 'Rollin', 1919, 'M', 103), +(23289, 'Buck', 1919, 'M', 102), +(23290, 'Cyrus', 1919, 'M', 102), +(23291, 'Elmore', 1919, 'M', 102), +(23292, 'Carlyle', 1919, 'M', 101), +(23293, 'Frances', 1919, 'M', 101), +(23294, 'Matt', 1919, 'M', 101), +(23295, 'Bernie', 1919, 'M', 100), +(23296, 'Dorsey', 1919, 'M', 100), +(23297, 'Florian', 1919, 'M', 100), +(23298, 'Julio', 1919, 'M', 100), +(23299, 'Marcel', 1919, 'M', 100), +(23300, 'Mary', 1920, 'F', 70976), +(23301, 'Dorothy', 1920, 'F', 36647), +(23302, 'Helen', 1920, 'F', 35098), +(23303, 'Margaret', 1920, 'F', 27995), +(23304, 'Ruth', 1920, 'F', 26100), +(23305, 'Mildred', 1920, 'F', 18058), +(23306, 'Virginia', 1920, 'F', 17313), +(23307, 'Elizabeth', 1920, 'F', 15909), +(23308, 'Frances', 1920, 'F', 15883), +(23309, 'Anna', 1920, 'F', 14582), +(23310, 'Betty', 1920, 'F', 14017), +(23311, 'Evelyn', 1920, 'F', 13838), +(23312, 'Marie', 1920, 'F', 12745), +(23313, 'Doris', 1920, 'F', 11893), +(23314, 'Alice', 1920, 'F', 11596), +(23315, 'Florence', 1920, 'F', 10731), +(23316, 'Irene', 1920, 'F', 10071), +(23317, 'Lillian', 1920, 'F', 10050), +(23318, 'Louise', 1920, 'F', 9181), +(23319, 'Rose', 1920, 'F', 9011), +(23320, 'Catherine', 1920, 'F', 8877), +(23321, 'Gladys', 1920, 'F', 8819), +(23322, 'Martha', 1920, 'F', 8709), +(23323, 'Marjorie', 1920, 'F', 8659), +(23324, 'Eleanor', 1920, 'F', 8499), +(23325, 'Ruby', 1920, 'F', 8337), +(23326, 'Edna', 1920, 'F', 8332), +(23327, 'Josephine', 1920, 'F', 8095), +(23328, 'Lucille', 1920, 'F', 7986), +(23329, 'Ethel', 1920, 'F', 7868), +(23330, 'Thelma', 1920, 'F', 7815), +(23331, 'Edith', 1920, 'F', 7773), +(23332, 'Jean', 1920, 'F', 7713), +(23333, 'Hazel', 1920, 'F', 7308), +(23334, 'Annie', 1920, 'F', 7265), +(23335, 'Pauline', 1920, 'F', 7179), +(23336, 'Grace', 1920, 'F', 7173), +(23337, 'Lois', 1920, 'F', 6561), +(23338, 'Esther', 1920, 'F', 6067), +(23339, 'Bernice', 1920, 'F', 5928), +(23340, 'Beatrice', 1920, 'F', 5803), +(23341, 'Gertrude', 1920, 'F', 5797), +(23342, 'Marion', 1920, 'F', 5745), +(23343, 'Clara', 1920, 'F', 5469), +(23344, 'Katherine', 1920, 'F', 5275), +(23345, 'Emma', 1920, 'F', 5237), +(23346, 'Barbara', 1920, 'F', 5106), +(23347, 'Jane', 1920, 'F', 5055), +(23348, 'Ann', 1920, 'F', 5040), +(23349, 'Sarah', 1920, 'F', 5031), +(23350, 'Elsie', 1920, 'F', 4992), +(23351, 'Rita', 1920, 'F', 4977), +(23352, 'June', 1920, 'F', 4912), +(23353, 'Agnes', 1920, 'F', 4907), +(23354, 'Julia', 1920, 'F', 4889), +(23355, 'Shirley', 1920, 'F', 4715), +(23356, 'Bertha', 1920, 'F', 4603), +(23357, 'Eva', 1920, 'F', 4499), +(23358, 'Viola', 1920, 'F', 4292), +(23359, 'Geraldine', 1920, 'F', 4265), +(23360, 'Juanita', 1920, 'F', 4239), +(23361, 'Pearl', 1920, 'F', 4204), +(23362, 'Laura', 1920, 'F', 4171), +(23363, 'Vivian', 1920, 'F', 4128), +(23364, 'Anne', 1920, 'F', 4114), +(23365, 'Ida', 1920, 'F', 4092), +(23366, 'Kathryn', 1920, 'F', 4082), +(23367, 'Myrtle', 1920, 'F', 3955), +(23368, 'Norma', 1920, 'F', 3948), +(23369, 'Lorraine', 1920, 'F', 3928), +(23370, 'Bessie', 1920, 'F', 3904), +(23371, 'Phyllis', 1920, 'F', 3852), +(23372, 'Marian', 1920, 'F', 3844), +(23373, 'Willie', 1920, 'F', 3816), +(23374, 'Vera', 1920, 'F', 3785), +(23375, 'Nellie', 1920, 'F', 3763), +(23376, 'Violet', 1920, 'F', 3694), +(23377, 'Wilma', 1920, 'F', 3671), +(23378, 'Charlotte', 1920, 'F', 3623), +(23379, 'Alma', 1920, 'F', 3584), +(23380, 'Maxine', 1920, 'F', 3505), +(23381, 'Stella', 1920, 'F', 3492), +(23382, 'Mabel', 1920, 'F', 3364), +(23383, 'Jessie', 1920, 'F', 3330), +(23384, 'Sylvia', 1920, 'F', 3319), +(23385, 'Genevieve', 1920, 'F', 3258), +(23386, 'Minnie', 1920, 'F', 3244), +(23387, 'Ella', 1920, 'F', 3232), +(23388, 'Leona', 1920, 'F', 3166), +(23389, 'Lillie', 1920, 'F', 3161), +(23390, 'Kathleen', 1920, 'F', 3156), +(23391, 'Ellen', 1920, 'F', 3076), +(23392, 'Marguerite', 1920, 'F', 3054), +(23393, 'Lucy', 1920, 'F', 3017), +(23394, 'Nancy', 1920, 'F', 2982), +(23395, 'Mattie', 1920, 'F', 2902), +(23396, 'Jennie', 1920, 'F', 2808), +(23397, 'Lena', 1920, 'F', 2785), +(23398, 'Mae', 1920, 'F', 2730), +(23399, 'Eileen', 1920, 'F', 2716), +(23400, 'Opal', 1920, 'F', 2702), +(23401, 'Blanche', 1920, 'F', 2688), +(23402, 'Audrey', 1920, 'F', 2666), +(23403, 'Patricia', 1920, 'F', 2502), +(23404, 'Velma', 1920, 'F', 2491), +(23405, 'Geneva', 1920, 'F', 2467), +(23406, 'Elaine', 1920, 'F', 2433), +(23407, 'Theresa', 1920, 'F', 2426), +(23408, 'Beulah', 1920, 'F', 2377), +(23409, 'Dolores', 1920, 'F', 2366), +(23410, 'Sara', 1920, 'F', 2364), +(23411, 'Harriet', 1920, 'F', 2361), +(23412, 'Georgia', 1920, 'F', 2355), +(23413, 'Jeanne', 1920, 'F', 2279), +(23414, 'Eunice', 1920, 'F', 2238), +(23415, 'Rosa', 1920, 'F', 2199), +(23416, 'Wanda', 1920, 'F', 2198), +(23417, 'Christine', 1920, 'F', 2180), +(23418, 'Emily', 1920, 'F', 2167), +(23419, 'Loretta', 1920, 'F', 2122), +(23420, 'Carrie', 1920, 'F', 2108), +(23421, 'Inez', 1920, 'F', 2107), +(23422, 'Muriel', 1920, 'F', 2071), +(23423, 'Janet', 1920, 'F', 2057), +(23424, 'Hilda', 1920, 'F', 2051), +(23425, 'Jeanette', 1920, 'F', 2043), +(23426, 'Fannie', 1920, 'F', 1979), +(23427, 'Alberta', 1920, 'F', 1967), +(23428, 'Sophie', 1920, 'F', 1965), +(23429, 'Maria', 1920, 'F', 1936), +(23430, 'Anita', 1920, 'F', 1935), +(23431, 'Hattie', 1920, 'F', 1871), +(23432, 'Dora', 1920, 'F', 1865), +(23433, 'Naomi', 1920, 'F', 1853), +(23434, 'Verna', 1920, 'F', 1850), +(23435, 'Ada', 1920, 'F', 1824), +(23436, 'Cora', 1920, 'F', 1818), +(23437, 'Madeline', 1920, 'F', 1780), +(23438, 'Lula', 1920, 'F', 1765), +(23439, 'Miriam', 1920, 'F', 1744), +(23440, 'Rosemary', 1920, 'F', 1713), +(23441, 'Mamie', 1920, 'F', 1708), +(23442, 'Joan', 1920, 'F', 1647), +(23443, 'Roberta', 1920, 'F', 1636), +(23444, 'Arlene', 1920, 'F', 1594), +(23445, 'Olga', 1920, 'F', 1590), +(23446, 'Lola', 1920, 'F', 1580), +(23447, 'Mable', 1920, 'F', 1580), +(23448, 'Flora', 1920, 'F', 1566), +(23449, 'Carolyn', 1920, 'F', 1556), +(23450, 'Olive', 1920, 'F', 1552), +(23451, 'Erma', 1920, 'F', 1529), +(23452, 'Joyce', 1920, 'F', 1523), +(23453, 'Bonnie', 1920, 'F', 1515), +(23454, 'Daisy', 1920, 'F', 1491), +(23455, 'Rachel', 1920, 'F', 1484), +(23456, 'Nora', 1920, 'F', 1477), +(23457, 'Estelle', 1920, 'F', 1460), +(23458, 'Caroline', 1920, 'F', 1437), +(23459, 'Winifred', 1920, 'F', 1433), +(23460, 'Marcella', 1920, 'F', 1404), +(23461, 'Rosie', 1920, 'F', 1396), +(23462, 'Susie', 1920, 'F', 1395), +(23463, 'Irma', 1920, 'F', 1393), +(23464, 'Constance', 1920, 'F', 1377), +(23465, 'Lucile', 1920, 'F', 1357), +(23466, 'Lorene', 1920, 'F', 1354), +(23467, 'Margie', 1920, 'F', 1353), +(23468, 'Eula', 1920, 'F', 1305), +(23469, 'Fern', 1920, 'F', 1304), +(23470, 'Henrietta', 1920, 'F', 1301), +(23471, 'Maggie', 1920, 'F', 1299), +(23472, 'Victoria', 1920, 'F', 1286), +(23473, 'Sadie', 1920, 'F', 1285), +(23474, 'Rebecca', 1920, 'F', 1269), +(23475, 'Adeline', 1920, 'F', 1260), +(23476, 'Lottie', 1920, 'F', 1240), +(23477, 'Eloise', 1920, 'F', 1239), +(23478, 'Nina', 1920, 'F', 1226), +(23479, 'Antoinette', 1920, 'F', 1162), +(23480, 'Carol', 1920, 'F', 1141), +(23481, 'Nettie', 1920, 'F', 1141), +(23482, 'Della', 1920, 'F', 1137), +(23483, 'Katie', 1920, 'F', 1121), +(23484, 'Lydia', 1920, 'F', 1118), +(23485, 'Regina', 1920, 'F', 1116), +(23486, 'Dorothea', 1920, 'F', 1110), +(23487, 'Laverne', 1920, 'F', 1094), +(23488, 'Jeannette', 1920, 'F', 1059), +(23489, 'Amelia', 1920, 'F', 1054), +(23490, 'Cleo', 1920, 'F', 1048), +(23491, 'Veronica', 1920, 'F', 1039), +(23492, 'Angelina', 1920, 'F', 1036), +(23493, 'Claire', 1920, 'F', 1019), +(23494, 'Gloria', 1920, 'F', 1018), +(23495, 'Bette', 1920, 'F', 999), +(23496, 'Essie', 1920, 'F', 996), +(23497, 'Goldie', 1920, 'F', 996), +(23498, 'Isabel', 1920, 'F', 992), +(23499, 'Rosalie', 1920, 'F', 984), +(23500, 'Freda', 1920, 'F', 974), +(23501, 'Donna', 1920, 'F', 959), +(23502, 'Sally', 1920, 'F', 958), +(23503, 'May', 1920, 'F', 955), +(23504, 'Ollie', 1920, 'F', 950), +(23505, 'Adele', 1920, 'F', 944), +(23506, 'Beverly', 1920, 'F', 940), +(23507, 'Faye', 1920, 'F', 935), +(23508, 'Angeline', 1920, 'F', 918), +(23509, 'Melba', 1920, 'F', 907), +(23510, 'Addie', 1920, 'F', 904), +(23511, 'Billie', 1920, 'F', 902), +(23512, 'Isabelle', 1920, 'F', 899), +(23513, 'Effie', 1920, 'F', 895), +(23514, 'Ora', 1920, 'F', 894), +(23515, 'Jewell', 1920, 'F', 893), +(23516, 'Cecelia', 1920, 'F', 891), +(23517, 'Lela', 1920, 'F', 878), +(23518, 'Peggy', 1920, 'F', 875), +(23519, 'Annette', 1920, 'F', 868), +(23520, 'Ernestine', 1920, 'F', 863), +(23521, 'Iva', 1920, 'F', 861), +(23522, 'Johnnie', 1920, 'F', 854), +(23523, 'Luella', 1920, 'F', 852), +(23524, 'Susan', 1920, 'F', 851), +(23525, 'Leola', 1920, 'F', 849), +(23526, 'Lila', 1920, 'F', 840), +(23527, 'Jewel', 1920, 'F', 826), +(23528, 'Imogene', 1920, 'F', 804), +(23529, 'Etta', 1920, 'F', 803), +(23530, 'Sallie', 1920, 'F', 803), +(23531, 'Bettie', 1920, 'F', 777), +(23532, 'Selma', 1920, 'F', 768), +(23533, 'Elva', 1920, 'F', 767), +(23534, 'Janie', 1920, 'F', 764), +(23535, 'Gwendolyn', 1920, 'F', 758), +(23536, 'Cecilia', 1920, 'F', 757), +(23537, 'Carmen', 1920, 'F', 756), +(23538, 'Ola', 1920, 'F', 748), +(23539, 'Eleanore', 1920, 'F', 737), +(23540, 'Delores', 1920, 'F', 733), +(23541, 'Celia', 1920, 'F', 726), +(23542, 'Teresa', 1920, 'F', 720), +(23543, 'Alta', 1920, 'F', 715), +(23544, 'Lizzie', 1920, 'F', 711), +(23545, 'Sue', 1920, 'F', 707), +(23546, 'Yvonne', 1920, 'F', 702), +(23547, 'Reba', 1920, 'F', 698), +(23548, 'Maude', 1920, 'F', 695), +(23549, 'Fay', 1920, 'F', 690), +(23550, 'Ina', 1920, 'F', 684), +(23551, 'Helene', 1920, 'F', 680), +(23552, 'Frieda', 1920, 'F', 674), +(23553, 'Janice', 1920, 'F', 670), +(23554, 'Angela', 1920, 'F', 665), +(23555, 'Nell', 1920, 'F', 661), +(23556, 'Elinor', 1920, 'F', 656), +(23557, 'Nannie', 1920, 'F', 655), +(23558, 'Francis', 1920, 'F', 654), +(23559, 'Priscilla', 1920, 'F', 637), +(23560, 'Matilda', 1920, 'F', 635), +(23561, 'Iris', 1920, 'F', 633), +(23562, 'Amy', 1920, 'F', 624), +(23563, 'Estella', 1920, 'F', 616), +(23564, 'Elnora', 1920, 'F', 607), +(23565, 'Elma', 1920, 'F', 600), +(23566, 'Lenora', 1920, 'F', 595), +(23567, 'Elvira', 1920, 'F', 592), +(23568, 'Nadine', 1920, 'F', 586), +(23569, 'Harriett', 1920, 'F', 585), +(23570, 'Eugenia', 1920, 'F', 584), +(23571, 'Arline', 1920, 'F', 583), +(23572, 'Annabelle', 1920, 'F', 571), +(23573, 'Ila', 1920, 'F', 561), +(23574, 'Mollie', 1920, 'F', 560), +(23575, 'Neva', 1920, 'F', 558), +(23576, 'Clarice', 1920, 'F', 553), +(23577, 'Natalie', 1920, 'F', 547), +(23578, 'Flossie', 1920, 'F', 545), +(23579, 'Sophia', 1920, 'F', 545), +(23580, 'Lee', 1920, 'F', 543), +(23581, 'Jacqueline', 1920, 'F', 540), +(23582, 'Margery', 1920, 'F', 534), +(23583, 'Gracie', 1920, 'F', 527), +(23584, 'Virgie', 1920, 'F', 527), +(23585, 'Leah', 1920, 'F', 523), +(23586, 'Olivia', 1920, 'F', 523), +(23587, 'Marilyn', 1920, 'F', 522), +(23588, 'Myra', 1920, 'F', 516), +(23589, 'Carmela', 1920, 'F', 512), +(23590, 'Edythe', 1920, 'F', 512), +(23591, 'Connie', 1920, 'F', 494), +(23592, 'Rena', 1920, 'F', 494), +(23593, 'Winnie', 1920, 'F', 490), +(23594, 'Mavis', 1920, 'F', 487), +(23595, 'Sybil', 1920, 'F', 483), +(23596, 'Cecile', 1920, 'F', 482), +(23597, 'Millie', 1920, 'F', 478), +(23598, 'Adelaide', 1920, 'F', 471), +(23599, 'Hannah', 1920, 'F', 471), +(23600, 'Bernadine', 1920, 'F', 469), +(23601, 'Madge', 1920, 'F', 464), +(23602, 'Odessa', 1920, 'F', 464), +(23603, 'Carmella', 1920, 'F', 463), +(23604, 'Aileen', 1920, 'F', 457), +(23605, 'Frankie', 1920, 'F', 454), +(23606, 'Cornelia', 1920, 'F', 453), +(23607, 'Zelma', 1920, 'F', 448), +(23608, 'Berniece', 1920, 'F', 447), +(23609, 'Aline', 1920, 'F', 445), +(23610, 'Lorena', 1920, 'F', 440), +(23611, 'Avis', 1920, 'F', 438), +(23612, 'Dorthy', 1920, 'F', 437), +(23613, 'Josie', 1920, 'F', 437), +(23614, 'Alyce', 1920, 'F', 434), +(23615, 'Letha', 1920, 'F', 429), +(23616, 'Willa', 1920, 'F', 424), +(23617, 'Rhoda', 1920, 'F', 421), +(23618, 'Rosetta', 1920, 'F', 418), +(23619, 'Concetta', 1920, 'F', 414), +(23620, 'Allie', 1920, 'F', 413), +(23621, 'Rosella', 1920, 'F', 406), +(23622, 'Leila', 1920, 'F', 405), +(23623, 'Merle', 1920, 'F', 403), +(23624, 'Lenore', 1920, 'F', 402), +(23625, 'Dollie', 1920, 'F', 395), +(23626, 'Eliza', 1920, 'F', 392), +(23627, 'Corinne', 1920, 'F', 390), +(23628, 'Claudia', 1920, 'F', 389), +(23629, 'Loraine', 1920, 'F', 389), +(23630, 'Lily', 1920, 'F', 386), +(23631, 'Jimmie', 1920, 'F', 385), +(23632, 'Christina', 1920, 'F', 384), +(23633, 'Helena', 1920, 'F', 384), +(23634, 'Amanda', 1920, 'F', 379), +(23635, 'Corine', 1920, 'F', 376), +(23636, 'Joy', 1920, 'F', 376), +(23637, 'Ramona', 1920, 'F', 375), +(23638, 'Iona', 1920, 'F', 373), +(23639, 'Lora', 1920, 'F', 373), +(23640, 'Judith', 1920, 'F', 370), +(23641, 'Ione', 1920, 'F', 367), +(23642, 'Tillie', 1920, 'F', 365), +(23643, 'Florine', 1920, 'F', 363), +(23644, 'Callie', 1920, 'F', 362), +(23645, 'Hester', 1920, 'F', 362), +(23646, 'Marcia', 1920, 'F', 361), +(23647, 'Ophelia', 1920, 'F', 353), +(23648, 'Linda', 1920, 'F', 350), +(23649, 'Beth', 1920, 'F', 349), +(23650, 'Hope', 1920, 'F', 349), +(23651, 'Katharine', 1920, 'F', 349), +(23652, 'Dolly', 1920, 'F', 348), +(23653, 'Paula', 1920, 'F', 343), +(23654, 'Leota', 1920, 'F', 340), +(23655, 'Althea', 1920, 'F', 336), +(23656, 'Lou', 1920, 'F', 336), +(23657, 'Earline', 1920, 'F', 332), +(23658, 'Wilda', 1920, 'F', 331), +(23659, 'Bernadette', 1920, 'F', 330), +(23660, 'Maudie', 1920, 'F', 329), +(23661, 'Gussie', 1920, 'F', 328), +(23662, 'Iola', 1920, 'F', 327), +(23663, 'Dixie', 1920, 'F', 326), +(23664, 'Lessie', 1920, 'F', 325), +(23665, 'Guadalupe', 1920, 'F', 323), +(23666, 'Reva', 1920, 'F', 323), +(23667, 'Yolanda', 1920, 'F', 321), +(23668, 'Mercedes', 1920, 'F', 318), +(23669, 'Kay', 1920, 'F', 313), +(23670, 'Stephanie', 1920, 'F', 313), +(23671, 'Tessie', 1920, 'F', 313), +(23672, 'Antonia', 1920, 'F', 312), +(23673, 'Beryl', 1920, 'F', 312), +(23674, 'Pearlie', 1920, 'F', 311), +(23675, 'Lilly', 1920, 'F', 309), +(23676, 'Eddie', 1920, 'F', 308), +(23677, 'Bertie', 1920, 'F', 306), +(23678, 'Nola', 1920, 'F', 306), +(23679, 'Augusta', 1920, 'F', 304), +(23680, 'Madelyn', 1920, 'F', 302), +(23681, 'Johanna', 1920, 'F', 297), +(23682, 'Charlene', 1920, 'F', 294), +(23683, 'Bobbie', 1920, 'F', 292), +(23684, 'Theda', 1920, 'F', 290), +(23685, 'Polly', 1920, 'F', 289), +(23686, 'Robbie', 1920, 'F', 289), +(23687, 'Cynthia', 1920, 'F', 285), +(23688, 'Suzanne', 1920, 'F', 285), +(23689, 'Georgie', 1920, 'F', 284), +(23690, 'Lupe', 1920, 'F', 284), +(23691, 'Dessie', 1920, 'F', 283), +(23692, 'Delia', 1920, 'F', 282), +(23693, 'Roxie', 1920, 'F', 282), +(23694, 'John', 1920, 'F', 281), +(23695, 'Melva', 1920, 'F', 279), +(23696, 'Lelia', 1920, 'F', 276), +(23697, 'Aurora', 1920, 'F', 274), +(23698, 'Darlene', 1920, 'F', 274), +(23699, 'Harriette', 1920, 'F', 274), +(23700, 'Oma', 1920, 'F', 273), +(23701, 'Allene', 1920, 'F', 271), +(23702, 'Verda', 1920, 'F', 271), +(23703, 'Deloris', 1920, 'F', 269), +(23704, 'Philomena', 1920, 'F', 269), +(23705, 'Glenna', 1920, 'F', 268), +(23706, 'Evangeline', 1920, 'F', 267), +(23707, 'Maurine', 1920, 'F', 266), +(23708, 'Alene', 1920, 'F', 264), +(23709, 'Consuelo', 1920, 'F', 262), +(23710, 'Mona', 1920, 'F', 262), +(23711, 'Enid', 1920, 'F', 261), +(23712, 'Elisabeth', 1920, 'F', 259), +(23713, 'Erna', 1920, 'F', 258), +(23714, 'Kate', 1920, 'F', 255), +(23715, 'Margarita', 1920, 'F', 254), +(23716, 'Mozelle', 1920, 'F', 254), +(23717, 'Alvina', 1920, 'F', 253), +(23718, 'Hallie', 1920, 'F', 252), +(23719, 'Isabella', 1920, 'F', 252), +(23720, 'Garnet', 1920, 'F', 251), +(23721, 'Nona', 1920, 'F', 251), +(23722, 'Isabell', 1920, 'F', 249), +(23723, 'James', 1920, 'F', 249), +(23724, 'Dortha', 1920, 'F', 248), +(23725, 'Jannie', 1920, 'F', 248), +(23726, 'Molly', 1920, 'F', 246), +(23727, 'Corrine', 1920, 'F', 244), +(23728, 'Zella', 1920, 'F', 244), +(23729, 'Vesta', 1920, 'F', 243), +(23730, 'Jaunita', 1920, 'F', 242), +(23731, 'Lorine', 1920, 'F', 242), +(23732, 'Rubye', 1920, 'F', 241), +(23733, 'Marjory', 1920, 'F', 240), +(23734, 'Clare', 1920, 'F', 237), +(23735, 'Belle', 1920, 'F', 235), +(23736, 'Lorna', 1920, 'F', 234), +(23737, 'Marietta', 1920, 'F', 234), +(23738, 'Pansy', 1920, 'F', 234), +(23739, 'Tommie', 1920, 'F', 234), +(23740, 'Valeria', 1920, 'F', 234), +(23741, 'Ruthie', 1920, 'F', 233), +(23742, 'Diana', 1920, 'F', 232), +(23743, 'Jo', 1920, 'F', 231), +(23744, 'Birdie', 1920, 'F', 228), +(23745, 'Queen', 1920, 'F', 228), +(23746, 'Ester', 1920, 'F', 226), +(23747, 'Leta', 1920, 'F', 225), +(23748, 'Madeleine', 1920, 'F', 225), +(23749, 'Syble', 1920, 'F', 225), +(23750, 'Nelda', 1920, 'F', 224), +(23751, 'Hortense', 1920, 'F', 223), +(23752, 'Dorris', 1920, 'F', 222), +(23753, 'Fanny', 1920, 'F', 222), +(23754, 'Winona', 1920, 'F', 222), +(23755, 'Elouise', 1920, 'F', 220), +(23756, 'Phoebe', 1920, 'F', 220), +(23757, 'Vida', 1920, 'F', 220), +(23758, 'Oleta', 1920, 'F', 216), +(23759, 'Roslyn', 1920, 'F', 216), +(23760, 'Louella', 1920, 'F', 215), +(23761, 'Monica', 1920, 'F', 215), +(23762, 'Leora', 1920, 'F', 214), +(23763, 'Wilhelmina', 1920, 'F', 214), +(23764, 'Cecil', 1920, 'F', 213), +(23765, 'Jayne', 1920, 'F', 213), +(23766, 'Elvera', 1920, 'F', 212), +(23767, 'Mayme', 1920, 'F', 211), +(23768, 'Rosalind', 1920, 'F', 210), +(23769, 'Elise', 1920, 'F', 208), +(23770, 'Joanne', 1920, 'F', 208), +(23771, 'Zelda', 1920, 'F', 208), +(23772, 'Agatha', 1920, 'F', 206), +(23773, 'Alfreda', 1920, 'F', 205), +(23774, 'Catharine', 1920, 'F', 205), +(23775, 'Robert', 1920, 'F', 205), +(23776, 'William', 1920, 'F', 205), +(23777, 'Gene', 1920, 'F', 204), +(23778, 'Marianne', 1920, 'F', 204), +(23779, 'Minerva', 1920, 'F', 204), +(23780, 'Ferne', 1920, 'F', 202), +(23781, 'Julie', 1920, 'F', 202), +(23782, 'Katheryn', 1920, 'F', 202), +(23783, 'Judy', 1920, 'F', 201), +(23784, 'Lucinda', 1920, 'F', 201), +(23785, 'Manuela', 1920, 'F', 200), +(23786, 'Freida', 1920, 'F', 199), +(23787, 'Leone', 1920, 'F', 199), +(23788, 'Elda', 1920, 'F', 198), +(23789, 'Rae', 1920, 'F', 198), +(23790, 'Charlie', 1920, 'F', 197), +(23791, 'Adell', 1920, 'F', 195), +(23792, 'Patsy', 1920, 'F', 195), +(23793, 'Dovie', 1920, 'F', 194), +(23794, 'Rowena', 1920, 'F', 194), +(23795, 'Vada', 1920, 'F', 194), +(23796, 'Emilie', 1920, 'F', 193), +(23797, 'Veda', 1920, 'F', 193), +(23798, 'Ilene', 1920, 'F', 192), +(23799, 'Louisa', 1920, 'F', 192), +(23800, 'Una', 1920, 'F', 191), +(23801, 'Velda', 1920, 'F', 190), +(23802, 'Millicent', 1920, 'F', 189), +(23803, 'Albina', 1920, 'F', 188), +(23804, 'Alpha', 1920, 'F', 188), +(23805, 'Bella', 1920, 'F', 188), +(23806, 'Jenny', 1920, 'F', 188), +(23807, 'Lura', 1920, 'F', 188), +(23808, 'Sibyl', 1920, 'F', 188), +(23809, 'Retha', 1920, 'F', 187), +(23810, 'Edwina', 1920, 'F', 186), +(23811, 'Trinidad', 1920, 'F', 186), +(23812, 'Juliette', 1920, 'F', 185), +(23813, 'Orpha', 1920, 'F', 185), +(23814, 'Ava', 1920, 'F', 184), +(23815, 'Elsa', 1920, 'F', 184), +(23816, 'Margret', 1920, 'F', 184), +(23817, 'Rhea', 1920, 'F', 184), +(23818, 'Betsy', 1920, 'F', 183), +(23819, 'Camille', 1920, 'F', 182), +(23820, 'Magdalene', 1920, 'F', 182), +(23821, 'Rosalee', 1920, 'F', 182), +(23822, 'Angie', 1920, 'F', 181), +(23823, 'Cassie', 1920, 'F', 181), +(23824, 'Gail', 1920, 'F', 181), +(23825, 'Gertie', 1920, 'F', 181), +(23826, 'Lauretta', 1920, 'F', 180), +(23827, 'Zola', 1920, 'F', 180), +(23828, 'Claudine', 1920, 'F', 178), +(23829, 'Evalyn', 1920, 'F', 178), +(23830, 'Elena', 1920, 'F', 177), +(23831, 'Lulu', 1920, 'F', 177), +(23832, 'Marcelle', 1920, 'F', 177), +(23833, 'Filomena', 1920, 'F', 176), +(23834, 'Floy', 1920, 'F', 176), +(23835, 'Hellen', 1920, 'F', 175), +(23836, 'Theodora', 1920, 'F', 175), +(23837, 'Aurelia', 1920, 'F', 174), +(23838, 'Rosemarie', 1920, 'F', 174), +(23839, 'Verla', 1920, 'F', 174), +(23840, 'Alva', 1920, 'F', 173), +(23841, 'Linnie', 1920, 'F', 173), +(23842, 'Justine', 1920, 'F', 172), +(23843, 'Reta', 1920, 'F', 172), +(23844, 'Earnestine', 1920, 'F', 170), +(23845, 'Valerie', 1920, 'F', 170), +(23846, 'Vernice', 1920, 'F', 170), +(23847, 'Ima', 1920, 'F', 169), +(23848, 'Maybelle', 1920, 'F', 169), +(23849, 'Dorotha', 1920, 'F', 168), +(23850, 'Ethelyn', 1920, 'F', 168), +(23851, 'Lona', 1920, 'F', 168), +(23852, 'Jerry', 1920, 'F', 167), +(23853, 'Joanna', 1920, 'F', 167), +(23854, 'Bennie', 1920, 'F', 166), +(23855, 'George', 1920, 'F', 166), +(23856, 'Mazie', 1920, 'F', 166), +(23857, 'Myrtis', 1920, 'F', 166), +(23858, 'Belva', 1920, 'F', 165), +(23859, 'Delphine', 1920, 'F', 165), +(23860, 'Maryann', 1920, 'F', 165), +(23861, 'Blanch', 1920, 'F', 164), +(23862, 'Faith', 1920, 'F', 164), +(23863, 'Charles', 1920, 'F', 163), +(23864, 'Adela', 1920, 'F', 161), +(23865, 'Ona', 1920, 'F', 161), +(23866, 'Maud', 1920, 'F', 160), +(23867, 'Ursula', 1920, 'F', 160), +(23868, 'Winnifred', 1920, 'F', 160), +(23869, 'Ardis', 1920, 'F', 158), +(23870, 'Celestine', 1920, 'F', 158), +(23871, 'Florene', 1920, 'F', 158), +(23872, 'Idella', 1920, 'F', 158), +(23873, 'Lavina', 1920, 'F', 157), +(23874, 'Odell', 1920, 'F', 156), +(23875, 'Estell', 1920, 'F', 155), +(23876, 'Freddie', 1920, 'F', 155), +(23877, 'Bettye', 1920, 'F', 154), +(23878, 'Elna', 1920, 'F', 154), +(23879, 'Mittie', 1920, 'F', 153), +(23880, 'Lettie', 1920, 'F', 152), +(23881, 'Petra', 1920, 'F', 152), +(23882, 'Celeste', 1920, 'F', 150), +(23883, 'Francisca', 1920, 'F', 150), +(23884, 'Georgiana', 1920, 'F', 150), +(23885, 'Margarette', 1920, 'F', 150), +(23886, 'Alicia', 1920, 'F', 149), +(23887, 'Juana', 1920, 'F', 149), +(23888, 'Marvel', 1920, 'F', 149), +(23889, 'Artie', 1920, 'F', 148), +(23890, 'Eleanora', 1920, 'F', 148), +(23891, 'Johnie', 1920, 'F', 148), +(23892, 'Larue', 1920, 'F', 148), +(23893, 'Lucia', 1920, 'F', 147), +(23894, 'Mathilda', 1920, 'F', 146), +(23895, 'Delma', 1920, 'F', 145), +(23896, 'Germaine', 1920, 'F', 145), +(23897, 'Jackie', 1920, 'F', 144), +(23898, 'Joann', 1920, 'F', 144), +(23899, 'Adella', 1920, 'F', 143), +(23900, 'Mina', 1920, 'F', 143), +(23901, 'Janette', 1920, 'F', 142), +(23902, 'Ivy', 1920, 'F', 141), +(23903, 'Aletha', 1920, 'F', 139), +(23904, 'Hettie', 1920, 'F', 138), +(23905, 'Ray', 1920, 'F', 138), +(23906, 'Treva', 1920, 'F', 138), +(23907, 'Bonita', 1920, 'F', 137), +(23908, 'Earlene', 1920, 'F', 136), +(23909, 'Golda', 1920, 'F', 136), +(23910, 'Melvina', 1920, 'F', 136), +(23911, 'Roma', 1920, 'F', 136), +(23912, 'Lavonne', 1920, 'F', 135), +(23913, 'Pearline', 1920, 'F', 135), +(23914, 'Twila', 1920, 'F', 135), +(23915, 'Zora', 1920, 'F', 135), +(23916, 'Arleen', 1920, 'F', 134), +(23917, 'Joe', 1920, 'F', 134), +(23918, 'Myrna', 1920, 'F', 134), +(23919, 'Yetta', 1920, 'F', 134), +(23920, 'Marianna', 1920, 'F', 133), +(23921, 'Camilla', 1920, 'F', 132), +(23922, 'Carolina', 1920, 'F', 132), +(23923, 'Rosalyn', 1920, 'F', 132), +(23924, 'Emogene', 1920, 'F', 131), +(23925, 'Gretchen', 1920, 'F', 131), +(23926, 'Lavern', 1920, 'F', 131), +(23927, 'Annabel', 1920, 'F', 130), +(23928, 'Gilda', 1920, 'F', 130), +(23929, 'Josefina', 1920, 'F', 130), +(23930, 'Lue', 1920, 'F', 130), +(23931, 'Rubie', 1920, 'F', 130), +(23932, 'Alda', 1920, 'F', 129), +(23933, 'Doretha', 1920, 'F', 129), +(23934, 'Era', 1920, 'F', 129), +(23935, 'Georgianna', 1920, 'F', 128), +(23936, 'Hedwig', 1920, 'F', 128), +(23937, 'Myrtice', 1920, 'F', 128), +(23938, 'Nelle', 1920, 'F', 128), +(23939, 'Kathrine', 1920, 'F', 127), +(23940, 'Laverna', 1920, 'F', 127), +(23941, 'Magnolia', 1920, 'F', 127), +(23942, 'Tina', 1920, 'F', 127), +(23943, 'Dorcas', 1920, 'F', 126), +(23944, 'Jeane', 1920, 'F', 126), +(23945, 'Albertha', 1920, 'F', 124), +(23946, 'Eldora', 1920, 'F', 124), +(23947, 'Nan', 1920, 'F', 124), +(23948, 'Ouida', 1920, 'F', 124), +(23949, 'Almeda', 1920, 'F', 123), +(23950, 'Berneice', 1920, 'F', 123), +(23951, 'Crystal', 1920, 'F', 123), +(23952, 'Easter', 1920, 'F', 123), +(23953, 'Therese', 1920, 'F', 123), +(23954, 'Anastasia', 1920, 'F', 122), +(23955, 'Nita', 1920, 'F', 122), +(23956, 'Norine', 1920, 'F', 122), +(23957, 'Yvette', 1920, 'F', 122), +(23958, 'Evelyne', 1920, 'F', 121), +(23959, 'Janis', 1920, 'F', 121), +(23960, 'Cordelia', 1920, 'F', 120), +(23961, 'Clementine', 1920, 'F', 119), +(23962, 'Rachael', 1920, 'F', 119), +(23963, 'Cathryn', 1920, 'F', 118), +(23964, 'Evie', 1920, 'F', 118), +(23965, 'Leatha', 1920, 'F', 118), +(23966, 'Leonora', 1920, 'F', 118), +(23967, 'Novella', 1920, 'F', 118), +(23968, 'Velva', 1920, 'F', 118), +(23969, 'Vernie', 1920, 'F', 118), +(23970, 'Antonette', 1920, 'F', 117), +(23971, 'Ardith', 1920, 'F', 117), +(23972, 'Esta', 1920, 'F', 117), +(23973, 'Malinda', 1920, 'F', 117), +(23974, 'Violette', 1920, 'F', 117), +(23975, 'Carmel', 1920, 'F', 115), +(23976, 'Esperanza', 1920, 'F', 115), +(23977, 'Georgette', 1920, 'F', 115), +(23978, 'Rosina', 1920, 'F', 115), +(23979, 'Dona', 1920, 'F', 114), +(23980, 'Margarett', 1920, 'F', 114), +(23981, 'Octavia', 1920, 'F', 114), +(23982, 'Sammie', 1920, 'F', 114), +(23983, 'Vernell', 1920, 'F', 114), +(23984, 'Lavon', 1920, 'F', 113), +(23985, 'Maryjane', 1920, 'F', 113), +(23986, 'Elenora', 1920, 'F', 112), +(23987, 'Joseph', 1920, 'F', 112), +(23988, 'Sandra', 1920, 'F', 112), +(23989, 'Corene', 1920, 'F', 111), +(23990, 'Glenda', 1920, 'F', 111), +(23991, 'Lina', 1920, 'F', 111), +(23992, 'Madaline', 1920, 'F', 111), +(23993, 'Nova', 1920, 'F', 111), +(23994, 'Tressie', 1920, 'F', 111), +(23995, 'Verona', 1920, 'F', 111), +(23996, 'Vina', 1920, 'F', 111), +(23997, 'Claudie', 1920, 'F', 109), +(23998, 'Emilia', 1920, 'F', 109), +(23999, 'Bulah', 1920, 'F', 108), +(24000, 'Vergie', 1920, 'F', 108), +(24001, 'Andrea', 1920, 'F', 107), +(24002, 'Audra', 1920, 'F', 107), +(24003, 'Maureen', 1920, 'F', 107), +(24004, 'Berta', 1920, 'F', 106), +(24005, 'Alvera', 1920, 'F', 105), +(24006, 'Charline', 1920, 'F', 105), +(24007, 'Lavada', 1920, 'F', 105), +(24008, 'Martina', 1920, 'F', 105), +(24009, 'Zula', 1920, 'F', 105), +(24010, 'Bethel', 1920, 'F', 104), +(24011, 'Daphne', 1920, 'F', 104), +(24012, 'Idell', 1920, 'F', 104), +(24013, 'Renee', 1920, 'F', 104), +(24014, 'Eulalia', 1920, 'F', 103), +(24015, 'Lovie', 1920, 'F', 103), +(24016, 'Carole', 1920, 'F', 102), +(24017, 'Elisa', 1920, 'F', 102), +(24018, 'Gayle', 1920, 'F', 102), +(24019, 'Eve', 1920, 'F', 101), +(24020, 'Felicia', 1920, 'F', 101), +(24021, 'Hilma', 1920, 'F', 101), +(24022, 'Lucretia', 1920, 'F', 101), +(24023, 'Vincenza', 1920, 'F', 101), +(24024, 'Annamae', 1920, 'F', 100), +(24025, 'Myrtie', 1920, 'F', 100), +(24026, 'John', 1920, 'M', 56910), +(24027, 'William', 1920, 'M', 50152), +(24028, 'Robert', 1920, 'M', 48680), +(24029, 'James', 1920, 'M', 47917), +(24030, 'Charles', 1920, 'M', 28314), +(24031, 'George', 1920, 'M', 26893), +(24032, 'Joseph', 1920, 'M', 25592), +(24033, 'Edward', 1920, 'M', 20097), +(24034, 'Frank', 1920, 'M', 16433), +(24035, 'Richard', 1920, 'M', 15011), +(24036, 'Thomas', 1920, 'M', 14937), +(24037, 'Harold', 1920, 'M', 13679), +(24038, 'Walter', 1920, 'M', 13297), +(24039, 'Paul', 1920, 'M', 12570), +(24040, 'Raymond', 1920, 'M', 12196), +(24041, 'Donald', 1920, 'M', 11940), +(24042, 'Henry', 1920, 'M', 11304), +(24043, 'Arthur', 1920, 'M', 10238), +(24044, 'Albert', 1920, 'M', 10001), +(24045, 'Jack', 1920, 'M', 9600), +(24046, 'Harry', 1920, 'M', 9409), +(24047, 'Ralph', 1920, 'M', 8558), +(24048, 'Kenneth', 1920, 'M', 7841), +(24049, 'Howard', 1920, 'M', 7468), +(24050, 'David', 1920, 'M', 7445), +(24051, 'Clarence', 1920, 'M', 7223), +(24052, 'Carl', 1920, 'M', 7009), +(24053, 'Louis', 1920, 'M', 6967), +(24054, 'Willie', 1920, 'M', 6889), +(24055, 'Eugene', 1920, 'M', 6866), +(24056, 'Earl', 1920, 'M', 6528), +(24057, 'Roy', 1920, 'M', 6356), +(24058, 'Fred', 1920, 'M', 6300), +(24059, 'Francis', 1920, 'M', 6242), +(24060, 'Joe', 1920, 'M', 6069), +(24061, 'Lawrence', 1920, 'M', 5728), +(24062, 'Ernest', 1920, 'M', 5567), +(24063, 'Leonard', 1920, 'M', 5511), +(24064, 'Warren', 1920, 'M', 5492), +(24065, 'Stanley', 1920, 'M', 5315), +(24066, 'Herbert', 1920, 'M', 5251), +(24067, 'Alfred', 1920, 'M', 5008), +(24068, 'Anthony', 1920, 'M', 4947), +(24069, 'Samuel', 1920, 'M', 4654), +(24070, 'Elmer', 1920, 'M', 4206), +(24071, 'Bernard', 1920, 'M', 4164), +(24072, 'Norman', 1920, 'M', 4110), +(24073, 'Leo', 1920, 'M', 4054), +(24074, 'Andrew', 1920, 'M', 4026), +(24075, 'Michael', 1920, 'M', 4003), +(24076, 'Russell', 1920, 'M', 3902), +(24077, 'Daniel', 1920, 'M', 3896), +(24078, 'Edwin', 1920, 'M', 3732), +(24079, 'Melvin', 1920, 'M', 3718), +(24080, 'Chester', 1920, 'M', 3700), +(24081, 'Leroy', 1920, 'M', 3550), +(24082, 'Peter', 1920, 'M', 3496), +(24083, 'Lloyd', 1920, 'M', 3455), +(24084, 'Clifford', 1920, 'M', 3292), +(24085, 'Frederick', 1920, 'M', 3276), +(24086, 'Floyd', 1920, 'M', 3261), +(24087, 'Marvin', 1920, 'M', 3244), +(24088, 'Theodore', 1920, 'M', 3220), +(24089, 'Gerald', 1920, 'M', 3158), +(24090, 'Vernon', 1920, 'M', 3145), +(24091, 'Herman', 1920, 'M', 3108), +(24092, 'Ray', 1920, 'M', 3086), +(24093, 'Lester', 1920, 'M', 3070), +(24094, 'Clyde', 1920, 'M', 3069), +(24095, 'Charlie', 1920, 'M', 2786), +(24096, 'Philip', 1920, 'M', 2700), +(24097, 'Lewis', 1920, 'M', 2687), +(24098, 'Vincent', 1920, 'M', 2662), +(24099, 'Milton', 1920, 'M', 2592), +(24100, 'Leon', 1920, 'M', 2555), +(24101, 'Alvin', 1920, 'M', 2523), +(24102, 'Cecil', 1920, 'M', 2459), +(24103, 'Martin', 1920, 'M', 2442), +(24104, 'Jesse', 1920, 'M', 2419), +(24105, 'Glenn', 1920, 'M', 2375), +(24106, 'Victor', 1920, 'M', 2347), +(24107, 'Lee', 1920, 'M', 2321), +(24108, 'Benjamin', 1920, 'M', 2310), +(24109, 'Sam', 1920, 'M', 2284), +(24110, 'Gordon', 1920, 'M', 2278), +(24111, 'Wayne', 1920, 'M', 2177), +(24112, 'Harvey', 1920, 'M', 2166), +(24113, 'Willard', 1920, 'M', 2089), +(24114, 'Edgar', 1920, 'M', 2029), +(24115, 'Oscar', 1920, 'M', 2006), +(24116, 'Arnold', 1920, 'M', 1910), +(24117, 'Claude', 1920, 'M', 1893), +(24118, 'Wallace', 1920, 'M', 1876), +(24119, 'Allen', 1920, 'M', 1866), +(24120, 'Everett', 1920, 'M', 1827), +(24121, 'Stephen', 1920, 'M', 1772), +(24122, 'Gilbert', 1920, 'M', 1763), +(24123, 'Wilbur', 1920, 'M', 1740), +(24124, 'Johnnie', 1920, 'M', 1727), +(24125, 'Homer', 1920, 'M', 1722), +(24126, 'Virgil', 1920, 'M', 1710), +(24127, 'Maurice', 1920, 'M', 1706), +(24128, 'Roger', 1920, 'M', 1691), +(24129, 'Eddie', 1920, 'M', 1682), +(24130, 'Dale', 1920, 'M', 1680), +(24131, 'Douglas', 1920, 'M', 1657), +(24132, 'Sidney', 1920, 'M', 1611), +(24133, 'Morris', 1920, 'M', 1608), +(24134, 'Marion', 1920, 'M', 1603), +(24135, 'Leslie', 1920, 'M', 1593), +(24136, 'Jessie', 1920, 'M', 1590), +(24137, 'Max', 1920, 'M', 1561), +(24138, 'Hubert', 1920, 'M', 1507), +(24139, 'Roland', 1920, 'M', 1502), +(24140, 'Hugh', 1920, 'M', 1489), +(24141, 'Irving', 1920, 'M', 1485), +(24142, 'Alexander', 1920, 'M', 1475), +(24143, 'Manuel', 1920, 'M', 1460), +(24144, 'Franklin', 1920, 'M', 1451), +(24145, 'Curtis', 1920, 'M', 1443), +(24146, 'Bill', 1920, 'M', 1421), +(24147, 'Glen', 1920, 'M', 1414), +(24148, 'Luther', 1920, 'M', 1381), +(24149, 'Nicholas', 1920, 'M', 1353), +(24150, 'Julius', 1920, 'M', 1318), +(24151, 'Jerome', 1920, 'M', 1285), +(24152, 'Steve', 1920, 'M', 1282), +(24153, 'Horace', 1920, 'M', 1276), +(24154, 'Wesley', 1920, 'M', 1244), +(24155, 'Jose', 1920, 'M', 1242), +(24156, 'Tom', 1920, 'M', 1207), +(24157, 'Billy', 1920, 'M', 1206), +(24158, 'Willis', 1920, 'M', 1198), +(24159, 'Orville', 1920, 'M', 1195), +(24160, 'Oliver', 1920, 'M', 1165), +(24161, 'Tony', 1920, 'M', 1146), +(24162, 'Ben', 1920, 'M', 1138), +(24163, 'Edmund', 1920, 'M', 1103), +(24164, 'Calvin', 1920, 'M', 1099), +(24165, 'Earnest', 1920, 'M', 1092), +(24166, 'Mike', 1920, 'M', 1074), +(24167, 'Alex', 1920, 'M', 1070), +(24168, 'Jacob', 1920, 'M', 1049), +(24169, 'Jerry', 1920, 'M', 1043), +(24170, 'Archie', 1920, 'M', 1037), +(24171, 'Otis', 1920, 'M', 1031), +(24172, 'Jimmie', 1920, 'M', 1022), +(24173, 'Don', 1920, 'M', 1019), +(24174, 'Bruce', 1920, 'M', 996), +(24175, 'Delbert', 1920, 'M', 982), +(24176, 'Lyle', 1920, 'M', 967), +(24177, 'Matthew', 1920, 'M', 967), +(24178, 'Clayton', 1920, 'M', 961), +(24179, 'Guy', 1920, 'M', 957), +(24180, 'Angelo', 1920, 'M', 922), +(24181, 'Clifton', 1920, 'M', 910), +(24182, 'Salvatore', 1920, 'M', 910), +(24183, 'Clinton', 1920, 'M', 909), +(24184, 'Patrick', 1920, 'M', 877), +(24185, 'Wilbert', 1920, 'M', 867), +(24186, 'Bennie', 1920, 'M', 856), +(24187, 'Marshall', 1920, 'M', 850), +(24188, 'Ervin', 1920, 'M', 843), +(24189, 'Phillip', 1920, 'M', 840), +(24190, 'Jim', 1920, 'M', 838), +(24191, 'Nathaniel', 1920, 'M', 837), +(24192, 'Emil', 1920, 'M', 835), +(24193, 'Ronald', 1920, 'M', 832), +(24194, 'Rudolph', 1920, 'M', 830), +(24195, 'Ira', 1920, 'M', 829), +(24196, 'Merle', 1920, 'M', 818), +(24197, 'Nathan', 1920, 'M', 815), +(24198, 'Gene', 1920, 'M', 809), +(24199, 'Sylvester', 1920, 'M', 807), +(24200, 'Keith', 1920, 'M', 803), +(24201, 'Wilfred', 1920, 'M', 802), +(24202, 'Leland', 1920, 'M', 799), +(24203, 'Forrest', 1920, 'M', 792), +(24204, 'Ivan', 1920, 'M', 791), +(24205, 'Dean', 1920, 'M', 789), +(24206, 'Elbert', 1920, 'M', 786), +(24207, 'Irvin', 1920, 'M', 774), +(24208, 'Woodrow', 1920, 'M', 774), +(24209, 'Johnny', 1920, 'M', 768), +(24210, 'Dan', 1920, 'M', 764), +(24211, 'Lonnie', 1920, 'M', 740), +(24212, 'Nelson', 1920, 'M', 740), +(24213, 'Rufus', 1920, 'M', 729), +(24214, 'Bob', 1920, 'M', 710), +(24215, 'Isaac', 1920, 'M', 708), +(24216, 'Antonio', 1920, 'M', 706), +(24217, 'Johnie', 1920, 'M', 706), +(24218, 'Junior', 1920, 'M', 699), +(24219, 'Nick', 1920, 'M', 699), +(24220, 'Julian', 1920, 'M', 693), +(24221, 'Grover', 1920, 'M', 684), +(24222, 'Alton', 1920, 'M', 683), +(24223, 'Lowell', 1920, 'M', 670), +(24224, 'Aaron', 1920, 'M', 668), +(24225, 'Felix', 1920, 'M', 668), +(24226, 'Jay', 1920, 'M', 666), +(24227, 'Seymour', 1920, 'M', 660), +(24228, 'Abraham', 1920, 'M', 656), +(24229, 'Ellis', 1920, 'M', 646), +(24230, 'Pete', 1920, 'M', 637), +(24231, 'Otto', 1920, 'M', 634), +(24232, 'Dennis', 1920, 'M', 624), +(24233, 'Dewey', 1920, 'M', 619), +(24234, 'Emmett', 1920, 'M', 614), +(24235, 'Rex', 1920, 'M', 614), +(24236, 'August', 1920, 'M', 607), +(24237, 'Carroll', 1920, 'M', 607), +(24238, 'Juan', 1920, 'M', 606), +(24239, 'Roscoe', 1920, 'M', 605), +(24240, 'Grady', 1920, 'M', 602), +(24241, 'Percy', 1920, 'M', 601), +(24242, 'Owen', 1920, 'M', 598), +(24243, 'Bert', 1920, 'M', 593), +(24244, 'Mark', 1920, 'M', 590), +(24245, 'Elwood', 1920, 'M', 586), +(24246, 'Wilson', 1920, 'M', 583), +(24247, 'Loyd', 1920, 'M', 582), +(24248, 'Adam', 1920, 'M', 579), +(24249, 'Byron', 1920, 'M', 571), +(24250, 'Dominick', 1920, 'M', 564), +(24251, 'Fredrick', 1920, 'M', 559), +(24252, 'Malcolm', 1920, 'M', 556), +(24253, 'Laurence', 1920, 'M', 551), +(24254, 'Myron', 1920, 'M', 549), +(24255, 'Ross', 1920, 'M', 548), +(24256, 'Ted', 1920, 'M', 545), +(24257, 'Wendell', 1920, 'M', 544), +(24258, 'Perry', 1920, 'M', 542), +(24259, 'Dominic', 1920, 'M', 536), +(24260, 'Allan', 1920, 'M', 534), +(24261, 'Mack', 1920, 'M', 533), +(24262, 'Loren', 1920, 'M', 530), +(24263, 'Jesus', 1920, 'M', 528), +(24264, 'Murray', 1920, 'M', 524), +(24265, 'Billie', 1920, 'M', 523), +(24266, 'Adolph', 1920, 'M', 522), +(24267, 'Troy', 1920, 'M', 519), +(24268, 'Eldon', 1920, 'M', 517), +(24269, 'Norbert', 1920, 'M', 515), +(24270, 'Karl', 1920, 'M', 502), +(24271, 'Amos', 1920, 'M', 493), +(24272, 'Neil', 1920, 'M', 488), +(24273, 'Sherman', 1920, 'M', 488), +(24274, 'Charley', 1920, 'M', 485), +(24275, 'Harley', 1920, 'M', 485), +(24276, 'Preston', 1920, 'M', 482), +(24277, 'Aubrey', 1920, 'M', 478), +(24278, 'Austin', 1920, 'M', 467), +(24279, 'Reuben', 1920, 'M', 465), +(24280, 'Erwin', 1920, 'M', 460), +(24281, 'Boyd', 1920, 'M', 457), +(24282, 'Duane', 1920, 'M', 455), +(24283, 'Freddie', 1920, 'M', 452), +(24284, 'Wilmer', 1920, 'M', 443), +(24285, 'Carlton', 1920, 'M', 441), +(24286, 'Larry', 1920, 'M', 440), +(24287, 'Morton', 1920, 'M', 435), +(24288, 'Edmond', 1920, 'M', 434), +(24289, 'Alan', 1920, 'M', 433), +(24290, 'Burton', 1920, 'M', 433), +(24291, 'Cornelius', 1920, 'M', 433), +(24292, 'Carlos', 1920, 'M', 421), +(24293, 'Louie', 1920, 'M', 421), +(24294, 'Millard', 1920, 'M', 418), +(24295, 'Steven', 1920, 'M', 418), +(24296, 'Mitchell', 1920, 'M', 415), +(24297, 'Tommie', 1920, 'M', 414), +(24298, 'Dwight', 1920, 'M', 412), +(24299, 'Lynn', 1920, 'M', 412), +(24300, 'Gerard', 1920, 'M', 409), +(24301, 'Mario', 1920, 'M', 408), +(24302, 'Harrison', 1920, 'M', 407), +(24303, 'Garland', 1920, 'M', 403), +(24304, 'Elmo', 1920, 'M', 397), +(24305, 'Doyle', 1920, 'M', 395), +(24306, 'Elton', 1920, 'M', 394), +(24307, 'Grant', 1920, 'M', 391), +(24308, 'Russel', 1920, 'M', 389), +(24309, 'Jasper', 1920, 'M', 388), +(24310, 'Moses', 1920, 'M', 383), +(24311, 'Ramon', 1920, 'M', 383), +(24312, 'Kermit', 1920, 'M', 382), +(24313, 'Emanuel', 1920, 'M', 381), +(24314, 'Laverne', 1920, 'M', 375), +(24315, 'Maynard', 1920, 'M', 375), +(24316, 'Dave', 1920, 'M', 373), +(24317, 'Rocco', 1920, 'M', 372), +(24318, 'Neal', 1920, 'M', 371), +(24319, 'Wade', 1920, 'M', 369), +(24320, 'Will', 1920, 'M', 369), +(24321, 'Jake', 1920, 'M', 362), +(24322, 'Thurman', 1920, 'M', 361), +(24323, 'Francisco', 1920, 'M', 360), +(24324, 'Darrell', 1920, 'M', 359), +(24325, 'Monroe', 1920, 'M', 359), +(24326, 'Roosevelt', 1920, 'M', 358), +(24327, 'Cleveland', 1920, 'M', 356), +(24328, 'Solomon', 1920, 'M', 356), +(24329, 'Rodney', 1920, 'M', 353), +(24330, 'Cleo', 1920, 'M', 350), +(24331, 'Dallas', 1920, 'M', 350), +(24332, 'Earle', 1920, 'M', 349), +(24333, 'Joel', 1920, 'M', 346), +(24334, 'Tommy', 1920, 'M', 345), +(24335, 'Simon', 1920, 'M', 342), +(24336, 'Clair', 1920, 'M', 339), +(24337, 'Quentin', 1920, 'M', 338), +(24338, 'Odell', 1920, 'M', 336), +(24339, 'Ruben', 1920, 'M', 336), +(24340, 'Delmar', 1920, 'M', 335), +(24341, 'Irwin', 1920, 'M', 334), +(24342, 'Jess', 1920, 'M', 333), +(24343, 'Elvin', 1920, 'M', 331), +(24344, 'Harlan', 1920, 'M', 331), +(24345, 'Alphonse', 1920, 'M', 329), +(24346, 'Dick', 1920, 'M', 329), +(24347, 'Armand', 1920, 'M', 326), +(24348, 'Stuart', 1920, 'M', 326), +(24349, 'Weldon', 1920, 'M', 325), +(24350, 'Jimmy', 1920, 'M', 324), +(24351, 'Marcus', 1920, 'M', 321), +(24352, 'Andy', 1920, 'M', 315), +(24353, 'Merlin', 1920, 'M', 314), +(24354, 'Gus', 1920, 'M', 312), +(24355, 'Claud', 1920, 'M', 309), +(24356, 'Ed', 1920, 'M', 309), +(24357, 'Alonzo', 1920, 'M', 308), +(24358, 'Clark', 1920, 'M', 308), +(24359, 'Clement', 1920, 'M', 308), +(24360, 'Emory', 1920, 'M', 308), +(24361, 'Conrad', 1920, 'M', 300), +(24362, 'Thaddeus', 1920, 'M', 298), +(24363, 'Christopher', 1920, 'M', 294), +(24364, 'Orval', 1920, 'M', 294), +(24365, 'Randolph', 1920, 'M', 293), +(24366, 'Bruno', 1920, 'M', 292), +(24367, 'Carmen', 1920, 'M', 292), +(24368, 'Forest', 1920, 'M', 292), +(24369, 'Ollie', 1920, 'M', 292), +(24370, 'Merrill', 1920, 'M', 289), +(24371, 'Patsy', 1920, 'M', 287), +(24372, 'Ward', 1920, 'M', 286), +(24373, 'Adrian', 1920, 'M', 284), +(24374, 'Alfonso', 1920, 'M', 284), +(24375, 'Ned', 1920, 'M', 284), +(24376, 'Emery', 1920, 'M', 283), +(24377, 'Pedro', 1920, 'M', 279), +(24378, 'Alva', 1920, 'M', 278), +(24379, 'Buford', 1920, 'M', 278), +(24380, 'Cyril', 1920, 'M', 277), +(24381, 'Elijah', 1920, 'M', 277), +(24382, 'Jean', 1920, 'M', 277), +(24383, 'Vito', 1920, 'M', 277), +(24384, 'Reginald', 1920, 'M', 274), +(24385, 'Vern', 1920, 'M', 274), +(24386, 'Hollis', 1920, 'M', 273), +(24387, 'Lionel', 1920, 'M', 273), +(24388, 'Benny', 1920, 'M', 270), +(24389, 'Stewart', 1920, 'M', 270), +(24390, 'Timothy', 1920, 'M', 270), +(24391, 'Hyman', 1920, 'M', 269), +(24392, 'Wilburn', 1920, 'M', 269), +(24393, 'Sammie', 1920, 'M', 268), +(24394, 'Barney', 1920, 'M', 263), +(24395, 'Wiley', 1920, 'M', 263), +(24396, 'Truman', 1920, 'M', 262), +(24397, 'Anton', 1920, 'M', 259), +(24398, 'Emerson', 1920, 'M', 259), +(24399, 'Sterling', 1920, 'M', 259), +(24400, 'Levi', 1920, 'M', 255), +(24401, 'Eli', 1920, 'M', 252), +(24402, 'Mervin', 1920, 'M', 249), +(24403, 'Wilford', 1920, 'M', 249), +(24404, 'Roman', 1920, 'M', 248), +(24405, 'Sol', 1920, 'M', 246), +(24406, 'Ellsworth', 1920, 'M', 245), +(24407, 'Herschel', 1920, 'M', 244), +(24408, 'Basil', 1920, 'M', 242), +(24409, 'Noah', 1920, 'M', 242), +(24410, 'Coy', 1920, 'M', 241), +(24411, 'Travis', 1920, 'M', 240), +(24412, 'Teddy', 1920, 'M', 238), +(24413, 'Lavern', 1920, 'M', 236), +(24414, 'Jackson', 1920, 'M', 233), +(24415, 'Miles', 1920, 'M', 231), +(24416, 'Harding', 1920, 'M', 229), +(24417, 'Milford', 1920, 'M', 229), +(24418, 'Spencer', 1920, 'M', 229), +(24419, 'Norris', 1920, 'M', 228), +(24420, 'Winfred', 1920, 'M', 228), +(24421, 'Harris', 1920, 'M', 226), +(24422, 'Hiram', 1920, 'M', 221), +(24423, 'Silas', 1920, 'M', 218), +(24424, 'Milo', 1920, 'M', 217), +(24425, 'Van', 1920, 'M', 217), +(24426, 'Luis', 1920, 'M', 216), +(24427, 'Sanford', 1920, 'M', 216), +(24428, 'Carmine', 1920, 'M', 214), +(24429, 'Rolland', 1920, 'M', 213), +(24430, 'Winston', 1920, 'M', 211), +(24431, 'Ambrose', 1920, 'M', 209), +(24432, 'Pasquale', 1920, 'M', 209), +(24433, 'Abe', 1920, 'M', 207), +(24434, 'Buster', 1920, 'M', 207), +(24435, 'Jeff', 1920, 'M', 207), +(24436, 'Mathew', 1920, 'M', 207), +(24437, 'Vance', 1920, 'M', 207), +(24438, 'Casimir', 1920, 'M', 206), +(24439, 'Noel', 1920, 'M', 206), +(24440, 'Saul', 1920, 'M', 206), +(24441, 'Pat', 1920, 'M', 204), +(24442, 'Salvador', 1920, 'M', 202), +(24443, 'Foster', 1920, 'M', 201), +(24444, 'Freeman', 1920, 'M', 201), +(24445, 'Gabriel', 1920, 'M', 201), +(24446, 'Lenard', 1920, 'M', 201), +(24447, 'Bertram', 1920, 'M', 200), +(24448, 'Royal', 1920, 'M', 200), +(24449, 'Sheldon', 1920, 'M', 200), +(24450, 'Dudley', 1920, 'M', 199), +(24451, 'Isadore', 1920, 'M', 198), +(24452, 'Noble', 1920, 'M', 196), +(24453, 'Shirley', 1920, 'M', 196), +(24454, 'Aloysius', 1920, 'M', 195), +(24455, 'Booker', 1920, 'M', 195), +(24456, 'Mary', 1920, 'M', 195), +(24457, 'Hershel', 1920, 'M', 194), +(24458, 'Odis', 1920, 'M', 194), +(24459, 'Frederic', 1920, 'M', 193), +(24460, 'Hal', 1920, 'M', 193), +(24461, 'Scott', 1920, 'M', 192), +(24462, 'Denver', 1920, 'M', 190), +(24463, 'Lorenzo', 1920, 'M', 190), +(24464, 'Newton', 1920, 'M', 190), +(24465, 'Omer', 1920, 'M', 190), +(24466, 'Ulysses', 1920, 'M', 190), +(24467, 'Delmer', 1920, 'M', 189), +(24468, 'Olin', 1920, 'M', 188), +(24469, 'Bud', 1920, 'M', 187), +(24470, 'Eric', 1920, 'M', 186), +(24471, 'Ferdinand', 1920, 'M', 185), +(24472, 'Lamar', 1920, 'M', 183), +(24473, 'Lyman', 1920, 'M', 181), +(24474, 'Orlando', 1920, 'M', 181), +(24475, 'Alden', 1920, 'M', 180), +(24476, 'Anderson', 1920, 'M', 180), +(24477, 'Chris', 1920, 'M', 180), +(24478, 'Elliott', 1920, 'M', 180), +(24479, 'Gregory', 1920, 'M', 180), +(24480, 'Raul', 1920, 'M', 179), +(24481, 'Sydney', 1920, 'M', 177), +(24482, 'Gale', 1920, 'M', 176), +(24483, 'Guadalupe', 1920, 'M', 176), +(24484, 'Burl', 1920, 'M', 174), +(24485, 'Darwin', 1920, 'M', 174), +(24486, 'Houston', 1920, 'M', 174), +(24487, 'Micheal', 1920, 'M', 174), +(24488, 'Cletus', 1920, 'M', 173), +(24489, 'Royce', 1920, 'M', 173), +(24490, 'Marlin', 1920, 'M', 172), +(24491, 'Gail', 1920, 'M', 171), +(24492, 'Randall', 1920, 'M', 171), +(24493, 'Bobby', 1920, 'M', 170), +(24494, 'Major', 1920, 'M', 169), +(24495, 'Elias', 1920, 'M', 168), +(24496, 'Hobert', 1920, 'M', 168), +(24497, 'Luke', 1920, 'M', 166), +(24498, 'Riley', 1920, 'M', 166), +(24499, 'Augustus', 1920, 'M', 165), +(24500, 'Everette', 1920, 'M', 165), +(24501, 'Hoyt', 1920, 'M', 164), +(24502, 'Olen', 1920, 'M', 164), +(24503, 'Armando', 1920, 'M', 161), +(24504, 'Hugo', 1920, 'M', 161), +(24505, 'Linwood', 1920, 'M', 161), +(24506, 'Morgan', 1920, 'M', 160), +(24507, 'Evan', 1920, 'M', 159), +(24508, 'Warner', 1920, 'M', 158), +(24509, 'Wilton', 1920, 'M', 158), +(24510, 'Arlie', 1920, 'M', 157), +(24511, 'Nolan', 1920, 'M', 157), +(24512, 'Rupert', 1920, 'M', 156), +(24513, 'Jefferson', 1920, 'M', 154), +(24514, 'Dewitt', 1920, 'M', 152), +(24515, 'Junius', 1920, 'M', 151), +(24516, 'Walker', 1920, 'M', 151), +(24517, 'Wilber', 1920, 'M', 151), +(24518, 'Al', 1920, 'M', 150), +(24519, 'Merton', 1920, 'M', 150), +(24520, 'Waldo', 1920, 'M', 149), +(24521, 'Mckinley', 1920, 'M', 148), +(24522, 'Roberto', 1920, 'M', 148), +(24523, 'Clay', 1920, 'M', 147), +(24524, 'Lemuel', 1920, 'M', 146), +(24525, 'Theron', 1920, 'M', 146), +(24526, 'Shelby', 1920, 'M', 145), +(24527, 'Augustine', 1920, 'M', 144), +(24528, 'Columbus', 1920, 'M', 144), +(24529, 'Gustave', 1920, 'M', 144), +(24530, 'Oren', 1920, 'M', 144), +(24531, 'Palmer', 1920, 'M', 144), +(24532, 'Carlo', 1920, 'M', 143), +(24533, 'Christian', 1920, 'M', 143), +(24534, 'Dalton', 1920, 'M', 143), +(24535, 'Darrel', 1920, 'M', 143), +(24536, 'Emile', 1920, 'M', 142), +(24537, 'Ezra', 1920, 'M', 142), +(24538, 'Mason', 1920, 'M', 142), +(24539, 'Terry', 1920, 'M', 142), +(24540, 'Rene', 1920, 'M', 141), +(24541, 'Granville', 1920, 'M', 140), +(24542, 'Nickolas', 1920, 'M', 140), +(24543, 'Otha', 1920, 'M', 140), +(24544, 'Elroy', 1920, 'M', 139), +(24545, 'Sebastian', 1920, 'M', 139), +(24546, 'Hilton', 1920, 'M', 138), +(24547, 'Lincoln', 1920, 'M', 138), +(24548, 'Lucius', 1920, 'M', 138), +(24549, 'Blaine', 1920, 'M', 135), +(24550, 'Israel', 1920, 'M', 135), +(24551, 'Albin', 1920, 'M', 134), +(24552, 'Carrol', 1920, 'M', 134), +(24553, 'Fay', 1920, 'M', 134), +(24554, 'Harland', 1920, 'M', 134), +(24555, 'Raleigh', 1920, 'M', 134), +(24556, 'Jewel', 1920, 'M', 133), +(24557, 'Pablo', 1920, 'M', 133), +(24558, 'Meyer', 1920, 'M', 132), +(24559, 'Verne', 1920, 'M', 132), +(24560, 'Isidore', 1920, 'M', 130), +(24561, 'Ottis', 1920, 'M', 130), +(24562, 'Phil', 1920, 'M', 130), +(24563, 'Quinton', 1920, 'M', 130), +(24564, 'Elden', 1920, 'M', 129), +(24565, 'Elwin', 1920, 'M', 129), +(24566, 'Jeremiah', 1920, 'M', 129), +(24567, 'Dock', 1920, 'M', 128), +(24568, 'Harmon', 1920, 'M', 128), +(24569, 'Joshua', 1920, 'M', 128), +(24570, 'Benedict', 1920, 'M', 127), +(24571, 'Bobbie', 1920, 'M', 127), +(24572, 'Miguel', 1920, 'M', 127), +(24573, 'Gaylord', 1920, 'M', 126), +(24574, 'Haywood', 1920, 'M', 124), +(24575, 'Rafael', 1920, 'M', 124), +(24576, 'Alberto', 1920, 'M', 123), +(24577, 'Domingo', 1920, 'M', 123), +(24578, 'Emilio', 1920, 'M', 123), +(24579, 'Fletcher', 1920, 'M', 123), +(24580, 'Isiah', 1920, 'M', 123), +(24581, 'Lucian', 1920, 'M', 123), +(24582, 'Reed', 1920, 'M', 123), +(24583, 'Valentine', 1920, 'M', 123), +(24584, 'Antone', 1920, 'M', 122), +(24585, 'Hobart', 1920, 'M', 122), +(24586, 'Isaiah', 1920, 'M', 122), +(24587, 'Lucien', 1920, 'M', 122), +(24588, 'Mose', 1920, 'M', 122), +(24589, 'Vaughn', 1920, 'M', 122), +(24590, 'Walton', 1920, 'M', 122), +(24591, 'Kelly', 1920, 'M', 121), +(24592, 'Ora', 1920, 'M', 121), +(24593, 'Sigmund', 1920, 'M', 121), +(24594, 'Edd', 1920, 'M', 120), +(24595, 'Maxwell', 1920, 'M', 120), +(24596, 'Porter', 1920, 'M', 120), +(24597, 'Winfield', 1920, 'M', 120), +(24598, 'Hector', 1920, 'M', 119), +(24599, 'Dorsey', 1920, 'M', 118), +(24600, 'Eldred', 1920, 'M', 118), +(24601, 'Cyrus', 1920, 'M', 117), +(24602, 'Davis', 1920, 'M', 117), +(24603, 'Domenic', 1920, 'M', 116); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(24604, 'Rubin', 1920, 'M', 116), +(24605, 'Bryce', 1920, 'M', 115), +(24606, 'Joesph', 1920, 'M', 115), +(24607, 'Trinidad', 1920, 'M', 115), +(24608, 'Bernice', 1920, 'M', 114), +(24609, 'Hermon', 1920, 'M', 114), +(24610, 'Judson', 1920, 'M', 114), +(24611, 'Tomas', 1920, 'M', 114), +(24612, 'Arther', 1920, 'M', 113), +(24613, 'Avery', 1920, 'M', 113), +(24614, 'Sammy', 1920, 'M', 113), +(24615, 'Arden', 1920, 'M', 112), +(24616, 'Coleman', 1920, 'M', 112), +(24617, 'Jonathan', 1920, 'M', 112), +(24618, 'Arturo', 1920, 'M', 111), +(24619, 'Casimer', 1920, 'M', 111), +(24620, 'Hardy', 1920, 'M', 111), +(24621, 'Jewell', 1920, 'M', 111), +(24622, 'Orin', 1920, 'M', 111), +(24623, 'Raymon', 1920, 'M', 111), +(24624, 'Rudy', 1920, 'M', 111), +(24625, 'Alfredo', 1920, 'M', 110), +(24626, 'Enoch', 1920, 'M', 110), +(24627, 'Frankie', 1920, 'M', 109), +(24628, 'Seth', 1920, 'M', 109), +(24629, 'Felipe', 1920, 'M', 108), +(24630, 'Frances', 1920, 'M', 108), +(24631, 'Graham', 1920, 'M', 108), +(24632, 'King', 1920, 'M', 108), +(24633, 'Taylor', 1920, 'M', 108), +(24634, 'Carol', 1920, 'M', 107), +(24635, 'Justin', 1920, 'M', 107), +(24636, 'Lacy', 1920, 'M', 107), +(24637, 'Merritt', 1920, 'M', 107), +(24638, 'Marcel', 1920, 'M', 106), +(24639, 'Meredith', 1920, 'M', 106), +(24640, 'Asa', 1920, 'M', 105), +(24641, 'Bryant', 1920, 'M', 105), +(24642, 'Roderick', 1920, 'M', 105), +(24643, 'Talmadge', 1920, 'M', 105), +(24644, 'Eldridge', 1920, 'M', 104), +(24645, 'Garfield', 1920, 'M', 104), +(24646, 'Romeo', 1920, 'M', 104), +(24647, 'Buddy', 1920, 'M', 103), +(24648, 'Clare', 1920, 'M', 103), +(24649, 'Emmitt', 1920, 'M', 103), +(24650, 'Raphael', 1920, 'M', 103), +(24651, 'Rollin', 1920, 'M', 103), +(24652, 'Aldo', 1920, 'M', 101), +(24653, 'Elzie', 1920, 'M', 101), +(24654, 'Clem', 1920, 'M', 100), +(24655, 'Mary', 1921, 'F', 73985), +(24656, 'Dorothy', 1921, 'F', 39079), +(24657, 'Helen', 1921, 'F', 34821), +(24658, 'Margaret', 1921, 'F', 28466), +(24659, 'Ruth', 1921, 'F', 25781), +(24660, 'Virginia', 1921, 'F', 19029), +(24661, 'Mildred', 1921, 'F', 17882), +(24662, 'Betty', 1921, 'F', 17638), +(24663, 'Frances', 1921, 'F', 15994), +(24664, 'Elizabeth', 1921, 'F', 15800), +(24665, 'Anna', 1921, 'F', 14472), +(24666, 'Evelyn', 1921, 'F', 14279), +(24667, 'Doris', 1921, 'F', 13153), +(24668, 'Marie', 1921, 'F', 12500), +(24669, 'Alice', 1921, 'F', 11956), +(24670, 'Marjorie', 1921, 'F', 11208), +(24671, 'Florence', 1921, 'F', 10718), +(24672, 'Irene', 1921, 'F', 10624), +(24673, 'Lillian', 1921, 'F', 9769), +(24674, 'Rose', 1921, 'F', 9350), +(24675, 'Martha', 1921, 'F', 9264), +(24676, 'Louise', 1921, 'F', 9183), +(24677, 'Catherine', 1921, 'F', 8889), +(24678, 'Gladys', 1921, 'F', 8813), +(24679, 'Jean', 1921, 'F', 8595), +(24680, 'Ruby', 1921, 'F', 8333), +(24681, 'Edna', 1921, 'F', 8303), +(24682, 'Josephine', 1921, 'F', 8132), +(24683, 'Eleanor', 1921, 'F', 8052), +(24684, 'Thelma', 1921, 'F', 7836), +(24685, 'Lucille', 1921, 'F', 7696), +(24686, 'Ethel', 1921, 'F', 7603), +(24687, 'Edith', 1921, 'F', 7587), +(24688, 'Hazel', 1921, 'F', 7340), +(24689, 'Grace', 1921, 'F', 7230), +(24690, 'Annie', 1921, 'F', 7209), +(24691, 'Pauline', 1921, 'F', 7139), +(24692, 'Lois', 1921, 'F', 6898), +(24693, 'Bernice', 1921, 'F', 6191), +(24694, 'Barbara', 1921, 'F', 6015), +(24695, 'Beatrice', 1921, 'F', 5969), +(24696, 'Esther', 1921, 'F', 5926), +(24697, 'Marion', 1921, 'F', 5813), +(24698, 'Shirley', 1921, 'F', 5695), +(24699, 'Clara', 1921, 'F', 5606), +(24700, 'Gertrude', 1921, 'F', 5347), +(24701, 'Jane', 1921, 'F', 5186), +(24702, 'Rita', 1921, 'F', 5157), +(24703, 'Katherine', 1921, 'F', 5156), +(24704, 'June', 1921, 'F', 5155), +(24705, 'Norma', 1921, 'F', 5103), +(24706, 'Emma', 1921, 'F', 5073), +(24707, 'Ann', 1921, 'F', 5058), +(24708, 'Sarah', 1921, 'F', 5024), +(24709, 'Elsie', 1921, 'F', 4879), +(24710, 'Agnes', 1921, 'F', 4797), +(24711, 'Juanita', 1921, 'F', 4779), +(24712, 'Julia', 1921, 'F', 4737), +(24713, 'Bertha', 1921, 'F', 4609), +(24714, 'Phyllis', 1921, 'F', 4590), +(24715, 'Lorraine', 1921, 'F', 4533), +(24716, 'Geraldine', 1921, 'F', 4522), +(24717, 'Eva', 1921, 'F', 4326), +(24718, 'Kathryn', 1921, 'F', 4201), +(24719, 'Pearl', 1921, 'F', 4175), +(24720, 'Viola', 1921, 'F', 4159), +(24721, 'Ida', 1921, 'F', 4145), +(24722, 'Vivian', 1921, 'F', 4103), +(24723, 'Marian', 1921, 'F', 4063), +(24724, 'Anne', 1921, 'F', 4006), +(24725, 'Laura', 1921, 'F', 3997), +(24726, 'Wilma', 1921, 'F', 3822), +(24727, 'Myrtle', 1921, 'F', 3791), +(24728, 'Willie', 1921, 'F', 3747), +(24729, 'Bessie', 1921, 'F', 3676), +(24730, 'Maxine', 1921, 'F', 3632), +(24731, 'Vera', 1921, 'F', 3631), +(24732, 'Alma', 1921, 'F', 3589), +(24733, 'Charlotte', 1921, 'F', 3587), +(24734, 'Nellie', 1921, 'F', 3512), +(24735, 'Violet', 1921, 'F', 3469), +(24736, 'Audrey', 1921, 'F', 3434), +(24737, 'Kathleen', 1921, 'F', 3419), +(24738, 'Patricia', 1921, 'F', 3382), +(24739, 'Mabel', 1921, 'F', 3337), +(24740, 'Stella', 1921, 'F', 3336), +(24741, 'Nancy', 1921, 'F', 3323), +(24742, 'Sylvia', 1921, 'F', 3296), +(24743, 'Ella', 1921, 'F', 3237), +(24744, 'Genevieve', 1921, 'F', 3233), +(24745, 'Jessie', 1921, 'F', 3226), +(24746, 'Leona', 1921, 'F', 3210), +(24747, 'Lucy', 1921, 'F', 3157), +(24748, 'Lillie', 1921, 'F', 3118), +(24749, 'Ellen', 1921, 'F', 3065), +(24750, 'Minnie', 1921, 'F', 2998), +(24751, 'Elaine', 1921, 'F', 2921), +(24752, 'Marguerite', 1921, 'F', 2897), +(24753, 'Jennie', 1921, 'F', 2889), +(24754, 'Eileen', 1921, 'F', 2862), +(24755, 'Wanda', 1921, 'F', 2737), +(24756, 'Gloria', 1921, 'F', 2730), +(24757, 'Opal', 1921, 'F', 2711), +(24758, 'Lena', 1921, 'F', 2710), +(24759, 'Mattie', 1921, 'F', 2701), +(24760, 'Margie', 1921, 'F', 2696), +(24761, 'Theresa', 1921, 'F', 2613), +(24762, 'Velma', 1921, 'F', 2606), +(24763, 'Jeanne', 1921, 'F', 2590), +(24764, 'Mae', 1921, 'F', 2589), +(24765, 'Dolores', 1921, 'F', 2557), +(24766, 'Blanche', 1921, 'F', 2486), +(24767, 'Geneva', 1921, 'F', 2486), +(24768, 'Harriet', 1921, 'F', 2388), +(24769, 'Sara', 1921, 'F', 2350), +(24770, 'Beulah', 1921, 'F', 2313), +(24771, 'Georgia', 1921, 'F', 2313), +(24772, 'Christine', 1921, 'F', 2301), +(24773, 'Muriel', 1921, 'F', 2247), +(24774, 'Eunice', 1921, 'F', 2239), +(24775, 'Emily', 1921, 'F', 2183), +(24776, 'Loretta', 1921, 'F', 2134), +(24777, 'Hilda', 1921, 'F', 2128), +(24778, 'Janet', 1921, 'F', 2123), +(24779, 'Jeanette', 1921, 'F', 2096), +(24780, 'Carrie', 1921, 'F', 2081), +(24781, 'Inez', 1921, 'F', 2081), +(24782, 'Rosemary', 1921, 'F', 2034), +(24783, 'Maria', 1921, 'F', 2028), +(24784, 'Dora', 1921, 'F', 2026), +(24785, 'Rosa', 1921, 'F', 1976), +(24786, 'Naomi', 1921, 'F', 1975), +(24787, 'Alberta', 1921, 'F', 1929), +(24788, 'Anita', 1921, 'F', 1923), +(24789, 'Fannie', 1921, 'F', 1891), +(24790, 'Sophie', 1921, 'F', 1864), +(24791, 'Joyce', 1921, 'F', 1841), +(24792, 'Arlene', 1921, 'F', 1837), +(24793, 'Madeline', 1921, 'F', 1836), +(24794, 'Cora', 1921, 'F', 1829), +(24795, 'Verna', 1921, 'F', 1814), +(24796, 'Joan', 1921, 'F', 1790), +(24797, 'Lula', 1921, 'F', 1779), +(24798, 'Hattie', 1921, 'F', 1775), +(24799, 'Ada', 1921, 'F', 1756), +(24800, 'Carolyn', 1921, 'F', 1753), +(24801, 'Miriam', 1921, 'F', 1742), +(24802, 'Roberta', 1921, 'F', 1732), +(24803, 'Constance', 1921, 'F', 1686), +(24804, 'Mamie', 1921, 'F', 1627), +(24805, 'Bonnie', 1921, 'F', 1609), +(24806, 'Rachel', 1921, 'F', 1583), +(24807, 'Olga', 1921, 'F', 1573), +(24808, 'Olive', 1921, 'F', 1567), +(24809, 'Mable', 1921, 'F', 1565), +(24810, 'Flora', 1921, 'F', 1553), +(24811, 'Lola', 1921, 'F', 1540), +(24812, 'Erma', 1921, 'F', 1525), +(24813, 'Marcella', 1921, 'F', 1502), +(24814, 'Daisy', 1921, 'F', 1481), +(24815, 'Estelle', 1921, 'F', 1436), +(24816, 'Caroline', 1921, 'F', 1424), +(24817, 'Winifred', 1921, 'F', 1417), +(24818, 'Eloise', 1921, 'F', 1381), +(24819, 'Irma', 1921, 'F', 1376), +(24820, 'Carol', 1921, 'F', 1373), +(24821, 'Nora', 1921, 'F', 1351), +(24822, 'Susie', 1921, 'F', 1321), +(24823, 'Bette', 1921, 'F', 1318), +(24824, 'Rosie', 1921, 'F', 1314), +(24825, 'Eula', 1921, 'F', 1312), +(24826, 'Lorene', 1921, 'F', 1305), +(24827, 'Maggie', 1921, 'F', 1300), +(24828, 'Fern', 1921, 'F', 1297), +(24829, 'Rebecca', 1921, 'F', 1272), +(24830, 'Sadie', 1921, 'F', 1248), +(24831, 'Adeline', 1921, 'F', 1246), +(24832, 'Lucile', 1921, 'F', 1242), +(24833, 'Victoria', 1921, 'F', 1239), +(24834, 'Antoinette', 1921, 'F', 1235), +(24835, 'Nina', 1921, 'F', 1212), +(24836, 'Claire', 1921, 'F', 1210), +(24837, 'Lottie', 1921, 'F', 1208), +(24838, 'Henrietta', 1921, 'F', 1174), +(24839, 'Laverne', 1921, 'F', 1163), +(24840, 'Beverly', 1921, 'F', 1161), +(24841, 'Della', 1921, 'F', 1153), +(24842, 'Regina', 1921, 'F', 1144), +(24843, 'Donna', 1921, 'F', 1112), +(24844, 'Billie', 1921, 'F', 1104), +(24845, 'Jeannette', 1921, 'F', 1093), +(24846, 'Rosalie', 1921, 'F', 1075), +(24847, 'Veronica', 1921, 'F', 1074), +(24848, 'Angelina', 1921, 'F', 1073), +(24849, 'Peggy', 1921, 'F', 1067), +(24850, 'Dorothea', 1921, 'F', 1057), +(24851, 'Lydia', 1921, 'F', 1051), +(24852, 'Nettie', 1921, 'F', 1034), +(24853, 'Essie', 1921, 'F', 1032), +(24854, 'Amelia', 1921, 'F', 995), +(24855, 'Cleo', 1921, 'F', 992), +(24856, 'Faye', 1921, 'F', 989), +(24857, 'Angeline', 1921, 'F', 986), +(24858, 'Goldie', 1921, 'F', 984), +(24859, 'May', 1921, 'F', 977), +(24860, 'Katie', 1921, 'F', 976), +(24861, 'Isabel', 1921, 'F', 971), +(24862, 'Freda', 1921, 'F', 970), +(24863, 'Ollie', 1921, 'F', 912), +(24864, 'Melba', 1921, 'F', 910), +(24865, 'Johnnie', 1921, 'F', 909), +(24866, 'Lela', 1921, 'F', 907), +(24867, 'Lila', 1921, 'F', 894), +(24868, 'Sally', 1921, 'F', 891), +(24869, 'Adele', 1921, 'F', 890), +(24870, 'Luella', 1921, 'F', 887), +(24871, 'Ernestine', 1921, 'F', 871), +(24872, 'Annette', 1921, 'F', 866), +(24873, 'Jewell', 1921, 'F', 858), +(24874, 'Effie', 1921, 'F', 848), +(24875, 'Isabelle', 1921, 'F', 846), +(24876, 'Susan', 1921, 'F', 846), +(24877, 'Imogene', 1921, 'F', 838), +(24878, 'Addie', 1921, 'F', 836), +(24879, 'Ora', 1921, 'F', 836), +(24880, 'Cecelia', 1921, 'F', 825), +(24881, 'Gwendolyn', 1921, 'F', 819), +(24882, 'Bettie', 1921, 'F', 818), +(24883, 'Delores', 1921, 'F', 810), +(24884, 'Leola', 1921, 'F', 788), +(24885, 'Iva', 1921, 'F', 785), +(24886, 'Jewel', 1921, 'F', 785), +(24887, 'Sallie', 1921, 'F', 782), +(24888, 'Carmen', 1921, 'F', 775), +(24889, 'Eleanore', 1921, 'F', 767), +(24890, 'Cecilia', 1921, 'F', 761), +(24891, 'Yvonne', 1921, 'F', 761), +(24892, 'Nell', 1921, 'F', 760), +(24893, 'Jacqueline', 1921, 'F', 757), +(24894, 'Ola', 1921, 'F', 755), +(24895, 'Reba', 1921, 'F', 748), +(24896, 'Ina', 1921, 'F', 745), +(24897, 'Alta', 1921, 'F', 741), +(24898, 'Etta', 1921, 'F', 740), +(24899, 'Teresa', 1921, 'F', 737), +(24900, 'Janice', 1921, 'F', 732), +(24901, 'Natalie', 1921, 'F', 730), +(24902, 'Priscilla', 1921, 'F', 723), +(24903, 'Elva', 1921, 'F', 720), +(24904, 'Janie', 1921, 'F', 708), +(24905, 'Selma', 1921, 'F', 703), +(24906, 'Iris', 1921, 'F', 700), +(24907, 'Marilyn', 1921, 'F', 696), +(24908, 'Celia', 1921, 'F', 691), +(24909, 'Angela', 1921, 'F', 671), +(24910, 'Sue', 1921, 'F', 669), +(24911, 'Lizzie', 1921, 'F', 664), +(24912, 'Nadine', 1921, 'F', 661), +(24913, 'Francis', 1921, 'F', 660), +(24914, 'Frieda', 1921, 'F', 639), +(24915, 'Estella', 1921, 'F', 637), +(24916, 'Annabelle', 1921, 'F', 631), +(24917, 'Arline', 1921, 'F', 628), +(24918, 'Helene', 1921, 'F', 624), +(24919, 'Ila', 1921, 'F', 623), +(24920, 'Lenora', 1921, 'F', 621), +(24921, 'Amy', 1921, 'F', 619), +(24922, 'Elnora', 1921, 'F', 616), +(24923, 'Elinor', 1921, 'F', 612), +(24924, 'Fay', 1921, 'F', 612), +(24925, 'Elma', 1921, 'F', 610), +(24926, 'Nannie', 1921, 'F', 610), +(24927, 'Eugenia', 1921, 'F', 606), +(24928, 'Matilda', 1921, 'F', 606), +(24929, 'Clarice', 1921, 'F', 600), +(24930, 'Maude', 1921, 'F', 591), +(24931, 'Mollie', 1921, 'F', 570), +(24932, 'Elvira', 1921, 'F', 568), +(24933, 'Margery', 1921, 'F', 564), +(24934, 'Carmela', 1921, 'F', 563), +(24935, 'Bernadine', 1921, 'F', 560), +(24936, 'Mavis', 1921, 'F', 552), +(24937, 'Rena', 1921, 'F', 550), +(24938, 'Harriett', 1921, 'F', 543), +(24939, 'Sybil', 1921, 'F', 541), +(24940, 'Virgie', 1921, 'F', 534), +(24941, 'Flossie', 1921, 'F', 533), +(24942, 'Connie', 1921, 'F', 531), +(24943, 'Myra', 1921, 'F', 523), +(24944, 'Edythe', 1921, 'F', 521), +(24945, 'Gracie', 1921, 'F', 516), +(24946, 'Leah', 1921, 'F', 514), +(24947, 'Alyce', 1921, 'F', 503), +(24948, 'Olivia', 1921, 'F', 502), +(24949, 'Carmella', 1921, 'F', 496), +(24950, 'Hannah', 1921, 'F', 496), +(24951, 'Dorthy', 1921, 'F', 491), +(24952, 'Millie', 1921, 'F', 491), +(24953, 'Sophia', 1921, 'F', 489), +(24954, 'Cornelia', 1921, 'F', 477), +(24955, 'Cecile', 1921, 'F', 475), +(24956, 'Neva', 1921, 'F', 463), +(24957, 'Lee', 1921, 'F', 459), +(24958, 'Winnie', 1921, 'F', 458), +(24959, 'Aileen', 1921, 'F', 454), +(24960, 'Dollie', 1921, 'F', 454), +(24961, 'Marcia', 1921, 'F', 451), +(24962, 'Frankie', 1921, 'F', 450), +(24963, 'Odessa', 1921, 'F', 448), +(24964, 'Zelma', 1921, 'F', 445), +(24965, 'Merle', 1921, 'F', 442), +(24966, 'Adelaide', 1921, 'F', 437), +(24967, 'Rhoda', 1921, 'F', 430), +(24968, 'Allie', 1921, 'F', 428), +(24969, 'Concetta', 1921, 'F', 428), +(24970, 'Letha', 1921, 'F', 428), +(24971, 'Madge', 1921, 'F', 428), +(24972, 'Rosella', 1921, 'F', 425), +(24973, 'Lorena', 1921, 'F', 423), +(24974, 'Jimmie', 1921, 'F', 422), +(24975, 'Claudia', 1921, 'F', 419), +(24976, 'Josie', 1921, 'F', 418), +(24977, 'Lenore', 1921, 'F', 418), +(24978, 'Rosetta', 1921, 'F', 417), +(24979, 'Berniece', 1921, 'F', 416), +(24980, 'Lily', 1921, 'F', 407), +(24981, 'Loraine', 1921, 'F', 407), +(24982, 'Willa', 1921, 'F', 407), +(24983, 'Florine', 1921, 'F', 398), +(24984, 'Avis', 1921, 'F', 397), +(24985, 'Corinne', 1921, 'F', 393), +(24986, 'Amanda', 1921, 'F', 392), +(24987, 'Joy', 1921, 'F', 392), +(24988, 'Helena', 1921, 'F', 391), +(24989, 'Ramona', 1921, 'F', 390), +(24990, 'Christina', 1921, 'F', 384), +(24991, 'Darlene', 1921, 'F', 383), +(24992, 'Suzanne', 1921, 'F', 376), +(24993, 'Deloris', 1921, 'F', 372), +(24994, 'Aline', 1921, 'F', 370), +(24995, 'Linda', 1921, 'F', 367), +(24996, 'Guadalupe', 1921, 'F', 365), +(24997, 'Lora', 1921, 'F', 363), +(24998, 'Hope', 1921, 'F', 361), +(24999, 'Iona', 1921, 'F', 360), +(25000, 'Bernadette', 1921, 'F', 356), +(25001, 'Beth', 1921, 'F', 356), +(25002, 'Yolanda', 1921, 'F', 356), +(25003, 'Dolly', 1921, 'F', 354), +(25004, 'Eliza', 1921, 'F', 352), +(25005, 'Judith', 1921, 'F', 351), +(25006, 'Reva', 1921, 'F', 351), +(25007, 'Ophelia', 1921, 'F', 347), +(25008, 'Callie', 1921, 'F', 346), +(25009, 'Lessie', 1921, 'F', 346), +(25010, 'Pearlie', 1921, 'F', 346), +(25011, 'Leila', 1921, 'F', 345), +(25012, 'Bobbie', 1921, 'F', 342), +(25013, 'Leota', 1921, 'F', 340), +(25014, 'Lilly', 1921, 'F', 339), +(25015, 'Antonia', 1921, 'F', 338), +(25016, 'Hester', 1921, 'F', 337), +(25017, 'Ione', 1921, 'F', 335), +(25018, 'Tillie', 1921, 'F', 333), +(25019, 'Johanna', 1921, 'F', 332), +(25020, 'Earline', 1921, 'F', 331), +(25021, 'Eddie', 1921, 'F', 331), +(25022, 'Madelyn', 1921, 'F', 331), +(25023, 'Aurora', 1921, 'F', 329), +(25024, 'Katharine', 1921, 'F', 329), +(25025, 'Glenna', 1921, 'F', 328), +(25026, 'Wilda', 1921, 'F', 327), +(25027, 'Paula', 1921, 'F', 326), +(25028, 'Nola', 1921, 'F', 324), +(25029, 'Corine', 1921, 'F', 322), +(25030, 'Dixie', 1921, 'F', 321), +(25031, 'Lou', 1921, 'F', 320), +(25032, 'Charlene', 1921, 'F', 318), +(25033, 'Althea', 1921, 'F', 311), +(25034, 'Maudie', 1921, 'F', 311), +(25035, 'Gussie', 1921, 'F', 307), +(25036, 'Stephanie', 1921, 'F', 305), +(25037, 'Kay', 1921, 'F', 304), +(25038, 'Lupe', 1921, 'F', 302), +(25039, 'Molly', 1921, 'F', 301), +(25040, 'Mona', 1921, 'F', 301), +(25041, 'Mercedes', 1921, 'F', 299), +(25042, 'Iola', 1921, 'F', 296), +(25043, 'Cynthia', 1921, 'F', 295), +(25044, 'Dortha', 1921, 'F', 295), +(25045, 'Marietta', 1921, 'F', 295), +(25046, 'Philomena', 1921, 'F', 295), +(25047, 'Marjory', 1921, 'F', 294), +(25048, 'Tessie', 1921, 'F', 293), +(25049, 'Theda', 1921, 'F', 293), +(25050, 'Bertie', 1921, 'F', 292), +(25051, 'Nona', 1921, 'F', 290), +(25052, 'Kate', 1921, 'F', 289), +(25053, 'Lelia', 1921, 'F', 289), +(25054, 'Augusta', 1921, 'F', 286), +(25055, 'John', 1921, 'F', 285), +(25056, 'Polly', 1921, 'F', 285), +(25057, 'Melva', 1921, 'F', 283), +(25058, 'Maurine', 1921, 'F', 281), +(25059, 'Zelda', 1921, 'F', 280), +(25060, 'Zella', 1921, 'F', 280), +(25061, 'Lorna', 1921, 'F', 277), +(25062, 'Margarita', 1921, 'F', 274), +(25063, 'Dessie', 1921, 'F', 273), +(25064, 'Robbie', 1921, 'F', 272), +(25065, 'Delia', 1921, 'F', 271), +(25066, 'Isabell', 1921, 'F', 271), +(25067, 'Harriette', 1921, 'F', 270), +(25068, 'Verda', 1921, 'F', 268), +(25069, 'Winona', 1921, 'F', 265), +(25070, 'Oma', 1921, 'F', 262), +(25071, 'Jo', 1921, 'F', 259), +(25072, 'Enid', 1921, 'F', 258), +(25073, 'Evangeline', 1921, 'F', 258), +(25074, 'Birdie', 1921, 'F', 257), +(25075, 'Erna', 1921, 'F', 257), +(25076, 'Georgie', 1921, 'F', 257), +(25077, 'Louella', 1921, 'F', 257), +(25078, 'Roxie', 1921, 'F', 257), +(25079, 'Jayne', 1921, 'F', 256), +(25080, 'Leora', 1921, 'F', 255), +(25081, 'Dorris', 1921, 'F', 254), +(25082, 'Corrine', 1921, 'F', 253), +(25083, 'Ester', 1921, 'F', 252), +(25084, 'Tommie', 1921, 'F', 252), +(25085, 'Alene', 1921, 'F', 250), +(25086, 'Justine', 1921, 'F', 249), +(25087, 'Consuelo', 1921, 'F', 248), +(25088, 'Monica', 1921, 'F', 247), +(25089, 'Elisabeth', 1921, 'F', 245), +(25090, 'Pansy', 1921, 'F', 245), +(25091, 'Allene', 1921, 'F', 244), +(25092, 'Robert', 1921, 'F', 244), +(25093, 'Ruthie', 1921, 'F', 244), +(25094, 'Alvina', 1921, 'F', 243), +(25095, 'Elda', 1921, 'F', 243), +(25096, 'Diana', 1921, 'F', 242), +(25097, 'Madeleine', 1921, 'F', 242), +(25098, 'Rubye', 1921, 'F', 242), +(25099, 'Clare', 1921, 'F', 241), +(25100, 'Lorine', 1921, 'F', 239), +(25101, 'Hallie', 1921, 'F', 238), +(25102, 'Beryl', 1921, 'F', 237), +(25103, 'Isabella', 1921, 'F', 236), +(25104, 'Patsy', 1921, 'F', 236), +(25105, 'Jannie', 1921, 'F', 235), +(25106, 'Jaunita', 1921, 'F', 234), +(25107, 'Roslyn', 1921, 'F', 234), +(25108, 'Joanne', 1921, 'F', 233), +(25109, 'James', 1921, 'F', 231), +(25110, 'Angie', 1921, 'F', 230), +(25111, 'Mozelle', 1921, 'F', 230), +(25112, 'Wilhelmina', 1921, 'F', 230), +(25113, 'Nelda', 1921, 'F', 229), +(25114, 'Bettye', 1921, 'F', 224), +(25115, 'Maryann', 1921, 'F', 224), +(25116, 'Ilene', 1921, 'F', 222), +(25117, 'Rosalind', 1921, 'F', 221), +(25118, 'Belle', 1921, 'F', 219), +(25119, 'Elvera', 1921, 'F', 219), +(25120, 'Hortense', 1921, 'F', 217), +(25121, 'Mayme', 1921, 'F', 217), +(25122, 'Una', 1921, 'F', 217), +(25123, 'Elise', 1921, 'F', 216), +(25124, 'Myrtis', 1921, 'F', 216), +(25125, 'Trinidad', 1921, 'F', 215), +(25126, 'Margret', 1921, 'F', 214), +(25127, 'Retha', 1921, 'F', 214), +(25128, 'Elena', 1921, 'F', 212), +(25129, 'Vada', 1921, 'F', 212), +(25130, 'Freida', 1921, 'F', 211), +(25131, 'Rowena', 1921, 'F', 209), +(25132, 'Catharine', 1921, 'F', 208), +(25133, 'Oleta', 1921, 'F', 208), +(25134, 'George', 1921, 'F', 206), +(25135, 'Judy', 1921, 'F', 205), +(25136, 'Leta', 1921, 'F', 205), +(25137, 'Gail', 1921, 'F', 204), +(25138, 'Queen', 1921, 'F', 204), +(25139, 'Garnet', 1921, 'F', 203), +(25140, 'Minerva', 1921, 'F', 202), +(25141, 'Valeria', 1921, 'F', 202), +(25142, 'Delphine', 1921, 'F', 201), +(25143, 'Dovie', 1921, 'F', 201), +(25144, 'Marianne', 1921, 'F', 201), +(25145, 'Syble', 1921, 'F', 201), +(25146, 'Betsy', 1921, 'F', 200), +(25147, 'Margarette', 1921, 'F', 200), +(25148, 'Rae', 1921, 'F', 200), +(25149, 'Vida', 1921, 'F', 200), +(25150, 'Louisa', 1921, 'F', 199), +(25151, 'Phoebe', 1921, 'F', 199), +(25152, 'Elouise', 1921, 'F', 198), +(25153, 'Julie', 1921, 'F', 198), +(25154, 'Adell', 1921, 'F', 197), +(25155, 'Dorotha', 1921, 'F', 197), +(25156, 'Manuela', 1921, 'F', 197), +(25157, 'Vernice', 1921, 'F', 197), +(25158, 'Vesta', 1921, 'F', 197), +(25159, 'Lavonne', 1921, 'F', 195), +(25160, 'Leone', 1921, 'F', 195), +(25161, 'Ferne', 1921, 'F', 193), +(25162, 'Verla', 1921, 'F', 193), +(25163, 'Bella', 1921, 'F', 192), +(25164, 'Earnestine', 1921, 'F', 191), +(25165, 'Rosemarie', 1921, 'F', 191), +(25166, 'Ardis', 1921, 'F', 190), +(25167, 'Edwina', 1921, 'F', 190), +(25168, 'Faith', 1921, 'F', 190), +(25169, 'Gertie', 1921, 'F', 190), +(25170, 'Valerie', 1921, 'F', 190), +(25171, 'William', 1921, 'F', 190), +(25172, 'Lauretta', 1921, 'F', 188), +(25173, 'Veda', 1921, 'F', 188), +(25174, 'Agatha', 1921, 'F', 187), +(25175, 'Lura', 1921, 'F', 184), +(25176, 'Theodora', 1921, 'F', 184), +(25177, 'Gene', 1921, 'F', 183), +(25178, 'Lettie', 1921, 'F', 183), +(25179, 'Filomena', 1921, 'F', 182), +(25180, 'Lucia', 1921, 'F', 182), +(25181, 'Alfreda', 1921, 'F', 181), +(25182, 'Alpha', 1921, 'F', 179), +(25183, 'Claudine', 1921, 'F', 179), +(25184, 'Juliette', 1921, 'F', 179), +(25185, 'Katheryn', 1921, 'F', 179), +(25186, 'Linnie', 1921, 'F', 179), +(25187, 'Millicent', 1921, 'F', 179), +(25188, 'Rhea', 1921, 'F', 179), +(25189, 'Belva', 1921, 'F', 178), +(25190, 'Jenny', 1921, 'F', 178), +(25191, 'Velda', 1921, 'F', 178), +(25192, 'Ava', 1921, 'F', 177), +(25193, 'Charles', 1921, 'F', 176), +(25194, 'Magdalene', 1921, 'F', 174), +(25195, 'Floy', 1921, 'F', 172), +(25196, 'Zola', 1921, 'F', 171), +(25197, 'Fanny', 1921, 'F', 170), +(25198, 'Freddie', 1921, 'F', 170), +(25199, 'Odell', 1921, 'F', 170), +(25200, 'Johnie', 1921, 'F', 169), +(25201, 'Cassie', 1921, 'F', 168), +(25202, 'Idella', 1921, 'F', 168), +(25203, 'Lucinda', 1921, 'F', 168), +(25204, 'Ima', 1921, 'F', 167), +(25205, 'Aurelia', 1921, 'F', 166), +(25206, 'Petra', 1921, 'F', 166), +(25207, 'Alva', 1921, 'F', 165), +(25208, 'Bennie', 1921, 'F', 165), +(25209, 'Jerry', 1921, 'F', 165), +(25210, 'Eleanora', 1921, 'F', 164), +(25211, 'Lona', 1921, 'F', 164), +(25212, 'Maryjane', 1921, 'F', 164), +(25213, 'Maybelle', 1921, 'F', 164), +(25214, 'Blanch', 1921, 'F', 163), +(25215, 'Florene', 1921, 'F', 163), +(25216, 'Juana', 1921, 'F', 163), +(25217, 'Orpha', 1921, 'F', 163), +(25218, 'Emogene', 1921, 'F', 161), +(25219, 'Mazie', 1921, 'F', 161), +(25220, 'Celeste', 1921, 'F', 160), +(25221, 'Clementine', 1921, 'F', 160), +(25222, 'Janette', 1921, 'F', 160), +(25223, 'Joanna', 1921, 'F', 160), +(25224, 'Lulu', 1921, 'F', 160), +(25225, 'Ona', 1921, 'F', 160), +(25226, 'Evalyn', 1921, 'F', 158), +(25227, 'Celestine', 1921, 'F', 157), +(25228, 'Francisca', 1921, 'F', 157), +(25229, 'Adela', 1921, 'F', 156), +(25230, 'Artie', 1921, 'F', 156), +(25231, 'Hellen', 1921, 'F', 156), +(25232, 'Rosalee', 1921, 'F', 156), +(25233, 'Rubie', 1921, 'F', 156), +(25234, 'Earlene', 1921, 'F', 155), +(25235, 'Germaine', 1921, 'F', 155), +(25236, 'Albina', 1921, 'F', 154), +(25237, 'Elsa', 1921, 'F', 154), +(25238, 'Gilda', 1921, 'F', 154), +(25239, 'Camille', 1921, 'F', 153), +(25240, 'Cecil', 1921, 'F', 152), +(25241, 'Joann', 1921, 'F', 152), +(25242, 'Winnifred', 1921, 'F', 152), +(25243, 'Sibyl', 1921, 'F', 151), +(25244, 'Delma', 1921, 'F', 150), +(25245, 'Magnolia', 1921, 'F', 150), +(25246, 'Hettie', 1921, 'F', 149), +(25247, 'Reta', 1921, 'F', 149), +(25248, 'Cathryn', 1921, 'F', 148), +(25249, 'Emilie', 1921, 'F', 147), +(25250, 'Mathilda', 1921, 'F', 147), +(25251, 'Maureen', 1921, 'F', 147), +(25252, 'Rosalyn', 1921, 'F', 147), +(25253, 'Eldora', 1921, 'F', 146), +(25254, 'Ethelyn', 1921, 'F', 146), +(25255, 'Marcelle', 1921, 'F', 146), +(25256, 'Therese', 1921, 'F', 145), +(25257, 'Annetta', 1921, 'F', 144), +(25258, 'Carole', 1921, 'F', 144), +(25259, 'Gretchen', 1921, 'F', 144), +(25260, 'Myrtice', 1921, 'F', 144), +(25261, 'Ouida', 1921, 'F', 144), +(25262, 'Rachael', 1921, 'F', 144), +(25263, 'Georgette', 1921, 'F', 143), +(25264, 'Ivy', 1921, 'F', 143), +(25265, 'Ursula', 1921, 'F', 143), +(25266, 'Anastasia', 1921, 'F', 142), +(25267, 'Bonita', 1921, 'F', 142), +(25268, 'Treva', 1921, 'F', 142), +(25269, 'Alicia', 1921, 'F', 141), +(25270, 'Cordelia', 1921, 'F', 141), +(25271, 'Jackie', 1921, 'F', 141), +(25272, 'Lavina', 1921, 'F', 141), +(25273, 'Ardith', 1921, 'F', 140), +(25274, 'Dorcas', 1921, 'F', 140), +(25275, 'Lavern', 1921, 'F', 140), +(25276, 'Mittie', 1921, 'F', 140), +(25277, 'Novella', 1921, 'F', 140), +(25278, 'Pearline', 1921, 'F', 140), +(25279, 'Alda', 1921, 'F', 139), +(25280, 'Charlie', 1921, 'F', 139), +(25281, 'Myrna', 1921, 'F', 139), +(25282, 'Tressie', 1921, 'F', 139), +(25283, 'Carolina', 1921, 'F', 137), +(25284, 'Crystal', 1921, 'F', 137), +(25285, 'Joe', 1921, 'F', 137), +(25286, 'Zora', 1921, 'F', 137), +(25287, 'Aletha', 1921, 'F', 136), +(25288, 'Marvel', 1921, 'F', 136), +(25289, 'Vergie', 1921, 'F', 136), +(25290, 'Almeda', 1921, 'F', 135), +(25291, 'Dona', 1921, 'F', 135), +(25292, 'Era', 1921, 'F', 135), +(25293, 'Nelle', 1921, 'F', 135), +(25294, 'Twila', 1921, 'F', 135), +(25295, 'Camilla', 1921, 'F', 134), +(25296, 'Leatha', 1921, 'F', 134), +(25297, 'Abbie', 1921, 'F', 133), +(25298, 'Ray', 1921, 'F', 133), +(25299, 'Roma', 1921, 'F', 132), +(25300, 'Arleen', 1921, 'F', 131), +(25301, 'Georgiana', 1921, 'F', 131), +(25302, 'Maud', 1921, 'F', 131), +(25303, 'Annabel', 1921, 'F', 130), +(25304, 'Jeane', 1921, 'F', 129), +(25305, 'Yetta', 1921, 'F', 129), +(25306, 'Mina', 1921, 'F', 127), +(25307, 'Rosina', 1921, 'F', 127), +(25308, 'Evelyne', 1921, 'F', 126), +(25309, 'Leslie', 1921, 'F', 126), +(25310, 'Tina', 1921, 'F', 126), +(25311, 'Adrienne', 1921, 'F', 125), +(25312, 'Annamae', 1921, 'F', 125), +(25313, 'Hedwig', 1921, 'F', 125), +(25314, 'Idell', 1921, 'F', 125), +(25315, 'Josefina', 1921, 'F', 125), +(25316, 'Marilynn', 1921, 'F', 125), +(25317, 'Larue', 1921, 'F', 124), +(25318, 'Leonora', 1921, 'F', 124), +(25319, 'Yvette', 1921, 'F', 124), +(25320, 'Grayce', 1921, 'F', 123), +(25321, 'Berta', 1921, 'F', 122), +(25322, 'Elmira', 1921, 'F', 122), +(25323, 'Emilia', 1921, 'F', 122), +(25324, 'Lina', 1921, 'F', 122), +(25325, 'Velva', 1921, 'F', 122), +(25326, 'Carmel', 1921, 'F', 121), +(25327, 'Estell', 1921, 'F', 121), +(25328, 'Felicia', 1921, 'F', 121), +(25329, 'Elna', 1921, 'F', 120), +(25330, 'Golda', 1921, 'F', 120), +(25331, 'Joseph', 1921, 'F', 120), +(25332, 'Sandra', 1921, 'F', 120), +(25333, 'Vernell', 1921, 'F', 120), +(25334, 'Georgianna', 1921, 'F', 118), +(25335, 'Lue', 1921, 'F', 118), +(25336, 'Norine', 1921, 'F', 118), +(25337, 'Vincenza', 1921, 'F', 118), +(25338, 'Annabell', 1921, 'F', 117), +(25339, 'Berneice', 1921, 'F', 117), +(25340, 'Doretha', 1921, 'F', 117), +(25341, 'Glenda', 1921, 'F', 117), +(25342, 'Antonette', 1921, 'F', 116), +(25343, 'Albertha', 1921, 'F', 115), +(25344, 'Esperanza', 1921, 'F', 115), +(25345, 'Marianna', 1921, 'F', 115), +(25346, 'Lennie', 1921, 'F', 114), +(25347, 'Lyda', 1921, 'F', 114), +(25348, 'Adella', 1921, 'F', 113), +(25349, 'Audra', 1921, 'F', 113), +(25350, 'Delphia', 1921, 'F', 113), +(25351, 'Melvina', 1921, 'F', 113), +(25352, 'Renee', 1921, 'F', 113), +(25353, 'Bethel', 1921, 'F', 112), +(25354, 'Colleen', 1921, 'F', 112), +(25355, 'Kathrine', 1921, 'F', 112), +(25356, 'Laverna', 1921, 'F', 112), +(25357, 'Ocie', 1921, 'F', 112), +(25358, 'Easter', 1921, 'F', 111), +(25359, 'Lavada', 1921, 'F', 111), +(25360, 'Nita', 1921, 'F', 111), +(25361, 'Sheila', 1921, 'F', 110), +(25362, 'Nan', 1921, 'F', 109), +(25363, 'Nathalie', 1921, 'F', 109), +(25364, 'Eulalia', 1921, 'F', 108), +(25365, 'Eve', 1921, 'F', 106), +(25366, 'Gayle', 1921, 'F', 106), +(25367, 'Rosamond', 1921, 'F', 106), +(25368, 'Cathrine', 1921, 'F', 105), +(25369, 'Janis', 1921, 'F', 105), +(25370, 'Octavia', 1921, 'F', 105), +(25371, 'Andrea', 1921, 'F', 104), +(25372, 'Charline', 1921, 'F', 104), +(25373, 'Daphne', 1921, 'F', 104), +(25374, 'Libby', 1921, 'F', 104), +(25375, 'Mozell', 1921, 'F', 104), +(25376, 'Evie', 1921, 'F', 103), +(25377, 'Lovie', 1921, 'F', 103), +(25378, 'Mandy', 1921, 'F', 103), +(25379, 'Margarett', 1921, 'F', 103), +(25380, 'Verona', 1921, 'F', 103), +(25381, 'Viva', 1921, 'F', 103), +(25382, 'Esta', 1921, 'F', 102), +(25383, 'Madaline', 1921, 'F', 102), +(25384, 'Meta', 1921, 'F', 102), +(25385, 'Myrtie', 1921, 'F', 102), +(25386, 'Elenora', 1921, 'F', 101), +(25387, 'Gwen', 1921, 'F', 101), +(25388, 'Hulda', 1921, 'F', 101), +(25389, 'Cleta', 1921, 'F', 100), +(25390, 'John', 1921, 'M', 58228), +(25391, 'Robert', 1921, 'M', 52782), +(25392, 'William', 1921, 'M', 51861), +(25393, 'James', 1921, 'M', 49748), +(25394, 'Charles', 1921, 'M', 29242), +(25395, 'George', 1921, 'M', 27477), +(25396, 'Joseph', 1921, 'M', 26178), +(25397, 'Edward', 1921, 'M', 20819), +(25398, 'Frank', 1921, 'M', 16707), +(25399, 'Richard', 1921, 'M', 16378), +(25400, 'Thomas', 1921, 'M', 15309), +(25401, 'Harold', 1921, 'M', 13813), +(25402, 'Donald', 1921, 'M', 13779), +(25403, 'Paul', 1921, 'M', 13166), +(25404, 'Walter', 1921, 'M', 12999), +(25405, 'Raymond', 1921, 'M', 12640), +(25406, 'Henry', 1921, 'M', 11412), +(25407, 'Jack', 1921, 'M', 10756), +(25408, 'Arthur', 1921, 'M', 10526), +(25409, 'Albert', 1921, 'M', 10155), +(25410, 'Harry', 1921, 'M', 9731), +(25411, 'Kenneth', 1921, 'M', 8958), +(25412, 'Ralph', 1921, 'M', 8861), +(25413, 'Warren', 1921, 'M', 7797), +(25414, 'David', 1921, 'M', 7766), +(25415, 'Eugene', 1921, 'M', 7718), +(25416, 'Howard', 1921, 'M', 7714), +(25417, 'Clarence', 1921, 'M', 7333), +(25418, 'Louis', 1921, 'M', 7247), +(25419, 'Carl', 1921, 'M', 7080), +(25420, 'Earl', 1921, 'M', 6754), +(25421, 'Roy', 1921, 'M', 6548), +(25422, 'Fred', 1921, 'M', 6492), +(25423, 'Willie', 1921, 'M', 6490), +(25424, 'Francis', 1921, 'M', 6293), +(25425, 'Joe', 1921, 'M', 6206), +(25426, 'Lawrence', 1921, 'M', 5980), +(25427, 'Ernest', 1921, 'M', 5695), +(25428, 'Leonard', 1921, 'M', 5651), +(25429, 'Anthony', 1921, 'M', 5238), +(25430, 'Stanley', 1921, 'M', 5233), +(25431, 'Herbert', 1921, 'M', 5220), +(25432, 'Alfred', 1921, 'M', 4925), +(25433, 'Samuel', 1921, 'M', 4755), +(25434, 'Bernard', 1921, 'M', 4484), +(25435, 'Norman', 1921, 'M', 4478), +(25436, 'Michael', 1921, 'M', 4198), +(25437, 'Elmer', 1921, 'M', 4147), +(25438, 'Daniel', 1921, 'M', 4090), +(25439, 'Leo', 1921, 'M', 4067), +(25440, 'Andrew', 1921, 'M', 4015), +(25441, 'Russell', 1921, 'M', 3947), +(25442, 'Melvin', 1921, 'M', 3885), +(25443, 'Edwin', 1921, 'M', 3752), +(25444, 'Leroy', 1921, 'M', 3746), +(25445, 'Chester', 1921, 'M', 3550), +(25446, 'Peter', 1921, 'M', 3547), +(25447, 'Lloyd', 1921, 'M', 3538), +(25448, 'Marvin', 1921, 'M', 3490), +(25449, 'Gerald', 1921, 'M', 3382), +(25450, 'Frederick', 1921, 'M', 3375), +(25451, 'Clifford', 1921, 'M', 3262), +(25452, 'Floyd', 1921, 'M', 3254), +(25453, 'Herman', 1921, 'M', 3219), +(25454, 'Theodore', 1921, 'M', 3171), +(25455, 'Lester', 1921, 'M', 3075), +(25456, 'Ray', 1921, 'M', 3075), +(25457, 'Vernon', 1921, 'M', 3070), +(25458, 'Clyde', 1921, 'M', 3022), +(25459, 'Vincent', 1921, 'M', 2779), +(25460, 'Lewis', 1921, 'M', 2712), +(25461, 'Philip', 1921, 'M', 2702), +(25462, 'Alvin', 1921, 'M', 2687), +(25463, 'Leon', 1921, 'M', 2617), +(25464, 'Milton', 1921, 'M', 2588), +(25465, 'Charlie', 1921, 'M', 2573), +(25466, 'Jesse', 1921, 'M', 2487), +(25467, 'Martin', 1921, 'M', 2460), +(25468, 'Cecil', 1921, 'M', 2456), +(25469, 'Glenn', 1921, 'M', 2450), +(25470, 'Wayne', 1921, 'M', 2418), +(25471, 'Benjamin', 1921, 'M', 2413), +(25472, 'Victor', 1921, 'M', 2408), +(25473, 'Gordon', 1921, 'M', 2384), +(25474, 'Sam', 1921, 'M', 2365), +(25475, 'Lee', 1921, 'M', 2354), +(25476, 'Harvey', 1921, 'M', 2285), +(25477, 'Wallace', 1921, 'M', 2096), +(25478, 'Willard', 1921, 'M', 2077), +(25479, 'Edgar', 1921, 'M', 2014), +(25480, 'Arnold', 1921, 'M', 1983), +(25481, 'Oscar', 1921, 'M', 1977), +(25482, 'Dale', 1921, 'M', 1956), +(25483, 'Allen', 1921, 'M', 1938), +(25484, 'Everett', 1921, 'M', 1913), +(25485, 'Claude', 1921, 'M', 1888), +(25486, 'Stephen', 1921, 'M', 1868), +(25487, 'Virgil', 1921, 'M', 1830), +(25488, 'Roger', 1921, 'M', 1802), +(25489, 'Wilbur', 1921, 'M', 1755), +(25490, 'Maurice', 1921, 'M', 1743), +(25491, 'Marion', 1921, 'M', 1717), +(25492, 'Gilbert', 1921, 'M', 1704), +(25493, 'Morris', 1921, 'M', 1667), +(25494, 'Homer', 1921, 'M', 1657), +(25495, 'Leslie', 1921, 'M', 1647), +(25496, 'Roland', 1921, 'M', 1629), +(25497, 'Johnnie', 1921, 'M', 1625), +(25498, 'Billy', 1921, 'M', 1622), +(25499, 'Sidney', 1921, 'M', 1585), +(25500, 'Douglas', 1921, 'M', 1566), +(25501, 'Max', 1921, 'M', 1557), +(25502, 'Nicholas', 1921, 'M', 1556), +(25503, 'Manuel', 1921, 'M', 1555), +(25504, 'Hubert', 1921, 'M', 1548), +(25505, 'Alexander', 1921, 'M', 1531), +(25506, 'Jessie', 1921, 'M', 1517), +(25507, 'Eddie', 1921, 'M', 1511), +(25508, 'Glen', 1921, 'M', 1505), +(25509, 'Hugh', 1921, 'M', 1484), +(25510, 'Bill', 1921, 'M', 1483), +(25511, 'Curtis', 1921, 'M', 1478), +(25512, 'Luther', 1921, 'M', 1453), +(25513, 'Irving', 1921, 'M', 1415), +(25514, 'Jerome', 1921, 'M', 1408), +(25515, 'Franklin', 1921, 'M', 1350), +(25516, 'Wesley', 1921, 'M', 1331), +(25517, 'Julius', 1921, 'M', 1326), +(25518, 'Horace', 1921, 'M', 1314), +(25519, 'Steve', 1921, 'M', 1291), +(25520, 'Calvin', 1921, 'M', 1275), +(25521, 'Willis', 1921, 'M', 1210), +(25522, 'Jose', 1921, 'M', 1208), +(25523, 'Tony', 1921, 'M', 1197), +(25524, 'Oliver', 1921, 'M', 1192), +(25525, 'Don', 1921, 'M', 1172), +(25526, 'Orville', 1921, 'M', 1149), +(25527, 'Earnest', 1921, 'M', 1128), +(25528, 'Ben', 1921, 'M', 1124), +(25529, 'Guy', 1921, 'M', 1121), +(25530, 'Jerry', 1921, 'M', 1113), +(25531, 'Edmund', 1921, 'M', 1104), +(25532, 'Jacob', 1921, 'M', 1094), +(25533, 'Tom', 1921, 'M', 1093), +(25534, 'Mike', 1921, 'M', 1080), +(25535, 'Bruce', 1921, 'M', 1072), +(25536, 'Jimmie', 1921, 'M', 1051), +(25537, 'Angelo', 1921, 'M', 1044), +(25538, 'Alex', 1921, 'M', 1022), +(25539, 'Lyle', 1921, 'M', 1007), +(25540, 'Otis', 1921, 'M', 1001), +(25541, 'Patrick', 1921, 'M', 1001), +(25542, 'Keith', 1921, 'M', 998), +(25543, 'Ronald', 1921, 'M', 993), +(25544, 'Archie', 1921, 'M', 980), +(25545, 'Delbert', 1921, 'M', 972), +(25546, 'Rudolph', 1921, 'M', 960), +(25547, 'Clayton', 1921, 'M', 952), +(25548, 'Salvatore', 1921, 'M', 948), +(25549, 'Clifton', 1921, 'M', 932), +(25550, 'Matthew', 1921, 'M', 915), +(25551, 'Phillip', 1921, 'M', 915), +(25552, 'Wilbert', 1921, 'M', 899), +(25553, 'Marshall', 1921, 'M', 897), +(25554, 'Jim', 1921, 'M', 879), +(25555, 'Ira', 1921, 'M', 878), +(25556, 'Junior', 1921, 'M', 877), +(25557, 'Dean', 1921, 'M', 876), +(25558, 'Clinton', 1921, 'M', 873), +(25559, 'Gene', 1921, 'M', 873), +(25560, 'Leland', 1921, 'M', 866), +(25561, 'Ervin', 1921, 'M', 859), +(25562, 'Merle', 1921, 'M', 834), +(25563, 'Jay', 1921, 'M', 828), +(25564, 'Johnny', 1921, 'M', 824), +(25565, 'Ivan', 1921, 'M', 820), +(25566, 'Emil', 1921, 'M', 819), +(25567, 'Bob', 1921, 'M', 798), +(25568, 'Irvin', 1921, 'M', 789), +(25569, 'Forrest', 1921, 'M', 781), +(25570, 'Bennie', 1921, 'M', 775), +(25571, 'Julian', 1921, 'M', 765), +(25572, 'Nick', 1921, 'M', 765), +(25573, 'Dewey', 1921, 'M', 762), +(25574, 'Sylvester', 1921, 'M', 755), +(25575, 'Nathan', 1921, 'M', 751), +(25576, 'Nathaniel', 1921, 'M', 749), +(25577, 'Antonio', 1921, 'M', 745), +(25578, 'Wilfred', 1921, 'M', 737), +(25579, 'Dennis', 1921, 'M', 726), +(25580, 'Rufus', 1921, 'M', 721), +(25581, 'Dan', 1921, 'M', 717), +(25582, 'Elbert', 1921, 'M', 714), +(25583, 'Nelson', 1921, 'M', 704), +(25584, 'Owen', 1921, 'M', 704), +(25585, 'Seymour', 1921, 'M', 701), +(25586, 'Aaron', 1921, 'M', 697), +(25587, 'Grover', 1921, 'M', 690), +(25588, 'Lowell', 1921, 'M', 690), +(25589, 'Alton', 1921, 'M', 689), +(25590, 'Woodrow', 1921, 'M', 684), +(25591, 'Abraham', 1921, 'M', 683), +(25592, 'Ellis', 1921, 'M', 682), +(25593, 'Carroll', 1921, 'M', 669), +(25594, 'Pete', 1921, 'M', 667), +(25595, 'Felix', 1921, 'M', 666), +(25596, 'Bert', 1921, 'M', 661), +(25597, 'Isaac', 1921, 'M', 647), +(25598, 'Lonnie', 1921, 'M', 643), +(25599, 'Otto', 1921, 'M', 640), +(25600, 'Johnie', 1921, 'M', 626), +(25601, 'Mark', 1921, 'M', 626), +(25602, 'Grady', 1921, 'M', 619), +(25603, 'Ted', 1921, 'M', 615), +(25604, 'Elwood', 1921, 'M', 613), +(25605, 'August', 1921, 'M', 611), +(25606, 'Myron', 1921, 'M', 611), +(25607, 'Emmett', 1921, 'M', 608), +(25608, 'Murray', 1921, 'M', 604), +(25609, 'Percy', 1921, 'M', 603), +(25610, 'Wilson', 1921, 'M', 601), +(25611, 'Loyd', 1921, 'M', 600), +(25612, 'Malcolm', 1921, 'M', 599), +(25613, 'Laurence', 1921, 'M', 598), +(25614, 'Eldon', 1921, 'M', 596), +(25615, 'Rex', 1921, 'M', 591), +(25616, 'Wendell', 1921, 'M', 587), +(25617, 'Adam', 1921, 'M', 583), +(25618, 'Fredrick', 1921, 'M', 581), +(25619, 'Allan', 1921, 'M', 577), +(25620, 'Norbert', 1921, 'M', 577), +(25621, 'Dominick', 1921, 'M', 575), +(25622, 'Karl', 1921, 'M', 573), +(25623, 'Juan', 1921, 'M', 572), +(25624, 'Perry', 1921, 'M', 565), +(25625, 'Byron', 1921, 'M', 558), +(25626, 'Dominic', 1921, 'M', 552), +(25627, 'Roscoe', 1921, 'M', 549), +(25628, 'Billie', 1921, 'M', 547), +(25629, 'Amos', 1921, 'M', 546), +(25630, 'Duane', 1921, 'M', 546), +(25631, 'Harley', 1921, 'M', 536), +(25632, 'Troy', 1921, 'M', 532), +(25633, 'Gerard', 1921, 'M', 531), +(25634, 'Mack', 1921, 'M', 529), +(25635, 'Adolph', 1921, 'M', 525), +(25636, 'Jesus', 1921, 'M', 517), +(25637, 'Ross', 1921, 'M', 515), +(25638, 'Burton', 1921, 'M', 503), +(25639, 'Mario', 1921, 'M', 502), +(25640, 'Freddie', 1921, 'M', 497), +(25641, 'Neil', 1921, 'M', 497), +(25642, 'Erwin', 1921, 'M', 495), +(25643, 'Dwight', 1921, 'M', 494), +(25644, 'Larry', 1921, 'M', 491), +(25645, 'Loren', 1921, 'M', 491), +(25646, 'Sherman', 1921, 'M', 487), +(25647, 'Carlton', 1921, 'M', 480), +(25648, 'Aubrey', 1921, 'M', 479), +(25649, 'Doyle', 1921, 'M', 464), +(25650, 'Millard', 1921, 'M', 462), +(25651, 'Morton', 1921, 'M', 462), +(25652, 'Charley', 1921, 'M', 456), +(25653, 'Garland', 1921, 'M', 455), +(25654, 'Cornelius', 1921, 'M', 449), +(25655, 'Preston', 1921, 'M', 448), +(25656, 'Boyd', 1921, 'M', 438), +(25657, 'Austin', 1921, 'M', 437), +(25658, 'Steven', 1921, 'M', 430), +(25659, 'Louie', 1921, 'M', 427), +(25660, 'Mitchell', 1921, 'M', 425), +(25661, 'Wilmer', 1921, 'M', 425), +(25662, 'Harlan', 1921, 'M', 415), +(25663, 'Grant', 1921, 'M', 411), +(25664, 'Tommie', 1921, 'M', 409), +(25665, 'Laverne', 1921, 'M', 405), +(25666, 'Tommy', 1921, 'M', 400), +(25667, 'Reuben', 1921, 'M', 399), +(25668, 'Edmond', 1921, 'M', 398), +(25669, 'Maynard', 1921, 'M', 396), +(25670, 'Joel', 1921, 'M', 395), +(25671, 'Simon', 1921, 'M', 394), +(25672, 'Carlos', 1921, 'M', 393), +(25673, 'Jasper', 1921, 'M', 390), +(25674, 'Elton', 1921, 'M', 385), +(25675, 'Russel', 1921, 'M', 384), +(25676, 'Wade', 1921, 'M', 382), +(25677, 'Moses', 1921, 'M', 378), +(25678, 'Alan', 1921, 'M', 375), +(25679, 'Monroe', 1921, 'M', 375), +(25680, 'Dallas', 1921, 'M', 372), +(25681, 'Will', 1921, 'M', 372), +(25682, 'Darrell', 1921, 'M', 370), +(25683, 'Elmo', 1921, 'M', 370), +(25684, 'Lynn', 1921, 'M', 366), +(25685, 'Roosevelt', 1921, 'M', 365), +(25686, 'Jimmy', 1921, 'M', 361), +(25687, 'Rodney', 1921, 'M', 361), +(25688, 'Francisco', 1921, 'M', 360), +(25689, 'Jake', 1921, 'M', 359), +(25690, 'Clark', 1921, 'M', 357), +(25691, 'Ruben', 1921, 'M', 357), +(25692, 'Solomon', 1921, 'M', 356), +(25693, 'Emanuel', 1921, 'M', 353), +(25694, 'Marcus', 1921, 'M', 353), +(25695, 'Ramon', 1921, 'M', 353), +(25696, 'Stuart', 1921, 'M', 351), +(25697, 'Rocco', 1921, 'M', 350), +(25698, 'Dick', 1921, 'M', 349), +(25699, 'Harrison', 1921, 'M', 349), +(25700, 'Thurman', 1921, 'M', 348), +(25701, 'Elvin', 1921, 'M', 346), +(25702, 'Cleo', 1921, 'M', 345), +(25703, 'Neal', 1921, 'M', 344), +(25704, 'Merlin', 1921, 'M', 343), +(25705, 'Cleveland', 1921, 'M', 339), +(25706, 'Jess', 1921, 'M', 338), +(25707, 'Buford', 1921, 'M', 334), +(25708, 'Lionel', 1921, 'M', 333), +(25709, 'Earle', 1921, 'M', 331), +(25710, 'Delmar', 1921, 'M', 330), +(25711, 'Cyril', 1921, 'M', 328), +(25712, 'Irwin', 1921, 'M', 328), +(25713, 'Gus', 1921, 'M', 327), +(25714, 'Pedro', 1921, 'M', 326), +(25715, 'Odell', 1921, 'M', 324), +(25716, 'Patsy', 1921, 'M', 324), +(25717, 'Kermit', 1921, 'M', 323), +(25718, 'Alfonso', 1921, 'M', 321), +(25719, 'Clair', 1921, 'M', 321), +(25720, 'Conrad', 1921, 'M', 320), +(25721, 'Dave', 1921, 'M', 320), +(25722, 'Benny', 1921, 'M', 316), +(25723, 'Carmen', 1921, 'M', 316), +(25724, 'Alonzo', 1921, 'M', 315), +(25725, 'Andy', 1921, 'M', 314), +(25726, 'Bruno', 1921, 'M', 311), +(25727, 'Vito', 1921, 'M', 304), +(25728, 'Wilburn', 1921, 'M', 304), +(25729, 'Wiley', 1921, 'M', 304), +(25730, 'Clement', 1921, 'M', 300), +(25731, 'Armand', 1921, 'M', 297), +(25732, 'Hollis', 1921, 'M', 294), +(25733, 'Stewart', 1921, 'M', 293), +(25734, 'Emery', 1921, 'M', 292), +(25735, 'Eli', 1921, 'M', 291), +(25736, 'Jean', 1921, 'M', 291), +(25737, 'Ollie', 1921, 'M', 291), +(25738, 'Norris', 1921, 'M', 290), +(25739, 'Alva', 1921, 'M', 289), +(25740, 'Barney', 1921, 'M', 289), +(25741, 'Christopher', 1921, 'M', 289), +(25742, 'Claud', 1921, 'M', 289), +(25743, 'Winston', 1921, 'M', 289), +(25744, 'Ned', 1921, 'M', 288), +(25745, 'Ed', 1921, 'M', 287), +(25746, 'Adrian', 1921, 'M', 283), +(25747, 'Merrill', 1921, 'M', 283), +(25748, 'Thaddeus', 1921, 'M', 283), +(25749, 'Weldon', 1921, 'M', 280), +(25750, 'Herschel', 1921, 'M', 277), +(25751, 'Ellsworth', 1921, 'M', 276), +(25752, 'Teddy', 1921, 'M', 275), +(25753, 'Alphonse', 1921, 'M', 274), +(25754, 'Bobby', 1921, 'M', 274), +(25755, 'Ward', 1921, 'M', 273), +(25756, 'Reginald', 1921, 'M', 271), +(25757, 'Wilford', 1921, 'M', 271), +(25758, 'Levi', 1921, 'M', 270), +(25759, 'Randolph', 1921, 'M', 270), +(25760, 'Sammie', 1921, 'M', 270), +(25761, 'Sterling', 1921, 'M', 268), +(25762, 'Orval', 1921, 'M', 267), +(25763, 'Basil', 1921, 'M', 266), +(25764, 'Anton', 1921, 'M', 261), +(25765, 'Emory', 1921, 'M', 261), +(25766, 'Vern', 1921, 'M', 261), +(25767, 'Elijah', 1921, 'M', 257), +(25768, 'Roman', 1921, 'M', 257), +(25769, 'Lavern', 1921, 'M', 254), +(25770, 'Forest', 1921, 'M', 253), +(25771, 'Sanford', 1921, 'M', 250), +(25772, 'Timothy', 1921, 'M', 249), +(25773, 'Noah', 1921, 'M', 247), +(25774, 'Jackson', 1921, 'M', 246), +(25775, 'Travis', 1921, 'M', 246), +(25776, 'Harris', 1921, 'M', 245), +(25777, 'Sol', 1921, 'M', 245), +(25778, 'Van', 1921, 'M', 244), +(25779, 'Luis', 1921, 'M', 241), +(25780, 'Hyman', 1921, 'M', 240), +(25781, 'Pasquale', 1921, 'M', 238), +(25782, 'Truman', 1921, 'M', 238), +(25783, 'Armando', 1921, 'M', 237), +(25784, 'Emerson', 1921, 'M', 237), +(25785, 'Harding', 1921, 'M', 235), +(25786, 'Milford', 1921, 'M', 234), +(25787, 'Buster', 1921, 'M', 233), +(25788, 'Elliott', 1921, 'M', 233), +(25789, 'Miles', 1921, 'M', 232), +(25790, 'Quentin', 1921, 'M', 232), +(25791, 'Abe', 1921, 'M', 231), +(25792, 'Saul', 1921, 'M', 229), +(25793, 'Shirley', 1921, 'M', 227), +(25794, 'Silas', 1921, 'M', 224), +(25795, 'Pat', 1921, 'M', 223), +(25796, 'Sheldon', 1921, 'M', 223), +(25797, 'Winfred', 1921, 'M', 223), +(25798, 'Ferdinand', 1921, 'M', 222), +(25799, 'Gabriel', 1921, 'M', 219), +(25800, 'Salvador', 1921, 'M', 218), +(25801, 'Carmine', 1921, 'M', 216), +(25802, 'Mervin', 1921, 'M', 216), +(25803, 'Omer', 1921, 'M', 216), +(25804, 'Darwin', 1921, 'M', 214), +(25805, 'Hershel', 1921, 'M', 213), +(25806, 'Isadore', 1921, 'M', 212), +(25807, 'Burl', 1921, 'M', 211), +(25808, 'Marlin', 1921, 'M', 210), +(25809, 'Odis', 1921, 'M', 208), +(25810, 'Rolland', 1921, 'M', 206), +(25811, 'Coy', 1921, 'M', 205), +(25812, 'Gale', 1921, 'M', 205), +(25813, 'Freeman', 1921, 'M', 204), +(25814, 'Lorenzo', 1921, 'M', 204), +(25815, 'Scott', 1921, 'M', 204), +(25816, 'Frederic', 1921, 'M', 202), +(25817, 'Hugo', 1921, 'M', 202), +(25818, 'Everette', 1921, 'M', 201), +(25819, 'Lyman', 1921, 'M', 201), +(25820, 'Foster', 1921, 'M', 199), +(25821, 'Royce', 1921, 'M', 199), +(25822, 'Ulysses', 1921, 'M', 199), +(25823, 'Aloysius', 1921, 'M', 198), +(25824, 'Milo', 1921, 'M', 197), +(25825, 'Olin', 1921, 'M', 197), +(25826, 'Raul', 1921, 'M', 196), +(25827, 'Bertram', 1921, 'M', 195), +(25828, 'Delmer', 1921, 'M', 195), +(25829, 'Spencer', 1921, 'M', 195), +(25830, 'Ambrose', 1921, 'M', 194), +(25831, 'Alden', 1921, 'M', 193), +(25832, 'Denver', 1921, 'M', 192), +(25833, 'Mathew', 1921, 'M', 192), +(25834, 'Orlando', 1921, 'M', 192), +(25835, 'Nolan', 1921, 'M', 191), +(25836, 'Royal', 1921, 'M', 191), +(25837, 'Bud', 1921, 'M', 190), +(25838, 'Casimir', 1921, 'M', 188), +(25839, 'Hiram', 1921, 'M', 188), +(25840, 'Mary', 1921, 'M', 187), +(25841, 'Dudley', 1921, 'M', 185), +(25842, 'Gregory', 1921, 'M', 185), +(25843, 'Morgan', 1921, 'M', 184), +(25844, 'Wilton', 1921, 'M', 184), +(25845, 'Lenard', 1921, 'M', 183), +(25846, 'Noel', 1921, 'M', 181), +(25847, 'Booker', 1921, 'M', 179), +(25848, 'Eric', 1921, 'M', 179), +(25849, 'Lamar', 1921, 'M', 179), +(25850, 'Linwood', 1921, 'M', 179), +(25851, 'Gail', 1921, 'M', 177), +(25852, 'Hal', 1921, 'M', 177), +(25853, 'Guadalupe', 1921, 'M', 175), +(25854, 'Randall', 1921, 'M', 175), +(25855, 'Cletus', 1921, 'M', 174), +(25856, 'Olen', 1921, 'M', 174), +(25857, 'Augustus', 1921, 'M', 171), +(25858, 'Arlie', 1921, 'M', 170), +(25859, 'Houston', 1921, 'M', 170), +(25860, 'Harmon', 1921, 'M', 169), +(25861, 'Newton', 1921, 'M', 169), +(25862, 'Sydney', 1921, 'M', 169), +(25863, 'Warner', 1921, 'M', 167), +(25864, 'Emile', 1921, 'M', 165), +(25865, 'Fletcher', 1921, 'M', 165), +(25866, 'Hobert', 1921, 'M', 165), +(25867, 'Luke', 1921, 'M', 165), +(25868, 'Micheal', 1921, 'M', 165), +(25869, 'Ezra', 1921, 'M', 164), +(25870, 'Jeff', 1921, 'M', 164), +(25871, 'Vance', 1921, 'M', 164), +(25872, 'Verne', 1921, 'M', 163), +(25873, 'Jefferson', 1921, 'M', 162), +(25874, 'Major', 1921, 'M', 162), +(25875, 'Rene', 1921, 'M', 162), +(25876, 'Dewitt', 1921, 'M', 161), +(25877, 'Noble', 1921, 'M', 161), +(25878, 'Riley', 1921, 'M', 161), +(25879, 'Clay', 1921, 'M', 160), +(25880, 'Palmer', 1921, 'M', 160), +(25881, 'Blaine', 1921, 'M', 159), +(25882, 'Alfredo', 1921, 'M', 158), +(25883, 'Evan', 1921, 'M', 157), +(25884, 'Phil', 1921, 'M', 157), +(25885, 'Roberto', 1921, 'M', 157), +(25886, 'Augustine', 1921, 'M', 156), +(25887, 'Hoyt', 1921, 'M', 153), +(25888, 'Waldo', 1921, 'M', 153), +(25889, 'Elroy', 1921, 'M', 152), +(25890, 'Harland', 1921, 'M', 152), +(25891, 'Columbus', 1921, 'M', 151), +(25892, 'Hardy', 1921, 'M', 151), +(25893, 'Theron', 1921, 'M', 151), +(25894, 'Elias', 1921, 'M', 150), +(25895, 'Meyer', 1921, 'M', 150), +(25896, 'Mose', 1921, 'M', 150), +(25897, 'Alberto', 1921, 'M', 148), +(25898, 'Trinidad', 1921, 'M', 148), +(25899, 'Chris', 1921, 'M', 147), +(25900, 'Dalton', 1921, 'M', 147), +(25901, 'Lemuel', 1921, 'M', 147), +(25902, 'Coleman', 1921, 'M', 146), +(25903, 'Wilber', 1921, 'M', 146), +(25904, 'Darrel', 1921, 'M', 144), +(25905, 'Elwin', 1921, 'M', 144), +(25906, 'Mason', 1921, 'M', 144), +(25907, 'Oren', 1921, 'M', 144), +(25908, 'Carrol', 1921, 'M', 143), +(25909, 'Domenic', 1921, 'M', 143), +(25910, 'Davis', 1921, 'M', 142), +(25911, 'Israel', 1921, 'M', 142), +(25912, 'Ora', 1921, 'M', 142), +(25913, 'Reed', 1921, 'M', 142), +(25914, 'Domingo', 1921, 'M', 141), +(25915, 'Lucien', 1921, 'M', 141), +(25916, 'Guido', 1921, 'M', 140), +(25917, 'Merton', 1921, 'M', 139), +(25918, 'Rafael', 1921, 'M', 139), +(25919, 'Rupert', 1921, 'M', 139), +(25920, 'Raleigh', 1921, 'M', 138), +(25921, 'Albin', 1921, 'M', 137), +(25922, 'Justin', 1921, 'M', 137), +(25923, 'Hobart', 1921, 'M', 136), +(25924, 'Otha', 1921, 'M', 136), +(25925, 'Shelby', 1921, 'M', 136), +(25926, 'Benedict', 1921, 'M', 135), +(25927, 'Bobbie', 1921, 'M', 135), +(25928, 'Jewel', 1921, 'M', 135), +(25929, 'Lucius', 1921, 'M', 134), +(25930, 'Kelly', 1921, 'M', 133), +(25931, 'Vaughn', 1921, 'M', 133), +(25932, 'Antone', 1921, 'M', 132), +(25933, 'Christian', 1921, 'M', 132), +(25934, 'Pablo', 1921, 'M', 131), +(25935, 'Fernando', 1921, 'M', 130), +(25936, 'Hector', 1921, 'M', 130), +(25937, 'Isidore', 1921, 'M', 130), +(25938, 'Sebastian', 1921, 'M', 130), +(25939, 'Anderson', 1921, 'M', 129), +(25940, 'Graham', 1921, 'M', 129), +(25941, 'Jeremiah', 1921, 'M', 129), +(25942, 'Miguel', 1921, 'M', 129), +(25943, 'Alphonso', 1921, 'M', 128), +(25944, 'Bryce', 1921, 'M', 128), +(25945, 'Cyrus', 1921, 'M', 128), +(25946, 'Fay', 1921, 'M', 128), +(25947, 'Walker', 1921, 'M', 128), +(25948, 'Walton', 1921, 'M', 128), +(25949, 'Junius', 1921, 'M', 127), +(25950, 'Aldo', 1921, 'M', 126), +(25951, 'Dante', 1921, 'M', 125), +(25952, 'Florian', 1921, 'M', 125), +(25953, 'Joshua', 1921, 'M', 125), +(25954, 'Nickolas', 1921, 'M', 125), +(25955, 'Raymon', 1921, 'M', 125), +(25956, 'Terry', 1921, 'M', 125), +(25957, 'Carol', 1921, 'M', 124), +(25958, 'Gustave', 1921, 'M', 124), +(25959, 'Avery', 1921, 'M', 123), +(25960, 'Elden', 1921, 'M', 123), +(25961, 'Eldred', 1921, 'M', 122), +(25962, 'Jonathan', 1921, 'M', 122), +(25963, 'Judson', 1921, 'M', 121), +(25964, 'Tomas', 1921, 'M', 121), +(25965, 'Carlo', 1921, 'M', 120), +(25966, 'Dee', 1921, 'M', 120), +(25967, 'Dock', 1921, 'M', 120), +(25968, 'Lincoln', 1921, 'M', 120), +(25969, 'Al', 1921, 'M', 119), +(25970, 'Bernice', 1921, 'M', 119), +(25971, 'Porter', 1921, 'M', 119), +(25972, 'Granville', 1921, 'M', 118), +(25973, 'Isiah', 1921, 'M', 118), +(25974, 'Julio', 1921, 'M', 118), +(25975, 'Edd', 1921, 'M', 117), +(25976, 'Napoleon', 1921, 'M', 117), +(25977, 'Rogers', 1921, 'M', 117), +(25978, 'Jewell', 1921, 'M', 116), +(25979, 'Jules', 1921, 'M', 116), +(25980, 'Lacy', 1921, 'M', 116), +(25981, 'Joesph', 1921, 'M', 115), +(25982, 'Merritt', 1921, 'M', 115), +(25983, 'Ottis', 1921, 'M', 115), +(25984, 'Sammy', 1921, 'M', 115), +(25985, 'Emilio', 1921, 'M', 114), +(25986, 'Gaylord', 1921, 'M', 113), +(25987, 'Haywood', 1921, 'M', 113), +(25988, 'Buddy', 1921, 'M', 112), +(25989, 'Arden', 1921, 'M', 111), +(25990, 'Enoch', 1921, 'M', 111), +(25991, 'Rosario', 1921, 'M', 111), +(25992, 'Talmadge', 1921, 'M', 111), +(25993, 'Arther', 1921, 'M', 110), +(25994, 'Maxwell', 1921, 'M', 109), +(25995, 'Rudy', 1921, 'M', 109), +(25996, 'Seth', 1921, 'M', 109), +(25997, 'Taylor', 1921, 'M', 109), +(25998, 'Dempsey', 1921, 'M', 108), +(25999, 'Dana', 1921, 'M', 107), +(26000, 'Durward', 1921, 'M', 107), +(26001, 'Isaiah', 1921, 'M', 107), +(26002, 'Romeo', 1921, 'M', 107), +(26003, 'Theo', 1921, 'M', 107), +(26004, 'Alvie', 1921, 'M', 106), +(26005, 'Frances', 1921, 'M', 106), +(26006, 'Hilton', 1921, 'M', 106), +(26007, 'Roderick', 1921, 'M', 106), +(26008, 'Rubin', 1921, 'M', 106), +(26009, 'Winfield', 1921, 'M', 106), +(26010, 'Ernesto', 1921, 'M', 105), +(26011, 'Mckinley', 1921, 'M', 105), +(26012, 'Americo', 1921, 'M', 104), +(26013, 'Matt', 1921, 'M', 104), +(26014, 'Asa', 1921, 'M', 103), +(26015, 'Bryan', 1921, 'M', 103), +(26016, 'Quinton', 1921, 'M', 103), +(26017, 'Santo', 1921, 'M', 103), +(26018, 'Valentine', 1921, 'M', 103), +(26019, 'Beverly', 1921, 'M', 102), +(26020, 'Bryant', 1921, 'M', 102), +(26021, 'Casimer', 1921, 'M', 102), +(26022, 'Danny', 1921, 'M', 102), +(26023, 'Eldridge', 1921, 'M', 102), +(26024, 'Felipe', 1921, 'M', 102), +(26025, 'Garfield', 1921, 'M', 102), +(26026, 'Marcel', 1921, 'M', 101), +(26027, 'Meredith', 1921, 'M', 101), +(26028, 'Otho', 1921, 'M', 101), +(26029, 'Raphael', 1921, 'M', 101), +(26030, 'Rollin', 1921, 'M', 101), +(26031, 'Dorsey', 1921, 'M', 100), +(26032, 'Elzie', 1921, 'M', 100), +(26033, 'Felton', 1921, 'M', 100), +(26034, 'Hermon', 1921, 'M', 100), +(26035, 'Orin', 1921, 'M', 100), +(26036, 'Mary', 1922, 'F', 72171), +(26037, 'Dorothy', 1922, 'F', 37710), +(26038, 'Helen', 1922, 'F', 32506), +(26039, 'Margaret', 1922, 'F', 26864), +(26040, 'Ruth', 1922, 'F', 23630), +(26041, 'Betty', 1922, 'F', 20894), +(26042, 'Virginia', 1922, 'F', 19145), +(26043, 'Mildred', 1922, 'F', 16413), +(26044, 'Elizabeth', 1922, 'F', 15241), +(26045, 'Frances', 1922, 'F', 15056), +(26046, 'Doris', 1922, 'F', 13795), +(26047, 'Anna', 1922, 'F', 13407), +(26048, 'Evelyn', 1922, 'F', 13318), +(26049, 'Marie', 1922, 'F', 11912), +(26050, 'Alice', 1922, 'F', 11274), +(26051, 'Marjorie', 1922, 'F', 10387), +(26052, 'Irene', 1922, 'F', 10172), +(26053, 'Florence', 1922, 'F', 10036), +(26054, 'Lillian', 1922, 'F', 9427), +(26055, 'Jean', 1922, 'F', 9108), +(26056, 'Martha', 1922, 'F', 9019), +(26057, 'Louise', 1922, 'F', 8887), +(26058, 'Rose', 1922, 'F', 8792), +(26059, 'Catherine', 1922, 'F', 8535), +(26060, 'Gladys', 1922, 'F', 8041), +(26061, 'Ruby', 1922, 'F', 8004), +(26062, 'Josephine', 1922, 'F', 7866), +(26063, 'Eleanor', 1922, 'F', 7853), +(26064, 'Edna', 1922, 'F', 7620), +(26065, 'Annie', 1922, 'F', 7475), +(26066, 'Thelma', 1922, 'F', 7253), +(26067, 'Ethel', 1922, 'F', 7244), +(26068, 'Lucille', 1922, 'F', 7150), +(26069, 'Edith', 1922, 'F', 7135), +(26070, 'Lois', 1922, 'F', 6946), +(26071, 'Pauline', 1922, 'F', 6811), +(26072, 'Hazel', 1922, 'F', 6758), +(26073, 'Grace', 1922, 'F', 6742), +(26074, 'Shirley', 1922, 'F', 6407), +(26075, 'Barbara', 1922, 'F', 6272), +(26076, 'Bernice', 1922, 'F', 5910), +(26077, 'Marion', 1922, 'F', 5670), +(26078, 'Beatrice', 1922, 'F', 5478), +(26079, 'Esther', 1922, 'F', 5475), +(26080, 'June', 1922, 'F', 5383), +(26081, 'Norma', 1922, 'F', 5236), +(26082, 'Clara', 1922, 'F', 5124), +(26083, 'Gertrude', 1922, 'F', 5082), +(26084, 'Ann', 1922, 'F', 5053), +(26085, 'Emma', 1922, 'F', 5013), +(26086, 'Sarah', 1922, 'F', 4982), +(26087, 'Rita', 1922, 'F', 4977), +(26088, 'Phyllis', 1922, 'F', 4933), +(26089, 'Katherine', 1922, 'F', 4826), +(26090, 'Jane', 1922, 'F', 4803), +(26091, 'Lorraine', 1922, 'F', 4669), +(26092, 'Geraldine', 1922, 'F', 4641), +(26093, 'Juanita', 1922, 'F', 4641), +(26094, 'Elsie', 1922, 'F', 4617), +(26095, 'Julia', 1922, 'F', 4615), +(26096, 'Gloria', 1922, 'F', 4497), +(26097, 'Agnes', 1922, 'F', 4479), +(26098, 'Bertha', 1922, 'F', 4418), +(26099, 'Eva', 1922, 'F', 4192), +(26100, 'Ida', 1922, 'F', 3985), +(26101, 'Anne', 1922, 'F', 3972), +(26102, 'Marian', 1922, 'F', 3951), +(26103, 'Laura', 1922, 'F', 3904), +(26104, 'Patricia', 1922, 'F', 3902), +(26105, 'Willie', 1922, 'F', 3884), +(26106, 'Pearl', 1922, 'F', 3847), +(26107, 'Viola', 1922, 'F', 3796), +(26108, 'Kathryn', 1922, 'F', 3792); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(26109, 'Vivian', 1922, 'F', 3731), +(26110, 'Myrtle', 1922, 'F', 3649), +(26111, 'Charlotte', 1922, 'F', 3583), +(26112, 'Wilma', 1922, 'F', 3537), +(26113, 'Nancy', 1922, 'F', 3516), +(26114, 'Vera', 1922, 'F', 3510), +(26115, 'Kathleen', 1922, 'F', 3465), +(26116, 'Bessie', 1922, 'F', 3446), +(26117, 'Maxine', 1922, 'F', 3444), +(26118, 'Nellie', 1922, 'F', 3275), +(26119, 'Alma', 1922, 'F', 3233), +(26120, 'Lillie', 1922, 'F', 3200), +(26121, 'Violet', 1922, 'F', 3194), +(26122, 'Jessie', 1922, 'F', 3181), +(26123, 'Stella', 1922, 'F', 3164), +(26124, 'Audrey', 1922, 'F', 3162), +(26125, 'Ella', 1922, 'F', 3150), +(26126, 'Minnie', 1922, 'F', 3117), +(26127, 'Wanda', 1922, 'F', 2984), +(26128, 'Lucy', 1922, 'F', 2977), +(26129, 'Sylvia', 1922, 'F', 2960), +(26130, 'Ellen', 1922, 'F', 2953), +(26131, 'Eileen', 1922, 'F', 2938), +(26132, 'Jeanne', 1922, 'F', 2917), +(26133, 'Genevieve', 1922, 'F', 2897), +(26134, 'Mabel', 1922, 'F', 2893), +(26135, 'Margie', 1922, 'F', 2855), +(26136, 'Leona', 1922, 'F', 2825), +(26137, 'Elaine', 1922, 'F', 2793), +(26138, 'Mattie', 1922, 'F', 2749), +(26139, 'Dolores', 1922, 'F', 2715), +(26140, 'Jennie', 1922, 'F', 2670), +(26141, 'Marguerite', 1922, 'F', 2657), +(26142, 'Lena', 1922, 'F', 2624), +(26143, 'Opal', 1922, 'F', 2562), +(26144, 'Theresa', 1922, 'F', 2542), +(26145, 'Geneva', 1922, 'F', 2442), +(26146, 'Mae', 1922, 'F', 2403), +(26147, 'Muriel', 1922, 'F', 2392), +(26148, 'Velma', 1922, 'F', 2366), +(26149, 'Georgia', 1922, 'F', 2364), +(26150, 'Blanche', 1922, 'F', 2322), +(26151, 'Christine', 1922, 'F', 2267), +(26152, 'Harriet', 1922, 'F', 2235), +(26153, 'Sara', 1922, 'F', 2220), +(26154, 'Eunice', 1922, 'F', 2179), +(26155, 'Rosemary', 1922, 'F', 2170), +(26156, 'Emily', 1922, 'F', 2147), +(26157, 'Carrie', 1922, 'F', 2120), +(26158, 'Rosa', 1922, 'F', 2106), +(26159, 'Beulah', 1922, 'F', 2096), +(26160, 'Loretta', 1922, 'F', 2095), +(26161, 'Joyce', 1922, 'F', 2015), +(26162, 'Joan', 1922, 'F', 2010), +(26163, 'Jeanette', 1922, 'F', 2005), +(26164, 'Janet', 1922, 'F', 2004), +(26165, 'Inez', 1922, 'F', 1991), +(26166, 'Hilda', 1922, 'F', 1961), +(26167, 'Maria', 1922, 'F', 1928), +(26168, 'Arlene', 1922, 'F', 1884), +(26169, 'Naomi', 1922, 'F', 1870), +(26170, 'Fannie', 1922, 'F', 1866), +(26171, 'Alberta', 1922, 'F', 1853), +(26172, 'Bonnie', 1922, 'F', 1824), +(26173, 'Dora', 1922, 'F', 1807), +(26174, 'Hattie', 1922, 'F', 1780), +(26175, 'Anita', 1922, 'F', 1762), +(26176, 'Cora', 1922, 'F', 1762), +(26177, 'Lula', 1922, 'F', 1756), +(26178, 'Madeline', 1922, 'F', 1731), +(26179, 'Carolyn', 1922, 'F', 1706), +(26180, 'Marilyn', 1922, 'F', 1697), +(26181, 'Verna', 1922, 'F', 1693), +(26182, 'Mamie', 1922, 'F', 1688), +(26183, 'Ada', 1922, 'F', 1683), +(26184, 'Constance', 1922, 'F', 1677), +(26185, 'Roberta', 1922, 'F', 1659), +(26186, 'Miriam', 1922, 'F', 1640), +(26187, 'Mable', 1922, 'F', 1619), +(26188, 'Sophie', 1922, 'F', 1581), +(26189, 'Rachel', 1922, 'F', 1541), +(26190, 'Marcella', 1922, 'F', 1537), +(26191, 'Olga', 1922, 'F', 1534), +(26192, 'Daisy', 1922, 'F', 1530), +(26193, 'Carol', 1922, 'F', 1522), +(26194, 'Flora', 1922, 'F', 1521), +(26195, 'Bette', 1922, 'F', 1482), +(26196, 'Lola', 1922, 'F', 1478), +(26197, 'Winifred', 1922, 'F', 1427), +(26198, 'Beverly', 1922, 'F', 1413), +(26199, 'Erma', 1922, 'F', 1411), +(26200, 'Rosie', 1922, 'F', 1385), +(26201, 'Donna', 1922, 'F', 1349), +(26202, 'Claire', 1922, 'F', 1339), +(26203, 'Estelle', 1922, 'F', 1331), +(26204, 'Olive', 1922, 'F', 1323), +(26205, 'Maggie', 1922, 'F', 1313), +(26206, 'Peggy', 1922, 'F', 1303), +(26207, 'Susie', 1922, 'F', 1302), +(26208, 'Rebecca', 1922, 'F', 1296), +(26209, 'Eula', 1922, 'F', 1284), +(26210, 'Antoinette', 1922, 'F', 1271), +(26211, 'Caroline', 1922, 'F', 1268), +(26212, 'Sadie', 1922, 'F', 1264), +(26213, 'Lorene', 1922, 'F', 1240), +(26214, 'Eloise', 1922, 'F', 1223), +(26215, 'Nora', 1922, 'F', 1218), +(26216, 'Laverne', 1922, 'F', 1214), +(26217, 'Fern', 1922, 'F', 1207), +(26218, 'Henrietta', 1922, 'F', 1168), +(26219, 'Irma', 1922, 'F', 1167), +(26220, 'Della', 1922, 'F', 1155), +(26221, 'Victoria', 1922, 'F', 1144), +(26222, 'Regina', 1922, 'F', 1136), +(26223, 'Nina', 1922, 'F', 1132), +(26224, 'Lucile', 1922, 'F', 1130), +(26225, 'Billie', 1922, 'F', 1103), +(26226, 'Rosalie', 1922, 'F', 1103), +(26227, 'Lottie', 1922, 'F', 1090), +(26228, 'Adeline', 1922, 'F', 1084), +(26229, 'Katie', 1922, 'F', 1051), +(26230, 'Amelia', 1922, 'F', 1033), +(26231, 'Jeannette', 1922, 'F', 1028), +(26232, 'Veronica', 1922, 'F', 1028), +(26233, 'Angelina', 1922, 'F', 1027), +(26234, 'Lydia', 1922, 'F', 1025), +(26235, 'Essie', 1922, 'F', 1022), +(26236, 'Jacqueline', 1922, 'F', 1021), +(26237, 'Cleo', 1922, 'F', 991), +(26238, 'Nettie', 1922, 'F', 989), +(26239, 'Sally', 1922, 'F', 972), +(26240, 'Ernestine', 1922, 'F', 949), +(26241, 'Angeline', 1922, 'F', 935), +(26242, 'Dorothea', 1922, 'F', 931), +(26243, 'Melba', 1922, 'F', 929), +(26244, 'Goldie', 1922, 'F', 926), +(26245, 'Faye', 1922, 'F', 924), +(26246, 'Freda', 1922, 'F', 924), +(26247, 'Lila', 1922, 'F', 919), +(26248, 'Imogene', 1922, 'F', 916), +(26249, 'Ollie', 1922, 'F', 914), +(26250, 'Delores', 1922, 'F', 912), +(26251, 'Adele', 1922, 'F', 901), +(26252, 'Johnnie', 1922, 'F', 900), +(26253, 'Isabel', 1922, 'F', 888), +(26254, 'Bettie', 1922, 'F', 868), +(26255, 'Lela', 1922, 'F', 865), +(26256, 'Ora', 1922, 'F', 865), +(26257, 'Luella', 1922, 'F', 861), +(26258, 'Addie', 1922, 'F', 856), +(26259, 'May', 1922, 'F', 855), +(26260, 'Annette', 1922, 'F', 851), +(26261, 'Jewell', 1922, 'F', 829), +(26262, 'Effie', 1922, 'F', 810), +(26263, 'Jewel', 1922, 'F', 810), +(26264, 'Susan', 1922, 'F', 795), +(26265, 'Isabelle', 1922, 'F', 794), +(26266, 'Carmen', 1922, 'F', 782), +(26267, 'Leola', 1922, 'F', 778), +(26268, 'Gwendolyn', 1922, 'F', 771), +(26269, 'Iva', 1922, 'F', 761), +(26270, 'Priscilla', 1922, 'F', 761), +(26271, 'Cecelia', 1922, 'F', 760), +(26272, 'Yvonne', 1922, 'F', 758), +(26273, 'Sallie', 1922, 'F', 757), +(26274, 'Janice', 1922, 'F', 745), +(26275, 'Cecilia', 1922, 'F', 734), +(26276, 'Reba', 1922, 'F', 728), +(26277, 'Eleanore', 1922, 'F', 724), +(26278, 'Etta', 1922, 'F', 719), +(26279, 'Teresa', 1922, 'F', 701), +(26280, 'Ola', 1922, 'F', 699), +(26281, 'Selma', 1922, 'F', 692), +(26282, 'Alta', 1922, 'F', 691), +(26283, 'Ina', 1922, 'F', 689), +(26284, 'Elva', 1922, 'F', 686), +(26285, 'Janie', 1922, 'F', 685), +(26286, 'Lizzie', 1922, 'F', 685), +(26287, 'Sue', 1922, 'F', 684), +(26288, 'Celia', 1922, 'F', 678), +(26289, 'Natalie', 1922, 'F', 678), +(26290, 'Iris', 1922, 'F', 654), +(26291, 'Lenora', 1922, 'F', 651), +(26292, 'Nell', 1922, 'F', 646), +(26293, 'Angela', 1922, 'F', 640), +(26294, 'Matilda', 1922, 'F', 626), +(26295, 'Nadine', 1922, 'F', 622), +(26296, 'Estella', 1922, 'F', 617), +(26297, 'Helene', 1922, 'F', 613), +(26298, 'Amy', 1922, 'F', 612), +(26299, 'Francis', 1922, 'F', 607), +(26300, 'Arline', 1922, 'F', 589), +(26301, 'Annabelle', 1922, 'F', 584), +(26302, 'Elnora', 1922, 'F', 584), +(26303, 'Elma', 1922, 'F', 579), +(26304, 'Nannie', 1922, 'F', 579), +(26305, 'Ila', 1922, 'F', 576), +(26306, 'Carmela', 1922, 'F', 574), +(26307, 'Elvira', 1922, 'F', 574), +(26308, 'Fay', 1922, 'F', 568), +(26309, 'Frieda', 1922, 'F', 566), +(26310, 'Virgie', 1922, 'F', 558), +(26311, 'Carmella', 1922, 'F', 553), +(26312, 'Elinor', 1922, 'F', 539), +(26313, 'Mavis', 1922, 'F', 538), +(26314, 'Connie', 1922, 'F', 536), +(26315, 'Olivia', 1922, 'F', 535), +(26316, 'Maude', 1922, 'F', 534), +(26317, 'Clarice', 1922, 'F', 533), +(26318, 'Gracie', 1922, 'F', 533), +(26319, 'Mollie', 1922, 'F', 532), +(26320, 'Bernadine', 1922, 'F', 527), +(26321, 'Harriett', 1922, 'F', 520), +(26322, 'Rena', 1922, 'F', 518), +(26323, 'Dorthy', 1922, 'F', 513), +(26324, 'Margery', 1922, 'F', 511), +(26325, 'Eugenia', 1922, 'F', 507), +(26326, 'Lee', 1922, 'F', 496), +(26327, 'Edythe', 1922, 'F', 487), +(26328, 'Leah', 1922, 'F', 485), +(26329, 'Flossie', 1922, 'F', 478), +(26330, 'Myra', 1922, 'F', 468), +(26331, 'Zelma', 1922, 'F', 467), +(26332, 'Rhoda', 1922, 'F', 464), +(26333, 'Sybil', 1922, 'F', 463), +(26334, 'Winnie', 1922, 'F', 461), +(26335, 'Millie', 1922, 'F', 458), +(26336, 'Concetta', 1922, 'F', 455), +(26337, 'Aileen', 1922, 'F', 454), +(26338, 'Neva', 1922, 'F', 454), +(26339, 'Cornelia', 1922, 'F', 453), +(26340, 'Frankie', 1922, 'F', 452), +(26341, 'Yolanda', 1922, 'F', 450), +(26342, 'Josie', 1922, 'F', 448), +(26343, 'Odessa', 1922, 'F', 448), +(26344, 'Joy', 1922, 'F', 447), +(26345, 'Rosetta', 1922, 'F', 445), +(26346, 'Lenore', 1922, 'F', 439), +(26347, 'Alyce', 1922, 'F', 430), +(26348, 'Marcia', 1922, 'F', 428), +(26349, 'Loraine', 1922, 'F', 425), +(26350, 'Darlene', 1922, 'F', 423), +(26351, 'Cecile', 1922, 'F', 422), +(26352, 'Lily', 1922, 'F', 418), +(26353, 'Dollie', 1922, 'F', 416), +(26354, 'Willa', 1922, 'F', 416), +(26355, 'Adelaide', 1922, 'F', 414), +(26356, 'Judith', 1922, 'F', 412), +(26357, 'Hannah', 1922, 'F', 411), +(26358, 'Rosella', 1922, 'F', 410), +(26359, 'Allie', 1922, 'F', 400), +(26360, 'Claudia', 1922, 'F', 400), +(26361, 'Jimmie', 1922, 'F', 399), +(26362, 'Letha', 1922, 'F', 398), +(26363, 'Berniece', 1922, 'F', 397), +(26364, 'Madge', 1922, 'F', 396), +(26365, 'Merle', 1922, 'F', 393), +(26366, 'Sophia', 1922, 'F', 391), +(26367, 'Avis', 1922, 'F', 385), +(26368, 'Eddie', 1922, 'F', 378), +(26369, 'Corinne', 1922, 'F', 372), +(26370, 'Christina', 1922, 'F', 371), +(26371, 'Hope', 1922, 'F', 371), +(26372, 'Wilda', 1922, 'F', 370), +(26373, 'Lorena', 1922, 'F', 366), +(26374, 'Linda', 1922, 'F', 365), +(26375, 'Deloris', 1922, 'F', 364), +(26376, 'Ophelia', 1922, 'F', 364), +(26377, 'Leila', 1922, 'F', 363), +(26378, 'Eliza', 1922, 'F', 361), +(26379, 'Florine', 1922, 'F', 361), +(26380, 'Helena', 1922, 'F', 358), +(26381, 'Guadalupe', 1922, 'F', 352), +(26382, 'Corine', 1922, 'F', 350), +(26383, 'Lou', 1922, 'F', 350), +(26384, 'Dolly', 1922, 'F', 349), +(26385, 'Earline', 1922, 'F', 347), +(26386, 'Aline', 1922, 'F', 345), +(26387, 'Lupe', 1922, 'F', 343), +(26388, 'Amanda', 1922, 'F', 341), +(26389, 'Lora', 1922, 'F', 341), +(26390, 'Hester', 1922, 'F', 340), +(26391, 'Callie', 1922, 'F', 339), +(26392, 'Ramona', 1922, 'F', 339), +(26393, 'Bernadette', 1922, 'F', 338), +(26394, 'Bobbie', 1922, 'F', 338), +(26395, 'Pearlie', 1922, 'F', 338), +(26396, 'Nola', 1922, 'F', 335), +(26397, 'Suzanne', 1922, 'F', 334), +(26398, 'Charlene', 1922, 'F', 332), +(26399, 'Iona', 1922, 'F', 331), +(26400, 'Glenna', 1922, 'F', 330), +(26401, 'Tillie', 1922, 'F', 327), +(26402, 'Polly', 1922, 'F', 324), +(26403, 'Maudie', 1922, 'F', 323), +(26404, 'Bertie', 1922, 'F', 320), +(26405, 'Gussie', 1922, 'F', 313), +(26406, 'Philomena', 1922, 'F', 308), +(26407, 'Dixie', 1922, 'F', 307), +(26408, 'Madelyn', 1922, 'F', 305), +(26409, 'Paula', 1922, 'F', 305), +(26410, 'Lilly', 1922, 'F', 304), +(26411, 'Jo', 1922, 'F', 302), +(26412, 'Reva', 1922, 'F', 301), +(26413, 'Iola', 1922, 'F', 297), +(26414, 'Lessie', 1922, 'F', 296), +(26415, 'Lelia', 1922, 'F', 295), +(26416, 'Ione', 1922, 'F', 291), +(26417, 'Katharine', 1922, 'F', 291), +(26418, 'Marjory', 1922, 'F', 290), +(26419, 'John', 1922, 'F', 286), +(26420, 'Tommie', 1922, 'F', 286), +(26421, 'Marietta', 1922, 'F', 285), +(26422, 'Beth', 1922, 'F', 284), +(26423, 'Cynthia', 1922, 'F', 283), +(26424, 'Marilynn', 1922, 'F', 283), +(26425, 'Aurora', 1922, 'F', 281), +(26426, 'Kay', 1922, 'F', 281), +(26427, 'Leota', 1922, 'F', 281), +(26428, 'Robbie', 1922, 'F', 281), +(26429, 'Antonia', 1922, 'F', 280), +(26430, 'Roxie', 1922, 'F', 278), +(26431, 'Lorine', 1922, 'F', 277), +(26432, 'Molly', 1922, 'F', 277), +(26433, 'Patsy', 1922, 'F', 277), +(26434, 'Althea', 1922, 'F', 274), +(26435, 'Mona', 1922, 'F', 274), +(26436, 'Johanna', 1922, 'F', 272), +(26437, 'Dessie', 1922, 'F', 269), +(26438, 'Diana', 1922, 'F', 267), +(26439, 'Consuelo', 1922, 'F', 266), +(26440, 'Harriette', 1922, 'F', 265), +(26441, 'Evangeline', 1922, 'F', 262), +(26442, 'Birdie', 1922, 'F', 261), +(26443, 'Winona', 1922, 'F', 261), +(26444, 'Georgie', 1922, 'F', 260), +(26445, 'Alene', 1922, 'F', 256), +(26446, 'Hallie', 1922, 'F', 256), +(26447, 'Maryann', 1922, 'F', 256), +(26448, 'Maurine', 1922, 'F', 256), +(26449, 'Nona', 1922, 'F', 255), +(26450, 'Zelda', 1922, 'F', 252), +(26451, 'Nelda', 1922, 'F', 251), +(26452, 'Tessie', 1922, 'F', 251), +(26453, 'Lorna', 1922, 'F', 250), +(26454, 'Ruthie', 1922, 'F', 250), +(26455, 'Dorris', 1922, 'F', 249), +(26456, 'Ester', 1922, 'F', 249), +(26457, 'Joanne', 1922, 'F', 248), +(26458, 'Delia', 1922, 'F', 247), +(26459, 'Margarita', 1922, 'F', 246), +(26460, 'Leora', 1922, 'F', 245), +(26461, 'Augusta', 1922, 'F', 243), +(26462, 'Bettye', 1922, 'F', 241), +(26463, 'Ilene', 1922, 'F', 241), +(26464, 'Isabella', 1922, 'F', 241), +(26465, 'Melva', 1922, 'F', 240), +(26466, 'Mercedes', 1922, 'F', 240), +(26467, 'James', 1922, 'F', 239), +(26468, 'Dortha', 1922, 'F', 238), +(26469, 'Marianne', 1922, 'F', 238), +(26470, 'Rosalind', 1922, 'F', 238), +(26471, 'Jannie', 1922, 'F', 237), +(26472, 'Madeleine', 1922, 'F', 237), +(26473, 'Robert', 1922, 'F', 237), +(26474, 'Allene', 1922, 'F', 236), +(26475, 'Jaunita', 1922, 'F', 236), +(26476, 'Zella', 1922, 'F', 235), +(26477, 'Beryl', 1922, 'F', 234), +(26478, 'Edwina', 1922, 'F', 234), +(26479, 'Kate', 1922, 'F', 234), +(26480, 'Roslyn', 1922, 'F', 234), +(26481, 'Isabell', 1922, 'F', 233), +(26482, 'Louella', 1922, 'F', 233), +(26483, 'Alvina', 1922, 'F', 232), +(26484, 'Queen', 1922, 'F', 232), +(26485, 'Earnestine', 1922, 'F', 231), +(26486, 'Trinidad', 1922, 'F', 231), +(26487, 'Pansy', 1922, 'F', 230), +(26488, 'Clare', 1922, 'F', 229), +(26489, 'Betsy', 1922, 'F', 228), +(26490, 'Corrine', 1922, 'F', 225), +(26491, 'Rubye', 1922, 'F', 225), +(26492, 'Verda', 1922, 'F', 225), +(26493, 'Oma', 1922, 'F', 224), +(26494, 'Elouise', 1922, 'F', 223), +(26495, 'Judy', 1922, 'F', 223), +(26496, 'Stephanie', 1922, 'F', 223), +(26497, 'Elisabeth', 1922, 'F', 222), +(26498, 'Faith', 1922, 'F', 219), +(26499, 'Vida', 1922, 'F', 219), +(26500, 'Elda', 1922, 'F', 216), +(26501, 'Wilhelmina', 1922, 'F', 216), +(26502, 'Retha', 1922, 'F', 215), +(26503, 'Freida', 1922, 'F', 214), +(26504, 'Gene', 1922, 'F', 214), +(26505, 'Jayne', 1922, 'F', 214), +(26506, 'Lauretta', 1922, 'F', 214), +(26507, 'Catharine', 1922, 'F', 213), +(26508, 'Bennie', 1922, 'F', 212), +(26509, 'Erna', 1922, 'F', 210), +(26510, 'Mozelle', 1922, 'F', 210), +(26511, 'Vernice', 1922, 'F', 209), +(26512, 'Syble', 1922, 'F', 208), +(26513, 'Mayme', 1922, 'F', 207), +(26514, 'Elena', 1922, 'F', 206), +(26515, 'Joann', 1922, 'F', 206), +(26516, 'Monica', 1922, 'F', 206), +(26517, 'Enid', 1922, 'F', 205), +(26518, 'Theda', 1922, 'F', 204), +(26519, 'Elise', 1922, 'F', 202), +(26520, 'Elvera', 1922, 'F', 202), +(26521, 'Hortense', 1922, 'F', 202), +(26522, 'Leta', 1922, 'F', 201), +(26523, 'Alfreda', 1922, 'F', 199), +(26524, 'Charles', 1922, 'F', 199), +(26525, 'Verla', 1922, 'F', 199), +(26526, 'Angie', 1922, 'F', 198), +(26527, 'Justine', 1922, 'F', 198), +(26528, 'Valeria', 1922, 'F', 198), +(26529, 'George', 1922, 'F', 197), +(26530, 'Margret', 1922, 'F', 197), +(26531, 'Minerva', 1922, 'F', 196), +(26532, 'Vesta', 1922, 'F', 196), +(26533, 'Julie', 1922, 'F', 195), +(26534, 'Fanny', 1922, 'F', 194), +(26535, 'Lura', 1922, 'F', 193), +(26536, 'Phoebe', 1922, 'F', 193), +(26537, 'William', 1922, 'F', 193), +(26538, 'Dorotha', 1922, 'F', 191), +(26539, 'Maryjane', 1922, 'F', 191), +(26540, 'Claudine', 1922, 'F', 190), +(26541, 'Lucia', 1922, 'F', 189), +(26542, 'Petra', 1922, 'F', 189), +(26543, 'Rosemarie', 1922, 'F', 188), +(26544, 'Agatha', 1922, 'F', 187), +(26545, 'Belle', 1922, 'F', 187), +(26546, 'Dovie', 1922, 'F', 187), +(26547, 'Oleta', 1922, 'F', 187), +(26548, 'Colleen', 1922, 'F', 186), +(26549, 'Joanna', 1922, 'F', 185), +(26550, 'Johnie', 1922, 'F', 184), +(26551, 'Manuela', 1922, 'F', 184), +(26552, 'Lucinda', 1922, 'F', 183), +(26553, 'Una', 1922, 'F', 183), +(26554, 'Freddie', 1922, 'F', 182), +(26555, 'Ardis', 1922, 'F', 181), +(26556, 'Charlie', 1922, 'F', 181), +(26557, 'Rowena', 1922, 'F', 181), +(26558, 'Delphine', 1922, 'F', 180), +(26559, 'Millicent', 1922, 'F', 180), +(26560, 'Vada', 1922, 'F', 180), +(26561, 'Margarette', 1922, 'F', 179), +(26562, 'Adell', 1922, 'F', 178), +(26563, 'Bella', 1922, 'F', 178), +(26564, 'Gertie', 1922, 'F', 178), +(26565, 'Floy', 1922, 'F', 177), +(26566, 'Lavonne', 1922, 'F', 177), +(26567, 'Rae', 1922, 'F', 177), +(26568, 'Rhea', 1922, 'F', 177), +(26569, 'Alva', 1922, 'F', 175), +(26570, 'Cecil', 1922, 'F', 174), +(26571, 'Delma', 1922, 'F', 174), +(26572, 'Jenny', 1922, 'F', 174), +(26573, 'Mazie', 1922, 'F', 174), +(26574, 'Earlene', 1922, 'F', 172), +(26575, 'Emogene', 1922, 'F', 172), +(26576, 'Theodora', 1922, 'F', 172), +(26577, 'Filomena', 1922, 'F', 171), +(26578, 'Germaine', 1922, 'F', 171), +(26579, 'Hellen', 1922, 'F', 171), +(26580, 'Leone', 1922, 'F', 171), +(26581, 'Roma', 1922, 'F', 171), +(26582, 'Zola', 1922, 'F', 171), +(26583, 'Emilie', 1922, 'F', 169), +(26584, 'Janette', 1922, 'F', 168), +(26585, 'Odell', 1922, 'F', 168), +(26586, 'Jerry', 1922, 'F', 167), +(26587, 'Alpha', 1922, 'F', 166), +(26588, 'Reta', 1922, 'F', 166), +(26589, 'Veda', 1922, 'F', 166), +(26590, 'Louisa', 1922, 'F', 165), +(26591, 'Alicia', 1922, 'F', 164), +(26592, 'Gilda', 1922, 'F', 164), +(26593, 'Idella', 1922, 'F', 164), +(26594, 'Garnet', 1922, 'F', 163), +(26595, 'Jacquelyn', 1922, 'F', 163), +(26596, 'Camille', 1922, 'F', 162), +(26597, 'Cassie', 1922, 'F', 162), +(26598, 'Albina', 1922, 'F', 161), +(26599, 'Belva', 1922, 'F', 161), +(26600, 'Dona', 1922, 'F', 161), +(26601, 'Magdalene', 1922, 'F', 161), +(26602, 'Ava', 1922, 'F', 160), +(26603, 'Katheryn', 1922, 'F', 160), +(26604, 'Carole', 1922, 'F', 159), +(26605, 'Celestine', 1922, 'F', 159), +(26606, 'Ursula', 1922, 'F', 159), +(26607, 'Winnifred', 1922, 'F', 159), +(26608, 'Evalyn', 1922, 'F', 158), +(26609, 'Ferne', 1922, 'F', 158), +(26610, 'Francisca', 1922, 'F', 157), +(26611, 'Ima', 1922, 'F', 155), +(26612, 'Florene', 1922, 'F', 154), +(26613, 'Evelyne', 1922, 'F', 153), +(26614, 'Arleen', 1922, 'F', 152), +(26615, 'Georgette', 1922, 'F', 152), +(26616, 'Georgiana', 1922, 'F', 152), +(26617, 'Hettie', 1922, 'F', 152), +(26618, 'Jackie', 1922, 'F', 152), +(26619, 'Blanch', 1922, 'F', 151), +(26620, 'Lettie', 1922, 'F', 151), +(26621, 'Gretchen', 1922, 'F', 150), +(26622, 'Magnolia', 1922, 'F', 150), +(26623, 'Ona', 1922, 'F', 150), +(26624, 'Elsa', 1922, 'F', 149), +(26625, 'Joe', 1922, 'F', 149), +(26626, 'Twila', 1922, 'F', 149), +(26627, 'Lue', 1922, 'F', 148), +(26628, 'Albertha', 1922, 'F', 147), +(26629, 'Valerie', 1922, 'F', 147), +(26630, 'Juana', 1922, 'F', 146), +(26631, 'Linnie', 1922, 'F', 146), +(26632, 'Maud', 1922, 'F', 145), +(26633, 'Myrtis', 1922, 'F', 145), +(26634, 'Rosalee', 1922, 'F', 145), +(26635, 'Therese', 1922, 'F', 145), +(26636, 'Aurelia', 1922, 'F', 144), +(26637, 'Myrna', 1922, 'F', 144), +(26638, 'Novella', 1922, 'F', 144), +(26639, 'Abbie', 1922, 'F', 143), +(26640, 'Annamae', 1922, 'F', 143), +(26641, 'Elna', 1922, 'F', 143), +(26642, 'Jeane', 1922, 'F', 143), +(26643, 'Josefina', 1922, 'F', 143), +(26644, 'Aletha', 1922, 'F', 142), +(26645, 'Gail', 1922, 'F', 142), +(26646, 'Ivy', 1922, 'F', 142), +(26647, 'Lavon', 1922, 'F', 142), +(26648, 'Maybelle', 1922, 'F', 142), +(26649, 'Pearline', 1922, 'F', 142), +(26650, 'Clementine', 1922, 'F', 141), +(26651, 'Juliette', 1922, 'F', 141), +(26652, 'Orpha', 1922, 'F', 141), +(26653, 'Rosalyn', 1922, 'F', 141), +(26654, 'Tina', 1922, 'F', 141), +(26655, 'Yvette', 1922, 'F', 141), +(26656, 'Mathilda', 1922, 'F', 140), +(26657, 'Ouida', 1922, 'F', 140), +(26658, 'Yetta', 1922, 'F', 140), +(26659, 'Ardith', 1922, 'F', 139), +(26660, 'Camilla', 1922, 'F', 139), +(26661, 'Marianna', 1922, 'F', 139), +(26662, 'Myrtice', 1922, 'F', 139), +(26663, 'Artie', 1922, 'F', 137), +(26664, 'Ethelyn', 1922, 'F', 137), +(26665, 'Mina', 1922, 'F', 137), +(26666, 'Eleanora', 1922, 'F', 136), +(26667, 'Estell', 1922, 'F', 135), +(26668, 'Antonette', 1922, 'F', 134), +(26669, 'Felicia', 1922, 'F', 134), +(26670, 'Anastasia', 1922, 'F', 133), +(26671, 'Lulu', 1922, 'F', 133), +(26672, 'Alda', 1922, 'F', 132), +(26673, 'Maureen', 1922, 'F', 132), +(26674, 'Berneice', 1922, 'F', 131), +(26675, 'Era', 1922, 'F', 131), +(26676, 'Mittie', 1922, 'F', 131), +(26677, 'Velda', 1922, 'F', 131), +(26678, 'Vergie', 1922, 'F', 131), +(26679, 'Marvel', 1922, 'F', 130), +(26680, 'Rubie', 1922, 'F', 130), +(26681, 'Tressie', 1922, 'F', 130), +(26682, 'Bonita', 1922, 'F', 128), +(26683, 'Cathryn', 1922, 'F', 128), +(26684, 'Lona', 1922, 'F', 128), +(26685, 'Treva', 1922, 'F', 128), +(26686, 'Zora', 1922, 'F', 128), +(26687, 'Zula', 1922, 'F', 127), +(26688, 'Lavina', 1922, 'F', 126), +(26689, 'Charline', 1922, 'F', 125), +(26690, 'Dorcas', 1922, 'F', 125), +(26691, 'Easter', 1922, 'F', 124), +(26692, 'Sammie', 1922, 'F', 122), +(26693, 'Vincenza', 1922, 'F', 122), +(26694, 'Leslie', 1922, 'F', 121), +(26695, 'Marcelle', 1922, 'F', 121), +(26696, 'Adela', 1922, 'F', 120), +(26697, 'Larue', 1922, 'F', 120), +(26698, 'Leonora', 1922, 'F', 120), +(26699, 'Sheila', 1922, 'F', 120), +(26700, 'Almeda', 1922, 'F', 119), +(26701, 'Bethel', 1922, 'F', 119), +(26702, 'Emilia', 1922, 'F', 119), +(26703, 'Idell', 1922, 'F', 119), +(26704, 'Lavern', 1922, 'F', 119), +(26705, 'Rosina', 1922, 'F', 119), +(26706, 'Annabel', 1922, 'F', 118), +(26707, 'Carolina', 1922, 'F', 118), +(26708, 'Melvina', 1922, 'F', 118), +(26709, 'Crystal', 1922, 'F', 117), +(26710, 'Margarett', 1922, 'F', 117), +(26711, 'Glenda', 1922, 'F', 116), +(26712, 'Mozell', 1922, 'F', 116), +(26713, 'Cordelia', 1922, 'F', 115), +(26714, 'Eldora', 1922, 'F', 115), +(26715, 'Hedwig', 1922, 'F', 115), +(26716, 'Rachael', 1922, 'F', 115), +(26717, 'Renee', 1922, 'F', 115), +(26718, 'Shirlee', 1922, 'F', 115), +(26719, 'Sibyl', 1922, 'F', 115), +(26720, 'Annabell', 1922, 'F', 114), +(26721, 'Doretha', 1922, 'F', 114), +(26722, 'Leatrice', 1922, 'F', 114), +(26723, 'Nan', 1922, 'F', 114), +(26724, 'Corene', 1922, 'F', 113), +(26725, 'Kathrine', 1922, 'F', 113), +(26726, 'Vernell', 1922, 'F', 113), +(26727, 'Berta', 1922, 'F', 112), +(26728, 'Esperanza', 1922, 'F', 112), +(26729, 'Andrea', 1922, 'F', 111), +(26730, 'Diane', 1922, 'F', 111), +(26731, 'Georgianna', 1922, 'F', 111), +(26732, 'Laverna', 1922, 'F', 111), +(26733, 'Nita', 1922, 'F', 111), +(26734, 'Roselyn', 1922, 'F', 111), +(26735, 'Verona', 1922, 'F', 110), +(26736, 'Adella', 1922, 'F', 109), +(26737, 'Lina', 1922, 'F', 109), +(26738, 'Lovie', 1922, 'F', 109), +(26739, 'Celeste', 1922, 'F', 108), +(26740, 'Violette', 1922, 'F', 107), +(26741, 'Daphne', 1922, 'F', 106), +(26742, 'Janis', 1922, 'F', 106), +(26743, 'Patty', 1922, 'F', 106), +(26744, 'Grayce', 1922, 'F', 105), +(26745, 'Gwen', 1922, 'F', 105), +(26746, 'Alvera', 1922, 'F', 104), +(26747, 'Annetta', 1922, 'F', 104), +(26748, 'Dawn', 1922, 'F', 104), +(26749, 'Delphia', 1922, 'F', 104), +(26750, 'Doreen', 1922, 'F', 104), +(26751, 'Joseph', 1922, 'F', 104), +(26752, 'Norine', 1922, 'F', 104), +(26753, 'Elisa', 1922, 'F', 103), +(26754, 'Emmie', 1922, 'F', 103), +(26755, 'Gayle', 1922, 'F', 102), +(26756, 'Theo', 1922, 'F', 102), +(26757, 'Velva', 1922, 'F', 102), +(26758, 'Elenora', 1922, 'F', 101), +(26759, 'Madonna', 1922, 'F', 101), +(26760, 'Carmel', 1922, 'F', 100), +(26761, 'Clyde', 1922, 'F', 100), +(26762, 'Eloisa', 1922, 'F', 100), +(26763, 'Leatha', 1922, 'F', 100), +(26764, 'Ruthe', 1922, 'F', 100), +(26765, 'John', 1922, 'M', 57278), +(26766, 'Robert', 1922, 'M', 53797), +(26767, 'William', 1922, 'M', 51118), +(26768, 'James', 1922, 'M', 49813), +(26769, 'Charles', 1922, 'M', 28844), +(26770, 'George', 1922, 'M', 27347), +(26771, 'Joseph', 1922, 'M', 25703), +(26772, 'Edward', 1922, 'M', 20419), +(26773, 'Richard', 1922, 'M', 17540), +(26774, 'Frank', 1922, 'M', 16013), +(26775, 'Thomas', 1922, 'M', 15267), +(26776, 'Donald', 1922, 'M', 14916), +(26777, 'Harold', 1922, 'M', 13590), +(26778, 'Paul', 1922, 'M', 12930), +(26779, 'Walter', 1922, 'M', 12632), +(26780, 'Raymond', 1922, 'M', 12133), +(26781, 'Henry', 1922, 'M', 11206), +(26782, 'Jack', 1922, 'M', 10844), +(26783, 'Arthur', 1922, 'M', 10121), +(26784, 'Albert', 1922, 'M', 9890), +(26785, 'Kenneth', 1922, 'M', 9267), +(26786, 'Harry', 1922, 'M', 9080), +(26787, 'Ralph', 1922, 'M', 8484), +(26788, 'David', 1922, 'M', 7864), +(26789, 'Eugene', 1922, 'M', 7852), +(26790, 'Howard', 1922, 'M', 7295), +(26791, 'Louis', 1922, 'M', 7097), +(26792, 'Willie', 1922, 'M', 6907), +(26793, 'Clarence', 1922, 'M', 6861), +(26794, 'Carl', 1922, 'M', 6690), +(26795, 'Earl', 1922, 'M', 6461), +(26796, 'Roy', 1922, 'M', 6460), +(26797, 'Fred', 1922, 'M', 6246), +(26798, 'Francis', 1922, 'M', 6148), +(26799, 'Joe', 1922, 'M', 6091), +(26800, 'Lawrence', 1922, 'M', 5782), +(26801, 'Ernest', 1922, 'M', 5502), +(26802, 'Leonard', 1922, 'M', 5407), +(26803, 'Anthony', 1922, 'M', 5093), +(26804, 'Stanley', 1922, 'M', 5046), +(26805, 'Herbert', 1922, 'M', 5045), +(26806, 'Alfred', 1922, 'M', 4835), +(26807, 'Samuel', 1922, 'M', 4601), +(26808, 'Norman', 1922, 'M', 4527), +(26809, 'Warren', 1922, 'M', 4485), +(26810, 'Bernard', 1922, 'M', 4411), +(26811, 'Daniel', 1922, 'M', 4284), +(26812, 'Michael', 1922, 'M', 3990), +(26813, 'Russell', 1922, 'M', 3965), +(26814, 'Melvin', 1922, 'M', 3912), +(26815, 'Leo', 1922, 'M', 3904), +(26816, 'Edwin', 1922, 'M', 3826), +(26817, 'Andrew', 1922, 'M', 3804), +(26818, 'Elmer', 1922, 'M', 3738), +(26819, 'Leroy', 1922, 'M', 3672), +(26820, 'Marvin', 1922, 'M', 3580), +(26821, 'Peter', 1922, 'M', 3548), +(26822, 'Gerald', 1922, 'M', 3544), +(26823, 'Lloyd', 1922, 'M', 3365), +(26824, 'Frederick', 1922, 'M', 3352), +(26825, 'Floyd', 1922, 'M', 3220), +(26826, 'Theodore', 1922, 'M', 3216), +(26827, 'Clifford', 1922, 'M', 3157), +(26828, 'Chester', 1922, 'M', 3131), +(26829, 'Ray', 1922, 'M', 3054), +(26830, 'Herman', 1922, 'M', 3015), +(26831, 'Clyde', 1922, 'M', 3005), +(26832, 'Vernon', 1922, 'M', 3002), +(26833, 'Lester', 1922, 'M', 2950), +(26834, 'Philip', 1922, 'M', 2769), +(26835, 'Vincent', 1922, 'M', 2710), +(26836, 'Charlie', 1922, 'M', 2652), +(26837, 'Alvin', 1922, 'M', 2599), +(26838, 'Milton', 1922, 'M', 2556), +(26839, 'Lewis', 1922, 'M', 2555), +(26840, 'Gordon', 1922, 'M', 2526), +(26841, 'Leon', 1922, 'M', 2522), +(26842, 'Wayne', 1922, 'M', 2476), +(26843, 'Glenn', 1922, 'M', 2424), +(26844, 'Martin', 1922, 'M', 2403), +(26845, 'Jesse', 1922, 'M', 2395), +(26846, 'Benjamin', 1922, 'M', 2375), +(26847, 'Lee', 1922, 'M', 2373), +(26848, 'Sam', 1922, 'M', 2348), +(26849, 'Cecil', 1922, 'M', 2334), +(26850, 'Victor', 1922, 'M', 2322), +(26851, 'Wallace', 1922, 'M', 2213), +(26852, 'Harvey', 1922, 'M', 2208), +(26853, 'Dale', 1922, 'M', 2043), +(26854, 'Billy', 1922, 'M', 2028), +(26855, 'Willard', 1922, 'M', 2018), +(26856, 'Oscar', 1922, 'M', 2008), +(26857, 'Edgar', 1922, 'M', 1925), +(26858, 'Arnold', 1922, 'M', 1896), +(26859, 'Allen', 1922, 'M', 1887), +(26860, 'Roger', 1922, 'M', 1848), +(26861, 'Claude', 1922, 'M', 1805), +(26862, 'Everett', 1922, 'M', 1798), +(26863, 'Virgil', 1922, 'M', 1788), +(26864, 'Gilbert', 1922, 'M', 1748), +(26865, 'Stephen', 1922, 'M', 1719), +(26866, 'Wilbur', 1922, 'M', 1714), +(26867, 'Maurice', 1922, 'M', 1696), +(26868, 'Bill', 1922, 'M', 1674), +(26869, 'Johnnie', 1922, 'M', 1646), +(26870, 'Douglas', 1922, 'M', 1636), +(26871, 'Morris', 1922, 'M', 1631), +(26872, 'Homer', 1922, 'M', 1630), +(26873, 'Marion', 1922, 'M', 1630), +(26874, 'Sidney', 1922, 'M', 1620), +(26875, 'Jessie', 1922, 'M', 1592), +(26876, 'Eddie', 1922, 'M', 1589), +(26877, 'Curtis', 1922, 'M', 1547), +(26878, 'Leslie', 1922, 'M', 1543), +(26879, 'Roland', 1922, 'M', 1540), +(26880, 'Hubert', 1922, 'M', 1527), +(26881, 'Max', 1922, 'M', 1520), +(26882, 'Luther', 1922, 'M', 1477), +(26883, 'Manuel', 1922, 'M', 1463), +(26884, 'Hugh', 1922, 'M', 1441), +(26885, 'Jerome', 1922, 'M', 1423), +(26886, 'Nicholas', 1922, 'M', 1415), +(26887, 'Glen', 1922, 'M', 1384), +(26888, 'Irving', 1922, 'M', 1368), +(26889, 'Alexander', 1922, 'M', 1359), +(26890, 'Franklin', 1922, 'M', 1319), +(26891, 'Wesley', 1922, 'M', 1289), +(26892, 'Calvin', 1922, 'M', 1283), +(26893, 'Julius', 1922, 'M', 1279), +(26894, 'Steve', 1922, 'M', 1268), +(26895, 'Jose', 1922, 'M', 1257), +(26896, 'Horace', 1922, 'M', 1251), +(26897, 'Willis', 1922, 'M', 1248), +(26898, 'Oliver', 1922, 'M', 1216), +(26899, 'Jerry', 1922, 'M', 1197), +(26900, 'Don', 1922, 'M', 1184), +(26901, 'Tony', 1922, 'M', 1145), +(26902, 'Rudolph', 1922, 'M', 1144), +(26903, 'Ben', 1922, 'M', 1120), +(26904, 'Jimmie', 1922, 'M', 1118), +(26905, 'Guy', 1922, 'M', 1117), +(26906, 'Bruce', 1922, 'M', 1105), +(26907, 'Earnest', 1922, 'M', 1089), +(26908, 'Gene', 1922, 'M', 1089), +(26909, 'Tom', 1922, 'M', 1085), +(26910, 'Lyle', 1922, 'M', 1055), +(26911, 'Ronald', 1922, 'M', 1042), +(26912, 'Jacob', 1922, 'M', 1027), +(26913, 'Junior', 1922, 'M', 1024), +(26914, 'Archie', 1922, 'M', 1023), +(26915, 'Orville', 1922, 'M', 1022), +(26916, 'Patrick', 1922, 'M', 1019), +(26917, 'Edmund', 1922, 'M', 1014), +(26918, 'Salvatore', 1922, 'M', 1008), +(26919, 'Alex', 1922, 'M', 1002), +(26920, 'Otis', 1922, 'M', 988), +(26921, 'Keith', 1922, 'M', 985), +(26922, 'Matthew', 1922, 'M', 984), +(26923, 'Dean', 1922, 'M', 983), +(26924, 'Angelo', 1922, 'M', 978), +(26925, 'Clayton', 1922, 'M', 978), +(26926, 'Delbert', 1922, 'M', 976), +(26927, 'Mike', 1922, 'M', 934), +(26928, 'Phillip', 1922, 'M', 919), +(26929, 'Bennie', 1922, 'M', 916), +(26930, 'Clinton', 1922, 'M', 915), +(26931, 'Wilbert', 1922, 'M', 903), +(26932, 'Clifton', 1922, 'M', 887), +(26933, 'Jim', 1922, 'M', 881), +(26934, 'Johnny', 1922, 'M', 864), +(26935, 'Marshall', 1922, 'M', 853), +(26936, 'Merle', 1922, 'M', 835), +(26937, 'Emil', 1922, 'M', 824), +(26938, 'Dan', 1922, 'M', 804), +(26939, 'Nathaniel', 1922, 'M', 799), +(26940, 'Ira', 1922, 'M', 792), +(26941, 'Ervin', 1922, 'M', 791), +(26942, 'Nick', 1922, 'M', 791), +(26943, 'Bob', 1922, 'M', 787), +(26944, 'Jay', 1922, 'M', 780), +(26945, 'Julian', 1922, 'M', 773), +(26946, 'Forrest', 1922, 'M', 772), +(26947, 'Leland', 1922, 'M', 768), +(26948, 'Elbert', 1922, 'M', 754), +(26949, 'Nathan', 1922, 'M', 749), +(26950, 'Ivan', 1922, 'M', 748), +(26951, 'Alton', 1922, 'M', 742), +(26952, 'Rufus', 1922, 'M', 737), +(26953, 'Seymour', 1922, 'M', 734), +(26954, 'Wilfred', 1922, 'M', 720), +(26955, 'Irvin', 1922, 'M', 719), +(26956, 'Isaac', 1922, 'M', 719), +(26957, 'Dewey', 1922, 'M', 714), +(26958, 'Sylvester', 1922, 'M', 707), +(26959, 'Lonnie', 1922, 'M', 704), +(26960, 'Aaron', 1922, 'M', 699), +(26961, 'Lowell', 1922, 'M', 699), +(26962, 'Dennis', 1922, 'M', 677), +(26963, 'Mark', 1922, 'M', 667), +(26964, 'Antonio', 1922, 'M', 665), +(26965, 'Nelson', 1922, 'M', 660), +(26966, 'Felix', 1922, 'M', 656), +(26967, 'Pete', 1922, 'M', 644), +(26968, 'Grover', 1922, 'M', 633), +(26969, 'Owen', 1922, 'M', 632), +(26970, 'Otto', 1922, 'M', 629), +(26971, 'Norbert', 1922, 'M', 628), +(26972, 'Murray', 1922, 'M', 627), +(26973, 'Duane', 1922, 'M', 625), +(26974, 'Ellis', 1922, 'M', 624), +(26975, 'Woodrow', 1922, 'M', 623), +(26976, 'Juan', 1922, 'M', 620), +(26977, 'Mack', 1922, 'M', 620), +(26978, 'Rex', 1922, 'M', 616), +(26979, 'Billie', 1922, 'M', 615), +(26980, 'Perry', 1922, 'M', 615), +(26981, 'Bert', 1922, 'M', 609), +(26982, 'Johnie', 1922, 'M', 608), +(26983, 'Eldon', 1922, 'M', 605), +(26984, 'Ted', 1922, 'M', 605), +(26985, 'Wendell', 1922, 'M', 600), +(26986, 'Abraham', 1922, 'M', 599), +(26987, 'Byron', 1922, 'M', 599), +(26988, 'Percy', 1922, 'M', 599), +(26989, 'August', 1922, 'M', 596), +(26990, 'Allan', 1922, 'M', 595), +(26991, 'Elwood', 1922, 'M', 594), +(26992, 'Carroll', 1922, 'M', 588), +(26993, 'Loyd', 1922, 'M', 583), +(26994, 'Laurence', 1922, 'M', 580), +(26995, 'Emmett', 1922, 'M', 579), +(26996, 'Grady', 1922, 'M', 576), +(26997, 'Ross', 1922, 'M', 576), +(26998, 'Jesus', 1922, 'M', 561), +(26999, 'Myron', 1922, 'M', 561), +(27000, 'Wilson', 1922, 'M', 561), +(27001, 'Amos', 1922, 'M', 558), +(27002, 'Loren', 1922, 'M', 557), +(27003, 'Dominick', 1922, 'M', 548), +(27004, 'Malcolm', 1922, 'M', 548), +(27005, 'Adolph', 1922, 'M', 545), +(27006, 'Fredrick', 1922, 'M', 541), +(27007, 'Sherman', 1922, 'M', 541), +(27008, 'Gerard', 1922, 'M', 540), +(27009, 'Dominic', 1922, 'M', 534), +(27010, 'Karl', 1922, 'M', 527), +(27011, 'Harley', 1922, 'M', 525), +(27012, 'Boyd', 1922, 'M', 508), +(27013, 'Erwin', 1922, 'M', 507), +(27014, 'Roscoe', 1922, 'M', 505), +(27015, 'Troy', 1922, 'M', 502), +(27016, 'Freddie', 1922, 'M', 496), +(27017, 'Tommy', 1922, 'M', 496), +(27018, 'Larry', 1922, 'M', 491), +(27019, 'Neil', 1922, 'M', 489), +(27020, 'Burton', 1922, 'M', 480), +(27021, 'Alan', 1922, 'M', 479), +(27022, 'Garland', 1922, 'M', 478), +(27023, 'Millard', 1922, 'M', 478), +(27024, 'Adam', 1922, 'M', 469), +(27025, 'Aubrey', 1922, 'M', 467), +(27026, 'Preston', 1922, 'M', 467), +(27027, 'Morton', 1922, 'M', 460), +(27028, 'Louie', 1922, 'M', 459), +(27029, 'Austin', 1922, 'M', 456), +(27030, 'Mario', 1922, 'M', 451), +(27031, 'Dwight', 1922, 'M', 447), +(27032, 'Carlton', 1922, 'M', 446), +(27033, 'Doyle', 1922, 'M', 443), +(27034, 'Carlos', 1922, 'M', 441), +(27035, 'Reuben', 1922, 'M', 438), +(27036, 'Cornelius', 1922, 'M', 436), +(27037, 'Charley', 1922, 'M', 434), +(27038, 'Tommie', 1922, 'M', 425), +(27039, 'Jasper', 1922, 'M', 424), +(27040, 'Grant', 1922, 'M', 417), +(27041, 'Laverne', 1922, 'M', 414), +(27042, 'Rodney', 1922, 'M', 402), +(27043, 'Maynard', 1922, 'M', 398), +(27044, 'Steven', 1922, 'M', 395), +(27045, 'Edmond', 1922, 'M', 388), +(27046, 'Neal', 1922, 'M', 388), +(27047, 'Rocco', 1922, 'M', 388), +(27048, 'Moses', 1922, 'M', 387), +(27049, 'Harlan', 1922, 'M', 386), +(27050, 'Mitchell', 1922, 'M', 386), +(27051, 'Lynn', 1922, 'M', 382), +(27052, 'Jimmy', 1922, 'M', 381), +(27053, 'Dallas', 1922, 'M', 380), +(27054, 'Darrell', 1922, 'M', 379), +(27055, 'Simon', 1922, 'M', 376), +(27056, 'Harrison', 1922, 'M', 374), +(27057, 'Bobby', 1922, 'M', 371), +(27058, 'Odell', 1922, 'M', 369), +(27059, 'Joel', 1922, 'M', 368), +(27060, 'Wilmer', 1922, 'M', 367), +(27061, 'Roosevelt', 1922, 'M', 365), +(27062, 'Irwin', 1922, 'M', 364), +(27063, 'Dick', 1922, 'M', 363), +(27064, 'Ruben', 1922, 'M', 361), +(27065, 'Thurman', 1922, 'M', 358), +(27066, 'Will', 1922, 'M', 357), +(27067, 'Elton', 1922, 'M', 356), +(27068, 'Monroe', 1922, 'M', 354), +(27069, 'Ramon', 1922, 'M', 353), +(27070, 'Wade', 1922, 'M', 347), +(27071, 'Cleveland', 1922, 'M', 346), +(27072, 'Elvin', 1922, 'M', 346), +(27073, 'Emanuel', 1922, 'M', 344), +(27074, 'Stuart', 1922, 'M', 343), +(27075, 'Francisco', 1922, 'M', 341), +(27076, 'Solomon', 1922, 'M', 334), +(27077, 'Conrad', 1922, 'M', 333), +(27078, 'Jake', 1922, 'M', 333), +(27079, 'Pedro', 1922, 'M', 330), +(27080, 'Dave', 1922, 'M', 327), +(27081, 'Merlin', 1922, 'M', 327), +(27082, 'Clark', 1922, 'M', 326), +(27083, 'Russel', 1922, 'M', 325), +(27084, 'Ward', 1922, 'M', 323), +(27085, 'Clair', 1922, 'M', 320), +(27086, 'Alonzo', 1922, 'M', 319), +(27087, 'Carmen', 1922, 'M', 317), +(27088, 'Clement', 1922, 'M', 317), +(27089, 'Elmo', 1922, 'M', 317), +(27090, 'Weldon', 1922, 'M', 316), +(27091, 'Elijah', 1922, 'M', 311), +(27092, 'Delmar', 1922, 'M', 310), +(27093, 'Cleo', 1922, 'M', 309), +(27094, 'Kermit', 1922, 'M', 309), +(27095, 'Armand', 1922, 'M', 307), +(27096, 'Christopher', 1922, 'M', 307), +(27097, 'Patsy', 1922, 'M', 307), +(27098, 'Alfonso', 1922, 'M', 305), +(27099, 'Buford', 1922, 'M', 304), +(27100, 'Andy', 1922, 'M', 303), +(27101, 'Gus', 1922, 'M', 303), +(27102, 'Lionel', 1922, 'M', 302), +(27103, 'Benny', 1922, 'M', 299), +(27104, 'Cyril', 1922, 'M', 299), +(27105, 'Forest', 1922, 'M', 299), +(27106, 'Vito', 1922, 'M', 298), +(27107, 'Marcus', 1922, 'M', 297), +(27108, 'Miles', 1922, 'M', 296), +(27109, 'Ed', 1922, 'M', 293), +(27110, 'Ned', 1922, 'M', 293), +(27111, 'Claud', 1922, 'M', 289), +(27112, 'Jean', 1922, 'M', 289), +(27113, 'Timothy', 1922, 'M', 289), +(27114, 'Alphonse', 1922, 'M', 288), +(27115, 'Randolph', 1922, 'M', 284), +(27116, 'Reginald', 1922, 'M', 283), +(27117, 'Stewart', 1922, 'M', 283), +(27118, 'Merrill', 1922, 'M', 277), +(27119, 'Wiley', 1922, 'M', 277), +(27120, 'Adrian', 1922, 'M', 276), +(27121, 'Emery', 1922, 'M', 276), +(27122, 'Luis', 1922, 'M', 276), +(27123, 'Eli', 1922, 'M', 275), +(27124, 'Hollis', 1922, 'M', 274), +(27125, 'Sanford', 1922, 'M', 273), +(27126, 'Orval', 1922, 'M', 272), +(27127, 'Lavern', 1922, 'M', 270), +(27128, 'Sterling', 1922, 'M', 270), +(27129, 'Thaddeus', 1922, 'M', 269), +(27130, 'Wilford', 1922, 'M', 268), +(27131, 'Earle', 1922, 'M', 267), +(27132, 'Vern', 1922, 'M', 266), +(27133, 'Barney', 1922, 'M', 264), +(27134, 'Emory', 1922, 'M', 263), +(27135, 'Levi', 1922, 'M', 263), +(27136, 'Ollie', 1922, 'M', 263), +(27137, 'Travis', 1922, 'M', 262), +(27138, 'Bruno', 1922, 'M', 261), +(27139, 'Norris', 1922, 'M', 260), +(27140, 'Winston', 1922, 'M', 257), +(27141, 'Roman', 1922, 'M', 255), +(27142, 'Emerson', 1922, 'M', 254), +(27143, 'Sammie', 1922, 'M', 252), +(27144, 'Pasquale', 1922, 'M', 251), +(27145, 'Jess', 1922, 'M', 248), +(27146, 'Basil', 1922, 'M', 247), +(27147, 'Wilburn', 1922, 'M', 247), +(27148, 'Alva', 1922, 'M', 246), +(27149, 'Anton', 1922, 'M', 245), +(27150, 'Truman', 1922, 'M', 245), +(27151, 'Winfred', 1922, 'M', 244), +(27152, 'Herschel', 1922, 'M', 242), +(27153, 'Hyman', 1922, 'M', 242), +(27154, 'Noah', 1922, 'M', 237), +(27155, 'Cletus', 1922, 'M', 233), +(27156, 'Harris', 1922, 'M', 233), +(27157, 'Sheldon', 1922, 'M', 233), +(27158, 'Teddy', 1922, 'M', 233), +(27159, 'Salvador', 1922, 'M', 232), +(27160, 'Carmine', 1922, 'M', 230), +(27161, 'Sol', 1922, 'M', 230), +(27162, 'Pat', 1922, 'M', 229), +(27163, 'Shirley', 1922, 'M', 229), +(27164, 'Royal', 1922, 'M', 228), +(27165, 'Milford', 1922, 'M', 227), +(27166, 'Omer', 1922, 'M', 227), +(27167, 'Jackson', 1922, 'M', 225), +(27168, 'Bertram', 1922, 'M', 223), +(27169, 'Guadalupe', 1922, 'M', 222), +(27170, 'Mervin', 1922, 'M', 221), +(27171, 'Gregory', 1922, 'M', 219), +(27172, 'Marlin', 1922, 'M', 219), +(27173, 'Ellsworth', 1922, 'M', 218), +(27174, 'Coy', 1922, 'M', 214), +(27175, 'Ferdinand', 1922, 'M', 214), +(27176, 'Silas', 1922, 'M', 213), +(27177, 'Rolland', 1922, 'M', 212), +(27178, 'Lorenzo', 1922, 'M', 211), +(27179, 'Van', 1922, 'M', 208), +(27180, 'Noel', 1922, 'M', 207), +(27181, 'Jeff', 1922, 'M', 206), +(27182, 'Elliott', 1922, 'M', 205), +(27183, 'Lyman', 1922, 'M', 205), +(27184, 'Mathew', 1922, 'M', 204), +(27185, 'Saul', 1922, 'M', 204), +(27186, 'Hershel', 1922, 'M', 203), +(27187, 'Raul', 1922, 'M', 202), +(27188, 'Vance', 1922, 'M', 202), +(27189, 'Eric', 1922, 'M', 201), +(27190, 'Hiram', 1922, 'M', 200), +(27191, 'Daryl', 1922, 'M', 199), +(27192, 'Scott', 1922, 'M', 199), +(27193, 'Booker', 1922, 'M', 198), +(27194, 'Spencer', 1922, 'M', 197), +(27195, 'Lenard', 1922, 'M', 196), +(27196, 'Milo', 1922, 'M', 196), +(27197, 'Gabriel', 1922, 'M', 194), +(27198, 'Ulysses', 1922, 'M', 194), +(27199, 'Wilton', 1922, 'M', 194), +(27200, 'Odis', 1922, 'M', 193), +(27201, 'Olen', 1922, 'M', 193), +(27202, 'Elroy', 1922, 'M', 192), +(27203, 'Linwood', 1922, 'M', 192), +(27204, 'Burl', 1922, 'M', 190), +(27205, 'Luke', 1922, 'M', 190), +(27206, 'Clay', 1922, 'M', 189), +(27207, 'Foster', 1922, 'M', 189), +(27208, 'Lamar', 1922, 'M', 189), +(27209, 'Armando', 1922, 'M', 187), +(27210, 'Columbus', 1922, 'M', 187), +(27211, 'Darwin', 1922, 'M', 187), +(27212, 'Bobbie', 1922, 'M', 186), +(27213, 'Everette', 1922, 'M', 186), +(27214, 'Mary', 1922, 'M', 186), +(27215, 'Royce', 1922, 'M', 186), +(27216, 'Hobert', 1922, 'M', 185), +(27217, 'Alden', 1922, 'M', 184), +(27218, 'Buster', 1922, 'M', 184), +(27219, 'Olin', 1922, 'M', 184), +(27220, 'Freeman', 1922, 'M', 183), +(27221, 'Nolan', 1922, 'M', 183), +(27222, 'Evan', 1922, 'M', 182), +(27223, 'Isadore', 1922, 'M', 182), +(27224, 'Rene', 1922, 'M', 181), +(27225, 'Dudley', 1922, 'M', 180), +(27226, 'Gale', 1922, 'M', 180), +(27227, 'Orlando', 1922, 'M', 180), +(27228, 'Bud', 1922, 'M', 179), +(27229, 'Delmer', 1922, 'M', 179), +(27230, 'Abe', 1922, 'M', 176), +(27231, 'Gail', 1922, 'M', 175), +(27232, 'Denver', 1922, 'M', 174), +(27233, 'Roberto', 1922, 'M', 173), +(27234, 'Hal', 1922, 'M', 172), +(27235, 'Ambrose', 1922, 'M', 171), +(27236, 'Hoyt', 1922, 'M', 171), +(27237, 'Alfredo', 1922, 'M', 170), +(27238, 'Chris', 1922, 'M', 169), +(27239, 'Frederic', 1922, 'M', 169), +(27240, 'Newton', 1922, 'M', 169), +(27241, 'Casimir', 1922, 'M', 168), +(27242, 'Emile', 1922, 'M', 167), +(27243, 'Randall', 1922, 'M', 166), +(27244, 'Augustus', 1922, 'M', 164), +(27245, 'Houston', 1922, 'M', 164), +(27246, 'Elias', 1922, 'M', 162), +(27247, 'Israel', 1922, 'M', 162), +(27248, 'Miguel', 1922, 'M', 162), +(27249, 'Riley', 1922, 'M', 162), +(27250, 'Trinidad', 1922, 'M', 162), +(27251, 'Quentin', 1922, 'M', 161), +(27252, 'Sydney', 1922, 'M', 161), +(27253, 'Aloysius', 1922, 'M', 160), +(27254, 'Christian', 1922, 'M', 160), +(27255, 'Jefferson', 1922, 'M', 160), +(27256, 'Palmer', 1922, 'M', 160), +(27257, 'Dalton', 1922, 'M', 159), +(27258, 'Dewitt', 1922, 'M', 159), +(27259, 'Wilber', 1922, 'M', 158), +(27260, 'Ora', 1922, 'M', 157), +(27261, 'Verne', 1922, 'M', 157), +(27262, 'Harland', 1922, 'M', 156), +(27263, 'Blaine', 1922, 'M', 155), +(27264, 'Carlo', 1922, 'M', 152), +(27265, 'Noble', 1922, 'M', 152), +(27266, 'Augustine', 1922, 'M', 151), +(27267, 'Darrel', 1922, 'M', 151), +(27268, 'Major', 1922, 'M', 151), +(27269, 'Walton', 1922, 'M', 151), +(27270, 'Arlie', 1922, 'M', 149), +(27271, 'Ezra', 1922, 'M', 149), +(27272, 'Waldo', 1922, 'M', 149), +(27273, 'Isaiah', 1922, 'M', 148), +(27274, 'Rafael', 1922, 'M', 146), +(27275, 'Domingo', 1922, 'M', 145), +(27276, 'Fletcher', 1922, 'M', 145), +(27277, 'Carrol', 1922, 'M', 144), +(27278, 'Morgan', 1922, 'M', 144), +(27279, 'Mose', 1922, 'M', 144), +(27280, 'Theron', 1922, 'M', 144), +(27281, 'Anderson', 1922, 'M', 142), +(27282, 'Lemuel', 1922, 'M', 142), +(27283, 'Maxwell', 1922, 'M', 142), +(27284, 'Elden', 1922, 'M', 141), +(27285, 'Elwin', 1922, 'M', 141), +(27286, 'Jewel', 1922, 'M', 141), +(27287, 'Kelly', 1922, 'M', 141), +(27288, 'Rudy', 1922, 'M', 141), +(27289, 'Tomas', 1922, 'M', 141), +(27290, 'Benedict', 1922, 'M', 140), +(27291, 'Davis', 1922, 'M', 140), +(27292, 'Justin', 1922, 'M', 140), +(27293, 'Meyer', 1922, 'M', 140), +(27294, 'Cyrus', 1922, 'M', 139), +(27295, 'Hardy', 1922, 'M', 139), +(27296, 'Hugo', 1922, 'M', 139), +(27297, 'Pablo', 1922, 'M', 139), +(27298, 'Isiah', 1922, 'M', 138), +(27299, 'Lucien', 1922, 'M', 137), +(27300, 'Roderick', 1922, 'M', 137), +(27301, 'Mckinley', 1922, 'M', 136), +(27302, 'Oren', 1922, 'M', 136), +(27303, 'Phil', 1922, 'M', 136), +(27304, 'Reed', 1922, 'M', 136), +(27305, 'Jewell', 1922, 'M', 135), +(27306, 'Hilton', 1922, 'M', 134), +(27307, 'Alberto', 1922, 'M', 133), +(27308, 'Carol', 1922, 'M', 133), +(27309, 'Junius', 1922, 'M', 133), +(27310, 'Hobart', 1922, 'M', 132), +(27311, 'Lucius', 1922, 'M', 132), +(27312, 'Raleigh', 1922, 'M', 132), +(27313, 'Rupert', 1922, 'M', 132), +(27314, 'Arther', 1922, 'M', 131), +(27315, 'Avery', 1922, 'M', 131), +(27316, 'Mason', 1922, 'M', 131), +(27317, 'Valentine', 1922, 'M', 131), +(27318, 'Raphael', 1922, 'M', 130), +(27319, 'Sammy', 1922, 'M', 130), +(27320, 'Terry', 1922, 'M', 130), +(27321, 'Fay', 1922, 'M', 129), +(27322, 'Felipe', 1922, 'M', 129), +(27323, 'Merton', 1922, 'M', 129), +(27324, 'Dana', 1922, 'M', 128), +(27325, 'Isidore', 1922, 'M', 128), +(27326, 'Jeremiah', 1922, 'M', 128), +(27327, 'Micheal', 1922, 'M', 128), +(27328, 'Shelby', 1922, 'M', 128), +(27329, 'Sebastian', 1922, 'M', 127), +(27330, 'Buddy', 1922, 'M', 126), +(27331, 'Edd', 1922, 'M', 126), +(27332, 'Rubin', 1922, 'M', 126), +(27333, 'Granville', 1922, 'M', 125), +(27334, 'Nickolas', 1922, 'M', 125), +(27335, 'Arden', 1922, 'M', 124), +(27336, 'Enrique', 1922, 'M', 124), +(27337, 'Joshua', 1922, 'M', 124), +(27338, 'Ottis', 1922, 'M', 124), +(27339, 'Albin', 1922, 'M', 123), +(27340, 'Dee', 1922, 'M', 123), +(27341, 'Emmitt', 1922, 'M', 123), +(27342, 'Hector', 1922, 'M', 123), +(27343, 'Lucian', 1922, 'M', 123), +(27344, 'Vaughn', 1922, 'M', 123), +(27345, 'Domenic', 1922, 'M', 122), +(27346, 'Warner', 1922, 'M', 122), +(27347, 'Aldo', 1922, 'M', 121), +(27348, 'Bernice', 1922, 'M', 121), +(27349, 'Joesph', 1922, 'M', 121), +(27350, 'Carson', 1922, 'M', 120), +(27351, 'Julio', 1922, 'M', 120), +(27352, 'Bryan', 1922, 'M', 119), +(27353, 'Fernando', 1922, 'M', 119), +(27354, 'Gaylord', 1922, 'M', 119), +(27355, 'Guido', 1922, 'M', 119), +(27356, 'Stanford', 1922, 'M', 119), +(27357, 'Antone', 1922, 'M', 118), +(27358, 'Emilio', 1922, 'M', 118), +(27359, 'Ignacio', 1922, 'M', 118), +(27360, 'Lacy', 1922, 'M', 118), +(27361, 'Otha', 1922, 'M', 118), +(27362, 'Felton', 1922, 'M', 117), +(27363, 'Jonathan', 1922, 'M', 117), +(27364, 'Frankie', 1922, 'M', 116), +(27365, 'Talmadge', 1922, 'M', 116), +(27366, 'Elmore', 1922, 'M', 115), +(27367, 'Gustave', 1922, 'M', 115), +(27368, 'Harmon', 1922, 'M', 115), +(27369, 'Arturo', 1922, 'M', 114), +(27370, 'King', 1922, 'M', 114), +(27371, 'Marcel', 1922, 'M', 114), +(27372, 'Edsel', 1922, 'M', 113), +(27373, 'Hermon', 1922, 'M', 113), +(27374, 'Jerald', 1922, 'M', 113), +(27375, 'Jules', 1922, 'M', 113), +(27376, 'Coleman', 1922, 'M', 112), +(27377, 'Walker', 1922, 'M', 112), +(27378, 'Dock', 1922, 'M', 111), +(27379, 'Rosario', 1922, 'M', 111), +(27380, 'Rogers', 1922, 'M', 110), +(27381, 'Al', 1922, 'M', 109), +(27382, 'Alphonso', 1922, 'M', 109), +(27383, 'Theo', 1922, 'M', 109), +(27384, 'Danny', 1922, 'M', 108), +(27385, 'Haywood', 1922, 'M', 108), +(27386, 'Lincoln', 1922, 'M', 107), +(27387, 'Merritt', 1922, 'M', 107), +(27388, 'Americo', 1922, 'M', 106), +(27389, 'Dante', 1922, 'M', 106), +(27390, 'Elvis', 1922, 'M', 106), +(27391, 'Winfield', 1922, 'M', 106), +(27392, 'Alvie', 1922, 'M', 105), +(27393, 'Ernesto', 1922, 'M', 105), +(27394, 'Graham', 1922, 'M', 105), +(27395, 'Normand', 1922, 'M', 105), +(27396, 'Romeo', 1922, 'M', 105), +(27397, 'Andres', 1922, 'M', 104), +(27398, 'Edison', 1922, 'M', 104), +(27399, 'Garfield', 1922, 'M', 104), +(27400, 'Oran', 1922, 'M', 104), +(27401, 'Boyce', 1922, 'M', 103), +(27402, 'Dexter', 1922, 'M', 103), +(27403, 'Florian', 1922, 'M', 103), +(27404, 'Otho', 1922, 'M', 103), +(27405, 'Raymon', 1922, 'M', 103), +(27406, 'Asa', 1922, 'M', 101), +(27407, 'Clarance', 1922, 'M', 101), +(27408, 'Matt', 1922, 'M', 101), +(27409, 'Porter', 1922, 'M', 101), +(27410, 'Mary', 1923, 'F', 71634), +(27411, 'Dorothy', 1923, 'F', 39046), +(27412, 'Helen', 1923, 'F', 31494), +(27413, 'Margaret', 1923, 'F', 26132), +(27414, 'Betty', 1923, 'F', 25990), +(27415, 'Ruth', 1923, 'F', 23636), +(27416, 'Virginia', 1923, 'F', 18327), +(27417, 'Mildred', 1923, 'F', 15990), +(27418, 'Elizabeth', 1923, 'F', 15463), +(27419, 'Frances', 1923, 'F', 14874), +(27420, 'Doris', 1923, 'F', 14610), +(27421, 'Evelyn', 1923, 'F', 13172), +(27422, 'Anna', 1923, 'F', 12862), +(27423, 'Marie', 1923, 'F', 11507), +(27424, 'Alice', 1923, 'F', 11331), +(27425, 'Marjorie', 1923, 'F', 10217), +(27426, 'Irene', 1923, 'F', 10050), +(27427, 'Florence', 1923, 'F', 9747), +(27428, 'Jean', 1923, 'F', 9510), +(27429, 'Lillian', 1923, 'F', 9327), +(27430, 'Martha', 1923, 'F', 8965), +(27431, 'Louise', 1923, 'F', 8882), +(27432, 'Rose', 1923, 'F', 8441), +(27433, 'Catherine', 1923, 'F', 8440), +(27434, 'Ruby', 1923, 'F', 8229), +(27435, 'Shirley', 1923, 'F', 7919), +(27436, 'Lois', 1923, 'F', 7814), +(27437, 'Eleanor', 1923, 'F', 7772), +(27438, 'Gladys', 1923, 'F', 7694), +(27439, 'Josephine', 1923, 'F', 7558), +(27440, 'Thelma', 1923, 'F', 7379), +(27441, 'Edna', 1923, 'F', 7299), +(27442, 'Barbara', 1923, 'F', 7209), +(27443, 'Annie', 1923, 'F', 7100), +(27444, 'Lucille', 1923, 'F', 6913), +(27445, 'Edith', 1923, 'F', 6835), +(27446, 'Pauline', 1923, 'F', 6709), +(27447, 'Ethel', 1923, 'F', 6541), +(27448, 'Grace', 1923, 'F', 6316), +(27449, 'Hazel', 1923, 'F', 6244), +(27450, 'Norma', 1923, 'F', 5886), +(27451, 'Bernice', 1923, 'F', 5810), +(27452, 'June', 1923, 'F', 5810), +(27453, 'Marion', 1923, 'F', 5711), +(27454, 'Phyllis', 1923, 'F', 5476), +(27455, 'Beatrice', 1923, 'F', 5463), +(27456, 'Esther', 1923, 'F', 5315), +(27457, 'Gloria', 1923, 'F', 5310), +(27458, 'Clara', 1923, 'F', 5135), +(27459, 'Rita', 1923, 'F', 5094), +(27460, 'Juanita', 1923, 'F', 5049), +(27461, 'Ann', 1923, 'F', 5022), +(27462, 'Emma', 1923, 'F', 4974), +(27463, 'Sarah', 1923, 'F', 4964), +(27464, 'Jane', 1923, 'F', 4919), +(27465, 'Patricia', 1923, 'F', 4801), +(27466, 'Lorraine', 1923, 'F', 4765), +(27467, 'Geraldine', 1923, 'F', 4711), +(27468, 'Gertrude', 1923, 'F', 4699), +(27469, 'Katherine', 1923, 'F', 4579), +(27470, 'Elsie', 1923, 'F', 4550), +(27471, 'Julia', 1923, 'F', 4323), +(27472, 'Agnes', 1923, 'F', 4224), +(27473, 'Bertha', 1923, 'F', 4123), +(27474, 'Marian', 1923, 'F', 4028), +(27475, 'Eva', 1923, 'F', 3973), +(27476, 'Willie', 1923, 'F', 3963), +(27477, 'Ida', 1923, 'F', 3888), +(27478, 'Vivian', 1923, 'F', 3832), +(27479, 'Kathleen', 1923, 'F', 3753), +(27480, 'Anne', 1923, 'F', 3728), +(27481, 'Kathryn', 1923, 'F', 3712), +(27482, 'Laura', 1923, 'F', 3708), +(27483, 'Wilma', 1923, 'F', 3706), +(27484, 'Nancy', 1923, 'F', 3674), +(27485, 'Maxine', 1923, 'F', 3603), +(27486, 'Charlotte', 1923, 'F', 3596), +(27487, 'Pearl', 1923, 'F', 3544), +(27488, 'Viola', 1923, 'F', 3532), +(27489, 'Wanda', 1923, 'F', 3409), +(27490, 'Bessie', 1923, 'F', 3388), +(27491, 'Vera', 1923, 'F', 3375), +(27492, 'Dolores', 1923, 'F', 3370), +(27493, 'Myrtle', 1923, 'F', 3314), +(27494, 'Audrey', 1923, 'F', 3281), +(27495, 'Violet', 1923, 'F', 3276), +(27496, 'Elaine', 1923, 'F', 3211), +(27497, 'Nellie', 1923, 'F', 3185), +(27498, 'Alma', 1923, 'F', 3070), +(27499, 'Jeanne', 1923, 'F', 3040), +(27500, 'Lillie', 1923, 'F', 3035), +(27501, 'Lucy', 1923, 'F', 3001), +(27502, 'Jessie', 1923, 'F', 2996), +(27503, 'Ella', 1923, 'F', 2994), +(27504, 'Eileen', 1923, 'F', 2980), +(27505, 'Stella', 1923, 'F', 2957), +(27506, 'Genevieve', 1923, 'F', 2872), +(27507, 'Sylvia', 1923, 'F', 2837), +(27508, 'Minnie', 1923, 'F', 2783), +(27509, 'Leona', 1923, 'F', 2744), +(27510, 'Margie', 1923, 'F', 2724), +(27511, 'Mabel', 1923, 'F', 2693), +(27512, 'Ellen', 1923, 'F', 2671), +(27513, 'Joyce', 1923, 'F', 2670), +(27514, 'Theresa', 1923, 'F', 2614), +(27515, 'Mattie', 1923, 'F', 2605), +(27516, 'Jennie', 1923, 'F', 2541), +(27517, 'Lena', 1923, 'F', 2521), +(27518, 'Rosemary', 1923, 'F', 2428), +(27519, 'Mae', 1923, 'F', 2425), +(27520, 'Geneva', 1923, 'F', 2406), +(27521, 'Georgia', 1923, 'F', 2369), +(27522, 'Opal', 1923, 'F', 2364), +(27523, 'Muriel', 1923, 'F', 2359), +(27524, 'Marguerite', 1923, 'F', 2358), +(27525, 'Velma', 1923, 'F', 2338), +(27526, 'Joan', 1923, 'F', 2307), +(27527, 'Marilyn', 1923, 'F', 2288), +(27528, 'Blanche', 1923, 'F', 2267), +(27529, 'Christine', 1923, 'F', 2257), +(27530, 'Janet', 1923, 'F', 2221), +(27531, 'Harriet', 1923, 'F', 2199), +(27532, 'Sara', 1923, 'F', 2185), +(27533, 'Loretta', 1923, 'F', 2142), +(27534, 'Eunice', 1923, 'F', 2114), +(27535, 'Bonnie', 1923, 'F', 2095), +(27536, 'Arlene', 1923, 'F', 2091), +(27537, 'Emily', 1923, 'F', 2056), +(27538, 'Beulah', 1923, 'F', 2051), +(27539, 'Rosa', 1923, 'F', 2050), +(27540, 'Jeanette', 1923, 'F', 2030), +(27541, 'Carolyn', 1923, 'F', 2010), +(27542, 'Maria', 1923, 'F', 1999), +(27543, 'Carrie', 1923, 'F', 1928), +(27544, 'Alberta', 1923, 'F', 1921), +(27545, 'Dora', 1923, 'F', 1904), +(27546, 'Naomi', 1923, 'F', 1901), +(27547, 'Anita', 1923, 'F', 1869), +(27548, 'Carol', 1923, 'F', 1864), +(27549, 'Hilda', 1923, 'F', 1860), +(27550, 'Inez', 1923, 'F', 1852), +(27551, 'Fannie', 1923, 'F', 1776), +(27552, 'Madeline', 1923, 'F', 1756), +(27553, 'Beverly', 1923, 'F', 1738), +(27554, 'Miriam', 1923, 'F', 1732), +(27555, 'Verna', 1923, 'F', 1713), +(27556, 'Hattie', 1923, 'F', 1700), +(27557, 'Bette', 1923, 'F', 1693), +(27558, 'Cora', 1923, 'F', 1691), +(27559, 'Constance', 1923, 'F', 1686), +(27560, 'Lula', 1923, 'F', 1673), +(27561, 'Roberta', 1923, 'F', 1658), +(27562, 'Ada', 1923, 'F', 1638), +(27563, 'Mamie', 1923, 'F', 1606), +(27564, 'Peggy', 1923, 'F', 1592), +(27565, 'Donna', 1923, 'F', 1578), +(27566, 'Lola', 1923, 'F', 1512), +(27567, 'Marcella', 1923, 'F', 1503), +(27568, 'Sophie', 1923, 'F', 1490), +(27569, 'Rachel', 1923, 'F', 1485), +(27570, 'Flora', 1923, 'F', 1475), +(27571, 'Mable', 1923, 'F', 1472), +(27572, 'Daisy', 1923, 'F', 1443), +(27573, 'Winifred', 1923, 'F', 1420), +(27574, 'Jacqueline', 1923, 'F', 1402), +(27575, 'Rosie', 1923, 'F', 1395), +(27576, 'Claire', 1923, 'F', 1392), +(27577, 'Erma', 1923, 'F', 1390), +(27578, 'Olga', 1923, 'F', 1366), +(27579, 'Susie', 1923, 'F', 1334), +(27580, 'Eula', 1923, 'F', 1307), +(27581, 'Laverne', 1923, 'F', 1307), +(27582, 'Caroline', 1923, 'F', 1304), +(27583, 'Rebecca', 1923, 'F', 1273), +(27584, 'Antoinette', 1923, 'F', 1250), +(27585, 'Maggie', 1923, 'F', 1249), +(27586, 'Billie', 1923, 'F', 1248), +(27587, 'Lorene', 1923, 'F', 1227), +(27588, 'Olive', 1923, 'F', 1222), +(27589, 'Nora', 1923, 'F', 1221), +(27590, 'Eloise', 1923, 'F', 1190), +(27591, 'Estelle', 1923, 'F', 1190), +(27592, 'Nina', 1923, 'F', 1190), +(27593, 'Delores', 1923, 'F', 1182), +(27594, 'Sadie', 1923, 'F', 1180), +(27595, 'Regina', 1923, 'F', 1175), +(27596, 'Fern', 1923, 'F', 1169), +(27597, 'Rosalie', 1923, 'F', 1160), +(27598, 'Irma', 1923, 'F', 1159), +(27599, 'Victoria', 1923, 'F', 1149), +(27600, 'Henrietta', 1923, 'F', 1148), +(27601, 'Della', 1923, 'F', 1126), +(27602, 'Lottie', 1923, 'F', 1098), +(27603, 'Jeannette', 1923, 'F', 1081), +(27604, 'Adeline', 1923, 'F', 1077), +(27605, 'Lila', 1923, 'F', 1063), +(27606, 'Bettie', 1923, 'F', 1057), +(27607, 'Lucile', 1923, 'F', 1055), +(27608, 'Angelina', 1923, 'F', 1049), +(27609, 'Imogene', 1923, 'F', 1001), +(27610, 'Sally', 1923, 'F', 999), +(27611, 'Nettie', 1923, 'F', 998), +(27612, 'Faye', 1923, 'F', 984); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(27613, 'Lydia', 1923, 'F', 966), +(27614, 'Amelia', 1923, 'F', 964), +(27615, 'Katie', 1923, 'F', 950), +(27616, 'Johnnie', 1923, 'F', 946), +(27617, 'Veronica', 1923, 'F', 945), +(27618, 'Carmen', 1923, 'F', 925), +(27619, 'Dorothea', 1923, 'F', 925), +(27620, 'Melba', 1923, 'F', 922), +(27621, 'Essie', 1923, 'F', 917), +(27622, 'Angeline', 1923, 'F', 905), +(27623, 'Ernestine', 1923, 'F', 899), +(27624, 'Annette', 1923, 'F', 887), +(27625, 'Cleo', 1923, 'F', 884), +(27626, 'Goldie', 1923, 'F', 879), +(27627, 'Iris', 1923, 'F', 875), +(27628, 'Freda', 1923, 'F', 868), +(27629, 'May', 1923, 'F', 865), +(27630, 'Isabel', 1923, 'F', 855), +(27631, 'Gwendolyn', 1923, 'F', 849), +(27632, 'Yvonne', 1923, 'F', 843), +(27633, 'Ollie', 1923, 'F', 831), +(27634, 'Luella', 1923, 'F', 821), +(27635, 'Lela', 1923, 'F', 816), +(27636, 'Susan', 1923, 'F', 812), +(27637, 'Priscilla', 1923, 'F', 810), +(27638, 'Jewell', 1923, 'F', 802), +(27639, 'Sallie', 1923, 'F', 791), +(27640, 'Adele', 1923, 'F', 788), +(27641, 'Ora', 1923, 'F', 788), +(27642, 'Janice', 1923, 'F', 787), +(27643, 'Cecelia', 1923, 'F', 786), +(27644, 'Effie', 1923, 'F', 779), +(27645, 'Iva', 1923, 'F', 760), +(27646, 'Addie', 1923, 'F', 756), +(27647, 'Etta', 1923, 'F', 743), +(27648, 'Cecilia', 1923, 'F', 741), +(27649, 'Eleanore', 1923, 'F', 729), +(27650, 'Reba', 1923, 'F', 729), +(27651, 'Jewel', 1923, 'F', 728), +(27652, 'Teresa', 1923, 'F', 724), +(27653, 'Isabelle', 1923, 'F', 722), +(27654, 'Selma', 1923, 'F', 703), +(27655, 'Janie', 1923, 'F', 698), +(27656, 'Natalie', 1923, 'F', 694), +(27657, 'Leola', 1923, 'F', 683), +(27658, 'Angela', 1923, 'F', 666), +(27659, 'Celia', 1923, 'F', 663), +(27660, 'Elva', 1923, 'F', 655), +(27661, 'Arline', 1923, 'F', 653), +(27662, 'Nadine', 1923, 'F', 653), +(27663, 'Ola', 1923, 'F', 630), +(27664, 'Alta', 1923, 'F', 628), +(27665, 'Lizzie', 1923, 'F', 625), +(27666, 'Nell', 1923, 'F', 624), +(27667, 'Francis', 1923, 'F', 622), +(27668, 'Ina', 1923, 'F', 620), +(27669, 'Annabelle', 1923, 'F', 615), +(27670, 'Yolanda', 1923, 'F', 602), +(27671, 'Sue', 1923, 'F', 601), +(27672, 'Amy', 1923, 'F', 596), +(27673, 'Fay', 1923, 'F', 596), +(27674, 'Lenora', 1923, 'F', 589), +(27675, 'Carmela', 1923, 'F', 587), +(27676, 'Elnora', 1923, 'F', 580), +(27677, 'Connie', 1923, 'F', 576), +(27678, 'Eugenia', 1923, 'F', 571), +(27679, 'Matilda', 1923, 'F', 570), +(27680, 'Helene', 1923, 'F', 569), +(27681, 'Estella', 1923, 'F', 564), +(27682, 'Elinor', 1923, 'F', 556), +(27683, 'Elvira', 1923, 'F', 553), +(27684, 'Nannie', 1923, 'F', 548), +(27685, 'Mavis', 1923, 'F', 546), +(27686, 'Joy', 1923, 'F', 540), +(27687, 'Frieda', 1923, 'F', 537), +(27688, 'Gracie', 1923, 'F', 532), +(27689, 'Clarice', 1923, 'F', 530), +(27690, 'Olivia', 1923, 'F', 528), +(27691, 'Ila', 1923, 'F', 523), +(27692, 'Harriett', 1923, 'F', 522), +(27693, 'Virgie', 1923, 'F', 521), +(27694, 'Bernadine', 1923, 'F', 516), +(27695, 'Dorthy', 1923, 'F', 516), +(27696, 'Margery', 1923, 'F', 515), +(27697, 'Flossie', 1923, 'F', 505), +(27698, 'Elma', 1923, 'F', 494), +(27699, 'Darlene', 1923, 'F', 493), +(27700, 'Lee', 1923, 'F', 493), +(27701, 'Marcia', 1923, 'F', 492), +(27702, 'Mollie', 1923, 'F', 491), +(27703, 'Leah', 1923, 'F', 487), +(27704, 'Rena', 1923, 'F', 486), +(27705, 'Cecile', 1923, 'F', 474), +(27706, 'Myra', 1923, 'F', 472), +(27707, 'Maude', 1923, 'F', 471), +(27708, 'Judith', 1923, 'F', 461), +(27709, 'Winnie', 1923, 'F', 460), +(27710, 'Willa', 1923, 'F', 457), +(27711, 'Frankie', 1923, 'F', 456), +(27712, 'Sybil', 1923, 'F', 455), +(27713, 'Carmella', 1923, 'F', 451), +(27714, 'Concetta', 1923, 'F', 449), +(27715, 'Zelma', 1923, 'F', 447), +(27716, 'Odessa', 1923, 'F', 445), +(27717, 'Alyce', 1923, 'F', 436), +(27718, 'Rhoda', 1923, 'F', 435), +(27719, 'Hannah', 1923, 'F', 434), +(27720, 'Rosetta', 1923, 'F', 427), +(27721, 'Edythe', 1923, 'F', 423), +(27722, 'Linda', 1923, 'F', 423), +(27723, 'Aileen', 1923, 'F', 420), +(27724, 'Avis', 1923, 'F', 418), +(27725, 'Bobbie', 1923, 'F', 418), +(27726, 'Lily', 1923, 'F', 418), +(27727, 'Josie', 1923, 'F', 413), +(27728, 'Loraine', 1923, 'F', 412), +(27729, 'Dollie', 1923, 'F', 410), +(27730, 'Merle', 1923, 'F', 410), +(27731, 'Millie', 1923, 'F', 407), +(27732, 'Neva', 1923, 'F', 407), +(27733, 'Allie', 1923, 'F', 401), +(27734, 'Letha', 1923, 'F', 401), +(27735, 'Deloris', 1923, 'F', 400), +(27736, 'Glenna', 1923, 'F', 391), +(27737, 'Jimmie', 1923, 'F', 391), +(27738, 'Ramona', 1923, 'F', 390), +(27739, 'Bettye', 1923, 'F', 389), +(27740, 'Charlene', 1923, 'F', 389), +(27741, 'Cornelia', 1923, 'F', 386), +(27742, 'Lenore', 1923, 'F', 386), +(27743, 'Jo', 1923, 'F', 385), +(27744, 'Hester', 1923, 'F', 382), +(27745, 'Rosella', 1923, 'F', 382), +(27746, 'Paula', 1923, 'F', 378), +(27747, 'Earline', 1923, 'F', 373), +(27748, 'Madge', 1923, 'F', 373), +(27749, 'Corinne', 1923, 'F', 372), +(27750, 'Helena', 1923, 'F', 371), +(27751, 'Sophia', 1923, 'F', 369), +(27752, 'Adelaide', 1923, 'F', 368), +(27753, 'Hope', 1923, 'F', 368), +(27754, 'Berniece', 1923, 'F', 364), +(27755, 'Lorna', 1923, 'F', 363), +(27756, 'Amanda', 1923, 'F', 362), +(27757, 'Guadalupe', 1923, 'F', 361), +(27758, 'Bernadette', 1923, 'F', 359), +(27759, 'Suzanne', 1923, 'F', 359), +(27760, 'Christina', 1923, 'F', 357), +(27761, 'Claudia', 1923, 'F', 356), +(27762, 'Lora', 1923, 'F', 353), +(27763, 'Dolly', 1923, 'F', 350), +(27764, 'Wilda', 1923, 'F', 350), +(27765, 'Iona', 1923, 'F', 343), +(27766, 'Lou', 1923, 'F', 343), +(27767, 'Joanne', 1923, 'F', 342), +(27768, 'Lorena', 1923, 'F', 342), +(27769, 'Aurora', 1923, 'F', 338), +(27770, 'Eddie', 1923, 'F', 337), +(27771, 'John', 1923, 'F', 336), +(27772, 'Leila', 1923, 'F', 335), +(27773, 'Patsy', 1923, 'F', 334), +(27774, 'Eliza', 1923, 'F', 333), +(27775, 'Florine', 1923, 'F', 331), +(27776, 'Dixie', 1923, 'F', 330), +(27777, 'Consuelo', 1923, 'F', 327), +(27778, 'Corine', 1923, 'F', 326), +(27779, 'Ophelia', 1923, 'F', 323), +(27780, 'Ruthie', 1923, 'F', 321), +(27781, 'Lessie', 1923, 'F', 319), +(27782, 'Pearlie', 1923, 'F', 317), +(27783, 'Lilly', 1923, 'F', 316), +(27784, 'Nola', 1923, 'F', 312), +(27785, 'Polly', 1923, 'F', 312), +(27786, 'Colleen', 1923, 'F', 310), +(27787, 'Cynthia', 1923, 'F', 310), +(27788, 'Madelyn', 1923, 'F', 310), +(27789, 'Lupe', 1923, 'F', 308), +(27790, 'Reva', 1923, 'F', 307), +(27791, 'Ione', 1923, 'F', 303), +(27792, 'Callie', 1923, 'F', 300), +(27793, 'Antonia', 1923, 'F', 299), +(27794, 'Philomena', 1923, 'F', 299), +(27795, 'Maudie', 1923, 'F', 295), +(27796, 'Delia', 1923, 'F', 293), +(27797, 'Molly', 1923, 'F', 293), +(27798, 'Mona', 1923, 'F', 292), +(27799, 'Melva', 1923, 'F', 291), +(27800, 'Dorris', 1923, 'F', 290), +(27801, 'Aline', 1923, 'F', 288), +(27802, 'Beth', 1923, 'F', 287), +(27803, 'Lelia', 1923, 'F', 287), +(27804, 'Robbie', 1923, 'F', 286), +(27805, 'Kay', 1923, 'F', 285), +(27806, 'Diana', 1923, 'F', 284), +(27807, 'Jaunita', 1923, 'F', 284), +(27808, 'Marjory', 1923, 'F', 283), +(27809, 'Harriette', 1923, 'F', 280), +(27810, 'Margarita', 1923, 'F', 280), +(27811, 'James', 1923, 'F', 279), +(27812, 'Dortha', 1923, 'F', 276), +(27813, 'Mercedes', 1923, 'F', 275), +(27814, 'Nona', 1923, 'F', 275), +(27815, 'Maryann', 1923, 'F', 273), +(27816, 'Tillie', 1923, 'F', 272), +(27817, 'Zella', 1923, 'F', 267), +(27818, 'Katharine', 1923, 'F', 266), +(27819, 'Leota', 1923, 'F', 266), +(27820, 'Gussie', 1923, 'F', 265), +(27821, 'Marietta', 1923, 'F', 264), +(27822, 'Roslyn', 1923, 'F', 263), +(27823, 'Georgie', 1923, 'F', 260), +(27824, 'Johanna', 1923, 'F', 260), +(27825, 'Maurine', 1923, 'F', 260), +(27826, 'Joann', 1923, 'F', 257), +(27827, 'Dessie', 1923, 'F', 256), +(27828, 'Winona', 1923, 'F', 256), +(27829, 'Bertie', 1923, 'F', 255), +(27830, 'Althea', 1923, 'F', 254), +(27831, 'Tommie', 1923, 'F', 253), +(27832, 'Augusta', 1923, 'F', 251), +(27833, 'Marianne', 1923, 'F', 250), +(27834, 'Robert', 1923, 'F', 250), +(27835, 'Rosalind', 1923, 'F', 249), +(27836, 'Elouise', 1923, 'F', 248), +(27837, 'Queen', 1923, 'F', 248), +(27838, 'Earnestine', 1923, 'F', 246), +(27839, 'Louella', 1923, 'F', 246), +(27840, 'Jannie', 1923, 'F', 245), +(27841, 'Allene', 1923, 'F', 244), +(27842, 'Stephanie', 1923, 'F', 244), +(27843, 'Marilynn', 1923, 'F', 243), +(27844, 'Ilene', 1923, 'F', 242), +(27845, 'Clare', 1923, 'F', 240), +(27846, 'Alene', 1923, 'F', 239), +(27847, 'Evangeline', 1923, 'F', 239), +(27848, 'Lavonne', 1923, 'F', 238), +(27849, 'Nelda', 1923, 'F', 238), +(27850, 'Corrine', 1923, 'F', 236), +(27851, 'Lorine', 1923, 'F', 236), +(27852, 'Oma', 1923, 'F', 236), +(27853, 'Tessie', 1923, 'F', 235), +(27854, 'Isabell', 1923, 'F', 234), +(27855, 'Jacquelyn', 1923, 'F', 233), +(27856, 'Rosemarie', 1923, 'F', 233), +(27857, 'Judy', 1923, 'F', 231), +(27858, 'Leatrice', 1923, 'F', 231), +(27859, 'Birdie', 1923, 'F', 230), +(27860, 'Ester', 1923, 'F', 230), +(27861, 'Iola', 1923, 'F', 229), +(27862, 'Pansy', 1923, 'F', 229), +(27863, 'Isabella', 1923, 'F', 228), +(27864, 'Wilhelmina', 1923, 'F', 227), +(27865, 'Eris', 1923, 'F', 226), +(27866, 'Zelda', 1923, 'F', 226), +(27867, 'Kate', 1923, 'F', 225), +(27868, 'Vernice', 1923, 'F', 225), +(27869, 'William', 1923, 'F', 225), +(27870, 'Enid', 1923, 'F', 224), +(27871, 'Georgette', 1923, 'F', 223), +(27872, 'Maryjane', 1923, 'F', 223), +(27873, 'Faith', 1923, 'F', 222), +(27874, 'Theda', 1923, 'F', 220), +(27875, 'Betsy', 1923, 'F', 217), +(27876, 'Erna', 1923, 'F', 217), +(27877, 'Gene', 1923, 'F', 217), +(27878, 'Beryl', 1923, 'F', 216), +(27879, 'Leora', 1923, 'F', 215), +(27880, 'Mayme', 1923, 'F', 215), +(27881, 'Angie', 1923, 'F', 212), +(27882, 'Julie', 1923, 'F', 212), +(27883, 'Elena', 1923, 'F', 211), +(27884, 'Roxie', 1923, 'F', 211), +(27885, 'Alvina', 1923, 'F', 210), +(27886, 'Rubye', 1923, 'F', 210), +(27887, 'Edwina', 1923, 'F', 209), +(27888, 'Elda', 1923, 'F', 208), +(27889, 'Filomena', 1923, 'F', 207), +(27890, 'Retha', 1923, 'F', 205), +(27891, 'Valeria', 1923, 'F', 205), +(27892, 'Hallie', 1923, 'F', 204), +(27893, 'Leta', 1923, 'F', 204), +(27894, 'Therese', 1923, 'F', 204), +(27895, 'Laurel', 1923, 'F', 202), +(27896, 'Lucinda', 1923, 'F', 201), +(27897, 'Madeleine', 1923, 'F', 201), +(27898, 'Mozelle', 1923, 'F', 201), +(27899, 'Elise', 1923, 'F', 200), +(27900, 'Delphine', 1923, 'F', 199), +(27901, 'Joanna', 1923, 'F', 199), +(27902, 'Magdalene', 1923, 'F', 199), +(27903, 'Monica', 1923, 'F', 199), +(27904, 'Jayne', 1923, 'F', 198), +(27905, 'Alfreda', 1923, 'F', 197), +(27906, 'Verda', 1923, 'F', 195), +(27907, 'Phoebe', 1923, 'F', 194), +(27908, 'Syble', 1923, 'F', 194), +(27909, 'Elvera', 1923, 'F', 193), +(27910, 'Freida', 1923, 'F', 193), +(27911, 'Bennie', 1923, 'F', 192), +(27912, 'Jerry', 1923, 'F', 192), +(27913, 'Freddie', 1923, 'F', 190), +(27914, 'Delma', 1923, 'F', 189), +(27915, 'Dorotha', 1923, 'F', 189), +(27916, 'Elisabeth', 1923, 'F', 189), +(27917, 'Jenny', 1923, 'F', 189), +(27918, 'Catharine', 1923, 'F', 188), +(27919, 'Rowena', 1923, 'F', 188), +(27920, 'Garnet', 1923, 'F', 187), +(27921, 'Lettie', 1923, 'F', 187), +(27922, 'Novella', 1923, 'F', 186), +(27923, 'Alicia', 1923, 'F', 185), +(27924, 'Margarette', 1923, 'F', 185), +(27925, 'Carole', 1923, 'F', 184), +(27926, 'Louisa', 1923, 'F', 184), +(27927, 'Vada', 1923, 'F', 184), +(27928, 'Adell', 1923, 'F', 183), +(27929, 'Charlie', 1923, 'F', 183), +(27930, 'Maureen', 1923, 'F', 183), +(27931, 'Vida', 1923, 'F', 183), +(27932, 'Hortense', 1923, 'F', 182), +(27933, 'Dona', 1923, 'F', 181), +(27934, 'Dovie', 1923, 'F', 181), +(27935, 'Earlene', 1923, 'F', 181), +(27936, 'Ursula', 1923, 'F', 181), +(27937, 'Jackie', 1923, 'F', 180), +(27938, 'Velda', 1923, 'F', 180), +(27939, 'Aurelia', 1923, 'F', 179), +(27940, 'George', 1923, 'F', 178), +(27941, 'Hellen', 1923, 'F', 178), +(27942, 'Lauretta', 1923, 'F', 178), +(27943, 'Belle', 1923, 'F', 177), +(27944, 'Doreen', 1923, 'F', 177), +(27945, 'Fanny', 1923, 'F', 177), +(27946, 'Lura', 1923, 'F', 177), +(27947, 'Margret', 1923, 'F', 177), +(27948, 'Arleen', 1923, 'F', 176), +(27949, 'Ferne', 1923, 'F', 176), +(27950, 'Johnie', 1923, 'F', 176), +(27951, 'Millicent', 1923, 'F', 176), +(27952, 'Rae', 1923, 'F', 176), +(27953, 'Camille', 1923, 'F', 175), +(27954, 'Mazie', 1923, 'F', 174), +(27955, 'Ava', 1923, 'F', 173), +(27956, 'Emogene', 1923, 'F', 173), +(27957, 'Oleta', 1923, 'F', 173), +(27958, 'Bella', 1923, 'F', 172), +(27959, 'Belva', 1923, 'F', 172), +(27960, 'Justine', 1923, 'F', 172), +(27961, 'Juana', 1923, 'F', 171), +(27962, 'Lucia', 1923, 'F', 171), +(27963, 'Shirlee', 1923, 'F', 170), +(27964, 'Leone', 1923, 'F', 169), +(27965, 'Manuela', 1923, 'F', 169), +(27966, 'Vesta', 1923, 'F', 169), +(27967, 'Petra', 1923, 'F', 168), +(27968, 'Ardis', 1923, 'F', 167), +(27969, 'Josefina', 1923, 'F', 167), +(27970, 'Katheryn', 1923, 'F', 167), +(27971, 'Rosalee', 1923, 'F', 167), +(27972, 'Ima', 1923, 'F', 166), +(27973, 'Bonita', 1923, 'F', 164), +(27974, 'Twila', 1923, 'F', 164), +(27975, 'Veda', 1923, 'F', 162), +(27976, 'Alpha', 1923, 'F', 161), +(27977, 'Idella', 1923, 'F', 161), +(27978, 'Claudine', 1923, 'F', 160), +(27979, 'Charles', 1923, 'F', 159), +(27980, 'Theodora', 1923, 'F', 158), +(27981, 'Florene', 1923, 'F', 157), +(27982, 'Maud', 1923, 'F', 157), +(27983, 'Agatha', 1923, 'F', 156), +(27984, 'Cassie', 1923, 'F', 156), +(27985, 'Esperanza', 1923, 'F', 156), +(27986, 'Lue', 1923, 'F', 156), +(27987, 'Eldora', 1923, 'F', 155), +(27988, 'Valerie', 1923, 'F', 155), +(27989, 'Emilie', 1923, 'F', 154), +(27990, 'Gail', 1923, 'F', 154), +(27991, 'Minerva', 1923, 'F', 154), +(27992, 'Marvel', 1923, 'F', 153), +(27993, 'Nita', 1923, 'F', 152), +(27994, 'Una', 1923, 'F', 152), +(27995, 'Germaine', 1923, 'F', 151), +(27996, 'Juliette', 1923, 'F', 151), +(27997, 'Leslie', 1923, 'F', 151), +(27998, 'Yvette', 1923, 'F', 151), +(27999, 'Myrtis', 1923, 'F', 150), +(28000, 'Odell', 1923, 'F', 150), +(28001, 'Tina', 1923, 'F', 150), +(28002, 'Gretchen', 1923, 'F', 149), +(28003, 'Alva', 1923, 'F', 148), +(28004, 'Gertie', 1923, 'F', 148), +(28005, 'Gilda', 1923, 'F', 148), +(28006, 'Janette', 1923, 'F', 148), +(28007, 'Verla', 1923, 'F', 148), +(28008, 'Camilla', 1923, 'F', 147), +(28009, 'Cecil', 1923, 'F', 146), +(28010, 'Celeste', 1923, 'F', 146), +(28011, 'Rosalyn', 1923, 'F', 146), +(28012, 'Alda', 1923, 'F', 145), +(28013, 'Aletha', 1923, 'F', 145), +(28014, 'Winnifred', 1923, 'F', 145), +(28015, 'Zola', 1923, 'F', 145), +(28016, 'Albina', 1923, 'F', 144), +(28017, 'Artie', 1923, 'F', 144), +(28018, 'Evelyne', 1923, 'F', 144), +(28019, 'Georgiana', 1923, 'F', 144), +(28020, 'Ona', 1923, 'F', 144), +(28021, 'Evalyn', 1923, 'F', 143), +(28022, 'Jeane', 1923, 'F', 143), +(28023, 'Joe', 1923, 'F', 143), +(28024, 'Vernell', 1923, 'F', 143), +(28025, 'Celestine', 1923, 'F', 142), +(28026, 'Dorcas', 1923, 'F', 142), +(28027, 'Lona', 1923, 'F', 142), +(28028, 'Marcelle', 1923, 'F', 142), +(28029, 'Ardith', 1923, 'F', 141), +(28030, 'Floy', 1923, 'F', 141), +(28031, 'Lavon', 1923, 'F', 141), +(28032, 'Albertha', 1923, 'F', 140), +(28033, 'Mathilda', 1923, 'F', 140), +(28034, 'Patty', 1923, 'F', 139), +(28035, 'Sheila', 1923, 'F', 139), +(28036, 'Clementine', 1923, 'F', 138), +(28037, 'Elsa', 1923, 'F', 138), +(28038, 'Blanch', 1923, 'F', 137), +(28039, 'Carmel', 1923, 'F', 137), +(28040, 'Lulu', 1923, 'F', 137), +(28041, 'Renee', 1923, 'F', 137), +(28042, 'Rhea', 1923, 'F', 135), +(28043, 'Annamae', 1923, 'F', 134), +(28044, 'Mina', 1923, 'F', 134), +(28045, 'Francisca', 1923, 'F', 133), +(28046, 'Hettie', 1923, 'F', 133), +(28047, 'Pearline', 1923, 'F', 133), +(28048, 'Antonette', 1923, 'F', 132), +(28049, 'Cathryn', 1923, 'F', 132), +(28050, 'Rubie', 1923, 'F', 132), +(28051, 'Adrienne', 1923, 'F', 131), +(28052, 'Beverley', 1923, 'F', 131), +(28053, 'Dawn', 1923, 'F', 131), +(28054, 'Lavern', 1923, 'F', 131), +(28055, 'Myrna', 1923, 'F', 131), +(28056, 'Roma', 1923, 'F', 130), +(28057, 'Zora', 1923, 'F', 130), +(28058, 'Abbie', 1923, 'F', 129), +(28059, 'Emilia', 1923, 'F', 129), +(28060, 'Marianna', 1923, 'F', 129), +(28061, 'Orpha', 1923, 'F', 129), +(28062, 'Carolina', 1923, 'F', 128), +(28063, 'Cordelia', 1923, 'F', 128), +(28064, 'Eleanora', 1923, 'F', 128), +(28065, 'Reta', 1923, 'F', 128), +(28066, 'Treva', 1923, 'F', 128), +(28067, 'Vergie', 1923, 'F', 128), +(28068, 'Magnolia', 1923, 'F', 127), +(28069, 'Maybelle', 1923, 'F', 127), +(28070, 'Rosina', 1923, 'F', 127), +(28071, 'Larue', 1923, 'F', 126), +(28072, 'Linnie', 1923, 'F', 126), +(28073, 'Myrtice', 1923, 'F', 126), +(28074, 'Ouida', 1923, 'F', 126), +(28075, 'Estell', 1923, 'F', 125), +(28076, 'Georgianna', 1923, 'F', 125), +(28077, 'Nan', 1923, 'F', 125), +(28078, 'Annetta', 1923, 'F', 123), +(28079, 'Glenda', 1923, 'F', 123), +(28080, 'Adela', 1923, 'F', 122), +(28081, 'Doretha', 1923, 'F', 122), +(28082, 'Era', 1923, 'F', 122), +(28083, 'Vincenza', 1923, 'F', 122), +(28084, 'Kathrine', 1923, 'F', 121), +(28085, 'Melvina', 1923, 'F', 121), +(28086, 'Annabell', 1923, 'F', 120), +(28087, 'Leonora', 1923, 'F', 120), +(28088, 'Mittie', 1923, 'F', 120), +(28089, 'Ray', 1923, 'F', 120), +(28090, 'Sammie', 1923, 'F', 120), +(28091, 'Ethelyn', 1923, 'F', 119), +(28092, 'Annabel', 1923, 'F', 118), +(28093, 'Deborah', 1923, 'F', 118), +(28094, 'Lavina', 1923, 'F', 116), +(28095, 'Diane', 1923, 'F', 115), +(28096, 'Charline', 1923, 'F', 114), +(28097, 'Laverna', 1923, 'F', 114), +(28098, 'Marlene', 1923, 'F', 114), +(28099, 'Elna', 1923, 'F', 113), +(28100, 'Margarett', 1923, 'F', 113), +(28101, 'Berneice', 1923, 'F', 112), +(28102, 'Lovie', 1923, 'F', 112), +(28103, 'Pat', 1923, 'F', 112), +(28104, 'Ruthe', 1923, 'F', 112), +(28105, 'Almeda', 1923, 'F', 111), +(28106, 'Madonna', 1923, 'F', 111), +(28107, 'Sibyl', 1923, 'F', 111), +(28108, 'Gwen', 1923, 'F', 110), +(28109, 'Sandra', 1923, 'F', 110), +(28110, 'Crystal', 1923, 'F', 109), +(28111, 'Tressie', 1923, 'F', 109), +(28112, 'Anastasia', 1923, 'F', 108), +(28113, 'Bethel', 1923, 'F', 108), +(28114, 'Daphne', 1923, 'F', 107), +(28115, 'Janis', 1923, 'F', 107), +(28116, 'Kitty', 1923, 'F', 107), +(28117, 'Felicia', 1923, 'F', 106), +(28118, 'Joseph', 1923, 'F', 106), +(28119, 'Magdalena', 1923, 'F', 106), +(28120, 'Martina', 1923, 'F', 106), +(28121, 'Nelle', 1923, 'F', 106), +(28122, 'Verona', 1923, 'F', 106), +(28123, 'Pattie', 1923, 'F', 105), +(28124, 'Lida', 1923, 'F', 104), +(28125, 'Nathalie', 1923, 'F', 104), +(28126, 'Velva', 1923, 'F', 104), +(28127, 'Donnie', 1923, 'F', 103), +(28128, 'Maryellen', 1923, 'F', 103), +(28129, 'Rachael', 1923, 'F', 103), +(28130, 'Ivy', 1923, 'F', 102), +(28131, 'Mozell', 1923, 'F', 102), +(28132, 'Zula', 1923, 'F', 102), +(28133, 'Audra', 1923, 'F', 101), +(28134, 'Norene', 1923, 'F', 101), +(28135, 'Waneta', 1923, 'F', 101), +(28136, 'Claudie', 1923, 'F', 100), +(28137, 'Leatha', 1923, 'F', 100), +(28138, 'John', 1923, 'M', 57471), +(28139, 'Robert', 1923, 'M', 56116), +(28140, 'William', 1923, 'M', 52131), +(28141, 'James', 1923, 'M', 50464), +(28142, 'Charles', 1923, 'M', 28959), +(28143, 'George', 1923, 'M', 27028), +(28144, 'Joseph', 1923, 'M', 25558), +(28145, 'Edward', 1923, 'M', 20595), +(28146, 'Richard', 1923, 'M', 18881), +(28147, 'Donald', 1923, 'M', 16434), +(28148, 'Frank', 1923, 'M', 15908), +(28149, 'Thomas', 1923, 'M', 15884), +(28150, 'Harold', 1923, 'M', 13874), +(28151, 'Paul', 1923, 'M', 13367), +(28152, 'Raymond', 1923, 'M', 12461), +(28153, 'Walter', 1923, 'M', 12436), +(28154, 'Jack', 1923, 'M', 11195), +(28155, 'Henry', 1923, 'M', 11067), +(28156, 'Arthur', 1923, 'M', 9919), +(28157, 'Albert', 1923, 'M', 9827), +(28158, 'Kenneth', 1923, 'M', 9729), +(28159, 'Harry', 1923, 'M', 9262), +(28160, 'Ralph', 1923, 'M', 8628), +(28161, 'David', 1923, 'M', 8236), +(28162, 'Eugene', 1923, 'M', 7949), +(28163, 'Howard', 1923, 'M', 7160), +(28164, 'Louis', 1923, 'M', 7076), +(28165, 'Carl', 1923, 'M', 6871), +(28166, 'Clarence', 1923, 'M', 6804), +(28167, 'Willie', 1923, 'M', 6659), +(28168, 'Earl', 1923, 'M', 6341), +(28169, 'Fred', 1923, 'M', 6316), +(28170, 'Roy', 1923, 'M', 6315), +(28171, 'Francis', 1923, 'M', 6086), +(28172, 'Joe', 1923, 'M', 6005), +(28173, 'Lawrence', 1923, 'M', 5917), +(28174, 'Leonard', 1923, 'M', 5486), +(28175, 'Ernest', 1923, 'M', 5373), +(28176, 'Anthony', 1923, 'M', 5117), +(28177, 'Herbert', 1923, 'M', 5073), +(28178, 'Stanley', 1923, 'M', 5035), +(28179, 'Alfred', 1923, 'M', 5006), +(28180, 'Warren', 1923, 'M', 4819), +(28181, 'Norman', 1923, 'M', 4706), +(28182, 'Samuel', 1923, 'M', 4577), +(28183, 'Bernard', 1923, 'M', 4377), +(28184, 'Daniel', 1923, 'M', 4266), +(28185, 'Melvin', 1923, 'M', 4006), +(28186, 'Leo', 1923, 'M', 3971), +(28187, 'Michael', 1923, 'M', 3914), +(28188, 'Marvin', 1923, 'M', 3813), +(28189, 'Russell', 1923, 'M', 3804), +(28190, 'Andrew', 1923, 'M', 3748), +(28191, 'Gerald', 1923, 'M', 3693), +(28192, 'Leroy', 1923, 'M', 3689), +(28193, 'Edwin', 1923, 'M', 3651), +(28194, 'Elmer', 1923, 'M', 3630), +(28195, 'Peter', 1923, 'M', 3409), +(28196, 'Lloyd', 1923, 'M', 3386), +(28197, 'Frederick', 1923, 'M', 3279), +(28198, 'Ray', 1923, 'M', 3159), +(28199, 'Theodore', 1923, 'M', 3157), +(28200, 'Chester', 1923, 'M', 3151), +(28201, 'Floyd', 1923, 'M', 3145), +(28202, 'Clifford', 1923, 'M', 3106), +(28203, 'Herman', 1923, 'M', 2960), +(28204, 'Vernon', 1923, 'M', 2959), +(28205, 'Clyde', 1923, 'M', 2856), +(28206, 'Wallace', 1923, 'M', 2801), +(28207, 'Philip', 1923, 'M', 2785), +(28208, 'Lester', 1923, 'M', 2768), +(28209, 'Vincent', 1923, 'M', 2718), +(28210, 'Alvin', 1923, 'M', 2646), +(28211, 'Lewis', 1923, 'M', 2619), +(28212, 'Wayne', 1923, 'M', 2597), +(28213, 'Gordon', 1923, 'M', 2576), +(28214, 'Leon', 1923, 'M', 2530), +(28215, 'Billy', 1923, 'M', 2489), +(28216, 'Charlie', 1923, 'M', 2474), +(28217, 'Martin', 1923, 'M', 2455), +(28218, 'Milton', 1923, 'M', 2448), +(28219, 'Calvin', 1923, 'M', 2411), +(28220, 'Jesse', 1923, 'M', 2386), +(28221, 'Glenn', 1923, 'M', 2369), +(28222, 'Lee', 1923, 'M', 2359), +(28223, 'Benjamin', 1923, 'M', 2317), +(28224, 'Cecil', 1923, 'M', 2256), +(28225, 'Victor', 1923, 'M', 2227), +(28226, 'Sam', 1923, 'M', 2207), +(28227, 'Dale', 1923, 'M', 2172), +(28228, 'Harvey', 1923, 'M', 2114), +(28229, 'Willard', 1923, 'M', 1945), +(28230, 'Arnold', 1923, 'M', 1924), +(28231, 'Edgar', 1923, 'M', 1897), +(28232, 'Roger', 1923, 'M', 1889), +(28233, 'Oscar', 1923, 'M', 1881), +(28234, 'Allen', 1923, 'M', 1875), +(28235, 'Bill', 1923, 'M', 1833), +(28236, 'Everett', 1923, 'M', 1746), +(28237, 'Virgil', 1923, 'M', 1714), +(28238, 'Maurice', 1923, 'M', 1712), +(28239, 'Gilbert', 1923, 'M', 1706), +(28240, 'Claude', 1923, 'M', 1696), +(28241, 'Roland', 1923, 'M', 1680), +(28242, 'Wilbur', 1923, 'M', 1674), +(28243, 'Marion', 1923, 'M', 1669), +(28244, 'Johnnie', 1923, 'M', 1655), +(28245, 'Douglas', 1923, 'M', 1615), +(28246, 'Stephen', 1923, 'M', 1609), +(28247, 'Eddie', 1923, 'M', 1600), +(28248, 'Morris', 1923, 'M', 1558), +(28249, 'Leslie', 1923, 'M', 1555), +(28250, 'Homer', 1923, 'M', 1545), +(28251, 'Curtis', 1923, 'M', 1543), +(28252, 'Manuel', 1923, 'M', 1543), +(28253, 'Sidney', 1923, 'M', 1543), +(28254, 'Hubert', 1923, 'M', 1533), +(28255, 'Jerome', 1923, 'M', 1488), +(28256, 'Jessie', 1923, 'M', 1482), +(28257, 'Nicholas', 1923, 'M', 1466), +(28258, 'Glen', 1923, 'M', 1451), +(28259, 'Max', 1923, 'M', 1439), +(28260, 'Hugh', 1923, 'M', 1411), +(28261, 'Irving', 1923, 'M', 1383), +(28262, 'Wesley', 1923, 'M', 1379), +(28263, 'Luther', 1923, 'M', 1333), +(28264, 'Jose', 1923, 'M', 1324), +(28265, 'Rudolph', 1923, 'M', 1305), +(28266, 'Alexander', 1923, 'M', 1293), +(28267, 'Don', 1923, 'M', 1293), +(28268, 'Jerry', 1923, 'M', 1276), +(28269, 'Franklin', 1923, 'M', 1262), +(28270, 'Steve', 1923, 'M', 1256), +(28271, 'Horace', 1923, 'M', 1242), +(28272, 'Bruce', 1923, 'M', 1223), +(28273, 'Oliver', 1923, 'M', 1220), +(28274, 'Julius', 1923, 'M', 1185), +(28275, 'Willis', 1923, 'M', 1182), +(28276, 'Junior', 1923, 'M', 1173), +(28277, 'Gene', 1923, 'M', 1171), +(28278, 'Jimmie', 1923, 'M', 1160), +(28279, 'Ronald', 1923, 'M', 1147), +(28280, 'Edmund', 1923, 'M', 1145), +(28281, 'Tom', 1923, 'M', 1130), +(28282, 'Keith', 1923, 'M', 1106), +(28283, 'Earnest', 1923, 'M', 1062), +(28284, 'Patrick', 1923, 'M', 1055), +(28285, 'Ben', 1923, 'M', 1048), +(28286, 'Guy', 1923, 'M', 1044), +(28287, 'Tony', 1923, 'M', 1028), +(28288, 'Salvatore', 1923, 'M', 1015), +(28289, 'Lyle', 1923, 'M', 1012), +(28290, 'Dean', 1923, 'M', 1011), +(28291, 'Orville', 1923, 'M', 1011), +(28292, 'Mike', 1923, 'M', 1003), +(28293, 'Delbert', 1923, 'M', 997), +(28294, 'Angelo', 1923, 'M', 990), +(28295, 'Clayton', 1923, 'M', 989), +(28296, 'Jacob', 1923, 'M', 975), +(28297, 'Johnny', 1923, 'M', 973), +(28298, 'Alex', 1923, 'M', 939), +(28299, 'Archie', 1923, 'M', 938), +(28300, 'Matthew', 1923, 'M', 934), +(28301, 'Bob', 1923, 'M', 917), +(28302, 'Otis', 1923, 'M', 904), +(28303, 'Clifton', 1923, 'M', 900), +(28304, 'Jim', 1923, 'M', 868), +(28305, 'Clinton', 1923, 'M', 867), +(28306, 'Wilbert', 1923, 'M', 847), +(28307, 'Phillip', 1923, 'M', 845), +(28308, 'Ira', 1923, 'M', 830), +(28309, 'Jay', 1923, 'M', 830), +(28310, 'Irvin', 1923, 'M', 817), +(28311, 'Leland', 1923, 'M', 807), +(28312, 'Emil', 1923, 'M', 797), +(28313, 'Ivan', 1923, 'M', 792), +(28314, 'Ervin', 1923, 'M', 788), +(28315, 'Marshall', 1923, 'M', 781), +(28316, 'Wilfred', 1923, 'M', 779), +(28317, 'Merle', 1923, 'M', 775), +(28318, 'Bennie', 1923, 'M', 774), +(28319, 'Dennis', 1923, 'M', 774), +(28320, 'Elbert', 1923, 'M', 772), +(28321, 'Billie', 1923, 'M', 770), +(28322, 'Dewey', 1923, 'M', 763), +(28323, 'Forrest', 1923, 'M', 759), +(28324, 'Nathan', 1923, 'M', 739), +(28325, 'Dan', 1923, 'M', 731), +(28326, 'Antonio', 1923, 'M', 729), +(28327, 'Sylvester', 1923, 'M', 729), +(28328, 'Duane', 1923, 'M', 725), +(28329, 'Seymour', 1923, 'M', 724), +(28330, 'Nathaniel', 1923, 'M', 721), +(28331, 'Lowell', 1923, 'M', 710), +(28332, 'Nelson', 1923, 'M', 703), +(28333, 'Carroll', 1923, 'M', 701), +(28334, 'Isaac', 1923, 'M', 698), +(28335, 'Nick', 1923, 'M', 690), +(28336, 'Rufus', 1923, 'M', 678), +(28337, 'Alton', 1923, 'M', 675), +(28338, 'Julian', 1923, 'M', 674), +(28339, 'Lonnie', 1923, 'M', 670), +(28340, 'Mark', 1923, 'M', 659), +(28341, 'Ellis', 1923, 'M', 657), +(28342, 'Juan', 1923, 'M', 645), +(28343, 'Felix', 1923, 'M', 637), +(28344, 'Malcolm', 1923, 'M', 623), +(28345, 'Pete', 1923, 'M', 623), +(28346, 'Aaron', 1923, 'M', 618), +(28347, 'Wendell', 1923, 'M', 617), +(28348, 'Jesus', 1923, 'M', 606), +(28349, 'Loyd', 1923, 'M', 605), +(28350, 'Myron', 1923, 'M', 605), +(28351, 'Johnie', 1923, 'M', 602), +(28352, 'Norbert', 1923, 'M', 602), +(28353, 'Allan', 1923, 'M', 597), +(28354, 'Grady', 1923, 'M', 595), +(28355, 'Ted', 1923, 'M', 592), +(28356, 'Eldon', 1923, 'M', 591), +(28357, 'Murray', 1923, 'M', 590), +(28358, 'Perry', 1923, 'M', 589), +(28359, 'Alan', 1923, 'M', 588), +(28360, 'Fredrick', 1923, 'M', 587), +(28361, 'Owen', 1923, 'M', 587), +(28362, 'Dominic', 1923, 'M', 583), +(28363, 'Rex', 1923, 'M', 583), +(28364, 'Dominick', 1923, 'M', 580), +(28365, 'Loren', 1923, 'M', 578), +(28366, 'Grover', 1923, 'M', 575), +(28367, 'Ross', 1923, 'M', 575), +(28368, 'Bert', 1923, 'M', 573), +(28369, 'Otto', 1923, 'M', 573), +(28370, 'Freddie', 1923, 'M', 570), +(28371, 'Elwood', 1923, 'M', 565), +(28372, 'Karl', 1923, 'M', 565), +(28373, 'Emmett', 1923, 'M', 564), +(28374, 'Abraham', 1923, 'M', 556), +(28375, 'Gerard', 1923, 'M', 554), +(28376, 'Mack', 1923, 'M', 550), +(28377, 'August', 1923, 'M', 544), +(28378, 'Laurence', 1923, 'M', 543), +(28379, 'Percy', 1923, 'M', 539), +(28380, 'Byron', 1923, 'M', 536), +(28381, 'Wilson', 1923, 'M', 532), +(28382, 'Larry', 1923, 'M', 517), +(28383, 'Adolph', 1923, 'M', 515), +(28384, 'Troy', 1923, 'M', 513), +(28385, 'Neil', 1923, 'M', 508), +(28386, 'Amos', 1923, 'M', 506), +(28387, 'Sherman', 1923, 'M', 506), +(28388, 'Mario', 1923, 'M', 503), +(28389, 'Burton', 1923, 'M', 495), +(28390, 'Woodrow', 1923, 'M', 483), +(28391, 'Morton', 1923, 'M', 481), +(28392, 'Tommy', 1923, 'M', 480), +(28393, 'Preston', 1923, 'M', 479), +(28394, 'Tommie', 1923, 'M', 479), +(28395, 'Harley', 1923, 'M', 478), +(28396, 'Roscoe', 1923, 'M', 476), +(28397, 'Bobby', 1923, 'M', 470), +(28398, 'Louie', 1923, 'M', 464), +(28399, 'Darrell', 1923, 'M', 463), +(28400, 'Doyle', 1923, 'M', 458), +(28401, 'Carlton', 1923, 'M', 451), +(28402, 'Aubrey', 1923, 'M', 450), +(28403, 'Austin', 1923, 'M', 449), +(28404, 'Erwin', 1923, 'M', 444), +(28405, 'Jimmy', 1923, 'M', 439), +(28406, 'Garland', 1923, 'M', 434), +(28407, 'Harlan', 1923, 'M', 432), +(28408, 'Dwight', 1923, 'M', 431), +(28409, 'Boyd', 1923, 'M', 429), +(28410, 'Adam', 1923, 'M', 428), +(28411, 'Carlos', 1923, 'M', 427), +(28412, 'Reuben', 1923, 'M', 425), +(28413, 'Roosevelt', 1923, 'M', 425), +(28414, 'Charley', 1923, 'M', 421), +(28415, 'Laverne', 1923, 'M', 414), +(28416, 'Neal', 1923, 'M', 410), +(28417, 'Millard', 1923, 'M', 405), +(28418, 'Irwin', 1923, 'M', 404), +(28419, 'Jasper', 1923, 'M', 402), +(28420, 'Cornelius', 1923, 'M', 395), +(28421, 'Francisco', 1923, 'M', 393), +(28422, 'Lynn', 1923, 'M', 391), +(28423, 'Rodney', 1923, 'M', 388), +(28424, 'Grant', 1923, 'M', 381), +(28425, 'Moses', 1923, 'M', 380), +(28426, 'Stuart', 1923, 'M', 374), +(28427, 'Mitchell', 1923, 'M', 372), +(28428, 'Will', 1923, 'M', 372), +(28429, 'Ramon', 1923, 'M', 369), +(28430, 'Ruben', 1923, 'M', 368), +(28431, 'Harrison', 1923, 'M', 361), +(28432, 'Clair', 1923, 'M', 356), +(28433, 'Maynard', 1923, 'M', 355), +(28434, 'Conrad', 1923, 'M', 354), +(28435, 'Elton', 1923, 'M', 353), +(28436, 'Dallas', 1923, 'M', 352), +(28437, 'Wilmer', 1923, 'M', 351), +(28438, 'Dick', 1923, 'M', 350), +(28439, 'Russel', 1923, 'M', 350), +(28440, 'Joel', 1923, 'M', 349), +(28441, 'Steven', 1923, 'M', 348), +(28442, 'Benny', 1923, 'M', 346), +(28443, 'Alfonso', 1923, 'M', 342), +(28444, 'Edmond', 1923, 'M', 341), +(28445, 'Pedro', 1923, 'M', 341), +(28446, 'Thurman', 1923, 'M', 341), +(28447, 'Adrian', 1923, 'M', 339), +(28448, 'Elmo', 1923, 'M', 339), +(28449, 'Wade', 1923, 'M', 337), +(28450, 'Cleveland', 1923, 'M', 336), +(28451, 'Reginald', 1923, 'M', 336), +(28452, 'Monroe', 1923, 'M', 333), +(28453, 'Rocco', 1923, 'M', 332), +(28454, 'Armand', 1923, 'M', 330), +(28455, 'Jake', 1923, 'M', 330), +(28456, 'Lionel', 1923, 'M', 330), +(28457, 'Emanuel', 1923, 'M', 329), +(28458, 'Clark', 1923, 'M', 328), +(28459, 'Simon', 1923, 'M', 328), +(28460, 'Timothy', 1923, 'M', 324), +(28461, 'Alonzo', 1923, 'M', 321), +(28462, 'Dave', 1923, 'M', 321), +(28463, 'Luis', 1923, 'M', 321), +(28464, 'Marcus', 1923, 'M', 320), +(28465, 'Solomon', 1923, 'M', 315), +(28466, 'Cleo', 1923, 'M', 314), +(28467, 'Delmar', 1923, 'M', 313), +(28468, 'Clement', 1923, 'M', 312), +(28469, 'Jean', 1923, 'M', 307), +(28470, 'Elvin', 1923, 'M', 304), +(28471, 'Carmen', 1923, 'M', 303), +(28472, 'Elijah', 1923, 'M', 302), +(28473, 'Stewart', 1923, 'M', 302), +(28474, 'Wilburn', 1923, 'M', 302), +(28475, 'Patsy', 1923, 'M', 297), +(28476, 'Christopher', 1923, 'M', 296), +(28477, 'Claud', 1923, 'M', 296), +(28478, 'Odell', 1923, 'M', 295), +(28479, 'Randolph', 1923, 'M', 295), +(28480, 'Kermit', 1923, 'M', 292), +(28481, 'Ollie', 1923, 'M', 292), +(28482, 'Andy', 1923, 'M', 291), +(28483, 'Wiley', 1923, 'M', 290), +(28484, 'Thaddeus', 1923, 'M', 288), +(28485, 'Bruno', 1923, 'M', 287), +(28486, 'Lavern', 1923, 'M', 287), +(28487, 'Weldon', 1923, 'M', 287), +(28488, 'Alphonse', 1923, 'M', 283), +(28489, 'Buford', 1923, 'M', 279), +(28490, 'Ned', 1923, 'M', 278), +(28491, 'Teddy', 1923, 'M', 278), +(28492, 'Earle', 1923, 'M', 277), +(28493, 'Gus', 1923, 'M', 277), +(28494, 'Merrill', 1923, 'M', 277), +(28495, 'Jess', 1923, 'M', 275), +(28496, 'Alva', 1923, 'M', 274), +(28497, 'Vito', 1923, 'M', 272), +(28498, 'Ward', 1923, 'M', 271), +(28499, 'Forest', 1923, 'M', 270), +(28500, 'Jackson', 1923, 'M', 270), +(28501, 'Norris', 1923, 'M', 267), +(28502, 'Ed', 1923, 'M', 266), +(28503, 'Merlin', 1923, 'M', 266), +(28504, 'Cyril', 1923, 'M', 260), +(28505, 'Eli', 1923, 'M', 260), +(28506, 'Barney', 1923, 'M', 259), +(28507, 'Hollis', 1923, 'M', 259), +(28508, 'Sol', 1923, 'M', 259), +(28509, 'Noah', 1923, 'M', 258), +(28510, 'Roman', 1923, 'M', 256), +(28511, 'Sanford', 1923, 'M', 256), +(28512, 'Salvador', 1923, 'M', 255), +(28513, 'Sterling', 1923, 'M', 254), +(28514, 'Sammie', 1923, 'M', 252), +(28515, 'Emery', 1923, 'M', 248), +(28516, 'Basil', 1923, 'M', 245), +(28517, 'Emory', 1923, 'M', 243), +(28518, 'Sheldon', 1923, 'M', 243), +(28519, 'Vern', 1923, 'M', 241), +(28520, 'Herschel', 1923, 'M', 240), +(28521, 'Mervin', 1923, 'M', 240), +(28522, 'Miles', 1923, 'M', 239), +(28523, 'Travis', 1923, 'M', 237), +(28524, 'Ellsworth', 1923, 'M', 236), +(28525, 'Levi', 1923, 'M', 233), +(28526, 'Gale', 1923, 'M', 232), +(28527, 'Roberto', 1923, 'M', 232), +(28528, 'Shirley', 1923, 'M', 232), +(28529, 'Harris', 1923, 'M', 230), +(28530, 'Winfred', 1923, 'M', 230), +(28531, 'Bertram', 1923, 'M', 228), +(28532, 'Pat', 1923, 'M', 227), +(28533, 'Royal', 1923, 'M', 226), +(28534, 'Saul', 1923, 'M', 225), +(28535, 'Carmine', 1923, 'M', 224), +(28536, 'Anton', 1923, 'M', 223), +(28537, 'Milford', 1923, 'M', 223), +(28538, 'Wilford', 1923, 'M', 223), +(28539, 'Emerson', 1923, 'M', 222), +(28540, 'Coy', 1923, 'M', 221), +(28541, 'Hyman', 1923, 'M', 221), +(28542, 'Rolland', 1923, 'M', 220), +(28543, 'Orval', 1923, 'M', 219), +(28544, 'Lorenzo', 1923, 'M', 217), +(28545, 'Raul', 1923, 'M', 217), +(28546, 'Darwin', 1923, 'M', 216), +(28547, 'Dudley', 1923, 'M', 215), +(28548, 'Winston', 1923, 'M', 213), +(28549, 'Truman', 1923, 'M', 212), +(28550, 'Scott', 1923, 'M', 211), +(28551, 'Hiram', 1923, 'M', 210), +(28552, 'Gabriel', 1923, 'M', 209), +(28553, 'Gail', 1923, 'M', 208), +(28554, 'Lamar', 1923, 'M', 208), +(28555, 'Bobbie', 1923, 'M', 207), +(28556, 'Hershel', 1923, 'M', 207), +(28557, 'Jeff', 1923, 'M', 207), +(28558, 'Royce', 1923, 'M', 207), +(28559, 'Pasquale', 1923, 'M', 206), +(28560, 'Silas', 1923, 'M', 206), +(28561, 'Delmer', 1923, 'M', 204), +(28562, 'Mary', 1923, 'M', 203), +(28563, 'Lenard', 1923, 'M', 202), +(28564, 'Ulysses', 1923, 'M', 202), +(28565, 'Cletus', 1923, 'M', 201), +(28566, 'Freeman', 1923, 'M', 200), +(28567, 'Spencer', 1923, 'M', 200), +(28568, 'Armando', 1923, 'M', 198), +(28569, 'Ferdinand', 1923, 'M', 198), +(28570, 'Guadalupe', 1923, 'M', 198), +(28571, 'Marlin', 1923, 'M', 196), +(28572, 'Buster', 1923, 'M', 194), +(28573, 'Odis', 1923, 'M', 194), +(28574, 'Randall', 1923, 'M', 193), +(28575, 'Rene', 1923, 'M', 192), +(28576, 'Gregory', 1923, 'M', 191), +(28577, 'Lyman', 1923, 'M', 191), +(28578, 'Omer', 1923, 'M', 191), +(28579, 'Van', 1923, 'M', 191), +(28580, 'Bud', 1923, 'M', 189), +(28581, 'Wilton', 1923, 'M', 189), +(28582, 'Everette', 1923, 'M', 188), +(28583, 'Noel', 1923, 'M', 187), +(28584, 'Alfredo', 1923, 'M', 186), +(28585, 'Booker', 1923, 'M', 185), +(28586, 'Elliott', 1923, 'M', 185), +(28587, 'Luke', 1923, 'M', 185), +(28588, 'Orlando', 1923, 'M', 185), +(28589, 'Pablo', 1923, 'M', 185), +(28590, 'Augustus', 1923, 'M', 183), +(28591, 'Frederic', 1923, 'M', 180), +(28592, 'Olen', 1923, 'M', 180), +(28593, 'Blaine', 1923, 'M', 179), +(28594, 'Columbus', 1923, 'M', 178), +(28595, 'Denver', 1923, 'M', 178), +(28596, 'Mathew', 1923, 'M', 177), +(28597, 'Nolan', 1923, 'M', 177), +(28598, 'Alden', 1923, 'M', 176), +(28599, 'Foster', 1923, 'M', 176), +(28600, 'Eric', 1923, 'M', 175), +(28601, 'Linwood', 1923, 'M', 175), +(28602, 'Miguel', 1923, 'M', 175), +(28603, 'Milo', 1923, 'M', 174), +(28604, 'Riley', 1923, 'M', 174), +(28605, 'Abe', 1923, 'M', 173), +(28606, 'Olin', 1923, 'M', 169), +(28607, 'Carlo', 1923, 'M', 167), +(28608, 'Hoyt', 1923, 'M', 167), +(28609, 'Quentin', 1923, 'M', 167), +(28610, 'Ezra', 1923, 'M', 166), +(28611, 'Hobert', 1923, 'M', 166), +(28612, 'Rudy', 1923, 'M', 166), +(28613, 'Vance', 1923, 'M', 164), +(28614, 'Arlie', 1923, 'M', 162), +(28615, 'Elias', 1923, 'M', 162), +(28616, 'Elroy', 1923, 'M', 162), +(28617, 'Isadore', 1923, 'M', 162), +(28618, 'Dewitt', 1923, 'M', 160), +(28619, 'Jefferson', 1923, 'M', 159), +(28620, 'Tomas', 1923, 'M', 159), +(28621, 'Wilber', 1923, 'M', 159), +(28622, 'Ambrose', 1923, 'M', 158), +(28623, 'Emile', 1923, 'M', 158), +(28624, 'Hal', 1923, 'M', 158), +(28625, 'Lucien', 1923, 'M', 158), +(28626, 'Burl', 1923, 'M', 157), +(28627, 'Micheal', 1923, 'M', 157), +(28628, 'Augustine', 1923, 'M', 156), +(28629, 'Chris', 1923, 'M', 156), +(28630, 'Newton', 1923, 'M', 156), +(28631, 'Phil', 1923, 'M', 156), +(28632, 'Verne', 1923, 'M', 155), +(28633, 'Morgan', 1923, 'M', 154), +(28634, 'Casimir', 1923, 'M', 153), +(28635, 'Hugo', 1923, 'M', 151), +(28636, 'Aloysius', 1923, 'M', 149), +(28637, 'Anderson', 1923, 'M', 149), +(28638, 'Rafael', 1923, 'M', 149), +(28639, 'Elwin', 1923, 'M', 147), +(28640, 'Evan', 1923, 'M', 147), +(28641, 'Houston', 1923, 'M', 147), +(28642, 'Sammy', 1923, 'M', 147), +(28643, 'Granville', 1923, 'M', 146), +(28644, 'Noble', 1923, 'M', 146), +(28645, 'Rubin', 1923, 'M', 146), +(28646, 'Darrel', 1923, 'M', 145), +(28647, 'Marcel', 1923, 'M', 145), +(28648, 'Merton', 1923, 'M', 141), +(28649, 'Rupert', 1923, 'M', 141), +(28650, 'Harland', 1923, 'M', 140), +(28651, 'Isiah', 1923, 'M', 140), +(28652, 'Dalton', 1923, 'M', 139), +(28653, 'Emilio', 1923, 'M', 139), +(28654, 'Jewell', 1923, 'M', 139), +(28655, 'Waldo', 1923, 'M', 139), +(28656, 'Aldo', 1923, 'M', 138), +(28657, 'Fletcher', 1923, 'M', 138), +(28658, 'Fernando', 1923, 'M', 136), +(28659, 'Palmer', 1923, 'M', 136), +(28660, 'Julio', 1923, 'M', 135), +(28661, 'Albin', 1923, 'M', 134), +(28662, 'Clay', 1923, 'M', 134), +(28663, 'Sydney', 1923, 'M', 134), +(28664, 'Terry', 1923, 'M', 134), +(28665, 'Walton', 1923, 'M', 134), +(28666, 'Lincoln', 1923, 'M', 133), +(28667, 'Nickolas', 1923, 'M', 132), +(28668, 'Ernesto', 1923, 'M', 131), +(28669, 'Frankie', 1923, 'M', 131), +(28670, 'Normand', 1923, 'M', 131), +(28671, 'Roderick', 1923, 'M', 131), +(28672, 'Buddy', 1923, 'M', 130), +(28673, 'Sebastian', 1923, 'M', 130), +(28674, 'Vaughn', 1923, 'M', 130), +(28675, 'Harmon', 1923, 'M', 129), +(28676, 'Joshua', 1923, 'M', 129), +(28677, 'Talmadge', 1923, 'M', 129), +(28678, 'Arturo', 1923, 'M', 128), +(28679, 'Gaylord', 1923, 'M', 128), +(28680, 'Ignacio', 1923, 'M', 128), +(28681, 'Mason', 1923, 'M', 128), +(28682, 'Meyer', 1923, 'M', 128), +(28683, 'Alberto', 1923, 'M', 127), +(28684, 'Carrol', 1923, 'M', 127), +(28685, 'Haywood', 1923, 'M', 127), +(28686, 'Hector', 1923, 'M', 127), +(28687, 'Elden', 1923, 'M', 126), +(28688, 'Junius', 1923, 'M', 126), +(28689, 'Raymon', 1923, 'M', 126), +(28690, 'Shelby', 1923, 'M', 126), +(28691, 'Davis', 1923, 'M', 125), +(28692, 'Joesph', 1923, 'M', 125), +(28693, 'Danny', 1923, 'M', 124), +(28694, 'Jeremiah', 1923, 'M', 124), +(28695, 'Major', 1923, 'M', 124), +(28696, 'Maxwell', 1923, 'M', 124), +(28697, 'Coleman', 1923, 'M', 123), +(28698, 'Isaiah', 1923, 'M', 123), +(28699, 'Mckinley', 1923, 'M', 123), +(28700, 'Theron', 1923, 'M', 123), +(28701, 'Arden', 1923, 'M', 122), +(28702, 'Arther', 1923, 'M', 122), +(28703, 'Domenic', 1923, 'M', 122), +(28704, 'Fay', 1923, 'M', 122), +(28705, 'Justin', 1923, 'M', 122), +(28706, 'Rogers', 1923, 'M', 122), +(28707, 'Edsel', 1923, 'M', 120), +(28708, 'Rosario', 1923, 'M', 120), +(28709, 'Guido', 1923, 'M', 119), +(28710, 'Jules', 1923, 'M', 119), +(28711, 'Reed', 1923, 'M', 119), +(28712, 'Asa', 1923, 'M', 118), +(28713, 'Eldred', 1923, 'M', 118), +(28714, 'Hardy', 1923, 'M', 118), +(28715, 'Israel', 1923, 'M', 118), +(28716, 'Rodolfo', 1923, 'M', 118), +(28717, 'Dee', 1923, 'M', 117), +(28718, 'Graham', 1923, 'M', 117), +(28719, 'Warner', 1923, 'M', 117), +(28720, 'Alphonso', 1923, 'M', 116), +(28721, 'Christian', 1923, 'M', 116), +(28722, 'Dock', 1923, 'M', 116), +(28723, 'Hobart', 1923, 'M', 116), +(28724, 'Oren', 1923, 'M', 116), +(28725, 'Ford', 1923, 'M', 115), +(28726, 'Domingo', 1923, 'M', 114), +(28727, 'Enrique', 1923, 'M', 114), +(28728, 'Galen', 1923, 'M', 114), +(28729, 'Gustave', 1923, 'M', 114), +(28730, 'Jackie', 1923, 'M', 114), +(28731, 'Hilton', 1923, 'M', 113), +(28732, 'Raleigh', 1923, 'M', 113), +(28733, 'Romeo', 1923, 'M', 113), +(28734, 'Judson', 1923, 'M', 112), +(28735, 'Napoleon', 1923, 'M', 112), +(28736, 'Avery', 1923, 'M', 111), +(28737, 'Craig', 1923, 'M', 111), +(28738, 'Edd', 1923, 'M', 111), +(28739, 'Jewel', 1923, 'M', 111), +(28740, 'Kelly', 1923, 'M', 111), +(28741, 'Lemuel', 1923, 'M', 111), +(28742, 'Walker', 1923, 'M', 111), +(28743, 'Cyrus', 1923, 'M', 110), +(28744, 'Dana', 1923, 'M', 110), +(28745, 'Winford', 1923, 'M', 110), +(28746, 'Andres', 1923, 'M', 108), +(28747, 'Beverly', 1923, 'M', 108), +(28748, 'Carson', 1923, 'M', 108), +(28749, 'Elmore', 1923, 'M', 108), +(28750, 'Valentine', 1923, 'M', 108), +(28751, 'Felipe', 1923, 'M', 107), +(28752, 'Antone', 1923, 'M', 106), +(28753, 'Gilberto', 1923, 'M', 106), +(28754, 'Lucius', 1923, 'M', 106), +(28755, 'Ottis', 1923, 'M', 106), +(28756, 'Santos', 1923, 'M', 106), +(28757, 'Carol', 1923, 'M', 105), +(28758, 'Enoch', 1923, 'M', 105), +(28759, 'Frances', 1923, 'M', 105), +(28760, 'Jennings', 1923, 'M', 105), +(28761, 'Santiago', 1923, 'M', 105), +(28762, 'Benedict', 1923, 'M', 104), +(28763, 'Loyal', 1923, 'M', 104), +(28764, 'Ora', 1923, 'M', 104), +(28765, 'Otha', 1923, 'M', 104), +(28766, 'Winfield', 1923, 'M', 104), +(28767, 'Al', 1923, 'M', 103), +(28768, 'Bernice', 1923, 'M', 103), +(28769, 'Carleton', 1923, 'M', 103), +(28770, 'Lucian', 1923, 'M', 103), +(28771, 'Elvis', 1923, 'M', 102), +(28772, 'Emmitt', 1923, 'M', 102), +(28773, 'Florian', 1923, 'M', 102), +(28774, 'Isidore', 1923, 'M', 102), +(28775, 'Lacy', 1923, 'M', 102), +(28776, 'Jason', 1923, 'M', 101), +(28777, 'Urban', 1923, 'M', 101), +(28778, 'Garth', 1923, 'M', 100), +(28779, 'Haskell', 1923, 'M', 100), +(28780, 'King', 1923, 'M', 100), +(28781, 'Mary', 1924, 'F', 73527), +(28782, 'Dorothy', 1924, 'F', 39994), +(28783, 'Helen', 1924, 'F', 31193), +(28784, 'Betty', 1924, 'F', 30599), +(28785, 'Margaret', 1924, 'F', 26549), +(28786, 'Ruth', 1924, 'F', 23600), +(28787, 'Virginia', 1924, 'F', 18627), +(28788, 'Mildred', 1924, 'F', 15855), +(28789, 'Doris', 1924, 'F', 15785), +(28790, 'Frances', 1924, 'F', 15187), +(28791, 'Elizabeth', 1924, 'F', 14949), +(28792, 'Evelyn', 1924, 'F', 13355), +(28793, 'Anna', 1924, 'F', 13080), +(28794, 'Marie', 1924, 'F', 11580), +(28795, 'Alice', 1924, 'F', 11540), +(28796, 'Jean', 1924, 'F', 10723), +(28797, 'Marjorie', 1924, 'F', 10070), +(28798, 'Irene', 1924, 'F', 9930), +(28799, 'Shirley', 1924, 'F', 9488), +(28800, 'Florence', 1924, 'F', 9469), +(28801, 'Martha', 1924, 'F', 9314), +(28802, 'Lois', 1924, 'F', 9299), +(28803, 'Lillian', 1924, 'F', 9094), +(28804, 'Louise', 1924, 'F', 8854), +(28805, 'Rose', 1924, 'F', 8480), +(28806, 'Ruby', 1924, 'F', 8407), +(28807, 'Catherine', 1924, 'F', 8360), +(28808, 'Barbara', 1924, 'F', 8307), +(28809, 'Eleanor', 1924, 'F', 8192), +(28810, 'Gladys', 1924, 'F', 7791), +(28811, 'Edna', 1924, 'F', 7409), +(28812, 'Annie', 1924, 'F', 7348), +(28813, 'Thelma', 1924, 'F', 7315), +(28814, 'Josephine', 1924, 'F', 7276), +(28815, 'Patricia', 1924, 'F', 6958), +(28816, 'Edith', 1924, 'F', 6893), +(28817, 'Lucille', 1924, 'F', 6746), +(28818, 'Pauline', 1924, 'F', 6720), +(28819, 'Ethel', 1924, 'F', 6584), +(28820, 'Norma', 1924, 'F', 6543), +(28821, 'Gloria', 1924, 'F', 6535), +(28822, 'Hazel', 1924, 'F', 6346), +(28823, 'Grace', 1924, 'F', 6328), +(28824, 'Phyllis', 1924, 'F', 6269), +(28825, 'June', 1924, 'F', 6151), +(28826, 'Marion', 1924, 'F', 6046), +(28827, 'Bernice', 1924, 'F', 6032), +(28828, 'Juanita', 1924, 'F', 5404), +(28829, 'Rita', 1924, 'F', 5382), +(28830, 'Beatrice', 1924, 'F', 5270), +(28831, 'Esther', 1924, 'F', 5259), +(28832, 'Jane', 1924, 'F', 5105), +(28833, 'Lorraine', 1924, 'F', 5105), +(28834, 'Sarah', 1924, 'F', 5043), +(28835, 'Ann', 1924, 'F', 5036), +(28836, 'Clara', 1924, 'F', 4990), +(28837, 'Emma', 1924, 'F', 4899), +(28838, 'Geraldine', 1924, 'F', 4831), +(28839, 'Katherine', 1924, 'F', 4694), +(28840, 'Gertrude', 1924, 'F', 4544), +(28841, 'Elsie', 1924, 'F', 4498), +(28842, 'Julia', 1924, 'F', 4288), +(28843, 'Agnes', 1924, 'F', 4237), +(28844, 'Marian', 1924, 'F', 4196), +(28845, 'Bertha', 1924, 'F', 4123), +(28846, 'Eva', 1924, 'F', 4067), +(28847, 'Wilma', 1924, 'F', 4063), +(28848, 'Nancy', 1924, 'F', 3990), +(28849, 'Willie', 1924, 'F', 3990), +(28850, 'Ida', 1924, 'F', 3862), +(28851, 'Vivian', 1924, 'F', 3850), +(28852, 'Laura', 1924, 'F', 3827), +(28853, 'Elaine', 1924, 'F', 3803), +(28854, 'Wanda', 1924, 'F', 3733), +(28855, 'Dolores', 1924, 'F', 3728), +(28856, 'Kathleen', 1924, 'F', 3665), +(28857, 'Maxine', 1924, 'F', 3659), +(28858, 'Pearl', 1924, 'F', 3636), +(28859, 'Anne', 1924, 'F', 3629), +(28860, 'Charlotte', 1924, 'F', 3613), +(28861, 'Kathryn', 1924, 'F', 3599), +(28862, 'Viola', 1924, 'F', 3579), +(28863, 'Joyce', 1924, 'F', 3532), +(28864, 'Audrey', 1924, 'F', 3521), +(28865, 'Vera', 1924, 'F', 3478), +(28866, 'Bessie', 1924, 'F', 3403), +(28867, 'Alma', 1924, 'F', 3240), +(28868, 'Violet', 1924, 'F', 3225), +(28869, 'Myrtle', 1924, 'F', 3205), +(28870, 'Jeanne', 1924, 'F', 3150), +(28871, 'Jessie', 1924, 'F', 3147), +(28872, 'Nellie', 1924, 'F', 3075), +(28873, 'Eileen', 1924, 'F', 3069), +(28874, 'Ella', 1924, 'F', 3060), +(28875, 'Theresa', 1924, 'F', 3023), +(28876, 'Joan', 1924, 'F', 3022), +(28877, 'Lillie', 1924, 'F', 2981), +(28878, 'Lucy', 1924, 'F', 2979), +(28879, 'Ellen', 1924, 'F', 2950), +(28880, 'Minnie', 1924, 'F', 2885), +(28881, 'Marilyn', 1924, 'F', 2860), +(28882, 'Margie', 1924, 'F', 2830), +(28883, 'Leona', 1924, 'F', 2795), +(28884, 'Sylvia', 1924, 'F', 2758), +(28885, 'Stella', 1924, 'F', 2751), +(28886, 'Rosemary', 1924, 'F', 2735), +(28887, 'Genevieve', 1924, 'F', 2723), +(28888, 'Mabel', 1924, 'F', 2653), +(28889, 'Mattie', 1924, 'F', 2598), +(28890, 'Geneva', 1924, 'F', 2583), +(28891, 'Jennie', 1924, 'F', 2495), +(28892, 'Lena', 1924, 'F', 2410), +(28893, 'Georgia', 1924, 'F', 2395), +(28894, 'Mae', 1924, 'F', 2371), +(28895, 'Christine', 1924, 'F', 2326), +(28896, 'Sara', 1924, 'F', 2314), +(28897, 'Janet', 1924, 'F', 2296), +(28898, 'Bonnie', 1924, 'F', 2295), +(28899, 'Maria', 1924, 'F', 2290), +(28900, 'Opal', 1924, 'F', 2285), +(28901, 'Beverly', 1924, 'F', 2284), +(28902, 'Arlene', 1924, 'F', 2275), +(28903, 'Velma', 1924, 'F', 2271), +(28904, 'Loretta', 1924, 'F', 2261), +(28905, 'Marguerite', 1924, 'F', 2247), +(28906, 'Muriel', 1924, 'F', 2237), +(28907, 'Carolyn', 1924, 'F', 2222), +(28908, 'Harriet', 1924, 'F', 2190), +(28909, 'Eunice', 1924, 'F', 2147), +(28910, 'Rosa', 1924, 'F', 2147), +(28911, 'Donna', 1924, 'F', 2125), +(28912, 'Carol', 1924, 'F', 2094), +(28913, 'Peggy', 1924, 'F', 2073), +(28914, 'Jeanette', 1924, 'F', 2064), +(28915, 'Carrie', 1924, 'F', 2054), +(28916, 'Emily', 1924, 'F', 2044), +(28917, 'Blanche', 1924, 'F', 2033), +(28918, 'Beulah', 1924, 'F', 2005), +(28919, 'Dora', 1924, 'F', 1997), +(28920, 'Naomi', 1924, 'F', 1982), +(28921, 'Hilda', 1924, 'F', 1941), +(28922, 'Anita', 1924, 'F', 1853), +(28923, 'Miriam', 1924, 'F', 1833), +(28924, 'Inez', 1924, 'F', 1825), +(28925, 'Alberta', 1924, 'F', 1817), +(28926, 'Lula', 1924, 'F', 1777), +(28927, 'Roberta', 1924, 'F', 1773), +(28928, 'Jacqueline', 1924, 'F', 1771), +(28929, 'Hattie', 1924, 'F', 1759), +(28930, 'Madeline', 1924, 'F', 1745), +(28931, 'Bette', 1924, 'F', 1736), +(28932, 'Fannie', 1924, 'F', 1711), +(28933, 'Verna', 1924, 'F', 1661), +(28934, 'Constance', 1924, 'F', 1656), +(28935, 'Cora', 1924, 'F', 1629), +(28936, 'Mamie', 1924, 'F', 1626), +(28937, 'Billie', 1924, 'F', 1599), +(28938, 'Rachel', 1924, 'F', 1599), +(28939, 'Ada', 1924, 'F', 1583), +(28940, 'Claire', 1924, 'F', 1583), +(28941, 'Lola', 1924, 'F', 1538), +(28942, 'Mable', 1924, 'F', 1517), +(28943, 'Rosie', 1924, 'F', 1482), +(28944, 'Marcella', 1924, 'F', 1476), +(28945, 'Olga', 1924, 'F', 1463), +(28946, 'Daisy', 1924, 'F', 1459), +(28947, 'Flora', 1924, 'F', 1448), +(28948, 'Erma', 1924, 'F', 1424), +(28949, 'Laverne', 1924, 'F', 1383), +(28950, 'Sophie', 1924, 'F', 1371), +(28951, 'Rebecca', 1924, 'F', 1358), +(28952, 'Nora', 1924, 'F', 1335), +(28953, 'Antoinette', 1924, 'F', 1333), +(28954, 'Delores', 1924, 'F', 1325), +(28955, 'Caroline', 1924, 'F', 1302), +(28956, 'Susie', 1924, 'F', 1273), +(28957, 'Irma', 1924, 'F', 1269), +(28958, 'Winifred', 1924, 'F', 1269), +(28959, 'Eula', 1924, 'F', 1268), +(28960, 'Estelle', 1924, 'F', 1265), +(28961, 'Maggie', 1924, 'F', 1258), +(28962, 'Imogene', 1924, 'F', 1247), +(28963, 'Bettie', 1924, 'F', 1229), +(28964, 'Regina', 1924, 'F', 1226), +(28965, 'Eloise', 1924, 'F', 1212), +(28966, 'Nina', 1924, 'F', 1211), +(28967, 'Janice', 1924, 'F', 1175), +(28968, 'Lorene', 1924, 'F', 1173), +(28969, 'Rosalie', 1924, 'F', 1153), +(28970, 'Sally', 1924, 'F', 1145), +(28971, 'Adeline', 1924, 'F', 1142), +(28972, 'Henrietta', 1924, 'F', 1138), +(28973, 'Sadie', 1924, 'F', 1121), +(28974, 'Victoria', 1924, 'F', 1105), +(28975, 'Angelina', 1924, 'F', 1083), +(28976, 'Johnnie', 1924, 'F', 1071), +(28977, 'Fern', 1924, 'F', 1059), +(28978, 'Olive', 1924, 'F', 1058), +(28979, 'Lila', 1924, 'F', 1053), +(28980, 'Della', 1924, 'F', 1049), +(28981, 'Jeannette', 1924, 'F', 1032), +(28982, 'Melba', 1924, 'F', 998), +(28983, 'Lottie', 1924, 'F', 978), +(28984, 'Katie', 1924, 'F', 972), +(28985, 'Ernestine', 1924, 'F', 970), +(28986, 'Veronica', 1924, 'F', 954), +(28987, 'Nettie', 1924, 'F', 941), +(28988, 'Carmen', 1924, 'F', 939), +(28989, 'Dorothea', 1924, 'F', 937), +(28990, 'Essie', 1924, 'F', 936), +(28991, 'Lucile', 1924, 'F', 927), +(28992, 'Faye', 1924, 'F', 920), +(28993, 'Freda', 1924, 'F', 915), +(28994, 'Lydia', 1924, 'F', 913), +(28995, 'Amelia', 1924, 'F', 911), +(28996, 'Isabel', 1924, 'F', 911), +(28997, 'Yvonne', 1924, 'F', 910), +(28998, 'Cleo', 1924, 'F', 908), +(28999, 'Iris', 1924, 'F', 887), +(29000, 'Gwendolyn', 1924, 'F', 883), +(29001, 'May', 1924, 'F', 870), +(29002, 'Annette', 1924, 'F', 868), +(29003, 'Lela', 1924, 'F', 863), +(29004, 'Priscilla', 1924, 'F', 861), +(29005, 'Ollie', 1924, 'F', 851), +(29006, 'Goldie', 1924, 'F', 845), +(29007, 'Susan', 1924, 'F', 832), +(29008, 'Jewell', 1924, 'F', 829), +(29009, 'Angeline', 1924, 'F', 823), +(29010, 'Ora', 1924, 'F', 823), +(29011, 'Jewel', 1924, 'F', 822), +(29012, 'Adele', 1924, 'F', 812), +(29013, 'Teresa', 1924, 'F', 787), +(29014, 'Sallie', 1924, 'F', 782), +(29015, 'Luella', 1924, 'F', 775), +(29016, 'Reba', 1924, 'F', 771), +(29017, 'Cecilia', 1924, 'F', 768), +(29018, 'Effie', 1924, 'F', 766), +(29019, 'Addie', 1924, 'F', 763), +(29020, 'Iva', 1924, 'F', 762), +(29021, 'Isabelle', 1924, 'F', 760), +(29022, 'Leola', 1924, 'F', 757), +(29023, 'Janie', 1924, 'F', 750), +(29024, 'Nadine', 1924, 'F', 745), +(29025, 'Cecelia', 1924, 'F', 742), +(29026, 'Selma', 1924, 'F', 734), +(29027, 'Etta', 1924, 'F', 725), +(29028, 'Eleanore', 1924, 'F', 719), +(29029, 'Natalie', 1924, 'F', 710), +(29030, 'Ina', 1924, 'F', 700), +(29031, 'Ola', 1924, 'F', 679), +(29032, 'Lenora', 1924, 'F', 678), +(29033, 'Arline', 1924, 'F', 677), +(29034, 'Annabelle', 1924, 'F', 674), +(29035, 'Alta', 1924, 'F', 663), +(29036, 'Celia', 1924, 'F', 662), +(29037, 'Francis', 1924, 'F', 645), +(29038, 'Sue', 1924, 'F', 643), +(29039, 'Elnora', 1924, 'F', 639), +(29040, 'Darlene', 1924, 'F', 638), +(29041, 'Nell', 1924, 'F', 637), +(29042, 'Connie', 1924, 'F', 635), +(29043, 'Corinne', 1924, 'F', 631), +(29044, 'Elva', 1924, 'F', 631), +(29045, 'Dorthy', 1924, 'F', 609), +(29046, 'Amy', 1924, 'F', 605), +(29047, 'Angela', 1924, 'F', 600), +(29048, 'Elinor', 1924, 'F', 595), +(29049, 'Estella', 1924, 'F', 583), +(29050, 'Mavis', 1924, 'F', 581), +(29051, 'Lizzie', 1924, 'F', 580), +(29052, 'Elvira', 1924, 'F', 579), +(29053, 'Carmela', 1924, 'F', 578), +(29054, 'Ila', 1924, 'F', 578), +(29055, 'Joy', 1924, 'F', 578), +(29056, 'Yolanda', 1924, 'F', 573), +(29057, 'Bernadine', 1924, 'F', 563), +(29058, 'Fay', 1924, 'F', 562), +(29059, 'Nannie', 1924, 'F', 561), +(29060, 'Clarice', 1924, 'F', 554), +(29061, 'Eugenia', 1924, 'F', 551), +(29062, 'Helene', 1924, 'F', 546), +(29063, 'Frieda', 1924, 'F', 542), +(29064, 'Gracie', 1924, 'F', 535), +(29065, 'Jo', 1924, 'F', 534), +(29066, 'Frankie', 1924, 'F', 532), +(29067, 'Matilda', 1924, 'F', 531), +(29068, 'Virgie', 1924, 'F', 527), +(29069, 'Colleen', 1924, 'F', 524), +(29070, 'Elma', 1924, 'F', 522), +(29071, 'Aileen', 1924, 'F', 521), +(29072, 'Rena', 1924, 'F', 521), +(29073, 'Patsy', 1924, 'F', 520), +(29074, 'Carmella', 1924, 'F', 515), +(29075, 'Margery', 1924, 'F', 515), +(29076, 'Leah', 1924, 'F', 505), +(29077, 'Bobbie', 1924, 'F', 504), +(29078, 'Rhoda', 1924, 'F', 503), +(29079, 'Olivia', 1924, 'F', 501), +(29080, 'Winnie', 1924, 'F', 497), +(29081, 'Myra', 1924, 'F', 493), +(29082, 'Harriett', 1924, 'F', 492), +(29083, 'Lee', 1924, 'F', 490), +(29084, 'Maude', 1924, 'F', 485), +(29085, 'Sybil', 1924, 'F', 480), +(29086, 'Joanne', 1924, 'F', 475), +(29087, 'Willa', 1924, 'F', 471), +(29088, 'Concetta', 1924, 'F', 468), +(29089, 'Jimmie', 1924, 'F', 467), +(29090, 'Flossie', 1924, 'F', 466), +(29091, 'Odessa', 1924, 'F', 463), +(29092, 'Marcia', 1924, 'F', 461), +(29093, 'Neva', 1924, 'F', 458), +(29094, 'Linda', 1924, 'F', 454), +(29095, 'Judith', 1924, 'F', 450), +(29096, 'Charlene', 1924, 'F', 449), +(29097, 'Edythe', 1924, 'F', 441), +(29098, 'Rosetta', 1924, 'F', 441), +(29099, 'Bettye', 1924, 'F', 439), +(29100, 'Rosella', 1924, 'F', 435), +(29101, 'Lenore', 1924, 'F', 434), +(29102, 'Mollie', 1924, 'F', 431), +(29103, 'Avis', 1924, 'F', 430), +(29104, 'Ramona', 1924, 'F', 429), +(29105, 'Earline', 1924, 'F', 427), +(29106, 'Josie', 1924, 'F', 426), +(29107, 'Cecile', 1924, 'F', 422), +(29108, 'Deloris', 1924, 'F', 420), +(29109, 'Paula', 1924, 'F', 418), +(29110, 'Zelma', 1924, 'F', 417), +(29111, 'Alyce', 1924, 'F', 411), +(29112, 'Lily', 1924, 'F', 409), +(29113, 'Hope', 1924, 'F', 407), +(29114, 'Cornelia', 1924, 'F', 405), +(29115, 'Suzanne', 1924, 'F', 404), +(29116, 'Letha', 1924, 'F', 401), +(29117, 'Glenna', 1924, 'F', 399), +(29118, 'Allie', 1924, 'F', 397), +(29119, 'Dixie', 1924, 'F', 388), +(29120, 'Guadalupe', 1924, 'F', 388); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(29121, 'Millie', 1924, 'F', 388), +(29122, 'Helena', 1924, 'F', 386), +(29123, 'Joann', 1924, 'F', 386), +(29124, 'Christina', 1924, 'F', 385), +(29125, 'Loraine', 1924, 'F', 385), +(29126, 'John', 1924, 'F', 383), +(29127, 'Merle', 1924, 'F', 383), +(29128, 'Hannah', 1924, 'F', 382), +(29129, 'Lou', 1924, 'F', 381), +(29130, 'Claudia', 1924, 'F', 380), +(29131, 'Dollie', 1924, 'F', 380), +(29132, 'Madge', 1924, 'F', 379), +(29133, 'Eddie', 1924, 'F', 377), +(29134, 'Lupe', 1924, 'F', 377), +(29135, 'Aline', 1924, 'F', 376), +(29136, 'Ruthie', 1924, 'F', 374), +(29137, 'Corine', 1924, 'F', 369), +(29138, 'Cynthia', 1924, 'F', 366), +(29139, 'Leila', 1924, 'F', 365), +(29140, 'Wilda', 1924, 'F', 362), +(29141, 'Lora', 1924, 'F', 361), +(29142, 'Ophelia', 1924, 'F', 361), +(29143, 'Eliza', 1924, 'F', 359), +(29144, 'Aurora', 1924, 'F', 357), +(29145, 'Sophia', 1924, 'F', 357), +(29146, 'Dolly', 1924, 'F', 352), +(29147, 'Lorena', 1924, 'F', 350), +(29148, 'Bernadette', 1924, 'F', 348), +(29149, 'Amanda', 1924, 'F', 341), +(29150, 'Polly', 1924, 'F', 340), +(29151, 'Reva', 1924, 'F', 339), +(29152, 'Maryann', 1924, 'F', 335), +(29153, 'Antonia', 1924, 'F', 334), +(29154, 'Iona', 1924, 'F', 332), +(29155, 'Berniece', 1924, 'F', 331), +(29156, 'Adelaide', 1924, 'F', 330), +(29157, 'Mona', 1924, 'F', 328), +(29158, 'Florine', 1924, 'F', 320), +(29159, 'Nola', 1924, 'F', 320), +(29160, 'Beth', 1924, 'F', 319), +(29161, 'Mercedes', 1924, 'F', 319), +(29162, 'Callie', 1924, 'F', 318), +(29163, 'Hester', 1924, 'F', 317), +(29164, 'Madelyn', 1924, 'F', 315), +(29165, 'Lessie', 1924, 'F', 314), +(29166, 'Robbie', 1924, 'F', 314), +(29167, 'Pearlie', 1924, 'F', 312), +(29168, 'Consuelo', 1924, 'F', 311), +(29169, 'Nelda', 1924, 'F', 311), +(29170, 'Tommie', 1924, 'F', 310), +(29171, 'Leota', 1924, 'F', 309), +(29172, 'Dorris', 1924, 'F', 304), +(29173, 'Lelia', 1924, 'F', 304), +(29174, 'Lorna', 1924, 'F', 304), +(29175, 'Kay', 1924, 'F', 302), +(29176, 'Lilly', 1924, 'F', 301), +(29177, 'Johanna', 1924, 'F', 300), +(29178, 'Robert', 1924, 'F', 298), +(29179, 'Tillie', 1924, 'F', 298), +(29180, 'Rosemarie', 1924, 'F', 296), +(29181, 'Maudie', 1924, 'F', 295), +(29182, 'Georgie', 1924, 'F', 292), +(29183, 'Philomena', 1924, 'F', 292), +(29184, 'Molly', 1924, 'F', 290), +(29185, 'Therese', 1924, 'F', 290), +(29186, 'Delia', 1924, 'F', 289), +(29187, 'Winona', 1924, 'F', 289), +(29188, 'Melva', 1924, 'F', 288), +(29189, 'Corrine', 1924, 'F', 287), +(29190, 'Jaunita', 1924, 'F', 285), +(29191, 'Isabell', 1924, 'F', 282), +(29192, 'Marjory', 1924, 'F', 282), +(29193, 'Jacquelyn', 1924, 'F', 281), +(29194, 'Jannie', 1924, 'F', 281), +(29195, 'Jackie', 1924, 'F', 280), +(29196, 'Leatrice', 1924, 'F', 278), +(29197, 'Roxie', 1924, 'F', 278), +(29198, 'Diana', 1924, 'F', 276), +(29199, 'Dortha', 1924, 'F', 276), +(29200, 'Judy', 1924, 'F', 276), +(29201, 'Lorine', 1924, 'F', 276), +(29202, 'Althea', 1924, 'F', 275), +(29203, 'Ilene', 1924, 'F', 275), +(29204, 'James', 1924, 'F', 275), +(29205, 'Margarita', 1924, 'F', 275), +(29206, 'Elouise', 1924, 'F', 272), +(29207, 'Iola', 1924, 'F', 272), +(29208, 'Nona', 1924, 'F', 271), +(29209, 'Katharine', 1924, 'F', 265), +(29210, 'Maurine', 1924, 'F', 265), +(29211, 'Ione', 1924, 'F', 263), +(29212, 'Gussie', 1924, 'F', 262), +(29213, 'Bertie', 1924, 'F', 261), +(29214, 'Pansy', 1924, 'F', 259), +(29215, 'Evangeline', 1924, 'F', 258), +(29216, 'Gene', 1924, 'F', 257), +(29217, 'Roslyn', 1924, 'F', 255), +(29218, 'Lavonne', 1924, 'F', 252), +(29219, 'Leora', 1924, 'F', 252), +(29220, 'Retha', 1924, 'F', 252), +(29221, 'Oma', 1924, 'F', 251), +(29222, 'Zelda', 1924, 'F', 250), +(29223, 'Queen', 1924, 'F', 249), +(29224, 'Marietta', 1924, 'F', 246), +(29225, 'William', 1924, 'F', 245), +(29226, 'Earnestine', 1924, 'F', 244), +(29227, 'Rosalind', 1924, 'F', 243), +(29228, 'Verda', 1924, 'F', 243), +(29229, 'Augusta', 1924, 'F', 241), +(29230, 'Dessie', 1924, 'F', 239), +(29231, 'Louella', 1924, 'F', 239), +(29232, 'Marianne', 1924, 'F', 239), +(29233, 'Betsy', 1924, 'F', 236), +(29234, 'Zella', 1924, 'F', 235), +(29235, 'Faith', 1924, 'F', 232), +(29236, 'Alene', 1924, 'F', 231), +(29237, 'Georgette', 1924, 'F', 231), +(29238, 'Isabella', 1924, 'F', 231), +(29239, 'Alfreda', 1924, 'F', 228), +(29240, 'Birdie', 1924, 'F', 227), +(29241, 'Emogene', 1924, 'F', 226), +(29242, 'Rubye', 1924, 'F', 226), +(29243, 'Madeleine', 1924, 'F', 225), +(29244, 'Harriette', 1924, 'F', 224), +(29245, 'Stephanie', 1924, 'F', 224), +(29246, 'Delphine', 1924, 'F', 223), +(29247, 'Monica', 1924, 'F', 223), +(29248, 'Kate', 1924, 'F', 222), +(29249, 'Alicia', 1924, 'F', 220), +(29250, 'Beryl', 1924, 'F', 219), +(29251, 'Clare', 1924, 'F', 217), +(29252, 'Jerry', 1924, 'F', 217), +(29253, 'Ester', 1924, 'F', 216), +(29254, 'Hallie', 1924, 'F', 216), +(29255, 'Alvina', 1924, 'F', 214), +(29256, 'Angie', 1924, 'F', 213), +(29257, 'Elena', 1924, 'F', 213), +(29258, 'Earlene', 1924, 'F', 212), +(29259, 'Hortense', 1924, 'F', 212), +(29260, 'Jenny', 1924, 'F', 212), +(29261, 'Valeria', 1924, 'F', 212), +(29262, 'Millicent', 1924, 'F', 211), +(29263, 'Allene', 1924, 'F', 208), +(29264, 'Joanna', 1924, 'F', 208), +(29265, 'Edwina', 1924, 'F', 206), +(29266, 'Freddie', 1924, 'F', 206), +(29267, 'Carole', 1924, 'F', 204), +(29268, 'Elda', 1924, 'F', 202), +(29269, 'Erna', 1924, 'F', 202), +(29270, 'Gilda', 1924, 'F', 202), +(29271, 'Juana', 1924, 'F', 201), +(29272, 'Lettie', 1924, 'F', 201), +(29273, 'Manuela', 1924, 'F', 201), +(29274, 'Tessie', 1924, 'F', 201), +(29275, 'Elisabeth', 1924, 'F', 200), +(29276, 'Vada', 1924, 'F', 200), +(29277, 'Ardis', 1924, 'F', 199), +(29278, 'Bennie', 1924, 'F', 199), +(29279, 'Elise', 1924, 'F', 199), +(29280, 'Marilynn', 1924, 'F', 199), +(29281, 'Theda', 1924, 'F', 198), +(29282, 'George', 1924, 'F', 197), +(29283, 'Julie', 1924, 'F', 197), +(29284, 'Mozelle', 1924, 'F', 197), +(29285, 'Phoebe', 1924, 'F', 197), +(29286, 'Wilhelmina', 1924, 'F', 197), +(29287, 'Margret', 1924, 'F', 196), +(29288, 'Claudine', 1924, 'F', 195), +(29289, 'Enid', 1924, 'F', 195), +(29290, 'Hellen', 1924, 'F', 195), +(29291, 'Syble', 1924, 'F', 195), +(29292, 'Maryjane', 1924, 'F', 194), +(29293, 'Maureen', 1924, 'F', 194), +(29294, 'Shirlee', 1924, 'F', 194), +(29295, 'Louisa', 1924, 'F', 193), +(29296, 'Vesta', 1924, 'F', 193), +(29297, 'Dorotha', 1924, 'F', 191), +(29298, 'Katheryn', 1924, 'F', 191), +(29299, 'Rae', 1924, 'F', 190), +(29300, 'Lauretta', 1924, 'F', 189), +(29301, 'Rosalyn', 1924, 'F', 189), +(29302, 'Delma', 1924, 'F', 188), +(29303, 'Jayne', 1924, 'F', 188), +(29304, 'Aurelia', 1924, 'F', 187), +(29305, 'Petra', 1924, 'F', 187), +(29306, 'Charles', 1924, 'F', 186), +(29307, 'Freida', 1924, 'F', 186), +(29308, 'Johnie', 1924, 'F', 186), +(29309, 'Doreen', 1924, 'F', 184), +(29310, 'Filomena', 1924, 'F', 184), +(29311, 'Zola', 1924, 'F', 184), +(29312, 'Leta', 1924, 'F', 183), +(29313, 'Mayme', 1924, 'F', 183), +(29314, 'Minerva', 1924, 'F', 183), +(29315, 'Lucia', 1924, 'F', 182), +(29316, 'Renee', 1924, 'F', 182), +(29317, 'Blanch', 1924, 'F', 181), +(29318, 'Patty', 1924, 'F', 181), +(29319, 'Agatha', 1924, 'F', 180), +(29320, 'Justine', 1924, 'F', 180), +(29321, 'Dona', 1924, 'F', 179), +(29322, 'Ima', 1924, 'F', 179), +(29323, 'Arleen', 1924, 'F', 178), +(29324, 'Margarette', 1924, 'F', 178), +(29325, 'Vernell', 1924, 'F', 178), +(29326, 'Laurel', 1924, 'F', 177), +(29327, 'Myrtis', 1924, 'F', 177), +(29328, 'Theodora', 1924, 'F', 177), +(29329, 'Camille', 1924, 'F', 176), +(29330, 'Vernice', 1924, 'F', 176), +(29331, 'Charlie', 1924, 'F', 175), +(29332, 'Lura', 1924, 'F', 175), +(29333, 'Adell', 1924, 'F', 174), +(29334, 'Cecil', 1924, 'F', 174), +(29335, 'Esperanza', 1924, 'F', 174), +(29336, 'Oleta', 1924, 'F', 174), +(29337, 'Magdalene', 1924, 'F', 172), +(29338, 'Valerie', 1924, 'F', 172), +(29339, 'Una', 1924, 'F', 171), +(29340, 'Alva', 1924, 'F', 167), +(29341, 'Bonita', 1924, 'F', 167), +(29342, 'Fanny', 1924, 'F', 167), +(29343, 'Reta', 1924, 'F', 167), +(29344, 'Veda', 1924, 'F', 167), +(29345, 'Catharine', 1924, 'F', 166), +(29346, 'Elvera', 1924, 'F', 166), +(29347, 'Garnet', 1924, 'F', 166), +(29348, 'Gail', 1924, 'F', 165), +(29349, 'Rowena', 1924, 'F', 165), +(29350, 'Florene', 1924, 'F', 164), +(29351, 'Lucinda', 1924, 'F', 164), +(29352, 'Vida', 1924, 'F', 164), +(29353, 'Germaine', 1924, 'F', 163), +(29354, 'Belle', 1924, 'F', 162), +(29355, 'Dovie', 1924, 'F', 162), +(29356, 'Juliette', 1924, 'F', 162), +(29357, 'Sheila', 1924, 'F', 162), +(29358, 'Verla', 1924, 'F', 162), +(29359, 'Belva', 1924, 'F', 161), +(29360, 'Emilie', 1924, 'F', 161), +(29361, 'Georgiana', 1924, 'F', 161), +(29362, 'Twila', 1924, 'F', 160), +(29363, 'Doretha', 1924, 'F', 159), +(29364, 'Floy', 1924, 'F', 159), +(29365, 'Janette', 1924, 'F', 158), +(29366, 'Pat', 1924, 'F', 158), +(29367, 'Roma', 1924, 'F', 158), +(29368, 'Ava', 1924, 'F', 157), +(29369, 'Cassie', 1924, 'F', 157), +(29370, 'Ona', 1924, 'F', 157), +(29371, 'Celestine', 1924, 'F', 156), +(29372, 'Lona', 1924, 'F', 156), +(29373, 'Pearline', 1924, 'F', 156), +(29374, 'Nita', 1924, 'F', 155), +(29375, 'Rhea', 1924, 'F', 155), +(29376, 'Velda', 1924, 'F', 155), +(29377, 'Yvette', 1924, 'F', 155), +(29378, 'Eldora', 1924, 'F', 154), +(29379, 'Carmel', 1924, 'F', 153), +(29380, 'Francisca', 1924, 'F', 153), +(29381, 'Jeane', 1924, 'F', 153), +(29382, 'Josefina', 1924, 'F', 153), +(29383, 'Lue', 1924, 'F', 153), +(29384, 'Clementine', 1924, 'F', 152), +(29385, 'Eleanora', 1924, 'F', 152), +(29386, 'Joe', 1924, 'F', 152), +(29387, 'Lavon', 1924, 'F', 152), +(29388, 'Marvel', 1924, 'F', 152), +(29389, 'Rosalee', 1924, 'F', 152), +(29390, 'Ursula', 1924, 'F', 152), +(29391, 'Leone', 1924, 'F', 151), +(29392, 'Ouida', 1924, 'F', 151), +(29393, 'Glenda', 1924, 'F', 150), +(29394, 'Mazie', 1924, 'F', 149), +(29395, 'Myrtice', 1924, 'F', 149), +(29396, 'Alda', 1924, 'F', 148), +(29397, 'Artie', 1924, 'F', 148), +(29398, 'Beverley', 1924, 'F', 147), +(29399, 'Marianna', 1924, 'F', 147), +(29400, 'Novella', 1924, 'F', 147), +(29401, 'Alpha', 1924, 'F', 146), +(29402, 'Gertie', 1924, 'F', 146), +(29403, 'Ferne', 1924, 'F', 145), +(29404, 'Lavern', 1924, 'F', 145), +(29405, 'Sandra', 1924, 'F', 145), +(29406, 'Carolina', 1924, 'F', 144), +(29407, 'Idella', 1924, 'F', 144), +(29408, 'Emilia', 1924, 'F', 143), +(29409, 'Orpha', 1924, 'F', 143), +(29410, 'Leslie', 1924, 'F', 142), +(29411, 'Odell', 1924, 'F', 142), +(29412, 'Tina', 1924, 'F', 142), +(29413, 'Dawn', 1924, 'F', 141), +(29414, 'Treva', 1924, 'F', 141), +(29415, 'Elsa', 1924, 'F', 140), +(29416, 'Maybelle', 1924, 'F', 139), +(29417, 'Aletha', 1924, 'F', 138), +(29418, 'Camilla', 1924, 'F', 138), +(29419, 'Leonora', 1924, 'F', 138), +(29420, 'Adrienne', 1924, 'F', 137), +(29421, 'Evelyne', 1924, 'F', 136), +(29422, 'Linnie', 1924, 'F', 136), +(29423, 'Berneice', 1924, 'F', 135), +(29424, 'Cathryn', 1924, 'F', 135), +(29425, 'Celeste', 1924, 'F', 135), +(29426, 'Joseph', 1924, 'F', 135), +(29427, 'Marcelle', 1924, 'F', 135), +(29428, 'Bella', 1924, 'F', 134), +(29429, 'Andrea', 1924, 'F', 133), +(29430, 'Janis', 1924, 'F', 133), +(29431, 'Maud', 1924, 'F', 133), +(29432, 'Albina', 1924, 'F', 132), +(29433, 'Cordelia', 1924, 'F', 132), +(29434, 'Albertha', 1924, 'F', 131), +(29435, 'Winnifred', 1924, 'F', 131), +(29436, 'Adela', 1924, 'F', 130), +(29437, 'Lavina', 1924, 'F', 130), +(29438, 'Rosina', 1924, 'F', 130), +(29439, 'Myrna', 1924, 'F', 129), +(29440, 'Charline', 1924, 'F', 127), +(29441, 'Ethelyn', 1924, 'F', 127), +(29442, 'Kitty', 1924, 'F', 127), +(29443, 'Ardith', 1924, 'F', 125), +(29444, 'Deborah', 1924, 'F', 125), +(29445, 'Ivy', 1924, 'F', 125), +(29446, 'Amalia', 1924, 'F', 124), +(29447, 'Socorro', 1924, 'F', 124), +(29448, 'Vergie', 1924, 'F', 124), +(29449, 'Annabel', 1924, 'F', 123), +(29450, 'Diane', 1924, 'F', 123), +(29451, 'Gretchen', 1924, 'F', 123), +(29452, 'Kathrine', 1924, 'F', 123), +(29453, 'Magnolia', 1924, 'F', 122), +(29454, 'Ray', 1924, 'F', 122), +(29455, 'Ruthe', 1924, 'F', 122), +(29456, 'Elisa', 1924, 'F', 121), +(29457, 'Georgianna', 1924, 'F', 121), +(29458, 'Rubie', 1924, 'F', 121), +(29459, 'Sammie', 1924, 'F', 121), +(29460, 'Zora', 1924, 'F', 121), +(29461, 'Mina', 1924, 'F', 119), +(29462, 'Angelita', 1924, 'F', 118), +(29463, 'Annabell', 1924, 'F', 118), +(29464, 'Nan', 1924, 'F', 118), +(29465, 'Adella', 1924, 'F', 117), +(29466, 'Annamae', 1924, 'F', 117), +(29467, 'Gwen', 1924, 'F', 117), +(29468, 'Bethel', 1924, 'F', 116), +(29469, 'Delphia', 1924, 'F', 116), +(29470, 'Margarett', 1924, 'F', 116), +(29471, 'Melvina', 1924, 'F', 116), +(29472, 'Terry', 1924, 'F', 116), +(29473, 'Vincenza', 1924, 'F', 115), +(29474, 'Daphne', 1924, 'F', 114), +(29475, 'Era', 1924, 'F', 114), +(29476, 'Evalyn', 1924, 'F', 114), +(29477, 'Lina', 1924, 'F', 114), +(29478, 'Easter', 1924, 'F', 113), +(29479, 'Eve', 1924, 'F', 113), +(29480, 'Lulu', 1924, 'F', 113), +(29481, 'Magdalena', 1924, 'F', 113), +(29482, 'Mathilda', 1924, 'F', 113), +(29483, 'Annetta', 1924, 'F', 112), +(29484, 'Donnie', 1924, 'F', 112), +(29485, 'Ardella', 1924, 'F', 111), +(29486, 'Estell', 1924, 'F', 111), +(29487, 'Theo', 1924, 'F', 111), +(29488, 'Berta', 1924, 'F', 110), +(29489, 'Claudie', 1924, 'F', 110), +(29490, 'Madonna', 1924, 'F', 110), +(29491, 'Neoma', 1924, 'F', 110), +(29492, 'Vivien', 1924, 'F', 110), +(29493, 'Hettie', 1924, 'F', 109), +(29494, 'Maryellen', 1924, 'F', 109), +(29495, 'Dorcas', 1924, 'F', 108), +(29496, 'Gayle', 1924, 'F', 108), +(29497, 'Leatha', 1924, 'F', 108), +(29498, 'Mittie', 1924, 'F', 108), +(29499, 'Almeda', 1924, 'F', 107), +(29500, 'Billye', 1924, 'F', 107), +(29501, 'Antonette', 1924, 'F', 106), +(29502, 'Noreen', 1924, 'F', 106), +(29503, 'Elna', 1924, 'F', 105), +(29504, 'Norine', 1924, 'F', 105), +(29505, 'Yetta', 1924, 'F', 105), +(29506, 'Felicia', 1924, 'F', 104), +(29507, 'Zona', 1924, 'F', 104), +(29508, 'Eris', 1924, 'F', 103), +(29509, 'Lyla', 1924, 'F', 103), +(29510, 'Tressie', 1924, 'F', 103), +(29511, 'Catalina', 1924, 'F', 102), +(29512, 'Elayne', 1924, 'F', 102), +(29513, 'Marge', 1924, 'F', 102), +(29514, 'Velva', 1924, 'F', 102), +(29515, 'Eloisa', 1924, 'F', 101), +(29516, 'Georgina', 1924, 'F', 101), +(29517, 'Mozell', 1924, 'F', 101), +(29518, 'Crystal', 1924, 'F', 100), +(29519, 'Ira', 1924, 'F', 100), +(29520, 'Lovie', 1924, 'F', 100), +(29521, 'Roselyn', 1924, 'F', 100), +(29522, 'Santos', 1924, 'F', 100), +(29523, 'Sibyl', 1924, 'F', 100), +(29524, 'Robert', 1924, 'M', 60792), +(29525, 'John', 1924, 'M', 59056), +(29526, 'William', 1924, 'M', 53524), +(29527, 'James', 1924, 'M', 52936), +(29528, 'Charles', 1924, 'M', 30455), +(29529, 'George', 1924, 'M', 27365), +(29530, 'Joseph', 1924, 'M', 25432), +(29531, 'Richard', 1924, 'M', 21247), +(29532, 'Edward', 1924, 'M', 21131), +(29533, 'Donald', 1924, 'M', 17926), +(29534, 'Thomas', 1924, 'M', 16554), +(29535, 'Frank', 1924, 'M', 16044), +(29536, 'Harold', 1924, 'M', 14156), +(29537, 'Paul', 1924, 'M', 13333), +(29538, 'Raymond', 1924, 'M', 12871), +(29539, 'Walter', 1924, 'M', 12701), +(29540, 'Jack', 1924, 'M', 11921), +(29541, 'Henry', 1924, 'M', 11195), +(29542, 'Kenneth', 1924, 'M', 10355), +(29543, 'Arthur', 1924, 'M', 10173), +(29544, 'Albert', 1924, 'M', 9882), +(29545, 'Harry', 1924, 'M', 9111), +(29546, 'Ralph', 1924, 'M', 8771), +(29547, 'David', 1924, 'M', 8757), +(29548, 'Eugene', 1924, 'M', 8346), +(29549, 'Howard', 1924, 'M', 7370), +(29550, 'Carl', 1924, 'M', 7089), +(29551, 'Louis', 1924, 'M', 7038), +(29552, 'Clarence', 1924, 'M', 6899), +(29553, 'Willie', 1924, 'M', 6704), +(29554, 'Roy', 1924, 'M', 6552), +(29555, 'Fred', 1924, 'M', 6535), +(29556, 'Earl', 1924, 'M', 6524), +(29557, 'Francis', 1924, 'M', 6133), +(29558, 'Joe', 1924, 'M', 6047), +(29559, 'Lawrence', 1924, 'M', 5775), +(29560, 'Ernest', 1924, 'M', 5684), +(29561, 'Leonard', 1924, 'M', 5604), +(29562, 'Anthony', 1924, 'M', 5193), +(29563, 'Stanley', 1924, 'M', 5185), +(29564, 'Herbert', 1924, 'M', 5123), +(29565, 'Norman', 1924, 'M', 5046), +(29566, 'Alfred', 1924, 'M', 4929), +(29567, 'Calvin', 1924, 'M', 4918), +(29568, 'Samuel', 1924, 'M', 4596), +(29569, 'Bernard', 1924, 'M', 4505), +(29570, 'Daniel', 1924, 'M', 4400), +(29571, 'Melvin', 1924, 'M', 4169), +(29572, 'Gerald', 1924, 'M', 4155), +(29573, 'Marvin', 1924, 'M', 4020), +(29574, 'Leo', 1924, 'M', 3989), +(29575, 'Russell', 1924, 'M', 3947), +(29576, 'Leroy', 1924, 'M', 3923), +(29577, 'Michael', 1924, 'M', 3873), +(29578, 'Edwin', 1924, 'M', 3790), +(29579, 'Andrew', 1924, 'M', 3746), +(29580, 'Elmer', 1924, 'M', 3733), +(29581, 'Warren', 1924, 'M', 3583), +(29582, 'Peter', 1924, 'M', 3520), +(29583, 'Ray', 1924, 'M', 3369), +(29584, 'Lloyd', 1924, 'M', 3350), +(29585, 'Frederick', 1924, 'M', 3278), +(29586, 'Billy', 1924, 'M', 3271), +(29587, 'Clifford', 1924, 'M', 3249), +(29588, 'Theodore', 1924, 'M', 3226), +(29589, 'Floyd', 1924, 'M', 3166), +(29590, 'Chester', 1924, 'M', 3028), +(29591, 'Vernon', 1924, 'M', 3006), +(29592, 'Clyde', 1924, 'M', 3005), +(29593, 'Herman', 1924, 'M', 2953), +(29594, 'Philip', 1924, 'M', 2921), +(29595, 'Lester', 1924, 'M', 2778), +(29596, 'Alvin', 1924, 'M', 2760), +(29597, 'Wayne', 1924, 'M', 2731), +(29598, 'Gordon', 1924, 'M', 2714), +(29599, 'Leon', 1924, 'M', 2677), +(29600, 'Lewis', 1924, 'M', 2670), +(29601, 'Vincent', 1924, 'M', 2637), +(29602, 'Glenn', 1924, 'M', 2587), +(29603, 'Charlie', 1924, 'M', 2505), +(29604, 'Milton', 1924, 'M', 2474), +(29605, 'Martin', 1924, 'M', 2453), +(29606, 'Lee', 1924, 'M', 2419), +(29607, 'Dale', 1924, 'M', 2396), +(29608, 'Cecil', 1924, 'M', 2301), +(29609, 'Jesse', 1924, 'M', 2290), +(29610, 'Wallace', 1924, 'M', 2285), +(29611, 'Harvey', 1924, 'M', 2243), +(29612, 'Benjamin', 1924, 'M', 2222), +(29613, 'Victor', 1924, 'M', 2191), +(29614, 'Sam', 1924, 'M', 2119), +(29615, 'Bill', 1924, 'M', 2069), +(29616, 'Roger', 1924, 'M', 2056), +(29617, 'Allen', 1924, 'M', 2044), +(29618, 'Arnold', 1924, 'M', 2012), +(29619, 'Edgar', 1924, 'M', 1875), +(29620, 'Willard', 1924, 'M', 1834), +(29621, 'Roland', 1924, 'M', 1822), +(29622, 'Oscar', 1924, 'M', 1817), +(29623, 'Gilbert', 1924, 'M', 1795), +(29624, 'Johnnie', 1924, 'M', 1739), +(29625, 'Maurice', 1924, 'M', 1714), +(29626, 'Claude', 1924, 'M', 1705), +(29627, 'Everett', 1924, 'M', 1697), +(29628, 'Douglas', 1924, 'M', 1675), +(29629, 'Wilbur', 1924, 'M', 1667), +(29630, 'Leslie', 1924, 'M', 1663), +(29631, 'Manuel', 1924, 'M', 1662), +(29632, 'Homer', 1924, 'M', 1648), +(29633, 'Stephen', 1924, 'M', 1636), +(29634, 'Virgil', 1924, 'M', 1626), +(29635, 'Marion', 1924, 'M', 1617), +(29636, 'Eddie', 1924, 'M', 1594), +(29637, 'Jerome', 1924, 'M', 1574), +(29638, 'Hubert', 1924, 'M', 1551), +(29639, 'Hugh', 1924, 'M', 1541), +(29640, 'Curtis', 1924, 'M', 1527), +(29641, 'Glen', 1924, 'M', 1520), +(29642, 'Sidney', 1924, 'M', 1504), +(29643, 'Morris', 1924, 'M', 1498), +(29644, 'Junior', 1924, 'M', 1494), +(29645, 'Nicholas', 1924, 'M', 1488), +(29646, 'Jerry', 1924, 'M', 1470), +(29647, 'Jessie', 1924, 'M', 1460), +(29648, 'Don', 1924, 'M', 1451), +(29649, 'Max', 1924, 'M', 1397), +(29650, 'Luther', 1924, 'M', 1395), +(29651, 'Jose', 1924, 'M', 1393), +(29652, 'Alexander', 1924, 'M', 1382), +(29653, 'Ronald', 1924, 'M', 1361), +(29654, 'Wesley', 1924, 'M', 1346), +(29655, 'Jimmie', 1924, 'M', 1317), +(29656, 'Bruce', 1924, 'M', 1312), +(29657, 'Franklin', 1924, 'M', 1284), +(29658, 'Gene', 1924, 'M', 1274), +(29659, 'Willis', 1924, 'M', 1261), +(29660, 'Irving', 1924, 'M', 1260), +(29661, 'Rudolph', 1924, 'M', 1228), +(29662, 'Steve', 1924, 'M', 1218), +(29663, 'Oliver', 1924, 'M', 1173), +(29664, 'Ben', 1924, 'M', 1172), +(29665, 'Bob', 1924, 'M', 1167), +(29666, 'Horace', 1924, 'M', 1166), +(29667, 'Dean', 1924, 'M', 1150), +(29668, 'Earnest', 1924, 'M', 1144), +(29669, 'Julius', 1924, 'M', 1134), +(29670, 'Patrick', 1924, 'M', 1122), +(29671, 'Edmund', 1924, 'M', 1115), +(29672, 'Tom', 1924, 'M', 1097), +(29673, 'Keith', 1924, 'M', 1069), +(29674, 'Guy', 1924, 'M', 1053), +(29675, 'Johnny', 1924, 'M', 1048), +(29676, 'Clayton', 1924, 'M', 1039), +(29677, 'Archie', 1924, 'M', 1037), +(29678, 'Orville', 1924, 'M', 1037), +(29679, 'Tony', 1924, 'M', 1031), +(29680, 'Salvatore', 1924, 'M', 1024), +(29681, 'Otis', 1924, 'M', 1011), +(29682, 'Lyle', 1924, 'M', 1000), +(29683, 'Jim', 1924, 'M', 991), +(29684, 'Delbert', 1924, 'M', 989), +(29685, 'Alex', 1924, 'M', 979), +(29686, 'Jacob', 1924, 'M', 971), +(29687, 'Mike', 1924, 'M', 964), +(29688, 'Angelo', 1924, 'M', 961), +(29689, 'Phillip', 1924, 'M', 899), +(29690, 'Billie', 1924, 'M', 882), +(29691, 'Bennie', 1924, 'M', 870), +(29692, 'Marshall', 1924, 'M', 857), +(29693, 'Jay', 1924, 'M', 853), +(29694, 'Matthew', 1924, 'M', 851), +(29695, 'Clifton', 1924, 'M', 848), +(29696, 'Ira', 1924, 'M', 834), +(29697, 'Clinton', 1924, 'M', 831), +(29698, 'Lowell', 1924, 'M', 819), +(29699, 'Duane', 1924, 'M', 816), +(29700, 'Wilbert', 1924, 'M', 812), +(29701, 'Dennis', 1924, 'M', 807), +(29702, 'Nathaniel', 1924, 'M', 801), +(29703, 'Dan', 1924, 'M', 800), +(29704, 'Emil', 1924, 'M', 790), +(29705, 'Seymour', 1924, 'M', 785), +(29706, 'Ivan', 1924, 'M', 784), +(29707, 'Merle', 1924, 'M', 784), +(29708, 'Leland', 1924, 'M', 775), +(29709, 'Dewey', 1924, 'M', 772), +(29710, 'Irvin', 1924, 'M', 763), +(29711, 'Nelson', 1924, 'M', 754), +(29712, 'Nick', 1924, 'M', 747), +(29713, 'Juan', 1924, 'M', 740), +(29714, 'Bobby', 1924, 'M', 732), +(29715, 'Ervin', 1924, 'M', 729), +(29716, 'Elbert', 1924, 'M', 727), +(29717, 'Julian', 1924, 'M', 727), +(29718, 'Wilfred', 1924, 'M', 727), +(29719, 'Lonnie', 1924, 'M', 716), +(29720, 'Rufus', 1924, 'M', 709), +(29721, 'Sylvester', 1924, 'M', 707), +(29722, 'Isaac', 1924, 'M', 704), +(29723, 'Forrest', 1924, 'M', 694), +(29724, 'Allan', 1924, 'M', 692), +(29725, 'Antonio', 1924, 'M', 690), +(29726, 'Aaron', 1924, 'M', 682), +(29727, 'Nathan', 1924, 'M', 680), +(29728, 'Alton', 1924, 'M', 678), +(29729, 'Mark', 1924, 'M', 672), +(29730, 'Carroll', 1924, 'M', 669), +(29731, 'Felix', 1924, 'M', 662), +(29732, 'Jesus', 1924, 'M', 662), +(29733, 'Malcolm', 1924, 'M', 639), +(29734, 'Loren', 1924, 'M', 636), +(29735, 'Norbert', 1924, 'M', 635), +(29736, 'Owen', 1924, 'M', 634), +(29737, 'Wendell', 1924, 'M', 634), +(29738, 'Ellis', 1924, 'M', 629), +(29739, 'Pete', 1924, 'M', 627), +(29740, 'Alan', 1924, 'M', 626), +(29741, 'Bert', 1924, 'M', 619), +(29742, 'Ted', 1924, 'M', 611), +(29743, 'Myron', 1924, 'M', 607), +(29744, 'Otto', 1924, 'M', 606), +(29745, 'Loyd', 1924, 'M', 605), +(29746, 'Elwood', 1924, 'M', 604), +(29747, 'Perry', 1924, 'M', 601), +(29748, 'Eldon', 1924, 'M', 598), +(29749, 'Byron', 1924, 'M', 593), +(29750, 'Freddie', 1924, 'M', 593), +(29751, 'Murray', 1924, 'M', 591), +(29752, 'Rex', 1924, 'M', 589), +(29753, 'Ross', 1924, 'M', 587), +(29754, 'Fredrick', 1924, 'M', 585), +(29755, 'Karl', 1924, 'M', 585), +(29756, 'Emmett', 1924, 'M', 584), +(29757, 'Grady', 1924, 'M', 581), +(29758, 'Dominick', 1924, 'M', 580), +(29759, 'Johnie', 1924, 'M', 579), +(29760, 'Larry', 1924, 'M', 577), +(29761, 'Laurence', 1924, 'M', 575), +(29762, 'August', 1924, 'M', 574), +(29763, 'Tommy', 1924, 'M', 568), +(29764, 'Grover', 1924, 'M', 567), +(29765, 'Percy', 1924, 'M', 561), +(29766, 'Troy', 1924, 'M', 557), +(29767, 'Abraham', 1924, 'M', 555), +(29768, 'Burton', 1924, 'M', 550), +(29769, 'Mack', 1924, 'M', 546), +(29770, 'Wilson', 1924, 'M', 543), +(29771, 'Gerard', 1924, 'M', 541), +(29772, 'Neil', 1924, 'M', 540), +(29773, 'Jimmy', 1924, 'M', 529), +(29774, 'Sherman', 1924, 'M', 528), +(29775, 'Harley', 1924, 'M', 522), +(29776, 'Harlan', 1924, 'M', 518), +(29777, 'Woodrow', 1924, 'M', 515), +(29778, 'Amos', 1924, 'M', 506), +(29779, 'Darrell', 1924, 'M', 506), +(29780, 'Erwin', 1924, 'M', 501), +(29781, 'Irwin', 1924, 'M', 488), +(29782, 'Dominic', 1924, 'M', 486), +(29783, 'Mario', 1924, 'M', 484), +(29784, 'Morton', 1924, 'M', 472), +(29785, 'Doyle', 1924, 'M', 468), +(29786, 'Adam', 1924, 'M', 464), +(29787, 'Ramon', 1924, 'M', 464), +(29788, 'Louie', 1924, 'M', 460), +(29789, 'Boyd', 1924, 'M', 459), +(29790, 'Aubrey', 1924, 'M', 458), +(29791, 'Carlos', 1924, 'M', 453), +(29792, 'Adolph', 1924, 'M', 452), +(29793, 'Dwight', 1924, 'M', 450), +(29794, 'Roscoe', 1924, 'M', 444), +(29795, 'Dick', 1924, 'M', 441), +(29796, 'Reuben', 1924, 'M', 436), +(29797, 'Pedro', 1924, 'M', 434), +(29798, 'Carlton', 1924, 'M', 430), +(29799, 'Charley', 1924, 'M', 430), +(29800, 'Austin', 1924, 'M', 420), +(29801, 'Benny', 1924, 'M', 415), +(29802, 'Tommie', 1924, 'M', 415), +(29803, 'Garland', 1924, 'M', 414), +(29804, 'Preston', 1924, 'M', 413), +(29805, 'Lynn', 1924, 'M', 410), +(29806, 'Neal', 1924, 'M', 407), +(29807, 'Millard', 1924, 'M', 406), +(29808, 'Cornelius', 1924, 'M', 403), +(29809, 'Edmond', 1924, 'M', 403), +(29810, 'Roosevelt', 1924, 'M', 403), +(29811, 'Laverne', 1924, 'M', 402), +(29812, 'Ruben', 1924, 'M', 398), +(29813, 'Rodney', 1924, 'M', 396), +(29814, 'Jasper', 1924, 'M', 395), +(29815, 'Conrad', 1924, 'M', 387), +(29816, 'Wade', 1924, 'M', 386), +(29817, 'Elton', 1924, 'M', 381), +(29818, 'Joel', 1924, 'M', 376), +(29819, 'Grant', 1924, 'M', 368), +(29820, 'Francisco', 1924, 'M', 366), +(29821, 'Mitchell', 1924, 'M', 365), +(29822, 'Wilmer', 1924, 'M', 365), +(29823, 'Moses', 1924, 'M', 360), +(29824, 'Rocco', 1924, 'M', 359), +(29825, 'Maynard', 1924, 'M', 358), +(29826, 'Stuart', 1924, 'M', 356), +(29827, 'Alfonso', 1924, 'M', 354), +(29828, 'Will', 1924, 'M', 353), +(29829, 'Reginald', 1924, 'M', 347), +(29830, 'Emanuel', 1924, 'M', 345), +(29831, 'Carmen', 1924, 'M', 344), +(29832, 'Alonzo', 1924, 'M', 342), +(29833, 'Dave', 1924, 'M', 342), +(29834, 'Cleveland', 1924, 'M', 339), +(29835, 'Merlin', 1924, 'M', 337), +(29836, 'Jean', 1924, 'M', 336), +(29837, 'Adrian', 1924, 'M', 334), +(29838, 'Luis', 1924, 'M', 334), +(29839, 'Harrison', 1924, 'M', 333), +(29840, 'Marcus', 1924, 'M', 333), +(29841, 'Simon', 1924, 'M', 330), +(29842, 'Dallas', 1924, 'M', 328), +(29843, 'Clair', 1924, 'M', 327), +(29844, 'Russel', 1924, 'M', 327), +(29845, 'Elvin', 1924, 'M', 323), +(29846, 'Lionel', 1924, 'M', 323), +(29847, 'Timothy', 1924, 'M', 323), +(29848, 'Armand', 1924, 'M', 320), +(29849, 'Steven', 1924, 'M', 320), +(29850, 'Thurman', 1924, 'M', 314), +(29851, 'Elmo', 1924, 'M', 312), +(29852, 'Sheldon', 1924, 'M', 311), +(29853, 'Norris', 1924, 'M', 308), +(29854, 'Raul', 1924, 'M', 307), +(29855, 'Jake', 1924, 'M', 306), +(29856, 'Buford', 1924, 'M', 305), +(29857, 'Claud', 1924, 'M', 305), +(29858, 'Cleo', 1924, 'M', 300), +(29859, 'Gus', 1924, 'M', 298), +(29860, 'Patsy', 1924, 'M', 298), +(29861, 'Christopher', 1924, 'M', 296), +(29862, 'Monroe', 1924, 'M', 293), +(29863, 'Stewart', 1924, 'M', 293), +(29864, 'Delmar', 1924, 'M', 292), +(29865, 'Ned', 1924, 'M', 292), +(29866, 'Ollie', 1924, 'M', 292), +(29867, 'Earle', 1924, 'M', 291), +(29868, 'Hollis', 1924, 'M', 291), +(29869, 'Lavern', 1924, 'M', 290), +(29870, 'Teddy', 1924, 'M', 290), +(29871, 'Clement', 1924, 'M', 287), +(29872, 'Vito', 1924, 'M', 287), +(29873, 'Wilburn', 1924, 'M', 286), +(29874, 'Salvador', 1924, 'M', 283), +(29875, 'Clark', 1924, 'M', 282), +(29876, 'Cyril', 1924, 'M', 282), +(29877, 'Basil', 1924, 'M', 281), +(29878, 'Sterling', 1924, 'M', 281), +(29879, 'Odell', 1924, 'M', 280), +(29880, 'Kermit', 1924, 'M', 277), +(29881, 'Ward', 1924, 'M', 276), +(29882, 'Barney', 1924, 'M', 275), +(29883, 'Sammie', 1924, 'M', 275), +(29884, 'Thaddeus', 1924, 'M', 275), +(29885, 'Alva', 1924, 'M', 273), +(29886, 'Weldon', 1924, 'M', 273), +(29887, 'Ed', 1924, 'M', 270), +(29888, 'Forest', 1924, 'M', 270), +(29889, 'Solomon', 1924, 'M', 269), +(29890, 'Emery', 1924, 'M', 268), +(29891, 'Andy', 1924, 'M', 266), +(29892, 'Merrill', 1924, 'M', 266), +(29893, 'Randolph', 1924, 'M', 265), +(29894, 'Sanford', 1924, 'M', 265), +(29895, 'Emory', 1924, 'M', 263), +(29896, 'Jess', 1924, 'M', 262), +(29897, 'Winston', 1924, 'M', 262), +(29898, 'Bruno', 1924, 'M', 261), +(29899, 'Elijah', 1924, 'M', 261), +(29900, 'Wilford', 1924, 'M', 257), +(29901, 'Alphonse', 1924, 'M', 249), +(29902, 'Emerson', 1924, 'M', 249), +(29903, 'Roman', 1924, 'M', 248), +(29904, 'Eli', 1924, 'M', 247), +(29905, 'Herschel', 1924, 'M', 246), +(29906, 'Travis', 1924, 'M', 246), +(29907, 'Gale', 1924, 'M', 243), +(29908, 'Orval', 1924, 'M', 243), +(29909, 'Vern', 1924, 'M', 243), +(29910, 'Pasquale', 1924, 'M', 241), +(29911, 'Pat', 1924, 'M', 241), +(29912, 'Roberto', 1924, 'M', 241), +(29913, 'Truman', 1924, 'M', 240), +(29914, 'Bobbie', 1924, 'M', 239), +(29915, 'Noah', 1924, 'M', 239), +(29916, 'Marlin', 1924, 'M', 238), +(29917, 'Wiley', 1924, 'M', 238), +(29918, 'Gabriel', 1924, 'M', 235), +(29919, 'Lamar', 1924, 'M', 235), +(29920, 'Coy', 1924, 'M', 234), +(29921, 'Van', 1924, 'M', 234), +(29922, 'Miles', 1924, 'M', 233), +(29923, 'Milford', 1924, 'M', 233), +(29924, 'Royce', 1924, 'M', 233), +(29925, 'Rolland', 1924, 'M', 231), +(29926, 'Winfred', 1924, 'M', 231), +(29927, 'Levi', 1924, 'M', 229), +(29928, 'Eric', 1924, 'M', 228), +(29929, 'Jackson', 1924, 'M', 228), +(29930, 'Cletus', 1924, 'M', 226), +(29931, 'Gregory', 1924, 'M', 226), +(29932, 'Hershel', 1924, 'M', 226), +(29933, 'Shirley', 1924, 'M', 225), +(29934, 'Harris', 1924, 'M', 224), +(29935, 'Bertram', 1924, 'M', 223), +(29936, 'Mary', 1924, 'M', 223), +(29937, 'Darwin', 1924, 'M', 219), +(29938, 'Carmine', 1924, 'M', 218), +(29939, 'Lorenzo', 1924, 'M', 217), +(29940, 'Ellsworth', 1924, 'M', 215), +(29941, 'Royal', 1924, 'M', 214), +(29942, 'Saul', 1924, 'M', 213), +(29943, 'Silas', 1924, 'M', 213), +(29944, 'Mervin', 1924, 'M', 210), +(29945, 'Rudy', 1924, 'M', 208), +(29946, 'Wilton', 1924, 'M', 208), +(29947, 'Scott', 1924, 'M', 207), +(29948, 'Darrel', 1924, 'M', 206), +(29949, 'Luke', 1924, 'M', 206), +(29950, 'Delmer', 1924, 'M', 205), +(29951, 'Alfredo', 1924, 'M', 204), +(29952, 'Jackie', 1924, 'M', 203), +(29953, 'Anton', 1924, 'M', 202), +(29954, 'Dudley', 1924, 'M', 202), +(29955, 'Guadalupe', 1924, 'M', 202), +(29956, 'Buster', 1924, 'M', 201), +(29957, 'Lenard', 1924, 'M', 199), +(29958, 'Sol', 1924, 'M', 198), +(29959, 'Noel', 1924, 'M', 196), +(29960, 'Freeman', 1924, 'M', 195), +(29961, 'Lyman', 1924, 'M', 195), +(29962, 'Armando', 1924, 'M', 194), +(29963, 'Elliott', 1924, 'M', 194), +(29964, 'Randall', 1924, 'M', 193), +(29965, 'Mathew', 1924, 'M', 192), +(29966, 'Miguel', 1924, 'M', 191), +(29967, 'Linwood', 1924, 'M', 188), +(29968, 'Quentin', 1924, 'M', 188), +(29969, 'Spencer', 1924, 'M', 187), +(29970, 'Hiram', 1924, 'M', 186), +(29971, 'Jeff', 1924, 'M', 186), +(29972, 'Ferdinand', 1924, 'M', 185), +(29973, 'Rene', 1924, 'M', 185), +(29974, 'Alden', 1924, 'M', 183), +(29975, 'Alberto', 1924, 'M', 182), +(29976, 'Hal', 1924, 'M', 182), +(29977, 'Odis', 1924, 'M', 182), +(29978, 'Booker', 1924, 'M', 181), +(29979, 'Elias', 1924, 'M', 180), +(29980, 'Omer', 1924, 'M', 180), +(29981, 'Micheal', 1924, 'M', 179), +(29982, 'Chris', 1924, 'M', 178), +(29983, 'Buddy', 1924, 'M', 177), +(29984, 'Everette', 1924, 'M', 177), +(29985, 'Jefferson', 1924, 'M', 177), +(29986, 'Ulysses', 1924, 'M', 176), +(29987, 'Bud', 1924, 'M', 175), +(29988, 'Orlando', 1924, 'M', 175), +(29989, 'Abe', 1924, 'M', 174), +(29990, 'Davis', 1924, 'M', 174), +(29991, 'Frederic', 1924, 'M', 174), +(29992, 'Rafael', 1924, 'M', 174), +(29993, 'Foster', 1924, 'M', 172), +(29994, 'Gail', 1924, 'M', 172), +(29995, 'Houston', 1924, 'M', 172), +(29996, 'Hobert', 1924, 'M', 171), +(29997, 'Hoyt', 1924, 'M', 171), +(29998, 'Evan', 1924, 'M', 170), +(29999, 'Newton', 1924, 'M', 169), +(30000, 'Olen', 1924, 'M', 169), +(30001, 'Riley', 1924, 'M', 168), +(30002, 'Ambrose', 1924, 'M', 166), +(30003, 'Emilio', 1924, 'M', 166), +(30004, 'Denver', 1924, 'M', 165), +(30005, 'Hyman', 1924, 'M', 165), +(30006, 'Aloysius', 1924, 'M', 164), +(30007, 'Nolan', 1924, 'M', 164), +(30008, 'Casimir', 1924, 'M', 163), +(30009, 'Milo', 1924, 'M', 163), +(30010, 'Sammy', 1924, 'M', 163), +(30011, 'Waldo', 1924, 'M', 162), +(30012, 'Justin', 1924, 'M', 161), +(30013, 'Wilber', 1924, 'M', 160), +(30014, 'Hugo', 1924, 'M', 159), +(30015, 'Pablo', 1924, 'M', 159), +(30016, 'Elroy', 1924, 'M', 158), +(30017, 'Fletcher', 1924, 'M', 157), +(30018, 'Lincoln', 1924, 'M', 156), +(30019, 'Augustus', 1924, 'M', 155), +(30020, 'Morgan', 1924, 'M', 155), +(30021, 'Nickolas', 1924, 'M', 155), +(30022, 'Aldo', 1924, 'M', 154), +(30023, 'Burl', 1924, 'M', 154), +(30024, 'Isadore', 1924, 'M', 154), +(30025, 'Normand', 1924, 'M', 154), +(30026, 'Phil', 1924, 'M', 154), +(30027, 'Fernando', 1924, 'M', 153), +(30028, 'Theron', 1924, 'M', 153), +(30029, 'Harland', 1924, 'M', 152), +(30030, 'Al', 1924, 'M', 151), +(30031, 'Clay', 1924, 'M', 151), +(30032, 'Dewitt', 1924, 'M', 151), +(30033, 'Vance', 1924, 'M', 151), +(30034, 'Carlo', 1924, 'M', 150), +(30035, 'Columbus', 1924, 'M', 150), +(30036, 'Major', 1924, 'M', 150), +(30037, 'Arlie', 1924, 'M', 148), +(30038, 'Arturo', 1924, 'M', 148), +(30039, 'Blaine', 1924, 'M', 148), +(30040, 'Domingo', 1924, 'M', 148), +(30041, 'Enrique', 1924, 'M', 148), +(30042, 'Emile', 1924, 'M', 147), +(30043, 'Julio', 1924, 'M', 147), +(30044, 'Augustine', 1924, 'M', 146), +(30045, 'Carrol', 1924, 'M', 146), +(30046, 'Olin', 1924, 'M', 146), +(30047, 'Frankie', 1924, 'M', 145), +(30048, 'Domenic', 1924, 'M', 144), +(30049, 'Verne', 1924, 'M', 144), +(30050, 'Ezra', 1924, 'M', 143), +(30051, 'Tomas', 1924, 'M', 143), +(30052, 'Elden', 1924, 'M', 142), +(30053, 'Granville', 1924, 'M', 142), +(30054, 'Marcel', 1924, 'M', 142), +(30055, 'Terry', 1924, 'M', 141), +(30056, 'Roderick', 1924, 'M', 140), +(30057, 'Arden', 1924, 'M', 139), +(30058, 'Dalton', 1924, 'M', 139), +(30059, 'Hector', 1924, 'M', 139), +(30060, 'Noble', 1924, 'M', 139), +(30061, 'Anderson', 1924, 'M', 138), +(30062, 'Edsel', 1924, 'M', 138), +(30063, 'Isaiah', 1924, 'M', 138), +(30064, 'Isiah', 1924, 'M', 138), +(30065, 'Raleigh', 1924, 'M', 138), +(30066, 'Sebastian', 1924, 'M', 137), +(30067, 'Harmon', 1924, 'M', 136), +(30068, 'Elwin', 1924, 'M', 135), +(30069, 'Hilton', 1924, 'M', 135), +(30070, 'Albin', 1924, 'M', 132), +(30071, 'Carson', 1924, 'M', 132), +(30072, 'Hobart', 1924, 'M', 132), +(30073, 'Junius', 1924, 'M', 132), +(30074, 'Merton', 1924, 'M', 132), +(30075, 'Carol', 1924, 'M', 131), +(30076, 'Ernesto', 1924, 'M', 129), +(30077, 'Lucien', 1924, 'M', 129), +(30078, 'Ora', 1924, 'M', 129), +(30079, 'Jewel', 1924, 'M', 128), +(30080, 'Lemuel', 1924, 'M', 128), +(30081, 'Oren', 1924, 'M', 128), +(30082, 'Rubin', 1924, 'M', 128), +(30083, 'Ignacio', 1924, 'M', 127), +(30084, 'Sydney', 1924, 'M', 127), +(30085, 'Valentine', 1924, 'M', 127), +(30086, 'Danny', 1924, 'M', 126), +(30087, 'Joesph', 1924, 'M', 126), +(30088, 'Mckinley', 1924, 'M', 126), +(30089, 'Palmer', 1924, 'M', 126), +(30090, 'Raymon', 1924, 'M', 126), +(30091, 'Rodolfo', 1924, 'M', 126), +(30092, 'Christian', 1924, 'M', 125), +(30093, 'Jeremiah', 1924, 'M', 125), +(30094, 'Kelly', 1924, 'M', 125), +(30095, 'Rollin', 1924, 'M', 125), +(30096, 'Warner', 1924, 'M', 125), +(30097, 'Felipe', 1924, 'M', 124), +(30098, 'Taylor', 1924, 'M', 124), +(30099, 'Avery', 1924, 'M', 123), +(30100, 'Lacy', 1924, 'M', 123), +(30101, 'Talmadge', 1924, 'M', 123), +(30102, 'Benito', 1924, 'M', 121), +(30103, 'Merritt', 1924, 'M', 121), +(30104, 'Santiago', 1924, 'M', 121), +(30105, 'Eldridge', 1924, 'M', 120), +(30106, 'Gaylord', 1924, 'M', 119), +(30107, 'Mason', 1924, 'M', 119), +(30108, 'Elliot', 1924, 'M', 118), +(30109, 'Guido', 1924, 'M', 118), +(30110, 'Lucius', 1924, 'M', 118), +(30111, 'Maxwell', 1924, 'M', 117), +(30112, 'Bryan', 1924, 'M', 116), +(30113, 'Napoleon', 1924, 'M', 116), +(30114, 'Rosario', 1924, 'M', 116), +(30115, 'Vaughn', 1924, 'M', 116), +(30116, 'Dee', 1924, 'M', 115), +(30117, 'Ricardo', 1924, 'M', 115), +(30118, 'Benedict', 1924, 'M', 114), +(30119, 'Jewell', 1924, 'M', 114), +(30120, 'Joshua', 1924, 'M', 114), +(30121, 'Mose', 1924, 'M', 114), +(30122, 'Romeo', 1924, 'M', 114), +(30123, 'Fay', 1924, 'M', 113), +(30124, 'Jules', 1924, 'M', 113), +(30125, 'Walker', 1924, 'M', 113), +(30126, 'Angel', 1924, 'M', 112), +(30127, 'Carter', 1924, 'M', 112), +(30128, 'Dana', 1924, 'M', 112), +(30129, 'Bernice', 1924, 'M', 111), +(30130, 'Santos', 1924, 'M', 111), +(30131, 'Walton', 1924, 'M', 111), +(30132, 'Abel', 1924, 'M', 110), +(30133, 'Cyrus', 1924, 'M', 110), +(30134, 'Shelby', 1924, 'M', 110), +(30135, 'King', 1924, 'M', 109), +(30136, 'Raphael', 1924, 'M', 108), +(30137, 'Reed', 1924, 'M', 108), +(30138, 'Rupert', 1924, 'M', 108), +(30139, 'Beverly', 1924, 'M', 107), +(30140, 'Coleman', 1924, 'M', 107), +(30141, 'Winford', 1924, 'M', 107), +(30142, 'Asa', 1924, 'M', 106), +(30143, 'Enoch', 1924, 'M', 106), +(30144, 'Meyer', 1924, 'M', 106), +(30145, 'Sherwood', 1924, 'M', 106), +(30146, 'Arther', 1924, 'M', 105), +(30147, 'Frances', 1924, 'M', 105), +(30148, 'Israel', 1924, 'M', 105), +(30149, 'Jason', 1924, 'M', 105), +(30150, 'Andres', 1924, 'M', 104), +(30151, 'Doris', 1924, 'M', 104), +(30152, 'Elwyn', 1924, 'M', 104), +(30153, 'Emmitt', 1924, 'M', 104), +(30154, 'Lucian', 1924, 'M', 104), +(30155, 'Porter', 1924, 'M', 104), +(30156, 'Urban', 1924, 'M', 104), +(30157, 'Gregorio', 1924, 'M', 103), +(30158, 'Daryl', 1924, 'M', 102), +(30159, 'Eldred', 1924, 'M', 102), +(30160, 'Otha', 1924, 'M', 102), +(30161, 'Alvis', 1924, 'M', 101), +(30162, 'Dorothy', 1924, 'M', 101), +(30163, 'Dock', 1924, 'M', 100), +(30164, 'Oswald', 1924, 'M', 100), +(30165, 'Mary', 1925, 'F', 70601), +(30166, 'Dorothy', 1925, 'F', 38574), +(30167, 'Betty', 1925, 'F', 32817), +(30168, 'Helen', 1925, 'F', 29165), +(30169, 'Margaret', 1925, 'F', 24465), +(30170, 'Ruth', 1925, 'F', 22248), +(30171, 'Virginia', 1925, 'F', 17486), +(30172, 'Doris', 1925, 'F', 16074), +(30173, 'Mildred', 1925, 'F', 14448), +(30174, 'Elizabeth', 1925, 'F', 13932), +(30175, 'Frances', 1925, 'F', 13820), +(30176, 'Evelyn', 1925, 'F', 12506), +(30177, 'Anna', 1925, 'F', 12251), +(30178, 'Jean', 1925, 'F', 11597), +(30179, 'Alice', 1925, 'F', 11571), +(30180, 'Marie', 1925, 'F', 10930), +(30181, 'Shirley', 1925, 'F', 10514), +(30182, 'Lois', 1925, 'F', 9573), +(30183, 'Irene', 1925, 'F', 9440), +(30184, 'Gloria', 1925, 'F', 9377), +(30185, 'Marjorie', 1925, 'F', 9304), +(30186, 'Barbara', 1925, 'F', 9155), +(30187, 'Martha', 1925, 'F', 8762), +(30188, 'Florence', 1925, 'F', 8585), +(30189, 'Lillian', 1925, 'F', 8355), +(30190, 'Rose', 1925, 'F', 8279), +(30191, 'Louise', 1925, 'F', 8272), +(30192, 'Patricia', 1925, 'F', 8095), +(30193, 'Catherine', 1925, 'F', 7870), +(30194, 'Ruby', 1925, 'F', 7844), +(30195, 'Eleanor', 1925, 'F', 7720), +(30196, 'Annie', 1925, 'F', 7348), +(30197, 'Gladys', 1925, 'F', 7231), +(30198, 'Norma', 1925, 'F', 6942), +(30199, 'Thelma', 1925, 'F', 6823), +(30200, 'Josephine', 1925, 'F', 6808), +(30201, 'Edna', 1925, 'F', 6787), +(30202, 'Pauline', 1925, 'F', 6729), +(30203, 'June', 1925, 'F', 6648), +(30204, 'Phyllis', 1925, 'F', 6485), +(30205, 'Lucille', 1925, 'F', 6399), +(30206, 'Edith', 1925, 'F', 6274), +(30207, 'Ethel', 1925, 'F', 6174), +(30208, 'Grace', 1925, 'F', 5981), +(30209, 'Hazel', 1925, 'F', 5777), +(30210, 'Bernice', 1925, 'F', 5726), +(30211, 'Marion', 1925, 'F', 5577), +(30212, 'Rita', 1925, 'F', 5326), +(30213, 'Juanita', 1925, 'F', 5235), +(30214, 'Beatrice', 1925, 'F', 4993), +(30215, 'Lorraine', 1925, 'F', 4982), +(30216, 'Ann', 1925, 'F', 4933), +(30217, 'Jane', 1925, 'F', 4880), +(30218, 'Geraldine', 1925, 'F', 4837), +(30219, 'Clara', 1925, 'F', 4775), +(30220, 'Esther', 1925, 'F', 4724), +(30221, 'Emma', 1925, 'F', 4711), +(30222, 'Sarah', 1925, 'F', 4688), +(30223, 'Joyce', 1925, 'F', 4364), +(30224, 'Nancy', 1925, 'F', 4324), +(30225, 'Katherine', 1925, 'F', 4240), +(30226, 'Wilma', 1925, 'F', 4174), +(30227, 'Dolores', 1925, 'F', 4147), +(30228, 'Elsie', 1925, 'F', 4146), +(30229, 'Julia', 1925, 'F', 4045), +(30230, 'Joan', 1925, 'F', 4027), +(30231, 'Marian', 1925, 'F', 3978), +(30232, 'Willie', 1925, 'F', 3947), +(30233, 'Agnes', 1925, 'F', 3913), +(30234, 'Gertrude', 1925, 'F', 3889), +(30235, 'Eva', 1925, 'F', 3857), +(30236, 'Wanda', 1925, 'F', 3804), +(30237, 'Elaine', 1925, 'F', 3777), +(30238, 'Bertha', 1925, 'F', 3770), +(30239, 'Laura', 1925, 'F', 3590), +(30240, 'Vivian', 1925, 'F', 3576), +(30241, 'Charlotte', 1925, 'F', 3549), +(30242, 'Audrey', 1925, 'F', 3543), +(30243, 'Maxine', 1925, 'F', 3536), +(30244, 'Theresa', 1925, 'F', 3513), +(30245, 'Kathleen', 1925, 'F', 3504), +(30246, 'Ida', 1925, 'F', 3490), +(30247, 'Marilyn', 1925, 'F', 3417), +(30248, 'Viola', 1925, 'F', 3335), +(30249, 'Anne', 1925, 'F', 3320), +(30250, 'Vera', 1925, 'F', 3280), +(30251, 'Bessie', 1925, 'F', 3268), +(30252, 'Kathryn', 1925, 'F', 3261), +(30253, 'Jeanne', 1925, 'F', 3223), +(30254, 'Pearl', 1925, 'F', 3210), +(30255, 'Lillie', 1925, 'F', 3120), +(30256, 'Violet', 1925, 'F', 3030), +(30257, 'Ella', 1925, 'F', 3007), +(30258, 'Alma', 1925, 'F', 2998), +(30259, 'Myrtle', 1925, 'F', 2977), +(30260, 'Eileen', 1925, 'F', 2962), +(30261, 'Jessie', 1925, 'F', 2950), +(30262, 'Nellie', 1925, 'F', 2933), +(30263, 'Margie', 1925, 'F', 2868), +(30264, 'Mattie', 1925, 'F', 2815), +(30265, 'Ellen', 1925, 'F', 2793), +(30266, 'Lucy', 1925, 'F', 2765), +(30267, 'Rosemary', 1925, 'F', 2753), +(30268, 'Minnie', 1925, 'F', 2737), +(30269, 'Beverly', 1925, 'F', 2665), +(30270, 'Sylvia', 1925, 'F', 2535), +(30271, 'Bonnie', 1925, 'F', 2533), +(30272, 'Leona', 1925, 'F', 2513), +(30273, 'Geneva', 1925, 'F', 2469), +(30274, 'Donna', 1925, 'F', 2429), +(30275, 'Janet', 1925, 'F', 2428), +(30276, 'Georgia', 1925, 'F', 2412), +(30277, 'Genevieve', 1925, 'F', 2405), +(30278, 'Stella', 1925, 'F', 2403), +(30279, 'Maria', 1925, 'F', 2358), +(30280, 'Mae', 1925, 'F', 2332), +(30281, 'Peggy', 1925, 'F', 2322), +(30282, 'Mabel', 1925, 'F', 2293), +(30283, 'Carol', 1925, 'F', 2285), +(30284, 'Arlene', 1925, 'F', 2275), +(30285, 'Jennie', 1925, 'F', 2263), +(30286, 'Loretta', 1925, 'F', 2256), +(30287, 'Christine', 1925, 'F', 2253), +(30288, 'Lena', 1925, 'F', 2235), +(30289, 'Rosa', 1925, 'F', 2232), +(30290, 'Muriel', 1925, 'F', 2215), +(30291, 'Carolyn', 1925, 'F', 2191), +(30292, 'Velma', 1925, 'F', 2177), +(30293, 'Opal', 1925, 'F', 2105), +(30294, 'Eunice', 1925, 'F', 2097), +(30295, 'Harriet', 1925, 'F', 2069), +(30296, 'Marguerite', 1925, 'F', 2061), +(30297, 'Sara', 1925, 'F', 2034), +(30298, 'Carrie', 1925, 'F', 2024), +(30299, 'Jacqueline', 1925, 'F', 1990), +(30300, 'Dora', 1925, 'F', 1946), +(30301, 'Jeanette', 1925, 'F', 1919), +(30302, 'Blanche', 1925, 'F', 1893), +(30303, 'Inez', 1925, 'F', 1889), +(30304, 'Alberta', 1925, 'F', 1844), +(30305, 'Billie', 1925, 'F', 1827), +(30306, 'Hilda', 1925, 'F', 1825), +(30307, 'Beulah', 1925, 'F', 1779), +(30308, 'Naomi', 1925, 'F', 1768), +(30309, 'Emily', 1925, 'F', 1765), +(30310, 'Anita', 1925, 'F', 1764), +(30311, 'Roberta', 1925, 'F', 1759), +(30312, 'Hattie', 1925, 'F', 1739), +(30313, 'Lula', 1925, 'F', 1707), +(30314, 'Cora', 1925, 'F', 1681), +(30315, 'Fannie', 1925, 'F', 1655), +(30316, 'Constance', 1925, 'F', 1654), +(30317, 'Verna', 1925, 'F', 1613), +(30318, 'Miriam', 1925, 'F', 1601), +(30319, 'Bette', 1925, 'F', 1593), +(30320, 'Rosie', 1925, 'F', 1515), +(30321, 'Janice', 1925, 'F', 1510), +(30322, 'Madeline', 1925, 'F', 1507), +(30323, 'Mamie', 1925, 'F', 1503), +(30324, 'Claire', 1925, 'F', 1502), +(30325, 'Ada', 1925, 'F', 1500), +(30326, 'Erma', 1925, 'F', 1490), +(30327, 'Delores', 1925, 'F', 1484), +(30328, 'Lola', 1925, 'F', 1470), +(30329, 'Rachel', 1925, 'F', 1439), +(30330, 'Marcella', 1925, 'F', 1407), +(30331, 'Flora', 1925, 'F', 1405), +(30332, 'Mable', 1925, 'F', 1405), +(30333, 'Daisy', 1925, 'F', 1399), +(30334, 'Laverne', 1925, 'F', 1335), +(30335, 'Nora', 1925, 'F', 1317), +(30336, 'Susie', 1925, 'F', 1312), +(30337, 'Sally', 1925, 'F', 1309), +(30338, 'Lila', 1925, 'F', 1251), +(30339, 'Imogene', 1925, 'F', 1249), +(30340, 'Estelle', 1925, 'F', 1240), +(30341, 'Irma', 1925, 'F', 1231), +(30342, 'Winifred', 1925, 'F', 1221), +(30343, 'Maggie', 1925, 'F', 1214), +(30344, 'Eloise', 1925, 'F', 1212), +(30345, 'Bettie', 1925, 'F', 1204), +(30346, 'Eula', 1925, 'F', 1203), +(30347, 'Rebecca', 1925, 'F', 1203), +(30348, 'Nina', 1925, 'F', 1197), +(30349, 'Caroline', 1925, 'F', 1193), +(30350, 'Antoinette', 1925, 'F', 1172), +(30351, 'Olga', 1925, 'F', 1171), +(30352, 'Lorene', 1925, 'F', 1151), +(30353, 'Johnnie', 1925, 'F', 1128), +(30354, 'Sophie', 1925, 'F', 1102), +(30355, 'Rosalie', 1925, 'F', 1093), +(30356, 'Regina', 1925, 'F', 1077), +(30357, 'Henrietta', 1925, 'F', 1059), +(30358, 'Jeannette', 1925, 'F', 1050), +(30359, 'Sadie', 1925, 'F', 1050), +(30360, 'Victoria', 1925, 'F', 1046), +(30361, 'Della', 1925, 'F', 1028), +(30362, 'Angelina', 1925, 'F', 1026), +(30363, 'Ernestine', 1925, 'F', 1023), +(30364, 'Adeline', 1925, 'F', 1022), +(30365, 'Faye', 1925, 'F', 1012), +(30366, 'Katie', 1925, 'F', 1004), +(30367, 'Fern', 1925, 'F', 977), +(30368, 'Olive', 1925, 'F', 975), +(30369, 'Yvonne', 1925, 'F', 963), +(30370, 'Lydia', 1925, 'F', 954), +(30371, 'Teresa', 1925, 'F', 954), +(30372, 'Iris', 1925, 'F', 945), +(30373, 'Carmen', 1925, 'F', 941), +(30374, 'Melba', 1925, 'F', 938), +(30375, 'Essie', 1925, 'F', 923), +(30376, 'Lucile', 1925, 'F', 901), +(30377, 'Isabel', 1925, 'F', 900), +(30378, 'Nettie', 1925, 'F', 898), +(30379, 'Gwendolyn', 1925, 'F', 891), +(30380, 'Dorothea', 1925, 'F', 890), +(30381, 'Amelia', 1925, 'F', 888), +(30382, 'Freda', 1925, 'F', 888), +(30383, 'Susan', 1925, 'F', 862), +(30384, 'Lottie', 1925, 'F', 851), +(30385, 'May', 1925, 'F', 847), +(30386, 'Annette', 1925, 'F', 839), +(30387, 'Ora', 1925, 'F', 832), +(30388, 'Priscilla', 1925, 'F', 830), +(30389, 'Veronica', 1925, 'F', 826), +(30390, 'Ollie', 1925, 'F', 824), +(30391, 'Angeline', 1925, 'F', 821), +(30392, 'Lela', 1925, 'F', 818), +(30393, 'Cleo', 1925, 'F', 812), +(30394, 'Jewel', 1925, 'F', 812), +(30395, 'Jewell', 1925, 'F', 810), +(30396, 'Reba', 1925, 'F', 793), +(30397, 'Sallie', 1925, 'F', 791), +(30398, 'Nadine', 1925, 'F', 789), +(30399, 'Effie', 1925, 'F', 779), +(30400, 'Joy', 1925, 'F', 772), +(30401, 'Goldie', 1925, 'F', 764), +(30402, 'Luella', 1925, 'F', 762), +(30403, 'Addie', 1925, 'F', 760), +(30404, 'Leola', 1925, 'F', 757), +(30405, 'Darlene', 1925, 'F', 744), +(30406, 'Janie', 1925, 'F', 742), +(30407, 'Adele', 1925, 'F', 738), +(30408, 'Ina', 1925, 'F', 737), +(30409, 'Etta', 1925, 'F', 732), +(30410, 'Iva', 1925, 'F', 732), +(30411, 'Cecelia', 1925, 'F', 721), +(30412, 'Isabelle', 1925, 'F', 709), +(30413, 'Natalie', 1925, 'F', 709), +(30414, 'Patsy', 1925, 'F', 706), +(30415, 'Cecilia', 1925, 'F', 705), +(30416, 'Colleen', 1925, 'F', 696), +(30417, 'Ola', 1925, 'F', 678), +(30418, 'Bobbie', 1925, 'F', 677), +(30419, 'Connie', 1925, 'F', 673), +(30420, 'Sue', 1925, 'F', 672), +(30421, 'Selma', 1925, 'F', 669), +(30422, 'Celia', 1925, 'F', 661), +(30423, 'Francis', 1925, 'F', 660), +(30424, 'Eleanore', 1925, 'F', 653), +(30425, 'Ila', 1925, 'F', 642), +(30426, 'Joanne', 1925, 'F', 636), +(30427, 'Lizzie', 1925, 'F', 636), +(30428, 'Jo', 1925, 'F', 635), +(30429, 'Elva', 1925, 'F', 632), +(30430, 'Nell', 1925, 'F', 626), +(30431, 'Lenora', 1925, 'F', 615), +(30432, 'Arline', 1925, 'F', 608), +(30433, 'Estella', 1925, 'F', 606), +(30434, 'Fay', 1925, 'F', 606), +(30435, 'Alta', 1925, 'F', 598), +(30436, 'Clarice', 1925, 'F', 595), +(30437, 'Corinne', 1925, 'F', 593), +(30438, 'Charlene', 1925, 'F', 587), +(30439, 'Rosemarie', 1925, 'F', 586), +(30440, 'Dorthy', 1925, 'F', 580), +(30441, 'Mavis', 1925, 'F', 579), +(30442, 'Annabelle', 1925, 'F', 573), +(30443, 'Gracie', 1925, 'F', 573), +(30444, 'Carmela', 1925, 'F', 565), +(30445, 'Amy', 1925, 'F', 561), +(30446, 'Angela', 1925, 'F', 560), +(30447, 'Jimmie', 1925, 'F', 557), +(30448, 'Frankie', 1925, 'F', 555), +(30449, 'Judith', 1925, 'F', 554), +(30450, 'Elnora', 1925, 'F', 545), +(30451, 'Yolanda', 1925, 'F', 542), +(30452, 'Bernadine', 1925, 'F', 541), +(30453, 'Elinor', 1925, 'F', 541), +(30454, 'Bettye', 1925, 'F', 540), +(30455, 'Therese', 1925, 'F', 533), +(30456, 'Lee', 1925, 'F', 531), +(30457, 'Elvira', 1925, 'F', 527), +(30458, 'Olivia', 1925, 'F', 527), +(30459, 'Nannie', 1925, 'F', 522), +(30460, 'Willa', 1925, 'F', 519), +(30461, 'Rhoda', 1925, 'F', 514), +(30462, 'Aileen', 1925, 'F', 503), +(30463, 'Myra', 1925, 'F', 502), +(30464, 'Helene', 1925, 'F', 488), +(30465, 'Elma', 1925, 'F', 487), +(30466, 'Deloris', 1925, 'F', 484), +(30467, 'Carmella', 1925, 'F', 481), +(30468, 'Matilda', 1925, 'F', 475), +(30469, 'Joann', 1925, 'F', 470), +(30470, 'Virgie', 1925, 'F', 469), +(30471, 'Paula', 1925, 'F', 464), +(30472, 'Eugenia', 1925, 'F', 463), +(30473, 'Harriett', 1925, 'F', 462), +(30474, 'Maude', 1925, 'F', 461), +(30475, 'Flossie', 1925, 'F', 455), +(30476, 'Rena', 1925, 'F', 452), +(30477, 'Ramona', 1925, 'F', 450), +(30478, 'Earline', 1925, 'F', 449), +(30479, 'Marcia', 1925, 'F', 449), +(30480, 'Leah', 1925, 'F', 444), +(30481, 'Margery', 1925, 'F', 444), +(30482, 'Rosetta', 1925, 'F', 444), +(30483, 'Sybil', 1925, 'F', 439), +(30484, 'Linda', 1925, 'F', 438), +(30485, 'Odessa', 1925, 'F', 437), +(30486, 'Zelma', 1925, 'F', 431), +(30487, 'Frieda', 1925, 'F', 428), +(30488, 'Dollie', 1925, 'F', 424), +(30489, 'Loraine', 1925, 'F', 421), +(30490, 'Concetta', 1925, 'F', 417), +(30491, 'Suzanne', 1925, 'F', 414), +(30492, 'Mollie', 1925, 'F', 413), +(30493, 'Glenna', 1925, 'F', 410), +(30494, 'Josie', 1925, 'F', 410), +(30495, 'Cecile', 1925, 'F', 409), +(30496, 'Lenore', 1925, 'F', 408), +(30497, 'Merle', 1925, 'F', 404), +(30498, 'Winnie', 1925, 'F', 401), +(30499, 'Alyce', 1925, 'F', 399), +(30500, 'Cornelia', 1925, 'F', 397), +(30501, 'Avis', 1925, 'F', 395), +(30502, 'Lou', 1925, 'F', 395), +(30503, 'Wilda', 1925, 'F', 393), +(30504, 'Neva', 1925, 'F', 390), +(30505, 'Dolly', 1925, 'F', 388), +(30506, 'Edythe', 1925, 'F', 386), +(30507, 'Guadalupe', 1925, 'F', 385), +(30508, 'Letha', 1925, 'F', 382), +(30509, 'Hannah', 1925, 'F', 381), +(30510, 'Ruthie', 1925, 'F', 381), +(30511, 'Pearlie', 1925, 'F', 380), +(30512, 'Rosella', 1925, 'F', 377), +(30513, 'Claudia', 1925, 'F', 376), +(30514, 'Christina', 1925, 'F', 375), +(30515, 'Eddie', 1925, 'F', 375), +(30516, 'Gene', 1925, 'F', 374), +(30517, 'Aline', 1925, 'F', 370), +(30518, 'Millie', 1925, 'F', 370), +(30519, 'Lupe', 1925, 'F', 367), +(30520, 'Ophelia', 1925, 'F', 365), +(30521, 'James', 1925, 'F', 364), +(30522, 'John', 1925, 'F', 364), +(30523, 'Lily', 1925, 'F', 363), +(30524, 'Bernadette', 1925, 'F', 362), +(30525, 'Florine', 1925, 'F', 361), +(30526, 'Allie', 1925, 'F', 358), +(30527, 'Helena', 1925, 'F', 351), +(30528, 'Robert', 1925, 'F', 350), +(30529, 'Consuelo', 1925, 'F', 348), +(30530, 'Lora', 1925, 'F', 347), +(30531, 'Leila', 1925, 'F', 344), +(30532, 'Berniece', 1925, 'F', 342), +(30533, 'Corine', 1925, 'F', 342), +(30534, 'Aurora', 1925, 'F', 341), +(30535, 'Cynthia', 1925, 'F', 340), +(30536, 'Dixie', 1925, 'F', 340), +(30537, 'Hope', 1925, 'F', 339), +(30538, 'Leatrice', 1925, 'F', 337), +(30539, 'Eliza', 1925, 'F', 335), +(30540, 'Lorna', 1925, 'F', 334), +(30541, 'Robbie', 1925, 'F', 332), +(30542, 'Hester', 1925, 'F', 325), +(30543, 'Mona', 1925, 'F', 323), +(30544, 'Polly', 1925, 'F', 320), +(30545, 'Lessie', 1925, 'F', 318), +(30546, 'Lorena', 1925, 'F', 318), +(30547, 'Tommie', 1925, 'F', 318), +(30548, 'Beth', 1925, 'F', 315), +(30549, 'Nelda', 1925, 'F', 315), +(30550, 'Reva', 1925, 'F', 315), +(30551, 'Madge', 1925, 'F', 314), +(30552, 'Callie', 1925, 'F', 313), +(30553, 'Judy', 1925, 'F', 312), +(30554, 'Amanda', 1925, 'F', 310), +(30555, 'Adelaide', 1925, 'F', 308), +(30556, 'Jacquelyn', 1925, 'F', 305), +(30557, 'Diana', 1925, 'F', 304), +(30558, 'Dorris', 1925, 'F', 301), +(30559, 'Earnestine', 1925, 'F', 301), +(30560, 'Madelyn', 1925, 'F', 300), +(30561, 'Lelia', 1925, 'F', 295), +(30562, 'Iona', 1925, 'F', 294), +(30563, 'Dortha', 1925, 'F', 293), +(30564, 'Georgie', 1925, 'F', 293), +(30565, 'Mercedes', 1925, 'F', 292), +(30566, 'William', 1925, 'F', 290), +(30567, 'Maryann', 1925, 'F', 289), +(30568, 'Corrine', 1925, 'F', 288), +(30569, 'Sophia', 1925, 'F', 288), +(30570, 'Gussie', 1925, 'F', 286), +(30571, 'Betsy', 1925, 'F', 284), +(30572, 'Lilly', 1925, 'F', 283), +(30573, 'Tillie', 1925, 'F', 283), +(30574, 'Antonia', 1925, 'F', 281), +(30575, 'Ester', 1925, 'F', 281), +(30576, 'Leota', 1925, 'F', 281), +(30577, 'Allene', 1925, 'F', 280), +(30578, 'Nola', 1925, 'F', 280), +(30579, 'Margarita', 1925, 'F', 279), +(30580, 'Melva', 1925, 'F', 276), +(30581, 'Delia', 1925, 'F', 273), +(30582, 'Ilene', 1925, 'F', 271), +(30583, 'Patty', 1925, 'F', 270), +(30584, 'Philomena', 1925, 'F', 270), +(30585, 'Winona', 1925, 'F', 270), +(30586, 'Maurine', 1925, 'F', 269), +(30587, 'Jackie', 1925, 'F', 268), +(30588, 'Johanna', 1925, 'F', 267), +(30589, 'Elouise', 1925, 'F', 265), +(30590, 'Vada', 1925, 'F', 263), +(30591, 'Roxie', 1925, 'F', 260), +(30592, 'Althea', 1925, 'F', 258), +(30593, 'Jaunita', 1925, 'F', 257), +(30594, 'Nona', 1925, 'F', 257), +(30595, 'Marjory', 1925, 'F', 255), +(30596, 'Bennie', 1925, 'F', 254), +(30597, 'Clare', 1925, 'F', 254), +(30598, 'Bertie', 1925, 'F', 253), +(30599, 'Queen', 1925, 'F', 252), +(30600, 'Zelda', 1925, 'F', 251), +(30601, 'Iola', 1925, 'F', 250), +(30602, 'Roslyn', 1925, 'F', 250), +(30603, 'Kay', 1925, 'F', 248), +(30604, 'Lavonne', 1925, 'F', 248), +(30605, 'Marianne', 1925, 'F', 245), +(30606, 'Oma', 1925, 'F', 243), +(30607, 'Lorine', 1925, 'F', 241), +(30608, 'Molly', 1925, 'F', 241), +(30609, 'Jannie', 1925, 'F', 240), +(30610, 'Pansy', 1925, 'F', 240), +(30611, 'Edwina', 1925, 'F', 238), +(30612, 'Ione', 1925, 'F', 238), +(30613, 'Louella', 1925, 'F', 238), +(30614, 'Isabell', 1925, 'F', 237), +(30615, 'Marietta', 1925, 'F', 237), +(30616, 'Joanna', 1925, 'F', 236), +(30617, 'Katharine', 1925, 'F', 236), +(30618, 'Maudie', 1925, 'F', 234), +(30619, 'Jerry', 1925, 'F', 232), +(30620, 'Alfreda', 1925, 'F', 231), +(30621, 'Alicia', 1925, 'F', 228), +(30622, 'Zella', 1925, 'F', 228), +(30623, 'Wilhelmina', 1925, 'F', 227), +(30624, 'Faith', 1925, 'F', 226), +(30625, 'Madeleine', 1925, 'F', 223), +(30626, 'Rae', 1925, 'F', 223), +(30627, 'Alene', 1925, 'F', 222); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(30628, 'Earlene', 1925, 'F', 221), +(30629, 'Ima', 1925, 'F', 219), +(30630, 'Carole', 1925, 'F', 218), +(30631, 'Julie', 1925, 'F', 218), +(30632, 'Leora', 1925, 'F', 218), +(30633, 'Dessie', 1925, 'F', 217), +(30634, 'Charles', 1925, 'F', 216), +(30635, 'Emogene', 1925, 'F', 216), +(30636, 'Harriette', 1925, 'F', 216), +(30637, 'Augusta', 1925, 'F', 214), +(30638, 'Enid', 1925, 'F', 214), +(30639, 'Freddie', 1925, 'F', 214), +(30640, 'Renee', 1925, 'F', 214), +(30641, 'Rosalind', 1925, 'F', 214), +(30642, 'Sheila', 1925, 'F', 214), +(30643, 'Elena', 1925, 'F', 213), +(30644, 'Dona', 1925, 'F', 212), +(30645, 'Hallie', 1925, 'F', 211), +(30646, 'Syble', 1925, 'F', 210), +(30647, 'Angie', 1925, 'F', 208), +(30648, 'Bonita', 1925, 'F', 208), +(30649, 'Millicent', 1925, 'F', 208), +(30650, 'Retha', 1925, 'F', 208), +(30651, 'George', 1925, 'F', 207), +(30652, 'Birdie', 1925, 'F', 206), +(30653, 'Isabella', 1925, 'F', 205), +(30654, 'Delphine', 1925, 'F', 204), +(30655, 'Claudine', 1925, 'F', 202), +(30656, 'Ardis', 1925, 'F', 201), +(30657, 'Georgette', 1925, 'F', 201), +(30658, 'Jenny', 1925, 'F', 201), +(30659, 'Lauretta', 1925, 'F', 201), +(30660, 'Beryl', 1925, 'F', 200), +(30661, 'Gilda', 1925, 'F', 200), +(30662, 'Louisa', 1925, 'F', 200), +(30663, 'Evangeline', 1925, 'F', 198), +(30664, 'Monica', 1925, 'F', 198), +(30665, 'Pat', 1925, 'F', 198), +(30666, 'Verda', 1925, 'F', 198), +(30667, 'Manuela', 1925, 'F', 197), +(30668, 'Jayne', 1925, 'F', 195), +(30669, 'Leta', 1925, 'F', 195), +(30670, 'Phoebe', 1925, 'F', 192), +(30671, 'Doreen', 1925, 'F', 191), +(30672, 'Erna', 1925, 'F', 191), +(30673, 'Tessie', 1925, 'F', 191), +(30674, 'Velda', 1925, 'F', 191), +(30675, 'Rosalyn', 1925, 'F', 190), +(30676, 'Petra', 1925, 'F', 189), +(30677, 'Elda', 1925, 'F', 188), +(30678, 'Fanny', 1925, 'F', 188), +(30679, 'Vida', 1925, 'F', 188), +(30680, 'Aurelia', 1925, 'F', 187), +(30681, 'Beverley', 1925, 'F', 187), +(30682, 'Dorotha', 1925, 'F', 186), +(30683, 'Alvina', 1925, 'F', 185), +(30684, 'Arleen', 1925, 'F', 185), +(30685, 'Juana', 1925, 'F', 185), +(30686, 'Minerva', 1925, 'F', 185), +(30687, 'Elisabeth', 1925, 'F', 184), +(30688, 'Esperanza', 1925, 'F', 184), +(30689, 'Theda', 1925, 'F', 184), +(30690, 'Delma', 1925, 'F', 183), +(30691, 'Janette', 1925, 'F', 183), +(30692, 'Shirlee', 1925, 'F', 183), +(30693, 'Charlie', 1925, 'F', 182), +(30694, 'Nita', 1925, 'F', 182), +(30695, 'Myrtis', 1925, 'F', 181), +(30696, 'Lucinda', 1925, 'F', 179), +(30697, 'Hortense', 1925, 'F', 178), +(30698, 'Pearline', 1925, 'F', 178), +(30699, 'Rubye', 1925, 'F', 178), +(30700, 'Gertie', 1925, 'F', 177), +(30701, 'Johnie', 1925, 'F', 177), +(30702, 'Justine', 1925, 'F', 177), +(30703, 'Sandra', 1925, 'F', 177), +(30704, 'Catharine', 1925, 'F', 175), +(30705, 'Adell', 1925, 'F', 174), +(30706, 'Elvera', 1925, 'F', 174), +(30707, 'Lettie', 1925, 'F', 174), +(30708, 'Kate', 1925, 'F', 173), +(30709, 'Margret', 1925, 'F', 173), +(30710, 'Una', 1925, 'F', 173), +(30711, 'Verla', 1925, 'F', 173), +(30712, 'Freida', 1925, 'F', 172), +(30713, 'Linnie', 1925, 'F', 172), +(30714, 'Hellen', 1925, 'F', 170), +(30715, 'Rowena', 1925, 'F', 170), +(30716, 'Vernell', 1925, 'F', 170), +(30717, 'Lura', 1925, 'F', 169), +(30718, 'Veda', 1925, 'F', 169), +(30719, 'Vernice', 1925, 'F', 169), +(30720, 'Agatha', 1925, 'F', 168), +(30721, 'Francisca', 1925, 'F', 168), +(30722, 'Valeria', 1925, 'F', 167), +(30723, 'Stephanie', 1925, 'F', 165), +(30724, 'Ava', 1925, 'F', 164), +(30725, 'Germaine', 1925, 'F', 164), +(30726, 'Margarette', 1925, 'F', 164), +(30727, 'Gail', 1925, 'F', 163), +(30728, 'Reta', 1925, 'F', 161), +(30729, 'Blanch', 1925, 'F', 160), +(30730, 'Rhea', 1925, 'F', 160), +(30731, 'Yvette', 1925, 'F', 160), +(30732, 'Katheryn', 1925, 'F', 159), +(30733, 'Ona', 1925, 'F', 159), +(30734, 'Doretha', 1925, 'F', 158), +(30735, 'Joe', 1925, 'F', 158), +(30736, 'Josefina', 1925, 'F', 158), +(30737, 'Maureen', 1925, 'F', 157), +(30738, 'Celestine', 1925, 'F', 156), +(30739, 'Floy', 1925, 'F', 156), +(30740, 'Garnet', 1925, 'F', 156), +(30741, 'Idella', 1925, 'F', 156), +(30742, 'Vesta', 1925, 'F', 156), +(30743, 'Alva', 1925, 'F', 154), +(30744, 'Elise', 1925, 'F', 154), +(30745, 'Lucia', 1925, 'F', 154), +(30746, 'Zola', 1925, 'F', 154), +(30747, 'Theodora', 1925, 'F', 153), +(30748, 'Cecil', 1925, 'F', 152), +(30749, 'Maryjane', 1925, 'F', 152), +(30750, 'Lue', 1925, 'F', 151), +(30751, 'Ofelia', 1925, 'F', 151), +(30752, 'Oleta', 1925, 'F', 151), +(30753, 'Valerie', 1925, 'F', 151), +(30754, 'Camille', 1925, 'F', 150), +(30755, 'Mazie', 1925, 'F', 149), +(30756, 'Mozelle', 1925, 'F', 149), +(30757, 'Alda', 1925, 'F', 148), +(30758, 'Andrea', 1925, 'F', 148), +(30759, 'Leone', 1925, 'F', 148), +(30760, 'Lona', 1925, 'F', 148), +(30761, 'Terry', 1925, 'F', 148), +(30762, 'Belva', 1925, 'F', 147), +(30763, 'Dovie', 1925, 'F', 146), +(30764, 'Odell', 1925, 'F', 146), +(30765, 'Filomena', 1925, 'F', 145), +(30766, 'Jeane', 1925, 'F', 145), +(30767, 'Mayme', 1925, 'F', 145), +(30768, 'Carolina', 1925, 'F', 144), +(30769, 'Celeste', 1925, 'F', 144), +(30770, 'Gretchen', 1925, 'F', 144), +(30771, 'Ouida', 1925, 'F', 144), +(30772, 'Ursula', 1925, 'F', 144), +(30773, 'Alpha', 1925, 'F', 143), +(30774, 'Billye', 1925, 'F', 143), +(30775, 'Glenda', 1925, 'F', 143), +(30776, 'Annamae', 1925, 'F', 142), +(30777, 'Lavon', 1925, 'F', 142), +(30778, 'Twila', 1925, 'F', 142), +(30779, 'Elsa', 1925, 'F', 141), +(30780, 'Magdalene', 1925, 'F', 141), +(30781, 'Myrtice', 1925, 'F', 141), +(30782, 'Roma', 1925, 'F', 141), +(30783, 'Belle', 1925, 'F', 140), +(30784, 'Janis', 1925, 'F', 140), +(30785, 'Juliette', 1925, 'F', 140), +(30786, 'Adrienne', 1925, 'F', 139), +(30787, 'Carmel', 1925, 'F', 139), +(30788, 'Leslie', 1925, 'F', 139), +(30789, 'Rosalee', 1925, 'F', 137), +(30790, 'Tina', 1925, 'F', 137), +(30791, 'Winnifred', 1925, 'F', 137), +(30792, 'Albertha', 1925, 'F', 136), +(30793, 'Leonora', 1925, 'F', 136), +(30794, 'Myrna', 1925, 'F', 136), +(30795, 'Albina', 1925, 'F', 135), +(30796, 'Laurel', 1925, 'F', 135), +(30797, 'Evelyne', 1925, 'F', 134), +(30798, 'Georgianna', 1925, 'F', 134), +(30799, 'Bella', 1925, 'F', 133), +(30800, 'Easter', 1925, 'F', 133), +(30801, 'Joseph', 1925, 'F', 132), +(30802, 'Hettie', 1925, 'F', 131), +(30803, 'Dawn', 1925, 'F', 130), +(30804, 'Dorcas', 1925, 'F', 130), +(30805, 'Emilia', 1925, 'F', 130), +(30806, 'Georgiana', 1925, 'F', 130), +(30807, 'Marilynn', 1925, 'F', 130), +(30808, 'Artie', 1925, 'F', 129), +(30809, 'Clementine', 1925, 'F', 129), +(30810, 'Eleanora', 1925, 'F', 129), +(30811, 'Abbie', 1925, 'F', 128), +(30812, 'Ethelyn', 1925, 'F', 128), +(30813, 'Florene', 1925, 'F', 128), +(30814, 'Maud', 1925, 'F', 128), +(30815, 'Berta', 1925, 'F', 127), +(30816, 'Cassie', 1925, 'F', 127), +(30817, 'Ferne', 1925, 'F', 127), +(30818, 'Kitty', 1925, 'F', 127), +(30819, 'Lavern', 1925, 'F', 127), +(30820, 'Billy', 1925, 'F', 126), +(30821, 'Eldora', 1925, 'F', 126), +(30822, 'Mittie', 1925, 'F', 126), +(30823, 'Socorro', 1925, 'F', 126), +(30824, 'Magnolia', 1925, 'F', 125), +(30825, 'Angelita', 1925, 'F', 124), +(30826, 'Ivy', 1925, 'F', 124), +(30827, 'Mina', 1925, 'F', 124), +(30828, 'Novella', 1925, 'F', 124), +(30829, 'Annetta', 1925, 'F', 123), +(30830, 'Ardith', 1925, 'F', 123), +(30831, 'Camilla', 1925, 'F', 123), +(30832, 'Diane', 1925, 'F', 122), +(30833, 'Era', 1925, 'F', 122), +(30834, 'Maybelle', 1925, 'F', 122), +(30835, 'Sammie', 1925, 'F', 122), +(30836, 'Crystal', 1925, 'F', 121), +(30837, 'Daphne', 1925, 'F', 121), +(30838, 'Elna', 1925, 'F', 121), +(30839, 'Mozell', 1925, 'F', 121), +(30840, 'Rosina', 1925, 'F', 121), +(30841, 'Treva', 1925, 'F', 121), +(30842, 'Noreen', 1925, 'F', 120), +(30843, 'Larue', 1925, 'F', 119), +(30844, 'Madonna', 1925, 'F', 119), +(30845, 'Christene', 1925, 'F', 118), +(30846, 'Almeda', 1925, 'F', 117), +(30847, 'Lyla', 1925, 'F', 117), +(30848, 'Adella', 1925, 'F', 116), +(30849, 'Charline', 1925, 'F', 116), +(30850, 'Nan', 1925, 'F', 115), +(30851, 'Orpha', 1925, 'F', 115), +(30852, 'Emilie', 1925, 'F', 114), +(30853, 'Lulu', 1925, 'F', 114), +(30854, 'Marianna', 1925, 'F', 114), +(30855, 'Roselyn', 1925, 'F', 114), +(30856, 'Zora', 1925, 'F', 114), +(30857, 'Adela', 1925, 'F', 113), +(30858, 'Annabel', 1925, 'F', 113), +(30859, 'Marlys', 1925, 'F', 113), +(30860, 'Rubie', 1925, 'F', 113), +(30861, 'Lyda', 1925, 'F', 112), +(30862, 'Bobby', 1925, 'F', 111), +(30863, 'Felicia', 1925, 'F', 111), +(30864, 'Kathrine', 1925, 'F', 111), +(30865, 'Laverna', 1925, 'F', 111), +(30866, 'Rosamond', 1925, 'F', 111), +(30867, 'Ruthe', 1925, 'F', 111), +(30868, 'Cathryn', 1925, 'F', 110), +(30869, 'Claudie', 1925, 'F', 110), +(30870, 'Henry', 1925, 'F', 110), +(30871, 'Annabell', 1925, 'F', 109), +(30872, 'Gwen', 1925, 'F', 109), +(30873, 'Margarett', 1925, 'F', 109), +(30874, 'Marvel', 1925, 'F', 108), +(30875, 'Richard', 1925, 'F', 108), +(30876, 'Sonia', 1925, 'F', 108), +(30877, 'Berneice', 1925, 'F', 107), +(30878, 'Donnie', 1925, 'F', 107), +(30879, 'Edward', 1925, 'F', 106), +(30880, 'Elisa', 1925, 'F', 106), +(30881, 'Lovie', 1925, 'F', 106), +(30882, 'Tressie', 1925, 'F', 106), +(30883, 'Anastasia', 1925, 'F', 105), +(30884, 'Donald', 1925, 'F', 105), +(30885, 'Estell', 1925, 'F', 104), +(30886, 'Francine', 1925, 'F', 104), +(30887, 'Lavina', 1925, 'F', 104), +(30888, 'Lina', 1925, 'F', 104), +(30889, 'Idell', 1925, 'F', 103), +(30890, 'Aletha', 1925, 'F', 102), +(30891, 'Concepcion', 1925, 'F', 102), +(30892, 'Darleen', 1925, 'F', 102), +(30893, 'Dominga', 1925, 'F', 102), +(30894, 'Leatha', 1925, 'F', 102), +(30895, 'Norine', 1925, 'F', 102), +(30896, 'Rosia', 1925, 'F', 102), +(30897, 'Theo', 1925, 'F', 102), +(30898, 'Vergie', 1925, 'F', 102), +(30899, 'Blossom', 1925, 'F', 101), +(30900, 'Elayne', 1925, 'F', 100), +(30901, 'Gayle', 1925, 'F', 100), +(30902, 'Lynn', 1925, 'F', 100), +(30903, 'Mathilda', 1925, 'F', 100), +(30904, 'Nathalie', 1925, 'F', 100), +(30905, 'Palma', 1925, 'F', 100), +(30906, 'Robert', 1925, 'M', 60903), +(30907, 'John', 1925, 'M', 57191), +(30908, 'William', 1925, 'M', 53298), +(30909, 'James', 1925, 'M', 52688), +(30910, 'Charles', 1925, 'M', 29590), +(30911, 'George', 1925, 'M', 26568), +(30912, 'Joseph', 1925, 'M', 24607), +(30913, 'Richard', 1925, 'M', 23274), +(30914, 'Edward', 1925, 'M', 20090), +(30915, 'Donald', 1925, 'M', 19202), +(30916, 'Thomas', 1925, 'M', 16688), +(30917, 'Frank', 1925, 'M', 15330), +(30918, 'Paul', 1925, 'M', 14179), +(30919, 'Harold', 1925, 'M', 13597), +(30920, 'Raymond', 1925, 'M', 12445), +(30921, 'Walter', 1925, 'M', 12128), +(30922, 'Jack', 1925, 'M', 12011), +(30923, 'Henry', 1925, 'M', 10620), +(30924, 'Kenneth', 1925, 'M', 10148), +(30925, 'Arthur', 1925, 'M', 9984), +(30926, 'Albert', 1925, 'M', 9511), +(30927, 'David', 1925, 'M', 8919), +(30928, 'Harry', 1925, 'M', 8613), +(30929, 'Eugene', 1925, 'M', 8512), +(30930, 'Ralph', 1925, 'M', 8463), +(30931, 'Howard', 1925, 'M', 7168), +(30932, 'Willie', 1925, 'M', 7124), +(30933, 'Carl', 1925, 'M', 7057), +(30934, 'Louis', 1925, 'M', 6799), +(30935, 'Clarence', 1925, 'M', 6665), +(30936, 'Earl', 1925, 'M', 6434), +(30937, 'Roy', 1925, 'M', 6375), +(30938, 'Fred', 1925, 'M', 6202), +(30939, 'Joe', 1925, 'M', 6104), +(30940, 'Francis', 1925, 'M', 5981), +(30941, 'Lawrence', 1925, 'M', 5629), +(30942, 'Ernest', 1925, 'M', 5493), +(30943, 'Leonard', 1925, 'M', 5463), +(30944, 'Anthony', 1925, 'M', 5039), +(30945, 'Stanley', 1925, 'M', 5034), +(30946, 'Norman', 1925, 'M', 4973), +(30947, 'Herbert', 1925, 'M', 4917), +(30948, 'Alfred', 1925, 'M', 4796), +(30949, 'Daniel', 1925, 'M', 4551), +(30950, 'Gerald', 1925, 'M', 4506), +(30951, 'Samuel', 1925, 'M', 4404), +(30952, 'Calvin', 1925, 'M', 4300), +(30953, 'Bernard', 1925, 'M', 4258), +(30954, 'Billy', 1925, 'M', 4206), +(30955, 'Melvin', 1925, 'M', 4147), +(30956, 'Marvin', 1925, 'M', 4094), +(30957, 'Leroy', 1925, 'M', 3883), +(30958, 'Russell', 1925, 'M', 3804), +(30959, 'Leo', 1925, 'M', 3774), +(30960, 'Michael', 1925, 'M', 3762), +(30961, 'Andrew', 1925, 'M', 3614), +(30962, 'Edwin', 1925, 'M', 3557), +(30963, 'Floyd', 1925, 'M', 3524), +(30964, 'Clifford', 1925, 'M', 3429), +(30965, 'Peter', 1925, 'M', 3372), +(30966, 'Elmer', 1925, 'M', 3359), +(30967, 'Lloyd', 1925, 'M', 3321), +(30968, 'Theodore', 1925, 'M', 3228), +(30969, 'Ray', 1925, 'M', 3219), +(30970, 'Frederick', 1925, 'M', 3091), +(30971, 'Warren', 1925, 'M', 2943), +(30972, 'Vernon', 1925, 'M', 2912), +(30973, 'Clyde', 1925, 'M', 2903), +(30974, 'Herman', 1925, 'M', 2893), +(30975, 'Alvin', 1925, 'M', 2776), +(30976, 'Vincent', 1925, 'M', 2773), +(30977, 'Gordon', 1925, 'M', 2748), +(30978, 'Chester', 1925, 'M', 2722), +(30979, 'Wayne', 1925, 'M', 2713), +(30980, 'Philip', 1925, 'M', 2678), +(30981, 'Leon', 1925, 'M', 2638), +(30982, 'Glenn', 1925, 'M', 2611), +(30983, 'Charlie', 1925, 'M', 2578), +(30984, 'Lewis', 1925, 'M', 2575), +(30985, 'Milton', 1925, 'M', 2566), +(30986, 'Lester', 1925, 'M', 2559), +(30987, 'Lee', 1925, 'M', 2537), +(30988, 'Martin', 1925, 'M', 2417), +(30989, 'Bill', 1925, 'M', 2379), +(30990, 'Jesse', 1925, 'M', 2375), +(30991, 'Dale', 1925, 'M', 2300), +(30992, 'Cecil', 1925, 'M', 2297), +(30993, 'Harvey', 1925, 'M', 2192), +(30994, 'Victor', 1925, 'M', 2117), +(30995, 'Roger', 1925, 'M', 2098), +(30996, 'Sam', 1925, 'M', 2095), +(30997, 'Wallace', 1925, 'M', 2075), +(30998, 'Benjamin', 1925, 'M', 2072), +(30999, 'Allen', 1925, 'M', 2036), +(31000, 'Arnold', 1925, 'M', 1976), +(31001, 'Edgar', 1925, 'M', 1810), +(31002, 'Willard', 1925, 'M', 1794), +(31003, 'Roland', 1925, 'M', 1784), +(31004, 'Oscar', 1925, 'M', 1757), +(31005, 'Johnnie', 1925, 'M', 1745), +(31006, 'Eddie', 1925, 'M', 1732), +(31007, 'Claude', 1925, 'M', 1696), +(31008, 'Douglas', 1925, 'M', 1678), +(31009, 'Ronald', 1925, 'M', 1676), +(31010, 'Gilbert', 1925, 'M', 1658), +(31011, 'Don', 1925, 'M', 1655), +(31012, 'Jerry', 1925, 'M', 1625), +(31013, 'Everett', 1925, 'M', 1617), +(31014, 'Marion', 1925, 'M', 1615), +(31015, 'Wilbur', 1925, 'M', 1598), +(31016, 'Maurice', 1925, 'M', 1585), +(31017, 'Gene', 1925, 'M', 1581), +(31018, 'Jerome', 1925, 'M', 1564), +(31019, 'Manuel', 1925, 'M', 1555), +(31020, 'Junior', 1925, 'M', 1546), +(31021, 'Homer', 1925, 'M', 1545), +(31022, 'Glen', 1925, 'M', 1538), +(31023, 'Curtis', 1925, 'M', 1519), +(31024, 'Leslie', 1925, 'M', 1518), +(31025, 'Virgil', 1925, 'M', 1502), +(31026, 'Jimmie', 1925, 'M', 1484), +(31027, 'Stephen', 1925, 'M', 1480), +(31028, 'Jessie', 1925, 'M', 1468), +(31029, 'Hubert', 1925, 'M', 1461), +(31030, 'Jose', 1925, 'M', 1451), +(31031, 'Morris', 1925, 'M', 1400), +(31032, 'Hugh', 1925, 'M', 1387), +(31033, 'Max', 1925, 'M', 1386), +(31034, 'Bob', 1925, 'M', 1367), +(31035, 'Bruce', 1925, 'M', 1355), +(31036, 'Sidney', 1925, 'M', 1346), +(31037, 'Luther', 1925, 'M', 1335), +(31038, 'Nicholas', 1925, 'M', 1333), +(31039, 'Franklin', 1925, 'M', 1295), +(31040, 'Wesley', 1925, 'M', 1265), +(31041, 'Rudolph', 1925, 'M', 1243), +(31042, 'Alexander', 1925, 'M', 1223), +(31043, 'Tom', 1925, 'M', 1219), +(31044, 'Willis', 1925, 'M', 1197), +(31045, 'Dean', 1925, 'M', 1196), +(31046, 'Irving', 1925, 'M', 1172), +(31047, 'Johnny', 1925, 'M', 1166), +(31048, 'Patrick', 1925, 'M', 1152), +(31049, 'Steve', 1925, 'M', 1143), +(31050, 'Keith', 1925, 'M', 1140), +(31051, 'Horace', 1925, 'M', 1139), +(31052, 'Jim', 1925, 'M', 1124), +(31053, 'Earnest', 1925, 'M', 1102), +(31054, 'Julius', 1925, 'M', 1088), +(31055, 'Bobby', 1925, 'M', 1086), +(31056, 'Oliver', 1925, 'M', 1048), +(31057, 'Edmund', 1925, 'M', 1042), +(31058, 'Ben', 1925, 'M', 1041), +(31059, 'Lyle', 1925, 'M', 1012), +(31060, 'Salvatore', 1925, 'M', 1003), +(31061, 'Billie', 1925, 'M', 990), +(31062, 'Guy', 1925, 'M', 978), +(31063, 'Tony', 1925, 'M', 977), +(31064, 'Otis', 1925, 'M', 961), +(31065, 'Phillip', 1925, 'M', 943), +(31066, 'Orville', 1925, 'M', 938), +(31067, 'Clayton', 1925, 'M', 932), +(31068, 'Archie', 1925, 'M', 916), +(31069, 'Mike', 1925, 'M', 905), +(31070, 'Alex', 1925, 'M', 901), +(31071, 'Jacob', 1925, 'M', 900), +(31072, 'Delbert', 1925, 'M', 898), +(31073, 'Bennie', 1925, 'M', 897), +(31074, 'Angelo', 1925, 'M', 896), +(31075, 'Duane', 1925, 'M', 895), +(31076, 'Clifton', 1925, 'M', 890), +(31077, 'Clinton', 1925, 'M', 861), +(31078, 'Leland', 1925, 'M', 858), +(31079, 'Matthew', 1925, 'M', 841), +(31080, 'Merle', 1925, 'M', 835), +(31081, 'Marshall', 1925, 'M', 829), +(31082, 'Dennis', 1925, 'M', 825), +(31083, 'Nathaniel', 1925, 'M', 809), +(31084, 'Wilbert', 1925, 'M', 804), +(31085, 'Alan', 1925, 'M', 803), +(31086, 'Dewey', 1925, 'M', 798), +(31087, 'Jay', 1925, 'M', 790), +(31088, 'Ira', 1925, 'M', 789), +(31089, 'Dan', 1925, 'M', 772), +(31090, 'Ivan', 1925, 'M', 756), +(31091, 'Nelson', 1925, 'M', 738), +(31092, 'Ervin', 1925, 'M', 737), +(31093, 'Wilfred', 1925, 'M', 737), +(31094, 'Carroll', 1925, 'M', 732), +(31095, 'Emil', 1925, 'M', 724), +(31096, 'Larry', 1925, 'M', 724), +(31097, 'Jesus', 1925, 'M', 722), +(31098, 'Juan', 1925, 'M', 721), +(31099, 'Allan', 1925, 'M', 718), +(31100, 'Julian', 1925, 'M', 716), +(31101, 'Alton', 1925, 'M', 708), +(31102, 'Irvin', 1925, 'M', 708), +(31103, 'Jimmy', 1925, 'M', 708), +(31104, 'Lonnie', 1925, 'M', 708), +(31105, 'Lowell', 1925, 'M', 708), +(31106, 'Tommy', 1925, 'M', 707), +(31107, 'Antonio', 1925, 'M', 695), +(31108, 'Nick', 1925, 'M', 691), +(31109, 'Sylvester', 1925, 'M', 690), +(31110, 'Wendell', 1925, 'M', 681), +(31111, 'Isaac', 1925, 'M', 678), +(31112, 'Rufus', 1925, 'M', 676), +(31113, 'Elbert', 1925, 'M', 673), +(31114, 'Ted', 1925, 'M', 669), +(31115, 'Seymour', 1925, 'M', 668), +(31116, 'Mark', 1925, 'M', 651), +(31117, 'Forrest', 1925, 'M', 649), +(31118, 'Pete', 1925, 'M', 648), +(31119, 'Aaron', 1925, 'M', 646), +(31120, 'Freddie', 1925, 'M', 646), +(31121, 'Loren', 1925, 'M', 638), +(31122, 'Felix', 1925, 'M', 621), +(31123, 'Malcolm', 1925, 'M', 618), +(31124, 'Nathan', 1925, 'M', 615), +(31125, 'Ellis', 1925, 'M', 611), +(31126, 'Norbert', 1925, 'M', 609), +(31127, 'Burton', 1925, 'M', 597), +(31128, 'Eldon', 1925, 'M', 594), +(31129, 'Myron', 1925, 'M', 591), +(31130, 'Karl', 1925, 'M', 589), +(31131, 'Murray', 1925, 'M', 584), +(31132, 'Owen', 1925, 'M', 581), +(31133, 'Emmett', 1925, 'M', 578), +(31134, 'Elwood', 1925, 'M', 570), +(31135, 'Mack', 1925, 'M', 570), +(31136, 'Perry', 1925, 'M', 569), +(31137, 'Johnie', 1925, 'M', 564), +(31138, 'Neil', 1925, 'M', 564), +(31139, 'Dick', 1925, 'M', 563), +(31140, 'Ross', 1925, 'M', 558), +(31141, 'Gerard', 1925, 'M', 554), +(31142, 'Loyd', 1925, 'M', 554), +(31143, 'Rex', 1925, 'M', 553), +(31144, 'Laurence', 1925, 'M', 551), +(31145, 'Fredrick', 1925, 'M', 547), +(31146, 'Dominic', 1925, 'M', 545), +(31147, 'Percy', 1925, 'M', 543), +(31148, 'Otto', 1925, 'M', 539), +(31149, 'Bert', 1925, 'M', 537), +(31150, 'Dominick', 1925, 'M', 537), +(31151, 'Grady', 1925, 'M', 535), +(31152, 'Irwin', 1925, 'M', 527), +(31153, 'Darrell', 1925, 'M', 525), +(31154, 'Grover', 1925, 'M', 518), +(31155, 'Troy', 1925, 'M', 518), +(31156, 'Byron', 1925, 'M', 517), +(31157, 'August', 1925, 'M', 516), +(31158, 'Mario', 1925, 'M', 502), +(31159, 'Doyle', 1925, 'M', 501), +(31160, 'Sherman', 1925, 'M', 498), +(31161, 'Boyd', 1925, 'M', 493), +(31162, 'Abraham', 1925, 'M', 490), +(31163, 'Amos', 1925, 'M', 489), +(31164, 'Tommie', 1925, 'M', 489), +(31165, 'Ramon', 1925, 'M', 488), +(31166, 'Carlos', 1925, 'M', 471), +(31167, 'Dwight', 1925, 'M', 470), +(31168, 'Harlan', 1925, 'M', 470), +(31169, 'Harley', 1925, 'M', 461), +(31170, 'Aubrey', 1925, 'M', 457), +(31171, 'Francisco', 1925, 'M', 456), +(31172, 'Roscoe', 1925, 'M', 454), +(31173, 'Adam', 1925, 'M', 453), +(31174, 'Roosevelt', 1925, 'M', 450), +(31175, 'Carlton', 1925, 'M', 448), +(31176, 'Rodney', 1925, 'M', 447), +(31177, 'Wilson', 1925, 'M', 444), +(31178, 'Lynn', 1925, 'M', 435), +(31179, 'Austin', 1925, 'M', 434), +(31180, 'Erwin', 1925, 'M', 430), +(31181, 'Reginald', 1925, 'M', 430), +(31182, 'Preston', 1925, 'M', 427), +(31183, 'Ruben', 1925, 'M', 427), +(31184, 'Adolph', 1925, 'M', 424), +(31185, 'Pedro', 1925, 'M', 422), +(31186, 'Louie', 1925, 'M', 421), +(31187, 'Neal', 1925, 'M', 418), +(31188, 'Morton', 1925, 'M', 415), +(31189, 'Garland', 1925, 'M', 404), +(31190, 'Laverne', 1925, 'M', 401), +(31191, 'Edmond', 1925, 'M', 399), +(31192, 'Stuart', 1925, 'M', 399), +(31193, 'Steven', 1925, 'M', 398), +(31194, 'Benny', 1925, 'M', 394), +(31195, 'Cornelius', 1925, 'M', 390), +(31196, 'Conrad', 1925, 'M', 389), +(31197, 'Jasper', 1925, 'M', 386), +(31198, 'Millard', 1925, 'M', 385), +(31199, 'Joel', 1925, 'M', 379), +(31200, 'Woodrow', 1925, 'M', 376), +(31201, 'Maynard', 1925, 'M', 374), +(31202, 'Grant', 1925, 'M', 373), +(31203, 'Dallas', 1925, 'M', 370), +(31204, 'Will', 1925, 'M', 367), +(31205, 'Dave', 1925, 'M', 362), +(31206, 'Reuben', 1925, 'M', 362), +(31207, 'Wilmer', 1925, 'M', 356), +(31208, 'Charley', 1925, 'M', 350), +(31209, 'Harrison', 1925, 'M', 349), +(31210, 'Elvin', 1925, 'M', 348), +(31211, 'Mitchell', 1925, 'M', 346), +(31212, 'Merlin', 1925, 'M', 343), +(31213, 'Moses', 1925, 'M', 342), +(31214, 'Russel', 1925, 'M', 339), +(31215, 'Simon', 1925, 'M', 337), +(31216, 'Carmen', 1925, 'M', 335), +(31217, 'Wade', 1925, 'M', 332), +(31218, 'Alfonso', 1925, 'M', 330), +(31219, 'Delmar', 1925, 'M', 328), +(31220, 'Bobbie', 1925, 'M', 325), +(31221, 'Elton', 1925, 'M', 325), +(31222, 'Gus', 1925, 'M', 324), +(31223, 'Sheldon', 1925, 'M', 323), +(31224, 'Timothy', 1925, 'M', 319), +(31225, 'Rocco', 1925, 'M', 317), +(31226, 'Vito', 1925, 'M', 317), +(31227, 'Emanuel', 1925, 'M', 313), +(31228, 'Odell', 1925, 'M', 313), +(31229, 'Ollie', 1925, 'M', 313), +(31230, 'Marcus', 1925, 'M', 312), +(31231, 'Clair', 1925, 'M', 310), +(31232, 'Claud', 1925, 'M', 310), +(31233, 'Thurman', 1925, 'M', 310), +(31234, 'Lionel', 1925, 'M', 309), +(31235, 'Jake', 1925, 'M', 306), +(31236, 'Kermit', 1925, 'M', 304), +(31237, 'Monroe', 1925, 'M', 304), +(31238, 'Jean', 1925, 'M', 302), +(31239, 'Cleo', 1925, 'M', 298), +(31240, 'Cleveland', 1925, 'M', 296), +(31241, 'Salvador', 1925, 'M', 296), +(31242, 'Alonzo', 1925, 'M', 294), +(31243, 'Pat', 1925, 'M', 294), +(31244, 'Clement', 1925, 'M', 292), +(31245, 'Merrill', 1925, 'M', 292), +(31246, 'Eli', 1925, 'M', 291), +(31247, 'Armand', 1925, 'M', 290), +(31248, 'Solomon', 1925, 'M', 290), +(31249, 'Patsy', 1925, 'M', 288), +(31250, 'Christopher', 1925, 'M', 286), +(31251, 'Sammie', 1925, 'M', 285), +(31252, 'Elijah', 1925, 'M', 284), +(31253, 'Buford', 1925, 'M', 283), +(31254, 'Raul', 1925, 'M', 282), +(31255, 'Stewart', 1925, 'M', 282), +(31256, 'Norris', 1925, 'M', 281), +(31257, 'Earle', 1925, 'M', 279), +(31258, 'Ned', 1925, 'M', 279), +(31259, 'Wilburn', 1925, 'M', 279), +(31260, 'Jackie', 1925, 'M', 276), +(31261, 'Elmo', 1925, 'M', 274), +(31262, 'Clark', 1925, 'M', 273), +(31263, 'Sanford', 1925, 'M', 273), +(31264, 'Alphonse', 1925, 'M', 271), +(31265, 'Luis', 1925, 'M', 269), +(31266, 'Jess', 1925, 'M', 268), +(31267, 'Weldon', 1925, 'M', 268), +(31268, 'Adrian', 1925, 'M', 267), +(31269, 'Cyril', 1925, 'M', 267), +(31270, 'Randolph', 1925, 'M', 267), +(31271, 'Emory', 1925, 'M', 262), +(31272, 'Mary', 1925, 'M', 261), +(31273, 'Teddy', 1925, 'M', 261), +(31274, 'Truman', 1925, 'M', 260), +(31275, 'Basil', 1925, 'M', 259), +(31276, 'Lavern', 1925, 'M', 256), +(31277, 'Ward', 1925, 'M', 256), +(31278, 'Andy', 1925, 'M', 255), +(31279, 'Ed', 1925, 'M', 255), +(31280, 'Wilford', 1925, 'M', 252), +(31281, 'Forest', 1925, 'M', 251), +(31282, 'Hollis', 1925, 'M', 251), +(31283, 'Emery', 1925, 'M', 249), +(31284, 'Jackson', 1925, 'M', 249), +(31285, 'Roberto', 1925, 'M', 249), +(31286, 'Wiley', 1925, 'M', 245), +(31287, 'Coy', 1925, 'M', 244), +(31288, 'Miles', 1925, 'M', 244), +(31289, 'Marlin', 1925, 'M', 241), +(31290, 'Travis', 1925, 'M', 241), +(31291, 'Vern', 1925, 'M', 241), +(31292, 'Sterling', 1925, 'M', 240), +(31293, 'Alva', 1925, 'M', 239), +(31294, 'Lamar', 1925, 'M', 238), +(31295, 'Milford', 1925, 'M', 234), +(31296, 'Thaddeus', 1925, 'M', 234), +(31297, 'Levi', 1925, 'M', 233), +(31298, 'Rolland', 1925, 'M', 232), +(31299, 'Lorenzo', 1925, 'M', 231), +(31300, 'Barney', 1925, 'M', 230), +(31301, 'Emerson', 1925, 'M', 230), +(31302, 'Van', 1925, 'M', 227), +(31303, 'Darwin', 1925, 'M', 224), +(31304, 'Winston', 1925, 'M', 224), +(31305, 'Orval', 1925, 'M', 223), +(31306, 'Roman', 1925, 'M', 223), +(31307, 'Shirley', 1925, 'M', 223), +(31308, 'Royce', 1925, 'M', 221), +(31309, 'Armando', 1925, 'M', 219), +(31310, 'Ellsworth', 1925, 'M', 219), +(31311, 'Noah', 1925, 'M', 219), +(31312, 'Silas', 1925, 'M', 219), +(31313, 'Gregory', 1925, 'M', 213), +(31314, 'Carmine', 1925, 'M', 212), +(31315, 'Eric', 1925, 'M', 212), +(31316, 'Harris', 1925, 'M', 212), +(31317, 'Bruno', 1925, 'M', 211), +(31318, 'Guadalupe', 1925, 'M', 211), +(31319, 'Winfred', 1925, 'M', 209), +(31320, 'Herschel', 1925, 'M', 208), +(31321, 'Rudy', 1925, 'M', 207), +(31322, 'Alfredo', 1925, 'M', 206), +(31323, 'Pasquale', 1925, 'M', 206), +(31324, 'Saul', 1925, 'M', 206), +(31325, 'Lenard', 1925, 'M', 204), +(31326, 'Randall', 1925, 'M', 204), +(31327, 'Denver', 1925, 'M', 203), +(31328, 'Gabriel', 1925, 'M', 202), +(31329, 'Royal', 1925, 'M', 200), +(31330, 'Mervin', 1925, 'M', 199), +(31331, 'Noel', 1925, 'M', 198), +(31332, 'Bertram', 1925, 'M', 194), +(31333, 'Elias', 1925, 'M', 193), +(31334, 'Ulysses', 1925, 'M', 192), +(31335, 'Buster', 1925, 'M', 191), +(31336, 'Hal', 1925, 'M', 191), +(31337, 'Miguel', 1925, 'M', 191), +(31338, 'Terry', 1925, 'M', 191), +(31339, 'Delmer', 1925, 'M', 190), +(31340, 'Freeman', 1925, 'M', 190), +(31341, 'Gale', 1925, 'M', 190), +(31342, 'Elliott', 1925, 'M', 189), +(31343, 'Jeff', 1925, 'M', 189), +(31344, 'Dudley', 1925, 'M', 188), +(31345, 'Lyman', 1925, 'M', 186), +(31346, 'Vance', 1925, 'M', 186), +(31347, 'Cletus', 1925, 'M', 184), +(31348, 'Scott', 1925, 'M', 184), +(31349, 'Anton', 1925, 'M', 183), +(31350, 'Chris', 1925, 'M', 182), +(31351, 'Darrel', 1925, 'M', 182), +(31352, 'Sol', 1925, 'M', 181), +(31353, 'Hershel', 1925, 'M', 180), +(31354, 'Gail', 1925, 'M', 179), +(31355, 'Wilton', 1925, 'M', 179), +(31356, 'Rafael', 1925, 'M', 178), +(31357, 'Rene', 1925, 'M', 178), +(31358, 'Dalton', 1925, 'M', 177), +(31359, 'Spencer', 1925, 'M', 177), +(31360, 'Bud', 1925, 'M', 175), +(31361, 'Danny', 1925, 'M', 175), +(31362, 'Linwood', 1925, 'M', 174), +(31363, 'Alden', 1925, 'M', 173), +(31364, 'Edsel', 1925, 'M', 173), +(31365, 'Omer', 1925, 'M', 173), +(31366, 'Rodolfo', 1925, 'M', 173), +(31367, 'Buddy', 1925, 'M', 172), +(31368, 'Normand', 1925, 'M', 172), +(31369, 'Hiram', 1925, 'M', 170), +(31370, 'Orlando', 1925, 'M', 170), +(31371, 'Pablo', 1925, 'M', 166), +(31372, 'Ambrose', 1925, 'M', 165), +(31373, 'Booker', 1925, 'M', 165), +(31374, 'Everette', 1925, 'M', 165), +(31375, 'Luke', 1925, 'M', 165), +(31376, 'Riley', 1925, 'M', 165), +(31377, 'Elroy', 1925, 'M', 164), +(31378, 'Emilio', 1925, 'M', 164), +(31379, 'Augustus', 1925, 'M', 163), +(31380, 'Mathew', 1925, 'M', 163), +(31381, 'Micheal', 1925, 'M', 163), +(31382, 'Noble', 1925, 'M', 163), +(31383, 'Fernando', 1925, 'M', 162), +(31384, 'Nolan', 1925, 'M', 161), +(31385, 'Morgan', 1925, 'M', 160), +(31386, 'Ferdinand', 1925, 'M', 159), +(31387, 'Foster', 1925, 'M', 159), +(31388, 'Sammy', 1925, 'M', 158), +(31389, 'Evan', 1925, 'M', 157), +(31390, 'Frederic', 1925, 'M', 157), +(31391, 'Hugo', 1925, 'M', 157), +(31392, 'Milo', 1925, 'M', 157), +(31393, 'Odis', 1925, 'M', 157), +(31394, 'Hobert', 1925, 'M', 156), +(31395, 'Columbus', 1925, 'M', 155), +(31396, 'Houston', 1925, 'M', 154), +(31397, 'Enrique', 1925, 'M', 152), +(31398, 'Newton', 1925, 'M', 152), +(31399, 'Burl', 1925, 'M', 150), +(31400, 'Carrol', 1925, 'M', 150), +(31401, 'Olen', 1925, 'M', 150), +(31402, 'Alberto', 1925, 'M', 149), +(31403, 'Junius', 1925, 'M', 149), +(31404, 'Bryan', 1925, 'M', 148), +(31405, 'Marcel', 1925, 'M', 148), +(31406, 'Roderick', 1925, 'M', 148), +(31407, 'Carol', 1925, 'M', 147), +(31408, 'Tomas', 1925, 'M', 147), +(31409, 'Wilber', 1925, 'M', 147), +(31410, 'Arlie', 1925, 'M', 146), +(31411, 'Augustine', 1925, 'M', 144), +(31412, 'Clay', 1925, 'M', 144), +(31413, 'Dewitt', 1925, 'M', 144), +(31414, 'Jefferson', 1925, 'M', 143), +(31415, 'Domingo', 1925, 'M', 142), +(31416, 'Fletcher', 1925, 'M', 142), +(31417, 'Lincoln', 1925, 'M', 142), +(31418, 'Isadore', 1925, 'M', 141), +(31419, 'Merton', 1925, 'M', 141), +(31420, 'Verne', 1925, 'M', 141), +(31421, 'Davis', 1925, 'M', 140), +(31422, 'Emile', 1925, 'M', 140), +(31423, 'Hoyt', 1925, 'M', 140), +(31424, 'Olin', 1925, 'M', 140), +(31425, 'Phil', 1925, 'M', 140), +(31426, 'Vaughn', 1925, 'M', 140), +(31427, 'Hector', 1925, 'M', 139), +(31428, 'Julio', 1925, 'M', 139), +(31429, 'Ricardo', 1925, 'M', 138), +(31430, 'Frankie', 1925, 'M', 137), +(31431, 'Rollin', 1925, 'M', 137), +(31432, 'Aloysius', 1925, 'M', 136), +(31433, 'Aldo', 1925, 'M', 135), +(31434, 'Elden', 1925, 'M', 135), +(31435, 'Nickolas', 1925, 'M', 135), +(31436, 'Blaine', 1925, 'M', 134), +(31437, 'Harland', 1925, 'M', 134), +(31438, 'Ezra', 1925, 'M', 133), +(31439, 'Justin', 1925, 'M', 132), +(31440, 'Lucien', 1925, 'M', 132), +(31441, 'Hyman', 1925, 'M', 131), +(31442, 'Palmer', 1925, 'M', 131), +(31443, 'Arturo', 1925, 'M', 130), +(31444, 'Isiah', 1925, 'M', 130), +(31445, 'Oren', 1925, 'M', 130), +(31446, 'Sydney', 1925, 'M', 130), +(31447, 'Anderson', 1925, 'M', 129), +(31448, 'Elwin', 1925, 'M', 129), +(31449, 'Jeremiah', 1925, 'M', 128), +(31450, 'Shelby', 1925, 'M', 128), +(31451, 'Isaiah', 1925, 'M', 127), +(31452, 'Coleman', 1925, 'M', 126), +(31453, 'Jules', 1925, 'M', 126), +(31454, 'Al', 1925, 'M', 125), +(31455, 'Dee', 1925, 'M', 125), +(31456, 'Granville', 1925, 'M', 125), +(31457, 'Jewell', 1925, 'M', 125), +(31458, 'Santos', 1925, 'M', 125), +(31459, 'Alphonso', 1925, 'M', 124), +(31460, 'Felipe', 1925, 'M', 124), +(31461, 'Ignacio', 1925, 'M', 124), +(31462, 'Raymon', 1925, 'M', 124), +(31463, 'Angel', 1925, 'M', 122), +(31464, 'Casimir', 1925, 'M', 122), +(31465, 'Joesph', 1925, 'M', 122), +(31466, 'Lacy', 1925, 'M', 122), +(31467, 'Rupert', 1925, 'M', 122), +(31468, 'Kelly', 1925, 'M', 121), +(31469, 'Kent', 1925, 'M', 121), +(31470, 'Waldo', 1925, 'M', 121), +(31471, 'Carlo', 1925, 'M', 120), +(31472, 'Otha', 1925, 'M', 120), +(31473, 'Arther', 1925, 'M', 119), +(31474, 'Ernesto', 1925, 'M', 119), +(31475, 'Fay', 1925, 'M', 119), +(31476, 'Guido', 1925, 'M', 119), +(31477, 'Haywood', 1925, 'M', 119), +(31478, 'Theron', 1925, 'M', 119), +(31479, 'Bennett', 1925, 'M', 118), +(31480, 'Lemuel', 1925, 'M', 118), +(31481, 'Ora', 1925, 'M', 118), +(31482, 'Santo', 1925, 'M', 117), +(31483, 'Abe', 1925, 'M', 116), +(31484, 'Dana', 1925, 'M', 116), +(31485, 'Hilton', 1925, 'M', 116), +(31486, 'Judson', 1925, 'M', 116), +(31487, 'Major', 1925, 'M', 116), +(31488, 'Albin', 1925, 'M', 115), +(31489, 'Edd', 1925, 'M', 115), +(31490, 'Gary', 1925, 'M', 115), +(31491, 'Talmadge', 1925, 'M', 115), +(31492, 'Dock', 1925, 'M', 114), +(31493, 'Frances', 1925, 'M', 114), +(31494, 'Jonathan', 1925, 'M', 114), +(31495, 'Mason', 1925, 'M', 114), +(31496, 'Reed', 1925, 'M', 114), +(31497, 'Domenic', 1925, 'M', 113), +(31498, 'Maxwell', 1925, 'M', 113), +(31499, 'Gaylord', 1925, 'M', 112), +(31500, 'Harmon', 1925, 'M', 112), +(31501, 'Cyrus', 1925, 'M', 111), +(31502, 'Jewel', 1925, 'M', 111), +(31503, 'Napoleon', 1925, 'M', 111), +(31504, 'Arden', 1925, 'M', 110), +(31505, 'Galen', 1925, 'M', 110), +(31506, 'Jason', 1925, 'M', 110), +(31507, 'Joshua', 1925, 'M', 110), +(31508, 'Quentin', 1925, 'M', 110), +(31509, 'Rosario', 1925, 'M', 110), +(31510, 'Sherwood', 1925, 'M', 110), +(31511, 'Jerald', 1925, 'M', 109), +(31512, 'Ottis', 1925, 'M', 109), +(31513, 'Sebastian', 1925, 'M', 109), +(31514, 'Rubin', 1925, 'M', 108), +(31515, 'Winford', 1925, 'M', 108), +(31516, 'Valentine', 1925, 'M', 106), +(31517, 'Christian', 1925, 'M', 105), +(31518, 'Benedict', 1925, 'M', 104), +(31519, 'Clarance', 1925, 'M', 104), +(31520, 'Florian', 1925, 'M', 104), +(31521, 'Santiago', 1925, 'M', 104), +(31522, 'Carson', 1925, 'M', 103), +(31523, 'Domenick', 1925, 'M', 103), +(31524, 'Eldred', 1925, 'M', 103), +(31525, 'Hobart', 1925, 'M', 103), +(31526, 'Israel', 1925, 'M', 103), +(31527, 'Walker', 1925, 'M', 103), +(31528, 'Benito', 1925, 'M', 102), +(31529, 'Mckinley', 1925, 'M', 102), +(31530, 'Porter', 1925, 'M', 102), +(31531, 'Rodger', 1925, 'M', 102), +(31532, 'Romeo', 1925, 'M', 102), +(31533, 'Alford', 1925, 'M', 101), +(31534, 'Avery', 1925, 'M', 101), +(31535, 'Gilberto', 1925, 'M', 101), +(31536, 'Lucian', 1925, 'M', 101), +(31537, 'Lucius', 1925, 'M', 101), +(31538, 'Winfield', 1925, 'M', 101), +(31539, 'Bernie', 1925, 'M', 100), +(31540, 'Boyce', 1925, 'M', 100), +(31541, 'Jennings', 1925, 'M', 100), +(31542, 'Mose', 1925, 'M', 100), +(31543, 'Raleigh', 1925, 'M', 100), +(31544, 'Mary', 1926, 'F', 67823), +(31545, 'Dorothy', 1926, 'F', 36617), +(31546, 'Betty', 1926, 'F', 32959), +(31547, 'Helen', 1926, 'F', 26881), +(31548, 'Margaret', 1926, 'F', 23069), +(31549, 'Ruth', 1926, 'F', 20215), +(31550, 'Doris', 1926, 'F', 16298), +(31551, 'Virginia', 1926, 'F', 16163), +(31552, 'Mildred', 1926, 'F', 13549), +(31553, 'Frances', 1926, 'F', 13355), +(31554, 'Elizabeth', 1926, 'F', 12833), +(31555, 'Jean', 1926, 'F', 12169), +(31556, 'Evelyn', 1926, 'F', 11779), +(31557, 'Shirley', 1926, 'F', 11761), +(31558, 'Anna', 1926, 'F', 11700), +(31559, 'Barbara', 1926, 'F', 11075), +(31560, 'Alice', 1926, 'F', 10953), +(31561, 'Marie', 1926, 'F', 10628), +(31562, 'Lois', 1926, 'F', 9820), +(31563, 'Gloria', 1926, 'F', 9197), +(31564, 'Irene', 1926, 'F', 9165), +(31565, 'Marjorie', 1926, 'F', 8642), +(31566, 'Patricia', 1926, 'F', 8590), +(31567, 'Martha', 1926, 'F', 8558), +(31568, 'Rose', 1926, 'F', 8512), +(31569, 'Florence', 1926, 'F', 8179), +(31570, 'Louise', 1926, 'F', 7981), +(31571, 'Lillian', 1926, 'F', 7657), +(31572, 'Norma', 1926, 'F', 7527), +(31573, 'Ruby', 1926, 'F', 7472), +(31574, 'Catherine', 1926, 'F', 7465), +(31575, 'Eleanor', 1926, 'F', 7305), +(31576, 'Phyllis', 1926, 'F', 6920), +(31577, 'Annie', 1926, 'F', 6870), +(31578, 'Gladys', 1926, 'F', 6631), +(31579, 'Thelma', 1926, 'F', 6584), +(31580, 'Josephine', 1926, 'F', 6403), +(31581, 'Edna', 1926, 'F', 6389), +(31582, 'Pauline', 1926, 'F', 6360), +(31583, 'June', 1926, 'F', 6075), +(31584, 'Ethel', 1926, 'F', 5860), +(31585, 'Edith', 1926, 'F', 5788), +(31586, 'Lucille', 1926, 'F', 5760), +(31587, 'Joyce', 1926, 'F', 5706), +(31588, 'Bernice', 1926, 'F', 5442), +(31589, 'Grace', 1926, 'F', 5429), +(31590, 'Marion', 1926, 'F', 5353), +(31591, 'Hazel', 1926, 'F', 5300), +(31592, 'Dolores', 1926, 'F', 5217), +(31593, 'Rita', 1926, 'F', 5011), +(31594, 'Joan', 1926, 'F', 4995), +(31595, 'Juanita', 1926, 'F', 4984), +(31596, 'Lorraine', 1926, 'F', 4893), +(31597, 'Geraldine', 1926, 'F', 4815), +(31598, 'Ann', 1926, 'F', 4779), +(31599, 'Jane', 1926, 'F', 4641), +(31600, 'Nancy', 1926, 'F', 4566), +(31601, 'Beatrice', 1926, 'F', 4516), +(31602, 'Audrey', 1926, 'F', 4480), +(31603, 'Emma', 1926, 'F', 4478), +(31604, 'Clara', 1926, 'F', 4463), +(31605, 'Esther', 1926, 'F', 4455), +(31606, 'Sarah', 1926, 'F', 4422), +(31607, 'Theresa', 1926, 'F', 4408), +(31608, 'Marilyn', 1926, 'F', 4373), +(31609, 'Wanda', 1926, 'F', 4125), +(31610, 'Wilma', 1926, 'F', 4057), +(31611, 'Elaine', 1926, 'F', 4003), +(31612, 'Elsie', 1926, 'F', 3910), +(31613, 'Marian', 1926, 'F', 3860), +(31614, 'Gertrude', 1926, 'F', 3853), +(31615, 'Katherine', 1926, 'F', 3833), +(31616, 'Willie', 1926, 'F', 3822), +(31617, 'Beverly', 1926, 'F', 3774), +(31618, 'Julia', 1926, 'F', 3685), +(31619, 'Bertha', 1926, 'F', 3584), +(31620, 'Agnes', 1926, 'F', 3532), +(31621, 'Charlotte', 1926, 'F', 3513), +(31622, 'Eva', 1926, 'F', 3492), +(31623, 'Vivian', 1926, 'F', 3431), +(31624, 'Laura', 1926, 'F', 3375), +(31625, 'Ida', 1926, 'F', 3280), +(31626, 'Kathleen', 1926, 'F', 3276), +(31627, 'Maxine', 1926, 'F', 3151), +(31628, 'Vera', 1926, 'F', 3151), +(31629, 'Anne', 1926, 'F', 3108), +(31630, 'Kathryn', 1926, 'F', 3094), +(31631, 'Jeanne', 1926, 'F', 3061), +(31632, 'Bessie', 1926, 'F', 3054), +(31633, 'Donna', 1926, 'F', 3009), +(31634, 'Alma', 1926, 'F', 2990), +(31635, 'Eileen', 1926, 'F', 2929), +(31636, 'Jessie', 1926, 'F', 2921), +(31637, 'Pearl', 1926, 'F', 2900), +(31638, 'Violet', 1926, 'F', 2900), +(31639, 'Rosemary', 1926, 'F', 2899), +(31640, 'Viola', 1926, 'F', 2877), +(31641, 'Ella', 1926, 'F', 2853), +(31642, 'Lillie', 1926, 'F', 2841), +(31643, 'Ellen', 1926, 'F', 2768), +(31644, 'Myrtle', 1926, 'F', 2759), +(31645, 'Nellie', 1926, 'F', 2724), +(31646, 'Margie', 1926, 'F', 2716), +(31647, 'Peggy', 1926, 'F', 2622), +(31648, 'Bonnie', 1926, 'F', 2608), +(31649, 'Lucy', 1926, 'F', 2544), +(31650, 'Sylvia', 1926, 'F', 2528), +(31651, 'Arlene', 1926, 'F', 2521), +(31652, 'Mattie', 1926, 'F', 2495), +(31653, 'Janet', 1926, 'F', 2467), +(31654, 'Minnie', 1926, 'F', 2451), +(31655, 'Leona', 1926, 'F', 2430), +(31656, 'Carol', 1926, 'F', 2427), +(31657, 'Carolyn', 1926, 'F', 2413), +(31658, 'Georgia', 1926, 'F', 2351), +(31659, 'Maria', 1926, 'F', 2350), +(31660, 'Geneva', 1926, 'F', 2327), +(31661, 'Mae', 1926, 'F', 2261), +(31662, 'Jacqueline', 1926, 'F', 2246), +(31663, 'Christine', 1926, 'F', 2214), +(31664, 'Stella', 1926, 'F', 2190), +(31665, 'Billie', 1926, 'F', 2172), +(31666, 'Lena', 1926, 'F', 2144), +(31667, 'Velma', 1926, 'F', 2120), +(31668, 'Rosa', 1926, 'F', 2113), +(31669, 'Loretta', 1926, 'F', 2108), +(31670, 'Mabel', 1926, 'F', 2075), +(31671, 'Genevieve', 1926, 'F', 2031), +(31672, 'Muriel', 1926, 'F', 2027), +(31673, 'Opal', 1926, 'F', 2027), +(31674, 'Sara', 1926, 'F', 2022), +(31675, 'Jennie', 1926, 'F', 2012), +(31676, 'Harriet', 1926, 'F', 1985), +(31677, 'Eunice', 1926, 'F', 1943), +(31678, 'Roberta', 1926, 'F', 1877), +(31679, 'Marguerite', 1926, 'F', 1870), +(31680, 'Jeanette', 1926, 'F', 1869), +(31681, 'Carrie', 1926, 'F', 1860), +(31682, 'Hilda', 1926, 'F', 1847), +(31683, 'Dora', 1926, 'F', 1773), +(31684, 'Naomi', 1926, 'F', 1760), +(31685, 'Emily', 1926, 'F', 1730), +(31686, 'Alberta', 1926, 'F', 1701), +(31687, 'Claire', 1926, 'F', 1676), +(31688, 'Delores', 1926, 'F', 1672), +(31689, 'Constance', 1926, 'F', 1670), +(31690, 'Blanche', 1926, 'F', 1658), +(31691, 'Beulah', 1926, 'F', 1649), +(31692, 'Inez', 1926, 'F', 1632), +(31693, 'Anita', 1926, 'F', 1617), +(31694, 'Hattie', 1926, 'F', 1603), +(31695, 'Verna', 1926, 'F', 1587), +(31696, 'Fannie', 1926, 'F', 1569), +(31697, 'Lula', 1926, 'F', 1563), +(31698, 'Miriam', 1926, 'F', 1510), +(31699, 'Rosie', 1926, 'F', 1491), +(31700, 'Erma', 1926, 'F', 1485), +(31701, 'Cora', 1926, 'F', 1476), +(31702, 'Janice', 1926, 'F', 1468), +(31703, 'Sally', 1926, 'F', 1466), +(31704, 'Ada', 1926, 'F', 1460), +(31705, 'Lola', 1926, 'F', 1443), +(31706, 'Madeline', 1926, 'F', 1396), +(31707, 'Mable', 1926, 'F', 1390), +(31708, 'Rachel', 1926, 'F', 1390), +(31709, 'Bette', 1926, 'F', 1378), +(31710, 'Mamie', 1926, 'F', 1367), +(31711, 'Flora', 1926, 'F', 1366), +(31712, 'Laverne', 1926, 'F', 1326), +(31713, 'Irma', 1926, 'F', 1298), +(31714, 'Daisy', 1926, 'F', 1289), +(31715, 'Imogene', 1926, 'F', 1254), +(31716, 'Faye', 1926, 'F', 1219), +(31717, 'Caroline', 1926, 'F', 1217), +(31718, 'Eloise', 1926, 'F', 1209), +(31719, 'Nora', 1926, 'F', 1202), +(31720, 'Marcella', 1926, 'F', 1185), +(31721, 'Bettie', 1926, 'F', 1182), +(31722, 'Eula', 1926, 'F', 1176), +(31723, 'Teresa', 1926, 'F', 1160), +(31724, 'Antoinette', 1926, 'F', 1159), +(31725, 'Rosalie', 1926, 'F', 1158), +(31726, 'Olga', 1926, 'F', 1157), +(31727, 'Susie', 1926, 'F', 1151), +(31728, 'Rebecca', 1926, 'F', 1145), +(31729, 'Estelle', 1926, 'F', 1113), +(31730, 'Winifred', 1926, 'F', 1111), +(31731, 'Nina', 1926, 'F', 1110), +(31732, 'Maggie', 1926, 'F', 1093), +(31733, 'Lila', 1926, 'F', 1082), +(31734, 'Johnnie', 1926, 'F', 1072), +(31735, 'Yvonne', 1926, 'F', 1067), +(31736, 'Ernestine', 1926, 'F', 1037), +(31737, 'Sadie', 1926, 'F', 1030), +(31738, 'Lorene', 1926, 'F', 1018), +(31739, 'Della', 1926, 'F', 1007), +(31740, 'Regina', 1926, 'F', 997), +(31741, 'Patsy', 1926, 'F', 993), +(31742, 'Iris', 1926, 'F', 965), +(31743, 'Victoria', 1926, 'F', 962), +(31744, 'Henrietta', 1926, 'F', 958), +(31745, 'Carmen', 1926, 'F', 957), +(31746, 'Sophie', 1926, 'F', 952), +(31747, 'Colleen', 1926, 'F', 945), +(31748, 'Adeline', 1926, 'F', 944), +(31749, 'Joanne', 1926, 'F', 944), +(31750, 'Jeannette', 1926, 'F', 919), +(31751, 'Melba', 1926, 'F', 917), +(31752, 'Fern', 1926, 'F', 910), +(31753, 'Joy', 1926, 'F', 893), +(31754, 'Essie', 1926, 'F', 882), +(31755, 'Darlene', 1926, 'F', 873), +(31756, 'Olive', 1926, 'F', 872), +(31757, 'Angelina', 1926, 'F', 870), +(31758, 'Susan', 1926, 'F', 854), +(31759, 'Katie', 1926, 'F', 853), +(31760, 'Gwendolyn', 1926, 'F', 848), +(31761, 'Bobbie', 1926, 'F', 839), +(31762, 'Nettie', 1926, 'F', 839), +(31763, 'Priscilla', 1926, 'F', 834), +(31764, 'Freda', 1926, 'F', 829), +(31765, 'Jo', 1926, 'F', 815), +(31766, 'Lydia', 1926, 'F', 812), +(31767, 'Lucile', 1926, 'F', 805), +(31768, 'Jewel', 1926, 'F', 787), +(31769, 'Therese', 1926, 'F', 782), +(31770, 'Veronica', 1926, 'F', 781), +(31771, 'Annette', 1926, 'F', 780), +(31772, 'Ollie', 1926, 'F', 780), +(31773, 'Nadine', 1926, 'F', 778), +(31774, 'Lottie', 1926, 'F', 774), +(31775, 'May', 1926, 'F', 766), +(31776, 'Dorothea', 1926, 'F', 759), +(31777, 'Ora', 1926, 'F', 759), +(31778, 'Reba', 1926, 'F', 748), +(31779, 'Angeline', 1926, 'F', 746), +(31780, 'Amelia', 1926, 'F', 745), +(31781, 'Isabel', 1926, 'F', 745), +(31782, 'Goldie', 1926, 'F', 742), +(31783, 'Cleo', 1926, 'F', 730), +(31784, 'Rosemarie', 1926, 'F', 723), +(31785, 'Connie', 1926, 'F', 722), +(31786, 'Fay', 1926, 'F', 721), +(31787, 'Lela', 1926, 'F', 721), +(31788, 'Jewell', 1926, 'F', 718), +(31789, 'Cecilia', 1926, 'F', 717), +(31790, 'Iva', 1926, 'F', 711), +(31791, 'Sue', 1926, 'F', 698), +(31792, 'Corinne', 1926, 'F', 689), +(31793, 'Sallie', 1926, 'F', 686), +(31794, 'Cecelia', 1926, 'F', 685), +(31795, 'Adele', 1926, 'F', 683), +(31796, 'Ina', 1926, 'F', 676), +(31797, 'Selma', 1926, 'F', 672), +(31798, 'Natalie', 1926, 'F', 669), +(31799, 'Janie', 1926, 'F', 664), +(31800, 'Etta', 1926, 'F', 655), +(31801, 'Addie', 1926, 'F', 654), +(31802, 'Francis', 1926, 'F', 652), +(31803, 'Judith', 1926, 'F', 651), +(31804, 'Dorthy', 1926, 'F', 648), +(31805, 'Leola', 1926, 'F', 646), +(31806, 'Effie', 1926, 'F', 644), +(31807, 'Luella', 1926, 'F', 640), +(31808, 'Isabelle', 1926, 'F', 636), +(31809, 'Annabelle', 1926, 'F', 628), +(31810, 'Joann', 1926, 'F', 622), +(31811, 'Ola', 1926, 'F', 617), +(31812, 'Eleanore', 1926, 'F', 613), +(31813, 'Lenora', 1926, 'F', 611), +(31814, 'Celia', 1926, 'F', 606), +(31815, 'Elinor', 1926, 'F', 606), +(31816, 'Alta', 1926, 'F', 605), +(31817, 'Bettye', 1926, 'F', 603), +(31818, 'Arline', 1926, 'F', 597), +(31819, 'Charlene', 1926, 'F', 581), +(31820, 'Estella', 1926, 'F', 577), +(31821, 'Angela', 1926, 'F', 572), +(31822, 'Elva', 1926, 'F', 572), +(31823, 'Mavis', 1926, 'F', 557), +(31824, 'Deloris', 1926, 'F', 548), +(31825, 'Bernadine', 1926, 'F', 546), +(31826, 'Rhoda', 1926, 'F', 546), +(31827, 'Lizzie', 1926, 'F', 543), +(31828, 'Lee', 1926, 'F', 541), +(31829, 'Paula', 1926, 'F', 541), +(31830, 'Willa', 1926, 'F', 536), +(31831, 'Clarice', 1926, 'F', 535), +(31832, 'Aileen', 1926, 'F', 534), +(31833, 'Elvira', 1926, 'F', 532), +(31834, 'Nell', 1926, 'F', 531), +(31835, 'Frankie', 1926, 'F', 524), +(31836, 'Carmela', 1926, 'F', 523), +(31837, 'Suzanne', 1926, 'F', 522), +(31838, 'Jimmie', 1926, 'F', 517), +(31839, 'Nannie', 1926, 'F', 513), +(31840, 'Helene', 1926, 'F', 510), +(31841, 'Carmella', 1926, 'F', 501), +(31842, 'Eugenia', 1926, 'F', 497), +(31843, 'Amy', 1926, 'F', 493), +(31844, 'Gracie', 1926, 'F', 493), +(31845, 'Ila', 1926, 'F', 487), +(31846, 'Marcia', 1926, 'F', 487), +(31847, 'Elnora', 1926, 'F', 486), +(31848, 'Linda', 1926, 'F', 479), +(31849, 'Glenna', 1926, 'F', 467), +(31850, 'Ramona', 1926, 'F', 467), +(31851, 'Myra', 1926, 'F', 466), +(31852, 'Olivia', 1926, 'F', 466), +(31853, 'Rosetta', 1926, 'F', 464), +(31854, 'Earline', 1926, 'F', 460), +(31855, 'Lenore', 1926, 'F', 460), +(31856, 'Yolanda', 1926, 'F', 450), +(31857, 'Elma', 1926, 'F', 449), +(31858, 'Flossie', 1926, 'F', 445), +(31859, 'Rena', 1926, 'F', 445), +(31860, 'Margery', 1926, 'F', 439), +(31861, 'Winnie', 1926, 'F', 437), +(31862, 'Leah', 1926, 'F', 436), +(31863, 'Concetta', 1926, 'F', 428), +(31864, 'Rosella', 1926, 'F', 426), +(31865, 'Virgie', 1926, 'F', 424), +(31866, 'Lou', 1926, 'F', 417), +(31867, 'Matilda', 1926, 'F', 417), +(31868, 'Neva', 1926, 'F', 413), +(31869, 'Ruthie', 1926, 'F', 411), +(31870, 'Wilda', 1926, 'F', 411), +(31871, 'Josie', 1926, 'F', 406), +(31872, 'Frieda', 1926, 'F', 405), +(31873, 'Letha', 1926, 'F', 397), +(31874, 'Dolly', 1926, 'F', 396), +(31875, 'Loraine', 1926, 'F', 396), +(31876, 'Cynthia', 1926, 'F', 394), +(31877, 'Mollie', 1926, 'F', 394), +(31878, 'Odessa', 1926, 'F', 388), +(31879, 'Maude', 1926, 'F', 387), +(31880, 'Avis', 1926, 'F', 386), +(31881, 'Claudia', 1926, 'F', 386), +(31882, 'John', 1926, 'F', 386), +(31883, 'Lupe', 1926, 'F', 384), +(31884, 'Guadalupe', 1926, 'F', 383), +(31885, 'Sybil', 1926, 'F', 381), +(31886, 'Harriett', 1926, 'F', 379), +(31887, 'Cecile', 1926, 'F', 378), +(31888, 'Jacquelyn', 1926, 'F', 375), +(31889, 'Millie', 1926, 'F', 374), +(31890, 'Robert', 1926, 'F', 370), +(31891, 'Dixie', 1926, 'F', 369), +(31892, 'Bernadette', 1926, 'F', 368), +(31893, 'Mona', 1926, 'F', 368), +(31894, 'Hannah', 1926, 'F', 360), +(31895, 'James', 1926, 'F', 360), +(31896, 'Corrine', 1926, 'F', 357), +(31897, 'Zelma', 1926, 'F', 356), +(31898, 'Eddie', 1926, 'F', 351), +(31899, 'Christina', 1926, 'F', 350), +(31900, 'Pearlie', 1926, 'F', 350), +(31901, 'Aline', 1926, 'F', 349), +(31902, 'Dollie', 1926, 'F', 349), +(31903, 'Nelda', 1926, 'F', 349), +(31904, 'Cornelia', 1926, 'F', 348), +(31905, 'Lily', 1926, 'F', 344), +(31906, 'Alyce', 1926, 'F', 342), +(31907, 'Consuelo', 1926, 'F', 342), +(31908, 'Merle', 1926, 'F', 340), +(31909, 'Polly', 1926, 'F', 338), +(31910, 'Judy', 1926, 'F', 337), +(31911, 'Pat', 1926, 'F', 337), +(31912, 'Berniece', 1926, 'F', 335), +(31913, 'Jackie', 1926, 'F', 333), +(31914, 'Corine', 1926, 'F', 332), +(31915, 'Tommie', 1926, 'F', 331), +(31916, 'Beth', 1926, 'F', 329), +(31917, 'Earnestine', 1926, 'F', 329), +(31918, 'Allie', 1926, 'F', 328), +(31919, 'Antonia', 1926, 'F', 327), +(31920, 'Aurora', 1926, 'F', 327), +(31921, 'Madge', 1926, 'F', 325), +(31922, 'Patty', 1926, 'F', 324), +(31923, 'Lavonne', 1926, 'F', 322), +(31924, 'Diana', 1926, 'F', 320), +(31925, 'Leatrice', 1926, 'F', 319), +(31926, 'Allene', 1926, 'F', 317), +(31927, 'Reva', 1926, 'F', 317), +(31928, 'Ophelia', 1926, 'F', 315), +(31929, 'Ilene', 1926, 'F', 313), +(31930, 'Leila', 1926, 'F', 313), +(31931, 'Eliza', 1926, 'F', 311), +(31932, 'Amanda', 1926, 'F', 310), +(31933, 'Edythe', 1926, 'F', 310), +(31934, 'Hope', 1926, 'F', 310), +(31935, 'Robbie', 1926, 'F', 309), +(31936, 'Callie', 1926, 'F', 306), +(31937, 'Lilly', 1926, 'F', 305), +(31938, 'Florine', 1926, 'F', 302), +(31939, 'William', 1926, 'F', 302), +(31940, 'Margarita', 1926, 'F', 300), +(31941, 'Dorris', 1926, 'F', 297), +(31942, 'Lorna', 1926, 'F', 295), +(31943, 'Nona', 1926, 'F', 294), +(31944, 'Gilda', 1926, 'F', 293), +(31945, 'Madelyn', 1926, 'F', 293), +(31946, 'Dona', 1926, 'F', 288), +(31947, 'Maryann', 1926, 'F', 287), +(31948, 'Delia', 1926, 'F', 282), +(31949, 'Joanna', 1926, 'F', 281), +(31950, 'Lora', 1926, 'F', 280), +(31951, 'Gene', 1926, 'F', 278), +(31952, 'Mercedes', 1926, 'F', 278), +(31953, 'Adelaide', 1926, 'F', 275), +(31954, 'Hester', 1926, 'F', 274), +(31955, 'Lelia', 1926, 'F', 272), +(31956, 'Bertie', 1926, 'F', 271), +(31957, 'Jannie', 1926, 'F', 271), +(31958, 'Alicia', 1926, 'F', 270), +(31959, 'Georgie', 1926, 'F', 270), +(31960, 'Nola', 1926, 'F', 268), +(31961, 'Lorena', 1926, 'F', 266), +(31962, 'Louella', 1926, 'F', 266), +(31963, 'Dortha', 1926, 'F', 263), +(31964, 'Iona', 1926, 'F', 263), +(31965, 'Jaunita', 1926, 'F', 263), +(31966, 'Melva', 1926, 'F', 263), +(31967, 'Roslyn', 1926, 'F', 263), +(31968, 'Betsy', 1926, 'F', 262), +(31969, 'Ester', 1926, 'F', 262), +(31970, 'Philomena', 1926, 'F', 261), +(31971, 'Elouise', 1926, 'F', 259), +(31972, 'Helena', 1926, 'F', 257), +(31973, 'Ione', 1926, 'F', 257), +(31974, 'Pansy', 1926, 'F', 256), +(31975, 'Lorine', 1926, 'F', 255), +(31976, 'Molly', 1926, 'F', 255), +(31977, 'Lessie', 1926, 'F', 253), +(31978, 'Renee', 1926, 'F', 250), +(31979, 'Alene', 1926, 'F', 246), +(31980, 'Queen', 1926, 'F', 246), +(31981, 'Leota', 1926, 'F', 244), +(31982, 'Gussie', 1926, 'F', 242), +(31983, 'Clare', 1926, 'F', 241), +(31984, 'Maurine', 1926, 'F', 239), +(31985, 'Sophia', 1926, 'F', 234), +(31986, 'Elena', 1926, 'F', 231), +(31987, 'Zelda', 1926, 'F', 231), +(31988, 'George', 1926, 'F', 230), +(31989, 'Beryl', 1926, 'F', 228), +(31990, 'Johanna', 1926, 'F', 228), +(31991, 'Althea', 1926, 'F', 226), +(31992, 'Beverley', 1926, 'F', 226), +(31993, 'Jerry', 1926, 'F', 226), +(31994, 'Charles', 1926, 'F', 225), +(31995, 'Leta', 1926, 'F', 225), +(31996, 'Maudie', 1926, 'F', 225), +(31997, 'Maureen', 1926, 'F', 225), +(31998, 'Earlene', 1926, 'F', 224), +(31999, 'Faith', 1926, 'F', 224), +(32000, 'Kay', 1926, 'F', 224), +(32001, 'Marianne', 1926, 'F', 224), +(32002, 'Winona', 1926, 'F', 224), +(32003, 'Ima', 1926, 'F', 223), +(32004, 'Emogene', 1926, 'F', 222), +(32005, 'Madeleine', 1926, 'F', 222), +(32006, 'Dessie', 1926, 'F', 221), +(32007, 'Edwina', 1926, 'F', 221), +(32008, 'Evangeline', 1926, 'F', 221), +(32009, 'Iola', 1926, 'F', 221), +(32010, 'Isabell', 1926, 'F', 221), +(32011, 'Millicent', 1926, 'F', 220), +(32012, 'Roxie', 1926, 'F', 218), +(32013, 'Marjory', 1926, 'F', 216), +(32014, 'Tillie', 1926, 'F', 216), +(32015, 'Zella', 1926, 'F', 216), +(32016, 'Katharine', 1926, 'F', 214), +(32017, 'Marietta', 1926, 'F', 214), +(32018, 'Joe', 1926, 'F', 213), +(32019, 'Doreen', 1926, 'F', 212), +(32020, 'Jenny', 1926, 'F', 211), +(32021, 'Leora', 1926, 'F', 210), +(32022, 'Sheila', 1926, 'F', 210), +(32023, 'Angie', 1926, 'F', 207), +(32024, 'Bennie', 1926, 'F', 207), +(32025, 'Julie', 1926, 'F', 207), +(32026, 'Birdie', 1926, 'F', 206), +(32027, 'Delma', 1926, 'F', 206), +(32028, 'Gail', 1926, 'F', 206), +(32029, 'Augusta', 1926, 'F', 205), +(32030, 'Juana', 1926, 'F', 205), +(32031, 'Carole', 1926, 'F', 204), +(32032, 'Delphine', 1926, 'F', 203), +(32033, 'Rosalind', 1926, 'F', 203), +(32034, 'Esperanza', 1926, 'F', 202), +(32035, 'Retha', 1926, 'F', 202), +(32036, 'Charlie', 1926, 'F', 200), +(32037, 'Georgette', 1926, 'F', 198), +(32038, 'Josefina', 1926, 'F', 198), +(32039, 'Oma', 1926, 'F', 197), +(32040, 'Freddie', 1926, 'F', 196), +(32041, 'Verda', 1926, 'F', 196), +(32042, 'Alfreda', 1926, 'F', 195), +(32043, 'Rubye', 1926, 'F', 195), +(32044, 'Hallie', 1926, 'F', 194), +(32045, 'Margret', 1926, 'F', 194), +(32046, 'Verla', 1926, 'F', 194), +(32047, 'Valeria', 1926, 'F', 193), +(32048, 'Syble', 1926, 'F', 192), +(32049, 'Monica', 1926, 'F', 191), +(32050, 'Manuela', 1926, 'F', 190), +(32051, 'Tessie', 1926, 'F', 190), +(32052, 'Bonita', 1926, 'F', 188), +(32053, 'Enid', 1926, 'F', 187), +(32054, 'Isabella', 1926, 'F', 187), +(32055, 'Claudine', 1926, 'F', 186), +(32056, 'Lucia', 1926, 'F', 185), +(32057, 'Dorotha', 1926, 'F', 183), +(32058, 'Johnie', 1926, 'F', 183), +(32059, 'Twila', 1926, 'F', 183), +(32060, 'Wilhelmina', 1926, 'F', 183), +(32061, 'Elisabeth', 1926, 'F', 182), +(32062, 'Erna', 1926, 'F', 182), +(32063, 'Elvera', 1926, 'F', 181), +(32064, 'Shirlee', 1926, 'F', 181), +(32065, 'Ardis', 1926, 'F', 180), +(32066, 'Theda', 1926, 'F', 179), +(32067, 'Vernice', 1926, 'F', 179), +(32068, 'Aurelia', 1926, 'F', 177), +(32069, 'Elda', 1926, 'F', 176), +(32070, 'Rosalyn', 1926, 'F', 176), +(32071, 'Dawn', 1926, 'F', 175), +(32072, 'Harriette', 1926, 'F', 175), +(32073, 'Filomena', 1926, 'F', 174), +(32074, 'Hortense', 1926, 'F', 174), +(32075, 'Petra', 1926, 'F', 174), +(32076, 'Freida', 1926, 'F', 172), +(32077, 'Sandra', 1926, 'F', 171), +(32078, 'Valerie', 1926, 'F', 171), +(32079, 'Belva', 1926, 'F', 170), +(32080, 'Laurel', 1926, 'F', 168), +(32081, 'Pearline', 1926, 'F', 168), +(32082, 'Adell', 1926, 'F', 167), +(32083, 'Francisca', 1926, 'F', 167), +(32084, 'Glenda', 1926, 'F', 167), +(32085, 'Vernell', 1926, 'F', 167), +(32086, 'Hellen', 1926, 'F', 166), +(32087, 'Janette', 1926, 'F', 166), +(32088, 'Stephanie', 1926, 'F', 166), +(32089, 'Veda', 1926, 'F', 166), +(32090, 'Nita', 1926, 'F', 165), +(32091, 'Kate', 1926, 'F', 164), +(32092, 'Louisa', 1926, 'F', 164), +(32093, 'Mayme', 1926, 'F', 164), +(32094, 'Myrtis', 1926, 'F', 164), +(32095, 'Vada', 1926, 'F', 164), +(32096, 'Alvina', 1926, 'F', 163), +(32097, 'Ava', 1926, 'F', 163), +(32098, 'Fanny', 1926, 'F', 163), +(32099, 'Lucinda', 1926, 'F', 163), +(32100, 'Margarette', 1926, 'F', 162), +(32101, 'Phoebe', 1926, 'F', 162), +(32102, 'Rhea', 1926, 'F', 162), +(32103, 'Rowena', 1926, 'F', 162), +(32104, 'Vesta', 1926, 'F', 162), +(32105, 'Doretha', 1926, 'F', 161), +(32106, 'Joseph', 1926, 'F', 161), +(32107, 'Arleen', 1926, 'F', 160), +(32108, 'Elise', 1926, 'F', 159), +(32109, 'Gwen', 1926, 'F', 159), +(32110, 'Justine', 1926, 'F', 159), +(32111, 'Socorro', 1926, 'F', 158), +(32112, 'Alva', 1926, 'F', 156), +(32113, 'Myrna', 1926, 'F', 156), +(32114, 'Vida', 1926, 'F', 156), +(32115, 'Rae', 1926, 'F', 155), +(32116, 'Lauretta', 1926, 'F', 154), +(32117, 'Lettie', 1926, 'F', 154), +(32118, 'Marilynn', 1926, 'F', 154), +(32119, 'Georgiana', 1926, 'F', 152), +(32120, 'Mozelle', 1926, 'F', 152), +(32121, 'Rosalee', 1926, 'F', 152), +(32122, 'Agatha', 1926, 'F', 150), +(32123, 'Idella', 1926, 'F', 150), +(32124, 'Dovie', 1926, 'F', 149), +(32125, 'Gertie', 1926, 'F', 148), +(32126, 'Billy', 1926, 'F', 147), +(32127, 'Oleta', 1926, 'F', 147), +(32128, 'Camille', 1926, 'F', 146), +(32129, 'Cecil', 1926, 'F', 146), +(32130, 'Janis', 1926, 'F', 146), +(32131, 'Lavon', 1926, 'F', 146), +(32132, 'Marylou', 1926, 'F', 146), +(32133, 'Una', 1926, 'F', 145), +(32134, 'Bobby', 1926, 'F', 144); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(32135, 'Terry', 1926, 'F', 144), +(32136, 'Gretchen', 1926, 'F', 143), +(32137, 'Lavern', 1926, 'F', 143), +(32138, 'Minerva', 1926, 'F', 143), +(32139, 'Mazie', 1926, 'F', 142), +(32140, 'Lura', 1926, 'F', 141), +(32141, 'Velda', 1926, 'F', 141), +(32142, 'Blanch', 1926, 'F', 140), +(32143, 'Leslie', 1926, 'F', 140), +(32144, 'Treva', 1926, 'F', 139), +(32145, 'Adrienne', 1926, 'F', 138), +(32146, 'Germaine', 1926, 'F', 138), +(32147, 'Marvel', 1926, 'F', 138), +(32148, 'Garnet', 1926, 'F', 137), +(32149, 'Jayne', 1926, 'F', 137), +(32150, 'Juliette', 1926, 'F', 137), +(32151, 'Magdalene', 1926, 'F', 137), +(32152, 'Elsa', 1926, 'F', 136), +(32153, 'Jeane', 1926, 'F', 136), +(32154, 'Ouida', 1926, 'F', 135), +(32155, 'Catharine', 1926, 'F', 134), +(32156, 'Celestine', 1926, 'F', 134), +(32157, 'Donald', 1926, 'F', 134), +(32158, 'Florene', 1926, 'F', 134), +(32159, 'Maryjane', 1926, 'F', 134), +(32160, 'Maybelle', 1926, 'F', 134), +(32161, 'Sonia', 1926, 'F', 134), +(32162, 'Angelita', 1926, 'F', 133), +(32163, 'Billye', 1926, 'F', 133), +(32164, 'Berta', 1926, 'F', 132), +(32165, 'Leonora', 1926, 'F', 132), +(32166, 'Roma', 1926, 'F', 132), +(32167, 'Carmel', 1926, 'F', 131), +(32168, 'Georgianna', 1926, 'F', 131), +(32169, 'Theodora', 1926, 'F', 131), +(32170, 'Myrtice', 1926, 'F', 130), +(32171, 'Ofelia', 1926, 'F', 130), +(32172, 'Ona', 1926, 'F', 130), +(32173, 'Sammie', 1926, 'F', 130), +(32174, 'Andrea', 1926, 'F', 129), +(32175, 'Ardith', 1926, 'F', 129), +(32176, 'Cassie', 1926, 'F', 129), +(32177, 'Katheryn', 1926, 'F', 129), +(32178, 'Nan', 1926, 'F', 129), +(32179, 'Floy', 1926, 'F', 128), +(32180, 'Eleanora', 1926, 'F', 127), +(32181, 'Kitty', 1926, 'F', 127), +(32182, 'Albertha', 1926, 'F', 126), +(32183, 'Dorcas', 1926, 'F', 126), +(32184, 'Odell', 1926, 'F', 126), +(32185, 'Tina', 1926, 'F', 126), +(32186, 'Yvette', 1926, 'F', 126), +(32187, 'Alpha', 1926, 'F', 125), +(32188, 'Eldora', 1926, 'F', 125), +(32189, 'Lue', 1926, 'F', 125), +(32190, 'Winnifred', 1926, 'F', 125), +(32191, 'Easter', 1926, 'F', 124), +(32192, 'Linnie', 1926, 'F', 124), +(32193, 'Noreen', 1926, 'F', 124), +(32194, 'Zola', 1926, 'F', 124), +(32195, 'Marlys', 1926, 'F', 123), +(32196, 'Artie', 1926, 'F', 122), +(32197, 'Ursula', 1926, 'F', 122), +(32198, 'Emilie', 1926, 'F', 121), +(32199, 'Ivy', 1926, 'F', 121), +(32200, 'Kathrine', 1926, 'F', 121), +(32201, 'Reta', 1926, 'F', 121), +(32202, 'Carolina', 1926, 'F', 120), +(32203, 'Mina', 1926, 'F', 120), +(32204, 'Ray', 1926, 'F', 120), +(32205, 'Richard', 1926, 'F', 120), +(32206, 'Emilia', 1926, 'F', 119), +(32207, 'Larue', 1926, 'F', 119), +(32208, 'Leone', 1926, 'F', 119), +(32209, 'Elisa', 1926, 'F', 118), +(32210, 'Maud', 1926, 'F', 118), +(32211, 'Novella', 1926, 'F', 118), +(32212, 'Belle', 1926, 'F', 117), +(32213, 'Diane', 1926, 'F', 117), +(32214, 'Era', 1926, 'F', 117), +(32215, 'Lona', 1926, 'F', 117), +(32216, 'Madonna', 1926, 'F', 117), +(32217, 'Vilma', 1926, 'F', 117), +(32218, 'Deborah', 1926, 'F', 116), +(32219, 'Elna', 1926, 'F', 116), +(32220, 'Marianna', 1926, 'F', 116), +(32221, 'Vergie', 1926, 'F', 116), +(32222, 'Donnie', 1926, 'F', 115), +(32223, 'Lulu', 1926, 'F', 115), +(32224, 'Orpha', 1926, 'F', 115), +(32225, 'Cathryn', 1926, 'F', 114), +(32226, 'Charline', 1926, 'F', 114), +(32227, 'Hettie', 1926, 'F', 114), +(32228, 'Sharon', 1926, 'F', 114), +(32229, 'Annabel', 1926, 'F', 113), +(32230, 'Celeste', 1926, 'F', 113), +(32231, 'Cordelia', 1926, 'F', 113), +(32232, 'Edward', 1926, 'F', 113), +(32233, 'Adela', 1926, 'F', 111), +(32234, 'Ethelyn', 1926, 'F', 111), +(32235, 'Thomas', 1926, 'F', 111), +(32236, 'Estell', 1926, 'F', 110), +(32237, 'Evalyn', 1926, 'F', 110), +(32238, 'Vincenza', 1926, 'F', 108), +(32239, 'Annetta', 1926, 'F', 107), +(32240, 'Antonette', 1926, 'F', 107), +(32241, 'Camilla', 1926, 'F', 107), +(32242, 'Greta', 1926, 'F', 107), +(32243, 'Lucretia', 1926, 'F', 107), +(32244, 'Annamae', 1926, 'F', 106), +(32245, 'Bella', 1926, 'F', 106), +(32246, 'Claudie', 1926, 'F', 106), +(32247, 'Clementine', 1926, 'F', 106), +(32248, 'Henry', 1926, 'F', 106), +(32249, 'Mittie', 1926, 'F', 106), +(32250, 'Abbie', 1926, 'F', 105), +(32251, 'Almeda', 1926, 'F', 105), +(32252, 'Daphne', 1926, 'F', 105), +(32253, 'Lovie', 1926, 'F', 105), +(32254, 'Marcelle', 1926, 'F', 105), +(32255, 'Melvina', 1926, 'F', 105), +(32256, 'Alda', 1926, 'F', 104), +(32257, 'Evelyne', 1926, 'F', 104), +(32258, 'Gearldine', 1926, 'F', 104), +(32259, 'Lavina', 1926, 'F', 104), +(32260, 'Norine', 1926, 'F', 104), +(32261, 'Roselyn', 1926, 'F', 104), +(32262, 'Rosina', 1926, 'F', 104), +(32263, 'Francine', 1926, 'F', 103), +(32264, 'Laverna', 1926, 'F', 102), +(32265, 'Carlene', 1926, 'F', 101), +(32266, 'Gerry', 1926, 'F', 101), +(32267, 'Golda', 1926, 'F', 101), +(32268, 'Adella', 1926, 'F', 100), +(32269, 'Albina', 1926, 'F', 100), +(32270, 'Eloisa', 1926, 'F', 100), +(32271, 'Ferne', 1926, 'F', 100), +(32272, 'Robert', 1926, 'M', 61118), +(32273, 'John', 1926, 'M', 56112), +(32274, 'James', 1926, 'M', 53208), +(32275, 'William', 1926, 'M', 51922), +(32276, 'Charles', 1926, 'M', 29520), +(32277, 'George', 1926, 'M', 25900), +(32278, 'Richard', 1926, 'M', 25147), +(32279, 'Joseph', 1926, 'M', 23765), +(32280, 'Donald', 1926, 'M', 20900), +(32281, 'Edward', 1926, 'M', 19380), +(32282, 'Thomas', 1926, 'M', 16602), +(32283, 'Frank', 1926, 'M', 14490), +(32284, 'Paul', 1926, 'M', 13654), +(32285, 'Harold', 1926, 'M', 13305), +(32286, 'Raymond', 1926, 'M', 12810), +(32287, 'Jack', 1926, 'M', 12204), +(32288, 'Walter', 1926, 'M', 11767), +(32289, 'Kenneth', 1926, 'M', 10338), +(32290, 'Henry', 1926, 'M', 9995), +(32291, 'Arthur', 1926, 'M', 9466), +(32292, 'Albert', 1926, 'M', 9146), +(32293, 'David', 1926, 'M', 9034), +(32294, 'Eugene', 1926, 'M', 9014), +(32295, 'Ralph', 1926, 'M', 8450), +(32296, 'Harry', 1926, 'M', 8208), +(32297, 'Carl', 1926, 'M', 6942), +(32298, 'Howard', 1926, 'M', 6839), +(32299, 'Willie', 1926, 'M', 6817), +(32300, 'Clarence', 1926, 'M', 6534), +(32301, 'Louis', 1926, 'M', 6513), +(32302, 'Fred', 1926, 'M', 6447), +(32303, 'Earl', 1926, 'M', 6443), +(32304, 'Joe', 1926, 'M', 6340), +(32305, 'Roy', 1926, 'M', 6229), +(32306, 'Francis', 1926, 'M', 5784), +(32307, 'Lawrence', 1926, 'M', 5586), +(32308, 'Ernest', 1926, 'M', 5444), +(32309, 'Leonard', 1926, 'M', 5401), +(32310, 'Norman', 1926, 'M', 5289), +(32311, 'Billy', 1926, 'M', 5185), +(32312, 'Gerald', 1926, 'M', 5121), +(32313, 'Anthony', 1926, 'M', 5058), +(32314, 'Stanley', 1926, 'M', 4963), +(32315, 'Herbert', 1926, 'M', 4939), +(32316, 'Alfred', 1926, 'M', 4732), +(32317, 'Daniel', 1926, 'M', 4515), +(32318, 'Melvin', 1926, 'M', 4195), +(32319, 'Samuel', 1926, 'M', 4182), +(32320, 'Bernard', 1926, 'M', 4174), +(32321, 'Marvin', 1926, 'M', 4112), +(32322, 'Leroy', 1926, 'M', 3805), +(32323, 'Russell', 1926, 'M', 3791), +(32324, 'Floyd', 1926, 'M', 3621), +(32325, 'Leo', 1926, 'M', 3553), +(32326, 'Edwin', 1926, 'M', 3493), +(32327, 'Michael', 1926, 'M', 3487), +(32328, 'Ray', 1926, 'M', 3408), +(32329, 'Peter', 1926, 'M', 3358), +(32330, 'Andrew', 1926, 'M', 3345), +(32331, 'Lloyd', 1926, 'M', 3279), +(32332, 'Elmer', 1926, 'M', 3230), +(32333, 'Clifford', 1926, 'M', 3190), +(32334, 'Theodore', 1926, 'M', 3130), +(32335, 'Frederick', 1926, 'M', 3118), +(32336, 'Calvin', 1926, 'M', 3014), +(32337, 'Vernon', 1926, 'M', 2950), +(32338, 'Clyde', 1926, 'M', 2875), +(32339, 'Wayne', 1926, 'M', 2810), +(32340, 'Herman', 1926, 'M', 2790), +(32341, 'Philip', 1926, 'M', 2703), +(32342, 'Warren', 1926, 'M', 2702), +(32343, 'Alvin', 1926, 'M', 2695), +(32344, 'Bill', 1926, 'M', 2642), +(32345, 'Leon', 1926, 'M', 2641), +(32346, 'Glenn', 1926, 'M', 2634), +(32347, 'Gordon', 1926, 'M', 2629), +(32348, 'Vincent', 1926, 'M', 2543), +(32349, 'Lester', 1926, 'M', 2535), +(32350, 'Chester', 1926, 'M', 2534), +(32351, 'Martin', 1926, 'M', 2496), +(32352, 'Lewis', 1926, 'M', 2445), +(32353, 'Charlie', 1926, 'M', 2444), +(32354, 'Milton', 1926, 'M', 2418), +(32355, 'Dale', 1926, 'M', 2400), +(32356, 'Lee', 1926, 'M', 2312), +(32357, 'Cecil', 1926, 'M', 2302), +(32358, 'Jesse', 1926, 'M', 2296), +(32359, 'Ronald', 1926, 'M', 2289), +(32360, 'Roger', 1926, 'M', 2260), +(32361, 'Harvey', 1926, 'M', 2130), +(32362, 'Gene', 1926, 'M', 2087), +(32363, 'Sam', 1926, 'M', 2034), +(32364, 'Allen', 1926, 'M', 2018), +(32365, 'Victor', 1926, 'M', 2015), +(32366, 'Wallace', 1926, 'M', 2010), +(32367, 'Don', 1926, 'M', 1960), +(32368, 'Jerry', 1926, 'M', 1930), +(32369, 'Benjamin', 1926, 'M', 1898), +(32370, 'Arnold', 1926, 'M', 1879), +(32371, 'Willard', 1926, 'M', 1810), +(32372, 'Gilbert', 1926, 'M', 1780), +(32373, 'Bob', 1926, 'M', 1779), +(32374, 'Douglas', 1926, 'M', 1779), +(32375, 'Johnnie', 1926, 'M', 1731), +(32376, 'Oscar', 1926, 'M', 1715), +(32377, 'Claude', 1926, 'M', 1713), +(32378, 'Roland', 1926, 'M', 1702), +(32379, 'Edgar', 1926, 'M', 1677), +(32380, 'Eddie', 1926, 'M', 1676), +(32381, 'Maurice', 1926, 'M', 1640), +(32382, 'Rudolph', 1926, 'M', 1638), +(32383, 'Marion', 1926, 'M', 1627), +(32384, 'Curtis', 1926, 'M', 1625), +(32385, 'Jerome', 1926, 'M', 1614), +(32386, 'Jimmie', 1926, 'M', 1610), +(32387, 'Bobby', 1926, 'M', 1597), +(32388, 'Junior', 1926, 'M', 1591), +(32389, 'Virgil', 1926, 'M', 1577), +(32390, 'Everett', 1926, 'M', 1568), +(32391, 'Manuel', 1926, 'M', 1549), +(32392, 'Glen', 1926, 'M', 1518), +(32393, 'Wilbur', 1926, 'M', 1509), +(32394, 'Homer', 1926, 'M', 1503), +(32395, 'Jessie', 1926, 'M', 1480), +(32396, 'Jose', 1926, 'M', 1473), +(32397, 'Leslie', 1926, 'M', 1467), +(32398, 'Bruce', 1926, 'M', 1412), +(32399, 'Hugh', 1926, 'M', 1392), +(32400, 'Sidney', 1926, 'M', 1349), +(32401, 'Stephen', 1926, 'M', 1335), +(32402, 'Hubert', 1926, 'M', 1323), +(32403, 'Wesley', 1926, 'M', 1321), +(32404, 'Nicholas', 1926, 'M', 1317), +(32405, 'Morris', 1926, 'M', 1307), +(32406, 'Luther', 1926, 'M', 1295), +(32407, 'Johnny', 1926, 'M', 1289), +(32408, 'Max', 1926, 'M', 1252), +(32409, 'Tom', 1926, 'M', 1249), +(32410, 'Dean', 1926, 'M', 1244), +(32411, 'Willis', 1926, 'M', 1234), +(32412, 'Patrick', 1926, 'M', 1223), +(32413, 'Franklin', 1926, 'M', 1202), +(32414, 'Jim', 1926, 'M', 1165), +(32415, 'Irving', 1926, 'M', 1161), +(32416, 'Billie', 1926, 'M', 1155), +(32417, 'Alexander', 1926, 'M', 1151), +(32418, 'Earnest', 1926, 'M', 1151), +(32419, 'Keith', 1926, 'M', 1120), +(32420, 'Horace', 1926, 'M', 1108), +(32421, 'Oliver', 1926, 'M', 1066), +(32422, 'Steve', 1926, 'M', 1056), +(32423, 'Lyle', 1926, 'M', 1052), +(32424, 'Julius', 1926, 'M', 1030), +(32425, 'Phillip', 1926, 'M', 1021), +(32426, 'Edmund', 1926, 'M', 1012), +(32427, 'Tony', 1926, 'M', 1011), +(32428, 'Ben', 1926, 'M', 1010), +(32429, 'Guy', 1926, 'M', 994), +(32430, 'Salvatore', 1926, 'M', 992), +(32431, 'Duane', 1926, 'M', 963), +(32432, 'Clayton', 1926, 'M', 956), +(32433, 'Archie', 1926, 'M', 921), +(32434, 'Delbert', 1926, 'M', 915), +(32435, 'Orville', 1926, 'M', 894), +(32436, 'Clifton', 1926, 'M', 885), +(32437, 'Jimmy', 1926, 'M', 884), +(32438, 'Dan', 1926, 'M', 881), +(32439, 'Otis', 1926, 'M', 875), +(32440, 'Bennie', 1926, 'M', 863), +(32441, 'Mike', 1926, 'M', 857), +(32442, 'Clinton', 1926, 'M', 842), +(32443, 'Angelo', 1926, 'M', 841), +(32444, 'Dennis', 1926, 'M', 839), +(32445, 'Alan', 1926, 'M', 836), +(32446, 'Jay', 1926, 'M', 827), +(32447, 'Nathaniel', 1926, 'M', 821), +(32448, 'Jacob', 1926, 'M', 810), +(32449, 'Larry', 1926, 'M', 806), +(32450, 'Alex', 1926, 'M', 804), +(32451, 'Merle', 1926, 'M', 786), +(32452, 'Ira', 1926, 'M', 784), +(32453, 'Allan', 1926, 'M', 780), +(32454, 'Wilbert', 1926, 'M', 779), +(32455, 'Alton', 1926, 'M', 778), +(32456, 'Leland', 1926, 'M', 776), +(32457, 'Matthew', 1926, 'M', 774), +(32458, 'Dewey', 1926, 'M', 767), +(32459, 'Ervin', 1926, 'M', 767), +(32460, 'Ivan', 1926, 'M', 765), +(32461, 'Marshall', 1926, 'M', 764), +(32462, 'Ted', 1926, 'M', 764), +(32463, 'Tommy', 1926, 'M', 751), +(32464, 'Carroll', 1926, 'M', 738), +(32465, 'Antonio', 1926, 'M', 731), +(32466, 'Lowell', 1926, 'M', 727), +(32467, 'Elbert', 1926, 'M', 716), +(32468, 'Jesus', 1926, 'M', 713), +(32469, 'Freddie', 1926, 'M', 709), +(32470, 'Mark', 1926, 'M', 705), +(32471, 'Julian', 1926, 'M', 703), +(32472, 'Sylvester', 1926, 'M', 687), +(32473, 'Nelson', 1926, 'M', 686), +(32474, 'Emil', 1926, 'M', 682), +(32475, 'Forrest', 1926, 'M', 679), +(32476, 'Irvin', 1926, 'M', 675), +(32477, 'Nathan', 1926, 'M', 669), +(32478, 'Seymour', 1926, 'M', 661), +(32479, 'Lonnie', 1926, 'M', 659), +(32480, 'Dick', 1926, 'M', 650), +(32481, 'Eldon', 1926, 'M', 647), +(32482, 'Juan', 1926, 'M', 647), +(32483, 'Wendell', 1926, 'M', 643), +(32484, 'Nick', 1926, 'M', 642), +(32485, 'Pete', 1926, 'M', 642), +(32486, 'Rufus', 1926, 'M', 642), +(32487, 'Wilfred', 1926, 'M', 642), +(32488, 'Malcolm', 1926, 'M', 629), +(32489, 'Fredrick', 1926, 'M', 626), +(32490, 'Loyd', 1926, 'M', 623), +(32491, 'Ramon', 1926, 'M', 615), +(32492, 'Laurence', 1926, 'M', 610), +(32493, 'Myron', 1926, 'M', 609), +(32494, 'Loren', 1926, 'M', 607), +(32495, 'Ellis', 1926, 'M', 606), +(32496, 'Neil', 1926, 'M', 600), +(32497, 'Karl', 1926, 'M', 595), +(32498, 'Aaron', 1926, 'M', 592), +(32499, 'Isaac', 1926, 'M', 587), +(32500, 'Gerard', 1926, 'M', 584), +(32501, 'Norbert', 1926, 'M', 581), +(32502, 'Darrell', 1926, 'M', 578), +(32503, 'Johnie', 1926, 'M', 577), +(32504, 'Grady', 1926, 'M', 576), +(32505, 'Murray', 1926, 'M', 571), +(32506, 'Perry', 1926, 'M', 564), +(32507, 'Felix', 1926, 'M', 561), +(32508, 'Burton', 1926, 'M', 558), +(32509, 'Owen', 1926, 'M', 555), +(32510, 'Rex', 1926, 'M', 551), +(32511, 'Elwood', 1926, 'M', 543), +(32512, 'Emmett', 1926, 'M', 539), +(32513, 'Mack', 1926, 'M', 534), +(32514, 'Byron', 1926, 'M', 533), +(32515, 'Ross', 1926, 'M', 531), +(32516, 'Grover', 1926, 'M', 528), +(32517, 'Troy', 1926, 'M', 521), +(32518, 'Bert', 1926, 'M', 518), +(32519, 'Mario', 1926, 'M', 517), +(32520, 'Carlos', 1926, 'M', 497), +(32521, 'Aubrey', 1926, 'M', 496), +(32522, 'Doyle', 1926, 'M', 495), +(32523, 'Harley', 1926, 'M', 493), +(32524, 'Percy', 1926, 'M', 493), +(32525, 'Otto', 1926, 'M', 485), +(32526, 'Carlton', 1926, 'M', 483), +(32527, 'Rodney', 1926, 'M', 482), +(32528, 'Reginald', 1926, 'M', 474), +(32529, 'Sherman', 1926, 'M', 473), +(32530, 'Roosevelt', 1926, 'M', 471), +(32531, 'Dwight', 1926, 'M', 468), +(32532, 'Dominick', 1926, 'M', 467), +(32533, 'Tommie', 1926, 'M', 465), +(32534, 'Irwin', 1926, 'M', 464), +(32535, 'Dominic', 1926, 'M', 463), +(32536, 'Wilson', 1926, 'M', 463), +(32537, 'Erwin', 1926, 'M', 462), +(32538, 'August', 1926, 'M', 459), +(32539, 'Amos', 1926, 'M', 454), +(32540, 'Morton', 1926, 'M', 442), +(32541, 'Ruben', 1926, 'M', 440), +(32542, 'Bobbie', 1926, 'M', 437), +(32543, 'Francisco', 1926, 'M', 435), +(32544, 'Boyd', 1926, 'M', 433), +(32545, 'Austin', 1926, 'M', 430), +(32546, 'Dallas', 1926, 'M', 427), +(32547, 'Abraham', 1926, 'M', 426), +(32548, 'Adam', 1926, 'M', 425), +(32549, 'Louie', 1926, 'M', 424), +(32550, 'Neal', 1926, 'M', 417), +(32551, 'Preston', 1926, 'M', 415), +(32552, 'Garland', 1926, 'M', 413), +(32553, 'Harlan', 1926, 'M', 407), +(32554, 'Roscoe', 1926, 'M', 405), +(32555, 'Pedro', 1926, 'M', 404), +(32556, 'Adolph', 1926, 'M', 403), +(32557, 'Benny', 1926, 'M', 400), +(32558, 'Laverne', 1926, 'M', 399), +(32559, 'Charley', 1926, 'M', 398), +(32560, 'Conrad', 1926, 'M', 396), +(32561, 'Jasper', 1926, 'M', 390), +(32562, 'Joel', 1926, 'M', 379), +(32563, 'Edmond', 1926, 'M', 377), +(32564, 'Millard', 1926, 'M', 376), +(32565, 'Lynn', 1926, 'M', 369), +(32566, 'Cornelius', 1926, 'M', 368), +(32567, 'Reuben', 1926, 'M', 368), +(32568, 'Merlin', 1926, 'M', 367), +(32569, 'Rudy', 1926, 'M', 367), +(32570, 'Stuart', 1926, 'M', 367), +(32571, 'Jackie', 1926, 'M', 361), +(32572, 'Dave', 1926, 'M', 353), +(32573, 'Elvin', 1926, 'M', 353), +(32574, 'Sheldon', 1926, 'M', 352), +(32575, 'Steven', 1926, 'M', 349), +(32576, 'Mitchell', 1926, 'M', 344), +(32577, 'Wade', 1926, 'M', 343), +(32578, 'Moses', 1926, 'M', 339), +(32579, 'Clair', 1926, 'M', 338), +(32580, 'Maynard', 1926, 'M', 336), +(32581, 'Grant', 1926, 'M', 334), +(32582, 'Will', 1926, 'M', 333), +(32583, 'Russel', 1926, 'M', 329), +(32584, 'Alfonso', 1926, 'M', 326), +(32585, 'Cleveland', 1926, 'M', 326), +(32586, 'Elton', 1926, 'M', 324), +(32587, 'Carmen', 1926, 'M', 323), +(32588, 'Monroe', 1926, 'M', 320), +(32589, 'Wilburn', 1926, 'M', 316), +(32590, 'Luis', 1926, 'M', 315), +(32591, 'Ollie', 1926, 'M', 315), +(32592, 'Delmar', 1926, 'M', 314), +(32593, 'Teddy', 1926, 'M', 312), +(32594, 'Wilmer', 1926, 'M', 312), +(32595, 'Kermit', 1926, 'M', 311), +(32596, 'Weldon', 1926, 'M', 311), +(32597, 'Marcus', 1926, 'M', 310), +(32598, 'Rocco', 1926, 'M', 309), +(32599, 'Woodrow', 1926, 'M', 307), +(32600, 'Raul', 1926, 'M', 306), +(32601, 'Merrill', 1926, 'M', 305), +(32602, 'Thurman', 1926, 'M', 304), +(32603, 'Emanuel', 1926, 'M', 303), +(32604, 'Vito', 1926, 'M', 303), +(32605, 'Harrison', 1926, 'M', 302), +(32606, 'Alonzo', 1926, 'M', 298), +(32607, 'Jean', 1926, 'M', 298), +(32608, 'Pat', 1926, 'M', 297), +(32609, 'Gus', 1926, 'M', 295), +(32610, 'Lionel', 1926, 'M', 295), +(32611, 'Ned', 1926, 'M', 294), +(32612, 'Ed', 1926, 'M', 288), +(32613, 'Simon', 1926, 'M', 286), +(32614, 'Randolph', 1926, 'M', 281), +(32615, 'Sammie', 1926, 'M', 281), +(32616, 'Cleo', 1926, 'M', 280), +(32617, 'Adrian', 1926, 'M', 279), +(32618, 'Clement', 1926, 'M', 278), +(32619, 'Wilford', 1926, 'M', 276), +(32620, 'Elijah', 1926, 'M', 275), +(32621, 'Hollis', 1926, 'M', 275), +(32622, 'Timothy', 1926, 'M', 274), +(32623, 'Mary', 1926, 'M', 272), +(32624, 'Christopher', 1926, 'M', 270), +(32625, 'Sanford', 1926, 'M', 270), +(32626, 'Salvador', 1926, 'M', 268), +(32627, 'Stewart', 1926, 'M', 268), +(32628, 'Eli', 1926, 'M', 266), +(32629, 'Buford', 1926, 'M', 265), +(32630, 'Cyril', 1926, 'M', 265), +(32631, 'Jake', 1926, 'M', 265), +(32632, 'Clark', 1926, 'M', 264), +(32633, 'Coy', 1926, 'M', 264), +(32634, 'Patsy', 1926, 'M', 263), +(32635, 'Alva', 1926, 'M', 259), +(32636, 'Wiley', 1926, 'M', 258), +(32637, 'Claud', 1926, 'M', 253), +(32638, 'Odell', 1926, 'M', 252), +(32639, 'Levi', 1926, 'M', 251), +(32640, 'Roberto', 1926, 'M', 248), +(32641, 'Armand', 1926, 'M', 247), +(32642, 'Sterling', 1926, 'M', 246), +(32643, 'Lavern', 1926, 'M', 245), +(32644, 'Andy', 1926, 'M', 244), +(32645, 'Miles', 1926, 'M', 244), +(32646, 'Gregory', 1926, 'M', 243), +(32647, 'Royce', 1926, 'M', 243), +(32648, 'Elmo', 1926, 'M', 242), +(32649, 'Jess', 1926, 'M', 239), +(32650, 'Dudley', 1926, 'M', 237), +(32651, 'Earle', 1926, 'M', 237), +(32652, 'Marlin', 1926, 'M', 236), +(32653, 'Forest', 1926, 'M', 235), +(32654, 'Noah', 1926, 'M', 235), +(32655, 'Thaddeus', 1926, 'M', 235), +(32656, 'Basil', 1926, 'M', 232), +(32657, 'Jackson', 1926, 'M', 231), +(32658, 'Randall', 1926, 'M', 231), +(32659, 'Lorenzo', 1926, 'M', 230), +(32660, 'Norris', 1926, 'M', 230), +(32661, 'Orval', 1926, 'M', 230), +(32662, 'Winston', 1926, 'M', 230), +(32663, 'Buddy', 1926, 'M', 226), +(32664, 'Mervin', 1926, 'M', 226), +(32665, 'Rolland', 1926, 'M', 226), +(32666, 'Danny', 1926, 'M', 224), +(32667, 'Emery', 1926, 'M', 224), +(32668, 'Emory', 1926, 'M', 224), +(32669, 'Roman', 1926, 'M', 223), +(32670, 'Alphonse', 1926, 'M', 221), +(32671, 'Truman', 1926, 'M', 221), +(32672, 'Vern', 1926, 'M', 221), +(32673, 'Van', 1926, 'M', 220), +(32674, 'Ward', 1926, 'M', 220), +(32675, 'Guadalupe', 1926, 'M', 219), +(32676, 'Lamar', 1926, 'M', 219), +(32677, 'Travis', 1926, 'M', 217), +(32678, 'Darrel', 1926, 'M', 216), +(32679, 'Hershel', 1926, 'M', 215), +(32680, 'Solomon', 1926, 'M', 215), +(32681, 'Barney', 1926, 'M', 214), +(32682, 'Eric', 1926, 'M', 214), +(32683, 'Pasquale', 1926, 'M', 214), +(32684, 'Shirley', 1926, 'M', 214), +(32685, 'Harris', 1926, 'M', 213), +(32686, 'Alfredo', 1926, 'M', 212), +(32687, 'Milford', 1926, 'M', 212), +(32688, 'Silas', 1926, 'M', 211), +(32689, 'Elliott', 1926, 'M', 210), +(32690, 'Bruno', 1926, 'M', 209), +(32691, 'Herschel', 1926, 'M', 208), +(32692, 'Elias', 1926, 'M', 207), +(32693, 'Freeman', 1926, 'M', 204), +(32694, 'Noel', 1926, 'M', 204), +(32695, 'Armando', 1926, 'M', 203), +(32696, 'Darwin', 1926, 'M', 202), +(32697, 'Sammy', 1926, 'M', 202), +(32698, 'Winfred', 1926, 'M', 202), +(32699, 'Gabriel', 1926, 'M', 201), +(32700, 'Cletus', 1926, 'M', 200), +(32701, 'Pablo', 1926, 'M', 200), +(32702, 'Carmine', 1926, 'M', 197), +(32703, 'Ellsworth', 1926, 'M', 197), +(32704, 'Rene', 1926, 'M', 197), +(32705, 'Miguel', 1926, 'M', 195), +(32706, 'Hiram', 1926, 'M', 194), +(32707, 'Gale', 1926, 'M', 193), +(32708, 'Anton', 1926, 'M', 192), +(32709, 'Normand', 1926, 'M', 191), +(32710, 'Gail', 1926, 'M', 189), +(32711, 'Saul', 1926, 'M', 189), +(32712, 'Bud', 1926, 'M', 187), +(32713, 'Emerson', 1926, 'M', 187), +(32714, 'Everette', 1926, 'M', 187), +(32715, 'Delmer', 1926, 'M', 186), +(32716, 'Lenard', 1926, 'M', 186), +(32717, 'Scott', 1926, 'M', 186), +(32718, 'Hal', 1926, 'M', 185), +(32719, 'Lyman', 1926, 'M', 185), +(32720, 'Odis', 1926, 'M', 185), +(32721, 'Alden', 1926, 'M', 183), +(32722, 'Rodolfo', 1926, 'M', 182), +(32723, 'Royal', 1926, 'M', 180), +(32724, 'Riley', 1926, 'M', 179), +(32725, 'Spencer', 1926, 'M', 176), +(32726, 'Linwood', 1926, 'M', 175), +(32727, 'Bertram', 1926, 'M', 174), +(32728, 'Edsel', 1926, 'M', 174), +(32729, 'Roderick', 1926, 'M', 174), +(32730, 'Ulysses', 1926, 'M', 173), +(32731, 'Vance', 1926, 'M', 172), +(32732, 'Frederic', 1926, 'M', 170), +(32733, 'Carol', 1926, 'M', 169), +(32734, 'Nolan', 1926, 'M', 168), +(32735, 'Chris', 1926, 'M', 167), +(32736, 'Mathew', 1926, 'M', 167), +(32737, 'Foster', 1926, 'M', 166), +(32738, 'Rafael', 1926, 'M', 166), +(32739, 'Sol', 1926, 'M', 166), +(32740, 'Omer', 1926, 'M', 165), +(32741, 'Terry', 1926, 'M', 165), +(32742, 'Booker', 1926, 'M', 164), +(32743, 'Denver', 1926, 'M', 161), +(32744, 'Luke', 1926, 'M', 161), +(32745, 'Wilton', 1926, 'M', 161), +(32746, 'Ferdinand', 1926, 'M', 160), +(32747, 'Hugo', 1926, 'M', 159), +(32748, 'Jeff', 1926, 'M', 159), +(32749, 'Alberto', 1926, 'M', 158), +(32750, 'Enrique', 1926, 'M', 158), +(32751, 'Frankie', 1926, 'M', 157), +(32752, 'Houston', 1926, 'M', 157), +(32753, 'Morgan', 1926, 'M', 156), +(32754, 'Ambrose', 1926, 'M', 155), +(32755, 'Augustine', 1926, 'M', 155), +(32756, 'Phil', 1926, 'M', 155), +(32757, 'Hoyt', 1926, 'M', 154), +(32758, 'Burl', 1926, 'M', 152), +(32759, 'Olen', 1926, 'M', 152), +(32760, 'Felipe', 1926, 'M', 151), +(32761, 'Noble', 1926, 'M', 151), +(32762, 'Jewel', 1926, 'M', 149), +(32763, 'Orlando', 1926, 'M', 149), +(32764, 'Tomas', 1926, 'M', 149), +(32765, 'Buster', 1926, 'M', 148), +(32766, 'Columbus', 1926, 'M', 148), +(32767, 'Al', 1926, 'M', 147), +(32768, 'Arturo', 1926, 'M', 147), +(32769, 'Fletcher', 1926, 'M', 147), +(32770, 'Major', 1926, 'M', 147), +(32771, 'Blaine', 1926, 'M', 146), +(32772, 'Dalton', 1926, 'M', 145), +(32773, 'Elwin', 1926, 'M', 145), +(32774, 'Hector', 1926, 'M', 145), +(32775, 'Newton', 1926, 'M', 145), +(32776, 'Raymon', 1926, 'M', 145), +(32777, 'Verne', 1926, 'M', 145), +(32778, 'Lincoln', 1926, 'M', 144), +(32779, 'Reed', 1926, 'M', 144), +(32780, 'Anderson', 1926, 'M', 142), +(32781, 'Jefferson', 1926, 'M', 142), +(32782, 'Lucien', 1926, 'M', 142), +(32783, 'Wilber', 1926, 'M', 140), +(32784, 'Bryan', 1926, 'M', 139), +(32785, 'Ezra', 1926, 'M', 139), +(32786, 'Carlo', 1926, 'M', 138), +(32787, 'Elroy', 1926, 'M', 138), +(32788, 'Ernesto', 1926, 'M', 138), +(32789, 'Augustus', 1926, 'M', 137), +(32790, 'Fernando', 1926, 'M', 136), +(32791, 'Abe', 1926, 'M', 135), +(32792, 'Harmon', 1926, 'M', 134), +(32793, 'Joesph', 1926, 'M', 134), +(32794, 'Julio', 1926, 'M', 134), +(32795, 'Ignacio', 1926, 'M', 133), +(32796, 'Nickolas', 1926, 'M', 133), +(32797, 'Arlie', 1926, 'M', 132), +(32798, 'Waldo', 1926, 'M', 132), +(32799, 'Clay', 1926, 'M', 131), +(32800, 'Emile', 1926, 'M', 131), +(32801, 'Gaylord', 1926, 'M', 131), +(32802, 'Milo', 1926, 'M', 131), +(32803, 'Sebastian', 1926, 'M', 131), +(32804, 'Coleman', 1926, 'M', 130), +(32805, 'Cyrus', 1926, 'M', 130), +(32806, 'Emilio', 1926, 'M', 130), +(32807, 'Junius', 1926, 'M', 130), +(32808, 'Angel', 1926, 'M', 129), +(32809, 'Isiah', 1926, 'M', 129), +(32810, 'Evan', 1926, 'M', 127), +(32811, 'Micheal', 1926, 'M', 127), +(32812, 'Daryl', 1926, 'M', 126), +(32813, 'Olin', 1926, 'M', 126), +(32814, 'Isaiah', 1926, 'M', 125), +(32815, 'Justin', 1926, 'M', 125), +(32816, 'Talmadge', 1926, 'M', 125), +(32817, 'Jerald', 1926, 'M', 124), +(32818, 'Otha', 1926, 'M', 124), +(32819, 'Carrol', 1926, 'M', 123), +(32820, 'Kelly', 1926, 'M', 123), +(32821, 'Kent', 1926, 'M', 123), +(32822, 'Mckinley', 1926, 'M', 123), +(32823, 'Ora', 1926, 'M', 123), +(32824, 'Davis', 1926, 'M', 122), +(32825, 'Domingo', 1926, 'M', 122), +(32826, 'Jules', 1926, 'M', 122), +(32827, 'Lemuel', 1926, 'M', 122), +(32828, 'Mason', 1926, 'M', 122), +(32829, 'Napoleon', 1926, 'M', 122), +(32830, 'Beverly', 1926, 'M', 121), +(32831, 'Dewitt', 1926, 'M', 121), +(32832, 'Marcel', 1926, 'M', 121), +(32833, 'Shelby', 1926, 'M', 120), +(32834, 'Aloysius', 1926, 'M', 119), +(32835, 'Dorothy', 1926, 'M', 119), +(32836, 'Hilton', 1926, 'M', 119), +(32837, 'Hyman', 1926, 'M', 119), +(32838, 'Palmer', 1926, 'M', 119), +(32839, 'Bennett', 1926, 'M', 118), +(32840, 'Rollin', 1926, 'M', 118), +(32841, 'Lucius', 1926, 'M', 117), +(32842, 'Theron', 1926, 'M', 117), +(32843, 'Hobert', 1926, 'M', 116), +(32844, 'Benedict', 1926, 'M', 115), +(32845, 'Gilberto', 1926, 'M', 115), +(32846, 'Jeremiah', 1926, 'M', 115), +(32847, 'Merton', 1926, 'M', 115), +(32848, 'Valentine', 1926, 'M', 115), +(32849, 'Vaughn', 1926, 'M', 115), +(32850, 'Aldo', 1926, 'M', 114), +(32851, 'Alphonso', 1926, 'M', 114), +(32852, 'Casimir', 1926, 'M', 114), +(32853, 'Dana', 1926, 'M', 114), +(32854, 'Eldridge', 1926, 'M', 114), +(32855, 'Frances', 1926, 'M', 114), +(32856, 'Albin', 1926, 'M', 113), +(32857, 'Carson', 1926, 'M', 113), +(32858, 'Christian', 1926, 'M', 113), +(32859, 'Domenic', 1926, 'M', 113), +(32860, 'Elden', 1926, 'M', 113), +(32861, 'Jennings', 1926, 'M', 113), +(32862, 'Judson', 1926, 'M', 113), +(32863, 'King', 1926, 'M', 113), +(32864, 'Rogers', 1926, 'M', 113), +(32865, 'Sydney', 1926, 'M', 113), +(32866, 'Oren', 1926, 'M', 112), +(32867, 'Rubin', 1926, 'M', 112), +(32868, 'Arther', 1926, 'M', 111), +(32869, 'Fay', 1926, 'M', 111), +(32870, 'Harland', 1926, 'M', 111), +(32871, 'Zane', 1926, 'M', 111), +(32872, 'Clarance', 1926, 'M', 110), +(32873, 'Ernie', 1926, 'M', 110), +(32874, 'Rosario', 1926, 'M', 110), +(32875, 'Sherwood', 1926, 'M', 109), +(32876, 'Doris', 1926, 'M', 107), +(32877, 'Guillermo', 1926, 'M', 107), +(32878, 'Milan', 1926, 'M', 107), +(32879, 'Granville', 1926, 'M', 106), +(32880, 'Jonathan', 1926, 'M', 106), +(32881, 'Lacy', 1926, 'M', 106), +(32882, 'Walton', 1926, 'M', 106), +(32883, 'Bernie', 1926, 'M', 105), +(32884, 'Gary', 1926, 'M', 105), +(32885, 'Mose', 1926, 'M', 105), +(32886, 'Asa', 1926, 'M', 104), +(32887, 'Joshua', 1926, 'M', 104), +(32888, 'Quentin', 1926, 'M', 104), +(32889, 'Theo', 1926, 'M', 104), +(32890, 'Galen', 1926, 'M', 103), +(32891, 'Isadore', 1926, 'M', 102), +(32892, 'Warner', 1926, 'M', 102), +(32893, 'Abel', 1926, 'M', 101), +(32894, 'Florian', 1926, 'M', 101), +(32895, 'Graham', 1926, 'M', 101), +(32896, 'Haywood', 1926, 'M', 101), +(32897, 'Jason', 1926, 'M', 101), +(32898, 'Raleigh', 1926, 'M', 101), +(32899, 'Arden', 1926, 'M', 100), +(32900, 'Edd', 1926, 'M', 100), +(32901, 'Stanford', 1926, 'M', 100), +(32902, 'Mary', 1927, 'F', 70632), +(32903, 'Dorothy', 1927, 'F', 35982), +(32904, 'Betty', 1927, 'F', 35419), +(32905, 'Helen', 1927, 'F', 25313), +(32906, 'Margaret', 1927, 'F', 21961), +(32907, 'Ruth', 1927, 'F', 19413), +(32908, 'Doris', 1927, 'F', 16514), +(32909, 'Virginia', 1927, 'F', 15723), +(32910, 'Shirley', 1927, 'F', 13314), +(32911, 'Barbara', 1927, 'F', 13163), +(32912, 'Mildred', 1927, 'F', 13053), +(32913, 'Frances', 1927, 'F', 12988), +(32914, 'Elizabeth', 1927, 'F', 12528), +(32915, 'Jean', 1927, 'F', 12506), +(32916, 'Evelyn', 1927, 'F', 11496), +(32917, 'Anna', 1927, 'F', 11212), +(32918, 'Alice', 1927, 'F', 10677), +(32919, 'Patricia', 1927, 'F', 10555), +(32920, 'Lois', 1927, 'F', 10503), +(32921, 'Marie', 1927, 'F', 10314), +(32922, 'Irene', 1927, 'F', 8608), +(32923, 'Gloria', 1927, 'F', 8532), +(32924, 'Rose', 1927, 'F', 8493), +(32925, 'Martha', 1927, 'F', 8305), +(32926, 'Marjorie', 1927, 'F', 8115), +(32927, 'Norma', 1927, 'F', 7995), +(32928, 'Louise', 1927, 'F', 7699), +(32929, 'Florence', 1927, 'F', 7644), +(32930, 'Phyllis', 1927, 'F', 7423), +(32931, 'Ruby', 1927, 'F', 7259), +(32932, 'Catherine', 1927, 'F', 7257), +(32933, 'Lillian', 1927, 'F', 7187), +(32934, 'Eleanor', 1927, 'F', 6960), +(32935, 'Dolores', 1927, 'F', 6771), +(32936, 'Joyce', 1927, 'F', 6680), +(32937, 'Annie', 1927, 'F', 6564), +(32938, 'Gladys', 1927, 'F', 6415), +(32939, 'Thelma', 1927, 'F', 6307), +(32940, 'Josephine', 1927, 'F', 6110), +(32941, 'Edna', 1927, 'F', 6082), +(32942, 'Joan', 1927, 'F', 6032), +(32943, 'Pauline', 1927, 'F', 6009), +(32944, 'June', 1927, 'F', 5735), +(32945, 'Lorraine', 1927, 'F', 5729), +(32946, 'Lucille', 1927, 'F', 5635), +(32947, 'Marilyn', 1927, 'F', 5554), +(32948, 'Ethel', 1927, 'F', 5484), +(32949, 'Edith', 1927, 'F', 5405), +(32950, 'Bernice', 1927, 'F', 5307), +(32951, 'Grace', 1927, 'F', 5300), +(32952, 'Marion', 1927, 'F', 5209), +(32953, 'Theresa', 1927, 'F', 5128), +(32954, 'Hazel', 1927, 'F', 5093), +(32955, 'Rita', 1927, 'F', 5083), +(32956, 'Juanita', 1927, 'F', 5073), +(32957, 'Nancy', 1927, 'F', 5023), +(32958, 'Beverly', 1927, 'F', 4932), +(32959, 'Geraldine', 1927, 'F', 4932), +(32960, 'Ann', 1927, 'F', 4785), +(32961, 'Jane', 1927, 'F', 4699), +(32962, 'Sarah', 1927, 'F', 4560), +(32963, 'Audrey', 1927, 'F', 4375), +(32964, 'Clara', 1927, 'F', 4366), +(32965, 'Emma', 1927, 'F', 4326), +(32966, 'Esther', 1927, 'F', 4325), +(32967, 'Wanda', 1927, 'F', 4303), +(32968, 'Beatrice', 1927, 'F', 4238), +(32969, 'Wilma', 1927, 'F', 4153), +(32970, 'Elaine', 1927, 'F', 4107), +(32971, 'Donna', 1927, 'F', 3991), +(32972, 'Willie', 1927, 'F', 3882), +(32973, 'Elsie', 1927, 'F', 3802), +(32974, 'Katherine', 1927, 'F', 3723), +(32975, 'Marian', 1927, 'F', 3719), +(32976, 'Charlotte', 1927, 'F', 3677), +(32977, 'Julia', 1927, 'F', 3589), +(32978, 'Vivian', 1927, 'F', 3508), +(32979, 'Gertrude', 1927, 'F', 3504), +(32980, 'Eva', 1927, 'F', 3406), +(32981, 'Bertha', 1927, 'F', 3379), +(32982, 'Laura', 1927, 'F', 3340), +(32983, 'Agnes', 1927, 'F', 3338), +(32984, 'Kathleen', 1927, 'F', 3264), +(32985, 'Ida', 1927, 'F', 3204), +(32986, 'Jeanne', 1927, 'F', 3160), +(32987, 'Rosemary', 1927, 'F', 3153), +(32988, 'Maxine', 1927, 'F', 3089), +(32989, 'Bessie', 1927, 'F', 2976), +(32990, 'Vera', 1927, 'F', 2937), +(32991, 'Kathryn', 1927, 'F', 2934), +(32992, 'Anne', 1927, 'F', 2929), +(32993, 'Eileen', 1927, 'F', 2929), +(32994, 'Ellen', 1927, 'F', 2868), +(32995, 'Lillie', 1927, 'F', 2863), +(32996, 'Jessie', 1927, 'F', 2858), +(32997, 'Peggy', 1927, 'F', 2858), +(32998, 'Alma', 1927, 'F', 2845), +(32999, 'Ella', 1927, 'F', 2842), +(33000, 'Carolyn', 1927, 'F', 2805), +(33001, 'Bonnie', 1927, 'F', 2795), +(33002, 'Viola', 1927, 'F', 2769), +(33003, 'Pearl', 1927, 'F', 2717), +(33004, 'Violet', 1927, 'F', 2696), +(33005, 'Nellie', 1927, 'F', 2678), +(33006, 'Margie', 1927, 'F', 2677), +(33007, 'Carol', 1927, 'F', 2644), +(33008, 'Maria', 1927, 'F', 2592), +(33009, 'Arlene', 1927, 'F', 2561), +(33010, 'Billie', 1927, 'F', 2551), +(33011, 'Myrtle', 1927, 'F', 2551), +(33012, 'Lucy', 1927, 'F', 2543), +(33013, 'Janet', 1927, 'F', 2542), +(33014, 'Mattie', 1927, 'F', 2497), +(33015, 'Minnie', 1927, 'F', 2467), +(33016, 'Jacqueline', 1927, 'F', 2445), +(33017, 'Christine', 1927, 'F', 2347), +(33018, 'Sylvia', 1927, 'F', 2347), +(33019, 'Velma', 1927, 'F', 2288), +(33020, 'Geneva', 1927, 'F', 2266), +(33021, 'Georgia', 1927, 'F', 2254), +(33022, 'Leona', 1927, 'F', 2242), +(33023, 'Roberta', 1927, 'F', 2231), +(33024, 'Stella', 1927, 'F', 2113), +(33025, 'Rosa', 1927, 'F', 2111), +(33026, 'Mae', 1927, 'F', 2073), +(33027, 'Genevieve', 1927, 'F', 2033), +(33028, 'Loretta', 1927, 'F', 2019), +(33029, 'Delores', 1927, 'F', 2014), +(33030, 'Sara', 1927, 'F', 1995), +(33031, 'Lena', 1927, 'F', 1984), +(33032, 'Jeanette', 1927, 'F', 1971), +(33033, 'Harriet', 1927, 'F', 1964), +(33034, 'Mabel', 1927, 'F', 1955), +(33035, 'Eunice', 1927, 'F', 1947), +(33036, 'Jennie', 1927, 'F', 1849), +(33037, 'Claire', 1927, 'F', 1838), +(33038, 'Naomi', 1927, 'F', 1821), +(33039, 'Muriel', 1927, 'F', 1808), +(33040, 'Carrie', 1927, 'F', 1788), +(33041, 'Dora', 1927, 'F', 1788), +(33042, 'Opal', 1927, 'F', 1739), +(33043, 'Alberta', 1927, 'F', 1706), +(33044, 'Marguerite', 1927, 'F', 1694), +(33045, 'Hilda', 1927, 'F', 1669), +(33046, 'Beulah', 1927, 'F', 1658), +(33047, 'Emily', 1927, 'F', 1656), +(33048, 'Sally', 1927, 'F', 1630), +(33049, 'Anita', 1927, 'F', 1629), +(33050, 'Inez', 1927, 'F', 1590), +(33051, 'Lula', 1927, 'F', 1585), +(33052, 'Blanche', 1927, 'F', 1568), +(33053, 'Rosie', 1927, 'F', 1560), +(33054, 'Verna', 1927, 'F', 1534), +(33055, 'Lola', 1927, 'F', 1531), +(33056, 'Constance', 1927, 'F', 1521), +(33057, 'Hattie', 1927, 'F', 1508), +(33058, 'Imogene', 1927, 'F', 1494), +(33059, 'Cora', 1927, 'F', 1492), +(33060, 'Janice', 1927, 'F', 1468), +(33061, 'Fannie', 1927, 'F', 1448), +(33062, 'Erma', 1927, 'F', 1380), +(33063, 'Miriam', 1927, 'F', 1378), +(33064, 'Madeline', 1927, 'F', 1374), +(33065, 'Mamie', 1927, 'F', 1353), +(33066, 'Ada', 1927, 'F', 1345), +(33067, 'Laverne', 1927, 'F', 1332), +(33068, 'Flora', 1927, 'F', 1302), +(33069, 'Patsy', 1927, 'F', 1302), +(33070, 'Rachel', 1927, 'F', 1285), +(33071, 'Rebecca', 1927, 'F', 1260), +(33072, 'Mable', 1927, 'F', 1247), +(33073, 'Daisy', 1927, 'F', 1242), +(33074, 'Estelle', 1927, 'F', 1238), +(33075, 'Teresa', 1927, 'F', 1210), +(33076, 'Bette', 1927, 'F', 1191), +(33077, 'Eula', 1927, 'F', 1188), +(33078, 'Rosalie', 1927, 'F', 1176), +(33079, 'Irma', 1927, 'F', 1169), +(33080, 'Caroline', 1927, 'F', 1168), +(33081, 'Eloise', 1927, 'F', 1162), +(33082, 'Joanne', 1927, 'F', 1157), +(33083, 'Marcella', 1927, 'F', 1153), +(33084, 'Joy', 1927, 'F', 1127), +(33085, 'Susie', 1927, 'F', 1112), +(33086, 'Darlene', 1927, 'F', 1109), +(33087, 'Olga', 1927, 'F', 1101), +(33088, 'Faye', 1927, 'F', 1092), +(33089, 'Maggie', 1927, 'F', 1089), +(33090, 'Nora', 1927, 'F', 1079), +(33091, 'Bettie', 1927, 'F', 1073), +(33092, 'Johnnie', 1927, 'F', 1067), +(33093, 'Colleen', 1927, 'F', 1063), +(33094, 'Lila', 1927, 'F', 1061), +(33095, 'Bobbie', 1927, 'F', 1059), +(33096, 'Nina', 1927, 'F', 1059), +(33097, 'Antoinette', 1927, 'F', 1032), +(33098, 'Ernestine', 1927, 'F', 1025), +(33099, 'Iris', 1927, 'F', 1022), +(33100, 'Carmen', 1927, 'F', 1020), +(33101, 'Winifred', 1927, 'F', 1014), +(33102, 'Yvonne', 1927, 'F', 1014), +(33103, 'Lorene', 1927, 'F', 994), +(33104, 'Jo', 1927, 'F', 973), +(33105, 'Regina', 1927, 'F', 960), +(33106, 'Gwendolyn', 1927, 'F', 959), +(33107, 'Victoria', 1927, 'F', 959), +(33108, 'Della', 1927, 'F', 948), +(33109, 'Sadie', 1927, 'F', 943), +(33110, 'Jeannette', 1927, 'F', 911), +(33111, 'Angelina', 1927, 'F', 899), +(33112, 'Priscilla', 1927, 'F', 899), +(33113, 'Henrietta', 1927, 'F', 898), +(33114, 'Melba', 1927, 'F', 892), +(33115, 'Katie', 1927, 'F', 884), +(33116, 'Sophie', 1927, 'F', 883), +(33117, 'Olive', 1927, 'F', 878), +(33118, 'Lydia', 1927, 'F', 875), +(33119, 'Susan', 1927, 'F', 870), +(33120, 'Fern', 1927, 'F', 845), +(33121, 'Therese', 1927, 'F', 839), +(33122, 'Charlene', 1927, 'F', 834), +(33123, 'Freda', 1927, 'F', 819), +(33124, 'Adeline', 1927, 'F', 805), +(33125, 'Rosemarie', 1927, 'F', 796), +(33126, 'Ora', 1927, 'F', 790), +(33127, 'Essie', 1927, 'F', 785), +(33128, 'Joann', 1927, 'F', 783), +(33129, 'Annette', 1927, 'F', 782), +(33130, 'Nadine', 1927, 'F', 780), +(33131, 'Ollie', 1927, 'F', 778), +(33132, 'Veronica', 1927, 'F', 778), +(33133, 'Jewel', 1927, 'F', 775), +(33134, 'Nettie', 1927, 'F', 772), +(33135, 'Lottie', 1927, 'F', 770), +(33136, 'Amelia', 1927, 'F', 755), +(33137, 'May', 1927, 'F', 745), +(33138, 'Connie', 1927, 'F', 741), +(33139, 'Jewell', 1927, 'F', 735), +(33140, 'Janie', 1927, 'F', 729), +(33141, 'Isabel', 1927, 'F', 728), +(33142, 'Reba', 1927, 'F', 726), +(33143, 'Luella', 1927, 'F', 722), +(33144, 'Lucile', 1927, 'F', 717), +(33145, 'Adele', 1927, 'F', 713), +(33146, 'Dorothea', 1927, 'F', 707), +(33147, 'Addie', 1927, 'F', 703), +(33148, 'Iva', 1927, 'F', 701), +(33149, 'Dorthy', 1927, 'F', 695), +(33150, 'Angeline', 1927, 'F', 689), +(33151, 'Lela', 1927, 'F', 681), +(33152, 'Sue', 1927, 'F', 679), +(33153, 'Bettye', 1927, 'F', 676), +(33154, 'Selma', 1927, 'F', 669), +(33155, 'Fay', 1927, 'F', 664), +(33156, 'Goldie', 1927, 'F', 664), +(33157, 'Cleo', 1927, 'F', 662), +(33158, 'Natalie', 1927, 'F', 659), +(33159, 'Sallie', 1927, 'F', 656), +(33160, 'Cecilia', 1927, 'F', 654), +(33161, 'Etta', 1927, 'F', 647), +(33162, 'Lenora', 1927, 'F', 645), +(33163, 'Leola', 1927, 'F', 638), +(33164, 'Ola', 1927, 'F', 630), +(33165, 'Ina', 1927, 'F', 624), +(33166, 'Cecelia', 1927, 'F', 622), +(33167, 'Judith', 1927, 'F', 622), +(33168, 'Celia', 1927, 'F', 607), +(33169, 'Corinne', 1927, 'F', 605), +(33170, 'Elinor', 1927, 'F', 605), +(33171, 'Mavis', 1927, 'F', 602), +(33172, 'Paula', 1927, 'F', 602), +(33173, 'Angela', 1927, 'F', 601), +(33174, 'Effie', 1927, 'F', 601), +(33175, 'Clarice', 1927, 'F', 580), +(33176, 'Isabelle', 1927, 'F', 570), +(33177, 'Annabelle', 1927, 'F', 568), +(33178, 'Ramona', 1927, 'F', 567), +(33179, 'Willa', 1927, 'F', 567), +(33180, 'Jimmie', 1927, 'F', 565), +(33181, 'Alta', 1927, 'F', 564), +(33182, 'Francis', 1927, 'F', 564), +(33183, 'Nell', 1927, 'F', 562), +(33184, 'Deloris', 1927, 'F', 561), +(33185, 'Lizzie', 1927, 'F', 561), +(33186, 'Elva', 1927, 'F', 551), +(33187, 'Estella', 1927, 'F', 546), +(33188, 'Marcia', 1927, 'F', 538), +(33189, 'Eleanore', 1927, 'F', 535), +(33190, 'Myra', 1927, 'F', 535), +(33191, 'Carmela', 1927, 'F', 532), +(33192, 'Arline', 1927, 'F', 531), +(33193, 'Ila', 1927, 'F', 530), +(33194, 'Elvira', 1927, 'F', 523), +(33195, 'Bernadine', 1927, 'F', 519), +(33196, 'Linda', 1927, 'F', 516), +(33197, 'Frankie', 1927, 'F', 509), +(33198, 'Suzanne', 1927, 'F', 509), +(33199, 'Helene', 1927, 'F', 500), +(33200, 'Olivia', 1927, 'F', 499), +(33201, 'Virgie', 1927, 'F', 495), +(33202, 'Carmella', 1927, 'F', 494), +(33203, 'Lee', 1927, 'F', 490), +(33204, 'Gracie', 1927, 'F', 489), +(33205, 'Lou', 1927, 'F', 489), +(33206, 'Jacquelyn', 1927, 'F', 486), +(33207, 'Elnora', 1927, 'F', 479), +(33208, 'Earline', 1927, 'F', 470), +(33209, 'Elma', 1927, 'F', 465), +(33210, 'Aileen', 1927, 'F', 463), +(33211, 'Eugenia', 1927, 'F', 462), +(33212, 'Nannie', 1927, 'F', 460), +(33213, 'Lenore', 1927, 'F', 459), +(33214, 'Rosetta', 1927, 'F', 459), +(33215, 'Rhoda', 1927, 'F', 455), +(33216, 'Jackie', 1927, 'F', 451), +(33217, 'Amy', 1927, 'F', 446), +(33218, 'Lupe', 1927, 'F', 442), +(33219, 'John', 1927, 'F', 440), +(33220, 'Patty', 1927, 'F', 437), +(33221, 'Nelda', 1927, 'F', 436), +(33222, 'Sybil', 1927, 'F', 436), +(33223, 'Margery', 1927, 'F', 435), +(33224, 'Cynthia', 1927, 'F', 433), +(33225, 'Rena', 1927, 'F', 433), +(33226, 'Glenna', 1927, 'F', 429), +(33227, 'Ruthie', 1927, 'F', 427), +(33228, 'Neva', 1927, 'F', 426), +(33229, 'Flossie', 1927, 'F', 418), +(33230, 'Frieda', 1927, 'F', 417), +(33231, 'Guadalupe', 1927, 'F', 417), +(33232, 'Matilda', 1927, 'F', 417), +(33233, 'Robert', 1927, 'F', 411), +(33234, 'Josie', 1927, 'F', 409), +(33235, 'Pat', 1927, 'F', 407), +(33236, 'Winnie', 1927, 'F', 405), +(33237, 'Harriett', 1927, 'F', 399), +(33238, 'Rosella', 1927, 'F', 392), +(33239, 'James', 1927, 'F', 389), +(33240, 'Wilda', 1927, 'F', 389), +(33241, 'Zelma', 1927, 'F', 382), +(33242, 'Cornelia', 1927, 'F', 381), +(33243, 'Loraine', 1927, 'F', 381), +(33244, 'Dollie', 1927, 'F', 377), +(33245, 'Yolanda', 1927, 'F', 377), +(33246, 'Avis', 1927, 'F', 376), +(33247, 'Dona', 1927, 'F', 376), +(33248, 'Mona', 1927, 'F', 376), +(33249, 'Bernadette', 1927, 'F', 373), +(33250, 'Dixie', 1927, 'F', 372), +(33251, 'Cecile', 1927, 'F', 371), +(33252, 'Leatrice', 1927, 'F', 371), +(33253, 'Mollie', 1927, 'F', 370), +(33254, 'Eddie', 1927, 'F', 368), +(33255, 'Concetta', 1927, 'F', 366), +(33256, 'Lily', 1927, 'F', 365), +(33257, 'Pearlie', 1927, 'F', 363), +(33258, 'Claudia', 1927, 'F', 361), +(33259, 'Aurora', 1927, 'F', 360), +(33260, 'Nola', 1927, 'F', 359), +(33261, 'Odessa', 1927, 'F', 359), +(33262, 'Consuelo', 1927, 'F', 358), +(33263, 'Renee', 1927, 'F', 358), +(33264, 'Robbie', 1927, 'F', 354), +(33265, 'Diana', 1927, 'F', 351), +(33266, 'Corrine', 1927, 'F', 350), +(33267, 'Dolly', 1927, 'F', 350), +(33268, 'Maude', 1927, 'F', 349), +(33269, 'Tommie', 1927, 'F', 348), +(33270, 'Hannah', 1927, 'F', 347), +(33271, 'Leah', 1927, 'F', 345), +(33272, 'Lora', 1927, 'F', 345), +(33273, 'Christina', 1927, 'F', 341), +(33274, 'Hope', 1927, 'F', 339), +(33275, 'Antonia', 1927, 'F', 335), +(33276, 'Millie', 1927, 'F', 333), +(33277, 'Polly', 1927, 'F', 331), +(33278, 'Allie', 1927, 'F', 328), +(33279, 'Alyce', 1927, 'F', 328), +(33280, 'Ilene', 1927, 'F', 327), +(33281, 'Letha', 1927, 'F', 327), +(33282, 'Gilda', 1927, 'F', 321), +(33283, 'Lorna', 1927, 'F', 320), +(33284, 'William', 1927, 'F', 320), +(33285, 'Lavonne', 1927, 'F', 313), +(33286, 'Aline', 1927, 'F', 312), +(33287, 'Merle', 1927, 'F', 311), +(33288, 'Ophelia', 1927, 'F', 311), +(33289, 'Beth', 1927, 'F', 310), +(33290, 'Alicia', 1927, 'F', 308), +(33291, 'Maryann', 1927, 'F', 308), +(33292, 'Earnestine', 1927, 'F', 307), +(33293, 'Leila', 1927, 'F', 306), +(33294, 'Margarita', 1927, 'F', 306), +(33295, 'Reva', 1927, 'F', 306), +(33296, 'Charles', 1927, 'F', 304), +(33297, 'Corine', 1927, 'F', 301), +(33298, 'Roslyn', 1927, 'F', 301), +(33299, 'Iona', 1927, 'F', 300), +(33300, 'Judy', 1927, 'F', 295), +(33301, 'Delia', 1927, 'F', 293), +(33302, 'Edythe', 1927, 'F', 293), +(33303, 'Mercedes', 1927, 'F', 290), +(33304, 'Berniece', 1927, 'F', 286), +(33305, 'Eliza', 1927, 'F', 286), +(33306, 'Helena', 1927, 'F', 286), +(33307, 'Melva', 1927, 'F', 285), +(33308, 'Betsy', 1927, 'F', 283), +(33309, 'Lilly', 1927, 'F', 283), +(33310, 'Adelaide', 1927, 'F', 281), +(33311, 'Marylou', 1927, 'F', 281), +(33312, 'Florine', 1927, 'F', 279), +(33313, 'Emogene', 1927, 'F', 277), +(33314, 'Lessie', 1927, 'F', 277), +(33315, 'Allene', 1927, 'F', 273), +(33316, 'Beverley', 1927, 'F', 273), +(33317, 'Evangeline', 1927, 'F', 273), +(33318, 'Madge', 1927, 'F', 273), +(33319, 'Dorris', 1927, 'F', 272), +(33320, 'Kay', 1927, 'F', 267), +(33321, 'Marianne', 1927, 'F', 267), +(33322, 'Callie', 1927, 'F', 266), +(33323, 'Madelyn', 1927, 'F', 266), +(33324, 'Philomena', 1927, 'F', 266), +(33325, 'Louella', 1927, 'F', 264), +(33326, 'Althea', 1927, 'F', 263), +(33327, 'Earlene', 1927, 'F', 263), +(33328, 'Queen', 1927, 'F', 263), +(33329, 'Hester', 1927, 'F', 262), +(33330, 'Nona', 1927, 'F', 259), +(33331, 'Lorena', 1927, 'F', 258), +(33332, 'Molly', 1927, 'F', 258), +(33333, 'Jannie', 1927, 'F', 256), +(33334, 'Jerry', 1927, 'F', 254), +(33335, 'Elouise', 1927, 'F', 249), +(33336, 'Millicent', 1927, 'F', 249), +(33337, 'George', 1927, 'F', 248), +(33338, 'Gene', 1927, 'F', 246), +(33339, 'Georgie', 1927, 'F', 245), +(33340, 'Maurine', 1927, 'F', 244), +(33341, 'Maureen', 1927, 'F', 243), +(33342, 'Angie', 1927, 'F', 242), +(33343, 'Elena', 1927, 'F', 242), +(33344, 'Johanna', 1927, 'F', 242), +(33345, 'Clare', 1927, 'F', 241), +(33346, 'Freddie', 1927, 'F', 241), +(33347, 'Lelia', 1927, 'F', 241), +(33348, 'Leota', 1927, 'F', 241), +(33349, 'Sophia', 1927, 'F', 240), +(33350, 'Lorine', 1927, 'F', 239), +(33351, 'Bertie', 1927, 'F', 238), +(33352, 'Joanna', 1927, 'F', 238), +(33353, 'Delphine', 1927, 'F', 237), +(33354, 'Zelda', 1927, 'F', 237), +(33355, 'Amanda', 1927, 'F', 234), +(33356, 'Dessie', 1927, 'F', 233), +(33357, 'Ima', 1927, 'F', 232), +(33358, 'Sheila', 1927, 'F', 232), +(33359, 'Jaunita', 1927, 'F', 231), +(33360, 'Pansy', 1927, 'F', 231), +(33361, 'Joe', 1927, 'F', 230), +(33362, 'Leta', 1927, 'F', 230), +(33363, 'Winona', 1927, 'F', 230), +(33364, 'Iola', 1927, 'F', 229), +(33365, 'Alene', 1927, 'F', 226), +(33366, 'Katharine', 1927, 'F', 226), +(33367, 'Laurel', 1927, 'F', 223), +(33368, 'Beryl', 1927, 'F', 222), +(33369, 'Dortha', 1927, 'F', 222), +(33370, 'Jenny', 1927, 'F', 222), +(33371, 'Bennie', 1927, 'F', 220), +(33372, 'Ester', 1927, 'F', 220), +(33373, 'Gussie', 1927, 'F', 220), +(33374, 'Tillie', 1927, 'F', 220), +(33375, 'Sonia', 1927, 'F', 218), +(33376, 'Faith', 1927, 'F', 216), +(33377, 'Marietta', 1927, 'F', 216), +(33378, 'Carole', 1927, 'F', 213), +(33379, 'Vilma', 1927, 'F', 213), +(33380, 'Leora', 1927, 'F', 212), +(33381, 'Maudie', 1927, 'F', 212), +(33382, 'Ione', 1927, 'F', 210), +(33383, 'Retha', 1927, 'F', 210), +(33384, 'Doreen', 1927, 'F', 209), +(33385, 'Isabell', 1927, 'F', 208), +(33386, 'Claudine', 1927, 'F', 207), +(33387, 'Rosalind', 1927, 'F', 207), +(33388, 'Sandra', 1927, 'F', 207), +(33389, 'Freida', 1927, 'F', 205), +(33390, 'Marjory', 1927, 'F', 205), +(33391, 'Myrna', 1927, 'F', 204), +(33392, 'Madeleine', 1927, 'F', 202), +(33393, 'Valeria', 1927, 'F', 202), +(33394, 'Charlie', 1927, 'F', 201), +(33395, 'Bonita', 1927, 'F', 199), +(33396, 'Julie', 1927, 'F', 199), +(33397, 'Margret', 1927, 'F', 199), +(33398, 'Ardis', 1927, 'F', 198), +(33399, 'Petra', 1927, 'F', 197), +(33400, 'Janis', 1927, 'F', 196), +(33401, 'Valerie', 1927, 'F', 195), +(33402, 'Verla', 1927, 'F', 195), +(33403, 'Dawn', 1927, 'F', 194), +(33404, 'Erna', 1927, 'F', 194), +(33405, 'Birdie', 1927, 'F', 193), +(33406, 'Edwina', 1927, 'F', 192), +(33407, 'Rosalyn', 1927, 'F', 192), +(33408, 'Arleen', 1927, 'F', 191), +(33409, 'Manuela', 1927, 'F', 191), +(33410, 'Esperanza', 1927, 'F', 190), +(33411, 'Wilhelmina', 1927, 'F', 190), +(33412, 'Zella', 1927, 'F', 190), +(33413, 'Monica', 1927, 'F', 188), +(33414, 'Pearline', 1927, 'F', 188), +(33415, 'Twila', 1927, 'F', 188), +(33416, 'Gail', 1927, 'F', 186), +(33417, 'Lucia', 1927, 'F', 186), +(33418, 'Belva', 1927, 'F', 185), +(33419, 'Shirlee', 1927, 'F', 185), +(33420, 'Verda', 1927, 'F', 185), +(33421, 'Augusta', 1927, 'F', 183), +(33422, 'Georgette', 1927, 'F', 183), +(33423, 'Rae', 1927, 'F', 183), +(33424, 'Alfreda', 1927, 'F', 182), +(33425, 'Isabella', 1927, 'F', 182), +(33426, 'Lauretta', 1927, 'F', 182), +(33427, 'Oma', 1927, 'F', 180), +(33428, 'Francisca', 1927, 'F', 179), +(33429, 'Josefina', 1927, 'F', 179), +(33430, 'Vernice', 1927, 'F', 179), +(33431, 'Bobby', 1927, 'F', 178), +(33432, 'Dorotha', 1927, 'F', 178), +(33433, 'Juana', 1927, 'F', 178), +(33434, 'Elisabeth', 1927, 'F', 177), +(33435, 'Roxie', 1927, 'F', 177), +(33436, 'Delma', 1927, 'F', 176), +(33437, 'Nita', 1927, 'F', 176), +(33438, 'Velda', 1927, 'F', 176), +(33439, 'Justine', 1927, 'F', 175), +(33440, 'Rosalee', 1927, 'F', 173), +(33441, 'Germaine', 1927, 'F', 172), +(33442, 'Janette', 1927, 'F', 172), +(33443, 'Syble', 1927, 'F', 172), +(33444, 'Rowena', 1927, 'F', 171), +(33445, 'Aurelia', 1927, 'F', 169), +(33446, 'Phoebe', 1927, 'F', 169), +(33447, 'Harriette', 1927, 'F', 168), +(33448, 'Johnie', 1927, 'F', 167), +(33449, 'Fanny', 1927, 'F', 166), +(33450, 'Joseph', 1927, 'F', 166), +(33451, 'Marceline', 1927, 'F', 166), +(33452, 'Alva', 1927, 'F', 165), +(33453, 'Elda', 1927, 'F', 164), +(33454, 'Enid', 1927, 'F', 164), +(33455, 'Marilynn', 1927, 'F', 164), +(33456, 'Rubye', 1927, 'F', 164), +(33457, 'Terry', 1927, 'F', 163), +(33458, 'Glenda', 1927, 'F', 162), +(33459, 'Lura', 1927, 'F', 162), +(33460, 'Richard', 1927, 'F', 161), +(33461, 'Vada', 1927, 'F', 161), +(33462, 'Yvette', 1927, 'F', 160), +(33463, 'Alpha', 1927, 'F', 159), +(33464, 'Diane', 1927, 'F', 159), +(33465, 'Mazie', 1927, 'F', 159), +(33466, 'Vida', 1927, 'F', 159), +(33467, 'Marlys', 1927, 'F', 158), +(33468, 'Oleta', 1927, 'F', 158), +(33469, 'Billy', 1927, 'F', 157), +(33470, 'Elise', 1927, 'F', 157), +(33471, 'Floy', 1927, 'F', 156), +(33472, 'Minerva', 1927, 'F', 156), +(33473, 'Theodora', 1927, 'F', 156), +(33474, 'Hallie', 1927, 'F', 155), +(33475, 'Charline', 1927, 'F', 154), +(33476, 'Alvina', 1927, 'F', 153), +(33477, 'Louisa', 1927, 'F', 153), +(33478, 'Hortense', 1927, 'F', 151), +(33479, 'Kate', 1927, 'F', 151), +(33480, 'Tina', 1927, 'F', 150), +(33481, 'Tessie', 1927, 'F', 149), +(33482, 'Billye', 1927, 'F', 148), +(33483, 'Gwen', 1927, 'F', 148), +(33484, 'Hellen', 1927, 'F', 148), +(33485, 'Eldora', 1927, 'F', 147), +(33486, 'Mozelle', 1927, 'F', 147), +(33487, 'Greta', 1927, 'F', 146), +(33488, 'Elvera', 1927, 'F', 145), +(33489, 'Veda', 1927, 'F', 145), +(33490, 'Dovie', 1927, 'F', 144), +(33491, 'Margarette', 1927, 'F', 144), +(33492, 'Reta', 1927, 'F', 144), +(33493, 'Donald', 1927, 'F', 143), +(33494, 'Ona', 1927, 'F', 143), +(33495, 'Blanch', 1927, 'F', 142), +(33496, 'Gretchen', 1927, 'F', 142), +(33497, 'Juliette', 1927, 'F', 142), +(33498, 'Lavern', 1927, 'F', 142), +(33499, 'Adell', 1927, 'F', 141), +(33500, 'Ava', 1927, 'F', 141), +(33501, 'Doretha', 1927, 'F', 141), +(33502, 'Vernell', 1927, 'F', 141), +(33503, 'Georgianna', 1927, 'F', 140), +(33504, 'Lucinda', 1927, 'F', 139), +(33505, 'Camille', 1927, 'F', 138), +(33506, 'Elsa', 1927, 'F', 138), +(33507, 'Garnet', 1927, 'F', 138), +(33508, 'Lue', 1927, 'F', 138), +(33509, 'Socorro', 1927, 'F', 138), +(33510, 'Adrienne', 1927, 'F', 137), +(33511, 'Roma', 1927, 'F', 137), +(33512, 'Ardith', 1927, 'F', 136), +(33513, 'Leonora', 1927, 'F', 136), +(33514, 'Lettie', 1927, 'F', 136), +(33515, 'Myrtis', 1927, 'F', 135), +(33516, 'Larue', 1927, 'F', 134), +(33517, 'Marvel', 1927, 'F', 134), +(33518, 'Ouida', 1927, 'F', 134), +(33519, 'Agatha', 1927, 'F', 133), +(33520, 'Lavon', 1927, 'F', 133), +(33521, 'Lona', 1927, 'F', 132), +(33522, 'Theda', 1927, 'F', 132), +(33523, 'Treva', 1927, 'F', 132), +(33524, 'Artie', 1927, 'F', 131), +(33525, 'Florene', 1927, 'F', 131), +(33526, 'Ursula', 1927, 'F', 131), +(33527, 'Berta', 1927, 'F', 130), +(33528, 'Orpha', 1927, 'F', 130), +(33529, 'Darline', 1927, 'F', 129), +(33530, 'Idella', 1927, 'F', 129), +(33531, 'Noreen', 1927, 'F', 129), +(33532, 'Felicia', 1927, 'F', 127), +(33533, 'Gertie', 1927, 'F', 127), +(33534, 'Jeane', 1927, 'F', 127), +(33535, 'Lynn', 1927, 'F', 127), +(33536, 'Magdalene', 1927, 'F', 127), +(33537, 'Mayme', 1927, 'F', 127), +(33538, 'Myrtice', 1927, 'F', 127), +(33539, 'Stephanie', 1927, 'F', 127), +(33540, 'Gearldine', 1927, 'F', 126), +(33541, 'Leslie', 1927, 'F', 126), +(33542, 'Mina', 1927, 'F', 126), +(33543, 'Novella', 1927, 'F', 126), +(33544, 'Vesta', 1927, 'F', 126), +(33545, 'Carolina', 1927, 'F', 125), +(33546, 'Cathryn', 1927, 'F', 125), +(33547, 'Darleen', 1927, 'F', 125), +(33548, 'Francine', 1927, 'F', 125), +(33549, 'Katheryn', 1927, 'F', 125), +(33550, 'Rhea', 1927, 'F', 125), +(33551, 'Georgiana', 1927, 'F', 124), +(33552, 'Clementine', 1927, 'F', 123), +(33553, 'Emilia', 1927, 'F', 123), +(33554, 'Roselyn', 1927, 'F', 123), +(33555, 'Una', 1927, 'F', 123), +(33556, 'Dottie', 1927, 'F', 121), +(33557, 'Linnie', 1927, 'F', 121), +(33558, 'Belle', 1927, 'F', 120), +(33559, 'Sammie', 1927, 'F', 120), +(33560, 'Adela', 1927, 'F', 118), +(33561, 'Catharine', 1927, 'F', 118), +(33562, 'Eleanora', 1927, 'F', 118), +(33563, 'Jayne', 1927, 'F', 118), +(33564, 'Pattie', 1927, 'F', 118), +(33565, 'Sharon', 1927, 'F', 118), +(33566, 'Cecil', 1927, 'F', 117), +(33567, 'Celestine', 1927, 'F', 117), +(33568, 'Kitty', 1927, 'F', 117), +(33569, 'Leone', 1927, 'F', 117), +(33570, 'Magnolia', 1927, 'F', 117), +(33571, 'Albertha', 1927, 'F', 116), +(33572, 'Angelita', 1927, 'F', 116), +(33573, 'Kathrine', 1927, 'F', 116), +(33574, 'Thomas', 1927, 'F', 116), +(33575, 'Zola', 1927, 'F', 116), +(33576, 'Hettie', 1927, 'F', 115), +(33577, 'Maryjane', 1927, 'F', 115), +(33578, 'Carmel', 1927, 'F', 114), +(33579, 'Filomena', 1927, 'F', 114), +(33580, 'Lulu', 1927, 'F', 114), +(33581, 'Margarett', 1927, 'F', 114), +(33582, 'Marianna', 1927, 'F', 114), +(33583, 'Odell', 1927, 'F', 114), +(33584, 'Edward', 1927, 'F', 112), +(33585, 'Ivy', 1927, 'F', 112), +(33586, 'Madonna', 1927, 'F', 112), +(33587, 'Magdalena', 1927, 'F', 112), +(33588, 'Andrea', 1927, 'F', 111), +(33589, 'Cassie', 1927, 'F', 111), +(33590, 'Dorcas', 1927, 'F', 111), +(33591, 'Elisa', 1927, 'F', 111), +(33592, 'Ethelyn', 1927, 'F', 111), +(33593, 'Ofelia', 1927, 'F', 111), +(33594, 'Annabell', 1927, 'F', 110), +(33595, 'Easter', 1927, 'F', 110), +(33596, 'Nan', 1927, 'F', 110), +(33597, 'Celeste', 1927, 'F', 109), +(33598, 'Cordelia', 1927, 'F', 109), +(33599, 'Frank', 1927, 'F', 109), +(33600, 'Lita', 1927, 'F', 109), +(33601, 'Maud', 1927, 'F', 109), +(33602, 'Tressie', 1927, 'F', 109), +(33603, 'Velva', 1927, 'F', 109), +(33604, 'Era', 1927, 'F', 108), +(33605, 'Ray', 1927, 'F', 108), +(33606, 'Albina', 1927, 'F', 106), +(33607, 'Winnifred', 1927, 'F', 106), +(33608, 'Henry', 1927, 'F', 105), +(33609, 'Lucretia', 1927, 'F', 105), +(33610, 'Antonette', 1927, 'F', 104), +(33611, 'Norene', 1927, 'F', 104), +(33612, 'Abbie', 1927, 'F', 103), +(33613, 'Camilla', 1927, 'F', 103), +(33614, 'Emilie', 1927, 'F', 103), +(33615, 'Ferne', 1927, 'F', 103), +(33616, 'Berneice', 1927, 'F', 102), +(33617, 'Paul', 1927, 'F', 102), +(33618, 'Estell', 1927, 'F', 101), +(33619, 'Norine', 1927, 'F', 101), +(33620, 'Vergie', 1927, 'F', 101), +(33621, 'Bobbye', 1927, 'F', 100), +(33622, 'Harold', 1927, 'F', 100), +(33623, 'Lovie', 1927, 'F', 100), +(33624, 'Rosamond', 1927, 'F', 100), +(33625, 'Robert', 1927, 'M', 61664), +(33626, 'John', 1927, 'M', 55948), +(33627, 'James', 1927, 'M', 53663), +(33628, 'William', 1927, 'M', 51472), +(33629, 'Charles', 1927, 'M', 31934), +(33630, 'Richard', 1927, 'M', 26764), +(33631, 'George', 1927, 'M', 25953), +(33632, 'Donald', 1927, 'M', 23838), +(33633, 'Joseph', 1927, 'M', 23499), +(33634, 'Edward', 1927, 'M', 19111), +(33635, 'Thomas', 1927, 'M', 17016), +(33636, 'Frank', 1927, 'M', 14376), +(33637, 'Paul', 1927, 'M', 13600), +(33638, 'Harold', 1927, 'M', 13230), +(33639, 'Raymond', 1927, 'M', 12799); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(33640, 'Jack', 1927, 'M', 12796), +(33641, 'Walter', 1927, 'M', 11345), +(33642, 'Kenneth', 1927, 'M', 10851), +(33643, 'Henry', 1927, 'M', 9859), +(33644, 'Eugene', 1927, 'M', 9748), +(33645, 'David', 1927, 'M', 9430), +(33646, 'Arthur', 1927, 'M', 9341), +(33647, 'Albert', 1927, 'M', 9132), +(33648, 'Ralph', 1927, 'M', 8437), +(33649, 'Harry', 1927, 'M', 8016), +(33650, 'Carl', 1927, 'M', 7276), +(33651, 'Willie', 1927, 'M', 6968), +(33652, 'Howard', 1927, 'M', 6828), +(33653, 'Louis', 1927, 'M', 6664), +(33654, 'Joe', 1927, 'M', 6534), +(33655, 'Billy', 1927, 'M', 6462), +(33656, 'Clarence', 1927, 'M', 6460), +(33657, 'Earl', 1927, 'M', 6405), +(33658, 'Roy', 1927, 'M', 6382), +(33659, 'Fred', 1927, 'M', 6311), +(33660, 'Francis', 1927, 'M', 5644), +(33661, 'Lawrence', 1927, 'M', 5570), +(33662, 'Gerald', 1927, 'M', 5508), +(33663, 'Norman', 1927, 'M', 5485), +(33664, 'Leonard', 1927, 'M', 5305), +(33665, 'Ernest', 1927, 'M', 5200), +(33666, 'Herbert', 1927, 'M', 5020), +(33667, 'Anthony', 1927, 'M', 4920), +(33668, 'Stanley', 1927, 'M', 4901), +(33669, 'Alfred', 1927, 'M', 4748), +(33670, 'Daniel', 1927, 'M', 4615), +(33671, 'Marvin', 1927, 'M', 4393), +(33672, 'Melvin', 1927, 'M', 4200), +(33673, 'Samuel', 1927, 'M', 4183), +(33674, 'Bernard', 1927, 'M', 4164), +(33675, 'Leroy', 1927, 'M', 3915), +(33676, 'Michael', 1927, 'M', 3606), +(33677, 'Floyd', 1927, 'M', 3543), +(33678, 'Russell', 1927, 'M', 3539), +(33679, 'Leo', 1927, 'M', 3534), +(33680, 'Andrew', 1927, 'M', 3437), +(33681, 'Edwin', 1927, 'M', 3389), +(33682, 'Lloyd', 1927, 'M', 3325), +(33683, 'Peter', 1927, 'M', 3303), +(33684, 'Ray', 1927, 'M', 3250), +(33685, 'Elmer', 1927, 'M', 3202), +(33686, 'Theodore', 1927, 'M', 3122), +(33687, 'Ronald', 1927, 'M', 3109), +(33688, 'Frederick', 1927, 'M', 3048), +(33689, 'Clifford', 1927, 'M', 3029), +(33690, 'Wayne', 1927, 'M', 2885), +(33691, 'Alvin', 1927, 'M', 2882), +(33692, 'Clyde', 1927, 'M', 2877), +(33693, 'Bill', 1927, 'M', 2864), +(33694, 'Herman', 1927, 'M', 2856), +(33695, 'Vernon', 1927, 'M', 2856), +(33696, 'Gene', 1927, 'M', 2797), +(33697, 'Calvin', 1927, 'M', 2692), +(33698, 'Philip', 1927, 'M', 2681), +(33699, 'Gordon', 1927, 'M', 2680), +(33700, 'Glenn', 1927, 'M', 2670), +(33701, 'Vincent', 1927, 'M', 2650), +(33702, 'Leon', 1927, 'M', 2599), +(33703, 'Warren', 1927, 'M', 2557), +(33704, 'Charlie', 1927, 'M', 2513), +(33705, 'Dale', 1927, 'M', 2503), +(33706, 'Lewis', 1927, 'M', 2498), +(33707, 'Lester', 1927, 'M', 2439), +(33708, 'Roger', 1927, 'M', 2408), +(33709, 'Chester', 1927, 'M', 2407), +(33710, 'Lee', 1927, 'M', 2392), +(33711, 'Martin', 1927, 'M', 2381), +(33712, 'Milton', 1927, 'M', 2358), +(33713, 'Jesse', 1927, 'M', 2319), +(33714, 'Don', 1927, 'M', 2303), +(33715, 'Bobby', 1927, 'M', 2290), +(33716, 'Cecil', 1927, 'M', 2228), +(33717, 'Jerry', 1927, 'M', 2218), +(33718, 'Harvey', 1927, 'M', 2196), +(33719, 'Allen', 1927, 'M', 2101), +(33720, 'Wallace', 1927, 'M', 2008), +(33721, 'Arnold', 1927, 'M', 1999), +(33722, 'Victor', 1927, 'M', 1984), +(33723, 'Gilbert', 1927, 'M', 1977), +(33724, 'Bob', 1927, 'M', 1971), +(33725, 'Benjamin', 1927, 'M', 1923), +(33726, 'Sam', 1927, 'M', 1902), +(33727, 'Eddie', 1927, 'M', 1858), +(33728, 'Douglas', 1927, 'M', 1820), +(33729, 'Johnnie', 1927, 'M', 1797), +(33730, 'Willard', 1927, 'M', 1733), +(33731, 'Edgar', 1927, 'M', 1724), +(33732, 'Jimmie', 1927, 'M', 1715), +(33733, 'Roland', 1927, 'M', 1713), +(33734, 'Jerome', 1927, 'M', 1686), +(33735, 'Rudolph', 1927, 'M', 1683), +(33736, 'Jose', 1927, 'M', 1638), +(33737, 'Oscar', 1927, 'M', 1632), +(33738, 'Claude', 1927, 'M', 1624), +(33739, 'Glen', 1927, 'M', 1617), +(33740, 'Manuel', 1927, 'M', 1602), +(33741, 'Marion', 1927, 'M', 1593), +(33742, 'Curtis', 1927, 'M', 1590), +(33743, 'Junior', 1927, 'M', 1587), +(33744, 'Everett', 1927, 'M', 1570), +(33745, 'Virgil', 1927, 'M', 1499), +(33746, 'Maurice', 1927, 'M', 1494), +(33747, 'Jessie', 1927, 'M', 1462), +(33748, 'Bruce', 1927, 'M', 1458), +(33749, 'Stephen', 1927, 'M', 1446), +(33750, 'Leslie', 1927, 'M', 1441), +(33751, 'Sidney', 1927, 'M', 1379), +(33752, 'Hubert', 1927, 'M', 1373), +(33753, 'Homer', 1927, 'M', 1369), +(33754, 'Wilbur', 1927, 'M', 1362), +(33755, 'Hugh', 1927, 'M', 1356), +(33756, 'Johnny', 1927, 'M', 1351), +(33757, 'Dean', 1927, 'M', 1334), +(33758, 'Wesley', 1927, 'M', 1325), +(33759, 'Billie', 1927, 'M', 1320), +(33760, 'Jim', 1927, 'M', 1293), +(33761, 'Nicholas', 1927, 'M', 1272), +(33762, 'Tom', 1927, 'M', 1269), +(33763, 'Luther', 1927, 'M', 1256), +(33764, 'Patrick', 1927, 'M', 1252), +(33765, 'Keith', 1927, 'M', 1231), +(33766, 'Max', 1927, 'M', 1230), +(33767, 'Morris', 1927, 'M', 1224), +(33768, 'Franklin', 1927, 'M', 1182), +(33769, 'Horace', 1927, 'M', 1180), +(33770, 'Alexander', 1927, 'M', 1092), +(33771, 'Duane', 1927, 'M', 1083), +(33772, 'Earnest', 1927, 'M', 1061), +(33773, 'Salvatore', 1927, 'M', 1060), +(33774, 'Willis', 1927, 'M', 1059), +(33775, 'Lyle', 1927, 'M', 1054), +(33776, 'Phillip', 1927, 'M', 1040), +(33777, 'Tony', 1927, 'M', 1035), +(33778, 'Steve', 1927, 'M', 1026), +(33779, 'Irving', 1927, 'M', 1019), +(33780, 'Ben', 1927, 'M', 1012), +(33781, 'Oliver', 1927, 'M', 1002), +(33782, 'Jimmy', 1927, 'M', 992), +(33783, 'Delbert', 1927, 'M', 964), +(33784, 'Edmund', 1927, 'M', 930), +(33785, 'Dan', 1927, 'M', 922), +(33786, 'Guy', 1927, 'M', 921), +(33787, 'Dennis', 1927, 'M', 920), +(33788, 'Clayton', 1927, 'M', 919), +(33789, 'Clifton', 1927, 'M', 919), +(33790, 'Julius', 1927, 'M', 916), +(33791, 'Otis', 1927, 'M', 901), +(33792, 'Angelo', 1927, 'M', 892), +(33793, 'Alex', 1927, 'M', 888), +(33794, 'Tommy', 1927, 'M', 877), +(33795, 'Jay', 1927, 'M', 870), +(33796, 'Jacob', 1927, 'M', 855), +(33797, 'Orville', 1927, 'M', 854), +(33798, 'Bennie', 1927, 'M', 853), +(33799, 'Archie', 1927, 'M', 848), +(33800, 'Larry', 1927, 'M', 837), +(33801, 'Leland', 1927, 'M', 824), +(33802, 'Merle', 1927, 'M', 809), +(33803, 'Alan', 1927, 'M', 808), +(33804, 'Mike', 1927, 'M', 801), +(33805, 'Ira', 1927, 'M', 793), +(33806, 'Clinton', 1927, 'M', 792), +(33807, 'Matthew', 1927, 'M', 790), +(33808, 'Marshall', 1927, 'M', 788), +(33809, 'Dick', 1927, 'M', 776), +(33810, 'Wilbert', 1927, 'M', 776), +(33811, 'Nathaniel', 1927, 'M', 768), +(33812, 'Ivan', 1927, 'M', 764), +(33813, 'Ervin', 1927, 'M', 763), +(33814, 'Ted', 1927, 'M', 762), +(33815, 'Alton', 1927, 'M', 760), +(33816, 'Juan', 1927, 'M', 759), +(33817, 'Lowell', 1927, 'M', 756), +(33818, 'Wilfred', 1927, 'M', 743), +(33819, 'Jesus', 1927, 'M', 728), +(33820, 'Allan', 1927, 'M', 721), +(33821, 'Dewey', 1927, 'M', 720), +(33822, 'Freddie', 1927, 'M', 714), +(33823, 'Lonnie', 1927, 'M', 708), +(33824, 'Mark', 1927, 'M', 701), +(33825, 'Antonio', 1927, 'M', 697), +(33826, 'Carroll', 1927, 'M', 693), +(33827, 'Isaac', 1927, 'M', 692), +(33828, 'Rufus', 1927, 'M', 689), +(33829, 'Elbert', 1927, 'M', 678), +(33830, 'Nelson', 1927, 'M', 672), +(33831, 'Irvin', 1927, 'M', 667), +(33832, 'Myron', 1927, 'M', 653), +(33833, 'Eldon', 1927, 'M', 640), +(33834, 'Nathan', 1927, 'M', 636), +(33835, 'Gerard', 1927, 'M', 629), +(33836, 'Karl', 1927, 'M', 629), +(33837, 'Wendell', 1927, 'M', 625), +(33838, 'Emil', 1927, 'M', 621), +(33839, 'Julian', 1927, 'M', 621), +(33840, 'Nick', 1927, 'M', 614), +(33841, 'Malcolm', 1927, 'M', 612), +(33842, 'Forrest', 1927, 'M', 611), +(33843, 'Sylvester', 1927, 'M', 611), +(33844, 'Johnie', 1927, 'M', 610), +(33845, 'Neil', 1927, 'M', 609), +(33846, 'Loren', 1927, 'M', 607), +(33847, 'Norbert', 1927, 'M', 603), +(33848, 'Darrell', 1927, 'M', 602), +(33849, 'Loyd', 1927, 'M', 600), +(33850, 'Pete', 1927, 'M', 599), +(33851, 'Perry', 1927, 'M', 584), +(33852, 'Laurence', 1927, 'M', 583), +(33853, 'Ellis', 1927, 'M', 581), +(33854, 'Bert', 1927, 'M', 572), +(33855, 'Doyle', 1927, 'M', 570), +(33856, 'Ramon', 1927, 'M', 570), +(33857, 'Seymour', 1927, 'M', 568), +(33858, 'Felix', 1927, 'M', 563), +(33859, 'Fredrick', 1927, 'M', 563), +(33860, 'Rodney', 1927, 'M', 562), +(33861, 'Troy', 1927, 'M', 559), +(33862, 'Mack', 1927, 'M', 552), +(33863, 'Owen', 1927, 'M', 550), +(33864, 'Aaron', 1927, 'M', 546), +(33865, 'Burton', 1927, 'M', 546), +(33866, 'Carlos', 1927, 'M', 543), +(33867, 'Francisco', 1927, 'M', 542), +(33868, 'Elwood', 1927, 'M', 533), +(33869, 'Byron', 1927, 'M', 532), +(33870, 'Sherman', 1927, 'M', 525), +(33871, 'Amos', 1927, 'M', 522), +(33872, 'Percy', 1927, 'M', 520), +(33873, 'Rex', 1927, 'M', 519), +(33874, 'Grady', 1927, 'M', 518), +(33875, 'Irwin', 1927, 'M', 517), +(33876, 'Murray', 1927, 'M', 510), +(33877, 'Otto', 1927, 'M', 506), +(33878, 'Bobbie', 1927, 'M', 503), +(33879, 'Dominick', 1927, 'M', 499), +(33880, 'Tommie', 1927, 'M', 496), +(33881, 'August', 1927, 'M', 493), +(33882, 'Mario', 1927, 'M', 492), +(33883, 'Grover', 1927, 'M', 491), +(33884, 'Jackie', 1927, 'M', 487), +(33885, 'Emmett', 1927, 'M', 486), +(33886, 'Carlton', 1927, 'M', 484), +(33887, 'Roosevelt', 1927, 'M', 484), +(33888, 'Ruben', 1927, 'M', 478), +(33889, 'Dwight', 1927, 'M', 464), +(33890, 'Wilson', 1927, 'M', 462), +(33891, 'Harley', 1927, 'M', 456), +(33892, 'Ross', 1927, 'M', 454), +(33893, 'Reginald', 1927, 'M', 447), +(33894, 'Lynn', 1927, 'M', 446), +(33895, 'Boyd', 1927, 'M', 440), +(33896, 'Benny', 1927, 'M', 430), +(33897, 'Harlan', 1927, 'M', 427), +(33898, 'Laverne', 1927, 'M', 421), +(33899, 'Austin', 1927, 'M', 417), +(33900, 'Dallas', 1927, 'M', 415), +(33901, 'Dominic', 1927, 'M', 414), +(33902, 'Pedro', 1927, 'M', 412), +(33903, 'Adolph', 1927, 'M', 411), +(33904, 'Morton', 1927, 'M', 410), +(33905, 'Erwin', 1927, 'M', 409), +(33906, 'Abraham', 1927, 'M', 406), +(33907, 'Aubrey', 1927, 'M', 393), +(33908, 'Joel', 1927, 'M', 392), +(33909, 'Cornelius', 1927, 'M', 391), +(33910, 'Elvin', 1927, 'M', 390), +(33911, 'Adam', 1927, 'M', 389), +(33912, 'Merlin', 1927, 'M', 389), +(33913, 'Millard', 1927, 'M', 386), +(33914, 'Elton', 1927, 'M', 385), +(33915, 'Neal', 1927, 'M', 384), +(33916, 'Louie', 1927, 'M', 379), +(33917, 'Dave', 1927, 'M', 378), +(33918, 'Wade', 1927, 'M', 378), +(33919, 'Edmond', 1927, 'M', 377), +(33920, 'Preston', 1927, 'M', 376), +(33921, 'Roscoe', 1927, 'M', 375), +(33922, 'Conrad', 1927, 'M', 374), +(33923, 'Garland', 1927, 'M', 374), +(33924, 'Reuben', 1927, 'M', 374), +(33925, 'Luis', 1927, 'M', 372), +(33926, 'Sheldon', 1927, 'M', 369), +(33927, 'Charley', 1927, 'M', 364), +(33928, 'Raul', 1927, 'M', 361), +(33929, 'Stuart', 1927, 'M', 358), +(33930, 'Rudy', 1927, 'M', 356), +(33931, 'Delmar', 1927, 'M', 353), +(33932, 'Grant', 1927, 'M', 346), +(33933, 'Jasper', 1927, 'M', 346), +(33934, 'Maynard', 1927, 'M', 344), +(33935, 'Alfonso', 1927, 'M', 339), +(33936, 'Steven', 1927, 'M', 338), +(33937, 'Woodrow', 1927, 'M', 338), +(33938, 'Wilmer', 1927, 'M', 337), +(33939, 'Cleo', 1927, 'M', 334), +(33940, 'Sammie', 1927, 'M', 331), +(33941, 'Rocco', 1927, 'M', 327), +(33942, 'Carmen', 1927, 'M', 326), +(33943, 'Cleveland', 1927, 'M', 325), +(33944, 'Timothy', 1927, 'M', 325), +(33945, 'Moses', 1927, 'M', 322), +(33946, 'Thurman', 1927, 'M', 319), +(33947, 'Lionel', 1927, 'M', 318), +(33948, 'Teddy', 1927, 'M', 312), +(33949, 'Emanuel', 1927, 'M', 307), +(33950, 'Roberto', 1927, 'M', 307), +(33951, 'Andy', 1927, 'M', 306), +(33952, 'Russel', 1927, 'M', 305), +(33953, 'Monroe', 1927, 'M', 302), +(33954, 'Odell', 1927, 'M', 300), +(33955, 'Patsy', 1927, 'M', 300), +(33956, 'Will', 1927, 'M', 300), +(33957, 'Mitchell', 1927, 'M', 298), +(33958, 'Harrison', 1927, 'M', 294), +(33959, 'Clark', 1927, 'M', 293), +(33960, 'Elijah', 1927, 'M', 290), +(33961, 'Alonzo', 1927, 'M', 287), +(33962, 'Clair', 1927, 'M', 287), +(33963, 'Pat', 1927, 'M', 287), +(33964, 'Christopher', 1927, 'M', 286), +(33965, 'Ollie', 1927, 'M', 285), +(33966, 'Gus', 1927, 'M', 284), +(33967, 'Merrill', 1927, 'M', 284), +(33968, 'Kermit', 1927, 'M', 283), +(33969, 'Simon', 1927, 'M', 283), +(33970, 'Armand', 1927, 'M', 282), +(33971, 'Marcus', 1927, 'M', 282), +(33972, 'Mary', 1927, 'M', 282), +(33973, 'Salvador', 1927, 'M', 282), +(33974, 'Sanford', 1927, 'M', 281), +(33975, 'Stewart', 1927, 'M', 276), +(33976, 'Randolph', 1927, 'M', 275), +(33977, 'Vito', 1927, 'M', 275), +(33978, 'Lavern', 1927, 'M', 274), +(33979, 'Jake', 1927, 'M', 273), +(33980, 'Weldon', 1927, 'M', 269), +(33981, 'Jess', 1927, 'M', 268), +(33982, 'Wilburn', 1927, 'M', 268), +(33983, 'Cyril', 1927, 'M', 264), +(33984, 'Jean', 1927, 'M', 263), +(33985, 'Ned', 1927, 'M', 261), +(33986, 'Norris', 1927, 'M', 261), +(33987, 'Buddy', 1927, 'M', 260), +(33988, 'Clement', 1927, 'M', 260), +(33989, 'Travis', 1927, 'M', 256), +(33990, 'Earle', 1927, 'M', 254), +(33991, 'Hollis', 1927, 'M', 254), +(33992, 'Wiley', 1927, 'M', 253), +(33993, 'Marlin', 1927, 'M', 251), +(33994, 'Levi', 1927, 'M', 250), +(33995, 'Basil', 1927, 'M', 249), +(33996, 'Gabriel', 1927, 'M', 248), +(33997, 'Royce', 1927, 'M', 248), +(33998, 'Ed', 1927, 'M', 246), +(33999, 'Alva', 1927, 'M', 245), +(34000, 'Claud', 1927, 'M', 243), +(34001, 'Gregory', 1927, 'M', 243), +(34002, 'Darwin', 1927, 'M', 242), +(34003, 'Shirley', 1927, 'M', 242), +(34004, 'Buford', 1927, 'M', 241), +(34005, 'Truman', 1927, 'M', 241), +(34006, 'Gale', 1927, 'M', 240), +(34007, 'Alfredo', 1927, 'M', 239), +(34008, 'Sterling', 1927, 'M', 237), +(34009, 'Winston', 1927, 'M', 237), +(34010, 'Noah', 1927, 'M', 236), +(34011, 'Elmo', 1927, 'M', 235), +(34012, 'Roman', 1927, 'M', 235), +(34013, 'Sammy', 1927, 'M', 235), +(34014, 'Lindy', 1927, 'M', 234), +(34015, 'Rolland', 1927, 'M', 232), +(34016, 'Wilford', 1927, 'M', 232), +(34017, 'Noel', 1927, 'M', 230), +(34018, 'Ward', 1927, 'M', 230), +(34019, 'Carol', 1927, 'M', 228), +(34020, 'Forest', 1927, 'M', 228), +(34021, 'Guadalupe', 1927, 'M', 228), +(34022, 'Emory', 1927, 'M', 227), +(34023, 'Lamar', 1927, 'M', 225), +(34024, 'Edsel', 1927, 'M', 224), +(34025, 'Eli', 1927, 'M', 224), +(34026, 'Armando', 1927, 'M', 223), +(34027, 'Adrian', 1927, 'M', 221), +(34028, 'Emery', 1927, 'M', 221), +(34029, 'Mervin', 1927, 'M', 221), +(34030, 'Vern', 1927, 'M', 221), +(34031, 'Carmine', 1927, 'M', 218), +(34032, 'Darrel', 1927, 'M', 218), +(34033, 'Randall', 1927, 'M', 218), +(34034, 'Rodolfo', 1927, 'M', 218), +(34035, 'Coy', 1927, 'M', 214), +(34036, 'Rene', 1927, 'M', 214), +(34037, 'Lorenzo', 1927, 'M', 213), +(34038, 'Miles', 1927, 'M', 213), +(34039, 'Harris', 1927, 'M', 211), +(34040, 'Van', 1927, 'M', 209), +(34041, 'Danny', 1927, 'M', 208), +(34042, 'Eric', 1927, 'M', 208), +(34043, 'Solomon', 1927, 'M', 208), +(34044, 'Odis', 1927, 'M', 207), +(34045, 'Linwood', 1927, 'M', 206), +(34046, 'Orval', 1927, 'M', 206), +(34047, 'Bud', 1927, 'M', 205), +(34048, 'Elliott', 1927, 'M', 205), +(34049, 'Herschel', 1927, 'M', 204), +(34050, 'Thaddeus', 1927, 'M', 203), +(34051, 'Hershel', 1927, 'M', 202), +(34052, 'Miguel', 1927, 'M', 201), +(34053, 'Rafael', 1927, 'M', 200), +(34054, 'Jackson', 1927, 'M', 199), +(34055, 'Alphonse', 1927, 'M', 196), +(34056, 'Royal', 1927, 'M', 196), +(34057, 'Lenard', 1927, 'M', 195), +(34058, 'Normand', 1927, 'M', 195), +(34059, 'Denver', 1927, 'M', 194), +(34060, 'Milford', 1927, 'M', 194), +(34061, 'Barney', 1927, 'M', 193), +(34062, 'Cletus', 1927, 'M', 193), +(34063, 'Pasquale', 1927, 'M', 193), +(34064, 'Dudley', 1927, 'M', 192), +(34065, 'Jeff', 1927, 'M', 192), +(34066, 'Winfred', 1927, 'M', 192), +(34067, 'Bruno', 1927, 'M', 189), +(34068, 'Fernando', 1927, 'M', 189), +(34069, 'Hal', 1927, 'M', 189), +(34070, 'Saul', 1927, 'M', 189), +(34071, 'Frankie', 1927, 'M', 188), +(34072, 'Emerson', 1927, 'M', 186), +(34073, 'Elias', 1927, 'M', 185), +(34074, 'Wilton', 1927, 'M', 185), +(34075, 'Silas', 1927, 'M', 183), +(34076, 'Ellsworth', 1927, 'M', 182), +(34077, 'Hector', 1927, 'M', 182), +(34078, 'Buster', 1927, 'M', 181), +(34079, 'Delmer', 1927, 'M', 181), +(34080, 'Spencer', 1927, 'M', 180), +(34081, 'Terry', 1927, 'M', 180), +(34082, 'Ulysses', 1927, 'M', 180), +(34083, 'Roderick', 1927, 'M', 178), +(34084, 'Bertram', 1927, 'M', 177), +(34085, 'Booker', 1927, 'M', 177), +(34086, 'Scott', 1927, 'M', 176), +(34087, 'Everette', 1927, 'M', 175), +(34088, 'Nolan', 1927, 'M', 174), +(34089, 'Arturo', 1927, 'M', 172), +(34090, 'Freeman', 1927, 'M', 169), +(34091, 'Phil', 1927, 'M', 168), +(34092, 'Sol', 1927, 'M', 168), +(34093, 'Vance', 1927, 'M', 168), +(34094, 'Frederic', 1927, 'M', 166), +(34095, 'Anton', 1927, 'M', 165), +(34096, 'Al', 1927, 'M', 164), +(34097, 'Burl', 1927, 'M', 164), +(34098, 'Evan', 1927, 'M', 164), +(34099, 'Olen', 1927, 'M', 163), +(34100, 'Pablo', 1927, 'M', 163), +(34101, 'Enrique', 1927, 'M', 162), +(34102, 'Dalton', 1927, 'M', 161), +(34103, 'Riley', 1927, 'M', 161), +(34104, 'Augustine', 1927, 'M', 160), +(34105, 'Luke', 1927, 'M', 158), +(34106, 'Tomas', 1927, 'M', 158), +(34107, 'Omer', 1927, 'M', 157), +(34108, 'Ferdinand', 1927, 'M', 156), +(34109, 'Arlie', 1927, 'M', 155), +(34110, 'Augustus', 1927, 'M', 155), +(34111, 'Clay', 1927, 'M', 155), +(34112, 'Foster', 1927, 'M', 155), +(34113, 'Elroy', 1927, 'M', 154), +(34114, 'Carrol', 1927, 'M', 153), +(34115, 'Chris', 1927, 'M', 153), +(34116, 'Houston', 1927, 'M', 153), +(34117, 'Domingo', 1927, 'M', 152), +(34118, 'Ricardo', 1927, 'M', 152), +(34119, 'Lyman', 1927, 'M', 151), +(34120, 'Milo', 1927, 'M', 151), +(34121, 'Carlo', 1927, 'M', 150), +(34122, 'Alberto', 1927, 'M', 148), +(34123, 'Mathew', 1927, 'M', 148), +(34124, 'Julio', 1927, 'M', 147), +(34125, 'Morgan', 1927, 'M', 146), +(34126, 'Hoyt', 1927, 'M', 145), +(34127, 'Lucien', 1927, 'M', 145), +(34128, 'Major', 1927, 'M', 145), +(34129, 'Hobert', 1927, 'M', 144), +(34130, 'Noble', 1927, 'M', 144), +(34131, 'Mckinley', 1927, 'M', 143), +(34132, 'Davis', 1927, 'M', 142), +(34133, 'Marcel', 1927, 'M', 142), +(34134, 'Wilber', 1927, 'M', 142), +(34135, 'Alden', 1927, 'M', 141), +(34136, 'Dana', 1927, 'M', 141), +(34137, 'Emilio', 1927, 'M', 141), +(34138, 'Nickolas', 1927, 'M', 141), +(34139, 'Micheal', 1927, 'M', 140), +(34140, 'Newton', 1927, 'M', 140), +(34141, 'Abe', 1927, 'M', 139), +(34142, 'Blaine', 1927, 'M', 139), +(34143, 'Columbus', 1927, 'M', 139), +(34144, 'Justin', 1927, 'M', 139), +(34145, 'Hiram', 1927, 'M', 138), +(34146, 'Emile', 1927, 'M', 137), +(34147, 'Jeremiah', 1927, 'M', 137), +(34148, 'Dewitt', 1927, 'M', 136), +(34149, 'Orlando', 1927, 'M', 136), +(34150, 'Fletcher', 1927, 'M', 135), +(34151, 'Jules', 1927, 'M', 135), +(34152, 'Gaylord', 1927, 'M', 134), +(34153, 'Merton', 1927, 'M', 134), +(34154, 'Raymon', 1927, 'M', 134), +(34155, 'Harland', 1927, 'M', 133), +(34156, 'Harmon', 1927, 'M', 132), +(34157, 'Jewel', 1927, 'M', 132), +(34158, 'Kelly', 1927, 'M', 132), +(34159, 'Olin', 1927, 'M', 132), +(34160, 'Angel', 1927, 'M', 131), +(34161, 'Gary', 1927, 'M', 131), +(34162, 'Hugo', 1927, 'M', 131), +(34163, 'Joesph', 1927, 'M', 131), +(34164, 'Lincoln', 1927, 'M', 131), +(34165, 'Stanford', 1927, 'M', 131), +(34166, 'Anderson', 1927, 'M', 130), +(34167, 'Felipe', 1927, 'M', 130), +(34168, 'Arden', 1927, 'M', 129), +(34169, 'Jefferson', 1927, 'M', 129), +(34170, 'Mose', 1927, 'M', 129), +(34171, 'Elden', 1927, 'M', 128), +(34172, 'Hyman', 1927, 'M', 128), +(34173, 'Aloysius', 1927, 'M', 126), +(34174, 'Santos', 1927, 'M', 126), +(34175, 'Frances', 1927, 'M', 125), +(34176, 'Raleigh', 1927, 'M', 125), +(34177, 'Dorothy', 1927, 'M', 124), +(34178, 'Galen', 1927, 'M', 124), +(34179, 'Kent', 1927, 'M', 124), +(34180, 'Shelby', 1927, 'M', 124), +(34181, 'Waldo', 1927, 'M', 124), +(34182, 'Gail', 1927, 'M', 123), +(34183, 'Jerald', 1927, 'M', 123), +(34184, 'Verne', 1927, 'M', 123), +(34185, 'Vaughn', 1927, 'M', 121), +(34186, 'Alphonso', 1927, 'M', 120), +(34187, 'Ignacio', 1927, 'M', 120), +(34188, 'Arther', 1927, 'M', 119), +(34189, 'Elwin', 1927, 'M', 119), +(34190, 'Domenic', 1927, 'M', 118), +(34191, 'Ernesto', 1927, 'M', 118), +(34192, 'Lucius', 1927, 'M', 118), +(34193, 'Beverly', 1927, 'M', 117), +(34194, 'Daryl', 1927, 'M', 117), +(34195, 'Isaiah', 1927, 'M', 117), +(34196, 'Joshua', 1927, 'M', 117), +(34197, 'Lindbergh', 1927, 'M', 116), +(34198, 'Rosario', 1927, 'M', 116), +(34199, 'Bernice', 1927, 'M', 115), +(34200, 'Coleman', 1927, 'M', 115), +(34201, 'Lacy', 1927, 'M', 115), +(34202, 'Ezra', 1927, 'M', 114), +(34203, 'Haywood', 1927, 'M', 114), +(34204, 'Huey', 1927, 'M', 114), +(34205, 'Otha', 1927, 'M', 114), +(34206, 'Santiago', 1927, 'M', 114), +(34207, 'Valentine', 1927, 'M', 114), +(34208, 'Merlyn', 1927, 'M', 113), +(34209, 'Christian', 1927, 'M', 112), +(34210, 'Lupe', 1927, 'M', 112), +(34211, 'Ambrose', 1927, 'M', 111), +(34212, 'Hilton', 1927, 'M', 111), +(34213, 'Junius', 1927, 'M', 111), +(34214, 'Eldridge', 1927, 'M', 110), +(34215, 'Isiah', 1927, 'M', 110), +(34216, 'Sydney', 1927, 'M', 110), +(34217, 'Reed', 1927, 'M', 109), +(34218, 'Rodger', 1927, 'M', 109), +(34219, 'Theo', 1927, 'M', 109), +(34220, 'Jonathan', 1927, 'M', 108), +(34221, 'Mason', 1927, 'M', 108), +(34222, 'Ora', 1927, 'M', 108), +(34223, 'Rogers', 1927, 'M', 108), +(34224, 'Winford', 1927, 'M', 108), +(34225, 'Asa', 1927, 'M', 107), +(34226, 'Avery', 1927, 'M', 107), +(34227, 'Bennett', 1927, 'M', 107), +(34228, 'Doris', 1927, 'M', 107), +(34229, 'Gilberto', 1927, 'M', 107), +(34230, 'Quentin', 1927, 'M', 107), +(34231, 'Betty', 1927, 'M', 105), +(34232, 'Bryan', 1927, 'M', 105), +(34233, 'Carson', 1927, 'M', 105), +(34234, 'Andres', 1927, 'M', 104), +(34235, 'Casimir', 1927, 'M', 104), +(34236, 'Cyrus', 1927, 'M', 104), +(34237, 'Jewell', 1927, 'M', 104), +(34238, 'Ottis', 1927, 'M', 104), +(34239, 'Rupert', 1927, 'M', 104), +(34240, 'Sebastian', 1927, 'M', 104), +(34241, 'Maxwell', 1927, 'M', 103), +(34242, 'Monte', 1927, 'M', 103), +(34243, 'Talmadge', 1927, 'M', 103), +(34244, 'Benedict', 1927, 'M', 102), +(34245, 'Craig', 1927, 'M', 102), +(34246, 'Dee', 1927, 'M', 102), +(34247, 'Gregorio', 1927, 'M', 102), +(34248, 'Kyle', 1927, 'M', 102), +(34249, 'Lemuel', 1927, 'M', 102), +(34250, 'Kay', 1927, 'M', 101), +(34251, 'Oren', 1927, 'M', 101), +(34252, 'Rollin', 1927, 'M', 101), +(34253, 'Guillermo', 1927, 'M', 100), +(34254, 'Mary', 1928, 'F', 66866), +(34255, 'Betty', 1928, 'F', 36079), +(34256, 'Dorothy', 1928, 'F', 33726), +(34257, 'Helen', 1928, 'F', 22937), +(34258, 'Margaret', 1928, 'F', 20291), +(34259, 'Ruth', 1928, 'F', 17863), +(34260, 'Doris', 1928, 'F', 16564), +(34261, 'Barbara', 1928, 'F', 14868), +(34262, 'Virginia', 1928, 'F', 14500), +(34263, 'Shirley', 1928, 'F', 14208), +(34264, 'Patricia', 1928, 'F', 12331), +(34265, 'Jean', 1928, 'F', 12207), +(34266, 'Frances', 1928, 'F', 12137), +(34267, 'Elizabeth', 1928, 'F', 11763), +(34268, 'Mildred', 1928, 'F', 11652), +(34269, 'Anna', 1928, 'F', 10573), +(34270, 'Evelyn', 1928, 'F', 10536), +(34271, 'Lois', 1928, 'F', 10423), +(34272, 'Alice', 1928, 'F', 10139), +(34273, 'Dolores', 1928, 'F', 9615), +(34274, 'Marie', 1928, 'F', 9291), +(34275, 'Martha', 1928, 'F', 8247), +(34276, 'Norma', 1928, 'F', 8164), +(34277, 'Rose', 1928, 'F', 8159), +(34278, 'Gloria', 1928, 'F', 8115), +(34279, 'Phyllis', 1928, 'F', 7920), +(34280, 'Joan', 1928, 'F', 7857), +(34281, 'Irene', 1928, 'F', 7733), +(34282, 'Marjorie', 1928, 'F', 7636), +(34283, 'Joyce', 1928, 'F', 7242), +(34284, 'Louise', 1928, 'F', 7053), +(34285, 'Florence', 1928, 'F', 6970), +(34286, 'Catherine', 1928, 'F', 6908), +(34287, 'Ruby', 1928, 'F', 6696), +(34288, 'Lillian', 1928, 'F', 6571), +(34289, 'Eleanor', 1928, 'F', 6536), +(34290, 'Annie', 1928, 'F', 6325), +(34291, 'Marilyn', 1928, 'F', 6068), +(34292, 'Lorraine', 1928, 'F', 5985), +(34293, 'Thelma', 1928, 'F', 5976), +(34294, 'Gladys', 1928, 'F', 5793), +(34295, 'Josephine', 1928, 'F', 5670), +(34296, 'Nancy', 1928, 'F', 5536), +(34297, 'June', 1928, 'F', 5520), +(34298, 'Edna', 1928, 'F', 5476), +(34299, 'Beverly', 1928, 'F', 5433), +(34300, 'Marion', 1928, 'F', 5420), +(34301, 'Pauline', 1928, 'F', 5386), +(34302, 'Theresa', 1928, 'F', 5329), +(34303, 'Geraldine', 1928, 'F', 5154), +(34304, 'Lucille', 1928, 'F', 5090), +(34305, 'Grace', 1928, 'F', 4992), +(34306, 'Bernice', 1928, 'F', 4940), +(34307, 'Ann', 1928, 'F', 4928), +(34308, 'Ethel', 1928, 'F', 4924), +(34309, 'Edith', 1928, 'F', 4843), +(34310, 'Rita', 1928, 'F', 4809), +(34311, 'Juanita', 1928, 'F', 4729), +(34312, 'Hazel', 1928, 'F', 4654), +(34313, 'Audrey', 1928, 'F', 4627), +(34314, 'Donna', 1928, 'F', 4466), +(34315, 'Jane', 1928, 'F', 4408), +(34316, 'Wanda', 1928, 'F', 4316), +(34317, 'Sarah', 1928, 'F', 4244), +(34318, 'Clara', 1928, 'F', 4102), +(34319, 'Esther', 1928, 'F', 4095), +(34320, 'Emma', 1928, 'F', 4021), +(34321, 'Elaine', 1928, 'F', 4003), +(34322, 'Wilma', 1928, 'F', 3937), +(34323, 'Beatrice', 1928, 'F', 3923), +(34324, 'Marian', 1928, 'F', 3886), +(34325, 'Charlotte', 1928, 'F', 3472), +(34326, 'Elsie', 1928, 'F', 3467), +(34327, 'Willie', 1928, 'F', 3442), +(34328, 'Katherine', 1928, 'F', 3398), +(34329, 'Peggy', 1928, 'F', 3380), +(34330, 'Carol', 1928, 'F', 3350), +(34331, 'Vivian', 1928, 'F', 3311), +(34332, 'Eva', 1928, 'F', 3211), +(34333, 'Julia', 1928, 'F', 3206), +(34334, 'Bertha', 1928, 'F', 3160), +(34335, 'Kathleen', 1928, 'F', 3151), +(34336, 'Laura', 1928, 'F', 3145), +(34337, 'Maxine', 1928, 'F', 3129), +(34338, 'Agnes', 1928, 'F', 3021), +(34339, 'Gertrude', 1928, 'F', 3012), +(34340, 'Ida', 1928, 'F', 2995), +(34341, 'Rosemary', 1928, 'F', 2970), +(34342, 'Bonnie', 1928, 'F', 2926), +(34343, 'Jeanne', 1928, 'F', 2876), +(34344, 'Carolyn', 1928, 'F', 2846), +(34345, 'Vera', 1928, 'F', 2846), +(34346, 'Anne', 1928, 'F', 2823), +(34347, 'Delores', 1928, 'F', 2809), +(34348, 'Janet', 1928, 'F', 2784), +(34349, 'Billie', 1928, 'F', 2776), +(34350, 'Jacqueline', 1928, 'F', 2737), +(34351, 'Kathryn', 1928, 'F', 2680), +(34352, 'Ellen', 1928, 'F', 2679), +(34353, 'Ella', 1928, 'F', 2669), +(34354, 'Bessie', 1928, 'F', 2660), +(34355, 'Eileen', 1928, 'F', 2644), +(34356, 'Viola', 1928, 'F', 2626), +(34357, 'Lillie', 1928, 'F', 2620), +(34358, 'Maria', 1928, 'F', 2561), +(34359, 'Arlene', 1928, 'F', 2523), +(34360, 'Alma', 1928, 'F', 2499), +(34361, 'Margie', 1928, 'F', 2436), +(34362, 'Jessie', 1928, 'F', 2423), +(34363, 'Pearl', 1928, 'F', 2364), +(34364, 'Nellie', 1928, 'F', 2343), +(34365, 'Violet', 1928, 'F', 2320), +(34366, 'Lucy', 1928, 'F', 2318), +(34367, 'Georgia', 1928, 'F', 2291), +(34368, 'Velma', 1928, 'F', 2291), +(34369, 'Myrtle', 1928, 'F', 2242), +(34370, 'Ramona', 1928, 'F', 2237), +(34371, 'Minnie', 1928, 'F', 2229), +(34372, 'Sylvia', 1928, 'F', 2223), +(34373, 'Christine', 1928, 'F', 2177), +(34374, 'Mattie', 1928, 'F', 2128), +(34375, 'Leona', 1928, 'F', 2083), +(34376, 'Loretta', 1928, 'F', 1996), +(34377, 'Geneva', 1928, 'F', 1981), +(34378, 'Rosa', 1928, 'F', 1968), +(34379, 'Jeanette', 1928, 'F', 1943), +(34380, 'Roberta', 1928, 'F', 1924), +(34381, 'Sally', 1928, 'F', 1889), +(34382, 'Sara', 1928, 'F', 1868), +(34383, 'Mae', 1928, 'F', 1809), +(34384, 'Lena', 1928, 'F', 1806), +(34385, 'Stella', 1928, 'F', 1803), +(34386, 'Harriet', 1928, 'F', 1784), +(34387, 'Genevieve', 1928, 'F', 1744), +(34388, 'Mabel', 1928, 'F', 1743), +(34389, 'Claire', 1928, 'F', 1733), +(34390, 'Anita', 1928, 'F', 1724), +(34391, 'Eunice', 1928, 'F', 1721), +(34392, 'Muriel', 1928, 'F', 1661), +(34393, 'Naomi', 1928, 'F', 1652), +(34394, 'Joanne', 1928, 'F', 1651), +(34395, 'Carrie', 1928, 'F', 1650), +(34396, 'Jennie', 1928, 'F', 1643), +(34397, 'Dora', 1928, 'F', 1641), +(34398, 'Patsy', 1928, 'F', 1624), +(34399, 'Opal', 1928, 'F', 1589), +(34400, 'Marguerite', 1928, 'F', 1583), +(34401, 'Hilda', 1928, 'F', 1574), +(34402, 'Janice', 1928, 'F', 1568), +(34403, 'Alberta', 1928, 'F', 1555), +(34404, 'Emily', 1928, 'F', 1554), +(34405, 'Verna', 1928, 'F', 1458), +(34406, 'Blanche', 1928, 'F', 1426), +(34407, 'Beulah', 1928, 'F', 1422), +(34408, 'Cora', 1928, 'F', 1394), +(34409, 'Rosie', 1928, 'F', 1384), +(34410, 'Erma', 1928, 'F', 1382), +(34411, 'Lula', 1928, 'F', 1377), +(34412, 'Hattie', 1928, 'F', 1372), +(34413, 'Inez', 1928, 'F', 1371), +(34414, 'Fannie', 1928, 'F', 1361), +(34415, 'Constance', 1928, 'F', 1318), +(34416, 'Imogene', 1928, 'F', 1316), +(34417, 'Laverne', 1928, 'F', 1294), +(34418, 'Lola', 1928, 'F', 1292), +(34419, 'Bobbie', 1928, 'F', 1256), +(34420, 'Madeline', 1928, 'F', 1251), +(34421, 'Miriam', 1928, 'F', 1250), +(34422, 'Daisy', 1928, 'F', 1245), +(34423, 'Rosalie', 1928, 'F', 1235), +(34424, 'Ada', 1928, 'F', 1212), +(34425, 'Teresa', 1928, 'F', 1212), +(34426, 'Flora', 1928, 'F', 1200), +(34427, 'Marcella', 1928, 'F', 1192), +(34428, 'Caroline', 1928, 'F', 1189), +(34429, 'Darlene', 1928, 'F', 1186), +(34430, 'Rachel', 1928, 'F', 1180), +(34431, 'Mamie', 1928, 'F', 1178), +(34432, 'Jo', 1928, 'F', 1169), +(34433, 'Mable', 1928, 'F', 1152), +(34434, 'Yvonne', 1928, 'F', 1133), +(34435, 'Johnnie', 1928, 'F', 1126), +(34436, 'Rebecca', 1928, 'F', 1122), +(34437, 'Colleen', 1928, 'F', 1099), +(34438, 'Irma', 1928, 'F', 1099), +(34439, 'Bettie', 1928, 'F', 1098), +(34440, 'Estelle', 1928, 'F', 1094), +(34441, 'Joy', 1928, 'F', 1092), +(34442, 'Eula', 1928, 'F', 1089), +(34443, 'Nora', 1928, 'F', 1083), +(34444, 'Eloise', 1928, 'F', 1079), +(34445, 'Faye', 1928, 'F', 1078), +(34446, 'Ernestine', 1928, 'F', 1057), +(34447, 'Susie', 1928, 'F', 1051), +(34448, 'Lila', 1928, 'F', 1033), +(34449, 'Antoinette', 1928, 'F', 1026), +(34450, 'Nina', 1928, 'F', 1022), +(34451, 'Maggie', 1928, 'F', 1020), +(34452, 'Carmen', 1928, 'F', 1017), +(34453, 'Iris', 1928, 'F', 1010), +(34454, 'Joann', 1928, 'F', 1003), +(34455, 'Bette', 1928, 'F', 1000), +(34456, 'Gwendolyn', 1928, 'F', 988), +(34457, 'Regina', 1928, 'F', 955), +(34458, 'Winifred', 1928, 'F', 955), +(34459, 'Olga', 1928, 'F', 934), +(34460, 'Lorene', 1928, 'F', 929), +(34461, 'Rosemarie', 1928, 'F', 913), +(34462, 'Della', 1928, 'F', 896), +(34463, 'Sadie', 1928, 'F', 896), +(34464, 'Jeannette', 1928, 'F', 888), +(34465, 'Priscilla', 1928, 'F', 886), +(34466, 'Angelina', 1928, 'F', 872), +(34467, 'Melba', 1928, 'F', 868), +(34468, 'Charlene', 1928, 'F', 854), +(34469, 'Henrietta', 1928, 'F', 847), +(34470, 'Victoria', 1928, 'F', 832), +(34471, 'Katie', 1928, 'F', 823), +(34472, 'Lydia', 1928, 'F', 816), +(34473, 'Susan', 1928, 'F', 812), +(34474, 'Fern', 1928, 'F', 806), +(34475, 'Essie', 1928, 'F', 805), +(34476, 'Olive', 1928, 'F', 790), +(34477, 'Annette', 1928, 'F', 780), +(34478, 'Sue', 1928, 'F', 778), +(34479, 'Therese', 1928, 'F', 776), +(34480, 'Amelia', 1928, 'F', 755), +(34481, 'Ollie', 1928, 'F', 753), +(34482, 'Freda', 1928, 'F', 749), +(34483, 'Jewel', 1928, 'F', 744), +(34484, 'Reba', 1928, 'F', 728), +(34485, 'Adeline', 1928, 'F', 722), +(34486, 'Nettie', 1928, 'F', 709), +(34487, 'Janie', 1928, 'F', 708), +(34488, 'Sophie', 1928, 'F', 708), +(34489, 'May', 1928, 'F', 705), +(34490, 'Veronica', 1928, 'F', 695), +(34491, 'Natalie', 1928, 'F', 687), +(34492, 'Nadine', 1928, 'F', 679), +(34493, 'Angeline', 1928, 'F', 672), +(34494, 'Bettye', 1928, 'F', 663), +(34495, 'Luella', 1928, 'F', 661), +(34496, 'Lela', 1928, 'F', 659), +(34497, 'Connie', 1928, 'F', 657), +(34498, 'Lottie', 1928, 'F', 657), +(34499, 'Ora', 1928, 'F', 656), +(34500, 'Isabel', 1928, 'F', 652), +(34501, 'Jewell', 1928, 'F', 652), +(34502, 'Deloris', 1928, 'F', 648), +(34503, 'Iva', 1928, 'F', 643), +(34504, 'Dorthy', 1928, 'F', 642), +(34505, 'Judith', 1928, 'F', 642), +(34506, 'Lucile', 1928, 'F', 638), +(34507, 'Adele', 1928, 'F', 636), +(34508, 'Goldie', 1928, 'F', 636), +(34509, 'Sallie', 1928, 'F', 635), +(34510, 'Dorothea', 1928, 'F', 629), +(34511, 'Fay', 1928, 'F', 628), +(34512, 'Angela', 1928, 'F', 622), +(34513, 'Diane', 1928, 'F', 616), +(34514, 'Ina', 1928, 'F', 614), +(34515, 'Lenora', 1928, 'F', 608), +(34516, 'Cleo', 1928, 'F', 606), +(34517, 'Selma', 1928, 'F', 597), +(34518, 'Addie', 1928, 'F', 591), +(34519, 'Leola', 1928, 'F', 588), +(34520, 'Suzanne', 1928, 'F', 584), +(34521, 'Etta', 1928, 'F', 583), +(34522, 'Corinne', 1928, 'F', 582), +(34523, 'Cecelia', 1928, 'F', 579), +(34524, 'Francis', 1928, 'F', 571), +(34525, 'Cecilia', 1928, 'F', 569), +(34526, 'Clarice', 1928, 'F', 568), +(34527, 'Annabelle', 1928, 'F', 566), +(34528, 'Elva', 1928, 'F', 560), +(34529, 'Paula', 1928, 'F', 558), +(34530, 'Jimmie', 1928, 'F', 556), +(34531, 'Linda', 1928, 'F', 554), +(34532, 'Celia', 1928, 'F', 550), +(34533, 'Mavis', 1928, 'F', 547), +(34534, 'Marcia', 1928, 'F', 540), +(34535, 'Estella', 1928, 'F', 535), +(34536, 'Isabelle', 1928, 'F', 533), +(34537, 'Effie', 1928, 'F', 531), +(34538, 'Ola', 1928, 'F', 526), +(34539, 'Ila', 1928, 'F', 525), +(34540, 'Elinor', 1928, 'F', 524), +(34541, 'Myra', 1928, 'F', 521), +(34542, 'Glenna', 1928, 'F', 519), +(34543, 'Alta', 1928, 'F', 516), +(34544, 'Lee', 1928, 'F', 513), +(34545, 'Patty', 1928, 'F', 512), +(34546, 'Frankie', 1928, 'F', 510), +(34547, 'Arline', 1928, 'F', 508), +(34548, 'Helene', 1928, 'F', 506), +(34549, 'Bernadine', 1928, 'F', 505), +(34550, 'Rhoda', 1928, 'F', 504), +(34551, 'Gracie', 1928, 'F', 503), +(34552, 'Willa', 1928, 'F', 501), +(34553, 'Carmela', 1928, 'F', 499), +(34554, 'Nell', 1928, 'F', 498), +(34555, 'Aileen', 1928, 'F', 486), +(34556, 'Elvira', 1928, 'F', 482), +(34557, 'Lizzie', 1928, 'F', 476), +(34558, 'Cynthia', 1928, 'F', 472), +(34559, 'Jacquelyn', 1928, 'F', 468), +(34560, 'Earline', 1928, 'F', 465), +(34561, 'Pat', 1928, 'F', 458), +(34562, 'Eleanore', 1928, 'F', 454), +(34563, 'Elnora', 1928, 'F', 453), +(34564, 'Olivia', 1928, 'F', 442), +(34565, 'Nelda', 1928, 'F', 440), +(34566, 'Virgie', 1928, 'F', 437), +(34567, 'Jackie', 1928, 'F', 436), +(34568, 'Robert', 1928, 'F', 435), +(34569, 'Guadalupe', 1928, 'F', 434), +(34570, 'Renee', 1928, 'F', 433), +(34571, 'Rena', 1928, 'F', 429), +(34572, 'James', 1928, 'F', 427), +(34573, 'John', 1928, 'F', 425), +(34574, 'Lou', 1928, 'F', 425), +(34575, 'Jeannine', 1928, 'F', 424), +(34576, 'Elma', 1928, 'F', 423), +(34577, 'Mona', 1928, 'F', 422), +(34578, 'Nannie', 1928, 'F', 420), +(34579, 'Sybil', 1928, 'F', 419), +(34580, 'Rosetta', 1928, 'F', 417), +(34581, 'Lenore', 1928, 'F', 415), +(34582, 'Yolanda', 1928, 'F', 410), +(34583, 'Diana', 1928, 'F', 408), +(34584, 'Eugenia', 1928, 'F', 407), +(34585, 'Leah', 1928, 'F', 404), +(34586, 'Carmella', 1928, 'F', 399), +(34587, 'Margery', 1928, 'F', 399), +(34588, 'Flossie', 1928, 'F', 397), +(34589, 'Bertie', 1928, 'F', 396), +(34590, 'Matilda', 1928, 'F', 396), +(34591, 'Loraine', 1928, 'F', 393), +(34592, 'Dolly', 1928, 'F', 390), +(34593, 'Polly', 1928, 'F', 390), +(34594, 'Pearlie', 1928, 'F', 388), +(34595, 'Marianne', 1928, 'F', 387), +(34596, 'Avis', 1928, 'F', 386), +(34597, 'Dixie', 1928, 'F', 386), +(34598, 'Ruthie', 1928, 'F', 384), +(34599, 'Dona', 1928, 'F', 381), +(34600, 'Consuelo', 1928, 'F', 379), +(34601, 'Harriett', 1928, 'F', 379), +(34602, 'Claudia', 1928, 'F', 376), +(34603, 'Frieda', 1928, 'F', 372), +(34604, 'Bernadette', 1928, 'F', 371), +(34605, 'Christina', 1928, 'F', 371), +(34606, 'Zelma', 1928, 'F', 371), +(34607, 'Lupe', 1928, 'F', 369), +(34608, 'Amy', 1928, 'F', 366), +(34609, 'Odessa', 1928, 'F', 364), +(34610, 'Winnie', 1928, 'F', 364), +(34611, 'Josie', 1928, 'F', 363), +(34612, 'Concetta', 1928, 'F', 362), +(34613, 'Aurora', 1928, 'F', 361), +(34614, 'Wilda', 1928, 'F', 361), +(34615, 'Maryann', 1928, 'F', 360), +(34616, 'Rosella', 1928, 'F', 360), +(34617, 'Mollie', 1928, 'F', 358), +(34618, 'Neva', 1928, 'F', 354), +(34619, 'Eddie', 1928, 'F', 353), +(34620, 'Dollie', 1928, 'F', 350), +(34621, 'William', 1928, 'F', 349), +(34622, 'Lorna', 1928, 'F', 348), +(34623, 'Lily', 1928, 'F', 346), +(34624, 'Lavonne', 1928, 'F', 340), +(34625, 'Earnestine', 1928, 'F', 335), +(34626, 'Myrna', 1928, 'F', 335), +(34627, 'Corrine', 1928, 'F', 334), +(34628, 'Tommie', 1928, 'F', 333), +(34629, 'Nola', 1928, 'F', 331), +(34630, 'Cecile', 1928, 'F', 328), +(34631, 'Beverley', 1928, 'F', 321), +(34632, 'Betsy', 1928, 'F', 317), +(34633, 'Margarita', 1928, 'F', 315), +(34634, 'Molly', 1928, 'F', 314), +(34635, 'Cornelia', 1928, 'F', 312), +(34636, 'Letha', 1928, 'F', 309), +(34637, 'Millie', 1928, 'F', 304), +(34638, 'Antonia', 1928, 'F', 302), +(34639, 'Robbie', 1928, 'F', 300), +(34640, 'Delia', 1928, 'F', 299), +(34641, 'Lora', 1928, 'F', 296), +(34642, 'Alicia', 1928, 'F', 293), +(34643, 'Merle', 1928, 'F', 293), +(34644, 'Madge', 1928, 'F', 292), +(34645, 'Aline', 1928, 'F', 291), +(34646, 'Maude', 1928, 'F', 291), +(34647, 'Gilda', 1928, 'F', 290), +(34648, 'Allie', 1928, 'F', 289), +(34649, 'Beth', 1928, 'F', 289), +(34650, 'Earlene', 1928, 'F', 285), +(34651, 'Joanna', 1928, 'F', 285), +(34652, 'Maureen', 1928, 'F', 284), +(34653, 'Ophelia', 1928, 'F', 282), +(34654, 'Reva', 1928, 'F', 282), +(34655, 'Jerry', 1928, 'F', 281), +(34656, 'Florine', 1928, 'F', 280), +(34657, 'Hope', 1928, 'F', 279), +(34658, 'Leila', 1928, 'F', 279), +(34659, 'Leatrice', 1928, 'F', 277), +(34660, 'Alyce', 1928, 'F', 276), +(34661, 'Melva', 1928, 'F', 276), +(34662, 'Iona', 1928, 'F', 275), +(34663, 'Hannah', 1928, 'F', 274), +(34664, 'Ilene', 1928, 'F', 272), +(34665, 'Charles', 1928, 'F', 271), +(34666, 'Lilly', 1928, 'F', 271), +(34667, 'Nona', 1928, 'F', 271), +(34668, 'Helena', 1928, 'F', 270), +(34669, 'Roslyn', 1928, 'F', 270), +(34670, 'Berniece', 1928, 'F', 269), +(34671, 'Georgie', 1928, 'F', 267), +(34672, 'Charmaine', 1928, 'F', 264), +(34673, 'Corine', 1928, 'F', 264), +(34674, 'Edythe', 1928, 'F', 261), +(34675, 'Lorena', 1928, 'F', 259), +(34676, 'Queen', 1928, 'F', 258), +(34677, 'Louella', 1928, 'F', 255), +(34678, 'Jaunita', 1928, 'F', 253), +(34679, 'Mercedes', 1928, 'F', 252), +(34680, 'Elena', 1928, 'F', 251), +(34681, 'Emogene', 1928, 'F', 251), +(34682, 'Carole', 1928, 'F', 248), +(34683, 'Marietta', 1928, 'F', 248), +(34684, 'Amanda', 1928, 'F', 247), +(34685, 'Judy', 1928, 'F', 245), +(34686, 'Delphine', 1928, 'F', 242), +(34687, 'Sheila', 1928, 'F', 242), +(34688, 'Lelia', 1928, 'F', 241), +(34689, 'Marceline', 1928, 'F', 241), +(34690, 'Adelaide', 1928, 'F', 240), +(34691, 'Eliza', 1928, 'F', 240), +(34692, 'Elouise', 1928, 'F', 240), +(34693, 'Lessie', 1928, 'F', 240), +(34694, 'Madelyn', 1928, 'F', 238), +(34695, 'Callie', 1928, 'F', 237), +(34696, 'Greta', 1928, 'F', 235), +(34697, 'Sandra', 1928, 'F', 235), +(34698, 'Dorris', 1928, 'F', 233), +(34699, 'Jannie', 1928, 'F', 233), +(34700, 'Pansy', 1928, 'F', 233), +(34701, 'Allene', 1928, 'F', 232), +(34702, 'Zelda', 1928, 'F', 232), +(34703, 'Clare', 1928, 'F', 231), +(34704, 'George', 1928, 'F', 230), +(34705, 'Lorine', 1928, 'F', 229), +(34706, 'Esperanza', 1928, 'F', 228), +(34707, 'Ester', 1928, 'F', 228), +(34708, 'Evangeline', 1928, 'F', 227), +(34709, 'Ima', 1928, 'F', 227), +(34710, 'Bennie', 1928, 'F', 226), +(34711, 'Millicent', 1928, 'F', 226), +(34712, 'Leota', 1928, 'F', 225), +(34713, 'Philomena', 1928, 'F', 225), +(34714, 'Gene', 1928, 'F', 223), +(34715, 'Iola', 1928, 'F', 223), +(34716, 'Kay', 1928, 'F', 223), +(34717, 'Winona', 1928, 'F', 223), +(34718, 'Doreen', 1928, 'F', 221), +(34719, 'Hester', 1928, 'F', 218), +(34720, 'Monica', 1928, 'F', 218), +(34721, 'Freddie', 1928, 'F', 217), +(34722, 'Leta', 1928, 'F', 214), +(34723, 'Zella', 1928, 'F', 213), +(34724, 'Faith', 1928, 'F', 212), +(34725, 'Joe', 1928, 'F', 212), +(34726, 'Ione', 1928, 'F', 210), +(34727, 'Alene', 1928, 'F', 207), +(34728, 'Beryl', 1928, 'F', 207), +(34729, 'Johanna', 1928, 'F', 207), +(34730, 'Julie', 1928, 'F', 205), +(34731, 'Maudie', 1928, 'F', 205), +(34732, 'Josefina', 1928, 'F', 204), +(34733, 'Ardis', 1928, 'F', 202), +(34734, 'Germaine', 1928, 'F', 202), +(34735, 'Dessie', 1928, 'F', 201), +(34736, 'Katharine', 1928, 'F', 201), +(34737, 'Richard', 1928, 'F', 201), +(34738, 'Juana', 1928, 'F', 200), +(34739, 'Retha', 1928, 'F', 199), +(34740, 'Claudine', 1928, 'F', 198), +(34741, 'Francisca', 1928, 'F', 198), +(34742, 'Roxie', 1928, 'F', 197), +(34743, 'Tillie', 1928, 'F', 197), +(34744, 'Althea', 1928, 'F', 196), +(34745, 'Bonita', 1928, 'F', 196), +(34746, 'Maurine', 1928, 'F', 196), +(34747, 'Marjory', 1928, 'F', 195), +(34748, 'Sophia', 1928, 'F', 195), +(34749, 'Syble', 1928, 'F', 195), +(34750, 'Janis', 1928, 'F', 194), +(34751, 'Bobby', 1928, 'F', 193), +(34752, 'Rae', 1928, 'F', 193), +(34753, 'Lucia', 1928, 'F', 192), +(34754, 'Manuela', 1928, 'F', 192), +(34755, 'Charlie', 1928, 'F', 188), +(34756, 'Dawn', 1928, 'F', 188), +(34757, 'Gwen', 1928, 'F', 187), +(34758, 'Rosalyn', 1928, 'F', 186), +(34759, 'Angie', 1928, 'F', 185), +(34760, 'Jenny', 1928, 'F', 185), +(34761, 'Glenda', 1928, 'F', 184), +(34762, 'Sonia', 1928, 'F', 184), +(34763, 'Elda', 1928, 'F', 183), +(34764, 'Georgette', 1928, 'F', 183), +(34765, 'Marylou', 1928, 'F', 183), +(34766, 'Joseph', 1928, 'F', 182), +(34767, 'Petra', 1928, 'F', 182), +(34768, 'Camille', 1928, 'F', 181), +(34769, 'Twila', 1928, 'F', 181), +(34770, 'Valerie', 1928, 'F', 180), +(34771, 'Gussie', 1928, 'F', 178), +(34772, 'Isabella', 1928, 'F', 178), +(34773, 'Dortha', 1928, 'F', 177), +(34774, 'Gretchen', 1928, 'F', 177), +(34775, 'Phoebe', 1928, 'F', 177), +(34776, 'Vilma', 1928, 'F', 177), +(34777, 'Oma', 1928, 'F', 176), +(34778, 'Vada', 1928, 'F', 175), +(34779, 'Velda', 1928, 'F', 175), +(34780, 'Gail', 1928, 'F', 174), +(34781, 'Wilhelmina', 1928, 'F', 174), +(34782, 'Edwina', 1928, 'F', 173), +(34783, 'Verda', 1928, 'F', 173), +(34784, 'Delma', 1928, 'F', 172), +(34785, 'Isabell', 1928, 'F', 172), +(34786, 'Leora', 1928, 'F', 172), +(34787, 'Shirlee', 1928, 'F', 172), +(34788, 'Madeleine', 1928, 'F', 171), +(34789, 'Donald', 1928, 'F', 170), +(34790, 'Nita', 1928, 'F', 170), +(34791, 'Alfreda', 1928, 'F', 167), +(34792, 'Floy', 1928, 'F', 167), +(34793, 'Laurel', 1928, 'F', 165), +(34794, 'Verla', 1928, 'F', 165), +(34795, 'Belva', 1928, 'F', 164), +(34796, 'Charline', 1928, 'F', 164), +(34797, 'Vida', 1928, 'F', 164), +(34798, 'Doretha', 1928, 'F', 163), +(34799, 'Hallie', 1928, 'F', 163), +(34800, 'Margret', 1928, 'F', 163), +(34801, 'Alva', 1928, 'F', 162), +(34802, 'Hellen', 1928, 'F', 161), +(34803, 'Rosalee', 1928, 'F', 161), +(34804, 'Vernice', 1928, 'F', 161), +(34805, 'Erna', 1928, 'F', 160), +(34806, 'Marlys', 1928, 'F', 160), +(34807, 'Sharon', 1928, 'F', 160), +(34808, 'Arleen', 1928, 'F', 159), +(34809, 'Billy', 1928, 'F', 159), +(34810, 'Elsa', 1928, 'F', 158), +(34811, 'Augusta', 1928, 'F', 157), +(34812, 'Aurelia', 1928, 'F', 157), +(34813, 'Birdie', 1928, 'F', 157), +(34814, 'Enid', 1928, 'F', 157), +(34815, 'Lucinda', 1928, 'F', 157), +(34816, 'Rowena', 1928, 'F', 157), +(34817, 'Elisabeth', 1928, 'F', 156), +(34818, 'Louisa', 1928, 'F', 156), +(34819, 'Yvette', 1928, 'F', 156), +(34820, 'Dorotha', 1928, 'F', 155), +(34821, 'Elisa', 1928, 'F', 155), +(34822, 'Lauretta', 1928, 'F', 155), +(34823, 'Magdalene', 1928, 'F', 155), +(34824, 'Minerva', 1928, 'F', 154), +(34825, 'Valeria', 1928, 'F', 153), +(34826, 'Vernell', 1928, 'F', 152), +(34827, 'Janette', 1928, 'F', 151), +(34828, 'Reta', 1928, 'F', 151), +(34829, 'Rhea', 1928, 'F', 151), +(34830, 'Rosalind', 1928, 'F', 151), +(34831, 'Theodora', 1928, 'F', 150), +(34832, 'Fanny', 1928, 'F', 149), +(34833, 'Elise', 1928, 'F', 148), +(34834, 'Johnie', 1928, 'F', 148), +(34835, 'Freida', 1928, 'F', 147), +(34836, 'Harriette', 1928, 'F', 146), +(34837, 'Myrtis', 1928, 'F', 146), +(34838, 'Pearline', 1928, 'F', 146), +(34839, 'Socorro', 1928, 'F', 146), +(34840, 'Carolina', 1928, 'F', 145), +(34841, 'Juliette', 1928, 'F', 143), +(34842, 'Oleta', 1928, 'F', 143), +(34843, 'Terry', 1928, 'F', 143), +(34844, 'Dovie', 1928, 'F', 142), +(34845, 'Justine', 1928, 'F', 142), +(34846, 'Thomas', 1928, 'F', 142), +(34847, 'Alvina', 1928, 'F', 141), +(34848, 'Lavon', 1928, 'F', 141), +(34849, 'Sammie', 1928, 'F', 141), +(34850, 'Ouida', 1928, 'F', 139), +(34851, 'Romona', 1928, 'F', 139), +(34852, 'Edward', 1928, 'F', 138), +(34853, 'Mazie', 1928, 'F', 138), +(34854, 'Theda', 1928, 'F', 138), +(34855, 'Tina', 1928, 'F', 137), +(34856, 'Veda', 1928, 'F', 137), +(34857, 'Agatha', 1928, 'F', 135), +(34858, 'Ava', 1928, 'F', 135), +(34859, 'Hortense', 1928, 'F', 135), +(34860, 'Ofelia', 1928, 'F', 135), +(34861, 'Billye', 1928, 'F', 134), +(34862, 'Gertie', 1928, 'F', 134), +(34863, 'Rubye', 1928, 'F', 134), +(34864, 'Lue', 1928, 'F', 133), +(34865, 'Nan', 1928, 'F', 133), +(34866, 'Elvera', 1928, 'F', 132), +(34867, 'Larue', 1928, 'F', 132), +(34868, 'Margarette', 1928, 'F', 132), +(34869, 'Celeste', 1928, 'F', 131), +(34870, 'Kate', 1928, 'F', 131), +(34871, 'Deborah', 1928, 'F', 130), +(34872, 'Florene', 1928, 'F', 130), +(34873, 'Camilla', 1928, 'F', 129), +(34874, 'Zola', 1928, 'F', 129), +(34875, 'Madonna', 1928, 'F', 128), +(34876, 'Mozelle', 1928, 'F', 128), +(34877, 'Tessie', 1928, 'F', 128), +(34878, 'Celestine', 1928, 'F', 127), +(34879, 'Ardith', 1928, 'F', 126), +(34880, 'Catharine', 1928, 'F', 126), +(34881, 'Roma', 1928, 'F', 126), +(34882, 'Alpha', 1928, 'F', 125), +(34883, 'Blanch', 1928, 'F', 125), +(34884, 'Lavern', 1928, 'F', 125), +(34885, 'Linnie', 1928, 'F', 124), +(34886, 'Stephanie', 1928, 'F', 124), +(34887, 'Berta', 1928, 'F', 123), +(34888, 'Georgiana', 1928, 'F', 123), +(34889, 'Lura', 1928, 'F', 123), +(34890, 'Noreen', 1928, 'F', 123), +(34891, 'Paul', 1928, 'F', 123), +(34892, 'Una', 1928, 'F', 123), +(34893, 'Kitty', 1928, 'F', 122), +(34894, 'Ursula', 1928, 'F', 122), +(34895, 'Darleen', 1928, 'F', 120), +(34896, 'Leonora', 1928, 'F', 120), +(34897, 'Myrtice', 1928, 'F', 120), +(34898, 'Carlene', 1928, 'F', 119), +(34899, 'Gayle', 1928, 'F', 119), +(34900, 'Marianna', 1928, 'F', 119), +(34901, 'Eldora', 1928, 'F', 117), +(34902, 'Garnet', 1928, 'F', 117), +(34903, 'Adrienne', 1928, 'F', 116), +(34904, 'Albertha', 1928, 'F', 116), +(34905, 'Filomena', 1928, 'F', 116), +(34906, 'Gerry', 1928, 'F', 115), +(34907, 'Lynn', 1928, 'F', 115), +(34908, 'Jeane', 1928, 'F', 114), +(34909, 'Lona', 1928, 'F', 114), +(34910, 'Martina', 1928, 'F', 114), +(34911, 'Caryl', 1928, 'F', 113), +(34912, 'Cassie', 1928, 'F', 113), +(34913, 'Ona', 1928, 'F', 113), +(34914, 'Roselyn', 1928, 'F', 113), +(34915, 'Maryjane', 1928, 'F', 112), +(34916, 'Treva', 1928, 'F', 112), +(34917, 'Emilia', 1928, 'F', 111), +(34918, 'Adela', 1928, 'F', 110), +(34919, 'Eleanora', 1928, 'F', 110), +(34920, 'Georgianna', 1928, 'F', 110), +(34921, 'Vesta', 1928, 'F', 110), +(34922, 'Ethelyn', 1928, 'F', 109), +(34923, 'Idella', 1928, 'F', 109), +(34924, 'Pattie', 1928, 'F', 109), +(34925, 'Lavina', 1928, 'F', 108), +(34926, 'Artie', 1928, 'F', 107), +(34927, 'Daphne', 1928, 'F', 107), +(34928, 'Easter', 1928, 'F', 107), +(34929, 'Jayne', 1928, 'F', 107), +(34930, 'Margarett', 1928, 'F', 107), +(34931, 'Mayme', 1928, 'F', 107), +(34932, 'Andrea', 1928, 'F', 106), +(34933, 'Clementine', 1928, 'F', 106), +(34934, 'Ladonna', 1928, 'F', 106), +(34935, 'Frank', 1928, 'F', 105), +(34936, 'Peggie', 1928, 'F', 105), +(34937, 'Rosina', 1928, 'F', 105), +(34938, 'Adell', 1928, 'F', 104), +(34939, 'Angelita', 1928, 'F', 104), +(34940, 'Antonette', 1928, 'F', 104), +(34941, 'Kathrine', 1928, 'F', 104), +(34942, 'Raymond', 1928, 'F', 104), +(34943, 'Katheryn', 1928, 'F', 103), +(34944, 'Lettie', 1928, 'F', 103), +(34945, 'Dottie', 1928, 'F', 102), +(34946, 'Leslie', 1928, 'F', 102), +(34947, 'Magdalena', 1928, 'F', 102), +(34948, 'Albina', 1928, 'F', 101), +(34949, 'Annabell', 1928, 'F', 101), +(34950, 'Laverna', 1928, 'F', 101), +(34951, 'Leone', 1928, 'F', 101), +(34952, 'Marilynn', 1928, 'F', 101), +(34953, 'Marvel', 1928, 'F', 101), +(34954, 'Mina', 1928, 'F', 101), +(34955, 'Vergie', 1928, 'F', 101), +(34956, 'Gearldine', 1928, 'F', 100), +(34957, 'Ira', 1928, 'F', 100), +(34958, 'Magnolia', 1928, 'F', 100), +(34959, 'Novella', 1928, 'F', 100), +(34960, 'Pamela', 1928, 'F', 100), +(34961, 'Robert', 1928, 'M', 60680), +(34962, 'John', 1928, 'M', 53747), +(34963, 'James', 1928, 'M', 52750), +(34964, 'William', 1928, 'M', 49102), +(34965, 'Charles', 1928, 'M', 31242), +(34966, 'Richard', 1928, 'M', 28790), +(34967, 'Donald', 1928, 'M', 25707), +(34968, 'George', 1928, 'M', 24398), +(34969, 'Joseph', 1928, 'M', 22318), +(34970, 'Edward', 1928, 'M', 18481), +(34971, 'Thomas', 1928, 'M', 16577), +(34972, 'Frank', 1928, 'M', 13569), +(34973, 'Paul', 1928, 'M', 13160), +(34974, 'Harold', 1928, 'M', 12673), +(34975, 'Jack', 1928, 'M', 12488), +(34976, 'Raymond', 1928, 'M', 11954), +(34977, 'Kenneth', 1928, 'M', 11165), +(34978, 'Walter', 1928, 'M', 10646), +(34979, 'David', 1928, 'M', 9997), +(34980, 'Eugene', 1928, 'M', 9703), +(34981, 'Henry', 1928, 'M', 9324), +(34982, 'Arthur', 1928, 'M', 8875), +(34983, 'Albert', 1928, 'M', 8808), +(34984, 'Ralph', 1928, 'M', 8108), +(34985, 'Herbert', 1928, 'M', 8068), +(34986, 'Harry', 1928, 'M', 7609), +(34987, 'Billy', 1928, 'M', 7310), +(34988, 'Carl', 1928, 'M', 6946), +(34989, 'Willie', 1928, 'M', 6817), +(34990, 'Joe', 1928, 'M', 6678), +(34991, 'Howard', 1928, 'M', 6496), +(34992, 'Louis', 1928, 'M', 6292), +(34993, 'Alfred', 1928, 'M', 6246), +(34994, 'Roy', 1928, 'M', 6226), +(34995, 'Clarence', 1928, 'M', 6070), +(34996, 'Fred', 1928, 'M', 6034), +(34997, 'Earl', 1928, 'M', 5966), +(34998, 'Lawrence', 1928, 'M', 5590), +(34999, 'Norman', 1928, 'M', 5589), +(35000, 'Francis', 1928, 'M', 5514), +(35001, 'Gerald', 1928, 'M', 5492), +(35002, 'Leonard', 1928, 'M', 5138), +(35003, 'Ernest', 1928, 'M', 4946), +(35004, 'Anthony', 1928, 'M', 4717), +(35005, 'Stanley', 1928, 'M', 4479), +(35006, 'Marvin', 1928, 'M', 4450), +(35007, 'Daniel', 1928, 'M', 4436), +(35008, 'Melvin', 1928, 'M', 4246), +(35009, 'Bernard', 1928, 'M', 4062), +(35010, 'Ronald', 1928, 'M', 3977), +(35011, 'Leroy', 1928, 'M', 3874), +(35012, 'Samuel', 1928, 'M', 3846), +(35013, 'Michael', 1928, 'M', 3595), +(35014, 'Floyd', 1928, 'M', 3338), +(35015, 'Russell', 1928, 'M', 3329), +(35016, 'Peter', 1928, 'M', 3300), +(35017, 'Ray', 1928, 'M', 3252), +(35018, 'Edwin', 1928, 'M', 3172), +(35019, 'Lloyd', 1928, 'M', 3160), +(35020, 'Andrew', 1928, 'M', 3142), +(35021, 'Leo', 1928, 'M', 3092), +(35022, 'Gene', 1928, 'M', 3090), +(35023, 'Elmer', 1928, 'M', 2977), +(35024, 'Bill', 1928, 'M', 2974), +(35025, 'Bobby', 1928, 'M', 2967), +(35026, 'Theodore', 1928, 'M', 2913), +(35027, 'Frederick', 1928, 'M', 2887), +(35028, 'Clifford', 1928, 'M', 2857), +(35029, 'Vernon', 1928, 'M', 2855), +(35030, 'Wayne', 1928, 'M', 2855), +(35031, 'Roger', 1928, 'M', 2774), +(35032, 'Alvin', 1928, 'M', 2749), +(35033, 'Philip', 1928, 'M', 2728), +(35034, 'Clyde', 1928, 'M', 2711), +(35035, 'Dale', 1928, 'M', 2640), +(35036, 'Glenn', 1928, 'M', 2598), +(35037, 'Gordon', 1928, 'M', 2594), +(35038, 'Jerry', 1928, 'M', 2591), +(35039, 'Herman', 1928, 'M', 2590), +(35040, 'Leon', 1928, 'M', 2463), +(35041, 'Charlie', 1928, 'M', 2462), +(35042, 'Vincent', 1928, 'M', 2434), +(35043, 'Martin', 1928, 'M', 2425), +(35044, 'Don', 1928, 'M', 2385), +(35045, 'Warren', 1928, 'M', 2360), +(35046, 'Lewis', 1928, 'M', 2337), +(35047, 'Lee', 1928, 'M', 2278), +(35048, 'Chester', 1928, 'M', 2241), +(35049, 'Lester', 1928, 'M', 2230), +(35050, 'Harvey', 1928, 'M', 2184), +(35051, 'Jesse', 1928, 'M', 2173), +(35052, 'Milton', 1928, 'M', 2170), +(35053, 'Allen', 1928, 'M', 2134), +(35054, 'Calvin', 1928, 'M', 2127), +(35055, 'Bob', 1928, 'M', 2092), +(35056, 'Gilbert', 1928, 'M', 2046), +(35057, 'Cecil', 1928, 'M', 2006), +(35058, 'Arnold', 1928, 'M', 1973), +(35059, 'Victor', 1928, 'M', 1944), +(35060, 'Jimmie', 1928, 'M', 1928), +(35061, 'Curtis', 1928, 'M', 1916), +(35062, 'Douglas', 1928, 'M', 1914), +(35063, 'Johnnie', 1928, 'M', 1869), +(35064, 'Wallace', 1928, 'M', 1845), +(35065, 'Eddie', 1928, 'M', 1805), +(35066, 'Benjamin', 1928, 'M', 1803), +(35067, 'Roland', 1928, 'M', 1777), +(35068, 'Jose', 1928, 'M', 1767), +(35069, 'Sam', 1928, 'M', 1756), +(35070, 'Jerome', 1928, 'M', 1750), +(35071, 'Manuel', 1928, 'M', 1649), +(35072, 'Bruce', 1928, 'M', 1630), +(35073, 'Willard', 1928, 'M', 1628), +(35074, 'Edgar', 1928, 'M', 1598), +(35075, 'Glen', 1928, 'M', 1590), +(35076, 'Claude', 1928, 'M', 1532), +(35077, 'Johnny', 1928, 'M', 1528), +(35078, 'Marion', 1928, 'M', 1516), +(35079, 'Junior', 1928, 'M', 1492), +(35080, 'Maurice', 1928, 'M', 1492), +(35081, 'Hubert', 1928, 'M', 1487), +(35082, 'Oscar', 1928, 'M', 1467), +(35083, 'Everett', 1928, 'M', 1428), +(35084, 'Jessie', 1928, 'M', 1417), +(35085, 'Virgil', 1928, 'M', 1404), +(35086, 'Max', 1928, 'M', 1402), +(35087, 'Wilbur', 1928, 'M', 1400), +(35088, 'Leslie', 1928, 'M', 1380), +(35089, 'Hugh', 1928, 'M', 1375), +(35090, 'Stephen', 1928, 'M', 1333), +(35091, 'Patrick', 1928, 'M', 1320), +(35092, 'Homer', 1928, 'M', 1319), +(35093, 'Billie', 1928, 'M', 1316), +(35094, 'Rudolph', 1928, 'M', 1308), +(35095, 'Tom', 1928, 'M', 1306), +(35096, 'Dean', 1928, 'M', 1286), +(35097, 'Jim', 1928, 'M', 1233), +(35098, 'Jimmy', 1928, 'M', 1228), +(35099, 'Keith', 1928, 'M', 1223), +(35100, 'Nicholas', 1928, 'M', 1218), +(35101, 'Duane', 1928, 'M', 1211), +(35102, 'Sidney', 1928, 'M', 1206), +(35103, 'Wesley', 1928, 'M', 1181), +(35104, 'Morris', 1928, 'M', 1155), +(35105, 'Luther', 1928, 'M', 1153), +(35106, 'Franklin', 1928, 'M', 1105), +(35107, 'Horace', 1928, 'M', 1101), +(35108, 'Willis', 1928, 'M', 1082), +(35109, 'Phillip', 1928, 'M', 1075), +(35110, 'Larry', 1928, 'M', 1069), +(35111, 'Tommy', 1928, 'M', 1062), +(35112, 'Alexander', 1928, 'M', 1049), +(35113, 'Earnest', 1928, 'M', 1042), +(35114, 'Delbert', 1928, 'M', 1023), +(35115, 'Lyle', 1928, 'M', 1000), +(35116, 'Ben', 1928, 'M', 986), +(35117, 'Alan', 1928, 'M', 965), +(35118, 'Salvatore', 1928, 'M', 962), +(35119, 'Dennis', 1928, 'M', 958), +(35120, 'Tony', 1928, 'M', 957), +(35121, 'Oliver', 1928, 'M', 934), +(35122, 'Steve', 1928, 'M', 926), +(35123, 'Edmund', 1928, 'M', 910), +(35124, 'Dan', 1928, 'M', 907), +(35125, 'Otis', 1928, 'M', 885), +(35126, 'Irving', 1928, 'M', 879), +(35127, 'Guy', 1928, 'M', 869), +(35128, 'Julius', 1928, 'M', 868), +(35129, 'Archie', 1928, 'M', 860), +(35130, 'Juan', 1928, 'M', 857), +(35131, 'Allan', 1928, 'M', 846), +(35132, 'Dick', 1928, 'M', 834), +(35133, 'Bennie', 1928, 'M', 832), +(35134, 'Clayton', 1928, 'M', 830), +(35135, 'Ted', 1928, 'M', 827), +(35136, 'Alton', 1928, 'M', 813), +(35137, 'Angelo', 1928, 'M', 811), +(35138, 'Orville', 1928, 'M', 810), +(35139, 'Alex', 1928, 'M', 801), +(35140, 'Clinton', 1928, 'M', 790), +(35141, 'Leland', 1928, 'M', 787), +(35142, 'Matthew', 1928, 'M', 784), +(35143, 'Clifton', 1928, 'M', 781); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(35144, 'Jesus', 1928, 'M', 774), +(35145, 'Jay', 1928, 'M', 768), +(35146, 'Merle', 1928, 'M', 763), +(35147, 'Mike', 1928, 'M', 762), +(35148, 'Ivan', 1928, 'M', 758), +(35149, 'Lowell', 1928, 'M', 757), +(35150, 'Antonio', 1928, 'M', 748), +(35151, 'Freddie', 1928, 'M', 742), +(35152, 'Wilbert', 1928, 'M', 741), +(35153, 'Nathaniel', 1928, 'M', 728), +(35154, 'Ira', 1928, 'M', 727), +(35155, 'Marshall', 1928, 'M', 726), +(35156, 'Jacob', 1928, 'M', 717), +(35157, 'Lonnie', 1928, 'M', 707), +(35158, 'Neil', 1928, 'M', 695), +(35159, 'Irvin', 1928, 'M', 688), +(35160, 'Ramon', 1928, 'M', 683), +(35161, 'Nelson', 1928, 'M', 680), +(35162, 'Dewey', 1928, 'M', 676), +(35163, 'Ervin', 1928, 'M', 672), +(35164, 'Myron', 1928, 'M', 667), +(35165, 'Malcolm', 1928, 'M', 666), +(35166, 'Elbert', 1928, 'M', 657), +(35167, 'Wendell', 1928, 'M', 656), +(35168, 'Carroll', 1928, 'M', 655), +(35169, 'Mark', 1928, 'M', 650), +(35170, 'Darrell', 1928, 'M', 649), +(35171, 'Wilfred', 1928, 'M', 636), +(35172, 'Julian', 1928, 'M', 634), +(35173, 'Perry', 1928, 'M', 633), +(35174, 'Pete', 1928, 'M', 615), +(35175, 'Loren', 1928, 'M', 611), +(35176, 'Nick', 1928, 'M', 606), +(35177, 'Jackie', 1928, 'M', 605), +(35178, 'Rufus', 1928, 'M', 602), +(35179, 'Norbert', 1928, 'M', 599), +(35180, 'Karl', 1928, 'M', 598), +(35181, 'Sylvester', 1928, 'M', 597), +(35182, 'Gerard', 1928, 'M', 593), +(35183, 'Rodney', 1928, 'M', 589), +(35184, 'Carlos', 1928, 'M', 584), +(35185, 'Bobbie', 1928, 'M', 582), +(35186, 'Emil', 1928, 'M', 580), +(35187, 'Eldon', 1928, 'M', 579), +(35188, 'Doyle', 1928, 'M', 577), +(35189, 'Laurence', 1928, 'M', 573), +(35190, 'Forrest', 1928, 'M', 570), +(35191, 'Seymour', 1928, 'M', 568), +(35192, 'Troy', 1928, 'M', 562), +(35193, 'Aaron', 1928, 'M', 560), +(35194, 'Carlton', 1928, 'M', 551), +(35195, 'Nathan', 1928, 'M', 548), +(35196, 'Fredrick', 1928, 'M', 547), +(35197, 'Byron', 1928, 'M', 545), +(35198, 'Ellis', 1928, 'M', 543), +(35199, 'Johnie', 1928, 'M', 543), +(35200, 'Loyd', 1928, 'M', 540), +(35201, 'Isaac', 1928, 'M', 534), +(35202, 'Rex', 1928, 'M', 519), +(35203, 'Burton', 1928, 'M', 518), +(35204, 'Mack', 1928, 'M', 518), +(35205, 'Bert', 1928, 'M', 517), +(35206, 'Grady', 1928, 'M', 513), +(35207, 'Sherman', 1928, 'M', 510), +(35208, 'Owen', 1928, 'M', 507), +(35209, 'Roosevelt', 1928, 'M', 507), +(35210, 'Irwin', 1928, 'M', 506), +(35211, 'Murray', 1928, 'M', 505), +(35212, 'Francisco', 1928, 'M', 498), +(35213, 'Ruben', 1928, 'M', 493), +(35214, 'Harley', 1928, 'M', 484), +(35215, 'Ross', 1928, 'M', 484), +(35216, 'Percy', 1928, 'M', 482), +(35217, 'Pedro', 1928, 'M', 480), +(35218, 'Elwood', 1928, 'M', 478), +(35219, 'Mario', 1928, 'M', 476), +(35220, 'Dominick', 1928, 'M', 474), +(35221, 'Grover', 1928, 'M', 472), +(35222, 'Lynn', 1928, 'M', 469), +(35223, 'Otto', 1928, 'M', 469), +(35224, 'Felix', 1928, 'M', 468), +(35225, 'Benny', 1928, 'M', 459), +(35226, 'Emmett', 1928, 'M', 457), +(35227, 'Dwight', 1928, 'M', 455), +(35228, 'Tommie', 1928, 'M', 452), +(35229, 'Boyd', 1928, 'M', 444), +(35230, 'Amos', 1928, 'M', 439), +(35231, 'Conrad', 1928, 'M', 438), +(35232, 'Harlan', 1928, 'M', 435), +(35233, 'Wilson', 1928, 'M', 433), +(35234, 'Aubrey', 1928, 'M', 429), +(35235, 'Laverne', 1928, 'M', 428), +(35236, 'August', 1928, 'M', 422), +(35237, 'Sheldon', 1928, 'M', 421), +(35238, 'Joel', 1928, 'M', 415), +(35239, 'Edmond', 1928, 'M', 406), +(35240, 'Abraham', 1928, 'M', 401), +(35241, 'Reginald', 1928, 'M', 400), +(35242, 'Stuart', 1928, 'M', 396), +(35243, 'Erwin', 1928, 'M', 394), +(35244, 'Louie', 1928, 'M', 390), +(35245, 'Teddy', 1928, 'M', 389), +(35246, 'Garland', 1928, 'M', 386), +(35247, 'Austin', 1928, 'M', 385), +(35248, 'Cornelius', 1928, 'M', 383), +(35249, 'Preston', 1928, 'M', 381), +(35250, 'Dominic', 1928, 'M', 379), +(35251, 'Maynard', 1928, 'M', 376), +(35252, 'Neal', 1928, 'M', 376), +(35253, 'Dallas', 1928, 'M', 375), +(35254, 'Raul', 1928, 'M', 375), +(35255, 'Morton', 1928, 'M', 370), +(35256, 'Pat', 1928, 'M', 361), +(35257, 'Adam', 1928, 'M', 357), +(35258, 'Wade', 1928, 'M', 356), +(35259, 'Steven', 1928, 'M', 350), +(35260, 'Adolph', 1928, 'M', 341), +(35261, 'Roscoe', 1928, 'M', 341), +(35262, 'Alfonso', 1928, 'M', 336), +(35263, 'Jasper', 1928, 'M', 336), +(35264, 'Delmar', 1928, 'M', 332), +(35265, 'Elton', 1928, 'M', 331), +(35266, 'Sammie', 1928, 'M', 331), +(35267, 'Carmen', 1928, 'M', 329), +(35268, 'Millard', 1928, 'M', 328), +(35269, 'Jean', 1928, 'M', 327), +(35270, 'Dave', 1928, 'M', 324), +(35271, 'Will', 1928, 'M', 324), +(35272, 'Charley', 1928, 'M', 323), +(35273, 'Elvin', 1928, 'M', 323), +(35274, 'Rudy', 1928, 'M', 323), +(35275, 'Luis', 1928, 'M', 322), +(35276, 'Moses', 1928, 'M', 318), +(35277, 'Mitchell', 1928, 'M', 314), +(35278, 'Roberto', 1928, 'M', 312), +(35279, 'Grant', 1928, 'M', 309), +(35280, 'Merlin', 1928, 'M', 307), +(35281, 'Reuben', 1928, 'M', 302), +(35282, 'Thurman', 1928, 'M', 302), +(35283, 'Armand', 1928, 'M', 299), +(35284, 'Ned', 1928, 'M', 299), +(35285, 'Wilmer', 1928, 'M', 298), +(35286, 'Lionel', 1928, 'M', 297), +(35287, 'Timothy', 1928, 'M', 297), +(35288, 'Sanford', 1928, 'M', 295), +(35289, 'Mary', 1928, 'M', 294), +(35290, 'Randolph', 1928, 'M', 294), +(35291, 'Salvador', 1928, 'M', 294), +(35292, 'Clair', 1928, 'M', 286), +(35293, 'Rocco', 1928, 'M', 285), +(35294, 'Emanuel', 1928, 'M', 284), +(35295, 'Marlin', 1928, 'M', 281), +(35296, 'Alfredo', 1928, 'M', 280), +(35297, 'Monroe', 1928, 'M', 280), +(35298, 'Russel', 1928, 'M', 280), +(35299, 'Patsy', 1928, 'M', 279), +(35300, 'Sammy', 1928, 'M', 279), +(35301, 'Merrill', 1928, 'M', 278), +(35302, 'Weldon', 1928, 'M', 278), +(35303, 'Danny', 1928, 'M', 277), +(35304, 'Cleveland', 1928, 'M', 276), +(35305, 'Odell', 1928, 'M', 275), +(35306, 'Harrison', 1928, 'M', 274), +(35307, 'Ollie', 1928, 'M', 268), +(35308, 'Simon', 1928, 'M', 267), +(35309, 'Christopher', 1928, 'M', 266), +(35310, 'Alonzo', 1928, 'M', 265), +(35311, 'Noel', 1928, 'M', 265), +(35312, 'Lavern', 1928, 'M', 263), +(35313, 'Rolland', 1928, 'M', 263), +(35314, 'Wiley', 1928, 'M', 263), +(35315, 'Gus', 1928, 'M', 262), +(35316, 'Royce', 1928, 'M', 261), +(35317, 'Earle', 1928, 'M', 260), +(35318, 'Gregory', 1928, 'M', 260), +(35319, 'Clement', 1928, 'M', 258), +(35320, 'Wilburn', 1928, 'M', 258), +(35321, 'Andy', 1928, 'M', 257), +(35322, 'Hollis', 1928, 'M', 256), +(35323, 'Elijah', 1928, 'M', 255), +(35324, 'Hoover', 1928, 'M', 255), +(35325, 'Gabriel', 1928, 'M', 254), +(35326, 'Marcus', 1928, 'M', 254), +(35327, 'Darwin', 1928, 'M', 252), +(35328, 'Buddy', 1928, 'M', 251), +(35329, 'Ed', 1928, 'M', 250), +(35330, 'Wilford', 1928, 'M', 249), +(35331, 'Shirley', 1928, 'M', 248), +(35332, 'Darrel', 1928, 'M', 244), +(35333, 'Jackson', 1928, 'M', 244), +(35334, 'Travis', 1928, 'M', 243), +(35335, 'Cleo', 1928, 'M', 242), +(35336, 'Forest', 1928, 'M', 242), +(35337, 'Jake', 1928, 'M', 242), +(35338, 'Kermit', 1928, 'M', 242), +(35339, 'Buford', 1928, 'M', 241), +(35340, 'Clark', 1928, 'M', 241), +(35341, 'Armando', 1928, 'M', 240), +(35342, 'Claud', 1928, 'M', 239), +(35343, 'Elmo', 1928, 'M', 235), +(35344, 'Cyril', 1928, 'M', 234), +(35345, 'Stewart', 1928, 'M', 234), +(35346, 'Vito', 1928, 'M', 234), +(35347, 'Lamar', 1928, 'M', 233), +(35348, 'Norris', 1928, 'M', 233), +(35349, 'Guadalupe', 1928, 'M', 232), +(35350, 'Adrian', 1928, 'M', 230), +(35351, 'Sterling', 1928, 'M', 230), +(35352, 'Woodrow', 1928, 'M', 229), +(35353, 'Alphonse', 1928, 'M', 228), +(35354, 'Emory', 1928, 'M', 228), +(35355, 'Gary', 1928, 'M', 228), +(35356, 'Emery', 1928, 'M', 227), +(35357, 'Lorenzo', 1928, 'M', 226), +(35358, 'Miguel', 1928, 'M', 226), +(35359, 'Rodolfo', 1928, 'M', 226), +(35360, 'Coy', 1928, 'M', 225), +(35361, 'Harris', 1928, 'M', 225), +(35362, 'Van', 1928, 'M', 224), +(35363, 'Eric', 1928, 'M', 221), +(35364, 'Miles', 1928, 'M', 220), +(35365, 'Roman', 1928, 'M', 220), +(35366, 'Mervin', 1928, 'M', 218), +(35367, 'Solomon', 1928, 'M', 218), +(35368, 'Terry', 1928, 'M', 217), +(35369, 'Bud', 1928, 'M', 215), +(35370, 'Eli', 1928, 'M', 215), +(35371, 'Huey', 1928, 'M', 215), +(35372, 'Carmine', 1928, 'M', 214), +(35373, 'Rafael', 1928, 'M', 214), +(35374, 'Herschel', 1928, 'M', 211), +(35375, 'Alva', 1928, 'M', 208), +(35376, 'Barney', 1928, 'M', 207), +(35377, 'Vern', 1928, 'M', 206), +(35378, 'Winston', 1928, 'M', 206), +(35379, 'Rene', 1928, 'M', 205), +(35380, 'Linwood', 1928, 'M', 201), +(35381, 'Milford', 1928, 'M', 201), +(35382, 'Jess', 1928, 'M', 198), +(35383, 'Truman', 1928, 'M', 198), +(35384, 'Winfred', 1928, 'M', 198), +(35385, 'Randall', 1928, 'M', 197), +(35386, 'Carol', 1928, 'M', 195), +(35387, 'Enrique', 1928, 'M', 194), +(35388, 'Arturo', 1928, 'M', 193), +(35389, 'Hal', 1928, 'M', 193), +(35390, 'Lenard', 1928, 'M', 193), +(35391, 'Basil', 1928, 'M', 192), +(35392, 'Al', 1928, 'M', 190), +(35393, 'Frankie', 1928, 'M', 190), +(35394, 'Levi', 1928, 'M', 189), +(35395, 'Emerson', 1928, 'M', 188), +(35396, 'Odis', 1928, 'M', 188), +(35397, 'Scott', 1928, 'M', 188), +(35398, 'Bertram', 1928, 'M', 187), +(35399, 'Hector', 1928, 'M', 186), +(35400, 'Delmer', 1928, 'M', 185), +(35401, 'Pasquale', 1928, 'M', 185), +(35402, 'Roderick', 1928, 'M', 183), +(35403, 'Ward', 1928, 'M', 183), +(35404, 'Royal', 1928, 'M', 182), +(35405, 'Dudley', 1928, 'M', 181), +(35406, 'Elias', 1928, 'M', 181), +(35407, 'Gale', 1928, 'M', 181), +(35408, 'Hershel', 1928, 'M', 181), +(35409, 'Saul', 1928, 'M', 179), +(35410, 'Vance', 1928, 'M', 179), +(35411, 'Emilio', 1928, 'M', 178), +(35412, 'Gilberto', 1928, 'M', 178), +(35413, 'Jeff', 1928, 'M', 178), +(35414, 'Lindy', 1928, 'M', 177), +(35415, 'Gail', 1928, 'M', 176), +(35416, 'Lyman', 1928, 'M', 176), +(35417, 'Ulysses', 1928, 'M', 175), +(35418, 'Hiram', 1928, 'M', 174), +(35419, 'Noah', 1928, 'M', 174), +(35420, 'Pablo', 1928, 'M', 174), +(35421, 'Freeman', 1928, 'M', 173), +(35422, 'Wilton', 1928, 'M', 173), +(35423, 'Bruno', 1928, 'M', 172), +(35424, 'Alden', 1928, 'M', 171), +(35425, 'Normand', 1928, 'M', 171), +(35426, 'Thaddeus', 1928, 'M', 171), +(35427, 'Burl', 1928, 'M', 169), +(35428, 'Elliott', 1928, 'M', 169), +(35429, 'Everette', 1928, 'M', 169), +(35430, 'Booker', 1928, 'M', 168), +(35431, 'Riley', 1928, 'M', 168), +(35432, 'Spencer', 1928, 'M', 168), +(35433, 'Alberto', 1928, 'M', 167), +(35434, 'Ricardo', 1928, 'M', 167), +(35435, 'Silas', 1928, 'M', 167), +(35436, 'Chris', 1928, 'M', 165), +(35437, 'Domingo', 1928, 'M', 164), +(35438, 'Olen', 1928, 'M', 164), +(35439, 'Anton', 1928, 'M', 163), +(35440, 'Carrol', 1928, 'M', 161), +(35441, 'Denver', 1928, 'M', 161), +(35442, 'Cletus', 1928, 'M', 160), +(35443, 'Ellsworth', 1928, 'M', 160), +(35444, 'Tomas', 1928, 'M', 159), +(35445, 'Milo', 1928, 'M', 157), +(35446, 'Nolan', 1928, 'M', 157), +(35447, 'Edsel', 1928, 'M', 156), +(35448, 'Ferdinand', 1928, 'M', 156), +(35449, 'Jules', 1928, 'M', 154), +(35450, 'Mathew', 1928, 'M', 153), +(35451, 'Orval', 1928, 'M', 153), +(35452, 'Phil', 1928, 'M', 153), +(35453, 'Houston', 1928, 'M', 150), +(35454, 'Arlie', 1928, 'M', 149), +(35455, 'Major', 1928, 'M', 149), +(35456, 'Buster', 1928, 'M', 148), +(35457, 'Luke', 1928, 'M', 148), +(35458, 'Augustine', 1928, 'M', 147), +(35459, 'Fernando', 1928, 'M', 146), +(35460, 'Augustus', 1928, 'M', 145), +(35461, 'Carlo', 1928, 'M', 145), +(35462, 'Columbus', 1928, 'M', 145), +(35463, 'Newton', 1928, 'M', 145), +(35464, 'Omer', 1928, 'M', 145), +(35465, 'Frederic', 1928, 'M', 144), +(35466, 'Jerald', 1928, 'M', 144), +(35467, 'Ernesto', 1928, 'M', 143), +(35468, 'Barry', 1928, 'M', 142), +(35469, 'Santiago', 1928, 'M', 141), +(35470, 'Frances', 1928, 'M', 140), +(35471, 'Hoyt', 1928, 'M', 140), +(35472, 'Sol', 1928, 'M', 140), +(35473, 'Ignacio', 1928, 'M', 139), +(35474, 'Vaughn', 1928, 'M', 139), +(35475, 'Jewel', 1928, 'M', 137), +(35476, 'Orlando', 1928, 'M', 137), +(35477, 'Angel', 1928, 'M', 136), +(35478, 'Blaine', 1928, 'M', 135), +(35479, 'Clay', 1928, 'M', 135), +(35480, 'Davis', 1928, 'M', 135), +(35481, 'Hobert', 1928, 'M', 134), +(35482, 'Julio', 1928, 'M', 134), +(35483, 'Marcel', 1928, 'M', 134), +(35484, 'Verne', 1928, 'M', 134), +(35485, 'Elroy', 1928, 'M', 132), +(35486, 'Gaylord', 1928, 'M', 132), +(35487, 'Hugo', 1928, 'M', 132), +(35488, 'Morgan', 1928, 'M', 131), +(35489, 'Evan', 1928, 'M', 130), +(35490, 'Lincoln', 1928, 'M', 130), +(35491, 'Raymon', 1928, 'M', 130), +(35492, 'Dana', 1928, 'M', 129), +(35493, 'Eduardo', 1928, 'M', 129), +(35494, 'Felipe', 1928, 'M', 129), +(35495, 'Fletcher', 1928, 'M', 129), +(35496, 'Harland', 1928, 'M', 129), +(35497, 'Kelly', 1928, 'M', 129), +(35498, 'Dalton', 1928, 'M', 128), +(35499, 'Kent', 1928, 'M', 128), +(35500, 'Anderson', 1928, 'M', 127), +(35501, 'Joesph', 1928, 'M', 127), +(35502, 'Mckinley', 1928, 'M', 127), +(35503, 'Noble', 1928, 'M', 127), +(35504, 'Sebastian', 1928, 'M', 127), +(35505, 'Bryan', 1928, 'M', 126), +(35506, 'Merton', 1928, 'M', 124), +(35507, 'Aloysius', 1928, 'M', 123), +(35508, 'Ambrose', 1928, 'M', 123), +(35509, 'Donnie', 1928, 'M', 123), +(35510, 'Nickolas', 1928, 'M', 123), +(35511, 'Dorothy', 1928, 'M', 122), +(35512, 'Emile', 1928, 'M', 122), +(35513, 'Hilton', 1928, 'M', 122), +(35514, 'Wilber', 1928, 'M', 122), +(35515, 'Andres', 1928, 'M', 121), +(35516, 'Isiah', 1928, 'M', 121), +(35517, 'Justin', 1928, 'M', 121), +(35518, 'Isaiah', 1928, 'M', 120), +(35519, 'Reed', 1928, 'M', 120), +(35520, 'Betty', 1928, 'M', 119), +(35521, 'Olin', 1928, 'M', 119), +(35522, 'Valentine', 1928, 'M', 119), +(35523, 'Elwin', 1928, 'M', 118), +(35524, 'Joshua', 1928, 'M', 118), +(35525, 'Mose', 1928, 'M', 118), +(35526, 'Sherwood', 1928, 'M', 118), +(35527, 'Stanford', 1928, 'M', 118), +(35528, 'Benito', 1928, 'M', 117), +(35529, 'Ezra', 1928, 'M', 117), +(35530, 'Graham', 1928, 'M', 117), +(35531, 'Jonathan', 1928, 'M', 116), +(35532, 'Lemuel', 1928, 'M', 116), +(35533, 'Maxwell', 1928, 'M', 116), +(35534, 'Micheal', 1928, 'M', 116), +(35535, 'Oren', 1928, 'M', 116), +(35536, 'Vicente', 1928, 'M', 116), +(35537, 'Arden', 1928, 'M', 115), +(35538, 'Winford', 1928, 'M', 115), +(35539, 'Alphonso', 1928, 'M', 114), +(35540, 'Beverly', 1928, 'M', 114), +(35541, 'Christian', 1928, 'M', 114), +(35542, 'Harmon', 1928, 'M', 114), +(35543, 'Theron', 1928, 'M', 113), +(35544, 'Arther', 1928, 'M', 112), +(35545, 'Jeremiah', 1928, 'M', 112), +(35546, 'Santos', 1928, 'M', 112), +(35547, 'Rodger', 1928, 'M', 111), +(35548, 'Bradley', 1928, 'M', 110), +(35549, 'Foster', 1928, 'M', 110), +(35550, 'Junius', 1928, 'M', 110), +(35551, 'Waldo', 1928, 'M', 110), +(35552, 'Bernie', 1928, 'M', 109), +(35553, 'Jefferson', 1928, 'M', 109), +(35554, 'Ora', 1928, 'M', 109), +(35555, 'Coleman', 1928, 'M', 108), +(35556, 'Emmitt', 1928, 'M', 108), +(35557, 'Mason', 1928, 'M', 108), +(35558, 'Daryl', 1928, 'M', 107), +(35559, 'Dewitt', 1928, 'M', 107), +(35560, 'Porter', 1928, 'M', 107), +(35561, 'Quentin', 1928, 'M', 107), +(35562, 'Brian', 1928, 'M', 106), +(35563, 'Palmer', 1928, 'M', 105), +(35564, 'Doris', 1928, 'M', 104), +(35565, 'Dwayne', 1928, 'M', 104), +(35566, 'Elden', 1928, 'M', 102), +(35567, 'Carson', 1928, 'M', 101), +(35568, 'Domenic', 1928, 'M', 101), +(35569, 'Galen', 1928, 'M', 101), +(35570, 'Rogers', 1928, 'M', 101), +(35571, 'Ernie', 1928, 'M', 100), +(35572, 'Ottis', 1928, 'M', 100), +(35573, 'Rubin', 1928, 'M', 100), +(35574, 'Mary', 1929, 'F', 63508), +(35575, 'Betty', 1929, 'F', 36669), +(35576, 'Dorothy', 1929, 'F', 31477), +(35577, 'Helen', 1929, 'F', 20984), +(35578, 'Margaret', 1929, 'F', 19203), +(35579, 'Doris', 1929, 'F', 16495), +(35580, 'Barbara', 1929, 'F', 16038), +(35581, 'Ruth', 1929, 'F', 16014), +(35582, 'Shirley', 1929, 'F', 14583), +(35583, 'Patricia', 1929, 'F', 13625), +(35584, 'Virginia', 1929, 'F', 13233), +(35585, 'Jean', 1929, 'F', 11863), +(35586, 'Joan', 1929, 'F', 11664), +(35587, 'Dolores', 1929, 'F', 11499), +(35588, 'Elizabeth', 1929, 'F', 11251), +(35589, 'Frances', 1929, 'F', 11091), +(35590, 'Lois', 1929, 'F', 10292), +(35591, 'Mildred', 1929, 'F', 10252), +(35592, 'Evelyn', 1929, 'F', 9883), +(35593, 'Anna', 1929, 'F', 9748), +(35594, 'Alice', 1929, 'F', 9477), +(35595, 'Marie', 1929, 'F', 9158), +(35596, 'Joyce', 1929, 'F', 8596), +(35597, 'Phyllis', 1929, 'F', 7995), +(35598, 'Norma', 1929, 'F', 7894), +(35599, 'Rose', 1929, 'F', 7786), +(35600, 'Martha', 1929, 'F', 7636), +(35601, 'Gloria', 1929, 'F', 7538), +(35602, 'Irene', 1929, 'F', 7035), +(35603, 'Marjorie', 1929, 'F', 6982), +(35604, 'Louise', 1929, 'F', 6903), +(35605, 'Nancy', 1929, 'F', 6873), +(35606, 'Marilyn', 1929, 'F', 6727), +(35607, 'Catherine', 1929, 'F', 6275), +(35608, 'Florence', 1929, 'F', 6214), +(35609, 'Ruby', 1929, 'F', 6151), +(35610, 'Annie', 1929, 'F', 5953), +(35611, 'Eleanor', 1929, 'F', 5866), +(35612, 'Beverly', 1929, 'F', 5863), +(35613, 'Lillian', 1929, 'F', 5712), +(35614, 'Thelma', 1929, 'F', 5478), +(35615, 'Lorraine', 1929, 'F', 5346), +(35616, 'Geraldine', 1929, 'F', 5334), +(35617, 'Gladys', 1929, 'F', 5328), +(35618, 'Josephine', 1929, 'F', 5297), +(35619, 'Ann', 1929, 'F', 5174), +(35620, 'Donna', 1929, 'F', 5138), +(35621, 'June', 1929, 'F', 5091), +(35622, 'Theresa', 1929, 'F', 5069), +(35623, 'Pauline', 1929, 'F', 5027), +(35624, 'Edna', 1929, 'F', 4931), +(35625, 'Rita', 1929, 'F', 4766), +(35626, 'Marion', 1929, 'F', 4632), +(35627, 'Grace', 1929, 'F', 4566), +(35628, 'Bernice', 1929, 'F', 4550), +(35629, 'Ethel', 1929, 'F', 4517), +(35630, 'Lucille', 1929, 'F', 4500), +(35631, 'Audrey', 1929, 'F', 4461), +(35632, 'Edith', 1929, 'F', 4454), +(35633, 'Juanita', 1929, 'F', 4412), +(35634, 'Wanda', 1929, 'F', 4396), +(35635, 'Jane', 1929, 'F', 4352), +(35636, 'Carol', 1929, 'F', 4278), +(35637, 'Hazel', 1929, 'F', 4162), +(35638, 'Clara', 1929, 'F', 4148), +(35639, 'Wilma', 1929, 'F', 4005), +(35640, 'Elaine', 1929, 'F', 3855), +(35641, 'Sarah', 1929, 'F', 3816), +(35642, 'Emma', 1929, 'F', 3804), +(35643, 'Peggy', 1929, 'F', 3780), +(35644, 'Esther', 1929, 'F', 3586), +(35645, 'Beatrice', 1929, 'F', 3570), +(35646, 'Charlotte', 1929, 'F', 3538), +(35647, 'Delores', 1929, 'F', 3520), +(35648, 'Marian', 1929, 'F', 3446), +(35649, 'Willie', 1929, 'F', 3320), +(35650, 'Carolyn', 1929, 'F', 3272), +(35651, 'Elsie', 1929, 'F', 3232), +(35652, 'Billie', 1929, 'F', 3190), +(35653, 'Rosemary', 1929, 'F', 3105), +(35654, 'Vivian', 1929, 'F', 3099), +(35655, 'Janet', 1929, 'F', 3052), +(35656, 'Eva', 1929, 'F', 3019), +(35657, 'Katherine', 1929, 'F', 3017), +(35658, 'Maxine', 1929, 'F', 2993), +(35659, 'Jacqueline', 1929, 'F', 2972), +(35660, 'Bonnie', 1929, 'F', 2969), +(35661, 'Julia', 1929, 'F', 2949), +(35662, 'Kathleen', 1929, 'F', 2940), +(35663, 'Laura', 1929, 'F', 2935), +(35664, 'Anne', 1929, 'F', 2882), +(35665, 'Jeanne', 1929, 'F', 2819), +(35666, 'Bertha', 1929, 'F', 2801), +(35667, 'Agnes', 1929, 'F', 2770), +(35668, 'Gertrude', 1929, 'F', 2725), +(35669, 'Ida', 1929, 'F', 2674), +(35670, 'Ellen', 1929, 'F', 2566), +(35671, 'Eileen', 1929, 'F', 2558), +(35672, 'Vera', 1929, 'F', 2548), +(35673, 'Maria', 1929, 'F', 2534), +(35674, 'Joanne', 1929, 'F', 2496), +(35675, 'Ella', 1929, 'F', 2472), +(35676, 'Lillie', 1929, 'F', 2441), +(35677, 'Kathryn', 1929, 'F', 2435), +(35678, 'Arlene', 1929, 'F', 2401), +(35679, 'Alma', 1929, 'F', 2387), +(35680, 'Bessie', 1929, 'F', 2379), +(35681, 'Margie', 1929, 'F', 2338), +(35682, 'Viola', 1929, 'F', 2287), +(35683, 'Jessie', 1929, 'F', 2255), +(35684, 'Sally', 1929, 'F', 2214), +(35685, 'Violet', 1929, 'F', 2214), +(35686, 'Nellie', 1929, 'F', 2198), +(35687, 'Pearl', 1929, 'F', 2174), +(35688, 'Lucy', 1929, 'F', 2128), +(35689, 'Georgia', 1929, 'F', 2124), +(35690, 'Myrtle', 1929, 'F', 2124), +(35691, 'Patsy', 1929, 'F', 2042), +(35692, 'Sylvia', 1929, 'F', 2038), +(35693, 'Ramona', 1929, 'F', 2036), +(35694, 'Mattie', 1929, 'F', 2029), +(35695, 'Leona', 1929, 'F', 2023), +(35696, 'Christine', 1929, 'F', 2017), +(35697, 'Minnie', 1929, 'F', 1994), +(35698, 'Anita', 1929, 'F', 1977), +(35699, 'Roberta', 1929, 'F', 1971), +(35700, 'Loretta', 1929, 'F', 1937), +(35701, 'Velma', 1929, 'F', 1927), +(35702, 'Rosa', 1929, 'F', 1885), +(35703, 'Geneva', 1929, 'F', 1845), +(35704, 'Jeanette', 1929, 'F', 1840), +(35705, 'Mae', 1929, 'F', 1763), +(35706, 'Sara', 1929, 'F', 1752), +(35707, 'Claire', 1929, 'F', 1699), +(35708, 'Harriet', 1929, 'F', 1698), +(35709, 'Stella', 1929, 'F', 1693), +(35710, 'Janice', 1929, 'F', 1689), +(35711, 'Lena', 1929, 'F', 1625), +(35712, 'Naomi', 1929, 'F', 1601), +(35713, 'Jo', 1929, 'F', 1593), +(35714, 'Dora', 1929, 'F', 1585), +(35715, 'Genevieve', 1929, 'F', 1583), +(35716, 'Alberta', 1929, 'F', 1569), +(35717, 'Joann', 1929, 'F', 1550), +(35718, 'Eunice', 1929, 'F', 1546), +(35719, 'Bobbie', 1929, 'F', 1530), +(35720, 'Mabel', 1929, 'F', 1515), +(35721, 'Carrie', 1929, 'F', 1511), +(35722, 'Muriel', 1929, 'F', 1462), +(35723, 'Opal', 1929, 'F', 1452), +(35724, 'Emily', 1929, 'F', 1445), +(35725, 'Jennie', 1929, 'F', 1415), +(35726, 'Cora', 1929, 'F', 1387), +(35727, 'Rosie', 1929, 'F', 1367), +(35728, 'Marguerite', 1929, 'F', 1361), +(35729, 'Verna', 1929, 'F', 1341), +(35730, 'Hilda', 1929, 'F', 1334), +(35731, 'Lula', 1929, 'F', 1332), +(35732, 'Constance', 1929, 'F', 1325), +(35733, 'Darlene', 1929, 'F', 1301), +(35734, 'Blanche', 1929, 'F', 1278), +(35735, 'Beulah', 1929, 'F', 1277), +(35736, 'Lola', 1929, 'F', 1269), +(35737, 'Hattie', 1929, 'F', 1262), +(35738, 'Inez', 1929, 'F', 1256), +(35739, 'Erma', 1929, 'F', 1246), +(35740, 'Rachel', 1929, 'F', 1214), +(35741, 'Yvonne', 1929, 'F', 1211), +(35742, 'Fannie', 1929, 'F', 1198), +(35743, 'Laverne', 1929, 'F', 1195), +(35744, 'Caroline', 1929, 'F', 1192), +(35745, 'Jeannine', 1929, 'F', 1183), +(35746, 'Madeline', 1929, 'F', 1180), +(35747, 'Imogene', 1929, 'F', 1177), +(35748, 'Rosalie', 1929, 'F', 1160), +(35749, 'Mamie', 1929, 'F', 1150), +(35750, 'Joy', 1929, 'F', 1134), +(35751, 'Ada', 1929, 'F', 1128), +(35752, 'Flora', 1929, 'F', 1124), +(35753, 'Lila', 1929, 'F', 1107), +(35754, 'Rebecca', 1929, 'F', 1085), +(35755, 'Daisy', 1929, 'F', 1080), +(35756, 'Faye', 1929, 'F', 1080), +(35757, 'Irma', 1929, 'F', 1074), +(35758, 'Miriam', 1929, 'F', 1074), +(35759, 'Colleen', 1929, 'F', 1066), +(35760, 'Carmen', 1929, 'F', 1065), +(35761, 'Mable', 1929, 'F', 1059), +(35762, 'Marcella', 1929, 'F', 1037), +(35763, 'Bettie', 1929, 'F', 1028), +(35764, 'Eula', 1929, 'F', 1027), +(35765, 'Teresa', 1929, 'F', 1021), +(35766, 'Nora', 1929, 'F', 1018), +(35767, 'Eloise', 1929, 'F', 1015), +(35768, 'Johnnie', 1929, 'F', 990), +(35769, 'Iris', 1929, 'F', 979), +(35770, 'Nina', 1929, 'F', 968), +(35771, 'Sue', 1929, 'F', 944), +(35772, 'Antoinette', 1929, 'F', 936), +(35773, 'Charlene', 1929, 'F', 932), +(35774, 'Jeannette', 1929, 'F', 930), +(35775, 'Susie', 1929, 'F', 928), +(35776, 'Rosemarie', 1929, 'F', 924), +(35777, 'Ernestine', 1929, 'F', 914), +(35778, 'Estelle', 1929, 'F', 910), +(35779, 'Olga', 1929, 'F', 897), +(35780, 'Gwendolyn', 1929, 'F', 891), +(35781, 'Regina', 1929, 'F', 890), +(35782, 'Bette', 1929, 'F', 883), +(35783, 'Susan', 1929, 'F', 875), +(35784, 'Della', 1929, 'F', 867), +(35785, 'Maggie', 1929, 'F', 860), +(35786, 'Lorene', 1929, 'F', 853), +(35787, 'Priscilla', 1929, 'F', 842), +(35788, 'Sadie', 1929, 'F', 829), +(35789, 'Victoria', 1929, 'F', 825), +(35790, 'Melba', 1929, 'F', 818), +(35791, 'Winifred', 1929, 'F', 816), +(35792, 'Diane', 1929, 'F', 796), +(35793, 'Angelina', 1929, 'F', 778), +(35794, 'Henrietta', 1929, 'F', 762), +(35795, 'Katie', 1929, 'F', 761), +(35796, 'Lydia', 1929, 'F', 745), +(35797, 'Annette', 1929, 'F', 730), +(35798, 'Janie', 1929, 'F', 705), +(35799, 'Bettye', 1929, 'F', 699), +(35800, 'Freda', 1929, 'F', 696), +(35801, 'Jewel', 1929, 'F', 690), +(35802, 'Amelia', 1929, 'F', 687), +(35803, 'Ollie', 1929, 'F', 680), +(35804, 'Fern', 1929, 'F', 679), +(35805, 'Ina', 1929, 'F', 677), +(35806, 'Angela', 1929, 'F', 675), +(35807, 'Lottie', 1929, 'F', 674), +(35808, 'Isabel', 1929, 'F', 671), +(35809, 'Deloris', 1929, 'F', 670), +(35810, 'Nettie', 1929, 'F', 669), +(35811, 'Essie', 1929, 'F', 667), +(35812, 'Connie', 1929, 'F', 665), +(35813, 'Therese', 1929, 'F', 664), +(35814, 'Judith', 1929, 'F', 660), +(35815, 'Luella', 1929, 'F', 660), +(35816, 'Nadine', 1929, 'F', 659), +(35817, 'Fay', 1929, 'F', 654), +(35818, 'Olive', 1929, 'F', 652), +(35819, 'Iva', 1929, 'F', 649), +(35820, 'Reba', 1929, 'F', 642), +(35821, 'Natalie', 1929, 'F', 634), +(35822, 'Ora', 1929, 'F', 632), +(35823, 'Patty', 1929, 'F', 632), +(35824, 'Sophie', 1929, 'F', 632), +(35825, 'Lela', 1929, 'F', 630), +(35826, 'Sallie', 1929, 'F', 623), +(35827, 'Paula', 1929, 'F', 619), +(35828, 'Dorthy', 1929, 'F', 616), +(35829, 'Adeline', 1929, 'F', 614), +(35830, 'Etta', 1929, 'F', 614), +(35831, 'Angeline', 1929, 'F', 613), +(35832, 'Marianne', 1929, 'F', 605), +(35833, 'Suzanne', 1929, 'F', 603), +(35834, 'Veronica', 1929, 'F', 602), +(35835, 'Pat', 1929, 'F', 597), +(35836, 'Cleo', 1929, 'F', 584), +(35837, 'Marcia', 1929, 'F', 584), +(35838, 'Addie', 1929, 'F', 583), +(35839, 'Leola', 1929, 'F', 583), +(35840, 'May', 1929, 'F', 579), +(35841, 'Dorothea', 1929, 'F', 572), +(35842, 'Selma', 1929, 'F', 563), +(35843, 'Jewell', 1929, 'F', 560), +(35844, 'Cecelia', 1929, 'F', 559), +(35845, 'Adele', 1929, 'F', 554), +(35846, 'Clarice', 1929, 'F', 548), +(35847, 'Jacquelyn', 1929, 'F', 545), +(35848, 'Lucile', 1929, 'F', 544), +(35849, 'Elva', 1929, 'F', 540), +(35850, 'Goldie', 1929, 'F', 539), +(35851, 'Mavis', 1929, 'F', 539), +(35852, 'Diana', 1929, 'F', 537), +(35853, 'Corinne', 1929, 'F', 531), +(35854, 'Elinor', 1929, 'F', 527), +(35855, 'Ola', 1929, 'F', 523), +(35856, 'Effie', 1929, 'F', 518), +(35857, 'Estella', 1929, 'F', 516), +(35858, 'Elvira', 1929, 'F', 514), +(35859, 'Jackie', 1929, 'F', 512), +(35860, 'Jimmie', 1929, 'F', 512), +(35861, 'Linda', 1929, 'F', 509), +(35862, 'Celia', 1929, 'F', 508), +(35863, 'Cecilia', 1929, 'F', 501), +(35864, 'Mona', 1929, 'F', 498), +(35865, 'Carmela', 1929, 'F', 496), +(35866, 'Isabelle', 1929, 'F', 495), +(35867, 'Willa', 1929, 'F', 494), +(35868, 'Myra', 1929, 'F', 489), +(35869, 'Nell', 1929, 'F', 489), +(35870, 'Cynthia', 1929, 'F', 487), +(35871, 'Lizzie', 1929, 'F', 487), +(35872, 'Helene', 1929, 'F', 483), +(35873, 'Rhoda', 1929, 'F', 483), +(35874, 'Bernadine', 1929, 'F', 481), +(35875, 'Ila', 1929, 'F', 481), +(35876, 'Annabelle', 1929, 'F', 480), +(35877, 'Lenora', 1929, 'F', 480), +(35878, 'Glenna', 1929, 'F', 477), +(35879, 'Alta', 1929, 'F', 476), +(35880, 'Frankie', 1929, 'F', 476), +(35881, 'Lee', 1929, 'F', 476), +(35882, 'Lou', 1929, 'F', 474), +(35883, 'Francis', 1929, 'F', 473), +(35884, 'Gracie', 1929, 'F', 459), +(35885, 'Olivia', 1929, 'F', 458), +(35886, 'Arline', 1929, 'F', 456), +(35887, 'Robert', 1929, 'F', 440), +(35888, 'Lenore', 1929, 'F', 433), +(35889, 'Earline', 1929, 'F', 432), +(35890, 'Myrna', 1929, 'F', 429), +(35891, 'Lupe', 1929, 'F', 428), +(35892, 'Rosetta', 1929, 'F', 422), +(35893, 'Elnora', 1929, 'F', 415), +(35894, 'John', 1929, 'F', 410), +(35895, 'Rena', 1929, 'F', 409), +(35896, 'Carmella', 1929, 'F', 407), +(35897, 'Eugenia', 1929, 'F', 399), +(35898, 'James', 1929, 'F', 397), +(35899, 'Guadalupe', 1929, 'F', 394), +(35900, 'Polly', 1929, 'F', 394), +(35901, 'Renee', 1929, 'F', 389), +(35902, 'Eleanore', 1929, 'F', 388), +(35903, 'Dolly', 1929, 'F', 386), +(35904, 'Ruthie', 1929, 'F', 383), +(35905, 'Nelda', 1929, 'F', 376), +(35906, 'Flossie', 1929, 'F', 375), +(35907, 'Nannie', 1929, 'F', 375), +(35908, 'Maryann', 1929, 'F', 373), +(35909, 'Neva', 1929, 'F', 371), +(35910, 'Pearlie', 1929, 'F', 366), +(35911, 'Margery', 1929, 'F', 365), +(35912, 'Josie', 1929, 'F', 364), +(35913, 'Dona', 1929, 'F', 363), +(35914, 'Elma', 1929, 'F', 362), +(35915, 'Sharon', 1929, 'F', 359), +(35916, 'Dixie', 1929, 'F', 357), +(35917, 'Virgie', 1929, 'F', 357), +(35918, 'Aileen', 1929, 'F', 356), +(35919, 'Loraine', 1929, 'F', 355), +(35920, 'Mollie', 1929, 'F', 354), +(35921, 'Yolanda', 1929, 'F', 349), +(35922, 'Aurora', 1929, 'F', 348), +(35923, 'Wilda', 1929, 'F', 348), +(35924, 'Zelma', 1929, 'F', 347), +(35925, 'Margarita', 1929, 'F', 344), +(35926, 'Amy', 1929, 'F', 343), +(35927, 'Earnestine', 1929, 'F', 342), +(35928, 'Eddie', 1929, 'F', 342), +(35929, 'Matilda', 1929, 'F', 342), +(35930, 'Betsy', 1929, 'F', 341), +(35931, 'Cornelia', 1929, 'F', 338), +(35932, 'Sybil', 1929, 'F', 338), +(35933, 'Frieda', 1929, 'F', 337), +(35934, 'William', 1929, 'F', 337), +(35935, 'Dollie', 1929, 'F', 336), +(35936, 'Lavonne', 1929, 'F', 335), +(35937, 'Rosella', 1929, 'F', 335), +(35938, 'Christina', 1929, 'F', 333), +(35939, 'Tommie', 1929, 'F', 333), +(35940, 'Consuelo', 1929, 'F', 332), +(35941, 'Sheila', 1929, 'F', 332), +(35942, 'Robbie', 1929, 'F', 331), +(35943, 'Avis', 1929, 'F', 330), +(35944, 'Bernadette', 1929, 'F', 328), +(35945, 'Nola', 1929, 'F', 328), +(35946, 'Carole', 1929, 'F', 326), +(35947, 'Harriett', 1929, 'F', 322), +(35948, 'Winnie', 1929, 'F', 320), +(35949, 'Molly', 1929, 'F', 319), +(35950, 'Corrine', 1929, 'F', 318), +(35951, 'Beverley', 1929, 'F', 315), +(35952, 'Concetta', 1929, 'F', 314), +(35953, 'Claudia', 1929, 'F', 313), +(35954, 'Leah', 1929, 'F', 309), +(35955, 'Maureen', 1929, 'F', 309), +(35956, 'Cecile', 1929, 'F', 306), +(35957, 'Lora', 1929, 'F', 305), +(35958, 'Judy', 1929, 'F', 302), +(35959, 'Lily', 1929, 'F', 302), +(35960, 'Alicia', 1929, 'F', 301), +(35961, 'Delia', 1929, 'F', 301), +(35962, 'Melva', 1929, 'F', 300), +(35963, 'Odessa', 1929, 'F', 298), +(35964, 'Lorna', 1929, 'F', 296), +(35965, 'Florine', 1929, 'F', 295), +(35966, 'Letha', 1929, 'F', 295), +(35967, 'Earlene', 1929, 'F', 294), +(35968, 'Antonia', 1929, 'F', 288), +(35969, 'Leila', 1929, 'F', 285), +(35970, 'Greta', 1929, 'F', 283), +(35971, 'Iona', 1929, 'F', 279), +(35972, 'Jerry', 1929, 'F', 276), +(35973, 'Leatrice', 1929, 'F', 276), +(35974, 'Joanna', 1929, 'F', 273), +(35975, 'Millie', 1929, 'F', 273), +(35976, 'Maude', 1929, 'F', 272), +(35977, 'Aline', 1929, 'F', 270), +(35978, 'Bertie', 1929, 'F', 267), +(35979, 'Mercedes', 1929, 'F', 266), +(35980, 'Reva', 1929, 'F', 266), +(35981, 'Beth', 1929, 'F', 262), +(35982, 'Charles', 1929, 'F', 261), +(35983, 'Georgie', 1929, 'F', 260), +(35984, 'Corine', 1929, 'F', 259), +(35985, 'Gilda', 1929, 'F', 259), +(35986, 'Eliza', 1929, 'F', 258), +(35987, 'Queen', 1929, 'F', 258), +(35988, 'Bennie', 1929, 'F', 256), +(35989, 'Hannah', 1929, 'F', 256), +(35990, 'Ophelia', 1929, 'F', 255), +(35991, 'Hope', 1929, 'F', 253), +(35992, 'Sandra', 1929, 'F', 253), +(35993, 'Helena', 1929, 'F', 252), +(35994, 'Lilly', 1929, 'F', 252), +(35995, 'Ilene', 1929, 'F', 251), +(35996, 'Lorena', 1929, 'F', 249), +(35997, 'Nona', 1929, 'F', 248), +(35998, 'Alyce', 1929, 'F', 244), +(35999, 'Louella', 1929, 'F', 244), +(36000, 'Evangeline', 1929, 'F', 241), +(36001, 'Lessie', 1929, 'F', 240), +(36002, 'Doreen', 1929, 'F', 239), +(36003, 'Callie', 1929, 'F', 238), +(36004, 'Allie', 1929, 'F', 236), +(36005, 'Jannie', 1929, 'F', 232), +(36006, 'Dorris', 1929, 'F', 231), +(36007, 'Freddie', 1929, 'F', 230), +(36008, 'Berniece', 1929, 'F', 229), +(36009, 'Johanna', 1929, 'F', 229), +(36010, 'Delphine', 1929, 'F', 226), +(36011, 'Janis', 1929, 'F', 226), +(36012, 'Philomena', 1929, 'F', 226), +(36013, 'Merle', 1929, 'F', 224), +(36014, 'Dawn', 1929, 'F', 223), +(36015, 'Jaunita', 1929, 'F', 222), +(36016, 'Roslyn', 1929, 'F', 221), +(36017, 'Adelaide', 1929, 'F', 220), +(36018, 'Hester', 1929, 'F', 220), +(36019, 'Esperanza', 1929, 'F', 219), +(36020, 'Joe', 1929, 'F', 218), +(36021, 'Kay', 1929, 'F', 218), +(36022, 'Julie', 1929, 'F', 217), +(36023, 'Elouise', 1929, 'F', 216), +(36024, 'Elena', 1929, 'F', 213), +(36025, 'Dortha', 1929, 'F', 212), +(36026, 'Marjory', 1929, 'F', 212), +(36027, 'Alene', 1929, 'F', 210), +(36028, 'Amanda', 1929, 'F', 209), +(36029, 'Bobby', 1929, 'F', 209), +(36030, 'Madelyn', 1929, 'F', 209), +(36031, 'Clare', 1929, 'F', 208), +(36032, 'Zelda', 1929, 'F', 208), +(36033, 'Ester', 1929, 'F', 207), +(36034, 'Gwen', 1929, 'F', 207), +(36035, 'Leota', 1929, 'F', 205), +(36036, 'Lorine', 1929, 'F', 204), +(36037, 'Pansy', 1929, 'F', 204), +(36038, 'Emogene', 1929, 'F', 203), +(36039, 'Ione', 1929, 'F', 203), +(36040, 'Jenny', 1929, 'F', 203), +(36041, 'Madge', 1929, 'F', 203), +(36042, 'Angie', 1929, 'F', 202), +(36043, 'Ima', 1929, 'F', 202), +(36044, 'Josefina', 1929, 'F', 202), +(36045, 'Allene', 1929, 'F', 201), +(36046, 'George', 1929, 'F', 201), +(36047, 'Iola', 1929, 'F', 201), +(36048, 'Marceline', 1929, 'F', 201), +(36049, 'Marietta', 1929, 'F', 201), +(36050, 'Richard', 1929, 'F', 200), +(36051, 'Faith', 1929, 'F', 199), +(36052, 'Maudie', 1929, 'F', 199), +(36053, 'Althea', 1929, 'F', 198), +(36054, 'Vilma', 1929, 'F', 198), +(36055, 'Bonita', 1929, 'F', 197), +(36056, 'Jeanine', 1929, 'F', 197), +(36057, 'Katharine', 1929, 'F', 195), +(36058, 'Birdie', 1929, 'F', 194), +(36059, 'Edythe', 1929, 'F', 191), +(36060, 'Francisca', 1929, 'F', 191), +(36061, 'Leta', 1929, 'F', 191), +(36062, 'Winona', 1929, 'F', 189), +(36063, 'Juana', 1929, 'F', 188), +(36064, 'Lelia', 1929, 'F', 188), +(36065, 'Petra', 1929, 'F', 187), +(36066, 'Dessie', 1929, 'F', 186), +(36067, 'Retha', 1929, 'F', 186), +(36068, 'Charlie', 1929, 'F', 185), +(36069, 'Tillie', 1929, 'F', 185), +(36070, 'Glenda', 1929, 'F', 184), +(36071, 'Marylou', 1929, 'F', 184), +(36072, 'Germaine', 1929, 'F', 182), +(36073, 'Monica', 1929, 'F', 182), +(36074, 'Isabell', 1929, 'F', 181), +(36075, 'Beryl', 1929, 'F', 180), +(36076, 'Oma', 1929, 'F', 180), +(36077, 'Valerie', 1929, 'F', 179), +(36078, 'Wilhelmina', 1929, 'F', 179), +(36079, 'Rae', 1929, 'F', 178), +(36080, 'Rosalee', 1929, 'F', 178), +(36081, 'Zella', 1929, 'F', 178), +(36082, 'Noreen', 1929, 'F', 177), +(36083, 'Millicent', 1929, 'F', 176), +(36084, 'Rowena', 1929, 'F', 176), +(36085, 'Verla', 1929, 'F', 176), +(36086, 'Claudine', 1929, 'F', 175), +(36087, 'Enid', 1929, 'F', 174), +(36088, 'Madeleine', 1929, 'F', 173), +(36089, 'Manuela', 1929, 'F', 173), +(36090, 'Leora', 1929, 'F', 172), +(36091, 'Lucia', 1929, 'F', 172), +(36092, 'Donald', 1929, 'F', 171), +(36093, 'Gail', 1929, 'F', 171), +(36094, 'Marvel', 1929, 'F', 171), +(36095, 'Maurine', 1929, 'F', 171), +(36096, 'Marlys', 1929, 'F', 170), +(36097, 'Rosalyn', 1929, 'F', 170), +(36098, 'Ardis', 1929, 'F', 169), +(36099, 'Sonia', 1929, 'F', 169), +(36100, 'Sophia', 1929, 'F', 169), +(36101, 'Verda', 1929, 'F', 166), +(36102, 'Elise', 1929, 'F', 165), +(36103, 'Erna', 1929, 'F', 163), +(36104, 'Janette', 1929, 'F', 163), +(36105, 'Delma', 1929, 'F', 162), +(36106, 'Roma', 1929, 'F', 162), +(36107, 'Deborah', 1929, 'F', 161), +(36108, 'Gene', 1929, 'F', 161), +(36109, 'Socorro', 1929, 'F', 161), +(36110, 'Velda', 1929, 'F', 161), +(36111, 'Roxie', 1929, 'F', 160), +(36112, 'Rubye', 1929, 'F', 160), +(36113, 'Lucinda', 1929, 'F', 159), +(36114, 'Minerva', 1929, 'F', 159), +(36115, 'Vida', 1929, 'F', 159), +(36116, 'Edwina', 1929, 'F', 158), +(36117, 'Louisa', 1929, 'F', 158), +(36118, 'Joseph', 1929, 'F', 157), +(36119, 'Rosalind', 1929, 'F', 157), +(36120, 'Elda', 1929, 'F', 156), +(36121, 'Billy', 1929, 'F', 155), +(36122, 'Isabella', 1929, 'F', 155), +(36123, 'Ofelia', 1929, 'F', 154), +(36124, 'Carolina', 1929, 'F', 153), +(36125, 'Charline', 1929, 'F', 153), +(36126, 'Elisabeth', 1929, 'F', 153), +(36127, 'Gussie', 1929, 'F', 153), +(36128, 'Margret', 1929, 'F', 153), +(36129, 'Gretchen', 1929, 'F', 152), +(36130, 'Madonna', 1929, 'F', 151), +(36131, 'Reta', 1929, 'F', 151), +(36132, 'Billye', 1929, 'F', 150), +(36133, 'Hellen', 1929, 'F', 148), +(36134, 'Pearline', 1929, 'F', 148), +(36135, 'Phoebe', 1929, 'F', 148), +(36136, 'Shirlee', 1929, 'F', 148), +(36137, 'Alfreda', 1929, 'F', 147), +(36138, 'Belva', 1929, 'F', 147), +(36139, 'Twila', 1929, 'F', 147), +(36140, 'Vernell', 1929, 'F', 147), +(36141, 'Camille', 1929, 'F', 146), +(36142, 'Laurel', 1929, 'F', 146), +(36143, 'Harriette', 1929, 'F', 145), +(36144, 'Alvina', 1929, 'F', 143), +(36145, 'Arleen', 1929, 'F', 143), +(36146, 'Vada', 1929, 'F', 143), +(36147, 'Veda', 1929, 'F', 143), +(36148, 'Theda', 1929, 'F', 142), +(36149, 'Syble', 1929, 'F', 141), +(36150, 'Theodora', 1929, 'F', 141), +(36151, 'Carlene', 1929, 'F', 140), +(36152, 'Freida', 1929, 'F', 140), +(36153, 'Caryl', 1929, 'F', 139), +(36154, 'Fanny', 1929, 'F', 139), +(36155, 'Garnet', 1929, 'F', 139), +(36156, 'Georgette', 1929, 'F', 139), +(36157, 'Nita', 1929, 'F', 139), +(36158, 'Rhea', 1929, 'F', 139), +(36159, 'Lue', 1929, 'F', 138), +(36160, 'Ava', 1929, 'F', 135), +(36161, 'Lauretta', 1929, 'F', 135), +(36162, 'Valeria', 1929, 'F', 135), +(36163, 'Hallie', 1929, 'F', 134), +(36164, 'Peggie', 1929, 'F', 134), +(36165, 'Justine', 1929, 'F', 133), +(36166, 'Celestine', 1929, 'F', 132), +(36167, 'Edward', 1929, 'F', 132), +(36168, 'Myrtis', 1929, 'F', 132), +(36169, 'Tessie', 1929, 'F', 132), +(36170, 'Augusta', 1929, 'F', 131), +(36171, 'Ona', 1929, 'F', 131), +(36172, 'Yvette', 1929, 'F', 131), +(36173, 'Romona', 1929, 'F', 130), +(36174, 'Tina', 1929, 'F', 130), +(36175, 'Dorotha', 1929, 'F', 129), +(36176, 'Frank', 1929, 'F', 129), +(36177, 'Marlene', 1929, 'F', 129), +(36178, 'Elsa', 1929, 'F', 128), +(36179, 'Floy', 1929, 'F', 128), +(36180, 'Katheryn', 1929, 'F', 128), +(36181, 'Marianna', 1929, 'F', 127), +(36182, 'Ursula', 1929, 'F', 127), +(36183, 'Adell', 1929, 'F', 126), +(36184, 'Alva', 1929, 'F', 126), +(36185, 'Marilynn', 1929, 'F', 126), +(36186, 'Bobbye', 1929, 'F', 125), +(36187, 'Camilla', 1929, 'F', 125), +(36188, 'Margarette', 1929, 'F', 125), +(36189, 'Treva', 1929, 'F', 125), +(36190, 'Carla', 1929, 'F', 124), +(36191, 'Elvera', 1929, 'F', 124), +(36192, 'Aurelia', 1929, 'F', 123), +(36193, 'Lettie', 1929, 'F', 123), +(36194, 'Adrienne', 1929, 'F', 122), +(36195, 'Gertie', 1929, 'F', 122), +(36196, 'Kate', 1929, 'F', 122), +(36197, 'Agatha', 1929, 'F', 121), +(36198, 'Johnie', 1929, 'F', 121), +(36199, 'Lona', 1929, 'F', 121), +(36200, 'Thomas', 1929, 'F', 121), +(36201, 'Vernice', 1929, 'F', 121), +(36202, 'Ardith', 1929, 'F', 120), +(36203, 'Hortense', 1929, 'F', 120), +(36204, 'Nan', 1929, 'F', 120), +(36205, 'Terry', 1929, 'F', 120), +(36206, 'Angelita', 1929, 'F', 119), +(36207, 'Idella', 1929, 'F', 119), +(36208, 'Kitty', 1929, 'F', 119), +(36209, 'Una', 1929, 'F', 119), +(36210, 'Zola', 1929, 'F', 119), +(36211, 'Elisa', 1929, 'F', 118), +(36212, 'Ladonna', 1929, 'F', 118), +(36213, 'Lavern', 1929, 'F', 118), +(36214, 'Lavon', 1929, 'F', 118), +(36215, 'Roselyn', 1929, 'F', 118), +(36216, 'Celeste', 1929, 'F', 117), +(36217, 'Clementine', 1929, 'F', 117), +(36218, 'Leonora', 1929, 'F', 117), +(36219, 'Lura', 1929, 'F', 117), +(36220, 'Oleta', 1929, 'F', 117), +(36221, 'Dorcas', 1929, 'F', 116), +(36222, 'Ray', 1929, 'F', 116), +(36223, 'Vesta', 1929, 'F', 116), +(36224, 'Doretha', 1929, 'F', 115), +(36225, 'Gay', 1929, 'F', 115), +(36226, 'Charmaine', 1929, 'F', 114), +(36227, 'Francine', 1929, 'F', 114), +(36228, 'Albertha', 1929, 'F', 113), +(36229, 'Berta', 1929, 'F', 112), +(36230, 'Darleen', 1929, 'F', 112), +(36231, 'Florene', 1929, 'F', 112), +(36232, 'Georgianna', 1929, 'F', 112), +(36233, 'Lynn', 1929, 'F', 112), +(36234, 'Annabell', 1929, 'F', 111), +(36235, 'Dovie', 1929, 'F', 111), +(36236, 'Gearldine', 1929, 'F', 111), +(36237, 'Novella', 1929, 'F', 111), +(36238, 'Catharine', 1929, 'F', 110), +(36239, 'Georgiana', 1929, 'F', 110), +(36240, 'Magdalene', 1929, 'F', 110), +(36241, 'Pamela', 1929, 'F', 110), +(36242, 'Carmel', 1929, 'F', 109), +(36243, 'Dottie', 1929, 'F', 109), +(36244, 'Ouida', 1929, 'F', 109), +(36245, 'Dorla', 1929, 'F', 108), +(36246, 'Gayle', 1929, 'F', 108), +(36247, 'Juliette', 1929, 'F', 108), +(36248, 'Mozelle', 1929, 'F', 108), +(36249, 'Norine', 1929, 'F', 108), +(36250, 'Pattie', 1929, 'F', 108), +(36251, 'Andrea', 1929, 'F', 107), +(36252, 'Denise', 1929, 'F', 107), +(36253, 'Emilia', 1929, 'F', 107), +(36254, 'Filomena', 1929, 'F', 107), +(36255, 'Gerry', 1929, 'F', 107), +(36256, 'Adela', 1929, 'F', 105), +(36257, 'Cecil', 1929, 'F', 105), +(36258, 'Elida', 1929, 'F', 105), +(36259, 'Elna', 1929, 'F', 105), +(36260, 'Mina', 1929, 'F', 105), +(36261, 'Myrtice', 1929, 'F', 105), +(36262, 'Raquel', 1929, 'F', 105), +(36263, 'Nova', 1929, 'F', 104), +(36264, 'Donnie', 1929, 'F', 103), +(36265, 'Felicia', 1929, 'F', 103), +(36266, 'Odell', 1929, 'F', 103), +(36267, 'Leslie', 1929, 'F', 102), +(36268, 'Artie', 1929, 'F', 101), +(36269, 'Eleanora', 1929, 'F', 101), +(36270, 'Lina', 1929, 'F', 101), +(36271, 'Alpha', 1929, 'F', 100), +(36272, 'Easter', 1929, 'F', 100), +(36273, 'Henry', 1929, 'F', 100), +(36274, 'Maybelle', 1929, 'F', 100), +(36275, 'Walter', 1929, 'F', 100), +(36276, 'Robert', 1929, 'M', 59802), +(36277, 'James', 1929, 'M', 52116), +(36278, 'John', 1929, 'M', 52102), +(36279, 'William', 1929, 'M', 47798), +(36280, 'Charles', 1929, 'M', 29926), +(36281, 'Richard', 1929, 'M', 29571), +(36282, 'Donald', 1929, 'M', 27182), +(36283, 'George', 1929, 'M', 23012), +(36284, 'Joseph', 1929, 'M', 21154), +(36285, 'Edward', 1929, 'M', 17228), +(36286, 'Thomas', 1929, 'M', 16267), +(36287, 'Frank', 1929, 'M', 12950), +(36288, 'Paul', 1929, 'M', 12429), +(36289, 'Jack', 1929, 'M', 12162), +(36290, 'Raymond', 1929, 'M', 11897), +(36291, 'Harold', 1929, 'M', 11678), +(36292, 'David', 1929, 'M', 11293), +(36293, 'Kenneth', 1929, 'M', 10838), +(36294, 'Walter', 1929, 'M', 9857), +(36295, 'Eugene', 1929, 'M', 9046), +(36296, 'Henry', 1929, 'M', 8570), +(36297, 'Arthur', 1929, 'M', 8469), +(36298, 'Billy', 1929, 'M', 8318), +(36299, 'Albert', 1929, 'M', 8068), +(36300, 'Herbert', 1929, 'M', 7867), +(36301, 'Ralph', 1929, 'M', 7702), +(36302, 'Harry', 1929, 'M', 7136), +(36303, 'Carl', 1929, 'M', 6891), +(36304, 'Willie', 1929, 'M', 6611), +(36305, 'Joe', 1929, 'M', 6598), +(36306, 'Howard', 1929, 'M', 6006), +(36307, 'Louis', 1929, 'M', 5994), +(36308, 'Gerald', 1929, 'M', 5965), +(36309, 'Fred', 1929, 'M', 5856), +(36310, 'Roy', 1929, 'M', 5812), +(36311, 'Earl', 1929, 'M', 5737), +(36312, 'Clarence', 1929, 'M', 5725), +(36313, 'Lawrence', 1929, 'M', 5307), +(36314, 'Francis', 1929, 'M', 5270), +(36315, 'Norman', 1929, 'M', 5154), +(36316, 'Alfred', 1929, 'M', 4933), +(36317, 'Leonard', 1929, 'M', 4827), +(36318, 'Ernest', 1929, 'M', 4747), +(36319, 'Anthony', 1929, 'M', 4727), +(36320, 'Ronald', 1929, 'M', 4475), +(36321, 'Marvin', 1929, 'M', 4386), +(36322, 'Daniel', 1929, 'M', 4367), +(36323, 'Stanley', 1929, 'M', 4262), +(36324, 'Melvin', 1929, 'M', 4096), +(36325, 'Bobby', 1929, 'M', 3924), +(36326, 'Leroy', 1929, 'M', 3815), +(36327, 'Bernard', 1929, 'M', 3806), +(36328, 'Samuel', 1929, 'M', 3568), +(36329, 'Michael', 1929, 'M', 3463), +(36330, 'Peter', 1929, 'M', 3217), +(36331, 'Russell', 1929, 'M', 3181), +(36332, 'Ray', 1929, 'M', 3175), +(36333, 'Floyd', 1929, 'M', 3080), +(36334, 'Andrew', 1929, 'M', 3078), +(36335, 'Leo', 1929, 'M', 3019), +(36336, 'Jerry', 1929, 'M', 2988), +(36337, 'Bill', 1929, 'M', 2949), +(36338, 'Lloyd', 1929, 'M', 2946), +(36339, 'Roger', 1929, 'M', 2927), +(36340, 'Theodore', 1929, 'M', 2902), +(36341, 'Edwin', 1929, 'M', 2892), +(36342, 'Frederick', 1929, 'M', 2810), +(36343, 'Gene', 1929, 'M', 2809), +(36344, 'Wayne', 1929, 'M', 2736), +(36345, 'Elmer', 1929, 'M', 2695), +(36346, 'Vernon', 1929, 'M', 2677), +(36347, 'Clifford', 1929, 'M', 2675), +(36348, 'Dale', 1929, 'M', 2663), +(36349, 'Clyde', 1929, 'M', 2632), +(36350, 'Herman', 1929, 'M', 2622), +(36351, 'Philip', 1929, 'M', 2601), +(36352, 'Alvin', 1929, 'M', 2554), +(36353, 'Don', 1929, 'M', 2517), +(36354, 'Gordon', 1929, 'M', 2493), +(36355, 'Glenn', 1929, 'M', 2434), +(36356, 'Leon', 1929, 'M', 2335), +(36357, 'Vincent', 1929, 'M', 2330), +(36358, 'Martin', 1929, 'M', 2309), +(36359, 'Lewis', 1929, 'M', 2229), +(36360, 'Lee', 1929, 'M', 2211), +(36361, 'Allen', 1929, 'M', 2188), +(36362, 'Charlie', 1929, 'M', 2186), +(36363, 'Bob', 1929, 'M', 2104), +(36364, 'Lester', 1929, 'M', 2104), +(36365, 'Harvey', 1929, 'M', 2066), +(36366, 'Gilbert', 1929, 'M', 2056), +(36367, 'Warren', 1929, 'M', 2035), +(36368, 'Milton', 1929, 'M', 2033), +(36369, 'Jesse', 1929, 'M', 2028), +(36370, 'Arnold', 1929, 'M', 1980), +(36371, 'Chester', 1929, 'M', 1967), +(36372, 'Douglas', 1929, 'M', 1963), +(36373, 'Jimmie', 1929, 'M', 1948), +(36374, 'Curtis', 1929, 'M', 1945), +(36375, 'Victor', 1929, 'M', 1944), +(36376, 'Cecil', 1929, 'M', 1887), +(36377, 'Eddie', 1929, 'M', 1878), +(36378, 'Johnnie', 1929, 'M', 1761), +(36379, 'Roland', 1929, 'M', 1730), +(36380, 'Sam', 1929, 'M', 1730), +(36381, 'Wallace', 1929, 'M', 1706), +(36382, 'Benjamin', 1929, 'M', 1694), +(36383, 'Jose', 1929, 'M', 1693), +(36384, 'Calvin', 1929, 'M', 1663), +(36385, 'Jerome', 1929, 'M', 1663), +(36386, 'Manuel', 1929, 'M', 1625), +(36387, 'Bruce', 1929, 'M', 1615), +(36388, 'Johnny', 1929, 'M', 1532), +(36389, 'Willard', 1929, 'M', 1513), +(36390, 'Edgar', 1929, 'M', 1488), +(36391, 'Jimmy', 1929, 'M', 1485), +(36392, 'Oscar', 1929, 'M', 1480), +(36393, 'Marion', 1929, 'M', 1447), +(36394, 'Claude', 1929, 'M', 1446), +(36395, 'Junior', 1929, 'M', 1446), +(36396, 'Patrick', 1929, 'M', 1442), +(36397, 'Billie', 1929, 'M', 1431), +(36398, 'Glen', 1929, 'M', 1428), +(36399, 'Hubert', 1929, 'M', 1387), +(36400, 'Maurice', 1929, 'M', 1374), +(36401, 'Stephen', 1929, 'M', 1355), +(36402, 'Virgil', 1929, 'M', 1338), +(36403, 'Max', 1929, 'M', 1337), +(36404, 'Jessie', 1929, 'M', 1328), +(36405, 'Everett', 1929, 'M', 1309), +(36406, 'Wilbur', 1929, 'M', 1293), +(36407, 'Jim', 1929, 'M', 1292), +(36408, 'Dean', 1929, 'M', 1286), +(36409, 'Tom', 1929, 'M', 1269), +(36410, 'Larry', 1929, 'M', 1268), +(36411, 'Leslie', 1929, 'M', 1257), +(36412, 'Duane', 1929, 'M', 1247), +(36413, 'Keith', 1929, 'M', 1244), +(36414, 'Hugh', 1929, 'M', 1232), +(36415, 'Rudolph', 1929, 'M', 1222), +(36416, 'Homer', 1929, 'M', 1207), +(36417, 'Nicholas', 1929, 'M', 1191), +(36418, 'Wesley', 1929, 'M', 1178), +(36419, 'Tommy', 1929, 'M', 1161), +(36420, 'Luther', 1929, 'M', 1119), +(36421, 'Alan', 1929, 'M', 1100), +(36422, 'Morris', 1929, 'M', 1091), +(36423, 'Franklin', 1929, 'M', 1059), +(36424, 'Sidney', 1929, 'M', 1059), +(36425, 'Willis', 1929, 'M', 1031), +(36426, 'Phillip', 1929, 'M', 1027), +(36427, 'Lyle', 1929, 'M', 1006), +(36428, 'Horace', 1929, 'M', 1001), +(36429, 'Dennis', 1929, 'M', 997), +(36430, 'Earnest', 1929, 'M', 997), +(36431, 'Alexander', 1929, 'M', 985), +(36432, 'Delbert', 1929, 'M', 961), +(36433, 'Bennie', 1929, 'M', 960), +(36434, 'Ben', 1929, 'M', 958), +(36435, 'Allan', 1929, 'M', 928), +(36436, 'Salvatore', 1929, 'M', 928), +(36437, 'Oliver', 1929, 'M', 883), +(36438, 'Steve', 1929, 'M', 882), +(36439, 'Juan', 1929, 'M', 876), +(36440, 'Tony', 1929, 'M', 871), +(36441, 'Clayton', 1929, 'M', 856), +(36442, 'Ted', 1929, 'M', 851), +(36443, 'Dick', 1929, 'M', 842), +(36444, 'Jay', 1929, 'M', 842), +(36445, 'Julius', 1929, 'M', 836), +(36446, 'Edmund', 1929, 'M', 831), +(36447, 'Freddie', 1929, 'M', 825), +(36448, 'Guy', 1929, 'M', 819), +(36449, 'Orville', 1929, 'M', 809), +(36450, 'Dan', 1929, 'M', 801), +(36451, 'Otis', 1929, 'M', 796), +(36452, 'Angelo', 1929, 'M', 794), +(36453, 'Jackie', 1929, 'M', 781), +(36454, 'Clifton', 1929, 'M', 780), +(36455, 'Alex', 1929, 'M', 774), +(36456, 'Jesus', 1929, 'M', 766), +(36457, 'Clinton', 1929, 'M', 762), +(36458, 'Leland', 1929, 'M', 762), +(36459, 'Nathaniel', 1929, 'M', 761), +(36460, 'Irving', 1929, 'M', 754), +(36461, 'Antonio', 1929, 'M', 734), +(36462, 'Archie', 1929, 'M', 732), +(36463, 'Merle', 1929, 'M', 729), +(36464, 'Matthew', 1929, 'M', 727), +(36465, 'Lonnie', 1929, 'M', 722), +(36466, 'Alton', 1929, 'M', 717), +(36467, 'Carroll', 1929, 'M', 706), +(36468, 'Lowell', 1929, 'M', 701), +(36469, 'Neil', 1929, 'M', 697), +(36470, 'Darrell', 1929, 'M', 695), +(36471, 'Marshall', 1929, 'M', 694), +(36472, 'Mike', 1929, 'M', 694), +(36473, 'Ramon', 1929, 'M', 691), +(36474, 'Wilbert', 1929, 'M', 684), +(36475, 'Myron', 1929, 'M', 659), +(36476, 'Ira', 1929, 'M', 655), +(36477, 'Ivan', 1929, 'M', 649), +(36478, 'Jacob', 1929, 'M', 647), +(36479, 'Irvin', 1929, 'M', 646), +(36480, 'Ervin', 1929, 'M', 644), +(36481, 'Wendell', 1929, 'M', 641), +(36482, 'Karl', 1929, 'M', 635), +(36483, 'Dewey', 1929, 'M', 633), +(36484, 'Wilfred', 1929, 'M', 611), +(36485, 'Bobbie', 1929, 'M', 601), +(36486, 'Forrest', 1929, 'M', 601), +(36487, 'Elbert', 1929, 'M', 600), +(36488, 'Malcolm', 1929, 'M', 599), +(36489, 'Julian', 1929, 'M', 593), +(36490, 'Nelson', 1929, 'M', 590), +(36491, 'Nick', 1929, 'M', 588), +(36492, 'Isaac', 1929, 'M', 586), +(36493, 'Laurence', 1929, 'M', 586), +(36494, 'Pete', 1929, 'M', 584), +(36495, 'Norbert', 1929, 'M', 582), +(36496, 'Eldon', 1929, 'M', 580), +(36497, 'Mark', 1929, 'M', 577), +(36498, 'Perry', 1929, 'M', 577), +(36499, 'Sylvester', 1929, 'M', 570), +(36500, 'Rufus', 1929, 'M', 568), +(36501, 'Bert', 1929, 'M', 566), +(36502, 'Doyle', 1929, 'M', 560), +(36503, 'Carlos', 1929, 'M', 557), +(36504, 'Gerard', 1929, 'M', 552), +(36505, 'Loren', 1929, 'M', 552), +(36506, 'Ellis', 1929, 'M', 546), +(36507, 'Burton', 1929, 'M', 545), +(36508, 'Rodney', 1929, 'M', 538), +(36509, 'Gary', 1929, 'M', 537), +(36510, 'Francisco', 1929, 'M', 531), +(36511, 'Owen', 1929, 'M', 526), +(36512, 'Byron', 1929, 'M', 521), +(36513, 'Tommie', 1929, 'M', 514), +(36514, 'Nathan', 1929, 'M', 513), +(36515, 'Mack', 1929, 'M', 508), +(36516, 'Fredrick', 1929, 'M', 505), +(36517, 'Troy', 1929, 'M', 505), +(36518, 'Loyd', 1929, 'M', 504), +(36519, 'Sherman', 1929, 'M', 504), +(36520, 'Grady', 1929, 'M', 503), +(36521, 'Carlton', 1929, 'M', 502), +(36522, 'Irwin', 1929, 'M', 500), +(36523, 'Emil', 1929, 'M', 497), +(36524, 'Felix', 1929, 'M', 497), +(36525, 'Percy', 1929, 'M', 496), +(36526, 'Roosevelt', 1929, 'M', 496), +(36527, 'Rex', 1929, 'M', 493), +(36528, 'Johnie', 1929, 'M', 486), +(36529, 'Ruben', 1929, 'M', 484), +(36530, 'Benny', 1929, 'M', 482), +(36531, 'Pedro', 1929, 'M', 472), +(36532, 'Dwight', 1929, 'M', 470), +(36533, 'Aaron', 1929, 'M', 469), +(36534, 'Dominick', 1929, 'M', 465), +(36535, 'Seymour', 1929, 'M', 464), +(36536, 'Boyd', 1929, 'M', 461), +(36537, 'Otto', 1929, 'M', 458), +(36538, 'August', 1929, 'M', 453), +(36539, 'Conrad', 1929, 'M', 444), +(36540, 'Mario', 1929, 'M', 443), +(36541, 'Reginald', 1929, 'M', 439), +(36542, 'Murray', 1929, 'M', 436), +(36543, 'Grover', 1929, 'M', 434), +(36544, 'Harley', 1929, 'M', 424), +(36545, 'Emmett', 1929, 'M', 423), +(36546, 'Raul', 1929, 'M', 422), +(36547, 'Joel', 1929, 'M', 420), +(36548, 'Lynn', 1929, 'M', 415), +(36549, 'Ross', 1929, 'M', 412), +(36550, 'Elwood', 1929, 'M', 406), +(36551, 'Sheldon', 1929, 'M', 403), +(36552, 'Wilson', 1929, 'M', 400), +(36553, 'Dallas', 1929, 'M', 399), +(36554, 'Dominic', 1929, 'M', 396), +(36555, 'Aubrey', 1929, 'M', 395), +(36556, 'Morton', 1929, 'M', 387), +(36557, 'Rudy', 1929, 'M', 387), +(36558, 'Stuart', 1929, 'M', 387), +(36559, 'Garland', 1929, 'M', 385), +(36560, 'Louie', 1929, 'M', 381), +(36561, 'Amos', 1929, 'M', 377), +(36562, 'Erwin', 1929, 'M', 377), +(36563, 'Luis', 1929, 'M', 377), +(36564, 'Teddy', 1929, 'M', 377), +(36565, 'Cornelius', 1929, 'M', 373), +(36566, 'Laverne', 1929, 'M', 369), +(36567, 'Pat', 1929, 'M', 365), +(36568, 'Austin', 1929, 'M', 364), +(36569, 'Alfonso', 1929, 'M', 358), +(36570, 'Harlan', 1929, 'M', 356), +(36571, 'Buddy', 1929, 'M', 355), +(36572, 'Roberto', 1929, 'M', 354), +(36573, 'Roscoe', 1929, 'M', 349), +(36574, 'Preston', 1929, 'M', 347), +(36575, 'Abraham', 1929, 'M', 342), +(36576, 'Neal', 1929, 'M', 342), +(36577, 'Maynard', 1929, 'M', 336), +(36578, 'Adolph', 1929, 'M', 333), +(36579, 'Dave', 1929, 'M', 331), +(36580, 'Merlin', 1929, 'M', 328), +(36581, 'Mary', 1929, 'M', 327), +(36582, 'Charley', 1929, 'M', 322), +(36583, 'Millard', 1929, 'M', 320), +(36584, 'Edmond', 1929, 'M', 319), +(36585, 'Sanford', 1929, 'M', 316), +(36586, 'Danny', 1929, 'M', 315), +(36587, 'Moses', 1929, 'M', 314), +(36588, 'Adam', 1929, 'M', 308), +(36589, 'Sammie', 1929, 'M', 308), +(36590, 'Wade', 1929, 'M', 308), +(36591, 'Jasper', 1929, 'M', 306), +(36592, 'Elton', 1929, 'M', 301), +(36593, 'Sammy', 1929, 'M', 301), +(36594, 'Delmar', 1929, 'M', 300), +(36595, 'Elvin', 1929, 'M', 299), +(36596, 'Salvador', 1929, 'M', 297), +(36597, 'Grant', 1929, 'M', 296), +(36598, 'Steven', 1929, 'M', 296), +(36599, 'Odell', 1929, 'M', 292), +(36600, 'Timothy', 1929, 'M', 292), +(36601, 'Reuben', 1929, 'M', 290), +(36602, 'Jean', 1929, 'M', 288), +(36603, 'Clair', 1929, 'M', 285), +(36604, 'Ned', 1929, 'M', 283), +(36605, 'Royce', 1929, 'M', 281), +(36606, 'Weldon', 1929, 'M', 280), +(36607, 'Darwin', 1929, 'M', 278), +(36608, 'Will', 1929, 'M', 276), +(36609, 'Rocco', 1929, 'M', 275), +(36610, 'Christopher', 1929, 'M', 274), +(36611, 'Kermit', 1929, 'M', 274), +(36612, 'Monroe', 1929, 'M', 274), +(36613, 'Travis', 1929, 'M', 274), +(36614, 'Alfredo', 1929, 'M', 271), +(36615, 'Carmen', 1929, 'M', 270), +(36616, 'Wilmer', 1929, 'M', 270), +(36617, 'Merrill', 1929, 'M', 269), +(36618, 'Simon', 1929, 'M', 267), +(36619, 'Lionel', 1929, 'M', 265), +(36620, 'Marlin', 1929, 'M', 265), +(36621, 'Shirley', 1929, 'M', 264), +(36622, 'Armand', 1929, 'M', 263), +(36623, 'Earle', 1929, 'M', 260), +(36624, 'Russel', 1929, 'M', 260), +(36625, 'Mitchell', 1929, 'M', 259), +(36626, 'Gus', 1929, 'M', 256), +(36627, 'Andy', 1929, 'M', 255), +(36628, 'Lavern', 1929, 'M', 253), +(36629, 'Patsy', 1929, 'M', 253), +(36630, 'Emanuel', 1929, 'M', 251), +(36631, 'Vito', 1929, 'M', 251), +(36632, 'Darrel', 1929, 'M', 249), +(36633, 'Ollie', 1929, 'M', 249), +(36634, 'Thurman', 1929, 'M', 249), +(36635, 'Marcus', 1929, 'M', 248), +(36636, 'Sterling', 1929, 'M', 248), +(36637, 'Jake', 1929, 'M', 247), +(36638, 'Rolland', 1929, 'M', 247), +(36639, 'Cleveland', 1929, 'M', 244), +(36640, 'Elijah', 1929, 'M', 244), +(36641, 'Guadalupe', 1929, 'M', 244), +(36642, 'Miguel', 1929, 'M', 244), +(36643, 'Clark', 1929, 'M', 243), +(36644, 'Noel', 1929, 'M', 242), +(36645, 'Alva', 1929, 'M', 240), +(36646, 'Stewart', 1929, 'M', 240), +(36647, 'Alonzo', 1929, 'M', 238), +(36648, 'Basil', 1929, 'M', 238), +(36649, 'Gabriel', 1929, 'M', 237), +(36650, 'Gregory', 1929, 'M', 237), +(36651, 'Hollis', 1929, 'M', 234), +(36652, 'Wilburn', 1929, 'M', 232); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(36653, 'Armando', 1929, 'M', 231), +(36654, 'Buford', 1929, 'M', 230), +(36655, 'Clement', 1929, 'M', 230), +(36656, 'Norris', 1929, 'M', 230), +(36657, 'Wiley', 1929, 'M', 230), +(36658, 'Adrian', 1929, 'M', 228), +(36659, 'Frankie', 1929, 'M', 226), +(36660, 'Jess', 1929, 'M', 224), +(36661, 'Normand', 1929, 'M', 224), +(36662, 'Emory', 1929, 'M', 223), +(36663, 'Harrison', 1929, 'M', 223), +(36664, 'Forest', 1929, 'M', 222), +(36665, 'Levi', 1929, 'M', 222), +(36666, 'Lorenzo', 1929, 'M', 222), +(36667, 'Terry', 1929, 'M', 222), +(36668, 'Truman', 1929, 'M', 218), +(36669, 'Lamar', 1929, 'M', 217), +(36670, 'Wilford', 1929, 'M', 215), +(36671, 'Mervin', 1929, 'M', 214), +(36672, 'Harris', 1929, 'M', 213), +(36673, 'Woodrow', 1929, 'M', 213), +(36674, 'Rafael', 1929, 'M', 212), +(36675, 'Randolph', 1929, 'M', 212), +(36676, 'Hershel', 1929, 'M', 211), +(36677, 'Royal', 1929, 'M', 211), +(36678, 'Carol', 1929, 'M', 210), +(36679, 'Emery', 1929, 'M', 208), +(36680, 'Rodolfo', 1929, 'M', 207), +(36681, 'Hoover', 1929, 'M', 206), +(36682, 'Barney', 1929, 'M', 205), +(36683, 'Ed', 1929, 'M', 205), +(36684, 'Randall', 1929, 'M', 205), +(36685, 'Eric', 1929, 'M', 204), +(36686, 'Solomon', 1929, 'M', 204), +(36687, 'Arturo', 1929, 'M', 203), +(36688, 'Ricardo', 1929, 'M', 203), +(36689, 'Jackson', 1929, 'M', 202), +(36690, 'Coy', 1929, 'M', 201), +(36691, 'Winston', 1929, 'M', 201), +(36692, 'Eli', 1929, 'M', 198), +(36693, 'Rene', 1929, 'M', 198), +(36694, 'Cleo', 1929, 'M', 197), +(36695, 'Cyril', 1929, 'M', 197), +(36696, 'Noah', 1929, 'M', 197), +(36697, 'Claud', 1929, 'M', 194), +(36698, 'Hal', 1929, 'M', 194), +(36699, 'Huey', 1929, 'M', 194), +(36700, 'Delmer', 1929, 'M', 193), +(36701, 'Hector', 1929, 'M', 193), +(36702, 'Ward', 1929, 'M', 192), +(36703, 'Alphonse', 1929, 'M', 190), +(36704, 'Winfred', 1929, 'M', 190), +(36705, 'Van', 1929, 'M', 189), +(36706, 'Roman', 1929, 'M', 187), +(36707, 'Enrique', 1929, 'M', 186), +(36708, 'Dudley', 1929, 'M', 185), +(36709, 'Miles', 1929, 'M', 185), +(36710, 'Milford', 1929, 'M', 185), +(36711, 'Vern', 1929, 'M', 184), +(36712, 'Carmine', 1929, 'M', 183), +(36713, 'Carrol', 1929, 'M', 183), +(36714, 'Pablo', 1929, 'M', 183), +(36715, 'Bud', 1929, 'M', 180), +(36716, 'Freeman', 1929, 'M', 179), +(36717, 'Jerald', 1929, 'M', 179), +(36718, 'Lenard', 1929, 'M', 179), +(36719, 'Elias', 1929, 'M', 178), +(36720, 'Herschel', 1929, 'M', 178), +(36721, 'Orval', 1929, 'M', 178), +(36722, 'Elliott', 1929, 'M', 177), +(36723, 'Silas', 1929, 'M', 177), +(36724, 'Roderick', 1929, 'M', 176), +(36725, 'Everette', 1929, 'M', 174), +(36726, 'Jeff', 1929, 'M', 174), +(36727, 'Al', 1929, 'M', 171), +(36728, 'Chris', 1929, 'M', 170), +(36729, 'Pasquale', 1929, 'M', 170), +(36730, 'Elmo', 1929, 'M', 169), +(36731, 'Gale', 1929, 'M', 168), +(36732, 'Ellsworth', 1929, 'M', 167), +(36733, 'Frederic', 1929, 'M', 166), +(36734, 'Alden', 1929, 'M', 164), +(36735, 'Scott', 1929, 'M', 164), +(36736, 'Thaddeus', 1929, 'M', 163), +(36737, 'Wilton', 1929, 'M', 163), +(36738, 'Riley', 1929, 'M', 162), +(36739, 'Linwood', 1929, 'M', 161), +(36740, 'Cletus', 1929, 'M', 159), +(36741, 'Spencer', 1929, 'M', 158), +(36742, 'Ulysses', 1929, 'M', 158), +(36743, 'Booker', 1929, 'M', 157), +(36744, 'Denver', 1929, 'M', 157), +(36745, 'Phil', 1929, 'M', 157), +(36746, 'Saul', 1929, 'M', 157), +(36747, 'Odis', 1929, 'M', 156), +(36748, 'Anton', 1929, 'M', 155), +(36749, 'Luke', 1929, 'M', 154), +(36750, 'Blaine', 1929, 'M', 153), +(36751, 'Hugo', 1929, 'M', 152), +(36752, 'Lyman', 1929, 'M', 152), +(36753, 'Hiram', 1929, 'M', 151), +(36754, 'Alberto', 1929, 'M', 150), +(36755, 'Elroy', 1929, 'M', 150), +(36756, 'Fernando', 1929, 'M', 148), +(36757, 'Hoyt', 1929, 'M', 148), +(36758, 'Bruno', 1929, 'M', 147), +(36759, 'Barry', 1929, 'M', 146), +(36760, 'Emilio', 1929, 'M', 146), +(36761, 'Ernesto', 1929, 'M', 146), +(36762, 'Gail', 1929, 'M', 146), +(36763, 'Julio', 1929, 'M', 145), +(36764, 'Milo', 1929, 'M', 144), +(36765, 'Donnie', 1929, 'M', 142), +(36766, 'Nolan', 1929, 'M', 142), +(36767, 'Omer', 1929, 'M', 142), +(36768, 'Vance', 1929, 'M', 142), +(36769, 'Bertram', 1929, 'M', 141), +(36770, 'Domingo', 1929, 'M', 141), +(36771, 'Kelly', 1929, 'M', 141), +(36772, 'Augustine', 1929, 'M', 138), +(36773, 'Ferdinand', 1929, 'M', 138), +(36774, 'Houston', 1929, 'M', 138), +(36775, 'Kent', 1929, 'M', 138), +(36776, 'Morgan', 1929, 'M', 138), +(36777, 'Olen', 1929, 'M', 138), +(36778, 'Tomas', 1929, 'M', 138), +(36779, 'Gilberto', 1929, 'M', 137), +(36780, 'Mathew', 1929, 'M', 136), +(36781, 'Burl', 1929, 'M', 135), +(36782, 'Buster', 1929, 'M', 135), +(36783, 'Isaiah', 1929, 'M', 135), +(36784, 'Olin', 1929, 'M', 134), +(36785, 'Betty', 1929, 'M', 133), +(36786, 'Raymon', 1929, 'M', 132), +(36787, 'Angel', 1929, 'M', 131), +(36788, 'Benito', 1929, 'M', 131), +(36789, 'Dalton', 1929, 'M', 131), +(36790, 'Ignacio', 1929, 'M', 131), +(36791, 'Columbus', 1929, 'M', 129), +(36792, 'Arther', 1929, 'M', 128), +(36793, 'Carlo', 1929, 'M', 128), +(36794, 'Marcel', 1929, 'M', 128), +(36795, 'Emerson', 1929, 'M', 127), +(36796, 'Maxwell', 1929, 'M', 127), +(36797, 'Fletcher', 1929, 'M', 126), +(36798, 'Bryan', 1929, 'M', 125), +(36799, 'Elden', 1929, 'M', 123), +(36800, 'Galen', 1929, 'M', 123), +(36801, 'Major', 1929, 'M', 123), +(36802, 'Vaughn', 1929, 'M', 123), +(36803, 'Dana', 1929, 'M', 122), +(36804, 'Daryl', 1929, 'M', 122), +(36805, 'Donn', 1929, 'M', 122), +(36806, 'Isiah', 1929, 'M', 122), +(36807, 'Joesph', 1929, 'M', 121), +(36808, 'Jules', 1929, 'M', 121), +(36809, 'Jason', 1929, 'M', 120), +(36810, 'Mckinley', 1929, 'M', 120), +(36811, 'Evan', 1929, 'M', 119), +(36812, 'Arlie', 1929, 'M', 118), +(36813, 'Coleman', 1929, 'M', 118), +(36814, 'Dorothy', 1929, 'M', 118), +(36815, 'Hobert', 1929, 'M', 118), +(36816, 'Stanford', 1929, 'M', 118), +(36817, 'Verlin', 1929, 'M', 118), +(36818, 'Foster', 1929, 'M', 117), +(36819, 'Newton', 1929, 'M', 117), +(36820, 'Verne', 1929, 'M', 117), +(36821, 'Warner', 1929, 'M', 117), +(36822, 'Ernie', 1929, 'M', 116), +(36823, 'Harland', 1929, 'M', 116), +(36824, 'Otha', 1929, 'M', 116), +(36825, 'Palmer', 1929, 'M', 116), +(36826, 'Waldo', 1929, 'M', 116), +(36827, 'Jeremiah', 1929, 'M', 115), +(36828, 'Rodger', 1929, 'M', 115), +(36829, 'Beverly', 1929, 'M', 114), +(36830, 'Santiago', 1929, 'M', 114), +(36831, 'Talmadge', 1929, 'M', 113), +(36832, 'Alphonso', 1929, 'M', 112), +(36833, 'Brian', 1929, 'M', 111), +(36834, 'Dewitt', 1929, 'M', 111), +(36835, 'Emile', 1929, 'M', 111), +(36836, 'Harmon', 1929, 'M', 111), +(36837, 'Lemuel', 1929, 'M', 111), +(36838, 'Reed', 1929, 'M', 111), +(36839, 'Sol', 1929, 'M', 111), +(36840, 'Bradley', 1929, 'M', 110), +(36841, 'Davis', 1929, 'M', 110), +(36842, 'Hilton', 1929, 'M', 110), +(36843, 'Micheal', 1929, 'M', 110), +(36844, 'Rogers', 1929, 'M', 110), +(36845, 'Shelby', 1929, 'M', 110), +(36846, 'Dee', 1929, 'M', 109), +(36847, 'Doris', 1929, 'M', 109), +(36848, 'Elwin', 1929, 'M', 109), +(36849, 'Gaylord', 1929, 'M', 109), +(36850, 'Junius', 1929, 'M', 109), +(36851, 'Clay', 1929, 'M', 108), +(36852, 'Justin', 1929, 'M', 108), +(36853, 'Lupe', 1929, 'M', 108), +(36854, 'Aloysius', 1929, 'M', 107), +(36855, 'Craig', 1929, 'M', 106), +(36856, 'Ezra', 1929, 'M', 106), +(36857, 'Graham', 1929, 'M', 106), +(36858, 'Gregorio', 1929, 'M', 106), +(36859, 'Merton', 1929, 'M', 106), +(36860, 'Oren', 1929, 'M', 106), +(36861, 'Wilber', 1929, 'M', 106), +(36862, 'Augustus', 1929, 'M', 105), +(36863, 'Benedict', 1929, 'M', 105), +(36864, 'Bennett', 1929, 'M', 105), +(36865, 'Mickey', 1929, 'M', 105), +(36866, 'Ambrose', 1929, 'M', 104), +(36867, 'Dwayne', 1929, 'M', 104), +(36868, 'Freddy', 1929, 'M', 104), +(36869, 'Jewel', 1929, 'M', 104), +(36870, 'Judson', 1929, 'M', 104), +(36871, 'Noble', 1929, 'M', 104), +(36872, 'Ottis', 1929, 'M', 104), +(36873, 'Anderson', 1929, 'M', 103), +(36874, 'Avery', 1929, 'M', 102), +(36875, 'Santo', 1929, 'M', 102), +(36876, 'Lincoln', 1929, 'M', 101), +(36877, 'Monte', 1929, 'M', 101), +(36878, 'Orlando', 1929, 'M', 101), +(36879, 'Ronnie', 1929, 'M', 101), +(36880, 'Andres', 1929, 'M', 100), +(36881, 'Mary', 1930, 'F', 64134), +(36882, 'Betty', 1930, 'F', 38237), +(36883, 'Dorothy', 1930, 'F', 30404), +(36884, 'Helen', 1930, 'F', 19912), +(36885, 'Margaret', 1930, 'F', 18351), +(36886, 'Barbara', 1930, 'F', 18281), +(36887, 'Patricia', 1930, 'F', 15746), +(36888, 'Joan', 1930, 'F', 15477), +(36889, 'Doris', 1930, 'F', 15462), +(36890, 'Ruth', 1930, 'F', 14937), +(36891, 'Shirley', 1930, 'F', 14778), +(36892, 'Virginia', 1930, 'F', 13195), +(36893, 'Dolores', 1930, 'F', 12833), +(36894, 'Jean', 1930, 'F', 11985), +(36895, 'Elizabeth', 1930, 'F', 10993), +(36896, 'Frances', 1930, 'F', 10643), +(36897, 'Lois', 1930, 'F', 10115), +(36898, 'Joyce', 1930, 'F', 9659), +(36899, 'Evelyn', 1930, 'F', 9531), +(36900, 'Alice', 1930, 'F', 9517), +(36901, 'Mildred', 1930, 'F', 9343), +(36902, 'Marilyn', 1930, 'F', 9285), +(36903, 'Anna', 1930, 'F', 9080), +(36904, 'Nancy', 1930, 'F', 9068), +(36905, 'Norma', 1930, 'F', 8508), +(36906, 'Marie', 1930, 'F', 8425), +(36907, 'Martha', 1930, 'F', 7832), +(36908, 'Phyllis', 1930, 'F', 7770), +(36909, 'Rose', 1930, 'F', 7693), +(36910, 'Gloria', 1930, 'F', 7603), +(36911, 'Louise', 1930, 'F', 6940), +(36912, 'Marjorie', 1930, 'F', 6629), +(36913, 'Irene', 1930, 'F', 6465), +(36914, 'Beverly', 1930, 'F', 6458), +(36915, 'Catherine', 1930, 'F', 6300), +(36916, 'Ruby', 1930, 'F', 5990), +(36917, 'Donna', 1930, 'F', 5980), +(36918, 'Florence', 1930, 'F', 5861), +(36919, 'Eleanor', 1930, 'F', 5821), +(36920, 'Annie', 1930, 'F', 5753), +(36921, 'Ann', 1930, 'F', 5531), +(36922, 'Rita', 1930, 'F', 5467), +(36923, 'Lillian', 1930, 'F', 5452), +(36924, 'Geraldine', 1930, 'F', 5447), +(36925, 'Thelma', 1930, 'F', 5244), +(36926, 'Lorraine', 1930, 'F', 5165), +(36927, 'June', 1930, 'F', 5093), +(36928, 'Gladys', 1930, 'F', 5063), +(36929, 'Josephine', 1930, 'F', 4984), +(36930, 'Theresa', 1930, 'F', 4779), +(36931, 'Edna', 1930, 'F', 4761), +(36932, 'Pauline', 1930, 'F', 4653), +(36933, 'Janet', 1930, 'F', 4602), +(36934, 'Carol', 1930, 'F', 4598), +(36935, 'Jane', 1930, 'F', 4574), +(36936, 'Wanda', 1930, 'F', 4522), +(36937, 'Juanita', 1930, 'F', 4515), +(36938, 'Bernice', 1930, 'F', 4433), +(36939, 'Lucille', 1930, 'F', 4326), +(36940, 'Marion', 1930, 'F', 4304), +(36941, 'Edith', 1930, 'F', 4272), +(36942, 'Grace', 1930, 'F', 4216), +(36943, 'Audrey', 1930, 'F', 4130), +(36944, 'Clara', 1930, 'F', 4122), +(36945, 'Ethel', 1930, 'F', 4099), +(36946, 'Delores', 1930, 'F', 4097), +(36947, 'Peggy', 1930, 'F', 4081), +(36948, 'Wilma', 1930, 'F', 4074), +(36949, 'Elaine', 1930, 'F', 3952), +(36950, 'Sarah', 1930, 'F', 3920), +(36951, 'Hazel', 1930, 'F', 3887), +(36952, 'Carolyn', 1930, 'F', 3725), +(36953, 'Emma', 1930, 'F', 3555), +(36954, 'Jacqueline', 1930, 'F', 3413), +(36955, 'Charlotte', 1930, 'F', 3407), +(36956, 'Beatrice', 1930, 'F', 3392), +(36957, 'Esther', 1930, 'F', 3350), +(36958, 'Bonnie', 1930, 'F', 3268), +(36959, 'Billie', 1930, 'F', 3241), +(36960, 'Marian', 1930, 'F', 3213), +(36961, 'Joanne', 1930, 'F', 3154), +(36962, 'Rosemary', 1930, 'F', 3152), +(36963, 'Anne', 1930, 'F', 3094), +(36964, 'Kathleen', 1930, 'F', 3075), +(36965, 'Katherine', 1930, 'F', 3029), +(36966, 'Eva', 1930, 'F', 3019), +(36967, 'Willie', 1930, 'F', 3016), +(36968, 'Elsie', 1930, 'F', 2973), +(36969, 'Laura', 1930, 'F', 2907), +(36970, 'Julia', 1930, 'F', 2879), +(36971, 'Vivian', 1930, 'F', 2870), +(36972, 'Jeanne', 1930, 'F', 2720), +(36973, 'Maxine', 1930, 'F', 2701), +(36974, 'Ida', 1930, 'F', 2645), +(36975, 'Bertha', 1930, 'F', 2603), +(36976, 'Gertrude', 1930, 'F', 2553), +(36977, 'Sally', 1930, 'F', 2544), +(36978, 'Patsy', 1930, 'F', 2543), +(36979, 'Maria', 1930, 'F', 2541), +(36980, 'Ellen', 1930, 'F', 2521), +(36981, 'Kathryn', 1930, 'F', 2513), +(36982, 'Agnes', 1930, 'F', 2511), +(36983, 'Arlene', 1930, 'F', 2506), +(36984, 'Vera', 1930, 'F', 2491), +(36985, 'Loretta', 1930, 'F', 2483), +(36986, 'Jeanette', 1930, 'F', 2435), +(36987, 'Ella', 1930, 'F', 2404), +(36988, 'Bessie', 1930, 'F', 2384), +(36989, 'Alma', 1930, 'F', 2380), +(36990, 'Eileen', 1930, 'F', 2377), +(36991, 'Lillie', 1930, 'F', 2363), +(36992, 'Margie', 1930, 'F', 2242), +(36993, 'Nellie', 1930, 'F', 2211), +(36994, 'Jessie', 1930, 'F', 2196), +(36995, 'Anita', 1930, 'F', 2184), +(36996, 'Viola', 1930, 'F', 2160), +(36997, 'Georgia', 1930, 'F', 2157), +(36998, 'Joann', 1930, 'F', 2131), +(36999, 'Lucy', 1930, 'F', 2122), +(37000, 'Violet', 1930, 'F', 2098), +(37001, 'Pearl', 1930, 'F', 2068), +(37002, 'Minnie', 1930, 'F', 2005), +(37003, 'Myrtle', 1930, 'F', 1995), +(37004, 'Christine', 1930, 'F', 1988), +(37005, 'Roberta', 1930, 'F', 1951), +(37006, 'Janice', 1930, 'F', 1929), +(37007, 'Velma', 1930, 'F', 1918), +(37008, 'Mattie', 1930, 'F', 1892), +(37009, 'Rosa', 1930, 'F', 1877), +(37010, 'Leona', 1930, 'F', 1872), +(37011, 'Jo', 1930, 'F', 1871), +(37012, 'Sylvia', 1930, 'F', 1829), +(37013, 'Geneva', 1930, 'F', 1797), +(37014, 'Sara', 1930, 'F', 1767), +(37015, 'Bobbie', 1930, 'F', 1766), +(37016, 'Claire', 1930, 'F', 1653), +(37017, 'Mae', 1930, 'F', 1651), +(37018, 'Harriet', 1930, 'F', 1597), +(37019, 'Naomi', 1930, 'F', 1593), +(37020, 'Stella', 1930, 'F', 1569), +(37021, 'Darlene', 1930, 'F', 1544), +(37022, 'Dora', 1930, 'F', 1499), +(37023, 'Genevieve', 1930, 'F', 1497), +(37024, 'Lena', 1930, 'F', 1491), +(37025, 'Carrie', 1930, 'F', 1466), +(37026, 'Constance', 1930, 'F', 1465), +(37027, 'Alberta', 1930, 'F', 1463), +(37028, 'Eunice', 1930, 'F', 1438), +(37029, 'Ramona', 1930, 'F', 1410), +(37030, 'Mabel', 1930, 'F', 1368), +(37031, 'Verna', 1930, 'F', 1358), +(37032, 'Jennie', 1930, 'F', 1353), +(37033, 'Emily', 1930, 'F', 1346), +(37034, 'Rosie', 1930, 'F', 1344), +(37035, 'Muriel', 1930, 'F', 1342), +(37036, 'Opal', 1930, 'F', 1328), +(37037, 'Lula', 1930, 'F', 1314), +(37038, 'Hilda', 1930, 'F', 1302), +(37039, 'Marguerite', 1930, 'F', 1289), +(37040, 'Hattie', 1930, 'F', 1283), +(37041, 'Cora', 1930, 'F', 1273), +(37042, 'Lola', 1930, 'F', 1270), +(37043, 'Joy', 1930, 'F', 1268), +(37044, 'Rachel', 1930, 'F', 1261), +(37045, 'Yvonne', 1930, 'F', 1242), +(37046, 'Fannie', 1930, 'F', 1227), +(37047, 'Sue', 1930, 'F', 1212), +(37048, 'Beulah', 1930, 'F', 1209), +(37049, 'Erma', 1930, 'F', 1206), +(37050, 'Lila', 1930, 'F', 1203), +(37051, 'Inez', 1930, 'F', 1174), +(37052, 'Caroline', 1930, 'F', 1160), +(37053, 'Madeline', 1930, 'F', 1144), +(37054, 'Flora', 1930, 'F', 1142), +(37055, 'Rosalie', 1930, 'F', 1119), +(37056, 'Rebecca', 1930, 'F', 1113), +(37057, 'Faye', 1930, 'F', 1101), +(37058, 'Laverne', 1930, 'F', 1096), +(37059, 'Blanche', 1930, 'F', 1094), +(37060, 'Irma', 1930, 'F', 1083), +(37061, 'Daisy', 1930, 'F', 1062), +(37062, 'Eula', 1930, 'F', 1053), +(37063, 'Miriam', 1930, 'F', 1052), +(37064, 'Carmen', 1930, 'F', 1042), +(37065, 'Ada', 1930, 'F', 1040), +(37066, 'Marcella', 1930, 'F', 1034), +(37067, 'Mamie', 1930, 'F', 1028), +(37068, 'Eloise', 1930, 'F', 1023), +(37069, 'Imogene', 1930, 'F', 1023), +(37070, 'Nora', 1930, 'F', 1014), +(37071, 'Bettie', 1930, 'F', 1004), +(37072, 'Susan', 1930, 'F', 1003), +(37073, 'Nina', 1930, 'F', 995), +(37074, 'Teresa', 1930, 'F', 993), +(37075, 'Charlene', 1930, 'F', 987), +(37076, 'Jeannette', 1930, 'F', 987), +(37077, 'Mable', 1930, 'F', 978), +(37078, 'Antoinette', 1930, 'F', 975), +(37079, 'Ernestine', 1930, 'F', 959), +(37080, 'Gwendolyn', 1930, 'F', 959), +(37081, 'Colleen', 1930, 'F', 945), +(37082, 'Judith', 1930, 'F', 944), +(37083, 'Iris', 1930, 'F', 939), +(37084, 'Rosemarie', 1930, 'F', 926), +(37085, 'Susie', 1930, 'F', 922), +(37086, 'Johnnie', 1930, 'F', 912), +(37087, 'Della', 1930, 'F', 887), +(37088, 'Deloris', 1930, 'F', 883), +(37089, 'Estelle', 1930, 'F', 872), +(37090, 'Melba', 1930, 'F', 862), +(37091, 'Lorene', 1930, 'F', 856), +(37092, 'Angelina', 1930, 'F', 832), +(37093, 'Priscilla', 1930, 'F', 824), +(37094, 'Sadie', 1930, 'F', 819), +(37095, 'Regina', 1930, 'F', 800), +(37096, 'Maggie', 1930, 'F', 794), +(37097, 'Suzanne', 1930, 'F', 793), +(37098, 'Marianne', 1930, 'F', 791), +(37099, 'Connie', 1930, 'F', 783), +(37100, 'Annette', 1930, 'F', 780), +(37101, 'Bette', 1930, 'F', 774), +(37102, 'Olga', 1930, 'F', 774), +(37103, 'Patty', 1930, 'F', 769), +(37104, 'Bettye', 1930, 'F', 752), +(37105, 'Diane', 1930, 'F', 742), +(37106, 'Katie', 1930, 'F', 737), +(37107, 'Pat', 1930, 'F', 734), +(37108, 'Victoria', 1930, 'F', 713), +(37109, 'Janie', 1930, 'F', 707), +(37110, 'Winifred', 1930, 'F', 699), +(37111, 'Marcia', 1930, 'F', 692), +(37112, 'Jewel', 1930, 'F', 689), +(37113, 'Lydia', 1930, 'F', 687), +(37114, 'Dorthy', 1930, 'F', 686), +(37115, 'Amelia', 1930, 'F', 681), +(37116, 'Reba', 1930, 'F', 680), +(37117, 'Ora', 1930, 'F', 676), +(37118, 'Henrietta', 1930, 'F', 673), +(37119, 'Nadine', 1930, 'F', 667), +(37120, 'Jacquelyn', 1930, 'F', 666), +(37121, 'Ollie', 1930, 'F', 663), +(37122, 'Nettie', 1930, 'F', 656), +(37123, 'Angela', 1930, 'F', 640), +(37124, 'Dorothea', 1930, 'F', 640), +(37125, 'Veronica', 1930, 'F', 638), +(37126, 'Fern', 1930, 'F', 634), +(37127, 'Jackie', 1930, 'F', 626), +(37128, 'Ina', 1930, 'F', 624), +(37129, 'Natalie', 1930, 'F', 623), +(37130, 'Essie', 1930, 'F', 617), +(37131, 'Fay', 1930, 'F', 614), +(37132, 'Paula', 1930, 'F', 614), +(37133, 'Freda', 1930, 'F', 610), +(37134, 'Iva', 1930, 'F', 605), +(37135, 'Isabel', 1930, 'F', 597), +(37136, 'Luella', 1930, 'F', 597), +(37137, 'Cynthia', 1930, 'F', 596), +(37138, 'Jeannine', 1930, 'F', 593), +(37139, 'Lela', 1930, 'F', 586), +(37140, 'Therese', 1930, 'F', 576), +(37141, 'Jimmie', 1930, 'F', 574), +(37142, 'Cecilia', 1930, 'F', 565), +(37143, 'Diana', 1930, 'F', 565), +(37144, 'Sallie', 1930, 'F', 564), +(37145, 'Adele', 1930, 'F', 559), +(37146, 'Celia', 1930, 'F', 559), +(37147, 'Glenna', 1930, 'F', 556), +(37148, 'Lottie', 1930, 'F', 556), +(37149, 'Adeline', 1930, 'F', 555), +(37150, 'May', 1930, 'F', 553), +(37151, 'Etta', 1930, 'F', 551), +(37152, 'Helene', 1930, 'F', 550), +(37153, 'Selma', 1930, 'F', 550), +(37154, 'Angeline', 1930, 'F', 547), +(37155, 'Frankie', 1930, 'F', 545), +(37156, 'Mona', 1930, 'F', 540), +(37157, 'Olive', 1930, 'F', 539), +(37158, 'Jewell', 1930, 'F', 538), +(37159, 'Clarice', 1930, 'F', 536), +(37160, 'Bernadine', 1930, 'F', 533), +(37161, 'Maureen', 1930, 'F', 532), +(37162, 'Mavis', 1930, 'F', 532), +(37163, 'Leola', 1930, 'F', 530), +(37164, 'Ola', 1930, 'F', 529), +(37165, 'Goldie', 1930, 'F', 528), +(37166, 'Cecelia', 1930, 'F', 526), +(37167, 'Sophie', 1930, 'F', 524), +(37168, 'Lenora', 1930, 'F', 523), +(37169, 'Sharon', 1930, 'F', 523), +(37170, 'Cleo', 1930, 'F', 515), +(37171, 'Dixie', 1930, 'F', 512), +(37172, 'Willa', 1930, 'F', 512), +(37173, 'Elva', 1930, 'F', 511), +(37174, 'Nell', 1930, 'F', 511), +(37175, 'Addie', 1930, 'F', 510), +(37176, 'Elinor', 1930, 'F', 509), +(37177, 'Rhoda', 1930, 'F', 498), +(37178, 'Lizzie', 1930, 'F', 494), +(37179, 'Linda', 1930, 'F', 493), +(37180, 'Myra', 1930, 'F', 489), +(37181, 'Effie', 1930, 'F', 487), +(37182, 'Lucile', 1930, 'F', 485), +(37183, 'Myrna', 1930, 'F', 483), +(37184, 'Elvira', 1930, 'F', 480), +(37185, 'Gracie', 1930, 'F', 474), +(37186, 'Lou', 1930, 'F', 468), +(37187, 'Francis', 1930, 'F', 467), +(37188, 'Lee', 1930, 'F', 463), +(37189, 'Annabelle', 1930, 'F', 462), +(37190, 'Estella', 1930, 'F', 461), +(37191, 'Carmela', 1930, 'F', 457), +(37192, 'Ila', 1930, 'F', 451), +(37193, 'Corinne', 1930, 'F', 444), +(37194, 'Earline', 1930, 'F', 443), +(37195, 'Maryann', 1930, 'F', 440), +(37196, 'Isabelle', 1930, 'F', 438), +(37197, 'Nelda', 1930, 'F', 434), +(37198, 'Alta', 1930, 'F', 427), +(37199, 'Guadalupe', 1930, 'F', 426), +(37200, 'Carole', 1930, 'F', 425), +(37201, 'Robert', 1930, 'F', 425), +(37202, 'Rosetta', 1930, 'F', 421), +(37203, 'James', 1930, 'F', 418), +(37204, 'Virgie', 1930, 'F', 418), +(37205, 'Lenore', 1930, 'F', 411), +(37206, 'Lupe', 1930, 'F', 406), +(37207, 'Olivia', 1930, 'F', 403), +(37208, 'John', 1930, 'F', 402), +(37209, 'Dona', 1930, 'F', 401), +(37210, 'Ruthie', 1930, 'F', 397), +(37211, 'Dolly', 1930, 'F', 387), +(37212, 'Amy', 1930, 'F', 386), +(37213, 'Elnora', 1930, 'F', 377), +(37214, 'Lavonne', 1930, 'F', 377), +(37215, 'Polly', 1930, 'F', 373), +(37216, 'Rena', 1930, 'F', 373), +(37217, 'Arline', 1930, 'F', 371), +(37218, 'Zelma', 1930, 'F', 370), +(37219, 'Consuelo', 1930, 'F', 367), +(37220, 'Dollie', 1930, 'F', 367), +(37221, 'Judy', 1930, 'F', 366), +(37222, 'Flossie', 1930, 'F', 365), +(37223, 'Neva', 1930, 'F', 365), +(37224, 'Rosella', 1930, 'F', 363), +(37225, 'Eleanore', 1930, 'F', 362), +(37226, 'Jerry', 1930, 'F', 362), +(37227, 'Renee', 1930, 'F', 362), +(37228, 'Elma', 1930, 'F', 361), +(37229, 'Betsy', 1930, 'F', 360), +(37230, 'Beverley', 1930, 'F', 360), +(37231, 'Joanna', 1930, 'F', 359), +(37232, 'Carmella', 1930, 'F', 358), +(37233, 'Nannie', 1930, 'F', 358), +(37234, 'Eddie', 1930, 'F', 356), +(37235, 'Josie', 1930, 'F', 355), +(37236, 'Margery', 1930, 'F', 354), +(37237, 'Mollie', 1930, 'F', 353), +(37238, 'Kay', 1930, 'F', 351), +(37239, 'Yolanda', 1930, 'F', 351), +(37240, 'Greta', 1930, 'F', 345), +(37241, 'Aileen', 1930, 'F', 343), +(37242, 'Molly', 1930, 'F', 342), +(37243, 'Eugenia', 1930, 'F', 341), +(37244, 'Sheila', 1930, 'F', 341), +(37245, 'Wilda', 1930, 'F', 340), +(37246, 'Claudia', 1930, 'F', 337), +(37247, 'Earnestine', 1930, 'F', 337), +(37248, 'Tommie', 1930, 'F', 337), +(37249, 'Loraine', 1930, 'F', 335), +(37250, 'Alicia', 1930, 'F', 334), +(37251, 'Cornelia', 1930, 'F', 330), +(37252, 'Harriett', 1930, 'F', 330), +(37253, 'Pearlie', 1930, 'F', 330), +(37254, 'Lorna', 1930, 'F', 329), +(37255, 'Concetta', 1930, 'F', 327), +(37256, 'Leah', 1930, 'F', 326), +(37257, 'Aurora', 1930, 'F', 325), +(37258, 'Robbie', 1930, 'F', 325), +(37259, 'Corrine', 1930, 'F', 324), +(37260, 'Bernadette', 1930, 'F', 323), +(37261, 'Lora', 1930, 'F', 322), +(37262, 'Nola', 1930, 'F', 322), +(37263, 'Sybil', 1930, 'F', 319), +(37264, 'Frieda', 1930, 'F', 318), +(37265, 'Christina', 1930, 'F', 317), +(37266, 'Leila', 1930, 'F', 317), +(37267, 'Margarita', 1930, 'F', 317), +(37268, 'Marlene', 1930, 'F', 306), +(37269, 'Lily', 1930, 'F', 304), +(37270, 'Matilda', 1930, 'F', 304), +(37271, 'Nona', 1930, 'F', 301), +(37272, 'Sandra', 1930, 'F', 298), +(37273, 'Winnie', 1930, 'F', 297), +(37274, 'Letha', 1930, 'F', 296), +(37275, 'Cecile', 1930, 'F', 295), +(37276, 'Avis', 1930, 'F', 294), +(37277, 'Delia', 1930, 'F', 294), +(37278, 'Odessa', 1930, 'F', 289), +(37279, 'William', 1930, 'F', 289), +(37280, 'Aline', 1930, 'F', 282), +(37281, 'Earlene', 1930, 'F', 282), +(37282, 'Evangeline', 1930, 'F', 279), +(37283, 'Janis', 1930, 'F', 270), +(37284, 'Allie', 1930, 'F', 268), +(37285, 'Bobby', 1930, 'F', 262), +(37286, 'Louella', 1930, 'F', 259), +(37287, 'Maude', 1930, 'F', 258), +(37288, 'Melva', 1930, 'F', 258), +(37289, 'Roslyn', 1930, 'F', 258), +(37290, 'Antonia', 1930, 'F', 257), +(37291, 'Ilene', 1930, 'F', 256), +(37292, 'Millie', 1930, 'F', 256), +(37293, 'Doreen', 1930, 'F', 255), +(37294, 'Beth', 1930, 'F', 251), +(37295, 'Joe', 1930, 'F', 250), +(37296, 'Ophelia', 1930, 'F', 250), +(37297, 'Hannah', 1930, 'F', 249), +(37298, 'Reva', 1930, 'F', 249), +(37299, 'Florine', 1930, 'F', 248), +(37300, 'Georgie', 1930, 'F', 248), +(37301, 'Julie', 1930, 'F', 248), +(37302, 'Gwen', 1930, 'F', 247), +(37303, 'Eliza', 1930, 'F', 246), +(37304, 'Lessie', 1930, 'F', 245), +(37305, 'Johanna', 1930, 'F', 243), +(37306, 'Lilly', 1930, 'F', 243), +(37307, 'Delphine', 1930, 'F', 242), +(37308, 'Elouise', 1930, 'F', 242), +(37309, 'George', 1930, 'F', 242), +(37310, 'Helena', 1930, 'F', 242), +(37311, 'Pansy', 1930, 'F', 242), +(37312, 'Lorine', 1930, 'F', 241), +(37313, 'Hope', 1930, 'F', 240), +(37314, 'Corine', 1930, 'F', 239), +(37315, 'Dorris', 1930, 'F', 237), +(37316, 'Merle', 1930, 'F', 237), +(37317, 'Charles', 1930, 'F', 236), +(37318, 'Jenny', 1930, 'F', 236), +(37319, 'Bertie', 1930, 'F', 234), +(37320, 'Mercedes', 1930, 'F', 234), +(37321, 'Emogene', 1930, 'F', 233), +(37322, 'Berniece', 1930, 'F', 232), +(37323, 'Callie', 1930, 'F', 232), +(37324, 'Iona', 1930, 'F', 232), +(37325, 'Clare', 1930, 'F', 231), +(37326, 'Faith', 1930, 'F', 231), +(37327, 'Marietta', 1930, 'F', 231), +(37328, 'Ima', 1930, 'F', 228), +(37329, 'Alyce', 1930, 'F', 227), +(37330, 'Zelda', 1930, 'F', 225), +(37331, 'Angie', 1930, 'F', 223), +(37332, 'Valerie', 1930, 'F', 223), +(37333, 'Dawn', 1930, 'F', 221), +(37334, 'Winona', 1930, 'F', 221), +(37335, 'Jannie', 1930, 'F', 220), +(37336, 'Bonita', 1930, 'F', 219), +(37337, 'Elena', 1930, 'F', 218), +(37338, 'Leatrice', 1930, 'F', 215), +(37339, 'Hester', 1930, 'F', 214), +(37340, 'Lorena', 1930, 'F', 213), +(37341, 'Leta', 1930, 'F', 212), +(37342, 'Marlys', 1930, 'F', 211), +(37343, 'Alene', 1930, 'F', 210), +(37344, 'Gilda', 1930, 'F', 210), +(37345, 'Adelaide', 1930, 'F', 209), +(37346, 'Madge', 1930, 'F', 209), +(37347, 'Claudine', 1930, 'F', 208), +(37348, 'Josefina', 1930, 'F', 205), +(37349, 'Katharine', 1930, 'F', 205), +(37350, 'Bennie', 1930, 'F', 204), +(37351, 'Maurine', 1930, 'F', 204), +(37352, 'Dortha', 1930, 'F', 203), +(37353, 'Leota', 1930, 'F', 201), +(37354, 'Lelia', 1930, 'F', 199), +(37355, 'Queen', 1930, 'F', 199), +(37356, 'Beryl', 1930, 'F', 197), +(37357, 'Gail', 1930, 'F', 197), +(37358, 'Amanda', 1930, 'F', 196), +(37359, 'Rosalyn', 1930, 'F', 196), +(37360, 'Janette', 1930, 'F', 195), +(37361, 'Ardis', 1930, 'F', 193), +(37362, 'Ester', 1930, 'F', 193), +(37363, 'Freddie', 1930, 'F', 193), +(37364, 'Maudie', 1930, 'F', 190), +(37365, 'Edwina', 1930, 'F', 188), +(37366, 'Vada', 1930, 'F', 188), +(37367, 'Madelyn', 1930, 'F', 187), +(37368, 'Marjory', 1930, 'F', 187), +(37369, 'Dessie', 1930, 'F', 185), +(37370, 'Juana', 1930, 'F', 185), +(37371, 'Iola', 1930, 'F', 184), +(37372, 'Zella', 1930, 'F', 184), +(37373, 'Allene', 1930, 'F', 183), +(37374, 'Roxie', 1930, 'F', 183), +(37375, 'Glenda', 1930, 'F', 181), +(37376, 'Lucia', 1930, 'F', 181), +(37377, 'Margret', 1930, 'F', 181), +(37378, 'Jaunita', 1930, 'F', 180), +(37379, 'Charlie', 1930, 'F', 178), +(37380, 'Gretchen', 1930, 'F', 178), +(37381, 'Ione', 1930, 'F', 178), +(37382, 'Philomena', 1930, 'F', 178), +(37383, 'Rosalee', 1930, 'F', 177), +(37384, 'Ardith', 1930, 'F', 176), +(37385, 'Petra', 1930, 'F', 176), +(37386, 'Althea', 1930, 'F', 175), +(37387, 'Donald', 1930, 'F', 174), +(37388, 'Nita', 1930, 'F', 174), +(37389, 'Roma', 1930, 'F', 174), +(37390, 'Birdie', 1930, 'F', 173), +(37391, 'Retha', 1930, 'F', 173), +(37392, 'Marylou', 1930, 'F', 172), +(37393, 'Dorla', 1930, 'F', 171), +(37394, 'Isabell', 1930, 'F', 171), +(37395, 'Belva', 1930, 'F', 170), +(37396, 'Millicent', 1930, 'F', 170), +(37397, 'Reta', 1930, 'F', 170), +(37398, 'Esperanza', 1930, 'F', 169), +(37399, 'Francisca', 1930, 'F', 169), +(37400, 'Wilhelmina', 1930, 'F', 169), +(37401, 'Gene', 1930, 'F', 168), +(37402, 'Monica', 1930, 'F', 168), +(37403, 'Oma', 1930, 'F', 168), +(37404, 'Gussie', 1930, 'F', 167), +(37405, 'Rae', 1930, 'F', 167), +(37406, 'Sonia', 1930, 'F', 167), +(37407, 'Billy', 1930, 'F', 166), +(37408, 'Twila', 1930, 'F', 166), +(37409, 'Deborah', 1930, 'F', 165), +(37410, 'Freida', 1930, 'F', 164), +(37411, 'Hallie', 1930, 'F', 164), +(37412, 'Louisa', 1930, 'F', 164), +(37413, 'Phoebe', 1930, 'F', 163), +(37414, 'Richard', 1930, 'F', 163), +(37415, 'Verda', 1930, 'F', 162), +(37416, 'Velda', 1930, 'F', 160), +(37417, 'Verla', 1930, 'F', 160), +(37418, 'Edythe', 1930, 'F', 159), +(37419, 'Jeanine', 1930, 'F', 159), +(37420, 'Vernell', 1930, 'F', 159), +(37421, 'Lynn', 1930, 'F', 158), +(37422, 'Rowena', 1930, 'F', 158), +(37423, 'Minerva', 1930, 'F', 157), +(37424, 'Manuela', 1930, 'F', 156), +(37425, 'Camille', 1930, 'F', 155), +(37426, 'Elda', 1930, 'F', 155), +(37427, 'Enid', 1930, 'F', 155), +(37428, 'Gay', 1930, 'F', 155), +(37429, 'Syble', 1930, 'F', 155), +(37430, 'Leora', 1930, 'F', 154), +(37431, 'Noreen', 1930, 'F', 153), +(37432, 'Carla', 1930, 'F', 152), +(37433, 'Sophia', 1930, 'F', 152), +(37434, 'Terry', 1930, 'F', 152), +(37435, 'Billye', 1930, 'F', 151), +(37436, 'Doretha', 1930, 'F', 151), +(37437, 'Augusta', 1930, 'F', 148), +(37438, 'Aurelia', 1930, 'F', 148), +(37439, 'Tillie', 1930, 'F', 148), +(37440, 'Germaine', 1930, 'F', 147), +(37441, 'Gertie', 1930, 'F', 147), +(37442, 'Shirlee', 1930, 'F', 147), +(37443, 'Vilma', 1930, 'F', 147), +(37444, 'Elisabeth', 1930, 'F', 146), +(37445, 'Magdalene', 1930, 'F', 146), +(37446, 'Andrea', 1930, 'F', 144), +(37447, 'Arleen', 1930, 'F', 144), +(37448, 'Hellen', 1930, 'F', 144), +(37449, 'Joseph', 1930, 'F', 143), +(37450, 'Ofelia', 1930, 'F', 143), +(37451, 'Tina', 1930, 'F', 143), +(37452, 'Ava', 1930, 'F', 142), +(37453, 'Isabella', 1930, 'F', 142), +(37454, 'Vernice', 1930, 'F', 142), +(37455, 'Delma', 1930, 'F', 141), +(37456, 'Francine', 1930, 'F', 141), +(37457, 'Lucinda', 1930, 'F', 141), +(37458, 'Ursula', 1930, 'F', 141), +(37459, 'Alvina', 1930, 'F', 140), +(37460, 'Gayle', 1930, 'F', 139), +(37461, 'Laurel', 1930, 'F', 139), +(37462, 'Pearline', 1930, 'F', 139), +(37463, 'Charline', 1930, 'F', 137), +(37464, 'Dovie', 1930, 'F', 137), +(37465, 'Elise', 1930, 'F', 137), +(37466, 'Elsa', 1930, 'F', 137), +(37467, 'Madonna', 1930, 'F', 137), +(37468, 'Marvel', 1930, 'F', 137), +(37469, 'Socorro', 1930, 'F', 137), +(37470, 'Valeria', 1930, 'F', 137), +(37471, 'Lauretta', 1930, 'F', 136), +(37472, 'Alfreda', 1930, 'F', 134), +(37473, 'Carlene', 1930, 'F', 134), +(37474, 'Madeleine', 1930, 'F', 134), +(37475, 'Roselyn', 1930, 'F', 134), +(37476, 'Erna', 1930, 'F', 133), +(37477, 'Justine', 1930, 'F', 133), +(37478, 'Vida', 1930, 'F', 133), +(37479, 'Carolina', 1930, 'F', 132), +(37480, 'Georgette', 1930, 'F', 132), +(37481, 'Ladonna', 1930, 'F', 132), +(37482, 'Lavon', 1930, 'F', 132), +(37483, 'Leslie', 1930, 'F', 132), +(37484, 'Lue', 1930, 'F', 132), +(37485, 'Sammie', 1930, 'F', 132), +(37486, 'Caryl', 1930, 'F', 130), +(37487, 'Gerry', 1930, 'F', 130), +(37488, 'Nan', 1930, 'F', 130), +(37489, 'Rosalind', 1930, 'F', 130), +(37490, 'Marilynn', 1930, 'F', 129), +(37491, 'Dorotha', 1930, 'F', 128), +(37492, 'Elisa', 1930, 'F', 128), +(37493, 'Lavern', 1930, 'F', 128), +(37494, 'Thomas', 1930, 'F', 128), +(37495, 'Marceline', 1930, 'F', 126), +(37496, 'Una', 1930, 'F', 126), +(37497, 'Veda', 1930, 'F', 126), +(37498, 'Yvette', 1930, 'F', 126), +(37499, 'Lura', 1930, 'F', 125), +(37500, 'Rhea', 1930, 'F', 125), +(37501, 'Rubye', 1930, 'F', 125), +(37502, 'Charmaine', 1930, 'F', 124), +(37503, 'Darleen', 1930, 'F', 124), +(37504, 'Fanny', 1930, 'F', 124), +(37505, 'Peggie', 1930, 'F', 124), +(37506, 'Angelita', 1930, 'F', 123), +(37507, 'Lettie', 1930, 'F', 123), +(37508, 'Gearldine', 1930, 'F', 122), +(37509, 'Ardeth', 1930, 'F', 121), +(37510, 'Harriette', 1930, 'F', 121), +(37511, 'Alva', 1930, 'F', 120), +(37512, 'Floy', 1930, 'F', 120), +(37513, 'Idella', 1930, 'F', 120), +(37514, 'Raquel', 1930, 'F', 120), +(37515, 'Bobbye', 1930, 'F', 119), +(37516, 'Emilia', 1930, 'F', 119), +(37517, 'Myrtis', 1930, 'F', 119), +(37518, 'Treva', 1930, 'F', 119), +(37519, 'Berta', 1930, 'F', 118), +(37520, 'Pattie', 1930, 'F', 118), +(37521, 'Delois', 1930, 'F', 117), +(37522, 'Vesta', 1930, 'F', 117), +(37523, 'Adrienne', 1930, 'F', 116), +(37524, 'Catalina', 1930, 'F', 115), +(37525, 'Mozelle', 1930, 'F', 115), +(37526, 'Camilla', 1930, 'F', 114), +(37527, 'Kitty', 1930, 'F', 114), +(37528, 'Paul', 1930, 'F', 114), +(37529, 'Theodora', 1930, 'F', 114), +(37530, 'Albertha', 1930, 'F', 113), +(37531, 'Marianna', 1930, 'F', 112), +(37532, 'Mina', 1930, 'F', 111), +(37533, 'Oleta', 1930, 'F', 111), +(37534, 'Zola', 1930, 'F', 111), +(37535, 'Adela', 1930, 'F', 110), +(37536, 'Kate', 1930, 'F', 110), +(37537, 'Cassie', 1930, 'F', 109), +(37538, 'Elvera', 1930, 'F', 109), +(37539, 'Jeane', 1930, 'F', 109), +(37540, 'Linnie', 1930, 'F', 109), +(37541, 'Catharine', 1930, 'F', 108), +(37542, 'Celestine', 1930, 'F', 108), +(37543, 'Florene', 1930, 'F', 108), +(37544, 'Carmelita', 1930, 'F', 107), +(37545, 'Georgianna', 1930, 'F', 107), +(37546, 'Ona', 1930, 'F', 107), +(37547, 'Donnie', 1930, 'F', 106), +(37548, 'Garnet', 1930, 'F', 106), +(37549, 'Cherie', 1930, 'F', 105), +(37550, 'Eleanora', 1930, 'F', 105), +(37551, 'Jayne', 1930, 'F', 105), +(37552, 'Johnie', 1930, 'F', 105), +(37553, 'Margarette', 1930, 'F', 105), +(37554, 'Nedra', 1930, 'F', 104), +(37555, 'Agatha', 1930, 'F', 103), +(37556, 'Larue', 1930, 'F', 103), +(37557, 'Mayme', 1930, 'F', 103), +(37558, 'Theda', 1930, 'F', 103), +(37559, 'Adell', 1930, 'F', 102), +(37560, 'Edward', 1930, 'F', 102), +(37561, 'Lona', 1930, 'F', 102), +(37562, 'Ray', 1930, 'F', 102), +(37563, 'Stephanie', 1930, 'F', 102), +(37564, 'Tessie', 1930, 'F', 102), +(37565, 'Easter', 1930, 'F', 101), +(37566, 'Georgiana', 1930, 'F', 101), +(37567, 'Norine', 1930, 'F', 101), +(37568, 'Novella', 1930, 'F', 101), +(37569, 'Karen', 1930, 'F', 100), +(37570, 'Robert', 1930, 'M', 62143), +(37571, 'James', 1930, 'M', 53933), +(37572, 'John', 1930, 'M', 52431), +(37573, 'William', 1930, 'M', 47257), +(37574, 'Richard', 1930, 'M', 32173), +(37575, 'Charles', 1930, 'M', 31854), +(37576, 'Donald', 1930, 'M', 29046), +(37577, 'George', 1930, 'M', 22770), +(37578, 'Joseph', 1930, 'M', 20977), +(37579, 'Edward', 1930, 'M', 17344), +(37580, 'Thomas', 1930, 'M', 17016), +(37581, 'Paul', 1930, 'M', 12954), +(37582, 'Frank', 1930, 'M', 12536), +(37583, 'Jack', 1930, 'M', 12434), +(37584, 'David', 1930, 'M', 12277), +(37585, 'Raymond', 1930, 'M', 11709), +(37586, 'Kenneth', 1930, 'M', 11700), +(37587, 'Harold', 1930, 'M', 11652), +(37588, 'Walter', 1930, 'M', 9722), +(37589, 'Billy', 1930, 'M', 9287), +(37590, 'Eugene', 1930, 'M', 9026), +(37591, 'Henry', 1930, 'M', 8591), +(37592, 'Arthur', 1930, 'M', 8277), +(37593, 'Albert', 1930, 'M', 7942), +(37594, 'Ralph', 1930, 'M', 7636), +(37595, 'Carl', 1930, 'M', 6954), +(37596, 'Joe', 1930, 'M', 6874), +(37597, 'Harry', 1930, 'M', 6845), +(37598, 'Willie', 1930, 'M', 6669), +(37599, 'Gerald', 1930, 'M', 6480), +(37600, 'Howard', 1930, 'M', 6339), +(37601, 'Fred', 1930, 'M', 6046), +(37602, 'Roy', 1930, 'M', 5913), +(37603, 'Louis', 1930, 'M', 5811), +(37604, 'Herbert', 1930, 'M', 5672), +(37605, 'Ronald', 1930, 'M', 5637), +(37606, 'Lawrence', 1930, 'M', 5636), +(37607, 'Earl', 1930, 'M', 5561), +(37608, 'Clarence', 1930, 'M', 5493), +(37609, 'Norman', 1930, 'M', 5296), +(37610, 'Bobby', 1930, 'M', 5182), +(37611, 'Francis', 1930, 'M', 4992), +(37612, 'Ernest', 1930, 'M', 4783), +(37613, 'Anthony', 1930, 'M', 4678), +(37614, 'Leonard', 1930, 'M', 4660), +(37615, 'Alfred', 1930, 'M', 4554), +(37616, 'Daniel', 1930, 'M', 4465), +(37617, 'Marvin', 1930, 'M', 4404), +(37618, 'Stanley', 1930, 'M', 4385), +(37619, 'Melvin', 1930, 'M', 4050), +(37620, 'Jerry', 1930, 'M', 3891), +(37621, 'Bernard', 1930, 'M', 3832), +(37622, 'Leroy', 1930, 'M', 3804), +(37623, 'Michael', 1930, 'M', 3541), +(37624, 'Samuel', 1930, 'M', 3528), +(37625, 'Peter', 1930, 'M', 3267), +(37626, 'Ray', 1930, 'M', 3249), +(37627, 'Roger', 1930, 'M', 3247), +(37628, 'Bill', 1930, 'M', 3157), +(37629, 'Russell', 1930, 'M', 3101), +(37630, 'Floyd', 1930, 'M', 3078), +(37631, 'Andrew', 1930, 'M', 3059), +(37632, 'Leo', 1930, 'M', 3031), +(37633, 'Dale', 1930, 'M', 2991), +(37634, 'Wayne', 1930, 'M', 2984), +(37635, 'Edwin', 1930, 'M', 2975), +(37636, 'Theodore', 1930, 'M', 2959), +(37637, 'Don', 1930, 'M', 2923), +(37638, 'Lloyd', 1930, 'M', 2839), +(37639, 'Gene', 1930, 'M', 2785), +(37640, 'Glenn', 1930, 'M', 2760), +(37641, 'Vernon', 1930, 'M', 2701), +(37642, 'Clifford', 1930, 'M', 2696), +(37643, 'Frederick', 1930, 'M', 2696), +(37644, 'Philip', 1930, 'M', 2653), +(37645, 'Clyde', 1930, 'M', 2633), +(37646, 'Gordon', 1930, 'M', 2611), +(37647, 'Herman', 1930, 'M', 2595), +(37648, 'Alvin', 1930, 'M', 2512), +(37649, 'Elmer', 1930, 'M', 2478), +(37650, 'Leon', 1930, 'M', 2399), +(37651, 'Lee', 1930, 'M', 2362), +(37652, 'Martin', 1930, 'M', 2326), +(37653, 'Vincent', 1930, 'M', 2317), +(37654, 'Allen', 1930, 'M', 2278), +(37655, 'Jimmie', 1930, 'M', 2257), +(37656, 'Lewis', 1930, 'M', 2244), +(37657, 'Bob', 1930, 'M', 2240), +(37658, 'Douglas', 1930, 'M', 2165), +(37659, 'Gilbert', 1930, 'M', 2119), +(37660, 'Charlie', 1930, 'M', 2115), +(37661, 'Harvey', 1930, 'M', 2062), +(37662, 'Milton', 1930, 'M', 2050), +(37663, 'Jesse', 1930, 'M', 2036), +(37664, 'Lester', 1930, 'M', 2022), +(37665, 'Warren', 1930, 'M', 2010), +(37666, 'Eddie', 1930, 'M', 1971), +(37667, 'Arnold', 1930, 'M', 1946), +(37668, 'Cecil', 1930, 'M', 1880), +(37669, 'Victor', 1930, 'M', 1839), +(37670, 'Johnny', 1930, 'M', 1819), +(37671, 'Jimmy', 1930, 'M', 1800), +(37672, 'Chester', 1930, 'M', 1789), +(37673, 'Johnnie', 1930, 'M', 1786), +(37674, 'Jerome', 1930, 'M', 1770), +(37675, 'Curtis', 1930, 'M', 1723), +(37676, 'Larry', 1930, 'M', 1721), +(37677, 'Roland', 1930, 'M', 1719), +(37678, 'Bruce', 1930, 'M', 1713), +(37679, 'Sam', 1930, 'M', 1670), +(37680, 'Calvin', 1930, 'M', 1620), +(37681, 'Wallace', 1930, 'M', 1618), +(37682, 'Jose', 1930, 'M', 1599), +(37683, 'Glen', 1930, 'M', 1597), +(37684, 'Benjamin', 1930, 'M', 1596), +(37685, 'Maurice', 1930, 'M', 1551), +(37686, 'Willard', 1930, 'M', 1534), +(37687, 'Patrick', 1930, 'M', 1532), +(37688, 'Edgar', 1930, 'M', 1525), +(37689, 'Manuel', 1930, 'M', 1520), +(37690, 'Duane', 1930, 'M', 1519), +(37691, 'Claude', 1930, 'M', 1482), +(37692, 'Billie', 1930, 'M', 1473), +(37693, 'Oscar', 1930, 'M', 1466), +(37694, 'Jim', 1930, 'M', 1463), +(37695, 'Marion', 1930, 'M', 1390), +(37696, 'Tommy', 1930, 'M', 1388), +(37697, 'Virgil', 1930, 'M', 1369), +(37698, 'Dean', 1930, 'M', 1363), +(37699, 'Keith', 1930, 'M', 1355), +(37700, 'Hugh', 1930, 'M', 1341), +(37701, 'Tom', 1930, 'M', 1335), +(37702, 'Jessie', 1930, 'M', 1328), +(37703, 'Everett', 1930, 'M', 1325), +(37704, 'Junior', 1930, 'M', 1322), +(37705, 'Alan', 1930, 'M', 1303), +(37706, 'Hubert', 1930, 'M', 1272), +(37707, 'Stephen', 1930, 'M', 1261), +(37708, 'Leslie', 1930, 'M', 1239), +(37709, 'Rudolph', 1930, 'M', 1219), +(37710, 'Wilbur', 1930, 'M', 1213), +(37711, 'Wesley', 1930, 'M', 1186), +(37712, 'Max', 1930, 'M', 1181), +(37713, 'Phillip', 1930, 'M', 1174), +(37714, 'Dennis', 1930, 'M', 1173), +(37715, 'Homer', 1930, 'M', 1170), +(37716, 'Nicholas', 1930, 'M', 1132), +(37717, 'Luther', 1930, 'M', 1107), +(37718, 'Franklin', 1930, 'M', 1079), +(37719, 'Sidney', 1930, 'M', 1073), +(37720, 'Delbert', 1930, 'M', 1015), +(37721, 'Morris', 1930, 'M', 1006), +(37722, 'Earnest', 1930, 'M', 991), +(37723, 'Allan', 1930, 'M', 987), +(37724, 'Ben', 1930, 'M', 987), +(37725, 'Ted', 1930, 'M', 982), +(37726, 'Jackie', 1930, 'M', 973), +(37727, 'Horace', 1930, 'M', 971), +(37728, 'Willis', 1930, 'M', 968), +(37729, 'Lyle', 1930, 'M', 947), +(37730, 'Dick', 1930, 'M', 939), +(37731, 'Bennie', 1930, 'M', 915), +(37732, 'Tony', 1930, 'M', 912), +(37733, 'Juan', 1930, 'M', 906), +(37734, 'Dan', 1930, 'M', 898), +(37735, 'Jay', 1930, 'M', 893), +(37736, 'Salvatore', 1930, 'M', 880), +(37737, 'Alexander', 1930, 'M', 872), +(37738, 'Steve', 1930, 'M', 863), +(37739, 'Oliver', 1930, 'M', 851), +(37740, 'Freddie', 1930, 'M', 839), +(37741, 'Otis', 1930, 'M', 829), +(37742, 'Darrell', 1930, 'M', 828), +(37743, 'Guy', 1930, 'M', 828), +(37744, 'Neil', 1930, 'M', 826), +(37745, 'Julius', 1930, 'M', 813), +(37746, 'Edmund', 1930, 'M', 806), +(37747, 'Clayton', 1930, 'M', 800), +(37748, 'Archie', 1930, 'M', 769), +(37749, 'Alex', 1930, 'M', 759), +(37750, 'Carroll', 1930, 'M', 757), +(37751, 'Alton', 1930, 'M', 756), +(37752, 'Ramon', 1930, 'M', 756), +(37753, 'Clifton', 1930, 'M', 754), +(37754, 'Nathaniel', 1930, 'M', 753), +(37755, 'Jesus', 1930, 'M', 752), +(37756, 'Orville', 1930, 'M', 746), +(37757, 'Marshall', 1930, 'M', 741), +(37758, 'Antonio', 1930, 'M', 736), +(37759, 'Angelo', 1930, 'M', 728), +(37760, 'Lowell', 1930, 'M', 722), +(37761, 'Wilbert', 1930, 'M', 718), +(37762, 'Lonnie', 1930, 'M', 717), +(37763, 'Gary', 1930, 'M', 716), +(37764, 'Myron', 1930, 'M', 712), +(37765, 'Merle', 1930, 'M', 711), +(37766, 'Mike', 1930, 'M', 711), +(37767, 'Leland', 1930, 'M', 706), +(37768, 'Ira', 1930, 'M', 703), +(37769, 'Bobbie', 1930, 'M', 697), +(37770, 'Clinton', 1930, 'M', 693), +(37771, 'Wendell', 1930, 'M', 672), +(37772, 'Ivan', 1930, 'M', 668), +(37773, 'Matthew', 1930, 'M', 657), +(37774, 'Dewey', 1930, 'M', 653), +(37775, 'Karl', 1930, 'M', 648), +(37776, 'Irving', 1930, 'M', 643), +(37777, 'Rodney', 1930, 'M', 639), +(37778, 'Nelson', 1930, 'M', 630), +(37779, 'Nick', 1930, 'M', 629), +(37780, 'Ervin', 1930, 'M', 624), +(37781, 'Jacob', 1930, 'M', 622), +(37782, 'Elbert', 1930, 'M', 609), +(37783, 'Doyle', 1930, 'M', 601), +(37784, 'Gerard', 1930, 'M', 601), +(37785, 'Wilfred', 1930, 'M', 601), +(37786, 'Irvin', 1930, 'M', 598), +(37787, 'Sylvester', 1930, 'M', 598), +(37788, 'Mark', 1930, 'M', 591), +(37789, 'Julian', 1930, 'M', 588), +(37790, 'Perry', 1930, 'M', 581), +(37791, 'Pete', 1930, 'M', 578), +(37792, 'Carlos', 1930, 'M', 576), +(37793, 'Eldon', 1930, 'M', 575), +(37794, 'Laurence', 1930, 'M', 564), +(37795, 'Rufus', 1930, 'M', 564), +(37796, 'Burton', 1930, 'M', 560), +(37797, 'Norbert', 1930, 'M', 560), +(37798, 'Malcolm', 1930, 'M', 557), +(37799, 'Isaac', 1930, 'M', 550), +(37800, 'Fredrick', 1930, 'M', 548), +(37801, 'Bert', 1930, 'M', 542), +(37802, 'Dwight', 1930, 'M', 542), +(37803, 'Rex', 1930, 'M', 541), +(37804, 'Nathan', 1930, 'M', 540), +(37805, 'Loren', 1930, 'M', 538), +(37806, 'Roosevelt', 1930, 'M', 534), +(37807, 'Benny', 1930, 'M', 533), +(37808, 'Tommie', 1930, 'M', 533), +(37809, 'Troy', 1930, 'M', 533), +(37810, 'Forrest', 1930, 'M', 532), +(37811, 'Ellis', 1930, 'M', 520), +(37812, 'Ruben', 1930, 'M', 517), +(37813, 'Felix', 1930, 'M', 515), +(37814, 'Owen', 1930, 'M', 511), +(37815, 'Emil', 1930, 'M', 509), +(37816, 'Grady', 1930, 'M', 509), +(37817, 'Conrad', 1930, 'M', 506), +(37818, 'Mack', 1930, 'M', 504), +(37819, 'Aaron', 1930, 'M', 500), +(37820, 'Loyd', 1930, 'M', 500), +(37821, 'Pedro', 1930, 'M', 500), +(37822, 'Ross', 1930, 'M', 500), +(37823, 'Irwin', 1930, 'M', 486), +(37824, 'Francisco', 1930, 'M', 476), +(37825, 'Byron', 1930, 'M', 473), +(37826, 'Sherman', 1930, 'M', 473), +(37827, 'Carlton', 1930, 'M', 470), +(37828, 'Johnie', 1930, 'M', 466), +(37829, 'Elwood', 1930, 'M', 463), +(37830, 'Amos', 1930, 'M', 462), +(37831, 'Lynn', 1930, 'M', 457), +(37832, 'Joel', 1930, 'M', 455), +(37833, 'Harley', 1930, 'M', 454), +(37834, 'Mario', 1930, 'M', 449), +(37835, 'Seymour', 1930, 'M', 446), +(37836, 'Emmett', 1930, 'M', 439), +(37837, 'Buddy', 1930, 'M', 438), +(37838, 'Otto', 1930, 'M', 438), +(37839, 'Rudy', 1930, 'M', 437), +(37840, 'August', 1930, 'M', 432), +(37841, 'Percy', 1930, 'M', 430), +(37842, 'Boyd', 1930, 'M', 429), +(37843, 'Wilson', 1930, 'M', 429), +(37844, 'Harlan', 1930, 'M', 425), +(37845, 'Reginald', 1930, 'M', 423), +(37846, 'Dominick', 1930, 'M', 422), +(37847, 'Teddy', 1930, 'M', 418), +(37848, 'Murray', 1930, 'M', 412), +(37849, 'Stuart', 1930, 'M', 411), +(37850, 'Raul', 1930, 'M', 408), +(37851, 'Sheldon', 1930, 'M', 407), +(37852, 'Laverne', 1930, 'M', 401), +(37853, 'Grover', 1930, 'M', 400), +(37854, 'Roberto', 1930, 'M', 397), +(37855, 'Aubrey', 1930, 'M', 392), +(37856, 'Garland', 1930, 'M', 392), +(37857, 'Louie', 1930, 'M', 392), +(37858, 'Danny', 1930, 'M', 390), +(37859, 'Austin', 1930, 'M', 385), +(37860, 'Dallas', 1930, 'M', 382), +(37861, 'Neal', 1930, 'M', 381), +(37862, 'Preston', 1930, 'M', 379), +(37863, 'Dominic', 1930, 'M', 378), +(37864, 'Alfonso', 1930, 'M', 375), +(37865, 'Luis', 1930, 'M', 372), +(37866, 'Pat', 1930, 'M', 371), +(37867, 'Erwin', 1930, 'M', 370), +(37868, 'Cornelius', 1930, 'M', 369), +(37869, 'Morton', 1930, 'M', 367), +(37870, 'Edmond', 1930, 'M', 360), +(37871, 'Maynard', 1930, 'M', 356), +(37872, 'Roscoe', 1930, 'M', 354), +(37873, 'Sammie', 1930, 'M', 349), +(37874, 'Sammy', 1930, 'M', 346), +(37875, 'Abraham', 1930, 'M', 345), +(37876, 'Elvin', 1930, 'M', 340), +(37877, 'Mary', 1930, 'M', 340), +(37878, 'Dave', 1930, 'M', 339), +(37879, 'Millard', 1930, 'M', 338), +(37880, 'Merlin', 1930, 'M', 334), +(37881, 'Delmar', 1930, 'M', 333), +(37882, 'Clair', 1930, 'M', 314), +(37883, 'Marlin', 1930, 'M', 313), +(37884, 'Steven', 1930, 'M', 312), +(37885, 'Timothy', 1930, 'M', 307), +(37886, 'Grant', 1930, 'M', 305), +(37887, 'Elton', 1930, 'M', 303), +(37888, 'Wade', 1930, 'M', 299), +(37889, 'Adolph', 1930, 'M', 297), +(37890, 'Terry', 1930, 'M', 297), +(37891, 'Salvador', 1930, 'M', 296), +(37892, 'Charley', 1930, 'M', 290), +(37893, 'Moses', 1930, 'M', 290), +(37894, 'Royce', 1930, 'M', 289), +(37895, 'Jean', 1930, 'M', 288), +(37896, 'Cleveland', 1930, 'M', 287), +(37897, 'Jasper', 1930, 'M', 286), +(37898, 'Reuben', 1930, 'M', 284), +(37899, 'Simon', 1930, 'M', 282), +(37900, 'Darwin', 1930, 'M', 281), +(37901, 'Lionel', 1930, 'M', 281), +(37902, 'Kermit', 1930, 'M', 279), +(37903, 'Marcus', 1930, 'M', 277), +(37904, 'Carmen', 1930, 'M', 275), +(37905, 'Sanford', 1930, 'M', 275), +(37906, 'Adam', 1930, 'M', 274), +(37907, 'Shirley', 1930, 'M', 273), +(37908, 'Randolph', 1930, 'M', 270), +(37909, 'Alonzo', 1930, 'M', 268), +(37910, 'Hollis', 1930, 'M', 268), +(37911, 'Alfredo', 1930, 'M', 267), +(37912, 'Armando', 1930, 'M', 267), +(37913, 'Christopher', 1930, 'M', 267), +(37914, 'Odell', 1930, 'M', 266), +(37915, 'Wilmer', 1930, 'M', 266), +(37916, 'Darrel', 1930, 'M', 265), +(37917, 'Gus', 1930, 'M', 263), +(37918, 'Lavern', 1930, 'M', 262), +(37919, 'Monroe', 1930, 'M', 261), +(37920, 'Thurman', 1930, 'M', 261), +(37921, 'Ollie', 1930, 'M', 260), +(37922, 'Merrill', 1930, 'M', 259), +(37923, 'Ned', 1930, 'M', 259), +(37924, 'Stewart', 1930, 'M', 259), +(37925, 'Will', 1930, 'M', 259), +(37926, 'Andy', 1930, 'M', 258), +(37927, 'Clark', 1930, 'M', 255), +(37928, 'Emanuel', 1930, 'M', 255), +(37929, 'Frankie', 1930, 'M', 255), +(37930, 'Travis', 1930, 'M', 254), +(37931, 'Wilburn', 1930, 'M', 254), +(37932, 'Gregory', 1930, 'M', 248), +(37933, 'Mitchell', 1930, 'M', 248), +(37934, 'Guadalupe', 1930, 'M', 246), +(37935, 'Weldon', 1930, 'M', 245), +(37936, 'Armand', 1930, 'M', 243), +(37937, 'Barry', 1930, 'M', 241), +(37938, 'Randall', 1930, 'M', 241), +(37939, 'Harrison', 1930, 'M', 240), +(37940, 'Buford', 1930, 'M', 239), +(37941, 'Rocco', 1930, 'M', 239), +(37942, 'Ed', 1930, 'M', 232), +(37943, 'Clement', 1930, 'M', 229), +(37944, 'Lamar', 1930, 'M', 229), +(37945, 'Norris', 1930, 'M', 228), +(37946, 'Rolland', 1930, 'M', 228), +(37947, 'Elijah', 1930, 'M', 225), +(37948, 'Russel', 1930, 'M', 225), +(37949, 'Ward', 1930, 'M', 223), +(37950, 'Van', 1930, 'M', 221), +(37951, 'Vern', 1930, 'M', 221), +(37952, 'Carol', 1930, 'M', 220), +(37953, 'Gabriel', 1930, 'M', 220), +(37954, 'Jake', 1930, 'M', 220), +(37955, 'Miguel', 1930, 'M', 220), +(37956, 'Basil', 1930, 'M', 218), +(37957, 'Barney', 1930, 'M', 217), +(37958, 'Patsy', 1930, 'M', 217), +(37959, 'Ricardo', 1930, 'M', 217), +(37960, 'Jackson', 1930, 'M', 216), +(37961, 'Coy', 1930, 'M', 214), +(37962, 'Noel', 1930, 'M', 214), +(37963, 'Rafael', 1930, 'M', 214), +(37964, 'Cyril', 1930, 'M', 212), +(37965, 'Earle', 1930, 'M', 212), +(37966, 'Wiley', 1930, 'M', 212), +(37967, 'Woodrow', 1930, 'M', 212), +(37968, 'Lorenzo', 1930, 'M', 211), +(37969, 'Wilford', 1930, 'M', 211), +(37970, 'Cleo', 1930, 'M', 209), +(37971, 'Alva', 1930, 'M', 208), +(37972, 'Jess', 1930, 'M', 208), +(37973, 'Sterling', 1930, 'M', 208), +(37974, 'Normand', 1930, 'M', 207), +(37975, 'Pablo', 1930, 'M', 207), +(37976, 'Dudley', 1930, 'M', 206), +(37977, 'Eric', 1930, 'M', 206), +(37978, 'Forest', 1930, 'M', 206), +(37979, 'Adrian', 1930, 'M', 204), +(37980, 'Rodolfo', 1930, 'M', 203), +(37981, 'Vito', 1930, 'M', 203), +(37982, 'Emory', 1930, 'M', 202), +(37983, 'Truman', 1930, 'M', 201), +(37984, 'Booker', 1930, 'M', 200), +(37985, 'Hershel', 1930, 'M', 200), +(37986, 'Winston', 1930, 'M', 200), +(37987, 'Gale', 1930, 'M', 199), +(37988, 'Carmine', 1930, 'M', 198), +(37989, 'Hector', 1930, 'M', 197), +(37990, 'Mervin', 1930, 'M', 197), +(37991, 'Levi', 1930, 'M', 196), +(37992, 'Claud', 1930, 'M', 195), +(37993, 'Emery', 1930, 'M', 194), +(37994, 'Solomon', 1930, 'M', 193), +(37995, 'Eli', 1930, 'M', 192), +(37996, 'Carrol', 1930, 'M', 191), +(37997, 'Jerald', 1930, 'M', 191), +(37998, 'Noah', 1930, 'M', 191), +(37999, 'Silas', 1930, 'M', 191), +(38000, 'Phil', 1930, 'M', 185), +(38001, 'Winfred', 1930, 'M', 185), +(38002, 'Elmo', 1930, 'M', 184), +(38003, 'Arturo', 1930, 'M', 182), +(38004, 'Harris', 1930, 'M', 182), +(38005, 'Linwood', 1930, 'M', 181), +(38006, 'Rene', 1930, 'M', 181), +(38007, 'Nolan', 1930, 'M', 180), +(38008, 'Enrique', 1930, 'M', 178), +(38009, 'Jeff', 1930, 'M', 178), +(38010, 'Bud', 1930, 'M', 177), +(38011, 'Cletus', 1930, 'M', 177), +(38012, 'Delmer', 1930, 'M', 177), +(38013, 'Donnie', 1930, 'M', 177), +(38014, 'Elliott', 1930, 'M', 177), +(38015, 'Emilio', 1930, 'M', 175), +(38016, 'Huey', 1930, 'M', 174), +(38017, 'Fernando', 1930, 'M', 173), +(38018, 'Orval', 1930, 'M', 173), +(38019, 'Thaddeus', 1930, 'M', 173), +(38020, 'Chris', 1930, 'M', 172), +(38021, 'Elias', 1930, 'M', 172), +(38022, 'Milford', 1930, 'M', 172), +(38023, 'Al', 1930, 'M', 171), +(38024, 'Emerson', 1930, 'M', 171), +(38025, 'Herschel', 1930, 'M', 171), +(38026, 'Ernesto', 1930, 'M', 168), +(38027, 'Kent', 1930, 'M', 167), +(38028, 'Lenard', 1930, 'M', 167), +(38029, 'Angel', 1930, 'M', 166), +(38030, 'Miles', 1930, 'M', 165), +(38031, 'Roman', 1930, 'M', 165), +(38032, 'Freeman', 1930, 'M', 164), +(38033, 'Pasquale', 1930, 'M', 164), +(38034, 'Frederic', 1930, 'M', 163), +(38035, 'Riley', 1930, 'M', 163), +(38036, 'Hoyt', 1930, 'M', 162), +(38037, 'Bruno', 1930, 'M', 160), +(38038, 'Alphonse', 1930, 'M', 159), +(38039, 'Bertram', 1930, 'M', 158), +(38040, 'Julio', 1930, 'M', 158), +(38041, 'Royal', 1930, 'M', 158), +(38042, 'Alberto', 1930, 'M', 157), +(38043, 'Blaine', 1930, 'M', 157), +(38044, 'Tomas', 1930, 'M', 157), +(38045, 'Vance', 1930, 'M', 157), +(38046, 'Betty', 1930, 'M', 156), +(38047, 'Milo', 1930, 'M', 156), +(38048, 'Olin', 1930, 'M', 155), +(38049, 'Dorothy', 1930, 'M', 153), +(38050, 'Hal', 1930, 'M', 153), +(38051, 'Roderick', 1930, 'M', 153), +(38052, 'Spencer', 1930, 'M', 152), +(38053, 'Gail', 1930, 'M', 151), +(38054, 'Lyman', 1930, 'M', 149), +(38055, 'Saul', 1930, 'M', 149), +(38056, 'Vaughn', 1930, 'M', 149), +(38057, 'Odis', 1930, 'M', 148), +(38058, 'Ulysses', 1930, 'M', 148), +(38059, 'Alden', 1930, 'M', 146), +(38060, 'Anton', 1930, 'M', 146), +(38061, 'Monte', 1930, 'M', 146), +(38062, 'Scott', 1930, 'M', 146), +(38063, 'Wilber', 1930, 'M', 146), +(38064, 'Ferdinand', 1930, 'M', 145), +(38065, 'Hiram', 1930, 'M', 144), +(38066, 'Hugo', 1930, 'M', 144), +(38067, 'Wilton', 1930, 'M', 144), +(38068, 'Buster', 1930, 'M', 143), +(38069, 'Dalton', 1930, 'M', 143), +(38070, 'Ignacio', 1930, 'M', 142), +(38071, 'Major', 1930, 'M', 142), +(38072, 'Luke', 1930, 'M', 141), +(38073, 'Ronnie', 1930, 'M', 141), +(38074, 'Domingo', 1930, 'M', 139), +(38075, 'Felipe', 1930, 'M', 139), +(38076, 'Arlen', 1930, 'M', 138), +(38077, 'Gilberto', 1930, 'M', 138), +(38078, 'Merlyn', 1930, 'M', 137), +(38079, 'Arden', 1930, 'M', 136), +(38080, 'Denver', 1930, 'M', 136), +(38081, 'Dwayne', 1930, 'M', 136), +(38082, 'Elroy', 1930, 'M', 136), +(38083, 'Omer', 1930, 'M', 136), +(38084, 'Burl', 1930, 'M', 134), +(38085, 'Daryl', 1930, 'M', 134), +(38086, 'Everette', 1930, 'M', 134), +(38087, 'Olen', 1930, 'M', 134), +(38088, 'Connie', 1930, 'M', 133), +(38089, 'Gaylord', 1930, 'M', 133), +(38090, 'Arlie', 1930, 'M', 132), +(38091, 'Carlo', 1930, 'M', 132), +(38092, 'Hobert', 1930, 'M', 132), +(38093, 'Clay', 1930, 'M', 130), +(38094, 'Alphonso', 1930, 'M', 129), +(38095, 'Marcel', 1930, 'M', 129), +(38096, 'Rodger', 1930, 'M', 129), +(38097, 'Raymon', 1930, 'M', 128), +(38098, 'Dewitt', 1930, 'M', 127), +(38099, 'Frances', 1930, 'M', 127), +(38100, 'Houston', 1930, 'M', 126), +(38101, 'Jeremiah', 1930, 'M', 126), +(38102, 'Evan', 1930, 'M', 125), +(38103, 'Doris', 1930, 'M', 124), +(38104, 'Ellsworth', 1930, 'M', 124), +(38105, 'Mickey', 1930, 'M', 124), +(38106, 'Abel', 1930, 'M', 123), +(38107, 'Andres', 1930, 'M', 123), +(38108, 'Dana', 1930, 'M', 123), +(38109, 'Harmon', 1930, 'M', 123), +(38110, 'Micheal', 1930, 'M', 123), +(38111, 'Anderson', 1930, 'M', 122), +(38112, 'Augustine', 1930, 'M', 122), +(38113, 'Bradley', 1930, 'M', 122), +(38114, 'Bryan', 1930, 'M', 122), +(38115, 'Augustus', 1930, 'M', 121), +(38116, 'Emile', 1930, 'M', 121), +(38117, 'Fletcher', 1930, 'M', 121), +(38118, 'Foster', 1930, 'M', 121), +(38119, 'Mathew', 1930, 'M', 121), +(38120, 'Freddy', 1930, 'M', 120), +(38121, 'Isaiah', 1930, 'M', 120), +(38122, 'Verne', 1930, 'M', 120), +(38123, 'Rollin', 1930, 'M', 119), +(38124, 'Jules', 1930, 'M', 118), +(38125, 'Santiago', 1930, 'M', 118), +(38126, 'Kelly', 1930, 'M', 117), +(38127, 'Arther', 1930, 'M', 116), +(38128, 'Columbus', 1930, 'M', 116), +(38129, 'Orlando', 1930, 'M', 115), +(38130, 'Ramiro', 1930, 'M', 115), +(38131, 'Noble', 1930, 'M', 114), +(38132, 'Waldo', 1930, 'M', 114), +(38133, 'Justin', 1930, 'M', 113), +(38134, 'Merton', 1930, 'M', 113), +(38135, 'Nickolas', 1930, 'M', 113), +(38136, 'Rogers', 1930, 'M', 113), +(38137, 'Sebastian', 1930, 'M', 113), +(38138, 'Jewel', 1930, 'M', 111), +(38139, 'Shelby', 1930, 'M', 111), +(38140, 'Valentine', 1930, 'M', 111), +(38141, 'Davis', 1930, 'M', 109), +(38142, 'Ezra', 1930, 'M', 109), +(38143, 'Lupe', 1930, 'M', 109), +(38144, 'Theron', 1930, 'M', 109), +(38145, 'Coleman', 1930, 'M', 108), +(38146, 'Morgan', 1930, 'M', 108), +(38147, 'Quentin', 1930, 'M', 108), +(38148, 'Carson', 1930, 'M', 107), +(38149, 'Hilton', 1930, 'M', 107), +(38150, 'Alford', 1930, 'M', 106), +(38151, 'Lucien', 1930, 'M', 106), +(38152, 'Mckinley', 1930, 'M', 106), +(38153, 'Craig', 1930, 'M', 105), +(38154, 'Edd', 1930, 'M', 105), +(38155, 'Isiah', 1930, 'M', 105), +(38156, 'Jason', 1930, 'M', 105), +(38157, 'Kay', 1930, 'M', 105), +(38158, 'Reed', 1930, 'M', 105), +(38159, 'Warner', 1930, 'M', 105), +(38160, 'Ambrose', 1930, 'M', 104), +(38161, 'Clarance', 1930, 'M', 104), +(38162, 'Edsel', 1930, 'M', 104); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(38163, 'Ernie', 1930, 'M', 104), +(38164, 'Harland', 1930, 'M', 104), +(38165, 'Joesph', 1930, 'M', 104), +(38166, 'Talmadge', 1930, 'M', 104), +(38167, 'Avery', 1930, 'M', 103), +(38168, 'Beverly', 1930, 'M', 103), +(38169, 'Donn', 1930, 'M', 103), +(38170, 'Elden', 1930, 'M', 103), +(38171, 'Galen', 1930, 'M', 103), +(38172, 'Jonathan', 1930, 'M', 103), +(38173, 'Mose', 1930, 'M', 103), +(38174, 'Alejandro', 1930, 'M', 102), +(38175, 'Graham', 1930, 'M', 102), +(38176, 'Lacy', 1930, 'M', 102), +(38177, 'Stanford', 1930, 'M', 102), +(38178, 'Benito', 1930, 'M', 101), +(38179, 'Eduardo', 1930, 'M', 101), +(38180, 'Guillermo', 1930, 'M', 101), +(38181, 'Hans', 1930, 'M', 101), +(38182, 'Israel', 1930, 'M', 101), +(38183, 'Lemuel', 1930, 'M', 101), +(38184, 'Romeo', 1930, 'M', 101), +(38185, 'Jefferson', 1930, 'M', 100), +(38186, 'Palmer', 1930, 'M', 100), +(38187, 'Mary', 1931, 'F', 60293), +(38188, 'Betty', 1931, 'F', 36092), +(38189, 'Dorothy', 1931, 'F', 26519), +(38190, 'Barbara', 1931, 'F', 21797), +(38191, 'Joan', 1931, 'F', 19115), +(38192, 'Helen', 1931, 'F', 17654), +(38193, 'Margaret', 1931, 'F', 17333), +(38194, 'Patricia', 1931, 'F', 16469), +(38195, 'Shirley', 1931, 'F', 14404), +(38196, 'Doris', 1931, 'F', 13621), +(38197, 'Ruth', 1931, 'F', 13130), +(38198, 'Virginia', 1931, 'F', 11881), +(38199, 'Jean', 1931, 'F', 11013), +(38200, 'Dolores', 1931, 'F', 10803), +(38201, 'Joyce', 1931, 'F', 10575), +(38202, 'Elizabeth', 1931, 'F', 10294), +(38203, 'Nancy', 1931, 'F', 10033), +(38204, 'Frances', 1931, 'F', 9717), +(38205, 'Marilyn', 1931, 'F', 9663), +(38206, 'Lois', 1931, 'F', 9348), +(38207, 'Alice', 1931, 'F', 8815), +(38208, 'Norma', 1931, 'F', 8758), +(38209, 'Gloria', 1931, 'F', 8545), +(38210, 'Evelyn', 1931, 'F', 8490), +(38211, 'Anna', 1931, 'F', 8429), +(38212, 'Mildred', 1931, 'F', 8168), +(38213, 'Marie', 1931, 'F', 7544), +(38214, 'Martha', 1931, 'F', 7479), +(38215, 'Phyllis', 1931, 'F', 7211), +(38216, 'Rose', 1931, 'F', 6874), +(38217, 'Beverly', 1931, 'F', 6786), +(38218, 'Donna', 1931, 'F', 6597), +(38219, 'Louise', 1931, 'F', 5894), +(38220, 'Marjorie', 1931, 'F', 5883), +(38221, 'Ann', 1931, 'F', 5856), +(38222, 'Catherine', 1931, 'F', 5641), +(38223, 'Irene', 1931, 'F', 5615), +(38224, 'Geraldine', 1931, 'F', 5410), +(38225, 'Ruby', 1931, 'F', 5333), +(38226, 'Eleanor', 1931, 'F', 5258), +(38227, 'Annie', 1931, 'F', 5094), +(38228, 'Peggy', 1931, 'F', 5077), +(38229, 'Florence', 1931, 'F', 5009), +(38230, 'June', 1931, 'F', 5000), +(38231, 'Janet', 1931, 'F', 4945), +(38232, 'Carol', 1931, 'F', 4890), +(38233, 'Lillian', 1931, 'F', 4805), +(38234, 'Rita', 1931, 'F', 4613), +(38235, 'Lorraine', 1931, 'F', 4585), +(38236, 'Jane', 1931, 'F', 4535), +(38237, 'Josephine', 1931, 'F', 4497), +(38238, 'Edna', 1931, 'F', 4462), +(38239, 'Thelma', 1931, 'F', 4440), +(38240, 'Wanda', 1931, 'F', 4395), +(38241, 'Gladys', 1931, 'F', 4347), +(38242, 'Pauline', 1931, 'F', 4190), +(38243, 'Juanita', 1931, 'F', 4128), +(38244, 'Delores', 1931, 'F', 4049), +(38245, 'Theresa', 1931, 'F', 4033), +(38246, 'Carolyn', 1931, 'F', 4008), +(38247, 'Clara', 1931, 'F', 3901), +(38248, 'Lucille', 1931, 'F', 3857), +(38249, 'Bernice', 1931, 'F', 3823), +(38250, 'Audrey', 1931, 'F', 3789), +(38251, 'Edith', 1931, 'F', 3771), +(38252, 'Marion', 1931, 'F', 3766), +(38253, 'Ethel', 1931, 'F', 3762), +(38254, 'Joanne', 1931, 'F', 3756), +(38255, 'Wilma', 1931, 'F', 3742), +(38256, 'Grace', 1931, 'F', 3713), +(38257, 'Sarah', 1931, 'F', 3631), +(38258, 'Elaine', 1931, 'F', 3622), +(38259, 'Bonnie', 1931, 'F', 3548), +(38260, 'Hazel', 1931, 'F', 3505), +(38261, 'Charlotte', 1931, 'F', 3401), +(38262, 'Emma', 1931, 'F', 3306), +(38263, 'Arlene', 1931, 'F', 3215), +(38264, 'Jacqueline', 1931, 'F', 3137), +(38265, 'Esther', 1931, 'F', 3031), +(38266, 'Anne', 1931, 'F', 2977), +(38267, 'Billie', 1931, 'F', 2919), +(38268, 'Vivian', 1931, 'F', 2895), +(38269, 'Patsy', 1931, 'F', 2869), +(38270, 'Marian', 1931, 'F', 2861), +(38271, 'Beatrice', 1931, 'F', 2843), +(38272, 'Elsie', 1931, 'F', 2807), +(38273, 'Kathleen', 1931, 'F', 2799), +(38274, 'Rosemary', 1931, 'F', 2721), +(38275, 'Laura', 1931, 'F', 2669), +(38276, 'Joann', 1931, 'F', 2653), +(38277, 'Katherine', 1931, 'F', 2624), +(38278, 'Julia', 1931, 'F', 2622), +(38279, 'Willie', 1931, 'F', 2594), +(38280, 'Eva', 1931, 'F', 2592), +(38281, 'Marlene', 1931, 'F', 2586), +(38282, 'Loretta', 1931, 'F', 2576), +(38283, 'Sally', 1931, 'F', 2555), +(38284, 'Jeanne', 1931, 'F', 2524), +(38285, 'Ellen', 1931, 'F', 2449), +(38286, 'Ida', 1931, 'F', 2415), +(38287, 'Maxine', 1931, 'F', 2391), +(38288, 'Bertha', 1931, 'F', 2363), +(38289, 'Agnes', 1931, 'F', 2303), +(38290, 'Janice', 1931, 'F', 2287), +(38291, 'Jeanette', 1931, 'F', 2236), +(38292, 'Eileen', 1931, 'F', 2226), +(38293, 'Margie', 1931, 'F', 2205), +(38294, 'Kathryn', 1931, 'F', 2202), +(38295, 'Maria', 1931, 'F', 2185), +(38296, 'Ella', 1931, 'F', 2161), +(38297, 'Vera', 1931, 'F', 2160), +(38298, 'Lillie', 1931, 'F', 2122), +(38299, 'Alma', 1931, 'F', 2115), +(38300, 'Bessie', 1931, 'F', 2114), +(38301, 'Gertrude', 1931, 'F', 2092), +(38302, 'Jo', 1931, 'F', 2084), +(38303, 'Anita', 1931, 'F', 2080), +(38304, 'Constance', 1931, 'F', 2072), +(38305, 'Nellie', 1931, 'F', 1989), +(38306, 'Georgia', 1931, 'F', 1958), +(38307, 'Roberta', 1931, 'F', 1953), +(38308, 'Jessie', 1931, 'F', 1929), +(38309, 'Sylvia', 1931, 'F', 1928), +(38310, 'Bobbie', 1931, 'F', 1899), +(38311, 'Christine', 1931, 'F', 1883), +(38312, 'Lucy', 1931, 'F', 1827), +(38313, 'Darlene', 1931, 'F', 1822), +(38314, 'Viola', 1931, 'F', 1822), +(38315, 'Minnie', 1931, 'F', 1770), +(38316, 'Mattie', 1931, 'F', 1764), +(38317, 'Velma', 1931, 'F', 1755), +(38318, 'Violet', 1931, 'F', 1750), +(38319, 'Leona', 1931, 'F', 1743), +(38320, 'Myrtle', 1931, 'F', 1712), +(38321, 'Sara', 1931, 'F', 1707), +(38322, 'Geneva', 1931, 'F', 1663), +(38323, 'Pearl', 1931, 'F', 1648), +(38324, 'Rosa', 1931, 'F', 1632), +(38325, 'Claire', 1931, 'F', 1626), +(38326, 'Naomi', 1931, 'F', 1517), +(38327, 'Mae', 1931, 'F', 1461), +(38328, 'Stella', 1931, 'F', 1417), +(38329, 'Harriet', 1931, 'F', 1415), +(38330, 'Dora', 1931, 'F', 1362), +(38331, 'Genevieve', 1931, 'F', 1359), +(38332, 'Alberta', 1931, 'F', 1354), +(38333, 'Eunice', 1931, 'F', 1344), +(38334, 'Carrie', 1931, 'F', 1307), +(38335, 'Lena', 1931, 'F', 1300), +(38336, 'Jennie', 1931, 'F', 1286), +(38337, 'Yvonne', 1931, 'F', 1271), +(38338, 'Joy', 1931, 'F', 1224), +(38339, 'Sue', 1931, 'F', 1219), +(38340, 'Verna', 1931, 'F', 1213), +(38341, 'Rosie', 1931, 'F', 1205), +(38342, 'Lola', 1931, 'F', 1200), +(38343, 'Marguerite', 1931, 'F', 1191), +(38344, 'Emily', 1931, 'F', 1188), +(38345, 'Faye', 1931, 'F', 1187), +(38346, 'Cora', 1931, 'F', 1182), +(38347, 'Rachel', 1931, 'F', 1171), +(38348, 'Lula', 1931, 'F', 1155), +(38349, 'Erma', 1931, 'F', 1151), +(38350, 'Ramona', 1931, 'F', 1130), +(38351, 'Caroline', 1931, 'F', 1125), +(38352, 'Inez', 1931, 'F', 1110), +(38353, 'Judith', 1931, 'F', 1098), +(38354, 'Hilda', 1931, 'F', 1097), +(38355, 'Fannie', 1931, 'F', 1091), +(38356, 'Rebecca', 1931, 'F', 1088), +(38357, 'Opal', 1931, 'F', 1087), +(38358, 'Muriel', 1931, 'F', 1079), +(38359, 'Beulah', 1931, 'F', 1063), +(38360, 'Mabel', 1931, 'F', 1060), +(38361, 'Hattie', 1931, 'F', 1058), +(38362, 'Laverne', 1931, 'F', 1041), +(38363, 'Bettie', 1931, 'F', 1031), +(38364, 'Daisy', 1931, 'F', 1010), +(38365, 'Charlene', 1931, 'F', 1009), +(38366, 'Susan', 1931, 'F', 1005), +(38367, 'Rosalie', 1931, 'F', 1002), +(38368, 'Nina', 1931, 'F', 996), +(38369, 'Connie', 1931, 'F', 994), +(38370, 'Lila', 1931, 'F', 994), +(38371, 'Ada', 1931, 'F', 975), +(38372, 'Jeannette', 1931, 'F', 974), +(38373, 'Johnnie', 1931, 'F', 968), +(38374, 'Flora', 1931, 'F', 965), +(38375, 'Marcella', 1931, 'F', 958), +(38376, 'Blanche', 1931, 'F', 955), +(38377, 'Mamie', 1931, 'F', 947), +(38378, 'Teresa', 1931, 'F', 947), +(38379, 'Rosemarie', 1931, 'F', 941), +(38380, 'Ernestine', 1931, 'F', 940), +(38381, 'Irma', 1931, 'F', 938), +(38382, 'Carmen', 1931, 'F', 932), +(38383, 'Eloise', 1931, 'F', 926), +(38384, 'Pat', 1931, 'F', 926), +(38385, 'Madeline', 1931, 'F', 924), +(38386, 'Deloris', 1931, 'F', 917), +(38387, 'Imogene', 1931, 'F', 906), +(38388, 'Nora', 1931, 'F', 903), +(38389, 'Mable', 1931, 'F', 897), +(38390, 'Gwendolyn', 1931, 'F', 895), +(38391, 'Iris', 1931, 'F', 895), +(38392, 'Antoinette', 1931, 'F', 879), +(38393, 'Eula', 1931, 'F', 872), +(38394, 'Susie', 1931, 'F', 869), +(38395, 'Miriam', 1931, 'F', 868), +(38396, 'Della', 1931, 'F', 863), +(38397, 'Diane', 1931, 'F', 857), +(38398, 'Carole', 1931, 'F', 852), +(38399, 'Patty', 1931, 'F', 827), +(38400, 'Suzanne', 1931, 'F', 805), +(38401, 'Marcia', 1931, 'F', 800), +(38402, 'Regina', 1931, 'F', 777), +(38403, 'Melba', 1931, 'F', 771), +(38404, 'Estelle', 1931, 'F', 765), +(38405, 'Colleen', 1931, 'F', 761), +(38406, 'Katie', 1931, 'F', 753), +(38407, 'Priscilla', 1931, 'F', 749), +(38408, 'Bettye', 1931, 'F', 742), +(38409, 'Maureen', 1931, 'F', 742), +(38410, 'Annette', 1931, 'F', 741), +(38411, 'Maggie', 1931, 'F', 741), +(38412, 'Lorene', 1931, 'F', 736), +(38413, 'Sadie', 1931, 'F', 727), +(38414, 'Victoria', 1931, 'F', 712), +(38415, 'Bette', 1931, 'F', 708), +(38416, 'Janie', 1931, 'F', 694), +(38417, 'Olga', 1931, 'F', 674), +(38418, 'Winifred', 1931, 'F', 670), +(38419, 'Reba', 1931, 'F', 652), +(38420, 'Henrietta', 1931, 'F', 650), +(38421, 'Jacquelyn', 1931, 'F', 646), +(38422, 'Lydia', 1931, 'F', 646), +(38423, 'Freda', 1931, 'F', 640), +(38424, 'Cynthia', 1931, 'F', 633), +(38425, 'Fay', 1931, 'F', 631), +(38426, 'Jackie', 1931, 'F', 631), +(38427, 'Nadine', 1931, 'F', 630), +(38428, 'Angela', 1931, 'F', 619), +(38429, 'Angelina', 1931, 'F', 617), +(38430, 'Dixie', 1931, 'F', 617), +(38431, 'Ina', 1931, 'F', 613), +(38432, 'Marianne', 1931, 'F', 612), +(38433, 'Natalie', 1931, 'F', 599), +(38434, 'Amelia', 1931, 'F', 590), +(38435, 'Nettie', 1931, 'F', 588), +(38436, 'Paula', 1931, 'F', 584), +(38437, 'Essie', 1931, 'F', 579), +(38438, 'Veronica', 1931, 'F', 578), +(38439, 'Luella', 1931, 'F', 576), +(38440, 'Sharon', 1931, 'F', 576), +(38441, 'Fern', 1931, 'F', 571), +(38442, 'Ora', 1931, 'F', 565), +(38443, 'Glenna', 1931, 'F', 563), +(38444, 'Isabel', 1931, 'F', 560), +(38445, 'Kay', 1931, 'F', 558), +(38446, 'Lela', 1931, 'F', 557), +(38447, 'Ollie', 1931, 'F', 553), +(38448, 'Jimmie', 1931, 'F', 552), +(38449, 'Jewel', 1931, 'F', 545), +(38450, 'Bernadine', 1931, 'F', 544), +(38451, 'Diana', 1931, 'F', 538), +(38452, 'Maryann', 1931, 'F', 537), +(38453, 'Sheila', 1931, 'F', 537), +(38454, 'Sallie', 1931, 'F', 536), +(38455, 'Linda', 1931, 'F', 534), +(38456, 'Dorthy', 1931, 'F', 527), +(38457, 'Frankie', 1931, 'F', 526), +(38458, 'Iva', 1931, 'F', 523), +(38459, 'Etta', 1931, 'F', 518), +(38460, 'Olive', 1931, 'F', 514), +(38461, 'Myra', 1931, 'F', 511), +(38462, 'Clarice', 1931, 'F', 508), +(38463, 'Lottie', 1931, 'F', 508), +(38464, 'Dorothea', 1931, 'F', 505), +(38465, 'Adele', 1931, 'F', 499), +(38466, 'Mona', 1931, 'F', 497), +(38467, 'Adeline', 1931, 'F', 491), +(38468, 'Celia', 1931, 'F', 490), +(38469, 'Rhoda', 1931, 'F', 487), +(38470, 'Cleo', 1931, 'F', 482), +(38471, 'May', 1931, 'F', 481), +(38472, 'Mavis', 1931, 'F', 472), +(38473, 'Leola', 1931, 'F', 466), +(38474, 'Angeline', 1931, 'F', 465), +(38475, 'Elinor', 1931, 'F', 465), +(38476, 'Lou', 1931, 'F', 463), +(38477, 'Cecilia', 1931, 'F', 460), +(38478, 'Ola', 1931, 'F', 459), +(38479, 'Addie', 1931, 'F', 458), +(38480, 'Nell', 1931, 'F', 456), +(38481, 'Sandra', 1931, 'F', 455), +(38482, 'Cecelia', 1931, 'F', 453), +(38483, 'Annabelle', 1931, 'F', 452), +(38484, 'Therese', 1931, 'F', 451), +(38485, 'Estella', 1931, 'F', 450), +(38486, 'Willa', 1931, 'F', 450), +(38487, 'Jewell', 1931, 'F', 449), +(38488, 'Lee', 1931, 'F', 448), +(38489, 'Jeannine', 1931, 'F', 445), +(38490, 'Lenora', 1931, 'F', 440), +(38491, 'Helene', 1931, 'F', 439), +(38492, 'Gracie', 1931, 'F', 435), +(38493, 'Alta', 1931, 'F', 429), +(38494, 'Ila', 1931, 'F', 426), +(38495, 'Nelda', 1931, 'F', 425), +(38496, 'Sophie', 1931, 'F', 425), +(38497, 'Goldie', 1931, 'F', 424), +(38498, 'Effie', 1931, 'F', 421), +(38499, 'Selma', 1931, 'F', 420), +(38500, 'Elva', 1931, 'F', 415), +(38501, 'Myrna', 1931, 'F', 415), +(38502, 'Dona', 1931, 'F', 412), +(38503, 'Lizzie', 1931, 'F', 405), +(38504, 'Lupe', 1931, 'F', 403), +(38505, 'Lavonne', 1931, 'F', 402), +(38506, 'Lenore', 1931, 'F', 398), +(38507, 'Judy', 1931, 'F', 395), +(38508, 'Isabelle', 1931, 'F', 390), +(38509, 'Lorna', 1931, 'F', 389), +(38510, 'Jerry', 1931, 'F', 386), +(38511, 'Corinne', 1931, 'F', 384), +(38512, 'Greta', 1931, 'F', 383), +(38513, 'Olivia', 1931, 'F', 380), +(38514, 'Elvira', 1931, 'F', 379), +(38515, 'Polly', 1931, 'F', 379), +(38516, 'Claudia', 1931, 'F', 374), +(38517, 'Francis', 1931, 'F', 373), +(38518, 'Neva', 1931, 'F', 369), +(38519, 'Rosetta', 1931, 'F', 369), +(38520, 'Carmela', 1931, 'F', 363), +(38521, 'Earline', 1931, 'F', 361), +(38522, 'Lucile', 1931, 'F', 361), +(38523, 'Ruthie', 1931, 'F', 360), +(38524, 'Dolly', 1931, 'F', 357), +(38525, 'Elma', 1931, 'F', 350), +(38526, 'Guadalupe', 1931, 'F', 348), +(38527, 'Winnie', 1931, 'F', 348), +(38528, 'Amy', 1931, 'F', 347), +(38529, 'Doreen', 1931, 'F', 346), +(38530, 'James', 1931, 'F', 346), +(38531, 'Robert', 1931, 'F', 343), +(38532, 'Rena', 1931, 'F', 341), +(38533, 'Elnora', 1931, 'F', 339), +(38534, 'Josie', 1931, 'F', 338), +(38535, 'Nannie', 1931, 'F', 333), +(38536, 'Joanna', 1931, 'F', 331), +(38537, 'Eugenia', 1931, 'F', 330), +(38538, 'Virgie', 1931, 'F', 330), +(38539, 'Renee', 1931, 'F', 328), +(38540, 'Betsy', 1931, 'F', 327), +(38541, 'Mollie', 1931, 'F', 327), +(38542, 'John', 1931, 'F', 325), +(38543, 'Eleanore', 1931, 'F', 324), +(38544, 'Yolanda', 1931, 'F', 324), +(38545, 'Robbie', 1931, 'F', 321), +(38546, 'Leah', 1931, 'F', 319), +(38547, 'Beverley', 1931, 'F', 318), +(38548, 'Margery', 1931, 'F', 317), +(38549, 'Earnestine', 1931, 'F', 316), +(38550, 'Consuelo', 1931, 'F', 315), +(38551, 'Delia', 1931, 'F', 310), +(38552, 'Rosella', 1931, 'F', 309), +(38553, 'Harriett', 1931, 'F', 305), +(38554, 'Eddie', 1931, 'F', 303), +(38555, 'Margarita', 1931, 'F', 303), +(38556, 'Molly', 1931, 'F', 300), +(38557, 'Nola', 1931, 'F', 300), +(38558, 'Earlene', 1931, 'F', 297), +(38559, 'Pearlie', 1931, 'F', 296), +(38560, 'Lora', 1931, 'F', 295), +(38561, 'Millie', 1931, 'F', 295), +(38562, 'Arline', 1931, 'F', 292), +(38563, 'Christina', 1931, 'F', 292), +(38564, 'Flossie', 1931, 'F', 292), +(38565, 'Dawn', 1931, 'F', 291), +(38566, 'Dollie', 1931, 'F', 290), +(38567, 'Alicia', 1931, 'F', 289), +(38568, 'Bernadette', 1931, 'F', 288), +(38569, 'Leila', 1931, 'F', 287), +(38570, 'Aileen', 1931, 'F', 286), +(38571, 'Carmella', 1931, 'F', 286), +(38572, 'Ilene', 1931, 'F', 285), +(38573, 'Zelma', 1931, 'F', 284), +(38574, 'Concetta', 1931, 'F', 283), +(38575, 'Corrine', 1931, 'F', 281), +(38576, 'Cornelia', 1931, 'F', 280), +(38577, 'Loraine', 1931, 'F', 278), +(38578, 'Melva', 1931, 'F', 277), +(38579, 'Marlys', 1931, 'F', 276), +(38580, 'Wilda', 1931, 'F', 276), +(38581, 'Sybil', 1931, 'F', 275), +(38582, 'Avis', 1931, 'F', 274), +(38583, 'Tommie', 1931, 'F', 271), +(38584, 'Lily', 1931, 'F', 268), +(38585, 'Nona', 1931, 'F', 268), +(38586, 'Odessa', 1931, 'F', 263), +(38587, 'Faith', 1931, 'F', 261), +(38588, 'Janis', 1931, 'F', 261), +(38589, 'Cecile', 1931, 'F', 260), +(38590, 'Aurora', 1931, 'F', 258), +(38591, 'Alyce', 1931, 'F', 257), +(38592, 'Reva', 1931, 'F', 252), +(38593, 'Winona', 1931, 'F', 251), +(38594, 'Florine', 1931, 'F', 250), +(38595, 'Janette', 1931, 'F', 250), +(38596, 'Letha', 1931, 'F', 249), +(38597, 'Edwina', 1931, 'F', 248), +(38598, 'Helena', 1931, 'F', 247), +(38599, 'Valerie', 1931, 'F', 244), +(38600, 'Bobby', 1931, 'F', 242), +(38601, 'Georgie', 1931, 'F', 240), +(38602, 'Gail', 1931, 'F', 239), +(38603, 'Matilda', 1931, 'F', 239), +(38604, 'Beth', 1931, 'F', 238), +(38605, 'William', 1931, 'F', 238), +(38606, 'Julie', 1931, 'F', 237), +(38607, 'Aline', 1931, 'F', 235), +(38608, 'Iona', 1931, 'F', 235), +(38609, 'Clare', 1931, 'F', 234), +(38610, 'Frieda', 1931, 'F', 234), +(38611, 'Roslyn', 1931, 'F', 233), +(38612, 'Antonia', 1931, 'F', 232), +(38613, 'Evangeline', 1931, 'F', 232), +(38614, 'Glenda', 1931, 'F', 230), +(38615, 'Beryl', 1931, 'F', 229), +(38616, 'Joe', 1931, 'F', 227), +(38617, 'Pansy', 1931, 'F', 224), +(38618, 'Queen', 1931, 'F', 224), +(38619, 'Bennie', 1931, 'F', 222), +(38620, 'Jenny', 1931, 'F', 222), +(38621, 'Delphine', 1931, 'F', 220), +(38622, 'Louella', 1931, 'F', 220), +(38623, 'Marietta', 1931, 'F', 220), +(38624, 'Alene', 1931, 'F', 217), +(38625, 'Maude', 1931, 'F', 217), +(38626, 'Corine', 1931, 'F', 214), +(38627, 'Charles', 1931, 'F', 213), +(38628, 'Hannah', 1931, 'F', 213), +(38629, 'Merle', 1931, 'F', 213), +(38630, 'Mercedes', 1931, 'F', 212), +(38631, 'Amanda', 1931, 'F', 209), +(38632, 'Angie', 1931, 'F', 207), +(38633, 'Bonita', 1931, 'F', 206), +(38634, 'Freddie', 1931, 'F', 206), +(38635, 'Eliza', 1931, 'F', 205), +(38636, 'Elouise', 1931, 'F', 204), +(38637, 'Ima', 1931, 'F', 204), +(38638, 'Rae', 1931, 'F', 203), +(38639, 'Bertie', 1931, 'F', 202), +(38640, 'Ophelia', 1931, 'F', 202), +(38641, 'Allie', 1931, 'F', 201), +(38642, 'Johanna', 1931, 'F', 201), +(38643, 'Lorine', 1931, 'F', 200), +(38644, 'Lilly', 1931, 'F', 199), +(38645, 'Gretchen', 1931, 'F', 198), +(38646, 'Berniece', 1931, 'F', 197), +(38647, 'Lessie', 1931, 'F', 197), +(38648, 'Noreen', 1931, 'F', 197), +(38649, 'Joretta', 1931, 'F', 194), +(38650, 'Hope', 1931, 'F', 193), +(38651, 'Leota', 1931, 'F', 193), +(38652, 'Madge', 1931, 'F', 193), +(38653, 'Jannie', 1931, 'F', 192), +(38654, 'Monica', 1931, 'F', 192), +(38655, 'Retha', 1931, 'F', 191), +(38656, 'Gwen', 1931, 'F', 189), +(38657, 'Leatrice', 1931, 'F', 188), +(38658, 'Twila', 1931, 'F', 184), +(38659, 'Hester', 1931, 'F', 182), +(38660, 'Allene', 1931, 'F', 181), +(38661, 'Dortha', 1931, 'F', 181), +(38662, 'Callie', 1931, 'F', 180), +(38663, 'Ardis', 1931, 'F', 179), +(38664, 'Ester', 1931, 'F', 179), +(38665, 'Dorris', 1931, 'F', 178), +(38666, 'Gilda', 1931, 'F', 178), +(38667, 'Lorena', 1931, 'F', 178), +(38668, 'Marylou', 1931, 'F', 178), +(38669, 'Roxie', 1931, 'F', 178), +(38670, 'Lynn', 1931, 'F', 177), +(38671, 'Edythe', 1931, 'F', 176), +(38672, 'Elena', 1931, 'F', 176), +(38673, 'Maudie', 1931, 'F', 176), +(38674, 'Lelia', 1931, 'F', 175), +(38675, 'Zelda', 1931, 'F', 175), +(38676, 'Reta', 1931, 'F', 174), +(38677, 'Ione', 1931, 'F', 172), +(38678, 'George', 1931, 'F', 171), +(38679, 'Rosalee', 1931, 'F', 171), +(38680, 'Nita', 1931, 'F', 170), +(38681, 'Esperanza', 1931, 'F', 169), +(38682, 'Verla', 1931, 'F', 169), +(38683, 'Ardith', 1931, 'F', 168), +(38684, 'Petra', 1931, 'F', 168), +(38685, 'Gayle', 1931, 'F', 167), +(38686, 'Maurine', 1931, 'F', 167), +(38687, 'Gay', 1931, 'F', 166), +(38688, 'Katharine', 1931, 'F', 166), +(38689, 'Vernell', 1931, 'F', 166), +(38690, 'Carla', 1931, 'F', 165), +(38691, 'Dessie', 1931, 'F', 165), +(38692, 'Emogene', 1931, 'F', 164), +(38693, 'Madelyn', 1931, 'F', 164), +(38694, 'Iola', 1931, 'F', 163), +(38695, 'Sonia', 1931, 'F', 163), +(38696, 'Belva', 1931, 'F', 162), +(38697, 'Camille', 1931, 'F', 162), +(38698, 'Leta', 1931, 'F', 162), +(38699, 'Lucia', 1931, 'F', 162), +(38700, 'Charlie', 1931, 'F', 161), +(38701, 'Claudine', 1931, 'F', 161), +(38702, 'Rosalyn', 1931, 'F', 161), +(38703, 'Althea', 1931, 'F', 160), +(38704, 'Donald', 1931, 'F', 160), +(38705, 'Doretha', 1931, 'F', 160), +(38706, 'Jeanine', 1931, 'F', 160), +(38707, 'Velda', 1931, 'F', 160), +(38708, 'Rowena', 1931, 'F', 159), +(38709, 'Zella', 1931, 'F', 159), +(38710, 'Deborah', 1931, 'F', 158), +(38711, 'Ladonna', 1931, 'F', 158), +(38712, 'Francine', 1931, 'F', 157), +(38713, 'Carlene', 1931, 'F', 156), +(38714, 'Elisabeth', 1931, 'F', 156), +(38715, 'Philomena', 1931, 'F', 156), +(38716, 'Bobbye', 1931, 'F', 155), +(38717, 'Hellen', 1931, 'F', 155), +(38718, 'Billy', 1931, 'F', 154), +(38719, 'Karen', 1931, 'F', 154), +(38720, 'Leora', 1931, 'F', 154), +(38721, 'Marilynn', 1931, 'F', 154), +(38722, 'Enid', 1931, 'F', 152), +(38723, 'Oma', 1931, 'F', 152), +(38724, 'Birdie', 1931, 'F', 151), +(38725, 'Gussie', 1931, 'F', 151), +(38726, 'Josefina', 1931, 'F', 151), +(38727, 'Richard', 1931, 'F', 151), +(38728, 'Millicent', 1931, 'F', 149), +(38729, 'Adelaide', 1931, 'F', 148), +(38730, 'Peggie', 1931, 'F', 148), +(38731, 'Elise', 1931, 'F', 147), +(38732, 'Pearline', 1931, 'F', 147), +(38733, 'Syble', 1931, 'F', 147), +(38734, 'Sondra', 1931, 'F', 145), +(38735, 'Delma', 1931, 'F', 144), +(38736, 'Phoebe', 1931, 'F', 144), +(38737, 'Jaunita', 1931, 'F', 142), +(38738, 'Elsa', 1931, 'F', 140), +(38739, 'Verda', 1931, 'F', 140), +(38740, 'Germaine', 1931, 'F', 139), +(38741, 'Gerry', 1931, 'F', 139), +(38742, 'Shirlee', 1931, 'F', 139), +(38743, 'Isabella', 1931, 'F', 138), +(38744, 'Marjory', 1931, 'F', 138), +(38745, 'Vernice', 1931, 'F', 138), +(38746, 'Minerva', 1931, 'F', 137), +(38747, 'Ava', 1931, 'F', 136), +(38748, 'Charline', 1931, 'F', 136), +(38749, 'Freida', 1931, 'F', 136), +(38750, 'Manuela', 1931, 'F', 136), +(38751, 'Vada', 1931, 'F', 136), +(38752, 'Valeria', 1931, 'F', 136), +(38753, 'Alva', 1931, 'F', 135), +(38754, 'Margret', 1931, 'F', 135), +(38755, 'Tillie', 1931, 'F', 135), +(38756, 'Gertie', 1931, 'F', 134), +(38757, 'Juana', 1931, 'F', 134), +(38758, 'Francisca', 1931, 'F', 133), +(38759, 'Madonna', 1931, 'F', 133), +(38760, 'Sophia', 1931, 'F', 133), +(38761, 'Madeleine', 1931, 'F', 132), +(38762, 'Wilhelmina', 1931, 'F', 132), +(38763, 'Lauretta', 1931, 'F', 130), +(38764, 'Marlyn', 1931, 'F', 130), +(38765, 'Ofelia', 1931, 'F', 130), +(38766, 'Vida', 1931, 'F', 130), +(38767, 'Lavon', 1931, 'F', 129), +(38768, 'Nan', 1931, 'F', 129), +(38769, 'Roma', 1931, 'F', 129), +(38770, 'Alfreda', 1931, 'F', 128), +(38771, 'Floy', 1931, 'F', 128), +(38772, 'Augusta', 1931, 'F', 127), +(38773, 'Erna', 1931, 'F', 127), +(38774, 'Laurel', 1931, 'F', 127), +(38775, 'Georgette', 1931, 'F', 126), +(38776, 'Isabell', 1931, 'F', 126), +(38777, 'Harriette', 1931, 'F', 125), +(38778, 'Justine', 1931, 'F', 125), +(38779, 'Roselyn', 1931, 'F', 125), +(38780, 'Lura', 1931, 'F', 124), +(38781, 'Rosalind', 1931, 'F', 124), +(38782, 'Hallie', 1931, 'F', 123), +(38783, 'Kitty', 1931, 'F', 123), +(38784, 'Magdalene', 1931, 'F', 123), +(38785, 'Oleta', 1931, 'F', 123), +(38786, 'Celestine', 1931, 'F', 122), +(38787, 'Gene', 1931, 'F', 122), +(38788, 'Norene', 1931, 'F', 121), +(38789, 'Ona', 1931, 'F', 121), +(38790, 'Rhea', 1931, 'F', 121), +(38791, 'Rubye', 1931, 'F', 120), +(38792, 'Vilma', 1931, 'F', 120), +(38793, 'Louisa', 1931, 'F', 119), +(38794, 'Terry', 1931, 'F', 119), +(38795, 'Billye', 1931, 'F', 118), +(38796, 'Raquel', 1931, 'F', 118), +(38797, 'Alvina', 1931, 'F', 117), +(38798, 'Aurelia', 1931, 'F', 117), +(38799, 'Claudette', 1931, 'F', 117), +(38800, 'Dovie', 1931, 'F', 117), +(38801, 'Elisa', 1931, 'F', 117), +(38802, 'Sammie', 1931, 'F', 117), +(38803, 'Adell', 1931, 'F', 116), +(38804, 'Myrtis', 1931, 'F', 116), +(38805, 'Dorotha', 1931, 'F', 115), +(38806, 'Socorro', 1931, 'F', 115), +(38807, 'Clementine', 1931, 'F', 114), +(38808, 'Jayne', 1931, 'F', 114), +(38809, 'Adrienne', 1931, 'F', 113), +(38810, 'Donnie', 1931, 'F', 113), +(38811, 'Ouida', 1931, 'F', 113), +(38812, 'Berta', 1931, 'F', 112), +(38813, 'Joseph', 1931, 'F', 112), +(38814, 'Elda', 1931, 'F', 111), +(38815, 'Gearldine', 1931, 'F', 111), +(38816, 'Lucinda', 1931, 'F', 111), +(38817, 'Pattie', 1931, 'F', 111), +(38818, 'Camilla', 1931, 'F', 110), +(38819, 'Carolina', 1931, 'F', 110), +(38820, 'Cleta', 1931, 'F', 110), +(38821, 'Delois', 1931, 'F', 110), +(38822, 'Florene', 1931, 'F', 110), +(38823, 'Juliette', 1931, 'F', 110), +(38824, 'Fanny', 1931, 'F', 109), +(38825, 'Georgianna', 1931, 'F', 109), +(38826, 'Garnet', 1931, 'F', 108), +(38827, 'Theodora', 1931, 'F', 108), +(38828, 'Tina', 1931, 'F', 108), +(38829, 'Una', 1931, 'F', 108), +(38830, 'Darleen', 1931, 'F', 107), +(38831, 'Theda', 1931, 'F', 106), +(38832, 'Yvette', 1931, 'F', 106), +(38833, 'Elvera', 1931, 'F', 105), +(38834, 'Marvel', 1931, 'F', 105), +(38835, 'Dianne', 1931, 'F', 104), +(38836, 'Jan', 1931, 'F', 104), +(38837, 'Lavern', 1931, 'F', 104), +(38838, 'Ursula', 1931, 'F', 104), +(38839, 'Vesta', 1931, 'F', 104), +(38840, 'Norine', 1931, 'F', 103), +(38841, 'Susanne', 1931, 'F', 103), +(38842, 'Denise', 1931, 'F', 102), +(38843, 'Larue', 1931, 'F', 102), +(38844, 'Lue', 1931, 'F', 102), +(38845, 'Treva', 1931, 'F', 102), +(38846, 'Christene', 1931, 'F', 101), +(38847, 'Edward', 1931, 'F', 101), +(38848, 'Leslie', 1931, 'F', 101), +(38849, 'Marianna', 1931, 'F', 101), +(38850, 'Alpha', 1931, 'F', 100), +(38851, 'Artie', 1931, 'F', 100), +(38852, 'Lona', 1931, 'F', 100), +(38853, 'Robert', 1931, 'M', 60497), +(38854, 'James', 1931, 'M', 51199), +(38855, 'John', 1931, 'M', 48401), +(38856, 'William', 1931, 'M', 43262), +(38857, 'Richard', 1931, 'M', 31811), +(38858, 'Charles', 1931, 'M', 29915), +(38859, 'Donald', 1931, 'M', 29096), +(38860, 'George', 1931, 'M', 20677), +(38861, 'Joseph', 1931, 'M', 19322), +(38862, 'Thomas', 1931, 'M', 16837), +(38863, 'Edward', 1931, 'M', 15640), +(38864, 'Paul', 1931, 'M', 12250), +(38865, 'David', 1931, 'M', 11776), +(38866, 'Kenneth', 1931, 'M', 11564), +(38867, 'Jack', 1931, 'M', 11479), +(38868, 'Frank', 1931, 'M', 11469), +(38869, 'Raymond', 1931, 'M', 10855), +(38870, 'Harold', 1931, 'M', 10690), +(38871, 'Billy', 1931, 'M', 9262), +(38872, 'Walter', 1931, 'M', 8934), +(38873, 'Eugene', 1931, 'M', 8143), +(38874, 'Henry', 1931, 'M', 7799), +(38875, 'Arthur', 1931, 'M', 7527), +(38876, 'Albert', 1931, 'M', 7130), +(38877, 'Ralph', 1931, 'M', 6959), +(38878, 'Gerald', 1931, 'M', 6826), +(38879, 'Ronald', 1931, 'M', 6722), +(38880, 'Carl', 1931, 'M', 6579), +(38881, 'Joe', 1931, 'M', 6444), +(38882, 'Harry', 1931, 'M', 6039), +(38883, 'Willie', 1931, 'M', 5953), +(38884, 'Bobby', 1931, 'M', 5855), +(38885, 'Fred', 1931, 'M', 5704), +(38886, 'Howard', 1931, 'M', 5621), +(38887, 'Roy', 1931, 'M', 5484), +(38888, 'Louis', 1931, 'M', 5418), +(38889, 'Norman', 1931, 'M', 5417), +(38890, 'Lawrence', 1931, 'M', 5365), +(38891, 'Clarence', 1931, 'M', 5063), +(38892, 'Earl', 1931, 'M', 5042), +(38893, 'Herbert', 1931, 'M', 4783), +(38894, 'Francis', 1931, 'M', 4732), +(38895, 'Jerry', 1931, 'M', 4372), +(38896, 'Daniel', 1931, 'M', 4358), +(38897, 'Marvin', 1931, 'M', 4353), +(38898, 'Anthony', 1931, 'M', 4300), +(38899, 'Ernest', 1931, 'M', 4296), +(38900, 'Leonard', 1931, 'M', 4275), +(38901, 'Stanley', 1931, 'M', 4196), +(38902, 'Alfred', 1931, 'M', 3945), +(38903, 'Melvin', 1931, 'M', 3701), +(38904, 'Leroy', 1931, 'M', 3646), +(38905, 'Roger', 1931, 'M', 3623), +(38906, 'Bernard', 1931, 'M', 3514), +(38907, 'Michael', 1931, 'M', 3491), +(38908, 'Samuel', 1931, 'M', 3376), +(38909, 'Bill', 1931, 'M', 3220), +(38910, 'Wayne', 1931, 'M', 3213), +(38911, 'Don', 1931, 'M', 3174), +(38912, 'Ray', 1931, 'M', 3160), +(38913, 'Peter', 1931, 'M', 3118), +(38914, 'Dale', 1931, 'M', 3008), +(38915, 'Russell', 1931, 'M', 2943), +(38916, 'Gene', 1931, 'M', 2769), +(38917, 'Andrew', 1931, 'M', 2713), +(38918, 'Leo', 1931, 'M', 2705), +(38919, 'Floyd', 1931, 'M', 2703), +(38920, 'Lloyd', 1931, 'M', 2702), +(38921, 'Edwin', 1931, 'M', 2700), +(38922, 'Theodore', 1931, 'M', 2667), +(38923, 'Philip', 1931, 'M', 2650), +(38924, 'Glenn', 1931, 'M', 2622), +(38925, 'Frederick', 1931, 'M', 2468), +(38926, 'Vernon', 1931, 'M', 2465), +(38927, 'Clifford', 1931, 'M', 2449), +(38928, 'Gordon', 1931, 'M', 2397), +(38929, 'Clyde', 1931, 'M', 2330), +(38930, 'Bob', 1931, 'M', 2318), +(38931, 'Allen', 1931, 'M', 2307), +(38932, 'Alvin', 1931, 'M', 2301), +(38933, 'Jimmie', 1931, 'M', 2289), +(38934, 'Elmer', 1931, 'M', 2266), +(38935, 'Herman', 1931, 'M', 2262), +(38936, 'Leon', 1931, 'M', 2244), +(38937, 'Douglas', 1931, 'M', 2199), +(38938, 'Vincent', 1931, 'M', 2160), +(38939, 'Lewis', 1931, 'M', 2156), +(38940, 'Larry', 1931, 'M', 2145), +(38941, 'Jimmy', 1931, 'M', 2129), +(38942, 'Lee', 1931, 'M', 2122), +(38943, 'Martin', 1931, 'M', 2102), +(38944, 'Gilbert', 1931, 'M', 1991), +(38945, 'Harvey', 1931, 'M', 1973), +(38946, 'Charlie', 1931, 'M', 1971), +(38947, 'Eddie', 1931, 'M', 1956), +(38948, 'Lester', 1931, 'M', 1917), +(38949, 'Jesse', 1931, 'M', 1896), +(38950, 'Arnold', 1931, 'M', 1835), +(38951, 'Warren', 1931, 'M', 1833), +(38952, 'Milton', 1931, 'M', 1832), +(38953, 'Bruce', 1931, 'M', 1787), +(38954, 'Cecil', 1931, 'M', 1771), +(38955, 'Jerome', 1931, 'M', 1748), +(38956, 'Duane', 1931, 'M', 1728), +(38957, 'Chester', 1931, 'M', 1719), +(38958, 'Johnny', 1931, 'M', 1718), +(38959, 'Roland', 1931, 'M', 1700), +(38960, 'Curtis', 1931, 'M', 1636), +(38961, 'Victor', 1931, 'M', 1623), +(38962, 'Johnnie', 1931, 'M', 1592), +(38963, 'Patrick', 1931, 'M', 1570), +(38964, 'Glen', 1931, 'M', 1560), +(38965, 'Benjamin', 1931, 'M', 1555), +(38966, 'Wallace', 1931, 'M', 1540), +(38967, 'Tommy', 1931, 'M', 1534), +(38968, 'Jim', 1931, 'M', 1523), +(38969, 'Maurice', 1931, 'M', 1494), +(38970, 'Sam', 1931, 'M', 1458), +(38971, 'Calvin', 1931, 'M', 1440), +(38972, 'Alan', 1931, 'M', 1421), +(38973, 'Virgil', 1931, 'M', 1383), +(38974, 'Willard', 1931, 'M', 1378), +(38975, 'Edgar', 1931, 'M', 1377), +(38976, 'Keith', 1931, 'M', 1376), +(38977, 'Tom', 1931, 'M', 1361), +(38978, 'Jose', 1931, 'M', 1359), +(38979, 'Dean', 1931, 'M', 1346), +(38980, 'Billie', 1931, 'M', 1344), +(38981, 'Oscar', 1931, 'M', 1333), +(38982, 'Stephen', 1931, 'M', 1330), +(38983, 'Hugh', 1931, 'M', 1325), +(38984, 'Marion', 1931, 'M', 1313), +(38985, 'Manuel', 1931, 'M', 1311), +(38986, 'Claude', 1931, 'M', 1302), +(38987, 'Jessie', 1931, 'M', 1265), +(38988, 'Hubert', 1931, 'M', 1231), +(38989, 'Everett', 1931, 'M', 1229), +(38990, 'Dennis', 1931, 'M', 1201), +(38991, 'Leslie', 1931, 'M', 1191), +(38992, 'Max', 1931, 'M', 1180), +(38993, 'Phillip', 1931, 'M', 1177), +(38994, 'Jackie', 1931, 'M', 1121), +(38995, 'Wesley', 1931, 'M', 1114), +(38996, 'Homer', 1931, 'M', 1103), +(38997, 'Nicholas', 1931, 'M', 1101), +(38998, 'Rudolph', 1931, 'M', 1100), +(38999, 'Franklin', 1931, 'M', 1090), +(39000, 'Lowell', 1931, 'M', 1089), +(39001, 'Wilbur', 1931, 'M', 1086), +(39002, 'Junior', 1931, 'M', 1069), +(39003, 'Allan', 1931, 'M', 999), +(39004, 'Dick', 1931, 'M', 992), +(39005, 'Gary', 1931, 'M', 992), +(39006, 'Morris', 1931, 'M', 989), +(39007, 'Ted', 1931, 'M', 983), +(39008, 'Luther', 1931, 'M', 959), +(39009, 'Lyle', 1931, 'M', 941), +(39010, 'Sidney', 1931, 'M', 940), +(39011, 'Delbert', 1931, 'M', 930), +(39012, 'Horace', 1931, 'M', 930), +(39013, 'Willis', 1931, 'M', 930), +(39014, 'Ben', 1931, 'M', 911), +(39015, 'Earnest', 1931, 'M', 911), +(39016, 'Dan', 1931, 'M', 883), +(39017, 'Neil', 1931, 'M', 881), +(39018, 'Jay', 1931, 'M', 864), +(39019, 'Darrell', 1931, 'M', 834), +(39020, 'Clayton', 1931, 'M', 831), +(39021, 'Bennie', 1931, 'M', 821), +(39022, 'Tony', 1931, 'M', 813), +(39023, 'Freddie', 1931, 'M', 804), +(39024, 'Alexander', 1931, 'M', 792), +(39025, 'Steve', 1931, 'M', 788), +(39026, 'Guy', 1931, 'M', 780), +(39027, 'Oliver', 1931, 'M', 779), +(39028, 'Salvatore', 1931, 'M', 765), +(39029, 'Archie', 1931, 'M', 754), +(39030, 'Carroll', 1931, 'M', 751), +(39031, 'Bobbie', 1931, 'M', 748), +(39032, 'Juan', 1931, 'M', 744), +(39033, 'Otis', 1931, 'M', 730), +(39034, 'Alex', 1931, 'M', 728), +(39035, 'Lonnie', 1931, 'M', 719), +(39036, 'Edmund', 1931, 'M', 709), +(39037, 'Rodney', 1931, 'M', 708), +(39038, 'Alton', 1931, 'M', 707), +(39039, 'Julius', 1931, 'M', 707), +(39040, 'Clifton', 1931, 'M', 699), +(39041, 'Leland', 1931, 'M', 693), +(39042, 'Mike', 1931, 'M', 692), +(39043, 'Clinton', 1931, 'M', 687), +(39044, 'Myron', 1931, 'M', 679), +(39045, 'Wilbert', 1931, 'M', 676), +(39046, 'Angelo', 1931, 'M', 669), +(39047, 'Doyle', 1931, 'M', 667), +(39048, 'Marshall', 1931, 'M', 667), +(39049, 'Mark', 1931, 'M', 666), +(39050, 'Merle', 1931, 'M', 661), +(39051, 'Nathaniel', 1931, 'M', 660), +(39052, 'Ramon', 1931, 'M', 658), +(39053, 'Orville', 1931, 'M', 655), +(39054, 'Ivan', 1931, 'M', 646), +(39055, 'Wendell', 1931, 'M', 641), +(39056, 'Karl', 1931, 'M', 635), +(39057, 'Jesus', 1931, 'M', 630), +(39058, 'Antonio', 1931, 'M', 624), +(39059, 'Ira', 1931, 'M', 617), +(39060, 'Nelson', 1931, 'M', 608), +(39061, 'Matthew', 1931, 'M', 607), +(39062, 'Benny', 1931, 'M', 600), +(39063, 'Dewey', 1931, 'M', 597), +(39064, 'Pete', 1931, 'M', 591), +(39065, 'Conrad', 1931, 'M', 585), +(39066, 'Malcolm', 1931, 'M', 585), +(39067, 'Irving', 1931, 'M', 583), +(39068, 'Loren', 1931, 'M', 575), +(39069, 'Jacob', 1931, 'M', 572), +(39070, 'Ervin', 1931, 'M', 569), +(39071, 'Dwight', 1931, 'M', 566), +(39072, 'Elbert', 1931, 'M', 566), +(39073, 'Eldon', 1931, 'M', 561), +(39074, 'Gerard', 1931, 'M', 551), +(39075, 'Irvin', 1931, 'M', 547), +(39076, 'Carlos', 1931, 'M', 545), +(39077, 'Perry', 1931, 'M', 542), +(39078, 'Sylvester', 1931, 'M', 526), +(39079, 'Rex', 1931, 'M', 519), +(39080, 'Laurence', 1931, 'M', 516), +(39081, 'Loyd', 1931, 'M', 515), +(39082, 'Wilfred', 1931, 'M', 514), +(39083, 'Nick', 1931, 'M', 511), +(39084, 'Carlton', 1931, 'M', 503), +(39085, 'Fredrick', 1931, 'M', 502), +(39086, 'Julian', 1931, 'M', 502), +(39087, 'Byron', 1931, 'M', 501), +(39088, 'Norbert', 1931, 'M', 501), +(39089, 'Tommie', 1931, 'M', 493), +(39090, 'Troy', 1931, 'M', 485), +(39091, 'Mack', 1931, 'M', 484), +(39092, 'Rufus', 1931, 'M', 481), +(39093, 'Felix', 1931, 'M', 480), +(39094, 'Joel', 1931, 'M', 477), +(39095, 'Burton', 1931, 'M', 474), +(39096, 'Forrest', 1931, 'M', 473), +(39097, 'Irwin', 1931, 'M', 468), +(39098, 'Roosevelt', 1931, 'M', 466), +(39099, 'Ruben', 1931, 'M', 464), +(39100, 'Bert', 1931, 'M', 462), +(39101, 'Buddy', 1931, 'M', 462), +(39102, 'Aaron', 1931, 'M', 457), +(39103, 'Ellis', 1931, 'M', 457), +(39104, 'Owen', 1931, 'M', 457), +(39105, 'Ross', 1931, 'M', 452), +(39106, 'Emil', 1931, 'M', 447), +(39107, 'Grady', 1931, 'M', 444), +(39108, 'Nathan', 1931, 'M', 443), +(39109, 'Isaac', 1931, 'M', 442), +(39110, 'Sherman', 1931, 'M', 441), +(39111, 'Harley', 1931, 'M', 439), +(39112, 'Johnie', 1931, 'M', 439), +(39113, 'Francisco', 1931, 'M', 426), +(39114, 'Lynn', 1931, 'M', 426), +(39115, 'Boyd', 1931, 'M', 425), +(39116, 'Harlan', 1931, 'M', 424), +(39117, 'Teddy', 1931, 'M', 424), +(39118, 'August', 1931, 'M', 423), +(39119, 'Reginald', 1931, 'M', 423), +(39120, 'Rudy', 1931, 'M', 423), +(39121, 'Elwood', 1931, 'M', 421), +(39122, 'Percy', 1931, 'M', 415), +(39123, 'Dallas', 1931, 'M', 413), +(39124, 'Grover', 1931, 'M', 411), +(39125, 'Pat', 1931, 'M', 407), +(39126, 'Sheldon', 1931, 'M', 407), +(39127, 'Morton', 1931, 'M', 405), +(39128, 'Emmett', 1931, 'M', 402), +(39129, 'Stuart', 1931, 'M', 400), +(39130, 'Laverne', 1931, 'M', 395), +(39131, 'Mario', 1931, 'M', 394), +(39132, 'Dominick', 1931, 'M', 390), +(39133, 'Danny', 1931, 'M', 387), +(39134, 'Aubrey', 1931, 'M', 383), +(39135, 'Dave', 1931, 'M', 383), +(39136, 'Murray', 1931, 'M', 377), +(39137, 'Dominic', 1931, 'M', 373), +(39138, 'Neal', 1931, 'M', 371), +(39139, 'Pedro', 1931, 'M', 367), +(39140, 'Otto', 1931, 'M', 366), +(39141, 'Amos', 1931, 'M', 365), +(39142, 'Merlin', 1931, 'M', 365), +(39143, 'Raul', 1931, 'M', 362), +(39144, 'Garland', 1931, 'M', 361), +(39145, 'Cornelius', 1931, 'M', 360), +(39146, 'Delmar', 1931, 'M', 352), +(39147, 'Austin', 1931, 'M', 350), +(39148, 'Maynard', 1931, 'M', 349), +(39149, 'Louie', 1931, 'M', 348), +(39150, 'Sammie', 1931, 'M', 348), +(39151, 'Timothy', 1931, 'M', 346), +(39152, 'Alfonso', 1931, 'M', 345), +(39153, 'Sammy', 1931, 'M', 345), +(39154, 'Seymour', 1931, 'M', 341), +(39155, 'Wilson', 1931, 'M', 339), +(39156, 'Erwin', 1931, 'M', 334), +(39157, 'Preston', 1931, 'M', 334), +(39158, 'Mary', 1931, 'M', 326), +(39159, 'Edmond', 1931, 'M', 317), +(39160, 'Guadalupe', 1931, 'M', 316), +(39161, 'Roberto', 1931, 'M', 311), +(39162, 'Darrel', 1931, 'M', 303), +(39163, 'Elvin', 1931, 'M', 302), +(39164, 'Wade', 1931, 'M', 301), +(39165, 'Adam', 1931, 'M', 300), +(39166, 'Marlin', 1931, 'M', 300), +(39167, 'Barry', 1931, 'M', 299), +(39168, 'Moses', 1931, 'M', 298), +(39169, 'Royce', 1931, 'M', 296), +(39170, 'Steven', 1931, 'M', 293), +(39171, 'Adolph', 1931, 'M', 292), +(39172, 'Abraham', 1931, 'M', 291), +(39173, 'Lionel', 1931, 'M', 290), +(39174, 'Terry', 1931, 'M', 288), +(39175, 'Jean', 1931, 'M', 287), +(39176, 'Sanford', 1931, 'M', 287), +(39177, 'Elton', 1931, 'M', 284), +(39178, 'Travis', 1931, 'M', 284), +(39179, 'Thurman', 1931, 'M', 283), +(39180, 'Frankie', 1931, 'M', 280), +(39181, 'Dudley', 1931, 'M', 279), +(39182, 'Noel', 1931, 'M', 277), +(39183, 'Luis', 1931, 'M', 274), +(39184, 'Mitchell', 1931, 'M', 273), +(39185, 'Odell', 1931, 'M', 265), +(39186, 'Norris', 1931, 'M', 264), +(39187, 'Wilmer', 1931, 'M', 264), +(39188, 'Salvador', 1931, 'M', 262), +(39189, 'Grant', 1931, 'M', 260), +(39190, 'Roscoe', 1931, 'M', 260), +(39191, 'Darwin', 1931, 'M', 258), +(39192, 'Charley', 1931, 'M', 257), +(39193, 'Gregory', 1931, 'M', 256), +(39194, 'Merrill', 1931, 'M', 256), +(39195, 'Clair', 1931, 'M', 254), +(39196, 'Ned', 1931, 'M', 254), +(39197, 'Jasper', 1931, 'M', 252), +(39198, 'Kermit', 1931, 'M', 252), +(39199, 'Lavern', 1931, 'M', 251), +(39200, 'Millard', 1931, 'M', 250), +(39201, 'Monroe', 1931, 'M', 249), +(39202, 'Reuben', 1931, 'M', 249), +(39203, 'Weldon', 1931, 'M', 247), +(39204, 'Carol', 1931, 'M', 246), +(39205, 'Jerald', 1931, 'M', 246), +(39206, 'Ollie', 1931, 'M', 246), +(39207, 'Carmen', 1931, 'M', 245), +(39208, 'Clark', 1931, 'M', 243), +(39209, 'Cleveland', 1931, 'M', 243), +(39210, 'Wilburn', 1931, 'M', 243), +(39211, 'Andy', 1931, 'M', 242), +(39212, 'Ed', 1931, 'M', 241), +(39213, 'Hollis', 1931, 'M', 241), +(39214, 'Gus', 1931, 'M', 239), +(39215, 'Shirley', 1931, 'M', 239), +(39216, 'Christopher', 1931, 'M', 237), +(39217, 'Will', 1931, 'M', 237), +(39218, 'Donnie', 1931, 'M', 236), +(39219, 'Alonzo', 1931, 'M', 235), +(39220, 'Woodrow', 1931, 'M', 235), +(39221, 'Randolph', 1931, 'M', 232), +(39222, 'Simon', 1931, 'M', 232), +(39223, 'Clement', 1931, 'M', 230), +(39224, 'Harrison', 1931, 'M', 226), +(39225, 'Wiley', 1931, 'M', 226), +(39226, 'Marcus', 1931, 'M', 224), +(39227, 'Cleo', 1931, 'M', 223), +(39228, 'Patsy', 1931, 'M', 222), +(39229, 'Armand', 1931, 'M', 221), +(39230, 'Armando', 1931, 'M', 220), +(39231, 'Emory', 1931, 'M', 218), +(39232, 'Rocco', 1931, 'M', 217), +(39233, 'Stewart', 1931, 'M', 216), +(39234, 'Lamar', 1931, 'M', 215), +(39235, 'Adrian', 1931, 'M', 214), +(39236, 'Jake', 1931, 'M', 214), +(39237, 'Alva', 1931, 'M', 213), +(39238, 'Eric', 1931, 'M', 213), +(39239, 'Vito', 1931, 'M', 210), +(39240, 'Gabriel', 1931, 'M', 209), +(39241, 'Bud', 1931, 'M', 208), +(39242, 'Randall', 1931, 'M', 208), +(39243, 'Phil', 1931, 'M', 207), +(39244, 'Rolland', 1931, 'M', 207), +(39245, 'Wilford', 1931, 'M', 207), +(39246, 'Alfredo', 1931, 'M', 206), +(39247, 'Levi', 1931, 'M', 202), +(39248, 'Alphonse', 1931, 'M', 201), +(39249, 'Coy', 1931, 'M', 201), +(39250, 'Vern', 1931, 'M', 201), +(39251, 'Buford', 1931, 'M', 200), +(39252, 'Emanuel', 1931, 'M', 198), +(39253, 'Forest', 1931, 'M', 198), +(39254, 'Elijah', 1931, 'M', 197), +(39255, 'Truman', 1931, 'M', 197), +(39256, 'Lorenzo', 1931, 'M', 194), +(39257, 'Sterling', 1931, 'M', 193), +(39258, 'Ronnie', 1931, 'M', 192), +(39259, 'Miguel', 1931, 'M', 190), +(39260, 'Hector', 1931, 'M', 189), +(39261, 'Rafael', 1931, 'M', 189), +(39262, 'Carmine', 1931, 'M', 188), +(39263, 'Jackson', 1931, 'M', 188), +(39264, 'Normand', 1931, 'M', 187), +(39265, 'Russel', 1931, 'M', 187), +(39266, 'Al', 1931, 'M', 185), +(39267, 'Van', 1931, 'M', 185), +(39268, 'Roman', 1931, 'M', 184), +(39269, 'Harris', 1931, 'M', 182), +(39270, 'Barney', 1931, 'M', 181), +(39271, 'Mervin', 1931, 'M', 181), +(39272, 'Claud', 1931, 'M', 180), +(39273, 'Noah', 1931, 'M', 180), +(39274, 'Ward', 1931, 'M', 179), +(39275, 'Earle', 1931, 'M', 178), +(39276, 'Kent', 1931, 'M', 178), +(39277, 'Emery', 1931, 'M', 177), +(39278, 'Winston', 1931, 'M', 177), +(39279, 'Fernando', 1931, 'M', 176), +(39280, 'Herschel', 1931, 'M', 176), +(39281, 'Ricardo', 1931, 'M', 176), +(39282, 'Cyril', 1931, 'M', 175), +(39283, 'Carrol', 1931, 'M', 174), +(39284, 'Eli', 1931, 'M', 172), +(39285, 'Hershel', 1931, 'M', 172), +(39286, 'Delmer', 1931, 'M', 171), +(39287, 'Gale', 1931, 'M', 169), +(39288, 'Silas', 1931, 'M', 169), +(39289, 'Miles', 1931, 'M', 168), +(39290, 'Gaylord', 1931, 'M', 167), +(39291, 'Everette', 1931, 'M', 166), +(39292, 'Hal', 1931, 'M', 166), +(39293, 'Rodolfo', 1931, 'M', 163), +(39294, 'Winfred', 1931, 'M', 163), +(39295, 'Huey', 1931, 'M', 162), +(39296, 'Bradley', 1931, 'M', 161), +(39297, 'Rene', 1931, 'M', 160), +(39298, 'Milford', 1931, 'M', 159), +(39299, 'Linwood', 1931, 'M', 158), +(39300, 'Burl', 1931, 'M', 156), +(39301, 'Jess', 1931, 'M', 156), +(39302, 'Nolan', 1931, 'M', 156), +(39303, 'Roderick', 1931, 'M', 156), +(39304, 'Arturo', 1931, 'M', 155), +(39305, 'Pablo', 1931, 'M', 155), +(39306, 'Solomon', 1931, 'M', 155), +(39307, 'Basil', 1931, 'M', 154), +(39308, 'Chris', 1931, 'M', 154), +(39309, 'Jeff', 1931, 'M', 153), +(39310, 'Betty', 1931, 'M', 152), +(39311, 'Enrique', 1931, 'M', 152), +(39312, 'Anton', 1931, 'M', 149), +(39313, 'Elias', 1931, 'M', 149), +(39314, 'Vance', 1931, 'M', 149), +(39315, 'Booker', 1931, 'M', 148), +(39316, 'Elliott', 1931, 'M', 148), +(39317, 'Freeman', 1931, 'M', 148), +(39318, 'Royal', 1931, 'M', 148), +(39319, 'Gilberto', 1931, 'M', 147), +(39320, 'Ulysses', 1931, 'M', 147), +(39321, 'Dwayne', 1931, 'M', 146), +(39322, 'Dalton', 1931, 'M', 145), +(39323, 'Lenard', 1931, 'M', 145), +(39324, 'Alberto', 1931, 'M', 144), +(39325, 'Rodger', 1931, 'M', 143), +(39326, 'Arlen', 1931, 'M', 142), +(39327, 'Dorothy', 1931, 'M', 142), +(39328, 'Ernesto', 1931, 'M', 142), +(39329, 'Luke', 1931, 'M', 142), +(39330, 'Orval', 1931, 'M', 142), +(39331, 'Bertram', 1931, 'M', 141), +(39332, 'Frederic', 1931, 'M', 141), +(39333, 'Odis', 1931, 'M', 141), +(39334, 'Spencer', 1931, 'M', 141), +(39335, 'Pasquale', 1931, 'M', 140), +(39336, 'Thaddeus', 1931, 'M', 139), +(39337, 'Arlie', 1931, 'M', 138), +(39338, 'Mickey', 1931, 'M', 138), +(39339, 'Saul', 1931, 'M', 138), +(39340, 'Scott', 1931, 'M', 138), +(39341, 'Elroy', 1931, 'M', 137), +(39342, 'Riley', 1931, 'M', 137), +(39343, 'Elmo', 1931, 'M', 136), +(39344, 'Emilio', 1931, 'M', 136), +(39345, 'Domingo', 1931, 'M', 135), +(39346, 'Gail', 1931, 'M', 135), +(39347, 'Morgan', 1931, 'M', 135), +(39348, 'Wilton', 1931, 'M', 135), +(39349, 'Alden', 1931, 'M', 133), +(39350, 'Cletus', 1931, 'M', 132), +(39351, 'Hoyt', 1931, 'M', 132), +(39352, 'Julio', 1931, 'M', 132), +(39353, 'Vaughn', 1931, 'M', 132), +(39354, 'Dewayne', 1931, 'M', 131), +(39355, 'Dana', 1931, 'M', 130), +(39356, 'Jules', 1931, 'M', 130), +(39357, 'Stanford', 1931, 'M', 130), +(39358, 'Kelly', 1931, 'M', 129), +(39359, 'Arther', 1931, 'M', 128), +(39360, 'Lupe', 1931, 'M', 128), +(39361, 'Merlyn', 1931, 'M', 128), +(39362, 'Milo', 1931, 'M', 128), +(39363, 'Blaine', 1931, 'M', 127), +(39364, 'Olin', 1931, 'M', 127), +(39365, 'Freddy', 1931, 'M', 126), +(39366, 'Hobert', 1931, 'M', 126), +(39367, 'Monte', 1931, 'M', 126), +(39368, 'Carlo', 1931, 'M', 124), +(39369, 'Daryl', 1931, 'M', 124), +(39370, 'Emerson', 1931, 'M', 124), +(39371, 'Kay', 1931, 'M', 124), +(39372, 'Bryan', 1931, 'M', 123), +(39373, 'Connie', 1931, 'M', 123), +(39374, 'Houston', 1931, 'M', 123), +(39375, 'Arden', 1931, 'M', 122), +(39376, 'Bruno', 1931, 'M', 121), +(39377, 'Felipe', 1931, 'M', 121), +(39378, 'Hiram', 1931, 'M', 121), +(39379, 'Lyman', 1931, 'M', 121), +(39380, 'Micheal', 1931, 'M', 121), +(39381, 'Newton', 1931, 'M', 121), +(39382, 'Davis', 1931, 'M', 120), +(39383, 'Denver', 1931, 'M', 120), +(39384, 'Alphonso', 1931, 'M', 119), +(39385, 'Emile', 1931, 'M', 119), +(39386, 'Galen', 1931, 'M', 119), +(39387, 'Augustine', 1931, 'M', 118), +(39388, 'Ellsworth', 1931, 'M', 118), +(39389, 'Frances', 1931, 'M', 118), +(39390, 'Theron', 1931, 'M', 118), +(39391, 'Clay', 1931, 'M', 117), +(39392, 'Hilton', 1931, 'M', 117), +(39393, 'Jonathan', 1931, 'M', 117), +(39394, 'Olen', 1931, 'M', 117), +(39395, 'Omer', 1931, 'M', 117), +(39396, 'Boyce', 1931, 'M', 116), +(39397, 'Raymon', 1931, 'M', 116), +(39398, 'Rogers', 1931, 'M', 116), +(39399, 'Elden', 1931, 'M', 114), +(39400, 'Jeremiah', 1931, 'M', 114), +(39401, 'Tomas', 1931, 'M', 114), +(39402, 'Bernie', 1931, 'M', 113), +(39403, 'Buster', 1931, 'M', 113), +(39404, 'Wilber', 1931, 'M', 113), +(39405, 'Craig', 1931, 'M', 112), +(39406, 'Evan', 1931, 'M', 112), +(39407, 'Kevin', 1931, 'M', 112), +(39408, 'Marcel', 1931, 'M', 112), +(39409, 'Columbus', 1931, 'M', 111), +(39410, 'Foster', 1931, 'M', 111), +(39411, 'Orlando', 1931, 'M', 111), +(39412, 'Rollin', 1931, 'M', 111), +(39413, 'Lincoln', 1931, 'M', 110), +(39414, 'Shelby', 1931, 'M', 110), +(39415, 'Augustus', 1931, 'M', 109), +(39416, 'Ferdinand', 1931, 'M', 109), +(39417, 'Ignacio', 1931, 'M', 108), +(39418, 'Isiah', 1931, 'M', 108), +(39419, 'Kennith', 1931, 'M', 108), +(39420, 'Reed', 1931, 'M', 108), +(39421, 'Angel', 1931, 'M', 107), +(39422, 'Jefferson', 1931, 'M', 107), +(39423, 'Otha', 1931, 'M', 107), +(39424, 'Elwin', 1931, 'M', 106), +(39425, 'Benito', 1931, 'M', 105), +(39426, 'Edsel', 1931, 'M', 105), +(39427, 'Mckinley', 1931, 'M', 105), +(39428, 'Harland', 1931, 'M', 104), +(39429, 'Quentin', 1931, 'M', 104), +(39430, 'Isaiah', 1931, 'M', 103), +(39431, 'Jerold', 1931, 'M', 103), +(39432, 'Jordan', 1931, 'M', 102), +(39433, 'Santiago', 1931, 'M', 102), +(39434, 'Joesph', 1931, 'M', 101), +(39435, 'Verne', 1931, 'M', 101), +(39436, 'Fletcher', 1931, 'M', 100), +(39437, 'Graham', 1931, 'M', 100), +(39438, 'Guillermo', 1931, 'M', 100), +(39439, 'Talmadge', 1931, 'M', 100), +(39440, 'Mary', 1932, 'F', 59871), +(39441, 'Betty', 1932, 'F', 34413), +(39442, 'Barbara', 1932, 'F', 26314), +(39443, 'Dorothy', 1932, 'F', 24967), +(39444, 'Joan', 1932, 'F', 21045), +(39445, 'Patricia', 1932, 'F', 17991), +(39446, 'Margaret', 1932, 'F', 16544), +(39447, 'Helen', 1932, 'F', 16375), +(39448, 'Shirley', 1932, 'F', 14470), +(39449, 'Doris', 1932, 'F', 12908), +(39450, 'Ruth', 1932, 'F', 12251), +(39451, 'Joyce', 1932, 'F', 11362), +(39452, 'Nancy', 1932, 'F', 10946), +(39453, 'Virginia', 1932, 'F', 10754), +(39454, 'Jean', 1932, 'F', 10668), +(39455, 'Marilyn', 1932, 'F', 10567), +(39456, 'Elizabeth', 1932, 'F', 9993), +(39457, 'Dolores', 1932, 'F', 9633), +(39458, 'Frances', 1932, 'F', 9552), +(39459, 'Lois', 1932, 'F', 9520), +(39460, 'Alice', 1932, 'F', 8534), +(39461, 'Norma', 1932, 'F', 8407), +(39462, 'Evelyn', 1932, 'F', 7957), +(39463, 'Anna', 1932, 'F', 7921), +(39464, 'Gloria', 1932, 'F', 7810), +(39465, 'Mildred', 1932, 'F', 7645), +(39466, 'Martha', 1932, 'F', 7580), +(39467, 'Beverly', 1932, 'F', 7525), +(39468, 'Donna', 1932, 'F', 7364), +(39469, 'Phyllis', 1932, 'F', 7306), +(39470, 'Marie', 1932, 'F', 6911), +(39471, 'Carol', 1932, 'F', 6568), +(39472, 'Rose', 1932, 'F', 6469), +(39473, 'Ann', 1932, 'F', 6194), +(39474, 'Janet', 1932, 'F', 5787), +(39475, 'Louise', 1932, 'F', 5645), +(39476, 'Marjorie', 1932, 'F', 5607), +(39477, 'Ruby', 1932, 'F', 5465), +(39478, 'Catherine', 1932, 'F', 5444), +(39479, 'Peggy', 1932, 'F', 5444), +(39480, 'Annie', 1932, 'F', 5380), +(39481, 'Geraldine', 1932, 'F', 5337), +(39482, 'Irene', 1932, 'F', 5199), +(39483, 'June', 1932, 'F', 4842), +(39484, 'Eleanor', 1932, 'F', 4835), +(39485, 'Carolyn', 1932, 'F', 4587), +(39486, 'Florence', 1932, 'F', 4539), +(39487, 'Lillian', 1932, 'F', 4349), +(39488, 'Jane', 1932, 'F', 4345), +(39489, 'Edna', 1932, 'F', 4279), +(39490, 'Thelma', 1932, 'F', 4272), +(39491, 'Wanda', 1932, 'F', 4262), +(39492, 'Rita', 1932, 'F', 4256), +(39493, 'Gladys', 1932, 'F', 4183), +(39494, 'Lorraine', 1932, 'F', 4162), +(39495, 'Delores', 1932, 'F', 4149), +(39496, 'Josephine', 1932, 'F', 4096), +(39497, 'Juanita', 1932, 'F', 4009), +(39498, 'Pauline', 1932, 'F', 3900), +(39499, 'Theresa', 1932, 'F', 3815), +(39500, 'Audrey', 1932, 'F', 3732), +(39501, 'Joanne', 1932, 'F', 3731), +(39502, 'Lucille', 1932, 'F', 3650), +(39503, 'Bonnie', 1932, 'F', 3620), +(39504, 'Wilma', 1932, 'F', 3611), +(39505, 'Ethel', 1932, 'F', 3608), +(39506, 'Sarah', 1932, 'F', 3598), +(39507, 'Elaine', 1932, 'F', 3578), +(39508, 'Edith', 1932, 'F', 3570), +(39509, 'Clara', 1932, 'F', 3560), +(39510, 'Bernice', 1932, 'F', 3542), +(39511, 'Grace', 1932, 'F', 3536), +(39512, 'Marion', 1932, 'F', 3491), +(39513, 'Charlotte', 1932, 'F', 3363), +(39514, 'Hazel', 1932, 'F', 3341), +(39515, 'Emma', 1932, 'F', 3327), +(39516, 'Patsy', 1932, 'F', 3254), +(39517, 'Marlene', 1932, 'F', 3218), +(39518, 'Joann', 1932, 'F', 3116), +(39519, 'Arlene', 1932, 'F', 3108), +(39520, 'Anne', 1932, 'F', 2968), +(39521, 'Esther', 1932, 'F', 2959), +(39522, 'Kathleen', 1932, 'F', 2942), +(39523, 'Sally', 1932, 'F', 2915), +(39524, 'Jacqueline', 1932, 'F', 2872), +(39525, 'Marian', 1932, 'F', 2836), +(39526, 'Beatrice', 1932, 'F', 2787), +(39527, 'Laura', 1932, 'F', 2749), +(39528, 'Loretta', 1932, 'F', 2749), +(39529, 'Vivian', 1932, 'F', 2664), +(39530, 'Willie', 1932, 'F', 2660), +(39531, 'Julia', 1932, 'F', 2658), +(39532, 'Billie', 1932, 'F', 2635), +(39533, 'Janice', 1932, 'F', 2627), +(39534, 'Katherine', 1932, 'F', 2590), +(39535, 'Sylvia', 1932, 'F', 2566), +(39536, 'Elsie', 1932, 'F', 2554), +(39537, 'Eva', 1932, 'F', 2521), +(39538, 'Constance', 1932, 'F', 2492), +(39539, 'Rosemary', 1932, 'F', 2483), +(39540, 'Bertha', 1932, 'F', 2476), +(39541, 'Margie', 1932, 'F', 2424), +(39542, 'Jo', 1932, 'F', 2390), +(39543, 'Ellen', 1932, 'F', 2369), +(39544, 'Ida', 1932, 'F', 2318), +(39545, 'Jeanette', 1932, 'F', 2288), +(39546, 'Kathryn', 1932, 'F', 2263), +(39547, 'Ella', 1932, 'F', 2256), +(39548, 'Roberta', 1932, 'F', 2243), +(39549, 'Maxine', 1932, 'F', 2222), +(39550, 'Lillie', 1932, 'F', 2218), +(39551, 'Jeanne', 1932, 'F', 2130), +(39552, 'Bobbie', 1932, 'F', 2127), +(39553, 'Eileen', 1932, 'F', 2120), +(39554, 'Agnes', 1932, 'F', 2117), +(39555, 'Anita', 1932, 'F', 2097), +(39556, 'Bessie', 1932, 'F', 2094), +(39557, 'Georgia', 1932, 'F', 2063), +(39558, 'Alma', 1932, 'F', 2045), +(39559, 'Maria', 1932, 'F', 2042), +(39560, 'Vera', 1932, 'F', 2023), +(39561, 'Darlene', 1932, 'F', 2019), +(39562, 'Nellie', 1932, 'F', 1977), +(39563, 'Gertrude', 1932, 'F', 1967), +(39564, 'Mattie', 1932, 'F', 1918), +(39565, 'Jessie', 1932, 'F', 1896), +(39566, 'Christine', 1932, 'F', 1861), +(39567, 'Lucy', 1932, 'F', 1830), +(39568, 'Minnie', 1932, 'F', 1808), +(39569, 'Sara', 1932, 'F', 1759), +(39570, 'Rosa', 1932, 'F', 1756), +(39571, 'Violet', 1932, 'F', 1694), +(39572, 'Velma', 1932, 'F', 1691), +(39573, 'Leona', 1932, 'F', 1669), +(39574, 'Myrtle', 1932, 'F', 1669), +(39575, 'Viola', 1932, 'F', 1668), +(39576, 'Geneva', 1932, 'F', 1633), +(39577, 'Pearl', 1932, 'F', 1618), +(39578, 'Claire', 1932, 'F', 1508), +(39579, 'Sue', 1932, 'F', 1507), +(39580, 'Mae', 1932, 'F', 1454), +(39581, 'Diane', 1932, 'F', 1439), +(39582, 'Dora', 1932, 'F', 1434), +(39583, 'Judith', 1932, 'F', 1433), +(39584, 'Carrie', 1932, 'F', 1395), +(39585, 'Eunice', 1932, 'F', 1376), +(39586, 'Joy', 1932, 'F', 1361), +(39587, 'Naomi', 1932, 'F', 1356), +(39588, 'Harriet', 1932, 'F', 1350), +(39589, 'Stella', 1932, 'F', 1342), +(39590, 'Carole', 1932, 'F', 1315), +(39591, 'Rosie', 1932, 'F', 1314), +(39592, 'Connie', 1932, 'F', 1305), +(39593, 'Alberta', 1932, 'F', 1283), +(39594, 'Rachel', 1932, 'F', 1255), +(39595, 'Lena', 1932, 'F', 1253), +(39596, 'Lula', 1932, 'F', 1228), +(39597, 'Susan', 1932, 'F', 1227), +(39598, 'Faye', 1932, 'F', 1222), +(39599, 'Yvonne', 1932, 'F', 1214), +(39600, 'Lola', 1932, 'F', 1194), +(39601, 'Jennie', 1932, 'F', 1192), +(39602, 'Rebecca', 1932, 'F', 1189), +(39603, 'Fannie', 1932, 'F', 1175), +(39604, 'Verna', 1932, 'F', 1174), +(39605, 'Erma', 1932, 'F', 1166), +(39606, 'Genevieve', 1932, 'F', 1148), +(39607, 'Emily', 1932, 'F', 1146), +(39608, 'Cora', 1932, 'F', 1133), +(39609, 'Charlene', 1932, 'F', 1123), +(39610, 'Mabel', 1932, 'F', 1110), +(39611, 'Hilda', 1932, 'F', 1106), +(39612, 'Rosalie', 1932, 'F', 1103), +(39613, 'Caroline', 1932, 'F', 1102), +(39614, 'Jeannette', 1932, 'F', 1080), +(39615, 'Daisy', 1932, 'F', 1078), +(39616, 'Pat', 1932, 'F', 1061), +(39617, 'Hattie', 1932, 'F', 1060), +(39618, 'Opal', 1932, 'F', 1049), +(39619, 'Ramona', 1932, 'F', 1048), +(39620, 'Muriel', 1932, 'F', 1045), +(39621, 'Bettie', 1932, 'F', 1000), +(39622, 'Marguerite', 1932, 'F', 1000), +(39623, 'Beulah', 1932, 'F', 999), +(39624, 'Inez', 1932, 'F', 988), +(39625, 'Ada', 1932, 'F', 983), +(39626, 'Nina', 1932, 'F', 975), +(39627, 'Mamie', 1932, 'F', 972), +(39628, 'Nora', 1932, 'F', 971), +(39629, 'Johnnie', 1932, 'F', 962), +(39630, 'Marcia', 1932, 'F', 950), +(39631, 'Blanche', 1932, 'F', 949), +(39632, 'Lila', 1932, 'F', 948), +(39633, 'Irma', 1932, 'F', 947), +(39634, 'Imogene', 1932, 'F', 943), +(39635, 'Marcella', 1932, 'F', 943), +(39636, 'Deloris', 1932, 'F', 932), +(39637, 'Gwendolyn', 1932, 'F', 928), +(39638, 'Laverne', 1932, 'F', 927), +(39639, 'Mable', 1932, 'F', 908), +(39640, 'Miriam', 1932, 'F', 904), +(39641, 'Madeline', 1932, 'F', 900), +(39642, 'Flora', 1932, 'F', 890), +(39643, 'Carmen', 1932, 'F', 886), +(39644, 'Maureen', 1932, 'F', 886), +(39645, 'Ernestine', 1932, 'F', 873), +(39646, 'Melba', 1932, 'F', 872), +(39647, 'Eloise', 1932, 'F', 868), +(39648, 'Rosemarie', 1932, 'F', 866), +(39649, 'Eula', 1932, 'F', 858), +(39650, 'Teresa', 1932, 'F', 854), +(39651, 'Iris', 1932, 'F', 850), +(39652, 'Della', 1932, 'F', 841), +(39653, 'Patty', 1932, 'F', 839), +(39654, 'Suzanne', 1932, 'F', 828), +(39655, 'Sandra', 1932, 'F', 822), +(39656, 'Susie', 1932, 'F', 803), +(39657, 'Antoinette', 1932, 'F', 787), +(39658, 'Linda', 1932, 'F', 775), +(39659, 'Bette', 1932, 'F', 772), +(39660, 'Lorene', 1932, 'F', 762), +(39661, 'Katie', 1932, 'F', 753), +(39662, 'Estelle', 1932, 'F', 747), +(39663, 'Maggie', 1932, 'F', 734), +(39664, 'Priscilla', 1932, 'F', 728), +(39665, 'Regina', 1932, 'F', 714); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(39666, 'Sharon', 1932, 'F', 709), +(39667, 'Colleen', 1932, 'F', 708), +(39668, 'Janie', 1932, 'F', 705), +(39669, 'Bettye', 1932, 'F', 694), +(39670, 'Nadine', 1932, 'F', 690), +(39671, 'Annette', 1932, 'F', 683), +(39672, 'Sadie', 1932, 'F', 681), +(39673, 'Essie', 1932, 'F', 677), +(39674, 'Jackie', 1932, 'F', 670), +(39675, 'Diana', 1932, 'F', 660), +(39676, 'Paula', 1932, 'F', 659), +(39677, 'Jacquelyn', 1932, 'F', 658), +(39678, 'Kay', 1932, 'F', 658), +(39679, 'Fay', 1932, 'F', 656), +(39680, 'Reba', 1932, 'F', 656), +(39681, 'Ina', 1932, 'F', 654), +(39682, 'Amelia', 1932, 'F', 636), +(39683, 'Maryann', 1932, 'F', 636), +(39684, 'Cynthia', 1932, 'F', 635), +(39685, 'Lydia', 1932, 'F', 631), +(39686, 'Dixie', 1932, 'F', 629), +(39687, 'Henrietta', 1932, 'F', 625), +(39688, 'Mona', 1932, 'F', 613), +(39689, 'Olga', 1932, 'F', 613), +(39690, 'Sheila', 1932, 'F', 609), +(39691, 'Angela', 1932, 'F', 608), +(39692, 'Ollie', 1932, 'F', 606), +(39693, 'Angelina', 1932, 'F', 605), +(39694, 'Freda', 1932, 'F', 603), +(39695, 'Marianne', 1932, 'F', 602), +(39696, 'Nettie', 1932, 'F', 598), +(39697, 'Victoria', 1932, 'F', 593), +(39698, 'Judy', 1932, 'F', 588), +(39699, 'Natalie', 1932, 'F', 580), +(39700, 'Dorthy', 1932, 'F', 577), +(39701, 'Winifred', 1932, 'F', 571), +(39702, 'Veronica', 1932, 'F', 563), +(39703, 'Jewel', 1932, 'F', 562), +(39704, 'Myra', 1932, 'F', 560), +(39705, 'Frankie', 1932, 'F', 559), +(39706, 'Sallie', 1932, 'F', 556), +(39707, 'Ora', 1932, 'F', 555), +(39708, 'Iva', 1932, 'F', 542), +(39709, 'Lou', 1932, 'F', 540), +(39710, 'Jimmie', 1932, 'F', 522), +(39711, 'Glenna', 1932, 'F', 515), +(39712, 'Willa', 1932, 'F', 515), +(39713, 'Isabel', 1932, 'F', 514), +(39714, 'Etta', 1932, 'F', 505), +(39715, 'Lela', 1932, 'F', 504), +(39716, 'Fern', 1932, 'F', 502), +(39717, 'Ola', 1932, 'F', 498), +(39718, 'Luella', 1932, 'F', 495), +(39719, 'Mavis', 1932, 'F', 494), +(39720, 'Leola', 1932, 'F', 489), +(39721, 'Adele', 1932, 'F', 487), +(39722, 'Olive', 1932, 'F', 484), +(39723, 'Nell', 1932, 'F', 483), +(39724, 'Lenora', 1932, 'F', 482), +(39725, 'Angeline', 1932, 'F', 470), +(39726, 'Cecilia', 1932, 'F', 469), +(39727, 'Nelda', 1932, 'F', 468), +(39728, 'Jewell', 1932, 'F', 467), +(39729, 'Adeline', 1932, 'F', 462), +(39730, 'Lottie', 1932, 'F', 461), +(39731, 'Clarice', 1932, 'F', 459), +(39732, 'Cleo', 1932, 'F', 455), +(39733, 'Lee', 1932, 'F', 455), +(39734, 'Earline', 1932, 'F', 454), +(39735, 'Gracie', 1932, 'F', 454), +(39736, 'Helene', 1932, 'F', 454), +(39737, 'Addie', 1932, 'F', 446), +(39738, 'Estella', 1932, 'F', 445), +(39739, 'Dorothea', 1932, 'F', 444), +(39740, 'May', 1932, 'F', 440), +(39741, 'Bernadine', 1932, 'F', 438), +(39742, 'Jeannine', 1932, 'F', 437), +(39743, 'Cecelia', 1932, 'F', 434), +(39744, 'Ila', 1932, 'F', 428), +(39745, 'Dona', 1932, 'F', 424), +(39746, 'Myrna', 1932, 'F', 422), +(39747, 'Lavonne', 1932, 'F', 419), +(39748, 'Rhoda', 1932, 'F', 419), +(39749, 'Goldie', 1932, 'F', 418), +(39750, 'Effie', 1932, 'F', 417), +(39751, 'Polly', 1932, 'F', 417), +(39752, 'Lizzie', 1932, 'F', 416), +(39753, 'Alta', 1932, 'F', 415), +(39754, 'Elva', 1932, 'F', 412), +(39755, 'Elvira', 1932, 'F', 409), +(39756, 'Greta', 1932, 'F', 400), +(39757, 'Rosetta', 1932, 'F', 400), +(39758, 'Olivia', 1932, 'F', 399), +(39759, 'Elnora', 1932, 'F', 398), +(39760, 'Francis', 1932, 'F', 398), +(39761, 'Therese', 1932, 'F', 398), +(39762, 'Celia', 1932, 'F', 386), +(39763, 'Lorna', 1932, 'F', 386), +(39764, 'Carmela', 1932, 'F', 384), +(39765, 'Sophie', 1932, 'F', 378), +(39766, 'Elinor', 1932, 'F', 377), +(39767, 'Lupe', 1932, 'F', 375), +(39768, 'Jerry', 1932, 'F', 374), +(39769, 'Lenore', 1932, 'F', 373), +(39770, 'Robbie', 1932, 'F', 371), +(39771, 'Lucile', 1932, 'F', 368), +(39772, 'Isabelle', 1932, 'F', 364), +(39773, 'Ruthie', 1932, 'F', 364), +(39774, 'Dolly', 1932, 'F', 363), +(39775, 'Annabelle', 1932, 'F', 356), +(39776, 'Gail', 1932, 'F', 354), +(39777, 'Arline', 1932, 'F', 350), +(39778, 'Betsy', 1932, 'F', 349), +(39779, 'Virgie', 1932, 'F', 346), +(39780, 'Rena', 1932, 'F', 344), +(39781, 'Eugenia', 1932, 'F', 342), +(39782, 'Amy', 1932, 'F', 341), +(39783, 'Faith', 1932, 'F', 340), +(39784, 'Beverley', 1932, 'F', 337), +(39785, 'Joanna', 1932, 'F', 337), +(39786, 'Claudia', 1932, 'F', 330), +(39787, 'Tommie', 1932, 'F', 330), +(39788, 'Pearlie', 1932, 'F', 329), +(39789, 'Winnie', 1932, 'F', 328), +(39790, 'Corinne', 1932, 'F', 326), +(39791, 'Eleanore', 1932, 'F', 326), +(39792, 'Robert', 1932, 'F', 326), +(39793, 'Selma', 1932, 'F', 325), +(39794, 'Dawn', 1932, 'F', 320), +(39795, 'James', 1932, 'F', 320), +(39796, 'Guadalupe', 1932, 'F', 317), +(39797, 'Margery', 1932, 'F', 316), +(39798, 'Neva', 1932, 'F', 316), +(39799, 'Renee', 1932, 'F', 315), +(39800, 'Bernadette', 1932, 'F', 314), +(39801, 'Molly', 1932, 'F', 314), +(39802, 'Nannie', 1932, 'F', 307), +(39803, 'Wilda', 1932, 'F', 307), +(39804, 'Janis', 1932, 'F', 306), +(39805, 'Leila', 1932, 'F', 305), +(39806, 'Karen', 1932, 'F', 303), +(39807, 'Zelma', 1932, 'F', 303), +(39808, 'Eddie', 1932, 'F', 302), +(39809, 'Earnestine', 1932, 'F', 300), +(39810, 'Harriett', 1932, 'F', 300), +(39811, 'Nola', 1932, 'F', 300), +(39812, 'Elma', 1932, 'F', 299), +(39813, 'John', 1932, 'F', 298), +(39814, 'Sondra', 1932, 'F', 297), +(39815, 'Delia', 1932, 'F', 296), +(39816, 'Doreen', 1932, 'F', 296), +(39817, 'Leah', 1932, 'F', 295), +(39818, 'Melva', 1932, 'F', 295), +(39819, 'Rosella', 1932, 'F', 295), +(39820, 'Dollie', 1932, 'F', 294), +(39821, 'Millie', 1932, 'F', 293), +(39822, 'Aileen', 1932, 'F', 291), +(39823, 'Josie', 1932, 'F', 291), +(39824, 'Lora', 1932, 'F', 290), +(39825, 'Flossie', 1932, 'F', 289), +(39826, 'Glenda', 1932, 'F', 288), +(39827, 'Earlene', 1932, 'F', 284), +(39828, 'Mollie', 1932, 'F', 283), +(39829, 'Loraine', 1932, 'F', 282), +(39830, 'Reva', 1932, 'F', 280), +(39831, 'Odessa', 1932, 'F', 278), +(39832, 'Beth', 1932, 'F', 276), +(39833, 'Valerie', 1932, 'F', 276), +(39834, 'Carmella', 1932, 'F', 274), +(39835, 'Avis', 1932, 'F', 270), +(39836, 'Frieda', 1932, 'F', 270), +(39837, 'Concetta', 1932, 'F', 268), +(39838, 'Sybil', 1932, 'F', 268), +(39839, 'Corrine', 1932, 'F', 267), +(39840, 'Cornelia', 1932, 'F', 266), +(39841, 'Louella', 1932, 'F', 266), +(39842, 'Julie', 1932, 'F', 265), +(39843, 'Nona', 1932, 'F', 262), +(39844, 'Yolanda', 1932, 'F', 262), +(39845, 'Edwina', 1932, 'F', 259), +(39846, 'Aurora', 1932, 'F', 256), +(39847, 'Janette', 1932, 'F', 256), +(39848, 'Margarita', 1932, 'F', 254), +(39849, 'Alicia', 1932, 'F', 251), +(39850, 'Christina', 1932, 'F', 251), +(39851, 'Matilda', 1932, 'F', 251), +(39852, 'Bobby', 1932, 'F', 250), +(39853, 'Letha', 1932, 'F', 250), +(39854, 'Adrienne', 1932, 'F', 248), +(39855, 'Queen', 1932, 'F', 248), +(39856, 'Corine', 1932, 'F', 247), +(39857, 'Consuelo', 1932, 'F', 246), +(39858, 'Lily', 1932, 'F', 246), +(39859, 'Joe', 1932, 'F', 245), +(39860, 'Johanna', 1932, 'F', 245), +(39861, 'Lynn', 1932, 'F', 244), +(39862, 'Marlys', 1932, 'F', 241), +(39863, 'Eliza', 1932, 'F', 238), +(39864, 'Gwen', 1932, 'F', 238), +(39865, 'Bennie', 1932, 'F', 237), +(39866, 'Ophelia', 1932, 'F', 237), +(39867, 'Cecile', 1932, 'F', 235), +(39868, 'William', 1932, 'F', 235), +(39869, 'Gretchen', 1932, 'F', 233), +(39870, 'Jannie', 1932, 'F', 233), +(39871, 'Angie', 1932, 'F', 232), +(39872, 'Georgie', 1932, 'F', 231), +(39873, 'Hannah', 1932, 'F', 231), +(39874, 'Alyce', 1932, 'F', 228), +(39875, 'Bertie', 1932, 'F', 228), +(39876, 'Florine', 1932, 'F', 228), +(39877, 'Clare', 1932, 'F', 227), +(39878, 'Bonita', 1932, 'F', 226), +(39879, 'Antonia', 1932, 'F', 225), +(39880, 'Elouise', 1932, 'F', 225), +(39881, 'Gayle', 1932, 'F', 224), +(39882, 'Lilly', 1932, 'F', 224), +(39883, 'Helena', 1932, 'F', 223), +(39884, 'Ilene', 1932, 'F', 222), +(39885, 'Ima', 1932, 'F', 222), +(39886, 'Aline', 1932, 'F', 220), +(39887, 'Evangeline', 1932, 'F', 217), +(39888, 'Gay', 1932, 'F', 217), +(39889, 'Allie', 1932, 'F', 216), +(39890, 'Monica', 1932, 'F', 215), +(39891, 'Amanda', 1932, 'F', 213), +(39892, 'Pansy', 1932, 'F', 210), +(39893, 'Deborah', 1932, 'F', 208), +(39894, 'Noreen', 1932, 'F', 208), +(39895, 'Lessie', 1932, 'F', 206), +(39896, 'Freddie', 1932, 'F', 205), +(39897, 'Rae', 1932, 'F', 205), +(39898, 'Lorine', 1932, 'F', 200), +(39899, 'Marylou', 1932, 'F', 200), +(39900, 'Merle', 1932, 'F', 200), +(39901, 'Jenny', 1932, 'F', 199), +(39902, 'Beryl', 1932, 'F', 198), +(39903, 'Lorena', 1932, 'F', 198), +(39904, 'Marietta', 1932, 'F', 198), +(39905, 'Sonia', 1932, 'F', 198), +(39906, 'Winona', 1932, 'F', 198), +(39907, 'Carla', 1932, 'F', 197), +(39908, 'Charles', 1932, 'F', 197), +(39909, 'Zelda', 1932, 'F', 197), +(39910, 'Emogene', 1932, 'F', 196), +(39911, 'Hope', 1932, 'F', 195), +(39912, 'Callie', 1932, 'F', 194), +(39913, 'Iona', 1932, 'F', 194), +(39914, 'Elena', 1932, 'F', 193), +(39915, 'Lelia', 1932, 'F', 193), +(39916, 'Maude', 1932, 'F', 192), +(39917, 'Madge', 1932, 'F', 191), +(39918, 'Leota', 1932, 'F', 190), +(39919, 'Nita', 1932, 'F', 190), +(39920, 'Roxie', 1932, 'F', 190), +(39921, 'Gilda', 1932, 'F', 188), +(39922, 'Delphine', 1932, 'F', 187), +(39923, 'Rosalyn', 1932, 'F', 187), +(39924, 'Mercedes', 1932, 'F', 186), +(39925, 'Roslyn', 1932, 'F', 186), +(39926, 'Ardis', 1932, 'F', 184), +(39927, 'Dessie', 1932, 'F', 184), +(39928, 'Lucia', 1932, 'F', 184), +(39929, 'Dorris', 1932, 'F', 183), +(39930, 'Francine', 1932, 'F', 183), +(39931, 'Retha', 1932, 'F', 183), +(39932, 'Claudette', 1932, 'F', 180), +(39933, 'Rowena', 1932, 'F', 180), +(39934, 'Allene', 1932, 'F', 178), +(39935, 'Katharine', 1932, 'F', 178), +(39936, 'Vernell', 1932, 'F', 178), +(39937, 'Marilynn', 1932, 'F', 177), +(39938, 'Carlene', 1932, 'F', 175), +(39939, 'Berniece', 1932, 'F', 174), +(39940, 'George', 1932, 'F', 174), +(39941, 'Alene', 1932, 'F', 171), +(39942, 'Doretha', 1932, 'F', 171), +(39943, 'Iola', 1932, 'F', 169), +(39944, 'Rosalee', 1932, 'F', 169), +(39945, 'Camille', 1932, 'F', 166), +(39946, 'Dortha', 1932, 'F', 165), +(39947, 'Leatrice', 1932, 'F', 165), +(39948, 'Twila', 1932, 'F', 165), +(39949, 'Althea', 1932, 'F', 164), +(39950, 'Oma', 1932, 'F', 164), +(39951, 'Ardith', 1932, 'F', 163), +(39952, 'Ester', 1932, 'F', 163), +(39953, 'Madelyn', 1932, 'F', 163), +(39954, 'Charlie', 1932, 'F', 161), +(39955, 'Belva', 1932, 'F', 160), +(39956, 'Claudine', 1932, 'F', 160), +(39957, 'Reta', 1932, 'F', 160), +(39958, 'Verla', 1932, 'F', 160), +(39959, 'Birdie', 1932, 'F', 159), +(39960, 'Leta', 1932, 'F', 159), +(39961, 'Zella', 1932, 'F', 159), +(39962, 'Delma', 1932, 'F', 157), +(39963, 'Jaunita', 1932, 'F', 157), +(39964, 'Ione', 1932, 'F', 156), +(39965, 'Marjory', 1932, 'F', 155), +(39966, 'Maudie', 1932, 'F', 155), +(39967, 'Edythe', 1932, 'F', 154), +(39968, 'Gussie', 1932, 'F', 154), +(39969, 'Hester', 1932, 'F', 154), +(39970, 'Vada', 1932, 'F', 154), +(39971, 'Velda', 1932, 'F', 154), +(39972, 'Germaine', 1932, 'F', 152), +(39973, 'Gerry', 1932, 'F', 152), +(39974, 'Millicent', 1932, 'F', 150), +(39975, 'Terry', 1932, 'F', 149), +(39976, 'Pearline', 1932, 'F', 147), +(39977, 'Dianne', 1932, 'F', 146), +(39978, 'Leora', 1932, 'F', 146), +(39979, 'Minerva', 1932, 'F', 146), +(39980, 'Phoebe', 1932, 'F', 146), +(39981, 'Ava', 1932, 'F', 145), +(39982, 'Margret', 1932, 'F', 144), +(39983, 'Maurine', 1932, 'F', 144), +(39984, 'Syble', 1932, 'F', 144), +(39985, 'Billy', 1932, 'F', 143), +(39986, 'Esperanza', 1932, 'F', 143), +(39987, 'Ladonna', 1932, 'F', 143), +(39988, 'Louisa', 1932, 'F', 142), +(39989, 'Petra', 1932, 'F', 141), +(39990, 'Roma', 1932, 'F', 140), +(39991, 'Hellen', 1932, 'F', 139), +(39992, 'Isabell', 1932, 'F', 139), +(39993, 'Lavon', 1932, 'F', 139), +(39994, 'Tillie', 1932, 'F', 139), +(39995, 'Wilhelmina', 1932, 'F', 139), +(39996, 'Richard', 1932, 'F', 138), +(39997, 'Alva', 1932, 'F', 137), +(39998, 'Delois', 1932, 'F', 137), +(39999, 'Madonna', 1932, 'F', 137), +(40000, 'Peggie', 1932, 'F', 137), +(40001, 'Sammie', 1932, 'F', 135), +(40002, 'Vernice', 1932, 'F', 135), +(40003, 'Marlyn', 1932, 'F', 134), +(40004, 'Celestine', 1932, 'F', 133), +(40005, 'Dottie', 1932, 'F', 133), +(40006, 'Hallie', 1932, 'F', 133), +(40007, 'Philomena', 1932, 'F', 133), +(40008, 'Freida', 1932, 'F', 132), +(40009, 'Josefina', 1932, 'F', 132), +(40010, 'Nan', 1932, 'F', 132), +(40011, 'Sophia', 1932, 'F', 132), +(40012, 'Stephanie', 1932, 'F', 131), +(40013, 'Susanne', 1932, 'F', 131), +(40014, 'Valeria', 1932, 'F', 131), +(40015, 'Adelaide', 1932, 'F', 130), +(40016, 'Elsa', 1932, 'F', 130), +(40017, 'Angelita', 1932, 'F', 129), +(40018, 'Dovie', 1932, 'F', 129), +(40019, 'Elise', 1932, 'F', 129), +(40020, 'Isabella', 1932, 'F', 129), +(40021, 'Lucinda', 1932, 'F', 129), +(40022, 'Berta', 1932, 'F', 127), +(40023, 'Kitty', 1932, 'F', 126), +(40024, 'Pattie', 1932, 'F', 126), +(40025, 'Verda', 1932, 'F', 126), +(40026, 'Donald', 1932, 'F', 125), +(40027, 'Harriette', 1932, 'F', 125), +(40028, 'Justine', 1932, 'F', 125), +(40029, 'Rosalind', 1932, 'F', 125), +(40030, 'Sherry', 1932, 'F', 125), +(40031, 'Elda', 1932, 'F', 124), +(40032, 'Andrea', 1932, 'F', 123), +(40033, 'Celeste', 1932, 'F', 123), +(40034, 'Enid', 1932, 'F', 123), +(40035, 'Erna', 1932, 'F', 123), +(40036, 'Tina', 1932, 'F', 123), +(40037, 'Shirlee', 1932, 'F', 121), +(40038, 'Lavern', 1932, 'F', 120), +(40039, 'Treva', 1932, 'F', 120), +(40040, 'Elisa', 1932, 'F', 119), +(40041, 'Jan', 1932, 'F', 119), +(40042, 'Laurel', 1932, 'F', 119), +(40043, 'Manuela', 1932, 'F', 119), +(40044, 'Augusta', 1932, 'F', 118), +(40045, 'Sonya', 1932, 'F', 118), +(40046, 'Denise', 1932, 'F', 117), +(40047, 'Gene', 1932, 'F', 117), +(40048, 'Gertie', 1932, 'F', 117), +(40049, 'Jayne', 1932, 'F', 117), +(40050, 'Rhea', 1932, 'F', 117), +(40051, 'Aurelia', 1932, 'F', 116), +(40052, 'Jeanine', 1932, 'F', 116), +(40053, 'Lona', 1932, 'F', 116), +(40054, 'Lue', 1932, 'F', 116), +(40055, 'Lura', 1932, 'F', 116), +(40056, 'Dorene', 1932, 'F', 115), +(40057, 'Gearldine', 1932, 'F', 115), +(40058, 'Lauretta', 1932, 'F', 115), +(40059, 'Ouida', 1932, 'F', 115), +(40060, 'Theodora', 1932, 'F', 115), +(40061, 'Una', 1932, 'F', 115), +(40062, 'Elisabeth', 1932, 'F', 114), +(40063, 'Juana', 1932, 'F', 114), +(40064, 'Juliette', 1932, 'F', 114), +(40065, 'Lettie', 1932, 'F', 114), +(40066, 'Madeleine', 1932, 'F', 114), +(40067, 'Bobbye', 1932, 'F', 113), +(40068, 'Camilla', 1932, 'F', 113), +(40069, 'Dorcas', 1932, 'F', 113), +(40070, 'Magdalene', 1932, 'F', 113), +(40071, 'Oleta', 1932, 'F', 113), +(40072, 'Carolina', 1932, 'F', 112), +(40073, 'Florene', 1932, 'F', 111), +(40074, 'Francisca', 1932, 'F', 111), +(40075, 'Marianna', 1932, 'F', 111), +(40076, 'Jeannie', 1932, 'F', 110), +(40077, 'Myrtis', 1932, 'F', 110), +(40078, 'Caryl', 1932, 'F', 109), +(40079, 'Darleen', 1932, 'F', 109), +(40080, 'Larue', 1932, 'F', 109), +(40081, 'Donnie', 1932, 'F', 108), +(40082, 'Eldora', 1932, 'F', 108), +(40083, 'Novella', 1932, 'F', 108), +(40084, 'Carmel', 1932, 'F', 107), +(40085, 'Doloris', 1932, 'F', 107), +(40086, 'Elvera', 1932, 'F', 107), +(40087, 'Jeraldine', 1932, 'F', 107), +(40088, 'Marylin', 1932, 'F', 107), +(40089, 'Socorro', 1932, 'F', 107), +(40090, 'Charline', 1932, 'F', 106), +(40091, 'Charmaine', 1932, 'F', 106), +(40092, 'Roselyn', 1932, 'F', 106), +(40093, 'Vesta', 1932, 'F', 106), +(40094, 'Ofelia', 1932, 'F', 105), +(40095, 'Alvina', 1932, 'F', 104), +(40096, 'Arleen', 1932, 'F', 104), +(40097, 'Catharine', 1932, 'F', 104), +(40098, 'Johnie', 1932, 'F', 104), +(40099, 'Joseph', 1932, 'F', 104), +(40100, 'Linnie', 1932, 'F', 104), +(40101, 'Lucretia', 1932, 'F', 104), +(40102, 'Alfreda', 1932, 'F', 103), +(40103, 'Marvel', 1932, 'F', 103), +(40104, 'Mina', 1932, 'F', 103), +(40105, 'Norene', 1932, 'F', 103), +(40106, 'Theda', 1932, 'F', 103), +(40107, 'Cherry', 1932, 'F', 102), +(40108, 'Nedra', 1932, 'F', 102), +(40109, 'Yvette', 1932, 'F', 102), +(40110, 'Adela', 1932, 'F', 101), +(40111, 'Garnet', 1932, 'F', 101), +(40112, 'Georgiana', 1932, 'F', 101), +(40113, 'Margarett', 1932, 'F', 101), +(40114, 'Ursula', 1932, 'F', 101), +(40115, 'Albertha', 1932, 'F', 100), +(40116, 'Margarette', 1932, 'F', 100), +(40117, 'Vida', 1932, 'F', 100), +(40118, 'Robert', 1932, 'M', 59248), +(40119, 'James', 1932, 'M', 51922), +(40120, 'John', 1932, 'M', 48596), +(40121, 'William', 1932, 'M', 42108), +(40122, 'Richard', 1932, 'M', 31790), +(40123, 'Charles', 1932, 'M', 31088), +(40124, 'Donald', 1932, 'M', 29770), +(40125, 'George', 1932, 'M', 20434), +(40126, 'Joseph', 1932, 'M', 18556), +(40127, 'Thomas', 1932, 'M', 16827), +(40128, 'Edward', 1932, 'M', 15182), +(40129, 'David', 1932, 'M', 12135), +(40130, 'Paul', 1932, 'M', 12071), +(40131, 'Kenneth', 1932, 'M', 11739), +(40132, 'Frank', 1932, 'M', 11489), +(40133, 'Ronald', 1932, 'M', 11135), +(40134, 'Jack', 1932, 'M', 10711), +(40135, 'Harold', 1932, 'M', 10425), +(40136, 'Raymond', 1932, 'M', 10347), +(40137, 'Billy', 1932, 'M', 9428), +(40138, 'Walter', 1932, 'M', 8661), +(40139, 'Eugene', 1932, 'M', 8043), +(40140, 'Henry', 1932, 'M', 7464), +(40141, 'Gerald', 1932, 'M', 7342), +(40142, 'Arthur', 1932, 'M', 6912), +(40143, 'Albert', 1932, 'M', 6862), +(40144, 'Ralph', 1932, 'M', 6721), +(40145, 'Carl', 1932, 'M', 6708), +(40146, 'Joe', 1932, 'M', 6698), +(40147, 'Bobby', 1932, 'M', 6592), +(40148, 'Willie', 1932, 'M', 6549), +(40149, 'Harry', 1932, 'M', 5703), +(40150, 'Fred', 1932, 'M', 5517), +(40151, 'Jerry', 1932, 'M', 5301), +(40152, 'Lawrence', 1932, 'M', 5297), +(40153, 'Howard', 1932, 'M', 5293), +(40154, 'Norman', 1932, 'M', 5267), +(40155, 'Roy', 1932, 'M', 5233), +(40156, 'Louis', 1932, 'M', 5135), +(40157, 'Clarence', 1932, 'M', 4893), +(40158, 'Earl', 1932, 'M', 4820), +(40159, 'Daniel', 1932, 'M', 4448), +(40160, 'Francis', 1932, 'M', 4385), +(40161, 'Herbert', 1932, 'M', 4369), +(40162, 'Anthony', 1932, 'M', 4224), +(40163, 'Marvin', 1932, 'M', 4187), +(40164, 'Ernest', 1932, 'M', 4162), +(40165, 'Leonard', 1932, 'M', 4104), +(40166, 'Alfred', 1932, 'M', 3899), +(40167, 'Roger', 1932, 'M', 3786), +(40168, 'Melvin', 1932, 'M', 3774), +(40169, 'Stanley', 1932, 'M', 3760), +(40170, 'Leroy', 1932, 'M', 3678), +(40171, 'Michael', 1932, 'M', 3609), +(40172, 'Don', 1932, 'M', 3454), +(40173, 'Samuel', 1932, 'M', 3406), +(40174, 'Wayne', 1932, 'M', 3389), +(40175, 'Bill', 1932, 'M', 3358), +(40176, 'Ray', 1932, 'M', 3258), +(40177, 'Bernard', 1932, 'M', 3251), +(40178, 'Dale', 1932, 'M', 3139), +(40179, 'Peter', 1932, 'M', 3130), +(40180, 'Russell', 1932, 'M', 3021), +(40181, 'Gene', 1932, 'M', 2945), +(40182, 'Larry', 1932, 'M', 2822), +(40183, 'Franklin', 1932, 'M', 2758), +(40184, 'Theodore', 1932, 'M', 2673), +(40185, 'Floyd', 1932, 'M', 2668), +(40186, 'Andrew', 1932, 'M', 2645), +(40187, 'Philip', 1932, 'M', 2622), +(40188, 'Lloyd', 1932, 'M', 2586), +(40189, 'Edwin', 1932, 'M', 2569), +(40190, 'Frederick', 1932, 'M', 2500), +(40191, 'Leo', 1932, 'M', 2497), +(40192, 'Jimmie', 1932, 'M', 2471), +(40193, 'Jimmy', 1932, 'M', 2460), +(40194, 'Glenn', 1932, 'M', 2435), +(40195, 'Vernon', 1932, 'M', 2429), +(40196, 'Bob', 1932, 'M', 2427), +(40197, 'Allen', 1932, 'M', 2418), +(40198, 'Gordon', 1932, 'M', 2407), +(40199, 'Clyde', 1932, 'M', 2319), +(40200, 'Leon', 1932, 'M', 2297), +(40201, 'Douglas', 1932, 'M', 2285), +(40202, 'Clifford', 1932, 'M', 2284), +(40203, 'Lee', 1932, 'M', 2283), +(40204, 'Alvin', 1932, 'M', 2274), +(40205, 'Martin', 1932, 'M', 2254), +(40206, 'Herman', 1932, 'M', 2192), +(40207, 'Charlie', 1932, 'M', 2128), +(40208, 'Eddie', 1932, 'M', 2112), +(40209, 'Lewis', 1932, 'M', 2111), +(40210, 'Vincent', 1932, 'M', 2067), +(40211, 'Elmer', 1932, 'M', 2056), +(40212, 'Harvey', 1932, 'M', 2030), +(40213, 'Johnny', 1932, 'M', 2013), +(40214, 'Gilbert', 1932, 'M', 1973), +(40215, 'Bruce', 1932, 'M', 1937), +(40216, 'Jesse', 1932, 'M', 1863), +(40217, 'Arnold', 1932, 'M', 1820), +(40218, 'Lester', 1932, 'M', 1814), +(40219, 'Warren', 1932, 'M', 1792), +(40220, 'Curtis', 1932, 'M', 1771), +(40221, 'Jim', 1932, 'M', 1763), +(40222, 'Milton', 1932, 'M', 1710), +(40223, 'Duane', 1932, 'M', 1707), +(40224, 'Jerome', 1932, 'M', 1668), +(40225, 'Cecil', 1932, 'M', 1653), +(40226, 'Tommy', 1932, 'M', 1614), +(40227, 'Victor', 1932, 'M', 1610), +(40228, 'Roland', 1932, 'M', 1607), +(40229, 'Chester', 1932, 'M', 1606), +(40230, 'Johnnie', 1932, 'M', 1601), +(40231, 'Patrick', 1932, 'M', 1579), +(40232, 'Benjamin', 1932, 'M', 1540), +(40233, 'Tom', 1932, 'M', 1539), +(40234, 'Wallace', 1932, 'M', 1527), +(40235, 'Glen', 1932, 'M', 1464), +(40236, 'Calvin', 1932, 'M', 1454), +(40237, 'Sam', 1932, 'M', 1452), +(40238, 'Dennis', 1932, 'M', 1421), +(40239, 'Maurice', 1932, 'M', 1420), +(40240, 'Dean', 1932, 'M', 1414), +(40241, 'Stephen', 1932, 'M', 1391), +(40242, 'Willard', 1932, 'M', 1356), +(40243, 'Claude', 1932, 'M', 1350), +(40244, 'Alan', 1932, 'M', 1338), +(40245, 'Hugh', 1932, 'M', 1320), +(40246, 'Manuel', 1932, 'M', 1320), +(40247, 'Jackie', 1932, 'M', 1317), +(40248, 'Jose', 1932, 'M', 1316), +(40249, 'Keith', 1932, 'M', 1315), +(40250, 'Phillip', 1932, 'M', 1314), +(40251, 'Marion', 1932, 'M', 1311), +(40252, 'Edgar', 1932, 'M', 1307), +(40253, 'Gary', 1932, 'M', 1294), +(40254, 'Jessie', 1932, 'M', 1282), +(40255, 'Oscar', 1932, 'M', 1254), +(40256, 'Virgil', 1932, 'M', 1226), +(40257, 'Everett', 1932, 'M', 1203), +(40258, 'Billie', 1932, 'M', 1192), +(40259, 'Leslie', 1932, 'M', 1180), +(40260, 'Max', 1932, 'M', 1156), +(40261, 'Wesley', 1932, 'M', 1137), +(40262, 'Junior', 1932, 'M', 1116), +(40263, 'Hubert', 1932, 'M', 1085), +(40264, 'Ted', 1932, 'M', 1068), +(40265, 'Homer', 1932, 'M', 1057), +(40266, 'Dick', 1932, 'M', 1053), +(40267, 'Lowell', 1932, 'M', 1047), +(40268, 'Delbert', 1932, 'M', 1039), +(40269, 'Wilbur', 1932, 'M', 1015), +(40270, 'Allan', 1932, 'M', 1008), +(40271, 'Darrell', 1932, 'M', 991), +(40272, 'Lyle', 1932, 'M', 969), +(40273, 'Ben', 1932, 'M', 965), +(40274, 'Luther', 1932, 'M', 960), +(40275, 'Rudolph', 1932, 'M', 958), +(40276, 'Sidney', 1932, 'M', 958), +(40277, 'Morris', 1932, 'M', 943), +(40278, 'Jay', 1932, 'M', 935), +(40279, 'Neil', 1932, 'M', 932), +(40280, 'Nicholas', 1932, 'M', 924), +(40281, 'Dan', 1932, 'M', 922), +(40282, 'Willis', 1932, 'M', 910), +(40283, 'Freddie', 1932, 'M', 909), +(40284, 'Horace', 1932, 'M', 886), +(40285, 'Bennie', 1932, 'M', 884), +(40286, 'Earnest', 1932, 'M', 876), +(40287, 'Tony', 1932, 'M', 855), +(40288, 'Roosevelt', 1932, 'M', 831), +(40289, 'Rodney', 1932, 'M', 827), +(40290, 'Carroll', 1932, 'M', 816), +(40291, 'Otis', 1932, 'M', 813), +(40292, 'Clayton', 1932, 'M', 788), +(40293, 'Nathaniel', 1932, 'M', 780), +(40294, 'Steve', 1932, 'M', 780), +(40295, 'Alexander', 1932, 'M', 775), +(40296, 'Lonnie', 1932, 'M', 761), +(40297, 'Guy', 1932, 'M', 757), +(40298, 'Salvatore', 1932, 'M', 750), +(40299, 'Oliver', 1932, 'M', 739), +(40300, 'Clifton', 1932, 'M', 738), +(40301, 'Alton', 1932, 'M', 717), +(40302, 'Archie', 1932, 'M', 716), +(40303, 'Mark', 1932, 'M', 715), +(40304, 'Julius', 1932, 'M', 712), +(40305, 'Matthew', 1932, 'M', 703), +(40306, 'Clinton', 1932, 'M', 700), +(40307, 'Bobbie', 1932, 'M', 692), +(40308, 'Edmund', 1932, 'M', 690), +(40309, 'Alex', 1932, 'M', 685), +(40310, 'Karl', 1932, 'M', 670), +(40311, 'Ira', 1932, 'M', 660), +(40312, 'Wilbert', 1932, 'M', 653), +(40313, 'Juan', 1932, 'M', 652), +(40314, 'Wendell', 1932, 'M', 650), +(40315, 'Orville', 1932, 'M', 649), +(40316, 'Ramon', 1932, 'M', 641), +(40317, 'Marshall', 1932, 'M', 639), +(40318, 'Leland', 1932, 'M', 638), +(40319, 'Dwight', 1932, 'M', 636), +(40320, 'Jesus', 1932, 'M', 635), +(40321, 'Ivan', 1932, 'M', 628), +(40322, 'Nelson', 1932, 'M', 628), +(40323, 'Joel', 1932, 'M', 624), +(40324, 'Mike', 1932, 'M', 624), +(40325, 'Myron', 1932, 'M', 621), +(40326, 'Angelo', 1932, 'M', 607), +(40327, 'Benny', 1932, 'M', 594), +(40328, 'Merle', 1932, 'M', 593), +(40329, 'Dewey', 1932, 'M', 582), +(40330, 'Rex', 1932, 'M', 577), +(40331, 'Doyle', 1932, 'M', 576), +(40332, 'Malcolm', 1932, 'M', 571), +(40333, 'Julian', 1932, 'M', 561), +(40334, 'Sylvester', 1932, 'M', 559), +(40335, 'Jacob', 1932, 'M', 557), +(40336, 'Ervin', 1932, 'M', 551), +(40337, 'Eldon', 1932, 'M', 547), +(40338, 'Antonio', 1932, 'M', 542), +(40339, 'Gerard', 1932, 'M', 542), +(40340, 'Loren', 1932, 'M', 540), +(40341, 'Troy', 1932, 'M', 540), +(40342, 'Elbert', 1932, 'M', 531), +(40343, 'Pete', 1932, 'M', 529), +(40344, 'Perry', 1932, 'M', 528), +(40345, 'Carlton', 1932, 'M', 524), +(40346, 'Conrad', 1932, 'M', 522), +(40347, 'Carlos', 1932, 'M', 520), +(40348, 'Wilfred', 1932, 'M', 520), +(40349, 'Irvin', 1932, 'M', 518), +(40350, 'Aaron', 1932, 'M', 514), +(40351, 'Barry', 1932, 'M', 513), +(40352, 'Mack', 1932, 'M', 513), +(40353, 'Rufus', 1932, 'M', 511), +(40354, 'Irving', 1932, 'M', 509), +(40355, 'Forrest', 1932, 'M', 498), +(40356, 'Lynn', 1932, 'M', 495), +(40357, 'Isaac', 1932, 'M', 492), +(40358, 'Nick', 1932, 'M', 490), +(40359, 'Fredrick', 1932, 'M', 488), +(40360, 'Nathan', 1932, 'M', 485), +(40361, 'Laurence', 1932, 'M', 479), +(40362, 'Byron', 1932, 'M', 471), +(40363, 'Norbert', 1932, 'M', 468), +(40364, 'Ruben', 1932, 'M', 468), +(40365, 'Buddy', 1932, 'M', 467), +(40366, 'Grady', 1932, 'M', 465), +(40367, 'Stuart', 1932, 'M', 464), +(40368, 'Tommie', 1932, 'M', 463), +(40369, 'Bert', 1932, 'M', 462), +(40370, 'Teddy', 1932, 'M', 462), +(40371, 'Pat', 1932, 'M', 450), +(40372, 'Loyd', 1932, 'M', 448), +(40373, 'Owen', 1932, 'M', 445), +(40374, 'Burton', 1932, 'M', 438), +(40375, 'Felix', 1932, 'M', 437), +(40376, 'Harlan', 1932, 'M', 436), +(40377, 'Ellis', 1932, 'M', 435), +(40378, 'Sherman', 1932, 'M', 433), +(40379, 'Ronnie', 1932, 'M', 432), +(40380, 'Terry', 1932, 'M', 431), +(40381, 'Percy', 1932, 'M', 429), +(40382, 'Ross', 1932, 'M', 423), +(40383, 'Sheldon', 1932, 'M', 423), +(40384, 'Danny', 1932, 'M', 422), +(40385, 'Rudy', 1932, 'M', 419), +(40386, 'Dallas', 1932, 'M', 416), +(40387, 'Johnie', 1932, 'M', 415), +(40388, 'Aubrey', 1932, 'M', 406), +(40389, 'Morton', 1932, 'M', 403), +(40390, 'Irwin', 1932, 'M', 399), +(40391, 'Harley', 1932, 'M', 396), +(40392, 'Boyd', 1932, 'M', 395), +(40393, 'Emil', 1932, 'M', 392), +(40394, 'Dave', 1932, 'M', 386), +(40395, 'Garland', 1932, 'M', 383), +(40396, 'Grover', 1932, 'M', 380), +(40397, 'Amos', 1932, 'M', 379), +(40398, 'Neal', 1932, 'M', 375), +(40399, 'Elwood', 1932, 'M', 374), +(40400, 'Reginald', 1932, 'M', 374), +(40401, 'Dominick', 1932, 'M', 367), +(40402, 'Laverne', 1932, 'M', 366), +(40403, 'August', 1932, 'M', 365), +(40404, 'Louie', 1932, 'M', 358), +(40405, 'Otto', 1932, 'M', 355), +(40406, 'Emmett', 1932, 'M', 354), +(40407, 'Sammy', 1932, 'M', 354), +(40408, 'Cornelius', 1932, 'M', 353), +(40409, 'Preston', 1932, 'M', 352), +(40410, 'Marlin', 1932, 'M', 351), +(40411, 'Wilson', 1932, 'M', 350), +(40412, 'Pedro', 1932, 'M', 347), +(40413, 'Sammie', 1932, 'M', 347), +(40414, 'Mario', 1932, 'M', 344), +(40415, 'Maynard', 1932, 'M', 343), +(40416, 'Murray', 1932, 'M', 342), +(40417, 'Francisco', 1932, 'M', 341), +(40418, 'Raul', 1932, 'M', 341), +(40419, 'Timothy', 1932, 'M', 341), +(40420, 'Darrel', 1932, 'M', 338), +(40421, 'Clark', 1932, 'M', 336), +(40422, 'Mary', 1932, 'M', 330), +(40423, 'Steven', 1932, 'M', 325), +(40424, 'Alfonso', 1932, 'M', 323), +(40425, 'Dominic', 1932, 'M', 320), +(40426, 'Merlin', 1932, 'M', 313), +(40427, 'Lionel', 1932, 'M', 311), +(40428, 'Erwin', 1932, 'M', 308), +(40429, 'Delmar', 1932, 'M', 306), +(40430, 'Royce', 1932, 'M', 306), +(40431, 'Wade', 1932, 'M', 303), +(40432, 'Donnie', 1932, 'M', 302), +(40433, 'Luis', 1932, 'M', 302), +(40434, 'Noel', 1932, 'M', 300), +(40435, 'Frankie', 1932, 'M', 299), +(40436, 'Odell', 1932, 'M', 299), +(40437, 'Elton', 1932, 'M', 297), +(40438, 'Millard', 1932, 'M', 297), +(40439, 'Woodrow', 1932, 'M', 294), +(40440, 'Edmond', 1932, 'M', 293), +(40441, 'Weldon', 1932, 'M', 291), +(40442, 'Moses', 1932, 'M', 284), +(40443, 'Thurman', 1932, 'M', 284), +(40444, 'Gregory', 1932, 'M', 283), +(40445, 'Charley', 1932, 'M', 282), +(40446, 'Darwin', 1932, 'M', 281), +(40447, 'Travis', 1932, 'M', 281), +(40448, 'Abraham', 1932, 'M', 276), +(40449, 'Austin', 1932, 'M', 274), +(40450, 'Alonzo', 1932, 'M', 271), +(40451, 'Grant', 1932, 'M', 271), +(40452, 'Kermit', 1932, 'M', 269), +(40453, 'Roberto', 1932, 'M', 269), +(40454, 'Seymour', 1932, 'M', 267), +(40455, 'Roscoe', 1932, 'M', 266), +(40456, 'Cleveland', 1932, 'M', 265), +(40457, 'Jasper', 1932, 'M', 262), +(40458, 'Ned', 1932, 'M', 261), +(40459, 'Sanford', 1932, 'M', 259), +(40460, 'Ed', 1932, 'M', 258), +(40461, 'Adam', 1932, 'M', 257), +(40462, 'Jerald', 1932, 'M', 256), +(40463, 'Norris', 1932, 'M', 256), +(40464, 'Randolph', 1932, 'M', 256), +(40465, 'Elvin', 1932, 'M', 255), +(40466, 'Harrison', 1932, 'M', 252), +(40467, 'Mitchell', 1932, 'M', 249), +(40468, 'Reuben', 1932, 'M', 249), +(40469, 'Wilmer', 1932, 'M', 247), +(40470, 'Lavern', 1932, 'M', 246), +(40471, 'Christopher', 1932, 'M', 244), +(40472, 'Merrill', 1932, 'M', 243), +(40473, 'Stewart', 1932, 'M', 243), +(40474, 'Shirley', 1932, 'M', 242), +(40475, 'Will', 1932, 'M', 242), +(40476, 'Adolph', 1932, 'M', 241), +(40477, 'Jean', 1932, 'M', 240), +(40478, 'Guadalupe', 1932, 'M', 239), +(40479, 'Clair', 1932, 'M', 238), +(40480, 'Carmen', 1932, 'M', 235), +(40481, 'Elijah', 1932, 'M', 234), +(40482, 'Wiley', 1932, 'M', 233), +(40483, 'Ollie', 1932, 'M', 229), +(40484, 'Buford', 1932, 'M', 228), +(40485, 'Lamar', 1932, 'M', 228), +(40486, 'Emory', 1932, 'M', 227), +(40487, 'Salvador', 1932, 'M', 227), +(40488, 'Sterling', 1932, 'M', 227), +(40489, 'Gale', 1932, 'M', 224), +(40490, 'Gus', 1932, 'M', 224), +(40491, 'Emanuel', 1932, 'M', 223), +(40492, 'Hollis', 1932, 'M', 223), +(40493, 'Marcus', 1932, 'M', 222), +(40494, 'Alfredo', 1932, 'M', 221), +(40495, 'Wilburn', 1932, 'M', 220), +(40496, 'Carol', 1932, 'M', 219), +(40497, 'Randall', 1932, 'M', 219), +(40498, 'Andy', 1932, 'M', 217), +(40499, 'Phil', 1932, 'M', 217), +(40500, 'Simon', 1932, 'M', 215), +(40501, 'Russel', 1932, 'M', 214), +(40502, 'Adrian', 1932, 'M', 210), +(40503, 'Armand', 1932, 'M', 209), +(40504, 'Kent', 1932, 'M', 209), +(40505, 'Winston', 1932, 'M', 209), +(40506, 'Armando', 1932, 'M', 208), +(40507, 'Chris', 1932, 'M', 208), +(40508, 'Hershel', 1932, 'M', 207), +(40509, 'Jake', 1932, 'M', 206), +(40510, 'Dudley', 1932, 'M', 204), +(40511, 'Normand', 1932, 'M', 204), +(40512, 'Mervin', 1932, 'M', 201), +(40513, 'Cleo', 1932, 'M', 200), +(40514, 'Al', 1932, 'M', 199), +(40515, 'Basil', 1932, 'M', 199), +(40516, 'Earle', 1932, 'M', 199), +(40517, 'Eric', 1932, 'M', 199), +(40518, 'Monroe', 1932, 'M', 199), +(40519, 'Miles', 1932, 'M', 197), +(40520, 'Lorenzo', 1932, 'M', 196), +(40521, 'Jess', 1932, 'M', 195), +(40522, 'Hal', 1932, 'M', 194), +(40523, 'Van', 1932, 'M', 193), +(40524, 'Levi', 1932, 'M', 192), +(40525, 'Nolan', 1932, 'M', 190), +(40526, 'Rolland', 1932, 'M', 189), +(40527, 'Lenard', 1932, 'M', 188), +(40528, 'Eli', 1932, 'M', 186), +(40529, 'Rocco', 1932, 'M', 185), +(40530, 'Gabriel', 1932, 'M', 184), +(40531, 'Clement', 1932, 'M', 183), +(40532, 'Truman', 1932, 'M', 183), +(40533, 'Noah', 1932, 'M', 181), +(40534, 'Rene', 1932, 'M', 181), +(40535, 'Arlen', 1932, 'M', 178), +(40536, 'Coy', 1932, 'M', 178), +(40537, 'Pablo', 1932, 'M', 177), +(40538, 'Delmer', 1932, 'M', 176), +(40539, 'Patsy', 1932, 'M', 176), +(40540, 'Alva', 1932, 'M', 175), +(40541, 'Linwood', 1932, 'M', 175), +(40542, 'Scott', 1932, 'M', 173), +(40543, 'Hector', 1932, 'M', 172), +(40544, 'Miguel', 1932, 'M', 171), +(40545, 'Winfred', 1932, 'M', 170), +(40546, 'Betty', 1932, 'M', 169), +(40547, 'Mickey', 1932, 'M', 169), +(40548, 'Ward', 1932, 'M', 169), +(40549, 'Wilford', 1932, 'M', 169), +(40550, 'Carmine', 1932, 'M', 168), +(40551, 'Rafael', 1932, 'M', 168), +(40552, 'Jackson', 1932, 'M', 167), +(40553, 'Vito', 1932, 'M', 166), +(40554, 'Jon', 1932, 'M', 165), +(40555, 'Luke', 1932, 'M', 165), +(40556, 'Roman', 1932, 'M', 165), +(40557, 'Barney', 1932, 'M', 163), +(40558, 'Dwayne', 1932, 'M', 163), +(40559, 'Emery', 1932, 'M', 163), +(40560, 'Solomon', 1932, 'M', 163), +(40561, 'Carrol', 1932, 'M', 160), +(40562, 'Ulysses', 1932, 'M', 160), +(40563, 'Dalton', 1932, 'M', 159), +(40564, 'Ricardo', 1932, 'M', 159), +(40565, 'Alden', 1932, 'M', 158), +(40566, 'Elmo', 1932, 'M', 158), +(40567, 'Arturo', 1932, 'M', 157), +(40568, 'Claud', 1932, 'M', 157), +(40569, 'Cyril', 1932, 'M', 157), +(40570, 'Jeff', 1932, 'M', 157), +(40571, 'Alphonso', 1932, 'M', 156), +(40572, 'Cletus', 1932, 'M', 156), +(40573, 'Gail', 1932, 'M', 156), +(40574, 'Rodger', 1932, 'M', 156), +(40575, 'Forest', 1932, 'M', 155), +(40576, 'Harris', 1932, 'M', 155), +(40577, 'Vern', 1932, 'M', 155), +(40578, 'Booker', 1932, 'M', 154), +(40579, 'Bud', 1932, 'M', 154), +(40580, 'Daryl', 1932, 'M', 154), +(40581, 'Herschel', 1932, 'M', 154), +(40582, 'Silas', 1932, 'M', 154), +(40583, 'Denver', 1932, 'M', 153), +(40584, 'Freeman', 1932, 'M', 153), +(40585, 'Milford', 1932, 'M', 151), +(40586, 'Spencer', 1932, 'M', 151), +(40587, 'Augustus', 1932, 'M', 149), +(40588, 'Odis', 1932, 'M', 149), +(40589, 'Royal', 1932, 'M', 149), +(40590, 'Elliott', 1932, 'M', 148), +(40591, 'Alphonse', 1932, 'M', 147), +(40592, 'Rodolfo', 1932, 'M', 146), +(40593, 'Elias', 1932, 'M', 145), +(40594, 'Enrique', 1932, 'M', 145), +(40595, 'Burl', 1932, 'M', 144), +(40596, 'Hoyt', 1932, 'M', 144), +(40597, 'Huey', 1932, 'M', 144), +(40598, 'Bradley', 1932, 'M', 142), +(40599, 'Frederic', 1932, 'M', 141), +(40600, 'Emerson', 1932, 'M', 140), +(40601, 'Gilberto', 1932, 'M', 140), +(40602, 'Morgan', 1932, 'M', 140), +(40603, 'Roderick', 1932, 'M', 140), +(40604, 'Hiram', 1932, 'M', 139), +(40605, 'Monte', 1932, 'M', 139), +(40606, 'Buster', 1932, 'M', 138), +(40607, 'Anton', 1932, 'M', 137), +(40608, 'Gaylord', 1932, 'M', 136), +(40609, 'Orval', 1932, 'M', 136), +(40610, 'Emilio', 1932, 'M', 135), +(40611, 'Lyman', 1932, 'M', 135), +(40612, 'Blaine', 1932, 'M', 134), +(40613, 'Houston', 1932, 'M', 134), +(40614, 'Vance', 1932, 'M', 134), +(40615, 'Everette', 1932, 'M', 133), +(40616, 'Alberto', 1932, 'M', 132), +(40617, 'Augustine', 1932, 'M', 131), +(40618, 'Bernie', 1932, 'M', 131), +(40619, 'Fernando', 1932, 'M', 131), +(40620, 'Pasquale', 1932, 'M', 131), +(40621, 'Riley', 1932, 'M', 131), +(40622, 'Dana', 1932, 'M', 130), +(40623, 'Talmadge', 1932, 'M', 130), +(40624, 'Tomas', 1932, 'M', 129), +(40625, 'Wilton', 1932, 'M', 129), +(40626, 'Arlie', 1932, 'M', 128), +(40627, 'Vaughn', 1932, 'M', 128), +(40628, 'Ken', 1932, 'M', 127), +(40629, 'Olen', 1932, 'M', 127), +(40630, 'Ernesto', 1932, 'M', 126), +(40631, 'Raymon', 1932, 'M', 126), +(40632, 'Angel', 1932, 'M', 125), +(40633, 'Bryan', 1932, 'M', 125), +(40634, 'Freddy', 1932, 'M', 125), +(40635, 'Hobert', 1932, 'M', 125), +(40636, 'Major', 1932, 'M', 125), +(40637, 'Bertram', 1932, 'M', 124), +(40638, 'Elroy', 1932, 'M', 124), +(40639, 'Julio', 1932, 'M', 124), +(40640, 'Kay', 1932, 'M', 124), +(40641, 'Clay', 1932, 'M', 123), +(40642, 'Doris', 1932, 'M', 123), +(40643, 'Milo', 1932, 'M', 123), +(40644, 'Warner', 1932, 'M', 123), +(40645, 'Ernie', 1932, 'M', 122), +(40646, 'Galen', 1932, 'M', 122), +(40647, 'Jeremiah', 1932, 'M', 122), +(40648, 'Omer', 1932, 'M', 122), +(40649, 'Saul', 1932, 'M', 122), +(40650, 'Jules', 1932, 'M', 121), +(40651, 'Kevin', 1932, 'M', 121), +(40652, 'Thaddeus', 1932, 'M', 121), +(40653, 'Brian', 1932, 'M', 120), +(40654, 'Dewitt', 1932, 'M', 120), +(40655, 'Lupe', 1932, 'M', 120), +(40656, 'Jefferson', 1932, 'M', 119), +(40657, 'Micheal', 1932, 'M', 119), +(40658, 'Jonathan', 1932, 'M', 118), +(40659, 'Arther', 1932, 'M', 117), +(40660, 'Beverly', 1932, 'M', 117), +(40661, 'Rosevelt', 1932, 'M', 117), +(40662, 'Verne', 1932, 'M', 117), +(40663, 'Evan', 1932, 'M', 116), +(40664, 'Harmon', 1932, 'M', 116), +(40665, 'Newton', 1932, 'M', 116), +(40666, 'Arden', 1932, 'M', 114), +(40667, 'Dewayne', 1932, 'M', 114), +(40668, 'Ellsworth', 1932, 'M', 114), +(40669, 'Gayle', 1932, 'M', 114), +(40670, 'Graham', 1932, 'M', 114), +(40671, 'Marcel', 1932, 'M', 114), +(40672, 'Olin', 1932, 'M', 114), +(40673, 'Davis', 1932, 'M', 113), +(40674, 'Fletcher', 1932, 'M', 113), +(40675, 'Carson', 1932, 'M', 112), +(40676, 'Emile', 1932, 'M', 112), +(40677, 'Dorothy', 1932, 'M', 111), +(40678, 'Frances', 1932, 'M', 111), +(40679, 'Joshua', 1932, 'M', 111), +(40680, 'Mose', 1932, 'M', 111), +(40681, 'Boyce', 1932, 'M', 110), +(40682, 'Wilber', 1932, 'M', 110), +(40683, 'Ferdinand', 1932, 'M', 109), +(40684, 'Ignacio', 1932, 'M', 109), +(40685, 'Isaiah', 1932, 'M', 109), +(40686, 'Merlyn', 1932, 'M', 109), +(40687, 'Columbus', 1932, 'M', 108), +(40688, 'Domingo', 1932, 'M', 108), +(40689, 'Harland', 1932, 'M', 108), +(40690, 'Donovan', 1932, 'M', 107), +(40691, 'Isiah', 1932, 'M', 107), +(40692, 'Kennith', 1932, 'M', 107), +(40693, 'Craig', 1932, 'M', 106), +(40694, 'Theron', 1932, 'M', 106), +(40695, 'Kelly', 1932, 'M', 105), +(40696, 'Lucius', 1932, 'M', 105), +(40697, 'Ambrose', 1932, 'M', 104), +(40698, 'Lacy', 1932, 'M', 104), +(40699, 'Mckinley', 1932, 'M', 104), +(40700, 'Shelby', 1932, 'M', 104), +(40701, 'Barbara', 1932, 'M', 103), +(40702, 'Elwin', 1932, 'M', 103), +(40703, 'Otha', 1932, 'M', 102), +(40704, 'Denis', 1932, 'M', 101), +(40705, 'Fredric', 1932, 'M', 101), +(40706, 'Mathew', 1932, 'M', 101), +(40707, 'Connie', 1932, 'M', 100), +(40708, 'Dee', 1932, 'M', 100), +(40709, 'Mary', 1933, 'F', 55493), +(40710, 'Betty', 1933, 'F', 31526), +(40711, 'Barbara', 1933, 'F', 26946), +(40712, 'Dorothy', 1933, 'F', 22050), +(40713, 'Joan', 1933, 'F', 19289), +(40714, 'Patricia', 1933, 'F', 18625), +(40715, 'Margaret', 1933, 'F', 15238), +(40716, 'Helen', 1933, 'F', 14644), +(40717, 'Shirley', 1933, 'F', 14316), +(40718, 'Doris', 1933, 'F', 12024), +(40719, 'Nancy', 1933, 'F', 11871), +(40720, 'Joyce', 1933, 'F', 11191), +(40721, 'Ruth', 1933, 'F', 11136), +(40722, 'Jean', 1933, 'F', 9966), +(40723, 'Virginia', 1933, 'F', 9717), +(40724, 'Marilyn', 1933, 'F', 9124), +(40725, 'Elizabeth', 1933, 'F', 9016), +(40726, 'Frances', 1933, 'F', 8880), +(40727, 'Lois', 1933, 'F', 8651), +(40728, 'Carol', 1933, 'F', 8221), +(40729, 'Dolores', 1933, 'F', 8017), +(40730, 'Alice', 1933, 'F', 7694), +(40731, 'Norma', 1933, 'F', 7480), +(40732, 'Donna', 1933, 'F', 7359), +(40733, 'Janet', 1933, 'F', 7341), +(40734, 'Beverly', 1933, 'F', 7182), +(40735, 'Martha', 1933, 'F', 7160), +(40736, 'Phyllis', 1933, 'F', 7109), +(40737, 'Anna', 1933, 'F', 7072), +(40738, 'Evelyn', 1933, 'F', 6945), +(40739, 'Gloria', 1933, 'F', 6753), +(40740, 'Mildred', 1933, 'F', 6570), +(40741, 'Marie', 1933, 'F', 6236), +(40742, 'Ann', 1933, 'F', 6208), +(40743, 'Rose', 1933, 'F', 5767), +(40744, 'Peggy', 1933, 'F', 5533), +(40745, 'Annie', 1933, 'F', 5124), +(40746, 'Eleanor', 1933, 'F', 5101), +(40747, 'Louise', 1933, 'F', 5079), +(40748, 'Marjorie', 1933, 'F', 5042), +(40749, 'Carolyn', 1933, 'F', 5041), +(40750, 'Geraldine', 1933, 'F', 4958), +(40751, 'Ruby', 1933, 'F', 4944), +(40752, 'Catherine', 1933, 'F', 4909), +(40753, 'June', 1933, 'F', 4678), +(40754, 'Irene', 1933, 'F', 4506), +(40755, 'Jane', 1933, 'F', 4378), +(40756, 'Wanda', 1933, 'F', 4265), +(40757, 'Florence', 1933, 'F', 4075), +(40758, 'Marlene', 1933, 'F', 4044), +(40759, 'Lillian', 1933, 'F', 3997), +(40760, 'Delores', 1933, 'F', 3893), +(40761, 'Rita', 1933, 'F', 3841), +(40762, 'Lorraine', 1933, 'F', 3797), +(40763, 'Edna', 1933, 'F', 3727), +(40764, 'Joanne', 1933, 'F', 3719), +(40765, 'Thelma', 1933, 'F', 3638), +(40766, 'Sarah', 1933, 'F', 3621), +(40767, 'Audrey', 1933, 'F', 3610), +(40768, 'Gladys', 1933, 'F', 3585), +(40769, 'Elaine', 1933, 'F', 3571), +(40770, 'Josephine', 1933, 'F', 3570), +(40771, 'Juanita', 1933, 'F', 3551), +(40772, 'Pauline', 1933, 'F', 3542), +(40773, 'Patsy', 1933, 'F', 3449), +(40774, 'Wilma', 1933, 'F', 3415), +(40775, 'Clara', 1933, 'F', 3412), +(40776, 'Bonnie', 1933, 'F', 3372), +(40777, 'Grace', 1933, 'F', 3326), +(40778, 'Theresa', 1933, 'F', 3266), +(40779, 'Ethel', 1933, 'F', 3219), +(40780, 'Joann', 1933, 'F', 3208), +(40781, 'Marion', 1933, 'F', 3200), +(40782, 'Arlene', 1933, 'F', 3187), +(40783, 'Emma', 1933, 'F', 3150), +(40784, 'Sally', 1933, 'F', 3146), +(40785, 'Kathleen', 1933, 'F', 3121), +(40786, 'Lucille', 1933, 'F', 3114), +(40787, 'Charlotte', 1933, 'F', 3112), +(40788, 'Edith', 1933, 'F', 3109), +(40789, 'Janice', 1933, 'F', 3062), +(40790, 'Hazel', 1933, 'F', 3026), +(40791, 'Bernice', 1933, 'F', 3009), +(40792, 'Sylvia', 1933, 'F', 2936), +(40793, 'Anne', 1933, 'F', 2767), +(40794, 'Jacqueline', 1933, 'F', 2756), +(40795, 'Loretta', 1933, 'F', 2704), +(40796, 'Esther', 1933, 'F', 2676), +(40797, 'Marian', 1933, 'F', 2637), +(40798, 'Jo', 1933, 'F', 2541), +(40799, 'Laura', 1933, 'F', 2536), +(40800, 'Billie', 1933, 'F', 2481), +(40801, 'Willie', 1933, 'F', 2445), +(40802, 'Beatrice', 1933, 'F', 2409), +(40803, 'Darlene', 1933, 'F', 2408), +(40804, 'Margie', 1933, 'F', 2407), +(40805, 'Julia', 1933, 'F', 2400), +(40806, 'Elsie', 1933, 'F', 2377), +(40807, 'Vivian', 1933, 'F', 2377), +(40808, 'Katherine', 1933, 'F', 2330), +(40809, 'Eva', 1933, 'F', 2282), +(40810, 'Rosemary', 1933, 'F', 2226), +(40811, 'Jeanette', 1933, 'F', 2222), +(40812, 'Ellen', 1933, 'F', 2200), +(40813, 'Constance', 1933, 'F', 2191), +(40814, 'Bertha', 1933, 'F', 2160), +(40815, 'Carole', 1933, 'F', 2149), +(40816, 'Kathryn', 1933, 'F', 2120), +(40817, 'Ida', 1933, 'F', 2063), +(40818, 'Maxine', 1933, 'F', 2061), +(40819, 'Lillie', 1933, 'F', 2060), +(40820, 'Roberta', 1933, 'F', 2037), +(40821, 'Ella', 1933, 'F', 2027), +(40822, 'Bobbie', 1933, 'F', 2009), +(40823, 'Eileen', 1933, 'F', 2004), +(40824, 'Anita', 1933, 'F', 1904), +(40825, 'Bessie', 1933, 'F', 1880), +(40826, 'Agnes', 1933, 'F', 1873), +(40827, 'Judith', 1933, 'F', 1869), +(40828, 'Vera', 1933, 'F', 1865), +(40829, 'Nellie', 1933, 'F', 1864), +(40830, 'Sara', 1933, 'F', 1863), +(40831, 'Maria', 1933, 'F', 1860), +(40832, 'Alma', 1933, 'F', 1839), +(40833, 'Jeanne', 1933, 'F', 1824), +(40834, 'Georgia', 1933, 'F', 1813), +(40835, 'Jessie', 1933, 'F', 1807), +(40836, 'Christine', 1933, 'F', 1791), +(40837, 'Lucy', 1933, 'F', 1746), +(40838, 'Mattie', 1933, 'F', 1672), +(40839, 'Sue', 1933, 'F', 1671), +(40840, 'Rosa', 1933, 'F', 1646), +(40841, 'Gertrude', 1933, 'F', 1620), +(40842, 'Minnie', 1933, 'F', 1604), +(40843, 'Diane', 1933, 'F', 1603), +(40844, 'Violet', 1933, 'F', 1516), +(40845, 'Velma', 1933, 'F', 1481), +(40846, 'Viola', 1933, 'F', 1478), +(40847, 'Leona', 1933, 'F', 1461), +(40848, 'Naomi', 1933, 'F', 1430), +(40849, 'Geneva', 1933, 'F', 1421), +(40850, 'Myrtle', 1933, 'F', 1398), +(40851, 'Pearl', 1933, 'F', 1384), +(40852, 'Claire', 1933, 'F', 1372), +(40853, 'Sandra', 1933, 'F', 1364), +(40854, 'Connie', 1933, 'F', 1320), +(40855, 'Joy', 1933, 'F', 1291), +(40856, 'Mae', 1933, 'F', 1289), +(40857, 'Carrie', 1933, 'F', 1264), +(40858, 'Susan', 1933, 'F', 1264), +(40859, 'Dora', 1933, 'F', 1242), +(40860, 'Harriet', 1933, 'F', 1238), +(40861, 'Faye', 1933, 'F', 1201), +(40862, 'Eunice', 1933, 'F', 1189), +(40863, 'Rosie', 1933, 'F', 1182), +(40864, 'Charlene', 1933, 'F', 1174), +(40865, 'Alberta', 1933, 'F', 1157), +(40866, 'Cora', 1933, 'F', 1157), +(40867, 'Yvonne', 1933, 'F', 1153), +(40868, 'Pat', 1933, 'F', 1147), +(40869, 'Rachel', 1933, 'F', 1141), +(40870, 'Marcia', 1933, 'F', 1140), +(40871, 'Lola', 1933, 'F', 1123), +(40872, 'Stella', 1933, 'F', 1121), +(40873, 'Lena', 1933, 'F', 1088), +(40874, 'Lula', 1933, 'F', 1087), +(40875, 'Hattie', 1933, 'F', 1086), +(40876, 'Verna', 1933, 'F', 1078), +(40877, 'Rebecca', 1933, 'F', 1073), +(40878, 'Maureen', 1933, 'F', 1064), +(40879, 'Emily', 1933, 'F', 1062), +(40880, 'Genevieve', 1933, 'F', 1054), +(40881, 'Caroline', 1933, 'F', 1050), +(40882, 'Fannie', 1933, 'F', 1026), +(40883, 'Jennie', 1933, 'F', 1000), +(40884, 'Erma', 1933, 'F', 984), +(40885, 'Nina', 1933, 'F', 976), +(40886, 'Sharon', 1933, 'F', 962), +(40887, 'Hilda', 1933, 'F', 957), +(40888, 'Ramona', 1933, 'F', 952), +(40889, 'Suzanne', 1933, 'F', 950), +(40890, 'Opal', 1933, 'F', 932), +(40891, 'Gwendolyn', 1933, 'F', 926), +(40892, 'Rosalie', 1933, 'F', 925), +(40893, 'Bettie', 1933, 'F', 922), +(40894, 'Miriam', 1933, 'F', 912), +(40895, 'Deloris', 1933, 'F', 909), +(40896, 'Flora', 1933, 'F', 903), +(40897, 'Beulah', 1933, 'F', 896), +(40898, 'Marguerite', 1933, 'F', 895), +(40899, 'Rosemarie', 1933, 'F', 894), +(40900, 'Patty', 1933, 'F', 893), +(40901, 'Nora', 1933, 'F', 891), +(40902, 'Inez', 1933, 'F', 890), +(40903, 'Johnnie', 1933, 'F', 879), +(40904, 'Daisy', 1933, 'F', 872), +(40905, 'Mabel', 1933, 'F', 872), +(40906, 'Muriel', 1933, 'F', 872), +(40907, 'Ada', 1933, 'F', 870), +(40908, 'Kay', 1933, 'F', 863), +(40909, 'Laverne', 1933, 'F', 861), +(40910, 'Jeannette', 1933, 'F', 860), +(40911, 'Lila', 1933, 'F', 859), +(40912, 'Mamie', 1933, 'F', 859), +(40913, 'Bette', 1933, 'F', 855), +(40914, 'Della', 1933, 'F', 850), +(40915, 'Ernestine', 1933, 'F', 845), +(40916, 'Carmen', 1933, 'F', 831), +(40917, 'Madeline', 1933, 'F', 822), +(40918, 'Irma', 1933, 'F', 819), +(40919, 'Eloise', 1933, 'F', 817), +(40920, 'Marcella', 1933, 'F', 816), +(40921, 'Mable', 1933, 'F', 803), +(40922, 'Blanche', 1933, 'F', 797), +(40923, 'Imogene', 1933, 'F', 787), +(40924, 'Linda', 1933, 'F', 786), +(40925, 'Melba', 1933, 'F', 775), +(40926, 'Cynthia', 1933, 'F', 771), +(40927, 'Iris', 1933, 'F', 765), +(40928, 'Bettye', 1933, 'F', 763), +(40929, 'Eula', 1933, 'F', 762), +(40930, 'Annette', 1933, 'F', 753), +(40931, 'Teresa', 1933, 'F', 753), +(40932, 'Katie', 1933, 'F', 743), +(40933, 'Susie', 1933, 'F', 743), +(40934, 'Sheila', 1933, 'F', 737), +(40935, 'Diana', 1933, 'F', 729), +(40936, 'Judy', 1933, 'F', 727), +(40937, 'Janie', 1933, 'F', 710), +(40938, 'Jackie', 1933, 'F', 701), +(40939, 'Sadie', 1933, 'F', 683), +(40940, 'Glenda', 1933, 'F', 680), +(40941, 'Maggie', 1933, 'F', 679), +(40942, 'Nadine', 1933, 'F', 677), +(40943, 'Colleen', 1933, 'F', 675), +(40944, 'Priscilla', 1933, 'F', 675), +(40945, 'Lydia', 1933, 'F', 666), +(40946, 'Regina', 1933, 'F', 647), +(40947, 'Dixie', 1933, 'F', 646), +(40948, 'Antoinette', 1933, 'F', 644), +(40949, 'Jacquelyn', 1933, 'F', 628), +(40950, 'Reba', 1933, 'F', 626), +(40951, 'Lorene', 1933, 'F', 615), +(40952, 'Mona', 1933, 'F', 615), +(40953, 'Paula', 1933, 'F', 612), +(40954, 'Amelia', 1933, 'F', 608), +(40955, 'Maryann', 1933, 'F', 608), +(40956, 'Fay', 1933, 'F', 607), +(40957, 'Marianne', 1933, 'F', 600), +(40958, 'Victoria', 1933, 'F', 600), +(40959, 'Freda', 1933, 'F', 588), +(40960, 'Angela', 1933, 'F', 577), +(40961, 'Ollie', 1933, 'F', 573), +(40962, 'Myrna', 1933, 'F', 571), +(40963, 'Sallie', 1933, 'F', 570), +(40964, 'Frankie', 1933, 'F', 569), +(40965, 'Essie', 1933, 'F', 568), +(40966, 'Jimmie', 1933, 'F', 566), +(40967, 'Winifred', 1933, 'F', 555), +(40968, 'Dorthy', 1933, 'F', 554), +(40969, 'Ora', 1933, 'F', 551), +(40970, 'Nettie', 1933, 'F', 544), +(40971, 'Gail', 1933, 'F', 541), +(40972, 'Ina', 1933, 'F', 541), +(40973, 'Lou', 1933, 'F', 534), +(40974, 'Iva', 1933, 'F', 533), +(40975, 'Estelle', 1933, 'F', 521), +(40976, 'Henrietta', 1933, 'F', 521), +(40977, 'Natalie', 1933, 'F', 517), +(40978, 'Etta', 1933, 'F', 513), +(40979, 'Myra', 1933, 'F', 512), +(40980, 'Olga', 1933, 'F', 511), +(40981, 'Lela', 1933, 'F', 510), +(40982, 'Jewel', 1933, 'F', 508), +(40983, 'Fern', 1933, 'F', 506), +(40984, 'Glenna', 1933, 'F', 505), +(40985, 'Nelda', 1933, 'F', 475), +(40986, 'Jewell', 1933, 'F', 467), +(40987, 'Lottie', 1933, 'F', 467), +(40988, 'Willa', 1933, 'F', 462), +(40989, 'Lenora', 1933, 'F', 460), +(40990, 'Mavis', 1933, 'F', 458), +(40991, 'Karen', 1933, 'F', 454), +(40992, 'Isabel', 1933, 'F', 450), +(40993, 'Veronica', 1933, 'F', 448), +(40994, 'Nell', 1933, 'F', 443), +(40995, 'Angelina', 1933, 'F', 441), +(40996, 'Elinor', 1933, 'F', 441), +(40997, 'Bernadine', 1933, 'F', 436), +(40998, 'Clarice', 1933, 'F', 436), +(40999, 'Cecilia', 1933, 'F', 431), +(41000, 'Celia', 1933, 'F', 430), +(41001, 'Luella', 1933, 'F', 428), +(41002, 'Alta', 1933, 'F', 424), +(41003, 'Dorothea', 1933, 'F', 422), +(41004, 'Elva', 1933, 'F', 420), +(41005, 'Cleo', 1933, 'F', 417), +(41006, 'Addie', 1933, 'F', 415), +(41007, 'Earline', 1933, 'F', 415), +(41008, 'Ola', 1933, 'F', 415), +(41009, 'Claudia', 1933, 'F', 411), +(41010, 'Dona', 1933, 'F', 411), +(41011, 'Gracie', 1933, 'F', 409), +(41012, 'Estella', 1933, 'F', 407), +(41013, 'Leola', 1933, 'F', 407), +(41014, 'Effie', 1933, 'F', 406), +(41015, 'Lizzie', 1933, 'F', 406), +(41016, 'Helene', 1933, 'F', 405), +(41017, 'May', 1933, 'F', 404), +(41018, 'Cecelia', 1933, 'F', 403), +(41019, 'Lee', 1933, 'F', 403), +(41020, 'Bernadette', 1933, 'F', 394), +(41021, 'Jeannine', 1933, 'F', 393), +(41022, 'Lavonne', 1933, 'F', 393), +(41023, 'Angeline', 1933, 'F', 390), +(41024, 'Jerry', 1933, 'F', 390), +(41025, 'Olive', 1933, 'F', 387), +(41026, 'Rosetta', 1933, 'F', 381), +(41027, 'Goldie', 1933, 'F', 380), +(41028, 'Ila', 1933, 'F', 379), +(41029, 'Rhoda', 1933, 'F', 377), +(41030, 'Lenore', 1933, 'F', 376), +(41031, 'Lupe', 1933, 'F', 375), +(41032, 'Adeline', 1933, 'F', 371), +(41033, 'Polly', 1933, 'F', 371), +(41034, 'Olivia', 1933, 'F', 369), +(41035, 'Francis', 1933, 'F', 367), +(41036, 'Joanna', 1933, 'F', 367), +(41037, 'Ruthie', 1933, 'F', 367), +(41038, 'Adele', 1933, 'F', 362), +(41039, 'Janis', 1933, 'F', 361), +(41040, 'Arline', 1933, 'F', 357), +(41041, 'Winnie', 1933, 'F', 355), +(41042, 'Corinne', 1933, 'F', 340), +(41043, 'Greta', 1933, 'F', 338), +(41044, 'Leah', 1933, 'F', 338), +(41045, 'Virgie', 1933, 'F', 338), +(41046, 'Sondra', 1933, 'F', 337), +(41047, 'Earnestine', 1933, 'F', 335), +(41048, 'Josie', 1933, 'F', 333), +(41049, 'Dolly', 1933, 'F', 331), +(41050, 'Isabelle', 1933, 'F', 330), +(41051, 'Faith', 1933, 'F', 329), +(41052, 'Delia', 1933, 'F', 328), +(41053, 'Earlene', 1933, 'F', 327), +(41054, 'Elnora', 1933, 'F', 327), +(41055, 'Adrienne', 1933, 'F', 325), +(41056, 'Lorna', 1933, 'F', 324), +(41057, 'Betsy', 1933, 'F', 323), +(41058, 'Rena', 1933, 'F', 320), +(41059, 'Robbie', 1933, 'F', 319), +(41060, 'Renee', 1933, 'F', 315), +(41061, 'Neva', 1933, 'F', 313), +(41062, 'Guadalupe', 1933, 'F', 312), +(41063, 'Marlys', 1933, 'F', 312), +(41064, 'Beverley', 1933, 'F', 310), +(41065, 'Doreen', 1933, 'F', 309), +(41066, 'Tommie', 1933, 'F', 309), +(41067, 'Dawn', 1933, 'F', 306), +(41068, 'Elvira', 1933, 'F', 306), +(41069, 'Therese', 1933, 'F', 306), +(41070, 'Lucile', 1933, 'F', 305), +(41071, 'Carmela', 1933, 'F', 304), +(41072, 'Amy', 1933, 'F', 303), +(41073, 'Pearlie', 1933, 'F', 303), +(41074, 'Millie', 1933, 'F', 301), +(41075, 'Sophie', 1933, 'F', 300), +(41076, 'James', 1933, 'F', 299), +(41077, 'Elma', 1933, 'F', 297), +(41078, 'Margery', 1933, 'F', 297), +(41079, 'Selma', 1933, 'F', 296), +(41080, 'Lora', 1933, 'F', 295), +(41081, 'Leila', 1933, 'F', 294), +(41082, 'Valerie', 1933, 'F', 293), +(41083, 'Flossie', 1933, 'F', 292), +(41084, 'Eugenia', 1933, 'F', 291), +(41085, 'Nannie', 1933, 'F', 290), +(41086, 'Lynn', 1933, 'F', 289), +(41087, 'Janette', 1933, 'F', 288), +(41088, 'Julie', 1933, 'F', 288), +(41089, 'Wilda', 1933, 'F', 288), +(41090, 'Sybil', 1933, 'F', 286), +(41091, 'Harriett', 1933, 'F', 283), +(41092, 'Nola', 1933, 'F', 281), +(41093, 'Corrine', 1933, 'F', 278), +(41094, 'Eleanore', 1933, 'F', 278), +(41095, 'Nona', 1933, 'F', 278), +(41096, 'Dollie', 1933, 'F', 277), +(41097, 'Rosella', 1933, 'F', 275), +(41098, 'Eddie', 1933, 'F', 274), +(41099, 'Robert', 1933, 'F', 273), +(41100, 'Mollie', 1933, 'F', 272), +(41101, 'Christina', 1933, 'F', 271), +(41102, 'Molly', 1933, 'F', 271), +(41103, 'Rae', 1933, 'F', 270), +(41104, 'Annabelle', 1933, 'F', 263), +(41105, 'Claudette', 1933, 'F', 262), +(41106, 'Avis', 1933, 'F', 261), +(41107, 'Carmella', 1933, 'F', 261), +(41108, 'Gwen', 1933, 'F', 260), +(41109, 'Bobby', 1933, 'F', 259), +(41110, 'Odessa', 1933, 'F', 257), +(41111, 'Beth', 1933, 'F', 256), +(41112, 'Cornelia', 1933, 'F', 256), +(41113, 'Edwina', 1933, 'F', 255), +(41114, 'Joe', 1933, 'F', 248), +(41115, 'Melva', 1933, 'F', 245), +(41116, 'Marylou', 1933, 'F', 244), +(41117, 'Deborah', 1933, 'F', 243), +(41118, 'Consuelo', 1933, 'F', 242), +(41119, 'Ilene', 1933, 'F', 242), +(41120, 'Lily', 1933, 'F', 241), +(41121, 'Gretchen', 1933, 'F', 240), +(41122, 'Loraine', 1933, 'F', 240), +(41123, 'Gayle', 1933, 'F', 239), +(41124, 'Reva', 1933, 'F', 239), +(41125, 'Antonia', 1933, 'F', 236), +(41126, 'Letha', 1933, 'F', 235), +(41127, 'Frieda', 1933, 'F', 233), +(41128, 'Alicia', 1933, 'F', 232), +(41129, 'Elouise', 1933, 'F', 232), +(41130, 'Bonita', 1933, 'F', 230), +(41131, 'Queen', 1933, 'F', 230), +(41132, 'Zelma', 1933, 'F', 230), +(41133, 'Allie', 1933, 'F', 229), +(41134, 'Aileen', 1933, 'F', 228), +(41135, 'Marilynn', 1933, 'F', 228), +(41136, 'Gay', 1933, 'F', 227), +(41137, 'Jannie', 1933, 'F', 227), +(41138, 'John', 1933, 'F', 226), +(41139, 'Corine', 1933, 'F', 225), +(41140, 'Louella', 1933, 'F', 222), +(41141, 'Concetta', 1933, 'F', 221), +(41142, 'Yolanda', 1933, 'F', 220), +(41143, 'Jenny', 1933, 'F', 219), +(41144, 'Bennie', 1933, 'F', 218), +(41145, 'Florine', 1933, 'F', 217), +(41146, 'Freddie', 1933, 'F', 217), +(41147, 'Margarita', 1933, 'F', 214), +(41148, 'Monica', 1933, 'F', 213), +(41149, 'Retha', 1933, 'F', 212), +(41150, 'Sonia', 1933, 'F', 212), +(41151, 'Alyce', 1933, 'F', 211), +(41152, 'Aurora', 1933, 'F', 211), +(41153, 'Ophelia', 1933, 'F', 211), +(41154, 'Angie', 1933, 'F', 209), +(41155, 'Charles', 1933, 'F', 209), +(41156, 'Lilly', 1933, 'F', 209), +(41157, 'Noreen', 1933, 'F', 209), +(41158, 'Winona', 1933, 'F', 209), +(41159, 'Callie', 1933, 'F', 208), +(41160, 'Carlene', 1933, 'F', 208), +(41161, 'Francine', 1933, 'F', 208), +(41162, 'Aline', 1933, 'F', 207), +(41163, 'Cecile', 1933, 'F', 207), +(41164, 'Evangeline', 1933, 'F', 207), +(41165, 'Hope', 1933, 'F', 207), +(41166, 'Johanna', 1933, 'F', 206), +(41167, 'Helena', 1933, 'F', 205), +(41168, 'Ima', 1933, 'F', 204), +(41169, 'Hannah', 1933, 'F', 202), +(41170, 'Georgie', 1933, 'F', 201), +(41171, 'Nira', 1933, 'F', 201), +(41172, 'Matilda', 1933, 'F', 200), +(41173, 'Amanda', 1933, 'F', 199), +(41174, 'Clare', 1933, 'F', 198), +(41175, 'Dianne', 1933, 'F', 197); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(41176, 'Eliza', 1933, 'F', 196), +(41177, 'Bertie', 1933, 'F', 195), +(41178, 'William', 1933, 'F', 195), +(41179, 'Pansy', 1933, 'F', 192), +(41180, 'Allene', 1933, 'F', 189), +(41181, 'Twila', 1933, 'F', 189), +(41182, 'Iona', 1933, 'F', 186), +(41183, 'Marietta', 1933, 'F', 185), +(41184, 'Maude', 1933, 'F', 182), +(41185, 'Merle', 1933, 'F', 182), +(41186, 'Delphine', 1933, 'F', 180), +(41187, 'Elena', 1933, 'F', 178), +(41188, 'Mercedes', 1933, 'F', 176), +(41189, 'Carla', 1933, 'F', 175), +(41190, 'Lorena', 1933, 'F', 175), +(41191, 'Lessie', 1933, 'F', 174), +(41192, 'Madge', 1933, 'F', 174), +(41193, 'Pearline', 1933, 'F', 171), +(41194, 'Ladonna', 1933, 'F', 170), +(41195, 'Lelia', 1933, 'F', 170), +(41196, 'Maudie', 1933, 'F', 169), +(41197, 'Velda', 1933, 'F', 169), +(41198, 'Alene', 1933, 'F', 168), +(41199, 'Ardis', 1933, 'F', 167), +(41200, 'Leta', 1933, 'F', 167), +(41201, 'Lucia', 1933, 'F', 166), +(41202, 'Peggie', 1933, 'F', 166), +(41203, 'Reta', 1933, 'F', 166), +(41204, 'Roxie', 1933, 'F', 166), +(41205, 'Delma', 1933, 'F', 165), +(41206, 'Verla', 1933, 'F', 165), +(41207, 'Leota', 1933, 'F', 164), +(41208, 'Nita', 1933, 'F', 164), +(41209, 'Althea', 1933, 'F', 162), +(41210, 'Belva', 1933, 'F', 161), +(41211, 'Beryl', 1933, 'F', 161), +(41212, 'Charlie', 1933, 'F', 161), +(41213, 'Germaine', 1933, 'F', 161), +(41214, 'Zelda', 1933, 'F', 160), +(41215, 'Andrea', 1933, 'F', 158), +(41216, 'Rosalyn', 1933, 'F', 158), +(41217, 'Hester', 1933, 'F', 157), +(41218, 'Marlyn', 1933, 'F', 156), +(41219, 'Emogene', 1933, 'F', 155), +(41220, 'Lorine', 1933, 'F', 155), +(41221, 'Gussie', 1933, 'F', 153), +(41222, 'Katharine', 1933, 'F', 152), +(41223, 'Camille', 1933, 'F', 151), +(41224, 'Claudine', 1933, 'F', 151), +(41225, 'Dortha', 1933, 'F', 151), +(41226, 'Rosalee', 1933, 'F', 151), +(41227, 'Vernell', 1933, 'F', 151), +(41228, 'Zella', 1933, 'F', 151), +(41229, 'Ardith', 1933, 'F', 149), +(41230, 'Iola', 1933, 'F', 148), +(41231, 'Ester', 1933, 'F', 147), +(41232, 'Freida', 1933, 'F', 147), +(41233, 'Oma', 1933, 'F', 147), +(41234, 'Gearldine', 1933, 'F', 146), +(41235, 'George', 1933, 'F', 146), +(41236, 'Roslyn', 1933, 'F', 145), +(41237, 'Terry', 1933, 'F', 145), +(41238, 'Bobbye', 1933, 'F', 144), +(41239, 'Ione', 1933, 'F', 144), +(41240, 'Phoebe', 1933, 'F', 143), +(41241, 'Enid', 1933, 'F', 142), +(41242, 'Ouida', 1933, 'F', 142), +(41243, 'Jaunita', 1933, 'F', 141), +(41244, 'Madonna', 1933, 'F', 141), +(41245, 'Berniece', 1933, 'F', 140), +(41246, 'Sonya', 1933, 'F', 140), +(41247, 'Madelyn', 1933, 'F', 139), +(41248, 'Millicent', 1933, 'F', 139), +(41249, 'Rowena', 1933, 'F', 139), +(41250, 'Edythe', 1933, 'F', 138), +(41251, 'Esperanza', 1933, 'F', 138), +(41252, 'Nan', 1933, 'F', 138), +(41253, 'Pattie', 1933, 'F', 138), +(41254, 'Dorris', 1933, 'F', 137), +(41255, 'Jeanine', 1933, 'F', 137), +(41256, 'Celestine', 1933, 'F', 136), +(41257, 'Birdie', 1933, 'F', 135), +(41258, 'Sammie', 1933, 'F', 134), +(41259, 'Donald', 1933, 'F', 133), +(41260, 'Augusta', 1933, 'F', 132), +(41261, 'Benita', 1933, 'F', 132), +(41262, 'Justine', 1933, 'F', 132), +(41263, 'Manuela', 1933, 'F', 132), +(41264, 'Marjory', 1933, 'F', 132), +(41265, 'Ursula', 1933, 'F', 132), +(41266, 'Delois', 1933, 'F', 131), +(41267, 'Jeanie', 1933, 'F', 131), +(41268, 'Leora', 1933, 'F', 131), +(41269, 'Lona', 1933, 'F', 131), +(41270, 'Lavon', 1933, 'F', 130), +(41271, 'Doretha', 1933, 'F', 129), +(41272, 'Jayne', 1933, 'F', 129), +(41273, 'Shirlee', 1933, 'F', 129), +(41274, 'Wilhelmina', 1933, 'F', 129), +(41275, 'Josefina', 1933, 'F', 128), +(41276, 'Maurine', 1933, 'F', 127), +(41277, 'Louisa', 1933, 'F', 126), +(41278, 'Richard', 1933, 'F', 126), +(41279, 'Roma', 1933, 'F', 126), +(41280, 'Sherry', 1933, 'F', 126), +(41281, 'Minerva', 1933, 'F', 125), +(41282, 'Dovie', 1933, 'F', 124), +(41283, 'Elsa', 1933, 'F', 124), +(41284, 'Tillie', 1933, 'F', 124), +(41285, 'Una', 1933, 'F', 124), +(41286, 'Billy', 1933, 'F', 123), +(41287, 'Elisabeth', 1933, 'F', 123), +(41288, 'Gilda', 1933, 'F', 123), +(41289, 'Leslie', 1933, 'F', 123), +(41290, 'Madeleine', 1933, 'F', 122), +(41291, 'Margret', 1933, 'F', 122), +(41292, 'Valeria', 1933, 'F', 122), +(41293, 'Elise', 1933, 'F', 121), +(41294, 'Kitty', 1933, 'F', 121), +(41295, 'Susanne', 1933, 'F', 121), +(41296, 'Berta', 1933, 'F', 120), +(41297, 'Petra', 1933, 'F', 120), +(41298, 'Ava', 1933, 'F', 119), +(41299, 'Dessie', 1933, 'F', 119), +(41300, 'Lucinda', 1933, 'F', 119), +(41301, 'Verda', 1933, 'F', 119), +(41302, 'Adelaide', 1933, 'F', 118), +(41303, 'Gerry', 1933, 'F', 118), +(41304, 'Hellen', 1933, 'F', 118), +(41305, 'Alva', 1933, 'F', 117), +(41306, 'Carolina', 1933, 'F', 117), +(41307, 'Charline', 1933, 'F', 117), +(41308, 'Elda', 1933, 'F', 117), +(41309, 'Isabell', 1933, 'F', 117), +(41310, 'Magdalene', 1933, 'F', 117), +(41311, 'Isabella', 1933, 'F', 116), +(41312, 'Jeannie', 1933, 'F', 116), +(41313, 'Oleta', 1933, 'F', 116), +(41314, 'Vada', 1933, 'F', 116), +(41315, 'Hallie', 1933, 'F', 115), +(41316, 'Jan', 1933, 'F', 115), +(41317, 'Patti', 1933, 'F', 114), +(41318, 'Philomena', 1933, 'F', 114), +(41319, 'Libby', 1933, 'F', 113), +(41320, 'Alfreda', 1933, 'F', 112), +(41321, 'Denise', 1933, 'F', 112), +(41322, 'Garnet', 1933, 'F', 112), +(41323, 'Jill', 1933, 'F', 112), +(41324, 'Vernice', 1933, 'F', 112), +(41325, 'Camilla', 1933, 'F', 111), +(41326, 'Ofelia', 1933, 'F', 111), +(41327, 'Rosalind', 1933, 'F', 111), +(41328, 'Darleen', 1933, 'F', 110), +(41329, 'Lauretta', 1933, 'F', 110), +(41330, 'Roseann', 1933, 'F', 110), +(41331, 'Syble', 1933, 'F', 110), +(41332, 'Darline', 1933, 'F', 109), +(41333, 'Francisca', 1933, 'F', 109), +(41334, 'Juana', 1933, 'F', 109), +(41335, 'Lettie', 1933, 'F', 109), +(41336, 'Treva', 1933, 'F', 109), +(41337, 'Dana', 1933, 'F', 108), +(41338, 'Georgene', 1933, 'F', 108), +(41339, 'Myrtis', 1933, 'F', 108), +(41340, 'Pamela', 1933, 'F', 108), +(41341, 'Loyce', 1933, 'F', 107), +(41342, 'Margot', 1933, 'F', 107), +(41343, 'Sydney', 1933, 'F', 107), +(41344, 'Tina', 1933, 'F', 107), +(41345, 'Gertie', 1933, 'F', 106), +(41346, 'Rhea', 1933, 'F', 106), +(41347, 'Stephanie', 1933, 'F', 106), +(41348, 'Veda', 1933, 'F', 106), +(41349, 'Vida', 1933, 'F', 106), +(41350, 'Celeste', 1933, 'F', 105), +(41351, 'Lavern', 1933, 'F', 105), +(41352, 'Yvette', 1933, 'F', 105), +(41353, 'Dottie', 1933, 'F', 104), +(41354, 'Carroll', 1933, 'F', 103), +(41355, 'Donnie', 1933, 'F', 103), +(41356, 'Norene', 1933, 'F', 103), +(41357, 'Sophia', 1933, 'F', 103), +(41358, 'Billye', 1933, 'F', 102), +(41359, 'Juliette', 1933, 'F', 102), +(41360, 'Laurel', 1933, 'F', 102), +(41361, 'Vesta', 1933, 'F', 102), +(41362, 'Caryl', 1933, 'F', 101), +(41363, 'Erna', 1933, 'F', 101), +(41364, 'Harriette', 1933, 'F', 100), +(41365, 'Joseph', 1933, 'F', 100), +(41366, 'Lue', 1933, 'F', 100), +(41367, 'Robert', 1933, 'M', 54205), +(41368, 'James', 1933, 'M', 51099), +(41369, 'John', 1933, 'M', 46220), +(41370, 'William', 1933, 'M', 39031), +(41371, 'Richard', 1933, 'M', 31329), +(41372, 'Charles', 1933, 'M', 28982), +(41373, 'Donald', 1933, 'M', 28426), +(41374, 'George', 1933, 'M', 18352), +(41375, 'Joseph', 1933, 'M', 17155), +(41376, 'Thomas', 1933, 'M', 16498), +(41377, 'Edward', 1933, 'M', 13787), +(41378, 'Ronald', 1933, 'M', 12061), +(41379, 'David', 1933, 'M', 12020), +(41380, 'Paul', 1933, 'M', 11843), +(41381, 'Kenneth', 1933, 'M', 11401), +(41382, 'Frank', 1933, 'M', 10957), +(41383, 'Jack', 1933, 'M', 9833), +(41384, 'Harold', 1933, 'M', 9541), +(41385, 'Raymond', 1933, 'M', 9513), +(41386, 'Billy', 1933, 'M', 8934), +(41387, 'Walter', 1933, 'M', 7757), +(41388, 'Gerald', 1933, 'M', 7423), +(41389, 'Eugene', 1933, 'M', 7348), +(41390, 'Henry', 1933, 'M', 6727), +(41391, 'Arthur', 1933, 'M', 6521), +(41392, 'Bobby', 1933, 'M', 6490), +(41393, 'Joe', 1933, 'M', 6411), +(41394, 'Carl', 1933, 'M', 6191), +(41395, 'Ralph', 1933, 'M', 6183), +(41396, 'Albert', 1933, 'M', 6085), +(41397, 'Jerry', 1933, 'M', 6063), +(41398, 'Willie', 1933, 'M', 5990), +(41399, 'Franklin', 1933, 'M', 5360), +(41400, 'Fred', 1933, 'M', 5280), +(41401, 'Harry', 1933, 'M', 5138), +(41402, 'Howard', 1933, 'M', 4996), +(41403, 'Norman', 1933, 'M', 4954), +(41404, 'Lawrence', 1933, 'M', 4906), +(41405, 'Roy', 1933, 'M', 4902), +(41406, 'Louis', 1933, 'M', 4692), +(41407, 'Earl', 1933, 'M', 4373), +(41408, 'Daniel', 1933, 'M', 4310), +(41409, 'Clarence', 1933, 'M', 4276), +(41410, 'Marvin', 1933, 'M', 4127), +(41411, 'Francis', 1933, 'M', 4093), +(41412, 'Anthony', 1933, 'M', 3971), +(41413, 'Leonard', 1933, 'M', 3954), +(41414, 'Roger', 1933, 'M', 3917), +(41415, 'Herbert', 1933, 'M', 3682), +(41416, 'Ernest', 1933, 'M', 3672), +(41417, 'Melvin', 1933, 'M', 3590), +(41418, 'Wayne', 1933, 'M', 3563), +(41419, 'Michael', 1933, 'M', 3544), +(41420, 'Don', 1933, 'M', 3454), +(41421, 'Stanley', 1933, 'M', 3429), +(41422, 'Leroy', 1933, 'M', 3354), +(41423, 'Alfred', 1933, 'M', 3264), +(41424, 'Larry', 1933, 'M', 3251), +(41425, 'Bill', 1933, 'M', 3220), +(41426, 'Peter', 1933, 'M', 3134), +(41427, 'Samuel', 1933, 'M', 3111), +(41428, 'Ray', 1933, 'M', 3032), +(41429, 'Bernard', 1933, 'M', 3003), +(41430, 'Jimmy', 1933, 'M', 2926), +(41431, 'Dale', 1933, 'M', 2923), +(41432, 'Gene', 1933, 'M', 2778), +(41433, 'Russell', 1933, 'M', 2693), +(41434, 'Theodore', 1933, 'M', 2608), +(41435, 'Floyd', 1933, 'M', 2539), +(41436, 'Philip', 1933, 'M', 2529), +(41437, 'Gordon', 1933, 'M', 2524), +(41438, 'Jimmie', 1933, 'M', 2490), +(41439, 'Lloyd', 1933, 'M', 2415), +(41440, 'Glenn', 1933, 'M', 2367), +(41441, 'Leo', 1933, 'M', 2349), +(41442, 'Andrew', 1933, 'M', 2345), +(41443, 'Edwin', 1933, 'M', 2326), +(41444, 'Frederick', 1933, 'M', 2321), +(41445, 'Lee', 1933, 'M', 2302), +(41446, 'Gary', 1933, 'M', 2252), +(41447, 'Douglas', 1933, 'M', 2251), +(41448, 'Bob', 1933, 'M', 2219), +(41449, 'Vernon', 1933, 'M', 2205), +(41450, 'Allen', 1933, 'M', 2204), +(41451, 'Leon', 1933, 'M', 2189), +(41452, 'Clifford', 1933, 'M', 2160), +(41453, 'Clyde', 1933, 'M', 2139), +(41454, 'Alvin', 1933, 'M', 2124), +(41455, 'Martin', 1933, 'M', 2063), +(41456, 'Johnny', 1933, 'M', 2051), +(41457, 'Lewis', 1933, 'M', 2037), +(41458, 'Bruce', 1933, 'M', 2035), +(41459, 'Eddie', 1933, 'M', 2015), +(41460, 'Vincent', 1933, 'M', 1981), +(41461, 'Charlie', 1933, 'M', 1976), +(41462, 'Herman', 1933, 'M', 1946), +(41463, 'Harvey', 1933, 'M', 1895), +(41464, 'Jim', 1933, 'M', 1876), +(41465, 'Warren', 1933, 'M', 1808), +(41466, 'Jesse', 1933, 'M', 1803), +(41467, 'Elmer', 1933, 'M', 1785), +(41468, 'Duane', 1933, 'M', 1762), +(41469, 'Arnold', 1933, 'M', 1748), +(41470, 'Gilbert', 1933, 'M', 1706), +(41471, 'Jerome', 1933, 'M', 1691), +(41472, 'Dennis', 1933, 'M', 1685), +(41473, 'Curtis', 1933, 'M', 1679), +(41474, 'Lester', 1933, 'M', 1645), +(41475, 'Tommy', 1933, 'M', 1629), +(41476, 'Patrick', 1933, 'M', 1572), +(41477, 'Cecil', 1933, 'M', 1506), +(41478, 'Calvin', 1933, 'M', 1490), +(41479, 'Milton', 1933, 'M', 1484), +(41480, 'Roland', 1933, 'M', 1473), +(41481, 'Johnnie', 1933, 'M', 1461), +(41482, 'Victor', 1933, 'M', 1430), +(41483, 'Tom', 1933, 'M', 1423), +(41484, 'Benjamin', 1933, 'M', 1412), +(41485, 'Chester', 1933, 'M', 1398), +(41486, 'Wallace', 1933, 'M', 1366), +(41487, 'Sam', 1933, 'M', 1351), +(41488, 'Alan', 1933, 'M', 1343), +(41489, 'Jackie', 1933, 'M', 1340), +(41490, 'Glen', 1933, 'M', 1336), +(41491, 'Phillip', 1933, 'M', 1328), +(41492, 'Stephen', 1933, 'M', 1320), +(41493, 'Keith', 1933, 'M', 1314), +(41494, 'Dean', 1933, 'M', 1310), +(41495, 'Maurice', 1933, 'M', 1309), +(41496, 'Willard', 1933, 'M', 1282), +(41497, 'Claude', 1933, 'M', 1247), +(41498, 'Roosevelt', 1933, 'M', 1209), +(41499, 'Marion', 1933, 'M', 1195), +(41500, 'Manuel', 1933, 'M', 1189), +(41501, 'Edgar', 1933, 'M', 1180), +(41502, 'Jose', 1933, 'M', 1170), +(41503, 'Leslie', 1933, 'M', 1166), +(41504, 'Virgil', 1933, 'M', 1139), +(41505, 'Everett', 1933, 'M', 1125), +(41506, 'Max', 1933, 'M', 1125), +(41507, 'Hugh', 1933, 'M', 1118), +(41508, 'Oscar', 1933, 'M', 1109), +(41509, 'Jessie', 1933, 'M', 1079), +(41510, 'Dick', 1933, 'M', 1045), +(41511, 'Ted', 1933, 'M', 1040), +(41512, 'Billie', 1933, 'M', 1038), +(41513, 'Wesley', 1933, 'M', 1029), +(41514, 'Darrell', 1933, 'M', 1027), +(41515, 'Neil', 1933, 'M', 996), +(41516, 'Homer', 1933, 'M', 965), +(41517, 'Sidney', 1933, 'M', 949), +(41518, 'Jay', 1933, 'M', 946), +(41519, 'Dan', 1933, 'M', 940), +(41520, 'Allan', 1933, 'M', 934), +(41521, 'Hubert', 1933, 'M', 929), +(41522, 'Freddie', 1933, 'M', 924), +(41523, 'Delbert', 1933, 'M', 920), +(41524, 'Lyle', 1933, 'M', 916), +(41525, 'Wilbur', 1933, 'M', 897), +(41526, 'Nicholas', 1933, 'M', 888), +(41527, 'Lowell', 1933, 'M', 880), +(41528, 'Luther', 1933, 'M', 878), +(41529, 'Ben', 1933, 'M', 867), +(41530, 'Morris', 1933, 'M', 867), +(41531, 'Horace', 1933, 'M', 863), +(41532, 'Earnest', 1933, 'M', 856), +(41533, 'Rudolph', 1933, 'M', 848), +(41534, 'Junior', 1933, 'M', 821), +(41535, 'Bennie', 1933, 'M', 813), +(41536, 'Willis', 1933, 'M', 812), +(41537, 'Tony', 1933, 'M', 810), +(41538, 'Guy', 1933, 'M', 790), +(41539, 'Rodney', 1933, 'M', 782), +(41540, 'Carroll', 1933, 'M', 772), +(41541, 'Otis', 1933, 'M', 754), +(41542, 'Lonnie', 1933, 'M', 736), +(41543, 'Clifton', 1933, 'M', 732), +(41544, 'Nathaniel', 1933, 'M', 729), +(41545, 'Steve', 1933, 'M', 727), +(41546, 'Mark', 1933, 'M', 693), +(41547, 'Karl', 1933, 'M', 682), +(41548, 'Marshall', 1933, 'M', 675), +(41549, 'Salvatore', 1933, 'M', 673), +(41550, 'Alton', 1933, 'M', 667), +(41551, 'Joel', 1933, 'M', 666), +(41552, 'Alexander', 1933, 'M', 661), +(41553, 'Archie', 1933, 'M', 659), +(41554, 'Clayton', 1933, 'M', 654), +(41555, 'Leland', 1933, 'M', 645), +(41556, 'Clinton', 1933, 'M', 640), +(41557, 'Juan', 1933, 'M', 630), +(41558, 'Orville', 1933, 'M', 627), +(41559, 'Wilbert', 1933, 'M', 626), +(41560, 'Rex', 1933, 'M', 625), +(41561, 'Bobbie', 1933, 'M', 616), +(41562, 'Doyle', 1933, 'M', 612), +(41563, 'Alex', 1933, 'M', 603), +(41564, 'Benny', 1933, 'M', 594), +(41565, 'Oliver', 1933, 'M', 593), +(41566, 'Wendell', 1933, 'M', 593), +(41567, 'Matthew', 1933, 'M', 581), +(41568, 'Ira', 1933, 'M', 580), +(41569, 'Mike', 1933, 'M', 574), +(41570, 'Merle', 1933, 'M', 573), +(41571, 'Nelson', 1933, 'M', 572), +(41572, 'Terry', 1933, 'M', 571), +(41573, 'Edmund', 1933, 'M', 567), +(41574, 'Carlos', 1933, 'M', 564), +(41575, 'Myron', 1933, 'M', 560), +(41576, 'Ramon', 1933, 'M', 558), +(41577, 'Julius', 1933, 'M', 551), +(41578, 'Loren', 1933, 'M', 547), +(41579, 'Jacob', 1933, 'M', 538), +(41580, 'Elbert', 1933, 'M', 537), +(41581, 'Gerard', 1933, 'M', 536), +(41582, 'Eldon', 1933, 'M', 535), +(41583, 'Ivan', 1933, 'M', 533), +(41584, 'Lynn', 1933, 'M', 529), +(41585, 'Malcolm', 1933, 'M', 526), +(41586, 'Angelo', 1933, 'M', 519), +(41587, 'Buddy', 1933, 'M', 519), +(41588, 'Dewey', 1933, 'M', 519), +(41589, 'Troy', 1933, 'M', 518), +(41590, 'Dwight', 1933, 'M', 516), +(41591, 'Fredrick', 1933, 'M', 515), +(41592, 'Jesus', 1933, 'M', 514), +(41593, 'Pete', 1933, 'M', 513), +(41594, 'Ronnie', 1933, 'M', 512), +(41595, 'Tommie', 1933, 'M', 508), +(41596, 'Danny', 1933, 'M', 502), +(41597, 'Nick', 1933, 'M', 499), +(41598, 'Sylvester', 1933, 'M', 495), +(41599, 'Conrad', 1933, 'M', 493), +(41600, 'Carlton', 1933, 'M', 491), +(41601, 'Barry', 1933, 'M', 489), +(41602, 'Perry', 1933, 'M', 487), +(41603, 'Isaac', 1933, 'M', 479), +(41604, 'Rufus', 1933, 'M', 477), +(41605, 'Antonio', 1933, 'M', 475), +(41606, 'Teddy', 1933, 'M', 475), +(41607, 'Ervin', 1933, 'M', 465), +(41608, 'Aaron', 1933, 'M', 463), +(41609, 'Grady', 1933, 'M', 461), +(41610, 'Forrest', 1933, 'M', 453), +(41611, 'Julian', 1933, 'M', 453), +(41612, 'Irvin', 1933, 'M', 446), +(41613, 'Byron', 1933, 'M', 442), +(41614, 'Sherman', 1933, 'M', 442), +(41615, 'Owen', 1933, 'M', 439), +(41616, 'Stuart', 1933, 'M', 438), +(41617, 'Wilfred', 1933, 'M', 432), +(41618, 'Sheldon', 1933, 'M', 429), +(41619, 'Burton', 1933, 'M', 427), +(41620, 'Laurence', 1933, 'M', 426), +(41621, 'Ellis', 1933, 'M', 425), +(41622, 'Norbert', 1933, 'M', 425), +(41623, 'Mack', 1933, 'M', 419), +(41624, 'Ross', 1933, 'M', 416), +(41625, 'Nathan', 1933, 'M', 413), +(41626, 'Felix', 1933, 'M', 408), +(41627, 'Irving', 1933, 'M', 408), +(41628, 'Bert', 1933, 'M', 407), +(41629, 'Boyd', 1933, 'M', 407), +(41630, 'Loyd', 1933, 'M', 407), +(41631, 'Percy', 1933, 'M', 399), +(41632, 'Ruben', 1933, 'M', 398), +(41633, 'Rudy', 1933, 'M', 396), +(41634, 'Elwood', 1933, 'M', 386), +(41635, 'Dallas', 1933, 'M', 383), +(41636, 'Pat', 1933, 'M', 378), +(41637, 'Dave', 1933, 'M', 376), +(41638, 'Garland', 1933, 'M', 376), +(41639, 'Clark', 1933, 'M', 370), +(41640, 'Emil', 1933, 'M', 370), +(41641, 'Irwin', 1933, 'M', 368), +(41642, 'Harlan', 1933, 'M', 365), +(41643, 'Neal', 1933, 'M', 362), +(41644, 'Emmett', 1933, 'M', 361), +(41645, 'Aubrey', 1933, 'M', 357), +(41646, 'Harley', 1933, 'M', 353), +(41647, 'Sammy', 1933, 'M', 349), +(41648, 'Wilson', 1933, 'M', 349), +(41649, 'Louie', 1933, 'M', 346), +(41650, 'Amos', 1933, 'M', 345), +(41651, 'Timothy', 1933, 'M', 345), +(41652, 'Reginald', 1933, 'M', 341), +(41653, 'Johnie', 1933, 'M', 339), +(41654, 'Marlin', 1933, 'M', 339), +(41655, 'August', 1933, 'M', 337), +(41656, 'Grover', 1933, 'M', 333), +(41657, 'Morton', 1933, 'M', 331), +(41658, 'Darrel', 1933, 'M', 330), +(41659, 'Donnie', 1933, 'M', 325), +(41660, 'Lionel', 1933, 'M', 322), +(41661, 'Otto', 1933, 'M', 322), +(41662, 'Raul', 1933, 'M', 320), +(41663, 'Noel', 1933, 'M', 319), +(41664, 'Mario', 1933, 'M', 317), +(41665, 'Jon', 1933, 'M', 316), +(41666, 'Mary', 1933, 'M', 316), +(41667, 'Preston', 1933, 'M', 316), +(41668, 'Cornelius', 1933, 'M', 315), +(41669, 'Delano', 1933, 'M', 315), +(41670, 'Pedro', 1933, 'M', 310), +(41671, 'Delmar', 1933, 'M', 308), +(41672, 'Dominick', 1933, 'M', 308), +(41673, 'Merlin', 1933, 'M', 302), +(41674, 'Darwin', 1933, 'M', 300), +(41675, 'Frankie', 1933, 'M', 300), +(41676, 'Laverne', 1933, 'M', 299), +(41677, 'Sammie', 1933, 'M', 299), +(41678, 'Steven', 1933, 'M', 295), +(41679, 'Travis', 1933, 'M', 295), +(41680, 'Wade', 1933, 'M', 295), +(41681, 'Austin', 1933, 'M', 294), +(41682, 'Elton', 1933, 'M', 291), +(41683, 'Maynard', 1933, 'M', 289), +(41684, 'Royce', 1933, 'M', 289), +(41685, 'Edmond', 1933, 'M', 288), +(41686, 'Moses', 1933, 'M', 280), +(41687, 'Murray', 1933, 'M', 279), +(41688, 'Alfonso', 1933, 'M', 277), +(41689, 'Dominic', 1933, 'M', 277), +(41690, 'Millard', 1933, 'M', 277), +(41691, 'Francisco', 1933, 'M', 273), +(41692, 'Roscoe', 1933, 'M', 271), +(41693, 'Ed', 1933, 'M', 270), +(41694, 'Carol', 1933, 'M', 268), +(41695, 'Kermit', 1933, 'M', 267), +(41696, 'Carmen', 1933, 'M', 266), +(41697, 'Jerald', 1933, 'M', 263), +(41698, 'Erwin', 1933, 'M', 262), +(41699, 'Gregory', 1933, 'M', 254), +(41700, 'Grant', 1933, 'M', 253), +(41701, 'Alonzo', 1933, 'M', 251), +(41702, 'Norris', 1933, 'M', 251), +(41703, 'Luis', 1933, 'M', 249), +(41704, 'Clair', 1933, 'M', 248), +(41705, 'Thurman', 1933, 'M', 248), +(41706, 'Elvin', 1933, 'M', 247), +(41707, 'Abraham', 1933, 'M', 246), +(41708, 'Charley', 1933, 'M', 246), +(41709, 'Cleveland', 1933, 'M', 246), +(41710, 'Seymour', 1933, 'M', 245), +(41711, 'Lamar', 1933, 'M', 244), +(41712, 'Roberto', 1933, 'M', 244), +(41713, 'Odell', 1933, 'M', 242), +(41714, 'Ned', 1933, 'M', 241), +(41715, 'Marcus', 1933, 'M', 239), +(41716, 'Adam', 1933, 'M', 235), +(41717, 'Hollis', 1933, 'M', 235), +(41718, 'Eric', 1933, 'M', 234), +(41719, 'Harrison', 1933, 'M', 234), +(41720, 'Randall', 1933, 'M', 233), +(41721, 'Andy', 1933, 'M', 232), +(41722, 'Jasper', 1933, 'M', 231), +(41723, 'Sanford', 1933, 'M', 230), +(41724, 'Weldon', 1933, 'M', 229), +(41725, 'Randolph', 1933, 'M', 228), +(41726, 'Reuben', 1933, 'M', 228), +(41727, 'Lavern', 1933, 'M', 226), +(41728, 'Will', 1933, 'M', 223), +(41729, 'Adolph', 1933, 'M', 222), +(41730, 'Woodrow', 1933, 'M', 221), +(41731, 'Lorenzo', 1933, 'M', 219), +(41732, 'Monroe', 1933, 'M', 219), +(41733, 'Ollie', 1933, 'M', 217), +(41734, 'Van', 1933, 'M', 217), +(41735, 'Wiley', 1933, 'M', 216), +(41736, 'Cleo', 1933, 'M', 215), +(41737, 'Stewart', 1933, 'M', 215), +(41738, 'Gale', 1933, 'M', 213), +(41739, 'Shirley', 1933, 'M', 213), +(41740, 'Phil', 1933, 'M', 210), +(41741, 'Rocco', 1933, 'M', 210), +(41742, 'Christopher', 1933, 'M', 208), +(41743, 'Mitchell', 1933, 'M', 208), +(41744, 'Merrill', 1933, 'M', 207), +(41745, 'Wilmer', 1933, 'M', 207), +(41746, 'Gus', 1933, 'M', 206), +(41747, 'Wilburn', 1933, 'M', 206), +(41748, 'Jean', 1933, 'M', 204), +(41749, 'Rolland', 1933, 'M', 200), +(41750, 'Jake', 1933, 'M', 199), +(41751, 'Russel', 1933, 'M', 199), +(41752, 'Hector', 1933, 'M', 198), +(41753, 'Kent', 1933, 'M', 197), +(41754, 'Elliott', 1933, 'M', 196), +(41755, 'Truman', 1933, 'M', 196), +(41756, 'Adrian', 1933, 'M', 195), +(41757, 'Simon', 1933, 'M', 195), +(41758, 'Elijah', 1933, 'M', 194), +(41759, 'Salvador', 1933, 'M', 194), +(41760, 'Emory', 1933, 'M', 189), +(41761, 'Gabriel', 1933, 'M', 188), +(41762, 'Hal', 1933, 'M', 188), +(41763, 'Sterling', 1933, 'M', 186), +(41764, 'Emanuel', 1933, 'M', 184), +(41765, 'Winston', 1933, 'M', 182), +(41766, 'Arlen', 1933, 'M', 180), +(41767, 'Barney', 1933, 'M', 180), +(41768, 'Clement', 1933, 'M', 179), +(41769, 'Coy', 1933, 'M', 179), +(41770, 'Miguel', 1933, 'M', 179), +(41771, 'Armand', 1933, 'M', 178), +(41772, 'Jess', 1933, 'M', 177), +(41773, 'Armando', 1933, 'M', 176), +(41774, 'Alfredo', 1933, 'M', 175), +(41775, 'Frederic', 1933, 'M', 175), +(41776, 'Harris', 1933, 'M', 174), +(41777, 'Talmadge', 1933, 'M', 174), +(41778, 'Basil', 1933, 'M', 173), +(41779, 'Noah', 1933, 'M', 173), +(41780, 'Daryl', 1933, 'M', 172), +(41781, 'Forest', 1933, 'M', 171), +(41782, 'Gail', 1933, 'M', 171), +(41783, 'Al', 1933, 'M', 170), +(41784, 'Buford', 1933, 'M', 169), +(41785, 'Earle', 1933, 'M', 169), +(41786, 'Levi', 1933, 'M', 169), +(41787, 'Dudley', 1933, 'M', 168), +(41788, 'Mervin', 1933, 'M', 168), +(41789, 'Scott', 1933, 'M', 168), +(41790, 'Ricardo', 1933, 'M', 167), +(41791, 'Bud', 1933, 'M', 166), +(41792, 'Carrol', 1933, 'M', 166), +(41793, 'Dwayne', 1933, 'M', 166), +(41794, 'Nolan', 1933, 'M', 166), +(41795, 'Roderick', 1933, 'M', 166), +(41796, 'Rodger', 1933, 'M', 165), +(41797, 'Ward', 1933, 'M', 164), +(41798, 'Patsy', 1933, 'M', 163), +(41799, 'Hershel', 1933, 'M', 162), +(41800, 'Vern', 1933, 'M', 162), +(41801, 'Emery', 1933, 'M', 161), +(41802, 'Bradley', 1933, 'M', 159), +(41803, 'Delmer', 1933, 'M', 159), +(41804, 'Guadalupe', 1933, 'M', 159), +(41805, 'Rene', 1933, 'M', 159), +(41806, 'Eli', 1933, 'M', 157), +(41807, 'Miles', 1933, 'M', 157), +(41808, 'Alva', 1933, 'M', 156), +(41809, 'Milford', 1933, 'M', 156), +(41810, 'Betty', 1933, 'M', 155), +(41811, 'Jackson', 1933, 'M', 155), +(41812, 'Spencer', 1933, 'M', 155), +(41813, 'Huey', 1933, 'M', 154), +(41814, 'Riley', 1933, 'M', 154), +(41815, 'Cyril', 1933, 'M', 151), +(41816, 'Brian', 1933, 'M', 150), +(41817, 'Elmo', 1933, 'M', 150), +(41818, 'Blaine', 1933, 'M', 148), +(41819, 'Freeman', 1933, 'M', 148), +(41820, 'Linwood', 1933, 'M', 147), +(41821, 'Mickey', 1933, 'M', 147), +(41822, 'Booker', 1933, 'M', 146), +(41823, 'Denis', 1933, 'M', 146), +(41824, 'Pablo', 1933, 'M', 146), +(41825, 'Vance', 1933, 'M', 146), +(41826, 'Vito', 1933, 'M', 146), +(41827, 'Claud', 1933, 'M', 145), +(41828, 'Monte', 1933, 'M', 145), +(41829, 'Royal', 1933, 'M', 145), +(41830, 'Solomon', 1933, 'M', 145), +(41831, 'Everette', 1933, 'M', 144), +(41832, 'Dalton', 1933, 'M', 143), +(41833, 'Jeff', 1933, 'M', 143), +(41834, 'Silas', 1933, 'M', 143), +(41835, 'Chris', 1933, 'M', 142), +(41836, 'Connie', 1933, 'M', 142), +(41837, 'Normand', 1933, 'M', 142), +(41838, 'Wilton', 1933, 'M', 142), +(41839, 'Elias', 1933, 'M', 141), +(41840, 'Herschel', 1933, 'M', 141), +(41841, 'Ulysses', 1933, 'M', 141), +(41842, 'Anton', 1933, 'M', 140), +(41843, 'Denver', 1933, 'M', 140), +(41844, 'Wilford', 1933, 'M', 139), +(41845, 'Lenard', 1933, 'M', 137), +(41846, 'Carmine', 1933, 'M', 136), +(41847, 'Rodolfo', 1933, 'M', 136), +(41848, 'Kay', 1933, 'M', 135), +(41849, 'Winfred', 1933, 'M', 135), +(41850, 'Dana', 1933, 'M', 134), +(41851, 'Odis', 1933, 'M', 134), +(41852, 'Franklyn', 1933, 'M', 133), +(41853, 'Kennith', 1933, 'M', 133), +(41854, 'Kevin', 1933, 'M', 133), +(41855, 'Fernando', 1933, 'M', 132), +(41856, 'Roman', 1933, 'M', 131), +(41857, 'Saul', 1933, 'M', 131), +(41858, 'Warner', 1933, 'M', 130), +(41859, 'Rafael', 1933, 'M', 129), +(41860, 'Arturo', 1933, 'M', 128), +(41861, 'Fletcher', 1933, 'M', 128), +(41862, 'Galen', 1933, 'M', 128), +(41863, 'Bernie', 1933, 'M', 127), +(41864, 'Bertram', 1933, 'M', 127), +(41865, 'Fredric', 1933, 'M', 127), +(41866, 'Jonathan', 1933, 'M', 127), +(41867, 'Cletus', 1933, 'M', 125), +(41868, 'Elroy', 1933, 'M', 125), +(41869, 'Gayle', 1933, 'M', 125), +(41870, 'Hoyt', 1933, 'M', 124), +(41871, 'Milo', 1933, 'M', 124), +(41872, 'Alphonso', 1933, 'M', 123), +(41873, 'Emerson', 1933, 'M', 122), +(41874, 'Enrique', 1933, 'M', 122), +(41875, 'Ernie', 1933, 'M', 122), +(41876, 'Morgan', 1933, 'M', 122), +(41877, 'Thaddeus', 1933, 'M', 122), +(41878, 'Arlie', 1933, 'M', 121), +(41879, 'Dewayne', 1933, 'M', 121), +(41880, 'Rogers', 1933, 'M', 121), +(41881, 'Rosevelt', 1933, 'M', 121), +(41882, 'Kelly', 1933, 'M', 120), +(41883, 'Orval', 1933, 'M', 120), +(41884, 'Tomas', 1933, 'M', 120), +(41885, 'Barbara', 1933, 'M', 119), +(41886, 'Emilio', 1933, 'M', 119), +(41887, 'Pasquale', 1933, 'M', 119), +(41888, 'Carlo', 1933, 'M', 118), +(41889, 'Olen', 1933, 'M', 118), +(41890, 'Dorothy', 1933, 'M', 117), +(41891, 'Freddy', 1933, 'M', 117), +(41892, 'Garry', 1933, 'M', 117), +(41893, 'Augustine', 1933, 'M', 116), +(41894, 'Buster', 1933, 'M', 116), +(41895, 'Domingo', 1933, 'M', 116), +(41896, 'Shelby', 1933, 'M', 116), +(41897, 'Clay', 1933, 'M', 115), +(41898, 'Lyman', 1933, 'M', 115), +(41899, 'Alden', 1933, 'M', 114), +(41900, 'Arden', 1933, 'M', 114), +(41901, 'Ernesto', 1933, 'M', 114), +(41902, 'Burl', 1933, 'M', 113), +(41903, 'Felipe', 1933, 'M', 113), +(41904, 'Lupe', 1933, 'M', 113), +(41905, 'Terrence', 1933, 'M', 113), +(41906, 'Bruno', 1933, 'M', 111), +(41907, 'Craig', 1933, 'M', 111), +(41908, 'Jeremiah', 1933, 'M', 111), +(41909, 'Newton', 1933, 'M', 111), +(41910, 'Alberto', 1933, 'M', 110), +(41911, 'Alphonse', 1933, 'M', 110), +(41912, 'Bennett', 1933, 'M', 110), +(41913, 'Luke', 1933, 'M', 110), +(41914, 'Bryan', 1933, 'M', 109), +(41915, 'Ellsworth', 1933, 'M', 109), +(41916, 'Evan', 1933, 'M', 108), +(41917, 'Hiram', 1933, 'M', 108), +(41918, 'Hobert', 1933, 'M', 108), +(41919, 'Major', 1933, 'M', 108), +(41920, 'Olin', 1933, 'M', 108), +(41921, 'Ken', 1933, 'M', 107), +(41922, 'Gilberto', 1933, 'M', 106), +(41923, 'Anderson', 1933, 'M', 105), +(41924, 'Denny', 1933, 'M', 105), +(41925, 'Houston', 1933, 'M', 105), +(41926, 'Isaiah', 1933, 'M', 105), +(41927, 'Merlyn', 1933, 'M', 105), +(41928, 'Andres', 1933, 'M', 104), +(41929, 'Columbus', 1933, 'M', 104), +(41930, 'Harmon', 1933, 'M', 104), +(41931, 'Sonny', 1933, 'M', 104), +(41932, 'Boyce', 1933, 'M', 103), +(41933, 'Jules', 1933, 'M', 103), +(41934, 'Vaughn', 1933, 'M', 103), +(41935, 'Ignacio', 1933, 'M', 102), +(41936, 'Jerold', 1933, 'M', 102), +(41937, 'Joshua', 1933, 'M', 102), +(41938, 'Micheal', 1933, 'M', 101), +(41939, 'Orlando', 1933, 'M', 101), +(41940, 'Tim', 1933, 'M', 101), +(41941, 'Angel', 1933, 'M', 100), +(41942, 'Dwain', 1933, 'M', 100), +(41943, 'Foster', 1933, 'M', 100), +(41944, 'Julio', 1933, 'M', 100), +(41945, 'Raleigh', 1933, 'M', 100), +(41946, 'Sherwood', 1933, 'M', 100), +(41947, 'Mary', 1934, 'F', 56918), +(41948, 'Betty', 1934, 'F', 31079), +(41949, 'Barbara', 1934, 'F', 29232), +(41950, 'Shirley', 1934, 'F', 22836), +(41951, 'Dorothy', 1934, 'F', 21280), +(41952, 'Patricia', 1934, 'F', 20845), +(41953, 'Joan', 1934, 'F', 19464), +(41954, 'Margaret', 1934, 'F', 15146), +(41955, 'Helen', 1934, 'F', 14100), +(41956, 'Nancy', 1934, 'F', 13517), +(41957, 'Doris', 1934, 'F', 11623), +(41958, 'Joyce', 1934, 'F', 11462), +(41959, 'Ruth', 1934, 'F', 10564), +(41960, 'Carol', 1934, 'F', 10271), +(41961, 'Virginia', 1934, 'F', 10000), +(41962, 'Jean', 1934, 'F', 9715), +(41963, 'Marilyn', 1934, 'F', 9382), +(41964, 'Elizabeth', 1934, 'F', 9342), +(41965, 'Frances', 1934, 'F', 9208), +(41966, 'Lois', 1934, 'F', 8385), +(41967, 'Janet', 1934, 'F', 8067), +(41968, 'Beverly', 1934, 'F', 7886), +(41969, 'Donna', 1934, 'F', 7866), +(41970, 'Norma', 1934, 'F', 7784), +(41971, 'Alice', 1934, 'F', 7781), +(41972, 'Dolores', 1934, 'F', 7688), +(41973, 'Martha', 1934, 'F', 7603), +(41974, 'Phyllis', 1934, 'F', 7179), +(41975, 'Evelyn', 1934, 'F', 6977), +(41976, 'Gloria', 1934, 'F', 6811), +(41977, 'Anna', 1934, 'F', 6678), +(41978, 'Ann', 1934, 'F', 6639), +(41979, 'Carolyn', 1934, 'F', 6467), +(41980, 'Marie', 1934, 'F', 6325), +(41981, 'Mildred', 1934, 'F', 6177), +(41982, 'Peggy', 1934, 'F', 6024), +(41983, 'Rose', 1934, 'F', 5580), +(41984, 'Annie', 1934, 'F', 5021), +(41985, 'Ruby', 1934, 'F', 4976), +(41986, 'Louise', 1934, 'F', 4974), +(41987, 'Marjorie', 1934, 'F', 4970), +(41988, 'Catherine', 1934, 'F', 4936), +(41989, 'Geraldine', 1934, 'F', 4835), +(41990, 'Eleanor', 1934, 'F', 4717), +(41991, 'Joanne', 1934, 'F', 4543), +(41992, 'June', 1934, 'F', 4385), +(41993, 'Wanda', 1934, 'F', 4369), +(41994, 'Jane', 1934, 'F', 4357), +(41995, 'Irene', 1934, 'F', 4348), +(41996, 'Joann', 1934, 'F', 4146), +(41997, 'Delores', 1934, 'F', 3990), +(41998, 'Lillian', 1934, 'F', 3972), +(41999, 'Arlene', 1934, 'F', 3914), +(42000, 'Elaine', 1934, 'F', 3899), +(42001, 'Edna', 1934, 'F', 3808), +(42002, 'Lorraine', 1934, 'F', 3775), +(42003, 'Marlene', 1934, 'F', 3754), +(42004, 'Bonnie', 1934, 'F', 3751), +(42005, 'Patsy', 1934, 'F', 3748), +(42006, 'Josephine', 1934, 'F', 3740), +(42007, 'Florence', 1934, 'F', 3734), +(42008, 'Sally', 1934, 'F', 3726), +(42009, 'Rita', 1934, 'F', 3683), +(42010, 'Juanita', 1934, 'F', 3662), +(42011, 'Thelma', 1934, 'F', 3647), +(42012, 'Gladys', 1934, 'F', 3610), +(42013, 'Sarah', 1934, 'F', 3598), +(42014, 'Janice', 1934, 'F', 3587), +(42015, 'Audrey', 1934, 'F', 3581), +(42016, 'Sylvia', 1934, 'F', 3475), +(42017, 'Pauline', 1934, 'F', 3446), +(42018, 'Charlotte', 1934, 'F', 3432), +(42019, 'Wilma', 1934, 'F', 3312), +(42020, 'Kathleen', 1934, 'F', 3278), +(42021, 'Jo', 1934, 'F', 3257), +(42022, 'Clara', 1934, 'F', 3224), +(42023, 'Theresa', 1934, 'F', 3192), +(42024, 'Ethel', 1934, 'F', 3177), +(42025, 'Grace', 1934, 'F', 3087), +(42026, 'Jacqueline', 1934, 'F', 3037), +(42027, 'Edith', 1934, 'F', 3011), +(42028, 'Bernice', 1934, 'F', 2977), +(42029, 'Loretta', 1934, 'F', 2976), +(42030, 'Lucille', 1934, 'F', 2947), +(42031, 'Emma', 1934, 'F', 2939), +(42032, 'Marion', 1934, 'F', 2881), +(42033, 'Hazel', 1934, 'F', 2809), +(42034, 'Anne', 1934, 'F', 2784), +(42035, 'Carole', 1934, 'F', 2655), +(42036, 'Darlene', 1934, 'F', 2606), +(42037, 'Esther', 1934, 'F', 2579), +(42038, 'Billie', 1934, 'F', 2555), +(42039, 'Sandra', 1934, 'F', 2552), +(42040, 'Judith', 1934, 'F', 2458), +(42041, 'Ellen', 1934, 'F', 2456), +(42042, 'Laura', 1934, 'F', 2435), +(42043, 'Marian', 1934, 'F', 2426), +(42044, 'Vivian', 1934, 'F', 2412), +(42045, 'Beatrice', 1934, 'F', 2408), +(42046, 'Eva', 1934, 'F', 2388), +(42047, 'Willie', 1934, 'F', 2388), +(42048, 'Katherine', 1934, 'F', 2386), +(42049, 'Margie', 1934, 'F', 2373), +(42050, 'Roberta', 1934, 'F', 2372), +(42051, 'Julia', 1934, 'F', 2358), +(42052, 'Jeanette', 1934, 'F', 2293), +(42053, 'Elsie', 1934, 'F', 2271), +(42054, 'Kathryn', 1934, 'F', 2258), +(42055, 'Eileen', 1934, 'F', 2226), +(42056, 'Bobbie', 1934, 'F', 2192), +(42057, 'Rosemary', 1934, 'F', 2131), +(42058, 'Bertha', 1934, 'F', 2080), +(42059, 'Ella', 1934, 'F', 2073), +(42060, 'Maxine', 1934, 'F', 2018), +(42061, 'Maria', 1934, 'F', 1992), +(42062, 'Lillie', 1934, 'F', 1977), +(42063, 'Constance', 1934, 'F', 1975), +(42064, 'Ida', 1934, 'F', 1972), +(42065, 'Agnes', 1934, 'F', 1934), +(42066, 'Sue', 1934, 'F', 1932), +(42067, 'Christine', 1934, 'F', 1919), +(42068, 'Georgia', 1934, 'F', 1918), +(42069, 'Alma', 1934, 'F', 1901), +(42070, 'Diane', 1934, 'F', 1874), +(42071, 'Sara', 1934, 'F', 1843), +(42072, 'Vera', 1934, 'F', 1837), +(42073, 'Nellie', 1934, 'F', 1836), +(42074, 'Bessie', 1934, 'F', 1832), +(42075, 'Jessie', 1934, 'F', 1791), +(42076, 'Anita', 1934, 'F', 1785), +(42077, 'Jeanne', 1934, 'F', 1762), +(42078, 'Mattie', 1934, 'F', 1707), +(42079, 'Minnie', 1934, 'F', 1663), +(42080, 'Lucy', 1934, 'F', 1647), +(42081, 'Gertrude', 1934, 'F', 1582), +(42082, 'Rosa', 1934, 'F', 1582), +(42083, 'Yvonne', 1934, 'F', 1495), +(42084, 'Susan', 1934, 'F', 1492), +(42085, 'Leona', 1934, 'F', 1473), +(42086, 'Geneva', 1934, 'F', 1470), +(42087, 'Viola', 1934, 'F', 1438), +(42088, 'Myrtle', 1934, 'F', 1435), +(42089, 'Kay', 1934, 'F', 1429), +(42090, 'Velma', 1934, 'F', 1426), +(42091, 'Connie', 1934, 'F', 1423), +(42092, 'Faye', 1934, 'F', 1419), +(42093, 'Mae', 1934, 'F', 1382), +(42094, 'Violet', 1934, 'F', 1370), +(42095, 'Naomi', 1934, 'F', 1358), +(42096, 'Sharon', 1934, 'F', 1355), +(42097, 'Charlene', 1934, 'F', 1343), +(42098, 'Joy', 1934, 'F', 1341), +(42099, 'Suzanne', 1934, 'F', 1340), +(42100, 'Pearl', 1934, 'F', 1338), +(42101, 'Claire', 1934, 'F', 1309), +(42102, 'Harriet', 1934, 'F', 1279), +(42103, 'Marcia', 1934, 'F', 1267), +(42104, 'Carrie', 1934, 'F', 1259), +(42105, 'Dora', 1934, 'F', 1252), +(42106, 'Rosie', 1934, 'F', 1239), +(42107, 'Eunice', 1934, 'F', 1231), +(42108, 'Pat', 1934, 'F', 1204), +(42109, 'Rachel', 1934, 'F', 1180), +(42110, 'Gail', 1934, 'F', 1179), +(42111, 'Rebecca', 1934, 'F', 1161), +(42112, 'Lula', 1934, 'F', 1126), +(42113, 'Alberta', 1934, 'F', 1120), +(42114, 'Cora', 1934, 'F', 1114), +(42115, 'Stella', 1934, 'F', 1094), +(42116, 'Lola', 1934, 'F', 1091), +(42117, 'Maureen', 1934, 'F', 1085), +(42118, 'Lena', 1934, 'F', 1077), +(42119, 'Patty', 1934, 'F', 1072), +(42120, 'Caroline', 1934, 'F', 1069), +(42121, 'Emily', 1934, 'F', 1068), +(42122, 'Hattie', 1934, 'F', 1066), +(42123, 'Verna', 1934, 'F', 1040), +(42124, 'Nina', 1934, 'F', 1026), +(42125, 'Cynthia', 1934, 'F', 1022), +(42126, 'Erma', 1934, 'F', 1008), +(42127, 'Gwendolyn', 1934, 'F', 1001), +(42128, 'Linda', 1934, 'F', 1001), +(42129, 'Genevieve', 1934, 'F', 969), +(42130, 'Judy', 1934, 'F', 960), +(42131, 'Fannie', 1934, 'F', 957), +(42132, 'Jennie', 1934, 'F', 944), +(42133, 'Daisy', 1934, 'F', 939), +(42134, 'Marguerite', 1934, 'F', 934), +(42135, 'Beulah', 1934, 'F', 932), +(42136, 'Deloris', 1934, 'F', 931), +(42137, 'Johnnie', 1934, 'F', 931), +(42138, 'Hilda', 1934, 'F', 929), +(42139, 'Ramona', 1934, 'F', 929), +(42140, 'Glenda', 1934, 'F', 921), +(42141, 'Jeannette', 1934, 'F', 919), +(42142, 'Bettie', 1934, 'F', 918), +(42143, 'Flora', 1934, 'F', 908), +(42144, 'Rosalie', 1934, 'F', 900), +(42145, 'Opal', 1934, 'F', 893), +(42146, 'Nora', 1934, 'F', 887), +(42147, 'Rosemarie', 1934, 'F', 883), +(42148, 'Inez', 1934, 'F', 882), +(42149, 'Annette', 1934, 'F', 872), +(42150, 'Mamie', 1934, 'F', 865), +(42151, 'Diana', 1934, 'F', 860), +(42152, 'Jackie', 1934, 'F', 858), +(42153, 'Ernestine', 1934, 'F', 853), +(42154, 'Carmen', 1934, 'F', 852), +(42155, 'Mabel', 1934, 'F', 852), +(42156, 'Lila', 1934, 'F', 844), +(42157, 'Myrna', 1934, 'F', 836), +(42158, 'Irma', 1934, 'F', 834), +(42159, 'Ada', 1934, 'F', 833), +(42160, 'Dixie', 1934, 'F', 832), +(42161, 'Muriel', 1934, 'F', 829), +(42162, 'Iris', 1934, 'F', 824), +(42163, 'Laverne', 1934, 'F', 820), +(42164, 'Miriam', 1934, 'F', 818), +(42165, 'Marcella', 1934, 'F', 800), +(42166, 'Della', 1934, 'F', 796), +(42167, 'Madeline', 1934, 'F', 794), +(42168, 'Sheila', 1934, 'F', 781), +(42169, 'Melba', 1934, 'F', 773), +(42170, 'Janie', 1934, 'F', 772), +(42171, 'Eula', 1934, 'F', 769), +(42172, 'Imogene', 1934, 'F', 768), +(42173, 'Maryann', 1934, 'F', 762), +(42174, 'Mable', 1934, 'F', 761), +(42175, 'Paula', 1934, 'F', 759), +(42176, 'Susie', 1934, 'F', 754), +(42177, 'Bette', 1934, 'F', 741), +(42178, 'Bettye', 1934, 'F', 740), +(42179, 'Maggie', 1934, 'F', 726), +(42180, 'Blanche', 1934, 'F', 721), +(42181, 'Eloise', 1934, 'F', 719), +(42182, 'Colleen', 1934, 'F', 711), +(42183, 'Katie', 1934, 'F', 710), +(42184, 'Teresa', 1934, 'F', 707), +(42185, 'Regina', 1934, 'F', 681), +(42186, 'Priscilla', 1934, 'F', 664), +(42187, 'Jacquelyn', 1934, 'F', 662), +(42188, 'Nadine', 1934, 'F', 658), +(42189, 'Freda', 1934, 'F', 651), +(42190, 'Sadie', 1934, 'F', 649), +(42191, 'Reba', 1934, 'F', 636), +(42192, 'Mona', 1934, 'F', 635), +(42193, 'Fay', 1934, 'F', 633), +(42194, 'Lydia', 1934, 'F', 633), +(42195, 'Lorene', 1934, 'F', 632), +(42196, 'Angela', 1934, 'F', 626), +(42197, 'Marianne', 1934, 'F', 620), +(42198, 'Bernadette', 1934, 'F', 619), +(42199, 'Antoinette', 1934, 'F', 617), +(42200, 'Jimmie', 1934, 'F', 615), +(42201, 'Myra', 1934, 'F', 593), +(42202, 'Ollie', 1934, 'F', 591), +(42203, 'Frankie', 1934, 'F', 590), +(42204, 'Karen', 1934, 'F', 588), +(42205, 'Victoria', 1934, 'F', 584), +(42206, 'Estelle', 1934, 'F', 581), +(42207, 'Dorthy', 1934, 'F', 575), +(42208, 'Ina', 1934, 'F', 571), +(42209, 'Lou', 1934, 'F', 558), +(42210, 'Amelia', 1934, 'F', 553), +(42211, 'Nettie', 1934, 'F', 544), +(42212, 'Sallie', 1934, 'F', 539), +(42213, 'Essie', 1934, 'F', 538), +(42214, 'Henrietta', 1934, 'F', 531), +(42215, 'Natalie', 1934, 'F', 530), +(42216, 'Glenna', 1934, 'F', 515), +(42217, 'Ora', 1934, 'F', 512), +(42218, 'Winifred', 1934, 'F', 510), +(42219, 'Iva', 1934, 'F', 504), +(42220, 'Claudia', 1934, 'F', 500), +(42221, 'Etta', 1934, 'F', 498), +(42222, 'Jewel', 1934, 'F', 494), +(42223, 'Nelda', 1934, 'F', 493), +(42224, 'Willa', 1934, 'F', 486), +(42225, 'Mavis', 1934, 'F', 485), +(42226, 'Olga', 1934, 'F', 481), +(42227, 'Joanna', 1934, 'F', 480), +(42228, 'Gayle', 1934, 'F', 476), +(42229, 'Lavonne', 1934, 'F', 468), +(42230, 'Lela', 1934, 'F', 467), +(42231, 'Fern', 1934, 'F', 463), +(42232, 'Lenora', 1934, 'F', 459), +(42233, 'Veronica', 1934, 'F', 453), +(42234, 'Cleo', 1934, 'F', 448), +(42235, 'Sondra', 1934, 'F', 448), +(42236, 'Lottie', 1934, 'F', 445), +(42237, 'Celia', 1934, 'F', 444), +(42238, 'Ola', 1934, 'F', 444), +(42239, 'Claudette', 1934, 'F', 441), +(42240, 'Dorothea', 1934, 'F', 440), +(42241, 'Clarice', 1934, 'F', 439), +(42242, 'Cecilia', 1934, 'F', 438), +(42243, 'Polly', 1934, 'F', 436), +(42244, 'Gracie', 1934, 'F', 435), +(42245, 'Effie', 1934, 'F', 431), +(42246, 'Isabel', 1934, 'F', 431), +(42247, 'Bernadine', 1934, 'F', 430), +(42248, 'Nell', 1934, 'F', 427), +(42249, 'Earline', 1934, 'F', 425), +(42250, 'Rhoda', 1934, 'F', 425), +(42251, 'Jewell', 1934, 'F', 424), +(42252, 'Lee', 1934, 'F', 422), +(42253, 'Addie', 1934, 'F', 420), +(42254, 'Leola', 1934, 'F', 413), +(42255, 'Janis', 1934, 'F', 412), +(42256, 'Elinor', 1934, 'F', 409), +(42257, 'Arline', 1934, 'F', 408), +(42258, 'Rosetta', 1934, 'F', 399), +(42259, 'Helene', 1934, 'F', 397), +(42260, 'Adele', 1934, 'F', 396), +(42261, 'Leah', 1934, 'F', 395), +(42262, 'Adrienne', 1934, 'F', 390), +(42263, 'Angelina', 1934, 'F', 389), +(42264, 'Luella', 1934, 'F', 388), +(42265, 'Goldie', 1934, 'F', 383), +(42266, 'Jerry', 1934, 'F', 382), +(42267, 'Josie', 1934, 'F', 379), +(42268, 'Ruthie', 1934, 'F', 377), +(42269, 'Cecelia', 1934, 'F', 374), +(42270, 'Estella', 1934, 'F', 371), +(42271, 'May', 1934, 'F', 371), +(42272, 'Ila', 1934, 'F', 367), +(42273, 'Lupe', 1934, 'F', 367), +(42274, 'Earnestine', 1934, 'F', 361), +(42275, 'Elva', 1934, 'F', 359), +(42276, 'Olivia', 1934, 'F', 359), +(42277, 'Betsy', 1934, 'F', 357), +(42278, 'Lizzie', 1934, 'F', 357), +(42279, 'Angeline', 1934, 'F', 356), +(42280, 'Alta', 1934, 'F', 355), +(42281, 'Rena', 1934, 'F', 355), +(42282, 'Francis', 1934, 'F', 354), +(42283, 'Lenore', 1934, 'F', 350), +(42284, 'Corinne', 1934, 'F', 348), +(42285, 'Dona', 1934, 'F', 348), +(42286, 'Earlene', 1934, 'F', 348), +(42287, 'Beverley', 1934, 'F', 347), +(42288, 'Julie', 1934, 'F', 346), +(42289, 'Beth', 1934, 'F', 343), +(42290, 'Marlys', 1934, 'F', 343), +(42291, 'Jeannine', 1934, 'F', 334), +(42292, 'Dolly', 1934, 'F', 328), +(42293, 'Olive', 1934, 'F', 327), +(42294, 'Tommie', 1934, 'F', 327), +(42295, 'Adeline', 1934, 'F', 326), +(42296, 'Faith', 1934, 'F', 325), +(42297, 'Amy', 1934, 'F', 321), +(42298, 'Elnora', 1934, 'F', 320), +(42299, 'Greta', 1934, 'F', 319), +(42300, 'Valerie', 1934, 'F', 319), +(42301, 'Dianne', 1934, 'F', 312), +(42302, 'Eddie', 1934, 'F', 312), +(42303, 'Renee', 1934, 'F', 312), +(42304, 'Elvira', 1934, 'F', 311), +(42305, 'Lorna', 1934, 'F', 309), +(42306, 'Nola', 1934, 'F', 307), +(42307, 'Winnie', 1934, 'F', 306), +(42308, 'Lynn', 1934, 'F', 305), +(42309, 'Nona', 1934, 'F', 305), +(42310, 'Robbie', 1934, 'F', 301), +(42311, 'Pearlie', 1934, 'F', 299), +(42312, 'Dollie', 1934, 'F', 297), +(42313, 'Neva', 1934, 'F', 294), +(42314, 'Molly', 1934, 'F', 293), +(42315, 'Virgie', 1934, 'F', 292), +(42316, 'Corrine', 1934, 'F', 290), +(42317, 'Delia', 1934, 'F', 290), +(42318, 'Dawn', 1934, 'F', 288), +(42319, 'Gretchen', 1934, 'F', 288), +(42320, 'Marylou', 1934, 'F', 287), +(42321, 'Elma', 1934, 'F', 285), +(42322, 'Christina', 1934, 'F', 284), +(42323, 'Guadalupe', 1934, 'F', 284), +(42324, 'Mollie', 1934, 'F', 284), +(42325, 'Nannie', 1934, 'F', 283), +(42326, 'Annabelle', 1934, 'F', 282), +(42327, 'Johanna', 1934, 'F', 281), +(42328, 'Lucile', 1934, 'F', 281), +(42329, 'Deborah', 1934, 'F', 280), +(42330, 'Janette', 1934, 'F', 278), +(42331, 'Margery', 1934, 'F', 277), +(42332, 'Carmela', 1934, 'F', 276), +(42333, 'Flossie', 1934, 'F', 276), +(42334, 'Reva', 1934, 'F', 276), +(42335, 'Harriett', 1934, 'F', 273), +(42336, 'Millie', 1934, 'F', 273), +(42337, 'Isabelle', 1934, 'F', 272), +(42338, 'Odessa', 1934, 'F', 272), +(42339, 'Zelma', 1934, 'F', 272), +(42340, 'Cornelia', 1934, 'F', 271), +(42341, 'Doreen', 1934, 'F', 271), +(42342, 'Sybil', 1934, 'F', 270), +(42343, 'Frieda', 1934, 'F', 267), +(42344, 'Robert', 1934, 'F', 266), +(42345, 'Joe', 1934, 'F', 265), +(42346, 'Eugenia', 1934, 'F', 264), +(42347, 'Selma', 1934, 'F', 264), +(42348, 'Avis', 1934, 'F', 262), +(42349, 'James', 1934, 'F', 262), +(42350, 'Sophie', 1934, 'F', 262), +(42351, 'Therese', 1934, 'F', 262), +(42352, 'Eleanore', 1934, 'F', 259), +(42353, 'Monica', 1934, 'F', 259), +(42354, 'John', 1934, 'F', 257), +(42355, 'Carlene', 1934, 'F', 256), +(42356, 'Louella', 1934, 'F', 255), +(42357, 'Rosella', 1934, 'F', 255), +(42358, 'Wilda', 1934, 'F', 255), +(42359, 'Gwen', 1934, 'F', 252), +(42360, 'Margarita', 1934, 'F', 251), +(42361, 'Letha', 1934, 'F', 248), +(42362, 'Bobby', 1934, 'F', 247), +(42363, 'Florine', 1934, 'F', 246), +(42364, 'Carmella', 1934, 'F', 245), +(42365, 'Lora', 1934, 'F', 245), +(42366, 'Marilynn', 1934, 'F', 245), +(42367, 'Melva', 1934, 'F', 245), +(42368, 'Bonita', 1934, 'F', 242), +(42369, 'Leila', 1934, 'F', 241), +(42370, 'Hannah', 1934, 'F', 239), +(42371, 'Yolanda', 1934, 'F', 238), +(42372, 'Alicia', 1934, 'F', 237), +(42373, 'Gay', 1934, 'F', 236), +(42374, 'Sonia', 1934, 'F', 235), +(42375, 'Jannie', 1934, 'F', 233), +(42376, 'Edwina', 1934, 'F', 232), +(42377, 'Alyce', 1934, 'F', 231), +(42378, 'Bennie', 1934, 'F', 228), +(42379, 'Georgie', 1934, 'F', 226), +(42380, 'Freddie', 1934, 'F', 225), +(42381, 'Ilene', 1934, 'F', 223), +(42382, 'Queen', 1934, 'F', 223), +(42383, 'Corine', 1934, 'F', 221), +(42384, 'Rae', 1934, 'F', 221), +(42385, 'Elouise', 1934, 'F', 219), +(42386, 'Antonia', 1934, 'F', 216), +(42387, 'Lilly', 1934, 'F', 216), +(42388, 'Lily', 1934, 'F', 216), +(42389, 'Loraine', 1934, 'F', 214), +(42390, 'Noreen', 1934, 'F', 214), +(42391, 'Ima', 1934, 'F', 213), +(42392, 'Pansy', 1934, 'F', 213), +(42393, 'Aileen', 1934, 'F', 212), +(42394, 'Aurora', 1934, 'F', 211), +(42395, 'Merle', 1934, 'F', 211), +(42396, 'Callie', 1934, 'F', 210), +(42397, 'Cecile', 1934, 'F', 209), +(42398, 'Shirlee', 1934, 'F', 209), +(42399, 'Aline', 1934, 'F', 208), +(42400, 'Consuelo', 1934, 'F', 208), +(42401, 'Retha', 1934, 'F', 206), +(42402, 'Angie', 1934, 'F', 202), +(42403, 'Matilda', 1934, 'F', 201), +(42404, 'Allie', 1934, 'F', 200), +(42405, 'Carla', 1934, 'F', 200), +(42406, 'Winona', 1934, 'F', 199), +(42407, 'Ophelia', 1934, 'F', 196), +(42408, 'Maude', 1934, 'F', 195), +(42409, 'Roxie', 1934, 'F', 194), +(42410, 'Twila', 1934, 'F', 194), +(42411, 'Lorena', 1934, 'F', 193), +(42412, 'Lessie', 1934, 'F', 191), +(42413, 'Sherry', 1934, 'F', 191), +(42414, 'Amanda', 1934, 'F', 189), +(42415, 'Rosalyn', 1934, 'F', 189), +(42416, 'Zelda', 1934, 'F', 189), +(42417, 'Bertie', 1934, 'F', 188), +(42418, 'Clare', 1934, 'F', 188), +(42419, 'Helena', 1934, 'F', 187), +(42420, 'Hope', 1934, 'F', 187), +(42421, 'Evangeline', 1934, 'F', 186), +(42422, 'Sonya', 1934, 'F', 183), +(42423, 'Lona', 1934, 'F', 180), +(42424, 'Reta', 1934, 'F', 180), +(42425, 'Lorine', 1934, 'F', 179), +(42426, 'Iona', 1934, 'F', 178), +(42427, 'Peggie', 1934, 'F', 178), +(42428, 'Eliza', 1934, 'F', 177), +(42429, 'Delois', 1934, 'F', 175), +(42430, 'Freida', 1934, 'F', 175), +(42431, 'Madelyn', 1934, 'F', 175), +(42432, 'Madge', 1934, 'F', 175), +(42433, 'William', 1934, 'F', 175), +(42434, 'Allene', 1934, 'F', 174), +(42435, 'Nita', 1934, 'F', 174), +(42436, 'Concetta', 1934, 'F', 170), +(42437, 'Delphine', 1934, 'F', 170), +(42438, 'Vernell', 1934, 'F', 170), +(42439, 'Francine', 1934, 'F', 169), +(42440, 'Leta', 1934, 'F', 169), +(42441, 'Marietta', 1934, 'F', 169), +(42442, 'Charles', 1934, 'F', 168), +(42443, 'Claudine', 1934, 'F', 168), +(42444, 'Mercedes', 1934, 'F', 168), +(42445, 'Rowena', 1934, 'F', 168), +(42446, 'Katharine', 1934, 'F', 167), +(42447, 'Althea', 1934, 'F', 166), +(42448, 'Camille', 1934, 'F', 164), +(42449, 'Elena', 1934, 'F', 164), +(42450, 'Hester', 1934, 'F', 161), +(42451, 'Jan', 1934, 'F', 161), +(42452, 'Ladonna', 1934, 'F', 161), +(42453, 'Lucia', 1934, 'F', 161), +(42454, 'Alene', 1934, 'F', 160), +(42455, 'George', 1934, 'F', 160), +(42456, 'Lelia', 1934, 'F', 159), +(42457, 'Lynne', 1934, 'F', 159), +(42458, 'Rosalee', 1934, 'F', 158), +(42459, 'Berniece', 1934, 'F', 157), +(42460, 'Ester', 1934, 'F', 157), +(42461, 'Marjory', 1934, 'F', 157), +(42462, 'Maudie', 1934, 'F', 157), +(42463, 'Jenny', 1934, 'F', 156), +(42464, 'Verla', 1934, 'F', 156), +(42465, 'Delma', 1934, 'F', 155), +(42466, 'Ardis', 1934, 'F', 154), +(42467, 'Doretha', 1934, 'F', 154), +(42468, 'Dortha', 1934, 'F', 154), +(42469, 'Dorris', 1934, 'F', 153), +(42470, 'Esperanza', 1934, 'F', 153), +(42471, 'Leota', 1934, 'F', 153), +(42472, 'Belva', 1934, 'F', 151), +(42473, 'Rheta', 1934, 'F', 151), +(42474, 'Ione', 1934, 'F', 150), +(42475, 'Nan', 1934, 'F', 150), +(42476, 'Ardith', 1934, 'F', 149), +(42477, 'Germaine', 1934, 'F', 149), +(42478, 'Jill', 1934, 'F', 149), +(42479, 'Ofelia', 1934, 'F', 148), +(42480, 'Roslyn', 1934, 'F', 148), +(42481, 'Pamela', 1934, 'F', 147), +(42482, 'Beryl', 1934, 'F', 146), +(42483, 'Lavon', 1934, 'F', 146), +(42484, 'Marlyn', 1934, 'F', 146), +(42485, 'Patti', 1934, 'F', 146), +(42486, 'Terry', 1934, 'F', 146), +(42487, 'Jaunita', 1934, 'F', 144), +(42488, 'Edythe', 1934, 'F', 141), +(42489, 'Susanne', 1934, 'F', 141), +(42490, 'Adelaide', 1934, 'F', 139), +(42491, 'Bobbye', 1934, 'F', 139), +(42492, 'Madonna', 1934, 'F', 139), +(42493, 'Pearline', 1934, 'F', 139), +(42494, 'Petra', 1934, 'F', 139), +(42495, 'Carolee', 1934, 'F', 138), +(42496, 'Roma', 1934, 'F', 138), +(42497, 'Birdie', 1934, 'F', 137), +(42498, 'Caryl', 1934, 'F', 137), +(42499, 'Zella', 1934, 'F', 137), +(42500, 'Charlie', 1934, 'F', 135), +(42501, 'Wilhelmina', 1934, 'F', 135), +(42502, 'Jeannie', 1934, 'F', 134), +(42503, 'Sammie', 1934, 'F', 134), +(42504, 'Gearldine', 1934, 'F', 133), +(42505, 'Lucinda', 1934, 'F', 132), +(42506, 'Millicent', 1934, 'F', 132), +(42507, 'Andrea', 1934, 'F', 131), +(42508, 'Alfreda', 1934, 'F', 130), +(42509, 'Lue', 1934, 'F', 130), +(42510, 'Ava', 1934, 'F', 129), +(42511, 'Jeanine', 1934, 'F', 129), +(42512, 'Richard', 1934, 'F', 129), +(42513, 'Dessie', 1934, 'F', 128), +(42514, 'Justine', 1934, 'F', 128), +(42515, 'Stephanie', 1934, 'F', 128), +(42516, 'Velda', 1934, 'F', 128), +(42517, 'Dottie', 1934, 'F', 127), +(42518, 'Meredith', 1934, 'F', 127), +(42519, 'Phoebe', 1934, 'F', 127), +(42520, 'Roseann', 1934, 'F', 127), +(42521, 'Rubye', 1934, 'F', 127), +(42522, 'Gerry', 1934, 'F', 126), +(42523, 'Minerva', 1934, 'F', 126), +(42524, 'Vada', 1934, 'F', 126), +(42525, 'Cleta', 1934, 'F', 125), +(42526, 'Denise', 1934, 'F', 125), +(42527, 'Leslie', 1934, 'F', 125), +(42528, 'Aurelia', 1934, 'F', 124), +(42529, 'Celeste', 1934, 'F', 124), +(42530, 'Margot', 1934, 'F', 124), +(42531, 'Treva', 1934, 'F', 124), +(42532, 'Verda', 1934, 'F', 124), +(42533, 'Benita', 1934, 'F', 123), +(42534, 'Emogene', 1934, 'F', 123), +(42535, 'Kitty', 1934, 'F', 123), +(42536, 'Elisabeth', 1934, 'F', 122), +(42537, 'Iola', 1934, 'F', 122), +(42538, 'Jeanie', 1934, 'F', 122), +(42539, 'Leora', 1934, 'F', 122), +(42540, 'Pattie', 1934, 'F', 122), +(42541, 'Angelita', 1934, 'F', 121), +(42542, 'Enid', 1934, 'F', 121), +(42543, 'Francisca', 1934, 'F', 120), +(42544, 'Georgianna', 1934, 'F', 120), +(42545, 'Harriette', 1934, 'F', 120), +(42546, 'Louisa', 1934, 'F', 120), +(42547, 'Maryanne', 1934, 'F', 120), +(42548, 'Oma', 1934, 'F', 120), +(42549, 'Ona', 1934, 'F', 120), +(42550, 'Alva', 1934, 'F', 119), +(42551, 'Libby', 1934, 'F', 119), +(42552, 'Maurine', 1934, 'F', 119), +(42553, 'Gussie', 1934, 'F', 118), +(42554, 'Nila', 1934, 'F', 118), +(42555, 'Rosalind', 1934, 'F', 118), +(42556, 'Tina', 1934, 'F', 118), +(42557, 'Veda', 1934, 'F', 118), +(42558, 'Donnie', 1934, 'F', 116), +(42559, 'Florene', 1934, 'F', 116), +(42560, 'Hellen', 1934, 'F', 116), +(42561, 'Syble', 1934, 'F', 116), +(42562, 'Vida', 1934, 'F', 116), +(42563, 'Dale', 1934, 'F', 115), +(42564, 'Elisa', 1934, 'F', 115), +(42565, 'Juliette', 1934, 'F', 115), +(42566, 'Lettie', 1934, 'F', 115), +(42567, 'Dovie', 1934, 'F', 114), +(42568, 'Erna', 1934, 'F', 114), +(42569, 'Lauretta', 1934, 'F', 114), +(42570, 'Dorene', 1934, 'F', 113), +(42571, 'Josefina', 1934, 'F', 113), +(42572, 'Margret', 1934, 'F', 113), +(42573, 'Ouida', 1934, 'F', 113), +(42574, 'Sharlene', 1934, 'F', 113), +(42575, 'Toni', 1934, 'F', 113), +(42576, 'Valeria', 1934, 'F', 113), +(42577, 'Vernice', 1934, 'F', 113), +(42578, 'Christene', 1934, 'F', 112), +(42579, 'Leatrice', 1934, 'F', 112), +(42580, 'Oleta', 1934, 'F', 112), +(42581, 'Donald', 1934, 'F', 110), +(42582, 'Elsa', 1934, 'F', 110), +(42583, 'Gilda', 1934, 'F', 110), +(42584, 'Jayne', 1934, 'F', 110), +(42585, 'Maryjane', 1934, 'F', 110), +(42586, 'Vesta', 1934, 'F', 110), +(42587, 'Nedra', 1934, 'F', 109), +(42588, 'Philomena', 1934, 'F', 109), +(42589, 'Zola', 1934, 'F', 109), +(42590, 'Gertie', 1934, 'F', 108), +(42591, 'Marvel', 1934, 'F', 108), +(42592, 'Tillie', 1934, 'F', 108), +(42593, 'Una', 1934, 'F', 108), +(42594, 'Socorro', 1934, 'F', 107), +(42595, 'Sophia', 1934, 'F', 107), +(42596, 'Ursula', 1934, 'F', 107), +(42597, 'Brenda', 1934, 'F', 106), +(42598, 'Magdalene', 1934, 'F', 106), +(42599, 'Alvina', 1934, 'F', 105), +(42600, 'Lavern', 1934, 'F', 105), +(42601, 'Myrtis', 1934, 'F', 105), +(42602, 'Carolina', 1934, 'F', 104), +(42603, 'Dorcas', 1934, 'F', 104), +(42604, 'Lavada', 1934, 'F', 104), +(42605, 'Rhea', 1934, 'F', 104), +(42606, 'Charline', 1934, 'F', 103), +(42607, 'Georgette', 1934, 'F', 103), +(42608, 'Manuela', 1934, 'F', 103), +(42609, 'Sydney', 1934, 'F', 103), +(42610, 'Carroll', 1934, 'F', 102), +(42611, 'Rochelle', 1934, 'F', 102), +(42612, 'Theda', 1934, 'F', 102), +(42613, 'Celestine', 1934, 'F', 101), +(42614, 'Madeleine', 1934, 'F', 101), +(42615, 'Toby', 1934, 'F', 101), +(42616, 'Katheryn', 1934, 'F', 100), +(42617, 'Robert', 1934, 'M', 55826), +(42618, 'James', 1934, 'M', 54236), +(42619, 'John', 1934, 'M', 46736), +(42620, 'William', 1934, 'M', 40157), +(42621, 'Richard', 1934, 'M', 33152), +(42622, 'Donald', 1934, 'M', 30406), +(42623, 'Charles', 1934, 'M', 29788), +(42624, 'George', 1934, 'M', 18494), +(42625, 'Thomas', 1934, 'M', 17369), +(42626, 'Joseph', 1934, 'M', 17101), +(42627, 'Ronald', 1934, 'M', 14081), +(42628, 'David', 1934, 'M', 13998), +(42629, 'Edward', 1934, 'M', 13922), +(42630, 'Paul', 1934, 'M', 12193), +(42631, 'Kenneth', 1934, 'M', 11801), +(42632, 'Frank', 1934, 'M', 10634), +(42633, 'Jack', 1934, 'M', 9987), +(42634, 'Harold', 1934, 'M', 9925), +(42635, 'Raymond', 1934, 'M', 9583), +(42636, 'Billy', 1934, 'M', 9558), +(42637, 'Walter', 1934, 'M', 8085), +(42638, 'Gerald', 1934, 'M', 7817), +(42639, 'Bobby', 1934, 'M', 7527), +(42640, 'Eugene', 1934, 'M', 7148), +(42641, 'Jerry', 1934, 'M', 7131), +(42642, 'Joe', 1934, 'M', 7084), +(42643, 'Henry', 1934, 'M', 6737), +(42644, 'Carl', 1934, 'M', 6678), +(42645, 'Arthur', 1934, 'M', 6446), +(42646, 'Willie', 1934, 'M', 6343), +(42647, 'Ralph', 1934, 'M', 6280), +(42648, 'Albert', 1934, 'M', 5997), +(42649, 'Fred', 1934, 'M', 5463), +(42650, 'Lawrence', 1934, 'M', 5324), +(42651, 'Roy', 1934, 'M', 5105), +(42652, 'Harry', 1934, 'M', 5094), +(42653, 'Howard', 1934, 'M', 5065), +(42654, 'Norman', 1934, 'M', 4987), +(42655, 'Roger', 1934, 'M', 4766), +(42656, 'Louis', 1934, 'M', 4678), +(42657, 'Earl', 1934, 'M', 4627), +(42658, 'Daniel', 1934, 'M', 4500), +(42659, 'Larry', 1934, 'M', 4470), +(42660, 'Marvin', 1934, 'M', 4224), +(42661, 'Clarence', 1934, 'M', 4212), +(42662, 'Franklin', 1934, 'M', 4152), +(42663, 'Michael', 1934, 'M', 4107), +(42664, 'Wayne', 1934, 'M', 4033), +(42665, 'Francis', 1934, 'M', 4007), +(42666, 'Don', 1934, 'M', 3923), +(42667, 'Ernest', 1934, 'M', 3850), +(42668, 'Anthony', 1934, 'M', 3837), +(42669, 'Leonard', 1934, 'M', 3831), +(42670, 'Leroy', 1934, 'M', 3777), +(42671, 'Melvin', 1934, 'M', 3700), +(42672, 'Jimmy', 1934, 'M', 3698), +(42673, 'Herbert', 1934, 'M', 3600), +(42674, 'Stanley', 1934, 'M', 3567), +(42675, 'Bill', 1934, 'M', 3533), +(42676, 'Gary', 1934, 'M', 3356), +(42677, 'Peter', 1934, 'M', 3290), +(42678, 'Dale', 1934, 'M', 3241), +(42679, 'Ray', 1934, 'M', 3173), +(42680, 'Alfred', 1934, 'M', 3159), +(42681, 'Bernard', 1934, 'M', 3146), +(42682, 'Samuel', 1934, 'M', 3138); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(42683, 'Gene', 1934, 'M', 2854), +(42684, 'Jimmie', 1934, 'M', 2838), +(42685, 'Philip', 1934, 'M', 2784), +(42686, 'Russell', 1934, 'M', 2731), +(42687, 'Gordon', 1934, 'M', 2640), +(42688, 'Douglas', 1934, 'M', 2540), +(42689, 'Floyd', 1934, 'M', 2530), +(42690, 'Theodore', 1934, 'M', 2523), +(42691, 'Bob', 1934, 'M', 2478), +(42692, 'Andrew', 1934, 'M', 2443), +(42693, 'Frederick', 1934, 'M', 2431), +(42694, 'Bruce', 1934, 'M', 2402), +(42695, 'Lee', 1934, 'M', 2376), +(42696, 'Edwin', 1934, 'M', 2345), +(42697, 'Lloyd', 1934, 'M', 2340), +(42698, 'Glenn', 1934, 'M', 2339), +(42699, 'Johnny', 1934, 'M', 2336), +(42700, 'Clyde', 1934, 'M', 2324), +(42701, 'Clifford', 1934, 'M', 2314), +(42702, 'Leo', 1934, 'M', 2306), +(42703, 'Leon', 1934, 'M', 2303), +(42704, 'Allen', 1934, 'M', 2245), +(42705, 'Vernon', 1934, 'M', 2225), +(42706, 'Jim', 1934, 'M', 2206), +(42707, 'Martin', 1934, 'M', 2176), +(42708, 'Eddie', 1934, 'M', 2165), +(42709, 'Alvin', 1934, 'M', 2146), +(42710, 'Lewis', 1934, 'M', 2063), +(42711, 'Dennis', 1934, 'M', 2052), +(42712, 'Warren', 1934, 'M', 2026), +(42713, 'Herman', 1934, 'M', 2011), +(42714, 'Tommy', 1934, 'M', 1939), +(42715, 'Harvey', 1934, 'M', 1935), +(42716, 'Charlie', 1934, 'M', 1894), +(42717, 'Vincent', 1934, 'M', 1865), +(42718, 'Jesse', 1934, 'M', 1852), +(42719, 'Curtis', 1934, 'M', 1846), +(42720, 'Duane', 1934, 'M', 1836), +(42721, 'Arnold', 1934, 'M', 1781), +(42722, 'Gilbert', 1934, 'M', 1775), +(42723, 'Jerome', 1934, 'M', 1772), +(42724, 'Elmer', 1934, 'M', 1708), +(42725, 'Patrick', 1934, 'M', 1702), +(42726, 'Lester', 1934, 'M', 1685), +(42727, 'Cecil', 1934, 'M', 1590), +(42728, 'Tom', 1934, 'M', 1580), +(42729, 'Phillip', 1934, 'M', 1577), +(42730, 'Jackie', 1934, 'M', 1564), +(42731, 'Milton', 1934, 'M', 1516), +(42732, 'Johnnie', 1934, 'M', 1505), +(42733, 'Benjamin', 1934, 'M', 1482), +(42734, 'Dean', 1934, 'M', 1477), +(42735, 'Roland', 1934, 'M', 1444), +(42736, 'Glen', 1934, 'M', 1441), +(42737, 'Stephen', 1934, 'M', 1423), +(42738, 'Victor', 1934, 'M', 1423), +(42739, 'Chester', 1934, 'M', 1382), +(42740, 'Alan', 1934, 'M', 1368), +(42741, 'Keith', 1934, 'M', 1352), +(42742, 'Max', 1934, 'M', 1332), +(42743, 'Sam', 1934, 'M', 1323), +(42744, 'Calvin', 1934, 'M', 1318), +(42745, 'Wallace', 1934, 'M', 1306), +(42746, 'Claude', 1934, 'M', 1265), +(42747, 'Manuel', 1934, 'M', 1250), +(42748, 'Maurice', 1934, 'M', 1241), +(42749, 'Jose', 1934, 'M', 1219), +(42750, 'Leslie', 1934, 'M', 1214), +(42751, 'Hugh', 1934, 'M', 1187), +(42752, 'Willard', 1934, 'M', 1174), +(42753, 'Edgar', 1934, 'M', 1150), +(42754, 'Dick', 1934, 'M', 1131), +(42755, 'Marion', 1934, 'M', 1129), +(42756, 'Darrell', 1934, 'M', 1127), +(42757, 'Virgil', 1934, 'M', 1127), +(42758, 'Wesley', 1934, 'M', 1117), +(42759, 'Oscar', 1934, 'M', 1096), +(42760, 'Jessie', 1934, 'M', 1090), +(42761, 'Everett', 1934, 'M', 1071), +(42762, 'Ted', 1934, 'M', 1052), +(42763, 'Billie', 1934, 'M', 1036), +(42764, 'Lowell', 1934, 'M', 1032), +(42765, 'Roosevelt', 1934, 'M', 1014), +(42766, 'Hubert', 1934, 'M', 1000), +(42767, 'Allan', 1934, 'M', 993), +(42768, 'Freddie', 1934, 'M', 989), +(42769, 'Neil', 1934, 'M', 953), +(42770, 'Dan', 1934, 'M', 939), +(42771, 'Homer', 1934, 'M', 937), +(42772, 'Lyle', 1934, 'M', 937), +(42773, 'Jay', 1934, 'M', 933), +(42774, 'Morris', 1934, 'M', 932), +(42775, 'Rodney', 1934, 'M', 931), +(42776, 'Sidney', 1934, 'M', 930), +(42777, 'Earnest', 1934, 'M', 922), +(42778, 'Wilbur', 1934, 'M', 919), +(42779, 'Delbert', 1934, 'M', 892), +(42780, 'Carroll', 1934, 'M', 874), +(42781, 'Nicholas', 1934, 'M', 873), +(42782, 'Willis', 1934, 'M', 867), +(42783, 'Luther', 1934, 'M', 862), +(42784, 'Tony', 1934, 'M', 839), +(42785, 'Ben', 1934, 'M', 832), +(42786, 'Bennie', 1934, 'M', 815), +(42787, 'Joel', 1934, 'M', 815), +(42788, 'Horace', 1934, 'M', 814), +(42789, 'Junior', 1934, 'M', 813), +(42790, 'Nathaniel', 1934, 'M', 782), +(42791, 'Rudolph', 1934, 'M', 779), +(42792, 'Steve', 1934, 'M', 770), +(42793, 'Otis', 1934, 'M', 768), +(42794, 'Guy', 1934, 'M', 767), +(42795, 'Ronnie', 1934, 'M', 759), +(42796, 'Lonnie', 1934, 'M', 753), +(42797, 'Oliver', 1934, 'M', 734), +(42798, 'Terry', 1934, 'M', 722), +(42799, 'Clayton', 1934, 'M', 718), +(42800, 'Alton', 1934, 'M', 712), +(42801, 'Mark', 1934, 'M', 703), +(42802, 'Karl', 1934, 'M', 689), +(42803, 'Benny', 1934, 'M', 685), +(42804, 'Marshall', 1934, 'M', 674), +(42805, 'Clifton', 1934, 'M', 666), +(42806, 'Leland', 1934, 'M', 664), +(42807, 'Bobbie', 1934, 'M', 661), +(42808, 'Archie', 1934, 'M', 659), +(42809, 'Mike', 1934, 'M', 649), +(42810, 'Clinton', 1934, 'M', 642), +(42811, 'Salvatore', 1934, 'M', 639), +(42812, 'Juan', 1934, 'M', 635), +(42813, 'Rex', 1934, 'M', 631), +(42814, 'Alex', 1934, 'M', 623), +(42815, 'Wendell', 1934, 'M', 618), +(42816, 'Alexander', 1934, 'M', 615), +(42817, 'Ivan', 1934, 'M', 612), +(42818, 'Matthew', 1934, 'M', 609), +(42819, 'Doyle', 1934, 'M', 606), +(42820, 'Danny', 1934, 'M', 604), +(42821, 'Edmund', 1934, 'M', 602), +(42822, 'Pete', 1934, 'M', 602), +(42823, 'Merle', 1934, 'M', 599), +(42824, 'Wilbert', 1934, 'M', 595), +(42825, 'Orville', 1934, 'M', 592), +(42826, 'Julius', 1934, 'M', 579), +(42827, 'Myron', 1934, 'M', 575), +(42828, 'Ira', 1934, 'M', 570), +(42829, 'Loren', 1934, 'M', 570), +(42830, 'Eldon', 1934, 'M', 568), +(42831, 'Nelson', 1934, 'M', 568), +(42832, 'Lynn', 1934, 'M', 564), +(42833, 'Carlos', 1934, 'M', 558), +(42834, 'Ramon', 1934, 'M', 550), +(42835, 'Jacob', 1934, 'M', 546), +(42836, 'Gerard', 1934, 'M', 545), +(42837, 'Perry', 1934, 'M', 544), +(42838, 'Troy', 1934, 'M', 540), +(42839, 'Ervin', 1934, 'M', 536), +(42840, 'Jesus', 1934, 'M', 536), +(42841, 'Elbert', 1934, 'M', 526), +(42842, 'Barry', 1934, 'M', 523), +(42843, 'Buddy', 1934, 'M', 516), +(42844, 'Dewey', 1934, 'M', 513), +(42845, 'Dwight', 1934, 'M', 506), +(42846, 'Conrad', 1934, 'M', 500), +(42847, 'Malcolm', 1934, 'M', 498), +(42848, 'Sylvester', 1934, 'M', 498), +(42849, 'Angelo', 1934, 'M', 494), +(42850, 'Antonio', 1934, 'M', 493), +(42851, 'Stuart', 1934, 'M', 492), +(42852, 'Laurence', 1934, 'M', 489), +(42853, 'Isaac', 1934, 'M', 482), +(42854, 'Carlton', 1934, 'M', 479), +(42855, 'Rufus', 1934, 'M', 479), +(42856, 'Aaron', 1934, 'M', 477), +(42857, 'Julian', 1934, 'M', 474), +(42858, 'Pat', 1934, 'M', 473), +(42859, 'Irvin', 1934, 'M', 472), +(42860, 'Jon', 1934, 'M', 471), +(42861, 'Nathan', 1934, 'M', 469), +(42862, 'Rudy', 1934, 'M', 469), +(42863, 'Mack', 1934, 'M', 466), +(42864, 'Tommie', 1934, 'M', 466), +(42865, 'Nick', 1934, 'M', 465), +(42866, 'Sheldon', 1934, 'M', 462), +(42867, 'Dave', 1934, 'M', 459), +(42868, 'Grady', 1934, 'M', 458), +(42869, 'Teddy', 1934, 'M', 458), +(42870, 'Fredrick', 1934, 'M', 456), +(42871, 'Ross', 1934, 'M', 442), +(42872, 'Ruben', 1934, 'M', 442), +(42873, 'Neal', 1934, 'M', 440), +(42874, 'Sherman', 1934, 'M', 437), +(42875, 'Owen', 1934, 'M', 435), +(42876, 'Burton', 1934, 'M', 433), +(42877, 'Ellis', 1934, 'M', 430), +(42878, 'Clark', 1934, 'M', 428), +(42879, 'Byron', 1934, 'M', 425), +(42880, 'Norbert', 1934, 'M', 422), +(42881, 'Irving', 1934, 'M', 421), +(42882, 'Wilfred', 1934, 'M', 421), +(42883, 'Bert', 1934, 'M', 420), +(42884, 'Forrest', 1934, 'M', 412), +(42885, 'Sammy', 1934, 'M', 412), +(42886, 'Dallas', 1934, 'M', 403), +(42887, 'Donnie', 1934, 'M', 403), +(42888, 'Boyd', 1934, 'M', 398), +(42889, 'Harlan', 1934, 'M', 393), +(42890, 'Felix', 1934, 'M', 387), +(42891, 'Garland', 1934, 'M', 377), +(42892, 'Harley', 1934, 'M', 375), +(42893, 'Percy', 1934, 'M', 375), +(42894, 'Reginald', 1934, 'M', 375), +(42895, 'Elwood', 1934, 'M', 374), +(42896, 'Aubrey', 1934, 'M', 372), +(42897, 'Irwin', 1934, 'M', 364), +(42898, 'Pedro', 1934, 'M', 363), +(42899, 'Travis', 1934, 'M', 363), +(42900, 'Loyd', 1934, 'M', 362), +(42901, 'Johnie', 1934, 'M', 359), +(42902, 'Darrel', 1934, 'M', 358), +(42903, 'Preston', 1934, 'M', 357), +(42904, 'Maynard', 1934, 'M', 354), +(42905, 'Wilson', 1934, 'M', 352), +(42906, 'Louie', 1934, 'M', 345), +(42907, 'Emmett', 1934, 'M', 340), +(42908, 'Amos', 1934, 'M', 339), +(42909, 'Frankie', 1934, 'M', 339), +(42910, 'Sammie', 1934, 'M', 339), +(42911, 'Timothy', 1934, 'M', 336), +(42912, 'Emil', 1934, 'M', 335), +(42913, 'Lionel', 1934, 'M', 334), +(42914, 'Francisco', 1934, 'M', 330), +(42915, 'Gregory', 1934, 'M', 329), +(42916, 'Noel', 1934, 'M', 326), +(42917, 'Marlin', 1934, 'M', 324), +(42918, 'Laverne', 1934, 'M', 323), +(42919, 'Steven', 1934, 'M', 323), +(42920, 'Otto', 1934, 'M', 318), +(42921, 'Grover', 1934, 'M', 314), +(42922, 'Cornelius', 1934, 'M', 313), +(42923, 'Elton', 1934, 'M', 312), +(42924, 'Raul', 1934, 'M', 312), +(42925, 'Morton', 1934, 'M', 309), +(42926, 'Mario', 1934, 'M', 306), +(42927, 'Wade', 1934, 'M', 306), +(42928, 'Delmar', 1934, 'M', 303), +(42929, 'Mary', 1934, 'M', 303), +(42930, 'Darwin', 1934, 'M', 300), +(42931, 'Royce', 1934, 'M', 296), +(42932, 'August', 1934, 'M', 294), +(42933, 'Luis', 1934, 'M', 294), +(42934, 'Edmond', 1934, 'M', 288), +(42935, 'Jerald', 1934, 'M', 288), +(42936, 'Shirley', 1934, 'M', 288), +(42937, 'Moses', 1934, 'M', 286), +(42938, 'Erwin', 1934, 'M', 285), +(42939, 'Merlin', 1934, 'M', 283), +(42940, 'Roberto', 1934, 'M', 281), +(42941, 'Randall', 1934, 'M', 277), +(42942, 'Thurman', 1934, 'M', 274), +(42943, 'Roscoe', 1934, 'M', 273), +(42944, 'Christopher', 1934, 'M', 272), +(42945, 'Alfonso', 1934, 'M', 271), +(42946, 'Grant', 1934, 'M', 271), +(42947, 'Phil', 1934, 'M', 271), +(42948, 'Kermit', 1934, 'M', 269), +(42949, 'Sanford', 1934, 'M', 267), +(42950, 'Elvin', 1934, 'M', 266), +(42951, 'Ned', 1934, 'M', 266), +(42952, 'Mitchell', 1934, 'M', 262), +(42953, 'Ed', 1934, 'M', 261), +(42954, 'Gale', 1934, 'M', 261), +(42955, 'Murray', 1934, 'M', 261), +(42956, 'Eric', 1934, 'M', 259), +(42957, 'Randolph', 1934, 'M', 259), +(42958, 'Odell', 1934, 'M', 256), +(42959, 'Alonzo', 1934, 'M', 254), +(42960, 'Charley', 1934, 'M', 254), +(42961, 'Dominick', 1934, 'M', 254), +(42962, 'Carol', 1934, 'M', 252), +(42963, 'Austin', 1934, 'M', 251), +(42964, 'Millard', 1934, 'M', 250), +(42965, 'Kent', 1934, 'M', 249), +(42966, 'Lavern', 1934, 'M', 247), +(42967, 'Jasper', 1934, 'M', 246), +(42968, 'Abraham', 1934, 'M', 243), +(42969, 'Dominic', 1934, 'M', 242), +(42970, 'Norris', 1934, 'M', 241), +(42971, 'Merrill', 1934, 'M', 239), +(42972, 'Clair', 1934, 'M', 238), +(42973, 'Adam', 1934, 'M', 237), +(42974, 'Weldon', 1934, 'M', 236), +(42975, 'Wilburn', 1934, 'M', 229), +(42976, 'Marcus', 1934, 'M', 228), +(42977, 'Coy', 1934, 'M', 227), +(42978, 'Rolland', 1934, 'M', 226), +(42979, 'Reuben', 1934, 'M', 225), +(42980, 'Carmen', 1934, 'M', 224), +(42981, 'Lorenzo', 1934, 'M', 224), +(42982, 'Wiley', 1934, 'M', 224), +(42983, 'Hollis', 1934, 'M', 221), +(42984, 'Lamar', 1934, 'M', 220), +(42985, 'Woodrow', 1934, 'M', 218), +(42986, 'Will', 1934, 'M', 215), +(42987, 'Stewart', 1934, 'M', 213), +(42988, 'Gail', 1934, 'M', 212), +(42989, 'Monroe', 1934, 'M', 212), +(42990, 'Andy', 1934, 'M', 211), +(42991, 'Cleveland', 1934, 'M', 211), +(42992, 'Adolph', 1934, 'M', 210), +(42993, 'Buford', 1934, 'M', 210), +(42994, 'Elijah', 1934, 'M', 209), +(42995, 'Cleo', 1934, 'M', 208), +(42996, 'Delano', 1934, 'M', 208), +(42997, 'Arlen', 1934, 'M', 206), +(42998, 'Hal', 1934, 'M', 205), +(42999, 'Adrian', 1934, 'M', 204), +(43000, 'Truman', 1934, 'M', 203), +(43001, 'Harrison', 1934, 'M', 202), +(43002, 'Barney', 1934, 'M', 201), +(43003, 'Elliott', 1934, 'M', 200), +(43004, 'Armand', 1934, 'M', 199), +(43005, 'Gus', 1934, 'M', 199), +(43006, 'Dwayne', 1934, 'M', 198), +(43007, 'Guadalupe', 1934, 'M', 197), +(43008, 'Levi', 1934, 'M', 197), +(43009, 'Simon', 1934, 'M', 197), +(43010, 'Wilmer', 1934, 'M', 197), +(43011, 'Winston', 1934, 'M', 197), +(43012, 'Al', 1934, 'M', 194), +(43013, 'Wilford', 1934, 'M', 193), +(43014, 'Dudley', 1934, 'M', 190), +(43015, 'Jake', 1934, 'M', 190), +(43016, 'Ricardo', 1934, 'M', 190), +(43017, 'Nolan', 1934, 'M', 189), +(43018, 'Brian', 1934, 'M', 187), +(43019, 'Huey', 1934, 'M', 187), +(43020, 'Ward', 1934, 'M', 187), +(43021, 'Armando', 1934, 'M', 186), +(43022, 'Hector', 1934, 'M', 186), +(43023, 'Olin', 1934, 'M', 186), +(43024, 'Seymour', 1934, 'M', 186), +(43025, 'Frederic', 1934, 'M', 185), +(43026, 'Spencer', 1934, 'M', 185), +(43027, 'Sterling', 1934, 'M', 185), +(43028, 'Delmer', 1934, 'M', 184), +(43029, 'Ollie', 1934, 'M', 184), +(43030, 'Van', 1934, 'M', 183), +(43031, 'Clement', 1934, 'M', 182), +(43032, 'Chris', 1934, 'M', 180), +(43033, 'Salvador', 1934, 'M', 180), +(43034, 'Emery', 1934, 'M', 178), +(43035, 'Jean', 1934, 'M', 178), +(43036, 'Alfredo', 1934, 'M', 176), +(43037, 'Eli', 1934, 'M', 176), +(43038, 'Emanuel', 1934, 'M', 175), +(43039, 'Jackson', 1934, 'M', 175), +(43040, 'Russel', 1934, 'M', 175), +(43041, 'Vern', 1934, 'M', 175), +(43042, 'Freddy', 1934, 'M', 174), +(43043, 'Carrol', 1934, 'M', 173), +(43044, 'Linwood', 1934, 'M', 173), +(43045, 'Scott', 1934, 'M', 171), +(43046, 'Betty', 1934, 'M', 170), +(43047, 'Earle', 1934, 'M', 170), +(43048, 'Gayle', 1934, 'M', 169), +(43049, 'Roderick', 1934, 'M', 169), +(43050, 'Harris', 1934, 'M', 168), +(43051, 'Vance', 1934, 'M', 168), +(43052, 'Mervin', 1934, 'M', 167), +(43053, 'Mickey', 1934, 'M', 167), +(43054, 'Bradley', 1934, 'M', 166), +(43055, 'Jess', 1934, 'M', 166), +(43056, 'Booker', 1934, 'M', 164), +(43057, 'Emory', 1934, 'M', 164), +(43058, 'Garry', 1934, 'M', 164), +(43059, 'Gabriel', 1934, 'M', 163), +(43060, 'Bud', 1934, 'M', 162), +(43061, 'Hershel', 1934, 'M', 162), +(43062, 'Warner', 1934, 'M', 160), +(43063, 'Basil', 1934, 'M', 159), +(43064, 'Kay', 1934, 'M', 159), +(43065, 'Daryl', 1934, 'M', 158), +(43066, 'Alva', 1934, 'M', 155), +(43067, 'Riley', 1934, 'M', 155), +(43068, 'Rodger', 1934, 'M', 155), +(43069, 'Miles', 1934, 'M', 154), +(43070, 'Rene', 1934, 'M', 154), +(43071, 'Miguel', 1934, 'M', 153), +(43072, 'Rocco', 1934, 'M', 153), +(43073, 'Ken', 1934, 'M', 152), +(43074, 'Kevin', 1934, 'M', 151), +(43075, 'Milford', 1934, 'M', 150), +(43076, 'Cyril', 1934, 'M', 149), +(43077, 'Solomon', 1934, 'M', 149), +(43078, 'Monte', 1934, 'M', 148), +(43079, 'Noah', 1934, 'M', 148), +(43080, 'Rodolfo', 1934, 'M', 148), +(43081, 'Blaine', 1934, 'M', 147), +(43082, 'Arden', 1934, 'M', 146), +(43083, 'Arturo', 1934, 'M', 146), +(43084, 'Ernesto', 1934, 'M', 146), +(43085, 'Jan', 1934, 'M', 146), +(43086, 'Tomas', 1934, 'M', 145), +(43087, 'Alden', 1934, 'M', 144), +(43088, 'Carmine', 1934, 'M', 144), +(43089, 'Claud', 1934, 'M', 144), +(43090, 'Kelly', 1934, 'M', 144), +(43091, 'Ulysses', 1934, 'M', 144), +(43092, 'Dalton', 1934, 'M', 143), +(43093, 'Denis', 1934, 'M', 143), +(43094, 'Connie', 1934, 'M', 142), +(43095, 'Silas', 1934, 'M', 142), +(43096, 'Jerold', 1934, 'M', 141), +(43097, 'Normand', 1934, 'M', 141), +(43098, 'Pablo', 1934, 'M', 141), +(43099, 'Raymon', 1934, 'M', 141), +(43100, 'Bernie', 1934, 'M', 140), +(43101, 'Vito', 1934, 'M', 140), +(43102, 'Winfred', 1934, 'M', 139), +(43103, 'Craig', 1934, 'M', 138), +(43104, 'Elmo', 1934, 'M', 138), +(43105, 'Fredric', 1934, 'M', 138), +(43106, 'Forest', 1934, 'M', 137), +(43107, 'Alphonse', 1934, 'M', 136), +(43108, 'Evan', 1934, 'M', 136), +(43109, 'Galen', 1934, 'M', 136), +(43110, 'Roman', 1934, 'M', 135), +(43111, 'Sonny', 1934, 'M', 135), +(43112, 'Cletus', 1934, 'M', 134), +(43113, 'Elden', 1934, 'M', 133), +(43114, 'Fernando', 1934, 'M', 133), +(43115, 'Freeman', 1934, 'M', 133), +(43116, 'Herschel', 1934, 'M', 133), +(43117, 'Jonathan', 1934, 'M', 133), +(43118, 'Shelby', 1934, 'M', 133), +(43119, 'Denny', 1934, 'M', 132), +(43120, 'Gaylord', 1934, 'M', 132), +(43121, 'Rafael', 1934, 'M', 132), +(43122, 'Odis', 1934, 'M', 131), +(43123, 'Vaughn', 1934, 'M', 131), +(43124, 'Emerson', 1934, 'M', 130), +(43125, 'Ernie', 1934, 'M', 130), +(43126, 'Saul', 1934, 'M', 130), +(43127, 'Terrence', 1934, 'M', 130), +(43128, 'Orval', 1934, 'M', 129), +(43129, 'Dana', 1934, 'M', 128), +(43130, 'Denver', 1934, 'M', 128), +(43131, 'Elias', 1934, 'M', 128), +(43132, 'Milo', 1934, 'M', 128), +(43133, 'Alberto', 1934, 'M', 127), +(43134, 'Dewayne', 1934, 'M', 127), +(43135, 'Everette', 1934, 'M', 127), +(43136, 'Patsy', 1934, 'M', 127), +(43137, 'Royal', 1934, 'M', 127), +(43138, 'Alphonso', 1934, 'M', 126), +(43139, 'Emilio', 1934, 'M', 126), +(43140, 'Domingo', 1934, 'M', 125), +(43141, 'Thaddeus', 1934, 'M', 125), +(43142, 'Felipe', 1934, 'M', 123), +(43143, 'Lenard', 1934, 'M', 123), +(43144, 'Morgan', 1934, 'M', 123), +(43145, 'Wilton', 1934, 'M', 123), +(43146, 'Boyce', 1934, 'M', 122), +(43147, 'Bryan', 1934, 'M', 122), +(43148, 'Jeff', 1934, 'M', 122), +(43149, 'Jeremiah', 1934, 'M', 122), +(43150, 'Luke', 1934, 'M', 122), +(43151, 'Jerrold', 1934, 'M', 121), +(43152, 'Kennith', 1934, 'M', 121), +(43153, 'Burl', 1934, 'M', 120), +(43154, 'Lyman', 1934, 'M', 120), +(43155, 'Olen', 1934, 'M', 120), +(43156, 'Angel', 1934, 'M', 119), +(43157, 'Augustine', 1934, 'M', 119), +(43158, 'Maxie', 1934, 'M', 119), +(43159, 'Barbara', 1934, 'M', 118), +(43160, 'Elroy', 1934, 'M', 118), +(43161, 'Gilberto', 1934, 'M', 118), +(43162, 'Davis', 1934, 'M', 117), +(43163, 'Fletcher', 1934, 'M', 117), +(43164, 'Clay', 1934, 'M', 116), +(43165, 'Coleman', 1934, 'M', 116), +(43166, 'Dorothy', 1934, 'M', 116), +(43167, 'Hoyt', 1934, 'M', 115), +(43168, 'Buster', 1934, 'M', 114), +(43169, 'Merlyn', 1934, 'M', 114), +(43170, 'Tim', 1934, 'M', 114), +(43171, 'Otha', 1934, 'M', 113), +(43172, 'Anton', 1934, 'M', 112), +(43173, 'Bruno', 1934, 'M', 112), +(43174, 'Lynwood', 1934, 'M', 112), +(43175, 'Dee', 1934, 'M', 111), +(43176, 'Foster', 1934, 'M', 111), +(43177, 'Frances', 1934, 'M', 111), +(43178, 'Talmadge', 1934, 'M', 111), +(43179, 'Arlie', 1934, 'M', 110), +(43180, 'Graham', 1934, 'M', 110), +(43181, 'Houston', 1934, 'M', 110), +(43182, 'Bennett', 1934, 'M', 109), +(43183, 'Donovan', 1934, 'M', 109), +(43184, 'Julio', 1934, 'M', 109), +(43185, 'Orlando', 1934, 'M', 108), +(43186, 'Columbus', 1934, 'M', 107), +(43187, 'Enrique', 1934, 'M', 107), +(43188, 'Raleigh', 1934, 'M', 107), +(43189, 'Theron', 1934, 'M', 107), +(43190, 'Ezra', 1934, 'M', 106), +(43191, 'Joshua', 1934, 'M', 106), +(43192, 'Augustus', 1934, 'M', 105), +(43193, 'Jefferson', 1934, 'M', 105), +(43194, 'Micheal', 1934, 'M', 105), +(43195, 'Gerry', 1934, 'M', 104), +(43196, 'Hiram', 1934, 'M', 104), +(43197, 'Ignacio', 1934, 'M', 104), +(43198, 'Benito', 1934, 'M', 103), +(43199, 'Rosevelt', 1934, 'M', 103), +(43200, 'Stanford', 1934, 'M', 103), +(43201, 'Beverly', 1934, 'M', 102), +(43202, 'Pasquale', 1934, 'M', 102), +(43203, 'Ramiro', 1934, 'M', 102), +(43204, 'Rogers', 1934, 'M', 101), +(43205, 'Tracy', 1934, 'M', 101), +(43206, 'Jules', 1934, 'M', 100), +(43207, 'Marcel', 1934, 'M', 100), +(43208, 'Mary', 1935, 'F', 55067), +(43209, 'Shirley', 1935, 'F', 42357), +(43210, 'Barbara', 1935, 'F', 30690), +(43211, 'Betty', 1935, 'F', 28676), +(43212, 'Patricia', 1935, 'F', 22874), +(43213, 'Dorothy', 1935, 'F', 19400), +(43214, 'Joan', 1935, 'F', 18222), +(43215, 'Margaret', 1935, 'F', 14718), +(43216, 'Nancy', 1935, 'F', 14541), +(43217, 'Helen', 1935, 'F', 12778), +(43218, 'Carol', 1935, 'F', 11733), +(43219, 'Joyce', 1935, 'F', 11364), +(43220, 'Doris', 1935, 'F', 10603), +(43221, 'Marilyn', 1935, 'F', 10416), +(43222, 'Ruth', 1935, 'F', 9988), +(43223, 'Virginia', 1935, 'F', 9862), +(43224, 'Elizabeth', 1935, 'F', 9074), +(43225, 'Jean', 1935, 'F', 8851), +(43226, 'Frances', 1935, 'F', 8768), +(43227, 'Beverly', 1935, 'F', 7994), +(43228, 'Lois', 1935, 'F', 7991), +(43229, 'Janet', 1935, 'F', 7856), +(43230, 'Donna', 1935, 'F', 7791), +(43231, 'Martha', 1935, 'F', 7621), +(43232, 'Alice', 1935, 'F', 7445), +(43233, 'Dolores', 1935, 'F', 7374), +(43234, 'Phyllis', 1935, 'F', 7365), +(43235, 'Carolyn', 1935, 'F', 6965), +(43236, 'Norma', 1935, 'F', 6868), +(43237, 'Ann', 1935, 'F', 6707), +(43238, 'Evelyn', 1935, 'F', 6558), +(43239, 'Gloria', 1935, 'F', 6344), +(43240, 'Marie', 1935, 'F', 6295), +(43241, 'Anna', 1935, 'F', 6162), +(43242, 'Mildred', 1935, 'F', 5544), +(43243, 'Peggy', 1935, 'F', 5270), +(43244, 'Rose', 1935, 'F', 5230), +(43245, 'Annie', 1935, 'F', 4851), +(43246, 'Marlene', 1935, 'F', 4828), +(43247, 'Geraldine', 1935, 'F', 4817), +(43248, 'Ruby', 1935, 'F', 4762), +(43249, 'Catherine', 1935, 'F', 4698), +(43250, 'Jane', 1935, 'F', 4644), +(43251, 'Louise', 1935, 'F', 4568), +(43252, 'Joanne', 1935, 'F', 4563), +(43253, 'Marjorie', 1935, 'F', 4484), +(43254, 'Janice', 1935, 'F', 4445), +(43255, 'Eleanor', 1935, 'F', 4167), +(43256, 'Wanda', 1935, 'F', 4102), +(43257, 'Sandra', 1935, 'F', 4089), +(43258, 'Elaine', 1935, 'F', 4079), +(43259, 'Irene', 1935, 'F', 3934), +(43260, 'Joann', 1935, 'F', 3915), +(43261, 'Judith', 1935, 'F', 3873), +(43262, 'June', 1935, 'F', 3838), +(43263, 'Patsy', 1935, 'F', 3797), +(43264, 'Delores', 1935, 'F', 3791), +(43265, 'Sally', 1935, 'F', 3709), +(43266, 'Arlene', 1935, 'F', 3683), +(43267, 'Sylvia', 1935, 'F', 3620), +(43268, 'Sarah', 1935, 'F', 3617), +(43269, 'Bonnie', 1935, 'F', 3611), +(43270, 'Rita', 1935, 'F', 3578), +(43271, 'Audrey', 1935, 'F', 3515), +(43272, 'Charlotte', 1935, 'F', 3469), +(43273, 'Lillian', 1935, 'F', 3424), +(43274, 'Edna', 1935, 'F', 3419), +(43275, 'Lorraine', 1935, 'F', 3402), +(43276, 'Loretta', 1935, 'F', 3369), +(43277, 'Wilma', 1935, 'F', 3361), +(43278, 'Kathleen', 1935, 'F', 3353), +(43279, 'Juanita', 1935, 'F', 3344), +(43280, 'Jo', 1935, 'F', 3296), +(43281, 'Florence', 1935, 'F', 3277), +(43282, 'Josephine', 1935, 'F', 3259), +(43283, 'Thelma', 1935, 'F', 3184), +(43284, 'Roberta', 1935, 'F', 3180), +(43285, 'Gladys', 1935, 'F', 3147), +(43286, 'Jacqueline', 1935, 'F', 3116), +(43287, 'Pauline', 1935, 'F', 3076), +(43288, 'Clara', 1935, 'F', 3067), +(43289, 'Ethel', 1935, 'F', 3004), +(43290, 'Grace', 1935, 'F', 2996), +(43291, 'Anne', 1935, 'F', 2893), +(43292, 'Lucille', 1935, 'F', 2887), +(43293, 'Theresa', 1935, 'F', 2863), +(43294, 'Edith', 1935, 'F', 2830), +(43295, 'Marion', 1935, 'F', 2813), +(43296, 'Emma', 1935, 'F', 2803), +(43297, 'Bernice', 1935, 'F', 2773), +(43298, 'Darlene', 1935, 'F', 2702), +(43299, 'Hazel', 1935, 'F', 2695), +(43300, 'Carole', 1935, 'F', 2681), +(43301, 'Esther', 1935, 'F', 2542), +(43302, 'Ellen', 1935, 'F', 2435), +(43303, 'Sharon', 1935, 'F', 2427), +(43304, 'Rosemary', 1935, 'F', 2395), +(43305, 'Yvonne', 1935, 'F', 2387), +(43306, 'Margie', 1935, 'F', 2370), +(43307, 'Willie', 1935, 'F', 2369), +(43308, 'Laura', 1935, 'F', 2357), +(43309, 'Julia', 1935, 'F', 2343), +(43310, 'Katherine', 1935, 'F', 2337), +(43311, 'Jeanette', 1935, 'F', 2290), +(43312, 'Marian', 1935, 'F', 2264), +(43313, 'Billie', 1935, 'F', 2247), +(43314, 'Beatrice', 1935, 'F', 2241), +(43315, 'Eileen', 1935, 'F', 2199), +(43316, 'Diane', 1935, 'F', 2195), +(43317, 'Eva', 1935, 'F', 2166), +(43318, 'Kathryn', 1935, 'F', 2127), +(43319, 'Vivian', 1935, 'F', 2126), +(43320, 'Elsie', 1935, 'F', 2073), +(43321, 'Bertha', 1935, 'F', 2071), +(43322, 'Sue', 1935, 'F', 2024), +(43323, 'Bobbie', 1935, 'F', 2003), +(43324, 'Maria', 1935, 'F', 1991), +(43325, 'Lillie', 1935, 'F', 1952), +(43326, 'Anita', 1935, 'F', 1931), +(43327, 'Ida', 1935, 'F', 1924), +(43328, 'Maxine', 1935, 'F', 1924), +(43329, 'Ella', 1935, 'F', 1898), +(43330, 'Georgia', 1935, 'F', 1871), +(43331, 'Vera', 1935, 'F', 1813), +(43332, 'Constance', 1935, 'F', 1803), +(43333, 'Susan', 1935, 'F', 1801), +(43334, 'Gail', 1935, 'F', 1798), +(43335, 'Sara', 1935, 'F', 1773), +(43336, 'Bessie', 1935, 'F', 1756), +(43337, 'Christine', 1935, 'F', 1742), +(43338, 'Nellie', 1935, 'F', 1739), +(43339, 'Alma', 1935, 'F', 1678), +(43340, 'Jeanne', 1935, 'F', 1663), +(43341, 'Kay', 1935, 'F', 1648), +(43342, 'Jessie', 1935, 'F', 1618), +(43343, 'Mattie', 1935, 'F', 1608), +(43344, 'Rosa', 1935, 'F', 1600), +(43345, 'Agnes', 1935, 'F', 1588), +(43346, 'Minnie', 1935, 'F', 1582), +(43347, 'Connie', 1935, 'F', 1537), +(43348, 'Lucy', 1935, 'F', 1510), +(43349, 'Annette', 1935, 'F', 1475), +(43350, 'Judy', 1935, 'F', 1474), +(43351, 'Naomi', 1935, 'F', 1433), +(43352, 'Gertrude', 1935, 'F', 1425), +(43353, 'Charlene', 1935, 'F', 1394), +(43354, 'Velma', 1935, 'F', 1352), +(43355, 'Joy', 1935, 'F', 1349), +(43356, 'Marcia', 1935, 'F', 1338), +(43357, 'Pat', 1935, 'F', 1326), +(43358, 'Sheila', 1935, 'F', 1326), +(43359, 'Viola', 1935, 'F', 1326), +(43360, 'Myrtle', 1935, 'F', 1313), +(43361, 'Suzanne', 1935, 'F', 1309), +(43362, 'Leona', 1935, 'F', 1307), +(43363, 'Geneva', 1935, 'F', 1306), +(43364, 'Harriet', 1935, 'F', 1294), +(43365, 'Carrie', 1935, 'F', 1277), +(43366, 'Violet', 1935, 'F', 1273), +(43367, 'Mae', 1935, 'F', 1268), +(43368, 'Faye', 1935, 'F', 1258), +(43369, 'Maureen', 1935, 'F', 1230), +(43370, 'Rebecca', 1935, 'F', 1208), +(43371, 'Rachel', 1935, 'F', 1200), +(43372, 'Linda', 1935, 'F', 1197), +(43373, 'Pearl', 1935, 'F', 1189), +(43374, 'Rosie', 1935, 'F', 1189), +(43375, 'Dora', 1935, 'F', 1168), +(43376, 'Glenda', 1935, 'F', 1144), +(43377, 'Eunice', 1935, 'F', 1129), +(43378, 'Claire', 1935, 'F', 1124), +(43379, 'Karen', 1935, 'F', 1098), +(43380, 'Emily', 1935, 'F', 1093), +(43381, 'Lula', 1935, 'F', 1085), +(43382, 'Cora', 1935, 'F', 1071), +(43383, 'Myrna', 1935, 'F', 1060), +(43384, 'Alberta', 1935, 'F', 1054), +(43385, 'Caroline', 1935, 'F', 1048), +(43386, 'Cynthia', 1935, 'F', 990), +(43387, 'Gwendolyn', 1935, 'F', 984), +(43388, 'Verna', 1935, 'F', 981), +(43389, 'Hattie', 1935, 'F', 974), +(43390, 'Lena', 1935, 'F', 967), +(43391, 'Nina', 1935, 'F', 966), +(43392, 'Lola', 1935, 'F', 950), +(43393, 'Jeannette', 1935, 'F', 949), +(43394, 'Stella', 1935, 'F', 943), +(43395, 'Dixie', 1935, 'F', 930), +(43396, 'Erma', 1935, 'F', 929), +(43397, 'Patty', 1935, 'F', 916), +(43398, 'Rosemarie', 1935, 'F', 912), +(43399, 'Nora', 1935, 'F', 909), +(43400, 'Johnnie', 1935, 'F', 905), +(43401, 'Daisy', 1935, 'F', 903), +(43402, 'Genevieve', 1935, 'F', 893), +(43403, 'Ernestine', 1935, 'F', 892), +(43404, 'Ramona', 1935, 'F', 885), +(43405, 'Fannie', 1935, 'F', 871), +(43406, 'Hilda', 1935, 'F', 868), +(43407, 'Deloris', 1935, 'F', 858), +(43408, 'Jennie', 1935, 'F', 846), +(43409, 'Beulah', 1935, 'F', 844), +(43410, 'Flora', 1935, 'F', 840), +(43411, 'Irma', 1935, 'F', 837), +(43412, 'Carmen', 1935, 'F', 831), +(43413, 'Bettie', 1935, 'F', 830), +(43414, 'Marguerite', 1935, 'F', 828), +(43415, 'Mabel', 1935, 'F', 826), +(43416, 'Iris', 1935, 'F', 816), +(43417, 'Maryann', 1935, 'F', 809), +(43418, 'Jackie', 1935, 'F', 805), +(43419, 'Diana', 1935, 'F', 804), +(43420, 'Inez', 1935, 'F', 803), +(43421, 'Ada', 1935, 'F', 800), +(43422, 'Muriel', 1935, 'F', 798), +(43423, 'Miriam', 1935, 'F', 793), +(43424, 'Laverne', 1935, 'F', 785), +(43425, 'Rosalie', 1935, 'F', 779), +(43426, 'Opal', 1935, 'F', 777), +(43427, 'Della', 1935, 'F', 775), +(43428, 'Paula', 1935, 'F', 774), +(43429, 'Priscilla', 1935, 'F', 774), +(43430, 'Mamie', 1935, 'F', 773), +(43431, 'Susie', 1935, 'F', 768), +(43432, 'Melba', 1935, 'F', 757), +(43433, 'Lila', 1935, 'F', 752), +(43434, 'Janie', 1935, 'F', 743), +(43435, 'Marcella', 1935, 'F', 737), +(43436, 'Katie', 1935, 'F', 732), +(43437, 'Eloise', 1935, 'F', 729), +(43438, 'Blanche', 1935, 'F', 727), +(43439, 'Mable', 1935, 'F', 723), +(43440, 'Claudia', 1935, 'F', 719), +(43441, 'Teresa', 1935, 'F', 715), +(43442, 'Madeline', 1935, 'F', 714), +(43443, 'Eula', 1935, 'F', 710), +(43444, 'Gayle', 1935, 'F', 704), +(43445, 'Claudette', 1935, 'F', 703), +(43446, 'Bettye', 1935, 'F', 699), +(43447, 'Maggie', 1935, 'F', 686), +(43448, 'Jacquelyn', 1935, 'F', 679), +(43449, 'Colleen', 1935, 'F', 671), +(43450, 'Lydia', 1935, 'F', 669), +(43451, 'Mona', 1935, 'F', 669), +(43452, 'Bette', 1935, 'F', 658), +(43453, 'Nadine', 1935, 'F', 641), +(43454, 'Regina', 1935, 'F', 641), +(43455, 'Marianne', 1935, 'F', 632), +(43456, 'Antoinette', 1935, 'F', 629), +(43457, 'Sadie', 1935, 'F', 626), +(43458, 'Freda', 1935, 'F', 623), +(43459, 'Angela', 1935, 'F', 617), +(43460, 'Reba', 1935, 'F', 615), +(43461, 'Imogene', 1935, 'F', 614), +(43462, 'Amelia', 1935, 'F', 604), +(43463, 'Victoria', 1935, 'F', 603), +(43464, 'Myra', 1935, 'F', 595), +(43465, 'Sallie', 1935, 'F', 587), +(43466, 'Nettie', 1935, 'F', 585), +(43467, 'Henrietta', 1935, 'F', 555), +(43468, 'Jimmie', 1935, 'F', 550), +(43469, 'Lorene', 1935, 'F', 545), +(43470, 'Fay', 1935, 'F', 544), +(43471, 'Frankie', 1935, 'F', 541), +(43472, 'Dorthy', 1935, 'F', 532), +(43473, 'Ina', 1935, 'F', 529), +(43474, 'Estelle', 1935, 'F', 528), +(43475, 'Ollie', 1935, 'F', 528), +(43476, 'Lou', 1935, 'F', 521), +(43477, 'Rosetta', 1935, 'F', 516), +(43478, 'Ora', 1935, 'F', 502), +(43479, 'Essie', 1935, 'F', 498), +(43480, 'Winifred', 1935, 'F', 491), +(43481, 'Cecilia', 1935, 'F', 487), +(43482, 'Lavonne', 1935, 'F', 487), +(43483, 'Valerie', 1935, 'F', 486), +(43484, 'Arline', 1935, 'F', 485), +(43485, 'Glenna', 1935, 'F', 479), +(43486, 'Jewel', 1935, 'F', 477), +(43487, 'Lee', 1935, 'F', 474), +(43488, 'Nelda', 1935, 'F', 473), +(43489, 'Lenora', 1935, 'F', 461), +(43490, 'Etta', 1935, 'F', 458), +(43491, 'Iva', 1935, 'F', 458), +(43492, 'Veronica', 1935, 'F', 458), +(43493, 'Natalie', 1935, 'F', 457), +(43494, 'Janis', 1935, 'F', 448), +(43495, 'Sherry', 1935, 'F', 436), +(43496, 'Fern', 1935, 'F', 429), +(43497, 'Lela', 1935, 'F', 427), +(43498, 'Cleo', 1935, 'F', 426), +(43499, 'Leola', 1935, 'F', 426), +(43500, 'Celia', 1935, 'F', 424), +(43501, 'Isabel', 1935, 'F', 424), +(43502, 'Joanna', 1935, 'F', 424), +(43503, 'Gracie', 1935, 'F', 414), +(43504, 'Jerry', 1935, 'F', 414), +(43505, 'Willa', 1935, 'F', 414), +(43506, 'Dianne', 1935, 'F', 413), +(43507, 'Earline', 1935, 'F', 410), +(43508, 'Cecelia', 1935, 'F', 408), +(43509, 'Ola', 1935, 'F', 408), +(43510, 'Sondra', 1935, 'F', 408), +(43511, 'Bernadine', 1935, 'F', 406), +(43512, 'Mavis', 1935, 'F', 406), +(43513, 'Rhoda', 1935, 'F', 404), +(43514, 'Dorothea', 1935, 'F', 403), +(43515, 'Helene', 1935, 'F', 400), +(43516, 'Lizzie', 1935, 'F', 400), +(43517, 'Dawn', 1935, 'F', 399), +(43518, 'Clarice', 1935, 'F', 398), +(43519, 'Addie', 1935, 'F', 397), +(43520, 'Jeannine', 1935, 'F', 397), +(43521, 'Ruthie', 1935, 'F', 396), +(43522, 'Bernadette', 1935, 'F', 394), +(43523, 'Adrienne', 1935, 'F', 392), +(43524, 'Lottie', 1935, 'F', 392), +(43525, 'Jewell', 1935, 'F', 390), +(43526, 'Nell', 1935, 'F', 390), +(43527, 'Effie', 1935, 'F', 388), +(43528, 'Olga', 1935, 'F', 386), +(43529, 'Betsy', 1935, 'F', 384), +(43530, 'Francis', 1935, 'F', 382), +(43531, 'Polly', 1935, 'F', 377), +(43532, 'Alta', 1935, 'F', 375), +(43533, 'Josie', 1935, 'F', 375), +(43534, 'Elnora', 1935, 'F', 370), +(43535, 'Elva', 1935, 'F', 369), +(43536, 'Angelina', 1935, 'F', 368), +(43537, 'Estella', 1935, 'F', 366), +(43538, 'Adele', 1935, 'F', 365), +(43539, 'Olivia', 1935, 'F', 365), +(43540, 'Leah', 1935, 'F', 363), +(43541, 'Luella', 1935, 'F', 363), +(43542, 'Julie', 1935, 'F', 355), +(43543, 'Elinor', 1935, 'F', 354), +(43544, 'Rena', 1935, 'F', 353), +(43545, 'Lenore', 1935, 'F', 352), +(43546, 'May', 1935, 'F', 352), +(43547, 'Marlys', 1935, 'F', 351), +(43548, 'Tommie', 1935, 'F', 351), +(43549, 'Beverley', 1935, 'F', 350), +(43550, 'Winnie', 1935, 'F', 347), +(43551, 'Goldie', 1935, 'F', 345), +(43552, 'Beth', 1935, 'F', 343), +(43553, 'Earnestine', 1935, 'F', 341), +(43554, 'Shirlee', 1935, 'F', 340), +(43555, 'Lynn', 1935, 'F', 339), +(43556, 'Dolly', 1935, 'F', 335), +(43557, 'Earlene', 1935, 'F', 334), +(43558, 'Lupe', 1935, 'F', 334), +(43559, 'Monica', 1935, 'F', 332), +(43560, 'Lorna', 1935, 'F', 330), +(43561, 'Alyce', 1935, 'F', 326), +(43562, 'Amy', 1935, 'F', 325), +(43563, 'Angeline', 1935, 'F', 320), +(43564, 'Robbie', 1935, 'F', 317), +(43565, 'Virgie', 1935, 'F', 317), +(43566, 'Renee', 1935, 'F', 315), +(43567, 'Ila', 1935, 'F', 312), +(43568, 'Pearlie', 1935, 'F', 310), +(43569, 'Gwen', 1935, 'F', 302), +(43570, 'Gretchen', 1935, 'F', 301), +(43571, 'Molly', 1935, 'F', 301), +(43572, 'Neva', 1935, 'F', 301), +(43573, 'Faith', 1935, 'F', 300), +(43574, 'Marylou', 1935, 'F', 300), +(43575, 'Eddie', 1935, 'F', 299), +(43576, 'Therese', 1935, 'F', 296), +(43577, 'Elvira', 1935, 'F', 294), +(43578, 'Olive', 1935, 'F', 294), +(43579, 'Corinne', 1935, 'F', 291), +(43580, 'Dona', 1935, 'F', 287), +(43581, 'Nola', 1935, 'F', 286), +(43582, 'Sybil', 1935, 'F', 286), +(43583, 'Adeline', 1935, 'F', 283), +(43584, 'Mollie', 1935, 'F', 282), +(43585, 'Deborah', 1935, 'F', 279), +(43586, 'Dollie', 1935, 'F', 279), +(43587, 'Johanna', 1935, 'F', 278), +(43588, 'Doreen', 1935, 'F', 276), +(43589, 'Melva', 1935, 'F', 276), +(43590, 'Christina', 1935, 'F', 275), +(43591, 'Millie', 1935, 'F', 275), +(43592, 'Lora', 1935, 'F', 274), +(43593, 'Eugenia', 1935, 'F', 271), +(43594, 'Harriett', 1935, 'F', 271), +(43595, 'Cecile', 1935, 'F', 270), +(43596, 'Greta', 1935, 'F', 270), +(43597, 'Merle', 1935, 'F', 270), +(43598, 'Nannie', 1935, 'F', 269), +(43599, 'Rosella', 1935, 'F', 268), +(43600, 'Elma', 1935, 'F', 267), +(43601, 'Gay', 1935, 'F', 266), +(43602, 'Delia', 1935, 'F', 265), +(43603, 'Lucile', 1935, 'F', 265), +(43604, 'Marilynn', 1935, 'F', 265), +(43605, 'Cornelia', 1935, 'F', 263), +(43606, 'Janette', 1935, 'F', 262), +(43607, 'Margarita', 1935, 'F', 261), +(43608, 'Bonita', 1935, 'F', 259), +(43609, 'Corrine', 1935, 'F', 259), +(43610, 'Wilda', 1935, 'F', 257), +(43611, 'Guadalupe', 1935, 'F', 254), +(43612, 'Margery', 1935, 'F', 254), +(43613, 'Carmela', 1935, 'F', 252), +(43614, 'Florine', 1935, 'F', 252), +(43615, 'Isabelle', 1935, 'F', 251), +(43616, 'Yolanda', 1935, 'F', 251), +(43617, 'Avis', 1935, 'F', 250), +(43618, 'Nona', 1935, 'F', 250), +(43619, 'Sophie', 1935, 'F', 250), +(43620, 'Flossie', 1935, 'F', 249), +(43621, 'Annabelle', 1935, 'F', 248), +(43622, 'Rae', 1935, 'F', 248), +(43623, 'Bobby', 1935, 'F', 245), +(43624, 'Bennie', 1935, 'F', 241), +(43625, 'Leila', 1935, 'F', 240), +(43626, 'Eleanore', 1935, 'F', 238), +(43627, 'Francine', 1935, 'F', 238), +(43628, 'Freddie', 1935, 'F', 238), +(43629, 'James', 1935, 'F', 238), +(43630, 'Zelma', 1935, 'F', 237), +(43631, 'Carlene', 1935, 'F', 234), +(43632, 'Rochelle', 1935, 'F', 233), +(43633, 'Robert', 1935, 'F', 231), +(43634, 'Reva', 1935, 'F', 226), +(43635, 'Sonia', 1935, 'F', 226), +(43636, 'Joe', 1935, 'F', 224), +(43637, 'Alicia', 1935, 'F', 223), +(43638, 'Odessa', 1935, 'F', 223), +(43639, 'Edwina', 1935, 'F', 222), +(43640, 'Letha', 1935, 'F', 222), +(43641, 'Marietta', 1935, 'F', 221), +(43642, 'Queen', 1935, 'F', 221), +(43643, 'Carmella', 1935, 'F', 220), +(43644, 'Corine', 1935, 'F', 219), +(43645, 'Ilene', 1935, 'F', 219), +(43646, 'Noreen', 1935, 'F', 218), +(43647, 'Louella', 1935, 'F', 216), +(43648, 'Carla', 1935, 'F', 214), +(43649, 'Antonia', 1935, 'F', 213), +(43650, 'Selma', 1935, 'F', 212), +(43651, 'Amanda', 1935, 'F', 211), +(43652, 'Lily', 1935, 'F', 210), +(43653, 'Loraine', 1935, 'F', 210), +(43654, 'Allie', 1935, 'F', 209), +(43655, 'Hannah', 1935, 'F', 208), +(43656, 'John', 1935, 'F', 208), +(43657, 'Elouise', 1935, 'F', 205), +(43658, 'Jannie', 1935, 'F', 202), +(43659, 'Callie', 1935, 'F', 199), +(43660, 'Evangeline', 1935, 'F', 199), +(43661, 'Angie', 1935, 'F', 197), +(43662, 'Terry', 1935, 'F', 197), +(43663, 'Aurora', 1935, 'F', 196), +(43664, 'Matilda', 1935, 'F', 194), +(43665, 'Retha', 1935, 'F', 194), +(43666, 'Claudine', 1935, 'F', 193), +(43667, 'Frieda', 1935, 'F', 193), +(43668, 'Pamela', 1935, 'F', 193), +(43669, 'Helena', 1935, 'F', 190), +(43670, 'Sonya', 1935, 'F', 190), +(43671, 'Concetta', 1935, 'F', 189), +(43672, 'Jan', 1935, 'F', 187), +(43673, 'Marva', 1935, 'F', 187), +(43674, 'Jenny', 1935, 'F', 186), +(43675, 'Ophelia', 1935, 'F', 186), +(43676, 'Georgie', 1935, 'F', 184), +(43677, 'Marlyn', 1935, 'F', 184), +(43678, 'Consuelo', 1935, 'F', 182), +(43679, 'Sharlene', 1935, 'F', 182), +(43680, 'Lorena', 1935, 'F', 181), +(43681, 'Pansy', 1935, 'F', 180), +(43682, 'Bertie', 1935, 'F', 176), +(43683, 'Reta', 1935, 'F', 176), +(43684, 'Mercedes', 1935, 'F', 175), +(43685, 'Aileen', 1935, 'F', 174), +(43686, 'Vernell', 1935, 'F', 173), +(43687, 'Winona', 1935, 'F', 173), +(43688, 'Maude', 1935, 'F', 172), +(43689, 'Ima', 1935, 'F', 171), +(43690, 'Lynne', 1935, 'F', 171), +(43691, 'Katharine', 1935, 'F', 170), +(43692, 'Lelia', 1935, 'F', 169), +(43693, 'Camille', 1935, 'F', 168), +(43694, 'Ardith', 1935, 'F', 167), +(43695, 'Clare', 1935, 'F', 167), +(43696, 'Lessie', 1935, 'F', 167), +(43697, 'Nita', 1935, 'F', 166), +(43698, 'Gearldine', 1935, 'F', 165), +(43699, 'Lorine', 1935, 'F', 165), +(43700, 'Patti', 1935, 'F', 164), +(43701, 'Twila', 1935, 'F', 164), +(43702, 'Freida', 1935, 'F', 163), +(43703, 'Roxie', 1935, 'F', 163), +(43704, 'William', 1935, 'F', 163), +(43705, 'Hope', 1935, 'F', 162), +(43706, 'Iona', 1935, 'F', 162), +(43707, 'Leslie', 1935, 'F', 162), +(43708, 'Peggie', 1935, 'F', 162), +(43709, 'Susanne', 1935, 'F', 162), +(43710, 'Zelda', 1935, 'F', 161), +(43711, 'Delois', 1935, 'F', 160), +(43712, 'Delphine', 1935, 'F', 160), +(43713, 'Aline', 1935, 'F', 159), +(43714, 'Eliza', 1935, 'F', 158), +(43715, 'Ester', 1935, 'F', 158), +(43716, 'Pearline', 1935, 'F', 158), +(43717, 'Allene', 1935, 'F', 157), +(43718, 'Denise', 1935, 'F', 157), +(43719, 'Lilly', 1935, 'F', 157), +(43720, 'Rosalind', 1935, 'F', 156), +(43721, 'Stephanie', 1935, 'F', 156), +(43722, 'Doretha', 1935, 'F', 155), +(43723, 'Ardis', 1935, 'F', 154), +(43724, 'George', 1935, 'F', 154), +(43725, 'Lucia', 1935, 'F', 154), +(43726, 'Dale', 1935, 'F', 153), +(43727, 'Iola', 1935, 'F', 153), +(43728, 'Ione', 1935, 'F', 152), +(43729, 'Rosalyn', 1935, 'F', 152), +(43730, 'Jill', 1935, 'F', 151), +(43731, 'Nan', 1935, 'F', 151), +(43732, 'Alene', 1935, 'F', 150), +(43733, 'Caryl', 1935, 'F', 150), +(43734, 'Charles', 1935, 'F', 149), +(43735, 'Leta', 1935, 'F', 149), +(43736, 'Rosalee', 1935, 'F', 149), +(43737, 'Verla', 1935, 'F', 149), +(43738, 'Jeanie', 1935, 'F', 147), +(43739, 'Maudie', 1935, 'F', 147), +(43740, 'Delma', 1935, 'F', 146), +(43741, 'Dorris', 1935, 'F', 146), +(43742, 'Belva', 1935, 'F', 145), +(43743, 'Jeanine', 1935, 'F', 143), +(43744, 'Marsha', 1935, 'F', 143), +(43745, 'Toni', 1935, 'F', 143), +(43746, 'Velda', 1935, 'F', 142), +(43747, 'Althea', 1935, 'F', 141), +(43748, 'Germaine', 1935, 'F', 141), +(43749, 'Lucinda', 1935, 'F', 141), +(43750, 'Ladonna', 1935, 'F', 140), +(43751, 'Birdie', 1935, 'F', 139), +(43752, 'Dortha', 1935, 'F', 139), +(43753, 'Elise', 1935, 'F', 139), +(43754, 'Gerry', 1935, 'F', 139), +(43755, 'Berniece', 1935, 'F', 137), +(43756, 'Cleta', 1935, 'F', 136), +(43757, 'Leota', 1935, 'F', 136), +(43758, 'Roma', 1935, 'F', 135), +(43759, 'Hester', 1935, 'F', 134), +(43760, 'Treva', 1935, 'F', 134), +(43761, 'Andrea', 1935, 'F', 133), +(43762, 'Roslyn', 1935, 'F', 133), +(43763, 'Brenda', 1935, 'F', 132), +(43764, 'Vada', 1935, 'F', 132), +(43765, 'Lona', 1935, 'F', 131), +(43766, 'Madge', 1935, 'F', 131), +(43767, 'Zella', 1935, 'F', 131), +(43768, 'Elena', 1935, 'F', 130), +(43769, 'Kitty', 1935, 'F', 130), +(43770, 'Meredith', 1935, 'F', 129), +(43771, 'Roseann', 1935, 'F', 129), +(43772, 'Verda', 1935, 'F', 129), +(43773, 'Charlie', 1935, 'F', 128), +(43774, 'Dana', 1935, 'F', 128), +(43775, 'Nila', 1935, 'F', 128), +(43776, 'Richard', 1935, 'F', 128), +(43777, 'Syble', 1935, 'F', 128), +(43778, 'Marjory', 1935, 'F', 127), +(43779, 'Pattie', 1935, 'F', 127), +(43780, 'Phoebe', 1935, 'F', 127), +(43781, 'Donnie', 1935, 'F', 126), +(43782, 'Jayne', 1935, 'F', 125), +(43783, 'Josefina', 1935, 'F', 125), +(43784, 'Sammie', 1935, 'F', 125), +(43785, 'Benita', 1935, 'F', 124), +(43786, 'Dessie', 1935, 'F', 124), +(43787, 'Esperanza', 1935, 'F', 124), +(43788, 'Madelyn', 1935, 'F', 124), +(43789, 'Dottie', 1935, 'F', 123), +(43790, 'Jaunita', 1935, 'F', 123), +(43791, 'Valeria', 1935, 'F', 123), +(43792, 'Gale', 1935, 'F', 122), +(43793, 'Harriette', 1935, 'F', 122), +(43794, 'Lauretta', 1935, 'F', 122), +(43795, 'Maryjane', 1935, 'F', 122), +(43796, 'Maurine', 1935, 'F', 122), +(43797, 'Rowena', 1935, 'F', 122), +(43798, 'Margret', 1935, 'F', 121), +(43799, 'Angelita', 1935, 'F', 120), +(43800, 'Annetta', 1935, 'F', 120), +(43801, 'Georgianna', 1935, 'F', 120), +(43802, 'Ginger', 1935, 'F', 120), +(43803, 'Leora', 1935, 'F', 120), +(43804, 'Carroll', 1935, 'F', 119), +(43805, 'Kaye', 1935, 'F', 119), +(43806, 'Celestine', 1935, 'F', 118), +(43807, 'Gussie', 1935, 'F', 118), +(43808, 'Madonna', 1935, 'F', 118), +(43809, 'Saundra', 1935, 'F', 118), +(43810, 'Alva', 1935, 'F', 117), +(43811, 'Beryl', 1935, 'F', 117), +(43812, 'Georgette', 1935, 'F', 116), +(43813, 'Edythe', 1935, 'F', 115), +(43814, 'Gertie', 1935, 'F', 115), +(43815, 'Jeannie', 1935, 'F', 115), +(43816, 'Ursula', 1935, 'F', 115), +(43817, 'Lue', 1935, 'F', 114), +(43818, 'Elsa', 1935, 'F', 113), +(43819, 'Emogene', 1935, 'F', 113), +(43820, 'Margot', 1935, 'F', 113), +(43821, 'Donald', 1935, 'F', 112), +(43822, 'Gilda', 1935, 'F', 112), +(43823, 'Lavern', 1935, 'F', 112), +(43824, 'Wilhelmina', 1935, 'F', 111), +(43825, 'Elida', 1935, 'F', 110), +(43826, 'Lynda', 1935, 'F', 110), +(43827, 'Vernice', 1935, 'F', 110), +(43828, 'Ava', 1935, 'F', 109), +(43829, 'Berta', 1935, 'F', 109), +(43830, 'Charline', 1935, 'F', 109), +(43831, 'Maryellen', 1935, 'F', 109), +(43832, 'Millicent', 1935, 'F', 109), +(43833, 'Oma', 1935, 'F', 109), +(43834, 'Elisabeth', 1935, 'F', 108), +(43835, 'Emilie', 1935, 'F', 108), +(43836, 'Camilla', 1935, 'F', 107), +(43837, 'Myrtis', 1935, 'F', 107), +(43838, 'Enid', 1935, 'F', 106), +(43839, 'Lettie', 1935, 'F', 106), +(43840, 'Petra', 1935, 'F', 106), +(43841, 'Tillie', 1935, 'F', 106), +(43842, 'Georgiana', 1935, 'F', 105), +(43843, 'Kate', 1935, 'F', 105), +(43844, 'Linnie', 1935, 'F', 105), +(43845, 'Alfreda', 1935, 'F', 104), +(43846, 'Lura', 1935, 'F', 104), +(43847, 'Shirlene', 1935, 'F', 104), +(43848, 'Socorro', 1935, 'F', 104), +(43849, 'Tina', 1935, 'F', 104), +(43850, 'Billy', 1935, 'F', 103), +(43851, 'Charleen', 1935, 'F', 103), +(43852, 'Madeleine', 1935, 'F', 103), +(43853, 'Magdalene', 1935, 'F', 103), +(43854, 'Adelaide', 1935, 'F', 102), +(43855, 'Agatha', 1935, 'F', 102), +(43856, 'Elisa', 1935, 'F', 102), +(43857, 'Floy', 1935, 'F', 102), +(43858, 'Laurel', 1935, 'F', 102), +(43859, 'Louisa', 1935, 'F', 102), +(43860, 'Norene', 1935, 'F', 102), +(43861, 'Hellen', 1935, 'F', 101), +(43862, 'Isabell', 1935, 'F', 101), +(43863, 'Lavon', 1935, 'F', 101), +(43864, 'Minerva', 1935, 'F', 101), +(43865, 'Sophia', 1935, 'F', 101), +(43866, 'Veda', 1935, 'F', 101), +(43867, 'Cheryl', 1935, 'F', 100), +(43868, 'Manuela', 1935, 'F', 100), +(43869, 'Ofelia', 1935, 'F', 100), +(43870, 'Rhea', 1935, 'F', 100), +(43871, 'Vesta', 1935, 'F', 100), +(43872, 'Robert', 1935, 'M', 56514), +(43873, 'James', 1935, 'M', 54986), +(43874, 'John', 1935, 'M', 47492), +(43875, 'William', 1935, 'M', 40201), +(43876, 'Richard', 1935, 'M', 33939), +(43877, 'Charles', 1935, 'M', 29968), +(43878, 'Donald', 1935, 'M', 29657), +(43879, 'George', 1935, 'M', 18553), +(43880, 'Thomas', 1935, 'M', 17674), +(43881, 'Joseph', 1935, 'M', 17185), +(43882, 'David', 1935, 'M', 15660), +(43883, 'Ronald', 1935, 'M', 15477), +(43884, 'Edward', 1935, 'M', 13834), +(43885, 'Paul', 1935, 'M', 12556), +(43886, 'Kenneth', 1935, 'M', 12061), +(43887, 'Frank', 1935, 'M', 10416), +(43888, 'Raymond', 1935, 'M', 9561), +(43889, 'Jack', 1935, 'M', 9430), +(43890, 'Billy', 1935, 'M', 9237), +(43891, 'Harold', 1935, 'M', 9166), +(43892, 'Gerald', 1935, 'M', 8450), +(43893, 'Jerry', 1935, 'M', 8448), +(43894, 'Walter', 1935, 'M', 7814), +(43895, 'Bobby', 1935, 'M', 7726), +(43896, 'Joe', 1935, 'M', 7554), +(43897, 'Henry', 1935, 'M', 6852), +(43898, 'Eugene', 1935, 'M', 6846), +(43899, 'Carl', 1935, 'M', 6695), +(43900, 'Arthur', 1935, 'M', 6542), +(43901, 'Willie', 1935, 'M', 6327), +(43902, 'Albert', 1935, 'M', 6093), +(43903, 'Ralph', 1935, 'M', 6092), +(43904, 'Larry', 1935, 'M', 5976), +(43905, 'Fred', 1935, 'M', 5491), +(43906, 'Lawrence', 1935, 'M', 5349), +(43907, 'Roger', 1935, 'M', 5150), +(43908, 'Harry', 1935, 'M', 5053), +(43909, 'Norman', 1935, 'M', 5039), +(43910, 'Howard', 1935, 'M', 4967), +(43911, 'Roy', 1935, 'M', 4939), +(43912, 'Michael', 1935, 'M', 4906), +(43913, 'Louis', 1935, 'M', 4613), +(43914, 'Daniel', 1935, 'M', 4590), +(43915, 'Gary', 1935, 'M', 4490), +(43916, 'Marvin', 1935, 'M', 4268), +(43917, 'Earl', 1935, 'M', 4216), +(43918, 'Jimmy', 1935, 'M', 4174), +(43919, 'Clarence', 1935, 'M', 4078), +(43920, 'Wayne', 1935, 'M', 4057), +(43921, 'Leroy', 1935, 'M', 3916), +(43922, 'Don', 1935, 'M', 3913), +(43923, 'Anthony', 1935, 'M', 3908), +(43924, 'Francis', 1935, 'M', 3895), +(43925, 'Leonard', 1935, 'M', 3805), +(43926, 'Stanley', 1935, 'M', 3697), +(43927, 'Ernest', 1935, 'M', 3694), +(43928, 'Melvin', 1935, 'M', 3601), +(43929, 'Herbert', 1935, 'M', 3441), +(43930, 'Peter', 1935, 'M', 3421), +(43931, 'Bill', 1935, 'M', 3282), +(43932, 'Dale', 1935, 'M', 3272), +(43933, 'Samuel', 1935, 'M', 3152), +(43934, 'Alfred', 1935, 'M', 3119), +(43935, 'Ray', 1935, 'M', 3068), +(43936, 'Philip', 1935, 'M', 3062), +(43937, 'Gene', 1935, 'M', 2940), +(43938, 'Bernard', 1935, 'M', 2932), +(43939, 'Russell', 1935, 'M', 2832), +(43940, 'Jimmie', 1935, 'M', 2830), +(43941, 'Gordon', 1935, 'M', 2613), +(43942, 'Franklin', 1935, 'M', 2609), +(43943, 'Dennis', 1935, 'M', 2592), +(43944, 'Frederick', 1935, 'M', 2583), +(43945, 'Johnny', 1935, 'M', 2532), +(43946, 'Douglas', 1935, 'M', 2528), +(43947, 'Floyd', 1935, 'M', 2505), +(43948, 'Bruce', 1935, 'M', 2448), +(43949, 'Glenn', 1935, 'M', 2436), +(43950, 'Theodore', 1935, 'M', 2434), +(43951, 'Lee', 1935, 'M', 2425), +(43952, 'Bob', 1935, 'M', 2388), +(43953, 'Clyde', 1935, 'M', 2352), +(43954, 'Allen', 1935, 'M', 2308), +(43955, 'Lloyd', 1935, 'M', 2292), +(43956, 'Andrew', 1935, 'M', 2290), +(43957, 'Leon', 1935, 'M', 2283), +(43958, 'Eddie', 1935, 'M', 2280), +(43959, 'Clifford', 1935, 'M', 2261), +(43960, 'Edwin', 1935, 'M', 2260), +(43961, 'Jim', 1935, 'M', 2245), +(43962, 'Alvin', 1935, 'M', 2166), +(43963, 'Leo', 1935, 'M', 2141), +(43964, 'Martin', 1935, 'M', 2116), +(43965, 'Vernon', 1935, 'M', 2110), +(43966, 'Tommy', 1935, 'M', 2029), +(43967, 'Jerome', 1935, 'M', 2009), +(43968, 'Warren', 1935, 'M', 1993), +(43969, 'Lewis', 1935, 'M', 1970), +(43970, 'Harvey', 1935, 'M', 1957), +(43971, 'Charlie', 1935, 'M', 1923), +(43972, 'Herman', 1935, 'M', 1920), +(43973, 'Jackie', 1935, 'M', 1900), +(43974, 'Arnold', 1935, 'M', 1880), +(43975, 'Jesse', 1935, 'M', 1867), +(43976, 'Duane', 1935, 'M', 1829), +(43977, 'Vincent', 1935, 'M', 1796), +(43978, 'Phillip', 1935, 'M', 1782), +(43979, 'Curtis', 1935, 'M', 1750), +(43980, 'Cecil', 1935, 'M', 1729), +(43981, 'Tom', 1935, 'M', 1724), +(43982, 'Gilbert', 1935, 'M', 1682), +(43983, 'Patrick', 1935, 'M', 1664), +(43984, 'Stephen', 1935, 'M', 1650), +(43985, 'Lester', 1935, 'M', 1624), +(43986, 'Elmer', 1935, 'M', 1593), +(43987, 'Victor', 1935, 'M', 1546), +(43988, 'Milton', 1935, 'M', 1530), +(43989, 'Johnnie', 1935, 'M', 1510), +(43990, 'Roland', 1935, 'M', 1487), +(43991, 'Dean', 1935, 'M', 1436), +(43992, 'Chester', 1935, 'M', 1431), +(43993, 'Alan', 1935, 'M', 1425), +(43994, 'Benjamin', 1935, 'M', 1409), +(43995, 'Glen', 1935, 'M', 1393), +(43996, 'Keith', 1935, 'M', 1367), +(43997, 'Sam', 1935, 'M', 1363), +(43998, 'Calvin', 1935, 'M', 1318), +(43999, 'Max', 1935, 'M', 1283), +(44000, 'Claude', 1935, 'M', 1263), +(44001, 'Maurice', 1935, 'M', 1232), +(44002, 'Leslie', 1935, 'M', 1223), +(44003, 'Willard', 1935, 'M', 1214), +(44004, 'Wallace', 1935, 'M', 1200), +(44005, 'Marion', 1935, 'M', 1182), +(44006, 'Jose', 1935, 'M', 1167), +(44007, 'Darrell', 1935, 'M', 1151), +(44008, 'Manuel', 1935, 'M', 1147), +(44009, 'Edgar', 1935, 'M', 1144), +(44010, 'Hugh', 1935, 'M', 1142), +(44011, 'Jessie', 1935, 'M', 1103), +(44012, 'Virgil', 1935, 'M', 1102), +(44013, 'Dick', 1935, 'M', 1093), +(44014, 'Oscar', 1935, 'M', 1091), +(44015, 'Ted', 1935, 'M', 1083), +(44016, 'Freddie', 1935, 'M', 1081), +(44017, 'Everett', 1935, 'M', 1069), +(44018, 'Jay', 1935, 'M', 1066), +(44019, 'Wesley', 1935, 'M', 1040), +(44020, 'Rodney', 1935, 'M', 1025), +(44021, 'Allan', 1935, 'M', 1015), +(44022, 'Dan', 1935, 'M', 1014), +(44023, 'Lowell', 1935, 'M', 993), +(44024, 'Sidney', 1935, 'M', 974), +(44025, 'Terry', 1935, 'M', 960), +(44026, 'Lyle', 1935, 'M', 935), +(44027, 'Bennie', 1935, 'M', 934), +(44028, 'Joel', 1935, 'M', 918), +(44029, 'Nicholas', 1935, 'M', 913), +(44030, 'Morris', 1935, 'M', 907), +(44031, 'Hubert', 1935, 'M', 905), +(44032, 'Ben', 1935, 'M', 891), +(44033, 'Tony', 1935, 'M', 884), +(44034, 'Earnest', 1935, 'M', 881), +(44035, 'Ronnie', 1935, 'M', 864), +(44036, 'Delbert', 1935, 'M', 862), +(44037, 'Wilbur', 1935, 'M', 860), +(44038, 'Neil', 1935, 'M', 858), +(44039, 'Billie', 1935, 'M', 846), +(44040, 'Luther', 1935, 'M', 832), +(44041, 'Homer', 1935, 'M', 819), +(44042, 'Carroll', 1935, 'M', 809), +(44043, 'Karl', 1935, 'M', 809), +(44044, 'Horace', 1935, 'M', 789), +(44045, 'Willis', 1935, 'M', 788), +(44046, 'Mark', 1935, 'M', 787), +(44047, 'Steve', 1935, 'M', 773), +(44048, 'Guy', 1935, 'M', 768), +(44049, 'Lonnie', 1935, 'M', 759), +(44050, 'Roosevelt', 1935, 'M', 759), +(44051, 'Nathaniel', 1935, 'M', 747), +(44052, 'Rudolph', 1935, 'M', 745), +(44053, 'Mike', 1935, 'M', 728), +(44054, 'Barry', 1935, 'M', 727), +(44055, 'Otis', 1935, 'M', 727), +(44056, 'Clinton', 1935, 'M', 717), +(44057, 'Alexander', 1935, 'M', 700), +(44058, 'Clayton', 1935, 'M', 700), +(44059, 'Alton', 1935, 'M', 699), +(44060, 'Archie', 1935, 'M', 679), +(44061, 'Junior', 1935, 'M', 678), +(44062, 'Benny', 1935, 'M', 677), +(44063, 'Danny', 1935, 'M', 670), +(44064, 'Marshall', 1935, 'M', 661), +(44065, 'Wendell', 1935, 'M', 655), +(44066, 'Matthew', 1935, 'M', 654), +(44067, 'Clifton', 1935, 'M', 650), +(44068, 'Oliver', 1935, 'M', 650), +(44069, 'Rex', 1935, 'M', 647), +(44070, 'Doyle', 1935, 'M', 630), +(44071, 'Juan', 1935, 'M', 628), +(44072, 'Leland', 1935, 'M', 623), +(44073, 'Buddy', 1935, 'M', 604), +(44074, 'Salvatore', 1935, 'M', 596), +(44075, 'Pete', 1935, 'M', 588), +(44076, 'Ivan', 1935, 'M', 587), +(44077, 'Myron', 1935, 'M', 584), +(44078, 'Orville', 1935, 'M', 582), +(44079, 'Alex', 1935, 'M', 579), +(44080, 'Nelson', 1935, 'M', 579), +(44081, 'Loren', 1935, 'M', 573), +(44082, 'Bobbie', 1935, 'M', 570), +(44083, 'Edmund', 1935, 'M', 565), +(44084, 'Carlos', 1935, 'M', 559), +(44085, 'Julius', 1935, 'M', 559), +(44086, 'Lynn', 1935, 'M', 555), +(44087, 'Ira', 1935, 'M', 549), +(44088, 'Troy', 1935, 'M', 548), +(44089, 'Elbert', 1935, 'M', 546), +(44090, 'Fredrick', 1935, 'M', 546), +(44091, 'Ramon', 1935, 'M', 546), +(44092, 'Malcolm', 1935, 'M', 545), +(44093, 'Wilbert', 1935, 'M', 541), +(44094, 'Jon', 1935, 'M', 537), +(44095, 'Sylvester', 1935, 'M', 530), +(44096, 'Gerard', 1935, 'M', 525), +(44097, 'Merle', 1935, 'M', 521), +(44098, 'Perry', 1935, 'M', 516), +(44099, 'Eldon', 1935, 'M', 514), +(44100, 'Sherman', 1935, 'M', 509), +(44101, 'Dewey', 1935, 'M', 504), +(44102, 'Antonio', 1935, 'M', 501), +(44103, 'Jesus', 1935, 'M', 499), +(44104, 'Tommie', 1935, 'M', 499), +(44105, 'Ervin', 1935, 'M', 498), +(44106, 'Julian', 1935, 'M', 496), +(44107, 'Stuart', 1935, 'M', 495), +(44108, 'Huey', 1935, 'M', 494), +(44109, 'Angelo', 1935, 'M', 492), +(44110, 'Carlton', 1935, 'M', 488), +(44111, 'Ruben', 1935, 'M', 488), +(44112, 'Isaac', 1935, 'M', 476), +(44113, 'Jacob', 1935, 'M', 476), +(44114, 'Dwight', 1935, 'M', 475), +(44115, 'Grady', 1935, 'M', 475), +(44116, 'Irvin', 1935, 'M', 474), +(44117, 'Bert', 1935, 'M', 470), +(44118, 'Dave', 1935, 'M', 469), +(44119, 'Nathan', 1935, 'M', 468), +(44120, 'Sheldon', 1935, 'M', 466), +(44121, 'Aaron', 1935, 'M', 460), +(44122, 'Conrad', 1935, 'M', 460), +(44123, 'Rufus', 1935, 'M', 459), +(44124, 'Byron', 1935, 'M', 457), +(44125, 'Pat', 1935, 'M', 457), +(44126, 'Nick', 1935, 'M', 456), +(44127, 'Mack', 1935, 'M', 450), +(44128, 'Ellis', 1935, 'M', 438), +(44129, 'Sammy', 1935, 'M', 435), +(44130, 'Shirley', 1935, 'M', 435), +(44131, 'Rudy', 1935, 'M', 430), +(44132, 'Laurence', 1935, 'M', 427), +(44133, 'Ross', 1935, 'M', 427), +(44134, 'Donnie', 1935, 'M', 426), +(44135, 'Forrest', 1935, 'M', 421), +(44136, 'Neal', 1935, 'M', 415), +(44137, 'Darrel', 1935, 'M', 414), +(44138, 'Teddy', 1935, 'M', 414), +(44139, 'Dallas', 1935, 'M', 412), +(44140, 'Owen', 1935, 'M', 411), +(44141, 'Steven', 1935, 'M', 409), +(44142, 'Wilfred', 1935, 'M', 409), +(44143, 'Norbert', 1935, 'M', 400), +(44144, 'Burton', 1935, 'M', 399), +(44145, 'Felix', 1935, 'M', 389), +(44146, 'Harlan', 1935, 'M', 388), +(44147, 'Percy', 1935, 'M', 386), +(44148, 'Marlin', 1935, 'M', 385), +(44149, 'Loyd', 1935, 'M', 383), +(44150, 'Irwin', 1935, 'M', 381), +(44151, 'Clark', 1935, 'M', 376), +(44152, 'Timothy', 1935, 'M', 371), +(44153, 'Gregory', 1935, 'M', 368), +(44154, 'Royce', 1935, 'M', 365), +(44155, 'Harley', 1935, 'M', 364), +(44156, 'Garland', 1935, 'M', 361), +(44157, 'Emmett', 1935, 'M', 358), +(44158, 'Pedro', 1935, 'M', 357), +(44159, 'Boyd', 1935, 'M', 352), +(44160, 'Irving', 1935, 'M', 352), +(44161, 'Kent', 1935, 'M', 351), +(44162, 'Reginald', 1935, 'M', 350), +(44163, 'Aubrey', 1935, 'M', 348), +(44164, 'Travis', 1935, 'M', 345), +(44165, 'Louie', 1935, 'M', 344), +(44166, 'Johnie', 1935, 'M', 340), +(44167, 'Noel', 1935, 'M', 340), +(44168, 'Wilson', 1935, 'M', 340), +(44169, 'Sammie', 1935, 'M', 332), +(44170, 'Darwin', 1935, 'M', 330), +(44171, 'Grover', 1935, 'M', 328), +(44172, 'Wade', 1935, 'M', 328), +(44173, 'Raul', 1935, 'M', 324), +(44174, 'Preston', 1935, 'M', 323), +(44175, 'Emil', 1935, 'M', 320), +(44176, 'Elwood', 1935, 'M', 314), +(44177, 'Maynard', 1935, 'M', 312), +(44178, 'Francisco', 1935, 'M', 311), +(44179, 'Randolph', 1935, 'M', 311), +(44180, 'Morton', 1935, 'M', 310), +(44181, 'Merlin', 1935, 'M', 308), +(44182, 'Will', 1935, 'M', 306), +(44183, 'Mario', 1935, 'M', 303), +(44184, 'Amos', 1935, 'M', 301), +(44185, 'Laverne', 1935, 'M', 300), +(44186, 'Jerald', 1935, 'M', 294), +(44187, 'Cornelius', 1935, 'M', 292), +(44188, 'Frankie', 1935, 'M', 290), +(44189, 'Otto', 1935, 'M', 290), +(44190, 'Delmar', 1935, 'M', 289), +(44191, 'Randall', 1935, 'M', 289), +(44192, 'Dominic', 1935, 'M', 288); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(44193, 'Grant', 1935, 'M', 288), +(44194, 'Eric', 1935, 'M', 287), +(44195, 'Wiley', 1935, 'M', 286), +(44196, 'Lionel', 1935, 'M', 282), +(44197, 'Edmond', 1935, 'M', 278), +(44198, 'Kermit', 1935, 'M', 278), +(44199, 'Mitchell', 1935, 'M', 277), +(44200, 'Mary', 1935, 'M', 276), +(44201, 'Woodrow', 1935, 'M', 272), +(44202, 'Dominick', 1935, 'M', 271), +(44203, 'Christopher', 1935, 'M', 270), +(44204, 'Luis', 1935, 'M', 270), +(44205, 'August', 1935, 'M', 269), +(44206, 'Norris', 1935, 'M', 266), +(44207, 'Alfonso', 1935, 'M', 265), +(44208, 'Roberto', 1935, 'M', 265), +(44209, 'Phil', 1935, 'M', 264), +(44210, 'Thurman', 1935, 'M', 263), +(44211, 'Abraham', 1935, 'M', 259), +(44212, 'Cleveland', 1935, 'M', 259), +(44213, 'Elton', 1935, 'M', 259), +(44214, 'Garry', 1935, 'M', 259), +(44215, 'Moses', 1935, 'M', 256), +(44216, 'Murray', 1935, 'M', 255), +(44217, 'Ned', 1935, 'M', 255), +(44218, 'Brian', 1935, 'M', 254), +(44219, 'Millard', 1935, 'M', 252), +(44220, 'Odell', 1935, 'M', 250), +(44221, 'Erwin', 1935, 'M', 249), +(44222, 'Gale', 1935, 'M', 244), +(44223, 'Ed', 1935, 'M', 243), +(44224, 'Alonzo', 1935, 'M', 242), +(44225, 'Elvin', 1935, 'M', 241), +(44226, 'Charley', 1935, 'M', 240), +(44227, 'Adam', 1935, 'M', 238), +(44228, 'Bradley', 1935, 'M', 237), +(44229, 'Roscoe', 1935, 'M', 237), +(44230, 'Reuben', 1935, 'M', 227), +(44231, 'Stewart', 1935, 'M', 227), +(44232, 'Weldon', 1935, 'M', 226), +(44233, 'Marcus', 1935, 'M', 224), +(44234, 'Sanford', 1935, 'M', 224), +(44235, 'Austin', 1935, 'M', 222), +(44236, 'Andy', 1935, 'M', 219), +(44237, 'Clair', 1935, 'M', 217), +(44238, 'Lamar', 1935, 'M', 217), +(44239, 'Coy', 1935, 'M', 216), +(44240, 'Lorenzo', 1935, 'M', 213), +(44241, 'Jasper', 1935, 'M', 212), +(44242, 'Adrian', 1935, 'M', 211), +(44243, 'Carmen', 1935, 'M', 211), +(44244, 'Elijah', 1935, 'M', 211), +(44245, 'Emanuel', 1935, 'M', 211), +(44246, 'Scott', 1935, 'M', 211), +(44247, 'Monroe', 1935, 'M', 210), +(44248, 'Lavern', 1935, 'M', 209), +(44249, 'Al', 1935, 'M', 208), +(44250, 'Carol', 1935, 'M', 206), +(44251, 'Guadalupe', 1935, 'M', 205), +(44252, 'Mervin', 1935, 'M', 203), +(44253, 'Hal', 1935, 'M', 201), +(44254, 'Ollie', 1935, 'M', 201), +(44255, 'Harrison', 1935, 'M', 200), +(44256, 'Simon', 1935, 'M', 200), +(44257, 'Alfredo', 1935, 'M', 199), +(44258, 'Truman', 1935, 'M', 198), +(44259, 'Gus', 1935, 'M', 197), +(44260, 'Adolph', 1935, 'M', 195), +(44261, 'Jan', 1935, 'M', 195), +(44262, 'Jean', 1935, 'M', 195), +(44263, 'Wilburn', 1935, 'M', 195), +(44264, 'Gail', 1935, 'M', 194), +(44265, 'Wilmer', 1935, 'M', 194), +(44266, 'Elliott', 1935, 'M', 192), +(44267, 'Dwayne', 1935, 'M', 190), +(44268, 'Dewayne', 1935, 'M', 188), +(44269, 'Merrill', 1935, 'M', 188), +(44270, 'Nolan', 1935, 'M', 188), +(44271, 'Freddy', 1935, 'M', 187), +(44272, 'Hollis', 1935, 'M', 186), +(44273, 'Barney', 1935, 'M', 183), +(44274, 'Levi', 1935, 'M', 183), +(44275, 'Delmer', 1935, 'M', 182), +(44276, 'Van', 1935, 'M', 182), +(44277, 'Arlen', 1935, 'M', 181), +(44278, 'Chris', 1935, 'M', 181), +(44279, 'Emery', 1935, 'M', 181), +(44280, 'Harris', 1935, 'M', 181), +(44281, 'Hershel', 1935, 'M', 180), +(44282, 'Sterling', 1935, 'M', 180), +(44283, 'Jake', 1935, 'M', 179), +(44284, 'Rocco', 1935, 'M', 179), +(44285, 'Mickey', 1935, 'M', 178), +(44286, 'Gabriel', 1935, 'M', 177), +(44287, 'Kevin', 1935, 'M', 176), +(44288, 'Olin', 1935, 'M', 176), +(44289, 'Basil', 1935, 'M', 175), +(44290, 'Eli', 1935, 'M', 175), +(44291, 'Hector', 1935, 'M', 175), +(44292, 'Noah', 1935, 'M', 175), +(44293, 'Winston', 1935, 'M', 175), +(44294, 'Buford', 1935, 'M', 174), +(44295, 'Clement', 1935, 'M', 174), +(44296, 'Dudley', 1935, 'M', 173), +(44297, 'Emory', 1935, 'M', 173), +(44298, 'Denver', 1935, 'M', 172), +(44299, 'Terrence', 1935, 'M', 172), +(44300, 'Ulysses', 1935, 'M', 171), +(44301, 'Craig', 1935, 'M', 170), +(44302, 'Denis', 1935, 'M', 170), +(44303, 'Carrol', 1935, 'M', 169), +(44304, 'Jackson', 1935, 'M', 169), +(44305, 'Ken', 1935, 'M', 168), +(44306, 'Rodger', 1935, 'M', 168), +(44307, 'Armand', 1935, 'M', 167), +(44308, 'Fredric', 1935, 'M', 167), +(44309, 'Jess', 1935, 'M', 167), +(44310, 'Russel', 1935, 'M', 167), +(44311, 'Salvador', 1935, 'M', 167), +(44312, 'Cleo', 1935, 'M', 166), +(44313, 'Earle', 1935, 'M', 166), +(44314, 'Jonathan', 1935, 'M', 166), +(44315, 'Rene', 1935, 'M', 166), +(44316, 'Warner', 1935, 'M', 165), +(44317, 'Monte', 1935, 'M', 164), +(44318, 'Spencer', 1935, 'M', 163), +(44319, 'Ricardo', 1935, 'M', 162), +(44320, 'Ernie', 1935, 'M', 161), +(44321, 'Miles', 1935, 'M', 161), +(44322, 'Seymour', 1935, 'M', 159), +(44323, 'Dalton', 1935, 'M', 158), +(44324, 'Normand', 1935, 'M', 157), +(44325, 'Ward', 1935, 'M', 157), +(44326, 'Armando', 1935, 'M', 156), +(44327, 'Riley', 1935, 'M', 156), +(44328, 'Linwood', 1935, 'M', 155), +(44329, 'Bud', 1935, 'M', 153), +(44330, 'Vern', 1935, 'M', 153), +(44331, 'Wilford', 1935, 'M', 153), +(44332, 'Betty', 1935, 'M', 151), +(44333, 'Gayle', 1935, 'M', 151), +(44334, 'Rolland', 1935, 'M', 151), +(44335, 'Kay', 1935, 'M', 150), +(44336, 'Roderick', 1935, 'M', 150), +(44337, 'Elmo', 1935, 'M', 148), +(44338, 'Herschel', 1935, 'M', 147), +(44339, 'Milford', 1935, 'M', 147), +(44340, 'Alva', 1935, 'M', 146), +(44341, 'Miguel', 1935, 'M', 146), +(44342, 'Winfred', 1935, 'M', 146), +(44343, 'Rodolfo', 1935, 'M', 145), +(44344, 'Sonny', 1935, 'M', 145), +(44345, 'Silas', 1935, 'M', 143), +(44346, 'Vance', 1935, 'M', 143), +(44347, 'Vito', 1935, 'M', 143), +(44348, 'Frederic', 1935, 'M', 142), +(44349, 'Blaine', 1935, 'M', 140), +(44350, 'Galen', 1935, 'M', 140), +(44351, 'Vaughn', 1935, 'M', 140), +(44352, 'Everette', 1935, 'M', 138), +(44353, 'Burl', 1935, 'M', 137), +(44354, 'Jeff', 1935, 'M', 137), +(44355, 'Jerold', 1935, 'M', 137), +(44356, 'Carmine', 1935, 'M', 136), +(44357, 'Cletus', 1935, 'M', 136), +(44358, 'Lenard', 1935, 'M', 136), +(44359, 'Bernie', 1935, 'M', 135), +(44360, 'Connie', 1935, 'M', 135), +(44361, 'Darryl', 1935, 'M', 135), +(44362, 'Pablo', 1935, 'M', 135), +(44363, 'Tomas', 1935, 'M', 135), +(44364, 'Alphonso', 1935, 'M', 134), +(44365, 'Arturo', 1935, 'M', 134), +(44366, 'Daryl', 1935, 'M', 134), +(44367, 'Kennith', 1935, 'M', 133), +(44368, 'Domingo', 1935, 'M', 132), +(44369, 'Solomon', 1935, 'M', 132), +(44370, 'Tim', 1935, 'M', 131), +(44371, 'Booker', 1935, 'M', 130), +(44372, 'Elias', 1935, 'M', 130), +(44373, 'Ernesto', 1935, 'M', 130), +(44374, 'Morgan', 1935, 'M', 130), +(44375, 'Cyril', 1935, 'M', 129), +(44376, 'Forest', 1935, 'M', 129), +(44377, 'Micheal', 1935, 'M', 129), +(44378, 'Alberto', 1935, 'M', 128), +(44379, 'Fernando', 1935, 'M', 128), +(44380, 'Denny', 1935, 'M', 127), +(44381, 'Orval', 1935, 'M', 127), +(44382, 'Claud', 1935, 'M', 126), +(44383, 'Lyman', 1935, 'M', 126), +(44384, 'Odis', 1935, 'M', 126), +(44385, 'Kelly', 1935, 'M', 125), +(44386, 'Maxie', 1935, 'M', 125), +(44387, 'Barbara', 1935, 'M', 124), +(44388, 'Hoyt', 1935, 'M', 124), +(44389, 'Patsy', 1935, 'M', 124), +(44390, 'Rafael', 1935, 'M', 124), +(44391, 'Lanny', 1935, 'M', 123), +(44392, 'Royal', 1935, 'M', 123), +(44393, 'Jerrold', 1935, 'M', 122), +(44394, 'Kenny', 1935, 'M', 122), +(44395, 'Elroy', 1935, 'M', 121), +(44396, 'Luke', 1935, 'M', 121), +(44397, 'Shelby', 1935, 'M', 121), +(44398, 'Dana', 1935, 'M', 120), +(44399, 'Dorothy', 1935, 'M', 120), +(44400, 'Wilton', 1935, 'M', 119), +(44401, 'Arden', 1935, 'M', 118), +(44402, 'Delano', 1935, 'M', 118), +(44403, 'Elden', 1935, 'M', 118), +(44404, 'Harmon', 1935, 'M', 117), +(44405, 'Dickie', 1935, 'M', 116), +(44406, 'Foster', 1935, 'M', 116), +(44407, 'Gerry', 1935, 'M', 116), +(44408, 'Graham', 1935, 'M', 116), +(44409, 'Rogers', 1935, 'M', 116), +(44410, 'Raymon', 1935, 'M', 115), +(44411, 'Alphonse', 1935, 'M', 114), +(44412, 'Kyle', 1935, 'M', 114), +(44413, 'Lynwood', 1935, 'M', 114), +(44414, 'Arther', 1935, 'M', 113), +(44415, 'Emilio', 1935, 'M', 113), +(44416, 'Gilberto', 1935, 'M', 112), +(44417, 'Jeremiah', 1935, 'M', 112), +(44418, 'Freeman', 1935, 'M', 111), +(44419, 'Clay', 1935, 'M', 110), +(44420, 'Emerson', 1935, 'M', 110), +(44421, 'Kerry', 1935, 'M', 110), +(44422, 'Dwain', 1935, 'M', 109), +(44423, 'Gaylord', 1935, 'M', 109), +(44424, 'Saul', 1935, 'M', 109), +(44425, 'Bryan', 1935, 'M', 108), +(44426, 'Hobert', 1935, 'M', 108), +(44427, 'Augustine', 1935, 'M', 107), +(44428, 'Alden', 1935, 'M', 106), +(44429, 'Enrique', 1935, 'M', 106), +(44430, 'Evan', 1935, 'M', 106), +(44431, 'Olen', 1935, 'M', 106), +(44432, 'Roman', 1935, 'M', 106), +(44433, 'Talmadge', 1935, 'M', 106), +(44434, 'Buster', 1935, 'M', 105), +(44435, 'Merlyn', 1935, 'M', 105), +(44436, 'Wilber', 1935, 'M', 105), +(44437, 'Anton', 1935, 'M', 104), +(44438, 'Davis', 1935, 'M', 104), +(44439, 'Dee', 1935, 'M', 104), +(44440, 'Ellsworth', 1935, 'M', 104), +(44441, 'Fletcher', 1935, 'M', 104), +(44442, 'Hiram', 1935, 'M', 104), +(44443, 'Jere', 1935, 'M', 104), +(44444, 'Hilton', 1935, 'M', 102), +(44445, 'Terrance', 1935, 'M', 102), +(44446, 'Augustus', 1935, 'M', 101), +(44447, 'Carter', 1935, 'M', 101), +(44448, 'Ferdinand', 1935, 'M', 101), +(44449, 'Jefferson', 1935, 'M', 101), +(44450, 'Julio', 1935, 'M', 101), +(44451, 'Pasquale', 1935, 'M', 101), +(44452, 'Lacy', 1935, 'M', 100), +(44453, 'Orlando', 1935, 'M', 100), +(44454, 'Mary', 1936, 'F', 54363), +(44455, 'Shirley', 1936, 'F', 35156), +(44456, 'Barbara', 1936, 'F', 31678), +(44457, 'Betty', 1936, 'F', 25861), +(44458, 'Patricia', 1936, 'F', 23912), +(44459, 'Dorothy', 1936, 'F', 17670), +(44460, 'Joan', 1936, 'F', 17067), +(44461, 'Nancy', 1936, 'F', 16756), +(44462, 'Margaret', 1936, 'F', 14593), +(44463, 'Carol', 1936, 'F', 14520), +(44464, 'Helen', 1936, 'F', 12233), +(44465, 'Joyce', 1936, 'F', 11987), +(44466, 'Marilyn', 1936, 'F', 11066), +(44467, 'Virginia', 1936, 'F', 9650), +(44468, 'Doris', 1936, 'F', 9218), +(44469, 'Ruth', 1936, 'F', 9212), +(44470, 'Beverly', 1936, 'F', 8899), +(44471, 'Elizabeth', 1936, 'F', 8862), +(44472, 'Frances', 1936, 'F', 8782), +(44473, 'Jean', 1936, 'F', 8536), +(44474, 'Janet', 1936, 'F', 8082), +(44475, 'Donna', 1936, 'F', 7931), +(44476, 'Carolyn', 1936, 'F', 7907), +(44477, 'Martha', 1936, 'F', 7386), +(44478, 'Phyllis', 1936, 'F', 7371), +(44479, 'Lois', 1936, 'F', 7228), +(44480, 'Alice', 1936, 'F', 7198), +(44481, 'Ann', 1936, 'F', 6662), +(44482, 'Norma', 1936, 'F', 6631), +(44483, 'Dolores', 1936, 'F', 6416), +(44484, 'Janice', 1936, 'F', 6148), +(44485, 'Gloria', 1936, 'F', 6138), +(44486, 'Marie', 1936, 'F', 6131), +(44487, 'Evelyn', 1936, 'F', 6107), +(44488, 'Peggy', 1936, 'F', 6065), +(44489, 'Anna', 1936, 'F', 5725), +(44490, 'Rose', 1936, 'F', 5698), +(44491, 'Sandra', 1936, 'F', 5524), +(44492, 'Marlene', 1936, 'F', 5331), +(44493, 'Mildred', 1936, 'F', 5053), +(44494, 'Geraldine', 1936, 'F', 4861), +(44495, 'Jane', 1936, 'F', 4720), +(44496, 'Judith', 1936, 'F', 4579), +(44497, 'Catherine', 1936, 'F', 4535), +(44498, 'Annie', 1936, 'F', 4528), +(44499, 'Louise', 1936, 'F', 4349), +(44500, 'Eleanor', 1936, 'F', 4339), +(44501, 'Joanne', 1936, 'F', 4305), +(44502, 'Marjorie', 1936, 'F', 4279), +(44503, 'Elaine', 1936, 'F', 4258), +(44504, 'Ruby', 1936, 'F', 4226), +(44505, 'Patsy', 1936, 'F', 4197), +(44506, 'Sylvia', 1936, 'F', 4156), +(44507, 'Arlene', 1936, 'F', 3898), +(44508, 'Joann', 1936, 'F', 3884), +(44509, 'Wanda', 1936, 'F', 3880), +(44510, 'Irene', 1936, 'F', 3818), +(44511, 'Delores', 1936, 'F', 3756), +(44512, 'Sally', 1936, 'F', 3634), +(44513, 'Sharon', 1936, 'F', 3573), +(44514, 'Charlotte', 1936, 'F', 3555), +(44515, 'June', 1936, 'F', 3518), +(44516, 'Sarah', 1936, 'F', 3515), +(44517, 'Roberta', 1936, 'F', 3467), +(44518, 'Bonnie', 1936, 'F', 3372), +(44519, 'Jacqueline', 1936, 'F', 3361), +(44520, 'Kathleen', 1936, 'F', 3352), +(44521, 'Audrey', 1936, 'F', 3344), +(44522, 'Rita', 1936, 'F', 3333), +(44523, 'Loretta', 1936, 'F', 3322), +(44524, 'Edna', 1936, 'F', 3303), +(44525, 'Jo', 1936, 'F', 3291), +(44526, 'Carole', 1936, 'F', 3199), +(44527, 'Thelma', 1936, 'F', 3198), +(44528, 'Juanita', 1936, 'F', 3180), +(44529, 'Lorraine', 1936, 'F', 3170), +(44530, 'Josephine', 1936, 'F', 3144), +(44531, 'Wilma', 1936, 'F', 3122), +(44532, 'Lillian', 1936, 'F', 3116), +(44533, 'Florence', 1936, 'F', 3085), +(44534, 'Yvonne', 1936, 'F', 3036), +(44535, 'Pauline', 1936, 'F', 2979), +(44536, 'Darlene', 1936, 'F', 2963), +(44537, 'Gladys', 1936, 'F', 2942), +(44538, 'Emma', 1936, 'F', 2831), +(44539, 'Grace', 1936, 'F', 2789), +(44540, 'Edith', 1936, 'F', 2758), +(44541, 'Anne', 1936, 'F', 2756), +(44542, 'Theresa', 1936, 'F', 2756), +(44543, 'Ethel', 1936, 'F', 2731), +(44544, 'Clara', 1936, 'F', 2684), +(44545, 'Lucille', 1936, 'F', 2631), +(44546, 'Marion', 1936, 'F', 2582), +(44547, 'Jeanette', 1936, 'F', 2552), +(44548, 'Bernice', 1936, 'F', 2544), +(44549, 'Hazel', 1936, 'F', 2510), +(44550, 'Linda', 1936, 'F', 2439), +(44551, 'Kay', 1936, 'F', 2407), +(44552, 'Ellen', 1936, 'F', 2398), +(44553, 'Katherine', 1936, 'F', 2357), +(44554, 'Gail', 1936, 'F', 2344), +(44555, 'Margie', 1936, 'F', 2341), +(44556, 'Eileen', 1936, 'F', 2320), +(44557, 'Anita', 1936, 'F', 2303), +(44558, 'Julia', 1936, 'F', 2278), +(44559, 'Laura', 1936, 'F', 2255), +(44560, 'Esther', 1936, 'F', 2253), +(44561, 'Willie', 1936, 'F', 2228), +(44562, 'Sue', 1936, 'F', 2223), +(44563, 'Susan', 1936, 'F', 2155), +(44564, 'Rosemary', 1936, 'F', 2147), +(44565, 'Diane', 1936, 'F', 2146), +(44566, 'Kathryn', 1936, 'F', 2110), +(44567, 'Marian', 1936, 'F', 2059), +(44568, 'Vivian', 1936, 'F', 2012), +(44569, 'Eva', 1936, 'F', 2002), +(44570, 'Billie', 1936, 'F', 1991), +(44571, 'Judy', 1936, 'F', 1987), +(44572, 'Bobbie', 1936, 'F', 1986), +(44573, 'Maria', 1936, 'F', 1980), +(44574, 'Beatrice', 1936, 'F', 1956), +(44575, 'Bertha', 1936, 'F', 1915), +(44576, 'Elsie', 1936, 'F', 1874), +(44577, 'Lillie', 1936, 'F', 1867), +(44578, 'Annette', 1936, 'F', 1853), +(44579, 'Ella', 1936, 'F', 1838), +(44580, 'Maxine', 1936, 'F', 1829), +(44581, 'Sara', 1936, 'F', 1823), +(44582, 'Georgia', 1936, 'F', 1819), +(44583, 'Ida', 1936, 'F', 1798), +(44584, 'Christine', 1936, 'F', 1723), +(44585, 'Karen', 1936, 'F', 1719), +(44586, 'Constance', 1936, 'F', 1698), +(44587, 'Connie', 1936, 'F', 1681), +(44588, 'Nellie', 1936, 'F', 1666), +(44589, 'Bessie', 1936, 'F', 1644), +(44590, 'Alma', 1936, 'F', 1608), +(44591, 'Marcia', 1936, 'F', 1596), +(44592, 'Agnes', 1936, 'F', 1594), +(44593, 'Jessie', 1936, 'F', 1587), +(44594, 'Jeanne', 1936, 'F', 1533), +(44595, 'Vera', 1936, 'F', 1509), +(44596, 'Mattie', 1936, 'F', 1502), +(44597, 'Joy', 1936, 'F', 1484), +(44598, 'Charlene', 1936, 'F', 1482), +(44599, 'Rosa', 1936, 'F', 1451), +(44600, 'Lucy', 1936, 'F', 1447), +(44601, 'Minnie', 1936, 'F', 1429), +(44602, 'Myrna', 1936, 'F', 1396), +(44603, 'Glenda', 1936, 'F', 1366), +(44604, 'Suzanne', 1936, 'F', 1350), +(44605, 'Pat', 1936, 'F', 1343), +(44606, 'Geneva', 1936, 'F', 1336), +(44607, 'Harriet', 1936, 'F', 1333), +(44608, 'Maureen', 1936, 'F', 1330), +(44609, 'Gertrude', 1936, 'F', 1316), +(44610, 'Sheila', 1936, 'F', 1312), +(44611, 'Rosemarie', 1936, 'F', 1299), +(44612, 'Naomi', 1936, 'F', 1281), +(44613, 'Myrtle', 1936, 'F', 1239), +(44614, 'Leona', 1936, 'F', 1235), +(44615, 'Faye', 1936, 'F', 1216), +(44616, 'Rachel', 1936, 'F', 1207), +(44617, 'Rebecca', 1936, 'F', 1201), +(44618, 'Viola', 1936, 'F', 1184), +(44619, 'Carrie', 1936, 'F', 1182), +(44620, 'Velma', 1936, 'F', 1181), +(44621, 'Dora', 1936, 'F', 1163), +(44622, 'Violet', 1936, 'F', 1152), +(44623, 'Mae', 1936, 'F', 1136), +(44624, 'Emily', 1936, 'F', 1123), +(44625, 'Pearl', 1936, 'F', 1119), +(44626, 'Rosie', 1936, 'F', 1107), +(44627, 'Dixie', 1936, 'F', 1104), +(44628, 'Lula', 1936, 'F', 1100), +(44629, 'Claire', 1936, 'F', 1083), +(44630, 'Caroline', 1936, 'F', 1075), +(44631, 'Shelby', 1936, 'F', 1072), +(44632, 'Eunice', 1936, 'F', 1062), +(44633, 'Alberta', 1936, 'F', 1031), +(44634, 'Cora', 1936, 'F', 1007), +(44635, 'Maryann', 1936, 'F', 996), +(44636, 'Patty', 1936, 'F', 986), +(44637, 'Cynthia', 1936, 'F', 983), +(44638, 'Paula', 1936, 'F', 981), +(44639, 'Stella', 1936, 'F', 967), +(44640, 'Lola', 1936, 'F', 960), +(44641, 'Jeannette', 1936, 'F', 954), +(44642, 'Verna', 1936, 'F', 949), +(44643, 'Jackie', 1936, 'F', 948), +(44644, 'Gwendolyn', 1936, 'F', 943), +(44645, 'Hattie', 1936, 'F', 941), +(44646, 'Nina', 1936, 'F', 937), +(44647, 'Johnnie', 1936, 'F', 935), +(44648, 'Lena', 1936, 'F', 888), +(44649, 'Deloris', 1936, 'F', 862), +(44650, 'Ramona', 1936, 'F', 859), +(44651, 'Colleen', 1936, 'F', 853), +(44652, 'Carmen', 1936, 'F', 846), +(44653, 'Rosalie', 1936, 'F', 844), +(44654, 'Erma', 1936, 'F', 841), +(44655, 'Diana', 1936, 'F', 834), +(44656, 'Bettie', 1936, 'F', 825), +(44657, 'Hilda', 1936, 'F', 822), +(44658, 'Fannie', 1936, 'F', 815), +(44659, 'Jennie', 1936, 'F', 798), +(44660, 'Claudia', 1936, 'F', 792), +(44661, 'Ernestine', 1936, 'F', 792), +(44662, 'Marguerite', 1936, 'F', 792), +(44663, 'Nora', 1936, 'F', 790), +(44664, 'Iris', 1936, 'F', 788), +(44665, 'Daisy', 1936, 'F', 775), +(44666, 'Miriam', 1936, 'F', 769), +(44667, 'Genevieve', 1936, 'F', 765), +(44668, 'Priscilla', 1936, 'F', 759), +(44669, 'Janie', 1936, 'F', 755), +(44670, 'Ada', 1936, 'F', 750), +(44671, 'Flora', 1936, 'F', 748), +(44672, 'Irma', 1936, 'F', 748), +(44673, 'Inez', 1936, 'F', 745), +(44674, 'Beulah', 1936, 'F', 743), +(44675, 'Mabel', 1936, 'F', 743), +(44676, 'Susie', 1936, 'F', 731), +(44677, 'Madeline', 1936, 'F', 727), +(44678, 'Melba', 1936, 'F', 721), +(44679, 'Della', 1936, 'F', 719), +(44680, 'Bette', 1936, 'F', 717), +(44681, 'Gayle', 1936, 'F', 717), +(44682, 'Mable', 1936, 'F', 713), +(44683, 'Laverne', 1936, 'F', 711), +(44684, 'Opal', 1936, 'F', 708), +(44685, 'Regina', 1936, 'F', 703), +(44686, 'Claudette', 1936, 'F', 702), +(44687, 'Mamie', 1936, 'F', 702), +(44688, 'Muriel', 1936, 'F', 695), +(44689, 'Jacquelyn', 1936, 'F', 694), +(44690, 'Lydia', 1936, 'F', 688), +(44691, 'Marianne', 1936, 'F', 682), +(44692, 'Teresa', 1936, 'F', 675), +(44693, 'Marcella', 1936, 'F', 673), +(44694, 'Maggie', 1936, 'F', 661), +(44695, 'Antoinette', 1936, 'F', 660), +(44696, 'Mona', 1936, 'F', 656), +(44697, 'Lila', 1936, 'F', 646), +(44698, 'Blanche', 1936, 'F', 644), +(44699, 'Bettye', 1936, 'F', 639), +(44700, 'Katie', 1936, 'F', 632), +(44701, 'Arline', 1936, 'F', 630), +(44702, 'Eula', 1936, 'F', 630), +(44703, 'Eloise', 1936, 'F', 611), +(44704, 'Reba', 1936, 'F', 608), +(44705, 'Janis', 1936, 'F', 599), +(44706, 'Angela', 1936, 'F', 596), +(44707, 'Amelia', 1936, 'F', 580), +(44708, 'Myra', 1936, 'F', 573), +(44709, 'Frankie', 1936, 'F', 570), +(44710, 'Sherry', 1936, 'F', 568), +(44711, 'Nadine', 1936, 'F', 566), +(44712, 'Sadie', 1936, 'F', 555), +(44713, 'Henrietta', 1936, 'F', 553), +(44714, 'Imogene', 1936, 'F', 541), +(44715, 'Fay', 1936, 'F', 530), +(44716, 'Ina', 1936, 'F', 530), +(44717, 'Jimmie', 1936, 'F', 525), +(44718, 'Nelda', 1936, 'F', 524), +(44719, 'Sallie', 1936, 'F', 520), +(44720, 'Lorene', 1936, 'F', 517), +(44721, 'Dawn', 1936, 'F', 511), +(44722, 'Victoria', 1936, 'F', 508), +(44723, 'Cecilia', 1936, 'F', 506), +(44724, 'Lou', 1936, 'F', 506), +(44725, 'Rosetta', 1936, 'F', 502), +(44726, 'Freda', 1936, 'F', 494), +(44727, 'Essie', 1936, 'F', 493), +(44728, 'Ollie', 1936, 'F', 483), +(44729, 'Estelle', 1936, 'F', 477), +(44730, 'Nettie', 1936, 'F', 475), +(44731, 'Cecelia', 1936, 'F', 471), +(44732, 'Winifred', 1936, 'F', 462), +(44733, 'Lavonne', 1936, 'F', 460), +(44734, 'Gracie', 1936, 'F', 455), +(44735, 'Willa', 1936, 'F', 454), +(44736, 'Julie', 1936, 'F', 453), +(44737, 'Valerie', 1936, 'F', 453), +(44738, 'Etta', 1936, 'F', 449), +(44739, 'Iva', 1936, 'F', 446), +(44740, 'Jerry', 1936, 'F', 446), +(44741, 'Helene', 1936, 'F', 445), +(44742, 'Natalie', 1936, 'F', 445), +(44743, 'Ora', 1936, 'F', 443), +(44744, 'Lee', 1936, 'F', 440), +(44745, 'Rochelle', 1936, 'F', 440), +(44746, 'Dorthy', 1936, 'F', 439), +(44747, 'Sondra', 1936, 'F', 438), +(44748, 'Mavis', 1936, 'F', 432), +(44749, 'Glenna', 1936, 'F', 425), +(44750, 'Jewel', 1936, 'F', 423), +(44751, 'Celia', 1936, 'F', 419), +(44752, 'Veronica', 1936, 'F', 418), +(44753, 'Jeannine', 1936, 'F', 416), +(44754, 'Lela', 1936, 'F', 406), +(44755, 'Leola', 1936, 'F', 396), +(44756, 'Fern', 1936, 'F', 394), +(44757, 'Lenora', 1936, 'F', 393), +(44758, 'Clarice', 1936, 'F', 392), +(44759, 'Olga', 1936, 'F', 388), +(44760, 'Betsy', 1936, 'F', 384), +(44761, 'Lynn', 1936, 'F', 384), +(44762, 'Bernadette', 1936, 'F', 382), +(44763, 'Dianne', 1936, 'F', 381), +(44764, 'Olivia', 1936, 'F', 381), +(44765, 'Isabel', 1936, 'F', 376), +(44766, 'Rhoda', 1936, 'F', 376), +(44767, 'Ola', 1936, 'F', 375), +(44768, 'Earline', 1936, 'F', 374), +(44769, 'Lenore', 1936, 'F', 373), +(44770, 'Beverley', 1936, 'F', 370), +(44771, 'Lottie', 1936, 'F', 370), +(44772, 'Ruthie', 1936, 'F', 370), +(44773, 'Sybil', 1936, 'F', 370), +(44774, 'Polly', 1936, 'F', 369), +(44775, 'Dorothea', 1936, 'F', 368), +(44776, 'Marlys', 1936, 'F', 366), +(44777, 'Joanna', 1936, 'F', 361), +(44778, 'Adele', 1936, 'F', 359), +(44779, 'Cecile', 1936, 'F', 359), +(44780, 'Angelina', 1936, 'F', 358), +(44781, 'Estella', 1936, 'F', 356), +(44782, 'Faith', 1936, 'F', 355), +(44783, 'Nell', 1936, 'F', 352), +(44784, 'Adrienne', 1936, 'F', 351), +(44785, 'Bernadine', 1936, 'F', 351), +(44786, 'Cleo', 1936, 'F', 350), +(44787, 'Marva', 1936, 'F', 350), +(44788, 'Leah', 1936, 'F', 346), +(44789, 'Earnestine', 1936, 'F', 345), +(44790, 'Addie', 1936, 'F', 341), +(44791, 'Merle', 1936, 'F', 341), +(44792, 'Elinor', 1936, 'F', 340), +(44793, 'Luella', 1936, 'F', 338), +(44794, 'Earlene', 1936, 'F', 335), +(44795, 'Amy', 1936, 'F', 334), +(44796, 'Elva', 1936, 'F', 333), +(44797, 'Goldie', 1936, 'F', 330), +(44798, 'Josie', 1936, 'F', 330), +(44799, 'Alta', 1936, 'F', 329), +(44800, 'Dolly', 1936, 'F', 329), +(44801, 'Marsha', 1936, 'F', 328), +(44802, 'Jewell', 1936, 'F', 327), +(44803, 'Lupe', 1936, 'F', 327), +(44804, 'Beth', 1936, 'F', 326), +(44805, 'Effie', 1936, 'F', 324), +(44806, 'Francis', 1936, 'F', 319), +(44807, 'Gay', 1936, 'F', 319), +(44808, 'May', 1936, 'F', 318), +(44809, 'Molly', 1936, 'F', 316), +(44810, 'Virgie', 1936, 'F', 316), +(44811, 'Pearlie', 1936, 'F', 312), +(44812, 'Ila', 1936, 'F', 310), +(44813, 'Lizzie', 1936, 'F', 309), +(44814, 'Elnora', 1936, 'F', 306), +(44815, 'Dona', 1936, 'F', 303), +(44816, 'Gretchen', 1936, 'F', 303), +(44817, 'Gwen', 1936, 'F', 303), +(44818, 'Renee', 1936, 'F', 301), +(44819, 'Nola', 1936, 'F', 300), +(44820, 'Deborah', 1936, 'F', 299), +(44821, 'Harriett', 1936, 'F', 297), +(44822, 'Rena', 1936, 'F', 296), +(44823, 'Tommie', 1936, 'F', 293), +(44824, 'Yolanda', 1936, 'F', 293), +(44825, 'Lorna', 1936, 'F', 290), +(44826, 'Marilynn', 1936, 'F', 289), +(44827, 'Robbie', 1936, 'F', 288), +(44828, 'Angeline', 1936, 'F', 286), +(44829, 'Lynne', 1936, 'F', 286), +(44830, 'Carlene', 1936, 'F', 285), +(44831, 'Marylou', 1936, 'F', 285), +(44832, 'Elvira', 1936, 'F', 282), +(44833, 'Janette', 1936, 'F', 281), +(44834, 'Corrine', 1936, 'F', 277), +(44835, 'Olive', 1936, 'F', 276), +(44836, 'Dollie', 1936, 'F', 275), +(44837, 'Alicia', 1936, 'F', 274), +(44838, 'Eddie', 1936, 'F', 274), +(44839, 'Melva', 1936, 'F', 274), +(44840, 'Monica', 1936, 'F', 273), +(44841, 'Edwina', 1936, 'F', 268), +(44842, 'Lora', 1936, 'F', 268), +(44843, 'Corinne', 1936, 'F', 265), +(44844, 'Adeline', 1936, 'F', 264), +(44845, 'Ilene', 1936, 'F', 263), +(44846, 'Winnie', 1936, 'F', 262), +(44847, 'Nona', 1936, 'F', 260), +(44848, 'Guadalupe', 1936, 'F', 259), +(44849, 'Therese', 1936, 'F', 259), +(44850, 'Elma', 1936, 'F', 258), +(44851, 'Cornelia', 1936, 'F', 254), +(44852, 'Eleanore', 1936, 'F', 254), +(44853, 'Eugenia', 1936, 'F', 254), +(44854, 'Margarita', 1936, 'F', 254), +(44855, 'Nannie', 1936, 'F', 253), +(44856, 'Christina', 1936, 'F', 252), +(44857, 'Delia', 1936, 'F', 252), +(44858, 'Sonia', 1936, 'F', 251), +(44859, 'Johanna', 1936, 'F', 250), +(44860, 'Millie', 1936, 'F', 250), +(44861, 'Rosella', 1936, 'F', 247), +(44862, 'Darla', 1936, 'F', 246), +(44863, 'Alyce', 1936, 'F', 245), +(44864, 'Carla', 1936, 'F', 244), +(44865, 'Neva', 1936, 'F', 244), +(44866, 'Joe', 1936, 'F', 243), +(44867, 'Selma', 1936, 'F', 243), +(44868, 'Frieda', 1936, 'F', 241), +(44869, 'Marietta', 1936, 'F', 240), +(44870, 'Wilda', 1936, 'F', 239), +(44871, 'Marylyn', 1936, 'F', 238), +(44872, 'Reva', 1936, 'F', 238), +(44873, 'Doreen', 1936, 'F', 237), +(44874, 'Mollie', 1936, 'F', 237), +(44875, 'Greta', 1936, 'F', 235), +(44876, 'Lucile', 1936, 'F', 235), +(44877, 'Bonita', 1936, 'F', 234), +(44878, 'Carmela', 1936, 'F', 233), +(44879, 'Avis', 1936, 'F', 231), +(44880, 'Louella', 1936, 'F', 230), +(44881, 'James', 1936, 'F', 229), +(44882, 'Jan', 1936, 'F', 229), +(44883, 'Odessa', 1936, 'F', 228), +(44884, 'Freddie', 1936, 'F', 225), +(44885, 'Isabelle', 1936, 'F', 225), +(44886, 'Robert', 1936, 'F', 221), +(44887, 'Pamela', 1936, 'F', 220), +(44888, 'Noreen', 1936, 'F', 219), +(44889, 'Antonia', 1936, 'F', 218), +(44890, 'Francine', 1936, 'F', 218), +(44891, 'Margery', 1936, 'F', 217), +(44892, 'Angie', 1936, 'F', 216), +(44893, 'Annabelle', 1936, 'F', 215), +(44894, 'Corine', 1936, 'F', 215), +(44895, 'Bennie', 1936, 'F', 214), +(44896, 'Letha', 1936, 'F', 214), +(44897, 'Rae', 1936, 'F', 214), +(44898, 'Patti', 1936, 'F', 205), +(44899, 'John', 1936, 'F', 203), +(44900, 'Lynda', 1936, 'F', 203), +(44901, 'Queen', 1936, 'F', 203), +(44902, 'Lily', 1936, 'F', 202), +(44903, 'Flossie', 1936, 'F', 201), +(44904, 'Hope', 1936, 'F', 201), +(44905, 'Denise', 1936, 'F', 200), +(44906, 'Terry', 1936, 'F', 200), +(44907, 'Lilly', 1936, 'F', 198), +(44908, 'Sophie', 1936, 'F', 198), +(44909, 'Camille', 1936, 'F', 197), +(44910, 'Dale', 1936, 'F', 196), +(44911, 'Matilda', 1936, 'F', 196), +(44912, 'Rosalind', 1936, 'F', 195), +(44913, 'Shirlee', 1936, 'F', 195), +(44914, 'Sonya', 1936, 'F', 195), +(44915, 'Aurora', 1936, 'F', 193), +(44916, 'Bobby', 1936, 'F', 193), +(44917, 'Marlyn', 1936, 'F', 193), +(44918, 'Amanda', 1936, 'F', 192), +(44919, 'Aileen', 1936, 'F', 190), +(44920, 'Kaye', 1936, 'F', 189), +(44921, 'Carmella', 1936, 'F', 188), +(44922, 'Ginger', 1936, 'F', 188), +(44923, 'Zelma', 1936, 'F', 185), +(44924, 'Florine', 1936, 'F', 184), +(44925, 'Leila', 1936, 'F', 184), +(44926, 'Susanne', 1936, 'F', 184), +(44927, 'Jeanine', 1936, 'F', 182), +(44928, 'Katharine', 1936, 'F', 182), +(44929, 'Pansy', 1936, 'F', 181), +(44930, 'Consuelo', 1936, 'F', 180), +(44931, 'Jill', 1936, 'F', 180), +(44932, 'Sonja', 1936, 'F', 180), +(44933, 'Leslie', 1936, 'F', 179), +(44934, 'Allie', 1936, 'F', 178), +(44935, 'Elouise', 1936, 'F', 177), +(44936, 'Helena', 1936, 'F', 177), +(44937, 'Jannie', 1936, 'F', 177), +(44938, 'Aline', 1936, 'F', 176), +(44939, 'Bertie', 1936, 'F', 176), +(44940, 'Sharlene', 1936, 'F', 176), +(44941, 'Callie', 1936, 'F', 175), +(44942, 'Hannah', 1936, 'F', 174), +(44943, 'Lucia', 1936, 'F', 174), +(44944, 'Delois', 1936, 'F', 173), +(44945, 'Jenny', 1936, 'F', 173), +(44946, 'Ophelia', 1936, 'F', 171), +(44947, 'Saundra', 1936, 'F', 170), +(44948, 'Twila', 1936, 'F', 170), +(44949, 'Peggie', 1936, 'F', 169), +(44950, 'Stephanie', 1936, 'F', 169), +(44951, 'Dana', 1936, 'F', 168), +(44952, 'Lessie', 1936, 'F', 168), +(44953, 'Clare', 1936, 'F', 167), +(44954, 'Nita', 1936, 'F', 167), +(44955, 'Concetta', 1936, 'F', 166), +(44956, 'Retha', 1936, 'F', 166), +(44957, 'Rosalyn', 1936, 'F', 166), +(44958, 'Shelba', 1936, 'F', 166), +(44959, 'Winona', 1936, 'F', 166), +(44960, 'Ladonna', 1936, 'F', 165), +(44961, 'Meredith', 1936, 'F', 165), +(44962, 'Brenda', 1936, 'F', 164), +(44963, 'Georgie', 1936, 'F', 164), +(44964, 'Loraine', 1936, 'F', 164), +(44965, 'Delphine', 1936, 'F', 163), +(44966, 'Maude', 1936, 'F', 163), +(44967, 'Mercedes', 1936, 'F', 163), +(44968, 'Iona', 1936, 'F', 162), +(44969, 'Evangeline', 1936, 'F', 161), +(44970, 'Lorena', 1936, 'F', 161), +(44971, 'Roxie', 1936, 'F', 159), +(44972, 'Leota', 1936, 'F', 157), +(44973, 'Shirlene', 1936, 'F', 156), +(44974, 'Millicent', 1936, 'F', 155), +(44975, 'Leta', 1936, 'F', 154), +(44976, 'William', 1936, 'F', 154), +(44977, 'Ardis', 1936, 'F', 153), +(44978, 'Delma', 1936, 'F', 152), +(44979, 'Toby', 1936, 'F', 152), +(44980, 'Andrea', 1936, 'F', 151), +(44981, 'Annetta', 1936, 'F', 151), +(44982, 'Ester', 1936, 'F', 151), +(44983, 'Reta', 1936, 'F', 151), +(44984, 'Elena', 1936, 'F', 150), +(44985, 'Belva', 1936, 'F', 149), +(44986, 'Ima', 1936, 'F', 149), +(44987, 'Sharron', 1936, 'F', 149), +(44988, 'Hester', 1936, 'F', 148), +(44989, 'Roslyn', 1936, 'F', 148), +(44990, 'Caryl', 1936, 'F', 147), +(44991, 'Eliza', 1936, 'F', 146), +(44992, 'Emilie', 1936, 'F', 146), +(44993, 'Lelia', 1936, 'F', 146), +(44994, 'Toni', 1936, 'F', 146), +(44995, 'Vernell', 1936, 'F', 146), +(44996, 'Nan', 1936, 'F', 145), +(44997, 'Pearline', 1936, 'F', 145), +(44998, 'Syble', 1936, 'F', 145), +(44999, 'Donnie', 1936, 'F', 144), +(45000, 'Freida', 1936, 'F', 144), +(45001, 'Lorine', 1936, 'F', 144), +(45002, 'Sammie', 1936, 'F', 143), +(45003, 'Ardith', 1936, 'F', 142), +(45004, 'Gerry', 1936, 'F', 141), +(45005, 'Esperanza', 1936, 'F', 139), +(45006, 'Phoebe', 1936, 'F', 139), +(45007, 'Beryl', 1936, 'F', 138), +(45008, 'Carroll', 1936, 'F', 138), +(45009, 'Gearldine', 1936, 'F', 138), +(45010, 'Claudine', 1936, 'F', 137), +(45011, 'Dessie', 1936, 'F', 137), +(45012, 'Lauretta', 1936, 'F', 137), +(45013, 'Marjory', 1936, 'F', 137), +(45014, 'Roseann', 1936, 'F', 137), +(45015, 'Kathy', 1936, 'F', 136), +(45016, 'Jaunita', 1936, 'F', 135), +(45017, 'Benita', 1936, 'F', 134), +(45018, 'Charles', 1936, 'F', 134), +(45019, 'Lavon', 1936, 'F', 134), +(45020, 'Madonna', 1936, 'F', 134), +(45021, 'Alene', 1936, 'F', 133), +(45022, 'Dottie', 1936, 'F', 133), +(45023, 'Gussie', 1936, 'F', 133), +(45024, 'Sherrill', 1936, 'F', 133), +(45025, 'Harriette', 1936, 'F', 132), +(45026, 'Ione', 1936, 'F', 132), +(45027, 'Maryanne', 1936, 'F', 132), +(45028, 'Allene', 1936, 'F', 131), +(45029, 'Roma', 1936, 'F', 131), +(45030, 'Velda', 1936, 'F', 131), +(45031, 'Dortha', 1936, 'F', 130), +(45032, 'Elsa', 1936, 'F', 130), +(45033, 'Margot', 1936, 'F', 130), +(45034, 'Pattie', 1936, 'F', 130), +(45035, 'Rosalee', 1936, 'F', 130), +(45036, 'Charlie', 1936, 'F', 129), +(45037, 'Maryjane', 1936, 'F', 129), +(45038, 'Maudie', 1936, 'F', 129), +(45039, 'Adelaide', 1936, 'F', 128), +(45040, 'Lucinda', 1936, 'F', 128), +(45041, 'George', 1936, 'F', 127), +(45042, 'Verla', 1936, 'F', 127), +(45043, 'Jeanie', 1936, 'F', 125), +(45044, 'Louisa', 1936, 'F', 125), +(45045, 'Madge', 1936, 'F', 125), +(45046, 'Althea', 1936, 'F', 124), +(45047, 'Zelda', 1936, 'F', 124), +(45048, 'Doretha', 1936, 'F', 123), +(45049, 'Myrtis', 1936, 'F', 123), +(45050, 'Gale', 1936, 'F', 122), +(45051, 'Rowena', 1936, 'F', 122), +(45052, 'Jeannie', 1936, 'F', 121), +(45053, 'Elisabeth', 1936, 'F', 120), +(45054, 'Iola', 1936, 'F', 120), +(45055, 'Leora', 1936, 'F', 120), +(45056, 'Lona', 1936, 'F', 119), +(45057, 'Becky', 1936, 'F', 118), +(45058, 'Dorris', 1936, 'F', 118), +(45059, 'Edythe', 1936, 'F', 118), +(45060, 'Marylin', 1936, 'F', 117), +(45061, 'Tina', 1936, 'F', 117), +(45062, 'Treva', 1936, 'F', 117), +(45063, 'Verda', 1936, 'F', 117), +(45064, 'Bobbye', 1936, 'F', 116), +(45065, 'Elise', 1936, 'F', 116), +(45066, 'Rhea', 1936, 'F', 116), +(45067, 'Alfreda', 1936, 'F', 115), +(45068, 'Jayne', 1936, 'F', 115), +(45069, 'Margo', 1936, 'F', 115), +(45070, 'Petra', 1936, 'F', 115), +(45071, 'Madeleine', 1936, 'F', 114), +(45072, 'Ursula', 1936, 'F', 114), +(45073, 'Ava', 1936, 'F', 113), +(45074, 'Madelyn', 1936, 'F', 113), +(45075, 'Birdie', 1936, 'F', 112), +(45076, 'Darleen', 1936, 'F', 112), +(45077, 'Elisa', 1936, 'F', 112), +(45078, 'Maryellen', 1936, 'F', 112), +(45079, 'Zella', 1936, 'F', 112), +(45080, 'Berniece', 1936, 'F', 111), +(45081, 'Emogene', 1936, 'F', 111), +(45082, 'Janelle', 1936, 'F', 111), +(45083, 'Lue', 1936, 'F', 111), +(45084, 'Carolee', 1936, 'F', 110), +(45085, 'Roselyn', 1936, 'F', 110), +(45086, 'Tillie', 1936, 'F', 110), +(45087, 'Vonda', 1936, 'F', 110), +(45088, 'Celestine', 1936, 'F', 109), +(45089, 'Cherie', 1936, 'F', 109), +(45090, 'Clementine', 1936, 'F', 107), +(45091, 'Georgianna', 1936, 'F', 106), +(45092, 'Germaine', 1936, 'F', 106), +(45093, 'Isabell', 1936, 'F', 106), +(45094, 'Maurine', 1936, 'F', 106), +(45095, 'Vernice', 1936, 'F', 106), +(45096, 'Alva', 1936, 'F', 105), +(45097, 'Dorene', 1936, 'F', 105), +(45098, 'Kitty', 1936, 'F', 105), +(45099, 'Nedra', 1936, 'F', 105), +(45100, 'Oma', 1936, 'F', 105), +(45101, 'Vada', 1936, 'F', 105), +(45102, 'Georgene', 1936, 'F', 104), +(45103, 'Manuela', 1936, 'F', 104), +(45104, 'Minerva', 1936, 'F', 104), +(45105, 'Berta', 1936, 'F', 102), +(45106, 'Cleta', 1936, 'F', 102), +(45107, 'Lynette', 1936, 'F', 102), +(45108, 'Penelope', 1936, 'F', 102), +(45109, 'Albertha', 1936, 'F', 101), +(45110, 'Aurelia', 1936, 'F', 101), +(45111, 'Leatrice', 1936, 'F', 101), +(45112, 'Nila', 1936, 'F', 101), +(45113, 'Penny', 1936, 'F', 100), +(45114, 'Robert', 1936, 'M', 58486), +(45115, 'James', 1936, 'M', 54672), +(45116, 'John', 1936, 'M', 47661), +(45117, 'William', 1936, 'M', 39380), +(45118, 'Richard', 1936, 'M', 33481), +(45119, 'Charles', 1936, 'M', 29082), +(45120, 'Donald', 1936, 'M', 28630), +(45121, 'Thomas', 1936, 'M', 18340), +(45122, 'George', 1936, 'M', 18190), +(45123, 'David', 1936, 'M', 17476), +(45124, 'Joseph', 1936, 'M', 17447), +(45125, 'Ronald', 1936, 'M', 16917), +(45126, 'Edward', 1936, 'M', 14191), +(45127, 'Kenneth', 1936, 'M', 12490), +(45128, 'Paul', 1936, 'M', 12304), +(45129, 'Frank', 1936, 'M', 10190), +(45130, 'Raymond', 1936, 'M', 9451), +(45131, 'Jerry', 1936, 'M', 9270), +(45132, 'Gerald', 1936, 'M', 9016), +(45133, 'Jack', 1936, 'M', 8858), +(45134, 'Harold', 1936, 'M', 8628), +(45135, 'Billy', 1936, 'M', 8586), +(45136, 'Joe', 1936, 'M', 8023), +(45137, 'Bobby', 1936, 'M', 7733), +(45138, 'Larry', 1936, 'M', 7613), +(45139, 'Walter', 1936, 'M', 7538), +(45140, 'Carl', 1936, 'M', 6588), +(45141, 'Henry', 1936, 'M', 6448), +(45142, 'Eugene', 1936, 'M', 6374), +(45143, 'Arthur', 1936, 'M', 6262), +(45144, 'Ralph', 1936, 'M', 6028), +(45145, 'Willie', 1936, 'M', 6012), +(45146, 'Michael', 1936, 'M', 5802), +(45147, 'Albert', 1936, 'M', 5758), +(45148, 'Roger', 1936, 'M', 5705), +(45149, 'Fred', 1936, 'M', 5602), +(45150, 'Lawrence', 1936, 'M', 5340), +(45151, 'Gary', 1936, 'M', 5190), +(45152, 'Harry', 1936, 'M', 4929), +(45153, 'Howard', 1936, 'M', 4875), +(45154, 'Roy', 1936, 'M', 4817), +(45155, 'Daniel', 1936, 'M', 4815), +(45156, 'Norman', 1936, 'M', 4646), +(45157, 'Louis', 1936, 'M', 4420), +(45158, 'Wayne', 1936, 'M', 4406), +(45159, 'Jimmy', 1936, 'M', 4207), +(45160, 'Earl', 1936, 'M', 4107), +(45161, 'Anthony', 1936, 'M', 3978), +(45162, 'Marvin', 1936, 'M', 3942), +(45163, 'Francis', 1936, 'M', 3873), +(45164, 'Don', 1936, 'M', 3830), +(45165, 'Clarence', 1936, 'M', 3769), +(45166, 'Melvin', 1936, 'M', 3725), +(45167, 'Leonard', 1936, 'M', 3715), +(45168, 'Peter', 1936, 'M', 3715), +(45169, 'Ernest', 1936, 'M', 3713), +(45170, 'Leroy', 1936, 'M', 3647), +(45171, 'Stanley', 1936, 'M', 3492), +(45172, 'Dale', 1936, 'M', 3392), +(45173, 'Alfred', 1936, 'M', 3254), +(45174, 'Bill', 1936, 'M', 3166), +(45175, 'Herbert', 1936, 'M', 3113), +(45176, 'Philip', 1936, 'M', 3033), +(45177, 'Ray', 1936, 'M', 2940), +(45178, 'Franklin', 1936, 'M', 2938), +(45179, 'Gene', 1936, 'M', 2906), +(45180, 'Samuel', 1936, 'M', 2889), +(45181, 'Bernard', 1936, 'M', 2855), +(45182, 'Russell', 1936, 'M', 2833), +(45183, 'Frederick', 1936, 'M', 2816), +(45184, 'Jimmie', 1936, 'M', 2735), +(45185, 'Johnny', 1936, 'M', 2731), +(45186, 'Bruce', 1936, 'M', 2629), +(45187, 'Dennis', 1936, 'M', 2627), +(45188, 'Gordon', 1936, 'M', 2567), +(45189, 'Lee', 1936, 'M', 2419), +(45190, 'Bob', 1936, 'M', 2408), +(45191, 'Douglas', 1936, 'M', 2375), +(45192, 'Eddie', 1936, 'M', 2348), +(45193, 'Glenn', 1936, 'M', 2327), +(45194, 'Allen', 1936, 'M', 2312), +(45195, 'Leon', 1936, 'M', 2282), +(45196, 'Andrew', 1936, 'M', 2278), +(45197, 'Edwin', 1936, 'M', 2270), +(45198, 'Jim', 1936, 'M', 2266), +(45199, 'Floyd', 1936, 'M', 2230), +(45200, 'Theodore', 1936, 'M', 2216), +(45201, 'Lloyd', 1936, 'M', 2160), +(45202, 'Clyde', 1936, 'M', 2153), +(45203, 'Clifford', 1936, 'M', 2134), +(45204, 'Tommy', 1936, 'M', 2109), +(45205, 'Martin', 1936, 'M', 2105), +(45206, 'Vernon', 1936, 'M', 2027), +(45207, 'Leo', 1936, 'M', 2017), +(45208, 'Warren', 1936, 'M', 1976), +(45209, 'Harvey', 1936, 'M', 1971), +(45210, 'Alvin', 1936, 'M', 1967), +(45211, 'Jerome', 1936, 'M', 1966), +(45212, 'Stephen', 1936, 'M', 1861), +(45213, 'Lewis', 1936, 'M', 1856), +(45214, 'Patrick', 1936, 'M', 1856), +(45215, 'Phillip', 1936, 'M', 1844), +(45216, 'Charlie', 1936, 'M', 1840), +(45217, 'Jesse', 1936, 'M', 1827), +(45218, 'Jackie', 1936, 'M', 1813), +(45219, 'Herman', 1936, 'M', 1812), +(45220, 'Curtis', 1936, 'M', 1797), +(45221, 'Alan', 1936, 'M', 1756), +(45222, 'Vincent', 1936, 'M', 1736), +(45223, 'Duane', 1936, 'M', 1725), +(45224, 'Arnold', 1936, 'M', 1711), +(45225, 'Tom', 1936, 'M', 1695), +(45226, 'Gilbert', 1936, 'M', 1662), +(45227, 'Cecil', 1936, 'M', 1575), +(45228, 'Lester', 1936, 'M', 1546), +(45229, 'Victor', 1936, 'M', 1517), +(45230, 'Johnnie', 1936, 'M', 1491), +(45231, 'Roland', 1936, 'M', 1490), +(45232, 'Milton', 1936, 'M', 1443), +(45233, 'Glen', 1936, 'M', 1441), +(45234, 'Elmer', 1936, 'M', 1410), +(45235, 'Keith', 1936, 'M', 1403), +(45236, 'Benjamin', 1936, 'M', 1353), +(45237, 'Calvin', 1936, 'M', 1352), +(45238, 'Dean', 1936, 'M', 1331), +(45239, 'Terry', 1936, 'M', 1294), +(45240, 'Chester', 1936, 'M', 1278), +(45241, 'Leslie', 1936, 'M', 1250), +(45242, 'Max', 1936, 'M', 1249), +(45243, 'Wallace', 1936, 'M', 1249), +(45244, 'Sam', 1936, 'M', 1235), +(45245, 'Claude', 1936, 'M', 1223), +(45246, 'Darrell', 1936, 'M', 1206), +(45247, 'Freddie', 1936, 'M', 1195), +(45248, 'Manuel', 1936, 'M', 1172), +(45249, 'Willard', 1936, 'M', 1155), +(45250, 'Maurice', 1936, 'M', 1154), +(45251, 'Allan', 1936, 'M', 1128), +(45252, 'Jose', 1936, 'M', 1120), +(45253, 'Jay', 1936, 'M', 1103), +(45254, 'Dick', 1936, 'M', 1088), +(45255, 'Hugh', 1936, 'M', 1074), +(45256, 'Edgar', 1936, 'M', 1066), +(45257, 'Ted', 1936, 'M', 1065), +(45258, 'Wesley', 1936, 'M', 1061), +(45259, 'Joel', 1936, 'M', 1059), +(45260, 'Ronnie', 1936, 'M', 1057), +(45261, 'Marion', 1936, 'M', 1049), +(45262, 'Virgil', 1936, 'M', 1034), +(45263, 'Lowell', 1936, 'M', 1022), +(45264, 'Jessie', 1936, 'M', 1012), +(45265, 'Oscar', 1936, 'M', 1010), +(45266, 'Rodney', 1936, 'M', 1009), +(45267, 'Everett', 1936, 'M', 973), +(45268, 'Dan', 1936, 'M', 964), +(45269, 'Sidney', 1936, 'M', 952), +(45270, 'Nicholas', 1936, 'M', 927), +(45271, 'Neil', 1936, 'M', 914), +(45272, 'Lyle', 1936, 'M', 910), +(45273, 'Tony', 1936, 'M', 893), +(45274, 'Hubert', 1936, 'M', 890), +(45275, 'Bennie', 1936, 'M', 887), +(45276, 'Delbert', 1936, 'M', 882), +(45277, 'Morris', 1936, 'M', 847), +(45278, 'Karl', 1936, 'M', 831), +(45279, 'Homer', 1936, 'M', 830), +(45280, 'Billie', 1936, 'M', 823), +(45281, 'Ben', 1936, 'M', 816), +(45282, 'Earnest', 1936, 'M', 815), +(45283, 'Jon', 1936, 'M', 815), +(45284, 'Luther', 1936, 'M', 803), +(45285, 'Carroll', 1936, 'M', 790), +(45286, 'Wilbur', 1936, 'M', 780), +(45287, 'Mike', 1936, 'M', 774), +(45288, 'Willis', 1936, 'M', 767), +(45289, 'Danny', 1936, 'M', 757), +(45290, 'Lonnie', 1936, 'M', 749), +(45291, 'Steve', 1936, 'M', 742), +(45292, 'Nathaniel', 1936, 'M', 737), +(45293, 'Roosevelt', 1936, 'M', 736), +(45294, 'Benny', 1936, 'M', 733), +(45295, 'Guy', 1936, 'M', 712), +(45296, 'Mark', 1936, 'M', 712), +(45297, 'Marshall', 1936, 'M', 711), +(45298, 'Barry', 1936, 'M', 707), +(45299, 'Clayton', 1936, 'M', 705), +(45300, 'Otis', 1936, 'M', 701), +(45301, 'Horace', 1936, 'M', 691), +(45302, 'Alton', 1936, 'M', 674), +(45303, 'Clinton', 1936, 'M', 653), +(45304, 'Archie', 1936, 'M', 648), +(45305, 'Rudolph', 1936, 'M', 647), +(45306, 'Junior', 1936, 'M', 638), +(45307, 'Clifton', 1936, 'M', 637), +(45308, 'Nelson', 1936, 'M', 631), +(45309, 'Wendell', 1936, 'M', 628), +(45310, 'Fredrick', 1936, 'M', 627), +(45311, 'Bobbie', 1936, 'M', 626), +(45312, 'Alexander', 1936, 'M', 613), +(45313, 'Lynn', 1936, 'M', 613), +(45314, 'Rex', 1936, 'M', 612), +(45315, 'Matthew', 1936, 'M', 608), +(45316, 'Doyle', 1936, 'M', 596), +(45317, 'Leland', 1936, 'M', 595), +(45318, 'Oliver', 1936, 'M', 588), +(45319, 'Wilbert', 1936, 'M', 586), +(45320, 'Juan', 1936, 'M', 580), +(45321, 'Salvatore', 1936, 'M', 577), +(45322, 'Merle', 1936, 'M', 568), +(45323, 'Alex', 1936, 'M', 563), +(45324, 'Pete', 1936, 'M', 559), +(45325, 'Edmund', 1936, 'M', 554), +(45326, 'Julius', 1936, 'M', 547), +(45327, 'Loren', 1936, 'M', 546), +(45328, 'Stuart', 1936, 'M', 542), +(45329, 'Eldon', 1936, 'M', 541), +(45330, 'Carlos', 1936, 'M', 534), +(45331, 'Troy', 1936, 'M', 534), +(45332, 'Malcolm', 1936, 'M', 531), +(45333, 'Dave', 1936, 'M', 525), +(45334, 'Buddy', 1936, 'M', 523), +(45335, 'Orville', 1936, 'M', 516), +(45336, 'Ivan', 1936, 'M', 512), +(45337, 'Donnie', 1936, 'M', 504), +(45338, 'Tommie', 1936, 'M', 504), +(45339, 'Perry', 1936, 'M', 503), +(45340, 'Jacob', 1936, 'M', 501), +(45341, 'Myron', 1936, 'M', 501), +(45342, 'Dewey', 1936, 'M', 500), +(45343, 'Ira', 1936, 'M', 500), +(45344, 'Elbert', 1936, 'M', 491), +(45345, 'Antonio', 1936, 'M', 490), +(45346, 'Sherman', 1936, 'M', 485), +(45347, 'Carlton', 1936, 'M', 483), +(45348, 'Ervin', 1936, 'M', 483), +(45349, 'Ramon', 1936, 'M', 482), +(45350, 'Ruben', 1936, 'M', 482), +(45351, 'Sylvester', 1936, 'M', 481), +(45352, 'Ross', 1936, 'M', 475), +(45353, 'Jesus', 1936, 'M', 471), +(45354, 'Gerard', 1936, 'M', 468), +(45355, 'Grady', 1936, 'M', 467), +(45356, 'Nathan', 1936, 'M', 463), +(45357, 'Sammy', 1936, 'M', 462), +(45358, 'Byron', 1936, 'M', 460), +(45359, 'Mack', 1936, 'M', 453), +(45360, 'Sheldon', 1936, 'M', 453), +(45361, 'Rufus', 1936, 'M', 451), +(45362, 'Julian', 1936, 'M', 448), +(45363, 'Aaron', 1936, 'M', 443), +(45364, 'Irvin', 1936, 'M', 443), +(45365, 'Steven', 1936, 'M', 442), +(45366, 'Timothy', 1936, 'M', 439), +(45367, 'Clark', 1936, 'M', 437), +(45368, 'Kent', 1936, 'M', 436), +(45369, 'Conrad', 1936, 'M', 435), +(45370, 'Burton', 1936, 'M', 434), +(45371, 'Laurence', 1936, 'M', 432), +(45372, 'Teddy', 1936, 'M', 431), +(45373, 'Ellis', 1936, 'M', 428), +(45374, 'Isaac', 1936, 'M', 424), +(45375, 'Pat', 1936, 'M', 421), +(45376, 'Nick', 1936, 'M', 420), +(45377, 'Wilfred', 1936, 'M', 420), +(45378, 'Neal', 1936, 'M', 419), +(45379, 'Dwight', 1936, 'M', 418), +(45380, 'Darrel', 1936, 'M', 408), +(45381, 'Angelo', 1936, 'M', 406), +(45382, 'Harlan', 1936, 'M', 400), +(45383, 'Felix', 1936, 'M', 395), +(45384, 'Gregory', 1936, 'M', 394), +(45385, 'Jerald', 1936, 'M', 394), +(45386, 'Forrest', 1936, 'M', 393), +(45387, 'Wilson', 1936, 'M', 392), +(45388, 'Rudy', 1936, 'M', 389), +(45389, 'Owen', 1936, 'M', 385), +(45390, 'Shirley', 1936, 'M', 381), +(45391, 'Bert', 1936, 'M', 376), +(45392, 'Reginald', 1936, 'M', 375), +(45393, 'Irwin', 1936, 'M', 369), +(45394, 'Norbert', 1936, 'M', 368), +(45395, 'Aubrey', 1936, 'M', 360), +(45396, 'Dallas', 1936, 'M', 360), +(45397, 'Percy', 1936, 'M', 360), +(45398, 'Loyd', 1936, 'M', 356), +(45399, 'Boyd', 1936, 'M', 355), +(45400, 'Harley', 1936, 'M', 354), +(45401, 'Huey', 1936, 'M', 353), +(45402, 'Brian', 1936, 'M', 344), +(45403, 'Louie', 1936, 'M', 344), +(45404, 'Frankie', 1936, 'M', 343), +(45405, 'Garland', 1936, 'M', 342), +(45406, 'Irving', 1936, 'M', 341), +(45407, 'Marlin', 1936, 'M', 337), +(45408, 'Travis', 1936, 'M', 335), +(45409, 'Preston', 1936, 'M', 333), +(45410, 'Noel', 1936, 'M', 325), +(45411, 'Sammie', 1936, 'M', 318), +(45412, 'Royce', 1936, 'M', 317), +(45413, 'Pedro', 1936, 'M', 315), +(45414, 'Emmett', 1936, 'M', 314), +(45415, 'Edmond', 1936, 'M', 312), +(45416, 'Francisco', 1936, 'M', 311), +(45417, 'Delmar', 1936, 'M', 305), +(45418, 'Darwin', 1936, 'M', 304), +(45419, 'Johnie', 1936, 'M', 303), +(45420, 'Kermit', 1936, 'M', 302), +(45421, 'Wade', 1936, 'M', 302), +(45422, 'Elwood', 1936, 'M', 298), +(45423, 'Eric', 1936, 'M', 296), +(45424, 'Mario', 1936, 'M', 294), +(45425, 'Mary', 1936, 'M', 293), +(45426, 'Amos', 1936, 'M', 292), +(45427, 'Lionel', 1936, 'M', 291), +(45428, 'Cornelius', 1936, 'M', 290), +(45429, 'August', 1936, 'M', 288), +(45430, 'Alfonso', 1936, 'M', 287), +(45431, 'Maynard', 1936, 'M', 286), +(45432, 'Phil', 1936, 'M', 285), +(45433, 'Woodrow', 1936, 'M', 283), +(45434, 'Grover', 1936, 'M', 282), +(45435, 'Raul', 1936, 'M', 282), +(45436, 'Christopher', 1936, 'M', 277), +(45437, 'Randall', 1936, 'M', 277), +(45438, 'Laverne', 1936, 'M', 276), +(45439, 'Merlin', 1936, 'M', 275), +(45440, 'Morton', 1936, 'M', 275), +(45441, 'Otto', 1936, 'M', 275), +(45442, 'Randolph', 1936, 'M', 275), +(45443, 'Stewart', 1936, 'M', 274), +(45444, 'Emil', 1936, 'M', 273), +(45445, 'Jan', 1936, 'M', 272), +(45446, 'Thurman', 1936, 'M', 272), +(45447, 'Mitchell', 1936, 'M', 271), +(45448, 'Garry', 1936, 'M', 269), +(45449, 'Ned', 1936, 'M', 266), +(45450, 'Dominic', 1936, 'M', 265), +(45451, 'Carol', 1936, 'M', 263), +(45452, 'Roberto', 1936, 'M', 263), +(45453, 'Ed', 1936, 'M', 257), +(45454, 'Wiley', 1936, 'M', 257), +(45455, 'Elton', 1936, 'M', 251), +(45456, 'Grant', 1936, 'M', 251), +(45457, 'Austin', 1936, 'M', 250), +(45458, 'Gale', 1936, 'M', 250), +(45459, 'Erwin', 1936, 'M', 248), +(45460, 'Norris', 1936, 'M', 248), +(45461, 'Roscoe', 1936, 'M', 241), +(45462, 'Charley', 1936, 'M', 238), +(45463, 'Millard', 1936, 'M', 238), +(45464, 'Dominick', 1936, 'M', 237), +(45465, 'Jasper', 1936, 'M', 237), +(45466, 'Will', 1936, 'M', 235), +(45467, 'Merrill', 1936, 'M', 233), +(45468, 'Rodger', 1936, 'M', 231), +(45469, 'Moses', 1936, 'M', 230), +(45470, 'Elvin', 1936, 'M', 229), +(45471, 'Luis', 1936, 'M', 229), +(45472, 'Clair', 1936, 'M', 227), +(45473, 'Sanford', 1936, 'M', 227), +(45474, 'Andy', 1936, 'M', 224), +(45475, 'Monroe', 1936, 'M', 223), +(45476, 'Murray', 1936, 'M', 223), +(45477, 'Cleveland', 1936, 'M', 222), +(45478, 'Weldon', 1936, 'M', 221), +(45479, 'Elijah', 1936, 'M', 220), +(45480, 'Gail', 1936, 'M', 220), +(45481, 'Odell', 1936, 'M', 218), +(45482, 'Scott', 1936, 'M', 218), +(45483, 'Adrian', 1936, 'M', 217), +(45484, 'Adam', 1936, 'M', 216), +(45485, 'Bradley', 1936, 'M', 216), +(45486, 'Terrence', 1936, 'M', 215), +(45487, 'Abraham', 1936, 'M', 214), +(45488, 'Dwayne', 1936, 'M', 213), +(45489, 'Armand', 1936, 'M', 210), +(45490, 'Ken', 1936, 'M', 210), +(45491, 'Reuben', 1936, 'M', 209), +(45492, 'Carmen', 1936, 'M', 208), +(45493, 'Daryl', 1936, 'M', 207), +(45494, 'Marcus', 1936, 'M', 207), +(45495, 'Barney', 1936, 'M', 206), +(45496, 'Alonzo', 1936, 'M', 205), +(45497, 'Craig', 1936, 'M', 205), +(45498, 'Emanuel', 1936, 'M', 203), +(45499, 'Gabriel', 1936, 'M', 202), +(45500, 'Ollie', 1936, 'M', 201), +(45501, 'Al', 1936, 'M', 200), +(45502, 'Lamar', 1936, 'M', 198), +(45503, 'Emory', 1936, 'M', 197), +(45504, 'Mervin', 1936, 'M', 196), +(45505, 'Jake', 1936, 'M', 195), +(45506, 'Sterling', 1936, 'M', 194), +(45507, 'Spencer', 1936, 'M', 193), +(45508, 'Adolph', 1936, 'M', 192), +(45509, 'Lorenzo', 1936, 'M', 192), +(45510, 'Wilburn', 1936, 'M', 192), +(45511, 'Arlen', 1936, 'M', 190), +(45512, 'Chris', 1936, 'M', 190), +(45513, 'Salvador', 1936, 'M', 190), +(45514, 'Basil', 1936, 'M', 189), +(45515, 'Freddy', 1936, 'M', 188), +(45516, 'Rolland', 1936, 'M', 184), +(45517, 'Wilmer', 1936, 'M', 184), +(45518, 'Darryl', 1936, 'M', 182), +(45519, 'Delmer', 1936, 'M', 181), +(45520, 'Harrison', 1936, 'M', 181), +(45521, 'Gayle', 1936, 'M', 180), +(45522, 'Gus', 1936, 'M', 180), +(45523, 'Monte', 1936, 'M', 180), +(45524, 'Roderick', 1936, 'M', 180), +(45525, 'Coy', 1936, 'M', 179), +(45526, 'Jean', 1936, 'M', 179), +(45527, 'Miles', 1936, 'M', 179), +(45528, 'Cleo', 1936, 'M', 178), +(45529, 'Alva', 1936, 'M', 177), +(45530, 'Simon', 1936, 'M', 177), +(45531, 'Truman', 1936, 'M', 176), +(45532, 'Alfredo', 1936, 'M', 175), +(45533, 'Frederic', 1936, 'M', 175), +(45534, 'Hollis', 1936, 'M', 175), +(45535, 'Winston', 1936, 'M', 175), +(45536, 'Russel', 1936, 'M', 174), +(45537, 'Landon', 1936, 'M', 173), +(45538, 'Lavern', 1936, 'M', 173), +(45539, 'Mickey', 1936, 'M', 173), +(45540, 'Van', 1936, 'M', 172), +(45541, 'Jonathan', 1936, 'M', 171), +(45542, 'Carrol', 1936, 'M', 170), +(45543, 'Levi', 1936, 'M', 168), +(45544, 'Armando', 1936, 'M', 167), +(45545, 'Jackson', 1936, 'M', 167), +(45546, 'Rene', 1936, 'M', 167), +(45547, 'Denis', 1936, 'M', 166), +(45548, 'Hector', 1936, 'M', 166), +(45549, 'Nolan', 1936, 'M', 166), +(45550, 'Vance', 1936, 'M', 166), +(45551, 'Guadalupe', 1936, 'M', 165), +(45552, 'Olin', 1936, 'M', 165), +(45553, 'Dewayne', 1936, 'M', 164), +(45554, 'Dudley', 1936, 'M', 164), +(45555, 'Seymour', 1936, 'M', 162), +(45556, 'Buford', 1936, 'M', 161), +(45557, 'Clement', 1936, 'M', 161), +(45558, 'Eli', 1936, 'M', 160), +(45559, 'Rocco', 1936, 'M', 159), +(45560, 'Jess', 1936, 'M', 158), +(45561, 'Wilford', 1936, 'M', 158), +(45562, 'Ricardo', 1936, 'M', 157), +(45563, 'Bud', 1936, 'M', 156), +(45564, 'Linwood', 1936, 'M', 156), +(45565, 'Riley', 1936, 'M', 156), +(45566, 'Kevin', 1936, 'M', 154), +(45567, 'Miguel', 1936, 'M', 154), +(45568, 'Elliott', 1936, 'M', 153), +(45569, 'Vern', 1936, 'M', 153), +(45570, 'Solomon', 1936, 'M', 152), +(45571, 'Shelby', 1936, 'M', 151), +(45572, 'Delano', 1936, 'M', 150), +(45573, 'Earle', 1936, 'M', 150), +(45574, 'Fredric', 1936, 'M', 150), +(45575, 'Booker', 1936, 'M', 149), +(45576, 'Dalton', 1936, 'M', 149), +(45577, 'Hal', 1936, 'M', 148), +(45578, 'Noah', 1936, 'M', 147), +(45579, 'Blaine', 1936, 'M', 146), +(45580, 'Hershel', 1936, 'M', 146), +(45581, 'Silas', 1936, 'M', 145), +(45582, 'Elmo', 1936, 'M', 144), +(45583, 'Tomas', 1936, 'M', 144), +(45584, 'Emery', 1936, 'M', 143), +(45585, 'Harris', 1936, 'M', 142), +(45586, 'Vito', 1936, 'M', 142), +(45587, 'Wilton', 1936, 'M', 142), +(45588, 'Ernie', 1936, 'M', 141), +(45589, 'Ward', 1936, 'M', 140), +(45590, 'Denny', 1936, 'M', 139), +(45591, 'Ernesto', 1936, 'M', 139), +(45592, 'Galen', 1936, 'M', 139), +(45593, 'Carmine', 1936, 'M', 138), +(45594, 'Denver', 1936, 'M', 138), +(45595, 'Kelly', 1936, 'M', 138), +(45596, 'Kay', 1936, 'M', 137), +(45597, 'Lenard', 1936, 'M', 137), +(45598, 'Terrance', 1936, 'M', 137), +(45599, 'Warner', 1936, 'M', 136), +(45600, 'Winfred', 1936, 'M', 135), +(45601, 'Freeman', 1936, 'M', 134), +(45602, 'Gerry', 1936, 'M', 134), +(45603, 'Milford', 1936, 'M', 134), +(45604, 'Cyril', 1936, 'M', 133), +(45605, 'Kenny', 1936, 'M', 133), +(45606, 'Lanny', 1936, 'M', 133), +(45607, 'Tim', 1936, 'M', 133), +(45608, 'Everette', 1936, 'M', 131), +(45609, 'Rodolfo', 1936, 'M', 131), +(45610, 'Connie', 1936, 'M', 130), +(45611, 'Elroy', 1936, 'M', 130), +(45612, 'Arden', 1936, 'M', 129), +(45613, 'Claud', 1936, 'M', 128), +(45614, 'Herschel', 1936, 'M', 128), +(45615, 'Jeff', 1936, 'M', 128), +(45616, 'Micheal', 1936, 'M', 128), +(45617, 'Royal', 1936, 'M', 128), +(45618, 'Bernie', 1936, 'M', 127), +(45619, 'Burl', 1936, 'M', 127), +(45620, 'Cletus', 1936, 'M', 127), +(45621, 'Kennith', 1936, 'M', 126), +(45622, 'Clay', 1936, 'M', 124), +(45623, 'Davis', 1936, 'M', 122), +(45624, 'Enrique', 1936, 'M', 121), +(45625, 'Fernando', 1936, 'M', 121), +(45626, 'Alden', 1936, 'M', 120), +(45627, 'Melvyn', 1936, 'M', 120), +(45628, 'Milo', 1936, 'M', 120), +(45629, 'Saul', 1936, 'M', 120), +(45630, 'Ulysses', 1936, 'M', 120), +(45631, 'Vaughn', 1936, 'M', 120), +(45632, 'Alphonse', 1936, 'M', 119), +(45633, 'Forest', 1936, 'M', 119), +(45634, 'Jerold', 1936, 'M', 119), +(45635, 'Sonny', 1936, 'M', 119), +(45636, 'Dana', 1936, 'M', 118), +(45637, 'Gaylord', 1936, 'M', 118), +(45638, 'Gilberto', 1936, 'M', 118), +(45639, 'Morgan', 1936, 'M', 118), +(45640, 'Rafael', 1936, 'M', 117), +(45641, 'Roman', 1936, 'M', 117), +(45642, 'Betty', 1936, 'M', 116), +(45643, 'Elias', 1936, 'M', 116), +(45644, 'Ferdinand', 1936, 'M', 116), +(45645, 'Luke', 1936, 'M', 116), +(45646, 'Patsy', 1936, 'M', 116), +(45647, 'Alberto', 1936, 'M', 115), +(45648, 'Hoyt', 1936, 'M', 115), +(45649, 'Pablo', 1936, 'M', 115), +(45650, 'Arturo', 1936, 'M', 114), +(45651, 'Bryan', 1936, 'M', 114), +(45652, 'Lyman', 1936, 'M', 114), +(45653, 'Normand', 1936, 'M', 114), +(45654, 'Ramiro', 1936, 'M', 114), +(45655, 'Dickie', 1936, 'M', 112), +(45656, 'Jerrold', 1936, 'M', 112), +(45657, 'Maxie', 1936, 'M', 112), +(45658, 'Hiram', 1936, 'M', 111), +(45659, 'Odis', 1936, 'M', 111), +(45660, 'Barbara', 1936, 'M', 110), +(45661, 'Pasquale', 1936, 'M', 110), +(45662, 'Emerson', 1936, 'M', 108), +(45663, 'Jeremiah', 1936, 'M', 108), +(45664, 'Terence', 1936, 'M', 108), +(45665, 'Alphonso', 1936, 'M', 107), +(45666, 'Anton', 1936, 'M', 107), +(45667, 'Dwain', 1936, 'M', 107), +(45668, 'Raymon', 1936, 'M', 107), +(45669, 'Anderson', 1936, 'M', 106), +(45670, 'Bennett', 1936, 'M', 106), +(45671, 'Ellsworth', 1936, 'M', 106), +(45672, 'Gearld', 1936, 'M', 106), +(45673, 'Kurt', 1936, 'M', 106), +(45674, 'Thaddeus', 1936, 'M', 106), +(45675, 'Buster', 1936, 'M', 105), +(45676, 'Isaiah', 1936, 'M', 105), +(45677, 'Olen', 1936, 'M', 104), +(45678, 'Rogers', 1936, 'M', 104), +(45679, 'Augustus', 1936, 'M', 103), +(45680, 'Felipe', 1936, 'M', 103), +(45681, 'Major', 1936, 'M', 103), +(45682, 'Merlyn', 1936, 'M', 103), +(45683, 'Orval', 1936, 'M', 103), +(45684, 'Sherwood', 1936, 'M', 103), +(45685, 'Bradford', 1936, 'M', 102), +(45686, 'Dorothy', 1936, 'M', 101), +(45687, 'Wilber', 1936, 'M', 101), +(45688, 'Arlie', 1936, 'M', 100), +(45689, 'Dee', 1936, 'M', 100), +(45690, 'Houston', 1936, 'M', 100), +(45691, 'Isiah', 1936, 'M', 100), +(45692, 'Joshua', 1936, 'M', 100), +(45693, 'Patricia', 1936, 'M', 100), +(45694, 'Mary', 1937, 'F', 55640), +(45695, 'Barbara', 1937, 'F', 34907), +(45696, 'Patricia', 1937, 'F', 26838), +(45697, 'Shirley', 1937, 'F', 26812), +(45698, 'Betty', 1937, 'F', 25326), +(45699, 'Carol', 1937, 'F', 17333), +(45700, 'Nancy', 1937, 'F', 17067), +(45701, 'Dorothy', 1937, 'F', 16570), +(45702, 'Joan', 1937, 'F', 15297); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(45703, 'Margaret', 1937, 'F', 15145), +(45704, 'Joyce', 1937, 'F', 11808), +(45705, 'Helen', 1937, 'F', 11450), +(45706, 'Marilyn', 1937, 'F', 9736), +(45707, 'Beverly', 1937, 'F', 9635), +(45708, 'Ruth', 1937, 'F', 9605), +(45709, 'Virginia', 1937, 'F', 9514), +(45710, 'Elizabeth', 1937, 'F', 9385), +(45711, 'Janet', 1937, 'F', 9361), +(45712, 'Frances', 1937, 'F', 9056), +(45713, 'Carolyn', 1937, 'F', 8941), +(45714, 'Donna', 1937, 'F', 8884), +(45715, 'Doris', 1937, 'F', 8881), +(45716, 'Jean', 1937, 'F', 8393), +(45717, 'Martha', 1937, 'F', 7956), +(45718, 'Janice', 1937, 'F', 7766), +(45719, 'Sandra', 1937, 'F', 7516), +(45720, 'Phyllis', 1937, 'F', 7244), +(45721, 'Alice', 1937, 'F', 7124), +(45722, 'Lois', 1937, 'F', 6931), +(45723, 'Ann', 1937, 'F', 6709), +(45724, 'Peggy', 1937, 'F', 6376), +(45725, 'Gloria', 1937, 'F', 6328), +(45726, 'Norma', 1937, 'F', 6232), +(45727, 'Judith', 1937, 'F', 6146), +(45728, 'Marie', 1937, 'F', 6074), +(45729, 'Evelyn', 1937, 'F', 5762), +(45730, 'Dolores', 1937, 'F', 5565), +(45731, 'Rose', 1937, 'F', 5448), +(45732, 'Anna', 1937, 'F', 5447), +(45733, 'Marlene', 1937, 'F', 5037), +(45734, 'Sharon', 1937, 'F', 4704), +(45735, 'Jane', 1937, 'F', 4701), +(45736, 'Mildred', 1937, 'F', 4646), +(45737, 'Geraldine', 1937, 'F', 4555), +(45738, 'Elaine', 1937, 'F', 4527), +(45739, 'Annie', 1937, 'F', 4478), +(45740, 'Catherine', 1937, 'F', 4458), +(45741, 'Linda', 1937, 'F', 4380), +(45742, 'Louise', 1937, 'F', 4378), +(45743, 'Sylvia', 1937, 'F', 4364), +(45744, 'Joanne', 1937, 'F', 4333), +(45745, 'Ruby', 1937, 'F', 4287), +(45746, 'Eleanor', 1937, 'F', 4274), +(45747, 'Patsy', 1937, 'F', 4243), +(45748, 'Wanda', 1937, 'F', 4200), +(45749, 'Carole', 1937, 'F', 4197), +(45750, 'Marjorie', 1937, 'F', 4091), +(45751, 'Joann', 1937, 'F', 3938), +(45752, 'Sally', 1937, 'F', 3927), +(45753, 'Arlene', 1937, 'F', 3807), +(45754, 'Kathleen', 1937, 'F', 3743), +(45755, 'Irene', 1937, 'F', 3673), +(45756, 'Loretta', 1937, 'F', 3670), +(45757, 'Bonnie', 1937, 'F', 3594), +(45758, 'Sarah', 1937, 'F', 3585), +(45759, 'Roberta', 1937, 'F', 3567), +(45760, 'Charlotte', 1937, 'F', 3537), +(45761, 'Delores', 1937, 'F', 3529), +(45762, 'Rita', 1937, 'F', 3418), +(45763, 'Jacqueline', 1937, 'F', 3395), +(45764, 'June', 1937, 'F', 3379), +(45765, 'Darlene', 1937, 'F', 3285), +(45766, 'Jo', 1937, 'F', 3226), +(45767, 'Edna', 1937, 'F', 3221), +(45768, 'Juanita', 1937, 'F', 3179), +(45769, 'Diane', 1937, 'F', 3174), +(45770, 'Yvonne', 1937, 'F', 3172), +(45771, 'Thelma', 1937, 'F', 3060), +(45772, 'Kay', 1937, 'F', 3010), +(45773, 'Wilma', 1937, 'F', 2977), +(45774, 'Florence', 1937, 'F', 2952), +(45775, 'Josephine', 1937, 'F', 2940), +(45776, 'Lorraine', 1937, 'F', 2938), +(45777, 'Lillian', 1937, 'F', 2900), +(45778, 'Audrey', 1937, 'F', 2888), +(45779, 'Gladys', 1937, 'F', 2872), +(45780, 'Pauline', 1937, 'F', 2817), +(45781, 'Ethel', 1937, 'F', 2764), +(45782, 'Emma', 1937, 'F', 2749), +(45783, 'Jeanette', 1937, 'F', 2741), +(45784, 'Judy', 1937, 'F', 2741), +(45785, 'Anne', 1937, 'F', 2723), +(45786, 'Anita', 1937, 'F', 2712), +(45787, 'Grace', 1937, 'F', 2710), +(45788, 'Theresa', 1937, 'F', 2700), +(45789, 'Edith', 1937, 'F', 2650), +(45790, 'Susan', 1937, 'F', 2643), +(45791, 'Lucille', 1937, 'F', 2638), +(45792, 'Gail', 1937, 'F', 2632), +(45793, 'Clara', 1937, 'F', 2571), +(45794, 'Sue', 1937, 'F', 2502), +(45795, 'Ellen', 1937, 'F', 2498), +(45796, 'Katherine', 1937, 'F', 2483), +(45797, 'Bernice', 1937, 'F', 2386), +(45798, 'Laura', 1937, 'F', 2362), +(45799, 'Hazel', 1937, 'F', 2350), +(45800, 'Eileen', 1937, 'F', 2344), +(45801, 'Kathryn', 1937, 'F', 2327), +(45802, 'Marion', 1937, 'F', 2309), +(45803, 'Rosemary', 1937, 'F', 2307), +(45804, 'Margie', 1937, 'F', 2285), +(45805, 'Julia', 1937, 'F', 2284), +(45806, 'Karen', 1937, 'F', 2232), +(45807, 'Willie', 1937, 'F', 2193), +(45808, 'Annette', 1937, 'F', 2158), +(45809, 'Esther', 1937, 'F', 2155), +(45810, 'Eva', 1937, 'F', 2060), +(45811, 'Constance', 1937, 'F', 2028), +(45812, 'Shelby', 1937, 'F', 1996), +(45813, 'Beatrice', 1937, 'F', 1986), +(45814, 'Maria', 1937, 'F', 1954), +(45815, 'Bobbie', 1937, 'F', 1952), +(45816, 'Bertha', 1937, 'F', 1950), +(45817, 'Marcia', 1937, 'F', 1948), +(45818, 'Billie', 1937, 'F', 1939), +(45819, 'Elsie', 1937, 'F', 1937), +(45820, 'Connie', 1937, 'F', 1908), +(45821, 'Vivian', 1937, 'F', 1908), +(45822, 'Marian', 1937, 'F', 1904), +(45823, 'Sara', 1937, 'F', 1901), +(45824, 'Lillie', 1937, 'F', 1897), +(45825, 'Georgia', 1937, 'F', 1812), +(45826, 'Ida', 1937, 'F', 1785), +(45827, 'Ella', 1937, 'F', 1748), +(45828, 'Christine', 1937, 'F', 1742), +(45829, 'Maxine', 1937, 'F', 1730), +(45830, 'Myrna', 1937, 'F', 1651), +(45831, 'Alma', 1937, 'F', 1628), +(45832, 'Deanna', 1937, 'F', 1624), +(45833, 'Nellie', 1937, 'F', 1589), +(45834, 'Charlene', 1937, 'F', 1580), +(45835, 'Sheila', 1937, 'F', 1573), +(45836, 'Bessie', 1937, 'F', 1550), +(45837, 'Jessie', 1937, 'F', 1547), +(45838, 'Suzanne', 1937, 'F', 1546), +(45839, 'Glenda', 1937, 'F', 1536), +(45840, 'Pat', 1937, 'F', 1529), +(45841, 'Mattie', 1937, 'F', 1499), +(45842, 'Vera', 1937, 'F', 1498), +(45843, 'Jeanne', 1937, 'F', 1496), +(45844, 'Lucy', 1937, 'F', 1449), +(45845, 'Rosa', 1937, 'F', 1440), +(45846, 'Agnes', 1937, 'F', 1419), +(45847, 'Harriet', 1937, 'F', 1418), +(45848, 'Maureen', 1937, 'F', 1395), +(45849, 'Minnie', 1937, 'F', 1378), +(45850, 'Diana', 1937, 'F', 1334), +(45851, 'Geneva', 1937, 'F', 1329), +(45852, 'Gertrude', 1937, 'F', 1318), +(45853, 'Faye', 1937, 'F', 1300), +(45854, 'Emily', 1937, 'F', 1293), +(45855, 'Joy', 1937, 'F', 1235), +(45856, 'Rachel', 1937, 'F', 1229), +(45857, 'Velma', 1937, 'F', 1217), +(45858, 'Paula', 1937, 'F', 1213), +(45859, 'Rebecca', 1937, 'F', 1208), +(45860, 'Maryann', 1937, 'F', 1205), +(45861, 'Naomi', 1937, 'F', 1201), +(45862, 'Myrtle', 1937, 'F', 1192), +(45863, 'Cynthia', 1937, 'F', 1182), +(45864, 'Rosemarie', 1937, 'F', 1180), +(45865, 'Carrie', 1937, 'F', 1177), +(45866, 'Leona', 1937, 'F', 1173), +(45867, 'Dixie', 1937, 'F', 1161), +(45868, 'Viola', 1937, 'F', 1157), +(45869, 'Violet', 1937, 'F', 1139), +(45870, 'Cora', 1937, 'F', 1138), +(45871, 'Rosie', 1937, 'F', 1125), +(45872, 'Rosalie', 1937, 'F', 1116), +(45873, 'Patty', 1937, 'F', 1113), +(45874, 'Caroline', 1937, 'F', 1093), +(45875, 'Lula', 1937, 'F', 1089), +(45876, 'Dora', 1937, 'F', 1086), +(45877, 'Gwendolyn', 1937, 'F', 1084), +(45878, 'Mae', 1937, 'F', 1069), +(45879, 'Eunice', 1937, 'F', 1042), +(45880, 'Pearl', 1937, 'F', 1024), +(45881, 'Ramona', 1937, 'F', 1019), +(45882, 'Jeannette', 1937, 'F', 1012), +(45883, 'Alberta', 1937, 'F', 998), +(45884, 'Claire', 1937, 'F', 958), +(45885, 'Verna', 1937, 'F', 934), +(45886, 'Deloris', 1937, 'F', 930), +(45887, 'Hattie', 1937, 'F', 930), +(45888, 'Stella', 1937, 'F', 917), +(45889, 'Nina', 1937, 'F', 901), +(45890, 'Jackie', 1937, 'F', 898), +(45891, 'Johnnie', 1937, 'F', 880), +(45892, 'Lola', 1937, 'F', 865), +(45893, 'Fannie', 1937, 'F', 849), +(45894, 'Lena', 1937, 'F', 848), +(45895, 'Nora', 1937, 'F', 842), +(45896, 'Erma', 1937, 'F', 834), +(45897, 'Daisy', 1937, 'F', 813), +(45898, 'Marguerite', 1937, 'F', 806), +(45899, 'Irma', 1937, 'F', 801), +(45900, 'Priscilla', 1937, 'F', 797), +(45901, 'Susie', 1937, 'F', 797), +(45902, 'Ada', 1937, 'F', 795), +(45903, 'Claudia', 1937, 'F', 795), +(45904, 'Flora', 1937, 'F', 790), +(45905, 'Melba', 1937, 'F', 789), +(45906, 'Della', 1937, 'F', 787), +(45907, 'Angela', 1937, 'F', 783), +(45908, 'Iris', 1937, 'F', 781), +(45909, 'Carmen', 1937, 'F', 775), +(45910, 'Ernestine', 1937, 'F', 772), +(45911, 'Bettie', 1937, 'F', 762), +(45912, 'Hilda', 1937, 'F', 761), +(45913, 'Madeline', 1937, 'F', 754), +(45914, 'Miriam', 1937, 'F', 751), +(45915, 'Inez', 1937, 'F', 745), +(45916, 'Colleen', 1937, 'F', 740), +(45917, 'Gayle', 1937, 'F', 720), +(45918, 'Beulah', 1937, 'F', 718), +(45919, 'Janis', 1937, 'F', 715), +(45920, 'Mamie', 1937, 'F', 713), +(45921, 'Jacquelyn', 1937, 'F', 711), +(45922, 'Janie', 1937, 'F', 708), +(45923, 'Jennie', 1937, 'F', 707), +(45924, 'Regina', 1937, 'F', 707), +(45925, 'Muriel', 1937, 'F', 702), +(45926, 'Mabel', 1937, 'F', 696), +(45927, 'Genevieve', 1937, 'F', 692), +(45928, 'Laverne', 1937, 'F', 692), +(45929, 'Mable', 1937, 'F', 690), +(45930, 'Antoinette', 1937, 'F', 687), +(45931, 'Lydia', 1937, 'F', 687), +(45932, 'Bette', 1937, 'F', 685), +(45933, 'Dianne', 1937, 'F', 673), +(45934, 'Marcella', 1937, 'F', 664), +(45935, 'Teresa', 1937, 'F', 660), +(45936, 'Eula', 1937, 'F', 659), +(45937, 'Sherry', 1937, 'F', 649), +(45938, 'Amelia', 1937, 'F', 646), +(45939, 'Marianne', 1937, 'F', 646), +(45940, 'Claudette', 1937, 'F', 642), +(45941, 'Myra', 1937, 'F', 642), +(45942, 'Bettye', 1937, 'F', 638), +(45943, 'Eloise', 1937, 'F', 636), +(45944, 'Maggie', 1937, 'F', 634), +(45945, 'Victoria', 1937, 'F', 628), +(45946, 'Mona', 1937, 'F', 624), +(45947, 'Opal', 1937, 'F', 618), +(45948, 'Katie', 1937, 'F', 607), +(45949, 'Reba', 1937, 'F', 601), +(45950, 'Lila', 1937, 'F', 578), +(45951, 'Henrietta', 1937, 'F', 575), +(45952, 'Frankie', 1937, 'F', 570), +(45953, 'Nadine', 1937, 'F', 566), +(45954, 'Marsha', 1937, 'F', 561), +(45955, 'Cecilia', 1937, 'F', 560), +(45956, 'Sonja', 1937, 'F', 560), +(45957, 'Arline', 1937, 'F', 559), +(45958, 'Jimmie', 1937, 'F', 554), +(45959, 'Sondra', 1937, 'F', 553), +(45960, 'Blanche', 1937, 'F', 550), +(45961, 'Fay', 1937, 'F', 550), +(45962, 'Lou', 1937, 'F', 539), +(45963, 'Veronica', 1937, 'F', 534), +(45964, 'Sadie', 1937, 'F', 532), +(45965, 'Freda', 1937, 'F', 528), +(45966, 'Lorene', 1937, 'F', 528), +(45967, 'Nelda', 1937, 'F', 526), +(45968, 'Nettie', 1937, 'F', 521), +(45969, 'Ina', 1937, 'F', 514), +(45970, 'Glenna', 1937, 'F', 499), +(45971, 'Lynn', 1937, 'F', 498), +(45972, 'Valerie', 1937, 'F', 494), +(45973, 'Sallie', 1937, 'F', 493), +(45974, 'Imogene', 1937, 'F', 492), +(45975, 'Rosetta', 1937, 'F', 485), +(45976, 'Cecelia', 1937, 'F', 474), +(45977, 'Essie', 1937, 'F', 471), +(45978, 'Dorthy', 1937, 'F', 465), +(45979, 'Julie', 1937, 'F', 461), +(45980, 'Ora', 1937, 'F', 459), +(45981, 'Lavonne', 1937, 'F', 457), +(45982, 'Ollie', 1937, 'F', 457), +(45983, 'Dawn', 1937, 'F', 456), +(45984, 'Helene', 1937, 'F', 453), +(45985, 'Mavis', 1937, 'F', 452), +(45986, 'Rochelle', 1937, 'F', 451), +(45987, 'Betsy', 1937, 'F', 450), +(45988, 'Winifred', 1937, 'F', 444), +(45989, 'Etta', 1937, 'F', 441), +(45990, 'Joanna', 1937, 'F', 438), +(45991, 'Lee', 1937, 'F', 438), +(45992, 'Addie', 1937, 'F', 423), +(45993, 'Jerry', 1937, 'F', 422), +(45994, 'Lenora', 1937, 'F', 419), +(45995, 'Lela', 1937, 'F', 418), +(45996, 'Gracie', 1937, 'F', 416), +(45997, 'Jewel', 1937, 'F', 414), +(45998, 'Celia', 1937, 'F', 411), +(45999, 'Iva', 1937, 'F', 410), +(46000, 'Leah', 1937, 'F', 408), +(46001, 'Willa', 1937, 'F', 405), +(46002, 'Lynne', 1937, 'F', 403), +(46003, 'Isabel', 1937, 'F', 399), +(46004, 'Estelle', 1937, 'F', 398), +(46005, 'Olivia', 1937, 'F', 393), +(46006, 'Cleo', 1937, 'F', 391), +(46007, 'Natalie', 1937, 'F', 391), +(46008, 'Pearlie', 1937, 'F', 391), +(46009, 'Bernadine', 1937, 'F', 383), +(46010, 'Effie', 1937, 'F', 379), +(46011, 'Ruthie', 1937, 'F', 378), +(46012, 'Earnestine', 1937, 'F', 377), +(46013, 'Polly', 1937, 'F', 373), +(46014, 'Clarice', 1937, 'F', 372), +(46015, 'Adele', 1937, 'F', 371), +(46016, 'Beth', 1937, 'F', 371), +(46017, 'Beverley', 1937, 'F', 371), +(46018, 'Marlys', 1937, 'F', 369), +(46019, 'Fern', 1937, 'F', 366), +(46020, 'Lottie', 1937, 'F', 366), +(46021, 'Ola', 1937, 'F', 364), +(46022, 'Olga', 1937, 'F', 362), +(46023, 'Cecile', 1937, 'F', 358), +(46024, 'Josie', 1937, 'F', 353), +(46025, 'Rena', 1937, 'F', 353), +(46026, 'Tommie', 1937, 'F', 351), +(46027, 'Gretchen', 1937, 'F', 349), +(46028, 'Leola', 1937, 'F', 349), +(46029, 'Estella', 1937, 'F', 348), +(46030, 'Jeannine', 1937, 'F', 348), +(46031, 'Luella', 1937, 'F', 346), +(46032, 'Sonia', 1937, 'F', 346), +(46033, 'Angelina', 1937, 'F', 344), +(46034, 'Shelba', 1937, 'F', 344), +(46035, 'Marva', 1937, 'F', 343), +(46036, 'Rhoda', 1937, 'F', 341), +(46037, 'Adrienne', 1937, 'F', 340), +(46038, 'Gay', 1937, 'F', 340), +(46039, 'Lenore', 1937, 'F', 340), +(46040, 'Earline', 1937, 'F', 339), +(46041, 'Faith', 1937, 'F', 339), +(46042, 'Yolanda', 1937, 'F', 339), +(46043, 'Marylou', 1937, 'F', 338), +(46044, 'Bernadette', 1937, 'F', 336), +(46045, 'Harriett', 1937, 'F', 335), +(46046, 'Earlene', 1937, 'F', 333), +(46047, 'Amy', 1937, 'F', 326), +(46048, 'Lupe', 1937, 'F', 326), +(46049, 'Alta', 1937, 'F', 325), +(46050, 'Jewell', 1937, 'F', 325), +(46051, 'Deborah', 1937, 'F', 323), +(46052, 'Sybil', 1937, 'F', 322), +(46053, 'Elnora', 1937, 'F', 321), +(46054, 'Ila', 1937, 'F', 320), +(46055, 'Nell', 1937, 'F', 320), +(46056, 'Lizzie', 1937, 'F', 319), +(46057, 'Elva', 1937, 'F', 318), +(46058, 'Virgie', 1937, 'F', 316), +(46059, 'Francis', 1937, 'F', 311), +(46060, 'Lorna', 1937, 'F', 311), +(46061, 'Dorothea', 1937, 'F', 309), +(46062, 'Molly', 1937, 'F', 306), +(46063, 'Merle', 1937, 'F', 302), +(46064, 'Melva', 1937, 'F', 300), +(46065, 'Lynda', 1937, 'F', 299), +(46066, 'Elinor', 1937, 'F', 298), +(46067, 'Renee', 1937, 'F', 298), +(46068, 'Janette', 1937, 'F', 296), +(46069, 'Dolly', 1937, 'F', 295), +(46070, 'Rosalind', 1937, 'F', 295), +(46071, 'Nola', 1937, 'F', 294), +(46072, 'May', 1937, 'F', 292), +(46073, 'Monica', 1937, 'F', 292), +(46074, 'Corinne', 1937, 'F', 290), +(46075, 'Angeline', 1937, 'F', 286), +(46076, 'Dona', 1937, 'F', 286), +(46077, 'Camille', 1937, 'F', 285), +(46078, 'Robbie', 1937, 'F', 285), +(46079, 'Delia', 1937, 'F', 284), +(46080, 'Noreen', 1937, 'F', 283), +(46081, 'Neva', 1937, 'F', 281), +(46082, 'Eddie', 1937, 'F', 280), +(46083, 'Gwen', 1937, 'F', 280), +(46084, 'Alicia', 1937, 'F', 274), +(46085, 'Guadalupe', 1937, 'F', 274), +(46086, 'Lora', 1937, 'F', 272), +(46087, 'Marilynn', 1937, 'F', 271), +(46088, 'Doreen', 1937, 'F', 270), +(46089, 'Eugenia', 1937, 'F', 268), +(46090, 'Johanna', 1937, 'F', 268), +(46091, 'Bonita', 1937, 'F', 266), +(46092, 'Pamela', 1937, 'F', 265), +(46093, 'Goldie', 1937, 'F', 262), +(46094, 'Dollie', 1937, 'F', 258), +(46095, 'Carla', 1937, 'F', 257), +(46096, 'Cornelia', 1937, 'F', 256), +(46097, 'Denise', 1937, 'F', 255), +(46098, 'Carlene', 1937, 'F', 254), +(46099, 'Winnie', 1937, 'F', 254), +(46100, 'James', 1937, 'F', 252), +(46101, 'Nona', 1937, 'F', 252), +(46102, 'Olive', 1937, 'F', 251), +(46103, 'Christina', 1937, 'F', 250), +(46104, 'Marietta', 1937, 'F', 250), +(46105, 'Ilene', 1937, 'F', 248), +(46106, 'Adeline', 1937, 'F', 245), +(46107, 'Freddie', 1937, 'F', 245), +(46108, 'Francine', 1937, 'F', 244), +(46109, 'Kaye', 1937, 'F', 241), +(46110, 'Jan', 1937, 'F', 240), +(46111, 'Margarita', 1937, 'F', 240), +(46112, 'Leila', 1937, 'F', 239), +(46113, 'Elvira', 1937, 'F', 237), +(46114, 'Odessa', 1937, 'F', 237), +(46115, 'Nannie', 1937, 'F', 236), +(46116, 'Brenda', 1937, 'F', 233), +(46117, 'Lucile', 1937, 'F', 233), +(46118, 'Terry', 1937, 'F', 232), +(46119, 'Corrine', 1937, 'F', 231), +(46120, 'Deanne', 1937, 'F', 230), +(46121, 'Wilda', 1937, 'F', 230), +(46122, 'Queen', 1937, 'F', 229), +(46123, 'Sonya', 1937, 'F', 229), +(46124, 'Susanne', 1937, 'F', 228), +(46125, 'Therese', 1937, 'F', 228), +(46126, 'Hope', 1937, 'F', 227), +(46127, 'Joe', 1937, 'F', 227), +(46128, 'Mollie', 1937, 'F', 226), +(46129, 'Edwina', 1937, 'F', 225), +(46130, 'Elma', 1937, 'F', 225), +(46131, 'Selma', 1937, 'F', 225), +(46132, 'Letha', 1937, 'F', 224), +(46133, 'Margery', 1937, 'F', 224), +(46134, 'Robert', 1937, 'F', 223), +(46135, 'Antonia', 1937, 'F', 222), +(46136, 'Louella', 1937, 'F', 220), +(46137, 'Rosella', 1937, 'F', 220), +(46138, 'John', 1937, 'F', 218), +(46139, 'Toni', 1937, 'F', 218), +(46140, 'Greta', 1937, 'F', 217), +(46141, 'Alyce', 1937, 'F', 216), +(46142, 'Avis', 1937, 'F', 215), +(46143, 'Eleanore', 1937, 'F', 214), +(46144, 'Bennie', 1937, 'F', 212), +(46145, 'Carmela', 1937, 'F', 209), +(46146, 'Frieda', 1937, 'F', 209), +(46147, 'Stephanie', 1937, 'F', 209), +(46148, 'Bobby', 1937, 'F', 207), +(46149, 'Reva', 1937, 'F', 206), +(46150, 'Saundra', 1937, 'F', 206), +(46151, 'Millie', 1937, 'F', 205), +(46152, 'Flossie', 1937, 'F', 204), +(46153, 'Sophie', 1937, 'F', 204), +(46154, 'Georgie', 1937, 'F', 200), +(46155, 'Jannie', 1937, 'F', 200), +(46156, 'Hannah', 1937, 'F', 199), +(46157, 'Helena', 1937, 'F', 198), +(46158, 'Corine', 1937, 'F', 197), +(46159, 'Mercedes', 1937, 'F', 197), +(46160, 'Patti', 1937, 'F', 197), +(46161, 'Carmella', 1937, 'F', 196), +(46162, 'Lorena', 1937, 'F', 196), +(46163, 'Angie', 1937, 'F', 194), +(46164, 'Retha', 1937, 'F', 194), +(46165, 'Shelva', 1937, 'F', 194), +(46166, 'Florine', 1937, 'F', 193), +(46167, 'Rae', 1937, 'F', 191), +(46168, 'Sharron', 1937, 'F', 191), +(46169, 'Zelma', 1937, 'F', 191), +(46170, 'Delois', 1937, 'F', 189), +(46171, 'Elouise', 1937, 'F', 188), +(46172, 'Lilly', 1937, 'F', 188), +(46173, 'Darla', 1937, 'F', 185), +(46174, 'Jill', 1937, 'F', 184), +(46175, 'Ophelia', 1937, 'F', 184), +(46176, 'Evangeline', 1937, 'F', 183), +(46177, 'Marlyn', 1937, 'F', 183), +(46178, 'Dale', 1937, 'F', 182), +(46179, 'Ladonna', 1937, 'F', 182), +(46180, 'Andrea', 1937, 'F', 181), +(46181, 'Rosalyn', 1937, 'F', 180), +(46182, 'Isabelle', 1937, 'F', 179), +(46183, 'Loraine', 1937, 'F', 179), +(46184, 'Emilie', 1937, 'F', 178), +(46185, 'Lily', 1937, 'F', 178), +(46186, 'Aurora', 1937, 'F', 177), +(46187, 'Leslie', 1937, 'F', 177), +(46188, 'Peggie', 1937, 'F', 177), +(46189, 'Amanda', 1937, 'F', 176), +(46190, 'Charles', 1937, 'F', 176), +(46191, 'Jenny', 1937, 'F', 176), +(46192, 'Annabelle', 1937, 'F', 175), +(46193, 'Nita', 1937, 'F', 175), +(46194, 'Annetta', 1937, 'F', 174), +(46195, 'Penelope', 1937, 'F', 173), +(46196, 'Winona', 1937, 'F', 172), +(46197, 'Lessie', 1937, 'F', 171), +(46198, 'Claudine', 1937, 'F', 169), +(46199, 'Roxie', 1937, 'F', 169), +(46200, 'Clare', 1937, 'F', 168), +(46201, 'Matilda', 1937, 'F', 168), +(46202, 'Theodora', 1937, 'F', 167), +(46203, 'Callie', 1937, 'F', 165), +(46204, 'Madelyn', 1937, 'F', 165), +(46205, 'Penny', 1937, 'F', 165), +(46206, 'Ester', 1937, 'F', 164), +(46207, 'William', 1937, 'F', 164), +(46208, 'Aline', 1937, 'F', 163), +(46209, 'Belva', 1937, 'F', 162), +(46210, 'Charlie', 1937, 'F', 162), +(46211, 'Freida', 1937, 'F', 162), +(46212, 'Leota', 1937, 'F', 162), +(46213, 'Roseann', 1937, 'F', 161), +(46214, 'Allie', 1937, 'F', 160), +(46215, 'Consuelo', 1937, 'F', 160), +(46216, 'Katharine', 1937, 'F', 160), +(46217, 'Margo', 1937, 'F', 160), +(46218, 'Concetta', 1937, 'F', 159), +(46219, 'Aileen', 1937, 'F', 157), +(46220, 'Kathy', 1937, 'F', 157), +(46221, 'Lucinda', 1937, 'F', 157), +(46222, 'Pansy', 1937, 'F', 157), +(46223, 'Ginger', 1937, 'F', 156), +(46224, 'Lucia', 1937, 'F', 156), +(46225, 'Norita', 1937, 'F', 155), +(46226, 'Shirlee', 1937, 'F', 155), +(46227, 'Ima', 1937, 'F', 154), +(46228, 'Maude', 1937, 'F', 154), +(46229, 'Nan', 1937, 'F', 154), +(46230, 'Ardith', 1937, 'F', 153), +(46231, 'Maryanne', 1937, 'F', 153), +(46232, 'Rosalee', 1937, 'F', 153), +(46233, 'Donnie', 1937, 'F', 152), +(46234, 'Meredith', 1937, 'F', 152), +(46235, 'Velda', 1937, 'F', 152), +(46236, 'Alene', 1937, 'F', 151), +(46237, 'Dana', 1937, 'F', 150), +(46238, 'Jeanie', 1937, 'F', 150), +(46239, 'Madeleine', 1937, 'F', 150), +(46240, 'Ardis', 1937, 'F', 149), +(46241, 'Elena', 1937, 'F', 149), +(46242, 'Twila', 1937, 'F', 149), +(46243, 'Althea', 1937, 'F', 148), +(46244, 'Gerry', 1937, 'F', 148), +(46245, 'Lelia', 1937, 'F', 148), +(46246, 'Treva', 1937, 'F', 148), +(46247, 'Vernell', 1937, 'F', 148), +(46248, 'Vicki', 1937, 'F', 148), +(46249, 'Gale', 1937, 'F', 147), +(46250, 'Zelda', 1937, 'F', 147), +(46251, 'Delma', 1937, 'F', 146), +(46252, 'Dianna', 1937, 'F', 146), +(46253, 'Doretha', 1937, 'F', 146), +(46254, 'Marilee', 1937, 'F', 146), +(46255, 'Maryjane', 1937, 'F', 146), +(46256, 'Cheryl', 1937, 'F', 145), +(46257, 'Ruthann', 1937, 'F', 145), +(46258, 'Carroll', 1937, 'F', 144), +(46259, 'Delphine', 1937, 'F', 144), +(46260, 'George', 1937, 'F', 144), +(46261, 'Carolee', 1937, 'F', 143), +(46262, 'Jeanine', 1937, 'F', 142), +(46263, 'Jeannie', 1937, 'F', 142), +(46264, 'Reta', 1937, 'F', 142), +(46265, 'Sharlene', 1937, 'F', 142), +(46266, 'Gussie', 1937, 'F', 141), +(46267, 'Sammie', 1937, 'F', 140), +(46268, 'Elisabeth', 1937, 'F', 137), +(46269, 'Jolene', 1937, 'F', 137), +(46270, 'Bertie', 1937, 'F', 136), +(46271, 'Celeste', 1937, 'F', 136), +(46272, 'Dottie', 1937, 'F', 136), +(46273, 'Maudie', 1937, 'F', 136), +(46274, 'Rowena', 1937, 'F', 136), +(46275, 'Jayne', 1937, 'F', 134), +(46276, 'Carrol', 1937, 'F', 133), +(46277, 'Eliza', 1937, 'F', 133), +(46278, 'Harriette', 1937, 'F', 133), +(46279, 'Marla', 1937, 'F', 133), +(46280, 'Madge', 1937, 'F', 132), +(46281, 'Verla', 1937, 'F', 132), +(46282, 'Gearldine', 1937, 'F', 131), +(46283, 'Lorine', 1937, 'F', 131), +(46284, 'Millicent', 1937, 'F', 131), +(46285, 'Elsa', 1937, 'F', 129), +(46286, 'Marylyn', 1937, 'F', 129), +(46287, 'Alfreda', 1937, 'F', 128), +(46288, 'Allene', 1937, 'F', 128), +(46289, 'Beryl', 1937, 'F', 128), +(46290, 'Laurel', 1937, 'F', 127), +(46291, 'Syble', 1937, 'F', 127), +(46292, 'Margot', 1937, 'F', 126), +(46293, 'Tina', 1937, 'F', 126), +(46294, 'Vonda', 1937, 'F', 126), +(46295, 'Georgianna', 1937, 'F', 125), +(46296, 'Leta', 1937, 'F', 125), +(46297, 'Caryl', 1937, 'F', 124), +(46298, 'Germaine', 1937, 'F', 124), +(46299, 'Dorris', 1937, 'F', 123), +(46300, 'Iona', 1937, 'F', 123), +(46301, 'Margret', 1937, 'F', 123), +(46302, 'Pearline', 1937, 'F', 123), +(46303, 'Hellen', 1937, 'F', 122), +(46304, 'Ione', 1937, 'F', 122), +(46305, 'Petra', 1937, 'F', 121), +(46306, 'Phoebe', 1937, 'F', 121), +(46307, 'Roslyn', 1937, 'F', 121), +(46308, 'Dee', 1937, 'F', 120), +(46309, 'Dortha', 1937, 'F', 120), +(46310, 'Hester', 1937, 'F', 120), +(46311, 'Leora', 1937, 'F', 120), +(46312, 'Oma', 1937, 'F', 120), +(46313, 'Charleen', 1937, 'F', 119), +(46314, 'Darleen', 1937, 'F', 119), +(46315, 'Dessie', 1937, 'F', 119), +(46316, 'Elise', 1937, 'F', 119), +(46317, 'Alva', 1937, 'F', 118), +(46318, 'Marylin', 1937, 'F', 118), +(46319, 'Rhea', 1937, 'F', 118), +(46320, 'Richard', 1937, 'F', 118), +(46321, 'Toby', 1937, 'F', 118), +(46322, 'Jaunita', 1937, 'F', 117), +(46323, 'Minerva', 1937, 'F', 116), +(46324, 'Berniece', 1937, 'F', 115), +(46325, 'Shirlene', 1937, 'F', 115), +(46326, 'Valeria', 1937, 'F', 115), +(46327, 'Ava', 1937, 'F', 114), +(46328, 'Becky', 1937, 'F', 114), +(46329, 'Camilla', 1937, 'F', 114), +(46330, 'Pattie', 1937, 'F', 114), +(46331, 'Roma', 1937, 'F', 114), +(46332, 'Edythe', 1937, 'F', 113), +(46333, 'Lavon', 1937, 'F', 113), +(46334, 'Benita', 1937, 'F', 112), +(46335, 'Louisa', 1937, 'F', 112), +(46336, 'Birdie', 1937, 'F', 111), +(46337, 'Esperanza', 1937, 'F', 111), +(46338, 'Vada', 1937, 'F', 111), +(46339, 'Adelaide', 1937, 'F', 110), +(46340, 'Berta', 1937, 'F', 110), +(46341, 'Dorene', 1937, 'F', 110), +(46342, 'Janelle', 1937, 'F', 110), +(46343, 'Maurine', 1937, 'F', 110), +(46344, 'Zella', 1937, 'F', 110), +(46345, 'Cordelia', 1937, 'F', 109), +(46346, 'Justine', 1937, 'F', 109), +(46347, 'Madonna', 1937, 'F', 109), +(46348, 'Sandy', 1937, 'F', 108), +(46349, 'Wilhelmina', 1937, 'F', 108), +(46350, 'Angelita', 1937, 'F', 107), +(46351, 'Carolina', 1937, 'F', 107), +(46352, 'Katheryn', 1937, 'F', 107), +(46353, 'Maryellen', 1937, 'F', 107), +(46354, 'Sherrill', 1937, 'F', 107), +(46355, 'Kitty', 1937, 'F', 106), +(46356, 'Marjory', 1937, 'F', 106), +(46357, 'Isabella', 1937, 'F', 105), +(46358, 'Theda', 1937, 'F', 105), +(46359, 'Garnet', 1937, 'F', 104), +(46360, 'Jacklyn', 1937, 'F', 104), +(46361, 'Lauretta', 1937, 'F', 104), +(46362, 'Sophia', 1937, 'F', 104), +(46363, 'Georgiana', 1937, 'F', 103), +(46364, 'Lona', 1937, 'F', 103), +(46365, 'Lynette', 1937, 'F', 103), +(46366, 'Clementine', 1937, 'F', 102), +(46367, 'Erna', 1937, 'F', 102), +(46368, 'Josefina', 1937, 'F', 102), +(46369, 'Manuela', 1937, 'F', 102), +(46370, 'Alvina', 1937, 'F', 101), +(46371, 'Felicia', 1937, 'F', 101), +(46372, 'Florene', 1937, 'F', 101), +(46373, 'Rubye', 1937, 'F', 100), +(46374, 'Ursula', 1937, 'F', 100), +(46375, 'Robert', 1937, 'M', 61821), +(46376, 'James', 1937, 'M', 56546), +(46377, 'John', 1937, 'M', 48739), +(46378, 'William', 1937, 'M', 40701), +(46379, 'Richard', 1937, 'M', 32972), +(46380, 'Charles', 1937, 'M', 30512), +(46381, 'Donald', 1937, 'M', 27863), +(46382, 'David', 1937, 'M', 20976), +(46383, 'Thomas', 1937, 'M', 19772), +(46384, 'George', 1937, 'M', 18430), +(46385, 'Ronald', 1937, 'M', 18135), +(46386, 'Joseph', 1937, 'M', 17311), +(46387, 'Edward', 1937, 'M', 14925), +(46388, 'Kenneth', 1937, 'M', 13211), +(46389, 'Paul', 1937, 'M', 12868), +(46390, 'Larry', 1937, 'M', 10319), +(46391, 'Jerry', 1937, 'M', 10299), +(46392, 'Frank', 1937, 'M', 10125), +(46393, 'Raymond', 1937, 'M', 9575), +(46394, 'Gerald', 1937, 'M', 9421), +(46395, 'Harold', 1937, 'M', 8544), +(46396, 'Billy', 1937, 'M', 8297), +(46397, 'Jack', 1937, 'M', 8191), +(46398, 'Bobby', 1937, 'M', 7744), +(46399, 'Joe', 1937, 'M', 7740), +(46400, 'Walter', 1937, 'M', 7481), +(46401, 'Michael', 1937, 'M', 7094), +(46402, 'Carl', 1937, 'M', 6907), +(46403, 'Gary', 1937, 'M', 6769), +(46404, 'Henry', 1937, 'M', 6670), +(46405, 'Arthur', 1937, 'M', 6313), +(46406, 'Willie', 1937, 'M', 6229), +(46407, 'Eugene', 1937, 'M', 5995), +(46408, 'Ralph', 1937, 'M', 5916), +(46409, 'Fred', 1937, 'M', 5738), +(46410, 'Roger', 1937, 'M', 5708), +(46411, 'Albert', 1937, 'M', 5666), +(46412, 'Lawrence', 1937, 'M', 5506), +(46413, 'Daniel', 1937, 'M', 5126), +(46414, 'Roy', 1937, 'M', 4887), +(46415, 'Harry', 1937, 'M', 4812), +(46416, 'Howard', 1937, 'M', 4700), +(46417, 'Norman', 1937, 'M', 4674), +(46418, 'Wayne', 1937, 'M', 4615), +(46419, 'Jimmy', 1937, 'M', 4516), +(46420, 'Louis', 1937, 'M', 4355), +(46421, 'Anthony', 1937, 'M', 4334), +(46422, 'Earl', 1937, 'M', 3943), +(46423, 'Marvin', 1937, 'M', 3909), +(46424, 'Melvin', 1937, 'M', 3890), +(46425, 'Don', 1937, 'M', 3814), +(46426, 'Peter', 1937, 'M', 3809), +(46427, 'Clarence', 1937, 'M', 3757), +(46428, 'Ernest', 1937, 'M', 3757), +(46429, 'Francis', 1937, 'M', 3726), +(46430, 'Leroy', 1937, 'M', 3554), +(46431, 'Stanley', 1937, 'M', 3482), +(46432, 'Leonard', 1937, 'M', 3479), +(46433, 'Dale', 1937, 'M', 3339), +(46434, 'Alfred', 1937, 'M', 3180), +(46435, 'Gene', 1937, 'M', 3166), +(46436, 'Philip', 1937, 'M', 3160), +(46437, 'Dennis', 1937, 'M', 3159), +(46438, 'Bill', 1937, 'M', 3119), +(46439, 'Herbert', 1937, 'M', 3039), +(46440, 'Samuel', 1937, 'M', 3029), +(46441, 'Russell', 1937, 'M', 2898), +(46442, 'Frederick', 1937, 'M', 2878), +(46443, 'Johnny', 1937, 'M', 2824), +(46444, 'Bruce', 1937, 'M', 2808), +(46445, 'Ray', 1937, 'M', 2723), +(46446, 'Jimmie', 1937, 'M', 2681), +(46447, 'Bernard', 1937, 'M', 2670), +(46448, 'Douglas', 1937, 'M', 2606), +(46449, 'Gordon', 1937, 'M', 2531), +(46450, 'Franklin', 1937, 'M', 2517), +(46451, 'Allen', 1937, 'M', 2516), +(46452, 'Lee', 1937, 'M', 2500), +(46453, 'Andrew', 1937, 'M', 2405), +(46454, 'Floyd', 1937, 'M', 2386), +(46455, 'Bob', 1937, 'M', 2363), +(46456, 'Eddie', 1937, 'M', 2349), +(46457, 'Jim', 1937, 'M', 2348), +(46458, 'Tommy', 1937, 'M', 2326), +(46459, 'Leon', 1937, 'M', 2325), +(46460, 'Theodore', 1937, 'M', 2314), +(46461, 'Martin', 1937, 'M', 2275), +(46462, 'Edwin', 1937, 'M', 2263), +(46463, 'Glenn', 1937, 'M', 2262), +(46464, 'Clifford', 1937, 'M', 2228), +(46465, 'Lloyd', 1937, 'M', 2153), +(46466, 'Stephen', 1937, 'M', 2134), +(46467, 'Clyde', 1937, 'M', 2101), +(46468, 'Patrick', 1937, 'M', 2091), +(46469, 'Harvey', 1937, 'M', 2079), +(46470, 'Vernon', 1937, 'M', 2076), +(46471, 'Leo', 1937, 'M', 2015), +(46472, 'Phillip', 1937, 'M', 2004), +(46473, 'Alvin', 1937, 'M', 1987), +(46474, 'Jerome', 1937, 'M', 1978), +(46475, 'Herman', 1937, 'M', 1873), +(46476, 'Jesse', 1937, 'M', 1868), +(46477, 'Alan', 1937, 'M', 1844), +(46478, 'Lewis', 1937, 'M', 1836), +(46479, 'Vincent', 1937, 'M', 1833), +(46480, 'Warren', 1937, 'M', 1822), +(46481, 'Jackie', 1937, 'M', 1814), +(46482, 'Tom', 1937, 'M', 1807), +(46483, 'Curtis', 1937, 'M', 1788), +(46484, 'Charlie', 1937, 'M', 1754), +(46485, 'Arnold', 1937, 'M', 1725), +(46486, 'Gilbert', 1937, 'M', 1684), +(46487, 'Terry', 1937, 'M', 1683), +(46488, 'Cecil', 1937, 'M', 1634), +(46489, 'Duane', 1937, 'M', 1631), +(46490, 'Lester', 1937, 'M', 1577), +(46491, 'Victor', 1937, 'M', 1538), +(46492, 'Johnnie', 1937, 'M', 1477), +(46493, 'Benjamin', 1937, 'M', 1425), +(46494, 'Elmer', 1937, 'M', 1415), +(46495, 'Milton', 1937, 'M', 1383), +(46496, 'Glen', 1937, 'M', 1359), +(46497, 'Keith', 1937, 'M', 1343), +(46498, 'Allan', 1937, 'M', 1338), +(46499, 'Calvin', 1937, 'M', 1332), +(46500, 'Roland', 1937, 'M', 1319), +(46501, 'Dean', 1937, 'M', 1313), +(46502, 'Ronnie', 1937, 'M', 1285), +(46503, 'Chester', 1937, 'M', 1271), +(46504, 'Darrell', 1937, 'M', 1260), +(46505, 'Leslie', 1937, 'M', 1239), +(46506, 'Sam', 1937, 'M', 1216), +(46507, 'Wallace', 1937, 'M', 1190), +(46508, 'Freddie', 1937, 'M', 1165), +(46509, 'Willard', 1937, 'M', 1163), +(46510, 'Jay', 1937, 'M', 1145), +(46511, 'Claude', 1937, 'M', 1140), +(46512, 'Manuel', 1937, 'M', 1130), +(46513, 'Joel', 1937, 'M', 1116), +(46514, 'Marion', 1937, 'M', 1115), +(46515, 'Max', 1937, 'M', 1106), +(46516, 'Jose', 1937, 'M', 1086), +(46517, 'Hugh', 1937, 'M', 1070), +(46518, 'Maurice', 1937, 'M', 1069), +(46519, 'Edgar', 1937, 'M', 1068), +(46520, 'Wesley', 1937, 'M', 1066), +(46521, 'Ted', 1937, 'M', 1061), +(46522, 'Jessie', 1937, 'M', 1041), +(46523, 'Dan', 1937, 'M', 1033), +(46524, 'Jon', 1937, 'M', 1030), +(46525, 'Rodney', 1937, 'M', 1025), +(46526, 'Danny', 1937, 'M', 1023), +(46527, 'Dick', 1937, 'M', 1008), +(46528, 'Oscar', 1937, 'M', 987), +(46529, 'Lowell', 1937, 'M', 981), +(46530, 'Everett', 1937, 'M', 973), +(46531, 'Virgil', 1937, 'M', 969), +(46532, 'Neil', 1937, 'M', 967), +(46533, 'Nicholas', 1937, 'M', 935), +(46534, 'Tony', 1937, 'M', 922), +(46535, 'Delbert', 1937, 'M', 909), +(46536, 'Karl', 1937, 'M', 907), +(46537, 'Sidney', 1937, 'M', 902), +(46538, 'Hubert', 1937, 'M', 892), +(46539, 'Homer', 1937, 'M', 889), +(46540, 'Bennie', 1937, 'M', 886), +(46541, 'Lyle', 1937, 'M', 875), +(46542, 'Mike', 1937, 'M', 873), +(46543, 'Luther', 1937, 'M', 863), +(46544, 'Morris', 1937, 'M', 856), +(46545, 'Lonnie', 1937, 'M', 854), +(46546, 'Steve', 1937, 'M', 845), +(46547, 'Alton', 1937, 'M', 834), +(46548, 'Earnest', 1937, 'M', 833), +(46549, 'Ben', 1937, 'M', 815), +(46550, 'Mark', 1937, 'M', 809), +(46551, 'Marshall', 1937, 'M', 804), +(46552, 'Carroll', 1937, 'M', 779), +(46553, 'Benny', 1937, 'M', 759), +(46554, 'Horace', 1937, 'M', 745), +(46555, 'Guy', 1937, 'M', 731), +(46556, 'Wilbur', 1937, 'M', 726), +(46557, 'Barry', 1937, 'M', 724), +(46558, 'Willis', 1937, 'M', 724), +(46559, 'Billie', 1937, 'M', 713), +(46560, 'Nathaniel', 1937, 'M', 705), +(46561, 'Lynn', 1937, 'M', 703), +(46562, 'Clayton', 1937, 'M', 700), +(46563, 'Otis', 1937, 'M', 681), +(46564, 'Alexander', 1937, 'M', 676), +(46565, 'Roosevelt', 1937, 'M', 675), +(46566, 'Timothy', 1937, 'M', 674), +(46567, 'Clifton', 1937, 'M', 668), +(46568, 'Nelson', 1937, 'M', 660), +(46569, 'Clinton', 1937, 'M', 659), +(46570, 'Archie', 1937, 'M', 645), +(46571, 'Rudolph', 1937, 'M', 629), +(46572, 'Stuart', 1937, 'M', 623), +(46573, 'Donnie', 1937, 'M', 620), +(46574, 'Oliver', 1937, 'M', 609), +(46575, 'Matthew', 1937, 'M', 606), +(46576, 'Fredrick', 1937, 'M', 601), +(46577, 'Rex', 1937, 'M', 601), +(46578, 'Bobbie', 1937, 'M', 597), +(46579, 'Dave', 1937, 'M', 593), +(46580, 'Wendell', 1937, 'M', 583), +(46581, 'Ira', 1937, 'M', 576), +(46582, 'Doyle', 1937, 'M', 575), +(46583, 'Juan', 1937, 'M', 571), +(46584, 'Alex', 1937, 'M', 565), +(46585, 'Julius', 1937, 'M', 565), +(46586, 'Junior', 1937, 'M', 562), +(46587, 'Leland', 1937, 'M', 555), +(46588, 'Tommie', 1937, 'M', 552), +(46589, 'Wilbert', 1937, 'M', 551), +(46590, 'Buddy', 1937, 'M', 549), +(46591, 'Carlton', 1937, 'M', 548), +(46592, 'Ivan', 1937, 'M', 547), +(46593, 'Perry', 1937, 'M', 544), +(46594, 'Sherman', 1937, 'M', 543), +(46595, 'Troy', 1937, 'M', 540), +(46596, 'Jacob', 1937, 'M', 536), +(46597, 'Salvatore', 1937, 'M', 536), +(46598, 'Steven', 1937, 'M', 535), +(46599, 'Carlos', 1937, 'M', 532), +(46600, 'Edmund', 1937, 'M', 523), +(46601, 'Byron', 1937, 'M', 521), +(46602, 'Brian', 1937, 'M', 519), +(46603, 'Merle', 1937, 'M', 518), +(46604, 'Orville', 1937, 'M', 516), +(46605, 'Myron', 1937, 'M', 514), +(46606, 'Pete', 1937, 'M', 510), +(46607, 'Jesus', 1937, 'M', 509), +(46608, 'Gregory', 1937, 'M', 507), +(46609, 'Grady', 1937, 'M', 503), +(46610, 'Malcolm', 1937, 'M', 501), +(46611, 'Eldon', 1937, 'M', 490), +(46612, 'Ruben', 1937, 'M', 489), +(46613, 'Loren', 1937, 'M', 486), +(46614, 'Pat', 1937, 'M', 483), +(46615, 'Dewey', 1937, 'M', 479), +(46616, 'Gerard', 1937, 'M', 478), +(46617, 'Elbert', 1937, 'M', 477), +(46618, 'Rufus', 1937, 'M', 475), +(46619, 'Sylvester', 1937, 'M', 475), +(46620, 'Mack', 1937, 'M', 471), +(46621, 'Ramon', 1937, 'M', 471), +(46622, 'Sammy', 1937, 'M', 470), +(46623, 'Aaron', 1937, 'M', 465), +(46624, 'Ross', 1937, 'M', 465), +(46625, 'Irvin', 1937, 'M', 454), +(46626, 'Ellis', 1937, 'M', 451), +(46627, 'Julian', 1937, 'M', 449), +(46628, 'Laurence', 1937, 'M', 448), +(46629, 'Isaac', 1937, 'M', 446), +(46630, 'Antonio', 1937, 'M', 445), +(46631, 'Sheldon', 1937, 'M', 436), +(46632, 'Teddy', 1937, 'M', 434), +(46633, 'Clark', 1937, 'M', 433), +(46634, 'Nathan', 1937, 'M', 433), +(46635, 'Neal', 1937, 'M', 430), +(46636, 'Ervin', 1937, 'M', 422), +(46637, 'Forrest', 1937, 'M', 420), +(46638, 'Boyd', 1937, 'M', 418), +(46639, 'Conrad', 1937, 'M', 418), +(46640, 'Angelo', 1937, 'M', 413), +(46641, 'Burton', 1937, 'M', 411), +(46642, 'Jerald', 1937, 'M', 411), +(46643, 'Owen', 1937, 'M', 411), +(46644, 'Dallas', 1937, 'M', 406), +(46645, 'Dwight', 1937, 'M', 406), +(46646, 'Kent', 1937, 'M', 405), +(46647, 'Felix', 1937, 'M', 397), +(46648, 'Wilfred', 1937, 'M', 397), +(46649, 'Nick', 1937, 'M', 395), +(46650, 'Reginald', 1937, 'M', 389), +(46651, 'Bert', 1937, 'M', 386), +(46652, 'Frankie', 1937, 'M', 383), +(46653, 'Aubrey', 1937, 'M', 377), +(46654, 'Darrel', 1937, 'M', 375), +(46655, 'Noel', 1937, 'M', 375), +(46656, 'Garland', 1937, 'M', 373), +(46657, 'Loyd', 1937, 'M', 372), +(46658, 'Harley', 1937, 'M', 364), +(46659, 'Preston', 1937, 'M', 360), +(46660, 'Percy', 1937, 'M', 356), +(46661, 'Randall', 1937, 'M', 355), +(46662, 'Woodrow', 1937, 'M', 355), +(46663, 'Wilson', 1937, 'M', 353), +(46664, 'Marlin', 1937, 'M', 345), +(46665, 'Rudy', 1937, 'M', 344), +(46666, 'Irving', 1937, 'M', 338), +(46667, 'Shirley', 1937, 'M', 337), +(46668, 'Norbert', 1937, 'M', 333), +(46669, 'Harlan', 1937, 'M', 332), +(46670, 'Louie', 1937, 'M', 332), +(46671, 'Craig', 1937, 'M', 330), +(46672, 'Elwood', 1937, 'M', 326), +(46673, 'Royce', 1937, 'M', 326), +(46674, 'Pedro', 1937, 'M', 324), +(46675, 'Emmett', 1937, 'M', 320), +(46676, 'Travis', 1937, 'M', 320), +(46677, 'Wade', 1937, 'M', 310), +(46678, 'Laverne', 1937, 'M', 305), +(46679, 'Johnie', 1937, 'M', 302), +(46680, 'Sammie', 1937, 'M', 302), +(46681, 'Eric', 1937, 'M', 301), +(46682, 'August', 1937, 'M', 300), +(46683, 'Randolph', 1937, 'M', 300), +(46684, 'Darwin', 1937, 'M', 299), +(46685, 'Francisco', 1937, 'M', 297), +(46686, 'Christopher', 1937, 'M', 294), +(46687, 'Grover', 1937, 'M', 294), +(46688, 'Kermit', 1937, 'M', 294), +(46689, 'Roberto', 1937, 'M', 293), +(46690, 'Garry', 1937, 'M', 292), +(46691, 'Phil', 1937, 'M', 290), +(46692, 'Irwin', 1937, 'M', 289), +(46693, 'Ned', 1937, 'M', 289), +(46694, 'Mary', 1937, 'M', 288), +(46695, 'Amos', 1937, 'M', 286), +(46696, 'Gale', 1937, 'M', 284), +(46697, 'Maynard', 1937, 'M', 280), +(46698, 'Cornelius', 1937, 'M', 279), +(46699, 'Carol', 1937, 'M', 278), +(46700, 'Moses', 1937, 'M', 278), +(46701, 'Emil', 1937, 'M', 275), +(46702, 'Grant', 1937, 'M', 275), +(46703, 'Otto', 1937, 'M', 275), +(46704, 'Mario', 1937, 'M', 272), +(46705, 'Alfonso', 1937, 'M', 270), +(46706, 'Millard', 1937, 'M', 265), +(46707, 'Ed', 1937, 'M', 264), +(46708, 'Edmond', 1937, 'M', 264), +(46709, 'Luis', 1937, 'M', 264), +(46710, 'Raul', 1937, 'M', 264), +(46711, 'Dominic', 1937, 'M', 259), +(46712, 'Delmar', 1937, 'M', 258), +(46713, 'Thurman', 1937, 'M', 256), +(46714, 'Merlin', 1937, 'M', 255), +(46715, 'Murray', 1937, 'M', 251), +(46716, 'Dominick', 1937, 'M', 250), +(46717, 'Stewart', 1937, 'M', 250), +(46718, 'Mitchell', 1937, 'M', 249), +(46719, 'Lionel', 1937, 'M', 247), +(46720, 'Cleveland', 1937, 'M', 246), +(46721, 'Terrence', 1937, 'M', 246), +(46722, 'Jan', 1937, 'M', 245), +(46723, 'Austin', 1937, 'M', 239), +(46724, 'Elton', 1937, 'M', 234), +(46725, 'Andy', 1937, 'M', 233), +(46726, 'Weldon', 1937, 'M', 233), +(46727, 'Norris', 1937, 'M', 232), +(46728, 'Elvin', 1937, 'M', 230), +(46729, 'Daryl', 1937, 'M', 229), +(46730, 'Will', 1937, 'M', 229), +(46731, 'Sanford', 1937, 'M', 228), +(46732, 'Alonzo', 1937, 'M', 226), +(46733, 'Marcus', 1937, 'M', 226), +(46734, 'Freddy', 1937, 'M', 225), +(46735, 'Adrian', 1937, 'M', 223), +(46736, 'Adam', 1937, 'M', 222), +(46737, 'Darryl', 1937, 'M', 222), +(46738, 'Wiley', 1937, 'M', 222), +(46739, 'Merrill', 1937, 'M', 221), +(46740, 'Rodger', 1937, 'M', 221), +(46741, 'Roscoe', 1937, 'M', 221), +(46742, 'Lamar', 1937, 'M', 220), +(46743, 'Melvyn', 1937, 'M', 220), +(46744, 'Gail', 1937, 'M', 218), +(46745, 'Jasper', 1937, 'M', 218), +(46746, 'Morton', 1937, 'M', 218), +(46747, 'Scott', 1937, 'M', 218), +(46748, 'Abraham', 1937, 'M', 217), +(46749, 'Ollie', 1937, 'M', 216), +(46750, 'Bradley', 1937, 'M', 215), +(46751, 'Carmen', 1937, 'M', 215), +(46752, 'Huey', 1937, 'M', 214), +(46753, 'Lorenzo', 1937, 'M', 212), +(46754, 'Odell', 1937, 'M', 212), +(46755, 'Elijah', 1937, 'M', 211), +(46756, 'Harrison', 1937, 'M', 211), +(46757, 'Barney', 1937, 'M', 209), +(46758, 'Al', 1937, 'M', 204), +(46759, 'Ken', 1937, 'M', 204), +(46760, 'Dwayne', 1937, 'M', 203), +(46761, 'Lavern', 1937, 'M', 203), +(46762, 'Reuben', 1937, 'M', 203), +(46763, 'Shelby', 1937, 'M', 203), +(46764, 'Rolland', 1937, 'M', 201), +(46765, 'Kenny', 1937, 'M', 200), +(46766, 'Clair', 1937, 'M', 198), +(46767, 'Denis', 1937, 'M', 198), +(46768, 'Chris', 1937, 'M', 197), +(46769, 'Emanuel', 1937, 'M', 197), +(46770, 'Erwin', 1937, 'M', 197), +(46771, 'Jonathan', 1937, 'M', 197), +(46772, 'Ricardo', 1937, 'M', 197), +(46773, 'Coy', 1937, 'M', 196), +(46774, 'Simon', 1937, 'M', 195), +(46775, 'Hollis', 1937, 'M', 194), +(46776, 'Monroe', 1937, 'M', 194), +(46777, 'Truman', 1937, 'M', 194), +(46778, 'Winston', 1937, 'M', 194), +(46779, 'Buford', 1937, 'M', 193), +(46780, 'Frederic', 1937, 'M', 193), +(46781, 'Van', 1937, 'M', 193), +(46782, 'Mervin', 1937, 'M', 192), +(46783, 'Monte', 1937, 'M', 192), +(46784, 'Adolph', 1937, 'M', 191), +(46785, 'Hal', 1937, 'M', 191), +(46786, 'Armand', 1937, 'M', 189), +(46787, 'Linwood', 1937, 'M', 189), +(46788, 'Charley', 1937, 'M', 188), +(46789, 'Clement', 1937, 'M', 188), +(46790, 'Roderick', 1937, 'M', 188), +(46791, 'Emory', 1937, 'M', 186), +(46792, 'Guadalupe', 1937, 'M', 186), +(46793, 'Nolan', 1937, 'M', 183), +(46794, 'Russel', 1937, 'M', 183), +(46795, 'Armando', 1937, 'M', 181), +(46796, 'Wilmer', 1937, 'M', 181), +(46797, 'Spencer', 1937, 'M', 180), +(46798, 'Alfredo', 1937, 'M', 178), +(46799, 'Kevin', 1937, 'M', 178), +(46800, 'Wilburn', 1937, 'M', 178), +(46801, 'Hershel', 1937, 'M', 177), +(46802, 'Rene', 1937, 'M', 176), +(46803, 'Lanny', 1937, 'M', 174), +(46804, 'Delmer', 1937, 'M', 172), +(46805, 'Gabriel', 1937, 'M', 172), +(46806, 'Jake', 1937, 'M', 172), +(46807, 'Mickey', 1937, 'M', 172), +(46808, 'Kennith', 1937, 'M', 171), +(46809, 'Fredric', 1937, 'M', 169), +(46810, 'Levi', 1937, 'M', 168), +(46811, 'Gerry', 1937, 'M', 167), +(46812, 'Sterling', 1937, 'M', 166), +(46813, 'Denver', 1937, 'M', 165), +(46814, 'Wilford', 1937, 'M', 164), +(46815, 'Tim', 1937, 'M', 163), +(46816, 'Cleo', 1937, 'M', 158), +(46817, 'Harris', 1937, 'M', 158), +(46818, 'Jackson', 1937, 'M', 158), +(46819, 'Winfred', 1937, 'M', 158), +(46820, 'Dudley', 1937, 'M', 157), +(46821, 'Carrol', 1937, 'M', 156), +(46822, 'Ernie', 1937, 'M', 156), +(46823, 'Jean', 1937, 'M', 156), +(46824, 'Jess', 1937, 'M', 156), +(46825, 'Alva', 1937, 'M', 155), +(46826, 'Hector', 1937, 'M', 155), +(46827, 'Elliott', 1937, 'M', 154), +(46828, 'Jeff', 1937, 'M', 153), +(46829, 'Vern', 1937, 'M', 153), +(46830, 'Fernando', 1937, 'M', 150), +(46831, 'Ward', 1937, 'M', 150), +(46832, 'Freeman', 1937, 'M', 147), +(46833, 'Miles', 1937, 'M', 147), +(46834, 'Dewayne', 1937, 'M', 146), +(46835, 'Terrance', 1937, 'M', 146), +(46836, 'Warner', 1937, 'M', 146), +(46837, 'Arlen', 1937, 'M', 145), +(46838, 'Basil', 1937, 'M', 145), +(46839, 'Earle', 1937, 'M', 145), +(46840, 'Gayle', 1937, 'M', 145), +(46841, 'Seymour', 1937, 'M', 145), +(46842, 'Barbara', 1937, 'M', 144), +(46843, 'Bernie', 1937, 'M', 144), +(46844, 'Eli', 1937, 'M', 144), +(46845, 'Gus', 1937, 'M', 144), +(46846, 'Miguel', 1937, 'M', 144), +(46847, 'Forest', 1937, 'M', 143), +(46848, 'Micheal', 1937, 'M', 143), +(46849, 'Noah', 1937, 'M', 143), +(46850, 'Milford', 1937, 'M', 142), +(46851, 'Salvador', 1937, 'M', 142), +(46852, 'Denny', 1937, 'M', 141), +(46853, 'Emery', 1937, 'M', 141), +(46854, 'Dalton', 1937, 'M', 140), +(46855, 'Arturo', 1937, 'M', 139), +(46856, 'Olin', 1937, 'M', 139), +(46857, 'Riley', 1937, 'M', 139), +(46858, 'Ronny', 1937, 'M', 139), +(46859, 'Galen', 1937, 'M', 138), +(46860, 'Jerrold', 1937, 'M', 137), +(46861, 'Ron', 1937, 'M', 137), +(46862, 'Solomon', 1937, 'M', 137), +(46863, 'Vance', 1937, 'M', 137), +(46864, 'Enrique', 1937, 'M', 136), +(46865, 'Errol', 1937, 'M', 136), +(46866, 'Lenard', 1937, 'M', 136), +(46867, 'Delano', 1937, 'M', 135), +(46868, 'Kurt', 1937, 'M', 135), +(46869, 'Booker', 1937, 'M', 134), +(46870, 'Pablo', 1937, 'M', 134), +(46871, 'Vito', 1937, 'M', 134), +(46872, 'Dana', 1937, 'M', 133), +(46873, 'Alden', 1937, 'M', 132), +(46874, 'Bryan', 1937, 'M', 132), +(46875, 'Herschel', 1937, 'M', 132), +(46876, 'Rogers', 1937, 'M', 132), +(46877, 'Royal', 1937, 'M', 131), +(46878, 'Bradford', 1937, 'M', 130), +(46879, 'Bud', 1937, 'M', 130), +(46880, 'Kay', 1937, 'M', 129), +(46881, 'Blaine', 1937, 'M', 128), +(46882, 'Elmo', 1937, 'M', 128), +(46883, 'Elroy', 1937, 'M', 128), +(46884, 'Rocco', 1937, 'M', 128), +(46885, 'Alberto', 1937, 'M', 127), +(46886, 'Burl', 1937, 'M', 127), +(46887, 'Connie', 1937, 'M', 126), +(46888, 'Jerold', 1937, 'M', 126), +(46889, 'Kelly', 1937, 'M', 126), +(46890, 'Normand', 1937, 'M', 125), +(46891, 'Anton', 1937, 'M', 124), +(46892, 'Gilberto', 1937, 'M', 124), +(46893, 'Rayford', 1937, 'M', 124), +(46894, 'Sonny', 1937, 'M', 124), +(46895, 'Tomas', 1937, 'M', 123), +(46896, 'Wilton', 1937, 'M', 123), +(46897, 'Alphonso', 1937, 'M', 122), +(46898, 'Betty', 1937, 'M', 122), +(46899, 'Odis', 1937, 'M', 122), +(46900, 'Ulysses', 1937, 'M', 122), +(46901, 'Everette', 1937, 'M', 121), +(46902, 'Thaddeus', 1937, 'M', 121), +(46903, 'Evan', 1937, 'M', 120), +(46904, 'Terence', 1937, 'M', 120), +(46905, 'Cletus', 1937, 'M', 119), +(46906, 'Arden', 1937, 'M', 118), +(46907, 'Dickie', 1937, 'M', 118), +(46908, 'Julio', 1937, 'M', 118), +(46909, 'Clay', 1937, 'M', 117), +(46910, 'Cyril', 1937, 'M', 117), +(46911, 'Davis', 1937, 'M', 117), +(46912, 'Buster', 1937, 'M', 116), +(46913, 'Claud', 1937, 'M', 116), +(46914, 'Emerson', 1937, 'M', 116), +(46915, 'Andre', 1937, 'M', 115), +(46916, 'Carmine', 1937, 'M', 115), +(46917, 'Rodolfo', 1937, 'M', 115), +(46918, 'Shelton', 1937, 'M', 115), +(46919, 'Gaylord', 1937, 'M', 114), +(46920, 'Isaiah', 1937, 'M', 114), +(46921, 'Luke', 1937, 'M', 113), +(46922, 'Olen', 1937, 'M', 113), +(46923, 'Saul', 1937, 'M', 113), +(46924, 'Elias', 1937, 'M', 112), +(46925, 'Pasquale', 1937, 'M', 112), +(46926, 'Eddy', 1937, 'M', 111), +(46927, 'Gearld', 1937, 'M', 111), +(46928, 'Milo', 1937, 'M', 111), +(46929, 'Barton', 1937, 'M', 110), +(46930, 'Silas', 1937, 'M', 110), +(46931, 'Columbus', 1937, 'M', 109), +(46932, 'Hoyt', 1937, 'M', 109), +(46933, 'Jeremiah', 1937, 'M', 109), +(46934, 'Domingo', 1937, 'M', 107), +(46935, 'Fletcher', 1937, 'M', 106), +(46936, 'Lyman', 1937, 'M', 106), +(46937, 'Rafael', 1937, 'M', 106), +(46938, 'Vaughn', 1937, 'M', 106), +(46939, 'Kyle', 1937, 'M', 105), +(46940, 'Dwain', 1937, 'M', 104), +(46941, 'Angel', 1937, 'M', 103), +(46942, 'Ernesto', 1937, 'M', 103), +(46943, 'Merlyn', 1937, 'M', 103), +(46944, 'Foster', 1937, 'M', 102), +(46945, 'Graham', 1937, 'M', 102), +(46946, 'Morgan', 1937, 'M', 102), +(46947, 'Boyce', 1937, 'M', 101), +(46948, 'Lacy', 1937, 'M', 101), +(46949, 'Orval', 1937, 'M', 101), +(46950, 'Raymon', 1937, 'M', 101), +(46951, 'Dewitt', 1937, 'M', 100), +(46952, 'Hiram', 1937, 'M', 100), +(46953, 'Mary', 1938, 'F', 56211), +(46954, 'Barbara', 1938, 'F', 39271), +(46955, 'Patricia', 1938, 'F', 27553), +(46956, 'Betty', 1938, 'F', 25502), +(46957, 'Shirley', 1938, 'F', 23770), +(46958, 'Carol', 1938, 'F', 19423), +(46959, 'Nancy', 1938, 'F', 18946), +(46960, 'Dorothy', 1938, 'F', 16344), +(46961, 'Margaret', 1938, 'F', 15327), +(46962, 'Joan', 1938, 'F', 14301), +(46963, 'Joyce', 1938, 'F', 12693), +(46964, 'Judith', 1938, 'F', 10874), +(46965, 'Helen', 1938, 'F', 10832), +(46966, 'Sandra', 1938, 'F', 10803), +(46967, 'Carolyn', 1938, 'F', 10585), +(46968, 'Janet', 1938, 'F', 9869), +(46969, 'Elizabeth', 1938, 'F', 9801), +(46970, 'Beverly', 1938, 'F', 9771), +(46971, 'Marilyn', 1938, 'F', 9745), +(46972, 'Donna', 1938, 'F', 9696), +(46973, 'Ruth', 1938, 'F', 9300), +(46974, 'Virginia', 1938, 'F', 9267), +(46975, 'Frances', 1938, 'F', 8919), +(46976, 'Janice', 1938, 'F', 8711), +(46977, 'Doris', 1938, 'F', 8603), +(46978, 'Martha', 1938, 'F', 8582), +(46979, 'Jean', 1938, 'F', 7763), +(46980, 'Phyllis', 1938, 'F', 7645), +(46981, 'Alice', 1938, 'F', 7487), +(46982, 'Sharon', 1938, 'F', 7244), +(46983, 'Linda', 1938, 'F', 7047), +(46984, 'Ann', 1938, 'F', 6989), +(46985, 'Lois', 1938, 'F', 6505), +(46986, 'Norma', 1938, 'F', 6368), +(46987, 'Peggy', 1938, 'F', 6343), +(46988, 'Gloria', 1938, 'F', 6301), +(46989, 'Marie', 1938, 'F', 5960), +(46990, 'Evelyn', 1938, 'F', 5687), +(46991, 'Rose', 1938, 'F', 5289), +(46992, 'Anna', 1938, 'F', 5139), +(46993, 'Judy', 1938, 'F', 4993), +(46994, 'Elaine', 1938, 'F', 4835), +(46995, 'Dolores', 1938, 'F', 4807), +(46996, 'Jane', 1938, 'F', 4787), +(46997, 'Geraldine', 1938, 'F', 4653), +(46998, 'Carole', 1938, 'F', 4615), +(46999, 'Annie', 1938, 'F', 4564), +(47000, 'Catherine', 1938, 'F', 4525), +(47001, 'Wanda', 1938, 'F', 4511), +(47002, 'Karen', 1938, 'F', 4508), +(47003, 'Marlene', 1938, 'F', 4473), +(47004, 'Mildred', 1938, 'F', 4441), +(47005, 'Marjorie', 1938, 'F', 4317), +(47006, 'Sally', 1938, 'F', 4276), +(47007, 'Patsy', 1938, 'F', 4257), +(47008, 'Sylvia', 1938, 'F', 4256), +(47009, 'Joanne', 1938, 'F', 4250), +(47010, 'Kathleen', 1938, 'F', 4229), +(47011, 'Louise', 1938, 'F', 4065), +(47012, 'Eleanor', 1938, 'F', 4049), +(47013, 'Ruby', 1938, 'F', 3939), +(47014, 'Loretta', 1938, 'F', 3910), +(47015, 'Arlene', 1938, 'F', 3891), +(47016, 'Diane', 1938, 'F', 3828), +(47017, 'Bonnie', 1938, 'F', 3773), +(47018, 'Rosalie', 1938, 'F', 3759), +(47019, 'Sarah', 1938, 'F', 3747), +(47020, 'Joann', 1938, 'F', 3708), +(47021, 'Jacqueline', 1938, 'F', 3634), +(47022, 'Charlotte', 1938, 'F', 3624), +(47023, 'Irene', 1938, 'F', 3557), +(47024, 'Susan', 1938, 'F', 3554), +(47025, 'Roberta', 1938, 'F', 3546), +(47026, 'Rita', 1938, 'F', 3357), +(47027, 'Darlene', 1938, 'F', 3319), +(47028, 'Delores', 1938, 'F', 3318), +(47029, 'Gail', 1938, 'F', 3216), +(47030, 'Jo', 1938, 'F', 3172), +(47031, 'June', 1938, 'F', 3142), +(47032, 'Juanita', 1938, 'F', 3128), +(47033, 'Kay', 1938, 'F', 3114), +(47034, 'Edna', 1938, 'F', 3083), +(47035, 'Josephine', 1938, 'F', 2979), +(47036, 'Anne', 1938, 'F', 2886), +(47037, 'Wilma', 1938, 'F', 2871), +(47038, 'Thelma', 1938, 'F', 2864), +(47039, 'Audrey', 1938, 'F', 2845), +(47040, 'Lillian', 1938, 'F', 2824), +(47041, 'Florence', 1938, 'F', 2805), +(47042, 'Ellen', 1938, 'F', 2804), +(47043, 'Jeanette', 1938, 'F', 2803), +(47044, 'Theresa', 1938, 'F', 2763), +(47045, 'Lorraine', 1938, 'F', 2741), +(47046, 'Ethel', 1938, 'F', 2726), +(47047, 'Rosemary', 1938, 'F', 2681), +(47048, 'Emma', 1938, 'F', 2667), +(47049, 'Clara', 1938, 'F', 2664), +(47050, 'Pauline', 1938, 'F', 2664), +(47051, 'Anita', 1938, 'F', 2637), +(47052, 'Grace', 1938, 'F', 2609), +(47053, 'Yvonne', 1938, 'F', 2607), +(47054, 'Edith', 1938, 'F', 2599), +(47055, 'Gladys', 1938, 'F', 2590), +(47056, 'Sue', 1938, 'F', 2590), +(47057, 'Katherine', 1938, 'F', 2574), +(47058, 'Lucille', 1938, 'F', 2478), +(47059, 'Julia', 1938, 'F', 2476), +(47060, 'Laura', 1938, 'F', 2443), +(47061, 'Margie', 1938, 'F', 2425), +(47062, 'Connie', 1938, 'F', 2407), +(47063, 'Hazel', 1938, 'F', 2334), +(47064, 'Bernice', 1938, 'F', 2287), +(47065, 'Eileen', 1938, 'F', 2283), +(47066, 'Kathryn', 1938, 'F', 2281), +(47067, 'Deanna', 1938, 'F', 2253), +(47068, 'Marcia', 1938, 'F', 2167), +(47069, 'Constance', 1938, 'F', 2160), +(47070, 'Marion', 1938, 'F', 2150), +(47071, 'Annette', 1938, 'F', 2149), +(47072, 'Esther', 1938, 'F', 2132), +(47073, 'Willie', 1938, 'F', 2019), +(47074, 'Maria', 1938, 'F', 2008), +(47075, 'Glenda', 1938, 'F', 1958), +(47076, 'Sara', 1938, 'F', 1949), +(47077, 'Beatrice', 1938, 'F', 1911), +(47078, 'Eva', 1938, 'F', 1904), +(47079, 'Bobbie', 1938, 'F', 1868), +(47080, 'Marian', 1938, 'F', 1866), +(47081, 'Christine', 1938, 'F', 1842), +(47082, 'Maxine', 1938, 'F', 1821), +(47083, 'Bertha', 1938, 'F', 1817), +(47084, 'Lillie', 1938, 'F', 1815), +(47085, 'Suzanne', 1938, 'F', 1807), +(47086, 'Myrna', 1938, 'F', 1801), +(47087, 'Vivian', 1938, 'F', 1798), +(47088, 'Sheila', 1938, 'F', 1784), +(47089, 'Elsie', 1938, 'F', 1775), +(47090, 'Georgia', 1938, 'F', 1761), +(47091, 'Billie', 1938, 'F', 1746), +(47092, 'Ella', 1938, 'F', 1728), +(47093, 'Ida', 1938, 'F', 1724), +(47094, 'Shelby', 1938, 'F', 1712), +(47095, 'Charlene', 1938, 'F', 1674), +(47096, 'Maureen', 1938, 'F', 1611), +(47097, 'Rebecca', 1938, 'F', 1574), +(47098, 'Rosa', 1938, 'F', 1568), +(47099, 'Alma', 1938, 'F', 1557), +(47100, 'Jeanne', 1938, 'F', 1552), +(47101, 'Pat', 1938, 'F', 1533), +(47102, 'Jessie', 1938, 'F', 1477), +(47103, 'Diana', 1938, 'F', 1466), +(47104, 'Nellie', 1938, 'F', 1454), +(47105, 'Mattie', 1938, 'F', 1442), +(47106, 'Lucy', 1938, 'F', 1427), +(47107, 'Bessie', 1938, 'F', 1418), +(47108, 'Vera', 1938, 'F', 1412), +(47109, 'Agnes', 1938, 'F', 1395), +(47110, 'Harriet', 1938, 'F', 1374), +(47111, 'Joy', 1938, 'F', 1372), +(47112, 'Cynthia', 1938, 'F', 1365), +(47113, 'Minnie', 1938, 'F', 1361), +(47114, 'Faye', 1938, 'F', 1322), +(47115, 'Paula', 1938, 'F', 1317), +(47116, 'Emily', 1938, 'F', 1309), +(47117, 'Rachel', 1938, 'F', 1279), +(47118, 'Naomi', 1938, 'F', 1242), +(47119, 'Dixie', 1938, 'F', 1229), +(47120, 'Maryann', 1938, 'F', 1212), +(47121, 'Gwendolyn', 1938, 'F', 1205), +(47122, 'Rosie', 1938, 'F', 1193), +(47123, 'Geneva', 1938, 'F', 1176), +(47124, 'Gertrude', 1938, 'F', 1167), +(47125, 'Leona', 1938, 'F', 1164), +(47126, 'Velma', 1938, 'F', 1160), +(47127, 'Patty', 1938, 'F', 1157), +(47128, 'Rosemarie', 1938, 'F', 1150), +(47129, 'Dora', 1938, 'F', 1134), +(47130, 'Cora', 1938, 'F', 1133), +(47131, 'Carrie', 1938, 'F', 1121), +(47132, 'Sonja', 1938, 'F', 1117), +(47133, 'Caroline', 1938, 'F', 1116), +(47134, 'Myrtle', 1938, 'F', 1115), +(47135, 'Mae', 1938, 'F', 1086), +(47136, 'Claire', 1938, 'F', 1074), +(47137, 'Jackie', 1938, 'F', 1062), +(47138, 'Jeannette', 1938, 'F', 1044), +(47139, 'Viola', 1938, 'F', 1039), +(47140, 'Priscilla', 1938, 'F', 1026), +(47141, 'Pearl', 1938, 'F', 1005), +(47142, 'Ramona', 1938, 'F', 999), +(47143, 'Nina', 1938, 'F', 972), +(47144, 'Lula', 1938, 'F', 970), +(47145, 'Violet', 1938, 'F', 959), +(47146, 'Alberta', 1938, 'F', 956), +(47147, 'Eunice', 1938, 'F', 941), +(47148, 'Deloris', 1938, 'F', 936), +(47149, 'Verna', 1938, 'F', 928), +(47150, 'Hattie', 1938, 'F', 918), +(47151, 'Lola', 1938, 'F', 895), +(47152, 'Stella', 1938, 'F', 876), +(47153, 'Bettie', 1938, 'F', 869), +(47154, 'Lena', 1938, 'F', 859), +(47155, 'Nora', 1938, 'F', 858), +(47156, 'Johnnie', 1938, 'F', 852), +(47157, 'Melba', 1938, 'F', 850), +(47158, 'Hilda', 1938, 'F', 849), +(47159, 'Madeline', 1938, 'F', 847), +(47160, 'Claudia', 1938, 'F', 837), +(47161, 'Marguerite', 1938, 'F', 825), +(47162, 'Dianne', 1938, 'F', 817), +(47163, 'Fannie', 1938, 'F', 803), +(47164, 'Gayle', 1938, 'F', 803), +(47165, 'Carmen', 1938, 'F', 793), +(47166, 'Susie', 1938, 'F', 792), +(47167, 'Ernestine', 1938, 'F', 790), +(47168, 'Daisy', 1938, 'F', 786), +(47169, 'Erma', 1938, 'F', 786), +(47170, 'Janie', 1938, 'F', 776), +(47171, 'Flora', 1938, 'F', 774), +(47172, 'Miriam', 1938, 'F', 768), +(47173, 'Irma', 1938, 'F', 765), +(47174, 'Sondra', 1938, 'F', 758), +(47175, 'Della', 1938, 'F', 748), +(47176, 'Ada', 1938, 'F', 745), +(47177, 'Bette', 1938, 'F', 741), +(47178, 'Jacquelyn', 1938, 'F', 741), +(47179, 'Antoinette', 1938, 'F', 739), +(47180, 'Iris', 1938, 'F', 730), +(47181, 'Marianne', 1938, 'F', 730), +(47182, 'Bettye', 1938, 'F', 728), +(47183, 'Myra', 1938, 'F', 724), +(47184, 'Lynn', 1938, 'F', 723), +(47185, 'Angela', 1938, 'F', 717), +(47186, 'Muriel', 1938, 'F', 706), +(47187, 'Colleen', 1938, 'F', 697), +(47188, 'Teresa', 1938, 'F', 696), +(47189, 'Beulah', 1938, 'F', 690), +(47190, 'Claudette', 1938, 'F', 688), +(47191, 'Genevieve', 1938, 'F', 686), +(47192, 'Regina', 1938, 'F', 685), +(47193, 'Jennie', 1938, 'F', 680), +(47194, 'Brenda', 1938, 'F', 677), +(47195, 'Lydia', 1938, 'F', 677), +(47196, 'Mamie', 1938, 'F', 677), +(47197, 'Mabel', 1938, 'F', 673), +(47198, 'Sherry', 1938, 'F', 673), +(47199, 'Marcella', 1938, 'F', 654), +(47200, 'Katie', 1938, 'F', 642), +(47201, 'Mable', 1938, 'F', 641), +(47202, 'Janis', 1938, 'F', 640), +(47203, 'Mona', 1938, 'F', 640), +(47204, 'Laverne', 1938, 'F', 637), +(47205, 'Inez', 1938, 'F', 623), +(47206, 'Marsha', 1938, 'F', 619); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(47207, 'Eula', 1938, 'F', 609), +(47208, 'Eloise', 1938, 'F', 608), +(47209, 'Julie', 1938, 'F', 600), +(47210, 'Lynne', 1938, 'F', 597), +(47211, 'Nadine', 1938, 'F', 595), +(47212, 'Victoria', 1938, 'F', 588), +(47213, 'Sallie', 1938, 'F', 583), +(47214, 'Maggie', 1938, 'F', 580), +(47215, 'Opal', 1938, 'F', 579), +(47216, 'Reba', 1938, 'F', 574), +(47217, 'Amelia', 1938, 'F', 570), +(47218, 'Nelda', 1938, 'F', 567), +(47219, 'Valerie', 1938, 'F', 550), +(47220, 'Cecilia', 1938, 'F', 549), +(47221, 'Henrietta', 1938, 'F', 545), +(47222, 'Freda', 1938, 'F', 543), +(47223, 'Veronica', 1938, 'F', 543), +(47224, 'Lynda', 1938, 'F', 540), +(47225, 'Blanche', 1938, 'F', 539), +(47226, 'Lila', 1938, 'F', 532), +(47227, 'Lou', 1938, 'F', 532), +(47228, 'Sadie', 1938, 'F', 529), +(47229, 'Frankie', 1938, 'F', 527), +(47230, 'Lorene', 1938, 'F', 515), +(47231, 'Cecelia', 1938, 'F', 514), +(47232, 'Rosetta', 1938, 'F', 511), +(47233, 'Jimmie', 1938, 'F', 509), +(47234, 'Fay', 1938, 'F', 496), +(47235, 'Nettie', 1938, 'F', 491), +(47236, 'Ina', 1938, 'F', 488), +(47237, 'Gretchen', 1938, 'F', 484), +(47238, 'Betsy', 1938, 'F', 480), +(47239, 'Rochelle', 1938, 'F', 478), +(47240, 'Dawn', 1938, 'F', 471), +(47241, 'Winifred', 1938, 'F', 471), +(47242, 'Jerry', 1938, 'F', 469), +(47243, 'Glenna', 1938, 'F', 463), +(47244, 'Etta', 1938, 'F', 461), +(47245, 'Estelle', 1938, 'F', 454), +(47246, 'Essie', 1938, 'F', 452), +(47247, 'Lee', 1938, 'F', 449), +(47248, 'Ollie', 1938, 'F', 449), +(47249, 'Imogene', 1938, 'F', 447), +(47250, 'Olivia', 1938, 'F', 446), +(47251, 'Gracie', 1938, 'F', 445), +(47252, 'Helene', 1938, 'F', 444), +(47253, 'Lavonne', 1938, 'F', 439), +(47254, 'Sonia', 1938, 'F', 429), +(47255, 'Andrea', 1938, 'F', 428), +(47256, 'Joanna', 1938, 'F', 427), +(47257, 'Dorthy', 1938, 'F', 422), +(47258, 'Ora', 1938, 'F', 415), +(47259, 'Celia', 1938, 'F', 413), +(47260, 'Deborah', 1938, 'F', 410), +(47261, 'Beverley', 1938, 'F', 407), +(47262, 'Beth', 1938, 'F', 406), +(47263, 'Natalie', 1938, 'F', 402), +(47264, 'Cheryl', 1938, 'F', 397), +(47265, 'Lenora', 1938, 'F', 390), +(47266, 'Addie', 1938, 'F', 389), +(47267, 'Mavis', 1938, 'F', 388), +(47268, 'Ruthie', 1938, 'F', 388), +(47269, 'Cleo', 1938, 'F', 387), +(47270, 'Earlene', 1938, 'F', 387), +(47271, 'Olga', 1938, 'F', 387), +(47272, 'Lela', 1938, 'F', 383), +(47273, 'Leola', 1938, 'F', 379), +(47274, 'Fern', 1938, 'F', 377), +(47275, 'Gwen', 1938, 'F', 377), +(47276, 'Leah', 1938, 'F', 376), +(47277, 'Bernadine', 1938, 'F', 375), +(47278, 'Iva', 1938, 'F', 374), +(47279, 'Josie', 1938, 'F', 373), +(47280, 'Adele', 1938, 'F', 370), +(47281, 'Jewel', 1938, 'F', 368), +(47282, 'Willa', 1938, 'F', 368), +(47283, 'Bernadette', 1938, 'F', 367), +(47284, 'Vicki', 1938, 'F', 367), +(47285, 'Bonita', 1938, 'F', 360), +(47286, 'Marlys', 1938, 'F', 360), +(47287, 'Rhoda', 1938, 'F', 360), +(47288, 'Sybil', 1938, 'F', 357), +(47289, 'Earnestine', 1938, 'F', 355), +(47290, 'Amy', 1938, 'F', 354), +(47291, 'Earline', 1938, 'F', 353), +(47292, 'Pearlie', 1938, 'F', 353), +(47293, 'Clarice', 1938, 'F', 352), +(47294, 'Polly', 1938, 'F', 351), +(47295, 'Isabel', 1938, 'F', 350), +(47296, 'Arline', 1938, 'F', 345), +(47297, 'Harriett', 1938, 'F', 345), +(47298, 'Lupe', 1938, 'F', 345), +(47299, 'Ilene', 1938, 'F', 343), +(47300, 'Jewell', 1938, 'F', 342), +(47301, 'Saundra', 1938, 'F', 341), +(47302, 'Nola', 1938, 'F', 337), +(47303, 'Jeannine', 1938, 'F', 336), +(47304, 'Estella', 1938, 'F', 333), +(47305, 'Lenore', 1938, 'F', 333), +(47306, 'Yolanda', 1938, 'F', 332), +(47307, 'Marva', 1938, 'F', 331), +(47308, 'Nell', 1938, 'F', 331), +(47309, 'Doreen', 1938, 'F', 330), +(47310, 'Lorna', 1938, 'F', 330), +(47311, 'Molly', 1938, 'F', 328), +(47312, 'Faith', 1938, 'F', 327), +(47313, 'Elva', 1938, 'F', 324), +(47314, 'Ola', 1938, 'F', 324), +(47315, 'Adrienne', 1938, 'F', 323), +(47316, 'Gay', 1938, 'F', 323), +(47317, 'Lora', 1938, 'F', 319), +(47318, 'Margo', 1938, 'F', 316), +(47319, 'Dorothea', 1938, 'F', 315), +(47320, 'Alicia', 1938, 'F', 313), +(47321, 'Lottie', 1938, 'F', 313), +(47322, 'Pamela', 1938, 'F', 313), +(47323, 'Cecile', 1938, 'F', 312), +(47324, 'Elnora', 1938, 'F', 312), +(47325, 'Angelina', 1938, 'F', 311), +(47326, 'Arleen', 1938, 'F', 311), +(47327, 'Carla', 1938, 'F', 311), +(47328, 'Janette', 1938, 'F', 308), +(47329, 'Marilynn', 1938, 'F', 308), +(47330, 'Melva', 1938, 'F', 308), +(47331, 'Camille', 1938, 'F', 307), +(47332, 'Francis', 1938, 'F', 305), +(47333, 'Rena', 1938, 'F', 303), +(47334, 'Effie', 1938, 'F', 302), +(47335, 'Tommie', 1938, 'F', 302), +(47336, 'Alta', 1938, 'F', 301), +(47337, 'Elinor', 1938, 'F', 301), +(47338, 'Marylou', 1938, 'F', 301), +(47339, 'Robbie', 1938, 'F', 301), +(47340, 'Ila', 1938, 'F', 299), +(47341, 'Sharron', 1938, 'F', 297), +(47342, 'Goldie', 1938, 'F', 296), +(47343, 'Lizzie', 1938, 'F', 294), +(47344, 'Luella', 1938, 'F', 293), +(47345, 'Christina', 1938, 'F', 291), +(47346, 'Renee', 1938, 'F', 289), +(47347, 'Dona', 1938, 'F', 287), +(47348, 'Francine', 1938, 'F', 287), +(47349, 'Cornelia', 1938, 'F', 281), +(47350, 'Laurel', 1938, 'F', 281), +(47351, 'Marietta', 1938, 'F', 278), +(47352, 'Carlene', 1938, 'F', 277), +(47353, 'Eddie', 1938, 'F', 277), +(47354, 'Elvira', 1938, 'F', 274), +(47355, 'James', 1938, 'F', 274), +(47356, 'May', 1938, 'F', 274), +(47357, 'Rosalee', 1938, 'F', 274), +(47358, 'Terry', 1938, 'F', 273), +(47359, 'Guadalupe', 1938, 'F', 270), +(47360, 'Jan', 1938, 'F', 269), +(47361, 'Monica', 1938, 'F', 269), +(47362, 'Nona', 1938, 'F', 269), +(47363, 'Kaye', 1938, 'F', 267), +(47364, 'Neva', 1938, 'F', 267), +(47365, 'Delia', 1938, 'F', 265), +(47366, 'Jill', 1938, 'F', 265), +(47367, 'Rosalind', 1938, 'F', 265), +(47368, 'Merle', 1938, 'F', 264), +(47369, 'Johanna', 1938, 'F', 261), +(47370, 'Virgie', 1938, 'F', 261), +(47371, 'Corinne', 1938, 'F', 256), +(47372, 'Noreen', 1938, 'F', 255), +(47373, 'Alyce', 1938, 'F', 254), +(47374, 'Shelba', 1938, 'F', 254), +(47375, 'Margarita', 1938, 'F', 252), +(47376, 'Mollie', 1938, 'F', 252), +(47377, 'Hope', 1938, 'F', 251), +(47378, 'Kathy', 1938, 'F', 246), +(47379, 'Sonya', 1938, 'F', 245), +(47380, 'Darla', 1938, 'F', 244), +(47381, 'Elma', 1938, 'F', 244), +(47382, 'Toni', 1938, 'F', 244), +(47383, 'Louella', 1938, 'F', 242), +(47384, 'Dollie', 1938, 'F', 240), +(47385, 'Joe', 1938, 'F', 239), +(47386, 'Adeline', 1938, 'F', 238), +(47387, 'Therese', 1938, 'F', 237), +(47388, 'Corrine', 1938, 'F', 236), +(47389, 'Denise', 1938, 'F', 236), +(47390, 'Eugenia', 1938, 'F', 236), +(47391, 'Angeline', 1938, 'F', 234), +(47392, 'Olive', 1938, 'F', 234), +(47393, 'Penny', 1938, 'F', 234), +(47394, 'Stephanie', 1938, 'F', 233), +(47395, 'Dolly', 1938, 'F', 232), +(47396, 'Deanne', 1938, 'F', 231), +(47397, 'Patti', 1938, 'F', 230), +(47398, 'Queen', 1938, 'F', 226), +(47399, 'Angie', 1938, 'F', 224), +(47400, 'Edwina', 1938, 'F', 223), +(47401, 'Freddie', 1938, 'F', 223), +(47402, 'Lilly', 1938, 'F', 223), +(47403, 'Rosella', 1938, 'F', 223), +(47404, 'Winnie', 1938, 'F', 223), +(47405, 'Reva', 1938, 'F', 222), +(47406, 'Margery', 1938, 'F', 219), +(47407, 'Annabelle', 1938, 'F', 218), +(47408, 'Robert', 1938, 'F', 218), +(47409, 'John', 1938, 'F', 216), +(47410, 'Millie', 1938, 'F', 216), +(47411, 'Avis', 1938, 'F', 214), +(47412, 'Susanne', 1938, 'F', 214), +(47413, 'Frieda', 1938, 'F', 213), +(47414, 'Greta', 1938, 'F', 212), +(47415, 'Letha', 1938, 'F', 212), +(47416, 'Bennie', 1938, 'F', 211), +(47417, 'Wilda', 1938, 'F', 210), +(47418, 'Carmela', 1938, 'F', 209), +(47419, 'Dale', 1938, 'F', 209), +(47420, 'Nannie', 1938, 'F', 209), +(47421, 'Jannie', 1938, 'F', 202), +(47422, 'Rosalyn', 1938, 'F', 199), +(47423, 'Odessa', 1938, 'F', 198), +(47424, 'Hannah', 1938, 'F', 197), +(47425, 'Antonia', 1938, 'F', 196), +(47426, 'Jenny', 1938, 'F', 196), +(47427, 'Lily', 1938, 'F', 195), +(47428, 'Zelma', 1938, 'F', 194), +(47429, 'Carmella', 1938, 'F', 193), +(47430, 'Meredith', 1938, 'F', 193), +(47431, 'Amanda', 1938, 'F', 192), +(47432, 'Eleanore', 1938, 'F', 192), +(47433, 'Bobby', 1938, 'F', 191), +(47434, 'Aurora', 1938, 'F', 190), +(47435, 'Leila', 1938, 'F', 190), +(47436, 'Lucile', 1938, 'F', 190), +(47437, 'Roseann', 1938, 'F', 189), +(47438, 'Selma', 1938, 'F', 188), +(47439, 'Penelope', 1938, 'F', 187), +(47440, 'Madelyn', 1938, 'F', 186), +(47441, 'Delois', 1938, 'F', 184), +(47442, 'Flossie', 1938, 'F', 184), +(47443, 'Rae', 1938, 'F', 184), +(47444, 'Jayne', 1938, 'F', 183), +(47445, 'Callie', 1938, 'F', 182), +(47446, 'Dianna', 1938, 'F', 182), +(47447, 'Lorena', 1938, 'F', 181), +(47448, 'Peggie', 1938, 'F', 181), +(47449, 'Sandy', 1938, 'F', 181), +(47450, 'Claudine', 1938, 'F', 180), +(47451, 'Becky', 1938, 'F', 178), +(47452, 'Ladonna', 1938, 'F', 178), +(47453, 'Sophie', 1938, 'F', 178), +(47454, 'Florine', 1938, 'F', 177), +(47455, 'Mercedes', 1938, 'F', 177), +(47456, 'Leslie', 1938, 'F', 176), +(47457, 'Gerry', 1938, 'F', 175), +(47458, 'Nita', 1938, 'F', 174), +(47459, 'Retha', 1938, 'F', 174), +(47460, 'Elouise', 1938, 'F', 173), +(47461, 'Freida', 1938, 'F', 173), +(47462, 'Twila', 1938, 'F', 173), +(47463, 'Justine', 1938, 'F', 171), +(47464, 'Maryanne', 1938, 'F', 170), +(47465, 'Vernell', 1938, 'F', 170), +(47466, 'Winona', 1938, 'F', 170), +(47467, 'Ardith', 1938, 'F', 169), +(47468, 'Consuelo', 1938, 'F', 169), +(47469, 'Corine', 1938, 'F', 169), +(47470, 'Ruthann', 1938, 'F', 169), +(47471, 'Helena', 1938, 'F', 168), +(47472, 'Marla', 1938, 'F', 168), +(47473, 'Sharlene', 1938, 'F', 168), +(47474, 'Lessie', 1938, 'F', 167), +(47475, 'Ophelia', 1938, 'F', 167), +(47476, 'Annetta', 1938, 'F', 166), +(47477, 'Eliza', 1938, 'F', 166), +(47478, 'Madeleine', 1938, 'F', 166), +(47479, 'Evangeline', 1938, 'F', 164), +(47480, 'Jeanine', 1938, 'F', 164), +(47481, 'Katharine', 1938, 'F', 164), +(47482, 'Roxie', 1938, 'F', 164), +(47483, 'Reta', 1938, 'F', 163), +(47484, 'Roma', 1938, 'F', 163), +(47485, 'Shelva', 1938, 'F', 163), +(47486, 'Belva', 1938, 'F', 162), +(47487, 'Isabelle', 1938, 'F', 161), +(47488, 'Lelia', 1938, 'F', 161), +(47489, 'Lucia', 1938, 'F', 161), +(47490, 'Emilie', 1938, 'F', 160), +(47491, 'Jolene', 1938, 'F', 160), +(47492, 'Roslyn', 1938, 'F', 159), +(47493, 'Loraine', 1938, 'F', 158), +(47494, 'Marlyn', 1938, 'F', 158), +(47495, 'Bertie', 1938, 'F', 157), +(47496, 'Carroll', 1938, 'F', 157), +(47497, 'Lucinda', 1938, 'F', 157), +(47498, 'Rowena', 1938, 'F', 157), +(47499, 'Toby', 1938, 'F', 157), +(47500, 'Darleen', 1938, 'F', 155), +(47501, 'Elena', 1938, 'F', 154), +(47502, 'Sheryl', 1938, 'F', 154), +(47503, 'Dee', 1938, 'F', 153), +(47504, 'Allie', 1938, 'F', 152), +(47505, 'Gale', 1938, 'F', 152), +(47506, 'Jeannie', 1938, 'F', 152), +(47507, 'Matilda', 1938, 'F', 152), +(47508, 'Dana', 1938, 'F', 151), +(47509, 'Pansy', 1938, 'F', 151), +(47510, 'Phoebe', 1938, 'F', 151), +(47511, 'Georgie', 1938, 'F', 150), +(47512, 'Madonna', 1938, 'F', 150), +(47513, 'Caryl', 1938, 'F', 148), +(47514, 'Lorine', 1938, 'F', 148), +(47515, 'Treva', 1938, 'F', 148), +(47516, 'Concetta', 1938, 'F', 147), +(47517, 'Leta', 1938, 'F', 146), +(47518, 'Theodora', 1938, 'F', 146), +(47519, 'Carolee', 1938, 'F', 145), +(47520, 'Celestine', 1938, 'F', 145), +(47521, 'Zelda', 1938, 'F', 145), +(47522, 'Aileen', 1938, 'F', 144), +(47523, 'Charles', 1938, 'F', 144), +(47524, 'Gearldine', 1938, 'F', 144), +(47525, 'Ardis', 1938, 'F', 143), +(47526, 'Clare', 1938, 'F', 143), +(47527, 'Maryjane', 1938, 'F', 143), +(47528, 'Maude', 1938, 'F', 142), +(47529, 'George', 1938, 'F', 141), +(47530, 'Nan', 1938, 'F', 141), +(47531, 'Carrol', 1938, 'F', 140), +(47532, 'Charlie', 1938, 'F', 140), +(47533, 'Judie', 1938, 'F', 140), +(47534, 'Leota', 1938, 'F', 140), +(47535, 'Pearline', 1938, 'F', 140), +(47536, 'Dottie', 1938, 'F', 139), +(47537, 'Ester', 1938, 'F', 139), +(47538, 'Delphine', 1938, 'F', 138), +(47539, 'Ginger', 1938, 'F', 138), +(47540, 'Margot', 1938, 'F', 138), +(47541, 'Sherrill', 1938, 'F', 138), +(47542, 'William', 1938, 'F', 138), +(47543, 'Dorene', 1938, 'F', 137), +(47544, 'Jeanie', 1938, 'F', 137), +(47545, 'Hester', 1938, 'F', 136), +(47546, 'Kitty', 1938, 'F', 136), +(47547, 'Marjory', 1938, 'F', 135), +(47548, 'Alene', 1938, 'F', 134), +(47549, 'Aline', 1938, 'F', 134), +(47550, 'Doretha', 1938, 'F', 134), +(47551, 'Verla', 1938, 'F', 134), +(47552, 'Sammie', 1938, 'F', 132), +(47553, 'Vonda', 1938, 'F', 132), +(47554, 'Elisabeth', 1938, 'F', 130), +(47555, 'Wendy', 1938, 'F', 130), +(47556, 'Donnie', 1938, 'F', 129), +(47557, 'Iona', 1938, 'F', 128), +(47558, 'Marilee', 1938, 'F', 128), +(47559, 'Syble', 1938, 'F', 128), +(47560, 'Ione', 1938, 'F', 127), +(47561, 'Delma', 1938, 'F', 126), +(47562, 'Velda', 1938, 'F', 126), +(47563, 'Elsa', 1938, 'F', 125), +(47564, 'Ima', 1938, 'F', 125), +(47565, 'Esperanza', 1938, 'F', 124), +(47566, 'Beryl', 1938, 'F', 122), +(47567, 'Dorris', 1938, 'F', 122), +(47568, 'Janelle', 1938, 'F', 122), +(47569, 'Trudy', 1938, 'F', 122), +(47570, 'Gussie', 1938, 'F', 121), +(47571, 'Lorelei', 1938, 'F', 121), +(47572, 'Richard', 1938, 'F', 121), +(47573, 'Rosanne', 1938, 'F', 121), +(47574, 'Shirlee', 1938, 'F', 121), +(47575, 'Celeste', 1938, 'F', 120), +(47576, 'Harriette', 1938, 'F', 120), +(47577, 'Lauretta', 1938, 'F', 120), +(47578, 'Leora', 1938, 'F', 120), +(47579, 'Minerva', 1938, 'F', 120), +(47580, 'Pattie', 1938, 'F', 120), +(47581, 'Althea', 1938, 'F', 119), +(47582, 'Germaine', 1938, 'F', 119), +(47583, 'Oma', 1938, 'F', 119), +(47584, 'Zella', 1938, 'F', 119), +(47585, 'Lynette', 1938, 'F', 118), +(47586, 'Shirlene', 1938, 'F', 118), +(47587, 'Adelaide', 1938, 'F', 117), +(47588, 'Nedra', 1938, 'F', 117), +(47589, 'Petra', 1938, 'F', 117), +(47590, 'Birdie', 1938, 'F', 116), +(47591, 'Edythe', 1938, 'F', 116), +(47592, 'Iola', 1938, 'F', 115), +(47593, 'Louisa', 1938, 'F', 115), +(47594, 'Madge', 1938, 'F', 115), +(47595, 'Felicia', 1938, 'F', 114), +(47596, 'Julianne', 1938, 'F', 113), +(47597, 'Lavon', 1938, 'F', 113), +(47598, 'Millicent', 1938, 'F', 113), +(47599, 'Jerrie', 1938, 'F', 112), +(47600, 'Libby', 1938, 'F', 112), +(47601, 'Lona', 1938, 'F', 112), +(47602, 'Dian', 1938, 'F', 111), +(47603, 'Hellen', 1938, 'F', 111), +(47604, 'Jaunita', 1938, 'F', 111), +(47605, 'Margret', 1938, 'F', 110), +(47606, 'Maurine', 1938, 'F', 110), +(47607, 'Una', 1938, 'F', 110), +(47608, 'Valeria', 1938, 'F', 110), +(47609, 'Georgiana', 1938, 'F', 109), +(47610, 'Marianna', 1938, 'F', 109), +(47611, 'Alfreda', 1938, 'F', 108), +(47612, 'Allene', 1938, 'F', 108), +(47613, 'Aurelia', 1938, 'F', 108), +(47614, 'Berniece', 1938, 'F', 108), +(47615, 'Georgianna', 1938, 'F', 108), +(47616, 'Melinda', 1938, 'F', 108), +(47617, 'Wilhelmina', 1938, 'F', 108), +(47618, 'Camilla', 1938, 'F', 107), +(47619, 'Elise', 1938, 'F', 107), +(47620, 'Maudie', 1938, 'F', 107), +(47621, 'Tina', 1938, 'F', 107), +(47622, 'Maryellen', 1938, 'F', 106), +(47623, 'Rubye', 1938, 'F', 106), +(47624, 'Lue', 1938, 'F', 105), +(47625, 'Nanette', 1938, 'F', 105), +(47626, 'Elida', 1938, 'F', 104), +(47627, 'Karol', 1938, 'F', 104), +(47628, 'Robin', 1938, 'F', 104), +(47629, 'Ursula', 1938, 'F', 104), +(47630, 'Dortha', 1938, 'F', 103), +(47631, 'Jacquelin', 1938, 'F', 103), +(47632, 'Myrtis', 1938, 'F', 103), +(47633, 'Tillie', 1938, 'F', 102), +(47634, 'Carolina', 1938, 'F', 101), +(47635, 'Dorcas', 1938, 'F', 101), +(47636, 'Karin', 1938, 'F', 101), +(47637, 'Leilani', 1938, 'F', 101), +(47638, 'Marge', 1938, 'F', 101), +(47639, 'Alva', 1938, 'F', 100), +(47640, 'Cleta', 1938, 'F', 100), +(47641, 'Isabella', 1938, 'F', 100), +(47642, 'Marylin', 1938, 'F', 100), +(47643, 'Oralia', 1938, 'F', 100), +(47644, 'Verda', 1938, 'F', 100), +(47645, 'Robert', 1938, 'M', 62262), +(47646, 'James', 1938, 'M', 59092), +(47647, 'John', 1938, 'M', 50507), +(47648, 'William', 1938, 'M', 42421), +(47649, 'Richard', 1938, 'M', 34379), +(47650, 'Charles', 1938, 'M', 31133), +(47651, 'Donald', 1938, 'M', 26659), +(47652, 'David', 1938, 'M', 22990), +(47653, 'Thomas', 1938, 'M', 21373), +(47654, 'Ronald', 1938, 'M', 20292), +(47655, 'George', 1938, 'M', 18433), +(47656, 'Joseph', 1938, 'M', 17738), +(47657, 'Edward', 1938, 'M', 14543), +(47658, 'Kenneth', 1938, 'M', 14397), +(47659, 'Paul', 1938, 'M', 13357), +(47660, 'Larry', 1938, 'M', 12384), +(47661, 'Jerry', 1938, 'M', 12168), +(47662, 'Frank', 1938, 'M', 10255), +(47663, 'Gerald', 1938, 'M', 9969), +(47664, 'Raymond', 1938, 'M', 9729), +(47665, 'Michael', 1938, 'M', 9079), +(47666, 'Gary', 1938, 'M', 8855), +(47667, 'Harold', 1938, 'M', 8552), +(47668, 'Billy', 1938, 'M', 8244), +(47669, 'Jack', 1938, 'M', 8137), +(47670, 'Walter', 1938, 'M', 7558), +(47671, 'Bobby', 1938, 'M', 7495), +(47672, 'Joe', 1938, 'M', 7438), +(47673, 'Carl', 1938, 'M', 6843), +(47674, 'Henry', 1938, 'M', 6560), +(47675, 'Roger', 1938, 'M', 6555), +(47676, 'Arthur', 1938, 'M', 6520), +(47677, 'Eugene', 1938, 'M', 6112), +(47678, 'Willie', 1938, 'M', 6084), +(47679, 'Ralph', 1938, 'M', 6017), +(47680, 'Lawrence', 1938, 'M', 5870), +(47681, 'Albert', 1938, 'M', 5792), +(47682, 'Fred', 1938, 'M', 5766), +(47683, 'Daniel', 1938, 'M', 5580), +(47684, 'Wayne', 1938, 'M', 5225), +(47685, 'Roy', 1938, 'M', 5037), +(47686, 'Howard', 1938, 'M', 5016), +(47687, 'Norman', 1938, 'M', 4950), +(47688, 'Harry', 1938, 'M', 4822), +(47689, 'Jimmy', 1938, 'M', 4730), +(47690, 'Anthony', 1938, 'M', 4686), +(47691, 'Louis', 1938, 'M', 4390), +(47692, 'Peter', 1938, 'M', 4295), +(47693, 'Dennis', 1938, 'M', 4237), +(47694, 'Earl', 1938, 'M', 4008), +(47695, 'Francis', 1938, 'M', 3949), +(47696, 'Don', 1938, 'M', 3899), +(47697, 'Marvin', 1938, 'M', 3899), +(47698, 'Melvin', 1938, 'M', 3818), +(47699, 'Ernest', 1938, 'M', 3707), +(47700, 'Dale', 1938, 'M', 3687), +(47701, 'Leonard', 1938, 'M', 3665), +(47702, 'Clarence', 1938, 'M', 3634), +(47703, 'Stanley', 1938, 'M', 3542), +(47704, 'Douglas', 1938, 'M', 3509), +(47705, 'Leroy', 1938, 'M', 3492), +(47706, 'Samuel', 1938, 'M', 3245), +(47707, 'Johnny', 1938, 'M', 3195), +(47708, 'Philip', 1938, 'M', 3172), +(47709, 'Gene', 1938, 'M', 3149), +(47710, 'Bruce', 1938, 'M', 3128), +(47711, 'Bill', 1938, 'M', 3112), +(47712, 'Herbert', 1938, 'M', 3013), +(47713, 'Alfred', 1938, 'M', 3008), +(47714, 'Russell', 1938, 'M', 2948), +(47715, 'Frederick', 1938, 'M', 2936), +(47716, 'Ray', 1938, 'M', 2880), +(47717, 'Allen', 1938, 'M', 2832), +(47718, 'Stephen', 1938, 'M', 2725), +(47719, 'Bernard', 1938, 'M', 2712), +(47720, 'Jimmie', 1938, 'M', 2694), +(47721, 'Tommy', 1938, 'M', 2665), +(47722, 'Gordon', 1938, 'M', 2659), +(47723, 'Eddie', 1938, 'M', 2613), +(47724, 'Lee', 1938, 'M', 2574), +(47725, 'Jim', 1938, 'M', 2498), +(47726, 'Andrew', 1938, 'M', 2407), +(47727, 'Glenn', 1938, 'M', 2369), +(47728, 'Theodore', 1938, 'M', 2361), +(47729, 'Leon', 1938, 'M', 2353), +(47730, 'Terry', 1938, 'M', 2335), +(47731, 'Martin', 1938, 'M', 2311), +(47732, 'Patrick', 1938, 'M', 2290), +(47733, 'Clifford', 1938, 'M', 2274), +(47734, 'Edwin', 1938, 'M', 2247), +(47735, 'Alan', 1938, 'M', 2240), +(47736, 'Lloyd', 1938, 'M', 2215), +(47737, 'Jerome', 1938, 'M', 2207), +(47738, 'Bob', 1938, 'M', 2204), +(47739, 'Phillip', 1938, 'M', 2155), +(47740, 'Floyd', 1938, 'M', 2148), +(47741, 'Clyde', 1938, 'M', 2131), +(47742, 'Alvin', 1938, 'M', 2061), +(47743, 'Harvey', 1938, 'M', 2049), +(47744, 'Franklin', 1938, 'M', 2019), +(47745, 'Curtis', 1938, 'M', 2003), +(47746, 'Warren', 1938, 'M', 1998), +(47747, 'Vernon', 1938, 'M', 1956), +(47748, 'Leo', 1938, 'M', 1950), +(47749, 'Jackie', 1938, 'M', 1942), +(47750, 'Tom', 1938, 'M', 1931), +(47751, 'Jesse', 1938, 'M', 1906), +(47752, 'Herman', 1938, 'M', 1899), +(47753, 'Lewis', 1938, 'M', 1882), +(47754, 'Vincent', 1938, 'M', 1833), +(47755, 'Arnold', 1938, 'M', 1819), +(47756, 'Charlie', 1938, 'M', 1802), +(47757, 'Ronnie', 1938, 'M', 1641), +(47758, 'Duane', 1938, 'M', 1615), +(47759, 'Lester', 1938, 'M', 1603), +(47760, 'Gilbert', 1938, 'M', 1596), +(47761, 'Victor', 1938, 'M', 1562), +(47762, 'Cecil', 1938, 'M', 1558), +(47763, 'Allan', 1938, 'M', 1541), +(47764, 'Keith', 1938, 'M', 1535), +(47765, 'Glen', 1938, 'M', 1462), +(47766, 'Johnnie', 1938, 'M', 1455), +(47767, 'Calvin', 1938, 'M', 1453), +(47768, 'Roland', 1938, 'M', 1428), +(47769, 'Benjamin', 1938, 'M', 1414), +(47770, 'Jon', 1938, 'M', 1408), +(47771, 'Milton', 1938, 'M', 1397), +(47772, 'Darrell', 1938, 'M', 1354), +(47773, 'Dean', 1938, 'M', 1337), +(47774, 'Elmer', 1938, 'M', 1326), +(47775, 'Freddie', 1938, 'M', 1310), +(47776, 'Claude', 1938, 'M', 1309), +(47777, 'Rodney', 1938, 'M', 1301), +(47778, 'Joel', 1938, 'M', 1259), +(47779, 'Leslie', 1938, 'M', 1247), +(47780, 'Chester', 1938, 'M', 1235), +(47781, 'Danny', 1938, 'M', 1209), +(47782, 'Jay', 1938, 'M', 1181), +(47783, 'Wallace', 1938, 'M', 1176), +(47784, 'Max', 1938, 'M', 1163), +(47785, 'Jose', 1938, 'M', 1159), +(47786, 'Sam', 1938, 'M', 1159), +(47787, 'Maurice', 1938, 'M', 1152), +(47788, 'Manuel', 1938, 'M', 1144), +(47789, 'Marion', 1938, 'M', 1140), +(47790, 'Hugh', 1938, 'M', 1121), +(47791, 'Ted', 1938, 'M', 1111), +(47792, 'Willard', 1938, 'M', 1094), +(47793, 'Steve', 1938, 'M', 1077), +(47794, 'Wesley', 1938, 'M', 1072), +(47795, 'Neil', 1938, 'M', 1066), +(47796, 'Virgil', 1938, 'M', 1066), +(47797, 'Tony', 1938, 'M', 1057), +(47798, 'Mike', 1938, 'M', 1053), +(47799, 'Barry', 1938, 'M', 1042), +(47800, 'Dan', 1938, 'M', 1039), +(47801, 'Edgar', 1938, 'M', 1029), +(47802, 'Oscar', 1938, 'M', 1023), +(47803, 'Everett', 1938, 'M', 1000), +(47804, 'Lonnie', 1938, 'M', 997), +(47805, 'Nicholas', 1938, 'M', 987), +(47806, 'Karl', 1938, 'M', 985), +(47807, 'Jessie', 1938, 'M', 970), +(47808, 'Lowell', 1938, 'M', 965), +(47809, 'Dick', 1938, 'M', 936), +(47810, 'Mark', 1938, 'M', 902), +(47811, 'Timothy', 1938, 'M', 883), +(47812, 'Sidney', 1938, 'M', 875), +(47813, 'Delbert', 1938, 'M', 874), +(47814, 'Bennie', 1938, 'M', 868), +(47815, 'Homer', 1938, 'M', 855), +(47816, 'Ben', 1938, 'M', 846), +(47817, 'Wilbur', 1938, 'M', 842), +(47818, 'Morris', 1938, 'M', 839), +(47819, 'Luther', 1938, 'M', 829), +(47820, 'Carroll', 1938, 'M', 827), +(47821, 'Earnest', 1938, 'M', 827), +(47822, 'Hubert', 1938, 'M', 824), +(47823, 'Benny', 1938, 'M', 822), +(47824, 'Marshall', 1938, 'M', 819), +(47825, 'Lynn', 1938, 'M', 809), +(47826, 'Nelson', 1938, 'M', 795), +(47827, 'Lyle', 1938, 'M', 787), +(47828, 'Steven', 1938, 'M', 773), +(47829, 'Alton', 1938, 'M', 765), +(47830, 'Nathaniel', 1938, 'M', 748), +(47831, 'Willis', 1938, 'M', 733), +(47832, 'Horace', 1938, 'M', 722), +(47833, 'Guy', 1938, 'M', 719), +(47834, 'Otis', 1938, 'M', 718), +(47835, 'Billie', 1938, 'M', 685), +(47836, 'Rudolph', 1938, 'M', 683), +(47837, 'Alexander', 1938, 'M', 665), +(47838, 'Fredrick', 1938, 'M', 664), +(47839, 'Roosevelt', 1938, 'M', 663), +(47840, 'Clinton', 1938, 'M', 657), +(47841, 'Clifton', 1938, 'M', 648), +(47842, 'Wilbert', 1938, 'M', 648), +(47843, 'Stuart', 1938, 'M', 642), +(47844, 'Juan', 1938, 'M', 640), +(47845, 'Clayton', 1938, 'M', 639), +(47846, 'Rex', 1938, 'M', 627), +(47847, 'Dave', 1938, 'M', 626), +(47848, 'Brian', 1938, 'M', 609), +(47849, 'Matthew', 1938, 'M', 607), +(47850, 'Alex', 1938, 'M', 603), +(47851, 'Donnie', 1938, 'M', 596), +(47852, 'Doyle', 1938, 'M', 585), +(47853, 'Leland', 1938, 'M', 585), +(47854, 'Carlos', 1938, 'M', 583), +(47855, 'Archie', 1938, 'M', 580), +(47856, 'Myron', 1938, 'M', 580), +(47857, 'Perry', 1938, 'M', 580), +(47858, 'Wendell', 1938, 'M', 580), +(47859, 'Loren', 1938, 'M', 574), +(47860, 'Oliver', 1938, 'M', 568), +(47861, 'Julius', 1938, 'M', 555), +(47862, 'Dallas', 1938, 'M', 553), +(47863, 'Ira', 1938, 'M', 553), +(47864, 'Bobbie', 1938, 'M', 545), +(47865, 'Troy', 1938, 'M', 545), +(47866, 'Malcolm', 1938, 'M', 541), +(47867, 'Gregory', 1938, 'M', 536), +(47868, 'Carlton', 1938, 'M', 535), +(47869, 'Gerard', 1938, 'M', 535), +(47870, 'Salvatore', 1938, 'M', 530), +(47871, 'Ivan', 1938, 'M', 526), +(47872, 'Merle', 1938, 'M', 525), +(47873, 'Buddy', 1938, 'M', 521), +(47874, 'Sherman', 1938, 'M', 521), +(47875, 'Junior', 1938, 'M', 516), +(47876, 'Nathan', 1938, 'M', 516), +(47877, 'Byron', 1938, 'M', 515), +(47878, 'Edmund', 1938, 'M', 513), +(47879, 'Pete', 1938, 'M', 513), +(47880, 'Tommie', 1938, 'M', 510), +(47881, 'Sylvester', 1938, 'M', 503), +(47882, 'Dewey', 1938, 'M', 501), +(47883, 'Sammy', 1938, 'M', 497), +(47884, 'Clark', 1938, 'M', 487), +(47885, 'Ervin', 1938, 'M', 487), +(47886, 'Jacob', 1938, 'M', 487), +(47887, 'Antonio', 1938, 'M', 484), +(47888, 'Rudy', 1938, 'M', 480), +(47889, 'Laurence', 1938, 'M', 479), +(47890, 'Ross', 1938, 'M', 479), +(47891, 'Aaron', 1938, 'M', 477), +(47892, 'Ellis', 1938, 'M', 477), +(47893, 'Jesus', 1938, 'M', 473), +(47894, 'Elbert', 1938, 'M', 472), +(47895, 'Grady', 1938, 'M', 471), +(47896, 'Darrel', 1938, 'M', 467), +(47897, 'Isaac', 1938, 'M', 462), +(47898, 'Mack', 1938, 'M', 459), +(47899, 'Eldon', 1938, 'M', 456), +(47900, 'Teddy', 1938, 'M', 449), +(47901, 'Orville', 1938, 'M', 446), +(47902, 'Ramon', 1938, 'M', 445), +(47903, 'Ruben', 1938, 'M', 445), +(47904, 'Rufus', 1938, 'M', 445), +(47905, 'Neal', 1938, 'M', 444), +(47906, 'Conrad', 1938, 'M', 438), +(47907, 'Sheldon', 1938, 'M', 438), +(47908, 'Dwight', 1938, 'M', 435), +(47909, 'Kent', 1938, 'M', 435), +(47910, 'Noel', 1938, 'M', 425), +(47911, 'Julian', 1938, 'M', 424), +(47912, 'Jerald', 1938, 'M', 419), +(47913, 'Pat', 1938, 'M', 419), +(47914, 'Irvin', 1938, 'M', 414), +(47915, 'Boyd', 1938, 'M', 413), +(47916, 'Randall', 1938, 'M', 411), +(47917, 'Reginald', 1938, 'M', 409), +(47918, 'Owen', 1938, 'M', 406), +(47919, 'Wilfred', 1938, 'M', 404), +(47920, 'Woodrow', 1938, 'M', 404), +(47921, 'Forrest', 1938, 'M', 403), +(47922, 'Nick', 1938, 'M', 400), +(47923, 'Felix', 1938, 'M', 393), +(47924, 'Wilson', 1938, 'M', 390), +(47925, 'Aubrey', 1938, 'M', 388), +(47926, 'Burton', 1938, 'M', 384), +(47927, 'Harlan', 1938, 'M', 379), +(47928, 'Angelo', 1938, 'M', 376), +(47929, 'Garland', 1938, 'M', 373), +(47930, 'Eric', 1938, 'M', 370), +(47931, 'Frankie', 1938, 'M', 370), +(47932, 'Garry', 1938, 'M', 368), +(47933, 'Bert', 1938, 'M', 359), +(47934, 'Loyd', 1938, 'M', 355), +(47935, 'Travis', 1938, 'M', 354), +(47936, 'Percy', 1938, 'M', 350), +(47937, 'Harley', 1938, 'M', 348), +(47938, 'Sammie', 1938, 'M', 348), +(47939, 'Marlin', 1938, 'M', 342), +(47940, 'Darryl', 1938, 'M', 341), +(47941, 'Darwin', 1938, 'M', 338), +(47942, 'Grover', 1938, 'M', 336), +(47943, 'Norbert', 1938, 'M', 335), +(47944, 'Royce', 1938, 'M', 332), +(47945, 'Preston', 1938, 'M', 331), +(47946, 'Randolph', 1938, 'M', 328), +(47947, 'Craig', 1938, 'M', 322), +(47948, 'Emil', 1938, 'M', 322), +(47949, 'Emmett', 1938, 'M', 322), +(47950, 'Irving', 1938, 'M', 322), +(47951, 'Louie', 1938, 'M', 322), +(47952, 'Jan', 1938, 'M', 317), +(47953, 'Elwood', 1938, 'M', 315), +(47954, 'Luis', 1938, 'M', 311), +(47955, 'Terrence', 1938, 'M', 311), +(47956, 'Phil', 1938, 'M', 310), +(47957, 'Christopher', 1938, 'M', 309), +(47958, 'Wade', 1938, 'M', 306), +(47959, 'Raul', 1938, 'M', 303), +(47960, 'Amos', 1938, 'M', 299), +(47961, 'Francisco', 1938, 'M', 299), +(47962, 'Kermit', 1938, 'M', 299), +(47963, 'Ned', 1938, 'M', 298), +(47964, 'Pedro', 1938, 'M', 298), +(47965, 'Mario', 1938, 'M', 297), +(47966, 'Rodger', 1938, 'M', 295), +(47967, 'Melvyn', 1938, 'M', 293), +(47968, 'Gale', 1938, 'M', 292), +(47969, 'Alfonso', 1938, 'M', 291), +(47970, 'Roberto', 1938, 'M', 290), +(47971, 'Stewart', 1938, 'M', 290), +(47972, 'Mitchell', 1938, 'M', 287), +(47973, 'Grant', 1938, 'M', 285), +(47974, 'Laverne', 1938, 'M', 285), +(47975, 'Merlin', 1938, 'M', 285), +(47976, 'Mary', 1938, 'M', 284), +(47977, 'Lionel', 1938, 'M', 280), +(47978, 'Cornelius', 1938, 'M', 279), +(47979, 'Maynard', 1938, 'M', 276), +(47980, 'Otto', 1938, 'M', 271), +(47981, 'Carol', 1938, 'M', 270), +(47982, 'Tim', 1938, 'M', 270), +(47983, 'Lance', 1938, 'M', 267), +(47984, 'Ed', 1938, 'M', 265), +(47985, 'Moses', 1938, 'M', 265), +(47986, 'Murray', 1938, 'M', 265), +(47987, 'Shirley', 1938, 'M', 265), +(47988, 'Delmar', 1938, 'M', 264), +(47989, 'Monte', 1938, 'M', 264), +(47990, 'Scott', 1938, 'M', 260), +(47991, 'Edmond', 1938, 'M', 259), +(47992, 'Sanford', 1938, 'M', 256), +(47993, 'Ken', 1938, 'M', 252), +(47994, 'Norris', 1938, 'M', 252), +(47995, 'August', 1938, 'M', 249), +(47996, 'Elton', 1938, 'M', 249), +(47997, 'Adrian', 1938, 'M', 247), +(47998, 'Johnie', 1938, 'M', 246), +(47999, 'Kevin', 1938, 'M', 246), +(48000, 'Denis', 1938, 'M', 244), +(48001, 'Andy', 1938, 'M', 243), +(48002, 'Cleveland', 1938, 'M', 242), +(48003, 'Daryl', 1938, 'M', 242), +(48004, 'Freddy', 1938, 'M', 240), +(48005, 'Charley', 1938, 'M', 235), +(48006, 'Dominick', 1938, 'M', 235), +(48007, 'Lorenzo', 1938, 'M', 235), +(48008, 'Odell', 1938, 'M', 235), +(48009, 'Wiley', 1938, 'M', 235), +(48010, 'Dominic', 1938, 'M', 234), +(48011, 'Irwin', 1938, 'M', 234), +(48012, 'Jonathan', 1938, 'M', 234), +(48013, 'Thurman', 1938, 'M', 234), +(48014, 'Alonzo', 1938, 'M', 233), +(48015, 'Will', 1938, 'M', 231), +(48016, 'Millard', 1938, 'M', 230), +(48017, 'Chris', 1938, 'M', 228), +(48018, 'Weldon', 1938, 'M', 225), +(48019, 'Marcus', 1938, 'M', 224), +(48020, 'Simon', 1938, 'M', 224), +(48021, 'Roscoe', 1938, 'M', 223), +(48022, 'Kenny', 1938, 'M', 222), +(48023, 'Frederic', 1938, 'M', 220), +(48024, 'Mickey', 1938, 'M', 220), +(48025, 'Van', 1938, 'M', 218), +(48026, 'Reuben', 1938, 'M', 217), +(48027, 'Harrison', 1938, 'M', 216), +(48028, 'Merrill', 1938, 'M', 215), +(48029, 'Adam', 1938, 'M', 214), +(48030, 'Wilburn', 1938, 'M', 214), +(48031, 'Shelby', 1938, 'M', 213), +(48032, 'Abraham', 1938, 'M', 212), +(48033, 'Austin', 1938, 'M', 212), +(48034, 'Erwin', 1938, 'M', 212), +(48035, 'Guadalupe', 1938, 'M', 212), +(48036, 'Lamar', 1938, 'M', 211), +(48037, 'Tyrone', 1938, 'M', 209), +(48038, 'Bradley', 1938, 'M', 208), +(48039, 'Elvin', 1938, 'M', 208), +(48040, 'Coy', 1938, 'M', 207), +(48041, 'Monroe', 1938, 'M', 205), +(48042, 'Spencer', 1938, 'M', 205), +(48043, 'Carmen', 1938, 'M', 203), +(48044, 'Levi', 1938, 'M', 201), +(48045, 'Armando', 1938, 'M', 200), +(48046, 'Jasper', 1938, 'M', 200), +(48047, 'Morton', 1938, 'M', 198), +(48048, 'Nolan', 1938, 'M', 197), +(48049, 'Elijah', 1938, 'M', 195), +(48050, 'Ollie', 1938, 'M', 195), +(48051, 'Buford', 1938, 'M', 194), +(48052, 'Al', 1938, 'M', 193), +(48053, 'Gail', 1938, 'M', 193), +(48054, 'Rene', 1938, 'M', 191), +(48055, 'Roderick', 1938, 'M', 191), +(48056, 'Micheal', 1938, 'M', 189), +(48057, 'Adolph', 1938, 'M', 188), +(48058, 'Lavern', 1938, 'M', 188), +(48059, 'Sterling', 1938, 'M', 188), +(48060, 'Terrance', 1938, 'M', 187), +(48061, 'Dwayne', 1938, 'M', 186), +(48062, 'Jeff', 1938, 'M', 186), +(48063, 'Ricardo', 1938, 'M', 185), +(48064, 'Barney', 1938, 'M', 183), +(48065, 'Hector', 1938, 'M', 183), +(48066, 'Jake', 1938, 'M', 183), +(48067, 'Lanny', 1938, 'M', 183), +(48068, 'Salvador', 1938, 'M', 183), +(48069, 'Delmer', 1938, 'M', 180), +(48070, 'Linwood', 1938, 'M', 180), +(48071, 'Cleo', 1938, 'M', 179), +(48072, 'Errol', 1938, 'M', 178), +(48073, 'Clair', 1938, 'M', 177), +(48074, 'Emanuel', 1938, 'M', 177), +(48075, 'Wilmer', 1938, 'M', 177), +(48076, 'Rolland', 1938, 'M', 176), +(48077, 'Elliott', 1938, 'M', 175), +(48078, 'Ernie', 1938, 'M', 175), +(48079, 'Winston', 1938, 'M', 175), +(48080, 'Hollis', 1938, 'M', 174), +(48081, 'Ward', 1938, 'M', 174), +(48082, 'Mervin', 1938, 'M', 172), +(48083, 'Alfredo', 1938, 'M', 171), +(48084, 'Carrol', 1938, 'M', 170), +(48085, 'Emory', 1938, 'M', 170), +(48086, 'Gabriel', 1938, 'M', 170), +(48087, 'Gerry', 1938, 'M', 170), +(48088, 'Russel', 1938, 'M', 170), +(48089, 'Gus', 1938, 'M', 168), +(48090, 'Booker', 1938, 'M', 167), +(48091, 'Hershel', 1938, 'M', 167), +(48092, 'Truman', 1938, 'M', 167), +(48093, 'Jean', 1938, 'M', 166), +(48094, 'Huey', 1938, 'M', 165), +(48095, 'Armand', 1938, 'M', 164), +(48096, 'Miles', 1938, 'M', 164), +(48097, 'Fredric', 1938, 'M', 163), +(48098, 'Barbara', 1938, 'M', 162), +(48099, 'Denny', 1938, 'M', 162), +(48100, 'Hal', 1938, 'M', 162), +(48101, 'Bryan', 1938, 'M', 161), +(48102, 'Vern', 1938, 'M', 160), +(48103, 'Clement', 1938, 'M', 158), +(48104, 'Alva', 1938, 'M', 157), +(48105, 'Basil', 1938, 'M', 157), +(48106, 'Emery', 1938, 'M', 157), +(48107, 'Galen', 1938, 'M', 157), +(48108, 'Jackson', 1938, 'M', 157), +(48109, 'Jeffrey', 1938, 'M', 157), +(48110, 'Herschel', 1938, 'M', 155), +(48111, 'Tomas', 1938, 'M', 154), +(48112, 'Winfred', 1938, 'M', 154), +(48113, 'Ulysses', 1938, 'M', 153), +(48114, 'Arlen', 1938, 'M', 152), +(48115, 'Vance', 1938, 'M', 152), +(48116, 'Jess', 1938, 'M', 151), +(48117, 'Kennith', 1938, 'M', 151), +(48118, 'Dudley', 1938, 'M', 150), +(48119, 'Wilford', 1938, 'M', 150), +(48120, 'Gayle', 1938, 'M', 149), +(48121, 'Bernie', 1938, 'M', 145), +(48122, 'Connie', 1938, 'M', 145), +(48123, 'Noah', 1938, 'M', 145), +(48124, 'Normand', 1938, 'M', 145), +(48125, 'Silas', 1938, 'M', 145), +(48126, 'Arturo', 1938, 'M', 144), +(48127, 'Harris', 1938, 'M', 144), +(48128, 'Rocco', 1938, 'M', 143), +(48129, 'Solomon', 1938, 'M', 143), +(48130, 'Ron', 1938, 'M', 142), +(48131, 'Arden', 1938, 'M', 141), +(48132, 'Dewayne', 1938, 'M', 141), +(48133, 'Fernando', 1938, 'M', 141), +(48134, 'Milford', 1938, 'M', 141), +(48135, 'Riley', 1938, 'M', 140), +(48136, 'Lenard', 1938, 'M', 139), +(48137, 'Miguel', 1938, 'M', 139), +(48138, 'Ronny', 1938, 'M', 139), +(48139, 'Carmine', 1938, 'M', 137), +(48140, 'Elmo', 1938, 'M', 137), +(48141, 'Kelly', 1938, 'M', 137), +(48142, 'Olin', 1938, 'M', 137), +(48143, 'Alphonso', 1938, 'M', 136), +(48144, 'Denver', 1938, 'M', 136), +(48145, 'Vaughn', 1938, 'M', 135), +(48146, 'Warner', 1938, 'M', 135), +(48147, 'Gaylord', 1938, 'M', 134), +(48148, 'Kurt', 1938, 'M', 134), +(48149, 'Royal', 1938, 'M', 134), +(48150, 'Anton', 1938, 'M', 133), +(48151, 'Dana', 1938, 'M', 132), +(48152, 'Everette', 1938, 'M', 132), +(48153, 'Odis', 1938, 'M', 132), +(48154, 'Jerold', 1938, 'M', 131), +(48155, 'Domingo', 1938, 'M', 128), +(48156, 'Evan', 1938, 'M', 128), +(48157, 'Freeman', 1938, 'M', 128), +(48158, 'Dickie', 1938, 'M', 127), +(48159, 'Lyman', 1938, 'M', 127), +(48160, 'Enrique', 1938, 'M', 126), +(48161, 'Terence', 1938, 'M', 126), +(48162, 'Blaine', 1938, 'M', 125), +(48163, 'Jerrold', 1938, 'M', 125), +(48164, 'Robin', 1938, 'M', 125), +(48165, 'Elias', 1938, 'M', 124), +(48166, 'Gearld', 1938, 'M', 123), +(48167, 'Hoyt', 1938, 'M', 123), +(48168, 'Luke', 1938, 'M', 123), +(48169, 'Lupe', 1938, 'M', 123), +(48170, 'Saul', 1938, 'M', 123), +(48171, 'Davis', 1938, 'M', 122), +(48172, 'Jere', 1938, 'M', 122), +(48173, 'Boyce', 1938, 'M', 120), +(48174, 'Emerson', 1938, 'M', 120), +(48175, 'Houston', 1938, 'M', 120), +(48176, 'Kay', 1938, 'M', 120), +(48177, 'Sherwood', 1938, 'M', 120), +(48178, 'Alden', 1938, 'M', 119), +(48179, 'Eli', 1938, 'M', 119), +(48180, 'Rodolfo', 1938, 'M', 119), +(48181, 'Dalton', 1938, 'M', 118), +(48182, 'Dee', 1938, 'M', 118), +(48183, 'Earle', 1938, 'M', 117), +(48184, 'Ernesto', 1938, 'M', 117), +(48185, 'Morgan', 1938, 'M', 116), +(48186, 'Sonny', 1938, 'M', 116), +(48187, 'Pasquale', 1938, 'M', 115), +(48188, 'Brent', 1938, 'M', 114), +(48189, 'Seymour', 1938, 'M', 114), +(48190, 'Clay', 1938, 'M', 113), +(48191, 'Graham', 1938, 'M', 112), +(48192, 'Claud', 1938, 'M', 111), +(48193, 'Rafael', 1938, 'M', 111), +(48194, 'Vito', 1938, 'M', 111), +(48195, 'Andre', 1938, 'M', 110), +(48196, 'Betty', 1938, 'M', 110), +(48197, 'Bud', 1938, 'M', 110), +(48198, 'Forest', 1938, 'M', 110), +(48199, 'Jeremiah', 1938, 'M', 110), +(48200, 'Merlyn', 1938, 'M', 110), +(48201, 'Burl', 1938, 'M', 109), +(48202, 'Gilberto', 1938, 'M', 109), +(48203, 'Dwain', 1938, 'M', 108), +(48204, 'Elroy', 1938, 'M', 108), +(48205, 'Foster', 1938, 'M', 108), +(48206, 'Isaiah', 1938, 'M', 108), +(48207, 'Thaddeus', 1938, 'M', 108), +(48208, 'Alphonse', 1938, 'M', 107), +(48209, 'Pablo', 1938, 'M', 107), +(48210, 'Patricia', 1938, 'M', 107), +(48211, 'Bradford', 1938, 'M', 106), +(48212, 'Carter', 1938, 'M', 106), +(48213, 'Maxie', 1938, 'M', 106), +(48214, 'Wilton', 1938, 'M', 106), +(48215, 'Augustus', 1938, 'M', 105), +(48216, 'Fletcher', 1938, 'M', 105), +(48217, 'Roman', 1938, 'M', 105), +(48218, 'Stanford', 1938, 'M', 105), +(48219, 'Alberto', 1938, 'M', 104), +(48220, 'Reynaldo', 1938, 'M', 104), +(48221, 'Chuck', 1938, 'M', 103), +(48222, 'Lemuel', 1938, 'M', 103), +(48223, 'Carey', 1938, 'M', 102), +(48224, 'Dannie', 1938, 'M', 102), +(48225, 'Emilio', 1938, 'M', 102), +(48226, 'Rogers', 1938, 'M', 102), +(48227, 'Dexter', 1938, 'M', 101), +(48228, 'Randy', 1938, 'M', 101), +(48229, 'Rayford', 1938, 'M', 101), +(48230, 'Arther', 1938, 'M', 100), +(48231, 'Ferdinand', 1938, 'M', 100), +(48232, 'Monty', 1938, 'M', 100), +(48233, 'Tracy', 1938, 'M', 100), +(48234, 'Mary', 1939, 'F', 54900), +(48235, 'Barbara', 1939, 'F', 37259), +(48236, 'Patricia', 1939, 'F', 29703), +(48237, 'Betty', 1939, 'F', 23638), +(48238, 'Shirley', 1939, 'F', 20446), +(48239, 'Carol', 1939, 'F', 20167), +(48240, 'Nancy', 1939, 'F', 19724), +(48241, 'Judith', 1939, 'F', 16625), +(48242, 'Dorothy', 1939, 'F', 15170), +(48243, 'Margaret', 1939, 'F', 14951), +(48244, 'Joan', 1939, 'F', 14140), +(48245, 'Joyce', 1939, 'F', 13393), +(48246, 'Sandra', 1939, 'F', 11968), +(48247, 'Carolyn', 1939, 'F', 11290), +(48248, 'Linda', 1939, 'F', 10712), +(48249, 'Helen', 1939, 'F', 10416), +(48250, 'Janet', 1939, 'F', 10114), +(48251, 'Elizabeth', 1939, 'F', 9705), +(48252, 'Marilyn', 1939, 'F', 9538), +(48253, 'Donna', 1939, 'F', 9369), +(48254, 'Virginia', 1939, 'F', 9226), +(48255, 'Ruth', 1939, 'F', 9059), +(48256, 'Sharon', 1939, 'F', 9013), +(48257, 'Janice', 1939, 'F', 8778), +(48258, 'Beverly', 1939, 'F', 8702), +(48259, 'Frances', 1939, 'F', 8578), +(48260, 'Martha', 1939, 'F', 8490), +(48261, 'Judy', 1939, 'F', 8083), +(48262, 'Doris', 1939, 'F', 7683), +(48263, 'Phyllis', 1939, 'F', 7591), +(48264, 'Alice', 1939, 'F', 7369), +(48265, 'Jean', 1939, 'F', 7288), +(48266, 'Ann', 1939, 'F', 6550), +(48267, 'Peggy', 1939, 'F', 6047), +(48268, 'Lois', 1939, 'F', 6034), +(48269, 'Gloria', 1939, 'F', 5938), +(48270, 'Marie', 1939, 'F', 5889), +(48271, 'Norma', 1939, 'F', 5826), +(48272, 'Karen', 1939, 'F', 5543), +(48273, 'Evelyn', 1939, 'F', 5327), +(48274, 'Geraldine', 1939, 'F', 5158), +(48275, 'Rose', 1939, 'F', 5040), +(48276, 'Anna', 1939, 'F', 4931), +(48277, 'Susan', 1939, 'F', 4886), +(48278, 'Elaine', 1939, 'F', 4785), +(48279, 'Jane', 1939, 'F', 4770), +(48280, 'Carole', 1939, 'F', 4679), +(48281, 'Kathleen', 1939, 'F', 4656), +(48282, 'Catherine', 1939, 'F', 4576), +(48283, 'Wanda', 1939, 'F', 4559), +(48284, 'Diane', 1939, 'F', 4337), +(48285, 'Sally', 1939, 'F', 4242), +(48286, 'Joanne', 1939, 'F', 4223), +(48287, 'Annie', 1939, 'F', 4149), +(48288, 'Mildred', 1939, 'F', 4136), +(48289, 'Patsy', 1939, 'F', 4109), +(48290, 'Joann', 1939, 'F', 3993), +(48291, 'Dolores', 1939, 'F', 3980), +(48292, 'Louise', 1939, 'F', 3959), +(48293, 'Marjorie', 1939, 'F', 3908), +(48294, 'Bonnie', 1939, 'F', 3889), +(48295, 'Sylvia', 1939, 'F', 3871), +(48296, 'Eleanor', 1939, 'F', 3810), +(48297, 'Marlene', 1939, 'F', 3774), +(48298, 'Loretta', 1939, 'F', 3770), +(48299, 'Charlotte', 1939, 'F', 3740), +(48300, 'Ruby', 1939, 'F', 3714), +(48301, 'Sarah', 1939, 'F', 3670), +(48302, 'Arlene', 1939, 'F', 3576), +(48303, 'Jo', 1939, 'F', 3523), +(48304, 'Roberta', 1939, 'F', 3411), +(48305, 'Jacqueline', 1939, 'F', 3388), +(48306, 'Gail', 1939, 'F', 3352), +(48307, 'Irene', 1939, 'F', 3329), +(48308, 'Darlene', 1939, 'F', 3287), +(48309, 'Kay', 1939, 'F', 3258), +(48310, 'Juanita', 1939, 'F', 3213), +(48311, 'Rita', 1939, 'F', 3187), +(48312, 'Delores', 1939, 'F', 3019), +(48313, 'Ellen', 1939, 'F', 3007), +(48314, 'Edna', 1939, 'F', 2903), +(48315, 'Jeanette', 1939, 'F', 2892), +(48316, 'June', 1939, 'F', 2863), +(48317, 'Josephine', 1939, 'F', 2838), +(48318, 'Anne', 1939, 'F', 2768), +(48319, 'Brenda', 1939, 'F', 2756), +(48320, 'Wilma', 1939, 'F', 2699), +(48321, 'Thelma', 1939, 'F', 2696), +(48322, 'Emma', 1939, 'F', 2686), +(48323, 'Yvonne', 1939, 'F', 2648), +(48324, 'Julia', 1939, 'F', 2637), +(48325, 'Sue', 1939, 'F', 2621), +(48326, 'Theresa', 1939, 'F', 2612), +(48327, 'Rosemary', 1939, 'F', 2611), +(48328, 'Florence', 1939, 'F', 2594), +(48329, 'Lorraine', 1939, 'F', 2592), +(48330, 'Anita', 1939, 'F', 2588), +(48331, 'Audrey', 1939, 'F', 2567), +(48332, 'Lillian', 1939, 'F', 2554), +(48333, 'Ethel', 1939, 'F', 2494), +(48334, 'Katherine', 1939, 'F', 2475), +(48335, 'Edith', 1939, 'F', 2474), +(48336, 'Clara', 1939, 'F', 2449), +(48337, 'Gladys', 1939, 'F', 2417), +(48338, 'Pauline', 1939, 'F', 2412), +(48339, 'Kathryn', 1939, 'F', 2377), +(48340, 'Laura', 1939, 'F', 2373), +(48341, 'Grace', 1939, 'F', 2370), +(48342, 'Marcia', 1939, 'F', 2346), +(48343, 'Lucille', 1939, 'F', 2312), +(48344, 'Connie', 1939, 'F', 2296), +(48345, 'Glenda', 1939, 'F', 2286), +(48346, 'Margie', 1939, 'F', 2265), +(48347, 'Rosalie', 1939, 'F', 2162), +(48348, 'Eileen', 1939, 'F', 2158), +(48349, 'Bernice', 1939, 'F', 2122), +(48350, 'Esther', 1939, 'F', 2109), +(48351, 'Hazel', 1939, 'F', 2100), +(48352, 'Maria', 1939, 'F', 2078), +(48353, 'Marion', 1939, 'F', 2068), +(48354, 'Annette', 1939, 'F', 2066), +(48355, 'Suzanne', 1939, 'F', 2030), +(48356, 'Constance', 1939, 'F', 2009), +(48357, 'Christine', 1939, 'F', 1988), +(48358, 'Sheila', 1939, 'F', 1957), +(48359, 'Willie', 1939, 'F', 1949), +(48360, 'Sara', 1939, 'F', 1871), +(48361, 'Vivian', 1939, 'F', 1867), +(48362, 'Eva', 1939, 'F', 1858), +(48363, 'Marian', 1939, 'F', 1837), +(48364, 'Georgia', 1939, 'F', 1831), +(48365, 'Ella', 1939, 'F', 1828), +(48366, 'Deanna', 1939, 'F', 1806), +(48367, 'Rebecca', 1939, 'F', 1795), +(48368, 'Bertha', 1939, 'F', 1794), +(48369, 'Beatrice', 1939, 'F', 1779), +(48370, 'Maxine', 1939, 'F', 1776), +(48371, 'Diana', 1939, 'F', 1712), +(48372, 'Charlene', 1939, 'F', 1704), +(48373, 'Elsie', 1939, 'F', 1703), +(48374, 'Bobbie', 1939, 'F', 1676), +(48375, 'Pat', 1939, 'F', 1659), +(48376, 'Lillie', 1939, 'F', 1652), +(48377, 'Myrna', 1939, 'F', 1599), +(48378, 'Ida', 1939, 'F', 1588), +(48379, 'Maureen', 1939, 'F', 1586), +(48380, 'Jeanne', 1939, 'F', 1551), +(48381, 'Priscilla', 1939, 'F', 1542), +(48382, 'Billie', 1939, 'F', 1538), +(48383, 'Alma', 1939, 'F', 1497), +(48384, 'Rosa', 1939, 'F', 1491), +(48385, 'Cynthia', 1939, 'F', 1488), +(48386, 'Vera', 1939, 'F', 1411), +(48387, 'Lucy', 1939, 'F', 1408), +(48388, 'Jessie', 1939, 'F', 1396), +(48389, 'Harriet', 1939, 'F', 1390), +(48390, 'Nellie', 1939, 'F', 1373), +(48391, 'Bessie', 1939, 'F', 1362), +(48392, 'Paula', 1939, 'F', 1349), +(48393, 'Rachel', 1939, 'F', 1344), +(48394, 'Faye', 1939, 'F', 1327), +(48395, 'Agnes', 1939, 'F', 1298), +(48396, 'Emily', 1939, 'F', 1292), +(48397, 'Mattie', 1939, 'F', 1292), +(48398, 'Minnie', 1939, 'F', 1268), +(48399, 'Joy', 1939, 'F', 1260), +(48400, 'Maryann', 1939, 'F', 1238), +(48401, 'Gwendolyn', 1939, 'F', 1182), +(48402, 'Dixie', 1939, 'F', 1175), +(48403, 'Shelby', 1939, 'F', 1165), +(48404, 'Rosie', 1939, 'F', 1160), +(48405, 'Geneva', 1939, 'F', 1144), +(48406, 'Gertrude', 1939, 'F', 1093), +(48407, 'Naomi', 1939, 'F', 1086), +(48408, 'Rosemarie', 1939, 'F', 1077), +(48409, 'Carrie', 1939, 'F', 1076), +(48410, 'Leona', 1939, 'F', 1075), +(48411, 'Velma', 1939, 'F', 1067), +(48412, 'Myrtle', 1939, 'F', 1063), +(48413, 'Mae', 1939, 'F', 1060), +(48414, 'Patty', 1939, 'F', 1052), +(48415, 'Dora', 1939, 'F', 1043), +(48416, 'Cora', 1939, 'F', 1040), +(48417, 'Jeannette', 1939, 'F', 1019), +(48418, 'Jackie', 1939, 'F', 1013), +(48419, 'Caroline', 1939, 'F', 1005), +(48420, 'Viola', 1939, 'F', 982), +(48421, 'Stella', 1939, 'F', 954), +(48422, 'Claire', 1939, 'F', 931), +(48423, 'Verna', 1939, 'F', 927), +(48424, 'Alberta', 1939, 'F', 926), +(48425, 'Lula', 1939, 'F', 924), +(48426, 'Dianne', 1939, 'F', 923), +(48427, 'Nina', 1939, 'F', 916), +(48428, 'Hattie', 1939, 'F', 913), +(48429, 'Violet', 1939, 'F', 911), +(48430, 'Claudia', 1939, 'F', 902), +(48431, 'Pearl', 1939, 'F', 901), +(48432, 'Madeline', 1939, 'F', 888), +(48433, 'Ramona', 1939, 'F', 887), +(48434, 'Sondra', 1939, 'F', 875), +(48435, 'Lynn', 1939, 'F', 872), +(48436, 'Sonja', 1939, 'F', 861), +(48437, 'Nora', 1939, 'F', 859), +(48438, 'Eunice', 1939, 'F', 848), +(48439, 'Gayle', 1939, 'F', 843), +(48440, 'Lola', 1939, 'F', 840), +(48441, 'Johnnie', 1939, 'F', 837), +(48442, 'Deloris', 1939, 'F', 826), +(48443, 'Daisy', 1939, 'F', 823), +(48444, 'Ernestine', 1939, 'F', 794), +(48445, 'Erma', 1939, 'F', 791), +(48446, 'Melba', 1939, 'F', 781), +(48447, 'Carmen', 1939, 'F', 776), +(48448, 'Bettie', 1939, 'F', 775), +(48449, 'Marguerite', 1939, 'F', 767), +(48450, 'Flora', 1939, 'F', 766), +(48451, 'Antoinette', 1939, 'F', 765), +(48452, 'Lena', 1939, 'F', 765), +(48453, 'Lynda', 1939, 'F', 764), +(48454, 'Hilda', 1939, 'F', 762), +(48455, 'Janie', 1939, 'F', 759), +(48456, 'Iris', 1939, 'F', 747), +(48457, 'Irma', 1939, 'F', 746), +(48458, 'Susie', 1939, 'F', 744), +(48459, 'Sherry', 1939, 'F', 739), +(48460, 'Fannie', 1939, 'F', 736), +(48461, 'Bette', 1939, 'F', 735), +(48462, 'Angela', 1939, 'F', 733), +(48463, 'Jacquelyn', 1939, 'F', 725), +(48464, 'Miriam', 1939, 'F', 712), +(48465, 'Julie', 1939, 'F', 710), +(48466, 'Ada', 1939, 'F', 702), +(48467, 'Marianne', 1939, 'F', 695), +(48468, 'Lynne', 1939, 'F', 689), +(48469, 'Regina', 1939, 'F', 689), +(48470, 'Jennie', 1939, 'F', 682), +(48471, 'Lydia', 1939, 'F', 681), +(48472, 'Mamie', 1939, 'F', 681), +(48473, 'Della', 1939, 'F', 680), +(48474, 'Victoria', 1939, 'F', 676), +(48475, 'Colleen', 1939, 'F', 665), +(48476, 'Bettye', 1939, 'F', 658), +(48477, 'Myra', 1939, 'F', 658), +(48478, 'Teresa', 1939, 'F', 650), +(48479, 'Andrea', 1939, 'F', 648), +(48480, 'Katie', 1939, 'F', 648), +(48481, 'Mable', 1939, 'F', 639), +(48482, 'Marcella', 1939, 'F', 633), +(48483, 'Genevieve', 1939, 'F', 625), +(48484, 'Valerie', 1939, 'F', 622), +(48485, 'Janis', 1939, 'F', 620), +(48486, 'Laverne', 1939, 'F', 617), +(48487, 'Inez', 1939, 'F', 605), +(48488, 'Eula', 1939, 'F', 599), +(48489, 'Mabel', 1939, 'F', 592), +(48490, 'Henrietta', 1939, 'F', 586), +(48491, 'Muriel', 1939, 'F', 584), +(48492, 'Beulah', 1939, 'F', 573), +(48493, 'Maggie', 1939, 'F', 566), +(48494, 'Cecilia', 1939, 'F', 562), +(48495, 'Marsha', 1939, 'F', 557), +(48496, 'Opal', 1939, 'F', 557), +(48497, 'Nelda', 1939, 'F', 546), +(48498, 'Claudette', 1939, 'F', 539), +(48499, 'Freda', 1939, 'F', 538), +(48500, 'Reba', 1939, 'F', 538), +(48501, 'Cecelia', 1939, 'F', 533), +(48502, 'Eloise', 1939, 'F', 532), +(48503, 'Mona', 1939, 'F', 523), +(48504, 'Blanche', 1939, 'F', 519), +(48505, 'Betsy', 1939, 'F', 513), +(48506, 'Veronica', 1939, 'F', 513), +(48507, 'Sallie', 1939, 'F', 510), +(48508, 'Jerry', 1939, 'F', 506), +(48509, 'Nadine', 1939, 'F', 506), +(48510, 'Beth', 1939, 'F', 501), +(48511, 'Fay', 1939, 'F', 501), +(48512, 'Lou', 1939, 'F', 501), +(48513, 'Jimmie', 1939, 'F', 496), +(48514, 'Sadie', 1939, 'F', 496), +(48515, 'Amelia', 1939, 'F', 489), +(48516, 'Frankie', 1939, 'F', 483), +(48517, 'Lila', 1939, 'F', 482), +(48518, 'Rosetta', 1939, 'F', 479), +(48519, 'Lee', 1939, 'F', 477), +(48520, 'Lorene', 1939, 'F', 473), +(48521, 'Dawn', 1939, 'F', 468), +(48522, 'Ina', 1939, 'F', 466), +(48523, 'Essie', 1939, 'F', 460), +(48524, 'Nettie', 1939, 'F', 460), +(48525, 'Glenna', 1939, 'F', 456), +(48526, 'Deborah', 1939, 'F', 443), +(48527, 'Ora', 1939, 'F', 438), +(48528, 'Lenora', 1939, 'F', 429), +(48529, 'Olivia', 1939, 'F', 429), +(48530, 'Gracie', 1939, 'F', 424), +(48531, 'Gretchen', 1939, 'F', 420), +(48532, 'Rochelle', 1939, 'F', 420), +(48533, 'Polly', 1939, 'F', 418), +(48534, 'Helene', 1939, 'F', 416), +(48535, 'Ollie', 1939, 'F', 416), +(48536, 'Winifred', 1939, 'F', 416), +(48537, 'Arleen', 1939, 'F', 415), +(48538, 'Natalie', 1939, 'F', 410), +(48539, 'Saundra', 1939, 'F', 409), +(48540, 'Imogene', 1939, 'F', 408), +(48541, 'Etta', 1939, 'F', 407), +(48542, 'Dorthy', 1939, 'F', 401), +(48543, 'Iva', 1939, 'F', 395), +(48544, 'Jewel', 1939, 'F', 392), +(48545, 'Bonita', 1939, 'F', 390), +(48546, 'Joanna', 1939, 'F', 390), +(48547, 'Mavis', 1939, 'F', 388), +(48548, 'Ruthie', 1939, 'F', 388), +(48549, 'Faith', 1939, 'F', 382), +(48550, 'Earnestine', 1939, 'F', 380), +(48551, 'Penny', 1939, 'F', 380), +(48552, 'Sharron', 1939, 'F', 380), +(48553, 'Willa', 1939, 'F', 375), +(48554, 'Lavonne', 1939, 'F', 374), +(48555, 'Celia', 1939, 'F', 373), +(48556, 'Leah', 1939, 'F', 373), +(48557, 'Estella', 1939, 'F', 370), +(48558, 'Penelope', 1939, 'F', 368), +(48559, 'Lorna', 1939, 'F', 367), +(48560, 'Sybil', 1939, 'F', 366), +(48561, 'Kathy', 1939, 'F', 365), +(48562, 'Amy', 1939, 'F', 364), +(48563, 'Leola', 1939, 'F', 363), +(48564, 'Estelle', 1939, 'F', 361), +(48565, 'Bernadine', 1939, 'F', 360), +(48566, 'Lela', 1939, 'F', 360), +(48567, 'Gwen', 1939, 'F', 358), +(48568, 'Lottie', 1939, 'F', 358), +(48569, 'Olga', 1939, 'F', 356), +(48570, 'Alicia', 1939, 'F', 354), +(48571, 'Bernadette', 1939, 'F', 353), +(48572, 'Laurel', 1939, 'F', 352), +(48573, 'Molly', 1939, 'F', 348), +(48574, 'Rhoda', 1939, 'F', 348), +(48575, 'Carla', 1939, 'F', 346), +(48576, 'Marlys', 1939, 'F', 343), +(48577, 'Beverley', 1939, 'F', 341), +(48578, 'Isabel', 1939, 'F', 341), +(48579, 'Gay', 1939, 'F', 338), +(48580, 'Pamela', 1939, 'F', 338), +(48581, 'Ola', 1939, 'F', 337), +(48582, 'Camille', 1939, 'F', 336), +(48583, 'Earlene', 1939, 'F', 336), +(48584, 'Pearlie', 1939, 'F', 336), +(48585, 'Rosalind', 1939, 'F', 336), +(48586, 'Dorothea', 1939, 'F', 334), +(48587, 'Josie', 1939, 'F', 334), +(48588, 'Vicki', 1939, 'F', 334), +(48589, 'Addie', 1939, 'F', 333), +(48590, 'Clarice', 1939, 'F', 333), +(48591, 'Elva', 1939, 'F', 333), +(48592, 'Fern', 1939, 'F', 327), +(48593, 'Rena', 1939, 'F', 326), +(48594, 'Earline', 1939, 'F', 325), +(48595, 'Jill', 1939, 'F', 323), +(48596, 'Kaye', 1939, 'F', 323), +(48597, 'Cecile', 1939, 'F', 320), +(48598, 'Jeannine', 1939, 'F', 320), +(48599, 'Adrienne', 1939, 'F', 319), +(48600, 'Darla', 1939, 'F', 318), +(48601, 'Marva', 1939, 'F', 318), +(48602, 'Marylou', 1939, 'F', 315), +(48603, 'Terry', 1939, 'F', 315), +(48604, 'Yolanda', 1939, 'F', 314), +(48605, 'Margo', 1939, 'F', 313), +(48606, 'Cleo', 1939, 'F', 312), +(48607, 'Adele', 1939, 'F', 309), +(48608, 'Angelina', 1939, 'F', 308), +(48609, 'Janette', 1939, 'F', 306), +(48610, 'Robbie', 1939, 'F', 305), +(48611, 'Jan', 1939, 'F', 304), +(48612, 'Lupe', 1939, 'F', 302), +(48613, 'Toni', 1939, 'F', 300), +(48614, 'Francis', 1939, 'F', 299), +(48615, 'Harriett', 1939, 'F', 299), +(48616, 'Lenore', 1939, 'F', 296), +(48617, 'Carlene', 1939, 'F', 294), +(48618, 'Elnora', 1939, 'F', 293), +(48619, 'Jewell', 1939, 'F', 293), +(48620, 'Johanna', 1939, 'F', 293), +(48621, 'Tommie', 1939, 'F', 293), +(48622, 'Marilynn', 1939, 'F', 290), +(48623, 'Cheryl', 1939, 'F', 289), +(48624, 'Corinne', 1939, 'F', 289), +(48625, 'Alta', 1939, 'F', 288), +(48626, 'Effie', 1939, 'F', 288), +(48627, 'Gale', 1939, 'F', 288), +(48628, 'Renee', 1939, 'F', 285), +(48629, 'Lizzie', 1939, 'F', 284), +(48630, 'Ilene', 1939, 'F', 283), +(48631, 'Stephanie', 1939, 'F', 283), +(48632, 'Lora', 1939, 'F', 282), +(48633, 'Sonia', 1939, 'F', 282), +(48634, 'Virgie', 1939, 'F', 281), +(48635, 'Dale', 1939, 'F', 280), +(48636, 'Melva', 1939, 'F', 280), +(48637, 'Francine', 1939, 'F', 279), +(48638, 'Luella', 1939, 'F', 276), +(48639, 'Merle', 1939, 'F', 275), +(48640, 'Cornelia', 1939, 'F', 274), +(48641, 'Nola', 1939, 'F', 273), +(48642, 'Doreen', 1939, 'F', 271), +(48643, 'Nell', 1939, 'F', 271), +(48644, 'James', 1939, 'F', 268), +(48645, 'Delia', 1939, 'F', 267), +(48646, 'Elinor', 1939, 'F', 267), +(48647, 'Angeline', 1939, 'F', 266), +(48648, 'Goldie', 1939, 'F', 266), +(48649, 'Becky', 1939, 'F', 265), +(48650, 'Susanne', 1939, 'F', 264), +(48651, 'Christina', 1939, 'F', 262), +(48652, 'Denise', 1939, 'F', 260), +(48653, 'Sandy', 1939, 'F', 260), +(48654, 'Dona', 1939, 'F', 259), +(48655, 'Eddie', 1939, 'F', 259), +(48656, 'May', 1939, 'F', 257), +(48657, 'Mollie', 1939, 'F', 257), +(48658, 'Monica', 1939, 'F', 255), +(48659, 'Dollie', 1939, 'F', 251), +(48660, 'Winnie', 1939, 'F', 251), +(48661, 'Joe', 1939, 'F', 249), +(48662, 'Ila', 1939, 'F', 247), +(48663, 'Eugenia', 1939, 'F', 246), +(48664, 'Guadalupe', 1939, 'F', 243), +(48665, 'Rosalyn', 1939, 'F', 243), +(48666, 'Edwina', 1939, 'F', 242), +(48667, 'Millie', 1939, 'F', 241), +(48668, 'Noreen', 1939, 'F', 240), +(48669, 'Elvira', 1939, 'F', 238), +(48670, 'Neva', 1939, 'F', 238), +(48671, 'Dolly', 1939, 'F', 235), +(48672, 'Margarita', 1939, 'F', 235), +(48673, 'Marietta', 1939, 'F', 235), +(48674, 'Olive', 1939, 'F', 234), +(48675, 'Nona', 1939, 'F', 233), +(48676, 'Patti', 1939, 'F', 233), +(48677, 'Louella', 1939, 'F', 231), +(48678, 'John', 1939, 'F', 228), +(48679, 'Arline', 1939, 'F', 227), +(48680, 'Rosella', 1939, 'F', 225), +(48681, 'Hope', 1939, 'F', 224), +(48682, 'Queen', 1939, 'F', 223), +(48683, 'Angie', 1939, 'F', 222), +(48684, 'Wendy', 1939, 'F', 222), +(48685, 'Corrine', 1939, 'F', 219), +(48686, 'Jannie', 1939, 'F', 217), +(48687, 'Wilda', 1939, 'F', 216), +(48688, 'Adeline', 1939, 'F', 214), +(48689, 'Alyce', 1939, 'F', 214), +(48690, 'Freddie', 1939, 'F', 214), +(48691, 'Hannah', 1939, 'F', 212), +(48692, 'Therese', 1939, 'F', 212), +(48693, 'Judie', 1939, 'F', 211), +(48694, 'Madelyn', 1939, 'F', 211), +(48695, 'Roseann', 1939, 'F', 211), +(48696, 'Sonya', 1939, 'F', 211), +(48697, 'Margery', 1939, 'F', 210), +(48698, 'Robert', 1939, 'F', 209), +(48699, 'Rosalee', 1939, 'F', 206), +(48700, 'Antonia', 1939, 'F', 205), +(48701, 'Peggie', 1939, 'F', 205), +(48702, 'Elma', 1939, 'F', 203), +(48703, 'Nannie', 1939, 'F', 202), +(48704, 'Gerry', 1939, 'F', 200), +(48705, 'Shelba', 1939, 'F', 200), +(48706, 'Carmela', 1939, 'F', 198), +(48707, 'Dianna', 1939, 'F', 197), +(48708, 'Frieda', 1939, 'F', 197), +(48709, 'Jeanine', 1939, 'F', 197), +(48710, 'Nan', 1939, 'F', 197), +(48711, 'Helena', 1939, 'F', 195), +(48712, 'Annabelle', 1939, 'F', 194), +(48713, 'Meredith', 1939, 'F', 194), +(48714, 'Ruthann', 1939, 'F', 194), +(48715, 'Letha', 1939, 'F', 193), +(48716, 'Rae', 1939, 'F', 193); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(48717, 'Jeannie', 1939, 'F', 192), +(48718, 'Madeleine', 1939, 'F', 192), +(48719, 'Melinda', 1939, 'F', 192), +(48720, 'Reva', 1939, 'F', 191), +(48721, 'Odessa', 1939, 'F', 190), +(48722, 'Bennie', 1939, 'F', 188), +(48723, 'Lucile', 1939, 'F', 188), +(48724, 'Amanda', 1939, 'F', 185), +(48725, 'Jolene', 1939, 'F', 184), +(48726, 'Elouise', 1939, 'F', 183), +(48727, 'Roxie', 1939, 'F', 183), +(48728, 'Avis', 1939, 'F', 182), +(48729, 'Eleanore', 1939, 'F', 181), +(48730, 'Katharine', 1939, 'F', 181), +(48731, 'Zelma', 1939, 'F', 180), +(48732, 'Leslie', 1939, 'F', 179), +(48733, 'Aurora', 1939, 'F', 178), +(48734, 'Corine', 1939, 'F', 178), +(48735, 'Lilly', 1939, 'F', 178), +(48736, 'Freida', 1939, 'F', 177), +(48737, 'Jayne', 1939, 'F', 177), +(48738, 'Leila', 1939, 'F', 177), +(48739, 'Vonda', 1939, 'F', 177), +(48740, 'Emilie', 1939, 'F', 176), +(48741, 'Retha', 1939, 'F', 175), +(48742, 'Nita', 1939, 'F', 174), +(48743, 'Jenny', 1939, 'F', 173), +(48744, 'Flossie', 1939, 'F', 171), +(48745, 'Carmella', 1939, 'F', 170), +(48746, 'Georgie', 1939, 'F', 170), +(48747, 'Mercedes', 1939, 'F', 170), +(48748, 'Dana', 1939, 'F', 169), +(48749, 'Deanne', 1939, 'F', 169), +(48750, 'Lucinda', 1939, 'F', 169), +(48751, 'Lily', 1939, 'F', 168), +(48752, 'Reta', 1939, 'F', 167), +(48753, 'Ginger', 1939, 'F', 165), +(48754, 'Loraine', 1939, 'F', 164), +(48755, 'Maryanne', 1939, 'F', 164), +(48756, 'Delois', 1939, 'F', 163), +(48757, 'Lorena', 1939, 'F', 163), +(48758, 'Ardith', 1939, 'F', 161), +(48759, 'Dee', 1939, 'F', 159), +(48760, 'Greta', 1939, 'F', 159), +(48761, 'Claudine', 1939, 'F', 158), +(48762, 'Jeraldine', 1939, 'F', 158), +(48763, 'Ladonna', 1939, 'F', 158), +(48764, 'Concetta', 1939, 'F', 157), +(48765, 'Clare', 1939, 'F', 156), +(48766, 'Jeanie', 1939, 'F', 156), +(48767, 'Selma', 1939, 'F', 156), +(48768, 'Lelia', 1939, 'F', 154), +(48769, 'Toby', 1939, 'F', 154), +(48770, 'Belva', 1939, 'F', 153), +(48771, 'Sherrill', 1939, 'F', 153), +(48772, 'William', 1939, 'F', 153), +(48773, 'Eliza', 1939, 'F', 152), +(48774, 'Annetta', 1939, 'F', 151), +(48775, 'Elsa', 1939, 'F', 151), +(48776, 'Isabelle', 1939, 'F', 151), +(48777, 'Maryjane', 1939, 'F', 151), +(48778, 'Sophie', 1939, 'F', 151), +(48779, 'Treva', 1939, 'F', 151), +(48780, 'Darleen', 1939, 'F', 150), +(48781, 'Charles', 1939, 'F', 149), +(48782, 'Lessie', 1939, 'F', 148), +(48783, 'Roslyn', 1939, 'F', 148), +(48784, 'Bobby', 1939, 'F', 147), +(48785, 'Iona', 1939, 'F', 147), +(48786, 'Ima', 1939, 'F', 146), +(48787, 'Gearldine', 1939, 'F', 145), +(48788, 'Georgianna', 1939, 'F', 145), +(48789, 'Pansy', 1939, 'F', 145), +(48790, 'Tina', 1939, 'F', 145), +(48791, 'Callie', 1939, 'F', 144), +(48792, 'Cathy', 1939, 'F', 144), +(48793, 'Evangeline', 1939, 'F', 144), +(48794, 'Maryellen', 1939, 'F', 144), +(48795, 'George', 1939, 'F', 143), +(48796, 'Ophelia', 1939, 'F', 143), +(48797, 'Phoebe', 1939, 'F', 143), +(48798, 'Twila', 1939, 'F', 143), +(48799, 'Allie', 1939, 'F', 142), +(48800, 'Leta', 1939, 'F', 142), +(48801, 'Lucia', 1939, 'F', 142), +(48802, 'Consuelo', 1939, 'F', 141), +(48803, 'Rowena', 1939, 'F', 140), +(48804, 'Sharlene', 1939, 'F', 139), +(48805, 'Bertie', 1939, 'F', 138), +(48806, 'Florine', 1939, 'F', 138), +(48807, 'Laurie', 1939, 'F', 138), +(48808, 'Charlie', 1939, 'F', 136), +(48809, 'Lynette', 1939, 'F', 136), +(48810, 'Maude', 1939, 'F', 135), +(48811, 'Sheryl', 1939, 'F', 135), +(48812, 'Lauretta', 1939, 'F', 134), +(48813, 'Ardis', 1939, 'F', 133), +(48814, 'Carroll', 1939, 'F', 133), +(48815, 'Nedra', 1939, 'F', 132), +(48816, 'Aileen', 1939, 'F', 131), +(48817, 'Carrol', 1939, 'F', 131), +(48818, 'Madonna', 1939, 'F', 131), +(48819, 'Robin', 1939, 'F', 131), +(48820, 'Shirlene', 1939, 'F', 131), +(48821, 'Theodora', 1939, 'F', 131), +(48822, 'Dottie', 1939, 'F', 128), +(48823, 'Elisabeth', 1939, 'F', 128), +(48824, 'Matilda', 1939, 'F', 128), +(48825, 'Shirlee', 1939, 'F', 128), +(48826, 'Winona', 1939, 'F', 128), +(48827, 'Camilla', 1939, 'F', 127), +(48828, 'Doretha', 1939, 'F', 127), +(48829, 'Elena', 1939, 'F', 127), +(48830, 'Trudy', 1939, 'F', 127), +(48831, 'Vernell', 1939, 'F', 127), +(48832, 'Zelda', 1939, 'F', 127), +(48833, 'Delphine', 1939, 'F', 126), +(48834, 'Leota', 1939, 'F', 126), +(48835, 'Delma', 1939, 'F', 125), +(48836, 'Dian', 1939, 'F', 125), +(48837, 'Ester', 1939, 'F', 125), +(48838, 'Sammie', 1939, 'F', 125), +(48839, 'Alene', 1939, 'F', 124), +(48840, 'Aline', 1939, 'F', 124), +(48841, 'Lorine', 1939, 'F', 123), +(48842, 'Wilhelmina', 1939, 'F', 123), +(48843, 'Beryl', 1939, 'F', 122), +(48844, 'Karla', 1939, 'F', 122), +(48845, 'Marlyn', 1939, 'F', 122), +(48846, 'Oma', 1939, 'F', 122), +(48847, 'Syble', 1939, 'F', 122), +(48848, 'Diann', 1939, 'F', 121), +(48849, 'Kitty', 1939, 'F', 121), +(48850, 'Vickie', 1939, 'F', 121), +(48851, 'Patrica', 1939, 'F', 120), +(48852, 'Harriette', 1939, 'F', 119), +(48853, 'Margot', 1939, 'F', 119), +(48854, 'Dessie', 1939, 'F', 118), +(48855, 'Elise', 1939, 'F', 118), +(48856, 'Alva', 1939, 'F', 117), +(48857, 'Hester', 1939, 'F', 117), +(48858, 'Jerrie', 1939, 'F', 117), +(48859, 'Justine', 1939, 'F', 117), +(48860, 'Leora', 1939, 'F', 117), +(48861, 'Donnie', 1939, 'F', 116), +(48862, 'Germaine', 1939, 'F', 116), +(48863, 'Janelle', 1939, 'F', 116), +(48864, 'Melissa', 1939, 'F', 116), +(48865, 'Velda', 1939, 'F', 116), +(48866, 'Caryl', 1939, 'F', 115), +(48867, 'Dorene', 1939, 'F', 115), +(48868, 'Esperanza', 1939, 'F', 115), +(48869, 'Georgiana', 1939, 'F', 115), +(48870, 'Gussie', 1939, 'F', 115), +(48871, 'Marla', 1939, 'F', 115), +(48872, 'Marylin', 1939, 'F', 115), +(48873, 'Carolee', 1939, 'F', 114), +(48874, 'Maudie', 1939, 'F', 114), +(48875, 'Minerva', 1939, 'F', 114), +(48876, 'Althea', 1939, 'F', 113), +(48877, 'Dorris', 1939, 'F', 113), +(48878, 'Roma', 1939, 'F', 113), +(48879, 'Rosanne', 1939, 'F', 113), +(48880, 'Zella', 1939, 'F', 113), +(48881, 'Karol', 1939, 'F', 112), +(48882, 'Julianne', 1939, 'F', 111), +(48883, 'Dortha', 1939, 'F', 110), +(48884, 'Celeste', 1939, 'F', 109), +(48885, 'Karin', 1939, 'F', 109), +(48886, 'Lucretia', 1939, 'F', 108), +(48887, 'Madge', 1939, 'F', 108), +(48888, 'Ursula', 1939, 'F', 108), +(48889, 'Charleen', 1939, 'F', 107), +(48890, 'Kate', 1939, 'F', 107), +(48891, 'Margret', 1939, 'F', 107), +(48892, 'Pattie', 1939, 'F', 107), +(48893, 'Richard', 1939, 'F', 107), +(48894, 'Birdie', 1939, 'F', 106), +(48895, 'Pearline', 1939, 'F', 106), +(48896, 'Petra', 1939, 'F', 106), +(48897, 'Marilee', 1939, 'F', 105), +(48898, 'Alfreda', 1939, 'F', 104), +(48899, 'Angelita', 1939, 'F', 104), +(48900, 'Clementine', 1939, 'F', 104), +(48901, 'Karolyn', 1939, 'F', 104), +(48902, 'Edythe', 1939, 'F', 103), +(48903, 'Merry', 1939, 'F', 103), +(48904, 'Nila', 1939, 'F', 103), +(48905, 'Louisa', 1939, 'F', 102), +(48906, 'Allene', 1939, 'F', 101), +(48907, 'Celestine', 1939, 'F', 101), +(48908, 'Lavon', 1939, 'F', 101), +(48909, 'Marianna', 1939, 'F', 101), +(48910, 'Rhea', 1939, 'F', 101), +(48911, 'Lettie', 1939, 'F', 100), +(48912, 'Ouida', 1939, 'F', 100), +(48913, 'Paulette', 1939, 'F', 100), +(48914, 'Shelva', 1939, 'F', 100), +(48915, 'Robert', 1939, 'M', 59640), +(48916, 'James', 1939, 'M', 59627), +(48917, 'John', 1939, 'M', 51021), +(48918, 'William', 1939, 'M', 42074), +(48919, 'Richard', 1939, 'M', 35367), +(48920, 'Charles', 1939, 'M', 30782), +(48921, 'David', 1939, 'M', 25359), +(48922, 'Donald', 1939, 'M', 24056), +(48923, 'Thomas', 1939, 'M', 22124), +(48924, 'Ronald', 1939, 'M', 19831), +(48925, 'George', 1939, 'M', 17887), +(48926, 'Joseph', 1939, 'M', 17715), +(48927, 'Kenneth', 1939, 'M', 14704), +(48928, 'Larry', 1939, 'M', 14524), +(48929, 'Edward', 1939, 'M', 14429), +(48930, 'Jerry', 1939, 'M', 13731), +(48931, 'Paul', 1939, 'M', 13330), +(48932, 'Michael', 1939, 'M', 10824), +(48933, 'Gerald', 1939, 'M', 10050), +(48934, 'Frank', 1939, 'M', 9985), +(48935, 'Gary', 1939, 'M', 9680), +(48936, 'Raymond', 1939, 'M', 9246), +(48937, 'Harold', 1939, 'M', 8305), +(48938, 'Billy', 1939, 'M', 7470), +(48939, 'Walter', 1939, 'M', 7318), +(48940, 'Jack', 1939, 'M', 7306), +(48941, 'Joe', 1939, 'M', 7189), +(48942, 'Roger', 1939, 'M', 7151), +(48943, 'Bobby', 1939, 'M', 7048), +(48944, 'Carl', 1939, 'M', 6595), +(48945, 'Henry', 1939, 'M', 6556), +(48946, 'Arthur', 1939, 'M', 6381), +(48947, 'Willie', 1939, 'M', 6301), +(48948, 'Dennis', 1939, 'M', 6211), +(48949, 'Ralph', 1939, 'M', 5956), +(48950, 'Lawrence', 1939, 'M', 5878), +(48951, 'Eugene', 1939, 'M', 5876), +(48952, 'Daniel', 1939, 'M', 5798), +(48953, 'Wayne', 1939, 'M', 5649), +(48954, 'Fred', 1939, 'M', 5534), +(48955, 'Albert', 1939, 'M', 5475), +(48956, 'Roy', 1939, 'M', 5151), +(48957, 'Jimmy', 1939, 'M', 4751), +(48958, 'Norman', 1939, 'M', 4739), +(48959, 'Harry', 1939, 'M', 4662), +(48960, 'Peter', 1939, 'M', 4643), +(48961, 'Anthony', 1939, 'M', 4610), +(48962, 'Howard', 1939, 'M', 4603), +(48963, 'Louis', 1939, 'M', 4225), +(48964, 'Earl', 1939, 'M', 3890), +(48965, 'Melvin', 1939, 'M', 3852), +(48966, 'Marvin', 1939, 'M', 3758), +(48967, 'Francis', 1939, 'M', 3720), +(48968, 'Leonard', 1939, 'M', 3714), +(48969, 'Ernest', 1939, 'M', 3688), +(48970, 'Don', 1939, 'M', 3584), +(48971, 'Stanley', 1939, 'M', 3571), +(48972, 'Douglas', 1939, 'M', 3564), +(48973, 'Dale', 1939, 'M', 3532), +(48974, 'Clarence', 1939, 'M', 3481), +(48975, 'Leroy', 1939, 'M', 3386), +(48976, 'Johnny', 1939, 'M', 3373), +(48977, 'Samuel', 1939, 'M', 3251), +(48978, 'Bruce', 1939, 'M', 3232), +(48979, 'Stephen', 1939, 'M', 3175), +(48980, 'Philip', 1939, 'M', 3172), +(48981, 'Bill', 1939, 'M', 3161), +(48982, 'Herbert', 1939, 'M', 3094), +(48983, 'Gene', 1939, 'M', 3010), +(48984, 'Alfred', 1939, 'M', 2987), +(48985, 'Frederick', 1939, 'M', 2973), +(48986, 'Allen', 1939, 'M', 2926), +(48987, 'Russell', 1939, 'M', 2828), +(48988, 'Ray', 1939, 'M', 2709), +(48989, 'Jim', 1939, 'M', 2636), +(48990, 'Bernard', 1939, 'M', 2628), +(48991, 'Tommy', 1939, 'M', 2621), +(48992, 'Lee', 1939, 'M', 2588), +(48993, 'Patrick', 1939, 'M', 2530), +(48994, 'Jimmie', 1939, 'M', 2524), +(48995, 'Eddie', 1939, 'M', 2509), +(48996, 'Gordon', 1939, 'M', 2508), +(48997, 'Terry', 1939, 'M', 2446), +(48998, 'Andrew', 1939, 'M', 2440), +(48999, 'Alan', 1939, 'M', 2331), +(49000, 'Leon', 1939, 'M', 2329), +(49001, 'Glenn', 1939, 'M', 2302), +(49002, 'Clifford', 1939, 'M', 2291), +(49003, 'Bob', 1939, 'M', 2242), +(49004, 'Theodore', 1939, 'M', 2195), +(49005, 'Martin', 1939, 'M', 2193), +(49006, 'Phillip', 1939, 'M', 2174), +(49007, 'Jerome', 1939, 'M', 2151), +(49008, 'Floyd', 1939, 'M', 2092), +(49009, 'Lloyd', 1939, 'M', 2087), +(49010, 'Edwin', 1939, 'M', 2063), +(49011, 'Tom', 1939, 'M', 2028), +(49012, 'Curtis', 1939, 'M', 2011), +(49013, 'Jesse', 1939, 'M', 2008), +(49014, 'Vernon', 1939, 'M', 1994), +(49015, 'Clyde', 1939, 'M', 1960), +(49016, 'Harvey', 1939, 'M', 1946), +(49017, 'Alvin', 1939, 'M', 1942), +(49018, 'Warren', 1939, 'M', 1891), +(49019, 'Jackie', 1939, 'M', 1890), +(49020, 'Franklin', 1939, 'M', 1855), +(49021, 'Lewis', 1939, 'M', 1855), +(49022, 'Leo', 1939, 'M', 1840), +(49023, 'Ronnie', 1939, 'M', 1825), +(49024, 'Vincent', 1939, 'M', 1813), +(49025, 'Herman', 1939, 'M', 1800), +(49026, 'Charlie', 1939, 'M', 1747), +(49027, 'Arnold', 1939, 'M', 1617), +(49028, 'Cecil', 1939, 'M', 1579), +(49029, 'Gilbert', 1939, 'M', 1553), +(49030, 'Lester', 1939, 'M', 1547), +(49031, 'Keith', 1939, 'M', 1507), +(49032, 'Duane', 1939, 'M', 1493), +(49033, 'Victor', 1939, 'M', 1473), +(49034, 'Johnnie', 1939, 'M', 1455), +(49035, 'Jon', 1939, 'M', 1450), +(49036, 'Rodney', 1939, 'M', 1447), +(49037, 'Glen', 1939, 'M', 1427), +(49038, 'Benjamin', 1939, 'M', 1423), +(49039, 'Allan', 1939, 'M', 1411), +(49040, 'Calvin', 1939, 'M', 1394), +(49041, 'Barry', 1939, 'M', 1376), +(49042, 'Milton', 1939, 'M', 1373), +(49043, 'Mike', 1939, 'M', 1349), +(49044, 'Darrell', 1939, 'M', 1340), +(49045, 'Roland', 1939, 'M', 1329), +(49046, 'Elmer', 1939, 'M', 1328), +(49047, 'Chester', 1939, 'M', 1297), +(49048, 'Joel', 1939, 'M', 1296), +(49049, 'Dean', 1939, 'M', 1295), +(49050, 'Leslie', 1939, 'M', 1294), +(49051, 'Danny', 1939, 'M', 1269), +(49052, 'Freddie', 1939, 'M', 1237), +(49053, 'Steve', 1939, 'M', 1208), +(49054, 'Tony', 1939, 'M', 1175), +(49055, 'Claude', 1939, 'M', 1155), +(49056, 'Jay', 1939, 'M', 1146), +(49057, 'Manuel', 1939, 'M', 1141), +(49058, 'Steven', 1939, 'M', 1131), +(49059, 'Sam', 1939, 'M', 1122), +(49060, 'Wesley', 1939, 'M', 1115), +(49061, 'Willard', 1939, 'M', 1104), +(49062, 'Jose', 1939, 'M', 1094), +(49063, 'Ted', 1939, 'M', 1079), +(49064, 'Lonnie', 1939, 'M', 1070), +(49065, 'Timothy', 1939, 'M', 1068), +(49066, 'Wallace', 1939, 'M', 1068), +(49067, 'Neil', 1939, 'M', 1067), +(49068, 'Jessie', 1939, 'M', 1058), +(49069, 'Marion', 1939, 'M', 1033), +(49070, 'Nicholas', 1939, 'M', 1031), +(49071, 'Maurice', 1939, 'M', 1017), +(49072, 'Edgar', 1939, 'M', 1008), +(49073, 'Oscar', 1939, 'M', 1001), +(49074, 'Hugh', 1939, 'M', 999), +(49075, 'Dan', 1939, 'M', 993), +(49076, 'Max', 1939, 'M', 978), +(49077, 'Everett', 1939, 'M', 976), +(49078, 'Virgil', 1939, 'M', 937), +(49079, 'Morris', 1939, 'M', 927), +(49080, 'Lowell', 1939, 'M', 924), +(49081, 'Lynn', 1939, 'M', 886), +(49082, 'Bennie', 1939, 'M', 877), +(49083, 'Dick', 1939, 'M', 875), +(49084, 'Mark', 1939, 'M', 868), +(49085, 'Karl', 1939, 'M', 866), +(49086, 'Benny', 1939, 'M', 864), +(49087, 'Sidney', 1939, 'M', 861), +(49088, 'Delbert', 1939, 'M', 843), +(49089, 'Lyle', 1939, 'M', 833), +(49090, 'Earnest', 1939, 'M', 809), +(49091, 'Brian', 1939, 'M', 808), +(49092, 'Nelson', 1939, 'M', 802), +(49093, 'Carroll', 1939, 'M', 787), +(49094, 'Homer', 1939, 'M', 783), +(49095, 'Hubert', 1939, 'M', 783), +(49096, 'Marshall', 1939, 'M', 781), +(49097, 'Nathaniel', 1939, 'M', 769), +(49098, 'Luther', 1939, 'M', 760), +(49099, 'Otis', 1939, 'M', 728), +(49100, 'Alexander', 1939, 'M', 723), +(49101, 'Guy', 1939, 'M', 711), +(49102, 'Horace', 1939, 'M', 710), +(49103, 'Ben', 1939, 'M', 707), +(49104, 'Wilbur', 1939, 'M', 702), +(49105, 'Willis', 1939, 'M', 693), +(49106, 'Alton', 1939, 'M', 680), +(49107, 'Dave', 1939, 'M', 663), +(49108, 'Clifton', 1939, 'M', 662), +(49109, 'Clinton', 1939, 'M', 657), +(49110, 'Donnie', 1939, 'M', 638), +(49111, 'Clayton', 1939, 'M', 633), +(49112, 'Fredrick', 1939, 'M', 629), +(49113, 'Loren', 1939, 'M', 626), +(49114, 'Juan', 1939, 'M', 623), +(49115, 'Archie', 1939, 'M', 622), +(49116, 'Matthew', 1939, 'M', 621), +(49117, 'Gregory', 1939, 'M', 599), +(49118, 'Oliver', 1939, 'M', 597), +(49119, 'Alex', 1939, 'M', 596), +(49120, 'Wendell', 1939, 'M', 595), +(49121, 'Stuart', 1939, 'M', 590), +(49122, 'Rudolph', 1939, 'M', 587), +(49123, 'Troy', 1939, 'M', 587), +(49124, 'Roosevelt', 1939, 'M', 586), +(49125, 'Perry', 1939, 'M', 584), +(49126, 'Carlos', 1939, 'M', 580), +(49127, 'Leland', 1939, 'M', 569), +(49128, 'Doyle', 1939, 'M', 568), +(49129, 'Wilbert', 1939, 'M', 566), +(49130, 'Rex', 1939, 'M', 565), +(49131, 'Myron', 1939, 'M', 560), +(49132, 'Byron', 1939, 'M', 554), +(49133, 'Billie', 1939, 'M', 552), +(49134, 'Laurence', 1939, 'M', 548), +(49135, 'Sherman', 1939, 'M', 546), +(49136, 'Pete', 1939, 'M', 543), +(49137, 'Salvatore', 1939, 'M', 533), +(49138, 'Julius', 1939, 'M', 531), +(49139, 'Merle', 1939, 'M', 529), +(49140, 'Ira', 1939, 'M', 525), +(49141, 'Malcolm', 1939, 'M', 523), +(49142, 'Gerard', 1939, 'M', 521), +(49143, 'Ivan', 1939, 'M', 518), +(49144, 'Dallas', 1939, 'M', 509), +(49145, 'Randall', 1939, 'M', 507), +(49146, 'Sammy', 1939, 'M', 502), +(49147, 'Buddy', 1939, 'M', 499), +(49148, 'Carlton', 1939, 'M', 495), +(49149, 'Kent', 1939, 'M', 495), +(49150, 'Orville', 1939, 'M', 494), +(49151, 'Tommie', 1939, 'M', 494), +(49152, 'Eldon', 1939, 'M', 493), +(49153, 'Grady', 1939, 'M', 486), +(49154, 'Ross', 1939, 'M', 480), +(49155, 'Dewey', 1939, 'M', 479), +(49156, 'Darrel', 1939, 'M', 475), +(49157, 'Bobbie', 1939, 'M', 472), +(49158, 'Sylvester', 1939, 'M', 472), +(49159, 'Aaron', 1939, 'M', 471), +(49160, 'Nathan', 1939, 'M', 468), +(49161, 'Edmund', 1939, 'M', 467), +(49162, 'Junior', 1939, 'M', 465), +(49163, 'Isaac', 1939, 'M', 461), +(49164, 'Jesus', 1939, 'M', 459), +(49165, 'Elbert', 1939, 'M', 458), +(49166, 'Julian', 1939, 'M', 457), +(49167, 'Jerald', 1939, 'M', 456), +(49168, 'Ruben', 1939, 'M', 450), +(49169, 'Pat', 1939, 'M', 447), +(49170, 'Neal', 1939, 'M', 443), +(49171, 'Antonio', 1939, 'M', 435), +(49172, 'Eric', 1939, 'M', 431), +(49173, 'Ervin', 1939, 'M', 431), +(49174, 'Rufus', 1939, 'M', 429), +(49175, 'Darryl', 1939, 'M', 427), +(49176, 'Jacob', 1939, 'M', 427), +(49177, 'Rudy', 1939, 'M', 426), +(49178, 'Woodrow', 1939, 'M', 425), +(49179, 'Teddy', 1939, 'M', 421), +(49180, 'Ellis', 1939, 'M', 416), +(49181, 'Mack', 1939, 'M', 416), +(49182, 'Forrest', 1939, 'M', 415), +(49183, 'Ramon', 1939, 'M', 415), +(49184, 'Garry', 1939, 'M', 406), +(49185, 'Tyrone', 1939, 'M', 406), +(49186, 'Nick', 1939, 'M', 405), +(49187, 'Reginald', 1939, 'M', 403), +(49188, 'Wilson', 1939, 'M', 401), +(49189, 'Felix', 1939, 'M', 398), +(49190, 'Clark', 1939, 'M', 396), +(49191, 'Noel', 1939, 'M', 395), +(49192, 'Angelo', 1939, 'M', 394), +(49193, 'Dwight', 1939, 'M', 394), +(49194, 'Irvin', 1939, 'M', 393), +(49195, 'Randolph', 1939, 'M', 393), +(49196, 'Aubrey', 1939, 'M', 389), +(49197, 'Owen', 1939, 'M', 383), +(49198, 'Jeffrey', 1939, 'M', 378), +(49199, 'Sheldon', 1939, 'M', 373), +(49200, 'Bert', 1939, 'M', 371), +(49201, 'Marlin', 1939, 'M', 369), +(49202, 'Wilfred', 1939, 'M', 368), +(49203, 'Loyd', 1939, 'M', 365), +(49204, 'Boyd', 1939, 'M', 361), +(49205, 'Christopher', 1939, 'M', 359), +(49206, 'Percy', 1939, 'M', 359), +(49207, 'Garland', 1939, 'M', 355), +(49208, 'Terrence', 1939, 'M', 354), +(49209, 'Preston', 1939, 'M', 353), +(49210, 'Travis', 1939, 'M', 353), +(49211, 'Conrad', 1939, 'M', 350), +(49212, 'Emmett', 1939, 'M', 349), +(49213, 'Harlan', 1939, 'M', 349), +(49214, 'Craig', 1939, 'M', 348), +(49215, 'Louie', 1939, 'M', 348), +(49216, 'Sammie', 1939, 'M', 348), +(49217, 'Wade', 1939, 'M', 346), +(49218, 'Harley', 1939, 'M', 333), +(49219, 'Darwin', 1939, 'M', 332), +(49220, 'Frankie', 1939, 'M', 332), +(49221, 'Phil', 1939, 'M', 332), +(49222, 'Norbert', 1939, 'M', 330), +(49223, 'Pedro', 1939, 'M', 326), +(49224, 'Irving', 1939, 'M', 322), +(49225, 'Raul', 1939, 'M', 322), +(49226, 'Ned', 1939, 'M', 318), +(49227, 'Grover', 1939, 'M', 316), +(49228, 'Burton', 1939, 'M', 313), +(49229, 'Jan', 1939, 'M', 306), +(49230, 'Royce', 1939, 'M', 298), +(49231, 'Denis', 1939, 'M', 296), +(49232, 'Jonathan', 1939, 'M', 296), +(49233, 'Mitchell', 1939, 'M', 296), +(49234, 'Rodger', 1939, 'M', 294), +(49235, 'Gale', 1939, 'M', 291), +(49236, 'Lance', 1939, 'M', 291), +(49237, 'Grant', 1939, 'M', 290), +(49238, 'Daryl', 1939, 'M', 288), +(49239, 'Stewart', 1939, 'M', 286), +(49240, 'Kenny', 1939, 'M', 285), +(49241, 'Roberto', 1939, 'M', 285), +(49242, 'Kermit', 1939, 'M', 284), +(49243, 'Alfonso', 1939, 'M', 282), +(49244, 'Edmond', 1939, 'M', 281), +(49245, 'Elwood', 1939, 'M', 280), +(49246, 'Freddy', 1939, 'M', 277), +(49247, 'Lionel', 1939, 'M', 277), +(49248, 'Ken', 1939, 'M', 276), +(49249, 'Scott', 1939, 'M', 276), +(49250, 'Amos', 1939, 'M', 275), +(49251, 'Delmar', 1939, 'M', 275), +(49252, 'Emil', 1939, 'M', 274), +(49253, 'Kevin', 1939, 'M', 273), +(49254, 'Melvyn', 1939, 'M', 273), +(49255, 'Mary', 1939, 'M', 272), +(49256, 'Cornelius', 1939, 'M', 269), +(49257, 'Ed', 1939, 'M', 267), +(49258, 'Francisco', 1939, 'M', 266), +(49259, 'Spencer', 1939, 'M', 261), +(49260, 'Cleveland', 1939, 'M', 259), +(49261, 'Carol', 1939, 'M', 258), +(49262, 'Terrance', 1939, 'M', 254), +(49263, 'Andy', 1939, 'M', 252), +(49264, 'Maynard', 1939, 'M', 251), +(49265, 'Moses', 1939, 'M', 250), +(49266, 'Alonzo', 1939, 'M', 249), +(49267, 'Adrian', 1939, 'M', 248), +(49268, 'August', 1939, 'M', 248), +(49269, 'Dominic', 1939, 'M', 247), +(49270, 'Thurman', 1939, 'M', 247), +(49271, 'Chris', 1939, 'M', 246), +(49272, 'Irwin', 1939, 'M', 245), +(49273, 'Merlin', 1939, 'M', 245), +(49274, 'Micheal', 1939, 'M', 245), +(49275, 'Mickey', 1939, 'M', 245), +(49276, 'Tim', 1939, 'M', 245), +(49277, 'Murray', 1939, 'M', 244), +(49278, 'Errol', 1939, 'M', 242), +(49279, 'Luis', 1939, 'M', 241), +(49280, 'Johnie', 1939, 'M', 239), +(49281, 'Lorenzo', 1939, 'M', 239), +(49282, 'Weldon', 1939, 'M', 239), +(49283, 'Mario', 1939, 'M', 238), +(49284, 'Shirley', 1939, 'M', 238), +(49285, 'Elijah', 1939, 'M', 237), +(49286, 'Merrill', 1939, 'M', 235), +(49287, 'Elton', 1939, 'M', 233), +(49288, 'Roscoe', 1939, 'M', 232), +(49289, 'Elvin', 1939, 'M', 231), +(49290, 'Dominick', 1939, 'M', 230), +(49291, 'Marcus', 1939, 'M', 226), +(49292, 'Will', 1939, 'M', 226), +(49293, 'Otto', 1939, 'M', 225), +(49294, 'Monte', 1939, 'M', 224), +(49295, 'Denny', 1939, 'M', 222), +(49296, 'Jasper', 1939, 'M', 222), +(49297, 'Sanford', 1939, 'M', 220), +(49298, 'Gail', 1939, 'M', 217), +(49299, 'Adam', 1939, 'M', 216), +(49300, 'Dwayne', 1939, 'M', 213), +(49301, 'Odell', 1939, 'M', 213), +(49302, 'Lanny', 1939, 'M', 212), +(49303, 'Austin', 1939, 'M', 210), +(49304, 'Lamar', 1939, 'M', 210), +(49305, 'Clair', 1939, 'M', 208), +(49306, 'Wiley', 1939, 'M', 208), +(49307, 'Frederic', 1939, 'M', 207), +(49308, 'Millard', 1939, 'M', 206), +(49309, 'Shelby', 1939, 'M', 206), +(49310, 'Simon', 1939, 'M', 206), +(49311, 'Bradley', 1939, 'M', 205), +(49312, 'Rene', 1939, 'M', 205), +(49313, 'Nolan', 1939, 'M', 204), +(49314, 'Hal', 1939, 'M', 202), +(49315, 'Harrison', 1939, 'M', 202), +(49316, 'Norris', 1939, 'M', 202), +(49317, 'Carmen', 1939, 'M', 200), +(49318, 'Laverne', 1939, 'M', 199), +(49319, 'Al', 1939, 'M', 198), +(49320, 'Ron', 1939, 'M', 198), +(49321, 'Abraham', 1939, 'M', 197), +(49322, 'Elliott', 1939, 'M', 196), +(49323, 'Hollis', 1939, 'M', 196), +(49324, 'Armando', 1939, 'M', 194), +(49325, 'Charley', 1939, 'M', 193), +(49326, 'Emanuel', 1939, 'M', 192), +(49327, 'Monroe', 1939, 'M', 190), +(49328, 'Roderick', 1939, 'M', 189), +(49329, 'Salvador', 1939, 'M', 189), +(49330, 'Wilburn', 1939, 'M', 189), +(49331, 'Barney', 1939, 'M', 188), +(49332, 'Brent', 1939, 'M', 184), +(49333, 'Jake', 1939, 'M', 184), +(49334, 'Hershel', 1939, 'M', 183), +(49335, 'Guadalupe', 1939, 'M', 182), +(49336, 'Van', 1939, 'M', 182), +(49337, 'Coy', 1939, 'M', 181), +(49338, 'Fredric', 1939, 'M', 179), +(49339, 'Ricardo', 1939, 'M', 179), +(49340, 'Emory', 1939, 'M', 178), +(49341, 'Reuben', 1939, 'M', 178), +(49342, 'Bryan', 1939, 'M', 177), +(49343, 'Sterling', 1939, 'M', 177), +(49344, 'Carrol', 1939, 'M', 175), +(49345, 'Truman', 1939, 'M', 174), +(49346, 'Winston', 1939, 'M', 174), +(49347, 'Ernie', 1939, 'M', 172), +(49348, 'Hector', 1939, 'M', 172), +(49349, 'Ollie', 1939, 'M', 170), +(49350, 'Alfredo', 1939, 'M', 169), +(49351, 'Galen', 1939, 'M', 169), +(49352, 'Gerry', 1939, 'M', 169), +(49353, 'Gus', 1939, 'M', 169), +(49354, 'Lavern', 1939, 'M', 169), +(49355, 'Armand', 1939, 'M', 168), +(49356, 'Levi', 1939, 'M', 166), +(49357, 'Robin', 1939, 'M', 166), +(49358, 'Jess', 1939, 'M', 165), +(49359, 'Miles', 1939, 'M', 165), +(49360, 'Buford', 1939, 'M', 164), +(49361, 'Dudley', 1939, 'M', 164), +(49362, 'Linwood', 1939, 'M', 164), +(49363, 'Jeff', 1939, 'M', 163), +(49364, 'Mervin', 1939, 'M', 163), +(49365, 'Emery', 1939, 'M', 162), +(49366, 'Jerrold', 1939, 'M', 162), +(49367, 'Adolph', 1939, 'M', 161), +(49368, 'Jackson', 1939, 'M', 161), +(49369, 'Miguel', 1939, 'M', 161), +(49370, 'Clement', 1939, 'M', 160), +(49371, 'Jerold', 1939, 'M', 158), +(49372, 'Erwin', 1939, 'M', 157), +(49373, 'Jean', 1939, 'M', 157), +(49374, 'Ronny', 1939, 'M', 157), +(49375, 'Rolland', 1939, 'M', 156), +(49376, 'Wilmer', 1939, 'M', 156), +(49377, 'Delmer', 1939, 'M', 155), +(49378, 'Kennith', 1939, 'M', 155), +(49379, 'Ward', 1939, 'M', 154), +(49380, 'Gabriel', 1939, 'M', 153), +(49381, 'Kelly', 1939, 'M', 153), +(49382, 'Barbara', 1939, 'M', 150), +(49383, 'Vance', 1939, 'M', 149), +(49384, 'Vern', 1939, 'M', 149), +(49385, 'Booker', 1939, 'M', 148), +(49386, 'Blaine', 1939, 'M', 145), +(49387, 'Wilford', 1939, 'M', 145), +(49388, 'Dana', 1939, 'M', 144), +(49389, 'Ulysses', 1939, 'M', 144), +(49390, 'Arturo', 1939, 'M', 143), +(49391, 'Harris', 1939, 'M', 143), +(49392, 'Kurt', 1939, 'M', 143), +(49393, 'Cleo', 1939, 'M', 141), +(49394, 'Domingo', 1939, 'M', 141), +(49395, 'Ernesto', 1939, 'M', 141), +(49396, 'Morton', 1939, 'M', 141), +(49397, 'Rocco', 1939, 'M', 141), +(49398, 'Riley', 1939, 'M', 140), +(49399, 'Russel', 1939, 'M', 140), +(49400, 'Silas', 1939, 'M', 140), +(49401, 'Dewayne', 1939, 'M', 139), +(49402, 'Monty', 1939, 'M', 139), +(49403, 'Alva', 1939, 'M', 138), +(49404, 'Elias', 1939, 'M', 138), +(49405, 'Herschel', 1939, 'M', 138), +(49406, 'Randy', 1939, 'M', 137), +(49407, 'Arlen', 1939, 'M', 136), +(49408, 'Vito', 1939, 'M', 136), +(49409, 'Basil', 1939, 'M', 135), +(49410, 'Denver', 1939, 'M', 135), +(49411, 'Fernando', 1939, 'M', 131), +(49412, 'Betty', 1939, 'M', 130), +(49413, 'Bradford', 1939, 'M', 128), +(49414, 'Everette', 1939, 'M', 128), +(49415, 'Arden', 1939, 'M', 127), +(49416, 'Normand', 1939, 'M', 127), +(49417, 'Evan', 1939, 'M', 126), +(49418, 'Rodolfo', 1939, 'M', 126), +(49419, 'Burl', 1939, 'M', 125), +(49420, 'Connie', 1939, 'M', 125), +(49421, 'Dickie', 1939, 'M', 125), +(49422, 'Forest', 1939, 'M', 125), +(49423, 'Gayle', 1939, 'M', 124), +(49424, 'Gaylord', 1939, 'M', 124), +(49425, 'Alphonso', 1939, 'M', 123), +(49426, 'Kay', 1939, 'M', 123), +(49427, 'Clay', 1939, 'M', 122), +(49428, 'Dalton', 1939, 'M', 122), +(49429, 'Huey', 1939, 'M', 122), +(49430, 'Noah', 1939, 'M', 122), +(49431, 'Olin', 1939, 'M', 122), +(49432, 'Alberto', 1939, 'M', 121), +(49433, 'Earle', 1939, 'M', 121), +(49434, 'Barton', 1939, 'M', 120), +(49435, 'Gearld', 1939, 'M', 120), +(49436, 'Terence', 1939, 'M', 120), +(49437, 'Bernie', 1939, 'M', 119), +(49438, 'Freeman', 1939, 'M', 119), +(49439, 'Lyman', 1939, 'M', 119), +(49440, 'Milford', 1939, 'M', 119), +(49441, 'Orlando', 1939, 'M', 119), +(49442, 'Vaughn', 1939, 'M', 118), +(49443, 'Warner', 1939, 'M', 118), +(49444, 'Alden', 1939, 'M', 117), +(49445, 'Carson', 1939, 'M', 117), +(49446, 'Dannie', 1939, 'M', 117), +(49447, 'Solomon', 1939, 'M', 117), +(49448, 'Luke', 1939, 'M', 116), +(49449, 'Odis', 1939, 'M', 116), +(49450, 'Davis', 1939, 'M', 114), +(49451, 'Elmo', 1939, 'M', 113), +(49452, 'Winfred', 1939, 'M', 113), +(49453, 'Enrique', 1939, 'M', 112), +(49454, 'Kendall', 1939, 'M', 112), +(49455, 'Royal', 1939, 'M', 112), +(49456, 'Seymour', 1939, 'M', 112), +(49457, 'Lenard', 1939, 'M', 111), +(49458, 'Rafael', 1939, 'M', 111), +(49459, 'Rogers', 1939, 'M', 111), +(49460, 'Theron', 1939, 'M', 111), +(49461, 'Eli', 1939, 'M', 110), +(49462, 'Patricia', 1939, 'M', 110), +(49463, 'Tomas', 1939, 'M', 110), +(49464, 'Tracy', 1939, 'M', 110), +(49465, 'Carmine', 1939, 'M', 109), +(49466, 'Cyril', 1939, 'M', 108), +(49467, 'Eddy', 1939, 'M', 108), +(49468, 'Pasquale', 1939, 'M', 107), +(49469, 'Thaddeus', 1939, 'M', 107), +(49470, 'Anton', 1939, 'M', 106), +(49471, 'Gilberto', 1939, 'M', 106), +(49472, 'Bennett', 1939, 'M', 105), +(49473, 'Kirk', 1939, 'M', 105), +(49474, 'Haywood', 1939, 'M', 104), +(49475, 'Jeremiah', 1939, 'M', 104), +(49476, 'Morgan', 1939, 'M', 104), +(49477, 'Major', 1939, 'M', 103), +(49478, 'Anderson', 1939, 'M', 102), +(49479, 'Fletcher', 1939, 'M', 102), +(49480, 'Hoyt', 1939, 'M', 102), +(49481, 'Maxie', 1939, 'M', 102), +(49482, 'Alphonse', 1939, 'M', 101), +(49483, 'Dwain', 1939, 'M', 101), +(49484, 'Isiah', 1939, 'M', 101), +(49485, 'Joshua', 1939, 'M', 101), +(49486, 'Kyle', 1939, 'M', 101), +(49487, 'Wilton', 1939, 'M', 100), +(49488, 'Mary', 1940, 'F', 56195), +(49489, 'Barbara', 1940, 'F', 36732), +(49490, 'Patricia', 1940, 'F', 32661), +(49491, 'Judith', 1940, 'F', 22380), +(49492, 'Betty', 1940, 'F', 22074), +(49493, 'Carol', 1940, 'F', 21759), +(49494, 'Nancy', 1940, 'F', 19730), +(49495, 'Linda', 1940, 'F', 18369), +(49496, 'Shirley', 1940, 'F', 17872), +(49497, 'Sandra', 1940, 'F', 16151), +(49498, 'Margaret', 1940, 'F', 15057), +(49499, 'Dorothy', 1940, 'F', 14873), +(49500, 'Joyce', 1940, 'F', 14801), +(49501, 'Joan', 1940, 'F', 13288), +(49502, 'Carolyn', 1940, 'F', 12656), +(49503, 'Judy', 1940, 'F', 11381), +(49504, 'Sharon', 1940, 'F', 11117), +(49505, 'Helen', 1940, 'F', 10201), +(49506, 'Janet', 1940, 'F', 10104), +(49507, 'Elizabeth', 1940, 'F', 9953), +(49508, 'Virginia', 1940, 'F', 9552), +(49509, 'Janice', 1940, 'F', 9315), +(49510, 'Donna', 1940, 'F', 9229), +(49511, 'Ruth', 1940, 'F', 8886), +(49512, 'Marilyn', 1940, 'F', 8700), +(49513, 'Martha', 1940, 'F', 8692), +(49514, 'Beverly', 1940, 'F', 8654), +(49515, 'Frances', 1940, 'F', 8617), +(49516, 'Jean', 1940, 'F', 8063), +(49517, 'Gloria', 1940, 'F', 8025), +(49518, 'Doris', 1940, 'F', 7765), +(49519, 'Alice', 1940, 'F', 7601), +(49520, 'Phyllis', 1940, 'F', 7415), +(49521, 'Karen', 1940, 'F', 7283), +(49522, 'Ann', 1940, 'F', 7193), +(49523, 'Susan', 1940, 'F', 6757), +(49524, 'Peggy', 1940, 'F', 6127), +(49525, 'Lois', 1940, 'F', 6126), +(49526, 'Bonnie', 1940, 'F', 5959), +(49527, 'Kathleen', 1940, 'F', 5698), +(49528, 'Marie', 1940, 'F', 5544), +(49529, 'Brenda', 1940, 'F', 5441), +(49530, 'Norma', 1940, 'F', 5334), +(49531, 'Rose', 1940, 'F', 5197), +(49532, 'Diane', 1940, 'F', 5173), +(49533, 'Geraldine', 1940, 'F', 5152), +(49534, 'Jane', 1940, 'F', 5090), +(49535, 'Evelyn', 1940, 'F', 4984), +(49536, 'Carole', 1940, 'F', 4788), +(49537, 'Elaine', 1940, 'F', 4782), +(49538, 'Anna', 1940, 'F', 4718), +(49539, 'Wanda', 1940, 'F', 4709), +(49540, 'Catherine', 1940, 'F', 4581), +(49541, 'Joanne', 1940, 'F', 4419), +(49542, 'Charlotte', 1940, 'F', 4289), +(49543, 'Annie', 1940, 'F', 4214), +(49544, 'Patsy', 1940, 'F', 4079), +(49545, 'Mildred', 1940, 'F', 3935), +(49546, 'Louise', 1940, 'F', 3924), +(49547, 'Sarah', 1940, 'F', 3870), +(49548, 'Sally', 1940, 'F', 3805), +(49549, 'Sylvia', 1940, 'F', 3802), +(49550, 'Joann', 1940, 'F', 3791), +(49551, 'Marjorie', 1940, 'F', 3681), +(49552, 'Gail', 1940, 'F', 3622), +(49553, 'Ruby', 1940, 'F', 3617), +(49554, 'Dolores', 1940, 'F', 3606), +(49555, 'Eleanor', 1940, 'F', 3582), +(49556, 'Loretta', 1940, 'F', 3501), +(49557, 'Rita', 1940, 'F', 3440), +(49558, 'Roberta', 1940, 'F', 3432), +(49559, 'Jo', 1940, 'F', 3427), +(49560, 'Irene', 1940, 'F', 3397), +(49561, 'Ellen', 1940, 'F', 3317), +(49562, 'Arlene', 1940, 'F', 3258), +(49563, 'Jacqueline', 1940, 'F', 3218), +(49564, 'Kay', 1940, 'F', 3199), +(49565, 'Juanita', 1940, 'F', 3170), +(49566, 'Darlene', 1940, 'F', 3120), +(49567, 'Marlene', 1940, 'F', 3116), +(49568, 'Sue', 1940, 'F', 3105), +(49569, 'June', 1940, 'F', 2948), +(49570, 'Delores', 1940, 'F', 2929), +(49571, 'Anne', 1940, 'F', 2898), +(49572, 'Rosemary', 1940, 'F', 2874), +(49573, 'Edna', 1940, 'F', 2834), +(49574, 'Anita', 1940, 'F', 2827), +(49575, 'Connie', 1940, 'F', 2795), +(49576, 'Josephine', 1940, 'F', 2741), +(49577, 'Jeanette', 1940, 'F', 2727), +(49578, 'Katherine', 1940, 'F', 2709), +(49579, 'Julia', 1940, 'F', 2706), +(49580, 'Wilma', 1940, 'F', 2621), +(49581, 'Emma', 1940, 'F', 2606), +(49582, 'Lorraine', 1940, 'F', 2582), +(49583, 'Rebecca', 1940, 'F', 2555), +(49584, 'Lillian', 1940, 'F', 2524), +(49585, 'Edith', 1940, 'F', 2509), +(49586, 'Audrey', 1940, 'F', 2502), +(49587, 'Florence', 1940, 'F', 2465), +(49588, 'Thelma', 1940, 'F', 2459), +(49589, 'Theresa', 1940, 'F', 2441), +(49590, 'Kathryn', 1940, 'F', 2439), +(49591, 'Pauline', 1940, 'F', 2409), +(49592, 'Grace', 1940, 'F', 2385), +(49593, 'Ethel', 1940, 'F', 2374), +(49594, 'Laura', 1940, 'F', 2351), +(49595, 'Glenda', 1940, 'F', 2350), +(49596, 'Suzanne', 1940, 'F', 2337), +(49597, 'Yvonne', 1940, 'F', 2321), +(49598, 'Clara', 1940, 'F', 2315), +(49599, 'Marcia', 1940, 'F', 2272), +(49600, 'Lucille', 1940, 'F', 2270), +(49601, 'Margie', 1940, 'F', 2266), +(49602, 'Vivian', 1940, 'F', 2261), +(49603, 'Gladys', 1940, 'F', 2245), +(49604, 'Diana', 1940, 'F', 2193), +(49605, 'Christine', 1940, 'F', 2161), +(49606, 'Maria', 1940, 'F', 2136), +(49607, 'Marion', 1940, 'F', 2111), +(49608, 'Bernice', 1940, 'F', 2089), +(49609, 'Sara', 1940, 'F', 2087), +(49610, 'Hazel', 1940, 'F', 2068), +(49611, 'Constance', 1940, 'F', 2039), +(49612, 'Eileen', 1940, 'F', 2034), +(49613, 'Annette', 1940, 'F', 2003), +(49614, 'Priscilla', 1940, 'F', 1969), +(49615, 'Willie', 1940, 'F', 1936), +(49616, 'Jeanne', 1940, 'F', 1927), +(49617, 'Sheila', 1940, 'F', 1922), +(49618, 'Esther', 1940, 'F', 1901), +(49619, 'Eva', 1940, 'F', 1888), +(49620, 'Cynthia', 1940, 'F', 1880), +(49621, 'Pat', 1940, 'F', 1863), +(49622, 'Maureen', 1940, 'F', 1810), +(49623, 'Deanna', 1940, 'F', 1800), +(49624, 'Maxine', 1940, 'F', 1784), +(49625, 'Georgia', 1940, 'F', 1773), +(49626, 'Rosalie', 1940, 'F', 1735), +(49627, 'Bertha', 1940, 'F', 1730), +(49628, 'Beatrice', 1940, 'F', 1728), +(49629, 'Marian', 1940, 'F', 1693), +(49630, 'Lillie', 1940, 'F', 1691), +(49631, 'Ida', 1940, 'F', 1688), +(49632, 'Charlene', 1940, 'F', 1686), +(49633, 'Ella', 1940, 'F', 1670), +(49634, 'Bobbie', 1940, 'F', 1632), +(49635, 'Rosa', 1940, 'F', 1551), +(49636, 'Billie', 1940, 'F', 1484), +(49637, 'Myrna', 1940, 'F', 1471), +(49638, 'Elsie', 1940, 'F', 1466), +(49639, 'Alma', 1940, 'F', 1429), +(49640, 'Faye', 1940, 'F', 1391), +(49641, 'Lucy', 1940, 'F', 1380), +(49642, 'Paula', 1940, 'F', 1372), +(49643, 'Maryann', 1940, 'F', 1365), +(49644, 'Harriet', 1940, 'F', 1362), +(49645, 'Jessie', 1940, 'F', 1334), +(49646, 'Vera', 1940, 'F', 1321), +(49647, 'Joy', 1940, 'F', 1310), +(49648, 'Nellie', 1940, 'F', 1298), +(49649, 'Bessie', 1940, 'F', 1297), +(49650, 'Mattie', 1940, 'F', 1293), +(49651, 'Emily', 1940, 'F', 1269), +(49652, 'Lynda', 1940, 'F', 1266), +(49653, 'Rachel', 1940, 'F', 1264), +(49654, 'Dianne', 1940, 'F', 1234), +(49655, 'Minnie', 1940, 'F', 1227), +(49656, 'Gwendolyn', 1940, 'F', 1222), +(49657, 'Agnes', 1940, 'F', 1190), +(49658, 'Dixie', 1940, 'F', 1169), +(49659, 'Caroline', 1940, 'F', 1161), +(49660, 'Rosemarie', 1940, 'F', 1128), +(49661, 'Rosie', 1940, 'F', 1120), +(49662, 'Patty', 1940, 'F', 1101), +(49663, 'Carrie', 1940, 'F', 1092), +(49664, 'Gayle', 1940, 'F', 1086), +(49665, 'Geneva', 1940, 'F', 1071), +(49666, 'Naomi', 1940, 'F', 1053), +(49667, 'Julie', 1940, 'F', 1040), +(49668, 'Dora', 1940, 'F', 1038), +(49669, 'Jeannette', 1940, 'F', 1038), +(49670, 'Leona', 1940, 'F', 1026), +(49671, 'Myrtle', 1940, 'F', 1019), +(49672, 'Mae', 1940, 'F', 1018), +(49673, 'Gertrude', 1940, 'F', 1010), +(49674, 'Shelby', 1940, 'F', 1007), +(49675, 'Velma', 1940, 'F', 987), +(49676, 'Jackie', 1940, 'F', 982), +(49677, 'Cora', 1940, 'F', 965), +(49678, 'Viola', 1940, 'F', 965), +(49679, 'Stella', 1940, 'F', 962), +(49680, 'Lynn', 1940, 'F', 955), +(49681, 'Claire', 1940, 'F', 950), +(49682, 'Alberta', 1940, 'F', 926), +(49683, 'Nina', 1940, 'F', 912), +(49684, 'Pearl', 1940, 'F', 908), +(49685, 'Hattie', 1940, 'F', 893), +(49686, 'Sondra', 1940, 'F', 879), +(49687, 'Madeline', 1940, 'F', 872), +(49688, 'Deloris', 1940, 'F', 869), +(49689, 'Eunice', 1940, 'F', 869), +(49690, 'Lola', 1940, 'F', 866), +(49691, 'Verna', 1940, 'F', 865), +(49692, 'Claudia', 1940, 'F', 861), +(49693, 'Johnnie', 1940, 'F', 860), +(49694, 'Sherry', 1940, 'F', 859), +(49695, 'Marianne', 1940, 'F', 846), +(49696, 'Nora', 1940, 'F', 843), +(49697, 'Ramona', 1940, 'F', 840), +(49698, 'Carmen', 1940, 'F', 823), +(49699, 'Lula', 1940, 'F', 819), +(49700, 'Janie', 1940, 'F', 811), +(49701, 'Valerie', 1940, 'F', 799), +(49702, 'Hilda', 1940, 'F', 797), +(49703, 'Lena', 1940, 'F', 794), +(49704, 'Violet', 1940, 'F', 783), +(49705, 'Daisy', 1940, 'F', 774), +(49706, 'Ernestine', 1940, 'F', 768), +(49707, 'Marguerite', 1940, 'F', 757), +(49708, 'Fannie', 1940, 'F', 751), +(49709, 'Iris', 1940, 'F', 750), +(49710, 'Irma', 1940, 'F', 749), +(49711, 'Myra', 1940, 'F', 749), +(49712, 'Bettie', 1940, 'F', 748), +(49713, 'Lynne', 1940, 'F', 742), +(49714, 'Antoinette', 1940, 'F', 741), +(49715, 'Marsha', 1940, 'F', 741), +(49716, 'Erma', 1940, 'F', 740), +(49717, 'Miriam', 1940, 'F', 736), +(49718, 'Susie', 1940, 'F', 736), +(49719, 'Melba', 1940, 'F', 731), +(49720, 'Bette', 1940, 'F', 729), +(49721, 'Angela', 1940, 'F', 727), +(49722, 'Lydia', 1940, 'F', 725), +(49723, 'Regina', 1940, 'F', 720), +(49724, 'Marcella', 1940, 'F', 714), +(49725, 'Sonja', 1940, 'F', 713), +(49726, 'Andrea', 1940, 'F', 708), +(49727, 'Bettye', 1940, 'F', 704), +(49728, 'Jacquelyn', 1940, 'F', 693), +(49729, 'Flora', 1940, 'F', 687), +(49730, 'Victoria', 1940, 'F', 687), +(49731, 'Teresa', 1940, 'F', 686), +(49732, 'Mamie', 1940, 'F', 675), +(49733, 'Ada', 1940, 'F', 665), +(49734, 'Jennie', 1940, 'F', 661), +(49735, 'Della', 1940, 'F', 649), +(49736, 'Colleen', 1940, 'F', 648), +(49737, 'Katie', 1940, 'F', 636), +(49738, 'Pamela', 1940, 'F', 631), +(49739, 'Cecilia', 1940, 'F', 628), +(49740, 'Beulah', 1940, 'F', 621), +(49741, 'Genevieve', 1940, 'F', 616), +(49742, 'Betsy', 1940, 'F', 607), +(49743, 'Kathy', 1940, 'F', 604), +(49744, 'Mable', 1940, 'F', 589), +(49745, 'Muriel', 1940, 'F', 580), +(49746, 'Laverne', 1940, 'F', 579), +(49747, 'Janis', 1940, 'F', 578), +(49748, 'Cecelia', 1940, 'F', 567), +(49749, 'Inez', 1940, 'F', 566), +(49750, 'Veronica', 1940, 'F', 566), +(49751, 'Mabel', 1940, 'F', 550), +(49752, 'Reba', 1940, 'F', 550), +(49753, 'Eula', 1940, 'F', 541), +(49754, 'Henrietta', 1940, 'F', 540), +(49755, 'Nelda', 1940, 'F', 540), +(49756, 'Olivia', 1940, 'F', 540), +(49757, 'Lila', 1940, 'F', 529), +(49758, 'Sadie', 1940, 'F', 525), +(49759, 'Jerry', 1940, 'F', 522), +(49760, 'Opal', 1940, 'F', 521), +(49761, 'Claudette', 1940, 'F', 518), +(49762, 'Bonita', 1940, 'F', 516), +(49763, 'Frankie', 1940, 'F', 515), +(49764, 'Maggie', 1940, 'F', 513), +(49765, 'Eloise', 1940, 'F', 512), +(49766, 'Amelia', 1940, 'F', 504), +(49767, 'Fay', 1940, 'F', 498), +(49768, 'Lou', 1940, 'F', 494), +(49769, 'Penny', 1940, 'F', 493), +(49770, 'Lee', 1940, 'F', 492), +(49771, 'Freda', 1940, 'F', 487), +(49772, 'Saundra', 1940, 'F', 485), +(49773, 'Nadine', 1940, 'F', 484), +(49774, 'Sallie', 1940, 'F', 479), +(49775, 'Jimmie', 1940, 'F', 476), +(49776, 'Gretchen', 1940, 'F', 471), +(49777, 'Beth', 1940, 'F', 470), +(49778, 'Mona', 1940, 'F', 470), +(49779, 'Deborah', 1940, 'F', 469), +(49780, 'Rosetta', 1940, 'F', 464), +(49781, 'Glenna', 1940, 'F', 463), +(49782, 'Rochelle', 1940, 'F', 460), +(49783, 'Blanche', 1940, 'F', 458), +(49784, 'Sharron', 1940, 'F', 455), +(49785, 'Lorene', 1940, 'F', 445), +(49786, 'Carla', 1940, 'F', 439), +(49787, 'Penelope', 1940, 'F', 439), +(49788, 'Earnestine', 1940, 'F', 433), +(49789, 'Helene', 1940, 'F', 429), +(49790, 'Dawn', 1940, 'F', 427), +(49791, 'Nettie', 1940, 'F', 426), +(49792, 'Etta', 1940, 'F', 425), +(49793, 'Lana', 1940, 'F', 424), +(49794, 'Ina', 1940, 'F', 423), +(49795, 'Ollie', 1940, 'F', 423), +(49796, 'Essie', 1940, 'F', 420), +(49797, 'Gracie', 1940, 'F', 420), +(49798, 'Ora', 1940, 'F', 420), +(49799, 'Lorna', 1940, 'F', 416), +(49800, 'Polly', 1940, 'F', 416), +(49801, 'Joanna', 1940, 'F', 414), +(49802, 'Lenora', 1940, 'F', 410), +(49803, 'Vicki', 1940, 'F', 405), +(49804, 'Dorthy', 1940, 'F', 402), +(49805, 'Ruthie', 1940, 'F', 401), +(49806, 'Natalie', 1940, 'F', 394), +(49807, 'Stephanie', 1940, 'F', 394), +(49808, 'Amy', 1940, 'F', 389), +(49809, 'Jill', 1940, 'F', 389), +(49810, 'Gale', 1940, 'F', 388), +(49811, 'Estelle', 1940, 'F', 385), +(49812, 'Winifred', 1940, 'F', 384), +(49813, 'Sandy', 1940, 'F', 382), +(49814, 'Celia', 1940, 'F', 381), +(49815, 'Iva', 1940, 'F', 378), +(49816, 'Willa', 1940, 'F', 374), +(49817, 'Faith', 1940, 'F', 372), +(49818, 'Terry', 1940, 'F', 370), +(49819, 'Rosalind', 1940, 'F', 368), +(49820, 'Sybil', 1940, 'F', 368), +(49821, 'Leah', 1940, 'F', 365), +(49822, 'Earlene', 1940, 'F', 362), +(49823, 'Imogene', 1940, 'F', 361), +(49824, 'Estella', 1940, 'F', 357), +(49825, 'Gwen', 1940, 'F', 357), +(49826, 'Darla', 1940, 'F', 356), +(49827, 'Kaye', 1940, 'F', 355), +(49828, 'Earline', 1940, 'F', 354), +(49829, 'Yolanda', 1940, 'F', 352), +(49830, 'Beverley', 1940, 'F', 350), +(49831, 'Dorothea', 1940, 'F', 350), +(49832, 'Addie', 1940, 'F', 349), +(49833, 'Becky', 1940, 'F', 347), +(49834, 'Ola', 1940, 'F', 347), +(49835, 'Pearlie', 1940, 'F', 347), +(49836, 'Molly', 1940, 'F', 346), +(49837, 'Christina', 1940, 'F', 345), +(49838, 'Josie', 1940, 'F', 337), +(49839, 'Lela', 1940, 'F', 335), +(49840, 'Lupe', 1940, 'F', 333), +(49841, 'Mavis', 1940, 'F', 333), +(49842, 'Olga', 1940, 'F', 333), +(49843, 'Jan', 1940, 'F', 331), +(49844, 'Marilynn', 1940, 'F', 331), +(49845, 'Lavonne', 1940, 'F', 330), +(49846, 'Fern', 1940, 'F', 328), +(49847, 'Denise', 1940, 'F', 327), +(49848, 'Isabel', 1940, 'F', 327), +(49849, 'Lottie', 1940, 'F', 327), +(49850, 'Bernadine', 1940, 'F', 324), +(49851, 'Bernadette', 1940, 'F', 323), +(49852, 'Adele', 1940, 'F', 322), +(49853, 'Jewel', 1940, 'F', 322), +(49854, 'Leola', 1940, 'F', 321), +(49855, 'Susanne', 1940, 'F', 320), +(49856, 'Janette', 1940, 'F', 319), +(49857, 'Francis', 1940, 'F', 317), +(49858, 'Rhoda', 1940, 'F', 315), +(49859, 'Cecile', 1940, 'F', 310), +(49860, 'Alicia', 1940, 'F', 309), +(49861, 'Clarice', 1940, 'F', 309), +(49862, 'Jewell', 1940, 'F', 309), +(49863, 'Renee', 1940, 'F', 309), +(49864, 'Robbie', 1940, 'F', 309), +(49865, 'Gay', 1940, 'F', 308), +(49866, 'Rena', 1940, 'F', 308), +(49867, 'Margo', 1940, 'F', 305), +(49868, 'Harriett', 1940, 'F', 304), +(49869, 'Dale', 1940, 'F', 303), +(49870, 'Melinda', 1940, 'F', 302), +(49871, 'Cleo', 1940, 'F', 301), +(49872, 'Elva', 1940, 'F', 301), +(49873, 'Marylou', 1940, 'F', 300), +(49874, 'Sonia', 1940, 'F', 299), +(49875, 'Toni', 1940, 'F', 299), +(49876, 'Adrienne', 1940, 'F', 298), +(49877, 'Francine', 1940, 'F', 298), +(49878, 'Camille', 1940, 'F', 297), +(49879, 'Marva', 1940, 'F', 297), +(49880, 'Nell', 1940, 'F', 295), +(49881, 'Carlene', 1940, 'F', 294), +(49882, 'Jeannine', 1940, 'F', 294), +(49883, 'Marlys', 1940, 'F', 294), +(49884, 'Alta', 1940, 'F', 291), +(49885, 'Guadalupe', 1940, 'F', 291), +(49886, 'Effie', 1940, 'F', 290), +(49887, 'Lizzie', 1940, 'F', 290), +(49888, 'Melva', 1940, 'F', 290), +(49889, 'Eddie', 1940, 'F', 289), +(49890, 'Dianna', 1940, 'F', 287), +(49891, 'Judie', 1940, 'F', 287), +(49892, 'Laurel', 1940, 'F', 287), +(49893, 'Virgie', 1940, 'F', 287), +(49894, 'Monica', 1940, 'F', 286), +(49895, 'Cheryl', 1940, 'F', 285), +(49896, 'Elinor', 1940, 'F', 285), +(49897, 'May', 1940, 'F', 285), +(49898, 'Doreen', 1940, 'F', 281), +(49899, 'Lora', 1940, 'F', 280), +(49900, 'Jeannie', 1940, 'F', 279), +(49901, 'Tommie', 1940, 'F', 277), +(49902, 'Elnora', 1940, 'F', 275), +(49903, 'Dolly', 1940, 'F', 271), +(49904, 'Johanna', 1940, 'F', 269), +(49905, 'Arleen', 1940, 'F', 268), +(49906, 'Arline', 1940, 'F', 267), +(49907, 'Dona', 1940, 'F', 267), +(49908, 'Edwina', 1940, 'F', 266), +(49909, 'Goldie', 1940, 'F', 266), +(49910, 'Margarita', 1940, 'F', 261), +(49911, 'James', 1940, 'F', 259), +(49912, 'Nola', 1940, 'F', 259), +(49913, 'Delia', 1940, 'F', 256), +(49914, 'Leslie', 1940, 'F', 255), +(49915, 'Wendy', 1940, 'F', 254), +(49916, 'Cornelia', 1940, 'F', 251), +(49917, 'Luella', 1940, 'F', 251), +(49918, 'Eugenia', 1940, 'F', 250), +(49919, 'Noreen', 1940, 'F', 249), +(49920, 'Winnie', 1940, 'F', 247), +(49921, 'Dana', 1940, 'F', 245), +(49922, 'Jeanie', 1940, 'F', 245), +(49923, 'Jannie', 1940, 'F', 244), +(49924, 'Nona', 1940, 'F', 243), +(49925, 'Patti', 1940, 'F', 242), +(49926, 'Mollie', 1940, 'F', 241), +(49927, 'Elvira', 1940, 'F', 239), +(49928, 'Jenny', 1940, 'F', 239), +(49929, 'Lenore', 1940, 'F', 239), +(49930, 'Angie', 1940, 'F', 237), +(49931, 'Merle', 1940, 'F', 237), +(49932, 'Rosalyn', 1940, 'F', 236), +(49933, 'Corinne', 1940, 'F', 234), +(49934, 'Marietta', 1940, 'F', 234), +(49935, 'Millie', 1940, 'F', 233), +(49936, 'Freddie', 1940, 'F', 230), +(49937, 'Angelina', 1940, 'F', 227), +(49938, 'Ilene', 1940, 'F', 227), +(49939, 'Paulette', 1940, 'F', 224), +(49940, 'Amanda', 1940, 'F', 218), +(49941, 'Joe', 1940, 'F', 217), +(49942, 'Therese', 1940, 'F', 217), +(49943, 'Corrine', 1940, 'F', 216), +(49944, 'Angeline', 1940, 'F', 214), +(49945, 'Dollie', 1940, 'F', 214), +(49946, 'Hope', 1940, 'F', 212), +(49947, 'Ila', 1940, 'F', 212), +(49948, 'Margery', 1940, 'F', 212), +(49949, 'Roseann', 1940, 'F', 211), +(49950, 'John', 1940, 'F', 208), +(49951, 'Jayne', 1940, 'F', 207), +(49952, 'Alyce', 1940, 'F', 206), +(49953, 'Maryanne', 1940, 'F', 206), +(49954, 'Robert', 1940, 'F', 206), +(49955, 'Robin', 1940, 'F', 206), +(49956, 'Wilda', 1940, 'F', 205), +(49957, 'Elma', 1940, 'F', 204), +(49958, 'Lucinda', 1940, 'F', 203), +(49959, 'Neva', 1940, 'F', 203), +(49960, 'Adeline', 1940, 'F', 202), +(49961, 'Ginger', 1940, 'F', 202), +(49962, 'Nannie', 1940, 'F', 202), +(49963, 'Judi', 1940, 'F', 201), +(49964, 'Peggie', 1940, 'F', 201), +(49965, 'Frieda', 1940, 'F', 200), +(49966, 'Helena', 1940, 'F', 200), +(49967, 'Louella', 1940, 'F', 200), +(49968, 'Melanie', 1940, 'F', 200), +(49969, 'Rosalee', 1940, 'F', 200), +(49970, 'Rosella', 1940, 'F', 200), +(49971, 'Antonia', 1940, 'F', 199), +(49972, 'Dottie', 1940, 'F', 198), +(49973, 'Sonya', 1940, 'F', 198), +(49974, 'Queen', 1940, 'F', 197), +(49975, 'Rae', 1940, 'F', 197), +(49976, 'Retha', 1940, 'F', 197), +(49977, 'Sherrill', 1940, 'F', 197), +(49978, 'Carmela', 1940, 'F', 196), +(49979, 'Letha', 1940, 'F', 196), +(49980, 'Reva', 1940, 'F', 196), +(49981, 'Ruthann', 1940, 'F', 196), +(49982, 'Bennie', 1940, 'F', 195), +(49983, 'Cathy', 1940, 'F', 195), +(49984, 'Avis', 1940, 'F', 192), +(49985, 'Jeanine', 1940, 'F', 192), +(49986, 'Madeleine', 1940, 'F', 192), +(49987, 'Carmella', 1940, 'F', 191), +(49988, 'Zelma', 1940, 'F', 190), +(49989, 'Nan', 1940, 'F', 189), +(49990, 'Annabelle', 1940, 'F', 188), +(49991, 'Isabelle', 1940, 'F', 188), +(49992, 'Delois', 1940, 'F', 187), +(49993, 'Hannah', 1940, 'F', 187), +(49994, 'Gerry', 1940, 'F', 186), +(49995, 'Jolene', 1940, 'F', 186), +(49996, 'Lily', 1940, 'F', 186), +(49997, 'Madelyn', 1940, 'F', 185), +(49998, 'Odessa', 1940, 'F', 184), +(49999, 'Roxie', 1940, 'F', 184), +(50000, 'Deanne', 1940, 'F', 183), +(50001, 'Leila', 1940, 'F', 182), +(50002, 'Corine', 1940, 'F', 181), +(50003, 'Tamara', 1940, 'F', 179), +(50004, 'Maryellen', 1940, 'F', 178), +(50005, 'Callie', 1940, 'F', 175), +(50006, 'Dee', 1940, 'F', 175), +(50007, 'Nita', 1940, 'F', 174), +(50008, 'Shelba', 1940, 'F', 174), +(50009, 'Clare', 1940, 'F', 173), +(50010, 'Evangeline', 1940, 'F', 172), +(50011, 'Meredith', 1940, 'F', 172), +(50012, 'Tina', 1940, 'F', 172), +(50013, 'Ladonna', 1940, 'F', 171), +(50014, 'Olive', 1940, 'F', 169), +(50015, 'Sophie', 1940, 'F', 169), +(50016, 'Eleanore', 1940, 'F', 168), +(50017, 'Ardith', 1940, 'F', 166), +(50018, 'Lilly', 1940, 'F', 166), +(50019, 'Lucile', 1940, 'F', 166), +(50020, 'Annetta', 1940, 'F', 164), +(50021, 'Pansy', 1940, 'F', 164), +(50022, 'Trudy', 1940, 'F', 164), +(50023, 'Claudine', 1940, 'F', 163), +(50024, 'Lorena', 1940, 'F', 163), +(50025, 'Maryjane', 1940, 'F', 163), +(50026, 'Emilie', 1940, 'F', 162), +(50027, 'Georgianna', 1940, 'F', 161), +(50028, 'Loraine', 1940, 'F', 161), +(50029, 'Vickie', 1940, 'F', 161), +(50030, 'Georgie', 1940, 'F', 160), +(50031, 'Katharine', 1940, 'F', 160), +(50032, 'Roslyn', 1940, 'F', 160), +(50033, 'Florine', 1940, 'F', 158), +(50034, 'Lucia', 1940, 'F', 158), +(50035, 'Nedra', 1940, 'F', 158), +(50036, 'Elouise', 1940, 'F', 157), +(50037, 'Carroll', 1940, 'F', 156), +(50038, 'Flossie', 1940, 'F', 156), +(50039, 'Gearldine', 1940, 'F', 156), +(50040, 'Reta', 1940, 'F', 156), +(50041, 'Matilda', 1940, 'F', 155), +(50042, 'Sheryl', 1940, 'F', 155), +(50043, 'Aurora', 1940, 'F', 154), +(50044, 'Carrol', 1940, 'F', 154), +(50045, 'Caryl', 1940, 'F', 154), +(50046, 'Concetta', 1940, 'F', 154), +(50047, 'Doretha', 1940, 'F', 154), +(50048, 'Ima', 1940, 'F', 153), +(50049, 'Ester', 1940, 'F', 152), +(50050, 'Lelia', 1940, 'F', 152), +(50051, 'William', 1940, 'F', 151), +(50052, 'Kitty', 1940, 'F', 150), +(50053, 'Ophelia', 1940, 'F', 150), +(50054, 'Phoebe', 1940, 'F', 150), +(50055, 'Selma', 1940, 'F', 150), +(50056, 'Bobby', 1940, 'F', 149), +(50057, 'Greta', 1940, 'F', 149), +(50058, 'Sharlene', 1940, 'F', 149), +(50059, 'Consuelo', 1940, 'F', 148), +(50060, 'Eliza', 1940, 'F', 148), +(50061, 'Vivien', 1940, 'F', 148), +(50062, 'Allie', 1940, 'F', 147), +(50063, 'Esperanza', 1940, 'F', 147), +(50064, 'Marla', 1940, 'F', 147), +(50065, 'Toby', 1940, 'F', 147), +(50066, 'Lucretia', 1940, 'F', 146), +(50067, 'Maude', 1940, 'F', 146), +(50068, 'Twila', 1940, 'F', 146), +(50069, 'Vernell', 1940, 'F', 146), +(50070, 'Lona', 1940, 'F', 145), +(50071, 'Lynette', 1940, 'F', 145), +(50072, 'Freida', 1940, 'F', 141), +(50073, 'Lessie', 1940, 'F', 141), +(50074, 'Suellen', 1940, 'F', 141), +(50075, 'Celeste', 1940, 'F', 140), +(50076, 'Charles', 1940, 'F', 140), +(50077, 'Marlyn', 1940, 'F', 140), +(50078, 'Justine', 1940, 'F', 139), +(50079, 'Karla', 1940, 'F', 137), +(50080, 'Karol', 1940, 'F', 137), +(50081, 'Madonna', 1940, 'F', 137), +(50082, 'Vonda', 1940, 'F', 137), +(50083, 'Aileen', 1940, 'F', 136), +(50084, 'Aline', 1940, 'F', 136), +(50085, 'Darleen', 1940, 'F', 135), +(50086, 'Elena', 1940, 'F', 135), +(50087, 'Laurie', 1940, 'F', 135), +(50088, 'Louisa', 1940, 'F', 135), +(50089, 'Mercedes', 1940, 'F', 135), +(50090, 'Charlie', 1940, 'F', 134), +(50091, 'Diann', 1940, 'F', 134), +(50092, 'Leta', 1940, 'F', 134), +(50093, 'Sammie', 1940, 'F', 134), +(50094, 'Leota', 1940, 'F', 133), +(50095, 'Hester', 1940, 'F', 132), +(50096, 'Julianne', 1940, 'F', 132), +(50097, 'Lauretta', 1940, 'F', 132), +(50098, 'Harriette', 1940, 'F', 131), +(50099, 'Treva', 1940, 'F', 131), +(50100, 'Beryl', 1940, 'F', 130), +(50101, 'George', 1940, 'F', 129), +(50102, 'Gussie', 1940, 'F', 129), +(50103, 'Karin', 1940, 'F', 129), +(50104, 'Winona', 1940, 'F', 129), +(50105, 'Belva', 1940, 'F', 128), +(50106, 'Lorine', 1940, 'F', 128), +(50107, 'Rosanne', 1940, 'F', 128), +(50108, 'Zelda', 1940, 'F', 128), +(50109, 'Ardis', 1940, 'F', 127), +(50110, 'Carolann', 1940, 'F', 127), +(50111, 'Madge', 1940, 'F', 127), +(50112, 'Marilee', 1940, 'F', 127), +(50113, 'Delma', 1940, 'F', 126), +(50114, 'Theodora', 1940, 'F', 126), +(50115, 'Carolee', 1940, 'F', 125), +(50116, 'Dian', 1940, 'F', 125), +(50117, 'Georgette', 1940, 'F', 125), +(50118, 'Margot', 1940, 'F', 125), +(50119, 'Celestine', 1940, 'F', 124), +(50120, 'Jeraldine', 1940, 'F', 124), +(50121, 'Merry', 1940, 'F', 124), +(50122, 'Bertie', 1940, 'F', 123), +(50123, 'Camilla', 1940, 'F', 123), +(50124, 'Jerrie', 1940, 'F', 123), +(50125, 'Pearline', 1940, 'F', 123), +(50126, 'Roma', 1940, 'F', 123), +(50127, 'Elsa', 1940, 'F', 122), +(50128, 'Charleen', 1940, 'F', 121), +(50129, 'Maudie', 1940, 'F', 121), +(50130, 'Rowena', 1940, 'F', 121), +(50131, 'Yvette', 1940, 'F', 119), +(50132, 'Cathleen', 1940, 'F', 117), +(50133, 'Delphine', 1940, 'F', 116), +(50134, 'Elise', 1940, 'F', 116), +(50135, 'Georgiana', 1940, 'F', 116), +(50136, 'Alfreda', 1940, 'F', 115), +(50137, 'Birdie', 1940, 'F', 115), +(50138, 'Donnie', 1940, 'F', 115), +(50139, 'Alene', 1940, 'F', 114), +(50140, 'Elisabeth', 1940, 'F', 114), +(50141, 'Verla', 1940, 'F', 114), +(50142, 'Vicky', 1940, 'F', 114), +(50143, 'Zella', 1940, 'F', 114), +(50144, 'Lue', 1940, 'F', 113), +(50145, 'Pattie', 1940, 'F', 113), +(50146, 'Cherry', 1940, 'F', 112), +(50147, 'Adelaide', 1940, 'F', 110), +(50148, 'Barbra', 1940, 'F', 110), +(50149, 'Marjory', 1940, 'F', 110), +(50150, 'Shirlene', 1940, 'F', 110), +(50151, 'Syble', 1940, 'F', 110), +(50152, 'Jaunita', 1940, 'F', 108), +(50153, 'Petra', 1940, 'F', 108), +(50154, 'Richard', 1940, 'F', 108), +(50155, 'Vada', 1940, 'F', 108), +(50156, 'Carolynn', 1940, 'F', 107), +(50157, 'Edythe', 1940, 'F', 107), +(50158, 'Karolyn', 1940, 'F', 107), +(50159, 'Heather', 1940, 'F', 106), +(50160, 'Roselyn', 1940, 'F', 106), +(50161, 'April', 1940, 'F', 105), +(50162, 'Clementine', 1940, 'F', 105), +(50163, 'Dorene', 1940, 'F', 105), +(50164, 'Karon', 1940, 'F', 105), +(50165, 'Minerva', 1940, 'F', 105), +(50166, 'Ronda', 1940, 'F', 105), +(50167, 'Sophia', 1940, 'F', 105), +(50168, 'Wilhelmina', 1940, 'F', 105), +(50169, 'Susanna', 1940, 'F', 104), +(50170, 'Carleen', 1940, 'F', 103), +(50171, 'Lonnie', 1940, 'F', 103), +(50172, 'Margret', 1940, 'F', 103), +(50173, 'Velda', 1940, 'F', 103), +(50174, 'Crystal', 1940, 'F', 102), +(50175, 'Gertie', 1940, 'F', 102), +(50176, 'Janelle', 1940, 'F', 102), +(50177, 'Jennifer', 1940, 'F', 102), +(50178, 'Malinda', 1940, 'F', 102), +(50179, 'Michele', 1940, 'F', 102), +(50180, 'Althea', 1940, 'F', 101), +(50181, 'Felicia', 1940, 'F', 101), +(50182, 'Lavon', 1940, 'F', 101), +(50183, 'Millicent', 1940, 'F', 101), +(50184, 'Dessie', 1940, 'F', 100), +(50185, 'Marianna', 1940, 'F', 100), +(50186, 'Mickey', 1940, 'F', 100), +(50187, 'Ofelia', 1940, 'F', 100), +(50188, 'James', 1940, 'M', 62472), +(50189, 'Robert', 1940, 'M', 61192), +(50190, 'John', 1940, 'M', 54763), +(50191, 'William', 1940, 'M', 44768), +(50192, 'Richard', 1940, 'M', 37414), +(50193, 'Charles', 1940, 'M', 31678), +(50194, 'David', 1940, 'M', 27683), +(50195, 'Thomas', 1940, 'M', 23985), +(50196, 'Donald', 1940, 'M', 23103), +(50197, 'Ronald', 1940, 'M', 20731), +(50198, 'George', 1940, 'M', 18307), +(50199, 'Joseph', 1940, 'M', 18201), +(50200, 'Larry', 1940, 'M', 17200), +(50201, 'Jerry', 1940, 'M', 15198), +(50202, 'Kenneth', 1940, 'M', 15132), +(50203, 'Edward', 1940, 'M', 14400), +(50204, 'Paul', 1940, 'M', 14101), +(50205, 'Michael', 1940, 'M', 13231), +(50206, 'Gary', 1940, 'M', 12567), +(50207, 'Frank', 1940, 'M', 10596), +(50208, 'Gerald', 1940, 'M', 10240), +(50209, 'Raymond', 1940, 'M', 9567), +(50210, 'Harold', 1940, 'M', 8072), +(50211, 'Dennis', 1940, 'M', 7845), +(50212, 'Walter', 1940, 'M', 7723), +(50213, 'Roger', 1940, 'M', 7599), +(50214, 'Billy', 1940, 'M', 7594), +(50215, 'Joe', 1940, 'M', 7222), +(50216, 'Jack', 1940, 'M', 7045), +(50217, 'Bobby', 1940, 'M', 6881), +(50218, 'Henry', 1940, 'M', 6819), +(50219, 'Carl', 1940, 'M', 6753), +(50220, 'Arthur', 1940, 'M', 6507), +(50221, 'Daniel', 1940, 'M', 6219); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(50222, 'Lawrence', 1940, 'M', 6172), +(50223, 'Willie', 1940, 'M', 6170), +(50224, 'Ralph', 1940, 'M', 5835), +(50225, 'Eugene', 1940, 'M', 5798), +(50226, 'Wayne', 1940, 'M', 5725), +(50227, 'Fred', 1940, 'M', 5586), +(50228, 'Albert', 1940, 'M', 5569), +(50229, 'Roy', 1940, 'M', 5563), +(50230, 'Peter', 1940, 'M', 5050), +(50231, 'Jimmy', 1940, 'M', 4963), +(50232, 'Howard', 1940, 'M', 4825), +(50233, 'Anthony', 1940, 'M', 4767), +(50234, 'Harry', 1940, 'M', 4677), +(50235, 'Norman', 1940, 'M', 4577), +(50236, 'Stephen', 1940, 'M', 4423), +(50237, 'Louis', 1940, 'M', 4324), +(50238, 'Johnny', 1940, 'M', 3995), +(50239, 'Earl', 1940, 'M', 3942), +(50240, 'Melvin', 1940, 'M', 3933), +(50241, 'Leonard', 1940, 'M', 3813), +(50242, 'Bruce', 1940, 'M', 3789), +(50243, 'Douglas', 1940, 'M', 3731), +(50244, 'Dale', 1940, 'M', 3697), +(50245, 'Ernest', 1940, 'M', 3696), +(50246, 'Stanley', 1940, 'M', 3691), +(50247, 'Philip', 1940, 'M', 3674), +(50248, 'Francis', 1940, 'M', 3606), +(50249, 'Don', 1940, 'M', 3543), +(50250, 'Marvin', 1940, 'M', 3499), +(50251, 'Clarence', 1940, 'M', 3483), +(50252, 'Samuel', 1940, 'M', 3363), +(50253, 'Leroy', 1940, 'M', 3310), +(50254, 'Bill', 1940, 'M', 3268), +(50255, 'Frederick', 1940, 'M', 3092), +(50256, 'Alfred', 1940, 'M', 3064), +(50257, 'Gene', 1940, 'M', 3060), +(50258, 'Allen', 1940, 'M', 3031), +(50259, 'Russell', 1940, 'M', 3011), +(50260, 'Terry', 1940, 'M', 2982), +(50261, 'Patrick', 1940, 'M', 2883), +(50262, 'Herbert', 1940, 'M', 2873), +(50263, 'Tommy', 1940, 'M', 2826), +(50264, 'Ray', 1940, 'M', 2792), +(50265, 'Jim', 1940, 'M', 2713), +(50266, 'Phillip', 1940, 'M', 2626), +(50267, 'Lee', 1940, 'M', 2624), +(50268, 'Eddie', 1940, 'M', 2579), +(50269, 'Bernard', 1940, 'M', 2468), +(50270, 'Glenn', 1940, 'M', 2465), +(50271, 'Andrew', 1940, 'M', 2430), +(50272, 'Martin', 1940, 'M', 2423), +(50273, 'Jimmie', 1940, 'M', 2407), +(50274, 'Franklin', 1940, 'M', 2390), +(50275, 'Alan', 1940, 'M', 2377), +(50276, 'Leon', 1940, 'M', 2315), +(50277, 'Theodore', 1940, 'M', 2306), +(50278, 'Gordon', 1940, 'M', 2294), +(50279, 'Tom', 1940, 'M', 2286), +(50280, 'Jesse', 1940, 'M', 2206), +(50281, 'Clifford', 1940, 'M', 2184), +(50282, 'Jerome', 1940, 'M', 2177), +(50283, 'Edwin', 1940, 'M', 2115), +(50284, 'Curtis', 1940, 'M', 2102), +(50285, 'Harvey', 1940, 'M', 2084), +(50286, 'Bob', 1940, 'M', 2082), +(50287, 'Lloyd', 1940, 'M', 2066), +(50288, 'Ronnie', 1940, 'M', 2051), +(50289, 'Clyde', 1940, 'M', 2012), +(50290, 'Floyd', 1940, 'M', 2011), +(50291, 'Vincent', 1940, 'M', 1974), +(50292, 'Vernon', 1940, 'M', 1942), +(50293, 'Alvin', 1940, 'M', 1912), +(50294, 'Lewis', 1940, 'M', 1900), +(50295, 'Jackie', 1940, 'M', 1888), +(50296, 'Barry', 1940, 'M', 1834), +(50297, 'Warren', 1940, 'M', 1810), +(50298, 'Charlie', 1940, 'M', 1764), +(50299, 'Leo', 1940, 'M', 1751), +(50300, 'Herman', 1940, 'M', 1669), +(50301, 'Wendell', 1940, 'M', 1625), +(50302, 'Allan', 1940, 'M', 1607), +(50303, 'Cecil', 1940, 'M', 1592), +(50304, 'Lester', 1940, 'M', 1591), +(50305, 'Arnold', 1940, 'M', 1579), +(50306, 'Steven', 1940, 'M', 1570), +(50307, 'Victor', 1940, 'M', 1566), +(50308, 'Steve', 1940, 'M', 1554), +(50309, 'Mike', 1940, 'M', 1550), +(50310, 'Jon', 1940, 'M', 1546), +(50311, 'Gilbert', 1940, 'M', 1528), +(50312, 'Keith', 1940, 'M', 1512), +(50313, 'Danny', 1940, 'M', 1478), +(50314, 'Calvin', 1940, 'M', 1471), +(50315, 'Benjamin', 1940, 'M', 1446), +(50316, 'Johnnie', 1940, 'M', 1445), +(50317, 'Glen', 1940, 'M', 1433), +(50318, 'Darrell', 1940, 'M', 1431), +(50319, 'Milton', 1940, 'M', 1425), +(50320, 'Rodney', 1940, 'M', 1398), +(50321, 'Timothy', 1940, 'M', 1387), +(50322, 'Duane', 1940, 'M', 1386), +(50323, 'Leslie', 1940, 'M', 1368), +(50324, 'Chester', 1940, 'M', 1352), +(50325, 'Freddie', 1940, 'M', 1318), +(50326, 'Jay', 1940, 'M', 1294), +(50327, 'Joel', 1940, 'M', 1278), +(50328, 'Roland', 1940, 'M', 1265), +(50329, 'Tony', 1940, 'M', 1231), +(50330, 'Dean', 1940, 'M', 1222), +(50331, 'Elmer', 1940, 'M', 1218), +(50332, 'Claude', 1940, 'M', 1196), +(50333, 'Wallace', 1940, 'M', 1172), +(50334, 'Manuel', 1940, 'M', 1171), +(50335, 'Jose', 1940, 'M', 1169), +(50336, 'Mark', 1940, 'M', 1165), +(50337, 'Sam', 1940, 'M', 1147), +(50338, 'Willard', 1940, 'M', 1137), +(50339, 'Wesley', 1940, 'M', 1127), +(50340, 'Lonnie', 1940, 'M', 1102), +(50341, 'Nicholas', 1940, 'M', 1102), +(50342, 'Dan', 1940, 'M', 1097), +(50343, 'Neil', 1940, 'M', 1066), +(50344, 'Hugh', 1940, 'M', 1059), +(50345, 'Marion', 1940, 'M', 1049), +(50346, 'Lynn', 1940, 'M', 1047), +(50347, 'Ted', 1940, 'M', 1047), +(50348, 'Maurice', 1940, 'M', 1031), +(50349, 'Jessie', 1940, 'M', 1018), +(50350, 'Brian', 1940, 'M', 1011), +(50351, 'Edgar', 1940, 'M', 984), +(50352, 'Max', 1940, 'M', 951), +(50353, 'Virgil', 1940, 'M', 937), +(50354, 'Oscar', 1940, 'M', 936), +(50355, 'Sidney', 1940, 'M', 927), +(50356, 'Everett', 1940, 'M', 926), +(50357, 'Morris', 1940, 'M', 912), +(50358, 'Dick', 1940, 'M', 911), +(50359, 'Lowell', 1940, 'M', 870), +(50360, 'Lyle', 1940, 'M', 865), +(50361, 'Karl', 1940, 'M', 856), +(50362, 'Bennie', 1940, 'M', 843), +(50363, 'Nathaniel', 1940, 'M', 833), +(50364, 'Luther', 1940, 'M', 825), +(50365, 'Ben', 1940, 'M', 815), +(50366, 'Benny', 1940, 'M', 814), +(50367, 'Delbert', 1940, 'M', 812), +(50368, 'Marshall', 1940, 'M', 810), +(50369, 'Nelson', 1940, 'M', 807), +(50370, 'Jeffrey', 1940, 'M', 801), +(50371, 'Earnest', 1940, 'M', 795), +(50372, 'Homer', 1940, 'M', 774), +(50373, 'Dave', 1940, 'M', 769), +(50374, 'Alexander', 1940, 'M', 761), +(50375, 'Hubert', 1940, 'M', 761), +(50376, 'Gregory', 1940, 'M', 757), +(50377, 'Carroll', 1940, 'M', 754), +(50378, 'Fredrick', 1940, 'M', 741), +(50379, 'Guy', 1940, 'M', 716), +(50380, 'Wilbur', 1940, 'M', 705), +(50381, 'Alton', 1940, 'M', 692), +(50382, 'Stuart', 1940, 'M', 680), +(50383, 'Juan', 1940, 'M', 676), +(50384, 'Donnie', 1940, 'M', 674), +(50385, 'Matthew', 1940, 'M', 665), +(50386, 'Horace', 1940, 'M', 662), +(50387, 'Otis', 1940, 'M', 662), +(50388, 'Carlos', 1940, 'M', 658), +(50389, 'Clifton', 1940, 'M', 641), +(50390, 'Roosevelt', 1940, 'M', 635), +(50391, 'Clinton', 1940, 'M', 632), +(50392, 'Ira', 1940, 'M', 625), +(50393, 'Rudolph', 1940, 'M', 623), +(50394, 'Doyle', 1940, 'M', 621), +(50395, 'Alex', 1940, 'M', 618), +(50396, 'Willis', 1940, 'M', 608), +(50397, 'Leland', 1940, 'M', 607), +(50398, 'Laurence', 1940, 'M', 604), +(50399, 'Clayton', 1940, 'M', 603), +(50400, 'Archie', 1940, 'M', 601), +(50401, 'Loren', 1940, 'M', 586), +(50402, 'Oliver', 1940, 'M', 582), +(50403, 'Kent', 1940, 'M', 578), +(50404, 'Sammy', 1940, 'M', 577), +(50405, 'Troy', 1940, 'M', 577), +(50406, 'Myron', 1940, 'M', 566), +(50407, 'Wilbert', 1940, 'M', 566), +(50408, 'Julius', 1940, 'M', 565), +(50409, 'Garry', 1940, 'M', 557), +(50410, 'Tommie', 1940, 'M', 556), +(50411, 'Gerard', 1940, 'M', 553), +(50412, 'Perry', 1940, 'M', 553), +(50413, 'Byron', 1940, 'M', 549), +(50414, 'Malcolm', 1940, 'M', 548), +(50415, 'Rex', 1940, 'M', 547), +(50416, 'Dewey', 1940, 'M', 542), +(50417, 'Ivan', 1940, 'M', 542), +(50418, 'Salvatore', 1940, 'M', 533), +(50419, 'Sherman', 1940, 'M', 532), +(50420, 'Randall', 1940, 'M', 530), +(50421, 'Jacob', 1940, 'M', 514), +(50422, 'Pete', 1940, 'M', 514), +(50423, 'Reginald', 1940, 'M', 514), +(50424, 'Aaron', 1940, 'M', 513), +(50425, 'Julian', 1940, 'M', 511), +(50426, 'Neal', 1940, 'M', 507), +(50427, 'Jerald', 1940, 'M', 501), +(50428, 'Christopher', 1940, 'M', 499), +(50429, 'Edmund', 1940, 'M', 498), +(50430, 'Nathan', 1940, 'M', 497), +(50431, 'Carlton', 1940, 'M', 492), +(50432, 'Grady', 1940, 'M', 489), +(50433, 'Isaac', 1940, 'M', 487), +(50434, 'Eldon', 1940, 'M', 484), +(50435, 'Dallas', 1940, 'M', 483), +(50436, 'Eric', 1940, 'M', 482), +(50437, 'Pat', 1940, 'M', 482), +(50438, 'Billie', 1940, 'M', 479), +(50439, 'Darrel', 1940, 'M', 473), +(50440, 'Elbert', 1940, 'M', 469), +(50441, 'Merle', 1940, 'M', 467), +(50442, 'Jesus', 1940, 'M', 463), +(50443, 'Orville', 1940, 'M', 462), +(50444, 'Sylvester', 1940, 'M', 462), +(50445, 'Antonio', 1940, 'M', 460), +(50446, 'Mack', 1940, 'M', 458), +(50447, 'Ross', 1940, 'M', 458), +(50448, 'Rufus', 1940, 'M', 458), +(50449, 'Dwight', 1940, 'M', 457), +(50450, 'Teddy', 1940, 'M', 450), +(50451, 'Buddy', 1940, 'M', 448), +(50452, 'Wilson', 1940, 'M', 447), +(50453, 'Woodrow', 1940, 'M', 444), +(50454, 'Ruben', 1940, 'M', 443), +(50455, 'Bobbie', 1940, 'M', 442), +(50456, 'Ramon', 1940, 'M', 439), +(50457, 'Ellis', 1940, 'M', 433), +(50458, 'Junior', 1940, 'M', 429), +(50459, 'Rudy', 1940, 'M', 428), +(50460, 'Clark', 1940, 'M', 426), +(50461, 'Ervin', 1940, 'M', 417), +(50462, 'Wade', 1940, 'M', 411), +(50463, 'Irvin', 1940, 'M', 410), +(50464, 'Nick', 1940, 'M', 408), +(50465, 'Forrest', 1940, 'M', 407), +(50466, 'Darryl', 1940, 'M', 404), +(50467, 'Terrence', 1940, 'M', 397), +(50468, 'Angelo', 1940, 'M', 395), +(50469, 'Frankie', 1940, 'M', 394), +(50470, 'Felix', 1940, 'M', 390), +(50471, 'Sheldon', 1940, 'M', 385), +(50472, 'Bert', 1940, 'M', 384), +(50473, 'Craig', 1940, 'M', 383), +(50474, 'Randolph', 1940, 'M', 383), +(50475, 'Preston', 1940, 'M', 381), +(50476, 'Conrad', 1940, 'M', 376), +(50477, 'Boyd', 1940, 'M', 375), +(50478, 'Noel', 1940, 'M', 375), +(50479, 'Garland', 1940, 'M', 367), +(50480, 'Mickey', 1940, 'M', 364), +(50481, 'Owen', 1940, 'M', 363), +(50482, 'Travis', 1940, 'M', 355), +(50483, 'Aubrey', 1940, 'M', 354), +(50484, 'Phil', 1940, 'M', 354), +(50485, 'Tyrone', 1940, 'M', 352), +(50486, 'Jan', 1940, 'M', 350), +(50487, 'Harley', 1940, 'M', 345), +(50488, 'Burton', 1940, 'M', 344), +(50489, 'Sammie', 1940, 'M', 342), +(50490, 'Scott', 1940, 'M', 340), +(50491, 'Emmett', 1940, 'M', 338), +(50492, 'Daryl', 1940, 'M', 334), +(50493, 'Royce', 1940, 'M', 334), +(50494, 'Louie', 1940, 'M', 333), +(50495, 'Tim', 1940, 'M', 333), +(50496, 'Loyd', 1940, 'M', 330), +(50497, 'Winston', 1940, 'M', 330), +(50498, 'Percy', 1940, 'M', 329), +(50499, 'Mitchell', 1940, 'M', 325), +(50500, 'Wilfred', 1940, 'M', 325), +(50501, 'Grant', 1940, 'M', 317), +(50502, 'Kenny', 1940, 'M', 317), +(50503, 'Chris', 1940, 'M', 316), +(50504, 'Pedro', 1940, 'M', 316), +(50505, 'Marlin', 1940, 'M', 315), +(50506, 'Rodger', 1940, 'M', 315), +(50507, 'Darwin', 1940, 'M', 309), +(50508, 'Gale', 1940, 'M', 307), +(50509, 'Grover', 1940, 'M', 307), +(50510, 'Roberto', 1940, 'M', 307), +(50511, 'Freddy', 1940, 'M', 306), +(50512, 'Francisco', 1940, 'M', 303), +(50513, 'Ken', 1940, 'M', 303), +(50514, 'Mary', 1940, 'M', 303), +(50515, 'Raul', 1940, 'M', 303), +(50516, 'Lanny', 1940, 'M', 302), +(50517, 'Harlan', 1940, 'M', 301), +(50518, 'Kermit', 1940, 'M', 300), +(50519, 'Kevin', 1940, 'M', 298), +(50520, 'Micheal', 1940, 'M', 298), +(50521, 'Mario', 1940, 'M', 294), +(50522, 'Irving', 1940, 'M', 292), +(50523, 'Brent', 1940, 'M', 288), +(50524, 'Elwood', 1940, 'M', 288), +(50525, 'Norbert', 1940, 'M', 287), +(50526, 'Ned', 1940, 'M', 282), +(50527, 'Jeff', 1940, 'M', 278), +(50528, 'Amos', 1940, 'M', 277), +(50529, 'Jonathan', 1940, 'M', 277), +(50530, 'Moses', 1940, 'M', 275), +(50531, 'Edmond', 1940, 'M', 274), +(50532, 'Denis', 1940, 'M', 272), +(50533, 'Alfonso', 1940, 'M', 271), +(50534, 'Stewart', 1940, 'M', 270), +(50535, 'Cleveland', 1940, 'M', 265), +(50536, 'Emil', 1940, 'M', 263), +(50537, 'Cornelius', 1940, 'M', 262), +(50538, 'Lionel', 1940, 'M', 260), +(50539, 'Murray', 1940, 'M', 259), +(50540, 'Spencer', 1940, 'M', 259), +(50541, 'Andy', 1940, 'M', 257), +(50542, 'August', 1940, 'M', 257), +(50543, 'Alonzo', 1940, 'M', 256), +(50544, 'Maynard', 1940, 'M', 256), +(50545, 'Lance', 1940, 'M', 254), +(50546, 'Melvyn', 1940, 'M', 254), +(50547, 'Terrance', 1940, 'M', 254), +(50548, 'Carol', 1940, 'M', 253), +(50549, 'Marcus', 1940, 'M', 252), +(50550, 'Ed', 1940, 'M', 251), +(50551, 'Merlin', 1940, 'M', 249), +(50552, 'Errol', 1940, 'M', 246), +(50553, 'Austin', 1940, 'M', 245), +(50554, 'Luis', 1940, 'M', 242), +(50555, 'Thurman', 1940, 'M', 241), +(50556, 'Sanford', 1940, 'M', 240), +(50557, 'Elton', 1940, 'M', 239), +(50558, 'Adrian', 1940, 'M', 237), +(50559, 'Dominick', 1940, 'M', 236), +(50560, 'Dominic', 1940, 'M', 233), +(50561, 'Monte', 1940, 'M', 232), +(50562, 'Dwayne', 1940, 'M', 231), +(50563, 'Laverne', 1940, 'M', 231), +(50564, 'Bradley', 1940, 'M', 230), +(50565, 'Johnie', 1940, 'M', 230), +(50566, 'Irwin', 1940, 'M', 228), +(50567, 'Adam', 1940, 'M', 227), +(50568, 'Delmar', 1940, 'M', 227), +(50569, 'Otto', 1940, 'M', 227), +(50570, 'Nolan', 1940, 'M', 222), +(50571, 'Jasper', 1940, 'M', 221), +(50572, 'Carmen', 1940, 'M', 220), +(50573, 'Abraham', 1940, 'M', 219), +(50574, 'Gerry', 1940, 'M', 216), +(50575, 'Merrill', 1940, 'M', 215), +(50576, 'Ron', 1940, 'M', 215), +(50577, 'Shirley', 1940, 'M', 214), +(50578, 'Roscoe', 1940, 'M', 213), +(50579, 'Wiley', 1940, 'M', 213), +(50580, 'Lamar', 1940, 'M', 211), +(50581, 'Truman', 1940, 'M', 210), +(50582, 'Millard', 1940, 'M', 209), +(50583, 'Ricardo', 1940, 'M', 209), +(50584, 'Will', 1940, 'M', 209), +(50585, 'Odell', 1940, 'M', 208), +(50586, 'Salvador', 1940, 'M', 208), +(50587, 'Lorenzo', 1940, 'M', 206), +(50588, 'Norris', 1940, 'M', 205), +(50589, 'Weldon', 1940, 'M', 205), +(50590, 'Sterling', 1940, 'M', 204), +(50591, 'Charley', 1940, 'M', 201), +(50592, 'Elijah', 1940, 'M', 201), +(50593, 'Robin', 1940, 'M', 201), +(50594, 'Bryan', 1940, 'M', 200), +(50595, 'Elvin', 1940, 'M', 200), +(50596, 'Elliott', 1940, 'M', 198), +(50597, 'Ollie', 1940, 'M', 198), +(50598, 'Frederic', 1940, 'M', 197), +(50599, 'Hollis', 1940, 'M', 197), +(50600, 'Hal', 1940, 'M', 196), +(50601, 'Monroe', 1940, 'M', 196), +(50602, 'Guadalupe', 1940, 'M', 195), +(50603, 'Armando', 1940, 'M', 194), +(50604, 'Barney', 1940, 'M', 194), +(50605, 'Kurt', 1940, 'M', 194), +(50606, 'Coy', 1940, 'M', 193), +(50607, 'Gabriel', 1940, 'M', 193), +(50608, 'Hector', 1940, 'M', 193), +(50609, 'Simon', 1940, 'M', 193), +(50610, 'Kennith', 1940, 'M', 192), +(50611, 'Gail', 1940, 'M', 190), +(50612, 'Reuben', 1940, 'M', 190), +(50613, 'Denny', 1940, 'M', 187), +(50614, 'Buford', 1940, 'M', 186), +(50615, 'Emanuel', 1940, 'M', 186), +(50616, 'Emory', 1940, 'M', 186), +(50617, 'Erwin', 1940, 'M', 184), +(50618, 'Wilburn', 1940, 'M', 184), +(50619, 'Jerold', 1940, 'M', 182), +(50620, 'Randy', 1940, 'M', 181), +(50621, 'Harrison', 1940, 'M', 179), +(50622, 'Jake', 1940, 'M', 177), +(50623, 'Shelby', 1940, 'M', 177), +(50624, 'Adolph', 1940, 'M', 176), +(50625, 'Van', 1940, 'M', 176), +(50626, 'Clair', 1940, 'M', 175), +(50627, 'Lavern', 1940, 'M', 174), +(50628, 'Rolland', 1940, 'M', 174), +(50629, 'Ernie', 1940, 'M', 172), +(50630, 'Carrol', 1940, 'M', 170), +(50631, 'Galen', 1940, 'M', 170), +(50632, 'Jess', 1940, 'M', 170), +(50633, 'Miguel', 1940, 'M', 170), +(50634, 'Alfredo', 1940, 'M', 168), +(50635, 'Rene', 1940, 'M', 168), +(50636, 'Jackson', 1940, 'M', 167), +(50637, 'Al', 1940, 'M', 166), +(50638, 'Vance', 1940, 'M', 165), +(50639, 'Vern', 1940, 'M', 165), +(50640, 'Fernando', 1940, 'M', 164), +(50641, 'Levi', 1940, 'M', 164), +(50642, 'Linwood', 1940, 'M', 163), +(50643, 'Arturo', 1940, 'M', 162), +(50644, 'Roderick', 1940, 'M', 162), +(50645, 'Clement', 1940, 'M', 160), +(50646, 'Connie', 1940, 'M', 159), +(50647, 'Harris', 1940, 'M', 158), +(50648, 'Wilmer', 1940, 'M', 158), +(50649, 'Booker', 1940, 'M', 156), +(50650, 'Dewayne', 1940, 'M', 156), +(50651, 'Dudley', 1940, 'M', 156), +(50652, 'Hershel', 1940, 'M', 154), +(50653, 'Ulysses', 1940, 'M', 154), +(50654, 'Winfred', 1940, 'M', 154), +(50655, 'Gus', 1940, 'M', 153), +(50656, 'Russel', 1940, 'M', 152), +(50657, 'Jean', 1940, 'M', 151), +(50658, 'Miles', 1940, 'M', 151), +(50659, 'Mervin', 1940, 'M', 150), +(50660, 'Noah', 1940, 'M', 150), +(50661, 'Riley', 1940, 'M', 150), +(50662, 'Solomon', 1940, 'M', 150), +(50663, 'Geoffrey', 1940, 'M', 148), +(50664, 'Ronny', 1940, 'M', 147), +(50665, 'Armand', 1940, 'M', 145), +(50666, 'Fredric', 1940, 'M', 145), +(50667, 'Jerrold', 1940, 'M', 145), +(50668, 'Emery', 1940, 'M', 144), +(50669, 'Wilford', 1940, 'M', 143), +(50670, 'Denver', 1940, 'M', 142), +(50671, 'Kelly', 1940, 'M', 142), +(50672, 'Ward', 1940, 'M', 142), +(50673, 'Alphonso', 1940, 'M', 141), +(50674, 'Dana', 1940, 'M', 141), +(50675, 'Vaughn', 1940, 'M', 141), +(50676, 'Barbara', 1940, 'M', 140), +(50677, 'Basil', 1940, 'M', 140), +(50678, 'Cleo', 1940, 'M', 140), +(50679, 'Dickie', 1940, 'M', 140), +(50680, 'Eli', 1940, 'M', 140), +(50681, 'Patricia', 1940, 'M', 140), +(50682, 'Alberto', 1940, 'M', 139), +(50683, 'Gayle', 1940, 'M', 139), +(50684, 'Alva', 1940, 'M', 137), +(50685, 'Milford', 1940, 'M', 137), +(50686, 'Terence', 1940, 'M', 136), +(50687, 'Blaine', 1940, 'M', 135), +(50688, 'Cary', 1940, 'M', 134), +(50689, 'Delmer', 1940, 'M', 134), +(50690, 'Herschel', 1940, 'M', 132), +(50691, 'Morton', 1940, 'M', 132), +(50692, 'Gearld', 1940, 'M', 131), +(50693, 'Kirk', 1940, 'M', 131), +(50694, 'Morgan', 1940, 'M', 130), +(50695, 'Tracy', 1940, 'M', 129), +(50696, 'Clay', 1940, 'M', 128), +(50697, 'Dalton', 1940, 'M', 128), +(50698, 'Jeffery', 1940, 'M', 128), +(50699, 'Lenard', 1940, 'M', 128), +(50700, 'Earle', 1940, 'M', 127), +(50701, 'Gaylord', 1940, 'M', 127), +(50702, 'Major', 1940, 'M', 127), +(50703, 'Royal', 1940, 'M', 127), +(50704, 'Bradford', 1940, 'M', 126), +(50705, 'Evan', 1940, 'M', 126), +(50706, 'Houston', 1940, 'M', 126), +(50707, 'Emerson', 1940, 'M', 125), +(50708, 'Roman', 1940, 'M', 125), +(50709, 'Forest', 1940, 'M', 124), +(50710, 'Kay', 1940, 'M', 124), +(50711, 'Chuck', 1940, 'M', 123), +(50712, 'Enrique', 1940, 'M', 123), +(50713, 'Everette', 1940, 'M', 123), +(50714, 'Rocco', 1940, 'M', 123), +(50715, 'Rodolfo', 1940, 'M', 123), +(50716, 'Domingo', 1940, 'M', 122), +(50717, 'Marc', 1940, 'M', 122), +(50718, 'Ernesto', 1940, 'M', 121), +(50719, 'Freeman', 1940, 'M', 121), +(50720, 'Monty', 1940, 'M', 121), +(50721, 'Thaddeus', 1940, 'M', 121), +(50722, 'Cyril', 1940, 'M', 120), +(50723, 'Dannie', 1940, 'M', 120), +(50724, 'Odis', 1940, 'M', 120), +(50725, 'Rafael', 1940, 'M', 120), +(50726, 'Silas', 1940, 'M', 120), +(50727, 'Jeremiah', 1940, 'M', 119), +(50728, 'Davis', 1940, 'M', 118), +(50729, 'Sherwood', 1940, 'M', 118), +(50730, 'Terrell', 1940, 'M', 118), +(50731, 'Lyman', 1940, 'M', 117), +(50732, 'Alden', 1940, 'M', 116), +(50733, 'Andre', 1940, 'M', 116), +(50734, 'Barton', 1940, 'M', 116), +(50735, 'Bernie', 1940, 'M', 116), +(50736, 'Windell', 1940, 'M', 116), +(50737, 'Hiram', 1940, 'M', 115), +(50738, 'Luke', 1940, 'M', 115), +(50739, 'Orlando', 1940, 'M', 115), +(50740, 'Betty', 1940, 'M', 114), +(50741, 'Julio', 1940, 'M', 114), +(50742, 'Rogers', 1940, 'M', 114), +(50743, 'Arlen', 1940, 'M', 113), +(50744, 'Burl', 1940, 'M', 113), +(50745, 'Isaiah', 1940, 'M', 113), +(50746, 'Kerry', 1940, 'M', 113), +(50747, 'Claud', 1940, 'M', 112), +(50748, 'Jere', 1940, 'M', 112), +(50749, 'Elroy', 1940, 'M', 111), +(50750, 'Sonny', 1940, 'M', 111), +(50751, 'Tomas', 1940, 'M', 111), +(50752, 'Dwain', 1940, 'M', 110), +(50753, 'Pablo', 1940, 'M', 110), +(50754, 'Vito', 1940, 'M', 110), +(50755, 'Dexter', 1940, 'M', 109), +(50756, 'Kendall', 1940, 'M', 109), +(50757, 'Pasquale', 1940, 'M', 109), +(50758, 'Talmadge', 1940, 'M', 109), +(50759, 'Warner', 1940, 'M', 109), +(50760, 'Garrett', 1940, 'M', 108), +(50761, 'Gilberto', 1940, 'M', 108), +(50762, 'Anton', 1940, 'M', 106), +(50763, 'Carson', 1940, 'M', 106), +(50764, 'Joesph', 1940, 'M', 106), +(50765, 'Wilton', 1940, 'M', 106), +(50766, 'Bryant', 1940, 'M', 105), +(50767, 'Carmine', 1940, 'M', 105), +(50768, 'Arden', 1940, 'M', 104), +(50769, 'Elias', 1940, 'M', 103), +(50770, 'Huey', 1940, 'M', 103), +(50771, 'Boyce', 1940, 'M', 102), +(50772, 'Elmo', 1940, 'M', 102), +(50773, 'Harmon', 1940, 'M', 102), +(50774, 'Jefferson', 1940, 'M', 102), +(50775, 'Kirby', 1940, 'M', 102), +(50776, 'Abel', 1940, 'M', 101), +(50777, 'Alphonse', 1940, 'M', 101), +(50778, 'Olen', 1940, 'M', 101), +(50779, 'Anderson', 1940, 'M', 100), +(50780, 'Lupe', 1940, 'M', 100), +(50781, 'Milo', 1940, 'M', 100), +(50782, 'Orval', 1940, 'M', 100), +(50783, 'Shelton', 1940, 'M', 100), +(50784, 'Mary', 1941, 'F', 58031), +(50785, 'Barbara', 1941, 'F', 39535), +(50786, 'Patricia', 1941, 'F', 36900), +(50787, 'Carol', 1941, 'F', 24181), +(50788, 'Linda', 1941, 'F', 23718), +(50789, 'Judith', 1941, 'F', 23313), +(50790, 'Betty', 1941, 'F', 20899), +(50791, 'Nancy', 1941, 'F', 20880), +(50792, 'Sandra', 1941, 'F', 19499), +(50793, 'Shirley', 1941, 'F', 16950), +(50794, 'Carolyn', 1941, 'F', 16272), +(50795, 'Margaret', 1941, 'F', 15694), +(50796, 'Joyce', 1941, 'F', 15677), +(50797, 'Dorothy', 1941, 'F', 14560), +(50798, 'Sharon', 1941, 'F', 14269), +(50799, 'Judy', 1941, 'F', 13964), +(50800, 'Joan', 1941, 'F', 13377), +(50801, 'Janet', 1941, 'F', 11136), +(50802, 'Karen', 1941, 'F', 10830), +(50803, 'Donna', 1941, 'F', 10446), +(50804, 'Elizabeth', 1941, 'F', 10268), +(50805, 'Janice', 1941, 'F', 10060), +(50806, 'Virginia', 1941, 'F', 10042), +(50807, 'Helen', 1941, 'F', 9888), +(50808, 'Martha', 1941, 'F', 9157), +(50809, 'Gloria', 1941, 'F', 9006), +(50810, 'Susan', 1941, 'F', 8887), +(50811, 'Ruth', 1941, 'F', 8863), +(50812, 'Beverly', 1941, 'F', 8728), +(50813, 'Marilyn', 1941, 'F', 8552), +(50814, 'Frances', 1941, 'F', 8469), +(50815, 'Jean', 1941, 'F', 7838), +(50816, 'Bonnie', 1941, 'F', 7758), +(50817, 'Alice', 1941, 'F', 7446), +(50818, 'Phyllis', 1941, 'F', 7348), +(50819, 'Kathleen', 1941, 'F', 7159), +(50820, 'Ann', 1941, 'F', 7120), +(50821, 'Doris', 1941, 'F', 7077), +(50822, 'Peggy', 1941, 'F', 6559), +(50823, 'Diane', 1941, 'F', 6425), +(50824, 'Brenda', 1941, 'F', 6331), +(50825, 'Marie', 1941, 'F', 6150), +(50826, 'Lois', 1941, 'F', 6106), +(50827, 'Elaine', 1941, 'F', 5377), +(50828, 'Geraldine', 1941, 'F', 5228), +(50829, 'Jane', 1941, 'F', 5088), +(50830, 'Norma', 1941, 'F', 5018), +(50831, 'Carole', 1941, 'F', 4965), +(50832, 'Rose', 1941, 'F', 4947), +(50833, 'Evelyn', 1941, 'F', 4930), +(50834, 'Catherine', 1941, 'F', 4884), +(50835, 'Patsy', 1941, 'F', 4789), +(50836, 'Wanda', 1941, 'F', 4736), +(50837, 'Joanne', 1941, 'F', 4664), +(50838, 'Charlotte', 1941, 'F', 4563), +(50839, 'Anna', 1941, 'F', 4429), +(50840, 'Dolores', 1941, 'F', 4384), +(50841, 'Joann', 1941, 'F', 4276), +(50842, 'Annie', 1941, 'F', 4081), +(50843, 'Sarah', 1941, 'F', 3981), +(50844, 'Sally', 1941, 'F', 3963), +(50845, 'Louise', 1941, 'F', 3910), +(50846, 'Rita', 1941, 'F', 3881), +(50847, 'Mildred', 1941, 'F', 3844), +(50848, 'Sylvia', 1941, 'F', 3788), +(50849, 'Jo', 1941, 'F', 3757), +(50850, 'Ellen', 1941, 'F', 3663), +(50851, 'Gail', 1941, 'F', 3608), +(50852, 'Ruby', 1941, 'F', 3583), +(50853, 'Kay', 1941, 'F', 3536), +(50854, 'Marjorie', 1941, 'F', 3517), +(50855, 'Roberta', 1941, 'F', 3396), +(50856, 'Jacqueline', 1941, 'F', 3388), +(50857, 'Irene', 1941, 'F', 3367), +(50858, 'Sue', 1941, 'F', 3361), +(50859, 'Darlene', 1941, 'F', 3346), +(50860, 'Arlene', 1941, 'F', 3290), +(50861, 'Eleanor', 1941, 'F', 3249), +(50862, 'Connie', 1941, 'F', 3205), +(50863, 'Delores', 1941, 'F', 3159), +(50864, 'Loretta', 1941, 'F', 3100), +(50865, 'Anne', 1941, 'F', 3096), +(50866, 'Marlene', 1941, 'F', 3068), +(50867, 'Juanita', 1941, 'F', 3045), +(50868, 'Katherine', 1941, 'F', 3003), +(50869, 'Rebecca', 1941, 'F', 2925), +(50870, 'Kathryn', 1941, 'F', 2868), +(50871, 'Julia', 1941, 'F', 2845), +(50872, 'Edna', 1941, 'F', 2834), +(50873, 'June', 1941, 'F', 2766), +(50874, 'Anita', 1941, 'F', 2741), +(50875, 'Josephine', 1941, 'F', 2727), +(50876, 'Lorraine', 1941, 'F', 2686), +(50877, 'Rosemary', 1941, 'F', 2676), +(50878, 'Theresa', 1941, 'F', 2673), +(50879, 'Glenda', 1941, 'F', 2641), +(50880, 'Suzanne', 1941, 'F', 2610), +(50881, 'Jeanette', 1941, 'F', 2596), +(50882, 'Emma', 1941, 'F', 2545), +(50883, 'Diana', 1941, 'F', 2543), +(50884, 'Christine', 1941, 'F', 2471), +(50885, 'Maria', 1941, 'F', 2468), +(50886, 'Edith', 1941, 'F', 2461), +(50887, 'Lillian', 1941, 'F', 2460), +(50888, 'Marcia', 1941, 'F', 2430), +(50889, 'Wilma', 1941, 'F', 2427), +(50890, 'Florence', 1941, 'F', 2390), +(50891, 'Thelma', 1941, 'F', 2368), +(50892, 'Pauline', 1941, 'F', 2351), +(50893, 'Sheila', 1941, 'F', 2340), +(50894, 'Clara', 1941, 'F', 2298), +(50895, 'Cynthia', 1941, 'F', 2297), +(50896, 'Vivian', 1941, 'F', 2279), +(50897, 'Constance', 1941, 'F', 2275), +(50898, 'Laura', 1941, 'F', 2274), +(50899, 'Ethel', 1941, 'F', 2268), +(50900, 'Audrey', 1941, 'F', 2232), +(50901, 'Gladys', 1941, 'F', 2221), +(50902, 'Lucille', 1941, 'F', 2205), +(50903, 'Yvonne', 1941, 'F', 2198), +(50904, 'Eileen', 1941, 'F', 2192), +(50905, 'Margie', 1941, 'F', 2152), +(50906, 'Grace', 1941, 'F', 2103), +(50907, 'Sara', 1941, 'F', 2071), +(50908, 'Charlene', 1941, 'F', 2060), +(50909, 'Jeanne', 1941, 'F', 2060), +(50910, 'Georgia', 1941, 'F', 2051), +(50911, 'Annette', 1941, 'F', 2023), +(50912, 'Maureen', 1941, 'F', 1992), +(50913, 'Marion', 1941, 'F', 1987), +(50914, 'Hazel', 1941, 'F', 1982), +(50915, 'Priscilla', 1941, 'F', 1971), +(50916, 'Bernice', 1941, 'F', 1931), +(50917, 'Pat', 1941, 'F', 1900), +(50918, 'Eva', 1941, 'F', 1861), +(50919, 'Willie', 1941, 'F', 1857), +(50920, 'Deanna', 1941, 'F', 1856), +(50921, 'Esther', 1941, 'F', 1810), +(50922, 'Maxine', 1941, 'F', 1749), +(50923, 'Bertha', 1941, 'F', 1723), +(50924, 'Ella', 1941, 'F', 1697), +(50925, 'Marian', 1941, 'F', 1678), +(50926, 'Beatrice', 1941, 'F', 1666), +(50927, 'Lillie', 1941, 'F', 1654), +(50928, 'Bobbie', 1941, 'F', 1633), +(50929, 'Dianne', 1941, 'F', 1629), +(50930, 'Maryann', 1941, 'F', 1612), +(50931, 'Ida', 1941, 'F', 1608), +(50932, 'Billie', 1941, 'F', 1554), +(50933, 'Joy', 1941, 'F', 1550), +(50934, 'Paula', 1941, 'F', 1540), +(50935, 'Rosalie', 1941, 'F', 1513), +(50936, 'Lynda', 1941, 'F', 1491), +(50937, 'Rosa', 1941, 'F', 1473), +(50938, 'Pamela', 1941, 'F', 1468), +(50939, 'Lucy', 1941, 'F', 1443), +(50940, 'Elsie', 1941, 'F', 1416), +(50941, 'Harriet', 1941, 'F', 1395), +(50942, 'Rachel', 1941, 'F', 1384), +(50943, 'Faye', 1941, 'F', 1375), +(50944, 'Myrna', 1941, 'F', 1371), +(50945, 'Emily', 1941, 'F', 1368), +(50946, 'Alma', 1941, 'F', 1363), +(50947, 'Mattie', 1941, 'F', 1363), +(50948, 'Jessie', 1941, 'F', 1356), +(50949, 'Minnie', 1941, 'F', 1354), +(50950, 'Nellie', 1941, 'F', 1285), +(50951, 'Gwendolyn', 1941, 'F', 1268), +(50952, 'Vera', 1941, 'F', 1268), +(50953, 'Julie', 1941, 'F', 1267), +(50954, 'Lynn', 1941, 'F', 1259), +(50955, 'Sherry', 1941, 'F', 1252), +(50956, 'Bessie', 1941, 'F', 1174), +(50957, 'Caroline', 1941, 'F', 1173), +(50958, 'Rosemarie', 1941, 'F', 1168), +(50959, 'Patty', 1941, 'F', 1138), +(50960, 'Rosie', 1941, 'F', 1104), +(50961, 'Jackie', 1941, 'F', 1094), +(50962, 'Agnes', 1941, 'F', 1093), +(50963, 'Geneva', 1941, 'F', 1047), +(50964, 'Dixie', 1941, 'F', 1046), +(50965, 'Carrie', 1941, 'F', 1031), +(50966, 'Marianne', 1941, 'F', 1031), +(50967, 'Stella', 1941, 'F', 1023), +(50968, 'Claudia', 1941, 'F', 1018), +(50969, 'Cora', 1941, 'F', 1007), +(50970, 'Gayle', 1941, 'F', 1006), +(50971, 'Velma', 1941, 'F', 1002), +(50972, 'Gertrude', 1941, 'F', 999), +(50973, 'Leona', 1941, 'F', 999), +(50974, 'Mae', 1941, 'F', 993), +(50975, 'Johnnie', 1941, 'F', 990), +(50976, 'Naomi', 1941, 'F', 987), +(50977, 'Myrtle', 1941, 'F', 965), +(50978, 'Carmen', 1941, 'F', 957), +(50979, 'Claire', 1941, 'F', 954), +(50980, 'Dora', 1941, 'F', 951), +(50981, 'Jeannette', 1941, 'F', 948), +(50982, 'Kathy', 1941, 'F', 947), +(50983, 'Lynne', 1941, 'F', 944), +(50984, 'Madeline', 1941, 'F', 942), +(50985, 'Viola', 1941, 'F', 902), +(50986, 'Marsha', 1941, 'F', 895), +(50987, 'Deloris', 1941, 'F', 888), +(50988, 'Nina', 1941, 'F', 876), +(50989, 'Alberta', 1941, 'F', 864), +(50990, 'Verna', 1941, 'F', 862), +(50991, 'Hattie', 1941, 'F', 852), +(50992, 'Nora', 1941, 'F', 845), +(50993, 'Veronica', 1941, 'F', 837), +(50994, 'Lola', 1941, 'F', 835), +(50995, 'Pearl', 1941, 'F', 834), +(50996, 'Shelby', 1941, 'F', 826), +(50997, 'Lula', 1941, 'F', 825), +(50998, 'Angela', 1941, 'F', 821), +(50999, 'Victoria', 1941, 'F', 814), +(51000, 'Hilda', 1941, 'F', 795), +(51001, 'Janie', 1941, 'F', 795), +(51002, 'Lena', 1941, 'F', 795), +(51003, 'Myra', 1941, 'F', 788), +(51004, 'Ramona', 1941, 'F', 787), +(51005, 'Jacquelyn', 1941, 'F', 782), +(51006, 'Violet', 1941, 'F', 780), +(51007, 'Marguerite', 1941, 'F', 777), +(51008, 'Irma', 1941, 'F', 774), +(51009, 'Eunice', 1941, 'F', 771), +(51010, 'Sondra', 1941, 'F', 770), +(51011, 'Ernestine', 1941, 'F', 763), +(51012, 'Valerie', 1941, 'F', 753), +(51013, 'Bette', 1941, 'F', 747), +(51014, 'Bonita', 1941, 'F', 742), +(51015, 'Susie', 1941, 'F', 741), +(51016, 'Daisy', 1941, 'F', 739), +(51017, 'Antoinette', 1941, 'F', 731), +(51018, 'Bettie', 1941, 'F', 731), +(51019, 'Bettye', 1941, 'F', 728), +(51020, 'Regina', 1941, 'F', 727), +(51021, 'Erma', 1941, 'F', 726), +(51022, 'Fannie', 1941, 'F', 724), +(51023, 'Andrea', 1941, 'F', 720), +(51024, 'Melba', 1941, 'F', 715), +(51025, 'Teresa', 1941, 'F', 715), +(51026, 'Miriam', 1941, 'F', 713), +(51027, 'Jennie', 1941, 'F', 712), +(51028, 'Flora', 1941, 'F', 702), +(51029, 'Iris', 1941, 'F', 700), +(51030, 'Lydia', 1941, 'F', 682), +(51031, 'Marcella', 1941, 'F', 678), +(51032, 'Ada', 1941, 'F', 677), +(51033, 'Della', 1941, 'F', 673), +(51034, 'Cecilia', 1941, 'F', 671), +(51035, 'Betsy', 1941, 'F', 650), +(51036, 'Katie', 1941, 'F', 650), +(51037, 'Penny', 1941, 'F', 636), +(51038, 'Lana', 1941, 'F', 625), +(51039, 'Mamie', 1941, 'F', 625), +(51040, 'Genevieve', 1941, 'F', 617), +(51041, 'Cecelia', 1941, 'F', 609), +(51042, 'Deborah', 1941, 'F', 608), +(51043, 'Beth', 1941, 'F', 601), +(51044, 'Colleen', 1941, 'F', 601), +(51045, 'Janis', 1941, 'F', 595), +(51046, 'Saundra', 1941, 'F', 592), +(51047, 'Nadine', 1941, 'F', 589), +(51048, 'Olivia', 1941, 'F', 587), +(51049, 'Eloise', 1941, 'F', 582), +(51050, 'Henrietta', 1941, 'F', 567), +(51051, 'Sonja', 1941, 'F', 567), +(51052, 'Laverne', 1941, 'F', 565), +(51053, 'Beulah', 1941, 'F', 554), +(51054, 'Nelda', 1941, 'F', 554), +(51055, 'Jerry', 1941, 'F', 547), +(51056, 'Penelope', 1941, 'F', 546), +(51057, 'Vicki', 1941, 'F', 542), +(51058, 'Muriel', 1941, 'F', 541), +(51059, 'Maggie', 1941, 'F', 539), +(51060, 'Mable', 1941, 'F', 538), +(51061, 'Dawn', 1941, 'F', 530), +(51062, 'Amelia', 1941, 'F', 529), +(51063, 'Inez', 1941, 'F', 528), +(51064, 'Reba', 1941, 'F', 525), +(51065, 'Lila', 1941, 'F', 521), +(51066, 'Lee', 1941, 'F', 520), +(51067, 'Sharron', 1941, 'F', 516), +(51068, 'Mabel', 1941, 'F', 507), +(51069, 'Lou', 1941, 'F', 506), +(51070, 'Sandy', 1941, 'F', 506), +(51071, 'Leslie', 1941, 'F', 505), +(51072, 'Sallie', 1941, 'F', 500), +(51073, 'Sadie', 1941, 'F', 499), +(51074, 'Eula', 1941, 'F', 496), +(51075, 'Freda', 1941, 'F', 492), +(51076, 'Stephanie', 1941, 'F', 491), +(51077, 'Jill', 1941, 'F', 490), +(51078, 'Frankie', 1941, 'F', 486), +(51079, 'Claudette', 1941, 'F', 477), +(51080, 'Margo', 1941, 'F', 474), +(51081, 'Lorna', 1941, 'F', 464), +(51082, 'Faith', 1941, 'F', 463), +(51083, 'Glenna', 1941, 'F', 462), +(51084, 'Blanche', 1941, 'F', 456), +(51085, 'Rochelle', 1941, 'F', 456), +(51086, 'Carla', 1941, 'F', 455), +(51087, 'Jimmie', 1941, 'F', 455), +(51088, 'Helene', 1941, 'F', 450), +(51089, 'Jan', 1941, 'F', 445), +(51090, 'Mona', 1941, 'F', 444), +(51091, 'Terry', 1941, 'F', 444), +(51092, 'Gretchen', 1941, 'F', 440), +(51093, 'Lenora', 1941, 'F', 440), +(51094, 'Cheryl', 1941, 'F', 439), +(51095, 'Lorene', 1941, 'F', 439), +(51096, 'Polly', 1941, 'F', 435), +(51097, 'Rosetta', 1941, 'F', 435), +(51098, 'Nettie', 1941, 'F', 434), +(51099, 'Opal', 1941, 'F', 434), +(51100, 'Ollie', 1941, 'F', 433), +(51101, 'Fay', 1941, 'F', 429), +(51102, 'Becky', 1941, 'F', 427), +(51103, 'Amy', 1941, 'F', 423), +(51104, 'Joanna', 1941, 'F', 417), +(51105, 'Etta', 1941, 'F', 413), +(51106, 'Ora', 1941, 'F', 411), +(51107, 'Ina', 1941, 'F', 409), +(51108, 'Rosalind', 1941, 'F', 409), +(51109, 'Darla', 1941, 'F', 406), +(51110, 'Earnestine', 1941, 'F', 404), +(51111, 'Jewel', 1941, 'F', 404), +(51112, 'Winifred', 1941, 'F', 404), +(51113, 'Gracie', 1941, 'F', 403), +(51114, 'Willa', 1941, 'F', 401), +(51115, 'Toni', 1941, 'F', 397), +(51116, 'Francine', 1941, 'F', 390), +(51117, 'Essie', 1941, 'F', 389), +(51118, 'Kaye', 1941, 'F', 389), +(51119, 'Celia', 1941, 'F', 388), +(51120, 'Susanne', 1941, 'F', 386), +(51121, 'Dianna', 1941, 'F', 377), +(51122, 'Christina', 1941, 'F', 373), +(51123, 'Earline', 1941, 'F', 369), +(51124, 'Yolanda', 1941, 'F', 369), +(51125, 'Gay', 1941, 'F', 368), +(51126, 'Natalie', 1941, 'F', 368), +(51127, 'Jeannie', 1941, 'F', 367), +(51128, 'Dorthy', 1941, 'F', 363), +(51129, 'Alicia', 1941, 'F', 359), +(51130, 'Ruthie', 1941, 'F', 356), +(51131, 'Estelle', 1941, 'F', 355), +(51132, 'Lavonne', 1941, 'F', 354), +(51133, 'Lela', 1941, 'F', 354), +(51134, 'Earlene', 1941, 'F', 352), +(51135, 'Leah', 1941, 'F', 351), +(51136, 'Camille', 1941, 'F', 350), +(51137, 'Beverley', 1941, 'F', 348), +(51138, 'Jewell', 1941, 'F', 348), +(51139, 'Lizzie', 1941, 'F', 348), +(51140, 'Marilynn', 1941, 'F', 348), +(51141, 'Denise', 1941, 'F', 346), +(51142, 'Wendy', 1941, 'F', 345), +(51143, 'Josie', 1941, 'F', 344), +(51144, 'Gwen', 1941, 'F', 341), +(51145, 'Imogene', 1941, 'F', 340), +(51146, 'Addie', 1941, 'F', 339), +(51147, 'Molly', 1941, 'F', 339), +(51148, 'Gale', 1941, 'F', 338), +(51149, 'Marva', 1941, 'F', 338), +(51150, 'Isabel', 1941, 'F', 334), +(51151, 'Renee', 1941, 'F', 334), +(51152, 'Estella', 1941, 'F', 333), +(51153, 'Olga', 1941, 'F', 333), +(51154, 'Bernadine', 1941, 'F', 332), +(51155, 'Lottie', 1941, 'F', 332), +(51156, 'Bernadette', 1941, 'F', 329), +(51157, 'Melinda', 1941, 'F', 328), +(51158, 'Pearlie', 1941, 'F', 327), +(51159, 'Adrienne', 1941, 'F', 325), +(51160, 'Clarice', 1941, 'F', 324), +(51161, 'Dale', 1941, 'F', 324), +(51162, 'Mavis', 1941, 'F', 323), +(51163, 'Carlene', 1941, 'F', 321), +(51164, 'Harriett', 1941, 'F', 320), +(51165, 'Leola', 1941, 'F', 319), +(51166, 'Rena', 1941, 'F', 319), +(51167, 'Francis', 1941, 'F', 318), +(51168, 'Judie', 1941, 'F', 318), +(51169, 'Arleen', 1941, 'F', 316), +(51170, 'Marylou', 1941, 'F', 316), +(51171, 'Adele', 1941, 'F', 313), +(51172, 'Cathy', 1941, 'F', 312), +(51173, 'Lupe', 1941, 'F', 312), +(51174, 'Iva', 1941, 'F', 310), +(51175, 'Melanie', 1941, 'F', 308), +(51176, 'Ola', 1941, 'F', 308), +(51177, 'Sybil', 1941, 'F', 304), +(51178, 'Robbie', 1941, 'F', 302), +(51179, 'Fern', 1941, 'F', 301), +(51180, 'Guadalupe', 1941, 'F', 299), +(51181, 'Dona', 1941, 'F', 297), +(51182, 'Doreen', 1941, 'F', 297), +(51183, 'Laurel', 1941, 'F', 297), +(51184, 'Dorothea', 1941, 'F', 295), +(51185, 'Janette', 1941, 'F', 288), +(51186, 'Elva', 1941, 'F', 285), +(51187, 'Delia', 1941, 'F', 284), +(51188, 'Lenore', 1941, 'F', 284), +(51189, 'Rhoda', 1941, 'F', 284), +(51190, 'Johanna', 1941, 'F', 283), +(51191, 'Patti', 1941, 'F', 283), +(51192, 'Dana', 1941, 'F', 282), +(51193, 'Marlys', 1941, 'F', 282), +(51194, 'Nola', 1941, 'F', 279), +(51195, 'Tommie', 1941, 'F', 278), +(51196, 'Paulette', 1941, 'F', 276), +(51197, 'Cleo', 1941, 'F', 275), +(51198, 'Jeanie', 1941, 'F', 275), +(51199, 'Dolly', 1941, 'F', 274), +(51200, 'Lucinda', 1941, 'F', 273), +(51201, 'Lora', 1941, 'F', 271), +(51202, 'Eddie', 1941, 'F', 269), +(51203, 'Cornelia', 1941, 'F', 268), +(51204, 'Eugenia', 1941, 'F', 268), +(51205, 'Angelina', 1941, 'F', 265), +(51206, 'Arline', 1941, 'F', 263), +(51207, 'Melva', 1941, 'F', 262), +(51208, 'Monica', 1941, 'F', 261), +(51209, 'Margarita', 1941, 'F', 260), +(51210, 'Noreen', 1941, 'F', 257), +(51211, 'Jeannine', 1941, 'F', 256), +(51212, 'Elinor', 1941, 'F', 255), +(51213, 'James', 1941, 'F', 255), +(51214, 'May', 1941, 'F', 251), +(51215, 'Effie', 1941, 'F', 250), +(51216, 'Elnora', 1941, 'F', 249), +(51217, 'Maryanne', 1941, 'F', 249), +(51218, 'Roseann', 1941, 'F', 249), +(51219, 'Alta', 1941, 'F', 247), +(51220, 'Jenny', 1941, 'F', 246), +(51221, 'Virgie', 1941, 'F', 246), +(51222, 'Cecile', 1941, 'F', 243), +(51223, 'Nell', 1941, 'F', 241), +(51224, 'Winnie', 1941, 'F', 241), +(51225, 'Freddie', 1941, 'F', 240), +(51226, 'Robin', 1941, 'F', 239), +(51227, 'Rosalyn', 1941, 'F', 238), +(51228, 'Jannie', 1941, 'F', 237), +(51229, 'Sonia', 1941, 'F', 237), +(51230, 'Luella', 1941, 'F', 236), +(51231, 'Ilene', 1941, 'F', 235), +(51232, 'Jayne', 1941, 'F', 235), +(51233, 'Alyce', 1941, 'F', 234), +(51234, 'Mollie', 1941, 'F', 234), +(51235, 'Antonia', 1941, 'F', 233), +(51236, 'Hope', 1941, 'F', 233), +(51237, 'Louella', 1941, 'F', 233), +(51238, 'Marietta', 1941, 'F', 232), +(51239, 'Elvira', 1941, 'F', 231), +(51240, 'Meredith', 1941, 'F', 231), +(51241, 'Neva', 1941, 'F', 229), +(51242, 'Joe', 1941, 'F', 227), +(51243, 'Angie', 1941, 'F', 226), +(51244, 'Ginger', 1941, 'F', 226), +(51245, 'Trudy', 1941, 'F', 226), +(51246, 'Madelyn', 1941, 'F', 225), +(51247, 'Merle', 1941, 'F', 225), +(51248, 'Goldie', 1941, 'F', 224), +(51249, 'Millie', 1941, 'F', 224), +(51250, 'Ruthann', 1941, 'F', 224), +(51251, 'Amanda', 1941, 'F', 223), +(51252, 'Katharine', 1941, 'F', 223), +(51253, 'Margery', 1941, 'F', 222), +(51254, 'Peggie', 1941, 'F', 222), +(51255, 'John', 1941, 'F', 221), +(51256, 'Nita', 1941, 'F', 220), +(51257, 'Delois', 1941, 'F', 218), +(51258, 'Ila', 1941, 'F', 217), +(51259, 'Edwina', 1941, 'F', 216), +(51260, 'Nona', 1941, 'F', 216), +(51261, 'Jolene', 1941, 'F', 214), +(51262, 'Therese', 1941, 'F', 214), +(51263, 'Odessa', 1941, 'F', 213), +(51264, 'Dottie', 1941, 'F', 212), +(51265, 'Leila', 1941, 'F', 211), +(51266, 'Corinne', 1941, 'F', 210), +(51267, 'Dollie', 1941, 'F', 209), +(51268, 'Diann', 1941, 'F', 208), +(51269, 'Madeleine', 1941, 'F', 208), +(51270, 'Olive', 1941, 'F', 208), +(51271, 'Angeline', 1941, 'F', 207), +(51272, 'Bennie', 1941, 'F', 202), +(51273, 'Maryellen', 1941, 'F', 201), +(51274, 'Rae', 1941, 'F', 201), +(51275, 'Judi', 1941, 'F', 200), +(51276, 'Dee', 1941, 'F', 199), +(51277, 'Elena', 1941, 'F', 198), +(51278, 'Marla', 1941, 'F', 198), +(51279, 'Lynette', 1941, 'F', 197), +(51280, 'Lilly', 1941, 'F', 196), +(51281, 'Robert', 1941, 'F', 196), +(51282, 'Sheryl', 1941, 'F', 195), +(51283, 'Helena', 1941, 'F', 194), +(51284, 'Elma', 1941, 'F', 193), +(51285, 'Reva', 1941, 'F', 192), +(51286, 'Letha', 1941, 'F', 190), +(51287, 'Yvette', 1941, 'F', 190), +(51288, 'Adeline', 1941, 'F', 189), +(51289, 'Gerry', 1941, 'F', 187), +(51290, 'Rosalee', 1941, 'F', 186), +(51291, 'Sherrill', 1941, 'F', 186), +(51292, 'Karin', 1941, 'F', 185), +(51293, 'Wilda', 1941, 'F', 185), +(51294, 'Annetta', 1941, 'F', 184), +(51295, 'Hannah', 1941, 'F', 181), +(51296, 'Vickie', 1941, 'F', 181), +(51297, 'Corrine', 1941, 'F', 180), +(51298, 'Loraine', 1941, 'F', 180), +(51299, 'Lucile', 1941, 'F', 180), +(51300, 'Elouise', 1941, 'F', 179), +(51301, 'Nannie', 1941, 'F', 179), +(51302, 'Nedra', 1941, 'F', 179), +(51303, 'Sonya', 1941, 'F', 179), +(51304, 'Laurie', 1941, 'F', 178), +(51305, 'Queen', 1941, 'F', 178), +(51306, 'Rosella', 1941, 'F', 178), +(51307, 'Darleen', 1941, 'F', 177), +(51308, 'April', 1941, 'F', 176), +(51309, 'Bobby', 1941, 'F', 176), +(51310, 'Carmela', 1941, 'F', 176), +(51311, 'Dian', 1941, 'F', 175), +(51312, 'Retha', 1941, 'F', 175), +(51313, 'Frieda', 1941, 'F', 174), +(51314, 'Ladonna', 1941, 'F', 174), +(51315, 'Sophie', 1941, 'F', 174), +(51316, 'Nan', 1941, 'F', 173), +(51317, 'Kitty', 1941, 'F', 172), +(51318, 'Michele', 1941, 'F', 172), +(51319, 'Roslyn', 1941, 'F', 172), +(51320, 'Sherrie', 1941, 'F', 172), +(51321, 'Aurora', 1941, 'F', 171), +(51322, 'Lorena', 1941, 'F', 171), +(51323, 'Rosanne', 1941, 'F', 171), +(51324, 'Sydney', 1941, 'F', 171), +(51325, 'Jeanine', 1941, 'F', 170), +(51326, 'Lelia', 1941, 'F', 170), +(51327, 'Toby', 1941, 'F', 170), +(51328, 'Lucia', 1941, 'F', 169), +(51329, 'Carmella', 1941, 'F', 168), +(51330, 'Lily', 1941, 'F', 166), +(51331, 'Lucretia', 1941, 'F', 164), +(51332, 'Carroll', 1941, 'F', 163), +(51333, 'Clare', 1941, 'F', 162), +(51334, 'Roxie', 1941, 'F', 161), +(51335, 'Belva', 1941, 'F', 159), +(51336, 'Celeste', 1941, 'F', 159), +(51337, 'Georgianna', 1941, 'F', 159), +(51338, 'Madonna', 1941, 'F', 159), +(51339, 'Suellen', 1941, 'F', 159), +(51340, 'Florine', 1941, 'F', 158), +(51341, 'Isabelle', 1941, 'F', 157), +(51342, 'Annabelle', 1941, 'F', 156), +(51343, 'Avis', 1941, 'F', 156), +(51344, 'Carolann', 1941, 'F', 156), +(51345, 'Tina', 1941, 'F', 156), +(51346, 'Phoebe', 1941, 'F', 155), +(51347, 'Charles', 1941, 'F', 154), +(51348, 'Consuelo', 1941, 'F', 152), +(51349, 'Flossie', 1941, 'F', 152), +(51350, 'Emilie', 1941, 'F', 151), +(51351, 'Karol', 1941, 'F', 151), +(51352, 'Sammie', 1941, 'F', 151), +(51353, 'Shari', 1941, 'F', 151), +(51354, 'Karolyn', 1941, 'F', 149), +(51355, 'Ardith', 1941, 'F', 148), +(51356, 'Evangeline', 1941, 'F', 148), +(51357, 'Karla', 1941, 'F', 148), +(51358, 'Maryjane', 1941, 'F', 148), +(51359, 'Zelma', 1941, 'F', 148), +(51360, 'Donnie', 1941, 'F', 147), +(51361, 'Eliza', 1941, 'F', 147), +(51362, 'Doretha', 1941, 'F', 146), +(51363, 'Justine', 1941, 'F', 146), +(51364, 'Julianne', 1941, 'F', 145), +(51365, 'Lessie', 1941, 'F', 145), +(51366, 'Georgie', 1941, 'F', 144), +(51367, 'Selma', 1941, 'F', 144), +(51368, 'Sharlene', 1941, 'F', 143), +(51369, 'Tamara', 1941, 'F', 143), +(51370, 'Twila', 1941, 'F', 143), +(51371, 'Carolee', 1941, 'F', 142), +(51372, 'Caryl', 1941, 'F', 142), +(51373, 'Elsa', 1941, 'F', 142), +(51374, 'Reta', 1941, 'F', 142), +(51375, 'Carrol', 1941, 'F', 141), +(51376, 'Freida', 1941, 'F', 141), +(51377, 'Melissa', 1941, 'F', 141), +(51378, 'Ester', 1941, 'F', 140), +(51379, 'Theodora', 1941, 'F', 140), +(51380, 'Charleen', 1941, 'F', 139), +(51381, 'Deanne', 1941, 'F', 139), +(51382, 'William', 1941, 'F', 139), +(51383, 'Eleanore', 1941, 'F', 138), +(51384, 'Elisabeth', 1941, 'F', 138), +(51385, 'Leta', 1941, 'F', 138), +(51386, 'Harriette', 1941, 'F', 137), +(51387, 'Cathleen', 1941, 'F', 136), +(51388, 'Jennifer', 1941, 'F', 136), +(51389, 'Claudine', 1941, 'F', 135), +(51390, 'Georgene', 1941, 'F', 135), +(51391, 'Jerilyn', 1941, 'F', 135), +(51392, 'Margot', 1941, 'F', 135), +(51393, 'Winona', 1941, 'F', 135), +(51394, 'Holly', 1941, 'F', 134), +(51395, 'Michelle', 1941, 'F', 133), +(51396, 'Bertie', 1941, 'F', 132), +(51397, 'Cherie', 1941, 'F', 132), +(51398, 'Jerrie', 1941, 'F', 132), +(51399, 'Allie', 1941, 'F', 131), +(51400, 'Heather', 1941, 'F', 131), +(51401, 'Laraine', 1941, 'F', 131), +(51402, 'Ophelia', 1941, 'F', 131), +(51403, 'Lona', 1941, 'F', 130), +(51404, 'Matilda', 1941, 'F', 130), +(51405, 'Shelba', 1941, 'F', 130), +(51406, 'Gearldine', 1941, 'F', 129), +(51407, 'Kathie', 1941, 'F', 129), +(51408, 'Shelia', 1941, 'F', 129), +(51409, 'Crystal', 1941, 'F', 128), +(51410, 'Karon', 1941, 'F', 128), +(51411, 'Camilla', 1941, 'F', 127), +(51412, 'Greta', 1941, 'F', 127), +(51413, 'Jeraldine', 1941, 'F', 127), +(51414, 'Patrica', 1941, 'F', 127), +(51415, 'Vonda', 1941, 'F', 127), +(51416, 'Georgiana', 1941, 'F', 125), +(51417, 'Lorine', 1941, 'F', 125), +(51418, 'Treva', 1941, 'F', 125), +(51419, 'Concetta', 1941, 'F', 124), +(51420, 'Corine', 1941, 'F', 124), +(51421, 'Nanette', 1941, 'F', 124), +(51422, 'Callie', 1941, 'F', 123), +(51423, 'Elise', 1941, 'F', 123), +(51424, 'Louisa', 1941, 'F', 123), +(51425, 'Pansy', 1941, 'F', 123), +(51426, 'Carolynn', 1941, 'F', 122), +(51427, 'Jeri', 1941, 'F', 122), +(51428, 'Vicky', 1941, 'F', 122), +(51429, 'Celestine', 1941, 'F', 121), +(51430, 'Mercedes', 1941, 'F', 120), +(51431, 'Richard', 1941, 'F', 120), +(51432, 'Rowena', 1941, 'F', 120), +(51433, 'Verla', 1941, 'F', 119), +(51434, 'Aileen', 1941, 'F', 118), +(51435, 'Althea', 1941, 'F', 118), +(51436, 'Lauretta', 1941, 'F', 118), +(51437, 'Minerva', 1941, 'F', 118), +(51438, 'Delphine', 1941, 'F', 117), +(51439, 'Hester', 1941, 'F', 117), +(51440, 'Leota', 1941, 'F', 117), +(51441, 'Merry', 1941, 'F', 117), +(51442, 'Pattie', 1941, 'F', 116), +(51443, 'Ronda', 1941, 'F', 116), +(51444, 'Esperanza', 1941, 'F', 115), +(51445, 'Roxanne', 1941, 'F', 115), +(51446, 'Vernell', 1941, 'F', 115), +(51447, 'George', 1941, 'F', 114), +(51448, 'Lue', 1941, 'F', 114), +(51449, 'Marge', 1941, 'F', 114), +(51450, 'Marilee', 1941, 'F', 114), +(51451, 'Adelaide', 1941, 'F', 111), +(51452, 'Charlie', 1941, 'F', 111), +(51453, 'Daphne', 1941, 'F', 111), +(51454, 'Kate', 1941, 'F', 111), +(51455, 'Maude', 1941, 'F', 111), +(51456, 'Pearline', 1941, 'F', 110), +(51457, 'Marlyn', 1941, 'F', 109), +(51458, 'Rhea', 1941, 'F', 109), +(51459, 'Birdie', 1941, 'F', 108), +(51460, 'Marylin', 1941, 'F', 108), +(51461, 'Delma', 1941, 'F', 107), +(51462, 'Edythe', 1941, 'F', 107), +(51463, 'Sophia', 1941, 'F', 107), +(51464, 'Alene', 1941, 'F', 106), +(51465, 'Letitia', 1941, 'F', 106), +(51466, 'Maudie', 1941, 'F', 106), +(51467, 'Sharen', 1941, 'F', 106), +(51468, 'Zelda', 1941, 'F', 106), +(51469, 'Gussie', 1941, 'F', 105), +(51470, 'Mariann', 1941, 'F', 105), +(51471, 'Alfreda', 1941, 'F', 104), +(51472, 'Beryl', 1941, 'F', 104), +(51473, 'Cindy', 1941, 'F', 104), +(51474, 'Elida', 1941, 'F', 104), +(51475, 'Leanna', 1941, 'F', 104), +(51476, 'Allene', 1941, 'F', 102), +(51477, 'Annmarie', 1941, 'F', 102), +(51478, 'Dorene', 1941, 'F', 102), +(51479, 'Eve', 1941, 'F', 102), +(51480, 'Hedy', 1941, 'F', 102), +(51481, 'Millicent', 1941, 'F', 102), +(51482, 'Berta', 1941, 'F', 101), +(51483, 'Libby', 1941, 'F', 101), +(51484, 'Rhonda', 1941, 'F', 101), +(51485, 'Ima', 1941, 'F', 100), +(51486, 'Jaunita', 1941, 'F', 100), +(51487, 'Lavon', 1941, 'F', 100), +(51488, 'James', 1941, 'M', 66719), +(51489, 'Robert', 1941, 'M', 64233), +(51490, 'John', 1941, 'M', 57511), +(51491, 'William', 1941, 'M', 47786), +(51492, 'Richard', 1941, 'M', 39101), +(51493, 'Charles', 1941, 'M', 32729), +(51494, 'David', 1941, 'M', 30551), +(51495, 'Thomas', 1941, 'M', 26641), +(51496, 'Ronald', 1941, 'M', 24393), +(51497, 'Donald', 1941, 'M', 22622), +(51498, 'Larry', 1941, 'M', 20131), +(51499, 'Joseph', 1941, 'M', 19799), +(51500, 'George', 1941, 'M', 19258), +(51501, 'Jerry', 1941, 'M', 16805), +(51502, 'Kenneth', 1941, 'M', 16128), +(51503, 'Michael', 1941, 'M', 15930), +(51504, 'Edward', 1941, 'M', 15579), +(51505, 'Paul', 1941, 'M', 15154), +(51506, 'Gary', 1941, 'M', 14567), +(51507, 'Gerald', 1941, 'M', 10939), +(51508, 'Frank', 1941, 'M', 10786), +(51509, 'Raymond', 1941, 'M', 9949), +(51510, 'Dennis', 1941, 'M', 9560), +(51511, 'Harold', 1941, 'M', 8100), +(51512, 'Roger', 1941, 'M', 8094), +(51513, 'Walter', 1941, 'M', 7744), +(51514, 'Billy', 1941, 'M', 7660), +(51515, 'Carl', 1941, 'M', 7161), +(51516, 'Henry', 1941, 'M', 7158), +(51517, 'Joe', 1941, 'M', 7145), +(51518, 'Daniel', 1941, 'M', 7050), +(51519, 'Jack', 1941, 'M', 6950), +(51520, 'Arthur', 1941, 'M', 6736), +(51521, 'Lawrence', 1941, 'M', 6651), +(51522, 'Bobby', 1941, 'M', 6586), +(51523, 'Willie', 1941, 'M', 6527), +(51524, 'Wayne', 1941, 'M', 6108), +(51525, 'Ralph', 1941, 'M', 6036), +(51526, 'Roy', 1941, 'M', 5944), +(51527, 'Albert', 1941, 'M', 5923), +(51528, 'Stephen', 1941, 'M', 5809), +(51529, 'Eugene', 1941, 'M', 5754), +(51530, 'Fred', 1941, 'M', 5615), +(51531, 'Peter', 1941, 'M', 5614), +(51532, 'Jimmy', 1941, 'M', 5330), +(51533, 'Anthony', 1941, 'M', 5235), +(51534, 'Howard', 1941, 'M', 5072), +(51535, 'Harry', 1941, 'M', 5054), +(51536, 'Norman', 1941, 'M', 4454), +(51537, 'Louis', 1941, 'M', 4437), +(51538, 'Bruce', 1941, 'M', 4296), +(51539, 'Philip', 1941, 'M', 4166), +(51540, 'Douglas', 1941, 'M', 4148), +(51541, 'Johnny', 1941, 'M', 3984), +(51542, 'Leonard', 1941, 'M', 3983), +(51543, 'Melvin', 1941, 'M', 3956), +(51544, 'Stanley', 1941, 'M', 3924), +(51545, 'Earl', 1941, 'M', 3805), +(51546, 'Dale', 1941, 'M', 3788), +(51547, 'Francis', 1941, 'M', 3738), +(51548, 'Ernest', 1941, 'M', 3723), +(51549, 'Clarence', 1941, 'M', 3671), +(51550, 'Marvin', 1941, 'M', 3625), +(51551, 'Terry', 1941, 'M', 3606), +(51552, 'Samuel', 1941, 'M', 3534), +(51553, 'Don', 1941, 'M', 3533), +(51554, 'Leroy', 1941, 'M', 3518), +(51555, 'Bill', 1941, 'M', 3453), +(51556, 'Frederick', 1941, 'M', 3288), +(51557, 'Patrick', 1941, 'M', 3154), +(51558, 'Tommy', 1941, 'M', 3087), +(51559, 'Gene', 1941, 'M', 3073), +(51560, 'Allen', 1941, 'M', 3055), +(51561, 'Alfred', 1941, 'M', 3048), +(51562, 'Russell', 1941, 'M', 3031), +(51563, 'Herbert', 1941, 'M', 2963), +(51564, 'Phillip', 1941, 'M', 2870), +(51565, 'Eddie', 1941, 'M', 2848), +(51566, 'Ronnie', 1941, 'M', 2848), +(51567, 'Jim', 1941, 'M', 2842), +(51568, 'Lee', 1941, 'M', 2742), +(51569, 'Andrew', 1941, 'M', 2710), +(51570, 'Ray', 1941, 'M', 2695), +(51571, 'Alan', 1941, 'M', 2625), +(51572, 'Martin', 1941, 'M', 2605), +(51573, 'Glenn', 1941, 'M', 2523), +(51574, 'Bernard', 1941, 'M', 2506), +(51575, 'Tom', 1941, 'M', 2498), +(51576, 'Jimmie', 1941, 'M', 2471), +(51577, 'Steven', 1941, 'M', 2466), +(51578, 'Barry', 1941, 'M', 2465), +(51579, 'Gordon', 1941, 'M', 2403), +(51580, 'Leon', 1941, 'M', 2375), +(51581, 'Clifford', 1941, 'M', 2364), +(51582, 'Theodore', 1941, 'M', 2332), +(51583, 'Lloyd', 1941, 'M', 2252), +(51584, 'Edwin', 1941, 'M', 2214), +(51585, 'Franklin', 1941, 'M', 2205), +(51586, 'Jesse', 1941, 'M', 2189), +(51587, 'Curtis', 1941, 'M', 2162), +(51588, 'Jerome', 1941, 'M', 2155), +(51589, 'Floyd', 1941, 'M', 2109), +(51590, 'Bob', 1941, 'M', 2074), +(51591, 'Vincent', 1941, 'M', 2049), +(51592, 'Warren', 1941, 'M', 2041), +(51593, 'Harvey', 1941, 'M', 2018), +(51594, 'Alvin', 1941, 'M', 2013), +(51595, 'Vernon', 1941, 'M', 1974), +(51596, 'Lewis', 1941, 'M', 1972), +(51597, 'Jackie', 1941, 'M', 1964), +(51598, 'Mike', 1941, 'M', 1932), +(51599, 'Steve', 1941, 'M', 1880), +(51600, 'Clyde', 1941, 'M', 1872), +(51601, 'Herman', 1941, 'M', 1777), +(51602, 'Charlie', 1941, 'M', 1757), +(51603, 'Leo', 1941, 'M', 1726), +(51604, 'Gilbert', 1941, 'M', 1703), +(51605, 'Victor', 1941, 'M', 1666), +(51606, 'Keith', 1941, 'M', 1651), +(51607, 'Danny', 1941, 'M', 1643), +(51608, 'Timothy', 1941, 'M', 1632), +(51609, 'Mark', 1941, 'M', 1625), +(51610, 'Arnold', 1941, 'M', 1599), +(51611, 'Benjamin', 1941, 'M', 1575), +(51612, 'Lester', 1941, 'M', 1563), +(51613, 'Leslie', 1941, 'M', 1555), +(51614, 'Rodney', 1941, 'M', 1552), +(51615, 'Jon', 1941, 'M', 1544), +(51616, 'Duane', 1941, 'M', 1533), +(51617, 'Darrell', 1941, 'M', 1530), +(51618, 'Johnnie', 1941, 'M', 1516), +(51619, 'Cecil', 1941, 'M', 1511), +(51620, 'Calvin', 1941, 'M', 1508), +(51621, 'Jeffrey', 1941, 'M', 1502), +(51622, 'Allan', 1941, 'M', 1492), +(51623, 'Chester', 1941, 'M', 1445), +(51624, 'Jay', 1941, 'M', 1415), +(51625, 'Freddie', 1941, 'M', 1412), +(51626, 'Glen', 1941, 'M', 1409), +(51627, 'Milton', 1941, 'M', 1387), +(51628, 'Lynn', 1941, 'M', 1349), +(51629, 'Joel', 1941, 'M', 1337), +(51630, 'Dean', 1941, 'M', 1289), +(51631, 'Roland', 1941, 'M', 1288), +(51632, 'Tony', 1941, 'M', 1224), +(51633, 'Nicholas', 1941, 'M', 1211), +(51634, 'Lonnie', 1941, 'M', 1203), +(51635, 'Elmer', 1941, 'M', 1201), +(51636, 'Jose', 1941, 'M', 1194), +(51637, 'Sam', 1941, 'M', 1191), +(51638, 'Claude', 1941, 'M', 1186), +(51639, 'Dan', 1941, 'M', 1151), +(51640, 'Brian', 1941, 'M', 1123), +(51641, 'Manuel', 1941, 'M', 1119), +(51642, 'Wallace', 1941, 'M', 1115), +(51643, 'Ted', 1941, 'M', 1096), +(51644, 'Wendell', 1941, 'M', 1093), +(51645, 'Wesley', 1941, 'M', 1090), +(51646, 'Willard', 1941, 'M', 1085), +(51647, 'Hugh', 1941, 'M', 1082), +(51648, 'Neil', 1941, 'M', 1074), +(51649, 'Jessie', 1941, 'M', 1038), +(51650, 'Maurice', 1941, 'M', 1027), +(51651, 'Marion', 1941, 'M', 1025), +(51652, 'Oscar', 1941, 'M', 1019), +(51653, 'Edgar', 1941, 'M', 989), +(51654, 'Everett', 1941, 'M', 989), +(51655, 'Lyle', 1941, 'M', 939), +(51656, 'Max', 1941, 'M', 931), +(51657, 'Virgil', 1941, 'M', 922), +(51658, 'Dick', 1941, 'M', 894), +(51659, 'Sidney', 1941, 'M', 891), +(51660, 'Stuart', 1941, 'M', 886), +(51661, 'Morris', 1941, 'M', 875), +(51662, 'Marshall', 1941, 'M', 869), +(51663, 'Dave', 1941, 'M', 865), +(51664, 'Karl', 1941, 'M', 865), +(51665, 'Lowell', 1941, 'M', 865), +(51666, 'Luther', 1941, 'M', 841), +(51667, 'Bennie', 1941, 'M', 840), +(51668, 'Benny', 1941, 'M', 835), +(51669, 'Nathaniel', 1941, 'M', 829), +(51670, 'Gregory', 1941, 'M', 827), +(51671, 'Alexander', 1941, 'M', 818), +(51672, 'Earnest', 1941, 'M', 812), +(51673, 'Nelson', 1941, 'M', 792), +(51674, 'Donnie', 1941, 'M', 787), +(51675, 'Carroll', 1941, 'M', 782), +(51676, 'Homer', 1941, 'M', 776), +(51677, 'Ben', 1941, 'M', 766), +(51678, 'Guy', 1941, 'M', 760), +(51679, 'Delbert', 1941, 'M', 757), +(51680, 'Horace', 1941, 'M', 740), +(51681, 'Clinton', 1941, 'M', 735), +(51682, 'Otis', 1941, 'M', 735), +(51683, 'Hubert', 1941, 'M', 731), +(51684, 'Matthew', 1941, 'M', 729), +(51685, 'Fredrick', 1941, 'M', 728), +(51686, 'Eric', 1941, 'M', 703), +(51687, 'Gerard', 1941, 'M', 689), +(51688, 'Willis', 1941, 'M', 685), +(51689, 'Kent', 1941, 'M', 677), +(51690, 'Clifton', 1941, 'M', 675), +(51691, 'Wilbur', 1941, 'M', 667), +(51692, 'Clayton', 1941, 'M', 662), +(51693, 'Juan', 1941, 'M', 662), +(51694, 'Archie', 1941, 'M', 656), +(51695, 'Sammy', 1941, 'M', 652), +(51696, 'Roosevelt', 1941, 'M', 646), +(51697, 'Alex', 1941, 'M', 641), +(51698, 'Alton', 1941, 'M', 636), +(51699, 'Leland', 1941, 'M', 636), +(51700, 'Randall', 1941, 'M', 633), +(51701, 'Myron', 1941, 'M', 623), +(51702, 'Christopher', 1941, 'M', 618), +(51703, 'Carlos', 1941, 'M', 614), +(51704, 'Garry', 1941, 'M', 613), +(51705, 'Ira', 1941, 'M', 603), +(51706, 'Oliver', 1941, 'M', 600), +(51707, 'Rudolph', 1941, 'M', 599), +(51708, 'Perry', 1941, 'M', 593), +(51709, 'Tommie', 1941, 'M', 577), +(51710, 'Doyle', 1941, 'M', 576), +(51711, 'Edmund', 1941, 'M', 576), +(51712, 'Wilbert', 1941, 'M', 575), +(51713, 'Troy', 1941, 'M', 570), +(51714, 'Aaron', 1941, 'M', 562), +(51715, 'Loren', 1941, 'M', 562), +(51716, 'Jerald', 1941, 'M', 559), +(51717, 'Rex', 1941, 'M', 557), +(51718, 'Sherman', 1941, 'M', 557), +(51719, 'Julius', 1941, 'M', 550), +(51720, 'Neal', 1941, 'M', 542), +(51721, 'Winston', 1941, 'M', 542), +(51722, 'Byron', 1941, 'M', 539), +(51723, 'Craig', 1941, 'M', 539), +(51724, 'Dwight', 1941, 'M', 536), +(51725, 'Sylvester', 1941, 'M', 536), +(51726, 'Pete', 1941, 'M', 534), +(51727, 'Salvatore', 1941, 'M', 534); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(51728, 'Pat', 1941, 'M', 530), +(51729, 'Reginald', 1941, 'M', 530), +(51730, 'Nathan', 1941, 'M', 528), +(51731, 'Laurence', 1941, 'M', 525), +(51732, 'Ross', 1941, 'M', 514), +(51733, 'Carlton', 1941, 'M', 510), +(51734, 'Elbert', 1941, 'M', 505), +(51735, 'Julian', 1941, 'M', 502), +(51736, 'Malcolm', 1941, 'M', 497), +(51737, 'Ivan', 1941, 'M', 496), +(51738, 'Darrel', 1941, 'M', 490), +(51739, 'Dallas', 1941, 'M', 485), +(51740, 'Teddy', 1941, 'M', 483), +(51741, 'Merle', 1941, 'M', 482), +(51742, 'Woodrow', 1941, 'M', 481), +(51743, 'Dewey', 1941, 'M', 476), +(51744, 'Jacob', 1941, 'M', 466), +(51745, 'Ruben', 1941, 'M', 462), +(51746, 'Jan', 1941, 'M', 459), +(51747, 'Rudy', 1941, 'M', 458), +(51748, 'Rufus', 1941, 'M', 457), +(51749, 'Buddy', 1941, 'M', 456), +(51750, 'Clark', 1941, 'M', 456), +(51751, 'Grady', 1941, 'M', 453), +(51752, 'Isaac', 1941, 'M', 452), +(51753, 'Ervin', 1941, 'M', 450), +(51754, 'Wilson', 1941, 'M', 450), +(51755, 'Jesus', 1941, 'M', 449), +(51756, 'Billie', 1941, 'M', 446), +(51757, 'Antonio', 1941, 'M', 444), +(51758, 'Terrence', 1941, 'M', 444), +(51759, 'Ellis', 1941, 'M', 443), +(51760, 'Nick', 1941, 'M', 442), +(51761, 'Ramon', 1941, 'M', 436), +(51762, 'Eldon', 1941, 'M', 434), +(51763, 'Mack', 1941, 'M', 433), +(51764, 'Orville', 1941, 'M', 431), +(51765, 'Forrest', 1941, 'M', 426), +(51766, 'Bobbie', 1941, 'M', 424), +(51767, 'Kevin', 1941, 'M', 420), +(51768, 'Darryl', 1941, 'M', 417), +(51769, 'Randolph', 1941, 'M', 417), +(51770, 'Frankie', 1941, 'M', 413), +(51771, 'Sheldon', 1941, 'M', 413), +(51772, 'Owen', 1941, 'M', 412), +(51773, 'Boyd', 1941, 'M', 411), +(51774, 'Micheal', 1941, 'M', 411), +(51775, 'Conrad', 1941, 'M', 407), +(51776, 'Scott', 1941, 'M', 402), +(51777, 'Junior', 1941, 'M', 398), +(51778, 'Angelo', 1941, 'M', 395), +(51779, 'Preston', 1941, 'M', 395), +(51780, 'Wade', 1941, 'M', 395), +(51781, 'Irvin', 1941, 'M', 393), +(51782, 'Phil', 1941, 'M', 392), +(51783, 'Tim', 1941, 'M', 388), +(51784, 'Felix', 1941, 'M', 383), +(51785, 'Garland', 1941, 'M', 381), +(51786, 'Aubrey', 1941, 'M', 373), +(51787, 'Grant', 1941, 'M', 373), +(51788, 'Lanny', 1941, 'M', 371), +(51789, 'Jeff', 1941, 'M', 361), +(51790, 'Jonathan', 1941, 'M', 359), +(51791, 'Royce', 1941, 'M', 357), +(51792, 'Mitchell', 1941, 'M', 355), +(51793, 'Sammie', 1941, 'M', 355), +(51794, 'Mickey', 1941, 'M', 354), +(51795, 'Bert', 1941, 'M', 353), +(51796, 'Harlan', 1941, 'M', 352), +(51797, 'Travis', 1941, 'M', 350), +(51798, 'Kenny', 1941, 'M', 346), +(51799, 'Tyrone', 1941, 'M', 346), +(51800, 'Marlin', 1941, 'M', 345), +(51801, 'Ken', 1941, 'M', 344), +(51802, 'Roberto', 1941, 'M', 344), +(51803, 'Pedro', 1941, 'M', 339), +(51804, 'Percy', 1941, 'M', 338), +(51805, 'Rodger', 1941, 'M', 338), +(51806, 'Louie', 1941, 'M', 336), +(51807, 'Noel', 1941, 'M', 336), +(51808, 'Stewart', 1941, 'M', 335), +(51809, 'Burton', 1941, 'M', 334), +(51810, 'Loyd', 1941, 'M', 333), +(51811, 'Daryl', 1941, 'M', 331), +(51812, 'Emmett', 1941, 'M', 327), +(51813, 'Harley', 1941, 'M', 327), +(51814, 'Chris', 1941, 'M', 321), +(51815, 'Irving', 1941, 'M', 317), +(51816, 'Mary', 1941, 'M', 315), +(51817, 'Wilfred', 1941, 'M', 308), +(51818, 'Elwood', 1941, 'M', 303), +(51819, 'Denis', 1941, 'M', 302), +(51820, 'Terrance', 1941, 'M', 299), +(51821, 'Emil', 1941, 'M', 297), +(51822, 'Grover', 1941, 'M', 297), +(51823, 'Ron', 1941, 'M', 293), +(51824, 'Melvyn', 1941, 'M', 290), +(51825, 'Raul', 1941, 'M', 290), +(51826, 'Spencer', 1941, 'M', 290), +(51827, 'Brent', 1941, 'M', 289), +(51828, 'Gale', 1941, 'M', 287), +(51829, 'Bradley', 1941, 'M', 286), +(51830, 'Lionel', 1941, 'M', 286), +(51831, 'Freddy', 1941, 'M', 285), +(51832, 'Darwin', 1941, 'M', 283), +(51833, 'Edmond', 1941, 'M', 280), +(51834, 'Ned', 1941, 'M', 279), +(51835, 'Amos', 1941, 'M', 278), +(51836, 'Andy', 1941, 'M', 278), +(51837, 'Francisco', 1941, 'M', 277), +(51838, 'Roscoe', 1941, 'M', 277), +(51839, 'Moses', 1941, 'M', 276), +(51840, 'Dominick', 1941, 'M', 274), +(51841, 'Mario', 1941, 'M', 273), +(51842, 'Errol', 1941, 'M', 272), +(51843, 'Ed', 1941, 'M', 271), +(51844, 'Kermit', 1941, 'M', 271), +(51845, 'Marcus', 1941, 'M', 265), +(51846, 'Murray', 1941, 'M', 265), +(51847, 'Norbert', 1941, 'M', 265), +(51848, 'Alfonso', 1941, 'M', 261), +(51849, 'Adrian', 1941, 'M', 260), +(51850, 'Lorenzo', 1941, 'M', 260), +(51851, 'Merlin', 1941, 'M', 258), +(51852, 'Dominic', 1941, 'M', 256), +(51853, 'Luis', 1941, 'M', 256), +(51854, 'Cornelius', 1941, 'M', 253), +(51855, 'Sanford', 1941, 'M', 253), +(51856, 'Thurman', 1941, 'M', 252), +(51857, 'Cleveland', 1941, 'M', 247), +(51858, 'Lance', 1941, 'M', 247), +(51859, 'Carol', 1941, 'M', 243), +(51860, 'Laverne', 1941, 'M', 241), +(51861, 'Delmar', 1941, 'M', 239), +(51862, 'August', 1941, 'M', 238), +(51863, 'Elijah', 1941, 'M', 238), +(51864, 'Austin', 1941, 'M', 235), +(51865, 'Gerry', 1941, 'M', 235), +(51866, 'Johnie', 1941, 'M', 233), +(51867, 'Carmen', 1941, 'M', 231), +(51868, 'Adam', 1941, 'M', 230), +(51869, 'Will', 1941, 'M', 226), +(51870, 'Alonzo', 1941, 'M', 224), +(51871, 'Denny', 1941, 'M', 224), +(51872, 'Geoffrey', 1941, 'M', 223), +(51873, 'Maynard', 1941, 'M', 223), +(51874, 'Wiley', 1941, 'M', 222), +(51875, 'Van', 1941, 'M', 220), +(51876, 'Lamar', 1941, 'M', 219), +(51877, 'Norris', 1941, 'M', 219), +(51878, 'Ricardo', 1941, 'M', 217), +(51879, 'Bryan', 1941, 'M', 216), +(51880, 'Elton', 1941, 'M', 216), +(51881, 'Otto', 1941, 'M', 215), +(51882, 'Weldon', 1941, 'M', 215), +(51883, 'Reuben', 1941, 'M', 213), +(51884, 'Alfredo', 1941, 'M', 212), +(51885, 'Frederic', 1941, 'M', 212), +(51886, 'Salvador', 1941, 'M', 212), +(51887, 'Armando', 1941, 'M', 211), +(51888, 'Merrill', 1941, 'M', 210), +(51889, 'Charley', 1941, 'M', 208), +(51890, 'Jasper', 1941, 'M', 208), +(51891, 'Millard', 1941, 'M', 208), +(51892, 'Robin', 1941, 'M', 208), +(51893, 'Irwin', 1941, 'M', 207), +(51894, 'Marc', 1941, 'M', 207), +(51895, 'Monte', 1941, 'M', 207), +(51896, 'Randy', 1941, 'M', 207), +(51897, 'Gabriel', 1941, 'M', 206), +(51898, 'Dwayne', 1941, 'M', 204), +(51899, 'Jeffery', 1941, 'M', 204), +(51900, 'Sterling', 1941, 'M', 200), +(51901, 'Gail', 1941, 'M', 199), +(51902, 'Elvin', 1941, 'M', 197), +(51903, 'Odell', 1941, 'M', 197), +(51904, 'Ronny', 1941, 'M', 195), +(51905, 'Hal', 1941, 'M', 194), +(51906, 'Jerold', 1941, 'M', 194), +(51907, 'Abraham', 1941, 'M', 193), +(51908, 'Elliott', 1941, 'M', 193), +(51909, 'Kurt', 1941, 'M', 193), +(51910, 'Al', 1941, 'M', 192), +(51911, 'Rene', 1941, 'M', 192), +(51912, 'Simon', 1941, 'M', 192), +(51913, 'Jake', 1941, 'M', 190), +(51914, 'Clement', 1941, 'M', 188), +(51915, 'Coy', 1941, 'M', 188), +(51916, 'Guadalupe', 1941, 'M', 188), +(51917, 'Dewayne', 1941, 'M', 185), +(51918, 'Hollis', 1941, 'M', 184), +(51919, 'Buford', 1941, 'M', 183), +(51920, 'Linwood', 1941, 'M', 182), +(51921, 'Monroe', 1941, 'M', 182), +(51922, 'Barney', 1941, 'M', 178), +(51923, 'Hector', 1941, 'M', 178), +(51924, 'Harrison', 1941, 'M', 177), +(51925, 'Dudley', 1941, 'M', 176), +(51926, 'Emory', 1941, 'M', 176), +(51927, 'Hershel', 1941, 'M', 176), +(51928, 'Jackson', 1941, 'M', 176), +(51929, 'Vance', 1941, 'M', 176), +(51930, 'Cary', 1941, 'M', 175), +(51931, 'Emanuel', 1941, 'M', 175), +(51932, 'Nolan', 1941, 'M', 175), +(51933, 'Riley', 1941, 'M', 174), +(51934, 'Shirley', 1941, 'M', 174), +(51935, 'Adolph', 1941, 'M', 173), +(51936, 'Mervin', 1941, 'M', 173), +(51937, 'Galen', 1941, 'M', 171), +(51938, 'Terence', 1941, 'M', 171), +(51939, 'Jerrold', 1941, 'M', 170), +(51940, 'Fredric', 1941, 'M', 169), +(51941, 'Wilmer', 1941, 'M', 169), +(51942, 'Armand', 1941, 'M', 168), +(51943, 'Shelby', 1941, 'M', 168), +(51944, 'Wilburn', 1941, 'M', 168), +(51945, 'Levi', 1941, 'M', 167), +(51946, 'Miguel', 1941, 'M', 166), +(51947, 'Clair', 1941, 'M', 165), +(51948, 'Kirk', 1941, 'M', 165), +(51949, 'Carrol', 1941, 'M', 164), +(51950, 'Truman', 1941, 'M', 164), +(51951, 'Jess', 1941, 'M', 163), +(51952, 'Ollie', 1941, 'M', 163), +(51953, 'Arturo', 1941, 'M', 161), +(51954, 'Dexter', 1941, 'M', 161), +(51955, 'Ernie', 1941, 'M', 161), +(51956, 'Miles', 1941, 'M', 161), +(51957, 'Noah', 1941, 'M', 161), +(51958, 'Kelly', 1941, 'M', 160), +(51959, 'Roderick', 1941, 'M', 160), +(51960, 'Barbara', 1941, 'M', 155), +(51961, 'Lavern', 1941, 'M', 155), +(51962, 'Patricia', 1941, 'M', 154), +(51963, 'Connie', 1941, 'M', 152), +(51964, 'Jean', 1941, 'M', 152), +(51965, 'Emery', 1941, 'M', 151), +(51966, 'Russel', 1941, 'M', 151), +(51967, 'Harris', 1941, 'M', 150), +(51968, 'Gus', 1941, 'M', 148), +(51969, 'Rolland', 1941, 'M', 147), +(51970, 'Tomas', 1941, 'M', 147), +(51971, 'Vern', 1941, 'M', 147), +(51972, 'Bernie', 1941, 'M', 146), +(51973, 'Domingo', 1941, 'M', 146), +(51974, 'Alphonso', 1941, 'M', 145), +(51975, 'Booker', 1941, 'M', 145), +(51976, 'Dana', 1941, 'M', 145), +(51977, 'Gearld', 1941, 'M', 145), +(51978, 'Forest', 1941, 'M', 141), +(51979, 'Kennith', 1941, 'M', 140), +(51980, 'Dalton', 1941, 'M', 139), +(51981, 'Ward', 1941, 'M', 139), +(51982, 'Elias', 1941, 'M', 138), +(51983, 'Ulysses', 1941, 'M', 138), +(51984, 'Cleo', 1941, 'M', 137), +(51985, 'Jere', 1941, 'M', 137), +(51986, 'Andre', 1941, 'M', 136), +(51987, 'Blaine', 1941, 'M', 136), +(51988, 'Bradford', 1941, 'M', 136), +(51989, 'Erwin', 1941, 'M', 136), +(51990, 'Gaylord', 1941, 'M', 136), +(51991, 'Monty', 1941, 'M', 136), +(51992, 'Tracy', 1941, 'M', 136), +(51993, 'Vito', 1941, 'M', 136), +(51994, 'Chuck', 1941, 'M', 135), +(51995, 'Herschel', 1941, 'M', 135), +(51996, 'Rocco', 1941, 'M', 135), +(51997, 'Winfred', 1941, 'M', 135), +(51998, 'Fernando', 1941, 'M', 134), +(51999, 'Pasquale', 1941, 'M', 133), +(52000, 'Barton', 1941, 'M', 132), +(52001, 'Basil', 1941, 'M', 132), +(52002, 'Gayle', 1941, 'M', 132), +(52003, 'Rodolfo', 1941, 'M', 132), +(52004, 'Carmine', 1941, 'M', 131), +(52005, 'Delmer', 1941, 'M', 131), +(52006, 'Dickie', 1941, 'M', 130), +(52007, 'Earle', 1941, 'M', 130), +(52008, 'Eli', 1941, 'M', 130), +(52009, 'Terrell', 1941, 'M', 130), +(52010, 'Vaughn', 1941, 'M', 130), +(52011, 'Alphonse', 1941, 'M', 129), +(52012, 'Lenard', 1941, 'M', 129), +(52013, 'Evan', 1941, 'M', 128), +(52014, 'Alberto', 1941, 'M', 127), +(52015, 'Freeman', 1941, 'M', 126), +(52016, 'Ernesto', 1941, 'M', 125), +(52017, 'Christian', 1941, 'M', 123), +(52018, 'Enrique', 1941, 'M', 123), +(52019, 'Lyman', 1941, 'M', 123), +(52020, 'Betty', 1941, 'M', 122), +(52021, 'Luke', 1941, 'M', 122), +(52022, 'Odis', 1941, 'M', 122), +(52023, 'Wilford', 1941, 'M', 122), +(52024, 'Abel', 1941, 'M', 121), +(52025, 'Arlen', 1941, 'M', 121), +(52026, 'Denver', 1941, 'M', 121), +(52027, 'Jeremiah', 1941, 'M', 121), +(52028, 'Everette', 1941, 'M', 120), +(52029, 'Kendall', 1941, 'M', 120), +(52030, 'Kerry', 1941, 'M', 120), +(52031, 'Kirby', 1941, 'M', 120), +(52032, 'Stan', 1941, 'M', 120), +(52033, 'Kyle', 1941, 'M', 119), +(52034, 'Rafael', 1941, 'M', 119), +(52035, 'Shelton', 1941, 'M', 119), +(52036, 'Morton', 1941, 'M', 118), +(52037, 'Pablo', 1941, 'M', 118), +(52038, 'Silas', 1941, 'M', 118), +(52039, 'Solomon', 1941, 'M', 118), +(52040, 'Anton', 1941, 'M', 117), +(52041, 'Elliot', 1941, 'M', 117), +(52042, 'Theron', 1941, 'M', 117), +(52043, 'Windell', 1941, 'M', 117), +(52044, 'Orlando', 1941, 'M', 116), +(52045, 'Thaddeus', 1941, 'M', 116), +(52046, 'Arden', 1941, 'M', 115), +(52047, 'Elmo', 1941, 'M', 115), +(52048, 'Sherwood', 1941, 'M', 115), +(52049, 'Wilton', 1941, 'M', 115), +(52050, 'Eddy', 1941, 'M', 114), +(52051, 'Emerson', 1941, 'M', 114), +(52052, 'Isaiah', 1941, 'M', 114), +(52053, 'Joesph', 1941, 'M', 114), +(52054, 'Rogers', 1941, 'M', 114), +(52055, 'Houston', 1941, 'M', 112), +(52056, 'Carter', 1941, 'M', 109), +(52057, 'Milford', 1941, 'M', 109), +(52058, 'Angel', 1941, 'M', 108), +(52059, 'Cyril', 1941, 'M', 108), +(52060, 'Davis', 1941, 'M', 108), +(52061, 'Olin', 1941, 'M', 108), +(52062, 'Royal', 1941, 'M', 108), +(52063, 'Clay', 1941, 'M', 106), +(52064, 'Dannie', 1941, 'M', 106), +(52065, 'Cletus', 1941, 'M', 105), +(52066, 'Carey', 1941, 'M', 104), +(52067, 'Elroy', 1941, 'M', 104), +(52068, 'Jefferson', 1941, 'M', 104), +(52069, 'Meredith', 1941, 'M', 104), +(52070, 'Olen', 1941, 'M', 104), +(52071, 'Alden', 1941, 'M', 103), +(52072, 'Felton', 1941, 'M', 103), +(52073, 'Alva', 1941, 'M', 102), +(52074, 'Claud', 1941, 'M', 102), +(52075, 'Graham', 1941, 'M', 102), +(52076, 'Ramiro', 1941, 'M', 102), +(52077, 'Reggie', 1941, 'M', 102), +(52078, 'Duncan', 1941, 'M', 101), +(52079, 'Ignacio', 1941, 'M', 101), +(52080, 'Lupe', 1941, 'M', 101), +(52081, 'Burl', 1941, 'M', 100), +(52082, 'Morgan', 1941, 'M', 100), +(52083, 'Raymon', 1941, 'M', 100), +(52084, 'Reynaldo', 1941, 'M', 100), +(52085, 'Mary', 1942, 'F', 63238), +(52086, 'Barbara', 1942, 'F', 44735), +(52087, 'Patricia', 1942, 'F', 39453), +(52088, 'Linda', 1942, 'F', 31609), +(52089, 'Carol', 1942, 'F', 30268), +(52090, 'Sandra', 1942, 'F', 24989), +(52091, 'Judith', 1942, 'F', 24786), +(52092, 'Nancy', 1942, 'F', 23326), +(52093, 'Betty', 1942, 'F', 21653), +(52094, 'Carolyn', 1942, 'F', 19981), +(52095, 'Sharon', 1942, 'F', 19648), +(52096, 'Shirley', 1942, 'F', 17743), +(52097, 'Joyce', 1942, 'F', 16727), +(52098, 'Margaret', 1942, 'F', 16552), +(52099, 'Judy', 1942, 'F', 15669), +(52100, 'Karen', 1942, 'F', 15388), +(52101, 'Dorothy', 1942, 'F', 15031), +(52102, 'Joan', 1942, 'F', 14513), +(52103, 'Janet', 1942, 'F', 13061), +(52104, 'Donna', 1942, 'F', 12984), +(52105, 'Susan', 1942, 'F', 12014), +(52106, 'Elizabeth', 1942, 'F', 11182), +(52107, 'Virginia', 1942, 'F', 10801), +(52108, 'Kathleen', 1942, 'F', 10693), +(52109, 'Janice', 1942, 'F', 10283), +(52110, 'Helen', 1942, 'F', 10014), +(52111, 'Marilyn', 1942, 'F', 9904), +(52112, 'Diane', 1942, 'F', 9550), +(52113, 'Martha', 1942, 'F', 9513), +(52114, 'Frances', 1942, 'F', 9470), +(52115, 'Gloria', 1942, 'F', 9446), +(52116, 'Beverly', 1942, 'F', 9407), +(52117, 'Ruth', 1942, 'F', 9312), +(52118, 'Bonnie', 1942, 'F', 8821), +(52119, 'Carole', 1942, 'F', 8408), +(52120, 'Jean', 1942, 'F', 8254), +(52121, 'Phyllis', 1942, 'F', 7791), +(52122, 'Ann', 1942, 'F', 7667), +(52123, 'Alice', 1942, 'F', 7378), +(52124, 'Brenda', 1942, 'F', 7237), +(52125, 'Doris', 1942, 'F', 7175), +(52126, 'Peggy', 1942, 'F', 6579), +(52127, 'Marie', 1942, 'F', 6556), +(52128, 'Lois', 1942, 'F', 6404), +(52129, 'Elaine', 1942, 'F', 5983), +(52130, 'Jane', 1942, 'F', 5708), +(52131, 'Geraldine', 1942, 'F', 5435), +(52132, 'Joanne', 1942, 'F', 5342), +(52133, 'Catherine', 1942, 'F', 5266), +(52134, 'Rose', 1942, 'F', 5251), +(52135, 'Charlotte', 1942, 'F', 5021), +(52136, 'Norma', 1942, 'F', 4968), +(52137, 'Evelyn', 1942, 'F', 4939), +(52138, 'Wanda', 1942, 'F', 4789), +(52139, 'Rita', 1942, 'F', 4705), +(52140, 'Sally', 1942, 'F', 4656), +(52141, 'Patsy', 1942, 'F', 4560), +(52142, 'Joann', 1942, 'F', 4503), +(52143, 'Anna', 1942, 'F', 4487), +(52144, 'Gail', 1942, 'F', 4445), +(52145, 'Louise', 1942, 'F', 4339), +(52146, 'Annie', 1942, 'F', 4290), +(52147, 'Dolores', 1942, 'F', 4269), +(52148, 'Ellen', 1942, 'F', 4193), +(52149, 'Jo', 1942, 'F', 4175), +(52150, 'Roberta', 1942, 'F', 4103), +(52151, 'Sarah', 1942, 'F', 4100), +(52152, 'Diana', 1942, 'F', 3856), +(52153, 'Jacqueline', 1942, 'F', 3830), +(52154, 'Connie', 1942, 'F', 3821), +(52155, 'Mildred', 1942, 'F', 3811), +(52156, 'Sylvia', 1942, 'F', 3727), +(52157, 'Sue', 1942, 'F', 3630), +(52158, 'Marjorie', 1942, 'F', 3624), +(52159, 'Kay', 1942, 'F', 3622), +(52160, 'Anne', 1942, 'F', 3523), +(52161, 'Ruby', 1942, 'F', 3519), +(52162, 'Darlene', 1942, 'F', 3515), +(52163, 'Loretta', 1942, 'F', 3406), +(52164, 'Irene', 1942, 'F', 3381), +(52165, 'Katherine', 1942, 'F', 3377), +(52166, 'Kathryn', 1942, 'F', 3351), +(52167, 'Arlene', 1942, 'F', 3332), +(52168, 'Marlene', 1942, 'F', 3251), +(52169, 'Rebecca', 1942, 'F', 3240), +(52170, 'Delores', 1942, 'F', 3171), +(52171, 'Eleanor', 1942, 'F', 3165), +(52172, 'Eileen', 1942, 'F', 3106), +(52173, 'Glenda', 1942, 'F', 3092), +(52174, 'Juanita', 1942, 'F', 3078), +(52175, 'Lorraine', 1942, 'F', 3009), +(52176, 'Rosemary', 1942, 'F', 3001), +(52177, 'Anita', 1942, 'F', 2998), +(52178, 'Sheila', 1942, 'F', 2973), +(52179, 'Julia', 1942, 'F', 2905), +(52180, 'Christine', 1942, 'F', 2900), +(52181, 'Maria', 1942, 'F', 2817), +(52182, 'Theresa', 1942, 'F', 2799), +(52183, 'Edna', 1942, 'F', 2763), +(52184, 'Josephine', 1942, 'F', 2746), +(52185, 'Cynthia', 1942, 'F', 2726), +(52186, 'Maureen', 1942, 'F', 2724), +(52187, 'Suzanne', 1942, 'F', 2709), +(52188, 'Jeanette', 1942, 'F', 2685), +(52189, 'Marcia', 1942, 'F', 2669), +(52190, 'Pamela', 1942, 'F', 2632), +(52191, 'June', 1942, 'F', 2608), +(52192, 'Emma', 1942, 'F', 2605), +(52193, 'Dianne', 1942, 'F', 2545), +(52194, 'Florence', 1942, 'F', 2536), +(52195, 'Lillian', 1942, 'F', 2489), +(52196, 'Pauline', 1942, 'F', 2472), +(52197, 'Edith', 1942, 'F', 2457), +(52198, 'Wilma', 1942, 'F', 2456), +(52199, 'Laura', 1942, 'F', 2409), +(52200, 'Constance', 1942, 'F', 2356), +(52201, 'Charlene', 1942, 'F', 2319), +(52202, 'Lucille', 1942, 'F', 2296), +(52203, 'Jeanne', 1942, 'F', 2287), +(52204, 'Audrey', 1942, 'F', 2285), +(52205, 'Thelma', 1942, 'F', 2257), +(52206, 'Clara', 1942, 'F', 2247), +(52207, 'Georgia', 1942, 'F', 2214), +(52208, 'Ethel', 1942, 'F', 2204), +(52209, 'Vivian', 1942, 'F', 2204), +(52210, 'Margie', 1942, 'F', 2193), +(52211, 'Gladys', 1942, 'F', 2191), +(52212, 'Sara', 1942, 'F', 2189), +(52213, 'Grace', 1942, 'F', 2157), +(52214, 'Marion', 1942, 'F', 2151), +(52215, 'Yvonne', 1942, 'F', 2113), +(52216, 'Lynda', 1942, 'F', 2107), +(52217, 'Willie', 1942, 'F', 2068), +(52218, 'Annette', 1942, 'F', 2042), +(52219, 'Priscilla', 1942, 'F', 1991), +(52220, 'Paula', 1942, 'F', 1974), +(52221, 'Bernice', 1942, 'F', 1964), +(52222, 'Maryann', 1942, 'F', 1925), +(52223, 'Hazel', 1942, 'F', 1911), +(52224, 'Eva', 1942, 'F', 1877), +(52225, 'Marian', 1942, 'F', 1838), +(52226, 'Esther', 1942, 'F', 1830), +(52227, 'Billie', 1942, 'F', 1828), +(52228, 'Pat', 1942, 'F', 1825), +(52229, 'Sherry', 1942, 'F', 1818), +(52230, 'Beatrice', 1942, 'F', 1771), +(52231, 'Bertha', 1942, 'F', 1755), +(52232, 'Maxine', 1942, 'F', 1750), +(52233, 'Lynn', 1942, 'F', 1749), +(52234, 'Lillie', 1942, 'F', 1717), +(52235, 'Bobbie', 1942, 'F', 1669), +(52236, 'Ella', 1942, 'F', 1660), +(52237, 'Ida', 1942, 'F', 1622), +(52238, 'Joy', 1942, 'F', 1593), +(52239, 'Rosa', 1942, 'F', 1574), +(52240, 'Marsha', 1942, 'F', 1569), +(52241, 'Julie', 1942, 'F', 1567), +(52242, 'Rosalie', 1942, 'F', 1544), +(52243, 'Kathy', 1942, 'F', 1539), +(52244, 'Deanna', 1942, 'F', 1447), +(52245, 'Minnie', 1942, 'F', 1447), +(52246, 'Harriet', 1942, 'F', 1442), +(52247, 'Rachel', 1942, 'F', 1427), +(52248, 'Emily', 1942, 'F', 1419), +(52249, 'Alma', 1942, 'F', 1406), +(52250, 'Elsie', 1942, 'F', 1399), +(52251, 'Caroline', 1942, 'F', 1391), +(52252, 'Jessie', 1942, 'F', 1391), +(52253, 'Gwendolyn', 1942, 'F', 1380), +(52254, 'Victoria', 1942, 'F', 1371), +(52255, 'Claudia', 1942, 'F', 1360), +(52256, 'Mattie', 1942, 'F', 1360), +(52257, 'Lucy', 1942, 'F', 1337), +(52258, 'Vera', 1942, 'F', 1316), +(52259, 'Faye', 1942, 'F', 1305), +(52260, 'Bessie', 1942, 'F', 1267), +(52261, 'Madeline', 1942, 'F', 1253), +(52262, 'Veronica', 1942, 'F', 1253), +(52263, 'Rosemarie', 1942, 'F', 1240), +(52264, 'Lynne', 1942, 'F', 1234), +(52265, 'Jackie', 1942, 'F', 1224), +(52266, 'Marianne', 1942, 'F', 1220), +(52267, 'Nellie', 1942, 'F', 1206), +(52268, 'Gayle', 1942, 'F', 1189), +(52269, 'Carrie', 1942, 'F', 1187), +(52270, 'Patty', 1942, 'F', 1164), +(52271, 'Agnes', 1942, 'F', 1132), +(52272, 'Stella', 1942, 'F', 1126), +(52273, 'Rosie', 1942, 'F', 1113), +(52274, 'Myrna', 1942, 'F', 1104), +(52275, 'Pearl', 1942, 'F', 1092), +(52276, 'Johnnie', 1942, 'F', 1067), +(52277, 'Dixie', 1942, 'F', 1060), +(52278, 'Jeannette', 1942, 'F', 1055), +(52279, 'Leona', 1942, 'F', 1055), +(52280, 'Velma', 1942, 'F', 1051), +(52281, 'Vicki', 1942, 'F', 1051), +(52282, 'Geneva', 1942, 'F', 1047), +(52283, 'Claire', 1942, 'F', 1027), +(52284, 'Angela', 1942, 'F', 1016), +(52285, 'Valerie', 1942, 'F', 1016), +(52286, 'Teresa', 1942, 'F', 1002), +(52287, 'Cora', 1942, 'F', 1001), +(52288, 'Mae', 1942, 'F', 997), +(52289, 'Penny', 1942, 'F', 992), +(52290, 'Carmen', 1942, 'F', 990), +(52291, 'Alberta', 1942, 'F', 988), +(52292, 'Naomi', 1942, 'F', 987), +(52293, 'Regina', 1942, 'F', 974), +(52294, 'Dora', 1942, 'F', 969), +(52295, 'Paulette', 1942, 'F', 963), +(52296, 'Janie', 1942, 'F', 950), +(52297, 'Viola', 1942, 'F', 941), +(52298, 'Andrea', 1942, 'F', 934), +(52299, 'Gertrude', 1942, 'F', 931), +(52300, 'Myra', 1942, 'F', 928), +(52301, 'Nina', 1942, 'F', 916), +(52302, 'Myrtle', 1942, 'F', 909), +(52303, 'Sondra', 1942, 'F', 897), +(52304, 'Lola', 1942, 'F', 889), +(52305, 'Jacquelyn', 1942, 'F', 884), +(52306, 'Verna', 1942, 'F', 872), +(52307, 'Antoinette', 1942, 'F', 868), +(52308, 'Lana', 1942, 'F', 856), +(52309, 'Lydia', 1942, 'F', 854), +(52310, 'Lula', 1942, 'F', 851), +(52311, 'Deloris', 1942, 'F', 849), +(52312, 'Nora', 1942, 'F', 838), +(52313, 'Bette', 1942, 'F', 836), +(52314, 'Cecelia', 1942, 'F', 836), +(52315, 'Susie', 1942, 'F', 836), +(52316, 'Leslie', 1942, 'F', 834), +(52317, 'Cecilia', 1942, 'F', 830), +(52318, 'Bonita', 1942, 'F', 826), +(52319, 'Terry', 1942, 'F', 818), +(52320, 'Marguerite', 1942, 'F', 813), +(52321, 'Ernestine', 1942, 'F', 808), +(52322, 'Saundra', 1942, 'F', 805), +(52323, 'Violet', 1942, 'F', 803), +(52324, 'Daisy', 1942, 'F', 802), +(52325, 'Eunice', 1942, 'F', 799), +(52326, 'Hattie', 1942, 'F', 786), +(52327, 'Lena', 1942, 'F', 785), +(52328, 'Hilda', 1942, 'F', 783), +(52329, 'Iris', 1942, 'F', 774), +(52330, 'Irma', 1942, 'F', 770), +(52331, 'Fannie', 1942, 'F', 766), +(52332, 'Ramona', 1942, 'F', 756), +(52333, 'Erma', 1942, 'F', 754), +(52334, 'Eloise', 1942, 'F', 746), +(52335, 'Colleen', 1942, 'F', 744), +(52336, 'Bettye', 1942, 'F', 742), +(52337, 'Olivia', 1942, 'F', 742), +(52338, 'Jennie', 1942, 'F', 728), +(52339, 'Michele', 1942, 'F', 728), +(52340, 'Bettie', 1942, 'F', 724), +(52341, 'Janis', 1942, 'F', 719), +(52342, 'Ada', 1942, 'F', 709), +(52343, 'Betsy', 1942, 'F', 706), +(52344, 'Miriam', 1942, 'F', 705), +(52345, 'Flora', 1942, 'F', 694), +(52346, 'Della', 1942, 'F', 681), +(52347, 'Sharron', 1942, 'F', 677), +(52348, 'Deborah', 1942, 'F', 676), +(52349, 'Sandy', 1942, 'F', 676), +(52350, 'Dawn', 1942, 'F', 674), +(52351, 'Penelope', 1942, 'F', 670), +(52352, 'Stephanie', 1942, 'F', 664), +(52353, 'Beth', 1942, 'F', 663), +(52354, 'Jill', 1942, 'F', 663), +(52355, 'Henrietta', 1942, 'F', 661), +(52356, 'Katie', 1942, 'F', 652), +(52357, 'Marcella', 1942, 'F', 648), +(52358, 'Melba', 1942, 'F', 648), +(52359, 'Mamie', 1942, 'F', 635), +(52360, 'Jerry', 1942, 'F', 610), +(52361, 'Genevieve', 1942, 'F', 609), +(52362, 'Sonja', 1942, 'F', 600), +(52363, 'Shelby', 1942, 'F', 598), +(52364, 'Cheryl', 1942, 'F', 590), +(52365, 'Laverne', 1942, 'F', 587), +(52366, 'Lee', 1942, 'F', 584), +(52367, 'Francine', 1942, 'F', 576), +(52368, 'Mable', 1942, 'F', 576), +(52369, 'Inez', 1942, 'F', 574), +(52370, 'Faith', 1942, 'F', 571), +(52371, 'Carla', 1942, 'F', 554), +(52372, 'Dianna', 1942, 'F', 548), +(52373, 'Maggie', 1942, 'F', 546), +(52374, 'Amelia', 1942, 'F', 543), +(52375, 'Toni', 1942, 'F', 542), +(52376, 'Rosalind', 1942, 'F', 537), +(52377, 'Lou', 1942, 'F', 536), +(52378, 'Jan', 1942, 'F', 534), +(52379, 'Sallie', 1942, 'F', 533), +(52380, 'Frankie', 1942, 'F', 532), +(52381, 'Helene', 1942, 'F', 532), +(52382, 'Jimmie', 1942, 'F', 530), +(52383, 'Claudette', 1942, 'F', 526), +(52384, 'Reba', 1942, 'F', 526), +(52385, 'Eula', 1942, 'F', 521), +(52386, 'Lorna', 1942, 'F', 518), +(52387, 'Muriel', 1942, 'F', 517), +(52388, 'Mabel', 1942, 'F', 513), +(52389, 'Becky', 1942, 'F', 512), +(52390, 'Beulah', 1942, 'F', 508), +(52391, 'Freda', 1942, 'F', 503), +(52392, 'Joanna', 1942, 'F', 503), +(52393, 'Fay', 1942, 'F', 489), +(52394, 'Glenna', 1942, 'F', 489), +(52395, 'Margo', 1942, 'F', 487), +(52396, 'Rosetta', 1942, 'F', 487), +(52397, 'Rochelle', 1942, 'F', 486), +(52398, 'Blanche', 1942, 'F', 483), +(52399, 'Cathy', 1942, 'F', 483), +(52400, 'Lila', 1942, 'F', 483), +(52401, 'Wendy', 1942, 'F', 481), +(52402, 'Nadine', 1942, 'F', 477), +(52403, 'Amy', 1942, 'F', 473), +(52404, 'Natalie', 1942, 'F', 468), +(52405, 'Gretchen', 1942, 'F', 464), +(52406, 'Nelda', 1942, 'F', 464), +(52407, 'Sadie', 1942, 'F', 457), +(52408, 'Winifred', 1942, 'F', 457), +(52409, 'Camille', 1942, 'F', 449), +(52410, 'Etta', 1942, 'F', 448), +(52411, 'Opal', 1942, 'F', 447), +(52412, 'Denise', 1942, 'F', 445), +(52413, 'Melinda', 1942, 'F', 443), +(52414, 'Lenora', 1942, 'F', 440), +(52415, 'Yolanda', 1942, 'F', 440), +(52416, 'Renee', 1942, 'F', 439), +(52417, 'Nettie', 1942, 'F', 437), +(52418, 'Gracie', 1942, 'F', 434), +(52419, 'Christina', 1942, 'F', 432), +(52420, 'Lorene', 1942, 'F', 429), +(52421, 'Ina', 1942, 'F', 427), +(52422, 'Jewel', 1942, 'F', 421), +(52423, 'Willa', 1942, 'F', 420), +(52424, 'Mona', 1942, 'F', 419), +(52425, 'Essie', 1942, 'F', 416), +(52426, 'Earnestine', 1942, 'F', 415), +(52427, 'Karin', 1942, 'F', 415), +(52428, 'Polly', 1942, 'F', 413), +(52429, 'Ruthie', 1942, 'F', 411), +(52430, 'Darla', 1942, 'F', 409), +(52431, 'Celia', 1942, 'F', 407), +(52432, 'Ollie', 1942, 'F', 407), +(52433, 'Susanne', 1942, 'F', 405), +(52434, 'Adrienne', 1942, 'F', 401), +(52435, 'Kaye', 1942, 'F', 397), +(52436, 'Dorthy', 1942, 'F', 390), +(52437, 'Jewell', 1942, 'F', 389), +(52438, 'Gay', 1942, 'F', 388), +(52439, 'Gwen', 1942, 'F', 388), +(52440, 'Melanie', 1942, 'F', 388), +(52441, 'Dale', 1942, 'F', 386), +(52442, 'Earlene', 1942, 'F', 383), +(52443, 'Marilynn', 1942, 'F', 381), +(52444, 'Beverley', 1942, 'F', 377), +(52445, 'Marylou', 1942, 'F', 376), +(52446, 'Molly', 1942, 'F', 375), +(52447, 'Bernadette', 1942, 'F', 373), +(52448, 'Pearlie', 1942, 'F', 373), +(52449, 'Ora', 1942, 'F', 371), +(52450, 'Lela', 1942, 'F', 370), +(52451, 'Tommie', 1942, 'F', 367), +(52452, 'Judie', 1942, 'F', 366), +(52453, 'Gale', 1942, 'F', 365), +(52454, 'Estelle', 1942, 'F', 363), +(52455, 'Josie', 1942, 'F', 363), +(52456, 'Clarice', 1942, 'F', 362), +(52457, 'Jeannie', 1942, 'F', 360), +(52458, 'Lenore', 1942, 'F', 360), +(52459, 'Alicia', 1942, 'F', 359), +(52460, 'Estella', 1942, 'F', 357), +(52461, 'Harriett', 1942, 'F', 356), +(52462, 'Adele', 1942, 'F', 355), +(52463, 'Dona', 1942, 'F', 354), +(52464, 'Patti', 1942, 'F', 353), +(52465, 'Rena', 1942, 'F', 348), +(52466, 'Olga', 1942, 'F', 346), +(52467, 'Noreen', 1942, 'F', 345), +(52468, 'Vickie', 1942, 'F', 344), +(52469, 'Janette', 1942, 'F', 343), +(52470, 'Judi', 1942, 'F', 343), +(52471, 'Dorothea', 1942, 'F', 340), +(52472, 'Lavonne', 1942, 'F', 337), +(52473, 'Iva', 1942, 'F', 335), +(52474, 'Doreen', 1942, 'F', 334), +(52475, 'Isabel', 1942, 'F', 333), +(52476, 'Rhoda', 1942, 'F', 331), +(52477, 'Leah', 1942, 'F', 330), +(52478, 'Delia', 1942, 'F', 327), +(52479, 'Roseann', 1942, 'F', 327), +(52480, 'Eugenia', 1942, 'F', 325), +(52481, 'Jerilyn', 1942, 'F', 325), +(52482, 'Monica', 1942, 'F', 325), +(52483, 'Sheryl', 1942, 'F', 324), +(52484, 'Addie', 1942, 'F', 321), +(52485, 'Johanna', 1942, 'F', 320), +(52486, 'Edwina', 1942, 'F', 319), +(52487, 'Lottie', 1942, 'F', 319), +(52488, 'Dana', 1942, 'F', 315), +(52489, 'Hope', 1942, 'F', 315), +(52490, 'Maryanne', 1942, 'F', 312), +(52491, 'Fern', 1942, 'F', 311), +(52492, 'Robin', 1942, 'F', 310), +(52493, 'Robbie', 1942, 'F', 309), +(52494, 'Bernadine', 1942, 'F', 308), +(52495, 'Vicky', 1942, 'F', 302), +(52496, 'Leola', 1942, 'F', 300), +(52497, 'Corinne', 1942, 'F', 299), +(52498, 'Arleen', 1942, 'F', 298), +(52499, 'Lizzie', 1942, 'F', 297), +(52500, 'Amanda', 1942, 'F', 295), +(52501, 'Francis', 1942, 'F', 295), +(52502, 'Laurel', 1942, 'F', 295), +(52503, 'Ola', 1942, 'F', 294), +(52504, 'Carlene', 1942, 'F', 293), +(52505, 'Earline', 1942, 'F', 293), +(52506, 'Sybil', 1942, 'F', 293), +(52507, 'Guadalupe', 1942, 'F', 292), +(52508, 'Lupe', 1942, 'F', 291), +(52509, 'Mavis', 1942, 'F', 288), +(52510, 'Ilene', 1942, 'F', 287), +(52511, 'Diann', 1942, 'F', 285), +(52512, 'Madeleine', 1942, 'F', 285), +(52513, 'Cecile', 1942, 'F', 282), +(52514, 'Eddie', 1942, 'F', 282), +(52515, 'James', 1942, 'F', 282), +(52516, 'Lucinda', 1942, 'F', 282), +(52517, 'Jayne', 1942, 'F', 281), +(52518, 'Margarita', 1942, 'F', 280), +(52519, 'May', 1942, 'F', 280), +(52520, 'Madelyn', 1942, 'F', 278), +(52521, 'Rae', 1942, 'F', 278), +(52522, 'Cleo', 1942, 'F', 277), +(52523, 'Marva', 1942, 'F', 276), +(52524, 'Jeannine', 1942, 'F', 275), +(52525, 'Jenny', 1942, 'F', 273), +(52526, 'Merle', 1942, 'F', 273), +(52527, 'Meredith', 1942, 'F', 272), +(52528, 'Alta', 1942, 'F', 271), +(52529, 'Freddie', 1942, 'F', 271), +(52530, 'Imogene', 1942, 'F', 270), +(52531, 'Effie', 1942, 'F', 269), +(52532, 'Marla', 1942, 'F', 269), +(52533, 'Elva', 1942, 'F', 268), +(52534, 'Elnora', 1942, 'F', 267), +(52535, 'Trudy', 1942, 'F', 267), +(52536, 'Rosalyn', 1942, 'F', 265), +(52537, 'Arline', 1942, 'F', 264), +(52538, 'Melva', 1942, 'F', 264), +(52539, 'Cornelia', 1942, 'F', 263), +(52540, 'Marlys', 1942, 'F', 263), +(52541, 'Nola', 1942, 'F', 263), +(52542, 'Antonia', 1942, 'F', 261), +(52543, 'Elinor', 1942, 'F', 261), +(52544, 'Jannie', 1942, 'F', 261), +(52545, 'Nell', 1942, 'F', 261), +(52546, 'Katharine', 1942, 'F', 259), +(52547, 'Angelina', 1942, 'F', 254), +(52548, 'Jeanie', 1942, 'F', 251), +(52549, 'Lora', 1942, 'F', 251), +(52550, 'Dolly', 1942, 'F', 250), +(52551, 'Margery', 1942, 'F', 249), +(52552, 'Sonia', 1942, 'F', 249), +(52553, 'Therese', 1942, 'F', 249), +(52554, 'Ruthann', 1942, 'F', 247), +(52555, 'Gerry', 1942, 'F', 244), +(52556, 'Tina', 1942, 'F', 244), +(52557, 'Lynette', 1942, 'F', 243), +(52558, 'Winnie', 1942, 'F', 241), +(52559, 'John', 1942, 'F', 240), +(52560, 'Nita', 1942, 'F', 240), +(52561, 'Dee', 1942, 'F', 237), +(52562, 'Joe', 1942, 'F', 237), +(52563, 'Mollie', 1942, 'F', 237), +(52564, 'Nona', 1942, 'F', 237), +(52565, 'Dottie', 1942, 'F', 235), +(52566, 'Marietta', 1942, 'F', 233), +(52567, 'Michelle', 1942, 'F', 233), +(52568, 'Virgie', 1942, 'F', 233), +(52569, 'April', 1942, 'F', 232), +(52570, 'Laurie', 1942, 'F', 232), +(52571, 'Loraine', 1942, 'F', 232), +(52572, 'Dollie', 1942, 'F', 231), +(52573, 'Holly', 1942, 'F', 230), +(52574, 'Millie', 1942, 'F', 230), +(52575, 'Elvira', 1942, 'F', 229), +(52576, 'Ginger', 1942, 'F', 229), +(52577, 'Ila', 1942, 'F', 229), +(52578, 'Kathie', 1942, 'F', 229), +(52579, 'Elma', 1942, 'F', 226), +(52580, 'Cindy', 1942, 'F', 225), +(52581, 'Alyce', 1942, 'F', 224), +(52582, 'Queen', 1942, 'F', 224), +(52583, 'Aurora', 1942, 'F', 223), +(52584, 'Jolene', 1942, 'F', 223), +(52585, 'Delois', 1942, 'F', 219), +(52586, 'Carolann', 1942, 'F', 218), +(52587, 'Helena', 1942, 'F', 218), +(52588, 'Jeri', 1942, 'F', 217), +(52589, 'Maryjane', 1942, 'F', 217), +(52590, 'Nan', 1942, 'F', 217), +(52591, 'Bennie', 1942, 'F', 216), +(52592, 'Goldie', 1942, 'F', 216), +(52593, 'Luella', 1942, 'F', 216), +(52594, 'Hannah', 1942, 'F', 213), +(52595, 'Sonya', 1942, 'F', 212), +(52596, 'Angie', 1942, 'F', 210), +(52597, 'Merrily', 1942, 'F', 210), +(52598, 'Robert', 1942, 'F', 209), +(52599, 'Ladonna', 1942, 'F', 208), +(52600, 'Wilda', 1942, 'F', 208), +(52601, 'Elouise', 1942, 'F', 207), +(52602, 'Maryellen', 1942, 'F', 206), +(52603, 'Elena', 1942, 'F', 205), +(52604, 'Neva', 1942, 'F', 205), +(52605, 'Roxie', 1942, 'F', 204), +(52606, 'Leila', 1942, 'F', 203), +(52607, 'Melody', 1942, 'F', 202), +(52608, 'Sherrill', 1942, 'F', 202), +(52609, 'Merry', 1942, 'F', 201), +(52610, 'Rosalee', 1942, 'F', 201), +(52611, 'Jennifer', 1942, 'F', 199), +(52612, 'Louella', 1942, 'F', 197), +(52613, 'Carmela', 1942, 'F', 196), +(52614, 'Dian', 1942, 'F', 196), +(52615, 'Peggie', 1942, 'F', 196), +(52616, 'Lilly', 1942, 'F', 195), +(52617, 'Roslyn', 1942, 'F', 195), +(52618, 'Sherrie', 1942, 'F', 195), +(52619, 'Marilee', 1942, 'F', 192), +(52620, 'Carroll', 1942, 'F', 191), +(52621, 'Kaaren', 1942, 'F', 191), +(52622, 'Theodora', 1942, 'F', 189), +(52623, 'Angeline', 1942, 'F', 188), +(52624, 'Jeraldine', 1942, 'F', 188), +(52625, 'Karla', 1942, 'F', 187), +(52626, 'Karon', 1942, 'F', 187), +(52627, 'Sydney', 1942, 'F', 187), +(52628, 'Julianne', 1942, 'F', 185), +(52629, 'Reva', 1942, 'F', 185), +(52630, 'Cassandra', 1942, 'F', 184), +(52631, 'Rosanne', 1942, 'F', 184), +(52632, 'Concetta', 1942, 'F', 183), +(52633, 'Carmella', 1942, 'F', 182), +(52634, 'Cathleen', 1942, 'F', 182), +(52635, 'Corrine', 1942, 'F', 182), +(52636, 'Lucia', 1942, 'F', 182), +(52637, 'Zelma', 1942, 'F', 181), +(52638, 'Georgianna', 1942, 'F', 180), +(52639, 'Olive', 1942, 'F', 180), +(52640, 'Sammie', 1942, 'F', 180), +(52641, 'Odessa', 1942, 'F', 179), +(52642, 'Caryl', 1942, 'F', 177), +(52643, 'Isabelle', 1942, 'F', 176), +(52644, 'Avis', 1942, 'F', 175), +(52645, 'Crystal', 1942, 'F', 175), +(52646, 'Lily', 1942, 'F', 173), +(52647, 'Adeline', 1942, 'F', 172), +(52648, 'Karol', 1942, 'F', 172), +(52649, 'Rosella', 1942, 'F', 171), +(52650, 'Callie', 1942, 'F', 170), +(52651, 'Carolynn', 1942, 'F', 170), +(52652, 'William', 1942, 'F', 170), +(52653, 'Deanne', 1942, 'F', 169), +(52654, 'Kitty', 1942, 'F', 168), +(52655, 'Cherie', 1942, 'F', 167), +(52656, 'Darleen', 1942, 'F', 166), +(52657, 'Nannie', 1942, 'F', 166), +(52658, 'Frieda', 1942, 'F', 165), +(52659, 'Jerrie', 1942, 'F', 165), +(52660, 'Lorena', 1942, 'F', 165), +(52661, 'Charles', 1942, 'F', 164), +(52662, 'Georgette', 1942, 'F', 164), +(52663, 'Clare', 1942, 'F', 163), +(52664, 'Letha', 1942, 'F', 163), +(52665, 'Consuelo', 1942, 'F', 162), +(52666, 'Jerilynn', 1942, 'F', 162), +(52667, 'Lorine', 1942, 'F', 161), +(52668, 'Retha', 1942, 'F', 161), +(52669, 'Heather', 1942, 'F', 159), +(52670, 'Ronnie', 1942, 'F', 159), +(52671, 'Selma', 1942, 'F', 159), +(52672, 'Carolee', 1942, 'F', 158), +(52673, 'Flossie', 1942, 'F', 158), +(52674, 'Harriette', 1942, 'F', 158), +(52675, 'Freida', 1942, 'F', 157), +(52676, 'Gearldine', 1942, 'F', 157), +(52677, 'Michael', 1942, 'F', 157), +(52678, 'Yvette', 1942, 'F', 157), +(52679, 'Celeste', 1942, 'F', 156), +(52680, 'Shari', 1942, 'F', 156), +(52681, 'Toby', 1942, 'F', 156), +(52682, 'Lucile', 1942, 'F', 155), +(52683, 'Melissa', 1942, 'F', 155), +(52684, 'Annabelle', 1942, 'F', 153), +(52685, 'Sharen', 1942, 'F', 153), +(52686, 'Annetta', 1942, 'F', 152), +(52687, 'Lucretia', 1942, 'F', 152), +(52688, 'Shelia', 1942, 'F', 152), +(52689, 'Ardith', 1942, 'F', 151), +(52690, 'Evangeline', 1942, 'F', 151), +(52691, 'Florine', 1942, 'F', 151), +(52692, 'Tanya', 1942, 'F', 151), +(52693, 'Corine', 1942, 'F', 150), +(52694, 'Eliza', 1942, 'F', 150), +(52695, 'Ester', 1942, 'F', 150), +(52696, 'Georgie', 1942, 'F', 150), +(52697, 'Elisabeth', 1942, 'F', 149), +(52698, 'George', 1942, 'F', 149), +(52699, 'Eleanore', 1942, 'F', 148), +(52700, 'Aloma', 1942, 'F', 147), +(52701, 'Georgiana', 1942, 'F', 147), +(52702, 'Nedra', 1942, 'F', 147), +(52703, 'Charleen', 1942, 'F', 146), +(52704, 'Doretha', 1942, 'F', 146), +(52705, 'Ophelia', 1942, 'F', 146), +(52706, 'Pam', 1942, 'F', 146), +(52707, 'Belva', 1942, 'F', 144), +(52708, 'Cherry', 1942, 'F', 144), +(52709, 'Sophie', 1942, 'F', 144), +(52710, 'Suellen', 1942, 'F', 144), +(52711, 'Twila', 1942, 'F', 144), +(52712, 'Jeanine', 1942, 'F', 143), +(52713, 'Portia', 1942, 'F', 143), +(52714, 'Terri', 1942, 'F', 143), +(52715, 'Celestine', 1942, 'F', 142), +(52716, 'Delilah', 1942, 'F', 142), +(52717, 'Dinah', 1942, 'F', 142), +(52718, 'Jana', 1942, 'F', 141), +(52719, 'Carrol', 1942, 'F', 140), +(52720, 'Lessie', 1942, 'F', 140), +(52721, 'Mickey', 1942, 'F', 140), +(52722, 'Pattie', 1942, 'F', 139), +(52723, 'Esperanza', 1942, 'F', 137), +(52724, 'Mariann', 1942, 'F', 137), +(52725, 'Maudie', 1942, 'F', 137), +(52726, 'Aileen', 1942, 'F', 136), +(52727, 'Elsa', 1942, 'F', 136), +(52728, 'Greta', 1942, 'F', 135), +(52729, 'Lelia', 1942, 'F', 134), +(52730, 'Madonna', 1942, 'F', 134), +(52731, 'Tamara', 1942, 'F', 133), +(52732, 'Alfreda', 1942, 'F', 132), +(52733, 'Ava', 1942, 'F', 132), +(52734, 'Bobby', 1942, 'F', 132), +(52735, 'Reta', 1942, 'F', 132), +(52736, 'Roselyn', 1942, 'F', 132), +(52737, 'Georgene', 1942, 'F', 131), +(52738, 'Malinda', 1942, 'F', 131), +(52739, 'Margot', 1942, 'F', 131), +(52740, 'Matilda', 1942, 'F', 131), +(52741, 'Marlyn', 1942, 'F', 130), +(52742, 'Candace', 1942, 'F', 129), +(52743, 'Donnie', 1942, 'F', 129), +(52744, 'Karolyn', 1942, 'F', 129), +(52745, 'Lona', 1942, 'F', 129), +(52746, 'Sharlene', 1942, 'F', 129), +(52747, 'Camilla', 1942, 'F', 127), +(52748, 'Jessica', 1942, 'F', 127), +(52749, 'Phoebe', 1942, 'F', 127), +(52750, 'Richard', 1942, 'F', 127), +(52751, 'Vernell', 1942, 'F', 127), +(52752, 'Bertie', 1942, 'F', 126), +(52753, 'Gene', 1942, 'F', 126), +(52754, 'Jerri', 1942, 'F', 126), +(52755, 'Lisa', 1942, 'F', 125), +(52756, 'Shannon', 1942, 'F', 125), +(52757, 'Treva', 1942, 'F', 124), +(52758, 'Vonda', 1942, 'F', 124), +(52759, 'Allie', 1942, 'F', 123), +(52760, 'Claudine', 1942, 'F', 123), +(52761, 'Minerva', 1942, 'F', 123), +(52762, 'Alexandra', 1942, 'F', 121), +(52763, 'Rhea', 1942, 'F', 121), +(52764, 'Aline', 1942, 'F', 120), +(52765, 'Hester', 1942, 'F', 120), +(52766, 'Jamie', 1942, 'F', 120), +(52767, 'Mercedes', 1942, 'F', 120), +(52768, 'Christie', 1942, 'F', 119), +(52769, 'Justine', 1942, 'F', 119), +(52770, 'Charlie', 1942, 'F', 118), +(52771, 'Carlotta', 1942, 'F', 117), +(52772, 'Maude', 1942, 'F', 117), +(52773, 'Althea', 1942, 'F', 116), +(52774, 'Beryl', 1942, 'F', 116), +(52775, 'Emilie', 1942, 'F', 116), +(52776, 'Felicia', 1942, 'F', 116), +(52777, 'Lue', 1942, 'F', 116), +(52778, 'Shirlee', 1942, 'F', 116), +(52779, 'Sidney', 1942, 'F', 116), +(52780, 'Sherri', 1942, 'F', 115), +(52781, 'Annmarie', 1942, 'F', 114), +(52782, 'David', 1942, 'F', 114), +(52783, 'Enid', 1942, 'F', 114), +(52784, 'Patrica', 1942, 'F', 114), +(52785, 'Ardis', 1942, 'F', 113), +(52786, 'Cathryn', 1942, 'F', 113), +(52787, 'Katheryn', 1942, 'F', 113), +(52788, 'Iona', 1942, 'F', 112), +(52789, 'Lauretta', 1942, 'F', 112), +(52790, 'Leta', 1942, 'F', 112), +(52791, 'Socorro', 1942, 'F', 112), +(52792, 'Delphine', 1942, 'F', 111), +(52793, 'Dessie', 1942, 'F', 110), +(52794, 'Jacklyn', 1942, 'F', 110), +(52795, 'Elida', 1942, 'F', 109), +(52796, 'Hedy', 1942, 'F', 109), +(52797, 'Ima', 1942, 'F', 109), +(52798, 'Rhonda', 1942, 'F', 109), +(52799, 'Rowena', 1942, 'F', 109), +(52800, 'Winona', 1942, 'F', 109), +(52801, 'Carolyne', 1942, 'F', 108), +(52802, 'Debra', 1942, 'F', 108), +(52803, 'Pansy', 1942, 'F', 108), +(52804, 'Verla', 1942, 'F', 108), +(52805, 'Fran', 1942, 'F', 107), +(52806, 'Garnet', 1942, 'F', 107), +(52807, 'Leora', 1942, 'F', 107), +(52808, 'Roxanne', 1942, 'F', 107), +(52809, 'Daphne', 1942, 'F', 106), +(52810, 'Dorene', 1942, 'F', 106), +(52811, 'Elise', 1942, 'F', 106), +(52812, 'Margarett', 1942, 'F', 106), +(52813, 'Maryjo', 1942, 'F', 106), +(52814, 'Nila', 1942, 'F', 106), +(52815, 'Prudence', 1942, 'F', 106), +(52816, 'Syble', 1942, 'F', 106), +(52817, 'Zelda', 1942, 'F', 106), +(52818, 'Cathie', 1942, 'F', 105), +(52819, 'Lavon', 1942, 'F', 105), +(52820, 'Marianna', 1942, 'F', 105), +(52821, 'Sheri', 1942, 'F', 105), +(52822, 'Velda', 1942, 'F', 105), +(52823, 'Lavern', 1942, 'F', 104), +(52824, 'Louisa', 1942, 'F', 104), +(52825, 'Ofelia', 1942, 'F', 104), +(52826, 'Angelita', 1942, 'F', 103), +(52827, 'Delma', 1942, 'F', 103), +(52828, 'Janelle', 1942, 'F', 103), +(52829, 'Margret', 1942, 'F', 103), +(52830, 'Suzan', 1942, 'F', 103), +(52831, 'Thomas', 1942, 'F', 103), +(52832, 'Catharine', 1942, 'F', 102), +(52833, 'Kate', 1942, 'F', 102), +(52834, 'Lesley', 1942, 'F', 102), +(52835, 'Millicent', 1942, 'F', 102), +(52836, 'Alene', 1942, 'F', 101), +(52837, 'Birdie', 1942, 'F', 101), +(52838, 'Charmaine', 1942, 'F', 101), +(52839, 'Leanna', 1942, 'F', 101), +(52840, 'Leanne', 1942, 'F', 101), +(52841, 'Lettie', 1942, 'F', 101), +(52842, 'Pearline', 1942, 'F', 101), +(52843, 'James', 1942, 'M', 77173), +(52844, 'Robert', 1942, 'M', 71834), +(52845, 'John', 1942, 'M', 66021), +(52846, 'William', 1942, 'M', 54874), +(52847, 'Richard', 1942, 'M', 43581), +(52848, 'David', 1942, 'M', 35892), +(52849, 'Charles', 1942, 'M', 35842), +(52850, 'Thomas', 1942, 'M', 31102), +(52851, 'Ronald', 1942, 'M', 27127), +(52852, 'Donald', 1942, 'M', 23948), +(52853, 'Joseph', 1942, 'M', 22423), +(52854, 'Larry', 1942, 'M', 22093), +(52855, 'Michael', 1942, 'M', 21728), +(52856, 'George', 1942, 'M', 21270), +(52857, 'Kenneth', 1942, 'M', 18207), +(52858, 'Jerry', 1942, 'M', 17475), +(52859, 'Edward', 1942, 'M', 17464), +(52860, 'Gary', 1942, 'M', 17066), +(52861, 'Paul', 1942, 'M', 16485), +(52862, 'Dennis', 1942, 'M', 13279), +(52863, 'Frank', 1942, 'M', 12242), +(52864, 'Gerald', 1942, 'M', 11478), +(52865, 'Douglas', 1942, 'M', 11234), +(52866, 'Raymond', 1942, 'M', 11107), +(52867, 'Roger', 1942, 'M', 9173), +(52868, 'Walter', 1942, 'M', 8678), +(52869, 'Harold', 1942, 'M', 8582), +(52870, 'Daniel', 1942, 'M', 8506), +(52871, 'Arthur', 1942, 'M', 8027), +(52872, 'Lawrence', 1942, 'M', 7637), +(52873, 'Henry', 1942, 'M', 7561), +(52874, 'Stephen', 1942, 'M', 7502), +(52875, 'Joe', 1942, 'M', 7385), +(52876, 'Jack', 1942, 'M', 7359), +(52877, 'Billy', 1942, 'M', 7303), +(52878, 'Carl', 1942, 'M', 7266), +(52879, 'Willie', 1942, 'M', 7094), +(52880, 'Ralph', 1942, 'M', 6635), +(52881, 'Peter', 1942, 'M', 6587), +(52882, 'Albert', 1942, 'M', 6493), +(52883, 'Wayne', 1942, 'M', 6481), +(52884, 'Roy', 1942, 'M', 6309), +(52885, 'Bobby', 1942, 'M', 6247), +(52886, 'Anthony', 1942, 'M', 6211), +(52887, 'Eugene', 1942, 'M', 6089), +(52888, 'Fred', 1942, 'M', 6087), +(52889, 'Jimmy', 1942, 'M', 5947), +(52890, 'Harry', 1942, 'M', 5626), +(52891, 'Howard', 1942, 'M', 5567), +(52892, 'Bruce', 1942, 'M', 5383), +(52893, 'Louis', 1942, 'M', 5152), +(52894, 'Terry', 1942, 'M', 4811), +(52895, 'Norman', 1942, 'M', 4680), +(52896, 'Philip', 1942, 'M', 4600), +(52897, 'Stanley', 1942, 'M', 4586), +(52898, 'Johnny', 1942, 'M', 4582), +(52899, 'Leonard', 1942, 'M', 4371), +(52900, 'Francis', 1942, 'M', 4295), +(52901, 'Samuel', 1942, 'M', 4199), +(52902, 'Melvin', 1942, 'M', 4180), +(52903, 'Ernest', 1942, 'M', 4076), +(52904, 'Earl', 1942, 'M', 4044), +(52905, 'Dale', 1942, 'M', 3866), +(52906, 'Patrick', 1942, 'M', 3804), +(52907, 'Marvin', 1942, 'M', 3791), +(52908, 'Bill', 1942, 'M', 3790), +(52909, 'Clarence', 1942, 'M', 3737), +(52910, 'Frederick', 1942, 'M', 3735), +(52911, 'Leroy', 1942, 'M', 3718), +(52912, 'Russell', 1942, 'M', 3673), +(52913, 'Allen', 1942, 'M', 3571), +(52914, 'Don', 1942, 'M', 3563), +(52915, 'Tommy', 1942, 'M', 3528), +(52916, 'Jim', 1942, 'M', 3516), +(52917, 'Steven', 1942, 'M', 3505), +(52918, 'Alfred', 1942, 'M', 3403), +(52919, 'Phillip', 1942, 'M', 3377), +(52920, 'Ronnie', 1942, 'M', 3361), +(52921, 'Barry', 1942, 'M', 3207), +(52922, 'Andrew', 1942, 'M', 3144), +(52923, 'Alan', 1942, 'M', 3136), +(52924, 'Gene', 1942, 'M', 3124), +(52925, 'Herbert', 1942, 'M', 3111), +(52926, 'Ray', 1942, 'M', 3063), +(52927, 'Martin', 1942, 'M', 3046), +(52928, 'Eddie', 1942, 'M', 3020), +(52929, 'Lee', 1942, 'M', 2921), +(52930, 'Glenn', 1942, 'M', 2887), +(52931, 'Tom', 1942, 'M', 2876), +(52932, 'Bernard', 1942, 'M', 2723), +(52933, 'Theodore', 1942, 'M', 2662), +(52934, 'Gordon', 1942, 'M', 2606), +(52935, 'Leon', 1942, 'M', 2547), +(52936, 'Jimmie', 1942, 'M', 2539), +(52937, 'Clifford', 1942, 'M', 2534), +(52938, 'Lloyd', 1942, 'M', 2460), +(52939, 'Warren', 1942, 'M', 2423), +(52940, 'Curtis', 1942, 'M', 2418), +(52941, 'Victor', 1942, 'M', 2396), +(52942, 'Jesse', 1942, 'M', 2394), +(52943, 'Vincent', 1942, 'M', 2380), +(52944, 'Steve', 1942, 'M', 2374), +(52945, 'Franklin', 1942, 'M', 2364), +(52946, 'Jerome', 1942, 'M', 2339), +(52947, 'Edwin', 1942, 'M', 2295), +(52948, 'Mike', 1942, 'M', 2293), +(52949, 'Harvey', 1942, 'M', 2283), +(52950, 'Timothy', 1942, 'M', 2275), +(52951, 'Clyde', 1942, 'M', 2204), +(52952, 'Bob', 1942, 'M', 2203), +(52953, 'Danny', 1942, 'M', 2203), +(52954, 'Lewis', 1942, 'M', 2181), +(52955, 'Floyd', 1942, 'M', 2171), +(52956, 'Vernon', 1942, 'M', 2101), +(52957, 'Alvin', 1942, 'M', 2069), +(52958, 'Jeffrey', 1942, 'M', 2058), +(52959, 'Mark', 1942, 'M', 2042), +(52960, 'Charlie', 1942, 'M', 1871), +(52961, 'Jackie', 1942, 'M', 1847), +(52962, 'Leo', 1942, 'M', 1799), +(52963, 'Herman', 1942, 'M', 1789), +(52964, 'Keith', 1942, 'M', 1785), +(52965, 'Rodney', 1942, 'M', 1785), +(52966, 'Allan', 1942, 'M', 1764), +(52967, 'Jon', 1942, 'M', 1763), +(52968, 'Lester', 1942, 'M', 1750), +(52969, 'Leslie', 1942, 'M', 1734), +(52970, 'Gilbert', 1942, 'M', 1724), +(52971, 'Benjamin', 1942, 'M', 1689), +(52972, 'Arnold', 1942, 'M', 1684), +(52973, 'Duane', 1942, 'M', 1619), +(52974, 'Cecil', 1942, 'M', 1618), +(52975, 'Jay', 1942, 'M', 1600), +(52976, 'Joel', 1942, 'M', 1595), +(52977, 'Darrell', 1942, 'M', 1590), +(52978, 'Calvin', 1942, 'M', 1578), +(52979, 'Chester', 1942, 'M', 1557), +(52980, 'Johnnie', 1942, 'M', 1557), +(52981, 'Brian', 1942, 'M', 1521), +(52982, 'Freddie', 1942, 'M', 1510), +(52983, 'Milton', 1942, 'M', 1503), +(52984, 'Nicholas', 1942, 'M', 1503), +(52985, 'Roland', 1942, 'M', 1450), +(52986, 'Glen', 1942, 'M', 1420), +(52987, 'Tony', 1942, 'M', 1406), +(52988, 'Lynn', 1942, 'M', 1395), +(52989, 'Dan', 1942, 'M', 1344), +(52990, 'Lonnie', 1942, 'M', 1316), +(52991, 'Claude', 1942, 'M', 1315), +(52992, 'Jose', 1942, 'M', 1310), +(52993, 'Dean', 1942, 'M', 1286), +(52994, 'Sam', 1942, 'M', 1279), +(52995, 'Manuel', 1942, 'M', 1275), +(52996, 'Wesley', 1942, 'M', 1254), +(52997, 'Hugh', 1942, 'M', 1253), +(52998, 'Ted', 1942, 'M', 1252), +(52999, 'Wallace', 1942, 'M', 1230), +(53000, 'Elmer', 1942, 'M', 1228), +(53001, 'Willard', 1942, 'M', 1191), +(53002, 'Neil', 1942, 'M', 1101), +(53003, 'Everett', 1942, 'M', 1058), +(53004, 'Dave', 1942, 'M', 1053), +(53005, 'Marion', 1942, 'M', 1052), +(53006, 'Edgar', 1942, 'M', 1051), +(53007, 'Gregory', 1942, 'M', 1026), +(53008, 'Maurice', 1942, 'M', 1026), +(53009, 'Jessie', 1942, 'M', 1004), +(53010, 'Virgil', 1942, 'M', 1002), +(53011, 'Sidney', 1942, 'M', 998), +(53012, 'Max', 1942, 'M', 971), +(53013, 'Stuart', 1942, 'M', 965), +(53014, 'Oscar', 1942, 'M', 956), +(53015, 'Marshall', 1942, 'M', 952), +(53016, 'Morris', 1942, 'M', 909), +(53017, 'Craig', 1942, 'M', 891), +(53018, 'Lyle', 1942, 'M', 891), +(53019, 'Lowell', 1942, 'M', 885), +(53020, 'Bennie', 1942, 'M', 882), +(53021, 'Benny', 1942, 'M', 878), +(53022, 'Karl', 1942, 'M', 878), +(53023, 'Nelson', 1942, 'M', 870), +(53024, 'Eric', 1942, 'M', 867), +(53025, 'Alexander', 1942, 'M', 861), +(53026, 'Dick', 1942, 'M', 860), +(53027, 'Luther', 1942, 'M', 859), +(53028, 'Ben', 1942, 'M', 851), +(53029, 'Wendell', 1942, 'M', 847), +(53030, 'Nathaniel', 1942, 'M', 842), +(53031, 'Matthew', 1942, 'M', 841), +(53032, 'Mack', 1942, 'M', 839), +(53033, 'Earnest', 1942, 'M', 837), +(53034, 'Donnie', 1942, 'M', 836), +(53035, 'Sammy', 1942, 'M', 832), +(53036, 'Gerard', 1942, 'M', 830), +(53037, 'Christopher', 1942, 'M', 814), +(53038, 'Guy', 1942, 'M', 799), +(53039, 'Delbert', 1942, 'M', 796), +(53040, 'Clifton', 1942, 'M', 793), +(53041, 'Fredrick', 1942, 'M', 788), +(53042, 'Carroll', 1942, 'M', 787), +(53043, 'Hubert', 1942, 'M', 787), +(53044, 'Homer', 1942, 'M', 780), +(53045, 'Garry', 1942, 'M', 760), +(53046, 'Ira', 1942, 'M', 760), +(53047, 'Randall', 1942, 'M', 760), +(53048, 'Clinton', 1942, 'M', 738), +(53049, 'Otis', 1942, 'M', 738), +(53050, 'Horace', 1942, 'M', 728), +(53051, 'Kent', 1942, 'M', 718), +(53052, 'Dwight', 1942, 'M', 717), +(53053, 'Juan', 1942, 'M', 716), +(53054, 'Perry', 1942, 'M', 707), +(53055, 'Clayton', 1942, 'M', 700), +(53056, 'Wilbur', 1942, 'M', 687), +(53057, 'Alex', 1942, 'M', 680), +(53058, 'Archie', 1942, 'M', 679), +(53059, 'Leland', 1942, 'M', 675), +(53060, 'Loren', 1942, 'M', 672), +(53061, 'Laurence', 1942, 'M', 666), +(53062, 'Willis', 1942, 'M', 665), +(53063, 'Carlos', 1942, 'M', 659), +(53064, 'Rudolph', 1942, 'M', 659), +(53065, 'Jerald', 1942, 'M', 645), +(53066, 'Byron', 1942, 'M', 642), +(53067, 'Wilbert', 1942, 'M', 638), +(53068, 'Reginald', 1942, 'M', 633), +(53069, 'Alton', 1942, 'M', 625), +(53070, 'Oliver', 1942, 'M', 611), +(53071, 'Roosevelt', 1942, 'M', 608), +(53072, 'Tommie', 1942, 'M', 603), +(53073, 'Edmund', 1942, 'M', 602), +(53074, 'Myron', 1942, 'M', 600), +(53075, 'Salvatore', 1942, 'M', 596), +(53076, 'Malcolm', 1942, 'M', 576), +(53077, 'Troy', 1942, 'M', 572), +(53078, 'Neal', 1942, 'M', 569), +(53079, 'Aaron', 1942, 'M', 568), +(53080, 'Doyle', 1942, 'M', 567), +(53081, 'Pete', 1942, 'M', 560), +(53082, 'Julius', 1942, 'M', 558), +(53083, 'Terrence', 1942, 'M', 555), +(53084, 'Ross', 1942, 'M', 554), +(53085, 'Jonathan', 1942, 'M', 553), +(53086, 'Sherman', 1942, 'M', 552), +(53087, 'Clark', 1942, 'M', 539), +(53088, 'Randolph', 1942, 'M', 535), +(53089, 'Jesus', 1942, 'M', 534), +(53090, 'Pat', 1942, 'M', 533), +(53091, 'Kevin', 1942, 'M', 530), +(53092, 'Julian', 1942, 'M', 529), +(53093, 'Darrel', 1942, 'M', 526), +(53094, 'Jacob', 1942, 'M', 524), +(53095, 'Nathan', 1942, 'M', 522), +(53096, 'Winston', 1942, 'M', 522), +(53097, 'Micheal', 1942, 'M', 521), +(53098, 'Rex', 1942, 'M', 521), +(53099, 'Scott', 1942, 'M', 520), +(53100, 'Antonio', 1942, 'M', 519), +(53101, 'Nick', 1942, 'M', 519), +(53102, 'Carlton', 1942, 'M', 516), +(53103, 'Teddy', 1942, 'M', 516), +(53104, 'Jan', 1942, 'M', 512), +(53105, 'Ruben', 1942, 'M', 512), +(53106, 'Tim', 1942, 'M', 512), +(53107, 'Dewey', 1942, 'M', 507), +(53108, 'Buddy', 1942, 'M', 501), +(53109, 'Sylvester', 1942, 'M', 497), +(53110, 'Ervin', 1942, 'M', 491), +(53111, 'Ellis', 1942, 'M', 490), +(53112, 'Frankie', 1942, 'M', 489), +(53113, 'Mitchell', 1942, 'M', 488), +(53114, 'Ivan', 1942, 'M', 486), +(53115, 'Dallas', 1942, 'M', 480), +(53116, 'Grady', 1942, 'M', 479), +(53117, 'Woodrow', 1942, 'M', 479), +(53118, 'Conrad', 1942, 'M', 476), +(53119, 'Rudy', 1942, 'M', 476), +(53120, 'Elbert', 1942, 'M', 471), +(53121, 'Darryl', 1942, 'M', 468), +(53122, 'Wilson', 1942, 'M', 466), +(53123, 'Rufus', 1942, 'M', 456), +(53124, 'Ramon', 1942, 'M', 454), +(53125, 'Isaac', 1942, 'M', 449), +(53126, 'Eldon', 1942, 'M', 448), +(53127, 'Preston', 1942, 'M', 446), +(53128, 'Orville', 1942, 'M', 445), +(53129, 'Irvin', 1942, 'M', 444), +(53130, 'Merle', 1942, 'M', 441), +(53131, 'Billie', 1942, 'M', 436), +(53132, 'Angelo', 1942, 'M', 435), +(53133, 'Mickey', 1942, 'M', 434), +(53134, 'Sheldon', 1942, 'M', 433), +(53135, 'Ron', 1942, 'M', 424), +(53136, 'Jeff', 1942, 'M', 423), +(53137, 'Sammie', 1942, 'M', 419), +(53138, 'Bert', 1942, 'M', 418), +(53139, 'Junior', 1942, 'M', 416), +(53140, 'Lanny', 1942, 'M', 414), +(53141, 'Owen', 1942, 'M', 414), +(53142, 'Forrest', 1942, 'M', 411), +(53143, 'Rodger', 1942, 'M', 411), +(53144, 'Ken', 1942, 'M', 408), +(53145, 'Phil', 1942, 'M', 404), +(53146, 'Grant', 1942, 'M', 403), +(53147, 'Kenny', 1942, 'M', 402), +(53148, 'Aubrey', 1942, 'M', 400), +(53149, 'Felix', 1942, 'M', 400), +(53150, 'Mac', 1942, 'M', 397), +(53151, 'Terrance', 1942, 'M', 394), +(53152, 'Boyd', 1942, 'M', 392), +(53153, 'Denis', 1942, 'M', 392), +(53154, 'Stewart', 1942, 'M', 386), +(53155, 'Bobbie', 1942, 'M', 382), +(53156, 'Chris', 1942, 'M', 382), +(53157, 'Percy', 1942, 'M', 381), +(53158, 'Randy', 1942, 'M', 379), +(53159, 'Garland', 1942, 'M', 377), +(53160, 'Wade', 1942, 'M', 372), +(53161, 'Noel', 1942, 'M', 367), +(53162, 'Travis', 1942, 'M', 360), +(53163, 'Harlan', 1942, 'M', 356), +(53164, 'Roberto', 1942, 'M', 352), +(53165, 'Colin', 1942, 'M', 348), +(53166, 'Emmett', 1942, 'M', 347), +(53167, 'Loyd', 1942, 'M', 345), +(53168, 'Raul', 1942, 'M', 344), +(53169, 'Bradley', 1942, 'M', 342), +(53170, 'Louie', 1942, 'M', 342), +(53171, 'Wilfred', 1942, 'M', 341), +(53172, 'Lance', 1942, 'M', 338), +(53173, 'Freddy', 1942, 'M', 337), +(53174, 'Daryl', 1942, 'M', 335), +(53175, 'Tyrone', 1942, 'M', 335), +(53176, 'Grover', 1942, 'M', 332), +(53177, 'Gerry', 1942, 'M', 330), +(53178, 'Darwin', 1942, 'M', 326), +(53179, 'Pedro', 1942, 'M', 326), +(53180, 'Andy', 1942, 'M', 324), +(53181, 'Royce', 1942, 'M', 323), +(53182, 'Dominick', 1942, 'M', 320), +(53183, 'Harley', 1942, 'M', 319), +(53184, 'Burton', 1942, 'M', 317), +(53185, 'Brent', 1942, 'M', 315), +(53186, 'Spencer', 1942, 'M', 314), +(53187, 'Norbert', 1942, 'M', 308), +(53188, 'Denny', 1942, 'M', 303), +(53189, 'Dominic', 1942, 'M', 302), +(53190, 'Marlin', 1942, 'M', 301), +(53191, 'Mario', 1942, 'M', 300), +(53192, 'Francisco', 1942, 'M', 299), +(53193, 'Gale', 1942, 'M', 298), +(53194, 'Austin', 1942, 'M', 297), +(53195, 'Bryan', 1942, 'M', 297), +(53196, 'Irving', 1942, 'M', 297), +(53197, 'Edmond', 1942, 'M', 296), +(53198, 'Kermit', 1942, 'M', 294), +(53199, 'Mcarthur', 1942, 'M', 289), +(53200, 'Elwood', 1942, 'M', 285), +(53201, 'Melvyn', 1942, 'M', 282), +(53202, 'Ed', 1942, 'M', 281), +(53203, 'Jeffery', 1942, 'M', 281), +(53204, 'August', 1942, 'M', 279), +(53205, 'Mary', 1942, 'M', 276), +(53206, 'Cornelius', 1942, 'M', 275), +(53207, 'Lionel', 1942, 'M', 275), +(53208, 'Cleveland', 1942, 'M', 274), +(53209, 'Moses', 1942, 'M', 274), +(53210, 'Ned', 1942, 'M', 273), +(53211, 'Sanford', 1942, 'M', 273), +(53212, 'Thurman', 1942, 'M', 271), +(53213, 'Marcus', 1942, 'M', 268), +(53214, 'Amos', 1942, 'M', 267), +(53215, 'Carol', 1942, 'M', 267), +(53216, 'Alfonso', 1942, 'M', 265), +(53217, 'Carmen', 1942, 'M', 262), +(53218, 'Emil', 1942, 'M', 259), +(53219, 'Kurt', 1942, 'M', 258), +(53220, 'Luis', 1942, 'M', 258), +(53221, 'Sterling', 1942, 'M', 258), +(53222, 'Robin', 1942, 'M', 257), +(53223, 'Frederic', 1942, 'M', 256), +(53224, 'Murray', 1942, 'M', 256), +(53225, 'Armando', 1942, 'M', 255), +(53226, 'Elliott', 1942, 'M', 252), +(53227, 'Kelly', 1942, 'M', 249), +(53228, 'Ronny', 1942, 'M', 247), +(53229, 'Alonzo', 1942, 'M', 245), +(53230, 'Elijah', 1942, 'M', 245), +(53231, 'Lorenzo', 1942, 'M', 245), +(53232, 'Adam', 1942, 'M', 241), +(53233, 'Jasper', 1942, 'M', 241), +(53234, 'Adrian', 1942, 'M', 237), +(53235, 'Ollie', 1942, 'M', 237); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(53236, 'Geoffrey', 1942, 'M', 235), +(53237, 'Abraham', 1942, 'M', 234), +(53238, 'Maynard', 1942, 'M', 234), +(53239, 'Salvador', 1942, 'M', 234), +(53240, 'Irwin', 1942, 'M', 232), +(53241, 'Merrill', 1942, 'M', 230), +(53242, 'Weldon', 1942, 'M', 230), +(53243, 'Doug', 1942, 'M', 229), +(53244, 'Otto', 1942, 'M', 229), +(53245, 'Gail', 1942, 'M', 227), +(53246, 'Jerold', 1942, 'M', 227), +(53247, 'Millard', 1942, 'M', 227), +(53248, 'Roscoe', 1942, 'M', 227), +(53249, 'Norris', 1942, 'M', 226), +(53250, 'Lamar', 1942, 'M', 225), +(53251, 'Errol', 1942, 'M', 224), +(53252, 'Al', 1942, 'M', 223), +(53253, 'Johnie', 1942, 'M', 223), +(53254, 'Reuben', 1942, 'M', 222), +(53255, 'Will', 1942, 'M', 221), +(53256, 'Laverne', 1942, 'M', 220), +(53257, 'Elvin', 1942, 'M', 219), +(53258, 'Marc', 1942, 'M', 219), +(53259, 'Rene', 1942, 'M', 219), +(53260, 'Delmar', 1942, 'M', 218), +(53261, 'Merlin', 1942, 'M', 216), +(53262, 'Elton', 1942, 'M', 215), +(53263, 'Van', 1942, 'M', 214), +(53264, 'Harrison', 1942, 'M', 211), +(53265, 'Linwood', 1942, 'M', 210), +(53266, 'Simon', 1942, 'M', 209), +(53267, 'Cary', 1942, 'M', 207), +(53268, 'Wiley', 1942, 'M', 206), +(53269, 'Odell', 1942, 'M', 205), +(53270, 'Ricardo', 1942, 'M', 205), +(53271, 'Shirley', 1942, 'M', 205), +(53272, 'Emory', 1942, 'M', 204), +(53273, 'Galen', 1942, 'M', 204), +(53274, 'Hal', 1942, 'M', 204), +(53275, 'Terence', 1942, 'M', 203), +(53276, 'Roderick', 1942, 'M', 202), +(53277, 'Arturo', 1942, 'M', 200), +(53278, 'Fredric', 1942, 'M', 200), +(53279, 'Monte', 1942, 'M', 199), +(53280, 'Alfredo', 1942, 'M', 198), +(53281, 'Charley', 1942, 'M', 198), +(53282, 'Dwayne', 1942, 'M', 198), +(53283, 'Jake', 1942, 'M', 198), +(53284, 'Erwin', 1942, 'M', 196), +(53285, 'Jackson', 1942, 'M', 196), +(53286, 'Gabriel', 1942, 'M', 194), +(53287, 'Hector', 1942, 'M', 193), +(53288, 'Clement', 1942, 'M', 192), +(53289, 'Ernie', 1942, 'M', 192), +(53290, 'Nolan', 1942, 'M', 192), +(53291, 'Guadalupe', 1942, 'M', 190), +(53292, 'Jess', 1942, 'M', 190), +(53293, 'Monroe', 1942, 'M', 189), +(53294, 'Coy', 1942, 'M', 188), +(53295, 'Emanuel', 1942, 'M', 185), +(53296, 'Jerrold', 1942, 'M', 184), +(53297, 'Fernando', 1942, 'M', 183), +(53298, 'Miguel', 1942, 'M', 183), +(53299, 'Buford', 1942, 'M', 182), +(53300, 'Levi', 1942, 'M', 182), +(53301, 'Mervin', 1942, 'M', 182), +(53302, 'Noah', 1942, 'M', 182), +(53303, 'Dudley', 1942, 'M', 181), +(53304, 'Hershel', 1942, 'M', 181), +(53305, 'Clair', 1942, 'M', 180), +(53306, 'Armand', 1942, 'M', 179), +(53307, 'Barney', 1942, 'M', 179), +(53308, 'Kennith', 1942, 'M', 179), +(53309, 'Hollis', 1942, 'M', 178), +(53310, 'Harris', 1942, 'M', 175), +(53311, 'Miles', 1942, 'M', 174), +(53312, 'Chuck', 1942, 'M', 172), +(53313, 'Kirk', 1942, 'M', 170), +(53314, 'Truman', 1942, 'M', 170), +(53315, 'Basil', 1942, 'M', 169), +(53316, 'Gus', 1942, 'M', 169), +(53317, 'Rocco', 1942, 'M', 167), +(53318, 'Vaughn', 1942, 'M', 166), +(53319, 'Rolland', 1942, 'M', 165), +(53320, 'Barbara', 1942, 'M', 164), +(53321, 'Connie', 1942, 'M', 164), +(53322, 'Ernesto', 1942, 'M', 163), +(53323, 'Booker', 1942, 'M', 161), +(53324, 'Dana', 1942, 'M', 161), +(53325, 'Emery', 1942, 'M', 161), +(53326, 'Russel', 1942, 'M', 161), +(53327, 'Bradford', 1942, 'M', 159), +(53328, 'Dewayne', 1942, 'M', 159), +(53329, 'Patricia', 1942, 'M', 159), +(53330, 'Shelby', 1942, 'M', 159), +(53331, 'Vern', 1942, 'M', 159), +(53332, 'Dickie', 1942, 'M', 158), +(53333, 'Jean', 1942, 'M', 158), +(53334, 'Ward', 1942, 'M', 158), +(53335, 'Riley', 1942, 'M', 157), +(53336, 'Gaylord', 1942, 'M', 156), +(53337, 'Cleo', 1942, 'M', 155), +(53338, 'Evan', 1942, 'M', 155), +(53339, 'Denver', 1942, 'M', 154), +(53340, 'Lavern', 1942, 'M', 151), +(53341, 'Wilford', 1942, 'M', 151), +(53342, 'Vance', 1942, 'M', 150), +(53343, 'Blaine', 1942, 'M', 149), +(53344, 'Solomon', 1942, 'M', 149), +(53345, 'Alberto', 1942, 'M', 148), +(53346, 'Rafael', 1942, 'M', 148), +(53347, 'Winfred', 1942, 'M', 147), +(53348, 'Silas', 1942, 'M', 146), +(53349, 'Wilburn', 1942, 'M', 146), +(53350, 'Wilmer', 1942, 'M', 146), +(53351, 'Enrique', 1942, 'M', 144), +(53352, 'Rodolfo', 1942, 'M', 144), +(53353, 'Ulysses', 1942, 'M', 144), +(53354, 'Alphonso', 1942, 'M', 142), +(53355, 'Macarthur', 1942, 'M', 142), +(53356, 'Stan', 1942, 'M', 142), +(53357, 'Thaddeus', 1942, 'M', 142), +(53358, 'Tomas', 1942, 'M', 142), +(53359, 'Tracy', 1942, 'M', 142), +(53360, 'Earle', 1942, 'M', 141), +(53361, 'Dexter', 1942, 'M', 140), +(53362, 'Stephan', 1942, 'M', 139), +(53363, 'Everette', 1942, 'M', 138), +(53364, 'Andre', 1942, 'M', 137), +(53365, 'Barton', 1942, 'M', 136), +(53366, 'Kirby', 1942, 'M', 136), +(53367, 'Bernie', 1942, 'M', 135), +(53368, 'Freeman', 1942, 'M', 135), +(53369, 'Kerry', 1942, 'M', 135), +(53370, 'Delmer', 1942, 'M', 134), +(53371, 'Todd', 1942, 'M', 134), +(53372, 'Wilton', 1942, 'M', 133), +(53373, 'Carey', 1942, 'M', 132), +(53374, 'Alva', 1942, 'M', 131), +(53375, 'Cyril', 1942, 'M', 131), +(53376, 'Herschel', 1942, 'M', 131), +(53377, 'Reed', 1942, 'M', 131), +(53378, 'Vito', 1942, 'M', 131), +(53379, 'Eddy', 1942, 'M', 130), +(53380, 'Eli', 1942, 'M', 130), +(53381, 'Elliot', 1942, 'M', 130), +(53382, 'Gilberto', 1942, 'M', 130), +(53383, 'Jeremiah', 1942, 'M', 130), +(53384, 'Dannie', 1942, 'M', 128), +(53385, 'Gearld', 1942, 'M', 128), +(53386, 'Carmine', 1942, 'M', 127), +(53387, 'Carrol', 1942, 'M', 127), +(53388, 'Forest', 1942, 'M', 127), +(53389, 'Dalton', 1942, 'M', 126), +(53390, 'Monty', 1942, 'M', 126), +(53391, 'Raleigh', 1942, 'M', 126), +(53392, 'Elmo', 1942, 'M', 125), +(53393, 'Rogers', 1942, 'M', 124), +(53394, 'Royal', 1942, 'M', 124), +(53395, 'Adolph', 1942, 'M', 123), +(53396, 'Clay', 1942, 'M', 123), +(53397, 'Domingo', 1942, 'M', 123), +(53398, 'Major', 1942, 'M', 123), +(53399, 'Davis', 1942, 'M', 122), +(53400, 'Odis', 1942, 'M', 122), +(53401, 'Linda', 1942, 'M', 121), +(53402, 'Theron', 1942, 'M', 121), +(53403, 'Toby', 1942, 'M', 121), +(53404, 'Elroy', 1942, 'M', 120), +(53405, 'Orval', 1942, 'M', 120), +(53406, 'Pablo', 1942, 'M', 120), +(53407, 'Burl', 1942, 'M', 119), +(53408, 'Lyman', 1942, 'M', 119), +(53409, 'Art', 1942, 'M', 118), +(53410, 'Jason', 1942, 'M', 118), +(53411, 'Lenard', 1942, 'M', 118), +(53412, 'Morton', 1942, 'M', 118), +(53413, 'Pasquale', 1942, 'M', 118), +(53414, 'Houston', 1942, 'M', 117), +(53415, 'Sonny', 1942, 'M', 117), +(53416, 'Douglass', 1942, 'M', 116), +(53417, 'Duncan', 1942, 'M', 116), +(53418, 'Emerson', 1942, 'M', 116), +(53419, 'Foster', 1942, 'M', 116), +(53420, 'Orlando', 1942, 'M', 116), +(53421, 'Roman', 1942, 'M', 116), +(53422, 'Carson', 1942, 'M', 115), +(53423, 'Felipe', 1942, 'M', 115), +(53424, 'Hiram', 1942, 'M', 114), +(53425, 'Morgan', 1942, 'M', 114), +(53426, 'Anderson', 1942, 'M', 113), +(53427, 'Joshua', 1942, 'M', 113), +(53428, 'Kendall', 1942, 'M', 113), +(53429, 'Sandy', 1942, 'M', 113), +(53430, 'Alden', 1942, 'M', 112), +(53431, 'Carter', 1942, 'M', 112), +(53432, 'Kyle', 1942, 'M', 112), +(53433, 'Lupe', 1942, 'M', 112), +(53434, 'Betty', 1942, 'M', 111), +(53435, 'Elias', 1942, 'M', 111), +(53436, 'Fletcher', 1942, 'M', 111), +(53437, 'Hoyt', 1942, 'M', 111), +(53438, 'Milford', 1942, 'M', 111), +(53439, 'Arden', 1942, 'M', 110), +(53440, 'Augustus', 1942, 'M', 110), +(53441, 'Jere', 1942, 'M', 110), +(53442, 'Joesph', 1942, 'M', 110), +(53443, 'Luke', 1942, 'M', 110), +(53444, 'Ricky', 1942, 'M', 110), +(53445, 'Bud', 1942, 'M', 109), +(53446, 'Quentin', 1942, 'M', 109), +(53447, 'Santiago', 1942, 'M', 109), +(53448, 'Alphonse', 1942, 'M', 108), +(53449, 'Christian', 1942, 'M', 108), +(53450, 'Newton', 1942, 'M', 108), +(53451, 'Justin', 1942, 'M', 107), +(53452, 'Saul', 1942, 'M', 107), +(53453, 'Abel', 1942, 'M', 106), +(53454, 'Anton', 1942, 'M', 106), +(53455, 'Dwain', 1942, 'M', 106), +(53456, 'Andres', 1942, 'M', 105), +(53457, 'Angel', 1942, 'M', 105), +(53458, 'Jules', 1942, 'M', 105), +(53459, 'King', 1942, 'M', 105), +(53460, 'Mose', 1942, 'M', 105), +(53461, 'Felton', 1942, 'M', 104), +(53462, 'Garrett', 1942, 'M', 103), +(53463, 'Lamont', 1942, 'M', 103), +(53464, 'Mason', 1942, 'M', 103), +(53465, 'Santos', 1942, 'M', 103), +(53466, 'Shelton', 1942, 'M', 103), +(53467, 'Val', 1942, 'M', 103), +(53468, 'Bryant', 1942, 'M', 102), +(53469, 'Gayle', 1942, 'M', 102), +(53470, 'Terrell', 1942, 'M', 102), +(53471, 'Bennett', 1942, 'M', 101), +(53472, 'Claud', 1942, 'M', 101), +(53473, 'Garth', 1942, 'M', 101), +(53474, 'Greg', 1942, 'M', 101), +(53475, 'Jefferson', 1942, 'M', 101), +(53476, 'Maxie', 1942, 'M', 101), +(53477, 'Reynaldo', 1942, 'M', 101), +(53478, 'Sherwood', 1942, 'M', 101), +(53479, 'Graham', 1942, 'M', 100), +(53480, 'Hobert', 1942, 'M', 100), +(53481, 'Isaiah', 1942, 'M', 100), +(53482, 'Julio', 1942, 'M', 100), +(53483, 'Sydney', 1942, 'M', 100), +(53484, 'Mary', 1943, 'F', 66171), +(53485, 'Barbara', 1943, 'F', 43428), +(53486, 'Patricia', 1943, 'F', 39619), +(53487, 'Linda', 1943, 'F', 38438), +(53488, 'Carol', 1943, 'F', 31679), +(53489, 'Sandra', 1943, 'F', 25988), +(53490, 'Judith', 1943, 'F', 25210), +(53491, 'Sharon', 1943, 'F', 24708), +(53492, 'Nancy', 1943, 'F', 23989), +(53493, 'Betty', 1943, 'F', 21597), +(53494, 'Carolyn', 1943, 'F', 20359), +(53495, 'Shirley', 1943, 'F', 17819), +(53496, 'Judy', 1943, 'F', 17379), +(53497, 'Margaret', 1943, 'F', 17146), +(53498, 'Karen', 1943, 'F', 16815), +(53499, 'Joyce', 1943, 'F', 16486), +(53500, 'Donna', 1943, 'F', 14914), +(53501, 'Susan', 1943, 'F', 14886), +(53502, 'Dorothy', 1943, 'F', 14783), +(53503, 'Janet', 1943, 'F', 13316), +(53504, 'Joan', 1943, 'F', 13228), +(53505, 'Kathleen', 1943, 'F', 12151), +(53506, 'Elizabeth', 1943, 'F', 11650), +(53507, 'Diane', 1943, 'F', 11326), +(53508, 'Virginia', 1943, 'F', 10842), +(53509, 'Janice', 1943, 'F', 10653), +(53510, 'Marilyn', 1943, 'F', 10144), +(53511, 'Helen', 1943, 'F', 9798), +(53512, 'Martha', 1943, 'F', 9708), +(53513, 'Gloria', 1943, 'F', 9682), +(53514, 'Frances', 1943, 'F', 9441), +(53515, 'Beverly', 1943, 'F', 9431), +(53516, 'Ruth', 1943, 'F', 9364), +(53517, 'Bonnie', 1943, 'F', 8867), +(53518, 'Brenda', 1943, 'F', 8435), +(53519, 'Jean', 1943, 'F', 8098), +(53520, 'Ann', 1943, 'F', 7827), +(53521, 'Alice', 1943, 'F', 7647), +(53522, 'Phyllis', 1943, 'F', 7605), +(53523, 'Doris', 1943, 'F', 7128), +(53524, 'Peggy', 1943, 'F', 6509), +(53525, 'Carole', 1943, 'F', 6506), +(53526, 'Lois', 1943, 'F', 6133), +(53527, 'Jane', 1943, 'F', 6028), +(53528, 'Marie', 1943, 'F', 5980), +(53529, 'Elaine', 1943, 'F', 5966), +(53530, 'Charlotte', 1943, 'F', 5481), +(53531, 'Catherine', 1943, 'F', 5425), +(53532, 'Joanne', 1943, 'F', 5269), +(53533, 'Rose', 1943, 'F', 5209), +(53534, 'Geraldine', 1943, 'F', 5190), +(53535, 'Rita', 1943, 'F', 5011), +(53536, 'Evelyn', 1943, 'F', 4912), +(53537, 'Pamela', 1943, 'F', 4838), +(53538, 'Gail', 1943, 'F', 4810), +(53539, 'Wanda', 1943, 'F', 4705), +(53540, 'Sally', 1943, 'F', 4656), +(53541, 'Norma', 1943, 'F', 4542), +(53542, 'Connie', 1943, 'F', 4509), +(53543, 'Joann', 1943, 'F', 4464), +(53544, 'Patsy', 1943, 'F', 4351), +(53545, 'Diana', 1943, 'F', 4337), +(53546, 'Jo', 1943, 'F', 4298), +(53547, 'Anna', 1943, 'F', 4232), +(53548, 'Jacqueline', 1943, 'F', 4188), +(53549, 'Roberta', 1943, 'F', 4168), +(53550, 'Ellen', 1943, 'F', 4153), +(53551, 'Eileen', 1943, 'F', 4092), +(53552, 'Annie', 1943, 'F', 4066), +(53553, 'Louise', 1943, 'F', 4041), +(53554, 'Sarah', 1943, 'F', 3988), +(53555, 'Sue', 1943, 'F', 3849), +(53556, 'Darlene', 1943, 'F', 3773), +(53557, 'Dolores', 1943, 'F', 3696), +(53558, 'Kathryn', 1943, 'F', 3646), +(53559, 'Sylvia', 1943, 'F', 3624), +(53560, 'Mildred', 1943, 'F', 3623), +(53561, 'Katherine', 1943, 'F', 3614), +(53562, 'Marjorie', 1943, 'F', 3607), +(53563, 'Anne', 1943, 'F', 3534), +(53564, 'Kay', 1943, 'F', 3492), +(53565, 'Ruby', 1943, 'F', 3467), +(53566, 'Glenda', 1943, 'F', 3402), +(53567, 'Christine', 1943, 'F', 3315), +(53568, 'Irene', 1943, 'F', 3295), +(53569, 'Suzanne', 1943, 'F', 3280), +(53570, 'Rebecca', 1943, 'F', 3268), +(53571, 'Dianne', 1943, 'F', 3193), +(53572, 'Loretta', 1943, 'F', 3171), +(53573, 'Arlene', 1943, 'F', 3145), +(53574, 'Juanita', 1943, 'F', 3082), +(53575, 'Sheila', 1943, 'F', 3063), +(53576, 'Paula', 1943, 'F', 3043), +(53577, 'Lorraine', 1943, 'F', 3016), +(53578, 'Julia', 1943, 'F', 2969), +(53579, 'Marcia', 1943, 'F', 2968), +(53580, 'Rosemary', 1943, 'F', 2968), +(53581, 'Anita', 1943, 'F', 2950), +(53582, 'Delores', 1943, 'F', 2930), +(53583, 'Theresa', 1943, 'F', 2928), +(53584, 'Cynthia', 1943, 'F', 2893), +(53585, 'Cheryl', 1943, 'F', 2878), +(53586, 'Maria', 1943, 'F', 2864), +(53587, 'Marlene', 1943, 'F', 2858), +(53588, 'Maureen', 1943, 'F', 2758), +(53589, 'Edna', 1943, 'F', 2753), +(53590, 'Eleanor', 1943, 'F', 2729), +(53591, 'Josephine', 1943, 'F', 2664), +(53592, 'Jeanette', 1943, 'F', 2554), +(53593, 'Constance', 1943, 'F', 2552), +(53594, 'June', 1943, 'F', 2493), +(53595, 'Pauline', 1943, 'F', 2459), +(53596, 'Jeanne', 1943, 'F', 2424), +(53597, 'Emma', 1943, 'F', 2421), +(53598, 'Lynda', 1943, 'F', 2412), +(53599, 'Lillian', 1943, 'F', 2394), +(53600, 'Laura', 1943, 'F', 2391), +(53601, 'Edith', 1943, 'F', 2382), +(53602, 'Georgia', 1943, 'F', 2378), +(53603, 'Wilma', 1943, 'F', 2377), +(53604, 'Charlene', 1943, 'F', 2354), +(53605, 'Vivian', 1943, 'F', 2319), +(53606, 'Sherry', 1943, 'F', 2313), +(53607, 'Florence', 1943, 'F', 2273), +(53608, 'Lucille', 1943, 'F', 2250), +(53609, 'Ethel', 1943, 'F', 2216), +(53610, 'Thelma', 1943, 'F', 2208), +(53611, 'Margie', 1943, 'F', 2149), +(53612, 'Marion', 1943, 'F', 2124), +(53613, 'Grace', 1943, 'F', 2121), +(53614, 'Gladys', 1943, 'F', 2112), +(53615, 'Marsha', 1943, 'F', 2099), +(53616, 'Clara', 1943, 'F', 2083), +(53617, 'Lynn', 1943, 'F', 2066), +(53618, 'Maryann', 1943, 'F', 2051), +(53619, 'Kathy', 1943, 'F', 2033), +(53620, 'Sara', 1943, 'F', 2020), +(53621, 'Willie', 1943, 'F', 1995), +(53622, 'Billie', 1943, 'F', 1994), +(53623, 'Audrey', 1943, 'F', 1942), +(53624, 'Yvonne', 1943, 'F', 1941), +(53625, 'Annette', 1943, 'F', 1915), +(53626, 'Bernice', 1943, 'F', 1889), +(53627, 'Hazel', 1943, 'F', 1852), +(53628, 'Pat', 1943, 'F', 1840), +(53629, 'Priscilla', 1943, 'F', 1830), +(53630, 'Bobbie', 1943, 'F', 1802), +(53631, 'Eva', 1943, 'F', 1802), +(53632, 'Marian', 1943, 'F', 1794), +(53633, 'Bertha', 1943, 'F', 1790), +(53634, 'Beatrice', 1943, 'F', 1757), +(53635, 'Maxine', 1943, 'F', 1756), +(53636, 'Esther', 1943, 'F', 1755), +(53637, 'Rosa', 1943, 'F', 1680), +(53638, 'Ella', 1943, 'F', 1664), +(53639, 'Julie', 1943, 'F', 1623), +(53640, 'Joy', 1943, 'F', 1609), +(53641, 'Lillie', 1943, 'F', 1596), +(53642, 'Claudia', 1943, 'F', 1585), +(53643, 'Deanna', 1943, 'F', 1573), +(53644, 'Gwendolyn', 1943, 'F', 1534), +(53645, 'Ida', 1943, 'F', 1476), +(53646, 'Victoria', 1943, 'F', 1468), +(53647, 'Faye', 1943, 'F', 1467), +(53648, 'Harriet', 1943, 'F', 1443), +(53649, 'Paulette', 1943, 'F', 1440), +(53650, 'Rosalie', 1943, 'F', 1424), +(53651, 'Gayle', 1943, 'F', 1423), +(53652, 'Andrea', 1943, 'F', 1419), +(53653, 'Rachel', 1943, 'F', 1371), +(53654, 'Caroline', 1943, 'F', 1352), +(53655, 'Jackie', 1943, 'F', 1352), +(53656, 'Minnie', 1943, 'F', 1347), +(53657, 'Alma', 1943, 'F', 1337), +(53658, 'Emily', 1943, 'F', 1335), +(53659, 'Lucy', 1943, 'F', 1316), +(53660, 'Jessie', 1943, 'F', 1313), +(53661, 'Lynne', 1943, 'F', 1312), +(53662, 'Vicki', 1943, 'F', 1310), +(53663, 'Vera', 1943, 'F', 1266), +(53664, 'Elsie', 1943, 'F', 1244), +(53665, 'Veronica', 1943, 'F', 1240), +(53666, 'Mattie', 1943, 'F', 1220), +(53667, 'Penny', 1943, 'F', 1203), +(53668, 'Marianne', 1943, 'F', 1201), +(53669, 'Teresa', 1943, 'F', 1193), +(53670, 'Patty', 1943, 'F', 1186), +(53671, 'Stella', 1943, 'F', 1182), +(53672, 'Rosemarie', 1943, 'F', 1172), +(53673, 'Bessie', 1943, 'F', 1148), +(53674, 'Leslie', 1943, 'F', 1137), +(53675, 'Carrie', 1943, 'F', 1135), +(53676, 'Rosie', 1943, 'F', 1127), +(53677, 'Madeline', 1943, 'F', 1107), +(53678, 'Regina', 1943, 'F', 1084), +(53679, 'Johnnie', 1943, 'F', 1082), +(53680, 'Nellie', 1943, 'F', 1079), +(53681, 'Janie', 1943, 'F', 1064), +(53682, 'Leona', 1943, 'F', 1061), +(53683, 'Agnes', 1943, 'F', 1054), +(53684, 'Dixie', 1943, 'F', 1043), +(53685, 'Velma', 1943, 'F', 1043), +(53686, 'Jeannette', 1943, 'F', 1037), +(53687, 'Carmen', 1943, 'F', 1035), +(53688, 'Dora', 1943, 'F', 1022), +(53689, 'Bonita', 1943, 'F', 1013), +(53690, 'Claire', 1943, 'F', 1002), +(53691, 'Lana', 1943, 'F', 999), +(53692, 'Geneva', 1943, 'F', 993), +(53693, 'Michele', 1943, 'F', 958), +(53694, 'Alberta', 1943, 'F', 956), +(53695, 'Valerie', 1943, 'F', 955), +(53696, 'Jacquelyn', 1943, 'F', 942), +(53697, 'Nina', 1943, 'F', 939), +(53698, 'Angela', 1943, 'F', 933), +(53699, 'Deloris', 1943, 'F', 929), +(53700, 'Terry', 1943, 'F', 923), +(53701, 'Susie', 1943, 'F', 907), +(53702, 'Naomi', 1943, 'F', 902), +(53703, 'Viola', 1943, 'F', 893), +(53704, 'Myra', 1943, 'F', 886), +(53705, 'Verna', 1943, 'F', 880), +(53706, 'Pearl', 1943, 'F', 877), +(53707, 'Mae', 1943, 'F', 876), +(53708, 'Cora', 1943, 'F', 874), +(53709, 'Sharron', 1943, 'F', 870), +(53710, 'Gertrude', 1943, 'F', 867), +(53711, 'Lydia', 1943, 'F', 865), +(53712, 'Ernestine', 1943, 'F', 860), +(53713, 'Nora', 1943, 'F', 856), +(53714, 'Marguerite', 1943, 'F', 846), +(53715, 'Cecilia', 1943, 'F', 842), +(53716, 'Myrtle', 1943, 'F', 842), +(53717, 'Myrna', 1943, 'F', 839), +(53718, 'Lola', 1943, 'F', 825), +(53719, 'Hattie', 1943, 'F', 819), +(53720, 'Jill', 1943, 'F', 811), +(53721, 'Stephanie', 1943, 'F', 800), +(53722, 'Antoinette', 1943, 'F', 799), +(53723, 'Ramona', 1943, 'F', 795), +(53724, 'Deborah', 1943, 'F', 788), +(53725, 'Beth', 1943, 'F', 785), +(53726, 'Eunice', 1943, 'F', 785), +(53727, 'Sandy', 1943, 'F', 785), +(53728, 'Cecelia', 1943, 'F', 783), +(53729, 'Lula', 1943, 'F', 783), +(53730, 'Bettie', 1943, 'F', 782), +(53731, 'Lena', 1943, 'F', 776), +(53732, 'Irma', 1943, 'F', 773), +(53733, 'Bette', 1943, 'F', 770), +(53734, 'Dianna', 1943, 'F', 770), +(53735, 'Colleen', 1943, 'F', 768), +(53736, 'Dawn', 1943, 'F', 765), +(53737, 'Sondra', 1943, 'F', 762), +(53738, 'Daisy', 1943, 'F', 759), +(53739, 'Saundra', 1943, 'F', 746), +(53740, 'Bettye', 1943, 'F', 742), +(53741, 'Erma', 1943, 'F', 718), +(53742, 'Eloise', 1943, 'F', 714), +(53743, 'Iris', 1943, 'F', 711), +(53744, 'Violet', 1943, 'F', 711), +(53745, 'Miriam', 1943, 'F', 708), +(53746, 'Hilda', 1943, 'F', 704), +(53747, 'Jennie', 1943, 'F', 703), +(53748, 'Toni', 1943, 'F', 696), +(53749, 'Marcella', 1943, 'F', 694), +(53750, 'Olivia', 1943, 'F', 694), +(53751, 'Fannie', 1943, 'F', 693), +(53752, 'Della', 1943, 'F', 682), +(53753, 'Betsy', 1943, 'F', 665), +(53754, 'Ada', 1943, 'F', 658), +(53755, 'Bernadette', 1943, 'F', 655), +(53756, 'Henrietta', 1943, 'F', 655), +(53757, 'Janis', 1943, 'F', 651), +(53758, 'Penelope', 1943, 'F', 643), +(53759, 'Carla', 1943, 'F', 641), +(53760, 'Flora', 1943, 'F', 641), +(53761, 'Jan', 1943, 'F', 641), +(53762, 'Katie', 1943, 'F', 637), +(53763, 'Mamie', 1943, 'F', 632), +(53764, 'Jerry', 1943, 'F', 626), +(53765, 'Cathy', 1943, 'F', 606), +(53766, 'Genevieve', 1943, 'F', 603), +(53767, 'Frankie', 1943, 'F', 598), +(53768, 'Lee', 1943, 'F', 597), +(53769, 'Melba', 1943, 'F', 597), +(53770, 'Sheryl', 1943, 'F', 588), +(53771, 'Christina', 1943, 'F', 582), +(53772, 'Jimmie', 1943, 'F', 577), +(53773, 'Faith', 1943, 'F', 570), +(53774, 'Maggie', 1943, 'F', 565), +(53775, 'Amelia', 1943, 'F', 560), +(53776, 'Renee', 1943, 'F', 557), +(53777, 'Roseann', 1943, 'F', 555), +(53778, 'Nadine', 1943, 'F', 554), +(53779, 'Becky', 1943, 'F', 552), +(53780, 'Freda', 1943, 'F', 552), +(53781, 'Camille', 1943, 'F', 546), +(53782, 'Mable', 1943, 'F', 541), +(53783, 'Laverne', 1943, 'F', 537), +(53784, 'Muriel', 1943, 'F', 531), +(53785, 'Reba', 1943, 'F', 529), +(53786, 'Francine', 1943, 'F', 528), +(53787, 'Sonja', 1943, 'F', 525), +(53788, 'Sallie', 1943, 'F', 523), +(53789, 'Rosalind', 1943, 'F', 516), +(53790, 'Joanna', 1943, 'F', 514), +(53791, 'Melinda', 1943, 'F', 510), +(53792, 'Trudy', 1943, 'F', 505), +(53793, 'Beulah', 1943, 'F', 502), +(53794, 'Glenna', 1943, 'F', 500), +(53795, 'Nelda', 1943, 'F', 500), +(53796, 'Susanne', 1943, 'F', 492), +(53797, 'Shelby', 1943, 'F', 491), +(53798, 'Gay', 1943, 'F', 487), +(53799, 'Lila', 1943, 'F', 487), +(53800, 'Claudette', 1943, 'F', 481), +(53801, 'Vickie', 1943, 'F', 481), +(53802, 'Mabel', 1943, 'F', 478), +(53803, 'Inez', 1943, 'F', 476), +(53804, 'Eula', 1943, 'F', 475), +(53805, 'Kaye', 1943, 'F', 475), +(53806, 'Yolanda', 1943, 'F', 475), +(53807, 'Fay', 1943, 'F', 471), +(53808, 'Natalie', 1943, 'F', 468), +(53809, 'Rochelle', 1943, 'F', 466), +(53810, 'Amy', 1943, 'F', 465), +(53811, 'Denise', 1943, 'F', 462), +(53812, 'Helene', 1943, 'F', 462), +(53813, 'Lou', 1943, 'F', 456), +(53814, 'Wendy', 1943, 'F', 455), +(53815, 'Earnestine', 1943, 'F', 449), +(53816, 'Ina', 1943, 'F', 449), +(53817, 'Gretchen', 1943, 'F', 448), +(53818, 'Dale', 1943, 'F', 445), +(53819, 'Guadalupe', 1943, 'F', 441), +(53820, 'Lorna', 1943, 'F', 441), +(53821, 'Margo', 1943, 'F', 441), +(53822, 'Rosetta', 1943, 'F', 441), +(53823, 'Winifred', 1943, 'F', 438), +(53824, 'Opal', 1943, 'F', 436), +(53825, 'Nettie', 1943, 'F', 434), +(53826, 'Lenora', 1943, 'F', 433), +(53827, 'Sadie', 1943, 'F', 433), +(53828, 'Blanche', 1943, 'F', 429), +(53829, 'Patti', 1943, 'F', 429), +(53830, 'Polly', 1943, 'F', 427), +(53831, 'Gale', 1943, 'F', 425), +(53832, 'Etta', 1943, 'F', 420), +(53833, 'Dana', 1943, 'F', 417), +(53834, 'Ollie', 1943, 'F', 416), +(53835, 'Lorene', 1943, 'F', 408), +(53836, 'Jeannie', 1943, 'F', 407), +(53837, 'Gracie', 1943, 'F', 406), +(53838, 'Judi', 1943, 'F', 406), +(53839, 'Melanie', 1943, 'F', 406), +(53840, 'Celia', 1943, 'F', 405), +(53841, 'Noreen', 1943, 'F', 400), +(53842, 'Earlene', 1943, 'F', 399), +(53843, 'Jewel', 1943, 'F', 398), +(53844, 'Dona', 1943, 'F', 397), +(53845, 'Ora', 1943, 'F', 395), +(53846, 'Alicia', 1943, 'F', 394), +(53847, 'Beverley', 1943, 'F', 394), +(53848, 'Rena', 1943, 'F', 389), +(53849, 'Molly', 1943, 'F', 386), +(53850, 'Gwen', 1943, 'F', 384), +(53851, 'Judie', 1943, 'F', 378), +(53852, 'Tommie', 1943, 'F', 376), +(53853, 'Ruthie', 1943, 'F', 374), +(53854, 'Vicky', 1943, 'F', 374), +(53855, 'Marylou', 1943, 'F', 373), +(53856, 'Estelle', 1943, 'F', 370), +(53857, 'Jewell', 1943, 'F', 370), +(53858, 'Michelle', 1943, 'F', 370), +(53859, 'Estella', 1943, 'F', 368), +(53860, 'Adele', 1943, 'F', 366), +(53861, 'Darla', 1943, 'F', 365), +(53862, 'Edwina', 1943, 'F', 364), +(53863, 'Willa', 1943, 'F', 364), +(53864, 'Adrienne', 1943, 'F', 363), +(53865, 'Marilynn', 1943, 'F', 361), +(53866, 'Olga', 1943, 'F', 359), +(53867, 'Tina', 1943, 'F', 359), +(53868, 'Mona', 1943, 'F', 358), +(53869, 'Doreen', 1943, 'F', 357), +(53870, 'Isabel', 1943, 'F', 356), +(53871, 'Arleen', 1943, 'F', 353), +(53872, 'Lupe', 1943, 'F', 353), +(53873, 'Dorthy', 1943, 'F', 351), +(53874, 'Essie', 1943, 'F', 351), +(53875, 'Harriett', 1943, 'F', 344), +(53876, 'Lela', 1943, 'F', 344), +(53877, 'Lenore', 1943, 'F', 344), +(53878, 'Janette', 1943, 'F', 343), +(53879, 'Earline', 1943, 'F', 342), +(53880, 'Jennifer', 1943, 'F', 337), +(53881, 'Ola', 1943, 'F', 335), +(53882, 'Pearlie', 1943, 'F', 335), +(53883, 'Lucinda', 1943, 'F', 334), +(53884, 'Diann', 1943, 'F', 333), +(53885, 'Dorothea', 1943, 'F', 333), +(53886, 'Robin', 1943, 'F', 333), +(53887, 'Josie', 1943, 'F', 331), +(53888, 'Meredith', 1943, 'F', 327), +(53889, 'Eddie', 1943, 'F', 323), +(53890, 'Marva', 1943, 'F', 322), +(53891, 'Bernadine', 1943, 'F', 321), +(53892, 'Jayne', 1943, 'F', 321), +(53893, 'Holly', 1943, 'F', 318), +(53894, 'Lavonne', 1943, 'F', 316), +(53895, 'Ginger', 1943, 'F', 313), +(53896, 'Francis', 1943, 'F', 312), +(53897, 'Rosanne', 1943, 'F', 311), +(53898, 'Maryanne', 1943, 'F', 309), +(53899, 'Robbie', 1943, 'F', 309), +(53900, 'Carlene', 1943, 'F', 308), +(53901, 'Eugenia', 1943, 'F', 308), +(53902, 'Leah', 1943, 'F', 308), +(53903, 'Rhoda', 1943, 'F', 306), +(53904, 'Delia', 1943, 'F', 305), +(53905, 'Margarita', 1943, 'F', 302), +(53906, 'Corinne', 1943, 'F', 300), +(53907, 'Fern', 1943, 'F', 299), +(53908, 'Laurel', 1943, 'F', 299), +(53909, 'Monica', 1943, 'F', 299), +(53910, 'Elva', 1943, 'F', 298), +(53911, 'Hope', 1943, 'F', 295), +(53912, 'Jenny', 1943, 'F', 293), +(53913, 'Lizzie', 1943, 'F', 293), +(53914, 'Nola', 1943, 'F', 291), +(53915, 'Johanna', 1943, 'F', 289), +(53916, 'Cornelia', 1943, 'F', 288), +(53917, 'Addie', 1943, 'F', 287), +(53918, 'Leola', 1943, 'F', 287), +(53919, 'Sybil', 1943, 'F', 287), +(53920, 'Iva', 1943, 'F', 286), +(53921, 'Marlys', 1943, 'F', 285), +(53922, 'Amanda', 1943, 'F', 284), +(53923, 'Lottie', 1943, 'F', 284), +(53924, 'Melva', 1943, 'F', 283), +(53925, 'Rae', 1943, 'F', 283), +(53926, 'Pam', 1943, 'F', 282), +(53927, 'Cecile', 1943, 'F', 280), +(53928, 'Katharine', 1943, 'F', 280), +(53929, 'Mavis', 1943, 'F', 280), +(53930, 'Dottie', 1943, 'F', 278), +(53931, 'Lora', 1943, 'F', 278), +(53932, 'Lynette', 1943, 'F', 275), +(53933, 'Clarice', 1943, 'F', 274), +(53934, 'Imogene', 1943, 'F', 273), +(53935, 'Ilene', 1943, 'F', 272), +(53936, 'James', 1943, 'F', 271), +(53937, 'Carolee', 1943, 'F', 266), +(53938, 'Nita', 1943, 'F', 265), +(53939, 'Angelina', 1943, 'F', 264), +(53940, 'Jeanie', 1943, 'F', 262), +(53941, 'Sonia', 1943, 'F', 262), +(53942, 'Laurie', 1943, 'F', 258), +(53943, 'Ruthann', 1943, 'F', 258), +(53944, 'Jeannine', 1943, 'F', 257), +(53945, 'Freddie', 1943, 'F', 256), +(53946, 'Jannie', 1943, 'F', 256), +(53947, 'Queen', 1943, 'F', 255), +(53948, 'Kathie', 1943, 'F', 254), +(53949, 'Sherrie', 1943, 'F', 254), +(53950, 'Robert', 1943, 'F', 250), +(53951, 'Rosalyn', 1943, 'F', 250), +(53952, 'Gerry', 1943, 'F', 249), +(53953, 'Cleo', 1943, 'F', 244), +(53954, 'Elnora', 1943, 'F', 244), +(53955, 'Elvira', 1943, 'F', 244), +(53956, 'Antonia', 1943, 'F', 242), +(53957, 'Mollie', 1943, 'F', 242), +(53958, 'Cassandra', 1943, 'F', 241), +(53959, 'Alta', 1943, 'F', 239), +(53960, 'Cindy', 1943, 'F', 238), +(53961, 'Maryellen', 1943, 'F', 237), +(53962, 'Bennie', 1943, 'F', 236), +(53963, 'Karin', 1943, 'F', 236), +(53964, 'Virgie', 1943, 'F', 235), +(53965, 'Carolann', 1943, 'F', 234), +(53966, 'Dolly', 1943, 'F', 234), +(53967, 'Candace', 1943, 'F', 233), +(53968, 'Therese', 1943, 'F', 233), +(53969, 'Merle', 1943, 'F', 231), +(53970, 'Effie', 1943, 'F', 230), +(53971, 'Margery', 1943, 'F', 230), +(53972, 'Joe', 1943, 'F', 229), +(53973, 'John', 1943, 'F', 229), +(53974, 'Angie', 1943, 'F', 228), +(53975, 'Aurora', 1943, 'F', 228), +(53976, 'Arline', 1943, 'F', 227), +(53977, 'Darleen', 1943, 'F', 227), +(53978, 'Delois', 1943, 'F', 226), +(53979, 'Millie', 1943, 'F', 226), +(53980, 'Nell', 1943, 'F', 225), +(53981, 'Alyce', 1943, 'F', 224), +(53982, 'Elena', 1943, 'F', 224), +(53983, 'Marietta', 1943, 'F', 221), +(53984, 'Merry', 1943, 'F', 221), +(53985, 'April', 1943, 'F', 220), +(53986, 'Madeleine', 1943, 'F', 219), +(53987, 'May', 1943, 'F', 219), +(53988, 'Karla', 1943, 'F', 218), +(53989, 'Madelyn', 1943, 'F', 218), +(53990, 'Goldie', 1943, 'F', 217), +(53991, 'Nan', 1943, 'F', 216), +(53992, 'Shelia', 1943, 'F', 215), +(53993, 'Luella', 1943, 'F', 214), +(53994, 'Roxie', 1943, 'F', 214), +(53995, 'Clare', 1943, 'F', 211), +(53996, 'Winnie', 1943, 'F', 210), +(53997, 'Aileen', 1943, 'F', 209), +(53998, 'Dollie', 1943, 'F', 209), +(53999, 'Helena', 1943, 'F', 209), +(54000, 'Carroll', 1943, 'F', 208), +(54001, 'Elma', 1943, 'F', 208), +(54002, 'Corrine', 1943, 'F', 207), +(54003, 'Ladonna', 1943, 'F', 207), +(54004, 'Maryjane', 1943, 'F', 207), +(54005, 'Sherrill', 1943, 'F', 207), +(54006, 'Dee', 1943, 'F', 206), +(54007, 'Elinor', 1943, 'F', 204), +(54008, 'Leila', 1943, 'F', 204), +(54009, 'Carmela', 1943, 'F', 203), +(54010, 'Karon', 1943, 'F', 203), +(54011, 'Loraine', 1943, 'F', 203), +(54012, 'Olive', 1943, 'F', 203), +(54013, 'Cherie', 1943, 'F', 202), +(54014, 'Elouise', 1943, 'F', 202), +(54015, 'Sharen', 1943, 'F', 201), +(54016, 'Carrol', 1943, 'F', 200), +(54017, 'Cathleen', 1943, 'F', 199), +(54018, 'Rosalee', 1943, 'F', 199), +(54019, 'Reva', 1943, 'F', 197), +(54020, 'Dian', 1943, 'F', 196), +(54021, 'Roslyn', 1943, 'F', 196), +(54022, 'Melody', 1943, 'F', 195), +(54023, 'Tanya', 1943, 'F', 195), +(54024, 'Hannah', 1943, 'F', 194), +(54025, 'Nona', 1943, 'F', 192), +(54026, 'Nikki', 1943, 'F', 190), +(54027, 'Sydney', 1943, 'F', 190), +(54028, 'Georgette', 1943, 'F', 189), +(54029, 'Ila', 1943, 'F', 189), +(54030, 'Jeri', 1943, 'F', 189), +(54031, 'Melissa', 1943, 'F', 189), +(54032, 'Terri', 1943, 'F', 189), +(54033, 'Consuelo', 1943, 'F', 188), +(54034, 'Louella', 1943, 'F', 188), +(54035, 'Marilee', 1943, 'F', 188), +(54036, 'Michael', 1943, 'F', 188), +(54037, 'Julianne', 1943, 'F', 187), +(54038, 'Peggie', 1943, 'F', 186), +(54039, 'Sammie', 1943, 'F', 186), +(54040, 'Karol', 1943, 'F', 184), +(54041, 'Jerilyn', 1943, 'F', 182), +(54042, 'Kitty', 1943, 'F', 182), +(54043, 'Lucia', 1943, 'F', 182), +(54044, 'Marla', 1943, 'F', 182), +(54045, 'Wilda', 1943, 'F', 182), +(54046, 'Jolene', 1943, 'F', 180), +(54047, 'Roseanne', 1943, 'F', 180), +(54048, 'Ronnie', 1943, 'F', 179), +(54049, 'Roxanne', 1943, 'F', 179), +(54050, 'Angeline', 1943, 'F', 178), +(54051, 'Dinah', 1943, 'F', 178), +(54052, 'Zelma', 1943, 'F', 178), +(54053, 'Charles', 1943, 'F', 176), +(54054, 'Ingrid', 1943, 'F', 176), +(54055, 'Callie', 1943, 'F', 175), +(54056, 'Frieda', 1943, 'F', 175), +(54057, 'Adeline', 1943, 'F', 174), +(54058, 'Jeraldine', 1943, 'F', 174), +(54059, 'Retha', 1943, 'F', 173), +(54060, 'Georgianna', 1943, 'F', 171), +(54061, 'Letha', 1943, 'F', 171), +(54062, 'Sonya', 1943, 'F', 170), +(54063, 'Charleen', 1943, 'F', 169), +(54064, 'Deanne', 1943, 'F', 168), +(54065, 'William', 1943, 'F', 168), +(54066, 'Tamara', 1943, 'F', 167), +(54067, 'Celeste', 1943, 'F', 166), +(54068, 'Heather', 1943, 'F', 166), +(54069, 'Neva', 1943, 'F', 165), +(54070, 'Ophelia', 1943, 'F', 165), +(54071, 'Nannie', 1943, 'F', 164), +(54072, 'Reta', 1943, 'F', 164), +(54073, 'Laraine', 1943, 'F', 163), +(54074, 'Lisa', 1943, 'F', 163), +(54075, 'Rosella', 1943, 'F', 162), +(54076, 'Georgie', 1943, 'F', 161), +(54077, 'Carolynn', 1943, 'F', 160), +(54078, 'Isabelle', 1943, 'F', 160), +(54079, 'Lily', 1943, 'F', 160), +(54080, 'Toby', 1943, 'F', 160), +(54081, 'Concetta', 1943, 'F', 159), +(54082, 'Crystal', 1943, 'F', 158), +(54083, 'Madonna', 1943, 'F', 158), +(54084, 'Lorena', 1943, 'F', 157), +(54085, 'Vernell', 1943, 'F', 157), +(54086, 'Ester', 1943, 'F', 156), +(54087, 'Portia', 1943, 'F', 156), +(54088, 'Carmella', 1943, 'F', 154), +(54089, 'Donnie', 1943, 'F', 154), +(54090, 'Freida', 1943, 'F', 154), +(54091, 'Jamie', 1943, 'F', 154), +(54092, 'Jana', 1943, 'F', 154), +(54093, 'Karolyn', 1943, 'F', 154), +(54094, 'Sharlene', 1943, 'F', 154), +(54095, 'Sheri', 1943, 'F', 154), +(54096, 'Florine', 1943, 'F', 153), +(54097, 'Lilly', 1943, 'F', 153), +(54098, 'Odessa', 1943, 'F', 153), +(54099, 'Corine', 1943, 'F', 152), +(54100, 'Yvette', 1943, 'F', 151), +(54101, 'George', 1943, 'F', 150), +(54102, 'Minerva', 1943, 'F', 150), +(54103, 'Flossie', 1943, 'F', 149), +(54104, 'Bobby', 1943, 'F', 148), +(54105, 'Lessie', 1943, 'F', 148), +(54106, 'Jeanine', 1943, 'F', 147), +(54107, 'Lelia', 1943, 'F', 147), +(54108, 'Lona', 1943, 'F', 147), +(54109, 'Lucile', 1943, 'F', 147), +(54110, 'Cherry', 1943, 'F', 146), +(54111, 'Elisabeth', 1943, 'F', 146), +(54112, 'Justine', 1943, 'F', 146), +(54113, 'Charlie', 1943, 'F', 145), +(54114, 'Esperanza', 1943, 'F', 145), +(54115, 'Gearldine', 1943, 'F', 144), +(54116, 'Shari', 1943, 'F', 144), +(54117, 'Claudine', 1943, 'F', 143), +(54118, 'Jerrie', 1943, 'F', 143), +(54119, 'Shannon', 1943, 'F', 143), +(54120, 'Pattie', 1943, 'F', 142), +(54121, 'Ronda', 1943, 'F', 142), +(54122, 'Sherri', 1943, 'F', 141), +(54123, 'Theodora', 1943, 'F', 141), +(54124, 'Aline', 1943, 'F', 140), +(54125, 'Greta', 1943, 'F', 140), +(54126, 'Harriette', 1943, 'F', 140), +(54127, 'Prudence', 1943, 'F', 140), +(54128, 'Elsa', 1943, 'F', 139), +(54129, 'Eliza', 1943, 'F', 138), +(54130, 'Jerri', 1943, 'F', 138), +(54131, 'Marlyn', 1943, 'F', 138), +(54132, 'Suellen', 1943, 'F', 138), +(54133, 'Sidney', 1943, 'F', 137), +(54134, 'Celestine', 1943, 'F', 136), +(54135, 'Annabelle', 1943, 'F', 135), +(54136, 'Caryl', 1943, 'F', 135), +(54137, 'Evangeline', 1943, 'F', 134), +(54138, 'Margot', 1943, 'F', 134), +(54139, 'Mercedes', 1943, 'F', 134), +(54140, 'Annmarie', 1943, 'F', 133), +(54141, 'Fran', 1943, 'F', 133), +(54142, 'Leta', 1943, 'F', 133), +(54143, 'Gaye', 1943, 'F', 132), +(54144, 'Hester', 1943, 'F', 132), +(54145, 'Allie', 1943, 'F', 131), +(54146, 'Carolina', 1943, 'F', 131), +(54147, 'Georgene', 1943, 'F', 131), +(54148, 'Sharyn', 1943, 'F', 131), +(54149, 'Patrica', 1943, 'F', 130), +(54150, 'Georgiana', 1943, 'F', 129), +(54151, 'Doretha', 1943, 'F', 128), +(54152, 'Elida', 1943, 'F', 128), +(54153, 'Lucretia', 1943, 'F', 128), +(54154, 'Mariann', 1943, 'F', 128), +(54155, 'Phoebe', 1943, 'F', 128), +(54156, 'Cathryn', 1943, 'F', 127), +(54157, 'Matilda', 1943, 'F', 127), +(54158, 'Angelita', 1943, 'F', 126), +(54159, 'Annetta', 1943, 'F', 126), +(54160, 'Dorene', 1943, 'F', 126), +(54161, 'Alfreda', 1943, 'F', 125), +(54162, 'Elise', 1943, 'F', 125), +(54163, 'Nedra', 1943, 'F', 125), +(54164, 'Alexandra', 1943, 'F', 124), +(54165, 'Bonny', 1943, 'F', 124), +(54166, 'Camilla', 1943, 'F', 124), +(54167, 'Rowena', 1943, 'F', 124), +(54168, 'Tana', 1943, 'F', 124), +(54169, 'Kristine', 1943, 'F', 123), +(54170, 'Marylin', 1943, 'F', 122), +(54171, 'Selma', 1943, 'F', 122), +(54172, 'Suzan', 1943, 'F', 122), +(54173, 'Twila', 1943, 'F', 122), +(54174, 'Jessica', 1943, 'F', 121), +(54175, 'Malinda', 1943, 'F', 121), +(54176, 'Maryjo', 1943, 'F', 121), +(54177, 'Mickey', 1943, 'F', 121), +(54178, 'Oralia', 1943, 'F', 121), +(54179, 'Susann', 1943, 'F', 121), +(54180, 'Avis', 1943, 'F', 120), +(54181, 'Merrily', 1943, 'F', 120), +(54182, 'Vonda', 1943, 'F', 120), +(54183, 'Lorine', 1943, 'F', 119), +(54184, 'Richard', 1943, 'F', 119), +(54185, 'Roselyn', 1943, 'F', 119), +(54186, 'Shirlee', 1943, 'F', 119), +(54187, 'Sophie', 1943, 'F', 119), +(54188, 'Ardis', 1943, 'F', 118), +(54189, 'Ardith', 1943, 'F', 118), +(54190, 'Bertie', 1943, 'F', 118), +(54191, 'Clementine', 1943, 'F', 118), +(54192, 'Zelda', 1943, 'F', 118), +(54193, 'Cheri', 1943, 'F', 117), +(54194, 'Delphine', 1943, 'F', 117), +(54195, 'Louisa', 1943, 'F', 117), +(54196, 'Sherron', 1943, 'F', 117), +(54197, 'Beryl', 1943, 'F', 116), +(54198, 'Emilie', 1943, 'F', 116), +(54199, 'Enid', 1943, 'F', 116), +(54200, 'Roma', 1943, 'F', 116), +(54201, 'Althea', 1943, 'F', 115), +(54202, 'Elisa', 1943, 'F', 115), +(54203, 'Jonnie', 1943, 'F', 114), +(54204, 'Josefina', 1943, 'F', 114), +(54205, 'Lonnie', 1943, 'F', 114), +(54206, 'Marianna', 1943, 'F', 114), +(54207, 'Terrie', 1943, 'F', 114), +(54208, 'Adelaide', 1943, 'F', 113), +(54209, 'Carlotta', 1943, 'F', 113), +(54210, 'Eleanore', 1943, 'F', 113), +(54211, 'Katheryn', 1943, 'F', 113), +(54212, 'Pearline', 1943, 'F', 113), +(54213, 'Rhonda', 1943, 'F', 113), +(54214, 'Zella', 1943, 'F', 113), +(54215, 'Nanette', 1943, 'F', 112), +(54216, 'Pansy', 1943, 'F', 112), +(54217, 'Shelley', 1943, 'F', 111), +(54218, 'Valeria', 1943, 'F', 111), +(54219, 'David', 1943, 'F', 110), +(54220, 'Felicia', 1943, 'F', 110), +(54221, 'Lauretta', 1943, 'F', 110), +(54222, 'Martina', 1943, 'F', 110), +(54223, 'Maude', 1943, 'F', 110), +(54224, 'Rhea', 1943, 'F', 110), +(54225, 'Ava', 1943, 'F', 109), +(54226, 'Iona', 1943, 'F', 109), +(54227, 'Norene', 1943, 'F', 109), +(54228, 'Ana', 1943, 'F', 108), +(54229, 'Colette', 1943, 'F', 108), +(54230, 'Delma', 1943, 'F', 108), +(54231, 'Eve', 1943, 'F', 108), +(54232, 'Margret', 1943, 'F', 108), +(54233, 'Susanna', 1943, 'F', 108), +(54234, 'Winona', 1943, 'F', 108), +(54235, 'Belva', 1943, 'F', 107), +(54236, 'Charmaine', 1943, 'F', 107), +(54237, 'Dorris', 1943, 'F', 106), +(54238, 'Marta', 1943, 'F', 106), +(54239, 'Charline', 1943, 'F', 105), +(54240, 'Wilhelmina', 1943, 'F', 105), +(54241, 'Jacklyn', 1943, 'F', 104), +(54242, 'Leota', 1943, 'F', 104), +(54243, 'Lyn', 1943, 'F', 104), +(54244, 'Sophia', 1943, 'F', 104), +(54245, 'Aloma', 1943, 'F', 103), +(54246, 'Carolyne', 1943, 'F', 103), +(54247, 'Daphne', 1943, 'F', 103), +(54248, 'Janell', 1943, 'F', 103), +(54249, 'Petra', 1943, 'F', 103), +(54250, 'Treva', 1943, 'F', 103), +(54251, 'Chris', 1943, 'F', 102), +(54252, 'Debra', 1943, 'F', 102), +(54253, 'Gene', 1943, 'F', 102), +(54254, 'Kate', 1943, 'F', 102), +(54255, 'Lynnette', 1943, 'F', 102), +(54256, 'Marge', 1943, 'F', 102), +(54257, 'Rosann', 1943, 'F', 102), +(54258, 'Velda', 1943, 'F', 102), +(54259, 'Margarett', 1943, 'F', 101), +(54260, 'Sandi', 1943, 'F', 101), +(54261, 'Karren', 1943, 'F', 100), +(54262, 'Libby', 1943, 'F', 100), +(54263, 'Manuela', 1943, 'F', 100), +(54264, 'Millicent', 1943, 'F', 100), +(54265, 'James', 1943, 'M', 80248), +(54266, 'Robert', 1943, 'M', 74853), +(54267, 'John', 1943, 'M', 68917), +(54268, 'William', 1943, 'M', 55890), +(54269, 'Richard', 1943, 'M', 46331), +(54270, 'David', 1943, 'M', 37237), +(54271, 'Charles', 1943, 'M', 36624), +(54272, 'Thomas', 1943, 'M', 32865), +(54273, 'Ronald', 1943, 'M', 29232), +(54274, 'Michael', 1943, 'M', 24741), +(54275, 'Donald', 1943, 'M', 24410), +(54276, 'Larry', 1943, 'M', 22965), +(54277, 'Joseph', 1943, 'M', 22817), +(54278, 'George', 1943, 'M', 21677), +(54279, 'Kenneth', 1943, 'M', 19107), +(54280, 'Gary', 1943, 'M', 17861), +(54281, 'Jerry', 1943, 'M', 17728), +(54282, 'Edward', 1943, 'M', 17712), +(54283, 'Paul', 1943, 'M', 17253), +(54284, 'Dennis', 1943, 'M', 14111), +(54285, 'Frank', 1943, 'M', 12249), +(54286, 'Raymond', 1943, 'M', 11389), +(54287, 'Gerald', 1943, 'M', 11358), +(54288, 'Roger', 1943, 'M', 10765), +(54289, 'Daniel', 1943, 'M', 9168), +(54290, 'Walter', 1943, 'M', 9037), +(54291, 'Harold', 1943, 'M', 8660), +(54292, 'Douglas', 1943, 'M', 8235), +(54293, 'Stephen', 1943, 'M', 7925), +(54294, 'Arthur', 1943, 'M', 7781), +(54295, 'Henry', 1943, 'M', 7624), +(54296, 'Lawrence', 1943, 'M', 7580), +(54297, 'Carl', 1943, 'M', 7466), +(54298, 'Jack', 1943, 'M', 7400), +(54299, 'Joe', 1943, 'M', 7308), +(54300, 'Willie', 1943, 'M', 7176), +(54301, 'Billy', 1943, 'M', 7016), +(54302, 'Roy', 1943, 'M', 6927), +(54303, 'Peter', 1943, 'M', 6876), +(54304, 'Ralph', 1943, 'M', 6763), +(54305, 'Wayne', 1943, 'M', 6763), +(54306, 'Jimmy', 1943, 'M', 6441), +(54307, 'Albert', 1943, 'M', 6305), +(54308, 'Anthony', 1943, 'M', 6203), +(54309, 'Fred', 1943, 'M', 6168), +(54310, 'Bobby', 1943, 'M', 6118), +(54311, 'Eugene', 1943, 'M', 5899), +(54312, 'Howard', 1943, 'M', 5737), +(54313, 'Terry', 1943, 'M', 5733), +(54314, 'Harry', 1943, 'M', 5719), +(54315, 'Bruce', 1943, 'M', 5432), +(54316, 'Johnny', 1943, 'M', 5379), +(54317, 'Louis', 1943, 'M', 5029), +(54318, 'Stanley', 1943, 'M', 4699), +(54319, 'Leonard', 1943, 'M', 4608), +(54320, 'Norman', 1943, 'M', 4521), +(54321, 'Philip', 1943, 'M', 4473), +(54322, 'Steven', 1943, 'M', 4268), +(54323, 'Dale', 1943, 'M', 4233), +(54324, 'Earl', 1943, 'M', 4184), +(54325, 'Ernest', 1943, 'M', 4171), +(54326, 'Samuel', 1943, 'M', 4136), +(54327, 'Melvin', 1943, 'M', 4068), +(54328, 'Francis', 1943, 'M', 4066), +(54329, 'Bill', 1943, 'M', 3989), +(54330, 'Marvin', 1943, 'M', 3937), +(54331, 'Alan', 1943, 'M', 3856), +(54332, 'Clarence', 1943, 'M', 3854), +(54333, 'Patrick', 1943, 'M', 3846), +(54334, 'Frederick', 1943, 'M', 3839), +(54335, 'Ronnie', 1943, 'M', 3826), +(54336, 'Don', 1943, 'M', 3815), +(54337, 'Russell', 1943, 'M', 3753), +(54338, 'Leroy', 1943, 'M', 3736), +(54339, 'Jim', 1943, 'M', 3677), +(54340, 'Allen', 1943, 'M', 3627), +(54341, 'Tommy', 1943, 'M', 3611), +(54342, 'Alfred', 1943, 'M', 3445), +(54343, 'Andrew', 1943, 'M', 3350), +(54344, 'Eddie', 1943, 'M', 3276), +(54345, 'Phillip', 1943, 'M', 3250), +(54346, 'Barry', 1943, 'M', 3193), +(54347, 'Martin', 1943, 'M', 3078), +(54348, 'Ray', 1943, 'M', 3064), +(54349, 'Glenn', 1943, 'M', 3050), +(54350, 'Herbert', 1943, 'M', 3042), +(54351, 'Tom', 1943, 'M', 2910), +(54352, 'Danny', 1943, 'M', 2899), +(54353, 'Gene', 1943, 'M', 2868), +(54354, 'Mike', 1943, 'M', 2803), +(54355, 'Lee', 1943, 'M', 2791), +(54356, 'Bernard', 1943, 'M', 2745), +(54357, 'Steve', 1943, 'M', 2688), +(54358, 'Clifford', 1943, 'M', 2659), +(54359, 'Jimmie', 1943, 'M', 2629), +(54360, 'Victor', 1943, 'M', 2616), +(54361, 'Theodore', 1943, 'M', 2614), +(54362, 'Gordon', 1943, 'M', 2607), +(54363, 'Timothy', 1943, 'M', 2580), +(54364, 'Curtis', 1943, 'M', 2526), +(54365, 'Mark', 1943, 'M', 2516), +(54366, 'Warren', 1943, 'M', 2480), +(54367, 'Leon', 1943, 'M', 2454), +(54368, 'Lloyd', 1943, 'M', 2444), +(54369, 'Jesse', 1943, 'M', 2425), +(54370, 'Vincent', 1943, 'M', 2419), +(54371, 'Edwin', 1943, 'M', 2388), +(54372, 'Keith', 1943, 'M', 2385), +(54373, 'Jerome', 1943, 'M', 2306), +(54374, 'Bob', 1943, 'M', 2274), +(54375, 'Harvey', 1943, 'M', 2244), +(54376, 'Floyd', 1943, 'M', 2225), +(54377, 'Alvin', 1943, 'M', 2201), +(54378, 'Clyde', 1943, 'M', 2192), +(54379, 'Lewis', 1943, 'M', 2179), +(54380, 'Jeffrey', 1943, 'M', 2171), +(54381, 'Vernon', 1943, 'M', 2093), +(54382, 'Rodney', 1943, 'M', 1984), +(54383, 'Franklin', 1943, 'M', 1970), +(54384, 'Brian', 1943, 'M', 1950), +(54385, 'Leslie', 1943, 'M', 1917), +(54386, 'Charlie', 1943, 'M', 1825), +(54387, 'Gilbert', 1943, 'M', 1813), +(54388, 'Jackie', 1943, 'M', 1779), +(54389, 'Lester', 1943, 'M', 1764), +(54390, 'Calvin', 1943, 'M', 1758), +(54391, 'Jon', 1943, 'M', 1752), +(54392, 'Joel', 1943, 'M', 1744), +(54393, 'Herman', 1943, 'M', 1725), +(54394, 'Benjamin', 1943, 'M', 1718), +(54395, 'Arnold', 1943, 'M', 1701), +(54396, 'Cecil', 1943, 'M', 1696), +(54397, 'Leo', 1943, 'M', 1694), +(54398, 'Jay', 1943, 'M', 1676), +(54399, 'Johnnie', 1943, 'M', 1655), +(54400, 'Allan', 1943, 'M', 1640), +(54401, 'Chester', 1943, 'M', 1630), +(54402, 'Duane', 1943, 'M', 1622), +(54403, 'Dan', 1943, 'M', 1537), +(54404, 'Darrell', 1943, 'M', 1530), +(54405, 'Milton', 1943, 'M', 1505), +(54406, 'Dean', 1943, 'M', 1503), +(54407, 'Freddie', 1943, 'M', 1496), +(54408, 'Lonnie', 1943, 'M', 1464), +(54409, 'Tony', 1943, 'M', 1457), +(54410, 'Glen', 1943, 'M', 1444), +(54411, 'Lynn', 1943, 'M', 1441), +(54412, 'Nicholas', 1943, 'M', 1433), +(54413, 'Manuel', 1943, 'M', 1429), +(54414, 'Roland', 1943, 'M', 1384), +(54415, 'Jose', 1943, 'M', 1373), +(54416, 'Claude', 1943, 'M', 1363), +(54417, 'Sam', 1943, 'M', 1321), +(54418, 'Elmer', 1943, 'M', 1311), +(54419, 'Wesley', 1943, 'M', 1266), +(54420, 'Wallace', 1943, 'M', 1254), +(54421, 'Ted', 1943, 'M', 1235), +(54422, 'Dwight', 1943, 'M', 1234), +(54423, 'Willard', 1943, 'M', 1229), +(54424, 'Hugh', 1943, 'M', 1206), +(54425, 'Eric', 1943, 'M', 1173), +(54426, 'Neil', 1943, 'M', 1155), +(54427, 'Gregory', 1943, 'M', 1134), +(54428, 'Craig', 1943, 'M', 1131), +(54429, 'Maurice', 1943, 'M', 1105), +(54430, 'Jessie', 1943, 'M', 1098), +(54431, 'Dave', 1943, 'M', 1088), +(54432, 'Edgar', 1943, 'M', 1081), +(54433, 'Oscar', 1943, 'M', 1074), +(54434, 'Marion', 1943, 'M', 1066), +(54435, 'Randall', 1943, 'M', 1026), +(54436, 'Marshall', 1943, 'M', 1019), +(54437, 'Sidney', 1943, 'M', 1016), +(54438, 'Everett', 1943, 'M', 1001), +(54439, 'Virgil', 1943, 'M', 992), +(54440, 'Benny', 1943, 'M', 959), +(54441, 'Earnest', 1943, 'M', 938), +(54442, 'Stuart', 1943, 'M', 926), +(54443, 'Alexander', 1943, 'M', 923), +(54444, 'Donnie', 1943, 'M', 920), +(54445, 'Morris', 1943, 'M', 913), +(54446, 'Karl', 1943, 'M', 907), +(54447, 'Sammy', 1943, 'M', 899), +(54448, 'Christopher', 1943, 'M', 890), +(54449, 'Lyle', 1943, 'M', 883), +(54450, 'Max', 1943, 'M', 875), +(54451, 'Clifton', 1943, 'M', 857), +(54452, 'Dick', 1943, 'M', 855), +(54453, 'Bennie', 1943, 'M', 851), +(54454, 'Luther', 1943, 'M', 843), +(54455, 'Nathaniel', 1943, 'M', 839), +(54456, 'Ben', 1943, 'M', 835), +(54457, 'Juan', 1943, 'M', 834), +(54458, 'Garry', 1943, 'M', 829), +(54459, 'Carroll', 1943, 'M', 826), +(54460, 'Guy', 1943, 'M', 824), +(54461, 'Matthew', 1943, 'M', 819), +(54462, 'Kent', 1943, 'M', 812), +(54463, 'Wendell', 1943, 'M', 810), +(54464, 'Lowell', 1943, 'M', 806), +(54465, 'Homer', 1943, 'M', 803), +(54466, 'Fredrick', 1943, 'M', 797), +(54467, 'Nelson', 1943, 'M', 794), +(54468, 'Delbert', 1943, 'M', 785), +(54469, 'Gerard', 1943, 'M', 770), +(54470, 'Clayton', 1943, 'M', 766), +(54471, 'Hubert', 1943, 'M', 756), +(54472, 'Willis', 1943, 'M', 752), +(54473, 'Otis', 1943, 'M', 743), +(54474, 'Clinton', 1943, 'M', 710), +(54475, 'Carlos', 1943, 'M', 699), +(54476, 'Perry', 1943, 'M', 687), +(54477, 'Horace', 1943, 'M', 682), +(54478, 'Loren', 1943, 'M', 678), +(54479, 'Leland', 1943, 'M', 676), +(54480, 'Malcolm', 1943, 'M', 672), +(54481, 'Oliver', 1943, 'M', 669), +(54482, 'Wilbur', 1943, 'M', 667), +(54483, 'Edmund', 1943, 'M', 666), +(54484, 'Randolph', 1943, 'M', 665), +(54485, 'Rudolph', 1943, 'M', 662), +(54486, 'Alex', 1943, 'M', 659), +(54487, 'Alton', 1943, 'M', 658), +(54488, 'Micheal', 1943, 'M', 658), +(54489, 'Laurence', 1943, 'M', 649), +(54490, 'Kevin', 1943, 'M', 640), +(54491, 'Pete', 1943, 'M', 640), +(54492, 'Troy', 1943, 'M', 634), +(54493, 'Mack', 1943, 'M', 627), +(54494, 'Terrence', 1943, 'M', 627), +(54495, 'Jerald', 1943, 'M', 623), +(54496, 'Ira', 1943, 'M', 620), +(54497, 'Tim', 1943, 'M', 618), +(54498, 'Archie', 1943, 'M', 614), +(54499, 'Rex', 1943, 'M', 614), +(54500, 'Reginald', 1943, 'M', 613), +(54501, 'Salvatore', 1943, 'M', 613), +(54502, 'Julius', 1943, 'M', 610), +(54503, 'Roosevelt', 1943, 'M', 610), +(54504, 'Wilbert', 1943, 'M', 608), +(54505, 'Byron', 1943, 'M', 587), +(54506, 'Randy', 1943, 'M', 585), +(54507, 'Ross', 1943, 'M', 585), +(54508, 'Nathan', 1943, 'M', 582), +(54509, 'Jonathan', 1943, 'M', 574), +(54510, 'Myron', 1943, 'M', 574), +(54511, 'Antonio', 1943, 'M', 567), +(54512, 'Dewey', 1943, 'M', 566), +(54513, 'Tommie', 1943, 'M', 562), +(54514, 'Jesus', 1943, 'M', 560), +(54515, 'Woodrow', 1943, 'M', 559), +(54516, 'Nick', 1943, 'M', 558), +(54517, 'Julian', 1943, 'M', 554), +(54518, 'Rudy', 1943, 'M', 554), +(54519, 'Jan', 1943, 'M', 551), +(54520, 'Aaron', 1943, 'M', 550), +(54521, 'Carlton', 1943, 'M', 548), +(54522, 'Ivan', 1943, 'M', 547), +(54523, 'Winston', 1943, 'M', 547), +(54524, 'Ruben', 1943, 'M', 544), +(54525, 'Scott', 1943, 'M', 540), +(54526, 'Sherman', 1943, 'M', 540), +(54527, 'Neal', 1943, 'M', 534), +(54528, 'Rodger', 1943, 'M', 534), +(54529, 'Ron', 1943, 'M', 522), +(54530, 'Doyle', 1943, 'M', 521), +(54531, 'Pat', 1943, 'M', 519), +(54532, 'Mitchell', 1943, 'M', 513), +(54533, 'Clark', 1943, 'M', 504), +(54534, 'Teddy', 1943, 'M', 504), +(54535, 'Darrel', 1943, 'M', 503), +(54536, 'Sylvester', 1943, 'M', 502), +(54537, 'Elbert', 1943, 'M', 497), +(54538, 'Ellis', 1943, 'M', 497), +(54539, 'Dallas', 1943, 'M', 492), +(54540, 'Frankie', 1943, 'M', 490), +(54541, 'Ervin', 1943, 'M', 484), +(54542, 'Rufus', 1943, 'M', 484), +(54543, 'Jeff', 1943, 'M', 481), +(54544, 'Isaac', 1943, 'M', 479), +(54545, 'Jacob', 1943, 'M', 476), +(54546, 'Orville', 1943, 'M', 475), +(54547, 'Grady', 1943, 'M', 474), +(54548, 'Terrance', 1943, 'M', 463), +(54549, 'Wilson', 1943, 'M', 460), +(54550, 'Sheldon', 1943, 'M', 457), +(54551, 'Conrad', 1943, 'M', 452), +(54552, 'Forrest', 1943, 'M', 450), +(54553, 'Eldon', 1943, 'M', 449), +(54554, 'Merle', 1943, 'M', 448), +(54555, 'Garland', 1943, 'M', 447), +(54556, 'Preston', 1943, 'M', 447), +(54557, 'Chris', 1943, 'M', 446), +(54558, 'Ken', 1943, 'M', 444), +(54559, 'Kenny', 1943, 'M', 432), +(54560, 'Billie', 1943, 'M', 429), +(54561, 'Buddy', 1943, 'M', 429), +(54562, 'Stewart', 1943, 'M', 425), +(54563, 'Ramon', 1943, 'M', 423), +(54564, 'Felix', 1943, 'M', 417), +(54565, 'Grant', 1943, 'M', 417), +(54566, 'Owen', 1943, 'M', 417), +(54567, 'Bert', 1943, 'M', 416), +(54568, 'Irvin', 1943, 'M', 416), +(54569, 'Phil', 1943, 'M', 416), +(54570, 'Junior', 1943, 'M', 415), +(54571, 'Boyd', 1943, 'M', 405), +(54572, 'Sammie', 1943, 'M', 404), +(54573, 'Darryl', 1943, 'M', 400), +(54574, 'Wade', 1943, 'M', 399), +(54575, 'Noel', 1943, 'M', 397), +(54576, 'Wilfred', 1943, 'M', 396), +(54577, 'Mickey', 1943, 'M', 394), +(54578, 'Percy', 1943, 'M', 394), +(54579, 'Roberto', 1943, 'M', 389), +(54580, 'Aubrey', 1943, 'M', 373), +(54581, 'Raul', 1943, 'M', 371), +(54582, 'Royce', 1943, 'M', 371), +(54583, 'Angelo', 1943, 'M', 366), +(54584, 'Daryl', 1943, 'M', 361), +(54585, 'Grover', 1943, 'M', 361), +(54586, 'Ronny', 1943, 'M', 358), +(54587, 'Pedro', 1943, 'M', 357), +(54588, 'Francisco', 1943, 'M', 356), +(54589, 'Harley', 1943, 'M', 354), +(54590, 'Harlan', 1943, 'M', 352), +(54591, 'Spencer', 1943, 'M', 351), +(54592, 'Brent', 1943, 'M', 350), +(54593, 'Andy', 1943, 'M', 344), +(54594, 'Denis', 1943, 'M', 343), +(54595, 'Bobbie', 1943, 'M', 339), +(54596, 'Tyrone', 1943, 'M', 336), +(54597, 'Freddy', 1943, 'M', 335), +(54598, 'Darwin', 1943, 'M', 332), +(54599, 'Emmett', 1943, 'M', 332), +(54600, 'Louie', 1943, 'M', 332), +(54601, 'Marlin', 1943, 'M', 332), +(54602, 'Mario', 1943, 'M', 331), +(54603, 'Bradley', 1943, 'M', 330), +(54604, 'Irving', 1943, 'M', 325), +(54605, 'Edmond', 1943, 'M', 322), +(54606, 'Kermit', 1943, 'M', 322), +(54607, 'Colin', 1943, 'M', 321), +(54608, 'Ed', 1943, 'M', 321), +(54609, 'Bryan', 1943, 'M', 320), +(54610, 'Luis', 1943, 'M', 319), +(54611, 'Loyd', 1943, 'M', 315), +(54612, 'Travis', 1943, 'M', 314), +(54613, 'Jeffery', 1943, 'M', 313), +(54614, 'Burton', 1943, 'M', 304), +(54615, 'Gale', 1943, 'M', 303), +(54616, 'Moses', 1943, 'M', 301), +(54617, 'Denny', 1943, 'M', 300), +(54618, 'Geoffrey', 1943, 'M', 300), +(54619, 'Thurman', 1943, 'M', 299), +(54620, 'Kurt', 1943, 'M', 296), +(54621, 'Lance', 1943, 'M', 294), +(54622, 'Lanny', 1943, 'M', 292), +(54623, 'Murray', 1943, 'M', 291), +(54624, 'Austin', 1943, 'M', 289), +(54625, 'Cleveland', 1943, 'M', 289), +(54626, 'Elwood', 1943, 'M', 287), +(54627, 'Sanford', 1943, 'M', 285), +(54628, 'Lionel', 1943, 'M', 284), +(54629, 'Marcus', 1943, 'M', 282), +(54630, 'Ned', 1943, 'M', 282), +(54631, 'Dominick', 1943, 'M', 281), +(54632, 'Amos', 1943, 'M', 279), +(54633, 'Kelly', 1943, 'M', 274), +(54634, 'Gerry', 1943, 'M', 273), +(54635, 'Guadalupe', 1943, 'M', 273), +(54636, 'Norbert', 1943, 'M', 271), +(54637, 'Alfonso', 1943, 'M', 269), +(54638, 'Dominic', 1943, 'M', 268), +(54639, 'Merlin', 1943, 'M', 266), +(54640, 'Cornelius', 1943, 'M', 265), +(54641, 'Terence', 1943, 'M', 264), +(54642, 'Alonzo', 1943, 'M', 262), +(54643, 'Emil', 1943, 'M', 262), +(54644, 'Cary', 1943, 'M', 260), +(54645, 'Lorenzo', 1943, 'M', 260), +(54646, 'Elton', 1943, 'M', 256), +(54647, 'Van', 1943, 'M', 255), +(54648, 'Mary', 1943, 'M', 254), +(54649, 'Adam', 1943, 'M', 252), +(54650, 'Jasper', 1943, 'M', 252), +(54651, 'August', 1943, 'M', 249), +(54652, 'Simon', 1943, 'M', 249), +(54653, 'Frederic', 1943, 'M', 246), +(54654, 'Doug', 1943, 'M', 243), +(54655, 'Armando', 1943, 'M', 242), +(54656, 'Merrill', 1943, 'M', 242), +(54657, 'Roscoe', 1943, 'M', 242), +(54658, 'Lamar', 1943, 'M', 241), +(54659, 'Hector', 1943, 'M', 240), +(54660, 'Mac', 1943, 'M', 239), +(54661, 'Norris', 1943, 'M', 239), +(54662, 'Rene', 1943, 'M', 238), +(54663, 'Rick', 1943, 'M', 237), +(54664, 'Robin', 1943, 'M', 237), +(54665, 'Maynard', 1943, 'M', 236), +(54666, 'Elliott', 1943, 'M', 235), +(54667, 'Millard', 1943, 'M', 235), +(54668, 'Arturo', 1943, 'M', 233), +(54669, 'Harrison', 1943, 'M', 233), +(54670, 'Carol', 1943, 'M', 231), +(54671, 'Linwood', 1943, 'M', 230), +(54672, 'Carmen', 1943, 'M', 229), +(54673, 'Alfredo', 1943, 'M', 226), +(54674, 'Ernie', 1943, 'M', 225), +(54675, 'Marc', 1943, 'M', 225), +(54676, 'Wiley', 1943, 'M', 225), +(54677, 'Weldon', 1943, 'M', 224), +(54678, 'Adrian', 1943, 'M', 222), +(54679, 'Roderick', 1943, 'M', 222), +(54680, 'Odell', 1943, 'M', 221), +(54681, 'Barney', 1943, 'M', 220), +(54682, 'Elijah', 1943, 'M', 220), +(54683, 'Elvin', 1943, 'M', 219), +(54684, 'Johnie', 1943, 'M', 219), +(54685, 'Fredric', 1943, 'M', 218), +(54686, 'Sterling', 1943, 'M', 217), +(54687, 'Miguel', 1943, 'M', 215), +(54688, 'Delmar', 1943, 'M', 214), +(54689, 'Truman', 1943, 'M', 213), +(54690, 'Erwin', 1943, 'M', 212), +(54691, 'Gail', 1943, 'M', 212), +(54692, 'Laverne', 1943, 'M', 212), +(54693, 'Kerry', 1943, 'M', 211), +(54694, 'Ricardo', 1943, 'M', 211), +(54695, 'Kirk', 1943, 'M', 209), +(54696, 'Charley', 1943, 'M', 208), +(54697, 'Hal', 1943, 'M', 208), +(54698, 'Jerold', 1943, 'M', 208), +(54699, 'Hollis', 1943, 'M', 207), +(54700, 'Monroe', 1943, 'M', 206), +(54701, 'Nolan', 1943, 'M', 206), +(54702, 'Jackson', 1943, 'M', 205), +(54703, 'Salvador', 1943, 'M', 205), +(54704, 'Will', 1943, 'M', 205), +(54705, 'Galen', 1943, 'M', 204), +(54706, 'Vaughn', 1943, 'M', 203), +(54707, 'Al', 1943, 'M', 201), +(54708, 'Coy', 1943, 'M', 201), +(54709, 'Errol', 1943, 'M', 201), +(54710, 'Ollie', 1943, 'M', 201), +(54711, 'Reuben', 1943, 'M', 201), +(54712, 'Shelby', 1943, 'M', 200), +(54713, 'Abraham', 1943, 'M', 199), +(54714, 'Buford', 1943, 'M', 199), +(54715, 'Gabriel', 1943, 'M', 199), +(54716, 'Dwayne', 1943, 'M', 196), +(54717, 'Otto', 1943, 'M', 194), +(54718, 'Emanuel', 1943, 'M', 192), +(54719, 'Monty', 1943, 'M', 191), +(54720, 'Dannie', 1943, 'M', 190), +(54721, 'Jess', 1943, 'M', 190), +(54722, 'Wilmer', 1943, 'M', 189), +(54723, 'Emory', 1943, 'M', 188), +(54724, 'Chuck', 1943, 'M', 187), +(54725, 'Irwin', 1943, 'M', 187), +(54726, 'Dana', 1943, 'M', 186), +(54727, 'Dudley', 1943, 'M', 186), +(54728, 'Shirley', 1943, 'M', 186), +(54729, 'Ricky', 1943, 'M', 182), +(54730, 'Levi', 1943, 'M', 177), +(54731, 'Melvyn', 1943, 'M', 177), +(54732, 'Ward', 1943, 'M', 177), +(54733, 'Armand', 1943, 'M', 173), +(54734, 'Bradford', 1943, 'M', 173), +(54735, 'Mcarthur', 1943, 'M', 173), +(54736, 'Monte', 1943, 'M', 173), +(54737, 'Russel', 1943, 'M', 172), +(54738, 'Riley', 1943, 'M', 171), +(54739, 'Rodolfo', 1943, 'M', 171), +(54740, 'Clement', 1943, 'M', 170), +(54741, 'Jerrold', 1943, 'M', 170), +(54742, 'Booker', 1943, 'M', 168); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(54743, 'Vance', 1943, 'M', 166), +(54744, 'Clair', 1943, 'M', 165), +(54745, 'Blaine', 1943, 'M', 163), +(54746, 'Dewayne', 1943, 'M', 163), +(54747, 'Fernando', 1943, 'M', 163), +(54748, 'Jean', 1943, 'M', 163), +(54749, 'Gus', 1943, 'M', 162), +(54750, 'Todd', 1943, 'M', 161), +(54751, 'Dexter', 1943, 'M', 160), +(54752, 'Enrique', 1943, 'M', 160), +(54753, 'Harris', 1943, 'M', 160), +(54754, 'Freeman', 1943, 'M', 159), +(54755, 'Jake', 1943, 'M', 159), +(54756, 'Mervin', 1943, 'M', 159), +(54757, 'Earle', 1943, 'M', 158), +(54758, 'Tomas', 1943, 'M', 157), +(54759, 'Reynaldo', 1943, 'M', 156), +(54760, 'Dickie', 1943, 'M', 155), +(54761, 'Domingo', 1943, 'M', 155), +(54762, 'Noah', 1943, 'M', 155), +(54763, 'Ulysses', 1943, 'M', 155), +(54764, 'Miles', 1943, 'M', 154), +(54765, 'Connie', 1943, 'M', 153), +(54766, 'Solomon', 1943, 'M', 153), +(54767, 'Carrol', 1943, 'M', 152), +(54768, 'Rocco', 1943, 'M', 152), +(54769, 'Vern', 1943, 'M', 152), +(54770, 'Barbara', 1943, 'M', 150), +(54771, 'Wilburn', 1943, 'M', 149), +(54772, 'Alva', 1943, 'M', 148), +(54773, 'Evan', 1943, 'M', 148), +(54774, 'Lavern', 1943, 'M', 148), +(54775, 'Tracy', 1943, 'M', 148), +(54776, 'Winfred', 1943, 'M', 148), +(54777, 'Alberto', 1943, 'M', 147), +(54778, 'Elliot', 1943, 'M', 147), +(54779, 'Ernesto', 1943, 'M', 146), +(54780, 'Felipe', 1943, 'M', 146), +(54781, 'Greg', 1943, 'M', 146), +(54782, 'Patricia', 1943, 'M', 146), +(54783, 'Barton', 1943, 'M', 145), +(54784, 'Gaylord', 1943, 'M', 145), +(54785, 'Alphonso', 1943, 'M', 144), +(54786, 'Denver', 1943, 'M', 144), +(54787, 'Lupe', 1943, 'M', 144), +(54788, 'Garrett', 1943, 'M', 143), +(54789, 'Sandy', 1943, 'M', 143), +(54790, 'Stan', 1943, 'M', 143), +(54791, 'Stephan', 1943, 'M', 143), +(54792, 'Wilford', 1943, 'M', 143), +(54793, 'Bernie', 1943, 'M', 142), +(54794, 'Eddy', 1943, 'M', 142), +(54795, 'Gilberto', 1943, 'M', 142), +(54796, 'Kennith', 1943, 'M', 142), +(54797, 'Rafael', 1943, 'M', 140), +(54798, 'Kirby', 1943, 'M', 139), +(54799, 'Hershel', 1943, 'M', 138), +(54800, 'Dalton', 1943, 'M', 137), +(54801, 'Jason', 1943, 'M', 137), +(54802, 'Lenard', 1943, 'M', 137), +(54803, 'Linda', 1943, 'M', 137), +(54804, 'Pablo', 1943, 'M', 136), +(54805, 'Silas', 1943, 'M', 136), +(54806, 'Christian', 1943, 'M', 135), +(54807, 'Cleo', 1943, 'M', 133), +(54808, 'Basil', 1943, 'M', 132), +(54809, 'Emery', 1943, 'M', 131), +(54810, 'Gayle', 1943, 'M', 131), +(54811, 'Joey', 1943, 'M', 131), +(54812, 'Milford', 1943, 'M', 131), +(54813, 'Rolland', 1943, 'M', 131), +(54814, 'Andre', 1943, 'M', 130), +(54815, 'Carey', 1943, 'M', 130), +(54816, 'Carmine', 1943, 'M', 130), +(54817, 'Carter', 1943, 'M', 130), +(54818, 'Davis', 1943, 'M', 130), +(54819, 'Everette', 1943, 'M', 130), +(54820, 'Wilton', 1943, 'M', 130), +(54821, 'Anton', 1943, 'M', 129), +(54822, 'Lyman', 1943, 'M', 129), +(54823, 'Adolph', 1943, 'M', 128), +(54824, 'Forest', 1943, 'M', 128), +(54825, 'Thaddeus', 1943, 'M', 128), +(54826, 'Joesph', 1943, 'M', 127), +(54827, 'Kendall', 1943, 'M', 127), +(54828, 'Sonny', 1943, 'M', 127), +(54829, 'Alden', 1943, 'M', 126), +(54830, 'Luke', 1943, 'M', 126), +(54831, 'Major', 1943, 'M', 126), +(54832, 'Clay', 1943, 'M', 125), +(54833, 'Julio', 1943, 'M', 125), +(54834, 'Delmer', 1943, 'M', 123), +(54835, 'Morgan', 1943, 'M', 123), +(54836, 'Carson', 1943, 'M', 122), +(54837, 'Kyle', 1943, 'M', 122), +(54838, 'Pasquale', 1943, 'M', 122), +(54839, 'Roman', 1943, 'M', 122), +(54840, 'Royal', 1943, 'M', 122), +(54841, 'Elmo', 1943, 'M', 121), +(54842, 'Jeremiah', 1943, 'M', 121), +(54843, 'Arden', 1943, 'M', 120), +(54844, 'Art', 1943, 'M', 119), +(54845, 'Foster', 1943, 'M', 119), +(54846, 'Morton', 1943, 'M', 119), +(54847, 'Terrell', 1943, 'M', 119), +(54848, 'Vito', 1943, 'M', 119), +(54849, 'Eli', 1943, 'M', 118), +(54850, 'Ignacio', 1943, 'M', 118), +(54851, 'Angel', 1943, 'M', 117), +(54852, 'Blair', 1943, 'M', 117), +(54853, 'Olen', 1943, 'M', 117), +(54854, 'Gregg', 1943, 'M', 116), +(54855, 'Toby', 1943, 'M', 116), +(54856, 'Cyril', 1943, 'M', 115), +(54857, 'Emerson', 1943, 'M', 115), +(54858, 'Arlie', 1943, 'M', 113), +(54859, 'Jere', 1943, 'M', 113), +(54860, 'Theron', 1943, 'M', 113), +(54861, 'Gearld', 1943, 'M', 112), +(54862, 'Olin', 1943, 'M', 112), +(54863, 'Donny', 1943, 'M', 111), +(54864, 'Isaiah', 1943, 'M', 111), +(54865, 'Reed', 1943, 'M', 111), +(54866, 'Ramiro', 1943, 'M', 110), +(54867, 'Rogers', 1943, 'M', 110), +(54868, 'Andres', 1943, 'M', 109), +(54869, 'Burl', 1943, 'M', 109), +(54870, 'Hiram', 1943, 'M', 109), +(54871, 'Elias', 1943, 'M', 108), +(54872, 'Glynn', 1943, 'M', 108), +(54873, 'Houston', 1943, 'M', 108), +(54874, 'Raleigh', 1943, 'M', 108), +(54875, 'Milo', 1943, 'M', 107), +(54876, 'Duncan', 1943, 'M', 106), +(54877, 'Sherwood', 1943, 'M', 106), +(54878, 'Bart', 1943, 'M', 105), +(54879, 'Isiah', 1943, 'M', 105), +(54880, 'Jacky', 1943, 'M', 105), +(54881, 'Justin', 1943, 'M', 105), +(54882, 'Kim', 1943, 'M', 105), +(54883, 'Lucius', 1943, 'M', 105), +(54884, 'Sandra', 1943, 'M', 105), +(54885, 'Normand', 1943, 'M', 104), +(54886, 'Rickey', 1943, 'M', 104), +(54887, 'Elroy', 1943, 'M', 103), +(54888, 'Herschel', 1943, 'M', 103), +(54889, 'Nicky', 1943, 'M', 103), +(54890, 'Orlando', 1943, 'M', 103), +(54891, 'Rayford', 1943, 'M', 103), +(54892, 'Claud', 1943, 'M', 102), +(54893, 'Fletcher', 1943, 'M', 102), +(54894, 'Harmon', 1943, 'M', 102), +(54895, 'Ivory', 1943, 'M', 102), +(54896, 'Lyndon', 1943, 'M', 102), +(54897, 'Anderson', 1943, 'M', 101), +(54898, 'Bennett', 1943, 'M', 101), +(54899, 'Cletus', 1943, 'M', 101), +(54900, 'Emilio', 1943, 'M', 101), +(54901, 'Odis', 1943, 'M', 101), +(54902, 'Otha', 1943, 'M', 101), +(54903, 'Shelton', 1943, 'M', 101), +(54904, 'Augustus', 1943, 'M', 100), +(54905, 'Santiago', 1943, 'M', 100), +(54906, 'Mary', 1944, 'F', 62463), +(54907, 'Barbara', 1944, 'F', 39188), +(54908, 'Linda', 1944, 'F', 38407), +(54909, 'Patricia', 1944, 'F', 36874), +(54910, 'Carol', 1944, 'F', 30457), +(54911, 'Sandra', 1944, 'F', 26023), +(54912, 'Nancy', 1944, 'F', 23211), +(54913, 'Judith', 1944, 'F', 22433), +(54914, 'Sharon', 1944, 'F', 22428), +(54915, 'Betty', 1944, 'F', 19756), +(54916, 'Carolyn', 1944, 'F', 18671), +(54917, 'Judy', 1944, 'F', 17117), +(54918, 'Susan', 1944, 'F', 16329), +(54919, 'Margaret', 1944, 'F', 16318), +(54920, 'Shirley', 1944, 'F', 16307), +(54921, 'Karen', 1944, 'F', 15943), +(54922, 'Donna', 1944, 'F', 15173), +(54923, 'Joyce', 1944, 'F', 14770), +(54924, 'Dorothy', 1944, 'F', 13378), +(54925, 'Kathleen', 1944, 'F', 13006), +(54926, 'Janet', 1944, 'F', 12590), +(54927, 'Joan', 1944, 'F', 11922), +(54928, 'Elizabeth', 1944, 'F', 11032), +(54929, 'Diane', 1944, 'F', 10711), +(54930, 'Gloria', 1944, 'F', 9964), +(54931, 'Virginia', 1944, 'F', 9892), +(54932, 'Marilyn', 1944, 'F', 9737), +(54933, 'Janice', 1944, 'F', 9730), +(54934, 'Martha', 1944, 'F', 9332), +(54935, 'Brenda', 1944, 'F', 8997), +(54936, 'Helen', 1944, 'F', 8691), +(54937, 'Ruth', 1944, 'F', 8675), +(54938, 'Frances', 1944, 'F', 8484), +(54939, 'Bonnie', 1944, 'F', 8456), +(54940, 'Beverly', 1944, 'F', 8291), +(54941, 'Cheryl', 1944, 'F', 7970), +(54942, 'Jean', 1944, 'F', 7649), +(54943, 'Alice', 1944, 'F', 7103), +(54944, 'Ann', 1944, 'F', 7080), +(54945, 'Phyllis', 1944, 'F', 7024), +(54946, 'Jane', 1944, 'F', 6565), +(54947, 'Doris', 1944, 'F', 6322), +(54948, 'Carole', 1944, 'F', 6269), +(54949, 'Pamela', 1944, 'F', 6203), +(54950, 'Peggy', 1944, 'F', 6017), +(54951, 'Elaine', 1944, 'F', 5628), +(54952, 'Lois', 1944, 'F', 5529), +(54953, 'Marie', 1944, 'F', 5294), +(54954, 'Catherine', 1944, 'F', 5257), +(54955, 'Charlotte', 1944, 'F', 4927), +(54956, 'Connie', 1944, 'F', 4796), +(54957, 'Rose', 1944, 'F', 4708), +(54958, 'Geraldine', 1944, 'F', 4665), +(54959, 'Joanne', 1944, 'F', 4528), +(54960, 'Rita', 1944, 'F', 4528), +(54961, 'Gail', 1944, 'F', 4525), +(54962, 'Evelyn', 1944, 'F', 4514), +(54963, 'Wanda', 1944, 'F', 4430), +(54964, 'Sally', 1944, 'F', 4391), +(54965, 'Diana', 1944, 'F', 4309), +(54966, 'Jo', 1944, 'F', 4226), +(54967, 'Sue', 1944, 'F', 4035), +(54968, 'Ellen', 1944, 'F', 3998), +(54969, 'Jacqueline', 1944, 'F', 3973), +(54970, 'Joann', 1944, 'F', 3973), +(54971, 'Norma', 1944, 'F', 3862), +(54972, 'Sarah', 1944, 'F', 3860), +(54973, 'Kathryn', 1944, 'F', 3855), +(54974, 'Louise', 1944, 'F', 3841), +(54975, 'Roberta', 1944, 'F', 3744), +(54976, 'Annie', 1944, 'F', 3741), +(54977, 'Patsy', 1944, 'F', 3728), +(54978, 'Eileen', 1944, 'F', 3649), +(54979, 'Anna', 1944, 'F', 3635), +(54980, 'Christine', 1944, 'F', 3584), +(54981, 'Darlene', 1944, 'F', 3531), +(54982, 'Katherine', 1944, 'F', 3524), +(54983, 'Suzanne', 1944, 'F', 3462), +(54984, 'Glenda', 1944, 'F', 3366), +(54985, 'Maria', 1944, 'F', 3361), +(54986, 'Mildred', 1944, 'F', 3317), +(54987, 'Paula', 1944, 'F', 3315), +(54988, 'Sylvia', 1944, 'F', 3289), +(54989, 'Rebecca', 1944, 'F', 3247), +(54990, 'Marjorie', 1944, 'F', 3217), +(54991, 'Anne', 1944, 'F', 3211), +(54992, 'Ruby', 1944, 'F', 3190), +(54993, 'Kay', 1944, 'F', 3170), +(54994, 'Marcia', 1944, 'F', 3139), +(54995, 'Dianne', 1944, 'F', 3107), +(54996, 'Irene', 1944, 'F', 3085), +(54997, 'Dolores', 1944, 'F', 3077), +(54998, 'Lorraine', 1944, 'F', 3044), +(54999, 'Juanita', 1944, 'F', 2959), +(55000, 'Anita', 1944, 'F', 2827), +(55001, 'Theresa', 1944, 'F', 2817), +(55002, 'Delores', 1944, 'F', 2756), +(55003, 'Loretta', 1944, 'F', 2746), +(55004, 'Rosemary', 1944, 'F', 2744), +(55005, 'Sherry', 1944, 'F', 2734), +(55006, 'Arlene', 1944, 'F', 2714), +(55007, 'Julia', 1944, 'F', 2687), +(55008, 'Sheila', 1944, 'F', 2664), +(55009, 'Constance', 1944, 'F', 2633), +(55010, 'Cynthia', 1944, 'F', 2572), +(55011, 'Marlene', 1944, 'F', 2566), +(55012, 'Maureen', 1944, 'F', 2536), +(55013, 'Jeanne', 1944, 'F', 2495), +(55014, 'Charlene', 1944, 'F', 2433), +(55015, 'Kathy', 1944, 'F', 2417), +(55016, 'Marsha', 1944, 'F', 2399), +(55017, 'Edna', 1944, 'F', 2395), +(55018, 'Lynda', 1944, 'F', 2369), +(55019, 'Georgia', 1944, 'F', 2360), +(55020, 'Josephine', 1944, 'F', 2325), +(55021, 'Lynn', 1944, 'F', 2260), +(55022, 'Jeanette', 1944, 'F', 2256), +(55023, 'Emma', 1944, 'F', 2247), +(55024, 'Laura', 1944, 'F', 2243), +(55025, 'Claudia', 1944, 'F', 2221), +(55026, 'June', 1944, 'F', 2202), +(55027, 'Eleanor', 1944, 'F', 2190), +(55028, 'Edith', 1944, 'F', 2174), +(55029, 'Wilma', 1944, 'F', 2127), +(55030, 'Pauline', 1944, 'F', 2126), +(55031, 'Lillian', 1944, 'F', 2118), +(55032, 'Ethel', 1944, 'F', 2053), +(55033, 'Andrea', 1944, 'F', 2027), +(55034, 'Vivian', 1944, 'F', 2023), +(55035, 'Margie', 1944, 'F', 2004), +(55036, 'Thelma', 1944, 'F', 1995), +(55037, 'Lucille', 1944, 'F', 1985), +(55038, 'Florence', 1944, 'F', 1977), +(55039, 'Clara', 1944, 'F', 1934), +(55040, 'Grace', 1944, 'F', 1926), +(55041, 'Sara', 1944, 'F', 1904), +(55042, 'Gladys', 1944, 'F', 1900), +(55043, 'Willie', 1944, 'F', 1895), +(55044, 'Victoria', 1944, 'F', 1815), +(55045, 'Marion', 1944, 'F', 1802), +(55046, 'Yvonne', 1944, 'F', 1792), +(55047, 'Billie', 1944, 'F', 1762), +(55048, 'Maryann', 1944, 'F', 1721), +(55049, 'Bobbie', 1944, 'F', 1712), +(55050, 'Rosa', 1944, 'F', 1669), +(55051, 'Annette', 1944, 'F', 1666), +(55052, 'Hazel', 1944, 'F', 1661), +(55053, 'Eva', 1944, 'F', 1660), +(55054, 'Bernice', 1944, 'F', 1659), +(55055, 'Audrey', 1944, 'F', 1644), +(55056, 'Bertha', 1944, 'F', 1628), +(55057, 'Esther', 1944, 'F', 1613), +(55058, 'Maxine', 1944, 'F', 1601), +(55059, 'Pat', 1944, 'F', 1592), +(55060, 'Marian', 1944, 'F', 1587), +(55061, 'Beatrice', 1944, 'F', 1578), +(55062, 'Priscilla', 1944, 'F', 1574), +(55063, 'Ella', 1944, 'F', 1572), +(55064, 'Gwendolyn', 1944, 'F', 1526), +(55065, 'Lillie', 1944, 'F', 1525), +(55066, 'Vicki', 1944, 'F', 1508), +(55067, 'Julie', 1944, 'F', 1480), +(55068, 'Joy', 1944, 'F', 1456), +(55069, 'Paulette', 1944, 'F', 1436), +(55070, 'Faye', 1944, 'F', 1353), +(55071, 'Ida', 1944, 'F', 1335), +(55072, 'Deanna', 1944, 'F', 1304), +(55073, 'Deborah', 1944, 'F', 1293), +(55074, 'Harriet', 1944, 'F', 1262), +(55075, 'Emily', 1944, 'F', 1251), +(55076, 'Jackie', 1944, 'F', 1251), +(55077, 'Rachel', 1944, 'F', 1249), +(55078, 'Gayle', 1944, 'F', 1233), +(55079, 'Lynne', 1944, 'F', 1227), +(55080, 'Minnie', 1944, 'F', 1220), +(55081, 'Alma', 1944, 'F', 1216), +(55082, 'Jessie', 1944, 'F', 1216), +(55083, 'Caroline', 1944, 'F', 1212), +(55084, 'Lucy', 1944, 'F', 1207), +(55085, 'Teresa', 1944, 'F', 1205), +(55086, 'Penny', 1944, 'F', 1204), +(55087, 'Leslie', 1944, 'F', 1202), +(55088, 'Marianne', 1944, 'F', 1196), +(55089, 'Vera', 1944, 'F', 1186), +(55090, 'Mattie', 1944, 'F', 1184), +(55091, 'Janie', 1944, 'F', 1163), +(55092, 'Michele', 1944, 'F', 1157), +(55093, 'Veronica', 1944, 'F', 1137), +(55094, 'Bessie', 1944, 'F', 1121), +(55095, 'Rosalie', 1944, 'F', 1097), +(55096, 'Elsie', 1944, 'F', 1095), +(55097, 'Johnnie', 1944, 'F', 1091), +(55098, 'Rosie', 1944, 'F', 1086), +(55099, 'Jill', 1944, 'F', 1037), +(55100, 'Bernadette', 1944, 'F', 1035), +(55101, 'Rosemarie', 1944, 'F', 1025), +(55102, 'Carrie', 1944, 'F', 1022), +(55103, 'Stella', 1944, 'F', 1017), +(55104, 'Nellie', 1944, 'F', 1010), +(55105, 'Claire', 1944, 'F', 1008), +(55106, 'Nina', 1944, 'F', 1007), +(55107, 'Angela', 1944, 'F', 1006), +(55108, 'Patty', 1944, 'F', 981), +(55109, 'Bonita', 1944, 'F', 979), +(55110, 'Jacquelyn', 1944, 'F', 972), +(55111, 'Agnes', 1944, 'F', 962), +(55112, 'Sheryl', 1944, 'F', 949), +(55113, 'Dixie', 1944, 'F', 945), +(55114, 'Regina', 1944, 'F', 944), +(55115, 'Carmen', 1944, 'F', 942), +(55116, 'Velma', 1944, 'F', 934), +(55117, 'Jeannette', 1944, 'F', 931), +(55118, 'Susie', 1944, 'F', 930), +(55119, 'Dora', 1944, 'F', 923), +(55120, 'Geneva', 1944, 'F', 916), +(55121, 'Terry', 1944, 'F', 914), +(55122, 'Valerie', 1944, 'F', 914), +(55123, 'Madeline', 1944, 'F', 907), +(55124, 'Lana', 1944, 'F', 902), +(55125, 'Stephanie', 1944, 'F', 898), +(55126, 'Leona', 1944, 'F', 895), +(55127, 'Deloris', 1944, 'F', 887), +(55128, 'Naomi', 1944, 'F', 875), +(55129, 'Mae', 1944, 'F', 868), +(55130, 'Nora', 1944, 'F', 843), +(55131, 'Ernestine', 1944, 'F', 834), +(55132, 'Alberta', 1944, 'F', 827), +(55133, 'Lola', 1944, 'F', 825), +(55134, 'Dianna', 1944, 'F', 820), +(55135, 'Sandy', 1944, 'F', 820), +(55136, 'Cora', 1944, 'F', 818), +(55137, 'Gertrude', 1944, 'F', 812), +(55138, 'Lydia', 1944, 'F', 807), +(55139, 'Viola', 1944, 'F', 799), +(55140, 'Toni', 1944, 'F', 763), +(55141, 'Marguerite', 1944, 'F', 762), +(55142, 'Christina', 1944, 'F', 759), +(55143, 'Pearl', 1944, 'F', 757), +(55144, 'Hattie', 1944, 'F', 752), +(55145, 'Beth', 1944, 'F', 750), +(55146, 'Hilda', 1944, 'F', 744), +(55147, 'Daisy', 1944, 'F', 743), +(55148, 'Antoinette', 1944, 'F', 733), +(55149, 'Verna', 1944, 'F', 733), +(55150, 'Janis', 1944, 'F', 729), +(55151, 'Olivia', 1944, 'F', 729), +(55152, 'Lena', 1944, 'F', 725), +(55153, 'Colleen', 1944, 'F', 724), +(55154, 'Carla', 1944, 'F', 722), +(55155, 'Sharron', 1944, 'F', 722), +(55156, 'Lula', 1944, 'F', 720), +(55157, 'Bettie', 1944, 'F', 719), +(55158, 'Myra', 1944, 'F', 719), +(55159, 'Iris', 1944, 'F', 717), +(55160, 'Eunice', 1944, 'F', 716), +(55161, 'Bettye', 1944, 'F', 715), +(55162, 'Miriam', 1944, 'F', 710), +(55163, 'Cecilia', 1944, 'F', 705), +(55164, 'Irma', 1944, 'F', 704), +(55165, 'Saundra', 1944, 'F', 702), +(55166, 'Bette', 1944, 'F', 691), +(55167, 'Jennifer', 1944, 'F', 686), +(55168, 'Myrtle', 1944, 'F', 686), +(55169, 'Cathy', 1944, 'F', 680), +(55170, 'Penelope', 1944, 'F', 678), +(55171, 'Ramona', 1944, 'F', 676), +(55172, 'Betsy', 1944, 'F', 669), +(55173, 'Dawn', 1944, 'F', 654), +(55174, 'Trudy', 1944, 'F', 652), +(55175, 'Jennie', 1944, 'F', 651), +(55176, 'Cecelia', 1944, 'F', 645), +(55177, 'Fannie', 1944, 'F', 643), +(55178, 'Erma', 1944, 'F', 640), +(55179, 'Marcella', 1944, 'F', 639), +(55180, 'Violet', 1944, 'F', 636), +(55181, 'Myrna', 1944, 'F', 635), +(55182, 'Della', 1944, 'F', 634), +(55183, 'Flora', 1944, 'F', 630), +(55184, 'Jan', 1944, 'F', 611), +(55185, 'Lee', 1944, 'F', 599), +(55186, 'Eloise', 1944, 'F', 598), +(55187, 'Renee', 1944, 'F', 596), +(55188, 'Becky', 1944, 'F', 593), +(55189, 'Sondra', 1944, 'F', 590), +(55190, 'Mamie', 1944, 'F', 579), +(55191, 'Vickie', 1944, 'F', 576), +(55192, 'Melba', 1944, 'F', 565), +(55193, 'Katie', 1944, 'F', 564), +(55194, 'Yolanda', 1944, 'F', 561), +(55195, 'Ada', 1944, 'F', 546), +(55196, 'Frankie', 1944, 'F', 544), +(55197, 'Jerry', 1944, 'F', 540), +(55198, 'Francine', 1944, 'F', 531), +(55199, 'Henrietta', 1944, 'F', 521), +(55200, 'Laverne', 1944, 'F', 517), +(55201, 'Maggie', 1944, 'F', 516), +(55202, 'Susanne', 1944, 'F', 513), +(55203, 'Glenna', 1944, 'F', 512), +(55204, 'Sallie', 1944, 'F', 507), +(55205, 'Dana', 1944, 'F', 503), +(55206, 'Guadalupe', 1944, 'F', 499), +(55207, 'Genevieve', 1944, 'F', 490), +(55208, 'Gretchen', 1944, 'F', 490), +(55209, 'Jimmie', 1944, 'F', 484), +(55210, 'Earnestine', 1944, 'F', 483), +(55211, 'Camille', 1944, 'F', 481), +(55212, 'Amelia', 1944, 'F', 475), +(55213, 'Rosetta', 1944, 'F', 475), +(55214, 'Muriel', 1944, 'F', 472), +(55215, 'Eula', 1944, 'F', 471), +(55216, 'Inez', 1944, 'F', 470), +(55217, 'Nadine', 1944, 'F', 470), +(55218, 'Freda', 1944, 'F', 466), +(55219, 'Lou', 1944, 'F', 462), +(55220, 'Beulah', 1944, 'F', 461), +(55221, 'Helene', 1944, 'F', 456), +(55222, 'Joanna', 1944, 'F', 453), +(55223, 'Judi', 1944, 'F', 449), +(55224, 'Amy', 1944, 'F', 447), +(55225, 'Faith', 1944, 'F', 447), +(55226, 'Wendy', 1944, 'F', 447), +(55227, 'Denise', 1944, 'F', 445), +(55228, 'Kaye', 1944, 'F', 443), +(55229, 'Reba', 1944, 'F', 440), +(55230, 'Mable', 1944, 'F', 436), +(55231, 'Claudette', 1944, 'F', 435), +(55232, 'Nelda', 1944, 'F', 435), +(55233, 'Margo', 1944, 'F', 434), +(55234, 'Lupe', 1944, 'F', 433), +(55235, 'Dale', 1944, 'F', 431), +(55236, 'Celia', 1944, 'F', 428), +(55237, 'Jeannie', 1944, 'F', 428), +(55238, 'Alicia', 1944, 'F', 424), +(55239, 'Vicky', 1944, 'F', 421), +(55240, 'Roseann', 1944, 'F', 417), +(55241, 'Polly', 1944, 'F', 416), +(55242, 'Lila', 1944, 'F', 414), +(55243, 'Essie', 1944, 'F', 413), +(55244, 'Sadie', 1944, 'F', 412), +(55245, 'Michelle', 1944, 'F', 406), +(55246, 'Ollie', 1944, 'F', 406), +(55247, 'Sonja', 1944, 'F', 405), +(55248, 'Opal', 1944, 'F', 400), +(55249, 'Gay', 1944, 'F', 396), +(55250, 'Gracie', 1944, 'F', 396), +(55251, 'Ruthie', 1944, 'F', 394), +(55252, 'Melinda', 1944, 'F', 393), +(55253, 'Marilynn', 1944, 'F', 392), +(55254, 'Fay', 1944, 'F', 391), +(55255, 'Lorna', 1944, 'F', 388), +(55256, 'Mabel', 1944, 'F', 386), +(55257, 'Gale', 1944, 'F', 383), +(55258, 'Rochelle', 1944, 'F', 383), +(55259, 'Lenora', 1944, 'F', 382), +(55260, 'Natalie', 1944, 'F', 382), +(55261, 'Dorthy', 1944, 'F', 380), +(55262, 'Doreen', 1944, 'F', 379), +(55263, 'Robin', 1944, 'F', 375), +(55264, 'Patti', 1944, 'F', 373), +(55265, 'Willa', 1944, 'F', 371), +(55266, 'Lorene', 1944, 'F', 370), +(55267, 'Nettie', 1944, 'F', 370), +(55268, 'Etta', 1944, 'F', 369), +(55269, 'Blanche', 1944, 'F', 368), +(55270, 'Beverley', 1944, 'F', 367), +(55271, 'Shelby', 1944, 'F', 367), +(55272, 'Molly', 1944, 'F', 366), +(55273, 'Jewel', 1944, 'F', 364), +(55274, 'Ora', 1944, 'F', 363), +(55275, 'Laurie', 1944, 'F', 361), +(55276, 'Bernadine', 1944, 'F', 359), +(55277, 'Noreen', 1944, 'F', 359), +(55278, 'Tina', 1944, 'F', 359), +(55279, 'Earlene', 1944, 'F', 356), +(55280, 'Dona', 1944, 'F', 354), +(55281, 'Josie', 1944, 'F', 352), +(55282, 'Olga', 1944, 'F', 352), +(55283, 'Laurel', 1944, 'F', 349), +(55284, 'Tommie', 1944, 'F', 348), +(55285, 'Ina', 1944, 'F', 346), +(55286, 'Pearlie', 1944, 'F', 346), +(55287, 'Mona', 1944, 'F', 342), +(55288, 'Monica', 1944, 'F', 342), +(55289, 'Rosalind', 1944, 'F', 337), +(55290, 'Estella', 1944, 'F', 334), +(55291, 'Adele', 1944, 'F', 332), +(55292, 'Adrienne', 1944, 'F', 332), +(55293, 'Diann', 1944, 'F', 330), +(55294, 'Gwen', 1944, 'F', 329), +(55295, 'Meredith', 1944, 'F', 328), +(55296, 'Lela', 1944, 'F', 327), +(55297, 'Edwina', 1944, 'F', 326), +(55298, 'Earline', 1944, 'F', 325), +(55299, 'Pam', 1944, 'F', 325), +(55300, 'Judie', 1944, 'F', 324), +(55301, 'Jayne', 1944, 'F', 319), +(55302, 'Darla', 1944, 'F', 318), +(55303, 'Ginger', 1944, 'F', 317), +(55304, 'Francis', 1944, 'F', 316), +(55305, 'Rena', 1944, 'F', 316), +(55306, 'Marva', 1944, 'F', 315), +(55307, 'Marylou', 1944, 'F', 315), +(55308, 'Janette', 1944, 'F', 314), +(55309, 'Lucinda', 1944, 'F', 313), +(55310, 'Winifred', 1944, 'F', 312), +(55311, 'Eugenia', 1944, 'F', 310), +(55312, 'Harriett', 1944, 'F', 310), +(55313, 'Isabel', 1944, 'F', 309), +(55314, 'Lenore', 1944, 'F', 308), +(55315, 'Melanie', 1944, 'F', 308), +(55316, 'Candace', 1944, 'F', 307), +(55317, 'Estelle', 1944, 'F', 307), +(55318, 'Jewell', 1944, 'F', 306), +(55319, 'Leah', 1944, 'F', 306), +(55320, 'Holly', 1944, 'F', 305), +(55321, 'Sherrie', 1944, 'F', 304), +(55322, 'Dorothea', 1944, 'F', 301), +(55323, 'Ola', 1944, 'F', 299), +(55324, 'Jenny', 1944, 'F', 296), +(55325, 'Maryanne', 1944, 'F', 295), +(55326, 'Kathie', 1944, 'F', 291), +(55327, 'Jeanie', 1944, 'F', 289), +(55328, 'Cathleen', 1944, 'F', 286), +(55329, 'Delia', 1944, 'F', 286), +(55330, 'Robbie', 1944, 'F', 286), +(55331, 'Addie', 1944, 'F', 284), +(55332, 'Fern', 1944, 'F', 281), +(55333, 'Lottie', 1944, 'F', 281), +(55334, 'Ilene', 1944, 'F', 280), +(55335, 'Lavonne', 1944, 'F', 280), +(55336, 'Johanna', 1944, 'F', 278), +(55337, 'Maryellen', 1944, 'F', 276), +(55338, 'Rhoda', 1944, 'F', 276), +(55339, 'Dottie', 1944, 'F', 274), +(55340, 'Eddie', 1944, 'F', 273), +(55341, 'Mavis', 1944, 'F', 273), +(55342, 'Carlene', 1944, 'F', 270), +(55343, 'Sharyn', 1944, 'F', 269), +(55344, 'Freddie', 1944, 'F', 268), +(55345, 'Leola', 1944, 'F', 267), +(55346, 'Jannie', 1944, 'F', 266), +(55347, 'Antonia', 1944, 'F', 265), +(55348, 'Lizzie', 1944, 'F', 265), +(55349, 'Lora', 1944, 'F', 265), +(55350, 'Cassandra', 1944, 'F', 264), +(55351, 'Cindy', 1944, 'F', 264), +(55352, 'Clarice', 1944, 'F', 264), +(55353, 'Sherrill', 1944, 'F', 263), +(55354, 'Lynette', 1944, 'F', 261), +(55355, 'Margarita', 1944, 'F', 260), +(55356, 'Elva', 1944, 'F', 258), +(55357, 'Iva', 1944, 'F', 257), +(55358, 'Jeannine', 1944, 'F', 257), +(55359, 'Katharine', 1944, 'F', 257), +(55360, 'Sybil', 1944, 'F', 256), +(55361, 'Cornelia', 1944, 'F', 255), +(55362, 'Therese', 1944, 'F', 246), +(55363, 'Cherie', 1944, 'F', 245), +(55364, 'Nola', 1944, 'F', 245), +(55365, 'Dolly', 1944, 'F', 243), +(55366, 'Dee', 1944, 'F', 242), +(55367, 'Margery', 1944, 'F', 242), +(55368, 'Terri', 1944, 'F', 242), +(55369, 'Arleen', 1944, 'F', 241), +(55370, 'Delois', 1944, 'F', 241), +(55371, 'Merle', 1944, 'F', 239), +(55372, 'Amanda', 1944, 'F', 238), +(55373, 'James', 1944, 'F', 237), +(55374, 'Corinne', 1944, 'F', 236), +(55375, 'Imogene', 1944, 'F', 234), +(55376, 'Ruthann', 1944, 'F', 230), +(55377, 'Marlys', 1944, 'F', 227), +(55378, 'May', 1944, 'F', 226), +(55379, 'Carolann', 1944, 'F', 225), +(55380, 'Alta', 1944, 'F', 224), +(55381, 'Clare', 1944, 'F', 224), +(55382, 'Dollie', 1944, 'F', 224), +(55383, 'Elena', 1944, 'F', 224), +(55384, 'Mollie', 1944, 'F', 224), +(55385, 'Elvira', 1944, 'F', 222), +(55386, 'Millie', 1944, 'F', 221), +(55387, 'Melva', 1944, 'F', 220), +(55388, 'Rae', 1944, 'F', 220), +(55389, 'Camilla', 1944, 'F', 219), +(55390, 'Debra', 1944, 'F', 219), +(55391, 'Shelia', 1944, 'F', 219), +(55392, 'Hope', 1944, 'F', 218), +(55393, 'Karla', 1944, 'F', 217), +(55394, 'Bennie', 1944, 'F', 216), +(55395, 'Alyce', 1944, 'F', 215), +(55396, 'Rosanne', 1944, 'F', 215), +(55397, 'Karol', 1944, 'F', 214), +(55398, 'Cecile', 1944, 'F', 213), +(55399, 'Rosalyn', 1944, 'F', 213), +(55400, 'Virgie', 1944, 'F', 213), +(55401, 'Cleo', 1944, 'F', 212), +(55402, 'Nita', 1944, 'F', 211), +(55403, 'Consuelo', 1944, 'F', 210), +(55404, 'Corrine', 1944, 'F', 210), +(55405, 'Maryjane', 1944, 'F', 208), +(55406, 'Sherri', 1944, 'F', 208), +(55407, 'Elnora', 1944, 'F', 205), +(55408, 'Jolene', 1944, 'F', 204), +(55409, 'Karin', 1944, 'F', 204), +(55410, 'Roxie', 1944, 'F', 204), +(55411, 'Aurora', 1944, 'F', 203), +(55412, 'Merry', 1944, 'F', 203), +(55413, 'Joe', 1944, 'F', 202), +(55414, 'Marietta', 1944, 'F', 202), +(55415, 'Sonia', 1944, 'F', 202), +(55416, 'Effie', 1944, 'F', 201), +(55417, 'Melody', 1944, 'F', 200), +(55418, 'Jeri', 1944, 'F', 198), +(55419, 'Cherry', 1944, 'F', 197), +(55420, 'Leila', 1944, 'F', 197), +(55421, 'Madelyn', 1944, 'F', 197), +(55422, 'Tanya', 1944, 'F', 196), +(55423, 'Louella', 1944, 'F', 194), +(55424, 'Queen', 1944, 'F', 194), +(55425, 'Lisa', 1944, 'F', 193), +(55426, 'Odessa', 1944, 'F', 193), +(55427, 'Robert', 1944, 'F', 193), +(55428, 'Tamara', 1944, 'F', 193), +(55429, 'Angie', 1944, 'F', 192), +(55430, 'Ladonna', 1944, 'F', 192), +(55431, 'Peggie', 1944, 'F', 191), +(55432, 'Nan', 1944, 'F', 190), +(55433, 'Marla', 1944, 'F', 189), +(55434, 'Dinah', 1944, 'F', 188), +(55435, 'Angelina', 1944, 'F', 187), +(55436, 'Cheri', 1944, 'F', 187), +(55437, 'Karon', 1944, 'F', 187), +(55438, 'Nona', 1944, 'F', 186), +(55439, 'Letha', 1944, 'F', 185), +(55440, 'Winnie', 1944, 'F', 185), +(55441, 'Helena', 1944, 'F', 183), +(55442, 'Gerry', 1944, 'F', 182), +(55443, 'John', 1944, 'F', 180), +(55444, 'Luella', 1944, 'F', 180), +(55445, 'Callie', 1944, 'F', 179), +(55446, 'Ingrid', 1944, 'F', 179), +(55447, 'Melissa', 1944, 'F', 177), +(55448, 'Wilda', 1944, 'F', 177), +(55449, 'Carroll', 1944, 'F', 176), +(55450, 'Cheryle', 1944, 'F', 176), +(55451, 'Nell', 1944, 'F', 176), +(55452, 'Angeline', 1944, 'F', 175), +(55453, 'Arline', 1944, 'F', 175), +(55454, 'Roxanne', 1944, 'F', 175), +(55455, 'Kitty', 1944, 'F', 174), +(55456, 'Carolee', 1944, 'F', 173), +(55457, 'Dian', 1944, 'F', 173), +(55458, 'Georgianna', 1944, 'F', 172), +(55459, 'Ila', 1944, 'F', 172), +(55460, 'Sharlene', 1944, 'F', 172), +(55461, 'Adeline', 1944, 'F', 171), +(55462, 'Bobby', 1944, 'F', 171), +(55463, 'Carrol', 1944, 'F', 170), +(55464, 'Frieda', 1944, 'F', 170), +(55465, 'Georgette', 1944, 'F', 170), +(55466, 'Rosalee', 1944, 'F', 169), +(55467, 'Elouise', 1944, 'F', 168), +(55468, 'Michael', 1944, 'F', 168), +(55469, 'Lucia', 1944, 'F', 167), +(55470, 'Aileen', 1944, 'F', 166), +(55471, 'Hannah', 1944, 'F', 166), +(55472, 'Rhonda', 1944, 'F', 166), +(55473, 'April', 1944, 'F', 165), +(55474, 'Carolynn', 1944, 'F', 165), +(55475, 'Shari', 1944, 'F', 165), +(55476, 'Esperanza', 1944, 'F', 164), +(55477, 'Ronnie', 1944, 'F', 164), +(55478, 'Roslyn', 1944, 'F', 164), +(55479, 'Lilly', 1944, 'F', 163), +(55480, 'Neva', 1944, 'F', 163), +(55481, 'Elinor', 1944, 'F', 162), +(55482, 'Elma', 1944, 'F', 162), +(55483, 'Goldie', 1944, 'F', 162), +(55484, 'Loraine', 1944, 'F', 162), +(55485, 'Nikki', 1944, 'F', 162), +(55486, 'Jerilyn', 1944, 'F', 160), +(55487, 'Darleen', 1944, 'F', 158), +(55488, 'Kristine', 1944, 'F', 158), +(55489, 'Sharen', 1944, 'F', 158), +(55490, 'Doretha', 1944, 'F', 157), +(55491, 'Laraine', 1944, 'F', 157), +(55492, 'Sheri', 1944, 'F', 157), +(55493, 'Ester', 1944, 'F', 156), +(55494, 'Minerva', 1944, 'F', 156), +(55495, 'Sammie', 1944, 'F', 156), +(55496, 'Marilee', 1944, 'F', 155), +(55497, 'Charleen', 1944, 'F', 154), +(55498, 'Lily', 1944, 'F', 154), +(55499, 'Nannie', 1944, 'F', 154), +(55500, 'Retha', 1944, 'F', 154), +(55501, 'Madonna', 1944, 'F', 153), +(55502, 'Marta', 1944, 'F', 152), +(55503, 'Zelma', 1944, 'F', 151), +(55504, 'Elisabeth', 1944, 'F', 150), +(55505, 'Kerry', 1944, 'F', 150), +(55506, 'Sonya', 1944, 'F', 150), +(55507, 'Reta', 1944, 'F', 149), +(55508, 'Freida', 1944, 'F', 148), +(55509, 'Isabelle', 1944, 'F', 148), +(55510, 'Rosella', 1944, 'F', 148), +(55511, 'Celeste', 1944, 'F', 147), +(55512, 'Dorinda', 1944, 'F', 147), +(55513, 'Lorena', 1944, 'F', 147), +(55514, 'Reva', 1944, 'F', 147), +(55515, 'Celestine', 1944, 'F', 146), +(55516, 'Sydney', 1944, 'F', 146), +(55517, 'Suzan', 1944, 'F', 145), +(55518, 'Jerri', 1944, 'F', 144), +(55519, 'Pattie', 1944, 'F', 143), +(55520, 'Charles', 1944, 'F', 142), +(55521, 'Carmela', 1944, 'F', 141), +(55522, 'Flossie', 1944, 'F', 141), +(55523, 'Jerrie', 1944, 'F', 141), +(55524, 'Roseanne', 1944, 'F', 141), +(55525, 'Ophelia', 1944, 'F', 140), +(55526, 'Theodora', 1944, 'F', 140), +(55527, 'Claudine', 1944, 'F', 139), +(55528, 'Julianne', 1944, 'F', 139), +(55529, 'Madeleine', 1944, 'F', 138), +(55530, 'Cathie', 1944, 'F', 136), +(55531, 'Corine', 1944, 'F', 136), +(55532, 'Crystal', 1944, 'F', 136), +(55533, 'Deanne', 1944, 'F', 136), +(55534, 'William', 1944, 'F', 136), +(55535, 'Leta', 1944, 'F', 135), +(55536, 'Annabelle', 1944, 'F', 134), +(55537, 'Elise', 1944, 'F', 134), +(55538, 'Eliza', 1944, 'F', 134), +(55539, 'Lelia', 1944, 'F', 134), +(55540, 'Carmella', 1944, 'F', 133), +(55541, 'Florine', 1944, 'F', 133), +(55542, 'Karolyn', 1944, 'F', 133), +(55543, 'Alfreda', 1944, 'F', 132), +(55544, 'Charlie', 1944, 'F', 132), +(55545, 'Debbie', 1944, 'F', 132), +(55546, 'Evangeline', 1944, 'F', 132), +(55547, 'Jeanine', 1944, 'F', 132), +(55548, 'Shelley', 1944, 'F', 132), +(55549, 'Gaye', 1944, 'F', 131), +(55550, 'Heather', 1944, 'F', 131), +(55551, 'Jana', 1944, 'F', 131), +(55552, 'Lucile', 1944, 'F', 131), +(55553, 'Georgie', 1944, 'F', 130), +(55554, 'Katheryn', 1944, 'F', 130), +(55555, 'Ronda', 1944, 'F', 130), +(55556, 'Aline', 1944, 'F', 129), +(55557, 'Donnie', 1944, 'F', 129), +(55558, 'Janelle', 1944, 'F', 129), +(55559, 'Lesley', 1944, 'F', 129), +(55560, 'Avis', 1944, 'F', 128), +(55561, 'George', 1944, 'F', 128), +(55562, 'Selma', 1944, 'F', 128), +(55563, 'Lona', 1944, 'F', 127), +(55564, 'Annetta', 1944, 'F', 126), +(55565, 'Georgene', 1944, 'F', 125), +(55566, 'Twila', 1944, 'F', 125), +(55567, 'Alexis', 1944, 'F', 124), +(55568, 'Carolina', 1944, 'F', 124), +(55569, 'Gearldine', 1944, 'F', 124), +(55570, 'Jessica', 1944, 'F', 124), +(55571, 'Lyn', 1944, 'F', 124), +(55572, 'Mercedes', 1944, 'F', 124), +(55573, 'Caryl', 1944, 'F', 123), +(55574, 'Hester', 1944, 'F', 123), +(55575, 'Louisa', 1944, 'F', 123), +(55576, 'Nedra', 1944, 'F', 123), +(55577, 'Treva', 1944, 'F', 123), +(55578, 'Vernell', 1944, 'F', 123), +(55579, 'Cathryn', 1944, 'F', 122), +(55580, 'Concetta', 1944, 'F', 122), +(55581, 'Jamie', 1944, 'F', 122), +(55582, 'Susanna', 1944, 'F', 122), +(55583, 'Malinda', 1944, 'F', 121), +(55584, 'Matilda', 1944, 'F', 121), +(55585, 'Shannon', 1944, 'F', 121), +(55586, 'Teri', 1944, 'F', 121), +(55587, 'Alexandra', 1944, 'F', 120), +(55588, 'Charla', 1944, 'F', 120), +(55589, 'Elsa', 1944, 'F', 120), +(55590, 'Lonnie', 1944, 'F', 120), +(55591, 'Jonnie', 1944, 'F', 119), +(55592, 'Lucretia', 1944, 'F', 119), +(55593, 'Charline', 1944, 'F', 118), +(55594, 'Yvette', 1944, 'F', 118), +(55595, 'Jacklyn', 1944, 'F', 117), +(55596, 'Mickey', 1944, 'F', 117), +(55597, 'Nanette', 1944, 'F', 117), +(55598, 'Tana', 1944, 'F', 117), +(55599, 'Toby', 1944, 'F', 117), +(55600, 'Annmarie', 1944, 'F', 116), +(55601, 'Bonny', 1944, 'F', 116), +(55602, 'Dorene', 1944, 'F', 116), +(55603, 'Justine', 1944, 'F', 116), +(55604, 'Terrie', 1944, 'F', 116), +(55605, 'Elida', 1944, 'F', 115), +(55606, 'Lorine', 1944, 'F', 115), +(55607, 'Ana', 1944, 'F', 114), +(55608, 'Ardis', 1944, 'F', 114), +(55609, 'Ofelia', 1944, 'F', 114), +(55610, 'Daphne', 1944, 'F', 113), +(55611, 'Fran', 1944, 'F', 113), +(55612, 'Lessie', 1944, 'F', 113), +(55613, 'Libby', 1944, 'F', 113), +(55614, 'Suellen', 1944, 'F', 113), +(55615, 'Beryl', 1944, 'F', 112), +(55616, 'Dena', 1944, 'F', 112), +(55617, 'Eve', 1944, 'F', 112), +(55618, 'Harriette', 1944, 'F', 112), +(55619, 'Phoebe', 1944, 'F', 112), +(55620, 'Althea', 1944, 'F', 111), +(55621, 'Jeraldine', 1944, 'F', 111), +(55622, 'Zelda', 1944, 'F', 111), +(55623, 'Bertie', 1944, 'F', 110), +(55624, 'Marianna', 1944, 'F', 110), +(55625, 'Marlyn', 1944, 'F', 110), +(55626, 'Olive', 1944, 'F', 110), +(55627, 'Patrica', 1944, 'F', 110), +(55628, 'Pearline', 1944, 'F', 110), +(55629, 'Prudence', 1944, 'F', 110), +(55630, 'Felicia', 1944, 'F', 109), +(55631, 'Sherron', 1944, 'F', 109), +(55632, 'Elisa', 1944, 'F', 108), +(55633, 'Gussie', 1944, 'F', 108), +(55634, 'Kristin', 1944, 'F', 108), +(55635, 'Margarett', 1944, 'F', 108), +(55636, 'Oralia', 1944, 'F', 108), +(55637, 'Ardith', 1944, 'F', 107), +(55638, 'Gene', 1944, 'F', 107), +(55639, 'Glynda', 1944, 'F', 107), +(55640, 'Lynnette', 1944, 'F', 107), +(55641, 'Manuela', 1944, 'F', 107), +(55642, 'Margot', 1944, 'F', 107), +(55643, 'Mariann', 1944, 'F', 107), +(55644, 'Charmaine', 1944, 'F', 106), +(55645, 'Chris', 1944, 'F', 106), +(55646, 'Angelita', 1944, 'F', 105), +(55647, 'Colette', 1944, 'F', 105), +(55648, 'Georgiana', 1944, 'F', 105), +(55649, 'Josefina', 1944, 'F', 105), +(55650, 'Norene', 1944, 'F', 105), +(55651, 'Vonda', 1944, 'F', 105), +(55652, 'Alana', 1944, 'F', 104), +(55653, 'Madge', 1944, 'F', 104), +(55654, 'Portia', 1944, 'F', 104), +(55655, 'Sandi', 1944, 'F', 104), +(55656, 'Sherryl', 1944, 'F', 104), +(55657, 'Sophia', 1944, 'F', 104), +(55658, 'Alene', 1944, 'F', 103), +(55659, 'Allie', 1944, 'F', 103), +(55660, 'Caren', 1944, 'F', 103), +(55661, 'Petra', 1944, 'F', 103), +(55662, 'Sophie', 1944, 'F', 103), +(55663, 'Sheron', 1944, 'F', 102), +(55664, 'Marjory', 1944, 'F', 101), +(55665, 'Martina', 1944, 'F', 101), +(55666, 'Maude', 1944, 'F', 101), +(55667, 'Adela', 1944, 'F', 100), +(55668, 'David', 1944, 'F', 100), +(55669, 'Delphine', 1944, 'F', 100), +(55670, 'Heidi', 1944, 'F', 100), +(55671, 'Leanne', 1944, 'F', 100), +(55672, 'Nanci', 1944, 'F', 100), +(55673, 'Thomas', 1944, 'F', 100), +(55674, 'James', 1944, 'M', 76944), +(55675, 'Robert', 1944, 'M', 70843), +(55676, 'John', 1944, 'M', 66610), +(55677, 'William', 1944, 'M', 52350), +(55678, 'Richard', 1944, 'M', 45632), +(55679, 'David', 1944, 'M', 37374), +(55680, 'Charles', 1944, 'M', 34644), +(55681, 'Thomas', 1944, 'M', 31595), +(55682, 'Michael', 1944, 'M', 26732), +(55683, 'Ronald', 1944, 'M', 25509), +(55684, 'Donald', 1944, 'M', 23457), +(55685, 'Larry', 1944, 'M', 22023), +(55686, 'Joseph', 1944, 'M', 21169), +(55687, 'George', 1944, 'M', 20421), +(55688, 'Gary', 1944, 'M', 20052), +(55689, 'Kenneth', 1944, 'M', 18087), +(55690, 'Paul', 1944, 'M', 16654), +(55691, 'Edward', 1944, 'M', 16473), +(55692, 'Jerry', 1944, 'M', 16278), +(55693, 'Dennis', 1944, 'M', 13675), +(55694, 'Frank', 1944, 'M', 11339), +(55695, 'Raymond', 1944, 'M', 10626), +(55696, 'Roger', 1944, 'M', 10576), +(55697, 'Gerald', 1944, 'M', 10022), +(55698, 'Daniel', 1944, 'M', 9315), +(55699, 'Walter', 1944, 'M', 8161), +(55700, 'Harold', 1944, 'M', 7979), +(55701, 'Stephen', 1944, 'M', 7793), +(55702, 'Jack', 1944, 'M', 7254), +(55703, 'Arthur', 1944, 'M', 7252), +(55704, 'Willie', 1944, 'M', 7184), +(55705, 'Lawrence', 1944, 'M', 7126), +(55706, 'Joe', 1944, 'M', 7056), +(55707, 'Douglas', 1944, 'M', 6995), +(55708, 'Henry', 1944, 'M', 6971), +(55709, 'Carl', 1944, 'M', 6819), +(55710, 'Wayne', 1944, 'M', 6720), +(55711, 'Billy', 1944, 'M', 6535), +(55712, 'Roy', 1944, 'M', 6529), +(55713, 'Peter', 1944, 'M', 6340), +(55714, 'Jimmy', 1944, 'M', 6322), +(55715, 'Ralph', 1944, 'M', 6270), +(55716, 'Terry', 1944, 'M', 5975), +(55717, 'Albert', 1944, 'M', 5852), +(55718, 'Johnny', 1944, 'M', 5661), +(55719, 'Anthony', 1944, 'M', 5603), +(55720, 'Fred', 1944, 'M', 5576), +(55721, 'Eugene', 1944, 'M', 5503), +(55722, 'Harry', 1944, 'M', 5477), +(55723, 'Bobby', 1944, 'M', 5410), +(55724, 'Bruce', 1944, 'M', 5259), +(55725, 'Steven', 1944, 'M', 5111), +(55726, 'Howard', 1944, 'M', 5022), +(55727, 'Louis', 1944, 'M', 4677), +(55728, 'Alan', 1944, 'M', 4276), +(55729, 'Leonard', 1944, 'M', 4187), +(55730, 'Stanley', 1944, 'M', 4122), +(55731, 'Norman', 1944, 'M', 4068), +(55732, 'Ernest', 1944, 'M', 4042), +(55733, 'Philip', 1944, 'M', 3995), +(55734, 'Dale', 1944, 'M', 3986), +(55735, 'Samuel', 1944, 'M', 3949), +(55736, 'Russell', 1944, 'M', 3928), +(55737, 'Patrick', 1944, 'M', 3882), +(55738, 'Earl', 1944, 'M', 3875), +(55739, 'Bill', 1944, 'M', 3815), +(55740, 'Jim', 1944, 'M', 3747), +(55741, 'Melvin', 1944, 'M', 3745), +(55742, 'Ronnie', 1944, 'M', 3739), +(55743, 'Tommy', 1944, 'M', 3693), +(55744, 'Francis', 1944, 'M', 3648), +(55745, 'Don', 1944, 'M', 3585), +(55746, 'Frederick', 1944, 'M', 3582), +(55747, 'Clarence', 1944, 'M', 3579), +(55748, 'Marvin', 1944, 'M', 3567), +(55749, 'Danny', 1944, 'M', 3513), +(55750, 'Allen', 1944, 'M', 3419), +(55751, 'Leroy', 1944, 'M', 3406), +(55752, 'Eddie', 1944, 'M', 3313), +(55753, 'Mike', 1944, 'M', 3084), +(55754, 'Andrew', 1944, 'M', 3053), +(55755, 'Alfred', 1944, 'M', 3048), +(55756, 'Phillip', 1944, 'M', 3001), +(55757, 'Barry', 1944, 'M', 2982), +(55758, 'Lee', 1944, 'M', 2932), +(55759, 'Ray', 1944, 'M', 2903), +(55760, 'Tom', 1944, 'M', 2901), +(55761, 'Glenn', 1944, 'M', 2849), +(55762, 'Steve', 1944, 'M', 2835), +(55763, 'Herbert', 1944, 'M', 2773), +(55764, 'Martin', 1944, 'M', 2768), +(55765, 'Timothy', 1944, 'M', 2751), +(55766, 'Mark', 1944, 'M', 2742), +(55767, 'Bernard', 1944, 'M', 2618), +(55768, 'Gene', 1944, 'M', 2601), +(55769, 'Theodore', 1944, 'M', 2573), +(55770, 'Curtis', 1944, 'M', 2464), +(55771, 'Jimmie', 1944, 'M', 2400), +(55772, 'Clifford', 1944, 'M', 2396), +(55773, 'Warren', 1944, 'M', 2346), +(55774, 'Jeffrey', 1944, 'M', 2328), +(55775, 'Lloyd', 1944, 'M', 2309), +(55776, 'Jesse', 1944, 'M', 2308), +(55777, 'Keith', 1944, 'M', 2291), +(55778, 'Gordon', 1944, 'M', 2271), +(55779, 'Edwin', 1944, 'M', 2237), +(55780, 'Victor', 1944, 'M', 2164), +(55781, 'Leon', 1944, 'M', 2154), +(55782, 'Bob', 1944, 'M', 2133), +(55783, 'Floyd', 1944, 'M', 2095), +(55784, 'Clyde', 1944, 'M', 2079), +(55785, 'Lewis', 1944, 'M', 2042), +(55786, 'Vincent', 1944, 'M', 2030), +(55787, 'Leslie', 1944, 'M', 1971), +(55788, 'Alvin', 1944, 'M', 1961), +(55789, 'Jerome', 1944, 'M', 1954), +(55790, 'Brian', 1944, 'M', 1953), +(55791, 'Harvey', 1944, 'M', 1950), +(55792, 'Vernon', 1944, 'M', 1925), +(55793, 'Charlie', 1944, 'M', 1879), +(55794, 'Franklin', 1944, 'M', 1816), +(55795, 'Jon', 1944, 'M', 1813), +(55796, 'Rodney', 1944, 'M', 1783), +(55797, 'Calvin', 1944, 'M', 1750), +(55798, 'Joel', 1944, 'M', 1714), +(55799, 'Lester', 1944, 'M', 1648), +(55800, 'Gilbert', 1944, 'M', 1646), +(55801, 'Jackie', 1944, 'M', 1640), +(55802, 'Herman', 1944, 'M', 1637), +(55803, 'Benjamin', 1944, 'M', 1621), +(55804, 'Johnnie', 1944, 'M', 1616), +(55805, 'Leo', 1944, 'M', 1593), +(55806, 'Darrell', 1944, 'M', 1579), +(55807, 'Dean', 1944, 'M', 1574), +(55808, 'Duane', 1944, 'M', 1562), +(55809, 'Jay', 1944, 'M', 1554), +(55810, 'Chester', 1944, 'M', 1521), +(55811, 'Freddie', 1944, 'M', 1516), +(55812, 'Jose', 1944, 'M', 1513), +(55813, 'Allan', 1944, 'M', 1502), +(55814, 'Dwight', 1944, 'M', 1501), +(55815, 'Cecil', 1944, 'M', 1497), +(55816, 'Tony', 1944, 'M', 1492), +(55817, 'Dan', 1944, 'M', 1490), +(55818, 'Arnold', 1944, 'M', 1461), +(55819, 'Milton', 1944, 'M', 1457), +(55820, 'Glen', 1944, 'M', 1452), +(55821, 'Lonnie', 1944, 'M', 1433), +(55822, 'Manuel', 1944, 'M', 1400), +(55823, 'Nicholas', 1944, 'M', 1362), +(55824, 'Craig', 1944, 'M', 1321), +(55825, 'Gregory', 1944, 'M', 1307), +(55826, 'Claude', 1944, 'M', 1289), +(55827, 'Lynn', 1944, 'M', 1288), +(55828, 'Roland', 1944, 'M', 1268), +(55829, 'Randall', 1944, 'M', 1242), +(55830, 'Sam', 1944, 'M', 1214), +(55831, 'Eric', 1944, 'M', 1194), +(55832, 'Wesley', 1944, 'M', 1169), +(55833, 'Ted', 1944, 'M', 1166), +(55834, 'Neil', 1944, 'M', 1140), +(55835, 'Wallace', 1944, 'M', 1131), +(55836, 'Dave', 1944, 'M', 1127), +(55837, 'Elmer', 1944, 'M', 1068), +(55838, 'Hugh', 1944, 'M', 1062), +(55839, 'Willard', 1944, 'M', 1038), +(55840, 'Jessie', 1944, 'M', 1031), +(55841, 'Maurice', 1944, 'M', 1023), +(55842, 'Marshall', 1944, 'M', 1007), +(55843, 'Christopher', 1944, 'M', 1003), +(55844, 'Donnie', 1944, 'M', 983), +(55845, 'Edgar', 1944, 'M', 974), +(55846, 'Sammy', 1944, 'M', 973), +(55847, 'Everett', 1944, 'M', 963), +(55848, 'Marion', 1944, 'M', 955), +(55849, 'Garry', 1944, 'M', 929), +(55850, 'Virgil', 1944, 'M', 928), +(55851, 'Oscar', 1944, 'M', 911), +(55852, 'Sidney', 1944, 'M', 901), +(55853, 'Juan', 1944, 'M', 899), +(55854, 'Benny', 1944, 'M', 895), +(55855, 'Earnest', 1944, 'M', 895), +(55856, 'Alexander', 1944, 'M', 865), +(55857, 'Nathaniel', 1944, 'M', 863), +(55858, 'Luther', 1944, 'M', 854), +(55859, 'Karl', 1944, 'M', 837), +(55860, 'Morris', 1944, 'M', 828), +(55861, 'Bennie', 1944, 'M', 820), +(55862, 'Lyle', 1944, 'M', 812), +(55863, 'Dick', 1944, 'M', 809), +(55864, 'Randy', 1944, 'M', 805), +(55865, 'Stuart', 1944, 'M', 794), +(55866, 'Guy', 1944, 'M', 781), +(55867, 'Max', 1944, 'M', 779), +(55868, 'Clifton', 1944, 'M', 765), +(55869, 'Matthew', 1944, 'M', 765), +(55870, 'Hubert', 1944, 'M', 758), +(55871, 'Otis', 1944, 'M', 758), +(55872, 'Ben', 1944, 'M', 754), +(55873, 'Delbert', 1944, 'M', 745), +(55874, 'Kent', 1944, 'M', 741), +(55875, 'Homer', 1944, 'M', 740), +(55876, 'Fredrick', 1944, 'M', 736), +(55877, 'Micheal', 1944, 'M', 733), +(55878, 'Lowell', 1944, 'M', 720), +(55879, 'Gerard', 1944, 'M', 719), +(55880, 'Nelson', 1944, 'M', 713), +(55881, 'Carroll', 1944, 'M', 706), +(55882, 'Wendell', 1944, 'M', 696), +(55883, 'Clinton', 1944, 'M', 690), +(55884, 'Carlos', 1944, 'M', 689), +(55885, 'Clayton', 1944, 'M', 658), +(55886, 'Dewey', 1944, 'M', 653), +(55887, 'Pete', 1944, 'M', 648), +(55888, 'Horace', 1944, 'M', 646), +(55889, 'Alton', 1944, 'M', 640), +(55890, 'Jonathan', 1944, 'M', 640), +(55891, 'Troy', 1944, 'M', 631), +(55892, 'Archie', 1944, 'M', 621), +(55893, 'Willis', 1944, 'M', 621), +(55894, 'Alex', 1944, 'M', 619), +(55895, 'Mack', 1944, 'M', 615), +(55896, 'Terrence', 1944, 'M', 614), +(55897, 'Ira', 1944, 'M', 612), +(55898, 'Loren', 1944, 'M', 612), +(55899, 'Scott', 1944, 'M', 611), +(55900, 'Randolph', 1944, 'M', 607), +(55901, 'Tim', 1944, 'M', 606), +(55902, 'Perry', 1944, 'M', 605), +(55903, 'Leland', 1944, 'M', 596), +(55904, 'Kevin', 1944, 'M', 594), +(55905, 'Wilbur', 1944, 'M', 586), +(55906, 'Laurence', 1944, 'M', 581), +(55907, 'Rudolph', 1944, 'M', 574), +(55908, 'Rex', 1944, 'M', 573), +(55909, 'Neal', 1944, 'M', 571), +(55910, 'Reginald', 1944, 'M', 567), +(55911, 'Roosevelt', 1944, 'M', 567), +(55912, 'Oliver', 1944, 'M', 565), +(55913, 'Ross', 1944, 'M', 564), +(55914, 'Tommie', 1944, 'M', 561), +(55915, 'Jesus', 1944, 'M', 560), +(55916, 'Edmund', 1944, 'M', 555), +(55917, 'Rudy', 1944, 'M', 552), +(55918, 'Malcolm', 1944, 'M', 549), +(55919, 'Jerald', 1944, 'M', 547), +(55920, 'Jan', 1944, 'M', 544), +(55921, 'Myron', 1944, 'M', 542), +(55922, 'Julius', 1944, 'M', 540), +(55923, 'Sylvester', 1944, 'M', 535), +(55924, 'Salvatore', 1944, 'M', 534), +(55925, 'Doyle', 1944, 'M', 530), +(55926, 'Chris', 1944, 'M', 529), +(55927, 'Byron', 1944, 'M', 526), +(55928, 'Ron', 1944, 'M', 523), +(55929, 'Wilbert', 1944, 'M', 523), +(55930, 'Woodrow', 1944, 'M', 523), +(55931, 'Frankie', 1944, 'M', 519), +(55932, 'Mitchell', 1944, 'M', 518), +(55933, 'Sherman', 1944, 'M', 512), +(55934, 'Rodger', 1944, 'M', 508), +(55935, 'Aaron', 1944, 'M', 507), +(55936, 'Nathan', 1944, 'M', 506), +(55937, 'Ruben', 1944, 'M', 506), +(55938, 'Teddy', 1944, 'M', 504), +(55939, 'Antonio', 1944, 'M', 499), +(55940, 'Nick', 1944, 'M', 498), +(55941, 'Pat', 1944, 'M', 495), +(55942, 'Isaac', 1944, 'M', 492), +(55943, 'Carlton', 1944, 'M', 485), +(55944, 'Rufus', 1944, 'M', 479), +(55945, 'Terrance', 1944, 'M', 473), +(55946, 'Jeff', 1944, 'M', 472), +(55947, 'Darrel', 1944, 'M', 469), +(55948, 'Forrest', 1944, 'M', 467), +(55949, 'Kenny', 1944, 'M', 467), +(55950, 'Ramon', 1944, 'M', 461), +(55951, 'Julian', 1944, 'M', 456), +(55952, 'Grady', 1944, 'M', 455), +(55953, 'Ivan', 1944, 'M', 454), +(55954, 'Wilson', 1944, 'M', 454), +(55955, 'Ellis', 1944, 'M', 449), +(55956, 'Jacob', 1944, 'M', 438), +(55957, 'Clark', 1944, 'M', 437), +(55958, 'Sammie', 1944, 'M', 434), +(55959, 'Rick', 1944, 'M', 431), +(55960, 'Ken', 1944, 'M', 427), +(55961, 'Felix', 1944, 'M', 421), +(55962, 'Darryl', 1944, 'M', 420), +(55963, 'Ervin', 1944, 'M', 419), +(55964, 'Dallas', 1944, 'M', 415), +(55965, 'Elbert', 1944, 'M', 414), +(55966, 'Roberto', 1944, 'M', 414), +(55967, 'Wade', 1944, 'M', 412), +(55968, 'Preston', 1944, 'M', 410), +(55969, 'Phil', 1944, 'M', 407), +(55970, 'Billie', 1944, 'M', 405), +(55971, 'Lance', 1944, 'M', 404), +(55972, 'Buddy', 1944, 'M', 401), +(55973, 'Pedro', 1944, 'M', 396), +(55974, 'Junior', 1944, 'M', 393), +(55975, 'Raul', 1944, 'M', 393), +(55976, 'Ricky', 1944, 'M', 393), +(55977, 'Owen', 1944, 'M', 392), +(55978, 'Grant', 1944, 'M', 391), +(55979, 'Merle', 1944, 'M', 391), +(55980, 'Mickey', 1944, 'M', 389), +(55981, 'Eldon', 1944, 'M', 386), +(55982, 'Bert', 1944, 'M', 385), +(55983, 'Irvin', 1944, 'M', 381), +(55984, 'Sheldon', 1944, 'M', 381), +(55985, 'Garland', 1944, 'M', 377), +(55986, 'Daryl', 1944, 'M', 370), +(55987, 'Winston', 1944, 'M', 370), +(55988, 'Francisco', 1944, 'M', 365), +(55989, 'Conrad', 1944, 'M', 361), +(55990, 'Noel', 1944, 'M', 360), +(55991, 'Emmett', 1944, 'M', 359), +(55992, 'Orville', 1944, 'M', 357), +(55993, 'Wilfred', 1944, 'M', 350), +(55994, 'Luis', 1944, 'M', 349), +(55995, 'Percy', 1944, 'M', 349), +(55996, 'Stewart', 1944, 'M', 348), +(55997, 'Royce', 1944, 'M', 347), +(55998, 'Boyd', 1944, 'M', 344), +(55999, 'Grover', 1944, 'M', 343), +(56000, 'Bryan', 1944, 'M', 340), +(56001, 'Mario', 1944, 'M', 340), +(56002, 'Louie', 1944, 'M', 339), +(56003, 'Jeffery', 1944, 'M', 336), +(56004, 'Angelo', 1944, 'M', 334), +(56005, 'Travis', 1944, 'M', 334), +(56006, 'Guadalupe', 1944, 'M', 331), +(56007, 'Andy', 1944, 'M', 329), +(56008, 'Aubrey', 1944, 'M', 321), +(56009, 'Brent', 1944, 'M', 315), +(56010, 'Denis', 1944, 'M', 312), +(56011, 'Tyrone', 1944, 'M', 312), +(56012, 'Freddy', 1944, 'M', 310), +(56013, 'Harley', 1944, 'M', 309), +(56014, 'Bradley', 1944, 'M', 308), +(56015, 'Ed', 1944, 'M', 307), +(56016, 'Darwin', 1944, 'M', 304), +(56017, 'Lionel', 1944, 'M', 303), +(56018, 'Kerry', 1944, 'M', 297), +(56019, 'Cleveland', 1944, 'M', 295), +(56020, 'Denny', 1944, 'M', 295), +(56021, 'Kurt', 1944, 'M', 294), +(56022, 'Burton', 1944, 'M', 293), +(56023, 'Van', 1944, 'M', 293), +(56024, 'Marc', 1944, 'M', 292), +(56025, 'Loyd', 1944, 'M', 289), +(56026, 'Gerry', 1944, 'M', 285), +(56027, 'Amos', 1944, 'M', 283), +(56028, 'Gale', 1944, 'M', 283), +(56029, 'Spencer', 1944, 'M', 283), +(56030, 'Harlan', 1944, 'M', 281), +(56031, 'Geoffrey', 1944, 'M', 279), +(56032, 'Ernie', 1944, 'M', 277), +(56033, 'Ronny', 1944, 'M', 277), +(56034, 'Marcus', 1944, 'M', 276), +(56035, 'Kelly', 1944, 'M', 275), +(56036, 'Lorenzo', 1944, 'M', 275), +(56037, 'Alfonso', 1944, 'M', 274), +(56038, 'Bobbie', 1944, 'M', 273), +(56039, 'Edmond', 1944, 'M', 271), +(56040, 'Moses', 1944, 'M', 269), +(56041, 'Robin', 1944, 'M', 268), +(56042, 'Dwayne', 1944, 'M', 266), +(56043, 'Irving', 1944, 'M', 266), +(56044, 'Ned', 1944, 'M', 265), +(56045, 'Dana', 1944, 'M', 260), +(56046, 'Dominick', 1944, 'M', 257), +(56047, 'Elton', 1944, 'M', 257), +(56048, 'Thurman', 1944, 'M', 255), +(56049, 'Elwood', 1944, 'M', 254), +(56050, 'Ricardo', 1944, 'M', 253), +(56051, 'Mary', 1944, 'M', 252), +(56052, 'Kermit', 1944, 'M', 251), +(56053, 'Cary', 1944, 'M', 249), +(56054, 'Roscoe', 1944, 'M', 249), +(56055, 'Armando', 1944, 'M', 248), +(56056, 'Lanny', 1944, 'M', 247), +(56057, 'Alfredo', 1944, 'M', 244), +(56058, 'Norbert', 1944, 'M', 243), +(56059, 'Arturo', 1944, 'M', 242), +(56060, 'Adrian', 1944, 'M', 241), +(56061, 'Hector', 1944, 'M', 241), +(56062, 'Salvador', 1944, 'M', 241), +(56063, 'Austin', 1944, 'M', 240), +(56064, 'Wiley', 1944, 'M', 240), +(56065, 'August', 1944, 'M', 239), +(56066, 'Cornelius', 1944, 'M', 239), +(56067, 'Colin', 1944, 'M', 237), +(56068, 'Dominic', 1944, 'M', 237), +(56069, 'Alonzo', 1944, 'M', 235), +(56070, 'Will', 1944, 'M', 235), +(56071, 'Roderick', 1944, 'M', 234), +(56072, 'Elijah', 1944, 'M', 228), +(56073, 'Sanford', 1944, 'M', 226), +(56074, 'Lamar', 1944, 'M', 223), +(56075, 'Emil', 1944, 'M', 222), +(56076, 'Adam', 1944, 'M', 221), +(56077, 'Johnie', 1944, 'M', 221), +(56078, 'Barney', 1944, 'M', 220), +(56079, 'Kirk', 1944, 'M', 220), +(56080, 'Marlin', 1944, 'M', 219), +(56081, 'Murray', 1944, 'M', 219), +(56082, 'Miguel', 1944, 'M', 216), +(56083, 'Elliott', 1944, 'M', 215), +(56084, 'Galen', 1944, 'M', 213), +(56085, 'Hal', 1944, 'M', 213), +(56086, 'Linwood', 1944, 'M', 213), +(56087, 'Millard', 1944, 'M', 212), +(56088, 'Terence', 1944, 'M', 212), +(56089, 'Sterling', 1944, 'M', 211), +(56090, 'Al', 1944, 'M', 210), +(56091, 'Coy', 1944, 'M', 210), +(56092, 'Merlin', 1944, 'M', 208), +(56093, 'Norris', 1944, 'M', 208), +(56094, 'Chuck', 1944, 'M', 207), +(56095, 'Frederic', 1944, 'M', 207), +(56096, 'Rickey', 1944, 'M', 207), +(56097, 'Nolan', 1944, 'M', 206), +(56098, 'Rene', 1944, 'M', 206), +(56099, 'Reuben', 1944, 'M', 204), +(56100, 'Weldon', 1944, 'M', 204), +(56101, 'Dannie', 1944, 'M', 202), +(56102, 'Doug', 1944, 'M', 202), +(56103, 'Elvin', 1944, 'M', 202), +(56104, 'Carmen', 1944, 'M', 200), +(56105, 'Charley', 1944, 'M', 200), +(56106, 'Odell', 1944, 'M', 198), +(56107, 'Mac', 1944, 'M', 197), +(56108, 'Dewayne', 1944, 'M', 196), +(56109, 'Truman', 1944, 'M', 196), +(56110, 'Gail', 1944, 'M', 195), +(56111, 'Ollie', 1944, 'M', 195), +(56112, 'Abraham', 1944, 'M', 194), +(56113, 'Gabriel', 1944, 'M', 193), +(56114, 'Laverne', 1944, 'M', 192), +(56115, 'Bradford', 1944, 'M', 190), +(56116, 'Maynard', 1944, 'M', 189), +(56117, 'Vance', 1944, 'M', 189), +(56118, 'Greg', 1944, 'M', 188), +(56119, 'Monroe', 1944, 'M', 185), +(56120, 'Simon', 1944, 'M', 185), +(56121, 'Jasper', 1944, 'M', 184), +(56122, 'Levi', 1944, 'M', 184), +(56123, 'Fernando', 1944, 'M', 180), +(56124, 'Jerold', 1944, 'M', 180), +(56125, 'Jess', 1944, 'M', 180), +(56126, 'Emory', 1944, 'M', 179), +(56127, 'Harrison', 1944, 'M', 179), +(56128, 'Vaughn', 1944, 'M', 179), +(56129, 'Jackson', 1944, 'M', 177), +(56130, 'Rafael', 1944, 'M', 177), +(56131, 'Carol', 1944, 'M', 176), +(56132, 'Todd', 1944, 'M', 176), +(56133, 'Merrill', 1944, 'M', 174), +(56134, 'Otto', 1944, 'M', 174), +(56135, 'Domingo', 1944, 'M', 173), +(56136, 'Emanuel', 1944, 'M', 172), +(56137, 'Jake', 1944, 'M', 172), +(56138, 'Jean', 1944, 'M', 172), +(56139, 'Buford', 1944, 'M', 171), +(56140, 'Riley', 1944, 'M', 171), +(56141, 'Delmar', 1944, 'M', 168), +(56142, 'Irwin', 1944, 'M', 168), +(56143, 'Stan', 1944, 'M', 168), +(56144, 'Ward', 1944, 'M', 167), +(56145, 'Russel', 1944, 'M', 165), +(56146, 'Vern', 1944, 'M', 165), +(56147, 'Hollis', 1944, 'M', 164), +(56148, 'Rodolfo', 1944, 'M', 162), +(56149, 'Shelby', 1944, 'M', 162), +(56150, 'Dudley', 1944, 'M', 160), +(56151, 'Ernesto', 1944, 'M', 160), +(56152, 'Mervin', 1944, 'M', 160), +(56153, 'Clair', 1944, 'M', 159), +(56154, 'Erwin', 1944, 'M', 158), +(56155, 'Everette', 1944, 'M', 157), +(56156, 'Harris', 1944, 'M', 157), +(56157, 'Monte', 1944, 'M', 157), +(56158, 'Noah', 1944, 'M', 157), +(56159, 'Rolland', 1944, 'M', 157), +(56160, 'Armand', 1944, 'M', 156), +(56161, 'Clement', 1944, 'M', 156), +(56162, 'Miles', 1944, 'M', 156), +(56163, 'Ulysses', 1944, 'M', 156), +(56164, 'Enrique', 1944, 'M', 154), +(56165, 'Gregg', 1944, 'M', 154), +(56166, 'Booker', 1944, 'M', 153), +(56167, 'Toby', 1944, 'M', 153), +(56168, 'Gus', 1944, 'M', 150), +(56169, 'Eddy', 1944, 'M', 149), +(56170, 'Hershel', 1944, 'M', 149), +(56171, 'Kennith', 1944, 'M', 148), +(56172, 'Errol', 1944, 'M', 147), +(56173, 'Monty', 1944, 'M', 147), +(56174, 'Pablo', 1944, 'M', 146), +(56175, 'Tomas', 1944, 'M', 146), +(56176, 'Wilmer', 1944, 'M', 146), +(56177, 'Reynaldo', 1944, 'M', 144), +(56178, 'Wilburn', 1944, 'M', 144), +(56179, 'Wilford', 1944, 'M', 144), +(56180, 'Connie', 1944, 'M', 143), +(56181, 'Dexter', 1944, 'M', 143), +(56182, 'Fredric', 1944, 'M', 142), +(56183, 'Herschel', 1944, 'M', 142), +(56184, 'Jerrold', 1944, 'M', 142), +(56185, 'Dickie', 1944, 'M', 140), +(56186, 'Carey', 1944, 'M', 139), +(56187, 'Forest', 1944, 'M', 139), +(56188, 'Bernie', 1944, 'M', 138), +(56189, 'Earle', 1944, 'M', 138), +(56190, 'Lupe', 1944, 'M', 138), +(56191, 'Tracy', 1944, 'M', 138), +(56192, 'Joey', 1944, 'M', 137), +(56193, 'Stephan', 1944, 'M', 137), +(56194, 'Andre', 1944, 'M', 136), +(56195, 'Evan', 1944, 'M', 136), +(56196, 'Sonny', 1944, 'M', 136), +(56197, 'Christian', 1944, 'M', 135), +(56198, 'Gayle', 1944, 'M', 135), +(56199, 'Kim', 1944, 'M', 135), +(56200, 'Royal', 1944, 'M', 135), +(56201, 'Mcarthur', 1944, 'M', 134), +(56202, 'Terrell', 1944, 'M', 132), +(56203, 'Felipe', 1944, 'M', 131), +(56204, 'Alberto', 1944, 'M', 130), +(56205, 'Donny', 1944, 'M', 130), +(56206, 'Freeman', 1944, 'M', 130), +(56207, 'Lavern', 1944, 'M', 130), +(56208, 'Major', 1944, 'M', 129), +(56209, 'Ramiro', 1944, 'M', 129), +(56210, 'Morgan', 1944, 'M', 128), +(56211, 'Rocco', 1944, 'M', 128), +(56212, 'Santos', 1944, 'M', 128), +(56213, 'Shirley', 1944, 'M', 128), +(56214, 'Elliot', 1944, 'M', 127), +(56215, 'Normand', 1944, 'M', 127), +(56216, 'Solomon', 1944, 'M', 127), +(56217, 'Denver', 1944, 'M', 126), +(56218, 'Rogers', 1944, 'M', 124), +(56219, 'Eli', 1944, 'M', 123), +(56220, 'Thaddeus', 1944, 'M', 123), +(56221, 'Barbara', 1944, 'M', 122), +(56222, 'Carter', 1944, 'M', 122), +(56223, 'Winfred', 1944, 'M', 121), +(56224, 'Gaylord', 1944, 'M', 120), +(56225, 'Joesph', 1944, 'M', 120), +(56226, 'Alphonso', 1944, 'M', 119), +(56227, 'Anton', 1944, 'M', 119), +(56228, 'Emilio', 1944, 'M', 119), +(56229, 'Jefferson', 1944, 'M', 119), +(56230, 'Quentin', 1944, 'M', 119), +(56231, 'Sandy', 1944, 'M', 119), +(56232, 'Abel', 1944, 'M', 118), +(56233, 'Elias', 1944, 'M', 118), +(56234, 'Isiah', 1944, 'M', 118), +(56235, 'Silas', 1944, 'M', 118), +(56236, 'Basil', 1944, 'M', 117), +(56237, 'Blaine', 1944, 'M', 117), +(56238, 'Cleo', 1944, 'M', 117), +(56239, 'Ignacio', 1944, 'M', 117), +(56240, 'Lenard', 1944, 'M', 117), +(56241, 'Luke', 1944, 'M', 117), +(56242, 'Barton', 1944, 'M', 116), +(56243, 'Elmo', 1944, 'M', 116), +(56244, 'Wilton', 1944, 'M', 116), +(56245, 'Jason', 1944, 'M', 115), +(56246, 'Patricia', 1944, 'M', 115), +(56247, 'Angel', 1944, 'M', 114), +(56248, 'Dalton', 1944, 'M', 114), +(56249, 'Linda', 1944, 'M', 114), +(56250, 'Delmer', 1944, 'M', 113); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(56251, 'Hiram', 1944, 'M', 113), +(56252, 'Alva', 1944, 'M', 112), +(56253, 'Carmine', 1944, 'M', 112), +(56254, 'Emery', 1944, 'M', 111), +(56255, 'Houston', 1944, 'M', 111), +(56256, 'Milford', 1944, 'M', 111), +(56257, 'Rayford', 1944, 'M', 111), +(56258, 'Clay', 1944, 'M', 110), +(56259, 'Garrett', 1944, 'M', 110), +(56260, 'Kirby', 1944, 'M', 110), +(56261, 'Lyman', 1944, 'M', 110), +(56262, 'Carrol', 1944, 'M', 109), +(56263, 'Reed', 1944, 'M', 109), +(56264, 'Santiago', 1944, 'M', 109), +(56265, 'Ivory', 1944, 'M', 108), +(56266, 'Bryant', 1944, 'M', 107), +(56267, 'Foster', 1944, 'M', 107), +(56268, 'Elroy', 1944, 'M', 106), +(56269, 'Justin', 1944, 'M', 106), +(56270, 'Shelton', 1944, 'M', 106), +(56271, 'Alden', 1944, 'M', 105), +(56272, 'Fletcher', 1944, 'M', 105), +(56273, 'Woody', 1944, 'M', 105), +(56274, 'Andres', 1944, 'M', 104), +(56275, 'Joshua', 1944, 'M', 104), +(56276, 'Odis', 1944, 'M', 104), +(56277, 'Arlie', 1944, 'M', 103), +(56278, 'Claud', 1944, 'M', 103), +(56279, 'Emerson', 1944, 'M', 103), +(56280, 'Kendall', 1944, 'M', 103), +(56281, 'Lamont', 1944, 'M', 103), +(56282, 'Randal', 1944, 'M', 103), +(56283, 'Theron', 1944, 'M', 103), +(56284, 'Duncan', 1944, 'M', 102), +(56285, 'Gilberto', 1944, 'M', 101), +(56286, 'Jere', 1944, 'M', 100), +(56287, 'Jeremiah', 1944, 'M', 100), +(56288, 'Lemuel', 1944, 'M', 100), +(56289, 'Raleigh', 1944, 'M', 100), +(56290, 'Sherwood', 1944, 'M', 100), +(56291, 'Mary', 1945, 'F', 59284), +(56292, 'Linda', 1945, 'F', 41465), +(56293, 'Barbara', 1945, 'F', 38272), +(56294, 'Patricia', 1945, 'F', 35841), +(56295, 'Carol', 1945, 'F', 30387), +(56296, 'Sandra', 1945, 'F', 24700), +(56297, 'Nancy', 1945, 'F', 21454), +(56298, 'Sharon', 1945, 'F', 20832), +(56299, 'Judith', 1945, 'F', 20187), +(56300, 'Susan', 1945, 'F', 19223), +(56301, 'Betty', 1945, 'F', 18384), +(56302, 'Carolyn', 1945, 'F', 17238), +(56303, 'Judy', 1945, 'F', 17003), +(56304, 'Shirley', 1945, 'F', 16151), +(56305, 'Margaret', 1945, 'F', 15684), +(56306, 'Karen', 1945, 'F', 15681), +(56307, 'Donna', 1945, 'F', 15397), +(56308, 'Joyce', 1945, 'F', 13951), +(56309, 'Kathleen', 1945, 'F', 13802), +(56310, 'Dorothy', 1945, 'F', 12327), +(56311, 'Janet', 1945, 'F', 12325), +(56312, 'Diane', 1945, 'F', 12226), +(56313, 'Gloria', 1945, 'F', 11039), +(56314, 'Janice', 1945, 'F', 10781), +(56315, 'Joan', 1945, 'F', 10395), +(56316, 'Elizabeth', 1945, 'F', 10336), +(56317, 'Marilyn', 1945, 'F', 9535), +(56318, 'Virginia', 1945, 'F', 9242), +(56319, 'Brenda', 1945, 'F', 9206), +(56320, 'Martha', 1945, 'F', 8747), +(56321, 'Helen', 1945, 'F', 8302), +(56322, 'Cheryl', 1945, 'F', 8150), +(56323, 'Ruth', 1945, 'F', 8043), +(56324, 'Frances', 1945, 'F', 7940), +(56325, 'Bonnie', 1945, 'F', 7746), +(56326, 'Jane', 1945, 'F', 7640), +(56327, 'Beverly', 1945, 'F', 7617), +(56328, 'Jean', 1945, 'F', 7426), +(56329, 'Ann', 1945, 'F', 7039), +(56330, 'Phyllis', 1945, 'F', 6531), +(56331, 'Alice', 1945, 'F', 6358), +(56332, 'Pamela', 1945, 'F', 6169), +(56333, 'Diana', 1945, 'F', 6047), +(56334, 'Elaine', 1945, 'F', 5888), +(56335, 'Peggy', 1945, 'F', 5840), +(56336, 'Doris', 1945, 'F', 5822), +(56337, 'Connie', 1945, 'F', 5336), +(56338, 'Lois', 1945, 'F', 5146), +(56339, 'Marie', 1945, 'F', 5082), +(56340, 'Catherine', 1945, 'F', 5031), +(56341, 'Carole', 1945, 'F', 4844), +(56342, 'Gail', 1945, 'F', 4831), +(56343, 'Joanne', 1945, 'F', 4617), +(56344, 'Rose', 1945, 'F', 4557), +(56345, 'Charlotte', 1945, 'F', 4529), +(56346, 'Geraldine', 1945, 'F', 4474), +(56347, 'Evelyn', 1945, 'F', 4377), +(56348, 'Wanda', 1945, 'F', 4294), +(56349, 'Rita', 1945, 'F', 4281), +(56350, 'Jo', 1945, 'F', 4223), +(56351, 'Ellen', 1945, 'F', 4188), +(56352, 'Christine', 1945, 'F', 4076), +(56353, 'Jacqueline', 1945, 'F', 3988), +(56354, 'Sally', 1945, 'F', 3981), +(56355, 'Kathryn', 1945, 'F', 3972), +(56356, 'Sue', 1945, 'F', 3914), +(56357, 'Paula', 1945, 'F', 3795), +(56358, 'Suzanne', 1945, 'F', 3769), +(56359, 'Annie', 1945, 'F', 3739), +(56360, 'Eileen', 1945, 'F', 3635), +(56361, 'Darlene', 1945, 'F', 3626), +(56362, 'Dianne', 1945, 'F', 3611), +(56363, 'Anna', 1945, 'F', 3606), +(56364, 'Norma', 1945, 'F', 3602), +(56365, 'Roberta', 1945, 'F', 3601), +(56366, 'Sarah', 1945, 'F', 3594), +(56367, 'Laura', 1945, 'F', 3589), +(56368, 'Louise', 1945, 'F', 3514), +(56369, 'Rosemary', 1945, 'F', 3500), +(56370, 'Joann', 1945, 'F', 3465), +(56371, 'Anne', 1945, 'F', 3408), +(56372, 'Katherine', 1945, 'F', 3392), +(56373, 'Sylvia', 1945, 'F', 3375), +(56374, 'Patsy', 1945, 'F', 3346), +(56375, 'Rebecca', 1945, 'F', 3331), +(56376, 'Maria', 1945, 'F', 3308), +(56377, 'Lorraine', 1945, 'F', 3207), +(56378, 'Marcia', 1945, 'F', 3205), +(56379, 'Sheila', 1945, 'F', 3178), +(56380, 'Cynthia', 1945, 'F', 3128), +(56381, 'Kay', 1945, 'F', 3059), +(56382, 'Glenda', 1945, 'F', 2963), +(56383, 'Mildred', 1945, 'F', 2961), +(56384, 'Marjorie', 1945, 'F', 2931), +(56385, 'Ruby', 1945, 'F', 2905), +(56386, 'Theresa', 1945, 'F', 2896), +(56387, 'Irene', 1945, 'F', 2886), +(56388, 'Jeanne', 1945, 'F', 2859), +(56389, 'Arlene', 1945, 'F', 2772), +(56390, 'Anita', 1945, 'F', 2766), +(56391, 'Kathy', 1945, 'F', 2753), +(56392, 'Lynn', 1945, 'F', 2729), +(56393, 'Dolores', 1945, 'F', 2704), +(56394, 'Sherry', 1945, 'F', 2676), +(56395, 'Maureen', 1945, 'F', 2672), +(56396, 'Victoria', 1945, 'F', 2670), +(56397, 'Loretta', 1945, 'F', 2658), +(56398, 'Juanita', 1945, 'F', 2655), +(56399, 'Constance', 1945, 'F', 2600), +(56400, 'Marlene', 1945, 'F', 2526), +(56401, 'Lynda', 1945, 'F', 2469), +(56402, 'Delores', 1945, 'F', 2444), +(56403, 'Marsha', 1945, 'F', 2424), +(56404, 'Charlene', 1945, 'F', 2387), +(56405, 'Julia', 1945, 'F', 2328), +(56406, 'Georgia', 1945, 'F', 2318), +(56407, 'Vicki', 1945, 'F', 2237), +(56408, 'Vivian', 1945, 'F', 2166), +(56409, 'Edna', 1945, 'F', 2152), +(56410, 'Josephine', 1945, 'F', 2146), +(56411, 'June', 1945, 'F', 2070), +(56412, 'Emma', 1945, 'F', 2052), +(56413, 'Jeanette', 1945, 'F', 2052), +(56414, 'Lillian', 1945, 'F', 2017), +(56415, 'Pauline', 1945, 'F', 1976), +(56416, 'Andrea', 1945, 'F', 1933), +(56417, 'Claudia', 1945, 'F', 1909), +(56418, 'Wilma', 1945, 'F', 1889), +(56419, 'Lucille', 1945, 'F', 1885), +(56420, 'Eleanor', 1945, 'F', 1876), +(56421, 'Thelma', 1945, 'F', 1855), +(56422, 'Edith', 1945, 'F', 1841), +(56423, 'Yvonne', 1945, 'F', 1821), +(56424, 'Ethel', 1945, 'F', 1818), +(56425, 'Sara', 1945, 'F', 1803), +(56426, 'Clara', 1945, 'F', 1798), +(56427, 'Willie', 1945, 'F', 1775), +(56428, 'Margie', 1945, 'F', 1764), +(56429, 'Grace', 1945, 'F', 1746), +(56430, 'Florence', 1945, 'F', 1730), +(56431, 'Gladys', 1945, 'F', 1707), +(56432, 'Leslie', 1945, 'F', 1703), +(56433, 'Audrey', 1945, 'F', 1644), +(56434, 'Maryann', 1945, 'F', 1609), +(56435, 'Marion', 1945, 'F', 1602), +(56436, 'Eva', 1945, 'F', 1595), +(56437, 'Rosa', 1945, 'F', 1578), +(56438, 'Paulette', 1945, 'F', 1575), +(56439, 'Annette', 1945, 'F', 1574), +(56440, 'Bobbie', 1945, 'F', 1563), +(56441, 'Gwendolyn', 1945, 'F', 1560), +(56442, 'Billie', 1945, 'F', 1556), +(56443, 'Lynne', 1945, 'F', 1524), +(56444, 'Pat', 1945, 'F', 1520), +(56445, 'Julie', 1945, 'F', 1512), +(56446, 'Gayle', 1945, 'F', 1490), +(56447, 'Bernice', 1945, 'F', 1473), +(56448, 'Ella', 1945, 'F', 1470), +(56449, 'Janie', 1945, 'F', 1470), +(56450, 'Esther', 1945, 'F', 1466), +(56451, 'Deborah', 1945, 'F', 1464), +(56452, 'Maxine', 1945, 'F', 1449), +(56453, 'Marian', 1945, 'F', 1447), +(56454, 'Hazel', 1945, 'F', 1436), +(56455, 'Bertha', 1945, 'F', 1426), +(56456, 'Priscilla', 1945, 'F', 1413), +(56457, 'Lillie', 1945, 'F', 1401), +(56458, 'Joy', 1945, 'F', 1391), +(56459, 'Faye', 1945, 'F', 1376), +(56460, 'Beatrice', 1945, 'F', 1358), +(56461, 'Teresa', 1945, 'F', 1339), +(56462, 'Jackie', 1945, 'F', 1260), +(56463, 'Ida', 1945, 'F', 1232), +(56464, 'Rachel', 1945, 'F', 1209), +(56465, 'Deanna', 1945, 'F', 1187), +(56466, 'Harriet', 1945, 'F', 1175), +(56467, 'Jill', 1945, 'F', 1159), +(56468, 'Lucy', 1945, 'F', 1145), +(56469, 'Vera', 1945, 'F', 1144), +(56470, 'Marianne', 1945, 'F', 1139), +(56471, 'Emily', 1945, 'F', 1134), +(56472, 'Dianna', 1945, 'F', 1133), +(56473, 'Penny', 1945, 'F', 1131), +(56474, 'Janis', 1945, 'F', 1127), +(56475, 'Jessie', 1945, 'F', 1107), +(56476, 'Rosie', 1945, 'F', 1097), +(56477, 'Minnie', 1945, 'F', 1087), +(56478, 'Alma', 1945, 'F', 1080), +(56479, 'Valerie', 1945, 'F', 1080), +(56480, 'Bessie', 1945, 'F', 1074), +(56481, 'Mattie', 1945, 'F', 1071), +(56482, 'Angela', 1945, 'F', 1059), +(56483, 'Patty', 1945, 'F', 1058), +(56484, 'Sheryl', 1945, 'F', 1055), +(56485, 'Veronica', 1945, 'F', 1034), +(56486, 'Bernadette', 1945, 'F', 1016), +(56487, 'Caroline', 1945, 'F', 1015), +(56488, 'Stella', 1945, 'F', 993), +(56489, 'Carrie', 1945, 'F', 986), +(56490, 'Jennifer', 1945, 'F', 986), +(56491, 'Regina', 1945, 'F', 984), +(56492, 'Elsie', 1945, 'F', 977), +(56493, 'Rosalie', 1945, 'F', 975), +(56494, 'Terry', 1945, 'F', 950), +(56495, 'Jacquelyn', 1945, 'F', 949), +(56496, 'Toni', 1945, 'F', 948), +(56497, 'Michele', 1945, 'F', 946), +(56498, 'Lana', 1945, 'F', 944), +(56499, 'Johnnie', 1945, 'F', 935), +(56500, 'Nellie', 1945, 'F', 931), +(56501, 'Claire', 1945, 'F', 916), +(56502, 'Geneva', 1945, 'F', 912), +(56503, 'Rosemarie', 1945, 'F', 895), +(56504, 'Susie', 1945, 'F', 891), +(56505, 'Dixie', 1945, 'F', 883), +(56506, 'Dora', 1945, 'F', 882), +(56507, 'Nina', 1945, 'F', 882), +(56508, 'Carmen', 1945, 'F', 871), +(56509, 'Stephanie', 1945, 'F', 871), +(56510, 'Sandy', 1945, 'F', 865), +(56511, 'Jan', 1945, 'F', 864), +(56512, 'Carla', 1945, 'F', 863), +(56513, 'Velma', 1945, 'F', 862), +(56514, 'Lydia', 1945, 'F', 855), +(56515, 'Mae', 1945, 'F', 854), +(56516, 'Bonita', 1945, 'F', 843), +(56517, 'Leona', 1945, 'F', 842), +(56518, 'Nora', 1945, 'F', 834), +(56519, 'Deloris', 1945, 'F', 826), +(56520, 'Agnes', 1945, 'F', 824), +(56521, 'Cathy', 1945, 'F', 824), +(56522, 'Vickie', 1945, 'F', 815), +(56523, 'Colleen', 1945, 'F', 812), +(56524, 'Beth', 1945, 'F', 807), +(56525, 'Naomi', 1945, 'F', 798), +(56526, 'Jeannette', 1945, 'F', 787), +(56527, 'Madeline', 1945, 'F', 781), +(56528, 'Christina', 1945, 'F', 776), +(56529, 'Ernestine', 1945, 'F', 771), +(56530, 'Yolanda', 1945, 'F', 771), +(56531, 'Sharyn', 1945, 'F', 768), +(56532, 'Viola', 1945, 'F', 766), +(56533, 'Alberta', 1945, 'F', 762), +(56534, 'Cora', 1945, 'F', 750), +(56535, 'Francine', 1945, 'F', 746), +(56536, 'Hattie', 1945, 'F', 746), +(56537, 'Dawn', 1945, 'F', 745), +(56538, 'Myra', 1945, 'F', 737), +(56539, 'Antoinette', 1945, 'F', 735), +(56540, 'Trudy', 1945, 'F', 728), +(56541, 'Lena', 1945, 'F', 722), +(56542, 'Lula', 1945, 'F', 720), +(56543, 'Verna', 1945, 'F', 719), +(56544, 'Marguerite', 1945, 'F', 692), +(56545, 'Bettie', 1945, 'F', 691), +(56546, 'Lee', 1945, 'F', 689), +(56547, 'Lola', 1945, 'F', 689), +(56548, 'Irma', 1945, 'F', 682), +(56549, 'Hilda', 1945, 'F', 680), +(56550, 'Miriam', 1945, 'F', 672), +(56551, 'Bettye', 1945, 'F', 670), +(56552, 'Gertrude', 1945, 'F', 664), +(56553, 'Becky', 1945, 'F', 657), +(56554, 'Cecilia', 1945, 'F', 657), +(56555, 'Pearl', 1945, 'F', 654), +(56556, 'Betsy', 1945, 'F', 651), +(56557, 'Ramona', 1945, 'F', 650), +(56558, 'Dana', 1945, 'F', 645), +(56559, 'Iris', 1945, 'F', 645), +(56560, 'Bette', 1945, 'F', 639), +(56561, 'Daisy', 1945, 'F', 635), +(56562, 'Jennie', 1945, 'F', 634), +(56563, 'Denise', 1945, 'F', 633), +(56564, 'Candace', 1945, 'F', 632), +(56565, 'Cecelia', 1945, 'F', 628), +(56566, 'Eunice', 1945, 'F', 627), +(56567, 'Myrtle', 1945, 'F', 621), +(56568, 'Olivia', 1945, 'F', 621), +(56569, 'Robin', 1945, 'F', 621), +(56570, 'Saundra', 1945, 'F', 619), +(56571, 'Renee', 1945, 'F', 607), +(56572, 'Sharron', 1945, 'F', 603), +(56573, 'Erma', 1945, 'F', 600), +(56574, 'Laverne', 1945, 'F', 598), +(56575, 'Laurie', 1945, 'F', 592), +(56576, 'Marcella', 1945, 'F', 588), +(56577, 'Violet', 1945, 'F', 587), +(56578, 'Fannie', 1945, 'F', 585), +(56579, 'Katie', 1945, 'F', 576), +(56580, 'Wendy', 1945, 'F', 576), +(56581, 'Myrna', 1945, 'F', 568), +(56582, 'Eloise', 1945, 'F', 548), +(56583, 'Vicky', 1945, 'F', 545), +(56584, 'Mamie', 1945, 'F', 541), +(56585, 'Henrietta', 1945, 'F', 539), +(56586, 'Guadalupe', 1945, 'F', 535), +(56587, 'Della', 1945, 'F', 531), +(56588, 'Flora', 1945, 'F', 530), +(56589, 'Laurel', 1945, 'F', 530), +(56590, 'Sondra', 1945, 'F', 530), +(56591, 'Ada', 1945, 'F', 527), +(56592, 'Judi', 1945, 'F', 524), +(56593, 'Susanne', 1945, 'F', 514), +(56594, 'Frankie', 1945, 'F', 509), +(56595, 'Penelope', 1945, 'F', 509), +(56596, 'Melba', 1945, 'F', 503), +(56597, 'Michelle', 1945, 'F', 499), +(56598, 'Gretchen', 1945, 'F', 494), +(56599, 'Dale', 1945, 'F', 487), +(56600, 'Doreen', 1945, 'F', 481), +(56601, 'Jeannie', 1945, 'F', 478), +(56602, 'Amelia', 1945, 'F', 475), +(56603, 'Sallie', 1945, 'F', 461), +(56604, 'Alicia', 1945, 'F', 460), +(56605, 'Helene', 1945, 'F', 458), +(56606, 'Margo', 1945, 'F', 456), +(56607, 'Sonja', 1945, 'F', 455), +(56608, 'Glenna', 1945, 'F', 453), +(56609, 'Mable', 1945, 'F', 451), +(56610, 'Nelda', 1945, 'F', 451), +(56611, 'Gale', 1945, 'F', 447), +(56612, 'Claudette', 1945, 'F', 445), +(56613, 'Genevieve', 1945, 'F', 443), +(56614, 'Kaye', 1945, 'F', 442), +(56615, 'Reba', 1945, 'F', 442), +(56616, 'Amy', 1945, 'F', 440), +(56617, 'Maggie', 1945, 'F', 440), +(56618, 'Noreen', 1945, 'F', 440), +(56619, 'Tina', 1945, 'F', 440), +(56620, 'Freda', 1945, 'F', 438), +(56621, 'Nadine', 1945, 'F', 435), +(56622, 'Joanna', 1945, 'F', 427), +(56623, 'Lorna', 1945, 'F', 427), +(56624, 'Faith', 1945, 'F', 424), +(56625, 'Jerry', 1945, 'F', 414), +(56626, 'Earnestine', 1945, 'F', 409), +(56627, 'Lynette', 1945, 'F', 407), +(56628, 'Jayne', 1945, 'F', 405), +(56629, 'Sadie', 1945, 'F', 401), +(56630, 'Monica', 1945, 'F', 400), +(56631, 'Inez', 1945, 'F', 399), +(56632, 'Lou', 1945, 'F', 398), +(56633, 'Polly', 1945, 'F', 398), +(56634, 'Diann', 1945, 'F', 396), +(56635, 'Beulah', 1945, 'F', 394), +(56636, 'Gay', 1945, 'F', 394), +(56637, 'Rosetta', 1945, 'F', 394), +(56638, 'Jimmie', 1945, 'F', 390), +(56639, 'Muriel', 1945, 'F', 390), +(56640, 'Roseann', 1945, 'F', 388), +(56641, 'Terri', 1945, 'F', 388), +(56642, 'Essie', 1945, 'F', 387), +(56643, 'Holly', 1945, 'F', 382), +(56644, 'Patti', 1945, 'F', 381), +(56645, 'Lauren', 1945, 'F', 380), +(56646, 'Gracie', 1945, 'F', 378), +(56647, 'Celia', 1945, 'F', 377), +(56648, 'Eula', 1945, 'F', 376), +(56649, 'Lupe', 1945, 'F', 376), +(56650, 'Ruthie', 1945, 'F', 376), +(56651, 'Camille', 1945, 'F', 373), +(56652, 'Lila', 1945, 'F', 368), +(56653, 'Rosalind', 1945, 'F', 368), +(56654, 'Mona', 1945, 'F', 366), +(56655, 'Natalie', 1945, 'F', 366), +(56656, 'Gwen', 1945, 'F', 365), +(56657, 'Blanche', 1945, 'F', 364), +(56658, 'Rochelle', 1945, 'F', 364), +(56659, 'Ginger', 1945, 'F', 362), +(56660, 'Lorene', 1945, 'F', 361), +(56661, 'Lucinda', 1945, 'F', 360), +(56662, 'Jewel', 1945, 'F', 358), +(56663, 'Adrienne', 1945, 'F', 357), +(56664, 'Melinda', 1945, 'F', 355), +(56665, 'Ollie', 1945, 'F', 355), +(56666, 'Estella', 1945, 'F', 353), +(56667, 'Pam', 1945, 'F', 349), +(56668, 'Etta', 1945, 'F', 345), +(56669, 'Mabel', 1945, 'F', 344), +(56670, 'Willa', 1945, 'F', 344), +(56671, 'Earlene', 1945, 'F', 342), +(56672, 'Ina', 1945, 'F', 342), +(56673, 'Opal', 1945, 'F', 337), +(56674, 'Fay', 1945, 'F', 335), +(56675, 'Josie', 1945, 'F', 335), +(56676, 'Melanie', 1945, 'F', 335), +(56677, 'Molly', 1945, 'F', 333), +(56678, 'Shelby', 1945, 'F', 333), +(56679, 'Cindy', 1945, 'F', 332), +(56680, 'Lenora', 1945, 'F', 332), +(56681, 'Adele', 1945, 'F', 330), +(56682, 'Rena', 1945, 'F', 330), +(56683, 'Earline', 1945, 'F', 328), +(56684, 'Lela', 1945, 'F', 328), +(56685, 'Ora', 1945, 'F', 325), +(56686, 'Sherrie', 1945, 'F', 320), +(56687, 'Karla', 1945, 'F', 319), +(56688, 'Winifred', 1945, 'F', 319), +(56689, 'Kathie', 1945, 'F', 315), +(56690, 'Ilene', 1945, 'F', 313), +(56691, 'Nettie', 1945, 'F', 313), +(56692, 'Olga', 1945, 'F', 312), +(56693, 'Cathleen', 1945, 'F', 311), +(56694, 'Meredith', 1945, 'F', 309), +(56695, 'Melody', 1945, 'F', 307), +(56696, 'Pearlie', 1945, 'F', 306), +(56697, 'Shelia', 1945, 'F', 305), +(56698, 'Darla', 1945, 'F', 303), +(56699, 'Tommie', 1945, 'F', 303), +(56700, 'Jenny', 1945, 'F', 302), +(56701, 'Rhonda', 1945, 'F', 302), +(56702, 'Janette', 1945, 'F', 301), +(56703, 'Dorthy', 1945, 'F', 300), +(56704, 'Judie', 1945, 'F', 300), +(56705, 'Marilynn', 1945, 'F', 299), +(56706, 'Lavonne', 1945, 'F', 297), +(56707, 'Margarita', 1945, 'F', 292), +(56708, 'Eugenia', 1945, 'F', 291), +(56709, 'Dona', 1945, 'F', 289), +(56710, 'Beverley', 1945, 'F', 285), +(56711, 'Leah', 1945, 'F', 285), +(56712, 'Lora', 1945, 'F', 285), +(56713, 'Bernadine', 1945, 'F', 282), +(56714, 'Katharine', 1945, 'F', 282), +(56715, 'Amanda', 1945, 'F', 280), +(56716, 'Marylou', 1945, 'F', 280), +(56717, 'Maryanne', 1945, 'F', 279), +(56718, 'Addie', 1945, 'F', 278), +(56719, 'Estelle', 1945, 'F', 277), +(56720, 'Isabel', 1945, 'F', 275), +(56721, 'Lenore', 1945, 'F', 275), +(56722, 'Jeanie', 1945, 'F', 274), +(56723, 'Harriett', 1945, 'F', 273), +(56724, 'Therese', 1945, 'F', 273), +(56725, 'Edwina', 1945, 'F', 272), +(56726, 'Delia', 1945, 'F', 271), +(56727, 'Jewell', 1945, 'F', 268), +(56728, 'Leola', 1945, 'F', 267), +(56729, 'Robbie', 1945, 'F', 266), +(56730, 'Lizzie', 1945, 'F', 264), +(56731, 'Marva', 1945, 'F', 264), +(56732, 'Fern', 1945, 'F', 260), +(56733, 'Carlene', 1945, 'F', 257), +(56734, 'Dee', 1945, 'F', 255), +(56735, 'Lottie', 1945, 'F', 255), +(56736, 'Antonia', 1945, 'F', 254), +(56737, 'Iva', 1945, 'F', 252), +(56738, 'Jeannine', 1945, 'F', 252), +(56739, 'Jeri', 1945, 'F', 252), +(56740, 'Rae', 1945, 'F', 252), +(56741, 'Lisa', 1945, 'F', 250), +(56742, 'Cherie', 1945, 'F', 249), +(56743, 'Dorothea', 1945, 'F', 249), +(56744, 'James', 1945, 'F', 246), +(56745, 'Freddie', 1945, 'F', 245), +(56746, 'Francis', 1945, 'F', 244), +(56747, 'Ola', 1945, 'F', 243), +(56748, 'April', 1945, 'F', 242), +(56749, 'Eddie', 1945, 'F', 242), +(56750, 'Cornelia', 1945, 'F', 241), +(56751, 'Dottie', 1945, 'F', 241), +(56752, 'Jannie', 1945, 'F', 241), +(56753, 'Sybil', 1945, 'F', 241), +(56754, 'Elva', 1945, 'F', 239), +(56755, 'Teri', 1945, 'F', 239), +(56756, 'Carolann', 1945, 'F', 238), +(56757, 'Cassandra', 1945, 'F', 238), +(56758, 'Marlys', 1945, 'F', 234), +(56759, 'Delois', 1945, 'F', 233), +(56760, 'Melva', 1945, 'F', 233), +(56761, 'Sonia', 1945, 'F', 233), +(56762, 'Laraine', 1945, 'F', 232), +(56763, 'Corinne', 1945, 'F', 231), +(56764, 'Nola', 1945, 'F', 231), +(56765, 'Marla', 1945, 'F', 230), +(56766, 'Nita', 1945, 'F', 230), +(56767, 'Mavis', 1945, 'F', 229), +(56768, 'Rhoda', 1945, 'F', 227), +(56769, 'Jamie', 1945, 'F', 226), +(56770, 'Sharlene', 1945, 'F', 226), +(56771, 'Johanna', 1945, 'F', 225), +(56772, 'Maryellen', 1945, 'F', 225), +(56773, 'Imogene', 1945, 'F', 224), +(56774, 'Effie', 1945, 'F', 222), +(56775, 'Dolly', 1945, 'F', 221), +(56776, 'Elvira', 1945, 'F', 221), +(56777, 'Loraine', 1945, 'F', 221), +(56778, 'Rosalyn', 1945, 'F', 221), +(56779, 'Ruthann', 1945, 'F', 221), +(56780, 'Cheri', 1945, 'F', 220), +(56781, 'Cherry', 1945, 'F', 219), +(56782, 'Millie', 1945, 'F', 219), +(56783, 'Clare', 1945, 'F', 217), +(56784, 'Elena', 1945, 'F', 216), +(56785, 'Margery', 1945, 'F', 216), +(56786, 'Alta', 1945, 'F', 215), +(56787, 'Hope', 1945, 'F', 215), +(56788, 'Mollie', 1945, 'F', 215), +(56789, 'Angie', 1945, 'F', 214), +(56790, 'Elnora', 1945, 'F', 214), +(56791, 'Merry', 1945, 'F', 214), +(56792, 'Aurora', 1945, 'F', 213), +(56793, 'Kristine', 1945, 'F', 213), +(56794, 'Karol', 1945, 'F', 211), +(56795, 'Sherri', 1945, 'F', 211), +(56796, 'Kitty', 1945, 'F', 210), +(56797, 'Angelina', 1945, 'F', 209), +(56798, 'Nona', 1945, 'F', 209), +(56799, 'Clarice', 1945, 'F', 208), +(56800, 'Debra', 1945, 'F', 207), +(56801, 'Merle', 1945, 'F', 206), +(56802, 'Sherrill', 1945, 'F', 206), +(56803, 'May', 1945, 'F', 204), +(56804, 'Ronnie', 1945, 'F', 204), +(56805, 'Candy', 1945, 'F', 199), +(56806, 'Cecile', 1945, 'F', 199), +(56807, 'Robert', 1945, 'F', 199), +(56808, 'Gerry', 1945, 'F', 198), +(56809, 'John', 1945, 'F', 198), +(56810, 'Roxanne', 1945, 'F', 198), +(56811, 'Rosanne', 1945, 'F', 197), +(56812, 'Dian', 1945, 'F', 196), +(56813, 'Queen', 1945, 'F', 195), +(56814, 'Virgie', 1945, 'F', 195), +(56815, 'Winnie', 1945, 'F', 195), +(56816, 'Tamara', 1945, 'F', 194), +(56817, 'Joe', 1945, 'F', 193), +(56818, 'Jolene', 1945, 'F', 193), +(56819, 'Dollie', 1945, 'F', 190), +(56820, 'Julianne', 1945, 'F', 189), +(56821, 'Marietta', 1945, 'F', 189), +(56822, 'Tanya', 1945, 'F', 187), +(56823, 'Melissa', 1945, 'F', 186), +(56824, 'Roxie', 1945, 'F', 186), +(56825, 'Bennie', 1945, 'F', 185), +(56826, 'Cheryle', 1945, 'F', 184), +(56827, 'Corrine', 1945, 'F', 184), +(56828, 'Louella', 1945, 'F', 184), +(56829, 'Maryjane', 1945, 'F', 184), +(56830, 'Nell', 1945, 'F', 184), +(56831, 'Alyce', 1945, 'F', 183), +(56832, 'Cleo', 1945, 'F', 182), +(56833, 'Peggie', 1945, 'F', 182), +(56834, 'Ingrid', 1945, 'F', 180), +(56835, 'Karon', 1945, 'F', 180), +(56836, 'Roslyn', 1945, 'F', 180), +(56837, 'Elma', 1945, 'F', 179), +(56838, 'Esperanza', 1945, 'F', 179), +(56839, 'Ronda', 1945, 'F', 179), +(56840, 'Goldie', 1945, 'F', 178), +(56841, 'Helena', 1945, 'F', 178), +(56842, 'Leila', 1945, 'F', 176), +(56843, 'Reva', 1945, 'F', 176), +(56844, 'Heather', 1945, 'F', 175), +(56845, 'Karin', 1945, 'F', 175), +(56846, 'Nan', 1945, 'F', 175), +(56847, 'Arleen', 1945, 'F', 174), +(56848, 'Carrol', 1945, 'F', 174), +(56849, 'Madelyn', 1945, 'F', 174), +(56850, 'Elouise', 1945, 'F', 173), +(56851, 'Celeste', 1945, 'F', 171), +(56852, 'Shelley', 1945, 'F', 171), +(56853, 'Ladonna', 1945, 'F', 170), +(56854, 'Consuelo', 1945, 'F', 169), +(56855, 'Darleen', 1945, 'F', 169), +(56856, 'Neva', 1945, 'F', 169), +(56857, 'Lucia', 1945, 'F', 168), +(56858, 'Sheri', 1945, 'F', 168), +(56859, 'Zelma', 1945, 'F', 168), +(56860, 'Retha', 1945, 'F', 166), +(56861, 'Sonya', 1945, 'F', 165), +(56862, 'Yvette', 1945, 'F', 165), +(56863, 'Carroll', 1945, 'F', 163), +(56864, 'Georgette', 1945, 'F', 163), +(56865, 'Dinah', 1945, 'F', 162), +(56866, 'Suzan', 1945, 'F', 162), +(56867, 'Charleen', 1945, 'F', 160), +(56868, 'Eliza', 1945, 'F', 160), +(56869, 'Jeanine', 1945, 'F', 160), +(56870, 'Letha', 1945, 'F', 160), +(56871, 'Terrie', 1945, 'F', 160), +(56872, 'Odessa', 1945, 'F', 159), +(56873, 'Michael', 1945, 'F', 158), +(56874, 'Madeleine', 1945, 'F', 157), +(56875, 'Carmela', 1945, 'F', 156), +(56876, 'Mercedes', 1945, 'F', 156), +(56877, 'Marilee', 1945, 'F', 155), +(56878, 'Sandi', 1945, 'F', 154), +(56879, 'Doretha', 1945, 'F', 153), +(56880, 'Hannah', 1945, 'F', 153), +(56881, 'Lorena', 1945, 'F', 153), +(56882, 'Sharen', 1945, 'F', 153), +(56883, 'Deanne', 1945, 'F', 151), +(56884, 'Frieda', 1945, 'F', 151), +(56885, 'Ila', 1945, 'F', 151), +(56886, 'Jerri', 1945, 'F', 151), +(56887, 'Aileen', 1945, 'F', 149), +(56888, 'Freida', 1945, 'F', 149), +(56889, 'Elisabeth', 1945, 'F', 148), +(56890, 'Rosalee', 1945, 'F', 144), +(56891, 'Wilda', 1945, 'F', 144), +(56892, 'Arline', 1945, 'F', 143), +(56893, 'Carolynn', 1945, 'F', 143), +(56894, 'Corine', 1945, 'F', 143), +(56895, 'Theodora', 1945, 'F', 143), +(56896, 'Angelita', 1945, 'F', 142), +(56897, 'Debbie', 1945, 'F', 142), +(56898, 'Harriette', 1945, 'F', 142), +(56899, 'Lily', 1945, 'F', 142), +(56900, 'Shari', 1945, 'F', 142), +(56901, 'William', 1945, 'F', 142), +(56902, 'Concetta', 1945, 'F', 141), +(56903, 'Jana', 1945, 'F', 140), +(56904, 'Lilly', 1945, 'F', 140), +(56905, 'Luella', 1945, 'F', 140), +(56906, 'Sherryl', 1945, 'F', 140), +(56907, 'Georgianna', 1945, 'F', 139), +(56908, 'Janelle', 1945, 'F', 138), +(56909, 'Lyn', 1945, 'F', 138), +(56910, 'Rosella', 1945, 'F', 138), +(56911, 'Callie', 1945, 'F', 137), +(56912, 'Nikki', 1945, 'F', 137), +(56913, 'Adeline', 1945, 'F', 136), +(56914, 'Angeline', 1945, 'F', 135), +(56915, 'Caryl', 1945, 'F', 135), +(56916, 'Cathryn', 1945, 'F', 135), +(56917, 'Lonnie', 1945, 'F', 135), +(56918, 'Alana', 1945, 'F', 134), +(56919, 'Josefina', 1945, 'F', 134), +(56920, 'Olive', 1945, 'F', 134), +(56921, 'Celestine', 1945, 'F', 133), +(56922, 'Margot', 1945, 'F', 133), +(56923, 'Toby', 1945, 'F', 133), +(56924, 'Jessica', 1945, 'F', 132), +(56925, 'Karolyn', 1945, 'F', 132), +(56926, 'Lynnette', 1945, 'F', 132), +(56927, 'Madonna', 1945, 'F', 132), +(56928, 'Roseanne', 1945, 'F', 132), +(56929, 'Sydney', 1945, 'F', 132), +(56930, 'Isabelle', 1945, 'F', 131), +(56931, 'Gearldine', 1945, 'F', 130), +(56932, 'Twila', 1945, 'F', 130), +(56933, 'Bobby', 1945, 'F', 129), +(56934, 'Chris', 1945, 'F', 129), +(56935, 'Lesley', 1945, 'F', 129), +(56936, 'Ester', 1945, 'F', 128), +(56937, 'Gaye', 1945, 'F', 128), +(56938, 'George', 1945, 'F', 128), +(56939, 'Jerrie', 1945, 'F', 128), +(56940, 'Lessie', 1945, 'F', 128), +(56941, 'Malinda', 1945, 'F', 128), +(56942, 'Dena', 1945, 'F', 127), +(56943, 'Reta', 1945, 'F', 127), +(56944, 'Camilla', 1945, 'F', 126), +(56945, 'Charles', 1945, 'F', 126), +(56946, 'Elsa', 1945, 'F', 126), +(56947, 'Nannie', 1945, 'F', 126), +(56948, 'Sammie', 1945, 'F', 126), +(56949, 'Kristin', 1945, 'F', 125), +(56950, 'Nanette', 1945, 'F', 125), +(56951, 'Oralia', 1945, 'F', 125), +(56952, 'Vernell', 1945, 'F', 125), +(56953, 'Kerry', 1945, 'F', 124), +(56954, 'Annmarie', 1945, 'F', 123), +(56955, 'Justine', 1945, 'F', 123), +(56956, 'Lelia', 1945, 'F', 123), +(56957, 'Alexis', 1945, 'F', 122), +(56958, 'Avis', 1945, 'F', 122), +(56959, 'Charla', 1945, 'F', 122), +(56960, 'Eve', 1945, 'F', 122), +(56961, 'Laureen', 1945, 'F', 122), +(56962, 'Patrica', 1945, 'F', 122), +(56963, 'Ana', 1945, 'F', 121), +(56964, 'Belva', 1945, 'F', 121), +(56965, 'Cathie', 1945, 'F', 121), +(56966, 'Elinor', 1945, 'F', 121), +(56967, 'Enid', 1945, 'F', 121), +(56968, 'Alison', 1945, 'F', 120), +(56969, 'Juana', 1945, 'F', 120), +(56970, 'Annetta', 1945, 'F', 119), +(56971, 'Carolee', 1945, 'F', 119), +(56972, 'Claudine', 1945, 'F', 119), +(56973, 'Ginny', 1945, 'F', 119), +(56974, 'Lucile', 1945, 'F', 119), +(56975, 'Ophelia', 1945, 'F', 119), +(56976, 'Shannon', 1945, 'F', 119), +(56977, 'Susanna', 1945, 'F', 119), +(56978, 'Donnie', 1945, 'F', 118), +(56979, 'Dorene', 1945, 'F', 118), +(56980, 'Crystal', 1945, 'F', 117), +(56981, 'Jacklyn', 1945, 'F', 117), +(56982, 'Alexandra', 1945, 'F', 116), +(56983, 'Jerilyn', 1945, 'F', 116), +(56984, 'Marcy', 1945, 'F', 116), +(56985, 'Mickey', 1945, 'F', 116), +(56986, 'Portia', 1945, 'F', 115), +(56987, 'Carolina', 1945, 'F', 114), +(56988, 'Elise', 1945, 'F', 113), +(56989, 'Florine', 1945, 'F', 113), +(56990, 'Elida', 1945, 'F', 112), +(56991, 'Francisca', 1945, 'F', 112), +(56992, 'Lauretta', 1945, 'F', 112), +(56993, 'Lavern', 1945, 'F', 112), +(56994, 'Louisa', 1945, 'F', 112), +(56995, 'Marta', 1945, 'F', 112), +(56996, 'Minerva', 1945, 'F', 112), +(56997, 'Carmella', 1945, 'F', 111), +(56998, 'Charlie', 1945, 'F', 111), +(56999, 'Georgie', 1945, 'F', 111), +(57000, 'Manuela', 1945, 'F', 111), +(57001, 'Pattie', 1945, 'F', 111), +(57002, 'Adela', 1945, 'F', 110), +(57003, 'Althea', 1945, 'F', 110), +(57004, 'Evangeline', 1945, 'F', 109), +(57005, 'Lona', 1945, 'F', 109), +(57006, 'Mariann', 1945, 'F', 109), +(57007, 'Belinda', 1945, 'F', 108), +(57008, 'Flossie', 1945, 'F', 108), +(57009, 'Sheron', 1945, 'F', 108), +(57010, 'Tana', 1945, 'F', 108), +(57011, 'Suellen', 1945, 'F', 107), +(57012, 'Gene', 1945, 'F', 106), +(57013, 'Katheryn', 1945, 'F', 106), +(57014, 'Libby', 1945, 'F', 106), +(57015, 'Ofelia', 1945, 'F', 106), +(57016, 'Richard', 1945, 'F', 106), +(57017, 'Treva', 1945, 'F', 106), +(57018, 'Annabelle', 1945, 'F', 105), +(57019, 'Georgiana', 1945, 'F', 105), +(57020, 'Leanne', 1945, 'F', 105), +(57021, 'Caren', 1945, 'F', 104), +(57022, 'Daphne', 1945, 'F', 104), +(57023, 'Leta', 1945, 'F', 104), +(57024, 'Patrice', 1945, 'F', 104), +(57025, 'Georgene', 1945, 'F', 103), +(57026, 'Sophia', 1945, 'F', 103), +(57027, 'Aleta', 1945, 'F', 102), +(57028, 'Charmaine', 1945, 'F', 102), +(57029, 'Nanci', 1945, 'F', 102), +(57030, 'Aline', 1945, 'F', 101), +(57031, 'Allene', 1945, 'F', 101), +(57032, 'Candice', 1945, 'F', 101), +(57033, 'Jeraldine', 1945, 'F', 101), +(57034, 'Linnea', 1945, 'F', 101), +(57035, 'Marina', 1945, 'F', 101), +(57036, 'Phoebe', 1945, 'F', 101), +(57037, 'Selma', 1945, 'F', 101), +(57038, 'Tonya', 1945, 'F', 101), +(57039, 'Beryl', 1945, 'F', 100), +(57040, 'Fran', 1945, 'F', 100), +(57041, 'Hester', 1945, 'F', 100), +(57042, 'Sophie', 1945, 'F', 100), +(57043, 'Thomas', 1945, 'F', 100), +(57044, 'James', 1945, 'M', 74450), +(57045, 'Robert', 1945, 'M', 69926), +(57046, 'John', 1945, 'M', 66123), +(57047, 'William', 1945, 'M', 50209), +(57048, 'Richard', 1945, 'M', 46045), +(57049, 'David', 1945, 'M', 37093), +(57050, 'Charles', 1945, 'M', 32461), +(57051, 'Thomas', 1945, 'M', 31877), +(57052, 'Michael', 1945, 'M', 29912), +(57053, 'Ronald', 1945, 'M', 23666), +(57054, 'Larry', 1945, 'M', 22817), +(57055, 'Donald', 1945, 'M', 22135), +(57056, 'Gary', 1945, 'M', 21342), +(57057, 'Joseph', 1945, 'M', 20820), +(57058, 'George', 1945, 'M', 19314), +(57059, 'Kenneth', 1945, 'M', 18094), +(57060, 'Paul', 1945, 'M', 16997), +(57061, 'Edward', 1945, 'M', 15867), +(57062, 'Dennis', 1945, 'M', 14987), +(57063, 'Jerry', 1945, 'M', 14698), +(57064, 'Frank', 1945, 'M', 10867), +(57065, 'Roger', 1945, 'M', 10569), +(57066, 'Raymond', 1945, 'M', 9856), +(57067, 'Daniel', 1945, 'M', 9707), +(57068, 'Gerald', 1945, 'M', 8860), +(57069, 'Stephen', 1945, 'M', 8635), +(57070, 'Walter', 1945, 'M', 7574), +(57071, 'Harold', 1945, 'M', 7526), +(57072, 'Douglas', 1945, 'M', 7396), +(57073, 'Lawrence', 1945, 'M', 7165), +(57074, 'Willie', 1945, 'M', 7032), +(57075, 'Jack', 1945, 'M', 6855), +(57076, 'Terry', 1945, 'M', 6836), +(57077, 'Arthur', 1945, 'M', 6804), +(57078, 'Wayne', 1945, 'M', 6738), +(57079, 'Joe', 1945, 'M', 6626), +(57080, 'Henry', 1945, 'M', 6601), +(57081, 'Peter', 1945, 'M', 6486), +(57082, 'Carl', 1945, 'M', 6313), +(57083, 'Roy', 1945, 'M', 6179), +(57084, 'Jimmy', 1945, 'M', 6153), +(57085, 'Billy', 1945, 'M', 6015), +(57086, 'Steven', 1945, 'M', 5974), +(57087, 'Ralph', 1945, 'M', 5780), +(57088, 'Johnny', 1945, 'M', 5698), +(57089, 'Anthony', 1945, 'M', 5686), +(57090, 'Harry', 1945, 'M', 5652), +(57091, 'Bruce', 1945, 'M', 5611), +(57092, 'Albert', 1945, 'M', 5430), +(57093, 'Eugene', 1945, 'M', 5163), +(57094, 'Fred', 1945, 'M', 5115), +(57095, 'Alan', 1945, 'M', 5073), +(57096, 'Bobby', 1945, 'M', 5051), +(57097, 'Howard', 1945, 'M', 4766), +(57098, 'Louis', 1945, 'M', 4479), +(57099, 'Danny', 1945, 'M', 4174), +(57100, 'Leonard', 1945, 'M', 4122), +(57101, 'Philip', 1945, 'M', 4108), +(57102, 'Stanley', 1945, 'M', 4060), +(57103, 'Ernest', 1945, 'M', 4005), +(57104, 'Dale', 1945, 'M', 3958), +(57105, 'Samuel', 1945, 'M', 3955), +(57106, 'Patrick', 1945, 'M', 3853), +(57107, 'Russell', 1945, 'M', 3801), +(57108, 'Norman', 1945, 'M', 3726), +(57109, 'Bill', 1945, 'M', 3712), +(57110, 'Ronnie', 1945, 'M', 3644), +(57111, 'Jim', 1945, 'M', 3622), +(57112, 'Timothy', 1945, 'M', 3593), +(57113, 'Mike', 1945, 'M', 3591), +(57114, 'Earl', 1945, 'M', 3566), +(57115, 'Mark', 1945, 'M', 3546), +(57116, 'Allen', 1945, 'M', 3484), +(57117, 'Don', 1945, 'M', 3483), +(57118, 'Francis', 1945, 'M', 3450), +(57119, 'Tommy', 1945, 'M', 3449), +(57120, 'Frederick', 1945, 'M', 3434), +(57121, 'Melvin', 1945, 'M', 3400), +(57122, 'Steve', 1945, 'M', 3385), +(57123, 'Marvin', 1945, 'M', 3294), +(57124, 'Eddie', 1945, 'M', 3224), +(57125, 'Clarence', 1945, 'M', 3188), +(57126, 'Leroy', 1945, 'M', 3176), +(57127, 'Barry', 1945, 'M', 3137), +(57128, 'Phillip', 1945, 'M', 3080), +(57129, 'Andrew', 1945, 'M', 3008), +(57130, 'Lee', 1945, 'M', 2938), +(57131, 'Alfred', 1945, 'M', 2895), +(57132, 'Tom', 1945, 'M', 2893), +(57133, 'Martin', 1945, 'M', 2823), +(57134, 'Jeffrey', 1945, 'M', 2782), +(57135, 'Ray', 1945, 'M', 2740), +(57136, 'Glenn', 1945, 'M', 2732), +(57137, 'Herbert', 1945, 'M', 2658), +(57138, 'Victor', 1945, 'M', 2625), +(57139, 'Gregory', 1945, 'M', 2475), +(57140, 'Curtis', 1945, 'M', 2393), +(57141, 'Bernard', 1945, 'M', 2390), +(57142, 'Clifford', 1945, 'M', 2381), +(57143, 'Gene', 1945, 'M', 2372), +(57144, 'Theodore', 1945, 'M', 2349), +(57145, 'Jimmie', 1945, 'M', 2292), +(57146, 'Lloyd', 1945, 'M', 2219), +(57147, 'Jesse', 1945, 'M', 2188), +(57148, 'Warren', 1945, 'M', 2185), +(57149, 'Rodney', 1945, 'M', 2184), +(57150, 'Bob', 1945, 'M', 2175), +(57151, 'Keith', 1945, 'M', 2163), +(57152, 'Gordon', 1945, 'M', 2147), +(57153, 'Vincent', 1945, 'M', 2120), +(57154, 'Leon', 1945, 'M', 2098), +(57155, 'Jon', 1945, 'M', 2044), +(57156, 'Brian', 1945, 'M', 1991), +(57157, 'Floyd', 1945, 'M', 1982), +(57158, 'Leslie', 1945, 'M', 1976), +(57159, 'Harvey', 1945, 'M', 1975), +(57160, 'Edwin', 1945, 'M', 1949), +(57161, 'Vernon', 1945, 'M', 1933), +(57162, 'Franklin', 1945, 'M', 1894), +(57163, 'Alvin', 1945, 'M', 1860), +(57164, 'Clyde', 1945, 'M', 1858), +(57165, 'Jerome', 1945, 'M', 1841), +(57166, 'Lewis', 1945, 'M', 1835), +(57167, 'Calvin', 1945, 'M', 1798), +(57168, 'Jay', 1945, 'M', 1759), +(57169, 'Dwight', 1945, 'M', 1753), +(57170, 'Dan', 1945, 'M', 1726), +(57171, 'Charlie', 1945, 'M', 1724), +(57172, 'Tony', 1945, 'M', 1642), +(57173, 'Gilbert', 1945, 'M', 1622), +(57174, 'Lester', 1945, 'M', 1617), +(57175, 'Jose', 1945, 'M', 1606), +(57176, 'Craig', 1945, 'M', 1600), +(57177, 'Johnnie', 1945, 'M', 1600), +(57178, 'Joel', 1945, 'M', 1598), +(57179, 'Dean', 1945, 'M', 1586), +(57180, 'Duane', 1945, 'M', 1583), +(57181, 'Allan', 1945, 'M', 1579), +(57182, 'Leo', 1945, 'M', 1579), +(57183, 'Benjamin', 1945, 'M', 1562), +(57184, 'Darrell', 1945, 'M', 1521), +(57185, 'Jackie', 1945, 'M', 1493), +(57186, 'Lonnie', 1945, 'M', 1464), +(57187, 'Chester', 1945, 'M', 1443), +(57188, 'Freddie', 1945, 'M', 1426), +(57189, 'Herman', 1945, 'M', 1418), +(57190, 'Arnold', 1945, 'M', 1404), +(57191, 'Randall', 1945, 'M', 1394), +(57192, 'Glen', 1945, 'M', 1393), +(57193, 'Manuel', 1945, 'M', 1391), +(57194, 'Nicholas', 1945, 'M', 1356), +(57195, 'Cecil', 1945, 'M', 1355), +(57196, 'Eric', 1945, 'M', 1352), +(57197, 'Milton', 1945, 'M', 1347), +(57198, 'Ted', 1945, 'M', 1237), +(57199, 'Lynn', 1945, 'M', 1217), +(57200, 'Neil', 1945, 'M', 1211), +(57201, 'Roland', 1945, 'M', 1185), +(57202, 'Claude', 1945, 'M', 1166), +(57203, 'Christopher', 1945, 'M', 1138), +(57204, 'Sam', 1945, 'M', 1138), +(57205, 'Randy', 1945, 'M', 1106), +(57206, 'Wesley', 1945, 'M', 1105), +(57207, 'Dave', 1945, 'M', 1076), +(57208, 'Garry', 1945, 'M', 1050), +(57209, 'Juan', 1945, 'M', 1011), +(57210, 'Wallace', 1945, 'M', 1007), +(57211, 'Donnie', 1945, 'M', 990), +(57212, 'Elmer', 1945, 'M', 971), +(57213, 'Marshall', 1945, 'M', 970), +(57214, 'Hugh', 1945, 'M', 961), +(57215, 'Willard', 1945, 'M', 957), +(57216, 'Micheal', 1945, 'M', 950), +(57217, 'Sammy', 1945, 'M', 948), +(57218, 'Jessie', 1945, 'M', 942), +(57219, 'Oscar', 1945, 'M', 938), +(57220, 'Maurice', 1945, 'M', 911), +(57221, 'Alexander', 1945, 'M', 890), +(57222, 'Jonathan', 1945, 'M', 882), +(57223, 'Edgar', 1945, 'M', 869), +(57224, 'Nathaniel', 1945, 'M', 854), +(57225, 'Scott', 1945, 'M', 849), +(57226, 'Virgil', 1945, 'M', 844), +(57227, 'Marion', 1945, 'M', 840), +(57228, 'Sidney', 1945, 'M', 830), +(57229, 'Everett', 1945, 'M', 828), +(57230, 'Benny', 1945, 'M', 821), +(57231, 'Earnest', 1945, 'M', 810), +(57232, 'Max', 1945, 'M', 801), +(57233, 'Bennie', 1945, 'M', 792), +(57234, 'Stuart', 1945, 'M', 789), +(57235, 'Tim', 1945, 'M', 778), +(57236, 'Morris', 1945, 'M', 773), +(57237, 'Lyle', 1945, 'M', 766), +(57238, 'Karl', 1945, 'M', 760), +(57239, 'Guy', 1945, 'M', 759), +(57240, 'Dick', 1945, 'M', 758), +(57241, 'Matthew', 1945, 'M', 731), +(57242, 'Clifton', 1945, 'M', 721), +(57243, 'Carlos', 1945, 'M', 719), +(57244, 'Ben', 1945, 'M', 716), +(57245, 'Kent', 1945, 'M', 715), +(57246, 'Fredrick', 1945, 'M', 708), +(57247, 'Otis', 1945, 'M', 708), +(57248, 'Luther', 1945, 'M', 705), +(57249, 'Nelson', 1945, 'M', 696), +(57250, 'Kevin', 1945, 'M', 691), +(57251, 'Perry', 1945, 'M', 683), +(57252, 'Clinton', 1945, 'M', 682), +(57253, 'Gerard', 1945, 'M', 681), +(57254, 'Jesus', 1945, 'M', 662), +(57255, 'Ira', 1945, 'M', 658), +(57256, 'Carroll', 1945, 'M', 648), +(57257, 'Randolph', 1945, 'M', 645), +(57258, 'Homer', 1945, 'M', 641), +(57259, 'Alex', 1945, 'M', 640), +(57260, 'Delbert', 1945, 'M', 640), +(57261, 'Clayton', 1945, 'M', 636), +(57262, 'Loren', 1945, 'M', 623), +(57263, 'Marc', 1945, 'M', 613), +(57264, 'Troy', 1945, 'M', 613), +(57265, 'Hubert', 1945, 'M', 609), +(57266, 'Lowell', 1945, 'M', 603), +(57267, 'Tommie', 1945, 'M', 601), +(57268, 'Horace', 1945, 'M', 599), +(57269, 'Terrence', 1945, 'M', 598), +(57270, 'Laurence', 1945, 'M', 590), +(57271, 'Reginald', 1945, 'M', 588), +(57272, 'Wendell', 1945, 'M', 587), +(57273, 'Antonio', 1945, 'M', 586), +(57274, 'Frankie', 1945, 'M', 579), +(57275, 'Neal', 1945, 'M', 579), +(57276, 'Pete', 1945, 'M', 578), +(57277, 'Willis', 1945, 'M', 578), +(57278, 'Rudolph', 1945, 'M', 573), +(57279, 'Roosevelt', 1945, 'M', 566), +(57280, 'Byron', 1945, 'M', 563), +(57281, 'Oliver', 1945, 'M', 559), +(57282, 'Ruben', 1945, 'M', 559), +(57283, 'Ross', 1945, 'M', 555), +(57284, 'Alton', 1945, 'M', 553), +(57285, 'Chris', 1945, 'M', 551), +(57286, 'Rodger', 1945, 'M', 551), +(57287, 'Ron', 1945, 'M', 545), +(57288, 'Archie', 1945, 'M', 544), +(57289, 'Mack', 1945, 'M', 541), +(57290, 'Jeff', 1945, 'M', 540), +(57291, 'Leland', 1945, 'M', 540), +(57292, 'Truman', 1945, 'M', 540), +(57293, 'Wilbert', 1945, 'M', 536), +(57294, 'Jerald', 1945, 'M', 527), +(57295, 'Ricky', 1945, 'M', 523), +(57296, 'Kenny', 1945, 'M', 518), +(57297, 'Mitchell', 1945, 'M', 517), +(57298, 'Sherman', 1945, 'M', 512), +(57299, 'Rudy', 1945, 'M', 511), +(57300, 'Sylvester', 1945, 'M', 509), +(57301, 'Malcolm', 1945, 'M', 508), +(57302, 'Wilbur', 1945, 'M', 508), +(57303, 'Rick', 1945, 'M', 505), +(57304, 'Woodrow', 1945, 'M', 502), +(57305, 'Carlton', 1945, 'M', 500), +(57306, 'Jan', 1945, 'M', 496), +(57307, 'Pat', 1945, 'M', 492), +(57308, 'Myron', 1945, 'M', 491), +(57309, 'Nick', 1945, 'M', 490), +(57310, 'Nathan', 1945, 'M', 487), +(57311, 'Raul', 1945, 'M', 487), +(57312, 'Aaron', 1945, 'M', 485), +(57313, 'Julius', 1945, 'M', 485), +(57314, 'Rex', 1945, 'M', 484), +(57315, 'Ken', 1945, 'M', 480), +(57316, 'Dewey', 1945, 'M', 478), +(57317, 'Edmund', 1945, 'M', 478), +(57318, 'Salvatore', 1945, 'M', 474), +(57319, 'Darryl', 1945, 'M', 470), +(57320, 'Ramon', 1945, 'M', 470), +(57321, 'Teddy', 1945, 'M', 470), +(57322, 'Van', 1945, 'M', 466), +(57323, 'Julian', 1945, 'M', 465), +(57324, 'Isaac', 1945, 'M', 458), +(57325, 'Terrance', 1945, 'M', 458), +(57326, 'Doyle', 1945, 'M', 457), +(57327, 'Preston', 1945, 'M', 447), +(57328, 'Forrest', 1945, 'M', 440), +(57329, 'Ivan', 1945, 'M', 439), +(57330, 'Roberto', 1945, 'M', 438), +(57331, 'Darrel', 1945, 'M', 431), +(57332, 'Clark', 1945, 'M', 426), +(57333, 'Grady', 1945, 'M', 420), +(57334, 'Ellis', 1945, 'M', 417), +(57335, 'Ervin', 1945, 'M', 417), +(57336, 'Jacob', 1945, 'M', 416), +(57337, 'Sammie', 1945, 'M', 416), +(57338, 'Elbert', 1945, 'M', 414), +(57339, 'Rufus', 1945, 'M', 411), +(57340, 'Felix', 1945, 'M', 404), +(57341, 'Lance', 1945, 'M', 401), +(57342, 'Junior', 1945, 'M', 400), +(57343, 'Wilson', 1945, 'M', 398), +(57344, 'Mickey', 1945, 'M', 397), +(57345, 'Daryl', 1945, 'M', 391), +(57346, 'Phil', 1945, 'M', 387), +(57347, 'Dallas', 1945, 'M', 381), +(57348, 'Ernie', 1945, 'M', 381), +(57349, 'Wade', 1945, 'M', 380), +(57350, 'Merle', 1945, 'M', 373), +(57351, 'Owen', 1945, 'M', 369), +(57352, 'Tyrone', 1945, 'M', 369), +(57353, 'Sheldon', 1945, 'M', 368), +(57354, 'Francisco', 1945, 'M', 367), +(57355, 'Pedro', 1945, 'M', 367), +(57356, 'Luis', 1945, 'M', 366), +(57357, 'Greg', 1945, 'M', 355), +(57358, 'Jeffery', 1945, 'M', 353), +(57359, 'Eldon', 1945, 'M', 352), +(57360, 'Irvin', 1945, 'M', 351), +(57361, 'Stewart', 1945, 'M', 349), +(57362, 'Andy', 1945, 'M', 346), +(57363, 'Mario', 1945, 'M', 345), +(57364, 'Grant', 1945, 'M', 343), +(57365, 'Percy', 1945, 'M', 343), +(57366, 'Dana', 1945, 'M', 340), +(57367, 'Freddy', 1945, 'M', 336), +(57368, 'Conrad', 1945, 'M', 332), +(57369, 'Orville', 1945, 'M', 332), +(57370, 'Louie', 1945, 'M', 328), +(57371, 'Bert', 1945, 'M', 327), +(57372, 'Denis', 1945, 'M', 327), +(57373, 'Buddy', 1945, 'M', 323), +(57374, 'Guadalupe', 1945, 'M', 323), +(57375, 'Harlan', 1945, 'M', 323), +(57376, 'Royce', 1945, 'M', 323), +(57377, 'Geoffrey', 1945, 'M', 321), +(57378, 'Boyd', 1945, 'M', 318), +(57379, 'Noel', 1945, 'M', 317), +(57380, 'Garland', 1945, 'M', 316), +(57381, 'Ed', 1945, 'M', 312), +(57382, 'Elliott', 1945, 'M', 311), +(57383, 'Kerry', 1945, 'M', 310), +(57384, 'Bradley', 1945, 'M', 309), +(57385, 'Bryan', 1945, 'M', 308), +(57386, 'Harley', 1945, 'M', 307), +(57387, 'Travis', 1945, 'M', 307), +(57388, 'Lionel', 1945, 'M', 305), +(57389, 'Emmett', 1945, 'M', 303), +(57390, 'Robin', 1945, 'M', 294), +(57391, 'Wilfred', 1945, 'M', 293), +(57392, 'Billie', 1945, 'M', 292), +(57393, 'Aubrey', 1945, 'M', 291), +(57394, 'Gale', 1945, 'M', 287), +(57395, 'Angelo', 1945, 'M', 285), +(57396, 'Cleveland', 1945, 'M', 283), +(57397, 'Marcus', 1945, 'M', 281), +(57398, 'Ricardo', 1945, 'M', 281), +(57399, 'Armando', 1945, 'M', 280), +(57400, 'Marlin', 1945, 'M', 280), +(57401, 'Gerry', 1945, 'M', 276), +(57402, 'Burton', 1945, 'M', 273), +(57403, 'Denny', 1945, 'M', 273), +(57404, 'Winston', 1945, 'M', 271), +(57405, 'Edmond', 1945, 'M', 270), +(57406, 'Brent', 1945, 'M', 269), +(57407, 'Irving', 1945, 'M', 266), +(57408, 'Spencer', 1945, 'M', 266), +(57409, 'Bobbie', 1945, 'M', 265), +(57410, 'Ronny', 1945, 'M', 265), +(57411, 'Kurt', 1945, 'M', 264), +(57412, 'Amos', 1945, 'M', 263), +(57413, 'Grover', 1945, 'M', 263), +(57414, 'Cornelius', 1945, 'M', 262), +(57415, 'Rickey', 1945, 'M', 262), +(57416, 'Alfonso', 1945, 'M', 261), +(57417, 'Hector', 1945, 'M', 258), +(57418, 'Salvador', 1945, 'M', 258), +(57419, 'Ned', 1945, 'M', 256), +(57420, 'Rene', 1945, 'M', 249), +(57421, 'Dwayne', 1945, 'M', 248), +(57422, 'Roderick', 1945, 'M', 247), +(57423, 'Chuck', 1945, 'M', 245), +(57424, 'Austin', 1945, 'M', 244), +(57425, 'Kermit', 1945, 'M', 243), +(57426, 'Terence', 1945, 'M', 243), +(57427, 'Thurman', 1945, 'M', 242), +(57428, 'Lanny', 1945, 'M', 241), +(57429, 'Kelly', 1945, 'M', 240), +(57430, 'Cary', 1945, 'M', 236), +(57431, 'Elijah', 1945, 'M', 236), +(57432, 'Lorenzo', 1945, 'M', 236), +(57433, 'Dominick', 1945, 'M', 235), +(57434, 'Loyd', 1945, 'M', 235), +(57435, 'Darwin', 1945, 'M', 234), +(57436, 'Dominic', 1945, 'M', 234), +(57437, 'Moses', 1945, 'M', 233), +(57438, 'Adrian', 1945, 'M', 231), +(57439, 'Miguel', 1945, 'M', 228), +(57440, 'Linwood', 1945, 'M', 227), +(57441, 'Roscoe', 1945, 'M', 226), +(57442, 'Frederic', 1945, 'M', 224), +(57443, 'Harrison', 1945, 'M', 224), +(57444, 'Alfredo', 1945, 'M', 223), +(57445, 'Emil', 1945, 'M', 223), +(57446, 'Doug', 1945, 'M', 222), +(57447, 'Elwood', 1945, 'M', 222), +(57448, 'Elton', 1945, 'M', 221), +(57449, 'Arturo', 1945, 'M', 220), +(57450, 'Alonzo', 1945, 'M', 219), +(57451, 'Fernando', 1945, 'M', 219), +(57452, 'Al', 1945, 'M', 216), +(57453, 'Sterling', 1945, 'M', 216), +(57454, 'Norris', 1945, 'M', 214), +(57455, 'Dannie', 1945, 'M', 213), +(57456, 'Barney', 1945, 'M', 211), +(57457, 'Hal', 1945, 'M', 211), +(57458, 'Adam', 1945, 'M', 209), +(57459, 'Kirk', 1945, 'M', 209), +(57460, 'Vance', 1945, 'M', 208), +(57461, 'Abraham', 1945, 'M', 206), +(57462, 'Odell', 1945, 'M', 205), +(57463, 'August', 1945, 'M', 200), +(57464, 'Rodolfo', 1945, 'M', 200), +(57465, 'Weldon', 1945, 'M', 200), +(57466, 'Galen', 1945, 'M', 199), +(57467, 'Millard', 1945, 'M', 199), +(57468, 'Lamar', 1945, 'M', 198), +(57469, 'Mary', 1945, 'M', 198), +(57470, 'Fredric', 1945, 'M', 196), +(57471, 'Norbert', 1945, 'M', 196), +(57472, 'Wiley', 1945, 'M', 193), +(57473, 'Carol', 1945, 'M', 192), +(57474, 'Will', 1945, 'M', 191), +(57475, 'Jasper', 1945, 'M', 190), +(57476, 'Emanuel', 1945, 'M', 189), +(57477, 'Murray', 1945, 'M', 189), +(57478, 'Kim', 1945, 'M', 188), +(57479, 'Maynard', 1945, 'M', 188), +(57480, 'Merlin', 1945, 'M', 187), +(57481, 'Irwin', 1945, 'M', 186), +(57482, 'Sanford', 1945, 'M', 185), +(57483, 'Bradford', 1945, 'M', 184), +(57484, 'Vaughn', 1945, 'M', 184), +(57485, 'Reuben', 1945, 'M', 181), +(57486, 'Harris', 1945, 'M', 180), +(57487, 'Ernesto', 1945, 'M', 179), +(57488, 'Simon', 1945, 'M', 179), +(57489, 'Levi', 1945, 'M', 178), +(57490, 'Russel', 1945, 'M', 177), +(57491, 'Elvin', 1945, 'M', 176), +(57492, 'Otto', 1945, 'M', 175), +(57493, 'Nolan', 1945, 'M', 174), +(57494, 'Ollie', 1945, 'M', 174), +(57495, 'Gregg', 1945, 'M', 173), +(57496, 'Merrill', 1945, 'M', 171), +(57497, 'Rafael', 1945, 'M', 171), +(57498, 'Carmen', 1945, 'M', 170), +(57499, 'Jerold', 1945, 'M', 170), +(57500, 'Gilberto', 1945, 'M', 169), +(57501, 'Jackson', 1945, 'M', 168), +(57502, 'Gail', 1945, 'M', 167), +(57503, 'Hollis', 1945, 'M', 167), +(57504, 'Jake', 1945, 'M', 167), +(57505, 'Jess', 1945, 'M', 167), +(57506, 'Alberto', 1945, 'M', 165), +(57507, 'Coy', 1945, 'M', 164), +(57508, 'Enrique', 1945, 'M', 164), +(57509, 'Gabriel', 1945, 'M', 164), +(57510, 'Todd', 1945, 'M', 163), +(57511, 'Tomas', 1945, 'M', 163), +(57512, 'Gus', 1945, 'M', 162), +(57513, 'Miles', 1945, 'M', 162), +(57514, 'Connie', 1945, 'M', 159), +(57515, 'Laverne', 1945, 'M', 159), +(57516, 'Dewayne', 1945, 'M', 158), +(57517, 'Emory', 1945, 'M', 158), +(57518, 'Jerrold', 1945, 'M', 158), +(57519, 'Johnie', 1945, 'M', 158), +(57520, 'Kennith', 1945, 'M', 158), +(57521, 'Andre', 1945, 'M', 157), +(57522, 'Elliot', 1945, 'M', 157), +(57523, 'Jean', 1945, 'M', 157), +(57524, 'Charley', 1945, 'M', 156), +(57525, 'Monroe', 1945, 'M', 155), +(57526, 'Stan', 1945, 'M', 155), +(57527, 'Ward', 1945, 'M', 155), +(57528, 'Dudley', 1945, 'M', 154), +(57529, 'Felipe', 1945, 'M', 154), +(57530, 'Stephan', 1945, 'M', 154), +(57531, 'Rolland', 1945, 'M', 153), +(57532, 'Denver', 1945, 'M', 152), +(57533, 'Shelby', 1945, 'M', 152), +(57534, 'Erwin', 1945, 'M', 150), +(57535, 'Tracy', 1945, 'M', 150), +(57536, 'Delmar', 1945, 'M', 149), +(57537, 'Eddy', 1945, 'M', 147), +(57538, 'Vern', 1945, 'M', 147), +(57539, 'Lupe', 1945, 'M', 146), +(57540, 'Dickie', 1945, 'M', 144), +(57541, 'Reynaldo', 1945, 'M', 144), +(57542, 'Royal', 1945, 'M', 144), +(57543, 'Shirley', 1945, 'M', 144), +(57544, 'Mac', 1945, 'M', 143), +(57545, 'Monty', 1945, 'M', 142), +(57546, 'Christian', 1945, 'M', 141), +(57547, 'Dexter', 1945, 'M', 140), +(57548, 'Thaddeus', 1945, 'M', 140), +(57549, 'Winfred', 1945, 'M', 140), +(57550, 'Julio', 1945, 'M', 139), +(57551, 'Monte', 1945, 'M', 139), +(57552, 'Riley', 1945, 'M', 139), +(57553, 'Evan', 1945, 'M', 138), +(57554, 'Ramiro', 1945, 'M', 138), +(57555, 'Armand', 1945, 'M', 137), +(57556, 'Blaine', 1945, 'M', 137), +(57557, 'Domingo', 1945, 'M', 137), +(57558, 'Clement', 1945, 'M', 136), +(57559, 'Alphonso', 1945, 'M', 135), +(57560, 'Booker', 1945, 'M', 135), +(57561, 'Noah', 1945, 'M', 133), +(57562, 'Terrell', 1945, 'M', 133), +(57563, 'Carey', 1945, 'M', 132), +(57564, 'Clair', 1945, 'M', 132), +(57565, 'Rocco', 1945, 'M', 132), +(57566, 'Santiago', 1945, 'M', 132), +(57567, 'Elias', 1945, 'M', 131), +(57568, 'Buford', 1945, 'M', 129), +(57569, 'Kendall', 1945, 'M', 129), +(57570, 'Bernie', 1945, 'M', 128), +(57571, 'Wilford', 1945, 'M', 128), +(57572, 'Hershel', 1945, 'M', 127), +(57573, 'Jorge', 1945, 'M', 127), +(57574, 'Pablo', 1945, 'M', 127), +(57575, 'Sandy', 1945, 'M', 127), +(57576, 'Carter', 1945, 'M', 126), +(57577, 'Davis', 1945, 'M', 126), +(57578, 'Angel', 1945, 'M', 125), +(57579, 'Colin', 1945, 'M', 125), +(57580, 'Eli', 1945, 'M', 125), +(57581, 'Rogers', 1945, 'M', 124), +(57582, 'Toby', 1945, 'M', 123), +(57583, 'Gayle', 1945, 'M', 122), +(57584, 'Justin', 1945, 'M', 122), +(57585, 'Santos', 1945, 'M', 122), +(57586, 'Major', 1945, 'M', 121), +(57587, 'Randal', 1945, 'M', 121), +(57588, 'Emery', 1945, 'M', 120), +(57589, 'Errol', 1945, 'M', 120), +(57590, 'Jason', 1945, 'M', 120), +(57591, 'Joey', 1945, 'M', 120), +(57592, 'Lavern', 1945, 'M', 120), +(57593, 'Garrett', 1945, 'M', 119), +(57594, 'Herschel', 1945, 'M', 119), +(57595, 'Marty', 1945, 'M', 119), +(57596, 'Jeremiah', 1945, 'M', 118), +(57597, 'Luke', 1945, 'M', 118), +(57598, 'Adolph', 1945, 'M', 117), +(57599, 'Solomon', 1945, 'M', 117), +(57600, 'Gaylord', 1945, 'M', 116), +(57601, 'Isaiah', 1945, 'M', 116), +(57602, 'Alva', 1945, 'M', 115), +(57603, 'Delano', 1945, 'M', 115), +(57604, 'Ignacio', 1945, 'M', 115), +(57605, 'Wilmer', 1945, 'M', 115), +(57606, 'Duncan', 1945, 'M', 114), +(57607, 'Freeman', 1945, 'M', 114), +(57608, 'Milford', 1945, 'M', 114), +(57609, 'Ulysses', 1945, 'M', 114), +(57610, 'Abel', 1945, 'M', 113), +(57611, 'Anton', 1945, 'M', 113), +(57612, 'Theron', 1945, 'M', 113), +(57613, 'Wilburn', 1945, 'M', 113), +(57614, 'Donny', 1945, 'M', 112), +(57615, 'Mcarthur', 1945, 'M', 112), +(57616, 'Morgan', 1945, 'M', 112), +(57617, 'Reed', 1945, 'M', 112), +(57618, 'Silas', 1945, 'M', 112), +(57619, 'Linda', 1945, 'M', 111), +(57620, 'Lon', 1945, 'M', 111), +(57621, 'Barton', 1945, 'M', 110), +(57622, 'Forest', 1945, 'M', 110), +(57623, 'Earle', 1945, 'M', 109), +(57624, 'Carrol', 1945, 'M', 108), +(57625, 'Morton', 1945, 'M', 108), +(57626, 'Andres', 1945, 'M', 107), +(57627, 'Everette', 1945, 'M', 107), +(57628, 'Bennett', 1945, 'M', 106), +(57629, 'Cleo', 1945, 'M', 106), +(57630, 'Foster', 1945, 'M', 106), +(57631, 'Kirby', 1945, 'M', 106), +(57632, 'Lenard', 1945, 'M', 106), +(57633, 'Shelton', 1945, 'M', 106), +(57634, 'Alden', 1945, 'M', 105), +(57635, 'Art', 1945, 'M', 105), +(57636, 'Jefferson', 1945, 'M', 105), +(57637, 'Mervin', 1945, 'M', 105), +(57638, 'Odis', 1945, 'M', 105), +(57639, 'Dalton', 1945, 'M', 104), +(57640, 'Otha', 1945, 'M', 104), +(57641, 'Raleigh', 1945, 'M', 104), +(57642, 'Joesph', 1945, 'M', 102), +(57643, 'Wally', 1945, 'M', 102), +(57644, 'Basil', 1945, 'M', 101), +(57645, 'Donn', 1945, 'M', 101), +(57646, 'Quentin', 1945, 'M', 101), +(57647, 'Woody', 1945, 'M', 101), +(57648, 'Emilio', 1945, 'M', 100), +(57649, 'Lamont', 1945, 'M', 100), +(57650, 'Lyman', 1945, 'M', 100), +(57651, 'Mary', 1946, 'F', 67463), +(57652, 'Linda', 1946, 'F', 52708), +(57653, 'Patricia', 1946, 'F', 46295), +(57654, 'Barbara', 1946, 'F', 45120), +(57655, 'Carol', 1946, 'F', 34280), +(57656, 'Sandra', 1946, 'F', 31691), +(57657, 'Nancy', 1946, 'F', 28345), +(57658, 'Susan', 1946, 'F', 28268), +(57659, 'Sharon', 1946, 'F', 27823), +(57660, 'Judith', 1946, 'F', 22305), +(57661, 'Judy', 1946, 'F', 20478), +(57662, 'Carolyn', 1946, 'F', 19898), +(57663, 'Donna', 1946, 'F', 19767), +(57664, 'Betty', 1946, 'F', 19711), +(57665, 'Karen', 1946, 'F', 19645), +(57666, 'Kathleen', 1946, 'F', 18758), +(57667, 'Margaret', 1946, 'F', 18133), +(57668, 'Shirley', 1946, 'F', 17865), +(57669, 'Diane', 1946, 'F', 15830), +(57670, 'Joyce', 1946, 'F', 15213), +(57671, 'Janet', 1946, 'F', 14140), +(57672, 'Janice', 1946, 'F', 14036), +(57673, 'Dorothy', 1946, 'F', 12795), +(57674, 'Brenda', 1946, 'F', 12689), +(57675, 'Elizabeth', 1946, 'F', 11751), +(57676, 'Gloria', 1946, 'F', 11686), +(57677, 'Cheryl', 1946, 'F', 11525), +(57678, 'Joan', 1946, 'F', 11218), +(57679, 'Marilyn', 1946, 'F', 10710), +(57680, 'Beverly', 1946, 'F', 10430), +(57681, 'Virginia', 1946, 'F', 10016), +(57682, 'Martha', 1946, 'F', 9760), +(57683, 'Bonnie', 1946, 'F', 9503), +(57684, 'Pamela', 1946, 'F', 9367), +(57685, 'Jane', 1946, 'F', 8969), +(57686, 'Helen', 1946, 'F', 8851), +(57687, 'Jean', 1946, 'F', 8555), +(57688, 'Ruth', 1946, 'F', 8474), +(57689, 'Frances', 1946, 'F', 8454), +(57690, 'Ann', 1946, 'F', 8076), +(57691, 'Phyllis', 1946, 'F', 8046), +(57692, 'Diana', 1946, 'F', 7543), +(57693, 'Peggy', 1946, 'F', 7397), +(57694, 'Alice', 1946, 'F', 7364), +(57695, 'Connie', 1946, 'F', 7217), +(57696, 'Cynthia', 1946, 'F', 6892), +(57697, 'Elaine', 1946, 'F', 6800), +(57698, 'Catherine', 1946, 'F', 6366), +(57699, 'Gail', 1946, 'F', 6228), +(57700, 'Christine', 1946, 'F', 6201), +(57701, 'Doris', 1946, 'F', 5987), +(57702, 'Suzanne', 1946, 'F', 5949), +(57703, 'Jo', 1946, 'F', 5827), +(57704, 'Marie', 1946, 'F', 5759), +(57705, 'Lois', 1946, 'F', 5699), +(57706, 'Rita', 1946, 'F', 5532), +(57707, 'Joanne', 1946, 'F', 5503), +(57708, 'Ellen', 1946, 'F', 5236), +(57709, 'Wanda', 1946, 'F', 5235), +(57710, 'Rose', 1946, 'F', 5179), +(57711, 'Sue', 1946, 'F', 5143), +(57712, 'Jacqueline', 1946, 'F', 5083), +(57713, 'Kathryn', 1946, 'F', 4999), +(57714, 'Charlotte', 1946, 'F', 4970), +(57715, 'Evelyn', 1946, 'F', 4888), +(57716, 'Geraldine', 1946, 'F', 4849), +(57717, 'Sally', 1946, 'F', 4843), +(57718, 'Rebecca', 1946, 'F', 4841), +(57719, 'Paula', 1946, 'F', 4725), +(57720, 'Sheila', 1946, 'F', 4706), +(57721, 'Darlene', 1946, 'F', 4662), +(57722, 'Carole', 1946, 'F', 4621), +(57723, 'Sherry', 1946, 'F', 4518), +(57724, 'Rosemary', 1946, 'F', 4488), +(57725, 'Laura', 1946, 'F', 4479), +(57726, 'Dianne', 1946, 'F', 4279), +(57727, 'Norma', 1946, 'F', 4267), +(57728, 'Katherine', 1946, 'F', 4197), +(57729, 'Kathy', 1946, 'F', 4178), +(57730, 'Eileen', 1946, 'F', 4171), +(57731, 'Anne', 1946, 'F', 4115), +(57732, 'Sylvia', 1946, 'F', 4093), +(57733, 'Jeanne', 1946, 'F', 4044), +(57734, 'Anita', 1946, 'F', 4027), +(57735, 'Patsy', 1946, 'F', 4016), +(57736, 'Roberta', 1946, 'F', 4016), +(57737, 'Anna', 1946, 'F', 3998), +(57738, 'Maria', 1946, 'F', 3962), +(57739, 'Marcia', 1946, 'F', 3946), +(57740, 'Joann', 1946, 'F', 3943), +(57741, 'Louise', 1946, 'F', 3927), +(57742, 'Sarah', 1946, 'F', 3905), +(57743, 'Lorraine', 1946, 'F', 3886), +(57744, 'Lynn', 1946, 'F', 3884), +(57745, 'Theresa', 1946, 'F', 3684), +(57746, 'Maureen', 1946, 'F', 3683), +(57747, 'Annie', 1946, 'F', 3649), +(57748, 'Marsha', 1946, 'F', 3612), +(57749, 'Glenda', 1946, 'F', 3567), +(57750, 'Constance', 1946, 'F', 3417), +(57751, 'Kay', 1946, 'F', 3357), +(57752, 'Irene', 1946, 'F', 3114), +(57753, 'Dolores', 1946, 'F', 3064), +(57754, 'Mildred', 1946, 'F', 3064); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(57755, 'Ruby', 1946, 'F', 3046), +(57756, 'Marjorie', 1946, 'F', 3040), +(57757, 'Charlene', 1946, 'F', 3036), +(57758, 'Vicki', 1946, 'F', 3011), +(57759, 'Lynda', 1946, 'F', 2999), +(57760, 'Juanita', 1946, 'F', 2985), +(57761, 'Loretta', 1946, 'F', 2893), +(57762, 'Marlene', 1946, 'F', 2818), +(57763, 'Arlene', 1946, 'F', 2800), +(57764, 'Julia', 1946, 'F', 2796), +(57765, 'Delores', 1946, 'F', 2780), +(57766, 'June', 1946, 'F', 2562), +(57767, 'Paulette', 1946, 'F', 2520), +(57768, 'Yvonne', 1946, 'F', 2477), +(57769, 'Deborah', 1946, 'F', 2470), +(57770, 'Vivian', 1946, 'F', 2425), +(57771, 'Jeanette', 1946, 'F', 2411), +(57772, 'Victoria', 1946, 'F', 2389), +(57773, 'Georgia', 1946, 'F', 2308), +(57774, 'Claudia', 1946, 'F', 2307), +(57775, 'Andrea', 1946, 'F', 2302), +(57776, 'Edna', 1946, 'F', 2280), +(57777, 'Josephine', 1946, 'F', 2229), +(57778, 'Julie', 1946, 'F', 2170), +(57779, 'Lillian', 1946, 'F', 2159), +(57780, 'Leslie', 1946, 'F', 2139), +(57781, 'Emma', 1946, 'F', 2072), +(57782, 'Gwendolyn', 1946, 'F', 2061), +(57783, 'Pauline', 1946, 'F', 2055), +(57784, 'Janis', 1946, 'F', 2053), +(57785, 'Sara', 1946, 'F', 2034), +(57786, 'Edith', 1946, 'F', 1976), +(57787, 'Lucille', 1946, 'F', 1957), +(57788, 'Margie', 1946, 'F', 1946), +(57789, 'Ethel', 1946, 'F', 1935), +(57790, 'Eleanor', 1946, 'F', 1933), +(57791, 'Gayle', 1946, 'F', 1926), +(57792, 'Annette', 1946, 'F', 1920), +(57793, 'Terry', 1946, 'F', 1918), +(57794, 'Clara', 1946, 'F', 1916), +(57795, 'Wilma', 1946, 'F', 1914), +(57796, 'Florence', 1946, 'F', 1907), +(57797, 'Pat', 1946, 'F', 1872), +(57798, 'Teresa', 1946, 'F', 1834), +(57799, 'Audrey', 1946, 'F', 1833), +(57800, 'Thelma', 1946, 'F', 1794), +(57801, 'Esther', 1946, 'F', 1779), +(57802, 'Maryann', 1946, 'F', 1765), +(57803, 'Grace', 1946, 'F', 1763), +(57804, 'Lynne', 1946, 'F', 1763), +(57805, 'Marion', 1946, 'F', 1751), +(57806, 'Jennifer', 1946, 'F', 1733), +(57807, 'Gladys', 1946, 'F', 1714), +(57808, 'Janie', 1946, 'F', 1704), +(57809, 'Willie', 1946, 'F', 1686), +(57810, 'Priscilla', 1946, 'F', 1659), +(57811, 'Eva', 1946, 'F', 1650), +(57812, 'Marian', 1946, 'F', 1648), +(57813, 'Penny', 1946, 'F', 1646), +(57814, 'Billie', 1946, 'F', 1635), +(57815, 'Sheryl', 1946, 'F', 1632), +(57816, 'Jill', 1946, 'F', 1624), +(57817, 'Cathy', 1946, 'F', 1623), +(57818, 'Rosa', 1946, 'F', 1619), +(57819, 'Denise', 1946, 'F', 1586), +(57820, 'Joy', 1946, 'F', 1574), +(57821, 'Bobbie', 1946, 'F', 1554), +(57822, 'Maxine', 1946, 'F', 1543), +(57823, 'Bertha', 1946, 'F', 1532), +(57824, 'Jackie', 1946, 'F', 1528), +(57825, 'Hazel', 1946, 'F', 1520), +(57826, 'Stephanie', 1946, 'F', 1508), +(57827, 'Ella', 1946, 'F', 1498), +(57828, 'Lillie', 1946, 'F', 1487), +(57829, 'Bernice', 1946, 'F', 1469), +(57830, 'Beatrice', 1946, 'F', 1463), +(57831, 'Valerie', 1946, 'F', 1439), +(57832, 'Faye', 1946, 'F', 1422), +(57833, 'Dianna', 1946, 'F', 1405), +(57834, 'Ida', 1946, 'F', 1390), +(57835, 'Toni', 1946, 'F', 1386), +(57836, 'Emily', 1946, 'F', 1379), +(57837, 'Michele', 1946, 'F', 1373), +(57838, 'Bernadette', 1946, 'F', 1320), +(57839, 'Harriet', 1946, 'F', 1300), +(57840, 'Lana', 1946, 'F', 1300), +(57841, 'Patty', 1946, 'F', 1289), +(57842, 'Angela', 1946, 'F', 1279), +(57843, 'Deanna', 1946, 'F', 1275), +(57844, 'Lucy', 1946, 'F', 1235), +(57845, 'Marianne', 1946, 'F', 1235), +(57846, 'Rachel', 1946, 'F', 1234), +(57847, 'Regina', 1946, 'F', 1233), +(57848, 'Bonita', 1946, 'F', 1213), +(57849, 'Jacquelyn', 1946, 'F', 1208), +(57850, 'Vera', 1946, 'F', 1206), +(57851, 'Veronica', 1946, 'F', 1206), +(57852, 'Yolanda', 1946, 'F', 1201), +(57853, 'Carla', 1946, 'F', 1200), +(57854, 'Vickie', 1946, 'F', 1195), +(57855, 'Rosie', 1946, 'F', 1181), +(57856, 'Sandy', 1946, 'F', 1180), +(57857, 'Jessie', 1946, 'F', 1173), +(57858, 'Alma', 1946, 'F', 1172), +(57859, 'Stella', 1946, 'F', 1160), +(57860, 'Jan', 1946, 'F', 1148), +(57861, 'Rosalie', 1946, 'F', 1128), +(57862, 'Claire', 1946, 'F', 1116), +(57863, 'Colleen', 1946, 'F', 1094), +(57864, 'Caroline', 1946, 'F', 1090), +(57865, 'Mattie', 1946, 'F', 1089), +(57866, 'Francine', 1946, 'F', 1083), +(57867, 'Susie', 1946, 'F', 1078), +(57868, 'Minnie', 1946, 'F', 1074), +(57869, 'Carrie', 1946, 'F', 1071), +(57870, 'Carmen', 1946, 'F', 1070), +(57871, 'Rosemarie', 1946, 'F', 1067), +(57872, 'Elsie', 1946, 'F', 1041), +(57873, 'Dawn', 1946, 'F', 1040), +(57874, 'Becky', 1946, 'F', 1038), +(57875, 'Bessie', 1946, 'F', 1022), +(57876, 'Nina', 1946, 'F', 1014), +(57877, 'Candace', 1946, 'F', 1001), +(57878, 'Dixie', 1946, 'F', 985), +(57879, 'Nora', 1946, 'F', 969), +(57880, 'Jeannette', 1946, 'F', 966), +(57881, 'Christina', 1946, 'F', 965), +(57882, 'Beth', 1946, 'F', 962), +(57883, 'Geneva', 1946, 'F', 955), +(57884, 'Dora', 1946, 'F', 943), +(57885, 'Madeline', 1946, 'F', 926), +(57886, 'Johnnie', 1946, 'F', 925), +(57887, 'Deloris', 1946, 'F', 916), +(57888, 'Trudy', 1946, 'F', 891), +(57889, 'Lydia', 1946, 'F', 886), +(57890, 'Nellie', 1946, 'F', 885), +(57891, 'Renee', 1946, 'F', 878), +(57892, 'Velma', 1946, 'F', 873), +(57893, 'Agnes', 1946, 'F', 868), +(57894, 'Naomi', 1946, 'F', 839), +(57895, 'Leona', 1946, 'F', 819), +(57896, 'Myra', 1946, 'F', 818), +(57897, 'Alberta', 1946, 'F', 811), +(57898, 'Lee', 1946, 'F', 807), +(57899, 'Mae', 1946, 'F', 804), +(57900, 'Cecilia', 1946, 'F', 802), +(57901, 'Cora', 1946, 'F', 800), +(57902, 'Marguerite', 1946, 'F', 800), +(57903, 'Iris', 1946, 'F', 797), +(57904, 'Ernestine', 1946, 'F', 788), +(57905, 'Doreen', 1946, 'F', 781), +(57906, 'Antoinette', 1946, 'F', 779), +(57907, 'Viola', 1946, 'F', 779), +(57908, 'Irma', 1946, 'F', 774), +(57909, 'Robin', 1946, 'F', 773), +(57910, 'Sharron', 1946, 'F', 770), +(57911, 'Laurie', 1946, 'F', 769), +(57912, 'Wendy', 1946, 'F', 762), +(57913, 'Michelle', 1946, 'F', 756), +(57914, 'Saundra', 1946, 'F', 744), +(57915, 'Verna', 1946, 'F', 742), +(57916, 'Hattie', 1946, 'F', 739), +(57917, 'Bette', 1946, 'F', 732), +(57918, 'Olivia', 1946, 'F', 728), +(57919, 'Ramona', 1946, 'F', 724), +(57920, 'Hilda', 1946, 'F', 716), +(57921, 'Jennie', 1946, 'F', 716), +(57922, 'Cecelia', 1946, 'F', 711), +(57923, 'Dana', 1946, 'F', 710), +(57924, 'Miriam', 1946, 'F', 699), +(57925, 'Lola', 1946, 'F', 698), +(57926, 'Betsy', 1946, 'F', 697), +(57927, 'Lena', 1946, 'F', 697), +(57928, 'Bettye', 1946, 'F', 695), +(57929, 'Bettie', 1946, 'F', 680), +(57930, 'Sharyn', 1946, 'F', 680), +(57931, 'Susanne', 1946, 'F', 680), +(57932, 'Laurel', 1946, 'F', 678), +(57933, 'Lula', 1946, 'F', 678), +(57934, 'Pearl', 1946, 'F', 678), +(57935, 'Cindy', 1946, 'F', 677), +(57936, 'Jeannie', 1946, 'F', 669), +(57937, 'Dale', 1946, 'F', 662), +(57938, 'Marcella', 1946, 'F', 659), +(57939, 'Penelope', 1946, 'F', 642), +(57940, 'Gertrude', 1946, 'F', 639), +(57941, 'Eunice', 1946, 'F', 632), +(57942, 'Myrna', 1946, 'F', 620), +(57943, 'Sondra', 1946, 'F', 617), +(57944, 'Violet', 1946, 'F', 614), +(57945, 'Laverne', 1946, 'F', 608), +(57946, 'Eloise', 1946, 'F', 607), +(57947, 'Fannie', 1946, 'F', 603), +(57948, 'Erma', 1946, 'F', 602), +(57949, 'Judi', 1946, 'F', 601), +(57950, 'Katie', 1946, 'F', 598), +(57951, 'Ginger', 1946, 'F', 596), +(57952, 'Vicky', 1946, 'F', 594), +(57953, 'Darla', 1946, 'F', 592), +(57954, 'Cheri', 1946, 'F', 591), +(57955, 'Della', 1946, 'F', 588), +(57956, 'Rhonda', 1946, 'F', 579), +(57957, 'Daisy', 1946, 'F', 578), +(57958, 'Myrtle', 1946, 'F', 571), +(57959, 'Gretchen', 1946, 'F', 567), +(57960, 'Gale', 1946, 'F', 566), +(57961, 'Patti', 1946, 'F', 565), +(57962, 'Alicia', 1946, 'F', 562), +(57963, 'Guadalupe', 1946, 'F', 562), +(57964, 'Flora', 1946, 'F', 551), +(57965, 'Shelia', 1946, 'F', 550), +(57966, 'Amelia', 1946, 'F', 547), +(57967, 'Henrietta', 1946, 'F', 547), +(57968, 'Ada', 1946, 'F', 546), +(57969, 'Mamie', 1946, 'F', 546), +(57970, 'Pam', 1946, 'F', 546), +(57971, 'Camille', 1946, 'F', 544), +(57972, 'Melody', 1946, 'F', 538), +(57973, 'Helene', 1946, 'F', 530), +(57974, 'Glenna', 1946, 'F', 529), +(57975, 'Melba', 1946, 'F', 529), +(57976, 'Sallie', 1946, 'F', 528), +(57977, 'Amy', 1946, 'F', 521), +(57978, 'Nelda', 1946, 'F', 521), +(57979, 'Nadine', 1946, 'F', 520), +(57980, 'Holly', 1946, 'F', 509), +(57981, 'Terri', 1946, 'F', 509), +(57982, 'Joanna', 1946, 'F', 498), +(57983, 'Claudette', 1946, 'F', 490), +(57984, 'Jayne', 1946, 'F', 490), +(57985, 'Gay', 1946, 'F', 486), +(57986, 'Melinda', 1946, 'F', 484), +(57987, 'Sonja', 1946, 'F', 484), +(57988, 'Gwen', 1946, 'F', 482), +(57989, 'Margo', 1946, 'F', 481), +(57990, 'Diann', 1946, 'F', 480), +(57991, 'Kaye', 1946, 'F', 480), +(57992, 'Noreen', 1946, 'F', 480), +(57993, 'Lou', 1946, 'F', 478), +(57994, 'Tina', 1946, 'F', 478), +(57995, 'Genevieve', 1946, 'F', 475), +(57996, 'Jerry', 1946, 'F', 475), +(57997, 'Reba', 1946, 'F', 475), +(57998, 'Mable', 1946, 'F', 474), +(57999, 'Freda', 1946, 'F', 471), +(58000, 'Maggie', 1946, 'F', 468), +(58001, 'Sherrie', 1946, 'F', 468), +(58002, 'April', 1946, 'F', 459), +(58003, 'Lynette', 1946, 'F', 457), +(58004, 'Monica', 1946, 'F', 457), +(58005, 'Rosetta', 1946, 'F', 457), +(58006, 'Frankie', 1946, 'F', 455), +(58007, 'Rochelle', 1946, 'F', 455), +(58008, 'Polly', 1946, 'F', 452), +(58009, 'Kristine', 1946, 'F', 446), +(58010, 'Inez', 1946, 'F', 445), +(58011, 'Rosalind', 1946, 'F', 444), +(58012, 'Olga', 1946, 'F', 438), +(58013, 'Faith', 1946, 'F', 436), +(58014, 'Karla', 1946, 'F', 427), +(58015, 'Lorna', 1946, 'F', 427), +(58016, 'Mona', 1946, 'F', 427), +(58017, 'Ruthie', 1946, 'F', 422), +(58018, 'Debra', 1946, 'F', 419), +(58019, 'Earnestine', 1946, 'F', 418), +(58020, 'Lauren', 1946, 'F', 415), +(58021, 'Molly', 1946, 'F', 415), +(58022, 'Kathie', 1946, 'F', 414), +(58023, 'Lupe', 1946, 'F', 414), +(58024, 'Lucinda', 1946, 'F', 411), +(58025, 'Fay', 1946, 'F', 410), +(58026, 'Melanie', 1946, 'F', 410), +(58027, 'Roseann', 1946, 'F', 409), +(58028, 'Adrienne', 1946, 'F', 408), +(58029, 'Hope', 1946, 'F', 404), +(58030, 'Celia', 1946, 'F', 400), +(58031, 'Adele', 1946, 'F', 399), +(58032, 'Muriel', 1946, 'F', 399), +(58033, 'Shelby', 1946, 'F', 397), +(58034, 'Jenny', 1946, 'F', 396), +(58035, 'Natalie', 1946, 'F', 389), +(58036, 'Ilene', 1946, 'F', 386), +(58037, 'Lila', 1946, 'F', 386), +(58038, 'Janette', 1946, 'F', 382), +(58039, 'Sadie', 1946, 'F', 382), +(58040, 'Eula', 1946, 'F', 380), +(58041, 'Cherie', 1946, 'F', 379), +(58042, 'Rena', 1946, 'F', 374), +(58043, 'Nettie', 1946, 'F', 373), +(58044, 'Estella', 1946, 'F', 371), +(58045, 'Lenore', 1946, 'F', 371), +(58046, 'Winifred', 1946, 'F', 371), +(58047, 'Jimmie', 1946, 'F', 368), +(58048, 'Jeanie', 1946, 'F', 367), +(58049, 'Marilynn', 1946, 'F', 364), +(58050, 'Lenora', 1946, 'F', 363), +(58051, 'Dona', 1946, 'F', 359), +(58052, 'Etta', 1946, 'F', 359), +(58053, 'Gracie', 1946, 'F', 359), +(58054, 'Margarita', 1946, 'F', 357), +(58055, 'Cathleen', 1946, 'F', 356), +(58056, 'Lorene', 1946, 'F', 356), +(58057, 'Therese', 1946, 'F', 354), +(58058, 'Blanche', 1946, 'F', 353), +(58059, 'Isabel', 1946, 'F', 353), +(58060, 'Ora', 1946, 'F', 353), +(58061, 'Beulah', 1946, 'F', 352), +(58062, 'Beverley', 1946, 'F', 351), +(58063, 'Earlene', 1946, 'F', 349), +(58064, 'Essie', 1946, 'F', 343), +(58065, 'Ina', 1946, 'F', 340), +(58066, 'Lora', 1946, 'F', 338), +(58067, 'Suzette', 1946, 'F', 338), +(58068, 'Jamie', 1946, 'F', 337), +(58069, 'Candy', 1946, 'F', 336), +(58070, 'Delia', 1946, 'F', 336), +(58071, 'Mabel', 1946, 'F', 334), +(58072, 'Josie', 1946, 'F', 332), +(58073, 'Meredith', 1946, 'F', 332), +(58074, 'Opal', 1946, 'F', 330), +(58075, 'Jeri', 1946, 'F', 328), +(58076, 'Lisa', 1946, 'F', 328), +(58077, 'Ollie', 1946, 'F', 327), +(58078, 'Pearlie', 1946, 'F', 326), +(58079, 'Sherri', 1946, 'F', 326), +(58080, 'Jewel', 1946, 'F', 325), +(58081, 'Leah', 1946, 'F', 324), +(58082, 'Maryanne', 1946, 'F', 324), +(58083, 'Bernadine', 1946, 'F', 321), +(58084, 'Cherry', 1946, 'F', 318), +(58085, 'Earline', 1946, 'F', 317), +(58086, 'Carlene', 1946, 'F', 315), +(58087, 'Rosanne', 1946, 'F', 315), +(58088, 'Jeannine', 1946, 'F', 312), +(58089, 'Corinne', 1946, 'F', 309), +(58090, 'Dorthy', 1946, 'F', 307), +(58091, 'Tamara', 1946, 'F', 306), +(58092, 'Gilda', 1946, 'F', 305), +(58093, 'Judie', 1946, 'F', 305), +(58094, 'Jewell', 1946, 'F', 301), +(58095, 'Lavonne', 1946, 'F', 301), +(58096, 'Lela', 1946, 'F', 301), +(58097, 'Katharine', 1946, 'F', 300), +(58098, 'Willa', 1946, 'F', 300), +(58099, 'Marla', 1946, 'F', 299), +(58100, 'Marylou', 1946, 'F', 296), +(58101, 'Estelle', 1946, 'F', 295), +(58102, 'Harriett', 1946, 'F', 295), +(58103, 'Kitty', 1946, 'F', 294), +(58104, 'Sheri', 1946, 'F', 294), +(58105, 'Tanya', 1946, 'F', 294), +(58106, 'Lizzie', 1946, 'F', 291), +(58107, 'Ingrid', 1946, 'F', 290), +(58108, 'Cassandra', 1946, 'F', 289), +(58109, 'Marva', 1946, 'F', 288), +(58110, 'Dian', 1946, 'F', 287), +(58111, 'Dorothea', 1946, 'F', 287), +(58112, 'Tommie', 1946, 'F', 287), +(58113, 'Antonia', 1946, 'F', 286), +(58114, 'Fern', 1946, 'F', 284), +(58115, 'Dee', 1946, 'F', 283), +(58116, 'Edwina', 1946, 'F', 283), +(58117, 'Delois', 1946, 'F', 282), +(58118, 'Robbie', 1946, 'F', 282), +(58119, 'Eugenia', 1946, 'F', 279), +(58120, 'Maryellen', 1946, 'F', 278), +(58121, 'Debbie', 1946, 'F', 277), +(58122, 'Rosalyn', 1946, 'F', 277), +(58123, 'Merry', 1946, 'F', 276), +(58124, 'Sybil', 1946, 'F', 276), +(58125, 'Karin', 1946, 'F', 275), +(58126, 'Amanda', 1946, 'F', 274), +(58127, 'Candice', 1946, 'F', 273), +(58128, 'Johanna', 1946, 'F', 272), +(58129, 'Rhoda', 1946, 'F', 271), +(58130, 'Madelyn', 1946, 'F', 269), +(58131, 'Addie', 1946, 'F', 266), +(58132, 'Ladonna', 1946, 'F', 263), +(58133, 'Arleen', 1946, 'F', 262), +(58134, 'Dolly', 1946, 'F', 262), +(58135, 'Francis', 1946, 'F', 262), +(58136, 'Rae', 1946, 'F', 260), +(58137, 'Carolann', 1946, 'F', 254), +(58138, 'Elva', 1946, 'F', 253), +(58139, 'Nita', 1946, 'F', 253), +(58140, 'Ola', 1946, 'F', 252), +(58141, 'Ronnie', 1946, 'F', 252), +(58142, 'Georgette', 1946, 'F', 250), +(58143, 'James', 1946, 'F', 250), +(58144, 'Jolene', 1946, 'F', 250), +(58145, 'Sherrill', 1946, 'F', 250), +(58146, 'Clarice', 1946, 'F', 246), +(58147, 'Jannie', 1946, 'F', 246), +(58148, 'Dottie', 1946, 'F', 245), +(58149, 'Ruthann', 1946, 'F', 244), +(58150, 'Marlys', 1946, 'F', 243), +(58151, 'Elvira', 1946, 'F', 242), +(58152, 'Clare', 1946, 'F', 241), +(58153, 'Elena', 1946, 'F', 241), +(58154, 'Leola', 1946, 'F', 241), +(58155, 'Terrie', 1946, 'F', 241), +(58156, 'Iva', 1946, 'F', 240), +(58157, 'Jessica', 1946, 'F', 240), +(58158, 'Karon', 1946, 'F', 240), +(58159, 'Loraine', 1946, 'F', 240), +(58160, 'Kristin', 1946, 'F', 239), +(58161, 'Cheryle', 1946, 'F', 238), +(58162, 'Heather', 1946, 'F', 237), +(58163, 'Eddie', 1946, 'F', 236), +(58164, 'Crystal', 1946, 'F', 235), +(58165, 'Queen', 1946, 'F', 234), +(58166, 'Angelina', 1946, 'F', 233), +(58167, 'Roxanne', 1946, 'F', 232), +(58168, 'Suzan', 1946, 'F', 232), +(58169, 'Mavis', 1946, 'F', 231), +(58170, 'Helena', 1946, 'F', 229), +(58171, 'Alyce', 1946, 'F', 228), +(58172, 'Effie', 1946, 'F', 227), +(58173, 'Cecile', 1946, 'F', 225), +(58174, 'Melva', 1946, 'F', 224), +(58175, 'Millie', 1946, 'F', 223), +(58176, 'Nan', 1946, 'F', 223), +(58177, 'Nola', 1946, 'F', 223), +(58178, 'Sonia', 1946, 'F', 223), +(58179, 'Sharlene', 1946, 'F', 222), +(58180, 'Alexis', 1946, 'F', 221), +(58181, 'Cornelia', 1946, 'F', 221), +(58182, 'Imogene', 1946, 'F', 219), +(58183, 'Joe', 1946, 'F', 219), +(58184, 'Lottie', 1946, 'F', 219), +(58185, 'Celeste', 1946, 'F', 218), +(58186, 'Sandi', 1946, 'F', 218), +(58187, 'Freddie', 1946, 'F', 216), +(58188, 'Karol', 1946, 'F', 216), +(58189, 'Margery', 1946, 'F', 215), +(58190, 'Robert', 1946, 'F', 215), +(58191, 'Alison', 1946, 'F', 214), +(58192, 'Marietta', 1946, 'F', 214), +(58193, 'Angie', 1946, 'F', 213), +(58194, 'Aurora', 1946, 'F', 211), +(58195, 'Dollie', 1946, 'F', 210), +(58196, 'Darleen', 1946, 'F', 209), +(58197, 'Nona', 1946, 'F', 209), +(58198, 'John', 1946, 'F', 208), +(58199, 'Merle', 1946, 'F', 206), +(58200, 'Teri', 1946, 'F', 206), +(58201, 'Mollie', 1946, 'F', 205), +(58202, 'Shari', 1946, 'F', 205), +(58203, 'Cleo', 1946, 'F', 204), +(58204, 'Lesley', 1946, 'F', 204), +(58205, 'Lyn', 1946, 'F', 204), +(58206, 'Jeanine', 1946, 'F', 203), +(58207, 'Sherryl', 1946, 'F', 203), +(58208, 'Alta', 1946, 'F', 202), +(58209, 'Chris', 1946, 'F', 202), +(58210, 'Consuelo', 1946, 'F', 201), +(58211, 'Ronda', 1946, 'F', 201), +(58212, 'Veda', 1946, 'F', 200), +(58213, 'Gerry', 1946, 'F', 199), +(58214, 'Roxie', 1946, 'F', 199), +(58215, 'Virgie', 1946, 'F', 199), +(58216, 'Lucia', 1946, 'F', 198), +(58217, 'Melissa', 1946, 'F', 198), +(58218, 'Nell', 1946, 'F', 197), +(58219, 'Reva', 1946, 'F', 197), +(58220, 'Elnora', 1946, 'F', 196), +(58221, 'Shelley', 1946, 'F', 196), +(58222, 'Roslyn', 1946, 'F', 195), +(58223, 'Alana', 1946, 'F', 194), +(58224, 'Julianne', 1946, 'F', 194), +(58225, 'May', 1946, 'F', 194), +(58226, 'Peggie', 1946, 'F', 194), +(58227, 'Jerri', 1946, 'F', 193), +(58228, 'Nikki', 1946, 'F', 193), +(58229, 'Patrice', 1946, 'F', 193), +(58230, 'Reta', 1946, 'F', 192), +(58231, 'Kim', 1946, 'F', 190), +(58232, 'Maryjane', 1946, 'F', 190), +(58233, 'Dinah', 1946, 'F', 188), +(58234, 'Janine', 1946, 'F', 188), +(58235, 'Belinda', 1946, 'F', 187), +(58236, 'Madeleine', 1946, 'F', 186), +(58237, 'Winnie', 1946, 'F', 186), +(58238, 'Aileen', 1946, 'F', 185), +(58239, 'Corrine', 1946, 'F', 185), +(58240, 'Bennie', 1946, 'F', 183), +(58241, 'Christy', 1946, 'F', 182), +(58242, 'Corliss', 1946, 'F', 182), +(58243, 'Avis', 1946, 'F', 180), +(58244, 'Lynnette', 1946, 'F', 180), +(58245, 'Esperanza', 1946, 'F', 179), +(58246, 'Nanette', 1946, 'F', 179), +(58247, 'Freida', 1946, 'F', 175), +(58248, 'Louella', 1946, 'F', 174), +(58249, 'Ester', 1946, 'F', 173), +(58250, 'Goldie', 1946, 'F', 173), +(58251, 'Carrol', 1946, 'F', 172), +(58252, 'Carroll', 1946, 'F', 172), +(58253, 'Georgianna', 1946, 'F', 172), +(58254, 'Luella', 1946, 'F', 172), +(58255, 'Aleta', 1946, 'F', 171), +(58256, 'Bobby', 1946, 'F', 171), +(58257, 'Frieda', 1946, 'F', 171), +(58258, 'Jana', 1946, 'F', 171), +(58259, 'Marilee', 1946, 'F', 171), +(58260, 'Michael', 1946, 'F', 170), +(58261, 'Rosalinda', 1946, 'F', 170), +(58262, 'Gayla', 1946, 'F', 168), +(58263, 'Jerrie', 1946, 'F', 167), +(58264, 'Karolyn', 1946, 'F', 167), +(58265, 'Cathie', 1946, 'F', 166), +(58266, 'Leila', 1946, 'F', 166), +(58267, 'Fran', 1946, 'F', 165), +(58268, 'Sharen', 1946, 'F', 165), +(58269, 'Neva', 1946, 'F', 164), +(58270, 'Sonya', 1946, 'F', 164), +(58271, 'Carolynn', 1946, 'F', 163), +(58272, 'Madonna', 1946, 'F', 163), +(58273, 'Adeline', 1946, 'F', 162), +(58274, 'Elma', 1946, 'F', 162), +(58275, 'Retha', 1946, 'F', 162), +(58276, 'Cathryn', 1946, 'F', 160), +(58277, 'Twila', 1946, 'F', 159), +(58278, 'Malinda', 1946, 'F', 158), +(58279, 'Rosalee', 1946, 'F', 157), +(58280, 'William', 1946, 'F', 157), +(58281, 'Wilda', 1946, 'F', 156), +(58282, 'Arline', 1946, 'F', 155), +(58283, 'Elinor', 1946, 'F', 155), +(58284, 'Portia', 1946, 'F', 155), +(58285, 'Carmela', 1946, 'F', 154), +(58286, 'Evangeline', 1946, 'F', 154), +(58287, 'Heidi', 1946, 'F', 154), +(58288, 'Patrica', 1946, 'F', 154), +(58289, 'Yvette', 1946, 'F', 154), +(58290, 'Caren', 1946, 'F', 153), +(58291, 'Odessa', 1946, 'F', 152), +(58292, 'Shannon', 1946, 'F', 152), +(58293, 'Sydney', 1946, 'F', 152), +(58294, 'Sammie', 1946, 'F', 151), +(58295, 'Elouise', 1946, 'F', 150), +(58296, 'Kerry', 1946, 'F', 149), +(58297, 'Laraine', 1946, 'F', 149), +(58298, 'Letha', 1946, 'F', 149), +(58299, 'Lilly', 1946, 'F', 149), +(58300, 'Mercedes', 1946, 'F', 149), +(58301, 'Angeline', 1946, 'F', 147), +(58302, 'Ginny', 1946, 'F', 147), +(58303, 'Rosella', 1946, 'F', 147), +(58304, 'Charleen', 1946, 'F', 146), +(58305, 'Elisabeth', 1946, 'F', 146), +(58306, 'Ila', 1946, 'F', 146), +(58307, 'Pattie', 1946, 'F', 146), +(58308, 'Georgene', 1946, 'F', 145), +(58309, 'Jacklyn', 1946, 'F', 145), +(58310, 'Jerilyn', 1946, 'F', 145), +(58311, 'Annmarie', 1946, 'F', 144), +(58312, 'Camilla', 1946, 'F', 144), +(58313, 'Dorene', 1946, 'F', 144), +(58314, 'Justine', 1946, 'F', 144), +(58315, 'Lelia', 1946, 'F', 144), +(58316, 'Mariann', 1946, 'F', 144), +(58317, 'Hannah', 1946, 'F', 143), +(58318, 'Katheryn', 1946, 'F', 143), +(58319, 'Minerva', 1946, 'F', 143), +(58320, 'Zelma', 1946, 'F', 143), +(58321, 'Roseanne', 1946, 'F', 142), +(58322, 'Elida', 1946, 'F', 141), +(58323, 'Enid', 1946, 'F', 141), +(58324, 'Lonnie', 1946, 'F', 141), +(58325, 'Deanne', 1946, 'F', 140), +(58326, 'Lessie', 1946, 'F', 140), +(58327, 'Oralia', 1946, 'F', 140), +(58328, 'Lorena', 1946, 'F', 139), +(58329, 'Selma', 1946, 'F', 138), +(58330, 'Libby', 1946, 'F', 137), +(58331, 'Annetta', 1946, 'F', 136), +(58332, 'Caryl', 1946, 'F', 136), +(58333, 'Danielle', 1946, 'F', 136), +(58334, 'Daphne', 1946, 'F', 136), +(58335, 'Doretha', 1946, 'F', 136), +(58336, 'Christie', 1946, 'F', 135), +(58337, 'Claudine', 1946, 'F', 135), +(58338, 'Colette', 1946, 'F', 135), +(58339, 'Eve', 1946, 'F', 135), +(58340, 'Gene', 1946, 'F', 135), +(58341, 'Maryjo', 1946, 'F', 135), +(58342, 'Ofelia', 1946, 'F', 135), +(58343, 'Robyn', 1946, 'F', 135), +(58344, 'Charles', 1946, 'F', 134), +(58345, 'Marcy', 1946, 'F', 134), +(58346, 'Pamala', 1946, 'F', 134), +(58347, 'Ana', 1946, 'F', 133), +(58348, 'Carmella', 1946, 'F', 133), +(58349, 'Eliza', 1946, 'F', 133), +(58350, 'Kristina', 1946, 'F', 133), +(58351, 'Alexandra', 1946, 'F', 132), +(58352, 'Elise', 1946, 'F', 132), +(58353, 'Ava', 1946, 'F', 131), +(58354, 'Donnie', 1946, 'F', 131), +(58355, 'Janelle', 1946, 'F', 131), +(58356, 'Josefina', 1946, 'F', 131), +(58357, 'Angelita', 1946, 'F', 130), +(58358, 'Gaye', 1946, 'F', 130), +(58359, 'Louisa', 1946, 'F', 130), +(58360, 'Kimberly', 1946, 'F', 129), +(58361, 'Marta', 1946, 'F', 129), +(58362, 'Matilda', 1946, 'F', 129), +(58363, 'Lauretta', 1946, 'F', 128), +(58364, 'Vernell', 1946, 'F', 128), +(58365, 'Corine', 1946, 'F', 127), +(58366, 'Florine', 1946, 'F', 127), +(58367, 'Gearldine', 1946, 'F', 127), +(58368, 'Rhea', 1946, 'F', 127), +(58369, 'Sheron', 1946, 'F', 127), +(58370, 'Lucretia', 1946, 'F', 126), +(58371, 'Suellen', 1946, 'F', 126), +(58372, 'Susanna', 1946, 'F', 126), +(58373, 'Althea', 1946, 'F', 125), +(58374, 'Celestine', 1946, 'F', 125), +(58375, 'Leigh', 1946, 'F', 125), +(58376, 'Theodora', 1946, 'F', 125), +(58377, 'Isabelle', 1946, 'F', 124), +(58378, 'Dena', 1946, 'F', 123), +(58379, 'Nannie', 1946, 'F', 123), +(58380, 'Olive', 1946, 'F', 123), +(58381, 'Suzann', 1946, 'F', 123), +(58382, 'Adela', 1946, 'F', 122), +(58383, 'Benita', 1946, 'F', 122), +(58384, 'Georgina', 1946, 'F', 122), +(58385, 'Lea', 1946, 'F', 122), +(58386, 'Leanne', 1946, 'F', 122), +(58387, 'Lily', 1946, 'F', 122), +(58388, 'Mari', 1946, 'F', 122), +(58389, 'Nedra', 1946, 'F', 122), +(58390, 'Zelda', 1946, 'F', 122), +(58391, 'Deirdre', 1946, 'F', 121), +(58392, 'Juana', 1946, 'F', 121), +(58393, 'Lona', 1946, 'F', 121), +(58394, 'Cheryll', 1946, 'F', 120), +(58395, 'Leta', 1946, 'F', 120), +(58396, 'Richard', 1946, 'F', 120), +(58397, 'Sherilyn', 1946, 'F', 120), +(58398, 'Alfreda', 1946, 'F', 119), +(58399, 'Callie', 1946, 'F', 119), +(58400, 'Carolina', 1946, 'F', 119), +(58401, 'Danna', 1946, 'F', 119), +(58402, 'George', 1946, 'F', 119), +(58403, 'Harriette', 1946, 'F', 119), +(58404, 'Manuela', 1946, 'F', 118), +(58405, 'Tonya', 1946, 'F', 118), +(58406, 'Belva', 1946, 'F', 117), +(58407, 'Kathi', 1946, 'F', 117), +(58408, 'Marina', 1946, 'F', 117), +(58409, 'Marjory', 1946, 'F', 117), +(58410, 'Phoebe', 1946, 'F', 117), +(58411, 'Sherron', 1946, 'F', 117), +(58412, 'Jonnie', 1946, 'F', 116), +(58413, 'Mickey', 1946, 'F', 116), +(58414, 'Nanci', 1946, 'F', 116), +(58415, 'Ophelia', 1946, 'F', 116), +(58416, 'Petra', 1946, 'F', 116), +(58417, 'Toby', 1946, 'F', 116), +(58418, 'Annabelle', 1946, 'F', 115), +(58419, 'Georgiana', 1946, 'F', 114), +(58420, 'Jody', 1946, 'F', 114), +(58421, 'Charlie', 1946, 'F', 113), +(58422, 'Elsa', 1946, 'F', 113), +(58423, 'Lavern', 1946, 'F', 113), +(58424, 'Shirlee', 1946, 'F', 113), +(58425, 'Vonda', 1946, 'F', 113), +(58426, 'Elisa', 1946, 'F', 112), +(58427, 'Janell', 1946, 'F', 112), +(58428, 'Jeraldine', 1946, 'F', 112), +(58429, 'Kristi', 1946, 'F', 112), +(58430, 'Lorine', 1946, 'F', 112), +(58431, 'Catharine', 1946, 'F', 111), +(58432, 'Margarett', 1946, 'F', 111), +(58433, 'Pansy', 1946, 'F', 111), +(58434, 'Shirlene', 1946, 'F', 111), +(58435, 'Sophie', 1946, 'F', 111), +(58436, 'Aline', 1946, 'F', 109), +(58437, 'Concetta', 1946, 'F', 109), +(58438, 'Gina', 1946, 'F', 109), +(58439, 'Marlyn', 1946, 'F', 109), +(58440, 'Randy', 1946, 'F', 109), +(58441, 'Thomas', 1946, 'F', 109), +(58442, 'Felicia', 1946, 'F', 108), +(58443, 'Flossie', 1946, 'F', 108), +(58444, 'Greta', 1946, 'F', 108), +(58445, 'Treva', 1946, 'F', 108), +(58446, 'Ardith', 1946, 'F', 107), +(58447, 'Leanna', 1946, 'F', 107), +(58448, 'Lucile', 1946, 'F', 107), +(58449, 'Rowena', 1946, 'F', 107), +(58450, 'Tana', 1946, 'F', 107), +(58451, 'Beryl', 1946, 'F', 106), +(58452, 'Linnea', 1946, 'F', 106), +(58453, 'Margot', 1946, 'F', 106), +(58454, 'Margret', 1946, 'F', 106), +(58455, 'Sophia', 1946, 'F', 106), +(58456, 'David', 1946, 'F', 105), +(58457, 'Noel', 1946, 'F', 105), +(58458, 'Charmaine', 1946, 'F', 104), +(58459, 'Cherryl', 1946, 'F', 104), +(58460, 'Elayne', 1946, 'F', 104), +(58461, 'Emilie', 1946, 'F', 104), +(58462, 'Georgie', 1946, 'F', 104), +(58463, 'Juliette', 1946, 'F', 104), +(58464, 'Unknown', 1946, 'F', 104), +(58465, 'Bridget', 1946, 'F', 103), +(58466, 'Deana', 1946, 'F', 103), +(58467, 'Laureen', 1946, 'F', 103), +(58468, 'Luann', 1946, 'F', 103), +(58469, 'Barbra', 1946, 'F', 102), +(58470, 'Bonny', 1946, 'F', 102), +(58471, 'Francisca', 1946, 'F', 102), +(58472, 'Ilona', 1946, 'F', 102), +(58473, 'Prudence', 1946, 'F', 102), +(58474, 'Randi', 1946, 'F', 102), +(58475, 'Leslee', 1946, 'F', 101), +(58476, 'Norene', 1946, 'F', 101), +(58477, 'Pearline', 1946, 'F', 101), +(58478, 'Carleen', 1946, 'F', 100), +(58479, 'Dayle', 1946, 'F', 100), +(58480, 'Delma', 1946, 'F', 100), +(58481, 'James', 1946, 'M', 87425), +(58482, 'Robert', 1946, 'M', 84130), +(58483, 'John', 1946, 'M', 79248), +(58484, 'William', 1946, 'M', 60031), +(58485, 'Richard', 1946, 'M', 58859), +(58486, 'David', 1946, 'M', 46435), +(58487, 'Michael', 1946, 'M', 41178), +(58488, 'Thomas', 1946, 'M', 38864), +(58489, 'Charles', 1946, 'M', 38194), +(58490, 'Ronald', 1946, 'M', 31840), +(58491, 'Larry', 1946, 'M', 28436), +(58492, 'Gary', 1946, 'M', 26916), +(58493, 'Donald', 1946, 'M', 26255), +(58494, 'Joseph', 1946, 'M', 24279), +(58495, 'Kenneth', 1946, 'M', 22029), +(58496, 'George', 1946, 'M', 21565), +(58497, 'Dennis', 1946, 'M', 21444), +(58498, 'Paul', 1946, 'M', 21050), +(58499, 'Edward', 1946, 'M', 18573), +(58500, 'Jerry', 1946, 'M', 17562), +(58501, 'Daniel', 1946, 'M', 12865), +(58502, 'Frank', 1946, 'M', 12666), +(58503, 'Roger', 1946, 'M', 12414), +(58504, 'Stephen', 1946, 'M', 11833), +(58505, 'Raymond', 1946, 'M', 11283), +(58506, 'Terry', 1946, 'M', 10675), +(58507, 'Gerald', 1946, 'M', 10026), +(58508, 'Steven', 1946, 'M', 8884), +(58509, 'Wayne', 1946, 'M', 8808), +(58510, 'Walter', 1946, 'M', 8663), +(58511, 'Lawrence', 1946, 'M', 8511), +(58512, 'Bruce', 1946, 'M', 8457), +(58513, 'Harold', 1946, 'M', 8365), +(58514, 'Douglas', 1946, 'M', 8329), +(58515, 'Jack', 1946, 'M', 7800), +(58516, 'Arthur', 1946, 'M', 7538), +(58517, 'Joe', 1946, 'M', 7535), +(58518, 'Peter', 1946, 'M', 7484), +(58519, 'Carl', 1946, 'M', 7378), +(58520, 'Willie', 1946, 'M', 7327), +(58521, 'Henry', 1946, 'M', 7313), +(58522, 'Jimmy', 1946, 'M', 7130), +(58523, 'Roy', 1946, 'M', 6919), +(58524, 'Anthony', 1946, 'M', 6776), +(58525, 'Billy', 1946, 'M', 6714), +(58526, 'Danny', 1946, 'M', 6647), +(58527, 'Johnny', 1946, 'M', 6606), +(58528, 'Ralph', 1946, 'M', 6586), +(58529, 'Alan', 1946, 'M', 6491), +(58530, 'Harry', 1946, 'M', 6028), +(58531, 'Fred', 1946, 'M', 6012), +(58532, 'Albert', 1946, 'M', 6004), +(58533, 'Bobby', 1946, 'M', 5766), +(58534, 'Ronnie', 1946, 'M', 5724), +(58535, 'Howard', 1946, 'M', 5692), +(58536, 'Gregory', 1946, 'M', 5673), +(58537, 'Eugene', 1946, 'M', 5671), +(58538, 'Mark', 1946, 'M', 5335), +(58539, 'Patrick', 1946, 'M', 5304), +(58540, 'Timothy', 1946, 'M', 5154), +(58541, 'Philip', 1946, 'M', 5094), +(58542, 'Dale', 1946, 'M', 5024), +(58543, 'Louis', 1946, 'M', 4918), +(58544, 'Mike', 1946, 'M', 4851), +(58545, 'Stanley', 1946, 'M', 4770), +(58546, 'Russell', 1946, 'M', 4737), +(58547, 'Leonard', 1946, 'M', 4699), +(58548, 'Barry', 1946, 'M', 4627), +(58549, 'Steve', 1946, 'M', 4567), +(58550, 'Samuel', 1946, 'M', 4521), +(58551, 'Ernest', 1946, 'M', 4394), +(58552, 'Bill', 1946, 'M', 4355), +(58553, 'Jim', 1946, 'M', 4337), +(58554, 'Allen', 1946, 'M', 4293), +(58555, 'Frederick', 1946, 'M', 4232), +(58556, 'Norman', 1946, 'M', 4161), +(58557, 'Tommy', 1946, 'M', 4143), +(58558, 'Jeffrey', 1946, 'M', 4125), +(58559, 'Don', 1946, 'M', 4111), +(58560, 'Francis', 1946, 'M', 4005), +(58561, 'Glenn', 1946, 'M', 3893), +(58562, 'Earl', 1946, 'M', 3830), +(58563, 'Phillip', 1946, 'M', 3778), +(58564, 'Andrew', 1946, 'M', 3759), +(58565, 'Eddie', 1946, 'M', 3746), +(58566, 'Melvin', 1946, 'M', 3745), +(58567, 'Tom', 1946, 'M', 3625), +(58568, 'Marvin', 1946, 'M', 3597), +(58569, 'Clarence', 1946, 'M', 3566), +(58570, 'Leroy', 1946, 'M', 3466), +(58571, 'Lee', 1946, 'M', 3344), +(58572, 'Martin', 1946, 'M', 3333), +(58573, 'Rodney', 1946, 'M', 3303), +(58574, 'Alfred', 1946, 'M', 3236), +(58575, 'Ray', 1946, 'M', 3167), +(58576, 'Keith', 1946, 'M', 2861), +(58577, 'Herbert', 1946, 'M', 2819), +(58578, 'Gene', 1946, 'M', 2756), +(58579, 'Curtis', 1946, 'M', 2718), +(58580, 'Clifford', 1946, 'M', 2615), +(58581, 'Theodore', 1946, 'M', 2612), +(58582, 'Bernard', 1946, 'M', 2606), +(58583, 'Brian', 1946, 'M', 2586), +(58584, 'Jimmie', 1946, 'M', 2565), +(58585, 'Warren', 1946, 'M', 2534), +(58586, 'Lloyd', 1946, 'M', 2495), +(58587, 'Bob', 1946, 'M', 2492), +(58588, 'Craig', 1946, 'M', 2470), +(58589, 'Jesse', 1946, 'M', 2464), +(58590, 'Vincent', 1946, 'M', 2421), +(58591, 'Gordon', 1946, 'M', 2408), +(58592, 'Edwin', 1946, 'M', 2375), +(58593, 'Leon', 1946, 'M', 2339), +(58594, 'Jerome', 1946, 'M', 2288), +(58595, 'Jay', 1946, 'M', 2198), +(58596, 'Dan', 1946, 'M', 2192), +(58597, 'Jon', 1946, 'M', 2169), +(58598, 'Lewis', 1946, 'M', 2154), +(58599, 'Leslie', 1946, 'M', 2136), +(58600, 'Victor', 1946, 'M', 2131), +(58601, 'Floyd', 1946, 'M', 2124), +(58602, 'Randall', 1946, 'M', 2065), +(58603, 'Clyde', 1946, 'M', 2064), +(58604, 'Allan', 1946, 'M', 2060), +(58605, 'Harvey', 1946, 'M', 2057), +(58606, 'Alvin', 1946, 'M', 2048), +(58607, 'Joel', 1946, 'M', 1998), +(58608, 'Calvin', 1946, 'M', 1976), +(58609, 'Tony', 1946, 'M', 1974), +(58610, 'Vernon', 1946, 'M', 1967), +(58611, 'Darrell', 1946, 'M', 1909), +(58612, 'Dean', 1946, 'M', 1887), +(58613, 'Jose', 1946, 'M', 1859), +(58614, 'Eric', 1946, 'M', 1822), +(58615, 'Charlie', 1946, 'M', 1786), +(58616, 'Lonnie', 1946, 'M', 1775), +(58617, 'Dwight', 1946, 'M', 1754), +(58618, 'Gilbert', 1946, 'M', 1751), +(58619, 'Jackie', 1946, 'M', 1730), +(58620, 'Johnnie', 1946, 'M', 1725), +(58621, 'Franklin', 1946, 'M', 1719), +(58622, 'Duane', 1946, 'M', 1711), +(58623, 'Glen', 1946, 'M', 1678), +(58624, 'Nicholas', 1946, 'M', 1676), +(58625, 'Lester', 1946, 'M', 1668), +(58626, 'Benjamin', 1946, 'M', 1657), +(58627, 'Leo', 1946, 'M', 1647), +(58628, 'Randy', 1946, 'M', 1637), +(58629, 'Chester', 1946, 'M', 1619), +(58630, 'Christopher', 1946, 'M', 1601), +(58631, 'Freddie', 1946, 'M', 1589), +(58632, 'Herman', 1946, 'M', 1588), +(58633, 'Arnold', 1946, 'M', 1573), +(58634, 'Lynn', 1946, 'M', 1530), +(58635, 'Scott', 1946, 'M', 1526), +(58636, 'Milton', 1946, 'M', 1508), +(58637, 'Ted', 1946, 'M', 1491), +(58638, 'Manuel', 1946, 'M', 1489), +(58639, 'Cecil', 1946, 'M', 1407), +(58640, 'Dave', 1946, 'M', 1399), +(58641, 'Neil', 1946, 'M', 1343), +(58642, 'Garry', 1946, 'M', 1312), +(58643, 'Claude', 1946, 'M', 1304), +(58644, 'Sam', 1946, 'M', 1302), +(58645, 'Donnie', 1946, 'M', 1274), +(58646, 'Roland', 1946, 'M', 1262), +(58647, 'Wesley', 1946, 'M', 1249), +(58648, 'Micheal', 1946, 'M', 1238), +(58649, 'Wallace', 1946, 'M', 1210), +(58650, 'Sammy', 1946, 'M', 1191), +(58651, 'Tim', 1946, 'M', 1134), +(58652, 'Juan', 1946, 'M', 1131), +(58653, 'Jonathan', 1946, 'M', 1101), +(58654, 'Hugh', 1946, 'M', 1088), +(58655, 'Marshall', 1946, 'M', 1074), +(58656, 'Maurice', 1946, 'M', 1058), +(58657, 'Willard', 1946, 'M', 1058), +(58658, 'Elmer', 1946, 'M', 1042), +(58659, 'Kevin', 1946, 'M', 1036), +(58660, 'Stuart', 1946, 'M', 1032), +(58661, 'Jessie', 1946, 'M', 1018), +(58662, 'Oscar', 1946, 'M', 1017), +(58663, 'Sidney', 1946, 'M', 1011), +(58664, 'Benny', 1946, 'M', 1003), +(58665, 'Karl', 1946, 'M', 1000), +(58666, 'Guy', 1946, 'M', 974), +(58667, 'Nathaniel', 1946, 'M', 974), +(58668, 'Alexander', 1946, 'M', 965), +(58669, 'Marion', 1946, 'M', 946), +(58670, 'Terrence', 1946, 'M', 938), +(58671, 'Everett', 1946, 'M', 936), +(58672, 'Morris', 1946, 'M', 915), +(58673, 'Edgar', 1946, 'M', 912), +(58674, 'Matthew', 1946, 'M', 894), +(58675, 'Kent', 1946, 'M', 888), +(58676, 'Bennie', 1946, 'M', 885), +(58677, 'Gerard', 1946, 'M', 883), +(58678, 'Virgil', 1946, 'M', 880), +(58679, 'Carlos', 1946, 'M', 867), +(58680, 'Lyle', 1946, 'M', 859), +(58681, 'Perry', 1946, 'M', 857), +(58682, 'Earnest', 1946, 'M', 849), +(58683, 'Fredrick', 1946, 'M', 844), +(58684, 'Max', 1946, 'M', 839), +(58685, 'Randolph', 1946, 'M', 835), +(58686, 'Rick', 1946, 'M', 830), +(58687, 'Dick', 1946, 'M', 829), +(58688, 'Ron', 1946, 'M', 829), +(58689, 'Chris', 1946, 'M', 827), +(58690, 'Ben', 1946, 'M', 820), +(58691, 'Luther', 1946, 'M', 808), +(58692, 'Greg', 1946, 'M', 807), +(58693, 'Clifton', 1946, 'M', 804), +(58694, 'Clinton', 1946, 'M', 804), +(58695, 'Marc', 1946, 'M', 792), +(58696, 'Byron', 1946, 'M', 786), +(58697, 'Otis', 1946, 'M', 782), +(58698, 'Ira', 1946, 'M', 779), +(58699, 'Jeff', 1946, 'M', 764), +(58700, 'Ricky', 1946, 'M', 762), +(58701, 'Clayton', 1946, 'M', 752), +(58702, 'Nelson', 1946, 'M', 741), +(58703, 'Reginald', 1946, 'M', 720), +(58704, 'Alex', 1946, 'M', 707), +(58705, 'Laurence', 1946, 'M', 707), +(58706, 'Jesus', 1946, 'M', 700), +(58707, 'Ken', 1946, 'M', 684), +(58708, 'Carroll', 1946, 'M', 682), +(58709, 'Hubert', 1946, 'M', 682), +(58710, 'Pete', 1946, 'M', 682), +(58711, 'Delbert', 1946, 'M', 678), +(58712, 'Neal', 1946, 'M', 676), +(58713, 'Antonio', 1946, 'M', 669), +(58714, 'Horace', 1946, 'M', 669), +(58715, 'Mitchell', 1946, 'M', 664), +(58716, 'Rex', 1946, 'M', 662), +(58717, 'Loren', 1946, 'M', 651), +(58718, 'Darryl', 1946, 'M', 650), +(58719, 'Lowell', 1946, 'M', 650), +(58720, 'Ross', 1946, 'M', 650), +(58721, 'Ruben', 1946, 'M', 648), +(58722, 'Rodger', 1946, 'M', 645), +(58723, 'Edmund', 1946, 'M', 636), +(58724, 'Troy', 1946, 'M', 635), +(58725, 'Terrance', 1946, 'M', 629), +(58726, 'Rudolph', 1946, 'M', 628), +(58727, 'Rudy', 1946, 'M', 627), +(58728, 'Malcolm', 1946, 'M', 626), +(58729, 'Pat', 1946, 'M', 624), +(58730, 'Archie', 1946, 'M', 621), +(58731, 'Oliver', 1946, 'M', 617), +(58732, 'Wendell', 1946, 'M', 614), +(58733, 'Alton', 1946, 'M', 610), +(58734, 'Kenny', 1946, 'M', 609), +(58735, 'Daryl', 1946, 'M', 600), +(58736, 'Homer', 1946, 'M', 593), +(58737, 'Frankie', 1946, 'M', 590), +(58738, 'Tommie', 1946, 'M', 588), +(58739, 'Willis', 1946, 'M', 583), +(58740, 'Dana', 1946, 'M', 580), +(58741, 'Aaron', 1946, 'M', 577), +(58742, 'Wilbert', 1946, 'M', 577), +(58743, 'Leland', 1946, 'M', 569), +(58744, 'Darrel', 1946, 'M', 568), +(58745, 'Van', 1946, 'M', 567), +(58746, 'Jan', 1946, 'M', 565), +(58747, 'Mack', 1946, 'M', 564), +(58748, 'Nick', 1946, 'M', 564), +(58749, 'Jerald', 1946, 'M', 563), +(58750, 'Bradley', 1946, 'M', 562), +(58751, 'Nathan', 1946, 'M', 558), +(58752, 'Jeffery', 1946, 'M', 554), +(58753, 'Myron', 1946, 'M', 551), +(58754, 'Teddy', 1946, 'M', 551), +(58755, 'Phil', 1946, 'M', 543), +(58756, 'Carlton', 1946, 'M', 541), +(58757, 'Julius', 1946, 'M', 541), +(58758, 'Sylvester', 1946, 'M', 536), +(58759, 'Julian', 1946, 'M', 525), +(58760, 'Wilbur', 1946, 'M', 523), +(58761, 'Clark', 1946, 'M', 522), +(58762, 'Dewey', 1946, 'M', 521), +(58763, 'Sherman', 1946, 'M', 520), +(58764, 'Roosevelt', 1946, 'M', 517), +(58765, 'Isaac', 1946, 'M', 514), +(58766, 'Doyle', 1946, 'M', 507), +(58767, 'Brent', 1946, 'M', 506), +(58768, 'Salvatore', 1946, 'M', 501), +(58769, 'Ellis', 1946, 'M', 500), +(58770, 'Roberto', 1946, 'M', 497), +(58771, 'Forrest', 1946, 'M', 492), +(58772, 'Kerry', 1946, 'M', 489), +(58773, 'Mickey', 1946, 'M', 489), +(58774, 'Rickey', 1946, 'M', 483), +(58775, 'Raul', 1946, 'M', 481), +(58776, 'Ivan', 1946, 'M', 476), +(58777, 'Wade', 1946, 'M', 474), +(58778, 'Tyrone', 1946, 'M', 473), +(58779, 'Woodrow', 1946, 'M', 470), +(58780, 'Rufus', 1946, 'M', 467), +(58781, 'Ramon', 1946, 'M', 464), +(58782, 'Bryan', 1946, 'M', 460), +(58783, 'Geoffrey', 1946, 'M', 458), +(58784, 'Jacob', 1946, 'M', 457), +(58785, 'Francisco', 1946, 'M', 453), +(58786, 'Preston', 1946, 'M', 453), +(58787, 'Denis', 1946, 'M', 448), +(58788, 'Felix', 1946, 'M', 448), +(58789, 'Pedro', 1946, 'M', 445), +(58790, 'Grady', 1946, 'M', 436), +(58791, 'Andy', 1946, 'M', 429), +(58792, 'Robin', 1946, 'M', 429), +(58793, 'Wilson', 1946, 'M', 429), +(58794, 'Ervin', 1946, 'M', 422), +(58795, 'Elbert', 1946, 'M', 419), +(58796, 'Lance', 1946, 'M', 414), +(58797, 'Sammie', 1946, 'M', 409), +(58798, 'Kim', 1946, 'M', 407), +(58799, 'Merle', 1946, 'M', 406), +(58800, 'Travis', 1946, 'M', 406), +(58801, 'Freddy', 1946, 'M', 405), +(58802, 'Ed', 1946, 'M', 404), +(58803, 'Sheldon', 1946, 'M', 395), +(58804, 'Owen', 1946, 'M', 392), +(58805, 'Denny', 1946, 'M', 391), +(58806, 'Grant', 1946, 'M', 388), +(58807, 'Garland', 1946, 'M', 387), +(58808, 'Luis', 1946, 'M', 387), +(58809, 'Stewart', 1946, 'M', 386), +(58810, 'Dallas', 1946, 'M', 383), +(58811, 'Mario', 1946, 'M', 382), +(58812, 'Marcus', 1946, 'M', 381), +(58813, 'Guadalupe', 1946, 'M', 379), +(58814, 'Kurt', 1946, 'M', 373), +(58815, 'Buddy', 1946, 'M', 367), +(58816, 'Conrad', 1946, 'M', 367), +(58817, 'Armando', 1946, 'M', 365), +(58818, 'Bert', 1946, 'M', 365), +(58819, 'Irvin', 1946, 'M', 365), +(58820, 'Boyd', 1946, 'M', 362), +(58821, 'Emmett', 1946, 'M', 359), +(58822, 'Ernie', 1946, 'M', 357), +(58823, 'Angelo', 1946, 'M', 356), +(58824, 'Royce', 1946, 'M', 354), +(58825, 'Junior', 1946, 'M', 351), +(58826, 'Louie', 1946, 'M', 351), +(58827, 'Ricardo', 1946, 'M', 351), +(58828, 'Billie', 1946, 'M', 350), +(58829, 'Ronny', 1946, 'M', 350), +(58830, 'Terence', 1946, 'M', 348), +(58831, 'Eldon', 1946, 'M', 346), +(58832, 'Percy', 1946, 'M', 343), +(58833, 'Gerry', 1946, 'M', 336), +(58834, 'Harlan', 1946, 'M', 335), +(58835, 'Noel', 1946, 'M', 335), +(58836, 'Aubrey', 1946, 'M', 334), +(58837, 'Chuck', 1946, 'M', 334), +(58838, 'Lanny', 1946, 'M', 332), +(58839, 'Orville', 1946, 'M', 332), +(58840, 'Lionel', 1946, 'M', 329), +(58841, 'Rene', 1946, 'M', 328), +(58842, 'Loyd', 1946, 'M', 326), +(58843, 'Marlin', 1946, 'M', 325), +(58844, 'Wilfred', 1946, 'M', 321), +(58845, 'Gregg', 1946, 'M', 319), +(58846, 'Harley', 1946, 'M', 319), +(58847, 'Edmond', 1946, 'M', 314), +(58848, 'Doug', 1946, 'M', 312), +(58849, 'Grover', 1946, 'M', 312), +(58850, 'Cleveland', 1946, 'M', 306), +(58851, 'Cary', 1946, 'M', 305), +(58852, 'Gale', 1946, 'M', 304), +(58853, 'Dwayne', 1946, 'M', 303), +(58854, 'Spencer', 1946, 'M', 303), +(58855, 'Hector', 1946, 'M', 301), +(58856, 'Roderick', 1946, 'M', 301), +(58857, 'Alfonso', 1946, 'M', 298), +(58858, 'Darwin', 1946, 'M', 298), +(58859, 'Sanford', 1946, 'M', 298), +(58860, 'Dominic', 1946, 'M', 297), +(58861, 'Vaughn', 1946, 'M', 294), +(58862, 'Adrian', 1946, 'M', 290), +(58863, 'Al', 1946, 'M', 290), +(58864, 'Alfredo', 1946, 'M', 289), +(58865, 'Lorenzo', 1946, 'M', 289), +(58866, 'Frederic', 1946, 'M', 288), +(58867, 'Truman', 1946, 'M', 286), +(58868, 'Burton', 1946, 'M', 285), +(58869, 'Kelly', 1946, 'M', 283), +(58870, 'Arturo', 1946, 'M', 282), +(58871, 'Ned', 1946, 'M', 280), +(58872, 'Salvador', 1946, 'M', 278), +(58873, 'Irving', 1946, 'M', 277), +(58874, 'Elliott', 1946, 'M', 271), +(58875, 'Winston', 1946, 'M', 271), +(58876, 'Hal', 1946, 'M', 264), +(58877, 'Dannie', 1946, 'M', 262), +(58878, 'Miguel', 1946, 'M', 262), +(58879, 'Austin', 1946, 'M', 261), +(58880, 'Alonzo', 1946, 'M', 259), +(58881, 'Thurman', 1946, 'M', 254), +(58882, 'Bradford', 1946, 'M', 251), +(58883, 'Amos', 1946, 'M', 250), +(58884, 'Moses', 1946, 'M', 250), +(58885, 'Adam', 1946, 'M', 247), +(58886, 'Kirk', 1946, 'M', 247), +(58887, 'Emil', 1946, 'M', 246), +(58888, 'Kermit', 1946, 'M', 243), +(58889, 'Dominick', 1946, 'M', 242), +(58890, 'Norris', 1946, 'M', 240), +(58891, 'Elwood', 1946, 'M', 239), +(58892, 'Murray', 1946, 'M', 238), +(58893, 'Todd', 1946, 'M', 238), +(58894, 'Norbert', 1946, 'M', 236), +(58895, 'Bobbie', 1946, 'M', 233), +(58896, 'Drew', 1946, 'M', 233), +(58897, 'Linwood', 1946, 'M', 233), +(58898, 'Rodolfo', 1946, 'M', 233), +(58899, 'August', 1946, 'M', 231), +(58900, 'Sterling', 1946, 'M', 231), +(58901, 'Cornelius', 1946, 'M', 228), +(58902, 'Reuben', 1946, 'M', 228), +(58903, 'Barney', 1946, 'M', 226), +(58904, 'Vance', 1946, 'M', 224), +(58905, 'Monte', 1946, 'M', 223), +(58906, 'Elijah', 1946, 'M', 222), +(58907, 'Roscoe', 1946, 'M', 222), +(58908, 'Elton', 1946, 'M', 221), +(58909, 'Jess', 1946, 'M', 220), +(58910, 'Fernando', 1946, 'M', 219), +(58911, 'Millard', 1946, 'M', 219), +(58912, 'Ward', 1946, 'M', 219), +(58913, 'Lamar', 1946, 'M', 216), +(58914, 'Carmen', 1946, 'M', 213), +(58915, 'Abraham', 1946, 'M', 210), +(58916, 'Galen', 1946, 'M', 210), +(58917, 'Odell', 1946, 'M', 210), +(58918, 'Simon', 1946, 'M', 210), +(58919, 'Gail', 1946, 'M', 209), +(58920, 'Maynard', 1946, 'M', 209), +(58921, 'Stephan', 1946, 'M', 208), +(58922, 'Merlin', 1946, 'M', 207), +(58923, 'Stan', 1946, 'M', 207), +(58924, 'Will', 1946, 'M', 207), +(58925, 'Elvin', 1946, 'M', 202), +(58926, 'Miles', 1946, 'M', 202), +(58927, 'Enrique', 1946, 'M', 201), +(58928, 'Weldon', 1946, 'M', 201), +(58929, 'Jasper', 1946, 'M', 200), +(58930, 'Eddy', 1946, 'M', 199), +(58931, 'Fredric', 1946, 'M', 199), +(58932, 'Rafael', 1946, 'M', 198), +(58933, 'Harrison', 1946, 'M', 196), +(58934, 'Hollis', 1946, 'M', 196), +(58935, 'Ernesto', 1946, 'M', 194), +(58936, 'Ollie', 1946, 'M', 194), +(58937, 'Jake', 1946, 'M', 193), +(58938, 'Nolan', 1946, 'M', 193), +(58939, 'Kirby', 1946, 'M', 192), +(58940, 'Monty', 1946, 'M', 192), +(58941, 'Jerrold', 1946, 'M', 191), +(58942, 'Merrill', 1946, 'M', 191), +(58943, 'Domingo', 1946, 'M', 190), +(58944, 'Elliot', 1946, 'M', 190), +(58945, 'Dewayne', 1946, 'M', 188), +(58946, 'Randal', 1946, 'M', 188), +(58947, 'Johnie', 1946, 'M', 187), +(58948, 'Terrell', 1946, 'M', 187), +(58949, 'Alphonso', 1946, 'M', 186), +(58950, 'Mary', 1946, 'M', 186), +(58951, 'Wiley', 1946, 'M', 186), +(58952, 'Blaine', 1946, 'M', 185), +(58953, 'Monroe', 1946, 'M', 185), +(58954, 'Emory', 1946, 'M', 184), +(58955, 'Delmar', 1946, 'M', 183), +(58956, 'Christian', 1946, 'M', 182), +(58957, 'Russel', 1946, 'M', 182), +(58958, 'Otto', 1946, 'M', 181), +(58959, 'Emanuel', 1946, 'M', 179), +(58960, 'Connie', 1946, 'M', 177), +(58961, 'Jackson', 1946, 'M', 177), +(58962, 'Sandy', 1946, 'M', 176), +(58963, 'Irwin', 1946, 'M', 175), +(58964, 'Kennith', 1946, 'M', 175), +(58965, 'Carol', 1946, 'M', 174), +(58966, 'Levi', 1946, 'M', 174), +(58967, 'Carey', 1946, 'M', 173), +(58968, 'Tomas', 1946, 'M', 173), +(58969, 'Alberto', 1946, 'M', 172), +(58970, 'Gabriel', 1946, 'M', 172), +(58971, 'Dudley', 1946, 'M', 171), +(58972, 'Ramiro', 1946, 'M', 171), +(58973, 'Rod', 1946, 'M', 171), +(58974, 'Shelby', 1946, 'M', 171), +(58975, 'Coy', 1946, 'M', 170), +(58976, 'Laverne', 1946, 'M', 170), +(58977, 'Denver', 1946, 'M', 168), +(58978, 'Erwin', 1946, 'M', 168), +(58979, 'Pablo', 1946, 'M', 168), +(58980, 'Andre', 1946, 'M', 167), +(58981, 'Evan', 1946, 'M', 166), +(58982, 'Riley', 1946, 'M', 166), +(58983, 'Thaddeus', 1946, 'M', 166), +(58984, 'Donny', 1946, 'M', 165), +(58985, 'Rickie', 1946, 'M', 165), +(58986, 'Brad', 1946, 'M', 163), +(58987, 'Gus', 1946, 'M', 161), +(58988, 'Harris', 1946, 'M', 161), +(58989, 'Vern', 1946, 'M', 160), +(58990, 'Charley', 1946, 'M', 159), +(58991, 'Ulysses', 1946, 'M', 159), +(58992, 'Tracy', 1946, 'M', 157), +(58993, 'Booker', 1946, 'M', 156), +(58994, 'Errol', 1946, 'M', 156), +(58995, 'Jerold', 1946, 'M', 156), +(58996, 'Armand', 1946, 'M', 155), +(58997, 'Garrett', 1946, 'M', 155), +(58998, 'Dexter', 1946, 'M', 154), +(58999, 'Lupe', 1946, 'M', 153), +(59000, 'Reynaldo', 1946, 'M', 153), +(59001, 'Jean', 1946, 'M', 151), +(59002, 'Clement', 1946, 'M', 150), +(59003, 'Mac', 1946, 'M', 150), +(59004, 'Lamont', 1946, 'M', 149), +(59005, 'Carter', 1946, 'M', 148), +(59006, 'Colin', 1946, 'M', 148), +(59007, 'Kendall', 1946, 'M', 147), +(59008, 'Morgan', 1946, 'M', 147), +(59009, 'Dickie', 1946, 'M', 146), +(59010, 'Gayle', 1946, 'M', 146), +(59011, 'Lon', 1946, 'M', 146), +(59012, 'Marty', 1946, 'M', 146), +(59013, 'Buford', 1946, 'M', 145), +(59014, 'Davis', 1946, 'M', 145), +(59015, 'Mervin', 1946, 'M', 145), +(59016, 'Shirley', 1946, 'M', 144), +(59017, 'Clair', 1946, 'M', 143), +(59018, 'Rolland', 1946, 'M', 142), +(59019, 'Silas', 1946, 'M', 142), +(59020, 'Justin', 1946, 'M', 141), +(59021, 'Bernie', 1946, 'M', 140), +(59022, 'Dane', 1946, 'M', 139), +(59023, 'Gilberto', 1946, 'M', 139), +(59024, 'Rocco', 1946, 'M', 138), +(59025, 'Angel', 1946, 'M', 137), +(59026, 'Herschel', 1946, 'M', 137), +(59027, 'Solomon', 1946, 'M', 136), +(59028, 'Felipe', 1946, 'M', 135), +(59029, 'Julio', 1946, 'M', 135), +(59030, 'Reed', 1946, 'M', 135), +(59031, 'Rogers', 1946, 'M', 135), +(59032, 'Wilburn', 1946, 'M', 134), +(59033, 'Earle', 1946, 'M', 133), +(59034, 'Everette', 1946, 'M', 132), +(59035, 'Carson', 1946, 'M', 131), +(59036, 'Cleo', 1946, 'M', 131), +(59037, 'Dalton', 1946, 'M', 131), +(59038, 'Donn', 1946, 'M', 131), +(59039, 'Hershel', 1946, 'M', 131), +(59040, 'Jeffry', 1946, 'M', 131), +(59041, 'Bennett', 1946, 'M', 130), +(59042, 'Cornell', 1946, 'M', 130), +(59043, 'Luke', 1946, 'M', 130), +(59044, 'Noah', 1946, 'M', 130), +(59045, 'Santiago', 1946, 'M', 130), +(59046, 'Sonny', 1946, 'M', 129), +(59047, 'Joesph', 1946, 'M', 128), +(59048, 'Lavern', 1946, 'M', 128), +(59049, 'Art', 1946, 'M', 127), +(59050, 'Delmer', 1946, 'M', 127), +(59051, 'Michel', 1946, 'M', 127), +(59052, 'Isaiah', 1946, 'M', 126), +(59053, 'Toby', 1946, 'M', 126), +(59054, 'Barton', 1946, 'M', 125), +(59055, 'Ignacio', 1946, 'M', 125), +(59056, 'Wilford', 1946, 'M', 125), +(59057, 'Wilmer', 1946, 'M', 125), +(59058, 'Benito', 1946, 'M', 124), +(59059, 'Carmine', 1946, 'M', 124), +(59060, 'Dwain', 1946, 'M', 123), +(59061, 'Jefferson', 1946, 'M', 122), +(59062, 'Eduardo', 1946, 'M', 121), +(59063, 'Emery', 1946, 'M', 121), +(59064, 'Jacky', 1946, 'M', 121), +(59065, 'Joey', 1946, 'M', 121), +(59066, 'Duncan', 1946, 'M', 120), +(59067, 'Jorge', 1946, 'M', 120), +(59068, 'Royal', 1946, 'M', 120), +(59069, 'Jason', 1946, 'M', 118), +(59070, 'Lane', 1946, 'M', 118), +(59071, 'Quentin', 1946, 'M', 118), +(59072, 'Abel', 1946, 'M', 117), +(59073, 'Anton', 1946, 'M', 117), +(59074, 'Basil', 1946, 'M', 117), +(59075, 'Gaylord', 1946, 'M', 117), +(59076, 'Isiah', 1946, 'M', 117), +(59077, 'Jeremiah', 1946, 'M', 117), +(59078, 'Santos', 1946, 'M', 117), +(59079, 'Eli', 1946, 'M', 116), +(59080, 'Orlando', 1946, 'M', 116), +(59081, 'Woody', 1946, 'M', 116), +(59082, 'Linda', 1946, 'M', 115), +(59083, 'Alva', 1946, 'M', 114), +(59084, 'Arlen', 1946, 'M', 114), +(59085, 'Bryant', 1946, 'M', 114), +(59086, 'Clay', 1946, 'M', 114), +(59087, 'Freeman', 1946, 'M', 114), +(59088, 'Joshua', 1946, 'M', 113), +(59089, 'Bryce', 1946, 'M', 112), +(59090, 'Lenard', 1946, 'M', 112), +(59091, 'Andres', 1946, 'M', 111), +(59092, 'Nicky', 1946, 'M', 111), +(59093, 'Patricia', 1946, 'M', 111), +(59094, 'Pasquale', 1946, 'M', 110), +(59095, 'Barbara', 1946, 'M', 109), +(59096, 'Javier', 1946, 'M', 109), +(59097, 'Randell', 1946, 'M', 109), +(59098, 'Winfred', 1946, 'M', 109), +(59099, 'Major', 1946, 'M', 108), +(59100, 'Theron', 1946, 'M', 108), +(59101, 'Israel', 1946, 'M', 107), +(59102, 'Kyle', 1946, 'M', 107), +(59103, 'Augustus', 1946, 'M', 106), +(59104, 'Fletcher', 1946, 'M', 106), +(59105, 'Reggie', 1946, 'M', 106), +(59106, 'Alejandro', 1946, 'M', 105), +(59107, 'Houston', 1946, 'M', 105), +(59108, 'Milford', 1946, 'M', 105), +(59109, 'Val', 1946, 'M', 105), +(59110, 'Bud', 1946, 'M', 104), +(59111, 'Dee', 1946, 'M', 104), +(59112, 'Robbie', 1946, 'M', 104), +(59113, 'Vito', 1946, 'M', 104), +(59114, 'Damon', 1946, 'M', 103), +(59115, 'Wally', 1946, 'M', 103), +(59116, 'Burl', 1946, 'M', 102), +(59117, 'Gearld', 1946, 'M', 102), +(59118, 'Elias', 1946, 'M', 101), +(59119, 'Jules', 1946, 'M', 101), +(59120, 'Normand', 1946, 'M', 101), +(59121, 'Saul', 1946, 'M', 101), +(59122, 'Anderson', 1946, 'M', 100), +(59123, 'Emilio', 1946, 'M', 100), +(59124, 'Forest', 1946, 'M', 100), +(59125, 'Graham', 1946, 'M', 100), +(59126, 'Hoyt', 1946, 'M', 100), +(59127, 'Rogelio', 1946, 'M', 100), +(59128, 'Linda', 1947, 'F', 99680), +(59129, 'Mary', 1947, 'F', 71684), +(59130, 'Patricia', 1947, 'F', 51273), +(59131, 'Barbara', 1947, 'F', 48793), +(59132, 'Sandra', 1947, 'F', 34770), +(59133, 'Carol', 1947, 'F', 33535), +(59134, 'Nancy', 1947, 'F', 32442), +(59135, 'Susan', 1947, 'F', 31952), +(59136, 'Sharon', 1947, 'F', 28536), +(59137, 'Donna', 1947, 'F', 23519), +(59138, 'Kathleen', 1947, 'F', 22098), +(59139, 'Judith', 1947, 'F', 21998), +(59140, 'Karen', 1947, 'F', 21645), +(59141, 'Judy', 1947, 'F', 21033), +(59142, 'Carolyn', 1947, 'F', 20744), +(59143, 'Margaret', 1947, 'F', 20103), +(59144, 'Betty', 1947, 'F', 18962), +(59145, 'Diane', 1947, 'F', 17776), +(59146, 'Shirley', 1947, 'F', 17650), +(59147, 'Joyce', 1947, 'F', 15910), +(59148, 'Brenda', 1947, 'F', 15827), +(59149, 'Janice', 1947, 'F', 15409), +(59150, 'Janet', 1947, 'F', 15235), +(59151, 'Cheryl', 1947, 'F', 13890), +(59152, 'Elizabeth', 1947, 'F', 13443), +(59153, 'Dorothy', 1947, 'F', 12750), +(59154, 'Gloria', 1947, 'F', 12625), +(59155, 'Pamela', 1947, 'F', 12395), +(59156, 'Marilyn', 1947, 'F', 11878), +(59157, 'Joan', 1947, 'F', 11272), +(59158, 'Beverly', 1947, 'F', 11209), +(59159, 'Martha', 1947, 'F', 10651), +(59160, 'Cynthia', 1947, 'F', 10528), +(59161, 'Virginia', 1947, 'F', 10404), +(59162, 'Bonnie', 1947, 'F', 10217), +(59163, 'Jane', 1947, 'F', 9941), +(59164, 'Phyllis', 1947, 'F', 9186), +(59165, 'Helen', 1947, 'F', 8978), +(59166, 'Jean', 1947, 'F', 8942), +(59167, 'Frances', 1947, 'F', 8939), +(59168, 'Ann', 1947, 'F', 8893), +(59169, 'Peggy', 1947, 'F', 8878), +(59170, 'Connie', 1947, 'F', 8642), +(59171, 'Ruth', 1947, 'F', 8480), +(59172, 'Christine', 1947, 'F', 8373), +(59173, 'Catherine', 1947, 'F', 7887), +(59174, 'Alice', 1947, 'F', 7846), +(59175, 'Diana', 1947, 'F', 7621), +(59176, 'Gail', 1947, 'F', 7239), +(59177, 'Elaine', 1947, 'F', 7063), +(59178, 'Jo', 1947, 'F', 6725), +(59179, 'Rebecca', 1947, 'F', 6329), +(59180, 'Suzanne', 1947, 'F', 6231), +(59181, 'Paula', 1947, 'F', 6103), +(59182, 'Kathryn', 1947, 'F', 6093), +(59183, 'Joanne', 1947, 'F', 6062), +(59184, 'Marie', 1947, 'F', 6059), +(59185, 'Doris', 1947, 'F', 6029), +(59186, 'Jacqueline', 1947, 'F', 6009), +(59187, 'Rita', 1947, 'F', 5983), +(59188, 'Ellen', 1947, 'F', 5855), +(59189, 'Deborah', 1947, 'F', 5838), +(59190, 'Lois', 1947, 'F', 5720), +(59191, 'Kathy', 1947, 'F', 5698), +(59192, 'Rose', 1947, 'F', 5658), +(59193, 'Wanda', 1947, 'F', 5649), +(59194, 'Sherry', 1947, 'F', 5578), +(59195, 'Charlotte', 1947, 'F', 5386), +(59196, 'Sue', 1947, 'F', 5307), +(59197, 'Sally', 1947, 'F', 5266), +(59198, 'Darlene', 1947, 'F', 5255), +(59199, 'Evelyn', 1947, 'F', 5245), +(59200, 'Sheila', 1947, 'F', 5094), +(59201, 'Laura', 1947, 'F', 5052), +(59202, 'Lynn', 1947, 'F', 4994), +(59203, 'Katherine', 1947, 'F', 4888), +(59204, 'Lynda', 1947, 'F', 4840), +(59205, 'Geraldine', 1947, 'F', 4809), +(59206, 'Maria', 1947, 'F', 4710), +(59207, 'Rosemary', 1947, 'F', 4542), +(59208, 'Marcia', 1947, 'F', 4471), +(59209, 'Norma', 1947, 'F', 4425), +(59210, 'Dianne', 1947, 'F', 4414), +(59211, 'Lorraine', 1947, 'F', 4411), +(59212, 'Theresa', 1947, 'F', 4391), +(59213, 'Jeanne', 1947, 'F', 4364), +(59214, 'Patsy', 1947, 'F', 4345), +(59215, 'Marsha', 1947, 'F', 4335), +(59216, 'Joann', 1947, 'F', 4276), +(59217, 'Roberta', 1947, 'F', 4261), +(59218, 'Eileen', 1947, 'F', 4249), +(59219, 'Anna', 1947, 'F', 4238), +(59220, 'Sarah', 1947, 'F', 4223), +(59221, 'Anne', 1947, 'F', 4188), +(59222, 'Anita', 1947, 'F', 4186), +(59223, 'Glenda', 1947, 'F', 4156), +(59224, 'Sylvia', 1947, 'F', 4098), +(59225, 'Maureen', 1947, 'F', 4083), +(59226, 'Louise', 1947, 'F', 4050), +(59227, 'Constance', 1947, 'F', 3895), +(59228, 'Vicki', 1947, 'F', 3870), +(59229, 'Carole', 1947, 'F', 3827), +(59230, 'Annie', 1947, 'F', 3758), +(59231, 'Kay', 1947, 'F', 3519), +(59232, 'Charlene', 1947, 'F', 3476), +(59233, 'Marjorie', 1947, 'F', 3449), +(59234, 'Irene', 1947, 'F', 3291), +(59235, 'Janis', 1947, 'F', 3205), +(59236, 'Mildred', 1947, 'F', 3120), +(59237, 'Juanita', 1947, 'F', 3110), +(59238, 'Dolores', 1947, 'F', 3072), +(59239, 'Ruby', 1947, 'F', 3071), +(59240, 'Loretta', 1947, 'F', 2999), +(59241, 'Marlene', 1947, 'F', 2989), +(59242, 'Delores', 1947, 'F', 2966), +(59243, 'Julia', 1947, 'F', 2953), +(59244, 'Yvonne', 1947, 'F', 2914), +(59245, 'Arlene', 1947, 'F', 2908), +(59246, 'Cathy', 1947, 'F', 2859), +(59247, 'June', 1947, 'F', 2840), +(59248, 'Teresa', 1947, 'F', 2810), +(59249, 'Claudia', 1947, 'F', 2763), +(59250, 'Victoria', 1947, 'F', 2739), +(59251, 'Julie', 1947, 'F', 2735), +(59252, 'Jeanette', 1947, 'F', 2599), +(59253, 'Andrea', 1947, 'F', 2509), +(59254, 'Gayle', 1947, 'F', 2485), +(59255, 'Vivian', 1947, 'F', 2483), +(59256, 'Georgia', 1947, 'F', 2475), +(59257, 'Gwendolyn', 1947, 'F', 2449), +(59258, 'Edna', 1947, 'F', 2417), +(59259, 'Leslie', 1947, 'F', 2357); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(59260, 'Josephine', 1947, 'F', 2348), +(59261, 'Paulette', 1947, 'F', 2334), +(59262, 'Terry', 1947, 'F', 2291), +(59263, 'Edith', 1947, 'F', 2199), +(59264, 'Pauline', 1947, 'F', 2178), +(59265, 'Sara', 1947, 'F', 2174), +(59266, 'Margie', 1947, 'F', 2169), +(59267, 'Annette', 1947, 'F', 2142), +(59268, 'Emma', 1947, 'F', 2141), +(59269, 'Penny', 1947, 'F', 2102), +(59270, 'Lillian', 1947, 'F', 2089), +(59271, 'Ethel', 1947, 'F', 2083), +(59272, 'Jennifer', 1947, 'F', 2013), +(59273, 'Audrey', 1947, 'F', 2001), +(59274, 'Lucille', 1947, 'F', 1998), +(59275, 'Michele', 1947, 'F', 1985), +(59276, 'Lynne', 1947, 'F', 1971), +(59277, 'Priscilla', 1947, 'F', 1933), +(59278, 'Clara', 1947, 'F', 1932), +(59279, 'Wilma', 1947, 'F', 1910), +(59280, 'Thelma', 1947, 'F', 1901), +(59281, 'Grace', 1947, 'F', 1882), +(59282, 'Toni', 1947, 'F', 1862), +(59283, 'Jill', 1947, 'F', 1859), +(59284, 'Maryann', 1947, 'F', 1858), +(59285, 'Eleanor', 1947, 'F', 1852), +(59286, 'Florence', 1947, 'F', 1849), +(59287, 'Marion', 1947, 'F', 1847), +(59288, 'Janie', 1947, 'F', 1843), +(59289, 'Esther', 1947, 'F', 1840), +(59290, 'Sheryl', 1947, 'F', 1835), +(59291, 'Pat', 1947, 'F', 1823), +(59292, 'Gladys', 1947, 'F', 1820), +(59293, 'Joy', 1947, 'F', 1815), +(59294, 'Rosa', 1947, 'F', 1800), +(59295, 'Eva', 1947, 'F', 1786), +(59296, 'Vickie', 1947, 'F', 1706), +(59297, 'Denise', 1947, 'F', 1698), +(59298, 'Stephanie', 1947, 'F', 1692), +(59299, 'Bernice', 1947, 'F', 1688), +(59300, 'Willie', 1947, 'F', 1684), +(59301, 'Jackie', 1947, 'F', 1661), +(59302, 'Billie', 1947, 'F', 1653), +(59303, 'Angela', 1947, 'F', 1648), +(59304, 'Ella', 1947, 'F', 1637), +(59305, 'Bobbie', 1947, 'F', 1618), +(59306, 'Marian', 1947, 'F', 1606), +(59307, 'Bertha', 1947, 'F', 1603), +(59308, 'Maxine', 1947, 'F', 1584), +(59309, 'Carla', 1947, 'F', 1569), +(59310, 'Hazel', 1947, 'F', 1560), +(59311, 'Valerie', 1947, 'F', 1553), +(59312, 'Dianna', 1947, 'F', 1538), +(59313, 'Regina', 1947, 'F', 1492), +(59314, 'Emily', 1947, 'F', 1467), +(59315, 'Beatrice', 1947, 'F', 1465), +(59316, 'Bonita', 1947, 'F', 1448), +(59317, 'Rachel', 1947, 'F', 1448), +(59318, 'Lillie', 1947, 'F', 1440), +(59319, 'Jacquelyn', 1947, 'F', 1390), +(59320, 'Faye', 1947, 'F', 1383), +(59321, 'Yolanda', 1947, 'F', 1379), +(59322, 'Lana', 1947, 'F', 1364), +(59323, 'Jan', 1947, 'F', 1358), +(59324, 'Sandy', 1947, 'F', 1354), +(59325, 'Veronica', 1947, 'F', 1354), +(59326, 'Ida', 1947, 'F', 1350), +(59327, 'Stella', 1947, 'F', 1333), +(59328, 'Harriet', 1947, 'F', 1323), +(59329, 'Lucy', 1947, 'F', 1323), +(59330, 'Patty', 1947, 'F', 1319), +(59331, 'Candace', 1947, 'F', 1318), +(59332, 'Becky', 1947, 'F', 1299), +(59333, 'Marianne', 1947, 'F', 1292), +(59334, 'Christina', 1947, 'F', 1284), +(59335, 'Dawn', 1947, 'F', 1269), +(59336, 'Colleen', 1947, 'F', 1268), +(59337, 'Deanna', 1947, 'F', 1263), +(59338, 'Bernadette', 1947, 'F', 1252), +(59339, 'Carmen', 1947, 'F', 1237), +(59340, 'Vera', 1947, 'F', 1218), +(59341, 'Rosie', 1947, 'F', 1208), +(59342, 'Alma', 1947, 'F', 1186), +(59343, 'Claire', 1947, 'F', 1179), +(59344, 'Beth', 1947, 'F', 1178), +(59345, 'Carrie', 1947, 'F', 1170), +(59346, 'Jessie', 1947, 'F', 1156), +(59347, 'Caroline', 1947, 'F', 1151), +(59348, 'Rosemarie', 1947, 'F', 1149), +(59349, 'Myra', 1947, 'F', 1141), +(59350, 'Cindy', 1947, 'F', 1133), +(59351, 'Mattie', 1947, 'F', 1123), +(59352, 'Nora', 1947, 'F', 1096), +(59353, 'Rosalie', 1947, 'F', 1078), +(59354, 'Susie', 1947, 'F', 1071), +(59355, 'Dixie', 1947, 'F', 1063), +(59356, 'Minnie', 1947, 'F', 1050), +(59357, 'Lydia', 1947, 'F', 1048), +(59358, 'Francine', 1947, 'F', 1039), +(59359, 'Dora', 1947, 'F', 1038), +(59360, 'Bessie', 1947, 'F', 1011), +(59361, 'Renee', 1947, 'F', 1001), +(59362, 'Nina', 1947, 'F', 998), +(59363, 'Jeannette', 1947, 'F', 994), +(59364, 'Johnnie', 1947, 'F', 994), +(59365, 'Antoinette', 1947, 'F', 993), +(59366, 'Deloris', 1947, 'F', 992), +(59367, 'Trudy', 1947, 'F', 975), +(59368, 'Wendy', 1947, 'F', 974), +(59369, 'Cecilia', 1947, 'F', 972), +(59370, 'Madeline', 1947, 'F', 972), +(59371, 'Elsie', 1947, 'F', 953), +(59372, 'Robin', 1947, 'F', 937), +(59373, 'Geneva', 1947, 'F', 926), +(59374, 'Sharyn', 1947, 'F', 919), +(59375, 'Michelle', 1947, 'F', 913), +(59376, 'Cecelia', 1947, 'F', 890), +(59377, 'Nellie', 1947, 'F', 876), +(59378, 'Ramona', 1947, 'F', 868), +(59379, 'Iris', 1947, 'F', 865), +(59380, 'Mae', 1947, 'F', 859), +(59381, 'Lee', 1947, 'F', 857), +(59382, 'Olivia', 1947, 'F', 857), +(59383, 'Doreen', 1947, 'F', 853), +(59384, 'Irma', 1947, 'F', 853), +(59385, 'Marguerite', 1947, 'F', 853), +(59386, 'Velma', 1947, 'F', 849), +(59387, 'Betsy', 1947, 'F', 847), +(59388, 'Cora', 1947, 'F', 845), +(59389, 'Hilda', 1947, 'F', 843), +(59390, 'Agnes', 1947, 'F', 839), +(59391, 'Naomi', 1947, 'F', 839), +(59392, 'Ernestine', 1947, 'F', 837), +(59393, 'Vicky', 1947, 'F', 823), +(59394, 'Dale', 1947, 'F', 816), +(59395, 'Leona', 1947, 'F', 815), +(59396, 'Viola', 1947, 'F', 814), +(59397, 'Saundra', 1947, 'F', 813), +(59398, 'Penelope', 1947, 'F', 797), +(59399, 'Gale', 1947, 'F', 795), +(59400, 'Laurie', 1947, 'F', 789), +(59401, 'Terri', 1947, 'F', 780), +(59402, 'Hattie', 1947, 'F', 778), +(59403, 'Verna', 1947, 'F', 778), +(59404, 'Laurel', 1947, 'F', 774), +(59405, 'Alberta', 1947, 'F', 771), +(59406, 'Melody', 1947, 'F', 759), +(59407, 'Sharron', 1947, 'F', 756), +(59408, 'Miriam', 1947, 'F', 754), +(59409, 'Alicia', 1947, 'F', 747), +(59410, 'Shelia', 1947, 'F', 744), +(59411, 'Bettye', 1947, 'F', 739), +(59412, 'Bette', 1947, 'F', 738), +(59413, 'Della', 1947, 'F', 732), +(59414, 'Cheri', 1947, 'F', 730), +(59415, 'Jennie', 1947, 'F', 730), +(59416, 'Jeannie', 1947, 'F', 726), +(59417, 'Marcella', 1947, 'F', 720), +(59418, 'Kristine', 1947, 'F', 718), +(59419, 'Dana', 1947, 'F', 716), +(59420, 'Pearl', 1947, 'F', 713), +(59421, 'Lola', 1947, 'F', 710), +(59422, 'Holly', 1947, 'F', 708), +(59423, 'Lena', 1947, 'F', 706), +(59424, 'Eunice', 1947, 'F', 705), +(59425, 'Gertrude', 1947, 'F', 702), +(59426, 'Melinda', 1947, 'F', 696), +(59427, 'Susanne', 1947, 'F', 691), +(59428, 'Lula', 1947, 'F', 688), +(59429, 'Ginger', 1947, 'F', 684), +(59430, 'Debra', 1947, 'F', 681), +(59431, 'Daisy', 1947, 'F', 680), +(59432, 'Pam', 1947, 'F', 666), +(59433, 'Patti', 1947, 'F', 663), +(59434, 'Bettie', 1947, 'F', 649), +(59435, 'Myrna', 1947, 'F', 646), +(59436, 'Sondra', 1947, 'F', 631), +(59437, 'Violet', 1947, 'F', 627), +(59438, 'Glenna', 1947, 'F', 613), +(59439, 'Monica', 1947, 'F', 613), +(59440, 'Erma', 1947, 'F', 609), +(59441, 'Judi', 1947, 'F', 607), +(59442, 'Sallie', 1947, 'F', 605), +(59443, 'Laverne', 1947, 'F', 603), +(59444, 'Rhonda', 1947, 'F', 603), +(59445, 'Debbie', 1947, 'F', 598), +(59446, 'Lucinda', 1947, 'F', 597), +(59447, 'Myrtle', 1947, 'F', 597), +(59448, 'Margo', 1947, 'F', 596), +(59449, 'Fannie', 1947, 'F', 594), +(59450, 'Katie', 1947, 'F', 586), +(59451, 'Claudette', 1947, 'F', 581), +(59452, 'Guadalupe', 1947, 'F', 581), +(59453, 'Helene', 1947, 'F', 581), +(59454, 'Eloise', 1947, 'F', 579), +(59455, 'Flora', 1947, 'F', 578), +(59456, 'Amy', 1947, 'F', 577), +(59457, 'Lynette', 1947, 'F', 574), +(59458, 'Noreen', 1947, 'F', 574), +(59459, 'Gretchen', 1947, 'F', 570), +(59460, 'Sherrie', 1947, 'F', 569), +(59461, 'Cathleen', 1947, 'F', 568), +(59462, 'Henrietta', 1947, 'F', 565), +(59463, 'Mamie', 1947, 'F', 563), +(59464, 'Jayne', 1947, 'F', 559), +(59465, 'Diann', 1947, 'F', 557), +(59466, 'Nadine', 1947, 'F', 556), +(59467, 'Gay', 1947, 'F', 542), +(59468, 'Tina', 1947, 'F', 541), +(59469, 'Candice', 1947, 'F', 540), +(59470, 'Amelia', 1947, 'F', 538), +(59471, 'Kaye', 1947, 'F', 536), +(59472, 'Jenny', 1947, 'F', 534), +(59473, 'Maggie', 1947, 'F', 529), +(59474, 'Darla', 1947, 'F', 528), +(59475, 'Ada', 1947, 'F', 525), +(59476, 'Melba', 1947, 'F', 522), +(59477, 'Melanie', 1947, 'F', 520), +(59478, 'Rosetta', 1947, 'F', 518), +(59479, 'Candy', 1947, 'F', 515), +(59480, 'Camille', 1947, 'F', 514), +(59481, 'April', 1947, 'F', 511), +(59482, 'Lou', 1947, 'F', 510), +(59483, 'Gwen', 1947, 'F', 509), +(59484, 'Joanna', 1947, 'F', 509), +(59485, 'Frankie', 1947, 'F', 507), +(59486, 'Karla', 1947, 'F', 504), +(59487, 'Freda', 1947, 'F', 501), +(59488, 'Adrienne', 1947, 'F', 500), +(59489, 'Sonja', 1947, 'F', 496), +(59490, 'Kathie', 1947, 'F', 489), +(59491, 'Reba', 1947, 'F', 488), +(59492, 'Rochelle', 1947, 'F', 486), +(59493, 'Molly', 1947, 'F', 484), +(59494, 'Olga', 1947, 'F', 481), +(59495, 'Lorna', 1947, 'F', 474), +(59496, 'Mable', 1947, 'F', 471), +(59497, 'Jerry', 1947, 'F', 469), +(59498, 'Earnestine', 1947, 'F', 468), +(59499, 'Nelda', 1947, 'F', 468), +(59500, 'Inez', 1947, 'F', 460), +(59501, 'Faith', 1947, 'F', 458), +(59502, 'Celia', 1947, 'F', 457), +(59503, 'Rosalind', 1947, 'F', 456), +(59504, 'Roseann', 1947, 'F', 449), +(59505, 'Muriel', 1947, 'F', 448), +(59506, 'Mona', 1947, 'F', 446), +(59507, 'Polly', 1947, 'F', 443), +(59508, 'Adele', 1947, 'F', 435), +(59509, 'Natalie', 1947, 'F', 434), +(59510, 'Cherie', 1947, 'F', 432), +(59511, 'Estella', 1947, 'F', 432), +(59512, 'Jessica', 1947, 'F', 430), +(59513, 'Jeanie', 1947, 'F', 424), +(59514, 'Jimmie', 1947, 'F', 424), +(59515, 'Lisa', 1947, 'F', 422), +(59516, 'Fay', 1947, 'F', 420), +(59517, 'Lauren', 1947, 'F', 420), +(59518, 'Marla', 1947, 'F', 419), +(59519, 'Ilene', 1947, 'F', 413), +(59520, 'Ruthie', 1947, 'F', 413), +(59521, 'Lenora', 1947, 'F', 412), +(59522, 'Genevieve', 1947, 'F', 411), +(59523, 'Janette', 1947, 'F', 411), +(59524, 'Lila', 1947, 'F', 411), +(59525, 'Therese', 1947, 'F', 409), +(59526, 'Lenore', 1947, 'F', 408), +(59527, 'Sherri', 1947, 'F', 408), +(59528, 'Earlene', 1947, 'F', 407), +(59529, 'Marilynn', 1947, 'F', 407), +(59530, 'Eula', 1947, 'F', 406), +(59531, 'Lorene', 1947, 'F', 406), +(59532, 'Hope', 1947, 'F', 405), +(59533, 'Jewel', 1947, 'F', 398), +(59534, 'Rena', 1947, 'F', 393), +(59535, 'Jeri', 1947, 'F', 392), +(59536, 'Dona', 1947, 'F', 389), +(59537, 'Leah', 1947, 'F', 388), +(59538, 'Karin', 1947, 'F', 384), +(59539, 'Sadie', 1947, 'F', 383), +(59540, 'Corinne', 1947, 'F', 382), +(59541, 'Cassandra', 1947, 'F', 378), +(59542, 'Isabel', 1947, 'F', 378), +(59543, 'Blanche', 1947, 'F', 377), +(59544, 'Delia', 1947, 'F', 377), +(59545, 'Margarita', 1947, 'F', 376), +(59546, 'Gracie', 1947, 'F', 375), +(59547, 'Winifred', 1947, 'F', 375), +(59548, 'Beverley', 1947, 'F', 374), +(59549, 'Tamara', 1947, 'F', 374), +(59550, 'Beulah', 1947, 'F', 371), +(59551, 'Lora', 1947, 'F', 371), +(59552, 'Shelby', 1947, 'F', 369), +(59553, 'Lupe', 1947, 'F', 366), +(59554, 'Eugenia', 1947, 'F', 365), +(59555, 'Ina', 1947, 'F', 360), +(59556, 'Josie', 1947, 'F', 360), +(59557, 'Kitty', 1947, 'F', 358), +(59558, 'Dee', 1947, 'F', 356), +(59559, 'Opal', 1947, 'F', 356), +(59560, 'Cherry', 1947, 'F', 354), +(59561, 'Jeannine', 1947, 'F', 354), +(59562, 'Carlene', 1947, 'F', 353), +(59563, 'Bernadine', 1947, 'F', 350), +(59564, 'Katharine', 1947, 'F', 350), +(59565, 'Rae', 1947, 'F', 350), +(59566, 'Ora', 1947, 'F', 347), +(59567, 'Sheri', 1947, 'F', 347), +(59568, 'Gilda', 1947, 'F', 346), +(59569, 'Meredith', 1947, 'F', 346), +(59570, 'Mabel', 1947, 'F', 345), +(59571, 'Etta', 1947, 'F', 342), +(59572, 'Ollie', 1947, 'F', 340), +(59573, 'Harriett', 1947, 'F', 335), +(59574, 'Nettie', 1947, 'F', 332), +(59575, 'Rosanne', 1947, 'F', 332), +(59576, 'Robyn', 1947, 'F', 329), +(59577, 'Essie', 1947, 'F', 327), +(59578, 'Jamie', 1947, 'F', 327), +(59579, 'Marva', 1947, 'F', 327), +(59580, 'Crystal', 1947, 'F', 325), +(59581, 'Estelle', 1947, 'F', 324), +(59582, 'Chris', 1947, 'F', 322), +(59583, 'Lela', 1947, 'F', 322), +(59584, 'Maryanne', 1947, 'F', 322), +(59585, 'Robbie', 1947, 'F', 320), +(59586, 'Melissa', 1947, 'F', 319), +(59587, 'Tommie', 1947, 'F', 319), +(59588, 'Ingrid', 1947, 'F', 317), +(59589, 'Johanna', 1947, 'F', 317), +(59590, 'Dorothea', 1947, 'F', 316), +(59591, 'Amanda', 1947, 'F', 310), +(59592, 'Dorthy', 1947, 'F', 309), +(59593, 'Earline', 1947, 'F', 309), +(59594, 'Tanya', 1947, 'F', 309), +(59595, 'Maryellen', 1947, 'F', 308), +(59596, 'Celeste', 1947, 'F', 306), +(59597, 'Lavonne', 1947, 'F', 305), +(59598, 'Jolene', 1947, 'F', 303), +(59599, 'Willa', 1947, 'F', 303), +(59600, 'Margery', 1947, 'F', 302), +(59601, 'Arleen', 1947, 'F', 301), +(59602, 'Pearlie', 1947, 'F', 301), +(59603, 'Merry', 1947, 'F', 300), +(59604, 'Ladonna', 1947, 'F', 299), +(59605, 'Francis', 1947, 'F', 297), +(59606, 'Antonia', 1947, 'F', 293), +(59607, 'Janine', 1947, 'F', 293), +(59608, 'Terrie', 1947, 'F', 292), +(59609, 'Delois', 1947, 'F', 290), +(59610, 'Elva', 1947, 'F', 290), +(59611, 'Mavis', 1947, 'F', 288), +(59612, 'Rhoda', 1947, 'F', 287), +(59613, 'Marylou', 1947, 'F', 286), +(59614, 'Sherrill', 1947, 'F', 285), +(59615, 'Addie', 1947, 'F', 283), +(59616, 'Sonia', 1947, 'F', 280), +(59617, 'Teri', 1947, 'F', 280), +(59618, 'Ola', 1947, 'F', 279), +(59619, 'Cheryle', 1947, 'F', 278), +(59620, 'Judie', 1947, 'F', 277), +(59621, 'Christy', 1947, 'F', 276), +(59622, 'Kristin', 1947, 'F', 276), +(59623, 'Georgette', 1947, 'F', 275), +(59624, 'Jewell', 1947, 'F', 274), +(59625, 'Heather', 1947, 'F', 273), +(59626, 'Lizzie', 1947, 'F', 273), +(59627, 'Ronnie', 1947, 'F', 272), +(59628, 'Edwina', 1947, 'F', 271), +(59629, 'Rosalyn', 1947, 'F', 270), +(59630, 'Roxanne', 1947, 'F', 270), +(59631, 'Laraine', 1947, 'F', 268), +(59632, 'Clare', 1947, 'F', 267), +(59633, 'Cornelia', 1947, 'F', 267), +(59634, 'Iva', 1947, 'F', 267), +(59635, 'Jannie', 1947, 'F', 266), +(59636, 'Nita', 1947, 'F', 263), +(59637, 'Aleta', 1947, 'F', 262), +(59638, 'Clarice', 1947, 'F', 262), +(59639, 'Dolly', 1947, 'F', 262), +(59640, 'Lottie', 1947, 'F', 262), +(59641, 'Suzette', 1947, 'F', 259), +(59642, 'Eddie', 1947, 'F', 258), +(59643, 'James', 1947, 'F', 257), +(59644, 'Sandi', 1947, 'F', 257), +(59645, 'Shannon', 1947, 'F', 257), +(59646, 'Elena', 1947, 'F', 256), +(59647, 'Fern', 1947, 'F', 255), +(59648, 'Kim', 1947, 'F', 255), +(59649, 'Kimberly', 1947, 'F', 255), +(59650, 'Nan', 1947, 'F', 255), +(59651, 'Sharlene', 1947, 'F', 255), +(59652, 'Ronda', 1947, 'F', 253), +(59653, 'Elvira', 1947, 'F', 252), +(59654, 'Angelina', 1947, 'F', 251), +(59655, 'Nola', 1947, 'F', 251), +(59656, 'Cathie', 1947, 'F', 250), +(59657, 'Karol', 1947, 'F', 250), +(59658, 'Madelyn', 1947, 'F', 250), +(59659, 'Sybil', 1947, 'F', 249), +(59660, 'Alexis', 1947, 'F', 248), +(59661, 'Cathryn', 1947, 'F', 248), +(59662, 'Aurora', 1947, 'F', 247), +(59663, 'Melva', 1947, 'F', 247), +(59664, 'Millie', 1947, 'F', 247), +(59665, 'Shari', 1947, 'F', 244), +(59666, 'Mollie', 1947, 'F', 243), +(59667, 'Roslyn', 1947, 'F', 243), +(59668, 'Belinda', 1947, 'F', 242), +(59669, 'Dian', 1947, 'F', 242), +(59670, 'Suzan', 1947, 'F', 241), +(59671, 'Jody', 1947, 'F', 240), +(59672, 'Alyce', 1947, 'F', 239), +(59673, 'Peggie', 1947, 'F', 239), +(59674, 'Marietta', 1947, 'F', 238), +(59675, 'Nikki', 1947, 'F', 238), +(59676, 'Angie', 1947, 'F', 237), +(59677, 'Queen', 1947, 'F', 237), +(59678, 'Karon', 1947, 'F', 236), +(59679, 'Leola', 1947, 'F', 236), +(59680, 'Loraine', 1947, 'F', 236), +(59681, 'Robert', 1947, 'F', 236), +(59682, 'Cecile', 1947, 'F', 234), +(59683, 'Freddie', 1947, 'F', 234), +(59684, 'May', 1947, 'F', 234), +(59685, 'Alison', 1947, 'F', 233), +(59686, 'Dottie', 1947, 'F', 233), +(59687, 'Gerry', 1947, 'F', 233), +(59688, 'Charleen', 1947, 'F', 231), +(59689, 'Yvette', 1947, 'F', 231), +(59690, 'Jana', 1947, 'F', 230), +(59691, 'Carolann', 1947, 'F', 227), +(59692, 'Joe', 1947, 'F', 227), +(59693, 'Marlys', 1947, 'F', 227), +(59694, 'Effie', 1947, 'F', 226), +(59695, 'Christie', 1947, 'F', 225), +(59696, 'Lyn', 1947, 'F', 225), +(59697, 'Freida', 1947, 'F', 224), +(59698, 'Dena', 1947, 'F', 223), +(59699, 'Lynnette', 1947, 'F', 223), +(59700, 'Nona', 1947, 'F', 223), +(59701, 'Marilee', 1947, 'F', 221), +(59702, 'Jeanine', 1947, 'F', 220), +(59703, 'Alana', 1947, 'F', 219), +(59704, 'Consuelo', 1947, 'F', 219), +(59705, 'Helena', 1947, 'F', 219), +(59706, 'Shelley', 1947, 'F', 219), +(59707, 'Dinah', 1947, 'F', 217), +(59708, 'Madeleine', 1947, 'F', 217), +(59709, 'Lesley', 1947, 'F', 215), +(59710, 'Gayla', 1947, 'F', 213), +(59711, 'Roxie', 1947, 'F', 213), +(59712, 'Cleo', 1947, 'F', 212), +(59713, 'Jerri', 1947, 'F', 212), +(59714, 'Gaye', 1947, 'F', 210), +(59715, 'Rosalinda', 1947, 'F', 210), +(59716, 'Sharen', 1947, 'F', 209), +(59717, 'Darleen', 1947, 'F', 208), +(59718, 'Elisabeth', 1947, 'F', 208), +(59719, 'Julianne', 1947, 'F', 208), +(59720, 'Imogene', 1947, 'F', 206), +(59721, 'Neva', 1947, 'F', 206), +(59722, 'Ruthann', 1947, 'F', 206), +(59723, 'Elnora', 1947, 'F', 205), +(59724, 'Letha', 1947, 'F', 205), +(59725, 'Louella', 1947, 'F', 204), +(59726, 'Heidi', 1947, 'F', 203), +(59727, 'John', 1947, 'F', 203), +(59728, 'Lucia', 1947, 'F', 203), +(59729, 'Merle', 1947, 'F', 203), +(59730, 'Aileen', 1947, 'F', 199), +(59731, 'Ava', 1947, 'F', 199), +(59732, 'Alta', 1947, 'F', 198), +(59733, 'Corrine', 1947, 'F', 196), +(59734, 'Kerry', 1947, 'F', 196), +(59735, 'Nanette', 1947, 'F', 196), +(59736, 'Dollie', 1947, 'F', 192), +(59737, 'Caryl', 1947, 'F', 190), +(59738, 'Janelle', 1947, 'F', 189), +(59739, 'Karyn', 1947, 'F', 189), +(59740, 'Carlotta', 1947, 'F', 188), +(59741, 'Virgie', 1947, 'F', 188), +(59742, 'Bobby', 1947, 'F', 185), +(59743, 'Elise', 1947, 'F', 185), +(59744, 'Madonna', 1947, 'F', 185), +(59745, 'Carmella', 1947, 'F', 184), +(59746, 'Esperanza', 1947, 'F', 184), +(59747, 'Hannah', 1947, 'F', 184), +(59748, 'Maryjane', 1947, 'F', 184), +(59749, 'Ila', 1947, 'F', 183), +(59750, 'Malinda', 1947, 'F', 183), +(59751, 'Gina', 1947, 'F', 182), +(59752, 'Nell', 1947, 'F', 181), +(59753, 'Pamala', 1947, 'F', 180), +(59754, 'Daphne', 1947, 'F', 179), +(59755, 'Patrice', 1947, 'F', 179), +(59756, 'Winnie', 1947, 'F', 179), +(59757, 'Carmela', 1947, 'F', 176), +(59758, 'Leila', 1947, 'F', 176), +(59759, 'Caren', 1947, 'F', 175), +(59760, 'Angeline', 1947, 'F', 174), +(59761, 'Reta', 1947, 'F', 174), +(59762, 'Reva', 1947, 'F', 173), +(59763, 'Michael', 1947, 'F', 172), +(59764, 'Ester', 1947, 'F', 171), +(59765, 'Carolynn', 1947, 'F', 168), +(59766, 'Carrol', 1947, 'F', 168), +(59767, 'Lorena', 1947, 'F', 168), +(59768, 'Nanci', 1947, 'F', 168), +(59769, 'Patrica', 1947, 'F', 168), +(59770, 'Ana', 1947, 'F', 167), +(59771, 'Elma', 1947, 'F', 167), +(59772, 'Georgene', 1947, 'F', 167), +(59773, 'Colette', 1947, 'F', 166), +(59774, 'Rosella', 1947, 'F', 166), +(59775, 'Cinda', 1947, 'F', 165), +(59776, 'Frieda', 1947, 'F', 165), +(59777, 'Celestine', 1947, 'F', 164), +(59778, 'Luana', 1947, 'F', 164), +(59779, 'Sonya', 1947, 'F', 164), +(59780, 'Veda', 1947, 'F', 164), +(59781, 'Fran', 1947, 'F', 163), +(59782, 'Rosalee', 1947, 'F', 163), +(59783, 'Jerrie', 1947, 'F', 162), +(59784, 'Rene', 1947, 'F', 162), +(59785, 'Annmarie', 1947, 'F', 161), +(59786, 'Bridget', 1947, 'F', 161), +(59787, 'Doretha', 1947, 'F', 161), +(59788, 'Jerilyn', 1947, 'F', 161), +(59789, 'Sherryl', 1947, 'F', 161), +(59790, 'Carroll', 1947, 'F', 160), +(59791, 'Odessa', 1947, 'F', 160), +(59792, 'Roseanne', 1947, 'F', 160), +(59793, 'Twila', 1947, 'F', 160), +(59794, 'Dorene', 1947, 'F', 159), +(59795, 'Elouise', 1947, 'F', 159), +(59796, 'Louisa', 1947, 'F', 159), +(59797, 'Jacklyn', 1947, 'F', 158), +(59798, 'Retha', 1947, 'F', 158), +(59799, 'Avis', 1947, 'F', 157), +(59800, 'Luella', 1947, 'F', 157), +(59801, 'Beryl', 1947, 'F', 155), +(59802, 'Libby', 1947, 'F', 155), +(59803, 'William', 1947, 'F', 155), +(59804, 'Marcy', 1947, 'F', 154), +(59805, 'Kristen', 1947, 'F', 153), +(59806, 'Lea', 1947, 'F', 153), +(59807, 'Leta', 1947, 'F', 153), +(59808, 'Bennie', 1947, 'F', 152), +(59809, 'Kristina', 1947, 'F', 152), +(59810, 'Lilly', 1947, 'F', 152), +(59811, 'Tonya', 1947, 'F', 152), +(59812, 'Isabelle', 1947, 'F', 151), +(59813, 'Lonnie', 1947, 'F', 151), +(59814, 'Portia', 1947, 'F', 151), +(59815, 'Adeline', 1947, 'F', 150), +(59816, 'Deanne', 1947, 'F', 150), +(59817, 'Deirdre', 1947, 'F', 149), +(59818, 'Georgianna', 1947, 'F', 149), +(59819, 'Alexandra', 1947, 'F', 148), +(59820, 'Karolyn', 1947, 'F', 148), +(59821, 'Lona', 1947, 'F', 148), +(59822, 'Pattie', 1947, 'F', 148), +(59823, 'Unknown', 1947, 'F', 148), +(59824, 'Arline', 1947, 'F', 147), +(59825, 'Camilla', 1947, 'F', 147), +(59826, 'Corine', 1947, 'F', 147), +(59827, 'Wilda', 1947, 'F', 147), +(59828, 'Mercedes', 1947, 'F', 146), +(59829, 'Zelma', 1947, 'F', 146), +(59830, 'Concetta', 1947, 'F', 145), +(59831, 'Goldie', 1947, 'F', 145), +(59832, 'Ophelia', 1947, 'F', 145), +(59833, 'Richard', 1947, 'F', 144), +(59834, 'Sammie', 1947, 'F', 144), +(59835, 'Theodora', 1947, 'F', 144), +(59836, 'Leanne', 1947, 'F', 143), +(59837, 'Mariann', 1947, 'F', 143), +(59838, 'Corliss', 1947, 'F', 142), +(59839, 'Kathi', 1947, 'F', 142), +(59840, 'Lauretta', 1947, 'F', 142), +(59841, 'Lessie', 1947, 'F', 142), +(59842, 'Vernell', 1947, 'F', 142), +(59843, 'Bonny', 1947, 'F', 141), +(59844, 'Marta', 1947, 'F', 141), +(59845, 'Treva', 1947, 'F', 141), +(59846, 'Janell', 1947, 'F', 140), +(59847, 'Lelia', 1947, 'F', 140), +(59848, 'Oralia', 1947, 'F', 140), +(59849, 'Selma', 1947, 'F', 140), +(59850, 'Sherron', 1947, 'F', 140), +(59851, 'Georgina', 1947, 'F', 139), +(59852, 'Annetta', 1947, 'F', 138), +(59853, 'Charles', 1947, 'F', 138), +(59854, 'Greta', 1947, 'F', 138), +(59855, 'Lily', 1947, 'F', 138), +(59856, 'Evangeline', 1947, 'F', 137), +(59857, 'Felicia', 1947, 'F', 137), +(59858, 'Harriette', 1947, 'F', 137), +(59859, 'Mickey', 1947, 'F', 137), +(59860, 'Sydney', 1947, 'F', 137), +(59861, 'Callie', 1947, 'F', 136), +(59862, 'Jonnie', 1947, 'F', 136), +(59863, 'Justine', 1947, 'F', 136), +(59864, 'Alfreda', 1947, 'F', 135), +(59865, 'Ginny', 1947, 'F', 135), +(59866, 'Elsa', 1947, 'F', 134), +(59867, 'Danielle', 1947, 'F', 133), +(59868, 'Florine', 1947, 'F', 133), +(59869, 'Josefina', 1947, 'F', 133), +(59870, 'Katheryn', 1947, 'F', 133), +(59871, 'Matilda', 1947, 'F', 133), +(59872, 'Randi', 1947, 'F', 133), +(59873, 'Mari', 1947, 'F', 132), +(59874, 'Catharine', 1947, 'F', 131), +(59875, 'Elinor', 1947, 'F', 131), +(59876, 'Leanna', 1947, 'F', 131), +(59877, 'Lucile', 1947, 'F', 131), +(59878, 'Charmaine', 1947, 'F', 130), +(59879, 'Maryjo', 1947, 'F', 130), +(59880, 'Minerva', 1947, 'F', 130), +(59881, 'Rhea', 1947, 'F', 130), +(59882, 'Erlinda', 1947, 'F', 129), +(59883, 'Geri', 1947, 'F', 129), +(59884, 'Suzann', 1947, 'F', 129), +(59885, 'Tracy', 1947, 'F', 129), +(59886, 'Carolina', 1947, 'F', 128), +(59887, 'Claudine', 1947, 'F', 128), +(59888, 'Kathrine', 1947, 'F', 128), +(59889, 'Sheron', 1947, 'F', 128), +(59890, 'Nedra', 1947, 'F', 127), +(59891, 'Phoebe', 1947, 'F', 127), +(59892, 'Susanna', 1947, 'F', 127), +(59893, 'Toby', 1947, 'F', 127), +(59894, 'Benita', 1947, 'F', 126), +(59895, 'Angelita', 1947, 'F', 125), +(59896, 'Debby', 1947, 'F', 125), +(59897, 'Juana', 1947, 'F', 125), +(59898, 'Lorine', 1947, 'F', 125), +(59899, 'Luanne', 1947, 'F', 125), +(59900, 'Barbra', 1947, 'F', 124), +(59901, 'Manuela', 1947, 'F', 124), +(59902, 'Suellen', 1947, 'F', 124), +(59903, 'Juliette', 1947, 'F', 123), +(59904, 'Nannie', 1947, 'F', 123), +(59905, 'Noel', 1947, 'F', 123), +(59906, 'Ronna', 1947, 'F', 123), +(59907, 'Aline', 1947, 'F', 122), +(59908, 'Donnie', 1947, 'F', 122), +(59909, 'Joellen', 1947, 'F', 122), +(59910, 'Lavern', 1947, 'F', 122), +(59911, 'Margret', 1947, 'F', 122), +(59912, 'Ofelia', 1947, 'F', 122), +(59913, 'Flossie', 1947, 'F', 121), +(59914, 'Gearldine', 1947, 'F', 121), +(59915, 'Georgiana', 1947, 'F', 121), +(59916, 'Kate', 1947, 'F', 121), +(59917, 'Laureen', 1947, 'F', 121), +(59918, 'George', 1947, 'F', 120), +(59919, 'Glynda', 1947, 'F', 120), +(59920, 'Randy', 1947, 'F', 120), +(59921, 'Sherilyn', 1947, 'F', 120), +(59922, 'Sophie', 1947, 'F', 120), +(59923, 'Starr', 1947, 'F', 120), +(59924, 'Adela', 1947, 'F', 119), +(59925, 'Danna', 1947, 'F', 119), +(59926, 'Elida', 1947, 'F', 119), +(59927, 'Ivy', 1947, 'F', 119), +(59928, 'Marjory', 1947, 'F', 119), +(59929, 'Winona', 1947, 'F', 119), +(59930, 'Althea', 1947, 'F', 118), +(59931, 'Coleen', 1947, 'F', 118), +(59932, 'Eliza', 1947, 'F', 118), +(59933, 'Eve', 1947, 'F', 118), +(59934, 'Lucretia', 1947, 'F', 118), +(59935, 'Charla', 1947, 'F', 117), +(59936, 'Charlie', 1947, 'F', 117), +(59937, 'Georgie', 1947, 'F', 116), +(59938, 'Luann', 1947, 'F', 116), +(59939, 'Nicki', 1947, 'F', 116), +(59940, 'Shirlee', 1947, 'F', 116), +(59941, 'Sidney', 1947, 'F', 116), +(59942, 'Cassie', 1947, 'F', 115), +(59943, 'Cheryll', 1947, 'F', 115), +(59944, 'Jacquelin', 1947, 'F', 115), +(59945, 'Pamella', 1947, 'F', 115), +(59946, 'Petra', 1947, 'F', 115), +(59947, 'Deana', 1947, 'F', 114), +(59948, 'Enid', 1947, 'F', 114), +(59949, 'Gene', 1947, 'F', 114), +(59950, 'Glinda', 1947, 'F', 114), +(59951, 'Leann', 1947, 'F', 114), +(59952, 'Leigh', 1947, 'F', 114), +(59953, 'Carleen', 1947, 'F', 113), +(59954, 'Hester', 1947, 'F', 113), +(59955, 'Rowena', 1947, 'F', 113), +(59956, 'Annabelle', 1947, 'F', 112), +(59957, 'Daryl', 1947, 'F', 112), +(59958, 'Elisa', 1947, 'F', 112), +(59959, 'Rona', 1947, 'F', 112), +(59960, 'David', 1947, 'F', 111), +(59961, 'Melodie', 1947, 'F', 111), +(59962, 'Norene', 1947, 'F', 111), +(59963, 'Vonda', 1947, 'F', 111), +(59964, 'Tana', 1947, 'F', 110), +(59965, 'Ardith', 1947, 'F', 109), +(59966, 'Kristi', 1947, 'F', 109), +(59967, 'Pennie', 1947, 'F', 109), +(59968, 'Roselyn', 1947, 'F', 109), +(59969, 'Alene', 1947, 'F', 108), +(59970, 'Deidre', 1947, 'F', 108), +(59971, 'Janey', 1947, 'F', 108), +(59972, 'Phillis', 1947, 'F', 108), +(59973, 'Shirlene', 1947, 'F', 108), +(59974, 'Sophia', 1947, 'F', 108), +(59975, 'Kathlyn', 1947, 'F', 107), +(59976, 'Marlyn', 1947, 'F', 107), +(59977, 'Marylin', 1947, 'F', 107), +(59978, 'Rosita', 1947, 'F', 107), +(59979, 'Wilhelmina', 1947, 'F', 107), +(59980, 'Ernestina', 1947, 'F', 106), +(59981, 'Cherryl', 1947, 'F', 105), +(59982, 'Delma', 1947, 'F', 105), +(59983, 'Gerri', 1947, 'F', 105), +(59984, 'Lori', 1947, 'F', 105), +(59985, 'Marina', 1947, 'F', 105), +(59986, 'Carolee', 1947, 'F', 104), +(59987, 'Michaele', 1947, 'F', 104), +(59988, 'Millicent', 1947, 'F', 104), +(59989, 'Francisca', 1947, 'F', 103), +(59990, 'Lura', 1947, 'F', 103), +(59991, 'Marleen', 1947, 'F', 103), +(59992, 'Prudence', 1947, 'F', 103), +(59993, 'Raquel', 1947, 'F', 103), +(59994, 'Thomas', 1947, 'F', 103), +(59995, 'Vickey', 1947, 'F', 103), +(59996, 'Allison', 1947, 'F', 102), +(59997, 'Charline', 1947, 'F', 102), +(59998, 'Evangelina', 1947, 'F', 102), +(59999, 'Jeraldine', 1947, 'F', 102), +(60000, 'Marianna', 1947, 'F', 102), +(60001, 'Rosanna', 1947, 'F', 102), +(60002, 'Ilona', 1947, 'F', 101), +(60003, 'Kris', 1947, 'F', 101), +(60004, 'Lani', 1947, 'F', 101), +(60005, 'Martina', 1947, 'F', 101), +(60006, 'Nannette', 1947, 'F', 101), +(60007, 'Susann', 1947, 'F', 101), +(60008, 'Trudi', 1947, 'F', 101), +(60009, 'Valarie', 1947, 'F', 101), +(60010, 'Maude', 1947, 'F', 100), +(60011, 'Socorro', 1947, 'F', 100), +(60012, 'James', 1947, 'M', 94755), +(60013, 'Robert', 1947, 'M', 91642), +(60014, 'John', 1947, 'M', 88318), +(60015, 'William', 1947, 'M', 66969), +(60016, 'Richard', 1947, 'M', 58499), +(60017, 'David', 1947, 'M', 57797), +(60018, 'Michael', 1947, 'M', 50495), +(60019, 'Thomas', 1947, 'M', 44838), +(60020, 'Charles', 1947, 'M', 40773), +(60021, 'Larry', 1947, 'M', 34937), +(60022, 'Ronald', 1947, 'M', 34884), +(60023, 'Gary', 1947, 'M', 30029), +(60024, 'Donald', 1947, 'M', 28255), +(60025, 'Joseph', 1947, 'M', 27513), +(60026, 'Kenneth', 1947, 'M', 24575), +(60027, 'George', 1947, 'M', 23914), +(60028, 'Dennis', 1947, 'M', 23680), +(60029, 'Paul', 1947, 'M', 22794), +(60030, 'Edward', 1947, 'M', 20549), +(60031, 'Jerry', 1947, 'M', 18784), +(60032, 'Stephen', 1947, 'M', 15319), +(60033, 'Daniel', 1947, 'M', 15191), +(60034, 'Frank', 1947, 'M', 13999), +(60035, 'Steven', 1947, 'M', 13531), +(60036, 'Roger', 1947, 'M', 12759), +(60037, 'Terry', 1947, 'M', 12746), +(60038, 'Raymond', 1947, 'M', 12349), +(60039, 'Gerald', 1947, 'M', 10749), +(60040, 'Bruce', 1947, 'M', 10528), +(60041, 'Wayne', 1947, 'M', 10165), +(60042, 'Douglas', 1947, 'M', 9902), +(60043, 'Lawrence', 1947, 'M', 9582), +(60044, 'Gregory', 1947, 'M', 9329), +(60045, 'Walter', 1947, 'M', 9211), +(60046, 'Harold', 1947, 'M', 8901), +(60047, 'Peter', 1947, 'M', 8591), +(60048, 'Jack', 1947, 'M', 8509), +(60049, 'Arthur', 1947, 'M', 8253), +(60050, 'Danny', 1947, 'M', 8063), +(60051, 'Carl', 1947, 'M', 8048), +(60052, 'Anthony', 1947, 'M', 8015), +(60053, 'Willie', 1947, 'M', 7995), +(60054, 'Joe', 1947, 'M', 7899), +(60055, 'Jimmy', 1947, 'M', 7872), +(60056, 'Alan', 1947, 'M', 7822), +(60057, 'Henry', 1947, 'M', 7807), +(60058, 'Mark', 1947, 'M', 7770), +(60059, 'Roy', 1947, 'M', 7563), +(60060, 'Johnny', 1947, 'M', 7444), +(60061, 'Ralph', 1947, 'M', 7388), +(60062, 'Billy', 1947, 'M', 6932), +(60063, 'Timothy', 1947, 'M', 6745), +(60064, 'Patrick', 1947, 'M', 6621), +(60065, 'Harry', 1947, 'M', 6512), +(60066, 'Albert', 1947, 'M', 6461), +(60067, 'Fred', 1947, 'M', 6385), +(60068, 'Philip', 1947, 'M', 6233), +(60069, 'Steve', 1947, 'M', 6231), +(60070, 'Eugene', 1947, 'M', 6180), +(60071, 'Bobby', 1947, 'M', 6118), +(60072, 'Ronnie', 1947, 'M', 6109), +(60073, 'Howard', 1947, 'M', 6062), +(60074, 'Dale', 1947, 'M', 5934), +(60075, 'Louis', 1947, 'M', 5779), +(60076, 'Mike', 1947, 'M', 5750), +(60077, 'Jeffrey', 1947, 'M', 5661), +(60078, 'Stanley', 1947, 'M', 5499), +(60079, 'Barry', 1947, 'M', 5469), +(60080, 'Russell', 1947, 'M', 5268), +(60081, 'Leonard', 1947, 'M', 5157), +(60082, 'Glenn', 1947, 'M', 5155), +(60083, 'Samuel', 1947, 'M', 5110), +(60084, 'Allen', 1947, 'M', 5073), +(60085, 'Phillip', 1947, 'M', 4785), +(60086, 'Ernest', 1947, 'M', 4780), +(60087, 'Bill', 1947, 'M', 4684), +(60088, 'Jim', 1947, 'M', 4640), +(60089, 'Frederick', 1947, 'M', 4632), +(60090, 'Tommy', 1947, 'M', 4590), +(60091, 'Eddie', 1947, 'M', 4455), +(60092, 'Norman', 1947, 'M', 4411), +(60093, 'Andrew', 1947, 'M', 4338), +(60094, 'Earl', 1947, 'M', 4243), +(60095, 'Francis', 1947, 'M', 4213), +(60096, 'Melvin', 1947, 'M', 4164), +(60097, 'Don', 1947, 'M', 4003), +(60098, 'Clarence', 1947, 'M', 3920), +(60099, 'Tom', 1947, 'M', 3919), +(60100, 'Marvin', 1947, 'M', 3771), +(60101, 'Martin', 1947, 'M', 3725), +(60102, 'Keith', 1947, 'M', 3682), +(60103, 'Lee', 1947, 'M', 3677), +(60104, 'Craig', 1947, 'M', 3639), +(60105, 'Rodney', 1947, 'M', 3562), +(60106, 'Brian', 1947, 'M', 3449), +(60107, 'Alfred', 1947, 'M', 3414), +(60108, 'Ray', 1947, 'M', 3381), +(60109, 'Leroy', 1947, 'M', 3347), +(60110, 'Curtis', 1947, 'M', 3036), +(60111, 'Bernard', 1947, 'M', 2993), +(60112, 'Clifford', 1947, 'M', 2988), +(60113, 'Theodore', 1947, 'M', 2926), +(60114, 'Gene', 1947, 'M', 2898), +(60115, 'Herbert', 1947, 'M', 2857), +(60116, 'Vincent', 1947, 'M', 2806), +(60117, 'Randall', 1947, 'M', 2787), +(60118, 'Jesse', 1947, 'M', 2751), +(60119, 'Warren', 1947, 'M', 2724), +(60120, 'Dan', 1947, 'M', 2703), +(60121, 'Jerome', 1947, 'M', 2689), +(60122, 'Gordon', 1947, 'M', 2670), +(60123, 'Lloyd', 1947, 'M', 2625), +(60124, 'Jimmie', 1947, 'M', 2599), +(60125, 'Edwin', 1947, 'M', 2589), +(60126, 'Bob', 1947, 'M', 2514), +(60127, 'Randy', 1947, 'M', 2501), +(60128, 'Leon', 1947, 'M', 2489), +(60129, 'Lewis', 1947, 'M', 2438), +(60130, 'Jay', 1947, 'M', 2436), +(60131, 'Calvin', 1947, 'M', 2433), +(60132, 'Victor', 1947, 'M', 2356), +(60133, 'Eric', 1947, 'M', 2344), +(60134, 'Jon', 1947, 'M', 2308), +(60135, 'Leslie', 1947, 'M', 2306), +(60136, 'Darrell', 1947, 'M', 2281), +(60137, 'Tony', 1947, 'M', 2276), +(60138, 'Christopher', 1947, 'M', 2273), +(60139, 'Clyde', 1947, 'M', 2266), +(60140, 'Alvin', 1947, 'M', 2215), +(60141, 'Floyd', 1947, 'M', 2211), +(60142, 'Harvey', 1947, 'M', 2208), +(60143, 'Allan', 1947, 'M', 2189), +(60144, 'Joel', 1947, 'M', 2144), +(60145, 'Vernon', 1947, 'M', 2114), +(60146, 'Duane', 1947, 'M', 2093), +(60147, 'Jose', 1947, 'M', 2087), +(60148, 'Lonnie', 1947, 'M', 2084), +(60149, 'Glen', 1947, 'M', 2069), +(60150, 'Scott', 1947, 'M', 2028), +(60151, 'Dean', 1947, 'M', 2002), +(60152, 'Jackie', 1947, 'M', 1987), +(60153, 'Lester', 1947, 'M', 1943), +(60154, 'Nicholas', 1947, 'M', 1938), +(60155, 'Benjamin', 1947, 'M', 1931), +(60156, 'Charlie', 1947, 'M', 1911), +(60157, 'Gilbert', 1947, 'M', 1874), +(60158, 'Leo', 1947, 'M', 1804), +(60159, 'Arnold', 1947, 'M', 1797), +(60160, 'Herman', 1947, 'M', 1793), +(60161, 'Johnnie', 1947, 'M', 1793), +(60162, 'Lynn', 1947, 'M', 1779), +(60163, 'Franklin', 1947, 'M', 1771), +(60164, 'Freddie', 1947, 'M', 1725), +(60165, 'Chester', 1947, 'M', 1713), +(60166, 'Dave', 1947, 'M', 1694), +(60167, 'Manuel', 1947, 'M', 1677), +(60168, 'Ted', 1947, 'M', 1647), +(60169, 'Milton', 1947, 'M', 1636), +(60170, 'Micheal', 1947, 'M', 1628), +(60171, 'Kevin', 1947, 'M', 1553), +(60172, 'Dwight', 1947, 'M', 1542), +(60173, 'Neil', 1947, 'M', 1462), +(60174, 'Wesley', 1947, 'M', 1457), +(60175, 'Garry', 1947, 'M', 1449), +(60176, 'Cecil', 1947, 'M', 1444), +(60177, 'Roland', 1947, 'M', 1433), +(60178, 'Claude', 1947, 'M', 1432), +(60179, 'Donnie', 1947, 'M', 1416), +(60180, 'Sam', 1947, 'M', 1414), +(60181, 'Tim', 1947, 'M', 1329), +(60182, 'Greg', 1947, 'M', 1316), +(60183, 'Juan', 1947, 'M', 1316), +(60184, 'Ricky', 1947, 'M', 1300), +(60185, 'Marshall', 1947, 'M', 1270), +(60186, 'Sammy', 1947, 'M', 1211), +(60187, 'Hugh', 1947, 'M', 1199), +(60188, 'Jonathan', 1947, 'M', 1197), +(60189, 'Stuart', 1947, 'M', 1190), +(60190, 'Wallace', 1947, 'M', 1188), +(60191, 'Guy', 1947, 'M', 1181), +(60192, 'Maurice', 1947, 'M', 1143), +(60193, 'Karl', 1947, 'M', 1120), +(60194, 'Rick', 1947, 'M', 1120), +(60195, 'Kent', 1947, 'M', 1118), +(60196, 'Chris', 1947, 'M', 1117), +(60197, 'Oscar', 1947, 'M', 1110), +(60198, 'Nathaniel', 1947, 'M', 1103), +(60199, 'Sidney', 1947, 'M', 1098), +(60200, 'Terrence', 1947, 'M', 1098), +(60201, 'Alexander', 1947, 'M', 1079), +(60202, 'Marc', 1947, 'M', 1062), +(60203, 'Benny', 1947, 'M', 1060), +(60204, 'Edgar', 1947, 'M', 1056), +(60205, 'Perry', 1947, 'M', 1052), +(60206, 'Jessie', 1947, 'M', 1048), +(60207, 'Matthew', 1947, 'M', 1045), +(60208, 'Carlos', 1947, 'M', 1030), +(60209, 'Willard', 1947, 'M', 1025), +(60210, 'Jeff', 1947, 'M', 1009), +(60211, 'Morris', 1947, 'M', 1005), +(60212, 'Elmer', 1947, 'M', 997), +(60213, 'Gerard', 1947, 'M', 983), +(60214, 'Earnest', 1947, 'M', 979), +(60215, 'Clifton', 1947, 'M', 963), +(60216, 'Randolph', 1947, 'M', 963), +(60217, 'Marion', 1947, 'M', 959), +(60218, 'Dana', 1947, 'M', 946), +(60219, 'Clinton', 1947, 'M', 944), +(60220, 'Bennie', 1947, 'M', 923), +(60221, 'Ron', 1947, 'M', 922), +(60222, 'Fredrick', 1947, 'M', 916), +(60223, 'Lyle', 1947, 'M', 904), +(60224, 'Reginald', 1947, 'M', 896), +(60225, 'Everett', 1947, 'M', 893), +(60226, 'Ben', 1947, 'M', 887), +(60227, 'Ira', 1947, 'M', 884), +(60228, 'Max', 1947, 'M', 869), +(60229, 'Otis', 1947, 'M', 868), +(60230, 'Virgil', 1947, 'M', 855), +(60231, 'Rex', 1947, 'M', 846), +(60232, 'Bradley', 1947, 'M', 830), +(60233, 'Luther', 1947, 'M', 826), +(60234, 'Darryl', 1947, 'M', 823), +(60235, 'Clayton', 1947, 'M', 813), +(60236, 'Nelson', 1947, 'M', 813), +(60237, 'Rickey', 1947, 'M', 809), +(60238, 'Byron', 1947, 'M', 798), +(60239, 'Alex', 1947, 'M', 795), +(60240, 'Terrance', 1947, 'M', 793), +(60241, 'Ross', 1947, 'M', 789), +(60242, 'Mitchell', 1947, 'M', 788), +(60243, 'Laurence', 1947, 'M', 778), +(60244, 'Rudy', 1947, 'M', 755), +(60245, 'Dick', 1947, 'M', 754), +(60246, 'Jesus', 1947, 'M', 754), +(60247, 'Jeffery', 1947, 'M', 743), +(60248, 'Horace', 1947, 'M', 741), +(60249, 'Pete', 1947, 'M', 739), +(60250, 'Ruben', 1947, 'M', 738), +(60251, 'Daryl', 1947, 'M', 736), +(60252, 'Hubert', 1947, 'M', 732), +(60253, 'Antonio', 1947, 'M', 730), +(60254, 'Neal', 1947, 'M', 730), +(60255, 'Delbert', 1947, 'M', 723), +(60256, 'Pat', 1947, 'M', 718), +(60257, 'Wendell', 1947, 'M', 715), +(60258, 'Ken', 1947, 'M', 707), +(60259, 'Kerry', 1947, 'M', 705), +(60260, 'Rudolph', 1947, 'M', 696), +(60261, 'Loren', 1947, 'M', 694), +(60262, 'Kenny', 1947, 'M', 691), +(60263, 'Aaron', 1947, 'M', 681), +(60264, 'Jan', 1947, 'M', 676), +(60265, 'Archie', 1947, 'M', 675), +(60266, 'Carroll', 1947, 'M', 670), +(60267, 'Lowell', 1947, 'M', 670), +(60268, 'Brent', 1947, 'M', 669), +(60269, 'Troy', 1947, 'M', 669), +(60270, 'Tommie', 1947, 'M', 668), +(60271, 'Phil', 1947, 'M', 660), +(60272, 'Leland', 1947, 'M', 656), +(60273, 'Alton', 1947, 'M', 654), +(60274, 'Darrel', 1947, 'M', 649), +(60275, 'Nick', 1947, 'M', 647), +(60276, 'Rodger', 1947, 'M', 646), +(60277, 'Homer', 1947, 'M', 639), +(60278, 'Carlton', 1947, 'M', 637), +(60279, 'Edmund', 1947, 'M', 634), +(60280, 'Malcolm', 1947, 'M', 630), +(60281, 'Tyrone', 1947, 'M', 629), +(60282, 'Oliver', 1947, 'M', 626), +(60283, 'Doyle', 1947, 'M', 621), +(60284, 'Nathan', 1947, 'M', 617), +(60285, 'Jerald', 1947, 'M', 608), +(60286, 'Julius', 1947, 'M', 605), +(60287, 'Lance', 1947, 'M', 604), +(60288, 'Bryan', 1947, 'M', 601), +(60289, 'Isaac', 1947, 'M', 600), +(60290, 'Wilbert', 1947, 'M', 600), +(60291, 'Willis', 1947, 'M', 600), +(60292, 'Clark', 1947, 'M', 596), +(60293, 'Sylvester', 1947, 'M', 596), +(60294, 'Wilbur', 1947, 'M', 595), +(60295, 'Salvatore', 1947, 'M', 594), +(60296, 'Frankie', 1947, 'M', 586), +(60297, 'Geoffrey', 1947, 'M', 578), +(60298, 'Sherman', 1947, 'M', 576), +(60299, 'Raul', 1947, 'M', 571), +(60300, 'Van', 1947, 'M', 569), +(60301, 'Robin', 1947, 'M', 565), +(60302, 'Francisco', 1947, 'M', 559), +(60303, 'Dewey', 1947, 'M', 554), +(60304, 'Mickey', 1947, 'M', 554), +(60305, 'Roosevelt', 1947, 'M', 554), +(60306, 'Julian', 1947, 'M', 550), +(60307, 'Myron', 1947, 'M', 543), +(60308, 'Kurt', 1947, 'M', 535), +(60309, 'Kim', 1947, 'M', 534), +(60310, 'Preston', 1947, 'M', 525), +(60311, 'Roberto', 1947, 'M', 524), +(60312, 'Jacob', 1947, 'M', 521), +(60313, 'Gregg', 1947, 'M', 518), +(60314, 'Ivan', 1947, 'M', 518), +(60315, 'Mack', 1947, 'M', 515), +(60316, 'Forrest', 1947, 'M', 513), +(60317, 'Ellis', 1947, 'M', 510), +(60318, 'Teddy', 1947, 'M', 509), +(60319, 'Mario', 1947, 'M', 499), +(60320, 'Denis', 1947, 'M', 496), +(60321, 'Sammie', 1947, 'M', 492), +(60322, 'Grady', 1947, 'M', 491), +(60323, 'Wade', 1947, 'M', 491), +(60324, 'Ervin', 1947, 'M', 490), +(60325, 'Felix', 1947, 'M', 490), +(60326, 'Rufus', 1947, 'M', 488), +(60327, 'Woodrow', 1947, 'M', 486), +(60328, 'Ramon', 1947, 'M', 481), +(60329, 'Luis', 1947, 'M', 462), +(60330, 'Andy', 1947, 'M', 457), +(60331, 'Pedro', 1947, 'M', 457), +(60332, 'Elbert', 1947, 'M', 456), +(60333, 'Stewart', 1947, 'M', 456), +(60334, 'Grant', 1947, 'M', 451), +(60335, 'Angelo', 1947, 'M', 444), +(60336, 'Denny', 1947, 'M', 440), +(60337, 'Wilson', 1947, 'M', 439), +(60338, 'Freddy', 1947, 'M', 436), +(60339, 'Terence', 1947, 'M', 436), +(60340, 'Eldon', 1947, 'M', 435), +(60341, 'Dallas', 1947, 'M', 432), +(60342, 'Armando', 1947, 'M', 431), +(60343, 'Ronny', 1947, 'M', 429), +(60344, 'Sheldon', 1947, 'M', 427), +(60345, 'Boyd', 1947, 'M', 426), +(60346, 'Emmett', 1947, 'M', 419), +(60347, 'Conrad', 1947, 'M', 417), +(60348, 'Percy', 1947, 'M', 412), +(60349, 'Travis', 1947, 'M', 408), +(60350, 'Owen', 1947, 'M', 405), +(60351, 'Orville', 1947, 'M', 399), +(60352, 'Bert', 1947, 'M', 398), +(60353, 'Ernie', 1947, 'M', 398), +(60354, 'Irvin', 1947, 'M', 395), +(60355, 'Merle', 1947, 'M', 392), +(60356, 'Marcus', 1947, 'M', 391), +(60357, 'Dwayne', 1947, 'M', 390), +(60358, 'Junior', 1947, 'M', 388), +(60359, 'Noel', 1947, 'M', 382), +(60360, 'Ricardo', 1947, 'M', 379), +(60361, 'Buddy', 1947, 'M', 378), +(60362, 'Doug', 1947, 'M', 377), +(60363, 'Gale', 1947, 'M', 377), +(60364, 'Gerry', 1947, 'M', 375), +(60365, 'Ed', 1947, 'M', 369), +(60366, 'Garland', 1947, 'M', 369), +(60367, 'Roderick', 1947, 'M', 368), +(60368, 'Louie', 1947, 'M', 364), +(60369, 'Hal', 1947, 'M', 361), +(60370, 'Royce', 1947, 'M', 361), +(60371, 'Cleveland', 1947, 'M', 360), +(60372, 'Guadalupe', 1947, 'M', 360), +(60373, 'Cary', 1947, 'M', 357), +(60374, 'Alfonso', 1947, 'M', 356), +(60375, 'Chuck', 1947, 'M', 356), +(60376, 'Rene', 1947, 'M', 356), +(60377, 'Vaughn', 1947, 'M', 354), +(60378, 'Edmond', 1947, 'M', 353), +(60379, 'Darwin', 1947, 'M', 351), +(60380, 'Elliott', 1947, 'M', 351), +(60381, 'Kelly', 1947, 'M', 351), +(60382, 'Lionel', 1947, 'M', 350), +(60383, 'Billie', 1947, 'M', 341), +(60384, 'Spencer', 1947, 'M', 337), +(60385, 'Harley', 1947, 'M', 336), +(60386, 'Harlan', 1947, 'M', 335), +(60387, 'Hector', 1947, 'M', 334), +(60388, 'Kirk', 1947, 'M', 334), +(60389, 'Lanny', 1947, 'M', 334), +(60390, 'Al', 1947, 'M', 329), +(60391, 'Bradford', 1947, 'M', 327), +(60392, 'Grover', 1947, 'M', 323), +(60393, 'Lorenzo', 1947, 'M', 323), +(60394, 'Wilfred', 1947, 'M', 322), +(60395, 'Irving', 1947, 'M', 320), +(60396, 'Marlin', 1947, 'M', 316), +(60397, 'Loyd', 1947, 'M', 313), +(60398, 'Ned', 1947, 'M', 313), +(60399, 'Monte', 1947, 'M', 312), +(60400, 'Stephan', 1947, 'M', 312), +(60401, 'Cornelius', 1947, 'M', 311), +(60402, 'Aubrey', 1947, 'M', 307), +(60403, 'Amos', 1947, 'M', 305), +(60404, 'Todd', 1947, 'M', 304), +(60405, 'Adrian', 1947, 'M', 302), +(60406, 'Arturo', 1947, 'M', 301), +(60407, 'Alonzo', 1947, 'M', 300), +(60408, 'Frederic', 1947, 'M', 299), +(60409, 'Galen', 1947, 'M', 299), +(60410, 'Elijah', 1947, 'M', 296), +(60411, 'Murray', 1947, 'M', 294), +(60412, 'Burton', 1947, 'M', 293), +(60413, 'Miguel', 1947, 'M', 293), +(60414, 'Sanford', 1947, 'M', 293), +(60415, 'Dominick', 1947, 'M', 289), +(60416, 'Kermit', 1947, 'M', 286), +(60417, 'Dannie', 1947, 'M', 284), +(60418, 'Dominic', 1947, 'M', 283), +(60419, 'Moses', 1947, 'M', 281), +(60420, 'Sterling', 1947, 'M', 281), +(60421, 'Vance', 1947, 'M', 280), +(60422, 'Lamar', 1947, 'M', 277), +(60423, 'Salvador', 1947, 'M', 275), +(60424, 'Winston', 1947, 'M', 275), +(60425, 'Miles', 1947, 'M', 272), +(60426, 'Lon', 1947, 'M', 271), +(60427, 'Adam', 1947, 'M', 270), +(60428, 'Elwood', 1947, 'M', 270), +(60429, 'Randal', 1947, 'M', 267), +(60430, 'Barney', 1947, 'M', 266), +(60431, 'Fernando', 1947, 'M', 265), +(60432, 'Harrison', 1947, 'M', 263), +(60433, 'Jess', 1947, 'M', 261), +(60434, 'Alfredo', 1947, 'M', 260), +(60435, 'Emil', 1947, 'M', 258), +(60436, 'Rickie', 1947, 'M', 258), +(60437, 'Austin', 1947, 'M', 257), +(60438, 'Norbert', 1947, 'M', 255), +(60439, 'Stan', 1947, 'M', 254), +(60440, 'Bobbie', 1947, 'M', 251), +(60441, 'Norris', 1947, 'M', 251), +(60442, 'August', 1947, 'M', 250), +(60443, 'Thurman', 1947, 'M', 250), +(60444, 'Linwood', 1947, 'M', 247), +(60445, 'Weldon', 1947, 'M', 243), +(60446, 'Abraham', 1947, 'M', 240), +(60447, 'Gabriel', 1947, 'M', 237), +(60448, 'Rafael', 1947, 'M', 237), +(60449, 'Carmen', 1947, 'M', 234), +(60450, 'Elton', 1947, 'M', 234), +(60451, 'Brad', 1947, 'M', 230), +(60452, 'Simon', 1947, 'M', 230), +(60453, 'Elliot', 1947, 'M', 229), +(60454, 'Wiley', 1947, 'M', 229), +(60455, 'Odell', 1947, 'M', 227), +(60456, 'Carey', 1947, 'M', 226), +(60457, 'Roscoe', 1947, 'M', 226), +(60458, 'Dewayne', 1947, 'M', 225), +(60459, 'Dudley', 1947, 'M', 224), +(60460, 'Eddy', 1947, 'M', 224), +(60461, 'Fredric', 1947, 'M', 223), +(60462, 'Monty', 1947, 'M', 218), +(60463, 'Ward', 1947, 'M', 218), +(60464, 'Andre', 1947, 'M', 217), +(60465, 'Delmar', 1947, 'M', 217), +(60466, 'Sandy', 1947, 'M', 217), +(60467, 'Elvin', 1947, 'M', 216), +(60468, 'Enrique', 1947, 'M', 216), +(60469, 'Millard', 1947, 'M', 216), +(60470, 'Linda', 1947, 'M', 215), +(60471, 'Drew', 1947, 'M', 213), +(60472, 'Maynard', 1947, 'M', 212), +(60473, 'Rodolfo', 1947, 'M', 212), +(60474, 'Evan', 1947, 'M', 211), +(60475, 'Blaine', 1947, 'M', 210), +(60476, 'Jerold', 1947, 'M', 209), +(60477, 'Kirby', 1947, 'M', 209), +(60478, 'Will', 1947, 'M', 209), +(60479, 'Monroe', 1947, 'M', 206), +(60480, 'Gail', 1947, 'M', 205), +(60481, 'Jasper', 1947, 'M', 204), +(60482, 'Truman', 1947, 'M', 204), +(60483, 'Alphonso', 1947, 'M', 203), +(60484, 'Ernesto', 1947, 'M', 202), +(60485, 'Russel', 1947, 'M', 202), +(60486, 'Reuben', 1947, 'M', 201), +(60487, 'Nolan', 1947, 'M', 198), +(60488, 'Emanuel', 1947, 'M', 196), +(60489, 'Hollis', 1947, 'M', 196), +(60490, 'Alberto', 1947, 'M', 194), +(60491, 'Gus', 1947, 'M', 194), +(60492, 'Kennith', 1947, 'M', 194), +(60493, 'Merrill', 1947, 'M', 194), +(60494, 'Dickie', 1947, 'M', 192), +(60495, 'Donny', 1947, 'M', 192), +(60496, 'Coy', 1947, 'M', 191), +(60497, 'Rod', 1947, 'M', 191), +(60498, 'Domingo', 1947, 'M', 190), +(60499, 'Harris', 1947, 'M', 190), +(60500, 'Jake', 1947, 'M', 189), +(60501, 'Charley', 1947, 'M', 188), +(60502, 'Jerrold', 1947, 'M', 188), +(60503, 'Christian', 1947, 'M', 187), +(60504, 'Jackson', 1947, 'M', 187), +(60505, 'Tomas', 1947, 'M', 187), +(60506, 'Riley', 1947, 'M', 186), +(60507, 'Levi', 1947, 'M', 184), +(60508, 'Mary', 1947, 'M', 184), +(60509, 'Tracy', 1947, 'M', 184), +(60510, 'Ramiro', 1947, 'M', 183), +(60511, 'Terrell', 1947, 'M', 182), +(60512, 'Irwin', 1947, 'M', 179), +(60513, 'Carter', 1947, 'M', 178), +(60514, 'Rocky', 1947, 'M', 178), +(60515, 'Denver', 1947, 'M', 177), +(60516, 'Joesph', 1947, 'M', 177), +(60517, 'Johnie', 1947, 'M', 177), +(60518, 'Laverne', 1947, 'M', 177), +(60519, 'Bernie', 1947, 'M', 176), +(60520, 'Colin', 1947, 'M', 176), +(60521, 'Dane', 1947, 'M', 176), +(60522, 'Emory', 1947, 'M', 176), +(60523, 'Gilberto', 1947, 'M', 176), +(60524, 'Otto', 1947, 'M', 176), +(60525, 'Morgan', 1947, 'M', 175), +(60526, 'Rocco', 1947, 'M', 175), +(60527, 'Joey', 1947, 'M', 174), +(60528, 'Connie', 1947, 'M', 173), +(60529, 'Angel', 1947, 'M', 171), +(60530, 'Barton', 1947, 'M', 171), +(60531, 'Ollie', 1947, 'M', 170), +(60532, 'Solomon', 1947, 'M', 170), +(60533, 'Marty', 1947, 'M', 169), +(60534, 'Jeffry', 1947, 'M', 168), +(60535, 'Ulysses', 1947, 'M', 168), +(60536, 'Buford', 1947, 'M', 167), +(60537, 'Thaddeus', 1947, 'M', 167), +(60538, 'Armand', 1947, 'M', 165), +(60539, 'Forest', 1947, 'M', 164), +(60540, 'Carol', 1947, 'M', 163), +(60541, 'Merlin', 1947, 'M', 163), +(60542, 'Reynaldo', 1947, 'M', 161), +(60543, 'Reed', 1947, 'M', 160), +(60544, 'Booker', 1947, 'M', 159), +(60545, 'Cornell', 1947, 'M', 159), +(60546, 'Vern', 1947, 'M', 159), +(60547, 'Basil', 1947, 'M', 158), +(60548, 'Duncan', 1947, 'M', 158), +(60549, 'Clair', 1947, 'M', 157), +(60550, 'Noah', 1947, 'M', 156), +(60551, 'Jean', 1947, 'M', 155), +(60552, 'Royal', 1947, 'M', 154), +(60553, 'Santos', 1947, 'M', 154), +(60554, 'Dexter', 1947, 'M', 153), +(60555, 'Orlando', 1947, 'M', 153), +(60556, 'Clement', 1947, 'M', 152), +(60557, 'Garrett', 1947, 'M', 152), +(60558, 'Kyle', 1947, 'M', 152), +(60559, 'Errol', 1947, 'M', 151), +(60560, 'Jorge', 1947, 'M', 151), +(60561, 'Luke', 1947, 'M', 151), +(60562, 'Kendall', 1947, 'M', 150), +(60563, 'Pablo', 1947, 'M', 150), +(60564, 'Justin', 1947, 'M', 148), +(60565, 'Toby', 1947, 'M', 148), +(60566, 'Davis', 1947, 'M', 147), +(60567, 'Robbie', 1947, 'M', 147), +(60568, 'Wilmer', 1947, 'M', 147), +(60569, 'Abel', 1947, 'M', 146), +(60570, 'Lupe', 1947, 'M', 146), +(60571, 'Clay', 1947, 'M', 145), +(60572, 'Lamont', 1947, 'M', 145), +(60573, 'Randell', 1947, 'M', 145), +(60574, 'Shelby', 1947, 'M', 145), +(60575, 'Emery', 1947, 'M', 144), +(60576, 'Michel', 1947, 'M', 144), +(60577, 'Earle', 1947, 'M', 143), +(60578, 'Eli', 1947, 'M', 143), +(60579, 'Sonny', 1947, 'M', 142), +(60580, 'Emilio', 1947, 'M', 141), +(60581, 'Joshua', 1947, 'M', 141), +(60582, 'Cleo', 1947, 'M', 140), +(60583, 'Cliff', 1947, 'M', 140), +(60584, 'Elias', 1947, 'M', 140), +(60585, 'Vito', 1947, 'M', 140), +(60586, 'Wilburn', 1947, 'M', 139), +(60587, 'Jefferson', 1947, 'M', 138), +(60588, 'Mac', 1947, 'M', 138), +(60589, 'Damon', 1947, 'M', 137), +(60590, 'Erwin', 1947, 'M', 137), +(60591, 'Herschel', 1947, 'M', 137), +(60592, 'Ignacio', 1947, 'M', 137), +(60593, 'Jody', 1947, 'M', 137), +(60594, 'Julio', 1947, 'M', 136), +(60595, 'Carson', 1947, 'M', 135), +(60596, 'Jason', 1947, 'M', 135), +(60597, 'Rolland', 1947, 'M', 135), +(60598, 'Gayle', 1947, 'M', 134), +(60599, 'Mervin', 1947, 'M', 134), +(60600, 'Dwain', 1947, 'M', 133), +(60601, 'Everette', 1947, 'M', 133), +(60602, 'Felipe', 1947, 'M', 133), +(60603, 'Isaiah', 1947, 'M', 133), +(60604, 'Rogers', 1947, 'M', 133), +(60605, 'Silas', 1947, 'M', 132), +(60606, 'Alva', 1947, 'M', 131), +(60607, 'Winfred', 1947, 'M', 131), +(60608, 'Jeremiah', 1947, 'M', 130), +(60609, 'Dalton', 1947, 'M', 129), +(60610, 'Odis', 1947, 'M', 129), +(60611, 'Wilford', 1947, 'M', 129), +(60612, 'Freeman', 1947, 'M', 128), +(60613, 'Bart', 1947, 'M', 127), +(60614, 'Hershel', 1947, 'M', 127), +(60615, 'Bennett', 1947, 'M', 126), +(60616, 'Curt', 1947, 'M', 126), +(60617, 'Glynn', 1947, 'M', 126), +(60618, 'Lavern', 1947, 'M', 126), +(60619, 'Lenard', 1947, 'M', 126), +(60620, 'Andres', 1947, 'M', 125), +(60621, 'Lonny', 1947, 'M', 125), +(60622, 'Alden', 1947, 'M', 124), +(60623, 'Carmine', 1947, 'M', 124), +(60624, 'Shirley', 1947, 'M', 124), +(60625, 'Carrol', 1947, 'M', 123), +(60626, 'Bryant', 1947, 'M', 122), +(60627, 'Foster', 1947, 'M', 122), +(60628, 'Jaime', 1947, 'M', 122), +(60629, 'Shelton', 1947, 'M', 122), +(60630, 'Benito', 1947, 'M', 121), +(60631, 'Donn', 1947, 'M', 121), +(60632, 'Erik', 1947, 'M', 121), +(60633, 'Houston', 1947, 'M', 121), +(60634, 'Major', 1947, 'M', 121), +(60635, 'Anton', 1947, 'M', 120), +(60636, 'Dee', 1947, 'M', 120), +(60637, 'Gaylord', 1947, 'M', 120), +(60638, 'Jere', 1947, 'M', 120), +(60639, 'Nicky', 1947, 'M', 120), +(60640, 'Patricia', 1947, 'M', 120), +(60641, 'Reid', 1947, 'M', 120), +(60642, 'Lyman', 1947, 'M', 119), +(60643, 'Olin', 1947, 'M', 119), +(60644, 'Alejandro', 1947, 'M', 118), +(60645, 'Anderson', 1947, 'M', 118), +(60646, 'Rogelio', 1947, 'M', 118), +(60647, 'Wally', 1947, 'M', 118), +(60648, 'Jacky', 1947, 'M', 117), +(60649, 'Lane', 1947, 'M', 117), +(60650, 'Roman', 1947, 'M', 117), +(60651, 'Augustine', 1947, 'M', 116), +(60652, 'Emerson', 1947, 'M', 116), +(60653, 'Val', 1947, 'M', 116), +(60654, 'Judson', 1947, 'M', 115), +(60655, 'Otha', 1947, 'M', 115), +(60656, 'Coleman', 1947, 'M', 114), +(60657, 'Eduardo', 1947, 'M', 114), +(60658, 'Haywood', 1947, 'M', 114), +(60659, 'Isiah', 1947, 'M', 114), +(60660, 'Guillermo', 1947, 'M', 113), +(60661, 'Stanford', 1947, 'M', 113), +(60662, 'Arden', 1947, 'M', 112), +(60663, 'Delmer', 1947, 'M', 112), +(60664, 'Graham', 1947, 'M', 112), +(60665, 'Ian', 1947, 'M', 112), +(60666, 'Israel', 1947, 'M', 112), +(60667, 'Saul', 1947, 'M', 112), +(60668, 'Javier', 1947, 'M', 111), +(60669, 'Quentin', 1947, 'M', 111), +(60670, 'Raleigh', 1947, 'M', 111), +(60671, 'Art', 1947, 'M', 110), +(60672, 'Sherwood', 1947, 'M', 110), +(60673, 'Woody', 1947, 'M', 109), +(60674, 'Bryce', 1947, 'M', 108), +(60675, 'Emile', 1947, 'M', 108), +(60676, 'Felton', 1947, 'M', 108), +(60677, 'Humberto', 1947, 'M', 108), +(60678, 'Santiago', 1947, 'M', 108), +(60679, 'Adolph', 1947, 'M', 106), +(60680, 'Bud', 1947, 'M', 106), +(60681, 'Burl', 1947, 'M', 106), +(60682, 'Gearld', 1947, 'M', 106), +(60683, 'Butch', 1947, 'M', 105), +(60684, 'Cyril', 1947, 'M', 105), +(60685, 'Ismael', 1947, 'M', 105), +(60686, 'Jules', 1947, 'M', 105), +(60687, 'Leigh', 1947, 'M', 105), +(60688, 'Pasquale', 1947, 'M', 105), +(60689, 'Rayford', 1947, 'M', 105), +(60690, 'Harmon', 1947, 'M', 104), +(60691, 'Hiram', 1947, 'M', 104), +(60692, 'Stanton', 1947, 'M', 104), +(60693, 'Claud', 1947, 'M', 103), +(60694, 'Theron', 1947, 'M', 103), +(60695, 'Wilton', 1947, 'M', 103), +(60696, 'Benedict', 1947, 'M', 102), +(60697, 'Pierre', 1947, 'M', 102), +(60698, 'Reggie', 1947, 'M', 102), +(60699, 'Ryan', 1947, 'M', 102), +(60700, 'Douglass', 1947, 'M', 101), +(60701, 'Milford', 1947, 'M', 101), +(60702, 'Russ', 1947, 'M', 101), +(60703, 'Sean', 1947, 'M', 101), +(60704, 'Elmo', 1947, 'M', 100), +(60705, 'Garth', 1947, 'M', 100), +(60706, 'Melvyn', 1947, 'M', 100), +(60707, 'Myles', 1947, 'M', 100), +(60708, 'Linda', 1948, 'F', 96205), +(60709, 'Mary', 1948, 'F', 68595), +(60710, 'Barbara', 1948, 'F', 46825), +(60711, 'Patricia', 1948, 'F', 46134), +(60712, 'Susan', 1948, 'F', 35980), +(60713, 'Sandra', 1948, 'F', 31060), +(60714, 'Nancy', 1948, 'F', 29410), +(60715, 'Carol', 1948, 'F', 28981), +(60716, 'Sharon', 1948, 'F', 26137), +(60717, 'Kathleen', 1948, 'F', 23255), +(60718, 'Donna', 1948, 'F', 22034), +(60719, 'Karen', 1948, 'F', 21991), +(60720, 'Margaret', 1948, 'F', 18869), +(60721, 'Carolyn', 1948, 'F', 18613), +(60722, 'Judith', 1948, 'F', 17785), +(60723, 'Judy', 1948, 'F', 17704), +(60724, 'Brenda', 1948, 'F', 17697), +(60725, 'Betty', 1948, 'F', 16623), +(60726, 'Diane', 1948, 'F', 16602), +(60727, 'Shirley', 1948, 'F', 16129), +(60728, 'Joyce', 1948, 'F', 14378), +(60729, 'Pamela', 1948, 'F', 14279), +(60730, 'Janice', 1948, 'F', 14159), +(60731, 'Janet', 1948, 'F', 13979), +(60732, 'Cheryl', 1948, 'F', 13219), +(60733, 'Elizabeth', 1948, 'F', 13209), +(60734, 'Cynthia', 1948, 'F', 12243), +(60735, 'Gloria', 1948, 'F', 11690), +(60736, 'Dorothy', 1948, 'F', 11327), +(60737, 'Deborah', 1948, 'F', 11246), +(60738, 'Beverly', 1948, 'F', 10793), +(60739, 'Martha', 1948, 'F', 10006), +(60740, 'Marilyn', 1948, 'F', 9935), +(60741, 'Bonnie', 1948, 'F', 9819), +(60742, 'Christine', 1948, 'F', 9679), +(60743, 'Virginia', 1948, 'F', 9300), +(60744, 'Joan', 1948, 'F', 9273), +(60745, 'Peggy', 1948, 'F', 9087), +(60746, 'Jane', 1948, 'F', 8780), +(60747, 'Helen', 1948, 'F', 8306), +(60748, 'Catherine', 1948, 'F', 8246), +(60749, 'Frances', 1948, 'F', 8176), +(60750, 'Connie', 1948, 'F', 8055), +(60751, 'Ann', 1948, 'F', 8022), +(60752, 'Ruth', 1948, 'F', 7901), +(60753, 'Phyllis', 1948, 'F', 7875), +(60754, 'Jean', 1948, 'F', 7774), +(60755, 'Diana', 1948, 'F', 7702), +(60756, 'Alice', 1948, 'F', 6981), +(60757, 'Rebecca', 1948, 'F', 6797), +(60758, 'Gail', 1948, 'F', 6602), +(60759, 'Paula', 1948, 'F', 6594), +(60760, 'Elaine', 1948, 'F', 6400), +(60761, 'Kathryn', 1948, 'F', 6176), +(60762, 'Kathy', 1948, 'F', 6147), +(60763, 'Jo', 1948, 'F', 5985), +(60764, 'Wanda', 1948, 'F', 5919), +(60765, 'Jacqueline', 1948, 'F', 5838), +(60766, 'Rita', 1948, 'F', 5835), +(60767, 'Marie', 1948, 'F', 5785); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(60768, 'Sherry', 1948, 'F', 5716), +(60769, 'Rose', 1948, 'F', 5555), +(60770, 'Theresa', 1948, 'F', 5552), +(60771, 'Doris', 1948, 'F', 5547), +(60772, 'Joanne', 1948, 'F', 5497), +(60773, 'Suzanne', 1948, 'F', 5446), +(60774, 'Ellen', 1948, 'F', 5291), +(60775, 'Katherine', 1948, 'F', 5170), +(60776, 'Charlotte', 1948, 'F', 5165), +(60777, 'Lois', 1948, 'F', 5076), +(60778, 'Sheila', 1948, 'F', 5021), +(60779, 'Sally', 1948, 'F', 5009), +(60780, 'Laura', 1948, 'F', 4900), +(60781, 'Evelyn', 1948, 'F', 4845), +(60782, 'Maria', 1948, 'F', 4813), +(60783, 'Marsha', 1948, 'F', 4723), +(60784, 'Darlene', 1948, 'F', 4691), +(60785, 'Sue', 1948, 'F', 4674), +(60786, 'Marcia', 1948, 'F', 4643), +(60787, 'Lynn', 1948, 'F', 4608), +(60788, 'Vicki', 1948, 'F', 4363), +(60789, 'Teresa', 1948, 'F', 4217), +(60790, 'Geraldine', 1948, 'F', 4212), +(60791, 'Lynda', 1948, 'F', 4168), +(60792, 'Sarah', 1948, 'F', 4155), +(60793, 'Dianne', 1948, 'F', 4140), +(60794, 'Anne', 1948, 'F', 4122), +(60795, 'Maureen', 1948, 'F', 4078), +(60796, 'Anna', 1948, 'F', 4039), +(60797, 'Rosemary', 1948, 'F', 3868), +(60798, 'Eileen', 1948, 'F', 3840), +(60799, 'Glenda', 1948, 'F', 3831), +(60800, 'Constance', 1948, 'F', 3812), +(60801, 'Joann', 1948, 'F', 3799), +(60802, 'Jeanne', 1948, 'F', 3788), +(60803, 'Lorraine', 1948, 'F', 3745), +(60804, 'Annie', 1948, 'F', 3719), +(60805, 'Patsy', 1948, 'F', 3715), +(60806, 'Louise', 1948, 'F', 3683), +(60807, 'Sylvia', 1948, 'F', 3670), +(60808, 'Roberta', 1948, 'F', 3667), +(60809, 'Anita', 1948, 'F', 3614), +(60810, 'Norma', 1948, 'F', 3591), +(60811, 'Cathy', 1948, 'F', 3562), +(60812, 'Charlene', 1948, 'F', 3490), +(60813, 'Carole', 1948, 'F', 3312), +(60814, 'Juanita', 1948, 'F', 3207), +(60815, 'Victoria', 1948, 'F', 3133), +(60816, 'Marlene', 1948, 'F', 3054), +(60817, 'Marjorie', 1948, 'F', 3049), +(60818, 'Yvonne', 1948, 'F', 3043), +(60819, 'Irene', 1948, 'F', 3042), +(60820, 'Kay', 1948, 'F', 2944), +(60821, 'Ruby', 1948, 'F', 2896), +(60822, 'Loretta', 1948, 'F', 2868), +(60823, 'Delores', 1948, 'F', 2839), +(60824, 'Julie', 1948, 'F', 2795), +(60825, 'Julia', 1948, 'F', 2775), +(60826, 'Dolores', 1948, 'F', 2761), +(60827, 'Mildred', 1948, 'F', 2755), +(60828, 'Janis', 1948, 'F', 2746), +(60829, 'Claudia', 1948, 'F', 2624), +(60830, 'Paulette', 1948, 'F', 2579), +(60831, 'Gwendolyn', 1948, 'F', 2507), +(60832, 'Arlene', 1948, 'F', 2480), +(60833, 'Vivian', 1948, 'F', 2423), +(60834, 'June', 1948, 'F', 2392), +(60835, 'Andrea', 1948, 'F', 2366), +(60836, 'Jeanette', 1948, 'F', 2331), +(60837, 'Georgia', 1948, 'F', 2313), +(60838, 'Leslie', 1948, 'F', 2307), +(60839, 'Regina', 1948, 'F', 2292), +(60840, 'Terry', 1948, 'F', 2281), +(60841, 'Josephine', 1948, 'F', 2229), +(60842, 'Valerie', 1948, 'F', 2130), +(60843, 'Lillian', 1948, 'F', 2114), +(60844, 'Stephanie', 1948, 'F', 2103), +(60845, 'Emma', 1948, 'F', 2099), +(60846, 'Edna', 1948, 'F', 2097), +(60847, 'Edith', 1948, 'F', 2082), +(60848, 'Gayle', 1948, 'F', 2066), +(60849, 'Sara', 1948, 'F', 2020), +(60850, 'Vickie', 1948, 'F', 2019), +(60851, 'Sheryl', 1948, 'F', 2008), +(60852, 'Pauline', 1948, 'F', 1964), +(60853, 'Annette', 1948, 'F', 1934), +(60854, 'Denise', 1948, 'F', 1929), +(60855, 'Margie', 1948, 'F', 1928), +(60856, 'Rosa', 1948, 'F', 1928), +(60857, 'Jill', 1948, 'F', 1887), +(60858, 'Jennifer', 1948, 'F', 1881), +(60859, 'Ethel', 1948, 'F', 1874), +(60860, 'Penny', 1948, 'F', 1861), +(60861, 'Lucille', 1948, 'F', 1854), +(60862, 'Esther', 1948, 'F', 1851), +(60863, 'Priscilla', 1948, 'F', 1844), +(60864, 'Audrey', 1948, 'F', 1839), +(60865, 'Angela', 1948, 'F', 1803), +(60866, 'Michele', 1948, 'F', 1796), +(60867, 'Clara', 1948, 'F', 1793), +(60868, 'Colleen', 1948, 'F', 1783), +(60869, 'Eva', 1948, 'F', 1774), +(60870, 'Thelma', 1948, 'F', 1764), +(60871, 'Wilma', 1948, 'F', 1740), +(60872, 'Florence', 1948, 'F', 1698), +(60873, 'Lynne', 1948, 'F', 1683), +(60874, 'Grace', 1948, 'F', 1679), +(60875, 'Willie', 1948, 'F', 1669), +(60876, 'Eleanor', 1948, 'F', 1664), +(60877, 'Maryann', 1948, 'F', 1631), +(60878, 'Joy', 1948, 'F', 1627), +(60879, 'Dianna', 1948, 'F', 1625), +(60880, 'Gladys', 1948, 'F', 1602), +(60881, 'Toni', 1948, 'F', 1601), +(60882, 'Marion', 1948, 'F', 1593), +(60883, 'Janie', 1948, 'F', 1578), +(60884, 'Ella', 1948, 'F', 1551), +(60885, 'Billie', 1948, 'F', 1546), +(60886, 'Bobbie', 1948, 'F', 1543), +(60887, 'Carla', 1948, 'F', 1542), +(60888, 'Maxine', 1948, 'F', 1523), +(60889, 'Wendy', 1948, 'F', 1517), +(60890, 'Bertha', 1948, 'F', 1515), +(60891, 'Christina', 1948, 'F', 1493), +(60892, 'Bernice', 1948, 'F', 1489), +(60893, 'Veronica', 1948, 'F', 1478), +(60894, 'Jackie', 1948, 'F', 1467), +(60895, 'Lana', 1948, 'F', 1464), +(60896, 'Lillie', 1948, 'F', 1454), +(60897, 'Candace', 1948, 'F', 1446), +(60898, 'Beatrice', 1948, 'F', 1433), +(60899, 'Marianne', 1948, 'F', 1425), +(60900, 'Jacquelyn', 1948, 'F', 1421), +(60901, 'Emily', 1948, 'F', 1392), +(60902, 'Rachel', 1948, 'F', 1390), +(60903, 'Marian', 1948, 'F', 1387), +(60904, 'Yolanda', 1948, 'F', 1364), +(60905, 'Renee', 1948, 'F', 1362), +(60906, 'Hazel', 1948, 'F', 1347), +(60907, 'Faye', 1948, 'F', 1345), +(60908, 'Lucy', 1948, 'F', 1343), +(60909, 'Stella', 1948, 'F', 1343), +(60910, 'Bonita', 1948, 'F', 1314), +(60911, 'Carmen', 1948, 'F', 1311), +(60912, 'Ida', 1948, 'F', 1303), +(60913, 'Jan', 1948, 'F', 1262), +(60914, 'Pat', 1948, 'F', 1247), +(60915, 'Dawn', 1948, 'F', 1241), +(60916, 'Lydia', 1948, 'F', 1221), +(60917, 'Becky', 1948, 'F', 1198), +(60918, 'Bernadette', 1948, 'F', 1184), +(60919, 'Carrie', 1948, 'F', 1174), +(60920, 'Cindy', 1948, 'F', 1163), +(60921, 'Alma', 1948, 'F', 1160), +(60922, 'Rosie', 1948, 'F', 1153), +(60923, 'Vera', 1948, 'F', 1149), +(60924, 'Patty', 1948, 'F', 1137), +(60925, 'Debra', 1948, 'F', 1125), +(60926, 'Harriet', 1948, 'F', 1119), +(60927, 'Rosalie', 1948, 'F', 1116), +(60928, 'Robin', 1948, 'F', 1094), +(60929, 'Mattie', 1948, 'F', 1089), +(60930, 'Myra', 1948, 'F', 1088), +(60931, 'Beth', 1948, 'F', 1087), +(60932, 'Nora', 1948, 'F', 1085), +(60933, 'Caroline', 1948, 'F', 1081), +(60934, 'Jessie', 1948, 'F', 1071), +(60935, 'Deanna', 1948, 'F', 1063), +(60936, 'Rosemarie', 1948, 'F', 1048), +(60937, 'Michelle', 1948, 'F', 1045), +(60938, 'Kristine', 1948, 'F', 1033), +(60939, 'Claire', 1948, 'F', 1025), +(60940, 'Dora', 1948, 'F', 1023), +(60941, 'Nina', 1948, 'F', 1023), +(60942, 'Susie', 1948, 'F', 1018), +(60943, 'Bessie', 1948, 'F', 1000), +(60944, 'Minnie', 1948, 'F', 995), +(60945, 'Francine', 1948, 'F', 976), +(60946, 'Antoinette', 1948, 'F', 971), +(60947, 'Jeannette', 1948, 'F', 958), +(60948, 'Cecilia', 1948, 'F', 956), +(60949, 'Melanie', 1948, 'F', 955), +(60950, 'Deloris', 1948, 'F', 944), +(60951, 'Madeline', 1948, 'F', 939), +(60952, 'Iris', 1948, 'F', 935), +(60953, 'Sandy', 1948, 'F', 933), +(60954, 'Marguerite', 1948, 'F', 916), +(60955, 'Rhonda', 1948, 'F', 908), +(60956, 'Elsie', 1948, 'F', 904), +(60957, 'Nellie', 1948, 'F', 890), +(60958, 'Johnnie', 1948, 'F', 885), +(60959, 'Mae', 1948, 'F', 885), +(60960, 'Trudy', 1948, 'F', 883), +(60961, 'Velma', 1948, 'F', 871), +(60962, 'Doreen', 1948, 'F', 867), +(60963, 'Dixie', 1948, 'F', 865), +(60964, 'Vicky', 1948, 'F', 858), +(60965, 'Dale', 1948, 'F', 857), +(60966, 'Irma', 1948, 'F', 849), +(60967, 'Terri', 1948, 'F', 849), +(60968, 'Olivia', 1948, 'F', 848), +(60969, 'Monica', 1948, 'F', 847), +(60970, 'Cecelia', 1948, 'F', 845), +(60971, 'Lee', 1948, 'F', 842), +(60972, 'Melinda', 1948, 'F', 841), +(60973, 'Cora', 1948, 'F', 838), +(60974, 'Debbie', 1948, 'F', 836), +(60975, 'Agnes', 1948, 'F', 833), +(60976, 'Ramona', 1948, 'F', 831), +(60977, 'Geneva', 1948, 'F', 827), +(60978, 'Naomi', 1948, 'F', 819), +(60979, 'Laurie', 1948, 'F', 805), +(60980, 'Hilda', 1948, 'F', 798), +(60981, 'Shelia', 1948, 'F', 796), +(60982, 'Penelope', 1948, 'F', 782), +(60983, 'Ernestine', 1948, 'F', 775), +(60984, 'Leona', 1948, 'F', 775), +(60985, 'Hattie', 1948, 'F', 754), +(60986, 'Lucinda', 1948, 'F', 750), +(60987, 'Dana', 1948, 'F', 745), +(60988, 'Melody', 1948, 'F', 739), +(60989, 'Jeannie', 1948, 'F', 736), +(60990, 'Lena', 1948, 'F', 734), +(60991, 'Viola', 1948, 'F', 724), +(60992, 'Betsy', 1948, 'F', 719), +(60993, 'Alberta', 1948, 'F', 718), +(60994, 'Jennie', 1948, 'F', 714), +(60995, 'Saundra', 1948, 'F', 710), +(60996, 'Miriam', 1948, 'F', 698), +(60997, 'Pearl', 1948, 'F', 691), +(60998, 'Alicia', 1948, 'F', 687), +(60999, 'Laurel', 1948, 'F', 687), +(61000, 'Verna', 1948, 'F', 680), +(61001, 'Holly', 1948, 'F', 673), +(61002, 'Guadalupe', 1948, 'F', 667), +(61003, 'Lola', 1948, 'F', 663), +(61004, 'Laverne', 1948, 'F', 662), +(61005, 'Marcella', 1948, 'F', 657), +(61006, 'Noreen', 1948, 'F', 654), +(61007, 'Cathleen', 1948, 'F', 653), +(61008, 'Gertrude', 1948, 'F', 651), +(61009, 'Daisy', 1948, 'F', 645), +(61010, 'Gretchen', 1948, 'F', 640), +(61011, 'Bettye', 1948, 'F', 634), +(61012, 'Sharron', 1948, 'F', 623), +(61013, 'Katie', 1948, 'F', 622), +(61014, 'Candice', 1948, 'F', 617), +(61015, 'Bettie', 1948, 'F', 616), +(61016, 'Erma', 1948, 'F', 615), +(61017, 'Amy', 1948, 'F', 612), +(61018, 'Della', 1948, 'F', 612), +(61019, 'Lynette', 1948, 'F', 608), +(61020, 'Susanne', 1948, 'F', 607), +(61021, 'Eunice', 1948, 'F', 603), +(61022, 'Gale', 1948, 'F', 601), +(61023, 'Melissa', 1948, 'F', 601), +(61024, 'Sharyn', 1948, 'F', 601), +(61025, 'Ginger', 1948, 'F', 600), +(61026, 'Lula', 1948, 'F', 595), +(61027, 'Nadine', 1948, 'F', 588), +(61028, 'Glenna', 1948, 'F', 587), +(61029, 'Flora', 1948, 'F', 585), +(61030, 'Bette', 1948, 'F', 580), +(61031, 'Patti', 1948, 'F', 579), +(61032, 'Rosetta', 1948, 'F', 578), +(61033, 'Tina', 1948, 'F', 578), +(61034, 'Pam', 1948, 'F', 572), +(61035, 'Olga', 1948, 'F', 571), +(61036, 'Fannie', 1948, 'F', 568), +(61037, 'Amelia', 1948, 'F', 564), +(61038, 'Molly', 1948, 'F', 562), +(61039, 'Sondra', 1948, 'F', 550), +(61040, 'Cheri', 1948, 'F', 546), +(61041, 'Claudette', 1948, 'F', 543), +(61042, 'Henrietta', 1948, 'F', 540), +(61043, 'Kathie', 1948, 'F', 536), +(61044, 'Myrtle', 1948, 'F', 536), +(61045, 'Ada', 1948, 'F', 534), +(61046, 'Violet', 1948, 'F', 528), +(61047, 'Helene', 1948, 'F', 522), +(61048, 'Jayne', 1948, 'F', 519), +(61049, 'Joanna', 1948, 'F', 515), +(61050, 'Eloise', 1948, 'F', 514), +(61051, 'Sherrie', 1948, 'F', 508), +(61052, 'Sallie', 1948, 'F', 503), +(61053, 'Frankie', 1948, 'F', 502), +(61054, 'Mamie', 1948, 'F', 502), +(61055, 'Rosalind', 1948, 'F', 499), +(61056, 'Myrna', 1948, 'F', 493), +(61057, 'Nelda', 1948, 'F', 490), +(61058, 'Celia', 1948, 'F', 489), +(61059, 'Margo', 1948, 'F', 488), +(61060, 'Maggie', 1948, 'F', 483), +(61061, 'Jessica', 1948, 'F', 482), +(61062, 'Earnestine', 1948, 'F', 476), +(61063, 'Therese', 1948, 'F', 476), +(61064, 'Rochelle', 1948, 'F', 475), +(61065, 'Gay', 1948, 'F', 472), +(61066, 'Camille', 1948, 'F', 471), +(61067, 'Diann', 1948, 'F', 471), +(61068, 'Adele', 1948, 'F', 470), +(61069, 'Adrienne', 1948, 'F', 469), +(61070, 'Freda', 1948, 'F', 469), +(61071, 'Lisa', 1948, 'F', 468), +(61072, 'Jenny', 1948, 'F', 466), +(61073, 'Karla', 1948, 'F', 465), +(61074, 'Karin', 1948, 'F', 462), +(61075, 'Margarita', 1948, 'F', 460), +(61076, 'Mona', 1948, 'F', 456), +(61077, 'Melba', 1948, 'F', 453), +(61078, 'Cherie', 1948, 'F', 451), +(61079, 'Darla', 1948, 'F', 450), +(61080, 'Natalie', 1948, 'F', 450), +(61081, 'Gwen', 1948, 'F', 448), +(61082, 'Marla', 1948, 'F', 446), +(61083, 'Genevieve', 1948, 'F', 444), +(61084, 'Cassandra', 1948, 'F', 441), +(61085, 'Reba', 1948, 'F', 440), +(61086, 'Lou', 1948, 'F', 439), +(61087, 'Lorna', 1948, 'F', 433), +(61088, 'Belinda', 1948, 'F', 432), +(61089, 'Jerry', 1948, 'F', 432), +(61090, 'Roseann', 1948, 'F', 430), +(61091, 'Kaye', 1948, 'F', 428), +(61092, 'Polly', 1948, 'F', 427), +(61093, 'Sonja', 1948, 'F', 424), +(61094, 'Lauren', 1948, 'F', 422), +(61095, 'Lila', 1948, 'F', 421), +(61096, 'Mable', 1948, 'F', 419), +(61097, 'Janette', 1948, 'F', 416), +(61098, 'Shelley', 1948, 'F', 413), +(61099, 'Rena', 1948, 'F', 407), +(61100, 'Sherri', 1948, 'F', 407), +(61101, 'Ilene', 1948, 'F', 404), +(61102, 'Lenora', 1948, 'F', 403), +(61103, 'Faith', 1948, 'F', 401), +(61104, 'Inez', 1948, 'F', 401), +(61105, 'Lora', 1948, 'F', 401), +(61106, 'Estella', 1948, 'F', 399), +(61107, 'Ruthie', 1948, 'F', 399), +(61108, 'Earlene', 1948, 'F', 396), +(61109, 'Jeanie', 1948, 'F', 391), +(61110, 'Leah', 1948, 'F', 387), +(61111, 'Jamie', 1948, 'F', 386), +(61112, 'Muriel', 1948, 'F', 386), +(61113, 'Rosanne', 1948, 'F', 386), +(61114, 'April', 1948, 'F', 383), +(61115, 'Lupe', 1948, 'F', 376), +(61116, 'Isabel', 1948, 'F', 374), +(61117, 'Lorene', 1948, 'F', 372), +(61118, 'Marva', 1948, 'F', 371), +(61119, 'Dona', 1948, 'F', 370), +(61120, 'Judi', 1948, 'F', 367), +(61121, 'Candy', 1948, 'F', 365), +(61122, 'Gracie', 1948, 'F', 364), +(61123, 'Sheri', 1948, 'F', 364), +(61124, 'Antonia', 1948, 'F', 356), +(61125, 'Delia', 1948, 'F', 356), +(61126, 'Jimmie', 1948, 'F', 355), +(61127, 'Lenore', 1948, 'F', 355), +(61128, 'Fay', 1948, 'F', 354), +(61129, 'Ollie', 1948, 'F', 352), +(61130, 'Josie', 1948, 'F', 351), +(61131, 'Eula', 1948, 'F', 350), +(61132, 'Blanche', 1948, 'F', 349), +(61133, 'Jewel', 1948, 'F', 349), +(61134, 'Maryanne', 1948, 'F', 349), +(61135, 'Jeannine', 1948, 'F', 345), +(61136, 'Cherry', 1948, 'F', 343), +(61137, 'Etta', 1948, 'F', 343), +(61138, 'Corinne', 1948, 'F', 340), +(61139, 'Marilynn', 1948, 'F', 340), +(61140, 'Robbie', 1948, 'F', 339), +(61141, 'Hope', 1948, 'F', 335), +(61142, 'Katharine', 1948, 'F', 333), +(61143, 'Chris', 1948, 'F', 329), +(61144, 'Ora', 1948, 'F', 328), +(61145, 'Pearlie', 1948, 'F', 327), +(61146, 'Beulah', 1948, 'F', 326), +(61147, 'Tamara', 1948, 'F', 325), +(61148, 'Essie', 1948, 'F', 324), +(61149, 'Ina', 1948, 'F', 324), +(61150, 'Lela', 1948, 'F', 324), +(61151, 'Sadie', 1948, 'F', 324), +(61152, 'Delois', 1948, 'F', 320), +(61153, 'Ladonna', 1948, 'F', 319), +(61154, 'Kristin', 1948, 'F', 317), +(61155, 'Nettie', 1948, 'F', 317), +(61156, 'Carlene', 1948, 'F', 316), +(61157, 'Kimberly', 1948, 'F', 315), +(61158, 'Marylou', 1948, 'F', 314), +(61159, 'Beverley', 1948, 'F', 313), +(61160, 'Mabel', 1948, 'F', 311), +(61161, 'Rae', 1948, 'F', 311), +(61162, 'Georgette', 1948, 'F', 307), +(61163, 'Merry', 1948, 'F', 307), +(61164, 'Amanda', 1948, 'F', 306), +(61165, 'Robyn', 1948, 'F', 305), +(61166, 'Estelle', 1948, 'F', 303), +(61167, 'Jeri', 1948, 'F', 303), +(61168, 'Winifred', 1948, 'F', 303), +(61169, 'Rosalyn', 1948, 'F', 300), +(61170, 'Eugenia', 1948, 'F', 298), +(61171, 'Teri', 1948, 'F', 298), +(61172, 'Celeste', 1948, 'F', 297), +(61173, 'Dorothea', 1948, 'F', 296), +(61174, 'Earline', 1948, 'F', 296), +(61175, 'Meredith', 1948, 'F', 294), +(61176, 'Dee', 1948, 'F', 293), +(61177, 'Unknown', 1948, 'F', 293), +(61178, 'Roxanne', 1948, 'F', 290), +(61179, 'Kitty', 1948, 'F', 289), +(61180, 'Jana', 1948, 'F', 287), +(61181, 'Lavonne', 1948, 'F', 287), +(61182, 'Tanya', 1948, 'F', 284), +(61183, 'Bernadine', 1948, 'F', 283), +(61184, 'Jolene', 1948, 'F', 283), +(61185, 'Elena', 1948, 'F', 281), +(61186, 'Gilda', 1948, 'F', 281), +(61187, 'Lizzie', 1948, 'F', 279), +(61188, 'Maryellen', 1948, 'F', 278), +(61189, 'Addie', 1948, 'F', 277), +(61190, 'Harriett', 1948, 'F', 277), +(61191, 'Janine', 1948, 'F', 277), +(61192, 'Crystal', 1948, 'F', 275), +(61193, 'Jewell', 1948, 'F', 275), +(61194, 'Tommie', 1948, 'F', 274), +(61195, 'Dorthy', 1948, 'F', 273), +(61196, 'Johanna', 1948, 'F', 273), +(61197, 'Kerry', 1948, 'F', 273), +(61198, 'Sherrill', 1948, 'F', 273), +(61199, 'Sonia', 1948, 'F', 273), +(61200, 'Jody', 1948, 'F', 272), +(61201, 'Terrie', 1948, 'F', 271), +(61202, 'Christy', 1948, 'F', 270), +(61203, 'Shari', 1948, 'F', 270), +(61204, 'Alison', 1948, 'F', 268), +(61205, 'Cheryle', 1948, 'F', 267), +(61206, 'Dolly', 1948, 'F', 267), +(61207, 'Shelby', 1948, 'F', 266), +(61208, 'Cathryn', 1948, 'F', 265), +(61209, 'Nita', 1948, 'F', 265), +(61210, 'Karon', 1948, 'F', 264), +(61211, 'Francis', 1948, 'F', 263), +(61212, 'Lottie', 1948, 'F', 263), +(61213, 'Suzan', 1948, 'F', 263), +(61214, 'Opal', 1948, 'F', 261), +(61215, 'Julianne', 1948, 'F', 259), +(61216, 'Suzette', 1948, 'F', 259), +(61217, 'Jannie', 1948, 'F', 258), +(61218, 'Peggie', 1948, 'F', 258), +(61219, 'Elva', 1948, 'F', 257), +(61220, 'Eddie', 1948, 'F', 256), +(61221, 'Janelle', 1948, 'F', 256), +(61222, 'Carlotta', 1948, 'F', 255), +(61223, 'Edwina', 1948, 'F', 254), +(61224, 'Clarice', 1948, 'F', 253), +(61225, 'Elvira', 1948, 'F', 253), +(61226, 'Nikki', 1948, 'F', 253), +(61227, 'Coleen', 1948, 'F', 252), +(61228, 'James', 1948, 'F', 251), +(61229, 'Rhoda', 1948, 'F', 251), +(61230, 'Ingrid', 1948, 'F', 250), +(61231, 'Iva', 1948, 'F', 248), +(61232, 'Ronnie', 1948, 'F', 248), +(61233, 'Sharlene', 1948, 'F', 248), +(61234, 'Ronda', 1948, 'F', 247), +(61235, 'Fern', 1948, 'F', 246), +(61236, 'Marietta', 1948, 'F', 246), +(61237, 'Madelyn', 1948, 'F', 244), +(61238, 'Willa', 1948, 'F', 244), +(61239, 'Mollie', 1948, 'F', 243), +(61240, 'Millie', 1948, 'F', 242), +(61241, 'Christie', 1948, 'F', 240), +(61242, 'Cornelia', 1948, 'F', 238), +(61243, 'Kim', 1948, 'F', 238), +(61244, 'Roslyn', 1948, 'F', 238), +(61245, 'Heidi', 1948, 'F', 237), +(61246, 'Rosalinda', 1948, 'F', 235), +(61247, 'Yvette', 1948, 'F', 233), +(61248, 'Karol', 1948, 'F', 232), +(61249, 'Mavis', 1948, 'F', 232), +(61250, 'Ola', 1948, 'F', 232), +(61251, 'Madeleine', 1948, 'F', 231), +(61252, 'Mickey', 1948, 'F', 231), +(61253, 'Nona', 1948, 'F', 230), +(61254, 'Margery', 1948, 'F', 229), +(61255, 'Angie', 1948, 'F', 228), +(61256, 'Cathie', 1948, 'F', 228), +(61257, 'Aleta', 1948, 'F', 227), +(61258, 'Freddie', 1948, 'F', 227), +(61259, 'Ana', 1948, 'F', 225), +(61260, 'Nan', 1948, 'F', 225), +(61261, 'Gayla', 1948, 'F', 224), +(61262, 'Clare', 1948, 'F', 223), +(61263, 'Jeanine', 1948, 'F', 222), +(61264, 'Alana', 1948, 'F', 221), +(61265, 'Lucia', 1948, 'F', 221), +(61266, 'Consuelo', 1948, 'F', 220), +(61267, 'May', 1948, 'F', 220), +(61268, 'Sybil', 1948, 'F', 220), +(61269, 'Queen', 1948, 'F', 219), +(61270, 'Shannon', 1948, 'F', 219), +(61271, 'Leola', 1948, 'F', 218), +(61272, 'Alexis', 1948, 'F', 217), +(61273, 'Kristina', 1948, 'F', 216), +(61274, 'Cecile', 1948, 'F', 215), +(61275, 'Heather', 1948, 'F', 215), +(61276, 'Alyce', 1948, 'F', 214), +(61277, 'Arleen', 1948, 'F', 214), +(61278, 'Elnora', 1948, 'F', 214), +(61279, 'Angelina', 1948, 'F', 213), +(61280, 'Louella', 1948, 'F', 213), +(61281, 'Freida', 1948, 'F', 212), +(61282, 'Gerry', 1948, 'F', 212), +(61283, 'Loraine', 1948, 'F', 212), +(61284, 'Lesley', 1948, 'F', 211), +(61285, 'Helena', 1948, 'F', 210), +(61286, 'Melva', 1948, 'F', 210), +(61287, 'Nola', 1948, 'F', 210), +(61288, 'Roxie', 1948, 'F', 209), +(61289, 'Robert', 1948, 'F', 208), +(61290, 'Debby', 1948, 'F', 207), +(61291, 'Caren', 1948, 'F', 204), +(61292, 'Effie', 1948, 'F', 204), +(61293, 'Joe', 1948, 'F', 203), +(61294, 'Dottie', 1948, 'F', 202), +(61295, 'Lyn', 1948, 'F', 200), +(61296, 'Ruthann', 1948, 'F', 200), +(61297, 'Aurora', 1948, 'F', 199), +(61298, 'Dian', 1948, 'F', 199), +(61299, 'Esperanza', 1948, 'F', 199), +(61300, 'Judie', 1948, 'F', 198), +(61301, 'Ava', 1948, 'F', 197), +(61302, 'Gina', 1948, 'F', 197), +(61303, 'Sharen', 1948, 'F', 197), +(61304, 'Nanette', 1948, 'F', 195), +(61305, 'Sonya', 1948, 'F', 195), +(61306, 'Marlys', 1948, 'F', 194), +(61307, 'Maryjane', 1948, 'F', 194), +(61308, 'Corrine', 1948, 'F', 193), +(61309, 'Darleen', 1948, 'F', 193), +(61310, 'Dollie', 1948, 'F', 192), +(61311, 'Frieda', 1948, 'F', 192), +(61312, 'John', 1948, 'F', 192), +(61313, 'Lynnette', 1948, 'F', 191), +(61314, 'Dinah', 1948, 'F', 190), +(61315, 'Marilee', 1948, 'F', 190), +(61316, 'Virgie', 1948, 'F', 185), +(61317, 'Ester', 1948, 'F', 183), +(61318, 'Hannah', 1948, 'F', 183), +(61319, 'Luella', 1948, 'F', 183), +(61320, 'Nell', 1948, 'F', 182), +(61321, 'Alta', 1948, 'F', 181), +(61322, 'Odessa', 1948, 'F', 181), +(61323, 'Aileen', 1948, 'F', 180), +(61324, 'Charleen', 1948, 'F', 180), +(61325, 'Merle', 1948, 'F', 179), +(61326, 'Carolann', 1948, 'F', 178), +(61327, 'Gaye', 1948, 'F', 178), +(61328, 'Reva', 1948, 'F', 178), +(61329, 'Carroll', 1948, 'F', 177), +(61330, 'Karyn', 1948, 'F', 176), +(61331, 'Elisabeth', 1948, 'F', 175), +(61332, 'Barbra', 1948, 'F', 174), +(61333, 'Madonna', 1948, 'F', 174), +(61334, 'Bridget', 1948, 'F', 173), +(61335, 'Georgianna', 1948, 'F', 173), +(61336, 'Sandi', 1948, 'F', 173), +(61337, 'Carmela', 1948, 'F', 172), +(61338, 'Dena', 1948, 'F', 172), +(61339, 'Goldie', 1948, 'F', 172), +(61340, 'Imogene', 1948, 'F', 172), +(61341, 'Retha', 1948, 'F', 172), +(61342, 'Colette', 1948, 'F', 171), +(61343, 'Jerri', 1948, 'F', 170), +(61344, 'Twila', 1948, 'F', 170), +(61345, 'Beryl', 1948, 'F', 169), +(61346, 'Mariann', 1948, 'F', 169), +(61347, 'Michael', 1948, 'F', 169), +(61348, 'Pamala', 1948, 'F', 169), +(61349, 'Cleo', 1948, 'F', 168), +(61350, 'Portia', 1948, 'F', 168), +(61351, 'Daphne', 1948, 'F', 166), +(61352, 'Elise', 1948, 'F', 166), +(61353, 'Leanne', 1948, 'F', 166), +(61354, 'Letha', 1948, 'F', 166), +(61355, 'Neva', 1948, 'F', 166), +(61356, 'Angeline', 1948, 'F', 165), +(61357, 'Malinda', 1948, 'F', 165), +(61358, 'Starr', 1948, 'F', 165), +(61359, 'Benita', 1948, 'F', 163), +(61360, 'Mari', 1948, 'F', 163), +(61361, 'Randy', 1948, 'F', 163), +(61362, 'Kristen', 1948, 'F', 162), +(61363, 'Valarie', 1948, 'F', 162), +(61364, 'Angelita', 1948, 'F', 161), +(61365, 'Celestine', 1948, 'F', 161), +(61366, 'Rene', 1948, 'F', 161), +(61367, 'Sherryl', 1948, 'F', 161), +(61368, 'Camilla', 1948, 'F', 159), +(61369, 'Elma', 1948, 'F', 159), +(61370, 'Laraine', 1948, 'F', 159), +(61371, 'Doretha', 1948, 'F', 158), +(61372, 'Greta', 1948, 'F', 158), +(61373, 'Nanci', 1948, 'F', 158), +(61374, 'Reta', 1948, 'F', 158), +(61375, 'William', 1948, 'F', 157), +(61376, 'Josefina', 1948, 'F', 156), +(61377, 'Leila', 1948, 'F', 156), +(61378, 'Susanna', 1948, 'F', 156), +(61379, 'Patrica', 1948, 'F', 155), +(61380, 'Lea', 1948, 'F', 153), +(61381, 'Winnie', 1948, 'F', 153), +(61382, 'Lilly', 1948, 'F', 152), +(61383, 'Randi', 1948, 'F', 152), +(61384, 'Vernell', 1948, 'F', 152), +(61385, 'Charles', 1948, 'F', 151), +(61386, 'Oralia', 1948, 'F', 150), +(61387, 'Roseanne', 1948, 'F', 149), +(61388, 'Annmarie', 1948, 'F', 147), +(61389, 'Elouise', 1948, 'F', 147), +(61390, 'Katheryn', 1948, 'F', 147), +(61391, 'Kathi', 1948, 'F', 147), +(61392, 'Minerva', 1948, 'F', 147), +(61393, 'Concetta', 1948, 'F', 146), +(61394, 'Fran', 1948, 'F', 146), +(61395, 'Rhea', 1948, 'F', 146), +(61396, 'Bennie', 1948, 'F', 145), +(61397, 'Felicia', 1948, 'F', 145), +(61398, 'Jacklyn', 1948, 'F', 145), +(61399, 'Kathrine', 1948, 'F', 145), +(61400, 'Manuela', 1948, 'F', 145), +(61401, 'Marcy', 1948, 'F', 145), +(61402, 'Marta', 1948, 'F', 145), +(61403, 'Ila', 1948, 'F', 143), +(61404, 'Wilda', 1948, 'F', 143), +(61405, 'Adela', 1948, 'F', 142), +(61406, 'Caryl', 1948, 'F', 142), +(61407, 'Corine', 1948, 'F', 142), +(61408, 'Deirdre', 1948, 'F', 142), +(61409, 'Dorene', 1948, 'F', 142), +(61410, 'Lorena', 1948, 'F', 142), +(61411, 'Rosalee', 1948, 'F', 142), +(61412, 'Cinda', 1948, 'F', 141), +(61413, 'Ophelia', 1948, 'F', 141), +(61414, 'Erlinda', 1948, 'F', 140), +(61415, 'Alfreda', 1948, 'F', 139), +(61416, 'Bobby', 1948, 'F', 139), +(61417, 'Carolynn', 1948, 'F', 139), +(61418, 'Elsa', 1948, 'F', 139), +(61419, 'Lessie', 1948, 'F', 139), +(61420, 'Lily', 1948, 'F', 139), +(61421, 'Tonya', 1948, 'F', 139), +(61422, 'Carrol', 1948, 'F', 138), +(61423, 'Donnie', 1948, 'F', 138), +(61424, 'Lelia', 1948, 'F', 138), +(61425, 'Libby', 1948, 'F', 138), +(61426, 'Patrice', 1948, 'F', 138), +(61427, 'Juliana', 1948, 'F', 137), +(61428, 'Lonnie', 1948, 'F', 137), +(61429, 'Sydney', 1948, 'F', 137), +(61430, 'Tana', 1948, 'F', 137), +(61431, 'Veda', 1948, 'F', 137), +(61432, 'Lori', 1948, 'F', 136), +(61433, 'Mercedes', 1948, 'F', 136), +(61434, 'Florine', 1948, 'F', 135), +(61435, 'Marina', 1948, 'F', 135), +(61436, 'Matilda', 1948, 'F', 135), +(61437, 'Adeline', 1948, 'F', 134), +(61438, 'Deanne', 1948, 'F', 134), +(61439, 'Juana', 1948, 'F', 134), +(61440, 'Daryl', 1948, 'F', 133), +(61441, 'Callie', 1948, 'F', 132), +(61442, 'Elisa', 1948, 'F', 132), +(61443, 'Ginny', 1948, 'F', 132), +(61444, 'Leta', 1948, 'F', 132), +(61445, 'Suellen', 1948, 'F', 132), +(61446, 'George', 1948, 'F', 131), +(61447, 'Petra', 1948, 'F', 131), +(61448, 'Theodora', 1948, 'F', 131), +(61449, 'Allison', 1948, 'F', 130), +(61450, 'Carmella', 1948, 'F', 130), +(61451, 'Deidre', 1948, 'F', 130), +(61452, 'Elida', 1948, 'F', 130), +(61453, 'Francisca', 1948, 'F', 130), +(61454, 'Jerrie', 1948, 'F', 130), +(61455, 'Luana', 1948, 'F', 130), +(61456, 'Alexandra', 1948, 'F', 129), +(61457, 'Avis', 1948, 'F', 129), +(61458, 'Elinor', 1948, 'F', 129), +(61459, 'Margot', 1948, 'F', 129), +(61460, 'Ronna', 1948, 'F', 129), +(61461, 'Selma', 1948, 'F', 129), +(61462, 'Charmaine', 1948, 'F', 128), +(61463, 'Lona', 1948, 'F', 128), +(61464, 'Arline', 1948, 'F', 127), +(61465, 'Georgene', 1948, 'F', 127), +(61466, 'Louisa', 1948, 'F', 127), +(61467, 'Valeria', 1948, 'F', 127), +(61468, 'Althea', 1948, 'F', 126), +(61469, 'Evangeline', 1948, 'F', 126), +(61470, 'Justine', 1948, 'F', 126), +(61471, 'Graciela', 1948, 'F', 125), +(61472, 'Lucretia', 1948, 'F', 125), +(61473, 'Ofelia', 1948, 'F', 125), +(61474, 'Regenia', 1948, 'F', 125), +(61475, 'Isabelle', 1948, 'F', 124), +(61476, 'Ivy', 1948, 'F', 124), +(61477, 'Mickie', 1948, 'F', 124), +(61478, 'Pattie', 1948, 'F', 124), +(61479, 'Carleen', 1948, 'F', 123), +(61480, 'Corliss', 1948, 'F', 123), +(61481, 'David', 1948, 'F', 123), +(61482, 'Deana', 1948, 'F', 123), +(61483, 'Deena', 1948, 'F', 123), +(61484, 'Flossie', 1948, 'F', 123), +(61485, 'Karolyn', 1948, 'F', 122), +(61486, 'Kristi', 1948, 'F', 122), +(61487, 'Leigh', 1948, 'F', 122), +(61488, 'Olive', 1948, 'F', 122), +(61489, 'Shirlene', 1948, 'F', 122), +(61490, 'Ardith', 1948, 'F', 121), +(61491, 'Lauretta', 1948, 'F', 121), +(61492, 'Janna', 1948, 'F', 120), +(61493, 'Magdalena', 1948, 'F', 120), +(61494, 'Richard', 1948, 'F', 120), +(61495, 'Alene', 1948, 'F', 119), +(61496, 'Eliza', 1948, 'F', 119), +(61497, 'Danna', 1948, 'F', 118), +(61498, 'Debora', 1948, 'F', 118), +(61499, 'Gearldine', 1948, 'F', 118), +(61500, 'Leann', 1948, 'F', 118), +(61501, 'Marianna', 1948, 'F', 118), +(61502, 'Toby', 1948, 'F', 118), +(61503, 'Vikki', 1948, 'F', 118), +(61504, 'Bonny', 1948, 'F', 117), +(61505, 'Kathlyn', 1948, 'F', 117), +(61506, 'Rosella', 1948, 'F', 117), +(61507, 'Tracy', 1948, 'F', 117), +(61508, 'Annabelle', 1948, 'F', 116), +(61509, 'Claudine', 1948, 'F', 116), +(61510, 'Kris', 1948, 'F', 116), +(61511, 'Marleen', 1948, 'F', 116), +(61512, 'Sheron', 1948, 'F', 116), +(61513, 'Cassie', 1948, 'F', 115), +(61514, 'Georgiana', 1948, 'F', 115), +(61515, 'Treva', 1948, 'F', 115), +(61516, 'Zelma', 1948, 'F', 115), +(61517, 'Kathaleen', 1948, 'F', 114), +(61518, 'Sammie', 1948, 'F', 114), +(61519, 'Socorro', 1948, 'F', 114), +(61520, 'Sophie', 1948, 'F', 114), +(61521, 'Carolina', 1948, 'F', 113), +(61522, 'Charlie', 1948, 'F', 113), +(61523, 'Gaynell', 1948, 'F', 113), +(61524, 'Glynda', 1948, 'F', 113), +(61525, 'Suzann', 1948, 'F', 113), +(61526, 'Wilhelmina', 1948, 'F', 113), +(61527, 'Danielle', 1948, 'F', 112), +(61528, 'Glinda', 1948, 'F', 112), +(61529, 'Jerilyn', 1948, 'F', 112), +(61530, 'Jonnie', 1948, 'F', 112), +(61531, 'Lavern', 1948, 'F', 112), +(61532, 'Lucile', 1948, 'F', 112), +(61533, 'Marybeth', 1948, 'F', 112), +(61534, 'Meryl', 1948, 'F', 112), +(61535, 'Nannie', 1948, 'F', 112), +(61536, 'Noel', 1948, 'F', 112), +(61537, 'Rona', 1948, 'F', 112), +(61538, 'Sophia', 1948, 'F', 112), +(61539, 'Eve', 1948, 'F', 111), +(61540, 'Katrina', 1948, 'F', 111), +(61541, 'Luanne', 1948, 'F', 111), +(61542, 'Georgie', 1948, 'F', 110), +(61543, 'Nedra', 1948, 'F', 110), +(61544, 'Raquel', 1948, 'F', 110), +(61545, 'Catharine', 1948, 'F', 109), +(61546, 'Elissa', 1948, 'F', 109), +(61547, 'Kate', 1948, 'F', 109), +(61548, 'Millicent', 1948, 'F', 109), +(61549, 'Margret', 1948, 'F', 108), +(61550, 'Vonda', 1948, 'F', 108), +(61551, 'Zelda', 1948, 'F', 108), +(61552, 'Elvia', 1948, 'F', 107), +(61553, 'Joellen', 1948, 'F', 107), +(61554, 'Martina', 1948, 'F', 107), +(61555, 'Nicki', 1948, 'F', 107), +(61556, 'Pauletta', 1948, 'F', 107), +(61557, 'Rosita', 1948, 'F', 107), +(61558, 'Harriette', 1948, 'F', 106), +(61559, 'Maryjo', 1948, 'F', 106), +(61560, 'Roxanna', 1948, 'F', 106), +(61561, 'Annetta', 1948, 'F', 105), +(61562, 'Phoebe', 1948, 'F', 105), +(61563, 'Sherron', 1948, 'F', 105), +(61564, 'Dorinda', 1948, 'F', 104), +(61565, 'Enid', 1948, 'F', 104), +(61566, 'Pennie', 1948, 'F', 104), +(61567, 'Phylis', 1948, 'F', 104), +(61568, 'Lorine', 1948, 'F', 103), +(61569, 'Dina', 1948, 'F', 102), +(61570, 'Georgina', 1948, 'F', 102), +(61571, 'Linnea', 1948, 'F', 102), +(61572, 'Margarett', 1948, 'F', 102), +(61573, 'Shelly', 1948, 'F', 102), +(61574, 'Delma', 1948, 'F', 101), +(61575, 'Geri', 1948, 'F', 101), +(61576, 'Juliette', 1948, 'F', 101), +(61577, 'Aline', 1948, 'F', 100), +(61578, 'Charla', 1948, 'F', 100), +(61579, 'Jacquline', 1948, 'F', 100), +(61580, 'Letitia', 1948, 'F', 100), +(61581, 'Lina', 1948, 'F', 100), +(61582, 'Pearline', 1948, 'F', 100), +(61583, 'James', 1948, 'M', 88596), +(61584, 'Robert', 1948, 'M', 85479), +(61585, 'John', 1948, 'M', 82826), +(61586, 'William', 1948, 'M', 61977), +(61587, 'David', 1948, 'M', 56611), +(61588, 'Michael', 1948, 'M', 52569), +(61589, 'Richard', 1948, 'M', 50959), +(61590, 'Thomas', 1948, 'M', 43798), +(61591, 'Charles', 1948, 'M', 38683), +(61592, 'Ronald', 1948, 'M', 33511), +(61593, 'Larry', 1948, 'M', 33431), +(61594, 'Gary', 1948, 'M', 28378), +(61595, 'Joseph', 1948, 'M', 26805), +(61596, 'Donald', 1948, 'M', 26442), +(61597, 'Kenneth', 1948, 'M', 23555), +(61598, 'George', 1948, 'M', 21914), +(61599, 'Dennis', 1948, 'M', 21754), +(61600, 'Paul', 1948, 'M', 21248), +(61601, 'Edward', 1948, 'M', 18973), +(61602, 'Stephen', 1948, 'M', 17058), +(61603, 'Jerry', 1948, 'M', 16811), +(61604, 'Daniel', 1948, 'M', 16512), +(61605, 'Steven', 1948, 'M', 15979), +(61606, 'Roger', 1948, 'M', 12815), +(61607, 'Frank', 1948, 'M', 12697), +(61608, 'Terry', 1948, 'M', 12132), +(61609, 'Raymond', 1948, 'M', 11615), +(61610, 'Bruce', 1948, 'M', 11063), +(61611, 'Mark', 1948, 'M', 10268), +(61612, 'Gerald', 1948, 'M', 9841), +(61613, 'Lawrence', 1948, 'M', 9761), +(61614, 'Gregory', 1948, 'M', 9725), +(61615, 'Douglas', 1948, 'M', 9465), +(61616, 'Wayne', 1948, 'M', 8679), +(61617, 'Walter', 1948, 'M', 8631), +(61618, 'Harold', 1948, 'M', 8141), +(61619, 'Peter', 1948, 'M', 8050), +(61620, 'Timothy', 1948, 'M', 8038), +(61621, 'Danny', 1948, 'M', 8009), +(61622, 'Willie', 1948, 'M', 7969), +(61623, 'Anthony', 1948, 'M', 7882), +(61624, 'Carl', 1948, 'M', 7829), +(61625, 'Jack', 1948, 'M', 7620), +(61626, 'Arthur', 1948, 'M', 7584), +(61627, 'Henry', 1948, 'M', 7420), +(61628, 'Alan', 1948, 'M', 7391), +(61629, 'Joe', 1948, 'M', 7292), +(61630, 'Patrick', 1948, 'M', 7191), +(61631, 'Roy', 1948, 'M', 7062), +(61632, 'Jimmy', 1948, 'M', 6927), +(61633, 'Ralph', 1948, 'M', 6912), +(61634, 'Johnny', 1948, 'M', 6854), +(61635, 'Billy', 1948, 'M', 6217), +(61636, 'Philip', 1948, 'M', 6163), +(61637, 'Albert', 1948, 'M', 6156), +(61638, 'Dale', 1948, 'M', 6089), +(61639, 'Harry', 1948, 'M', 5945), +(61640, 'Jeffrey', 1948, 'M', 5931), +(61641, 'Ronnie', 1948, 'M', 5900), +(61642, 'Steve', 1948, 'M', 5745), +(61643, 'Eugene', 1948, 'M', 5602), +(61644, 'Bobby', 1948, 'M', 5576), +(61645, 'Howard', 1948, 'M', 5493), +(61646, 'Louis', 1948, 'M', 5384), +(61647, 'Stanley', 1948, 'M', 5381), +(61648, 'Fred', 1948, 'M', 5376), +(61649, 'Russell', 1948, 'M', 5112), +(61650, 'Mike', 1948, 'M', 5046), +(61651, 'Phillip', 1948, 'M', 5023), +(61652, 'Samuel', 1948, 'M', 5000), +(61653, 'Leonard', 1948, 'M', 4781), +(61654, 'Allen', 1948, 'M', 4760), +(61655, 'Glenn', 1948, 'M', 4744), +(61656, 'Barry', 1948, 'M', 4668), +(61657, 'Ernest', 1948, 'M', 4514), +(61658, 'Frederick', 1948, 'M', 4508), +(61659, 'Andrew', 1948, 'M', 4305), +(61660, 'Eddie', 1948, 'M', 4235), +(61661, 'Tommy', 1948, 'M', 4219), +(61662, 'Francis', 1948, 'M', 4214), +(61663, 'Melvin', 1948, 'M', 4054), +(61664, 'Craig', 1948, 'M', 3985), +(61665, 'Earl', 1948, 'M', 3977), +(61666, 'Bill', 1948, 'M', 3926), +(61667, 'Norman', 1948, 'M', 3892), +(61668, 'Jim', 1948, 'M', 3806), +(61669, 'Clarence', 1948, 'M', 3792), +(61670, 'Martin', 1948, 'M', 3696), +(61671, 'Keith', 1948, 'M', 3659), +(61672, 'Marvin', 1948, 'M', 3624), +(61673, 'Don', 1948, 'M', 3543), +(61674, 'Rodney', 1948, 'M', 3466), +(61675, 'Lee', 1948, 'M', 3444), +(61676, 'Tom', 1948, 'M', 3431), +(61677, 'Brian', 1948, 'M', 3358), +(61678, 'Alfred', 1948, 'M', 3244), +(61679, 'Leroy', 1948, 'M', 3232), +(61680, 'Randall', 1948, 'M', 3180), +(61681, 'Randy', 1948, 'M', 3142), +(61682, 'Ray', 1948, 'M', 3133), +(61683, 'Curtis', 1948, 'M', 3092), +(61684, 'Christopher', 1948, 'M', 3037), +(61685, 'Herbert', 1948, 'M', 2870), +(61686, 'Theodore', 1948, 'M', 2827), +(61687, 'Clifford', 1948, 'M', 2793), +(61688, 'Vincent', 1948, 'M', 2790), +(61689, 'Bernard', 1948, 'M', 2717), +(61690, 'Jesse', 1948, 'M', 2704), +(61691, 'Warren', 1948, 'M', 2657), +(61692, 'Jerome', 1948, 'M', 2587), +(61693, 'Gene', 1948, 'M', 2542), +(61694, 'Gordon', 1948, 'M', 2510), +(61695, 'Dan', 1948, 'M', 2490), +(61696, 'Eric', 1948, 'M', 2490), +(61697, 'Victor', 1948, 'M', 2479), +(61698, 'Edwin', 1948, 'M', 2434), +(61699, 'Calvin', 1948, 'M', 2397), +(61700, 'Lloyd', 1948, 'M', 2388), +(61701, 'Leon', 1948, 'M', 2380), +(61702, 'Jimmie', 1948, 'M', 2362), +(61703, 'Darrell', 1948, 'M', 2335), +(61704, 'Scott', 1948, 'M', 2301), +(61705, 'Jay', 1948, 'M', 2274), +(61706, 'Alvin', 1948, 'M', 2270), +(61707, 'Tony', 1948, 'M', 2268), +(61708, 'Jose', 1948, 'M', 2262), +(61709, 'Kevin', 1948, 'M', 2233), +(61710, 'Jon', 1948, 'M', 2213), +(61711, 'Leslie', 1948, 'M', 2212), +(61712, 'Lewis', 1948, 'M', 2143), +(61713, 'Clyde', 1948, 'M', 2073), +(61714, 'Allan', 1948, 'M', 2059), +(61715, 'Glen', 1948, 'M', 2045), +(61716, 'Floyd', 1948, 'M', 2039), +(61717, 'Lonnie', 1948, 'M', 2035), +(61718, 'Vernon', 1948, 'M', 2029), +(61719, 'Joel', 1948, 'M', 2024), +(61720, 'Harvey', 1948, 'M', 2001), +(61721, 'Duane', 1948, 'M', 1966), +(61722, 'Bob', 1948, 'M', 1960), +(61723, 'Benjamin', 1948, 'M', 1959), +(61724, 'Nicholas', 1948, 'M', 1928), +(61725, 'Dean', 1948, 'M', 1908), +(61726, 'Charlie', 1948, 'M', 1902), +(61727, 'Gilbert', 1948, 'M', 1869), +(61728, 'Herman', 1948, 'M', 1838), +(61729, 'Jackie', 1948, 'M', 1832), +(61730, 'Micheal', 1948, 'M', 1802), +(61731, 'Lester', 1948, 'M', 1785), +(61732, 'Johnnie', 1948, 'M', 1780), +(61733, 'Leo', 1948, 'M', 1718), +(61734, 'Freddie', 1948, 'M', 1707), +(61735, 'Dwight', 1948, 'M', 1651), +(61736, 'Arnold', 1948, 'M', 1636), +(61737, 'Ricky', 1948, 'M', 1602), +(61738, 'Manuel', 1948, 'M', 1592), +(61739, 'Lynn', 1948, 'M', 1573), +(61740, 'Chester', 1948, 'M', 1558), +(61741, 'Franklin', 1948, 'M', 1549), +(61742, 'Milton', 1948, 'M', 1543), +(61743, 'Dave', 1948, 'M', 1507), +(61744, 'Donnie', 1948, 'M', 1485), +(61745, 'Ted', 1948, 'M', 1475), +(61746, 'Juan', 1948, 'M', 1474), +(61747, 'Neil', 1948, 'M', 1405), +(61748, 'Garry', 1948, 'M', 1401), +(61749, 'Cecil', 1948, 'M', 1397), +(61750, 'Claude', 1948, 'M', 1345), +(61751, 'Wesley', 1948, 'M', 1335), +(61752, 'Roland', 1948, 'M', 1334), +(61753, 'Tim', 1948, 'M', 1295), +(61754, 'Chris', 1948, 'M', 1287), +(61755, 'Jonathan', 1948, 'M', 1284), +(61756, 'Rick', 1948, 'M', 1280), +(61757, 'Marc', 1948, 'M', 1256), +(61758, 'Sam', 1948, 'M', 1241), +(61759, 'Terrence', 1948, 'M', 1204), +(61760, 'Greg', 1948, 'M', 1189), +(61761, 'Karl', 1948, 'M', 1184), +(61762, 'Nathaniel', 1948, 'M', 1158), +(61763, 'Marshall', 1948, 'M', 1156), +(61764, 'Randolph', 1948, 'M', 1142), +(61765, 'Alexander', 1948, 'M', 1131), +(61766, 'Oscar', 1948, 'M', 1101), +(61767, 'Jessie', 1948, 'M', 1094), +(61768, 'Wallace', 1948, 'M', 1078), +(61769, 'Sammy', 1948, 'M', 1075), +(61770, 'Stuart', 1948, 'M', 1073), +(61771, 'Benny', 1948, 'M', 1065), +(61772, 'Matthew', 1948, 'M', 1054), +(61773, 'Hugh', 1948, 'M', 1040), +(61774, 'Bradley', 1948, 'M', 1031), +(61775, 'Carlos', 1948, 'M', 1030), +(61776, 'Kent', 1948, 'M', 1028), +(61777, 'Guy', 1948, 'M', 1024), +(61778, 'Dana', 1948, 'M', 1021), +(61779, 'Rickey', 1948, 'M', 1020), +(61780, 'Maurice', 1948, 'M', 1002), +(61781, 'Sidney', 1948, 'M', 991), +(61782, 'Perry', 1948, 'M', 981), +(61783, 'Edgar', 1948, 'M', 975), +(61784, 'Gerard', 1948, 'M', 971), +(61785, 'Elmer', 1948, 'M', 968), +(61786, 'Willard', 1948, 'M', 949), +(61787, 'Clifton', 1948, 'M', 944), +(61788, 'Reginald', 1948, 'M', 941), +(61789, 'Fredrick', 1948, 'M', 939), +(61790, 'Marion', 1948, 'M', 936), +(61791, 'Ruben', 1948, 'M', 906), +(61792, 'Rex', 1948, 'M', 904), +(61793, 'Earnest', 1948, 'M', 901), +(61794, 'Jeff', 1948, 'M', 887), +(61795, 'Everett', 1948, 'M', 881), +(61796, 'Ben', 1948, 'M', 871), +(61797, 'Lyle', 1948, 'M', 864), +(61798, 'Mitchell', 1948, 'M', 864), +(61799, 'Terrance', 1948, 'M', 864), +(61800, 'Clinton', 1948, 'M', 856), +(61801, 'Daryl', 1948, 'M', 854), +(61802, 'Jesus', 1948, 'M', 846), +(61803, 'Otis', 1948, 'M', 846), +(61804, 'Morris', 1948, 'M', 841), +(61805, 'Bennie', 1948, 'M', 837), +(61806, 'Darryl', 1948, 'M', 835), +(61807, 'Luther', 1948, 'M', 832), +(61808, 'Ira', 1948, 'M', 824), +(61809, 'Nelson', 1948, 'M', 814), +(61810, 'Byron', 1948, 'M', 796), +(61811, 'Jeffery', 1948, 'M', 796), +(61812, 'Virgil', 1948, 'M', 794), +(61813, 'Antonio', 1948, 'M', 775), +(61814, 'Ron', 1948, 'M', 770), +(61815, 'Laurence', 1948, 'M', 769), +(61816, 'Alex', 1948, 'M', 766), +(61817, 'Kerry', 1948, 'M', 750), +(61818, 'Max', 1948, 'M', 745), +(61819, 'Tyrone', 1948, 'M', 724), +(61820, 'Clayton', 1948, 'M', 721), +(61821, 'Ross', 1948, 'M', 720), +(61822, 'Horace', 1948, 'M', 718), +(61823, 'Rudolph', 1948, 'M', 716), +(61824, 'Neal', 1948, 'M', 713), +(61825, 'Rudy', 1948, 'M', 705), +(61826, 'Aaron', 1948, 'M', 702), +(61827, 'Alton', 1948, 'M', 697), +(61828, 'Delbert', 1948, 'M', 694), +(61829, 'Wendell', 1948, 'M', 676), +(61830, 'Leland', 1948, 'M', 672), +(61831, 'Loren', 1948, 'M', 667), +(61832, 'Rodger', 1948, 'M', 662), +(61833, 'Archie', 1948, 'M', 660), +(61834, 'Pete', 1948, 'M', 654), +(61835, 'Troy', 1948, 'M', 654), +(61836, 'Hubert', 1948, 'M', 652), +(61837, 'Tommie', 1948, 'M', 651), +(61838, 'Brent', 1948, 'M', 646), +(61839, 'Jan', 1948, 'M', 640), +(61840, 'Oliver', 1948, 'M', 629), +(61841, 'Frankie', 1948, 'M', 624), +(61842, 'Ken', 1948, 'M', 623), +(61843, 'Lowell', 1948, 'M', 622), +(61844, 'Mario', 1948, 'M', 621), +(61845, 'Nathan', 1948, 'M', 619), +(61846, 'Homer', 1948, 'M', 618), +(61847, 'Raul', 1948, 'M', 618), +(61848, 'Kenny', 1948, 'M', 617), +(61849, 'Dewey', 1948, 'M', 612), +(61850, 'Lance', 1948, 'M', 610), +(61851, 'Carroll', 1948, 'M', 605), +(61852, 'Sylvester', 1948, 'M', 602), +(61853, 'Roberto', 1948, 'M', 601), +(61854, 'Pat', 1948, 'M', 597), +(61855, 'Roosevelt', 1948, 'M', 596), +(61856, 'Sherman', 1948, 'M', 595), +(61857, 'Luis', 1948, 'M', 589), +(61858, 'Francisco', 1948, 'M', 587), +(61859, 'Geoffrey', 1948, 'M', 586), +(61860, 'Salvatore', 1948, 'M', 584), +(61861, 'Willis', 1948, 'M', 584), +(61862, 'Edmund', 1948, 'M', 575), +(61863, 'Phil', 1948, 'M', 574), +(61864, 'Robin', 1948, 'M', 571), +(61865, 'Darrel', 1948, 'M', 567), +(61866, 'Bryan', 1948, 'M', 562), +(61867, 'Wilbert', 1948, 'M', 558), +(61868, 'Mickey', 1948, 'M', 553), +(61869, 'Clark', 1948, 'M', 552), +(61870, 'Dick', 1948, 'M', 552), +(61871, 'Jacob', 1948, 'M', 550), +(61872, 'Carlton', 1948, 'M', 549), +(61873, 'Julius', 1948, 'M', 549), +(61874, 'Malcolm', 1948, 'M', 549), +(61875, 'Jerald', 1948, 'M', 548), +(61876, 'Mack', 1948, 'M', 547), +(61877, 'Nick', 1948, 'M', 547), +(61878, 'Teddy', 1948, 'M', 538), +(61879, 'Wilbur', 1948, 'M', 537), +(61880, 'Julian', 1948, 'M', 534), +(61881, 'Doyle', 1948, 'M', 533), +(61882, 'Isaac', 1948, 'M', 533), +(61883, 'Pedro', 1948, 'M', 530), +(61884, 'Gregg', 1948, 'M', 523), +(61885, 'Kurt', 1948, 'M', 519), +(61886, 'Myron', 1948, 'M', 518), +(61887, 'Kim', 1948, 'M', 510), +(61888, 'Ramon', 1948, 'M', 494), +(61889, 'Van', 1948, 'M', 494), +(61890, 'Wade', 1948, 'M', 487), +(61891, 'Andy', 1948, 'M', 486), +(61892, 'Ervin', 1948, 'M', 480), +(61893, 'Sammie', 1948, 'M', 478), +(61894, 'Ivan', 1948, 'M', 466), +(61895, 'Rufus', 1948, 'M', 465), +(61896, 'Preston', 1948, 'M', 461), +(61897, 'Felix', 1948, 'M', 456), +(61898, 'Ellis', 1948, 'M', 450), +(61899, 'Ricardo', 1948, 'M', 448), +(61900, 'Wilson', 1948, 'M', 438), +(61901, 'Cary', 1948, 'M', 436), +(61902, 'Dallas', 1948, 'M', 435), +(61903, 'Forrest', 1948, 'M', 432), +(61904, 'Merle', 1948, 'M', 432), +(61905, 'Denis', 1948, 'M', 429), +(61906, 'Angelo', 1948, 'M', 428), +(61907, 'Woodrow', 1948, 'M', 428), +(61908, 'Hector', 1948, 'M', 422), +(61909, 'Grant', 1948, 'M', 419), +(61910, 'Conrad', 1948, 'M', 416), +(61911, 'Stewart', 1948, 'M', 416), +(61912, 'Grady', 1948, 'M', 413), +(61913, 'Percy', 1948, 'M', 410), +(61914, 'Marcus', 1948, 'M', 407), +(61915, 'Armando', 1948, 'M', 406), +(61916, 'Freddy', 1948, 'M', 404), +(61917, 'Terence', 1948, 'M', 403), +(61918, 'Sheldon', 1948, 'M', 401), +(61919, 'Bert', 1948, 'M', 400), +(61920, 'Guadalupe', 1948, 'M', 397), +(61921, 'Louie', 1948, 'M', 393), +(61922, 'Garland', 1948, 'M', 389), +(61923, 'Owen', 1948, 'M', 385), +(61924, 'Elbert', 1948, 'M', 384), +(61925, 'Miguel', 1948, 'M', 382), +(61926, 'Ronny', 1948, 'M', 382), +(61927, 'Alfonso', 1948, 'M', 379), +(61928, 'Kelly', 1948, 'M', 379), +(61929, 'Bradford', 1948, 'M', 377), +(61930, 'Travis', 1948, 'M', 375), +(61931, 'Edmond', 1948, 'M', 366), +(61932, 'Rene', 1948, 'M', 366), +(61933, 'Eldon', 1948, 'M', 364), +(61934, 'Emmett', 1948, 'M', 363), +(61935, 'Roderick', 1948, 'M', 363), +(61936, 'Irvin', 1948, 'M', 359), +(61937, 'Hal', 1948, 'M', 358), +(61938, 'Royce', 1948, 'M', 356), +(61939, 'Vaughn', 1948, 'M', 356), +(61940, 'Boyd', 1948, 'M', 354), +(61941, 'Buddy', 1948, 'M', 354), +(61942, 'Alonzo', 1948, 'M', 351), +(61943, 'Gale', 1948, 'M', 349), +(61944, 'Ernie', 1948, 'M', 348), +(61945, 'Todd', 1948, 'M', 347), +(61946, 'Dwayne', 1948, 'M', 345), +(61947, 'Lorenzo', 1948, 'M', 344), +(61948, 'Elliott', 1948, 'M', 343), +(61949, 'Galen', 1948, 'M', 342), +(61950, 'Lionel', 1948, 'M', 339), +(61951, 'Kirk', 1948, 'M', 338), +(61952, 'Gerry', 1948, 'M', 335), +(61953, 'Grover', 1948, 'M', 332), +(61954, 'Arturo', 1948, 'M', 328), +(61955, 'Noel', 1948, 'M', 328), +(61956, 'Junior', 1948, 'M', 327), +(61957, 'Cleveland', 1948, 'M', 326), +(61958, 'Cornelius', 1948, 'M', 326), +(61959, 'Denny', 1948, 'M', 326), +(61960, 'Chuck', 1948, 'M', 325), +(61961, 'Doug', 1948, 'M', 324), +(61962, 'Orville', 1948, 'M', 321), +(61963, 'Aubrey', 1948, 'M', 319), +(61964, 'Harlan', 1948, 'M', 318), +(61965, 'Moses', 1948, 'M', 317), +(61966, 'Monte', 1948, 'M', 314), +(61967, 'Spencer', 1948, 'M', 314), +(61968, 'Alfredo', 1948, 'M', 311), +(61969, 'Dominic', 1948, 'M', 311), +(61970, 'Fernando', 1948, 'M', 311), +(61971, 'Stephan', 1948, 'M', 309), +(61972, 'Randal', 1948, 'M', 306), +(61973, 'Adrian', 1948, 'M', 305), +(61974, 'Lanny', 1948, 'M', 298), +(61975, 'Marlin', 1948, 'M', 297), +(61976, 'Rickie', 1948, 'M', 297), +(61977, 'Harley', 1948, 'M', 295), +(61978, 'Darwin', 1948, 'M', 292), +(61979, 'Wilfred', 1948, 'M', 291), +(61980, 'Amos', 1948, 'M', 290), +(61981, 'Irving', 1948, 'M', 290), +(61982, 'Winston', 1948, 'M', 289), +(61983, 'Billie', 1948, 'M', 287), +(61984, 'Al', 1948, 'M', 286), +(61985, 'Ed', 1948, 'M', 285), +(61986, 'Lamar', 1948, 'M', 285), +(61987, 'Ned', 1948, 'M', 285), +(61988, 'Salvador', 1948, 'M', 285), +(61989, 'Dannie', 1948, 'M', 278), +(61990, 'Sanford', 1948, 'M', 277), +(61991, 'Linwood', 1948, 'M', 276), +(61992, 'Miles', 1948, 'M', 275), +(61993, 'Lon', 1948, 'M', 274), +(61994, 'Loyd', 1948, 'M', 268), +(61995, 'Brad', 1948, 'M', 267), +(61996, 'Dominick', 1948, 'M', 266), +(61997, 'Rafael', 1948, 'M', 266), +(61998, 'Andre', 1948, 'M', 259), +(61999, 'Elliot', 1948, 'M', 259), +(62000, 'Wiley', 1948, 'M', 259), +(62001, 'Barney', 1948, 'M', 256), +(62002, 'Frederic', 1948, 'M', 255), +(62003, 'Sterling', 1948, 'M', 255), +(62004, 'Murray', 1948, 'M', 253), +(62005, 'Abraham', 1948, 'M', 252), +(62006, 'Emil', 1948, 'M', 251), +(62007, 'Vance', 1948, 'M', 249), +(62008, 'Burton', 1948, 'M', 247), +(62009, 'Adam', 1948, 'M', 244), +(62010, 'Elijah', 1948, 'M', 243), +(62011, 'Thurman', 1948, 'M', 243), +(62012, 'August', 1948, 'M', 241), +(62013, 'Ernesto', 1948, 'M', 240), +(62014, 'Harrison', 1948, 'M', 240), +(62015, 'Elwood', 1948, 'M', 239), +(62016, 'Will', 1948, 'M', 237), +(62017, 'Austin', 1948, 'M', 235), +(62018, 'Carmen', 1948, 'M', 235), +(62019, 'Roscoe', 1948, 'M', 235), +(62020, 'Norris', 1948, 'M', 233), +(62021, 'Carey', 1948, 'M', 232), +(62022, 'Elton', 1948, 'M', 231), +(62023, 'Rodolfo', 1948, 'M', 228), +(62024, 'Emanuel', 1948, 'M', 225), +(62025, 'Jasper', 1948, 'M', 225), +(62026, 'Angel', 1948, 'M', 223), +(62027, 'Enrique', 1948, 'M', 223), +(62028, 'Jess', 1948, 'M', 222), +(62029, 'Colin', 1948, 'M', 221), +(62030, 'Odell', 1948, 'M', 220), +(62031, 'Simon', 1948, 'M', 219), +(62032, 'Nolan', 1948, 'M', 218), +(62033, 'Eddy', 1948, 'M', 217), +(62034, 'Kennith', 1948, 'M', 217), +(62035, 'Donny', 1948, 'M', 216), +(62036, 'Gabriel', 1948, 'M', 216), +(62037, 'Monty', 1948, 'M', 216), +(62038, 'Dewayne', 1948, 'M', 213), +(62039, 'Reuben', 1948, 'M', 213), +(62040, 'Stan', 1948, 'M', 212), +(62041, 'Terrell', 1948, 'M', 212), +(62042, 'Kermit', 1948, 'M', 209), +(62043, 'Norbert', 1948, 'M', 209), +(62044, 'Rocky', 1948, 'M', 209), +(62045, 'Linda', 1948, 'M', 207), +(62046, 'Blaine', 1948, 'M', 206), +(62047, 'Bobbie', 1948, 'M', 206), +(62048, 'Dudley', 1948, 'M', 206), +(62049, 'Ward', 1948, 'M', 204), +(62050, 'Christian', 1948, 'M', 203), +(62051, 'Alphonso', 1948, 'M', 202), +(62052, 'Emory', 1948, 'M', 202), +(62053, 'Gail', 1948, 'M', 202), +(62054, 'Fredric', 1948, 'M', 201), +(62055, 'Russel', 1948, 'M', 201), +(62056, 'Tracy', 1948, 'M', 199), +(62057, 'Kirby', 1948, 'M', 198), +(62058, 'Ramiro', 1948, 'M', 198), +(62059, 'Weldon', 1948, 'M', 197), +(62060, 'Ulysses', 1948, 'M', 196), +(62061, 'Alberto', 1948, 'M', 193), +(62062, 'Cornell', 1948, 'M', 192), +(62063, 'Maynard', 1948, 'M', 191), +(62064, 'Millard', 1948, 'M', 191), +(62065, 'Vern', 1948, 'M', 191), +(62066, 'Monroe', 1948, 'M', 189), +(62067, 'Elvin', 1948, 'M', 188), +(62068, 'Erwin', 1948, 'M', 187), +(62069, 'Levi', 1948, 'M', 187), +(62070, 'Drew', 1948, 'M', 186), +(62071, 'Rocco', 1948, 'M', 185), +(62072, 'Solomon', 1948, 'M', 185), +(62073, 'Gus', 1948, 'M', 181), +(62074, 'Jason', 1948, 'M', 181), +(62075, 'Riley', 1948, 'M', 180), +(62076, 'Jackson', 1948, 'M', 178), +(62077, 'Julio', 1948, 'M', 178), +(62078, 'Domingo', 1948, 'M', 176), +(62079, 'Ollie', 1948, 'M', 175), +(62080, 'Pablo', 1948, 'M', 175), +(62081, 'Tomas', 1948, 'M', 175), +(62082, 'Jake', 1948, 'M', 174), +(62083, 'Connie', 1948, 'M', 173), +(62084, 'Otto', 1948, 'M', 173), +(62085, 'Armand', 1948, 'M', 172), +(62086, 'Lamont', 1948, 'M', 172), +(62087, 'Reed', 1948, 'M', 172), +(62088, 'Clay', 1948, 'M', 170), +(62089, 'Delmar', 1948, 'M', 170), +(62090, 'Garrett', 1948, 'M', 168), +(62091, 'Joesph', 1948, 'M', 167), +(62092, 'Johnie', 1948, 'M', 167), +(62093, 'Harris', 1948, 'M', 166), +(62094, 'Evan', 1948, 'M', 165), +(62095, 'Felipe', 1948, 'M', 165), +(62096, 'Jerrold', 1948, 'M', 164), +(62097, 'Mary', 1948, 'M', 164), +(62098, 'Reynaldo', 1948, 'M', 164), +(62099, 'Jerold', 1948, 'M', 163), +(62100, 'Marty', 1948, 'M', 163), +(62101, 'Merrill', 1948, 'M', 163), +(62102, 'Thaddeus', 1948, 'M', 162), +(62103, 'Unknown', 1948, 'M', 162), +(62104, 'Charley', 1948, 'M', 161), +(62105, 'Denver', 1948, 'M', 160), +(62106, 'Kendall', 1948, 'M', 160), +(62107, 'Shelby', 1948, 'M', 160), +(62108, 'Truman', 1948, 'M', 160), +(62109, 'Coy', 1948, 'M', 159), +(62110, 'Davis', 1948, 'M', 159), +(62111, 'Sandy', 1948, 'M', 158), +(62112, 'Donn', 1948, 'M', 157), +(62113, 'Gilberto', 1948, 'M', 157), +(62114, 'Bernie', 1948, 'M', 155), +(62115, 'Luke', 1948, 'M', 155), +(62116, 'Merlin', 1948, 'M', 155), +(62117, 'Barton', 1948, 'M', 154), +(62118, 'Hollis', 1948, 'M', 153), +(62119, 'Joey', 1948, 'M', 153), +(62120, 'Dexter', 1948, 'M', 152), +(62121, 'Rod', 1948, 'M', 152), +(62122, 'Abel', 1948, 'M', 151), +(62123, 'Jorge', 1948, 'M', 151), +(62124, 'Lonny', 1948, 'M', 151), +(62125, 'Carter', 1948, 'M', 150), +(62126, 'Jean', 1948, 'M', 150), +(62127, 'Noah', 1948, 'M', 150), +(62128, 'Clair', 1948, 'M', 149), +(62129, 'Ignacio', 1948, 'M', 149), +(62130, 'Irwin', 1948, 'M', 149), +(62131, 'Vito', 1948, 'M', 149), +(62132, 'Earle', 1948, 'M', 148), +(62133, 'Errol', 1948, 'M', 148), +(62134, 'Laverne', 1948, 'M', 148), +(62135, 'Booker', 1948, 'M', 147), +(62136, 'Lupe', 1948, 'M', 146), +(62137, 'Rogers', 1948, 'M', 146), +(62138, 'Dane', 1948, 'M', 145), +(62139, 'Dickie', 1948, 'M', 144), +(62140, 'Hershel', 1948, 'M', 144), +(62141, 'Wilburn', 1948, 'M', 144), +(62142, 'Shawn', 1948, 'M', 143), +(62143, 'Buford', 1948, 'M', 142), +(62144, 'Emery', 1948, 'M', 142), +(62145, 'Andres', 1948, 'M', 141), +(62146, 'Isaiah', 1948, 'M', 141), +(62147, 'Brett', 1948, 'M', 140), +(62148, 'Jeffry', 1948, 'M', 140), +(62149, 'Jeremiah', 1948, 'M', 140), +(62150, 'Timmy', 1948, 'M', 140), +(62151, 'Justin', 1948, 'M', 138), +(62152, 'Clement', 1948, 'M', 137), +(62153, 'Eli', 1948, 'M', 137), +(62154, 'Wilmer', 1948, 'M', 137), +(62155, 'Bennett', 1948, 'M', 136), +(62156, 'Toby', 1948, 'M', 136), +(62157, 'Guillermo', 1948, 'M', 135), +(62158, 'Herschel', 1948, 'M', 134), +(62159, 'Michel', 1948, 'M', 134), +(62160, 'Alejandro', 1948, 'M', 133), +(62161, 'Duncan', 1948, 'M', 133), +(62162, 'Elias', 1948, 'M', 133), +(62163, 'Fletcher', 1948, 'M', 132), +(62164, 'Jody', 1948, 'M', 132), +(62165, 'Shelton', 1948, 'M', 131), +(62166, 'Carmine', 1948, 'M', 130), +(62167, 'Joshua', 1948, 'M', 130), +(62168, 'Kyle', 1948, 'M', 130), +(62169, 'Mervin', 1948, 'M', 130), +(62170, 'Bryant', 1948, 'M', 129), +(62171, 'Curt', 1948, 'M', 129), +(62172, 'Stanford', 1948, 'M', 129), +(62173, 'Val', 1948, 'M', 129), +(62174, 'Dwain', 1948, 'M', 128), +(62175, 'Freeman', 1948, 'M', 128), +(62176, 'Rogelio', 1948, 'M', 128), +(62177, 'Santiago', 1948, 'M', 128), +(62178, 'Wilford', 1948, 'M', 128), +(62179, 'Adolph', 1948, 'M', 127), +(62180, 'Everette', 1948, 'M', 127), +(62181, 'Felton', 1948, 'M', 127), +(62182, 'Ivory', 1948, 'M', 127), +(62183, 'Lavern', 1948, 'M', 127), +(62184, 'Carol', 1948, 'M', 126), +(62185, 'Emilio', 1948, 'M', 126), +(62186, 'Gayle', 1948, 'M', 126), +(62187, 'Royal', 1948, 'M', 126), +(62188, 'Winfred', 1948, 'M', 126), +(62189, 'Dalton', 1948, 'M', 125), +(62190, 'Eduardo', 1948, 'M', 125), +(62191, 'Morgan', 1948, 'M', 125), +(62192, 'Randell', 1948, 'M', 125), +(62193, 'Isiah', 1948, 'M', 124), +(62194, 'Jefferson', 1948, 'M', 124), +(62195, 'Sonny', 1948, 'M', 124), +(62196, 'Israel', 1948, 'M', 123), +(62197, 'Santos', 1948, 'M', 123), +(62198, 'Sean', 1948, 'M', 123), +(62199, 'Rory', 1948, 'M', 122), +(62200, 'Bart', 1948, 'M', 121), +(62201, 'Jaime', 1948, 'M', 120), +(62202, 'Major', 1948, 'M', 120), +(62203, 'Jacky', 1948, 'M', 119), +(62204, 'Lenard', 1948, 'M', 119), +(62205, 'Robbie', 1948, 'M', 119), +(62206, 'Rolland', 1948, 'M', 119), +(62207, 'Quentin', 1948, 'M', 118), +(62208, 'Carson', 1948, 'M', 117), +(62209, 'Foster', 1948, 'M', 117), +(62210, 'Normand', 1948, 'M', 117), +(62211, 'Roman', 1948, 'M', 117), +(62212, 'Basil', 1948, 'M', 116), +(62213, 'Benito', 1948, 'M', 116), +(62214, 'Ismael', 1948, 'M', 116), +(62215, 'Alva', 1948, 'M', 115), +(62216, 'Blair', 1948, 'M', 114), +(62217, 'Silas', 1948, 'M', 114), +(62218, 'Wilton', 1948, 'M', 114), +(62219, 'Douglass', 1948, 'M', 113), +(62220, 'Gaylord', 1948, 'M', 113), +(62221, 'Lane', 1948, 'M', 113), +(62222, 'Myles', 1948, 'M', 112), +(62223, 'Odis', 1948, 'M', 112), +(62224, 'Art', 1948, 'M', 111), +(62225, 'Reid', 1948, 'M', 111), +(62226, 'Bryce', 1948, 'M', 110), +(62227, 'Hiram', 1948, 'M', 110), +(62228, 'Marcel', 1948, 'M', 110), +(62229, 'Orlando', 1948, 'M', 110), +(62230, 'Reggie', 1948, 'M', 110), +(62231, 'Burt', 1948, 'M', 109), +(62232, 'Cliff', 1948, 'M', 109), +(62233, 'Darnell', 1948, 'M', 109), +(62234, 'Delmer', 1948, 'M', 109), +(62235, 'Emerson', 1948, 'M', 109), +(62236, 'Glynn', 1948, 'M', 109), +(62237, 'Forest', 1948, 'M', 108), +(62238, 'Pasquale', 1948, 'M', 108), +(62239, 'Milford', 1948, 'M', 107), +(62240, 'Augustine', 1948, 'M', 106), +(62241, 'Dee', 1948, 'M', 106), +(62242, 'Javier', 1948, 'M', 106), +(62243, 'Augustus', 1948, 'M', 105), +(62244, 'Damon', 1948, 'M', 105), +(62245, 'Mac', 1948, 'M', 105), +(62246, 'Lyman', 1948, 'M', 104), +(62247, 'Saul', 1948, 'M', 104), +(62248, 'Coleman', 1948, 'M', 103), +(62249, 'Danial', 1948, 'M', 103), +(62250, 'Jamie', 1948, 'M', 103), +(62251, 'Otha', 1948, 'M', 103), +(62252, 'Milo', 1948, 'M', 102), +(62253, 'Mitchel', 1948, 'M', 102), +(62254, 'Adolfo', 1948, 'M', 101), +(62255, 'Bud', 1948, 'M', 101), +(62256, 'Cleo', 1948, 'M', 100), +(62257, 'Hilton', 1948, 'M', 100), +(62258, 'Raleigh', 1948, 'M', 100), +(62259, 'Linda', 1949, 'F', 91010), +(62260, 'Mary', 1949, 'F', 66862), +(62261, 'Patricia', 1949, 'F', 46336), +(62262, 'Barbara', 1949, 'F', 42598), +(62263, 'Susan', 1949, 'F', 37708), +(62264, 'Sandra', 1949, 'F', 30647), +(62265, 'Nancy', 1949, 'F', 29240), +(62266, 'Carol', 1949, 'F', 26780), +(62267, 'Kathleen', 1949, 'F', 26356), +(62268, 'Sharon', 1949, 'F', 25714), +(62269, 'Karen', 1949, 'F', 22466), +(62270, 'Donna', 1949, 'F', 22053), +(62271, 'Brenda', 1949, 'F', 20549), +(62272, 'Margaret', 1949, 'F', 19455), +(62273, 'Deborah', 1949, 'F', 19205), +(62274, 'Judith', 1949, 'F', 17607), +(62275, 'Carolyn', 1949, 'F', 17408); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(62276, 'Shirley', 1949, 'F', 17276), +(62277, 'Diane', 1949, 'F', 17248), +(62278, 'Judy', 1949, 'F', 15982), +(62279, 'Pamela', 1949, 'F', 15131), +(62280, 'Betty', 1949, 'F', 14946), +(62281, 'Janet', 1949, 'F', 14856), +(62282, 'Janice', 1949, 'F', 14451), +(62283, 'Elizabeth', 1949, 'F', 13709), +(62284, 'Joyce', 1949, 'F', 13574), +(62285, 'Cynthia', 1949, 'F', 12898), +(62286, 'Cheryl', 1949, 'F', 12008), +(62287, 'Gloria', 1949, 'F', 11878), +(62288, 'Christine', 1949, 'F', 11800), +(62289, 'Beverly', 1949, 'F', 10555), +(62290, 'Dorothy', 1949, 'F', 10407), +(62291, 'Marilyn', 1949, 'F', 9868), +(62292, 'Martha', 1949, 'F', 9807), +(62293, 'Bonnie', 1949, 'F', 9730), +(62294, 'Joan', 1949, 'F', 9205), +(62295, 'Catherine', 1949, 'F', 9134), +(62296, 'Peggy', 1949, 'F', 9121), +(62297, 'Virginia', 1949, 'F', 8894), +(62298, 'Rebecca', 1949, 'F', 8776), +(62299, 'Jane', 1949, 'F', 8720), +(62300, 'Kathy', 1949, 'F', 8451), +(62301, 'Connie', 1949, 'F', 8219), +(62302, 'Ann', 1949, 'F', 7872), +(62303, 'Jean', 1949, 'F', 7761), +(62304, 'Helen', 1949, 'F', 7709), +(62305, 'Ruth', 1949, 'F', 7652), +(62306, 'Diana', 1949, 'F', 7532), +(62307, 'Frances', 1949, 'F', 7440), +(62308, 'Phyllis', 1949, 'F', 7314), +(62309, 'Gail', 1949, 'F', 7230), +(62310, 'Kathryn', 1949, 'F', 7183), +(62311, 'Alice', 1949, 'F', 6658), +(62312, 'Rita', 1949, 'F', 6654), +(62313, 'Paula', 1949, 'F', 6576), +(62314, 'Wanda', 1949, 'F', 6307), +(62315, 'Elaine', 1949, 'F', 6214), +(62316, 'Katherine', 1949, 'F', 6042), +(62317, 'Jacqueline', 1949, 'F', 6041), +(62318, 'Jo', 1949, 'F', 5804), +(62319, 'Joanne', 1949, 'F', 5748), +(62320, 'Suzanne', 1949, 'F', 5609), +(62321, 'Theresa', 1949, 'F', 5606), +(62322, 'Ellen', 1949, 'F', 5503), +(62323, 'Laura', 1949, 'F', 5382), +(62324, 'Rose', 1949, 'F', 5371), +(62325, 'Marie', 1949, 'F', 5309), +(62326, 'Sherry', 1949, 'F', 5292), +(62327, 'Doris', 1949, 'F', 5282), +(62328, 'Vicki', 1949, 'F', 5193), +(62329, 'Charlotte', 1949, 'F', 5144), +(62330, 'Maria', 1949, 'F', 5121), +(62331, 'Lois', 1949, 'F', 4915), +(62332, 'Lynn', 1949, 'F', 4882), +(62333, 'Darlene', 1949, 'F', 4800), +(62334, 'Sheila', 1949, 'F', 4774), +(62335, 'Sally', 1949, 'F', 4773), +(62336, 'Marcia', 1949, 'F', 4650), +(62337, 'Marsha', 1949, 'F', 4611), +(62338, 'Evelyn', 1949, 'F', 4527), +(62339, 'Cathy', 1949, 'F', 4407), +(62340, 'Constance', 1949, 'F', 4328), +(62341, 'Teresa', 1949, 'F', 4327), +(62342, 'Sarah', 1949, 'F', 4297), +(62343, 'Dianne', 1949, 'F', 4141), +(62344, 'Anne', 1949, 'F', 4047), +(62345, 'Glenda', 1949, 'F', 3976), +(62346, 'Sue', 1949, 'F', 3925), +(62347, 'Maureen', 1949, 'F', 3923), +(62348, 'Geraldine', 1949, 'F', 3918), +(62349, 'Anna', 1949, 'F', 3897), +(62350, 'Jeanne', 1949, 'F', 3865), +(62351, 'Lynda', 1949, 'F', 3829), +(62352, 'Sylvia', 1949, 'F', 3817), +(62353, 'Eileen', 1949, 'F', 3723), +(62354, 'Victoria', 1949, 'F', 3668), +(62355, 'Roberta', 1949, 'F', 3658), +(62356, 'Rosemary', 1949, 'F', 3633), +(62357, 'Anita', 1949, 'F', 3588), +(62358, 'Charlene', 1949, 'F', 3541), +(62359, 'Joann', 1949, 'F', 3523), +(62360, 'Lorraine', 1949, 'F', 3457), +(62361, 'Annie', 1949, 'F', 3452), +(62362, 'Louise', 1949, 'F', 3424), +(62363, 'Norma', 1949, 'F', 3412), +(62364, 'Patsy', 1949, 'F', 3345), +(62365, 'Juanita', 1949, 'F', 3149), +(62366, 'Yvonne', 1949, 'F', 3052), +(62367, 'Valerie', 1949, 'F', 3050), +(62368, 'Marlene', 1949, 'F', 3045), +(62369, 'Irene', 1949, 'F', 2959), +(62370, 'Julia', 1949, 'F', 2924), +(62371, 'Julie', 1949, 'F', 2847), +(62372, 'Gwendolyn', 1949, 'F', 2834), +(62373, 'Terry', 1949, 'F', 2790), +(62374, 'Marjorie', 1949, 'F', 2785), +(62375, 'Loretta', 1949, 'F', 2778), +(62376, 'Carole', 1949, 'F', 2764), +(62377, 'Kay', 1949, 'F', 2751), +(62378, 'Mildred', 1949, 'F', 2634), +(62379, 'Jennifer', 1949, 'F', 2621), +(62380, 'Wendy', 1949, 'F', 2614), +(62381, 'Ruby', 1949, 'F', 2575), +(62382, 'Vickie', 1949, 'F', 2563), +(62383, 'Paulette', 1949, 'F', 2553), +(62384, 'Delores', 1949, 'F', 2527), +(62385, 'Claudia', 1949, 'F', 2518), +(62386, 'Stephanie', 1949, 'F', 2516), +(62387, 'Jeanette', 1949, 'F', 2509), +(62388, 'Dolores', 1949, 'F', 2465), +(62389, 'Janis', 1949, 'F', 2458), +(62390, 'Leslie', 1949, 'F', 2417), +(62391, 'Debra', 1949, 'F', 2396), +(62392, 'Arlene', 1949, 'F', 2395), +(62393, 'Michele', 1949, 'F', 2382), +(62394, 'Vivian', 1949, 'F', 2330), +(62395, 'Gayle', 1949, 'F', 2293), +(62396, 'June', 1949, 'F', 2284), +(62397, 'Regina', 1949, 'F', 2264), +(62398, 'Denise', 1949, 'F', 2236), +(62399, 'Georgia', 1949, 'F', 2201), +(62400, 'Edna', 1949, 'F', 2174), +(62401, 'Josephine', 1949, 'F', 2164), +(62402, 'Andrea', 1949, 'F', 2145), +(62403, 'Edith', 1949, 'F', 2064), +(62404, 'Colleen', 1949, 'F', 2032), +(62405, 'Emma', 1949, 'F', 1998), +(62406, 'Sheryl', 1949, 'F', 1971), +(62407, 'Sara', 1949, 'F', 1970), +(62408, 'Angela', 1949, 'F', 1968), +(62409, 'Annette', 1949, 'F', 1958), +(62410, 'Jill', 1949, 'F', 1946), +(62411, 'Lillian', 1949, 'F', 1944), +(62412, 'Priscilla', 1949, 'F', 1937), +(62413, 'Rosa', 1949, 'F', 1922), +(62414, 'Pauline', 1949, 'F', 1917), +(62415, 'Rhonda', 1949, 'F', 1866), +(62416, 'Penny', 1949, 'F', 1845), +(62417, 'Lynne', 1949, 'F', 1836), +(62418, 'Christina', 1949, 'F', 1830), +(62419, 'Audrey', 1949, 'F', 1794), +(62420, 'Esther', 1949, 'F', 1790), +(62421, 'Ethel', 1949, 'F', 1753), +(62422, 'Lucille', 1949, 'F', 1753), +(62423, 'Janie', 1949, 'F', 1739), +(62424, 'Renee', 1949, 'F', 1733), +(62425, 'Wilma', 1949, 'F', 1729), +(62426, 'Clara', 1949, 'F', 1712), +(62427, 'Margie', 1949, 'F', 1688), +(62428, 'Eva', 1949, 'F', 1668), +(62429, 'Joy', 1949, 'F', 1642), +(62430, 'Thelma', 1949, 'F', 1627), +(62431, 'Grace', 1949, 'F', 1609), +(62432, 'Candace', 1949, 'F', 1589), +(62433, 'Florence', 1949, 'F', 1566), +(62434, 'Dianna', 1949, 'F', 1554), +(62435, 'Ella', 1949, 'F', 1554), +(62436, 'Gladys', 1949, 'F', 1544), +(62437, 'Willie', 1949, 'F', 1530), +(62438, 'Jan', 1949, 'F', 1526), +(62439, 'Bertha', 1949, 'F', 1521), +(62440, 'Marion', 1949, 'F', 1519), +(62441, 'Eleanor', 1949, 'F', 1516), +(62442, 'Maryann', 1949, 'F', 1516), +(62443, 'Belinda', 1949, 'F', 1509), +(62444, 'Bonita', 1949, 'F', 1508), +(62445, 'Carla', 1949, 'F', 1498), +(62446, 'Bobbie', 1949, 'F', 1469), +(62447, 'Carmen', 1949, 'F', 1457), +(62448, 'Jacquelyn', 1949, 'F', 1439), +(62449, 'Rachel', 1949, 'F', 1436), +(62450, 'Veronica', 1949, 'F', 1423), +(62451, 'Yolanda', 1949, 'F', 1408), +(62452, 'Toni', 1949, 'F', 1405), +(62453, 'Lucy', 1949, 'F', 1399), +(62454, 'Emily', 1949, 'F', 1394), +(62455, 'Lillie', 1949, 'F', 1387), +(62456, 'Bernice', 1949, 'F', 1379), +(62457, 'Marian', 1949, 'F', 1361), +(62458, 'Marianne', 1949, 'F', 1360), +(62459, 'Beth', 1949, 'F', 1355), +(62460, 'Billie', 1949, 'F', 1355), +(62461, 'Beatrice', 1949, 'F', 1341), +(62462, 'Maxine', 1949, 'F', 1330), +(62463, 'Hazel', 1949, 'F', 1321), +(62464, 'Lana', 1949, 'F', 1317), +(62465, 'Faye', 1949, 'F', 1291), +(62466, 'Ida', 1949, 'F', 1289), +(62467, 'Dawn', 1949, 'F', 1286), +(62468, 'Robin', 1949, 'F', 1283), +(62469, 'Jackie', 1949, 'F', 1274), +(62470, 'Cindy', 1949, 'F', 1261), +(62471, 'Michelle', 1949, 'F', 1248), +(62472, 'Lydia', 1949, 'F', 1242), +(62473, 'Stella', 1949, 'F', 1221), +(62474, 'Rosie', 1949, 'F', 1214), +(62475, 'Melanie', 1949, 'F', 1199), +(62476, 'Nora', 1949, 'F', 1198), +(62477, 'Kristine', 1949, 'F', 1175), +(62478, 'Bernadette', 1949, 'F', 1143), +(62479, 'Vera', 1949, 'F', 1114), +(62480, 'Carrie', 1949, 'F', 1108), +(62481, 'Becky', 1949, 'F', 1106), +(62482, 'Laurie', 1949, 'F', 1103), +(62483, 'Harriet', 1949, 'F', 1100), +(62484, 'Claire', 1949, 'F', 1089), +(62485, 'Melinda', 1949, 'F', 1073), +(62486, 'Francine', 1949, 'F', 1058), +(62487, 'Alma', 1949, 'F', 1052), +(62488, 'Patty', 1949, 'F', 1043), +(62489, 'Jessie', 1949, 'F', 1031), +(62490, 'Vicky', 1949, 'F', 1024), +(62491, 'Shelley', 1949, 'F', 1016), +(62492, 'Myra', 1949, 'F', 1013), +(62493, 'Caroline', 1949, 'F', 1001), +(62494, 'Susie', 1949, 'F', 998), +(62495, 'Mattie', 1949, 'F', 984), +(62496, 'Amy', 1949, 'F', 983), +(62497, 'Rosalie', 1949, 'F', 975), +(62498, 'Deanna', 1949, 'F', 968), +(62499, 'Bessie', 1949, 'F', 946), +(62500, 'Cecilia', 1949, 'F', 944), +(62501, 'Nina', 1949, 'F', 943), +(62502, 'Debbie', 1949, 'F', 941), +(62503, 'Rosemarie', 1949, 'F', 939), +(62504, 'Terri', 1949, 'F', 938), +(62505, 'Minnie', 1949, 'F', 935), +(62506, 'Dora', 1949, 'F', 926), +(62507, 'Johnnie', 1949, 'F', 921), +(62508, 'Iris', 1949, 'F', 920), +(62509, 'Jeannette', 1949, 'F', 917), +(62510, 'Trudy', 1949, 'F', 905), +(62511, 'Madeline', 1949, 'F', 901), +(62512, 'Marguerite', 1949, 'F', 900), +(62513, 'Antoinette', 1949, 'F', 888), +(62514, 'Ramona', 1949, 'F', 876), +(62515, 'Dale', 1949, 'F', 874), +(62516, 'Deloris', 1949, 'F', 863), +(62517, 'Olivia', 1949, 'F', 854), +(62518, 'Dana', 1949, 'F', 853), +(62519, 'Cecelia', 1949, 'F', 850), +(62520, 'Dixie', 1949, 'F', 849), +(62521, 'Naomi', 1949, 'F', 849), +(62522, 'Cora', 1949, 'F', 848), +(62523, 'Lucinda', 1949, 'F', 842), +(62524, 'Doreen', 1949, 'F', 826), +(62525, 'Irma', 1949, 'F', 825), +(62526, 'Monica', 1949, 'F', 825), +(62527, 'Shelia', 1949, 'F', 820), +(62528, 'Candice', 1949, 'F', 818), +(62529, 'Lee', 1949, 'F', 818), +(62530, 'Velma', 1949, 'F', 799), +(62531, 'Jeannie', 1949, 'F', 797), +(62532, 'Mae', 1949, 'F', 791), +(62533, 'Geneva', 1949, 'F', 786), +(62534, 'Melissa', 1949, 'F', 779), +(62535, 'Betsy', 1949, 'F', 769), +(62536, 'Ernestine', 1949, 'F', 764), +(62537, 'Jennie', 1949, 'F', 762), +(62538, 'Lynette', 1949, 'F', 745), +(62539, 'Nellie', 1949, 'F', 745), +(62540, 'Melody', 1949, 'F', 741), +(62541, 'Leona', 1949, 'F', 739), +(62542, 'Verna', 1949, 'F', 737), +(62543, 'Cathleen', 1949, 'F', 734), +(62544, 'Elsie', 1949, 'F', 727), +(62545, 'Agnes', 1949, 'F', 723), +(62546, 'Hattie', 1949, 'F', 721), +(62547, 'Susanne', 1949, 'F', 714), +(62548, 'Alicia', 1949, 'F', 707), +(62549, 'Miriam', 1949, 'F', 707), +(62550, 'Hilda', 1949, 'F', 704), +(62551, 'Laurel', 1949, 'F', 694), +(62552, 'Sandy', 1949, 'F', 689), +(62553, 'Alberta', 1949, 'F', 688), +(62554, 'Viola', 1949, 'F', 686), +(62555, 'Penelope', 1949, 'F', 680), +(62556, 'Marcella', 1949, 'F', 678), +(62557, 'Pat', 1949, 'F', 667), +(62558, 'Ginger', 1949, 'F', 665), +(62559, 'Katie', 1949, 'F', 659), +(62560, 'Gertrude', 1949, 'F', 657), +(62561, 'Lula', 1949, 'F', 649), +(62562, 'Saundra', 1949, 'F', 648), +(62563, 'Nadine', 1949, 'F', 644), +(62564, 'Tina', 1949, 'F', 638), +(62565, 'Holly', 1949, 'F', 631), +(62566, 'Margo', 1949, 'F', 631), +(62567, 'Guadalupe', 1949, 'F', 629), +(62568, 'Lena', 1949, 'F', 628), +(62569, 'Jayne', 1949, 'F', 621), +(62570, 'Lola', 1949, 'F', 621), +(62571, 'Noreen', 1949, 'F', 619), +(62572, 'Bettye', 1949, 'F', 610), +(62573, 'Patti', 1949, 'F', 610), +(62574, 'Gretchen', 1949, 'F', 608), +(62575, 'Laverne', 1949, 'F', 603), +(62576, 'Lisa', 1949, 'F', 598), +(62577, 'Gale', 1949, 'F', 590), +(62578, 'Amelia', 1949, 'F', 589), +(62579, 'Daisy', 1949, 'F', 580), +(62580, 'Flora', 1949, 'F', 577), +(62581, 'Pearl', 1949, 'F', 575), +(62582, 'Della', 1949, 'F', 574), +(62583, 'Kathie', 1949, 'F', 574), +(62584, 'Bette', 1949, 'F', 570), +(62585, 'Glenna', 1949, 'F', 567), +(62586, 'Molly', 1949, 'F', 556), +(62587, 'Eunice', 1949, 'F', 554), +(62588, 'Sharron', 1949, 'F', 554), +(62589, 'Claudette', 1949, 'F', 552), +(62590, 'Rosetta', 1949, 'F', 550), +(62591, 'Erma', 1949, 'F', 547), +(62592, 'Fannie', 1949, 'F', 544), +(62593, 'Adrienne', 1949, 'F', 538), +(62594, 'Bettie', 1949, 'F', 537), +(62595, 'Jenny', 1949, 'F', 535), +(62596, 'Cassandra', 1949, 'F', 533), +(62597, 'Myrtle', 1949, 'F', 524), +(62598, 'Cheri', 1949, 'F', 517), +(62599, 'Mona', 1949, 'F', 513), +(62600, 'Helene', 1949, 'F', 511), +(62601, 'Henrietta', 1949, 'F', 511), +(62602, 'Sondra', 1949, 'F', 503), +(62603, 'Darla', 1949, 'F', 502), +(62604, 'Janette', 1949, 'F', 502), +(62605, 'Sherrie', 1949, 'F', 502), +(62606, 'Camille', 1949, 'F', 500), +(62607, 'Celia', 1949, 'F', 498), +(62608, 'Margarita', 1949, 'F', 498), +(62609, 'Diann', 1949, 'F', 496), +(62610, 'Ada', 1949, 'F', 495), +(62611, 'Therese', 1949, 'F', 495), +(62612, 'Rochelle', 1949, 'F', 494), +(62613, 'Olga', 1949, 'F', 490), +(62614, 'Shari', 1949, 'F', 489), +(62615, 'Gay', 1949, 'F', 488), +(62616, 'Sallie', 1949, 'F', 488), +(62617, 'Eloise', 1949, 'F', 483), +(62618, 'Violet', 1949, 'F', 482), +(62619, 'Karla', 1949, 'F', 480), +(62620, 'Rosalind', 1949, 'F', 475), +(62621, 'Polly', 1949, 'F', 473), +(62622, 'Mamie', 1949, 'F', 467), +(62623, 'April', 1949, 'F', 466), +(62624, 'Joanna', 1949, 'F', 464), +(62625, 'Marla', 1949, 'F', 458), +(62626, 'Frankie', 1949, 'F', 454), +(62627, 'Leah', 1949, 'F', 451), +(62628, 'Nelda', 1949, 'F', 447), +(62629, 'Gwen', 1949, 'F', 446), +(62630, 'Lauren', 1949, 'F', 446), +(62631, 'Unknown', 1949, 'F', 443), +(62632, 'Lorna', 1949, 'F', 441), +(62633, 'Adele', 1949, 'F', 440), +(62634, 'Lou', 1949, 'F', 439), +(62635, 'Reba', 1949, 'F', 432), +(62636, 'Estella', 1949, 'F', 427), +(62637, 'Melba', 1949, 'F', 427), +(62638, 'Jeanie', 1949, 'F', 426), +(62639, 'Earnestine', 1949, 'F', 425), +(62640, 'Mable', 1949, 'F', 424), +(62641, 'Myrna', 1949, 'F', 422), +(62642, 'Christy', 1949, 'F', 421), +(62643, 'Maggie', 1949, 'F', 419), +(62644, 'Roseann', 1949, 'F', 416), +(62645, 'Freda', 1949, 'F', 414), +(62646, 'Genevieve', 1949, 'F', 414), +(62647, 'Delia', 1949, 'F', 413), +(62648, 'Natalie', 1949, 'F', 413), +(62649, 'Sonja', 1949, 'F', 412), +(62650, 'Inez', 1949, 'F', 408), +(62651, 'Celeste', 1949, 'F', 407), +(62652, 'Lenora', 1949, 'F', 407), +(62653, 'Jessica', 1949, 'F', 406), +(62654, 'Cherie', 1949, 'F', 404), +(62655, 'Fay', 1949, 'F', 402), +(62656, 'Muriel', 1949, 'F', 402), +(62657, 'Jamie', 1949, 'F', 401), +(62658, 'Ruthie', 1949, 'F', 398), +(62659, 'Kerry', 1949, 'F', 395), +(62660, 'Isabel', 1949, 'F', 394), +(62661, 'Sherri', 1949, 'F', 394), +(62662, 'Rena', 1949, 'F', 393), +(62663, 'Kaye', 1949, 'F', 387), +(62664, 'Lila', 1949, 'F', 387), +(62665, 'Lora', 1949, 'F', 386), +(62666, 'Faith', 1949, 'F', 385), +(62667, 'Ilene', 1949, 'F', 385), +(62668, 'Blanche', 1949, 'F', 380), +(62669, 'Hope', 1949, 'F', 376), +(62670, 'Corinne', 1949, 'F', 370), +(62671, 'Eula', 1949, 'F', 363), +(62672, 'Kimberly', 1949, 'F', 363), +(62673, 'Winifred', 1949, 'F', 363), +(62674, 'Jeri', 1949, 'F', 358), +(62675, 'Lela', 1949, 'F', 355), +(62676, 'Sadie', 1949, 'F', 352), +(62677, 'Tamara', 1949, 'F', 352), +(62678, 'Ina', 1949, 'F', 351), +(62679, 'Karin', 1949, 'F', 347), +(62680, 'Marilynn', 1949, 'F', 346), +(62681, 'Jerry', 1949, 'F', 345), +(62682, 'Katharine', 1949, 'F', 345), +(62683, 'Dona', 1949, 'F', 344), +(62684, 'Earlene', 1949, 'F', 344), +(62685, 'Dorothea', 1949, 'F', 343), +(62686, 'Pam', 1949, 'F', 343), +(62687, 'Sheri', 1949, 'F', 341), +(62688, 'Sharyn', 1949, 'F', 340), +(62689, 'Ora', 1949, 'F', 339), +(62690, 'Gracie', 1949, 'F', 338), +(62691, 'Jeannine', 1949, 'F', 337), +(62692, 'Amanda', 1949, 'F', 333), +(62693, 'Etta', 1949, 'F', 333), +(62694, 'Roxanne', 1949, 'F', 331), +(62695, 'Jimmie', 1949, 'F', 328), +(62696, 'Christie', 1949, 'F', 327), +(62697, 'Essie', 1949, 'F', 327), +(62698, 'Pearlie', 1949, 'F', 325), +(62699, 'Antonia', 1949, 'F', 324), +(62700, 'Robyn', 1949, 'F', 324), +(62701, 'Kristin', 1949, 'F', 322), +(62702, 'Rosanne', 1949, 'F', 322), +(62703, 'Lenore', 1949, 'F', 321), +(62704, 'Beulah', 1949, 'F', 320), +(62705, 'Lorene', 1949, 'F', 320), +(62706, 'Marva', 1949, 'F', 318), +(62707, 'Alison', 1949, 'F', 317), +(62708, 'Lupe', 1949, 'F', 314), +(62709, 'Ollie', 1949, 'F', 314), +(62710, 'Teri', 1949, 'F', 313), +(62711, 'Sonia', 1949, 'F', 312), +(62712, 'Jolene', 1949, 'F', 310), +(62713, 'Eugenia', 1949, 'F', 309), +(62714, 'Rosalyn', 1949, 'F', 309), +(62715, 'Rae', 1949, 'F', 308), +(62716, 'Robbie', 1949, 'F', 308), +(62717, 'Terrie', 1949, 'F', 306), +(62718, 'Bernadine', 1949, 'F', 304), +(62719, 'Jewel', 1949, 'F', 302), +(62720, 'Sharlene', 1949, 'F', 302), +(62721, 'Dee', 1949, 'F', 301), +(62722, 'Rosalinda', 1949, 'F', 300), +(62723, 'Carlene', 1949, 'F', 298), +(62724, 'Jana', 1949, 'F', 297), +(62725, 'Jody', 1949, 'F', 294), +(62726, 'Maryanne', 1949, 'F', 294), +(62727, 'Willa', 1949, 'F', 294), +(62728, 'Nettie', 1949, 'F', 293), +(62729, 'Cathryn', 1949, 'F', 292), +(62730, 'Candy', 1949, 'F', 291), +(62731, 'Cherry', 1949, 'F', 291), +(62732, 'Ladonna', 1949, 'F', 290), +(62733, 'Meredith', 1949, 'F', 290), +(62734, 'Lynnette', 1949, 'F', 285), +(62735, 'Earline', 1949, 'F', 284), +(62736, 'Merry', 1949, 'F', 284), +(62737, 'Addie', 1949, 'F', 283), +(62738, 'Marylou', 1949, 'F', 283), +(62739, 'Delois', 1949, 'F', 280), +(62740, 'Tommie', 1949, 'F', 278), +(62741, 'Gayla', 1949, 'F', 276), +(62742, 'Maryellen', 1949, 'F', 275), +(62743, 'Georgette', 1949, 'F', 274), +(62744, 'Tanya', 1949, 'F', 272), +(62745, 'Opal', 1949, 'F', 271), +(62746, 'Rhoda', 1949, 'F', 271), +(62747, 'Crystal', 1949, 'F', 270), +(62748, 'Dorthy', 1949, 'F', 270), +(62749, 'Josie', 1949, 'F', 270), +(62750, 'Ronda', 1949, 'F', 270), +(62751, 'Alexis', 1949, 'F', 269), +(62752, 'Angie', 1949, 'F', 268), +(62753, 'Shannon', 1949, 'F', 268), +(62754, 'Lavonne', 1949, 'F', 267), +(62755, 'Elena', 1949, 'F', 266), +(62756, 'Beverley', 1949, 'F', 265), +(62757, 'Jannie', 1949, 'F', 264), +(62758, 'Johanna', 1949, 'F', 263), +(62759, 'Suzan', 1949, 'F', 263), +(62760, 'Janelle', 1949, 'F', 261), +(62761, 'Jewell', 1949, 'F', 260), +(62762, 'Dolly', 1949, 'F', 258), +(62763, 'Janine', 1949, 'F', 258), +(62764, 'James', 1949, 'F', 257), +(62765, 'Kristina', 1949, 'F', 257), +(62766, 'Francis', 1949, 'F', 256), +(62767, 'Madelyn', 1949, 'F', 256), +(62768, 'Clarice', 1949, 'F', 255), +(62769, 'Lottie', 1949, 'F', 255), +(62770, 'Nita', 1949, 'F', 255), +(62771, 'Mabel', 1949, 'F', 253), +(62772, 'Kim', 1949, 'F', 252), +(62773, 'Nikki', 1949, 'F', 252), +(62774, 'Harriett', 1949, 'F', 251), +(62775, 'Nanette', 1949, 'F', 250), +(62776, 'Elva', 1949, 'F', 249), +(62777, 'Heather', 1949, 'F', 249), +(62778, 'Ingrid', 1949, 'F', 249), +(62779, 'Lesley', 1949, 'F', 249), +(62780, 'Heidi', 1949, 'F', 248), +(62781, 'Clare', 1949, 'F', 246), +(62782, 'Estelle', 1949, 'F', 246), +(62783, 'Lizzie', 1949, 'F', 246), +(62784, 'Cheryle', 1949, 'F', 245), +(62785, 'Peggie', 1949, 'F', 245), +(62786, 'Gilda', 1949, 'F', 244), +(62787, 'Sherrill', 1949, 'F', 244), +(62788, 'Judi', 1949, 'F', 242), +(62789, 'Angelina', 1949, 'F', 241), +(62790, 'Chris', 1949, 'F', 241), +(62791, 'Julianne', 1949, 'F', 241), +(62792, 'Shelby', 1949, 'F', 241), +(62793, 'Ava', 1949, 'F', 240), +(62794, 'Cathie', 1949, 'F', 240), +(62795, 'Ola', 1949, 'F', 239), +(62796, 'Suzette', 1949, 'F', 239), +(62797, 'Kitty', 1949, 'F', 238), +(62798, 'Elvira', 1949, 'F', 237), +(62799, 'Fern', 1949, 'F', 237), +(62800, 'Leola', 1949, 'F', 237), +(62801, 'Jeanine', 1949, 'F', 236), +(62802, 'Althea', 1949, 'F', 235), +(62803, 'Melva', 1949, 'F', 235), +(62804, 'Nan', 1949, 'F', 235), +(62805, 'Ana', 1949, 'F', 234), +(62806, 'Iva', 1949, 'F', 234), +(62807, 'Valarie', 1949, 'F', 234), +(62808, 'Nona', 1949, 'F', 232), +(62809, 'Edwina', 1949, 'F', 231), +(62810, 'Mollie', 1949, 'F', 230), +(62811, 'Coleen', 1949, 'F', 227), +(62812, 'Malinda', 1949, 'F', 227), +(62813, 'Helena', 1949, 'F', 226), +(62814, 'Lucia', 1949, 'F', 223), +(62815, 'Marietta', 1949, 'F', 223), +(62816, 'Nola', 1949, 'F', 223), +(62817, 'Yvette', 1949, 'F', 222), +(62818, 'Ronnie', 1949, 'F', 221), +(62819, 'Margery', 1949, 'F', 220), +(62820, 'Mavis', 1949, 'F', 220), +(62821, 'Mickey', 1949, 'F', 220), +(62822, 'Queen', 1949, 'F', 220), +(62823, 'Bridget', 1949, 'F', 219), +(62824, 'Carlotta', 1949, 'F', 219), +(62825, 'Eddie', 1949, 'F', 217), +(62826, 'Joe', 1949, 'F', 217), +(62827, 'Madeleine', 1949, 'F', 217), +(62828, 'Consuelo', 1949, 'F', 216), +(62829, 'Cornelia', 1949, 'F', 216), +(62830, 'Dinah', 1949, 'F', 216), +(62831, 'Roslyn', 1949, 'F', 216), +(62832, 'Sybil', 1949, 'F', 214), +(62833, 'Millie', 1949, 'F', 213), +(62834, 'Roxie', 1949, 'F', 212), +(62835, 'Charleen', 1949, 'F', 209), +(62836, 'Effie', 1949, 'F', 207), +(62837, 'Daphne', 1949, 'F', 205), +(62838, 'May', 1949, 'F', 205), +(62839, 'Debby', 1949, 'F', 203), +(62840, 'Karon', 1949, 'F', 203), +(62841, 'Marcy', 1949, 'F', 203), +(62842, 'Robert', 1949, 'F', 202), +(62843, 'Darleen', 1949, 'F', 200), +(62844, 'Elnora', 1949, 'F', 200), +(62845, 'Alyce', 1949, 'F', 199), +(62846, 'John', 1949, 'F', 199), +(62847, 'Pamala', 1949, 'F', 199), +(62848, 'Portia', 1949, 'F', 199), +(62849, 'Alana', 1949, 'F', 198), +(62850, 'Freida', 1949, 'F', 197), +(62851, 'Lyn', 1949, 'F', 195), +(62852, 'Roseanne', 1949, 'F', 195), +(62853, 'Barbra', 1949, 'F', 194), +(62854, 'Cecile', 1949, 'F', 194), +(62855, 'Freddie', 1949, 'F', 193), +(62856, 'Corrine', 1949, 'F', 189), +(62857, 'Dian', 1949, 'F', 189), +(62858, 'Frieda', 1949, 'F', 189), +(62859, 'Michael', 1949, 'F', 189), +(62860, 'Colette', 1949, 'F', 188), +(62861, 'Alta', 1949, 'F', 187), +(62862, 'Louella', 1949, 'F', 186), +(62863, 'Benita', 1949, 'F', 185), +(62864, 'Debora', 1949, 'F', 185), +(62865, 'Retha', 1949, 'F', 185), +(62866, 'Gerry', 1949, 'F', 184), +(62867, 'Juana', 1949, 'F', 184), +(62868, 'Karol', 1949, 'F', 184), +(62869, 'Loraine', 1949, 'F', 184), +(62870, 'Celestine', 1949, 'F', 183), +(62871, 'Aurora', 1949, 'F', 182), +(62872, 'Leila', 1949, 'F', 181), +(62873, 'Shelly', 1949, 'F', 181), +(62874, 'Elisabeth', 1949, 'F', 180), +(62875, 'Leanne', 1949, 'F', 180), +(62876, 'Marlys', 1949, 'F', 179), +(62877, 'Dena', 1949, 'F', 178), +(62878, 'Lori', 1949, 'F', 178), +(62879, 'Rene', 1949, 'F', 178), +(62880, 'Kathrine', 1949, 'F', 177), +(62881, 'Madonna', 1949, 'F', 177), +(62882, 'Sydney', 1949, 'F', 176), +(62883, 'Karyn', 1949, 'F', 175), +(62884, 'Marta', 1949, 'F', 175), +(62885, 'Caren', 1949, 'F', 174), +(62886, 'Jerri', 1949, 'F', 174), +(62887, 'Ester', 1949, 'F', 172), +(62888, 'Katheryn', 1949, 'F', 172), +(62889, 'Erlinda', 1949, 'F', 171), +(62890, 'Hannah', 1949, 'F', 171), +(62891, 'Kristen', 1949, 'F', 171), +(62892, 'Leta', 1949, 'F', 171), +(62893, 'Marilee', 1949, 'F', 171), +(62894, 'Patrice', 1949, 'F', 171), +(62895, 'Sharen', 1949, 'F', 171), +(62896, 'Reta', 1949, 'F', 170), +(62897, 'Tracy', 1949, 'F', 170), +(62898, 'Elise', 1949, 'F', 169), +(62899, 'Dorene', 1949, 'F', 168), +(62900, 'Janell', 1949, 'F', 168), +(62901, 'Twila', 1949, 'F', 168), +(62902, 'Concetta', 1949, 'F', 166), +(62903, 'Patrica', 1949, 'F', 166), +(62904, 'Annmarie', 1949, 'F', 164), +(62905, 'Cleo', 1949, 'F', 164), +(62906, 'Kristi', 1949, 'F', 164), +(62907, 'Ruthann', 1949, 'F', 164), +(62908, 'Carleen', 1949, 'F', 163), +(62909, 'Gina', 1949, 'F', 163), +(62910, 'Leigh', 1949, 'F', 163), +(62911, 'Mari', 1949, 'F', 163), +(62912, 'Randy', 1949, 'F', 163), +(62913, 'Sonya', 1949, 'F', 163), +(62914, 'Valeria', 1949, 'F', 163), +(62915, 'Vikki', 1949, 'F', 163), +(62916, 'Dollie', 1949, 'F', 162), +(62917, 'Gaye', 1949, 'F', 162), +(62918, 'Carmela', 1949, 'F', 161), +(62919, 'Cinda', 1949, 'F', 161), +(62920, 'Neva', 1949, 'F', 160), +(62921, 'Angeline', 1949, 'F', 159), +(62922, 'Doretha', 1949, 'F', 157), +(62923, 'Lelia', 1949, 'F', 157), +(62924, 'Carmella', 1949, 'F', 156), +(62925, 'Daryl', 1949, 'F', 156), +(62926, 'Luella', 1949, 'F', 156), +(62927, 'Louisa', 1949, 'F', 155), +(62928, 'Bobby', 1949, 'F', 154), +(62929, 'Letha', 1949, 'F', 154), +(62930, 'Minerva', 1949, 'F', 154), +(62931, 'Caryl', 1949, 'F', 153), +(62932, 'Caryn', 1949, 'F', 153), +(62933, 'Esperanza', 1949, 'F', 153), +(62934, 'Leann', 1949, 'F', 153), +(62935, 'Merle', 1949, 'F', 153), +(62936, 'Reva', 1949, 'F', 153), +(62937, 'Alexandra', 1949, 'F', 152), +(62938, 'Wilda', 1949, 'F', 152), +(62939, 'Alfreda', 1949, 'F', 151), +(62940, 'Virgie', 1949, 'F', 151), +(62941, 'Vonda', 1949, 'F', 151), +(62942, 'Aileen', 1949, 'F', 150), +(62943, 'Elma', 1949, 'F', 150), +(62944, 'Imogene', 1949, 'F', 150), +(62945, 'Jacklyn', 1949, 'F', 150), +(62946, 'Randi', 1949, 'F', 150), +(62947, 'Nanci', 1949, 'F', 149), +(62948, 'Shauna', 1949, 'F', 149), +(62949, 'Zelma', 1949, 'F', 149), +(62950, 'Carroll', 1949, 'F', 148), +(62951, 'Dottie', 1949, 'F', 148), +(62952, 'Georgianna', 1949, 'F', 148), +(62953, 'Maryjane', 1949, 'F', 148), +(62954, 'Mercedes', 1949, 'F', 148), +(62955, 'Sherryl', 1949, 'F', 148), +(62956, 'Josefina', 1949, 'F', 147), +(62957, 'Katrina', 1949, 'F', 147), +(62958, 'Lorena', 1949, 'F', 147), +(62959, 'Bonny', 1949, 'F', 146), +(62960, 'Aleta', 1949, 'F', 145), +(62961, 'Allison', 1949, 'F', 145), +(62962, 'Camilla', 1949, 'F', 145), +(62963, 'Beryl', 1949, 'F', 144), +(62964, 'Claudine', 1949, 'F', 144), +(62965, 'Eliza', 1949, 'F', 144), +(62966, 'Bennie', 1949, 'F', 143), +(62967, 'Goldie', 1949, 'F', 143), +(62968, 'Margret', 1949, 'F', 143), +(62969, 'Suellen', 1949, 'F', 142), +(62970, 'Charles', 1949, 'F', 141), +(62971, 'Evangeline', 1949, 'F', 141), +(62972, 'Libby', 1949, 'F', 141), +(62973, 'Lona', 1949, 'F', 141), +(62974, 'Deidre', 1949, 'F', 140), +(62975, 'Winnie', 1949, 'F', 140), +(62976, 'Corine', 1949, 'F', 139), +(62977, 'Jacque', 1949, 'F', 139), +(62978, 'Ophelia', 1949, 'F', 139), +(62979, 'Susanna', 1949, 'F', 139), +(62980, 'Annetta', 1949, 'F', 138), +(62981, 'Matilda', 1949, 'F', 138), +(62982, 'Oralia', 1949, 'F', 138), +(62983, 'Carolann', 1949, 'F', 137), +(62984, 'Laureen', 1949, 'F', 136), +(62985, 'Ronna', 1949, 'F', 136), +(62986, 'Deanne', 1949, 'F', 135), +(62987, 'Deena', 1949, 'F', 135), +(62988, 'Elisa', 1949, 'F', 135), +(62989, 'Elsa', 1949, 'F', 135), +(62990, 'Graciela', 1949, 'F', 135), +(62991, 'Maryjo', 1949, 'F', 135), +(62992, 'Rosalee', 1949, 'F', 135), +(62993, 'Shirlene', 1949, 'F', 135), +(62994, 'Elouise', 1949, 'F', 134), +(62995, 'Justine', 1949, 'F', 134), +(62996, 'Mickie', 1949, 'F', 134), +(62997, 'Tonya', 1949, 'F', 134), +(62998, 'Angelita', 1949, 'F', 133), +(62999, 'Arleen', 1949, 'F', 133), +(63000, 'Georgiana', 1949, 'F', 133), +(63001, 'Odessa', 1949, 'F', 133), +(63002, 'Theodora', 1949, 'F', 133), +(63003, 'Charmaine', 1949, 'F', 132), +(63004, 'Kristie', 1949, 'F', 132), +(63005, 'Nell', 1949, 'F', 132), +(63006, 'Lea', 1949, 'F', 131), +(63007, 'Lily', 1949, 'F', 131), +(63008, 'Ofelia', 1949, 'F', 131), +(63009, 'Sophie', 1949, 'F', 131), +(63010, 'Carolynn', 1949, 'F', 130), +(63011, 'Cassie', 1949, 'F', 130), +(63012, 'Kathaleen', 1949, 'F', 130), +(63013, 'Luanne', 1949, 'F', 130), +(63014, 'Avis', 1949, 'F', 129), +(63015, 'Deirdre', 1949, 'F', 129), +(63016, 'Georgene', 1949, 'F', 129), +(63017, 'Ivy', 1949, 'F', 129), +(63018, 'Lilly', 1949, 'F', 129), +(63019, 'Roseanna', 1949, 'F', 129), +(63020, 'Adeline', 1949, 'F', 128), +(63021, 'Blanca', 1949, 'F', 128), +(63022, 'Marina', 1949, 'F', 128), +(63023, 'William', 1949, 'F', 128), +(63024, 'Callie', 1949, 'F', 127), +(63025, 'Felicia', 1949, 'F', 127), +(63026, 'Juliana', 1949, 'F', 127), +(63027, 'Lauretta', 1949, 'F', 127), +(63028, 'Mariann', 1949, 'F', 127), +(63029, 'Sharman', 1949, 'F', 126), +(63030, 'Elinor', 1949, 'F', 125), +(63031, 'Meryl', 1949, 'F', 125), +(63032, 'Sandi', 1949, 'F', 125), +(63033, 'Vernell', 1949, 'F', 125), +(63034, 'Estela', 1949, 'F', 124), +(63035, 'Florine', 1949, 'F', 124), +(63036, 'Vickey', 1949, 'F', 124), +(63037, 'Ila', 1949, 'F', 123), +(63038, 'Rhea', 1949, 'F', 123), +(63039, 'Donnie', 1949, 'F', 122), +(63040, 'Greta', 1949, 'F', 122), +(63041, 'Jerrie', 1949, 'F', 122), +(63042, 'Sophia', 1949, 'F', 122), +(63043, 'Judie', 1949, 'F', 121), +(63044, 'Pearline', 1949, 'F', 121), +(63045, 'Charla', 1949, 'F', 120), +(63046, 'Luann', 1949, 'F', 120), +(63047, 'Selma', 1949, 'F', 120), +(63048, 'Valorie', 1949, 'F', 120), +(63049, 'Catharine', 1949, 'F', 119), +(63050, 'Elissa', 1949, 'F', 119), +(63051, 'Jacquelin', 1949, 'F', 119), +(63052, 'Kathi', 1949, 'F', 119), +(63053, 'Rona', 1949, 'F', 119), +(63054, 'Rosella', 1949, 'F', 119), +(63055, 'Suzann', 1949, 'F', 119), +(63056, 'Tana', 1949, 'F', 119), +(63057, 'Nedra', 1949, 'F', 118), +(63058, 'Phillis', 1949, 'F', 118), +(63059, 'Raquel', 1949, 'F', 118), +(63060, 'Rosita', 1949, 'F', 118), +(63061, 'Kelly', 1949, 'F', 117), +(63062, 'Sanjuanita', 1949, 'F', 117), +(63063, 'David', 1949, 'F', 116), +(63064, 'Evangelina', 1949, 'F', 116), +(63065, 'Fran', 1949, 'F', 116), +(63066, 'Kathlyn', 1949, 'F', 116), +(63067, 'Martina', 1949, 'F', 116), +(63068, 'Renae', 1949, 'F', 116), +(63069, 'Toby', 1949, 'F', 116), +(63070, 'Treva', 1949, 'F', 116), +(63071, 'Carolina', 1949, 'F', 115), +(63072, 'Charlie', 1949, 'F', 115), +(63073, 'Danielle', 1949, 'F', 115), +(63074, 'Glinda', 1949, 'F', 115), +(63075, 'Leanna', 1949, 'F', 115), +(63076, 'Lessie', 1949, 'F', 115), +(63077, 'Richard', 1949, 'F', 115), +(63078, 'Jerilyn', 1949, 'F', 114), +(63079, 'Karolyn', 1949, 'F', 114), +(63080, 'Petra', 1949, 'F', 114), +(63081, 'Sammie', 1949, 'F', 114), +(63082, 'Abigail', 1949, 'F', 113), +(63083, 'Aida', 1949, 'F', 113), +(63084, 'Harriette', 1949, 'F', 113), +(63085, 'Isabelle', 1949, 'F', 113), +(63086, 'Jacalyn', 1949, 'F', 113), +(63087, 'Juliette', 1949, 'F', 113), +(63088, 'Luana', 1949, 'F', 113), +(63089, 'Lucretia', 1949, 'F', 113), +(63090, 'Magdalena', 1949, 'F', 113), +(63091, 'Nannette', 1949, 'F', 113), +(63092, 'Millicent', 1949, 'F', 112), +(63093, 'Adela', 1949, 'F', 111), +(63094, 'Annabelle', 1949, 'F', 111), +(63095, 'Jonnie', 1949, 'F', 111), +(63096, 'Kate', 1949, 'F', 111), +(63097, 'Letitia', 1949, 'F', 111), +(63098, 'Lonnie', 1949, 'F', 111), +(63099, 'Norene', 1949, 'F', 111), +(63100, 'Rosanna', 1949, 'F', 111), +(63101, 'Joellen', 1949, 'F', 110), +(63102, 'Manuela', 1949, 'F', 110), +(63103, 'Margot', 1949, 'F', 110), +(63104, 'Pamella', 1949, 'F', 110), +(63105, 'George', 1949, 'F', 109), +(63106, 'Jacquline', 1949, 'F', 109), +(63107, 'Phylis', 1949, 'F', 109), +(63108, 'Danna', 1949, 'F', 108), +(63109, 'Marleen', 1949, 'F', 108), +(63110, 'Maude', 1949, 'F', 108), +(63111, 'Elida', 1949, 'F', 107), +(63112, 'Pauletta', 1949, 'F', 107), +(63113, 'Phoebe', 1949, 'F', 107), +(63114, 'Laraine', 1949, 'F', 106), +(63115, 'Lizabeth', 1949, 'F', 106), +(63116, 'Linnea', 1949, 'F', 105), +(63117, 'Gearldine', 1949, 'F', 104), +(63118, 'Pattie', 1949, 'F', 104), +(63119, 'Shirlee', 1949, 'F', 104), +(63120, 'Socorro', 1949, 'F', 104), +(63121, 'Francisca', 1949, 'F', 103), +(63122, 'Geri', 1949, 'F', 103), +(63123, 'Jeraldine', 1949, 'F', 103), +(63124, 'Lawanda', 1949, 'F', 103), +(63125, 'Regenia', 1949, 'F', 103), +(63126, 'Flossie', 1949, 'F', 102), +(63127, 'Glynda', 1949, 'F', 102), +(63128, 'Hester', 1949, 'F', 102), +(63129, 'Lorine', 1949, 'F', 102), +(63130, 'Sheron', 1949, 'F', 102), +(63131, 'Adrian', 1949, 'F', 101), +(63132, 'Marybeth', 1949, 'F', 101), +(63133, 'Rachael', 1949, 'F', 101), +(63134, 'Rosario', 1949, 'F', 101), +(63135, 'Alene', 1949, 'F', 100), +(63136, 'Candis', 1949, 'F', 100), +(63137, 'Carrol', 1949, 'F', 100), +(63138, 'Janey', 1949, 'F', 100), +(63139, 'Lucile', 1949, 'F', 100), +(63140, 'Rachelle', 1949, 'F', 100), +(63141, 'Thomas', 1949, 'F', 100), +(63142, 'Winona', 1949, 'F', 100), +(63143, 'James', 1949, 'M', 86856), +(63144, 'Robert', 1949, 'M', 83841), +(63145, 'John', 1949, 'M', 81154), +(63146, 'William', 1949, 'M', 61493), +(63147, 'Michael', 1949, 'M', 60041), +(63148, 'David', 1949, 'M', 59610), +(63149, 'Richard', 1949, 'M', 50942), +(63150, 'Thomas', 1949, 'M', 45201), +(63151, 'Charles', 1949, 'M', 40042), +(63152, 'Larry', 1949, 'M', 31805), +(63153, 'Ronald', 1949, 'M', 31496), +(63154, 'Gary', 1949, 'M', 28929), +(63155, 'Donald', 1949, 'M', 27114), +(63156, 'Joseph', 1949, 'M', 26417), +(63157, 'Kenneth', 1949, 'M', 23586), +(63158, 'Dennis', 1949, 'M', 21746), +(63159, 'Paul', 1949, 'M', 21588), +(63160, 'George', 1949, 'M', 21326), +(63161, 'Stephen', 1949, 'M', 20477), +(63162, 'Steven', 1949, 'M', 19922), +(63163, 'Edward', 1949, 'M', 19168), +(63164, 'Daniel', 1949, 'M', 18237), +(63165, 'Jerry', 1949, 'M', 15862), +(63166, 'Mark', 1949, 'M', 13728), +(63167, 'Roger', 1949, 'M', 12816), +(63168, 'Bruce', 1949, 'M', 12268), +(63169, 'Frank', 1949, 'M', 11960), +(63170, 'Terry', 1949, 'M', 11455), +(63171, 'Douglas', 1949, 'M', 11317), +(63172, 'Raymond', 1949, 'M', 11311), +(63173, 'Gregory', 1949, 'M', 10986), +(63174, 'Lawrence', 1949, 'M', 10250), +(63175, 'Gerald', 1949, 'M', 9802), +(63176, 'Timothy', 1949, 'M', 9341), +(63177, 'Wayne', 1949, 'M', 8924), +(63178, 'Anthony', 1949, 'M', 8450), +(63179, 'Walter', 1949, 'M', 8300), +(63180, 'Peter', 1949, 'M', 8262), +(63181, 'Patrick', 1949, 'M', 8077), +(63182, 'Danny', 1949, 'M', 8020), +(63183, 'Willie', 1949, 'M', 7911), +(63184, 'Harold', 1949, 'M', 7813), +(63185, 'Carl', 1949, 'M', 7692), +(63186, 'Arthur', 1949, 'M', 7475), +(63187, 'Alan', 1949, 'M', 7257), +(63188, 'Henry', 1949, 'M', 7181), +(63189, 'Jack', 1949, 'M', 7131), +(63190, 'Jeffrey', 1949, 'M', 6983), +(63191, 'Johnny', 1949, 'M', 6971), +(63192, 'Ralph', 1949, 'M', 6743), +(63193, 'Roy', 1949, 'M', 6621), +(63194, 'Joe', 1949, 'M', 6528), +(63195, 'Jimmy', 1949, 'M', 6413), +(63196, 'Philip', 1949, 'M', 6228), +(63197, 'Dale', 1949, 'M', 6227), +(63198, 'Albert', 1949, 'M', 6060), +(63199, 'Billy', 1949, 'M', 5817), +(63200, 'Eugene', 1949, 'M', 5594), +(63201, 'Harry', 1949, 'M', 5542), +(63202, 'Stanley', 1949, 'M', 5529), +(63203, 'Glenn', 1949, 'M', 5410), +(63204, 'Samuel', 1949, 'M', 5365), +(63205, 'Howard', 1949, 'M', 5287), +(63206, 'Ronnie', 1949, 'M', 5242), +(63207, 'Louis', 1949, 'M', 5231), +(63208, 'Phillip', 1949, 'M', 5203), +(63209, 'Bobby', 1949, 'M', 5116), +(63210, 'Steve', 1949, 'M', 5025), +(63211, 'Russell', 1949, 'M', 5002), +(63212, 'Frederick', 1949, 'M', 4750), +(63213, 'Allen', 1949, 'M', 4734), +(63214, 'Fred', 1949, 'M', 4726), +(63215, 'Barry', 1949, 'M', 4606), +(63216, 'Leonard', 1949, 'M', 4548), +(63217, 'Andrew', 1949, 'M', 4523), +(63218, 'Ernest', 1949, 'M', 4345), +(63219, 'Craig', 1949, 'M', 4327), +(63220, 'Francis', 1949, 'M', 4289), +(63221, 'Randall', 1949, 'M', 4160), +(63222, 'Eddie', 1949, 'M', 4095), +(63223, 'Christopher', 1949, 'M', 3998), +(63224, 'Melvin', 1949, 'M', 3977), +(63225, 'Martin', 1949, 'M', 3903), +(63226, 'Tommy', 1949, 'M', 3885), +(63227, 'Keith', 1949, 'M', 3880), +(63228, 'Brian', 1949, 'M', 3854), +(63229, 'Rodney', 1949, 'M', 3829), +(63230, 'Mike', 1949, 'M', 3740), +(63231, 'Marvin', 1949, 'M', 3723), +(63232, 'Norman', 1949, 'M', 3669), +(63233, 'Earl', 1949, 'M', 3653), +(63234, 'Randy', 1949, 'M', 3622), +(63235, 'Lee', 1949, 'M', 3564), +(63236, 'Clarence', 1949, 'M', 3395), +(63237, 'Kevin', 1949, 'M', 3299), +(63238, 'Alfred', 1949, 'M', 3190), +(63239, 'Curtis', 1949, 'M', 3088), +(63240, 'Don', 1949, 'M', 3061), +(63241, 'Scott', 1949, 'M', 3051), +(63242, 'Theodore', 1949, 'M', 3041), +(63243, 'Leroy', 1949, 'M', 2937), +(63244, 'Vincent', 1949, 'M', 2914), +(63245, 'Clifford', 1949, 'M', 2904), +(63246, 'Eric', 1949, 'M', 2772), +(63247, 'Jerome', 1949, 'M', 2771), +(63248, 'Bill', 1949, 'M', 2767), +(63249, 'Herbert', 1949, 'M', 2729), +(63250, 'Jim', 1949, 'M', 2725), +(63251, 'Ray', 1949, 'M', 2714), +(63252, 'Jesse', 1949, 'M', 2703), +(63253, 'Bernard', 1949, 'M', 2677), +(63254, 'Calvin', 1949, 'M', 2568), +(63255, 'Gordon', 1949, 'M', 2543), +(63256, 'Tom', 1949, 'M', 2543), +(63257, 'Warren', 1949, 'M', 2527), +(63258, 'Darrell', 1949, 'M', 2517), +(63259, 'Victor', 1949, 'M', 2517), +(63260, 'Jay', 1949, 'M', 2456), +(63261, 'Gene', 1949, 'M', 2444), +(63262, 'Jose', 1949, 'M', 2442), +(63263, 'Leon', 1949, 'M', 2424), +(63264, 'Micheal', 1949, 'M', 2380), +(63265, 'Edwin', 1949, 'M', 2371), +(63266, 'Lloyd', 1949, 'M', 2332), +(63267, 'Dan', 1949, 'M', 2282), +(63268, 'Leslie', 1949, 'M', 2205), +(63269, 'Glen', 1949, 'M', 2202), +(63270, 'Alvin', 1949, 'M', 2153), +(63271, 'Dean', 1949, 'M', 2102), +(63272, 'Jimmie', 1949, 'M', 2087), +(63273, 'Clyde', 1949, 'M', 2082), +(63274, 'Lewis', 1949, 'M', 2082), +(63275, 'Floyd', 1949, 'M', 2024), +(63276, 'Benjamin', 1949, 'M', 2021), +(63277, 'Lonnie', 1949, 'M', 2019), +(63278, 'Nicholas', 1949, 'M', 1995), +(63279, 'Duane', 1949, 'M', 1992), +(63280, 'Tony', 1949, 'M', 1989), +(63281, 'Joel', 1949, 'M', 1986), +(63282, 'Jackie', 1949, 'M', 1960), +(63283, 'Vernon', 1949, 'M', 1953), +(63284, 'Allan', 1949, 'M', 1935), +(63285, 'Harvey', 1949, 'M', 1934), +(63286, 'Jon', 1949, 'M', 1886), +(63287, 'Juan', 1949, 'M', 1832), +(63288, 'Charlie', 1949, 'M', 1828), +(63289, 'Gilbert', 1949, 'M', 1812), +(63290, 'Ricky', 1949, 'M', 1790), +(63291, 'Lester', 1949, 'M', 1749), +(63292, 'Johnnie', 1949, 'M', 1731), +(63293, 'Dwight', 1949, 'M', 1717), +(63294, 'Freddie', 1949, 'M', 1672), +(63295, 'Leo', 1949, 'M', 1647), +(63296, 'Manuel', 1949, 'M', 1645), +(63297, 'Franklin', 1949, 'M', 1624), +(63298, 'Donnie', 1949, 'M', 1620), +(63299, 'Herman', 1949, 'M', 1609), +(63300, 'Arnold', 1949, 'M', 1593), +(63301, 'Lynn', 1949, 'M', 1579), +(63302, 'Milton', 1949, 'M', 1559), +(63303, 'Neil', 1949, 'M', 1476), +(63304, 'Bob', 1949, 'M', 1465), +(63305, 'Chester', 1949, 'M', 1437), +(63306, 'Jonathan', 1949, 'M', 1432), +(63307, 'Garry', 1949, 'M', 1417), +(63308, 'Wesley', 1949, 'M', 1406), +(63309, 'Marc', 1949, 'M', 1399), +(63310, 'Chris', 1949, 'M', 1388), +(63311, 'Ted', 1949, 'M', 1377), +(63312, 'Rick', 1949, 'M', 1359), +(63313, 'Randolph', 1949, 'M', 1358), +(63314, 'Karl', 1949, 'M', 1322), +(63315, 'Cecil', 1949, 'M', 1319), +(63316, 'Bradley', 1949, 'M', 1312), +(63317, 'Claude', 1949, 'M', 1220), +(63318, 'Roland', 1949, 'M', 1220), +(63319, 'Matthew', 1949, 'M', 1219), +(63320, 'Stuart', 1949, 'M', 1194), +(63321, 'Nathaniel', 1949, 'M', 1192), +(63322, 'Alexander', 1949, 'M', 1188), +(63323, 'Terrence', 1949, 'M', 1178), +(63324, 'Dave', 1949, 'M', 1163), +(63325, 'Maurice', 1949, 'M', 1153), +(63326, 'Carlos', 1949, 'M', 1136), +(63327, 'Guy', 1949, 'M', 1130), +(63328, 'Oscar', 1949, 'M', 1128), +(63329, 'Marshall', 1949, 'M', 1111), +(63330, 'Sam', 1949, 'M', 1103), +(63331, 'Reginald', 1949, 'M', 1091), +(63332, 'Mitchell', 1949, 'M', 1090), +(63333, 'Rickey', 1949, 'M', 1087), +(63334, 'Dana', 1949, 'M', 1079), +(63335, 'Wallace', 1949, 'M', 1075), +(63336, 'Kent', 1949, 'M', 1071), +(63337, 'Perry', 1949, 'M', 1058), +(63338, 'Jeffery', 1949, 'M', 1049), +(63339, 'Gerard', 1949, 'M', 1043), +(63340, 'Hugh', 1949, 'M', 1042), +(63341, 'Fredrick', 1949, 'M', 1032), +(63342, 'Jessie', 1949, 'M', 1025), +(63343, 'Tim', 1949, 'M', 1007), +(63344, 'Ruben', 1949, 'M', 1001), +(63345, 'Sammy', 1949, 'M', 999), +(63346, 'Clifton', 1949, 'M', 982), +(63347, 'Daryl', 1949, 'M', 976), +(63348, 'Benny', 1949, 'M', 966), +(63349, 'Rex', 1949, 'M', 959), +(63350, 'Sidney', 1949, 'M', 946), +(63351, 'Kerry', 1949, 'M', 926), +(63352, 'Willard', 1949, 'M', 925), +(63353, 'Edgar', 1949, 'M', 913), +(63354, 'Clinton', 1949, 'M', 910), +(63355, 'Earnest', 1949, 'M', 887), +(63356, 'Elmer', 1949, 'M', 868), +(63357, 'Greg', 1949, 'M', 868), +(63358, 'Darryl', 1949, 'M', 858), +(63359, 'Antonio', 1949, 'M', 850), +(63360, 'Marion', 1949, 'M', 838), +(63361, 'Everett', 1949, 'M', 834), +(63362, 'Lyle', 1949, 'M', 834), +(63363, 'Morris', 1949, 'M', 830), +(63364, 'Terrance', 1949, 'M', 829), +(63365, 'Rudolph', 1949, 'M', 821), +(63366, 'Otis', 1949, 'M', 814), +(63367, 'Bennie', 1949, 'M', 806), +(63368, 'Laurence', 1949, 'M', 800), +(63369, 'Aaron', 1949, 'M', 795), +(63370, 'Virgil', 1949, 'M', 792), +(63371, 'Ira', 1949, 'M', 790), +(63372, 'Tyrone', 1949, 'M', 789), +(63373, 'Jesus', 1949, 'M', 784), +(63374, 'Nelson', 1949, 'M', 783), +(63375, 'Max', 1949, 'M', 763), +(63376, 'Ross', 1949, 'M', 763), +(63377, 'Ben', 1949, 'M', 761), +(63378, 'Clayton', 1949, 'M', 749), +(63379, 'Byron', 1949, 'M', 744), +(63380, 'Luther', 1949, 'M', 743), +(63381, 'Neal', 1949, 'M', 740), +(63382, 'Brent', 1949, 'M', 738), +(63383, 'Kirk', 1949, 'M', 731), +(63384, 'Alex', 1949, 'M', 730), +(63385, 'Rudy', 1949, 'M', 719), +(63386, 'Wendell', 1949, 'M', 714), +(63387, 'Jeff', 1949, 'M', 695), +(63388, 'Horace', 1949, 'M', 685), +(63389, 'Rodger', 1949, 'M', 678), +(63390, 'Luis', 1949, 'M', 674), +(63391, 'Kurt', 1949, 'M', 671), +(63392, 'Bryan', 1949, 'M', 670), +(63393, 'Nathan', 1949, 'M', 659), +(63394, 'Robin', 1949, 'M', 657), +(63395, 'Loren', 1949, 'M', 651), +(63396, 'Raul', 1949, 'M', 645), +(63397, 'Kim', 1949, 'M', 637), +(63398, 'Lowell', 1949, 'M', 634), +(63399, 'Leland', 1949, 'M', 633), +(63400, 'Archie', 1949, 'M', 630), +(63401, 'Hubert', 1949, 'M', 625), +(63402, 'Carroll', 1949, 'M', 623), +(63403, 'Wilbert', 1949, 'M', 622), +(63404, 'Troy', 1949, 'M', 621), +(63405, 'Lance', 1949, 'M', 615), +(63406, 'Teddy', 1949, 'M', 613), +(63407, 'Delbert', 1949, 'M', 608), +(63408, 'Salvatore', 1949, 'M', 608), +(63409, 'Mario', 1949, 'M', 606), +(63410, 'Roosevelt', 1949, 'M', 605), +(63411, 'Alton', 1949, 'M', 601), +(63412, 'Isaac', 1949, 'M', 599), +(63413, 'Oliver', 1949, 'M', 598), +(63414, 'Darrel', 1949, 'M', 597), +(63415, 'Clark', 1949, 'M', 594), +(63416, 'Doyle', 1949, 'M', 594), +(63417, 'Francisco', 1949, 'M', 594), +(63418, 'Homer', 1949, 'M', 590), +(63419, 'Tommie', 1949, 'M', 587), +(63420, 'Edmund', 1949, 'M', 586), +(63421, 'Geoffrey', 1949, 'M', 586), +(63422, 'Jerald', 1949, 'M', 584), +(63423, 'Sylvester', 1949, 'M', 584), +(63424, 'Carlton', 1949, 'M', 583), +(63425, 'Roberto', 1949, 'M', 583), +(63426, 'Frankie', 1949, 'M', 579), +(63427, 'Pete', 1949, 'M', 579), +(63428, 'Gregg', 1949, 'M', 560), +(63429, 'Sherman', 1949, 'M', 557), +(63430, 'Julius', 1949, 'M', 555), +(63431, 'Jan', 1949, 'M', 552), +(63432, 'Mickey', 1949, 'M', 549), +(63433, 'Kenny', 1949, 'M', 546), +(63434, 'Preston', 1949, 'M', 536), +(63435, 'Julian', 1949, 'M', 534), +(63436, 'Ron', 1949, 'M', 526), +(63437, 'Malcolm', 1949, 'M', 520), +(63438, 'Myron', 1949, 'M', 517), +(63439, 'Ramon', 1949, 'M', 517), +(63440, 'Pedro', 1949, 'M', 512), +(63441, 'Van', 1949, 'M', 511), +(63442, 'Kelly', 1949, 'M', 510), +(63443, 'Mack', 1949, 'M', 504), +(63444, 'Felix', 1949, 'M', 503), +(63445, 'Rufus', 1949, 'M', 500), +(63446, 'Lanny', 1949, 'M', 498), +(63447, 'Bradford', 1949, 'M', 496), +(63448, 'Pat', 1949, 'M', 495), +(63449, 'Ricardo', 1949, 'M', 492), +(63450, 'Jacob', 1949, 'M', 490), +(63451, 'Wilbur', 1949, 'M', 486), +(63452, 'Willis', 1949, 'M', 478), +(63453, 'Armando', 1949, 'M', 475), +(63454, 'Wade', 1949, 'M', 471), +(63455, 'Hector', 1949, 'M', 466), +(63456, 'Grant', 1949, 'M', 465), +(63457, 'Marcus', 1949, 'M', 463), +(63458, 'Dewey', 1949, 'M', 461), +(63459, 'Todd', 1949, 'M', 460), +(63460, 'Forrest', 1949, 'M', 459), +(63461, 'Ivan', 1949, 'M', 457), +(63462, 'Grady', 1949, 'M', 456), +(63463, 'Ken', 1949, 'M', 456), +(63464, 'Andy', 1949, 'M', 455), +(63465, 'Ervin', 1949, 'M', 453), +(63466, 'Randal', 1949, 'M', 450), +(63467, 'Nick', 1949, 'M', 448), +(63468, 'Cary', 1949, 'M', 447), +(63469, 'Monte', 1949, 'M', 439), +(63470, 'Phil', 1949, 'M', 438), +(63471, 'Galen', 1949, 'M', 433), +(63472, 'Sammie', 1949, 'M', 432), +(63473, 'Ellis', 1949, 'M', 431), +(63474, 'Freddy', 1949, 'M', 425), +(63475, 'Elbert', 1949, 'M', 418), +(63476, 'Hal', 1949, 'M', 406), +(63477, 'Garland', 1949, 'M', 402), +(63478, 'Roderick', 1949, 'M', 401), +(63479, 'Percy', 1949, 'M', 398), +(63480, 'Denis', 1949, 'M', 394), +(63481, 'Angelo', 1949, 'M', 392), +(63482, 'Louie', 1949, 'M', 391), +(63483, 'Woodrow', 1949, 'M', 390), +(63484, 'Stewart', 1949, 'M', 389), +(63485, 'Terence', 1949, 'M', 389), +(63486, 'Irvin', 1949, 'M', 379), +(63487, 'Sheldon', 1949, 'M', 377), +(63488, 'Wilson', 1949, 'M', 377), +(63489, 'Guadalupe', 1949, 'M', 375), +(63490, 'Travis', 1949, 'M', 374), +(63491, 'Vaughn', 1949, 'M', 374), +(63492, 'Stephan', 1949, 'M', 373), +(63493, 'Owen', 1949, 'M', 370), +(63494, 'Dallas', 1949, 'M', 368), +(63495, 'Miguel', 1949, 'M', 366), +(63496, 'Dwayne', 1949, 'M', 362), +(63497, 'Bert', 1949, 'M', 361), +(63498, 'Lorenzo', 1949, 'M', 355), +(63499, 'Merle', 1949, 'M', 353), +(63500, 'Alfonso', 1949, 'M', 351), +(63501, 'Conrad', 1949, 'M', 351), +(63502, 'Arturo', 1949, 'M', 350), +(63503, 'Boyd', 1949, 'M', 349), +(63504, 'Rene', 1949, 'M', 349), +(63505, 'Buddy', 1949, 'M', 344), +(63506, 'Alfredo', 1949, 'M', 343), +(63507, 'Noel', 1949, 'M', 343), +(63508, 'Donn', 1949, 'M', 341), +(63509, 'Ronny', 1949, 'M', 341), +(63510, 'Dick', 1949, 'M', 340), +(63511, 'Eldon', 1949, 'M', 338), +(63512, 'Lionel', 1949, 'M', 336), +(63513, 'Monty', 1949, 'M', 333), +(63514, 'Royce', 1949, 'M', 328), +(63515, 'Ernie', 1949, 'M', 325), +(63516, 'Cleveland', 1949, 'M', 323), +(63517, 'Salvador', 1949, 'M', 322), +(63518, 'Spencer', 1949, 'M', 320), +(63519, 'Wilfred', 1949, 'M', 316), +(63520, 'Rickie', 1949, 'M', 315), +(63521, 'Adrian', 1949, 'M', 314), +(63522, 'Gale', 1949, 'M', 314), +(63523, 'Harlan', 1949, 'M', 314), +(63524, 'Dominic', 1949, 'M', 313), +(63525, 'Cornelius', 1949, 'M', 311), +(63526, 'Brad', 1949, 'M', 310), +(63527, 'Darwin', 1949, 'M', 303), +(63528, 'Gerry', 1949, 'M', 302), +(63529, 'Adam', 1949, 'M', 301), +(63530, 'Harley', 1949, 'M', 301), +(63531, 'Aubrey', 1949, 'M', 299), +(63532, 'Alonzo', 1949, 'M', 297), +(63533, 'Edmond', 1949, 'M', 294), +(63534, 'Elliott', 1949, 'M', 293), +(63535, 'Moses', 1949, 'M', 292), +(63536, 'Orville', 1949, 'M', 291), +(63537, 'Rocky', 1949, 'M', 289), +(63538, 'Abraham', 1949, 'M', 288), +(63539, 'Miles', 1949, 'M', 286), +(63540, 'Junior', 1949, 'M', 285), +(63541, 'Emmett', 1949, 'M', 284), +(63542, 'Marlin', 1949, 'M', 283), +(63543, 'Irving', 1949, 'M', 282), +(63544, 'Unknown', 1949, 'M', 278), +(63545, 'Murray', 1949, 'M', 276), +(63546, 'Amos', 1949, 'M', 275), +(63547, 'Billie', 1949, 'M', 275), +(63548, 'Ned', 1949, 'M', 273), +(63549, 'Dannie', 1949, 'M', 272), +(63550, 'Linwood', 1949, 'M', 272), +(63551, 'Denny', 1949, 'M', 271), +(63552, 'Frederic', 1949, 'M', 270), +(63553, 'Burton', 1949, 'M', 269), +(63554, 'Elijah', 1949, 'M', 268), +(63555, 'Fernando', 1949, 'M', 268), +(63556, 'Grover', 1949, 'M', 268), +(63557, 'Reed', 1949, 'M', 268), +(63558, 'Vance', 1949, 'M', 267), +(63559, 'Lamar', 1949, 'M', 266), +(63560, 'Winston', 1949, 'M', 266), +(63561, 'Chuck', 1949, 'M', 265), +(63562, 'Gabriel', 1949, 'M', 265), +(63563, 'Ernesto', 1949, 'M', 262), +(63564, 'Sterling', 1949, 'M', 261), +(63565, 'Rafael', 1949, 'M', 258), +(63566, 'Sanford', 1949, 'M', 257), +(63567, 'Dominick', 1949, 'M', 256), +(63568, 'Doug', 1949, 'M', 254), +(63569, 'Thurman', 1949, 'M', 252), +(63570, 'Andre', 1949, 'M', 251), +(63571, 'Rodolfo', 1949, 'M', 250), +(63572, 'August', 1949, 'M', 249), +(63573, 'Tracy', 1949, 'M', 246), +(63574, 'Ed', 1949, 'M', 241), +(63575, 'Donny', 1949, 'M', 239), +(63576, 'Norris', 1949, 'M', 239), +(63577, 'Loyd', 1949, 'M', 236), +(63578, 'Jess', 1949, 'M', 235), +(63579, 'Kermit', 1949, 'M', 233), +(63580, 'Al', 1949, 'M', 231), +(63581, 'Alphonso', 1949, 'M', 231), +(63582, 'Elton', 1949, 'M', 231), +(63583, 'Emanuel', 1949, 'M', 231), +(63584, 'Harrison', 1949, 'M', 231), +(63585, 'Lon', 1949, 'M', 228), +(63586, 'Norbert', 1949, 'M', 227), +(63587, 'Carmen', 1949, 'M', 224), +(63588, 'Enrique', 1949, 'M', 224), +(63589, 'Alberto', 1949, 'M', 223), +(63590, 'Odell', 1949, 'M', 221), +(63591, 'Will', 1949, 'M', 221), +(63592, 'Barney', 1949, 'M', 219), +(63593, 'Nolan', 1949, 'M', 219), +(63594, 'Bobbie', 1949, 'M', 218), +(63595, 'Christian', 1949, 'M', 218), +(63596, 'Jason', 1949, 'M', 218), +(63597, 'Emil', 1949, 'M', 216), +(63598, 'Colin', 1949, 'M', 211), +(63599, 'Gail', 1949, 'M', 210), +(63600, 'Roscoe', 1949, 'M', 208), +(63601, 'Drew', 1949, 'M', 207), +(63602, 'Elwood', 1949, 'M', 207), +(63603, 'Reuben', 1949, 'M', 206), +(63604, 'Wiley', 1949, 'M', 206), +(63605, 'Dewayne', 1949, 'M', 203), +(63606, 'Terrell', 1949, 'M', 202), +(63607, 'Randell', 1949, 'M', 199), +(63608, 'Simon', 1949, 'M', 199), +(63609, 'Tomas', 1949, 'M', 199), +(63610, 'Kennith', 1949, 'M', 197), +(63611, 'Kirby', 1949, 'M', 197), +(63612, 'Carey', 1949, 'M', 195), +(63613, 'Elliot', 1949, 'M', 195), +(63614, 'Fredric', 1949, 'M', 194), +(63615, 'Millard', 1949, 'M', 194), +(63616, 'Solomon', 1949, 'M', 194), +(63617, 'Jasper', 1949, 'M', 193), +(63618, 'Jeffry', 1949, 'M', 193), +(63619, 'Ollie', 1949, 'M', 193), +(63620, 'Lamont', 1949, 'M', 192), +(63621, 'Weldon', 1949, 'M', 190), +(63622, 'Eddy', 1949, 'M', 189), +(63623, 'Reynaldo', 1949, 'M', 189), +(63624, 'Austin', 1949, 'M', 188), +(63625, 'Sandy', 1949, 'M', 188), +(63626, 'Blaine', 1949, 'M', 187), +(63627, 'Rocco', 1949, 'M', 187), +(63628, 'Angel', 1949, 'M', 186), +(63629, 'Dudley', 1949, 'M', 185), +(63630, 'Jake', 1949, 'M', 185), +(63631, 'Ramiro', 1949, 'M', 185), +(63632, 'Joshua', 1949, 'M', 183), +(63633, 'Jorge', 1949, 'M', 182), +(63634, 'Marty', 1949, 'M', 182), +(63635, 'Ward', 1949, 'M', 182), +(63636, 'Cornell', 1949, 'M', 179), +(63637, 'Carter', 1949, 'M', 178), +(63638, 'Domingo', 1949, 'M', 178), +(63639, 'Julio', 1949, 'M', 178), +(63640, 'Clay', 1949, 'M', 177), +(63641, 'Gilberto', 1949, 'M', 177), +(63642, 'Jerold', 1949, 'M', 177), +(63643, 'Joesph', 1949, 'M', 177), +(63644, 'Levi', 1949, 'M', 177), +(63645, 'Russel', 1949, 'M', 177), +(63646, 'Elvin', 1949, 'M', 175), +(63647, 'Evan', 1949, 'M', 175), +(63648, 'Justin', 1949, 'M', 174), +(63649, 'Ulysses', 1949, 'M', 174), +(63650, 'Charley', 1949, 'M', 172), +(63651, 'Otto', 1949, 'M', 172), +(63652, 'Mary', 1949, 'M', 170), +(63653, 'Harris', 1949, 'M', 169), +(63654, 'Linda', 1949, 'M', 169), +(63655, 'Riley', 1949, 'M', 169), +(63656, 'Barton', 1949, 'M', 168), +(63657, 'Garrett', 1949, 'M', 168), +(63658, 'Pablo', 1949, 'M', 168), +(63659, 'Booker', 1949, 'M', 167), +(63660, 'Monroe', 1949, 'M', 167), +(63661, 'Kendall', 1949, 'M', 166), +(63662, 'Michel', 1949, 'M', 166), +(63663, 'Jerrold', 1949, 'M', 165), +(63664, 'Hollis', 1949, 'M', 164), +(63665, 'Jean', 1949, 'M', 164), +(63666, 'Jeremiah', 1949, 'M', 163), +(63667, 'Abel', 1949, 'M', 161), +(63668, 'Armand', 1949, 'M', 160), +(63669, 'Thaddeus', 1949, 'M', 160), +(63670, 'Coy', 1949, 'M', 159), +(63671, 'Dane', 1949, 'M', 159), +(63672, 'Felipe', 1949, 'M', 159), +(63673, 'Jackson', 1949, 'M', 158), +(63674, 'Truman', 1949, 'M', 158), +(63675, 'Davis', 1949, 'M', 156), +(63676, 'Erik', 1949, 'M', 156), +(63677, 'Dickie', 1949, 'M', 155), +(63678, 'Denver', 1949, 'M', 154), +(63679, 'Joey', 1949, 'M', 154), +(63680, 'Luke', 1949, 'M', 154), +(63681, 'Timmy', 1949, 'M', 154), +(63682, 'Maynard', 1949, 'M', 153), +(63683, 'Javier', 1949, 'M', 152), +(63684, 'Merrill', 1949, 'M', 151), +(63685, 'Reid', 1949, 'M', 151), +(63686, 'Emory', 1949, 'M', 150), +(63687, 'Johnie', 1949, 'M', 150), +(63688, 'Merlin', 1949, 'M', 150), +(63689, 'Rory', 1949, 'M', 150), +(63690, 'Toby', 1949, 'M', 149), +(63691, 'Benito', 1949, 'M', 148), +(63692, 'Buford', 1949, 'M', 148), +(63693, 'Noah', 1949, 'M', 148), +(63694, 'Rogers', 1949, 'M', 148), +(63695, 'Connie', 1949, 'M', 147), +(63696, 'Lane', 1949, 'M', 147), +(63697, 'Shelby', 1949, 'M', 147), +(63698, 'Delmar', 1949, 'M', 146), +(63699, 'Gus', 1949, 'M', 146), +(63700, 'Israel', 1949, 'M', 146), +(63701, 'Vern', 1949, 'M', 146), +(63702, 'Dexter', 1949, 'M', 145), +(63703, 'Erwin', 1949, 'M', 145), +(63704, 'Isaiah', 1949, 'M', 145), +(63705, 'Roman', 1949, 'M', 145), +(63706, 'Elias', 1949, 'M', 144), +(63707, 'Kyle', 1949, 'M', 144), +(63708, 'Jaime', 1949, 'M', 143), +(63709, 'Duncan', 1949, 'M', 141), +(63710, 'Bennett', 1949, 'M', 140), +(63711, 'Brett', 1949, 'M', 140), +(63712, 'Seth', 1949, 'M', 140), +(63713, 'Eduardo', 1949, 'M', 139), +(63714, 'Santos', 1949, 'M', 139), +(63715, 'Irwin', 1949, 'M', 138), +(63716, 'Lannie', 1949, 'M', 138), +(63717, 'Silas', 1949, 'M', 138), +(63718, 'Emery', 1949, 'M', 137), +(63719, 'Stan', 1949, 'M', 137), +(63720, 'Guillermo', 1949, 'M', 136), +(63721, 'Bernie', 1949, 'M', 134), +(63722, 'Damon', 1949, 'M', 134), +(63723, 'Emilio', 1949, 'M', 134), +(63724, 'Rogelio', 1949, 'M', 134), +(63725, 'Shawn', 1949, 'M', 134), +(63726, 'Andres', 1949, 'M', 133), +(63727, 'Carmine', 1949, 'M', 133), +(63728, 'Carson', 1949, 'M', 133), +(63729, 'Errol', 1949, 'M', 133), +(63730, 'Forest', 1949, 'M', 133), +(63731, 'Jefferson', 1949, 'M', 133), +(63732, 'Carol', 1949, 'M', 132), +(63733, 'Danial', 1949, 'M', 132), +(63734, 'Douglass', 1949, 'M', 132), +(63735, 'Dwain', 1949, 'M', 132), +(63736, 'Santiago', 1949, 'M', 132), +(63737, 'Val', 1949, 'M', 132), +(63738, 'Wilford', 1949, 'M', 132), +(63739, 'Shelton', 1949, 'M', 131), +(63740, 'Ignacio', 1949, 'M', 130), +(63741, 'Lenard', 1949, 'M', 130), +(63742, 'Winfred', 1949, 'M', 130), +(63743, 'Ismael', 1949, 'M', 129), +(63744, 'Royal', 1949, 'M', 129), +(63745, 'Sean', 1949, 'M', 128), +(63746, 'Bud', 1949, 'M', 127), +(63747, 'Orlando', 1949, 'M', 127), +(63748, 'Stanford', 1949, 'M', 127), +(63749, 'Herschel', 1949, 'M', 126), +(63750, 'Eli', 1949, 'M', 125), +(63751, 'Lawerence', 1949, 'M', 125), +(63752, 'Lonny', 1949, 'M', 124), +(63753, 'Nicky', 1949, 'M', 124), +(63754, 'Vito', 1949, 'M', 124), +(63755, 'Fletcher', 1949, 'M', 123), +(63756, 'Ivory', 1949, 'M', 123), +(63757, 'Clement', 1949, 'M', 122), +(63758, 'Glynn', 1949, 'M', 122), +(63759, 'Jody', 1949, 'M', 122), +(63760, 'Mervin', 1949, 'M', 122), +(63761, 'Lavern', 1949, 'M', 121), +(63762, 'Adolph', 1949, 'M', 120), +(63763, 'Freeman', 1949, 'M', 120), +(63764, 'Gaylord', 1949, 'M', 120), +(63765, 'Morgan', 1949, 'M', 120), +(63766, 'Earle', 1949, 'M', 119), +(63767, 'Sonny', 1949, 'M', 119), +(63768, 'Wilmer', 1949, 'M', 119), +(63769, 'Alejandro', 1949, 'M', 118), +(63770, 'Dalton', 1949, 'M', 118), +(63771, 'Darnell', 1949, 'M', 118), +(63772, 'Gayle', 1949, 'M', 118), +(63773, 'Gearld', 1949, 'M', 118), +(63774, 'Mitchel', 1949, 'M', 118), +(63775, 'Robbie', 1949, 'M', 118), +(63776, 'Casey', 1949, 'M', 116), +(63777, 'Clair', 1949, 'M', 116), +(63778, 'Emerson', 1949, 'M', 116), +(63779, 'Mathew', 1949, 'M', 116), +(63780, 'Anderson', 1949, 'M', 115); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(63781, 'Curt', 1949, 'M', 115), +(63782, 'Derek', 1949, 'M', 114), +(63783, 'Isiah', 1949, 'M', 114), +(63784, 'Bryant', 1949, 'M', 113), +(63785, 'Hershel', 1949, 'M', 113), +(63786, 'Bart', 1949, 'M', 112), +(63787, 'Basil', 1949, 'M', 112), +(63788, 'Laverne', 1949, 'M', 112), +(63789, 'Myles', 1949, 'M', 112), +(63790, 'Stanton', 1949, 'M', 112), +(63791, 'Stevie', 1949, 'M', 112), +(63792, 'Alva', 1949, 'M', 111), +(63793, 'Burt', 1949, 'M', 111), +(63794, 'Felton', 1949, 'M', 111), +(63795, 'Lupe', 1949, 'M', 111), +(63796, 'Otha', 1949, 'M', 111), +(63797, 'Wilburn', 1949, 'M', 111), +(63798, 'Cleo', 1949, 'M', 110), +(63799, 'Major', 1949, 'M', 110), +(63800, 'Reggie', 1949, 'M', 110), +(63801, 'Augustine', 1949, 'M', 109), +(63802, 'Butch', 1949, 'M', 109), +(63803, 'Mckinley', 1949, 'M', 109), +(63804, 'Anton', 1949, 'M', 108), +(63805, 'Zachary', 1949, 'M', 108), +(63806, 'Foster', 1949, 'M', 107), +(63807, 'Kris', 1949, 'M', 107), +(63808, 'Normand', 1949, 'M', 107), +(63809, 'Rod', 1949, 'M', 107), +(63810, 'Dee', 1949, 'M', 106), +(63811, 'Hiram', 1949, 'M', 106), +(63812, 'Mac', 1949, 'M', 106), +(63813, 'Jacky', 1949, 'M', 104), +(63814, 'Leigh', 1949, 'M', 104), +(63815, 'Milford', 1949, 'M', 104), +(63816, 'Quentin', 1949, 'M', 104), +(63817, 'Theron', 1949, 'M', 104), +(63818, 'Patricia', 1949, 'M', 103), +(63819, 'Saul', 1949, 'M', 103), +(63820, 'Ian', 1949, 'M', 102), +(63821, 'Ryan', 1949, 'M', 102), +(63822, 'Adolfo', 1949, 'M', 101), +(63823, 'Graham', 1949, 'M', 101), +(63824, 'Arlen', 1949, 'M', 100), +(63825, 'Cruz', 1949, 'M', 100), +(63826, 'Cyril', 1949, 'M', 100), +(63827, 'Houston', 1949, 'M', 100), +(63828, 'Rand', 1949, 'M', 100), +(63829, 'Linda', 1950, 'F', 80431), +(63830, 'Mary', 1950, 'F', 65460), +(63831, 'Patricia', 1950, 'F', 47945), +(63832, 'Barbara', 1950, 'F', 41558), +(63833, 'Susan', 1950, 'F', 38022), +(63834, 'Nancy', 1950, 'F', 29621), +(63835, 'Deborah', 1950, 'F', 29071), +(63836, 'Sandra', 1950, 'F', 28893), +(63837, 'Carol', 1950, 'F', 26159), +(63838, 'Kathleen', 1950, 'F', 25699), +(63839, 'Sharon', 1950, 'F', 24611), +(63840, 'Karen', 1950, 'F', 24139), +(63841, 'Donna', 1950, 'F', 21630), +(63842, 'Brenda', 1950, 'F', 20793), +(63843, 'Margaret', 1950, 'F', 18102), +(63844, 'Diane', 1950, 'F', 17632), +(63845, 'Pamela', 1950, 'F', 16200), +(63846, 'Janet', 1950, 'F', 16192), +(63847, 'Shirley', 1950, 'F', 15893), +(63848, 'Carolyn', 1950, 'F', 15597), +(63849, 'Judith', 1950, 'F', 15359), +(63850, 'Janice', 1950, 'F', 15018), +(63851, 'Cynthia', 1950, 'F', 14449), +(63852, 'Elizabeth', 1950, 'F', 14343), +(63853, 'Judy', 1950, 'F', 14206), +(63854, 'Betty', 1950, 'F', 13615), +(63855, 'Joyce', 1950, 'F', 13417), +(63856, 'Christine', 1950, 'F', 12676), +(63857, 'Cheryl', 1950, 'F', 11823), +(63858, 'Gloria', 1950, 'F', 11033), +(63859, 'Beverly', 1950, 'F', 10511), +(63860, 'Martha', 1950, 'F', 9834), +(63861, 'Bonnie', 1950, 'F', 9745), +(63862, 'Catherine', 1950, 'F', 9655), +(63863, 'Dorothy', 1950, 'F', 9553), +(63864, 'Rebecca', 1950, 'F', 9422), +(63865, 'Marilyn', 1950, 'F', 9281), +(63866, 'Kathy', 1950, 'F', 9091), +(63867, 'Jane', 1950, 'F', 8966), +(63868, 'Joan', 1950, 'F', 8866), +(63869, 'Peggy', 1950, 'F', 8525), +(63870, 'Gail', 1950, 'F', 8348), +(63871, 'Virginia', 1950, 'F', 8308), +(63872, 'Connie', 1950, 'F', 8151), +(63873, 'Ann', 1950, 'F', 7926), +(63874, 'Kathryn', 1950, 'F', 7859), +(63875, 'Diana', 1950, 'F', 7442), +(63876, 'Jean', 1950, 'F', 7431), +(63877, 'Ruth', 1950, 'F', 7125), +(63878, 'Helen', 1950, 'F', 7058), +(63879, 'Frances', 1950, 'F', 6973), +(63880, 'Wanda', 1950, 'F', 6931), +(63881, 'Phyllis', 1950, 'F', 6697), +(63882, 'Paula', 1950, 'F', 6633), +(63883, 'Jacqueline', 1950, 'F', 6453), +(63884, 'Rita', 1950, 'F', 6422), +(63885, 'Alice', 1950, 'F', 6361), +(63886, 'Katherine', 1950, 'F', 6208), +(63887, 'Debra', 1950, 'F', 6181), +(63888, 'Elaine', 1950, 'F', 6038), +(63889, 'Vicki', 1950, 'F', 5828), +(63890, 'Sherry', 1950, 'F', 5805), +(63891, 'Laura', 1950, 'F', 5726), +(63892, 'Jo', 1950, 'F', 5676), +(63893, 'Theresa', 1950, 'F', 5628), +(63894, 'Ellen', 1950, 'F', 5567), +(63895, 'Joanne', 1950, 'F', 5491), +(63896, 'Marsha', 1950, 'F', 5402), +(63897, 'Rose', 1950, 'F', 5370), +(63898, 'Sheila', 1950, 'F', 5322), +(63899, 'Suzanne', 1950, 'F', 5268), +(63900, 'Marie', 1950, 'F', 5226), +(63901, 'Maria', 1950, 'F', 5077), +(63902, 'Doris', 1950, 'F', 5056), +(63903, 'Cathy', 1950, 'F', 5031), +(63904, 'Lynn', 1950, 'F', 5020), +(63905, 'Marcia', 1950, 'F', 4951), +(63906, 'Sally', 1950, 'F', 4870), +(63907, 'Darlene', 1950, 'F', 4832), +(63908, 'Charlotte', 1950, 'F', 4736), +(63909, 'Teresa', 1950, 'F', 4725), +(63910, 'Denise', 1950, 'F', 4519), +(63911, 'Lois', 1950, 'F', 4506), +(63912, 'Anne', 1950, 'F', 4458), +(63913, 'Constance', 1950, 'F', 4442), +(63914, 'Evelyn', 1950, 'F', 4273), +(63915, 'Glenda', 1950, 'F', 4213), +(63916, 'Sarah', 1950, 'F', 4149), +(63917, 'Maureen', 1950, 'F', 4069), +(63918, 'Dianne', 1950, 'F', 3922), +(63919, 'Eileen', 1950, 'F', 3884), +(63920, 'Irene', 1950, 'F', 3822), +(63921, 'Anna', 1950, 'F', 3815), +(63922, 'Victoria', 1950, 'F', 3779), +(63923, 'Jeanne', 1950, 'F', 3736), +(63924, 'Roberta', 1950, 'F', 3632), +(63925, 'Sylvia', 1950, 'F', 3616), +(63926, 'Joann', 1950, 'F', 3598), +(63927, 'Anita', 1950, 'F', 3571), +(63928, 'Sue', 1950, 'F', 3503), +(63929, 'Rosemary', 1950, 'F', 3457), +(63930, 'Geraldine', 1950, 'F', 3451), +(63931, 'Charlene', 1950, 'F', 3446), +(63932, 'Norma', 1950, 'F', 3411), +(63933, 'Lorraine', 1950, 'F', 3345), +(63934, 'Annie', 1950, 'F', 3332), +(63935, 'Lynda', 1950, 'F', 3299), +(63936, 'Vickie', 1950, 'F', 3284), +(63937, 'Louise', 1950, 'F', 3255), +(63938, 'Yvonne', 1950, 'F', 3244), +(63939, 'Julie', 1950, 'F', 3145), +(63940, 'Marlene', 1950, 'F', 3128), +(63941, 'Gwendolyn', 1950, 'F', 3044), +(63942, 'Juanita', 1950, 'F', 3029), +(63943, 'Wendy', 1950, 'F', 3029), +(63944, 'Valerie', 1950, 'F', 3025), +(63945, 'Patsy', 1950, 'F', 2933), +(63946, 'Jennifer', 1950, 'F', 2802), +(63947, 'Julia', 1950, 'F', 2730), +(63948, 'Loretta', 1950, 'F', 2723), +(63949, 'Marjorie', 1950, 'F', 2697), +(63950, 'Stephanie', 1950, 'F', 2644), +(63951, 'Kay', 1950, 'F', 2626), +(63952, 'Colleen', 1950, 'F', 2617), +(63953, 'Rhonda', 1950, 'F', 2568), +(63954, 'Claudia', 1950, 'F', 2536), +(63955, 'Terry', 1950, 'F', 2527), +(63956, 'Michele', 1950, 'F', 2500), +(63957, 'Delores', 1950, 'F', 2461), +(63958, 'Ruby', 1950, 'F', 2420), +(63959, 'Jeanette', 1950, 'F', 2411), +(63960, 'Arlene', 1950, 'F', 2390), +(63961, 'Gayle', 1950, 'F', 2367), +(63962, 'Leslie', 1950, 'F', 2330), +(63963, 'Janis', 1950, 'F', 2296), +(63964, 'Mildred', 1950, 'F', 2296), +(63965, 'June', 1950, 'F', 2291), +(63966, 'Vivian', 1950, 'F', 2268), +(63967, 'Dolores', 1950, 'F', 2228), +(63968, 'Carole', 1950, 'F', 2218), +(63969, 'Jill', 1950, 'F', 2197), +(63970, 'Andrea', 1950, 'F', 2194), +(63971, 'Regina', 1950, 'F', 2168), +(63972, 'Annette', 1950, 'F', 2132), +(63973, 'Sheryl', 1950, 'F', 2113), +(63974, 'Josephine', 1950, 'F', 2092), +(63975, 'Sara', 1950, 'F', 2057), +(63976, 'Angela', 1950, 'F', 2056), +(63977, 'Robin', 1950, 'F', 1995), +(63978, 'Paulette', 1950, 'F', 1952), +(63979, 'Edith', 1950, 'F', 1951), +(63980, 'Lynne', 1950, 'F', 1942), +(63981, 'Georgia', 1950, 'F', 1941), +(63982, 'Emma', 1950, 'F', 1898), +(63983, 'Lillian', 1950, 'F', 1887), +(63984, 'Rosa', 1950, 'F', 1885), +(63985, 'Edna', 1950, 'F', 1854), +(63986, 'Audrey', 1950, 'F', 1803), +(63987, 'Joy', 1950, 'F', 1775), +(63988, 'Carla', 1950, 'F', 1752), +(63989, 'Penny', 1950, 'F', 1747), +(63990, 'Esther', 1950, 'F', 1744), +(63991, 'Pauline', 1950, 'F', 1741), +(63992, 'Janie', 1950, 'F', 1730), +(63993, 'Jacquelyn', 1950, 'F', 1727), +(63994, 'Christina', 1950, 'F', 1725), +(63995, 'Jan', 1950, 'F', 1721), +(63996, 'Renee', 1950, 'F', 1693), +(63997, 'Priscilla', 1950, 'F', 1674), +(63998, 'Shelley', 1950, 'F', 1671), +(63999, 'Wilma', 1950, 'F', 1655), +(64000, 'Candace', 1950, 'F', 1646), +(64001, 'Belinda', 1950, 'F', 1636), +(64002, 'Michelle', 1950, 'F', 1635), +(64003, 'Eva', 1950, 'F', 1622), +(64004, 'Ethel', 1950, 'F', 1602), +(64005, 'Beth', 1950, 'F', 1580), +(64006, 'Clara', 1950, 'F', 1574), +(64007, 'Yolanda', 1950, 'F', 1566), +(64008, 'Lucille', 1950, 'F', 1551), +(64009, 'Gladys', 1950, 'F', 1531), +(64010, 'Bonita', 1950, 'F', 1527), +(64011, 'Grace', 1950, 'F', 1510), +(64012, 'Margie', 1950, 'F', 1472), +(64013, 'Cindy', 1950, 'F', 1470), +(64014, 'Carmen', 1950, 'F', 1456), +(64015, 'Dianna', 1950, 'F', 1455), +(64016, 'Rachel', 1950, 'F', 1455), +(64017, 'Thelma', 1950, 'F', 1455), +(64018, 'Florence', 1950, 'F', 1446), +(64019, 'Dawn', 1950, 'F', 1412), +(64020, 'Marianne', 1950, 'F', 1400), +(64021, 'Bertha', 1950, 'F', 1397), +(64022, 'Laurie', 1950, 'F', 1390), +(64023, 'Bobbie', 1950, 'F', 1389), +(64024, 'Veronica', 1950, 'F', 1388), +(64025, 'Marion', 1950, 'F', 1386), +(64026, 'Ella', 1950, 'F', 1380), +(64027, 'Eleanor', 1950, 'F', 1373), +(64028, 'Maryann', 1950, 'F', 1354), +(64029, 'Willie', 1950, 'F', 1341), +(64030, 'Lillie', 1950, 'F', 1322), +(64031, 'Billie', 1950, 'F', 1316), +(64032, 'Emily', 1950, 'F', 1316), +(64033, 'Lana', 1950, 'F', 1315), +(64034, 'Bernice', 1950, 'F', 1300), +(64035, 'Lucy', 1950, 'F', 1288), +(64036, 'Toni', 1950, 'F', 1280), +(64037, 'Jackie', 1950, 'F', 1276), +(64038, 'Faye', 1950, 'F', 1271), +(64039, 'Beatrice', 1950, 'F', 1269), +(64040, 'Marian', 1950, 'F', 1258), +(64041, 'Maxine', 1950, 'F', 1252), +(64042, 'Kristine', 1950, 'F', 1247), +(64043, 'Vicky', 1950, 'F', 1246), +(64044, 'Becky', 1950, 'F', 1236), +(64045, 'Ida', 1950, 'F', 1194), +(64046, 'Amy', 1950, 'F', 1186), +(64047, 'Hazel', 1950, 'F', 1180), +(64048, 'Lisa', 1950, 'F', 1177), +(64049, 'Debbie', 1950, 'F', 1164), +(64050, 'Melinda', 1950, 'F', 1162), +(64051, 'Lydia', 1950, 'F', 1127), +(64052, 'Francine', 1950, 'F', 1125), +(64053, 'Nora', 1950, 'F', 1118), +(64054, 'Vera', 1950, 'F', 1113), +(64055, 'Stella', 1950, 'F', 1112), +(64056, 'Terri', 1950, 'F', 1106), +(64057, 'Rosie', 1950, 'F', 1105), +(64058, 'Mona', 1950, 'F', 1085), +(64059, 'Monica', 1950, 'F', 1057), +(64060, 'Alma', 1950, 'F', 1052), +(64061, 'Bernadette', 1950, 'F', 1042), +(64062, 'Claire', 1950, 'F', 1039), +(64063, 'Ramona', 1950, 'F', 1035), +(64064, 'Myra', 1950, 'F', 1032), +(64065, 'Melanie', 1950, 'F', 1027), +(64066, 'Nina', 1950, 'F', 1007), +(64067, 'Iris', 1950, 'F', 988), +(64068, 'Melissa', 1950, 'F', 979), +(64069, 'Carrie', 1950, 'F', 975), +(64070, 'Shelia', 1950, 'F', 958), +(64071, 'Susie', 1950, 'F', 941), +(64072, 'Jessie', 1950, 'F', 937), +(64073, 'Trudy', 1950, 'F', 935), +(64074, 'Harriet', 1950, 'F', 934), +(64075, 'Mattie', 1950, 'F', 930), +(64076, 'Dana', 1950, 'F', 929), +(64077, 'Cecilia', 1950, 'F', 919), +(64078, 'Patty', 1950, 'F', 904), +(64079, 'Marguerite', 1950, 'F', 903), +(64080, 'Dora', 1950, 'F', 896), +(64081, 'Betsy', 1950, 'F', 891), +(64082, 'Deanna', 1950, 'F', 890), +(64083, 'Irma', 1950, 'F', 890), +(64084, 'Jeannette', 1950, 'F', 881), +(64085, 'Caroline', 1950, 'F', 880), +(64086, 'Minnie', 1950, 'F', 875), +(64087, 'Rosalie', 1950, 'F', 875), +(64088, 'Antoinette', 1950, 'F', 862), +(64089, 'Rosemarie', 1950, 'F', 849), +(64090, 'Deloris', 1950, 'F', 846), +(64091, 'Dale', 1950, 'F', 845), +(64092, 'Miriam', 1950, 'F', 841), +(64093, 'Johnnie', 1950, 'F', 835), +(64094, 'Holly', 1950, 'F', 834), +(64095, 'Velma', 1950, 'F', 827), +(64096, 'Lee', 1950, 'F', 818), +(64097, 'Lynette', 1950, 'F', 811), +(64098, 'Naomi', 1950, 'F', 794), +(64099, 'Bessie', 1950, 'F', 793), +(64100, 'Lucinda', 1950, 'F', 792), +(64101, 'Melody', 1950, 'F', 790), +(64102, 'Jeannie', 1950, 'F', 774), +(64103, 'Alicia', 1950, 'F', 769), +(64104, 'Cecelia', 1950, 'F', 769), +(64105, 'Olivia', 1950, 'F', 769), +(64106, 'Candice', 1950, 'F', 764), +(64107, 'Nadine', 1950, 'F', 762), +(64108, 'Cathleen', 1950, 'F', 758), +(64109, 'Laurel', 1950, 'F', 757), +(64110, 'Madeline', 1950, 'F', 757), +(64111, 'Doreen', 1950, 'F', 756), +(64112, 'Geneva', 1950, 'F', 756), +(64113, 'Nellie', 1950, 'F', 756), +(64114, 'Agnes', 1950, 'F', 748), +(64115, 'Cora', 1950, 'F', 737), +(64116, 'Mae', 1950, 'F', 737), +(64117, 'Jennie', 1950, 'F', 736), +(64118, 'Tina', 1950, 'F', 728), +(64119, 'Verna', 1950, 'F', 721), +(64120, 'Ernestine', 1950, 'F', 719), +(64121, 'Patti', 1950, 'F', 711), +(64122, 'Dixie', 1950, 'F', 687), +(64123, 'Elsie', 1950, 'F', 685), +(64124, 'Hilda', 1950, 'F', 683), +(64125, 'Leona', 1950, 'F', 681), +(64126, 'Marla', 1950, 'F', 681), +(64127, 'Roxanne', 1950, 'F', 681), +(64128, 'Marcella', 1950, 'F', 673), +(64129, 'Gale', 1950, 'F', 662), +(64130, 'Susanne', 1950, 'F', 659), +(64131, 'Ginger', 1950, 'F', 658), +(64132, 'Guadalupe', 1950, 'F', 658), +(64133, 'Penelope', 1950, 'F', 645), +(64134, 'Hattie', 1950, 'F', 641), +(64135, 'Cassandra', 1950, 'F', 640), +(64136, 'Kathie', 1950, 'F', 634), +(64137, 'Lena', 1950, 'F', 630), +(64138, 'Lola', 1950, 'F', 629), +(64139, 'Viola', 1950, 'F', 624), +(64140, 'Della', 1950, 'F', 620), +(64141, 'Margo', 1950, 'F', 615), +(64142, 'Gertrude', 1950, 'F', 612), +(64143, 'Alberta', 1950, 'F', 608), +(64144, 'Laverne', 1950, 'F', 607), +(64145, 'Glenna', 1950, 'F', 600), +(64146, 'Jayne', 1950, 'F', 596), +(64147, 'Karla', 1950, 'F', 592), +(64148, 'Pearl', 1950, 'F', 588), +(64149, 'Rosalind', 1950, 'F', 571), +(64150, 'Jenny', 1950, 'F', 568), +(64151, 'Darla', 1950, 'F', 566), +(64152, 'Molly', 1950, 'F', 565), +(64153, 'Therese', 1950, 'F', 555), +(64154, 'Janette', 1950, 'F', 551), +(64155, 'Flora', 1950, 'F', 548), +(64156, 'Noreen', 1950, 'F', 548), +(64157, 'Gretchen', 1950, 'F', 545), +(64158, 'Cheri', 1950, 'F', 543), +(64159, 'Erma', 1950, 'F', 543), +(64160, 'Eunice', 1950, 'F', 543), +(64161, 'Olga', 1950, 'F', 540), +(64162, 'Shari', 1950, 'F', 535), +(64163, 'Daisy', 1950, 'F', 533), +(64164, 'Celeste', 1950, 'F', 532), +(64165, 'Fannie', 1950, 'F', 532), +(64166, 'Lula', 1950, 'F', 532), +(64167, 'Sherrie', 1950, 'F', 531), +(64168, 'Margarita', 1950, 'F', 530), +(64169, 'Eloise', 1950, 'F', 523), +(64170, 'Rochelle', 1950, 'F', 523), +(64171, 'Violet', 1950, 'F', 519), +(64172, 'Sandy', 1950, 'F', 515), +(64173, 'Lora', 1950, 'F', 514), +(64174, 'Patrice', 1950, 'F', 513), +(64175, 'Saundra', 1950, 'F', 511), +(64176, 'Corinne', 1950, 'F', 510), +(64177, 'Unknown', 1950, 'F', 510), +(64178, 'Celia', 1950, 'F', 508), +(64179, 'Helene', 1950, 'F', 506), +(64180, 'Katie', 1950, 'F', 506), +(64181, 'Roseann', 1950, 'F', 498), +(64182, 'Claudette', 1950, 'F', 490), +(64183, 'Sharron', 1950, 'F', 490), +(64184, 'Adrienne', 1950, 'F', 489), +(64185, 'Amelia', 1950, 'F', 483), +(64186, 'Rosetta', 1950, 'F', 483), +(64187, 'Gay', 1950, 'F', 482), +(64188, 'Bettye', 1950, 'F', 480), +(64189, 'Camille', 1950, 'F', 479), +(64190, 'Christy', 1950, 'F', 478), +(64191, 'Joanna', 1950, 'F', 478), +(64192, 'Kerry', 1950, 'F', 478), +(64193, 'Diann', 1950, 'F', 477), +(64194, 'Sallie', 1950, 'F', 475), +(64195, 'Hope', 1950, 'F', 474), +(64196, 'Sondra', 1950, 'F', 474), +(64197, 'Ada', 1950, 'F', 473), +(64198, 'Sherri', 1950, 'F', 469), +(64199, 'Jamie', 1950, 'F', 467), +(64200, 'Mamie', 1950, 'F', 465), +(64201, 'Lorna', 1950, 'F', 463), +(64202, 'Polly', 1950, 'F', 463), +(64203, 'Bette', 1950, 'F', 460), +(64204, 'Henrietta', 1950, 'F', 460), +(64205, 'Myrtle', 1950, 'F', 460), +(64206, 'Faith', 1950, 'F', 458), +(64207, 'Gwen', 1950, 'F', 458), +(64208, 'Ilene', 1950, 'F', 453), +(64209, 'Myrna', 1950, 'F', 448), +(64210, 'Kimberly', 1950, 'F', 445), +(64211, 'Maggie', 1950, 'F', 445), +(64212, 'Marta', 1950, 'F', 445), +(64213, 'Leah', 1950, 'F', 443), +(64214, 'Pat', 1950, 'F', 441), +(64215, 'Freda', 1950, 'F', 437), +(64216, 'Bettie', 1950, 'F', 436), +(64217, 'Frankie', 1950, 'F', 435), +(64218, 'Lenora', 1950, 'F', 434), +(64219, 'Adele', 1950, 'F', 433), +(64220, 'Jody', 1950, 'F', 433), +(64221, 'Lauren', 1950, 'F', 426), +(64222, 'Rosanne', 1950, 'F', 425), +(64223, 'Lou', 1950, 'F', 416), +(64224, 'Sheri', 1950, 'F', 413), +(64225, 'Cherie', 1950, 'F', 412), +(64226, 'Delia', 1950, 'F', 403), +(64227, 'Jessica', 1950, 'F', 402), +(64228, 'Earnestine', 1950, 'F', 400), +(64229, 'Estella', 1950, 'F', 395), +(64230, 'April', 1950, 'F', 394), +(64231, 'Melba', 1950, 'F', 394), +(64232, 'Jeri', 1950, 'F', 392), +(64233, 'Natalie', 1950, 'F', 390), +(64234, 'Genevieve', 1950, 'F', 387), +(64235, 'Tamara', 1950, 'F', 387), +(64236, 'Shannon', 1950, 'F', 382), +(64237, 'Marilynn', 1950, 'F', 380), +(64238, 'Amanda', 1950, 'F', 379), +(64239, 'Dona', 1950, 'F', 378), +(64240, 'Fay', 1950, 'F', 378), +(64241, 'Ruthie', 1950, 'F', 376), +(64242, 'Nelda', 1950, 'F', 375), +(64243, 'Katharine', 1950, 'F', 373), +(64244, 'Rena', 1950, 'F', 370), +(64245, 'Teri', 1950, 'F', 370), +(64246, 'Jeanie', 1950, 'F', 364), +(64247, 'Kaye', 1950, 'F', 364), +(64248, 'Nanette', 1950, 'F', 363), +(64249, 'Isabel', 1950, 'F', 362), +(64250, 'Reba', 1950, 'F', 361), +(64251, 'Karin', 1950, 'F', 360), +(64252, 'Nona', 1950, 'F', 359), +(64253, 'Kristin', 1950, 'F', 357), +(64254, 'Mable', 1950, 'F', 357), +(64255, 'Tanya', 1950, 'F', 354), +(64256, 'Jerry', 1950, 'F', 353), +(64257, 'Alison', 1950, 'F', 352), +(64258, 'Jolene', 1950, 'F', 352), +(64259, 'Lila', 1950, 'F', 351), +(64260, 'Eugenia', 1950, 'F', 350), +(64261, 'Inez', 1950, 'F', 350), +(64262, 'Coleen', 1950, 'F', 349), +(64263, 'Rosalyn', 1950, 'F', 349), +(64264, 'Sonja', 1950, 'F', 345), +(64265, 'Debora', 1950, 'F', 341), +(64266, 'Earlene', 1950, 'F', 336), +(64267, 'Gracie', 1950, 'F', 335), +(64268, 'Robyn', 1950, 'F', 334), +(64269, 'Shelly', 1950, 'F', 334), +(64270, 'Sonia', 1950, 'F', 332), +(64271, 'Maryanne', 1950, 'F', 331), +(64272, 'Carlene', 1950, 'F', 330), +(64273, 'Muriel', 1950, 'F', 330), +(64274, 'Janine', 1950, 'F', 328), +(64275, 'Robbie', 1950, 'F', 326), +(64276, 'Dee', 1950, 'F', 323), +(64277, 'Ladonna', 1950, 'F', 322), +(64278, 'Terrie', 1950, 'F', 321), +(64279, 'Cathryn', 1950, 'F', 320), +(64280, 'Crystal', 1950, 'F', 319), +(64281, 'Jeannine', 1950, 'F', 319), +(64282, 'Yvette', 1950, 'F', 318), +(64283, 'Ronda', 1950, 'F', 317), +(64284, 'Marva', 1950, 'F', 316), +(64285, 'Rae', 1950, 'F', 316), +(64286, 'Sadie', 1950, 'F', 315), +(64287, 'Essie', 1950, 'F', 312), +(64288, 'Heather', 1950, 'F', 310), +(64289, 'Althea', 1950, 'F', 309), +(64290, 'Antonia', 1950, 'F', 309), +(64291, 'Dorothea', 1950, 'F', 308), +(64292, 'Blanche', 1950, 'F', 307), +(64293, 'Jana', 1950, 'F', 306), +(64294, 'Lorene', 1950, 'F', 305), +(64295, 'Meredith', 1950, 'F', 305), +(64296, 'Ollie', 1950, 'F', 305), +(64297, 'Ava', 1950, 'F', 299), +(64298, 'Winifred', 1950, 'F', 297), +(64299, 'Jewel', 1950, 'F', 296), +(64300, 'Christie', 1950, 'F', 295), +(64301, 'Rosalinda', 1950, 'F', 293), +(64302, 'Merry', 1950, 'F', 292), +(64303, 'Nettie', 1950, 'F', 292), +(64304, 'Lenore', 1950, 'F', 291), +(64305, 'Etta', 1950, 'F', 289), +(64306, 'Beulah', 1950, 'F', 288), +(64307, 'Bernadine', 1950, 'F', 287), +(64308, 'Eula', 1950, 'F', 287), +(64309, 'Kim', 1950, 'F', 285), +(64310, 'Beverley', 1950, 'F', 283), +(64311, 'Kristina', 1950, 'F', 282), +(64312, 'Rhoda', 1950, 'F', 279), +(64313, 'Lavonne', 1950, 'F', 278), +(64314, 'Jimmie', 1950, 'F', 276), +(64315, 'Janelle', 1950, 'F', 275), +(64316, 'Roseanna', 1950, 'F', 274), +(64317, 'Candy', 1950, 'F', 272), +(64318, 'Ora', 1950, 'F', 271), +(64319, 'Roslyn', 1950, 'F', 271), +(64320, 'Angelina', 1950, 'F', 267), +(64321, 'Marietta', 1950, 'F', 267), +(64322, 'Ina', 1950, 'F', 266), +(64323, 'Lela', 1950, 'F', 266), +(64324, 'Clare', 1950, 'F', 265), +(64325, 'Dolly', 1950, 'F', 263), +(64326, 'Jeanine', 1950, 'F', 262), +(64327, 'Marylou', 1950, 'F', 262), +(64328, 'Lynnette', 1950, 'F', 260), +(64329, 'Maryellen', 1950, 'F', 259), +(64330, 'Elena', 1950, 'F', 258), +(64331, 'Georgette', 1950, 'F', 257), +(64332, 'Pearlie', 1950, 'F', 257), +(64333, 'Sharlene', 1950, 'F', 257), +(64334, 'Tommie', 1950, 'F', 257), +(64335, 'Willa', 1950, 'F', 256), +(64336, 'Francis', 1950, 'F', 254), +(64337, 'Jannie', 1950, 'F', 254), +(64338, 'Lesley', 1950, 'F', 254), +(64339, 'Daphne', 1950, 'F', 253), +(64340, 'Delois', 1950, 'F', 252), +(64341, 'Harriett', 1950, 'F', 252), +(64342, 'James', 1950, 'F', 252), +(64343, 'Lupe', 1950, 'F', 252), +(64344, 'Dinah', 1950, 'F', 248), +(64345, 'Heidi', 1950, 'F', 248), +(64346, 'Madelyn', 1950, 'F', 248), +(64347, 'Shelby', 1950, 'F', 248), +(64348, 'Cherry', 1950, 'F', 247), +(64349, 'Nola', 1950, 'F', 247), +(64350, 'Suzan', 1950, 'F', 247), +(64351, 'Nita', 1950, 'F', 246), +(64352, 'Addie', 1950, 'F', 245), +(64353, 'Josie', 1950, 'F', 245), +(64354, 'Angie', 1950, 'F', 244), +(64355, 'Johanna', 1950, 'F', 244), +(64356, 'Nikki', 1950, 'F', 244), +(64357, 'Queen', 1950, 'F', 244), +(64358, 'Clarice', 1950, 'F', 243), +(64359, 'Earline', 1950, 'F', 243), +(64360, 'Leola', 1950, 'F', 243), +(64361, 'Sharyn', 1950, 'F', 243), +(64362, 'Cathie', 1950, 'F', 242), +(64363, 'Julianne', 1950, 'F', 242), +(64364, 'Lizzie', 1950, 'F', 242), +(64365, 'Estelle', 1950, 'F', 241), +(64366, 'Gayla', 1950, 'F', 237), +(64367, 'Jacque', 1950, 'F', 236), +(64368, 'Sherrill', 1950, 'F', 233), +(64369, 'Gilda', 1950, 'F', 232), +(64370, 'Alexis', 1950, 'F', 230), +(64371, 'Consuelo', 1950, 'F', 230), +(64372, 'Dorthy', 1950, 'F', 230), +(64373, 'Elvira', 1950, 'F', 230), +(64374, 'Fern', 1950, 'F', 228), +(64375, 'Mabel', 1950, 'F', 228), +(64376, 'Pam', 1950, 'F', 228), +(64377, 'Roseanne', 1950, 'F', 228), +(64378, 'Kitty', 1950, 'F', 227), +(64379, 'Bridget', 1950, 'F', 226), +(64380, 'Mari', 1950, 'F', 226), +(64381, 'Patrica', 1950, 'F', 226), +(64382, 'Elva', 1950, 'F', 225), +(64383, 'Malinda', 1950, 'F', 224), +(64384, 'Ana', 1950, 'F', 223), +(64385, 'Arleen', 1950, 'F', 222), +(64386, 'Rene', 1950, 'F', 222), +(64387, 'Jewell', 1950, 'F', 221), +(64388, 'Karon', 1950, 'F', 221), +(64389, 'Edwina', 1950, 'F', 220), +(64390, 'Marcy', 1950, 'F', 220), +(64391, 'Melva', 1950, 'F', 220), +(64392, 'Chris', 1950, 'F', 219), +(64393, 'Rosanna', 1950, 'F', 219), +(64394, 'Helena', 1950, 'F', 218), +(64395, 'Suzette', 1950, 'F', 218), +(64396, 'Aurora', 1950, 'F', 217), +(64397, 'Ola', 1950, 'F', 216), +(64398, 'Mollie', 1950, 'F', 214), +(64399, 'Valorie', 1950, 'F', 213), +(64400, 'Cheryle', 1950, 'F', 212), +(64401, 'Debby', 1950, 'F', 212), +(64402, 'Lottie', 1950, 'F', 212), +(64403, 'Mickey', 1950, 'F', 211), +(64404, 'Eddie', 1950, 'F', 210), +(64405, 'Barbra', 1950, 'F', 209), +(64406, 'Iva', 1950, 'F', 209), +(64407, 'Lucia', 1950, 'F', 209), +(64408, 'Mavis', 1950, 'F', 209), +(64409, 'Roxie', 1950, 'F', 209), +(64410, 'Alyce', 1950, 'F', 208), +(64411, 'Sybil', 1950, 'F', 208), +(64412, 'Cornelia', 1950, 'F', 207), +(64413, 'Corrine', 1950, 'F', 207), +(64414, 'Sonya', 1950, 'F', 207), +(64415, 'Karyn', 1950, 'F', 206), +(64416, 'Dena', 1950, 'F', 205), +(64417, 'Opal', 1950, 'F', 205), +(64418, 'Ronnie', 1950, 'F', 205), +(64419, 'Joe', 1950, 'F', 204), +(64420, 'Valarie', 1950, 'F', 204), +(64421, 'Nan', 1950, 'F', 203), +(64422, 'Robert', 1950, 'F', 203), +(64423, 'Sydney', 1950, 'F', 202), +(64424, 'Colette', 1950, 'F', 201), +(64425, 'Karol', 1950, 'F', 200), +(64426, 'Randy', 1950, 'F', 200), +(64427, 'Alfreda', 1950, 'F', 199), +(64428, 'Jerri', 1950, 'F', 198), +(64429, 'Cecile', 1950, 'F', 196), +(64430, 'Katrina', 1950, 'F', 193), +(64431, 'Leanne', 1950, 'F', 193), +(64432, 'Blanca', 1950, 'F', 191), +(64433, 'Benita', 1950, 'F', 190), +(64434, 'Kathrine', 1950, 'F', 190), +(64435, 'Portia', 1950, 'F', 190), +(64436, 'Jacalyn', 1950, 'F', 189), +(64437, 'Randi', 1950, 'F', 189), +(64438, 'Charleen', 1950, 'F', 188), +(64439, 'Freddie', 1950, 'F', 188), +(64440, 'Retha', 1950, 'F', 188), +(64441, 'Elisabeth', 1950, 'F', 187), +(64442, 'Elise', 1950, 'F', 187), +(64443, 'Lori', 1950, 'F', 187), +(64444, 'Effie', 1950, 'F', 186), +(64445, 'Juana', 1950, 'F', 186), +(64446, 'Madeleine', 1950, 'F', 186), +(64447, 'Pamala', 1950, 'F', 186), +(64448, 'Gina', 1950, 'F', 185), +(64449, 'Josefina', 1950, 'F', 185), +(64450, 'Margery', 1950, 'F', 184), +(64451, 'May', 1950, 'F', 184), +(64452, 'Alana', 1950, 'F', 183), +(64453, 'Aleta', 1950, 'F', 183), +(64454, 'Celestine', 1950, 'F', 183), +(64455, 'Cinda', 1950, 'F', 183), +(64456, 'Lyn', 1950, 'F', 183), +(64457, 'Millie', 1950, 'F', 183), +(64458, 'Carmela', 1950, 'F', 182), +(64459, 'Elnora', 1950, 'F', 182), +(64460, 'Marlys', 1950, 'F', 182), +(64461, 'Peggie', 1950, 'F', 182), +(64462, 'Frieda', 1950, 'F', 181), +(64463, 'Loraine', 1950, 'F', 181), +(64464, 'Dian', 1950, 'F', 180), +(64465, 'John', 1950, 'F', 180), +(64466, 'Carlotta', 1950, 'F', 179), +(64467, 'Madonna', 1950, 'F', 179), +(64468, 'Maryjane', 1950, 'F', 179), +(64469, 'Mercedes', 1950, 'F', 179), +(64470, 'Michael', 1950, 'F', 179), +(64471, 'Freida', 1950, 'F', 178), +(64472, 'Katheryn', 1950, 'F', 178), +(64473, 'Tracy', 1950, 'F', 178), +(64474, 'Ester', 1950, 'F', 177), +(64475, 'Alta', 1950, 'F', 175), +(64476, 'Judi', 1950, 'F', 175), +(64477, 'Valeria', 1950, 'F', 175), +(64478, 'Caryn', 1950, 'F', 173), +(64479, 'Dollie', 1950, 'F', 172), +(64480, 'Ophelia', 1950, 'F', 172), +(64481, 'Caren', 1950, 'F', 171), +(64482, 'Darleen', 1950, 'F', 171), +(64483, 'Roxann', 1950, 'F', 171), +(64484, 'Sherryl', 1950, 'F', 170), +(64485, 'Leigh', 1950, 'F', 169), +(64486, 'Reva', 1950, 'F', 169), +(64487, 'Leila', 1950, 'F', 168), +(64488, 'Esperanza', 1950, 'F', 167), +(64489, 'Kristi', 1950, 'F', 167), +(64490, 'Louella', 1950, 'F', 167), +(64491, 'Caryl', 1950, 'F', 166), +(64492, 'Reta', 1950, 'F', 166), +(64493, 'Daryl', 1950, 'F', 165), +(64494, 'Hannah', 1950, 'F', 165), +(64495, 'Leanna', 1950, 'F', 163), +(64496, 'Aileen', 1950, 'F', 160), +(64497, 'Letha', 1950, 'F', 160), +(64498, 'Sharman', 1950, 'F', 160), +(64499, 'Dottie', 1950, 'F', 159), +(64500, 'Ivy', 1950, 'F', 159), +(64501, 'Kathi', 1950, 'F', 159), +(64502, 'Shirlene', 1950, 'F', 159), +(64503, 'Virgie', 1950, 'F', 159), +(64504, 'Carmella', 1950, 'F', 158), +(64505, 'Jacklyn', 1950, 'F', 158), +(64506, 'Janell', 1950, 'F', 158), +(64507, 'Kristen', 1950, 'F', 158), +(64508, 'Nanci', 1950, 'F', 158), +(64509, 'Angeline', 1950, 'F', 157), +(64510, 'Annmarie', 1950, 'F', 157), +(64511, 'Cleo', 1950, 'F', 157), +(64512, 'Leann', 1950, 'F', 157), +(64513, 'Nell', 1950, 'F', 157), +(64514, 'Vickey', 1950, 'F', 157), +(64515, 'Allison', 1950, 'F', 156), +(64516, 'Gaye', 1950, 'F', 156), +(64517, 'Camilla', 1950, 'F', 155), +(64518, 'Charles', 1950, 'F', 155), +(64519, 'Doretha', 1950, 'F', 155), +(64520, 'Felicia', 1950, 'F', 155), +(64521, 'Neva', 1950, 'F', 155), +(64522, 'Elsa', 1950, 'F', 154), +(64523, 'Gerry', 1950, 'F', 154), +(64524, 'Debrah', 1950, 'F', 153), +(64525, 'Tonya', 1950, 'F', 153), +(64526, 'Charmaine', 1950, 'F', 152), +(64527, 'Deanne', 1950, 'F', 151), +(64528, 'Deidre', 1950, 'F', 150), +(64529, 'Ruthann', 1950, 'F', 150), +(64530, 'Avis', 1950, 'F', 149), +(64531, 'Imogene', 1950, 'F', 149), +(64532, 'Lea', 1950, 'F', 149), +(64533, 'Roxanna', 1950, 'F', 149), +(64534, 'Sharen', 1950, 'F', 149), +(64535, 'Twila', 1950, 'F', 148), +(64536, 'Oralia', 1950, 'F', 146), +(64537, 'Susanna', 1950, 'F', 146), +(64538, 'Vikki', 1950, 'F', 146), +(64539, 'Beryl', 1950, 'F', 145), +(64540, 'Deirdre', 1950, 'F', 145), +(64541, 'Goldie', 1950, 'F', 145), +(64542, 'Marilee', 1950, 'F', 145), +(64543, 'Minerva', 1950, 'F', 145), +(64544, 'Denice', 1950, 'F', 144), +(64545, 'Greta', 1950, 'F', 143), +(64546, 'Carleen', 1950, 'F', 142), +(64547, 'Catharine', 1950, 'F', 142), +(64548, 'Elma', 1950, 'F', 142), +(64549, 'Merle', 1950, 'F', 141), +(64550, 'Vonda', 1950, 'F', 141), +(64551, 'Luann', 1950, 'F', 140), +(64552, 'Matilda', 1950, 'F', 140), +(64553, 'Carolann', 1950, 'F', 139), +(64554, 'Luanne', 1950, 'F', 139), +(64555, 'Vernell', 1950, 'F', 139), +(64556, 'Lilly', 1950, 'F', 138), +(64557, 'Louisa', 1950, 'F', 138), +(64558, 'Mariann', 1950, 'F', 138), +(64559, 'Nedra', 1950, 'F', 138), +(64560, 'Corliss', 1950, 'F', 137), +(64561, 'Ingrid', 1950, 'F', 137), +(64562, 'Jocelyn', 1950, 'F', 137), +(64563, 'Leta', 1950, 'F', 137), +(64564, 'Lorena', 1950, 'F', 137), +(64565, 'Odessa', 1950, 'F', 137), +(64566, 'Elouise', 1950, 'F', 136), +(64567, 'Georgianna', 1950, 'F', 136), +(64568, 'David', 1950, 'F', 135), +(64569, 'Evangeline', 1950, 'F', 135), +(64570, 'Lily', 1950, 'F', 135), +(64571, 'Clementine', 1950, 'F', 134), +(64572, 'Lucretia', 1950, 'F', 134), +(64573, 'Dorene', 1950, 'F', 133), +(64574, 'Erlinda', 1950, 'F', 133), +(64575, 'Ila', 1950, 'F', 133), +(64576, 'Kathaleen', 1950, 'F', 133), +(64577, 'Laureen', 1950, 'F', 133), +(64578, 'Angelita', 1950, 'F', 132), +(64579, 'Concetta', 1950, 'F', 132), +(64580, 'Delilah', 1950, 'F', 132), +(64581, 'Lonnie', 1950, 'F', 132), +(64582, 'Rosella', 1950, 'F', 132), +(64583, 'Tana', 1950, 'F', 132), +(64584, 'Carroll', 1950, 'F', 131), +(64585, 'Margret', 1950, 'F', 131), +(64586, 'Petra', 1950, 'F', 131), +(64587, 'Bobby', 1950, 'F', 130), +(64588, 'Cassie', 1950, 'F', 130), +(64589, 'Lona', 1950, 'F', 130), +(64590, 'Winnie', 1950, 'F', 130), +(64591, 'Lauretta', 1950, 'F', 129), +(64592, 'Sanjuanita', 1950, 'F', 129), +(64593, 'Callie', 1950, 'F', 128), +(64594, 'Darcy', 1950, 'F', 128), +(64595, 'Georgina', 1950, 'F', 128), +(64596, 'Deena', 1950, 'F', 127), +(64597, 'Luella', 1950, 'F', 127), +(64598, 'Marina', 1950, 'F', 127), +(64599, 'Mindy', 1950, 'F', 127), +(64600, 'William', 1950, 'F', 126), +(64601, 'Manuela', 1950, 'F', 125), +(64602, 'Marleen', 1950, 'F', 125), +(64603, 'Ronna', 1950, 'F', 125), +(64604, 'Shauna', 1950, 'F', 125), +(64605, 'Charla', 1950, 'F', 124), +(64606, 'Glinda', 1950, 'F', 124), +(64607, 'Maryjo', 1950, 'F', 124), +(64608, 'Meryl', 1950, 'F', 124), +(64609, 'Suellen', 1950, 'F', 124), +(64610, 'Joellen', 1950, 'F', 123), +(64611, 'Nannette', 1950, 'F', 123), +(64612, 'Wilhelmina', 1950, 'F', 123), +(64613, 'Adela', 1950, 'F', 122), +(64614, 'Jacquline', 1950, 'F', 122), +(64615, 'Justine', 1950, 'F', 122), +(64616, 'Bennie', 1950, 'F', 121), +(64617, 'Eliza', 1950, 'F', 121), +(64618, 'Graciela', 1950, 'F', 121), +(64619, 'Zelma', 1950, 'F', 121), +(64620, 'Kathlene', 1950, 'F', 120), +(64621, 'Winona', 1950, 'F', 120), +(64622, 'Corine', 1950, 'F', 119), +(64623, 'Georgene', 1950, 'F', 119), +(64624, 'Judie', 1950, 'F', 119), +(64625, 'Libby', 1950, 'F', 119), +(64626, 'Pattie', 1950, 'F', 119), +(64627, 'Elida', 1950, 'F', 118), +(64628, 'Florine', 1950, 'F', 118), +(64629, 'Kristie', 1950, 'F', 118), +(64630, 'Letitia', 1950, 'F', 118), +(64631, 'Wilda', 1950, 'F', 118), +(64632, 'Bethany', 1950, 'F', 117), +(64633, 'Cathrine', 1950, 'F', 117), +(64634, 'Deana', 1950, 'F', 117), +(64635, 'Erica', 1950, 'F', 117), +(64636, 'Shawn', 1950, 'F', 117), +(64637, 'Alexandra', 1950, 'F', 116), +(64638, 'Lindsay', 1950, 'F', 116), +(64639, 'Rosario', 1950, 'F', 116), +(64640, 'Sophie', 1950, 'F', 116), +(64641, 'Suzann', 1950, 'F', 116), +(64642, 'Elisa', 1950, 'F', 115), +(64643, 'Jacquelin', 1950, 'F', 115), +(64644, 'Jonnie', 1950, 'F', 115), +(64645, 'Rosita', 1950, 'F', 115), +(64646, 'Ardith', 1950, 'F', 114), +(64647, 'Maribeth', 1950, 'F', 114), +(64648, 'Ofelia', 1950, 'F', 114), +(64649, 'Renae', 1950, 'F', 114), +(64650, 'Susann', 1950, 'F', 114), +(64651, 'Adeline', 1950, 'F', 112), +(64652, 'George', 1950, 'F', 112), +(64653, 'Mickie', 1950, 'F', 112), +(64654, 'Treva', 1950, 'F', 112), +(64655, 'Abigail', 1950, 'F', 111), +(64656, 'Jerrie', 1950, 'F', 111), +(64657, 'Krista', 1950, 'F', 111), +(64658, 'Rhea', 1950, 'F', 111), +(64659, 'Rona', 1950, 'F', 111), +(64660, 'Toby', 1950, 'F', 111), +(64661, 'Annetta', 1950, 'F', 110), +(64662, 'Danna', 1950, 'F', 110), +(64663, 'Dina', 1950, 'F', 110), +(64664, 'Lelia', 1950, 'F', 110), +(64665, 'Marcie', 1950, 'F', 110), +(64666, 'Martina', 1950, 'F', 110), +(64667, 'Rachelle', 1950, 'F', 110), +(64668, 'Raquel', 1950, 'F', 110), +(64669, 'Evangelina', 1950, 'F', 109), +(64670, 'Hilary', 1950, 'F', 109), +(64671, 'Janna', 1950, 'F', 109), +(64672, 'Kristy', 1950, 'F', 109), +(64673, 'Pansy', 1950, 'F', 109), +(64674, 'Rosalee', 1950, 'F', 109), +(64675, 'Sophia', 1950, 'F', 109), +(64676, 'Bonny', 1950, 'F', 108), +(64677, 'Carolynn', 1950, 'F', 108), +(64678, 'Estela', 1950, 'F', 108), +(64679, 'Eve', 1950, 'F', 108), +(64680, 'Kate', 1950, 'F', 108), +(64681, 'Leticia', 1950, 'F', 108), +(64682, 'Linnea', 1950, 'F', 108), +(64683, 'Marybeth', 1950, 'F', 108), +(64684, 'Aida', 1950, 'F', 107), +(64685, 'Elyse', 1950, 'F', 107), +(64686, 'Larry', 1950, 'F', 107), +(64687, 'Cathey', 1950, 'F', 106), +(64688, 'Claudine', 1950, 'F', 106), +(64689, 'Donita', 1950, 'F', 106), +(64690, 'Harriette', 1950, 'F', 106), +(64691, 'Juliana', 1950, 'F', 106), +(64692, 'Karan', 1950, 'F', 106), +(64693, 'Sanjuana', 1950, 'F', 106), +(64694, 'Nicki', 1950, 'F', 105), +(64695, 'Sherilyn', 1950, 'F', 105), +(64696, 'Twyla', 1950, 'F', 105), +(64697, 'Delphine', 1950, 'F', 104), +(64698, 'Kris', 1950, 'F', 104), +(64699, 'Lorrie', 1950, 'F', 104), +(64700, 'Selma', 1950, 'F', 104), +(64701, 'Theodora', 1950, 'F', 104), +(64702, 'Carolina', 1950, 'F', 103), +(64703, 'Charlie', 1950, 'F', 103), +(64704, 'Herlinda', 1950, 'F', 103), +(64705, 'Isabelle', 1950, 'F', 103), +(64706, 'Millicent', 1950, 'F', 103), +(64707, 'Adrian', 1950, 'F', 102), +(64708, 'Kathlyn', 1950, 'F', 102), +(64709, 'Kyle', 1950, 'F', 102), +(64710, 'Lessie', 1950, 'F', 102), +(64711, 'Lizabeth', 1950, 'F', 102), +(64712, 'Tara', 1950, 'F', 102), +(64713, 'Georgiana', 1950, 'F', 101), +(64714, 'Hester', 1950, 'F', 101), +(64715, 'Mitzi', 1950, 'F', 101), +(64716, 'Nancie', 1950, 'F', 101), +(64717, 'Zelda', 1950, 'F', 101), +(64718, 'Annabelle', 1950, 'F', 100), +(64719, 'James', 1950, 'M', 86221), +(64720, 'Robert', 1950, 'M', 83540), +(64721, 'John', 1950, 'M', 79410), +(64722, 'Michael', 1950, 'M', 65154), +(64723, 'David', 1950, 'M', 60733), +(64724, 'William', 1950, 'M', 60701), +(64725, 'Richard', 1950, 'M', 51009), +(64726, 'Thomas', 1950, 'M', 45620), +(64727, 'Charles', 1950, 'M', 39104), +(64728, 'Gary', 1950, 'M', 33753), +(64729, 'Larry', 1950, 'M', 31488), +(64730, 'Ronald', 1950, 'M', 29924), +(64731, 'Joseph', 1950, 'M', 27033), +(64732, 'Donald', 1950, 'M', 26977), +(64733, 'Kenneth', 1950, 'M', 23825), +(64734, 'Steven', 1950, 'M', 23257), +(64735, 'Dennis', 1950, 'M', 22842), +(64736, 'Paul', 1950, 'M', 21754), +(64737, 'Stephen', 1950, 'M', 20517), +(64738, 'George', 1950, 'M', 20172), +(64739, 'Daniel', 1950, 'M', 19184), +(64740, 'Edward', 1950, 'M', 18725), +(64741, 'Mark', 1950, 'M', 16615), +(64742, 'Jerry', 1950, 'M', 15260), +(64743, 'Gregory', 1950, 'M', 13311), +(64744, 'Bruce', 1950, 'M', 12667), +(64745, 'Roger', 1950, 'M', 12548), +(64746, 'Douglas', 1950, 'M', 12265), +(64747, 'Frank', 1950, 'M', 11615), +(64748, 'Terry', 1950, 'M', 11432), +(64749, 'Raymond', 1950, 'M', 11168), +(64750, 'Timothy', 1950, 'M', 10494), +(64751, 'Lawrence', 1950, 'M', 10185), +(64752, 'Gerald', 1950, 'M', 9723), +(64753, 'Wayne', 1950, 'M', 9266), +(64754, 'Anthony', 1950, 'M', 8621), +(64755, 'Peter', 1950, 'M', 8367), +(64756, 'Patrick', 1950, 'M', 8186), +(64757, 'Danny', 1950, 'M', 8150), +(64758, 'Walter', 1950, 'M', 7792), +(64759, 'Alan', 1950, 'M', 7735), +(64760, 'Willie', 1950, 'M', 7723), +(64761, 'Jeffrey', 1950, 'M', 7646), +(64762, 'Carl', 1950, 'M', 7286), +(64763, 'Harold', 1950, 'M', 7220), +(64764, 'Arthur', 1950, 'M', 7158), +(64765, 'Henry', 1950, 'M', 6968), +(64766, 'Jack', 1950, 'M', 6845), +(64767, 'Dale', 1950, 'M', 6780), +(64768, 'Johnny', 1950, 'M', 6587), +(64769, 'Roy', 1950, 'M', 6458), +(64770, 'Ralph', 1950, 'M', 6409), +(64771, 'Philip', 1950, 'M', 6073), +(64772, 'Joe', 1950, 'M', 6035), +(64773, 'Jimmy', 1950, 'M', 5761), +(64774, 'Albert', 1950, 'M', 5758), +(64775, 'Billy', 1950, 'M', 5674), +(64776, 'Eugene', 1950, 'M', 5487), +(64777, 'Glenn', 1950, 'M', 5467), +(64778, 'Stanley', 1950, 'M', 5448), +(64779, 'Harry', 1950, 'M', 5374), +(64780, 'Samuel', 1950, 'M', 5234), +(64781, 'Howard', 1950, 'M', 5172), +(64782, 'Phillip', 1950, 'M', 5056), +(64783, 'Bobby', 1950, 'M', 5023), +(64784, 'Louis', 1950, 'M', 4951), +(64785, 'Russell', 1950, 'M', 4941), +(64786, 'Andrew', 1950, 'M', 4931), +(64787, 'Craig', 1950, 'M', 4892), +(64788, 'Randall', 1950, 'M', 4844), +(64789, 'Allen', 1950, 'M', 4838), +(64790, 'Christopher', 1950, 'M', 4831), +(64791, 'Kevin', 1950, 'M', 4761), +(64792, 'Barry', 1950, 'M', 4693), +(64793, 'Frederick', 1950, 'M', 4660), +(64794, 'Ronnie', 1950, 'M', 4612), +(64795, 'Leonard', 1950, 'M', 4583), +(64796, 'Keith', 1950, 'M', 4570), +(64797, 'Brian', 1950, 'M', 4451), +(64798, 'Randy', 1950, 'M', 4360), +(64799, 'Ernest', 1950, 'M', 4309), +(64800, 'Scott', 1950, 'M', 4269), +(64801, 'Steve', 1950, 'M', 4202), +(64802, 'Fred', 1950, 'M', 4199), +(64803, 'Martin', 1950, 'M', 4185), +(64804, 'Francis', 1950, 'M', 4080), +(64805, 'Melvin', 1950, 'M', 3884), +(64806, 'Rodney', 1950, 'M', 3855), +(64807, 'Eddie', 1950, 'M', 3763), +(64808, 'Norman', 1950, 'M', 3639), +(64809, 'Lee', 1950, 'M', 3606), +(64810, 'Earl', 1950, 'M', 3590), +(64811, 'Marvin', 1950, 'M', 3496), +(64812, 'Tommy', 1950, 'M', 3434), +(64813, 'Clarence', 1950, 'M', 3342), +(64814, 'Alfred', 1950, 'M', 3228), +(64815, 'Curtis', 1950, 'M', 3208), +(64816, 'Eric', 1950, 'M', 3097), +(64817, 'Theodore', 1950, 'M', 2958), +(64818, 'Clifford', 1950, 'M', 2944), +(64819, 'Vincent', 1950, 'M', 2925), +(64820, 'Leroy', 1950, 'M', 2839), +(64821, 'Micheal', 1950, 'M', 2827), +(64822, 'Jerome', 1950, 'M', 2824), +(64823, 'Calvin', 1950, 'M', 2746), +(64824, 'Don', 1950, 'M', 2713), +(64825, 'Victor', 1950, 'M', 2713), +(64826, 'Gordon', 1950, 'M', 2691), +(64827, 'Bernard', 1950, 'M', 2646), +(64828, 'Jose', 1950, 'M', 2637), +(64829, 'Ray', 1950, 'M', 2632), +(64830, 'Herbert', 1950, 'M', 2628), +(64831, 'Mike', 1950, 'M', 2613), +(64832, 'Jesse', 1950, 'M', 2608), +(64833, 'Jay', 1950, 'M', 2579), +(64834, 'Darrell', 1950, 'M', 2498), +(64835, 'Edwin', 1950, 'M', 2489), +(64836, 'Warren', 1950, 'M', 2473), +(64837, 'Leon', 1950, 'M', 2431), +(64838, 'Dean', 1950, 'M', 2335), +(64839, 'Alvin', 1950, 'M', 2270), +(64840, 'Gene', 1950, 'M', 2248), +(64841, 'Benjamin', 1950, 'M', 2190), +(64842, 'Nicholas', 1950, 'M', 2180), +(64843, 'Glen', 1950, 'M', 2173), +(64844, 'Leslie', 1950, 'M', 2136), +(64845, 'Lloyd', 1950, 'M', 2119), +(64846, 'Ricky', 1950, 'M', 2111), +(64847, 'Dan', 1950, 'M', 2078), +(64848, 'Joel', 1950, 'M', 2044), +(64849, 'Bill', 1950, 'M', 2038), +(64850, 'Juan', 1950, 'M', 2028), +(64851, 'Lewis', 1950, 'M', 2028), +(64852, 'Vernon', 1950, 'M', 2007), +(64853, 'Lonnie', 1950, 'M', 2003), +(64854, 'Clyde', 1950, 'M', 1987), +(64855, 'Duane', 1950, 'M', 1961), +(64856, 'Jon', 1950, 'M', 1943), +(64857, 'Jim', 1950, 'M', 1928), +(64858, 'Jackie', 1950, 'M', 1921), +(64859, 'Jimmie', 1950, 'M', 1901), +(64860, 'Floyd', 1950, 'M', 1892), +(64861, 'Allan', 1950, 'M', 1891), +(64862, 'Gilbert', 1950, 'M', 1883), +(64863, 'Tom', 1950, 'M', 1824), +(64864, 'Dwight', 1950, 'M', 1812), +(64865, 'Harvey', 1950, 'M', 1812), +(64866, 'Lester', 1950, 'M', 1762), +(64867, 'Tony', 1950, 'M', 1758), +(64868, 'Donnie', 1950, 'M', 1724), +(64869, 'Charlie', 1950, 'M', 1676), +(64870, 'Bradley', 1950, 'M', 1633), +(64871, 'Franklin', 1950, 'M', 1625), +(64872, 'Lynn', 1950, 'M', 1625), +(64873, 'Freddie', 1950, 'M', 1617), +(64874, 'Neil', 1950, 'M', 1605), +(64875, 'Johnnie', 1950, 'M', 1591), +(64876, 'Manuel', 1950, 'M', 1579), +(64877, 'Herman', 1950, 'M', 1563), +(64878, 'Leo', 1950, 'M', 1554), +(64879, 'Milton', 1950, 'M', 1553), +(64880, 'Randolph', 1950, 'M', 1550), +(64881, 'Jonathan', 1950, 'M', 1539), +(64882, 'Garry', 1950, 'M', 1538), +(64883, 'Wesley', 1950, 'M', 1519), +(64884, 'Arnold', 1950, 'M', 1508), +(64885, 'Marc', 1950, 'M', 1507), +(64886, 'Rick', 1950, 'M', 1490), +(64887, 'Chester', 1950, 'M', 1379), +(64888, 'Ted', 1950, 'M', 1353), +(64889, 'Cecil', 1950, 'M', 1339), +(64890, 'Karl', 1950, 'M', 1305), +(64891, 'Matthew', 1950, 'M', 1304), +(64892, 'Reginald', 1950, 'M', 1304), +(64893, 'Rickey', 1950, 'M', 1302), +(64894, 'Terrence', 1950, 'M', 1269), +(64895, 'Claude', 1950, 'M', 1251), +(64896, 'Chris', 1950, 'M', 1244), +(64897, 'Guy', 1950, 'M', 1239), +(64898, 'Kent', 1950, 'M', 1231), +(64899, 'Nathaniel', 1950, 'M', 1229), +(64900, 'Mitchell', 1950, 'M', 1226), +(64901, 'Jeffery', 1950, 'M', 1218), +(64902, 'Dana', 1950, 'M', 1201), +(64903, 'Stuart', 1950, 'M', 1197), +(64904, 'Maurice', 1950, 'M', 1195), +(64905, 'Carlos', 1950, 'M', 1192), +(64906, 'Roland', 1950, 'M', 1190), +(64907, 'Alexander', 1950, 'M', 1165), +(64908, 'Gerard', 1950, 'M', 1164), +(64909, 'Fredrick', 1950, 'M', 1161), +(64910, 'Oscar', 1950, 'M', 1104), +(64911, 'Perry', 1950, 'M', 1096), +(64912, 'Marshall', 1950, 'M', 1081), +(64913, 'Sidney', 1950, 'M', 1077), +(64914, 'Rex', 1950, 'M', 1069), +(64915, 'Kerry', 1950, 'M', 1065), +(64916, 'Wallace', 1950, 'M', 1062), +(64917, 'Kirk', 1950, 'M', 1029), +(64918, 'Ruben', 1950, 'M', 1026), +(64919, 'Clifton', 1950, 'M', 1024), +(64920, 'Jessie', 1950, 'M', 1016), +(64921, 'Darryl', 1950, 'M', 1015), +(64922, 'Bob', 1950, 'M', 978), +(64923, 'Daryl', 1950, 'M', 976), +(64924, 'Hugh', 1950, 'M', 959), +(64925, 'Sam', 1950, 'M', 955), +(64926, 'Terrance', 1950, 'M', 954), +(64927, 'Edgar', 1950, 'M', 939), +(64928, 'Antonio', 1950, 'M', 923), +(64929, 'Morris', 1950, 'M', 916), +(64930, 'Brent', 1950, 'M', 908), +(64931, 'Earnest', 1950, 'M', 890), +(64932, 'Sammy', 1950, 'M', 887), +(64933, 'Dave', 1950, 'M', 876), +(64934, 'Benny', 1950, 'M', 874), +(64935, 'Neal', 1950, 'M', 846), +(64936, 'Willard', 1950, 'M', 843), +(64937, 'Wendell', 1950, 'M', 841), +(64938, 'Otis', 1950, 'M', 833), +(64939, 'Byron', 1950, 'M', 830), +(64940, 'Clinton', 1950, 'M', 828), +(64941, 'Lyle', 1950, 'M', 826), +(64942, 'Marion', 1950, 'M', 822), +(64943, 'Tyrone', 1950, 'M', 816), +(64944, 'Elmer', 1950, 'M', 807), +(64945, 'Laurence', 1950, 'M', 806), +(64946, 'Nelson', 1950, 'M', 805), +(64947, 'Greg', 1950, 'M', 803), +(64948, 'Aaron', 1950, 'M', 797), +(64949, 'Kim', 1950, 'M', 796), +(64950, 'Ira', 1950, 'M', 795), +(64951, 'Kurt', 1950, 'M', 790), +(64952, 'Virgil', 1950, 'M', 789), +(64953, 'Jesus', 1950, 'M', 781), +(64954, 'Ross', 1950, 'M', 769), +(64955, 'Luther', 1950, 'M', 764), +(64956, 'Bennie', 1950, 'M', 760), +(64957, 'Max', 1950, 'M', 757), +(64958, 'Rudolph', 1950, 'M', 756), +(64959, 'Tim', 1950, 'M', 755), +(64960, 'Clayton', 1950, 'M', 754), +(64961, 'Nathan', 1950, 'M', 752), +(64962, 'Everett', 1950, 'M', 750), +(64963, 'Alex', 1950, 'M', 749), +(64964, 'Mario', 1950, 'M', 744), +(64965, 'Robin', 1950, 'M', 739), +(64966, 'Bryan', 1950, 'M', 736), +(64967, 'Lance', 1950, 'M', 735), +(64968, 'Ben', 1950, 'M', 720), +(64969, 'Horace', 1950, 'M', 689), +(64970, 'Luis', 1950, 'M', 658), +(64971, 'Francisco', 1950, 'M', 649), +(64972, 'Frankie', 1950, 'M', 649), +(64973, 'Raul', 1950, 'M', 646), +(64974, 'Loren', 1950, 'M', 642), +(64975, 'Sylvester', 1950, 'M', 642), +(64976, 'Troy', 1950, 'M', 638), +(64977, 'Alton', 1950, 'M', 635), +(64978, 'Sherman', 1950, 'M', 635), +(64979, 'Gregg', 1950, 'M', 625), +(64980, 'Clark', 1950, 'M', 623), +(64981, 'Salvatore', 1950, 'M', 617), +(64982, 'Geoffrey', 1950, 'M', 614), +(64983, 'Rudy', 1950, 'M', 614), +(64984, 'Ricardo', 1950, 'M', 610), +(64985, 'Rodger', 1950, 'M', 608), +(64986, 'Jan', 1950, 'M', 607), +(64987, 'Hubert', 1950, 'M', 603), +(64988, 'Roberto', 1950, 'M', 597), +(64989, 'Tommie', 1950, 'M', 596), +(64990, 'Todd', 1950, 'M', 594), +(64991, 'Roosevelt', 1950, 'M', 585), +(64992, 'Wilbert', 1950, 'M', 577), +(64993, 'Bradford', 1950, 'M', 575), +(64994, 'Lowell', 1950, 'M', 572), +(64995, 'Delbert', 1950, 'M', 570), +(64996, 'Carlton', 1950, 'M', 569), +(64997, 'Ramon', 1950, 'M', 566), +(64998, 'Pete', 1950, 'M', 561), +(64999, 'Isaac', 1950, 'M', 560), +(65000, 'Leland', 1950, 'M', 560), +(65001, 'Marcus', 1950, 'M', 559), +(65002, 'Oliver', 1950, 'M', 556), +(65003, 'Edmund', 1950, 'M', 553), +(65004, 'Archie', 1950, 'M', 552), +(65005, 'Carroll', 1950, 'M', 552), +(65006, 'Homer', 1950, 'M', 552), +(65007, 'Teddy', 1950, 'M', 550), +(65008, 'Jeff', 1950, 'M', 541), +(65009, 'Malcolm', 1950, 'M', 539), +(65010, 'Pedro', 1950, 'M', 533), +(65011, 'Preston', 1950, 'M', 533), +(65012, 'Darrel', 1950, 'M', 530), +(65013, 'Myron', 1950, 'M', 530), +(65014, 'Monte', 1950, 'M', 529), +(65015, 'Wade', 1950, 'M', 528), +(65016, 'Doyle', 1950, 'M', 523), +(65017, 'Kenny', 1950, 'M', 516), +(65018, 'Jerald', 1950, 'M', 509), +(65019, 'Julian', 1950, 'M', 508), +(65020, 'Julius', 1950, 'M', 508), +(65021, 'Felix', 1950, 'M', 500), +(65022, 'Mickey', 1950, 'M', 500), +(65023, 'Wilbur', 1950, 'M', 490), +(65024, 'Armando', 1950, 'M', 489), +(65025, 'Kelly', 1950, 'M', 489), +(65026, 'Lanny', 1950, 'M', 489), +(65027, 'Randal', 1950, 'M', 489), +(65028, 'Mack', 1950, 'M', 483), +(65029, 'Van', 1950, 'M', 481), +(65030, 'Denis', 1950, 'M', 479), +(65031, 'Roderick', 1950, 'M', 478), +(65032, 'Willis', 1950, 'M', 476), +(65033, 'Hector', 1950, 'M', 474), +(65034, 'Grant', 1950, 'M', 471), +(65035, 'Ivan', 1950, 'M', 471), +(65036, 'Jacob', 1950, 'M', 465), +(65037, 'Ellis', 1950, 'M', 459), +(65038, 'Brad', 1950, 'M', 456), +(65039, 'Forrest', 1950, 'M', 456), +(65040, 'Miguel', 1950, 'M', 446), +(65041, 'Terence', 1950, 'M', 445), +(65042, 'Cary', 1950, 'M', 443), +(65043, 'Angelo', 1950, 'M', 436), +(65044, 'Stewart', 1950, 'M', 433), +(65045, 'Freddy', 1950, 'M', 429), +(65046, 'Ervin', 1950, 'M', 425), +(65047, 'Nick', 1950, 'M', 424), +(65048, 'Grady', 1950, 'M', 420), +(65049, 'Dallas', 1950, 'M', 415), +(65050, 'Stephan', 1950, 'M', 414), +(65051, 'Percy', 1950, 'M', 412), +(65052, 'Rufus', 1950, 'M', 406), +(65053, 'Unknown', 1950, 'M', 406), +(65054, 'Sheldon', 1950, 'M', 403), +(65055, 'Andy', 1950, 'M', 402), +(65056, 'Merle', 1950, 'M', 395), +(65057, 'Sammie', 1950, 'M', 395), +(65058, 'Dewey', 1950, 'M', 392), +(65059, 'Owen', 1950, 'M', 390), +(65060, 'Rene', 1950, 'M', 386), +(65061, 'Pat', 1950, 'M', 385), +(65062, 'Travis', 1950, 'M', 384), +(65063, 'Conrad', 1950, 'M', 383), +(65064, 'Buddy', 1950, 'M', 380), +(65065, 'Lorenzo', 1950, 'M', 379), +(65066, 'Hal', 1950, 'M', 370), +(65067, 'Irvin', 1950, 'M', 370), +(65068, 'Garland', 1950, 'M', 369), +(65069, 'Arturo', 1950, 'M', 368), +(65070, 'Rickie', 1950, 'M', 368), +(65071, 'Alonzo', 1950, 'M', 365), +(65072, 'Lionel', 1950, 'M', 365), +(65073, 'Louie', 1950, 'M', 365), +(65074, 'Guadalupe', 1950, 'M', 361), +(65075, 'Phil', 1950, 'M', 360), +(65076, 'Alfonso', 1950, 'M', 355), +(65077, 'Wilson', 1950, 'M', 352), +(65078, 'Ron', 1950, 'M', 349), +(65079, 'Vaughn', 1950, 'M', 349), +(65080, 'Ken', 1950, 'M', 347), +(65081, 'Elbert', 1950, 'M', 345), +(65082, 'Fernando', 1950, 'M', 344), +(65083, 'Dwayne', 1950, 'M', 343), +(65084, 'Boyd', 1950, 'M', 342), +(65085, 'Bert', 1950, 'M', 341), +(65086, 'Monty', 1950, 'M', 341), +(65087, 'Salvador', 1950, 'M', 335), +(65088, 'Grover', 1950, 'M', 334), +(65089, 'Woodrow', 1950, 'M', 333), +(65090, 'Cleveland', 1950, 'M', 332), +(65091, 'Gale', 1950, 'M', 332), +(65092, 'Galen', 1950, 'M', 325), +(65093, 'Miles', 1950, 'M', 325), +(65094, 'Royce', 1950, 'M', 325), +(65095, 'Darwin', 1950, 'M', 324), +(65096, 'Alfredo', 1950, 'M', 321), +(65097, 'Spencer', 1950, 'M', 321), +(65098, 'Edmond', 1950, 'M', 317), +(65099, 'Emmett', 1950, 'M', 312), +(65100, 'Adam', 1950, 'M', 306), +(65101, 'Noel', 1950, 'M', 306), +(65102, 'Ernie', 1950, 'M', 305), +(65103, 'Wilfred', 1950, 'M', 305), +(65104, 'Dominic', 1950, 'M', 302), +(65105, 'Rafael', 1950, 'M', 301), +(65106, 'Irving', 1950, 'M', 300), +(65107, 'Abraham', 1950, 'M', 299), +(65108, 'Adrian', 1950, 'M', 299), +(65109, 'Rocky', 1950, 'M', 298), +(65110, 'Denny', 1950, 'M', 296), +(65111, 'Aubrey', 1950, 'M', 293), +(65112, 'Eldon', 1950, 'M', 293), +(65113, 'Andre', 1950, 'M', 292), +(65114, 'Moses', 1950, 'M', 292), +(65115, 'Gerry', 1950, 'M', 291), +(65116, 'Ronny', 1950, 'M', 290), +(65117, 'Winston', 1950, 'M', 290), +(65118, 'Marlin', 1950, 'M', 289), +(65119, 'Amos', 1950, 'M', 285), +(65120, 'Cornelius', 1950, 'M', 284), +(65121, 'Elijah', 1950, 'M', 283), +(65122, 'Ernesto', 1950, 'M', 280), +(65123, 'Ned', 1950, 'M', 278), +(65124, 'Lamar', 1950, 'M', 276), +(65125, 'Carey', 1950, 'M', 273), +(65126, 'Junior', 1950, 'M', 273), +(65127, 'Harlan', 1950, 'M', 272), +(65128, 'Linwood', 1950, 'M', 272), +(65129, 'Dick', 1950, 'M', 269), +(65130, 'Christian', 1950, 'M', 268), +(65131, 'Barney', 1950, 'M', 266), +(65132, 'Rodolfo', 1950, 'M', 266), +(65133, 'Harley', 1950, 'M', 264), +(65134, 'Orville', 1950, 'M', 263), +(65135, 'Vance', 1950, 'M', 261), +(65136, 'Gabriel', 1950, 'M', 258), +(65137, 'Dominick', 1950, 'M', 256), +(65138, 'Loyd', 1950, 'M', 254), +(65139, 'Elliott', 1950, 'M', 253), +(65140, 'Sterling', 1950, 'M', 253), +(65141, 'Burton', 1950, 'M', 252), +(65142, 'Billie', 1950, 'M', 250), +(65143, 'Dannie', 1950, 'M', 250), +(65144, 'Donn', 1950, 'M', 250), +(65145, 'Sanford', 1950, 'M', 248), +(65146, 'Norris', 1950, 'M', 244), +(65147, 'Austin', 1950, 'M', 242), +(65148, 'Kyle', 1950, 'M', 241), +(65149, 'Alberto', 1950, 'M', 240), +(65150, 'Frederic', 1950, 'M', 238), +(65151, 'Angel', 1950, 'M', 234), +(65152, 'Blaine', 1950, 'M', 234), +(65153, 'Lon', 1950, 'M', 234), +(65154, 'Murray', 1950, 'M', 234), +(65155, 'Roscoe', 1950, 'M', 234), +(65156, 'Kermit', 1950, 'M', 233), +(65157, 'Enrique', 1950, 'M', 231), +(65158, 'Javier', 1950, 'M', 228), +(65159, 'Simon', 1950, 'M', 227), +(65160, 'Jerrold', 1950, 'M', 226), +(65161, 'Kirby', 1950, 'M', 225), +(65162, 'Tracy', 1950, 'M', 225), +(65163, 'Will', 1950, 'M', 223), +(65164, 'Emanuel', 1950, 'M', 222), +(65165, 'Harrison', 1950, 'M', 217), +(65166, 'Brett', 1950, 'M', 216), +(65167, 'Nolan', 1950, 'M', 216), +(65168, 'Al', 1950, 'M', 215), +(65169, 'Dewayne', 1950, 'M', 215), +(65170, 'Donny', 1950, 'M', 212), +(65171, 'Norbert', 1950, 'M', 212), +(65172, 'Dudley', 1950, 'M', 211), +(65173, 'Jeffry', 1950, 'M', 211), +(65174, 'Thurman', 1950, 'M', 211), +(65175, 'Elton', 1950, 'M', 210), +(65176, 'Alphonso', 1950, 'M', 209), +(65177, 'Thaddeus', 1950, 'M', 209), +(65178, 'Evan', 1950, 'M', 208), +(65179, 'Fredric', 1950, 'M', 208), +(65180, 'Jasper', 1950, 'M', 208), +(65181, 'Reuben', 1950, 'M', 208), +(65182, 'Chuck', 1950, 'M', 207), +(65183, 'Emil', 1950, 'M', 206), +(65184, 'Jason', 1950, 'M', 205), +(65185, 'Wiley', 1950, 'M', 205), +(65186, 'Reed', 1950, 'M', 204), +(65187, 'August', 1950, 'M', 203), +(65188, 'Derek', 1950, 'M', 202), +(65189, 'Drew', 1950, 'M', 202), +(65190, 'Terrell', 1950, 'M', 202), +(65191, 'Randell', 1950, 'M', 201), +(65192, 'Carmen', 1950, 'M', 199), +(65193, 'Colin', 1950, 'M', 197), +(65194, 'Eddy', 1950, 'M', 196), +(65195, 'Pablo', 1950, 'M', 196), +(65196, 'Lamont', 1950, 'M', 195), +(65197, 'Michel', 1950, 'M', 195), +(65198, 'Dexter', 1950, 'M', 193), +(65199, 'Elliot', 1950, 'M', 193), +(65200, 'Jess', 1950, 'M', 193), +(65201, 'Odell', 1950, 'M', 193), +(65202, 'Jake', 1950, 'M', 192), +(65203, 'Levi', 1950, 'M', 192), +(65204, 'Bobbie', 1950, 'M', 191), +(65205, 'Julio', 1950, 'M', 191), +(65206, 'Joesph', 1950, 'M', 190), +(65207, 'Sandy', 1950, 'M', 189), +(65208, 'Joey', 1950, 'M', 188), +(65209, 'Ramiro', 1950, 'M', 188), +(65210, 'Jorge', 1950, 'M', 187), +(65211, 'Kennith', 1950, 'M', 185), +(65212, 'Doug', 1950, 'M', 182), +(65213, 'Millard', 1950, 'M', 182), +(65214, 'Clay', 1950, 'M', 181), +(65215, 'Elvin', 1950, 'M', 181), +(65216, 'Marty', 1950, 'M', 179), +(65217, 'Elwood', 1950, 'M', 178), +(65218, 'Shawn', 1950, 'M', 178), +(65219, 'Barton', 1950, 'M', 177), +(65220, 'Ivory', 1950, 'M', 177), +(65221, 'Reynaldo', 1950, 'M', 177), +(65222, 'Rocco', 1950, 'M', 177), +(65223, 'Darnell', 1950, 'M', 176), +(65224, 'Weldon', 1950, 'M', 176), +(65225, 'Merlin', 1950, 'M', 175), +(65226, 'Tomas', 1950, 'M', 175), +(65227, 'Charley', 1950, 'M', 174), +(65228, 'Gail', 1950, 'M', 173), +(65229, 'Harris', 1950, 'M', 172), +(65230, 'Luke', 1950, 'M', 172), +(65231, 'Derrick', 1950, 'M', 171), +(65232, 'Jerold', 1950, 'M', 171), +(65233, 'Abel', 1950, 'M', 170), +(65234, 'Carter', 1950, 'M', 170), +(65235, 'Ward', 1950, 'M', 168), +(65236, 'Ulysses', 1950, 'M', 167), +(65237, 'Armand', 1950, 'M', 166), +(65238, 'Christophe', 1950, 'M', 166), +(65239, 'Jean', 1950, 'M', 166), +(65240, 'Ed', 1950, 'M', 165), +(65241, 'Garrett', 1950, 'M', 165), +(65242, 'Jackson', 1950, 'M', 165), +(65243, 'Danial', 1950, 'M', 164), +(65244, 'Felipe', 1950, 'M', 164), +(65245, 'Merrill', 1950, 'M', 164), +(65246, 'Rogers', 1950, 'M', 164), +(65247, 'Sean', 1950, 'M', 164), +(65248, 'Emory', 1950, 'M', 163), +(65249, 'Gus', 1950, 'M', 163), +(65250, 'Jeremiah', 1950, 'M', 163), +(65251, 'Joshua', 1950, 'M', 163), +(65252, 'Ollie', 1950, 'M', 163), +(65253, 'Orlando', 1950, 'M', 163), +(65254, 'Elias', 1950, 'M', 162), +(65255, 'Rory', 1950, 'M', 162), +(65256, 'Domingo', 1950, 'M', 161), +(65257, 'Cornell', 1950, 'M', 160), +(65258, 'Lane', 1950, 'M', 160), +(65259, 'Rogelio', 1950, 'M', 160), +(65260, 'Timmy', 1950, 'M', 160), +(65261, 'Kendall', 1950, 'M', 159), +(65262, 'Russel', 1950, 'M', 158), +(65263, 'Jaime', 1950, 'M', 154), +(65264, 'Maynard', 1950, 'M', 154), +(65265, 'Noah', 1950, 'M', 153), +(65266, 'Dane', 1950, 'M', 152), +(65267, 'Riley', 1950, 'M', 152), +(65268, 'Andres', 1950, 'M', 151), +(65269, 'Otto', 1950, 'M', 150), +(65270, 'Toby', 1950, 'M', 150), +(65271, 'Curt', 1950, 'M', 149), +(65272, 'Roman', 1950, 'M', 149), +(65273, 'Zachary', 1950, 'M', 149), +(65274, 'Johnie', 1950, 'M', 148), +(65275, 'Delmar', 1950, 'M', 147), +(65276, 'Eduardo', 1950, 'M', 147), +(65277, 'Irwin', 1950, 'M', 146), +(65278, 'Jefferson', 1950, 'M', 146), +(65279, 'Booker', 1950, 'M', 145), +(65280, 'Stan', 1950, 'M', 145), +(65281, 'Blair', 1950, 'M', 144), +(65282, 'Erwin', 1950, 'M', 143), +(65283, 'Hollis', 1950, 'M', 143), +(65284, 'Mervin', 1950, 'M', 143), +(65285, 'Adolph', 1950, 'M', 142); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(65286, 'Coy', 1950, 'M', 142), +(65287, 'Donnell', 1950, 'M', 142), +(65288, 'Gilberto', 1950, 'M', 142), +(65289, 'Israel', 1950, 'M', 142), +(65290, 'Shelby', 1950, 'M', 142), +(65291, 'Reid', 1950, 'M', 141), +(65292, 'Kelvin', 1950, 'M', 140), +(65293, 'Vern', 1950, 'M', 140), +(65294, 'Eli', 1950, 'M', 139), +(65295, 'Jody', 1950, 'M', 139), +(65296, 'Solomon', 1950, 'M', 139), +(65297, 'Isaiah', 1950, 'M', 138), +(65298, 'Val', 1950, 'M', 138), +(65299, 'Connie', 1950, 'M', 137), +(65300, 'Reggie', 1950, 'M', 137), +(65301, 'Benito', 1950, 'M', 136), +(65302, 'Errol', 1950, 'M', 135), +(65303, 'Lonny', 1950, 'M', 135), +(65304, 'Major', 1950, 'M', 135), +(65305, 'Dickie', 1950, 'M', 134), +(65306, 'Bennett', 1950, 'M', 133), +(65307, 'Cedric', 1950, 'M', 133), +(65308, 'Duncan', 1950, 'M', 133), +(65309, 'Erik', 1950, 'M', 132), +(65310, 'Glynn', 1950, 'M', 132), +(65311, 'Seth', 1950, 'M', 132), +(65312, 'Winfred', 1950, 'M', 132), +(65313, 'Blake', 1950, 'M', 131), +(65314, 'Denver', 1950, 'M', 131), +(65315, 'Ismael', 1950, 'M', 131), +(65316, 'Santiago', 1950, 'M', 131), +(65317, 'Buford', 1950, 'M', 130), +(65318, 'Linda', 1950, 'M', 130), +(65319, 'Carol', 1950, 'M', 129), +(65320, 'Ignacio', 1950, 'M', 129), +(65321, 'Lenard', 1950, 'M', 129), +(65322, 'Bart', 1950, 'M', 128), +(65323, 'Bernie', 1950, 'M', 128), +(65324, 'Emery', 1950, 'M', 128), +(65325, 'Guillermo', 1950, 'M', 128), +(65326, 'Justin', 1950, 'M', 128), +(65327, 'Clement', 1950, 'M', 126), +(65328, 'Davis', 1950, 'M', 126), +(65329, 'Emilio', 1950, 'M', 126), +(65330, 'Lavern', 1950, 'M', 126), +(65331, 'Bryant', 1950, 'M', 125), +(65332, 'Carmine', 1950, 'M', 125), +(65333, 'Everette', 1950, 'M', 125), +(65334, 'Monroe', 1950, 'M', 125), +(65335, 'Anton', 1950, 'M', 124), +(65336, 'Bryce', 1950, 'M', 124), +(65337, 'Santos', 1950, 'M', 124), +(65338, 'Shelton', 1950, 'M', 124), +(65339, 'Ian', 1950, 'M', 123), +(65340, 'Mac', 1950, 'M', 122), +(65341, 'Mitchel', 1950, 'M', 122), +(65342, 'Damon', 1950, 'M', 121), +(65343, 'Laverne', 1950, 'M', 121), +(65344, 'Carson', 1950, 'M', 120), +(65345, 'Fletcher', 1950, 'M', 120), +(65346, 'Morgan', 1950, 'M', 120), +(65347, 'Quentin', 1950, 'M', 120), +(65348, 'Scotty', 1950, 'M', 120), +(65349, 'Silas', 1950, 'M', 120), +(65350, 'Sonny', 1950, 'M', 120), +(65351, 'Gearld', 1950, 'M', 119), +(65352, 'Mary', 1950, 'M', 119), +(65353, 'Robbie', 1950, 'M', 119), +(65354, 'Stanford', 1950, 'M', 119), +(65355, 'Truman', 1950, 'M', 119), +(65356, 'Alejandro', 1950, 'M', 118), +(65357, 'Bud', 1950, 'M', 118), +(65358, 'Butch', 1950, 'M', 118), +(65359, 'Jacky', 1950, 'M', 118), +(65360, 'Vito', 1950, 'M', 118), +(65361, 'Wilford', 1950, 'M', 118), +(65362, 'Casey', 1950, 'M', 117), +(65363, 'Pierre', 1950, 'M', 116), +(65364, 'Stevie', 1950, 'M', 116), +(65365, 'Earle', 1950, 'M', 115), +(65366, 'Forest', 1950, 'M', 115), +(65367, 'Herschel', 1950, 'M', 115), +(65368, 'Hershel', 1950, 'M', 115), +(65369, 'Rolland', 1950, 'M', 115), +(65370, 'Stevan', 1950, 'M', 115), +(65371, 'Basil', 1950, 'M', 114), +(65372, 'Dwain', 1950, 'M', 114), +(65373, 'Freeman', 1950, 'M', 114), +(65374, 'Mckinley', 1950, 'M', 114), +(65375, 'Royal', 1950, 'M', 114), +(65376, 'Saul', 1950, 'M', 114), +(65377, 'Clair', 1950, 'M', 113), +(65378, 'Haywood', 1950, 'M', 113), +(65379, 'Wilton', 1950, 'M', 113), +(65380, 'Odis', 1950, 'M', 112), +(65381, 'Hiram', 1950, 'M', 111), +(65382, 'Lawerence', 1950, 'M', 111), +(65383, 'Anderson', 1950, 'M', 110), +(65384, 'Geary', 1950, 'M', 110), +(65385, 'Myles', 1950, 'M', 110), +(65386, 'Augustine', 1950, 'M', 109), +(65387, 'Douglass', 1950, 'M', 109), +(65388, 'Jere', 1950, 'M', 109), +(65389, 'Stanton', 1950, 'M', 108), +(65390, 'Lindsey', 1950, 'M', 107), +(65391, 'Nicky', 1950, 'M', 107), +(65392, 'Otha', 1950, 'M', 107), +(65393, 'Arlen', 1950, 'M', 106), +(65394, 'Kris', 1950, 'M', 105), +(65395, 'Rand', 1950, 'M', 105), +(65396, 'Stacy', 1950, 'M', 105), +(65397, 'Emerson', 1950, 'M', 102), +(65398, 'Burt', 1950, 'M', 101), +(65399, 'Emmitt', 1950, 'M', 101), +(65400, 'Artis', 1950, 'M', 100), +(65401, 'Cleo', 1950, 'M', 100), +(65402, 'Ryan', 1950, 'M', 100), +(65403, 'Linda', 1951, 'F', 73933), +(65404, 'Mary', 1951, 'F', 65689), +(65405, 'Patricia', 1951, 'F', 56422), +(65406, 'Deborah', 1951, 'F', 42043), +(65407, 'Barbara', 1951, 'F', 40588), +(65408, 'Susan', 1951, 'F', 40207), +(65409, 'Nancy', 1951, 'F', 30335), +(65410, 'Karen', 1951, 'F', 27986), +(65411, 'Sandra', 1951, 'F', 27656), +(65412, 'Kathleen', 1951, 'F', 26703), +(65413, 'Carol', 1951, 'F', 24773), +(65414, 'Donna', 1951, 'F', 24070), +(65415, 'Sharon', 1951, 'F', 23927), +(65416, 'Brenda', 1951, 'F', 21700), +(65417, 'Diane', 1951, 'F', 19835), +(65418, 'Pamela', 1951, 'F', 18559), +(65419, 'Margaret', 1951, 'F', 17683), +(65420, 'Debra', 1951, 'F', 17061), +(65421, 'Janet', 1951, 'F', 16949), +(65422, 'Cynthia', 1951, 'F', 16289), +(65423, 'Janice', 1951, 'F', 15947), +(65424, 'Carolyn', 1951, 'F', 15187), +(65425, 'Elizabeth', 1951, 'F', 15103), +(65426, 'Christine', 1951, 'F', 15016), +(65427, 'Judith', 1951, 'F', 14929), +(65428, 'Judy', 1951, 'F', 14005), +(65429, 'Shirley', 1951, 'F', 13909), +(65430, 'Joyce', 1951, 'F', 13468), +(65431, 'Betty', 1951, 'F', 12818), +(65432, 'Cheryl', 1951, 'F', 11987), +(65433, 'Gloria', 1951, 'F', 10947), +(65434, 'Rebecca', 1951, 'F', 10930), +(65435, 'Beverly', 1951, 'F', 10846), +(65436, 'Catherine', 1951, 'F', 10563), +(65437, 'Kathy', 1951, 'F', 10401), +(65438, 'Gail', 1951, 'F', 9882), +(65439, 'Bonnie', 1951, 'F', 9706), +(65440, 'Martha', 1951, 'F', 9599), +(65441, 'Joan', 1951, 'F', 9400), +(65442, 'Peggy', 1951, 'F', 9212), +(65443, 'Marilyn', 1951, 'F', 9144), +(65444, 'Dorothy', 1951, 'F', 9078), +(65445, 'Jane', 1951, 'F', 8929), +(65446, 'Connie', 1951, 'F', 8719), +(65447, 'Kathryn', 1951, 'F', 8455), +(65448, 'Ann', 1951, 'F', 8412), +(65449, 'Virginia', 1951, 'F', 8176), +(65450, 'Denise', 1951, 'F', 8122), +(65451, 'Jean', 1951, 'F', 7624), +(65452, 'Diana', 1951, 'F', 7397), +(65453, 'Paula', 1951, 'F', 7293), +(65454, 'Wanda', 1951, 'F', 7230), +(65455, 'Ruth', 1951, 'F', 7082), +(65456, 'Helen', 1951, 'F', 6940), +(65457, 'Katherine', 1951, 'F', 6920), +(65458, 'Jacqueline', 1951, 'F', 6911), +(65459, 'Phyllis', 1951, 'F', 6789), +(65460, 'Vicki', 1951, 'F', 6626), +(65461, 'Frances', 1951, 'F', 6578), +(65462, 'Laura', 1951, 'F', 6466), +(65463, 'Rita', 1951, 'F', 6415), +(65464, 'Alice', 1951, 'F', 6315), +(65465, 'Teresa', 1951, 'F', 6209), +(65466, 'Theresa', 1951, 'F', 6191), +(65467, 'Rose', 1951, 'F', 6187), +(65468, 'Elaine', 1951, 'F', 6065), +(65469, 'Jo', 1951, 'F', 5990), +(65470, 'Ellen', 1951, 'F', 5938), +(65471, 'Sherry', 1951, 'F', 5896), +(65472, 'Sheila', 1951, 'F', 5895), +(65473, 'Cathy', 1951, 'F', 5692), +(65474, 'Lynn', 1951, 'F', 5623), +(65475, 'Joanne', 1951, 'F', 5358), +(65476, 'Marcia', 1951, 'F', 5298), +(65477, 'Maria', 1951, 'F', 5226), +(65478, 'Marsha', 1951, 'F', 5189), +(65479, 'Sally', 1951, 'F', 5139), +(65480, 'Marie', 1951, 'F', 5046), +(65481, 'Darlene', 1951, 'F', 5027), +(65482, 'Doris', 1951, 'F', 5014), +(65483, 'Victoria', 1951, 'F', 4909), +(65484, 'Anne', 1951, 'F', 4871), +(65485, 'Suzanne', 1951, 'F', 4824), +(65486, 'Charlotte', 1951, 'F', 4644), +(65487, 'Lois', 1951, 'F', 4531), +(65488, 'Constance', 1951, 'F', 4366), +(65489, 'Vickie', 1951, 'F', 4320), +(65490, 'Evelyn', 1951, 'F', 4225), +(65491, 'Glenda', 1951, 'F', 4132), +(65492, 'Dianne', 1951, 'F', 4033), +(65493, 'Sarah', 1951, 'F', 4033), +(65494, 'Roberta', 1951, 'F', 3978), +(65495, 'Maureen', 1951, 'F', 3877), +(65496, 'Anna', 1951, 'F', 3865), +(65497, 'Eileen', 1951, 'F', 3815), +(65498, 'Anita', 1951, 'F', 3781), +(65499, 'Sylvia', 1951, 'F', 3769), +(65500, 'Jeanne', 1951, 'F', 3766), +(65501, 'Julie', 1951, 'F', 3689), +(65502, 'Valerie', 1951, 'F', 3561), +(65503, 'Yvonne', 1951, 'F', 3531), +(65504, 'Lorraine', 1951, 'F', 3480), +(65505, 'Charlene', 1951, 'F', 3439), +(65506, 'Joann', 1951, 'F', 3419), +(65507, 'Irene', 1951, 'F', 3390), +(65508, 'Sue', 1951, 'F', 3356), +(65509, 'Norma', 1951, 'F', 3351), +(65510, 'Geraldine', 1951, 'F', 3348), +(65511, 'Wendy', 1951, 'F', 3344), +(65512, 'Rosemary', 1951, 'F', 3340), +(65513, 'Rhonda', 1951, 'F', 3211), +(65514, 'Gwendolyn', 1951, 'F', 3189), +(65515, 'Annie', 1951, 'F', 3058), +(65516, 'Colleen', 1951, 'F', 3050), +(65517, 'Terry', 1951, 'F', 3036), +(65518, 'Lynda', 1951, 'F', 3022), +(65519, 'Louise', 1951, 'F', 3010), +(65520, 'Marlene', 1951, 'F', 3003), +(65521, 'Jennifer', 1951, 'F', 2973), +(65522, 'Kay', 1951, 'F', 2963), +(65523, 'Patsy', 1951, 'F', 2897), +(65524, 'Robin', 1951, 'F', 2893), +(65525, 'Claudia', 1951, 'F', 2861), +(65526, 'Gayle', 1951, 'F', 2825), +(65527, 'Michele', 1951, 'F', 2792), +(65528, 'Juanita', 1951, 'F', 2789), +(65529, 'Julia', 1951, 'F', 2745), +(65530, 'Marjorie', 1951, 'F', 2588), +(65531, 'Stephanie', 1951, 'F', 2572), +(65532, 'Jill', 1951, 'F', 2569), +(65533, 'Janis', 1951, 'F', 2549), +(65534, 'Jeanette', 1951, 'F', 2546), +(65535, 'Leslie', 1951, 'F', 2538), +(65536, 'Arlene', 1951, 'F', 2500), +(65537, 'Loretta', 1951, 'F', 2485), +(65538, 'Andrea', 1951, 'F', 2447), +(65539, 'Regina', 1951, 'F', 2419), +(65540, 'Vivian', 1951, 'F', 2403), +(65541, 'Laurie', 1951, 'F', 2358), +(65542, 'Ruby', 1951, 'F', 2349), +(65543, 'Delores', 1951, 'F', 2332), +(65544, 'June', 1951, 'F', 2280), +(65545, 'Annette', 1951, 'F', 2253), +(65546, 'Lynne', 1951, 'F', 2217), +(65547, 'Jan', 1951, 'F', 2184), +(65548, 'Mildred', 1951, 'F', 2183), +(65549, 'Carla', 1951, 'F', 2173), +(65550, 'Paulette', 1951, 'F', 2148), +(65551, 'Dolores', 1951, 'F', 2142), +(65552, 'Angela', 1951, 'F', 2139), +(65553, 'Michelle', 1951, 'F', 2135), +(65554, 'Penny', 1951, 'F', 2081), +(65555, 'Sara', 1951, 'F', 2075), +(65556, 'Cindy', 1951, 'F', 2032), +(65557, 'Joy', 1951, 'F', 2011), +(65558, 'Beth', 1951, 'F', 1981), +(65559, 'Josephine', 1951, 'F', 1963), +(65560, 'Christina', 1951, 'F', 1958), +(65561, 'Carole', 1951, 'F', 1957), +(65562, 'Rosa', 1951, 'F', 1955), +(65563, 'Sheryl', 1951, 'F', 1933), +(65564, 'Georgia', 1951, 'F', 1929), +(65565, 'Jacquelyn', 1951, 'F', 1900), +(65566, 'Renee', 1951, 'F', 1868), +(65567, 'Edith', 1951, 'F', 1849), +(65568, 'Shelley', 1951, 'F', 1845), +(65569, 'Audrey', 1951, 'F', 1825), +(65570, 'Lillian', 1951, 'F', 1822), +(65571, 'Esther', 1951, 'F', 1806), +(65572, 'Edna', 1951, 'F', 1800), +(65573, 'Belinda', 1951, 'F', 1789), +(65574, 'Kristine', 1951, 'F', 1755), +(65575, 'Candace', 1951, 'F', 1733), +(65576, 'Emma', 1951, 'F', 1726), +(65577, 'Debbie', 1951, 'F', 1712), +(65578, 'Janie', 1951, 'F', 1706), +(65579, 'Lisa', 1951, 'F', 1701), +(65580, 'Wilma', 1951, 'F', 1644), +(65581, 'Yolanda', 1951, 'F', 1639), +(65582, 'Pauline', 1951, 'F', 1618), +(65583, 'Priscilla', 1951, 'F', 1588), +(65584, 'Grace', 1951, 'F', 1578), +(65585, 'Eva', 1951, 'F', 1573), +(65586, 'Carmen', 1951, 'F', 1570), +(65587, 'Terri', 1951, 'F', 1563), +(65588, 'Clara', 1951, 'F', 1549), +(65589, 'Dianna', 1951, 'F', 1535), +(65590, 'Dawn', 1951, 'F', 1532), +(65591, 'Thelma', 1951, 'F', 1527), +(65592, 'Bonita', 1951, 'F', 1520), +(65593, 'Ethel', 1951, 'F', 1493), +(65594, 'Bobbie', 1951, 'F', 1492), +(65595, 'Toni', 1951, 'F', 1486), +(65596, 'Lucille', 1951, 'F', 1476), +(65597, 'Veronica', 1951, 'F', 1471), +(65598, 'Marianne', 1951, 'F', 1467), +(65599, 'Jackie', 1951, 'F', 1465), +(65600, 'Margie', 1951, 'F', 1456), +(65601, 'Gladys', 1951, 'F', 1450), +(65602, 'Amy', 1951, 'F', 1443), +(65603, 'Vicky', 1951, 'F', 1443), +(65604, 'Rachel', 1951, 'F', 1432), +(65605, 'Maryann', 1951, 'F', 1429), +(65606, 'Billie', 1951, 'F', 1418), +(65607, 'Melinda', 1951, 'F', 1410), +(65608, 'Ella', 1951, 'F', 1356), +(65609, 'Marion', 1951, 'F', 1341), +(65610, 'Bertha', 1951, 'F', 1325), +(65611, 'Monica', 1951, 'F', 1297), +(65612, 'Eleanor', 1951, 'F', 1296), +(65613, 'Florence', 1951, 'F', 1288), +(65614, 'Emily', 1951, 'F', 1287), +(65615, 'Bernice', 1951, 'F', 1286), +(65616, 'Beatrice', 1951, 'F', 1282), +(65617, 'Willie', 1951, 'F', 1269), +(65618, 'Lucy', 1951, 'F', 1266), +(65619, 'Becky', 1951, 'F', 1259), +(65620, 'Maxine', 1951, 'F', 1246), +(65621, 'Faye', 1951, 'F', 1238), +(65622, 'Marian', 1951, 'F', 1234), +(65623, 'Lana', 1951, 'F', 1198), +(65624, 'Lillie', 1951, 'F', 1172), +(65625, 'Nora', 1951, 'F', 1158), +(65626, 'Shelia', 1951, 'F', 1158), +(65627, 'Hazel', 1951, 'F', 1150), +(65628, 'Lydia', 1951, 'F', 1150), +(65629, 'Patti', 1951, 'F', 1144), +(65630, 'Francine', 1951, 'F', 1141), +(65631, 'Melissa', 1951, 'F', 1131), +(65632, 'Ramona', 1951, 'F', 1112), +(65633, 'Vera', 1951, 'F', 1108), +(65634, 'Mona', 1951, 'F', 1107), +(65635, 'Rosie', 1951, 'F', 1087), +(65636, 'Roxanne', 1951, 'F', 1081), +(65637, 'Dana', 1951, 'F', 1076), +(65638, 'Ida', 1951, 'F', 1074), +(65639, 'Holly', 1951, 'F', 1069), +(65640, 'Carrie', 1951, 'F', 1066), +(65641, 'Claire', 1951, 'F', 1061), +(65642, 'Stella', 1951, 'F', 1058), +(65643, 'Nina', 1951, 'F', 1036), +(65644, 'Dora', 1951, 'F', 1028), +(65645, 'Myra', 1951, 'F', 1028), +(65646, 'Melanie', 1951, 'F', 1006), +(65647, 'Bernadette', 1951, 'F', 991), +(65648, 'Alma', 1951, 'F', 979), +(65649, 'Cecilia', 1951, 'F', 956), +(65650, 'Patrice', 1951, 'F', 952), +(65651, 'Jessie', 1951, 'F', 941), +(65652, 'Dale', 1951, 'F', 926), +(65653, 'Harriet', 1951, 'F', 924), +(65654, 'Trudy', 1951, 'F', 923), +(65655, 'Patty', 1951, 'F', 921), +(65656, 'Irma', 1951, 'F', 917), +(65657, 'Caroline', 1951, 'F', 916), +(65658, 'Deanna', 1951, 'F', 911), +(65659, 'Antoinette', 1951, 'F', 900), +(65660, 'Iris', 1951, 'F', 893), +(65661, 'Lee', 1951, 'F', 891), +(65662, 'Melody', 1951, 'F', 888), +(65663, 'Susie', 1951, 'F', 887), +(65664, 'Betsy', 1951, 'F', 881), +(65665, 'Lynette', 1951, 'F', 870), +(65666, 'Miriam', 1951, 'F', 869), +(65667, 'Rosalie', 1951, 'F', 867), +(65668, 'Ginger', 1951, 'F', 866), +(65669, 'Rosemarie', 1951, 'F', 866), +(65670, 'Jeannette', 1951, 'F', 856), +(65671, 'Laurel', 1951, 'F', 851), +(65672, 'Marguerite', 1951, 'F', 849), +(65673, 'Tina', 1951, 'F', 834), +(65674, 'Alicia', 1951, 'F', 826), +(65675, 'Johnnie', 1951, 'F', 821), +(65676, 'Doreen', 1951, 'F', 813), +(65677, 'Gale', 1951, 'F', 813), +(65678, 'Mattie', 1951, 'F', 810), +(65679, 'Velma', 1951, 'F', 798), +(65680, 'Lucinda', 1951, 'F', 797), +(65681, 'Minnie', 1951, 'F', 793), +(65682, 'Kathie', 1951, 'F', 789), +(65683, 'Deloris', 1951, 'F', 787), +(65684, 'Cathleen', 1951, 'F', 770), +(65685, 'Bessie', 1951, 'F', 764), +(65686, 'Naomi', 1951, 'F', 763), +(65687, 'Cecelia', 1951, 'F', 760), +(65688, 'Dixie', 1951, 'F', 752), +(65689, 'Madeline', 1951, 'F', 750), +(65690, 'Nadine', 1951, 'F', 747), +(65691, 'Jennie', 1951, 'F', 743), +(65692, 'Mae', 1951, 'F', 731), +(65693, 'Jeannie', 1951, 'F', 727), +(65694, 'Geneva', 1951, 'F', 721), +(65695, 'Karla', 1951, 'F', 721), +(65696, 'Marla', 1951, 'F', 716), +(65697, 'Margo', 1951, 'F', 713), +(65698, 'Hilda', 1951, 'F', 707), +(65699, 'Ernestine', 1951, 'F', 698), +(65700, 'Marcella', 1951, 'F', 695), +(65701, 'Cassandra', 1951, 'F', 688), +(65702, 'Sherri', 1951, 'F', 673), +(65703, 'Cora', 1951, 'F', 670), +(65704, 'Leona', 1951, 'F', 668), +(65705, 'Verna', 1951, 'F', 668), +(65706, 'Olivia', 1951, 'F', 667), +(65707, 'Candice', 1951, 'F', 661), +(65708, 'Jenny', 1951, 'F', 660), +(65709, 'Agnes', 1951, 'F', 655), +(65710, 'Della', 1951, 'F', 653), +(65711, 'Lola', 1951, 'F', 652), +(65712, 'Glenna', 1951, 'F', 645), +(65713, 'Debora', 1951, 'F', 639), +(65714, 'Viola', 1951, 'F', 638), +(65715, 'Guadalupe', 1951, 'F', 637), +(65716, 'Elsie', 1951, 'F', 636), +(65717, 'Lena', 1951, 'F', 628), +(65718, 'Alberta', 1951, 'F', 623), +(65719, 'Gretchen', 1951, 'F', 619), +(65720, 'Laverne', 1951, 'F', 619), +(65721, 'Darla', 1951, 'F', 617), +(65722, 'Molly', 1951, 'F', 611), +(65723, 'Therese', 1951, 'F', 606), +(65724, 'Nellie', 1951, 'F', 602), +(65725, 'Janette', 1951, 'F', 601), +(65726, 'Susanne', 1951, 'F', 601), +(65727, 'Celeste', 1951, 'F', 598), +(65728, 'Cheri', 1951, 'F', 597), +(65729, 'Faith', 1951, 'F', 587), +(65730, 'Olga', 1951, 'F', 585), +(65731, 'Celia', 1951, 'F', 577), +(65732, 'Hattie', 1951, 'F', 576), +(65733, 'Kim', 1951, 'F', 570), +(65734, 'Penelope', 1951, 'F', 568), +(65735, 'Christy', 1951, 'F', 565), +(65736, 'Unknown', 1951, 'F', 565), +(65737, 'Gertrude', 1951, 'F', 559), +(65738, 'Jody', 1951, 'F', 556), +(65739, 'Crystal', 1951, 'F', 551), +(65740, 'Jayne', 1951, 'F', 551), +(65741, 'Katie', 1951, 'F', 547), +(65742, 'Jamie', 1951, 'F', 546), +(65743, 'Sherrie', 1951, 'F', 541), +(65744, 'Daisy', 1951, 'F', 540), +(65745, 'Gay', 1951, 'F', 540), +(65746, 'Rochelle', 1951, 'F', 537), +(65747, 'Amelia', 1951, 'F', 533), +(65748, 'Lori', 1951, 'F', 531), +(65749, 'Pearl', 1951, 'F', 530), +(65750, 'Lula', 1951, 'F', 527), +(65751, 'Eunice', 1951, 'F', 525), +(65752, 'Adrienne', 1951, 'F', 519), +(65753, 'Diann', 1951, 'F', 515), +(65754, 'Lorna', 1951, 'F', 515), +(65755, 'Ada', 1951, 'F', 513), +(65756, 'Flora', 1951, 'F', 506), +(65757, 'Rosalind', 1951, 'F', 505), +(65758, 'April', 1951, 'F', 504), +(65759, 'Margarita', 1951, 'F', 500), +(65760, 'Claudette', 1951, 'F', 497), +(65761, 'Bette', 1951, 'F', 495), +(65762, 'Helene', 1951, 'F', 494), +(65763, 'Noreen', 1951, 'F', 494), +(65764, 'Kerry', 1951, 'F', 492), +(65765, 'Bettie', 1951, 'F', 491), +(65766, 'Erma', 1951, 'F', 491), +(65767, 'Eloise', 1951, 'F', 488), +(65768, 'Kimberly', 1951, 'F', 488), +(65769, 'Rosanne', 1951, 'F', 482), +(65770, 'Sheri', 1951, 'F', 482), +(65771, 'Sallie', 1951, 'F', 480), +(65772, 'Leah', 1951, 'F', 478), +(65773, 'Myrna', 1951, 'F', 478), +(65774, 'Saundra', 1951, 'F', 474), +(65775, 'Roseann', 1951, 'F', 473), +(65776, 'Jeri', 1951, 'F', 472), +(65777, 'Polly', 1951, 'F', 472), +(65778, 'Tamara', 1951, 'F', 471), +(65779, 'Karin', 1951, 'F', 469), +(65780, 'Hope', 1951, 'F', 468), +(65781, 'Jessica', 1951, 'F', 466), +(65782, 'Freda', 1951, 'F', 461), +(65783, 'Sandy', 1951, 'F', 460), +(65784, 'Violet', 1951, 'F', 460), +(65785, 'Bettye', 1951, 'F', 456), +(65786, 'Fannie', 1951, 'F', 454), +(65787, 'Rosetta', 1951, 'F', 450), +(65788, 'Henrietta', 1951, 'F', 447), +(65789, 'Lora', 1951, 'F', 446), +(65790, 'Joanna', 1951, 'F', 443), +(65791, 'Reba', 1951, 'F', 441), +(65792, 'Corinne', 1951, 'F', 440), +(65793, 'Teri', 1951, 'F', 440), +(65794, 'Lou', 1951, 'F', 439), +(65795, 'Camille', 1951, 'F', 437), +(65796, 'Adele', 1951, 'F', 433), +(65797, 'Frankie', 1951, 'F', 429), +(65798, 'Gwen', 1951, 'F', 426), +(65799, 'Cherie', 1951, 'F', 425), +(65800, 'Ilene', 1951, 'F', 425), +(65801, 'Kristin', 1951, 'F', 422), +(65802, 'Melba', 1951, 'F', 422), +(65803, 'Janine', 1951, 'F', 421), +(65804, 'Nanette', 1951, 'F', 421), +(65805, 'Alison', 1951, 'F', 419), +(65806, 'Delia', 1951, 'F', 418), +(65807, 'Dona', 1951, 'F', 418), +(65808, 'Lauren', 1951, 'F', 418), +(65809, 'Kaye', 1951, 'F', 417), +(65810, 'Natalie', 1951, 'F', 412), +(65811, 'Lenora', 1951, 'F', 410), +(65812, 'Sondra', 1951, 'F', 410), +(65813, 'Amanda', 1951, 'F', 409), +(65814, 'Jeanie', 1951, 'F', 408), +(65815, 'Marta', 1951, 'F', 408), +(65816, 'Robyn', 1951, 'F', 408), +(65817, 'Sharron', 1951, 'F', 407), +(65818, 'Shelly', 1951, 'F', 406), +(65819, 'Mamie', 1951, 'F', 397), +(65820, 'Myrtle', 1951, 'F', 397), +(65821, 'Sonia', 1951, 'F', 397), +(65822, 'Sonja', 1951, 'F', 397), +(65823, 'Rena', 1951, 'F', 395), +(65824, 'Fay', 1951, 'F', 391), +(65825, 'Nelda', 1951, 'F', 391), +(65826, 'Jolene', 1951, 'F', 389), +(65827, 'Maggie', 1951, 'F', 386), +(65828, 'Ava', 1951, 'F', 385), +(65829, 'Tanya', 1951, 'F', 384), +(65830, 'Inez', 1951, 'F', 382), +(65831, 'Ronda', 1951, 'F', 375), +(65832, 'Shannon', 1951, 'F', 375), +(65833, 'Earnestine', 1951, 'F', 374), +(65834, 'Marcy', 1951, 'F', 374), +(65835, 'Terrie', 1951, 'F', 372), +(65836, 'Jana', 1951, 'F', 371), +(65837, 'Jeannine', 1951, 'F', 370), +(65838, 'Randi', 1951, 'F', 370), +(65839, 'Rosalyn', 1951, 'F', 370), +(65840, 'Isabel', 1951, 'F', 368), +(65841, 'Lila', 1951, 'F', 364), +(65842, 'Eugenia', 1951, 'F', 360), +(65843, 'Meredith', 1951, 'F', 359), +(65844, 'Mable', 1951, 'F', 355), +(65845, 'Genevieve', 1951, 'F', 353), +(65846, 'Jacalyn', 1951, 'F', 345), +(65847, 'Shari', 1951, 'F', 342), +(65848, 'Dee', 1951, 'F', 341), +(65849, 'Earlene', 1951, 'F', 341), +(65850, 'Estella', 1951, 'F', 341), +(65851, 'Rae', 1951, 'F', 341), +(65852, 'Blanche', 1951, 'F', 340), +(65853, 'Yvette', 1951, 'F', 338), +(65854, 'Cathryn', 1951, 'F', 336), +(65855, 'Christie', 1951, 'F', 336), +(65856, 'Althea', 1951, 'F', 334), +(65857, 'Coleen', 1951, 'F', 332), +(65858, 'Kristina', 1951, 'F', 332), +(65859, 'Muriel', 1951, 'F', 331), +(65860, 'Robbie', 1951, 'F', 330), +(65861, 'Antonia', 1951, 'F', 329), +(65862, 'Marva', 1951, 'F', 329), +(65863, 'Ladonna', 1951, 'F', 328), +(65864, 'Marilynn', 1951, 'F', 328), +(65865, 'Gracie', 1951, 'F', 326), +(65866, 'Maryanne', 1951, 'F', 326), +(65867, 'Pat', 1951, 'F', 326), +(65868, 'Katharine', 1951, 'F', 319), +(65869, 'Heidi', 1951, 'F', 318), +(65870, 'Jerri', 1951, 'F', 316), +(65871, 'Lorene', 1951, 'F', 316), +(65872, 'Nona', 1951, 'F', 315), +(65873, 'Jerry', 1951, 'F', 314), +(65874, 'Ruthie', 1951, 'F', 312), +(65875, 'Heather', 1951, 'F', 308), +(65876, 'Lenore', 1951, 'F', 308), +(65877, 'Lavonne', 1951, 'F', 306), +(65878, 'Mindy', 1951, 'F', 306), +(65879, 'Sadie', 1951, 'F', 302), +(65880, 'Lesley', 1951, 'F', 296), +(65881, 'Maryellen', 1951, 'F', 294), +(65882, 'Winifred', 1951, 'F', 294), +(65883, 'Jimmie', 1951, 'F', 293), +(65884, 'Elise', 1951, 'F', 292), +(65885, 'Jewel', 1951, 'F', 292), +(65886, 'Carlene', 1951, 'F', 291), +(65887, 'Ollie', 1951, 'F', 288), +(65888, 'Nita', 1951, 'F', 284), +(65889, 'Dorothea', 1951, 'F', 283), +(65890, 'Eula', 1951, 'F', 282), +(65891, 'Gayla', 1951, 'F', 282), +(65892, 'Jeanine', 1951, 'F', 281), +(65893, 'Chris', 1951, 'F', 278), +(65894, 'Beverley', 1951, 'F', 276), +(65895, 'Sharlene', 1951, 'F', 275), +(65896, 'Bridget', 1951, 'F', 274), +(65897, 'Jocelyn', 1951, 'F', 274), +(65898, 'Kristi', 1951, 'F', 274), +(65899, 'Elva', 1951, 'F', 272), +(65900, 'Essie', 1951, 'F', 272), +(65901, 'Lynnette', 1951, 'F', 271), +(65902, 'Delois', 1951, 'F', 270), +(65903, 'Ora', 1951, 'F', 270), +(65904, 'Cherry', 1951, 'F', 269), +(65905, 'Earline', 1951, 'F', 269), +(65906, 'Cathie', 1951, 'F', 267), +(65907, 'Elena', 1951, 'F', 267), +(65908, 'Colette', 1951, 'F', 265), +(65909, 'Georgette', 1951, 'F', 265), +(65910, 'Gilda', 1951, 'F', 265), +(65911, 'Rosalinda', 1951, 'F', 265), +(65912, 'Bernadine', 1951, 'F', 264), +(65913, 'Merry', 1951, 'F', 264), +(65914, 'Rhoda', 1951, 'F', 262), +(65915, 'Harriett', 1951, 'F', 261), +(65916, 'Rene', 1951, 'F', 261), +(65917, 'Tommie', 1951, 'F', 261), +(65918, 'Ana', 1951, 'F', 259), +(65919, 'James', 1951, 'F', 259), +(65920, 'Clare', 1951, 'F', 255), +(65921, 'Benita', 1951, 'F', 254), +(65922, 'Candy', 1951, 'F', 254), +(65923, 'Marylou', 1951, 'F', 253), +(65924, 'Alexis', 1951, 'F', 252), +(65925, 'Lucia', 1951, 'F', 252), +(65926, 'Melva', 1951, 'F', 252), +(65927, 'Allison', 1951, 'F', 251), +(65928, 'Etta', 1951, 'F', 251), +(65929, 'Fern', 1951, 'F', 250), +(65930, 'Nola', 1951, 'F', 249), +(65931, 'Kathi', 1951, 'F', 248), +(65932, 'Nikki', 1951, 'F', 248), +(65933, 'Suzette', 1951, 'F', 248), +(65934, 'Denice', 1951, 'F', 247), +(65935, 'Ina', 1951, 'F', 247), +(65936, 'Roslyn', 1951, 'F', 247), +(65937, 'Nettie', 1951, 'F', 245), +(65938, 'Pearlie', 1951, 'F', 245), +(65939, 'Addie', 1951, 'F', 243), +(65940, 'Edwina', 1951, 'F', 243), +(65941, 'Estelle', 1951, 'F', 243), +(65942, 'Roxann', 1951, 'F', 243), +(65943, 'Suzan', 1951, 'F', 243), +(65944, 'Janelle', 1951, 'F', 241), +(65945, 'Johanna', 1951, 'F', 240), +(65946, 'Jannie', 1951, 'F', 239), +(65947, 'Julianne', 1951, 'F', 239), +(65948, 'Dolly', 1951, 'F', 238), +(65949, 'Dinah', 1951, 'F', 237), +(65950, 'Willa', 1951, 'F', 236), +(65951, 'Rosanna', 1951, 'F', 235), +(65952, 'Lela', 1951, 'F', 234), +(65953, 'Roxie', 1951, 'F', 234), +(65954, 'Debby', 1951, 'F', 233), +(65955, 'Francis', 1951, 'F', 233), +(65956, 'Josie', 1951, 'F', 233), +(65957, 'Nan', 1951, 'F', 233), +(65958, 'Shelby', 1951, 'F', 233), +(65959, 'Beulah', 1951, 'F', 232), +(65960, 'Kristie', 1951, 'F', 232), +(65961, 'Valarie', 1951, 'F', 230), +(65962, 'Kitty', 1951, 'F', 228), +(65963, 'Leola', 1951, 'F', 228), +(65964, 'Lizzie', 1951, 'F', 228), +(65965, 'Lupe', 1951, 'F', 228), +(65966, 'Helena', 1951, 'F', 227), +(65967, 'Marietta', 1951, 'F', 227), +(65968, 'Patrica', 1951, 'F', 227), +(65969, 'Randy', 1951, 'F', 227), +(65970, 'Caren', 1951, 'F', 226), +(65971, 'Sybil', 1951, 'F', 225), +(65972, 'Clarice', 1951, 'F', 224), +(65973, 'Mari', 1951, 'F', 224), +(65974, 'Millie', 1951, 'F', 224), +(65975, 'Dena', 1951, 'F', 223), +(65976, 'Lyn', 1951, 'F', 223), +(65977, 'Madelyn', 1951, 'F', 223), +(65978, 'Jewell', 1951, 'F', 222), +(65979, 'May', 1951, 'F', 222), +(65980, 'Daphne', 1951, 'F', 219), +(65981, 'Kathrine', 1951, 'F', 219), +(65982, 'Gina', 1951, 'F', 218), +(65983, 'Sherrill', 1951, 'F', 217), +(65984, 'Dorthy', 1951, 'F', 216), +(65985, 'Leanne', 1951, 'F', 216), +(65986, 'Opal', 1951, 'F', 216), +(65987, 'Angie', 1951, 'F', 214), +(65988, 'Arleen', 1951, 'F', 214), +(65989, 'Freida', 1951, 'F', 214), +(65990, 'Cheryle', 1951, 'F', 213), +(65991, 'Iva', 1951, 'F', 213), +(65992, 'Aileen', 1951, 'F', 212), +(65993, 'Angelina', 1951, 'F', 212), +(65994, 'Barbra', 1951, 'F', 212), +(65995, 'Malinda', 1951, 'F', 212), +(65996, 'Kyle', 1951, 'F', 211), +(65997, 'Loraine', 1951, 'F', 208), +(65998, 'Queen', 1951, 'F', 208), +(65999, 'Robert', 1951, 'F', 208), +(66000, 'Sydney', 1951, 'F', 206), +(66001, 'Eddie', 1951, 'F', 205), +(66002, 'Karol', 1951, 'F', 205), +(66003, 'Tonya', 1951, 'F', 205), +(66004, 'John', 1951, 'F', 204), +(66005, 'Elvira', 1951, 'F', 203), +(66006, 'Nanci', 1951, 'F', 203), +(66007, 'Blanca', 1951, 'F', 201), +(66008, 'Roseanne', 1951, 'F', 201), +(66009, 'Valorie', 1951, 'F', 201), +(66010, 'Mabel', 1951, 'F', 200), +(66011, 'Katrina', 1951, 'F', 199), +(66012, 'Dian', 1951, 'F', 197), +(66013, 'Joe', 1951, 'F', 197), +(66014, 'Portia', 1951, 'F', 197), +(66015, 'Peggie', 1951, 'F', 196), +(66016, 'Bonny', 1951, 'F', 194), +(66017, 'Darcy', 1951, 'F', 194), +(66018, 'Greta', 1951, 'F', 194), +(66019, 'Ola', 1951, 'F', 194), +(66020, 'Tracy', 1951, 'F', 194), +(66021, 'Kristen', 1951, 'F', 193), +(66022, 'Leann', 1951, 'F', 193), +(66023, 'Charmaine', 1951, 'F', 192), +(66024, 'Cornelia', 1951, 'F', 192), +(66025, 'Katheryn', 1951, 'F', 192), +(66026, 'Alyce', 1951, 'F', 191), +(66027, 'Pam', 1951, 'F', 191), +(66028, 'Debrah', 1951, 'F', 190), +(66029, 'Lottie', 1951, 'F', 190), +(66030, 'Sonya', 1951, 'F', 190), +(66031, 'Vickey', 1951, 'F', 190), +(66032, 'Alana', 1951, 'F', 189), +(66033, 'Marlys', 1951, 'F', 189), +(66034, 'Ronnie', 1951, 'F', 189), +(66035, 'Alfreda', 1951, 'F', 188), +(66036, 'Aurora', 1951, 'F', 188), +(66037, 'Karon', 1951, 'F', 188), +(66038, 'Mollie', 1951, 'F', 187), +(66039, 'Mercedes', 1951, 'F', 186), +(66040, 'Cecile', 1951, 'F', 184), +(66041, 'Elisabeth', 1951, 'F', 184), +(66042, 'Leigh', 1951, 'F', 184), +(66043, 'Mickey', 1951, 'F', 184), +(66044, 'Sherryl', 1951, 'F', 184), +(66045, 'Celestine', 1951, 'F', 183), +(66046, 'Delilah', 1951, 'F', 183), +(66047, 'Eve', 1951, 'F', 183), +(66048, 'Freddie', 1951, 'F', 183), +(66049, 'Effie', 1951, 'F', 182), +(66050, 'Caryn', 1951, 'F', 181), +(66051, 'Doretha', 1951, 'F', 181), +(66052, 'Elsa', 1951, 'F', 178), +(66053, 'Madonna', 1951, 'F', 178), +(66054, 'Esperanza', 1951, 'F', 177), +(66055, 'Retha', 1951, 'F', 177), +(66056, 'Roxanna', 1951, 'F', 177), +(66057, 'Twila', 1951, 'F', 177), +(66058, 'Vanessa', 1951, 'F', 177), +(66059, 'Corrine', 1951, 'F', 176), +(66060, 'Gaye', 1951, 'F', 176), +(66061, 'Consuelo', 1951, 'F', 175), +(66062, 'Reva', 1951, 'F', 175), +(66063, 'Charleen', 1951, 'F', 174), +(66064, 'Jacklyn', 1951, 'F', 174), +(66065, 'Marcie', 1951, 'F', 174), +(66066, 'Sharyn', 1951, 'F', 174), +(66067, 'Angeline', 1951, 'F', 173), +(66068, 'Karyn', 1951, 'F', 173), +(66069, 'Kristy', 1951, 'F', 173), +(66070, 'Jacque', 1951, 'F', 172), +(66071, 'Lea', 1951, 'F', 172), +(66072, 'Michael', 1951, 'F', 172), +(66073, 'Judi', 1951, 'F', 170), +(66074, 'Lilly', 1951, 'F', 170), +(66075, 'Margery', 1951, 'F', 170), +(66076, 'Pamala', 1951, 'F', 170), +(66077, 'Annmarie', 1951, 'F', 169), +(66078, 'Avis', 1951, 'F', 169), +(66079, 'Cinda', 1951, 'F', 168), +(66080, 'Ingrid', 1951, 'F', 168), +(66081, 'Minerva', 1951, 'F', 168), +(66082, 'Ivy', 1951, 'F', 165), +(66083, 'Kelly', 1951, 'F', 165), +(66084, 'Alta', 1951, 'F', 164), +(66085, 'Elisa', 1951, 'F', 164), +(66086, 'Hannah', 1951, 'F', 164), +(66087, 'Mavis', 1951, 'F', 164), +(66088, 'Ophelia', 1951, 'F', 164), +(66089, 'Darleen', 1951, 'F', 162), +(66090, 'Nannette', 1951, 'F', 162), +(66091, 'Vikki', 1951, 'F', 162), +(66092, 'Carmella', 1951, 'F', 161), +(66093, 'Dottie', 1951, 'F', 161), +(66094, 'Felicia', 1951, 'F', 161), +(66095, 'Juana', 1951, 'F', 161), +(66096, 'Valeria', 1951, 'F', 161), +(66097, 'Carlotta', 1951, 'F', 160), +(66098, 'Daryl', 1951, 'F', 158), +(66099, 'Louella', 1951, 'F', 158), +(66100, 'Mariann', 1951, 'F', 158), +(66101, 'Marilee', 1951, 'F', 157), +(66102, 'Graciela', 1951, 'F', 156), +(66103, 'Luann', 1951, 'F', 156), +(66104, 'Neva', 1951, 'F', 156), +(66105, 'Catharine', 1951, 'F', 155), +(66106, 'Gerry', 1951, 'F', 155), +(66107, 'Leila', 1951, 'F', 154), +(66108, 'Charles', 1951, 'F', 153), +(66109, 'Josefina', 1951, 'F', 153), +(66110, 'Lorrie', 1951, 'F', 153), +(66111, 'Sophia', 1951, 'F', 153), +(66112, 'Carmela', 1951, 'F', 151), +(66113, 'Reta', 1951, 'F', 151), +(66114, 'Beryl', 1951, 'F', 150), +(66115, 'Deanne', 1951, 'F', 150), +(66116, 'Elnora', 1951, 'F', 150), +(66117, 'Fran', 1951, 'F', 149), +(66118, 'Kris', 1951, 'F', 149), +(66119, 'Madeleine', 1951, 'F', 149), +(66120, 'Odessa', 1951, 'F', 149), +(66121, 'Leticia', 1951, 'F', 148), +(66122, 'Frieda', 1951, 'F', 147), +(66123, 'Janell', 1951, 'F', 147), +(66124, 'Bethany', 1951, 'F', 146), +(66125, 'Rebekah', 1951, 'F', 146), +(66126, 'Terese', 1951, 'F', 146), +(66127, 'Debbra', 1951, 'F', 145), +(66128, 'Imogene', 1951, 'F', 145), +(66129, 'Leanna', 1951, 'F', 144), +(66130, 'Tana', 1951, 'F', 144), +(66131, 'Dollie', 1951, 'F', 143), +(66132, 'Aleta', 1951, 'F', 142), +(66133, 'Angelita', 1951, 'F', 142), +(66134, 'Glinda', 1951, 'F', 142), +(66135, 'Leta', 1951, 'F', 142), +(66136, 'Luanne', 1951, 'F', 142), +(66137, 'Winnie', 1951, 'F', 142), +(66138, 'Charla', 1951, 'F', 141), +(66139, 'Concetta', 1951, 'F', 141), +(66140, 'Delphine', 1951, 'F', 141), +(66141, 'Ester', 1951, 'F', 141), +(66142, 'Marybeth', 1951, 'F', 141), +(66143, 'Roseanna', 1951, 'F', 141), +(66144, 'Magdalena', 1951, 'F', 140), +(66145, 'Nell', 1951, 'F', 140), +(66146, 'Bennie', 1951, 'F', 139), +(66147, 'Camilla', 1951, 'F', 139), +(66148, 'Corliss', 1951, 'F', 138), +(66149, 'Deidre', 1951, 'F', 138), +(66150, 'Louisa', 1951, 'F', 138), +(66151, 'Abigail', 1951, 'F', 137), +(66152, 'Callie', 1951, 'F', 137), +(66153, 'Deirdre', 1951, 'F', 137), +(66154, 'Evangeline', 1951, 'F', 137), +(66155, 'Alexandra', 1951, 'F', 136), +(66156, 'Maryjane', 1951, 'F', 136), +(66157, 'Merle', 1951, 'F', 136), +(66158, 'Pattie', 1951, 'F', 136), +(66159, 'Shirlene', 1951, 'F', 136), +(66160, 'Vonda', 1951, 'F', 136), +(66161, 'Bobby', 1951, 'F', 135), +(66162, 'Cathey', 1951, 'F', 134), +(66163, 'Donita', 1951, 'F', 134), +(66164, 'Georgina', 1951, 'F', 134), +(66165, 'Lily', 1951, 'F', 134), +(66166, 'Marleen', 1951, 'F', 134), +(66167, 'Virgie', 1951, 'F', 134), +(66168, 'Cleo', 1951, 'F', 133), +(66169, 'Jacquline', 1951, 'F', 133), +(66170, 'Lorena', 1951, 'F', 133), +(66171, 'Margot', 1951, 'F', 133), +(66172, 'Maryjo', 1951, 'F', 133), +(66173, 'Sharleen', 1951, 'F', 133), +(66174, 'Ruthann', 1951, 'F', 132), +(66175, 'Georgianna', 1951, 'F', 131), +(66176, 'Letha', 1951, 'F', 131), +(66177, 'Oralia', 1951, 'F', 131), +(66178, 'Carleen', 1951, 'F', 130), +(66179, 'Nedra', 1951, 'F', 130), +(66180, 'Treva', 1951, 'F', 130), +(66181, 'Carolann', 1951, 'F', 129), +(66182, 'Eliza', 1951, 'F', 129), +(66183, 'Juliana', 1951, 'F', 129), +(66184, 'Krista', 1951, 'F', 129), +(66185, 'Matilda', 1951, 'F', 129), +(66186, 'Vernell', 1951, 'F', 129), +(66187, 'Geri', 1951, 'F', 128), +(66188, 'Janna', 1951, 'F', 128), +(66189, 'Melodie', 1951, 'F', 128), +(66190, 'Silvia', 1951, 'F', 128), +(66191, 'Sophie', 1951, 'F', 128), +(66192, 'Cassie', 1951, 'F', 127), +(66193, 'Goldie', 1951, 'F', 127), +(66194, 'Lelia', 1951, 'F', 127), +(66195, 'Wilhelmina', 1951, 'F', 126), +(66196, 'Adela', 1951, 'F', 125), +(66197, 'Elma', 1951, 'F', 125), +(66198, 'Kathlyn', 1951, 'F', 125), +(66199, 'Lona', 1951, 'F', 125), +(66200, 'Ricki', 1951, 'F', 125), +(66201, 'Deana', 1951, 'F', 124), +(66202, 'Deena', 1951, 'F', 124), +(66203, 'Laureen', 1951, 'F', 124), +(66204, 'Caryl', 1951, 'F', 123), +(66205, 'Elida', 1951, 'F', 123), +(66206, 'Erlinda', 1951, 'F', 123), +(66207, 'Marina', 1951, 'F', 123), +(66208, 'Sanjuanita', 1951, 'F', 123), +(66209, 'Shawn', 1951, 'F', 123), +(66210, 'Danielle', 1951, 'F', 122), +(66211, 'Dorene', 1951, 'F', 122), +(66212, 'Renae', 1951, 'F', 122), +(66213, 'Susanna', 1951, 'F', 122), +(66214, 'Isabelle', 1951, 'F', 121), +(66215, 'Lucretia', 1951, 'F', 121), +(66216, 'Selma', 1951, 'F', 121), +(66217, 'Elouise', 1951, 'F', 120), +(66218, 'Ofelia', 1951, 'F', 120), +(66219, 'Rosalee', 1951, 'F', 120), +(66220, 'Sharen', 1951, 'F', 120), +(66221, 'Clementine', 1951, 'F', 119), +(66222, 'Jerilyn', 1951, 'F', 119), +(66223, 'Justine', 1951, 'F', 119), +(66224, 'Libby', 1951, 'F', 119), +(66225, 'Maura', 1951, 'F', 119), +(66226, 'Meryl', 1951, 'F', 119), +(66227, 'Lonnie', 1951, 'F', 118), +(66228, 'Luella', 1951, 'F', 118), +(66229, 'Maribeth', 1951, 'F', 118), +(66230, 'Rachelle', 1951, 'F', 118), +(66231, 'Wilda', 1951, 'F', 118), +(66232, 'Annetta', 1951, 'F', 117), +(66233, 'Carroll', 1951, 'F', 116), +(66234, 'Claudine', 1951, 'F', 116), +(66235, 'Ronna', 1951, 'F', 116), +(66236, 'Joellen', 1951, 'F', 115), +(66237, 'Cathrine', 1951, 'F', 114), +(66238, 'Fonda', 1951, 'F', 114), +(66239, 'Lauretta', 1951, 'F', 114), +(66240, 'Marianna', 1951, 'F', 114), +(66241, 'Rowena', 1951, 'F', 114), +(66242, 'Carolina', 1951, 'F', 113), +(66243, 'Elissa', 1951, 'F', 113), +(66244, 'Lessie', 1951, 'F', 113), +(66245, 'Linnea', 1951, 'F', 113), +(66246, 'Bobbi', 1951, 'F', 112), +(66247, 'Ila', 1951, 'F', 112), +(66248, 'Jacquelin', 1951, 'F', 112), +(66249, 'Kate', 1951, 'F', 112), +(66250, 'Lindsay', 1951, 'F', 112), +(66251, 'Rhea', 1951, 'F', 112), +(66252, 'Rosita', 1951, 'F', 112), +(66253, 'Suzann', 1951, 'F', 112), +(66254, 'Letitia', 1951, 'F', 111), +(66255, 'Lorelei', 1951, 'F', 111), +(66256, 'Rosario', 1951, 'F', 111), +(66257, 'Elinor', 1951, 'F', 110), +(66258, 'Luz', 1951, 'F', 110), +(66259, 'Corine', 1951, 'F', 109), +(66260, 'George', 1951, 'F', 109), +(66261, 'Georgene', 1951, 'F', 109), +(66262, 'Lorie', 1951, 'F', 109), +(66263, 'Phoebe', 1951, 'F', 109), +(66264, 'Allyson', 1951, 'F', 108), +(66265, 'Jerrie', 1951, 'F', 108), +(66266, 'Nicki', 1951, 'F', 108), +(66267, 'Rosella', 1951, 'F', 108), +(66268, 'Stacy', 1951, 'F', 108), +(66269, 'Toby', 1951, 'F', 108), +(66270, 'William', 1951, 'F', 108), +(66271, 'Georgiana', 1951, 'F', 107), +(66272, 'Mimi', 1951, 'F', 107), +(66273, 'Raquel', 1951, 'F', 107), +(66274, 'Evangelina', 1951, 'F', 106), +(66275, 'Hollis', 1951, 'F', 106), +(66276, 'Juliette', 1951, 'F', 106), +(66277, 'Mara', 1951, 'F', 106), +(66278, 'Socorro', 1951, 'F', 106), +(66279, 'Aida', 1951, 'F', 105), +(66280, 'Elvia', 1951, 'F', 105), +(66281, 'Kendra', 1951, 'F', 105), +(66282, 'Martina', 1951, 'F', 105), +(66283, 'Adeline', 1951, 'F', 104), +(66284, 'Carolynn', 1951, 'F', 104), +(66285, 'Deann', 1951, 'F', 104), +(66286, 'Laraine', 1951, 'F', 104), +(66287, 'Margret', 1951, 'F', 104), +(66288, 'Shirlee', 1951, 'F', 104), +(66289, 'Winona', 1951, 'F', 104), +(66290, 'Zelma', 1951, 'F', 104), +(66291, 'Angelia', 1951, 'F', 103), +(66292, 'Dina', 1951, 'F', 103), +(66293, 'Donnie', 1951, 'F', 103), +(66294, 'Florine', 1951, 'F', 103), +(66295, 'Geralyn', 1951, 'F', 103), +(66296, 'Hilary', 1951, 'F', 103), +(66297, 'Jann', 1951, 'F', 103), +(66298, 'Jannette', 1951, 'F', 103), +(66299, 'Jodie', 1951, 'F', 103), +(66300, 'Marty', 1951, 'F', 103), +(66301, 'Nicolette', 1951, 'F', 103), +(66302, 'Theodora', 1951, 'F', 103), +(66303, 'Twyla', 1951, 'F', 103), +(66304, 'David', 1951, 'F', 102), +(66305, 'Evon', 1951, 'F', 102), +(66306, 'Jonnie', 1951, 'F', 102), +(66307, 'Kathaleen', 1951, 'F', 102), +(66308, 'Stacey', 1951, 'F', 102), +(66309, 'Charlie', 1951, 'F', 101), +(66310, 'Danna', 1951, 'F', 101), +(66311, 'Enid', 1951, 'F', 101), +(66312, 'Mickie', 1951, 'F', 101), +(66313, 'Phillis', 1951, 'F', 101), +(66314, 'Francisca', 1951, 'F', 100), +(66315, 'Joleen', 1951, 'F', 100), +(66316, 'Judie', 1951, 'F', 100), +(66317, 'Larry', 1951, 'F', 100), +(66318, 'Marita', 1951, 'F', 100), +(66319, 'Nila', 1951, 'F', 100), +(66320, 'Shellie', 1951, 'F', 100), +(66321, 'Sheron', 1951, 'F', 100), +(66322, 'James', 1951, 'M', 87175), +(66323, 'Robert', 1951, 'M', 86327), +(66324, 'John', 1951, 'M', 81512), +(66325, 'Michael', 1951, 'M', 72750), +(66326, 'David', 1951, 'M', 64741), +(66327, 'William', 1951, 'M', 62718), +(66328, 'Richard', 1951, 'M', 54485), +(66329, 'Thomas', 1951, 'M', 48237), +(66330, 'Charles', 1951, 'M', 39346), +(66331, 'Gary', 1951, 'M', 38123), +(66332, 'Larry', 1951, 'M', 30501), +(66333, 'Ronald', 1951, 'M', 29017), +(66334, 'Steven', 1951, 'M', 28340), +(66335, 'Joseph', 1951, 'M', 28113), +(66336, 'Donald', 1951, 'M', 27907), +(66337, 'Kenneth', 1951, 'M', 25816), +(66338, 'Dennis', 1951, 'M', 24232), +(66339, 'Paul', 1951, 'M', 22824), +(66340, 'Stephen', 1951, 'M', 22436), +(66341, 'Mark', 1951, 'M', 21186), +(66342, 'Daniel', 1951, 'M', 21100), +(66343, 'George', 1951, 'M', 20202), +(66344, 'Edward', 1951, 'M', 19879), +(66345, 'Jerry', 1951, 'M', 15149), +(66346, 'Gregory', 1951, 'M', 14089), +(66347, 'Bruce', 1951, 'M', 14071), +(66348, 'Douglas', 1951, 'M', 13881), +(66349, 'Timothy', 1951, 'M', 12711), +(66350, 'Roger', 1951, 'M', 12416), +(66351, 'Terry', 1951, 'M', 12204), +(66352, 'Frank', 1951, 'M', 11452), +(66353, 'Raymond', 1951, 'M', 11219), +(66354, 'Lawrence', 1951, 'M', 10250), +(66355, 'Anthony', 1951, 'M', 9841), +(66356, 'Jeffrey', 1951, 'M', 9712), +(66357, 'Gerald', 1951, 'M', 9533), +(66358, 'Wayne', 1951, 'M', 9320), +(66359, 'Peter', 1951, 'M', 9012), +(66360, 'Patrick', 1951, 'M', 8743), +(66361, 'Alan', 1951, 'M', 8406), +(66362, 'Danny', 1951, 'M', 8169), +(66363, 'Walter', 1951, 'M', 8027), +(66364, 'Carl', 1951, 'M', 7634), +(66365, 'Arthur', 1951, 'M', 7403), +(66366, 'Willie', 1951, 'M', 7214), +(66367, 'Harold', 1951, 'M', 7163), +(66368, 'Henry', 1951, 'M', 7112), +(66369, 'Jack', 1951, 'M', 6990), +(66370, 'Dale', 1951, 'M', 6961), +(66371, 'Johnny', 1951, 'M', 6695), +(66372, 'Ralph', 1951, 'M', 6514), +(66373, 'Roy', 1951, 'M', 6452), +(66374, 'Kevin', 1951, 'M', 6338), +(66375, 'Stanley', 1951, 'M', 6199), +(66376, 'Philip', 1951, 'M', 6097), +(66377, 'Randy', 1951, 'M', 6034), +(66378, 'Joe', 1951, 'M', 5824), +(66379, 'Glenn', 1951, 'M', 5796), +(66380, 'Keith', 1951, 'M', 5772), +(66381, 'Albert', 1951, 'M', 5764), +(66382, 'Christopher', 1951, 'M', 5708), +(66383, 'Jimmy', 1951, 'M', 5685), +(66384, 'Craig', 1951, 'M', 5622), +(66385, 'Billy', 1951, 'M', 5599), +(66386, 'Eugene', 1951, 'M', 5572), +(66387, 'Randall', 1951, 'M', 5532), +(66388, 'Samuel', 1951, 'M', 5472), +(66389, 'Scott', 1951, 'M', 5380), +(66390, 'Andrew', 1951, 'M', 5375), +(66391, 'Harry', 1951, 'M', 5303), +(66392, 'Barry', 1951, 'M', 5278), +(66393, 'Russell', 1951, 'M', 5177), +(66394, 'Allen', 1951, 'M', 5176), +(66395, 'Brian', 1951, 'M', 5102), +(66396, 'Howard', 1951, 'M', 5102), +(66397, 'Louis', 1951, 'M', 5091), +(66398, 'Bobby', 1951, 'M', 4993), +(66399, 'Frederick', 1951, 'M', 4983), +(66400, 'Phillip', 1951, 'M', 4906), +(66401, 'Leonard', 1951, 'M', 4729), +(66402, 'Martin', 1951, 'M', 4590), +(66403, 'Ronnie', 1951, 'M', 4534), +(66404, 'Ernest', 1951, 'M', 4378), +(66405, 'Rodney', 1951, 'M', 4291), +(66406, 'Francis', 1951, 'M', 4204), +(66407, 'Steve', 1951, 'M', 4042), +(66408, 'Fred', 1951, 'M', 3990), +(66409, 'Melvin', 1951, 'M', 3831), +(66410, 'Eddie', 1951, 'M', 3742), +(66411, 'Norman', 1951, 'M', 3730), +(66412, 'Curtis', 1951, 'M', 3714), +(66413, 'Lee', 1951, 'M', 3684), +(66414, 'Eric', 1951, 'M', 3659), +(66415, 'Tommy', 1951, 'M', 3577), +(66416, 'Earl', 1951, 'M', 3563), +(66417, 'Marvin', 1951, 'M', 3550), +(66418, 'Micheal', 1951, 'M', 3286), +(66419, 'Clarence', 1951, 'M', 3219), +(66420, 'Theodore', 1951, 'M', 3218), +(66421, 'Alfred', 1951, 'M', 3194), +(66422, 'Clifford', 1951, 'M', 3154), +(66423, 'Ricky', 1951, 'M', 3072), +(66424, 'Jerome', 1951, 'M', 2987), +(66425, 'Vincent', 1951, 'M', 2919), +(66426, 'Dean', 1951, 'M', 2891), +(66427, 'Calvin', 1951, 'M', 2831), +(66428, 'Bernard', 1951, 'M', 2759), +(66429, 'Gordon', 1951, 'M', 2754), +(66430, 'Darrell', 1951, 'M', 2738), +(66431, 'Victor', 1951, 'M', 2734), +(66432, 'Leroy', 1951, 'M', 2716), +(66433, 'Herbert', 1951, 'M', 2697), +(66434, 'Jose', 1951, 'M', 2685), +(66435, 'Ray', 1951, 'M', 2674), +(66436, 'Jesse', 1951, 'M', 2670), +(66437, 'Jay', 1951, 'M', 2638), +(66438, 'Don', 1951, 'M', 2618), +(66439, 'Warren', 1951, 'M', 2600), +(66440, 'Edwin', 1951, 'M', 2564), +(66441, 'Alvin', 1951, 'M', 2386), +(66442, 'Nicholas', 1951, 'M', 2382), +(66443, 'Leon', 1951, 'M', 2372), +(66444, 'Benjamin', 1951, 'M', 2348), +(66445, 'Lloyd', 1951, 'M', 2299), +(66446, 'Leslie', 1951, 'M', 2294), +(66447, 'Gene', 1951, 'M', 2235), +(66448, 'Glen', 1951, 'M', 2216), +(66449, 'Mike', 1951, 'M', 2196), +(66450, 'Joel', 1951, 'M', 2157), +(66451, 'Duane', 1951, 'M', 2150), +(66452, 'Vernon', 1951, 'M', 2098), +(66453, 'Dwight', 1951, 'M', 2052), +(66454, 'Jackie', 1951, 'M', 2049), +(66455, 'Clyde', 1951, 'M', 2046), +(66456, 'Lewis', 1951, 'M', 1998), +(66457, 'Dan', 1951, 'M', 1993), +(66458, 'Allan', 1951, 'M', 1965), +(66459, 'Jon', 1951, 'M', 1962), +(66460, 'Lonnie', 1951, 'M', 1937), +(66461, 'Floyd', 1951, 'M', 1932), +(66462, 'Tony', 1951, 'M', 1924), +(66463, 'Gilbert', 1951, 'M', 1914), +(66464, 'Rick', 1951, 'M', 1892), +(66465, 'Juan', 1951, 'M', 1837), +(66466, 'Bradley', 1951, 'M', 1811), +(66467, 'Jimmie', 1951, 'M', 1810), +(66468, 'Jonathan', 1951, 'M', 1774), +(66469, 'Marc', 1951, 'M', 1770), +(66470, 'Neil', 1951, 'M', 1756), +(66471, 'Donnie', 1951, 'M', 1728), +(66472, 'Lester', 1951, 'M', 1719), +(66473, 'Franklin', 1951, 'M', 1695), +(66474, 'Charlie', 1951, 'M', 1683), +(66475, 'Lynn', 1951, 'M', 1669), +(66476, 'Garry', 1951, 'M', 1665), +(66477, 'Leo', 1951, 'M', 1660), +(66478, 'Bill', 1951, 'M', 1655), +(66479, 'Manuel', 1951, 'M', 1648), +(66480, 'Harvey', 1951, 'M', 1639), +(66481, 'Randolph', 1951, 'M', 1632), +(66482, 'Jeffery', 1951, 'M', 1623), +(66483, 'Johnnie', 1951, 'M', 1622), +(66484, 'Matthew', 1951, 'M', 1603), +(66485, 'Jim', 1951, 'M', 1593), +(66486, 'Freddie', 1951, 'M', 1555), +(66487, 'Rickey', 1951, 'M', 1541), +(66488, 'Herman', 1951, 'M', 1540), +(66489, 'Milton', 1951, 'M', 1519), +(66490, 'Tom', 1951, 'M', 1518), +(66491, 'Wesley', 1951, 'M', 1511), +(66492, 'Rex', 1951, 'M', 1504), +(66493, 'Kim', 1951, 'M', 1474), +(66494, 'Chris', 1951, 'M', 1468), +(66495, 'Reginald', 1951, 'M', 1464), +(66496, 'Mitchell', 1951, 'M', 1444), +(66497, 'Karl', 1951, 'M', 1442), +(66498, 'Arnold', 1951, 'M', 1427), +(66499, 'Chester', 1951, 'M', 1402), +(66500, 'Guy', 1951, 'M', 1395), +(66501, 'Ted', 1951, 'M', 1389), +(66502, 'Kent', 1951, 'M', 1324), +(66503, 'Cecil', 1951, 'M', 1321), +(66504, 'Gerard', 1951, 'M', 1299), +(66505, 'Roland', 1951, 'M', 1297), +(66506, 'Dana', 1951, 'M', 1282), +(66507, 'Stuart', 1951, 'M', 1253), +(66508, 'Nathaniel', 1951, 'M', 1243), +(66509, 'Claude', 1951, 'M', 1237), +(66510, 'Carlos', 1951, 'M', 1230), +(66511, 'Alexander', 1951, 'M', 1211), +(66512, 'Kerry', 1951, 'M', 1176), +(66513, 'Perry', 1951, 'M', 1175), +(66514, 'Fredrick', 1951, 'M', 1169), +(66515, 'Terrence', 1951, 'M', 1168), +(66516, 'Maurice', 1951, 'M', 1118), +(66517, 'Daryl', 1951, 'M', 1114), +(66518, 'Marshall', 1951, 'M', 1079), +(66519, 'Darryl', 1951, 'M', 1070), +(66520, 'Oscar', 1951, 'M', 1062), +(66521, 'Ruben', 1951, 'M', 1037), +(66522, 'Sam', 1951, 'M', 1031), +(66523, 'Sidney', 1951, 'M', 1027), +(66524, 'Hugh', 1951, 'M', 1019), +(66525, 'Kirk', 1951, 'M', 1002), +(66526, 'Wallace', 1951, 'M', 999), +(66527, 'Jessie', 1951, 'M', 990), +(66528, 'Robin', 1951, 'M', 954), +(66529, 'Clifton', 1951, 'M', 953), +(66530, 'Neal', 1951, 'M', 953), +(66531, 'Brent', 1951, 'M', 943), +(66532, 'Edgar', 1951, 'M', 939), +(66533, 'Kurt', 1951, 'M', 939), +(66534, 'Benny', 1951, 'M', 926), +(66535, 'Terrance', 1951, 'M', 915), +(66536, 'Antonio', 1951, 'M', 914), +(66537, 'Clinton', 1951, 'M', 898), +(66538, 'Morris', 1951, 'M', 898), +(66539, 'Tyrone', 1951, 'M', 889), +(66540, 'Ross', 1951, 'M', 884), +(66541, 'Sammy', 1951, 'M', 881), +(66542, 'Aaron', 1951, 'M', 868), +(66543, 'Nathan', 1951, 'M', 868), +(66544, 'Wendell', 1951, 'M', 866), +(66545, 'Mario', 1951, 'M', 862), +(66546, 'Marion', 1951, 'M', 854), +(66547, 'Elmer', 1951, 'M', 840), +(66548, 'Byron', 1951, 'M', 838), +(66549, 'Rudolph', 1951, 'M', 829), +(66550, 'Laurence', 1951, 'M', 822), +(66551, 'Otis', 1951, 'M', 820), +(66552, 'Jesus', 1951, 'M', 815), +(66553, 'Lyle', 1951, 'M', 814), +(66554, 'Clayton', 1951, 'M', 813), +(66555, 'Bryan', 1951, 'M', 812), +(66556, 'Ira', 1951, 'M', 812), +(66557, 'Bob', 1951, 'M', 808), +(66558, 'Bennie', 1951, 'M', 806), +(66559, 'Nelson', 1951, 'M', 803), +(66560, 'Earnest', 1951, 'M', 802), +(66561, 'Max', 1951, 'M', 802), +(66562, 'Todd', 1951, 'M', 796), +(66563, 'Virgil', 1951, 'M', 786), +(66564, 'Willard', 1951, 'M', 778), +(66565, 'Everett', 1951, 'M', 769), +(66566, 'Lance', 1951, 'M', 749), +(66567, 'Dave', 1951, 'M', 744), +(66568, 'Greg', 1951, 'M', 738), +(66569, 'Jan', 1951, 'M', 731), +(66570, 'Luis', 1951, 'M', 731), +(66571, 'Tim', 1951, 'M', 715), +(66572, 'Raul', 1951, 'M', 702), +(66573, 'Kelly', 1951, 'M', 698), +(66574, 'Alex', 1951, 'M', 695), +(66575, 'Francisco', 1951, 'M', 689), +(66576, 'Ben', 1951, 'M', 687), +(66577, 'Luther', 1951, 'M', 679), +(66578, 'Ricardo', 1951, 'M', 671), +(66579, 'Carlton', 1951, 'M', 667), +(66580, 'Loren', 1951, 'M', 666), +(66581, 'Myron', 1951, 'M', 662), +(66582, 'Randal', 1951, 'M', 659), +(66583, 'Roberto', 1951, 'M', 653), +(66584, 'Rudy', 1951, 'M', 653), +(66585, 'Alton', 1951, 'M', 650), +(66586, 'Frankie', 1951, 'M', 646), +(66587, 'Sylvester', 1951, 'M', 645), +(66588, 'Gregg', 1951, 'M', 636), +(66589, 'Clark', 1951, 'M', 634), +(66590, 'Sherman', 1951, 'M', 633), +(66591, 'Edmund', 1951, 'M', 625), +(66592, 'Troy', 1951, 'M', 625), +(66593, 'Hubert', 1951, 'M', 618), +(66594, 'Brad', 1951, 'M', 616), +(66595, 'Delbert', 1951, 'M', 607), +(66596, 'Darrel', 1951, 'M', 603), +(66597, 'Tommie', 1951, 'M', 602), +(66598, 'Horace', 1951, 'M', 600), +(66599, 'Salvatore', 1951, 'M', 595), +(66600, 'Leland', 1951, 'M', 590), +(66601, 'Hector', 1951, 'M', 589), +(66602, 'Malcolm', 1951, 'M', 589), +(66603, 'Archie', 1951, 'M', 587), +(66604, 'Marcus', 1951, 'M', 578), +(66605, 'Rodger', 1951, 'M', 576), +(66606, 'Bradford', 1951, 'M', 574), +(66607, 'Jeff', 1951, 'M', 567), +(66608, 'Lowell', 1951, 'M', 564), +(66609, 'Geoffrey', 1951, 'M', 563), +(66610, 'Teddy', 1951, 'M', 560), +(66611, 'Ramon', 1951, 'M', 558), +(66612, 'Roosevelt', 1951, 'M', 558), +(66613, 'Wade', 1951, 'M', 557), +(66614, 'Isaac', 1951, 'M', 552), +(66615, 'Mickey', 1951, 'M', 551), +(66616, 'Oliver', 1951, 'M', 550), +(66617, 'Wilbert', 1951, 'M', 542), +(66618, 'Denis', 1951, 'M', 541), +(66619, 'Homer', 1951, 'M', 538), +(66620, 'Pete', 1951, 'M', 538), +(66621, 'Felix', 1951, 'M', 536), +(66622, 'Jerald', 1951, 'M', 535), +(66623, 'Rickie', 1951, 'M', 533), +(66624, 'Pedro', 1951, 'M', 522), +(66625, 'Doyle', 1951, 'M', 521), +(66626, 'Preston', 1951, 'M', 520), +(66627, 'Carroll', 1951, 'M', 513), +(66628, 'Stewart', 1951, 'M', 512), +(66629, 'Willis', 1951, 'M', 507), +(66630, 'Grant', 1951, 'M', 505), +(66631, 'Julius', 1951, 'M', 505), +(66632, 'Jacob', 1951, 'M', 502), +(66633, 'Forrest', 1951, 'M', 501), +(66634, 'Van', 1951, 'M', 497), +(66635, 'Armando', 1951, 'M', 490), +(66636, 'Julian', 1951, 'M', 490), +(66637, 'Mack', 1951, 'M', 487), +(66638, 'Kenny', 1951, 'M', 486), +(66639, 'Monte', 1951, 'M', 474), +(66640, 'Grady', 1951, 'M', 469), +(66641, 'Roderick', 1951, 'M', 465), +(66642, 'Miguel', 1951, 'M', 463), +(66643, 'Ervin', 1951, 'M', 462), +(66644, 'Nick', 1951, 'M', 448), +(66645, 'Angelo', 1951, 'M', 444), +(66646, 'Rufus', 1951, 'M', 444), +(66647, 'Stephan', 1951, 'M', 443), +(66648, 'Cary', 1951, 'M', 441), +(66649, 'Unknown', 1951, 'M', 439), +(66650, 'Wilbur', 1951, 'M', 437), +(66651, 'Dallas', 1951, 'M', 434), +(66652, 'Andy', 1951, 'M', 425), +(66653, 'Percy', 1951, 'M', 424), +(66654, 'Dewey', 1951, 'M', 419), +(66655, 'Ivan', 1951, 'M', 414), +(66656, 'Fernando', 1951, 'M', 409), +(66657, 'Conrad', 1951, 'M', 408), +(66658, 'Lanny', 1951, 'M', 408), +(66659, 'Freddy', 1951, 'M', 406), +(66660, 'Terence', 1951, 'M', 405), +(66661, 'Ellis', 1951, 'M', 404), +(66662, 'Lorenzo', 1951, 'M', 399), +(66663, 'Sammie', 1951, 'M', 398), +(66664, 'Elbert', 1951, 'M', 396), +(66665, 'Garland', 1951, 'M', 394), +(66666, 'Spencer', 1951, 'M', 394), +(66667, 'Dwayne', 1951, 'M', 390), +(66668, 'Hal', 1951, 'M', 387), +(66669, 'Alonzo', 1951, 'M', 385), +(66670, 'Rocky', 1951, 'M', 379), +(66671, 'Galen', 1951, 'M', 378), +(66672, 'Louie', 1951, 'M', 378), +(66673, 'Bert', 1951, 'M', 377), +(66674, 'Andre', 1951, 'M', 376), +(66675, 'Owen', 1951, 'M', 375), +(66676, 'Travis', 1951, 'M', 374), +(66677, 'Rene', 1951, 'M', 372), +(66678, 'Arturo', 1951, 'M', 370), +(66679, 'Buddy', 1951, 'M', 369), +(66680, 'Merle', 1951, 'M', 368), +(66681, 'Irvin', 1951, 'M', 367), +(66682, 'Boyd', 1951, 'M', 363), +(66683, 'Woodrow', 1951, 'M', 362), +(66684, 'Royce', 1951, 'M', 359), +(66685, 'Wilson', 1951, 'M', 356), +(66686, 'Adrian', 1951, 'M', 354), +(66687, 'Alfonso', 1951, 'M', 354), +(66688, 'Alfredo', 1951, 'M', 349), +(66689, 'Edmond', 1951, 'M', 347), +(66690, 'Kyle', 1951, 'M', 342), +(66691, 'Aubrey', 1951, 'M', 341), +(66692, 'Lionel', 1951, 'M', 340), +(66693, 'Dominic', 1951, 'M', 336), +(66694, 'Guadalupe', 1951, 'M', 336), +(66695, 'Salvador', 1951, 'M', 332), +(66696, 'Gale', 1951, 'M', 329), +(66697, 'Cornelius', 1951, 'M', 327), +(66698, 'Darwin', 1951, 'M', 321), +(66699, 'Emmett', 1951, 'M', 319), +(66700, 'Monty', 1951, 'M', 319), +(66701, 'Sheldon', 1951, 'M', 319), +(66702, 'Cleveland', 1951, 'M', 315), +(66703, 'Moses', 1951, 'M', 315), +(66704, 'Noel', 1951, 'M', 315), +(66705, 'Dominick', 1951, 'M', 314), +(66706, 'Pat', 1951, 'M', 314), +(66707, 'Wilfred', 1951, 'M', 305), +(66708, 'Vance', 1951, 'M', 304), +(66709, 'Harlan', 1951, 'M', 301), +(66710, 'Grover', 1951, 'M', 300), +(66711, 'Miles', 1951, 'M', 300), +(66712, 'Rodolfo', 1951, 'M', 300), +(66713, 'Ernie', 1951, 'M', 299), +(66714, 'Vaughn', 1951, 'M', 298), +(66715, 'Adam', 1951, 'M', 297), +(66716, 'Ned', 1951, 'M', 297), +(66717, 'Amos', 1951, 'M', 295), +(66718, 'Ken', 1951, 'M', 292), +(66719, 'Tracy', 1951, 'M', 291), +(66720, 'Carey', 1951, 'M', 290), +(66721, 'Phil', 1951, 'M', 290), +(66722, 'Eldon', 1951, 'M', 287), +(66723, 'Ron', 1951, 'M', 286), +(66724, 'Irving', 1951, 'M', 285), +(66725, 'Lamar', 1951, 'M', 284), +(66726, 'Abraham', 1951, 'M', 283), +(66727, 'Alphonso', 1951, 'M', 282), +(66728, 'Jeffry', 1951, 'M', 278), +(66729, 'Derek', 1951, 'M', 277), +(66730, 'Jerrold', 1951, 'M', 277), +(66731, 'Angel', 1951, 'M', 274), +(66732, 'Elton', 1951, 'M', 274), +(66733, 'Murray', 1951, 'M', 273), +(66734, 'Rafael', 1951, 'M', 272), +(66735, 'Christian', 1951, 'M', 270), +(66736, 'Junior', 1951, 'M', 270), +(66737, 'Denny', 1951, 'M', 269), +(66738, 'Marlin', 1951, 'M', 267), +(66739, 'Dannie', 1951, 'M', 265), +(66740, 'Al', 1951, 'M', 262), +(66741, 'Gerry', 1951, 'M', 261), +(66742, 'Barney', 1951, 'M', 259), +(66743, 'Blaine', 1951, 'M', 259), +(66744, 'Elliott', 1951, 'M', 258), +(66745, 'Sterling', 1951, 'M', 258), +(66746, 'Harley', 1951, 'M', 257), +(66747, 'Orville', 1951, 'M', 256), +(66748, 'Norris', 1951, 'M', 255), +(66749, 'Austin', 1951, 'M', 252), +(66750, 'Winston', 1951, 'M', 252), +(66751, 'Emanuel', 1951, 'M', 247), +(66752, 'Kirby', 1951, 'M', 247), +(66753, 'Dick', 1951, 'M', 246), +(66754, 'Gabriel', 1951, 'M', 245), +(66755, 'Ernesto', 1951, 'M', 243), +(66756, 'Christophe', 1951, 'M', 242), +(66757, 'Frederic', 1951, 'M', 242), +(66758, 'Reed', 1951, 'M', 240), +(66759, 'Dexter', 1951, 'M', 239), +(66760, 'Dewayne', 1951, 'M', 238), +(66761, 'Enrique', 1951, 'M', 238), +(66762, 'Lon', 1951, 'M', 238), +(66763, 'Ronny', 1951, 'M', 234), +(66764, 'Jess', 1951, 'M', 232), +(66765, 'Kermit', 1951, 'M', 231), +(66766, 'Loyd', 1951, 'M', 231), +(66767, 'Reynaldo', 1951, 'M', 229), +(66768, 'Levi', 1951, 'M', 228), +(66769, 'Sanford', 1951, 'M', 226), +(66770, 'Evan', 1951, 'M', 225), +(66771, 'Thurman', 1951, 'M', 225), +(66772, 'Clay', 1951, 'M', 224), +(66773, 'Brett', 1951, 'M', 223), +(66774, 'Alberto', 1951, 'M', 222), +(66775, 'Marty', 1951, 'M', 222), +(66776, 'Donny', 1951, 'M', 221), +(66777, 'Elijah', 1951, 'M', 221), +(66778, 'Jorge', 1951, 'M', 221), +(66779, 'Derrick', 1951, 'M', 220), +(66780, 'Harrison', 1951, 'M', 217), +(66781, 'Linwood', 1951, 'M', 217), +(66782, 'Reuben', 1951, 'M', 217), +(66783, 'Burton', 1951, 'M', 216), +(66784, 'Darnell', 1951, 'M', 215), +(66785, 'Donn', 1951, 'M', 215), +(66786, 'Emil', 1951, 'M', 215), +(66787, 'Norbert', 1951, 'M', 214), +(66788, 'Elliot', 1951, 'M', 212), +(66789, 'Jasper', 1951, 'M', 211); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(66790, 'Billie', 1951, 'M', 209), +(66791, 'Roscoe', 1951, 'M', 209), +(66792, 'Michel', 1951, 'M', 208), +(66793, 'Randell', 1951, 'M', 207), +(66794, 'Elwood', 1951, 'M', 206), +(66795, 'Kennith', 1951, 'M', 204), +(66796, 'August', 1951, 'M', 202), +(66797, 'Lamont', 1951, 'M', 202), +(66798, 'Joesph', 1951, 'M', 201), +(66799, 'Carmen', 1951, 'M', 199), +(66800, 'Dudley', 1951, 'M', 199), +(66801, 'Blair', 1951, 'M', 198), +(66802, 'Simon', 1951, 'M', 197), +(66803, 'Ward', 1951, 'M', 197), +(66804, 'Joey', 1951, 'M', 196), +(66805, 'Curt', 1951, 'M', 195), +(66806, 'Drew', 1951, 'M', 195), +(66807, 'Terrell', 1951, 'M', 195), +(66808, 'Javier', 1951, 'M', 194), +(66809, 'Colin', 1951, 'M', 193), +(66810, 'Jason', 1951, 'M', 193), +(66811, 'Odell', 1951, 'M', 193), +(66812, 'Will', 1951, 'M', 192), +(66813, 'Cornell', 1951, 'M', 191), +(66814, 'Julio', 1951, 'M', 189), +(66815, 'Nolan', 1951, 'M', 188), +(66816, 'Thaddeus', 1951, 'M', 186), +(66817, 'Timmy', 1951, 'M', 186), +(66818, 'Pablo', 1951, 'M', 185), +(66819, 'Rocco', 1951, 'M', 185), +(66820, 'Abel', 1951, 'M', 184), +(66821, 'Garrett', 1951, 'M', 183), +(66822, 'Kelvin', 1951, 'M', 181), +(66823, 'Lane', 1951, 'M', 181), +(66824, 'Ramiro', 1951, 'M', 181), +(66825, 'Russel', 1951, 'M', 181), +(66826, 'Weldon', 1951, 'M', 181), +(66827, 'Bobbie', 1951, 'M', 180), +(66828, 'Sandy', 1951, 'M', 180), +(66829, 'Gail', 1951, 'M', 179), +(66830, 'Jake', 1951, 'M', 179), +(66831, 'Solomon', 1951, 'M', 178), +(66832, 'Fredric', 1951, 'M', 177), +(66833, 'Ulysses', 1951, 'M', 177), +(66834, 'Wiley', 1951, 'M', 177), +(66835, 'Eddy', 1951, 'M', 176), +(66836, 'Orlando', 1951, 'M', 176), +(66837, 'Domingo', 1951, 'M', 175), +(66838, 'Merlin', 1951, 'M', 174), +(66839, 'Eduardo', 1951, 'M', 173), +(66840, 'Gilberto', 1951, 'M', 173), +(66841, 'Tomas', 1951, 'M', 173), +(66842, 'Carter', 1951, 'M', 172), +(66843, 'Elvin', 1951, 'M', 172), +(66844, 'Millard', 1951, 'M', 172), +(66845, 'Israel', 1951, 'M', 171), +(66846, 'Geary', 1951, 'M', 170), +(66847, 'Denver', 1951, 'M', 168), +(66848, 'Jaime', 1951, 'M', 167), +(66849, 'Luke', 1951, 'M', 167), +(66850, 'Felipe', 1951, 'M', 166), +(66851, 'Joshua', 1951, 'M', 164), +(66852, 'Maynard', 1951, 'M', 163), +(66853, 'Shelby', 1951, 'M', 162), +(66854, 'Dane', 1951, 'M', 161), +(66855, 'Jackson', 1951, 'M', 161), +(66856, 'Jefferson', 1951, 'M', 161), +(66857, 'Mary', 1951, 'M', 161), +(66858, 'Erwin', 1951, 'M', 159), +(66859, 'Ivory', 1951, 'M', 159), +(66860, 'Barton', 1951, 'M', 158), +(66861, 'Bryant', 1951, 'M', 158), +(66862, 'Delmar', 1951, 'M', 158), +(66863, 'Reid', 1951, 'M', 158), +(66864, 'Elias', 1951, 'M', 157), +(66865, 'Morgan', 1951, 'M', 155), +(66866, 'Roman', 1951, 'M', 155), +(66867, 'Casey', 1951, 'M', 154), +(66868, 'Cedric', 1951, 'M', 154), +(66869, 'Noah', 1951, 'M', 154), +(66870, 'Rogers', 1951, 'M', 154), +(66871, 'Danial', 1951, 'M', 153), +(66872, 'Hollis', 1951, 'M', 153), +(66873, 'Jody', 1951, 'M', 153), +(66874, 'Erik', 1951, 'M', 152), +(66875, 'Sean', 1951, 'M', 152), +(66876, 'Vern', 1951, 'M', 152), +(66877, 'Zachary', 1951, 'M', 152), +(66878, 'Carson', 1951, 'M', 151), +(66879, 'Gus', 1951, 'M', 150), +(66880, 'Jeremiah', 1951, 'M', 150), +(66881, 'Jerold', 1951, 'M', 150), +(66882, 'Coy', 1951, 'M', 149), +(66883, 'Alejandro', 1951, 'M', 148), +(66884, 'Merrill', 1951, 'M', 148), +(66885, 'Riley', 1951, 'M', 147), +(66886, 'Jacky', 1951, 'M', 146), +(66887, 'Nicky', 1951, 'M', 146), +(66888, 'Ollie', 1951, 'M', 146), +(66889, 'Santiago', 1951, 'M', 146), +(66890, 'Chuck', 1951, 'M', 145), +(66891, 'Emery', 1951, 'M', 145), +(66892, 'Kendall', 1951, 'M', 145), +(66893, 'Kris', 1951, 'M', 145), +(66894, 'Monroe', 1951, 'M', 145), +(66895, 'Otto', 1951, 'M', 145), +(66896, 'Stan', 1951, 'M', 145), +(66897, 'Winfred', 1951, 'M', 145), +(66898, 'Bennett', 1951, 'M', 144), +(66899, 'Irwin', 1951, 'M', 144), +(66900, 'Charley', 1951, 'M', 143), +(66901, 'Davis', 1951, 'M', 143), +(66902, 'Eli', 1951, 'M', 142), +(66903, 'Toby', 1951, 'M', 142), +(66904, 'Blake', 1951, 'M', 141), +(66905, 'Doug', 1951, 'M', 141), +(66906, 'Jean', 1951, 'M', 140), +(66907, 'Armand', 1951, 'M', 139), +(66908, 'Emory', 1951, 'M', 139), +(66909, 'Bryce', 1951, 'M', 138), +(66910, 'Clement', 1951, 'M', 138), +(66911, 'Duncan', 1951, 'M', 138), +(66912, 'Dwain', 1951, 'M', 138), +(66913, 'Ismael', 1951, 'M', 138), +(66914, 'Shawn', 1951, 'M', 137), +(66915, 'Val', 1951, 'M', 137), +(66916, 'Clair', 1951, 'M', 136), +(66917, 'Connie', 1951, 'M', 136), +(66918, 'Harris', 1951, 'M', 136), +(66919, 'Booker', 1951, 'M', 135), +(66920, 'Donnell', 1951, 'M', 135), +(66921, 'Johnie', 1951, 'M', 135), +(66922, 'Mitchel', 1951, 'M', 135), +(66923, 'Rory', 1951, 'M', 135), +(66924, 'Andres', 1951, 'M', 134), +(66925, 'Damon', 1951, 'M', 134), +(66926, 'Justin', 1951, 'M', 134), +(66927, 'Santos', 1951, 'M', 134), +(66928, 'Kenton', 1951, 'M', 133), +(66929, 'Major', 1951, 'M', 133), +(66930, 'Robbie', 1951, 'M', 133), +(66931, 'Guillermo', 1951, 'M', 132), +(66932, 'Isaiah', 1951, 'M', 132), +(66933, 'Reggie', 1951, 'M', 132), +(66934, 'Royal', 1951, 'M', 132), +(66935, 'Stevie', 1951, 'M', 132), +(66936, 'Wilford', 1951, 'M', 132), +(66937, 'Carmine', 1951, 'M', 131), +(66938, 'Earle', 1951, 'M', 131), +(66939, 'Emilio', 1951, 'M', 131), +(66940, 'Lonny', 1951, 'M', 131), +(66941, 'Arlen', 1951, 'M', 129), +(66942, 'Dickie', 1951, 'M', 129), +(66943, 'Patricia', 1951, 'M', 129), +(66944, 'Rogelio', 1951, 'M', 129), +(66945, 'Ignacio', 1951, 'M', 128), +(66946, 'Lindsey', 1951, 'M', 128), +(66947, 'Mac', 1951, 'M', 127), +(66948, 'Benito', 1951, 'M', 126), +(66949, 'Hershel', 1951, 'M', 126), +(66950, 'Mervin', 1951, 'M', 126), +(66951, 'Vito', 1951, 'M', 126), +(66952, 'Ed', 1951, 'M', 125), +(66953, 'Linda', 1951, 'M', 125), +(66954, 'Shelton', 1951, 'M', 125), +(66955, 'Anton', 1951, 'M', 123), +(66956, 'Burt', 1951, 'M', 123), +(66957, 'Errol', 1951, 'M', 123), +(66958, 'Mathew', 1951, 'M', 123), +(66959, 'Rolando', 1951, 'M', 123), +(66960, 'Saul', 1951, 'M', 123), +(66961, 'Laverne', 1951, 'M', 122), +(66962, 'Scotty', 1951, 'M', 122), +(66963, 'Stanford', 1951, 'M', 122), +(66964, 'Dalton', 1951, 'M', 121), +(66965, 'Herschel', 1951, 'M', 121), +(66966, 'Lenard', 1951, 'M', 121), +(66967, 'Bernie', 1951, 'M', 119), +(66968, 'Nickolas', 1951, 'M', 119), +(66969, 'Stevan', 1951, 'M', 119), +(66970, 'Adolph', 1951, 'M', 118), +(66971, 'Gearld', 1951, 'M', 118), +(66972, 'Mikel', 1951, 'M', 118), +(66973, 'Seth', 1951, 'M', 118), +(66974, 'Douglass', 1951, 'M', 117), +(66975, 'Myles', 1951, 'M', 116), +(66976, 'Rusty', 1951, 'M', 116), +(66977, 'Stacy', 1951, 'M', 116), +(66978, 'Butch', 1951, 'M', 115), +(66979, 'Lemuel', 1951, 'M', 115), +(66980, 'Fletcher', 1951, 'M', 114), +(66981, 'Emerson', 1951, 'M', 113), +(66982, 'Emmitt', 1951, 'M', 112), +(66983, 'Nicolas', 1951, 'M', 112), +(66984, 'Wilton', 1951, 'M', 112), +(66985, 'Quentin', 1951, 'M', 111), +(66986, 'Carol', 1951, 'M', 110), +(66987, 'Everette', 1951, 'M', 110), +(66988, 'Sonny', 1951, 'M', 110), +(66989, 'Freeman', 1951, 'M', 109), +(66990, 'Garth', 1951, 'M', 109), +(66991, 'Basil', 1951, 'M', 108), +(66992, 'Lawerence', 1951, 'M', 108), +(66993, 'Shannon', 1951, 'M', 108), +(66994, 'Buford', 1951, 'M', 107), +(66995, 'Felton', 1951, 'M', 107), +(66996, 'Jere', 1951, 'M', 107), +(66997, 'Stanton', 1951, 'M', 107), +(66998, 'Wilmer', 1951, 'M', 107), +(66999, 'Graham', 1951, 'M', 106), +(67000, 'Randel', 1951, 'M', 106), +(67001, 'Hiram', 1951, 'M', 105), +(67002, 'Lindsay', 1951, 'M', 105), +(67003, 'Milo', 1951, 'M', 105), +(67004, 'Ryan', 1951, 'M', 105), +(67005, 'Dee', 1951, 'M', 104), +(67006, 'Ian', 1951, 'M', 104), +(67007, 'Rolland', 1951, 'M', 104), +(67008, 'Sergio', 1951, 'M', 104), +(67009, 'Artis', 1951, 'M', 103), +(67010, 'Cameron', 1951, 'M', 103), +(67011, 'Gayle', 1951, 'M', 103), +(67012, 'Hank', 1951, 'M', 103), +(67013, 'Rand', 1951, 'M', 103), +(67014, 'Bart', 1951, 'M', 102), +(67015, 'Dirk', 1951, 'M', 102), +(67016, 'Forest', 1951, 'M', 102), +(67017, 'Isiah', 1951, 'M', 102), +(67018, 'Anderson', 1951, 'M', 101), +(67019, 'Linda', 1952, 'F', 67096), +(67020, 'Mary', 1952, 'F', 65681), +(67021, 'Patricia', 1952, 'F', 53100), +(67022, 'Deborah', 1952, 'F', 49809), +(67023, 'Susan', 1952, 'F', 41346), +(67024, 'Barbara', 1952, 'F', 39888), +(67025, 'Nancy', 1952, 'F', 31730), +(67026, 'Karen', 1952, 'F', 28960), +(67027, 'Debra', 1952, 'F', 26835), +(67028, 'Sandra', 1952, 'F', 26081), +(67029, 'Kathleen', 1952, 'F', 25768), +(67030, 'Carol', 1952, 'F', 23997), +(67031, 'Donna', 1952, 'F', 23716), +(67032, 'Sharon', 1952, 'F', 23379), +(67033, 'Brenda', 1952, 'F', 21449), +(67034, 'Diane', 1952, 'F', 21061), +(67035, 'Pamela', 1952, 'F', 20884), +(67036, 'Cynthia', 1952, 'F', 19891), +(67037, 'Janet', 1952, 'F', 17928), +(67038, 'Christine', 1952, 'F', 17542), +(67039, 'Margaret', 1952, 'F', 17088), +(67040, 'Elizabeth', 1952, 'F', 16020), +(67041, 'Janice', 1952, 'F', 14981), +(67042, 'Carolyn', 1952, 'F', 14281), +(67043, 'Judith', 1952, 'F', 14066), +(67044, 'Judy', 1952, 'F', 13647), +(67045, 'Joyce', 1952, 'F', 13126), +(67046, 'Shirley', 1952, 'F', 12534), +(67047, 'Kathy', 1952, 'F', 12373), +(67048, 'Rebecca', 1952, 'F', 12226), +(67049, 'Cheryl', 1952, 'F', 12197), +(67050, 'Betty', 1952, 'F', 12124), +(67051, 'Denise', 1952, 'F', 11650), +(67052, 'Catherine', 1952, 'F', 11056), +(67053, 'Beverly', 1952, 'F', 10554), +(67054, 'Gloria', 1952, 'F', 10467), +(67055, 'Joan', 1952, 'F', 10272), +(67056, 'Marilyn', 1952, 'F', 9802), +(67057, 'Gail', 1952, 'F', 9770), +(67058, 'Martha', 1952, 'F', 9698), +(67059, 'Bonnie', 1952, 'F', 9397), +(67060, 'Jane', 1952, 'F', 9323), +(67061, 'Peggy', 1952, 'F', 8990), +(67062, 'Connie', 1952, 'F', 8753), +(67063, 'Ann', 1952, 'F', 8658), +(67064, 'Dorothy', 1952, 'F', 8613), +(67065, 'Paula', 1952, 'F', 8567), +(67066, 'Kathryn', 1952, 'F', 8494), +(67067, 'Virginia', 1952, 'F', 8163), +(67068, 'Jean', 1952, 'F', 7513), +(67069, 'Diana', 1952, 'F', 7391), +(67070, 'Teresa', 1952, 'F', 7300), +(67071, 'Laura', 1952, 'F', 7188), +(67072, 'Wanda', 1952, 'F', 7167), +(67073, 'Jo', 1952, 'F', 7104), +(67074, 'Cathy', 1952, 'F', 7012), +(67075, 'Jacqueline', 1952, 'F', 6947), +(67076, 'Ruth', 1952, 'F', 6945), +(67077, 'Katherine', 1952, 'F', 6889), +(67078, 'Theresa', 1952, 'F', 6811), +(67079, 'Vicki', 1952, 'F', 6776), +(67080, 'Rose', 1952, 'F', 6558), +(67081, 'Helen', 1952, 'F', 6471), +(67082, 'Sheila', 1952, 'F', 6217), +(67083, 'Phyllis', 1952, 'F', 6152), +(67084, 'Rita', 1952, 'F', 6146), +(67085, 'Frances', 1952, 'F', 6079), +(67086, 'Sherry', 1952, 'F', 5952), +(67087, 'Alice', 1952, 'F', 5913), +(67088, 'Ellen', 1952, 'F', 5840), +(67089, 'Lynn', 1952, 'F', 5815), +(67090, 'Maria', 1952, 'F', 5692), +(67091, 'Elaine', 1952, 'F', 5652), +(67092, 'Victoria', 1952, 'F', 5599), +(67093, 'Marsha', 1952, 'F', 5581), +(67094, 'Vickie', 1952, 'F', 5486), +(67095, 'Darlene', 1952, 'F', 5432), +(67096, 'Joanne', 1952, 'F', 5353), +(67097, 'Anne', 1952, 'F', 5257), +(67098, 'Marcia', 1952, 'F', 5206), +(67099, 'Sally', 1952, 'F', 5039), +(67100, 'Marie', 1952, 'F', 4970), +(67101, 'Doris', 1952, 'F', 4952), +(67102, 'Suzanne', 1952, 'F', 4907), +(67103, 'Julie', 1952, 'F', 4503), +(67104, 'Lois', 1952, 'F', 4360), +(67105, 'Valerie', 1952, 'F', 4262), +(67106, 'Roberta', 1952, 'F', 4226), +(67107, 'Charlotte', 1952, 'F', 4204), +(67108, 'Evelyn', 1952, 'F', 4155), +(67109, 'Anita', 1952, 'F', 4132), +(67110, 'Constance', 1952, 'F', 4114), +(67111, 'Sarah', 1952, 'F', 4040), +(67112, 'Maureen', 1952, 'F', 4039), +(67113, 'Rhonda', 1952, 'F', 3965), +(67114, 'Dianne', 1952, 'F', 3897), +(67115, 'Glenda', 1952, 'F', 3882), +(67116, 'Jeanne', 1952, 'F', 3829), +(67117, 'Sylvia', 1952, 'F', 3792), +(67118, 'Eileen', 1952, 'F', 3738), +(67119, 'Anna', 1952, 'F', 3713), +(67120, 'Robin', 1952, 'F', 3642), +(67121, 'Yvonne', 1952, 'F', 3626), +(67122, 'Leslie', 1952, 'F', 3575), +(67123, 'Wendy', 1952, 'F', 3557), +(67124, 'Charlene', 1952, 'F', 3543), +(67125, 'Jennifer', 1952, 'F', 3532), +(67126, 'Colleen', 1952, 'F', 3471), +(67127, 'Lorraine', 1952, 'F', 3462), +(67128, 'Michele', 1952, 'F', 3400), +(67129, 'Claudia', 1952, 'F', 3383), +(67130, 'Norma', 1952, 'F', 3345), +(67131, 'Gwendolyn', 1952, 'F', 3335), +(67132, 'Sue', 1952, 'F', 3334), +(67133, 'Laurie', 1952, 'F', 3269), +(67134, 'Joann', 1952, 'F', 3266), +(67135, 'Marlene', 1952, 'F', 3134), +(67136, 'Jill', 1952, 'F', 3054), +(67137, 'Geraldine', 1952, 'F', 3052), +(67138, 'Terry', 1952, 'F', 3034), +(67139, 'Irene', 1952, 'F', 3024), +(67140, 'Louise', 1952, 'F', 2979), +(67141, 'Stephanie', 1952, 'F', 2934), +(67142, 'Michelle', 1952, 'F', 2878), +(67143, 'Juanita', 1952, 'F', 2849), +(67144, 'Annie', 1952, 'F', 2845), +(67145, 'Lisa', 1952, 'F', 2845), +(67146, 'Patsy', 1952, 'F', 2831), +(67147, 'Lynda', 1952, 'F', 2813), +(67148, 'Rosemary', 1952, 'F', 2787), +(67149, 'Julia', 1952, 'F', 2783), +(67150, 'Kay', 1952, 'F', 2773), +(67151, 'Andrea', 1952, 'F', 2770), +(67152, 'Angela', 1952, 'F', 2644), +(67153, 'Gayle', 1952, 'F', 2633), +(67154, 'Loretta', 1952, 'F', 2618), +(67155, 'Jeanette', 1952, 'F', 2579), +(67156, 'Carla', 1952, 'F', 2563), +(67157, 'Regina', 1952, 'F', 2558), +(67158, 'Cindy', 1952, 'F', 2551), +(67159, 'Marjorie', 1952, 'F', 2520), +(67160, 'Vivian', 1952, 'F', 2510), +(67161, 'Jan', 1952, 'F', 2483), +(67162, 'Debbie', 1952, 'F', 2453), +(67163, 'Ruby', 1952, 'F', 2374), +(67164, 'Beth', 1952, 'F', 2357), +(67165, 'Arlene', 1952, 'F', 2330), +(67166, 'June', 1952, 'F', 2319), +(67167, 'Joy', 1952, 'F', 2275), +(67168, 'Lynne', 1952, 'F', 2264), +(67169, 'Sheryl', 1952, 'F', 2240), +(67170, 'Delores', 1952, 'F', 2195), +(67171, 'Janis', 1952, 'F', 2178), +(67172, 'Renee', 1952, 'F', 2178), +(67173, 'Christina', 1952, 'F', 2169), +(67174, 'Annette', 1952, 'F', 2157), +(67175, 'Penny', 1952, 'F', 2090), +(67176, 'Terri', 1952, 'F', 2076), +(67177, 'Mildred', 1952, 'F', 2055), +(67178, 'Sara', 1952, 'F', 2045), +(67179, 'Dolores', 1952, 'F', 2040), +(67180, 'Rosa', 1952, 'F', 1943), +(67181, 'Paulette', 1952, 'F', 1888), +(67182, 'Shelley', 1952, 'F', 1886), +(67183, 'Dawn', 1952, 'F', 1885), +(67184, 'Kristine', 1952, 'F', 1882), +(67185, 'Toni', 1952, 'F', 1879), +(67186, 'Audrey', 1952, 'F', 1868), +(67187, 'Josephine', 1952, 'F', 1865), +(67188, 'Carole', 1952, 'F', 1837), +(67189, 'Candace', 1952, 'F', 1835), +(67190, 'Belinda', 1952, 'F', 1832), +(67191, 'Yolanda', 1952, 'F', 1776), +(67192, 'Vicky', 1952, 'F', 1761), +(67193, 'Amy', 1952, 'F', 1753), +(67194, 'Edna', 1952, 'F', 1747), +(67195, 'Georgia', 1952, 'F', 1747), +(67196, 'Lillian', 1952, 'F', 1734), +(67197, 'Emma', 1952, 'F', 1712), +(67198, 'Esther', 1952, 'F', 1710), +(67199, 'Eva', 1952, 'F', 1702), +(67200, 'Jacquelyn', 1952, 'F', 1672), +(67201, 'Edith', 1952, 'F', 1642), +(67202, 'Carmen', 1952, 'F', 1605), +(67203, 'Rachel', 1952, 'F', 1604), +(67204, 'Pauline', 1952, 'F', 1600), +(67205, 'Roxanne', 1952, 'F', 1577), +(67206, 'Janie', 1952, 'F', 1572), +(67207, 'Veronica', 1952, 'F', 1572), +(67208, 'Jackie', 1952, 'F', 1561), +(67209, 'Marianne', 1952, 'F', 1550), +(67210, 'Priscilla', 1952, 'F', 1545), +(67211, 'Becky', 1952, 'F', 1536), +(67212, 'Grace', 1952, 'F', 1524), +(67213, 'Melinda', 1952, 'F', 1517), +(67214, 'Clara', 1952, 'F', 1510), +(67215, 'Monica', 1952, 'F', 1464), +(67216, 'Lucille', 1952, 'F', 1458), +(67217, 'Patti', 1952, 'F', 1456), +(67218, 'Bonita', 1952, 'F', 1455), +(67219, 'Melissa', 1952, 'F', 1442), +(67220, 'Wilma', 1952, 'F', 1422), +(67221, 'Lucy', 1952, 'F', 1417), +(67222, 'Margie', 1952, 'F', 1412), +(67223, 'Ethel', 1952, 'F', 1398), +(67224, 'Dianna', 1952, 'F', 1394), +(67225, 'Emily', 1952, 'F', 1393), +(67226, 'Billie', 1952, 'F', 1391), +(67227, 'Thelma', 1952, 'F', 1366), +(67228, 'Nina', 1952, 'F', 1356), +(67229, 'Melanie', 1952, 'F', 1349), +(67230, 'Bobbie', 1952, 'F', 1329), +(67231, 'Lydia', 1952, 'F', 1326), +(67232, 'Holly', 1952, 'F', 1317), +(67233, 'Gladys', 1952, 'F', 1303), +(67234, 'Kim', 1952, 'F', 1293), +(67235, 'Marion', 1952, 'F', 1263), +(67236, 'Bertha', 1952, 'F', 1254), +(67237, 'Eleanor', 1952, 'F', 1252), +(67238, 'Ella', 1952, 'F', 1247), +(67239, 'Marian', 1952, 'F', 1246), +(67240, 'Florence', 1952, 'F', 1243), +(67241, 'Shelia', 1952, 'F', 1239), +(67242, 'Ramona', 1952, 'F', 1230), +(67243, 'Beatrice', 1952, 'F', 1225), +(67244, 'Faye', 1952, 'F', 1221), +(67245, 'Bernice', 1952, 'F', 1211), +(67246, 'Willie', 1952, 'F', 1207), +(67247, 'Maryann', 1952, 'F', 1184), +(67248, 'Maxine', 1952, 'F', 1162), +(67249, 'Dana', 1952, 'F', 1145), +(67250, 'Melody', 1952, 'F', 1130), +(67251, 'Lillie', 1952, 'F', 1128), +(67252, 'Nora', 1952, 'F', 1121), +(67253, 'Carrie', 1952, 'F', 1109), +(67254, 'Dale', 1952, 'F', 1108), +(67255, 'Lana', 1952, 'F', 1107), +(67256, 'Tina', 1952, 'F', 1100), +(67257, 'Vera', 1952, 'F', 1091), +(67258, 'Patrice', 1952, 'F', 1087), +(67259, 'Claire', 1952, 'F', 1078), +(67260, 'Ida', 1952, 'F', 1064), +(67261, 'Francine', 1952, 'F', 1056), +(67262, 'Hazel', 1952, 'F', 1056), +(67263, 'Patty', 1952, 'F', 1044), +(67264, 'Alma', 1952, 'F', 1030), +(67265, 'Rosie', 1952, 'F', 1002), +(67266, 'Stella', 1952, 'F', 999), +(67267, 'Bernadette', 1952, 'F', 995), +(67268, 'Cecilia', 1952, 'F', 983), +(67269, 'Lori', 1952, 'F', 975), +(67270, 'Betsy', 1952, 'F', 974), +(67271, 'Antoinette', 1952, 'F', 967), +(67272, 'Kimberly', 1952, 'F', 966), +(67273, 'Mona', 1952, 'F', 949), +(67274, 'Lee', 1952, 'F', 947), +(67275, 'Doreen', 1952, 'F', 944), +(67276, 'Nadine', 1952, 'F', 943), +(67277, 'Myra', 1952, 'F', 939), +(67278, 'Dora', 1952, 'F', 929), +(67279, 'Trudy', 1952, 'F', 926), +(67280, 'Caroline', 1952, 'F', 920), +(67281, 'Iris', 1952, 'F', 918), +(67282, 'Miriam', 1952, 'F', 912), +(67283, 'Lucinda', 1952, 'F', 908), +(67284, 'Ginger', 1952, 'F', 902), +(67285, 'Jeannette', 1952, 'F', 899), +(67286, 'Lynette', 1952, 'F', 890), +(67287, 'Laurel', 1952, 'F', 888), +(67288, 'Harriet', 1952, 'F', 881), +(67289, 'Cathleen', 1952, 'F', 878), +(67290, 'Jessie', 1952, 'F', 878), +(67291, 'Susie', 1952, 'F', 877), +(67292, 'Alicia', 1952, 'F', 869), +(67293, 'Jody', 1952, 'F', 862), +(67294, 'Irma', 1952, 'F', 857), +(67295, 'Jeannie', 1952, 'F', 848), +(67296, 'Marguerite', 1952, 'F', 841), +(67297, 'Karla', 1952, 'F', 833), +(67298, 'April', 1952, 'F', 824), +(67299, 'Therese', 1952, 'F', 824), +(67300, 'Marla', 1952, 'F', 823), +(67301, 'Deanna', 1952, 'F', 820), +(67302, 'Gale', 1952, 'F', 819), +(67303, 'Mattie', 1952, 'F', 813), +(67304, 'Kathie', 1952, 'F', 808), +(67305, 'Debora', 1952, 'F', 805), +(67306, 'Sherrie', 1952, 'F', 800), +(67307, 'Jennie', 1952, 'F', 795), +(67308, 'Jenny', 1952, 'F', 778), +(67309, 'Dixie', 1952, 'F', 771), +(67310, 'Naomi', 1952, 'F', 768), +(67311, 'Rosalie', 1952, 'F', 765), +(67312, 'Candice', 1952, 'F', 758), +(67313, 'Deloris', 1952, 'F', 755), +(67314, 'Christy', 1952, 'F', 748), +(67315, 'Bessie', 1952, 'F', 728), +(67316, 'Cecelia', 1952, 'F', 712), +(67317, 'Rosemarie', 1952, 'F', 708), +(67318, 'Velma', 1952, 'F', 706), +(67319, 'Ernestine', 1952, 'F', 703), +(67320, 'Minnie', 1952, 'F', 696), +(67321, 'Vanessa', 1952, 'F', 696), +(67322, 'Geneva', 1952, 'F', 695), +(67323, 'Olivia', 1952, 'F', 692), +(67324, 'Jamie', 1952, 'F', 691), +(67325, 'Sherri', 1952, 'F', 691), +(67326, 'Cheri', 1952, 'F', 686), +(67327, 'Johnnie', 1952, 'F', 680), +(67328, 'Marcella', 1952, 'F', 678), +(67329, 'Margo', 1952, 'F', 677), +(67330, 'Hilda', 1952, 'F', 668), +(67331, 'Cora', 1952, 'F', 665), +(67332, 'Lorna', 1952, 'F', 662), +(67333, 'Madeline', 1952, 'F', 659), +(67334, 'Verna', 1952, 'F', 650), +(67335, 'Jeri', 1952, 'F', 649), +(67336, 'Gay', 1952, 'F', 643), +(67337, 'Mae', 1952, 'F', 640), +(67338, 'Celia', 1952, 'F', 639), +(67339, 'Nellie', 1952, 'F', 639), +(67340, 'Viola', 1952, 'F', 633), +(67341, 'Guadalupe', 1952, 'F', 631), +(67342, 'Teri', 1952, 'F', 630), +(67343, 'Agnes', 1952, 'F', 626), +(67344, 'Celeste', 1952, 'F', 626), +(67345, 'Cassandra', 1952, 'F', 624), +(67346, 'Crystal', 1952, 'F', 623), +(67347, 'Unknown', 1952, 'F', 623), +(67348, 'Darla', 1952, 'F', 622), +(67349, 'Charmaine', 1952, 'F', 620), +(67350, 'Lola', 1952, 'F', 617), +(67351, 'Molly', 1952, 'F', 617), +(67352, 'Della', 1952, 'F', 615), +(67353, 'Lena', 1952, 'F', 606), +(67354, 'Rosanne', 1952, 'F', 605), +(67355, 'Faith', 1952, 'F', 604), +(67356, 'Leona', 1952, 'F', 602), +(67357, 'Laverne', 1952, 'F', 589), +(67358, 'Olga', 1952, 'F', 588), +(67359, 'Corinne', 1952, 'F', 584), +(67360, 'Glenna', 1952, 'F', 583), +(67361, 'Gretchen', 1952, 'F', 583), +(67362, 'Elsie', 1952, 'F', 577), +(67363, 'Lou', 1952, 'F', 571), +(67364, 'Janine', 1952, 'F', 564), +(67365, 'Susanne', 1952, 'F', 559), +(67366, 'Kerry', 1952, 'F', 556), +(67367, 'Hattie', 1952, 'F', 554), +(67368, 'Amelia', 1952, 'F', 550), +(67369, 'Rochelle', 1952, 'F', 546), +(67370, 'Noreen', 1952, 'F', 545), +(67371, 'Janette', 1952, 'F', 542), +(67372, 'Jayne', 1952, 'F', 540), +(67373, 'Shelly', 1952, 'F', 540), +(67374, 'Alberta', 1952, 'F', 536), +(67375, 'Sheri', 1952, 'F', 534), +(67376, 'Adrienne', 1952, 'F', 532), +(67377, 'Tamara', 1952, 'F', 532), +(67378, 'Penelope', 1952, 'F', 529), +(67379, 'Margarita', 1952, 'F', 523), +(67380, 'Lora', 1952, 'F', 522), +(67381, 'Pearl', 1952, 'F', 518), +(67382, 'Lauren', 1952, 'F', 517), +(67383, 'Robyn', 1952, 'F', 516), +(67384, 'Diann', 1952, 'F', 509), +(67385, 'Sondra', 1952, 'F', 506), +(67386, 'Eunice', 1952, 'F', 505), +(67387, 'Daisy', 1952, 'F', 504), +(67388, 'Helene', 1952, 'F', 504), +(67389, 'Jana', 1952, 'F', 500), +(67390, 'Rosalind', 1952, 'F', 500), +(67391, 'Terrie', 1952, 'F', 500), +(67392, 'Leah', 1952, 'F', 498), +(67393, 'Katie', 1952, 'F', 483), +(67394, 'Ada', 1952, 'F', 481), +(67395, 'Lula', 1952, 'F', 478), +(67396, 'Adele', 1952, 'F', 477), +(67397, 'Karin', 1952, 'F', 476), +(67398, 'Gertrude', 1952, 'F', 474), +(67399, 'Gwen', 1952, 'F', 473), +(67400, 'Claudette', 1952, 'F', 468), +(67401, 'Flora', 1952, 'F', 463), +(67402, 'Jeanine', 1952, 'F', 462), +(67403, 'Erma', 1952, 'F', 457), +(67404, 'Cherie', 1952, 'F', 453), +(67405, 'Saundra', 1952, 'F', 453), +(67406, 'Delia', 1952, 'F', 452), +(67407, 'Jessica', 1952, 'F', 451), +(67408, 'Hope', 1952, 'F', 444), +(67409, 'Sonia', 1952, 'F', 442), +(67410, 'Bridget', 1952, 'F', 441), +(67411, 'Sallie', 1952, 'F', 441), +(67412, 'Sandy', 1952, 'F', 441), +(67413, 'Alison', 1952, 'F', 439), +(67414, 'Kristin', 1952, 'F', 439), +(67415, 'Rosetta', 1952, 'F', 435), +(67416, 'Jeannine', 1952, 'F', 434), +(67417, 'Ronda', 1952, 'F', 434), +(67418, 'Polly', 1952, 'F', 433), +(67419, 'Eloise', 1952, 'F', 432), +(67420, 'Freda', 1952, 'F', 430), +(67421, 'Frankie', 1952, 'F', 428), +(67422, 'Reba', 1952, 'F', 428), +(67423, 'Violet', 1952, 'F', 427), +(67424, 'Randi', 1952, 'F', 426), +(67425, 'Roseann', 1952, 'F', 426), +(67426, 'Henrietta', 1952, 'F', 425), +(67427, 'Lenora', 1952, 'F', 425), +(67428, 'Tanya', 1952, 'F', 423), +(67429, 'Shannon', 1952, 'F', 420), +(67430, 'Amanda', 1952, 'F', 419), +(67431, 'Isabel', 1952, 'F', 419), +(67432, 'Camille', 1952, 'F', 416), +(67433, 'Christie', 1952, 'F', 415), +(67434, 'Rosalyn', 1952, 'F', 415), +(67435, 'Jeanie', 1952, 'F', 414), +(67436, 'Lila', 1952, 'F', 413), +(67437, 'Marcy', 1952, 'F', 413), +(67438, 'Rena', 1952, 'F', 413), +(67439, 'Heidi', 1952, 'F', 412), +(67440, 'Fannie', 1952, 'F', 410), +(67441, 'Bettye', 1952, 'F', 408), +(67442, 'Joanna', 1952, 'F', 408), +(67443, 'Earnestine', 1952, 'F', 407), +(67444, 'Jacalyn', 1952, 'F', 406), +(67445, 'Natalie', 1952, 'F', 406), +(67446, 'Maggie', 1952, 'F', 404), +(67447, 'Yvette', 1952, 'F', 403), +(67448, 'Mamie', 1952, 'F', 400), +(67449, 'Marta', 1952, 'F', 395), +(67450, 'Dee', 1952, 'F', 392), +(67451, 'Sonja', 1952, 'F', 389), +(67452, 'Sharron', 1952, 'F', 388), +(67453, 'Nelda', 1952, 'F', 387), +(67454, 'Ava', 1952, 'F', 386), +(67455, 'Estella', 1952, 'F', 386), +(67456, 'Bette', 1952, 'F', 385), +(67457, 'Ilene', 1952, 'F', 382), +(67458, 'Heather', 1952, 'F', 381), +(67459, 'Jolene', 1952, 'F', 378), +(67460, 'Kristina', 1952, 'F', 377), +(67461, 'Ruthie', 1952, 'F', 377), +(67462, 'Kaye', 1952, 'F', 373), +(67463, 'Bettie', 1952, 'F', 371), +(67464, 'Nanette', 1952, 'F', 370), +(67465, 'Dona', 1952, 'F', 369), +(67466, 'Robbie', 1952, 'F', 369), +(67467, 'Melba', 1952, 'F', 368), +(67468, 'Myrtle', 1952, 'F', 368), +(67469, 'Antonia', 1952, 'F', 364), +(67470, 'Denice', 1952, 'F', 363), +(67471, 'Myrna', 1952, 'F', 362), +(67472, 'Katharine', 1952, 'F', 357), +(67473, 'Jerri', 1952, 'F', 353), +(67474, 'Cathryn', 1952, 'F', 351), +(67475, 'Nita', 1952, 'F', 345), +(67476, 'Marilynn', 1952, 'F', 342), +(67477, 'Carlene', 1952, 'F', 340), +(67478, 'Genevieve', 1952, 'F', 339), +(67479, 'Ladonna', 1952, 'F', 338), +(67480, 'Gina', 1952, 'F', 337), +(67481, 'Inez', 1952, 'F', 334), +(67482, 'Kristy', 1952, 'F', 332), +(67483, 'Chris', 1952, 'F', 329), +(67484, 'Althea', 1952, 'F', 327), +(67485, 'Rene', 1952, 'F', 327), +(67486, 'Gracie', 1952, 'F', 326), +(67487, 'Mable', 1952, 'F', 324), +(67488, 'Merry', 1952, 'F', 323), +(67489, 'Fay', 1952, 'F', 320), +(67490, 'Muriel', 1952, 'F', 320), +(67491, 'Dorothea', 1952, 'F', 319), +(67492, 'Shari', 1952, 'F', 319), +(67493, 'Meredith', 1952, 'F', 316), +(67494, 'Janelle', 1952, 'F', 310), +(67495, 'Blanche', 1952, 'F', 308), +(67496, 'Lenore', 1952, 'F', 308), +(67497, 'Rae', 1952, 'F', 308), +(67498, 'Lorene', 1952, 'F', 307), +(67499, 'Jewel', 1952, 'F', 306), +(67500, 'Lesley', 1952, 'F', 306), +(67501, 'Elise', 1952, 'F', 304), +(67502, 'Eugenia', 1952, 'F', 303), +(67503, 'Suzan', 1952, 'F', 301), +(67504, 'Candy', 1952, 'F', 300), +(67505, 'Pat', 1952, 'F', 300), +(67506, 'Cherry', 1952, 'F', 299), +(67507, 'Sadie', 1952, 'F', 297), +(67508, 'Kelly', 1952, 'F', 295), +(67509, 'Coleen', 1952, 'F', 291), +(67510, 'Kristi', 1952, 'F', 291), +(67511, 'Colette', 1952, 'F', 290), +(67512, 'Tracy', 1952, 'F', 289), +(67513, 'Gayla', 1952, 'F', 287), +(67514, 'Ana', 1952, 'F', 286), +(67515, 'Lynnette', 1952, 'F', 285), +(67516, 'Sharlene', 1952, 'F', 285), +(67517, 'Essie', 1952, 'F', 284), +(67518, 'Delois', 1952, 'F', 283), +(67519, 'Kristen', 1952, 'F', 280), +(67520, 'Valarie', 1952, 'F', 279), +(67521, 'Winifred', 1952, 'F', 278), +(67522, 'Ora', 1952, 'F', 277), +(67523, 'Roslyn', 1952, 'F', 277), +(67524, 'Sonya', 1952, 'F', 277), +(67525, 'Clarice', 1952, 'F', 276), +(67526, 'Elena', 1952, 'F', 276), +(67527, 'Kathi', 1952, 'F', 276), +(67528, 'Willa', 1952, 'F', 276), +(67529, 'Angelina', 1952, 'F', 274), +(67530, 'Rosalinda', 1952, 'F', 274), +(67531, 'Dolly', 1952, 'F', 273), +(67532, 'Lela', 1952, 'F', 270), +(67533, 'Johanna', 1952, 'F', 267), +(67534, 'Maryanne', 1952, 'F', 267), +(67535, 'Mindy', 1952, 'F', 266), +(67536, 'Bernadine', 1952, 'F', 265), +(67537, 'Daphne', 1952, 'F', 265), +(67538, 'Earlene', 1952, 'F', 265), +(67539, 'Gilda', 1952, 'F', 265), +(67540, 'Jerry', 1952, 'F', 265), +(67541, 'Roxann', 1952, 'F', 264), +(67542, 'Ina', 1952, 'F', 261), +(67543, 'James', 1952, 'F', 261), +(67544, 'Pearlie', 1952, 'F', 261), +(67545, 'Cathie', 1952, 'F', 259), +(67546, 'Nettie', 1952, 'F', 259), +(67547, 'Nona', 1952, 'F', 259), +(67548, 'Earline', 1952, 'F', 258), +(67549, 'Lucia', 1952, 'F', 258), +(67550, 'Dinah', 1952, 'F', 257), +(67551, 'Eula', 1952, 'F', 257), +(67552, 'Jocelyn', 1952, 'F', 257), +(67553, 'Allison', 1952, 'F', 256), +(67554, 'Katrina', 1952, 'F', 255), +(67555, 'Lavonne', 1952, 'F', 254), +(67556, 'Alexis', 1952, 'F', 252), +(67557, 'Lorrie', 1952, 'F', 252), +(67558, 'Julianne', 1952, 'F', 251), +(67559, 'Beverley', 1952, 'F', 250), +(67560, 'Etta', 1952, 'F', 250), +(67561, 'Nikki', 1952, 'F', 250), +(67562, 'Francis', 1952, 'F', 249), +(67563, 'Clare', 1952, 'F', 248), +(67564, 'Maryellen', 1952, 'F', 248), +(67565, 'Lyn', 1952, 'F', 246), +(67566, 'Mari', 1952, 'F', 245), +(67567, 'Debby', 1952, 'F', 244), +(67568, 'Jimmie', 1952, 'F', 244), +(67569, 'Benita', 1952, 'F', 243), +(67570, 'Mavis', 1952, 'F', 243), +(67571, 'Tommie', 1952, 'F', 243), +(67572, 'Valorie', 1952, 'F', 243), +(67573, 'Mollie', 1952, 'F', 242), +(67574, 'Angie', 1952, 'F', 241), +(67575, 'Elvira', 1952, 'F', 241), +(67576, 'Marva', 1952, 'F', 241), +(67577, 'Tonya', 1952, 'F', 241), +(67578, 'Marietta', 1952, 'F', 240), +(67579, 'Nola', 1952, 'F', 240), +(67580, 'Ollie', 1952, 'F', 240), +(67581, 'Randy', 1952, 'F', 240), +(67582, 'Roxie', 1952, 'F', 237), +(67583, 'Karol', 1952, 'F', 236), +(67584, 'Kristie', 1952, 'F', 236), +(67585, 'Alfreda', 1952, 'F', 234), +(67586, 'Leticia', 1952, 'F', 234), +(67587, 'Rhoda', 1952, 'F', 230), +(67588, 'Dena', 1952, 'F', 229), +(67589, 'Jannie', 1952, 'F', 229), +(67590, 'Leanne', 1952, 'F', 229), +(67591, 'Nan', 1952, 'F', 229), +(67592, 'Delilah', 1952, 'F', 228), +(67593, 'Edwina', 1952, 'F', 228), +(67594, 'Shelby', 1952, 'F', 228), +(67595, 'Fern', 1952, 'F', 225), +(67596, 'Melva', 1952, 'F', 223), +(67597, 'Corrine', 1952, 'F', 222), +(67598, 'Pamala', 1952, 'F', 222), +(67599, 'Patrica', 1952, 'F', 222), +(67600, 'Vickey', 1952, 'F', 222), +(67601, 'Estelle', 1952, 'F', 221), +(67602, 'Kathrine', 1952, 'F', 221), +(67603, 'Nanci', 1952, 'F', 221), +(67604, 'Gaye', 1952, 'F', 219), +(67605, 'Georgette', 1952, 'F', 219), +(67606, 'Queen', 1952, 'F', 219), +(67607, 'Elva', 1952, 'F', 218), +(67608, 'Suzette', 1952, 'F', 218), +(67609, 'Debrah', 1952, 'F', 217), +(67610, 'Elsa', 1952, 'F', 217), +(67611, 'Mabel', 1952, 'F', 216), +(67612, 'Arleen', 1952, 'F', 215), +(67613, 'Sybil', 1952, 'F', 215), +(67614, 'Cornelia', 1952, 'F', 212), +(67615, 'Mitzi', 1952, 'F', 212), +(67616, 'Malinda', 1952, 'F', 210), +(67617, 'Blanca', 1952, 'F', 209), +(67618, 'Helena', 1952, 'F', 208), +(67619, 'Karon', 1952, 'F', 208), +(67620, 'Lea', 1952, 'F', 208), +(67621, 'Sydney', 1952, 'F', 208), +(67622, 'Rosanna', 1952, 'F', 207), +(67623, 'Iva', 1952, 'F', 206), +(67624, 'Marylou', 1952, 'F', 206), +(67625, 'Felicia', 1952, 'F', 205), +(67626, 'Ingrid', 1952, 'F', 205), +(67627, 'Avis', 1952, 'F', 204), +(67628, 'Cecile', 1952, 'F', 204), +(67629, 'Margery', 1952, 'F', 204), +(67630, 'Pam', 1952, 'F', 204), +(67631, 'Beulah', 1952, 'F', 203), +(67632, 'Harriett', 1952, 'F', 203), +(67633, 'Lizzie', 1952, 'F', 203), +(67634, 'Luann', 1952, 'F', 203), +(67635, 'Marcie', 1952, 'F', 203), +(67636, 'Ola', 1952, 'F', 203), +(67637, 'Addie', 1952, 'F', 202), +(67638, 'Lottie', 1952, 'F', 202), +(67639, 'Marilee', 1952, 'F', 201), +(67640, 'Opal', 1952, 'F', 201), +(67641, 'Lupe', 1952, 'F', 200), +(67642, 'Aurora', 1952, 'F', 198), +(67643, 'Elisabeth', 1952, 'F', 198), +(67644, 'Leann', 1952, 'F', 198), +(67645, 'Caryn', 1952, 'F', 197), +(67646, 'Darcy', 1952, 'F', 197), +(67647, 'Ivy', 1952, 'F', 197), +(67648, 'Luanne', 1952, 'F', 197), +(67649, 'John', 1952, 'F', 196), +(67650, 'Josie', 1952, 'F', 196), +(67651, 'Loraine', 1952, 'F', 196), +(67652, 'Peggie', 1952, 'F', 196), +(67653, 'Celestine', 1952, 'F', 195), +(67654, 'Freida', 1952, 'F', 195), +(67655, 'Robert', 1952, 'F', 195), +(67656, 'Cheryle', 1952, 'F', 194), +(67657, 'Madelyn', 1952, 'F', 194), +(67658, 'Deirdre', 1952, 'F', 193), +(67659, 'Kitty', 1952, 'F', 193), +(67660, 'Caren', 1952, 'F', 191), +(67661, 'Debbra', 1952, 'F', 191), +(67662, 'Leola', 1952, 'F', 191), +(67663, 'Eve', 1952, 'F', 190), +(67664, 'Geralyn', 1952, 'F', 190), +(67665, 'Michael', 1952, 'F', 190), +(67666, 'Millie', 1952, 'F', 190), +(67667, 'Annmarie', 1952, 'F', 189), +(67668, 'Leigh', 1952, 'F', 189), +(67669, 'Elisa', 1952, 'F', 188), +(67670, 'Dorthy', 1952, 'F', 187), +(67671, 'Ronnie', 1952, 'F', 187), +(67672, 'Alyce', 1952, 'F', 186), +(67673, 'Cinda', 1952, 'F', 186), +(67674, 'Barbra', 1952, 'F', 185), +(67675, 'Aileen', 1952, 'F', 184), +(67676, 'Danielle', 1952, 'F', 182), +(67677, 'Neva', 1952, 'F', 182), +(67678, 'Sherrill', 1952, 'F', 182), +(67679, 'Vikki', 1952, 'F', 181), +(67680, 'Janell', 1952, 'F', 179), +(67681, 'Ester', 1952, 'F', 178), +(67682, 'Greta', 1952, 'F', 178), +(67683, 'Valeria', 1952, 'F', 178), +(67684, 'Dorene', 1952, 'F', 177), +(67685, 'Jewell', 1952, 'F', 177), +(67686, 'May', 1952, 'F', 177), +(67687, 'Carmela', 1952, 'F', 176), +(67688, 'Katheryn', 1952, 'F', 175), +(67689, 'Retha', 1952, 'F', 175), +(67690, 'Joe', 1952, 'F', 174), +(67691, 'Mickey', 1952, 'F', 174), +(67692, 'Dollie', 1952, 'F', 173), +(67693, 'Doretha', 1952, 'F', 173), +(67694, 'Effie', 1952, 'F', 173), +(67695, 'Juana', 1952, 'F', 173), +(67696, 'Rebekah', 1952, 'F', 173), +(67697, 'Twila', 1952, 'F', 173), +(67698, 'Alana', 1952, 'F', 172), +(67699, 'Elissa', 1952, 'F', 172), +(67700, 'Madonna', 1952, 'F', 172), +(67701, 'Charleen', 1952, 'F', 171), +(67702, 'Pattie', 1952, 'F', 171), +(67703, 'Eddie', 1952, 'F', 170), +(67704, 'Jacklyn', 1952, 'F', 170), +(67705, 'Dottie', 1952, 'F', 169), +(67706, 'Minerva', 1952, 'F', 169), +(67707, 'Cleo', 1952, 'F', 167), +(67708, 'Deana', 1952, 'F', 167), +(67709, 'Oralia', 1952, 'F', 167), +(67710, 'Aleta', 1952, 'F', 166), +(67711, 'Esperanza', 1952, 'F', 166), +(67712, 'Graciela', 1952, 'F', 166), +(67713, 'Reva', 1952, 'F', 166), +(67714, 'Roseanne', 1952, 'F', 166), +(67715, 'Alta', 1952, 'F', 165), +(67716, 'Freddie', 1952, 'F', 165), +(67717, 'Maribeth', 1952, 'F', 164), +(67718, 'Alexandra', 1952, 'F', 163), +(67719, 'Evangeline', 1952, 'F', 163), +(67720, 'Leila', 1952, 'F', 161), +(67721, 'Leta', 1952, 'F', 161), +(67722, 'Maura', 1952, 'F', 161), +(67723, 'Josefina', 1952, 'F', 160), +(67724, 'Lorie', 1952, 'F', 160), +(67725, 'Marlys', 1952, 'F', 160), +(67726, 'Terese', 1952, 'F', 159), +(67727, 'Mercedes', 1952, 'F', 158), +(67728, 'Consuelo', 1952, 'F', 157), +(67729, 'Donita', 1952, 'F', 156), +(67730, 'Georgianna', 1952, 'F', 156), +(67731, 'Kyle', 1952, 'F', 156), +(67732, 'Roxanna', 1952, 'F', 156), +(67733, 'Deanne', 1952, 'F', 155), +(67734, 'Elnora', 1952, 'F', 155), +(67735, 'Georgina', 1952, 'F', 154), +(67736, 'Kris', 1952, 'F', 154), +(67737, 'Krista', 1952, 'F', 154), +(67738, 'Renae', 1952, 'F', 154), +(67739, 'Abigail', 1952, 'F', 152), +(67740, 'Deena', 1952, 'F', 152), +(67741, 'Maryjo', 1952, 'F', 152), +(67742, 'Delphine', 1952, 'F', 151), +(67743, 'Geri', 1952, 'F', 151), +(67744, 'Hannah', 1952, 'F', 151), +(67745, 'Goldie', 1952, 'F', 150), +(67746, 'Maryjane', 1952, 'F', 149), +(67747, 'Melodie', 1952, 'F', 149), +(67748, 'Bonny', 1952, 'F', 148), +(67749, 'Imogene', 1952, 'F', 148), +(67750, 'Louisa', 1952, 'F', 148), +(67751, 'Cathey', 1952, 'F', 146), +(67752, 'Madeleine', 1952, 'F', 146), +(67753, 'Treva', 1952, 'F', 146), +(67754, 'William', 1952, 'F', 146), +(67755, 'Corliss', 1952, 'F', 145), +(67756, 'Ila', 1952, 'F', 145), +(67757, 'Juliana', 1952, 'F', 144), +(67758, 'Virgie', 1952, 'F', 144), +(67759, 'Judi', 1952, 'F', 143), +(67760, 'Kathaleen', 1952, 'F', 143), +(67761, 'Lorena', 1952, 'F', 143), +(67762, 'Portia', 1952, 'F', 143), +(67763, 'Christi', 1952, 'F', 142), +(67764, 'Dian', 1952, 'F', 142), +(67765, 'Janna', 1952, 'F', 142), +(67766, 'Angelita', 1952, 'F', 141), +(67767, 'Daryl', 1952, 'F', 141), +(67768, 'Janeen', 1952, 'F', 141), +(67769, 'Marina', 1952, 'F', 141), +(67770, 'Meryl', 1952, 'F', 141), +(67771, 'Caryl', 1952, 'F', 140), +(67772, 'Darleen', 1952, 'F', 140), +(67773, 'Tara', 1952, 'F', 140), +(67774, 'Fran', 1952, 'F', 139), +(67775, 'Frieda', 1952, 'F', 139), +(67776, 'Karyn', 1952, 'F', 138), +(67777, 'Laureen', 1952, 'F', 138), +(67778, 'Vonda', 1952, 'F', 138), +(67779, 'Carleen', 1952, 'F', 137), +(67780, 'Libby', 1952, 'F', 137), +(67781, 'Raquel', 1952, 'F', 137), +(67782, 'Catharine', 1952, 'F', 136), +(67783, 'Callie', 1952, 'F', 135), +(67784, 'Jacque', 1952, 'F', 135), +(67785, 'Lilly', 1952, 'F', 135), +(67786, 'Nannette', 1952, 'F', 135), +(67787, 'Ofelia', 1952, 'F', 135), +(67788, 'Sanjuanita', 1952, 'F', 135), +(67789, 'Camilla', 1952, 'F', 134), +(67790, 'David', 1952, 'F', 134), +(67791, 'Gerry', 1952, 'F', 134), +(67792, 'Lily', 1952, 'F', 134), +(67793, 'Merle', 1952, 'F', 134), +(67794, 'Jacquline', 1952, 'F', 133), +(67795, 'Letha', 1952, 'F', 133), +(67796, 'Mariann', 1952, 'F', 133), +(67797, 'Odessa', 1952, 'F', 133), +(67798, 'Ophelia', 1952, 'F', 133), +(67799, 'Reta', 1952, 'F', 133), +(67800, 'Shirlene', 1952, 'F', 133), +(67801, 'Pandora', 1952, 'F', 132), +(67802, 'Bobby', 1952, 'F', 131), +(67803, 'Lauretta', 1952, 'F', 131), +(67804, 'Lavern', 1952, 'F', 131), +(67805, 'Marybeth', 1952, 'F', 131), +(67806, 'Ronna', 1952, 'F', 131), +(67807, 'Aida', 1952, 'F', 130), +(67808, 'Angelia', 1952, 'F', 130), +(67809, 'Bethany', 1952, 'F', 130), +(67810, 'Rosita', 1952, 'F', 130), +(67811, 'Stacey', 1952, 'F', 130), +(67812, 'Charla', 1952, 'F', 129), +(67813, 'Elma', 1952, 'F', 129), +(67814, 'Elyse', 1952, 'F', 129), +(67815, 'Lona', 1952, 'F', 129), +(67816, 'Margret', 1952, 'F', 129), +(67817, 'Stacy', 1952, 'F', 129), +(67818, 'Tana', 1952, 'F', 129), +(67819, 'Tracey', 1952, 'F', 129), +(67820, 'Nedra', 1952, 'F', 128), +(67821, 'Nell', 1952, 'F', 128), +(67822, 'Glinda', 1952, 'F', 127), +(67823, 'Lizabeth', 1952, 'F', 127), +(67824, 'Margot', 1952, 'F', 127), +(67825, 'Silvia', 1952, 'F', 127), +(67826, 'Herlinda', 1952, 'F', 126), +(67827, 'Lindsay', 1952, 'F', 126), +(67828, 'Mara', 1952, 'F', 126), +(67829, 'Roseanna', 1952, 'F', 126), +(67830, 'Bennie', 1952, 'F', 125), +(67831, 'Danna', 1952, 'F', 125), +(67832, 'Jodi', 1952, 'F', 125), +(67833, 'Leanna', 1952, 'F', 125), +(67834, 'Rachelle', 1952, 'F', 125), +(67835, 'Sharyn', 1952, 'F', 125), +(67836, 'Sherryl', 1952, 'F', 125), +(67837, 'Theodora', 1952, 'F', 125), +(67838, 'Hollis', 1952, 'F', 124), +(67839, 'Lonnie', 1952, 'F', 124), +(67840, 'Louella', 1952, 'F', 124), +(67841, 'Vernell', 1952, 'F', 124), +(67842, 'Carlotta', 1952, 'F', 123), +(67843, 'Fonda', 1952, 'F', 123), +(67844, 'Carmella', 1952, 'F', 122), +(67845, 'Carolynn', 1952, 'F', 122), +(67846, 'Jodie', 1952, 'F', 122), +(67847, 'Matilda', 1952, 'F', 122), +(67848, 'Rosario', 1952, 'F', 122), +(67849, 'Tammy', 1952, 'F', 122), +(67850, 'Charles', 1952, 'F', 121), +(67851, 'Elinor', 1952, 'F', 121), +(67852, 'Estela', 1952, 'F', 121), +(67853, 'Martina', 1952, 'F', 121), +(67854, 'Shawn', 1952, 'F', 121), +(67855, 'Dorinda', 1952, 'F', 120), +(67856, 'Jerrie', 1952, 'F', 120), +(67857, 'Kimberley', 1952, 'F', 120), +(67858, 'Marianna', 1952, 'F', 120), +(67859, 'Rhea', 1952, 'F', 120), +(67860, 'Beryl', 1952, 'F', 119), +(67861, 'Laraine', 1952, 'F', 119), +(67862, 'Adeline', 1952, 'F', 118), +(67863, 'Cassie', 1952, 'F', 118), +(67864, 'Deidre', 1952, 'F', 118), +(67865, 'Megan', 1952, 'F', 118), +(67866, 'Shauna', 1952, 'F', 118), +(67867, 'Susanna', 1952, 'F', 118), +(67868, 'Gaynell', 1952, 'F', 117), +(67869, 'Georgene', 1952, 'F', 117), +(67870, 'Justine', 1952, 'F', 117), +(67871, 'Marleen', 1952, 'F', 117), +(67872, 'Mimi', 1952, 'F', 117), +(67873, 'Sharen', 1952, 'F', 116), +(67874, 'Sophie', 1952, 'F', 116), +(67875, 'Twyla', 1952, 'F', 116), +(67876, 'Angeline', 1952, 'F', 115), +(67877, 'Collette', 1952, 'F', 115), +(67878, 'Concetta', 1952, 'F', 115), +(67879, 'Elouise', 1952, 'F', 115), +(67880, 'Lauri', 1952, 'F', 115), +(67881, 'Magdalena', 1952, 'F', 115), +(67882, 'Carolann', 1952, 'F', 114), +(67883, 'Lorelei', 1952, 'F', 114), +(67884, 'Rowena', 1952, 'F', 114), +(67885, 'Suzann', 1952, 'F', 114), +(67886, 'Isabelle', 1952, 'F', 113), +(67887, 'Winona', 1952, 'F', 113), +(67888, 'Aline', 1952, 'F', 112), +(67889, 'Esmeralda', 1952, 'F', 112), +(67890, 'Jann', 1952, 'F', 112), +(67891, 'Lelia', 1952, 'F', 112), +(67892, 'Winnie', 1952, 'F', 112), +(67893, 'Cathrine', 1952, 'F', 111), +(67894, 'Claudine', 1952, 'F', 111), +(67895, 'Nicki', 1952, 'F', 111), +(67896, 'Sophia', 1952, 'F', 111), +(67897, 'George', 1952, 'F', 110), +(67898, 'Karan', 1952, 'F', 110), +(67899, 'Lucretia', 1952, 'F', 110), +(67900, 'Rosann', 1952, 'F', 110), +(67901, 'Rosella', 1952, 'F', 110), +(67902, 'Corine', 1952, 'F', 109), +(67903, 'Gwenda', 1952, 'F', 109), +(67904, 'Lourdes', 1952, 'F', 109), +(67905, 'Sidney', 1952, 'F', 109), +(67906, 'Amber', 1952, 'F', 108), +(67907, 'Carolina', 1952, 'F', 108), +(67908, 'Ginny', 1952, 'F', 108), +(67909, 'Paige', 1952, 'F', 108), +(67910, 'Ricki', 1952, 'F', 108), +(67911, 'Toby', 1952, 'F', 108), +(67912, 'Donnie', 1952, 'F', 107), +(67913, 'Wilda', 1952, 'F', 107), +(67914, 'Adela', 1952, 'F', 106), +(67915, 'Bobbi', 1952, 'F', 106), +(67916, 'Christa', 1952, 'F', 106), +(67917, 'Georgiana', 1952, 'F', 106), +(67918, 'Roselyn', 1952, 'F', 106), +(67919, 'Tonia', 1952, 'F', 106), +(67920, 'Clementine', 1952, 'F', 105), +(67921, 'Joycelyn', 1952, 'F', 105), +(67922, 'Juliann', 1952, 'F', 105), +(67923, 'Richard', 1952, 'F', 105), +(67924, 'Jerilyn', 1952, 'F', 104), +(67925, 'Linnea', 1952, 'F', 104), +(67926, 'Luz', 1952, 'F', 104), +(67927, 'Velda', 1952, 'F', 104), +(67928, 'Cheryll', 1952, 'F', 103), +(67929, 'Joellen', 1952, 'F', 103), +(67930, 'Nicole', 1952, 'F', 103), +(67931, 'Deann', 1952, 'F', 102), +(67932, 'Kathlyn', 1952, 'F', 102), +(67933, 'Lawanda', 1952, 'F', 102), +(67934, 'Mickie', 1952, 'F', 102), +(67935, 'Norine', 1952, 'F', 102), +(67936, 'Selma', 1952, 'F', 102), +(67937, 'Thea', 1952, 'F', 102), +(67938, 'Dina', 1952, 'F', 101), +(67939, 'Eliza', 1952, 'F', 101), +(67940, 'Evonne', 1952, 'F', 101), +(67941, 'Francisca', 1952, 'F', 101), +(67942, 'Pennie', 1952, 'F', 101), +(67943, 'Hilary', 1952, 'F', 100), +(67944, 'Juliette', 1952, 'F', 100), +(67945, 'Kate', 1952, 'F', 100), +(67946, 'Rona', 1952, 'F', 100), +(67947, 'Zoe', 1952, 'F', 100), +(67948, 'James', 1952, 'M', 87083), +(67949, 'Robert', 1952, 'M', 86572), +(67950, 'John', 1952, 'M', 83121), +(67951, 'Michael', 1952, 'M', 79022), +(67952, 'David', 1952, 'M', 71762), +(67953, 'William', 1952, 'M', 63008), +(67954, 'Richard', 1952, 'M', 58349), +(67955, 'Thomas', 1952, 'M', 48617), +(67956, 'Charles', 1952, 'M', 38884), +(67957, 'Gary', 1952, 'M', 38733), +(67958, 'Steven', 1952, 'M', 32041), +(67959, 'Joseph', 1952, 'M', 28528), +(67960, 'Donald', 1952, 'M', 28278), +(67961, 'Larry', 1952, 'M', 28267), +(67962, 'Ronald', 1952, 'M', 27790), +(67963, 'Kenneth', 1952, 'M', 25901), +(67964, 'Mark', 1952, 'M', 25665), +(67965, 'Dennis', 1952, 'M', 24553), +(67966, 'Paul', 1952, 'M', 24290), +(67967, 'Daniel', 1952, 'M', 23429), +(67968, 'Stephen', 1952, 'M', 23057), +(67969, 'George', 1952, 'M', 19811), +(67970, 'Edward', 1952, 'M', 19526), +(67971, 'Gregory', 1952, 'M', 15211), +(67972, 'Bruce', 1952, 'M', 14491), +(67973, 'Jerry', 1952, 'M', 14452), +(67974, 'Timothy', 1952, 'M', 14178), +(67975, 'Douglas', 1952, 'M', 13678), +(67976, 'Terry', 1952, 'M', 12448), +(67977, 'Roger', 1952, 'M', 12129), +(67978, 'Jeffrey', 1952, 'M', 12020), +(67979, 'Frank', 1952, 'M', 11284), +(67980, 'Raymond', 1952, 'M', 11231), +(67981, 'Anthony', 1952, 'M', 11203), +(67982, 'Lawrence', 1952, 'M', 10297), +(67983, 'Peter', 1952, 'M', 9578), +(67984, 'Patrick', 1952, 'M', 9176), +(67985, 'Wayne', 1952, 'M', 9094), +(67986, 'Gerald', 1952, 'M', 9037), +(67987, 'Danny', 1952, 'M', 8821), +(67988, 'Randy', 1952, 'M', 8657), +(67989, 'Alan', 1952, 'M', 8313), +(67990, 'Kevin', 1952, 'M', 7928), +(67991, 'Walter', 1952, 'M', 7912), +(67992, 'Carl', 1952, 'M', 7820), +(67993, 'Dale', 1952, 'M', 7411), +(67994, 'Arthur', 1952, 'M', 7243), +(67995, 'Willie', 1952, 'M', 7212), +(67996, 'Keith', 1952, 'M', 7163), +(67997, 'Henry', 1952, 'M', 6976), +(67998, 'Harold', 1952, 'M', 6969), +(67999, 'Jack', 1952, 'M', 6933), +(68000, 'Johnny', 1952, 'M', 6784), +(68001, 'Scott', 1952, 'M', 6540), +(68002, 'Roy', 1952, 'M', 6530), +(68003, 'Ralph', 1952, 'M', 6478), +(68004, 'Christopher', 1952, 'M', 6285), +(68005, 'Stanley', 1952, 'M', 6226), +(68006, 'Craig', 1952, 'M', 6190), +(68007, 'Philip', 1952, 'M', 6153), +(68008, 'Glenn', 1952, 'M', 5946), +(68009, 'Randall', 1952, 'M', 5900), +(68010, 'Joe', 1952, 'M', 5896), +(68011, 'Brian', 1952, 'M', 5739), +(68012, 'Billy', 1952, 'M', 5712), +(68013, 'Albert', 1952, 'M', 5664), +(68014, 'Samuel', 1952, 'M', 5663), +(68015, 'Andrew', 1952, 'M', 5581), +(68016, 'Barry', 1952, 'M', 5503), +(68017, 'Russell', 1952, 'M', 5342), +(68018, 'Eugene', 1952, 'M', 5318), +(68019, 'Jimmy', 1952, 'M', 5317), +(68020, 'Howard', 1952, 'M', 5234), +(68021, 'Phillip', 1952, 'M', 4997), +(68022, 'Harry', 1952, 'M', 4991), +(68023, 'Frederick', 1952, 'M', 4974), +(68024, 'Bobby', 1952, 'M', 4964), +(68025, 'Allen', 1952, 'M', 4960), +(68026, 'Louis', 1952, 'M', 4917), +(68027, 'Martin', 1952, 'M', 4727), +(68028, 'Ricky', 1952, 'M', 4659), +(68029, 'Ronnie', 1952, 'M', 4635), +(68030, 'Leonard', 1952, 'M', 4616), +(68031, 'Rodney', 1952, 'M', 4407), +(68032, 'Steve', 1952, 'M', 4316), +(68033, 'Curtis', 1952, 'M', 4174), +(68034, 'Ernest', 1952, 'M', 4119), +(68035, 'Eric', 1952, 'M', 3989), +(68036, 'Francis', 1952, 'M', 3976), +(68037, 'Fred', 1952, 'M', 3969), +(68038, 'Melvin', 1952, 'M', 3922), +(68039, 'Eddie', 1952, 'M', 3649), +(68040, 'Lee', 1952, 'M', 3646), +(68041, 'Micheal', 1952, 'M', 3616), +(68042, 'Marvin', 1952, 'M', 3583), +(68043, 'Norman', 1952, 'M', 3573), +(68044, 'Tommy', 1952, 'M', 3518), +(68045, 'Earl', 1952, 'M', 3463), +(68046, 'Clifford', 1952, 'M', 3318), +(68047, 'Theodore', 1952, 'M', 3261), +(68048, 'Vincent', 1952, 'M', 3176), +(68049, 'Clarence', 1952, 'M', 3163), +(68050, 'Dean', 1952, 'M', 3154), +(68051, 'Alfred', 1952, 'M', 3141), +(68052, 'Jerome', 1952, 'M', 3056), +(68053, 'Jay', 1952, 'M', 3022), +(68054, 'Victor', 1952, 'M', 2994), +(68055, 'Calvin', 1952, 'M', 2982), +(68056, 'Darrell', 1952, 'M', 2880), +(68057, 'Gordon', 1952, 'M', 2826), +(68058, 'Bernard', 1952, 'M', 2752), +(68059, 'Jesse', 1952, 'M', 2722), +(68060, 'Ray', 1952, 'M', 2695), +(68061, 'Jose', 1952, 'M', 2685), +(68062, 'Herbert', 1952, 'M', 2655), +(68063, 'Leroy', 1952, 'M', 2647), +(68064, 'Warren', 1952, 'M', 2638), +(68065, 'Edwin', 1952, 'M', 2631), +(68066, 'Rick', 1952, 'M', 2594), +(68067, 'Don', 1952, 'M', 2562), +(68068, 'Glen', 1952, 'M', 2495), +(68069, 'Benjamin', 1952, 'M', 2439), +(68070, 'Dwight', 1952, 'M', 2409), +(68071, 'Leon', 1952, 'M', 2374), +(68072, 'Leslie', 1952, 'M', 2358), +(68073, 'Kim', 1952, 'M', 2356), +(68074, 'Nicholas', 1952, 'M', 2345), +(68075, 'Alvin', 1952, 'M', 2340), +(68076, 'Dan', 1952, 'M', 2312), +(68077, 'Lloyd', 1952, 'M', 2274), +(68078, 'Joel', 1952, 'M', 2233), +(68079, 'Duane', 1952, 'M', 2227), +(68080, 'Tony', 1952, 'M', 2203), +(68081, 'Jeffery', 1952, 'M', 2193), +(68082, 'Jon', 1952, 'M', 2144), +(68083, 'Mike', 1952, 'M', 2104), +(68084, 'Vernon', 1952, 'M', 2084), +(68085, 'Gene', 1952, 'M', 2074), +(68086, 'Jonathan', 1952, 'M', 2064), +(68087, 'Rickey', 1952, 'M', 2051), +(68088, 'Bradley', 1952, 'M', 2042), +(68089, 'Matthew', 1952, 'M', 2040), +(68090, 'Jackie', 1952, 'M', 2014), +(68091, 'Clyde', 1952, 'M', 2012), +(68092, 'Lewis', 1952, 'M', 1992), +(68093, 'Allan', 1952, 'M', 1936), +(68094, 'Neil', 1952, 'M', 1901), +(68095, 'Lonnie', 1952, 'M', 1889), +(68096, 'Floyd', 1952, 'M', 1865), +(68097, 'Juan', 1952, 'M', 1859), +(68098, 'Gilbert', 1952, 'M', 1851), +(68099, 'Guy', 1952, 'M', 1841), +(68100, 'Marc', 1952, 'M', 1834), +(68101, 'Randolph', 1952, 'M', 1822), +(68102, 'Garry', 1952, 'M', 1808), +(68103, 'Donnie', 1952, 'M', 1806), +(68104, 'Mitchell', 1952, 'M', 1752), +(68105, 'Lester', 1952, 'M', 1721), +(68106, 'Franklin', 1952, 'M', 1719), +(68107, 'Chris', 1952, 'M', 1685), +(68108, 'Charlie', 1952, 'M', 1669), +(68109, 'Manuel', 1952, 'M', 1661), +(68110, 'Jimmie', 1952, 'M', 1643), +(68111, 'Kent', 1952, 'M', 1615), +(68112, 'Harvey', 1952, 'M', 1594), +(68113, 'Wesley', 1952, 'M', 1594), +(68114, 'Bill', 1952, 'M', 1592), +(68115, 'Lynn', 1952, 'M', 1587), +(68116, 'Milton', 1952, 'M', 1579), +(68117, 'Leo', 1952, 'M', 1562), +(68118, 'Karl', 1952, 'M', 1558), +(68119, 'Jim', 1952, 'M', 1526), +(68120, 'Johnnie', 1952, 'M', 1521), +(68121, 'Herman', 1952, 'M', 1499), +(68122, 'Freddie', 1952, 'M', 1497), +(68123, 'Rex', 1952, 'M', 1496), +(68124, 'Reginald', 1952, 'M', 1493), +(68125, 'Arnold', 1952, 'M', 1468), +(68126, 'Kurt', 1952, 'M', 1466), +(68127, 'Chester', 1952, 'M', 1453), +(68128, 'Tom', 1952, 'M', 1432), +(68129, 'Ted', 1952, 'M', 1416), +(68130, 'Dana', 1952, 'M', 1378), +(68131, 'Gerard', 1952, 'M', 1337), +(68132, 'Cecil', 1952, 'M', 1330), +(68133, 'Alexander', 1952, 'M', 1288), +(68134, 'Roland', 1952, 'M', 1274), +(68135, 'Nathaniel', 1952, 'M', 1257), +(68136, 'Carlos', 1952, 'M', 1255), +(68137, 'Stuart', 1952, 'M', 1255), +(68138, 'Maurice', 1952, 'M', 1220), +(68139, 'Fredrick', 1952, 'M', 1208), +(68140, 'Daryl', 1952, 'M', 1185), +(68141, 'Kerry', 1952, 'M', 1171), +(68142, 'Terrence', 1952, 'M', 1166), +(68143, 'Perry', 1952, 'M', 1154), +(68144, 'Neal', 1952, 'M', 1146), +(68145, 'Claude', 1952, 'M', 1145), +(68146, 'Kirk', 1952, 'M', 1122), +(68147, 'Darryl', 1952, 'M', 1100), +(68148, 'Ruben', 1952, 'M', 1098), +(68149, 'Marshall', 1952, 'M', 1094), +(68150, 'Robin', 1952, 'M', 1088), +(68151, 'Oscar', 1952, 'M', 1087), +(68152, 'Brent', 1952, 'M', 1082), +(68153, 'Antonio', 1952, 'M', 1078), +(68154, 'Jessie', 1952, 'M', 1034), +(68155, 'Sidney', 1952, 'M', 1020), +(68156, 'Hugh', 1952, 'M', 980), +(68157, 'Mario', 1952, 'M', 979), +(68158, 'Wallace', 1952, 'M', 978), +(68159, 'Brad', 1952, 'M', 968), +(68160, 'Todd', 1952, 'M', 961), +(68161, 'Sam', 1952, 'M', 944), +(68162, 'Clifton', 1952, 'M', 940), +(68163, 'Aaron', 1952, 'M', 938), +(68164, 'Tyrone', 1952, 'M', 933), +(68165, 'Ross', 1952, 'M', 908), +(68166, 'Morris', 1952, 'M', 906), +(68167, 'Terrance', 1952, 'M', 904), +(68168, 'Byron', 1952, 'M', 902), +(68169, 'Lyle', 1952, 'M', 899), +(68170, 'Benny', 1952, 'M', 897), +(68171, 'Edgar', 1952, 'M', 892), +(68172, 'Wendell', 1952, 'M', 880), +(68173, 'Clinton', 1952, 'M', 877), +(68174, 'Clayton', 1952, 'M', 863), +(68175, 'Ricardo', 1952, 'M', 862), +(68176, 'Nathan', 1952, 'M', 850), +(68177, 'Bryan', 1952, 'M', 845), +(68178, 'Laurence', 1952, 'M', 844), +(68179, 'Nelson', 1952, 'M', 830), +(68180, 'Earnest', 1952, 'M', 812), +(68181, 'Jesus', 1952, 'M', 809), +(68182, 'Kelly', 1952, 'M', 808), +(68183, 'Willard', 1952, 'M', 800), +(68184, 'Virgil', 1952, 'M', 787), +(68185, 'Marion', 1952, 'M', 785), +(68186, 'Sammy', 1952, 'M', 779), +(68187, 'Rudolph', 1952, 'M', 776), +(68188, 'Luis', 1952, 'M', 774), +(68189, 'Greg', 1952, 'M', 772), +(68190, 'Dave', 1952, 'M', 770), +(68191, 'Max', 1952, 'M', 763), +(68192, 'Elmer', 1952, 'M', 761), +(68193, 'Ira', 1952, 'M', 761), +(68194, 'Bob', 1952, 'M', 754), +(68195, 'Everett', 1952, 'M', 752), +(68196, 'Bennie', 1952, 'M', 751), +(68197, 'Otis', 1952, 'M', 751), +(68198, 'Luther', 1952, 'M', 740), +(68199, 'Gregg', 1952, 'M', 734), +(68200, 'Rickie', 1952, 'M', 732), +(68201, 'Randal', 1952, 'M', 730), +(68202, 'Ben', 1952, 'M', 720), +(68203, 'Raul', 1952, 'M', 717), +(68204, 'Lance', 1952, 'M', 709), +(68205, 'Alex', 1952, 'M', 700), +(68206, 'Carlton', 1952, 'M', 697), +(68207, 'Tim', 1952, 'M', 697), +(68208, 'Francisco', 1952, 'M', 693), +(68209, 'Roberto', 1952, 'M', 689), +(68210, 'Marcus', 1952, 'M', 674), +(68211, 'Loren', 1952, 'M', 672), +(68212, 'Troy', 1952, 'M', 670), +(68213, 'Myron', 1952, 'M', 662), +(68214, 'Edmund', 1952, 'M', 661), +(68215, 'Jeff', 1952, 'M', 660), +(68216, 'Frankie', 1952, 'M', 657), +(68217, 'Bradford', 1952, 'M', 656), +(68218, 'Horace', 1952, 'M', 647), +(68219, 'Delbert', 1952, 'M', 644), +(68220, 'Rudy', 1952, 'M', 644), +(68221, 'Clark', 1952, 'M', 638), +(68222, 'Jan', 1952, 'M', 625), +(68223, 'Geoffrey', 1952, 'M', 624), +(68224, 'Denis', 1952, 'M', 617), +(68225, 'Alton', 1952, 'M', 615), +(68226, 'Sherman', 1952, 'M', 609), +(68227, 'Malcolm', 1952, 'M', 605), +(68228, 'Leland', 1952, 'M', 601), +(68229, 'Sylvester', 1952, 'M', 600), +(68230, 'Hector', 1952, 'M', 597), +(68231, 'Wade', 1952, 'M', 596), +(68232, 'Roosevelt', 1952, 'M', 592), +(68233, 'Salvatore', 1952, 'M', 592), +(68234, 'Archie', 1952, 'M', 590), +(68235, 'Stewart', 1952, 'M', 590), +(68236, 'Wilbert', 1952, 'M', 588), +(68237, 'Tommie', 1952, 'M', 584), +(68238, 'Ramon', 1952, 'M', 581), +(68239, 'Darrel', 1952, 'M', 579), +(68240, 'Monte', 1952, 'M', 570), +(68241, 'Isaac', 1952, 'M', 566), +(68242, 'Hubert', 1952, 'M', 565), +(68243, 'Rodger', 1952, 'M', 564), +(68244, 'Jacob', 1952, 'M', 561), +(68245, 'Doyle', 1952, 'M', 560), +(68246, 'Preston', 1952, 'M', 560), +(68247, 'Jerald', 1952, 'M', 556), +(68248, 'Kenny', 1952, 'M', 555), +(68249, 'Oliver', 1952, 'M', 554), +(68250, 'Grant', 1952, 'M', 548), +(68251, 'Roderick', 1952, 'M', 545), +(68252, 'Felix', 1952, 'M', 542), +(68253, 'Homer', 1952, 'M', 541), +(68254, 'Pedro', 1952, 'M', 541), +(68255, 'Rocky', 1952, 'M', 540), +(68256, 'Teddy', 1952, 'M', 537), +(68257, 'Van', 1952, 'M', 535), +(68258, 'Armando', 1952, 'M', 529), +(68259, 'Julian', 1952, 'M', 522), +(68260, 'Forrest', 1952, 'M', 520), +(68261, 'Miguel', 1952, 'M', 514), +(68262, 'Willis', 1952, 'M', 513), +(68263, 'Pete', 1952, 'M', 506), +(68264, 'Mickey', 1952, 'M', 500), +(68265, 'Angelo', 1952, 'M', 499), +(68266, 'Ivan', 1952, 'M', 498), +(68267, 'Unknown', 1952, 'M', 494), +(68268, 'Lowell', 1952, 'M', 489), +(68269, 'Carroll', 1952, 'M', 486), +(68270, 'Julius', 1952, 'M', 486), +(68271, 'Cary', 1952, 'M', 463), +(68272, 'Rufus', 1952, 'M', 458), +(68273, 'Mack', 1952, 'M', 456), +(68274, 'Owen', 1952, 'M', 455), +(68275, 'Stephan', 1952, 'M', 455), +(68276, 'Lorenzo', 1952, 'M', 450), +(68277, 'Terence', 1952, 'M', 441), +(68278, 'Percy', 1952, 'M', 439), +(68279, 'Grady', 1952, 'M', 432), +(68280, 'Rene', 1952, 'M', 431), +(68281, 'Ervin', 1952, 'M', 430), +(68282, 'Dallas', 1952, 'M', 425), +(68283, 'Nick', 1952, 'M', 425), +(68284, 'Andy', 1952, 'M', 424), +(68285, 'Ellis', 1952, 'M', 423), +(68286, 'Fernando', 1952, 'M', 421), +(68287, 'Dewey', 1952, 'M', 420), +(68288, 'Andre', 1952, 'M', 419), +(68289, 'Arturo', 1952, 'M', 417), +(68290, 'Wilbur', 1952, 'M', 412), +(68291, 'Dwayne', 1952, 'M', 403), +(68292, 'Boyd', 1952, 'M', 397), +(68293, 'Conrad', 1952, 'M', 396), +(68294, 'Hal', 1952, 'M', 392); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(68295, 'Irvin', 1952, 'M', 391), +(68296, 'Freddy', 1952, 'M', 390), +(68297, 'Alfredo', 1952, 'M', 383), +(68298, 'Bert', 1952, 'M', 383), +(68299, 'Kyle', 1952, 'M', 381), +(68300, 'Adrian', 1952, 'M', 372), +(68301, 'Sheldon', 1952, 'M', 368), +(68302, 'Rafael', 1952, 'M', 367), +(68303, 'Travis', 1952, 'M', 366), +(68304, 'Elbert', 1952, 'M', 365), +(68305, 'Royce', 1952, 'M', 362), +(68306, 'Wilson', 1952, 'M', 357), +(68307, 'Sammie', 1952, 'M', 356), +(68308, 'Alfonso', 1952, 'M', 353), +(68309, 'Woodrow', 1952, 'M', 353), +(68310, 'Derek', 1952, 'M', 346), +(68311, 'Guadalupe', 1952, 'M', 343), +(68312, 'Alonzo', 1952, 'M', 342), +(68313, 'Garland', 1952, 'M', 341), +(68314, 'Merle', 1952, 'M', 340), +(68315, 'Noel', 1952, 'M', 340), +(68316, 'Spencer', 1952, 'M', 339), +(68317, 'Carey', 1952, 'M', 338), +(68318, 'Cornelius', 1952, 'M', 338), +(68319, 'Lionel', 1952, 'M', 338), +(68320, 'Louie', 1952, 'M', 332), +(68321, 'Monty', 1952, 'M', 332), +(68322, 'Tracy', 1952, 'M', 332), +(68323, 'Dominick', 1952, 'M', 330), +(68324, 'Jeffry', 1952, 'M', 330), +(68325, 'Pat', 1952, 'M', 328), +(68326, 'Cleveland', 1952, 'M', 327), +(68327, 'Salvador', 1952, 'M', 326), +(68328, 'Christian', 1952, 'M', 323), +(68329, 'Gale', 1952, 'M', 323), +(68330, 'Emmett', 1952, 'M', 321), +(68331, 'Ken', 1952, 'M', 321), +(68332, 'Lanny', 1952, 'M', 321), +(68333, 'Harlan', 1952, 'M', 317), +(68334, 'Buddy', 1952, 'M', 316), +(68335, 'Angel', 1952, 'M', 314), +(68336, 'Vance', 1952, 'M', 313), +(68337, 'Aubrey', 1952, 'M', 312), +(68338, 'Gerry', 1952, 'M', 310), +(68339, 'Amos', 1952, 'M', 307), +(68340, 'Christophe', 1952, 'M', 306), +(68341, 'Marlin', 1952, 'M', 306), +(68342, 'Miles', 1952, 'M', 306), +(68343, 'Galen', 1952, 'M', 304), +(68344, 'Derrick', 1952, 'M', 303), +(68345, 'Rodolfo', 1952, 'M', 303), +(68346, 'Darwin', 1952, 'M', 302), +(68347, 'Alberto', 1952, 'M', 299), +(68348, 'Eldon', 1952, 'M', 298), +(68349, 'Wilfred', 1952, 'M', 298), +(68350, 'Dominic', 1952, 'M', 296), +(68351, 'Edmond', 1952, 'M', 296), +(68352, 'Adam', 1952, 'M', 295), +(68353, 'Dewayne', 1952, 'M', 290), +(68354, 'Evan', 1952, 'M', 288), +(68355, 'Dannie', 1952, 'M', 284), +(68356, 'Moses', 1952, 'M', 284), +(68357, 'Norris', 1952, 'M', 284), +(68358, 'Barney', 1952, 'M', 283), +(68359, 'Jerrold', 1952, 'M', 282), +(68360, 'Murray', 1952, 'M', 282), +(68361, 'Marty', 1952, 'M', 280), +(68362, 'Darnell', 1952, 'M', 277), +(68363, 'Ron', 1952, 'M', 277), +(68364, 'Frederic', 1952, 'M', 276), +(68365, 'Lamar', 1952, 'M', 275), +(68366, 'Ernie', 1952, 'M', 274), +(68367, 'Grover', 1952, 'M', 272), +(68368, 'Harley', 1952, 'M', 272), +(68369, 'Enrique', 1952, 'M', 271), +(68370, 'Dexter', 1952, 'M', 269), +(68371, 'Ernesto', 1952, 'M', 269), +(68372, 'Clay', 1952, 'M', 268), +(68373, 'Ned', 1952, 'M', 268), +(68374, 'Ronny', 1952, 'M', 268), +(68375, 'Blaine', 1952, 'M', 267), +(68376, 'Kirby', 1952, 'M', 266), +(68377, 'Gabriel', 1952, 'M', 265), +(68378, 'Al', 1952, 'M', 264), +(68379, 'Elijah', 1952, 'M', 263), +(68380, 'Alphonso', 1952, 'M', 261), +(68381, 'Winston', 1952, 'M', 261), +(68382, 'Kelvin', 1952, 'M', 259), +(68383, 'Curt', 1952, 'M', 258), +(68384, 'Sterling', 1952, 'M', 257), +(68385, 'Jorge', 1952, 'M', 256), +(68386, 'Orville', 1952, 'M', 256), +(68387, 'Phil', 1952, 'M', 256), +(68388, 'Brett', 1952, 'M', 254), +(68389, 'Irving', 1952, 'M', 254), +(68390, 'Junior', 1952, 'M', 254), +(68391, 'Abraham', 1952, 'M', 253), +(68392, 'Reed', 1952, 'M', 252), +(68393, 'Denny', 1952, 'M', 251), +(68394, 'Javier', 1952, 'M', 251), +(68395, 'Vaughn', 1952, 'M', 251), +(68396, 'Jess', 1952, 'M', 249), +(68397, 'Julio', 1952, 'M', 249), +(68398, 'Linwood', 1952, 'M', 249), +(68399, 'Loyd', 1952, 'M', 248), +(68400, 'Reuben', 1952, 'M', 246), +(68401, 'Joey', 1952, 'M', 243), +(68402, 'Elton', 1952, 'M', 242), +(68403, 'Lon', 1952, 'M', 242), +(68404, 'Elliott', 1952, 'M', 239), +(68405, 'Donny', 1952, 'M', 238), +(68406, 'Sanford', 1952, 'M', 238), +(68407, 'Randell', 1952, 'M', 236), +(68408, 'Billie', 1952, 'M', 235), +(68409, 'Thaddeus', 1952, 'M', 234), +(68410, 'Roscoe', 1952, 'M', 232), +(68411, 'Simon', 1952, 'M', 230), +(68412, 'Harrison', 1952, 'M', 229), +(68413, 'Michel', 1952, 'M', 226), +(68414, 'Thurman', 1952, 'M', 226), +(68415, 'Levi', 1952, 'M', 220), +(68416, 'Blair', 1952, 'M', 219), +(68417, 'Burton', 1952, 'M', 219), +(68418, 'Jason', 1952, 'M', 218), +(68419, 'Austin', 1952, 'M', 216), +(68420, 'Kris', 1952, 'M', 216), +(68421, 'Cornell', 1952, 'M', 214), +(68422, 'Dick', 1952, 'M', 214), +(68423, 'Joesph', 1952, 'M', 214), +(68424, 'Kermit', 1952, 'M', 214), +(68425, 'Will', 1952, 'M', 214), +(68426, 'Drew', 1952, 'M', 213), +(68427, 'Emanuel', 1952, 'M', 213), +(68428, 'Sean', 1952, 'M', 213), +(68429, 'Eddy', 1952, 'M', 212), +(68430, 'Nolan', 1952, 'M', 212), +(68431, 'Blake', 1952, 'M', 211), +(68432, 'Dudley', 1952, 'M', 210), +(68433, 'Kennith', 1952, 'M', 210), +(68434, 'Sandy', 1952, 'M', 209), +(68435, 'Tomas', 1952, 'M', 209), +(68436, 'Jaime', 1952, 'M', 208), +(68437, 'Elliot', 1952, 'M', 206), +(68438, 'Emil', 1952, 'M', 206), +(68439, 'Fredric', 1952, 'M', 206), +(68440, 'Jasper', 1952, 'M', 206), +(68441, 'Ramiro', 1952, 'M', 204), +(68442, 'Carmen', 1952, 'M', 203), +(68443, 'Reid', 1952, 'M', 203), +(68444, 'Rocco', 1952, 'M', 202), +(68445, 'Stevie', 1952, 'M', 202), +(68446, 'Norbert', 1952, 'M', 201), +(68447, 'Odell', 1952, 'M', 199), +(68448, 'Colin', 1952, 'M', 198), +(68449, 'Elwood', 1952, 'M', 194), +(68450, 'August', 1952, 'M', 193), +(68451, 'Kendall', 1952, 'M', 191), +(68452, 'Toby', 1952, 'M', 191), +(68453, 'Wiley', 1952, 'M', 191), +(68454, 'Dane', 1952, 'M', 189), +(68455, 'Erik', 1952, 'M', 188), +(68456, 'Shawn', 1952, 'M', 188), +(68457, 'Danial', 1952, 'M', 187), +(68458, 'Geary', 1952, 'M', 187), +(68459, 'Lane', 1952, 'M', 186), +(68460, 'Jody', 1952, 'M', 185), +(68461, 'Millard', 1952, 'M', 185), +(68462, 'Ulysses', 1952, 'M', 185), +(68463, 'Lamont', 1952, 'M', 184), +(68464, 'Felipe', 1952, 'M', 183), +(68465, 'Rogelio', 1952, 'M', 183), +(68466, 'Ward', 1952, 'M', 183), +(68467, 'Donn', 1952, 'M', 182), +(68468, 'Casey', 1952, 'M', 180), +(68469, 'Timmy', 1952, 'M', 179), +(68470, 'Val', 1952, 'M', 179), +(68471, 'Elvin', 1952, 'M', 178), +(68472, 'Gilberto', 1952, 'M', 178), +(68473, 'Israel', 1952, 'M', 177), +(68474, 'Gus', 1952, 'M', 176), +(68475, 'Jeremiah', 1952, 'M', 176), +(68476, 'Joshua', 1952, 'M', 176), +(68477, 'Robbie', 1952, 'M', 176), +(68478, 'Russel', 1952, 'M', 176), +(68479, 'Terrell', 1952, 'M', 176), +(68480, 'Alejandro', 1952, 'M', 175), +(68481, 'Eduardo', 1952, 'M', 175), +(68482, 'Jake', 1952, 'M', 175), +(68483, 'Justin', 1952, 'M', 174), +(68484, 'Orlando', 1952, 'M', 173), +(68485, 'Pablo', 1952, 'M', 172), +(68486, 'Zachary', 1952, 'M', 172), +(68487, 'Garrett', 1952, 'M', 171), +(68488, 'Monroe', 1952, 'M', 169), +(68489, 'Gail', 1952, 'M', 168), +(68490, 'Morgan', 1952, 'M', 168), +(68491, 'Elias', 1952, 'M', 165), +(68492, 'Winfred', 1952, 'M', 165), +(68493, 'Merrill', 1952, 'M', 164), +(68494, 'Abel', 1952, 'M', 163), +(68495, 'Riley', 1952, 'M', 163), +(68496, 'Rory', 1952, 'M', 163), +(68497, 'Ivory', 1952, 'M', 162), +(68498, 'Jackson', 1952, 'M', 162), +(68499, 'Mitchel', 1952, 'M', 161), +(68500, 'Reynaldo', 1952, 'M', 161), +(68501, 'Luke', 1952, 'M', 158), +(68502, 'Mary', 1952, 'M', 158), +(68503, 'Weldon', 1952, 'M', 158), +(68504, 'Bobbie', 1952, 'M', 157), +(68505, 'Charley', 1952, 'M', 157), +(68506, 'Merlin', 1952, 'M', 157), +(68507, 'Carter', 1952, 'M', 156), +(68508, 'Erwin', 1952, 'M', 156), +(68509, 'Cedric', 1952, 'M', 155), +(68510, 'Domingo', 1952, 'M', 155), +(68511, 'Maynard', 1952, 'M', 155), +(68512, 'Roman', 1952, 'M', 154), +(68513, 'Jefferson', 1952, 'M', 153), +(68514, 'Solomon', 1952, 'M', 153), +(68515, 'Otto', 1952, 'M', 152), +(68516, 'Chuck', 1952, 'M', 151), +(68517, 'Donnell', 1952, 'M', 151), +(68518, 'Andres', 1952, 'M', 150), +(68519, 'Nicky', 1952, 'M', 150), +(68520, 'Ollie', 1952, 'M', 150), +(68521, 'Barton', 1952, 'M', 149), +(68522, 'Adolph', 1952, 'M', 147), +(68523, 'Jean', 1952, 'M', 147), +(68524, 'Stan', 1952, 'M', 147), +(68525, 'Hollis', 1952, 'M', 146), +(68526, 'Ismael', 1952, 'M', 146), +(68527, 'Bennett', 1952, 'M', 144), +(68528, 'Harris', 1952, 'M', 144), +(68529, 'Rogers', 1952, 'M', 144), +(68530, 'Bryant', 1952, 'M', 143), +(68531, 'Emory', 1952, 'M', 143), +(68532, 'Noah', 1952, 'M', 143), +(68533, 'Davis', 1952, 'M', 142), +(68534, 'Sergio', 1952, 'M', 142), +(68535, 'Vern', 1952, 'M', 142), +(68536, 'Duncan', 1952, 'M', 141), +(68537, 'Denver', 1952, 'M', 140), +(68538, 'Eli', 1952, 'M', 140), +(68539, 'Emery', 1952, 'M', 140), +(68540, 'Jacky', 1952, 'M', 140), +(68541, 'Mathew', 1952, 'M', 140), +(68542, 'Armand', 1952, 'M', 139), +(68543, 'Delmar', 1952, 'M', 139), +(68544, 'Irwin', 1952, 'M', 139), +(68545, 'Rolando', 1952, 'M', 139), +(68546, 'Booker', 1952, 'M', 138), +(68547, 'Bryce', 1952, 'M', 138), +(68548, 'Dwain', 1952, 'M', 138), +(68549, 'Jamie', 1952, 'M', 138), +(68550, 'Bart', 1952, 'M', 137), +(68551, 'Ed', 1952, 'M', 137), +(68552, 'Linda', 1952, 'M', 137), +(68553, 'Vito', 1952, 'M', 137), +(68554, 'Guillermo', 1952, 'M', 135), +(68555, 'Isaiah', 1952, 'M', 135), +(68556, 'Jerold', 1952, 'M', 135), +(68557, 'Santiago', 1952, 'M', 135), +(68558, 'Shelby', 1952, 'M', 135), +(68559, 'Anton', 1952, 'M', 134), +(68560, 'Emilio', 1952, 'M', 134), +(68561, 'Hiram', 1952, 'M', 134), +(68562, 'Dickie', 1952, 'M', 133), +(68563, 'Damon', 1952, 'M', 132), +(68564, 'Lindsey', 1952, 'M', 132), +(68565, 'Clair', 1952, 'M', 131), +(68566, 'Quentin', 1952, 'M', 131), +(68567, 'Seth', 1952, 'M', 129), +(68568, 'Arlen', 1952, 'M', 128), +(68569, 'Coy', 1952, 'M', 128), +(68570, 'Bernie', 1952, 'M', 127), +(68571, 'Connie', 1952, 'M', 127), +(68572, 'Benito', 1952, 'M', 126), +(68573, 'Reggie', 1952, 'M', 126), +(68574, 'Stanford', 1952, 'M', 126), +(68575, 'Ryan', 1952, 'M', 125), +(68576, 'Butch', 1952, 'M', 124), +(68577, 'Errol', 1952, 'M', 124), +(68578, 'Clement', 1952, 'M', 123), +(68579, 'Shelton', 1952, 'M', 123), +(68580, 'Douglass', 1952, 'M', 122), +(68581, 'Hershel', 1952, 'M', 122), +(68582, 'Kenton', 1952, 'M', 122), +(68583, 'Myles', 1952, 'M', 122), +(68584, 'Sonny', 1952, 'M', 122), +(68585, 'Carson', 1952, 'M', 121), +(68586, 'Scotty', 1952, 'M', 121), +(68587, 'Dalton', 1952, 'M', 120), +(68588, 'Ian', 1952, 'M', 120), +(68589, 'Rusty', 1952, 'M', 120), +(68590, 'Ignacio', 1952, 'M', 119), +(68591, 'Chad', 1952, 'M', 118), +(68592, 'Nickolas', 1952, 'M', 117), +(68593, 'Johnie', 1952, 'M', 116), +(68594, 'Mac', 1952, 'M', 115), +(68595, 'Major', 1952, 'M', 115), +(68596, 'Brady', 1952, 'M', 114), +(68597, 'Burt', 1952, 'M', 114), +(68598, 'Lavern', 1952, 'M', 114), +(68599, 'Wilton', 1952, 'M', 114), +(68600, 'Cameron', 1952, 'M', 113), +(68601, 'Hilton', 1952, 'M', 113), +(68602, 'Wilford', 1952, 'M', 113), +(68603, 'Doug', 1952, 'M', 112), +(68604, 'Rand', 1952, 'M', 112), +(68605, 'Wilmer', 1952, 'M', 112), +(68606, 'Gaylord', 1952, 'M', 111), +(68607, 'Marco', 1952, 'M', 111), +(68608, 'Rayford', 1952, 'M', 111), +(68609, 'Buford', 1952, 'M', 110), +(68610, 'Gearld', 1952, 'M', 110), +(68611, 'Carmine', 1952, 'M', 109), +(68612, 'Dirk', 1952, 'M', 109), +(68613, 'Isiah', 1952, 'M', 109), +(68614, 'Augustus', 1952, 'M', 108), +(68615, 'Dee', 1952, 'M', 108), +(68616, 'Garth', 1952, 'M', 108), +(68617, 'Lenard', 1952, 'M', 108), +(68618, 'Stanton', 1952, 'M', 108), +(68619, 'Stevan', 1952, 'M', 108), +(68620, 'Hank', 1952, 'M', 107), +(68621, 'Marcel', 1952, 'M', 107), +(68622, 'Cleo', 1952, 'M', 106), +(68623, 'Corey', 1952, 'M', 106), +(68624, 'Laverne', 1952, 'M', 106), +(68625, 'Shannon', 1952, 'M', 106), +(68626, 'Lemuel', 1952, 'M', 105), +(68627, 'Lonny', 1952, 'M', 105), +(68628, 'Nicolas', 1952, 'M', 105), +(68629, 'Patricia', 1952, 'M', 105), +(68630, 'Pierre', 1952, 'M', 105), +(68631, 'Stacy', 1952, 'M', 105), +(68632, 'Carol', 1952, 'M', 104), +(68633, 'Freeman', 1952, 'M', 104), +(68634, 'Mikel', 1952, 'M', 104), +(68635, 'Royal', 1952, 'M', 104), +(68636, 'Basil', 1952, 'M', 103), +(68637, 'Fletcher', 1952, 'M', 103), +(68638, 'Glynn', 1952, 'M', 103), +(68639, 'Pasquale', 1952, 'M', 103), +(68640, 'Leigh', 1952, 'M', 102), +(68641, 'Saul', 1952, 'M', 102), +(68642, 'Silas', 1952, 'M', 102), +(68643, 'Taylor', 1952, 'M', 102), +(68644, 'Gayle', 1952, 'M', 101), +(68645, 'Santos', 1952, 'M', 101), +(68646, 'Earle', 1952, 'M', 100), +(68647, 'Everette', 1952, 'M', 100), +(68648, 'Jeremy', 1952, 'M', 100), +(68649, 'Wilburn', 1952, 'M', 100), +(68650, 'Mary', 1953, 'F', 64337), +(68651, 'Linda', 1953, 'F', 61244), +(68652, 'Deborah', 1953, 'F', 52183), +(68653, 'Patricia', 1953, 'F', 50982), +(68654, 'Susan', 1953, 'F', 44269), +(68655, 'Barbara', 1953, 'F', 38446), +(68656, 'Debra', 1953, 'F', 36853), +(68657, 'Nancy', 1953, 'F', 30599), +(68658, 'Karen', 1953, 'F', 29838), +(68659, 'Pamela', 1953, 'F', 25746), +(68660, 'Sandra', 1953, 'F', 25502), +(68661, 'Cynthia', 1953, 'F', 25123), +(68662, 'Donna', 1953, 'F', 24221), +(68663, 'Kathleen', 1953, 'F', 23719), +(68664, 'Sharon', 1953, 'F', 23047), +(68665, 'Carol', 1953, 'F', 22272), +(68666, 'Diane', 1953, 'F', 21344), +(68667, 'Brenda', 1953, 'F', 20132), +(68668, 'Janet', 1953, 'F', 17756), +(68669, 'Margaret', 1953, 'F', 16207), +(68670, 'Elizabeth', 1953, 'F', 16091), +(68671, 'Janice', 1953, 'F', 14609), +(68672, 'Kathy', 1953, 'F', 13390), +(68673, 'Rebecca', 1953, 'F', 12954), +(68674, 'Carolyn', 1953, 'F', 12896), +(68675, 'Joyce', 1953, 'F', 12785), +(68676, 'Judy', 1953, 'F', 12718), +(68677, 'Cheryl', 1953, 'F', 12271), +(68678, 'Shirley', 1953, 'F', 12141), +(68679, 'Judith', 1953, 'F', 11957), +(68680, 'Denise', 1953, 'F', 11941), +(68681, 'Christine', 1953, 'F', 11793), +(68682, 'Betty', 1953, 'F', 11363), +(68683, 'Beverly', 1953, 'F', 11225), +(68684, 'Catherine', 1953, 'F', 10833), +(68685, 'Marilyn', 1953, 'F', 10738), +(68686, 'Joan', 1953, 'F', 9772), +(68687, 'Gloria', 1953, 'F', 9665), +(68688, 'Gail', 1953, 'F', 9577), +(68689, 'Paula', 1953, 'F', 9543), +(68690, 'Martha', 1953, 'F', 9256), +(68691, 'Teresa', 1953, 'F', 8925), +(68692, 'Jane', 1953, 'F', 8902), +(68693, 'Peggy', 1953, 'F', 8758), +(68694, 'Bonnie', 1953, 'F', 8602), +(68695, 'Ann', 1953, 'F', 8575), +(68696, 'Connie', 1953, 'F', 8572), +(68697, 'Kathryn', 1953, 'F', 8321), +(68698, 'Dorothy', 1953, 'F', 8145), +(68699, 'Theresa', 1953, 'F', 7722), +(68700, 'Laura', 1953, 'F', 7622), +(68701, 'Jean', 1953, 'F', 7563), +(68702, 'Virginia', 1953, 'F', 7544), +(68703, 'Jo', 1953, 'F', 7517), +(68704, 'Diana', 1953, 'F', 7442), +(68705, 'Cathy', 1953, 'F', 7299), +(68706, 'Wanda', 1953, 'F', 7189), +(68707, 'Jacqueline', 1953, 'F', 7127), +(68708, 'Rose', 1953, 'F', 7008), +(68709, 'Sheila', 1953, 'F', 6956), +(68710, 'Vicki', 1953, 'F', 6820), +(68711, 'Ruth', 1953, 'F', 6573), +(68712, 'Katherine', 1953, 'F', 6557), +(68713, 'Rita', 1953, 'F', 6281), +(68714, 'Helen', 1953, 'F', 6121), +(68715, 'Robin', 1953, 'F', 6032), +(68716, 'Lynn', 1953, 'F', 5993), +(68717, 'Maria', 1953, 'F', 5979), +(68718, 'Phyllis', 1953, 'F', 5956), +(68719, 'Sherry', 1953, 'F', 5937), +(68720, 'Joanne', 1953, 'F', 5880), +(68721, 'Frances', 1953, 'F', 5780), +(68722, 'Alice', 1953, 'F', 5745), +(68723, 'Julie', 1953, 'F', 5663), +(68724, 'Darlene', 1953, 'F', 5588), +(68725, 'Ellen', 1953, 'F', 5537), +(68726, 'Elaine', 1953, 'F', 5493), +(68727, 'Suzanne', 1953, 'F', 5471), +(68728, 'Vickie', 1953, 'F', 5292), +(68729, 'Anne', 1953, 'F', 5254), +(68730, 'Sally', 1953, 'F', 5176), +(68731, 'Victoria', 1953, 'F', 5161), +(68732, 'Marsha', 1953, 'F', 5129), +(68733, 'Marcia', 1953, 'F', 5064), +(68734, 'Rhonda', 1953, 'F', 5030), +(68735, 'Marie', 1953, 'F', 4955), +(68736, 'Doris', 1953, 'F', 4901), +(68737, 'Valerie', 1953, 'F', 4581), +(68738, 'Anita', 1953, 'F', 4406), +(68739, 'Roberta', 1953, 'F', 4300), +(68740, 'Lois', 1953, 'F', 4219), +(68741, 'Maureen', 1953, 'F', 4106), +(68742, 'Sarah', 1953, 'F', 4077), +(68743, 'Evelyn', 1953, 'F', 4062), +(68744, 'Constance', 1953, 'F', 4025), +(68745, 'Leslie', 1953, 'F', 3903), +(68746, 'Jeanne', 1953, 'F', 3851), +(68747, 'Anna', 1953, 'F', 3837), +(68748, 'Cindy', 1953, 'F', 3825), +(68749, 'Charlotte', 1953, 'F', 3812), +(68750, 'Sylvia', 1953, 'F', 3810), +(68751, 'Michele', 1953, 'F', 3724), +(68752, 'Laurie', 1953, 'F', 3689), +(68753, 'Yvonne', 1953, 'F', 3687), +(68754, 'Glenda', 1953, 'F', 3660), +(68755, 'Sue', 1953, 'F', 3646), +(68756, 'Michelle', 1953, 'F', 3634), +(68757, 'Eileen', 1953, 'F', 3626), +(68758, 'Dianne', 1953, 'F', 3621), +(68759, 'Wendy', 1953, 'F', 3611), +(68760, 'Lisa', 1953, 'F', 3604), +(68761, 'Gwendolyn', 1953, 'F', 3514), +(68762, 'Charlene', 1953, 'F', 3503), +(68763, 'Jill', 1953, 'F', 3386), +(68764, 'Jennifer', 1953, 'F', 3376), +(68765, 'Terry', 1953, 'F', 3376), +(68766, 'Colleen', 1953, 'F', 3375), +(68767, 'Lorraine', 1953, 'F', 3310), +(68768, 'Debbie', 1953, 'F', 3205), +(68769, 'Angela', 1953, 'F', 3176), +(68770, 'Joann', 1953, 'F', 3169), +(68771, 'Norma', 1953, 'F', 3169), +(68772, 'Stephanie', 1953, 'F', 3081), +(68773, 'Julia', 1953, 'F', 2968), +(68774, 'Louise', 1953, 'F', 2961), +(68775, 'Claudia', 1953, 'F', 2858), +(68776, 'Irene', 1953, 'F', 2798), +(68777, 'Marlene', 1953, 'F', 2761), +(68778, 'Carla', 1953, 'F', 2757), +(68779, 'Terri', 1953, 'F', 2725), +(68780, 'Andrea', 1953, 'F', 2719), +(68781, 'Regina', 1953, 'F', 2708), +(68782, 'Juanita', 1953, 'F', 2706), +(68783, 'Renee', 1953, 'F', 2692), +(68784, 'Geraldine', 1953, 'F', 2669), +(68785, 'Gayle', 1953, 'F', 2666), +(68786, 'Loretta', 1953, 'F', 2662), +(68787, 'Dawn', 1953, 'F', 2639), +(68788, 'Jeanette', 1953, 'F', 2608), +(68789, 'Jan', 1953, 'F', 2606), +(68790, 'Patsy', 1953, 'F', 2590), +(68791, 'Beth', 1953, 'F', 2564), +(68792, 'Annie', 1953, 'F', 2551), +(68793, 'Marjorie', 1953, 'F', 2538), +(68794, 'Annette', 1953, 'F', 2487), +(68795, 'Kay', 1953, 'F', 2467), +(68796, 'Rosemary', 1953, 'F', 2426), +(68797, 'Sheryl', 1953, 'F', 2400), +(68798, 'Vivian', 1953, 'F', 2350), +(68799, 'Ruby', 1953, 'F', 2340), +(68800, 'Joy', 1953, 'F', 2305), +(68801, 'Lynda', 1953, 'F', 2305), +(68802, 'Amy', 1953, 'F', 2303), +(68803, 'Arlene', 1953, 'F', 2303), +(68804, 'June', 1953, 'F', 2263), +(68805, 'Delores', 1953, 'F', 2169), +(68806, 'Penny', 1953, 'F', 2151), +(68807, 'Sara', 1953, 'F', 2079), +(68808, 'Lynne', 1953, 'F', 2039), +(68809, 'Patti', 1953, 'F', 2031), +(68810, 'Rosa', 1953, 'F', 2031), +(68811, 'Toni', 1953, 'F', 2025), +(68812, 'Melissa', 1953, 'F', 2007), +(68813, 'Vanessa', 1953, 'F', 2005), +(68814, 'Dolores', 1953, 'F', 1981), +(68815, 'Audrey', 1953, 'F', 1941), +(68816, 'Mildred', 1953, 'F', 1939), +(68817, 'Shelley', 1953, 'F', 1936), +(68818, 'Janis', 1953, 'F', 1867), +(68819, 'Vicky', 1953, 'F', 1860), +(68820, 'Yolanda', 1953, 'F', 1808), +(68821, 'Josephine', 1953, 'F', 1795), +(68822, 'Belinda', 1953, 'F', 1789), +(68823, 'Lori', 1953, 'F', 1788), +(68824, 'Rachel', 1953, 'F', 1776), +(68825, 'Christina', 1953, 'F', 1775), +(68826, 'Melinda', 1953, 'F', 1771), +(68827, 'Roxanne', 1953, 'F', 1766), +(68828, 'Paulette', 1953, 'F', 1759), +(68829, 'Candace', 1953, 'F', 1752), +(68830, 'Georgia', 1953, 'F', 1743), +(68831, 'Kim', 1953, 'F', 1743), +(68832, 'Jacquelyn', 1953, 'F', 1742), +(68833, 'Jackie', 1953, 'F', 1728), +(68834, 'Carmen', 1953, 'F', 1725), +(68835, 'Lillian', 1953, 'F', 1657), +(68836, 'Marianne', 1953, 'F', 1650), +(68837, 'Carole', 1953, 'F', 1632), +(68838, 'Becky', 1953, 'F', 1627), +(68839, 'Edna', 1953, 'F', 1614), +(68840, 'Esther', 1953, 'F', 1613), +(68841, 'Veronica', 1953, 'F', 1613), +(68842, 'Monica', 1953, 'F', 1598), +(68843, 'Eva', 1953, 'F', 1594), +(68844, 'Emma', 1953, 'F', 1590), +(68845, 'Sherri', 1953, 'F', 1583), +(68846, 'Janie', 1953, 'F', 1578), +(68847, 'Pauline', 1953, 'F', 1568), +(68848, 'Holly', 1953, 'F', 1563), +(68849, 'Lydia', 1953, 'F', 1562), +(68850, 'Lucy', 1953, 'F', 1561), +(68851, 'Edith', 1953, 'F', 1527), +(68852, 'Lucille', 1953, 'F', 1491), +(68853, 'Shelia', 1953, 'F', 1483), +(68854, 'Ramona', 1953, 'F', 1455), +(68855, 'Margie', 1953, 'F', 1451), +(68856, 'Lou', 1953, 'F', 1436), +(68857, 'Wilma', 1953, 'F', 1436), +(68858, 'Kimberly', 1953, 'F', 1427), +(68859, 'Melanie', 1953, 'F', 1425), +(68860, 'Dianna', 1953, 'F', 1398), +(68861, 'Clara', 1953, 'F', 1383), +(68862, 'Grace', 1953, 'F', 1380), +(68863, 'Priscilla', 1953, 'F', 1380), +(68864, 'Nina', 1953, 'F', 1377), +(68865, 'Gladys', 1953, 'F', 1367), +(68866, 'Marian', 1953, 'F', 1365), +(68867, 'Bonita', 1953, 'F', 1353), +(68868, 'Billie', 1953, 'F', 1332), +(68869, 'Emily', 1953, 'F', 1324), +(68870, 'Bobbie', 1953, 'F', 1318), +(68871, 'Melody', 1953, 'F', 1295), +(68872, 'Thelma', 1953, 'F', 1287), +(68873, 'Ethel', 1953, 'F', 1283), +(68874, 'Carrie', 1953, 'F', 1280), +(68875, 'Marion', 1953, 'F', 1280), +(68876, 'Eleanor', 1953, 'F', 1254), +(68877, 'Kristine', 1953, 'F', 1247), +(68878, 'Dana', 1953, 'F', 1197), +(68879, 'Luann', 1953, 'F', 1192), +(68880, 'Vera', 1953, 'F', 1189), +(68881, 'Doreen', 1953, 'F', 1180), +(68882, 'Bertha', 1953, 'F', 1173), +(68883, 'Maxine', 1953, 'F', 1171), +(68884, 'Ella', 1953, 'F', 1162), +(68885, 'Bernice', 1953, 'F', 1156), +(68886, 'Willie', 1953, 'F', 1154), +(68887, 'Nora', 1953, 'F', 1149), +(68888, 'Patty', 1953, 'F', 1139), +(68889, 'Florence', 1953, 'F', 1123), +(68890, 'Patrice', 1953, 'F', 1116), +(68891, 'Tina', 1953, 'F', 1098), +(68892, 'Beatrice', 1953, 'F', 1093), +(68893, 'Alma', 1953, 'F', 1090), +(68894, 'Claire', 1953, 'F', 1089), +(68895, 'Francine', 1953, 'F', 1081), +(68896, 'Maryann', 1953, 'F', 1078), +(68897, 'Lillie', 1953, 'F', 1067), +(68898, 'Mona', 1953, 'F', 1064), +(68899, 'Dale', 1953, 'F', 1053), +(68900, 'Hazel', 1953, 'F', 1044), +(68901, 'Cecilia', 1953, 'F', 1038), +(68902, 'Faye', 1953, 'F', 1029), +(68903, 'Lee', 1953, 'F', 1018), +(68904, 'Ida', 1953, 'F', 1016), +(68905, 'Lana', 1953, 'F', 1006), +(68906, 'Rosie', 1953, 'F', 1002), +(68907, 'Lynette', 1953, 'F', 989), +(68908, 'Betsy', 1953, 'F', 987), +(68909, 'Lucinda', 1953, 'F', 976), +(68910, 'Myra', 1953, 'F', 967), +(68911, 'Stella', 1953, 'F', 957), +(68912, 'Marla', 1953, 'F', 956), +(68913, 'Gale', 1953, 'F', 948), +(68914, 'Dixie', 1953, 'F', 943), +(68915, 'Karla', 1953, 'F', 938), +(68916, 'Laurel', 1953, 'F', 937), +(68917, 'Irma', 1953, 'F', 932), +(68918, 'Iris', 1953, 'F', 920), +(68919, 'Debora', 1953, 'F', 918), +(68920, 'Dora', 1953, 'F', 918), +(68921, 'Bernadette', 1953, 'F', 916), +(68922, 'Alicia', 1953, 'F', 913), +(68923, 'Jeannette', 1953, 'F', 911), +(68924, 'Miriam', 1953, 'F', 904), +(68925, 'Jeannie', 1953, 'F', 901), +(68926, 'Jessie', 1953, 'F', 897), +(68927, 'Jamie', 1953, 'F', 895), +(68928, 'Caroline', 1953, 'F', 885), +(68929, 'Susie', 1953, 'F', 885), +(68930, 'Deanna', 1953, 'F', 883), +(68931, 'Antoinette', 1953, 'F', 880), +(68932, 'Nadine', 1953, 'F', 868), +(68933, 'Ginger', 1953, 'F', 858), +(68934, 'Jody', 1953, 'F', 852), +(68935, 'Kathie', 1953, 'F', 834), +(68936, 'Marguerite', 1953, 'F', 831), +(68937, 'Trudy', 1953, 'F', 828), +(68938, 'Therese', 1953, 'F', 827), +(68939, 'April', 1953, 'F', 823), +(68940, 'Cheri', 1953, 'F', 819), +(68941, 'Cathleen', 1953, 'F', 817), +(68942, 'Harriet', 1953, 'F', 797), +(68943, 'Sherrie', 1953, 'F', 794), +(68944, 'Jennie', 1953, 'F', 765), +(68945, 'Joni', 1953, 'F', 757), +(68946, 'Naomi', 1953, 'F', 755), +(68947, 'Jenny', 1953, 'F', 754), +(68948, 'Mattie', 1953, 'F', 751), +(68949, 'Rosalie', 1953, 'F', 748), +(68950, 'Geneva', 1953, 'F', 745), +(68951, 'Velma', 1953, 'F', 740), +(68952, 'Rosanne', 1953, 'F', 738), +(68953, 'Deloris', 1953, 'F', 734), +(68954, 'Hilda', 1953, 'F', 726), +(68955, 'Teri', 1953, 'F', 726), +(68956, 'Johnnie', 1953, 'F', 722), +(68957, 'Lorna', 1953, 'F', 718), +(68958, 'Sheri', 1953, 'F', 712), +(68959, 'Janette', 1953, 'F', 701), +(68960, 'Janine', 1953, 'F', 694), +(68961, 'Cecelia', 1953, 'F', 691), +(68962, 'Jeri', 1953, 'F', 682), +(68963, 'Heidi', 1953, 'F', 681), +(68964, 'Crystal', 1953, 'F', 674), +(68965, 'Guadalupe', 1953, 'F', 663), +(68966, 'Robyn', 1953, 'F', 662), +(68967, 'Jana', 1953, 'F', 655), +(68968, 'Minnie', 1953, 'F', 655), +(68969, 'Verna', 1953, 'F', 654), +(68970, 'Cora', 1953, 'F', 650), +(68971, 'Marcella', 1953, 'F', 650), +(68972, 'Bessie', 1953, 'F', 647), +(68973, 'Darla', 1953, 'F', 647), +(68974, 'Candice', 1953, 'F', 643), +(68975, 'Agnes', 1953, 'F', 642), +(68976, 'Susanne', 1953, 'F', 638), +(68977, 'Margo', 1953, 'F', 637), +(68978, 'Celeste', 1953, 'F', 636), +(68979, 'Mae', 1953, 'F', 636), +(68980, 'Madeline', 1953, 'F', 635), +(68981, 'Ernestine', 1953, 'F', 630), +(68982, 'Christy', 1953, 'F', 620), +(68983, 'Olivia', 1953, 'F', 619), +(68984, 'Lena', 1953, 'F', 611), +(68985, 'Nellie', 1953, 'F', 605), +(68986, 'Faith', 1953, 'F', 604), +(68987, 'Unknown', 1953, 'F', 600), +(68988, 'Cassandra', 1953, 'F', 598), +(68989, 'Rosemarie', 1953, 'F', 596), +(68990, 'Adrienne', 1953, 'F', 592), +(68991, 'Elsie', 1953, 'F', 589), +(68992, 'Lauren', 1953, 'F', 588), +(68993, 'Leona', 1953, 'F', 584), +(68994, 'Molly', 1953, 'F', 582), +(68995, 'Tamara', 1953, 'F', 582), +(68996, 'Celia', 1953, 'F', 579), +(68997, 'Leah', 1953, 'F', 579), +(68998, 'Gretchen', 1953, 'F', 578), +(68999, 'Luanne', 1953, 'F', 578), +(69000, 'Gay', 1953, 'F', 577), +(69001, 'Olga', 1953, 'F', 576), +(69002, 'Rochelle', 1953, 'F', 575), +(69003, 'Jayne', 1953, 'F', 574), +(69004, 'Gwen', 1953, 'F', 573), +(69005, 'Viola', 1953, 'F', 572), +(69006, 'Shelly', 1953, 'F', 571), +(69007, 'Kerry', 1953, 'F', 568), +(69008, 'Margarita', 1953, 'F', 554), +(69009, 'Amelia', 1953, 'F', 550), +(69010, 'Alberta', 1953, 'F', 549), +(69011, 'Della', 1953, 'F', 549), +(69012, 'Daisy', 1953, 'F', 548), +(69013, 'Terrie', 1953, 'F', 543), +(69014, 'Glenna', 1953, 'F', 539), +(69015, 'Penelope', 1953, 'F', 537), +(69016, 'Katie', 1953, 'F', 534), +(69017, 'Laverne', 1953, 'F', 534), +(69018, 'Lola', 1953, 'F', 534), +(69019, 'Tanya', 1953, 'F', 533), +(69020, 'Bridget', 1953, 'F', 526), +(69021, 'Freda', 1953, 'F', 521), +(69022, 'Corinne', 1953, 'F', 520), +(69023, 'Rosalind', 1953, 'F', 518), +(69024, 'Polly', 1953, 'F', 517), +(69025, 'Lora', 1953, 'F', 516), +(69026, 'Pearl', 1953, 'F', 513), +(69027, 'Sandy', 1953, 'F', 510), +(69028, 'Noreen', 1953, 'F', 508), +(69029, 'Diann', 1953, 'F', 507), +(69030, 'Hattie', 1953, 'F', 506), +(69031, 'Jessica', 1953, 'F', 495), +(69032, 'Alison', 1953, 'F', 493), +(69033, 'Shannon', 1953, 'F', 493), +(69034, 'Ronda', 1953, 'F', 491), +(69035, 'Camille', 1953, 'F', 482), +(69036, 'Gayla', 1953, 'F', 481), +(69037, 'Karin', 1953, 'F', 481), +(69038, 'Delia', 1953, 'F', 480), +(69039, 'Isabel', 1953, 'F', 480), +(69040, 'Cherie', 1953, 'F', 477), +(69041, 'Flora', 1953, 'F', 469), +(69042, 'Yvette', 1953, 'F', 469), +(69043, 'Ava', 1953, 'F', 463), +(69044, 'Melba', 1953, 'F', 460), +(69045, 'Jeanie', 1953, 'F', 459), +(69046, 'Eunice', 1953, 'F', 456), +(69047, 'Hope', 1953, 'F', 456), +(69048, 'Helene', 1953, 'F', 453), +(69049, 'Jeanine', 1953, 'F', 452), +(69050, 'Sondra', 1953, 'F', 448), +(69051, 'Kristin', 1953, 'F', 447), +(69052, 'Jeannine', 1953, 'F', 446), +(69053, 'Adele', 1953, 'F', 444), +(69054, 'Bette', 1953, 'F', 444), +(69055, 'Nanette', 1953, 'F', 443), +(69056, 'Reba', 1953, 'F', 440), +(69057, 'Sonia', 1953, 'F', 439), +(69058, 'Ada', 1953, 'F', 438), +(69059, 'Jacalyn', 1953, 'F', 437), +(69060, 'Kathi', 1953, 'F', 437), +(69061, 'Eloise', 1953, 'F', 436), +(69062, 'Fannie', 1953, 'F', 434), +(69063, 'Marta', 1953, 'F', 433), +(69064, 'Lenora', 1953, 'F', 430), +(69065, 'Sallie', 1953, 'F', 430), +(69066, 'Charmaine', 1953, 'F', 428), +(69067, 'Amanda', 1953, 'F', 427), +(69068, 'Heather', 1953, 'F', 427), +(69069, 'Gertrude', 1953, 'F', 423), +(69070, 'Mamie', 1953, 'F', 422), +(69071, 'Rena', 1953, 'F', 422), +(69072, 'Violet', 1953, 'F', 422), +(69073, 'Rosalyn', 1953, 'F', 418), +(69074, 'Erma', 1953, 'F', 417), +(69075, 'Dee', 1953, 'F', 416), +(69076, 'Frankie', 1953, 'F', 416), +(69077, 'Henrietta', 1953, 'F', 415), +(69078, 'Sonja', 1953, 'F', 413), +(69079, 'Gina', 1953, 'F', 411), +(69080, 'Joanna', 1953, 'F', 411), +(69081, 'Roseann', 1953, 'F', 409), +(69082, 'Rosetta', 1953, 'F', 407), +(69083, 'Christie', 1953, 'F', 406), +(69084, 'Robbie', 1953, 'F', 406), +(69085, 'Claudette', 1953, 'F', 404), +(69086, 'Dona', 1953, 'F', 404), +(69087, 'Lula', 1953, 'F', 404), +(69088, 'Jerri', 1953, 'F', 393), +(69089, 'Myrna', 1953, 'F', 390), +(69090, 'Mindy', 1953, 'F', 384), +(69091, 'Estella', 1953, 'F', 378), +(69092, 'Jolene', 1953, 'F', 376), +(69093, 'Myrtle', 1953, 'F', 375), +(69094, 'Candy', 1953, 'F', 374), +(69095, 'Natalie', 1953, 'F', 371), +(69096, 'Randi', 1953, 'F', 370), +(69097, 'Saundra', 1953, 'F', 370), +(69098, 'Rene', 1953, 'F', 367), +(69099, 'Ruthie', 1953, 'F', 367), +(69100, 'Sharron', 1953, 'F', 367), +(69101, 'Suzan', 1953, 'F', 366), +(69102, 'Denice', 1953, 'F', 363), +(69103, 'Marcy', 1953, 'F', 362), +(69104, 'Kaye', 1953, 'F', 361), +(69105, 'Elise', 1953, 'F', 353), +(69106, 'Colette', 1953, 'F', 348), +(69107, 'Nita', 1953, 'F', 339), +(69108, 'Rae', 1953, 'F', 339), +(69109, 'Katharine', 1953, 'F', 338), +(69110, 'Lila', 1953, 'F', 338), +(69111, 'Maggie', 1953, 'F', 338), +(69112, 'Roxann', 1953, 'F', 338), +(69113, 'Carlene', 1953, 'F', 337), +(69114, 'Blanche', 1953, 'F', 336), +(69115, 'Chris', 1953, 'F', 335), +(69116, 'Ilene', 1953, 'F', 334), +(69117, 'Bettye', 1953, 'F', 331), +(69118, 'Janelle', 1953, 'F', 331), +(69119, 'Eugenia', 1953, 'F', 329), +(69120, 'Meredith', 1953, 'F', 329), +(69121, 'Ladonna', 1953, 'F', 328), +(69122, 'Merry', 1953, 'F', 328), +(69123, 'Earnestine', 1953, 'F', 327), +(69124, 'Sharlene', 1953, 'F', 327), +(69125, 'Tracy', 1953, 'F', 326), +(69126, 'Bettie', 1953, 'F', 325), +(69127, 'Shari', 1953, 'F', 325), +(69128, 'Ana', 1953, 'F', 324), +(69129, 'Clare', 1953, 'F', 323), +(69130, 'Inez', 1953, 'F', 322), +(69131, 'Cathryn', 1953, 'F', 321), +(69132, 'Antonia', 1953, 'F', 319), +(69133, 'Genevieve', 1953, 'F', 319), +(69134, 'Nelda', 1953, 'F', 319), +(69135, 'Lu', 1953, 'F', 317), +(69136, 'Mari', 1953, 'F', 317), +(69137, 'Dena', 1953, 'F', 315), +(69138, 'Elena', 1953, 'F', 315), +(69139, 'Coleen', 1953, 'F', 314), +(69140, 'Earlene', 1953, 'F', 313), +(69141, 'Lorene', 1953, 'F', 311), +(69142, 'Lynnette', 1953, 'F', 311), +(69143, 'Sonya', 1953, 'F', 311), +(69144, 'Kristi', 1953, 'F', 310), +(69145, 'Muriel', 1953, 'F', 310), +(69146, 'Jocelyn', 1953, 'F', 308), +(69147, 'Leticia', 1953, 'F', 308), +(69148, 'Mitzi', 1953, 'F', 305), +(69149, 'Fay', 1953, 'F', 302), +(69150, 'Dorothea', 1953, 'F', 301), +(69151, 'Leanne', 1953, 'F', 299), +(69152, 'Lesley', 1953, 'F', 298), +(69153, 'Lorrie', 1953, 'F', 297), +(69154, 'Debrah', 1953, 'F', 296), +(69155, 'Marva', 1953, 'F', 296), +(69156, 'Tonya', 1953, 'F', 294), +(69157, 'Marilynn', 1953, 'F', 287), +(69158, 'Julianne', 1953, 'F', 285), +(69159, 'Blanca', 1953, 'F', 283), +(69160, 'Gracie', 1953, 'F', 283), +(69161, 'Allison', 1953, 'F', 282), +(69162, 'Valarie', 1953, 'F', 281), +(69163, 'Debby', 1953, 'F', 278), +(69164, 'Kristy', 1953, 'F', 278), +(69165, 'Lavonne', 1953, 'F', 276), +(69166, 'Jerry', 1953, 'F', 275), +(69167, 'Louann', 1953, 'F', 273), +(69168, 'Katrina', 1953, 'F', 272), +(69169, 'Johanna', 1953, 'F', 271), +(69170, 'Leann', 1953, 'F', 271), +(69171, 'Suzette', 1953, 'F', 271), +(69172, 'Cathie', 1953, 'F', 270), +(69173, 'Clarice', 1953, 'F', 270), +(69174, 'Felicia', 1953, 'F', 267), +(69175, 'Nona', 1953, 'F', 267), +(69176, 'Cherry', 1953, 'F', 265), +(69177, 'Mable', 1953, 'F', 265), +(69178, 'Sadie', 1953, 'F', 264), +(69179, 'Elisa', 1953, 'F', 263), +(69180, 'Shelby', 1953, 'F', 262), +(69181, 'Essie', 1953, 'F', 261), +(69182, 'Jewel', 1953, 'F', 261), +(69183, 'Lyn', 1953, 'F', 261), +(69184, 'Winifred', 1953, 'F', 261), +(69185, 'Georgette', 1953, 'F', 260), +(69186, 'Maryanne', 1953, 'F', 260), +(69187, 'Pamala', 1953, 'F', 260), +(69188, 'Daphne', 1953, 'F', 259), +(69189, 'Lucia', 1953, 'F', 259), +(69190, 'Dinah', 1953, 'F', 257), +(69191, 'Lenore', 1953, 'F', 257), +(69192, 'Fern', 1953, 'F', 256), +(69193, 'Kristen', 1953, 'F', 256), +(69194, 'Angie', 1953, 'F', 255), +(69195, 'Althea', 1953, 'F', 254), +(69196, 'Nola', 1953, 'F', 254), +(69197, 'Caren', 1953, 'F', 253), +(69198, 'Maryellen', 1953, 'F', 253), +(69199, 'Rhoda', 1953, 'F', 253), +(69200, 'Benita', 1953, 'F', 251), +(69201, 'Kristina', 1953, 'F', 251), +(69202, 'Delois', 1953, 'F', 250), +(69203, 'Beverley', 1953, 'F', 249), +(69204, 'Lela', 1953, 'F', 249), +(69205, 'Pat', 1953, 'F', 249), +(69206, 'Etta', 1953, 'F', 246), +(69207, 'Pam', 1953, 'F', 246), +(69208, 'Harriett', 1953, 'F', 244), +(69209, 'Jimmie', 1953, 'F', 243), +(69210, 'Roxie', 1953, 'F', 243), +(69211, 'Darcy', 1953, 'F', 242), +(69212, 'Leigh', 1953, 'F', 241), +(69213, 'Dolly', 1953, 'F', 240), +(69214, 'Gilda', 1953, 'F', 240), +(69215, 'Nikki', 1953, 'F', 240), +(69216, 'Marietta', 1953, 'F', 239), +(69217, 'Mollie', 1953, 'F', 239), +(69218, 'Neva', 1953, 'F', 239), +(69219, 'Rosalinda', 1953, 'F', 239), +(69220, 'Elvira', 1953, 'F', 237), +(69221, 'James', 1953, 'F', 237), +(69222, 'Marcie', 1953, 'F', 237), +(69223, 'Arleen', 1953, 'F', 236), +(69224, 'Edwina', 1953, 'F', 236), +(69225, 'Ina', 1953, 'F', 236), +(69226, 'Michael', 1953, 'F', 236), +(69227, 'Ora', 1953, 'F', 236), +(69228, 'Bernadine', 1953, 'F', 235), +(69229, 'Angelina', 1953, 'F', 234), +(69230, 'Roslyn', 1953, 'F', 234), +(69231, 'Estelle', 1953, 'F', 230), +(69232, 'Lupe', 1953, 'F', 230), +(69233, 'Elva', 1953, 'F', 229), +(69234, 'Helena', 1953, 'F', 229), +(69235, 'Nan', 1953, 'F', 229), +(69236, 'Willa', 1953, 'F', 229), +(69237, 'Robert', 1953, 'F', 228), +(69238, 'Eula', 1953, 'F', 227), +(69239, 'Madelyn', 1953, 'F', 227), +(69240, 'Kelly', 1953, 'F', 226), +(69241, 'Malinda', 1953, 'F', 226), +(69242, 'Gaye', 1953, 'F', 222), +(69243, 'Ingrid', 1953, 'F', 222), +(69244, 'Lorie', 1953, 'F', 222), +(69245, 'Jodi', 1953, 'F', 221), +(69246, 'Nanci', 1953, 'F', 221), +(69247, 'Cinda', 1953, 'F', 219), +(69248, 'Sherrill', 1953, 'F', 219), +(69249, 'Aileen', 1953, 'F', 218), +(69250, 'Elisabeth', 1953, 'F', 218), +(69251, 'Geralyn', 1953, 'F', 218), +(69252, 'Nettie', 1953, 'F', 218), +(69253, 'Alexis', 1953, 'F', 216), +(69254, 'Debbra', 1953, 'F', 215), +(69255, 'Avis', 1953, 'F', 214), +(69256, 'Delilah', 1953, 'F', 214), +(69257, 'Francis', 1953, 'F', 214), +(69258, 'Kristie', 1953, 'F', 212), +(69259, 'Ollie', 1953, 'F', 211), +(69260, 'Melva', 1953, 'F', 210), +(69261, 'Kitty', 1953, 'F', 209), +(69262, 'Vikki', 1953, 'F', 209), +(69263, 'Eve', 1953, 'F', 208), +(69264, 'Marilee', 1953, 'F', 208), +(69265, 'Addie', 1953, 'F', 207), +(69266, 'Elsa', 1953, 'F', 207), +(69267, 'Valorie', 1953, 'F', 207), +(69268, 'Jannie', 1953, 'F', 206), +(69269, 'Ivy', 1953, 'F', 205), +(69270, 'Randy', 1953, 'F', 204), +(69271, 'Alfreda', 1953, 'F', 203), +(69272, 'Iva', 1953, 'F', 203), +(69273, 'Tommie', 1953, 'F', 203), +(69274, 'Josie', 1953, 'F', 202), +(69275, 'Patrica', 1953, 'F', 202), +(69276, 'Sybil', 1953, 'F', 202), +(69277, 'Barbra', 1953, 'F', 200), +(69278, 'Corrine', 1953, 'F', 200), +(69279, 'Earline', 1953, 'F', 200), +(69280, 'Queen', 1953, 'F', 200), +(69281, 'Janell', 1953, 'F', 199), +(69282, 'Margery', 1953, 'F', 198), +(69283, 'Mabel', 1953, 'F', 197), +(69284, 'Vickey', 1953, 'F', 197), +(69285, 'Minerva', 1953, 'F', 196), +(69286, 'Pearlie', 1953, 'F', 196), +(69287, 'Robbin', 1953, 'F', 196), +(69288, 'Twila', 1953, 'F', 196), +(69289, 'Cecile', 1953, 'F', 194), +(69290, 'Doretha', 1953, 'F', 194), +(69291, 'Opal', 1953, 'F', 194), +(69292, 'Leola', 1953, 'F', 193), +(69293, 'Pattie', 1953, 'F', 193), +(69294, 'Joe', 1953, 'F', 192), +(69295, 'Lea', 1953, 'F', 192), +(69296, 'Dorene', 1953, 'F', 191), +(69297, 'Greta', 1953, 'F', 191), +(69298, 'Jacklyn', 1953, 'F', 191), +(69299, 'Kimberley', 1953, 'F', 191), +(69300, 'Karol', 1953, 'F', 190), +(69301, 'Caryn', 1953, 'F', 189), +(69302, 'Graciela', 1953, 'F', 189), +(69303, 'Millie', 1953, 'F', 189), +(69304, 'Rebekah', 1953, 'F', 189), +(69305, 'Tracey', 1953, 'F', 189), +(69306, 'Aurora', 1953, 'F', 188), +(69307, 'Bobbi', 1953, 'F', 188), +(69308, 'Dorthy', 1953, 'F', 188), +(69309, 'Jewell', 1953, 'F', 187), +(69310, 'Mavis', 1953, 'F', 187), +(69311, 'Loraine', 1953, 'F', 186), +(69312, 'Madonna', 1953, 'F', 186), +(69313, 'Shauna', 1953, 'F', 183), +(69314, 'Stacy', 1953, 'F', 183), +(69315, 'Deirdre', 1953, 'F', 182), +(69316, 'Ester', 1953, 'F', 182), +(69317, 'Kathrine', 1953, 'F', 182), +(69318, 'Beulah', 1953, 'F', 180), +(69319, 'Danielle', 1953, 'F', 180), +(69320, 'Deana', 1953, 'F', 180), +(69321, 'Lizzie', 1953, 'F', 179), +(69322, 'Cheryle', 1953, 'F', 178), +(69323, 'Dian', 1953, 'F', 178), +(69324, 'Donita', 1953, 'F', 178), +(69325, 'Marlys', 1953, 'F', 178), +(69326, 'Peggie', 1953, 'F', 178), +(69327, 'Ronnie', 1953, 'F', 178), +(69328, 'Leila', 1953, 'F', 177), +(69329, 'Tammy', 1953, 'F', 177), +(69330, 'Annmarie', 1953, 'F', 176), +(69331, 'Juana', 1953, 'F', 176), +(69332, 'Terese', 1953, 'F', 176), +(69333, 'Cornelia', 1953, 'F', 175), +(69334, 'Roxanna', 1953, 'F', 175), +(69335, 'Marylou', 1953, 'F', 174), +(69336, 'Eddie', 1953, 'F', 173), +(69337, 'Freida', 1953, 'F', 173), +(69338, 'Maryjo', 1953, 'F', 173), +(69339, 'Stacey', 1953, 'F', 173), +(69340, 'Valeria', 1953, 'F', 173), +(69341, 'Janna', 1953, 'F', 172), +(69342, 'Karon', 1953, 'F', 172), +(69343, 'May', 1953, 'F', 172), +(69344, 'Roseanne', 1953, 'F', 172), +(69345, 'Charleen', 1953, 'F', 171), +(69346, 'Jodie', 1953, 'F', 171), +(69347, 'Krista', 1953, 'F', 171), +(69348, 'Lottie', 1953, 'F', 171), +(69349, 'Sherryl', 1953, 'F', 171), +(69350, 'Katheryn', 1953, 'F', 170), +(69351, 'Leta', 1953, 'F', 170), +(69352, 'Shawn', 1953, 'F', 170), +(69353, 'Geri', 1953, 'F', 169), +(69354, 'Ola', 1953, 'F', 169), +(69355, 'Elissa', 1953, 'F', 168), +(69356, 'Mickey', 1953, 'F', 168), +(69357, 'Abigail', 1953, 'F', 167), +(69358, 'Carleen', 1953, 'F', 167), +(69359, 'Esperanza', 1953, 'F', 167), +(69360, 'Letha', 1953, 'F', 166), +(69361, 'Aleta', 1953, 'F', 164), +(69362, 'Angelia', 1953, 'F', 162), +(69363, 'John', 1953, 'F', 162), +(69364, 'Louisa', 1953, 'F', 162), +(69365, 'Deena', 1953, 'F', 161), +(69366, 'Renae', 1953, 'F', 161), +(69367, 'Retha', 1953, 'F', 160), +(69368, 'Alana', 1953, 'F', 159), +(69369, 'Alyce', 1953, 'F', 159), +(69370, 'Dottie', 1953, 'F', 159), +(69371, 'Mercedes', 1953, 'F', 159), +(69372, 'Ophelia', 1953, 'F', 159), +(69373, 'Elnora', 1953, 'F', 158), +(69374, 'Kris', 1953, 'F', 158), +(69375, 'Cathey', 1953, 'F', 157), +(69376, 'Effie', 1953, 'F', 157), +(69377, 'Celestine', 1953, 'F', 156), +(69378, 'Mariann', 1953, 'F', 156), +(69379, 'Maribeth', 1953, 'F', 156), +(69380, 'Megan', 1953, 'F', 156), +(69381, 'Hannah', 1953, 'F', 154), +(69382, 'Rachelle', 1953, 'F', 154), +(69383, 'Freddie', 1953, 'F', 153), +(69384, 'Karyn', 1953, 'F', 153), +(69385, 'Kyle', 1953, 'F', 153), +(69386, 'Luz', 1953, 'F', 153), +(69387, 'Rowena', 1953, 'F', 153), +(69388, 'Fran', 1953, 'F', 152), +(69389, 'Marina', 1953, 'F', 152), +(69390, 'Rosario', 1953, 'F', 152), +(69391, 'Sydney', 1953, 'F', 152), +(69392, 'David', 1953, 'F', 151), +(69393, 'Frieda', 1953, 'F', 151), +(69394, 'Venita', 1953, 'F', 151), +(69395, 'Raquel', 1953, 'F', 150), +(69396, 'Rosanna', 1953, 'F', 150), +(69397, 'Tara', 1953, 'F', 150), +(69398, 'Carmela', 1953, 'F', 148), +(69399, 'Libby', 1953, 'F', 148), +(69400, 'Portia', 1953, 'F', 148), +(69401, 'Laureen', 1953, 'F', 147), +(69402, 'Lauri', 1953, 'F', 147), +(69403, 'Dollie', 1953, 'F', 146), +(69404, 'Susanna', 1953, 'F', 146), +(69405, 'Vonda', 1953, 'F', 146), +(69406, 'Darleen', 1953, 'F', 145), +(69407, 'Juliana', 1953, 'F', 145), +(69408, 'Virgie', 1953, 'F', 145), +(69409, 'Alta', 1953, 'F', 144), +(69410, 'Angeline', 1953, 'F', 144), +(69411, 'Cindi', 1953, 'F', 144), +(69412, 'Consuelo', 1953, 'F', 144), +(69413, 'Madeleine', 1953, 'F', 144), +(69414, 'Rachael', 1953, 'F', 143), +(69415, 'Alexandra', 1953, 'F', 142), +(69416, 'Carmella', 1953, 'F', 142), +(69417, 'Josefina', 1953, 'F', 142), +(69418, 'Lorelei', 1953, 'F', 142), +(69419, 'Ronna', 1953, 'F', 142), +(69420, 'Bonny', 1953, 'F', 141), +(69421, 'Deanne', 1953, 'F', 141), +(69422, 'Hollis', 1953, 'F', 141), +(69423, 'Reta', 1953, 'F', 141), +(69424, 'Maura', 1953, 'F', 140), +(69425, 'Vernell', 1953, 'F', 140), +(69426, 'Charles', 1953, 'F', 139), +(69427, 'Concetta', 1953, 'F', 138), +(69428, 'Jerrie', 1953, 'F', 138), +(69429, 'Lizabeth', 1953, 'F', 138), +(69430, 'Lucretia', 1953, 'F', 137), +(69431, 'Margot', 1953, 'F', 137), +(69432, 'Nell', 1953, 'F', 137), +(69433, 'Ofelia', 1953, 'F', 137), +(69434, 'Pamella', 1953, 'F', 137), +(69435, 'Tricia', 1953, 'F', 137), +(69436, 'Carlotta', 1953, 'F', 136), +(69437, 'Delphine', 1953, 'F', 136), +(69438, 'Ila', 1953, 'F', 136), +(69439, 'Maryjane', 1953, 'F', 136), +(69440, 'Nannette', 1953, 'F', 136), +(69441, 'Richard', 1953, 'F', 136), +(69442, 'Bobby', 1953, 'F', 135), +(69443, 'Clarissa', 1953, 'F', 135), +(69444, 'Reva', 1953, 'F', 135), +(69445, 'Brooke', 1953, 'F', 134), +(69446, 'Charla', 1953, 'F', 134), +(69447, 'Cleo', 1953, 'F', 133), +(69448, 'Georgianna', 1953, 'F', 133), +(69449, 'William', 1953, 'F', 133), +(69450, 'Marleen', 1953, 'F', 132), +(69451, 'Meryl', 1953, 'F', 132), +(69452, 'Oralia', 1953, 'F', 132), +(69453, 'Nedra', 1953, 'F', 131), +(69454, 'Silvia', 1953, 'F', 131), +(69455, 'Sophia', 1953, 'F', 131), +(69456, 'Lily', 1953, 'F', 130), +(69457, 'Lorena', 1953, 'F', 130), +(69458, 'Adela', 1953, 'F', 129), +(69459, 'Cathrine', 1953, 'F', 129), +(69460, 'Elma', 1953, 'F', 129), +(69461, 'Jann', 1953, 'F', 129), +(69462, 'Romona', 1953, 'F', 129), +(69463, 'Aida', 1953, 'F', 128), +(69464, 'Catharine', 1953, 'F', 128), +(69465, 'Jacquline', 1953, 'F', 128), +(69466, 'Lonnie', 1953, 'F', 128), +(69467, 'Melodie', 1953, 'F', 128), +(69468, 'Nancie', 1953, 'F', 128), +(69469, 'Carolina', 1953, 'F', 127), +(69470, 'Christi', 1953, 'F', 127), +(69471, 'Deidre', 1953, 'F', 127), +(69472, 'Dorinda', 1953, 'F', 127), +(69473, 'Lilly', 1953, 'F', 127), +(69474, 'Martina', 1953, 'F', 127), +(69475, 'Rhea', 1953, 'F', 127), +(69476, 'Justine', 1953, 'F', 126), +(69477, 'Judi', 1953, 'F', 125), +(69478, 'Lona', 1953, 'F', 125), +(69479, 'Velda', 1953, 'F', 125), +(69480, 'Herlinda', 1953, 'F', 124), +(69481, 'Lelia', 1953, 'F', 124), +(69482, 'Wilda', 1953, 'F', 124), +(69483, 'Corine', 1953, 'F', 123), +(69484, 'Evangeline', 1953, 'F', 123), +(69485, 'Georgina', 1953, 'F', 123), +(69486, 'Margret', 1953, 'F', 123), +(69487, 'Camilla', 1953, 'F', 122), +(69488, 'Kendra', 1953, 'F', 122), +(69489, 'Magdalena', 1953, 'F', 122), +(69490, 'Merle', 1953, 'F', 122), +(69491, 'Mimi', 1953, 'F', 122), +(69492, 'Rosita', 1953, 'F', 122), +(69493, 'Sharen', 1953, 'F', 122), +(69494, 'Gerri', 1953, 'F', 121), +(69495, 'Jacque', 1953, 'F', 121), +(69496, 'Lauretta', 1953, 'F', 121), +(69497, 'Odessa', 1953, 'F', 121), +(69498, 'Bethany', 1953, 'F', 120), +(69499, 'Deann', 1953, 'F', 120), +(69500, 'Leanna', 1953, 'F', 120), +(69501, 'Shirlene', 1953, 'F', 120), +(69502, 'Trina', 1953, 'F', 120), +(69503, 'Danna', 1953, 'F', 119), +(69504, 'Elyse', 1953, 'F', 119), +(69505, 'Glinda', 1953, 'F', 119), +(69506, 'Marybeth', 1953, 'F', 119), +(69507, 'Nicole', 1953, 'F', 119), +(69508, 'Sanjuanita', 1953, 'F', 119), +(69509, 'Selma', 1953, 'F', 119), +(69510, 'Angelita', 1953, 'F', 118), +(69511, 'Bennie', 1953, 'F', 118), +(69512, 'Caryl', 1953, 'F', 118), +(69513, 'Gerry', 1953, 'F', 118), +(69514, 'Jenifer', 1953, 'F', 118), +(69515, 'Theodora', 1953, 'F', 118), +(69516, 'Daryl', 1953, 'F', 117), +(69517, 'Kate', 1953, 'F', 117), +(69518, 'Lourdes', 1953, 'F', 117), +(69519, 'Tana', 1953, 'F', 117), +(69520, 'Callie', 1953, 'F', 116), +(69521, 'Erlinda', 1953, 'F', 116), +(69522, 'Louella', 1953, 'F', 116), +(69523, 'Matilda', 1953, 'F', 116), +(69524, 'Elida', 1953, 'F', 115), +(69525, 'Goldie', 1953, 'F', 115), +(69526, 'Joette', 1953, 'F', 115), +(69527, 'Letitia', 1953, 'F', 115), +(69528, 'Petra', 1953, 'F', 115), +(69529, 'Hilary', 1953, 'F', 114), +(69530, 'Imogene', 1953, 'F', 114), +(69531, 'Kathaleen', 1953, 'F', 114), +(69532, 'Lindy', 1953, 'F', 114), +(69533, 'Teressa', 1953, 'F', 114), +(69534, 'Treva', 1953, 'F', 114), +(69535, 'Annetta', 1953, 'F', 113), +(69536, 'Donnie', 1953, 'F', 113), +(69537, 'Elouise', 1953, 'F', 113), +(69538, 'Erica', 1953, 'F', 113), +(69539, 'Janeen', 1953, 'F', 113), +(69540, 'Mara', 1953, 'F', 113), +(69541, 'Corliss', 1953, 'F', 112), +(69542, 'Georgene', 1953, 'F', 111), +(69543, 'Isabelle', 1953, 'F', 111), +(69544, 'Delma', 1953, 'F', 110), +(69545, 'Kathlyn', 1953, 'F', 110), +(69546, 'Lawanda', 1953, 'F', 110), +(69547, 'Sharyn', 1953, 'F', 110), +(69548, 'Suzann', 1953, 'F', 110), +(69549, 'Doretta', 1953, 'F', 109), +(69550, 'Joleen', 1953, 'F', 109), +(69551, 'Lorri', 1953, 'F', 109), +(69552, 'Arline', 1953, 'F', 108), +(69553, 'Francisca', 1953, 'F', 108), +(69554, 'Joycelyn', 1953, 'F', 108), +(69555, 'Karan', 1953, 'F', 108), +(69556, 'Allyson', 1953, 'F', 107), +(69557, 'Carey', 1953, 'F', 107), +(69558, 'Christa', 1953, 'F', 107), +(69559, 'Millicent', 1953, 'F', 107), +(69560, 'Rona', 1953, 'F', 107), +(69561, 'Susann', 1953, 'F', 107), +(69562, 'Zelda', 1953, 'F', 107), +(69563, 'Beryl', 1953, 'F', 106), +(69564, 'Florine', 1953, 'F', 106), +(69565, 'Jerilyn', 1953, 'F', 106), +(69566, 'Linnea', 1953, 'F', 106), +(69567, 'Marita', 1953, 'F', 106), +(69568, 'Veda', 1953, 'F', 106), +(69569, 'Zelma', 1953, 'F', 106), +(69570, 'Cheryll', 1953, 'F', 105), +(69571, 'Danette', 1953, 'F', 105), +(69572, 'Kathyrn', 1953, 'F', 105), +(69573, 'Manuela', 1953, 'F', 105), +(69574, 'Marci', 1953, 'F', 105), +(69575, 'Tonia', 1953, 'F', 105), +(69576, 'Dina', 1953, 'F', 104), +(69577, 'Sophie', 1953, 'F', 104), +(69578, 'Starr', 1953, 'F', 104), +(69579, 'Juliet', 1953, 'F', 103), +(69580, 'Lavern', 1953, 'F', 103), +(69581, 'Suellen', 1953, 'F', 103), +(69582, 'Susana', 1953, 'F', 103), +(69583, 'Winnie', 1953, 'F', 103), +(69584, 'Cassie', 1953, 'F', 102), +(69585, 'George', 1953, 'F', 102), +(69586, 'Juliann', 1953, 'F', 102), +(69587, 'Pennie', 1953, 'F', 102), +(69588, 'Clementine', 1953, 'F', 101), +(69589, 'Evonne', 1953, 'F', 101), +(69590, 'Lessie', 1953, 'F', 101), +(69591, 'Nicki', 1953, 'F', 101), +(69592, 'Thomas', 1953, 'F', 101), +(69593, 'Candyce', 1953, 'F', 100), +(69594, 'Cara', 1953, 'F', 100), +(69595, 'Elinor', 1953, 'F', 100), +(69596, 'Gaynell', 1953, 'F', 100), +(69597, 'Twyla', 1953, 'F', 100), +(69598, 'Robert', 1953, 'M', 86135), +(69599, 'James', 1953, 'M', 85946), +(69600, 'Michael', 1953, 'M', 84164), +(69601, 'John', 1953, 'M', 80072), +(69602, 'David', 1953, 'M', 76037), +(69603, 'William', 1953, 'M', 61775), +(69604, 'Richard', 1953, 'M', 58285), +(69605, 'Thomas', 1953, 'M', 46967), +(69606, 'Charles', 1953, 'M', 38357), +(69607, 'Gary', 1953, 'M', 36931), +(69608, 'Steven', 1953, 'M', 33686), +(69609, 'Mark', 1953, 'M', 29311), +(69610, 'Joseph', 1953, 'M', 29217), +(69611, 'Donald', 1953, 'M', 28319), +(69612, 'Ronald', 1953, 'M', 27669), +(69613, 'Kenneth', 1953, 'M', 25497), +(69614, 'Paul', 1953, 'M', 25481), +(69615, 'Larry', 1953, 'M', 25164), +(69616, 'Dennis', 1953, 'M', 23620), +(69617, 'Daniel', 1953, 'M', 23472), +(69618, 'Stephen', 1953, 'M', 21798), +(69619, 'George', 1953, 'M', 19158), +(69620, 'Edward', 1953, 'M', 18956), +(69621, 'Gregory', 1953, 'M', 16132), +(69622, 'Jeffrey', 1953, 'M', 15911), +(69623, 'Timothy', 1953, 'M', 15163), +(69624, 'Douglas', 1953, 'M', 14131), +(69625, 'Bruce', 1953, 'M', 14012), +(69626, 'Jerry', 1953, 'M', 13887), +(69627, 'Terry', 1953, 'M', 13247), +(69628, 'Roger', 1953, 'M', 13155), +(69629, 'Anthony', 1953, 'M', 11685), +(69630, 'Frank', 1953, 'M', 11146), +(69631, 'Raymond', 1953, 'M', 11106), +(69632, 'Randy', 1953, 'M', 10645), +(69633, 'Kevin', 1953, 'M', 10004), +(69634, 'Lawrence', 1953, 'M', 9836), +(69635, 'Peter', 1953, 'M', 9729), +(69636, 'Patrick', 1953, 'M', 9473), +(69637, 'Wayne', 1953, 'M', 8892), +(69638, 'Danny', 1953, 'M', 8608), +(69639, 'Gerald', 1953, 'M', 8601), +(69640, 'Alan', 1953, 'M', 8439), +(69641, 'Carl', 1953, 'M', 7816), +(69642, 'Walter', 1953, 'M', 7493), +(69643, 'Scott', 1953, 'M', 7485), +(69644, 'Keith', 1953, 'M', 7377), +(69645, 'Dale', 1953, 'M', 7331), +(69646, 'Willie', 1953, 'M', 7042), +(69647, 'Arthur', 1953, 'M', 6989), +(69648, 'Ricky', 1953, 'M', 6881), +(69649, 'Johnny', 1953, 'M', 6691), +(69650, 'Henry', 1953, 'M', 6656), +(69651, 'Brian', 1953, 'M', 6652), +(69652, 'Roy', 1953, 'M', 6647), +(69653, 'Harold', 1953, 'M', 6567), +(69654, 'Jack', 1953, 'M', 6541), +(69655, 'Rodney', 1953, 'M', 6520), +(69656, 'Ralph', 1953, 'M', 6509), +(69657, 'Craig', 1953, 'M', 6450), +(69658, 'Stanley', 1953, 'M', 6284), +(69659, 'Philip', 1953, 'M', 6272), +(69660, 'Christopher', 1953, 'M', 6054), +(69661, 'Randall', 1953, 'M', 5956), +(69662, 'Billy', 1953, 'M', 5836), +(69663, 'Joe', 1953, 'M', 5791), +(69664, 'Glenn', 1953, 'M', 5734), +(69665, 'Andrew', 1953, 'M', 5609), +(69666, 'Albert', 1953, 'M', 5423), +(69667, 'Samuel', 1953, 'M', 5408), +(69668, 'Russell', 1953, 'M', 5376), +(69669, 'Jimmy', 1953, 'M', 5294), +(69670, 'Bobby', 1953, 'M', 5187), +(69671, 'Barry', 1953, 'M', 5171), +(69672, 'Eugene', 1953, 'M', 5142), +(69673, 'Phillip', 1953, 'M', 5097), +(69674, 'Howard', 1953, 'M', 4983), +(69675, 'Louis', 1953, 'M', 4980), +(69676, 'Ronnie', 1953, 'M', 4954), +(69677, 'Frederick', 1953, 'M', 4862), +(69678, 'Allen', 1953, 'M', 4851), +(69679, 'Martin', 1953, 'M', 4772), +(69680, 'Harry', 1953, 'M', 4569), +(69681, 'Steve', 1953, 'M', 4529), +(69682, 'Leonard', 1953, 'M', 4409), +(69683, 'Curtis', 1953, 'M', 4349), +(69684, 'Ernest', 1953, 'M', 4093), +(69685, 'Micheal', 1953, 'M', 3978), +(69686, 'Eric', 1953, 'M', 3928), +(69687, 'Francis', 1953, 'M', 3867), +(69688, 'Melvin', 1953, 'M', 3811), +(69689, 'Fred', 1953, 'M', 3779), +(69690, 'Lee', 1953, 'M', 3585), +(69691, 'Marvin', 1953, 'M', 3552), +(69692, 'Tommy', 1953, 'M', 3460), +(69693, 'Earl', 1953, 'M', 3423), +(69694, 'Eddie', 1953, 'M', 3401), +(69695, 'Norman', 1953, 'M', 3368), +(69696, 'Jay', 1953, 'M', 3235), +(69697, 'Rick', 1953, 'M', 3166), +(69698, 'Vincent', 1953, 'M', 3166), +(69699, 'Clifford', 1953, 'M', 3151), +(69700, 'Darrell', 1953, 'M', 3139), +(69701, 'Alfred', 1953, 'M', 3120), +(69702, 'Dean', 1953, 'M', 3116), +(69703, 'Victor', 1953, 'M', 3100), +(69704, 'Jerome', 1953, 'M', 3086), +(69705, 'Clarence', 1953, 'M', 3074), +(69706, 'Jeffery', 1953, 'M', 3038), +(69707, 'Jose', 1953, 'M', 3013), +(69708, 'Calvin', 1953, 'M', 2945), +(69709, 'Theodore', 1953, 'M', 2941), +(69710, 'Rickey', 1953, 'M', 2846), +(69711, 'Jesse', 1953, 'M', 2822), +(69712, 'Ray', 1953, 'M', 2804), +(69713, 'Gordon', 1953, 'M', 2781), +(69714, 'Bradley', 1953, 'M', 2772), +(69715, 'Tony', 1953, 'M', 2771), +(69716, 'Bernard', 1953, 'M', 2742), +(69717, 'Jon', 1953, 'M', 2713), +(69718, 'Don', 1953, 'M', 2708), +(69719, 'Dwight', 1953, 'M', 2688), +(69720, 'Edwin', 1953, 'M', 2639), +(69721, 'Warren', 1953, 'M', 2639), +(69722, 'Herbert', 1953, 'M', 2616), +(69723, 'Leroy', 1953, 'M', 2577), +(69724, 'Kim', 1953, 'M', 2564), +(69725, 'Benjamin', 1953, 'M', 2419), +(69726, 'Glen', 1953, 'M', 2388), +(69727, 'Matthew', 1953, 'M', 2374), +(69728, 'Nicholas', 1953, 'M', 2359), +(69729, 'Duane', 1953, 'M', 2337), +(69730, 'Jonathan', 1953, 'M', 2336), +(69731, 'Joel', 1953, 'M', 2296), +(69732, 'Mike', 1953, 'M', 2280), +(69733, 'Leslie', 1953, 'M', 2279), +(69734, 'Leon', 1953, 'M', 2273), +(69735, 'Lloyd', 1953, 'M', 2163), +(69736, 'Dan', 1953, 'M', 2162), +(69737, 'Alvin', 1953, 'M', 2103), +(69738, 'Vernon', 1953, 'M', 2061), +(69739, 'Garry', 1953, 'M', 2049), +(69740, 'Gene', 1953, 'M', 2001), +(69741, 'Marc', 1953, 'M', 1976), +(69742, 'Jackie', 1953, 'M', 1966), +(69743, 'Neil', 1953, 'M', 1932), +(69744, 'Lonnie', 1953, 'M', 1924), +(69745, 'Gilbert', 1953, 'M', 1905), +(69746, 'Mitchell', 1953, 'M', 1889), +(69747, 'Juan', 1953, 'M', 1885), +(69748, 'Guy', 1953, 'M', 1884), +(69749, 'Floyd', 1953, 'M', 1870), +(69750, 'Lewis', 1953, 'M', 1855), +(69751, 'Allan', 1953, 'M', 1851), +(69752, 'Clyde', 1953, 'M', 1849), +(69753, 'Donnie', 1953, 'M', 1788), +(69754, 'Lester', 1953, 'M', 1780), +(69755, 'Franklin', 1953, 'M', 1761), +(69756, 'Wesley', 1953, 'M', 1730), +(69757, 'Robin', 1953, 'M', 1724), +(69758, 'Randolph', 1953, 'M', 1708), +(69759, 'Leo', 1953, 'M', 1652), +(69760, 'Karl', 1953, 'M', 1651), +(69761, 'Brad', 1953, 'M', 1646), +(69762, 'Reginald', 1953, 'M', 1640), +(69763, 'Kent', 1953, 'M', 1634), +(69764, 'Jimmie', 1953, 'M', 1625), +(69765, 'Chris', 1953, 'M', 1570), +(69766, 'Manuel', 1953, 'M', 1570), +(69767, 'Lynn', 1953, 'M', 1550), +(69768, 'Freddie', 1953, 'M', 1534), +(69769, 'Harvey', 1953, 'M', 1534), +(69770, 'Jim', 1953, 'M', 1532), +(69771, 'Charlie', 1953, 'M', 1531), +(69772, 'Milton', 1953, 'M', 1530), +(69773, 'Bill', 1953, 'M', 1519), +(69774, 'Kurt', 1953, 'M', 1517), +(69775, 'Dana', 1953, 'M', 1501), +(69776, 'Herman', 1953, 'M', 1409), +(69777, 'Johnnie', 1953, 'M', 1399), +(69778, 'Carlos', 1953, 'M', 1397), +(69779, 'Arnold', 1953, 'M', 1384), +(69780, 'Tom', 1953, 'M', 1378), +(69781, 'Chester', 1953, 'M', 1377), +(69782, 'Stuart', 1953, 'M', 1368), +(69783, 'Gerard', 1953, 'M', 1364), +(69784, 'Daryl', 1953, 'M', 1352), +(69785, 'Fredrick', 1953, 'M', 1344), +(69786, 'Rex', 1953, 'M', 1341), +(69787, 'Ted', 1953, 'M', 1304), +(69788, 'Roland', 1953, 'M', 1276), +(69789, 'Darryl', 1953, 'M', 1268), +(69790, 'Nathaniel', 1953, 'M', 1265), +(69791, 'Alexander', 1953, 'M', 1257), +(69792, 'Kerry', 1953, 'M', 1257), +(69793, 'Cecil', 1953, 'M', 1251), +(69794, 'Kirk', 1953, 'M', 1231), +(69795, 'Maurice', 1953, 'M', 1224), +(69796, 'Perry', 1953, 'M', 1222), +(69797, 'Terrence', 1953, 'M', 1216), +(69798, 'Brent', 1953, 'M', 1203); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(69799, 'Ruben', 1953, 'M', 1200), +(69800, 'Oscar', 1953, 'M', 1197), +(69801, 'Tyrone', 1953, 'M', 1140), +(69802, 'Claude', 1953, 'M', 1138), +(69803, 'Antonio', 1953, 'M', 1103), +(69804, 'Todd', 1953, 'M', 1097), +(69805, 'Jessie', 1953, 'M', 1065), +(69806, 'Ricardo', 1953, 'M', 1049), +(69807, 'Bryan', 1953, 'M', 1047), +(69808, 'Marshall', 1953, 'M', 1034), +(69809, 'Sidney', 1953, 'M', 1012), +(69810, 'Wallace', 1953, 'M', 1012), +(69811, 'Nelson', 1953, 'M', 1010), +(69812, 'Mario', 1953, 'M', 991), +(69813, 'Neal', 1953, 'M', 967), +(69814, 'Terrance', 1953, 'M', 964), +(69815, 'Clifton', 1953, 'M', 958), +(69816, 'Hugh', 1953, 'M', 956), +(69817, 'Byron', 1953, 'M', 922), +(69818, 'Ross', 1953, 'M', 916), +(69819, 'Rickie', 1953, 'M', 902), +(69820, 'Benny', 1953, 'M', 898), +(69821, 'Edgar', 1953, 'M', 898), +(69822, 'Aaron', 1953, 'M', 897), +(69823, 'Lyle', 1953, 'M', 890), +(69824, 'Wendell', 1953, 'M', 884), +(69825, 'Sam', 1953, 'M', 882), +(69826, 'Luis', 1953, 'M', 881), +(69827, 'Clayton', 1953, 'M', 869), +(69828, 'Jeff', 1953, 'M', 847), +(69829, 'Kelly', 1953, 'M', 844), +(69830, 'Clinton', 1953, 'M', 842), +(69831, 'Jesus', 1953, 'M', 840), +(69832, 'Morris', 1953, 'M', 837), +(69833, 'Nathan', 1953, 'M', 813), +(69834, 'Gregg', 1953, 'M', 812), +(69835, 'Greg', 1953, 'M', 795), +(69836, 'Earnest', 1953, 'M', 785), +(69837, 'Bradford', 1953, 'M', 777), +(69838, 'Marion', 1953, 'M', 772), +(69839, 'Bennie', 1953, 'M', 769), +(69840, 'Randal', 1953, 'M', 769), +(69841, 'Sammy', 1953, 'M', 768), +(69842, 'Willard', 1953, 'M', 767), +(69843, 'Dave', 1953, 'M', 765), +(69844, 'Francisco', 1953, 'M', 762), +(69845, 'Otis', 1953, 'M', 761), +(69846, 'Virgil', 1953, 'M', 755), +(69847, 'Laurence', 1953, 'M', 748), +(69848, 'Everett', 1953, 'M', 745), +(69849, 'Tim', 1953, 'M', 744), +(69850, 'Ben', 1953, 'M', 743), +(69851, 'Rudolph', 1953, 'M', 743), +(69852, 'Raul', 1953, 'M', 733), +(69853, 'Ira', 1953, 'M', 726), +(69854, 'Marcus', 1953, 'M', 725), +(69855, 'Max', 1953, 'M', 724), +(69856, 'Alex', 1953, 'M', 716), +(69857, 'Carlton', 1953, 'M', 715), +(69858, 'Lance', 1953, 'M', 713), +(69859, 'Roberto', 1953, 'M', 708), +(69860, 'Bob', 1953, 'M', 695), +(69861, 'Loren', 1953, 'M', 689), +(69862, 'Luther', 1953, 'M', 689), +(69863, 'Rocky', 1953, 'M', 687), +(69864, 'Elmer', 1953, 'M', 686), +(69865, 'Troy', 1953, 'M', 686), +(69866, 'Geoffrey', 1953, 'M', 669), +(69867, 'Wade', 1953, 'M', 663), +(69868, 'Rodger', 1953, 'M', 657), +(69869, 'Horace', 1953, 'M', 654), +(69870, 'Clark', 1953, 'M', 645), +(69871, 'Frankie', 1953, 'M', 639), +(69872, 'Myron', 1953, 'M', 638), +(69873, 'Sylvester', 1953, 'M', 637), +(69874, 'Roderick', 1953, 'M', 631), +(69875, 'Rudy', 1953, 'M', 630), +(69876, 'Andre', 1953, 'M', 629), +(69877, 'Hector', 1953, 'M', 629), +(69878, 'Salvatore', 1953, 'M', 623), +(69879, 'Mickey', 1953, 'M', 622), +(69880, 'Ramon', 1953, 'M', 620), +(69881, 'Edmund', 1953, 'M', 618), +(69882, 'Delbert', 1953, 'M', 614), +(69883, 'Sherman', 1953, 'M', 607), +(69884, 'Alton', 1953, 'M', 602), +(69885, 'Jacob', 1953, 'M', 595), +(69886, 'Archie', 1953, 'M', 594), +(69887, 'Roosevelt', 1953, 'M', 588), +(69888, 'Denis', 1953, 'M', 585), +(69889, 'Jan', 1953, 'M', 579), +(69890, 'Stewart', 1953, 'M', 575), +(69891, 'Van', 1953, 'M', 572), +(69892, 'Armando', 1953, 'M', 569), +(69893, 'Felix', 1953, 'M', 568), +(69894, 'Darrel', 1953, 'M', 561), +(69895, 'Hubert', 1953, 'M', 558), +(69896, 'Julius', 1953, 'M', 553), +(69897, 'Grant', 1953, 'M', 552), +(69898, 'Isaac', 1953, 'M', 549), +(69899, 'Pedro', 1953, 'M', 549), +(69900, 'Malcolm', 1953, 'M', 547), +(69901, 'Tommie', 1953, 'M', 542), +(69902, 'Miguel', 1953, 'M', 541), +(69903, 'Jerald', 1953, 'M', 538), +(69904, 'Teddy', 1953, 'M', 538), +(69905, 'Leland', 1953, 'M', 535), +(69906, 'Monte', 1953, 'M', 535), +(69907, 'Wilbert', 1953, 'M', 534), +(69908, 'Fernando', 1953, 'M', 529), +(69909, 'Unknown', 1953, 'M', 529), +(69910, 'Pete', 1953, 'M', 528), +(69911, 'Oliver', 1953, 'M', 521), +(69912, 'Julian', 1953, 'M', 519), +(69913, 'Preston', 1953, 'M', 512), +(69914, 'Kenny', 1953, 'M', 511), +(69915, 'Lowell', 1953, 'M', 489), +(69916, 'Doyle', 1953, 'M', 485), +(69917, 'Willis', 1953, 'M', 484), +(69918, 'Angelo', 1953, 'M', 483), +(69919, 'Homer', 1953, 'M', 481), +(69920, 'Dwayne', 1953, 'M', 478), +(69921, 'Terence', 1953, 'M', 478), +(69922, 'Forrest', 1953, 'M', 477), +(69923, 'Stephan', 1953, 'M', 470), +(69924, 'Andy', 1953, 'M', 468), +(69925, 'Ivan', 1953, 'M', 461), +(69926, 'Ervin', 1953, 'M', 455), +(69927, 'Dallas', 1953, 'M', 453), +(69928, 'Ellis', 1953, 'M', 451), +(69929, 'Rufus', 1953, 'M', 446), +(69930, 'Arturo', 1953, 'M', 443), +(69931, 'Lorenzo', 1953, 'M', 441), +(69932, 'Mack', 1953, 'M', 437), +(69933, 'Wilbur', 1953, 'M', 437), +(69934, 'Carroll', 1953, 'M', 426), +(69935, 'Jeffry', 1953, 'M', 425), +(69936, 'Rene', 1953, 'M', 425), +(69937, 'Nick', 1953, 'M', 413), +(69938, 'Owen', 1953, 'M', 412), +(69939, 'Hal', 1953, 'M', 406), +(69940, 'Cary', 1953, 'M', 405), +(69941, 'Adrian', 1953, 'M', 403), +(69942, 'Grady', 1953, 'M', 402), +(69943, 'Freddy', 1953, 'M', 400), +(69944, 'Alfredo', 1953, 'M', 399), +(69945, 'Alfonso', 1953, 'M', 398), +(69946, 'Alonzo', 1953, 'M', 392), +(69947, 'Boyd', 1953, 'M', 390), +(69948, 'Conrad', 1953, 'M', 390), +(69949, 'Dewey', 1953, 'M', 390), +(69950, 'Lionel', 1953, 'M', 389), +(69951, 'Guadalupe', 1953, 'M', 384), +(69952, 'Sean', 1953, 'M', 383), +(69953, 'Travis', 1953, 'M', 381), +(69954, 'Percy', 1953, 'M', 376), +(69955, 'Kyle', 1953, 'M', 363), +(69956, 'Marty', 1953, 'M', 360), +(69957, 'Wilson', 1953, 'M', 359), +(69958, 'Bert', 1953, 'M', 358), +(69959, 'Derrick', 1953, 'M', 358), +(69960, 'Sammie', 1953, 'M', 357), +(69961, 'Dominic', 1953, 'M', 352), +(69962, 'Elbert', 1953, 'M', 351), +(69963, 'Royce', 1953, 'M', 351), +(69964, 'Alberto', 1953, 'M', 350), +(69965, 'Aubrey', 1953, 'M', 348), +(69966, 'Ron', 1953, 'M', 348), +(69967, 'Louie', 1953, 'M', 343), +(69968, 'Shawn', 1953, 'M', 343), +(69969, 'Rodolfo', 1953, 'M', 339), +(69970, 'Gerry', 1953, 'M', 336), +(69971, 'Noel', 1953, 'M', 336), +(69972, 'Derek', 1953, 'M', 335), +(69973, 'Christian', 1953, 'M', 334), +(69974, 'Edmond', 1953, 'M', 334), +(69975, 'Garland', 1953, 'M', 334), +(69976, 'Vance', 1953, 'M', 334), +(69977, 'Buddy', 1953, 'M', 331), +(69978, 'Salvador', 1953, 'M', 331), +(69979, 'Irvin', 1953, 'M', 330), +(69980, 'Tracy', 1953, 'M', 329), +(69981, 'Joey', 1953, 'M', 328), +(69982, 'Rafael', 1953, 'M', 328), +(69983, 'Adam', 1953, 'M', 327), +(69984, 'Angel', 1953, 'M', 327), +(69985, 'Cleveland', 1953, 'M', 327), +(69986, 'Merle', 1953, 'M', 325), +(69987, 'Sheldon', 1953, 'M', 324), +(69988, 'Dominick', 1953, 'M', 322), +(69989, 'Ronny', 1953, 'M', 321), +(69990, 'Carey', 1953, 'M', 320), +(69991, 'Ken', 1953, 'M', 316), +(69992, 'Abraham', 1953, 'M', 315), +(69993, 'Blaine', 1953, 'M', 312), +(69994, 'Darwin', 1953, 'M', 312), +(69995, 'Amos', 1953, 'M', 309), +(69996, 'Jerrold', 1953, 'M', 308), +(69997, 'Pat', 1953, 'M', 304), +(69998, 'Woodrow', 1953, 'M', 303), +(69999, 'Dewayne', 1953, 'M', 297), +(70000, 'Monty', 1953, 'M', 297), +(70001, 'Barney', 1953, 'M', 295), +(70002, 'Wilfred', 1953, 'M', 295), +(70003, 'Spencer', 1953, 'M', 294), +(70004, 'Galen', 1953, 'M', 293), +(70005, 'Marlin', 1953, 'M', 293), +(70006, 'Miles', 1953, 'M', 293), +(70007, 'Christophe', 1953, 'M', 292), +(70008, 'Lanny', 1953, 'M', 292), +(70009, 'Norris', 1953, 'M', 292), +(70010, 'Dexter', 1953, 'M', 290), +(70011, 'Elton', 1953, 'M', 290), +(70012, 'Cornelius', 1953, 'M', 289), +(70013, 'Dannie', 1953, 'M', 287), +(70014, 'Kirby', 1953, 'M', 287), +(70015, 'Emmett', 1953, 'M', 286), +(70016, 'Kelvin', 1953, 'M', 282), +(70017, 'Ernie', 1953, 'M', 279), +(70018, 'Evan', 1953, 'M', 277), +(70019, 'Eldon', 1953, 'M', 276), +(70020, 'Gabriel', 1953, 'M', 275), +(70021, 'Jason', 1953, 'M', 275), +(70022, 'Alphonso', 1953, 'M', 273), +(70023, 'Enrique', 1953, 'M', 273), +(70024, 'Harlan', 1953, 'M', 273), +(70025, 'Lamar', 1953, 'M', 271), +(70026, 'Jorge', 1953, 'M', 270), +(70027, 'Al', 1953, 'M', 269), +(70028, 'Darnell', 1953, 'M', 269), +(70029, 'Moses', 1953, 'M', 269), +(70030, 'Clay', 1953, 'M', 268), +(70031, 'Grover', 1953, 'M', 267), +(70032, 'Javier', 1953, 'M', 267), +(70033, 'Blair', 1953, 'M', 266), +(70034, 'Gale', 1953, 'M', 265), +(70035, 'Brett', 1953, 'M', 264), +(70036, 'Ned', 1953, 'M', 263), +(70037, 'Reed', 1953, 'M', 263), +(70038, 'Linwood', 1953, 'M', 262), +(70039, 'Winston', 1953, 'M', 262), +(70040, 'Ernesto', 1953, 'M', 260), +(70041, 'Lon', 1953, 'M', 260), +(70042, 'Jaime', 1953, 'M', 258), +(70043, 'Phil', 1953, 'M', 257), +(70044, 'Orville', 1953, 'M', 256), +(70045, 'Harley', 1953, 'M', 255), +(70046, 'Curt', 1953, 'M', 253), +(70047, 'Julio', 1953, 'M', 252), +(70048, 'Sterling', 1953, 'M', 252), +(70049, 'Elliott', 1953, 'M', 249), +(70050, 'Donny', 1953, 'M', 248), +(70051, 'Murray', 1953, 'M', 248), +(70052, 'Elijah', 1953, 'M', 247), +(70053, 'Joesph', 1953, 'M', 247), +(70054, 'Denny', 1953, 'M', 245), +(70055, 'Irving', 1953, 'M', 243), +(70056, 'Vaughn', 1953, 'M', 240), +(70057, 'Michel', 1953, 'M', 239), +(70058, 'Stevie', 1953, 'M', 239), +(70059, 'Jess', 1953, 'M', 238), +(70060, 'Ramiro', 1953, 'M', 238), +(70061, 'Loyd', 1953, 'M', 231), +(70062, 'Billie', 1953, 'M', 230), +(70063, 'Frederic', 1953, 'M', 228), +(70064, 'Kermit', 1953, 'M', 228), +(70065, 'Junior', 1953, 'M', 226), +(70066, 'Sanford', 1953, 'M', 226), +(70067, 'Burton', 1953, 'M', 222), +(70068, 'Abel', 1953, 'M', 219), +(70069, 'Carmen', 1953, 'M', 219), +(70070, 'Harrison', 1953, 'M', 219), +(70071, 'Orlando', 1953, 'M', 217), +(70072, 'August', 1953, 'M', 216), +(70073, 'Norbert', 1953, 'M', 216), +(70074, 'Dick', 1953, 'M', 215), +(70075, 'Kendall', 1953, 'M', 215), +(70076, 'Drew', 1953, 'M', 214), +(70077, 'Colin', 1953, 'M', 213), +(70078, 'Rory', 1953, 'M', 213), +(70079, 'Rocco', 1953, 'M', 212), +(70080, 'Emanuel', 1953, 'M', 211), +(70081, 'Austin', 1953, 'M', 210), +(70082, 'Thaddeus', 1953, 'M', 210), +(70083, 'Blake', 1953, 'M', 208), +(70084, 'Cornell', 1953, 'M', 208), +(70085, 'Ward', 1953, 'M', 207), +(70086, 'Eddy', 1953, 'M', 206), +(70087, 'Cedric', 1953, 'M', 205), +(70088, 'Will', 1953, 'M', 204), +(70089, 'Jamie', 1953, 'M', 203), +(70090, 'Geary', 1953, 'M', 202), +(70091, 'Simon', 1953, 'M', 202), +(70092, 'Lamont', 1953, 'M', 201), +(70093, 'Roscoe', 1953, 'M', 201), +(70094, 'Reuben', 1953, 'M', 199), +(70095, 'Gilberto', 1953, 'M', 196), +(70096, 'Odell', 1953, 'M', 195), +(70097, 'Randell', 1953, 'M', 195), +(70098, 'Bobbie', 1953, 'M', 194), +(70099, 'Dudley', 1953, 'M', 194), +(70100, 'Pablo', 1953, 'M', 194), +(70101, 'Kris', 1953, 'M', 193), +(70102, 'Reid', 1953, 'M', 193), +(70103, 'Sandy', 1953, 'M', 193), +(70104, 'Erik', 1953, 'M', 191), +(70105, 'Levi', 1953, 'M', 191), +(70106, 'Wiley', 1953, 'M', 191), +(70107, 'Donn', 1953, 'M', 190), +(70108, 'Mikel', 1953, 'M', 190), +(70109, 'Jody', 1953, 'M', 189), +(70110, 'Nolan', 1953, 'M', 189), +(70111, 'Kennith', 1953, 'M', 188), +(70112, 'Tomas', 1953, 'M', 188), +(70113, 'Israel', 1953, 'M', 187), +(70114, 'Fredric', 1953, 'M', 186), +(70115, 'Jasper', 1953, 'M', 186), +(70116, 'Reynaldo', 1953, 'M', 185), +(70117, 'Eduardo', 1953, 'M', 184), +(70118, 'Emil', 1953, 'M', 184), +(70119, 'Jerold', 1953, 'M', 184), +(70120, 'Shane', 1953, 'M', 184), +(70121, 'Bryant', 1953, 'M', 183), +(70122, 'Elvin', 1953, 'M', 183), +(70123, 'Roman', 1953, 'M', 183), +(70124, 'Lane', 1953, 'M', 182), +(70125, 'Robbie', 1953, 'M', 182), +(70126, 'Andres', 1953, 'M', 180), +(70127, 'Toby', 1953, 'M', 180), +(70128, 'Bart', 1953, 'M', 179), +(70129, 'Casey', 1953, 'M', 179), +(70130, 'Dane', 1953, 'M', 179), +(70131, 'Terrell', 1953, 'M', 179), +(70132, 'Weldon', 1953, 'M', 179), +(70133, 'Timmy', 1953, 'M', 178), +(70134, 'Thurman', 1953, 'M', 175), +(70135, 'Damon', 1953, 'M', 174), +(70136, 'Seth', 1953, 'M', 174), +(70137, 'Felipe', 1953, 'M', 173), +(70138, 'Gus', 1953, 'M', 173), +(70139, 'Justin', 1953, 'M', 173), +(70140, 'Luke', 1953, 'M', 171), +(70141, 'Joshua', 1953, 'M', 170), +(70142, 'Otto', 1953, 'M', 170), +(70143, 'Vern', 1953, 'M', 170), +(70144, 'Jacky', 1953, 'M', 169), +(70145, 'Rogelio', 1953, 'M', 169), +(70146, 'Dwain', 1953, 'M', 166), +(70147, 'Elwood', 1953, 'M', 164), +(70148, 'Garrett', 1953, 'M', 164), +(70149, 'Donnell', 1953, 'M', 163), +(70150, 'Jake', 1953, 'M', 163), +(70151, 'Riley', 1953, 'M', 163), +(70152, 'Ulysses', 1953, 'M', 163), +(70153, 'Ismael', 1953, 'M', 162), +(70154, 'Zachary', 1953, 'M', 162), +(70155, 'Carter', 1953, 'M', 161), +(70156, 'Chuck', 1953, 'M', 161), +(70157, 'Danial', 1953, 'M', 161), +(70158, 'Mathew', 1953, 'M', 161), +(70159, 'Mitchel', 1953, 'M', 161), +(70160, 'Elias', 1953, 'M', 160), +(70161, 'Emory', 1953, 'M', 160), +(70162, 'Ian', 1953, 'M', 160), +(70163, 'Noah', 1953, 'M', 160), +(70164, 'Garth', 1953, 'M', 159), +(70165, 'Erwin', 1953, 'M', 157), +(70166, 'Russel', 1953, 'M', 157), +(70167, 'Vito', 1953, 'M', 157), +(70168, 'Harris', 1953, 'M', 156), +(70169, 'Lindsey', 1953, 'M', 156), +(70170, 'Merlin', 1953, 'M', 156), +(70171, 'Val', 1953, 'M', 156), +(70172, 'Barton', 1953, 'M', 155), +(70173, 'Gail', 1953, 'M', 155), +(70174, 'Rogers', 1953, 'M', 155), +(70175, 'Hank', 1953, 'M', 154), +(70176, 'Jefferson', 1953, 'M', 154), +(70177, 'Nicky', 1953, 'M', 154), +(70178, 'Alejandro', 1953, 'M', 153), +(70179, 'Elliot', 1953, 'M', 153), +(70180, 'Adolph', 1953, 'M', 152), +(70181, 'Stan', 1953, 'M', 152), +(70182, 'Chad', 1953, 'M', 151), +(70183, 'Hollis', 1953, 'M', 151), +(70184, 'Merrill', 1953, 'M', 151), +(70185, 'Winfred', 1953, 'M', 151), +(70186, 'Morgan', 1953, 'M', 150), +(70187, 'Dirk', 1953, 'M', 149), +(70188, 'Domingo', 1953, 'M', 148), +(70189, 'Duncan', 1953, 'M', 148), +(70190, 'Rusty', 1953, 'M', 148), +(70191, 'Ignacio', 1953, 'M', 147), +(70192, 'Maynard', 1953, 'M', 147), +(70193, 'Monroe', 1953, 'M', 147), +(70194, 'Benito', 1953, 'M', 146), +(70195, 'Bryce', 1953, 'M', 146), +(70196, 'Mary', 1953, 'M', 146), +(70197, 'Ricki', 1953, 'M', 146), +(70198, 'Lonny', 1953, 'M', 145), +(70199, 'Ryan', 1953, 'M', 145), +(70200, 'Solomon', 1953, 'M', 145), +(70201, 'Coy', 1953, 'M', 144), +(70202, 'Delmar', 1953, 'M', 144), +(70203, 'Bennett', 1953, 'M', 143), +(70204, 'Rolando', 1953, 'M', 143), +(70205, 'Carson', 1953, 'M', 142), +(70206, 'Emilio', 1953, 'M', 142), +(70207, 'Jeremiah', 1953, 'M', 142), +(70208, 'Ollie', 1953, 'M', 142), +(70209, 'Connie', 1953, 'M', 140), +(70210, 'Ed', 1953, 'M', 140), +(70211, 'Millard', 1953, 'M', 140), +(70212, 'Scotty', 1953, 'M', 140), +(70213, 'Basil', 1953, 'M', 139), +(70214, 'Booker', 1953, 'M', 139), +(70215, 'Charley', 1953, 'M', 137), +(70216, 'Reggie', 1953, 'M', 137), +(70217, 'Cameron', 1953, 'M', 135), +(70218, 'Denver', 1953, 'M', 135), +(70219, 'Armand', 1953, 'M', 134), +(70220, 'Doug', 1953, 'M', 133), +(70221, 'Johnie', 1953, 'M', 133), +(70222, 'Jackson', 1953, 'M', 131), +(70223, 'Bernie', 1953, 'M', 130), +(70224, 'Sergio', 1953, 'M', 130), +(70225, 'Sonny', 1953, 'M', 130), +(70226, 'Lindsay', 1953, 'M', 129), +(70227, 'Shelton', 1953, 'M', 129), +(70228, 'Davis', 1953, 'M', 128), +(70229, 'Lenard', 1953, 'M', 128), +(70230, 'Pierre', 1953, 'M', 128), +(70231, 'Burt', 1953, 'M', 127), +(70232, 'Patricia', 1953, 'M', 126), +(70233, 'Clair', 1953, 'M', 125), +(70234, 'Eli', 1953, 'M', 125), +(70235, 'Guillermo', 1953, 'M', 125), +(70236, 'Kimberly', 1953, 'M', 125), +(70237, 'Kenton', 1953, 'M', 124), +(70238, 'Arlen', 1953, 'M', 123), +(70239, 'Emery', 1953, 'M', 123), +(70240, 'Santos', 1953, 'M', 123), +(70241, 'Stevan', 1953, 'M', 123), +(70242, 'Carmine', 1953, 'M', 122), +(70243, 'Hans', 1953, 'M', 122), +(70244, 'Jean', 1953, 'M', 122), +(70245, 'Mervin', 1953, 'M', 121), +(70246, 'Santiago', 1953, 'M', 121), +(70247, 'Ivory', 1953, 'M', 120), +(70248, 'Scot', 1953, 'M', 120), +(70249, 'Shelby', 1953, 'M', 120), +(70250, 'Clement', 1953, 'M', 118), +(70251, 'Dee', 1953, 'M', 118), +(70252, 'Royal', 1953, 'M', 118), +(70253, 'Randel', 1953, 'M', 117), +(70254, 'Saul', 1953, 'M', 117), +(70255, 'Felton', 1953, 'M', 116), +(70256, 'Major', 1953, 'M', 116), +(70257, 'Hiram', 1953, 'M', 115), +(70258, 'Jonathon', 1953, 'M', 115), +(70259, 'Anderson', 1953, 'M', 114), +(70260, 'Brandon', 1953, 'M', 114), +(70261, 'Butch', 1953, 'M', 114), +(70262, 'Efrain', 1953, 'M', 114), +(70263, 'Isaiah', 1953, 'M', 114), +(70264, 'Linda', 1953, 'M', 114), +(70265, 'Stanford', 1953, 'M', 114), +(70266, 'Brooks', 1953, 'M', 113), +(70267, 'Freeman', 1953, 'M', 113), +(70268, 'Irwin', 1953, 'M', 113), +(70269, 'Quentin', 1953, 'M', 113), +(70270, 'Silas', 1953, 'M', 113), +(70271, 'Stacy', 1953, 'M', 113), +(70272, 'Wilford', 1953, 'M', 113), +(70273, 'Brady', 1953, 'M', 112), +(70274, 'Gustavo', 1953, 'M', 112), +(70275, 'Hershel', 1953, 'M', 112), +(70276, 'Forest', 1953, 'M', 111), +(70277, 'Ike', 1953, 'M', 111), +(70278, 'Laverne', 1953, 'M', 111), +(70279, 'Marcel', 1953, 'M', 109), +(70280, 'Myles', 1953, 'M', 109), +(70281, 'Rod', 1953, 'M', 109), +(70282, 'Anton', 1953, 'M', 108), +(70283, 'Earle', 1953, 'M', 108), +(70284, 'Everette', 1953, 'M', 108), +(70285, 'Lemuel', 1953, 'M', 108), +(70286, 'Buford', 1953, 'M', 107), +(70287, 'Cleo', 1953, 'M', 107), +(70288, 'Dickie', 1953, 'M', 107), +(70289, 'Glynn', 1953, 'M', 107), +(70290, 'Matt', 1953, 'M', 107), +(70291, 'Clint', 1953, 'M', 106), +(70292, 'Errol', 1953, 'M', 106), +(70293, 'Herschel', 1953, 'M', 106), +(70294, 'Douglass', 1953, 'M', 105), +(70295, 'Kip', 1953, 'M', 105), +(70296, 'Lavern', 1953, 'M', 103), +(70297, 'Leigh', 1953, 'M', 103), +(70298, 'Gerardo', 1953, 'M', 102), +(70299, 'Jeremy', 1953, 'M', 102), +(70300, 'Jules', 1953, 'M', 102), +(70301, 'Nicolas', 1953, 'M', 102), +(70302, 'Augustine', 1953, 'M', 101), +(70303, 'Houston', 1953, 'M', 101), +(70304, 'Jed', 1953, 'M', 101), +(70305, 'Rand', 1953, 'M', 101), +(70306, 'Xavier', 1953, 'M', 101), +(70307, 'Zane', 1953, 'M', 101), +(70308, 'Bud', 1953, 'M', 100), +(70309, 'Emerson', 1953, 'M', 100), +(70310, 'Kurtis', 1953, 'M', 100), +(70311, 'Theron', 1953, 'M', 100), +(70312, 'Mary', 1954, 'F', 68001), +(70313, 'Linda', 1954, 'F', 55372), +(70314, 'Deborah', 1954, 'F', 54677), +(70315, 'Patricia', 1954, 'F', 49143), +(70316, 'Susan', 1954, 'F', 47160), +(70317, 'Debra', 1954, 'F', 45878), +(70318, 'Barbara', 1954, 'F', 36373), +(70319, 'Karen', 1954, 'F', 32458), +(70320, 'Nancy', 1954, 'F', 30256), +(70321, 'Cynthia', 1954, 'F', 27609), +(70322, 'Donna', 1954, 'F', 27431), +(70323, 'Pamela', 1954, 'F', 27366), +(70324, 'Sandra', 1954, 'F', 26063), +(70325, 'Kathleen', 1954, 'F', 22455), +(70326, 'Carol', 1954, 'F', 22250), +(70327, 'Sharon', 1954, 'F', 22210), +(70328, 'Diane', 1954, 'F', 22041), +(70329, 'Brenda', 1954, 'F', 19599), +(70330, 'Janet', 1954, 'F', 18456), +(70331, 'Elizabeth', 1954, 'F', 16587), +(70332, 'Margaret', 1954, 'F', 15223), +(70333, 'Cheryl', 1954, 'F', 15000), +(70334, 'Kathy', 1954, 'F', 14177), +(70335, 'Denise', 1954, 'F', 13714), +(70336, 'Janice', 1954, 'F', 13511), +(70337, 'Rebecca', 1954, 'F', 13210), +(70338, 'Carolyn', 1954, 'F', 12154), +(70339, 'Joyce', 1954, 'F', 12086), +(70340, 'Judy', 1954, 'F', 11632), +(70341, 'Judith', 1954, 'F', 11197), +(70342, 'Beverly', 1954, 'F', 11161), +(70343, 'Catherine', 1954, 'F', 11082), +(70344, 'Shirley', 1954, 'F', 10906), +(70345, 'Teresa', 1954, 'F', 10835), +(70346, 'Marilyn', 1954, 'F', 10814), +(70347, 'Betty', 1954, 'F', 10618), +(70348, 'Gail', 1954, 'F', 9718), +(70349, 'Paula', 1954, 'F', 9691), +(70350, 'Connie', 1954, 'F', 9636), +(70351, 'Joan', 1954, 'F', 9519), +(70352, 'Robin', 1954, 'F', 9043), +(70353, 'Gloria', 1954, 'F', 8916), +(70354, 'Christine', 1954, 'F', 8783), +(70355, 'Ann', 1954, 'F', 8757), +(70356, 'Laura', 1954, 'F', 8722), +(70357, 'Martha', 1954, 'F', 8591), +(70358, 'Theresa', 1954, 'F', 8502), +(70359, 'Peggy', 1954, 'F', 8453), +(70360, 'Jane', 1954, 'F', 8353), +(70361, 'Vicki', 1954, 'F', 8219), +(70362, 'Kathryn', 1954, 'F', 8140), +(70363, 'Bonnie', 1954, 'F', 8103), +(70364, 'Jo', 1954, 'F', 8056), +(70365, 'Rose', 1954, 'F', 8007), +(70366, 'Dorothy', 1954, 'F', 7797), +(70367, 'Jean', 1954, 'F', 7662), +(70368, 'Diana', 1954, 'F', 7625), +(70369, 'Wanda', 1954, 'F', 7453), +(70370, 'Cathy', 1954, 'F', 7216), +(70371, 'Sheila', 1954, 'F', 7200), +(70372, 'Virginia', 1954, 'F', 7178), +(70373, 'Sherry', 1954, 'F', 7118), +(70374, 'Lynn', 1954, 'F', 6781), +(70375, 'Katherine', 1954, 'F', 6740), +(70376, 'Maria', 1954, 'F', 6582), +(70377, 'Ruth', 1954, 'F', 6564), +(70378, 'Rita', 1954, 'F', 6538), +(70379, 'Jacqueline', 1954, 'F', 6512), +(70380, 'Vickie', 1954, 'F', 6367), +(70381, 'Julie', 1954, 'F', 6277), +(70382, 'Rhonda', 1954, 'F', 6098), +(70383, 'Helen', 1954, 'F', 5941), +(70384, 'Lisa', 1954, 'F', 5909), +(70385, 'Elaine', 1954, 'F', 5825), +(70386, 'Phyllis', 1954, 'F', 5766), +(70387, 'Darlene', 1954, 'F', 5507), +(70388, 'Ellen', 1954, 'F', 5454), +(70389, 'Joanne', 1954, 'F', 5429), +(70390, 'Marie', 1954, 'F', 5315), +(70391, 'Anne', 1954, 'F', 5302), +(70392, 'Alice', 1954, 'F', 5265), +(70393, 'Suzanne', 1954, 'F', 5231), +(70394, 'Frances', 1954, 'F', 5161), +(70395, 'Sally', 1954, 'F', 5077), +(70396, 'Victoria', 1954, 'F', 4982), +(70397, 'Marsha', 1954, 'F', 4965), +(70398, 'Valerie', 1954, 'F', 4927), +(70399, 'Terry', 1954, 'F', 4788), +(70400, 'Michele', 1954, 'F', 4763), +(70401, 'Marcia', 1954, 'F', 4742), +(70402, 'Cindy', 1954, 'F', 4713), +(70403, 'Debbie', 1954, 'F', 4674), +(70404, 'Doris', 1954, 'F', 4454), +(70405, 'Michelle', 1954, 'F', 4428), +(70406, 'Wendy', 1954, 'F', 4416), +(70407, 'Anita', 1954, 'F', 4410), +(70408, 'Maureen', 1954, 'F', 4365), +(70409, 'Laurie', 1954, 'F', 4286), +(70410, 'Leslie', 1954, 'F', 4148), +(70411, 'Terri', 1954, 'F', 4126), +(70412, 'Sylvia', 1954, 'F', 4081), +(70413, 'Roberta', 1954, 'F', 4043), +(70414, 'Sarah', 1954, 'F', 4040), +(70415, 'Marian', 1954, 'F', 4014), +(70416, 'Anna', 1954, 'F', 3994), +(70417, 'Sue', 1954, 'F', 3978), +(70418, 'Jill', 1954, 'F', 3967), +(70419, 'Jennifer', 1954, 'F', 3960), +(70420, 'Evelyn', 1954, 'F', 3954), +(70421, 'Lois', 1954, 'F', 3953), +(70422, 'Constance', 1954, 'F', 3840), +(70423, 'Jeanne', 1954, 'F', 3765), +(70424, 'Charlotte', 1954, 'F', 3761), +(70425, 'Glenda', 1954, 'F', 3733), +(70426, 'Eileen', 1954, 'F', 3681), +(70427, 'Dianne', 1954, 'F', 3640), +(70428, 'Yvonne', 1954, 'F', 3557), +(70429, 'Angela', 1954, 'F', 3547), +(70430, 'Colleen', 1954, 'F', 3483), +(70431, 'Lorraine', 1954, 'F', 3461), +(70432, 'Lori', 1954, 'F', 3444), +(70433, 'Gwendolyn', 1954, 'F', 3411), +(70434, 'Stephanie', 1954, 'F', 3372), +(70435, 'Dawn', 1954, 'F', 3353), +(70436, 'Charlene', 1954, 'F', 3244), +(70437, 'Loretta', 1954, 'F', 3243), +(70438, 'Julia', 1954, 'F', 3159), +(70439, 'Norma', 1954, 'F', 3105), +(70440, 'Joann', 1954, 'F', 3060), +(70441, 'Beth', 1954, 'F', 3035), +(70442, 'Jan', 1954, 'F', 2992), +(70443, 'Renee', 1954, 'F', 2982), +(70444, 'Kim', 1954, 'F', 2937), +(70445, 'Sheryl', 1954, 'F', 2932), +(70446, 'Carla', 1954, 'F', 2894), +(70447, 'Andrea', 1954, 'F', 2721), +(70448, 'Regina', 1954, 'F', 2716), +(70449, 'Louise', 1954, 'F', 2692), +(70450, 'Amy', 1954, 'F', 2675), +(70451, 'Irene', 1954, 'F', 2657), +(70452, 'Marlene', 1954, 'F', 2652), +(70453, 'Vanessa', 1954, 'F', 2643), +(70454, 'Geraldine', 1954, 'F', 2573), +(70455, 'Juanita', 1954, 'F', 2548), +(70456, 'Claudia', 1954, 'F', 2515), +(70457, 'Kay', 1954, 'F', 2504), +(70458, 'Gayle', 1954, 'F', 2498), +(70459, 'Jeanette', 1954, 'F', 2490), +(70460, 'Audrey', 1954, 'F', 2454), +(70461, 'Annie', 1954, 'F', 2416), +(70462, 'Joy', 1954, 'F', 2365), +(70463, 'June', 1954, 'F', 2362), +(70464, 'Toni', 1954, 'F', 2300), +(70465, 'Annette', 1954, 'F', 2279), +(70466, 'Patsy', 1954, 'F', 2279), +(70467, 'Vivian', 1954, 'F', 2274), +(70468, 'Lynne', 1954, 'F', 2266), +(70469, 'Roxanne', 1954, 'F', 2229), +(70470, 'Marjorie', 1954, 'F', 2225), +(70471, 'Rosemary', 1954, 'F', 2190), +(70472, 'Shelley', 1954, 'F', 2178), +(70473, 'Ruby', 1954, 'F', 2144), +(70474, 'Penny', 1954, 'F', 2136), +(70475, 'Sara', 1954, 'F', 2125), +(70476, 'Rosa', 1954, 'F', 2101), +(70477, 'Kimberly', 1954, 'F', 2095), +(70478, 'Holly', 1954, 'F', 2094), +(70479, 'Patti', 1954, 'F', 2092), +(70480, 'Arlene', 1954, 'F', 2081), +(70481, 'Melissa', 1954, 'F', 2058), +(70482, 'Vicky', 1954, 'F', 2041), +(70483, 'Marianne', 1954, 'F', 2031), +(70484, 'Lynda', 1954, 'F', 2022), +(70485, 'Dolores', 1954, 'F', 1962), +(70486, 'Yolanda', 1954, 'F', 1961), +(70487, 'Melinda', 1954, 'F', 1952), +(70488, 'Delores', 1954, 'F', 1946), +(70489, 'Melanie', 1954, 'F', 1862), +(70490, 'Becky', 1954, 'F', 1849), +(70491, 'Mildred', 1954, 'F', 1835), +(70492, 'Monica', 1954, 'F', 1825), +(70493, 'Rachel', 1954, 'F', 1803), +(70494, 'Janis', 1954, 'F', 1790), +(70495, 'Carmen', 1954, 'F', 1779), +(70496, 'Jackie', 1954, 'F', 1731), +(70497, 'Josephine', 1954, 'F', 1722), +(70498, 'Eva', 1954, 'F', 1710), +(70499, 'Belinda', 1954, 'F', 1681), +(70500, 'Edna', 1954, 'F', 1681), +(70501, 'Shelia', 1954, 'F', 1668), +(70502, 'Veronica', 1954, 'F', 1641), +(70503, 'Luann', 1954, 'F', 1638), +(70504, 'Esther', 1954, 'F', 1627), +(70505, 'Lillian', 1954, 'F', 1626), +(70506, 'Ramona', 1954, 'F', 1613), +(70507, 'Jacquelyn', 1954, 'F', 1601), +(70508, 'Candace', 1954, 'F', 1555), +(70509, 'Lydia', 1954, 'F', 1554), +(70510, 'Melody', 1954, 'F', 1547), +(70511, 'Lucy', 1954, 'F', 1534), +(70512, 'Georgia', 1954, 'F', 1533), +(70513, 'Emma', 1954, 'F', 1528), +(70514, 'Carole', 1954, 'F', 1506), +(70515, 'Lou', 1954, 'F', 1493), +(70516, 'Janie', 1954, 'F', 1492), +(70517, 'Margie', 1954, 'F', 1489), +(70518, 'Nina', 1954, 'F', 1487), +(70519, 'Paulette', 1954, 'F', 1480), +(70520, 'Sherri', 1954, 'F', 1470), +(70521, 'Edith', 1954, 'F', 1425), +(70522, 'Pauline', 1954, 'F', 1421), +(70523, 'Dianna', 1954, 'F', 1412), +(70524, 'Grace', 1954, 'F', 1410), +(70525, 'Christina', 1954, 'F', 1389), +(70526, 'Bobbie', 1954, 'F', 1384), +(70527, 'Lee', 1954, 'F', 1355), +(70528, 'Dana', 1954, 'F', 1352), +(70529, 'Emily', 1954, 'F', 1341), +(70530, 'Marion', 1954, 'F', 1336), +(70531, 'Lucille', 1954, 'F', 1328), +(70532, 'Carrie', 1954, 'F', 1308), +(70533, 'Priscilla', 1954, 'F', 1308), +(70534, 'Wilma', 1954, 'F', 1301), +(70535, 'Marla', 1954, 'F', 1298), +(70536, 'Billie', 1954, 'F', 1277), +(70537, 'Gladys', 1954, 'F', 1260), +(70538, 'Patty', 1954, 'F', 1251), +(70539, 'Thelma', 1954, 'F', 1241), +(70540, 'Debora', 1954, 'F', 1240), +(70541, 'Tina', 1954, 'F', 1238), +(70542, 'Vera', 1954, 'F', 1221), +(70543, 'Bonita', 1954, 'F', 1200), +(70544, 'Mona', 1954, 'F', 1189), +(70545, 'Clara', 1954, 'F', 1183), +(70546, 'Ethel', 1954, 'F', 1173), +(70547, 'Patrice', 1954, 'F', 1163), +(70548, 'Nora', 1954, 'F', 1160), +(70549, 'Bertha', 1954, 'F', 1157), +(70550, 'Maryann', 1954, 'F', 1147), +(70551, 'Doreen', 1954, 'F', 1138), +(70552, 'Karla', 1954, 'F', 1138), +(70553, 'Eleanor', 1954, 'F', 1114), +(70554, 'Willie', 1954, 'F', 1108), +(70555, 'Ella', 1954, 'F', 1098), +(70556, 'Faye', 1954, 'F', 1098), +(70557, 'Jody', 1954, 'F', 1096), +(70558, 'Dale', 1954, 'F', 1095), +(70559, 'Beatrice', 1954, 'F', 1082), +(70560, 'Bernice', 1954, 'F', 1075), +(70561, 'Lynette', 1954, 'F', 1067), +(70562, 'Sherrie', 1954, 'F', 1067), +(70563, 'Rosie', 1954, 'F', 1064), +(70564, 'Ida', 1954, 'F', 1057), +(70565, 'Lillie', 1954, 'F', 1047), +(70566, 'Miriam', 1954, 'F', 1044), +(70567, 'Florence', 1954, 'F', 1033), +(70568, 'Hazel', 1954, 'F', 1033), +(70569, 'Claire', 1954, 'F', 1032), +(70570, 'Gale', 1954, 'F', 1017), +(70571, 'Alma', 1954, 'F', 1012), +(70572, 'Francine', 1954, 'F', 1008), +(70573, 'Betsy', 1954, 'F', 1003), +(70574, 'Lucinda', 1954, 'F', 998), +(70575, 'Bernadette', 1954, 'F', 996), +(70576, 'Maxine', 1954, 'F', 990), +(70577, 'Jamie', 1954, 'F', 987), +(70578, 'Cecilia', 1954, 'F', 986), +(70579, 'Deanna', 1954, 'F', 982), +(70580, 'Nadine', 1954, 'F', 980), +(70581, 'Myra', 1954, 'F', 960), +(70582, 'Antoinette', 1954, 'F', 959), +(70583, 'April', 1954, 'F', 950), +(70584, 'Kathie', 1954, 'F', 949), +(70585, 'Irma', 1954, 'F', 948), +(70586, 'Robyn', 1954, 'F', 945), +(70587, 'Teri', 1954, 'F', 938), +(70588, 'Sheri', 1954, 'F', 935), +(70589, 'Susie', 1954, 'F', 927), +(70590, 'Alicia', 1954, 'F', 923), +(70591, 'Joni', 1954, 'F', 918), +(70592, 'Jeannie', 1954, 'F', 917), +(70593, 'Jayne', 1954, 'F', 911), +(70594, 'Dora', 1954, 'F', 904), +(70595, 'Gina', 1954, 'F', 889), +(70596, 'Therese', 1954, 'F', 888), +(70597, 'Laurel', 1954, 'F', 880), +(70598, 'Cathleen', 1954, 'F', 869), +(70599, 'Kristine', 1954, 'F', 867), +(70600, 'Heidi', 1954, 'F', 866), +(70601, 'Ginger', 1954, 'F', 862), +(70602, 'Jeannette', 1954, 'F', 851), +(70603, 'Stella', 1954, 'F', 850), +(70604, 'Jana', 1954, 'F', 846), +(70605, 'Jenny', 1954, 'F', 827), +(70606, 'Iris', 1954, 'F', 822), +(70607, 'Naomi', 1954, 'F', 816), +(70608, 'Janine', 1954, 'F', 813), +(70609, 'Cheri', 1954, 'F', 809), +(70610, 'Lana', 1954, 'F', 809), +(70611, 'Marguerite', 1954, 'F', 789), +(70612, 'Jennie', 1954, 'F', 781), +(70613, 'Jeri', 1954, 'F', 771), +(70614, 'Trudy', 1954, 'F', 770), +(70615, 'Caroline', 1954, 'F', 769), +(70616, 'Jessie', 1954, 'F', 764), +(70617, 'Shelly', 1954, 'F', 759), +(70618, 'Crystal', 1954, 'F', 758), +(70619, 'Rosanne', 1954, 'F', 755), +(70620, 'Dixie', 1954, 'F', 746), +(70621, 'Velma', 1954, 'F', 744), +(70622, 'Kathi', 1954, 'F', 740), +(70623, 'Rosemarie', 1954, 'F', 738), +(70624, 'Lauren', 1954, 'F', 735), +(70625, 'Harriet', 1954, 'F', 721), +(70626, 'Margo', 1954, 'F', 714), +(70627, 'Terrie', 1954, 'F', 712), +(70628, 'Lorna', 1954, 'F', 707), +(70629, 'Darla', 1954, 'F', 700), +(70630, 'Deloris', 1954, 'F', 697), +(70631, 'Marcella', 1954, 'F', 693), +(70632, 'Janette', 1954, 'F', 692), +(70633, 'Mattie', 1954, 'F', 689), +(70634, 'Sheree', 1954, 'F', 685), +(70635, 'Gwen', 1954, 'F', 682), +(70636, 'Cecelia', 1954, 'F', 680), +(70637, 'Faith', 1954, 'F', 676), +(70638, 'Rosalie', 1954, 'F', 675), +(70639, 'Tamara', 1954, 'F', 663), +(70640, 'Hilda', 1954, 'F', 659), +(70641, 'Christy', 1954, 'F', 657), +(70642, 'Bessie', 1954, 'F', 656), +(70643, 'Sandy', 1954, 'F', 649), +(70644, 'Adrienne', 1954, 'F', 648), +(70645, 'Geneva', 1954, 'F', 647), +(70646, 'Olivia', 1954, 'F', 647), +(70647, 'Unknown', 1954, 'F', 646), +(70648, 'Gay', 1954, 'F', 635), +(70649, 'Cassandra', 1954, 'F', 633), +(70650, 'Susanne', 1954, 'F', 626), +(70651, 'Olga', 1954, 'F', 624), +(70652, 'Celeste', 1954, 'F', 622), +(70653, 'Rochelle', 1954, 'F', 622), +(70654, 'Guadalupe', 1954, 'F', 621), +(70655, 'Alison', 1954, 'F', 619), +(70656, 'Gayla', 1954, 'F', 618), +(70657, 'Cora', 1954, 'F', 613), +(70658, 'Tracy', 1954, 'F', 612), +(70659, 'Minnie', 1954, 'F', 610), +(70660, 'Tanya', 1954, 'F', 608), +(70661, 'Johnnie', 1954, 'F', 605), +(70662, 'Lora', 1954, 'F', 603), +(70663, 'Molly', 1954, 'F', 599), +(70664, 'Candice', 1954, 'F', 595), +(70665, 'Della', 1954, 'F', 590), +(70666, 'Lena', 1954, 'F', 588), +(70667, 'Luanne', 1954, 'F', 587), +(70668, 'Madeline', 1954, 'F', 587), +(70669, 'Verna', 1954, 'F', 585), +(70670, 'Kerry', 1954, 'F', 582), +(70671, 'Ronda', 1954, 'F', 577), +(70672, 'Viola', 1954, 'F', 573), +(70673, 'Corinne', 1954, 'F', 572), +(70674, 'Margarita', 1954, 'F', 571), +(70675, 'Karin', 1954, 'F', 569), +(70676, 'Leona', 1954, 'F', 569), +(70677, 'Ernestine', 1954, 'F', 564), +(70678, 'Gretchen', 1954, 'F', 563), +(70679, 'Lola', 1954, 'F', 557), +(70680, 'Shannon', 1954, 'F', 557), +(70681, 'Leah', 1954, 'F', 556), +(70682, 'Mae', 1954, 'F', 556), +(70683, 'Nellie', 1954, 'F', 551), +(70684, 'Celia', 1954, 'F', 549), +(70685, 'Elsie', 1954, 'F', 549), +(70686, 'Heather', 1954, 'F', 541), +(70687, 'Ava', 1954, 'F', 540), +(70688, 'Sonia', 1954, 'F', 535), +(70689, 'Agnes', 1954, 'F', 523), +(70690, 'Glenna', 1954, 'F', 521), +(70691, 'Laverne', 1954, 'F', 511), +(70692, 'Amelia', 1954, 'F', 509), +(70693, 'Alberta', 1954, 'F', 506), +(70694, 'Yvette', 1954, 'F', 501), +(70695, 'Katie', 1954, 'F', 499), +(70696, 'Daisy', 1954, 'F', 498), +(70697, 'Pearl', 1954, 'F', 495), +(70698, 'Cherie', 1954, 'F', 494), +(70699, 'Diann', 1954, 'F', 491), +(70700, 'Jolene', 1954, 'F', 491), +(70701, 'Polly', 1954, 'F', 491), +(70702, 'Jeanine', 1954, 'F', 489), +(70703, 'Jeannine', 1954, 'F', 488), +(70704, 'Dona', 1954, 'F', 487), +(70705, 'Hope', 1954, 'F', 485), +(70706, 'Jacalyn', 1954, 'F', 482), +(70707, 'Penelope', 1954, 'F', 481), +(70708, 'Freda', 1954, 'F', 479), +(70709, 'Camille', 1954, 'F', 476), +(70710, 'Noreen', 1954, 'F', 474), +(70711, 'Joanna', 1954, 'F', 471), +(70712, 'Rosalind', 1954, 'F', 465), +(70713, 'Suzan', 1954, 'F', 462), +(70714, 'Helene', 1954, 'F', 461), +(70715, 'Bridget', 1954, 'F', 458), +(70716, 'Delia', 1954, 'F', 458), +(70717, 'Kelly', 1954, 'F', 456), +(70718, 'Reba', 1954, 'F', 454), +(70719, 'Violet', 1954, 'F', 450), +(70720, 'Sondra', 1954, 'F', 444), +(70721, 'Ada', 1954, 'F', 443), +(70722, 'Denice', 1954, 'F', 442), +(70723, 'Melba', 1954, 'F', 438), +(70724, 'Mindy', 1954, 'F', 438), +(70725, 'Candy', 1954, 'F', 437), +(70726, 'Hattie', 1954, 'F', 435), +(70727, 'Robbie', 1954, 'F', 433), +(70728, 'Lorene', 1954, 'F', 430), +(70729, 'Sallie', 1954, 'F', 430), +(70730, 'Amanda', 1954, 'F', 428), +(70731, 'Rena', 1954, 'F', 428), +(70732, 'Dena', 1954, 'F', 424), +(70733, 'Sonja', 1954, 'F', 424), +(70734, 'Frankie', 1954, 'F', 423), +(70735, 'Jessica', 1954, 'F', 423), +(70736, 'Adele', 1954, 'F', 422), +(70737, 'Dee', 1954, 'F', 421), +(70738, 'Eunice', 1954, 'F', 421), +(70739, 'Marta', 1954, 'F', 419), +(70740, 'Flora', 1954, 'F', 415), +(70741, 'Erma', 1954, 'F', 413), +(70742, 'Jerri', 1954, 'F', 407), +(70743, 'Jeanie', 1954, 'F', 406), +(70744, 'Kristin', 1954, 'F', 406), +(70745, 'Shari', 1954, 'F', 406), +(70746, 'Elise', 1954, 'F', 404), +(70747, 'Lula', 1954, 'F', 404), +(70748, 'Rene', 1954, 'F', 403), +(70749, 'Natalie', 1954, 'F', 402), +(70750, 'Lenora', 1954, 'F', 400), +(70751, 'Rosalyn', 1954, 'F', 399), +(70752, 'Lu', 1954, 'F', 396), +(70753, 'Nanette', 1954, 'F', 396), +(70754, 'Gertrude', 1954, 'F', 394), +(70755, 'Claudette', 1954, 'F', 392), +(70756, 'Bette', 1954, 'F', 389), +(70757, 'Nita', 1954, 'F', 389), +(70758, 'Kaye', 1954, 'F', 388), +(70759, 'Ana', 1954, 'F', 387), +(70760, 'Fannie', 1954, 'F', 384), +(70761, 'Henrietta', 1954, 'F', 382), +(70762, 'Myrna', 1954, 'F', 381), +(70763, 'Roxann', 1954, 'F', 381), +(70764, 'Rosetta', 1954, 'F', 379), +(70765, 'Colette', 1954, 'F', 378), +(70766, 'Janelle', 1954, 'F', 375), +(70767, 'Chris', 1954, 'F', 373), +(70768, 'Roseann', 1954, 'F', 372), +(70769, 'Marcy', 1954, 'F', 371), +(70770, 'Rae', 1954, 'F', 371), +(70771, 'Mamie', 1954, 'F', 369), +(70772, 'Isabel', 1954, 'F', 367), +(70773, 'Estella', 1954, 'F', 364), +(70774, 'Lorrie', 1954, 'F', 364), +(70775, 'Mari', 1954, 'F', 362), +(70776, 'Lila', 1954, 'F', 361), +(70777, 'Christie', 1954, 'F', 358), +(70778, 'Antonia', 1954, 'F', 357), +(70779, 'Mitzi', 1954, 'F', 357), +(70780, 'Kristi', 1954, 'F', 355), +(70781, 'Ladonna', 1954, 'F', 355), +(70782, 'Merry', 1954, 'F', 355), +(70783, 'Tonya', 1954, 'F', 355), +(70784, 'Eloise', 1954, 'F', 354), +(70785, 'Lesley', 1954, 'F', 353), +(70786, 'Charmaine', 1954, 'F', 351), +(70787, 'Eugenia', 1954, 'F', 351), +(70788, 'Nelda', 1954, 'F', 350), +(70789, 'Cathryn', 1954, 'F', 348), +(70790, 'Saundra', 1954, 'F', 348), +(70791, 'Lynnette', 1954, 'F', 347), +(70792, 'Maggie', 1954, 'F', 347), +(70793, 'Ilene', 1954, 'F', 346), +(70794, 'Elena', 1954, 'F', 335), +(70795, 'Ruthie', 1954, 'F', 332), +(70796, 'Sharron', 1954, 'F', 331), +(70797, 'Stacey', 1954, 'F', 331), +(70798, 'Tracey', 1954, 'F', 330), +(70799, 'Valarie', 1954, 'F', 329), +(70800, 'Myrtle', 1954, 'F', 328), +(70801, 'Leticia', 1954, 'F', 327), +(70802, 'Pam', 1954, 'F', 325), +(70803, 'Leanne', 1954, 'F', 323), +(70804, 'Randi', 1954, 'F', 323), +(70805, 'Bettie', 1954, 'F', 322), +(70806, 'Katharine', 1954, 'F', 321), +(70807, 'Leigh', 1954, 'F', 321), +(70808, 'Fay', 1954, 'F', 320), +(70809, 'Gracie', 1954, 'F', 319), +(70810, 'Lorie', 1954, 'F', 314), +(70811, 'Earnestine', 1954, 'F', 313), +(70812, 'Debrah', 1954, 'F', 312), +(70813, 'Maryanne', 1954, 'F', 312), +(70814, 'Sonya', 1954, 'F', 311), +(70815, 'Shawn', 1954, 'F', 310), +(70816, 'Shelby', 1954, 'F', 309), +(70817, 'Althea', 1954, 'F', 308), +(70818, 'Sharlene', 1954, 'F', 306), +(70819, 'Pamala', 1954, 'F', 305), +(70820, 'Carlene', 1954, 'F', 303), +(70821, 'Debby', 1954, 'F', 303), +(70822, 'Jocelyn', 1954, 'F', 303), +(70823, 'Julianne', 1954, 'F', 302), +(70824, 'Inez', 1954, 'F', 300), +(70825, 'Dorothea', 1954, 'F', 299), +(70826, 'Leann', 1954, 'F', 299), +(70827, 'Maryellen', 1954, 'F', 298), +(70828, 'Benita', 1954, 'F', 296), +(70829, 'Darcy', 1954, 'F', 296), +(70830, 'Genevieve', 1954, 'F', 294), +(70831, 'Allison', 1954, 'F', 292), +(70832, 'Pat', 1954, 'F', 291), +(70833, 'Caren', 1954, 'F', 290), +(70834, 'Coleen', 1954, 'F', 290), +(70835, 'Felicia', 1954, 'F', 290), +(70836, 'Blanche', 1954, 'F', 284), +(70837, 'Shauna', 1954, 'F', 284), +(70838, 'Georgette', 1954, 'F', 283), +(70839, 'Marva', 1954, 'F', 282), +(70840, 'Robbin', 1954, 'F', 282), +(70841, 'Meredith', 1954, 'F', 281), +(70842, 'Suzette', 1954, 'F', 279), +(70843, 'Jewel', 1954, 'F', 278), +(70844, 'Katrina', 1954, 'F', 278), +(70845, 'Stacy', 1954, 'F', 278), +(70846, 'Bettye', 1954, 'F', 277), +(70847, 'Lyn', 1954, 'F', 274), +(70848, 'Earlene', 1954, 'F', 273), +(70849, 'Kimberley', 1954, 'F', 272), +(70850, 'Jodi', 1954, 'F', 271), +(70851, 'Dinah', 1954, 'F', 269), +(70852, 'Kristina', 1954, 'F', 269), +(70853, 'Roxie', 1954, 'F', 268), +(70854, 'Kristy', 1954, 'F', 267), +(70855, 'Muriel', 1954, 'F', 267), +(70856, 'Elva', 1954, 'F', 266), +(70857, 'Lucia', 1954, 'F', 265), +(70858, 'Blanca', 1954, 'F', 264), +(70859, 'Janell', 1954, 'F', 264), +(70860, 'Angelina', 1954, 'F', 262), +(70861, 'Angie', 1954, 'F', 261), +(70862, 'Cherry', 1954, 'F', 261), +(70863, 'Marilynn', 1954, 'F', 260), +(70864, 'Tara', 1954, 'F', 260), +(70865, 'Clare', 1954, 'F', 259), +(70866, 'Elisabeth', 1954, 'F', 258), +(70867, 'Daphne', 1954, 'F', 256), +(70868, 'Beverley', 1954, 'F', 253), +(70869, 'Sadie', 1954, 'F', 253), +(70870, 'Clarice', 1954, 'F', 252), +(70871, 'Elvira', 1954, 'F', 251), +(70872, 'Eula', 1954, 'F', 249), +(70873, 'Gilda', 1954, 'F', 249), +(70874, 'Lela', 1954, 'F', 249), +(70875, 'Marina', 1954, 'F', 249), +(70876, 'Corrine', 1954, 'F', 248), +(70877, 'Dolly', 1954, 'F', 247), +(70878, 'Edwina', 1954, 'F', 247), +(70879, 'Jerry', 1954, 'F', 247), +(70880, 'Lavonne', 1954, 'F', 247), +(70881, 'Mable', 1954, 'F', 247), +(70882, 'Elsa', 1954, 'F', 246), +(70883, 'Rosalinda', 1954, 'F', 246), +(70884, 'Nikki', 1954, 'F', 245), +(70885, 'Roxanna', 1954, 'F', 245), +(70886, 'Lenore', 1954, 'F', 244), +(70887, 'Nona', 1954, 'F', 244), +(70888, 'Kathrine', 1954, 'F', 243), +(70889, 'Louann', 1954, 'F', 243), +(70890, 'Cathie', 1954, 'F', 242), +(70891, 'Ina', 1954, 'F', 242), +(70892, 'Lea', 1954, 'F', 242), +(70893, 'Nettie', 1954, 'F', 242), +(70894, 'Etta', 1954, 'F', 239), +(70895, 'Delois', 1954, 'F', 238), +(70896, 'Elisa', 1954, 'F', 238), +(70897, 'Bobbi', 1954, 'F', 237), +(70898, 'Fern', 1954, 'F', 237), +(70899, 'Patrica', 1954, 'F', 237), +(70900, 'Nola', 1954, 'F', 236), +(70901, 'Malinda', 1954, 'F', 235), +(70902, 'Terese', 1954, 'F', 235), +(70903, 'Ora', 1954, 'F', 234), +(70904, 'Eve', 1954, 'F', 233), +(70905, 'Rhoda', 1954, 'F', 233), +(70906, 'Roslyn', 1954, 'F', 233), +(70907, 'Essie', 1954, 'F', 232), +(70908, 'Alfreda', 1954, 'F', 230), +(70909, 'Loraine', 1954, 'F', 230), +(70910, 'Francis', 1954, 'F', 228), +(70911, 'Josie', 1954, 'F', 228), +(70912, 'Marcie', 1954, 'F', 228), +(70913, 'Johanna', 1954, 'F', 227), +(70914, 'Willa', 1954, 'F', 227), +(70915, 'James', 1954, 'F', 226), +(70916, 'Valorie', 1954, 'F', 226), +(70917, 'Marietta', 1954, 'F', 225), +(70918, 'Avis', 1954, 'F', 224), +(70919, 'Lupe', 1954, 'F', 223), +(70920, 'Winifred', 1954, 'F', 223), +(70921, 'Harriett', 1954, 'F', 221), +(70922, 'Kitty', 1954, 'F', 220), +(70923, 'Caryn', 1954, 'F', 219), +(70924, 'Debbra', 1954, 'F', 219), +(70925, 'Ingrid', 1954, 'F', 219), +(70926, 'Geralyn', 1954, 'F', 217), +(70927, 'Jannie', 1954, 'F', 217), +(70928, 'Krista', 1954, 'F', 217), +(70929, 'Kristen', 1954, 'F', 217), +(70930, 'Michael', 1954, 'F', 216), +(70931, 'Nan', 1954, 'F', 215), +(70932, 'Joe', 1954, 'F', 213), +(70933, 'Vickey', 1954, 'F', 213), +(70934, 'Marylou', 1954, 'F', 212), +(70935, 'Dorene', 1954, 'F', 211), +(70936, 'Helena', 1954, 'F', 211), +(70937, 'Madonna', 1954, 'F', 211), +(70938, 'Mariann', 1954, 'F', 211), +(70939, 'Marilee', 1954, 'F', 210), +(70940, 'Neva', 1954, 'F', 210), +(70941, 'Pearlie', 1954, 'F', 210), +(70942, 'Deanne', 1954, 'F', 209), +(70943, 'Maura', 1954, 'F', 209), +(70944, 'Gaye', 1954, 'F', 207), +(70945, 'Geri', 1954, 'F', 207), +(70946, 'Karol', 1954, 'F', 207), +(70947, 'Aleta', 1954, 'F', 206), +(70948, 'Iva', 1954, 'F', 206), +(70949, 'Lizzie', 1954, 'F', 206), +(70950, 'Madelyn', 1954, 'F', 206), +(70951, 'Melva', 1954, 'F', 206), +(70952, 'Cinda', 1954, 'F', 205), +(70953, 'Ollie', 1954, 'F', 205), +(70954, 'Vikki', 1954, 'F', 205), +(70955, 'Deana', 1954, 'F', 204), +(70956, 'Renae', 1954, 'F', 204), +(70957, 'Jimmie', 1954, 'F', 203), +(70958, 'Queen', 1954, 'F', 203), +(70959, 'Sherrill', 1954, 'F', 203), +(70960, 'Annmarie', 1954, 'F', 202), +(70961, 'Karon', 1954, 'F', 202), +(70962, 'Nanci', 1954, 'F', 201), +(70963, 'Arleen', 1954, 'F', 199), +(70964, 'Lottie', 1954, 'F', 199), +(70965, 'Laureen', 1954, 'F', 198), +(70966, 'Estelle', 1954, 'F', 197), +(70967, 'Rebekah', 1954, 'F', 197), +(70968, 'Doretha', 1954, 'F', 196), +(70969, 'Randy', 1954, 'F', 196), +(70970, 'Beulah', 1954, 'F', 195), +(70971, 'Ivy', 1954, 'F', 195), +(70972, 'Leila', 1954, 'F', 195), +(70973, 'Maryjo', 1954, 'F', 195), +(70974, 'Aida', 1954, 'F', 194), +(70975, 'Bernadine', 1954, 'F', 194), +(70976, 'Greta', 1954, 'F', 194), +(70977, 'Sybil', 1954, 'F', 194), +(70978, 'Tammy', 1954, 'F', 194), +(70979, 'Dorthy', 1954, 'F', 193), +(70980, 'Angelia', 1954, 'F', 192), +(70981, 'Cornelia', 1954, 'F', 192), +(70982, 'Pattie', 1954, 'F', 192), +(70983, 'Kristie', 1954, 'F', 191), +(70984, 'Melodie', 1954, 'F', 191), +(70985, 'Robert', 1954, 'F', 191), +(70986, 'Tommie', 1954, 'F', 191), +(70987, 'Celestine', 1954, 'F', 190), +(70988, 'Lauri', 1954, 'F', 190), +(70989, 'Addie', 1954, 'F', 189), +(70990, 'Freida', 1954, 'F', 189), +(70991, 'May', 1954, 'F', 189), +(70992, 'Aileen', 1954, 'F', 188), +(70993, 'Jodie', 1954, 'F', 188), +(70994, 'Mavis', 1954, 'F', 188), +(70995, 'Katheryn', 1954, 'F', 187), +(70996, 'Mollie', 1954, 'F', 187), +(70997, 'Kris', 1954, 'F', 186), +(70998, 'Millie', 1954, 'F', 186), +(70999, 'Deirdre', 1954, 'F', 185), +(71000, 'John', 1954, 'F', 185), +(71001, 'Minerva', 1954, 'F', 185), +(71002, 'Luz', 1954, 'F', 184), +(71003, 'Valeria', 1954, 'F', 184), +(71004, 'Mercedes', 1954, 'F', 183), +(71005, 'Leta', 1954, 'F', 182), +(71006, 'Leola', 1954, 'F', 181), +(71007, 'Cheryle', 1954, 'F', 180), +(71008, 'Maribeth', 1954, 'F', 179), +(71009, 'Alexis', 1954, 'F', 177), +(71010, 'Twila', 1954, 'F', 177), +(71011, 'Lorelei', 1954, 'F', 176), +(71012, 'Mara', 1954, 'F', 176), +(71013, 'Erin', 1954, 'F', 175), +(71014, 'Rachelle', 1954, 'F', 175), +(71015, 'Jacklyn', 1954, 'F', 174), +(71016, 'Bethany', 1954, 'F', 173), +(71017, 'Mabel', 1954, 'F', 173), +(71018, 'Peggie', 1954, 'F', 173), +(71019, 'Opal', 1954, 'F', 171), +(71020, 'Graciela', 1954, 'F', 169), +(71021, 'Lorena', 1954, 'F', 169), +(71022, 'Portia', 1954, 'F', 169), +(71023, 'Deena', 1954, 'F', 168), +(71024, 'Mickey', 1954, 'F', 168), +(71025, 'Reva', 1954, 'F', 168), +(71026, 'Aurora', 1954, 'F', 167), +(71027, 'Danielle', 1954, 'F', 167), +(71028, 'Deann', 1954, 'F', 167), +(71029, 'Ola', 1954, 'F', 167), +(71030, 'Alexandra', 1954, 'F', 166), +(71031, 'Elissa', 1954, 'F', 165), +(71032, 'Donita', 1954, 'F', 164), +(71033, 'Sherryl', 1954, 'F', 164), +(71034, 'Vonda', 1954, 'F', 164), +(71035, 'Cecile', 1954, 'F', 163), +(71036, 'Eddie', 1954, 'F', 163), +(71037, 'Reta', 1954, 'F', 163), +(71038, 'Rowena', 1954, 'F', 162), +(71039, 'Retha', 1954, 'F', 161), +(71040, 'Esperanza', 1954, 'F', 160), +(71041, 'Janna', 1954, 'F', 160), +(71042, 'Rosanna', 1954, 'F', 160), +(71043, 'Tricia', 1954, 'F', 160), +(71044, 'Trina', 1954, 'F', 160), +(71045, 'Carleen', 1954, 'F', 159), +(71046, 'Kyle', 1954, 'F', 158), +(71047, 'Roseanne', 1954, 'F', 158), +(71048, 'Delilah', 1954, 'F', 157), +(71049, 'Karyn', 1954, 'F', 157), +(71050, 'Letha', 1954, 'F', 157), +(71051, 'Ophelia', 1954, 'F', 157), +(71052, 'Georgina', 1954, 'F', 156), +(71053, 'Goldie', 1954, 'F', 155), +(71054, 'Lesa', 1954, 'F', 155), +(71055, 'Raquel', 1954, 'F', 155), +(71056, 'Libby', 1954, 'F', 154), +(71057, 'Tana', 1954, 'F', 154), +(71058, 'David', 1954, 'F', 153), +(71059, 'Dian', 1954, 'F', 153), +(71060, 'Hannah', 1954, 'F', 153), +(71061, 'Jacquline', 1954, 'F', 153), +(71062, 'Jewell', 1954, 'F', 153), +(71063, 'Josefina', 1954, 'F', 153), +(71064, 'Rosario', 1954, 'F', 153), +(71065, 'Bonny', 1954, 'F', 152), +(71066, 'Earline', 1954, 'F', 152), +(71067, 'Janeen', 1954, 'F', 152), +(71068, 'Megan', 1954, 'F', 152), +(71069, 'Charleen', 1954, 'F', 151), +(71070, 'Fran', 1954, 'F', 151), +(71071, 'Kimberlee', 1954, 'F', 151), +(71072, 'Evangeline', 1954, 'F', 150), +(71073, 'Juliana', 1954, 'F', 150), +(71074, 'Lorri', 1954, 'F', 150), +(71075, 'Marlys', 1954, 'F', 150), +(71076, 'Marybeth', 1954, 'F', 150), +(71077, 'Susanna', 1954, 'F', 150), +(71078, 'Louisa', 1954, 'F', 149), +(71079, 'Pamella', 1954, 'F', 149), +(71080, 'Abigail', 1954, 'F', 148), +(71081, 'Elyse', 1954, 'F', 148), +(71082, 'Margery', 1954, 'F', 148), +(71083, 'Rachael', 1954, 'F', 148), +(71084, 'Ronnie', 1954, 'F', 148), +(71085, 'Shirlene', 1954, 'F', 147), +(71086, 'Teressa', 1954, 'F', 147), +(71087, 'Angeline', 1954, 'F', 145), +(71088, 'Charla', 1954, 'F', 145), +(71089, 'Dottie', 1954, 'F', 145), +(71090, 'Effie', 1954, 'F', 145), +(71091, 'Camilla', 1954, 'F', 144), +(71092, 'Lily', 1954, 'F', 144), +(71093, 'Cleo', 1954, 'F', 143), +(71094, 'Elnora', 1954, 'F', 143), +(71095, 'Meryl', 1954, 'F', 143), +(71096, 'Sydney', 1954, 'F', 143), +(71097, 'Danette', 1954, 'F', 142), +(71098, 'Erica', 1954, 'F', 142), +(71099, 'Carmela', 1954, 'F', 141), +(71100, 'Ester', 1954, 'F', 141), +(71101, 'Joellen', 1954, 'F', 141), +(71102, 'Lucretia', 1954, 'F', 141), +(71103, 'Catharine', 1954, 'F', 140), +(71104, 'Frieda', 1954, 'F', 140), +(71105, 'Alana', 1954, 'F', 139), +(71106, 'Consuelo', 1954, 'F', 139), +(71107, 'Delphine', 1954, 'F', 139), +(71108, 'Lavern', 1954, 'F', 139), +(71109, 'Louella', 1954, 'F', 139), +(71110, 'Sabrina', 1954, 'F', 139), +(71111, 'Alisa', 1954, 'F', 138), +(71112, 'Jerilyn', 1954, 'F', 138), +(71113, 'Merle', 1954, 'F', 138), +(71114, 'Mimi', 1954, 'F', 138), +(71115, 'Silvia', 1954, 'F', 137), +(71116, 'Carey', 1954, 'F', 136), +(71117, 'Dollie', 1954, 'F', 136), +(71118, 'Freddie', 1954, 'F', 136), +(71119, 'Laurene', 1954, 'F', 136), +(71120, 'Lona', 1954, 'F', 136), +(71121, 'Valinda', 1954, 'F', 136), +(71122, 'Virgie', 1954, 'F', 136), +(71123, 'Lauretta', 1954, 'F', 135), +(71124, 'Barbra', 1954, 'F', 134), +(71125, 'Christi', 1954, 'F', 134), +(71126, 'Dina', 1954, 'F', 133), +(71127, 'Lilly', 1954, 'F', 133), +(71128, 'Bobby', 1954, 'F', 132), +(71129, 'Caryl', 1954, 'F', 132), +(71130, 'Jacque', 1954, 'F', 132), +(71131, 'Juana', 1954, 'F', 132), +(71132, 'Lourdes', 1954, 'F', 132), +(71133, 'Milagros', 1954, 'F', 132), +(71134, 'Cathrine', 1954, 'F', 131), +(71135, 'Joette', 1954, 'F', 130), +(71136, 'Phoebe', 1954, 'F', 130), +(71137, 'Velda', 1954, 'F', 130), +(71138, 'William', 1954, 'F', 130), +(71139, 'Angelita', 1954, 'F', 129), +(71140, 'Dorinda', 1954, 'F', 129), +(71141, 'Lizabeth', 1954, 'F', 129), +(71142, 'Sherie', 1954, 'F', 129), +(71143, 'Concetta', 1954, 'F', 128), +(71144, 'Daryl', 1954, 'F', 128), +(71145, 'Veda', 1954, 'F', 128), +(71146, 'Alyce', 1954, 'F', 127), +(71147, 'Charles', 1954, 'F', 127), +(71148, 'Clarissa', 1954, 'F', 127), +(71149, 'Marci', 1954, 'F', 127), +(71150, 'Carmella', 1954, 'F', 126), +(71151, 'Juliet', 1954, 'F', 126), +(71152, 'Rosita', 1954, 'F', 126), +(71153, 'Vernell', 1954, 'F', 126), +(71154, 'Cassie', 1954, 'F', 125), +(71155, 'Joanie', 1954, 'F', 125), +(71156, 'Leanna', 1954, 'F', 125), +(71157, 'Marita', 1954, 'F', 125), +(71158, 'Sharen', 1954, 'F', 125), +(71159, 'Susana', 1954, 'F', 125), +(71160, 'Cara', 1954, 'F', 124), +(71161, 'Jacquelin', 1954, 'F', 124), +(71162, 'Joleen', 1954, 'F', 124), +(71163, 'Venita', 1954, 'F', 124), +(71164, 'Carlotta', 1954, 'F', 123), +(71165, 'Hollis', 1954, 'F', 123), +(71166, 'Kari', 1954, 'F', 123), +(71167, 'Madeleine', 1954, 'F', 123), +(71168, 'Nedra', 1954, 'F', 123), +(71169, 'Odessa', 1954, 'F', 123), +(71170, 'Pennie', 1954, 'F', 123), +(71171, 'Darleen', 1954, 'F', 122), +(71172, 'Jerrie', 1954, 'F', 122), +(71173, 'Magdalena', 1954, 'F', 122), +(71174, 'Marleen', 1954, 'F', 122), +(71175, 'Starla', 1954, 'F', 122), +(71176, 'Suzann', 1954, 'F', 122), +(71177, 'Daria', 1954, 'F', 121), +(71178, 'Esmeralda', 1954, 'F', 121), +(71179, 'Gerri', 1954, 'F', 121), +(71180, 'Lindy', 1954, 'F', 121), +(71181, 'Nicki', 1954, 'F', 121), +(71182, 'Adela', 1954, 'F', 120), +(71183, 'Annetta', 1954, 'F', 120), +(71184, 'Evon', 1954, 'F', 120), +(71185, 'Jann', 1954, 'F', 120), +(71186, 'Lawanda', 1954, 'F', 120), +(71187, 'Leslee', 1954, 'F', 120), +(71188, 'Merri', 1954, 'F', 120), +(71189, 'Zelma', 1954, 'F', 120), +(71190, 'Evonne', 1954, 'F', 119), +(71191, 'Roxane', 1954, 'F', 119), +(71192, 'Ursula', 1954, 'F', 119), +(71193, 'Imogene', 1954, 'F', 118), +(71194, 'Lelia', 1954, 'F', 118), +(71195, 'Millicent', 1954, 'F', 118), +(71196, 'Shellie', 1954, 'F', 118), +(71197, 'Suellen', 1954, 'F', 118), +(71198, 'Zoe', 1954, 'F', 118), +(71199, 'Bernita', 1954, 'F', 117), +(71200, 'Lise', 1954, 'F', 117), +(71201, 'Martina', 1954, 'F', 117), +(71202, 'Twyla', 1954, 'F', 117), +(71203, 'Cindi', 1954, 'F', 116), +(71204, 'Hilary', 1954, 'F', 116), +(71205, 'Kerri', 1954, 'F', 116), +(71206, 'Lolita', 1954, 'F', 116), +(71207, 'Karan', 1954, 'F', 115), +(71208, 'Letitia', 1954, 'F', 115), +(71209, 'Alta', 1954, 'F', 114), +(71210, 'Caron', 1954, 'F', 114), +(71211, 'Elma', 1954, 'F', 114), +(71212, 'Gerry', 1954, 'F', 114), +(71213, 'Leeann', 1954, 'F', 114), +(71214, 'Maryjane', 1954, 'F', 114), +(71215, 'Ronna', 1954, 'F', 114), +(71216, 'Kendra', 1954, 'F', 113), +(71217, 'Margret', 1954, 'F', 113), +(71218, 'Matilda', 1954, 'F', 113), +(71219, 'Oralia', 1954, 'F', 113), +(71220, 'Allyson', 1954, 'F', 112), +(71221, 'Delma', 1954, 'F', 112), +(71222, 'Nannette', 1954, 'F', 112), +(71223, 'Rhea', 1954, 'F', 112), +(71224, 'Sophia', 1954, 'F', 112), +(71225, 'Vernita', 1954, 'F', 112), +(71226, 'Joetta', 1954, 'F', 111), +(71227, 'Judi', 1954, 'F', 111), +(71228, 'Cherri', 1954, 'F', 110), +(71229, 'Nicole', 1954, 'F', 110), +(71230, 'Romona', 1954, 'F', 110), +(71231, 'Callie', 1954, 'F', 109), +(71232, 'Carolina', 1954, 'F', 109), +(71233, 'Carolynn', 1954, 'F', 109), +(71234, 'Christa', 1954, 'F', 109), +(71235, 'Lani', 1954, 'F', 109), +(71236, 'Nell', 1954, 'F', 109), +(71237, 'Tonia', 1954, 'F', 109), +(71238, 'Treva', 1954, 'F', 109), +(71239, 'Abby', 1954, 'F', 108), +(71240, 'Beryl', 1954, 'F', 108), +(71241, 'Corliss', 1954, 'F', 108), +(71242, 'Joycelyn', 1954, 'F', 108), +(71243, 'Teena', 1954, 'F', 108), +(71244, 'Amber', 1954, 'F', 107), +(71245, 'Marianna', 1954, 'F', 107), +(71246, 'Rosann', 1954, 'F', 107), +(71247, 'Zelda', 1954, 'F', 107), +(71248, 'Jenifer', 1954, 'F', 106), +(71249, 'Richard', 1954, 'F', 106), +(71250, 'Sophie', 1954, 'F', 106), +(71251, 'Donnie', 1954, 'F', 105), +(71252, 'Margot', 1954, 'F', 105), +(71253, 'Renita', 1954, 'F', 105), +(71254, 'Aimee', 1954, 'F', 104), +(71255, 'Bambi', 1954, 'F', 104), +(71256, 'Claudine', 1954, 'F', 104), +(71257, 'Kathyrn', 1954, 'F', 104), +(71258, 'Linnea', 1954, 'F', 104), +(71259, 'Lonnie', 1954, 'F', 104), +(71260, 'Marlena', 1954, 'F', 104), +(71261, 'Nena', 1954, 'F', 104), +(71262, 'Selma', 1954, 'F', 104), +(71263, 'George', 1954, 'F', 103), +(71264, 'Ginny', 1954, 'F', 103), +(71265, 'Glinda', 1954, 'F', 103), +(71266, 'Jannette', 1954, 'F', 103), +(71267, 'Kate', 1954, 'F', 103), +(71268, 'Loreen', 1954, 'F', 103), +(71269, 'Pamelia', 1954, 'F', 103), +(71270, 'Petra', 1954, 'F', 103), +(71271, 'Starr', 1954, 'F', 103), +(71272, 'Theodora', 1954, 'F', 103), +(71273, 'Winnie', 1954, 'F', 103), +(71274, 'Gwenda', 1954, 'F', 102), +(71275, 'Janel', 1954, 'F', 102), +(71276, 'Juliann', 1954, 'F', 102), +(71277, 'Brooke', 1954, 'F', 101), +(71278, 'Elouise', 1954, 'F', 101), +(71279, 'Estela', 1954, 'F', 101), +(71280, 'Francisca', 1954, 'F', 101), +(71281, 'Juliette', 1954, 'F', 101), +(71282, 'Kathaleen', 1954, 'F', 101), +(71283, 'Luella', 1954, 'F', 101), +(71284, 'Collette', 1954, 'F', 100), +(71285, 'Danna', 1954, 'F', 100), +(71286, 'Desiree', 1954, 'F', 100), +(71287, 'Merrie', 1954, 'F', 100), +(71288, 'Ofelia', 1954, 'F', 100), +(71289, 'Winona', 1954, 'F', 100), +(71290, 'Michael', 1954, 'M', 88485), +(71291, 'James', 1954, 'M', 86277), +(71292, 'Robert', 1954, 'M', 86258), +(71293, 'John', 1954, 'M', 81128), +(71294, 'David', 1954, 'M', 79528), +(71295, 'William', 1954, 'M', 61401), +(71296, 'Richard', 1954, 'M', 57007), +(71297, 'Thomas', 1954, 'M', 47131), +(71298, 'Gary', 1954, 'M', 37898), +(71299, 'Charles', 1954, 'M', 37437), +(71300, 'Steven', 1954, 'M', 36610), +(71301, 'Mark', 1954, 'M', 36196), +(71302, 'Joseph', 1954, 'M', 31206), +(71303, 'Donald', 1954, 'M', 29259), +(71304, 'Ronald', 1954, 'M', 27596), +(71305, 'Paul', 1954, 'M', 26218), +(71306, 'Kenneth', 1954, 'M', 26145), +(71307, 'Daniel', 1954, 'M', 25261), +(71308, 'Larry', 1954, 'M', 24582); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(71309, 'Stephen', 1954, 'M', 21869), +(71310, 'Dennis', 1954, 'M', 20747), +(71311, 'Edward', 1954, 'M', 19509), +(71312, 'Jeffrey', 1954, 'M', 19037), +(71313, 'George', 1954, 'M', 18683), +(71314, 'Gregory', 1954, 'M', 17605), +(71315, 'Timothy', 1954, 'M', 17425), +(71316, 'Terry', 1954, 'M', 15524), +(71317, 'Kevin', 1954, 'M', 15321), +(71318, 'Douglas', 1954, 'M', 14710), +(71319, 'Bruce', 1954, 'M', 14141), +(71320, 'Jerry', 1954, 'M', 13650), +(71321, 'Anthony', 1954, 'M', 13132), +(71322, 'Randy', 1954, 'M', 12630), +(71323, 'Roger', 1954, 'M', 11696), +(71324, 'Raymond', 1954, 'M', 11249), +(71325, 'Frank', 1954, 'M', 10992), +(71326, 'Peter', 1954, 'M', 10073), +(71327, 'Patrick', 1954, 'M', 9905), +(71328, 'Lawrence', 1954, 'M', 9603), +(71329, 'Scott', 1954, 'M', 9456), +(71330, 'Wayne', 1954, 'M', 9159), +(71331, 'Danny', 1954, 'M', 9086), +(71332, 'Alan', 1954, 'M', 8706), +(71333, 'Gerald', 1954, 'M', 8535), +(71334, 'Keith', 1954, 'M', 8355), +(71335, 'Ricky', 1954, 'M', 8146), +(71336, 'Carl', 1954, 'M', 8134), +(71337, 'Brian', 1954, 'M', 8084), +(71338, 'Walter', 1954, 'M', 7477), +(71339, 'Dale', 1954, 'M', 7445), +(71340, 'Craig', 1954, 'M', 7184), +(71341, 'Arthur', 1954, 'M', 6856), +(71342, 'Willie', 1954, 'M', 6837), +(71343, 'Johnny', 1954, 'M', 6595), +(71344, 'Randall', 1954, 'M', 6533), +(71345, 'Roy', 1954, 'M', 6495), +(71346, 'Jack', 1954, 'M', 6464), +(71347, 'Stanley', 1954, 'M', 6432), +(71348, 'Henry', 1954, 'M', 6395), +(71349, 'Harold', 1954, 'M', 6334), +(71350, 'Ralph', 1954, 'M', 6298), +(71351, 'Philip', 1954, 'M', 6277), +(71352, 'Glenn', 1954, 'M', 6236), +(71353, 'Christopher', 1954, 'M', 6072), +(71354, 'Billy', 1954, 'M', 6038), +(71355, 'Rodney', 1954, 'M', 5964), +(71356, 'Joe', 1954, 'M', 5859), +(71357, 'Barry', 1954, 'M', 5827), +(71358, 'Russell', 1954, 'M', 5763), +(71359, 'Andrew', 1954, 'M', 5654), +(71360, 'Samuel', 1954, 'M', 5634), +(71361, 'Bobby', 1954, 'M', 5490), +(71362, 'Albert', 1954, 'M', 5444), +(71363, 'Jimmy', 1954, 'M', 5333), +(71364, 'Phillip', 1954, 'M', 5148), +(71365, 'Steve', 1954, 'M', 5057), +(71366, 'Eugene', 1954, 'M', 5020), +(71367, 'Ronnie', 1954, 'M', 4978), +(71368, 'Martin', 1954, 'M', 4972), +(71369, 'Howard', 1954, 'M', 4927), +(71370, 'Louis', 1954, 'M', 4846), +(71371, 'Allen', 1954, 'M', 4821), +(71372, 'Frederick', 1954, 'M', 4737), +(71373, 'Curtis', 1954, 'M', 4595), +(71374, 'Leonard', 1954, 'M', 4494), +(71375, 'Harry', 1954, 'M', 4358), +(71376, 'Micheal', 1954, 'M', 4193), +(71377, 'Ernest', 1954, 'M', 4189), +(71378, 'Eric', 1954, 'M', 4171), +(71379, 'Jeffery', 1954, 'M', 3935), +(71380, 'Eddie', 1954, 'M', 3767), +(71381, 'Melvin', 1954, 'M', 3708), +(71382, 'Fred', 1954, 'M', 3698), +(71383, 'Francis', 1954, 'M', 3690), +(71384, 'Darrell', 1954, 'M', 3639), +(71385, 'Lee', 1954, 'M', 3562), +(71386, 'Marvin', 1954, 'M', 3497), +(71387, 'Earl', 1954, 'M', 3422), +(71388, 'Norman', 1954, 'M', 3409), +(71389, 'Tommy', 1954, 'M', 3408), +(71390, 'Rick', 1954, 'M', 3369), +(71391, 'Jay', 1954, 'M', 3368), +(71392, 'Victor', 1954, 'M', 3365), +(71393, 'Vincent', 1954, 'M', 3353), +(71394, 'Tony', 1954, 'M', 3340), +(71395, 'Bradley', 1954, 'M', 3232), +(71396, 'Jose', 1954, 'M', 3225), +(71397, 'Clarence', 1954, 'M', 3177), +(71398, 'Dean', 1954, 'M', 3169), +(71399, 'Kim', 1954, 'M', 3163), +(71400, 'Jon', 1954, 'M', 3153), +(71401, 'Clifford', 1954, 'M', 3138), +(71402, 'Rickey', 1954, 'M', 3124), +(71403, 'Jerome', 1954, 'M', 3101), +(71404, 'Theodore', 1954, 'M', 3071), +(71405, 'Alfred', 1954, 'M', 3047), +(71406, 'Calvin', 1954, 'M', 3003), +(71407, 'Ray', 1954, 'M', 2975), +(71408, 'Jesse', 1954, 'M', 2758), +(71409, 'Don', 1954, 'M', 2744), +(71410, 'Jonathan', 1954, 'M', 2740), +(71411, 'Gordon', 1954, 'M', 2734), +(71412, 'Bernard', 1954, 'M', 2726), +(71413, 'Matthew', 1954, 'M', 2683), +(71414, 'Leroy', 1954, 'M', 2633), +(71415, 'Warren', 1954, 'M', 2613), +(71416, 'Joel', 1954, 'M', 2594), +(71417, 'Herbert', 1954, 'M', 2588), +(71418, 'Edwin', 1954, 'M', 2548), +(71419, 'Mike', 1954, 'M', 2500), +(71420, 'Glen', 1954, 'M', 2492), +(71421, 'Benjamin', 1954, 'M', 2450), +(71422, 'Marc', 1954, 'M', 2399), +(71423, 'Nicholas', 1954, 'M', 2371), +(71424, 'Alvin', 1954, 'M', 2369), +(71425, 'Duane', 1954, 'M', 2319), +(71426, 'Leslie', 1954, 'M', 2228), +(71427, 'Garry', 1954, 'M', 2216), +(71428, 'Dan', 1954, 'M', 2160), +(71429, 'Mitchell', 1954, 'M', 2137), +(71430, 'Leon', 1954, 'M', 2135), +(71431, 'Lloyd', 1954, 'M', 2120), +(71432, 'Vernon', 1954, 'M', 2097), +(71433, 'Guy', 1954, 'M', 2094), +(71434, 'Dwight', 1954, 'M', 2037), +(71435, 'Lonnie', 1954, 'M', 1966), +(71436, 'Allan', 1954, 'M', 1956), +(71437, 'Jackie', 1954, 'M', 1956), +(71438, 'Neil', 1954, 'M', 1956), +(71439, 'Gilbert', 1954, 'M', 1954), +(71440, 'Gene', 1954, 'M', 1902), +(71441, 'Floyd', 1954, 'M', 1870), +(71442, 'Juan', 1954, 'M', 1867), +(71443, 'Brad', 1954, 'M', 1851), +(71444, 'Wesley', 1954, 'M', 1845), +(71445, 'Lewis', 1954, 'M', 1832), +(71446, 'Franklin', 1954, 'M', 1822), +(71447, 'Reginald', 1954, 'M', 1806), +(71448, 'Chris', 1954, 'M', 1794), +(71449, 'Robin', 1954, 'M', 1789), +(71450, 'Clyde', 1954, 'M', 1774), +(71451, 'Donnie', 1954, 'M', 1766), +(71452, 'Randolph', 1954, 'M', 1764), +(71453, 'Lester', 1954, 'M', 1756), +(71454, 'Karl', 1954, 'M', 1743), +(71455, 'Dana', 1954, 'M', 1738), +(71456, 'Kent', 1954, 'M', 1724), +(71457, 'Kurt', 1954, 'M', 1693), +(71458, 'Manuel', 1954, 'M', 1683), +(71459, 'Kerry', 1954, 'M', 1659), +(71460, 'Jimmie', 1954, 'M', 1616), +(71461, 'Carlos', 1954, 'M', 1612), +(71462, 'Leo', 1954, 'M', 1604), +(71463, 'Jim', 1954, 'M', 1593), +(71464, 'Milton', 1954, 'M', 1582), +(71465, 'Bill', 1954, 'M', 1526), +(71466, 'Gerard', 1954, 'M', 1518), +(71467, 'Freddie', 1954, 'M', 1495), +(71468, 'Stuart', 1954, 'M', 1492), +(71469, 'Daryl', 1954, 'M', 1467), +(71470, 'Harvey', 1954, 'M', 1457), +(71471, 'Charlie', 1954, 'M', 1451), +(71472, 'Johnnie', 1954, 'M', 1443), +(71473, 'Terrence', 1954, 'M', 1443), +(71474, 'Chester', 1954, 'M', 1419), +(71475, 'Lynn', 1954, 'M', 1417), +(71476, 'Herman', 1954, 'M', 1412), +(71477, 'Tom', 1954, 'M', 1387), +(71478, 'Rex', 1954, 'M', 1377), +(71479, 'Kirk', 1954, 'M', 1373), +(71480, 'Ted', 1954, 'M', 1339), +(71481, 'Darryl', 1954, 'M', 1332), +(71482, 'Roland', 1954, 'M', 1322), +(71483, 'Cecil', 1954, 'M', 1302), +(71484, 'Todd', 1954, 'M', 1290), +(71485, 'Arnold', 1954, 'M', 1282), +(71486, 'Oscar', 1954, 'M', 1270), +(71487, 'Ruben', 1954, 'M', 1259), +(71488, 'Perry', 1954, 'M', 1255), +(71489, 'Alexander', 1954, 'M', 1237), +(71490, 'Fredrick', 1954, 'M', 1235), +(71491, 'Bryan', 1954, 'M', 1229), +(71492, 'Brent', 1954, 'M', 1228), +(71493, 'Nathaniel', 1954, 'M', 1227), +(71494, 'Maurice', 1954, 'M', 1226), +(71495, 'Tyrone', 1954, 'M', 1222), +(71496, 'Antonio', 1954, 'M', 1161), +(71497, 'Claude', 1954, 'M', 1146), +(71498, 'Terrance', 1954, 'M', 1121), +(71499, 'Marshall', 1954, 'M', 1098), +(71500, 'Ricardo', 1954, 'M', 1093), +(71501, 'Neal', 1954, 'M', 1082), +(71502, 'Mario', 1954, 'M', 1073), +(71503, 'Byron', 1954, 'M', 1046), +(71504, 'Clifton', 1954, 'M', 1040), +(71505, 'Sidney', 1954, 'M', 1021), +(71506, 'Luis', 1954, 'M', 1019), +(71507, 'Rickie', 1954, 'M', 1005), +(71508, 'Ross', 1954, 'M', 1001), +(71509, 'Jessie', 1954, 'M', 993), +(71510, 'Jeff', 1954, 'M', 977), +(71511, 'Wallace', 1954, 'M', 977), +(71512, 'Aaron', 1954, 'M', 974), +(71513, 'Nathan', 1954, 'M', 960), +(71514, 'Kelly', 1954, 'M', 959), +(71515, 'Greg', 1954, 'M', 955), +(71516, 'Wendell', 1954, 'M', 952), +(71517, 'Gregg', 1954, 'M', 942), +(71518, 'Hugh', 1954, 'M', 941), +(71519, 'Nelson', 1954, 'M', 940), +(71520, 'Lance', 1954, 'M', 919), +(71521, 'Morris', 1954, 'M', 917), +(71522, 'Benny', 1954, 'M', 910), +(71523, 'Edgar', 1954, 'M', 908), +(71524, 'Marcus', 1954, 'M', 897), +(71525, 'Randal', 1954, 'M', 896), +(71526, 'Lyle', 1954, 'M', 889), +(71527, 'Sam', 1954, 'M', 872), +(71528, 'Clayton', 1954, 'M', 845), +(71529, 'Carlton', 1954, 'M', 834), +(71530, 'Dave', 1954, 'M', 831), +(71531, 'Marion', 1954, 'M', 828), +(71532, 'Francisco', 1954, 'M', 825), +(71533, 'Tim', 1954, 'M', 813), +(71534, 'Clinton', 1954, 'M', 790), +(71535, 'Jesus', 1954, 'M', 788), +(71536, 'Rocky', 1954, 'M', 785), +(71537, 'Raul', 1954, 'M', 780), +(71538, 'Bradford', 1954, 'M', 771), +(71539, 'Earnest', 1954, 'M', 771), +(71540, 'Jan', 1954, 'M', 769), +(71541, 'Sammy', 1954, 'M', 769), +(71542, 'Roberto', 1954, 'M', 762), +(71543, 'Everett', 1954, 'M', 755), +(71544, 'Wade', 1954, 'M', 755), +(71545, 'Ben', 1954, 'M', 754), +(71546, 'Otis', 1954, 'M', 751), +(71547, 'Bennie', 1954, 'M', 746), +(71548, 'Virgil', 1954, 'M', 744), +(71549, 'Alex', 1954, 'M', 742), +(71550, 'Max', 1954, 'M', 742), +(71551, 'Clark', 1954, 'M', 718), +(71552, 'Laurence', 1954, 'M', 710), +(71553, 'Andre', 1954, 'M', 708), +(71554, 'Ira', 1954, 'M', 708), +(71555, 'Frankie', 1954, 'M', 701), +(71556, 'Troy', 1954, 'M', 696), +(71557, 'Bob', 1954, 'M', 695), +(71558, 'Loren', 1954, 'M', 685), +(71559, 'Willard', 1954, 'M', 675), +(71560, 'Luther', 1954, 'M', 671), +(71561, 'Rudy', 1954, 'M', 671), +(71562, 'Elmer', 1954, 'M', 669), +(71563, 'Geoffrey', 1954, 'M', 666), +(71564, 'Terence', 1954, 'M', 659), +(71565, 'Rudolph', 1954, 'M', 653), +(71566, 'Hector', 1954, 'M', 644), +(71567, 'Salvatore', 1954, 'M', 637), +(71568, 'Sylvester', 1954, 'M', 635), +(71569, 'Myron', 1954, 'M', 634), +(71570, 'Rodger', 1954, 'M', 624), +(71571, 'Grant', 1954, 'M', 623), +(71572, 'Ramon', 1954, 'M', 619), +(71573, 'Horace', 1954, 'M', 612), +(71574, 'Darrel', 1954, 'M', 609), +(71575, 'Edmund', 1954, 'M', 609), +(71576, 'Miguel', 1954, 'M', 609), +(71577, 'Roosevelt', 1954, 'M', 609), +(71578, 'Delbert', 1954, 'M', 603), +(71579, 'Pedro', 1954, 'M', 601), +(71580, 'Alton', 1954, 'M', 595), +(71581, 'Malcolm', 1954, 'M', 592), +(71582, 'Julius', 1954, 'M', 588), +(71583, 'Stewart', 1954, 'M', 588), +(71584, 'Mickey', 1954, 'M', 583), +(71585, 'Isaac', 1954, 'M', 581), +(71586, 'Fernando', 1954, 'M', 577), +(71587, 'Roderick', 1954, 'M', 574), +(71588, 'Angelo', 1954, 'M', 572), +(71589, 'Van', 1954, 'M', 572), +(71590, 'Kenny', 1954, 'M', 570), +(71591, 'Monte', 1954, 'M', 570), +(71592, 'Denis', 1954, 'M', 569), +(71593, 'Armando', 1954, 'M', 568), +(71594, 'Felix', 1954, 'M', 563), +(71595, 'Jacob', 1954, 'M', 561), +(71596, 'Sherman', 1954, 'M', 557), +(71597, 'Unknown', 1954, 'M', 548), +(71598, 'Archie', 1954, 'M', 542), +(71599, 'Dwayne', 1954, 'M', 537), +(71600, 'Oliver', 1954, 'M', 535), +(71601, 'Tommie', 1954, 'M', 529), +(71602, 'Lorenzo', 1954, 'M', 524), +(71603, 'Stephan', 1954, 'M', 524), +(71604, 'Doyle', 1954, 'M', 514), +(71605, 'Leland', 1954, 'M', 514), +(71606, 'Wilbert', 1954, 'M', 513), +(71607, 'Hubert', 1954, 'M', 512), +(71608, 'Derrick', 1954, 'M', 510), +(71609, 'Cary', 1954, 'M', 509), +(71610, 'Jerald', 1954, 'M', 506), +(71611, 'Andy', 1954, 'M', 501), +(71612, 'Forrest', 1954, 'M', 501), +(71613, 'Joey', 1954, 'M', 500), +(71614, 'Rene', 1954, 'M', 498), +(71615, 'Ivan', 1954, 'M', 497), +(71616, 'Jeffry', 1954, 'M', 497), +(71617, 'Pete', 1954, 'M', 495), +(71618, 'Julian', 1954, 'M', 492), +(71619, 'Preston', 1954, 'M', 484), +(71620, 'Rufus', 1954, 'M', 474), +(71621, 'Teddy', 1954, 'M', 472), +(71622, 'Lowell', 1954, 'M', 470), +(71623, 'Homer', 1954, 'M', 456), +(71624, 'Mack', 1954, 'M', 455), +(71625, 'Ervin', 1954, 'M', 450), +(71626, 'Tracy', 1954, 'M', 442), +(71627, 'Willis', 1954, 'M', 442), +(71628, 'Kelvin', 1954, 'M', 441), +(71629, 'Angel', 1954, 'M', 437), +(71630, 'Dirk', 1954, 'M', 436), +(71631, 'Nick', 1954, 'M', 430), +(71632, 'Brett', 1954, 'M', 429), +(71633, 'Carroll', 1954, 'M', 429), +(71634, 'Shawn', 1954, 'M', 429), +(71635, 'Wilbur', 1954, 'M', 429), +(71636, 'Grady', 1954, 'M', 424), +(71637, 'Marty', 1954, 'M', 422), +(71638, 'Rafael', 1954, 'M', 421), +(71639, 'Hal', 1954, 'M', 417), +(71640, 'Arturo', 1954, 'M', 414), +(71641, 'Sean', 1954, 'M', 413), +(71642, 'Alfonso', 1954, 'M', 410), +(71643, 'Alfredo', 1954, 'M', 409), +(71644, 'Sheldon', 1954, 'M', 409), +(71645, 'Conrad', 1954, 'M', 405), +(71646, 'Freddy', 1954, 'M', 405), +(71647, 'Dallas', 1954, 'M', 404), +(71648, 'Owen', 1954, 'M', 404), +(71649, 'Ron', 1954, 'M', 402), +(71650, 'Carey', 1954, 'M', 401), +(71651, 'Kyle', 1954, 'M', 400), +(71652, 'Derek', 1954, 'M', 395), +(71653, 'Dewey', 1954, 'M', 392), +(71654, 'Ellis', 1954, 'M', 381), +(71655, 'Alonzo', 1954, 'M', 372), +(71656, 'Adrian', 1954, 'M', 368), +(71657, 'Ken', 1954, 'M', 368), +(71658, 'Percy', 1954, 'M', 364), +(71659, 'Royce', 1954, 'M', 364), +(71660, 'Sammie', 1954, 'M', 363), +(71661, 'Travis', 1954, 'M', 361), +(71662, 'Shane', 1954, 'M', 357), +(71663, 'Dominic', 1954, 'M', 356), +(71664, 'Garland', 1954, 'M', 356), +(71665, 'Miles', 1954, 'M', 355), +(71666, 'Monty', 1954, 'M', 355), +(71667, 'Lionel', 1954, 'M', 354), +(71668, 'Christian', 1954, 'M', 352), +(71669, 'Noel', 1954, 'M', 351), +(71670, 'Elbert', 1954, 'M', 350), +(71671, 'Irvin', 1954, 'M', 350), +(71672, 'Bert', 1954, 'M', 348), +(71673, 'Jorge', 1954, 'M', 348), +(71674, 'Jerrold', 1954, 'M', 345), +(71675, 'Rodolfo', 1954, 'M', 341), +(71676, 'Guadalupe', 1954, 'M', 340), +(71677, 'Boyd', 1954, 'M', 339), +(71678, 'Clay', 1954, 'M', 339), +(71679, 'Aubrey', 1954, 'M', 338), +(71680, 'Marlin', 1954, 'M', 338), +(71681, 'Gerry', 1954, 'M', 334), +(71682, 'Wilson', 1954, 'M', 334), +(71683, 'Cornelius', 1954, 'M', 333), +(71684, 'Buddy', 1954, 'M', 329), +(71685, 'Alberto', 1954, 'M', 328), +(71686, 'Dexter', 1954, 'M', 328), +(71687, 'Blaine', 1954, 'M', 326), +(71688, 'Kirby', 1954, 'M', 326), +(71689, 'Cleveland', 1954, 'M', 321), +(71690, 'Darwin', 1954, 'M', 321), +(71691, 'Louie', 1954, 'M', 315), +(71692, 'Ronny', 1954, 'M', 315), +(71693, 'Dominick', 1954, 'M', 314), +(71694, 'Al', 1954, 'M', 311), +(71695, 'Curt', 1954, 'M', 311), +(71696, 'Pat', 1954, 'M', 311), +(71697, 'Stevie', 1954, 'M', 309), +(71698, 'Galen', 1954, 'M', 307), +(71699, 'Salvador', 1954, 'M', 307), +(71700, 'Jason', 1954, 'M', 306), +(71701, 'Edmond', 1954, 'M', 305), +(71702, 'Merle', 1954, 'M', 304), +(71703, 'Abraham', 1954, 'M', 303), +(71704, 'Woodrow', 1954, 'M', 303), +(71705, 'Rory', 1954, 'M', 295), +(71706, 'Darnell', 1954, 'M', 293), +(71707, 'Elton', 1954, 'M', 293), +(71708, 'Jaime', 1954, 'M', 293), +(71709, 'Spencer', 1954, 'M', 293), +(71710, 'Dewayne', 1954, 'M', 292), +(71711, 'Gabriel', 1954, 'M', 288), +(71712, 'Lamar', 1954, 'M', 287), +(71713, 'Murray', 1954, 'M', 287), +(71714, 'Christophe', 1954, 'M', 286), +(71715, 'Evan', 1954, 'M', 286), +(71716, 'Emmett', 1954, 'M', 283), +(71717, 'Adam', 1954, 'M', 282), +(71718, 'Dane', 1954, 'M', 282), +(71719, 'Amos', 1954, 'M', 281), +(71720, 'Enrique', 1954, 'M', 281), +(71721, 'Vance', 1954, 'M', 280), +(71722, 'Joesph', 1954, 'M', 278), +(71723, 'Blake', 1954, 'M', 277), +(71724, 'Donny', 1954, 'M', 276), +(71725, 'Orlando', 1954, 'M', 276), +(71726, 'Alphonso', 1954, 'M', 275), +(71727, 'Blair', 1954, 'M', 275), +(71728, 'Eldon', 1954, 'M', 274), +(71729, 'Harlan', 1954, 'M', 273), +(71730, 'Ernie', 1954, 'M', 272), +(71731, 'Winston', 1954, 'M', 272), +(71732, 'Moses', 1954, 'M', 270), +(71733, 'Garth', 1954, 'M', 268), +(71734, 'Sandy', 1954, 'M', 268), +(71735, 'Junior', 1954, 'M', 263), +(71736, 'Barney', 1954, 'M', 260), +(71737, 'Drew', 1954, 'M', 260), +(71738, 'Ned', 1954, 'M', 260), +(71739, 'Elliott', 1954, 'M', 259), +(71740, 'Thaddeus', 1954, 'M', 256), +(71741, 'Elijah', 1954, 'M', 255), +(71742, 'Wilfred', 1954, 'M', 255), +(71743, 'Gale', 1954, 'M', 253), +(71744, 'Jamie', 1954, 'M', 253), +(71745, 'Linwood', 1954, 'M', 252), +(71746, 'Reed', 1954, 'M', 252), +(71747, 'Sterling', 1954, 'M', 252), +(71748, 'Timmy', 1954, 'M', 249), +(71749, 'Irving', 1954, 'M', 247), +(71750, 'Julio', 1954, 'M', 247), +(71751, 'Colin', 1954, 'M', 245), +(71752, 'Javier', 1954, 'M', 245), +(71753, 'Jess', 1954, 'M', 245), +(71754, 'Billie', 1954, 'M', 244), +(71755, 'Norris', 1954, 'M', 244), +(71756, 'Orville', 1954, 'M', 244), +(71757, 'Harley', 1954, 'M', 243), +(71758, 'Lanny', 1954, 'M', 240), +(71759, 'Michel', 1954, 'M', 240), +(71760, 'Austin', 1954, 'M', 238), +(71761, 'Phil', 1954, 'M', 237), +(71762, 'Vaughn', 1954, 'M', 237), +(71763, 'Casey', 1954, 'M', 236), +(71764, 'Ernesto', 1954, 'M', 235), +(71765, 'Lamont', 1954, 'M', 231), +(71766, 'Randell', 1954, 'M', 230), +(71767, 'Lon', 1954, 'M', 229), +(71768, 'Ramiro', 1954, 'M', 227), +(71769, 'Frederic', 1954, 'M', 226), +(71770, 'Robbie', 1954, 'M', 225), +(71771, 'Simon', 1954, 'M', 225), +(71772, 'Abel', 1954, 'M', 224), +(71773, 'Cedric', 1954, 'M', 224), +(71774, 'Sanford', 1954, 'M', 223), +(71775, 'Emanuel', 1954, 'M', 220), +(71776, 'Denny', 1954, 'M', 219), +(71777, 'Erik', 1954, 'M', 219), +(71778, 'Kermit', 1954, 'M', 219), +(71779, 'Reynaldo', 1954, 'M', 219), +(71780, 'Seth', 1954, 'M', 218), +(71781, 'Dannie', 1954, 'M', 217), +(71782, 'Grover', 1954, 'M', 217), +(71783, 'Kendall', 1954, 'M', 217), +(71784, 'Eddy', 1954, 'M', 216), +(71785, 'Scot', 1954, 'M', 215), +(71786, 'Carmen', 1954, 'M', 214), +(71787, 'Levi', 1954, 'M', 214), +(71788, 'Damon', 1954, 'M', 213), +(71789, 'Jasper', 1954, 'M', 211), +(71790, 'Justin', 1954, 'M', 211), +(71791, 'Vern', 1954, 'M', 208), +(71792, 'Will', 1954, 'M', 207), +(71793, 'Marlon', 1954, 'M', 206), +(71794, 'Nolan', 1954, 'M', 206), +(71795, 'Rusty', 1954, 'M', 206), +(71796, 'Cornell', 1954, 'M', 204), +(71797, 'Harrison', 1954, 'M', 204), +(71798, 'Rocco', 1954, 'M', 204), +(71799, 'Chad', 1954, 'M', 203), +(71800, 'Kris', 1954, 'M', 203), +(71801, 'Norbert', 1954, 'M', 203), +(71802, 'Danial', 1954, 'M', 202), +(71803, 'Jody', 1954, 'M', 201), +(71804, 'Zachary', 1954, 'M', 200), +(71805, 'Eduardo', 1954, 'M', 198), +(71806, 'Gus', 1954, 'M', 198), +(71807, 'Bart', 1954, 'M', 196), +(71808, 'Hollis', 1954, 'M', 196), +(71809, 'Luke', 1954, 'M', 196), +(71810, 'Dudley', 1954, 'M', 195), +(71811, 'Ward', 1954, 'M', 195), +(71812, 'Kennith', 1954, 'M', 194), +(71813, 'Terrell', 1954, 'M', 194), +(71814, 'August', 1954, 'M', 192), +(71815, 'Elwood', 1954, 'M', 192), +(71816, 'Loyd', 1954, 'M', 192), +(71817, 'Burton', 1954, 'M', 191), +(71818, 'Joshua', 1954, 'M', 190), +(71819, 'Carter', 1954, 'M', 189), +(71820, 'Pablo', 1954, 'M', 189), +(71821, 'Thurman', 1954, 'M', 187), +(71822, 'Stan', 1954, 'M', 186), +(71823, 'Bennett', 1954, 'M', 184), +(71824, 'Roscoe', 1954, 'M', 184), +(71825, 'Toby', 1954, 'M', 184), +(71826, 'Lane', 1954, 'M', 182), +(71827, 'Mathew', 1954, 'M', 182), +(71828, 'Reuben', 1954, 'M', 181), +(71829, 'Bryant', 1954, 'M', 180), +(71830, 'Elvin', 1954, 'M', 179), +(71831, 'Emil', 1954, 'M', 179), +(71832, 'Doug', 1954, 'M', 178), +(71833, 'Felipe', 1954, 'M', 178), +(71834, 'Millard', 1954, 'M', 178), +(71835, 'Morgan', 1954, 'M', 178), +(71836, 'Reid', 1954, 'M', 178), +(71837, 'Dwain', 1954, 'M', 177), +(71838, 'Jefferson', 1954, 'M', 177), +(71839, 'Odell', 1954, 'M', 176), +(71840, 'Roman', 1954, 'M', 175), +(71841, 'Erwin', 1954, 'M', 174), +(71842, 'Gilberto', 1954, 'M', 174), +(71843, 'Hank', 1954, 'M', 174), +(71844, 'Cameron', 1954, 'M', 173), +(71845, 'Fredric', 1954, 'M', 173), +(71846, 'Jake', 1954, 'M', 172), +(71847, 'Ulysses', 1954, 'M', 172), +(71848, 'Jeremiah', 1954, 'M', 171), +(71849, 'Emory', 1954, 'M', 170), +(71850, 'Pierre', 1954, 'M', 170), +(71851, 'Tomas', 1954, 'M', 170), +(71852, 'Garrett', 1954, 'M', 169), +(71853, 'Ian', 1954, 'M', 169), +(71854, 'Lindsey', 1954, 'M', 169), +(71855, 'Mary', 1954, 'M', 169), +(71856, 'Domingo', 1954, 'M', 168), +(71857, 'Donn', 1954, 'M', 168), +(71858, 'Russel', 1954, 'M', 168), +(71859, 'Ed', 1954, 'M', 167), +(71860, 'Solomon', 1954, 'M', 167), +(71861, 'Dick', 1954, 'M', 166), +(71862, 'Ivory', 1954, 'M', 166), +(71863, 'Jerold', 1954, 'M', 166), +(71864, 'Riley', 1954, 'M', 166), +(71865, 'Wiley', 1954, 'M', 166), +(71866, 'Ismael', 1954, 'M', 163), +(71867, 'Nicky', 1954, 'M', 163), +(71868, 'Elias', 1954, 'M', 162), +(71869, 'Elliot', 1954, 'M', 162), +(71870, 'Israel', 1954, 'M', 162), +(71871, 'Barton', 1954, 'M', 161), +(71872, 'Brandon', 1954, 'M', 161), +(71873, 'Jacky', 1954, 'M', 161), +(71874, 'Santos', 1954, 'M', 161), +(71875, 'Alejandro', 1954, 'M', 160), +(71876, 'Jean', 1954, 'M', 159), +(71877, 'Duncan', 1954, 'M', 158), +(71878, 'Bryce', 1954, 'M', 156), +(71879, 'Coy', 1954, 'M', 156), +(71880, 'Kenton', 1954, 'M', 156), +(71881, 'Mitchel', 1954, 'M', 156), +(71882, 'Sergio', 1954, 'M', 156), +(71883, 'Arlen', 1954, 'M', 155), +(71884, 'Lonny', 1954, 'M', 155), +(71885, 'Rolando', 1954, 'M', 155), +(71886, 'Delmar', 1954, 'M', 154), +(71887, 'Merrill', 1954, 'M', 153), +(71888, 'Shelby', 1954, 'M', 153), +(71889, 'Bobbie', 1954, 'M', 151), +(71890, 'Brady', 1954, 'M', 151), +(71891, 'Chuck', 1954, 'M', 150), +(71892, 'Corey', 1954, 'M', 150), +(71893, 'Merlin', 1954, 'M', 150), +(71894, 'Donnell', 1954, 'M', 149), +(71895, 'Guillermo', 1954, 'M', 149), +(71896, 'Otto', 1954, 'M', 149), +(71897, 'Geary', 1954, 'M', 148), +(71898, 'Davis', 1954, 'M', 147), +(71899, 'Rogelio', 1954, 'M', 147), +(71900, 'Val', 1954, 'M', 147), +(71901, 'Adolph', 1954, 'M', 146), +(71902, 'Bernie', 1954, 'M', 146), +(71903, 'Kimberly', 1954, 'M', 145), +(71904, 'Weldon', 1954, 'M', 144), +(71905, 'Winfred', 1954, 'M', 144), +(71906, 'Audie', 1954, 'M', 143), +(71907, 'Vito', 1954, 'M', 142), +(71908, 'Armand', 1954, 'M', 141), +(71909, 'Burt', 1954, 'M', 141), +(71910, 'Harris', 1954, 'M', 141), +(71911, 'Matt', 1954, 'M', 141), +(71912, 'Rod', 1954, 'M', 141), +(71913, 'Ricki', 1954, 'M', 140), +(71914, 'Scotty', 1954, 'M', 140), +(71915, 'Andres', 1954, 'M', 139), +(71916, 'Benito', 1954, 'M', 139), +(71917, 'Cory', 1954, 'M', 139), +(71918, 'Mikel', 1954, 'M', 139), +(71919, 'Carson', 1954, 'M', 138), +(71920, 'Clement', 1954, 'M', 137), +(71921, 'Ollie', 1954, 'M', 136), +(71922, 'Lenard', 1954, 'M', 135), +(71923, 'Ryan', 1954, 'M', 135), +(71924, 'Eli', 1954, 'M', 134), +(71925, 'Isaiah', 1954, 'M', 134), +(71926, 'Stanford', 1954, 'M', 134), +(71927, 'Emilio', 1954, 'M', 132), +(71928, 'Quentin', 1954, 'M', 132), +(71929, 'Rogers', 1954, 'M', 132), +(71930, 'Stacy', 1954, 'M', 132), +(71931, 'Jonathon', 1954, 'M', 131), +(71932, 'Noah', 1954, 'M', 131), +(71933, 'Maynard', 1954, 'M', 130), +(71934, 'Charley', 1954, 'M', 128), +(71935, 'Emery', 1954, 'M', 128), +(71936, 'Jed', 1954, 'M', 128), +(71937, 'Shelton', 1954, 'M', 128), +(71938, 'Sonny', 1954, 'M', 128), +(71939, 'Avery', 1954, 'M', 126), +(71940, 'Freeman', 1954, 'M', 126), +(71941, 'Cliff', 1954, 'M', 125), +(71942, 'Santiago', 1954, 'M', 124), +(71943, 'Del', 1954, 'M', 123), +(71944, 'Hiram', 1954, 'M', 123), +(71945, 'Shannon', 1954, 'M', 123), +(71946, 'Hans', 1954, 'M', 122), +(71947, 'Kip', 1954, 'M', 122), +(71948, 'Reggie', 1954, 'M', 122), +(71949, 'Ritchie', 1954, 'M', 122), +(71950, 'Saul', 1954, 'M', 122), +(71951, 'Anton', 1954, 'M', 121), +(71952, 'Irwin', 1954, 'M', 120), +(71953, 'Silas', 1954, 'M', 119), +(71954, 'Anderson', 1954, 'M', 118), +(71955, 'Tyler', 1954, 'M', 118), +(71956, 'Denver', 1954, 'M', 117), +(71957, 'Ignacio', 1954, 'M', 117), +(71958, 'Jackson', 1954, 'M', 117), +(71959, 'Douglass', 1954, 'M', 116), +(71960, 'Emerson', 1954, 'M', 116), +(71961, 'Linda', 1954, 'M', 116), +(71962, 'Everette', 1954, 'M', 115), +(71963, 'Johnie', 1954, 'M', 115), +(71964, 'Marco', 1954, 'M', 115), +(71965, 'Monroe', 1954, 'M', 115), +(71966, 'Stanton', 1954, 'M', 115), +(71967, 'Gerardo', 1954, 'M', 113), +(71968, 'Huey', 1954, 'M', 113), +(71969, 'Rob', 1954, 'M', 113), +(71970, 'Glynn', 1954, 'M', 112), +(71971, 'Gustavo', 1954, 'M', 112), +(71972, 'Major', 1954, 'M', 112), +(71973, 'Wilfredo', 1954, 'M', 112), +(71974, 'Basil', 1954, 'M', 111), +(71975, 'Dickie', 1954, 'M', 111), +(71976, 'Wilford', 1954, 'M', 111), +(71977, 'Connie', 1954, 'M', 110), +(71978, 'Randel', 1954, 'M', 110), +(71979, 'Raphael', 1954, 'M', 110), +(71980, 'Royal', 1954, 'M', 110), +(71981, 'Felton', 1954, 'M', 109), +(71982, 'Stevan', 1954, 'M', 109), +(71983, 'Gail', 1954, 'M', 108), +(71984, 'Jeremy', 1954, 'M', 108), +(71985, 'Jordan', 1954, 'M', 108), +(71986, 'Nickolas', 1954, 'M', 108), +(71987, 'Rand', 1954, 'M', 108), +(71988, 'Carmine', 1954, 'M', 107), +(71989, 'Efrain', 1954, 'M', 107), +(71990, 'Hershel', 1954, 'M', 107), +(71991, 'Kurtis', 1954, 'M', 107), +(71992, 'Laverne', 1954, 'M', 107), +(71993, 'Marcel', 1954, 'M', 107), +(71994, 'Mckinley', 1954, 'M', 107), +(71995, 'Nicolas', 1954, 'M', 107), +(71996, 'Tod', 1954, 'M', 107), +(71997, 'Xavier', 1954, 'M', 107), +(71998, 'Vince', 1954, 'M', 106), +(71999, 'Clair', 1954, 'M', 105), +(72000, 'Lemuel', 1954, 'M', 105), +(72001, 'Zane', 1954, 'M', 105), +(72002, 'Myles', 1954, 'M', 104), +(72003, 'Mervin', 1954, 'M', 103), +(72004, 'Napoleon', 1954, 'M', 103), +(72005, 'Dwaine', 1954, 'M', 102), +(72006, 'Forest', 1954, 'M', 102), +(72007, 'Brooks', 1954, 'M', 101), +(72008, 'Butch', 1954, 'M', 101), +(72009, 'Earle', 1954, 'M', 101), +(72010, 'Gil', 1954, 'M', 101), +(72011, 'Isiah', 1954, 'M', 101), +(72012, 'Patricia', 1954, 'M', 101), +(72013, 'Shaun', 1954, 'M', 101), +(72014, 'Mary', 1955, 'F', 63160), +(72015, 'Deborah', 1955, 'F', 52311), +(72016, 'Linda', 1955, 'F', 51275), +(72017, 'Debra', 1955, 'F', 50540), +(72018, 'Susan', 1955, 'F', 47391), +(72019, 'Patricia', 1955, 'F', 46206), +(72020, 'Barbara', 1955, 'F', 33589), +(72021, 'Karen', 1955, 'F', 33214), +(72022, 'Nancy', 1955, 'F', 30008), +(72023, 'Donna', 1955, 'F', 27938), +(72024, 'Cynthia', 1955, 'F', 27186), +(72025, 'Pamela', 1955, 'F', 26694), +(72026, 'Sandra', 1955, 'F', 25100), +(72027, 'Diane', 1955, 'F', 23288), +(72028, 'Sharon', 1955, 'F', 22047), +(72029, 'Carol', 1955, 'F', 22040), +(72030, 'Kathleen', 1955, 'F', 21999), +(72031, 'Brenda', 1955, 'F', 19120), +(72032, 'Cheryl', 1955, 'F', 19100), +(72033, 'Janet', 1955, 'F', 17916), +(72034, 'Elizabeth', 1955, 'F', 16687), +(72035, 'Kathy', 1955, 'F', 15323), +(72036, 'Denise', 1955, 'F', 14559), +(72037, 'Margaret', 1955, 'F', 14433), +(72038, 'Janice', 1955, 'F', 13171), +(72039, 'Teresa', 1955, 'F', 13123), +(72040, 'Rebecca', 1955, 'F', 12395), +(72041, 'Catherine', 1955, 'F', 11624), +(72042, 'Joyce', 1955, 'F', 11271), +(72043, 'Carolyn', 1955, 'F', 11171), +(72044, 'Judith', 1955, 'F', 10424), +(72045, 'Judy', 1955, 'F', 10367), +(72046, 'Robin', 1955, 'F', 10218), +(72047, 'Beverly', 1955, 'F', 9988), +(72048, 'Connie', 1955, 'F', 9973), +(72049, 'Betty', 1955, 'F', 9927), +(72050, 'Shirley', 1955, 'F', 9749), +(72051, 'Theresa', 1955, 'F', 9616), +(72052, 'Paula', 1955, 'F', 9585), +(72053, 'Christine', 1955, 'F', 9035), +(72054, 'Laura', 1955, 'F', 9011), +(72055, 'Gail', 1955, 'F', 8969), +(72056, 'Ann', 1955, 'F', 8909), +(72057, 'Cathy', 1955, 'F', 8655), +(72058, 'Bonnie', 1955, 'F', 8629), +(72059, 'Gloria', 1955, 'F', 8558), +(72060, 'Joan', 1955, 'F', 8553), +(72061, 'Lisa', 1955, 'F', 8537), +(72062, 'Marilyn', 1955, 'F', 8405), +(72063, 'Jane', 1955, 'F', 8332), +(72064, 'Peggy', 1955, 'F', 7983), +(72065, 'Vicki', 1955, 'F', 7979), +(72066, 'Martha', 1955, 'F', 7928), +(72067, 'Rose', 1955, 'F', 7854), +(72068, 'Diana', 1955, 'F', 7847), +(72069, 'Sherry', 1955, 'F', 7763), +(72070, 'Jo', 1955, 'F', 7663), +(72071, 'Sheila', 1955, 'F', 7662), +(72072, 'Kathryn', 1955, 'F', 7644), +(72073, 'Jean', 1955, 'F', 7481), +(72074, 'Wanda', 1955, 'F', 7414), +(72075, 'Lynn', 1955, 'F', 7351), +(72076, 'Debbie', 1955, 'F', 7246), +(72077, 'Katherine', 1955, 'F', 7242), +(72078, 'Dorothy', 1955, 'F', 7239), +(72079, 'Virginia', 1955, 'F', 6851), +(72080, 'Julie', 1955, 'F', 6782), +(72081, 'Vickie', 1955, 'F', 6639), +(72082, 'Maria', 1955, 'F', 6196), +(72083, 'Ruth', 1955, 'F', 6187), +(72084, 'Rhonda', 1955, 'F', 6165), +(72085, 'Rita', 1955, 'F', 6087), +(72086, 'Jacqueline', 1955, 'F', 6043), +(72087, 'Phyllis', 1955, 'F', 5688), +(72088, 'Kim', 1955, 'F', 5682), +(72089, 'Darlene', 1955, 'F', 5644), +(72090, 'Elaine', 1955, 'F', 5637), +(72091, 'Helen', 1955, 'F', 5597), +(72092, 'Cindy', 1955, 'F', 5590), +(72093, 'Valerie', 1955, 'F', 5509), +(72094, 'Ellen', 1955, 'F', 5474), +(72095, 'Victoria', 1955, 'F', 5354), +(72096, 'Terry', 1955, 'F', 5352), +(72097, 'Anne', 1955, 'F', 5212), +(72098, 'Terri', 1955, 'F', 5155), +(72099, 'Suzanne', 1955, 'F', 5131), +(72100, 'Alice', 1955, 'F', 5071), +(72101, 'Joanne', 1955, 'F', 4987), +(72102, 'Lori', 1955, 'F', 4973), +(72103, 'Laurie', 1955, 'F', 4952), +(72104, 'Wendy', 1955, 'F', 4950), +(72105, 'Marie', 1955, 'F', 4923), +(72106, 'Michele', 1955, 'F', 4766), +(72107, 'Anita', 1955, 'F', 4722), +(72108, 'Sally', 1955, 'F', 4686), +(72109, 'Frances', 1955, 'F', 4637), +(72110, 'Michelle', 1955, 'F', 4534), +(72111, 'Marcia', 1955, 'F', 4411), +(72112, 'Leslie', 1955, 'F', 4401), +(72113, 'Maureen', 1955, 'F', 4337), +(72114, 'Doris', 1955, 'F', 4240), +(72115, 'Jill', 1955, 'F', 4220), +(72116, 'Dawn', 1955, 'F', 4215), +(72117, 'Jennifer', 1955, 'F', 4127), +(72118, 'Anna', 1955, 'F', 4094), +(72119, 'Marsha', 1955, 'F', 4060), +(72120, 'Sylvia', 1955, 'F', 4001), +(72121, 'Sarah', 1955, 'F', 3983), +(72122, 'Angela', 1955, 'F', 3894), +(72123, 'Colleen', 1955, 'F', 3868), +(72124, 'Kimberly', 1955, 'F', 3862), +(72125, 'Evelyn', 1955, 'F', 3811), +(72126, 'Roberta', 1955, 'F', 3781), +(72127, 'Stephanie', 1955, 'F', 3757), +(72128, 'Jeanne', 1955, 'F', 3731), +(72129, 'Sue', 1955, 'F', 3724), +(72130, 'Renee', 1955, 'F', 3689), +(72131, 'Constance', 1955, 'F', 3661), +(72132, 'Yvonne', 1955, 'F', 3548), +(72133, 'Eileen', 1955, 'F', 3505), +(72134, 'Dianne', 1955, 'F', 3490), +(72135, 'Gwendolyn', 1955, 'F', 3456), +(72136, 'Loretta', 1955, 'F', 3430), +(72137, 'Lois', 1955, 'F', 3419), +(72138, 'Sheryl', 1955, 'F', 3410), +(72139, 'Lorraine', 1955, 'F', 3373), +(72140, 'Regina', 1955, 'F', 3373), +(72141, 'Glenda', 1955, 'F', 3341), +(72142, 'Charlotte', 1955, 'F', 3328), +(72143, 'Charlene', 1955, 'F', 3303), +(72144, 'Julia', 1955, 'F', 3285), +(72145, 'Tina', 1955, 'F', 3270), +(72146, 'Beth', 1955, 'F', 3269), +(72147, 'Amy', 1955, 'F', 3195), +(72148, 'Carla', 1955, 'F', 3065), +(72149, 'Joann', 1955, 'F', 2932), +(72150, 'Norma', 1955, 'F', 2931), +(72151, 'Jan', 1955, 'F', 2768), +(72152, 'Andrea', 1955, 'F', 2765), +(72153, 'Vanessa', 1955, 'F', 2694), +(72154, 'Melanie', 1955, 'F', 2655), +(72155, 'Marlene', 1955, 'F', 2569), +(72156, 'Audrey', 1955, 'F', 2554), +(72157, 'Holly', 1955, 'F', 2503), +(72158, 'Juanita', 1955, 'F', 2498), +(72159, 'Gayle', 1955, 'F', 2482), +(72160, 'Louise', 1955, 'F', 2431), +(72161, 'Irene', 1955, 'F', 2426), +(72162, 'Melissa', 1955, 'F', 2415), +(72163, 'Claudia', 1955, 'F', 2412), +(72164, 'Melinda', 1955, 'F', 2411), +(72165, 'Joy', 1955, 'F', 2388), +(72166, 'Jeanette', 1955, 'F', 2374), +(72167, 'Vivian', 1955, 'F', 2359), +(72168, 'Lynne', 1955, 'F', 2347), +(72169, 'Annette', 1955, 'F', 2344), +(72170, 'Kay', 1955, 'F', 2325), +(72171, 'Toni', 1955, 'F', 2322), +(72172, 'Vicky', 1955, 'F', 2305), +(72173, 'Annie', 1955, 'F', 2222), +(72174, 'Penny', 1955, 'F', 2210), +(72175, 'Geraldine', 1955, 'F', 2195), +(72176, 'Patti', 1955, 'F', 2174), +(72177, 'June', 1955, 'F', 2149), +(72178, 'Roxanne', 1955, 'F', 2093), +(72179, 'Debora', 1955, 'F', 2065), +(72180, 'Yolanda', 1955, 'F', 2054), +(72181, 'Carmen', 1955, 'F', 2048), +(72182, 'Rosa', 1955, 'F', 2044), +(72183, 'Belinda', 1955, 'F', 2034), +(72184, 'Patsy', 1955, 'F', 2011), +(72185, 'Rosemary', 1955, 'F', 2010), +(72186, 'Ruby', 1955, 'F', 2009), +(72187, 'Becky', 1955, 'F', 2004), +(72188, 'Arlene', 1955, 'F', 1979), +(72189, 'Sara', 1955, 'F', 1971), +(72190, 'Marjorie', 1955, 'F', 1970), +(72191, 'Lynda', 1955, 'F', 1883), +(72192, 'Gina', 1955, 'F', 1842), +(72193, 'Janis', 1955, 'F', 1839), +(72194, 'Shelia', 1955, 'F', 1834), +(72195, 'Lee', 1955, 'F', 1819), +(72196, 'Monica', 1955, 'F', 1813), +(72197, 'Christina', 1955, 'F', 1812), +(72198, 'Rachel', 1955, 'F', 1803), +(72199, 'Melody', 1955, 'F', 1801), +(72200, 'Jackie', 1955, 'F', 1797), +(72201, 'Delores', 1955, 'F', 1789), +(72202, 'Eva', 1955, 'F', 1785), +(72203, 'Dolores', 1955, 'F', 1780), +(72204, 'Marianne', 1955, 'F', 1747), +(72205, 'Shelley', 1955, 'F', 1734), +(72206, 'Marla', 1955, 'F', 1726), +(72207, 'Veronica', 1955, 'F', 1715), +(72208, 'Lillian', 1955, 'F', 1655), +(72209, 'Ramona', 1955, 'F', 1644), +(72210, 'Mildred', 1955, 'F', 1638), +(72211, 'Sherri', 1955, 'F', 1595), +(72212, 'Josephine', 1955, 'F', 1591), +(72213, 'Lydia', 1955, 'F', 1587), +(72214, 'Dana', 1955, 'F', 1570), +(72215, 'Esther', 1955, 'F', 1569), +(72216, 'Doreen', 1955, 'F', 1558), +(72217, 'Edna', 1955, 'F', 1523), +(72218, 'Edith', 1955, 'F', 1520), +(72219, 'Jody', 1955, 'F', 1508), +(72220, 'Jacquelyn', 1955, 'F', 1499), +(72221, 'Marian', 1955, 'F', 1497), +(72222, 'Janie', 1955, 'F', 1484), +(72223, 'Georgia', 1955, 'F', 1479), +(72224, 'Emma', 1955, 'F', 1456), +(72225, 'Joni', 1955, 'F', 1448), +(72226, 'Carole', 1955, 'F', 1428), +(72227, 'Candace', 1955, 'F', 1413), +(72228, 'Lucy', 1955, 'F', 1401), +(72229, 'Grace', 1955, 'F', 1387), +(72230, 'Dianna', 1955, 'F', 1385), +(72231, 'Teri', 1955, 'F', 1373), +(72232, 'Luann', 1955, 'F', 1356), +(72233, 'Nina', 1955, 'F', 1354), +(72234, 'Pauline', 1955, 'F', 1351), +(72235, 'Patty', 1955, 'F', 1330), +(72236, 'Emily', 1955, 'F', 1307), +(72237, 'Paulette', 1955, 'F', 1301), +(72238, 'Clara', 1955, 'F', 1298), +(72239, 'Priscilla', 1955, 'F', 1281), +(72240, 'Margie', 1955, 'F', 1277), +(72241, 'Sheree', 1955, 'F', 1268), +(72242, 'April', 1955, 'F', 1250), +(72243, 'Bonita', 1955, 'F', 1238), +(72244, 'Gladys', 1955, 'F', 1228), +(72245, 'Lou', 1955, 'F', 1227), +(72246, 'Carrie', 1955, 'F', 1213), +(72247, 'Karla', 1955, 'F', 1203), +(72248, 'Jayne', 1955, 'F', 1178), +(72249, 'Vera', 1955, 'F', 1168), +(72250, 'Bobbie', 1955, 'F', 1156), +(72251, 'Bertha', 1955, 'F', 1154), +(72252, 'Sherrie', 1955, 'F', 1153), +(72253, 'Marion', 1955, 'F', 1147), +(72254, 'Jamie', 1955, 'F', 1146), +(72255, 'Sheri', 1955, 'F', 1144), +(72256, 'Lucille', 1955, 'F', 1142), +(72257, 'Ella', 1955, 'F', 1125), +(72258, 'Sabrina', 1955, 'F', 1119), +(72259, 'Thelma', 1955, 'F', 1108), +(72260, 'Wilma', 1955, 'F', 1104), +(72261, 'Ethel', 1955, 'F', 1102), +(72262, 'Mona', 1955, 'F', 1095), +(72263, 'Billie', 1955, 'F', 1090), +(72264, 'Lynette', 1955, 'F', 1089), +(72265, 'Therese', 1955, 'F', 1076), +(72266, 'Deanna', 1955, 'F', 1069), +(72267, 'Maryann', 1955, 'F', 1068), +(72268, 'Bernice', 1955, 'F', 1047), +(72269, 'Eleanor', 1955, 'F', 1046), +(72270, 'Francine', 1955, 'F', 1045), +(72271, 'Nora', 1955, 'F', 1045), +(72272, 'Beatrice', 1955, 'F', 1033), +(72273, 'Rosie', 1955, 'F', 1031), +(72274, 'Gale', 1955, 'F', 1030), +(72275, 'Heidi', 1955, 'F', 1030), +(72276, 'Alicia', 1955, 'F', 1027), +(72277, 'Faye', 1955, 'F', 1027), +(72278, 'Miriam', 1955, 'F', 1027), +(72279, 'Patrice', 1955, 'F', 1010), +(72280, 'Cathleen', 1955, 'F', 1009), +(72281, 'Robyn', 1955, 'F', 1009), +(72282, 'Florence', 1955, 'F', 1004), +(72283, 'Cecilia', 1955, 'F', 1003), +(72284, 'Dale', 1955, 'F', 1001), +(72285, 'Jeannie', 1955, 'F', 994), +(72286, 'Kristine', 1955, 'F', 994), +(72287, 'Claire', 1955, 'F', 993), +(72288, 'Betsy', 1955, 'F', 984), +(72289, 'Laurel', 1955, 'F', 982), +(72290, 'Bernadette', 1955, 'F', 963), +(72291, 'Alma', 1955, 'F', 962), +(72292, 'Irma', 1955, 'F', 954), +(72293, 'Ida', 1955, 'F', 939), +(72294, 'Cheri', 1955, 'F', 938), +(72295, 'Tracy', 1955, 'F', 937), +(72296, 'Willie', 1955, 'F', 930), +(72297, 'Myra', 1955, 'F', 917), +(72298, 'Lillie', 1955, 'F', 914), +(72299, 'Dora', 1955, 'F', 910), +(72300, 'Hazel', 1955, 'F', 909), +(72301, 'Susie', 1955, 'F', 907), +(72302, 'Nadine', 1955, 'F', 902), +(72303, 'Iris', 1955, 'F', 889), +(72304, 'Crystal', 1955, 'F', 886), +(72305, 'Jeannette', 1955, 'F', 876), +(72306, 'Darla', 1955, 'F', 875), +(72307, 'Jana', 1955, 'F', 867), +(72308, 'Maxine', 1955, 'F', 867), +(72309, 'Terrie', 1955, 'F', 861), +(72310, 'Lauren', 1955, 'F', 856), +(72311, 'Trudy', 1955, 'F', 856), +(72312, 'Antoinette', 1955, 'F', 846), +(72313, 'Lucinda', 1955, 'F', 845), +(72314, 'Ginger', 1955, 'F', 844), +(72315, 'Jeri', 1955, 'F', 844), +(72316, 'Christy', 1955, 'F', 835), +(72317, 'Faith', 1955, 'F', 800), +(72318, 'Stella', 1955, 'F', 793), +(72319, 'Shelly', 1955, 'F', 787), +(72320, 'Kathie', 1955, 'F', 781), +(72321, 'Lana', 1955, 'F', 769), +(72322, 'Desiree', 1955, 'F', 767), +(72323, 'Rosemarie', 1955, 'F', 767), +(72324, 'Jenny', 1955, 'F', 758), +(72325, 'Sandy', 1955, 'F', 754), +(72326, 'Janine', 1955, 'F', 745), +(72327, 'Caroline', 1955, 'F', 744), +(72328, 'Jessie', 1955, 'F', 744), +(72329, 'Gwen', 1955, 'F', 740), +(72330, 'Lorna', 1955, 'F', 740), +(72331, 'Rochelle', 1955, 'F', 730), +(72332, 'Marguerite', 1955, 'F', 720), +(72333, 'Rosanne', 1955, 'F', 717), +(72334, 'Cassandra', 1955, 'F', 716), +(72335, 'Jennie', 1955, 'F', 711), +(72336, 'Celeste', 1955, 'F', 710), +(72337, 'Ronda', 1955, 'F', 696), +(72338, 'Tanya', 1955, 'F', 696), +(72339, 'Naomi', 1955, 'F', 695), +(72340, 'Harriet', 1955, 'F', 693), +(72341, 'Adrienne', 1955, 'F', 676), +(72342, 'Tamara', 1955, 'F', 670), +(72343, 'Janette', 1955, 'F', 665), +(72344, 'Hilda', 1955, 'F', 659), +(72345, 'Cecelia', 1955, 'F', 655), +(72346, 'Laverne', 1955, 'F', 655), +(72347, 'Marcella', 1955, 'F', 653), +(72348, 'Dixie', 1955, 'F', 649), +(72349, 'Shannon', 1955, 'F', 641), +(72350, 'Deloris', 1955, 'F', 635), +(72351, 'Velma', 1955, 'F', 635), +(72352, 'Lola', 1955, 'F', 634), +(72353, 'Mattie', 1955, 'F', 631), +(72354, 'Cherie', 1955, 'F', 628), +(72355, 'Susanne', 1955, 'F', 626), +(72356, 'Rosalie', 1955, 'F', 624), +(72357, 'Molly', 1955, 'F', 623), +(72358, 'Nanette', 1955, 'F', 621), +(72359, 'Verna', 1955, 'F', 616), +(72360, 'Kerry', 1955, 'F', 615), +(72361, 'Heather', 1955, 'F', 614), +(72362, 'Karin', 1955, 'F', 607), +(72363, 'Olivia', 1955, 'F', 607), +(72364, 'Madeline', 1955, 'F', 604), +(72365, 'Celia', 1955, 'F', 603), +(72366, 'Noreen', 1955, 'F', 602), +(72367, 'Olga', 1955, 'F', 602), +(72368, 'Johnnie', 1955, 'F', 595), +(72369, 'Leah', 1955, 'F', 593), +(72370, 'Della', 1955, 'F', 591), +(72371, 'Kristi', 1955, 'F', 591), +(72372, 'Sonia', 1955, 'F', 589), +(72373, 'Polly', 1955, 'F', 588), +(72374, 'Bridget', 1955, 'F', 585), +(72375, 'Lora', 1955, 'F', 583), +(72376, 'Candice', 1955, 'F', 577), +(72377, 'Mae', 1955, 'F', 577), +(72378, 'Cora', 1955, 'F', 576), +(72379, 'Guadalupe', 1955, 'F', 576), +(72380, 'Gretchen', 1955, 'F', 575), +(72381, 'Unknown', 1955, 'F', 564), +(72382, 'Yvette', 1955, 'F', 564), +(72383, 'Agnes', 1955, 'F', 563), +(72384, 'Lena', 1955, 'F', 558), +(72385, 'Geneva', 1955, 'F', 557), +(72386, 'Corinne', 1955, 'F', 556), +(72387, 'Margo', 1955, 'F', 555), +(72388, 'Hope', 1955, 'F', 551), +(72389, 'Margarita', 1955, 'F', 551), +(72390, 'Minnie', 1955, 'F', 549), +(72391, 'Luanne', 1955, 'F', 544), +(72392, 'Alison', 1955, 'F', 543), +(72393, 'Kelly', 1955, 'F', 540), +(72394, 'Bessie', 1955, 'F', 534), +(72395, 'Amelia', 1955, 'F', 532), +(72396, 'Jolene', 1955, 'F', 530), +(72397, 'Jeanine', 1955, 'F', 528), +(72398, 'Elsie', 1955, 'F', 527), +(72399, 'Nellie', 1955, 'F', 519), +(72400, 'Viola', 1955, 'F', 516), +(72401, 'Mindy', 1955, 'F', 509), +(72402, 'Leona', 1955, 'F', 508), +(72403, 'Ava', 1955, 'F', 507), +(72404, 'Freda', 1955, 'F', 506), +(72405, 'Camille', 1955, 'F', 505), +(72406, 'Ernestine', 1955, 'F', 503), +(72407, 'Daisy', 1955, 'F', 497), +(72408, 'Candy', 1955, 'F', 495), +(72409, 'Gay', 1955, 'F', 493), +(72410, 'Helene', 1955, 'F', 484), +(72411, 'Suzan', 1955, 'F', 483), +(72412, 'Christie', 1955, 'F', 482), +(72413, 'Alberta', 1955, 'F', 478), +(72414, 'Katie', 1955, 'F', 476), +(72415, 'Pam', 1955, 'F', 475), +(72416, 'Rena', 1955, 'F', 471), +(72417, 'Dena', 1955, 'F', 467), +(72418, 'Rene', 1955, 'F', 466), +(72419, 'Kristin', 1955, 'F', 463), +(72420, 'Pearl', 1955, 'F', 462), +(72421, 'Dee', 1955, 'F', 461), +(72422, 'Delia', 1955, 'F', 461), +(72423, 'Glenna', 1955, 'F', 461), +(72424, 'Diann', 1955, 'F', 460), +(72425, 'Leigh', 1955, 'F', 460), +(72426, 'Flora', 1955, 'F', 456), +(72427, 'Chris', 1955, 'F', 455), +(72428, 'Joanna', 1955, 'F', 455), +(72429, 'Amanda', 1955, 'F', 451), +(72430, 'Isabel', 1955, 'F', 450), +(72431, 'Shari', 1955, 'F', 447), +(72432, 'Reba', 1955, 'F', 444), +(72433, 'Sonja', 1955, 'F', 444), +(72434, 'Tracey', 1955, 'F', 444), +(72435, 'Jerri', 1955, 'F', 439), +(72436, 'Ada', 1955, 'F', 433), +(72437, 'Tara', 1955, 'F', 432), +(72438, 'Eunice', 1955, 'F', 431), +(72439, 'Gayla', 1955, 'F', 431), +(72440, 'Lenora', 1955, 'F', 428), +(72441, 'Myrna', 1955, 'F', 427), +(72442, 'Roxann', 1955, 'F', 425), +(72443, 'Mitzi', 1955, 'F', 424), +(72444, 'Rosalind', 1955, 'F', 423), +(72445, 'Rosalyn', 1955, 'F', 423), +(72446, 'Hattie', 1955, 'F', 421), +(72447, 'Marcy', 1955, 'F', 420), +(72448, 'Penelope', 1955, 'F', 419), +(72449, 'Dona', 1955, 'F', 418), +(72450, 'Janelle', 1955, 'F', 418), +(72451, 'Marta', 1955, 'F', 418), +(72452, 'Katharine', 1955, 'F', 417), +(72453, 'Jeannine', 1955, 'F', 416), +(72454, 'Denice', 1955, 'F', 415), +(72455, 'Lorrie', 1955, 'F', 414), +(72456, 'Elena', 1955, 'F', 411), +(72457, 'Violet', 1955, 'F', 408), +(72458, 'Elise', 1955, 'F', 407), +(72459, 'Melba', 1955, 'F', 405), +(72460, 'Natalie', 1955, 'F', 405), +(72461, 'Jeanie', 1955, 'F', 401), +(72462, 'Leticia', 1955, 'F', 401), +(72463, 'Tonya', 1955, 'F', 401), +(72464, 'Kathi', 1955, 'F', 398), +(72465, 'Randi', 1955, 'F', 396), +(72466, 'Robbie', 1955, 'F', 396), +(72467, 'Frankie', 1955, 'F', 395), +(72468, 'Henrietta', 1955, 'F', 395), +(72469, 'Nita', 1955, 'F', 395), +(72470, 'Shawn', 1955, 'F', 395), +(72471, 'Sondra', 1955, 'F', 388), +(72472, 'Ana', 1955, 'F', 387), +(72473, 'Jessica', 1955, 'F', 386), +(72474, 'Sallie', 1955, 'F', 384), +(72475, 'Debby', 1955, 'F', 383), +(72476, 'Jocelyn', 1955, 'F', 383), +(72477, 'Adele', 1955, 'F', 382), +(72478, 'Kimberley', 1955, 'F', 382), +(72479, 'Claudette', 1955, 'F', 378), +(72480, 'Stacey', 1955, 'F', 376), +(72481, 'Colette', 1955, 'F', 375), +(72482, 'Leann', 1955, 'F', 375), +(72483, 'Leanne', 1955, 'F', 375), +(72484, 'Jodi', 1955, 'F', 372), +(72485, 'Carlene', 1955, 'F', 371), +(72486, 'Lorene', 1955, 'F', 370), +(72487, 'Gertrude', 1955, 'F', 369), +(72488, 'Rae', 1955, 'F', 366), +(72489, 'Nelda', 1955, 'F', 361), +(72490, 'Pat', 1955, 'F', 359), +(72491, 'Roseann', 1955, 'F', 359), +(72492, 'Eugenia', 1955, 'F', 357), +(72493, 'Kristina', 1955, 'F', 357), +(72494, 'Lynnette', 1955, 'F', 357), +(72495, 'Erma', 1955, 'F', 356), +(72496, 'Lila', 1955, 'F', 355), +(72497, 'Rosetta', 1955, 'F', 355), +(72498, 'Lorie', 1955, 'F', 347), +(72499, 'Maggie', 1955, 'F', 347), +(72500, 'Dinah', 1955, 'F', 346), +(72501, 'Katrina', 1955, 'F', 346), +(72502, 'Kaye', 1955, 'F', 346), +(72503, 'Shelby', 1955, 'F', 345), +(72504, 'Charmaine', 1955, 'F', 343), +(72505, 'Lula', 1955, 'F', 343), +(72506, 'Mari', 1955, 'F', 343), +(72507, 'Fannie', 1955, 'F', 342), +(72508, 'Trina', 1955, 'F', 342), +(72509, 'Jacalyn', 1955, 'F', 341), +(72510, 'Sonya', 1955, 'F', 340), +(72511, 'Allison', 1955, 'F', 339), +(72512, 'Bette', 1955, 'F', 339), +(72513, 'Felicia', 1955, 'F', 339), +(72514, 'Sharron', 1955, 'F', 339), +(72515, 'Ladonna', 1955, 'F', 338), +(72516, 'Lea', 1955, 'F', 338), +(72517, 'Cathryn', 1955, 'F', 335), +(72518, 'Mamie', 1955, 'F', 333), +(72519, 'Merry', 1955, 'F', 333), +(72520, 'Eloise', 1955, 'F', 332), +(72521, 'Lesley', 1955, 'F', 332), +(72522, 'Valarie', 1955, 'F', 332), +(72523, 'Kristie', 1955, 'F', 330), +(72524, 'Antonia', 1955, 'F', 329), +(72525, 'Bobbi', 1955, 'F', 327), +(72526, 'Mable', 1955, 'F', 327), +(72527, 'Ilene', 1955, 'F', 324), +(72528, 'Gracie', 1955, 'F', 323), +(72529, 'Angie', 1955, 'F', 322), +(72530, 'Saundra', 1955, 'F', 320), +(72531, 'Clare', 1955, 'F', 319), +(72532, 'Earnestine', 1955, 'F', 315), +(72533, 'Benita', 1955, 'F', 314), +(72534, 'Myrtle', 1955, 'F', 314), +(72535, 'Dorothea', 1955, 'F', 311), +(72536, 'Estella', 1955, 'F', 310), +(72537, 'Inez', 1955, 'F', 310), +(72538, 'Ruthie', 1955, 'F', 310), +(72539, 'Robbin', 1955, 'F', 303), +(72540, 'Elisa', 1955, 'F', 302), +(72541, 'Stacy', 1955, 'F', 302), +(72542, 'Kimberlee', 1955, 'F', 301), +(72543, 'Kristy', 1955, 'F', 301), +(72544, 'Genevieve', 1955, 'F', 300), +(72545, 'Meredith', 1955, 'F', 300), +(72546, 'Melodie', 1955, 'F', 299), +(72547, 'Roslyn', 1955, 'F', 298), +(72548, 'Darcy', 1955, 'F', 297), +(72549, 'Roni', 1955, 'F', 295), +(72550, 'Debrah', 1955, 'F', 292), +(72551, 'Geralyn', 1955, 'F', 292), +(72552, 'Suzette', 1955, 'F', 292), +(72553, 'Coleen', 1955, 'F', 289), +(72554, 'Elsa', 1955, 'F', 289), +(72555, 'Lucia', 1955, 'F', 289), +(72556, 'Shauna', 1955, 'F', 289), +(72557, 'Julianne', 1955, 'F', 286), +(72558, 'Blanca', 1955, 'F', 285), +(72559, 'Caren', 1955, 'F', 283), +(72560, 'Bettie', 1955, 'F', 278), +(72561, 'Maryanne', 1955, 'F', 278), +(72562, 'Vickey', 1955, 'F', 277), +(72563, 'Lu', 1955, 'F', 275), +(72564, 'Maryellen', 1955, 'F', 270), +(72565, 'Kitty', 1955, 'F', 269), +(72566, 'Lyn', 1955, 'F', 268), +(72567, 'Earlene', 1955, 'F', 266), +(72568, 'Etta', 1955, 'F', 266), +(72569, 'Deana', 1955, 'F', 265), +(72570, 'Ivy', 1955, 'F', 265), +(72571, 'Jewel', 1955, 'F', 265), +(72572, 'Johanna', 1955, 'F', 265), +(72573, 'Fay', 1955, 'F', 264), +(72574, 'Kathrine', 1955, 'F', 264), +(72575, 'Malinda', 1955, 'F', 263), +(72576, 'Marilynn', 1955, 'F', 263), +(72577, 'Winifred', 1955, 'F', 263), +(72578, 'Kris', 1955, 'F', 261), +(72579, 'Debbra', 1955, 'F', 260), +(72580, 'Marva', 1955, 'F', 260), +(72581, 'Eve', 1955, 'F', 259), +(72582, 'Angelina', 1955, 'F', 258), +(72583, 'Bettye', 1955, 'F', 256), +(72584, 'Terese', 1955, 'F', 255), +(72585, 'Pamala', 1955, 'F', 254), +(72586, 'Valorie', 1955, 'F', 254), +(72587, 'Lenore', 1955, 'F', 253), +(72588, 'Nan', 1955, 'F', 253), +(72589, 'Cherry', 1955, 'F', 251), +(72590, 'Georgette', 1955, 'F', 251), +(72591, 'Michael', 1955, 'F', 251), +(72592, 'Althea', 1955, 'F', 249), +(72593, 'Daphne', 1955, 'F', 249), +(72594, 'Clarice', 1955, 'F', 248), +(72595, 'Elva', 1955, 'F', 247), +(72596, 'Geri', 1955, 'F', 247), +(72597, 'Jodie', 1955, 'F', 247), +(72598, 'Roxie', 1955, 'F', 247), +(72599, 'James', 1955, 'F', 246), +(72600, 'Muriel', 1955, 'F', 245), +(72601, 'Cheryle', 1955, 'F', 244), +(72602, 'Lela', 1955, 'F', 244), +(72603, 'Alfreda', 1955, 'F', 243), +(72604, 'Sharlene', 1955, 'F', 243), +(72605, 'Krista', 1955, 'F', 241), +(72606, 'Avis', 1955, 'F', 240), +(72607, 'Bonny', 1955, 'F', 240), +(72608, 'Dolly', 1955, 'F', 240), +(72609, 'Marietta', 1955, 'F', 240), +(72610, 'Delois', 1955, 'F', 239), +(72611, 'Rhoda', 1955, 'F', 238), +(72612, 'Beverley', 1955, 'F', 237), +(72613, 'Cathie', 1955, 'F', 237), +(72614, 'Greta', 1955, 'F', 237), +(72615, 'Roxane', 1955, 'F', 236), +(72616, 'Willa', 1955, 'F', 236), +(72617, 'Robert', 1955, 'F', 235), +(72618, 'Elvira', 1955, 'F', 233), +(72619, 'Lavonne', 1955, 'F', 233), +(72620, 'Teena', 1955, 'F', 233), +(72621, 'Sherrill', 1955, 'F', 232), +(72622, 'Arleen', 1955, 'F', 231), +(72623, 'Silvia', 1955, 'F', 231), +(72624, 'Elisabeth', 1955, 'F', 230), +(72625, 'Kristen', 1955, 'F', 230), +(72626, 'Janna', 1955, 'F', 229), +(72627, 'Sadie', 1955, 'F', 228), +(72628, 'Blanche', 1955, 'F', 227), +(72629, 'Patrica', 1955, 'F', 227), +(72630, 'Essie', 1955, 'F', 226), +(72631, 'Laureen', 1955, 'F', 226), +(72632, 'Ora', 1955, 'F', 226), +(72633, 'Ingrid', 1955, 'F', 225), +(72634, 'Angelia', 1955, 'F', 223), +(72635, 'Edwina', 1955, 'F', 223), +(72636, 'Josie', 1955, 'F', 223), +(72637, 'Pattie', 1955, 'F', 223), +(72638, 'Dorene', 1955, 'F', 222), +(72639, 'Jannie', 1955, 'F', 222), +(72640, 'Minerva', 1955, 'F', 221), +(72641, 'Lesa', 1955, 'F', 220), +(72642, 'Deena', 1955, 'F', 219), +(72643, 'Loraine', 1955, 'F', 219), +(72644, 'Jerry', 1955, 'F', 217), +(72645, 'Fern', 1955, 'F', 216), +(72646, 'Maura', 1955, 'F', 216), +(72647, 'Eula', 1955, 'F', 214), +(72648, 'Karol', 1955, 'F', 214), +(72649, 'Marilee', 1955, 'F', 214), +(72650, 'Bernadine', 1955, 'F', 212), +(72651, 'Madonna', 1955, 'F', 212), +(72652, 'Rosalinda', 1955, 'F', 212), +(72653, 'Marina', 1955, 'F', 211), +(72654, 'Marcie', 1955, 'F', 210), +(72655, 'Helena', 1955, 'F', 209), +(72656, 'Valeria', 1955, 'F', 209), +(72657, 'Aileen', 1955, 'F', 208), +(72658, 'Ina', 1955, 'F', 208), +(72659, 'Nettie', 1955, 'F', 208), +(72660, 'Roxanna', 1955, 'F', 208), +(72661, 'Deirdre', 1955, 'F', 207), +(72662, 'Ollie', 1955, 'F', 207), +(72663, 'Caryn', 1955, 'F', 206), +(72664, 'Corrine', 1955, 'F', 206), +(72665, 'Karon', 1955, 'F', 206), +(72666, 'Lauri', 1955, 'F', 206), +(72667, 'Twila', 1955, 'F', 206), +(72668, 'Nanci', 1955, 'F', 205), +(72669, 'Francis', 1955, 'F', 204), +(72670, 'Rebekah', 1955, 'F', 202), +(72671, 'Christi', 1955, 'F', 201), +(72672, 'Earline', 1955, 'F', 201), +(72673, 'Louann', 1955, 'F', 201), +(72674, 'Tommie', 1955, 'F', 201), +(72675, 'Luz', 1955, 'F', 200), +(72676, 'Janell', 1955, 'F', 199), +(72677, 'Megan', 1955, 'F', 199), +(72678, 'Nona', 1955, 'F', 198), +(72679, 'Sheilah', 1955, 'F', 198), +(72680, 'Deanne', 1955, 'F', 196), +(72681, 'Gaye', 1955, 'F', 196), +(72682, 'Nikki', 1955, 'F', 195), +(72683, 'Nola', 1955, 'F', 195), +(72684, 'Jimmie', 1955, 'F', 194), +(72685, 'Mabel', 1955, 'F', 194), +(72686, 'Gilda', 1955, 'F', 193), +(72687, 'Iva', 1955, 'F', 193), +(72688, 'Melva', 1955, 'F', 193), +(72689, 'Tena', 1955, 'F', 193), +(72690, 'Cinda', 1955, 'F', 191), +(72691, 'Pearlie', 1955, 'F', 191), +(72692, 'Tammy', 1955, 'F', 191), +(72693, 'Doretha', 1955, 'F', 190), +(72694, 'Randy', 1955, 'F', 190), +(72695, 'Sherryl', 1955, 'F', 189), +(72696, 'Dorthy', 1955, 'F', 188), +(72697, 'Lupe', 1955, 'F', 188), +(72698, 'Mariann', 1955, 'F', 187), +(72699, 'Danielle', 1955, 'F', 186), +(72700, 'John', 1955, 'F', 186), +(72701, 'Renae', 1955, 'F', 186), +(72702, 'Alisa', 1955, 'F', 185), +(72703, 'Madelyn', 1955, 'F', 185), +(72704, 'Opal', 1955, 'F', 185), +(72705, 'Estelle', 1955, 'F', 184), +(72706, 'Mollie', 1955, 'F', 184), +(72707, 'Harriett', 1955, 'F', 182), +(72708, 'Joe', 1955, 'F', 182), +(72709, 'May', 1955, 'F', 182), +(72710, 'Teressa', 1955, 'F', 182), +(72711, 'Abigail', 1955, 'F', 181), +(72712, 'Danette', 1955, 'F', 181), +(72713, 'Rachelle', 1955, 'F', 181), +(72714, 'Aurora', 1955, 'F', 180), +(72715, 'Charla', 1955, 'F', 180), +(72716, 'Millie', 1955, 'F', 180), +(72717, 'Neva', 1955, 'F', 180), +(72718, 'Queen', 1955, 'F', 180), +(72719, 'Katheryn', 1955, 'F', 179), +(72720, 'Lizzie', 1955, 'F', 178), +(72721, 'Sybil', 1955, 'F', 178), +(72722, 'Donita', 1955, 'F', 177), +(72723, 'Fran', 1955, 'F', 177), +(72724, 'Lavern', 1955, 'F', 177), +(72725, 'Leila', 1955, 'F', 177), +(72726, 'Athena', 1955, 'F', 176), +(72727, 'Cornelia', 1955, 'F', 176), +(72728, 'Erin', 1955, 'F', 175), +(72729, 'Alexis', 1955, 'F', 174), +(72730, 'Georgina', 1955, 'F', 174), +(72731, 'Lorri', 1955, 'F', 174), +(72732, 'Letha', 1955, 'F', 173), +(72733, 'Reta', 1955, 'F', 173), +(72734, 'Vikki', 1955, 'F', 173), +(72735, 'Elyse', 1955, 'F', 172), +(72736, 'Jewell', 1955, 'F', 172), +(72737, 'Mavis', 1955, 'F', 172), +(72738, 'Reva', 1955, 'F', 172), +(72739, 'Aida', 1955, 'F', 171), +(72740, 'Portia', 1955, 'F', 170), +(72741, 'Bethany', 1955, 'F', 169), +(72742, 'Freida', 1955, 'F', 169), +(72743, 'Kari', 1955, 'F', 169), +(72744, 'Addie', 1955, 'F', 168), +(72745, 'Lorena', 1955, 'F', 168), +(72746, 'Marylou', 1955, 'F', 168), +(72747, 'Vonda', 1955, 'F', 168), +(72748, 'Barbra', 1955, 'F', 166), +(72749, 'Joanie', 1955, 'F', 166), +(72750, 'Juliana', 1955, 'F', 166), +(72751, 'Retha', 1955, 'F', 166), +(72752, 'Annmarie', 1955, 'F', 165), +(72753, 'Roseanne', 1955, 'F', 165), +(72754, 'Carleen', 1955, 'F', 164), +(72755, 'Lily', 1955, 'F', 164), +(72756, 'Velda', 1955, 'F', 164), +(72757, 'Mara', 1955, 'F', 163), +(72758, 'Maribeth', 1955, 'F', 163), +(72759, 'Aleta', 1955, 'F', 162), +(72760, 'Cheryll', 1955, 'F', 162), +(72761, 'Celestine', 1955, 'F', 160), +(72762, 'Raquel', 1955, 'F', 160), +(72763, 'Renita', 1955, 'F', 160), +(72764, 'Alexandra', 1955, 'F', 159), +(72765, 'Cecile', 1955, 'F', 159), +(72766, 'Gena', 1955, 'F', 159), +(72767, 'Leola', 1955, 'F', 159), +(72768, 'Clarissa', 1955, 'F', 158), +(72769, 'Graciela', 1955, 'F', 158), +(72770, 'Maryjo', 1955, 'F', 158), +(72771, 'Mercedes', 1955, 'F', 158), +(72772, 'Jacklyn', 1955, 'F', 157), +(72773, 'Jacquline', 1955, 'F', 157), +(72774, 'Tonia', 1955, 'F', 157), +(72775, 'Camilla', 1955, 'F', 156), +(72776, 'Ester', 1955, 'F', 156), +(72777, 'Joycelyn', 1955, 'F', 156), +(72778, 'Karan', 1955, 'F', 156), +(72779, 'Ronnie', 1955, 'F', 156), +(72780, 'Cathrine', 1955, 'F', 155), +(72781, 'Eddie', 1955, 'F', 155), +(72782, 'Jeryl', 1955, 'F', 155), +(72783, 'Nannette', 1955, 'F', 155), +(72784, 'Peggie', 1955, 'F', 155), +(72785, 'Bambi', 1955, 'F', 154), +(72786, 'Cara', 1955, 'F', 154), +(72787, 'Effie', 1955, 'F', 154), +(72788, 'Alyce', 1955, 'F', 153), +(72789, 'Danita', 1955, 'F', 153), +(72790, 'Beulah', 1955, 'F', 152), +(72791, 'Leeann', 1955, 'F', 152), +(72792, 'Marybeth', 1955, 'F', 152), +(72793, 'Ronna', 1955, 'F', 152), +(72794, 'Sophia', 1955, 'F', 152), +(72795, 'Darleen', 1955, 'F', 151), +(72796, 'Deann', 1955, 'F', 151), +(72797, 'Karyn', 1955, 'F', 151), +(72798, 'Rosanna', 1955, 'F', 151), +(72799, 'Carmella', 1955, 'F', 150), +(72800, 'Christa', 1955, 'F', 149), +(72801, 'David', 1955, 'F', 149), +(72802, 'Dottie', 1955, 'F', 149), +(72803, 'Lottie', 1955, 'F', 149), +(72804, 'Carmela', 1955, 'F', 148), +(72805, 'Nedra', 1955, 'F', 148), +(72806, 'Romona', 1955, 'F', 148), +(72807, 'Charles', 1955, 'F', 147), +(72808, 'Cleo', 1955, 'F', 147), +(72809, 'Evangeline', 1955, 'F', 147), +(72810, 'Daryl', 1955, 'F', 146), +(72811, 'Delilah', 1955, 'F', 146), +(72812, 'Erica', 1955, 'F', 146), +(72813, 'Pamella', 1955, 'F', 146), +(72814, 'Louisa', 1955, 'F', 145), +(72815, 'Mimi', 1955, 'F', 145), +(72816, 'Sherie', 1955, 'F', 145); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(72817, 'Elissa', 1955, 'F', 144), +(72818, 'Esperanza', 1955, 'F', 144), +(72819, 'Freddie', 1955, 'F', 144), +(72820, 'Tricia', 1955, 'F', 144), +(72821, 'Ursula', 1955, 'F', 144), +(72822, 'Cathey', 1955, 'F', 143), +(72823, 'Leta', 1955, 'F', 143), +(72824, 'Lorelei', 1955, 'F', 143), +(72825, 'Lauretta', 1955, 'F', 142), +(72826, 'Lourdes', 1955, 'F', 142), +(72827, 'Lucretia', 1955, 'F', 142), +(72828, 'Catharine', 1955, 'F', 141), +(72829, 'Juana', 1955, 'F', 141), +(72830, 'Dian', 1955, 'F', 140), +(72831, 'Gisele', 1955, 'F', 140), +(72832, 'Lilly', 1955, 'F', 139), +(72833, 'Marci', 1955, 'F', 139), +(72834, 'Tana', 1955, 'F', 139), +(72835, 'Corliss', 1955, 'F', 138), +(72836, 'Hilary', 1955, 'F', 138), +(72837, 'Angeline', 1955, 'F', 137), +(72838, 'Margery', 1955, 'F', 137), +(72839, 'Rosario', 1955, 'F', 137), +(72840, 'Sherree', 1955, 'F', 137), +(72841, 'Susanna', 1955, 'F', 137), +(72842, 'Carey', 1955, 'F', 136), +(72843, 'Carmel', 1955, 'F', 136), +(72844, 'Gerri', 1955, 'F', 136), +(72845, 'Kendra', 1955, 'F', 136), +(72846, 'Mickey', 1955, 'F', 136), +(72847, 'Dorinda', 1955, 'F', 135), +(72848, 'Libby', 1955, 'F', 135), +(72849, 'Rosita', 1955, 'F', 135), +(72850, 'Thea', 1955, 'F', 135), +(72851, 'Hannah', 1955, 'F', 134), +(72852, 'Kyle', 1955, 'F', 134), +(72853, 'Rowena', 1955, 'F', 134), +(72854, 'Sydney', 1955, 'F', 134), +(72855, 'Callie', 1955, 'F', 133), +(72856, 'Dina', 1955, 'F', 133), +(72857, 'Frieda', 1955, 'F', 133), +(72858, 'Judi', 1955, 'F', 132), +(72859, 'Lizabeth', 1955, 'F', 132), +(72860, 'Magdalena', 1955, 'F', 132), +(72861, 'Noel', 1955, 'F', 132), +(72862, 'Rhea', 1955, 'F', 131), +(72863, 'Charleen', 1955, 'F', 130), +(72864, 'Consuelo', 1955, 'F', 130), +(72865, 'Ola', 1955, 'F', 130), +(72866, 'Amber', 1955, 'F', 129), +(72867, 'Corine', 1955, 'F', 129), +(72868, 'Deidre', 1955, 'F', 129), +(72869, 'Carlotta', 1955, 'F', 128), +(72870, 'Debi', 1955, 'F', 128), +(72871, 'Josefina', 1955, 'F', 128), +(72872, 'Kandy', 1955, 'F', 128), +(72873, 'Madeleine', 1955, 'F', 128), +(72874, 'Merri', 1955, 'F', 128), +(72875, 'Migdalia', 1955, 'F', 128), +(72876, 'Danna', 1955, 'F', 127), +(72877, 'Felecia', 1955, 'F', 127), +(72878, 'Glinda', 1955, 'F', 127), +(72879, 'Jacque', 1955, 'F', 127), +(72880, 'Delma', 1955, 'F', 126), +(72881, 'Goldie', 1955, 'F', 126), +(72882, 'Millicent', 1955, 'F', 126), +(72883, 'Richard', 1955, 'F', 126), +(72884, 'Meryl', 1955, 'F', 125), +(72885, 'Serena', 1955, 'F', 125), +(72886, 'Jann', 1955, 'F', 124), +(72887, 'Lelia', 1955, 'F', 124), +(72888, 'Shirlene', 1955, 'F', 124), +(72889, 'Venita', 1955, 'F', 124), +(72890, 'Dayna', 1955, 'F', 123), +(72891, 'Treva', 1955, 'F', 123), +(72892, 'Caron', 1955, 'F', 122), +(72893, 'Janeen', 1955, 'F', 122), +(72894, 'Juliet', 1955, 'F', 122), +(72895, 'Milagros', 1955, 'F', 122), +(72896, 'Debbi', 1955, 'F', 121), +(72897, 'Delphine', 1955, 'F', 121), +(72898, 'Eliza', 1955, 'F', 121), +(72899, 'Juliann', 1955, 'F', 121), +(72900, 'Matilda', 1955, 'F', 121), +(72901, 'Pennie', 1955, 'F', 121), +(72902, 'Twyla', 1955, 'F', 121), +(72903, 'Adela', 1955, 'F', 120), +(72904, 'Caryl', 1955, 'F', 120), +(72905, 'Kate', 1955, 'F', 120), +(72906, 'Lindy', 1955, 'F', 120), +(72907, 'Marita', 1955, 'F', 120), +(72908, 'Phoebe', 1955, 'F', 120), +(72909, 'Virgie', 1955, 'F', 120), +(72910, 'Zelda', 1955, 'F', 120), +(72911, 'Zoe', 1955, 'F', 120), +(72912, 'Alana', 1955, 'F', 119), +(72913, 'Debroah', 1955, 'F', 119), +(72914, 'Jerrie', 1955, 'F', 119), +(72915, 'Joellen', 1955, 'F', 119), +(72916, 'Nicole', 1955, 'F', 119), +(72917, 'Cindi', 1955, 'F', 118), +(72918, 'Larry', 1955, 'F', 118), +(72919, 'Letitia', 1955, 'F', 118), +(72920, 'Rona', 1955, 'F', 118), +(72921, 'Alta', 1955, 'F', 117), +(72922, 'Daria', 1955, 'F', 117), +(72923, 'Lise', 1955, 'F', 117), +(72924, 'Bobby', 1955, 'F', 116), +(72925, 'Elnora', 1955, 'F', 116), +(72926, 'Estela', 1955, 'F', 116), +(72927, 'Jaye', 1955, 'F', 116), +(72928, 'Joette', 1955, 'F', 116), +(72929, 'William', 1955, 'F', 116), +(72930, 'Leslee', 1955, 'F', 115), +(72931, 'Rachael', 1955, 'F', 115), +(72932, 'Dollie', 1955, 'F', 114), +(72933, 'Jerilyn', 1955, 'F', 114), +(72934, 'Lona', 1955, 'F', 114), +(72935, 'Margot', 1955, 'F', 114), +(72936, 'Merle', 1955, 'F', 114), +(72937, 'Vernell', 1955, 'F', 114), +(72938, 'Marlys', 1955, 'F', 113), +(72939, 'Sheron', 1955, 'F', 113), +(72940, 'Mickie', 1955, 'F', 112), +(72941, 'Monique', 1955, 'F', 112), +(72942, 'Ofelia', 1955, 'F', 112), +(72943, 'Ophelia', 1955, 'F', 112), +(72944, 'Selma', 1955, 'F', 112), +(72945, 'Sharen', 1955, 'F', 112), +(72946, 'Aletha', 1955, 'F', 111), +(72947, 'Beryl', 1955, 'F', 111), +(72948, 'Suellen', 1955, 'F', 111), +(72949, 'Suzann', 1955, 'F', 111), +(72950, 'Angelita', 1955, 'F', 110), +(72951, 'Annetta', 1955, 'F', 110), +(72952, 'Concetta', 1955, 'F', 110), +(72953, 'Esmeralda', 1955, 'F', 110), +(72954, 'Gerry', 1955, 'F', 110), +(72955, 'Hollis', 1955, 'F', 110), +(72956, 'Eartha', 1955, 'F', 109), +(72957, 'Joleen', 1955, 'F', 109), +(72958, 'Kerri', 1955, 'F', 109), +(72959, 'Lanette', 1955, 'F', 109), +(72960, 'Lolita', 1955, 'F', 109), +(72961, 'Marianna', 1955, 'F', 109), +(72962, 'Abby', 1955, 'F', 108), +(72963, 'George', 1955, 'F', 108), +(72964, 'Laurene', 1955, 'F', 108), +(72965, 'Antionette', 1955, 'F', 107), +(72966, 'Cherri', 1955, 'F', 107), +(72967, 'Dorcas', 1955, 'F', 107), +(72968, 'Maryjane', 1955, 'F', 107), +(72969, 'Oralia', 1955, 'F', 107), +(72970, 'Bennie', 1955, 'F', 106), +(72971, 'Francesca', 1955, 'F', 106), +(72972, 'Imogene', 1955, 'F', 106), +(72973, 'Jenifer', 1955, 'F', 106), +(72974, 'Justine', 1955, 'F', 106), +(72975, 'Nicki', 1955, 'F', 106), +(72976, 'Starla', 1955, 'F', 106), +(72977, 'Susana', 1955, 'F', 106), +(72978, 'Taryn', 1955, 'F', 106), +(72979, 'Aimee', 1955, 'F', 105), +(72980, 'Collette', 1955, 'F', 105), +(72981, 'Juliette', 1955, 'F', 105), +(72982, 'Lawanda', 1955, 'F', 105), +(72983, 'Leanna', 1955, 'F', 105), +(72984, 'Luella', 1955, 'F', 105), +(72985, 'Martina', 1955, 'F', 105), +(72986, 'Sophie', 1955, 'F', 105), +(72987, 'Tami', 1955, 'F', 105), +(72988, 'Zelma', 1955, 'F', 105), +(72989, 'Elma', 1955, 'F', 104), +(72990, 'Kathaleen', 1955, 'F', 104), +(72991, 'Lessie', 1955, 'F', 104), +(72992, 'Lorinda', 1955, 'F', 104), +(72993, 'Odessa', 1955, 'F', 104), +(72994, 'Paige', 1955, 'F', 104), +(72995, 'Vernita', 1955, 'F', 104), +(72996, 'Winona', 1955, 'F', 104), +(72997, 'Annemarie', 1955, 'F', 103), +(72998, 'Jannette', 1955, 'F', 103), +(72999, 'Linnea', 1955, 'F', 103), +(73000, 'Carolina', 1955, 'F', 102), +(73001, 'Cristina', 1955, 'F', 102), +(73002, 'Florine', 1955, 'F', 102), +(73003, 'Lonnie', 1955, 'F', 102), +(73004, 'Moira', 1955, 'F', 102), +(73005, 'Sandi', 1955, 'F', 102), +(73006, 'Trena', 1955, 'F', 102), +(73007, 'Cherrie', 1955, 'F', 101), +(73008, 'Louella', 1955, 'F', 101), +(73009, 'Melodee', 1955, 'F', 101), +(73010, 'Regenia', 1955, 'F', 101), +(73011, 'Sheryll', 1955, 'F', 101), +(73012, 'Margret', 1955, 'F', 100), +(73013, 'Noemi', 1955, 'F', 100), +(73014, 'Petra', 1955, 'F', 100), +(73015, 'Shellie', 1955, 'F', 100), +(73016, 'Theodora', 1955, 'F', 100), +(73017, 'Toby', 1955, 'F', 100), +(73018, 'Michael', 1955, 'M', 88283), +(73019, 'David', 1955, 'M', 86191), +(73020, 'James', 1955, 'M', 84130), +(73021, 'Robert', 1955, 'M', 83676), +(73022, 'John', 1955, 'M', 80018), +(73023, 'William', 1955, 'M', 59920), +(73024, 'Richard', 1955, 'M', 53523), +(73025, 'Thomas', 1955, 'M', 45807), +(73026, 'Mark', 1955, 'M', 42205), +(73027, 'Steven', 1955, 'M', 37797), +(73028, 'Charles', 1955, 'M', 35325), +(73029, 'Gary', 1955, 'M', 34393), +(73030, 'Joseph', 1955, 'M', 31587), +(73031, 'Donald', 1955, 'M', 27697), +(73032, 'Kenneth', 1955, 'M', 26730), +(73033, 'Paul', 1955, 'M', 26672), +(73034, 'Daniel', 1955, 'M', 26432), +(73035, 'Ronald', 1955, 'M', 26145), +(73036, 'Larry', 1955, 'M', 22821), +(73037, 'Jeffrey', 1955, 'M', 22505), +(73038, 'Stephen', 1955, 'M', 22109), +(73039, 'Timothy', 1955, 'M', 20730), +(73040, 'Dennis', 1955, 'M', 20399), +(73041, 'Gregory', 1955, 'M', 19794), +(73042, 'Edward', 1955, 'M', 19256), +(73043, 'George', 1955, 'M', 18153), +(73044, 'Kevin', 1955, 'M', 17144), +(73045, 'Terry', 1955, 'M', 15567), +(73046, 'Douglas', 1955, 'M', 15303), +(73047, 'Randy', 1955, 'M', 14950), +(73048, 'Anthony', 1955, 'M', 14158), +(73049, 'Bruce', 1955, 'M', 14074), +(73050, 'Jerry', 1955, 'M', 12974), +(73051, 'Frank', 1955, 'M', 11101), +(73052, 'Peter', 1955, 'M', 11009), +(73053, 'Raymond', 1955, 'M', 10987), +(73054, 'Roger', 1955, 'M', 10968), +(73055, 'Scott', 1955, 'M', 10768), +(73056, 'Keith', 1955, 'M', 10401), +(73057, 'Brian', 1955, 'M', 10106), +(73058, 'Patrick', 1955, 'M', 9866), +(73059, 'Lawrence', 1955, 'M', 9132), +(73060, 'Alan', 1955, 'M', 9027), +(73061, 'Wayne', 1955, 'M', 8717), +(73062, 'Danny', 1955, 'M', 8703), +(73063, 'Ricky', 1955, 'M', 8331), +(73064, 'Carl', 1955, 'M', 8292), +(73065, 'Gerald', 1955, 'M', 8068), +(73066, 'Christopher', 1955, 'M', 7897), +(73067, 'Craig', 1955, 'M', 7433), +(73068, 'Walter', 1955, 'M', 7292), +(73069, 'Dale', 1955, 'M', 7156), +(73070, 'Randall', 1955, 'M', 6681), +(73071, 'Willie', 1955, 'M', 6627), +(73072, 'Johnny', 1955, 'M', 6620), +(73073, 'Arthur', 1955, 'M', 6572), +(73074, 'Russell', 1955, 'M', 6522), +(73075, 'Roy', 1955, 'M', 6317), +(73076, 'Glenn', 1955, 'M', 6242), +(73077, 'Jack', 1955, 'M', 6202), +(73078, 'Henry', 1955, 'M', 6199), +(73079, 'Philip', 1955, 'M', 6156), +(73080, 'Harold', 1955, 'M', 6085), +(73081, 'Stanley', 1955, 'M', 6045), +(73082, 'Rodney', 1955, 'M', 6042), +(73083, 'Andrew', 1955, 'M', 6010), +(73084, 'Ralph', 1955, 'M', 5967), +(73085, 'Joe', 1955, 'M', 5854), +(73086, 'Billy', 1955, 'M', 5761), +(73087, 'Barry', 1955, 'M', 5601), +(73088, 'Samuel', 1955, 'M', 5530), +(73089, 'Steve', 1955, 'M', 5511), +(73090, 'Jeffery', 1955, 'M', 5464), +(73091, 'Phillip', 1955, 'M', 5397), +(73092, 'Bobby', 1955, 'M', 5214), +(73093, 'Albert', 1955, 'M', 5163), +(73094, 'Martin', 1955, 'M', 5058), +(73095, 'Jimmy', 1955, 'M', 5022), +(73096, 'Curtis', 1955, 'M', 4973), +(73097, 'Ronnie', 1955, 'M', 4957), +(73098, 'Eugene', 1955, 'M', 4797), +(73099, 'Louis', 1955, 'M', 4775), +(73100, 'Allen', 1955, 'M', 4751), +(73101, 'Howard', 1955, 'M', 4749), +(73102, 'Eric', 1955, 'M', 4663), +(73103, 'Frederick', 1955, 'M', 4545), +(73104, 'Micheal', 1955, 'M', 4534), +(73105, 'Leonard', 1955, 'M', 4249), +(73106, 'Harry', 1955, 'M', 4132), +(73107, 'Ernest', 1955, 'M', 3974), +(73108, 'Darrell', 1955, 'M', 3897), +(73109, 'Eddie', 1955, 'M', 3779), +(73110, 'Tony', 1955, 'M', 3749), +(73111, 'Marvin', 1955, 'M', 3656), +(73112, 'Melvin', 1955, 'M', 3640), +(73113, 'Lee', 1955, 'M', 3596), +(73114, 'Fred', 1955, 'M', 3493), +(73115, 'Vincent', 1955, 'M', 3492), +(73116, 'Kim', 1955, 'M', 3490), +(73117, 'Victor', 1955, 'M', 3439), +(73118, 'Francis', 1955, 'M', 3437), +(73119, 'Norman', 1955, 'M', 3406), +(73120, 'Jay', 1955, 'M', 3402), +(73121, 'Jose', 1955, 'M', 3299), +(73122, 'Matthew', 1955, 'M', 3286), +(73123, 'Earl', 1955, 'M', 3252), +(73124, 'Bradley', 1955, 'M', 3177), +(73125, 'Rick', 1955, 'M', 3160), +(73126, 'Tommy', 1955, 'M', 3160), +(73127, 'Calvin', 1955, 'M', 3157), +(73128, 'Jerome', 1955, 'M', 3081), +(73129, 'Dean', 1955, 'M', 3080), +(73130, 'Ray', 1955, 'M', 3068), +(73131, 'Rickey', 1955, 'M', 3056), +(73132, 'Jon', 1955, 'M', 3053), +(73133, 'Jonathan', 1955, 'M', 3019), +(73134, 'Clarence', 1955, 'M', 3011), +(73135, 'Clifford', 1955, 'M', 2997), +(73136, 'Alfred', 1955, 'M', 2975), +(73137, 'Theodore', 1955, 'M', 2971), +(73138, 'Joel', 1955, 'M', 2798), +(73139, 'Jesse', 1955, 'M', 2778), +(73140, 'Mike', 1955, 'M', 2725), +(73141, 'Edwin', 1955, 'M', 2658), +(73142, 'Don', 1955, 'M', 2646), +(73143, 'Marc', 1955, 'M', 2625), +(73144, 'Bernard', 1955, 'M', 2564), +(73145, 'Gordon', 1955, 'M', 2555), +(73146, 'Herbert', 1955, 'M', 2508), +(73147, 'Glen', 1955, 'M', 2491), +(73148, 'Warren', 1955, 'M', 2488), +(73149, 'Benjamin', 1955, 'M', 2442), +(73150, 'Leroy', 1955, 'M', 2412), +(73151, 'Alvin', 1955, 'M', 2356), +(73152, 'Duane', 1955, 'M', 2344), +(73153, 'Dan', 1955, 'M', 2298), +(73154, 'Mitchell', 1955, 'M', 2268), +(73155, 'Leslie', 1955, 'M', 2233), +(73156, 'Garry', 1955, 'M', 2191), +(73157, 'Chris', 1955, 'M', 2188), +(73158, 'Nicholas', 1955, 'M', 2183), +(73159, 'Dwight', 1955, 'M', 2152), +(73160, 'Leon', 1955, 'M', 2145), +(73161, 'Reginald', 1955, 'M', 2077), +(73162, 'Guy', 1955, 'M', 2038), +(73163, 'Vernon', 1955, 'M', 2034), +(73164, 'Lloyd', 1955, 'M', 2024), +(73165, 'Jackie', 1955, 'M', 1997), +(73166, 'Kurt', 1955, 'M', 1930), +(73167, 'Karl', 1955, 'M', 1929), +(73168, 'Wesley', 1955, 'M', 1921), +(73169, 'Gene', 1955, 'M', 1889), +(73170, 'Brad', 1955, 'M', 1878), +(73171, 'Gilbert', 1955, 'M', 1856), +(73172, 'Lonnie', 1955, 'M', 1856), +(73173, 'Kent', 1955, 'M', 1851), +(73174, 'Allan', 1955, 'M', 1844), +(73175, 'Robin', 1955, 'M', 1838), +(73176, 'Neil', 1955, 'M', 1784), +(73177, 'Juan', 1955, 'M', 1777), +(73178, 'Lewis', 1955, 'M', 1774), +(73179, 'Franklin', 1955, 'M', 1767), +(73180, 'Randolph', 1955, 'M', 1766), +(73181, 'Clyde', 1955, 'M', 1738), +(73182, 'Floyd', 1955, 'M', 1712), +(73183, 'Jim', 1955, 'M', 1703), +(73184, 'Carlos', 1955, 'M', 1700), +(73185, 'Lester', 1955, 'M', 1685), +(73186, 'Manuel', 1955, 'M', 1668), +(73187, 'Donnie', 1955, 'M', 1667), +(73188, 'Bill', 1955, 'M', 1650), +(73189, 'Kirk', 1955, 'M', 1632), +(73190, 'Todd', 1955, 'M', 1614), +(73191, 'Kerry', 1955, 'M', 1600), +(73192, 'Leo', 1955, 'M', 1578), +(73193, 'Bryan', 1955, 'M', 1573), +(73194, 'Dana', 1955, 'M', 1566), +(73195, 'Daryl', 1955, 'M', 1535), +(73196, 'Gerard', 1955, 'M', 1519), +(73197, 'Tom', 1955, 'M', 1508), +(73198, 'Terrence', 1955, 'M', 1498), +(73199, 'Jeff', 1955, 'M', 1473), +(73200, 'Perry', 1955, 'M', 1448), +(73201, 'Charlie', 1955, 'M', 1437), +(73202, 'Darryl', 1955, 'M', 1428), +(73203, 'Milton', 1955, 'M', 1423), +(73204, 'Freddie', 1955, 'M', 1418), +(73205, 'Ted', 1955, 'M', 1407), +(73206, 'Johnnie', 1955, 'M', 1405), +(73207, 'Stuart', 1955, 'M', 1404), +(73208, 'Rex', 1955, 'M', 1398), +(73209, 'Jimmie', 1955, 'M', 1394), +(73210, 'Brent', 1955, 'M', 1378), +(73211, 'Herman', 1955, 'M', 1364), +(73212, 'Lynn', 1955, 'M', 1334), +(73213, 'Nathaniel', 1955, 'M', 1333), +(73214, 'Arnold', 1955, 'M', 1313), +(73215, 'Gregg', 1955, 'M', 1300), +(73216, 'Harvey', 1955, 'M', 1293), +(73217, 'Ruben', 1955, 'M', 1287), +(73218, 'Tyrone', 1955, 'M', 1282), +(73219, 'Roland', 1955, 'M', 1263), +(73220, 'Chester', 1955, 'M', 1252), +(73221, 'Kelly', 1955, 'M', 1252), +(73222, 'Maurice', 1955, 'M', 1221), +(73223, 'Cecil', 1955, 'M', 1220), +(73224, 'Antonio', 1955, 'M', 1199), +(73225, 'Alexander', 1955, 'M', 1175), +(73226, 'Fredrick', 1955, 'M', 1168), +(73227, 'Greg', 1955, 'M', 1166), +(73228, 'Oscar', 1955, 'M', 1151), +(73229, 'Terrance', 1955, 'M', 1143), +(73230, 'Tim', 1955, 'M', 1143), +(73231, 'Randal', 1955, 'M', 1124), +(73232, 'Marshall', 1955, 'M', 1107), +(73233, 'Ricardo', 1955, 'M', 1104), +(73234, 'Aaron', 1955, 'M', 1097), +(73235, 'Claude', 1955, 'M', 1083), +(73236, 'Mario', 1955, 'M', 1074), +(73237, 'Neal', 1955, 'M', 1061), +(73238, 'Dave', 1955, 'M', 1055), +(73239, 'Lance', 1955, 'M', 1055), +(73240, 'Byron', 1955, 'M', 1054), +(73241, 'Ross', 1955, 'M', 1028), +(73242, 'Sidney', 1955, 'M', 1023), +(73243, 'Luis', 1955, 'M', 1010), +(73244, 'Clifton', 1955, 'M', 975), +(73245, 'Marcus', 1955, 'M', 972), +(73246, 'Jessie', 1955, 'M', 965), +(73247, 'Wendell', 1955, 'M', 958), +(73248, 'Wallace', 1955, 'M', 951), +(73249, 'Nathan', 1955, 'M', 949), +(73250, 'Edgar', 1955, 'M', 932), +(73251, 'Clayton', 1955, 'M', 919), +(73252, 'Nelson', 1955, 'M', 913), +(73253, 'Hugh', 1955, 'M', 896), +(73254, 'Sam', 1955, 'M', 872), +(73255, 'Carlton', 1955, 'M', 871), +(73256, 'Rickie', 1955, 'M', 871), +(73257, 'Rocky', 1955, 'M', 854), +(73258, 'Jesus', 1955, 'M', 845), +(73259, 'Wade', 1955, 'M', 835), +(73260, 'Clinton', 1955, 'M', 831), +(73261, 'Benny', 1955, 'M', 825), +(73262, 'Lyle', 1955, 'M', 822), +(73263, 'Morris', 1955, 'M', 822), +(73264, 'Bob', 1955, 'M', 797), +(73265, 'Hector', 1955, 'M', 793), +(73266, 'Raul', 1955, 'M', 793), +(73267, 'Terence', 1955, 'M', 765), +(73268, 'Sammy', 1955, 'M', 751), +(73269, 'Roberto', 1955, 'M', 742), +(73270, 'Ben', 1955, 'M', 736), +(73271, 'Francisco', 1955, 'M', 728), +(73272, 'Clark', 1955, 'M', 725), +(73273, 'Max', 1955, 'M', 724), +(73274, 'Bennie', 1955, 'M', 723), +(73275, 'Willard', 1955, 'M', 722), +(73276, 'Otis', 1955, 'M', 721), +(73277, 'Elmer', 1955, 'M', 716), +(73278, 'Loren', 1955, 'M', 716), +(73279, 'Alex', 1955, 'M', 714), +(73280, 'Geoffrey', 1955, 'M', 714), +(73281, 'Marion', 1955, 'M', 714), +(73282, 'Everett', 1955, 'M', 712), +(73283, 'Frankie', 1955, 'M', 710), +(73284, 'Bradford', 1955, 'M', 698), +(73285, 'Earnest', 1955, 'M', 698), +(73286, 'Luther', 1955, 'M', 697), +(73287, 'Virgil', 1955, 'M', 697), +(73288, 'Joey', 1955, 'M', 695), +(73289, 'Kenny', 1955, 'M', 690), +(73290, 'Andre', 1955, 'M', 683), +(73291, 'Ira', 1955, 'M', 680), +(73292, 'Salvatore', 1955, 'M', 671), +(73293, 'Troy', 1955, 'M', 670), +(73294, 'Rudy', 1955, 'M', 666), +(73295, 'Derrick', 1955, 'M', 656), +(73296, 'Rudolph', 1955, 'M', 654), +(73297, 'Delbert', 1955, 'M', 652), +(73298, 'Jan', 1955, 'M', 648), +(73299, 'Roderick', 1955, 'M', 648), +(73300, 'Sylvester', 1955, 'M', 647), +(73301, 'Laurence', 1955, 'M', 640), +(73302, 'Mickey', 1955, 'M', 630), +(73303, 'Stewart', 1955, 'M', 629), +(73304, 'Marty', 1955, 'M', 621), +(73305, 'Alton', 1955, 'M', 614), +(73306, 'Darrel', 1955, 'M', 609), +(73307, 'Myron', 1955, 'M', 609), +(73308, 'Miguel', 1955, 'M', 608), +(73309, 'Grant', 1955, 'M', 607), +(73310, 'Julius', 1955, 'M', 606), +(73311, 'Armando', 1955, 'M', 601), +(73312, 'Edmund', 1955, 'M', 599), +(73313, 'Malcolm', 1955, 'M', 595), +(73314, 'Sherman', 1955, 'M', 593), +(73315, 'Roosevelt', 1955, 'M', 589), +(73316, 'Ramon', 1955, 'M', 588), +(73317, 'Dwayne', 1955, 'M', 587), +(73318, 'Angelo', 1955, 'M', 580), +(73319, 'Archie', 1955, 'M', 579), +(73320, 'Jacob', 1955, 'M', 575), +(73321, 'Andy', 1955, 'M', 572), +(73322, 'Leland', 1955, 'M', 566), +(73323, 'Rodger', 1955, 'M', 564), +(73324, 'Ivan', 1955, 'M', 562), +(73325, 'Felix', 1955, 'M', 556), +(73326, 'Pete', 1955, 'M', 550), +(73327, 'Pedro', 1955, 'M', 549), +(73328, 'Van', 1955, 'M', 547), +(73329, 'Isaac', 1955, 'M', 546), +(73330, 'Doyle', 1955, 'M', 545), +(73331, 'Horace', 1955, 'M', 543), +(73332, 'Shawn', 1955, 'M', 542), +(73333, 'Monte', 1955, 'M', 540), +(73334, 'Lorenzo', 1955, 'M', 537), +(73335, 'Fernando', 1955, 'M', 534), +(73336, 'Jerald', 1955, 'M', 534), +(73337, 'Hubert', 1955, 'M', 532), +(73338, 'Kelvin', 1955, 'M', 531), +(73339, 'Rene', 1955, 'M', 528), +(73340, 'Tracy', 1955, 'M', 527), +(73341, 'Preston', 1955, 'M', 524), +(73342, 'Jeffry', 1955, 'M', 520), +(73343, 'Tommie', 1955, 'M', 508), +(73344, 'Wilbert', 1955, 'M', 508), +(73345, 'Oliver', 1955, 'M', 507), +(73346, 'Forrest', 1955, 'M', 506), +(73347, 'Derek', 1955, 'M', 502), +(73348, 'Ron', 1955, 'M', 499), +(73349, 'Sean', 1955, 'M', 499), +(73350, 'Unknown', 1955, 'M', 497), +(73351, 'Denis', 1955, 'M', 494), +(73352, 'Cary', 1955, 'M', 490), +(73353, 'Stephan', 1955, 'M', 490), +(73354, 'Teddy', 1955, 'M', 487), +(73355, 'Nick', 1955, 'M', 475), +(73356, 'Julian', 1955, 'M', 472), +(73357, 'Lowell', 1955, 'M', 471), +(73358, 'Brett', 1955, 'M', 466), +(73359, 'Willis', 1955, 'M', 455), +(73360, 'Hal', 1955, 'M', 454), +(73361, 'Marlon', 1955, 'M', 446), +(73362, 'Ken', 1955, 'M', 440), +(73363, 'Wilbur', 1955, 'M', 435), +(73364, 'Angel', 1955, 'M', 434), +(73365, 'Adrian', 1955, 'M', 429), +(73366, 'Freddy', 1955, 'M', 429), +(73367, 'Clay', 1955, 'M', 426), +(73368, 'Ervin', 1955, 'M', 421), +(73369, 'Dallas', 1955, 'M', 416), +(73370, 'Rafael', 1955, 'M', 416), +(73371, 'Alonzo', 1955, 'M', 415), +(73372, 'Homer', 1955, 'M', 414), +(73373, 'Dexter', 1955, 'M', 412), +(73374, 'Arturo', 1955, 'M', 409), +(73375, 'Rufus', 1955, 'M', 409), +(73376, 'Carroll', 1955, 'M', 404), +(73377, 'Kyle', 1955, 'M', 404), +(73378, 'Bert', 1955, 'M', 403), +(73379, 'Grady', 1955, 'M', 403), +(73380, 'Dewey', 1955, 'M', 402), +(73381, 'Alfredo', 1955, 'M', 400), +(73382, 'Jason', 1955, 'M', 399), +(73383, 'Gerry', 1955, 'M', 393), +(73384, 'Mack', 1955, 'M', 393), +(73385, 'Alfonso', 1955, 'M', 385), +(73386, 'Conrad', 1955, 'M', 384), +(73387, 'Dominic', 1955, 'M', 384), +(73388, 'Dirk', 1955, 'M', 380), +(73389, 'Rory', 1955, 'M', 376), +(73390, 'Jaime', 1955, 'M', 375), +(73391, 'Royce', 1955, 'M', 372), +(73392, 'Boyd', 1955, 'M', 371), +(73393, 'Ellis', 1955, 'M', 368), +(73394, 'Jorge', 1955, 'M', 367), +(73395, 'Carey', 1955, 'M', 364), +(73396, 'Buddy', 1955, 'M', 358), +(73397, 'Stevie', 1955, 'M', 358), +(73398, 'Travis', 1955, 'M', 356), +(73399, 'Monty', 1955, 'M', 355), +(73400, 'Sheldon', 1955, 'M', 352), +(73401, 'Adam', 1955, 'M', 351), +(73402, 'Irvin', 1955, 'M', 350), +(73403, 'Christian', 1955, 'M', 349), +(73404, 'Owen', 1955, 'M', 346), +(73405, 'Christophe', 1955, 'M', 342), +(73406, 'Darwin', 1955, 'M', 342), +(73407, 'Louie', 1955, 'M', 342), +(73408, 'Sammie', 1955, 'M', 342), +(73409, 'Elbert', 1955, 'M', 341), +(73410, 'Cornelius', 1955, 'M', 339), +(73411, 'Alberto', 1955, 'M', 337), +(73412, 'Edmond', 1955, 'M', 336), +(73413, 'Noel', 1955, 'M', 336), +(73414, 'Wilson', 1955, 'M', 336), +(73415, 'Darnell', 1955, 'M', 333), +(73416, 'Dominick', 1955, 'M', 332), +(73417, 'Gabriel', 1955, 'M', 332), +(73418, 'Pat', 1955, 'M', 330), +(73419, 'Cleveland', 1955, 'M', 329), +(73420, 'Garland', 1955, 'M', 327), +(73421, 'Spencer', 1955, 'M', 327), +(73422, 'Lionel', 1955, 'M', 326), +(73423, 'Ronny', 1955, 'M', 324), +(73424, 'Rusty', 1955, 'M', 324), +(73425, 'Evan', 1955, 'M', 323), +(73426, 'Salvador', 1955, 'M', 321), +(73427, 'Vance', 1955, 'M', 321), +(73428, 'Dewayne', 1955, 'M', 319), +(73429, 'Miles', 1955, 'M', 318), +(73430, 'Bart', 1955, 'M', 317), +(73431, 'Blaine', 1955, 'M', 316), +(73432, 'Guadalupe', 1955, 'M', 314), +(73433, 'Ernie', 1955, 'M', 313), +(73434, 'Percy', 1955, 'M', 310), +(73435, 'Alphonso', 1955, 'M', 307), +(73436, 'Joesph', 1955, 'M', 305), +(73437, 'Shane', 1955, 'M', 303), +(73438, 'Harlan', 1955, 'M', 298), +(73439, 'Aubrey', 1955, 'M', 297), +(73440, 'Casey', 1955, 'M', 297), +(73441, 'Emmett', 1955, 'M', 297), +(73442, 'Rodolfo', 1955, 'M', 297), +(73443, 'Jody', 1955, 'M', 296), +(73444, 'Phil', 1955, 'M', 295), +(73445, 'Curt', 1955, 'M', 292), +(73446, 'Galen', 1955, 'M', 292), +(73447, 'Marlin', 1955, 'M', 291), +(73448, 'Merle', 1955, 'M', 291), +(73449, 'Abraham', 1955, 'M', 288), +(73450, 'Norris', 1955, 'M', 288), +(73451, 'Amos', 1955, 'M', 286), +(73452, 'Javier', 1955, 'M', 286), +(73453, 'Al', 1955, 'M', 285), +(73454, 'Winston', 1955, 'M', 283), +(73455, 'Woodrow', 1955, 'M', 283), +(73456, 'Donny', 1955, 'M', 282), +(73457, 'Lamar', 1955, 'M', 282), +(73458, 'Timmy', 1955, 'M', 282), +(73459, 'Wilfred', 1955, 'M', 281), +(73460, 'Elton', 1955, 'M', 280), +(73461, 'Zachary', 1955, 'M', 280), +(73462, 'Blake', 1955, 'M', 279), +(73463, 'Murray', 1955, 'M', 279), +(73464, 'Barney', 1955, 'M', 275), +(73465, 'Enrique', 1955, 'M', 275), +(73466, 'Kirby', 1955, 'M', 271), +(73467, 'Scot', 1955, 'M', 271), +(73468, 'Orlando', 1955, 'M', 269), +(73469, 'Reed', 1955, 'M', 269), +(73470, 'Grover', 1955, 'M', 268), +(73471, 'Jess', 1955, 'M', 266), +(73472, 'Moses', 1955, 'M', 266), +(73473, 'Ned', 1955, 'M', 266), +(73474, 'Ernesto', 1955, 'M', 264), +(73475, 'Sterling', 1955, 'M', 263), +(73476, 'Jamie', 1955, 'M', 262), +(73477, 'Drew', 1955, 'M', 259), +(73478, 'Dannie', 1955, 'M', 257), +(73479, 'Colin', 1955, 'M', 256), +(73480, 'Julio', 1955, 'M', 256), +(73481, 'Cedric', 1955, 'M', 254), +(73482, 'Corey', 1955, 'M', 254), +(73483, 'Eldon', 1955, 'M', 252), +(73484, 'Lon', 1955, 'M', 251), +(73485, 'Emanuel', 1955, 'M', 248), +(73486, 'Justin', 1955, 'M', 247), +(73487, 'Irving', 1955, 'M', 245), +(73488, 'Joshua', 1955, 'M', 244), +(73489, 'Eduardo', 1955, 'M', 241), +(73490, 'Jerrold', 1955, 'M', 240), +(73491, 'Kris', 1955, 'M', 240), +(73492, 'Denny', 1955, 'M', 238), +(73493, 'Michel', 1955, 'M', 236), +(73494, 'Randell', 1955, 'M', 236), +(73495, 'Chad', 1955, 'M', 235), +(73496, 'Elijah', 1955, 'M', 235), +(73497, 'Linwood', 1955, 'M', 234), +(73498, 'Sandy', 1955, 'M', 232), +(73499, 'Robbie', 1955, 'M', 231), +(73500, 'Eddy', 1955, 'M', 230), +(73501, 'Junior', 1955, 'M', 230), +(73502, 'Blair', 1955, 'M', 229), +(73503, 'Kendall', 1955, 'M', 228), +(73504, 'Lanny', 1955, 'M', 228), +(73505, 'Rocco', 1955, 'M', 228), +(73506, 'Frederic', 1955, 'M', 225), +(73507, 'Harley', 1955, 'M', 225), +(73508, 'Erik', 1955, 'M', 224), +(73509, 'Simon', 1955, 'M', 223), +(73510, 'Dane', 1955, 'M', 222), +(73511, 'Doug', 1955, 'M', 221), +(73512, 'Elliott', 1955, 'M', 221), +(73513, 'Thaddeus', 1955, 'M', 221), +(73514, 'Cornell', 1955, 'M', 220), +(73515, 'Luke', 1955, 'M', 220), +(73516, 'Ramiro', 1955, 'M', 220), +(73517, 'Reuben', 1955, 'M', 220), +(73518, 'Stan', 1955, 'M', 220), +(73519, 'Sanford', 1955, 'M', 219), +(73520, 'Damon', 1955, 'M', 216), +(73521, 'Vaughn', 1955, 'M', 216), +(73522, 'Abel', 1955, 'M', 215), +(73523, 'Seth', 1955, 'M', 215), +(73524, 'Loyd', 1955, 'M', 212), +(73525, 'Bennett', 1955, 'M', 209), +(73526, 'Cory', 1955, 'M', 208), +(73527, 'Lamont', 1955, 'M', 208), +(73528, 'Levi', 1955, 'M', 206), +(73529, 'Austin', 1955, 'M', 204), +(73530, 'Chuck', 1955, 'M', 204), +(73531, 'Kennith', 1955, 'M', 204), +(73532, 'Reynaldo', 1955, 'M', 202), +(73533, 'Garth', 1955, 'M', 200), +(73534, 'Morgan', 1955, 'M', 199), +(73535, 'Gale', 1955, 'M', 198), +(73536, 'Nolan', 1955, 'M', 198), +(73537, 'Jefferson', 1955, 'M', 197), +(73538, 'Terrell', 1955, 'M', 197), +(73539, 'Ward', 1955, 'M', 197), +(73540, 'Carmen', 1955, 'M', 196), +(73541, 'Tomas', 1955, 'M', 196), +(73542, 'Davy', 1955, 'M', 195), +(73543, 'Orville', 1955, 'M', 195), +(73544, 'Matt', 1955, 'M', 194), +(73545, 'Mitchel', 1955, 'M', 194), +(73546, 'Donn', 1955, 'M', 193), +(73547, 'Billie', 1955, 'M', 191), +(73548, 'Norbert', 1955, 'M', 191), +(73549, 'Felipe', 1955, 'M', 190), +(73550, 'Harrison', 1955, 'M', 190), +(73551, 'Toby', 1955, 'M', 190), +(73552, 'Ed', 1955, 'M', 189), +(73553, 'Israel', 1955, 'M', 189), +(73554, 'Odell', 1955, 'M', 189), +(73555, 'Reid', 1955, 'M', 189), +(73556, 'Barton', 1955, 'M', 188), +(73557, 'Bryant', 1955, 'M', 188), +(73558, 'Kermit', 1955, 'M', 188), +(73559, 'Russel', 1955, 'M', 187), +(73560, 'Danial', 1955, 'M', 186), +(73561, 'Kip', 1955, 'M', 186), +(73562, 'Jasper', 1955, 'M', 185), +(73563, 'Lane', 1955, 'M', 184), +(73564, 'Burton', 1955, 'M', 183), +(73565, 'Dick', 1955, 'M', 182), +(73566, 'Cameron', 1955, 'M', 180), +(73567, 'Fredric', 1955, 'M', 180), +(73568, 'Ryan', 1955, 'M', 179), +(73569, 'Emil', 1955, 'M', 178), +(73570, 'Kimberly', 1955, 'M', 178), +(73571, 'Merlin', 1955, 'M', 176), +(73572, 'Pablo', 1955, 'M', 176), +(73573, 'Erwin', 1955, 'M', 175), +(73574, 'Garrett', 1955, 'M', 174), +(73575, 'Mathew', 1955, 'M', 174), +(73576, 'Domingo', 1955, 'M', 173), +(73577, 'Ian', 1955, 'M', 173), +(73578, 'Dudley', 1955, 'M', 172), +(73579, 'Roscoe', 1955, 'M', 172), +(73580, 'Elvin', 1955, 'M', 171), +(73581, 'Gilberto', 1955, 'M', 171), +(73582, 'Solomon', 1955, 'M', 170), +(73583, 'Thurman', 1955, 'M', 170), +(73584, 'Wiley', 1955, 'M', 170), +(73585, 'Donnell', 1955, 'M', 169), +(73586, 'Rolando', 1955, 'M', 169), +(73587, 'Brady', 1955, 'M', 168), +(73588, 'Gus', 1955, 'M', 168), +(73589, 'Vern', 1955, 'M', 168), +(73590, 'Bobbie', 1955, 'M', 167), +(73591, 'Jeremiah', 1955, 'M', 166), +(73592, 'Winfred', 1955, 'M', 165), +(73593, 'Scotty', 1955, 'M', 164), +(73594, 'Millard', 1955, 'M', 163), +(73595, 'Ulysses', 1955, 'M', 163), +(73596, 'Hollis', 1955, 'M', 161), +(73597, 'Ismael', 1955, 'M', 161), +(73598, 'Reggie', 1955, 'M', 160), +(73599, 'Audie', 1955, 'M', 158), +(73600, 'Lonny', 1955, 'M', 158), +(73601, 'Rod', 1955, 'M', 158), +(73602, 'Weldon', 1955, 'M', 158), +(73603, 'Will', 1955, 'M', 158), +(73604, 'Elwood', 1955, 'M', 157), +(73605, 'Roman', 1955, 'M', 157), +(73606, 'Shannon', 1955, 'M', 157), +(73607, 'Alejandro', 1955, 'M', 156), +(73608, 'Dwain', 1955, 'M', 156), +(73609, 'Andres', 1955, 'M', 154), +(73610, 'Emilio', 1955, 'M', 154), +(73611, 'Lindsey', 1955, 'M', 154), +(73612, 'Mikel', 1955, 'M', 154), +(73613, 'Gerardo', 1955, 'M', 153), +(73614, 'Jean', 1955, 'M', 152), +(73615, 'Jonathon', 1955, 'M', 152), +(73616, 'Pierre', 1955, 'M', 152), +(73617, 'Adolph', 1955, 'M', 151), +(73618, 'Shelby', 1955, 'M', 151), +(73619, 'Guillermo', 1955, 'M', 150), +(73620, 'Merrill', 1955, 'M', 150), +(73621, 'Val', 1955, 'M', 150), +(73622, 'Anton', 1955, 'M', 149), +(73623, 'August', 1955, 'M', 149), +(73624, 'Carter', 1955, 'M', 149), +(73625, 'Davis', 1955, 'M', 149), +(73626, 'Hans', 1955, 'M', 149), +(73627, 'Mary', 1955, 'M', 149), +(73628, 'Arlen', 1955, 'M', 148), +(73629, 'Cliff', 1955, 'M', 148), +(73630, 'Elias', 1955, 'M', 148), +(73631, 'Tod', 1955, 'M', 148), +(73632, 'Bryce', 1955, 'M', 146), +(73633, 'Shelton', 1955, 'M', 146), +(73634, 'Duncan', 1955, 'M', 145), +(73635, 'Kenton', 1955, 'M', 145), +(73636, 'Ollie', 1955, 'M', 144), +(73637, 'Rogelio', 1955, 'M', 144), +(73638, 'Vito', 1955, 'M', 144), +(73639, 'Ivory', 1955, 'M', 143), +(73640, 'Jacky', 1955, 'M', 143), +(73641, 'Sergio', 1955, 'M', 143), +(73642, 'Clement', 1955, 'M', 142), +(73643, 'Emory', 1955, 'M', 142), +(73644, 'Charley', 1955, 'M', 141), +(73645, 'Jake', 1955, 'M', 141), +(73646, 'Coy', 1955, 'M', 140), +(73647, 'Rock', 1955, 'M', 140), +(73648, 'Ignacio', 1955, 'M', 139), +(73649, 'Jerold', 1955, 'M', 139), +(73650, 'Avery', 1955, 'M', 138), +(73651, 'Elliot', 1955, 'M', 138), +(73652, 'Connie', 1955, 'M', 137), +(73653, 'Denver', 1955, 'M', 137), +(73654, 'Harris', 1955, 'M', 137), +(73655, 'Trent', 1955, 'M', 137), +(73656, 'Armand', 1955, 'M', 136), +(73657, 'Jed', 1955, 'M', 136), +(73658, 'Monroe', 1955, 'M', 136), +(73659, 'Otto', 1955, 'M', 136), +(73660, 'Bernie', 1955, 'M', 135), +(73661, 'Benito', 1955, 'M', 134), +(73662, 'Stacy', 1955, 'M', 134), +(73663, 'Noah', 1955, 'M', 133), +(73664, 'Emery', 1955, 'M', 131), +(73665, 'Riley', 1955, 'M', 131), +(73666, 'Maynard', 1955, 'M', 129), +(73667, 'Myles', 1955, 'M', 129), +(73668, 'Rob', 1955, 'M', 129), +(73669, 'Jackson', 1955, 'M', 128), +(73670, 'Toney', 1955, 'M', 128), +(73671, 'Booker', 1955, 'M', 126), +(73672, 'Leigh', 1955, 'M', 126), +(73673, 'Sonny', 1955, 'M', 125), +(73674, 'Wyatt', 1955, 'M', 125), +(73675, 'Carson', 1955, 'M', 124), +(73676, 'Delmar', 1955, 'M', 123), +(73677, 'Nicky', 1955, 'M', 123), +(73678, 'Burt', 1955, 'M', 122), +(73679, 'Santos', 1955, 'M', 122), +(73680, 'Bud', 1955, 'M', 121), +(73681, 'Eli', 1955, 'M', 120), +(73682, 'Hank', 1955, 'M', 120), +(73683, 'Lenard', 1955, 'M', 120), +(73684, 'Lindsay', 1955, 'M', 120), +(73685, 'Napoleon', 1955, 'M', 120), +(73686, 'Ricki', 1955, 'M', 120), +(73687, 'Saul', 1955, 'M', 120), +(73688, 'Isaiah', 1955, 'M', 119), +(73689, 'Quentin', 1955, 'M', 119), +(73690, 'Herschel', 1955, 'M', 118), +(73691, 'Johnie', 1955, 'M', 118), +(73692, 'Faron', 1955, 'M', 117), +(73693, 'Marco', 1955, 'M', 117), +(73694, 'Tyler', 1955, 'M', 117), +(73695, 'Shaun', 1955, 'M', 116), +(73696, 'Vince', 1955, 'M', 116), +(73697, 'Wilford', 1955, 'M', 116), +(73698, 'Butch', 1955, 'M', 115), +(73699, 'Clint', 1955, 'M', 115), +(73700, 'Dickie', 1955, 'M', 115), +(73701, 'Gail', 1955, 'M', 115), +(73702, 'Rogers', 1955, 'M', 115), +(73703, 'Glynn', 1955, 'M', 114), +(73704, 'Gustavo', 1955, 'M', 114), +(73705, 'Santiago', 1955, 'M', 114), +(73706, 'Carmine', 1955, 'M', 113), +(73707, 'Del', 1955, 'M', 113), +(73708, 'Humberto', 1955, 'M', 113), +(73709, 'Jeremy', 1955, 'M', 113), +(73710, 'Geary', 1955, 'M', 112), +(73711, 'Xavier', 1955, 'M', 112), +(73712, 'Earle', 1955, 'M', 111), +(73713, 'Hiram', 1955, 'M', 111), +(73714, 'Kurtis', 1955, 'M', 111), +(73715, 'Randel', 1955, 'M', 111), +(73716, 'Lawerence', 1955, 'M', 110), +(73717, 'Efrain', 1955, 'M', 109), +(73718, 'Lavern', 1955, 'M', 109), +(73719, 'Mervin', 1955, 'M', 109), +(73720, 'Milo', 1955, 'M', 109), +(73721, 'Curtiss', 1955, 'M', 108), +(73722, 'Freeman', 1955, 'M', 108), +(73723, 'Isiah', 1955, 'M', 108), +(73724, 'Marcos', 1955, 'M', 108), +(73725, 'Zane', 1955, 'M', 108), +(73726, 'Fletcher', 1955, 'M', 107), +(73727, 'Donovan', 1955, 'M', 106), +(73728, 'Irwin', 1955, 'M', 106), +(73729, 'Jordan', 1955, 'M', 106), +(73730, 'Forest', 1955, 'M', 105), +(73731, 'Royal', 1955, 'M', 105), +(73732, 'Stanford', 1955, 'M', 105), +(73733, 'Wilmer', 1955, 'M', 105), +(73734, 'Basil', 1955, 'M', 104), +(73735, 'Brandon', 1955, 'M', 104), +(73736, 'Dalton', 1955, 'M', 104), +(73737, 'Linda', 1955, 'M', 104), +(73738, 'Major', 1955, 'M', 104), +(73739, 'Augustine', 1955, 'M', 103), +(73740, 'Robby', 1955, 'M', 103), +(73741, 'Wilfredo', 1955, 'M', 103), +(73742, 'Brooks', 1955, 'M', 101), +(73743, 'Errol', 1955, 'M', 101), +(73744, 'Laverne', 1955, 'M', 101), +(73745, 'Anderson', 1955, 'M', 100), +(73746, 'Deborah', 1955, 'M', 100), +(73747, 'Gearld', 1955, 'M', 100), +(73748, 'Jere', 1955, 'M', 100), +(73749, 'Mary', 1956, 'F', 61751), +(73750, 'Debra', 1956, 'F', 48302), +(73751, 'Linda', 1956, 'F', 48065), +(73752, 'Deborah', 1956, 'F', 47828), +(73753, 'Susan', 1956, 'F', 46555), +(73754, 'Patricia', 1956, 'F', 43333), +(73755, 'Karen', 1956, 'F', 40046), +(73756, 'Cynthia', 1956, 'F', 32351), +(73757, 'Barbara', 1956, 'F', 32298), +(73758, 'Donna', 1956, 'F', 29844), +(73759, 'Nancy', 1956, 'F', 28782), +(73760, 'Pamela', 1956, 'F', 26914), +(73761, 'Sharon', 1956, 'F', 26878), +(73762, 'Sandra', 1956, 'F', 24283), +(73763, 'Diane', 1956, 'F', 22514), +(73764, 'Carol', 1956, 'F', 21405), +(73765, 'Kathleen', 1956, 'F', 21369), +(73766, 'Cheryl', 1956, 'F', 21280), +(73767, 'Brenda', 1956, 'F', 19337), +(73768, 'Kathy', 1956, 'F', 17169), +(73769, 'Janet', 1956, 'F', 16767), +(73770, 'Elizabeth', 1956, 'F', 16344), +(73771, 'Denise', 1956, 'F', 14512), +(73772, 'Teresa', 1956, 'F', 14466), +(73773, 'Margaret', 1956, 'F', 13918), +(73774, 'Janice', 1956, 'F', 13016), +(73775, 'Rebecca', 1956, 'F', 12172), +(73776, 'Catherine', 1956, 'F', 12069), +(73777, 'Robin', 1956, 'F', 11618), +(73778, 'Joyce', 1956, 'F', 11094), +(73779, 'Lisa', 1956, 'F', 11018), +(73780, 'Theresa', 1956, 'F', 10839), +(73781, 'Carolyn', 1956, 'F', 10639), +(73782, 'Laura', 1956, 'F', 10571), +(73783, 'Judy', 1956, 'F', 10193), +(73784, 'Cathy', 1956, 'F', 10137), +(73785, 'Cindy', 1956, 'F', 9987), +(73786, 'Kim', 1956, 'F', 9895), +(73787, 'Debbie', 1956, 'F', 9867), +(73788, 'Beverly', 1956, 'F', 9452), +(73789, 'Shirley', 1956, 'F', 9428), +(73790, 'Christine', 1956, 'F', 9380), +(73791, 'Connie', 1956, 'F', 9358), +(73792, 'Betty', 1956, 'F', 9212), +(73793, 'Judith', 1956, 'F', 9107), +(73794, 'Ann', 1956, 'F', 8983), +(73795, 'Paula', 1956, 'F', 8925), +(73796, 'Julie', 1956, 'F', 8578), +(73797, 'Gail', 1956, 'F', 8442), +(73798, 'Jane', 1956, 'F', 8248), +(73799, 'Bonnie', 1956, 'F', 8131), +(73800, 'Joan', 1956, 'F', 8077), +(73801, 'Gloria', 1956, 'F', 7925), +(73802, 'Sherry', 1956, 'F', 7892), +(73803, 'Sheila', 1956, 'F', 7867), +(73804, 'Diana', 1956, 'F', 7851), +(73805, 'Vicki', 1956, 'F', 7762), +(73806, 'Lynn', 1956, 'F', 7739), +(73807, 'Martha', 1956, 'F', 7714), +(73808, 'Kathryn', 1956, 'F', 7589), +(73809, 'Wanda', 1956, 'F', 7555), +(73810, 'Rhonda', 1956, 'F', 7524), +(73811, 'Peggy', 1956, 'F', 7488), +(73812, 'Rose', 1956, 'F', 7335), +(73813, 'Jean', 1956, 'F', 7175), +(73814, 'Lori', 1956, 'F', 7140), +(73815, 'Katherine', 1956, 'F', 7080), +(73816, 'Vickie', 1956, 'F', 6962), +(73817, 'Jo', 1956, 'F', 6953), +(73818, 'Marilyn', 1956, 'F', 6930), +(73819, 'Darlene', 1956, 'F', 6919), +(73820, 'Dorothy', 1956, 'F', 6864), +(73821, 'Maria', 1956, 'F', 6735), +(73822, 'Kimberly', 1956, 'F', 6734), +(73823, 'Virginia', 1956, 'F', 6379), +(73824, 'Laurie', 1956, 'F', 6201), +(73825, 'Jacqueline', 1956, 'F', 6071), +(73826, 'Ruth', 1956, 'F', 6068), +(73827, 'Rita', 1956, 'F', 6056), +(73828, 'Valerie', 1956, 'F', 5915), +(73829, 'Terri', 1956, 'F', 5746), +(73830, 'Phyllis', 1956, 'F', 5651), +(73831, 'Anita', 1956, 'F', 5497), +(73832, 'Ellen', 1956, 'F', 5434), +(73833, 'Victoria', 1956, 'F', 5390), +(73834, 'Anne', 1956, 'F', 5358), +(73835, 'Michelle', 1956, 'F', 5327), +(73836, 'Tina', 1956, 'F', 5327), +(73837, 'Elaine', 1956, 'F', 5309), +(73838, 'Helen', 1956, 'F', 5280), +(73839, 'Terry', 1956, 'F', 5269), +(73840, 'Dawn', 1956, 'F', 5128), +(73841, 'Angela', 1956, 'F', 5029), +(73842, 'Suzanne', 1956, 'F', 5026), +(73843, 'Wendy', 1956, 'F', 4861), +(73844, 'Marie', 1956, 'F', 4794), +(73845, 'Jennifer', 1956, 'F', 4712), +(73846, 'Alice', 1956, 'F', 4682), +(73847, 'Joanne', 1956, 'F', 4670), +(73848, 'Michele', 1956, 'F', 4612), +(73849, 'Jill', 1956, 'F', 4575), +(73850, 'Maureen', 1956, 'F', 4505), +(73851, 'Leslie', 1956, 'F', 4385), +(73852, 'Anna', 1956, 'F', 4382), +(73853, 'Sally', 1956, 'F', 4348), +(73854, 'Renee', 1956, 'F', 4333), +(73855, 'Frances', 1956, 'F', 4323), +(73856, 'Sylvia', 1956, 'F', 4146), +(73857, 'Doris', 1956, 'F', 4092), +(73858, 'Marcia', 1956, 'F', 4061), +(73859, 'Stephanie', 1956, 'F', 3911), +(73860, 'Jeanne', 1956, 'F', 3908), +(73861, 'Colleen', 1956, 'F', 3896), +(73862, 'Sheryl', 1956, 'F', 3893), +(73863, 'Sarah', 1956, 'F', 3875), +(73864, 'Roberta', 1956, 'F', 3867), +(73865, 'Beth', 1956, 'F', 3800), +(73866, 'Annette', 1956, 'F', 3755), +(73867, 'Sue', 1956, 'F', 3754), +(73868, 'Evelyn', 1956, 'F', 3740), +(73869, 'Yvonne', 1956, 'F', 3584), +(73870, 'Amy', 1956, 'F', 3553), +(73871, 'Eileen', 1956, 'F', 3446), +(73872, 'Lorraine', 1956, 'F', 3426), +(73873, 'Regina', 1956, 'F', 3421), +(73874, 'Loretta', 1956, 'F', 3407), +(73875, 'Andrea', 1956, 'F', 3393), +(73876, 'Gwendolyn', 1956, 'F', 3381), +(73877, 'Marsha', 1956, 'F', 3330), +(73878, 'Julia', 1956, 'F', 3323), +(73879, 'Carla', 1956, 'F', 3318), +(73880, 'Charlene', 1956, 'F', 3277), +(73881, 'Charlotte', 1956, 'F', 3266), +(73882, 'Glenda', 1956, 'F', 3239), +(73883, 'Lois', 1956, 'F', 3221), +(73884, 'Jan', 1956, 'F', 3200), +(73885, 'Dianne', 1956, 'F', 3069), +(73886, 'Norma', 1956, 'F', 3049), +(73887, 'Joann', 1956, 'F', 2998), +(73888, 'Joy', 1956, 'F', 2822), +(73889, 'Constance', 1956, 'F', 2820), +(73890, 'Melinda', 1956, 'F', 2714), +(73891, 'Melanie', 1956, 'F', 2692), +(73892, 'Becky', 1956, 'F', 2688), +(73893, 'Vanessa', 1956, 'F', 2616), +(73894, 'Vicky', 1956, 'F', 2611), +(73895, 'Doreen', 1956, 'F', 2572), +(73896, 'Vivian', 1956, 'F', 2557), +(73897, 'Audrey', 1956, 'F', 2541), +(73898, 'Melissa', 1956, 'F', 2527), +(73899, 'Toni', 1956, 'F', 2508), +(73900, 'Juanita', 1956, 'F', 2469), +(73901, 'Patti', 1956, 'F', 2421), +(73902, 'Kay', 1956, 'F', 2392), +(73903, 'Melody', 1956, 'F', 2388), +(73904, 'Lynne', 1956, 'F', 2371), +(73905, 'Janis', 1956, 'F', 2361), +(73906, 'Penny', 1956, 'F', 2344), +(73907, 'Irene', 1956, 'F', 2342), +(73908, 'Jeanette', 1956, 'F', 2337), +(73909, 'Debora', 1956, 'F', 2327), +(73910, 'Holly', 1956, 'F', 2325), +(73911, 'Gayle', 1956, 'F', 2289), +(73912, 'Yolanda', 1956, 'F', 2272), +(73913, 'Louise', 1956, 'F', 2240), +(73914, 'Carmen', 1956, 'F', 2199), +(73915, 'Belinda', 1956, 'F', 2190), +(73916, 'Rosa', 1956, 'F', 2174), +(73917, 'Monica', 1956, 'F', 2160), +(73918, 'Marlene', 1956, 'F', 2124), +(73919, 'Roxanne', 1956, 'F', 2112), +(73920, 'Christina', 1956, 'F', 2110), +(73921, 'Annie', 1956, 'F', 2108), +(73922, 'Dana', 1956, 'F', 2073), +(73923, 'Geraldine', 1956, 'F', 2061), +(73924, 'Rosemary', 1956, 'F', 2060), +(73925, 'Sherri', 1956, 'F', 2038), +(73926, 'Sara', 1956, 'F', 2006), +(73927, 'Ruby', 1956, 'F', 1992), +(73928, 'Jackie', 1956, 'F', 1987), +(73929, 'Gina', 1956, 'F', 1958), +(73930, 'June', 1956, 'F', 1952), +(73931, 'Shelia', 1956, 'F', 1951), +(73932, 'Lee', 1956, 'F', 1936), +(73933, 'Eva', 1956, 'F', 1926), +(73934, 'Claudia', 1956, 'F', 1915), +(73935, 'Marjorie', 1956, 'F', 1882), +(73936, 'Delores', 1956, 'F', 1847), +(73937, 'Grace', 1956, 'F', 1837), +(73938, 'Veronica', 1956, 'F', 1817), +(73939, 'Arlene', 1956, 'F', 1809), +(73940, 'Patsy', 1956, 'F', 1802), +(73941, 'Lynda', 1956, 'F', 1760), +(73942, 'Jody', 1956, 'F', 1747), +(73943, 'Sheri', 1956, 'F', 1716), +(73944, 'Shelley', 1956, 'F', 1680), +(73945, 'Rachel', 1956, 'F', 1668), +(73946, 'Dolores', 1956, 'F', 1661), +(73947, 'Ramona', 1956, 'F', 1646), +(73948, 'Mildred', 1956, 'F', 1637), +(73949, 'Lillian', 1956, 'F', 1631), +(73950, 'Marianne', 1956, 'F', 1615), +(73951, 'Teri', 1956, 'F', 1599), +(73952, 'Joni', 1956, 'F', 1576), +(73953, 'Edna', 1956, 'F', 1547), +(73954, 'Lydia', 1956, 'F', 1547), +(73955, 'Marla', 1956, 'F', 1532), +(73956, 'Carrie', 1956, 'F', 1530), +(73957, 'Esther', 1956, 'F', 1509), +(73958, 'Josephine', 1956, 'F', 1487), +(73959, 'Edith', 1956, 'F', 1476), +(73960, 'Jayne', 1956, 'F', 1471), +(73961, 'Patty', 1956, 'F', 1447), +(73962, 'Carole', 1956, 'F', 1417), +(73963, 'Janie', 1956, 'F', 1410), +(73964, 'Candace', 1956, 'F', 1403), +(73965, 'Jacquelyn', 1956, 'F', 1396), +(73966, 'Karla', 1956, 'F', 1390), +(73967, 'Tracy', 1956, 'F', 1388), +(73968, 'Sheree', 1956, 'F', 1373), +(73969, 'Pauline', 1956, 'F', 1369), +(73970, 'Lucy', 1956, 'F', 1364), +(73971, 'Heidi', 1956, 'F', 1352), +(73972, 'Priscilla', 1956, 'F', 1350), +(73973, 'Dianna', 1956, 'F', 1346), +(73974, 'Emma', 1956, 'F', 1346), +(73975, 'Sherrie', 1956, 'F', 1334), +(73976, 'Nina', 1956, 'F', 1324), +(73977, 'Georgia', 1956, 'F', 1305), +(73978, 'Emily', 1956, 'F', 1279), +(73979, 'Margie', 1956, 'F', 1270), +(73980, 'Marian', 1956, 'F', 1250), +(73981, 'Bobbie', 1956, 'F', 1239), +(73982, 'Paulette', 1956, 'F', 1235), +(73983, 'Robyn', 1956, 'F', 1227), +(73984, 'April', 1956, 'F', 1212), +(73985, 'Deanna', 1956, 'F', 1210), +(73986, 'Darla', 1956, 'F', 1208), +(73987, 'Luann', 1956, 'F', 1200), +(73988, 'Mona', 1956, 'F', 1187), +(73989, 'Laurel', 1956, 'F', 1182), +(73990, 'Bonita', 1956, 'F', 1175), +(73991, 'Gladys', 1956, 'F', 1171), +(73992, 'Nora', 1956, 'F', 1170), +(73993, 'Vera', 1956, 'F', 1151), +(73994, 'Jeannie', 1956, 'F', 1150), +(73995, 'Clara', 1956, 'F', 1147), +(73996, 'Lynette', 1956, 'F', 1138), +(73997, 'Billie', 1956, 'F', 1128), +(73998, 'Sandy', 1956, 'F', 1125), +(73999, 'Cathleen', 1956, 'F', 1116), +(74000, 'Marion', 1956, 'F', 1103), +(74001, 'Wilma', 1956, 'F', 1081), +(74002, 'Gale', 1956, 'F', 1078), +(74003, 'Ethel', 1956, 'F', 1076), +(74004, 'Thelma', 1956, 'F', 1074), +(74005, 'Therese', 1956, 'F', 1069), +(74006, 'Betsy', 1956, 'F', 1066), +(74007, 'Lou', 1956, 'F', 1064), +(74008, 'Maryann', 1956, 'F', 1049), +(74009, 'Eleanor', 1956, 'F', 1046), +(74010, 'Lucille', 1956, 'F', 1044), +(74011, 'Miriam', 1956, 'F', 1043), +(74012, 'Cheri', 1956, 'F', 1042), +(74013, 'Alicia', 1956, 'F', 1037), +(74014, 'Bernice', 1956, 'F', 1034), +(74015, 'Jamie', 1956, 'F', 1030), +(74016, 'Francine', 1956, 'F', 1025), +(74017, 'Beatrice', 1956, 'F', 1009), +(74018, 'Rosie', 1956, 'F', 1008), +(74019, 'Tanya', 1956, 'F', 1006), +(74020, 'Cecilia', 1956, 'F', 995), +(74021, 'Kristine', 1956, 'F', 993), +(74022, 'Dora', 1956, 'F', 991), +(74023, 'Ella', 1956, 'F', 990), +(74024, 'Susie', 1956, 'F', 990), +(74025, 'Claire', 1956, 'F', 985), +(74026, 'Iris', 1956, 'F', 980), +(74027, 'Faye', 1956, 'F', 974), +(74028, 'Ginger', 1956, 'F', 972), +(74029, 'Sabrina', 1956, 'F', 956), +(74030, 'Antoinette', 1956, 'F', 951), +(74031, 'Bertha', 1956, 'F', 949), +(74032, 'Nadine', 1956, 'F', 948), +(74033, 'Alma', 1956, 'F', 947), +(74034, 'Florence', 1956, 'F', 943), +(74035, 'Lauren', 1956, 'F', 935), +(74036, 'Ida', 1956, 'F', 933), +(74037, 'Willie', 1956, 'F', 933), +(74038, 'Crystal', 1956, 'F', 930), +(74039, 'Shelly', 1956, 'F', 929), +(74040, 'Lucinda', 1956, 'F', 925), +(74041, 'Bernadette', 1956, 'F', 923), +(74042, 'Cherie', 1956, 'F', 923), +(74043, 'Patrice', 1956, 'F', 914), +(74044, 'Irma', 1956, 'F', 906), +(74045, 'Jeannette', 1956, 'F', 903), +(74046, 'Myra', 1956, 'F', 898), +(74047, 'Jeri', 1956, 'F', 893), +(74048, 'Maxine', 1956, 'F', 893), +(74049, 'Pam', 1956, 'F', 868), +(74050, 'Yvette', 1956, 'F', 864), +(74051, 'Christy', 1956, 'F', 860), +(74052, 'Terrie', 1956, 'F', 858), +(74053, 'Jana', 1956, 'F', 843), +(74054, 'Candy', 1956, 'F', 840), +(74055, 'Ronda', 1956, 'F', 837), +(74056, 'Dale', 1956, 'F', 835), +(74057, 'Lillie', 1956, 'F', 832), +(74058, 'Kelly', 1956, 'F', 831), +(74059, 'Rosemarie', 1956, 'F', 808), +(74060, 'Cassandra', 1956, 'F', 807), +(74061, 'Rochelle', 1956, 'F', 784), +(74062, 'Faith', 1956, 'F', 777), +(74063, 'Hazel', 1956, 'F', 772), +(74064, 'Stella', 1956, 'F', 764), +(74065, 'Gwen', 1956, 'F', 761), +(74066, 'Jenny', 1956, 'F', 760), +(74067, 'Nanette', 1956, 'F', 760), +(74068, 'Naomi', 1956, 'F', 754), +(74069, 'Kerry', 1956, 'F', 741), +(74070, 'Trudy', 1956, 'F', 741), +(74071, 'Tamara', 1956, 'F', 729), +(74072, 'Karin', 1956, 'F', 726), +(74073, 'Candice', 1956, 'F', 722), +(74074, 'Celeste', 1956, 'F', 721), +(74075, 'Susanne', 1956, 'F', 712), +(74076, 'Lorna', 1956, 'F', 705), +(74077, 'Caroline', 1956, 'F', 700), +(74078, 'Adrienne', 1956, 'F', 695), +(74079, 'Jennie', 1956, 'F', 694), +(74080, 'Shannon', 1956, 'F', 692), +(74081, 'Velma', 1956, 'F', 691), +(74082, 'Lora', 1956, 'F', 688), +(74083, 'Jessie', 1956, 'F', 683), +(74084, 'Lana', 1956, 'F', 680), +(74085, 'Marcella', 1956, 'F', 671), +(74086, 'Kristi', 1956, 'F', 669), +(74087, 'Leah', 1956, 'F', 668), +(74088, 'Rosanne', 1956, 'F', 667), +(74089, 'Cecelia', 1956, 'F', 665), +(74090, 'Heather', 1956, 'F', 661), +(74091, 'Marguerite', 1956, 'F', 654), +(74092, 'Molly', 1956, 'F', 654), +(74093, 'Deloris', 1956, 'F', 649), +(74094, 'Amanda', 1956, 'F', 643), +(74095, 'Dixie', 1956, 'F', 626), +(74096, 'Sonia', 1956, 'F', 626), +(74097, 'Hilda', 1956, 'F', 625), +(74098, 'Janette', 1956, 'F', 619), +(74099, 'Rene', 1956, 'F', 615), +(74100, 'Leigh', 1956, 'F', 613), +(74101, 'Natalie', 1956, 'F', 612), +(74102, 'Chris', 1956, 'F', 611), +(74103, 'Verna', 1956, 'F', 607), +(74104, 'Shari', 1956, 'F', 605), +(74105, 'Kimberley', 1956, 'F', 595), +(74106, 'Alison', 1956, 'F', 593), +(74107, 'Laverne', 1956, 'F', 593), +(74108, 'Harriet', 1956, 'F', 592), +(74109, 'Kathie', 1956, 'F', 586), +(74110, 'Rosalie', 1956, 'F', 586), +(74111, 'Janine', 1956, 'F', 577), +(74112, 'Bridget', 1956, 'F', 576), +(74113, 'Lorrie', 1956, 'F', 574), +(74114, 'Rosalind', 1956, 'F', 570), +(74115, 'Jodi', 1956, 'F', 569), +(74116, 'Johnnie', 1956, 'F', 568), +(74117, 'Gretchen', 1956, 'F', 567), +(74118, 'Tonya', 1956, 'F', 566), +(74119, 'Madeline', 1956, 'F', 564), +(74120, 'Celia', 1956, 'F', 558), +(74121, 'Desiree', 1956, 'F', 556), +(74122, 'Mattie', 1956, 'F', 555), +(74123, 'Cora', 1956, 'F', 553), +(74124, 'Polly', 1956, 'F', 552), +(74125, 'Shawn', 1956, 'F', 548), +(74126, 'Mindy', 1956, 'F', 546), +(74127, 'Geneva', 1956, 'F', 545), +(74128, 'Hope', 1956, 'F', 545), +(74129, 'Olga', 1956, 'F', 545), +(74130, 'Della', 1956, 'F', 543), +(74131, 'Guadalupe', 1956, 'F', 543), +(74132, 'Unknown', 1956, 'F', 540), +(74133, 'Lena', 1956, 'F', 537), +(74134, 'Olivia', 1956, 'F', 537), +(74135, 'Luanne', 1956, 'F', 534), +(74136, 'Ernestine', 1956, 'F', 533), +(74137, 'Gay', 1956, 'F', 529), +(74138, 'Freda', 1956, 'F', 528), +(74139, 'Amelia', 1956, 'F', 525), +(74140, 'Viola', 1956, 'F', 525), +(74141, 'Leona', 1956, 'F', 521), +(74142, 'Margarita', 1956, 'F', 521), +(74143, 'Lola', 1956, 'F', 518), +(74144, 'Lenora', 1956, 'F', 516), +(74145, 'Tracey', 1956, 'F', 516), +(74146, 'Bessie', 1956, 'F', 514), +(74147, 'Corinne', 1956, 'F', 512), +(74148, 'Margo', 1956, 'F', 512), +(74149, 'Agnes', 1956, 'F', 508), +(74150, 'Ava', 1956, 'F', 508), +(74151, 'Jeanine', 1956, 'F', 508), +(74152, 'Dena', 1956, 'F', 503), +(74153, 'Camille', 1956, 'F', 500), +(74154, 'Daisy', 1956, 'F', 496), +(74155, 'Minnie', 1956, 'F', 496), +(74156, 'Jolene', 1956, 'F', 494), +(74157, 'Noreen', 1956, 'F', 491), +(74158, 'Katie', 1956, 'F', 486), +(74159, 'Nellie', 1956, 'F', 486), +(74160, 'Stacey', 1956, 'F', 486), +(74161, 'Joanna', 1956, 'F', 483), +(74162, 'Christie', 1956, 'F', 480), +(74163, 'Delia', 1956, 'F', 480), +(74164, 'Elsie', 1956, 'F', 477), +(74165, 'Leticia', 1956, 'F', 477), +(74166, 'Sonja', 1956, 'F', 470), +(74167, 'Dee', 1956, 'F', 469), +(74168, 'Felicia', 1956, 'F', 469), +(74169, 'Pearl', 1956, 'F', 468), +(74170, 'Ana', 1956, 'F', 466), +(74171, 'Rena', 1956, 'F', 466), +(74172, 'Mae', 1956, 'F', 464), +(74173, 'Debby', 1956, 'F', 461), +(74174, 'Stacy', 1956, 'F', 459), +(74175, 'Ladonna', 1956, 'F', 458), +(74176, 'Jeanie', 1956, 'F', 453), +(74177, 'Kristin', 1956, 'F', 453), +(74178, 'Tara', 1956, 'F', 453), +(74179, 'Myrna', 1956, 'F', 452), +(74180, 'Helene', 1956, 'F', 451), +(74181, 'Reba', 1956, 'F', 451), +(74182, 'Alberta', 1956, 'F', 447), +(74183, 'Diann', 1956, 'F', 446), +(74184, 'Leanne', 1956, 'F', 444), +(74185, 'Robbie', 1956, 'F', 444), +(74186, 'Jerri', 1956, 'F', 442), +(74187, 'Pat', 1956, 'F', 434), +(74188, 'Katrina', 1956, 'F', 433), +(74189, 'Jeannine', 1956, 'F', 431), +(74190, 'Lorie', 1956, 'F', 431), +(74191, 'Lila', 1956, 'F', 428), +(74192, 'Mitzi', 1956, 'F', 425), +(74193, 'Leann', 1956, 'F', 424), +(74194, 'Claudette', 1956, 'F', 423), +(74195, 'Denice', 1956, 'F', 422), +(74196, 'Dona', 1956, 'F', 418), +(74197, 'Suzan', 1956, 'F', 418), +(74198, 'Colette', 1956, 'F', 410), +(74199, 'Flora', 1956, 'F', 408), +(74200, 'Melodie', 1956, 'F', 408), +(74201, 'Rae', 1956, 'F', 408), +(74202, 'Eunice', 1956, 'F', 406), +(74203, 'Jessica', 1956, 'F', 406), +(74204, 'Katharine', 1956, 'F', 405), +(74205, 'Glenna', 1956, 'F', 404), +(74206, 'Nita', 1956, 'F', 404), +(74207, 'Robbin', 1956, 'F', 404), +(74208, 'Isabel', 1956, 'F', 403), +(74209, 'Jocelyn', 1956, 'F', 403), +(74210, 'Allison', 1956, 'F', 402), +(74211, 'Kathi', 1956, 'F', 402), +(74212, 'Marcy', 1956, 'F', 400), +(74213, 'Lynnette', 1956, 'F', 399), +(74214, 'Ada', 1956, 'F', 397), +(74215, 'Gayla', 1956, 'F', 397), +(74216, 'Randi', 1956, 'F', 396), +(74217, 'Elise', 1956, 'F', 395), +(74218, 'Marta', 1956, 'F', 395), +(74219, 'Sonya', 1956, 'F', 394), +(74220, 'Frankie', 1956, 'F', 393), +(74221, 'Roxann', 1956, 'F', 391), +(74222, 'Hattie', 1956, 'F', 389), +(74223, 'Althea', 1956, 'F', 387), +(74224, 'Rosalyn', 1956, 'F', 384), +(74225, 'Sondra', 1956, 'F', 384), +(74226, 'Lea', 1956, 'F', 382), +(74227, 'Rosetta', 1956, 'F', 382), +(74228, 'Penelope', 1956, 'F', 381), +(74229, 'Sharlene', 1956, 'F', 381), +(74230, 'Angie', 1956, 'F', 375), +(74231, 'Roslyn', 1956, 'F', 374), +(74232, 'Janelle', 1956, 'F', 369), +(74233, 'Kristy', 1956, 'F', 369), +(74234, 'Violet', 1956, 'F', 368), +(74235, 'Cathryn', 1956, 'F', 367), +(74236, 'Suzette', 1956, 'F', 366), +(74237, 'Sharron', 1956, 'F', 365), +(74238, 'Adele', 1956, 'F', 362), +(74239, 'Roseann', 1956, 'F', 362), +(74240, 'Mamie', 1956, 'F', 361), +(74241, 'Mari', 1956, 'F', 361), +(74242, 'Henrietta', 1956, 'F', 360), +(74243, 'Bobbi', 1956, 'F', 357), +(74244, 'Melba', 1956, 'F', 357), +(74245, 'Estella', 1956, 'F', 355), +(74246, 'Trina', 1956, 'F', 354), +(74247, 'Kaye', 1956, 'F', 351), +(74248, 'Kristina', 1956, 'F', 350), +(74249, 'Lorene', 1956, 'F', 350), +(74250, 'Eloise', 1956, 'F', 349), +(74251, 'Elena', 1956, 'F', 346), +(74252, 'Geralyn', 1956, 'F', 346), +(74253, 'Kimberlee', 1956, 'F', 345), +(74254, 'Saundra', 1956, 'F', 345), +(74255, 'Shelby', 1956, 'F', 343), +(74256, 'Valarie', 1956, 'F', 342), +(74257, 'Gertrude', 1956, 'F', 340), +(74258, 'Gracie', 1956, 'F', 336), +(74259, 'Darcy', 1956, 'F', 334), +(74260, 'Charmaine', 1956, 'F', 333), +(74261, 'Dinah', 1956, 'F', 333), +(74262, 'Sallie', 1956, 'F', 330), +(74263, 'Vickey', 1956, 'F', 330), +(74264, 'Lula', 1956, 'F', 329), +(74265, 'Eugenia', 1956, 'F', 328), +(74266, 'Fay', 1956, 'F', 327), +(74267, 'Ruthie', 1956, 'F', 327), +(74268, 'Antonia', 1956, 'F', 325), +(74269, 'Lauri', 1956, 'F', 324), +(74270, 'Ivy', 1956, 'F', 322), +(74271, 'Teena', 1956, 'F', 322), +(74272, 'Fannie', 1956, 'F', 320), +(74273, 'Leesa', 1956, 'F', 318), +(74274, 'Elisabeth', 1956, 'F', 313), +(74275, 'Elsa', 1956, 'F', 310), +(74276, 'Jodie', 1956, 'F', 308), +(74277, 'Malinda', 1956, 'F', 308), +(74278, 'Roxane', 1956, 'F', 308), +(74279, 'Erin', 1956, 'F', 307), +(74280, 'Erma', 1956, 'F', 307), +(74281, 'Marisa', 1956, 'F', 307), +(74282, 'Eve', 1956, 'F', 305), +(74283, 'Coleen', 1956, 'F', 303), +(74284, 'Lesa', 1956, 'F', 303), +(74285, 'Cherry', 1956, 'F', 302), +(74286, 'Kris', 1956, 'F', 302), +(74287, 'Lu', 1956, 'F', 302), +(74288, 'Caren', 1956, 'F', 301), +(74289, 'Ilene', 1956, 'F', 301), +(74290, 'Carlene', 1956, 'F', 300), +(74291, 'Merry', 1956, 'F', 298), +(74292, 'Lesley', 1956, 'F', 296), +(74293, 'Deana', 1956, 'F', 295), +(74294, 'Kristie', 1956, 'F', 294), +(74295, 'Dorothea', 1956, 'F', 293), +(74296, 'Johanna', 1956, 'F', 291), +(74297, 'Laureen', 1956, 'F', 290), +(74298, 'Meredith', 1956, 'F', 290), +(74299, 'Elisa', 1956, 'F', 288), +(74300, 'Julianne', 1956, 'F', 288), +(74301, 'Avis', 1956, 'F', 287), +(74302, 'Maggie', 1956, 'F', 287), +(74303, 'Blanca', 1956, 'F', 286), +(74304, 'Benita', 1956, 'F', 284), +(74305, 'Inez', 1956, 'F', 283), +(74306, 'Bette', 1956, 'F', 282), +(74307, 'Pamala', 1956, 'F', 282), +(74308, 'Deena', 1956, 'F', 280), +(74309, 'Josie', 1956, 'F', 280), +(74310, 'Nelda', 1956, 'F', 279), +(74311, 'Genevieve', 1956, 'F', 278), +(74312, 'Kitty', 1956, 'F', 278), +(74313, 'Lyn', 1956, 'F', 277), +(74314, 'Rachelle', 1956, 'F', 277), +(74315, 'Kathrine', 1956, 'F', 275), +(74316, 'Maryanne', 1956, 'F', 275), +(74317, 'Deirdre', 1956, 'F', 274), +(74318, 'Dorene', 1956, 'F', 274), +(74319, 'Rosalinda', 1956, 'F', 272), +(74320, 'Clare', 1956, 'F', 271), +(74321, 'Debrah', 1956, 'F', 270), +(74322, 'Alfreda', 1956, 'F', 268); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(74323, 'Angelia', 1956, 'F', 267), +(74324, 'Tena', 1956, 'F', 267), +(74325, 'Cheryle', 1956, 'F', 266), +(74326, 'Jewel', 1956, 'F', 266), +(74327, 'Geri', 1956, 'F', 265), +(74328, 'Patrica', 1956, 'F', 263), +(74329, 'Daphne', 1956, 'F', 262), +(74330, 'Angelina', 1956, 'F', 261), +(74331, 'Tammy', 1956, 'F', 260), +(74332, 'Caryn', 1956, 'F', 259), +(74333, 'Christi', 1956, 'F', 259), +(74334, 'Lorri', 1956, 'F', 259), +(74335, 'Roxie', 1956, 'F', 259), +(74336, 'Earnestine', 1956, 'F', 258), +(74337, 'Ingrid', 1956, 'F', 258), +(74338, 'Myrtle', 1956, 'F', 258), +(74339, 'Etta', 1956, 'F', 257), +(74340, 'Terese', 1956, 'F', 257), +(74341, 'Debbra', 1956, 'F', 254), +(74342, 'Greta', 1956, 'F', 254), +(74343, 'Lavonne', 1956, 'F', 254), +(74344, 'Winifred', 1956, 'F', 254), +(74345, 'Marva', 1956, 'F', 252), +(74346, 'Maryellen', 1956, 'F', 252), +(74347, 'Valorie', 1956, 'F', 252), +(74348, 'Cathie', 1956, 'F', 251), +(74349, 'Georgette', 1956, 'F', 251), +(74350, 'Lenore', 1956, 'F', 250), +(74351, 'Mable', 1956, 'F', 250), +(74352, 'Maura', 1956, 'F', 250), +(74353, 'James', 1956, 'F', 249), +(74354, 'Kristen', 1956, 'F', 249), +(74355, 'Blanche', 1956, 'F', 248), +(74356, 'Dolly', 1956, 'F', 248), +(74357, 'Marilynn', 1956, 'F', 248), +(74358, 'Pattie', 1956, 'F', 246), +(74359, 'Karon', 1956, 'F', 245), +(74360, 'Bettie', 1956, 'F', 244), +(74361, 'Michael', 1956, 'F', 244), +(74362, 'Alisa', 1956, 'F', 242), +(74363, 'Delois', 1956, 'F', 241), +(74364, 'Krista', 1956, 'F', 241), +(74365, 'Rhoda', 1956, 'F', 241), +(74366, 'Bonny', 1956, 'F', 240), +(74367, 'Danette', 1956, 'F', 240), +(74368, 'Sadie', 1956, 'F', 240), +(74369, 'Cindi', 1956, 'F', 239), +(74370, 'Kari', 1956, 'F', 238), +(74371, 'Lela', 1956, 'F', 238), +(74372, 'Earlene', 1956, 'F', 237), +(74373, 'Kendra', 1956, 'F', 237), +(74374, 'Silvia', 1956, 'F', 235), +(74375, 'Dawna', 1956, 'F', 234), +(74376, 'Renae', 1956, 'F', 233), +(74377, 'Fern', 1956, 'F', 232), +(74378, 'Beverley', 1956, 'F', 231), +(74379, 'Luz', 1956, 'F', 231), +(74380, 'Marcie', 1956, 'F', 230), +(74381, 'Sherrill', 1956, 'F', 230), +(74382, 'Ina', 1956, 'F', 227), +(74383, 'Helena', 1956, 'F', 225), +(74384, 'Edwina', 1956, 'F', 224), +(74385, 'Ora', 1956, 'F', 224), +(74386, 'Gaye', 1956, 'F', 223), +(74387, 'John', 1956, 'F', 222), +(74388, 'Valeria', 1956, 'F', 222), +(74389, 'Danielle', 1956, 'F', 221), +(74390, 'Muriel', 1956, 'F', 219), +(74391, 'Arleen', 1956, 'F', 218), +(74392, 'Deanne', 1956, 'F', 218), +(74393, 'Lucia', 1956, 'F', 218), +(74394, 'Nan', 1956, 'F', 218), +(74395, 'Bambi', 1956, 'F', 217), +(74396, 'Elvira', 1956, 'F', 217), +(74397, 'Cinda', 1956, 'F', 216), +(74398, 'Elva', 1956, 'F', 216), +(74399, 'Nanci', 1956, 'F', 216), +(74400, 'Janell', 1956, 'F', 215), +(74401, 'Jerry', 1956, 'F', 215), +(74402, 'Loraine', 1956, 'F', 215), +(74403, 'Nona', 1956, 'F', 214), +(74404, 'Robert', 1956, 'F', 214), +(74405, 'Letha', 1956, 'F', 213), +(74406, 'Nettie', 1956, 'F', 213), +(74407, 'Corrine', 1956, 'F', 210), +(74408, 'Essie', 1956, 'F', 210), +(74409, 'Rebekah', 1956, 'F', 210), +(74410, 'Renita', 1956, 'F', 210), +(74411, 'Shauna', 1956, 'F', 210), +(74412, 'Twila', 1956, 'F', 210), +(74413, 'Karyn', 1956, 'F', 208), +(74414, 'Sherie', 1956, 'F', 208), +(74415, 'Clarice', 1956, 'F', 207), +(74416, 'Marina', 1956, 'F', 207), +(74417, 'Millie', 1956, 'F', 207), +(74418, 'Nola', 1956, 'F', 207), +(74419, 'Mollie', 1956, 'F', 205), +(74420, 'Roxanna', 1956, 'F', 205), +(74421, 'Dina', 1956, 'F', 204), +(74422, 'Georgina', 1956, 'F', 204), +(74423, 'Karol', 1956, 'F', 204), +(74424, 'Lupe', 1956, 'F', 204), +(74425, 'Doretha', 1956, 'F', 202), +(74426, 'Melva', 1956, 'F', 201), +(74427, 'Rosanna', 1956, 'F', 200), +(74428, 'Danita', 1956, 'F', 199), +(74429, 'Bettye', 1956, 'F', 198), +(74430, 'Dorinda', 1956, 'F', 198), +(74431, 'Iva', 1956, 'F', 198), +(74432, 'Joe', 1956, 'F', 198), +(74433, 'Janna', 1956, 'F', 196), +(74434, 'Megan', 1956, 'F', 196), +(74435, 'Madonna', 1956, 'F', 195), +(74436, 'Randy', 1956, 'F', 195), +(74437, 'Kerri', 1956, 'F', 194), +(74438, 'Debi', 1956, 'F', 193), +(74439, 'Minerva', 1956, 'F', 193), +(74440, 'Juliana', 1956, 'F', 192), +(74441, 'Marybeth', 1956, 'F', 191), +(74442, 'Charla', 1956, 'F', 190), +(74443, 'Freida', 1956, 'F', 190), +(74444, 'Abigail', 1956, 'F', 189), +(74445, 'Jannie', 1956, 'F', 189), +(74446, 'Mercedes', 1956, 'F', 189), +(74447, 'Graciela', 1956, 'F', 188), +(74448, 'Kyle', 1956, 'F', 186), +(74449, 'Mariann', 1956, 'F', 186), +(74450, 'Vikki', 1956, 'F', 185), +(74451, 'Willa', 1956, 'F', 185), +(74452, 'Maribeth', 1956, 'F', 184), +(74453, 'Tonia', 1956, 'F', 184), +(74454, 'Carmela', 1956, 'F', 183), +(74455, 'Joanie', 1956, 'F', 183), +(74456, 'Katheryn', 1956, 'F', 183), +(74457, 'Tommie', 1956, 'F', 183), +(74458, 'Alexis', 1956, 'F', 182), +(74459, 'Erica', 1956, 'F', 182), +(74460, 'Mabel', 1956, 'F', 182), +(74461, 'Marylou', 1956, 'F', 182), +(74462, 'Ollie', 1956, 'F', 182), +(74463, 'Teressa', 1956, 'F', 182), +(74464, 'Nannette', 1956, 'F', 181), +(74465, 'Addie', 1956, 'F', 180), +(74466, 'Gisele', 1956, 'F', 180), +(74467, 'Leila', 1956, 'F', 180), +(74468, 'Mara', 1956, 'F', 180), +(74469, 'Susanna', 1956, 'F', 180), +(74470, 'Gilda', 1956, 'F', 179), +(74471, 'Aileen', 1956, 'F', 178), +(74472, 'Cathrine', 1956, 'F', 178), +(74473, 'Felecia', 1956, 'F', 178), +(74474, 'Francis', 1956, 'F', 178), +(74475, 'Harriett', 1956, 'F', 178), +(74476, 'Caryl', 1956, 'F', 177), +(74477, 'Dorthy', 1956, 'F', 177), +(74478, 'Jimmie', 1956, 'F', 177), +(74479, 'Dottie', 1956, 'F', 175), +(74480, 'Deann', 1956, 'F', 174), +(74481, 'Eula', 1956, 'F', 174), +(74482, 'Aurora', 1956, 'F', 173), +(74483, 'Delilah', 1956, 'F', 173), +(74484, 'Jaye', 1956, 'F', 173), +(74485, 'Nikki', 1956, 'F', 173), +(74486, 'Cara', 1956, 'F', 172), +(74487, 'Clarissa', 1956, 'F', 172), +(74488, 'Marci', 1956, 'F', 172), +(74489, 'Neva', 1956, 'F', 172), +(74490, 'Alexandra', 1956, 'F', 171), +(74491, 'Caron', 1956, 'F', 171), +(74492, 'Lorena', 1956, 'F', 171), +(74493, 'Raquel', 1956, 'F', 171), +(74494, 'Karan', 1956, 'F', 170), +(74495, 'Tricia', 1956, 'F', 170), +(74496, 'Marietta', 1956, 'F', 169), +(74497, 'Queen', 1956, 'F', 169), +(74498, 'Leeann', 1956, 'F', 168), +(74499, 'Darleen', 1956, 'F', 167), +(74500, 'Gena', 1956, 'F', 167), +(74501, 'Sybil', 1956, 'F', 167), +(74502, 'Cornelia', 1956, 'F', 166), +(74503, 'Sherryl', 1956, 'F', 166), +(74504, 'Annmarie', 1956, 'F', 165), +(74505, 'Cecile', 1956, 'F', 165), +(74506, 'Deidre', 1956, 'F', 165), +(74507, 'May', 1956, 'F', 165), +(74508, 'Christa', 1956, 'F', 164), +(74509, 'Ester', 1956, 'F', 164), +(74510, 'Jacklyn', 1956, 'F', 164), +(74511, 'Libby', 1956, 'F', 164), +(74512, 'Louann', 1956, 'F', 164), +(74513, 'Maryjo', 1956, 'F', 164), +(74514, 'Aida', 1956, 'F', 163), +(74515, 'Kandy', 1956, 'F', 163), +(74516, 'Lilly', 1956, 'F', 163), +(74517, 'Donita', 1956, 'F', 162), +(74518, 'Hilary', 1956, 'F', 162), +(74519, 'Milagros', 1956, 'F', 162), +(74520, 'Earline', 1956, 'F', 161), +(74521, 'Fran', 1956, 'F', 161), +(74522, 'Jewell', 1956, 'F', 161), +(74523, 'Lavern', 1956, 'F', 161), +(74524, 'Reva', 1956, 'F', 161), +(74525, 'Bernadine', 1956, 'F', 160), +(74526, 'Carmella', 1956, 'F', 160), +(74527, 'Frieda', 1956, 'F', 160), +(74528, 'Rosario', 1956, 'F', 160), +(74529, 'Vonda', 1956, 'F', 160), +(74530, 'Lily', 1956, 'F', 159), +(74531, 'Peggie', 1956, 'F', 159), +(74532, 'Carey', 1956, 'F', 158), +(74533, 'Charles', 1956, 'F', 158), +(74534, 'David', 1956, 'F', 158), +(74535, 'Estelle', 1956, 'F', 158), +(74536, 'Kelley', 1956, 'F', 158), +(74537, 'Lottie', 1956, 'F', 157), +(74538, 'Pearlie', 1956, 'F', 157), +(74539, 'Shirlene', 1956, 'F', 157), +(74540, 'Tracie', 1956, 'F', 157), +(74541, 'Velda', 1956, 'F', 157), +(74542, 'William', 1956, 'F', 157), +(74543, 'Bethany', 1956, 'F', 156), +(74544, 'Marilee', 1956, 'F', 156), +(74545, 'Meryl', 1956, 'F', 156), +(74546, 'Mimi', 1956, 'F', 156), +(74547, 'Sandi', 1956, 'F', 155), +(74548, 'Delphine', 1956, 'F', 154), +(74549, 'Aleta', 1956, 'F', 153), +(74550, 'Danna', 1956, 'F', 153), +(74551, 'Judi', 1956, 'F', 153), +(74552, 'Lourdes', 1956, 'F', 153), +(74553, 'Nicole', 1956, 'F', 153), +(74554, 'Celestine', 1956, 'F', 152), +(74555, 'Leola', 1956, 'F', 152), +(74556, 'Jacquline', 1956, 'F', 151), +(74557, 'Lizzie', 1956, 'F', 151), +(74558, 'Opal', 1956, 'F', 151), +(74559, 'Madelyn', 1956, 'F', 150), +(74560, 'Valencia', 1956, 'F', 150), +(74561, 'Debbi', 1956, 'F', 149), +(74562, 'Mickey', 1956, 'F', 149), +(74563, 'Reta', 1956, 'F', 149), +(74564, 'Joycelyn', 1956, 'F', 148), +(74565, 'Cherrie', 1956, 'F', 147), +(74566, 'Jenifer', 1956, 'F', 147), +(74567, 'Tana', 1956, 'F', 147), +(74568, 'Twyla', 1956, 'F', 147), +(74569, 'Eddie', 1956, 'F', 146), +(74570, 'Consuelo', 1956, 'F', 144), +(74571, 'Lise', 1956, 'F', 144), +(74572, 'Lucretia', 1956, 'F', 144), +(74573, 'Margery', 1956, 'F', 144), +(74574, 'Cheryll', 1956, 'F', 143), +(74575, 'Mavis', 1956, 'F', 143), +(74576, 'Pamella', 1956, 'F', 143), +(74577, 'Cleo', 1956, 'F', 142), +(74578, 'Dian', 1956, 'F', 142), +(74579, 'Evangeline', 1956, 'F', 142), +(74580, 'Francesca', 1956, 'F', 142), +(74581, 'Retha', 1956, 'F', 142), +(74582, 'Roseanne', 1956, 'F', 142), +(74583, 'Sherree', 1956, 'F', 142), +(74584, 'Hannah', 1956, 'F', 141), +(74585, 'Lawanda', 1956, 'F', 141), +(74586, 'Louisa', 1956, 'F', 141), +(74587, 'Zelda', 1956, 'F', 141), +(74588, 'Jacalyn', 1956, 'F', 140), +(74589, 'Migdalia', 1956, 'F', 140), +(74590, 'Venita', 1956, 'F', 140), +(74591, 'Beulah', 1956, 'F', 139), +(74592, 'Lindy', 1956, 'F', 139), +(74593, 'Magdalena', 1956, 'F', 139), +(74594, 'Dani', 1956, 'F', 137), +(74595, 'Joellen', 1956, 'F', 137), +(74596, 'Leta', 1956, 'F', 137), +(74597, 'Lorelei', 1956, 'F', 137), +(74598, 'Susana', 1956, 'F', 137), +(74599, 'Carmel', 1956, 'F', 136), +(74600, 'Cherri', 1956, 'F', 136), +(74601, 'Daryl', 1956, 'F', 136), +(74602, 'Freddie', 1956, 'F', 136), +(74603, 'Jann', 1956, 'F', 136), +(74604, 'Lizabeth', 1956, 'F', 136), +(74605, 'Ronnie', 1956, 'F', 136), +(74606, 'Sheena', 1956, 'F', 136), +(74607, 'Carleen', 1956, 'F', 135), +(74608, 'Catharine', 1956, 'F', 135), +(74609, 'Starr', 1956, 'F', 135), +(74610, 'Pennie', 1956, 'F', 134), +(74611, 'Portia', 1956, 'F', 134), +(74612, 'Roni', 1956, 'F', 134), +(74613, 'Ursula', 1956, 'F', 134), +(74614, 'Alyce', 1956, 'F', 133), +(74615, 'Barbra', 1956, 'F', 133), +(74616, 'Alana', 1956, 'F', 132), +(74617, 'Candis', 1956, 'F', 132), +(74618, 'Dara', 1956, 'F', 132), +(74619, 'Gerri', 1956, 'F', 131), +(74620, 'Goldie', 1956, 'F', 131), +(74621, 'Kelli', 1956, 'F', 131), +(74622, 'Marty', 1956, 'F', 131), +(74623, 'Shawna', 1956, 'F', 131), +(74624, 'Effie', 1956, 'F', 130), +(74625, 'Richard', 1956, 'F', 130), +(74626, 'Martina', 1956, 'F', 129), +(74627, 'Barb', 1956, 'F', 128), +(74628, 'Corliss', 1956, 'F', 128), +(74629, 'Janeen', 1956, 'F', 128), +(74630, 'Jerilyn', 1956, 'F', 128), +(74631, 'Joleen', 1956, 'F', 128), +(74632, 'Tami', 1956, 'F', 128), +(74633, 'Adela', 1956, 'F', 127), +(74634, 'Athena', 1956, 'F', 127), +(74635, 'Kathey', 1956, 'F', 127), +(74636, 'Madeleine', 1956, 'F', 127), +(74637, 'Bettina', 1956, 'F', 126), +(74638, 'Ronna', 1956, 'F', 126), +(74639, 'Callie', 1956, 'F', 125), +(74640, 'Camilla', 1956, 'F', 125), +(74641, 'Cary', 1956, 'F', 125), +(74642, 'Juliann', 1956, 'F', 125), +(74643, 'Mickie', 1956, 'F', 125), +(74644, 'Romona', 1956, 'F', 125), +(74645, 'Dayna', 1956, 'F', 124), +(74646, 'Josefina', 1956, 'F', 124), +(74647, 'Juliet', 1956, 'F', 124), +(74648, 'Kellie', 1956, 'F', 124), +(74649, 'Lauretta', 1956, 'F', 124), +(74650, 'Sharen', 1956, 'F', 124), +(74651, 'Angel', 1956, 'F', 123), +(74652, 'Dollie', 1956, 'F', 123), +(74653, 'Ginny', 1956, 'F', 123), +(74654, 'Jacque', 1956, 'F', 123), +(74655, 'Ophelia', 1956, 'F', 123), +(74656, 'Oralia', 1956, 'F', 123), +(74657, 'Shellie', 1956, 'F', 123), +(74658, 'Vernell', 1956, 'F', 123), +(74659, 'Amber', 1956, 'F', 122), +(74660, 'Annetta', 1956, 'F', 122), +(74661, 'Ola', 1956, 'F', 122), +(74662, 'Starla', 1956, 'F', 122), +(74663, 'Angelita', 1956, 'F', 121), +(74664, 'Daria', 1956, 'F', 121), +(74665, 'Elyse', 1956, 'F', 121), +(74666, 'Juana', 1956, 'F', 121), +(74667, 'Marlys', 1956, 'F', 121), +(74668, 'Rachael', 1956, 'F', 121), +(74669, 'Rowena', 1956, 'F', 121), +(74670, 'Sophia', 1956, 'F', 121), +(74671, 'Winona', 1956, 'F', 121), +(74672, 'Lona', 1956, 'F', 120), +(74673, 'Lorinda', 1956, 'F', 120), +(74674, 'Sydney', 1956, 'F', 120), +(74675, 'Lonnie', 1956, 'F', 119), +(74676, 'Wendi', 1956, 'F', 119), +(74677, 'Cathey', 1956, 'F', 118), +(74678, 'Gaylene', 1956, 'F', 118), +(74679, 'Petra', 1956, 'F', 118), +(74680, 'Treva', 1956, 'F', 118), +(74681, 'Abby', 1956, 'F', 117), +(74682, 'Liz', 1956, 'F', 117), +(74683, 'Alta', 1956, 'F', 116), +(74684, 'Cassie', 1956, 'F', 116), +(74685, 'Jeanna', 1956, 'F', 116), +(74686, 'Kara', 1956, 'F', 116), +(74687, 'Leisa', 1956, 'F', 116), +(74688, 'Taryn', 1956, 'F', 116), +(74689, 'Merri', 1956, 'F', 115), +(74690, 'Selma', 1956, 'F', 115), +(74691, 'Vernita', 1956, 'F', 115), +(74692, 'Charleen', 1956, 'F', 114), +(74693, 'Paige', 1956, 'F', 114), +(74694, 'Rhea', 1956, 'F', 114), +(74695, 'Suzann', 1956, 'F', 114), +(74696, 'Angeline', 1956, 'F', 113), +(74697, 'Chandra', 1956, 'F', 113), +(74698, 'Dori', 1956, 'F', 113), +(74699, 'Matilda', 1956, 'F', 113), +(74700, 'Elnora', 1956, 'F', 112), +(74701, 'Jannette', 1956, 'F', 112), +(74702, 'Laurene', 1956, 'F', 112), +(74703, 'Nicki', 1956, 'F', 112), +(74704, 'Venus', 1956, 'F', 112), +(74705, 'Marita', 1956, 'F', 111), +(74706, 'Odessa', 1956, 'F', 111), +(74707, 'Rosita', 1956, 'F', 111), +(74708, 'Antionette', 1956, 'F', 110), +(74709, 'Elissa', 1956, 'F', 110), +(74710, 'Glendora', 1956, 'F', 110), +(74711, 'Jami', 1956, 'F', 110), +(74712, 'Meg', 1956, 'F', 110), +(74713, 'Millicent', 1956, 'F', 110), +(74714, 'Cristina', 1956, 'F', 109), +(74715, 'Kate', 1956, 'F', 109), +(74716, 'Phoebe', 1956, 'F', 109), +(74717, 'Adrian', 1956, 'F', 108), +(74718, 'Delma', 1956, 'F', 108), +(74719, 'Monique', 1956, 'F', 108), +(74720, 'Sharyn', 1956, 'F', 108), +(74721, 'Stacie', 1956, 'F', 108), +(74722, 'Suellen', 1956, 'F', 108), +(74723, 'Toby', 1956, 'F', 108), +(74724, 'Veda', 1956, 'F', 108), +(74725, 'Annamarie', 1956, 'F', 107), +(74726, 'Carmelita', 1956, 'F', 107), +(74727, 'Carolina', 1956, 'F', 107), +(74728, 'Eliza', 1956, 'F', 107), +(74729, 'Glynis', 1956, 'F', 107), +(74730, 'Jerrie', 1956, 'F', 107), +(74731, 'Juli', 1956, 'F', 107), +(74732, 'Justine', 1956, 'F', 107), +(74733, 'Letitia', 1956, 'F', 107), +(74734, 'Maritza', 1956, 'F', 107), +(74735, 'Merle', 1956, 'F', 107), +(74736, 'Merrie', 1956, 'F', 107), +(74737, 'Babette', 1956, 'F', 106), +(74738, 'Beryl', 1956, 'F', 106), +(74739, 'Corine', 1956, 'F', 106), +(74740, 'Lani', 1956, 'F', 106), +(74741, 'Leanna', 1956, 'F', 106), +(74742, 'Nell', 1956, 'F', 106), +(74743, 'Rona', 1956, 'F', 106), +(74744, 'Adrianne', 1956, 'F', 105), +(74745, 'Bobby', 1956, 'F', 105), +(74746, 'Elida', 1956, 'F', 105), +(74747, 'Larry', 1956, 'F', 105), +(74748, 'Sheron', 1956, 'F', 105), +(74749, 'Darline', 1956, 'F', 104), +(74750, 'Debroah', 1956, 'F', 104), +(74751, 'Margot', 1956, 'F', 104), +(74752, 'Melodee', 1956, 'F', 104), +(74753, 'Spring', 1956, 'F', 104), +(74754, 'Elma', 1956, 'F', 103), +(74755, 'Esperanza', 1956, 'F', 103), +(74756, 'Hollis', 1956, 'F', 103), +(74757, 'Theodora', 1956, 'F', 103), +(74758, 'Thomas', 1956, 'F', 103), +(74759, 'Virgie', 1956, 'F', 103), +(74760, 'Erika', 1956, 'F', 102), +(74761, 'Evonne', 1956, 'F', 102), +(74762, 'Gerry', 1956, 'F', 102), +(74763, 'Sanjuanita', 1956, 'F', 102), +(74764, 'Beckie', 1956, 'F', 101), +(74765, 'Eartha', 1956, 'F', 101), +(74766, 'Hollie', 1956, 'F', 101), +(74767, 'Keri', 1956, 'F', 101), +(74768, 'Marianna', 1956, 'F', 101), +(74769, 'Sharla', 1956, 'F', 101), +(74770, 'Traci', 1956, 'F', 101), +(74771, 'Collette', 1956, 'F', 100), +(74772, 'Donnie', 1956, 'F', 100), +(74773, 'Janey', 1956, 'F', 100), +(74774, 'Leslee', 1956, 'F', 100), +(74775, 'Michael', 1956, 'M', 90633), +(74776, 'James', 1956, 'M', 84860), +(74777, 'Robert', 1956, 'M', 83903), +(74778, 'David', 1956, 'M', 81603), +(74779, 'John', 1956, 'M', 80760), +(74780, 'William', 1956, 'M', 58956), +(74781, 'Richard', 1956, 'M', 52879), +(74782, 'Mark', 1956, 'M', 48808), +(74783, 'Thomas', 1956, 'M', 44800), +(74784, 'Steven', 1956, 'M', 38383), +(74785, 'Charles', 1956, 'M', 35208), +(74786, 'Joseph', 1956, 'M', 32702), +(74787, 'Gary', 1956, 'M', 31796), +(74788, 'Donald', 1956, 'M', 28203), +(74789, 'Ronald', 1956, 'M', 27724), +(74790, 'Kenneth', 1956, 'M', 27405), +(74791, 'Paul', 1956, 'M', 26869), +(74792, 'Daniel', 1956, 'M', 26629), +(74793, 'Timothy', 1956, 'M', 23271), +(74794, 'Jeffrey', 1956, 'M', 23269), +(74795, 'Larry', 1956, 'M', 22299), +(74796, 'Kevin', 1956, 'M', 21767), +(74797, 'Stephen', 1956, 'M', 21207), +(74798, 'Gregory', 1956, 'M', 21080), +(74799, 'Edward', 1956, 'M', 19417), +(74800, 'Dennis', 1956, 'M', 18354), +(74801, 'George', 1956, 'M', 17231), +(74802, 'Randy', 1956, 'M', 16540), +(74803, 'Douglas', 1956, 'M', 16359), +(74804, 'Anthony', 1956, 'M', 15548), +(74805, 'Terry', 1956, 'M', 15045), +(74806, 'Bruce', 1956, 'M', 14651), +(74807, 'Brian', 1956, 'M', 14650), +(74808, 'Scott', 1956, 'M', 13222), +(74809, 'Jerry', 1956, 'M', 12612), +(74810, 'Keith', 1956, 'M', 11482), +(74811, 'Peter', 1956, 'M', 11320), +(74812, 'Frank', 1956, 'M', 11136), +(74813, 'Raymond', 1956, 'M', 11086), +(74814, 'Patrick', 1956, 'M', 10335), +(74815, 'Roger', 1956, 'M', 10144), +(74816, 'Lawrence', 1956, 'M', 8881), +(74817, 'Ricky', 1956, 'M', 8771), +(74818, 'Wayne', 1956, 'M', 8723), +(74819, 'Alan', 1956, 'M', 8721), +(74820, 'Danny', 1956, 'M', 8553), +(74821, 'Christopher', 1956, 'M', 8377), +(74822, 'Carl', 1956, 'M', 8305), +(74823, 'Gerald', 1956, 'M', 7978), +(74824, 'Dale', 1956, 'M', 7707), +(74825, 'Craig', 1956, 'M', 7424), +(74826, 'Russell', 1956, 'M', 7404), +(74827, 'Walter', 1956, 'M', 7015), +(74828, 'Randall', 1956, 'M', 6898), +(74829, 'Johnny', 1956, 'M', 6634), +(74830, 'Andrew', 1956, 'M', 6593), +(74831, 'Jeffery', 1956, 'M', 6562), +(74832, 'Willie', 1956, 'M', 6488), +(74833, 'Steve', 1956, 'M', 6478), +(74834, 'Arthur', 1956, 'M', 6276), +(74835, 'Glenn', 1956, 'M', 6204), +(74836, 'Roy', 1956, 'M', 6131), +(74837, 'Joe', 1956, 'M', 6122), +(74838, 'Philip', 1956, 'M', 6108), +(74839, 'Rodney', 1956, 'M', 6061), +(74840, 'Jack', 1956, 'M', 6055), +(74841, 'Ralph', 1956, 'M', 6029), +(74842, 'Billy', 1956, 'M', 6011), +(74843, 'Barry', 1956, 'M', 5981), +(74844, 'Stanley', 1956, 'M', 5976), +(74845, 'Henry', 1956, 'M', 5951), +(74846, 'Harold', 1956, 'M', 5946), +(74847, 'Martin', 1956, 'M', 5675), +(74848, 'Samuel', 1956, 'M', 5572), +(74849, 'Ronnie', 1956, 'M', 5508), +(74850, 'Phillip', 1956, 'M', 5416), +(74851, 'Bobby', 1956, 'M', 5360), +(74852, 'Jimmy', 1956, 'M', 5340), +(74853, 'Eric', 1956, 'M', 5247), +(74854, 'Albert', 1956, 'M', 5156), +(74855, 'Curtis', 1956, 'M', 5151), +(74856, 'Louis', 1956, 'M', 4900), +(74857, 'Micheal', 1956, 'M', 4733), +(74858, 'Howard', 1956, 'M', 4690), +(74859, 'Tony', 1956, 'M', 4673), +(74860, 'Eugene', 1956, 'M', 4607), +(74861, 'Allen', 1956, 'M', 4596), +(74862, 'Darrell', 1956, 'M', 4456), +(74863, 'Leonard', 1956, 'M', 4372), +(74864, 'Matthew', 1956, 'M', 4364), +(74865, 'Frederick', 1956, 'M', 4303), +(74866, 'Jay', 1956, 'M', 4119), +(74867, 'Eddie', 1956, 'M', 3990), +(74868, 'Ernest', 1956, 'M', 3950), +(74869, 'Harry', 1956, 'M', 3922), +(74870, 'Mike', 1956, 'M', 3908), +(74871, 'Victor', 1956, 'M', 3896), +(74872, 'Vincent', 1956, 'M', 3761), +(74873, 'Dean', 1956, 'M', 3717), +(74874, 'Rick', 1956, 'M', 3650), +(74875, 'Melvin', 1956, 'M', 3633), +(74876, 'Fred', 1956, 'M', 3574), +(74877, 'Bradley', 1956, 'M', 3511), +(74878, 'Lee', 1956, 'M', 3510), +(74879, 'Marvin', 1956, 'M', 3479), +(74880, 'Joel', 1956, 'M', 3438), +(74881, 'Norman', 1956, 'M', 3423), +(74882, 'Jose', 1956, 'M', 3396), +(74883, 'Calvin', 1956, 'M', 3330), +(74884, 'Earl', 1956, 'M', 3302), +(74885, 'Francis', 1956, 'M', 3291), +(74886, 'Rickey', 1956, 'M', 3262), +(74887, 'Ray', 1956, 'M', 3230), +(74888, 'Jonathan', 1956, 'M', 3119), +(74889, 'Tommy', 1956, 'M', 3112), +(74890, 'Jon', 1956, 'M', 3075), +(74891, 'Jerome', 1956, 'M', 3061), +(74892, 'Kim', 1956, 'M', 2955), +(74893, 'Theodore', 1956, 'M', 2951), +(74894, 'Clarence', 1956, 'M', 2950), +(74895, 'Alfred', 1956, 'M', 2938), +(74896, 'Clifford', 1956, 'M', 2908), +(74897, 'Don', 1956, 'M', 2894), +(74898, 'Edwin', 1956, 'M', 2775), +(74899, 'Glen', 1956, 'M', 2716), +(74900, 'Jesse', 1956, 'M', 2621), +(74901, 'Duane', 1956, 'M', 2597), +(74902, 'Chris', 1956, 'M', 2527), +(74903, 'Bernard', 1956, 'M', 2480), +(74904, 'Gordon', 1956, 'M', 2477), +(74905, 'Benjamin', 1956, 'M', 2471), +(74906, 'Dan', 1956, 'M', 2438), +(74907, 'Bryan', 1956, 'M', 2436), +(74908, 'Marc', 1956, 'M', 2426), +(74909, 'Alvin', 1956, 'M', 2425), +(74910, 'Mitchell', 1956, 'M', 2407), +(74911, 'Herbert', 1956, 'M', 2388), +(74912, 'Kurt', 1956, 'M', 2383), +(74913, 'Dwight', 1956, 'M', 2366), +(74914, 'Leroy', 1956, 'M', 2349), +(74915, 'Warren', 1956, 'M', 2338), +(74916, 'Brad', 1956, 'M', 2260), +(74917, 'Robin', 1956, 'M', 2240), +(74918, 'Reginald', 1956, 'M', 2229), +(74919, 'Jeff', 1956, 'M', 2220), +(74920, 'Nicholas', 1956, 'M', 2216), +(74921, 'Guy', 1956, 'M', 2215), +(74922, 'Jim', 1956, 'M', 2190), +(74923, 'Kent', 1956, 'M', 2136), +(74924, 'Karl', 1956, 'M', 2058), +(74925, 'Leslie', 1956, 'M', 2053), +(74926, 'Vernon', 1956, 'M', 2049), +(74927, 'Garry', 1956, 'M', 2041), +(74928, 'Leon', 1956, 'M', 2040), +(74929, 'Todd', 1956, 'M', 2013), +(74930, 'Lonnie', 1956, 'M', 2012), +(74931, 'Wesley', 1956, 'M', 2009), +(74932, 'Lloyd', 1956, 'M', 1980), +(74933, 'Bill', 1956, 'M', 1957), +(74934, 'Gilbert', 1956, 'M', 1955), +(74935, 'Tom', 1956, 'M', 1914), +(74936, 'Kirk', 1956, 'M', 1900), +(74937, 'Perry', 1956, 'M', 1867), +(74938, 'Jackie', 1956, 'M', 1859), +(74939, 'Daryl', 1956, 'M', 1831), +(74940, 'Carlos', 1956, 'M', 1794), +(74941, 'Franklin', 1956, 'M', 1783), +(74942, 'Lewis', 1956, 'M', 1764), +(74943, 'Gene', 1956, 'M', 1749), +(74944, 'Neil', 1956, 'M', 1749), +(74945, 'Juan', 1956, 'M', 1746), +(74946, 'Floyd', 1956, 'M', 1727), +(74947, 'Donnie', 1956, 'M', 1721), +(74948, 'Clyde', 1956, 'M', 1719), +(74949, 'Tim', 1956, 'M', 1712), +(74950, 'Lester', 1956, 'M', 1700), +(74951, 'Dana', 1956, 'M', 1635), +(74952, 'Allan', 1956, 'M', 1633), +(74953, 'Randolph', 1956, 'M', 1632), +(74954, 'Gerard', 1956, 'M', 1620), +(74955, 'Manuel', 1956, 'M', 1615), +(74956, 'Greg', 1956, 'M', 1601), +(74957, 'Kerry', 1956, 'M', 1580), +(74958, 'Leo', 1956, 'M', 1546), +(74959, 'Charlie', 1956, 'M', 1531), +(74960, 'Stuart', 1956, 'M', 1489), +(74961, 'Darryl', 1956, 'M', 1478), +(74962, 'Milton', 1956, 'M', 1478), +(74963, 'Kelly', 1956, 'M', 1472), +(74964, 'Jimmie', 1956, 'M', 1469), +(74965, 'Ted', 1956, 'M', 1459), +(74966, 'Brent', 1956, 'M', 1451), +(74967, 'Rex', 1956, 'M', 1449), +(74968, 'Terrence', 1956, 'M', 1448), +(74969, 'Gregg', 1956, 'M', 1434), +(74970, 'Freddie', 1956, 'M', 1426), +(74971, 'Tyrone', 1956, 'M', 1405), +(74972, 'Harvey', 1956, 'M', 1375), +(74973, 'Ruben', 1956, 'M', 1365), +(74974, 'Dave', 1956, 'M', 1356), +(74975, 'Herman', 1956, 'M', 1323), +(74976, 'Randal', 1956, 'M', 1322), +(74977, 'Maurice', 1956, 'M', 1321), +(74978, 'Johnnie', 1956, 'M', 1316), +(74979, 'Nathaniel', 1956, 'M', 1303), +(74980, 'Aaron', 1956, 'M', 1277), +(74981, 'Chester', 1956, 'M', 1257), +(74982, 'Lynn', 1956, 'M', 1250), +(74983, 'Byron', 1956, 'M', 1249), +(74984, 'Alexander', 1956, 'M', 1241), +(74985, 'Antonio', 1956, 'M', 1238), +(74986, 'Roland', 1956, 'M', 1222), +(74987, 'Arnold', 1956, 'M', 1215), +(74988, 'Mario', 1956, 'M', 1208), +(74989, 'Cecil', 1956, 'M', 1146), +(74990, 'Fredrick', 1956, 'M', 1135), +(74991, 'Oscar', 1956, 'M', 1133), +(74992, 'Lance', 1956, 'M', 1116), +(74993, 'Marshall', 1956, 'M', 1116), +(74994, 'Neal', 1956, 'M', 1102), +(74995, 'Ricardo', 1956, 'M', 1096), +(74996, 'Nathan', 1956, 'M', 1095), +(74997, 'Luis', 1956, 'M', 1086), +(74998, 'Wade', 1956, 'M', 1078), +(74999, 'Marcus', 1956, 'M', 1061), +(75000, 'Terrance', 1956, 'M', 1059), +(75001, 'Jessie', 1956, 'M', 1050), +(75002, 'Bob', 1956, 'M', 1019), +(75003, 'Wendell', 1956, 'M', 1010), +(75004, 'Marty', 1956, 'M', 1009), +(75005, 'Claude', 1956, 'M', 1005), +(75006, 'Clifton', 1956, 'M', 1001), +(75007, 'Ross', 1956, 'M', 991), +(75008, 'Clayton', 1956, 'M', 966), +(75009, 'Clinton', 1956, 'M', 960), +(75010, 'Hugh', 1956, 'M', 957), +(75011, 'Sidney', 1956, 'M', 955), +(75012, 'Sam', 1956, 'M', 951), +(75013, 'Joey', 1956, 'M', 946), +(75014, 'Wallace', 1956, 'M', 933), +(75015, 'Nelson', 1956, 'M', 916), +(75016, 'Carlton', 1956, 'M', 908), +(75017, 'Rocky', 1956, 'M', 892), +(75018, 'Terence', 1956, 'M', 887), +(75019, 'Benny', 1956, 'M', 883), +(75020, 'Rickie', 1956, 'M', 869), +(75021, 'Edgar', 1956, 'M', 853), +(75022, 'Andre', 1956, 'M', 841), +(75023, 'Jesus', 1956, 'M', 821), +(75024, 'Morris', 1956, 'M', 819), +(75025, 'Mickey', 1956, 'M', 817), +(75026, 'Raul', 1956, 'M', 813), +(75027, 'Alex', 1956, 'M', 810), +(75028, 'Derrick', 1956, 'M', 807), +(75029, 'Kenny', 1956, 'M', 800), +(75030, 'Dwayne', 1956, 'M', 799), +(75031, 'Hector', 1956, 'M', 799), +(75032, 'Lyle', 1956, 'M', 793), +(75033, 'Geoffrey', 1956, 'M', 790), +(75034, 'Francisco', 1956, 'M', 781), +(75035, 'Tracy', 1956, 'M', 771), +(75036, 'Ron', 1956, 'M', 763), +(75037, 'Frankie', 1956, 'M', 760), +(75038, 'Kelvin', 1956, 'M', 758), +(75039, 'Roberto', 1956, 'M', 748), +(75040, 'Max', 1956, 'M', 745), +(75041, 'Marion', 1956, 'M', 744), +(75042, 'Ben', 1956, 'M', 739), +(75043, 'Sammy', 1956, 'M', 737), +(75044, 'Rudy', 1956, 'M', 728), +(75045, 'Bennie', 1956, 'M', 727), +(75046, 'Bradford', 1956, 'M', 722), +(75047, 'Earnest', 1956, 'M', 722), +(75048, 'Rudolph', 1956, 'M', 720), +(75049, 'Myron', 1956, 'M', 712), +(75050, 'Virgil', 1956, 'M', 710), +(75051, 'Troy', 1956, 'M', 708), +(75052, 'Clark', 1956, 'M', 706), +(75053, 'Otis', 1956, 'M', 704), +(75054, 'Ira', 1956, 'M', 699), +(75055, 'Everett', 1956, 'M', 694), +(75056, 'Roderick', 1956, 'M', 684), +(75057, 'Andy', 1956, 'M', 674), +(75058, 'Miguel', 1956, 'M', 672), +(75059, 'Ken', 1956, 'M', 655), +(75060, 'Elmer', 1956, 'M', 653), +(75061, 'Willard', 1956, 'M', 652), +(75062, 'Laurence', 1956, 'M', 651), +(75063, 'Stewart', 1956, 'M', 648), +(75064, 'Angelo', 1956, 'M', 647), +(75065, 'Armando', 1956, 'M', 645), +(75066, 'Loren', 1956, 'M', 643), +(75067, 'Ramon', 1956, 'M', 642), +(75068, 'Darrel', 1956, 'M', 627), +(75069, 'Ivan', 1956, 'M', 626), +(75070, 'Monte', 1956, 'M', 622), +(75071, 'Sylvester', 1956, 'M', 617), +(75072, 'Delbert', 1956, 'M', 616), +(75073, 'Grant', 1956, 'M', 616), +(75074, 'Derek', 1956, 'M', 614), +(75075, 'Salvatore', 1956, 'M', 611), +(75076, 'Luther', 1956, 'M', 610), +(75077, 'Roosevelt', 1956, 'M', 607), +(75078, 'Alton', 1956, 'M', 599), +(75079, 'Hal', 1956, 'M', 597), +(75080, 'Edmund', 1956, 'M', 593), +(75081, 'Felix', 1956, 'M', 590), +(75082, 'Pedro', 1956, 'M', 590), +(75083, 'Pete', 1956, 'M', 573), +(75084, 'Shawn', 1956, 'M', 571), +(75085, 'Sean', 1956, 'M', 570), +(75086, 'Malcolm', 1956, 'M', 568), +(75087, 'Lorenzo', 1956, 'M', 564), +(75088, 'Teddy', 1956, 'M', 560), +(75089, 'Cary', 1956, 'M', 554), +(75090, 'Isaac', 1956, 'M', 551), +(75091, 'Jeffry', 1956, 'M', 550), +(75092, 'Preston', 1956, 'M', 548), +(75093, 'Archie', 1956, 'M', 545), +(75094, 'Horace', 1956, 'M', 541), +(75095, 'Rene', 1956, 'M', 538), +(75096, 'Jacob', 1956, 'M', 535), +(75097, 'Sherman', 1956, 'M', 531), +(75098, 'Doyle', 1956, 'M', 525), +(75099, 'Leland', 1956, 'M', 516), +(75100, 'Fernando', 1956, 'M', 510), +(75101, 'Wilbert', 1956, 'M', 510), +(75102, 'Julius', 1956, 'M', 509), +(75103, 'Rory', 1956, 'M', 509), +(75104, 'Lowell', 1956, 'M', 507), +(75105, 'Jan', 1956, 'M', 503), +(75106, 'Rodger', 1956, 'M', 500), +(75107, 'Jerald', 1956, 'M', 498), +(75108, 'Nick', 1956, 'M', 496), +(75109, 'Angel', 1956, 'M', 495), +(75110, 'Denis', 1956, 'M', 491), +(75111, 'Tommie', 1956, 'M', 489), +(75112, 'Hubert', 1956, 'M', 488), +(75113, 'Drew', 1956, 'M', 487), +(75114, 'Clay', 1956, 'M', 485), +(75115, 'Oliver', 1956, 'M', 484), +(75116, 'Stephan', 1956, 'M', 474), +(75117, 'Kyle', 1956, 'M', 472), +(75118, 'Van', 1956, 'M', 472), +(75119, 'Homer', 1956, 'M', 466), +(75120, 'Unknown', 1956, 'M', 459), +(75121, 'Gerry', 1956, 'M', 452), +(75122, 'Julian', 1956, 'M', 450), +(75123, 'Rafael', 1956, 'M', 445), +(75124, 'Adrian', 1956, 'M', 443), +(75125, 'Jason', 1956, 'M', 440), +(75126, 'Forrest', 1956, 'M', 438), +(75127, 'Willis', 1956, 'M', 438), +(75128, 'Rusty', 1956, 'M', 436), +(75129, 'Ervin', 1956, 'M', 431), +(75130, 'Arturo', 1956, 'M', 426), +(75131, 'Ellis', 1956, 'M', 421), +(75132, 'Pat', 1956, 'M', 421), +(75133, 'Alfredo', 1956, 'M', 420), +(75134, 'Elvis', 1956, 'M', 420), +(75135, 'Freddy', 1956, 'M', 420), +(75136, 'Alonzo', 1956, 'M', 418), +(75137, 'Sheldon', 1956, 'M', 414), +(75138, 'Dallas', 1956, 'M', 412), +(75139, 'Timmy', 1956, 'M', 410), +(75140, 'Lionel', 1956, 'M', 407), +(75141, 'Doug', 1956, 'M', 404), +(75142, 'Wilbur', 1956, 'M', 402), +(75143, 'Rufus', 1956, 'M', 400), +(75144, 'Dexter', 1956, 'M', 399), +(75145, 'Jaime', 1956, 'M', 398), +(75146, 'Owen', 1956, 'M', 398), +(75147, 'Al', 1956, 'M', 397), +(75148, 'Mack', 1956, 'M', 396), +(75149, 'Stevie', 1956, 'M', 396), +(75150, 'Adam', 1956, 'M', 394), +(75151, 'Brett', 1956, 'M', 394), +(75152, 'Dominic', 1956, 'M', 393), +(75153, 'Carroll', 1956, 'M', 392), +(75154, 'Christian', 1956, 'M', 392), +(75155, 'Noel', 1956, 'M', 390), +(75156, 'Dewey', 1956, 'M', 389), +(75157, 'Scot', 1956, 'M', 389), +(75158, 'Monty', 1956, 'M', 382), +(75159, 'Travis', 1956, 'M', 382), +(75160, 'Bert', 1956, 'M', 379), +(75161, 'Boyd', 1956, 'M', 377), +(75162, 'Alberto', 1956, 'M', 372), +(75163, 'Alfonso', 1956, 'M', 371), +(75164, 'Darwin', 1956, 'M', 371), +(75165, 'Jorge', 1956, 'M', 370), +(75166, 'Matt', 1956, 'M', 370), +(75167, 'Aubrey', 1956, 'M', 369), +(75168, 'Dirk', 1956, 'M', 365), +(75169, 'Grady', 1956, 'M', 365), +(75170, 'Marlon', 1956, 'M', 363), +(75171, 'Carey', 1956, 'M', 361), +(75172, 'Ronny', 1956, 'M', 361), +(75173, 'Dewayne', 1956, 'M', 357), +(75174, 'Evan', 1956, 'M', 357), +(75175, 'Vance', 1956, 'M', 357), +(75176, 'Royce', 1956, 'M', 355), +(75177, 'Curt', 1956, 'M', 354), +(75178, 'Irvin', 1956, 'M', 354), +(75179, 'Casey', 1956, 'M', 352), +(75180, 'Blaine', 1956, 'M', 350), +(75181, 'Conrad', 1956, 'M', 348), +(75182, 'Buddy', 1956, 'M', 347), +(75183, 'Shane', 1956, 'M', 344), +(75184, 'Kirby', 1956, 'M', 343), +(75185, 'Chuck', 1956, 'M', 342), +(75186, 'Gabriel', 1956, 'M', 342), +(75187, 'Orlando', 1956, 'M', 341), +(75188, 'Javier', 1956, 'M', 338), +(75189, 'Dominick', 1956, 'M', 335), +(75190, 'Phil', 1956, 'M', 333), +(75191, 'Cleveland', 1956, 'M', 326), +(75192, 'Ernie', 1956, 'M', 325), +(75193, 'Sammie', 1956, 'M', 324), +(75194, 'Edmond', 1956, 'M', 321), +(75195, 'Cornelius', 1956, 'M', 320), +(75196, 'Emmett', 1956, 'M', 320), +(75197, 'Miles', 1956, 'M', 320), +(75198, 'Ernesto', 1956, 'M', 316), +(75199, 'Percy', 1956, 'M', 315), +(75200, 'Elbert', 1956, 'M', 314), +(75201, 'Salvador', 1956, 'M', 314), +(75202, 'Louie', 1956, 'M', 313), +(75203, 'Robbie', 1956, 'M', 311), +(75204, 'Darnell', 1956, 'M', 308), +(75205, 'Murray', 1956, 'M', 308), +(75206, 'Christophe', 1956, 'M', 307), +(75207, 'Spencer', 1956, 'M', 306), +(75208, 'Abraham', 1956, 'M', 305), +(75209, 'Kendall', 1956, 'M', 303), +(75210, 'Wilson', 1956, 'M', 302), +(75211, 'Alphonso', 1956, 'M', 300), +(75212, 'Guadalupe', 1956, 'M', 297), +(75213, 'Corey', 1956, 'M', 293), +(75214, 'Dane', 1956, 'M', 293), +(75215, 'Garland', 1956, 'M', 293), +(75216, 'Merle', 1956, 'M', 290), +(75217, 'Jody', 1956, 'M', 289), +(75218, 'Marlin', 1956, 'M', 288), +(75219, 'Colin', 1956, 'M', 285), +(75220, 'Elton', 1956, 'M', 285), +(75221, 'Jamie', 1956, 'M', 285), +(75222, 'Galen', 1956, 'M', 283), +(75223, 'Norris', 1956, 'M', 283), +(75224, 'Sterling', 1956, 'M', 283), +(75225, 'Blake', 1956, 'M', 282), +(75226, 'Cedric', 1956, 'M', 282), +(75227, 'Julio', 1956, 'M', 282), +(75228, 'Rodolfo', 1956, 'M', 282), +(75229, 'Reed', 1956, 'M', 281), +(75230, 'Justin', 1956, 'M', 278), +(75231, 'Enrique', 1956, 'M', 277), +(75232, 'Zachary', 1956, 'M', 273), +(75233, 'Lamar', 1956, 'M', 272), +(75234, 'Jess', 1956, 'M', 270), +(75235, 'Wilfred', 1956, 'M', 269), +(75236, 'Winston', 1956, 'M', 269), +(75237, 'Kris', 1956, 'M', 267), +(75238, 'Ed', 1956, 'M', 266), +(75239, 'Joesph', 1956, 'M', 261), +(75240, 'Audie', 1956, 'M', 260), +(75241, 'Barney', 1956, 'M', 260), +(75242, 'Randell', 1956, 'M', 259), +(75243, 'Bart', 1956, 'M', 257), +(75244, 'Clint', 1956, 'M', 257), +(75245, 'Rocco', 1956, 'M', 257), +(75246, 'Wyatt', 1956, 'M', 257), +(75247, 'Denny', 1956, 'M', 256), +(75248, 'Ned', 1956, 'M', 255), +(75249, 'Thaddeus', 1956, 'M', 255), +(75250, 'Harlan', 1956, 'M', 253), +(75251, 'Amos', 1956, 'M', 252), +(75252, 'Erik', 1956, 'M', 252), +(75253, 'Emanuel', 1956, 'M', 251), +(75254, 'Elliott', 1956, 'M', 250), +(75255, 'Moses', 1956, 'M', 249), +(75256, 'Eldon', 1956, 'M', 248), +(75257, 'Luke', 1956, 'M', 248), +(75258, 'Bryant', 1956, 'M', 247), +(75259, 'Seth', 1956, 'M', 247), +(75260, 'Stan', 1956, 'M', 246), +(75261, 'Eddy', 1956, 'M', 245), +(75262, 'Toby', 1956, 'M', 245), +(75263, 'Sandy', 1956, 'M', 244), +(75264, 'Dannie', 1956, 'M', 241), +(75265, 'Joshua', 1956, 'M', 241), +(75266, 'Lon', 1956, 'M', 236), +(75267, 'Damon', 1956, 'M', 235), +(75268, 'Eduardo', 1956, 'M', 235), +(75269, 'Harley', 1956, 'M', 235), +(75270, 'Kennith', 1956, 'M', 235), +(75271, 'Grover', 1956, 'M', 233), +(75272, 'Woodrow', 1956, 'M', 233), +(75273, 'Blair', 1956, 'M', 231), +(75274, 'Mathew', 1956, 'M', 231), +(75275, 'Junior', 1956, 'M', 230), +(75276, 'Cameron', 1956, 'M', 228), +(75277, 'Michel', 1956, 'M', 226), +(75278, 'Austin', 1956, 'M', 225), +(75279, 'Orville', 1956, 'M', 225), +(75280, 'Donny', 1956, 'M', 224), +(75281, 'Chad', 1956, 'M', 223), +(75282, 'Billie', 1956, 'M', 222), +(75283, 'Bennett', 1956, 'M', 221), +(75284, 'Reynaldo', 1956, 'M', 221), +(75285, 'Irving', 1956, 'M', 220), +(75286, 'Reuben', 1956, 'M', 220), +(75287, 'Lanny', 1956, 'M', 218), +(75288, 'Vaughn', 1956, 'M', 218), +(75289, 'Frederic', 1956, 'M', 213), +(75290, 'Abel', 1956, 'M', 212), +(75291, 'Linwood', 1956, 'M', 212), +(75292, 'Donnell', 1956, 'M', 211), +(75293, 'Rod', 1956, 'M', 211), +(75294, 'Ramiro', 1956, 'M', 210), +(75295, 'Simon', 1956, 'M', 209), +(75296, 'Carmen', 1956, 'M', 208), +(75297, 'Ismael', 1956, 'M', 205), +(75298, 'Russel', 1956, 'M', 205), +(75299, 'Sanford', 1956, 'M', 204), +(75300, 'Gilberto', 1956, 'M', 202), +(75301, 'Terrell', 1956, 'M', 201), +(75302, 'Cornell', 1956, 'M', 198), +(75303, 'Israel', 1956, 'M', 198), +(75304, 'Lamont', 1956, 'M', 198), +(75305, 'Levi', 1956, 'M', 198), +(75306, 'Morgan', 1956, 'M', 198), +(75307, 'Nolan', 1956, 'M', 198), +(75308, 'Mitchel', 1956, 'M', 197), +(75309, 'Kip', 1956, 'M', 196), +(75310, 'Loyd', 1956, 'M', 196), +(75311, 'Elijah', 1956, 'M', 195), +(75312, 'Erwin', 1956, 'M', 195), +(75313, 'Lane', 1956, 'M', 195), +(75314, 'Dwain', 1956, 'M', 194), +(75315, 'Ian', 1956, 'M', 194), +(75316, 'Gale', 1956, 'M', 193), +(75317, 'Pablo', 1956, 'M', 193), +(75318, 'Ward', 1956, 'M', 193), +(75319, 'Burton', 1956, 'M', 192), +(75320, 'Dick', 1956, 'M', 192), +(75321, 'Will', 1956, 'M', 192), +(75322, 'Winfred', 1956, 'M', 192), +(75323, 'Ryan', 1956, 'M', 191), +(75324, 'Bryce', 1956, 'M', 190), +(75325, 'Danial', 1956, 'M', 190), +(75326, 'Harrison', 1956, 'M', 190), +(75327, 'Reid', 1956, 'M', 190), +(75328, 'Dino', 1956, 'M', 189), +(75329, 'Elvin', 1956, 'M', 188), +(75330, 'Mikel', 1956, 'M', 186), +(75331, 'Tomas', 1956, 'M', 185), +(75332, 'Cory', 1956, 'M', 184), +(75333, 'Felipe', 1956, 'M', 184), +(75334, 'Kermit', 1956, 'M', 184), +(75335, 'Rolando', 1956, 'M', 184), +(75336, 'August', 1956, 'M', 183), +(75337, 'Jerrold', 1956, 'M', 183), +(75338, 'Jasper', 1956, 'M', 181), +(75339, 'Dudley', 1956, 'M', 180), +(75340, 'Wiley', 1956, 'M', 180), +(75341, 'Thurman', 1956, 'M', 179), +(75342, 'Alejandro', 1956, 'M', 178), +(75343, 'Carter', 1956, 'M', 178), +(75344, 'Duncan', 1956, 'M', 178), +(75345, 'Roman', 1956, 'M', 178), +(75346, 'Bobbie', 1956, 'M', 177), +(75347, 'Scotty', 1956, 'M', 177), +(75348, 'Barton', 1956, 'M', 176), +(75349, 'Roscoe', 1956, 'M', 176), +(75350, 'Weldon', 1956, 'M', 176), +(75351, 'Garth', 1956, 'M', 175), +(75352, 'Emil', 1956, 'M', 174), +(75353, 'Garrett', 1956, 'M', 173), +(75354, 'Vern', 1956, 'M', 173), +(75355, 'Guillermo', 1956, 'M', 171), +(75356, 'Rob', 1956, 'M', 171), +(75357, 'Domingo', 1956, 'M', 169), +(75358, 'Jean', 1956, 'M', 169), +(75359, 'Norbert', 1956, 'M', 169), +(75360, 'Brandon', 1956, 'M', 168), +(75361, 'Hank', 1956, 'M', 168), +(75362, 'Sergio', 1956, 'M', 168), +(75363, 'Val', 1956, 'M', 168), +(75364, 'Russ', 1956, 'M', 167), +(75365, 'Brady', 1956, 'M', 165), +(75366, 'Gus', 1956, 'M', 165), +(75367, 'Jonathon', 1956, 'M', 165), +(75368, 'Shannon', 1956, 'M', 165), +(75369, 'Stacy', 1956, 'M', 165), +(75370, 'Ulysses', 1956, 'M', 165), +(75371, 'Solomon', 1956, 'M', 163), +(75372, 'Jeremiah', 1956, 'M', 162), +(75373, 'Reggie', 1956, 'M', 162), +(75374, 'Pierre', 1956, 'M', 161), +(75375, 'Kimberly', 1956, 'M', 160), +(75376, 'Hans', 1956, 'M', 159), +(75377, 'Jefferson', 1956, 'M', 159), +(75378, 'Kurtis', 1956, 'M', 159), +(75379, 'Otto', 1956, 'M', 159), +(75380, 'Odell', 1956, 'M', 157), +(75381, 'Lonny', 1956, 'M', 156), +(75382, 'Bernie', 1956, 'M', 154), +(75383, 'Fredric', 1956, 'M', 154), +(75384, 'Andres', 1956, 'M', 153), +(75385, 'Armand', 1956, 'M', 153), +(75386, 'Jacky', 1956, 'M', 153), +(75387, 'Rogelio', 1956, 'M', 153), +(75388, 'Bryon', 1956, 'M', 152), +(75389, 'Burt', 1956, 'M', 152), +(75390, 'Eli', 1956, 'M', 152), +(75391, 'Elwood', 1956, 'M', 152), +(75392, 'Kenton', 1956, 'M', 152), +(75393, 'Santiago', 1956, 'M', 151), +(75394, 'Ivory', 1956, 'M', 150), +(75395, 'Merlin', 1956, 'M', 150), +(75396, 'Merrill', 1956, 'M', 150), +(75397, 'Cliff', 1956, 'M', 149), +(75398, 'Coy', 1956, 'M', 149), +(75399, 'Shelton', 1956, 'M', 149), +(75400, 'Donn', 1956, 'M', 148), +(75401, 'Nicky', 1956, 'M', 148), +(75402, 'Robby', 1956, 'M', 148), +(75403, 'Emery', 1956, 'M', 147), +(75404, 'Faron', 1956, 'M', 146), +(75405, 'Tod', 1956, 'M', 145), +(75406, 'Wilfredo', 1956, 'M', 145), +(75407, 'Elias', 1956, 'M', 144), +(75408, 'Mary', 1956, 'M', 143), +(75409, 'Hollis', 1956, 'M', 142), +(75410, 'Shaun', 1956, 'M', 142), +(75411, 'Sonny', 1956, 'M', 142), +(75412, 'Elliot', 1956, 'M', 141), +(75413, 'Jed', 1956, 'M', 141), +(75414, 'Vito', 1956, 'M', 141), +(75415, 'Avery', 1956, 'M', 140), +(75416, 'Charley', 1956, 'M', 140), +(75417, 'Davis', 1956, 'M', 140), +(75418, 'Lyndon', 1956, 'M', 140), +(75419, 'Butch', 1956, 'M', 139), +(75420, 'Jerold', 1956, 'M', 138), +(75421, 'Marco', 1956, 'M', 138), +(75422, 'Quentin', 1956, 'M', 138), +(75423, 'Jake', 1956, 'M', 137), +(75424, 'Noah', 1956, 'M', 137), +(75425, 'Rock', 1956, 'M', 136), +(75426, 'Santos', 1956, 'M', 136), +(75427, 'Vince', 1956, 'M', 136), +(75428, 'Keven', 1956, 'M', 134), +(75429, 'Tyler', 1956, 'M', 134), +(75430, 'Clement', 1956, 'M', 133), +(75431, 'Emory', 1956, 'M', 133), +(75432, 'Lindsey', 1956, 'M', 133), +(75433, 'Riley', 1956, 'M', 133), +(75434, 'Adolph', 1956, 'M', 132), +(75435, 'Harris', 1956, 'M', 132), +(75436, 'Shelby', 1956, 'M', 132), +(75437, 'Freeman', 1956, 'M', 131), +(75438, 'Gerardo', 1956, 'M', 131), +(75439, 'Ollie', 1956, 'M', 131), +(75440, 'Trent', 1956, 'M', 131), +(75441, 'Benito', 1956, 'M', 130), +(75442, 'Emilio', 1956, 'M', 130), +(75443, 'Millard', 1956, 'M', 130), +(75444, 'Royal', 1956, 'M', 129), +(75445, 'Ignacio', 1956, 'M', 128), +(75446, 'Denver', 1956, 'M', 127), +(75447, 'Delmar', 1956, 'M', 126), +(75448, 'Tad', 1956, 'M', 126), +(75449, 'Lenard', 1956, 'M', 125), +(75450, 'Monroe', 1956, 'M', 125), +(75451, 'Carmine', 1956, 'M', 124), +(75452, 'Hiram', 1956, 'M', 124), +(75453, 'Stanford', 1956, 'M', 124), +(75454, 'Zane', 1956, 'M', 123), +(75455, 'Maynard', 1956, 'M', 122), +(75456, 'Anton', 1956, 'M', 121), +(75457, 'Marcel', 1956, 'M', 121), +(75458, 'Myles', 1956, 'M', 121), +(75459, 'Broderick', 1956, 'M', 120), +(75460, 'Jackson', 1956, 'M', 120), +(75461, 'Ricki', 1956, 'M', 117), +(75462, 'Booker', 1956, 'M', 115), +(75463, 'Brendan', 1956, 'M', 115), +(75464, 'Clair', 1956, 'M', 115), +(75465, 'Everette', 1956, 'M', 115), +(75466, 'Douglass', 1956, 'M', 114), +(75467, 'Efrain', 1956, 'M', 114), +(75468, 'Carson', 1956, 'M', 113), +(75469, 'Gustavo', 1956, 'M', 113), +(75470, 'Les', 1956, 'M', 113), +(75471, 'Brooks', 1956, 'M', 112), +(75472, 'Gail', 1956, 'M', 112), +(75473, 'Noe', 1956, 'M', 112), +(75474, 'Saul', 1956, 'M', 112), +(75475, 'Arlen', 1956, 'M', 111), +(75476, 'Chip', 1956, 'M', 111), +(75477, 'Del', 1956, 'M', 111), +(75478, 'Mervin', 1956, 'M', 111), +(75479, 'Randel', 1956, 'M', 111), +(75480, 'Alden', 1956, 'M', 110), +(75481, 'Buford', 1956, 'M', 109), +(75482, 'Lenny', 1956, 'M', 109), +(75483, 'Kelley', 1956, 'M', 108), +(75484, 'Fritz', 1956, 'M', 107), +(75485, 'Johnathan', 1956, 'M', 107), +(75486, 'Linda', 1956, 'M', 107), +(75487, 'Nickolas', 1956, 'M', 107), +(75488, 'Errol', 1956, 'M', 105), +(75489, 'Irwin', 1956, 'M', 105), +(75490, 'Toney', 1956, 'M', 105), +(75491, 'Basil', 1956, 'M', 104), +(75492, 'Dickie', 1956, 'M', 104), +(75493, 'Duke', 1956, 'M', 104), +(75494, 'Connie', 1956, 'M', 103), +(75495, 'Dwaine', 1956, 'M', 103), +(75496, 'Marcos', 1956, 'M', 103), +(75497, 'Nicolas', 1956, 'M', 103), +(75498, 'Patricia', 1956, 'M', 103), +(75499, 'Ritchie', 1956, 'M', 103), +(75500, 'Rogers', 1956, 'M', 103), +(75501, 'Vicente', 1956, 'M', 103), +(75502, 'Augustine', 1956, 'M', 102), +(75503, 'Blane', 1956, 'M', 102), +(75504, 'Curtiss', 1956, 'M', 102), +(75505, 'Silas', 1956, 'M', 102), +(75506, 'Thad', 1956, 'M', 102), +(75507, 'Hilton', 1956, 'M', 101), +(75508, 'Wilford', 1956, 'M', 101), +(75509, 'Jordan', 1956, 'M', 100), +(75510, 'Mary', 1957, 'F', 61096), +(75511, 'Susan', 1957, 'F', 45945), +(75512, 'Linda', 1957, 'F', 44496), +(75513, 'Debra', 1957, 'F', 42723), +(75514, 'Karen', 1957, 'F', 40583), +(75515, 'Deborah', 1957, 'F', 40063), +(75516, 'Cynthia', 1957, 'F', 39310), +(75517, 'Patricia', 1957, 'F', 39277), +(75518, 'Barbara', 1957, 'F', 29686), +(75519, 'Donna', 1957, 'F', 28049), +(75520, 'Nancy', 1957, 'F', 27511), +(75521, 'Pamela', 1957, 'F', 25016), +(75522, 'Brenda', 1957, 'F', 24318), +(75523, 'Sharon', 1957, 'F', 24282), +(75524, 'Sandra', 1957, 'F', 22764), +(75525, 'Cheryl', 1957, 'F', 22641), +(75526, 'Diane', 1957, 'F', 22085), +(75527, 'Carol', 1957, 'F', 21900), +(75528, 'Cindy', 1957, 'F', 20257), +(75529, 'Kathy', 1957, 'F', 20232), +(75530, 'Kathleen', 1957, 'F', 19739), +(75531, 'Elizabeth', 1957, 'F', 17497), +(75532, 'Janet', 1957, 'F', 15747), +(75533, 'Teresa', 1957, 'F', 15679), +(75534, 'Denise', 1957, 'F', 15143), +(75535, 'Lisa', 1957, 'F', 15129), +(75536, 'Debbie', 1957, 'F', 14380), +(75537, 'Julie', 1957, 'F', 13635), +(75538, 'Margaret', 1957, 'F', 13012), +(75539, 'Robin', 1957, 'F', 12574), +(75540, 'Laura', 1957, 'F', 12178), +(75541, 'Janice', 1957, 'F', 11968), +(75542, 'Carolyn', 1957, 'F', 11571), +(75543, 'Rebecca', 1957, 'F', 11485), +(75544, 'Kim', 1957, 'F', 11426), +(75545, 'Theresa', 1957, 'F', 11182), +(75546, 'Catherine', 1957, 'F', 11145), +(75547, 'Judy', 1957, 'F', 10543), +(75548, 'Cathy', 1957, 'F', 10313), +(75549, 'Joyce', 1957, 'F', 10149), +(75550, 'Christine', 1957, 'F', 9578), +(75551, 'Kimberly', 1957, 'F', 9446), +(75552, 'Diana', 1957, 'F', 9427), +(75553, 'Ann', 1957, 'F', 9042), +(75554, 'Lori', 1957, 'F', 8970), +(75555, 'Shirley', 1957, 'F', 8847), +(75556, 'Connie', 1957, 'F', 8761), +(75557, 'Beverly', 1957, 'F', 8557), +(75558, 'Paula', 1957, 'F', 8539), +(75559, 'Betty', 1957, 'F', 8477), +(75560, 'Vicki', 1957, 'F', 8100), +(75561, 'Rhonda', 1957, 'F', 8039), +(75562, 'Judith', 1957, 'F', 8024), +(75563, 'Gail', 1957, 'F', 7937), +(75564, 'Sherry', 1957, 'F', 7816), +(75565, 'Jane', 1957, 'F', 7784), +(75566, 'Darlene', 1957, 'F', 7778), +(75567, 'Sheila', 1957, 'F', 7756), +(75568, 'Wanda', 1957, 'F', 7700), +(75569, 'Joan', 1957, 'F', 7584), +(75570, 'Lynn', 1957, 'F', 7433), +(75571, 'Peggy', 1957, 'F', 7379), +(75572, 'Martha', 1957, 'F', 7366), +(75573, 'Bonnie', 1957, 'F', 7241), +(75574, 'Kathryn', 1957, 'F', 7206), +(75575, 'Gloria', 1957, 'F', 7115), +(75576, 'Jean', 1957, 'F', 7045), +(75577, 'Terri', 1957, 'F', 6971), +(75578, 'Rose', 1957, 'F', 6900), +(75579, 'Vickie', 1957, 'F', 6840), +(75580, 'Maria', 1957, 'F', 6760), +(75581, 'Katherine', 1957, 'F', 6639), +(75582, 'Laurie', 1957, 'F', 6544), +(75583, 'Dorothy', 1957, 'F', 6402), +(75584, 'Virginia', 1957, 'F', 6248), +(75585, 'Valerie', 1957, 'F', 6225), +(75586, 'Leslie', 1957, 'F', 6102), +(75587, 'Rita', 1957, 'F', 6014), +(75588, 'Michelle', 1957, 'F', 5983), +(75589, 'Tina', 1957, 'F', 5858), +(75590, 'Anita', 1957, 'F', 5812), +(75591, 'Marilyn', 1957, 'F', 5738), +(75592, 'Jo', 1957, 'F', 5724), +(75593, 'Ruth', 1957, 'F', 5670), +(75594, 'Ellen', 1957, 'F', 5580), +(75595, 'Jennifer', 1957, 'F', 5481), +(75596, 'Anne', 1957, 'F', 5479), +(75597, 'Victoria', 1957, 'F', 5326), +(75598, 'Angela', 1957, 'F', 5324), +(75599, 'Phyllis', 1957, 'F', 5306), +(75600, 'Jacqueline', 1957, 'F', 5288), +(75601, 'Terry', 1957, 'F', 5262), +(75602, 'Dawn', 1957, 'F', 5161), +(75603, 'Joanne', 1957, 'F', 5105), +(75604, 'Helen', 1957, 'F', 5013), +(75605, 'Elaine', 1957, 'F', 5008), +(75606, 'Annette', 1957, 'F', 4895), +(75607, 'Marie', 1957, 'F', 4861), +(75608, 'Michele', 1957, 'F', 4741), +(75609, 'Jill', 1957, 'F', 4734), +(75610, 'Wendy', 1957, 'F', 4700), +(75611, 'Suzanne', 1957, 'F', 4660), +(75612, 'Maureen', 1957, 'F', 4602), +(75613, 'Sue', 1957, 'F', 4493), +(75614, 'Anna', 1957, 'F', 4445), +(75615, 'Alice', 1957, 'F', 4433), +(75616, 'Tammy', 1957, 'F', 4363), +(75617, 'Beth', 1957, 'F', 4354), +(75618, 'Sylvia', 1957, 'F', 4301), +(75619, 'Stephanie', 1957, 'F', 4216), +(75620, 'Renee', 1957, 'F', 4171), +(75621, 'Sheryl', 1957, 'F', 4129), +(75622, 'Frances', 1957, 'F', 4092), +(75623, 'Amy', 1957, 'F', 4076), +(75624, 'Sally', 1957, 'F', 3996), +(75625, 'Sarah', 1957, 'F', 3985), +(75626, 'Jeanne', 1957, 'F', 3948), +(75627, 'Colleen', 1957, 'F', 3888), +(75628, 'Doris', 1957, 'F', 3731), +(75629, 'Eileen', 1957, 'F', 3709), +(75630, 'Roberta', 1957, 'F', 3701), +(75631, 'Julia', 1957, 'F', 3687), +(75632, 'Regina', 1957, 'F', 3660), +(75633, 'Yvonne', 1957, 'F', 3643), +(75634, 'Evelyn', 1957, 'F', 3636), +(75635, 'Marcia', 1957, 'F', 3544), +(75636, 'Becky', 1957, 'F', 3524), +(75637, 'Carla', 1957, 'F', 3462), +(75638, 'Lorraine', 1957, 'F', 3418), +(75639, 'Andrea', 1957, 'F', 3369), +(75640, 'Loretta', 1957, 'F', 3344), +(75641, 'Gwendolyn', 1957, 'F', 3295), +(75642, 'Charlotte', 1957, 'F', 3260), +(75643, 'Glenda', 1957, 'F', 3198), +(75644, 'Dianne', 1957, 'F', 3179), +(75645, 'Charlene', 1957, 'F', 3149), +(75646, 'Joann', 1957, 'F', 3055), +(75647, 'Penny', 1957, 'F', 3044), +(75648, 'Marianne', 1957, 'F', 3022), +(75649, 'Jan', 1957, 'F', 2986), +(75650, 'Norma', 1957, 'F', 2976), +(75651, 'Vicky', 1957, 'F', 2945), +(75652, 'Joy', 1957, 'F', 2929), +(75653, 'Marsha', 1957, 'F', 2923), +(75654, 'Lois', 1957, 'F', 2873), +(75655, 'Melinda', 1957, 'F', 2825), +(75656, 'Melissa', 1957, 'F', 2778), +(75657, 'Patti', 1957, 'F', 2698), +(75658, 'Audrey', 1957, 'F', 2581), +(75659, 'Doreen', 1957, 'F', 2521), +(75660, 'Monica', 1957, 'F', 2490), +(75661, 'Melanie', 1957, 'F', 2471), +(75662, 'Vivian', 1957, 'F', 2434), +(75663, 'Constance', 1957, 'F', 2418), +(75664, 'Dana', 1957, 'F', 2408), +(75665, 'Juanita', 1957, 'F', 2400), +(75666, 'Holly', 1957, 'F', 2394), +(75667, 'Toni', 1957, 'F', 2393), +(75668, 'Vanessa', 1957, 'F', 2383), +(75669, 'Lynne', 1957, 'F', 2374), +(75670, 'Debora', 1957, 'F', 2367), +(75671, 'Jackie', 1957, 'F', 2360), +(75672, 'Kay', 1957, 'F', 2357), +(75673, 'Belinda', 1957, 'F', 2346), +(75674, 'Yolanda', 1957, 'F', 2331), +(75675, 'Louise', 1957, 'F', 2312), +(75676, 'Jeanette', 1957, 'F', 2298), +(75677, 'Rosemary', 1957, 'F', 2275), +(75678, 'Irene', 1957, 'F', 2258), +(75679, 'Christina', 1957, 'F', 2252), +(75680, 'Sherri', 1957, 'F', 2243), +(75681, 'Carmen', 1957, 'F', 2223), +(75682, 'Gayle', 1957, 'F', 2191), +(75683, 'Patty', 1957, 'F', 2171), +(75684, 'Carrie', 1957, 'F', 2154), +(75685, 'Jody', 1957, 'F', 2135), +(75686, 'Marlene', 1957, 'F', 2128), +(75687, 'Sara', 1957, 'F', 2109), +(75688, 'Gina', 1957, 'F', 2105), +(75689, 'Shelia', 1957, 'F', 2089), +(75690, 'Rosa', 1957, 'F', 2078), +(75691, 'Melody', 1957, 'F', 1991), +(75692, 'Tracy', 1957, 'F', 1963), +(75693, 'Pam', 1957, 'F', 1960), +(75694, 'Veronica', 1957, 'F', 1941), +(75695, 'Grace', 1957, 'F', 1918), +(75696, 'Kelly', 1957, 'F', 1909), +(75697, 'Sandy', 1957, 'F', 1894), +(75698, 'June', 1957, 'F', 1855), +(75699, 'Geraldine', 1957, 'F', 1851), +(75700, 'Tamara', 1957, 'F', 1846), +(75701, 'Lee', 1957, 'F', 1835), +(75702, 'Annie', 1957, 'F', 1833), +(75703, 'Rachel', 1957, 'F', 1826), +(75704, 'Lynda', 1957, 'F', 1818), +(75705, 'Eva', 1957, 'F', 1801), +(75706, 'Ruby', 1957, 'F', 1784), +(75707, 'Roxanne', 1957, 'F', 1774), +(75708, 'Dianna', 1957, 'F', 1772), +(75709, 'Shelley', 1957, 'F', 1720), +(75710, 'Teri', 1957, 'F', 1718), +(75711, 'Ramona', 1957, 'F', 1713), +(75712, 'Arlene', 1957, 'F', 1691), +(75713, 'Claudia', 1957, 'F', 1661), +(75714, 'Delores', 1957, 'F', 1652), +(75715, 'Lydia', 1957, 'F', 1619), +(75716, 'Carole', 1957, 'F', 1612), +(75717, 'Patsy', 1957, 'F', 1610), +(75718, 'Lillian', 1957, 'F', 1602), +(75719, 'Sheri', 1957, 'F', 1590), +(75720, 'Marjorie', 1957, 'F', 1589), +(75721, 'Dolores', 1957, 'F', 1569), +(75722, 'Janis', 1957, 'F', 1554), +(75723, 'Joni', 1957, 'F', 1536), +(75724, 'Karla', 1957, 'F', 1532), +(75725, 'Jayne', 1957, 'F', 1526), +(75726, 'Esther', 1957, 'F', 1478), +(75727, 'Sherrie', 1957, 'F', 1457), +(75728, 'Heidi', 1957, 'F', 1451), +(75729, 'Priscilla', 1957, 'F', 1449), +(75730, 'Josephine', 1957, 'F', 1436), +(75731, 'Jeannie', 1957, 'F', 1427), +(75732, 'Crystal', 1957, 'F', 1416), +(75733, 'Edith', 1957, 'F', 1413), +(75734, 'Mildred', 1957, 'F', 1408), +(75735, 'Maryann', 1957, 'F', 1394), +(75736, 'Lucy', 1957, 'F', 1350), +(75737, 'Marian', 1957, 'F', 1350), +(75738, 'Pauline', 1957, 'F', 1338), +(75739, 'Darla', 1957, 'F', 1333), +(75740, 'Marla', 1957, 'F', 1329), +(75741, 'Nina', 1957, 'F', 1320), +(75742, 'April', 1957, 'F', 1308), +(75743, 'Lauren', 1957, 'F', 1305), +(75744, 'Janie', 1957, 'F', 1301), +(75745, 'Deanna', 1957, 'F', 1287), +(75746, 'Margie', 1957, 'F', 1286), +(75747, 'Jamie', 1957, 'F', 1276), +(75748, 'Georgia', 1957, 'F', 1248), +(75749, 'Susie', 1957, 'F', 1246), +(75750, 'Edna', 1957, 'F', 1242), +(75751, 'Mona', 1957, 'F', 1233), +(75752, 'Emma', 1957, 'F', 1215), +(75753, 'Shelly', 1957, 'F', 1212), +(75754, 'Gale', 1957, 'F', 1208), +(75755, 'Emily', 1957, 'F', 1206), +(75756, 'Tanya', 1957, 'F', 1203), +(75757, 'Jacquelyn', 1957, 'F', 1198), +(75758, 'Robyn', 1957, 'F', 1185), +(75759, 'Bobbie', 1957, 'F', 1161), +(75760, 'Nora', 1957, 'F', 1161), +(75761, 'Candace', 1957, 'F', 1155), +(75762, 'Caroline', 1957, 'F', 1135), +(75763, 'Therese', 1957, 'F', 1131), +(75764, 'Laurel', 1957, 'F', 1122), +(75765, 'Jenny', 1957, 'F', 1119), +(75766, 'Cheri', 1957, 'F', 1114), +(75767, 'Clara', 1957, 'F', 1110), +(75768, 'Myra', 1957, 'F', 1104), +(75769, 'Alicia', 1957, 'F', 1100), +(75770, 'Irma', 1957, 'F', 1098), +(75771, 'Betsy', 1957, 'F', 1097), +(75772, 'Paulette', 1957, 'F', 1095), +(75773, 'Gladys', 1957, 'F', 1072), +(75774, 'Cathleen', 1957, 'F', 1071), +(75775, 'Cecilia', 1957, 'F', 1057), +(75776, 'Natalie', 1957, 'F', 1055), +(75777, 'Marion', 1957, 'F', 1053), +(75778, 'Vera', 1957, 'F', 1050), +(75779, 'Lynette', 1957, 'F', 1034), +(75780, 'Claire', 1957, 'F', 1031), +(75781, 'Lucinda', 1957, 'F', 1023), +(75782, 'Chris', 1957, 'F', 1021), +(75783, 'Bertha', 1957, 'F', 1017), +(75784, 'Erin', 1957, 'F', 1014), +(75785, 'Ginger', 1957, 'F', 1007), +(75786, 'Ronda', 1957, 'F', 1005), +(75787, 'Cassandra', 1957, 'F', 1002), +(75788, 'Luann', 1957, 'F', 994), +(75789, 'Bernadette', 1957, 'F', 989), +(75790, 'Billie', 1957, 'F', 989), +(75791, 'Kristine', 1957, 'F', 986), +(75792, 'Tracey', 1957, 'F', 986), +(75793, 'Rosie', 1957, 'F', 985), +(75794, 'Wilma', 1957, 'F', 983), +(75795, 'Beatrice', 1957, 'F', 982), +(75796, 'Alma', 1957, 'F', 981), +(75797, 'Bernice', 1957, 'F', 981), +(75798, 'Bonita', 1957, 'F', 970), +(75799, 'Ella', 1957, 'F', 967), +(75800, 'Thelma', 1957, 'F', 966), +(75801, 'Christy', 1957, 'F', 957), +(75802, 'Eleanor', 1957, 'F', 956), +(75803, 'Dora', 1957, 'F', 955), +(75804, 'Lucille', 1957, 'F', 947), +(75805, 'Antoinette', 1957, 'F', 945), +(75806, 'Miriam', 1957, 'F', 945), +(75807, 'Faye', 1957, 'F', 940), +(75808, 'Terrie', 1957, 'F', 923), +(75809, 'Jeri', 1957, 'F', 915), +(75810, 'Sabrina', 1957, 'F', 915), +(75811, 'Rosemarie', 1957, 'F', 909), +(75812, 'Patrice', 1957, 'F', 908), +(75813, 'Sheree', 1957, 'F', 907), +(75814, 'Jodi', 1957, 'F', 904), +(75815, 'Francine', 1957, 'F', 896), +(75816, 'Nadine', 1957, 'F', 896), +(75817, 'Iris', 1957, 'F', 895), +(75818, 'Lou', 1957, 'F', 883), +(75819, 'Ethel', 1957, 'F', 880), +(75820, 'Florence', 1957, 'F', 877), +(75821, 'Candy', 1957, 'F', 871), +(75822, 'Ida', 1957, 'F', 868), +(75823, 'Jeannette', 1957, 'F', 862), +(75824, 'Tami', 1957, 'F', 852), +(75825, 'Jana', 1957, 'F', 848), +(75826, 'Gwen', 1957, 'F', 831), +(75827, 'Faith', 1957, 'F', 826), +(75828, 'Shari', 1957, 'F', 814); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(75829, 'Kerry', 1957, 'F', 813), +(75830, 'Pat', 1957, 'F', 812), +(75831, 'Kristi', 1957, 'F', 800), +(75832, 'Lillie', 1957, 'F', 794), +(75833, 'Yvette', 1957, 'F', 793), +(75834, 'Jennie', 1957, 'F', 788), +(75835, 'Rochelle', 1957, 'F', 786), +(75836, 'Willie', 1957, 'F', 786), +(75837, 'Cherie', 1957, 'F', 779), +(75838, 'Trudy', 1957, 'F', 774), +(75839, 'Maxine', 1957, 'F', 772), +(75840, 'Nanette', 1957, 'F', 769), +(75841, 'Lorna', 1957, 'F', 757), +(75842, 'Hazel', 1957, 'F', 746), +(75843, 'Sonia', 1957, 'F', 746), +(75844, 'Lora', 1957, 'F', 738), +(75845, 'Leah', 1957, 'F', 736), +(75846, 'Adrienne', 1957, 'F', 729), +(75847, 'Stella', 1957, 'F', 729), +(75848, 'Kimberley', 1957, 'F', 719), +(75849, 'Shannon', 1957, 'F', 708), +(75850, 'Naomi', 1957, 'F', 699), +(75851, 'Molly', 1957, 'F', 698), +(75852, 'Shawn', 1957, 'F', 696), +(75853, 'Celeste', 1957, 'F', 692), +(75854, 'Karin', 1957, 'F', 688), +(75855, 'Cecelia', 1957, 'F', 683), +(75856, 'Marguerite', 1957, 'F', 680), +(75857, 'Stacy', 1957, 'F', 679), +(75858, 'Stacey', 1957, 'F', 675), +(75859, 'Susanne', 1957, 'F', 673), +(75860, 'Velma', 1957, 'F', 669), +(75861, 'Dale', 1957, 'F', 668), +(75862, 'Amanda', 1957, 'F', 667), +(75863, 'Heather', 1957, 'F', 665), +(75864, 'Debby', 1957, 'F', 662), +(75865, 'Lana', 1957, 'F', 650), +(75866, 'Tonya', 1957, 'F', 646), +(75867, 'Janette', 1957, 'F', 642), +(75868, 'Marcella', 1957, 'F', 634), +(75869, 'Rene', 1957, 'F', 634), +(75870, 'Jessie', 1957, 'F', 632), +(75871, 'Bridget', 1957, 'F', 628), +(75872, 'Kathi', 1957, 'F', 624), +(75873, 'Tammie', 1957, 'F', 618), +(75874, 'Leigh', 1957, 'F', 616), +(75875, 'Lorrie', 1957, 'F', 615), +(75876, 'Dixie', 1957, 'F', 609), +(75877, 'Jolene', 1957, 'F', 609), +(75878, 'Verna', 1957, 'F', 603), +(75879, 'Laverne', 1957, 'F', 599), +(75880, 'Mindy', 1957, 'F', 599), +(75881, 'Margarita', 1957, 'F', 590), +(75882, 'Hilda', 1957, 'F', 586), +(75883, 'Gay', 1957, 'F', 584), +(75884, 'Joanna', 1957, 'F', 582), +(75885, 'Janine', 1957, 'F', 581), +(75886, 'Felicia', 1957, 'F', 580), +(75887, 'Lenora', 1957, 'F', 578), +(75888, 'Rosanne', 1957, 'F', 577), +(75889, 'Alison', 1957, 'F', 570), +(75890, 'Gretchen', 1957, 'F', 565), +(75891, 'Olga', 1957, 'F', 565), +(75892, 'Jerri', 1957, 'F', 562), +(75893, 'Rosalie', 1957, 'F', 562), +(75894, 'Geneva', 1957, 'F', 561), +(75895, 'Harriet', 1957, 'F', 559), +(75896, 'Kathie', 1957, 'F', 558), +(75897, 'Deloris', 1957, 'F', 550), +(75898, 'Lena', 1957, 'F', 548), +(75899, 'Rosalind', 1957, 'F', 544), +(75900, 'Lorie', 1957, 'F', 542), +(75901, 'Leticia', 1957, 'F', 539), +(75902, 'Candice', 1957, 'F', 538), +(75903, 'Della', 1957, 'F', 538), +(75904, 'Corinne', 1957, 'F', 537), +(75905, 'Kristin', 1957, 'F', 536), +(75906, 'Guadalupe', 1957, 'F', 531), +(75907, 'Sonja', 1957, 'F', 530), +(75908, 'Christie', 1957, 'F', 529), +(75909, 'Luanne', 1957, 'F', 526), +(75910, 'Amelia', 1957, 'F', 522), +(75911, 'Leann', 1957, 'F', 522), +(75912, 'Mattie', 1957, 'F', 521), +(75913, 'Celia', 1957, 'F', 520), +(75914, 'Olivia', 1957, 'F', 519), +(75915, 'Margo', 1957, 'F', 518), +(75916, 'Cora', 1957, 'F', 517), +(75917, 'Madeline', 1957, 'F', 514), +(75918, 'Johnnie', 1957, 'F', 512), +(75919, 'Katie', 1957, 'F', 512), +(75920, 'Polly', 1957, 'F', 509), +(75921, 'Noreen', 1957, 'F', 504), +(75922, 'Jeanine', 1957, 'F', 503), +(75923, 'Trina', 1957, 'F', 503), +(75924, 'Camille', 1957, 'F', 502), +(75925, 'Elsie', 1957, 'F', 499), +(75926, 'Jeanie', 1957, 'F', 499), +(75927, 'Leona', 1957, 'F', 496), +(75928, 'Agnes', 1957, 'F', 494), +(75929, 'Freda', 1957, 'F', 494), +(75930, 'Desiree', 1957, 'F', 493), +(75931, 'Daisy', 1957, 'F', 491), +(75932, 'Delia', 1957, 'F', 491), +(75933, 'Katrina', 1957, 'F', 487), +(75934, 'Robbie', 1957, 'F', 486), +(75935, 'Jodie', 1957, 'F', 485), +(75936, 'Lola', 1957, 'F', 483), +(75937, 'Marcy', 1957, 'F', 481), +(75938, 'Rena', 1957, 'F', 479), +(75939, 'Dee', 1957, 'F', 478), +(75940, 'Jessica', 1957, 'F', 476), +(75941, 'Ana', 1957, 'F', 475), +(75942, 'Dena', 1957, 'F', 471), +(75943, 'Allison', 1957, 'F', 467), +(75944, 'Bessie', 1957, 'F', 465), +(75945, 'Angie', 1957, 'F', 462), +(75946, 'Diann', 1957, 'F', 460), +(75947, 'Tara', 1957, 'F', 460), +(75948, 'Cindi', 1957, 'F', 457), +(75949, 'Ernestine', 1957, 'F', 456), +(75950, 'Mae', 1957, 'F', 456), +(75951, 'Helene', 1957, 'F', 452), +(75952, 'Denice', 1957, 'F', 451), +(75953, 'Viola', 1957, 'F', 447), +(75954, 'Jeannine', 1957, 'F', 446), +(75955, 'Marta', 1957, 'F', 444), +(75956, 'Hope', 1957, 'F', 443), +(75957, 'Pearl', 1957, 'F', 442), +(75958, 'Leanne', 1957, 'F', 441), +(75959, 'Isabel', 1957, 'F', 438), +(75960, 'Mitzi', 1957, 'F', 438), +(75961, 'Eunice', 1957, 'F', 437), +(75962, 'Ava', 1957, 'F', 434), +(75963, 'Colette', 1957, 'F', 434), +(75964, 'Nellie', 1957, 'F', 433), +(75965, 'Alberta', 1957, 'F', 432), +(75966, 'Myrna', 1957, 'F', 430), +(75967, 'Lesa', 1957, 'F', 426), +(75968, 'Bernadine', 1957, 'F', 424), +(75969, 'Bobbi', 1957, 'F', 422), +(75970, 'Penelope', 1957, 'F', 422), +(75971, 'Kris', 1957, 'F', 420), +(75972, 'Ladonna', 1957, 'F', 418), +(75973, 'Minnie', 1957, 'F', 418), +(75974, 'Flora', 1957, 'F', 416), +(75975, 'Mari', 1957, 'F', 413), +(75976, 'Kimberlee', 1957, 'F', 412), +(75977, 'Janelle', 1957, 'F', 409), +(75978, 'Katharine', 1957, 'F', 407), +(75979, 'Kristy', 1957, 'F', 405), +(75980, 'Reba', 1957, 'F', 404), +(75981, 'Elena', 1957, 'F', 403), +(75982, 'Valarie', 1957, 'F', 403), +(75983, 'Lesley', 1957, 'F', 397), +(75984, 'Sonya', 1957, 'F', 395), +(75985, 'Ada', 1957, 'F', 393), +(75986, 'Vickey', 1957, 'F', 393), +(75987, 'Gracie', 1957, 'F', 391), +(75988, 'Rae', 1957, 'F', 391), +(75989, 'Lauri', 1957, 'F', 390), +(75990, 'Lynnette', 1957, 'F', 390), +(75991, 'Gayla', 1957, 'F', 389), +(75992, 'Caren', 1957, 'F', 388), +(75993, 'Melba', 1957, 'F', 388), +(75994, 'Roseann', 1957, 'F', 388), +(75995, 'Violet', 1957, 'F', 386), +(75996, 'Debi', 1957, 'F', 383), +(75997, 'Frankie', 1957, 'F', 381), +(75998, 'Sharron', 1957, 'F', 381), +(75999, 'Robbin', 1957, 'F', 378), +(76000, 'Maryanne', 1957, 'F', 377), +(76001, 'Claudette', 1957, 'F', 371), +(76002, 'Nita', 1957, 'F', 368), +(76003, 'Shelby', 1957, 'F', 367), +(76004, 'Randi', 1957, 'F', 364), +(76005, 'Julianne', 1957, 'F', 363), +(76006, 'Sondra', 1957, 'F', 363), +(76007, 'Lila', 1957, 'F', 362), +(76008, 'Danette', 1957, 'F', 360), +(76009, 'Erma', 1957, 'F', 360), +(76010, 'Suzan', 1957, 'F', 360), +(76011, 'Elise', 1957, 'F', 356), +(76012, 'Ingrid', 1957, 'F', 356), +(76013, 'Rhoda', 1957, 'F', 356), +(76014, 'Sallie', 1957, 'F', 356), +(76015, 'Kristina', 1957, 'F', 355), +(76016, 'Ivy', 1957, 'F', 353), +(76017, 'Jocelyn', 1957, 'F', 352), +(76018, 'Althea', 1957, 'F', 351), +(76019, 'Eugenia', 1957, 'F', 350), +(76020, 'Suzette', 1957, 'F', 347), +(76021, 'Dona', 1957, 'F', 344), +(76022, 'Henrietta', 1957, 'F', 343), +(76023, 'Melodie', 1957, 'F', 343), +(76024, 'Lea', 1957, 'F', 342), +(76025, 'Kaye', 1957, 'F', 341), +(76026, 'Rosalyn', 1957, 'F', 341), +(76027, 'Carlene', 1957, 'F', 340), +(76028, 'Charmaine', 1957, 'F', 339), +(76029, 'Elsa', 1957, 'F', 339), +(76030, 'Genevieve', 1957, 'F', 337), +(76031, 'Mariann', 1957, 'F', 336), +(76032, 'Kari', 1957, 'F', 335), +(76033, 'Roslyn', 1957, 'F', 335), +(76034, 'Lorene', 1957, 'F', 330), +(76035, 'Roxann', 1957, 'F', 330), +(76036, 'Elisa', 1957, 'F', 329), +(76037, 'Hattie', 1957, 'F', 327), +(76038, 'Malinda', 1957, 'F', 326), +(76039, 'Geri', 1957, 'F', 325), +(76040, 'Dinah', 1957, 'F', 324), +(76041, 'Glenna', 1957, 'F', 324), +(76042, 'Saundra', 1957, 'F', 323), +(76043, 'Unknown', 1957, 'F', 323), +(76044, 'Ruthie', 1957, 'F', 322), +(76045, 'Coleen', 1957, 'F', 320), +(76046, 'Benita', 1957, 'F', 318), +(76047, 'Geralyn', 1957, 'F', 318), +(76048, 'Adele', 1957, 'F', 315), +(76049, 'Elisabeth', 1957, 'F', 315), +(76050, 'Kristie', 1957, 'F', 314), +(76051, 'Daphne', 1957, 'F', 313), +(76052, 'Rosetta', 1957, 'F', 312), +(76053, 'Sharlene', 1957, 'F', 312), +(76054, 'Eloise', 1957, 'F', 309), +(76055, 'Felecia', 1957, 'F', 309), +(76056, 'Inez', 1957, 'F', 308), +(76057, 'Lula', 1957, 'F', 308), +(76058, 'Ilene', 1957, 'F', 306), +(76059, 'Christi', 1957, 'F', 304), +(76060, 'Cathryn', 1957, 'F', 302), +(76061, 'Dorothea', 1957, 'F', 302), +(76062, 'Deirdre', 1957, 'F', 300), +(76063, 'Gertrude', 1957, 'F', 300), +(76064, 'Cherry', 1957, 'F', 299), +(76065, 'Maggie', 1957, 'F', 297), +(76066, 'Deana', 1957, 'F', 296), +(76067, 'Kristen', 1957, 'F', 296), +(76068, 'Fannie', 1957, 'F', 295), +(76069, 'Vikki', 1957, 'F', 295), +(76070, 'Clare', 1957, 'F', 293), +(76071, 'Darcy', 1957, 'F', 291), +(76072, 'Laureen', 1957, 'F', 291), +(76073, 'Roxane', 1957, 'F', 291), +(76074, 'Barb', 1957, 'F', 290), +(76075, 'Kelley', 1957, 'F', 290), +(76076, 'Lenore', 1957, 'F', 290), +(76077, 'Kelli', 1957, 'F', 289), +(76078, 'Eve', 1957, 'F', 288), +(76079, 'Maura', 1957, 'F', 287), +(76080, 'Mamie', 1957, 'F', 286), +(76081, 'Leisa', 1957, 'F', 285), +(76082, 'Estella', 1957, 'F', 284), +(76083, 'Nelda', 1957, 'F', 283), +(76084, 'Angelia', 1957, 'F', 282), +(76085, 'James', 1957, 'F', 281), +(76086, 'Patrica', 1957, 'F', 281), +(76087, 'Lyn', 1957, 'F', 280), +(76088, 'Liz', 1957, 'F', 279), +(76089, 'Renae', 1957, 'F', 278), +(76090, 'Greta', 1957, 'F', 276), +(76091, 'Josie', 1957, 'F', 275), +(76092, 'Bettie', 1957, 'F', 274), +(76093, 'Alfreda', 1957, 'F', 273), +(76094, 'Johanna', 1957, 'F', 273), +(76095, 'Tracie', 1957, 'F', 273), +(76096, 'Lorri', 1957, 'F', 270), +(76097, 'Maryellen', 1957, 'F', 270), +(76098, 'Pamala', 1957, 'F', 270), +(76099, 'Dorene', 1957, 'F', 268), +(76100, 'Terese', 1957, 'F', 268), +(76101, 'Bette', 1957, 'F', 267), +(76102, 'Marcie', 1957, 'F', 267), +(76103, 'Debbi', 1957, 'F', 266), +(76104, 'Georgette', 1957, 'F', 266), +(76105, 'Susanna', 1957, 'F', 266), +(76106, 'Alisa', 1957, 'F', 265), +(76107, 'Fay', 1957, 'F', 265), +(76108, 'Corrine', 1957, 'F', 264), +(76109, 'Antonia', 1957, 'F', 263), +(76110, 'Earnestine', 1957, 'F', 263), +(76111, 'Helena', 1957, 'F', 263), +(76112, 'Teena', 1957, 'F', 263), +(76113, 'Tena', 1957, 'F', 262), +(76114, 'Kitty', 1957, 'F', 261), +(76115, 'Kerri', 1957, 'F', 260), +(76116, 'Megan', 1957, 'F', 260), +(76117, 'Danita', 1957, 'F', 259), +(76118, 'Blanca', 1957, 'F', 257), +(76119, 'Cheryle', 1957, 'F', 256), +(76120, 'Caryn', 1957, 'F', 255), +(76121, 'Robert', 1957, 'F', 255), +(76122, 'Silvia', 1957, 'F', 255), +(76123, 'Tamera', 1957, 'F', 255), +(76124, 'Avis', 1957, 'F', 254), +(76125, 'Michael', 1957, 'F', 254), +(76126, 'Valorie', 1957, 'F', 254), +(76127, 'Marisa', 1957, 'F', 253), +(76128, 'Merry', 1957, 'F', 253), +(76129, 'Delois', 1957, 'F', 252), +(76130, 'Pattie', 1957, 'F', 251), +(76131, 'Angelina', 1957, 'F', 250), +(76132, 'Karol', 1957, 'F', 249), +(76133, 'Cathie', 1957, 'F', 245), +(76134, 'Kathrine', 1957, 'F', 244), +(76135, 'Tamra', 1957, 'F', 244), +(76136, 'Lucia', 1957, 'F', 243), +(76137, 'Bonny', 1957, 'F', 241), +(76138, 'Deanne', 1957, 'F', 240), +(76139, 'Annmarie', 1957, 'F', 239), +(76140, 'Janell', 1957, 'F', 239), +(76141, 'Jewel', 1957, 'F', 238), +(76142, 'Krista', 1957, 'F', 238), +(76143, 'Marilynn', 1957, 'F', 238), +(76144, 'Beverley', 1957, 'F', 237), +(76145, 'Lupe', 1957, 'F', 237), +(76146, 'Marybeth', 1957, 'F', 237), +(76147, 'Meredith', 1957, 'F', 237), +(76148, 'Jerry', 1957, 'F', 236), +(76149, 'Renita', 1957, 'F', 236), +(76150, 'Dina', 1957, 'F', 235), +(76151, 'Lavonne', 1957, 'F', 235), +(76152, 'Marylou', 1957, 'F', 235), +(76153, 'Deena', 1957, 'F', 234), +(76154, 'Debrah', 1957, 'F', 233), +(76155, 'Marina', 1957, 'F', 233), +(76156, 'Tonia', 1957, 'F', 230), +(76157, 'Etta', 1957, 'F', 229), +(76158, 'Leeann', 1957, 'F', 229), +(76159, 'Lu', 1957, 'F', 228), +(76160, 'Bambi', 1957, 'F', 227), +(76161, 'Loraine', 1957, 'F', 227), +(76162, 'Myrtle', 1957, 'F', 227), +(76163, 'Ginny', 1957, 'F', 226), +(76164, 'Traci', 1957, 'F', 226), +(76165, 'John', 1957, 'F', 225), +(76166, 'Marietta', 1957, 'F', 225), +(76167, 'Arleen', 1957, 'F', 224), +(76168, 'Debbra', 1957, 'F', 223), +(76169, 'Tricia', 1957, 'F', 223), +(76170, 'Blanche', 1957, 'F', 221), +(76171, 'Clarice', 1957, 'F', 221), +(76172, 'Sandi', 1957, 'F', 221), +(76173, 'Karyn', 1957, 'F', 220), +(76174, 'Karon', 1957, 'F', 218), +(76175, 'Earlene', 1957, 'F', 217), +(76176, 'Muriel', 1957, 'F', 217), +(76177, 'Dolly', 1957, 'F', 216), +(76178, 'Maribeth', 1957, 'F', 216), +(76179, 'Luz', 1957, 'F', 215), +(76180, 'Winifred', 1957, 'F', 215), +(76181, 'Marva', 1957, 'F', 214), +(76182, 'Sadie', 1957, 'F', 214), +(76183, 'Janna', 1957, 'F', 213), +(76184, 'Rachelle', 1957, 'F', 213), +(76185, 'Rosalinda', 1957, 'F', 212), +(76186, 'Twila', 1957, 'F', 212), +(76187, 'Deann', 1957, 'F', 211), +(76188, 'Erica', 1957, 'F', 211), +(76189, 'Minerva', 1957, 'F', 211), +(76190, 'Sherie', 1957, 'F', 211), +(76191, 'Teressa', 1957, 'F', 211), +(76192, 'Nan', 1957, 'F', 210), +(76193, 'Sherrill', 1957, 'F', 210), +(76194, 'Eula', 1957, 'F', 209), +(76195, 'Judi', 1957, 'F', 209), +(76196, 'Lela', 1957, 'F', 209), +(76197, 'Libby', 1957, 'F', 209), +(76198, 'Elva', 1957, 'F', 208), +(76199, 'Joanie', 1957, 'F', 208), +(76200, 'Kendra', 1957, 'F', 208), +(76201, 'Mollie', 1957, 'F', 208), +(76202, 'Rebekah', 1957, 'F', 208), +(76203, 'Louann', 1957, 'F', 207), +(76204, 'Sherryl', 1957, 'F', 207), +(76205, 'Nona', 1957, 'F', 206), +(76206, 'Rosanna', 1957, 'F', 205), +(76207, 'Edwina', 1957, 'F', 204), +(76208, 'Kellie', 1957, 'F', 204), +(76209, 'Graciela', 1957, 'F', 202), +(76210, 'Dorinda', 1957, 'F', 201), +(76211, 'Gisele', 1957, 'F', 201), +(76212, 'Dottie', 1957, 'F', 200), +(76213, 'Francis', 1957, 'F', 199), +(76214, 'Nannette', 1957, 'F', 199), +(76215, 'Vonda', 1957, 'F', 198), +(76216, 'Ora', 1957, 'F', 197), +(76217, 'Doretha', 1957, 'F', 196), +(76218, 'Marilee', 1957, 'F', 196), +(76219, 'Maryjo', 1957, 'F', 196), +(76220, 'Nikki', 1957, 'F', 196), +(76221, 'Lorena', 1957, 'F', 195), +(76222, 'Neva', 1957, 'F', 195), +(76223, 'Shauna', 1957, 'F', 195), +(76224, 'Elvira', 1957, 'F', 194), +(76225, 'Kyle', 1957, 'F', 194), +(76226, 'Roxie', 1957, 'F', 194), +(76227, 'Alexis', 1957, 'F', 193), +(76228, 'Darleen', 1957, 'F', 193), +(76229, 'Cinda', 1957, 'F', 192), +(76230, 'Gaye', 1957, 'F', 192), +(76231, 'Aileen', 1957, 'F', 191), +(76232, 'Deidre', 1957, 'F', 191), +(76233, 'Danielle', 1957, 'F', 190), +(76234, 'Fran', 1957, 'F', 190), +(76235, 'Aida', 1957, 'F', 189), +(76236, 'Gerri', 1957, 'F', 189), +(76237, 'Marci', 1957, 'F', 189), +(76238, 'Millie', 1957, 'F', 189), +(76239, 'Abigail', 1957, 'F', 188), +(76240, 'Fern', 1957, 'F', 187), +(76241, 'Juliana', 1957, 'F', 187), +(76242, 'Sophia', 1957, 'F', 187), +(76243, 'Cecile', 1957, 'F', 186), +(76244, 'Leesa', 1957, 'F', 186), +(76245, 'Valeria', 1957, 'F', 186), +(76246, 'Lavern', 1957, 'F', 185), +(76247, 'Melva', 1957, 'F', 185), +(76248, 'Clarissa', 1957, 'F', 182), +(76249, 'Freida', 1957, 'F', 182), +(76250, 'Carmela', 1957, 'F', 181), +(76251, 'Kandy', 1957, 'F', 181), +(76252, 'Iva', 1957, 'F', 180), +(76253, 'Nettie', 1957, 'F', 180), +(76254, 'Jannie', 1957, 'F', 179), +(76255, 'Madelyn', 1957, 'F', 179), +(76256, 'Juli', 1957, 'F', 178), +(76257, 'Leila', 1957, 'F', 178), +(76258, 'Ina', 1957, 'F', 177), +(76259, 'Nanci', 1957, 'F', 177), +(76260, 'Donita', 1957, 'F', 176), +(76261, 'Madonna', 1957, 'F', 176), +(76262, 'Tammi', 1957, 'F', 176), +(76263, 'Tommie', 1957, 'F', 176), +(76264, 'Alexandra', 1957, 'F', 174), +(76265, 'Mabel', 1957, 'F', 174), +(76266, 'Mable', 1957, 'F', 174), +(76267, 'Hilary', 1957, 'F', 173), +(76268, 'Deb', 1957, 'F', 172), +(76269, 'Joe', 1957, 'F', 172), +(76270, 'Roxanna', 1957, 'F', 172), +(76271, 'Stacie', 1957, 'F', 172), +(76272, 'Addie', 1957, 'F', 171), +(76273, 'Gilda', 1957, 'F', 171), +(76274, 'Danna', 1957, 'F', 170), +(76275, 'Lindy', 1957, 'F', 170), +(76276, 'Roseanne', 1957, 'F', 170), +(76277, 'Sybil', 1957, 'F', 169), +(76278, 'Abby', 1957, 'F', 168), +(76279, 'Dani', 1957, 'F', 168), +(76280, 'Ollie', 1957, 'F', 168), +(76281, 'Pennie', 1957, 'F', 168), +(76282, 'Willa', 1957, 'F', 168), +(76283, 'Cornelia', 1957, 'F', 167), +(76284, 'Dori', 1957, 'F', 167), +(76285, 'Mercedes', 1957, 'F', 167), +(76286, 'Shawna', 1957, 'F', 167), +(76287, 'Celestine', 1957, 'F', 166), +(76288, 'David', 1957, 'F', 166), +(76289, 'Gena', 1957, 'F', 166), +(76290, 'Raquel', 1957, 'F', 166), +(76291, 'William', 1957, 'F', 166), +(76292, 'Cara', 1957, 'F', 165), +(76293, 'Charla', 1957, 'F', 165), +(76294, 'Aurora', 1957, 'F', 164), +(76295, 'Chandra', 1957, 'F', 164), +(76296, 'Karan', 1957, 'F', 164), +(76297, 'Monique', 1957, 'F', 164), +(76298, 'Mavis', 1957, 'F', 163), +(76299, 'Miranda', 1957, 'F', 163), +(76300, 'Sheena', 1957, 'F', 163), +(76301, 'Susana', 1957, 'F', 163), +(76302, 'Caryl', 1957, 'F', 162), +(76303, 'Essie', 1957, 'F', 162), +(76304, 'Jenifer', 1957, 'F', 162), +(76305, 'Kate', 1957, 'F', 162), +(76306, 'Estelle', 1957, 'F', 160), +(76307, 'Lourdes', 1957, 'F', 160), +(76308, 'Pearlie', 1957, 'F', 160), +(76309, 'Reva', 1957, 'F', 160), +(76310, 'Nola', 1957, 'F', 159), +(76311, 'Tana', 1957, 'F', 159), +(76312, 'Bethany', 1957, 'F', 158), +(76313, 'Harriett', 1957, 'F', 158), +(76314, 'Marty', 1957, 'F', 158), +(76315, 'Delilah', 1957, 'F', 157), +(76316, 'Lawanda', 1957, 'F', 157), +(76317, 'Joellen', 1957, 'F', 156), +(76318, 'Letha', 1957, 'F', 156), +(76319, 'Annamarie', 1957, 'F', 155), +(76320, 'Dawna', 1957, 'F', 155), +(76321, 'Jewell', 1957, 'F', 155), +(76322, 'Opal', 1957, 'F', 155), +(76323, 'Randy', 1957, 'F', 155), +(76324, 'Charles', 1957, 'F', 154), +(76325, 'Christa', 1957, 'F', 154), +(76326, 'Dorthy', 1957, 'F', 154), +(76327, 'Juliet', 1957, 'F', 154), +(76328, 'Katheryn', 1957, 'F', 154), +(76329, 'Martina', 1957, 'F', 154), +(76330, 'Migdalia', 1957, 'F', 154), +(76331, 'Carleen', 1957, 'F', 152), +(76332, 'Esperanza', 1957, 'F', 152), +(76333, 'Retha', 1957, 'F', 152), +(76334, 'Twyla', 1957, 'F', 152), +(76335, 'Barbra', 1957, 'F', 151), +(76336, 'Carmella', 1957, 'F', 151), +(76337, 'Ester', 1957, 'F', 150), +(76338, 'Jimmie', 1957, 'F', 150), +(76339, 'Leola', 1957, 'F', 150), +(76340, 'Mara', 1957, 'F', 150), +(76341, 'Portia', 1957, 'F', 150), +(76342, 'Sherree', 1957, 'F', 150), +(76343, 'Lily', 1957, 'F', 149), +(76344, 'Pamella', 1957, 'F', 149), +(76345, 'Cherri', 1957, 'F', 148), +(76346, 'Juana', 1957, 'F', 147), +(76347, 'May', 1957, 'F', 147), +(76348, 'Valencia', 1957, 'F', 147), +(76349, 'Angel', 1957, 'F', 146), +(76350, 'Bettye', 1957, 'F', 146), +(76351, 'Cyndi', 1957, 'F', 146), +(76352, 'Evangeline', 1957, 'F', 146), +(76353, 'Lilly', 1957, 'F', 146), +(76354, 'Tamela', 1957, 'F', 146), +(76355, 'Milagros', 1957, 'F', 145), +(76356, 'Georgina', 1957, 'F', 144), +(76357, 'Carmel', 1957, 'F', 143), +(76358, 'Venita', 1957, 'F', 143), +(76359, 'Zoe', 1957, 'F', 143), +(76360, 'Beulah', 1957, 'F', 142), +(76361, 'Carey', 1957, 'F', 142), +(76362, 'Jacklyn', 1957, 'F', 142), +(76363, 'Lorelei', 1957, 'F', 142), +(76364, 'Cathrine', 1957, 'F', 141), +(76365, 'Mandy', 1957, 'F', 141), +(76366, 'Meryl', 1957, 'F', 141), +(76367, 'Mickey', 1957, 'F', 141), +(76368, 'Nicole', 1957, 'F', 141), +(76369, 'Shirlene', 1957, 'F', 141), +(76370, 'Wendi', 1957, 'F', 141), +(76371, 'Aimee', 1957, 'F', 140), +(76372, 'Bettina', 1957, 'F', 139), +(76373, 'Rhea', 1957, 'F', 139), +(76374, 'Caron', 1957, 'F', 138), +(76375, 'Jami', 1957, 'F', 138), +(76376, 'Shellie', 1957, 'F', 138), +(76377, 'Velda', 1957, 'F', 138), +(76378, 'Amber', 1957, 'F', 137), +(76379, 'Dian', 1957, 'F', 137), +(76380, 'Gabrielle', 1957, 'F', 137), +(76381, 'Rowena', 1957, 'F', 137), +(76382, 'Jerrie', 1957, 'F', 136), +(76383, 'Leanna', 1957, 'F', 136), +(76384, 'Treva', 1957, 'F', 136), +(76385, 'Cathi', 1957, 'F', 135), +(76386, 'Earline', 1957, 'F', 135), +(76387, 'Leta', 1957, 'F', 135), +(76388, 'Lizabeth', 1957, 'F', 135), +(76389, 'Starla', 1957, 'F', 135), +(76390, 'Catharine', 1957, 'F', 134), +(76391, 'Ronnie', 1957, 'F', 134), +(76392, 'Consuelo', 1957, 'F', 133), +(76393, 'Frieda', 1957, 'F', 133), +(76394, 'Rosario', 1957, 'F', 133), +(76395, 'Daria', 1957, 'F', 132), +(76396, 'Dayna', 1957, 'F', 132), +(76397, 'Delphine', 1957, 'F', 132), +(76398, 'Jaye', 1957, 'F', 132), +(76399, 'Letitia', 1957, 'F', 132), +(76400, 'Reta', 1957, 'F', 132), +(76401, 'Annetta', 1957, 'F', 131), +(76402, 'Mimi', 1957, 'F', 131), +(76403, 'Ophelia', 1957, 'F', 131), +(76404, 'Queen', 1957, 'F', 131), +(76405, 'Collette', 1957, 'F', 130), +(76406, 'Jacquline', 1957, 'F', 130), +(76407, 'Lottie', 1957, 'F', 129), +(76408, 'Meg', 1957, 'F', 129), +(76409, 'Ronna', 1957, 'F', 129), +(76410, 'Lauretta', 1957, 'F', 128), +(76411, 'Lucretia', 1957, 'F', 128), +(76412, 'Rosita', 1957, 'F', 127), +(76413, 'Zelda', 1957, 'F', 127), +(76414, 'Carolina', 1957, 'F', 126), +(76415, 'Erika', 1957, 'F', 126), +(76416, 'Josefina', 1957, 'F', 126), +(76417, 'Joycelyn', 1957, 'F', 126), +(76418, 'Leslee', 1957, 'F', 126), +(76419, 'Lizzie', 1957, 'F', 126), +(76420, 'Oralia', 1957, 'F', 126), +(76421, 'Romona', 1957, 'F', 126), +(76422, 'Beryl', 1957, 'F', 125), +(76423, 'Candi', 1957, 'F', 125), +(76424, 'Cherrie', 1957, 'F', 125), +(76425, 'Janeen', 1957, 'F', 125), +(76426, 'Lise', 1957, 'F', 125), +(76427, 'Antionette', 1957, 'F', 124), +(76428, 'Beckie', 1957, 'F', 124), +(76429, 'Evonne', 1957, 'F', 124), +(76430, 'Hannah', 1957, 'F', 124), +(76431, 'Magdalena', 1957, 'F', 124), +(76432, 'Sharla', 1957, 'F', 124), +(76433, 'Thea', 1957, 'F', 124), +(76434, 'Alyce', 1957, 'F', 123), +(76435, 'Dollie', 1957, 'F', 123), +(76436, 'Esmeralda', 1957, 'F', 123), +(76437, 'Gerry', 1957, 'F', 123), +(76438, 'Goldie', 1957, 'F', 123), +(76439, 'Juliann', 1957, 'F', 123), +(76440, 'Lorinda', 1957, 'F', 123), +(76441, 'Rachael', 1957, 'F', 123), +(76442, 'Angelita', 1957, 'F', 122), +(76443, 'Charleen', 1957, 'F', 122), +(76444, 'Louisa', 1957, 'F', 122), +(76445, 'Maritza', 1957, 'F', 122), +(76446, 'Adela', 1957, 'F', 121), +(76447, 'Abbie', 1957, 'F', 120), +(76448, 'Cheryll', 1957, 'F', 120), +(76449, 'Jacki', 1957, 'F', 120), +(76450, 'Merri', 1957, 'F', 120), +(76451, 'Sharen', 1957, 'F', 120), +(76452, 'Carmelita', 1957, 'F', 119), +(76453, 'Suzanna', 1957, 'F', 119), +(76454, 'Annemarie', 1957, 'F', 118), +(76455, 'Carlotta', 1957, 'F', 118), +(76456, 'Dara', 1957, 'F', 118), +(76457, 'Elnora', 1957, 'F', 118), +(76458, 'Margery', 1957, 'F', 118), +(76459, 'Alana', 1957, 'F', 117), +(76460, 'Joleen', 1957, 'F', 117), +(76461, 'Katy', 1957, 'F', 117), +(76462, 'Lonnie', 1957, 'F', 117), +(76463, 'Nilda', 1957, 'F', 117), +(76464, 'Noemi', 1957, 'F', 117), +(76465, 'Peggie', 1957, 'F', 117), +(76466, 'Richard', 1957, 'F', 117), +(76467, 'Sydney', 1957, 'F', 117), +(76468, 'Daryl', 1957, 'F', 116), +(76469, 'Keri', 1957, 'F', 116), +(76470, 'Lelia', 1957, 'F', 116), +(76471, 'Nedra', 1957, 'F', 116), +(76472, 'Rona', 1957, 'F', 116), +(76473, 'Serena', 1957, 'F', 116), +(76474, 'Trena', 1957, 'F', 116), +(76475, 'Eliza', 1957, 'F', 115), +(76476, 'Shiela', 1957, 'F', 115), +(76477, 'Vernell', 1957, 'F', 115), +(76478, 'Winnie', 1957, 'F', 115), +(76479, 'Winona', 1957, 'F', 115), +(76480, 'Aleta', 1957, 'F', 114), +(76481, 'Bobby', 1957, 'F', 114), +(76482, 'Effie', 1957, 'F', 114), +(76483, 'Francisca', 1957, 'F', 114), +(76484, 'Cary', 1957, 'F', 113), +(76485, 'Elida', 1957, 'F', 113), +(76486, 'Sarita', 1957, 'F', 113), +(76487, 'Tia', 1957, 'F', 113), +(76488, 'Virgie', 1957, 'F', 113), +(76489, 'Jacalyn', 1957, 'F', 112), +(76490, 'Juliette', 1957, 'F', 112), +(76491, 'Anastasia', 1957, 'F', 111), +(76492, 'Athena', 1957, 'F', 111), +(76493, 'Cassie', 1957, 'F', 111), +(76494, 'Cathey', 1957, 'F', 111), +(76495, 'Lita', 1957, 'F', 111), +(76496, 'Madeleine', 1957, 'F', 111), +(76497, 'Starr', 1957, 'F', 111), +(76498, 'Camilla', 1957, 'F', 110), +(76499, 'Delma', 1957, 'F', 110), +(76500, 'Eddie', 1957, 'F', 110), +(76501, 'Justine', 1957, 'F', 110), +(76502, 'Mickie', 1957, 'F', 110), +(76503, 'Ola', 1957, 'F', 110), +(76504, 'Thomas', 1957, 'F', 110), +(76505, 'Germaine', 1957, 'F', 109), +(76506, 'Isabelle', 1957, 'F', 109), +(76507, 'Kirsten', 1957, 'F', 109), +(76508, 'Laurene', 1957, 'F', 109), +(76509, 'Petra', 1957, 'F', 109), +(76510, 'Suzann', 1957, 'F', 109), +(76511, 'Ursula', 1957, 'F', 109), +(76512, 'Elyse', 1957, 'F', 108), +(76513, 'Jacque', 1957, 'F', 108), +(76514, 'Lolita', 1957, 'F', 108), +(76515, 'Lona', 1957, 'F', 108), +(76516, 'Moira', 1957, 'F', 108), +(76517, 'Nicki', 1957, 'F', 108), +(76518, 'Callie', 1957, 'F', 107), +(76519, 'Lanette', 1957, 'F', 107), +(76520, 'Marlys', 1957, 'F', 107), +(76521, 'Maryjane', 1957, 'F', 107), +(76522, 'Millicent', 1957, 'F', 107), +(76523, 'Ruthann', 1957, 'F', 107), +(76524, 'Corine', 1957, 'F', 106), +(76525, 'Larry', 1957, 'F', 106), +(76526, 'Loreen', 1957, 'F', 106), +(76527, 'Phoebe', 1957, 'F', 106), +(76528, 'Allyson', 1957, 'F', 105), +(76529, 'Cleo', 1957, 'F', 105), +(76530, 'George', 1957, 'F', 105), +(76531, 'Jann', 1957, 'F', 105), +(76532, 'Marianna', 1957, 'F', 105), +(76533, 'Marita', 1957, 'F', 105), +(76534, 'Ofelia', 1957, 'F', 105), +(76535, 'Gaylene', 1957, 'F', 104), +(76536, 'Loren', 1957, 'F', 104), +(76537, 'Nena', 1957, 'F', 104), +(76538, 'Selma', 1957, 'F', 104), +(76539, 'Adrian', 1957, 'F', 103), +(76540, 'Drema', 1957, 'F', 103), +(76541, 'Janel', 1957, 'F', 103), +(76542, 'Jannette', 1957, 'F', 103), +(76543, 'Joetta', 1957, 'F', 103), +(76544, 'Margot', 1957, 'F', 103), +(76545, 'Venus', 1957, 'F', 103), +(76546, 'Coral', 1957, 'F', 102), +(76547, 'Freddie', 1957, 'F', 102), +(76548, 'Ivette', 1957, 'F', 102), +(76549, 'Carolynn', 1957, 'F', 101), +(76550, 'Kayla', 1957, 'F', 101), +(76551, 'Sherilyn', 1957, 'F', 101), +(76552, 'Alta', 1957, 'F', 100), +(76553, 'Beatriz', 1957, 'F', 100), +(76554, 'Judie', 1957, 'F', 100), +(76555, 'Michael', 1957, 'M', 92709), +(76556, 'James', 1957, 'M', 84242), +(76557, 'David', 1957, 'M', 82367), +(76558, 'Robert', 1957, 'M', 81707), +(76559, 'John', 1957, 'M', 78983), +(76560, 'William', 1957, 'M', 56822), +(76561, 'Mark', 1957, 'M', 52811), +(76562, 'Richard', 1957, 'M', 52400), +(76563, 'Thomas', 1957, 'M', 44580), +(76564, 'Steven', 1957, 'M', 36832), +(76565, 'Charles', 1957, 'M', 34252), +(76566, 'Joseph', 1957, 'M', 31814), +(76567, 'Gary', 1957, 'M', 29513), +(76568, 'Kenneth', 1957, 'M', 28036), +(76569, 'Donald', 1957, 'M', 27859), +(76570, 'Daniel', 1957, 'M', 27305), +(76571, 'Ronald', 1957, 'M', 27185), +(76572, 'Paul', 1957, 'M', 26987), +(76573, 'Timothy', 1957, 'M', 24734), +(76574, 'Kevin', 1957, 'M', 24283), +(76575, 'Jeffrey', 1957, 'M', 23951), +(76576, 'Larry', 1957, 'M', 21906), +(76577, 'Gregory', 1957, 'M', 21449), +(76578, 'Stephen', 1957, 'M', 19711), +(76579, 'Edward', 1957, 'M', 18702), +(76580, 'Brian', 1957, 'M', 17507), +(76581, 'Anthony', 1957, 'M', 17035), +(76582, 'Dennis', 1957, 'M', 16899), +(76583, 'George', 1957, 'M', 16868), +(76584, 'Douglas', 1957, 'M', 16725), +(76585, 'Randy', 1957, 'M', 16459), +(76586, 'Scott', 1957, 'M', 15742), +(76587, 'Terry', 1957, 'M', 15616), +(76588, 'Bruce', 1957, 'M', 13876), +(76589, 'Jerry', 1957, 'M', 13266), +(76590, 'Keith', 1957, 'M', 12427), +(76591, 'Peter', 1957, 'M', 11588), +(76592, 'Frank', 1957, 'M', 11263), +(76593, 'Raymond', 1957, 'M', 10806), +(76594, 'Ricky', 1957, 'M', 10567), +(76595, 'Patrick', 1957, 'M', 10338), +(76596, 'Roger', 1957, 'M', 9860), +(76597, 'Christopher', 1957, 'M', 8975), +(76598, 'Steve', 1957, 'M', 8916), +(76599, 'Danny', 1957, 'M', 8810), +(76600, 'Lawrence', 1957, 'M', 8740), +(76601, 'Wayne', 1957, 'M', 8660), +(76602, 'Alan', 1957, 'M', 8212), +(76603, 'Carl', 1957, 'M', 8189), +(76604, 'Dale', 1957, 'M', 7879), +(76605, 'Gerald', 1957, 'M', 7594), +(76606, 'Jeffery', 1957, 'M', 7502), +(76607, 'Mike', 1957, 'M', 7238), +(76608, 'Russell', 1957, 'M', 7220), +(76609, 'Craig', 1957, 'M', 7064), +(76610, 'Andrew', 1957, 'M', 6995), +(76611, 'Joe', 1957, 'M', 6765), +(76612, 'Walter', 1957, 'M', 6706), +(76613, 'Randall', 1957, 'M', 6678), +(76614, 'Eric', 1957, 'M', 6618), +(76615, 'Johnny', 1957, 'M', 6496), +(76616, 'Glenn', 1957, 'M', 6252), +(76617, 'Willie', 1957, 'M', 6214), +(76618, 'Billy', 1957, 'M', 6147), +(76619, 'Roy', 1957, 'M', 6058), +(76620, 'Arthur', 1957, 'M', 6057), +(76621, 'Jack', 1957, 'M', 6022), +(76622, 'Philip', 1957, 'M', 6007), +(76623, 'Martin', 1957, 'M', 5959), +(76624, 'Tony', 1957, 'M', 5861), +(76625, 'Rodney', 1957, 'M', 5859), +(76626, 'Barry', 1957, 'M', 5788), +(76627, 'Ronnie', 1957, 'M', 5763), +(76628, 'Harold', 1957, 'M', 5752), +(76629, 'Henry', 1957, 'M', 5750), +(76630, 'Ralph', 1957, 'M', 5711), +(76631, 'Jimmy', 1957, 'M', 5668), +(76632, 'Bobby', 1957, 'M', 5614), +(76633, 'Phillip', 1957, 'M', 5549), +(76634, 'Curtis', 1957, 'M', 5339), +(76635, 'Stanley', 1957, 'M', 5267), +(76636, 'Samuel', 1957, 'M', 5233), +(76637, 'Matthew', 1957, 'M', 5222), +(76638, 'Albert', 1957, 'M', 5035), +(76639, 'Micheal', 1957, 'M', 4837), +(76640, 'Louis', 1957, 'M', 4691), +(76641, 'Rick', 1957, 'M', 4664), +(76642, 'Jay', 1957, 'M', 4630), +(76643, 'Howard', 1957, 'M', 4617), +(76644, 'Darrell', 1957, 'M', 4574), +(76645, 'Allen', 1957, 'M', 4428), +(76646, 'Eugene', 1957, 'M', 4406), +(76647, 'Dean', 1957, 'M', 4369), +(76648, 'Leonard', 1957, 'M', 4328), +(76649, 'Eddie', 1957, 'M', 4112), +(76650, 'Jeff', 1957, 'M', 4092), +(76651, 'Victor', 1957, 'M', 4088), +(76652, 'Vincent', 1957, 'M', 4066), +(76653, 'Frederick', 1957, 'M', 3999), +(76654, 'Harry', 1957, 'M', 3795), +(76655, 'Ernest', 1957, 'M', 3784), +(76656, 'Tommy', 1957, 'M', 3670), +(76657, 'Fred', 1957, 'M', 3636), +(76658, 'Lee', 1957, 'M', 3600), +(76659, 'Joel', 1957, 'M', 3598), +(76660, 'Jim', 1957, 'M', 3542), +(76661, 'Bradley', 1957, 'M', 3528), +(76662, 'Rickey', 1957, 'M', 3521), +(76663, 'Jon', 1957, 'M', 3470), +(76664, 'Jose', 1957, 'M', 3465), +(76665, 'Ray', 1957, 'M', 3412), +(76666, 'Marvin', 1957, 'M', 3410), +(76667, 'Melvin', 1957, 'M', 3395), +(76668, 'Calvin', 1957, 'M', 3391), +(76669, 'Bryan', 1957, 'M', 3372), +(76670, 'Tom', 1957, 'M', 3356), +(76671, 'Don', 1957, 'M', 3354), +(76672, 'Norman', 1957, 'M', 3339), +(76673, 'Chris', 1957, 'M', 3257), +(76674, 'Tim', 1957, 'M', 3255), +(76675, 'Dan', 1957, 'M', 3189), +(76676, 'Earl', 1957, 'M', 3133), +(76677, 'Bill', 1957, 'M', 3121), +(76678, 'Jonathan', 1957, 'M', 3044), +(76679, 'Mitchell', 1957, 'M', 3020), +(76680, 'Jerome', 1957, 'M', 2999), +(76681, 'Greg', 1957, 'M', 2969), +(76682, 'Francis', 1957, 'M', 2936), +(76683, 'Glen', 1957, 'M', 2925), +(76684, 'Clifford', 1957, 'M', 2889), +(76685, 'Alfred', 1957, 'M', 2823), +(76686, 'Theodore', 1957, 'M', 2756), +(76687, 'Jesse', 1957, 'M', 2735), +(76688, 'Edwin', 1957, 'M', 2708), +(76689, 'Clarence', 1957, 'M', 2627), +(76690, 'Duane', 1957, 'M', 2612), +(76691, 'Bernard', 1957, 'M', 2529), +(76692, 'Benjamin', 1957, 'M', 2490), +(76693, 'Marc', 1957, 'M', 2481), +(76694, 'Gordon', 1957, 'M', 2461), +(76695, 'Kurt', 1957, 'M', 2429), +(76696, 'Reginald', 1957, 'M', 2413), +(76697, 'Todd', 1957, 'M', 2406), +(76698, 'Alvin', 1957, 'M', 2383), +(76699, 'Perry', 1957, 'M', 2368), +(76700, 'Warren', 1957, 'M', 2343), +(76701, 'Karl', 1957, 'M', 2338), +(76702, 'Leroy', 1957, 'M', 2307), +(76703, 'Guy', 1957, 'M', 2301), +(76704, 'Kent', 1957, 'M', 2297), +(76705, 'Herbert', 1957, 'M', 2277), +(76706, 'Nicholas', 1957, 'M', 2196), +(76707, 'Brad', 1957, 'M', 2195), +(76708, 'Dave', 1957, 'M', 2183), +(76709, 'Kirk', 1957, 'M', 2182), +(76710, 'Leslie', 1957, 'M', 2098), +(76711, 'Lonnie', 1957, 'M', 2044), +(76712, 'Garry', 1957, 'M', 2039), +(76713, 'Dwight', 1957, 'M', 2027), +(76714, 'Wesley', 1957, 'M', 1991), +(76715, 'Kim', 1957, 'M', 1979), +(76716, 'Vernon', 1957, 'M', 1978), +(76717, 'Gilbert', 1957, 'M', 1958), +(76718, 'Lloyd', 1957, 'M', 1919), +(76719, 'Juan', 1957, 'M', 1900), +(76720, 'Leon', 1957, 'M', 1880), +(76721, 'Robin', 1957, 'M', 1867), +(76722, 'Kelly', 1957, 'M', 1866), +(76723, 'Gene', 1957, 'M', 1840), +(76724, 'Floyd', 1957, 'M', 1825), +(76725, 'Bob', 1957, 'M', 1814), +(76726, 'Darryl', 1957, 'M', 1797), +(76727, 'Carlos', 1957, 'M', 1792), +(76728, 'Brent', 1957, 'M', 1777), +(76729, 'Kerry', 1957, 'M', 1746), +(76730, 'Clyde', 1957, 'M', 1736), +(76731, 'Donnie', 1957, 'M', 1717), +(76732, 'Jackie', 1957, 'M', 1706), +(76733, 'Daryl', 1957, 'M', 1693), +(76734, 'Franklin', 1957, 'M', 1692), +(76735, 'Lewis', 1957, 'M', 1675), +(76736, 'Neil', 1957, 'M', 1674), +(76737, 'Lester', 1957, 'M', 1638), +(76738, 'Manuel', 1957, 'M', 1636), +(76739, 'Ted', 1957, 'M', 1635), +(76740, 'Dana', 1957, 'M', 1617), +(76741, 'Allan', 1957, 'M', 1575), +(76742, 'Gregg', 1957, 'M', 1545), +(76743, 'Leo', 1957, 'M', 1520), +(76744, 'Gerard', 1957, 'M', 1514), +(76745, 'Jimmie', 1957, 'M', 1462), +(76746, 'Charlie', 1957, 'M', 1454), +(76747, 'Randal', 1957, 'M', 1451), +(76748, 'Stuart', 1957, 'M', 1424), +(76749, 'Tyrone', 1957, 'M', 1412), +(76750, 'Maurice', 1957, 'M', 1388), +(76751, 'Ruben', 1957, 'M', 1382), +(76752, 'Randolph', 1957, 'M', 1363), +(76753, 'Milton', 1957, 'M', 1360), +(76754, 'Marty', 1957, 'M', 1348), +(76755, 'Aaron', 1957, 'M', 1340), +(76756, 'Freddie', 1957, 'M', 1335), +(76757, 'Rex', 1957, 'M', 1333), +(76758, 'Antonio', 1957, 'M', 1324), +(76759, 'Herman', 1957, 'M', 1319), +(76760, 'Terrence', 1957, 'M', 1308), +(76761, 'Johnnie', 1957, 'M', 1291), +(76762, 'Ron', 1957, 'M', 1281), +(76763, 'Harvey', 1957, 'M', 1279), +(76764, 'Arnold', 1957, 'M', 1271), +(76765, 'Lynn', 1957, 'M', 1270), +(76766, 'Nathaniel', 1957, 'M', 1262), +(76767, 'Byron', 1957, 'M', 1261), +(76768, 'Alexander', 1957, 'M', 1258), +(76769, 'Nathan', 1957, 'M', 1229), +(76770, 'Roland', 1957, 'M', 1210), +(76771, 'Oscar', 1957, 'M', 1203), +(76772, 'Neal', 1957, 'M', 1191), +(76773, 'Ricardo', 1957, 'M', 1187), +(76774, 'Ken', 1957, 'M', 1181), +(76775, 'Chester', 1957, 'M', 1178), +(76776, 'Lance', 1957, 'M', 1159), +(76777, 'Mario', 1957, 'M', 1153), +(76778, 'Tracy', 1957, 'M', 1153), +(76779, 'Wade', 1957, 'M', 1141), +(76780, 'Luis', 1957, 'M', 1121), +(76781, 'Wendell', 1957, 'M', 1111), +(76782, 'Marshall', 1957, 'M', 1094), +(76783, 'Clinton', 1957, 'M', 1083), +(76784, 'Kenny', 1957, 'M', 1081), +(76785, 'Sam', 1957, 'M', 1072), +(76786, 'Jessie', 1957, 'M', 1064), +(76787, 'Cecil', 1957, 'M', 1062), +(76788, 'Andre', 1957, 'M', 1057), +(76789, 'Clifton', 1957, 'M', 1052), +(76790, 'Fredrick', 1957, 'M', 1046), +(76791, 'Dwayne', 1957, 'M', 1037), +(76792, 'Terrance', 1957, 'M', 1037), +(76793, 'Marcus', 1957, 'M', 1034), +(76794, 'Joey', 1957, 'M', 1033), +(76795, 'Kyle', 1957, 'M', 1029), +(76796, 'Clayton', 1957, 'M', 1019), +(76797, 'Claude', 1957, 'M', 1015), +(76798, 'Andy', 1957, 'M', 975), +(76799, 'Hugh', 1957, 'M', 967), +(76800, 'Carlton', 1957, 'M', 954), +(76801, 'Ross', 1957, 'M', 953), +(76802, 'Derrick', 1957, 'M', 945), +(76803, 'Mickey', 1957, 'M', 945), +(76804, 'Nelson', 1957, 'M', 942), +(76805, 'Rocky', 1957, 'M', 911), +(76806, 'Shawn', 1957, 'M', 906), +(76807, 'Alex', 1957, 'M', 900), +(76808, 'Doug', 1957, 'M', 888), +(76809, 'Benny', 1957, 'M', 872), +(76810, 'Wallace', 1957, 'M', 864), +(76811, 'Jesus', 1957, 'M', 860), +(76812, 'Ben', 1957, 'M', 854), +(76813, 'Raul', 1957, 'M', 844), +(76814, 'Sidney', 1957, 'M', 841), +(76815, 'Lyle', 1957, 'M', 836), +(76816, 'Rickie', 1957, 'M', 833), +(76817, 'Roberto', 1957, 'M', 814), +(76818, 'Hector', 1957, 'M', 808), +(76819, 'Kelvin', 1957, 'M', 807), +(76820, 'Sammy', 1957, 'M', 794), +(76821, 'Terence', 1957, 'M', 793), +(76822, 'Cary', 1957, 'M', 787), +(76823, 'Sean', 1957, 'M', 784), +(76824, 'Francisco', 1957, 'M', 781), +(76825, 'Edgar', 1957, 'M', 774), +(76826, 'Morris', 1957, 'M', 773), +(76827, 'Troy', 1957, 'M', 773), +(76828, 'Rudy', 1957, 'M', 764), +(76829, 'Roderick', 1957, 'M', 761), +(76830, 'Geoffrey', 1957, 'M', 747), +(76831, 'Frankie', 1957, 'M', 746), +(76832, 'Max', 1957, 'M', 741), +(76833, 'Miguel', 1957, 'M', 741), +(76834, 'Everett', 1957, 'M', 727), +(76835, 'Angelo', 1957, 'M', 723), +(76836, 'Nick', 1957, 'M', 689), +(76837, 'Derek', 1957, 'M', 677), +(76838, 'Bradford', 1957, 'M', 674), +(76839, 'Ramon', 1957, 'M', 672), +(76840, 'Bennie', 1957, 'M', 662), +(76841, 'Otis', 1957, 'M', 662), +(76842, 'Edmund', 1957, 'M', 661), +(76843, 'Myron', 1957, 'M', 661), +(76844, 'Virgil', 1957, 'M', 660), +(76845, 'Elmer', 1957, 'M', 658), +(76846, 'Armando', 1957, 'M', 656), +(76847, 'Brett', 1957, 'M', 654), +(76848, 'Loren', 1957, 'M', 651), +(76849, 'Pete', 1957, 'M', 651), +(76850, 'Felix', 1957, 'M', 647), +(76851, 'Ira', 1957, 'M', 641), +(76852, 'Darrel', 1957, 'M', 640), +(76853, 'Grant', 1957, 'M', 640), +(76854, 'Clark', 1957, 'M', 638), +(76855, 'Willard', 1957, 'M', 637), +(76856, 'Chuck', 1957, 'M', 632), +(76857, 'Earnest', 1957, 'M', 631), +(76858, 'Pat', 1957, 'M', 630), +(76859, 'Monte', 1957, 'M', 613), +(76860, 'Pedro', 1957, 'M', 610), +(76861, 'Marion', 1957, 'M', 609), +(76862, 'Timmy', 1957, 'M', 609), +(76863, 'Salvatore', 1957, 'M', 608), +(76864, 'Laurence', 1957, 'M', 605), +(76865, 'Sylvester', 1957, 'M', 605), +(76866, 'Elvis', 1957, 'M', 597), +(76867, 'Clay', 1957, 'M', 592), +(76868, 'Julius', 1957, 'M', 588), +(76869, 'Roosevelt', 1957, 'M', 582), +(76870, 'Luther', 1957, 'M', 581), +(76871, 'Ivan', 1957, 'M', 576), +(76872, 'Stewart', 1957, 'M', 574), +(76873, 'Matt', 1957, 'M', 572), +(76874, 'Angel', 1957, 'M', 568), +(76875, 'Rudolph', 1957, 'M', 568), +(76876, 'Teddy', 1957, 'M', 568), +(76877, 'Delbert', 1957, 'M', 567), +(76878, 'Alton', 1957, 'M', 564), +(76879, 'Malcolm', 1957, 'M', 562), +(76880, 'Lorenzo', 1957, 'M', 558), +(76881, 'Rene', 1957, 'M', 555), +(76882, 'Jeffry', 1957, 'M', 553), +(76883, 'Archie', 1957, 'M', 552), +(76884, 'Horace', 1957, 'M', 547), +(76885, 'Jacob', 1957, 'M', 540), +(76886, 'Fernando', 1957, 'M', 534), +(76887, 'Hal', 1957, 'M', 526), +(76888, 'Isaac', 1957, 'M', 521), +(76889, 'Preston', 1957, 'M', 515), +(76890, 'Gerry', 1957, 'M', 513), +(76891, 'Sherman', 1957, 'M', 513), +(76892, 'Doyle', 1957, 'M', 503), +(76893, 'Jerald', 1957, 'M', 499), +(76894, 'Phil', 1957, 'M', 496), +(76895, 'Wilbert', 1957, 'M', 494), +(76896, 'Dexter', 1957, 'M', 487), +(76897, 'Hubert', 1957, 'M', 483), +(76898, 'Leland', 1957, 'M', 480), +(76899, 'Rodger', 1957, 'M', 475), +(76900, 'Rory', 1957, 'M', 475), +(76901, 'Drew', 1957, 'M', 471), +(76902, 'Tommie', 1957, 'M', 468), +(76903, 'Monty', 1957, 'M', 466), +(76904, 'Adrian', 1957, 'M', 465), +(76905, 'Vance', 1957, 'M', 463), +(76906, 'Carey', 1957, 'M', 462), +(76907, 'Forrest', 1957, 'M', 460), +(76908, 'Stephan', 1957, 'M', 459), +(76909, 'Scot', 1957, 'M', 458), +(76910, 'Julian', 1957, 'M', 457), +(76911, 'Van', 1957, 'M', 456), +(76912, 'Oliver', 1957, 'M', 453), +(76913, 'Lowell', 1957, 'M', 448), +(76914, 'Willis', 1957, 'M', 448), +(76915, 'Alfredo', 1957, 'M', 447), +(76916, 'Jamie', 1957, 'M', 445), +(76917, 'Stevie', 1957, 'M', 442), +(76918, 'Curt', 1957, 'M', 441), +(76919, 'Jaime', 1957, 'M', 441), +(76920, 'Jason', 1957, 'M', 439), +(76921, 'Rusty', 1957, 'M', 439), +(76922, 'Dominic', 1957, 'M', 436), +(76923, 'Ed', 1957, 'M', 435), +(76924, 'Arturo', 1957, 'M', 430), +(76925, 'Jan', 1957, 'M', 429), +(76926, 'Adam', 1957, 'M', 428), +(76927, 'Dewayne', 1957, 'M', 426), +(76928, 'Freddy', 1957, 'M', 426), +(76929, 'Jorge', 1957, 'M', 423), +(76930, 'Sheldon', 1957, 'M', 423), +(76931, 'Ernie', 1957, 'M', 420), +(76932, 'Ervin', 1957, 'M', 419), +(76933, 'Alfonso', 1957, 'M', 415), +(76934, 'Rufus', 1957, 'M', 412), +(76935, 'Homer', 1957, 'M', 411), +(76936, 'Owen', 1957, 'M', 406), +(76937, 'Mack', 1957, 'M', 402), +(76938, 'Cedric', 1957, 'M', 398), +(76939, 'Clint', 1957, 'M', 398), +(76940, 'Shane', 1957, 'M', 393), +(76941, 'Jody', 1957, 'M', 391), +(76942, 'Unknown', 1957, 'M', 391), +(76943, 'Denis', 1957, 'M', 390), +(76944, 'Rafael', 1957, 'M', 390), +(76945, 'Boyd', 1957, 'M', 389), +(76946, 'Al', 1957, 'M', 388), +(76947, 'Ellis', 1957, 'M', 388), +(76948, 'Gabriel', 1957, 'M', 385), +(76949, 'Wilbur', 1957, 'M', 384), +(76950, 'Kendall', 1957, 'M', 383), +(76951, 'Darwin', 1957, 'M', 381), +(76952, 'Noel', 1957, 'M', 380), +(76953, 'Carroll', 1957, 'M', 379), +(76954, 'Grady', 1957, 'M', 377), +(76955, 'Alonzo', 1957, 'M', 376), +(76956, 'Alberto', 1957, 'M', 375), +(76957, 'Aubrey', 1957, 'M', 374), +(76958, 'Robbie', 1957, 'M', 371), +(76959, 'Casey', 1957, 'M', 368), +(76960, 'Dirk', 1957, 'M', 368), +(76961, 'Dallas', 1957, 'M', 367), +(76962, 'Dewey', 1957, 'M', 366), +(76963, 'Travis', 1957, 'M', 359), +(76964, 'Elbert', 1957, 'M', 358), +(76965, 'Kirby', 1957, 'M', 357), +(76966, 'Kris', 1957, 'M', 356), +(76967, 'Ronny', 1957, 'M', 356), +(76968, 'Wilson', 1957, 'M', 356), +(76969, 'Dane', 1957, 'M', 353), +(76970, 'Orlando', 1957, 'M', 352), +(76971, 'Buddy', 1957, 'M', 350), +(76972, 'Darnell', 1957, 'M', 349), +(76973, 'Percy', 1957, 'M', 348), +(76974, 'Louie', 1957, 'M', 347), +(76975, 'Blaine', 1957, 'M', 346), +(76976, 'Bert', 1957, 'M', 340), +(76977, 'Cornelius', 1957, 'M', 337), +(76978, 'Ernesto', 1957, 'M', 337), +(76979, 'Lionel', 1957, 'M', 336), +(76980, 'Royce', 1957, 'M', 330), +(76981, 'Bryant', 1957, 'M', 327), +(76982, 'Christian', 1957, 'M', 327), +(76983, 'Salvador', 1957, 'M', 326), +(76984, 'Rod', 1957, 'M', 325), +(76985, 'Edmond', 1957, 'M', 322), +(76986, 'Joesph', 1957, 'M', 322), +(76987, 'Conrad', 1957, 'M', 321), +(76988, 'Erik', 1957, 'M', 321), +(76989, 'Javier', 1957, 'M', 320), +(76990, 'Dominick', 1957, 'M', 312), +(76991, 'Miles', 1957, 'M', 312), +(76992, 'Enrique', 1957, 'M', 310), +(76993, 'Elton', 1957, 'M', 307), +(76994, 'Stan', 1957, 'M', 304), +(76995, 'Evan', 1957, 'M', 302), +(76996, 'Julio', 1957, 'M', 301), +(76997, 'Irvin', 1957, 'M', 300), +(76998, 'Justin', 1957, 'M', 300), +(76999, 'Wilfred', 1957, 'M', 300), +(77000, 'Rodolfo', 1957, 'M', 299), +(77001, 'Sammie', 1957, 'M', 296), +(77002, 'Denny', 1957, 'M', 295), +(77003, 'Emmett', 1957, 'M', 295), +(77004, 'Marlon', 1957, 'M', 295), +(77005, 'Luke', 1957, 'M', 292), +(77006, 'Alphonso', 1957, 'M', 290), +(77007, 'Randell', 1957, 'M', 290), +(77008, 'Zachary', 1957, 'M', 290), +(77009, 'Blake', 1957, 'M', 289), +(77010, 'Cleveland', 1957, 'M', 289), +(77011, 'Reed', 1957, 'M', 285), +(77012, 'Michel', 1957, 'M', 283), +(77013, 'Cory', 1957, 'M', 282), +(77014, 'Lamar', 1957, 'M', 281), +(77015, 'Ryan', 1957, 'M', 280), +(77016, 'Wyatt', 1957, 'M', 278), +(77017, 'Cameron', 1957, 'M', 277), +(77018, 'Marlin', 1957, 'M', 277), +(77019, 'Spencer', 1957, 'M', 274), +(77020, 'Abraham', 1957, 'M', 273), +(77021, 'Barney', 1957, 'M', 272), +(77022, 'Donny', 1957, 'M', 272), +(77023, 'Bryon', 1957, 'M', 271), +(77024, 'Joshua', 1957, 'M', 271), +(77025, 'Colin', 1957, 'M', 270), +(77026, 'Bart', 1957, 'M', 269), +(77027, 'Garland', 1957, 'M', 269), +(77028, 'Jess', 1957, 'M', 269), +(77029, 'Murray', 1957, 'M', 269), +(77030, 'Norris', 1957, 'M', 268), +(77031, 'Harlan', 1957, 'M', 267), +(77032, 'Moses', 1957, 'M', 267), +(77033, 'Emanuel', 1957, 'M', 265), +(77034, 'Galen', 1957, 'M', 263), +(77035, 'Guadalupe', 1957, 'M', 263), +(77036, 'Eduardo', 1957, 'M', 262), +(77037, 'Reynaldo', 1957, 'M', 262), +(77038, 'Corey', 1957, 'M', 261), +(77039, 'Damon', 1957, 'M', 261), +(77040, 'Seth', 1957, 'M', 260), +(77041, 'Christophe', 1957, 'M', 259), +(77042, 'Ned', 1957, 'M', 259), +(77043, 'Winston', 1957, 'M', 257), +(77044, 'Merle', 1957, 'M', 254), +(77045, 'Rocco', 1957, 'M', 254), +(77046, 'Rob', 1957, 'M', 252), +(77047, 'Mathew', 1957, 'M', 251), +(77048, 'Amos', 1957, 'M', 250), +(77049, 'Chad', 1957, 'M', 250), +(77050, 'Toby', 1957, 'M', 250), +(77051, 'Cliff', 1957, 'M', 249), +(77052, 'Sterling', 1957, 'M', 245), +(77053, 'Junior', 1957, 'M', 243), +(77054, 'Austin', 1957, 'M', 242), +(77055, 'Reuben', 1957, 'M', 241), +(77056, 'Woodrow', 1957, 'M', 239), +(77057, 'Carmen', 1957, 'M', 237), +(77058, 'Harley', 1957, 'M', 236), +(77059, 'Orville', 1957, 'M', 236), +(77060, 'Abel', 1957, 'M', 234), +(77061, 'Lon', 1957, 'M', 234), +(77062, 'Blair', 1957, 'M', 233), +(77063, 'Bennett', 1957, 'M', 231), +(77064, 'Eddy', 1957, 'M', 230), +(77065, 'Cornell', 1957, 'M', 227), +(77066, 'Lamont', 1957, 'M', 227), +(77067, 'Dino', 1957, 'M', 226), +(77068, 'Dannie', 1957, 'M', 225), +(77069, 'Irving', 1957, 'M', 224), +(77070, 'Elijah', 1957, 'M', 223), +(77071, 'Russ', 1957, 'M', 222), +(77072, 'Kennith', 1957, 'M', 220), +(77073, 'Ramiro', 1957, 'M', 220), +(77074, 'Grover', 1957, 'M', 219), +(77075, 'Sandy', 1957, 'M', 219), +(77076, 'Will', 1957, 'M', 219), +(77077, 'Billie', 1957, 'M', 218), +(77078, 'Elliott', 1957, 'M', 218), +(77079, 'Gilberto', 1957, 'M', 218), +(77080, 'Erwin', 1957, 'M', 217), +(77081, 'Rolando', 1957, 'M', 217), +(77082, 'Eldon', 1957, 'M', 216), +(77083, 'Ian', 1957, 'M', 216), +(77084, 'Terrell', 1957, 'M', 215), +(77085, 'Thaddeus', 1957, 'M', 215), +(77086, 'Lonny', 1957, 'M', 214), +(77087, 'Alejandro', 1957, 'M', 213), +(77088, 'Pablo', 1957, 'M', 213), +(77089, 'Danial', 1957, 'M', 209), +(77090, 'Duncan', 1957, 'M', 209), +(77091, 'Simon', 1957, 'M', 209), +(77092, 'Mitch', 1957, 'M', 208), +(77093, 'Shaun', 1957, 'M', 208), +(77094, 'Jordan', 1957, 'M', 207), +(77095, 'Linwood', 1957, 'M', 207), +(77096, 'Kip', 1957, 'M', 204), +(77097, 'Garrett', 1957, 'M', 201), +(77098, 'Mitchel', 1957, 'M', 201), +(77099, 'Tomas', 1957, 'M', 201), +(77100, 'Dick', 1957, 'M', 200), +(77101, 'Harrison', 1957, 'M', 200), +(77102, 'Vaughn', 1957, 'M', 200), +(77103, 'Felipe', 1957, 'M', 199), +(77104, 'Reggie', 1957, 'M', 198), +(77105, 'Russel', 1957, 'M', 198), +(77106, 'Bret', 1957, 'M', 195), +(77107, 'Burton', 1957, 'M', 195), +(77108, 'Stacy', 1957, 'M', 195), +(77109, 'Mikel', 1957, 'M', 192), +(77110, 'Pierre', 1957, 'M', 192), +(77111, 'Donnell', 1957, 'M', 191), +(77112, 'Loyd', 1957, 'M', 191), +(77113, 'Sergio', 1957, 'M', 191), +(77114, 'Reid', 1957, 'M', 189), +(77115, 'Roscoe', 1957, 'M', 189), +(77116, 'Emil', 1957, 'M', 188), +(77117, 'Frederic', 1957, 'M', 187), +(77118, 'Ismael', 1957, 'M', 187), +(77119, 'Audie', 1957, 'M', 186), +(77120, 'August', 1957, 'M', 185), +(77121, 'Jeremiah', 1957, 'M', 185), +(77122, 'Morgan', 1957, 'M', 185), +(77123, 'Tod', 1957, 'M', 185), +(77124, 'Lanny', 1957, 'M', 184), +(77125, 'Mary', 1957, 'M', 184), +(77126, 'Nolan', 1957, 'M', 184), +(77127, 'Andres', 1957, 'M', 182), +(77128, 'Lane', 1957, 'M', 182), +(77129, 'Elvin', 1957, 'M', 181), +(77130, 'Israel', 1957, 'M', 180), +(77131, 'Scotty', 1957, 'M', 180), +(77132, 'Gus', 1957, 'M', 179), +(77133, 'Vince', 1957, 'M', 179), +(77134, 'Levi', 1957, 'M', 178), +(77135, 'Dwain', 1957, 'M', 177), +(77136, 'Bobbie', 1957, 'M', 175), +(77137, 'Bernie', 1957, 'M', 174), +(77138, 'Norbert', 1957, 'M', 174), +(77139, 'Kurtis', 1957, 'M', 173), +(77140, 'Weldon', 1957, 'M', 173), +(77141, 'Donn', 1957, 'M', 170), +(77142, 'Jonathon', 1957, 'M', 170), +(77143, 'Ward', 1957, 'M', 170), +(77144, 'Gerardo', 1957, 'M', 168), +(77145, 'Kermit', 1957, 'M', 168), +(77146, 'Trent', 1957, 'M', 168), +(77147, 'Wiley', 1957, 'M', 168), +(77148, 'Jasper', 1957, 'M', 167), +(77149, 'Jean', 1957, 'M', 167), +(77150, 'Odell', 1957, 'M', 167), +(77151, 'Winfred', 1957, 'M', 167), +(77152, 'Roman', 1957, 'M', 166), +(77153, 'Zane', 1957, 'M', 166), +(77154, 'Sanford', 1957, 'M', 164), +(77155, 'Ulysses', 1957, 'M', 163), +(77156, 'Rogelio', 1957, 'M', 161), +(77157, 'Shannon', 1957, 'M', 161), +(77158, 'Solomon', 1957, 'M', 161), +(77159, 'Vern', 1957, 'M', 161), +(77160, 'Brady', 1957, 'M', 160), +(77161, 'Dudley', 1957, 'M', 160), +(77162, 'Jefferson', 1957, 'M', 160), +(77163, 'Domingo', 1957, 'M', 159), +(77164, 'Guillermo', 1957, 'M', 159), +(77165, 'Lenny', 1957, 'M', 159), +(77166, 'Lyndon', 1957, 'M', 158), +(77167, 'Avery', 1957, 'M', 157), +(77168, 'Ivory', 1957, 'M', 157), +(77169, 'Kimberly', 1957, 'M', 156), +(77170, 'Nicky', 1957, 'M', 155), +(77171, 'Gale', 1957, 'M', 154), +(77172, 'Hank', 1957, 'M', 154), +(77173, 'Rock', 1957, 'M', 154), +(77174, 'Jake', 1957, 'M', 153), +(77175, 'Noah', 1957, 'M', 153), +(77176, 'Wilfredo', 1957, 'M', 153), +(77177, 'Otto', 1957, 'M', 152), +(77178, 'Robby', 1957, 'M', 151), +(77179, 'Jerrold', 1957, 'M', 150), +(77180, 'Emilio', 1957, 'M', 149), +(77181, 'Kenton', 1957, 'M', 149), +(77182, 'Merrill', 1957, 'M', 149), +(77183, 'Santos', 1957, 'M', 149), +(77184, 'Tad', 1957, 'M', 149), +(77185, 'Lindsey', 1957, 'M', 148), +(77186, 'Sonny', 1957, 'M', 148), +(77187, 'Barton', 1957, 'M', 147), +(77188, 'Coy', 1957, 'M', 147), +(77189, 'Emory', 1957, 'M', 147), +(77190, 'Garth', 1957, 'M', 147), +(77191, 'Merlin', 1957, 'M', 146), +(77192, 'Art', 1957, 'M', 144), +(77193, 'Elliot', 1957, 'M', 144), +(77194, 'Elwood', 1957, 'M', 144), +(77195, 'Bryce', 1957, 'M', 143), +(77196, 'Marco', 1957, 'M', 143), +(77197, 'Brendan', 1957, 'M', 142), +(77198, 'Elias', 1957, 'M', 142), +(77199, 'Fredric', 1957, 'M', 141), +(77200, 'Riley', 1957, 'M', 141), +(77201, 'Tyler', 1957, 'M', 141), +(77202, 'Val', 1957, 'M', 141), +(77203, 'Carter', 1957, 'M', 140), +(77204, 'Jerold', 1957, 'M', 140), +(77205, 'Saul', 1957, 'M', 140), +(77206, 'Thurman', 1957, 'M', 140), +(77207, 'Vito', 1957, 'M', 140), +(77208, 'Hans', 1957, 'M', 138), +(77209, 'Jacky', 1957, 'M', 137), +(77210, 'Lenard', 1957, 'M', 136), +(77211, 'Rich', 1957, 'M', 136), +(77212, 'Adolph', 1957, 'M', 135), +(77213, 'Anton', 1957, 'M', 134), +(77214, 'Delmar', 1957, 'M', 134), +(77215, 'Benito', 1957, 'M', 133), +(77216, 'Millard', 1957, 'M', 133), +(77217, 'Shelton', 1957, 'M', 133), +(77218, 'Efrain', 1957, 'M', 132), +(77219, 'Stanford', 1957, 'M', 132), +(77220, 'Humberto', 1957, 'M', 131), +(77221, 'Brandon', 1957, 'M', 130), +(77222, 'Bud', 1957, 'M', 130), +(77223, 'Clement', 1957, 'M', 130), +(77224, 'Del', 1957, 'M', 130), +(77225, 'Errol', 1957, 'M', 130), +(77226, 'Jackson', 1957, 'M', 130), +(77227, 'Eli', 1957, 'M', 129), +(77228, 'Hiram', 1957, 'M', 128), +(77229, 'Shelby', 1957, 'M', 128), +(77230, 'Emery', 1957, 'M', 127), +(77231, 'Keven', 1957, 'M', 127), +(77232, 'Randel', 1957, 'M', 127), +(77233, 'Armand', 1957, 'M', 126), +(77234, 'Charley', 1957, 'M', 125), +(77235, 'Hollis', 1957, 'M', 125), +(77236, 'Jarvis', 1957, 'M', 125), +(77237, 'Les', 1957, 'M', 125), +(77238, 'Harris', 1957, 'M', 124), +(77239, 'Monroe', 1957, 'M', 124), +(77240, 'Santiago', 1957, 'M', 124), +(77241, 'Xavier', 1957, 'M', 124), +(77242, 'Butch', 1957, 'M', 123), +(77243, 'Davis', 1957, 'M', 123), +(77244, 'Gil', 1957, 'M', 123), +(77245, 'Ricki', 1957, 'M', 123), +(77246, 'Carmine', 1957, 'M', 122), +(77247, 'Burt', 1957, 'M', 121), +(77248, 'Erick', 1957, 'M', 121), +(77249, 'Kirt', 1957, 'M', 121), +(77250, 'Isaiah', 1957, 'M', 120), +(77251, 'Jed', 1957, 'M', 120), +(77252, 'Tab', 1957, 'M', 120), +(77253, 'Derwin', 1957, 'M', 119), +(77254, 'Douglass', 1957, 'M', 119), +(77255, 'Linda', 1957, 'M', 118), +(77256, 'Mervin', 1957, 'M', 117), +(77257, 'Silas', 1957, 'M', 117), +(77258, 'Cesar', 1957, 'M', 116), +(77259, 'Donovan', 1957, 'M', 116), +(77260, 'Erich', 1957, 'M', 115), +(77261, 'Blane', 1957, 'M', 114), +(77262, 'Quentin', 1957, 'M', 114), +(77263, 'Felton', 1957, 'M', 111), +(77264, 'Freeman', 1957, 'M', 110), +(77265, 'Marcos', 1957, 'M', 110), +(77266, 'Myles', 1957, 'M', 110), +(77267, 'Stacey', 1957, 'M', 110), +(77268, 'Theron', 1957, 'M', 110), +(77269, 'Booker', 1957, 'M', 109), +(77270, 'Brooks', 1957, 'M', 109), +(77271, 'Wally', 1957, 'M', 109), +(77272, 'Carson', 1957, 'M', 108), +(77273, 'Duke', 1957, 'M', 108), +(77274, 'Forest', 1957, 'M', 108), +(77275, 'Kelley', 1957, 'M', 108), +(77276, 'Bruno', 1957, 'M', 107), +(77277, 'Dickie', 1957, 'M', 107), +(77278, 'Faron', 1957, 'M', 107), +(77279, 'Gino', 1957, 'M', 107), +(77280, 'Gustavo', 1957, 'M', 107), +(77281, 'Marcel', 1957, 'M', 107), +(77282, 'Connie', 1957, 'M', 106), +(77283, 'Layne', 1957, 'M', 106), +(77284, 'Lemuel', 1957, 'M', 106), +(77285, 'Anderson', 1957, 'M', 105), +(77286, 'Everette', 1957, 'M', 105), +(77287, 'Judson', 1957, 'M', 105), +(77288, 'Lawerence', 1957, 'M', 105), +(77289, 'Ollie', 1957, 'M', 105), +(77290, 'Toney', 1957, 'M', 105), +(77291, 'Britt', 1957, 'M', 104), +(77292, 'Curtiss', 1957, 'M', 104), +(77293, 'Denver', 1957, 'M', 103), +(77294, 'Fritz', 1957, 'M', 103), +(77295, 'Gail', 1957, 'M', 103), +(77296, 'Rand', 1957, 'M', 103), +(77297, 'Arlen', 1957, 'M', 102), +(77298, 'Quintin', 1957, 'M', 102), +(77299, 'Von', 1957, 'M', 102), +(77300, 'Eloy', 1957, 'M', 101), +(77301, 'Mckinley', 1957, 'M', 101), +(77302, 'Nicolas', 1957, 'M', 101), +(77303, 'Noe', 1957, 'M', 101), +(77304, 'Broderick', 1957, 'M', 100), +(77305, 'Dwaine', 1957, 'M', 100), +(77306, 'Huey', 1957, 'M', 100), +(77307, 'Irwin', 1957, 'M', 100), +(77308, 'Major', 1957, 'M', 100), +(77309, 'Mary', 1958, 'F', 55850), +(77310, 'Susan', 1958, 'F', 45170), +(77311, 'Linda', 1958, 'F', 41900), +(77312, 'Karen', 1958, 'F', 38461), +(77313, 'Patricia', 1958, 'F', 37930), +(77314, 'Debra', 1958, 'F', 35521), +(77315, 'Deborah', 1958, 'F', 32936), +(77316, 'Cynthia', 1958, 'F', 30999), +(77317, 'Barbara', 1958, 'F', 27882), +(77318, 'Donna', 1958, 'F', 26944), +(77319, 'Pamela', 1958, 'F', 25262), +(77320, 'Nancy', 1958, 'F', 24813), +(77321, 'Cheryl', 1958, 'F', 24111), +(77322, 'Kathy', 1958, 'F', 23942), +(77323, 'Sandra', 1958, 'F', 21825), +(77324, 'Brenda', 1958, 'F', 21339), +(77325, 'Sharon', 1958, 'F', 21104), +(77326, 'Diane', 1958, 'F', 20813), +(77327, 'Lisa', 1958, 'F', 20211), +(77328, 'Carol', 1958, 'F', 19690), +(77329, 'Kathleen', 1958, 'F', 19201), +(77330, 'Elizabeth', 1958, 'F', 18530), +(77331, 'Julie', 1958, 'F', 18206), +(77332, 'Debbie', 1958, 'F', 17855), +(77333, 'Cindy', 1958, 'F', 16584), +(77334, 'Teresa', 1958, 'F', 15604), +(77335, 'Denise', 1958, 'F', 14944), +(77336, 'Janet', 1958, 'F', 14815), +(77337, 'Laura', 1958, 'F', 13508), +(77338, 'Lori', 1958, 'F', 13031), +(77339, 'Margaret', 1958, 'F', 12313), +(77340, 'Robin', 1958, 'F', 11540), +(77341, 'Theresa', 1958, 'F', 11450), +(77342, 'Cathy', 1958, 'F', 10935); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(77343, 'Janice', 1958, 'F', 10882), +(77344, 'Judy', 1958, 'F', 10832), +(77345, 'Carolyn', 1958, 'F', 10813), +(77346, 'Catherine', 1958, 'F', 10765), +(77347, 'Kimberly', 1958, 'F', 10713), +(77348, 'Kim', 1958, 'F', 10652), +(77349, 'Rebecca', 1958, 'F', 10404), +(77350, 'Peggy', 1958, 'F', 10071), +(77351, 'Christine', 1958, 'F', 10053), +(77352, 'Tammy', 1958, 'F', 9980), +(77353, 'Diana', 1958, 'F', 9158), +(77354, 'Joyce', 1958, 'F', 9031), +(77355, 'Ann', 1958, 'F', 8848), +(77356, 'Rhonda', 1958, 'F', 8350), +(77357, 'Darlene', 1958, 'F', 8270), +(77358, 'Connie', 1958, 'F', 8206), +(77359, 'Terri', 1958, 'F', 8181), +(77360, 'Shirley', 1958, 'F', 8092), +(77361, 'Paula', 1958, 'F', 8023), +(77362, 'Betty', 1958, 'F', 7711), +(77363, 'Beverly', 1958, 'F', 7681), +(77364, 'Michelle', 1958, 'F', 7458), +(77365, 'Vicki', 1958, 'F', 7435), +(77366, 'Kathryn', 1958, 'F', 7329), +(77367, 'Sheila', 1958, 'F', 7286), +(77368, 'Lynn', 1958, 'F', 7220), +(77369, 'Jane', 1958, 'F', 7191), +(77370, 'Judith', 1958, 'F', 7108), +(77371, 'Bonnie', 1958, 'F', 6988), +(77372, 'Valerie', 1958, 'F', 6918), +(77373, 'Wanda', 1958, 'F', 6891), +(77374, 'Maria', 1958, 'F', 6889), +(77375, 'Sherry', 1958, 'F', 6799), +(77376, 'Joan', 1958, 'F', 6780), +(77377, 'Martha', 1958, 'F', 6747), +(77378, 'Laurie', 1958, 'F', 6729), +(77379, 'Tina', 1958, 'F', 6620), +(77380, 'Gail', 1958, 'F', 6611), +(77381, 'Jean', 1958, 'F', 6520), +(77382, 'Katherine', 1958, 'F', 6433), +(77383, 'Vickie', 1958, 'F', 6242), +(77384, 'Gloria', 1958, 'F', 6129), +(77385, 'Annette', 1958, 'F', 6123), +(77386, 'Rose', 1958, 'F', 6051), +(77387, 'Leslie', 1958, 'F', 6007), +(77388, 'Joanne', 1958, 'F', 5925), +(77389, 'Jennifer', 1958, 'F', 5880), +(77390, 'Anita', 1958, 'F', 5777), +(77391, 'Angela', 1958, 'F', 5759), +(77392, 'Dawn', 1958, 'F', 5676), +(77393, 'Virginia', 1958, 'F', 5663), +(77394, 'Dorothy', 1958, 'F', 5537), +(77395, 'Anne', 1958, 'F', 5454), +(77396, 'Rita', 1958, 'F', 5339), +(77397, 'Terry', 1958, 'F', 5326), +(77398, 'Ruth', 1958, 'F', 5247), +(77399, 'Jo', 1958, 'F', 5223), +(77400, 'Michele', 1958, 'F', 5210), +(77401, 'Ellen', 1958, 'F', 5157), +(77402, 'Phyllis', 1958, 'F', 5075), +(77403, 'Beth', 1958, 'F', 4978), +(77404, 'Marilyn', 1958, 'F', 4945), +(77405, 'Amy', 1958, 'F', 4822), +(77406, 'Jill', 1958, 'F', 4803), +(77407, 'Jacqueline', 1958, 'F', 4787), +(77408, 'Helen', 1958, 'F', 4761), +(77409, 'Elaine', 1958, 'F', 4743), +(77410, 'Sue', 1958, 'F', 4672), +(77411, 'Anna', 1958, 'F', 4656), +(77412, 'Suzanne', 1958, 'F', 4632), +(77413, 'Renee', 1958, 'F', 4497), +(77414, 'Marie', 1958, 'F', 4489), +(77415, 'Wendy', 1958, 'F', 4482), +(77416, 'Kelly', 1958, 'F', 4471), +(77417, 'Victoria', 1958, 'F', 4468), +(77418, 'Maureen', 1958, 'F', 4458), +(77419, 'Becky', 1958, 'F', 4360), +(77420, 'Sally', 1958, 'F', 4302), +(77421, 'Stephanie', 1958, 'F', 4250), +(77422, 'Sylvia', 1958, 'F', 4156), +(77423, 'Alice', 1958, 'F', 4127), +(77424, 'Colleen', 1958, 'F', 3924), +(77425, 'Sarah', 1958, 'F', 3910), +(77426, 'Frances', 1958, 'F', 3846), +(77427, 'Julia', 1958, 'F', 3835), +(77428, 'Regina', 1958, 'F', 3825), +(77429, 'Sheryl', 1958, 'F', 3790), +(77430, 'Joann', 1958, 'F', 3695), +(77431, 'Jeanne', 1958, 'F', 3609), +(77432, 'Penny', 1958, 'F', 3558), +(77433, 'Eileen', 1958, 'F', 3528), +(77434, 'Carla', 1958, 'F', 3506), +(77435, 'Tamara', 1958, 'F', 3407), +(77436, 'Marcia', 1958, 'F', 3354), +(77437, 'Melissa', 1958, 'F', 3328), +(77438, 'Yvonne', 1958, 'F', 3323), +(77439, 'Doris', 1958, 'F', 3311), +(77440, 'Loretta', 1958, 'F', 3311), +(77441, 'Roberta', 1958, 'F', 3299), +(77442, 'Evelyn', 1958, 'F', 3276), +(77443, 'Andrea', 1958, 'F', 3241), +(77444, 'Lorraine', 1958, 'F', 3160), +(77445, 'Patti', 1958, 'F', 3111), +(77446, 'Charlene', 1958, 'F', 3067), +(77447, 'Pam', 1958, 'F', 3061), +(77448, 'Charlotte', 1958, 'F', 3013), +(77449, 'Glenda', 1958, 'F', 2980), +(77450, 'Melinda', 1958, 'F', 2932), +(77451, 'Dianne', 1958, 'F', 2931), +(77452, 'Belinda', 1958, 'F', 2821), +(77453, 'Gina', 1958, 'F', 2818), +(77454, 'Patty', 1958, 'F', 2783), +(77455, 'Joy', 1958, 'F', 2759), +(77456, 'Norma', 1958, 'F', 2738), +(77457, 'Vanessa', 1958, 'F', 2738), +(77458, 'Vicky', 1958, 'F', 2675), +(77459, 'Gwendolyn', 1958, 'F', 2668), +(77460, 'Jackie', 1958, 'F', 2660), +(77461, 'Jan', 1958, 'F', 2631), +(77462, 'Lois', 1958, 'F', 2622), +(77463, 'Carrie', 1958, 'F', 2577), +(77464, 'Sandy', 1958, 'F', 2564), +(77465, 'Melanie', 1958, 'F', 2533), +(77466, 'Marsha', 1958, 'F', 2502), +(77467, 'Sherri', 1958, 'F', 2469), +(77468, 'Monica', 1958, 'F', 2413), +(77469, 'Doreen', 1958, 'F', 2394), +(77470, 'Dana', 1958, 'F', 2388), +(77471, 'Toni', 1958, 'F', 2386), +(77472, 'Audrey', 1958, 'F', 2338), +(77473, 'Christina', 1958, 'F', 2309), +(77474, 'Yolanda', 1958, 'F', 2255), +(77475, 'Debora', 1958, 'F', 2251), +(77476, 'Holly', 1958, 'F', 2243), +(77477, 'Kay', 1958, 'F', 2238), +(77478, 'Jody', 1958, 'F', 2226), +(77479, 'Rosemary', 1958, 'F', 2214), +(77480, 'Vivian', 1958, 'F', 2202), +(77481, 'Veronica', 1958, 'F', 2167), +(77482, 'Juanita', 1958, 'F', 2162), +(77483, 'Irene', 1958, 'F', 2146), +(77484, 'Lynne', 1958, 'F', 2136), +(77485, 'Carmen', 1958, 'F', 2120), +(77486, 'Tracy', 1958, 'F', 2108), +(77487, 'Jeanette', 1958, 'F', 2097), +(77488, 'Shelia', 1958, 'F', 2093), +(77489, 'Marianne', 1958, 'F', 2070), +(77490, 'Louise', 1958, 'F', 2005), +(77491, 'Constance', 1958, 'F', 1996), +(77492, 'Sara', 1958, 'F', 1991), +(77493, 'Marlene', 1958, 'F', 1962), +(77494, 'Gayle', 1958, 'F', 1944), +(77495, 'Heidi', 1958, 'F', 1943), +(77496, 'Teri', 1958, 'F', 1884), +(77497, 'Rosa', 1958, 'F', 1863), +(77498, 'June', 1958, 'F', 1828), +(77499, 'Tami', 1958, 'F', 1828), +(77500, 'Arlene', 1958, 'F', 1775), +(77501, 'Eva', 1958, 'F', 1760), +(77502, 'Lynda', 1958, 'F', 1741), +(77503, 'Melody', 1958, 'F', 1741), +(77504, 'Annie', 1958, 'F', 1723), +(77505, 'Shelley', 1958, 'F', 1719), +(77506, 'Dianna', 1958, 'F', 1706), +(77507, 'Grace', 1958, 'F', 1706), +(77508, 'Lee', 1958, 'F', 1699), +(77509, 'Rachel', 1958, 'F', 1659), +(77510, 'Ruby', 1958, 'F', 1637), +(77511, 'Sheri', 1958, 'F', 1600), +(77512, 'Delores', 1958, 'F', 1592), +(77513, 'Roxanne', 1958, 'F', 1583), +(77514, 'Claudia', 1958, 'F', 1582), +(77515, 'Lydia', 1958, 'F', 1577), +(77516, 'Geraldine', 1958, 'F', 1568), +(77517, 'Ramona', 1958, 'F', 1553), +(77518, 'Dolores', 1958, 'F', 1525), +(77519, 'Patrice', 1958, 'F', 1511), +(77520, 'Carole', 1958, 'F', 1510), +(77521, 'Bernadette', 1958, 'F', 1492), +(77522, 'Karla', 1958, 'F', 1485), +(77523, 'Patsy', 1958, 'F', 1451), +(77524, 'Marjorie', 1958, 'F', 1438), +(77525, 'Joni', 1958, 'F', 1422), +(77526, 'Lillian', 1958, 'F', 1421), +(77527, 'Priscilla', 1958, 'F', 1395), +(77528, 'Deanna', 1958, 'F', 1378), +(77529, 'Shelly', 1958, 'F', 1377), +(77530, 'Susie', 1958, 'F', 1358), +(77531, 'Darla', 1958, 'F', 1354), +(77532, 'April', 1958, 'F', 1350), +(77533, 'Lauren', 1958, 'F', 1347), +(77534, 'Chris', 1958, 'F', 1342), +(77535, 'Esther', 1958, 'F', 1340), +(77536, 'Sherrie', 1958, 'F', 1337), +(77537, 'Jayne', 1958, 'F', 1328), +(77538, 'Edith', 1958, 'F', 1318), +(77539, 'Mildred', 1958, 'F', 1312), +(77540, 'Tammie', 1958, 'F', 1312), +(77541, 'Jamie', 1958, 'F', 1309), +(77542, 'Crystal', 1958, 'F', 1305), +(77543, 'Margie', 1958, 'F', 1289), +(77544, 'Betsy', 1958, 'F', 1287), +(77545, 'Myra', 1958, 'F', 1286), +(77546, 'Natalie', 1958, 'F', 1283), +(77547, 'Josephine', 1958, 'F', 1278), +(77548, 'Jodi', 1958, 'F', 1273), +(77549, 'Lucy', 1958, 'F', 1251), +(77550, 'Tanya', 1958, 'F', 1246), +(77551, 'Maryann', 1958, 'F', 1233), +(77552, 'Edna', 1958, 'F', 1227), +(77553, 'Janis', 1958, 'F', 1222), +(77554, 'Janie', 1958, 'F', 1215), +(77555, 'Marla', 1958, 'F', 1210), +(77556, 'Pauline', 1958, 'F', 1206), +(77557, 'Cheri', 1958, 'F', 1205), +(77558, 'Jenny', 1958, 'F', 1204), +(77559, 'Nina', 1958, 'F', 1196), +(77560, 'Robyn', 1958, 'F', 1186), +(77561, 'Nora', 1958, 'F', 1177), +(77562, 'Emily', 1958, 'F', 1174), +(77563, 'Cathleen', 1958, 'F', 1155), +(77564, 'Stacy', 1958, 'F', 1153), +(77565, 'Shari', 1958, 'F', 1144), +(77566, 'Erin', 1958, 'F', 1138), +(77567, 'Therese', 1958, 'F', 1138), +(77568, 'Bobbie', 1958, 'F', 1135), +(77569, 'Lynette', 1958, 'F', 1117), +(77570, 'Christy', 1958, 'F', 1116), +(77571, 'Georgia', 1958, 'F', 1112), +(77572, 'Jacquelyn', 1958, 'F', 1108), +(77573, 'Mona', 1958, 'F', 1090), +(77574, 'Emma', 1958, 'F', 1086), +(77575, 'Kristine', 1958, 'F', 1081), +(77576, 'Paulette', 1958, 'F', 1065), +(77577, 'Jeannie', 1958, 'F', 1062), +(77578, 'Marion', 1958, 'F', 1054), +(77579, 'Gale', 1958, 'F', 1052), +(77580, 'Marian', 1958, 'F', 1050), +(77581, 'Alicia', 1958, 'F', 1047), +(77582, 'Pat', 1958, 'F', 1043), +(77583, 'Stacey', 1958, 'F', 1040), +(77584, 'Clara', 1958, 'F', 1030), +(77585, 'Terrie', 1958, 'F', 1019), +(77586, 'Nadine', 1958, 'F', 1013), +(77587, 'Cecilia', 1958, 'F', 1002), +(77588, 'Miriam', 1958, 'F', 996), +(77589, 'Alison', 1958, 'F', 991), +(77590, 'Caroline', 1958, 'F', 990), +(77591, 'Ronda', 1958, 'F', 988), +(77592, 'Allison', 1958, 'F', 987), +(77593, 'Tracey', 1958, 'F', 976), +(77594, 'Vera', 1958, 'F', 975), +(77595, 'Laurel', 1958, 'F', 964), +(77596, 'Claire', 1958, 'F', 960), +(77597, 'Irma', 1958, 'F', 956), +(77598, 'Bertha', 1958, 'F', 951), +(77599, 'Ginger', 1958, 'F', 951), +(77600, 'Gladys', 1958, 'F', 951), +(77601, 'Cassandra', 1958, 'F', 942), +(77602, 'Rosie', 1958, 'F', 918), +(77603, 'Jana', 1958, 'F', 909), +(77604, 'Luann', 1958, 'F', 909), +(77605, 'Rosemarie', 1958, 'F', 909), +(77606, 'Lucinda', 1958, 'F', 897), +(77607, 'Gwen', 1958, 'F', 893), +(77608, 'Wilma', 1958, 'F', 892), +(77609, 'Bernice', 1958, 'F', 887), +(77610, 'Jeannette', 1958, 'F', 885), +(77611, 'Candy', 1958, 'F', 883), +(77612, 'Beatrice', 1958, 'F', 879), +(77613, 'Eleanor', 1958, 'F', 866), +(77614, 'Billie', 1958, 'F', 864), +(77615, 'Rochelle', 1958, 'F', 864), +(77616, 'Dora', 1958, 'F', 860), +(77617, 'Sabrina', 1958, 'F', 860), +(77618, 'Ethel', 1958, 'F', 856), +(77619, 'Antoinette', 1958, 'F', 855), +(77620, 'Faye', 1958, 'F', 855), +(77621, 'Jeri', 1958, 'F', 854), +(77622, 'Lou', 1958, 'F', 852), +(77623, 'Florence', 1958, 'F', 847), +(77624, 'Candace', 1958, 'F', 846), +(77625, 'Thelma', 1958, 'F', 844), +(77626, 'Kristi', 1958, 'F', 842), +(77627, 'Ella', 1958, 'F', 840), +(77628, 'Francine', 1958, 'F', 839), +(77629, 'Sonia', 1958, 'F', 837), +(77630, 'Jennie', 1958, 'F', 827), +(77631, 'Yvette', 1958, 'F', 827), +(77632, 'Trudy', 1958, 'F', 825), +(77633, 'Kathi', 1958, 'F', 824), +(77634, 'Shannon', 1958, 'F', 824), +(77635, 'Bonita', 1958, 'F', 820), +(77636, 'Lucille', 1958, 'F', 819), +(77637, 'Kerry', 1958, 'F', 807), +(77638, 'Lora', 1958, 'F', 801), +(77639, 'Bridget', 1958, 'F', 799), +(77640, 'Amanda', 1958, 'F', 796), +(77641, 'Debby', 1958, 'F', 795), +(77642, 'Iris', 1958, 'F', 795), +(77643, 'Ida', 1958, 'F', 791), +(77644, 'Faith', 1958, 'F', 789), +(77645, 'Kimberley', 1958, 'F', 789), +(77646, 'Celeste', 1958, 'F', 781), +(77647, 'Alma', 1958, 'F', 768), +(77648, 'Naomi', 1958, 'F', 761), +(77649, 'Tonya', 1958, 'F', 761), +(77650, 'Shawn', 1958, 'F', 750), +(77651, 'Molly', 1958, 'F', 747), +(77652, 'Heather', 1958, 'F', 732), +(77653, 'Adrienne', 1958, 'F', 722), +(77654, 'Lorrie', 1958, 'F', 721), +(77655, 'Willie', 1958, 'F', 698), +(77656, 'Lorna', 1958, 'F', 689), +(77657, 'Cherie', 1958, 'F', 687), +(77658, 'Gretchen', 1958, 'F', 687), +(77659, 'Maxine', 1958, 'F', 686), +(77660, 'Stella', 1958, 'F', 684), +(77661, 'Lillie', 1958, 'F', 682), +(77662, 'Katrina', 1958, 'F', 677), +(77663, 'Lana', 1958, 'F', 672), +(77664, 'Karin', 1958, 'F', 669), +(77665, 'Leah', 1958, 'F', 668), +(77666, 'Joanna', 1958, 'F', 664), +(77667, 'Della', 1958, 'F', 663), +(77668, 'Marcella', 1958, 'F', 657), +(77669, 'Hazel', 1958, 'F', 656), +(77670, 'Kelley', 1958, 'F', 650), +(77671, 'Nanette', 1958, 'F', 639), +(77672, 'Jolene', 1958, 'F', 626), +(77673, 'Susanne', 1958, 'F', 622), +(77674, 'Leigh', 1958, 'F', 620), +(77675, 'Rene', 1958, 'F', 620), +(77676, 'Cecelia', 1958, 'F', 613), +(77677, 'Marguerite', 1958, 'F', 609), +(77678, 'Kathie', 1958, 'F', 605), +(77679, 'Lorie', 1958, 'F', 604), +(77680, 'Felicia', 1958, 'F', 601), +(77681, 'Kristin', 1958, 'F', 600), +(77682, 'Trina', 1958, 'F', 592), +(77683, 'Jessie', 1958, 'F', 591), +(77684, 'Madeline', 1958, 'F', 587), +(77685, 'Mindy', 1958, 'F', 587), +(77686, 'Tamra', 1958, 'F', 587), +(77687, 'Lesa', 1958, 'F', 586), +(77688, 'Rosalind', 1958, 'F', 586), +(77689, 'Angie', 1958, 'F', 584), +(77690, 'Dale', 1958, 'F', 582), +(77691, 'Hope', 1958, 'F', 578), +(77692, 'Margarita', 1958, 'F', 575), +(77693, 'Kris', 1958, 'F', 568), +(77694, 'Sheree', 1958, 'F', 562), +(77695, 'Leticia', 1958, 'F', 557), +(77696, 'Olivia', 1958, 'F', 557), +(77697, 'Katie', 1958, 'F', 555), +(77698, 'Jerri', 1958, 'F', 549), +(77699, 'Janette', 1958, 'F', 546), +(77700, 'Verna', 1958, 'F', 545), +(77701, 'Camille', 1958, 'F', 542), +(77702, 'Ana', 1958, 'F', 541), +(77703, 'Rosalie', 1958, 'F', 541), +(77704, 'Polly', 1958, 'F', 538), +(77705, 'Liz', 1958, 'F', 537), +(77706, 'Christie', 1958, 'F', 535), +(77707, 'Daisy', 1958, 'F', 533), +(77708, 'Kelli', 1958, 'F', 533), +(77709, 'Celia', 1958, 'F', 530), +(77710, 'Leona', 1958, 'F', 530), +(77711, 'Jessica', 1958, 'F', 529), +(77712, 'Laverne', 1958, 'F', 526), +(77713, 'Sonja', 1958, 'F', 523), +(77714, 'Dee', 1958, 'F', 519), +(77715, 'Hilda', 1958, 'F', 519), +(77716, 'Dena', 1958, 'F', 517), +(77717, 'Noreen', 1958, 'F', 516), +(77718, 'Lena', 1958, 'F', 512), +(77719, 'Harriet', 1958, 'F', 511), +(77720, 'Robbin', 1958, 'F', 508), +(77721, 'Jodie', 1958, 'F', 507), +(77722, 'Kristy', 1958, 'F', 505), +(77723, 'Debi', 1958, 'F', 503), +(77724, 'Desiree', 1958, 'F', 501), +(77725, 'Deloris', 1958, 'F', 500), +(77726, 'Velma', 1958, 'F', 499), +(77727, 'Colette', 1958, 'F', 495), +(77728, 'Geneva', 1958, 'F', 495), +(77729, 'Mattie', 1958, 'F', 495), +(77730, 'Dixie', 1958, 'F', 494), +(77731, 'Rena', 1958, 'F', 491), +(77732, 'Marcy', 1958, 'F', 490), +(77733, 'Gay', 1958, 'F', 488), +(77734, 'Olga', 1958, 'F', 488), +(77735, 'Amelia', 1958, 'F', 483), +(77736, 'Cindi', 1958, 'F', 481), +(77737, 'Valarie', 1958, 'F', 480), +(77738, 'Lenora', 1958, 'F', 479), +(77739, 'Luanne', 1958, 'F', 479), +(77740, 'Helene', 1958, 'F', 478), +(77741, 'Kari', 1958, 'F', 478), +(77742, 'Corinne', 1958, 'F', 477), +(77743, 'Guadalupe', 1958, 'F', 474), +(77744, 'Leann', 1958, 'F', 471), +(77745, 'Leanne', 1958, 'F', 469), +(77746, 'Margo', 1958, 'F', 469), +(77747, 'Robbie', 1958, 'F', 468), +(77748, 'Kellie', 1958, 'F', 467), +(77749, 'Tara', 1958, 'F', 467), +(77750, 'Jeanie', 1958, 'F', 462), +(77751, 'Sonya', 1958, 'F', 461), +(77752, 'Freda', 1958, 'F', 460), +(77753, 'Janine', 1958, 'F', 460), +(77754, 'Delia', 1958, 'F', 457), +(77755, 'Rosanne', 1958, 'F', 453), +(77756, 'Viola', 1958, 'F', 452), +(77757, 'Tamera', 1958, 'F', 451), +(77758, 'Lea', 1958, 'F', 446), +(77759, 'Bessie', 1958, 'F', 445), +(77760, 'Jeanine', 1958, 'F', 441), +(77761, 'Jeannine', 1958, 'F', 441), +(77762, 'Barb', 1958, 'F', 440), +(77763, 'Denice', 1958, 'F', 440), +(77764, 'Elena', 1958, 'F', 440), +(77765, 'Ernestine', 1958, 'F', 436), +(77766, 'Cora', 1958, 'F', 434), +(77767, 'Lola', 1958, 'F', 432), +(77768, 'Lauri', 1958, 'F', 431), +(77769, 'Suzette', 1958, 'F', 422), +(77770, 'Agnes', 1958, 'F', 418), +(77771, 'Alisa', 1958, 'F', 418), +(77772, 'Mitzi', 1958, 'F', 418), +(77773, 'Minnie', 1958, 'F', 415), +(77774, 'Bobbi', 1958, 'F', 414), +(77775, 'Elsie', 1958, 'F', 414), +(77776, 'Candice', 1958, 'F', 412), +(77777, 'Myrna', 1958, 'F', 411), +(77778, 'Johnnie', 1958, 'F', 410), +(77779, 'Lynnette', 1958, 'F', 408), +(77780, 'Bernadine', 1958, 'F', 407), +(77781, 'Janelle', 1958, 'F', 407), +(77782, 'Katharine', 1958, 'F', 405), +(77783, 'Coleen', 1958, 'F', 397), +(77784, 'Claudette', 1958, 'F', 396), +(77785, 'Marta', 1958, 'F', 396), +(77786, 'Lorri', 1958, 'F', 393), +(77787, 'Daphne', 1958, 'F', 391), +(77788, 'Elise', 1958, 'F', 391), +(77789, 'Kristen', 1958, 'F', 391), +(77790, 'Pearl', 1958, 'F', 391), +(77791, 'Sondra', 1958, 'F', 391), +(77792, 'Penelope', 1958, 'F', 386), +(77793, 'Diann', 1958, 'F', 385), +(77794, 'Elisa', 1958, 'F', 385), +(77795, 'Eunice', 1958, 'F', 384), +(77796, 'Shelby', 1958, 'F', 384), +(77797, 'Violet', 1958, 'F', 383), +(77798, 'Nellie', 1958, 'F', 382), +(77799, 'Ava', 1958, 'F', 379), +(77800, 'Ladonna', 1958, 'F', 378), +(77801, 'Randi', 1958, 'F', 378), +(77802, 'Roseann', 1958, 'F', 378), +(77803, 'Gayla', 1958, 'F', 374), +(77804, 'Mae', 1958, 'F', 374), +(77805, 'Christi', 1958, 'F', 373), +(77806, 'Ingrid', 1958, 'F', 373), +(77807, 'Ada', 1958, 'F', 371), +(77808, 'Geri', 1958, 'F', 368), +(77809, 'Malinda', 1958, 'F', 365), +(77810, 'Reba', 1958, 'F', 365), +(77811, 'Danette', 1958, 'F', 364), +(77812, 'Alfreda', 1958, 'F', 362), +(77813, 'Vickey', 1958, 'F', 361), +(77814, 'Tammi', 1958, 'F', 360), +(77815, 'Flora', 1958, 'F', 359), +(77816, 'Julianne', 1958, 'F', 358), +(77817, 'Isabel', 1958, 'F', 357), +(77818, 'Nita', 1958, 'F', 356), +(77819, 'Suzan', 1958, 'F', 356), +(77820, 'Carlene', 1958, 'F', 355), +(77821, 'Kitty', 1958, 'F', 355), +(77822, 'Frankie', 1958, 'F', 352), +(77823, 'Kimberlee', 1958, 'F', 351), +(77824, 'Kristie', 1958, 'F', 351), +(77825, 'Alberta', 1958, 'F', 349), +(77826, 'Kristina', 1958, 'F', 349), +(77827, 'Laureen', 1958, 'F', 349), +(77828, 'Deana', 1958, 'F', 347), +(77829, 'Delphine', 1958, 'F', 347), +(77830, 'Benita', 1958, 'F', 345), +(77831, 'Leisa', 1958, 'F', 344), +(77832, 'Rosalyn', 1958, 'F', 344), +(77833, 'Mari', 1958, 'F', 343), +(77834, 'Roslyn', 1958, 'F', 342), +(77835, 'Maryellen', 1958, 'F', 336), +(77836, 'Clare', 1958, 'F', 333), +(77837, 'Ivy', 1958, 'F', 333), +(77838, 'Gracie', 1958, 'F', 332), +(77839, 'Kaye', 1958, 'F', 332), +(77840, 'Maryanne', 1958, 'F', 332), +(77841, 'Dinah', 1958, 'F', 331), +(77842, 'Dona', 1958, 'F', 331), +(77843, 'Elisabeth', 1958, 'F', 331), +(77844, 'Tamela', 1958, 'F', 331), +(77845, 'Sallie', 1958, 'F', 328), +(77846, 'Judi', 1958, 'F', 325), +(77847, 'Rae', 1958, 'F', 324), +(77848, 'Saundra', 1958, 'F', 322), +(77849, 'Eugenia', 1958, 'F', 321), +(77850, 'Cathryn', 1958, 'F', 319), +(77851, 'Angelia', 1958, 'F', 318), +(77852, 'Pamala', 1958, 'F', 315), +(77853, 'Tracie', 1958, 'F', 315), +(77854, 'Blanca', 1958, 'F', 314), +(77855, 'Darcy', 1958, 'F', 314), +(77856, 'Kerri', 1958, 'F', 312), +(77857, 'Rosetta', 1958, 'F', 312), +(77858, 'Danita', 1958, 'F', 311), +(77859, 'Sharron', 1958, 'F', 311), +(77860, 'Deena', 1958, 'F', 310), +(77861, 'Genevieve', 1958, 'F', 310), +(77862, 'Susanna', 1958, 'F', 310), +(77863, 'Glenna', 1958, 'F', 309), +(77864, 'Hattie', 1958, 'F', 309), +(77865, 'Melodie', 1958, 'F', 308), +(77866, 'Henrietta', 1958, 'F', 307), +(77867, 'Jocelyn', 1958, 'F', 306), +(77868, 'Lorene', 1958, 'F', 305), +(77869, 'Maggie', 1958, 'F', 303), +(77870, 'Antonia', 1958, 'F', 302), +(77871, 'Erma', 1958, 'F', 302), +(77872, 'Fay', 1958, 'F', 301), +(77873, 'Megan', 1958, 'F', 301), +(77874, 'Tonia', 1958, 'F', 299), +(77875, 'Debbi', 1958, 'F', 297), +(77876, 'Renita', 1958, 'F', 297), +(77877, 'Dorene', 1958, 'F', 296), +(77878, 'Dorothea', 1958, 'F', 296), +(77879, 'Roxann', 1958, 'F', 296), +(77880, 'Geralyn', 1958, 'F', 295), +(77881, 'Greta', 1958, 'F', 295), +(77882, 'Michael', 1958, 'F', 295), +(77883, 'Maura', 1958, 'F', 294), +(77884, 'Melba', 1958, 'F', 294), +(77885, 'Adele', 1958, 'F', 293), +(77886, 'Charmaine', 1958, 'F', 293), +(77887, 'Ilene', 1958, 'F', 293), +(77888, 'Lila', 1958, 'F', 293), +(77889, 'Sandi', 1958, 'F', 293), +(77890, 'Sharlene', 1958, 'F', 293), +(77891, 'Mamie', 1958, 'F', 291), +(77892, 'Pattie', 1958, 'F', 291), +(77893, 'Estella', 1958, 'F', 290), +(77894, 'Elsa', 1958, 'F', 288), +(77895, 'Deanne', 1958, 'F', 287), +(77896, 'Lesley', 1958, 'F', 286), +(77897, 'Lenore', 1958, 'F', 284), +(77898, 'Ruthie', 1958, 'F', 284), +(77899, 'Twila', 1958, 'F', 283), +(77900, 'Renae', 1958, 'F', 281), +(77901, 'Caren', 1958, 'F', 279), +(77902, 'Caryn', 1958, 'F', 279), +(77903, 'Althea', 1958, 'F', 278), +(77904, 'Cathie', 1958, 'F', 277), +(77905, 'Marisa', 1958, 'F', 277), +(77906, 'Johanna', 1958, 'F', 275), +(77907, 'Vikki', 1958, 'F', 275), +(77908, 'Deirdre', 1958, 'F', 273), +(77909, 'Eve', 1958, 'F', 272), +(77910, 'Marcie', 1958, 'F', 272), +(77911, 'Roxane', 1958, 'F', 272), +(77912, 'Teena', 1958, 'F', 272), +(77913, 'Marybeth', 1958, 'F', 271), +(77914, 'Juli', 1958, 'F', 270), +(77915, 'Rosalinda', 1958, 'F', 270), +(77916, 'Bonny', 1958, 'F', 269), +(77917, 'Josie', 1958, 'F', 268), +(77918, 'Valorie', 1958, 'F', 266), +(77919, 'Rhoda', 1958, 'F', 265), +(77920, 'Traci', 1958, 'F', 265), +(77921, 'Inez', 1958, 'F', 262), +(77922, 'Cheryle', 1958, 'F', 261), +(77923, 'Patrica', 1958, 'F', 259), +(77924, 'Lula', 1958, 'F', 258), +(77925, 'Karol', 1958, 'F', 257), +(77926, 'Tena', 1958, 'F', 256), +(77927, 'Lupe', 1958, 'F', 255), +(77928, 'Justine', 1958, 'F', 253), +(77929, 'James', 1958, 'F', 252), +(77930, 'Silvia', 1958, 'F', 251), +(77931, 'Fannie', 1958, 'F', 248), +(77932, 'Dina', 1958, 'F', 245), +(77933, 'Etta', 1958, 'F', 245), +(77934, 'Libby', 1958, 'F', 245), +(77935, 'Luz', 1958, 'F', 245), +(77936, 'Corrine', 1958, 'F', 244), +(77937, 'Dolly', 1958, 'F', 243), +(77938, 'Nelda', 1958, 'F', 243), +(77939, 'Gertrude', 1958, 'F', 242), +(77940, 'Ginny', 1958, 'F', 242), +(77941, 'Felecia', 1958, 'F', 241), +(77942, 'Avis', 1958, 'F', 240), +(77943, 'Georgette', 1958, 'F', 240), +(77944, 'Merry', 1958, 'F', 240), +(77945, 'Krista', 1958, 'F', 238), +(77946, 'Lyn', 1958, 'F', 237), +(77947, 'Mariann', 1958, 'F', 237), +(77948, 'Deb', 1958, 'F', 236), +(77949, 'Lourdes', 1958, 'F', 235), +(77950, 'Robert', 1958, 'F', 235), +(77951, 'Jenifer', 1958, 'F', 234), +(77952, 'Loraine', 1958, 'F', 234), +(77953, 'Monique', 1958, 'F', 234), +(77954, 'Chandra', 1958, 'F', 233), +(77955, 'Lucia', 1958, 'F', 233), +(77956, 'Cherry', 1958, 'F', 232), +(77957, 'Darleen', 1958, 'F', 231), +(77958, 'Eloise', 1958, 'F', 231), +(77959, 'Tricia', 1958, 'F', 231), +(77960, 'Jewel', 1958, 'F', 230), +(77961, 'Kathrine', 1958, 'F', 230), +(77962, 'Annmarie', 1958, 'F', 229), +(77963, 'Helena', 1958, 'F', 229), +(77964, 'Rachelle', 1958, 'F', 229), +(77965, 'Valeria', 1958, 'F', 229), +(77966, 'Terese', 1958, 'F', 228), +(77967, 'Sophia', 1958, 'F', 227), +(77968, 'Angelina', 1958, 'F', 226), +(77969, 'Gerri', 1958, 'F', 226), +(77970, 'Lavonne', 1958, 'F', 223), +(77971, 'Winifred', 1958, 'F', 223), +(77972, 'Deann', 1958, 'F', 221), +(77973, 'Karyn', 1958, 'F', 220), +(77974, 'Teressa', 1958, 'F', 220), +(77975, 'Earnestine', 1958, 'F', 219), +(77976, 'Marci', 1958, 'F', 219), +(77977, 'Lela', 1958, 'F', 218), +(77978, 'Meredith', 1958, 'F', 218), +(77979, 'Clarice', 1958, 'F', 217), +(77980, 'Leeann', 1958, 'F', 217), +(77981, 'Louann', 1958, 'F', 217), +(77982, 'Janell', 1958, 'F', 216), +(77983, 'Dottie', 1958, 'F', 215), +(77984, 'Bambi', 1958, 'F', 214), +(77985, 'Elvira', 1958, 'F', 213), +(77986, 'Jerry', 1958, 'F', 212), +(77987, 'Marina', 1958, 'F', 212), +(77988, 'Nan', 1958, 'F', 212), +(77989, 'Marylou', 1958, 'F', 211), +(77990, 'Selena', 1958, 'F', 211), +(77991, 'Fran', 1958, 'F', 210), +(77992, 'Unknown', 1958, 'F', 209), +(77993, 'Raquel', 1958, 'F', 208), +(77994, 'John', 1958, 'F', 207), +(77995, 'Erica', 1958, 'F', 206), +(77996, 'Karon', 1958, 'F', 206), +(77997, 'Minerva', 1958, 'F', 206), +(77998, 'Beverley', 1958, 'F', 205), +(77999, 'David', 1958, 'F', 205), +(78000, 'Lu', 1958, 'F', 205), +(78001, 'Bettie', 1958, 'F', 204), +(78002, 'Elva', 1958, 'F', 204), +(78003, 'Susana', 1958, 'F', 204), +(78004, 'Leesa', 1958, 'F', 202), +(78005, 'Aileen', 1958, 'F', 201), +(78006, 'Janna', 1958, 'F', 200), +(78007, 'Debrah', 1958, 'F', 199), +(78008, 'Kendra', 1958, 'F', 199), +(78009, 'Mable', 1958, 'F', 198), +(78010, 'Nikki', 1958, 'F', 198), +(78011, 'Bridgette', 1958, 'F', 197), +(78012, 'Gena', 1958, 'F', 197), +(78013, 'Rebekah', 1958, 'F', 197), +(78014, 'Myrtle', 1958, 'F', 196), +(78015, 'Blanche', 1958, 'F', 195), +(78016, 'Gaye', 1958, 'F', 194), +(78017, 'Maribeth', 1958, 'F', 194), +(78018, 'Stacie', 1958, 'F', 194), +(78019, 'Tamie', 1958, 'F', 194), +(78020, 'Abigail', 1958, 'F', 193), +(78021, 'Maryjo', 1958, 'F', 193), +(78022, 'Allyson', 1958, 'F', 191), +(78023, 'Lorena', 1958, 'F', 191), +(78024, 'Lizabeth', 1958, 'F', 190), +(78025, 'Angel', 1958, 'F', 189), +(78026, 'Earlene', 1958, 'F', 189), +(78027, 'Bette', 1958, 'F', 188), +(78028, 'Carmela', 1958, 'F', 188), +(78029, 'Katheryn', 1958, 'F', 188), +(78030, 'Peggie', 1958, 'F', 188), +(78031, 'Alexis', 1958, 'F', 186), +(78032, 'Mollie', 1958, 'F', 186), +(78033, 'Cecile', 1958, 'F', 185), +(78034, 'Doretha', 1958, 'F', 184), +(78035, 'Mercedes', 1958, 'F', 184), +(78036, 'Arleen', 1958, 'F', 183), +(78037, 'Millie', 1958, 'F', 183), +(78038, 'Nettie', 1958, 'F', 183), +(78039, 'Valencia', 1958, 'F', 183), +(78040, 'Vonda', 1958, 'F', 183), +(78041, 'Madonna', 1958, 'F', 182), +(78042, 'Marietta', 1958, 'F', 182), +(78043, 'Rachael', 1958, 'F', 182), +(78044, 'Sherrill', 1958, 'F', 182), +(78045, 'Sybil', 1958, 'F', 182), +(78046, 'Marilynn', 1958, 'F', 181), +(78047, 'Nona', 1958, 'F', 181), +(78048, 'Ora', 1958, 'F', 181), +(78049, 'Cyndi', 1958, 'F', 180), +(78050, 'Marilee', 1958, 'F', 180), +(78051, 'Nannette', 1958, 'F', 180), +(78052, 'Nicole', 1958, 'F', 180), +(78053, 'Sadie', 1958, 'F', 180), +(78054, 'Debbra', 1958, 'F', 179), +(78055, 'Graciela', 1958, 'F', 179), +(78056, 'Edwina', 1958, 'F', 177), +(78057, 'Fern', 1958, 'F', 177), +(78058, 'Madelyn', 1958, 'F', 177), +(78059, 'Roxanna', 1958, 'F', 176), +(78060, 'Alexandra', 1958, 'F', 175), +(78061, 'Ina', 1958, 'F', 175), +(78062, 'Lawanda', 1958, 'F', 175), +(78063, 'Cinda', 1958, 'F', 173), +(78064, 'Dorinda', 1958, 'F', 173), +(78065, 'Francis', 1958, 'F', 173), +(78066, 'Leanna', 1958, 'F', 173), +(78067, 'Marva', 1958, 'F', 173), +(78068, 'Cathrine', 1958, 'F', 172), +(78069, 'Joanie', 1958, 'F', 172), +(78070, 'Freida', 1958, 'F', 171), +(78071, 'Letha', 1958, 'F', 171), +(78072, 'Migdalia', 1958, 'F', 171), +(78073, 'Tommie', 1958, 'F', 171), +(78074, 'Angelita', 1958, 'F', 170), +(78075, 'Gisele', 1958, 'F', 170), +(78076, 'Jami', 1958, 'F', 170), +(78077, 'Sherie', 1958, 'F', 170), +(78078, 'Muriel', 1958, 'F', 169), +(78079, 'Brigitte', 1958, 'F', 168), +(78080, 'Deidre', 1958, 'F', 168), +(78081, 'Mara', 1958, 'F', 168), +(78082, 'Cherri', 1958, 'F', 167), +(78083, 'Christa', 1958, 'F', 167), +(78084, 'Maritza', 1958, 'F', 167), +(78085, 'Suzy', 1958, 'F', 167), +(78086, 'Joellen', 1958, 'F', 166), +(78087, 'Roseanne', 1958, 'F', 166), +(78088, 'Delois', 1958, 'F', 165), +(78089, 'Jimmie', 1958, 'F', 165), +(78090, 'Willa', 1958, 'F', 165), +(78091, 'Carmella', 1958, 'F', 164), +(78092, 'Melva', 1958, 'F', 164), +(78093, 'Tana', 1958, 'F', 164), +(78094, 'Amber', 1958, 'F', 163), +(78095, 'Clarissa', 1958, 'F', 163), +(78096, 'Dorthy', 1958, 'F', 163), +(78097, 'Kyle', 1958, 'F', 163), +(78098, 'Milagros', 1958, 'F', 162), +(78099, 'Rosanna', 1958, 'F', 162), +(78100, 'William', 1958, 'F', 161), +(78101, 'Lavern', 1958, 'F', 160), +(78102, 'Pennie', 1958, 'F', 160), +(78103, 'Annetta', 1958, 'F', 159), +(78104, 'Cathi', 1958, 'F', 159), +(78105, 'Eula', 1958, 'F', 159), +(78106, 'Joe', 1958, 'F', 159), +(78107, 'Kandy', 1958, 'F', 159), +(78108, 'Georgina', 1958, 'F', 158), +(78109, 'Danielle', 1958, 'F', 157), +(78110, 'Dayna', 1958, 'F', 157), +(78111, 'Kate', 1958, 'F', 157), +(78112, 'Leila', 1958, 'F', 157), +(78113, 'Shauna', 1958, 'F', 157), +(78114, 'Venita', 1958, 'F', 157), +(78115, 'Aida', 1958, 'F', 156), +(78116, 'Caryl', 1958, 'F', 155), +(78117, 'Dori', 1958, 'F', 155), +(78118, 'Abby', 1958, 'F', 154), +(78119, 'Earline', 1958, 'F', 154), +(78120, 'Essie', 1958, 'F', 154), +(78121, 'Danna', 1958, 'F', 153), +(78122, 'Harriett', 1958, 'F', 153), +(78123, 'Juliana', 1958, 'F', 153), +(78124, 'Louisa', 1958, 'F', 153), +(78125, 'Carey', 1958, 'F', 152), +(78126, 'Carleen', 1958, 'F', 152), +(78127, 'Cornelia', 1958, 'F', 152), +(78128, 'Dawna', 1958, 'F', 152), +(78129, 'Nanci', 1958, 'F', 152), +(78130, 'Shawna', 1958, 'F', 152), +(78131, 'Sherryl', 1958, 'F', 152), +(78132, 'Pearlie', 1958, 'F', 151), +(78133, 'Serena', 1958, 'F', 151), +(78134, 'Zoe', 1958, 'F', 151), +(78135, 'Aurora', 1958, 'F', 150), +(78136, 'Charla', 1958, 'F', 150), +(78137, 'Keri', 1958, 'F', 150), +(78138, 'Collette', 1958, 'F', 149), +(78139, 'Lily', 1958, 'F', 149), +(78140, 'Lise', 1958, 'F', 149), +(78141, 'Rhea', 1958, 'F', 149), +(78142, 'Roxie', 1958, 'F', 149), +(78143, 'Donita', 1958, 'F', 148), +(78144, 'Iva', 1958, 'F', 148), +(78145, 'Jacki', 1958, 'F', 148), +(78146, 'Letitia', 1958, 'F', 148), +(78147, 'Retha', 1958, 'F', 148), +(78148, 'Suzanna', 1958, 'F', 148), +(78149, 'Celestine', 1958, 'F', 147), +(78150, 'Ester', 1958, 'F', 147), +(78151, 'Katy', 1958, 'F', 147), +(78152, 'Lindy', 1958, 'F', 147), +(78153, 'Addie', 1958, 'F', 146), +(78154, 'Bethany', 1958, 'F', 146), +(78155, 'Catharine', 1958, 'F', 145), +(78156, 'Jannie', 1958, 'F', 145), +(78157, 'Gilda', 1958, 'F', 144), +(78158, 'May', 1958, 'F', 144), +(78159, 'Nola', 1958, 'F', 144), +(78160, 'Ollie', 1958, 'F', 144), +(78161, 'Randy', 1958, 'F', 144), +(78162, 'Rosario', 1958, 'F', 144), +(78163, 'Treva', 1958, 'F', 144), +(78164, 'Shellie', 1958, 'F', 143), +(78165, 'Estelle', 1958, 'F', 142), +(78166, 'Magdalena', 1958, 'F', 142), +(78167, 'Evangeline', 1958, 'F', 141), +(78168, 'Neva', 1958, 'F', 141), +(78169, 'Abbie', 1958, 'F', 140), +(78170, 'Reva', 1958, 'F', 140), +(78171, 'Twyla', 1958, 'F', 140), +(78172, 'Wendi', 1958, 'F', 140), +(78173, 'Aimee', 1958, 'F', 139), +(78174, 'Kirsten', 1958, 'F', 139), +(78175, 'Eddie', 1958, 'F', 138), +(78176, 'Lorinda', 1958, 'F', 138), +(78177, 'Lottie', 1958, 'F', 138), +(78178, 'Cassie', 1958, 'F', 137), +(78179, 'Karan', 1958, 'F', 137), +(78180, 'Annamarie', 1958, 'F', 136), +(78181, 'Frieda', 1958, 'F', 136), +(78182, 'Starr', 1958, 'F', 136), +(78183, 'Trena', 1958, 'F', 136), +(78184, 'Barbra', 1958, 'F', 135), +(78185, 'Cristina', 1958, 'F', 135), +(78186, 'Jacquline', 1958, 'F', 135), +(78187, 'Candi', 1958, 'F', 134), +(78188, 'Cara', 1958, 'F', 134), +(78189, 'Marty', 1958, 'F', 134), +(78190, 'Starla', 1958, 'F', 134), +(78191, 'Cherrie', 1958, 'F', 133), +(78192, 'Dian', 1958, 'F', 133), +(78193, 'Esmeralda', 1958, 'F', 133), +(78194, 'Jacque', 1958, 'F', 133), +(78195, 'Ophelia', 1958, 'F', 133), +(78196, 'Ronna', 1958, 'F', 133), +(78197, 'Delilah', 1958, 'F', 132), +(78198, 'Mabel', 1958, 'F', 132), +(78199, 'Beulah', 1958, 'F', 131), +(78200, 'Camilla', 1958, 'F', 131), +(78201, 'Erika', 1958, 'F', 131), +(78202, 'Juliann', 1958, 'F', 131), +(78203, 'Juliet', 1958, 'F', 131), +(78204, 'Mimi', 1958, 'F', 131), +(78205, 'Zelda', 1958, 'F', 131), +(78206, 'Dara', 1958, 'F', 130), +(78207, 'Joleen', 1958, 'F', 130), +(78208, 'Leola', 1958, 'F', 130), +(78209, 'Paige', 1958, 'F', 130), +(78210, 'Charles', 1958, 'F', 129), +(78211, 'Jerrie', 1958, 'F', 129), +(78212, 'Lizzie', 1958, 'F', 129), +(78213, 'Mandy', 1958, 'F', 129), +(78214, 'Rosita', 1958, 'F', 129), +(78215, 'Consuelo', 1958, 'F', 128), +(78216, 'Effie', 1958, 'F', 128), +(78217, 'Hilary', 1958, 'F', 128), +(78218, 'Jewell', 1958, 'F', 128), +(78219, 'Portia', 1958, 'F', 128), +(78220, 'Reta', 1958, 'F', 128), +(78221, 'Cary', 1958, 'F', 127), +(78222, 'Jacklyn', 1958, 'F', 127), +(78223, 'Tambra', 1958, 'F', 127), +(78224, 'Velda', 1958, 'F', 127), +(78225, 'Charleen', 1958, 'F', 126), +(78226, 'Francesca', 1958, 'F', 126), +(78227, 'Laurene', 1958, 'F', 126), +(78228, 'Missy', 1958, 'F', 126), +(78229, 'Moira', 1958, 'F', 126), +(78230, 'Alyce', 1958, 'F', 125), +(78231, 'Meg', 1958, 'F', 125), +(78232, 'Romona', 1958, 'F', 125), +(78233, 'Adrianne', 1958, 'F', 124), +(78234, 'Gigi', 1958, 'F', 124), +(78235, 'Hannah', 1958, 'F', 124), +(78236, 'Juliette', 1958, 'F', 124), +(78237, 'Shirlene', 1958, 'F', 124), +(78238, 'Bettye', 1958, 'F', 123), +(78239, 'Lauretta', 1958, 'F', 123), +(78240, 'Pamella', 1958, 'F', 123), +(78241, 'Delma', 1958, 'F', 122), +(78242, 'Jeanna', 1958, 'F', 122), +(78243, 'Kara', 1958, 'F', 122), +(78244, 'Lilly', 1958, 'F', 122), +(78245, 'Veda', 1958, 'F', 122), +(78246, 'Beckie', 1958, 'F', 121), +(78247, 'Lucretia', 1958, 'F', 121), +(78248, 'Ronnie', 1958, 'F', 121), +(78249, 'Sheena', 1958, 'F', 121), +(78250, 'Ursula', 1958, 'F', 121), +(78251, 'Antionette', 1958, 'F', 120), +(78252, 'Esperanza', 1958, 'F', 120), +(78253, 'Jerilyn', 1958, 'F', 120), +(78254, 'Juana', 1958, 'F', 119), +(78255, 'Leta', 1958, 'F', 119), +(78256, 'Nedra', 1958, 'F', 119), +(78257, 'Perri', 1958, 'F', 119), +(78258, 'Caron', 1958, 'F', 118), +(78259, 'Karrie', 1958, 'F', 118), +(78260, 'Marita', 1958, 'F', 118), +(78261, 'Mavis', 1958, 'F', 118), +(78262, 'Richard', 1958, 'F', 118), +(78263, 'Bettina', 1958, 'F', 117), +(78264, 'Germaine', 1958, 'F', 117), +(78265, 'Noemi', 1958, 'F', 117), +(78266, 'Sharla', 1958, 'F', 117), +(78267, 'Thomas', 1958, 'F', 117), +(78268, 'Gabrielle', 1958, 'F', 116), +(78269, 'Lissa', 1958, 'F', 116), +(78270, 'Annemarie', 1958, 'F', 115), +(78271, 'Carmel', 1958, 'F', 115), +(78272, 'Dani', 1958, 'F', 115), +(78273, 'Loreen', 1958, 'F', 115), +(78274, 'Martina', 1958, 'F', 115), +(78275, 'Merri', 1958, 'F', 115), +(78276, 'Corine', 1958, 'F', 114), +(78277, 'Janeen', 1958, 'F', 114), +(78278, 'Lanita', 1958, 'F', 114), +(78279, 'Lorelei', 1958, 'F', 114), +(78280, 'Leslee', 1958, 'F', 113), +(78281, 'Liza', 1958, 'F', 113), +(78282, 'Margery', 1958, 'F', 113), +(78283, 'Mark', 1958, 'F', 113), +(78284, 'Miranda', 1958, 'F', 113), +(78285, 'Nicki', 1958, 'F', 113), +(78286, 'Opal', 1958, 'F', 113), +(78287, 'Carlotta', 1958, 'F', 112), +(78288, 'Dollie', 1958, 'F', 112), +(78289, 'Freddie', 1958, 'F', 112), +(78290, 'Gerry', 1958, 'F', 112), +(78291, 'Goldie', 1958, 'F', 112), +(78292, 'Suzie', 1958, 'F', 112), +(78293, 'Cheryll', 1958, 'F', 111), +(78294, 'Concetta', 1958, 'F', 111), +(78295, 'Elma', 1958, 'F', 111), +(78296, 'Bev', 1958, 'F', 110), +(78297, 'Elissa', 1958, 'F', 110), +(78298, 'Lonnie', 1958, 'F', 110), +(78299, 'Phoebe', 1958, 'F', 110), +(78300, 'Ruthann', 1958, 'F', 110), +(78301, 'Val', 1958, 'F', 110), +(78302, 'Alyson', 1958, 'F', 109), +(78303, 'Angeline', 1958, 'F', 109), +(78304, 'Janel', 1958, 'F', 109), +(78305, 'Queen', 1958, 'F', 109), +(78306, 'Samantha', 1958, 'F', 109), +(78307, 'Tresa', 1958, 'F', 109), +(78308, 'Josefina', 1958, 'F', 108), +(78309, 'Kandi', 1958, 'F', 108), +(78310, 'Andra', 1958, 'F', 107), +(78311, 'Kathaleen', 1958, 'F', 107), +(78312, 'Matilda', 1958, 'F', 107), +(78313, 'Ofelia', 1958, 'F', 107), +(78314, 'Rowena', 1958, 'F', 107), +(78315, 'Aleta', 1958, 'F', 106), +(78316, 'Cari', 1958, 'F', 106), +(78317, 'Ivette', 1958, 'F', 106), +(78318, 'Jaime', 1958, 'F', 106), +(78319, 'Mickey', 1958, 'F', 106), +(78320, 'Sydney', 1958, 'F', 106), +(78321, 'Venus', 1958, 'F', 106), +(78322, 'Adela', 1958, 'F', 105), +(78323, 'Edie', 1958, 'F', 105), +(78324, 'Latanya', 1958, 'F', 105), +(78325, 'Odessa', 1958, 'F', 105), +(78326, 'Oralia', 1958, 'F', 105), +(78327, 'Winona', 1958, 'F', 105), +(78328, 'Athena', 1958, 'F', 104), +(78329, 'Becki', 1958, 'F', 104), +(78330, 'Carolina', 1958, 'F', 104), +(78331, 'Evonne', 1958, 'F', 104), +(78332, 'Jannette', 1958, 'F', 104), +(78333, 'Kenneth', 1958, 'F', 104), +(78334, 'Lita', 1958, 'F', 104), +(78335, 'Rona', 1958, 'F', 104), +(78336, 'Sophie', 1958, 'F', 104), +(78337, 'Suzann', 1958, 'F', 104), +(78338, 'Alana', 1958, 'F', 103), +(78339, 'Daryl', 1958, 'F', 103), +(78340, 'Kathey', 1958, 'F', 103), +(78341, 'Kayla', 1958, 'F', 103), +(78342, 'Ola', 1958, 'F', 103), +(78343, 'Selina', 1958, 'F', 103), +(78344, 'Vernell', 1958, 'F', 103), +(78345, 'Virgie', 1958, 'F', 103), +(78346, 'Antonette', 1958, 'F', 102), +(78347, 'Chrystal', 1958, 'F', 102), +(78348, 'Daria', 1958, 'F', 102), +(78349, 'Alta', 1958, 'F', 101), +(78350, 'Beatriz', 1958, 'F', 101), +(78351, 'Elnora', 1958, 'F', 101), +(78352, 'Melisa', 1958, 'F', 101), +(78353, 'Callie', 1958, 'F', 100), +(78354, 'Elyse', 1958, 'F', 100), +(78355, 'Joetta', 1958, 'F', 100), +(78356, 'Lani', 1958, 'F', 100), +(78357, 'Leilani', 1958, 'F', 100), +(78358, 'Shelli', 1958, 'F', 100), +(78359, 'Sherilyn', 1958, 'F', 100), +(78360, 'Thea', 1958, 'F', 100), +(78361, 'Michael', 1958, 'M', 90519), +(78362, 'David', 1958, 'M', 82585), +(78363, 'James', 1958, 'M', 78731), +(78364, 'Robert', 1958, 'M', 77285), +(78365, 'John', 1958, 'M', 75986), +(78366, 'William', 1958, 'M', 54202), +(78367, 'Mark', 1958, 'M', 52670), +(78368, 'Richard', 1958, 'M', 49958), +(78369, 'Thomas', 1958, 'M', 42062), +(78370, 'Steven', 1958, 'M', 32951), +(78371, 'Charles', 1958, 'M', 32235), +(78372, 'Joseph', 1958, 'M', 30086), +(78373, 'Timothy', 1958, 'M', 28751), +(78374, 'Kenneth', 1958, 'M', 26657), +(78375, 'Paul', 1958, 'M', 26252), +(78376, 'Daniel', 1958, 'M', 25607), +(78377, 'Gary', 1958, 'M', 25270), +(78378, 'Donald', 1958, 'M', 24996), +(78379, 'Ronald', 1958, 'M', 24811), +(78380, 'Kevin', 1958, 'M', 24647), +(78381, 'Jeffrey', 1958, 'M', 24207), +(78382, 'Larry', 1958, 'M', 20063), +(78383, 'Gregory', 1958, 'M', 19789), +(78384, 'Brian', 1958, 'M', 19261), +(78385, 'Scott', 1958, 'M', 19169), +(78386, 'Stephen', 1958, 'M', 17951), +(78387, 'Anthony', 1958, 'M', 17433), +(78388, 'Edward', 1958, 'M', 17368), +(78389, 'Dennis', 1958, 'M', 16407), +(78390, 'Douglas', 1958, 'M', 15778), +(78391, 'George', 1958, 'M', 15640), +(78392, 'Randy', 1958, 'M', 15169), +(78393, 'Terry', 1958, 'M', 14983), +(78394, 'Ricky', 1958, 'M', 13372), +(78395, 'Jerry', 1958, 'M', 12914), +(78396, 'Bruce', 1958, 'M', 12454), +(78397, 'Keith', 1958, 'M', 11896), +(78398, 'Frank', 1958, 'M', 11308), +(78399, 'Christopher', 1958, 'M', 11068), +(78400, 'Mike', 1958, 'M', 10774), +(78401, 'Peter', 1958, 'M', 10744), +(78402, 'Patrick', 1958, 'M', 10237), +(78403, 'Raymond', 1958, 'M', 10211), +(78404, 'Steve', 1958, 'M', 10083), +(78405, 'Danny', 1958, 'M', 8941), +(78406, 'Dale', 1958, 'M', 8478), +(78407, 'Roger', 1958, 'M', 8375), +(78408, 'Wayne', 1958, 'M', 8334), +(78409, 'Alan', 1958, 'M', 8228), +(78410, 'Eric', 1958, 'M', 8188), +(78411, 'Carl', 1958, 'M', 7718), +(78412, 'Lawrence', 1958, 'M', 7532), +(78413, 'Craig', 1958, 'M', 7290), +(78414, 'Russell', 1958, 'M', 7145), +(78415, 'Andrew', 1958, 'M', 7102), +(78416, 'Joe', 1958, 'M', 7063), +(78417, 'Tony', 1958, 'M', 6939), +(78418, 'Gerald', 1958, 'M', 6864), +(78419, 'Jeffery', 1958, 'M', 6833), +(78420, 'Matthew', 1958, 'M', 6377), +(78421, 'Johnny', 1958, 'M', 6318), +(78422, 'Walter', 1958, 'M', 6310), +(78423, 'Randall', 1958, 'M', 6308), +(78424, 'Billy', 1958, 'M', 6146), +(78425, 'Rodney', 1958, 'M', 5865), +(78426, 'Ronnie', 1958, 'M', 5844), +(78427, 'Philip', 1958, 'M', 5823), +(78428, 'Jeff', 1958, 'M', 5819), +(78429, 'Bobby', 1958, 'M', 5732), +(78430, 'Willie', 1958, 'M', 5689), +(78431, 'Arthur', 1958, 'M', 5664), +(78432, 'Martin', 1958, 'M', 5664), +(78433, 'Jimmy', 1958, 'M', 5597), +(78434, 'Tim', 1958, 'M', 5552), +(78435, 'Roy', 1958, 'M', 5527), +(78436, 'Rick', 1958, 'M', 5461), +(78437, 'Glenn', 1958, 'M', 5450), +(78438, 'Ralph', 1958, 'M', 5444), +(78439, 'Barry', 1958, 'M', 5320), +(78440, 'Jack', 1958, 'M', 5303), +(78441, 'Phillip', 1958, 'M', 5278), +(78442, 'Curtis', 1958, 'M', 5263), +(78443, 'Harold', 1958, 'M', 5147), +(78444, 'Henry', 1958, 'M', 5146), +(78445, 'Samuel', 1958, 'M', 5042), +(78446, 'Jay', 1958, 'M', 5019), +(78447, 'Jim', 1958, 'M', 4914), +(78448, 'Stanley', 1958, 'M', 4914), +(78449, 'Albert', 1958, 'M', 4812), +(78450, 'Darrell', 1958, 'M', 4772), +(78451, 'Micheal', 1958, 'M', 4559), +(78452, 'Allen', 1958, 'M', 4505), +(78453, 'Chris', 1958, 'M', 4456), +(78454, 'Louis', 1958, 'M', 4446), +(78455, 'Howard', 1958, 'M', 4365), +(78456, 'Tom', 1958, 'M', 4361), +(78457, 'Dean', 1958, 'M', 4295), +(78458, 'Vincent', 1958, 'M', 4265), +(78459, 'Bill', 1958, 'M', 4214), +(78460, 'Eddie', 1958, 'M', 4131), +(78461, 'Bryan', 1958, 'M', 4084), +(78462, 'Eugene', 1958, 'M', 4017), +(78463, 'Leonard', 1958, 'M', 4011), +(78464, 'Tommy', 1958, 'M', 3829), +(78465, 'Greg', 1958, 'M', 3796), +(78466, 'Rickey', 1958, 'M', 3783), +(78467, 'Victor', 1958, 'M', 3734), +(78468, 'Bradley', 1958, 'M', 3730), +(78469, 'Dan', 1958, 'M', 3693), +(78470, 'Frederick', 1958, 'M', 3629), +(78471, 'Harry', 1958, 'M', 3589), +(78472, 'Don', 1958, 'M', 3577), +(78473, 'Fred', 1958, 'M', 3516), +(78474, 'Ernest', 1958, 'M', 3514), +(78475, 'Lee', 1958, 'M', 3513), +(78476, 'Todd', 1958, 'M', 3458), +(78477, 'Jon', 1958, 'M', 3437), +(78478, 'Jose', 1958, 'M', 3408), +(78479, 'Marvin', 1958, 'M', 3291), +(78480, 'Joel', 1958, 'M', 3222), +(78481, 'Ray', 1958, 'M', 3183), +(78482, 'Melvin', 1958, 'M', 3141), +(78483, 'Calvin', 1958, 'M', 3114), +(78484, 'Jonathan', 1958, 'M', 3086), +(78485, 'Norman', 1958, 'M', 3066), +(78486, 'Dave', 1958, 'M', 2954), +(78487, 'Mitchell', 1958, 'M', 2842), +(78488, 'Clifford', 1958, 'M', 2816), +(78489, 'Jerome', 1958, 'M', 2815), +(78490, 'Earl', 1958, 'M', 2794), +(78491, 'Glen', 1958, 'M', 2786), +(78492, 'Perry', 1958, 'M', 2734), +(78493, 'Alfred', 1958, 'M', 2707), +(78494, 'Kurt', 1958, 'M', 2676), +(78495, 'Francis', 1958, 'M', 2614), +(78496, 'Duane', 1958, 'M', 2612), +(78497, 'Edwin', 1958, 'M', 2597), +(78498, 'Bob', 1958, 'M', 2521), +(78499, 'Clarence', 1958, 'M', 2520), +(78500, 'Theodore', 1958, 'M', 2505), +(78501, 'Reginald', 1958, 'M', 2495), +(78502, 'Jesse', 1958, 'M', 2487), +(78503, 'Kent', 1958, 'M', 2404), +(78504, 'Marc', 1958, 'M', 2402), +(78505, 'Bernard', 1958, 'M', 2397), +(78506, 'Karl', 1958, 'M', 2347), +(78507, 'Kirk', 1958, 'M', 2335), +(78508, 'Kelly', 1958, 'M', 2300), +(78509, 'Warren', 1958, 'M', 2290), +(78510, 'Brad', 1958, 'M', 2261), +(78511, 'Benjamin', 1958, 'M', 2256), +(78512, 'Gordon', 1958, 'M', 2221), +(78513, 'Nicholas', 1958, 'M', 2185), +(78514, 'Alvin', 1958, 'M', 2181), +(78515, 'Brett', 1958, 'M', 2134), +(78516, 'Guy', 1958, 'M', 2106), +(78517, 'Herbert', 1958, 'M', 2082), +(78518, 'Leroy', 1958, 'M', 2080), +(78519, 'Brent', 1958, 'M', 2076), +(78520, 'Wesley', 1958, 'M', 1952), +(78521, 'Leon', 1958, 'M', 1939), +(78522, 'Leslie', 1958, 'M', 1938), +(78523, 'Juan', 1958, 'M', 1934), +(78524, 'Vernon', 1958, 'M', 1924), +(78525, 'Carlos', 1958, 'M', 1904), +(78526, 'Lloyd', 1958, 'M', 1836), +(78527, 'Darryl', 1958, 'M', 1825), +(78528, 'Gene', 1958, 'M', 1818), +(78529, 'Gilbert', 1958, 'M', 1808), +(78530, 'Daryl', 1958, 'M', 1785), +(78531, 'Lonnie', 1958, 'M', 1777), +(78532, 'Garry', 1958, 'M', 1763), +(78533, 'Ted', 1958, 'M', 1738), +(78534, 'Neil', 1958, 'M', 1709), +(78535, 'Ron', 1958, 'M', 1700), +(78536, 'Dwight', 1958, 'M', 1696), +(78537, 'Lewis', 1958, 'M', 1669), +(78538, 'Manuel', 1958, 'M', 1651), +(78539, 'Floyd', 1958, 'M', 1622), +(78540, 'Allan', 1958, 'M', 1603), +(78541, 'Donnie', 1958, 'M', 1598), +(78542, 'Franklin', 1958, 'M', 1587), +(78543, 'Clyde', 1958, 'M', 1557), +(78544, 'Dana', 1958, 'M', 1531), +(78545, 'Tyrone', 1958, 'M', 1529), +(78546, 'Ken', 1958, 'M', 1526), +(78547, 'Bret', 1958, 'M', 1511), +(78548, 'Jackie', 1958, 'M', 1506), +(78549, 'Randal', 1958, 'M', 1477), +(78550, 'Gregg', 1958, 'M', 1475), +(78551, 'Gerard', 1958, 'M', 1472), +(78552, 'Lester', 1958, 'M', 1456), +(78553, 'Robin', 1958, 'M', 1445), +(78554, 'Kerry', 1958, 'M', 1443), +(78555, 'Charlie', 1958, 'M', 1428), +(78556, 'Leo', 1958, 'M', 1422), +(78557, 'Kenny', 1958, 'M', 1420), +(78558, 'Marty', 1958, 'M', 1414), +(78559, 'Aaron', 1958, 'M', 1405), +(78560, 'Dwayne', 1958, 'M', 1404), +(78561, 'Doug', 1958, 'M', 1392), +(78562, 'Ruben', 1958, 'M', 1377), +(78563, 'Stuart', 1958, 'M', 1340), +(78564, 'Milton', 1958, 'M', 1326), +(78565, 'Jimmie', 1958, 'M', 1316), +(78566, 'Kim', 1958, 'M', 1315), +(78567, 'Antonio', 1958, 'M', 1307), +(78568, 'Ricardo', 1958, 'M', 1293), +(78569, 'Maurice', 1958, 'M', 1292), +(78570, 'Johnnie', 1958, 'M', 1272), +(78571, 'Freddie', 1958, 'M', 1262), +(78572, 'Tracy', 1958, 'M', 1249), +(78573, 'Nathan', 1958, 'M', 1241), +(78574, 'Rex', 1958, 'M', 1240), +(78575, 'Luis', 1958, 'M', 1219), +(78576, 'Terrence', 1958, 'M', 1213), +(78577, 'Herman', 1958, 'M', 1210), +(78578, 'Byron', 1958, 'M', 1204), +(78579, 'Alexander', 1958, 'M', 1189), +(78580, 'Wendell', 1958, 'M', 1189), +(78581, 'Mario', 1958, 'M', 1188), +(78582, 'Shawn', 1958, 'M', 1187), +(78583, 'Randolph', 1958, 'M', 1182), +(78584, 'Sam', 1958, 'M', 1176), +(78585, 'Harvey', 1958, 'M', 1172), +(78586, 'Timmy', 1958, 'M', 1169), +(78587, 'Neal', 1958, 'M', 1157), +(78588, 'Wade', 1958, 'M', 1149), +(78589, 'Andy', 1958, 'M', 1133), +(78590, 'Lance', 1958, 'M', 1132), +(78591, 'Arnold', 1958, 'M', 1131), +(78592, 'Clayton', 1958, 'M', 1126), +(78593, 'Andre', 1958, 'M', 1119), +(78594, 'Roland', 1958, 'M', 1109), +(78595, 'Nathaniel', 1958, 'M', 1106), +(78596, 'Clinton', 1958, 'M', 1074), +(78597, 'Joey', 1958, 'M', 1071), +(78598, 'Oscar', 1958, 'M', 1069), +(78599, 'Lynn', 1958, 'M', 1051), +(78600, 'Chester', 1958, 'M', 1050), +(78601, 'Marshall', 1958, 'M', 1037), +(78602, 'Hugh', 1958, 'M', 1031), +(78603, 'Ross', 1958, 'M', 1030), +(78604, 'Derrick', 1958, 'M', 1028), +(78605, 'Alex', 1958, 'M', 1017), +(78606, 'Jessie', 1958, 'M', 1016), +(78607, 'Kyle', 1958, 'M', 1014), +(78608, 'Sean', 1958, 'M', 1014), +(78609, 'Cecil', 1958, 'M', 1009), +(78610, 'Clifton', 1958, 'M', 998), +(78611, 'Marcus', 1958, 'M', 986), +(78612, 'Fredrick', 1958, 'M', 957), +(78613, 'Claude', 1958, 'M', 951), +(78614, 'Nelson', 1958, 'M', 947), +(78615, 'Roberto', 1958, 'M', 926), +(78616, 'Derek', 1958, 'M', 916), +(78617, 'Terrance', 1958, 'M', 914), +(78618, 'Matt', 1958, 'M', 909), +(78619, 'Chuck', 1958, 'M', 904), +(78620, 'Carlton', 1958, 'M', 890), +(78621, 'Benny', 1958, 'M', 875), +(78622, 'Sammy', 1958, 'M', 873), +(78623, 'Ben', 1958, 'M', 871), +(78624, 'Raul', 1958, 'M', 864), +(78625, 'Jesus', 1958, 'M', 863), +(78626, 'Pat', 1958, 'M', 851), +(78627, 'Nick', 1958, 'M', 846), +(78628, 'Hector', 1958, 'M', 843), +(78629, 'Sidney', 1958, 'M', 825), +(78630, 'Wallace', 1958, 'M', 805), +(78631, 'Rickie', 1958, 'M', 790), +(78632, 'Mickey', 1958, 'M', 789), +(78633, 'Rocky', 1958, 'M', 777), +(78634, 'Miguel', 1958, 'M', 774), +(78635, 'Geoffrey', 1958, 'M', 770), +(78636, 'Kelvin', 1958, 'M', 769), +(78637, 'Lyle', 1958, 'M', 769), +(78638, 'Troy', 1958, 'M', 765), +(78639, 'Pete', 1958, 'M', 757), +(78640, 'Edgar', 1958, 'M', 752), +(78641, 'Frankie', 1958, 'M', 752), +(78642, 'Max', 1958, 'M', 738), +(78643, 'Rudy', 1958, 'M', 734), +(78644, 'Clay', 1958, 'M', 718), +(78645, 'Ramon', 1958, 'M', 712), +(78646, 'Terence', 1958, 'M', 712), +(78647, 'Morris', 1958, 'M', 709), +(78648, 'Virgil', 1958, 'M', 703), +(78649, 'Francisco', 1958, 'M', 698), +(78650, 'Roderick', 1958, 'M', 697), +(78651, 'Bart', 1958, 'M', 687), +(78652, 'Everett', 1958, 'M', 672), +(78653, 'Clark', 1958, 'M', 671), +(78654, 'Otis', 1958, 'M', 663), +(78655, 'Jody', 1958, 'M', 660), +(78656, 'Jamie', 1958, 'M', 642), +(78657, 'Bennie', 1958, 'M', 636), +(78658, 'Earnest', 1958, 'M', 632), +(78659, 'Ed', 1958, 'M', 632), +(78660, 'Loren', 1958, 'M', 630), +(78661, 'Felix', 1958, 'M', 624), +(78662, 'Angelo', 1958, 'M', 623), +(78663, 'Darrel', 1958, 'M', 623), +(78664, 'Bradford', 1958, 'M', 619), +(78665, 'Ivan', 1958, 'M', 614), +(78666, 'Pedro', 1958, 'M', 611), +(78667, 'Ira', 1958, 'M', 605), +(78668, 'Malcolm', 1958, 'M', 601), +(78669, 'Sherman', 1958, 'M', 600), +(78670, 'Curt', 1958, 'M', 598), +(78671, 'Armando', 1958, 'M', 595), +(78672, 'Jason', 1958, 'M', 592), +(78673, 'Grant', 1958, 'M', 587), +(78674, 'Cary', 1958, 'M', 586), +(78675, 'Marion', 1958, 'M', 583), +(78676, 'Willard', 1958, 'M', 583), +(78677, 'Myron', 1958, 'M', 581), +(78678, 'Jaime', 1958, 'M', 580), +(78679, 'Phil', 1958, 'M', 580), +(78680, 'Sylvester', 1958, 'M', 578), +(78681, 'Alton', 1958, 'M', 572), +(78682, 'Edmund', 1958, 'M', 569), +(78683, 'Delbert', 1958, 'M', 566), +(78684, 'Teddy', 1958, 'M', 564), +(78685, 'Scot', 1958, 'M', 563), +(78686, 'Salvatore', 1958, 'M', 554), +(78687, 'Jeffry', 1958, 'M', 551), +(78688, 'Elmer', 1958, 'M', 550), +(78689, 'Rene', 1958, 'M', 548), +(78690, 'Monte', 1958, 'M', 545), +(78691, 'Laurence', 1958, 'M', 540), +(78692, 'Isaac', 1958, 'M', 539), +(78693, 'Stewart', 1958, 'M', 537), +(78694, 'Angel', 1958, 'M', 529), +(78695, 'Fernando', 1958, 'M', 525), +(78696, 'Luther', 1958, 'M', 525), +(78697, 'Gerry', 1958, 'M', 524), +(78698, 'Lorenzo', 1958, 'M', 519), +(78699, 'Rusty', 1958, 'M', 511), +(78700, 'Jacob', 1958, 'M', 509), +(78701, 'Tommie', 1958, 'M', 508), +(78702, 'Rafael', 1958, 'M', 501), +(78703, 'Roosevelt', 1958, 'M', 495), +(78704, 'Julius', 1958, 'M', 493), +(78705, 'Hubert', 1958, 'M', 487), +(78706, 'Rudolph', 1958, 'M', 486), +(78707, 'Rory', 1958, 'M', 485), +(78708, 'Jerald', 1958, 'M', 481), +(78709, 'Preston', 1958, 'M', 477), +(78710, 'Clint', 1958, 'M', 474), +(78711, 'Monty', 1958, 'M', 471), +(78712, 'Adam', 1958, 'M', 469), +(78713, 'Archie', 1958, 'M', 466), +(78714, 'Dexter', 1958, 'M', 465), +(78715, 'Arturo', 1958, 'M', 463), +(78716, 'Dewayne', 1958, 'M', 463), +(78717, 'Leland', 1958, 'M', 461), +(78718, 'Julian', 1958, 'M', 460), +(78719, 'Doyle', 1958, 'M', 456), +(78720, 'Hal', 1958, 'M', 456), +(78721, 'Alonzo', 1958, 'M', 454), +(78722, 'Oliver', 1958, 'M', 454), +(78723, 'Rodger', 1958, 'M', 453), +(78724, 'Lowell', 1958, 'M', 449), +(78725, 'Van', 1958, 'M', 449), +(78726, 'Adrian', 1958, 'M', 444), +(78727, 'Ernie', 1958, 'M', 444), +(78728, 'Drew', 1958, 'M', 441), +(78729, 'Noel', 1958, 'M', 441), +(78730, 'Alfredo', 1958, 'M', 440), +(78731, 'Kris', 1958, 'M', 436), +(78732, 'Travis', 1958, 'M', 434), +(78733, 'Horace', 1958, 'M', 432), +(78734, 'Dominic', 1958, 'M', 430), +(78735, 'Bert', 1958, 'M', 429), +(78736, 'Jan', 1958, 'M', 429), +(78737, 'Christian', 1958, 'M', 425), +(78738, 'Wilbert', 1958, 'M', 423), +(78739, 'Darren', 1958, 'M', 418), +(78740, 'Darwin', 1958, 'M', 418), +(78741, 'Alberto', 1958, 'M', 417), +(78742, 'Jorge', 1958, 'M', 417), +(78743, 'Willis', 1958, 'M', 415), +(78744, 'Forrest', 1958, 'M', 414), +(78745, 'Sheldon', 1958, 'M', 413), +(78746, 'Shane', 1958, 'M', 412), +(78747, 'Denis', 1958, 'M', 409), +(78748, 'Cedric', 1958, 'M', 405), +(78749, 'Stevie', 1958, 'M', 405), +(78750, 'Robbie', 1958, 'M', 404), +(78751, 'Stan', 1958, 'M', 400), +(78752, 'Carey', 1958, 'M', 398), +(78753, 'Ronny', 1958, 'M', 397), +(78754, 'Kendall', 1958, 'M', 390), +(78755, 'Al', 1958, 'M', 388), +(78756, 'Darnell', 1958, 'M', 388), +(78757, 'Alfonso', 1958, 'M', 384), +(78758, 'Orlando', 1958, 'M', 383), +(78759, 'Stephan', 1958, 'M', 382), +(78760, 'Louie', 1958, 'M', 379), +(78761, 'Ervin', 1958, 'M', 377), +(78762, 'Vance', 1958, 'M', 376), +(78763, 'Homer', 1958, 'M', 374), +(78764, 'Casey', 1958, 'M', 373), +(78765, 'Elvis', 1958, 'M', 373), +(78766, 'Owen', 1958, 'M', 371), +(78767, 'Dallas', 1958, 'M', 369), +(78768, 'Blake', 1958, 'M', 365), +(78769, 'Boyd', 1958, 'M', 364), +(78770, 'Mack', 1958, 'M', 363), +(78771, 'Lionel', 1958, 'M', 362), +(78772, 'Gabriel', 1958, 'M', 361), +(78773, 'Aubrey', 1958, 'M', 360), +(78774, 'Freddy', 1958, 'M', 358), +(78775, 'Ellis', 1958, 'M', 356), +(78776, 'Grady', 1958, 'M', 355), +(78777, 'Wilbur', 1958, 'M', 352), +(78778, 'Bryant', 1958, 'M', 351), +(78779, 'Buddy', 1958, 'M', 350), +(78780, 'Elbert', 1958, 'M', 348), +(78781, 'Mathew', 1958, 'M', 348), +(78782, 'Marlon', 1958, 'M', 346), +(78783, 'Rod', 1958, 'M', 346), +(78784, 'Rufus', 1958, 'M', 346), +(78785, 'Kirby', 1958, 'M', 342), +(78786, 'Blaine', 1958, 'M', 340), +(78787, 'Erik', 1958, 'M', 340), +(78788, 'Dominick', 1958, 'M', 338), +(78789, 'Luke', 1958, 'M', 335), +(78790, 'Javier', 1958, 'M', 333), +(78791, 'Royce', 1958, 'M', 333), +(78792, 'Evan', 1958, 'M', 330), +(78793, 'Dewey', 1958, 'M', 329), +(78794, 'Miles', 1958, 'M', 327), +(78795, 'Conrad', 1958, 'M', 324), +(78796, 'Cornelius', 1958, 'M', 323), +(78797, 'Ernesto', 1958, 'M', 322), +(78798, 'Wilson', 1958, 'M', 318), +(78799, 'Rob', 1958, 'M', 316), +(78800, 'Seth', 1958, 'M', 315), +(78801, 'Dino', 1958, 'M', 314), +(78802, 'Dirk', 1958, 'M', 314), +(78803, 'Salvador', 1958, 'M', 314), +(78804, 'Eduardo', 1958, 'M', 313), +(78805, 'Enrique', 1958, 'M', 310), +(78806, 'Ryan', 1958, 'M', 310), +(78807, 'Sammie', 1958, 'M', 309), +(78808, 'Justin', 1958, 'M', 306), +(78809, 'Randell', 1958, 'M', 304), +(78810, 'Denny', 1958, 'M', 303), +(78811, 'Rodolfo', 1958, 'M', 303), +(78812, 'Julio', 1958, 'M', 301), +(78813, 'Garland', 1958, 'M', 300), +(78814, 'Toby', 1958, 'M', 299), +(78815, 'Russ', 1958, 'M', 298), +(78816, 'Tod', 1958, 'M', 298), +(78817, 'Bryon', 1958, 'M', 297), +(78818, 'Corey', 1958, 'M', 294), +(78819, 'Moses', 1958, 'M', 292), +(78820, 'Guadalupe', 1958, 'M', 291), +(78821, 'Dane', 1958, 'M', 287), +(78822, 'Marlin', 1958, 'M', 286), +(78823, 'Donny', 1958, 'M', 285), +(78824, 'Spencer', 1958, 'M', 285), +(78825, 'Amos', 1958, 'M', 284), +(78826, 'Carroll', 1958, 'M', 284), +(78827, 'Cory', 1958, 'M', 284), +(78828, 'Mitch', 1958, 'M', 284), +(78829, 'Percy', 1958, 'M', 283), +(78830, 'Vince', 1958, 'M', 283), +(78831, 'Abraham', 1958, 'M', 282), +(78832, 'Duncan', 1958, 'M', 281), +(78833, 'Elton', 1958, 'M', 281), +(78834, 'Joesph', 1958, 'M', 281), +(78835, 'Colin', 1958, 'M', 280), +(78836, 'Irvin', 1958, 'M', 278), +(78837, 'Joshua', 1958, 'M', 277), +(78838, 'Alphonso', 1958, 'M', 269), +(78839, 'Unknown', 1958, 'M', 268), +(78840, 'Edmond', 1958, 'M', 267), +(78841, 'Barney', 1958, 'M', 264), +(78842, 'Cameron', 1958, 'M', 264), +(78843, 'Emmett', 1958, 'M', 263), +(78844, 'Terrell', 1958, 'M', 262), +(78845, 'Cleveland', 1958, 'M', 261), +(78846, 'Lamar', 1958, 'M', 261), +(78847, 'Mitchel', 1958, 'M', 258), +(78848, 'Wilfred', 1958, 'M', 258), +(78849, 'Murray', 1958, 'M', 257); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(78850, 'Jess', 1958, 'M', 255), +(78851, 'Emanuel', 1958, 'M', 253), +(78852, 'Chad', 1958, 'M', 250), +(78853, 'Reed', 1958, 'M', 250), +(78854, 'Cliff', 1958, 'M', 247), +(78855, 'Ward', 1958, 'M', 246), +(78856, 'Rocco', 1958, 'M', 245), +(78857, 'Sterling', 1958, 'M', 245), +(78858, 'Galen', 1958, 'M', 244), +(78859, 'Harlan', 1958, 'M', 243), +(78860, 'Abel', 1958, 'M', 241), +(78861, 'Scotty', 1958, 'M', 239), +(78862, 'Stacy', 1958, 'M', 239), +(78863, 'Zachary', 1958, 'M', 236), +(78864, 'Dick', 1958, 'M', 235), +(78865, 'Lamont', 1958, 'M', 234), +(78866, 'Merle', 1958, 'M', 231), +(78867, 'Barton', 1958, 'M', 230), +(78868, 'Eddy', 1958, 'M', 229), +(78869, 'Lon', 1958, 'M', 229), +(78870, 'Michel', 1958, 'M', 229), +(78871, 'Reggie', 1958, 'M', 229), +(78872, 'Damon', 1958, 'M', 227), +(78873, 'Dannie', 1958, 'M', 227), +(78874, 'Israel', 1958, 'M', 227), +(78875, 'Ned', 1958, 'M', 227), +(78876, 'Carmen', 1958, 'M', 223), +(78877, 'Norris', 1958, 'M', 223), +(78878, 'Sandy', 1958, 'M', 220), +(78879, 'Blair', 1958, 'M', 219), +(78880, 'Reynaldo', 1958, 'M', 219), +(78881, 'Donnell', 1958, 'M', 216), +(78882, 'Gilberto', 1958, 'M', 216), +(78883, 'Reuben', 1958, 'M', 216), +(78884, 'Woodrow', 1958, 'M', 216), +(78885, 'Dion', 1958, 'M', 215), +(78886, 'Ramiro', 1958, 'M', 214), +(78887, 'Tomas', 1958, 'M', 213), +(78888, 'Irving', 1958, 'M', 211), +(78889, 'Pablo', 1958, 'M', 211), +(78890, 'Sergio', 1958, 'M', 210), +(78891, 'Bernie', 1958, 'M', 209), +(78892, 'Nicky', 1958, 'M', 209), +(78893, 'Vaughn', 1958, 'M', 209), +(78894, 'Alejandro', 1958, 'M', 207), +(78895, 'Elijah', 1958, 'M', 206), +(78896, 'Ian', 1958, 'M', 206), +(78897, 'Lanny', 1958, 'M', 206), +(78898, 'Linwood', 1958, 'M', 206), +(78899, 'Pierre', 1958, 'M', 206), +(78900, 'Elvin', 1958, 'M', 204), +(78901, 'Robby', 1958, 'M', 204), +(78902, 'Elliott', 1958, 'M', 203), +(78903, 'Junior', 1958, 'M', 202), +(78904, 'Grover', 1958, 'M', 200), +(78905, 'Kennith', 1958, 'M', 200), +(78906, 'Gus', 1958, 'M', 199), +(78907, 'Lane', 1958, 'M', 199), +(78908, 'Sanford', 1958, 'M', 198), +(78909, 'Simon', 1958, 'M', 198), +(78910, 'Austin', 1958, 'M', 197), +(78911, 'Eldon', 1958, 'M', 197), +(78912, 'Bennett', 1958, 'M', 196), +(78913, 'Cornell', 1958, 'M', 196), +(78914, 'Thaddeus', 1958, 'M', 194), +(78915, 'Winston', 1958, 'M', 194), +(78916, 'Erwin', 1958, 'M', 192), +(78917, 'Jefferson', 1958, 'M', 192), +(78918, 'Morgan', 1958, 'M', 192), +(78919, 'Dudley', 1958, 'M', 191), +(78920, 'Ismael', 1958, 'M', 191), +(78921, 'Felipe', 1958, 'M', 190), +(78922, 'Rolando', 1958, 'M', 189), +(78923, 'Jasper', 1958, 'M', 188), +(78924, 'Danial', 1958, 'M', 187), +(78925, 'Shaun', 1958, 'M', 187), +(78926, 'Frederic', 1958, 'M', 186), +(78927, 'Jordan', 1958, 'M', 185), +(78928, 'Lonny', 1958, 'M', 185), +(78929, 'Hans', 1958, 'M', 184), +(78930, 'Kip', 1958, 'M', 184), +(78931, 'Wyatt', 1958, 'M', 184), +(78932, 'Brady', 1958, 'M', 183), +(78933, 'Levi', 1958, 'M', 183), +(78934, 'Orville', 1958, 'M', 183), +(78935, 'Will', 1958, 'M', 182), +(78936, 'Dwain', 1958, 'M', 181), +(78937, 'Nolan', 1958, 'M', 181), +(78938, 'Garrett', 1958, 'M', 180), +(78939, 'Billie', 1958, 'M', 179), +(78940, 'Harrison', 1958, 'M', 178), +(78941, 'Mikel', 1958, 'M', 178), +(78942, 'Wilfredo', 1958, 'M', 178), +(78943, 'Gerardo', 1958, 'M', 177), +(78944, 'Trent', 1958, 'M', 177), +(78945, 'Christophe', 1958, 'M', 176), +(78946, 'Harley', 1958, 'M', 176), +(78947, 'Roman', 1958, 'M', 175), +(78948, 'Russel', 1958, 'M', 175), +(78949, 'Art', 1958, 'M', 173), +(78950, 'Avery', 1958, 'M', 172), +(78951, 'Kenton', 1958, 'M', 172), +(78952, 'Timmie', 1958, 'M', 172), +(78953, 'Loyd', 1958, 'M', 171), +(78954, 'Rich', 1958, 'M', 170), +(78955, 'Andres', 1958, 'M', 169), +(78956, 'Emil', 1958, 'M', 169), +(78957, 'Kurtis', 1958, 'M', 169), +(78958, 'Reid', 1958, 'M', 169), +(78959, 'Sonny', 1958, 'M', 169), +(78960, 'Norbert', 1958, 'M', 168), +(78961, 'Carter', 1958, 'M', 165), +(78962, 'Marco', 1958, 'M', 165), +(78963, 'Guillermo', 1958, 'M', 164), +(78964, 'Jake', 1958, 'M', 162), +(78965, 'Les', 1958, 'M', 162), +(78966, 'Lyndon', 1958, 'M', 162), +(78967, 'Domingo', 1958, 'M', 161), +(78968, 'Odell', 1958, 'M', 161), +(78969, 'Bryce', 1958, 'M', 160), +(78970, 'Shelton', 1958, 'M', 159), +(78971, 'Burton', 1958, 'M', 158), +(78972, 'Ivory', 1958, 'M', 158), +(78973, 'Bobbie', 1958, 'M', 157), +(78974, 'Hollis', 1958, 'M', 157), +(78975, 'Merlin', 1958, 'M', 157), +(78976, 'Donn', 1958, 'M', 156), +(78977, 'Toney', 1958, 'M', 156), +(78978, 'August', 1958, 'M', 154), +(78979, 'Garth', 1958, 'M', 154), +(78980, 'Lenny', 1958, 'M', 154), +(78981, 'Roscoe', 1958, 'M', 154), +(78982, 'Elias', 1958, 'M', 153), +(78983, 'Ulysses', 1958, 'M', 153), +(78984, 'Wayde', 1958, 'M', 153), +(78985, 'Kermit', 1958, 'M', 151), +(78986, 'Jeremiah', 1958, 'M', 150), +(78987, 'Kelley', 1958, 'M', 150), +(78988, 'Saul', 1958, 'M', 150), +(78989, 'Vito', 1958, 'M', 150), +(78990, 'Santiago', 1958, 'M', 149), +(78991, 'Hank', 1958, 'M', 148), +(78992, 'Gino', 1958, 'M', 147), +(78993, 'Lindsey', 1958, 'M', 147), +(78994, 'Otto', 1958, 'M', 147), +(78995, 'Zane', 1958, 'M', 147), +(78996, 'Benito', 1958, 'M', 146), +(78997, 'Emilio', 1958, 'M', 146), +(78998, 'Erick', 1958, 'M', 146), +(78999, 'Jean', 1958, 'M', 146), +(79000, 'Jed', 1958, 'M', 144), +(79001, 'Tyler', 1958, 'M', 144), +(79002, 'Weldon', 1958, 'M', 144), +(79003, 'Hiram', 1958, 'M', 143), +(79004, 'Rogelio', 1958, 'M', 143), +(79005, 'Santos', 1958, 'M', 143), +(79006, 'Del', 1958, 'M', 142), +(79007, 'Shannon', 1958, 'M', 142), +(79008, 'Derwin', 1958, 'M', 141), +(79009, 'Jonathon', 1958, 'M', 141), +(79010, 'Mary', 1958, 'M', 141), +(79011, 'Kimberly', 1958, 'M', 140), +(79012, 'Thurman', 1958, 'M', 140), +(79013, 'Gustavo', 1958, 'M', 139), +(79014, 'Rock', 1958, 'M', 138), +(79015, 'Davis', 1958, 'M', 137), +(79016, 'Elliot', 1958, 'M', 137), +(79017, 'Noah', 1958, 'M', 137), +(79018, 'Quentin', 1958, 'M', 137), +(79019, 'Tad', 1958, 'M', 137), +(79020, 'Brandon', 1958, 'M', 135), +(79021, 'Ignacio', 1958, 'M', 135), +(79022, 'Keven', 1958, 'M', 135), +(79023, 'Gale', 1958, 'M', 134), +(79024, 'Vern', 1958, 'M', 134), +(79025, 'Errol', 1958, 'M', 132), +(79026, 'Solomon', 1958, 'M', 132), +(79027, 'Winfred', 1958, 'M', 132), +(79028, 'Elwood', 1958, 'M', 129), +(79029, 'Carmine', 1958, 'M', 128), +(79030, 'Charley', 1958, 'M', 128), +(79031, 'Randel', 1958, 'M', 128), +(79032, 'Val', 1958, 'M', 128), +(79033, 'Wally', 1958, 'M', 128), +(79034, 'Anton', 1958, 'M', 127), +(79035, 'Ollie', 1958, 'M', 127), +(79036, 'Shelby', 1958, 'M', 127), +(79037, 'Adolph', 1958, 'M', 126), +(79038, 'Cesar', 1958, 'M', 126), +(79039, 'Jacky', 1958, 'M', 126), +(79040, 'Wiley', 1958, 'M', 126), +(79041, 'Jerrold', 1958, 'M', 125), +(79042, 'Marcos', 1958, 'M', 125), +(79043, 'Butch', 1958, 'M', 124), +(79044, 'Brendan', 1958, 'M', 123), +(79045, 'Kraig', 1958, 'M', 123), +(79046, 'Jarvis', 1958, 'M', 121), +(79047, 'Denver', 1958, 'M', 120), +(79048, 'Jackson', 1958, 'M', 120), +(79049, 'Mel', 1958, 'M', 120), +(79050, 'Len', 1958, 'M', 119), +(79051, 'Von', 1958, 'M', 119), +(79052, 'Armand', 1958, 'M', 118), +(79053, 'Eli', 1958, 'M', 118), +(79054, 'Erich', 1958, 'M', 117), +(79055, 'Fredric', 1958, 'M', 117), +(79056, 'Gil', 1958, 'M', 117), +(79057, 'Stacey', 1958, 'M', 117), +(79058, 'Chet', 1958, 'M', 116), +(79059, 'Riley', 1958, 'M', 116), +(79060, 'Lenard', 1958, 'M', 114), +(79061, 'Merrill', 1958, 'M', 114), +(79062, 'Sal', 1958, 'M', 114), +(79063, 'Audie', 1958, 'M', 113), +(79064, 'Blane', 1958, 'M', 113), +(79065, 'Burt', 1958, 'M', 113), +(79066, 'Coy', 1958, 'M', 113), +(79067, 'Humberto', 1958, 'M', 113), +(79068, 'Stanford', 1958, 'M', 113), +(79069, 'Bud', 1958, 'M', 112), +(79070, 'Forest', 1958, 'M', 112), +(79071, 'Harris', 1958, 'M', 112), +(79072, 'Jerold', 1958, 'M', 112), +(79073, 'Millard', 1958, 'M', 112), +(79074, 'Nicolas', 1958, 'M', 111), +(79075, 'Emory', 1958, 'M', 108), +(79076, 'Graham', 1958, 'M', 108), +(79077, 'Jeremy', 1958, 'M', 108), +(79078, 'Aron', 1958, 'M', 107), +(79079, 'Felton', 1958, 'M', 107), +(79080, 'Mervin', 1958, 'M', 107), +(79081, 'Clement', 1958, 'M', 106), +(79082, 'Eloy', 1958, 'M', 106), +(79083, 'Johnathan', 1958, 'M', 106), +(79084, 'Patricia', 1958, 'M', 106), +(79085, 'Antoine', 1958, 'M', 105), +(79086, 'Broderick', 1958, 'M', 105), +(79087, 'Isiah', 1958, 'M', 105), +(79088, 'Johnie', 1958, 'M', 105), +(79089, 'Leonardo', 1958, 'M', 105), +(79090, 'Adolfo', 1958, 'M', 103), +(79091, 'Basil', 1958, 'M', 103), +(79092, 'Marcel', 1958, 'M', 103), +(79093, 'Arlen', 1958, 'M', 102), +(79094, 'Ricki', 1958, 'M', 102), +(79095, 'Silas', 1958, 'M', 102), +(79096, 'Lesley', 1958, 'M', 101), +(79097, 'Efrain', 1958, 'M', 100), +(79098, 'Myles', 1958, 'M', 100), +(79099, 'Mary', 1959, 'F', 54473), +(79100, 'Susan', 1959, 'F', 41606), +(79101, 'Linda', 1959, 'F', 40407), +(79102, 'Karen', 1959, 'F', 36773), +(79103, 'Donna', 1959, 'F', 36462), +(79104, 'Patricia', 1959, 'F', 35224), +(79105, 'Debra', 1959, 'F', 31371), +(79106, 'Cynthia', 1959, 'F', 30171), +(79107, 'Deborah', 1959, 'F', 29555), +(79108, 'Lisa', 1959, 'F', 25691), +(79109, 'Barbara', 1959, 'F', 25352), +(79110, 'Pamela', 1959, 'F', 24711), +(79111, 'Sandra', 1959, 'F', 23355), +(79112, 'Nancy', 1959, 'F', 23080), +(79113, 'Kathy', 1959, 'F', 21810), +(79114, 'Brenda', 1959, 'F', 21426), +(79115, 'Sharon', 1959, 'F', 21296), +(79116, 'Cheryl', 1959, 'F', 20939), +(79117, 'Diane', 1959, 'F', 19977), +(79118, 'Debbie', 1959, 'F', 19536), +(79119, 'Elizabeth', 1959, 'F', 18436), +(79120, 'Carol', 1959, 'F', 18123), +(79121, 'Kathleen', 1959, 'F', 17622), +(79122, 'Teresa', 1959, 'F', 17393), +(79123, 'Cindy', 1959, 'F', 16966), +(79124, 'Julie', 1959, 'F', 16216), +(79125, 'Lori', 1959, 'F', 15024), +(79126, 'Janet', 1959, 'F', 14963), +(79127, 'Denise', 1959, 'F', 14662), +(79128, 'Laura', 1959, 'F', 14527), +(79129, 'Tammy', 1959, 'F', 13707), +(79130, 'Robin', 1959, 'F', 12858), +(79131, 'Kimberly', 1959, 'F', 12783), +(79132, 'Theresa', 1959, 'F', 11642), +(79133, 'Kim', 1959, 'F', 11591), +(79134, 'Margaret', 1959, 'F', 11574), +(79135, 'Janice', 1959, 'F', 10492), +(79136, 'Rebecca', 1959, 'F', 10473), +(79137, 'Cathy', 1959, 'F', 10412), +(79138, 'Catherine', 1959, 'F', 10022), +(79139, 'Judy', 1959, 'F', 9883), +(79140, 'Carolyn', 1959, 'F', 9730), +(79141, 'Christine', 1959, 'F', 9469), +(79142, 'Ann', 1959, 'F', 8919), +(79143, 'Rhonda', 1959, 'F', 8853), +(79144, 'Terri', 1959, 'F', 8784), +(79145, 'Michelle', 1959, 'F', 8773), +(79146, 'Connie', 1959, 'F', 8665), +(79147, 'Diana', 1959, 'F', 8634), +(79148, 'Joyce', 1959, 'F', 8511), +(79149, 'Paula', 1959, 'F', 8053), +(79150, 'Sheila', 1959, 'F', 7988), +(79151, 'Tina', 1959, 'F', 7917), +(79152, 'Dawn', 1959, 'F', 7896), +(79153, 'Beverly', 1959, 'F', 7791), +(79154, 'Laurie', 1959, 'F', 7534), +(79155, 'Peggy', 1959, 'F', 7409), +(79156, 'Sherry', 1959, 'F', 7343), +(79157, 'Betty', 1959, 'F', 7316), +(79158, 'Valerie', 1959, 'F', 7309), +(79159, 'Shirley', 1959, 'F', 7285), +(79160, 'Maria', 1959, 'F', 7238), +(79161, 'Lynn', 1959, 'F', 7058), +(79162, 'Annette', 1959, 'F', 6920), +(79163, 'Wanda', 1959, 'F', 6907), +(79164, 'Jane', 1959, 'F', 6872), +(79165, 'Darlene', 1959, 'F', 6868), +(79166, 'Angela', 1959, 'F', 6776), +(79167, 'Kathryn', 1959, 'F', 6742), +(79168, 'Judith', 1959, 'F', 6570), +(79169, 'Bonnie', 1959, 'F', 6457), +(79170, 'Martha', 1959, 'F', 6439), +(79171, 'Vicki', 1959, 'F', 6429), +(79172, 'Kelly', 1959, 'F', 6379), +(79173, 'Gail', 1959, 'F', 6352), +(79174, 'Joan', 1959, 'F', 6337), +(79175, 'Jean', 1959, 'F', 6236), +(79176, 'Jennifer', 1959, 'F', 6232), +(79177, 'Katherine', 1959, 'F', 6140), +(79178, 'Beth', 1959, 'F', 6067), +(79179, 'Gloria', 1959, 'F', 5925), +(79180, 'Anne', 1959, 'F', 5742), +(79181, 'Wendy', 1959, 'F', 5711), +(79182, 'Leslie', 1959, 'F', 5654), +(79183, 'Amy', 1959, 'F', 5584), +(79184, 'Jill', 1959, 'F', 5555), +(79185, 'Anita', 1959, 'F', 5478), +(79186, 'Michele', 1959, 'F', 5446), +(79187, 'Rose', 1959, 'F', 5442), +(79188, 'Vickie', 1959, 'F', 5422), +(79189, 'Ellen', 1959, 'F', 5390), +(79190, 'Joanne', 1959, 'F', 5339), +(79191, 'Virginia', 1959, 'F', 5260), +(79192, 'Dorothy', 1959, 'F', 5238), +(79193, 'Terry', 1959, 'F', 5214), +(79194, 'Suzanne', 1959, 'F', 5162), +(79195, 'Ruth', 1959, 'F', 5051), +(79196, 'Rita', 1959, 'F', 4949), +(79197, 'Anna', 1959, 'F', 4870), +(79198, 'Renee', 1959, 'F', 4843), +(79199, 'Stephanie', 1959, 'F', 4827), +(79200, 'Becky', 1959, 'F', 4753), +(79201, 'Phyllis', 1959, 'F', 4685), +(79202, 'Marie', 1959, 'F', 4677), +(79203, 'Elaine', 1959, 'F', 4452), +(79204, 'Maureen', 1959, 'F', 4451), +(79205, 'Sue', 1959, 'F', 4386), +(79206, 'Helen', 1959, 'F', 4379), +(79207, 'Marilyn', 1959, 'F', 4348), +(79208, 'Colleen', 1959, 'F', 4336), +(79209, 'Jacqueline', 1959, 'F', 4323), +(79210, 'Alice', 1959, 'F', 4154), +(79211, 'Victoria', 1959, 'F', 4148), +(79212, 'Sally', 1959, 'F', 4065), +(79213, 'Jo', 1959, 'F', 4055), +(79214, 'Regina', 1959, 'F', 3939), +(79215, 'Carla', 1959, 'F', 3936), +(79216, 'Julia', 1959, 'F', 3935), +(79217, 'Sarah', 1959, 'F', 3872), +(79218, 'Sylvia', 1959, 'F', 3853), +(79219, 'Tamara', 1959, 'F', 3799), +(79220, 'Penny', 1959, 'F', 3754), +(79221, 'Andrea', 1959, 'F', 3751), +(79222, 'Frances', 1959, 'F', 3712), +(79223, 'Pam', 1959, 'F', 3678), +(79224, 'Melissa', 1959, 'F', 3630), +(79225, 'Eileen', 1959, 'F', 3626), +(79226, 'Sheryl', 1959, 'F', 3542), +(79227, 'Jeanne', 1959, 'F', 3518), +(79228, 'Joann', 1959, 'F', 3459), +(79229, 'Tracy', 1959, 'F', 3363), +(79230, 'Yvonne', 1959, 'F', 3293), +(79231, 'Sandy', 1959, 'F', 3276), +(79232, 'Evelyn', 1959, 'F', 3262), +(79233, 'Gina', 1959, 'F', 3225), +(79234, 'Loretta', 1959, 'F', 3156), +(79235, 'Lorraine', 1959, 'F', 3142), +(79236, 'Doris', 1959, 'F', 3139), +(79237, 'Vanessa', 1959, 'F', 3117), +(79238, 'Patty', 1959, 'F', 3116), +(79239, 'Marcia', 1959, 'F', 3089), +(79240, 'Roberta', 1959, 'F', 3084), +(79241, 'Dana', 1959, 'F', 2971), +(79242, 'Charlotte', 1959, 'F', 2968), +(79243, 'Carrie', 1959, 'F', 2967), +(79244, 'Joy', 1959, 'F', 2881), +(79245, 'Sherri', 1959, 'F', 2872), +(79246, 'Glenda', 1959, 'F', 2839), +(79247, 'Melanie', 1959, 'F', 2827), +(79248, 'Belinda', 1959, 'F', 2820), +(79249, 'Melinda', 1959, 'F', 2811), +(79250, 'Patti', 1959, 'F', 2760), +(79251, 'Charlene', 1959, 'F', 2743), +(79252, 'Jackie', 1959, 'F', 2739), +(79253, 'Tami', 1959, 'F', 2737), +(79254, 'Toni', 1959, 'F', 2726), +(79255, 'Norma', 1959, 'F', 2725), +(79256, 'Dianne', 1959, 'F', 2702), +(79257, 'Gwendolyn', 1959, 'F', 2649), +(79258, 'Monica', 1959, 'F', 2592), +(79259, 'Jan', 1959, 'F', 2587), +(79260, 'Lois', 1959, 'F', 2484), +(79261, 'Marsha', 1959, 'F', 2470), +(79262, 'Vicky', 1959, 'F', 2445), +(79263, 'Christina', 1959, 'F', 2349), +(79264, 'Audrey', 1959, 'F', 2310), +(79265, 'Holly', 1959, 'F', 2291), +(79266, 'Veronica', 1959, 'F', 2291), +(79267, 'Shelia', 1959, 'F', 2281), +(79268, 'Yolanda', 1959, 'F', 2276), +(79269, 'Jeanette', 1959, 'F', 2243), +(79270, 'Lynne', 1959, 'F', 2233), +(79271, 'Rosemary', 1959, 'F', 2232), +(79272, 'Carmen', 1959, 'F', 2213), +(79273, 'Doreen', 1959, 'F', 2205), +(79274, 'Juanita', 1959, 'F', 2196), +(79275, 'Vivian', 1959, 'F', 2185), +(79276, 'Teri', 1959, 'F', 2155), +(79277, 'Irene', 1959, 'F', 2099), +(79278, 'Sara', 1959, 'F', 2031), +(79279, 'Lynda', 1959, 'F', 2023), +(79280, 'Kay', 1959, 'F', 2001), +(79281, 'Debora', 1959, 'F', 1961), +(79282, 'Louise', 1959, 'F', 1961), +(79283, 'Melody', 1959, 'F', 1952), +(79284, 'Marianne', 1959, 'F', 1918), +(79285, 'Heidi', 1959, 'F', 1911), +(79286, 'Shelly', 1959, 'F', 1882), +(79287, 'Tammie', 1959, 'F', 1879), +(79288, 'Jody', 1959, 'F', 1860), +(79289, 'Shelley', 1959, 'F', 1851), +(79290, 'Sheri', 1959, 'F', 1847), +(79291, 'Constance', 1959, 'F', 1840), +(79292, 'Deanna', 1959, 'F', 1829), +(79293, 'Gayle', 1959, 'F', 1829), +(79294, 'Jamie', 1959, 'F', 1822), +(79295, 'June', 1959, 'F', 1803), +(79296, 'Rosa', 1959, 'F', 1796), +(79297, 'Arlene', 1959, 'F', 1794), +(79298, 'Marlene', 1959, 'F', 1783), +(79299, 'Rachel', 1959, 'F', 1748), +(79300, 'Roxanne', 1959, 'F', 1707), +(79301, 'Darla', 1959, 'F', 1672), +(79302, 'Grace', 1959, 'F', 1660), +(79303, 'Ramona', 1959, 'F', 1648), +(79304, 'Karla', 1959, 'F', 1634), +(79305, 'Eva', 1959, 'F', 1630), +(79306, 'Annie', 1959, 'F', 1587), +(79307, 'Dianna', 1959, 'F', 1570), +(79308, 'April', 1959, 'F', 1561), +(79309, 'Lydia', 1959, 'F', 1561), +(79310, 'Crystal', 1959, 'F', 1553), +(79311, 'Lee', 1959, 'F', 1549), +(79312, 'Shari', 1959, 'F', 1522), +(79313, 'Ruby', 1959, 'F', 1500), +(79314, 'Marjorie', 1959, 'F', 1482), +(79315, 'Stacy', 1959, 'F', 1481), +(79316, 'Lillian', 1959, 'F', 1470), +(79317, 'Tanya', 1959, 'F', 1461), +(79318, 'Geraldine', 1959, 'F', 1452), +(79319, 'Claudia', 1959, 'F', 1420), +(79320, 'Dolores', 1959, 'F', 1419), +(79321, 'Carole', 1959, 'F', 1416), +(79322, 'Chris', 1959, 'F', 1408), +(79323, 'Tracey', 1959, 'F', 1408), +(79324, 'Jodi', 1959, 'F', 1397), +(79325, 'Bernadette', 1959, 'F', 1393), +(79326, 'Betsy', 1959, 'F', 1390), +(79327, 'Delores', 1959, 'F', 1379), +(79328, 'Alicia', 1959, 'F', 1368), +(79329, 'Sherrie', 1959, 'F', 1367), +(79330, 'Joni', 1959, 'F', 1359), +(79331, 'Edith', 1959, 'F', 1357), +(79332, 'Esther', 1959, 'F', 1357), +(79333, 'Lauren', 1959, 'F', 1352), +(79334, 'Nina', 1959, 'F', 1340), +(79335, 'Cheri', 1959, 'F', 1334), +(79336, 'Patsy', 1959, 'F', 1326), +(79337, 'Maryann', 1959, 'F', 1280), +(79338, 'Susie', 1959, 'F', 1277), +(79339, 'Jenny', 1959, 'F', 1274), +(79340, 'Nora', 1959, 'F', 1273), +(79341, 'Priscilla', 1959, 'F', 1272), +(79342, 'Margie', 1959, 'F', 1266), +(79343, 'Mildred', 1959, 'F', 1266), +(79344, 'Myra', 1959, 'F', 1247), +(79345, 'Natalie', 1959, 'F', 1232), +(79346, 'Erin', 1959, 'F', 1228), +(79347, 'Pauline', 1959, 'F', 1217), +(79348, 'Stacey', 1959, 'F', 1215), +(79349, 'Emily', 1959, 'F', 1212), +(79350, 'Therese', 1959, 'F', 1209), +(79351, 'Lucy', 1959, 'F', 1208), +(79352, 'Alison', 1959, 'F', 1196), +(79353, 'Mona', 1959, 'F', 1180), +(79354, 'Edna', 1959, 'F', 1179), +(79355, 'Josephine', 1959, 'F', 1174), +(79356, 'Marla', 1959, 'F', 1167), +(79357, 'Ronda', 1959, 'F', 1134), +(79358, 'Robyn', 1959, 'F', 1132), +(79359, 'Janie', 1959, 'F', 1128), +(79360, 'Jayne', 1959, 'F', 1127), +(79361, 'Allison', 1959, 'F', 1124), +(79362, 'Lynette', 1959, 'F', 1124), +(79363, 'Patrice', 1959, 'F', 1103), +(79364, 'Ginger', 1959, 'F', 1093), +(79365, 'Bobbie', 1959, 'F', 1079), +(79366, 'Tonya', 1959, 'F', 1075), +(79367, 'Marian', 1959, 'F', 1069), +(79368, 'Emma', 1959, 'F', 1058), +(79369, 'Bridget', 1959, 'F', 1052), +(79370, 'Terrie', 1959, 'F', 1051), +(79371, 'Caroline', 1959, 'F', 1046), +(79372, 'Cassandra', 1959, 'F', 1044), +(79373, 'Cecilia', 1959, 'F', 1044), +(79374, 'Yvette', 1959, 'F', 1034), +(79375, 'Christy', 1959, 'F', 1023), +(79376, 'Kristine', 1959, 'F', 1022), +(79377, 'Cathleen', 1959, 'F', 1018), +(79378, 'Georgia', 1959, 'F', 1015), +(79379, 'Janis', 1959, 'F', 1014), +(79380, 'Shannon', 1959, 'F', 1008), +(79381, 'Pat', 1959, 'F', 1002), +(79382, 'Claire', 1959, 'F', 995), +(79383, 'Jeannie', 1959, 'F', 991), +(79384, 'Candy', 1959, 'F', 989), +(79385, 'Francine', 1959, 'F', 985), +(79386, 'Clara', 1959, 'F', 982), +(79387, 'Jacquelyn', 1959, 'F', 975), +(79388, 'Vera', 1959, 'F', 971), +(79389, 'Irma', 1959, 'F', 970), +(79390, 'Rosemarie', 1959, 'F', 965), +(79391, 'Paulette', 1959, 'F', 957), +(79392, 'Miriam', 1959, 'F', 951), +(79393, 'Gwen', 1959, 'F', 942), +(79394, 'Jana', 1959, 'F', 938), +(79395, 'Jeannette', 1959, 'F', 938), +(79396, 'Marion', 1959, 'F', 920), +(79397, 'Rochelle', 1959, 'F', 917), +(79398, 'Sonia', 1959, 'F', 917), +(79399, 'Nadine', 1959, 'F', 916), +(79400, 'Heather', 1959, 'F', 912), +(79401, 'Kristi', 1959, 'F', 910), +(79402, 'Candace', 1959, 'F', 908), +(79403, 'Thelma', 1959, 'F', 898), +(79404, 'Dora', 1959, 'F', 895), +(79405, 'Kimberley', 1959, 'F', 890), +(79406, 'Lora', 1959, 'F', 890), +(79407, 'Debby', 1959, 'F', 889), +(79408, 'Beatrice', 1959, 'F', 882), +(79409, 'Antoinette', 1959, 'F', 877), +(79410, 'Laurel', 1959, 'F', 876), +(79411, 'Bertha', 1959, 'F', 874), +(79412, 'Ella', 1959, 'F', 867), +(79413, 'Eleanor', 1959, 'F', 865), +(79414, 'Jeri', 1959, 'F', 859), +(79415, 'Amanda', 1959, 'F', 858), +(79416, 'Sabrina', 1959, 'F', 856), +(79417, 'Gale', 1959, 'F', 852), +(79418, 'Bernice', 1959, 'F', 851), +(79419, 'Gladys', 1959, 'F', 846), +(79420, 'Lorrie', 1959, 'F', 842), +(79421, 'Faith', 1959, 'F', 837), +(79422, 'Felicia', 1959, 'F', 833), +(79423, 'Billie', 1959, 'F', 832), +(79424, 'Luann', 1959, 'F', 829), +(79425, 'Tamra', 1959, 'F', 824), +(79426, 'Lucinda', 1959, 'F', 823), +(79427, 'Ida', 1959, 'F', 819), +(79428, 'Rene', 1959, 'F', 818), +(79429, 'Kelley', 1959, 'F', 817), +(79430, 'Gretchen', 1959, 'F', 816), +(79431, 'Alma', 1959, 'F', 814), +(79432, 'Bonita', 1959, 'F', 814), +(79433, 'Rosie', 1959, 'F', 805), +(79434, 'Lucille', 1959, 'F', 792), +(79435, 'Florence', 1959, 'F', 791), +(79436, 'Kerry', 1959, 'F', 790), +(79437, 'Sonya', 1959, 'F', 780), +(79438, 'Janine', 1959, 'F', 774), +(79439, 'Faye', 1959, 'F', 771), +(79440, 'Iris', 1959, 'F', 769), +(79441, 'Trudy', 1959, 'F', 766), +(79442, 'Shawn', 1959, 'F', 765), +(79443, 'Kelli', 1959, 'F', 762), +(79444, 'Molly', 1959, 'F', 762), +(79445, 'Wilma', 1959, 'F', 757), +(79446, 'Kathi', 1959, 'F', 755), +(79447, 'Joanna', 1959, 'F', 752), +(79448, 'Celeste', 1959, 'F', 750), +(79449, 'Jennie', 1959, 'F', 745), +(79450, 'Leah', 1959, 'F', 740), +(79451, 'Angie', 1959, 'F', 728), +(79452, 'Lana', 1959, 'F', 723), +(79453, 'Karin', 1959, 'F', 720), +(79454, 'Kristin', 1959, 'F', 710), +(79455, 'Jeanine', 1959, 'F', 708), +(79456, 'Lou', 1959, 'F', 707), +(79457, 'Maxine', 1959, 'F', 697), +(79458, 'Adrienne', 1959, 'F', 694), +(79459, 'Lorna', 1959, 'F', 691), +(79460, 'Naomi', 1959, 'F', 682), +(79461, 'Ethel', 1959, 'F', 681), +(79462, 'Gay', 1959, 'F', 681), +(79463, 'Sonja', 1959, 'F', 677), +(79464, 'Della', 1959, 'F', 675), +(79465, 'Trina', 1959, 'F', 674), +(79466, 'Katrina', 1959, 'F', 673), +(79467, 'Leigh', 1959, 'F', 672), +(79468, 'Cecelia', 1959, 'F', 669), +(79469, 'Lillie', 1959, 'F', 664), +(79470, 'Lorie', 1959, 'F', 660), +(79471, 'Katie', 1959, 'F', 657), +(79472, 'Cherie', 1959, 'F', 649), +(79473, 'Kari', 1959, 'F', 649), +(79474, 'Rosalind', 1959, 'F', 649), +(79475, 'Robbin', 1959, 'F', 648), +(79476, 'Stella', 1959, 'F', 640), +(79477, 'Willie', 1959, 'F', 631), +(79478, 'Liz', 1959, 'F', 619), +(79479, 'Tamera', 1959, 'F', 615), +(79480, 'Marcella', 1959, 'F', 612), +(79481, 'Nanette', 1959, 'F', 612), +(79482, 'Tara', 1959, 'F', 610), +(79483, 'Madeline', 1959, 'F', 608), +(79484, 'Leticia', 1959, 'F', 602), +(79485, 'Dena', 1959, 'F', 597), +(79486, 'Leanne', 1959, 'F', 597), +(79487, 'Kellie', 1959, 'F', 596), +(79488, 'Kris', 1959, 'F', 590), +(79489, 'Hazel', 1959, 'F', 584), +(79490, 'Jessie', 1959, 'F', 584), +(79491, 'Ana', 1959, 'F', 577), +(79492, 'Susanne', 1959, 'F', 575), +(79493, 'Jolene', 1959, 'F', 573), +(79494, 'Hope', 1959, 'F', 563), +(79495, 'Mindy', 1959, 'F', 560), +(79496, 'Marguerite', 1959, 'F', 557), +(79497, 'Jerri', 1959, 'F', 553), +(79498, 'Velma', 1959, 'F', 552), +(79499, 'Rosalie', 1959, 'F', 545), +(79500, 'Camille', 1959, 'F', 544), +(79501, 'Olga', 1959, 'F', 544), +(79502, 'Kristen', 1959, 'F', 542), +(79503, 'Janette', 1959, 'F', 538), +(79504, 'Lauri', 1959, 'F', 538), +(79505, 'Laverne', 1959, 'F', 537), +(79506, 'Celia', 1959, 'F', 535), +(79507, 'Lesa', 1959, 'F', 533), +(79508, 'Margarita', 1959, 'F', 532), +(79509, 'Dale', 1959, 'F', 528), +(79510, 'Ladonna', 1959, 'F', 527), +(79511, 'Valarie', 1959, 'F', 527), +(79512, 'Jessica', 1959, 'F', 523), +(79513, 'Kathie', 1959, 'F', 518), +(79514, 'Lena', 1959, 'F', 515), +(79515, 'Harriet', 1959, 'F', 514), +(79516, 'Tammi', 1959, 'F', 513), +(79517, 'Marcy', 1959, 'F', 512), +(79518, 'Verna', 1959, 'F', 511), +(79519, 'Dee', 1959, 'F', 508), +(79520, 'Lorri', 1959, 'F', 507), +(79521, 'Polly', 1959, 'F', 506), +(79522, 'Noreen', 1959, 'F', 503), +(79523, 'Leann', 1959, 'F', 502), +(79524, 'Amelia', 1959, 'F', 501), +(79525, 'Desiree', 1959, 'F', 499), +(79526, 'Rena', 1959, 'F', 495), +(79527, 'Jeannine', 1959, 'F', 494), +(79528, 'Jodie', 1959, 'F', 492), +(79529, 'Alisa', 1959, 'F', 491), +(79530, 'Dixie', 1959, 'F', 491), +(79531, 'Kristy', 1959, 'F', 491), +(79532, 'Olivia', 1959, 'F', 491), +(79533, 'Lenora', 1959, 'F', 487), +(79534, 'Delia', 1959, 'F', 486), +(79535, 'Christie', 1959, 'F', 484), +(79536, 'Lola', 1959, 'F', 484), +(79537, 'Leona', 1959, 'F', 482), +(79538, 'Margo', 1959, 'F', 478), +(79539, 'Corinne', 1959, 'F', 475), +(79540, 'Colette', 1959, 'F', 472), +(79541, 'Cindi', 1959, 'F', 470), +(79542, 'Hilda', 1959, 'F', 468), +(79543, 'Suzette', 1959, 'F', 464), +(79544, 'Barb', 1959, 'F', 463), +(79545, 'Daisy', 1959, 'F', 462), +(79546, 'Rosanne', 1959, 'F', 462), +(79547, 'Sondra', 1959, 'F', 462), +(79548, 'Freda', 1959, 'F', 459), +(79549, 'Geneva', 1959, 'F', 456), +(79550, 'Helene', 1959, 'F', 455), +(79551, 'Mitzi', 1959, 'F', 455), +(79552, 'Sheree', 1959, 'F', 454), +(79553, 'Cora', 1959, 'F', 453), +(79554, 'Elisa', 1959, 'F', 450), +(79555, 'Monique', 1959, 'F', 444), +(79556, 'Guadalupe', 1959, 'F', 440), +(79557, 'Roseann', 1959, 'F', 440), +(79558, 'Deloris', 1959, 'F', 436), +(79559, 'Angelia', 1959, 'F', 435), +(79560, 'Ingrid', 1959, 'F', 435), +(79561, 'Johnnie', 1959, 'F', 435), +(79562, 'Debi', 1959, 'F', 429), +(79563, 'Robbie', 1959, 'F', 429), +(79564, 'Mattie', 1959, 'F', 426), +(79565, 'Agnes', 1959, 'F', 425), +(79566, 'Judi', 1959, 'F', 425), +(79567, 'Minnie', 1959, 'F', 425), +(79568, 'Elise', 1959, 'F', 424), +(79569, 'Coleen', 1959, 'F', 423), +(79570, 'Gayla', 1959, 'F', 421), +(79571, 'Luanne', 1959, 'F', 420), +(79572, 'Jeanie', 1959, 'F', 417), +(79573, 'Lea', 1959, 'F', 417), +(79574, 'Lynnette', 1959, 'F', 414), +(79575, 'Deana', 1959, 'F', 413), +(79576, 'Darcy', 1959, 'F', 412), +(79577, 'Ernestine', 1959, 'F', 412), +(79578, 'Marta', 1959, 'F', 409), +(79579, 'Viola', 1959, 'F', 408), +(79580, 'Myrna', 1959, 'F', 403), +(79581, 'Elsie', 1959, 'F', 402), +(79582, 'Danette', 1959, 'F', 401), +(79583, 'Bobbi', 1959, 'F', 398), +(79584, 'Elena', 1959, 'F', 397), +(79585, 'Kimberlee', 1959, 'F', 396), +(79586, 'Benita', 1959, 'F', 394), +(79587, 'Kerri', 1959, 'F', 394), +(79588, 'Janelle', 1959, 'F', 393), +(79589, 'Bessie', 1959, 'F', 392), +(79590, 'Isabel', 1959, 'F', 391), +(79591, 'Tamela', 1959, 'F', 390), +(79592, 'Malinda', 1959, 'F', 389), +(79593, 'Penelope', 1959, 'F', 388), +(79594, 'Tracie', 1959, 'F', 388), +(79595, 'Traci', 1959, 'F', 387), +(79596, 'Candice', 1959, 'F', 384), +(79597, 'Eunice', 1959, 'F', 384), +(79598, 'Nellie', 1959, 'F', 384), +(79599, 'Deirdre', 1959, 'F', 379), +(79600, 'Marybeth', 1959, 'F', 377), +(79601, 'Diann', 1959, 'F', 375), +(79602, 'Denice', 1959, 'F', 372), +(79603, 'Maryellen', 1959, 'F', 372), +(79604, 'Claudette', 1959, 'F', 370), +(79605, 'Alberta', 1959, 'F', 369), +(79606, 'Flora', 1959, 'F', 369), +(79607, 'Mae', 1959, 'F', 369), +(79608, 'Sandi', 1959, 'F', 369), +(79609, 'Julianne', 1959, 'F', 365), +(79610, 'Katharine', 1959, 'F', 365), +(79611, 'Ada', 1959, 'F', 362), +(79612, 'Christi', 1959, 'F', 360), +(79613, 'Megan', 1959, 'F', 358), +(79614, 'Kristina', 1959, 'F', 356), +(79615, 'Shelby', 1959, 'F', 356), +(79616, 'Randi', 1959, 'F', 349), +(79617, 'Reba', 1959, 'F', 349), +(79618, 'Maggie', 1959, 'F', 348), +(79619, 'Greta', 1959, 'F', 347), +(79620, 'Pearl', 1959, 'F', 347), +(79621, 'Saundra', 1959, 'F', 347), +(79622, 'Lorene', 1959, 'F', 344), +(79623, 'Dona', 1959, 'F', 343), +(79624, 'Mari', 1959, 'F', 342), +(79625, 'Maryanne', 1959, 'F', 340), +(79626, 'Ava', 1959, 'F', 336), +(79627, 'Sallie', 1959, 'F', 335), +(79628, 'Rosalyn', 1959, 'F', 334), +(79629, 'Carlene', 1959, 'F', 332), +(79630, 'Suzan', 1959, 'F', 331), +(79631, 'Deanne', 1959, 'F', 330), +(79632, 'Bernadine', 1959, 'F', 328), +(79633, 'Geri', 1959, 'F', 328), +(79634, 'Roslyn', 1959, 'F', 328), +(79635, 'Nita', 1959, 'F', 327), +(79636, 'Violet', 1959, 'F', 327), +(79637, 'Elisabeth', 1959, 'F', 326), +(79638, 'Gracie', 1959, 'F', 325), +(79639, 'Laureen', 1959, 'F', 324), +(79640, 'Dina', 1959, 'F', 323), +(79641, 'Frankie', 1959, 'F', 322), +(79642, 'Geralyn', 1959, 'F', 320), +(79643, 'Daphne', 1959, 'F', 319), +(79644, 'Charmaine', 1959, 'F', 318), +(79645, 'Ivy', 1959, 'F', 317), +(79646, 'Eugenia', 1959, 'F', 314), +(79647, 'Clare', 1959, 'F', 313), +(79648, 'Kitty', 1959, 'F', 312), +(79649, 'Maura', 1959, 'F', 312), +(79650, 'Pamala', 1959, 'F', 312), +(79651, 'Roxann', 1959, 'F', 312), +(79652, 'Renita', 1959, 'F', 311), +(79653, 'Caryn', 1959, 'F', 308), +(79654, 'Tonia', 1959, 'F', 307), +(79655, 'Vickey', 1959, 'F', 306), +(79656, 'Lesley', 1959, 'F', 305), +(79657, 'Kristie', 1959, 'F', 303), +(79658, 'Lila', 1959, 'F', 303), +(79659, 'Krista', 1959, 'F', 302), +(79660, 'Rosetta', 1959, 'F', 302), +(79661, 'Melodie', 1959, 'F', 301), +(79662, 'Adele', 1959, 'F', 300), +(79663, 'Caren', 1959, 'F', 299), +(79664, 'Dinah', 1959, 'F', 298), +(79665, 'Deena', 1959, 'F', 297), +(79666, 'Glenna', 1959, 'F', 297), +(79667, 'Danita', 1959, 'F', 296), +(79668, 'James', 1959, 'F', 296), +(79669, 'Venus', 1959, 'F', 295), +(79670, 'Bridgette', 1959, 'F', 294), +(79671, 'Dorothea', 1959, 'F', 294), +(79672, 'Henrietta', 1959, 'F', 294), +(79673, 'Alfreda', 1959, 'F', 293), +(79674, 'Lenore', 1959, 'F', 291), +(79675, 'Rae', 1959, 'F', 291), +(79676, 'Tamie', 1959, 'F', 291), +(79677, 'Hattie', 1959, 'F', 289), +(79678, 'Tena', 1959, 'F', 289), +(79679, 'Eve', 1959, 'F', 288), +(79680, 'Sharron', 1959, 'F', 288), +(79681, 'Ruthie', 1959, 'F', 287), +(79682, 'Annmarie', 1959, 'F', 286), +(79683, 'Pattie', 1959, 'F', 286), +(79684, 'Merry', 1959, 'F', 285), +(79685, 'Antonia', 1959, 'F', 284), +(79686, 'Michael', 1959, 'F', 284), +(79687, 'Susanna', 1959, 'F', 284), +(79688, 'Marcie', 1959, 'F', 283), +(79689, 'Brigitte', 1959, 'F', 281), +(79690, 'Elsa', 1959, 'F', 279), +(79691, 'Renae', 1959, 'F', 279), +(79692, 'Blanca', 1959, 'F', 278), +(79693, 'Johanna', 1959, 'F', 278), +(79694, 'Deann', 1959, 'F', 276), +(79695, 'Estella', 1959, 'F', 276), +(79696, 'Josie', 1959, 'F', 276), +(79697, 'Georgette', 1959, 'F', 275), +(79698, 'Sophia', 1959, 'F', 275), +(79699, 'Rachelle', 1959, 'F', 274), +(79700, 'Cathryn', 1959, 'F', 272), +(79701, 'Marci', 1959, 'F', 271), +(79702, 'Fran', 1959, 'F', 270), +(79703, 'Leisa', 1959, 'F', 270), +(79704, 'Erma', 1959, 'F', 269), +(79705, 'Lupe', 1959, 'F', 269), +(79706, 'Felecia', 1959, 'F', 268), +(79707, 'Tricia', 1959, 'F', 268), +(79708, 'Ilene', 1959, 'F', 267), +(79709, 'Lucia', 1959, 'F', 266), +(79710, 'Melba', 1959, 'F', 265), +(79711, 'Kaye', 1959, 'F', 262), +(79712, 'Meredith', 1959, 'F', 261), +(79713, 'Fay', 1959, 'F', 260), +(79714, 'Kendra', 1959, 'F', 260), +(79715, 'Mamie', 1959, 'F', 260), +(79716, 'Gaye', 1959, 'F', 259), +(79717, 'Rhoda', 1959, 'F', 259), +(79718, 'Terese', 1959, 'F', 258), +(79719, 'Dorene', 1959, 'F', 257), +(79720, 'Patrica', 1959, 'F', 257), +(79721, 'Roxane', 1959, 'F', 257), +(79722, 'Stacie', 1959, 'F', 256), +(79723, 'Genevieve', 1959, 'F', 255), +(79724, 'Karol', 1959, 'F', 253), +(79725, 'Delphine', 1959, 'F', 252), +(79726, 'Fannie', 1959, 'F', 252), +(79727, 'Nola', 1959, 'F', 252), +(79728, 'Gigi', 1959, 'F', 251), +(79729, 'Luz', 1959, 'F', 249), +(79730, 'Helena', 1959, 'F', 248), +(79731, 'Marina', 1959, 'F', 248), +(79732, 'Teena', 1959, 'F', 247), +(79733, 'Juli', 1959, 'F', 245), +(79734, 'Valorie', 1959, 'F', 245), +(79735, 'Allyson', 1959, 'F', 244), +(79736, 'Vikki', 1959, 'F', 244), +(79737, 'Debbi', 1959, 'F', 243), +(79738, 'Bambi', 1959, 'F', 242), +(79739, 'Silvia', 1959, 'F', 242), +(79740, 'Angelina', 1959, 'F', 241), +(79741, 'Jocelyn', 1959, 'F', 241), +(79742, 'Lourdes', 1959, 'F', 241), +(79743, 'Marisa', 1959, 'F', 241), +(79744, 'Twila', 1959, 'F', 241), +(79745, 'Arleen', 1959, 'F', 239), +(79746, 'Inez', 1959, 'F', 239), +(79747, 'Libby', 1959, 'F', 239), +(79748, 'David', 1959, 'F', 238), +(79749, 'Robert', 1959, 'F', 237), +(79750, 'Deb', 1959, 'F', 236), +(79751, 'Deidre', 1959, 'F', 236), +(79752, 'Lula', 1959, 'F', 236), +(79753, 'Rosalinda', 1959, 'F', 234), +(79754, 'Erica', 1959, 'F', 233), +(79755, 'Ginny', 1959, 'F', 233), +(79756, 'Jewel', 1959, 'F', 233), +(79757, 'John', 1959, 'F', 231), +(79758, 'Loraine', 1959, 'F', 231), +(79759, 'Bettie', 1959, 'F', 230), +(79760, 'Cyndi', 1959, 'F', 230), +(79761, 'Karyn', 1959, 'F', 230), +(79762, 'Leeann', 1959, 'F', 230), +(79763, 'Shauna', 1959, 'F', 226), +(79764, 'Bonny', 1959, 'F', 225), +(79765, 'Graciela', 1959, 'F', 224), +(79766, 'Kyle', 1959, 'F', 224), +(79767, 'Migdalia', 1959, 'F', 224), +(79768, 'Marylou', 1959, 'F', 222), +(79769, 'Nelda', 1959, 'F', 222), +(79770, 'Gerri', 1959, 'F', 221), +(79771, 'Kathrine', 1959, 'F', 221), +(79772, 'Gertrude', 1959, 'F', 220), +(79773, 'Justine', 1959, 'F', 220), +(79774, 'Eloise', 1959, 'F', 218), +(79775, 'Janell', 1959, 'F', 218), +(79776, 'Lorena', 1959, 'F', 218), +(79777, 'Althea', 1959, 'F', 217), +(79778, 'Angel', 1959, 'F', 217), +(79779, 'Carmela', 1959, 'F', 217), +(79780, 'Aileen', 1959, 'F', 216), +(79781, 'Avis', 1959, 'F', 216), +(79782, 'Cherry', 1959, 'F', 216), +(79783, 'Cathie', 1959, 'F', 214), +(79784, 'Selena', 1959, 'F', 214), +(79785, 'Marva', 1959, 'F', 213), +(79786, 'Sharlene', 1959, 'F', 213), +(79787, 'Corrine', 1959, 'F', 212), +(79788, 'Teressa', 1959, 'F', 212), +(79789, 'Debrah', 1959, 'F', 210), +(79790, 'Danielle', 1959, 'F', 209), +(79791, 'Keri', 1959, 'F', 209), +(79792, 'Amber', 1959, 'F', 208), +(79793, 'Etta', 1959, 'F', 208), +(79794, 'Jenifer', 1959, 'F', 208), +(79795, 'Abigail', 1959, 'F', 206), +(79796, 'Dolly', 1959, 'F', 206), +(79797, 'Fern', 1959, 'F', 205), +(79798, 'Lela', 1959, 'F', 205), +(79799, 'Raquel', 1959, 'F', 205), +(79800, 'Nicole', 1959, 'F', 204), +(79801, 'Valeria', 1959, 'F', 204), +(79802, 'Letha', 1959, 'F', 202), +(79803, 'Rebekah', 1959, 'F', 202), +(79804, 'Cara', 1959, 'F', 200), +(79805, 'Lyn', 1959, 'F', 200), +(79806, 'Bethany', 1959, 'F', 199), +(79807, 'Maryjo', 1959, 'F', 198), +(79808, 'Millie', 1959, 'F', 198), +(79809, 'Pennie', 1959, 'F', 198), +(79810, 'Gena', 1959, 'F', 197), +(79811, 'Antionette', 1959, 'F', 196), +(79812, 'Elva', 1959, 'F', 196), +(79813, 'Maritza', 1959, 'F', 196), +(79814, 'Meg', 1959, 'F', 196), +(79815, 'Janna', 1959, 'F', 195), +(79816, 'Tana', 1959, 'F', 195), +(79817, 'Jami', 1959, 'F', 194), +(79818, 'Kirsten', 1959, 'F', 194), +(79819, 'Louann', 1959, 'F', 194), +(79820, 'Mariann', 1959, 'F', 194), +(79821, 'Marilynn', 1959, 'F', 194), +(79822, 'Alexandra', 1959, 'F', 193), +(79823, 'Marietta', 1959, 'F', 193), +(79824, 'Debbra', 1959, 'F', 192), +(79825, 'Elvira', 1959, 'F', 192), +(79826, 'Jerry', 1959, 'F', 192), +(79827, 'Lavonne', 1959, 'F', 192), +(79828, 'Leila', 1959, 'F', 192), +(79829, 'Winifred', 1959, 'F', 192), +(79830, 'Kandy', 1959, 'F', 191), +(79831, 'Bette', 1959, 'F', 190), +(79832, 'Cheryle', 1959, 'F', 190), +(79833, 'Earnestine', 1959, 'F', 190), +(79834, 'Nona', 1959, 'F', 190), +(79835, 'Vonda', 1959, 'F', 190), +(79836, 'Danna', 1959, 'F', 189), +(79837, 'Leesa', 1959, 'F', 189), +(79838, 'Nikki', 1959, 'F', 189), +(79839, 'Susana', 1959, 'F', 189), +(79840, 'Randy', 1959, 'F', 188), +(79841, 'Roxie', 1959, 'F', 188), +(79842, 'Shawna', 1959, 'F', 187), +(79843, 'Sherrill', 1959, 'F', 187), +(79844, 'Blanche', 1959, 'F', 186), +(79845, 'Annemarie', 1959, 'F', 185), +(79846, 'Darleen', 1959, 'F', 185), +(79847, 'Aida', 1959, 'F', 184), +(79848, 'Edwina', 1959, 'F', 184), +(79849, 'Joanie', 1959, 'F', 183), +(79850, 'Myrtle', 1959, 'F', 183), +(79851, 'Christa', 1959, 'F', 182), +(79852, 'Francis', 1959, 'F', 182), +(79853, 'Chandra', 1959, 'F', 181), +(79854, 'Andra', 1959, 'F', 180), +(79855, 'Katy', 1959, 'F', 180), +(79856, 'Nan', 1959, 'F', 180), +(79857, 'Roxanna', 1959, 'F', 180), +(79858, 'Minerva', 1959, 'F', 179), +(79859, 'Clarissa', 1959, 'F', 178), +(79860, 'Earlene', 1959, 'F', 178), +(79861, 'Lu', 1959, 'F', 178), +(79862, 'Maribeth', 1959, 'F', 178), +(79863, 'Nannette', 1959, 'F', 178), +(79864, 'Shellie', 1959, 'F', 178), +(79865, 'Abby', 1959, 'F', 177), +(79866, 'Lawanda', 1959, 'F', 177), +(79867, 'Valencia', 1959, 'F', 177), +(79868, 'Mercedes', 1959, 'F', 176), +(79869, 'Taryn', 1959, 'F', 176), +(79870, 'Kate', 1959, 'F', 175), +(79871, 'Madonna', 1959, 'F', 174), +(79872, 'Cecile', 1959, 'F', 172), +(79873, 'Cornelia', 1959, 'F', 172), +(79874, 'Ina', 1959, 'F', 172), +(79875, 'Madelyn', 1959, 'F', 172), +(79876, 'Ora', 1959, 'F', 172), +(79877, 'Venita', 1959, 'F', 172), +(79878, 'Dottie', 1959, 'F', 171), +(79879, 'Erika', 1959, 'F', 171), +(79880, 'Karrie', 1959, 'F', 170), +(79881, 'Dori', 1959, 'F', 169), +(79882, 'Juana', 1959, 'F', 169), +(79883, 'Alexis', 1959, 'F', 168), +(79884, 'Beverley', 1959, 'F', 168), +(79885, 'Clarice', 1959, 'F', 168), +(79886, 'Dawna', 1959, 'F', 168), +(79887, 'Milagros', 1959, 'F', 168), +(79888, 'Starla', 1959, 'F', 168), +(79889, 'Dara', 1959, 'F', 166), +(79890, 'Mollie', 1959, 'F', 166), +(79891, 'Cathrine', 1959, 'F', 165), +(79892, 'Dorinda', 1959, 'F', 165), +(79893, 'Georgina', 1959, 'F', 165), +(79894, 'Charla', 1959, 'F', 164), +(79895, 'Dayna', 1959, 'F', 164), +(79896, 'Donita', 1959, 'F', 164), +(79897, 'Karon', 1959, 'F', 164), +(79898, 'Lavern', 1959, 'F', 164), +(79899, 'Muriel', 1959, 'F', 163), +(79900, 'Serena', 1959, 'F', 163), +(79901, 'Doretha', 1959, 'F', 162), +(79902, 'Freida', 1959, 'F', 162), +(79903, 'Mable', 1959, 'F', 162), +(79904, 'Roseanne', 1959, 'F', 162), +(79905, 'Suzy', 1959, 'F', 161), +(79906, 'Essie', 1959, 'F', 160), +(79907, 'Tommie', 1959, 'F', 160), +(79908, 'Bridgett', 1959, 'F', 159), +(79909, 'Cari', 1959, 'F', 159), +(79910, 'Carleen', 1959, 'F', 159), +(79911, 'Sherie', 1959, 'F', 159), +(79912, 'Cathi', 1959, 'F', 158), +(79913, 'Cherri', 1959, 'F', 158), +(79914, 'Collette', 1959, 'F', 158), +(79915, 'Juliana', 1959, 'F', 158), +(79916, 'Lise', 1959, 'F', 158), +(79917, 'Addie', 1959, 'F', 157), +(79918, 'Aurora', 1959, 'F', 157), +(79919, 'Rosanna', 1959, 'F', 157), +(79920, 'William', 1959, 'F', 157), +(79921, 'Sharla', 1959, 'F', 156), +(79922, 'Magdalena', 1959, 'F', 155), +(79923, 'Joe', 1959, 'F', 154), +(79924, 'Nanci', 1959, 'F', 154), +(79925, 'Delois', 1959, 'F', 153), +(79926, 'Francesca', 1959, 'F', 153), +(79927, 'Juliet', 1959, 'F', 153), +(79928, 'Liza', 1959, 'F', 153), +(79929, 'Wendi', 1959, 'F', 153), +(79930, 'Karan', 1959, 'F', 152), +(79931, 'Rosario', 1959, 'F', 152), +(79932, 'Estelle', 1959, 'F', 151), +(79933, 'Marilee', 1959, 'F', 151), +(79934, 'Annamarie', 1959, 'F', 150), +(79935, 'Charles', 1959, 'F', 150), +(79936, 'Jacquline', 1959, 'F', 148), +(79937, 'Jimmie', 1959, 'F', 148), +(79938, 'Letitia', 1959, 'F', 148), +(79939, 'Selina', 1959, 'F', 148), +(79940, 'Ester', 1959, 'F', 147), +(79941, 'Cinda', 1959, 'F', 146), +(79942, 'Hilary', 1959, 'F', 146), +(79943, 'Sybil', 1959, 'F', 146), +(79944, 'Unknown', 1959, 'F', 146), +(79945, 'Aimee', 1959, 'F', 145), +(79946, 'Caryl', 1959, 'F', 145), +(79947, 'Mandy', 1959, 'F', 145), +(79948, 'Nettie', 1959, 'F', 145), +(79949, 'Tori', 1959, 'F', 145), +(79950, 'Esperanza', 1959, 'F', 144), +(79951, 'Harriett', 1959, 'F', 144), +(79952, 'Lilly', 1959, 'F', 144), +(79953, 'Tresa', 1959, 'F', 144), +(79954, 'Annetta', 1959, 'F', 143), +(79955, 'Louisa', 1959, 'F', 143), +(79956, 'Ollie', 1959, 'F', 143), +(79957, 'Pearlie', 1959, 'F', 143), +(79958, 'Sadie', 1959, 'F', 143), +(79959, 'Zelda', 1959, 'F', 143), +(79960, 'Angelita', 1959, 'F', 142), +(79961, 'Miranda', 1959, 'F', 142), +(79962, 'Twyla', 1959, 'F', 142), +(79963, 'Barbra', 1959, 'F', 141), +(79964, 'Iva', 1959, 'F', 141), +(79965, 'Jeanna', 1959, 'F', 141), +(79966, 'Katheryn', 1959, 'F', 141), +(79967, 'Martina', 1959, 'F', 141), +(79968, 'May', 1959, 'F', 141), +(79969, 'Earline', 1959, 'F', 140), +(79970, 'Edie', 1959, 'F', 140), +(79971, 'Gilda', 1959, 'F', 140), +(79972, 'Mabel', 1959, 'F', 140), +(79973, 'Merri', 1959, 'F', 140), +(79974, 'Queen', 1959, 'F', 140), +(79975, 'Rachael', 1959, 'F', 140), +(79976, 'Cassie', 1959, 'F', 139), +(79977, 'Gabrielle', 1959, 'F', 139), +(79978, 'Leanna', 1959, 'F', 139), +(79979, 'Willa', 1959, 'F', 139), +(79980, 'Camilla', 1959, 'F', 138), +(79981, 'Daria', 1959, 'F', 138), +(79982, 'Lindy', 1959, 'F', 138), +(79983, 'Mara', 1959, 'F', 138), +(79984, 'Carey', 1959, 'F', 137), +(79985, 'Esmeralda', 1959, 'F', 137), +(79986, 'Jannie', 1959, 'F', 137), +(79987, 'Lizabeth', 1959, 'F', 137), +(79988, 'Reva', 1959, 'F', 137), +(79989, 'Hannah', 1959, 'F', 136), +(79990, 'Mavis', 1959, 'F', 136), +(79991, 'Sydney', 1959, 'F', 136), +(79992, 'Alesia', 1959, 'F', 135), +(79993, 'Dian', 1959, 'F', 135), +(79994, 'Lottie', 1959, 'F', 135), +(79995, 'Mimi', 1959, 'F', 135), +(79996, 'Neva', 1959, 'F', 135), +(79997, 'Eula', 1959, 'F', 134), +(79998, 'Joellen', 1959, 'F', 134), +(79999, 'Noemi', 1959, 'F', 134), +(80000, 'Treva', 1959, 'F', 134), +(80001, 'Celestine', 1959, 'F', 133), +(80002, 'Jacque', 1959, 'F', 133), +(80003, 'Lucretia', 1959, 'F', 133), +(80004, 'Missy', 1959, 'F', 133), +(80005, 'Peggie', 1959, 'F', 133), +(80006, 'Rhea', 1959, 'F', 133), +(80007, 'Velda', 1959, 'F', 133), +(80008, 'Ronna', 1959, 'F', 132), +(80009, 'Suzanna', 1959, 'F', 132), +(80010, 'Ivette', 1959, 'F', 131), +(80011, 'Jewell', 1959, 'F', 131), +(80012, 'Paige', 1959, 'F', 131), +(80013, 'Richard', 1959, 'F', 131), +(80014, 'Shiela', 1959, 'F', 131), +(80015, 'Carmella', 1959, 'F', 130), +(80016, 'Dorthy', 1959, 'F', 130), +(80017, 'Catharine', 1959, 'F', 129), +(80018, 'Beckie', 1959, 'F', 128), +(80019, 'Bettye', 1959, 'F', 128), +(80020, 'Jaime', 1959, 'F', 128), +(80021, 'Kerrie', 1959, 'F', 128), +(80022, 'Lolita', 1959, 'F', 128), +(80023, 'Mark', 1959, 'F', 128), +(80024, 'Renea', 1959, 'F', 128), +(80025, 'Bev', 1959, 'F', 127), +(80026, 'Cary', 1959, 'F', 127), +(80027, 'Gerry', 1959, 'F', 127), +(80028, 'Lily', 1959, 'F', 127), +(80029, 'Rowena', 1959, 'F', 127), +(80030, 'Madeleine', 1959, 'F', 126), +(80031, 'Pamella', 1959, 'F', 126), +(80032, 'Thomas', 1959, 'F', 126), +(80033, 'Zoe', 1959, 'F', 126), +(80034, 'Bobby', 1959, 'F', 125), +(80035, 'Candi', 1959, 'F', 125), +(80036, 'Evangeline', 1959, 'F', 125), +(80037, 'Janeen', 1959, 'F', 125), +(80038, 'Retha', 1959, 'F', 125), +(80039, 'Angelica', 1959, 'F', 124), +(80040, 'Cristina', 1959, 'F', 124), +(80041, 'Liane', 1959, 'F', 124), +(80042, 'Melva', 1959, 'F', 124), +(80043, 'Romona', 1959, 'F', 124), +(80044, 'Athena', 1959, 'F', 123), +(80045, 'Shelli', 1959, 'F', 123), +(80046, 'Carmel', 1959, 'F', 122), +(80047, 'Joleen', 1959, 'F', 122), +(80048, 'Josefina', 1959, 'F', 122), +(80049, 'Lesia', 1959, 'F', 122), +(80050, 'Lizzie', 1959, 'F', 122), +(80051, 'Matilda', 1959, 'F', 122), +(80052, 'Mickey', 1959, 'F', 122), +(80053, 'Ronnie', 1959, 'F', 122), +(80054, 'Sheena', 1959, 'F', 122), +(80055, 'Trena', 1959, 'F', 122), +(80056, 'Elissa', 1959, 'F', 121), +(80057, 'Penni', 1959, 'F', 121), +(80058, 'Ruthann', 1959, 'F', 121), +(80059, 'Tonja', 1959, 'F', 121), +(80060, 'Gisele', 1959, 'F', 120), +(80061, 'Juliann', 1959, 'F', 120), +(80062, 'Rosita', 1959, 'F', 120), +(80063, 'Anastasia', 1959, 'F', 119), +(80064, 'Keely', 1959, 'F', 119), +(80065, 'Sherryl', 1959, 'F', 119), +(80066, 'Ursula', 1959, 'F', 119), +(80067, 'Veda', 1959, 'F', 119), +(80068, 'Callie', 1959, 'F', 118), +(80069, 'Maryjane', 1959, 'F', 118), +(80070, 'Melisa', 1959, 'F', 118), +(80071, 'Opal', 1959, 'F', 118), +(80072, 'Tari', 1959, 'F', 118), +(80073, 'Beulah', 1959, 'F', 117), +(80074, 'Consuelo', 1959, 'F', 117), +(80075, 'Germaine', 1959, 'F', 117), +(80076, 'Laurene', 1959, 'F', 117), +(80077, 'Merrie', 1959, 'F', 117), +(80078, 'Vilma', 1959, 'F', 117), +(80079, 'Alyce', 1959, 'F', 116), +(80080, 'Jacki', 1959, 'F', 116), +(80081, 'Kayla', 1959, 'F', 116), +(80082, 'Margot', 1959, 'F', 116), +(80083, 'Phoebe', 1959, 'F', 116), +(80084, 'Portia', 1959, 'F', 116), +(80085, 'Deedee', 1959, 'F', 115), +(80086, 'Marty', 1959, 'F', 115), +(80087, 'Shirlene', 1959, 'F', 115), +(80088, 'Starr', 1959, 'F', 115), +(80089, 'Cheryll', 1959, 'F', 114), +(80090, 'Effie', 1959, 'F', 114), +(80091, 'Juliette', 1959, 'F', 114), +(80092, 'Leola', 1959, 'F', 113), +(80093, 'Reta', 1959, 'F', 113), +(80094, 'Samantha', 1959, 'F', 113), +(80095, 'Suzie', 1959, 'F', 113), +(80096, 'Bettina', 1959, 'F', 112), +(80097, 'Carmelita', 1959, 'F', 112), +(80098, 'Drema', 1959, 'F', 112), +(80099, 'Leta', 1959, 'F', 112), +(80100, 'Delilah', 1959, 'F', 111), +(80101, 'Kara', 1959, 'F', 111), +(80102, 'Kenneth', 1959, 'F', 111), +(80103, 'Marti', 1959, 'F', 111), +(80104, 'Caron', 1959, 'F', 110), +(80105, 'Eddie', 1959, 'F', 110), +(80106, 'Lorelei', 1959, 'F', 110), +(80107, 'Lorinda', 1959, 'F', 110), +(80108, 'Rona', 1959, 'F', 110), +(80109, 'Adrian', 1959, 'F', 109), +(80110, 'Carlotta', 1959, 'F', 109), +(80111, 'Fawn', 1959, 'F', 109), +(80112, 'Fonda', 1959, 'F', 109), +(80113, 'Lauretta', 1959, 'F', 109), +(80114, 'Socorro', 1959, 'F', 109), +(80115, 'Tambra', 1959, 'F', 109), +(80116, 'Theodora', 1959, 'F', 109), +(80117, 'Janel', 1959, 'F', 108), +(80118, 'Meryl', 1959, 'F', 108), +(80119, 'Ola', 1959, 'F', 108), +(80120, 'Vernita', 1959, 'F', 108), +(80121, 'Beatriz', 1959, 'F', 107), +(80122, 'Frieda', 1959, 'F', 107), +(80123, 'Isabelle', 1959, 'F', 107), +(80124, 'Jerrie', 1959, 'F', 107), +(80125, 'Loren', 1959, 'F', 107), +(80126, 'Sharyn', 1959, 'F', 107), +(80127, 'Thea', 1959, 'F', 107), +(80128, 'Daryl', 1959, 'F', 106), +(80129, 'Jeana', 1959, 'F', 106), +(80130, 'Lanette', 1959, 'F', 106), +(80131, 'Millicent', 1959, 'F', 106), +(80132, 'Renata', 1959, 'F', 106), +(80133, 'Adela', 1959, 'F', 105), +(80134, 'Becki', 1959, 'F', 105), +(80135, 'Corine', 1959, 'F', 105), +(80136, 'George', 1959, 'F', 105), +(80137, 'Jacklyn', 1959, 'F', 105), +(80138, 'Moira', 1959, 'F', 105), +(80139, 'Ophelia', 1959, 'F', 105), +(80140, 'Petra', 1959, 'F', 105), +(80141, 'Risa', 1959, 'F', 105), +(80142, 'Simone', 1959, 'F', 105), +(80143, 'Tania', 1959, 'F', 105), +(80144, 'Abbie', 1959, 'F', 104), +(80145, 'Alyson', 1959, 'F', 104), +(80146, 'Elnora', 1959, 'F', 104), +(80147, 'Jerilyn', 1959, 'F', 104), +(80148, 'Karlene', 1959, 'F', 104), +(80149, 'Joetta', 1959, 'F', 103), +(80150, 'Adriana', 1959, 'F', 102), +(80151, 'Brigette', 1959, 'F', 102), +(80152, 'Latanya', 1959, 'F', 102), +(80153, 'Laure', 1959, 'F', 102), +(80154, 'Lona', 1959, 'F', 102), +(80155, 'Sherilyn', 1959, 'F', 102), +(80156, 'Torey', 1959, 'F', 102), +(80157, 'Vonnie', 1959, 'F', 102), +(80158, 'Adrianne', 1959, 'F', 101), +(80159, 'Carolina', 1959, 'F', 101), +(80160, 'Charleen', 1959, 'F', 101), +(80161, 'Cherrie', 1959, 'F', 101), +(80162, 'Deidra', 1959, 'F', 101), +(80163, 'Evonne', 1959, 'F', 101), +(80164, 'Leslee', 1959, 'F', 101), +(80165, 'Nilda', 1959, 'F', 101), +(80166, 'Alana', 1959, 'F', 100), +(80167, 'Gaylene', 1959, 'F', 100), +(80168, 'Goldie', 1959, 'F', 100), +(80169, 'Kevin', 1959, 'F', 100), +(80170, 'Lissa', 1959, 'F', 100), +(80171, 'Machelle', 1959, 'F', 100), +(80172, 'Shanna', 1959, 'F', 100), +(80173, 'Michael', 1959, 'M', 85272), +(80174, 'David', 1959, 'M', 83921), +(80175, 'James', 1959, 'M', 78597), +(80176, 'John', 1959, 'M', 76428), +(80177, 'Robert', 1959, 'M', 74506), +(80178, 'Mark', 1959, 'M', 56924), +(80179, 'William', 1959, 'M', 51377), +(80180, 'Richard', 1959, 'M', 47176), +(80181, 'Thomas', 1959, 'M', 40286), +(80182, 'Steven', 1959, 'M', 33580), +(80183, 'Charles', 1959, 'M', 30767), +(80184, 'Timothy', 1959, 'M', 30754), +(80185, 'Joseph', 1959, 'M', 29527), +(80186, 'Kevin', 1959, 'M', 26759), +(80187, 'Kenneth', 1959, 'M', 26623), +(80188, 'Jeffrey', 1959, 'M', 26271), +(80189, 'Paul', 1959, 'M', 25703), +(80190, 'Daniel', 1959, 'M', 25134), +(80191, 'Donald', 1959, 'M', 23869), +(80192, 'Gary', 1959, 'M', 23296), +(80193, 'Ronald', 1959, 'M', 23106), +(80194, 'Brian', 1959, 'M', 20739), +(80195, 'Gregory', 1959, 'M', 19874), +(80196, 'Scott', 1959, 'M', 19756), +(80197, 'Larry', 1959, 'M', 18417), +(80198, 'Anthony', 1959, 'M', 17950), +(80199, 'Edward', 1959, 'M', 16911), +(80200, 'Stephen', 1959, 'M', 16495), +(80201, 'Dennis', 1959, 'M', 16040), +(80202, 'Douglas', 1959, 'M', 15282), +(80203, 'Randy', 1959, 'M', 15028), +(80204, 'George', 1959, 'M', 15001), +(80205, 'Terry', 1959, 'M', 14546), +(80206, 'Ricky', 1959, 'M', 13205), +(80207, 'Christopher', 1959, 'M', 12908), +(80208, 'Jerry', 1959, 'M', 12316), +(80209, 'Mike', 1959, 'M', 11995), +(80210, 'Bruce', 1959, 'M', 11909), +(80211, 'Keith', 1959, 'M', 11750), +(80212, 'Peter', 1959, 'M', 11286), +(80213, 'Steve', 1959, 'M', 11068), +(80214, 'Frank', 1959, 'M', 10932), +(80215, 'Patrick', 1959, 'M', 10555), +(80216, 'Craig', 1959, 'M', 9920), +(80217, 'Raymond', 1959, 'M', 9805), +(80218, 'Eric', 1959, 'M', 9724), +(80219, 'Roger', 1959, 'M', 8782), +(80220, 'Danny', 1959, 'M', 8727), +(80221, 'Dale', 1959, 'M', 8348), +(80222, 'Alan', 1959, 'M', 8152), +(80223, 'Wayne', 1959, 'M', 7885), +(80224, 'Jeff', 1959, 'M', 7724), +(80225, 'Tony', 1959, 'M', 7561), +(80226, 'Carl', 1959, 'M', 7507), +(80227, 'Russell', 1959, 'M', 7478), +(80228, 'Jeffery', 1959, 'M', 7471), +(80229, 'Joe', 1959, 'M', 7386), +(80230, 'Andrew', 1959, 'M', 7105), +(80231, 'Randall', 1959, 'M', 7062), +(80232, 'Tim', 1959, 'M', 6827), +(80233, 'Gerald', 1959, 'M', 6631), +(80234, 'Lawrence', 1959, 'M', 6608), +(80235, 'Matthew', 1959, 'M', 6563), +(80236, 'Billy', 1959, 'M', 6307), +(80237, 'Johnny', 1959, 'M', 6306), +(80238, 'Walter', 1959, 'M', 6119), +(80239, 'Rodney', 1959, 'M', 5915), +(80240, 'Philip', 1959, 'M', 5857), +(80241, 'Jimmy', 1959, 'M', 5834), +(80242, 'Jim', 1959, 'M', 5684), +(80243, 'Bobby', 1959, 'M', 5669), +(80244, 'Chris', 1959, 'M', 5668), +(80245, 'Barry', 1959, 'M', 5603), +(80246, 'Phillip', 1959, 'M', 5585), +(80247, 'Curtis', 1959, 'M', 5524), +(80248, 'Arthur', 1959, 'M', 5469), +(80249, 'Ronnie', 1959, 'M', 5469), +(80250, 'Willie', 1959, 'M', 5372), +(80251, 'Glenn', 1959, 'M', 5353), +(80252, 'Martin', 1959, 'M', 5350), +(80253, 'Roy', 1959, 'M', 5177), +(80254, 'Henry', 1959, 'M', 5063), +(80255, 'Tom', 1959, 'M', 5063), +(80256, 'Ralph', 1959, 'M', 5035), +(80257, 'Jack', 1959, 'M', 5024), +(80258, 'Samuel', 1959, 'M', 4957), +(80259, 'Jay', 1959, 'M', 4938), +(80260, 'Harold', 1959, 'M', 4935), +(80261, 'Rick', 1959, 'M', 4934), +(80262, 'Greg', 1959, 'M', 4646), +(80263, 'Darrell', 1959, 'M', 4640), +(80264, 'Bill', 1959, 'M', 4603), +(80265, 'Albert', 1959, 'M', 4602), +(80266, 'Bryan', 1959, 'M', 4496), +(80267, 'Dean', 1959, 'M', 4430), +(80268, 'Micheal', 1959, 'M', 4370), +(80269, 'Allen', 1959, 'M', 4365), +(80270, 'Todd', 1959, 'M', 4335), +(80271, 'Stanley', 1959, 'M', 4333), +(80272, 'Louis', 1959, 'M', 4304), +(80273, 'Eddie', 1959, 'M', 4231), +(80274, 'Vincent', 1959, 'M', 4213), +(80275, 'Bradley', 1959, 'M', 4047), +(80276, 'Howard', 1959, 'M', 3989), +(80277, 'Jon', 1959, 'M', 3970), +(80278, 'Eugene', 1959, 'M', 3889), +(80279, 'Victor', 1959, 'M', 3819), +(80280, 'Tommy', 1959, 'M', 3764), +(80281, 'Leonard', 1959, 'M', 3736), +(80282, 'Dan', 1959, 'M', 3679), +(80283, 'Don', 1959, 'M', 3621), +(80284, 'Fred', 1959, 'M', 3578), +(80285, 'Jose', 1959, 'M', 3575), +(80286, 'Frederick', 1959, 'M', 3550), +(80287, 'Lee', 1959, 'M', 3503), +(80288, 'Joel', 1959, 'M', 3460), +(80289, 'Rickey', 1959, 'M', 3452), +(80290, 'Ernest', 1959, 'M', 3334), +(80291, 'Dave', 1959, 'M', 3316), +(80292, 'Harry', 1959, 'M', 3278), +(80293, 'Ray', 1959, 'M', 3219), +(80294, 'Melvin', 1959, 'M', 3174), +(80295, 'Marvin', 1959, 'M', 3172), +(80296, 'Jonathan', 1959, 'M', 3084), +(80297, 'Calvin', 1959, 'M', 3036), +(80298, 'Mitchell', 1959, 'M', 2967), +(80299, 'Duane', 1959, 'M', 2965), +(80300, 'Bob', 1959, 'M', 2824), +(80301, 'Kurt', 1959, 'M', 2813), +(80302, 'Darryl', 1959, 'M', 2775), +(80303, 'Norman', 1959, 'M', 2775), +(80304, 'Perry', 1959, 'M', 2749), +(80305, 'Glen', 1959, 'M', 2697), +(80306, 'Earl', 1959, 'M', 2683), +(80307, 'Jerome', 1959, 'M', 2683), +(80308, 'Francis', 1959, 'M', 2651), +(80309, 'Edwin', 1959, 'M', 2572), +(80310, 'Alfred', 1959, 'M', 2547), +(80311, 'Clifford', 1959, 'M', 2528), +(80312, 'Marc', 1959, 'M', 2501), +(80313, 'Kent', 1959, 'M', 2466), +(80314, 'Kelly', 1959, 'M', 2435), +(80315, 'Jesse', 1959, 'M', 2431), +(80316, 'Kirk', 1959, 'M', 2410), +(80317, 'Reginald', 1959, 'M', 2409), +(80318, 'Theodore', 1959, 'M', 2395), +(80319, 'Clarence', 1959, 'M', 2375), +(80320, 'Karl', 1959, 'M', 2353), +(80321, 'Brad', 1959, 'M', 2345), +(80322, 'Benjamin', 1959, 'M', 2335), +(80323, 'Brent', 1959, 'M', 2278), +(80324, 'Bernard', 1959, 'M', 2271), +(80325, 'Alvin', 1959, 'M', 2255), +(80326, 'Brett', 1959, 'M', 2223), +(80327, 'Gordon', 1959, 'M', 2213), +(80328, 'Nicholas', 1959, 'M', 2195), +(80329, 'Warren', 1959, 'M', 2179), +(80330, 'Guy', 1959, 'M', 2025), +(80331, 'Leroy', 1959, 'M', 2018), +(80332, 'Wesley', 1959, 'M', 2001), +(80333, 'Shawn', 1959, 'M', 1972), +(80334, 'Carlos', 1959, 'M', 1937), +(80335, 'Gene', 1959, 'M', 1929), +(80336, 'Juan', 1959, 'M', 1924), +(80337, 'Dwayne', 1959, 'M', 1900), +(80338, 'Ron', 1959, 'M', 1875), +(80339, 'Lloyd', 1959, 'M', 1872), +(80340, 'Stuart', 1959, 'M', 1849), +(80341, 'Herbert', 1959, 'M', 1845), +(80342, 'Bret', 1959, 'M', 1838), +(80343, 'Tyrone', 1959, 'M', 1814), +(80344, 'Vernon', 1959, 'M', 1791), +(80345, 'Lonnie', 1959, 'M', 1775), +(80346, 'Leslie', 1959, 'M', 1756), +(80347, 'Kenny', 1959, 'M', 1754), +(80348, 'Leon', 1959, 'M', 1746), +(80349, 'Gilbert', 1959, 'M', 1745), +(80350, 'Doug', 1959, 'M', 1705), +(80351, 'Kerry', 1959, 'M', 1702), +(80352, 'Dana', 1959, 'M', 1699), +(80353, 'Ted', 1959, 'M', 1676), +(80354, 'Ken', 1959, 'M', 1663), +(80355, 'Manuel', 1959, 'M', 1648); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(80356, 'Neil', 1959, 'M', 1637), +(80357, 'Donnie', 1959, 'M', 1630), +(80358, 'Dwight', 1959, 'M', 1595), +(80359, 'Gregg', 1959, 'M', 1586), +(80360, 'Timmy', 1959, 'M', 1574), +(80361, 'Daryl', 1959, 'M', 1557), +(80362, 'Franklin', 1959, 'M', 1557), +(80363, 'Aaron', 1959, 'M', 1543), +(80364, 'Floyd', 1959, 'M', 1537), +(80365, 'Lewis', 1959, 'M', 1535), +(80366, 'Robin', 1959, 'M', 1528), +(80367, 'Garry', 1959, 'M', 1472), +(80368, 'Clyde', 1959, 'M', 1465), +(80369, 'Jackie', 1959, 'M', 1457), +(80370, 'Marty', 1959, 'M', 1454), +(80371, 'Tracy', 1959, 'M', 1449), +(80372, 'Randal', 1959, 'M', 1436), +(80373, 'Allan', 1959, 'M', 1434), +(80374, 'Leo', 1959, 'M', 1432), +(80375, 'Lance', 1959, 'M', 1431), +(80376, 'Charlie', 1959, 'M', 1415), +(80377, 'Gerard', 1959, 'M', 1400), +(80378, 'Antonio', 1959, 'M', 1375), +(80379, 'Nathan', 1959, 'M', 1375), +(80380, 'Ruben', 1959, 'M', 1358), +(80381, 'Maurice', 1959, 'M', 1357), +(80382, 'Ricardo', 1959, 'M', 1344), +(80383, 'Lester', 1959, 'M', 1336), +(80384, 'Andy', 1959, 'M', 1311), +(80385, 'Darren', 1959, 'M', 1297), +(80386, 'Sam', 1959, 'M', 1297), +(80387, 'Sean', 1959, 'M', 1285), +(80388, 'Jimmie', 1959, 'M', 1284), +(80389, 'Rex', 1959, 'M', 1284), +(80390, 'Luis', 1959, 'M', 1278), +(80391, 'Andre', 1959, 'M', 1274), +(80392, 'Freddie', 1959, 'M', 1250), +(80393, 'Wade', 1959, 'M', 1226), +(80394, 'Neal', 1959, 'M', 1224), +(80395, 'Byron', 1959, 'M', 1220), +(80396, 'Chuck', 1959, 'M', 1220), +(80397, 'Milton', 1959, 'M', 1217), +(80398, 'Marcus', 1959, 'M', 1206), +(80399, 'Wendell', 1959, 'M', 1203), +(80400, 'Mario', 1959, 'M', 1200), +(80401, 'Arnold', 1959, 'M', 1190), +(80402, 'Herman', 1959, 'M', 1183), +(80403, 'Derrick', 1959, 'M', 1181), +(80404, 'Johnnie', 1959, 'M', 1175), +(80405, 'Alexander', 1959, 'M', 1167), +(80406, 'Alex', 1959, 'M', 1164), +(80407, 'Roland', 1959, 'M', 1159), +(80408, 'Nathaniel', 1959, 'M', 1155), +(80409, 'Kyle', 1959, 'M', 1146), +(80410, 'Clayton', 1959, 'M', 1128), +(80411, 'Clinton', 1959, 'M', 1122), +(80412, 'Joey', 1959, 'M', 1122), +(80413, 'Kim', 1959, 'M', 1105), +(80414, 'Terrence', 1959, 'M', 1103), +(80415, 'Harvey', 1959, 'M', 1086), +(80416, 'Nelson', 1959, 'M', 1083), +(80417, 'Oscar', 1959, 'M', 1082), +(80418, 'Randolph', 1959, 'M', 1073), +(80419, 'Nick', 1959, 'M', 1051), +(80420, 'Ross', 1959, 'M', 1030), +(80421, 'Bart', 1959, 'M', 1022), +(80422, 'Kelvin', 1959, 'M', 1013), +(80423, 'Cecil', 1959, 'M', 1012), +(80424, 'Lynn', 1959, 'M', 1009), +(80425, 'Chester', 1959, 'M', 1000), +(80426, 'Derek', 1959, 'M', 983), +(80427, 'Hugh', 1959, 'M', 981), +(80428, 'Matt', 1959, 'M', 973), +(80429, 'Jessie', 1959, 'M', 960), +(80430, 'Troy', 1959, 'M', 960), +(80431, 'Pat', 1959, 'M', 948), +(80432, 'Marshall', 1959, 'M', 945), +(80433, 'Ben', 1959, 'M', 934), +(80434, 'Clifton', 1959, 'M', 925), +(80435, 'Fredrick', 1959, 'M', 922), +(80436, 'Jesus', 1959, 'M', 922), +(80437, 'Hector', 1959, 'M', 913), +(80438, 'Jody', 1959, 'M', 897), +(80439, 'Roberto', 1959, 'M', 892), +(80440, 'Frankie', 1959, 'M', 872), +(80441, 'Sammy', 1959, 'M', 857), +(80442, 'Wallace', 1959, 'M', 854), +(80443, 'Claude', 1959, 'M', 853), +(80444, 'Benny', 1959, 'M', 846), +(80445, 'Raul', 1959, 'M', 844), +(80446, 'Rocky', 1959, 'M', 844), +(80447, 'Clay', 1959, 'M', 831), +(80448, 'Terrance', 1959, 'M', 829), +(80449, 'Sidney', 1959, 'M', 826), +(80450, 'Carlton', 1959, 'M', 813), +(80451, 'Roderick', 1959, 'M', 811), +(80452, 'Rory', 1959, 'M', 804), +(80453, 'Miguel', 1959, 'M', 793), +(80454, 'Rudy', 1959, 'M', 783), +(80455, 'Cary', 1959, 'M', 779), +(80456, 'Jamie', 1959, 'M', 772), +(80457, 'Pete', 1959, 'M', 768), +(80458, 'Lyle', 1959, 'M', 762), +(80459, 'Edgar', 1959, 'M', 750), +(80460, 'Rickie', 1959, 'M', 740), +(80461, 'Terence', 1959, 'M', 739), +(80462, 'Geoffrey', 1959, 'M', 735), +(80463, 'Jason', 1959, 'M', 727), +(80464, 'Morris', 1959, 'M', 720), +(80465, 'Ramon', 1959, 'M', 719), +(80466, 'Angelo', 1959, 'M', 711), +(80467, 'Mickey', 1959, 'M', 710), +(80468, 'Francisco', 1959, 'M', 706), +(80469, 'Ed', 1959, 'M', 696), +(80470, 'Everett', 1959, 'M', 692), +(80471, 'Max', 1959, 'M', 690), +(80472, 'Phil', 1959, 'M', 675), +(80473, 'Curt', 1959, 'M', 658), +(80474, 'Rene', 1959, 'M', 657), +(80475, 'Pedro', 1959, 'M', 654), +(80476, 'Virgil', 1959, 'M', 652), +(80477, 'Darrel', 1959, 'M', 647), +(80478, 'Stewart', 1959, 'M', 644), +(80479, 'Clark', 1959, 'M', 633), +(80480, 'Felix', 1959, 'M', 628), +(80481, 'Jaime', 1959, 'M', 628), +(80482, 'Otis', 1959, 'M', 618), +(80483, 'Bradford', 1959, 'M', 616), +(80484, 'Myron', 1959, 'M', 612), +(80485, 'Ivan', 1959, 'M', 611), +(80486, 'Loren', 1959, 'M', 611), +(80487, 'Fernando', 1959, 'M', 609), +(80488, 'Armando', 1959, 'M', 606), +(80489, 'Angel', 1959, 'M', 605), +(80490, 'Bennie', 1959, 'M', 599), +(80491, 'Ira', 1959, 'M', 594), +(80492, 'Grant', 1959, 'M', 590), +(80493, 'Adam', 1959, 'M', 585), +(80494, 'Salvatore', 1959, 'M', 585), +(80495, 'Christian', 1959, 'M', 583), +(80496, 'Teddy', 1959, 'M', 576), +(80497, 'Willard', 1959, 'M', 572), +(80498, 'Earnest', 1959, 'M', 562), +(80499, 'Sylvester', 1959, 'M', 559), +(80500, 'Delbert', 1959, 'M', 557), +(80501, 'Jacob', 1959, 'M', 557), +(80502, 'Rusty', 1959, 'M', 556), +(80503, 'Marion', 1959, 'M', 543), +(80504, 'Alton', 1959, 'M', 541), +(80505, 'Drew', 1959, 'M', 540), +(80506, 'Jeffry', 1959, 'M', 540), +(80507, 'Edmund', 1959, 'M', 531), +(80508, 'Lorenzo', 1959, 'M', 530), +(80509, 'Elmer', 1959, 'M', 529), +(80510, 'Scot', 1959, 'M', 524), +(80511, 'Cedric', 1959, 'M', 521), +(80512, 'Laurence', 1959, 'M', 518), +(80513, 'Luther', 1959, 'M', 517), +(80514, 'Isaac', 1959, 'M', 514), +(80515, 'Sherman', 1959, 'M', 510), +(80516, 'Julius', 1959, 'M', 508), +(80517, 'Rafael', 1959, 'M', 505), +(80518, 'Travis', 1959, 'M', 505), +(80519, 'Van', 1959, 'M', 505), +(80520, 'Malcolm', 1959, 'M', 499), +(80521, 'Dewayne', 1959, 'M', 498), +(80522, 'Monty', 1959, 'M', 496), +(80523, 'Shane', 1959, 'M', 496), +(80524, 'Preston', 1959, 'M', 487), +(80525, 'Gerry', 1959, 'M', 484), +(80526, 'Rod', 1959, 'M', 483), +(80527, 'Rodger', 1959, 'M', 483), +(80528, 'Adrian', 1959, 'M', 482), +(80529, 'Clint', 1959, 'M', 482), +(80530, 'Archie', 1959, 'M', 481), +(80531, 'Monte', 1959, 'M', 474), +(80532, 'Kris', 1959, 'M', 469), +(80533, 'Roosevelt', 1959, 'M', 467), +(80534, 'Arturo', 1959, 'M', 466), +(80535, 'Alfredo', 1959, 'M', 464), +(80536, 'Jorge', 1959, 'M', 463), +(80537, 'Julian', 1959, 'M', 461), +(80538, 'Rudolph', 1959, 'M', 459), +(80539, 'Wilbert', 1959, 'M', 457), +(80540, 'Lowell', 1959, 'M', 456), +(80541, 'Horace', 1959, 'M', 453), +(80542, 'Gabriel', 1959, 'M', 450), +(80543, 'Noel', 1959, 'M', 450), +(80544, 'Ernie', 1959, 'M', 449), +(80545, 'Stevie', 1959, 'M', 447), +(80546, 'Doyle', 1959, 'M', 445), +(80547, 'Alonzo', 1959, 'M', 441), +(80548, 'Al', 1959, 'M', 439), +(80549, 'Carey', 1959, 'M', 439), +(80550, 'Dominic', 1959, 'M', 437), +(80551, 'Forrest', 1959, 'M', 437), +(80552, 'Javier', 1959, 'M', 436), +(80553, 'Tommie', 1959, 'M', 430), +(80554, 'Erik', 1959, 'M', 428), +(80555, 'Leland', 1959, 'M', 428), +(80556, 'Orlando', 1959, 'M', 424), +(80557, 'Hubert', 1959, 'M', 422), +(80558, 'Stan', 1959, 'M', 422), +(80559, 'Hal', 1959, 'M', 418), +(80560, 'Ervin', 1959, 'M', 415), +(80561, 'Lionel', 1959, 'M', 413), +(80562, 'Alberto', 1959, 'M', 411), +(80563, 'Jerald', 1959, 'M', 411), +(80564, 'Blake', 1959, 'M', 410), +(80565, 'Kendall', 1959, 'M', 410), +(80566, 'Vance', 1959, 'M', 409), +(80567, 'Willis', 1959, 'M', 408), +(80568, 'Dexter', 1959, 'M', 402), +(80569, 'Evan', 1959, 'M', 398), +(80570, 'Ryan', 1959, 'M', 397), +(80571, 'Casey', 1959, 'M', 396), +(80572, 'Darwin', 1959, 'M', 395), +(80573, 'Alfonso', 1959, 'M', 391), +(80574, 'Robbie', 1959, 'M', 389), +(80575, 'Bert', 1959, 'M', 388), +(80576, 'Jan', 1959, 'M', 386), +(80577, 'Owen', 1959, 'M', 385), +(80578, 'Dino', 1959, 'M', 381), +(80579, 'Stephan', 1959, 'M', 380), +(80580, 'Sheldon', 1959, 'M', 377), +(80581, 'Boyd', 1959, 'M', 376), +(80582, 'Denis', 1959, 'M', 372), +(80583, 'Dirk', 1959, 'M', 371), +(80584, 'Homer', 1959, 'M', 371), +(80585, 'Oliver', 1959, 'M', 369), +(80586, 'Ronny', 1959, 'M', 369), +(80587, 'Dallas', 1959, 'M', 368), +(80588, 'Grady', 1959, 'M', 364), +(80589, 'Enrique', 1959, 'M', 360), +(80590, 'Darnell', 1959, 'M', 359), +(80591, 'Mathew', 1959, 'M', 359), +(80592, 'Dane', 1959, 'M', 358), +(80593, 'Rufus', 1959, 'M', 358), +(80594, 'Freddy', 1959, 'M', 357), +(80595, 'Bryant', 1959, 'M', 354), +(80596, 'Luke', 1959, 'M', 354), +(80597, 'Wilbur', 1959, 'M', 353), +(80598, 'Russ', 1959, 'M', 349), +(80599, 'Blaine', 1959, 'M', 348), +(80600, 'Donny', 1959, 'M', 347), +(80601, 'Justin', 1959, 'M', 346), +(80602, 'Kirby', 1959, 'M', 343), +(80603, 'Lane', 1959, 'M', 342), +(80604, 'Rob', 1959, 'M', 342), +(80605, 'Damon', 1959, 'M', 340), +(80606, 'Aubrey', 1959, 'M', 339), +(80607, 'Mack', 1959, 'M', 338), +(80608, 'Elbert', 1959, 'M', 337), +(80609, 'Royce', 1959, 'M', 337), +(80610, 'Ernesto', 1959, 'M', 336), +(80611, 'Dewey', 1959, 'M', 331), +(80612, 'Dominick', 1959, 'M', 327), +(80613, 'Salvador', 1959, 'M', 327), +(80614, 'Joshua', 1959, 'M', 326), +(80615, 'Vince', 1959, 'M', 324), +(80616, 'Colin', 1959, 'M', 322), +(80617, 'Louie', 1959, 'M', 322), +(80618, 'Buddy', 1959, 'M', 320), +(80619, 'Cornelius', 1959, 'M', 320), +(80620, 'Miles', 1959, 'M', 320), +(80621, 'Spencer', 1959, 'M', 319), +(80622, 'Denny', 1959, 'M', 317), +(80623, 'Ellis', 1959, 'M', 317), +(80624, 'Eduardo', 1959, 'M', 316), +(80625, 'Wilson', 1959, 'M', 313), +(80626, 'Abraham', 1959, 'M', 311), +(80627, 'Cory', 1959, 'M', 310), +(80628, 'Cliff', 1959, 'M', 309), +(80629, 'Bryon', 1959, 'M', 305), +(80630, 'Carroll', 1959, 'M', 303), +(80631, 'Alphonso', 1959, 'M', 299), +(80632, 'Shannon', 1959, 'M', 298), +(80633, 'Corey', 1959, 'M', 296), +(80634, 'Rodolfo', 1959, 'M', 296), +(80635, 'Mitch', 1959, 'M', 295), +(80636, 'Conrad', 1959, 'M', 294), +(80637, 'Julio', 1959, 'M', 294), +(80638, 'Randell', 1959, 'M', 294), +(80639, 'Toby', 1959, 'M', 294), +(80640, 'Seth', 1959, 'M', 292), +(80641, 'Stacy', 1959, 'M', 290), +(80642, 'Emmett', 1959, 'M', 288), +(80643, 'Nicky', 1959, 'M', 282), +(80644, 'Sammie', 1959, 'M', 280), +(80645, 'Irvin', 1959, 'M', 273), +(80646, 'Moses', 1959, 'M', 273), +(80647, 'Lamar', 1959, 'M', 271), +(80648, 'Shaun', 1959, 'M', 270), +(80649, 'Marlon', 1959, 'M', 268), +(80650, 'Wilfred', 1959, 'M', 267), +(80651, 'Edmond', 1959, 'M', 265), +(80652, 'Elvis', 1959, 'M', 265), +(80653, 'Tod', 1959, 'M', 264), +(80654, 'Elton', 1959, 'M', 263), +(80655, 'Percy', 1959, 'M', 262), +(80656, 'Reggie', 1959, 'M', 262), +(80657, 'Zachary', 1959, 'M', 262), +(80658, 'Amos', 1959, 'M', 260), +(80659, 'Sterling', 1959, 'M', 259), +(80660, 'Emanuel', 1959, 'M', 256), +(80661, 'Duncan', 1959, 'M', 255), +(80662, 'Dwain', 1959, 'M', 255), +(80663, 'Mitchel', 1959, 'M', 254), +(80664, 'Ward', 1959, 'M', 254), +(80665, 'Lamont', 1959, 'M', 252), +(80666, 'Wayde', 1959, 'M', 252), +(80667, 'Cameron', 1959, 'M', 251), +(80668, 'Guadalupe', 1959, 'M', 251), +(80669, 'Sergio', 1959, 'M', 250), +(80670, 'Chad', 1959, 'M', 247), +(80671, 'Galen', 1959, 'M', 247), +(80672, 'Joesph', 1959, 'M', 245), +(80673, 'Eddy', 1959, 'M', 243), +(80674, 'Barton', 1959, 'M', 242), +(80675, 'Lon', 1959, 'M', 242), +(80676, 'Murray', 1959, 'M', 242), +(80677, 'Reuben', 1959, 'M', 241), +(80678, 'Cleveland', 1959, 'M', 240), +(80679, 'Marlin', 1959, 'M', 240), +(80680, 'Barney', 1959, 'M', 238), +(80681, 'Norris', 1959, 'M', 238), +(80682, 'Garland', 1959, 'M', 236), +(80683, 'Rocco', 1959, 'M', 236), +(80684, 'Bennett', 1959, 'M', 234), +(80685, 'Elliott', 1959, 'M', 234), +(80686, 'Pablo', 1959, 'M', 234), +(80687, 'Blair', 1959, 'M', 233), +(80688, 'Jefferson', 1959, 'M', 233), +(80689, 'Carmen', 1959, 'M', 232), +(80690, 'Merle', 1959, 'M', 229), +(80691, 'Rich', 1959, 'M', 228), +(80692, 'Jess', 1959, 'M', 227), +(80693, 'Scotty', 1959, 'M', 227), +(80694, 'Trent', 1959, 'M', 227), +(80695, 'Michel', 1959, 'M', 226), +(80696, 'Abel', 1959, 'M', 224), +(80697, 'Pierre', 1959, 'M', 224), +(80698, 'Kennith', 1959, 'M', 223), +(80699, 'Morgan', 1959, 'M', 223), +(80700, 'Rolando', 1959, 'M', 223), +(80701, 'Terrell', 1959, 'M', 221), +(80702, 'Ned', 1959, 'M', 220), +(80703, 'Dick', 1959, 'M', 219), +(80704, 'Harlan', 1959, 'M', 219), +(80705, 'Felipe', 1959, 'M', 218), +(80706, 'Israel', 1959, 'M', 218), +(80707, 'Sandy', 1959, 'M', 218), +(80708, 'Gilberto', 1959, 'M', 216), +(80709, 'Vaughn', 1959, 'M', 214), +(80710, 'Reynaldo', 1959, 'M', 212), +(80711, 'Marco', 1959, 'M', 209), +(80712, 'Donnell', 1959, 'M', 208), +(80713, 'Ian', 1959, 'M', 208), +(80714, 'Ramiro', 1959, 'M', 208), +(80715, 'Robby', 1959, 'M', 208), +(80716, 'Alejandro', 1959, 'M', 207), +(80717, 'Andres', 1959, 'M', 207), +(80718, 'Thaddeus', 1959, 'M', 206), +(80719, 'Linwood', 1959, 'M', 205), +(80720, 'Will', 1959, 'M', 205), +(80721, 'Simon', 1959, 'M', 203), +(80722, 'Billie', 1959, 'M', 202), +(80723, 'Gerardo', 1959, 'M', 201), +(80724, 'Reed', 1959, 'M', 200), +(80725, 'Ismael', 1959, 'M', 198), +(80726, 'Winston', 1959, 'M', 197), +(80727, 'Garrett', 1959, 'M', 194), +(80728, 'Rogelio', 1959, 'M', 194), +(80729, 'Russel', 1959, 'M', 194), +(80730, 'Austin', 1959, 'M', 192), +(80731, 'Cornell', 1959, 'M', 192), +(80732, 'Kurtis', 1959, 'M', 192), +(80733, 'Layne', 1959, 'M', 192), +(80734, 'Lyndon', 1959, 'M', 192), +(80735, 'Avery', 1959, 'M', 191), +(80736, 'Elvin', 1959, 'M', 191), +(80737, 'Tomas', 1959, 'M', 191), +(80738, 'Brandon', 1959, 'M', 190), +(80739, 'Harrison', 1959, 'M', 190), +(80740, 'Garth', 1959, 'M', 189), +(80741, 'Erwin', 1959, 'M', 188), +(80742, 'Timmie', 1959, 'M', 188), +(80743, 'Ty', 1959, 'M', 188), +(80744, 'Unknown', 1959, 'M', 188), +(80745, 'Danial', 1959, 'M', 187), +(80746, 'Lonny', 1959, 'M', 187), +(80747, 'Nolan', 1959, 'M', 186), +(80748, 'Loyd', 1959, 'M', 185), +(80749, 'Wally', 1959, 'M', 185), +(80750, 'Bernie', 1959, 'M', 184), +(80751, 'Elijah', 1959, 'M', 184), +(80752, 'Guillermo', 1959, 'M', 184), +(80753, 'Junior', 1959, 'M', 183), +(80754, 'Levi', 1959, 'M', 183), +(80755, 'Eldon', 1959, 'M', 181), +(80756, 'Hans', 1959, 'M', 180), +(80757, 'Brendan', 1959, 'M', 179), +(80758, 'Woodrow', 1959, 'M', 179), +(80759, 'Harley', 1959, 'M', 178), +(80760, 'Gus', 1959, 'M', 175), +(80761, 'Irving', 1959, 'M', 175), +(80762, 'Orville', 1959, 'M', 175), +(80763, 'Gino', 1959, 'M', 174), +(80764, 'Jasper', 1959, 'M', 174), +(80765, 'Roscoe', 1959, 'M', 174), +(80766, 'Dannie', 1959, 'M', 173), +(80767, 'Solomon', 1959, 'M', 173), +(80768, 'Burton', 1959, 'M', 171), +(80769, 'Mary', 1959, 'M', 170), +(80770, 'Bobbie', 1959, 'M', 169), +(80771, 'Norbert', 1959, 'M', 169), +(80772, 'Toney', 1959, 'M', 169), +(80773, 'Wilfredo', 1959, 'M', 168), +(80774, 'Bryce', 1959, 'M', 166), +(80775, 'Grover', 1959, 'M', 166), +(80776, 'August', 1959, 'M', 165), +(80777, 'Lenny', 1959, 'M', 165), +(80778, 'Emil', 1959, 'M', 163), +(80779, 'Vern', 1959, 'M', 163), +(80780, 'Art', 1959, 'M', 162), +(80781, 'Domingo', 1959, 'M', 161), +(80782, 'Lanny', 1959, 'M', 161), +(80783, 'Fabian', 1959, 'M', 160), +(80784, 'Les', 1959, 'M', 160), +(80785, 'Hank', 1959, 'M', 159), +(80786, 'Jordan', 1959, 'M', 159), +(80787, 'Thurman', 1959, 'M', 159), +(80788, 'Wiley', 1959, 'M', 159), +(80789, 'Reid', 1959, 'M', 158), +(80790, 'Santos', 1959, 'M', 158), +(80791, 'Kenton', 1959, 'M', 157), +(80792, 'Roman', 1959, 'M', 157), +(80793, 'Sanford', 1959, 'M', 157), +(80794, 'Jeremiah', 1959, 'M', 155), +(80795, 'Elias', 1959, 'M', 154), +(80796, 'Kip', 1959, 'M', 154), +(80797, 'Noah', 1959, 'M', 154), +(80798, 'Frederic', 1959, 'M', 152), +(80799, 'Jean', 1959, 'M', 152), +(80800, 'Marcos', 1959, 'M', 152), +(80801, 'Zane', 1959, 'M', 152), +(80802, 'Erick', 1959, 'M', 151), +(80803, 'Errol', 1959, 'M', 151), +(80804, 'Gustavo', 1959, 'M', 150), +(80805, 'Kermit', 1959, 'M', 150), +(80806, 'Donn', 1959, 'M', 149), +(80807, 'Fidel', 1959, 'M', 149), +(80808, 'Otto', 1959, 'M', 149), +(80809, 'Mikel', 1959, 'M', 148), +(80810, 'Jake', 1959, 'M', 147), +(80811, 'Tyler', 1959, 'M', 147), +(80812, 'Dudley', 1959, 'M', 146), +(80813, 'Eli', 1959, 'M', 145), +(80814, 'Emilio', 1959, 'M', 144), +(80815, 'Shelton', 1959, 'M', 144), +(80816, 'Kelley', 1959, 'M', 143), +(80817, 'Bud', 1959, 'M', 142), +(80818, 'Stacey', 1959, 'M', 142), +(80819, 'Ulysses', 1959, 'M', 142), +(80820, 'Antoine', 1959, 'M', 141), +(80821, 'Anton', 1959, 'M', 141), +(80822, 'Brady', 1959, 'M', 140), +(80823, 'Davis', 1959, 'M', 139), +(80824, 'Del', 1959, 'M', 139), +(80825, 'Charley', 1959, 'M', 138), +(80826, 'Chip', 1959, 'M', 138), +(80827, 'Lindsey', 1959, 'M', 138), +(80828, 'Weldon', 1959, 'M', 138), +(80829, 'Winfred', 1959, 'M', 138), +(80830, 'Wyatt', 1959, 'M', 137), +(80831, 'Odell', 1959, 'M', 136), +(80832, 'Saul', 1959, 'M', 136), +(80833, 'Emory', 1959, 'M', 135), +(80834, 'Carter', 1959, 'M', 133), +(80835, 'Rock', 1959, 'M', 133), +(80836, 'Tad', 1959, 'M', 133), +(80837, 'Fredric', 1959, 'M', 132), +(80838, 'Shelby', 1959, 'M', 131), +(80839, 'Val', 1959, 'M', 131), +(80840, 'Vito', 1959, 'M', 131), +(80841, 'Xavier', 1959, 'M', 131), +(80842, 'Christophe', 1959, 'M', 130), +(80843, 'Merlin', 1959, 'M', 130), +(80844, 'Clement', 1959, 'M', 129), +(80845, 'Jacky', 1959, 'M', 129), +(80846, 'Dion', 1959, 'M', 128), +(80847, 'Jed', 1959, 'M', 128), +(80848, 'Santiago', 1959, 'M', 128), +(80849, 'Erich', 1959, 'M', 127), +(80850, 'Josh', 1959, 'M', 127), +(80851, 'Armand', 1959, 'M', 126), +(80852, 'Brooks', 1959, 'M', 126), +(80853, 'Coy', 1959, 'M', 126), +(80854, 'Curtiss', 1959, 'M', 126), +(80855, 'Humberto', 1959, 'M', 126), +(80856, 'Efrain', 1959, 'M', 125), +(80857, 'Cesar', 1959, 'M', 124), +(80858, 'Ignacio', 1959, 'M', 124), +(80859, 'Quentin', 1959, 'M', 124), +(80860, 'Yancy', 1959, 'M', 124), +(80861, 'Augustine', 1959, 'M', 123), +(80862, 'Burt', 1959, 'M', 123), +(80863, 'Jonathon', 1959, 'M', 123), +(80864, 'Kraig', 1959, 'M', 123), +(80865, 'Nicolas', 1959, 'M', 123), +(80866, 'Hollis', 1959, 'M', 122), +(80867, 'Jerrold', 1959, 'M', 122), +(80868, 'Leonardo', 1959, 'M', 122), +(80869, 'Linda', 1959, 'M', 122), +(80870, 'Tracey', 1959, 'M', 122), +(80871, 'Elwood', 1959, 'M', 121), +(80872, 'Ivory', 1959, 'M', 121), +(80873, 'Jarvis', 1959, 'M', 121), +(80874, 'Wes', 1959, 'M', 121), +(80875, 'Jeremy', 1959, 'M', 120), +(80876, 'Adolph', 1959, 'M', 119), +(80877, 'Britt', 1959, 'M', 119), +(80878, 'Derwin', 1959, 'M', 119), +(80879, 'Elliot', 1959, 'M', 119), +(80880, 'Jackson', 1959, 'M', 118), +(80881, 'Myles', 1959, 'M', 118), +(80882, 'Gil', 1959, 'M', 117), +(80883, 'Lindsay', 1959, 'M', 117), +(80884, 'Chet', 1959, 'M', 116), +(80885, 'Denver', 1959, 'M', 116), +(80886, 'Sonny', 1959, 'M', 116), +(80887, 'Butch', 1959, 'M', 115), +(80888, 'Carlo', 1959, 'M', 115), +(80889, 'Carmine', 1959, 'M', 115), +(80890, 'Blane', 1959, 'M', 114), +(80891, 'Arlen', 1959, 'M', 113), +(80892, 'Dwaine', 1959, 'M', 113), +(80893, 'Marcel', 1959, 'M', 113), +(80894, 'Maynard', 1959, 'M', 113), +(80895, 'Edwardo', 1959, 'M', 112), +(80896, 'Graham', 1959, 'M', 112), +(80897, 'Jerold', 1959, 'M', 112), +(80898, 'Richie', 1959, 'M', 112), +(80899, 'Riley', 1959, 'M', 112), +(80900, 'Gale', 1959, 'M', 111), +(80901, 'Adolfo', 1959, 'M', 110), +(80902, 'Millard', 1959, 'M', 110), +(80903, 'Von', 1959, 'M', 110), +(80904, 'Basil', 1959, 'M', 109), +(80905, 'Johnathan', 1959, 'M', 109), +(80906, 'Kimberly', 1959, 'M', 109), +(80907, 'Ollie', 1959, 'M', 109), +(80908, 'Randel', 1959, 'M', 109), +(80909, 'Noe', 1959, 'M', 108), +(80910, 'Emmanuel', 1959, 'M', 107), +(80911, 'Harris', 1959, 'M', 107), +(80912, 'Hiram', 1959, 'M', 107), +(80913, 'Sal', 1959, 'M', 107), +(80914, 'Delmar', 1959, 'M', 106), +(80915, 'Emery', 1959, 'M', 106), +(80916, 'Lupe', 1959, 'M', 106), +(80917, 'Major', 1959, 'M', 106), +(80918, 'Duke', 1959, 'M', 105), +(80919, 'Jacques', 1959, 'M', 105), +(80920, 'Benito', 1959, 'M', 104), +(80921, 'Gail', 1959, 'M', 104), +(80922, 'Lemuel', 1959, 'M', 104), +(80923, 'Taylor', 1959, 'M', 104), +(80924, 'Damian', 1959, 'M', 103), +(80925, 'Johnie', 1959, 'M', 103), +(80926, 'Darrin', 1959, 'M', 102), +(80927, 'Isiah', 1959, 'M', 102), +(80928, 'Merrill', 1959, 'M', 102), +(80929, 'Stanford', 1959, 'M', 102), +(80930, 'Broderick', 1959, 'M', 101), +(80931, 'Douglass', 1959, 'M', 101), +(80932, 'Keven', 1959, 'M', 101), +(80933, 'Lesley', 1959, 'M', 101), +(80934, 'Scottie', 1959, 'M', 101), +(80935, 'Flint', 1959, 'M', 100), +(80936, 'Judson', 1959, 'M', 100), +(80937, 'Mary', 1960, 'F', 51479), +(80938, 'Susan', 1960, 'F', 39201), +(80939, 'Linda', 1960, 'F', 37315), +(80940, 'Karen', 1960, 'F', 36381), +(80941, 'Donna', 1960, 'F', 34133), +(80942, 'Lisa', 1960, 'F', 33705), +(80943, 'Patricia', 1960, 'F', 32104), +(80944, 'Debra', 1960, 'F', 26737), +(80945, 'Cynthia', 1960, 'F', 26725), +(80946, 'Deborah', 1960, 'F', 25273), +(80947, 'Sandra', 1960, 'F', 24572), +(80948, 'Barbara', 1960, 'F', 24444), +(80949, 'Brenda', 1960, 'F', 23956), +(80950, 'Pamela', 1960, 'F', 22097), +(80951, 'Nancy', 1960, 'F', 21898), +(80952, 'Sharon', 1960, 'F', 20425), +(80953, 'Cheryl', 1960, 'F', 19128), +(80954, 'Elizabeth', 1960, 'F', 18857), +(80955, 'Teresa', 1960, 'F', 18831), +(80956, 'Lori', 1960, 'F', 18685), +(80957, 'Kathy', 1960, 'F', 18478), +(80958, 'Diane', 1960, 'F', 17898), +(80959, 'Carol', 1960, 'F', 17463), +(80960, 'Laura', 1960, 'F', 17063), +(80961, 'Debbie', 1960, 'F', 17053), +(80962, 'Kimberly', 1960, 'F', 16855), +(80963, 'Kathleen', 1960, 'F', 16090), +(80964, 'Julie', 1960, 'F', 16077), +(80965, 'Denise', 1960, 'F', 15070), +(80966, 'Cindy', 1960, 'F', 14950), +(80967, 'Tammy', 1960, 'F', 14311), +(80968, 'Janet', 1960, 'F', 14250), +(80969, 'Robin', 1960, 'F', 13979), +(80970, 'Kim', 1960, 'F', 12474), +(80971, 'Theresa', 1960, 'F', 11845), +(80972, 'Margaret', 1960, 'F', 11367), +(80973, 'Laurie', 1960, 'F', 10144), +(80974, 'Rebecca', 1960, 'F', 9970), +(80975, 'Michelle', 1960, 'F', 9896), +(80976, 'Christine', 1960, 'F', 9880), +(80977, 'Janice', 1960, 'F', 9619), +(80978, 'Catherine', 1960, 'F', 9536), +(80979, 'Carolyn', 1960, 'F', 9409), +(80980, 'Rhonda', 1960, 'F', 9258), +(80981, 'Cathy', 1960, 'F', 9138), +(80982, 'Tina', 1960, 'F', 9128), +(80983, 'Connie', 1960, 'F', 8875), +(80984, 'Judy', 1960, 'F', 8864), +(80985, 'Terri', 1960, 'F', 8745), +(80986, 'Angela', 1960, 'F', 8680), +(80987, 'Kelly', 1960, 'F', 8680), +(80988, 'Ann', 1960, 'F', 8677), +(80989, 'Diana', 1960, 'F', 8330), +(80990, 'Sherry', 1960, 'F', 8312), +(80991, 'Paula', 1960, 'F', 8066), +(80992, 'Sheila', 1960, 'F', 7909), +(80993, 'Dawn', 1960, 'F', 7813), +(80994, 'Joyce', 1960, 'F', 7750), +(80995, 'Maria', 1960, 'F', 7521), +(80996, 'Beverly', 1960, 'F', 7394), +(80997, 'Jennifer', 1960, 'F', 7242), +(80998, 'Annette', 1960, 'F', 7139), +(80999, 'Wendy', 1960, 'F', 6868), +(81000, 'Lynn', 1960, 'F', 6851), +(81001, 'Valerie', 1960, 'F', 6717), +(81002, 'Wanda', 1960, 'F', 6675), +(81003, 'Jane', 1960, 'F', 6584), +(81004, 'Betty', 1960, 'F', 6503), +(81005, 'Peggy', 1960, 'F', 6433), +(81006, 'Shirley', 1960, 'F', 6411), +(81007, 'Bonnie', 1960, 'F', 6393), +(81008, 'Beth', 1960, 'F', 6260), +(81009, 'Vicki', 1960, 'F', 6161), +(81010, 'Judith', 1960, 'F', 6150), +(81011, 'Darlene', 1960, 'F', 6100), +(81012, 'Jill', 1960, 'F', 6018), +(81013, 'Amy', 1960, 'F', 5971), +(81014, 'Suzanne', 1960, 'F', 5966), +(81015, 'Gloria', 1960, 'F', 5957), +(81016, 'Katherine', 1960, 'F', 5879), +(81017, 'Joan', 1960, 'F', 5878), +(81018, 'Kathryn', 1960, 'F', 5868), +(81019, 'Martha', 1960, 'F', 5831), +(81020, 'Tracy', 1960, 'F', 5771), +(81021, 'Jacqueline', 1960, 'F', 5650), +(81022, 'Jean', 1960, 'F', 5640), +(81023, 'Anita', 1960, 'F', 5636), +(81024, 'Anne', 1960, 'F', 5632), +(81025, 'Michele', 1960, 'F', 5612), +(81026, 'Gail', 1960, 'F', 5419), +(81027, 'Stephanie', 1960, 'F', 5266), +(81028, 'Leslie', 1960, 'F', 5238), +(81029, 'Renee', 1960, 'F', 5205), +(81030, 'Ellen', 1960, 'F', 5138), +(81031, 'Dorothy', 1960, 'F', 5077), +(81032, 'Rita', 1960, 'F', 5027), +(81033, 'Ruth', 1960, 'F', 4943), +(81034, 'Rose', 1960, 'F', 4889), +(81035, 'Joanne', 1960, 'F', 4875), +(81036, 'Vickie', 1960, 'F', 4862), +(81037, 'Terry', 1960, 'F', 4842), +(81038, 'Virginia', 1960, 'F', 4786), +(81039, 'Marie', 1960, 'F', 4723), +(81040, 'Anna', 1960, 'F', 4652), +(81041, 'Regina', 1960, 'F', 4587), +(81042, 'Maureen', 1960, 'F', 4522), +(81043, 'Colleen', 1960, 'F', 4447), +(81044, 'Phyllis', 1960, 'F', 4435), +(81045, 'Melissa', 1960, 'F', 4415), +(81046, 'Carla', 1960, 'F', 4373), +(81047, 'Becky', 1960, 'F', 4325), +(81048, 'Elaine', 1960, 'F', 4314), +(81049, 'Penny', 1960, 'F', 4307), +(81050, 'Victoria', 1960, 'F', 4301), +(81051, 'Andrea', 1960, 'F', 4217), +(81052, 'Sarah', 1960, 'F', 4207), +(81053, 'Helen', 1960, 'F', 4070), +(81054, 'Marilyn', 1960, 'F', 4069), +(81055, 'Alice', 1960, 'F', 4048), +(81056, 'Sue', 1960, 'F', 4010), +(81057, 'Sylvia', 1960, 'F', 3823), +(81058, 'Julia', 1960, 'F', 3789), +(81059, 'Sally', 1960, 'F', 3756), +(81060, 'Tamara', 1960, 'F', 3663), +(81061, 'Melanie', 1960, 'F', 3661), +(81062, 'Sandy', 1960, 'F', 3649), +(81063, 'Frances', 1960, 'F', 3590), +(81064, 'Gina', 1960, 'F', 3565), +(81065, 'Jeanne', 1960, 'F', 3509), +(81066, 'Eileen', 1960, 'F', 3496), +(81067, 'Joann', 1960, 'F', 3413), +(81068, 'Pam', 1960, 'F', 3409), +(81069, 'Yvonne', 1960, 'F', 3399), +(81070, 'Jo', 1960, 'F', 3374), +(81071, 'Lorraine', 1960, 'F', 3332), +(81072, 'Sherri', 1960, 'F', 3310), +(81073, 'Evelyn', 1960, 'F', 3224), +(81074, 'Loretta', 1960, 'F', 3187), +(81075, 'Carrie', 1960, 'F', 3148), +(81076, 'Dana', 1960, 'F', 3091), +(81077, 'Monica', 1960, 'F', 3088), +(81078, 'Sheryl', 1960, 'F', 3057), +(81079, 'Melinda', 1960, 'F', 3046), +(81080, 'Jackie', 1960, 'F', 2989), +(81081, 'Patty', 1960, 'F', 2936), +(81082, 'Toni', 1960, 'F', 2900), +(81083, 'Doris', 1960, 'F', 2899), +(81084, 'Charlene', 1960, 'F', 2895), +(81085, 'Roberta', 1960, 'F', 2843), +(81086, 'Belinda', 1960, 'F', 2819), +(81087, 'Charlotte', 1960, 'F', 2780), +(81088, 'Joy', 1960, 'F', 2775), +(81089, 'Melody', 1960, 'F', 2757), +(81090, 'Vanessa', 1960, 'F', 2713), +(81091, 'Christina', 1960, 'F', 2712), +(81092, 'Glenda', 1960, 'F', 2690), +(81093, 'Marcia', 1960, 'F', 2690), +(81094, 'Shelly', 1960, 'F', 2688), +(81095, 'Jeanette', 1960, 'F', 2650), +(81096, 'Dianne', 1960, 'F', 2623), +(81097, 'Holly', 1960, 'F', 2580), +(81098, 'Norma', 1960, 'F', 2560), +(81099, 'Gwendolyn', 1960, 'F', 2552), +(81100, 'Lynne', 1960, 'F', 2459), +(81101, 'Patti', 1960, 'F', 2457), +(81102, 'Jan', 1960, 'F', 2448), +(81103, 'Carmen', 1960, 'F', 2440), +(81104, 'Veronica', 1960, 'F', 2429), +(81105, 'Vicky', 1960, 'F', 2372), +(81106, 'Heidi', 1960, 'F', 2343), +(81107, 'Yolanda', 1960, 'F', 2331), +(81108, 'Teri', 1960, 'F', 2329), +(81109, 'Deanna', 1960, 'F', 2294), +(81110, 'Audrey', 1960, 'F', 2278), +(81111, 'Lois', 1960, 'F', 2272), +(81112, 'Tami', 1960, 'F', 2261), +(81113, 'Shelia', 1960, 'F', 2258), +(81114, 'Marsha', 1960, 'F', 2237), +(81115, 'Sheri', 1960, 'F', 2212), +(81116, 'Jamie', 1960, 'F', 2203), +(81117, 'Rosemary', 1960, 'F', 2189), +(81118, 'Shelley', 1960, 'F', 2138), +(81119, 'Lynda', 1960, 'F', 2124), +(81120, 'Juanita', 1960, 'F', 2097), +(81121, 'Tammie', 1960, 'F', 2072), +(81122, 'Sara', 1960, 'F', 2038), +(81123, 'Irene', 1960, 'F', 2031), +(81124, 'Vivian', 1960, 'F', 2020), +(81125, 'Crystal', 1960, 'F', 2001), +(81126, 'Tracey', 1960, 'F', 1959), +(81127, 'April', 1960, 'F', 1931), +(81128, 'Kay', 1960, 'F', 1924), +(81129, 'Roxanne', 1960, 'F', 1920), +(81130, 'Doreen', 1960, 'F', 1909), +(81131, 'Shari', 1960, 'F', 1889), +(81132, 'Jody', 1960, 'F', 1841), +(81133, 'Rosa', 1960, 'F', 1828), +(81134, 'Rachel', 1960, 'F', 1792), +(81135, 'Louise', 1960, 'F', 1785), +(81136, 'Marianne', 1960, 'F', 1780), +(81137, 'Constance', 1960, 'F', 1734), +(81138, 'Darla', 1960, 'F', 1725), +(81139, 'Carole', 1960, 'F', 1689), +(81140, 'Eva', 1960, 'F', 1685), +(81141, 'Lydia', 1960, 'F', 1668), +(81142, 'Karla', 1960, 'F', 1654), +(81143, 'Dianna', 1960, 'F', 1653), +(81144, 'Marlene', 1960, 'F', 1646), +(81145, 'June', 1960, 'F', 1645), +(81146, 'Alicia', 1960, 'F', 1642), +(81147, 'Arlene', 1960, 'F', 1624), +(81148, 'Grace', 1960, 'F', 1568), +(81149, 'Jodi', 1960, 'F', 1562), +(81150, 'Debora', 1960, 'F', 1553), +(81151, 'Ramona', 1960, 'F', 1553), +(81152, 'Natalie', 1960, 'F', 1550), +(81153, 'Tanya', 1960, 'F', 1543), +(81154, 'Lee', 1960, 'F', 1535), +(81155, 'Chris', 1960, 'F', 1509), +(81156, 'Gayle', 1960, 'F', 1492), +(81157, 'Annie', 1960, 'F', 1478), +(81158, 'Stacy', 1960, 'F', 1451), +(81159, 'Lillian', 1960, 'F', 1430), +(81160, 'Geraldine', 1960, 'F', 1428), +(81161, 'Bernadette', 1960, 'F', 1426), +(81162, 'Yvette', 1960, 'F', 1425), +(81163, 'Cheri', 1960, 'F', 1407), +(81164, 'Felicia', 1960, 'F', 1398), +(81165, 'Ruby', 1960, 'F', 1391), +(81166, 'Joni', 1960, 'F', 1388), +(81167, 'Janine', 1960, 'F', 1380), +(81168, 'Dolores', 1960, 'F', 1368), +(81169, 'Esther', 1960, 'F', 1364), +(81170, 'Ronda', 1960, 'F', 1360), +(81171, 'Jenny', 1960, 'F', 1352), +(81172, 'Delores', 1960, 'F', 1346), +(81173, 'Marjorie', 1960, 'F', 1346), +(81174, 'Nora', 1960, 'F', 1345), +(81175, 'Lauren', 1960, 'F', 1334), +(81176, 'Sherrie', 1960, 'F', 1333), +(81177, 'Maryann', 1960, 'F', 1331), +(81178, 'Tonya', 1960, 'F', 1328), +(81179, 'Edith', 1960, 'F', 1283), +(81180, 'Cassandra', 1960, 'F', 1280), +(81181, 'Sonya', 1960, 'F', 1276), +(81182, 'Alison', 1960, 'F', 1267), +(81183, 'Betsy', 1960, 'F', 1252), +(81184, 'Nina', 1960, 'F', 1236), +(81185, 'Robyn', 1960, 'F', 1227), +(81186, 'Stacey', 1960, 'F', 1227), +(81187, 'Emily', 1960, 'F', 1223), +(81188, 'Priscilla', 1960, 'F', 1213), +(81189, 'Caroline', 1960, 'F', 1212), +(81190, 'Lynette', 1960, 'F', 1212), +(81191, 'Susie', 1960, 'F', 1204), +(81192, 'Lora', 1960, 'F', 1203), +(81193, 'Kimberley', 1960, 'F', 1202), +(81194, 'Therese', 1960, 'F', 1197), +(81195, 'Claudia', 1960, 'F', 1193), +(81196, 'Margie', 1960, 'F', 1174), +(81197, 'Myra', 1960, 'F', 1173), +(81198, 'Christy', 1960, 'F', 1163), +(81199, 'Josephine', 1960, 'F', 1159), +(81200, 'Bridget', 1960, 'F', 1156), +(81201, 'Erin', 1960, 'F', 1153), +(81202, 'Ginger', 1960, 'F', 1139), +(81203, 'Lucy', 1960, 'F', 1133), +(81204, 'Pauline', 1960, 'F', 1114), +(81205, 'Terrie', 1960, 'F', 1110), +(81206, 'Edna', 1960, 'F', 1107), +(81207, 'Patsy', 1960, 'F', 1107), +(81208, 'Marla', 1960, 'F', 1086), +(81209, 'Janie', 1960, 'F', 1084), +(81210, 'Kristine', 1960, 'F', 1082), +(81211, 'Mildred', 1960, 'F', 1080), +(81212, 'Mona', 1960, 'F', 1079), +(81213, 'Allison', 1960, 'F', 1070), +(81214, 'Kristi', 1960, 'F', 1058), +(81215, 'Jeannie', 1960, 'F', 1056), +(81216, 'Miriam', 1960, 'F', 1053), +(81217, 'Lorrie', 1960, 'F', 1052), +(81218, 'Jacquelyn', 1960, 'F', 1045), +(81219, 'Cecilia', 1960, 'F', 1036), +(81220, 'Patrice', 1960, 'F', 1033), +(81221, 'Francine', 1960, 'F', 1022), +(81222, 'Marian', 1960, 'F', 1019), +(81223, 'Lorie', 1960, 'F', 1015), +(81224, 'Shannon', 1960, 'F', 1014), +(81225, 'Bobbie', 1960, 'F', 1005), +(81226, 'Kelley', 1960, 'F', 1003), +(81227, 'Rosemarie', 1960, 'F', 997), +(81228, 'Angie', 1960, 'F', 989), +(81229, 'Georgia', 1960, 'F', 988), +(81230, 'Sabrina', 1960, 'F', 985), +(81231, 'Emma', 1960, 'F', 981), +(81232, 'Jana', 1960, 'F', 980), +(81233, 'Amanda', 1960, 'F', 977), +(81234, 'Heather', 1960, 'F', 972), +(81235, 'Nadine', 1960, 'F', 969), +(81236, 'Irma', 1960, 'F', 957), +(81237, 'Kelli', 1960, 'F', 955), +(81238, 'Kerry', 1960, 'F', 953), +(81239, 'Cathleen', 1960, 'F', 951), +(81240, 'Sonia', 1960, 'F', 950), +(81241, 'Jeannette', 1960, 'F', 937), +(81242, 'Gretchen', 1960, 'F', 934), +(81243, 'Antoinette', 1960, 'F', 933), +(81244, 'Dora', 1960, 'F', 926), +(81245, 'Clara', 1960, 'F', 914), +(81246, 'Rochelle', 1960, 'F', 911), +(81247, 'Beatrice', 1960, 'F', 910), +(81248, 'Jayne', 1960, 'F', 909), +(81249, 'Rene', 1960, 'F', 909), +(81250, 'Vera', 1960, 'F', 902), +(81251, 'Claire', 1960, 'F', 899), +(81252, 'Bonita', 1960, 'F', 893), +(81253, 'Gwen', 1960, 'F', 893), +(81254, 'Faith', 1960, 'F', 873), +(81255, 'Bernice', 1960, 'F', 871), +(81256, 'Gladys', 1960, 'F', 861), +(81257, 'Janis', 1960, 'F', 856), +(81258, 'Paulette', 1960, 'F', 854), +(81259, 'Bertha', 1960, 'F', 852), +(81260, 'Jeanine', 1960, 'F', 848), +(81261, 'Candace', 1960, 'F', 843), +(81262, 'Thelma', 1960, 'F', 838), +(81263, 'Candy', 1960, 'F', 827), +(81264, 'Eleanor', 1960, 'F', 826), +(81265, 'Joanna', 1960, 'F', 820), +(81266, 'Marion', 1960, 'F', 812), +(81267, 'Lucinda', 1960, 'F', 809), +(81268, 'Jennie', 1960, 'F', 807), +(81269, 'Laurel', 1960, 'F', 788), +(81270, 'Alma', 1960, 'F', 787), +(81271, 'Kellie', 1960, 'F', 786), +(81272, 'Billie', 1960, 'F', 782), +(81273, 'Faye', 1960, 'F', 782), +(81274, 'Iris', 1960, 'F', 778), +(81275, 'Lana', 1960, 'F', 776), +(81276, 'Kristin', 1960, 'F', 774), +(81277, 'Naomi', 1960, 'F', 774), +(81278, 'Leticia', 1960, 'F', 773), +(81279, 'Leah', 1960, 'F', 771), +(81280, 'Leigh', 1960, 'F', 771), +(81281, 'Katrina', 1960, 'F', 770), +(81282, 'Celeste', 1960, 'F', 763), +(81283, 'Shawn', 1960, 'F', 758), +(81284, 'Jeri', 1960, 'F', 757), +(81285, 'Sonja', 1960, 'F', 757), +(81286, 'Pat', 1960, 'F', 756), +(81287, 'Kari', 1960, 'F', 749), +(81288, 'Ella', 1960, 'F', 748), +(81289, 'Della', 1960, 'F', 745), +(81290, 'Rosie', 1960, 'F', 744), +(81291, 'Dena', 1960, 'F', 739), +(81292, 'Florence', 1960, 'F', 738), +(81293, 'Ida', 1960, 'F', 738), +(81294, 'Karin', 1960, 'F', 736), +(81295, 'Ethel', 1960, 'F', 730), +(81296, 'Luann', 1960, 'F', 730), +(81297, 'Molly', 1960, 'F', 730), +(81298, 'Wilma', 1960, 'F', 719), +(81299, 'Trudy', 1960, 'F', 718), +(81300, 'Lauri', 1960, 'F', 705), +(81301, 'Nanette', 1960, 'F', 696), +(81302, 'Tara', 1960, 'F', 687), +(81303, 'Lesa', 1960, 'F', 685), +(81304, 'Kathi', 1960, 'F', 681), +(81305, 'Lorna', 1960, 'F', 678), +(81306, 'Lucille', 1960, 'F', 676), +(81307, 'Traci', 1960, 'F', 673), +(81308, 'Debby', 1960, 'F', 670), +(81309, 'Trina', 1960, 'F', 661), +(81310, 'Cherie', 1960, 'F', 657), +(81311, 'Rosalind', 1960, 'F', 650), +(81312, 'Adrienne', 1960, 'F', 645), +(81313, 'Liz', 1960, 'F', 639), +(81314, 'Jeannine', 1960, 'F', 637), +(81315, 'Gay', 1960, 'F', 628), +(81316, 'Marcella', 1960, 'F', 627), +(81317, 'Monique', 1960, 'F', 627), +(81318, 'Stella', 1960, 'F', 620), +(81319, 'Ana', 1960, 'F', 619), +(81320, 'Polly', 1960, 'F', 612), +(81321, 'Olga', 1960, 'F', 607), +(81322, 'Lillie', 1960, 'F', 604), +(81323, 'Leanne', 1960, 'F', 601), +(81324, 'Maxine', 1960, 'F', 594), +(81325, 'Katie', 1960, 'F', 593), +(81326, 'Lou', 1960, 'F', 593), +(81327, 'Mindy', 1960, 'F', 589), +(81328, 'Willie', 1960, 'F', 589), +(81329, 'Gale', 1960, 'F', 587), +(81330, 'Alisa', 1960, 'F', 586), +(81331, 'Christie', 1960, 'F', 585), +(81332, 'Leann', 1960, 'F', 580), +(81333, 'Hazel', 1960, 'F', 577), +(81334, 'Kris', 1960, 'F', 577), +(81335, 'Madeline', 1960, 'F', 573), +(81336, 'Hope', 1960, 'F', 570), +(81337, 'Suzette', 1960, 'F', 570), +(81338, 'Deirdre', 1960, 'F', 568), +(81339, 'Tamra', 1960, 'F', 565), +(81340, 'Janette', 1960, 'F', 561), +(81341, 'Susanne', 1960, 'F', 560), +(81342, 'Jessica', 1960, 'F', 559), +(81343, 'Cecelia', 1960, 'F', 558), +(81344, 'Velma', 1960, 'F', 558), +(81345, 'Tamera', 1960, 'F', 556), +(81346, 'Dina', 1960, 'F', 554), +(81347, 'Corinne', 1960, 'F', 553), +(81348, 'Jerri', 1960, 'F', 550), +(81349, 'Tracie', 1960, 'F', 549), +(81350, 'Kristen', 1960, 'F', 543), +(81351, 'Amelia', 1960, 'F', 541), +(81352, 'Celia', 1960, 'F', 541), +(81353, 'Dale', 1960, 'F', 536), +(81354, 'Kristy', 1960, 'F', 536), +(81355, 'Verna', 1960, 'F', 534), +(81356, 'Valarie', 1960, 'F', 533), +(81357, 'Desiree', 1960, 'F', 530), +(81358, 'Ladonna', 1960, 'F', 529), +(81359, 'Lorri', 1960, 'F', 528), +(81360, 'Marcy', 1960, 'F', 527), +(81361, 'Tammi', 1960, 'F', 526), +(81362, 'Colette', 1960, 'F', 525), +(81363, 'Jolene', 1960, 'F', 522), +(81364, 'Rosalie', 1960, 'F', 521), +(81365, 'Lena', 1960, 'F', 519), +(81366, 'Marguerite', 1960, 'F', 518), +(81367, 'Rena', 1960, 'F', 517), +(81368, 'Elisa', 1960, 'F', 515), +(81369, 'Dee', 1960, 'F', 512), +(81370, 'Jessie', 1960, 'F', 510), +(81371, 'Jodie', 1960, 'F', 504), +(81372, 'Camille', 1960, 'F', 498), +(81373, 'Laverne', 1960, 'F', 498), +(81374, 'Margarita', 1960, 'F', 497), +(81375, 'Sondra', 1960, 'F', 497), +(81376, 'Barb', 1960, 'F', 493), +(81377, 'Noreen', 1960, 'F', 493), +(81378, 'Olivia', 1960, 'F', 484), +(81379, 'Darcy', 1960, 'F', 482), +(81380, 'Lynnette', 1960, 'F', 480), +(81381, 'Delia', 1960, 'F', 479), +(81382, 'Kerri', 1960, 'F', 477), +(81383, 'Benita', 1960, 'F', 475), +(81384, 'Angelia', 1960, 'F', 474), +(81385, 'Lenora', 1960, 'F', 472), +(81386, 'Harriet', 1960, 'F', 471), +(81387, 'Kathie', 1960, 'F', 470), +(81388, 'Maryellen', 1960, 'F', 468), +(81389, 'Daisy', 1960, 'F', 463), +(81390, 'Robbie', 1960, 'F', 463), +(81391, 'Leona', 1960, 'F', 462), +(81392, 'Hilda', 1960, 'F', 458), +(81393, 'Dixie', 1960, 'F', 457), +(81394, 'Cindi', 1960, 'F', 455), +(81395, 'Cora', 1960, 'F', 455), +(81396, 'Ingrid', 1960, 'F', 455), +(81397, 'Danette', 1960, 'F', 452), +(81398, 'Freda', 1960, 'F', 449), +(81399, 'Mitzi', 1960, 'F', 449), +(81400, 'Robbin', 1960, 'F', 443), +(81401, 'Janelle', 1960, 'F', 442), +(81402, 'Guadalupe', 1960, 'F', 441), +(81403, 'Elena', 1960, 'F', 432), +(81404, 'Helene', 1960, 'F', 432), +(81405, 'Deana', 1960, 'F', 431), +(81406, 'Geneva', 1960, 'F', 430), +(81407, 'Agnes', 1960, 'F', 429), +(81408, 'Viola', 1960, 'F', 429), +(81409, 'Deanne', 1960, 'F', 428), +(81410, 'Deloris', 1960, 'F', 428), +(81411, 'Marybeth', 1960, 'F', 427), +(81412, 'Judi', 1960, 'F', 426), +(81413, 'Kristina', 1960, 'F', 424), +(81414, 'Roseann', 1960, 'F', 423), +(81415, 'Margo', 1960, 'F', 422), +(81416, 'Mattie', 1960, 'F', 421), +(81417, 'Bobbi', 1960, 'F', 420), +(81418, 'Kimberlee', 1960, 'F', 415), +(81419, 'Lola', 1960, 'F', 413), +(81420, 'Randi', 1960, 'F', 411), +(81421, 'Christi', 1960, 'F', 409), +(81422, 'Johnnie', 1960, 'F', 405), +(81423, 'Coleen', 1960, 'F', 404), +(81424, 'Ernestine', 1960, 'F', 401), +(81425, 'Gayla', 1960, 'F', 399), +(81426, 'Luanne', 1960, 'F', 397), +(81427, 'Jeanie', 1960, 'F', 395), +(81428, 'Isabel', 1960, 'F', 393), +(81429, 'Bessie', 1960, 'F', 386), +(81430, 'Tamela', 1960, 'F', 383), +(81431, 'Reba', 1960, 'F', 382), +(81432, 'Rosanne', 1960, 'F', 382), +(81433, 'Maryanne', 1960, 'F', 379), +(81434, 'Alberta', 1960, 'F', 375), +(81435, 'Bridgette', 1960, 'F', 375), +(81436, 'Denice', 1960, 'F', 375), +(81437, 'Elisabeth', 1960, 'F', 374), +(81438, 'Lea', 1960, 'F', 374), +(81439, 'Myrna', 1960, 'F', 374), +(81440, 'Elise', 1960, 'F', 373), +(81441, 'Pearl', 1960, 'F', 370), +(81442, 'Megan', 1960, 'F', 366), +(81443, 'Nellie', 1960, 'F', 364), +(81444, 'Sallie', 1960, 'F', 362), +(81445, 'Debi', 1960, 'F', 357), +(81446, 'Diann', 1960, 'F', 356), +(81447, 'Sandi', 1960, 'F', 353), +(81448, 'Alesia', 1960, 'F', 352), +(81449, 'Annmarie', 1960, 'F', 352), +(81450, 'Ada', 1960, 'F', 351), +(81451, 'Laureen', 1960, 'F', 349), +(81452, 'Minnie', 1960, 'F', 349), +(81453, 'Elsie', 1960, 'F', 348), +(81454, 'Eugenia', 1960, 'F', 348), +(81455, 'Mae', 1960, 'F', 347), +(81456, 'Marta', 1960, 'F', 346), +(81457, 'Tonia', 1960, 'F', 346), +(81458, 'Felecia', 1960, 'F', 345), +(81459, 'Mari', 1960, 'F', 342), +(81460, 'Tricia', 1960, 'F', 342), +(81461, 'Flora', 1960, 'F', 340), +(81462, 'Deidre', 1960, 'F', 339), +(81463, 'Marina', 1960, 'F', 339), +(81464, 'Marisa', 1960, 'F', 336), +(81465, 'Roxann', 1960, 'F', 333), +(81466, 'Maura', 1960, 'F', 332), +(81467, 'Claudette', 1960, 'F', 329), +(81468, 'Ava', 1960, 'F', 327), +(81469, 'Eunice', 1960, 'F', 326), +(81470, 'Saundra', 1960, 'F', 326), +(81471, 'Maggie', 1960, 'F', 325), +(81472, 'Julianne', 1960, 'F', 324), +(81473, 'Greta', 1960, 'F', 322), +(81474, 'Clare', 1960, 'F', 321), +(81475, 'Kristie', 1960, 'F', 321), +(81476, 'Frankie', 1960, 'F', 320), +(81477, 'Rosalyn', 1960, 'F', 320), +(81478, 'Violet', 1960, 'F', 320), +(81479, 'Carlene', 1960, 'F', 318), +(81480, 'Geri', 1960, 'F', 318), +(81481, 'Michael', 1960, 'F', 318), +(81482, 'Tena', 1960, 'F', 318), +(81483, 'Gracie', 1960, 'F', 317), +(81484, 'Penelope', 1960, 'F', 317), +(81485, 'Malinda', 1960, 'F', 316), +(81486, 'Brigitte', 1960, 'F', 314), +(81487, 'Krista', 1960, 'F', 314), +(81488, 'Renita', 1960, 'F', 314), +(81489, 'Danielle', 1960, 'F', 313), +(81490, 'Melodie', 1960, 'F', 311), +(81491, 'Dona', 1960, 'F', 310), +(81492, 'Stacie', 1960, 'F', 310), +(81493, 'Johanna', 1960, 'F', 309), +(81494, 'Nita', 1960, 'F', 309), +(81495, 'Shelby', 1960, 'F', 308), +(81496, 'Sharron', 1960, 'F', 307), +(81497, 'Josie', 1960, 'F', 305), +(81498, 'Katharine', 1960, 'F', 305), +(81499, 'Twila', 1960, 'F', 304), +(81500, 'Lorene', 1960, 'F', 303), +(81501, 'Eve', 1960, 'F', 302), +(81502, 'Renae', 1960, 'F', 302), +(81503, 'Deann', 1960, 'F', 301), +(81504, 'Leisa', 1960, 'F', 298), +(81505, 'Rosetta', 1960, 'F', 298), +(81506, 'Blanca', 1960, 'F', 297), +(81507, 'Rachelle', 1960, 'F', 297), +(81508, 'Roslyn', 1960, 'F', 296), +(81509, 'Daphne', 1960, 'F', 295), +(81510, 'Dinah', 1960, 'F', 295), +(81511, 'Leeann', 1960, 'F', 295), +(81512, 'Maryjo', 1960, 'F', 293), +(81513, 'Danita', 1960, 'F', 292), +(81514, 'Kaye', 1960, 'F', 291), +(81515, 'Lila', 1960, 'F', 291), +(81516, 'Lourdes', 1960, 'F', 291), +(81517, 'Suzan', 1960, 'F', 289), +(81518, 'Hattie', 1960, 'F', 288), +(81519, 'James', 1960, 'F', 288), +(81520, 'Caren', 1960, 'F', 287), +(81521, 'Glenna', 1960, 'F', 287), +(81522, 'Luz', 1960, 'F', 287), +(81523, 'Kendra', 1960, 'F', 285), +(81524, 'Estella', 1960, 'F', 284), +(81525, 'Amber', 1960, 'F', 282), +(81526, 'Pamala', 1960, 'F', 281), +(81527, 'Roxane', 1960, 'F', 281), +(81528, 'Elsa', 1960, 'F', 280), +(81529, 'Fran', 1960, 'F', 280), +(81530, 'Deena', 1960, 'F', 278), +(81531, 'Lorena', 1960, 'F', 278), +(81532, 'Alfreda', 1960, 'F', 276), +(81533, 'Dorothea', 1960, 'F', 276), +(81534, 'Rosalinda', 1960, 'F', 276), +(81535, 'Lisha', 1960, 'F', 275), +(81536, 'Fay', 1960, 'F', 274), +(81537, 'Ilene', 1960, 'F', 274), +(81538, 'Merry', 1960, 'F', 274), +(81539, 'Genevieve', 1960, 'F', 273), +(81540, 'Ivy', 1960, 'F', 273), +(81541, 'Henrietta', 1960, 'F', 272), +(81542, 'Ruthie', 1960, 'F', 272), +(81543, 'Adele', 1960, 'F', 271), +(81544, 'Marcie', 1960, 'F', 271), +(81545, 'Robert', 1960, 'F', 271), +(81546, 'Patrica', 1960, 'F', 270), +(81547, 'Candice', 1960, 'F', 268), +(81548, 'Gaye', 1960, 'F', 268), +(81549, 'Angel', 1960, 'F', 267), +(81550, 'Gena', 1960, 'F', 267), +(81551, 'Vickey', 1960, 'F', 267), +(81552, 'Caryn', 1960, 'F', 266), +(81553, 'Teressa', 1960, 'F', 266), +(81554, 'Libby', 1960, 'F', 264), +(81555, 'Lupe', 1960, 'F', 264), +(81556, 'Jami', 1960, 'F', 263), +(81557, 'Kitty', 1960, 'F', 263), +(81558, 'Bernadine', 1960, 'F', 262), +(81559, 'Sophia', 1960, 'F', 262), +(81560, 'Charmaine', 1960, 'F', 260), +(81561, 'Gigi', 1960, 'F', 259), +(81562, 'Lucia', 1960, 'F', 259), +(81563, 'Allyson', 1960, 'F', 258), +(81564, 'Kirsten', 1960, 'F', 258), +(81565, 'Antonia', 1960, 'F', 257), +(81566, 'Pattie', 1960, 'F', 257), +(81567, 'Simone', 1960, 'F', 256), +(81568, 'Cathryn', 1960, 'F', 255), +(81569, 'Lenore', 1960, 'F', 255), +(81570, 'Melba', 1960, 'F', 255), +(81571, 'Roxanna', 1960, 'F', 254), +(81572, 'Arleen', 1960, 'F', 253), +(81573, 'Bambi', 1960, 'F', 252), +(81574, 'Georgette', 1960, 'F', 251), +(81575, 'Mamie', 1960, 'F', 250), +(81576, 'Marci', 1960, 'F', 250), +(81577, 'Geralyn', 1960, 'F', 249), +(81578, 'Meredith', 1960, 'F', 247), +(81579, 'Rae', 1960, 'F', 247), +(81580, 'Tamie', 1960, 'F', 247), +(81581, 'Sharlene', 1960, 'F', 246), +(81582, 'Lesley', 1960, 'F', 244), +(81583, 'Venita', 1960, 'F', 243), +(81584, 'Wendi', 1960, 'F', 243), +(81585, 'Erma', 1960, 'F', 242), +(81586, 'John', 1960, 'F', 242), +(81587, 'Nicole', 1960, 'F', 242), +(81588, 'Terese', 1960, 'F', 242), +(81589, 'Abby', 1960, 'F', 241), +(81590, 'Karyn', 1960, 'F', 241), +(81591, 'Lula', 1960, 'F', 241), +(81592, 'Sheree', 1960, 'F', 241), +(81593, 'Jenifer', 1960, 'F', 240), +(81594, 'Angelina', 1960, 'F', 239), +(81595, 'Keri', 1960, 'F', 239), +(81596, 'Inez', 1960, 'F', 237), +(81597, 'Corrine', 1960, 'F', 236), +(81598, 'Erica', 1960, 'F', 235), +(81599, 'Nelda', 1960, 'F', 235), +(81600, 'Cara', 1960, 'F', 234), +(81601, 'Janell', 1960, 'F', 234), +(81602, 'Antionette', 1960, 'F', 233), +(81603, 'Juli', 1960, 'F', 233), +(81604, 'Fannie', 1960, 'F', 231), +(81605, 'Ginny', 1960, 'F', 231), +(81606, 'Aileen', 1960, 'F', 229), +(81607, 'Dorene', 1960, 'F', 229), +(81608, 'Abigail', 1960, 'F', 228), +(81609, 'Jocelyn', 1960, 'F', 228), +(81610, 'Rhoda', 1960, 'F', 227), +(81611, 'Silvia', 1960, 'F', 227), +(81612, 'Jewel', 1960, 'F', 226), +(81613, 'Marylou', 1960, 'F', 226), +(81614, 'Debbi', 1960, 'F', 225), +(81615, 'Karol', 1960, 'F', 225), +(81616, 'Annemarie', 1960, 'F', 223), +(81617, 'Kyle', 1960, 'F', 223), +(81618, 'Susanna', 1960, 'F', 223), +(81619, 'Valorie', 1960, 'F', 223), +(81620, 'David', 1960, 'F', 222), +(81621, 'Cherry', 1960, 'F', 221), +(81622, 'Teena', 1960, 'F', 221), +(81623, 'Loraine', 1960, 'F', 220), +(81624, 'Althea', 1960, 'F', 218), +(81625, 'Lyn', 1960, 'F', 218), +(81626, 'Vikki', 1960, 'F', 218), +(81627, 'Avis', 1960, 'F', 217), +(81628, 'Bethany', 1960, 'F', 216), +(81629, 'Helena', 1960, 'F', 216), +(81630, 'Justine', 1960, 'F', 216), +(81631, 'Maritza', 1960, 'F', 216), +(81632, 'Etta', 1960, 'F', 214), +(81633, 'Shellie', 1960, 'F', 214), +(81634, 'Carmela', 1960, 'F', 213), +(81635, 'Gertrude', 1960, 'F', 213), +(81636, 'Migdalia', 1960, 'F', 213), +(81637, 'Misty', 1960, 'F', 212), +(81638, 'Earnestine', 1960, 'F', 211), +(81639, 'Janna', 1960, 'F', 210), +(81640, 'Dori', 1960, 'F', 209), +(81641, 'Louann', 1960, 'F', 209), +(81642, 'Shawna', 1960, 'F', 209), +(81643, 'Cheryle', 1960, 'F', 208), +(81644, 'Minerva', 1960, 'F', 208), +(81645, 'Tana', 1960, 'F', 208), +(81646, 'Kate', 1960, 'F', 207), +(81647, 'Marietta', 1960, 'F', 206), +(81648, 'Bridgett', 1960, 'F', 205), +(81649, 'Clarissa', 1960, 'F', 204), +(81650, 'Alexandra', 1960, 'F', 203), +(81651, 'Lawanda', 1960, 'F', 203), +(81652, 'Lesia', 1960, 'F', 203), +(81653, 'Shauna', 1960, 'F', 203), +(81654, 'Deb', 1960, 'F', 201), +(81655, 'Letitia', 1960, 'F', 201), +(81656, 'Selena', 1960, 'F', 199), +(81657, 'Gerri', 1960, 'F', 197), +(81658, 'Leesa', 1960, 'F', 197), +(81659, 'Mariann', 1960, 'F', 196), +(81660, 'Raquel', 1960, 'F', 196), +(81661, 'Cathie', 1960, 'F', 195), +(81662, 'Nikki', 1960, 'F', 195), +(81663, 'Rebekah', 1960, 'F', 194), +(81664, 'Francis', 1960, 'F', 193), +(81665, 'Madonna', 1960, 'F', 193), +(81666, 'Delphine', 1960, 'F', 192), +(81667, 'Edwina', 1960, 'F', 192), +(81668, 'Gabrielle', 1960, 'F', 192), +(81669, 'Lavonne', 1960, 'F', 192), +(81670, 'Karrie', 1960, 'F', 191), +(81671, 'Pennie', 1960, 'F', 191), +(81672, 'Kathrine', 1960, 'F', 190), +(81673, 'Maribeth', 1960, 'F', 190), +(81674, 'Shelli', 1960, 'F', 190), +(81675, 'Cari', 1960, 'F', 189), +(81676, 'Elva', 1960, 'F', 189), +(81677, 'Elvira', 1960, 'F', 189), +(81678, 'Starla', 1960, 'F', 189), +(81679, 'Cherri', 1960, 'F', 188), +(81680, 'Kandy', 1960, 'F', 188), +(81681, 'Paige', 1960, 'F', 188), +(81682, 'Vonda', 1960, 'F', 188), +(81683, 'Deidra', 1960, 'F', 187), +(81684, 'Eloise', 1960, 'F', 187), +(81685, 'Nannette', 1960, 'F', 186), +(81686, 'Dottie', 1960, 'F', 185), +(81687, 'Katy', 1960, 'F', 185), +(81688, 'Missy', 1960, 'F', 185), +(81689, 'Danna', 1960, 'F', 184), +(81690, 'Dolly', 1960, 'F', 184), +(81691, 'Karon', 1960, 'F', 184), +(81692, 'Bonny', 1960, 'F', 183), +(81693, 'Earlene', 1960, 'F', 183), +(81694, 'Fern', 1960, 'F', 183), +(81695, 'Letha', 1960, 'F', 180), +(81696, 'Venus', 1960, 'F', 180), +(81697, 'Juliana', 1960, 'F', 179), +(81698, 'Meg', 1960, 'F', 179), +(81699, 'Christa', 1960, 'F', 178), +(81700, 'Lucretia', 1960, 'F', 178), +(81701, 'Debrah', 1960, 'F', 177), +(81702, 'Valeria', 1960, 'F', 177), +(81703, 'Aurora', 1960, 'F', 176), +(81704, 'Cyndi', 1960, 'F', 176), +(81705, 'Erika', 1960, 'F', 176), +(81706, 'Collette', 1960, 'F', 175), +(81707, 'Dawna', 1960, 'F', 175), +(81708, 'Myrtle', 1960, 'F', 175), +(81709, 'Susana', 1960, 'F', 175), +(81710, 'Tresa', 1960, 'F', 175), +(81711, 'Bettie', 1960, 'F', 174), +(81712, 'Bettina', 1960, 'F', 174), +(81713, 'Graciela', 1960, 'F', 173), +(81714, 'Rosario', 1960, 'F', 173), +(81715, 'Juliet', 1960, 'F', 172), +(81716, 'Leila', 1960, 'F', 172), +(81717, 'Marva', 1960, 'F', 171), +(81718, 'Beverley', 1960, 'F', 170), +(81719, 'Debbra', 1960, 'F', 170), +(81720, 'Jacquline', 1960, 'F', 170), +(81721, 'Lu', 1960, 'F', 170), +(81722, 'Mollie', 1960, 'F', 170), +(81723, 'Alexis', 1960, 'F', 169), +(81724, 'Lela', 1960, 'F', 169), +(81725, 'Clarice', 1960, 'F', 168), +(81726, 'Cornelia', 1960, 'F', 168), +(81727, 'Esmeralda', 1960, 'F', 168), +(81728, 'Nola', 1960, 'F', 168), +(81729, 'Nona', 1960, 'F', 168), +(81730, 'Selina', 1960, 'F', 168), +(81731, 'Sherrill', 1960, 'F', 168), +(81732, 'Twyla', 1960, 'F', 168), +(81733, 'Dorinda', 1960, 'F', 167), +(81734, 'Joellen', 1960, 'F', 167), +(81735, 'Muriel', 1960, 'F', 167), +(81736, 'Annamarie', 1960, 'F', 166), +(81737, 'Mercedes', 1960, 'F', 166), +(81738, 'Valencia', 1960, 'F', 166), +(81739, 'Aida', 1960, 'F', 165), +(81740, 'Blanche', 1960, 'F', 165), +(81741, 'Carmella', 1960, 'F', 165), +(81742, 'Doretha', 1960, 'F', 165), +(81743, 'Marilee', 1960, 'F', 165), +(81744, 'Nan', 1960, 'F', 165), +(81745, 'Sybil', 1960, 'F', 165), +(81746, 'Treva', 1960, 'F', 165), +(81747, 'Cassie', 1960, 'F', 164), +(81748, 'Hilary', 1960, 'F', 164), +(81749, 'Magdalena', 1960, 'F', 164), +(81750, 'William', 1960, 'F', 164), +(81751, 'Dayna', 1960, 'F', 163), +(81752, 'Juana', 1960, 'F', 163), +(81753, 'Aimee', 1960, 'F', 162), +(81754, 'Annetta', 1960, 'F', 162), +(81755, 'Mable', 1960, 'F', 162), +(81756, 'Milagros', 1960, 'F', 162), +(81757, 'Andra', 1960, 'F', 161), +(81758, 'Ester', 1960, 'F', 161), +(81759, 'Roseanne', 1960, 'F', 161), +(81760, 'Sherie', 1960, 'F', 161), +(81761, 'Tori', 1960, 'F', 161), +(81762, 'Winifred', 1960, 'F', 160), +(81763, 'Charla', 1960, 'F', 159), +(81764, 'Ivette', 1960, 'F', 159), +(81765, 'Jerry', 1960, 'F', 158), +(81766, 'Millie', 1960, 'F', 156), +(81767, 'Ronna', 1960, 'F', 156), +(81768, 'Camilla', 1960, 'F', 153), +(81769, 'Chandra', 1960, 'F', 153), +(81770, 'Estelle', 1960, 'F', 153), +(81771, 'Nanci', 1960, 'F', 153), +(81772, 'Randy', 1960, 'F', 153), +(81773, 'Sadie', 1960, 'F', 153), +(81774, 'Cathi', 1960, 'F', 152), +(81775, 'Darleen', 1960, 'F', 152), +(81776, 'Delois', 1960, 'F', 152), +(81777, 'Fonda', 1960, 'F', 152), +(81778, 'Harriett', 1960, 'F', 152), +(81779, 'Lanette', 1960, 'F', 152), +(81780, 'Mara', 1960, 'F', 152), +(81781, 'Athena', 1960, 'F', 151), +(81782, 'Louisa', 1960, 'F', 151), +(81783, 'Suzanna', 1960, 'F', 151), +(81784, 'Merri', 1960, 'F', 150), +(81785, 'Mimi', 1960, 'F', 150), +(81786, 'Rachael', 1960, 'F', 150), +(81787, 'Angelita', 1960, 'F', 149), +(81788, 'Ina', 1960, 'F', 149), +(81789, 'Melva', 1960, 'F', 149), +(81790, 'Willa', 1960, 'F', 149), +(81791, 'Candi', 1960, 'F', 147), +(81792, 'Mandy', 1960, 'F', 147), +(81793, 'Roxie', 1960, 'F', 147), +(81794, 'Cristina', 1960, 'F', 146), +(81795, 'Bette', 1960, 'F', 145), +(81796, 'Suzy', 1960, 'F', 145), +(81797, 'Georgina', 1960, 'F', 144), +(81798, 'Leisha', 1960, 'F', 144), +(81799, 'Martina', 1960, 'F', 144), +(81800, 'Ollie', 1960, 'F', 144), +(81801, 'Portia', 1960, 'F', 144), +(81802, 'Carolina', 1960, 'F', 143), +(81803, 'Edie', 1960, 'F', 143), +(81804, 'Jewell', 1960, 'F', 143), +(81805, 'Leanna', 1960, 'F', 143), +(81806, 'Rosanna', 1960, 'F', 143), +(81807, 'Lavern', 1960, 'F', 142), +(81808, 'Tonja', 1960, 'F', 142), +(81809, 'Aleta', 1960, 'F', 141), +(81810, 'Delilah', 1960, 'F', 141), +(81811, 'Donita', 1960, 'F', 141), +(81812, 'Madelyn', 1960, 'F', 141), +(81813, 'Nettie', 1960, 'F', 141), +(81814, 'Carleen', 1960, 'F', 140), +(81815, 'Cecile', 1960, 'F', 140), +(81816, 'Janeen', 1960, 'F', 140), +(81817, 'Joanie', 1960, 'F', 140), +(81818, 'Melisa', 1960, 'F', 140), +(81819, 'Noemi', 1960, 'F', 140), +(81820, 'Reva', 1960, 'F', 140), +(81821, 'Essie', 1960, 'F', 139), +(81822, 'Jacque', 1960, 'F', 139), +(81823, 'Katheryn', 1960, 'F', 139), +(81824, 'Margot', 1960, 'F', 139), +(81825, 'Maryjane', 1960, 'F', 139), +(81826, 'Barbra', 1960, 'F', 138), +(81827, 'Elana', 1960, 'F', 138), +(81828, 'Francesca', 1960, 'F', 138), +(81829, 'Jacki', 1960, 'F', 138), +(81830, 'May', 1960, 'F', 138), +(81831, 'Adriana', 1960, 'F', 137), +(81832, 'Carey', 1960, 'F', 137), +(81833, 'Celestine', 1960, 'F', 137), +(81834, 'Gilda', 1960, 'F', 137), +(81835, 'Iva', 1960, 'F', 137), +(81836, 'Jannie', 1960, 'F', 137), +(81837, 'Lilly', 1960, 'F', 137), +(81838, 'Lizabeth', 1960, 'F', 137), +(81839, 'Tommie', 1960, 'F', 137), +(81840, 'Esperanza', 1960, 'F', 136), +(81841, 'Leta', 1960, 'F', 136), +(81842, 'Petra', 1960, 'F', 136), +(81843, 'Romona', 1960, 'F', 136), +(81844, 'Sharla', 1960, 'F', 136), +(81845, 'Zelda', 1960, 'F', 136), +(81846, 'Deedee', 1960, 'F', 135), +(81847, 'Kara', 1960, 'F', 135), +(81848, 'Lita', 1960, 'F', 135), +(81849, 'Liza', 1960, 'F', 135), +(81850, 'Rona', 1960, 'F', 135), +(81851, 'Jeanna', 1960, 'F', 134), +(81852, 'Juliann', 1960, 'F', 134), +(81853, 'Mabel', 1960, 'F', 134), +(81854, 'Mark', 1960, 'F', 134), +(81855, 'Mavis', 1960, 'F', 134), +(81856, 'Opal', 1960, 'F', 134), +(81857, 'Ursula', 1960, 'F', 134), +(81858, 'Charles', 1960, 'F', 133), +(81859, 'Daria', 1960, 'F', 133), +(81860, 'Eula', 1960, 'F', 133), +(81861, 'Hannah', 1960, 'F', 133), +(81862, 'Sherryl', 1960, 'F', 133), +(81863, 'Babette', 1960, 'F', 132), +(81864, 'Dara', 1960, 'F', 132), +(81865, 'Retha', 1960, 'F', 132), +(81866, 'Unknown', 1960, 'F', 132); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(81867, 'Neva', 1960, 'F', 131), +(81868, 'Suzie', 1960, 'F', 131), +(81869, 'Carmel', 1960, 'F', 130), +(81870, 'Cathrine', 1960, 'F', 130), +(81871, 'Kayla', 1960, 'F', 130), +(81872, 'Loriann', 1960, 'F', 130), +(81873, 'Tania', 1960, 'F', 130), +(81874, 'Dedra', 1960, 'F', 129), +(81875, 'Evette', 1960, 'F', 129), +(81876, 'Francisca', 1960, 'F', 129), +(81877, 'Joe', 1960, 'F', 129), +(81878, 'Alana', 1960, 'F', 128), +(81879, 'Angelica', 1960, 'F', 128), +(81880, 'Cinda', 1960, 'F', 128), +(81881, 'Consuelo', 1960, 'F', 128), +(81882, 'Sydney', 1960, 'F', 128), +(81883, 'Veda', 1960, 'F', 128), +(81884, 'Lily', 1960, 'F', 127), +(81885, 'Ruthann', 1960, 'F', 127), +(81886, 'Kerrie', 1960, 'F', 126), +(81887, 'Latanya', 1960, 'F', 126), +(81888, 'Lindy', 1960, 'F', 126), +(81889, 'Loreen', 1960, 'F', 126), +(81890, 'Shiela', 1960, 'F', 126), +(81891, 'Addie', 1960, 'F', 125), +(81892, 'Earline', 1960, 'F', 125), +(81893, 'Fawn', 1960, 'F', 125), +(81894, 'Risa', 1960, 'F', 125), +(81895, 'Joleen', 1960, 'F', 124), +(81896, 'Laurene', 1960, 'F', 124), +(81897, 'Mickey', 1960, 'F', 124), +(81898, 'Moira', 1960, 'F', 124), +(81899, 'Ora', 1960, 'F', 124), +(81900, 'Richard', 1960, 'F', 124), +(81901, 'Trena', 1960, 'F', 124), +(81902, 'Jerrie', 1960, 'F', 123), +(81903, 'Shirlene', 1960, 'F', 123), +(81904, 'Penni', 1960, 'F', 122), +(81905, 'Adrianne', 1960, 'F', 121), +(81906, 'Alyce', 1960, 'F', 121), +(81907, 'Beckie', 1960, 'F', 121), +(81908, 'Callie', 1960, 'F', 121), +(81909, 'Dorthy', 1960, 'F', 121), +(81910, 'Evangeline', 1960, 'F', 121), +(81911, 'Krystal', 1960, 'F', 121), +(81912, 'Cherrie', 1960, 'F', 120), +(81913, 'Jannette', 1960, 'F', 120), +(81914, 'Joseph', 1960, 'F', 120), +(81915, 'Sheena', 1960, 'F', 120), +(81916, 'Thomas', 1960, 'F', 120), +(81917, 'Josefina', 1960, 'F', 119), +(81918, 'Juliette', 1960, 'F', 119), +(81919, 'Leola', 1960, 'F', 119), +(81920, 'Marty', 1960, 'F', 119), +(81921, 'Matilda', 1960, 'F', 119), +(81922, 'Millicent', 1960, 'F', 119), +(81923, 'Velda', 1960, 'F', 119), +(81924, 'Zoe', 1960, 'F', 119), +(81925, 'Caron', 1960, 'F', 118), +(81926, 'Cary', 1960, 'F', 118), +(81927, 'Deeann', 1960, 'F', 118), +(81928, 'Rosita', 1960, 'F', 118), +(81929, 'Bev', 1960, 'F', 117), +(81930, 'Carlotta', 1960, 'F', 117), +(81931, 'Keely', 1960, 'F', 117), +(81932, 'Lissa', 1960, 'F', 117), +(81933, 'Germaine', 1960, 'F', 116), +(81934, 'Lorinda', 1960, 'F', 116), +(81935, 'Pearlie', 1960, 'F', 116), +(81936, 'Phoebe', 1960, 'F', 116), +(81937, 'Anastasia', 1960, 'F', 115), +(81938, 'Jimmie', 1960, 'F', 115), +(81939, 'Kandi', 1960, 'F', 115), +(81940, 'Lizzie', 1960, 'F', 115), +(81941, 'Lorelei', 1960, 'F', 115), +(81942, 'Lottie', 1960, 'F', 115), +(81943, 'Marti', 1960, 'F', 115), +(81944, 'Serena', 1960, 'F', 115), +(81945, 'Carin', 1960, 'F', 113), +(81946, 'Jeana', 1960, 'F', 113), +(81947, 'Machelle', 1960, 'F', 113), +(81948, 'Melonie', 1960, 'F', 113), +(81949, 'Renea', 1960, 'F', 113), +(81950, 'Rhea', 1960, 'F', 113), +(81951, 'Suzann', 1960, 'F', 113), +(81952, 'Caryl', 1960, 'F', 112), +(81953, 'Charleen', 1960, 'F', 112), +(81954, 'Chrystal', 1960, 'F', 112), +(81955, 'Adela', 1960, 'F', 111), +(81956, 'Alyssa', 1960, 'F', 111), +(81957, 'Brigette', 1960, 'F', 111), +(81958, 'Elma', 1960, 'F', 111), +(81959, 'Lise', 1960, 'F', 111), +(81960, 'Rowena', 1960, 'F', 111), +(81961, 'Alecia', 1960, 'F', 110), +(81962, 'Corine', 1960, 'F', 110), +(81963, 'Janel', 1960, 'F', 110), +(81964, 'Karan', 1960, 'F', 110), +(81965, 'Nedra', 1960, 'F', 110), +(81966, 'Staci', 1960, 'F', 110), +(81967, 'Barrie', 1960, 'F', 109), +(81968, 'Carmelita', 1960, 'F', 109), +(81969, 'Charisse', 1960, 'F', 109), +(81970, 'Darci', 1960, 'F', 109), +(81971, 'Kendall', 1960, 'F', 109), +(81972, 'Marilynn', 1960, 'F', 109), +(81973, 'Marita', 1960, 'F', 109), +(81974, 'Adrian', 1960, 'F', 107), +(81975, 'Freida', 1960, 'F', 107), +(81976, 'Johnna', 1960, 'F', 107), +(81977, 'Miranda', 1960, 'F', 107), +(81978, 'Pamella', 1960, 'F', 107), +(81979, 'Queen', 1960, 'F', 107), +(81980, 'Trudi', 1960, 'F', 107), +(81981, 'Starr', 1960, 'F', 106), +(81982, 'Thea', 1960, 'F', 106), +(81983, 'Dian', 1960, 'F', 105), +(81984, 'Elissa', 1960, 'F', 105), +(81985, 'Janene', 1960, 'F', 105), +(81986, 'Lani', 1960, 'F', 105), +(81987, 'Sharyl', 1960, 'F', 105), +(81988, 'Vernita', 1960, 'F', 105), +(81989, 'Becki', 1960, 'F', 104), +(81990, 'Catharine', 1960, 'F', 104), +(81991, 'Dalia', 1960, 'F', 104), +(81992, 'Lelia', 1960, 'F', 104), +(81993, 'Sandie', 1960, 'F', 104), +(81994, 'Tamala', 1960, 'F', 104), +(81995, 'Angeline', 1960, 'F', 103), +(81996, 'Eddie', 1960, 'F', 103), +(81997, 'Ophelia', 1960, 'F', 103), +(81998, 'Shanna', 1960, 'F', 103), +(81999, 'Trisha', 1960, 'F', 103), +(82000, 'Alyson', 1960, 'F', 102), +(82001, 'Bobby', 1960, 'F', 102), +(82002, 'Brooke', 1960, 'F', 102), +(82003, 'Nilda', 1960, 'F', 102), +(82004, 'Peggie', 1960, 'F', 102), +(82005, 'Bettye', 1960, 'F', 101), +(82006, 'Dollie', 1960, 'F', 101), +(82007, 'Frieda', 1960, 'F', 101), +(82008, 'Julianna', 1960, 'F', 101), +(82009, 'Aline', 1960, 'F', 100), +(82010, 'Carolann', 1960, 'F', 100), +(82011, 'Elnora', 1960, 'F', 100), +(82012, 'Gwyn', 1960, 'F', 100), +(82013, 'Madeleine', 1960, 'F', 100), +(82014, 'Meryl', 1960, 'F', 100), +(82015, 'Monika', 1960, 'F', 100), +(82016, 'Sherilyn', 1960, 'F', 100), +(82017, 'Stefanie', 1960, 'F', 100), +(82018, 'David', 1960, 'M', 85931), +(82019, 'Michael', 1960, 'M', 84206), +(82020, 'James', 1960, 'M', 76872), +(82021, 'John', 1960, 'M', 76121), +(82022, 'Robert', 1960, 'M', 72386), +(82023, 'Mark', 1960, 'M', 58735), +(82024, 'William', 1960, 'M', 49349), +(82025, 'Richard', 1960, 'M', 43562), +(82026, 'Thomas', 1960, 'M', 39299), +(82027, 'Steven', 1960, 'M', 33903), +(82028, 'Timothy', 1960, 'M', 30484), +(82029, 'Joseph', 1960, 'M', 29757), +(82030, 'Charles', 1960, 'M', 29691), +(82031, 'Jeffrey', 1960, 'M', 28835), +(82032, 'Kevin', 1960, 'M', 28391), +(82033, 'Kenneth', 1960, 'M', 27681), +(82034, 'Daniel', 1960, 'M', 25970), +(82035, 'Paul', 1960, 'M', 25643), +(82036, 'Donald', 1960, 'M', 22728), +(82037, 'Brian', 1960, 'M', 22000), +(82038, 'Ronald', 1960, 'M', 21704), +(82039, 'Gary', 1960, 'M', 21687), +(82040, 'Scott', 1960, 'M', 21609), +(82041, 'Gregory', 1960, 'M', 20323), +(82042, 'Anthony', 1960, 'M', 19511), +(82043, 'Edward', 1960, 'M', 16581), +(82044, 'Stephen', 1960, 'M', 16266), +(82045, 'Larry', 1960, 'M', 15993), +(82046, 'Christopher', 1960, 'M', 15365), +(82047, 'Douglas', 1960, 'M', 15150), +(82048, 'Dennis', 1960, 'M', 14317), +(82049, 'Randy', 1960, 'M', 14221), +(82050, 'George', 1960, 'M', 14062), +(82051, 'Terry', 1960, 'M', 13912), +(82052, 'Keith', 1960, 'M', 12186), +(82053, 'Mike', 1960, 'M', 12047), +(82054, 'Jerry', 1960, 'M', 11837), +(82055, 'Ricky', 1960, 'M', 10992), +(82056, 'Bruce', 1960, 'M', 10950), +(82057, 'Frank', 1960, 'M', 10763), +(82058, 'Peter', 1960, 'M', 10724), +(82059, 'Craig', 1960, 'M', 10717), +(82060, 'Steve', 1960, 'M', 10653), +(82061, 'Eric', 1960, 'M', 10531), +(82062, 'Patrick', 1960, 'M', 10367), +(82063, 'Raymond', 1960, 'M', 9718), +(82064, 'Roger', 1960, 'M', 9031), +(82065, 'Danny', 1960, 'M', 8605), +(82066, 'Jeff', 1960, 'M', 8507), +(82067, 'Alan', 1960, 'M', 8354), +(82068, 'Andrew', 1960, 'M', 8211), +(82069, 'Tony', 1960, 'M', 7997), +(82070, 'Carl', 1960, 'M', 7807), +(82071, 'Dale', 1960, 'M', 7687), +(82072, 'Jeffery', 1960, 'M', 7660), +(82073, 'Russell', 1960, 'M', 7475), +(82074, 'Joe', 1960, 'M', 7314), +(82075, 'Wayne', 1960, 'M', 7192), +(82076, 'Randall', 1960, 'M', 7164), +(82077, 'Tim', 1960, 'M', 6935), +(82078, 'Matthew', 1960, 'M', 6930), +(82079, 'Gerald', 1960, 'M', 6560), +(82080, 'Chris', 1960, 'M', 6500), +(82081, 'Lawrence', 1960, 'M', 6385), +(82082, 'Johnny', 1960, 'M', 6181), +(82083, 'Phillip', 1960, 'M', 6040), +(82084, 'Billy', 1960, 'M', 6014), +(82085, 'Rodney', 1960, 'M', 5852), +(82086, 'Jimmy', 1960, 'M', 5818), +(82087, 'Walter', 1960, 'M', 5763), +(82088, 'Todd', 1960, 'M', 5747), +(82089, 'Barry', 1960, 'M', 5734), +(82090, 'Bobby', 1960, 'M', 5655), +(82091, 'Glenn', 1960, 'M', 5559), +(82092, 'Jim', 1960, 'M', 5552), +(82093, 'Philip', 1960, 'M', 5514), +(82094, 'Martin', 1960, 'M', 5495), +(82095, 'Jay', 1960, 'M', 5383), +(82096, 'Curtis', 1960, 'M', 5366), +(82097, 'Roy', 1960, 'M', 5248), +(82098, 'Willie', 1960, 'M', 5238), +(82099, 'Arthur', 1960, 'M', 5198), +(82100, 'Greg', 1960, 'M', 5090), +(82101, 'Henry', 1960, 'M', 4967), +(82102, 'Jack', 1960, 'M', 4918), +(82103, 'Tom', 1960, 'M', 4901), +(82104, 'Ronnie', 1960, 'M', 4874), +(82105, 'Bryan', 1960, 'M', 4778), +(82106, 'Ralph', 1960, 'M', 4777), +(82107, 'Bradley', 1960, 'M', 4744), +(82108, 'Samuel', 1960, 'M', 4707), +(82109, 'Harold', 1960, 'M', 4678), +(82110, 'Albert', 1960, 'M', 4598), +(82111, 'Dean', 1960, 'M', 4520), +(82112, 'Bill', 1960, 'M', 4502), +(82113, 'Darryl', 1960, 'M', 4436), +(82114, 'Jon', 1960, 'M', 4404), +(82115, 'Vincent', 1960, 'M', 4378), +(82116, 'Allen', 1960, 'M', 4375), +(82117, 'Rick', 1960, 'M', 4220), +(82118, 'Stanley', 1960, 'M', 4216), +(82119, 'Eddie', 1960, 'M', 4198), +(82120, 'Victor', 1960, 'M', 4193), +(82121, 'Darrell', 1960, 'M', 4149), +(82122, 'Louis', 1960, 'M', 4131), +(82123, 'Micheal', 1960, 'M', 4128), +(82124, 'Jose', 1960, 'M', 3908), +(82125, 'Howard', 1960, 'M', 3821), +(82126, 'Eugene', 1960, 'M', 3755), +(82127, 'Joel', 1960, 'M', 3711), +(82128, 'Dan', 1960, 'M', 3698), +(82129, 'Tommy', 1960, 'M', 3687), +(82130, 'Leonard', 1960, 'M', 3635), +(82131, 'Frederick', 1960, 'M', 3481), +(82132, 'Don', 1960, 'M', 3452), +(82133, 'Lee', 1960, 'M', 3441), +(82134, 'Fred', 1960, 'M', 3395), +(82135, 'Jonathan', 1960, 'M', 3351), +(82136, 'Marvin', 1960, 'M', 3275), +(82137, 'Ernest', 1960, 'M', 3189), +(82138, 'Ray', 1960, 'M', 3079), +(82139, 'Dave', 1960, 'M', 3046), +(82140, 'Dwayne', 1960, 'M', 3043), +(82141, 'Harry', 1960, 'M', 3016), +(82142, 'Melvin', 1960, 'M', 3010), +(82143, 'Mitchell', 1960, 'M', 2970), +(82144, 'Duane', 1960, 'M', 2951), +(82145, 'Kelly', 1960, 'M', 2939), +(82146, 'Calvin', 1960, 'M', 2911), +(82147, 'Kurt', 1960, 'M', 2883), +(82148, 'Bob', 1960, 'M', 2720), +(82149, 'Norman', 1960, 'M', 2696), +(82150, 'Jerome', 1960, 'M', 2677), +(82151, 'Brad', 1960, 'M', 2653), +(82152, 'Karl', 1960, 'M', 2596), +(82153, 'Marc', 1960, 'M', 2591), +(82154, 'Tracy', 1960, 'M', 2586), +(82155, 'Rickey', 1960, 'M', 2575), +(82156, 'Earl', 1960, 'M', 2564), +(82157, 'Edwin', 1960, 'M', 2475), +(82158, 'Clifford', 1960, 'M', 2469), +(82159, 'Kirk', 1960, 'M', 2450), +(82160, 'Reginald', 1960, 'M', 2442), +(82161, 'Glen', 1960, 'M', 2440), +(82162, 'Francis', 1960, 'M', 2422), +(82163, 'Perry', 1960, 'M', 2416), +(82164, 'Alfred', 1960, 'M', 2403), +(82165, 'Kent', 1960, 'M', 2401), +(82166, 'Theodore', 1960, 'M', 2390), +(82167, 'Jesse', 1960, 'M', 2377), +(82168, 'Brett', 1960, 'M', 2322), +(82169, 'Bernard', 1960, 'M', 2304), +(82170, 'Nicholas', 1960, 'M', 2304), +(82171, 'Brent', 1960, 'M', 2261), +(82172, 'Benjamin', 1960, 'M', 2249), +(82173, 'Darren', 1960, 'M', 2209), +(82174, 'Clarence', 1960, 'M', 2200), +(82175, 'Kerry', 1960, 'M', 2173), +(82176, 'Gordon', 1960, 'M', 2155), +(82177, 'Juan', 1960, 'M', 2082), +(82178, 'Stuart', 1960, 'M', 2078), +(82179, 'Troy', 1960, 'M', 2062), +(82180, 'Shawn', 1960, 'M', 2050), +(82181, 'Wesley', 1960, 'M', 2019), +(82182, 'Warren', 1960, 'M', 2013), +(82183, 'Carlos', 1960, 'M', 1998), +(82184, 'Alvin', 1960, 'M', 1993), +(82185, 'Guy', 1960, 'M', 1947), +(82186, 'Kenny', 1960, 'M', 1941), +(82187, 'Ron', 1960, 'M', 1891), +(82188, 'Lance', 1960, 'M', 1877), +(82189, 'Leroy', 1960, 'M', 1866), +(82190, 'Vernon', 1960, 'M', 1829), +(82191, 'Gene', 1960, 'M', 1789), +(82192, 'Gilbert', 1960, 'M', 1788), +(82193, 'Herbert', 1960, 'M', 1782), +(82194, 'Ken', 1960, 'M', 1777), +(82195, 'Aaron', 1960, 'M', 1774), +(82196, 'Gregg', 1960, 'M', 1735), +(82197, 'Lloyd', 1960, 'M', 1732), +(82198, 'Dwight', 1960, 'M', 1723), +(82199, 'Doug', 1960, 'M', 1712), +(82200, 'Lonnie', 1960, 'M', 1703), +(82201, 'Ted', 1960, 'M', 1695), +(82202, 'Leslie', 1960, 'M', 1676), +(82203, 'Manuel', 1960, 'M', 1672), +(82204, 'Dana', 1960, 'M', 1669), +(82205, 'Daryl', 1960, 'M', 1651), +(82206, 'Leon', 1960, 'M', 1646), +(82207, 'Nathan', 1960, 'M', 1625), +(82208, 'Tyrone', 1960, 'M', 1597), +(82209, 'Donnie', 1960, 'M', 1572), +(82210, 'Timmy', 1960, 'M', 1571), +(82211, 'Marty', 1960, 'M', 1538), +(82212, 'Franklin', 1960, 'M', 1536), +(82213, 'Antonio', 1960, 'M', 1496), +(82214, 'Allan', 1960, 'M', 1473), +(82215, 'Floyd', 1960, 'M', 1466), +(82216, 'Neil', 1960, 'M', 1448), +(82217, 'Robin', 1960, 'M', 1435), +(82218, 'Andy', 1960, 'M', 1428), +(82219, 'Sean', 1960, 'M', 1422), +(82220, 'Andre', 1960, 'M', 1401), +(82221, 'Gerard', 1960, 'M', 1396), +(82222, 'Lewis', 1960, 'M', 1394), +(82223, 'Clyde', 1960, 'M', 1374), +(82224, 'Jackie', 1960, 'M', 1368), +(82225, 'Ruben', 1960, 'M', 1358), +(82226, 'Luis', 1960, 'M', 1335), +(82227, 'Maurice', 1960, 'M', 1326), +(82228, 'Marcus', 1960, 'M', 1325), +(82229, 'Mario', 1960, 'M', 1321), +(82230, 'Lester', 1960, 'M', 1314), +(82231, 'Ricardo', 1960, 'M', 1314), +(82232, 'Rex', 1960, 'M', 1312), +(82233, 'Jimmie', 1960, 'M', 1306), +(82234, 'Kelvin', 1960, 'M', 1303), +(82235, 'Chuck', 1960, 'M', 1275), +(82236, 'Randal', 1960, 'M', 1271), +(82237, 'Kyle', 1960, 'M', 1270), +(82238, 'Clayton', 1960, 'M', 1248), +(82239, 'Charlie', 1960, 'M', 1245), +(82240, 'Bret', 1960, 'M', 1242), +(82241, 'Wade', 1960, 'M', 1242), +(82242, 'Garry', 1960, 'M', 1238), +(82243, 'Alex', 1960, 'M', 1229), +(82244, 'Freddie', 1960, 'M', 1216), +(82245, 'Sam', 1960, 'M', 1210), +(82246, 'Joey', 1960, 'M', 1205), +(82247, 'Alexander', 1960, 'M', 1204), +(82248, 'Arnold', 1960, 'M', 1203), +(82249, 'Leo', 1960, 'M', 1202), +(82250, 'Byron', 1960, 'M', 1192), +(82251, 'Neal', 1960, 'M', 1191), +(82252, 'Milton', 1960, 'M', 1183), +(82253, 'Derrick', 1960, 'M', 1179), +(82254, 'Kim', 1960, 'M', 1158), +(82255, 'Nathaniel', 1960, 'M', 1146), +(82256, 'Wendell', 1960, 'M', 1145), +(82257, 'Roland', 1960, 'M', 1141), +(82258, 'Johnnie', 1960, 'M', 1132), +(82259, 'Nick', 1960, 'M', 1099), +(82260, 'Clinton', 1960, 'M', 1095), +(82261, 'Randolph', 1960, 'M', 1077), +(82262, 'Oscar', 1960, 'M', 1066), +(82263, 'Herman', 1960, 'M', 1049), +(82264, 'Derek', 1960, 'M', 1047), +(82265, 'Ross', 1960, 'M', 1044), +(82266, 'Adam', 1960, 'M', 1019), +(82267, 'Terrence', 1960, 'M', 1017), +(82268, 'Nelson', 1960, 'M', 1015), +(82269, 'Pat', 1960, 'M', 1000), +(82270, 'Harvey', 1960, 'M', 998), +(82271, 'Jody', 1960, 'M', 995), +(82272, 'Lynn', 1960, 'M', 960), +(82273, 'Cecil', 1960, 'M', 959), +(82274, 'Ben', 1960, 'M', 955), +(82275, 'Roberto', 1960, 'M', 954), +(82276, 'Jason', 1960, 'M', 938), +(82277, 'Chester', 1960, 'M', 935), +(82278, 'Jessie', 1960, 'M', 935), +(82279, 'Jesus', 1960, 'M', 914), +(82280, 'Clay', 1960, 'M', 905), +(82281, 'Fredrick', 1960, 'M', 904), +(82282, 'Hugh', 1960, 'M', 903), +(82283, 'Raul', 1960, 'M', 902), +(82284, 'Bart', 1960, 'M', 893), +(82285, 'Marshall', 1960, 'M', 892), +(82286, 'Matt', 1960, 'M', 878), +(82287, 'Hector', 1960, 'M', 877), +(82288, 'Clifton', 1960, 'M', 871), +(82289, 'Sammy', 1960, 'M', 866), +(82290, 'Rocky', 1960, 'M', 860), +(82291, 'Sidney', 1960, 'M', 851), +(82292, 'Carlton', 1960, 'M', 849), +(82293, 'Roderick', 1960, 'M', 842), +(82294, 'Claude', 1960, 'M', 838), +(82295, 'Rudy', 1960, 'M', 829), +(82296, 'Miguel', 1960, 'M', 821), +(82297, 'Frankie', 1960, 'M', 815), +(82298, 'Geoffrey', 1960, 'M', 801), +(82299, 'Benny', 1960, 'M', 787), +(82300, 'Wallace', 1960, 'M', 782), +(82301, 'Francisco', 1960, 'M', 780), +(82302, 'Ramon', 1960, 'M', 771), +(82303, 'Cary', 1960, 'M', 759), +(82304, 'Pete', 1960, 'M', 756), +(82305, 'Terence', 1960, 'M', 756), +(82306, 'Jamie', 1960, 'M', 735), +(82307, 'Lyle', 1960, 'M', 734), +(82308, 'Terrance', 1960, 'M', 724), +(82309, 'Curt', 1960, 'M', 720), +(82310, 'Grant', 1960, 'M', 720), +(82311, 'Edgar', 1960, 'M', 715), +(82312, 'Rene', 1960, 'M', 713), +(82313, 'Virgil', 1960, 'M', 687), +(82314, 'Max', 1960, 'M', 670), +(82315, 'Bradford', 1960, 'M', 667), +(82316, 'Angel', 1960, 'M', 664), +(82317, 'Angelo', 1960, 'M', 662), +(82318, 'Pedro', 1960, 'M', 662), +(82319, 'Christian', 1960, 'M', 659), +(82320, 'Loren', 1960, 'M', 659), +(82321, 'Darrel', 1960, 'M', 658), +(82322, 'Lorenzo', 1960, 'M', 656), +(82323, 'Felix', 1960, 'M', 654), +(82324, 'Morris', 1960, 'M', 652), +(82325, 'Jaime', 1960, 'M', 643), +(82326, 'Mickey', 1960, 'M', 643), +(82327, 'Ed', 1960, 'M', 642), +(82328, 'Rory', 1960, 'M', 636), +(82329, 'Everett', 1960, 'M', 631), +(82330, 'Stewart', 1960, 'M', 630), +(82331, 'Phil', 1960, 'M', 627), +(82332, 'Myron', 1960, 'M', 614), +(82333, 'Armando', 1960, 'M', 610), +(82334, 'Clark', 1960, 'M', 607), +(82335, 'Ira', 1960, 'M', 601), +(82336, 'Ivan', 1960, 'M', 598), +(82337, 'Earnest', 1960, 'M', 592), +(82338, 'Teddy', 1960, 'M', 590), +(82339, 'Salvatore', 1960, 'M', 585), +(82340, 'Fernando', 1960, 'M', 580), +(82341, 'Dewayne', 1960, 'M', 578), +(82342, 'Sherman', 1960, 'M', 563), +(82343, 'Adrian', 1960, 'M', 559), +(82344, 'Otis', 1960, 'M', 555), +(82345, 'Drew', 1960, 'M', 553), +(82346, 'Travis', 1960, 'M', 552), +(82347, 'Jorge', 1960, 'M', 551), +(82348, 'Bennie', 1960, 'M', 550), +(82349, 'Malcolm', 1960, 'M', 546), +(82350, 'Rafael', 1960, 'M', 542), +(82351, 'Willard', 1960, 'M', 542), +(82352, 'Marion', 1960, 'M', 541), +(82353, 'Cedric', 1960, 'M', 533), +(82354, 'Shane', 1960, 'M', 533), +(82355, 'Luther', 1960, 'M', 530), +(82356, 'Alton', 1960, 'M', 528), +(82357, 'Jeffry', 1960, 'M', 526), +(82358, 'Rickie', 1960, 'M', 523), +(82359, 'Elmer', 1960, 'M', 515), +(82360, 'Rusty', 1960, 'M', 515), +(82361, 'Edmund', 1960, 'M', 512), +(82362, 'Laurence', 1960, 'M', 512), +(82363, 'Julius', 1960, 'M', 509), +(82364, 'Sylvester', 1960, 'M', 504), +(82365, 'Scot', 1960, 'M', 501), +(82366, 'Alberto', 1960, 'M', 495), +(82367, 'Rod', 1960, 'M', 495), +(82368, 'Delbert', 1960, 'M', 492), +(82369, 'Jacob', 1960, 'M', 490), +(82370, 'Julian', 1960, 'M', 490), +(82371, 'Alfredo', 1960, 'M', 481), +(82372, 'Monty', 1960, 'M', 481), +(82373, 'Javier', 1960, 'M', 480), +(82374, 'Preston', 1960, 'M', 478), +(82375, 'Van', 1960, 'M', 478), +(82376, 'Roosevelt', 1960, 'M', 474), +(82377, 'Clint', 1960, 'M', 472), +(82378, 'Isaac', 1960, 'M', 471), +(82379, 'Erik', 1960, 'M', 468), +(82380, 'Monte', 1960, 'M', 467), +(82381, 'Kris', 1960, 'M', 466), +(82382, 'Alonzo', 1960, 'M', 465), +(82383, 'Lionel', 1960, 'M', 464), +(82384, 'Wilbert', 1960, 'M', 462), +(82385, 'Arturo', 1960, 'M', 459), +(82386, 'Rodger', 1960, 'M', 454), +(82387, 'Orlando', 1960, 'M', 452), +(82388, 'Evan', 1960, 'M', 451), +(82389, 'Robbie', 1960, 'M', 451), +(82390, 'Vance', 1960, 'M', 450), +(82391, 'Archie', 1960, 'M', 447), +(82392, 'Kendall', 1960, 'M', 447), +(82393, 'Rudolph', 1960, 'M', 442), +(82394, 'Dominic', 1960, 'M', 441), +(82395, 'Ernie', 1960, 'M', 436), +(82396, 'Blake', 1960, 'M', 435), +(82397, 'Dexter', 1960, 'M', 434), +(82398, 'Lowell', 1960, 'M', 431), +(82399, 'Gabriel', 1960, 'M', 429), +(82400, 'Gerry', 1960, 'M', 428), +(82401, 'Stevie', 1960, 'M', 426), +(82402, 'Luke', 1960, 'M', 425), +(82403, 'Horace', 1960, 'M', 417), +(82404, 'Stephan', 1960, 'M', 416), +(82405, 'Tommie', 1960, 'M', 416), +(82406, 'Willis', 1960, 'M', 414), +(82407, 'Leland', 1960, 'M', 408), +(82408, 'Doyle', 1960, 'M', 405), +(82409, 'Stan', 1960, 'M', 405), +(82410, 'Jerald', 1960, 'M', 404), +(82411, 'Hal', 1960, 'M', 403), +(82412, 'Hubert', 1960, 'M', 400), +(82413, 'Forrest', 1960, 'M', 399), +(82414, 'Al', 1960, 'M', 393), +(82415, 'Darwin', 1960, 'M', 392), +(82416, 'Noel', 1960, 'M', 391), +(82417, 'Bert', 1960, 'M', 390), +(82418, 'Bryant', 1960, 'M', 390), +(82419, 'Sheldon', 1960, 'M', 390), +(82420, 'Blaine', 1960, 'M', 387), +(82421, 'Dino', 1960, 'M', 387), +(82422, 'Owen', 1960, 'M', 387), +(82423, 'Ryan', 1960, 'M', 384), +(82424, 'Alfonso', 1960, 'M', 383), +(82425, 'Freddy', 1960, 'M', 382), +(82426, 'Boyd', 1960, 'M', 372), +(82427, 'Oliver', 1960, 'M', 372), +(82428, 'Toby', 1960, 'M', 372), +(82429, 'Carey', 1960, 'M', 369), +(82430, 'Eduardo', 1960, 'M', 369), +(82431, 'Jan', 1960, 'M', 369), +(82432, 'Enrique', 1960, 'M', 366), +(82433, 'Dirk', 1960, 'M', 365), +(82434, 'Denis', 1960, 'M', 364), +(82435, 'Justin', 1960, 'M', 361), +(82436, 'Damon', 1960, 'M', 360), +(82437, 'Donny', 1960, 'M', 359), +(82438, 'Ellis', 1960, 'M', 359), +(82439, 'Spencer', 1960, 'M', 358), +(82440, 'Buddy', 1960, 'M', 357), +(82441, 'Grady', 1960, 'M', 357), +(82442, 'Wilbur', 1960, 'M', 356), +(82443, 'Cory', 1960, 'M', 354), +(82444, 'Rob', 1960, 'M', 353), +(82445, 'Ernesto', 1960, 'M', 352), +(82446, 'Dallas', 1960, 'M', 351), +(82447, 'Casey', 1960, 'M', 348), +(82448, 'Dominick', 1960, 'M', 347), +(82449, 'Kirby', 1960, 'M', 346), +(82450, 'Zachary', 1960, 'M', 344), +(82451, 'Julio', 1960, 'M', 343), +(82452, 'Seth', 1960, 'M', 343), +(82453, 'Russ', 1960, 'M', 342), +(82454, 'Mathew', 1960, 'M', 338), +(82455, 'Ervin', 1960, 'M', 335), +(82456, 'Salvador', 1960, 'M', 335), +(82457, 'Vince', 1960, 'M', 335), +(82458, 'Mitch', 1960, 'M', 333), +(82459, 'Miles', 1960, 'M', 332), +(82460, 'Rufus', 1960, 'M', 332), +(82461, 'Louie', 1960, 'M', 330), +(82462, 'Ronny', 1960, 'M', 330), +(82463, 'Darnell', 1960, 'M', 327), +(82464, 'Mack', 1960, 'M', 327), +(82465, 'Cornelius', 1960, 'M', 324), +(82466, 'Darin', 1960, 'M', 324), +(82467, 'Randell', 1960, 'M', 324), +(82468, 'Homer', 1960, 'M', 323), +(82469, 'Rodolfo', 1960, 'M', 318), +(82470, 'Dewey', 1960, 'M', 316), +(82471, 'Joshua', 1960, 'M', 316), +(82472, 'Bryon', 1960, 'M', 313), +(82473, 'Denny', 1960, 'M', 309), +(82474, 'Tod', 1960, 'M', 307), +(82475, 'Corey', 1960, 'M', 302), +(82476, 'Moses', 1960, 'M', 302), +(82477, 'Irvin', 1960, 'M', 300), +(82478, 'Royce', 1960, 'M', 300), +(82479, 'Stacy', 1960, 'M', 296), +(82480, 'Colin', 1960, 'M', 295), +(82481, 'Marlon', 1960, 'M', 295), +(82482, 'Abraham', 1960, 'M', 294), +(82483, 'Sammie', 1960, 'M', 290), +(82484, 'Dane', 1960, 'M', 289), +(82485, 'Jess', 1960, 'M', 288), +(82486, 'Alphonso', 1960, 'M', 286), +(82487, 'Shannon', 1960, 'M', 286), +(82488, 'Cameron', 1960, 'M', 285), +(82489, 'Scotty', 1960, 'M', 285), +(82490, 'Ward', 1960, 'M', 283), +(82491, 'Wilson', 1960, 'M', 281), +(82492, 'Conrad', 1960, 'M', 280), +(82493, 'Rolando', 1960, 'M', 276), +(82494, 'Sergio', 1960, 'M', 276), +(82495, 'Aubrey', 1960, 'M', 275), +(82496, 'Elliott', 1960, 'M', 275), +(82497, 'Lane', 1960, 'M', 275), +(82498, 'Carroll', 1960, 'M', 273), +(82499, 'Percy', 1960, 'M', 270), +(82500, 'Edmond', 1960, 'M', 269), +(82501, 'Reggie', 1960, 'M', 268), +(82502, 'Lamar', 1960, 'M', 267), +(82503, 'Michel', 1960, 'M', 267), +(82504, 'Barney', 1960, 'M', 266), +(82505, 'Elbert', 1960, 'M', 266), +(82506, 'Joesph', 1960, 'M', 264), +(82507, 'Amos', 1960, 'M', 262), +(82508, 'Trent', 1960, 'M', 262), +(82509, 'Garland', 1960, 'M', 259), +(82510, 'Chad', 1960, 'M', 256), +(82511, 'Nicky', 1960, 'M', 256), +(82512, 'Ty', 1960, 'M', 254), +(82513, 'Ramiro', 1960, 'M', 253), +(82514, 'Cliff', 1960, 'M', 252), +(82515, 'Gilberto', 1960, 'M', 252), +(82516, 'Morgan', 1960, 'M', 252), +(82517, 'Blair', 1960, 'M', 251), +(82518, 'Reuben', 1960, 'M', 250), +(82519, 'Stacey', 1960, 'M', 249), +(82520, 'Wilfred', 1960, 'M', 249), +(82521, 'Abel', 1960, 'M', 248), +(82522, 'Cleveland', 1960, 'M', 248), +(82523, 'Ian', 1960, 'M', 246), +(82524, 'Lyndon', 1960, 'M', 246), +(82525, 'Norris', 1960, 'M', 246), +(82526, 'Vaughn', 1960, 'M', 245), +(82527, 'Barton', 1960, 'M', 244), +(82528, 'Pierre', 1960, 'M', 243), +(82529, 'Elvis', 1960, 'M', 242), +(82530, 'Elton', 1960, 'M', 240), +(82531, 'Guadalupe', 1960, 'M', 239), +(82532, 'Sterling', 1960, 'M', 237), +(82533, 'Shaun', 1960, 'M', 236), +(82534, 'Reynaldo', 1960, 'M', 234), +(82535, 'Rich', 1960, 'M', 234), +(82536, 'Gerardo', 1960, 'M', 233), +(82537, 'Harlan', 1960, 'M', 233), +(82538, 'Marlin', 1960, 'M', 233), +(82539, 'Pablo', 1960, 'M', 233), +(82540, 'Rocco', 1960, 'M', 233), +(82541, 'Dwain', 1960, 'M', 232), +(82542, 'Israel', 1960, 'M', 232), +(82543, 'Bernie', 1960, 'M', 230), +(82544, 'Lamont', 1960, 'M', 226), +(82545, 'Will', 1960, 'M', 226), +(82546, 'Donnell', 1960, 'M', 224), +(82547, 'Mitchel', 1960, 'M', 224), +(82548, 'Simon', 1960, 'M', 223), +(82549, 'Ned', 1960, 'M', 221), +(82550, 'Terrell', 1960, 'M', 221), +(82551, 'Lon', 1960, 'M', 220), +(82552, 'Thaddeus', 1960, 'M', 220), +(82553, 'Darrin', 1960, 'M', 219), +(82554, 'Galen', 1960, 'M', 219), +(82555, 'Eddy', 1960, 'M', 218), +(82556, 'Russel', 1960, 'M', 218), +(82557, 'Murray', 1960, 'M', 217), +(82558, 'Brendan', 1960, 'M', 216), +(82559, 'Reed', 1960, 'M', 214), +(82560, 'Emmett', 1960, 'M', 213), +(82561, 'Andres', 1960, 'M', 211), +(82562, 'Ismael', 1960, 'M', 210), +(82563, 'Woodrow', 1960, 'M', 209), +(82564, 'Robby', 1960, 'M', 207), +(82565, 'Marco', 1960, 'M', 206), +(82566, 'Emanuel', 1960, 'M', 205), +(82567, 'Alejandro', 1960, 'M', 204), +(82568, 'Austin', 1960, 'M', 204), +(82569, 'Felipe', 1960, 'M', 204), +(82570, 'Hans', 1960, 'M', 204), +(82571, 'Bennett', 1960, 'M', 203), +(82572, 'Junior', 1960, 'M', 203), +(82573, 'Tomas', 1960, 'M', 203), +(82574, 'Kurtis', 1960, 'M', 202), +(82575, 'Garth', 1960, 'M', 198), +(82576, 'Gus', 1960, 'M', 198), +(82577, 'Irving', 1960, 'M', 198), +(82578, 'Kennith', 1960, 'M', 198), +(82579, 'Lenny', 1960, 'M', 196), +(82580, 'Unknown', 1960, 'M', 195), +(82581, 'Bobbie', 1960, 'M', 193), +(82582, 'Guillermo', 1960, 'M', 192), +(82583, 'Winston', 1960, 'M', 192), +(82584, 'Billie', 1960, 'M', 190), +(82585, 'Avery', 1960, 'M', 189), +(82586, 'Dion', 1960, 'M', 188), +(82587, 'Erwin', 1960, 'M', 188), +(82588, 'Tracey', 1960, 'M', 188), +(82589, 'Bryce', 1960, 'M', 186), +(82590, 'Burton', 1960, 'M', 186), +(82591, 'Dick', 1960, 'M', 186), +(82592, 'Fabian', 1960, 'M', 186), +(82593, 'Art', 1960, 'M', 184), +(82594, 'Brandon', 1960, 'M', 183), +(82595, 'Garrett', 1960, 'M', 182), +(82596, 'Elijah', 1960, 'M', 181), +(82597, 'Dannie', 1960, 'M', 180), +(82598, 'Jasper', 1960, 'M', 180), +(82599, 'Eldon', 1960, 'M', 179), +(82600, 'Norbert', 1960, 'M', 179), +(82601, 'Tyler', 1960, 'M', 179), +(82602, 'Wilfredo', 1960, 'M', 179), +(82603, 'Levi', 1960, 'M', 178), +(82604, 'Rogelio', 1960, 'M', 178), +(82605, 'Elvin', 1960, 'M', 177), +(82606, 'Carmen', 1960, 'M', 176), +(82607, 'Merle', 1960, 'M', 176), +(82608, 'Danial', 1960, 'M', 175), +(82609, 'Harrison', 1960, 'M', 175), +(82610, 'Linwood', 1960, 'M', 175), +(82611, 'Sandy', 1960, 'M', 175), +(82612, 'Domingo', 1960, 'M', 173), +(82613, 'Duncan', 1960, 'M', 173), +(82614, 'Jefferson', 1960, 'M', 173), +(82615, 'Grover', 1960, 'M', 172), +(82616, 'Harley', 1960, 'M', 172), +(82617, 'Lanny', 1960, 'M', 172), +(82618, 'Les', 1960, 'M', 172), +(82619, 'Theron', 1960, 'M', 171), +(82620, 'Elias', 1960, 'M', 170), +(82621, 'Mary', 1960, 'M', 169), +(82622, 'Sanford', 1960, 'M', 169), +(82623, 'Kip', 1960, 'M', 168), +(82624, 'Thurman', 1960, 'M', 166), +(82625, 'Erich', 1960, 'M', 165), +(82626, 'Kermit', 1960, 'M', 165), +(82627, 'Nolan', 1960, 'M', 165), +(82628, 'Marcos', 1960, 'M', 164), +(82629, 'Erick', 1960, 'M', 163), +(82630, 'Antoine', 1960, 'M', 162), +(82631, 'Daren', 1960, 'M', 161), +(82632, 'Kraig', 1960, 'M', 161), +(82633, 'Emil', 1960, 'M', 160), +(82634, 'Jonathon', 1960, 'M', 160), +(82635, 'Santiago', 1960, 'M', 159), +(82636, 'Vito', 1960, 'M', 159), +(82637, 'Jeremy', 1960, 'M', 158), +(82638, 'Shelby', 1960, 'M', 158), +(82639, 'Jake', 1960, 'M', 157), +(82640, 'Kenton', 1960, 'M', 157), +(82641, 'Roscoe', 1960, 'M', 157), +(82642, 'Elliot', 1960, 'M', 156), +(82643, 'Lonny', 1960, 'M', 156), +(82644, 'Hank', 1960, 'M', 155), +(82645, 'Kelley', 1960, 'M', 155), +(82646, 'Orville', 1960, 'M', 155), +(82647, 'Anton', 1960, 'M', 153), +(82648, 'Gino', 1960, 'M', 153), +(82649, 'Timmie', 1960, 'M', 153), +(82650, 'Lindsay', 1960, 'M', 152), +(82651, 'Cesar', 1960, 'M', 151), +(82652, 'Dudley', 1960, 'M', 150), +(82653, 'Jeremiah', 1960, 'M', 150), +(82654, 'Layne', 1960, 'M', 150), +(82655, 'Ulysses', 1960, 'M', 150), +(82656, 'Shelton', 1960, 'M', 149), +(82657, 'August', 1960, 'M', 148), +(82658, 'Emilio', 1960, 'M', 148), +(82659, 'Errol', 1960, 'M', 148), +(82660, 'Winfred', 1960, 'M', 148), +(82661, 'Eli', 1960, 'M', 147), +(82662, 'Loyd', 1960, 'M', 147), +(82663, 'Sonny', 1960, 'M', 146), +(82664, 'Tad', 1960, 'M', 146), +(82665, 'Cornell', 1960, 'M', 144), +(82666, 'Emery', 1960, 'M', 144), +(82667, 'Frederic', 1960, 'M', 144), +(82668, 'Jean', 1960, 'M', 144), +(82669, 'Johnathan', 1960, 'M', 143), +(82670, 'Adolph', 1960, 'M', 142), +(82671, 'Coy', 1960, 'M', 142), +(82672, 'Santos', 1960, 'M', 142), +(82673, 'Britt', 1960, 'M', 141), +(82674, 'Donn', 1960, 'M', 141), +(82675, 'Gustavo', 1960, 'M', 141), +(82676, 'Lindsey', 1960, 'M', 141), +(82677, 'Otto', 1960, 'M', 141), +(82678, 'Roman', 1960, 'M', 141), +(82679, 'Toney', 1960, 'M', 141), +(82680, 'Ignacio', 1960, 'M', 140), +(82681, 'Jed', 1960, 'M', 140), +(82682, 'Odell', 1960, 'M', 140), +(82683, 'Carter', 1960, 'M', 139), +(82684, 'Keven', 1960, 'M', 139), +(82685, 'Noah', 1960, 'M', 138), +(82686, 'Wes', 1960, 'M', 138), +(82687, 'Jordan', 1960, 'M', 137), +(82688, 'Del', 1960, 'M', 136), +(82689, 'Wiley', 1960, 'M', 136), +(82690, 'Charley', 1960, 'M', 135), +(82691, 'Nicolas', 1960, 'M', 135), +(82692, 'Wayde', 1960, 'M', 135), +(82693, 'Brady', 1960, 'M', 134), +(82694, 'Davis', 1960, 'M', 134), +(82695, 'Quintin', 1960, 'M', 134), +(82696, 'Chip', 1960, 'M', 133), +(82697, 'Stefan', 1960, 'M', 133), +(82698, 'Timmothy', 1960, 'M', 133), +(82699, 'Vern', 1960, 'M', 133), +(82700, 'Wally', 1960, 'M', 133), +(82701, 'Damian', 1960, 'M', 132), +(82702, 'Efrain', 1960, 'M', 131), +(82703, 'Emory', 1960, 'M', 131), +(82704, 'Ivory', 1960, 'M', 131), +(82705, 'Benito', 1960, 'M', 130), +(82706, 'Lenard', 1960, 'M', 130), +(82707, 'Reid', 1960, 'M', 130), +(82708, 'Carlo', 1960, 'M', 129), +(82709, 'Gale', 1960, 'M', 129), +(82710, 'Josh', 1960, 'M', 129), +(82711, 'Hollis', 1960, 'M', 128), +(82712, 'Jerold', 1960, 'M', 128), +(82713, 'Saul', 1960, 'M', 128), +(82714, 'Solomon', 1960, 'M', 128), +(82715, 'Jacky', 1960, 'M', 127), +(82716, 'Quentin', 1960, 'M', 127), +(82717, 'Humberto', 1960, 'M', 126), +(82718, 'Xavier', 1960, 'M', 126), +(82719, 'Mikel', 1960, 'M', 125), +(82720, 'Weldon', 1960, 'M', 125), +(82721, 'Marcel', 1960, 'M', 124), +(82722, 'Hiram', 1960, 'M', 123), +(82723, 'Millard', 1960, 'M', 123), +(82724, 'Quinton', 1960, 'M', 123), +(82725, 'Adolfo', 1960, 'M', 122), +(82726, 'Randel', 1960, 'M', 122), +(82727, 'Val', 1960, 'M', 122), +(82728, 'Carmine', 1960, 'M', 121), +(82729, 'Len', 1960, 'M', 121), +(82730, 'Scottie', 1960, 'M', 121), +(82731, 'Butch', 1960, 'M', 120), +(82732, 'Elwood', 1960, 'M', 120), +(82733, 'Bud', 1960, 'M', 119), +(82734, 'Zane', 1960, 'M', 119), +(82735, 'Chet', 1960, 'M', 118), +(82736, 'Noe', 1960, 'M', 118), +(82737, 'Ollie', 1960, 'M', 118), +(82738, 'Thad', 1960, 'M', 118), +(82739, 'Jackson', 1960, 'M', 117), +(82740, 'Kennedy', 1960, 'M', 117), +(82741, 'Courtney', 1960, 'M', 116), +(82742, 'Cris', 1960, 'M', 115), +(82743, 'Myles', 1960, 'M', 115), +(82744, 'Derwin', 1960, 'M', 113), +(82745, 'Blane', 1960, 'M', 112), +(82746, 'Eloy', 1960, 'M', 112), +(82747, 'Basil', 1960, 'M', 111), +(82748, 'Jarvis', 1960, 'M', 111), +(82749, 'Kirt', 1960, 'M', 111), +(82750, 'Merrill', 1960, 'M', 111), +(82751, 'Bradly', 1960, 'M', 110), +(82752, 'Dwaine', 1960, 'M', 110), +(82753, 'Jerrold', 1960, 'M', 110), +(82754, 'Richie', 1960, 'M', 110), +(82755, 'Fidel', 1960, 'M', 109), +(82756, 'Fredric', 1960, 'M', 109), +(82757, 'Jude', 1960, 'M', 109), +(82758, 'Von', 1960, 'M', 109), +(82759, 'Devin', 1960, 'M', 108), +(82760, 'Jacques', 1960, 'M', 108), +(82761, 'Mervin', 1960, 'M', 108), +(82762, 'Riley', 1960, 'M', 108), +(82763, 'Burt', 1960, 'M', 107), +(82764, 'Bruno', 1960, 'M', 106), +(82765, 'Christophe', 1960, 'M', 106), +(82766, 'Delmar', 1960, 'M', 106), +(82767, 'Denver', 1960, 'M', 106), +(82768, 'Emmanuel', 1960, 'M', 106), +(82769, 'Harris', 1960, 'M', 106), +(82770, 'Keenan', 1960, 'M', 106), +(82771, 'Merlin', 1960, 'M', 105), +(82772, 'Skip', 1960, 'M', 105), +(82773, 'Wyatt', 1960, 'M', 105), +(82774, 'Freeman', 1960, 'M', 104), +(82775, 'Leonardo', 1960, 'M', 104), +(82776, 'Sal', 1960, 'M', 104), +(82777, 'Stanford', 1960, 'M', 104), +(82778, 'Dee', 1960, 'M', 102), +(82779, 'Alec', 1960, 'M', 101), +(82780, 'Gavin', 1960, 'M', 101), +(82781, 'Rock', 1960, 'M', 101), +(82782, 'Armand', 1960, 'M', 100), +(82783, 'Connie', 1960, 'M', 100), +(82784, 'Edwardo', 1960, 'M', 100), +(82785, 'Mary', 1961, 'F', 47667), +(82786, 'Lisa', 1961, 'F', 42695), +(82787, 'Susan', 1961, 'F', 37521), +(82788, 'Linda', 1961, 'F', 35570), +(82789, 'Karen', 1961, 'F', 34692), +(82790, 'Patricia', 1961, 'F', 28865), +(82791, 'Donna', 1961, 'F', 28664), +(82792, 'Cynthia', 1961, 'F', 24376), +(82793, 'Sandra', 1961, 'F', 24142), +(82794, 'Deborah', 1961, 'F', 24088), +(82795, 'Brenda', 1961, 'F', 23769), +(82796, 'Barbara', 1961, 'F', 22987), +(82797, 'Debra', 1961, 'F', 22151), +(82798, 'Lori', 1961, 'F', 21875), +(82799, 'Pamela', 1961, 'F', 21683), +(82800, 'Nancy', 1961, 'F', 20713), +(82801, 'Sharon', 1961, 'F', 20441), +(82802, 'Teresa', 1961, 'F', 18903), +(82803, 'Elizabeth', 1961, 'F', 18849), +(82804, 'Cheryl', 1961, 'F', 18287), +(82805, 'Laura', 1961, 'F', 17896), +(82806, 'Kimberly', 1961, 'F', 17352), +(82807, 'Julie', 1961, 'F', 17039), +(82808, 'Carol', 1961, 'F', 16665), +(82809, 'Kathy', 1961, 'F', 16381), +(82810, 'Diane', 1961, 'F', 16203), +(82811, 'Robin', 1961, 'F', 15642), +(82812, 'Tammy', 1961, 'F', 15530), +(82813, 'Kathleen', 1961, 'F', 15389), +(82814, 'Denise', 1961, 'F', 15377), +(82815, 'Debbie', 1961, 'F', 14880), +(82816, 'Janet', 1961, 'F', 13927), +(82817, 'Cindy', 1961, 'F', 13384), +(82818, 'Michelle', 1961, 'F', 12735), +(82819, 'Theresa', 1961, 'F', 11967), +(82820, 'Kim', 1961, 'F', 11367), +(82821, 'Jacqueline', 1961, 'F', 10983), +(82822, 'Angela', 1961, 'F', 10833), +(82823, 'Christine', 1961, 'F', 10587), +(82824, 'Margaret', 1961, 'F', 10541), +(82825, 'Tina', 1961, 'F', 10522), +(82826, 'Carolyn', 1961, 'F', 10498), +(82827, 'Laurie', 1961, 'F', 10429), +(82828, 'Rebecca', 1961, 'F', 10234), +(82829, 'Kelly', 1961, 'F', 9637), +(82830, 'Rhonda', 1961, 'F', 9465), +(82831, 'Jennifer', 1961, 'F', 9266), +(82832, 'Catherine', 1961, 'F', 9248), +(82833, 'Dawn', 1961, 'F', 9148), +(82834, 'Connie', 1961, 'F', 8983), +(82835, 'Terri', 1961, 'F', 8728), +(82836, 'Janice', 1961, 'F', 8719), +(82837, 'Sherry', 1961, 'F', 8359), +(82838, 'Ann', 1961, 'F', 8218), +(82839, 'Cathy', 1961, 'F', 8198), +(82840, 'Diana', 1961, 'F', 8188), +(82841, 'Maria', 1961, 'F', 7924), +(82842, 'Judy', 1961, 'F', 7916), +(82843, 'Sheila', 1961, 'F', 7791), +(82844, 'Paula', 1961, 'F', 7745), +(82845, 'Wendy', 1961, 'F', 7149), +(82846, 'Joyce', 1961, 'F', 7004), +(82847, 'Michele', 1961, 'F', 6990), +(82848, 'Tracy', 1961, 'F', 6985), +(82849, 'Beth', 1961, 'F', 6714), +(82850, 'Beverly', 1961, 'F', 6703), +(82851, 'Valerie', 1961, 'F', 6678), +(82852, 'Amy', 1961, 'F', 6614), +(82853, 'Suzanne', 1961, 'F', 6606), +(82854, 'Wanda', 1961, 'F', 6460), +(82855, 'Lynn', 1961, 'F', 6444), +(82856, 'Jane', 1961, 'F', 6361), +(82857, 'Annette', 1961, 'F', 6188), +(82858, 'Jill', 1961, 'F', 6131), +(82859, 'Bonnie', 1961, 'F', 6025), +(82860, 'Vicki', 1961, 'F', 5964), +(82861, 'Carla', 1961, 'F', 5816), +(82862, 'Stephanie', 1961, 'F', 5810), +(82863, 'Renee', 1961, 'F', 5778), +(82864, 'Darlene', 1961, 'F', 5730), +(82865, 'Martha', 1961, 'F', 5716), +(82866, 'Gloria', 1961, 'F', 5689), +(82867, 'Judith', 1961, 'F', 5687), +(82868, 'Leslie', 1961, 'F', 5671), +(82869, 'Katherine', 1961, 'F', 5633), +(82870, 'Shirley', 1961, 'F', 5631), +(82871, 'Betty', 1961, 'F', 5578), +(82872, 'Peggy', 1961, 'F', 5567), +(82873, 'Joan', 1961, 'F', 5547), +(82874, 'Anne', 1961, 'F', 5518), +(82875, 'Anita', 1961, 'F', 5501), +(82876, 'Jean', 1961, 'F', 5367), +(82877, 'Kathryn', 1961, 'F', 5224), +(82878, 'Gail', 1961, 'F', 4972), +(82879, 'Melissa', 1961, 'F', 4900), +(82880, 'Ruth', 1961, 'F', 4891), +(82881, 'Ellen', 1961, 'F', 4844), +(82882, 'Regina', 1961, 'F', 4760), +(82883, 'Dorothy', 1961, 'F', 4726), +(82884, 'Anna', 1961, 'F', 4664), +(82885, 'Penny', 1961, 'F', 4639), +(82886, 'Joanne', 1961, 'F', 4612), +(82887, 'Virginia', 1961, 'F', 4576), +(82888, 'Maureen', 1961, 'F', 4568), +(82889, 'Rita', 1961, 'F', 4528), +(82890, 'Colleen', 1961, 'F', 4513), +(82891, 'Vickie', 1961, 'F', 4399), +(82892, 'Terry', 1961, 'F', 4362), +(82893, 'Marie', 1961, 'F', 4344), +(82894, 'Andrea', 1961, 'F', 4325), +(82895, 'Rose', 1961, 'F', 4315), +(82896, 'Jackie', 1961, 'F', 4249), +(82897, 'Sarah', 1961, 'F', 4206), +(82898, 'Victoria', 1961, 'F', 4149), +(82899, 'Becky', 1961, 'F', 4093), +(82900, 'Julia', 1961, 'F', 3905), +(82901, 'Gina', 1961, 'F', 3870), +(82902, 'Elaine', 1961, 'F', 3866), +(82903, 'Helen', 1961, 'F', 3855), +(82904, 'Phyllis', 1961, 'F', 3838), +(82905, 'Sherri', 1961, 'F', 3805), +(82906, 'Marilyn', 1961, 'F', 3795), +(82907, 'Melanie', 1961, 'F', 3753), +(82908, 'Sylvia', 1961, 'F', 3744), +(82909, 'Tamara', 1961, 'F', 3731), +(82910, 'Alice', 1961, 'F', 3583), +(82911, 'Yvonne', 1961, 'F', 3553), +(82912, 'Dana', 1961, 'F', 3546), +(82913, 'Melinda', 1961, 'F', 3505), +(82914, 'Sue', 1961, 'F', 3502), +(82915, 'Eileen', 1961, 'F', 3490), +(82916, 'Christina', 1961, 'F', 3469), +(82917, 'Sally', 1961, 'F', 3464), +(82918, 'Sandy', 1961, 'F', 3420), +(82919, 'Frances', 1961, 'F', 3419), +(82920, 'Monica', 1961, 'F', 3388), +(82921, 'Joann', 1961, 'F', 3344), +(82922, 'Jeanne', 1961, 'F', 3327), +(82923, 'Carrie', 1961, 'F', 3179), +(82924, 'Sheryl', 1961, 'F', 3119), +(82925, 'Shari', 1961, 'F', 3117), +(82926, 'Belinda', 1961, 'F', 3114), +(82927, 'Lorraine', 1961, 'F', 3112), +(82928, 'Pam', 1961, 'F', 3081), +(82929, 'Shelly', 1961, 'F', 2995), +(82930, 'Evelyn', 1961, 'F', 2937), +(82931, 'Charlotte', 1961, 'F', 2933), +(82932, 'Loretta', 1961, 'F', 2927), +(82933, 'Toni', 1961, 'F', 2894), +(82934, 'Charlene', 1961, 'F', 2825), +(82935, 'Tracey', 1961, 'F', 2807), +(82936, 'Jo', 1961, 'F', 2796), +(82937, 'Vanessa', 1961, 'F', 2760), +(82938, 'Veronica', 1961, 'F', 2728), +(82939, 'Marcia', 1961, 'F', 2683), +(82940, 'Deanna', 1961, 'F', 2682), +(82941, 'Patty', 1961, 'F', 2649), +(82942, 'Joy', 1961, 'F', 2609), +(82943, 'Glenda', 1961, 'F', 2598), +(82944, 'Holly', 1961, 'F', 2574), +(82945, 'Doris', 1961, 'F', 2570), +(82946, 'Roberta', 1961, 'F', 2558), +(82947, 'Jeanette', 1961, 'F', 2555), +(82948, 'Norma', 1961, 'F', 2550), +(82949, 'Gwendolyn', 1961, 'F', 2529), +(82950, 'Heidi', 1961, 'F', 2521), +(82951, 'Yolanda', 1961, 'F', 2512), +(82952, 'Sheri', 1961, 'F', 2488), +(82953, 'Carmen', 1961, 'F', 2397), +(82954, 'Lynne', 1961, 'F', 2396), +(82955, 'Jamie', 1961, 'F', 2338), +(82956, 'Melody', 1961, 'F', 2272), +(82957, 'Teri', 1961, 'F', 2244), +(82958, 'Tami', 1961, 'F', 2225), +(82959, 'Vicky', 1961, 'F', 2209), +(82960, 'Sara', 1961, 'F', 2200), +(82961, 'Caroline', 1961, 'F', 2198), +(82962, 'Dianne', 1961, 'F', 2169), +(82963, 'Marsha', 1961, 'F', 2162), +(82964, 'Shelley', 1961, 'F', 2143), +(82965, 'Rosemary', 1961, 'F', 2130), +(82966, 'Crystal', 1961, 'F', 2115), +(82967, 'Lois', 1961, 'F', 2102), +(82968, 'Patti', 1961, 'F', 2059), +(82969, 'Audrey', 1961, 'F', 2058), +(82970, 'Rachel', 1961, 'F', 2054), +(82971, 'Lynda', 1961, 'F', 2035), +(82972, 'Jan', 1961, 'F', 2030), +(82973, 'Shelia', 1961, 'F', 2004), +(82974, 'Juanita', 1961, 'F', 1986), +(82975, 'Tammie', 1961, 'F', 1978), +(82976, 'Kay', 1961, 'F', 1956), +(82977, 'Irene', 1961, 'F', 1910), +(82978, 'Vivian', 1961, 'F', 1890), +(82979, 'Karla', 1961, 'F', 1872), +(82980, 'Jodi', 1961, 'F', 1848), +(82981, 'Yvette', 1961, 'F', 1848), +(82982, 'Doreen', 1961, 'F', 1847), +(82983, 'Tonya', 1961, 'F', 1840), +(82984, 'Jody', 1961, 'F', 1832), +(82985, 'April', 1961, 'F', 1809), +(82986, 'Roxanne', 1961, 'F', 1723), +(82987, 'Darla', 1961, 'F', 1714), +(82988, 'Constance', 1961, 'F', 1704), +(82989, 'Carole', 1961, 'F', 1678), +(82990, 'Stacy', 1961, 'F', 1677), +(82991, 'Alicia', 1961, 'F', 1671), +(82992, 'Tanya', 1961, 'F', 1648), +(82993, 'Marianne', 1961, 'F', 1647), +(82994, 'Rosa', 1961, 'F', 1643), +(82995, 'Marlene', 1961, 'F', 1636), +(82996, 'Ramona', 1961, 'F', 1628), +(82997, 'Natalie', 1961, 'F', 1625), +(82998, 'Lydia', 1961, 'F', 1572), +(82999, 'Chris', 1961, 'F', 1568), +(83000, 'Arlene', 1961, 'F', 1552), +(83001, 'Sonya', 1961, 'F', 1540), +(83002, 'Louise', 1961, 'F', 1538), +(83003, 'Robyn', 1961, 'F', 1536), +(83004, 'Eva', 1961, 'F', 1526), +(83005, 'Dianna', 1961, 'F', 1522), +(83006, 'Lee', 1961, 'F', 1492), +(83007, 'Ronda', 1961, 'F', 1487), +(83008, 'June', 1961, 'F', 1471), +(83009, 'Felicia', 1961, 'F', 1461), +(83010, 'Jana', 1961, 'F', 1458), +(83011, 'Stacey', 1961, 'F', 1454), +(83012, 'Cassandra', 1961, 'F', 1447), +(83013, 'Gayle', 1961, 'F', 1446), +(83014, 'Grace', 1961, 'F', 1443), +(83015, 'Alison', 1961, 'F', 1407), +(83016, 'Jacquelyn', 1961, 'F', 1395), +(83017, 'Debora', 1961, 'F', 1384), +(83018, 'Sherrie', 1961, 'F', 1369), +(83019, 'Dolores', 1961, 'F', 1340), +(83020, 'Lora', 1961, 'F', 1330), +(83021, 'Cheri', 1961, 'F', 1316), +(83022, 'Marjorie', 1961, 'F', 1312), +(83023, 'Esther', 1961, 'F', 1311), +(83024, 'Lillian', 1961, 'F', 1309), +(83025, 'Annie', 1961, 'F', 1301), +(83026, 'Janine', 1961, 'F', 1286), +(83027, 'Maryann', 1961, 'F', 1281), +(83028, 'Geraldine', 1961, 'F', 1280), +(83029, 'Ruby', 1961, 'F', 1275), +(83030, 'Lynette', 1961, 'F', 1269), +(83031, 'Joni', 1961, 'F', 1265), +(83032, 'Lauren', 1961, 'F', 1259), +(83033, 'Kelley', 1961, 'F', 1251), +(83034, 'Jenny', 1961, 'F', 1250), +(83035, 'Nina', 1961, 'F', 1238), +(83036, 'Shannon', 1961, 'F', 1235), +(83037, 'Lorie', 1961, 'F', 1219), +(83038, 'Kimberley', 1961, 'F', 1210), +(83039, 'Bridget', 1961, 'F', 1209), +(83040, 'Bernadette', 1961, 'F', 1206), +(83041, 'Kristi', 1961, 'F', 1203), +(83042, 'Josephine', 1961, 'F', 1202), +(83043, 'Delores', 1961, 'F', 1190), +(83044, 'Allison', 1961, 'F', 1182), +(83045, 'Kristine', 1961, 'F', 1175), +(83046, 'Christy', 1961, 'F', 1165), +(83047, 'Claudia', 1961, 'F', 1162), +(83048, 'Edith', 1961, 'F', 1161), +(83049, 'Emily', 1961, 'F', 1149), +(83050, 'Margie', 1961, 'F', 1140), +(83051, 'Marla', 1961, 'F', 1138), +(83052, 'Pauline', 1961, 'F', 1137), +(83053, 'Erin', 1961, 'F', 1133), +(83054, 'Betsy', 1961, 'F', 1132), +(83055, 'Susie', 1961, 'F', 1129), +(83056, 'Angie', 1961, 'F', 1117), +(83057, 'Nora', 1961, 'F', 1117), +(83058, 'Terrie', 1961, 'F', 1111), +(83059, 'Kelli', 1961, 'F', 1104), +(83060, 'Heather', 1961, 'F', 1103), +(83061, 'Mona', 1961, 'F', 1093), +(83062, 'Priscilla', 1961, 'F', 1089), +(83063, 'Ginger', 1961, 'F', 1083), +(83064, 'Lucy', 1961, 'F', 1080), +(83065, 'Therese', 1961, 'F', 1078), +(83066, 'Lorrie', 1961, 'F', 1058), +(83067, 'Amanda', 1961, 'F', 1056), +(83068, 'Janie', 1961, 'F', 1050), +(83069, 'Gretchen', 1961, 'F', 1046), +(83070, 'Kerry', 1961, 'F', 1040), +(83071, 'Edna', 1961, 'F', 1038), +(83072, 'Myra', 1961, 'F', 1035), +(83073, 'Rochelle', 1961, 'F', 1035), +(83074, 'Georgia', 1961, 'F', 1029), +(83075, 'Patsy', 1961, 'F', 1019), +(83076, 'Antoinette', 1961, 'F', 1006), +(83077, 'Mildred', 1961, 'F', 994), +(83078, 'Sonia', 1961, 'F', 984), +(83079, 'Jayne', 1961, 'F', 980), +(83080, 'Rosemarie', 1961, 'F', 966), +(83081, 'Cecilia', 1961, 'F', 961), +(83082, 'Nadine', 1961, 'F', 953), +(83083, 'Miriam', 1961, 'F', 946), +(83084, 'Francine', 1961, 'F', 943), +(83085, 'Tara', 1961, 'F', 942), +(83086, 'Bonita', 1961, 'F', 930), +(83087, 'Cathleen', 1961, 'F', 929), +(83088, 'Marian', 1961, 'F', 907), +(83089, 'Shawn', 1961, 'F', 899), +(83090, 'Bobbie', 1961, 'F', 895), +(83091, 'Emma', 1961, 'F', 886), +(83092, 'Gwen', 1961, 'F', 882), +(83093, 'Patrice', 1961, 'F', 882), +(83094, 'Sabrina', 1961, 'F', 882), +(83095, 'Jeannie', 1961, 'F', 880), +(83096, 'Kari', 1961, 'F', 880), +(83097, 'Kellie', 1961, 'F', 880), +(83098, 'Clara', 1961, 'F', 879), +(83099, 'Jeannette', 1961, 'F', 879), +(83100, 'Traci', 1961, 'F', 878), +(83101, 'Katrina', 1961, 'F', 875), +(83102, 'Leticia', 1961, 'F', 869), +(83103, 'Sonja', 1961, 'F', 868), +(83104, 'Dora', 1961, 'F', 867), +(83105, 'Joanna', 1961, 'F', 865), +(83106, 'Vera', 1961, 'F', 859), +(83107, 'Rene', 1961, 'F', 858), +(83108, 'Celeste', 1961, 'F', 854), +(83109, 'Irma', 1961, 'F', 842), +(83110, 'Leigh', 1961, 'F', 841), +(83111, 'Kristin', 1961, 'F', 821), +(83112, 'Lana', 1961, 'F', 819), +(83113, 'Gladys', 1961, 'F', 817), +(83114, 'Claire', 1961, 'F', 811), +(83115, 'Lucinda', 1961, 'F', 811), +(83116, 'Leah', 1961, 'F', 807), +(83117, 'Deirdre', 1961, 'F', 795), +(83118, 'Alma', 1961, 'F', 788), +(83119, 'Faith', 1961, 'F', 783), +(83120, 'Candy', 1961, 'F', 782), +(83121, 'Molly', 1961, 'F', 781), +(83122, 'Paulette', 1961, 'F', 773), +(83123, 'Thelma', 1961, 'F', 773), +(83124, 'Dena', 1961, 'F', 769), +(83125, 'Trina', 1961, 'F', 768), +(83126, 'Beatrice', 1961, 'F', 765), +(83127, 'Bernice', 1961, 'F', 764), +(83128, 'Lesa', 1961, 'F', 763), +(83129, 'Laurel', 1961, 'F', 757), +(83130, 'Nanette', 1961, 'F', 753), +(83131, 'Eleanor', 1961, 'F', 750), +(83132, 'Marion', 1961, 'F', 749), +(83133, 'Candace', 1961, 'F', 740), +(83134, 'Bertha', 1961, 'F', 738), +(83135, 'Billie', 1961, 'F', 733), +(83136, 'Dina', 1961, 'F', 733), +(83137, 'Karin', 1961, 'F', 729), +(83138, 'Luann', 1961, 'F', 729), +(83139, 'Lauri', 1961, 'F', 718), +(83140, 'Wilma', 1961, 'F', 718), +(83141, 'Jeri', 1961, 'F', 717), +(83142, 'Ella', 1961, 'F', 713), +(83143, 'Janis', 1961, 'F', 709), +(83144, 'Iris', 1961, 'F', 707), +(83145, 'Tracie', 1961, 'F', 706), +(83146, 'Ida', 1961, 'F', 701), +(83147, 'Adrienne', 1961, 'F', 692), +(83148, 'Jeanine', 1961, 'F', 688), +(83149, 'Jennie', 1961, 'F', 683), +(83150, 'Trudy', 1961, 'F', 681), +(83151, 'Marcella', 1961, 'F', 680), +(83152, 'Rosie', 1961, 'F', 677), +(83153, 'Lorri', 1961, 'F', 675), +(83154, 'Naomi', 1961, 'F', 673), +(83155, 'Daphne', 1961, 'F', 670), +(83156, 'Jessica', 1961, 'F', 669), +(83157, 'Danielle', 1961, 'F', 664), +(83158, 'Leanne', 1961, 'F', 664), +(83159, 'Liz', 1961, 'F', 664), +(83160, 'Polly', 1961, 'F', 658), +(83161, 'Faye', 1961, 'F', 656), +(83162, 'Jolene', 1961, 'F', 650), +(83163, 'Ana', 1961, 'F', 647), +(83164, 'Florence', 1961, 'F', 637), +(83165, 'Lucille', 1961, 'F', 634), +(83166, 'Ethel', 1961, 'F', 631), +(83167, 'Cherie', 1961, 'F', 626), +(83168, 'Maxine', 1961, 'F', 626), +(83169, 'Rosalind', 1961, 'F', 624), +(83170, 'Angelia', 1961, 'F', 623), +(83171, 'Dee', 1961, 'F', 623), +(83172, 'Kris', 1961, 'F', 618), +(83173, 'Della', 1961, 'F', 615), +(83174, 'Pat', 1961, 'F', 610), +(83175, 'Alisa', 1961, 'F', 601), +(83176, 'Jeannine', 1961, 'F', 601), +(83177, 'Tammi', 1961, 'F', 600), +(83178, 'Angel', 1961, 'F', 597), +(83179, 'Stella', 1961, 'F', 596), +(83180, 'Gay', 1961, 'F', 595), +(83181, 'Katie', 1961, 'F', 595), +(83182, 'Lorna', 1961, 'F', 592), +(83183, 'Susanne', 1961, 'F', 590), +(83184, 'Debby', 1961, 'F', 588), +(83185, 'Noreen', 1961, 'F', 586), +(83186, 'Darcy', 1961, 'F', 583), +(83187, 'Tamera', 1961, 'F', 582), +(83188, 'Kristy', 1961, 'F', 581), +(83189, 'Janette', 1961, 'F', 577), +(83190, 'Amelia', 1961, 'F', 573), +(83191, 'Corinne', 1961, 'F', 572), +(83192, 'Lena', 1961, 'F', 569), +(83193, 'Madeline', 1961, 'F', 569), +(83194, 'Cecelia', 1961, 'F', 565), +(83195, 'Desiree', 1961, 'F', 561), +(83196, 'Kristina', 1961, 'F', 560), +(83197, 'Jodie', 1961, 'F', 550), +(83198, 'Olga', 1961, 'F', 550), +(83199, 'Leann', 1961, 'F', 549), +(83200, 'Jerri', 1961, 'F', 547), +(83201, 'Monique', 1961, 'F', 545), +(83202, 'Marcy', 1961, 'F', 543), +(83203, 'Margarita', 1961, 'F', 543), +(83204, 'Camille', 1961, 'F', 541), +(83205, 'Elisa', 1961, 'F', 540), +(83206, 'Valarie', 1961, 'F', 540), +(83207, 'Kristen', 1961, 'F', 538), +(83208, 'Kathi', 1961, 'F', 536), +(83209, 'Mindy', 1961, 'F', 536), +(83210, 'Celia', 1961, 'F', 531), +(83211, 'Christie', 1961, 'F', 529), +(83212, 'Rena', 1961, 'F', 524), +(83213, 'Velma', 1961, 'F', 524), +(83214, 'Suzette', 1961, 'F', 519), +(83215, 'Sondra', 1961, 'F', 517), +(83216, 'Deanne', 1961, 'F', 516), +(83217, 'Hazel', 1961, 'F', 515), +(83218, 'Ladonna', 1961, 'F', 513), +(83219, 'Hope', 1961, 'F', 512), +(83220, 'Kerri', 1961, 'F', 508), +(83221, 'Lillie', 1961, 'F', 508), +(83222, 'Marguerite', 1961, 'F', 507), +(83223, 'Rosalie', 1961, 'F', 507), +(83224, 'Willie', 1961, 'F', 502), +(83225, 'Tamra', 1961, 'F', 493), +(83226, 'Johnna', 1961, 'F', 488), +(83227, 'Colette', 1961, 'F', 487), +(83228, 'Marybeth', 1961, 'F', 487), +(83229, 'Benita', 1961, 'F', 479), +(83230, 'Gale', 1961, 'F', 478), +(83231, 'Lou', 1961, 'F', 474), +(83232, 'Robbin', 1961, 'F', 474), +(83233, 'Robbie', 1961, 'F', 471), +(83234, 'Deana', 1961, 'F', 469), +(83235, 'Jessie', 1961, 'F', 469), +(83236, 'Delia', 1961, 'F', 468), +(83237, 'Mitzi', 1961, 'F', 467), +(83238, 'Verna', 1961, 'F', 465), +(83239, 'Margo', 1961, 'F', 461), +(83240, 'Gayla', 1961, 'F', 460), +(83241, 'Lynnette', 1961, 'F', 457), +(83242, 'Deidre', 1961, 'F', 455), +(83243, 'Barb', 1961, 'F', 453), +(83244, 'Laverne', 1961, 'F', 452), +(83245, 'Danette', 1961, 'F', 449), +(83246, 'Lenora', 1961, 'F', 449), +(83247, 'Dale', 1961, 'F', 446), +(83248, 'Kimberlee', 1961, 'F', 445), +(83249, 'Freda', 1961, 'F', 444), +(83250, 'Judi', 1961, 'F', 437), +(83251, 'Olivia', 1961, 'F', 435), +(83252, 'Harriet', 1961, 'F', 433), +(83253, 'Janelle', 1961, 'F', 431), +(83254, 'Randi', 1961, 'F', 429), +(83255, 'Leona', 1961, 'F', 427), +(83256, 'Geneva', 1961, 'F', 425), +(83257, 'Hilda', 1961, 'F', 424), +(83258, 'Ingrid', 1961, 'F', 424), +(83259, 'Cora', 1961, 'F', 419), +(83260, 'Maryellen', 1961, 'F', 418), +(83261, 'Viola', 1961, 'F', 418), +(83262, 'Daisy', 1961, 'F', 411), +(83263, 'Guadalupe', 1961, 'F', 406), +(83264, 'Coleen', 1961, 'F', 404), +(83265, 'Annmarie', 1961, 'F', 403), +(83266, 'Elise', 1961, 'F', 403), +(83267, 'Julianne', 1961, 'F', 403), +(83268, 'Megan', 1961, 'F', 403), +(83269, 'Lea', 1961, 'F', 402), +(83270, 'Elena', 1961, 'F', 399), +(83271, 'Cindi', 1961, 'F', 398), +(83272, 'Lola', 1961, 'F', 398), +(83273, 'Agnes', 1961, 'F', 396), +(83274, 'Kathie', 1961, 'F', 396), +(83275, 'Bobbi', 1961, 'F', 393), +(83276, 'Felecia', 1961, 'F', 390), +(83277, 'Roseann', 1961, 'F', 388), +(83278, 'Shelby', 1961, 'F', 388), +(83279, 'Ernestine', 1961, 'F', 383), +(83280, 'Alesia', 1961, 'F', 381), +(83281, 'Dixie', 1961, 'F', 381), +(83282, 'Helene', 1961, 'F', 381), +(83283, 'Deann', 1961, 'F', 379), +(83284, 'Tamela', 1961, 'F', 379), +(83285, 'Deloris', 1961, 'F', 377), +(83286, 'Kristie', 1961, 'F', 377), +(83287, 'Johanna', 1961, 'F', 376), +(83288, 'Rachelle', 1961, 'F', 375), +(83289, 'Tonia', 1961, 'F', 375), +(83290, 'Bridgette', 1961, 'F', 374), +(83291, 'Luanne', 1961, 'F', 371), +(83292, 'Maryanne', 1961, 'F', 370), +(83293, 'Elisabeth', 1961, 'F', 368), +(83294, 'Stacie', 1961, 'F', 367), +(83295, 'Isabel', 1961, 'F', 366), +(83296, 'Maura', 1961, 'F', 366), +(83297, 'Greta', 1961, 'F', 361), +(83298, 'Sallie', 1961, 'F', 361), +(83299, 'Jeanie', 1961, 'F', 360), +(83300, 'Mae', 1961, 'F', 360), +(83301, 'Christi', 1961, 'F', 359), +(83302, 'Sandi', 1961, 'F', 357), +(83303, 'Deena', 1961, 'F', 356), +(83304, 'Kendra', 1961, 'F', 351), +(83305, 'Marta', 1961, 'F', 349), +(83306, 'Pearl', 1961, 'F', 347), +(83307, 'Elsie', 1961, 'F', 346), +(83308, 'Mari', 1961, 'F', 346), +(83309, 'Krista', 1961, 'F', 345), +(83310, 'Paige', 1961, 'F', 345), +(83311, 'Myrna', 1961, 'F', 344), +(83312, 'Ada', 1961, 'F', 343), +(83313, 'Rosanne', 1961, 'F', 342), +(83314, 'Rosalyn', 1961, 'F', 341), +(83315, 'Cara', 1961, 'F', 340), +(83316, 'Johnnie', 1961, 'F', 340), +(83317, 'Saundra', 1961, 'F', 339), +(83318, 'Jacquline', 1961, 'F', 336), +(83319, 'Amber', 1961, 'F', 335), +(83320, 'Clare', 1961, 'F', 335), +(83321, 'Denice', 1961, 'F', 334), +(83322, 'Nellie', 1961, 'F', 334), +(83323, 'Renae', 1961, 'F', 333), +(83324, 'Eunice', 1961, 'F', 332), +(83325, 'Leeann', 1961, 'F', 332), +(83326, 'Velvet', 1961, 'F', 332), +(83327, 'Katharine', 1961, 'F', 330), +(83328, 'Malinda', 1961, 'F', 330), +(83329, 'Eugenia', 1961, 'F', 329), +(83330, 'Michael', 1961, 'F', 326), +(83331, 'Sophia', 1961, 'F', 324), +(83332, 'Leisa', 1961, 'F', 323), +(83333, 'Roxann', 1961, 'F', 322), +(83334, 'Mattie', 1961, 'F', 321), +(83335, 'Genevieve', 1961, 'F', 319), +(83336, 'Kara', 1961, 'F', 319), +(83337, 'Laureen', 1961, 'F', 319), +(83338, 'Minnie', 1961, 'F', 319), +(83339, 'Tena', 1961, 'F', 319), +(83340, 'Geri', 1961, 'F', 318), +(83341, 'Violet', 1961, 'F', 318), +(83342, 'Sharron', 1961, 'F', 317), +(83343, 'Bessie', 1961, 'F', 316), +(83344, 'Alberta', 1961, 'F', 315), +(83345, 'Kaye', 1961, 'F', 315), +(83346, 'Danita', 1961, 'F', 313), +(83347, 'Caryn', 1961, 'F', 312), +(83348, 'Juli', 1961, 'F', 311), +(83349, 'Dorothea', 1961, 'F', 310), +(83350, 'Janna', 1961, 'F', 310), +(83351, 'Marcie', 1961, 'F', 310), +(83352, 'Penelope', 1961, 'F', 310), +(83353, 'Lorene', 1961, 'F', 308), +(83354, 'Maggie', 1961, 'F', 308), +(83355, 'Reba', 1961, 'F', 308), +(83356, 'Roslyn', 1961, 'F', 308), +(83357, 'Diann', 1961, 'F', 306), +(83358, 'Tricia', 1961, 'F', 306), +(83359, 'Claudette', 1961, 'F', 305), +(83360, 'Eve', 1961, 'F', 304), +(83361, 'Carlene', 1961, 'F', 301), +(83362, 'Marylou', 1961, 'F', 301), +(83363, 'Renita', 1961, 'F', 301), +(83364, 'Charmaine', 1961, 'F', 299), +(83365, 'Flora', 1961, 'F', 299), +(83366, 'Letitia', 1961, 'F', 299), +(83367, 'Lorena', 1961, 'F', 299), +(83368, 'Nikki', 1961, 'F', 299), +(83369, 'Edwina', 1961, 'F', 298), +(83370, 'Marisa', 1961, 'F', 298), +(83371, 'Lourdes', 1961, 'F', 297), +(83372, 'Marci', 1961, 'F', 297), +(83373, 'Frankie', 1961, 'F', 294); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(83374, 'Maryjo', 1961, 'F', 294), +(83375, 'Dona', 1961, 'F', 291), +(83376, 'Robert', 1961, 'F', 289), +(83377, 'Jenifer', 1961, 'F', 287), +(83378, 'Arleen', 1961, 'F', 286), +(83379, 'Geralyn', 1961, 'F', 286), +(83380, 'James', 1961, 'F', 286), +(83381, 'Blanca', 1961, 'F', 285), +(83382, 'Lucia', 1961, 'F', 285), +(83383, 'Caren', 1961, 'F', 284), +(83384, 'Elsa', 1961, 'F', 284), +(83385, 'Simone', 1961, 'F', 282), +(83386, 'Shawna', 1961, 'F', 280), +(83387, 'Luz', 1961, 'F', 279), +(83388, 'Brigitte', 1961, 'F', 278), +(83389, 'Estella', 1961, 'F', 277), +(83390, 'John', 1961, 'F', 277), +(83391, 'Lesley', 1961, 'F', 277), +(83392, 'Allyson', 1961, 'F', 276), +(83393, 'Nita', 1961, 'F', 276), +(83394, 'Adele', 1961, 'F', 275), +(83395, 'Lesia', 1961, 'F', 275), +(83396, 'Rosalinda', 1961, 'F', 275), +(83397, 'Antonia', 1961, 'F', 274), +(83398, 'Janell', 1961, 'F', 274), +(83399, 'Gena', 1961, 'F', 273), +(83400, 'Roxanna', 1961, 'F', 273), +(83401, 'Lupe', 1961, 'F', 272), +(83402, 'Nicole', 1961, 'F', 272), +(83403, 'Rae', 1961, 'F', 272), +(83404, 'Gracie', 1961, 'F', 271), +(83405, 'Corina', 1961, 'F', 270), +(83406, 'Patrica', 1961, 'F', 270), +(83407, 'Rosetta', 1961, 'F', 269), +(83408, 'Gigi', 1961, 'F', 268), +(83409, 'Merry', 1961, 'F', 268), +(83410, 'Terese', 1961, 'F', 267), +(83411, 'Misty', 1961, 'F', 266), +(83412, 'Silvia', 1961, 'F', 265), +(83413, 'Ava', 1961, 'F', 263), +(83414, 'Lila', 1961, 'F', 262), +(83415, 'Marina', 1961, 'F', 262), +(83416, 'Pamala', 1961, 'F', 260), +(83417, 'Glenna', 1961, 'F', 257), +(83418, 'Libby', 1961, 'F', 257), +(83419, 'Selena', 1961, 'F', 257), +(83420, 'Karyn', 1961, 'F', 256), +(83421, 'Meredith', 1961, 'F', 255), +(83422, 'Deidra', 1961, 'F', 254), +(83423, 'Josie', 1961, 'F', 254), +(83424, 'Sheree', 1961, 'F', 254), +(83425, 'Wendi', 1961, 'F', 253), +(83426, 'Twila', 1961, 'F', 252), +(83427, 'Annemarie', 1961, 'F', 251), +(83428, 'Corrine', 1961, 'F', 251), +(83429, 'Debi', 1961, 'F', 251), +(83430, 'Pattie', 1961, 'F', 250), +(83431, 'Jami', 1961, 'F', 249), +(83432, 'Keri', 1961, 'F', 249), +(83433, 'Vickey', 1961, 'F', 249), +(83434, 'Maritza', 1961, 'F', 248), +(83435, 'Fay', 1961, 'F', 246), +(83436, 'Fran', 1961, 'F', 246), +(83437, 'Mamie', 1961, 'F', 245), +(83438, 'Hattie', 1961, 'F', 244), +(83439, 'Teressa', 1961, 'F', 244), +(83440, 'Aileen', 1961, 'F', 243), +(83441, 'Georgette', 1961, 'F', 243), +(83442, 'Shellie', 1961, 'F', 243), +(83443, 'Erica', 1961, 'F', 242), +(83444, 'Erma', 1961, 'F', 242), +(83445, 'Suzan', 1961, 'F', 242), +(83446, 'Alfreda', 1961, 'F', 241), +(83447, 'Bridgett', 1961, 'F', 241), +(83448, 'Candice', 1961, 'F', 240), +(83449, 'Henrietta', 1961, 'F', 240), +(83450, 'Nannette', 1961, 'F', 240), +(83451, 'Kirsten', 1961, 'F', 239), +(83452, 'Angelina', 1961, 'F', 238), +(83453, 'Helena', 1961, 'F', 238), +(83454, 'Dinah', 1961, 'F', 237), +(83455, 'Melba', 1961, 'F', 237), +(83456, 'Abby', 1961, 'F', 236), +(83457, 'Cathryn', 1961, 'F', 236), +(83458, 'Clarissa', 1961, 'F', 236), +(83459, 'Lenore', 1961, 'F', 236), +(83460, 'Graciela', 1961, 'F', 235), +(83461, 'David', 1961, 'F', 234), +(83462, 'Shauna', 1961, 'F', 234), +(83463, 'Abigail', 1961, 'F', 233), +(83464, 'Jewel', 1961, 'F', 233), +(83465, 'Ruthie', 1961, 'F', 232), +(83466, 'Kitty', 1961, 'F', 231), +(83467, 'Lisha', 1961, 'F', 231), +(83468, 'Roxane', 1961, 'F', 231), +(83469, 'Ilene', 1961, 'F', 230), +(83470, 'Shelli', 1961, 'F', 230), +(83471, 'Gaye', 1961, 'F', 229), +(83472, 'Melodie', 1961, 'F', 229), +(83473, 'Migdalia', 1961, 'F', 229), +(83474, 'Bernadine', 1961, 'F', 228), +(83475, 'Inez', 1961, 'F', 228), +(83476, 'Loraine', 1961, 'F', 228), +(83477, 'Valorie', 1961, 'F', 228), +(83478, 'Justine', 1961, 'F', 227), +(83479, 'Raquel', 1961, 'F', 227), +(83480, 'Sharlene', 1961, 'F', 227), +(83481, 'Bethany', 1961, 'F', 226), +(83482, 'Dorene', 1961, 'F', 226), +(83483, 'Karol', 1961, 'F', 225), +(83484, 'Kyle', 1961, 'F', 225), +(83485, 'Nelda', 1961, 'F', 224), +(83486, 'Jocelyn', 1961, 'F', 223), +(83487, 'Tana', 1961, 'F', 223), +(83488, 'Antionette', 1961, 'F', 222), +(83489, 'Kate', 1961, 'F', 221), +(83490, 'Carmela', 1961, 'F', 219), +(83491, 'Avis', 1961, 'F', 218), +(83492, 'Juliana', 1961, 'F', 218), +(83493, 'Minerva', 1961, 'F', 214), +(83494, 'Alexandra', 1961, 'F', 213), +(83495, 'Lyn', 1961, 'F', 213), +(83496, 'Pennie', 1961, 'F', 212), +(83497, 'Rhoda', 1961, 'F', 212), +(83498, 'Dori', 1961, 'F', 211), +(83499, 'Christa', 1961, 'F', 210), +(83500, 'Ginny', 1961, 'F', 210), +(83501, 'Ivy', 1961, 'F', 210), +(83502, 'Lawanda', 1961, 'F', 210), +(83503, 'Liza', 1961, 'F', 210), +(83504, 'Vonda', 1961, 'F', 208), +(83505, 'Etta', 1961, 'F', 207), +(83506, 'Hilary', 1961, 'F', 207), +(83507, 'Fannie', 1961, 'F', 206), +(83508, 'Louann', 1961, 'F', 206), +(83509, 'Lula', 1961, 'F', 206), +(83510, 'Maribeth', 1961, 'F', 205), +(83511, 'Valeria', 1961, 'F', 205), +(83512, 'William', 1961, 'F', 204), +(83513, 'Francis', 1961, 'F', 203), +(83514, 'Kathrine', 1961, 'F', 203), +(83515, 'Selina', 1961, 'F', 203), +(83516, 'Susanna', 1961, 'F', 203), +(83517, 'Venus', 1961, 'F', 203), +(83518, 'Elvira', 1961, 'F', 202), +(83519, 'Gerri', 1961, 'F', 201), +(83520, 'Mariann', 1961, 'F', 201), +(83521, 'Leesa', 1961, 'F', 199), +(83522, 'Venita', 1961, 'F', 199), +(83523, 'Erika', 1961, 'F', 198), +(83524, 'Cherri', 1961, 'F', 197), +(83525, 'Ivette', 1961, 'F', 197), +(83526, 'Loriann', 1961, 'F', 197), +(83527, 'Cari', 1961, 'F', 196), +(83528, 'Juliet', 1961, 'F', 196), +(83529, 'Tonja', 1961, 'F', 196), +(83530, 'Danna', 1961, 'F', 195), +(83531, 'Lela', 1961, 'F', 195), +(83532, 'Tamie', 1961, 'F', 195), +(83533, 'Annamarie', 1961, 'F', 193), +(83534, 'Missy', 1961, 'F', 192), +(83535, 'Starla', 1961, 'F', 192), +(83536, 'Tori', 1961, 'F', 192), +(83537, 'Tresa', 1961, 'F', 192), +(83538, 'Leila', 1961, 'F', 191), +(83539, 'Kandy', 1961, 'F', 190), +(83540, 'Madonna', 1961, 'F', 190), +(83541, 'Rachael', 1961, 'F', 189), +(83542, 'Vikki', 1961, 'F', 188), +(83543, 'Chandra', 1961, 'F', 187), +(83544, 'Dottie', 1961, 'F', 187), +(83545, 'Jacquelin', 1961, 'F', 187), +(83546, 'Karon', 1961, 'F', 187), +(83547, 'Rebekah', 1961, 'F', 187), +(83548, 'Althea', 1961, 'F', 186), +(83549, 'Cristina', 1961, 'F', 186), +(83550, 'Dolly', 1961, 'F', 186), +(83551, 'Gabrielle', 1961, 'F', 186), +(83552, 'Mara', 1961, 'F', 186), +(83553, 'Marietta', 1961, 'F', 186), +(83554, 'Myrtle', 1961, 'F', 186), +(83555, 'Cathie', 1961, 'F', 185), +(83556, 'Cherry', 1961, 'F', 185), +(83557, 'Cyndi', 1961, 'F', 185), +(83558, 'Darleen', 1961, 'F', 185), +(83559, 'Cheryle', 1961, 'F', 184), +(83560, 'Valencia', 1961, 'F', 184), +(83561, 'Roseanne', 1961, 'F', 183), +(83562, 'Susana', 1961, 'F', 183), +(83563, 'Teena', 1961, 'F', 182), +(83564, 'Ursula', 1961, 'F', 182), +(83565, 'Mercedes', 1961, 'F', 181), +(83566, 'Aida', 1961, 'F', 179), +(83567, 'Aimee', 1961, 'F', 178), +(83568, 'Babette', 1961, 'F', 178), +(83569, 'Bambi', 1961, 'F', 178), +(83570, 'Blanche', 1961, 'F', 178), +(83571, 'Lucretia', 1961, 'F', 178), +(83572, 'Dawna', 1961, 'F', 177), +(83573, 'Elva', 1961, 'F', 177), +(83574, 'Lavonne', 1961, 'F', 177), +(83575, 'Eloise', 1961, 'F', 176), +(83576, 'Dayna', 1961, 'F', 174), +(83577, 'Georgina', 1961, 'F', 174), +(83578, 'Lanette', 1961, 'F', 174), +(83579, 'Gertrude', 1961, 'F', 172), +(83580, 'Muriel', 1961, 'F', 172), +(83581, 'Tania', 1961, 'F', 172), +(83582, 'Karrie', 1961, 'F', 171), +(83583, 'Katy', 1961, 'F', 171), +(83584, 'Leanna', 1961, 'F', 171), +(83585, 'Charla', 1961, 'F', 170), +(83586, 'Esmeralda', 1961, 'F', 170), +(83587, 'Roxie', 1961, 'F', 170), +(83588, 'Suzy', 1961, 'F', 170), +(83589, 'Letha', 1961, 'F', 169), +(83590, 'Carleen', 1961, 'F', 168), +(83591, 'Delphine', 1961, 'F', 168), +(83592, 'Joanie', 1961, 'F', 168), +(83593, 'Magdalena', 1961, 'F', 168), +(83594, 'Mimi', 1961, 'F', 168), +(83595, 'Sherie', 1961, 'F', 168), +(83596, 'Zelda', 1961, 'F', 168), +(83597, 'Bettina', 1961, 'F', 167), +(83598, 'Carolina', 1961, 'F', 167), +(83599, 'Corinna', 1961, 'F', 167), +(83600, 'Debbi', 1961, 'F', 166), +(83601, 'Jacki', 1961, 'F', 166), +(83602, 'Jacklyn', 1961, 'F', 166), +(83603, 'Fern', 1961, 'F', 165), +(83604, 'Marilee', 1961, 'F', 165), +(83605, 'Bonny', 1961, 'F', 164), +(83606, 'Jacque', 1961, 'F', 164), +(83607, 'Maryjane', 1961, 'F', 164), +(83608, 'Portia', 1961, 'F', 164), +(83609, 'Juliann', 1961, 'F', 163), +(83610, 'Cassie', 1961, 'F', 161), +(83611, 'Cathi', 1961, 'F', 161), +(83612, 'Jeana', 1961, 'F', 161), +(83613, 'Martina', 1961, 'F', 161), +(83614, 'Treva', 1961, 'F', 161), +(83615, 'Carey', 1961, 'F', 160), +(83616, 'Madelyn', 1961, 'F', 160), +(83617, 'Sherrill', 1961, 'F', 160), +(83618, 'Suzie', 1961, 'F', 160), +(83619, 'Trena', 1961, 'F', 160), +(83620, 'Ora', 1961, 'F', 159), +(83621, 'Alana', 1961, 'F', 158), +(83622, 'Camilla', 1961, 'F', 158), +(83623, 'Donita', 1961, 'F', 158), +(83624, 'Mark', 1961, 'F', 158), +(83625, 'Sharla', 1961, 'F', 158), +(83626, 'Lilly', 1961, 'F', 157), +(83627, 'Melisa', 1961, 'F', 157), +(83628, 'Rosanna', 1961, 'F', 157), +(83629, 'Rosario', 1961, 'F', 157), +(83630, 'Deedee', 1961, 'F', 156), +(83631, 'Winifred', 1961, 'F', 156), +(83632, 'Collette', 1961, 'F', 155), +(83633, 'Earnestine', 1961, 'F', 155), +(83634, 'Estelle', 1961, 'F', 155), +(83635, 'Juana', 1961, 'F', 155), +(83636, 'Lindy', 1961, 'F', 155), +(83637, 'Louisa', 1961, 'F', 155), +(83638, 'Mavis', 1961, 'F', 155), +(83639, 'Nanci', 1961, 'F', 155), +(83640, 'Nola', 1961, 'F', 155), +(83641, 'Sabra', 1961, 'F', 155), +(83642, 'Alexis', 1961, 'F', 154), +(83643, 'Cornelia', 1961, 'F', 154), +(83644, 'Meg', 1961, 'F', 154), +(83645, 'Twyla', 1961, 'F', 154), +(83646, 'Millie', 1961, 'F', 153), +(83647, 'Carmella', 1961, 'F', 152), +(83648, 'Dedra', 1961, 'F', 152), +(83649, 'Edie', 1961, 'F', 151), +(83650, 'Ina', 1961, 'F', 151), +(83651, 'Marva', 1961, 'F', 151), +(83652, 'Randy', 1961, 'F', 151), +(83653, 'Ruthann', 1961, 'F', 151), +(83654, 'Cathrine', 1961, 'F', 150), +(83655, 'Hannah', 1961, 'F', 150), +(83656, 'Sadie', 1961, 'F', 150), +(83657, 'Athena', 1961, 'F', 149), +(83658, 'Aurora', 1961, 'F', 149), +(83659, 'Dara', 1961, 'F', 149), +(83660, 'Katheryn', 1961, 'F', 149), +(83661, 'Adriana', 1961, 'F', 148), +(83662, 'Mollie', 1961, 'F', 148), +(83663, 'Alyson', 1961, 'F', 147), +(83664, 'Angelica', 1961, 'F', 147), +(83665, 'Doretha', 1961, 'F', 147), +(83666, 'Iva', 1961, 'F', 147), +(83667, 'Kerrie', 1961, 'F', 147), +(83668, 'Latanya', 1961, 'F', 147), +(83669, 'Lizabeth', 1961, 'F', 147), +(83670, 'Mandy', 1961, 'F', 147), +(83671, 'Nan', 1961, 'F', 147), +(83672, 'Aleta', 1961, 'F', 146), +(83673, 'Bette', 1961, 'F', 146), +(83674, 'Dorinda', 1961, 'F', 146), +(83675, 'Jewell', 1961, 'F', 146), +(83676, 'Juliette', 1961, 'F', 146), +(83677, 'Lu', 1961, 'F', 146), +(83678, 'Nettie', 1961, 'F', 146), +(83679, 'Angelique', 1961, 'F', 145), +(83680, 'Ester', 1961, 'F', 145), +(83681, 'Marnita', 1961, 'F', 145), +(83682, 'Tommie', 1961, 'F', 145), +(83683, 'Bettie', 1961, 'F', 144), +(83684, 'Deb', 1961, 'F', 144), +(83685, 'Debbra', 1961, 'F', 143), +(83686, 'Debrah', 1961, 'F', 143), +(83687, 'Evangeline', 1961, 'F', 143), +(83688, 'Fonda', 1961, 'F', 143), +(83689, 'Janeen', 1961, 'F', 143), +(83690, 'Jonna', 1961, 'F', 143), +(83691, 'Janel', 1961, 'F', 142), +(83692, 'Leisha', 1961, 'F', 142), +(83693, 'Lise', 1961, 'F', 142), +(83694, 'Serena', 1961, 'F', 142), +(83695, 'Annetta', 1961, 'F', 141), +(83696, 'Harriett', 1961, 'F', 141), +(83697, 'Jimmie', 1961, 'F', 141), +(83698, 'Beverley', 1961, 'F', 139), +(83699, 'Mabel', 1961, 'F', 139), +(83700, 'Merri', 1961, 'F', 139), +(83701, 'Angelita', 1961, 'F', 138), +(83702, 'Earlene', 1961, 'F', 138), +(83703, 'Willa', 1961, 'F', 138), +(83704, 'Miranda', 1961, 'F', 136), +(83705, 'Shiela', 1961, 'F', 136), +(83706, 'Candi', 1961, 'F', 135), +(83707, 'Cecile', 1961, 'F', 135), +(83708, 'Clarice', 1961, 'F', 135), +(83709, 'Joellen', 1961, 'F', 135), +(83710, 'Chrystal', 1961, 'F', 134), +(83711, 'Machelle', 1961, 'F', 134), +(83712, 'Romona', 1961, 'F', 134), +(83713, 'Daria', 1961, 'F', 133), +(83714, 'Esperanza', 1961, 'F', 133), +(83715, 'Maribel', 1961, 'F', 133), +(83716, 'Milagros', 1961, 'F', 133), +(83717, 'Rona', 1961, 'F', 133), +(83718, 'Barbie', 1961, 'F', 132), +(83719, 'Dorthy', 1961, 'F', 132), +(83720, 'Fawn', 1961, 'F', 132), +(83721, 'Joleen', 1961, 'F', 132), +(83722, 'Loria', 1961, 'F', 132), +(83723, 'Margot', 1961, 'F', 132), +(83724, 'Marty', 1961, 'F', 132), +(83725, 'Nona', 1961, 'F', 132), +(83726, 'Ronna', 1961, 'F', 132), +(83727, 'Deeann', 1961, 'F', 131), +(83728, 'Delois', 1961, 'F', 131), +(83729, 'Kandi', 1961, 'F', 131), +(83730, 'Laurene', 1961, 'F', 131), +(83731, 'Sharyl', 1961, 'F', 131), +(83732, 'Barbra', 1961, 'F', 130), +(83733, 'Jaime', 1961, 'F', 130), +(83734, 'Lorinda', 1961, 'F', 130), +(83735, 'Richard', 1961, 'F', 130), +(83736, 'Leta', 1961, 'F', 129), +(83737, 'Neva', 1961, 'F', 129), +(83738, 'Penni', 1961, 'F', 129), +(83739, 'Sybil', 1961, 'F', 129), +(83740, 'Lily', 1961, 'F', 128), +(83741, 'Germaine', 1961, 'F', 127), +(83742, 'May', 1961, 'F', 127), +(83743, 'Sydney', 1961, 'F', 127), +(83744, 'Jeanna', 1961, 'F', 126), +(83745, 'Jerry', 1961, 'F', 126), +(83746, 'Rowena', 1961, 'F', 126), +(83747, 'Catharine', 1961, 'F', 125), +(83748, 'Consuelo', 1961, 'F', 125), +(83749, 'Gwyn', 1961, 'F', 125), +(83750, 'Shanna', 1961, 'F', 125), +(83751, 'Loreen', 1961, 'F', 124), +(83752, 'Mable', 1961, 'F', 124), +(83753, 'Monika', 1961, 'F', 124), +(83754, 'Trisha', 1961, 'F', 124), +(83755, 'Bobby', 1961, 'F', 123), +(83756, 'Gilda', 1961, 'F', 123), +(83757, 'Krystal', 1961, 'F', 123), +(83758, 'Melva', 1961, 'F', 123), +(83759, 'Renea', 1961, 'F', 123), +(83760, 'Zoe', 1961, 'F', 123), +(83761, 'Anthony', 1961, 'F', 122), +(83762, 'Lolita', 1961, 'F', 122), +(83763, 'Suzanna', 1961, 'F', 122), +(83764, 'Vernita', 1961, 'F', 122), +(83765, 'Alecia', 1961, 'F', 121), +(83766, 'Brooke', 1961, 'F', 121), +(83767, 'Cary', 1961, 'F', 121), +(83768, 'Earline', 1961, 'F', 121), +(83769, 'Evette', 1961, 'F', 121), +(83770, 'Retha', 1961, 'F', 121), +(83771, 'Sandie', 1961, 'F', 121), +(83772, 'Alyce', 1961, 'F', 120), +(83773, 'Janene', 1961, 'F', 120), +(83774, 'Latonya', 1961, 'F', 120), +(83775, 'Reva', 1961, 'F', 120), +(83776, 'Adrianne', 1961, 'F', 119), +(83777, 'Charles', 1961, 'F', 119), +(83778, 'Freida', 1961, 'F', 119), +(83779, 'Phoebe', 1961, 'F', 119), +(83780, 'Troy', 1961, 'F', 119), +(83781, 'Callie', 1961, 'F', 118), +(83782, 'Elissa', 1961, 'F', 118), +(83783, 'Francesca', 1961, 'F', 118), +(83784, 'Sherryl', 1961, 'F', 118), +(83785, 'Shirlene', 1961, 'F', 118), +(83786, 'Barrie', 1961, 'F', 117), +(83787, 'Damita', 1961, 'F', 117), +(83788, 'Staci', 1961, 'F', 117), +(83789, 'Tonda', 1961, 'F', 117), +(83790, 'Becki', 1961, 'F', 116), +(83791, 'Kayla', 1961, 'F', 116), +(83792, 'Lavern', 1961, 'F', 116), +(83793, 'Richelle', 1961, 'F', 116), +(83794, 'Selma', 1961, 'F', 116), +(83795, 'Veda', 1961, 'F', 116), +(83796, 'Rosita', 1961, 'F', 115), +(83797, 'Cherrie', 1961, 'F', 114), +(83798, 'Darci', 1961, 'F', 114), +(83799, 'Essie', 1961, 'F', 114), +(83800, 'Lissa', 1961, 'F', 114), +(83801, 'Marilynn', 1961, 'F', 114), +(83802, 'Rhea', 1961, 'F', 114), +(83803, 'Scarlett', 1961, 'F', 114), +(83804, 'Thea', 1961, 'F', 114), +(83805, 'Beatriz', 1961, 'F', 113), +(83806, 'Dede', 1961, 'F', 113), +(83807, 'Eula', 1961, 'F', 113), +(83808, 'Lottie', 1961, 'F', 113), +(83809, 'Moira', 1961, 'F', 113), +(83810, 'Ollie', 1961, 'F', 113), +(83811, 'Risa', 1961, 'F', 113), +(83812, 'Starr', 1961, 'F', 113), +(83813, 'Adrian', 1961, 'F', 112), +(83814, 'Charisse', 1961, 'F', 112), +(83815, 'Corine', 1961, 'F', 112), +(83816, 'Joseph', 1961, 'F', 112), +(83817, 'Karan', 1961, 'F', 112), +(83818, 'Millicent', 1961, 'F', 112), +(83819, 'Queen', 1961, 'F', 112), +(83820, 'Corrina', 1961, 'F', 111), +(83821, 'Denita', 1961, 'F', 111), +(83822, 'Hillary', 1961, 'F', 111), +(83823, 'Jerilyn', 1961, 'F', 111), +(83824, 'Lorelei', 1961, 'F', 111), +(83825, 'Madeleine', 1961, 'F', 111), +(83826, 'Noemi', 1961, 'F', 111), +(83827, 'Anastasia', 1961, 'F', 110), +(83828, 'Andra', 1961, 'F', 110), +(83829, 'Nicki', 1961, 'F', 110), +(83830, 'Stefanie', 1961, 'F', 110), +(83831, 'Thomas', 1961, 'F', 110), +(83832, 'Aretha', 1961, 'F', 109), +(83833, 'Carmel', 1961, 'F', 109), +(83834, 'Carolynn', 1961, 'F', 109), +(83835, 'Caron', 1961, 'F', 109), +(83836, 'Josefina', 1961, 'F', 109), +(83837, 'Liane', 1961, 'F', 109), +(83838, 'Suzann', 1961, 'F', 109), +(83839, 'Tamala', 1961, 'F', 109), +(83840, 'Joe', 1961, 'F', 108), +(83841, 'Matilda', 1961, 'F', 108), +(83842, 'Kevin', 1961, 'F', 107), +(83843, 'Charity', 1961, 'F', 106), +(83844, 'Dawne', 1961, 'F', 106), +(83845, 'Delilah', 1961, 'F', 106), +(83846, 'Evonne', 1961, 'F', 106), +(83847, 'Joycelyn', 1961, 'F', 106), +(83848, 'Lory', 1961, 'F', 106), +(83849, 'Mickey', 1961, 'F', 106), +(83850, 'Ronnie', 1961, 'F', 106), +(83851, 'Celestine', 1961, 'F', 105), +(83852, 'Jannie', 1961, 'F', 105), +(83853, 'Julianna', 1961, 'F', 105), +(83854, 'Marti', 1961, 'F', 105), +(83855, 'Addie', 1961, 'F', 104), +(83856, 'Charleen', 1961, 'F', 104), +(83857, 'Dalia', 1961, 'F', 104), +(83858, 'Jeanetta', 1961, 'F', 104), +(83859, 'Jeanmarie', 1961, 'F', 104), +(83860, 'Marissa', 1961, 'F', 104), +(83861, 'Trudi', 1961, 'F', 104), +(83862, 'Carri', 1961, 'F', 103), +(83863, 'Elana', 1961, 'F', 103), +(83864, 'Isabelle', 1961, 'F', 103), +(83865, 'Margery', 1961, 'F', 103), +(83866, 'Brigette', 1961, 'F', 102), +(83867, 'Darcie', 1961, 'F', 102), +(83868, 'Demetria', 1961, 'F', 102), +(83869, 'Lizzie', 1961, 'F', 102), +(83870, 'Marita', 1961, 'F', 102), +(83871, 'Angeline', 1961, 'F', 101), +(83872, 'Caryl', 1961, 'F', 101), +(83873, 'Courtney', 1961, 'F', 101), +(83874, 'Leola', 1961, 'F', 101), +(83875, 'Luisa', 1961, 'F', 101), +(83876, 'Opal', 1961, 'F', 101), +(83877, 'Pearlie', 1961, 'F', 101), +(83878, 'Petra', 1961, 'F', 101), +(83879, 'Adela', 1961, 'F', 100), +(83880, 'Beckie', 1961, 'F', 100), +(83881, 'Cinda', 1961, 'F', 100), +(83882, 'Evangelina', 1961, 'F', 100), +(83883, 'Lani', 1961, 'F', 100), +(83884, 'Lona', 1961, 'F', 100), +(83885, 'Lonnie', 1961, 'F', 100), +(83886, 'Natasha', 1961, 'F', 100), +(83887, 'Michael', 1961, 'M', 86916), +(83888, 'David', 1961, 'M', 84771), +(83889, 'John', 1961, 'M', 79904), +(83890, 'James', 1961, 'M', 75896), +(83891, 'Robert', 1961, 'M', 72908), +(83892, 'Mark', 1961, 'M', 57755), +(83893, 'William', 1961, 'M', 48012), +(83894, 'Richard', 1961, 'M', 41119), +(83895, 'Thomas', 1961, 'M', 37544), +(83896, 'Steven', 1961, 'M', 32242), +(83897, 'Jeffrey', 1961, 'M', 32019), +(83898, 'Joseph', 1961, 'M', 29447), +(83899, 'Charles', 1961, 'M', 29190), +(83900, 'Kevin', 1961, 'M', 28905), +(83901, 'Timothy', 1961, 'M', 28240), +(83902, 'Kenneth', 1961, 'M', 26088), +(83903, 'Daniel', 1961, 'M', 25884), +(83904, 'Paul', 1961, 'M', 25628), +(83905, 'Scott', 1961, 'M', 23915), +(83906, 'Brian', 1961, 'M', 22555), +(83907, 'Gary', 1961, 'M', 22152), +(83908, 'Donald', 1961, 'M', 21408), +(83909, 'Gregory', 1961, 'M', 21353), +(83910, 'Ronald', 1961, 'M', 20817), +(83911, 'Anthony', 1961, 'M', 20189), +(83912, 'Christopher', 1961, 'M', 17229), +(83913, 'Stephen', 1961, 'M', 16053), +(83914, 'Douglas', 1961, 'M', 15963), +(83915, 'Edward', 1961, 'M', 15877), +(83916, 'Larry', 1961, 'M', 14576), +(83917, 'George', 1961, 'M', 13635), +(83918, 'Terry', 1961, 'M', 13184), +(83919, 'Randy', 1961, 'M', 12578), +(83920, 'Dennis', 1961, 'M', 12480), +(83921, 'Keith', 1961, 'M', 12281), +(83922, 'Mike', 1961, 'M', 11662), +(83923, 'Jerry', 1961, 'M', 11374), +(83924, 'Eric', 1961, 'M', 11110), +(83925, 'Patrick', 1961, 'M', 11058), +(83926, 'Bruce', 1961, 'M', 10719), +(83927, 'Frank', 1961, 'M', 10419), +(83928, 'Peter', 1961, 'M', 10340), +(83929, 'Craig', 1961, 'M', 10233), +(83930, 'Ricky', 1961, 'M', 10018), +(83931, 'Steve', 1961, 'M', 9993), +(83932, 'Todd', 1961, 'M', 9752), +(83933, 'Roger', 1961, 'M', 9654), +(83934, 'Raymond', 1961, 'M', 9606), +(83935, 'Jeff', 1961, 'M', 9460), +(83936, 'Jeffery', 1961, 'M', 8917), +(83937, 'Alan', 1961, 'M', 8620), +(83938, 'Andrew', 1961, 'M', 8485), +(83939, 'Tony', 1961, 'M', 8296), +(83940, 'Danny', 1961, 'M', 8199), +(83941, 'Russell', 1961, 'M', 7341), +(83942, 'Carl', 1961, 'M', 7250), +(83943, 'Chris', 1961, 'M', 7206), +(83944, 'Dale', 1961, 'M', 7184), +(83945, 'Matthew', 1961, 'M', 7081), +(83946, 'Joe', 1961, 'M', 7056), +(83947, 'Wayne', 1961, 'M', 6752), +(83948, 'Gerald', 1961, 'M', 6627), +(83949, 'Randall', 1961, 'M', 6587), +(83950, 'Glenn', 1961, 'M', 6274), +(83951, 'Tim', 1961, 'M', 6241), +(83952, 'Barry', 1961, 'M', 6216), +(83953, 'Lawrence', 1961, 'M', 6087), +(83954, 'Billy', 1961, 'M', 6028), +(83955, 'Phillip', 1961, 'M', 5974), +(83956, 'Johnny', 1961, 'M', 5900), +(83957, 'Jimmy', 1961, 'M', 5740), +(83958, 'Rodney', 1961, 'M', 5661), +(83959, 'Martin', 1961, 'M', 5465), +(83960, 'Walter', 1961, 'M', 5455), +(83961, 'Curtis', 1961, 'M', 5439), +(83962, 'Bobby', 1961, 'M', 5399), +(83963, 'Greg', 1961, 'M', 5392), +(83964, 'Jim', 1961, 'M', 5347), +(83965, 'Philip', 1961, 'M', 5290), +(83966, 'Darryl', 1961, 'M', 5127), +(83967, 'Jay', 1961, 'M', 5118), +(83968, 'Bryan', 1961, 'M', 5027), +(83969, 'Roy', 1961, 'M', 4960), +(83970, 'Dean', 1961, 'M', 4927), +(83971, 'Arthur', 1961, 'M', 4813), +(83972, 'Willie', 1961, 'M', 4782), +(83973, 'Bradley', 1961, 'M', 4734), +(83974, 'Tom', 1961, 'M', 4721), +(83975, 'Samuel', 1961, 'M', 4677), +(83976, 'Jack', 1961, 'M', 4639), +(83977, 'Henry', 1961, 'M', 4618), +(83978, 'Ronnie', 1961, 'M', 4612), +(83979, 'Jon', 1961, 'M', 4604), +(83980, 'Harold', 1961, 'M', 4440), +(83981, 'Ralph', 1961, 'M', 4436), +(83982, 'Allen', 1961, 'M', 4387), +(83983, 'Albert', 1961, 'M', 4318), +(83984, 'Vincent', 1961, 'M', 4317), +(83985, 'Victor', 1961, 'M', 4295), +(83986, 'Troy', 1961, 'M', 4262), +(83987, 'Darrell', 1961, 'M', 4194), +(83988, 'Eddie', 1961, 'M', 4080), +(83989, 'Micheal', 1961, 'M', 4020), +(83990, 'Bill', 1961, 'M', 4000), +(83991, 'Louis', 1961, 'M', 3961), +(83992, 'Stanley', 1961, 'M', 3921), +(83993, 'Jose', 1961, 'M', 3764), +(83994, 'Rick', 1961, 'M', 3735), +(83995, 'Howard', 1961, 'M', 3563), +(83996, 'Joel', 1961, 'M', 3512), +(83997, 'Jonathan', 1961, 'M', 3480), +(83998, 'Dwayne', 1961, 'M', 3479), +(83999, 'Eugene', 1961, 'M', 3450), +(84000, 'Leonard', 1961, 'M', 3425), +(84001, 'Dan', 1961, 'M', 3415), +(84002, 'Tommy', 1961, 'M', 3399), +(84003, 'Frederick', 1961, 'M', 3314), +(84004, 'Mitchell', 1961, 'M', 3196), +(84005, 'Tracy', 1961, 'M', 3183), +(84006, 'Marvin', 1961, 'M', 3182), +(84007, 'Don', 1961, 'M', 3149), +(84008, 'Lee', 1961, 'M', 3127), +(84009, 'Ernest', 1961, 'M', 3092), +(84010, 'Fred', 1961, 'M', 3084), +(84011, 'Kelly', 1961, 'M', 3003), +(84012, 'Ray', 1961, 'M', 2923), +(84013, 'Calvin', 1961, 'M', 2862), +(84014, 'Melvin', 1961, 'M', 2841), +(84015, 'Kurt', 1961, 'M', 2822), +(84016, 'Dave', 1961, 'M', 2798), +(84017, 'Harry', 1961, 'M', 2741), +(84018, 'Duane', 1961, 'M', 2731), +(84019, 'Marc', 1961, 'M', 2707), +(84020, 'Glen', 1961, 'M', 2688), +(84021, 'Norman', 1961, 'M', 2685), +(84022, 'Jerome', 1961, 'M', 2628), +(84023, 'Brent', 1961, 'M', 2553), +(84024, 'Karl', 1961, 'M', 2545), +(84025, 'Earl', 1961, 'M', 2523), +(84026, 'Kirk', 1961, 'M', 2514), +(84027, 'Brad', 1961, 'M', 2502), +(84028, 'Bob', 1961, 'M', 2501), +(84029, 'Shawn', 1961, 'M', 2482), +(84030, 'Reginald', 1961, 'M', 2468), +(84031, 'Edwin', 1961, 'M', 2441), +(84032, 'Benjamin', 1961, 'M', 2387), +(84033, 'Kent', 1961, 'M', 2376), +(84034, 'Francis', 1961, 'M', 2342), +(84035, 'Clifford', 1961, 'M', 2337), +(84036, 'Jesse', 1961, 'M', 2303), +(84037, 'Theodore', 1961, 'M', 2297), +(84038, 'Alfred', 1961, 'M', 2278), +(84039, 'Rickey', 1961, 'M', 2257), +(84040, 'Perry', 1961, 'M', 2227), +(84041, 'Clarence', 1961, 'M', 2190), +(84042, 'Bernard', 1961, 'M', 2148), +(84043, 'Warren', 1961, 'M', 2084), +(84044, 'Nicholas', 1961, 'M', 2080), +(84045, 'Brett', 1961, 'M', 2067), +(84046, 'Juan', 1961, 'M', 2052), +(84047, 'Kerry', 1961, 'M', 2027), +(84048, 'Guy', 1961, 'M', 2024), +(84049, 'Wesley', 1961, 'M', 2003), +(84050, 'Carlos', 1961, 'M', 2000), +(84051, 'Gordon', 1961, 'M', 1985), +(84052, 'Stuart', 1961, 'M', 1900), +(84053, 'Aaron', 1961, 'M', 1882), +(84054, 'Alvin', 1961, 'M', 1868), +(84055, 'Robin', 1961, 'M', 1850), +(84056, 'Ron', 1961, 'M', 1838), +(84057, 'Leroy', 1961, 'M', 1826), +(84058, 'Doug', 1961, 'M', 1807), +(84059, 'Lance', 1961, 'M', 1804), +(84060, 'Darren', 1961, 'M', 1778), +(84061, 'Vernon', 1961, 'M', 1770), +(84062, 'Gregg', 1961, 'M', 1752), +(84063, 'Sean', 1961, 'M', 1720), +(84064, 'Gilbert', 1961, 'M', 1709), +(84065, 'Kenny', 1961, 'M', 1700), +(84066, 'Dana', 1961, 'M', 1695), +(84067, 'Herbert', 1961, 'M', 1686), +(84068, 'Lloyd', 1961, 'M', 1685), +(84069, 'Daryl', 1961, 'M', 1681), +(84070, 'Ted', 1961, 'M', 1679), +(84071, 'Gene', 1961, 'M', 1670), +(84072, 'Manuel', 1961, 'M', 1668), +(84073, 'Dwight', 1961, 'M', 1662), +(84074, 'Ken', 1961, 'M', 1659), +(84075, 'Tyrone', 1961, 'M', 1629), +(84076, 'Leslie', 1961, 'M', 1618), +(84077, 'Lonnie', 1961, 'M', 1593), +(84078, 'Antonio', 1961, 'M', 1583), +(84079, 'Adam', 1961, 'M', 1581), +(84080, 'Leon', 1961, 'M', 1555), +(84081, 'Franklin', 1961, 'M', 1524), +(84082, 'Neil', 1961, 'M', 1524), +(84083, 'Andre', 1961, 'M', 1500), +(84084, 'Derrick', 1961, 'M', 1497), +(84085, 'Nathan', 1961, 'M', 1489), +(84086, 'Timmy', 1961, 'M', 1479), +(84087, 'Marty', 1961, 'M', 1457), +(84088, 'Maurice', 1961, 'M', 1438), +(84089, 'Floyd', 1961, 'M', 1437), +(84090, 'Luis', 1961, 'M', 1409), +(84091, 'Derek', 1961, 'M', 1405), +(84092, 'Ruben', 1961, 'M', 1380), +(84093, 'Donnie', 1961, 'M', 1375), +(84094, 'Andy', 1961, 'M', 1373), +(84095, 'Kelvin', 1961, 'M', 1364), +(84096, 'Clyde', 1961, 'M', 1348), +(84097, 'Allan', 1961, 'M', 1342), +(84098, 'Lewis', 1961, 'M', 1334), +(84099, 'Jackie', 1961, 'M', 1314), +(84100, 'Marcus', 1961, 'M', 1312), +(84101, 'Gerard', 1961, 'M', 1307), +(84102, 'Mario', 1961, 'M', 1292), +(84103, 'Lester', 1961, 'M', 1288), +(84104, 'Chuck', 1961, 'M', 1283), +(84105, 'Rex', 1961, 'M', 1269), +(84106, 'Joey', 1961, 'M', 1258), +(84107, 'Wade', 1961, 'M', 1245), +(84108, 'Ricardo', 1961, 'M', 1240), +(84109, 'Alexander', 1961, 'M', 1231), +(84110, 'Byron', 1961, 'M', 1225), +(84111, 'Jimmie', 1961, 'M', 1224), +(84112, 'Charlie', 1961, 'M', 1221), +(84113, 'Wendell', 1961, 'M', 1220), +(84114, 'Alex', 1961, 'M', 1219), +(84115, 'Sam', 1961, 'M', 1194), +(84116, 'Leo', 1961, 'M', 1176), +(84117, 'Clayton', 1961, 'M', 1161), +(84118, 'Kyle', 1961, 'M', 1158), +(84119, 'Randal', 1961, 'M', 1155), +(84120, 'Arnold', 1961, 'M', 1153), +(84121, 'Freddie', 1961, 'M', 1145), +(84122, 'Roland', 1961, 'M', 1131), +(84123, 'Neal', 1961, 'M', 1119), +(84124, 'Garry', 1961, 'M', 1116), +(84125, 'Milton', 1961, 'M', 1105), +(84126, 'Kim', 1961, 'M', 1101), +(84127, 'Randolph', 1961, 'M', 1068), +(84128, 'Jason', 1961, 'M', 1066), +(84129, 'Johnnie', 1961, 'M', 1053), +(84130, 'Nathaniel', 1961, 'M', 1050), +(84131, 'Oscar', 1961, 'M', 1042), +(84132, 'Ross', 1961, 'M', 1022), +(84133, 'Herman', 1961, 'M', 1005), +(84134, 'Clinton', 1961, 'M', 996), +(84135, 'Terrence', 1961, 'M', 996), +(84136, 'Jesus', 1961, 'M', 972), +(84137, 'Cecil', 1961, 'M', 968), +(84138, 'Harvey', 1961, 'M', 957), +(84139, 'Nelson', 1961, 'M', 952), +(84140, 'Jessie', 1961, 'M', 949), +(84141, 'Roberto', 1961, 'M', 944), +(84142, 'Nick', 1961, 'M', 936), +(84143, 'Ben', 1961, 'M', 933), +(84144, 'Pat', 1961, 'M', 929), +(84145, 'Clay', 1961, 'M', 899), +(84146, 'Marshall', 1961, 'M', 899), +(84147, 'Roderick', 1961, 'M', 899), +(84148, 'Fredrick', 1961, 'M', 894), +(84149, 'Hector', 1961, 'M', 891), +(84150, 'Lynn', 1961, 'M', 890), +(84151, 'Matt', 1961, 'M', 888), +(84152, 'Chester', 1961, 'M', 887), +(84153, 'Raul', 1961, 'M', 880), +(84154, 'Clark', 1961, 'M', 877), +(84155, 'Clifton', 1961, 'M', 872), +(84156, 'Hugh', 1961, 'M', 870), +(84157, 'Sidney', 1961, 'M', 842), +(84158, 'Jody', 1961, 'M', 834), +(84159, 'Geoffrey', 1961, 'M', 823), +(84160, 'Miguel', 1961, 'M', 823), +(84161, 'Grant', 1961, 'M', 810), +(84162, 'Frankie', 1961, 'M', 806), +(84163, 'Claude', 1961, 'M', 804), +(84164, 'Rudy', 1961, 'M', 785), +(84165, 'Sammy', 1961, 'M', 781), +(84166, 'Carlton', 1961, 'M', 769), +(84167, 'Terrance', 1961, 'M', 756), +(84168, 'Angelo', 1961, 'M', 754), +(84169, 'Bart', 1961, 'M', 752), +(84170, 'Bret', 1961, 'M', 740), +(84171, 'Jamie', 1961, 'M', 730), +(84172, 'Terence', 1961, 'M', 728), +(84173, 'Rocky', 1961, 'M', 727), +(84174, 'Francisco', 1961, 'M', 724), +(84175, 'Wallace', 1961, 'M', 722), +(84176, 'Benny', 1961, 'M', 714), +(84177, 'Ramon', 1961, 'M', 706), +(84178, 'Rene', 1961, 'M', 703), +(84179, 'Pete', 1961, 'M', 699), +(84180, 'Edgar', 1961, 'M', 693), +(84181, 'Everett', 1961, 'M', 691), +(84182, 'Robbie', 1961, 'M', 683), +(84183, 'Ivan', 1961, 'M', 669), +(84184, 'Angel', 1961, 'M', 667), +(84185, 'Jaime', 1961, 'M', 665), +(84186, 'Morris', 1961, 'M', 662), +(84187, 'Myron', 1961, 'M', 661), +(84188, 'Lyle', 1961, 'M', 658), +(84189, 'Curt', 1961, 'M', 657), +(84190, 'Max', 1961, 'M', 649), +(84191, 'Darrel', 1961, 'M', 645), +(84192, 'Loren', 1961, 'M', 641), +(84193, 'Cedric', 1961, 'M', 638), +(84194, 'Stewart', 1961, 'M', 638), +(84195, 'Mickey', 1961, 'M', 637), +(84196, 'Lorenzo', 1961, 'M', 635), +(84197, 'Phil', 1961, 'M', 631), +(84198, 'Adrian', 1961, 'M', 629), +(84199, 'Dewayne', 1961, 'M', 629), +(84200, 'Cary', 1961, 'M', 625), +(84201, 'Virgil', 1961, 'M', 623), +(84202, 'Pedro', 1961, 'M', 612), +(84203, 'Teddy', 1961, 'M', 611), +(84204, 'Fernando', 1961, 'M', 610), +(84205, 'Christian', 1961, 'M', 606), +(84206, 'Ed', 1961, 'M', 604), +(84207, 'Orlando', 1961, 'M', 604), +(84208, 'Armando', 1961, 'M', 600), +(84209, 'Felix', 1961, 'M', 587), +(84210, 'Travis', 1961, 'M', 585), +(84211, 'Bradford', 1961, 'M', 582), +(84212, 'Shane', 1961, 'M', 582), +(84213, 'Rafael', 1961, 'M', 579), +(84214, 'Rusty', 1961, 'M', 575), +(84215, 'Drew', 1961, 'M', 567), +(84216, 'Monte', 1961, 'M', 563), +(84217, 'Marion', 1961, 'M', 561), +(84218, 'Salvatore', 1961, 'M', 559), +(84219, 'Gabriel', 1961, 'M', 550), +(84220, 'Ira', 1961, 'M', 549), +(84221, 'Otis', 1961, 'M', 545), +(84222, 'Jorge', 1961, 'M', 541), +(84223, 'Laurence', 1961, 'M', 541), +(84224, 'Alberto', 1961, 'M', 540), +(84225, 'Monty', 1961, 'M', 540), +(84226, 'Alton', 1961, 'M', 539), +(84227, 'Javier', 1961, 'M', 534), +(84228, 'Van', 1961, 'M', 529), +(84229, 'Julian', 1961, 'M', 527), +(84230, 'Earnest', 1961, 'M', 524), +(84231, 'Edmund', 1961, 'M', 522), +(84232, 'Erik', 1961, 'M', 522), +(84233, 'Malcolm', 1961, 'M', 522), +(84234, 'Sylvester', 1961, 'M', 519), +(84235, 'Bennie', 1961, 'M', 517), +(84236, 'Blake', 1961, 'M', 511), +(84237, 'Jacob', 1961, 'M', 510), +(84238, 'Tod', 1961, 'M', 508), +(84239, 'Willard', 1961, 'M', 507), +(84240, 'Rory', 1961, 'M', 505), +(84241, 'Kris', 1961, 'M', 502), +(84242, 'Jeffry', 1961, 'M', 496), +(84243, 'Sherman', 1961, 'M', 495), +(84244, 'Isaac', 1961, 'M', 491), +(84245, 'Luther', 1961, 'M', 491), +(84246, 'Arturo', 1961, 'M', 486), +(84247, 'Evan', 1961, 'M', 486), +(84248, 'Justin', 1961, 'M', 485), +(84249, 'Elmer', 1961, 'M', 479), +(84250, 'Rodger', 1961, 'M', 476), +(84251, 'Alonzo', 1961, 'M', 475), +(84252, 'Delbert', 1961, 'M', 475), +(84253, 'Damon', 1961, 'M', 468), +(84254, 'Alfredo', 1961, 'M', 465), +(84255, 'Vance', 1961, 'M', 463), +(84256, 'Scot', 1961, 'M', 462), +(84257, 'Rickie', 1961, 'M', 460), +(84258, 'Preston', 1961, 'M', 451), +(84259, 'Cory', 1961, 'M', 446), +(84260, 'Dominic', 1961, 'M', 446), +(84261, 'Jerald', 1961, 'M', 446), +(84262, 'Clint', 1961, 'M', 443), +(84263, 'Rob', 1961, 'M', 443), +(84264, 'Darin', 1961, 'M', 439), +(84265, 'Stephan', 1961, 'M', 433), +(84266, 'Noel', 1961, 'M', 431), +(84267, 'Leland', 1961, 'M', 430), +(84268, 'Forrest', 1961, 'M', 429), +(84269, 'Bryant', 1961, 'M', 426), +(84270, 'Ernie', 1961, 'M', 426), +(84271, 'Julius', 1961, 'M', 425), +(84272, 'Roosevelt', 1961, 'M', 425), +(84273, 'Blaine', 1961, 'M', 422), +(84274, 'Dexter', 1961, 'M', 422), +(84275, 'Lionel', 1961, 'M', 420), +(84276, 'Rod', 1961, 'M', 419), +(84277, 'Luke', 1961, 'M', 416), +(84278, 'Kendall', 1961, 'M', 415), +(84279, 'Rudolph', 1961, 'M', 413), +(84280, 'Sheldon', 1961, 'M', 408), +(84281, 'Corey', 1961, 'M', 406), +(84282, 'Alfonso', 1961, 'M', 399), +(84283, 'Mitch', 1961, 'M', 398), +(84284, 'Archie', 1961, 'M', 397), +(84285, 'Spencer', 1961, 'M', 397), +(84286, 'Lowell', 1961, 'M', 390), +(84287, 'Ryan', 1961, 'M', 390), +(84288, 'Tommie', 1961, 'M', 387), +(84289, 'Horace', 1961, 'M', 384), +(84290, 'Doyle', 1961, 'M', 381), +(84291, 'Buddy', 1961, 'M', 378), +(84292, 'Dirk', 1961, 'M', 378), +(84293, 'Gerry', 1961, 'M', 375), +(84294, 'Darwin', 1961, 'M', 374), +(84295, 'Enrique', 1961, 'M', 374), +(84296, 'Dino', 1961, 'M', 372), +(84297, 'Eduardo', 1961, 'M', 370), +(84298, 'Hubert', 1961, 'M', 370), +(84299, 'Stevie', 1961, 'M', 367), +(84300, 'Wilbert', 1961, 'M', 367), +(84301, 'Zachary', 1961, 'M', 367), +(84302, 'Al', 1961, 'M', 364), +(84303, 'Chad', 1961, 'M', 364), +(84304, 'Casey', 1961, 'M', 359), +(84305, 'Willis', 1961, 'M', 357), +(84306, 'Boyd', 1961, 'M', 356), +(84307, 'Colin', 1961, 'M', 354), +(84308, 'Owen', 1961, 'M', 354), +(84309, 'Darnell', 1961, 'M', 353), +(84310, 'Joshua', 1961, 'M', 351), +(84311, 'Oliver', 1961, 'M', 347), +(84312, 'Jan', 1961, 'M', 346), +(84313, 'Mathew', 1961, 'M', 345), +(84314, 'Salvador', 1961, 'M', 345), +(84315, 'Russ', 1961, 'M', 342), +(84316, 'Dallas', 1961, 'M', 341), +(84317, 'Hal', 1961, 'M', 339), +(84318, 'Ward', 1961, 'M', 339), +(84319, 'Cornelius', 1961, 'M', 338), +(84320, 'Julio', 1961, 'M', 336), +(84321, 'Grady', 1961, 'M', 335), +(84322, 'Shannon', 1961, 'M', 334), +(84323, 'Stan', 1961, 'M', 334), +(84324, 'Freddy', 1961, 'M', 332), +(84325, 'Louie', 1961, 'M', 332), +(84326, 'Trent', 1961, 'M', 331), +(84327, 'Carey', 1961, 'M', 330), +(84328, 'Ellis', 1961, 'M', 328), +(84329, 'Ervin', 1961, 'M', 328), +(84330, 'Rufus', 1961, 'M', 328), +(84331, 'Seth', 1961, 'M', 328), +(84332, 'Homer', 1961, 'M', 327), +(84333, 'Vince', 1961, 'M', 327), +(84334, 'Ronny', 1961, 'M', 326), +(84335, 'Miles', 1961, 'M', 323), +(84336, 'Stacy', 1961, 'M', 323), +(84337, 'Ty', 1961, 'M', 323), +(84338, 'Cameron', 1961, 'M', 322), +(84339, 'Bert', 1961, 'M', 321), +(84340, 'Dominick', 1961, 'M', 314), +(84341, 'Robby', 1961, 'M', 312), +(84342, 'Donny', 1961, 'M', 311), +(84343, 'Elliott', 1961, 'M', 311), +(84344, 'Stacey', 1961, 'M', 311), +(84345, 'Mack', 1961, 'M', 309), +(84346, 'Wilbur', 1961, 'M', 309), +(84347, 'Denis', 1961, 'M', 307), +(84348, 'Bryon', 1961, 'M', 305), +(84349, 'Scotty', 1961, 'M', 305), +(84350, 'Marlon', 1961, 'M', 304), +(84351, 'Randell', 1961, 'M', 304), +(84352, 'Dewey', 1961, 'M', 302), +(84353, 'Rodolfo', 1961, 'M', 302), +(84354, 'Toby', 1961, 'M', 302), +(84355, 'Dane', 1961, 'M', 299), +(84356, 'Jess', 1961, 'M', 299), +(84357, 'Alphonso', 1961, 'M', 298), +(84358, 'Garland', 1961, 'M', 298), +(84359, 'Sergio', 1961, 'M', 298), +(84360, 'Kirby', 1961, 'M', 290), +(84361, 'Shaun', 1961, 'M', 288), +(84362, 'Ernesto', 1961, 'M', 285), +(84363, 'Abel', 1961, 'M', 280), +(84364, 'Cliff', 1961, 'M', 278), +(84365, 'Joesph', 1961, 'M', 278), +(84366, 'Abraham', 1961, 'M', 276), +(84367, 'Conrad', 1961, 'M', 275), +(84368, 'Royce', 1961, 'M', 274), +(84369, 'Lamont', 1961, 'M', 271), +(84370, 'Wilson', 1961, 'M', 270), +(84371, 'Sammie', 1961, 'M', 269), +(84372, 'Carroll', 1961, 'M', 264), +(84373, 'Lane', 1961, 'M', 262), +(84374, 'Aubrey', 1961, 'M', 260), +(84375, 'Lamar', 1961, 'M', 260), +(84376, 'Denny', 1961, 'M', 258), +(84377, 'Gilberto', 1961, 'M', 258), +(84378, 'Reggie', 1961, 'M', 258), +(84379, 'Guadalupe', 1961, 'M', 256), +(84380, 'Amos', 1961, 'M', 255), +(84381, 'Rolando', 1961, 'M', 255), +(84382, 'Elbert', 1961, 'M', 254), +(84383, 'Irvin', 1961, 'M', 254), +(84384, 'Pablo', 1961, 'M', 253), +(84385, 'Michel', 1961, 'M', 252), +(84386, 'Cleveland', 1961, 'M', 250), +(84387, 'Moses', 1961, 'M', 250), +(84388, 'Reynaldo', 1961, 'M', 250), +(84389, 'Sterling', 1961, 'M', 250), +(84390, 'Norris', 1961, 'M', 249), +(84391, 'Ian', 1961, 'M', 248), +(84392, 'Sandy', 1961, 'M', 248), +(84393, 'Alejandro', 1961, 'M', 246), +(84394, 'Percy', 1961, 'M', 246), +(84395, 'Marlin', 1961, 'M', 244), +(84396, 'Edmond', 1961, 'M', 243), +(84397, 'Gerardo', 1961, 'M', 242), +(84398, 'Brendan', 1961, 'M', 241), +(84399, 'Eddy', 1961, 'M', 240), +(84400, 'Pierre', 1961, 'M', 239), +(84401, 'Blair', 1961, 'M', 237), +(84402, 'Emmett', 1961, 'M', 237), +(84403, 'Wilfred', 1961, 'M', 235), +(84404, 'Kurtis', 1961, 'M', 234), +(84405, 'Tracey', 1961, 'M', 234), +(84406, 'Dion', 1961, 'M', 233), +(84407, 'Israel', 1961, 'M', 233), +(84408, 'Rich', 1961, 'M', 232), +(84409, 'Darrin', 1961, 'M', 231), +(84410, 'Felipe', 1961, 'M', 230), +(84411, 'Harlan', 1961, 'M', 228), +(84412, 'Murray', 1961, 'M', 227), +(84413, 'Simon', 1961, 'M', 227), +(84414, 'Galen', 1961, 'M', 226), +(84415, 'Barney', 1961, 'M', 223), +(84416, 'Carmen', 1961, 'M', 223), +(84417, 'Jefferson', 1961, 'M', 223), +(84418, 'Reuben', 1961, 'M', 223), +(84419, 'Will', 1961, 'M', 223), +(84420, 'Nicky', 1961, 'M', 222), +(84421, 'Thaddeus', 1961, 'M', 222), +(84422, 'Emanuel', 1961, 'M', 221), +(84423, 'Ramiro', 1961, 'M', 220), +(84424, 'Mitchel', 1961, 'M', 218), +(84425, 'Garrett', 1961, 'M', 217), +(84426, 'Marco', 1961, 'M', 216), +(84427, 'Bernie', 1961, 'M', 215), +(84428, 'Vaughn', 1961, 'M', 214), +(84429, 'Woodrow', 1961, 'M', 214), +(84430, 'Garth', 1961, 'M', 213), +(84431, 'Kennith', 1961, 'M', 210), +(84432, 'Barton', 1961, 'M', 208), +(84433, 'Elton', 1961, 'M', 207), +(84434, 'Lyndon', 1961, 'M', 207), +(84435, 'Austin', 1961, 'M', 206), +(84436, 'Donnell', 1961, 'M', 206), +(84437, 'Terrell', 1961, 'M', 205), +(84438, 'Winston', 1961, 'M', 205), +(84439, 'Morgan', 1961, 'M', 204), +(84440, 'Hans', 1961, 'M', 203), +(84441, 'Andres', 1961, 'M', 200), +(84442, 'Lenny', 1961, 'M', 199), +(84443, 'Tomas', 1961, 'M', 199), +(84444, 'Irving', 1961, 'M', 198), +(84445, 'Ned', 1961, 'M', 197), +(84446, 'Tyler', 1961, 'M', 197), +(84447, 'Lonny', 1961, 'M', 196), +(84448, 'Bennett', 1961, 'M', 194), +(84449, 'Danial', 1961, 'M', 194), +(84450, 'Brandon', 1961, 'M', 193), +(84451, 'Elijah', 1961, 'M', 193), +(84452, 'Junior', 1961, 'M', 193), +(84453, 'Lon', 1961, 'M', 193), +(84454, 'Russel', 1961, 'M', 192), +(84455, 'Daren', 1961, 'M', 191), +(84456, 'Elias', 1961, 'M', 191), +(84457, 'Elvin', 1961, 'M', 191), +(84458, 'Dwain', 1961, 'M', 190), +(84459, 'Art', 1961, 'M', 189), +(84460, 'Elliot', 1961, 'M', 189), +(84461, 'Elvis', 1961, 'M', 188), +(84462, 'Jeremy', 1961, 'M', 188), +(84463, 'Rocco', 1961, 'M', 188), +(84464, 'Jordan', 1961, 'M', 187), +(84465, 'Kraig', 1961, 'M', 187), +(84466, 'Kermit', 1961, 'M', 186), +(84467, 'Toney', 1961, 'M', 186), +(84468, 'Gustavo', 1961, 'M', 185), +(84469, 'Dick', 1961, 'M', 184), +(84470, 'Jed', 1961, 'M', 183), +(84471, 'Avery', 1961, 'M', 182), +(84472, 'Burton', 1961, 'M', 182), +(84473, 'Les', 1961, 'M', 182), +(84474, 'Gus', 1961, 'M', 180), +(84475, 'Ismael', 1961, 'M', 179), +(84476, 'Reed', 1961, 'M', 179), +(84477, 'Erich', 1961, 'M', 178), +(84478, 'Kennedy', 1961, 'M', 177), +(84479, 'Marcos', 1961, 'M', 177), +(84480, 'Dannie', 1961, 'M', 176), +(84481, 'Merle', 1961, 'M', 176), +(84482, 'Quintin', 1961, 'M', 176), +(84483, 'Sanford', 1961, 'M', 176), +(84484, 'Xavier', 1961, 'M', 176), +(84485, 'Loyd', 1961, 'M', 175), +(84486, 'Wilfredo', 1961, 'M', 173), +(84487, 'Domingo', 1961, 'M', 172), +(84488, 'Gino', 1961, 'M', 172), +(84489, 'Grover', 1961, 'M', 172), +(84490, 'Kip', 1961, 'M', 172), +(84491, 'Billie', 1961, 'M', 171), +(84492, 'Guillermo', 1961, 'M', 170), +(84493, 'Jonathon', 1961, 'M', 170), +(84494, 'Lanny', 1961, 'M', 170), +(84495, 'Levi', 1961, 'M', 169), +(84496, 'Saul', 1961, 'M', 169), +(84497, 'Unknown', 1961, 'M', 169), +(84498, 'Cornell', 1961, 'M', 168), +(84499, 'Mary', 1961, 'M', 167), +(84500, 'Orville', 1961, 'M', 167), +(84501, 'Harley', 1961, 'M', 166), +(84502, 'Linwood', 1961, 'M', 166), +(84503, 'Thurman', 1961, 'M', 166), +(84504, 'Jake', 1961, 'M', 165), +(84505, 'Nolan', 1961, 'M', 165), +(84506, 'Chip', 1961, 'M', 164), +(84507, 'Eldon', 1961, 'M', 164), +(84508, 'Erwin', 1961, 'M', 164), +(84509, 'Bryce', 1961, 'M', 162), +(84510, 'August', 1961, 'M', 161), +(84511, 'Wally', 1961, 'M', 161), +(84512, 'Zane', 1961, 'M', 161), +(84513, 'Antoine', 1961, 'M', 158), +(84514, 'Chet', 1961, 'M', 158), +(84515, 'Fabian', 1961, 'M', 158), +(84516, 'Bobbie', 1961, 'M', 157), +(84517, 'Jean', 1961, 'M', 156), +(84518, 'Efrain', 1961, 'M', 154), +(84519, 'Stefan', 1961, 'M', 154), +(84520, 'Cesar', 1961, 'M', 153), +(84521, 'Hank', 1961, 'M', 152), +(84522, 'Jasper', 1961, 'M', 152), +(84523, 'Norbert', 1961, 'M', 151), +(84524, 'Roman', 1961, 'M', 151), +(84525, 'Santos', 1961, 'M', 151), +(84526, 'Ulysses', 1961, 'M', 150), +(84527, 'Leonardo', 1961, 'M', 149), +(84528, 'Vern', 1961, 'M', 149), +(84529, 'Eli', 1961, 'M', 148), +(84530, 'Emil', 1961, 'M', 148), +(84531, 'Quentin', 1961, 'M', 148), +(84532, 'Rogelio', 1961, 'M', 148), +(84533, 'Santiago', 1961, 'M', 148), +(84534, 'Vito', 1961, 'M', 148), +(84535, 'Emilio', 1961, 'M', 146), +(84536, 'Kelley', 1961, 'M', 146), +(84537, 'Duncan', 1961, 'M', 145), +(84538, 'Lindsey', 1961, 'M', 145), +(84539, 'Reid', 1961, 'M', 145), +(84540, 'Solomon', 1961, 'M', 144), +(84541, 'Brady', 1961, 'M', 143), +(84542, 'Damian', 1961, 'M', 143), +(84543, 'Theron', 1961, 'M', 143), +(84544, 'Frederic', 1961, 'M', 142), +(84545, 'Courtney', 1961, 'M', 141), +(84546, 'Erick', 1961, 'M', 140), +(84547, 'Harrison', 1961, 'M', 140), +(84548, 'Otto', 1961, 'M', 140), +(84549, 'Shelton', 1961, 'M', 140), +(84550, 'Scottie', 1961, 'M', 139), +(84551, 'Davis', 1961, 'M', 138), +(84552, 'Sonny', 1961, 'M', 138), +(84553, 'Timmie', 1961, 'M', 138), +(84554, 'Brook', 1961, 'M', 137), +(84555, 'Brooks', 1961, 'M', 136), +(84556, 'Kenton', 1961, 'M', 136), +(84557, 'Dudley', 1961, 'M', 135), +(84558, 'Mikel', 1961, 'M', 135), +(84559, 'Johnathan', 1961, 'M', 134), +(84560, 'Carter', 1961, 'M', 133), +(84561, 'Josh', 1961, 'M', 131), +(84562, 'Roscoe', 1961, 'M', 131), +(84563, 'Shelby', 1961, 'M', 131), +(84564, 'Wes', 1961, 'M', 131), +(84565, 'Errol', 1961, 'M', 130), +(84566, 'Jeremiah', 1961, 'M', 128), +(84567, 'Emmanuel', 1961, 'M', 127), +(84568, 'Ashley', 1961, 'M', 126), +(84569, 'Noah', 1961, 'M', 126), +(84570, 'Devin', 1961, 'M', 125), +(84571, 'Lindsay', 1961, 'M', 125), +(84572, 'Richie', 1961, 'M', 125), +(84573, 'Jacques', 1961, 'M', 124), +(84574, 'Dante', 1961, 'M', 123), +(84575, 'Odell', 1961, 'M', 123), +(84576, 'Winfred', 1961, 'M', 123), +(84577, 'Carmine', 1961, 'M', 122), +(84578, 'Emory', 1961, 'M', 122), +(84579, 'Raynard', 1961, 'M', 122), +(84580, 'Tad', 1961, 'M', 122), +(84581, 'Emery', 1961, 'M', 121), +(84582, 'Gil', 1961, 'M', 121), +(84583, 'Kristopher', 1961, 'M', 121), +(84584, 'Jerold', 1961, 'M', 120), +(84585, 'Donovan', 1961, 'M', 119), +(84586, 'Ivory', 1961, 'M', 119), +(84587, 'Lincoln', 1961, 'M', 119), +(84588, 'Bradly', 1961, 'M', 118), +(84589, 'Humberto', 1961, 'M', 118), +(84590, 'Quinton', 1961, 'M', 118), +(84591, 'Wiley', 1961, 'M', 118), +(84592, 'Butch', 1961, 'M', 117), +(84593, 'Derwin', 1961, 'M', 117), +(84594, 'Greggory', 1961, 'M', 117), +(84595, 'Ignacio', 1961, 'M', 117), +(84596, 'Marcel', 1961, 'M', 117), +(84597, 'Myles', 1961, 'M', 117), +(84598, 'Fidel', 1961, 'M', 116), +(84599, 'Anton', 1961, 'M', 115), +(84600, 'Omar', 1961, 'M', 115), +(84601, 'Randel', 1961, 'M', 115), +(84602, 'Donn', 1961, 'M', 114), +(84603, 'Gavin', 1961, 'M', 114), +(84604, 'Noe', 1961, 'M', 114), +(84605, 'Raphael', 1961, 'M', 114), +(84606, 'Weldon', 1961, 'M', 114), +(84607, 'Cody', 1961, 'M', 113), +(84608, 'Ethan', 1961, 'M', 113), +(84609, 'Hiram', 1961, 'M', 113), +(84610, 'Thad', 1961, 'M', 113), +(84611, 'Basil', 1961, 'M', 112), +(84612, 'Carlo', 1961, 'M', 112), +(84613, 'Shayne', 1961, 'M', 112), +(84614, 'Clement', 1961, 'M', 111), +(84615, 'Coy', 1961, 'M', 111), +(84616, 'Graham', 1961, 'M', 111), +(84617, 'Jerrold', 1961, 'M', 111), +(84618, 'Kimberly', 1961, 'M', 111), +(84619, 'Timmothy', 1961, 'M', 111), +(84620, 'Benito', 1961, 'M', 110), +(84621, 'Lars', 1961, 'M', 110), +(84622, 'Merlin', 1961, 'M', 110), +(84623, 'Mervin', 1961, 'M', 110), +(84624, 'Everette', 1961, 'M', 109), +(84625, 'Keven', 1961, 'M', 109), +(84626, 'Len', 1961, 'M', 109), +(84627, 'Hollis', 1961, 'M', 108), +(84628, 'Layne', 1961, 'M', 108), +(84629, 'Curtiss', 1961, 'M', 107), +(84630, 'Faron', 1961, 'M', 107), +(84631, 'Jefferey', 1961, 'M', 107), +(84632, 'Nicolas', 1961, 'M', 107), +(84633, 'Ollie', 1961, 'M', 107), +(84634, 'Adolfo', 1961, 'M', 106), +(84635, 'Sebastian', 1961, 'M', 106), +(84636, 'Carson', 1961, 'M', 105), +(84637, 'Elwood', 1961, 'M', 105), +(84638, 'Rhett', 1961, 'M', 105), +(84639, 'Taylor', 1961, 'M', 105), +(84640, 'Armand', 1961, 'M', 104), +(84641, 'Bruno', 1961, 'M', 104), +(84642, 'Cris', 1961, 'M', 104), +(84643, 'Edwardo', 1961, 'M', 104), +(84644, 'Stanford', 1961, 'M', 104), +(84645, 'Denver', 1961, 'M', 103), +(84646, 'Jacky', 1961, 'M', 103), +(84647, 'Jude', 1961, 'M', 103), +(84648, 'Micah', 1961, 'M', 103), +(84649, 'Stephon', 1961, 'M', 103), +(84650, 'Fredric', 1961, 'M', 102), +(84651, 'Mel', 1961, 'M', 102), +(84652, 'Merrill', 1961, 'M', 102), +(84653, 'Riley', 1961, 'M', 102), +(84654, 'Adolph', 1961, 'M', 101), +(84655, 'Demetrius', 1961, 'M', 101), +(84656, 'Gale', 1961, 'M', 101), +(84657, 'Kirt', 1961, 'M', 101), +(84658, 'Lenard', 1961, 'M', 100), +(84659, 'Lisa', 1962, 'F', 46083), +(84660, 'Mary', 1962, 'F', 43497), +(84661, 'Susan', 1962, 'F', 35749), +(84662, 'Karen', 1962, 'F', 35182), +(84663, 'Linda', 1962, 'F', 31462), +(84664, 'Patricia', 1962, 'F', 26540), +(84665, 'Donna', 1962, 'F', 25724), +(84666, 'Cynthia', 1962, 'F', 24018), +(84667, 'Deborah', 1962, 'F', 22894), +(84668, 'Sandra', 1962, 'F', 22414), +(84669, 'Lori', 1962, 'F', 22388), +(84670, 'Pamela', 1962, 'F', 21276), +(84671, 'Brenda', 1962, 'F', 21275), +(84672, 'Barbara', 1962, 'F', 20648), +(84673, 'Debra', 1962, 'F', 20604), +(84674, 'Kimberly', 1962, 'F', 20365), +(84675, 'Sharon', 1962, 'F', 19629), +(84676, 'Teresa', 1962, 'F', 18513), +(84677, 'Nancy', 1962, 'F', 18029), +(84678, 'Elizabeth', 1962, 'F', 17799), +(84679, 'Laura', 1962, 'F', 17495), +(84680, 'Julie', 1962, 'F', 17091), +(84681, 'Tammy', 1962, 'F', 16748), +(84682, 'Cheryl', 1962, 'F', 16585), +(84683, 'Robin', 1962, 'F', 15127), +(84684, 'Diane', 1962, 'F', 14821), +(84685, 'Kathy', 1962, 'F', 14757), +(84686, 'Carol', 1962, 'F', 14526), +(84687, 'Kathleen', 1962, 'F', 14186), +(84688, 'Denise', 1962, 'F', 13982), +(84689, 'Michelle', 1962, 'F', 13354), +(84690, 'Debbie', 1962, 'F', 13101), +(84691, 'Tina', 1962, 'F', 12781), +(84692, 'Cindy', 1962, 'F', 12298), +(84693, 'Janet', 1962, 'F', 12254), +(84694, 'Angela', 1962, 'F', 11660), +(84695, 'Kim', 1962, 'F', 11655), +(84696, 'Kelly', 1962, 'F', 11531), +(84697, 'Christine', 1962, 'F', 11195), +(84698, 'Theresa', 1962, 'F', 11060), +(84699, 'Jennifer', 1962, 'F', 10980), +(84700, 'Laurie', 1962, 'F', 10677), +(84701, 'Margaret', 1962, 'F', 10079), +(84702, 'Jacqueline', 1962, 'F', 9832), +(84703, 'Rhonda', 1962, 'F', 9802), +(84704, 'Carolyn', 1962, 'F', 9693), +(84705, 'Rebecca', 1962, 'F', 9409), +(84706, 'Sherry', 1962, 'F', 9227), +(84707, 'Maria', 1962, 'F', 9077), +(84708, 'Dawn', 1962, 'F', 8983), +(84709, 'Connie', 1962, 'F', 8882), +(84710, 'Sheila', 1962, 'F', 8780), +(84711, 'Catherine', 1962, 'F', 8699), +(84712, 'Terri', 1962, 'F', 8436), +(84713, 'Tracy', 1962, 'F', 8306), +(84714, 'Ann', 1962, 'F', 8123), +(84715, 'Diana', 1962, 'F', 7839), +(84716, 'Janice', 1962, 'F', 7819), +(84717, 'Michele', 1962, 'F', 7429), +(84718, 'Paula', 1962, 'F', 7194), +(84719, 'Amy', 1962, 'F', 7181), +(84720, 'Cathy', 1962, 'F', 7148), +(84721, 'Judy', 1962, 'F', 7058), +(84722, 'Wendy', 1962, 'F', 6978), +(84723, 'Suzanne', 1962, 'F', 6856), +(84724, 'Beth', 1962, 'F', 6424), +(84725, 'Valerie', 1962, 'F', 6331), +(84726, 'Melissa', 1962, 'F', 6312), +(84727, 'Stephanie', 1962, 'F', 6265), +(84728, 'Beverly', 1962, 'F', 6261), +(84729, 'Lynn', 1962, 'F', 6218), +(84730, 'Jill', 1962, 'F', 6171), +(84731, 'Jane', 1962, 'F', 6115), +(84732, 'Joyce', 1962, 'F', 6093), +(84733, 'Annette', 1962, 'F', 6077), +(84734, 'Renee', 1962, 'F', 6017), +(84735, 'Wanda', 1962, 'F', 6006), +(84736, 'Carla', 1962, 'F', 5817), +(84737, 'Bonnie', 1962, 'F', 5814), +(84738, 'Leslie', 1962, 'F', 5781), +(84739, 'Anita', 1962, 'F', 5516), +(84740, 'Sherri', 1962, 'F', 5358), +(84741, 'Anne', 1962, 'F', 5274), +(84742, 'Katherine', 1962, 'F', 5272), +(84743, 'Vicki', 1962, 'F', 5208), +(84744, 'Judith', 1962, 'F', 5183), +(84745, 'Martha', 1962, 'F', 5165), +(84746, 'Kathryn', 1962, 'F', 5109), +(84747, 'Darlene', 1962, 'F', 5105), +(84748, 'Gloria', 1962, 'F', 5102), +(84749, 'Regina', 1962, 'F', 5000), +(84750, 'Penny', 1962, 'F', 4999), +(84751, 'Peggy', 1962, 'F', 4900), +(84752, 'Joan', 1962, 'F', 4883), +(84753, 'Jean', 1962, 'F', 4878), +(84754, 'Shirley', 1962, 'F', 4873), +(84755, 'Betty', 1962, 'F', 4766), +(84756, 'Sarah', 1962, 'F', 4546), +(84757, 'Andrea', 1962, 'F', 4539), +(84758, 'Anna', 1962, 'F', 4439), +(84759, 'Colleen', 1962, 'F', 4429), +(84760, 'Gina', 1962, 'F', 4424), +(84761, 'Gail', 1962, 'F', 4379), +(84762, 'Ruth', 1962, 'F', 4293), +(84763, 'Melanie', 1962, 'F', 4283), +(84764, 'Virginia', 1962, 'F', 4283), +(84765, 'Vickie', 1962, 'F', 4135), +(84766, 'Maureen', 1962, 'F', 4128), +(84767, 'Ellen', 1962, 'F', 4111), +(84768, 'Rita', 1962, 'F', 4100), +(84769, 'Dorothy', 1962, 'F', 4074), +(84770, 'Terry', 1962, 'F', 4040), +(84771, 'Marie', 1962, 'F', 4021), +(84772, 'Joanne', 1962, 'F', 4012), +(84773, 'Monica', 1962, 'F', 4006), +(84774, 'Rose', 1962, 'F', 3999), +(84775, 'Dana', 1962, 'F', 3961), +(84776, 'Melinda', 1962, 'F', 3852), +(84777, 'Tamara', 1962, 'F', 3821), +(84778, 'Julia', 1962, 'F', 3749), +(84779, 'Victoria', 1962, 'F', 3712), +(84780, 'Becky', 1962, 'F', 3706), +(84781, 'Tracey', 1962, 'F', 3640), +(84782, 'Christina', 1962, 'F', 3626), +(84783, 'Elaine', 1962, 'F', 3614), +(84784, 'Jackie', 1962, 'F', 3614), +(84785, 'Marilyn', 1962, 'F', 3607), +(84786, 'Helen', 1962, 'F', 3588), +(84787, 'Phyllis', 1962, 'F', 3496), +(84788, 'Shelly', 1962, 'F', 3482), +(84789, 'Sylvia', 1962, 'F', 3455), +(84790, 'Yvonne', 1962, 'F', 3379), +(84791, 'Alice', 1962, 'F', 3254), +(84792, 'Sheryl', 1962, 'F', 3243), +(84793, 'Sue', 1962, 'F', 3184), +(84794, 'Sally', 1962, 'F', 3172), +(84795, 'Joann', 1962, 'F', 3109), +(84796, 'Deanna', 1962, 'F', 3062), +(84797, 'Eileen', 1962, 'F', 3056), +(84798, 'Sandy', 1962, 'F', 3055), +(84799, 'Carrie', 1962, 'F', 3031), +(84800, 'Jeanne', 1962, 'F', 3015), +(84801, 'Frances', 1962, 'F', 2996), +(84802, 'Veronica', 1962, 'F', 2995), +(84803, 'Sheri', 1962, 'F', 2986), +(84804, 'Shari', 1962, 'F', 2960), +(84805, 'Lorraine', 1962, 'F', 2948), +(84806, 'Holly', 1962, 'F', 2924), +(84807, 'Belinda', 1962, 'F', 2834), +(84808, 'Pam', 1962, 'F', 2809), +(84809, 'Toni', 1962, 'F', 2805), +(84810, 'Jamie', 1962, 'F', 2789), +(84811, 'Evelyn', 1962, 'F', 2781), +(84812, 'Charlotte', 1962, 'F', 2681), +(84813, 'Norma', 1962, 'F', 2673), +(84814, 'Heidi', 1962, 'F', 2657), +(84815, 'Jeanette', 1962, 'F', 2612), +(84816, 'Charlene', 1962, 'F', 2562), +(84817, 'Roberta', 1962, 'F', 2530), +(84818, 'Loretta', 1962, 'F', 2512), +(84819, 'Gwendolyn', 1962, 'F', 2505), +(84820, 'Shelley', 1962, 'F', 2475), +(84821, 'Sara', 1962, 'F', 2470), +(84822, 'Lynne', 1962, 'F', 2461), +(84823, 'Glenda', 1962, 'F', 2459), +(84824, 'Yolanda', 1962, 'F', 2453), +(84825, 'Jo', 1962, 'F', 2444), +(84826, 'Joy', 1962, 'F', 2428), +(84827, 'Marcia', 1962, 'F', 2428), +(84828, 'Carmen', 1962, 'F', 2408), +(84829, 'Doris', 1962, 'F', 2377), +(84830, 'Patty', 1962, 'F', 2333), +(84831, 'Shelia', 1962, 'F', 2271), +(84832, 'Tonya', 1962, 'F', 2248), +(84833, 'Vanessa', 1962, 'F', 2248), +(84834, 'Stacy', 1962, 'F', 2226), +(84835, 'Tami', 1962, 'F', 2212), +(84836, 'Stacey', 1962, 'F', 2184), +(84837, 'Tammie', 1962, 'F', 2174), +(84838, 'Crystal', 1962, 'F', 2104), +(84839, 'Teri', 1962, 'F', 2076), +(84840, 'Marsha', 1962, 'F', 2073), +(84841, 'Dianne', 1962, 'F', 2063), +(84842, 'Vicky', 1962, 'F', 2036), +(84843, 'Melody', 1962, 'F', 2026), +(84844, 'Caroline', 1962, 'F', 1988), +(84845, 'Alicia', 1962, 'F', 1979), +(84846, 'Audrey', 1962, 'F', 1974), +(84847, 'Patti', 1962, 'F', 1969), +(84848, 'Darla', 1962, 'F', 1966), +(84849, 'Natalie', 1962, 'F', 1948), +(84850, 'Karla', 1962, 'F', 1944), +(84851, 'Juanita', 1962, 'F', 1940), +(84852, 'Rachel', 1962, 'F', 1940), +(84853, 'Rosemary', 1962, 'F', 1936), +(84854, 'Yvette', 1962, 'F', 1925), +(84855, 'Kay', 1962, 'F', 1878), +(84856, 'Jodi', 1962, 'F', 1851), +(84857, 'April', 1962, 'F', 1815), +(84858, 'Tanya', 1962, 'F', 1807), +(84859, 'Lois', 1962, 'F', 1781), +(84860, 'Jody', 1962, 'F', 1780), +(84861, 'Jan', 1962, 'F', 1778), +(84862, 'Lynda', 1962, 'F', 1769), +(84863, 'Irene', 1962, 'F', 1757), +(84864, 'Doreen', 1962, 'F', 1744), +(84865, 'Vivian', 1962, 'F', 1743), +(84866, 'Sonya', 1962, 'F', 1742), +(84867, 'Robyn', 1962, 'F', 1658), +(84868, 'Constance', 1962, 'F', 1651), +(84869, 'Felicia', 1962, 'F', 1609), +(84870, 'Rosa', 1962, 'F', 1606), +(84871, 'Ronda', 1962, 'F', 1596), +(84872, 'Marlene', 1962, 'F', 1558), +(84873, 'Cassandra', 1962, 'F', 1535), +(84874, 'Sherrie', 1962, 'F', 1534), +(84875, 'Ramona', 1962, 'F', 1522), +(84876, 'Chris', 1962, 'F', 1521), +(84877, 'Roxanne', 1962, 'F', 1516), +(84878, 'Eva', 1962, 'F', 1501), +(84879, 'Marianne', 1962, 'F', 1496), +(84880, 'June', 1962, 'F', 1455); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(84881, 'Dianna', 1962, 'F', 1442), +(84882, 'Kimberley', 1962, 'F', 1439), +(84883, 'Alison', 1962, 'F', 1417), +(84884, 'Lydia', 1962, 'F', 1411), +(84885, 'Bridget', 1962, 'F', 1408), +(84886, 'Louise', 1962, 'F', 1401), +(84887, 'Cheri', 1962, 'F', 1397), +(84888, 'Jenny', 1962, 'F', 1395), +(84889, 'Shannon', 1962, 'F', 1394), +(84890, 'Carole', 1962, 'F', 1381), +(84891, 'Lee', 1962, 'F', 1379), +(84892, 'Marjorie', 1962, 'F', 1375), +(84893, 'Margie', 1962, 'F', 1347), +(84894, 'Arlene', 1962, 'F', 1343), +(84895, 'Lora', 1962, 'F', 1343), +(84896, 'Grace', 1962, 'F', 1328), +(84897, 'Kristine', 1962, 'F', 1328), +(84898, 'Kelli', 1962, 'F', 1318), +(84899, 'Allison', 1962, 'F', 1313), +(84900, 'Jana', 1962, 'F', 1313), +(84901, 'Kelley', 1962, 'F', 1311), +(84902, 'Lillian', 1962, 'F', 1307), +(84903, 'Annie', 1962, 'F', 1295), +(84904, 'Janine', 1962, 'F', 1289), +(84905, 'Heather', 1962, 'F', 1284), +(84906, 'Nina', 1962, 'F', 1278), +(84907, 'Dolores', 1962, 'F', 1271), +(84908, 'Gayle', 1962, 'F', 1265), +(84909, 'Lorie', 1962, 'F', 1256), +(84910, 'Esther', 1962, 'F', 1252), +(84911, 'Jacquelyn', 1962, 'F', 1237), +(84912, 'Marla', 1962, 'F', 1236), +(84913, 'Angie', 1962, 'F', 1223), +(84914, 'Kristi', 1962, 'F', 1214), +(84915, 'Priscilla', 1962, 'F', 1212), +(84916, 'Lynette', 1962, 'F', 1208), +(84917, 'Geraldine', 1962, 'F', 1203), +(84918, 'Maryann', 1962, 'F', 1201), +(84919, 'Ginger', 1962, 'F', 1187), +(84920, 'Traci', 1962, 'F', 1151), +(84921, 'Ruby', 1962, 'F', 1149), +(84922, 'Bernadette', 1962, 'F', 1138), +(84923, 'Debora', 1962, 'F', 1137), +(84924, 'Daphne', 1962, 'F', 1132), +(84925, 'Lauren', 1962, 'F', 1122), +(84926, 'Joni', 1962, 'F', 1111), +(84927, 'Josephine', 1962, 'F', 1097), +(84928, 'Tara', 1962, 'F', 1093), +(84929, 'Katrina', 1962, 'F', 1092), +(84930, 'Kerry', 1962, 'F', 1089), +(84931, 'Emily', 1962, 'F', 1078), +(84932, 'Nora', 1962, 'F', 1077), +(84933, 'Christy', 1962, 'F', 1065), +(84934, 'Erin', 1962, 'F', 1062), +(84935, 'Cecilia', 1962, 'F', 1054), +(84936, 'Delores', 1962, 'F', 1046), +(84937, 'Lorrie', 1962, 'F', 1031), +(84938, 'Dina', 1962, 'F', 1028), +(84939, 'Sonia', 1962, 'F', 1026), +(84940, 'Kellie', 1962, 'F', 1025), +(84941, 'Terrie', 1962, 'F', 1024), +(84942, 'Therese', 1962, 'F', 1021), +(84943, 'Edith', 1962, 'F', 1019), +(84944, 'Betsy', 1962, 'F', 1014), +(84945, 'Lucy', 1962, 'F', 1011), +(84946, 'Susie', 1962, 'F', 1009), +(84947, 'Gretchen', 1962, 'F', 1003), +(84948, 'Claudia', 1962, 'F', 997), +(84949, 'Antoinette', 1962, 'F', 994), +(84950, 'Rochelle', 1962, 'F', 991), +(84951, 'Miriam', 1962, 'F', 990), +(84952, 'Edna', 1962, 'F', 982), +(84953, 'Leah', 1962, 'F', 976), +(84954, 'Mona', 1962, 'F', 965), +(84955, 'Mildred', 1962, 'F', 963), +(84956, 'Kari', 1962, 'F', 960), +(84957, 'Janie', 1962, 'F', 950), +(84958, 'Amanda', 1962, 'F', 948), +(84959, 'Nadine', 1962, 'F', 945), +(84960, 'Rosemarie', 1962, 'F', 942), +(84961, 'Tracie', 1962, 'F', 931), +(84962, 'Pauline', 1962, 'F', 928), +(84963, 'Bonita', 1962, 'F', 923), +(84964, 'Rene', 1962, 'F', 916), +(84965, 'Georgia', 1962, 'F', 908), +(84966, 'Jeannette', 1962, 'F', 908), +(84967, 'Dena', 1962, 'F', 905), +(84968, 'Marian', 1962, 'F', 901), +(84969, 'Myra', 1962, 'F', 901), +(84970, 'Shawn', 1962, 'F', 901), +(84971, 'Patsy', 1962, 'F', 898), +(84972, 'Leigh', 1962, 'F', 892), +(84973, 'Sabrina', 1962, 'F', 884), +(84974, 'Jayne', 1962, 'F', 877), +(84975, 'Kristin', 1962, 'F', 877), +(84976, 'Bobbie', 1962, 'F', 876), +(84977, 'Jessica', 1962, 'F', 867), +(84978, 'Gwen', 1962, 'F', 858), +(84979, 'Sonja', 1962, 'F', 855), +(84980, 'Cathleen', 1962, 'F', 850), +(84981, 'Dora', 1962, 'F', 840), +(84982, 'Cherie', 1962, 'F', 835), +(84983, 'Joanna', 1962, 'F', 833), +(84984, 'Karin', 1962, 'F', 823), +(84985, 'Molly', 1962, 'F', 819), +(84986, 'Claire', 1962, 'F', 807), +(84987, 'Candace', 1962, 'F', 804), +(84988, 'Celeste', 1962, 'F', 803), +(84989, 'Clara', 1962, 'F', 797), +(84990, 'Emma', 1962, 'F', 796), +(84991, 'Patrice', 1962, 'F', 792), +(84992, 'Leticia', 1962, 'F', 789), +(84993, 'Lana', 1962, 'F', 787), +(84994, 'Francine', 1962, 'F', 784), +(84995, 'Adrienne', 1962, 'F', 779), +(84996, 'Irma', 1962, 'F', 773), +(84997, 'Marion', 1962, 'F', 772), +(84998, 'Lesa', 1962, 'F', 769), +(84999, 'Bernice', 1962, 'F', 761), +(85000, 'Eleanor', 1962, 'F', 761), +(85001, 'Jeannie', 1962, 'F', 756), +(85002, 'Kristen', 1962, 'F', 756), +(85003, 'Candy', 1962, 'F', 751), +(85004, 'Thelma', 1962, 'F', 750), +(85005, 'Deirdre', 1962, 'F', 748), +(85006, 'Paulette', 1962, 'F', 742), +(85007, 'Beatrice', 1962, 'F', 735), +(85008, 'Vera', 1962, 'F', 730), +(85009, 'Bertha', 1962, 'F', 729), +(85010, 'Faith', 1962, 'F', 729), +(85011, 'Trina', 1962, 'F', 729), +(85012, 'Lucinda', 1962, 'F', 721), +(85013, 'Trudy', 1962, 'F', 716), +(85014, 'Gladys', 1962, 'F', 715), +(85015, 'Alma', 1962, 'F', 714), +(85016, 'Laurel', 1962, 'F', 700), +(85017, 'Leanne', 1962, 'F', 693), +(85018, 'Ana', 1962, 'F', 689), +(85019, 'Jennie', 1962, 'F', 688), +(85020, 'Lauri', 1962, 'F', 678), +(85021, 'Marcella', 1962, 'F', 671), +(85022, 'Alisa', 1962, 'F', 667), +(85023, 'Iris', 1962, 'F', 661), +(85024, 'Ida', 1962, 'F', 658), +(85025, 'Naomi', 1962, 'F', 656), +(85026, 'Billie', 1962, 'F', 654), +(85027, 'Jeanine', 1962, 'F', 644), +(85028, 'Marcy', 1962, 'F', 644), +(85029, 'Monique', 1962, 'F', 642), +(85030, 'Rosalind', 1962, 'F', 634), +(85031, 'Sondra', 1962, 'F', 631), +(85032, 'Ella', 1962, 'F', 630), +(85033, 'Kristina', 1962, 'F', 629), +(85034, 'Jeri', 1962, 'F', 626), +(85035, 'Angelia', 1962, 'F', 625), +(85036, 'Danielle', 1962, 'F', 617), +(85037, 'Susanne', 1962, 'F', 614), +(85038, 'Stella', 1962, 'F', 613), +(85039, 'Dee', 1962, 'F', 609), +(85040, 'Rosie', 1962, 'F', 602), +(85041, 'Tammi', 1962, 'F', 600), +(85042, 'Deanne', 1962, 'F', 599), +(85043, 'Florence', 1962, 'F', 598), +(85044, 'Corinne', 1962, 'F', 596), +(85045, 'Suzette', 1962, 'F', 594), +(85046, 'Janis', 1962, 'F', 590), +(85047, 'Kris', 1962, 'F', 590), +(85048, 'Noreen', 1962, 'F', 590), +(85049, 'Janette', 1962, 'F', 588), +(85050, 'Jodie', 1962, 'F', 588), +(85051, 'Wilma', 1962, 'F', 585), +(85052, 'Jolene', 1962, 'F', 584), +(85053, 'Mindy', 1962, 'F', 584), +(85054, 'Nanette', 1962, 'F', 583), +(85055, 'Ethel', 1962, 'F', 582), +(85056, 'Madeline', 1962, 'F', 581), +(85057, 'Leann', 1962, 'F', 577), +(85058, 'Rena', 1962, 'F', 576), +(85059, 'Maxine', 1962, 'F', 574), +(85060, 'Jeannine', 1962, 'F', 573), +(85061, 'Desiree', 1962, 'F', 572), +(85062, 'Tamera', 1962, 'F', 571), +(85063, 'Ladonna', 1962, 'F', 570), +(85064, 'Polly', 1962, 'F', 565), +(85065, 'Deana', 1962, 'F', 564), +(85066, 'Katie', 1962, 'F', 564), +(85067, 'Luann', 1962, 'F', 564), +(85068, 'Nicole', 1962, 'F', 564), +(85069, 'Kerri', 1962, 'F', 563), +(85070, 'Lorna', 1962, 'F', 560), +(85071, 'Kristy', 1962, 'F', 559), +(85072, 'Lorri', 1962, 'F', 556), +(85073, 'Faye', 1962, 'F', 554), +(85074, 'Celia', 1962, 'F', 553), +(85075, 'Elisa', 1962, 'F', 550), +(85076, 'Paige', 1962, 'F', 550), +(85077, 'Olga', 1962, 'F', 545), +(85078, 'Deidre', 1962, 'F', 539), +(85079, 'Margarita', 1962, 'F', 538), +(85080, 'Lena', 1962, 'F', 527), +(85081, 'Lucille', 1962, 'F', 527), +(85082, 'Christie', 1962, 'F', 524), +(85083, 'Cecelia', 1962, 'F', 523), +(85084, 'Liz', 1962, 'F', 523), +(85085, 'Della', 1962, 'F', 520), +(85086, 'Kara', 1962, 'F', 517), +(85087, 'Robbin', 1962, 'F', 517), +(85088, 'Valarie', 1962, 'F', 514), +(85089, 'Jerri', 1962, 'F', 509), +(85090, 'Darcy', 1962, 'F', 507), +(85091, 'Camille', 1962, 'F', 506), +(85092, 'Debby', 1962, 'F', 502), +(85093, 'Hope', 1962, 'F', 500), +(85094, 'Amelia', 1962, 'F', 494), +(85095, 'Lillie', 1962, 'F', 490), +(85096, 'Sophia', 1962, 'F', 485), +(85097, 'Pat', 1962, 'F', 484), +(85098, 'Kimberlee', 1962, 'F', 478), +(85099, 'Colette', 1962, 'F', 476), +(85100, 'Marybeth', 1962, 'F', 473), +(85101, 'Rosalie', 1962, 'F', 472), +(85102, 'Willie', 1962, 'F', 470), +(85103, 'Margo', 1962, 'F', 466), +(85104, 'Velma', 1962, 'F', 465), +(85105, 'Marguerite', 1962, 'F', 462), +(85106, 'Lynnette', 1962, 'F', 457), +(85107, 'Kathi', 1962, 'F', 456), +(85108, 'Tamra', 1962, 'F', 453), +(85109, 'Benita', 1962, 'F', 451), +(85110, 'Angel', 1962, 'F', 450), +(85111, 'Janelle', 1962, 'F', 450), +(85112, 'Mitzi', 1962, 'F', 450), +(85113, 'Erica', 1962, 'F', 449), +(85114, 'Cara', 1962, 'F', 448), +(85115, 'Krista', 1962, 'F', 448), +(85116, 'Bridgette', 1962, 'F', 447), +(85117, 'Danette', 1962, 'F', 447), +(85118, 'Annmarie', 1962, 'F', 446), +(85119, 'Gay', 1962, 'F', 446), +(85120, 'Hazel', 1962, 'F', 446), +(85121, 'Jessie', 1962, 'F', 446), +(85122, 'Deann', 1962, 'F', 438), +(85123, 'Olivia', 1962, 'F', 428), +(85124, 'Hilda', 1962, 'F', 427), +(85125, 'Deena', 1962, 'F', 425), +(85126, 'Guadalupe', 1962, 'F', 422), +(85127, 'Ingrid', 1962, 'F', 421), +(85128, 'Elena', 1962, 'F', 420), +(85129, 'Lea', 1962, 'F', 419), +(85130, 'Leona', 1962, 'F', 419), +(85131, 'Stacie', 1962, 'F', 419), +(85132, 'Karyn', 1962, 'F', 415), +(85133, 'Christi', 1962, 'F', 414), +(85134, 'Delia', 1962, 'F', 414), +(85135, 'Tonia', 1962, 'F', 413), +(85136, 'Cora', 1962, 'F', 411), +(85137, 'Laverne', 1962, 'F', 409), +(85138, 'Verna', 1962, 'F', 408), +(85139, 'Julianne', 1962, 'F', 402), +(85140, 'Elisabeth', 1962, 'F', 401), +(85141, 'Ernestine', 1962, 'F', 401), +(85142, 'Robbie', 1962, 'F', 399), +(85143, 'Felecia', 1962, 'F', 398), +(85144, 'Gena', 1962, 'F', 397), +(85145, 'Daisy', 1962, 'F', 396), +(85146, 'Lou', 1962, 'F', 396), +(85147, 'Isabel', 1962, 'F', 394), +(85148, 'Lenora', 1962, 'F', 394), +(85149, 'Megan', 1962, 'F', 391), +(85150, 'Harriet', 1962, 'F', 387), +(85151, 'Alesia', 1962, 'F', 382), +(85152, 'Marta', 1962, 'F', 382), +(85153, 'Maryellen', 1962, 'F', 381), +(85154, 'Coleen', 1962, 'F', 380), +(85155, 'Dale', 1962, 'F', 377), +(85156, 'Judi', 1962, 'F', 377), +(85157, 'Amber', 1962, 'F', 376), +(85158, 'Geneva', 1962, 'F', 372), +(85159, 'Randi', 1962, 'F', 372), +(85160, 'Gayla', 1962, 'F', 370), +(85161, 'Shelby', 1962, 'F', 369), +(85162, 'Elise', 1962, 'F', 368), +(85163, 'Marcie', 1962, 'F', 368), +(85164, 'Kendra', 1962, 'F', 366), +(85165, 'Renae', 1962, 'F', 366), +(85166, 'Maura', 1962, 'F', 365), +(85167, 'Eugenia', 1962, 'F', 364), +(85168, 'Tamela', 1962, 'F', 364), +(85169, 'Pearl', 1962, 'F', 363), +(85170, 'Dixie', 1962, 'F', 361), +(85171, 'Bobbi', 1962, 'F', 359), +(85172, 'Leeann', 1962, 'F', 359), +(85173, 'Roseann', 1962, 'F', 359), +(85174, 'Rachelle', 1962, 'F', 358), +(85175, 'Jeanie', 1962, 'F', 357), +(85176, 'Malinda', 1962, 'F', 356), +(85177, 'Johanna', 1962, 'F', 355), +(85178, 'Michael', 1962, 'F', 355), +(85179, 'Agnes', 1962, 'F', 353), +(85180, 'Barb', 1962, 'F', 350), +(85181, 'Edwina', 1962, 'F', 350), +(85182, 'Mari', 1962, 'F', 346), +(85183, 'Tena', 1962, 'F', 345), +(85184, 'Helene', 1962, 'F', 344), +(85185, 'Shellie', 1962, 'F', 344), +(85186, 'Freda', 1962, 'F', 343), +(85187, 'Rosanne', 1962, 'F', 341), +(85188, 'Saundra', 1962, 'F', 341), +(85189, 'Lola', 1962, 'F', 340), +(85190, 'Rae', 1962, 'F', 340), +(85191, 'Kathie', 1962, 'F', 338), +(85192, 'Myrna', 1962, 'F', 334), +(85193, 'Bessie', 1962, 'F', 331), +(85194, 'Claudette', 1962, 'F', 331), +(85195, 'Cindi', 1962, 'F', 330), +(85196, 'Sandi', 1962, 'F', 330), +(85197, 'Gale', 1962, 'F', 329), +(85198, 'Lourdes', 1962, 'F', 328), +(85199, 'Marci', 1962, 'F', 327), +(85200, 'Luanne', 1962, 'F', 325), +(85201, 'Jacquline', 1962, 'F', 324), +(85202, 'Ada', 1962, 'F', 323), +(85203, 'Kristie', 1962, 'F', 323), +(85204, 'Mattie', 1962, 'F', 322), +(85205, 'Johnnie', 1962, 'F', 321), +(85206, 'Viola', 1962, 'F', 320), +(85207, 'Deloris', 1962, 'F', 319), +(85208, 'Clare', 1962, 'F', 318), +(85209, 'Leisa', 1962, 'F', 317), +(85210, 'Denice', 1962, 'F', 316), +(85211, 'Allyson', 1962, 'F', 315), +(85212, 'Eve', 1962, 'F', 313), +(85213, 'Dorothea', 1962, 'F', 312), +(85214, 'Elsie', 1962, 'F', 309), +(85215, 'Jenifer', 1962, 'F', 308), +(85216, 'Justine', 1962, 'F', 308), +(85217, 'Tricia', 1962, 'F', 308), +(85218, 'Lorena', 1962, 'F', 306), +(85219, 'Jami', 1962, 'F', 305), +(85220, 'Kirsten', 1962, 'F', 305), +(85221, 'Eunice', 1962, 'F', 304), +(85222, 'Lesley', 1962, 'F', 304), +(85223, 'Sharron', 1962, 'F', 304), +(85224, 'Janna', 1962, 'F', 303), +(85225, 'Blanca', 1962, 'F', 301), +(85226, 'Maryanne', 1962, 'F', 301), +(85227, 'Patrica', 1962, 'F', 301), +(85228, 'Glenna', 1962, 'F', 298), +(85229, 'Lolita', 1962, 'F', 298), +(85230, 'Laureen', 1962, 'F', 296), +(85231, 'Shawna', 1962, 'F', 295), +(85232, 'Misty', 1962, 'F', 292), +(85233, 'Violet', 1962, 'F', 292), +(85234, 'Angelina', 1962, 'F', 291), +(85235, 'Charmaine', 1962, 'F', 291), +(85236, 'David', 1962, 'F', 291), +(85237, 'Katharine', 1962, 'F', 291), +(85238, 'Caryn', 1962, 'F', 289), +(85239, 'Marina', 1962, 'F', 289), +(85240, 'Roslyn', 1962, 'F', 289), +(85241, 'Sallie', 1962, 'F', 289), +(85242, 'Abby', 1962, 'F', 286), +(85243, 'Penelope', 1962, 'F', 286), +(85244, 'Alberta', 1962, 'F', 285), +(85245, 'Maryjo', 1962, 'F', 285), +(85246, 'John', 1962, 'F', 284), +(85247, 'Rosalyn', 1962, 'F', 284), +(85248, 'Luz', 1962, 'F', 283), +(85249, 'Janell', 1962, 'F', 282), +(85250, 'Arleen', 1962, 'F', 281), +(85251, 'Danita', 1962, 'F', 281), +(85252, 'Dona', 1962, 'F', 281), +(85253, 'Lyn', 1962, 'F', 281), +(85254, 'Shelli', 1962, 'F', 281), +(85255, 'Caren', 1962, 'F', 280), +(85256, 'Kaye', 1962, 'F', 278), +(85257, 'Carlene', 1962, 'F', 277), +(85258, 'Elsa', 1962, 'F', 277), +(85259, 'Genevieve', 1962, 'F', 277), +(85260, 'Marisa', 1962, 'F', 277), +(85261, 'Lorene', 1962, 'F', 276), +(85262, 'Greta', 1962, 'F', 274), +(85263, 'Bridgett', 1962, 'F', 273), +(85264, 'Frankie', 1962, 'F', 272), +(85265, 'Minnie', 1962, 'F', 272), +(85266, 'Flora', 1962, 'F', 271), +(85267, 'Gigi', 1962, 'F', 271), +(85268, 'Nita', 1962, 'F', 270), +(85269, 'Maggie', 1962, 'F', 269), +(85270, 'Brigitte', 1962, 'F', 268), +(85271, 'Geri', 1962, 'F', 268), +(85272, 'Reba', 1962, 'F', 268), +(85273, 'Nellie', 1962, 'F', 266), +(85274, 'Silvia', 1962, 'F', 265), +(85275, 'Abigail', 1962, 'F', 264), +(85276, 'Diann', 1962, 'F', 264), +(85277, 'Juli', 1962, 'F', 263), +(85278, 'Ava', 1962, 'F', 262), +(85279, 'James', 1962, 'F', 262), +(85280, 'Rosalinda', 1962, 'F', 262), +(85281, 'Deidra', 1962, 'F', 261), +(85282, 'Keri', 1962, 'F', 261), +(85283, 'Meredith', 1962, 'F', 261), +(85284, 'Velvet', 1962, 'F', 261), +(85285, 'Mae', 1962, 'F', 260), +(85286, 'Johnna', 1962, 'F', 259), +(85287, 'Lupe', 1962, 'F', 259), +(85288, 'Erika', 1962, 'F', 256), +(85289, 'Gracie', 1962, 'F', 255), +(85290, 'Juliana', 1962, 'F', 254), +(85291, 'Letitia', 1962, 'F', 254), +(85292, 'Renita', 1962, 'F', 254), +(85293, 'Helena', 1962, 'F', 252), +(85294, 'Carmela', 1962, 'F', 251), +(85295, 'Roxann', 1962, 'F', 250), +(85296, 'Teressa', 1962, 'F', 250), +(85297, 'Wendi', 1962, 'F', 250), +(85298, 'Bethany', 1962, 'F', 249), +(85299, 'Pamala', 1962, 'F', 249), +(85300, 'Ilene', 1962, 'F', 248), +(85301, 'Selina', 1962, 'F', 247), +(85302, 'Tonja', 1962, 'F', 247), +(85303, 'Nikki', 1962, 'F', 246), +(85304, 'Teena', 1962, 'F', 246), +(85305, 'Aileen', 1962, 'F', 245), +(85306, 'Juliet', 1962, 'F', 245), +(85307, 'Libby', 1962, 'F', 245), +(85308, 'Geralyn', 1962, 'F', 242), +(85309, 'Suzan', 1962, 'F', 242), +(85310, 'Adele', 1962, 'F', 241), +(85311, 'Pattie', 1962, 'F', 241), +(85312, 'Selena', 1962, 'F', 241), +(85313, 'Corrine', 1962, 'F', 240), +(85314, 'Tana', 1962, 'F', 240), +(85315, 'Antonia', 1962, 'F', 238), +(85316, 'Christa', 1962, 'F', 238), +(85317, 'Vickey', 1962, 'F', 238), +(85318, 'Roxanna', 1962, 'F', 237), +(85319, 'Alfreda', 1962, 'F', 236), +(85320, 'Terese', 1962, 'F', 236), +(85321, 'Cari', 1962, 'F', 235), +(85322, 'Hattie', 1962, 'F', 235), +(85323, 'Kitty', 1962, 'F', 235), +(85324, 'Clarissa', 1962, 'F', 234), +(85325, 'Loriann', 1962, 'F', 234), +(85326, 'Bernadine', 1962, 'F', 233), +(85327, 'Debi', 1962, 'F', 232), +(85328, 'Josie', 1962, 'F', 232), +(85329, 'Maribel', 1962, 'F', 232), +(85330, 'Melodie', 1962, 'F', 232), +(85331, 'Nannette', 1962, 'F', 232), +(85332, 'Maritza', 1962, 'F', 231), +(85333, 'Roxane', 1962, 'F', 231), +(85334, 'Annemarie', 1962, 'F', 230), +(85335, 'Georgette', 1962, 'F', 230), +(85336, 'Pennie', 1962, 'F', 230), +(85337, 'Shauna', 1962, 'F', 230), +(85338, 'Henrietta', 1962, 'F', 229), +(85339, 'Robert', 1962, 'F', 229), +(85340, 'Fay', 1962, 'F', 227), +(85341, 'Missy', 1962, 'F', 227), +(85342, 'Corina', 1962, 'F', 226), +(85343, 'Dorene', 1962, 'F', 226), +(85344, 'Lucia', 1962, 'F', 226), +(85345, 'Suzy', 1962, 'F', 226), +(85346, 'Twila', 1962, 'F', 226), +(85347, 'Estella', 1962, 'F', 223), +(85348, 'Lesia', 1962, 'F', 223), +(85349, 'Jocelyn', 1962, 'F', 222), +(85350, 'Candice', 1962, 'F', 221), +(85351, 'Lenore', 1962, 'F', 221), +(85352, 'Gabrielle', 1962, 'F', 220), +(85353, 'Alexandra', 1962, 'F', 219), +(85354, 'Avis', 1962, 'F', 219), +(85355, 'Merry', 1962, 'F', 219), +(85356, 'Valorie', 1962, 'F', 219), +(85357, 'Kate', 1962, 'F', 218), +(85358, 'Rosetta', 1962, 'F', 218), +(85359, 'Sharlene', 1962, 'F', 218), +(85360, 'Tania', 1962, 'F', 218), +(85361, 'Erma', 1962, 'F', 216), +(85362, 'Melisa', 1962, 'F', 216), +(85363, 'Simone', 1962, 'F', 216), +(85364, 'Inez', 1962, 'F', 214), +(85365, 'Rebekah', 1962, 'F', 213), +(85366, 'Sheree', 1962, 'F', 213), +(85367, 'Cathryn', 1962, 'F', 212), +(85368, 'Dayna', 1962, 'F', 212), +(85369, 'Susanna', 1962, 'F', 212), +(85370, 'Ruthie', 1962, 'F', 211), +(85371, 'Tamie', 1962, 'F', 210), +(85372, 'Antionette', 1962, 'F', 209), +(85373, 'Valeria', 1962, 'F', 209), +(85374, 'Dinah', 1962, 'F', 208), +(85375, 'Lavonne', 1962, 'F', 207), +(85376, 'Mamie', 1962, 'F', 207), +(85377, 'Marylou', 1962, 'F', 207), +(85378, 'Ivy', 1962, 'F', 205), +(85379, 'Starla', 1962, 'F', 205), +(85380, 'Karol', 1962, 'F', 204), +(85381, 'Raquel', 1962, 'F', 204), +(85382, 'Danna', 1962, 'F', 203), +(85383, 'Gaye', 1962, 'F', 203), +(85384, 'Loraine', 1962, 'F', 203), +(85385, 'Marnita', 1962, 'F', 202), +(85386, 'Etta', 1962, 'F', 200), +(85387, 'Ginny', 1962, 'F', 200), +(85388, 'Liza', 1962, 'F', 200), +(85389, 'Madonna', 1962, 'F', 200), +(85390, 'Martina', 1962, 'F', 200), +(85391, 'Susana', 1962, 'F', 200), +(85392, 'Donita', 1962, 'F', 199), +(85393, 'Hilary', 1962, 'F', 199), +(85394, 'Dori', 1962, 'F', 198), +(85395, 'Leanna', 1962, 'F', 196), +(85396, 'Lila', 1962, 'F', 195), +(85397, 'Deedee', 1962, 'F', 194), +(85398, 'Dorinda', 1962, 'F', 194), +(85399, 'Karrie', 1962, 'F', 194), +(85400, 'Valencia', 1962, 'F', 194), +(85401, 'Jewel', 1962, 'F', 193), +(85402, 'Ursula', 1962, 'F', 193), +(85403, 'Vikki', 1962, 'F', 193), +(85404, 'Graciela', 1962, 'F', 192), +(85405, 'Mariann', 1962, 'F', 192), +(85406, 'Charla', 1962, 'F', 191), +(85407, 'Cornelia', 1962, 'F', 191), +(85408, 'Gerri', 1962, 'F', 191), +(85409, 'Staci', 1962, 'F', 191), +(85410, 'Whitney', 1962, 'F', 191), +(85411, 'Jeanna', 1962, 'F', 190), +(85412, 'Lawanda', 1962, 'F', 190), +(85413, 'Leila', 1962, 'F', 190), +(85414, 'Trena', 1962, 'F', 190), +(85415, 'Katy', 1962, 'F', 189), +(85416, 'Cristina', 1962, 'F', 188), +(85417, 'Melba', 1962, 'F', 188), +(85418, 'Chandra', 1962, 'F', 187), +(85419, 'Magdalena', 1962, 'F', 187), +(85420, 'Tresa', 1962, 'F', 187), +(85421, 'Nelda', 1962, 'F', 186), +(85422, 'Bambi', 1962, 'F', 185), +(85423, 'Elvira', 1962, 'F', 185), +(85424, 'Eloise', 1962, 'F', 184), +(85425, 'Meg', 1962, 'F', 184), +(85426, 'Carey', 1962, 'F', 183), +(85427, 'Edie', 1962, 'F', 183), +(85428, 'Vonda', 1962, 'F', 183), +(85429, 'Kathrine', 1962, 'F', 181), +(85430, 'Migdalia', 1962, 'F', 181), +(85431, 'Rhoda', 1962, 'F', 181), +(85432, 'Sherie', 1962, 'F', 181), +(85433, 'Sybil', 1962, 'F', 181), +(85434, 'Dawna', 1962, 'F', 180), +(85435, 'Mandy', 1962, 'F', 180), +(85436, 'Mercedes', 1962, 'F', 180), +(85437, 'Rachael', 1962, 'F', 179), +(85438, 'Francis', 1962, 'F', 178), +(85439, 'Maribeth', 1962, 'F', 178), +(85440, 'Zelda', 1962, 'F', 178), +(85441, 'Ivette', 1962, 'F', 176), +(85442, 'Tiffany', 1962, 'F', 176), +(85443, 'Treva', 1962, 'F', 175), +(85444, 'William', 1962, 'F', 175), +(85445, 'Dedra', 1962, 'F', 174), +(85446, 'Marietta', 1962, 'F', 174), +(85447, 'Annamarie', 1962, 'F', 173), +(85448, 'Aurora', 1962, 'F', 173), +(85449, 'Elva', 1962, 'F', 173), +(85450, 'Kandy', 1962, 'F', 173), +(85451, 'Louann', 1962, 'F', 173), +(85452, 'Suzie', 1962, 'F', 173), +(85453, 'Marva', 1962, 'F', 172), +(85454, 'Sharla', 1962, 'F', 172), +(85455, 'Carolina', 1962, 'F', 171), +(85456, 'Fannie', 1962, 'F', 171), +(85457, 'Letha', 1962, 'F', 171), +(85458, 'Roseanne', 1962, 'F', 171), +(85459, 'Winifred', 1962, 'F', 171), +(85460, 'Debbi', 1962, 'F', 170), +(85461, 'Latonya', 1962, 'F', 169), +(85462, 'Serena', 1962, 'F', 169), +(85463, 'Bettina', 1962, 'F', 168), +(85464, 'Georgina', 1962, 'F', 168), +(85465, 'Latanya', 1962, 'F', 168), +(85466, 'Lucretia', 1962, 'F', 168), +(85467, 'Lula', 1962, 'F', 168), +(85468, 'Mara', 1962, 'F', 168), +(85469, 'Venus', 1962, 'F', 168), +(85470, 'Rosario', 1962, 'F', 167), +(85471, 'Kayla', 1962, 'F', 166), +(85472, 'Fran', 1962, 'F', 165), +(85473, 'Lela', 1962, 'F', 165), +(85474, 'Stefanie', 1962, 'F', 165), +(85475, 'Aida', 1962, 'F', 164), +(85476, 'Aimee', 1962, 'F', 164), +(85477, 'Milagros', 1962, 'F', 164), +(85478, 'Cherry', 1962, 'F', 163), +(85479, 'Esmeralda', 1962, 'F', 163), +(85480, 'Muriel', 1962, 'F', 163), +(85481, 'Babette', 1962, 'F', 162), +(85482, 'Dolly', 1962, 'F', 162), +(85483, 'Carleen', 1962, 'F', 161), +(85484, 'Fonda', 1962, 'F', 161), +(85485, 'Jerry', 1962, 'F', 161), +(85486, 'Karon', 1962, 'F', 161), +(85487, 'Cathie', 1962, 'F', 160), +(85488, 'Mimi', 1962, 'F', 160), +(85489, 'Althea', 1962, 'F', 159), +(85490, 'Athena', 1962, 'F', 159), +(85491, 'Cheryle', 1962, 'F', 159), +(85492, 'Joellen', 1962, 'F', 159), +(85493, 'Lorinda', 1962, 'F', 159), +(85494, 'Mavis', 1962, 'F', 159), +(85495, 'Rosanna', 1962, 'F', 159), +(85496, 'Darleen', 1962, 'F', 158), +(85497, 'Minerva', 1962, 'F', 158), +(85498, 'Blanche', 1962, 'F', 157), +(85499, 'Cyndi', 1962, 'F', 157), +(85500, 'Maryjane', 1962, 'F', 157), +(85501, 'Alana', 1962, 'F', 156), +(85502, 'Jerilyn', 1962, 'F', 156), +(85503, 'Sherryl', 1962, 'F', 156), +(85504, 'Carmel', 1962, 'F', 155), +(85505, 'Collette', 1962, 'F', 155), +(85506, 'Janeen', 1962, 'F', 155), +(85507, 'Jeana', 1962, 'F', 155), +(85508, 'Alexis', 1962, 'F', 154), +(85509, 'Bonny', 1962, 'F', 154), +(85510, 'Gertrude', 1962, 'F', 153), +(85511, 'Margot', 1962, 'F', 153), +(85512, 'Millie', 1962, 'F', 153), +(85513, 'Courtney', 1962, 'F', 152), +(85514, 'Dara', 1962, 'F', 152), +(85515, 'Jacque', 1962, 'F', 152), +(85516, 'Juliann', 1962, 'F', 152), +(85517, 'Barbie', 1962, 'F', 151), +(85518, 'Cherri', 1962, 'F', 151), +(85519, 'Kerrie', 1962, 'F', 151), +(85520, 'Noemi', 1962, 'F', 151), +(85521, 'Debrah', 1962, 'F', 150), +(85522, 'Jacquelin', 1962, 'F', 150), +(85523, 'Adriana', 1962, 'F', 149), +(85524, 'Tori', 1962, 'F', 149), +(85525, 'Angelica', 1962, 'F', 148), +(85526, 'Nola', 1962, 'F', 148), +(85527, 'Penni', 1962, 'F', 148), +(85528, 'Doretha', 1962, 'F', 147), +(85529, 'Adrian', 1962, 'F', 145), +(85530, 'Ina', 1962, 'F', 145), +(85531, 'Myrtle', 1962, 'F', 145), +(85532, 'Annetta', 1962, 'F', 144), +(85533, 'Machelle', 1962, 'F', 144), +(85534, 'Merri', 1962, 'F', 144), +(85535, 'Romona', 1962, 'F', 144), +(85536, 'Tia', 1962, 'F', 144), +(85537, 'Hannah', 1962, 'F', 143), +(85538, 'Lilly', 1962, 'F', 143), +(85539, 'Lisha', 1962, 'F', 143), +(85540, 'Louisa', 1962, 'F', 143), +(85541, 'Melonie', 1962, 'F', 143), +(85542, 'Rowena', 1962, 'F', 143), +(85543, 'Roxie', 1962, 'F', 143), +(85544, 'Earlene', 1962, 'F', 142), +(85545, 'Lindy', 1962, 'F', 142), +(85546, 'Suzanna', 1962, 'F', 142), +(85547, 'Twyla', 1962, 'F', 142), +(85548, 'Camilla', 1962, 'F', 141), +(85549, 'Clarice', 1962, 'F', 141), +(85550, 'Joanie', 1962, 'F', 141), +(85551, 'Daria', 1962, 'F', 140), +(85552, 'Esperanza', 1962, 'F', 140), +(85553, 'Ester', 1962, 'F', 140), +(85554, 'Juana', 1962, 'F', 140), +(85555, 'Richard', 1962, 'F', 140), +(85556, 'Jacki', 1962, 'F', 139), +(85557, 'Dottie', 1962, 'F', 138), +(85558, 'Kyle', 1962, 'F', 138), +(85559, 'Reva', 1962, 'F', 138), +(85560, 'Sherrill', 1962, 'F', 138), +(85561, 'Portia', 1962, 'F', 137), +(85562, 'Venita', 1962, 'F', 137), +(85563, 'Carmella', 1962, 'F', 136), +(85564, 'Debbra', 1962, 'F', 136), +(85565, 'Delphine', 1962, 'F', 136), +(85566, 'Josefina', 1962, 'F', 136), +(85567, 'Marisol', 1962, 'F', 136), +(85568, 'Rona', 1962, 'F', 136), +(85569, 'Sabra', 1962, 'F', 136), +(85570, 'Cassie', 1962, 'F', 135), +(85571, 'Willa', 1962, 'F', 135), +(85572, 'Cathi', 1962, 'F', 134), +(85573, 'Corinna', 1962, 'F', 134), +(85574, 'Evangeline', 1962, 'F', 134), +(85575, 'Joleen', 1962, 'F', 134), +(85576, 'Adrianne', 1962, 'F', 133), +(85577, 'Alecia', 1962, 'F', 133), +(85578, 'Krystal', 1962, 'F', 133), +(85579, 'Leesa', 1962, 'F', 133), +(85580, 'Nona', 1962, 'F', 133), +(85581, 'Brooke', 1962, 'F', 132), +(85582, 'Randy', 1962, 'F', 132), +(85583, 'Renea', 1962, 'F', 132), +(85584, 'Aretha', 1962, 'F', 131), +(85585, 'Beverley', 1962, 'F', 131), +(85586, 'Cathrine', 1962, 'F', 131), +(85587, 'Risa', 1962, 'F', 131), +(85588, 'Harriett', 1962, 'F', 130), +(85589, 'Mable', 1962, 'F', 130), +(85590, 'Mark', 1962, 'F', 130), +(85591, 'Scarlett', 1962, 'F', 130), +(85592, 'Barbra', 1962, 'F', 129), +(85593, 'Celestine', 1962, 'F', 129), +(85594, 'Gwyn', 1962, 'F', 129), +(85595, 'Thea', 1962, 'F', 129), +(85596, 'Deeann', 1962, 'F', 128), +(85597, 'Francesca', 1962, 'F', 128), +(85598, 'Kandi', 1962, 'F', 128), +(85599, 'Marilee', 1962, 'F', 128), +(85600, 'Marti', 1962, 'F', 128), +(85601, 'Rosita', 1962, 'F', 128), +(85602, 'Jewell', 1962, 'F', 127), +(85603, 'Shiela', 1962, 'F', 127), +(85604, 'Cherrie', 1962, 'F', 126), +(85605, 'Evette', 1962, 'F', 126), +(85606, 'Mabel', 1962, 'F', 126), +(85607, 'Shanna', 1962, 'F', 126), +(85608, 'Lanette', 1962, 'F', 125), +(85609, 'Retha', 1962, 'F', 125), +(85610, 'Angelita', 1962, 'F', 124), +(85611, 'Candi', 1962, 'F', 124), +(85612, 'Cecile', 1962, 'F', 124), +(85613, 'Nan', 1962, 'F', 124), +(85614, 'Ronna', 1962, 'F', 124), +(85615, 'Jaime', 1962, 'F', 123), +(85616, 'Jerrie', 1962, 'F', 123), +(85617, 'Lise', 1962, 'F', 123), +(85618, 'Melva', 1962, 'F', 123), +(85619, 'Aleta', 1962, 'F', 122), +(85620, 'Juliette', 1962, 'F', 122), +(85621, 'Marty', 1962, 'F', 122), +(85622, 'Sadie', 1962, 'F', 122), +(85623, 'Consuelo', 1962, 'F', 121), +(85624, 'Darci', 1962, 'F', 121), +(85625, 'Katheryn', 1962, 'F', 121), +(85626, 'Madelyn', 1962, 'F', 121), +(85627, 'Nanci', 1962, 'F', 121), +(85628, 'Angelique', 1962, 'F', 120), +(85629, 'Charles', 1962, 'F', 120), +(85630, 'Earnestine', 1962, 'F', 120), +(85631, 'Janel', 1962, 'F', 120), +(85632, 'Jannette', 1962, 'F', 120), +(85633, 'Jonna', 1962, 'F', 120), +(85634, 'Moira', 1962, 'F', 120), +(85635, 'Monika', 1962, 'F', 120), +(85636, 'Tommie', 1962, 'F', 120), +(85637, 'Adriene', 1962, 'F', 119), +(85638, 'Beatriz', 1962, 'F', 119), +(85639, 'Bettie', 1962, 'F', 119), +(85640, 'Kenneth', 1962, 'F', 119), +(85641, 'Lily', 1962, 'F', 119), +(85642, 'Nettie', 1962, 'F', 119), +(85643, 'Ora', 1962, 'F', 119), +(85644, 'Shirlene', 1962, 'F', 119), +(85645, 'Alyson', 1962, 'F', 118), +(85646, 'Dawne', 1962, 'F', 118), +(85647, 'Leisha', 1962, 'F', 118), +(85648, 'Loria', 1962, 'F', 118), +(85649, 'May', 1962, 'F', 118), +(85650, 'Bette', 1962, 'F', 117), +(85651, 'Charisse', 1962, 'F', 117), +(85652, 'Glynis', 1962, 'F', 117), +(85653, 'Leilani', 1962, 'F', 117), +(85654, 'Ruthann', 1962, 'F', 117), +(85655, 'Zina', 1962, 'F', 117), +(85656, 'Catharine', 1962, 'F', 116), +(85657, 'Earline', 1962, 'F', 116), +(85658, 'Lizabeth', 1962, 'F', 116), +(85659, 'Angeline', 1962, 'F', 115), +(85660, 'Karan', 1962, 'F', 115), +(85661, 'Loren', 1962, 'F', 115), +(85662, 'Miranda', 1962, 'F', 115), +(85663, 'Petra', 1962, 'F', 115), +(85664, 'Gilda', 1962, 'F', 114), +(85665, 'Jayme', 1962, 'F', 114), +(85666, 'Rhea', 1962, 'F', 114), +(85667, 'Delois', 1962, 'F', 113), +(85668, 'Iva', 1962, 'F', 113), +(85669, 'Kimberli', 1962, 'F', 113), +(85670, 'Neva', 1962, 'F', 113), +(85671, 'Penney', 1962, 'F', 113), +(85672, 'Thomas', 1962, 'F', 113), +(85673, 'Charleen', 1962, 'F', 112), +(85674, 'Cinda', 1962, 'F', 112), +(85675, 'Elissa', 1962, 'F', 112), +(85676, 'Hillary', 1962, 'F', 112), +(85677, 'Mollie', 1962, 'F', 112), +(85678, 'Trisha', 1962, 'F', 112), +(85679, 'Anastasia', 1962, 'F', 111), +(85680, 'Delilah', 1962, 'F', 111), +(85681, 'Denita', 1962, 'F', 111), +(85682, 'Michell', 1962, 'F', 111), +(85683, 'Tari', 1962, 'F', 111), +(85684, 'Carri', 1962, 'F', 110), +(85685, 'Eula', 1962, 'F', 110), +(85686, 'Jeanmarie', 1962, 'F', 110), +(85687, 'Jena', 1962, 'F', 110), +(85688, 'Madeleine', 1962, 'F', 110), +(85689, 'Phoebe', 1962, 'F', 110), +(85690, 'Sharyn', 1962, 'F', 110), +(85691, 'Stacia', 1962, 'F', 110), +(85692, 'Essie', 1962, 'F', 109), +(85693, 'Hollie', 1962, 'F', 109), +(85694, 'Justina', 1962, 'F', 109), +(85695, 'Lorelei', 1962, 'F', 109), +(85696, 'Tonda', 1962, 'F', 109), +(85697, 'Adela', 1962, 'F', 108), +(85698, 'Bobby', 1962, 'F', 108), +(85699, 'Brigid', 1962, 'F', 108), +(85700, 'Lavern', 1962, 'F', 108), +(85701, 'Addie', 1962, 'F', 107), +(85702, 'Cary', 1962, 'F', 107), +(85703, 'Cori', 1962, 'F', 107), +(85704, 'Germaine', 1962, 'F', 107), +(85705, 'Jolynn', 1962, 'F', 107), +(85706, 'Millicent', 1962, 'F', 107), +(85707, 'Brigette', 1962, 'F', 106), +(85708, 'Karolyn', 1962, 'F', 106), +(85709, 'Lory', 1962, 'F', 106), +(85710, 'Vernita', 1962, 'F', 106), +(85711, 'Caron', 1962, 'F', 105), +(85712, 'Estelle', 1962, 'F', 105), +(85713, 'Joseph', 1962, 'F', 105), +(85714, 'Marissa', 1962, 'F', 105), +(85715, 'Starr', 1962, 'F', 105), +(85716, 'Trudi', 1962, 'F', 105), +(85717, 'Anthony', 1962, 'F', 104), +(85718, 'Chrystal', 1962, 'F', 104), +(85719, 'Deb', 1962, 'F', 104), +(85720, 'Enid', 1962, 'F', 104), +(85721, 'Tracee', 1962, 'F', 104), +(85722, 'Callie', 1962, 'F', 103), +(85723, 'Carmelita', 1962, 'F', 103), +(85724, 'Carolynn', 1962, 'F', 103), +(85725, 'Alyce', 1962, 'F', 102), +(85726, 'Damita', 1962, 'F', 102), +(85727, 'Joe', 1962, 'F', 102), +(85728, 'Leola', 1962, 'F', 102), +(85729, 'Lissa', 1962, 'F', 102), +(85730, 'Loreen', 1962, 'F', 102), +(85731, 'Nilda', 1962, 'F', 102), +(85732, 'Delisa', 1962, 'F', 101), +(85733, 'Elvia', 1962, 'F', 101), +(85734, 'Jacklyn', 1962, 'F', 101), +(85735, 'Lu', 1962, 'F', 101), +(85736, 'Ronnie', 1962, 'F', 101), +(85737, 'Veda', 1962, 'F', 101), +(85738, 'Andra', 1962, 'F', 100), +(85739, 'Carin', 1962, 'F', 100), +(85740, 'Daniel', 1962, 'F', 100), +(85741, 'Jacalyn', 1962, 'F', 100), +(85742, 'Karri', 1962, 'F', 100), +(85743, 'Kelle', 1962, 'F', 100), +(85744, 'Leta', 1962, 'F', 100), +(85745, 'Matilda', 1962, 'F', 100), +(85746, 'Mickey', 1962, 'F', 100), +(85747, 'Sydney', 1962, 'F', 100), +(85748, 'Tambra', 1962, 'F', 100), +(85749, 'Michael', 1962, 'M', 85046), +(85750, 'David', 1962, 'M', 81328), +(85751, 'John', 1962, 'M', 78447), +(85752, 'James', 1962, 'M', 72563), +(85753, 'Robert', 1962, 'M', 70214), +(85754, 'Mark', 1962, 'M', 53522), +(85755, 'William', 1962, 'M', 44862), +(85756, 'Richard', 1962, 'M', 39424), +(85757, 'Thomas', 1962, 'M', 36536), +(85758, 'Jeffrey', 1962, 'M', 33531), +(85759, 'Scott', 1962, 'M', 30711), +(85760, 'Steven', 1962, 'M', 30703), +(85761, 'Joseph', 1962, 'M', 30093), +(85762, 'Kevin', 1962, 'M', 28356), +(85763, 'Charles', 1962, 'M', 27590), +(85764, 'Timothy', 1962, 'M', 27085), +(85765, 'Daniel', 1962, 'M', 25553), +(85766, 'Kenneth', 1962, 'M', 25247), +(85767, 'Paul', 1962, 'M', 23804), +(85768, 'Brian', 1962, 'M', 23244), +(85769, 'Gregory', 1962, 'M', 21966), +(85770, 'Gary', 1962, 'M', 20894), +(85771, 'Donald', 1962, 'M', 20415), +(85772, 'Anthony', 1962, 'M', 20104), +(85773, 'Ronald', 1962, 'M', 19979), +(85774, 'Christopher', 1962, 'M', 17528), +(85775, 'Douglas', 1962, 'M', 15921), +(85776, 'Stephen', 1962, 'M', 15622), +(85777, 'Edward', 1962, 'M', 15524), +(85778, 'Todd', 1962, 'M', 12744), +(85779, 'Larry', 1962, 'M', 12708), +(85780, 'George', 1962, 'M', 12559), +(85781, 'Eric', 1962, 'M', 12352), +(85782, 'Terry', 1962, 'M', 12296), +(85783, 'Randy', 1962, 'M', 11854), +(85784, 'Keith', 1962, 'M', 11621), +(85785, 'Dennis', 1962, 'M', 10622), +(85786, 'Jerry', 1962, 'M', 10577), +(85787, 'Mike', 1962, 'M', 10526), +(85788, 'Patrick', 1962, 'M', 10487), +(85789, 'Bruce', 1962, 'M', 10043), +(85790, 'Frank', 1962, 'M', 9757), +(85791, 'Peter', 1962, 'M', 9581), +(85792, 'Jeff', 1962, 'M', 9424), +(85793, 'Jeffery', 1962, 'M', 9270), +(85794, 'Steve', 1962, 'M', 9168), +(85795, 'Roger', 1962, 'M', 9073), +(85796, 'Raymond', 1962, 'M', 9072), +(85797, 'Andrew', 1962, 'M', 8712), +(85798, 'Ricky', 1962, 'M', 8691), +(85799, 'Craig', 1962, 'M', 8540), +(85800, 'Tony', 1962, 'M', 8193), +(85801, 'Alan', 1962, 'M', 7709), +(85802, 'Danny', 1962, 'M', 7641), +(85803, 'Glenn', 1962, 'M', 7356), +(85804, 'Matthew', 1962, 'M', 7289), +(85805, 'Russell', 1962, 'M', 7046), +(85806, 'Carl', 1962, 'M', 6855), +(85807, 'Chris', 1962, 'M', 6784), +(85808, 'Joe', 1962, 'M', 6784), +(85809, 'Barry', 1962, 'M', 6581), +(85810, 'Dale', 1962, 'M', 6367), +(85811, 'Wayne', 1962, 'M', 6321), +(85812, 'Gerald', 1962, 'M', 6232), +(85813, 'Randall', 1962, 'M', 6231), +(85814, 'Vincent', 1962, 'M', 6153), +(85815, 'Troy', 1962, 'M', 6039), +(85816, 'Phillip', 1962, 'M', 5890), +(85817, 'Johnny', 1962, 'M', 5779), +(85818, 'Lawrence', 1962, 'M', 5616), +(85819, 'Tim', 1962, 'M', 5593), +(85820, 'Billy', 1962, 'M', 5583), +(85821, 'Curtis', 1962, 'M', 5575), +(85822, 'Martin', 1962, 'M', 5544), +(85823, 'Jimmy', 1962, 'M', 5519), +(85824, 'Rodney', 1962, 'M', 5440), +(85825, 'Greg', 1962, 'M', 5367), +(85826, 'Bobby', 1962, 'M', 5320), +(85827, 'Walter', 1962, 'M', 5284), +(85828, 'Jay', 1962, 'M', 5160), +(85829, 'Philip', 1962, 'M', 5068), +(85830, 'Bryan', 1962, 'M', 4987), +(85831, 'Darryl', 1962, 'M', 4971), +(85832, 'Jon', 1962, 'M', 4787), +(85833, 'Jim', 1962, 'M', 4710), +(85834, 'Dean', 1962, 'M', 4663), +(85835, 'Bradley', 1962, 'M', 4634), +(85836, 'Samuel', 1962, 'M', 4547), +(85837, 'Willie', 1962, 'M', 4541), +(85838, 'Roy', 1962, 'M', 4479), +(85839, 'Arthur', 1962, 'M', 4434), +(85840, 'Henry', 1962, 'M', 4350), +(85841, 'Allen', 1962, 'M', 4267), +(85842, 'Jonathan', 1962, 'M', 4263), +(85843, 'Harold', 1962, 'M', 4229), +(85844, 'Victor', 1962, 'M', 4207), +(85845, 'Ralph', 1962, 'M', 4174), +(85846, 'Jack', 1962, 'M', 4169), +(85847, 'Tom', 1962, 'M', 4169), +(85848, 'Ronnie', 1962, 'M', 4115), +(85849, 'Albert', 1962, 'M', 4071), +(85850, 'Darrell', 1962, 'M', 3882), +(85851, 'Jose', 1962, 'M', 3828), +(85852, 'Micheal', 1962, 'M', 3767), +(85853, 'Eddie', 1962, 'M', 3686), +(85854, 'Stanley', 1962, 'M', 3633), +(85855, 'Louis', 1962, 'M', 3593), +(85856, 'Bill', 1962, 'M', 3578), +(85857, 'Tommy', 1962, 'M', 3416), +(85858, 'Rick', 1962, 'M', 3413), +(85859, 'Tracy', 1962, 'M', 3338), +(85860, 'Joel', 1962, 'M', 3303), +(85861, 'Eugene', 1962, 'M', 3302), +(85862, 'Howard', 1962, 'M', 3273), +(85863, 'Lee', 1962, 'M', 3257), +(85864, 'Frederick', 1962, 'M', 3254), +(85865, 'Leonard', 1962, 'M', 3150), +(85866, 'Marvin', 1962, 'M', 3133), +(85867, 'Dwayne', 1962, 'M', 3118), +(85868, 'Dan', 1962, 'M', 3116), +(85869, 'Kurt', 1962, 'M', 3024), +(85870, 'Marc', 1962, 'M', 2943), +(85871, 'Don', 1962, 'M', 2908), +(85872, 'Shawn', 1962, 'M', 2881), +(85873, 'Kelly', 1962, 'M', 2858), +(85874, 'Fred', 1962, 'M', 2857), +(85875, 'Ernest', 1962, 'M', 2851), +(85876, 'Mitchell', 1962, 'M', 2835), +(85877, 'Glen', 1962, 'M', 2833), +(85878, 'Norman', 1962, 'M', 2787), +(85879, 'Jerome', 1962, 'M', 2772), +(85880, 'Ray', 1962, 'M', 2676), +(85881, 'Reginald', 1962, 'M', 2647), +(85882, 'Harry', 1962, 'M', 2628), +(85883, 'Duane', 1962, 'M', 2604), +(85884, 'Kent', 1962, 'M', 2585), +(85885, 'Melvin', 1962, 'M', 2574), +(85886, 'Brent', 1962, 'M', 2560), +(85887, 'Kirk', 1962, 'M', 2556), +(85888, 'Benjamin', 1962, 'M', 2513), +(85889, 'Brett', 1962, 'M', 2501), +(85890, 'Karl', 1962, 'M', 2457), +(85891, 'Calvin', 1962, 'M', 2409), +(85892, 'Edwin', 1962, 'M', 2402), +(85893, 'Dave', 1962, 'M', 2364), +(85894, 'Theodore', 1962, 'M', 2320), +(85895, 'Earl', 1962, 'M', 2304), +(85896, 'Francis', 1962, 'M', 2298), +(85897, 'Jesse', 1962, 'M', 2276), +(85898, 'Clifford', 1962, 'M', 2183), +(85899, 'Bob', 1962, 'M', 2166), +(85900, 'Warren', 1962, 'M', 2165), +(85901, 'Adam', 1962, 'M', 2155), +(85902, 'Nicholas', 1962, 'M', 2152), +(85903, 'Juan', 1962, 'M', 2150), +(85904, 'Alfred', 1962, 'M', 2136), +(85905, 'Carlos', 1962, 'M', 2124), +(85906, 'Brad', 1962, 'M', 2079), +(85907, 'Aaron', 1962, 'M', 2018), +(85908, 'Lance', 1962, 'M', 2002), +(85909, 'Bernard', 1962, 'M', 1971), +(85910, 'Wesley', 1962, 'M', 1964), +(85911, 'Clarence', 1962, 'M', 1949), +(85912, 'Darren', 1962, 'M', 1928), +(85913, 'Perry', 1962, 'M', 1927), +(85914, 'Guy', 1962, 'M', 1916), +(85915, 'Gregg', 1962, 'M', 1900), +(85916, 'Kerry', 1962, 'M', 1900), +(85917, 'Rickey', 1962, 'M', 1877), +(85918, 'Sean', 1962, 'M', 1850), +(85919, 'Doug', 1962, 'M', 1847), +(85920, 'Dana', 1962, 'M', 1797), +(85921, 'Gordon', 1962, 'M', 1785), +(85922, 'Antonio', 1962, 'M', 1774), +(85923, 'Stuart', 1962, 'M', 1734), +(85924, 'Alvin', 1962, 'M', 1711), +(85925, 'Kyle', 1962, 'M', 1708), +(85926, 'Ron', 1962, 'M', 1706), +(85927, 'Leroy', 1962, 'M', 1705), +(85928, 'Ted', 1962, 'M', 1703), +(85929, 'Ken', 1962, 'M', 1688), +(85930, 'Vernon', 1962, 'M', 1670), +(85931, 'Leslie', 1962, 'M', 1651), +(85932, 'Gilbert', 1962, 'M', 1626), +(85933, 'Marty', 1962, 'M', 1618), +(85934, 'Tyrone', 1962, 'M', 1616), +(85935, 'Andre', 1962, 'M', 1600), +(85936, 'Derek', 1962, 'M', 1599), +(85937, 'Kenny', 1962, 'M', 1592), +(85938, 'Derrick', 1962, 'M', 1584), +(85939, 'Herbert', 1962, 'M', 1577), +(85940, 'Daryl', 1962, 'M', 1574), +(85941, 'Manuel', 1962, 'M', 1568), +(85942, 'Lonnie', 1962, 'M', 1563), +(85943, 'Leon', 1962, 'M', 1542), +(85944, 'Lloyd', 1962, 'M', 1537), +(85945, 'Nathan', 1962, 'M', 1534), +(85946, 'Franklin', 1962, 'M', 1532), +(85947, 'Robin', 1962, 'M', 1531), +(85948, 'Joey', 1962, 'M', 1526), +(85949, 'Dwight', 1962, 'M', 1514), +(85950, 'Gene', 1962, 'M', 1512), +(85951, 'Maurice', 1962, 'M', 1481), +(85952, 'Luis', 1962, 'M', 1452), +(85953, 'Timmy', 1962, 'M', 1437), +(85954, 'Andy', 1962, 'M', 1417), +(85955, 'Ruben', 1962, 'M', 1382), +(85956, 'Marcus', 1962, 'M', 1372), +(85957, 'Floyd', 1962, 'M', 1338), +(85958, 'Kelvin', 1962, 'M', 1329), +(85959, 'Mario', 1962, 'M', 1315), +(85960, 'Jason', 1962, 'M', 1307), +(85961, 'Donnie', 1962, 'M', 1304), +(85962, 'Neil', 1962, 'M', 1290), +(85963, 'Allan', 1962, 'M', 1281), +(85964, 'Lewis', 1962, 'M', 1279), +(85965, 'Alex', 1962, 'M', 1271), +(85966, 'Byron', 1962, 'M', 1266), +(85967, 'Ricardo', 1962, 'M', 1258), +(85968, 'Alexander', 1962, 'M', 1225), +(85969, 'Charlie', 1962, 'M', 1224), +(85970, 'Wade', 1962, 'M', 1208), +(85971, 'Jackie', 1962, 'M', 1162), +(85972, 'Arnold', 1962, 'M', 1154), +(85973, 'Clyde', 1962, 'M', 1141), +(85974, 'Ross', 1962, 'M', 1138), +(85975, 'Rex', 1962, 'M', 1134), +(85976, 'Chuck', 1962, 'M', 1121), +(85977, 'Gerard', 1962, 'M', 1117), +(85978, 'Lester', 1962, 'M', 1115), +(85979, 'Milton', 1962, 'M', 1109), +(85980, 'Leo', 1962, 'M', 1103), +(85981, 'Wendell', 1962, 'M', 1093), +(85982, 'Nathaniel', 1962, 'M', 1084), +(85983, 'Jimmie', 1962, 'M', 1069), +(85984, 'Roland', 1962, 'M', 1068), +(85985, 'Sam', 1962, 'M', 1068), +(85986, 'Ben', 1962, 'M', 1045), +(85987, 'Jesus', 1962, 'M', 1042), +(85988, 'Freddie', 1962, 'M', 1040), +(85989, 'Neal', 1962, 'M', 1033), +(85990, 'Johnnie', 1962, 'M', 1022), +(85991, 'Roberto', 1962, 'M', 1020), +(85992, 'Randal', 1962, 'M', 1016), +(85993, 'Oscar', 1962, 'M', 1011), +(85994, 'Herman', 1962, 'M', 1001), +(85995, 'Garry', 1962, 'M', 990), +(85996, 'Terrence', 1962, 'M', 988), +(85997, 'Randolph', 1962, 'M', 982), +(85998, 'Clayton', 1962, 'M', 974), +(85999, 'Jessie', 1962, 'M', 937), +(86000, 'Roderick', 1962, 'M', 932), +(86001, 'Nelson', 1962, 'M', 931), +(86002, 'Hector', 1962, 'M', 925), +(86003, 'Clinton', 1962, 'M', 916), +(86004, 'Kim', 1962, 'M', 915), +(86005, 'Nick', 1962, 'M', 897), +(86006, 'Cecil', 1962, 'M', 884), +(86007, 'Miguel', 1962, 'M', 872), +(86008, 'Harvey', 1962, 'M', 860), +(86009, 'Matt', 1962, 'M', 859), +(86010, 'Clifton', 1962, 'M', 854), +(86011, 'Marshall', 1962, 'M', 837), +(86012, 'Lynn', 1962, 'M', 832), +(86013, 'Pat', 1962, 'M', 830), +(86014, 'Jamie', 1962, 'M', 824), +(86015, 'Fredrick', 1962, 'M', 819), +(86016, 'Raul', 1962, 'M', 817), +(86017, 'Carlton', 1962, 'M', 815), +(86018, 'Hugh', 1962, 'M', 814), +(86019, 'Clark', 1962, 'M', 799), +(86020, 'Francisco', 1962, 'M', 796), +(86021, 'Geoffrey', 1962, 'M', 793), +(86022, 'Bret', 1962, 'M', 786), +(86023, 'Cary', 1962, 'M', 786), +(86024, 'Sidney', 1962, 'M', 778), +(86025, 'Chester', 1962, 'M', 775), +(86026, 'Grant', 1962, 'M', 773), +(86027, 'Benny', 1962, 'M', 755), +(86028, 'Sammy', 1962, 'M', 752), +(86029, 'Terence', 1962, 'M', 746), +(86030, 'Terrance', 1962, 'M', 742), +(86031, 'Wallace', 1962, 'M', 736), +(86032, 'Rene', 1962, 'M', 732), +(86033, 'Angelo', 1962, 'M', 714), +(86034, 'Pedro', 1962, 'M', 708), +(86035, 'Ramon', 1962, 'M', 708), +(86036, 'Clay', 1962, 'M', 706), +(86037, 'Shane', 1962, 'M', 703), +(86038, 'Adrian', 1962, 'M', 702), +(86039, 'Claude', 1962, 'M', 702), +(86040, 'Robbie', 1962, 'M', 701), +(86041, 'Edgar', 1962, 'M', 697), +(86042, 'Frankie', 1962, 'M', 695), +(86043, 'Cedric', 1962, 'M', 694), +(86044, 'Angel', 1962, 'M', 691), +(86045, 'Curt', 1962, 'M', 678), +(86046, 'Rudy', 1962, 'M', 677), +(86047, 'Ivan', 1962, 'M', 674), +(86048, 'Jaime', 1962, 'M', 663), +(86049, 'Orlando', 1962, 'M', 662), +(86050, 'Travis', 1962, 'M', 657), +(86051, 'Everett', 1962, 'M', 654), +(86052, 'Dewayne', 1962, 'M', 651), +(86053, 'Christian', 1962, 'M', 650), +(86054, 'Lyle', 1962, 'M', 644), +(86055, 'Myron', 1962, 'M', 642), +(86056, 'Darrel', 1962, 'M', 639), +(86057, 'Bart', 1962, 'M', 634), +(86058, 'Armando', 1962, 'M', 633), +(86059, 'Fernando', 1962, 'M', 631), +(86060, 'Pete', 1962, 'M', 631), +(86061, 'Morris', 1962, 'M', 630), +(86062, 'Loren', 1962, 'M', 629), +(86063, 'Jorge', 1962, 'M', 625), +(86064, 'Darin', 1962, 'M', 619), +(86065, 'Phil', 1962, 'M', 614), +(86066, 'Stewart', 1962, 'M', 603), +(86067, 'Salvatore', 1962, 'M', 602), +(86068, 'Lorenzo', 1962, 'M', 599), +(86069, 'Jody', 1962, 'M', 595), +(86070, 'Vince', 1962, 'M', 593), +(86071, 'Javier', 1962, 'M', 585), +(86072, 'Mickey', 1962, 'M', 584), +(86073, 'Felix', 1962, 'M', 583), +(86074, 'Monte', 1962, 'M', 580), +(86075, 'Ed', 1962, 'M', 574), +(86076, 'Max', 1962, 'M', 574), +(86077, 'Gabriel', 1962, 'M', 572), +(86078, 'Teddy', 1962, 'M', 570), +(86079, 'Rafael', 1962, 'M', 569), +(86080, 'Tod', 1962, 'M', 568), +(86081, 'Rocky', 1962, 'M', 560), +(86082, 'Virgil', 1962, 'M', 556), +(86083, 'Blake', 1962, 'M', 547), +(86084, 'Scot', 1962, 'M', 538), +(86085, 'Alonzo', 1962, 'M', 536), +(86086, 'Bradford', 1962, 'M', 533), +(86087, 'Alberto', 1962, 'M', 524), +(86088, 'Stephan', 1962, 'M', 524), +(86089, 'Malcolm', 1962, 'M', 520), +(86090, 'Laurence', 1962, 'M', 519), +(86091, 'Rusty', 1962, 'M', 518), +(86092, 'Casey', 1962, 'M', 517), +(86093, 'Erik', 1962, 'M', 516), +(86094, 'Bennie', 1962, 'M', 514), +(86095, 'Justin', 1962, 'M', 514), +(86096, 'Kris', 1962, 'M', 512), +(86097, 'Rory', 1962, 'M', 509), +(86098, 'Shannon', 1962, 'M', 502), +(86099, 'Arturo', 1962, 'M', 501), +(86100, 'Ira', 1962, 'M', 501), +(86101, 'Delbert', 1962, 'M', 500), +(86102, 'Earnest', 1962, 'M', 498), +(86103, 'Evan', 1962, 'M', 496), +(86104, 'Cameron', 1962, 'M', 493), +(86105, 'Sherman', 1962, 'M', 493), +(86106, 'Marion', 1962, 'M', 490), +(86107, 'Monty', 1962, 'M', 489), +(86108, 'Damon', 1962, 'M', 488), +(86109, 'Rob', 1962, 'M', 488), +(86110, 'Preston', 1962, 'M', 485), +(86111, 'Isaac', 1962, 'M', 483), +(86112, 'Van', 1962, 'M', 480), +(86113, 'Alton', 1962, 'M', 479), +(86114, 'Julian', 1962, 'M', 476), +(86115, 'Jacob', 1962, 'M', 475), +(86116, 'Jeffry', 1962, 'M', 475), +(86117, 'Otis', 1962, 'M', 475), +(86118, 'Eduardo', 1962, 'M', 474), +(86119, 'Alfredo', 1962, 'M', 473), +(86120, 'Edmund', 1962, 'M', 468), +(86121, 'Chad', 1962, 'M', 465), +(86122, 'Sylvester', 1962, 'M', 465), +(86123, 'Jerald', 1962, 'M', 463), +(86124, 'Luther', 1962, 'M', 460), +(86125, 'Willard', 1962, 'M', 459), +(86126, 'Bryant', 1962, 'M', 451), +(86127, 'Dexter', 1962, 'M', 451), +(86128, 'Forrest', 1962, 'M', 451), +(86129, 'Cory', 1962, 'M', 440), +(86130, 'Drew', 1962, 'M', 439), +(86131, 'Corey', 1962, 'M', 437), +(86132, 'Blaine', 1962, 'M', 435), +(86133, 'Sheldon', 1962, 'M', 435), +(86134, 'Dominic', 1962, 'M', 431), +(86135, 'Elmer', 1962, 'M', 431), +(86136, 'Kendall', 1962, 'M', 431), +(86137, 'Vance', 1962, 'M', 431), +(86138, 'Doyle', 1962, 'M', 429), +(86139, 'Julius', 1962, 'M', 428), +(86140, 'Luke', 1962, 'M', 426), +(86141, 'Rod', 1962, 'M', 426), +(86142, 'Roosevelt', 1962, 'M', 424), +(86143, 'Lowell', 1962, 'M', 419), +(86144, 'Noel', 1962, 'M', 419), +(86145, 'Rickie', 1962, 'M', 418), +(86146, 'Stacy', 1962, 'M', 416), +(86147, 'Rudolph', 1962, 'M', 414), +(86148, 'Rodger', 1962, 'M', 411), +(86149, 'Lionel', 1962, 'M', 407), +(86150, 'Boyd', 1962, 'M', 406), +(86151, 'Ryan', 1962, 'M', 403), +(86152, 'Stacey', 1962, 'M', 402), +(86153, 'Darwin', 1962, 'M', 398), +(86154, 'Archie', 1962, 'M', 389), +(86155, 'Ernie', 1962, 'M', 389), +(86156, 'Leland', 1962, 'M', 386), +(86157, 'Miles', 1962, 'M', 386), +(86158, 'Shaun', 1962, 'M', 386), +(86159, 'Spencer', 1962, 'M', 380), +(86160, 'Scotty', 1962, 'M', 379), +(86161, 'Enrique', 1962, 'M', 375), +(86162, 'Stevie', 1962, 'M', 375), +(86163, 'Willis', 1962, 'M', 372), +(86164, 'Trent', 1962, 'M', 371), +(86165, 'Clint', 1962, 'M', 369), +(86166, 'Ernesto', 1962, 'M', 367), +(86167, 'Tommie', 1962, 'M', 364), +(86168, 'Robby', 1962, 'M', 362), +(86169, 'Bert', 1962, 'M', 361), +(86170, 'Toby', 1962, 'M', 361), +(86171, 'Ty', 1962, 'M', 357), +(86172, 'Darnell', 1962, 'M', 356), +(86173, 'Alfonso', 1962, 'M', 353), +(86174, 'Mitch', 1962, 'M', 353), +(86175, 'Colin', 1962, 'M', 352), +(86176, 'Dallas', 1962, 'M', 352), +(86177, 'Owen', 1962, 'M', 348), +(86178, 'Wilbert', 1962, 'M', 345), +(86179, 'Zachary', 1962, 'M', 343), +(86180, 'Horace', 1962, 'M', 342), +(86181, 'Grady', 1962, 'M', 341), +(86182, 'Al', 1962, 'M', 339), +(86183, 'Buddy', 1962, 'M', 337), +(86184, 'Joshua', 1962, 'M', 337), +(86185, 'Julio', 1962, 'M', 337), +(86186, 'Gerry', 1962, 'M', 327), +(86187, 'Carey', 1962, 'M', 325), +(86188, 'Denis', 1962, 'M', 325), +(86189, 'Mathew', 1962, 'M', 325), +(86190, 'Ervin', 1962, 'M', 324), +(86191, 'Ronny', 1962, 'M', 324), +(86192, 'Rodolfo', 1962, 'M', 320), +(86193, 'Alphonso', 1962, 'M', 318), +(86194, 'Seth', 1962, 'M', 316), +(86195, 'Oliver', 1962, 'M', 314), +(86196, 'Bryon', 1962, 'M', 313), +(86197, 'Dirk', 1962, 'M', 313), +(86198, 'Marco', 1962, 'M', 312), +(86199, 'Hubert', 1962, 'M', 310), +(86200, 'Homer', 1962, 'M', 309), +(86201, 'Stan', 1962, 'M', 309), +(86202, 'Wilbur', 1962, 'M', 309), +(86203, 'Dino', 1962, 'M', 307), +(86204, 'Blair', 1962, 'M', 306), +(86205, 'Darrin', 1962, 'M', 305), +(86206, 'Tracey', 1962, 'M', 305), +(86207, 'Gilberto', 1962, 'M', 302), +(86208, 'Russ', 1962, 'M', 301), +(86209, 'Donny', 1962, 'M', 299), +(86210, 'Dominick', 1962, 'M', 298), +(86211, 'Freddy', 1962, 'M', 297), +(86212, 'Mack', 1962, 'M', 297), +(86213, 'Jess', 1962, 'M', 293), +(86214, 'Royce', 1962, 'M', 291), +(86215, 'Marlon', 1962, 'M', 290), +(86216, 'Jan', 1962, 'M', 289), +(86217, 'Sterling', 1962, 'M', 288), +(86218, 'Wilson', 1962, 'M', 288), +(86219, 'Randell', 1962, 'M', 286), +(86220, 'Salvador', 1962, 'M', 286), +(86221, 'Sergio', 1962, 'M', 286), +(86222, 'Ian', 1962, 'M', 282), +(86223, 'Dane', 1962, 'M', 280), +(86224, 'Dewey', 1962, 'M', 279), +(86225, 'Abraham', 1962, 'M', 278), +(86226, 'Ellis', 1962, 'M', 276), +(86227, 'Kirby', 1962, 'M', 276), +(86228, 'Pablo', 1962, 'M', 276), +(86229, 'Rufus', 1962, 'M', 272), +(86230, 'Lane', 1962, 'M', 271), +(86231, 'Lamont', 1962, 'M', 268), +(86232, 'Rolando', 1962, 'M', 266), +(86233, 'Cornelius', 1962, 'M', 265), +(86234, 'Dion', 1962, 'M', 265), +(86235, 'Louie', 1962, 'M', 263), +(86236, 'Ward', 1962, 'M', 263), +(86237, 'Donnell', 1962, 'M', 262), +(86238, 'Irvin', 1962, 'M', 261), +(86239, 'Elliott', 1962, 'M', 260), +(86240, 'Abel', 1962, 'M', 259), +(86241, 'Lamar', 1962, 'M', 259), +(86242, 'Denny', 1962, 'M', 258), +(86243, 'Joesph', 1962, 'M', 257), +(86244, 'Rich', 1962, 'M', 257), +(86245, 'Aubrey', 1962, 'M', 256), +(86246, 'Garland', 1962, 'M', 255), +(86247, 'Vaughn', 1962, 'M', 255), +(86248, 'Gerardo', 1962, 'M', 254), +(86249, 'Morgan', 1962, 'M', 254), +(86250, 'Garrett', 1962, 'M', 252), +(86251, 'Conrad', 1962, 'M', 251), +(86252, 'Percy', 1962, 'M', 250), +(86253, 'Reynaldo', 1962, 'M', 246), +(86254, 'Alejandro', 1962, 'M', 245), +(86255, 'Sammie', 1962, 'M', 243), +(86256, 'Cornell', 1962, 'M', 242), +(86257, 'Brendan', 1962, 'M', 241), +(86258, 'Reggie', 1962, 'M', 241), +(86259, 'Guadalupe', 1962, 'M', 240), +(86260, 'Moses', 1962, 'M', 239), +(86261, 'Emmett', 1962, 'M', 236), +(86262, 'Harlan', 1962, 'M', 236), +(86263, 'Emanuel', 1962, 'M', 235), +(86264, 'Felipe', 1962, 'M', 235), +(86265, 'Tyler', 1962, 'M', 234), +(86266, 'Carroll', 1962, 'M', 233), +(86267, 'Edmond', 1962, 'M', 233), +(86268, 'Ismael', 1962, 'M', 233), +(86269, 'Sandy', 1962, 'M', 233), +(86270, 'Wilfred', 1962, 'M', 233), +(86271, 'Johnathan', 1962, 'M', 231), +(86272, 'Amos', 1962, 'M', 230), +(86273, 'Andres', 1962, 'M', 230), +(86274, 'Hal', 1962, 'M', 230), +(86275, 'Israel', 1962, 'M', 230), +(86276, 'Cliff', 1962, 'M', 229), +(86277, 'Kip', 1962, 'M', 228), +(86278, 'Kurtis', 1962, 'M', 228), +(86279, 'Elbert', 1962, 'M', 227), +(86280, 'Tomas', 1962, 'M', 227), +(86281, 'Terrell', 1962, 'M', 226), +(86282, 'Marlin', 1962, 'M', 223), +(86283, 'Norris', 1962, 'M', 222), +(86284, 'Ramiro', 1962, 'M', 222), +(86285, 'Jonathon', 1962, 'M', 217), +(86286, 'Kennith', 1962, 'M', 217), +(86287, 'Daren', 1962, 'M', 216), +(86288, 'Elton', 1962, 'M', 215), +(86289, 'Galen', 1962, 'M', 215), +(86290, 'Reuben', 1962, 'M', 215), +(86291, 'Barton', 1962, 'M', 214), +(86292, 'Bennett', 1962, 'M', 214), +(86293, 'Jefferson', 1962, 'M', 214), +(86294, 'Barney', 1962, 'M', 211), +(86295, 'Hans', 1962, 'M', 211), +(86296, 'Thaddeus', 1962, 'M', 210), +(86297, 'Simon', 1962, 'M', 206), +(86298, 'Bryce', 1962, 'M', 205), +(86299, 'Kraig', 1962, 'M', 204), +(86300, 'Bernie', 1962, 'M', 203), +(86301, 'Danial', 1962, 'M', 203), +(86302, 'Murray', 1962, 'M', 203), +(86303, 'Mitchel', 1962, 'M', 202), +(86304, 'Will', 1962, 'M', 202), +(86305, 'Woodrow', 1962, 'M', 202), +(86306, 'Austin', 1962, 'M', 201), +(86307, 'Michel', 1962, 'M', 201), +(86308, 'Russel', 1962, 'M', 200), +(86309, 'Cleveland', 1962, 'M', 199), +(86310, 'Nicky', 1962, 'M', 197), +(86311, 'Reed', 1962, 'M', 197), +(86312, 'Brandon', 1962, 'M', 195), +(86313, 'Erick', 1962, 'M', 195), +(86314, 'Ned', 1962, 'M', 195), +(86315, 'Eddy', 1962, 'M', 193), +(86316, 'Lon', 1962, 'M', 192), +(86317, 'Roman', 1962, 'M', 190), +(86318, 'Avery', 1962, 'M', 189), +(86319, 'Demetrius', 1962, 'M', 189), +(86320, 'Billie', 1962, 'M', 188), +(86321, 'Devin', 1962, 'M', 187), +(86322, 'Rocco', 1962, 'M', 187), +(86323, 'Guillermo', 1962, 'M', 186), +(86324, 'Marcos', 1962, 'M', 186), +(86325, 'Pierre', 1962, 'M', 185), +(86326, 'Garth', 1962, 'M', 184), +(86327, 'Jordan', 1962, 'M', 182), +(86328, 'Rogelio', 1962, 'M', 181), +(86329, 'Carmen', 1962, 'M', 180), +(86330, 'Kirt', 1962, 'M', 180), +(86331, 'Merle', 1962, 'M', 180), +(86332, 'Elijah', 1962, 'M', 178), +(86333, 'Junior', 1962, 'M', 177), +(86334, 'Winston', 1962, 'M', 177), +(86335, 'Lenny', 1962, 'M', 176), +(86336, 'Scottie', 1962, 'M', 176), +(86337, 'Stefan', 1962, 'M', 176), +(86338, 'Elias', 1962, 'M', 175), +(86339, 'Gustavo', 1962, 'M', 175), +(86340, 'Gus', 1962, 'M', 173), +(86341, 'Jeremy', 1962, 'M', 173), +(86342, 'Chip', 1962, 'M', 170), +(86343, 'Elvis', 1962, 'M', 170), +(86344, 'Kermit', 1962, 'M', 170), +(86345, 'Lorne', 1962, 'M', 170), +(86346, 'Irving', 1962, 'M', 169), +(86347, 'Eldon', 1962, 'M', 168), +(86348, 'Harrison', 1962, 'M', 168), +(86349, 'Jed', 1962, 'M', 168), +(86350, 'Damian', 1962, 'M', 165), +(86351, 'Linwood', 1962, 'M', 165), +(86352, 'Santos', 1962, 'M', 165), +(86353, 'Cesar', 1962, 'M', 164), +(86354, 'Levi', 1962, 'M', 164), +(86355, 'Richie', 1962, 'M', 163), +(86356, 'Lonny', 1962, 'M', 162), +(86357, 'Gino', 1962, 'M', 161), +(86358, 'Vito', 1962, 'M', 160), +(86359, 'Jasper', 1962, 'M', 159), +(86360, 'Wally', 1962, 'M', 159), +(86361, 'Grover', 1962, 'M', 158), +(86362, 'Mary', 1962, 'M', 158), +(86363, 'Sanford', 1962, 'M', 158), +(86364, 'Bobbie', 1962, 'M', 157), +(86365, 'Domingo', 1962, 'M', 157), +(86366, 'Erwin', 1962, 'M', 157), +(86367, 'Tad', 1962, 'M', 157), +(86368, 'Wilfredo', 1962, 'M', 157), +(86369, 'Elliot', 1962, 'M', 156), +(86370, 'Toney', 1962, 'M', 156), +(86371, 'Xavier', 1962, 'M', 156), +(86372, 'Burton', 1962, 'M', 154), +(86373, 'Chet', 1962, 'M', 154), +(86374, 'Timmie', 1962, 'M', 153), +(86375, 'Gavin', 1962, 'M', 152), +(86376, 'Kenton', 1962, 'M', 152), +(86377, 'Dwain', 1962, 'M', 150), +(86378, 'Erich', 1962, 'M', 150), +(86379, 'Hank', 1962, 'M', 150), +(86380, 'Sebastian', 1962, 'M', 150), +(86381, 'Emilio', 1962, 'M', 148), +(86382, 'Lyndon', 1962, 'M', 148), +(86383, 'Quintin', 1962, 'M', 148), +(86384, 'Zane', 1962, 'M', 148), +(86385, 'Dick', 1962, 'M', 147), +(86386, 'Jake', 1962, 'M', 147), +(86387, 'Keven', 1962, 'M', 147), +(86388, 'Theron', 1962, 'M', 147), +(86389, 'Art', 1962, 'M', 146), +(86390, 'Loyd', 1962, 'M', 146), +(86391, 'Emery', 1962, 'M', 145), +(86392, 'Emil', 1962, 'M', 145); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(86393, 'Elvin', 1962, 'M', 144), +(86394, 'Saul', 1962, 'M', 144), +(86395, 'Brady', 1962, 'M', 143), +(86396, 'Lincoln', 1962, 'M', 143), +(86397, 'Duncan', 1962, 'M', 142), +(86398, 'Nolan', 1962, 'M', 142), +(86399, 'Cody', 1962, 'M', 141), +(86400, 'Efrain', 1962, 'M', 141), +(86401, 'Shelton', 1962, 'M', 141), +(86402, 'Anton', 1962, 'M', 140), +(86403, 'Frederic', 1962, 'M', 140), +(86404, 'Mikel', 1962, 'M', 140), +(86405, 'Noah', 1962, 'M', 140), +(86406, 'Quentin', 1962, 'M', 140), +(86407, 'Eli', 1962, 'M', 139), +(86408, 'Ignacio', 1962, 'M', 139), +(86409, 'Layne', 1962, 'M', 139), +(86410, 'Leonardo', 1962, 'M', 139), +(86411, 'Harley', 1962, 'M', 138), +(86412, 'Lindsey', 1962, 'M', 138), +(86413, 'Winfred', 1962, 'M', 138), +(86414, 'Kelley', 1962, 'M', 137), +(86415, 'Roscoe', 1962, 'M', 137), +(86416, 'Dannie', 1962, 'M', 136), +(86417, 'Jean', 1962, 'M', 136), +(86418, 'Norbert', 1962, 'M', 135), +(86419, 'Stephon', 1962, 'M', 134), +(86420, 'Thurman', 1962, 'M', 134), +(86421, 'Dudley', 1962, 'M', 133), +(86422, 'Ethan', 1962, 'M', 133), +(86423, 'Carlo', 1962, 'M', 132), +(86424, 'Ulysses', 1962, 'M', 132), +(86425, 'Carter', 1962, 'M', 131), +(86426, 'Marcel', 1962, 'M', 131), +(86427, 'Antoine', 1962, 'M', 130), +(86428, 'Benito', 1962, 'M', 130), +(86429, 'Greggory', 1962, 'M', 130), +(86430, 'Wes', 1962, 'M', 130), +(86431, 'Reid', 1962, 'M', 129), +(86432, 'Emmanuel', 1962, 'M', 128), +(86433, 'Hiram', 1962, 'M', 128), +(86434, 'Jeremiah', 1962, 'M', 128), +(86435, 'Pernell', 1962, 'M', 128), +(86436, 'Sonny', 1962, 'M', 127), +(86437, 'Vern', 1962, 'M', 127), +(86438, 'Brooks', 1962, 'M', 126), +(86439, 'Les', 1962, 'M', 126), +(86440, 'Emory', 1962, 'M', 124), +(86441, 'Lanny', 1962, 'M', 124), +(86442, 'August', 1962, 'M', 123), +(86443, 'Raynard', 1962, 'M', 123), +(86444, 'Derick', 1962, 'M', 122), +(86445, 'Otto', 1962, 'M', 122), +(86446, 'Fabian', 1962, 'M', 121), +(86447, 'Hugo', 1962, 'M', 121), +(86448, 'Orville', 1962, 'M', 121), +(86449, 'Thad', 1962, 'M', 121), +(86450, 'Jefferey', 1962, 'M', 120), +(86451, 'Jerold', 1962, 'M', 120), +(86452, 'Quinton', 1962, 'M', 120), +(86453, 'Santiago', 1962, 'M', 120), +(86454, 'Timmothy', 1962, 'M', 120), +(86455, 'Coy', 1962, 'M', 119), +(86456, 'Everette', 1962, 'M', 118), +(86457, 'Shelby', 1962, 'M', 118), +(86458, 'Solomon', 1962, 'M', 118), +(86459, 'Errol', 1962, 'M', 117), +(86460, 'Lindsay', 1962, 'M', 117), +(86461, 'Noe', 1962, 'M', 117), +(86462, 'Rodrick', 1962, 'M', 116), +(86463, 'Britt', 1962, 'M', 115), +(86464, 'Carmine', 1962, 'M', 115), +(86465, 'Myles', 1962, 'M', 115), +(86466, 'Edwardo', 1962, 'M', 114), +(86467, 'Gil', 1962, 'M', 114), +(86468, 'Nicolas', 1962, 'M', 114), +(86469, 'Ashley', 1962, 'M', 113), +(86470, 'Humberto', 1962, 'M', 113), +(86471, 'Odell', 1962, 'M', 113), +(86472, 'Stanford', 1962, 'M', 113), +(86473, 'Davis', 1962, 'M', 112), +(86474, 'Randel', 1962, 'M', 112), +(86475, 'Riley', 1962, 'M', 112), +(86476, 'Wiley', 1962, 'M', 112), +(86477, 'Omar', 1962, 'M', 111), +(86478, 'Butch', 1962, 'M', 110), +(86479, 'Eloy', 1962, 'M', 110), +(86480, 'Micah', 1962, 'M', 110), +(86481, 'Burt', 1962, 'M', 109), +(86482, 'Charley', 1962, 'M', 109), +(86483, 'Darius', 1962, 'M', 109), +(86484, 'Del', 1962, 'M', 109), +(86485, 'Heriberto', 1962, 'M', 109), +(86486, 'Jerrold', 1962, 'M', 109), +(86487, 'Graham', 1962, 'M', 108), +(86488, 'Elwood', 1962, 'M', 107), +(86489, 'Kristopher', 1962, 'M', 107), +(86490, 'Raphael', 1962, 'M', 107), +(86491, 'Von', 1962, 'M', 107), +(86492, 'Jackson', 1962, 'M', 105), +(86493, 'Lisa', 1962, 'M', 105), +(86494, 'Ollie', 1962, 'M', 105), +(86495, 'Unknown', 1962, 'M', 105), +(86496, 'Vicente', 1962, 'M', 105), +(86497, 'Weldon', 1962, 'M', 105), +(86498, 'Derwin', 1962, 'M', 104), +(86499, 'Mervin', 1962, 'M', 104), +(86500, 'Dante', 1962, 'M', 103), +(86501, 'Darron', 1962, 'M', 103), +(86502, 'Donovan', 1962, 'M', 103), +(86503, 'Douglass', 1962, 'M', 103), +(86504, 'Josh', 1962, 'M', 103), +(86505, 'Sal', 1962, 'M', 103), +(86506, 'Val', 1962, 'M', 103), +(86507, 'Denver', 1962, 'M', 102), +(86508, 'Donn', 1962, 'M', 102), +(86509, 'Jacky', 1962, 'M', 101), +(86510, 'Adolfo', 1962, 'M', 100), +(86511, 'Courtney', 1962, 'M', 100), +(86512, 'Ivory', 1962, 'M', 100), +(86513, 'Jacques', 1962, 'M', 100), +(86514, 'Rhett', 1962, 'M', 100), +(86515, 'Lisa', 1963, 'F', 56039), +(86516, 'Mary', 1963, 'F', 41548), +(86517, 'Susan', 1963, 'F', 33993), +(86518, 'Karen', 1963, 'F', 32484), +(86519, 'Linda', 1963, 'F', 27710), +(86520, 'Donna', 1963, 'F', 25399), +(86521, 'Patricia', 1963, 'F', 25360), +(86522, 'Lori', 1963, 'F', 23909), +(86523, 'Sandra', 1963, 'F', 21610), +(86524, 'Cynthia', 1963, 'F', 21591), +(86525, 'Kimberly', 1963, 'F', 21233), +(86526, 'Tammy', 1963, 'F', 21192), +(86527, 'Deborah', 1963, 'F', 21063), +(86528, 'Pamela', 1963, 'F', 20584), +(86529, 'Brenda', 1963, 'F', 19606), +(86530, 'Laura', 1963, 'F', 18509), +(86531, 'Barbara', 1963, 'F', 18289), +(86532, 'Teresa', 1963, 'F', 17966), +(86533, 'Sharon', 1963, 'F', 17794), +(86534, 'Elizabeth', 1963, 'F', 17590), +(86535, 'Debra', 1963, 'F', 17328), +(86536, 'Julie', 1963, 'F', 16304), +(86537, 'Nancy', 1963, 'F', 16263), +(86538, 'Cheryl', 1963, 'F', 15048), +(86539, 'Robin', 1963, 'F', 14431), +(86540, 'Michelle', 1963, 'F', 14381), +(86541, 'Denise', 1963, 'F', 14095), +(86542, 'Kathleen', 1963, 'F', 13551), +(86543, 'Christine', 1963, 'F', 13389), +(86544, 'Angela', 1963, 'F', 13277), +(86545, 'Diane', 1963, 'F', 13200), +(86546, 'Kelly', 1963, 'F', 12554), +(86547, 'Carol', 1963, 'F', 12493), +(86548, 'Kathy', 1963, 'F', 12219), +(86549, 'Tina', 1963, 'F', 12157), +(86550, 'Jennifer', 1963, 'F', 11761), +(86551, 'Cindy', 1963, 'F', 11088), +(86552, 'Theresa', 1963, 'F', 11039), +(86553, 'Kim', 1963, 'F', 10680), +(86554, 'Janet', 1963, 'F', 10665), +(86555, 'Debbie', 1963, 'F', 10439), +(86556, 'Paula', 1963, 'F', 10144), +(86557, 'Maria', 1963, 'F', 9821), +(86558, 'Rebecca', 1963, 'F', 9393), +(86559, 'Rhonda', 1963, 'F', 9353), +(86560, 'Margaret', 1963, 'F', 9304), +(86561, 'Laurie', 1963, 'F', 9271), +(86562, 'Tracy', 1963, 'F', 9072), +(86563, 'Sherry', 1963, 'F', 9065), +(86564, 'Sheila', 1963, 'F', 8709), +(86565, 'Jacqueline', 1963, 'F', 8549), +(86566, 'Dawn', 1963, 'F', 8418), +(86567, 'Catherine', 1963, 'F', 8292), +(86568, 'Amy', 1963, 'F', 8232), +(86569, 'Connie', 1963, 'F', 8165), +(86570, 'Carolyn', 1963, 'F', 8121), +(86571, 'Ann', 1963, 'F', 7980), +(86572, 'Terri', 1963, 'F', 7702), +(86573, 'Michele', 1963, 'F', 7511), +(86574, 'Wendy', 1963, 'F', 7338), +(86575, 'Melissa', 1963, 'F', 7320), +(86576, 'Diana', 1963, 'F', 7314), +(86577, 'Janice', 1963, 'F', 7071), +(86578, 'Stephanie', 1963, 'F', 6823), +(86579, 'Suzanne', 1963, 'F', 6819), +(86580, 'Beth', 1963, 'F', 6678), +(86581, 'Cathy', 1963, 'F', 6321), +(86582, 'Jill', 1963, 'F', 6306), +(86583, 'Valerie', 1963, 'F', 6174), +(86584, 'Judy', 1963, 'F', 6131), +(86585, 'Annette', 1963, 'F', 6042), +(86586, 'Leslie', 1963, 'F', 5860), +(86587, 'Lynn', 1963, 'F', 5827), +(86588, 'Renee', 1963, 'F', 5777), +(86589, 'Jane', 1963, 'F', 5766), +(86590, 'Wanda', 1963, 'F', 5590), +(86591, 'Anita', 1963, 'F', 5469), +(86592, 'Sherri', 1963, 'F', 5459), +(86593, 'Gina', 1963, 'F', 5337), +(86594, 'Anne', 1963, 'F', 5331), +(86595, 'Beverly', 1963, 'F', 5286), +(86596, 'Carla', 1963, 'F', 5267), +(86597, 'Bonnie', 1963, 'F', 5226), +(86598, 'Joyce', 1963, 'F', 5224), +(86599, 'Darlene', 1963, 'F', 5155), +(86600, 'Katherine', 1963, 'F', 5129), +(86601, 'Penny', 1963, 'F', 5129), +(86602, 'Dana', 1963, 'F', 5046), +(86603, 'Andrea', 1963, 'F', 5005), +(86604, 'Martha', 1963, 'F', 4881), +(86605, 'Judith', 1963, 'F', 4739), +(86606, 'Regina', 1963, 'F', 4712), +(86607, 'Kathryn', 1963, 'F', 4705), +(86608, 'Sarah', 1963, 'F', 4577), +(86609, 'Joan', 1963, 'F', 4560), +(86610, 'Gloria', 1963, 'F', 4538), +(86611, 'Jean', 1963, 'F', 4480), +(86612, 'Colleen', 1963, 'F', 4445), +(86613, 'Shirley', 1963, 'F', 4385), +(86614, 'Vicki', 1963, 'F', 4361), +(86615, 'Melanie', 1963, 'F', 4268), +(86616, 'Anna', 1963, 'F', 4246), +(86617, 'Virginia', 1963, 'F', 4213), +(86618, 'Betty', 1963, 'F', 4155), +(86619, 'Gail', 1963, 'F', 4105), +(86620, 'Peggy', 1963, 'F', 4105), +(86621, 'Christina', 1963, 'F', 4023), +(86622, 'Maureen', 1963, 'F', 4007), +(86623, 'Marie', 1963, 'F', 4006), +(86624, 'Monica', 1963, 'F', 3997), +(86625, 'Tamara', 1963, 'F', 3982), +(86626, 'Ellen', 1963, 'F', 3942), +(86627, 'Ruth', 1963, 'F', 3869), +(86628, 'Joanne', 1963, 'F', 3856), +(86629, 'Rita', 1963, 'F', 3803), +(86630, 'Dorothy', 1963, 'F', 3790), +(86631, 'Shelly', 1963, 'F', 3789), +(86632, 'Tracey', 1963, 'F', 3704), +(86633, 'Rose', 1963, 'F', 3701), +(86634, 'Vickie', 1963, 'F', 3634), +(86635, 'Melinda', 1963, 'F', 3574), +(86636, 'Julia', 1963, 'F', 3572), +(86637, 'Terry', 1963, 'F', 3522), +(86638, 'Helen', 1963, 'F', 3340), +(86639, 'Marilyn', 1963, 'F', 3316), +(86640, 'Becky', 1963, 'F', 3304), +(86641, 'Stacey', 1963, 'F', 3303), +(86642, 'Sylvia', 1963, 'F', 3281), +(86643, 'Stacy', 1963, 'F', 3263), +(86644, 'Victoria', 1963, 'F', 3246), +(86645, 'Phyllis', 1963, 'F', 3243), +(86646, 'Holly', 1963, 'F', 3134), +(86647, 'Elaine', 1963, 'F', 3126), +(86648, 'Deanna', 1963, 'F', 3121), +(86649, 'Sheryl', 1963, 'F', 3106), +(86650, 'Sheri', 1963, 'F', 3094), +(86651, 'Yvonne', 1963, 'F', 3074), +(86652, 'Alice', 1963, 'F', 3065), +(86653, 'Veronica', 1963, 'F', 3014), +(86654, 'Heidi', 1963, 'F', 2940), +(86655, 'Eileen', 1963, 'F', 2939), +(86656, 'Jackie', 1963, 'F', 2819), +(86657, 'Carrie', 1963, 'F', 2817), +(86658, 'Jeanne', 1963, 'F', 2806), +(86659, 'Sandy', 1963, 'F', 2801), +(86660, 'Frances', 1963, 'F', 2746), +(86661, 'Sally', 1963, 'F', 2744), +(86662, 'Shelley', 1963, 'F', 2734), +(86663, 'Charlene', 1963, 'F', 2733), +(86664, 'Belinda', 1963, 'F', 2688), +(86665, 'Joann', 1963, 'F', 2655), +(86666, 'Toni', 1963, 'F', 2620), +(86667, 'Charlotte', 1963, 'F', 2596), +(86668, 'Sue', 1963, 'F', 2593), +(86669, 'Lorraine', 1963, 'F', 2591), +(86670, 'Yolanda', 1963, 'F', 2582), +(86671, 'Crystal', 1963, 'F', 2579), +(86672, 'Jeanette', 1963, 'F', 2568), +(86673, 'Evelyn', 1963, 'F', 2564), +(86674, 'Jamie', 1963, 'F', 2550), +(86675, 'Loretta', 1963, 'F', 2505), +(86676, 'Sara', 1963, 'F', 2484), +(86677, 'Norma', 1963, 'F', 2459), +(86678, 'Shari', 1963, 'F', 2453), +(86679, 'Darla', 1963, 'F', 2388), +(86680, 'Pam', 1963, 'F', 2386), +(86681, 'Tonya', 1963, 'F', 2366), +(86682, 'Carmen', 1963, 'F', 2346), +(86683, 'Roberta', 1963, 'F', 2322), +(86684, 'Yvette', 1963, 'F', 2284), +(86685, 'Gwendolyn', 1963, 'F', 2259), +(86686, 'Tammie', 1963, 'F', 2243), +(86687, 'Alicia', 1963, 'F', 2218), +(86688, 'Lynne', 1963, 'F', 2203), +(86689, 'April', 1963, 'F', 2197), +(86690, 'Patty', 1963, 'F', 2194), +(86691, 'Jo', 1963, 'F', 2193), +(86692, 'Joy', 1963, 'F', 2181), +(86693, 'Rachel', 1963, 'F', 2179), +(86694, 'Marcia', 1963, 'F', 2156), +(86695, 'Doris', 1963, 'F', 2125), +(86696, 'Melody', 1963, 'F', 2091), +(86697, 'Heather', 1963, 'F', 2088), +(86698, 'Tami', 1963, 'F', 2078), +(86699, 'Shelia', 1963, 'F', 2063), +(86700, 'Shannon', 1963, 'F', 2051), +(86701, 'Glenda', 1963, 'F', 2048), +(86702, 'Vanessa', 1963, 'F', 2033), +(86703, 'Karla', 1963, 'F', 2009), +(86704, 'Natalie', 1963, 'F', 1993), +(86705, 'Marsha', 1963, 'F', 1952), +(86706, 'Teri', 1963, 'F', 1938), +(86707, 'Vicky', 1963, 'F', 1935), +(86708, 'Sonya', 1963, 'F', 1919), +(86709, 'Juanita', 1963, 'F', 1913), +(86710, 'Jodi', 1963, 'F', 1900), +(86711, 'Dianne', 1963, 'F', 1897), +(86712, 'Tanya', 1963, 'F', 1848), +(86713, 'Audrey', 1963, 'F', 1800), +(86714, 'Doreen', 1963, 'F', 1797), +(86715, 'Irene', 1963, 'F', 1759), +(86716, 'Patti', 1963, 'F', 1752), +(86717, 'Vivian', 1963, 'F', 1749), +(86718, 'Kristine', 1963, 'F', 1747), +(86719, 'Rosemary', 1963, 'F', 1733), +(86720, 'Jody', 1963, 'F', 1725), +(86721, 'Robyn', 1963, 'F', 1696), +(86722, 'Caroline', 1963, 'F', 1690), +(86723, 'Felicia', 1963, 'F', 1664), +(86724, 'Ronda', 1963, 'F', 1650), +(86725, 'Cassandra', 1963, 'F', 1648), +(86726, 'Kay', 1963, 'F', 1606), +(86727, 'Lora', 1963, 'F', 1599), +(86728, 'Lynda', 1963, 'F', 1589), +(86729, 'Constance', 1963, 'F', 1584), +(86730, 'Kristin', 1963, 'F', 1580), +(86731, 'Lois', 1963, 'F', 1580), +(86732, 'Jan', 1963, 'F', 1561), +(86733, 'Marlene', 1963, 'F', 1554), +(86734, 'Roxanne', 1963, 'F', 1529), +(86735, 'Dianna', 1963, 'F', 1511), +(86736, 'Rosa', 1963, 'F', 1509), +(86737, 'Sherrie', 1963, 'F', 1493), +(86738, 'Kelley', 1963, 'F', 1484), +(86739, 'Lee', 1963, 'F', 1478), +(86740, 'Marianne', 1963, 'F', 1467), +(86741, 'Eva', 1963, 'F', 1456), +(86742, 'Bridget', 1963, 'F', 1448), +(86743, 'Ramona', 1963, 'F', 1435), +(86744, 'Allison', 1963, 'F', 1434), +(86745, 'Chris', 1963, 'F', 1423), +(86746, 'Kristi', 1963, 'F', 1420), +(86747, 'Kimberley', 1963, 'F', 1414), +(86748, 'Alison', 1963, 'F', 1390), +(86749, 'Kelli', 1963, 'F', 1383), +(86750, 'Ruby', 1963, 'F', 1381), +(86751, 'Angie', 1963, 'F', 1376), +(86752, 'June', 1963, 'F', 1367), +(86753, 'Louise', 1963, 'F', 1318), +(86754, 'Jana', 1963, 'F', 1310), +(86755, 'Lorie', 1963, 'F', 1307), +(86756, 'Jenny', 1963, 'F', 1302), +(86757, 'Traci', 1963, 'F', 1301), +(86758, 'Leah', 1963, 'F', 1299), +(86759, 'Arlene', 1963, 'F', 1297), +(86760, 'Lydia', 1963, 'F', 1291), +(86761, 'Marjorie', 1963, 'F', 1282), +(86762, 'Nina', 1963, 'F', 1275), +(86763, 'Grace', 1963, 'F', 1271), +(86764, 'Lauren', 1963, 'F', 1260), +(86765, 'Lynette', 1963, 'F', 1251), +(86766, 'Priscilla', 1963, 'F', 1245), +(86767, 'Ginger', 1963, 'F', 1224), +(86768, 'Christy', 1963, 'F', 1210), +(86769, 'Erin', 1963, 'F', 1199), +(86770, 'Cheri', 1963, 'F', 1167), +(86771, 'Lillian', 1963, 'F', 1166), +(86772, 'Sonia', 1963, 'F', 1166), +(86773, 'Kerry', 1963, 'F', 1164), +(86774, 'Carole', 1963, 'F', 1151), +(86775, 'Janine', 1963, 'F', 1136), +(86776, 'Tara', 1963, 'F', 1130), +(86777, 'Esther', 1963, 'F', 1123), +(86778, 'Annie', 1963, 'F', 1120), +(86779, 'Jessica', 1963, 'F', 1120), +(86780, 'Kellie', 1963, 'F', 1120), +(86781, 'Debora', 1963, 'F', 1117), +(86782, 'Dolores', 1963, 'F', 1114), +(86783, 'Emily', 1963, 'F', 1108), +(86784, 'Gayle', 1963, 'F', 1107), +(86785, 'Maryann', 1963, 'F', 1107), +(86786, 'Jacquelyn', 1963, 'F', 1096), +(86787, 'Joni', 1963, 'F', 1089), +(86788, 'Marla', 1963, 'F', 1088), +(86789, 'Kari', 1963, 'F', 1083), +(86790, 'Katrina', 1963, 'F', 1079), +(86791, 'Betsy', 1963, 'F', 1077), +(86792, 'Nora', 1963, 'F', 1068), +(86793, 'Geraldine', 1963, 'F', 1059), +(86794, 'Antoinette', 1963, 'F', 1055), +(86795, 'Josephine', 1963, 'F', 1054), +(86796, 'Margie', 1963, 'F', 1041), +(86797, 'Amanda', 1963, 'F', 1035), +(86798, 'Pauline', 1963, 'F', 1032), +(86799, 'Bernadette', 1963, 'F', 1020), +(86800, 'Lorrie', 1963, 'F', 1019), +(86801, 'Shawn', 1963, 'F', 1016), +(86802, 'Kristen', 1963, 'F', 1015), +(86803, 'Tracie', 1963, 'F', 1015), +(86804, 'Mona', 1963, 'F', 1010), +(86805, 'Claudia', 1963, 'F', 1001), +(86806, 'Delores', 1963, 'F', 1000), +(86807, 'Edith', 1963, 'F', 999), +(86808, 'Sonja', 1963, 'F', 997), +(86809, 'Dina', 1963, 'F', 994), +(86810, 'Leigh', 1963, 'F', 981), +(86811, 'Susie', 1963, 'F', 977), +(86812, 'Therese', 1963, 'F', 969), +(86813, 'Gretchen', 1963, 'F', 962), +(86814, 'Dena', 1963, 'F', 957), +(86815, 'Janie', 1963, 'F', 941), +(86816, 'Alisa', 1963, 'F', 933), +(86817, 'Lucy', 1963, 'F', 931), +(86818, 'Nadine', 1963, 'F', 927), +(86819, 'Daphne', 1963, 'F', 926), +(86820, 'Terrie', 1963, 'F', 926), +(86821, 'Georgia', 1963, 'F', 907), +(86822, 'Mildred', 1963, 'F', 901), +(86823, 'Cherie', 1963, 'F', 897), +(86824, 'Miriam', 1963, 'F', 897), +(86825, 'Karin', 1963, 'F', 894), +(86826, 'Patsy', 1963, 'F', 892), +(86827, 'Joanna', 1963, 'F', 886), +(86828, 'Rosemarie', 1963, 'F', 882), +(86829, 'Sabrina', 1963, 'F', 882), +(86830, 'Rochelle', 1963, 'F', 872), +(86831, 'Cecilia', 1963, 'F', 869), +(86832, 'Candace', 1963, 'F', 862), +(86833, 'Myra', 1963, 'F', 862), +(86834, 'Molly', 1963, 'F', 860), +(86835, 'Paulette', 1963, 'F', 858), +(86836, 'Marian', 1963, 'F', 853), +(86837, 'Dora', 1963, 'F', 852), +(86838, 'Trudy', 1963, 'F', 852), +(86839, 'Edna', 1963, 'F', 851), +(86840, 'Bonita', 1963, 'F', 830), +(86841, 'Cathleen', 1963, 'F', 820), +(86842, 'Kara', 1963, 'F', 819), +(86843, 'Lana', 1963, 'F', 817), +(86844, 'Rene', 1963, 'F', 817), +(86845, 'Desiree', 1963, 'F', 816), +(86846, 'Francine', 1963, 'F', 808), +(86847, 'Leticia', 1963, 'F', 800), +(86848, 'Jeannette', 1963, 'F', 799), +(86849, 'Faith', 1963, 'F', 795), +(86850, 'Bobbie', 1963, 'F', 792), +(86851, 'Celeste', 1963, 'F', 789), +(86852, 'Kristina', 1963, 'F', 778), +(86853, 'Patrice', 1963, 'F', 778), +(86854, 'Monique', 1963, 'F', 771), +(86855, 'Ana', 1963, 'F', 767), +(86856, 'Candy', 1963, 'F', 765), +(86857, 'Irma', 1963, 'F', 765), +(86858, 'Trina', 1963, 'F', 760), +(86859, 'Clara', 1963, 'F', 751), +(86860, 'Jayne', 1963, 'F', 750), +(86861, 'Nanette', 1963, 'F', 748), +(86862, 'Kristy', 1963, 'F', 741), +(86863, 'Marion', 1963, 'F', 738), +(86864, 'Kris', 1963, 'F', 733), +(86865, 'Lesa', 1963, 'F', 727), +(86866, 'Emma', 1963, 'F', 725), +(86867, 'Thelma', 1963, 'F', 722), +(86868, 'Beatrice', 1963, 'F', 717), +(86869, 'Elisa', 1963, 'F', 717), +(86870, 'Laurel', 1963, 'F', 716), +(86871, 'Jeannie', 1963, 'F', 708), +(86872, 'Vera', 1963, 'F', 705), +(86873, 'Bernice', 1963, 'F', 703), +(86874, 'Angelia', 1963, 'F', 693), +(86875, 'Naomi', 1963, 'F', 691), +(86876, 'Gladys', 1963, 'F', 689), +(86877, 'Danielle', 1963, 'F', 687), +(86878, 'Cara', 1963, 'F', 684), +(86879, 'Jodie', 1963, 'F', 684), +(86880, 'Leanne', 1963, 'F', 684), +(86881, 'Marcella', 1963, 'F', 684), +(86882, 'Adrienne', 1963, 'F', 683), +(86883, 'Lucinda', 1963, 'F', 679), +(86884, 'Zina', 1963, 'F', 678), +(86885, 'Deirdre', 1963, 'F', 676), +(86886, 'Claire', 1963, 'F', 675), +(86887, 'Jennie', 1963, 'F', 673), +(86888, 'Gwen', 1963, 'F', 672), +(86889, 'Alma', 1963, 'F', 670), +(86890, 'Eleanor', 1963, 'F', 668), +(86891, 'Janis', 1963, 'F', 664), +(86892, 'Tammi', 1963, 'F', 663), +(86893, 'Billie', 1963, 'F', 660), +(86894, 'Kerri', 1963, 'F', 659), +(86895, 'Nicole', 1963, 'F', 652), +(86896, 'Jeanine', 1963, 'F', 642), +(86897, 'Leann', 1963, 'F', 636), +(86898, 'Lauri', 1963, 'F', 632), +(86899, 'Ida', 1963, 'F', 625), +(86900, 'Susanne', 1963, 'F', 622), +(86901, 'Johnna', 1963, 'F', 617), +(86902, 'Suzette', 1963, 'F', 613), +(86903, 'Stacie', 1963, 'F', 611), +(86904, 'Marcy', 1963, 'F', 609), +(86905, 'Jeri', 1963, 'F', 605), +(86906, 'Kirsten', 1963, 'F', 599), +(86907, 'Ella', 1963, 'F', 597), +(86908, 'Sondra', 1963, 'F', 596), +(86909, 'Hope', 1963, 'F', 587), +(86910, 'Tamera', 1963, 'F', 585), +(86911, 'Rosie', 1963, 'F', 581), +(86912, 'Erica', 1963, 'F', 579), +(86913, 'Dee', 1963, 'F', 578), +(86914, 'Florence', 1963, 'F', 578), +(86915, 'Bertha', 1963, 'F', 575), +(86916, 'Polly', 1963, 'F', 573), +(86917, 'Lorri', 1963, 'F', 564), +(86918, 'Mindy', 1963, 'F', 561), +(86919, 'Valarie', 1963, 'F', 560), +(86920, 'Christie', 1963, 'F', 556), +(86921, 'Iris', 1963, 'F', 555), +(86922, 'Wilma', 1963, 'F', 553), +(86923, 'Deana', 1963, 'F', 552), +(86924, 'Noreen', 1963, 'F', 549), +(86925, 'Katie', 1963, 'F', 546), +(86926, 'Rosalind', 1963, 'F', 546), +(86927, 'Deidre', 1963, 'F', 542), +(86928, 'Janette', 1963, 'F', 541), +(86929, 'Stella', 1963, 'F', 541), +(86930, 'Karyn', 1963, 'F', 539), +(86931, 'Jeannine', 1963, 'F', 536), +(86932, 'Della', 1963, 'F', 535), +(86933, 'Jolene', 1963, 'F', 533), +(86934, 'Krista', 1963, 'F', 528), +(86935, 'Margarita', 1963, 'F', 528), +(86936, 'Ladonna', 1963, 'F', 527), +(86937, 'Deanne', 1963, 'F', 525), +(86938, 'Darcy', 1963, 'F', 524), +(86939, 'Ethel', 1963, 'F', 523), +(86940, 'Sophia', 1963, 'F', 523), +(86941, 'Jerri', 1963, 'F', 514), +(86942, 'Lena', 1963, 'F', 513), +(86943, 'Madeline', 1963, 'F', 513), +(86944, 'Paige', 1963, 'F', 510), +(86945, 'Corinne', 1963, 'F', 508), +(86946, 'Tamra', 1963, 'F', 506), +(86947, 'Amelia', 1963, 'F', 503), +(86948, 'Lucille', 1963, 'F', 499), +(86949, 'Maxine', 1963, 'F', 499), +(86950, 'Olga', 1963, 'F', 496), +(86951, 'Colette', 1963, 'F', 495), +(86952, 'Lynnette', 1963, 'F', 495), +(86953, 'Camille', 1963, 'F', 487), +(86954, 'Elena', 1963, 'F', 483), +(86955, 'Lorna', 1963, 'F', 483), +(86956, 'Rena', 1963, 'F', 481), +(86957, 'Marybeth', 1963, 'F', 480), +(86958, 'Tricia', 1963, 'F', 479), +(86959, 'Faye', 1963, 'F', 477), +(86960, 'Cecelia', 1963, 'F', 470), +(86961, 'Ingrid', 1963, 'F', 467), +(86962, 'Elisabeth', 1963, 'F', 465), +(86963, 'Leona', 1963, 'F', 462), +(86964, 'Rosalie', 1963, 'F', 460), +(86965, 'Bridgette', 1963, 'F', 458), +(86966, 'Gena', 1963, 'F', 458), +(86967, 'Luann', 1963, 'F', 458), +(86968, 'Shawna', 1963, 'F', 458), +(86969, 'Annmarie', 1963, 'F', 457), +(86970, 'Alesia', 1963, 'F', 455), +(86971, 'Kimberlee', 1963, 'F', 452), +(86972, 'Olivia', 1963, 'F', 451), +(86973, 'Lea', 1963, 'F', 450), +(86974, 'Christi', 1963, 'F', 449), +(86975, 'Celia', 1963, 'F', 448), +(86976, 'Danette', 1963, 'F', 446), +(86977, 'Janelle', 1963, 'F', 442), +(86978, 'Delia', 1963, 'F', 437), +(86979, 'Margo', 1963, 'F', 435), +(86980, 'Megan', 1963, 'F', 434), +(86981, 'Debby', 1963, 'F', 433), +(86982, 'Lolita', 1963, 'F', 433), +(86983, 'Guadalupe', 1963, 'F', 432), +(86984, 'Liz', 1963, 'F', 422), +(86985, 'Felecia', 1963, 'F', 421), +(86986, 'Hazel', 1963, 'F', 421), +(86987, 'Coleen', 1963, 'F', 417), +(86988, 'Maura', 1963, 'F', 417), +(86989, 'Julianne', 1963, 'F', 415), +(86990, 'Kendra', 1963, 'F', 411), +(86991, 'Angel', 1963, 'F', 410), +(86992, 'Willie', 1963, 'F', 407), +(86993, 'Velma', 1963, 'F', 406), +(86994, 'Laverne', 1963, 'F', 405), +(86995, 'Robbin', 1963, 'F', 403), +(86996, 'Trisha', 1963, 'F', 403), +(86997, 'Amber', 1963, 'F', 402), +(86998, 'Cora', 1963, 'F', 401), +(86999, 'Jessie', 1963, 'F', 401), +(87000, 'Mitzi', 1963, 'F', 400), +(87001, 'Tonia', 1963, 'F', 398), +(87002, 'Benita', 1963, 'F', 397), +(87003, 'Johanna', 1963, 'F', 395), +(87004, 'Robbie', 1963, 'F', 395), +(87005, 'Lillie', 1963, 'F', 392), +(87006, 'Daisy', 1963, 'F', 391), +(87007, 'Deann', 1963, 'F', 388), +(87008, 'Deena', 1963, 'F', 384), +(87009, 'Marguerite', 1963, 'F', 383), +(87010, 'Lou', 1963, 'F', 382), +(87011, 'Hilda', 1963, 'F', 381), +(87012, 'Gay', 1963, 'F', 380), +(87013, 'Isabel', 1963, 'F', 379), +(87014, 'Lenora', 1963, 'F', 378), +(87015, 'Michael', 1963, 'F', 377), +(87016, 'Rachelle', 1963, 'F', 376), +(87017, 'Elise', 1963, 'F', 374), +(87018, 'Marta', 1963, 'F', 374), +(87019, 'Saundra', 1963, 'F', 371), +(87020, 'Kathi', 1963, 'F', 370), +(87021, 'Shelby', 1963, 'F', 370), +(87022, 'Dale', 1963, 'F', 369), +(87023, 'Roseann', 1963, 'F', 369), +(87024, 'Helene', 1963, 'F', 367), +(87025, 'Marcie', 1963, 'F', 363), +(87026, 'Eugenia', 1963, 'F', 361), +(87027, 'Shelli', 1963, 'F', 360), +(87028, 'Verna', 1963, 'F', 359), +(87029, 'Tamela', 1963, 'F', 355), +(87030, 'Maryellen', 1963, 'F', 354), +(87031, 'Gayla', 1963, 'F', 353), +(87032, 'Lesley', 1963, 'F', 351), +(87033, 'Harriet', 1963, 'F', 350), +(87034, 'Kristie', 1963, 'F', 350), +(87035, 'Judi', 1963, 'F', 349), +(87036, 'Dixie', 1963, 'F', 348), +(87037, 'Ernestine', 1963, 'F', 347), +(87038, 'Bobbi', 1963, 'F', 346), +(87039, 'Randi', 1963, 'F', 345), +(87040, 'Misty', 1963, 'F', 344), +(87041, 'Geneva', 1963, 'F', 343), +(87042, 'Malinda', 1963, 'F', 339), +(87043, 'Leeann', 1963, 'F', 338), +(87044, 'Shellie', 1963, 'F', 337), +(87045, 'Bethany', 1963, 'F', 335), +(87046, 'Lourdes', 1963, 'F', 332), +(87047, 'Sandi', 1963, 'F', 331), +(87048, 'Mari', 1963, 'F', 329), +(87049, 'Lola', 1963, 'F', 327), +(87050, 'Denice', 1963, 'F', 326), +(87051, 'Lorena', 1963, 'F', 325), +(87052, 'Gale', 1963, 'F', 324), +(87053, 'Luz', 1963, 'F', 322), +(87054, 'Nannette', 1963, 'F', 322), +(87055, 'Agnes', 1963, 'F', 320), +(87056, 'Penelope', 1963, 'F', 320), +(87057, 'Jeanie', 1963, 'F', 318), +(87058, 'Freda', 1963, 'F', 317), +(87059, 'Shauna', 1963, 'F', 317), +(87060, 'Allyson', 1963, 'F', 316), +(87061, 'Renae', 1963, 'F', 315), +(87062, 'James', 1963, 'F', 311), +(87063, 'Pat', 1963, 'F', 311), +(87064, 'Geri', 1963, 'F', 310), +(87065, 'Luanne', 1963, 'F', 310), +(87066, 'Justine', 1963, 'F', 308), +(87067, 'Marisa', 1963, 'F', 308), +(87068, 'Rae', 1963, 'F', 308), +(87069, 'Rosalyn', 1963, 'F', 308), +(87070, 'Jacquline', 1963, 'F', 307), +(87071, 'Katharine', 1963, 'F', 307), +(87072, 'Myrna', 1963, 'F', 307), +(87073, 'Marci', 1963, 'F', 306), +(87074, 'Viola', 1963, 'F', 306), +(87075, 'Wendi', 1963, 'F', 306), +(87076, 'Ada', 1963, 'F', 303), +(87077, 'Erika', 1963, 'F', 303), +(87078, 'Eunice', 1963, 'F', 303), +(87079, 'Keri', 1963, 'F', 302), +(87080, 'Marina', 1963, 'F', 302), +(87081, 'Elsie', 1963, 'F', 300), +(87082, 'Leisa', 1963, 'F', 300), +(87083, 'Danita', 1963, 'F', 299), +(87084, 'Rosanne', 1963, 'F', 296), +(87085, 'Flora', 1963, 'F', 295), +(87086, 'Mattie', 1963, 'F', 295), +(87087, 'Caryn', 1963, 'F', 294), +(87088, 'Jenifer', 1963, 'F', 294), +(87089, 'Bessie', 1963, 'F', 293), +(87090, 'Cindi', 1963, 'F', 292), +(87091, 'Maryanne', 1963, 'F', 291), +(87092, 'Genevieve', 1963, 'F', 290), +(87093, 'Eve', 1963, 'F', 289), +(87094, 'Staci', 1963, 'F', 289), +(87095, 'Bridgett', 1963, 'F', 288), +(87096, 'Deloris', 1963, 'F', 288), +(87097, 'Janna', 1963, 'F', 288), +(87098, 'Greta', 1963, 'F', 287), +(87099, 'Clare', 1963, 'F', 286), +(87100, 'Claudette', 1963, 'F', 286), +(87101, 'Blanca', 1963, 'F', 285), +(87102, 'Elsa', 1963, 'F', 285), +(87103, 'Pearl', 1963, 'F', 285), +(87104, 'Edwina', 1963, 'F', 284), +(87105, 'Deidra', 1963, 'F', 283), +(87106, 'Johnnie', 1963, 'F', 283), +(87107, 'Frankie', 1963, 'F', 282), +(87108, 'Kathie', 1963, 'F', 281), +(87109, 'Angelina', 1963, 'F', 279), +(87110, 'Glynis', 1963, 'F', 278), +(87111, 'Laureen', 1963, 'F', 277), +(87112, 'Nikki', 1963, 'F', 277), +(87113, 'Pamala', 1963, 'F', 276), +(87114, 'Sharron', 1963, 'F', 276), +(87115, 'Charmaine', 1963, 'F', 275), +(87116, 'Diann', 1963, 'F', 275), +(87117, 'Ava', 1963, 'F', 273), +(87118, 'Christa', 1963, 'F', 273), +(87119, 'Maggie', 1963, 'F', 273), +(87120, 'Helena', 1963, 'F', 272), +(87121, 'Letitia', 1963, 'F', 272), +(87122, 'Martina', 1963, 'F', 272), +(87123, 'Rosalinda', 1963, 'F', 272), +(87124, 'Whitney', 1963, 'F', 272), +(87125, 'Patrica', 1963, 'F', 271), +(87126, 'Sharlene', 1963, 'F', 271), +(87127, 'Jami', 1963, 'F', 270), +(87128, 'Tena', 1963, 'F', 269), +(87129, 'Nita', 1963, 'F', 268), +(87130, 'Tonja', 1963, 'F', 268), +(87131, 'Barb', 1963, 'F', 267), +(87132, 'Roslyn', 1963, 'F', 267), +(87133, 'Jocelyn', 1963, 'F', 266), +(87134, 'Lorene', 1963, 'F', 266), +(87135, 'Alberta', 1963, 'F', 265), +(87136, 'Carlene', 1963, 'F', 262), +(87137, 'Melisa', 1963, 'F', 261), +(87138, 'Caren', 1963, 'F', 260), +(87139, 'Dayna', 1963, 'F', 260), +(87140, 'John', 1963, 'F', 260), +(87141, 'Jonna', 1963, 'F', 260), +(87142, 'Juli', 1963, 'F', 259), +(87143, 'Nellie', 1963, 'F', 259), +(87144, 'Dorothea', 1963, 'F', 258), +(87145, 'Pennie', 1963, 'F', 258), +(87146, 'Robert', 1963, 'F', 256), +(87147, 'Roxann', 1963, 'F', 256), +(87148, 'Abigail', 1963, 'F', 255), +(87149, 'Antonia', 1963, 'F', 251), +(87150, 'Lesia', 1963, 'F', 251), +(87151, 'Lucia', 1963, 'F', 251), +(87152, 'Maryjo', 1963, 'F', 251), +(87153, 'Silvia', 1963, 'F', 251), +(87154, 'Suzan', 1963, 'F', 251), +(87155, 'Hilary', 1963, 'F', 250), +(87156, 'Roxanna', 1963, 'F', 250), +(87157, 'Mae', 1963, 'F', 246), +(87158, 'Selina', 1963, 'F', 246), +(87159, 'Minnie', 1963, 'F', 245), +(87160, 'Violet', 1963, 'F', 244), +(87161, 'Dona', 1963, 'F', 243), +(87162, 'Melodie', 1963, 'F', 243), +(87163, 'Cari', 1963, 'F', 242), +(87164, 'Renita', 1963, 'F', 242), +(87165, 'Sallie', 1963, 'F', 242), +(87166, 'Annemarie', 1963, 'F', 241), +(87167, 'Glenna', 1963, 'F', 241), +(87168, 'Reba', 1963, 'F', 240), +(87169, 'Loriann', 1963, 'F', 239), +(87170, 'Abby', 1963, 'F', 236), +(87171, 'Alexandra', 1963, 'F', 236), +(87172, 'David', 1963, 'F', 236), +(87173, 'Maribel', 1963, 'F', 236), +(87174, 'Kaye', 1963, 'F', 235), +(87175, 'Lila', 1963, 'F', 234), +(87176, 'Dorene', 1963, 'F', 233), +(87177, 'Gracie', 1963, 'F', 231), +(87178, 'Danna', 1963, 'F', 230), +(87179, 'Liza', 1963, 'F', 230), +(87180, 'Chandra', 1963, 'F', 229), +(87181, 'Ivette', 1963, 'F', 229), +(87182, 'Twila', 1963, 'F', 229), +(87183, 'Cristina', 1963, 'F', 227), +(87184, 'Teressa', 1963, 'F', 227), +(87185, 'Estella', 1963, 'F', 226), +(87186, 'Karrie', 1963, 'F', 226), +(87187, 'Josie', 1963, 'F', 223), +(87188, 'Tania', 1963, 'F', 223), +(87189, 'Libby', 1963, 'F', 221), +(87190, 'Terese', 1963, 'F', 221), +(87191, 'Raquel', 1963, 'F', 220), +(87192, 'Arleen', 1963, 'F', 219), +(87193, 'Brigitte', 1963, 'F', 219), +(87194, 'Cathryn', 1963, 'F', 219), +(87195, 'Valorie', 1963, 'F', 219), +(87196, 'Susanna', 1963, 'F', 218), +(87197, 'Vickey', 1963, 'F', 218), +(87198, 'Lawanda', 1963, 'F', 217), +(87199, 'Maritza', 1963, 'F', 217), +(87200, 'Aileen', 1963, 'F', 216), +(87201, 'Gabrielle', 1963, 'F', 216), +(87202, 'Valencia', 1963, 'F', 216), +(87203, 'Alfreda', 1963, 'F', 215), +(87204, 'Juliet', 1963, 'F', 215), +(87205, 'Missy', 1963, 'F', 215), +(87206, 'Janell', 1963, 'F', 213), +(87207, 'Zena', 1963, 'F', 213), +(87208, 'Hattie', 1963, 'F', 212), +(87209, 'Tiffany', 1963, 'F', 212), +(87210, 'Clarissa', 1963, 'F', 211), +(87211, 'Edie', 1963, 'F', 211), +(87212, 'Geralyn', 1963, 'F', 211), +(87213, 'Jewel', 1963, 'F', 211), +(87214, 'Lupe', 1963, 'F', 211), +(87215, 'Sybil', 1963, 'F', 211), +(87216, 'Dawna', 1963, 'F', 210), +(87217, 'Fay', 1963, 'F', 210), +(87218, 'Inez', 1963, 'F', 210), +(87219, 'Kate', 1963, 'F', 210), +(87220, 'Rosetta', 1963, 'F', 210), +(87221, 'Tana', 1963, 'F', 210), +(87222, 'Carmela', 1963, 'F', 207), +(87223, 'Marylou', 1963, 'F', 207), +(87224, 'Gigi', 1963, 'F', 206), +(87225, 'Latonya', 1963, 'F', 206), +(87226, 'Merry', 1963, 'F', 206), +(87227, 'Roxane', 1963, 'F', 206), +(87228, 'Selena', 1963, 'F', 206), +(87229, 'Adele', 1963, 'F', 204), +(87230, 'Georgette', 1963, 'F', 204), +(87231, 'Corrine', 1963, 'F', 203), +(87232, 'Ursula', 1963, 'F', 203), +(87233, 'Aimee', 1963, 'F', 202), +(87234, 'Jeanna', 1963, 'F', 202), +(87235, 'Simone', 1963, 'F', 202), +(87236, 'Venus', 1963, 'F', 201), +(87237, 'Fannie', 1963, 'F', 200), +(87238, 'Alana', 1963, 'F', 199), +(87239, 'Juliana', 1963, 'F', 199), +(87240, 'Stefanie', 1963, 'F', 199), +(87241, 'Suzy', 1963, 'F', 199), +(87242, 'Henrietta', 1963, 'F', 198), +(87243, 'Lyn', 1963, 'F', 198), +(87244, 'Starla', 1963, 'F', 198), +(87245, 'Ruthie', 1963, 'F', 196), +(87246, 'Teena', 1963, 'F', 196), +(87247, 'Annamarie', 1963, 'F', 195), +(87248, 'Ginny', 1963, 'F', 195), +(87249, 'Jeana', 1963, 'F', 195), +(87250, 'Rachael', 1963, 'F', 195), +(87251, 'Candi', 1963, 'F', 194), +(87252, 'Leanna', 1963, 'F', 194), +(87253, 'Lavonne', 1963, 'F', 193), +(87254, 'Susana', 1963, 'F', 193), +(87255, 'Bernadine', 1963, 'F', 192), +(87256, 'Gerri', 1963, 'F', 192), +(87257, 'Dori', 1963, 'F', 191), +(87258, 'Pattie', 1963, 'F', 191), +(87259, 'Rebekah', 1963, 'F', 191), +(87260, 'Corina', 1963, 'F', 189), +(87261, 'Dedra', 1963, 'F', 189), +(87262, 'Graciela', 1963, 'F', 189), +(87263, 'Karol', 1963, 'F', 189), +(87264, 'Rhoda', 1963, 'F', 189), +(87265, 'Elvira', 1963, 'F', 188), +(87266, 'Meredith', 1963, 'F', 188), +(87267, 'Angelica', 1963, 'F', 187), +(87268, 'Bettina', 1963, 'F', 186), +(87269, 'Charla', 1963, 'F', 186), +(87270, 'Kitty', 1963, 'F', 186), +(87271, 'Erma', 1963, 'F', 184), +(87272, 'Melba', 1963, 'F', 184), +(87273, 'Mercedes', 1963, 'F', 184), +(87274, 'Avis', 1963, 'F', 183), +(87275, 'Rosanna', 1963, 'F', 183), +(87276, 'Valeria', 1963, 'F', 183), +(87277, 'Tresa', 1963, 'F', 182), +(87278, 'Aida', 1963, 'F', 181), +(87279, 'Candice', 1963, 'F', 181), +(87280, 'Etta', 1963, 'F', 181), +(87281, 'Fonda', 1963, 'F', 181), +(87282, 'William', 1963, 'F', 181), +(87283, 'Dorinda', 1963, 'F', 180), +(87284, 'Ilene', 1963, 'F', 180), +(87285, 'Kathrine', 1963, 'F', 180), +(87286, 'Serena', 1963, 'F', 180), +(87287, 'Vonda', 1963, 'F', 180), +(87288, 'Meg', 1963, 'F', 179), +(87289, 'Minerva', 1963, 'F', 179), +(87290, 'Georgina', 1963, 'F', 178), +(87291, 'Dinah', 1963, 'F', 177), +(87292, 'Mamie', 1963, 'F', 177), +(87293, 'Sherie', 1963, 'F', 177), +(87294, 'Dara', 1963, 'F', 176), +(87295, 'Ivy', 1963, 'F', 176), +(87296, 'Lenore', 1963, 'F', 176), +(87297, 'Loraine', 1963, 'F', 176), +(87298, 'Maribeth', 1963, 'F', 176), +(87299, 'Mandy', 1963, 'F', 175), +(87300, 'Muriel', 1963, 'F', 175), +(87301, 'Sheree', 1963, 'F', 175), +(87302, 'Alexis', 1963, 'F', 173), +(87303, 'Carolina', 1963, 'F', 173), +(87304, 'Adriana', 1963, 'F', 172), +(87305, 'Debi', 1963, 'F', 172), +(87306, 'Barbie', 1963, 'F', 171), +(87307, 'Leila', 1963, 'F', 171), +(87308, 'Mara', 1963, 'F', 171), +(87309, 'Migdalia', 1963, 'F', 171), +(87310, 'Zelda', 1963, 'F', 171), +(87311, 'Madonna', 1963, 'F', 170), +(87312, 'Marisol', 1963, 'F', 170), +(87313, 'Antionette', 1963, 'F', 169), +(87314, 'Gertrude', 1963, 'F', 168), +(87315, 'Lela', 1963, 'F', 168), +(87316, 'Nelda', 1963, 'F', 168), +(87317, 'Camilla', 1963, 'F', 166), +(87318, 'Kandy', 1963, 'F', 166), +(87319, 'Kerrie', 1963, 'F', 166), +(87320, 'Milagros', 1963, 'F', 166), +(87321, 'Tori', 1963, 'F', 166), +(87322, 'Elissa', 1963, 'F', 165), +(87323, 'Lorinda', 1963, 'F', 165), +(87324, 'Eloise', 1963, 'F', 164), +(87325, 'Courtney', 1963, 'F', 163), +(87326, 'Shanna', 1963, 'F', 163), +(87327, 'Alecia', 1963, 'F', 162), +(87328, 'Bambi', 1963, 'F', 162), +(87329, 'Deedee', 1963, 'F', 162), +(87330, 'Latanya', 1963, 'F', 162), +(87331, 'Millie', 1963, 'F', 162), +(87332, 'Winifred', 1963, 'F', 162), +(87333, 'Alyson', 1963, 'F', 161), +(87334, 'Carey', 1963, 'F', 161), +(87335, 'Cherry', 1963, 'F', 161), +(87336, 'Lucretia', 1963, 'F', 161), +(87337, 'Cheryle', 1963, 'F', 160), +(87338, 'Karon', 1963, 'F', 160), +(87339, 'Melonie', 1963, 'F', 160), +(87340, 'Sharla', 1963, 'F', 160), +(87341, 'Consuelo', 1963, 'F', 159), +(87342, 'Gaye', 1963, 'F', 159), +(87343, 'Leesa', 1963, 'F', 159), +(87344, 'Cornelia', 1963, 'F', 158), +(87345, 'Katy', 1963, 'F', 158), +(87346, 'Letha', 1963, 'F', 158), +(87347, 'Magdalena', 1963, 'F', 158), +(87348, 'Ronna', 1963, 'F', 158), +(87349, 'Merri', 1963, 'F', 157), +(87350, 'Shiela', 1963, 'F', 157), +(87351, 'Kayla', 1963, 'F', 156), +(87352, 'Kandi', 1963, 'F', 155), +(87353, 'Louann', 1963, 'F', 155), +(87354, 'Maryjane', 1963, 'F', 155), +(87355, 'Suzie', 1963, 'F', 155), +(87356, 'Sydney', 1963, 'F', 155), +(87357, 'Miranda', 1963, 'F', 154), +(87358, 'Richard', 1963, 'F', 154), +(87359, 'Aurora', 1963, 'F', 153), +(87360, 'Mariann', 1963, 'F', 153), +(87361, 'Chrystal', 1963, 'F', 152), +(87362, 'Cyndi', 1963, 'F', 152), +(87363, 'Francis', 1963, 'F', 152), +(87364, 'Shirl', 1963, 'F', 152), +(87365, 'Dolly', 1963, 'F', 151), +(87366, 'Krystal', 1963, 'F', 151), +(87367, 'Tamie', 1963, 'F', 151), +(87368, 'Beatriz', 1963, 'F', 150), +(87369, 'Cathie', 1963, 'F', 150), +(87370, 'Collette', 1963, 'F', 150), +(87371, 'Treva', 1963, 'F', 150), +(87372, 'Annetta', 1963, 'F', 149), +(87373, 'Brooke', 1963, 'F', 149), +(87374, 'Elva', 1963, 'F', 149), +(87375, 'Trena', 1963, 'F', 149), +(87376, 'Esmeralda', 1963, 'F', 148), +(87377, 'Hillary', 1963, 'F', 148), +(87378, 'Margot', 1963, 'F', 148), +(87379, 'Tommie', 1963, 'F', 147), +(87380, 'Hannah', 1963, 'F', 146), +(87381, 'Louisa', 1963, 'F', 146), +(87382, 'Marty', 1963, 'F', 146), +(87383, 'Carmella', 1963, 'F', 145), +(87384, 'Lesli', 1963, 'F', 145), +(87385, 'Lula', 1963, 'F', 145), +(87386, 'Marilee', 1963, 'F', 145), +(87387, 'Portia', 1963, 'F', 145), +(87388, 'Roseanne', 1963, 'F', 145), +(87389, 'Marva', 1963, 'F', 144), +(87390, 'Moira', 1963, 'F', 144), +(87391, 'Evangeline', 1963, 'F', 143), +(87392, 'Jacquelin', 1963, 'F', 143), +(87393, 'Joellen', 1963, 'F', 143), +(87394, 'Juliann', 1963, 'F', 143), +(87395, 'Lanette', 1963, 'F', 143), +(87396, 'Noemi', 1963, 'F', 143), +(87397, 'Velvet', 1963, 'F', 143), +(87398, 'Marietta', 1963, 'F', 142), +(87399, 'Aleta', 1963, 'F', 140), +(87400, 'Ester', 1963, 'F', 140), +(87401, 'Evette', 1963, 'F', 140), +(87402, 'Joanie', 1963, 'F', 140), +(87403, 'Juana', 1963, 'F', 140), +(87404, 'Suzanna', 1963, 'F', 140), +(87405, 'Jena', 1963, 'F', 139), +(87406, 'Josefina', 1963, 'F', 139), +(87407, 'Rosario', 1963, 'F', 138), +(87408, 'Brigette', 1963, 'F', 137), +(87409, 'Charles', 1963, 'F', 137), +(87410, 'Ina', 1963, 'F', 137), +(87411, 'Joseph', 1963, 'F', 137), +(87412, 'Twyla', 1963, 'F', 137), +(87413, 'Carleen', 1963, 'F', 136), +(87414, 'Daria', 1963, 'F', 136), +(87415, 'Juliette', 1963, 'F', 136), +(87416, 'Penni', 1963, 'F', 136), +(87417, 'Thomas', 1963, 'F', 136), +(87418, 'Althea', 1963, 'F', 135), +(87419, 'Katheryn', 1963, 'F', 135), +(87420, 'Mimi', 1963, 'F', 135), +(87421, 'Sadie', 1963, 'F', 135), +(87422, 'Blanche', 1963, 'F', 134), +(87423, 'Catharine', 1963, 'F', 134), +(87424, 'Debbi', 1963, 'F', 134), +(87425, 'Earlene', 1963, 'F', 134), +(87426, 'Tamala', 1963, 'F', 134), +(87427, 'Deeann', 1963, 'F', 133), +(87428, 'Cassie', 1963, 'F', 132), +(87429, 'Darleen', 1963, 'F', 132), +(87430, 'Doretha', 1963, 'F', 132), +(87431, 'Fran', 1963, 'F', 132), +(87432, 'Rona', 1963, 'F', 132), +(87433, 'Shana', 1963, 'F', 132), +(87434, 'Janeen', 1963, 'F', 131), +(87435, 'Lise', 1963, 'F', 131), +(87436, 'Tia', 1963, 'F', 131), +(87437, 'Bonny', 1963, 'F', 130), +(87438, 'Debrah', 1963, 'F', 130), +(87439, 'Delois', 1963, 'F', 130), +(87440, 'Donita', 1963, 'F', 130), +(87441, 'Lona', 1963, 'F', 130), +(87442, 'Athena', 1963, 'F', 129), +(87443, 'Callie', 1963, 'F', 129), +(87444, 'Lisha', 1963, 'F', 129), +(87445, 'Mollie', 1963, 'F', 129), +(87446, 'Roxie', 1963, 'F', 129), +(87447, 'Sherrill', 1963, 'F', 129), +(87448, 'Celestine', 1963, 'F', 128), +(87449, 'Delisa', 1963, 'F', 128), +(87450, 'Francesca', 1963, 'F', 128), +(87451, 'Kyle', 1963, 'F', 128), +(87452, 'Vikki', 1963, 'F', 127), +(87453, 'Babette', 1963, 'F', 126), +(87454, 'Jayme', 1963, 'F', 126), +(87455, 'Maricela', 1963, 'F', 126), +(87456, 'Matilda', 1963, 'F', 126), +(87457, 'Sherryl', 1963, 'F', 126), +(87458, 'Alyssa', 1963, 'F', 125), +(87459, 'Germaine', 1963, 'F', 125), +(87460, 'Mavis', 1963, 'F', 125), +(87461, 'Anastasia', 1963, 'F', 124), +(87462, 'Angelita', 1963, 'F', 124), +(87463, 'Carmel', 1963, 'F', 124), +(87464, 'Essie', 1963, 'F', 124), +(87465, 'Lily', 1963, 'F', 124), +(87466, 'Adrianne', 1963, 'F', 123), +(87467, 'Charisse', 1963, 'F', 123), +(87468, 'Corinna', 1963, 'F', 123), +(87469, 'Estelle', 1963, 'F', 123), +(87470, 'Monika', 1963, 'F', 123), +(87471, 'Lissa', 1963, 'F', 122), +(87472, 'Mabel', 1963, 'F', 122), +(87473, 'Michell', 1963, 'F', 122), +(87474, 'Neva', 1963, 'F', 122), +(87475, 'Rowena', 1963, 'F', 122), +(87476, 'Tonda', 1963, 'F', 122), +(87477, 'Adrian', 1963, 'F', 121), +(87478, 'Cherri', 1963, 'F', 121), +(87479, 'Fawn', 1963, 'F', 121), +(87480, 'Kevin', 1963, 'F', 121), +(87481, 'Mark', 1963, 'F', 121), +(87482, 'Richelle', 1963, 'F', 121), +(87483, 'Jeanmarie', 1963, 'F', 120), +(87484, 'Renea', 1963, 'F', 120), +(87485, 'Rhea', 1963, 'F', 120), +(87486, 'Cary', 1963, 'F', 119), +(87487, 'Cecile', 1963, 'F', 119), +(87488, 'Dottie', 1963, 'F', 119), +(87489, 'Jerry', 1963, 'F', 119), +(87490, 'Nanci', 1963, 'F', 119), +(87491, 'Risa', 1963, 'F', 119), +(87492, 'Machelle', 1963, 'F', 118), +(87493, 'Nola', 1963, 'F', 118), +(87494, 'Nona', 1963, 'F', 118), +(87495, 'Randy', 1963, 'F', 118), +(87496, 'Romona', 1963, 'F', 118), +(87497, 'Darci', 1963, 'F', 117), +(87498, 'Jacque', 1963, 'F', 117), +(87499, 'Jimmie', 1963, 'F', 117), +(87500, 'Lilly', 1963, 'F', 117), +(87501, 'Lorelei', 1963, 'F', 117), +(87502, 'Marissa', 1963, 'F', 117), +(87503, 'Thea', 1963, 'F', 117), +(87504, 'Loreen', 1963, 'F', 116), +(87505, 'Scarlett', 1963, 'F', 116), +(87506, 'Sharyn', 1963, 'F', 116), +(87507, 'Earnestine', 1963, 'F', 115), +(87508, 'Esperanza', 1963, 'F', 115), +(87509, 'Jaime', 1963, 'F', 115), +(87510, 'Jerilyn', 1963, 'F', 115), +(87511, 'Leisha', 1963, 'F', 115), +(87512, 'Cathrine', 1963, 'F', 114), +(87513, 'Madelyn', 1963, 'F', 114), +(87514, 'Melony', 1963, 'F', 114), +(87515, 'Sharyl', 1963, 'F', 114), +(87516, 'Shirlene', 1963, 'F', 114), +(87517, 'Lavern', 1963, 'F', 113), +(87518, 'Lina', 1963, 'F', 113), +(87519, 'Nan', 1963, 'F', 113), +(87520, 'Ruthann', 1963, 'F', 113), +(87521, 'Joleen', 1963, 'F', 112), +(87522, 'Nena', 1963, 'F', 112), +(87523, 'Ora', 1963, 'F', 112), +(87524, 'Petra', 1963, 'F', 112), +(87525, 'Trudi', 1963, 'F', 112), +(87526, 'Anthony', 1963, 'F', 111), +(87527, 'Marti', 1963, 'F', 111), +(87528, 'Millicent', 1963, 'F', 111), +(87529, 'Tari', 1963, 'F', 111), +(87530, 'Aretha', 1963, 'F', 110), +(87531, 'Hollie', 1963, 'F', 110), +(87532, 'Lizzie', 1963, 'F', 110), +(87533, 'May', 1963, 'F', 110), +(87534, 'Myrtle', 1963, 'F', 110), +(87535, 'Nettie', 1963, 'F', 110), +(87536, 'Adela', 1963, 'F', 109), +(87537, 'Gilda', 1963, 'F', 109), +(87538, 'Holli', 1963, 'F', 109), +(87539, 'Julianna', 1963, 'F', 109), +(87540, 'Lizabeth', 1963, 'F', 109), +(87541, 'Ashley', 1963, 'F', 108), +(87542, 'Fern', 1963, 'F', 108), +(87543, 'Jerrie', 1963, 'F', 108), +(87544, 'Karri', 1963, 'F', 108), +(87545, 'Princess', 1963, 'F', 108), +(87546, 'Stacia', 1963, 'F', 108), +(87547, 'Veda', 1963, 'F', 108), +(87548, 'Vernita', 1963, 'F', 108), +(87549, 'Carri', 1963, 'F', 107), +(87550, 'Cathi', 1963, 'F', 107), +(87551, 'Delinda', 1963, 'F', 107), +(87552, 'Sophie', 1963, 'F', 107), +(87553, 'Tracee', 1963, 'F', 107), +(87554, 'Venita', 1963, 'F', 107), +(87555, 'Earline', 1963, 'F', 106), +(87556, 'Eula', 1963, 'F', 106), +(87557, 'Jewell', 1963, 'F', 106), +(87558, 'Nedra', 1963, 'F', 106), +(87559, 'Phoebe', 1963, 'F', 106), +(87560, 'Tammara', 1963, 'F', 106), +(87561, 'Angelique', 1963, 'F', 105), +(87562, 'Beverley', 1963, 'F', 105), +(87563, 'Janel', 1963, 'F', 105), +(87564, 'Lanita', 1963, 'F', 105), +(87565, 'Mable', 1963, 'F', 105), +(87566, 'Barbra', 1963, 'F', 104), +(87567, 'Cherrie', 1963, 'F', 104), +(87568, 'Loree', 1963, 'F', 104), +(87569, 'Mia', 1963, 'F', 104), +(87570, 'Natasha', 1963, 'F', 104), +(87571, 'Carmelita', 1963, 'F', 103), +(87572, 'Karie', 1963, 'F', 103), +(87573, 'Kimberlie', 1963, 'F', 103), +(87574, 'Linette', 1963, 'F', 103), +(87575, 'Madeleine', 1963, 'F', 103), +(87576, 'Mechelle', 1963, 'F', 103), +(87577, 'Noelle', 1963, 'F', 103), +(87578, 'Octavia', 1963, 'F', 103), +(87579, 'Angeline', 1963, 'F', 102), +(87580, 'Clarice', 1963, 'F', 102), +(87581, 'Darline', 1963, 'F', 102), +(87582, 'Demetria', 1963, 'F', 102), +(87583, 'Gwyn', 1963, 'F', 102), +(87584, 'Harriett', 1963, 'F', 102), +(87585, 'Jacki', 1963, 'F', 102), +(87586, 'Sabra', 1963, 'F', 102), +(87587, 'Timothy', 1963, 'F', 102), +(87588, 'Troy', 1963, 'F', 102), +(87589, 'Bette', 1963, 'F', 101), +(87590, 'Brigid', 1963, 'F', 101), +(87591, 'Concetta', 1963, 'F', 101), +(87592, 'Iva', 1963, 'F', 101), +(87593, 'Justina', 1963, 'F', 101), +(87594, 'Melva', 1963, 'F', 101), +(87595, 'Reva', 1963, 'F', 101), +(87596, 'Bettie', 1963, 'F', 100), +(87597, 'Elaina', 1963, 'F', 100), +(87598, 'Gisele', 1963, 'F', 100), +(87599, 'Lindy', 1963, 'F', 100), +(87600, 'Sheena', 1963, 'F', 100), +(87601, 'Yolonda', 1963, 'F', 100), +(87602, 'Michael', 1963, 'M', 83795), +(87603, 'John', 1963, 'M', 78647), +(87604, 'David', 1963, 'M', 78482), +(87605, 'James', 1963, 'M', 71332), +(87606, 'Robert', 1963, 'M', 70024), +(87607, 'Mark', 1963, 'M', 49365), +(87608, 'William', 1963, 'M', 44481), +(87609, 'Richard', 1963, 'M', 40780), +(87610, 'Thomas', 1963, 'M', 35509), +(87611, 'Jeffrey', 1963, 'M', 31722), +(87612, 'Kevin', 1963, 'M', 30625), +(87613, 'Scott', 1963, 'M', 30421), +(87614, 'Joseph', 1963, 'M', 30100), +(87615, 'Steven', 1963, 'M', 29360), +(87616, 'Timothy', 1963, 'M', 27203), +(87617, 'Charles', 1963, 'M', 26799), +(87618, 'Paul', 1963, 'M', 26685), +(87619, 'Kenneth', 1963, 'M', 25247), +(87620, 'Daniel', 1963, 'M', 24834), +(87621, 'Brian', 1963, 'M', 24126), +(87622, 'Gregory', 1963, 'M', 21434), +(87623, 'Anthony', 1963, 'M', 20249), +(87624, 'Ronald', 1963, 'M', 19777), +(87625, 'Gary', 1963, 'M', 18922), +(87626, 'Donald', 1963, 'M', 18915), +(87627, 'Christopher', 1963, 'M', 18365), +(87628, 'Edward', 1963, 'M', 15326), +(87629, 'Douglas', 1963, 'M', 15102), +(87630, 'Stephen', 1963, 'M', 14994), +(87631, 'Todd', 1963, 'M', 14797), +(87632, 'Eric', 1963, 'M', 13284), +(87633, 'Terry', 1963, 'M', 12460), +(87634, 'Keith', 1963, 'M', 12241), +(87635, 'George', 1963, 'M', 12088), +(87636, 'Patrick', 1963, 'M', 12067), +(87637, 'Larry', 1963, 'M', 11676), +(87638, 'Randy', 1963, 'M', 10535), +(87639, 'Jerry', 1963, 'M', 10192), +(87640, 'Dennis', 1963, 'M', 9836), +(87641, 'Peter', 1963, 'M', 9624), +(87642, 'Frank', 1963, 'M', 9533), +(87643, 'Andrew', 1963, 'M', 9523), +(87644, 'Bruce', 1963, 'M', 9291), +(87645, 'Mike', 1963, 'M', 9044), +(87646, 'Raymond', 1963, 'M', 8788), +(87647, 'Jeffery', 1963, 'M', 8487), +(87648, 'Ricky', 1963, 'M', 8111), +(87649, 'Jeff', 1963, 'M', 8098), +(87650, 'Steve', 1963, 'M', 8046), +(87651, 'Matthew', 1963, 'M', 8044), +(87652, 'Craig', 1963, 'M', 7907), +(87653, 'Tony', 1963, 'M', 7881), +(87654, 'Roger', 1963, 'M', 7756), +(87655, 'Carl', 1963, 'M', 7133), +(87656, 'Danny', 1963, 'M', 7100), +(87657, 'Alan', 1963, 'M', 6936), +(87658, 'Russell', 1963, 'M', 6705), +(87659, 'Joe', 1963, 'M', 6382), +(87660, 'Chris', 1963, 'M', 6344), +(87661, 'Gerald', 1963, 'M', 6158), +(87662, 'Vincent', 1963, 'M', 6155), +(87663, 'Martin', 1963, 'M', 6079), +(87664, 'Wayne', 1963, 'M', 6034), +(87665, 'Troy', 1963, 'M', 5975), +(87666, 'Glenn', 1963, 'M', 5974), +(87667, 'Randall', 1963, 'M', 5974), +(87668, 'Barry', 1963, 'M', 5961), +(87669, 'Lawrence', 1963, 'M', 5710), +(87670, 'Dale', 1963, 'M', 5694), +(87671, 'Phillip', 1963, 'M', 5646), +(87672, 'Johnny', 1963, 'M', 5421), +(87673, 'Curtis', 1963, 'M', 5370), +(87674, 'Bryan', 1963, 'M', 5265), +(87675, 'Billy', 1963, 'M', 5235), +(87676, 'Bobby', 1963, 'M', 5213), +(87677, 'Rodney', 1963, 'M', 5188), +(87678, 'Walter', 1963, 'M', 5067), +(87679, 'Jimmy', 1963, 'M', 5040), +(87680, 'Tim', 1963, 'M', 5016), +(87681, 'Darryl', 1963, 'M', 5007), +(87682, 'Greg', 1963, 'M', 4854), +(87683, 'Bradley', 1963, 'M', 4769), +(87684, 'Philip', 1963, 'M', 4759), +(87685, 'Jon', 1963, 'M', 4754), +(87686, 'Jay', 1963, 'M', 4723), +(87687, 'Dean', 1963, 'M', 4616), +(87688, 'Samuel', 1963, 'M', 4519), +(87689, 'Jonathan', 1963, 'M', 4476), +(87690, 'Roy', 1963, 'M', 4437), +(87691, 'Allen', 1963, 'M', 4344), +(87692, 'Arthur', 1963, 'M', 4277), +(87693, 'Jim', 1963, 'M', 4235), +(87694, 'Willie', 1963, 'M', 4194), +(87695, 'Henry', 1963, 'M', 4188), +(87696, 'Harold', 1963, 'M', 4097), +(87697, 'Darrell', 1963, 'M', 4094), +(87698, 'Victor', 1963, 'M', 4058), +(87699, 'Jose', 1963, 'M', 4017), +(87700, 'Ralph', 1963, 'M', 3933), +(87701, 'Albert', 1963, 'M', 3891), +(87702, 'Ronnie', 1963, 'M', 3824), +(87703, 'Jack', 1963, 'M', 3817), +(87704, 'Tom', 1963, 'M', 3698), +(87705, 'Louis', 1963, 'M', 3623), +(87706, 'Stanley', 1963, 'M', 3541), +(87707, 'Micheal', 1963, 'M', 3533), +(87708, 'Tommy', 1963, 'M', 3494), +(87709, 'Shawn', 1963, 'M', 3462), +(87710, 'Eddie', 1963, 'M', 3353), +(87711, 'Joel', 1963, 'M', 3236), +(87712, 'Eugene', 1963, 'M', 3220), +(87713, 'Rick', 1963, 'M', 3219), +(87714, 'Bill', 1963, 'M', 3199), +(87715, 'Howard', 1963, 'M', 3161), +(87716, 'Dwayne', 1963, 'M', 3139), +(87717, 'Kurt', 1963, 'M', 3127), +(87718, 'Frederick', 1963, 'M', 3126), +(87719, 'Leonard', 1963, 'M', 3046), +(87720, 'Lee', 1963, 'M', 3020), +(87721, 'Marvin', 1963, 'M', 2977), +(87722, 'Tracy', 1963, 'M', 2926), +(87723, 'Ernest', 1963, 'M', 2908), +(87724, 'Marc', 1963, 'M', 2897), +(87725, 'Dan', 1963, 'M', 2826), +(87726, 'Brent', 1963, 'M', 2814), +(87727, 'Kelly', 1963, 'M', 2728), +(87728, 'Mitchell', 1963, 'M', 2711), +(87729, 'Jerome', 1963, 'M', 2665), +(87730, 'Brett', 1963, 'M', 2609), +(87731, 'Duane', 1963, 'M', 2596), +(87732, 'Ray', 1963, 'M', 2582), +(87733, 'Reginald', 1963, 'M', 2572), +(87734, 'Melvin', 1963, 'M', 2547), +(87735, 'Fred', 1963, 'M', 2529), +(87736, 'Don', 1963, 'M', 2524), +(87737, 'Karl', 1963, 'M', 2513), +(87738, 'Harry', 1963, 'M', 2495), +(87739, 'Kirk', 1963, 'M', 2484), +(87740, 'Norman', 1963, 'M', 2483), +(87741, 'Kent', 1963, 'M', 2402), +(87742, 'Calvin', 1963, 'M', 2400), +(87743, 'Theodore', 1963, 'M', 2385), +(87744, 'Glen', 1963, 'M', 2359), +(87745, 'Benjamin', 1963, 'M', 2350), +(87746, 'Adam', 1963, 'M', 2342), +(87747, 'Brad', 1963, 'M', 2276), +(87748, 'Juan', 1963, 'M', 2247), +(87749, 'Edwin', 1963, 'M', 2239), +(87750, 'Jesse', 1963, 'M', 2230), +(87751, 'Sean', 1963, 'M', 2202), +(87752, 'Clifford', 1963, 'M', 2198), +(87753, 'Warren', 1963, 'M', 2185), +(87754, 'Francis', 1963, 'M', 2172), +(87755, 'Earl', 1963, 'M', 2158), +(87756, 'Nicholas', 1963, 'M', 2138), +(87757, 'Carlos', 1963, 'M', 2111), +(87758, 'Wesley', 1963, 'M', 2096), +(87759, 'Darren', 1963, 'M', 2084), +(87760, 'Gordon', 1963, 'M', 2079), +(87761, 'Aaron', 1963, 'M', 2076), +(87762, 'Dave', 1963, 'M', 1998), +(87763, 'Alfred', 1963, 'M', 1989), +(87764, 'Clarence', 1963, 'M', 1961), +(87765, 'Derrick', 1963, 'M', 1945), +(87766, 'Bernard', 1963, 'M', 1943), +(87767, 'Lance', 1963, 'M', 1874), +(87768, 'Bob', 1963, 'M', 1846), +(87769, 'Gregg', 1963, 'M', 1750), +(87770, 'Guy', 1963, 'M', 1743), +(87771, 'Kerry', 1963, 'M', 1720), +(87772, 'Perry', 1963, 'M', 1713), +(87773, 'Andre', 1963, 'M', 1702), +(87774, 'Antonio', 1963, 'M', 1698), +(87775, 'Doug', 1963, 'M', 1690), +(87776, 'Rickey', 1963, 'M', 1681), +(87777, 'Leroy', 1963, 'M', 1640), +(87778, 'Derek', 1963, 'M', 1638), +(87779, 'Ken', 1963, 'M', 1634), +(87780, 'Kyle', 1963, 'M', 1633), +(87781, 'Gilbert', 1963, 'M', 1628), +(87782, 'Dana', 1963, 'M', 1621), +(87783, 'Manuel', 1963, 'M', 1612), +(87784, 'Tyrone', 1963, 'M', 1611), +(87785, 'Daryl', 1963, 'M', 1609), +(87786, 'Ron', 1963, 'M', 1591), +(87787, 'Marty', 1963, 'M', 1588), +(87788, 'Stuart', 1963, 'M', 1586), +(87789, 'Ted', 1963, 'M', 1578), +(87790, 'Lonnie', 1963, 'M', 1576), +(87791, 'Vernon', 1963, 'M', 1575), +(87792, 'Gene', 1963, 'M', 1562), +(87793, 'Leslie', 1963, 'M', 1554), +(87794, 'Lloyd', 1963, 'M', 1551), +(87795, 'Nathan', 1963, 'M', 1544), +(87796, 'Franklin', 1963, 'M', 1523), +(87797, 'Jason', 1963, 'M', 1507), +(87798, 'Herbert', 1963, 'M', 1506), +(87799, 'Alvin', 1963, 'M', 1500), +(87800, 'Maurice', 1963, 'M', 1490), +(87801, 'Andy', 1963, 'M', 1487), +(87802, 'Leon', 1963, 'M', 1475), +(87803, 'Luis', 1963, 'M', 1456), +(87804, 'Kenny', 1963, 'M', 1452), +(87805, 'Dwight', 1963, 'M', 1450), +(87806, 'Neil', 1963, 'M', 1448), +(87807, 'Wade', 1963, 'M', 1405), +(87808, 'Joey', 1963, 'M', 1385), +(87809, 'Timmy', 1963, 'M', 1376), +(87810, 'Robin', 1963, 'M', 1358), +(87811, 'Kelvin', 1963, 'M', 1332), +(87812, 'Ricardo', 1963, 'M', 1323), +(87813, 'Marcus', 1963, 'M', 1322), +(87814, 'Mario', 1963, 'M', 1317), +(87815, 'Alex', 1963, 'M', 1308), +(87816, 'Alexander', 1963, 'M', 1308), +(87817, 'Floyd', 1963, 'M', 1296), +(87818, 'Lewis', 1963, 'M', 1282), +(87819, 'Ruben', 1963, 'M', 1258), +(87820, 'Byron', 1963, 'M', 1243), +(87821, 'Allan', 1963, 'M', 1223), +(87822, 'Charlie', 1963, 'M', 1164), +(87823, 'Donnie', 1963, 'M', 1155), +(87824, 'Arnold', 1963, 'M', 1141), +(87825, 'Ross', 1963, 'M', 1126), +(87826, 'Jimmie', 1963, 'M', 1119), +(87827, 'Lester', 1963, 'M', 1103), +(87828, 'Neal', 1963, 'M', 1093), +(87829, 'Wendell', 1963, 'M', 1077), +(87830, 'Gerard', 1963, 'M', 1076), +(87831, 'Roland', 1963, 'M', 1070), +(87832, 'Jackie', 1963, 'M', 1058), +(87833, 'Roberto', 1963, 'M', 1045), +(87834, 'Nathaniel', 1963, 'M', 1026), +(87835, 'Clayton', 1963, 'M', 1022), +(87836, 'Oscar', 1963, 'M', 1019), +(87837, 'Sam', 1963, 'M', 1017), +(87838, 'Johnnie', 1963, 'M', 1016), +(87839, 'Leo', 1963, 'M', 1016), +(87840, 'Terrence', 1963, 'M', 1015), +(87841, 'Clyde', 1963, 'M', 1004), +(87842, 'Jesus', 1963, 'M', 996), +(87843, 'Milton', 1963, 'M', 991), +(87844, 'Roderick', 1963, 'M', 990), +(87845, 'Clinton', 1963, 'M', 985), +(87846, 'Rex', 1963, 'M', 982), +(87847, 'Nelson', 1963, 'M', 979), +(87848, 'Chuck', 1963, 'M', 974), +(87849, 'Hector', 1963, 'M', 961), +(87850, 'Ben', 1963, 'M', 946), +(87851, 'Randal', 1963, 'M', 916), +(87852, 'Randolph', 1963, 'M', 915), +(87853, 'Freddie', 1963, 'M', 913), +(87854, 'Matt', 1963, 'M', 906), +(87855, 'Jessie', 1963, 'M', 903), +(87856, 'Jamie', 1963, 'M', 901), +(87857, 'Garry', 1963, 'M', 895), +(87858, 'Harvey', 1963, 'M', 890), +(87859, 'Travis', 1963, 'M', 886), +(87860, 'Robbie', 1963, 'M', 884), +(87861, 'Miguel', 1963, 'M', 882), +(87862, 'Nick', 1963, 'M', 872), +(87863, 'Raul', 1963, 'M', 851), +(87864, 'Shane', 1963, 'M', 850), +(87865, 'Kim', 1963, 'M', 849), +(87866, 'Herman', 1963, 'M', 845), +(87867, 'Cecil', 1963, 'M', 822), +(87868, 'Geoffrey', 1963, 'M', 822), +(87869, 'Fredrick', 1963, 'M', 812), +(87870, 'Terrance', 1963, 'M', 811), +(87871, 'Terence', 1963, 'M', 809), +(87872, 'Ramon', 1963, 'M', 799), +(87873, 'Hugh', 1963, 'M', 797), +(87874, 'Clifton', 1963, 'M', 790), +(87875, 'Bret', 1963, 'M', 788), +(87876, 'Marshall', 1963, 'M', 782), +(87877, 'Grant', 1963, 'M', 781), +(87878, 'Angelo', 1963, 'M', 780), +(87879, 'Francisco', 1963, 'M', 775), +(87880, 'Cary', 1963, 'M', 765), +(87881, 'Carlton', 1963, 'M', 762), +(87882, 'Damon', 1963, 'M', 751), +(87883, 'Claude', 1963, 'M', 740), +(87884, 'Pat', 1963, 'M', 737), +(87885, 'Jody', 1963, 'M', 734), +(87886, 'Chester', 1963, 'M', 733), +(87887, 'Clark', 1963, 'M', 733), +(87888, 'Frankie', 1963, 'M', 733), +(87889, 'Lynn', 1963, 'M', 716), +(87890, 'Rene', 1963, 'M', 715), +(87891, 'Darin', 1963, 'M', 712), +(87892, 'Rudy', 1963, 'M', 707), +(87893, 'Sammy', 1963, 'M', 707), +(87894, 'Everett', 1963, 'M', 705); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(87895, 'Cedric', 1963, 'M', 694), +(87896, 'Loren', 1963, 'M', 692), +(87897, 'Orlando', 1963, 'M', 678), +(87898, 'Jorge', 1963, 'M', 676), +(87899, 'Christian', 1963, 'M', 673), +(87900, 'Erik', 1963, 'M', 673), +(87901, 'Sidney', 1963, 'M', 672), +(87902, 'Bart', 1963, 'M', 659), +(87903, 'Wallace', 1963, 'M', 658), +(87904, 'Ivan', 1963, 'M', 656), +(87905, 'Clay', 1963, 'M', 653), +(87906, 'Adrian', 1963, 'M', 652), +(87907, 'Chad', 1963, 'M', 651), +(87908, 'Edgar', 1963, 'M', 651), +(87909, 'Angel', 1963, 'M', 649), +(87910, 'Dewayne', 1963, 'M', 648), +(87911, 'Myron', 1963, 'M', 647), +(87912, 'Jaime', 1963, 'M', 645), +(87913, 'Ryan', 1963, 'M', 645), +(87914, 'Pedro', 1963, 'M', 642), +(87915, 'Armando', 1963, 'M', 636), +(87916, 'Benny', 1963, 'M', 636), +(87917, 'Lorenzo', 1963, 'M', 634), +(87918, 'Curt', 1963, 'M', 631), +(87919, 'Shannon', 1963, 'M', 626), +(87920, 'Bradford', 1963, 'M', 613), +(87921, 'Felix', 1963, 'M', 613), +(87922, 'Pete', 1963, 'M', 608), +(87923, 'Fernando', 1963, 'M', 598), +(87924, 'Vince', 1963, 'M', 594), +(87925, 'Monte', 1963, 'M', 592), +(87926, 'Morris', 1963, 'M', 591), +(87927, 'Javier', 1963, 'M', 585), +(87928, 'Darrel', 1963, 'M', 584), +(87929, 'Gabriel', 1963, 'M', 581), +(87930, 'Lyle', 1963, 'M', 574), +(87931, 'Blake', 1963, 'M', 569), +(87932, 'Salvatore', 1963, 'M', 565), +(87933, 'Virgil', 1963, 'M', 560), +(87934, 'Tod', 1963, 'M', 559), +(87935, 'Rob', 1963, 'M', 552), +(87936, 'Max', 1963, 'M', 548), +(87937, 'Teddy', 1963, 'M', 545), +(87938, 'Rafael', 1963, 'M', 531), +(87939, 'Stewart', 1963, 'M', 526), +(87940, 'Rocky', 1963, 'M', 522), +(87941, 'Bennie', 1963, 'M', 519), +(87942, 'Otis', 1963, 'M', 511), +(87943, 'Scot', 1963, 'M', 506), +(87944, 'Bryant', 1963, 'M', 505), +(87945, 'Ed', 1963, 'M', 505), +(87946, 'Kris', 1963, 'M', 505), +(87947, 'Laurence', 1963, 'M', 504), +(87948, 'Justin', 1963, 'M', 503), +(87949, 'Dominic', 1963, 'M', 501), +(87950, 'Mickey', 1963, 'M', 499), +(87951, 'Rusty', 1963, 'M', 498), +(87952, 'Willard', 1963, 'M', 497), +(87953, 'Jacob', 1963, 'M', 492), +(87954, 'Trent', 1963, 'M', 488), +(87955, 'Malcolm', 1963, 'M', 486), +(87956, 'Shaun', 1963, 'M', 479), +(87957, 'Preston', 1963, 'M', 478), +(87958, 'Phil', 1963, 'M', 474), +(87959, 'Edmund', 1963, 'M', 472), +(87960, 'Julian', 1963, 'M', 472), +(87961, 'Stacy', 1963, 'M', 471), +(87962, 'Isaac', 1963, 'M', 470), +(87963, 'Arturo', 1963, 'M', 468), +(87964, 'Earnest', 1963, 'M', 466), +(87965, 'Julius', 1963, 'M', 466), +(87966, 'Kendall', 1963, 'M', 466), +(87967, 'Alfredo', 1963, 'M', 461), +(87968, 'Alonzo', 1963, 'M', 461), +(87969, 'Alberto', 1963, 'M', 460), +(87970, 'Marion', 1963, 'M', 459), +(87971, 'Alton', 1963, 'M', 458), +(87972, 'Evan', 1963, 'M', 458), +(87973, 'Monty', 1963, 'M', 458), +(87974, 'Vance', 1963, 'M', 457), +(87975, 'Sylvester', 1963, 'M', 455), +(87976, 'Jeffry', 1963, 'M', 451), +(87977, 'Sherman', 1963, 'M', 449), +(87978, 'Van', 1963, 'M', 448), +(87979, 'Eduardo', 1963, 'M', 445), +(87980, 'Luther', 1963, 'M', 441), +(87981, 'Roosevelt', 1963, 'M', 441), +(87982, 'Stephan', 1963, 'M', 436), +(87983, 'Delbert', 1963, 'M', 435), +(87984, 'Stacey', 1963, 'M', 432), +(87985, 'Corey', 1963, 'M', 428), +(87986, 'Dexter', 1963, 'M', 426), +(87987, 'Drew', 1963, 'M', 422), +(87988, 'Jerald', 1963, 'M', 422), +(87989, 'Luke', 1963, 'M', 422), +(87990, 'Stevie', 1963, 'M', 421), +(87991, 'Ira', 1963, 'M', 415), +(87992, 'Mathew', 1963, 'M', 414), +(87993, 'Rickie', 1963, 'M', 414), +(87994, 'Rodger', 1963, 'M', 413), +(87995, 'Archie', 1963, 'M', 412), +(87996, 'Enrique', 1963, 'M', 412), +(87997, 'Spencer', 1963, 'M', 411), +(87998, 'Elmer', 1963, 'M', 410), +(87999, 'Rudolph', 1963, 'M', 410), +(88000, 'Clint', 1963, 'M', 407), +(88001, 'Rod', 1963, 'M', 405), +(88002, 'Julio', 1963, 'M', 403), +(88003, 'Forrest', 1963, 'M', 402), +(88004, 'Sheldon', 1963, 'M', 399), +(88005, 'Alfonso', 1963, 'M', 397), +(88006, 'Cory', 1963, 'M', 395), +(88007, 'Colin', 1963, 'M', 392), +(88008, 'Blaine', 1963, 'M', 390), +(88009, 'Toby', 1963, 'M', 389), +(88010, 'Robby', 1963, 'M', 388), +(88011, 'Rory', 1963, 'M', 388), +(88012, 'Lionel', 1963, 'M', 384), +(88013, 'Noel', 1963, 'M', 384), +(88014, 'Ernie', 1963, 'M', 378), +(88015, 'Tommie', 1963, 'M', 374), +(88016, 'Joshua', 1963, 'M', 372), +(88017, 'Scotty', 1963, 'M', 372), +(88018, 'Ty', 1963, 'M', 372), +(88019, 'Cameron', 1963, 'M', 371), +(88020, 'Casey', 1963, 'M', 367), +(88021, 'Ernesto', 1963, 'M', 366), +(88022, 'Doyle', 1963, 'M', 365), +(88023, 'Ian', 1963, 'M', 361), +(88024, 'Dallas', 1963, 'M', 359), +(88025, 'Darnell', 1963, 'M', 359), +(88026, 'Oliver', 1963, 'M', 359), +(88027, 'Lowell', 1963, 'M', 358), +(88028, 'Leland', 1963, 'M', 357), +(88029, 'Marlon', 1963, 'M', 350), +(88030, 'Wilbert', 1963, 'M', 348), +(88031, 'Darwin', 1963, 'M', 347), +(88032, 'Hubert', 1963, 'M', 342), +(88033, 'Willis', 1963, 'M', 341), +(88034, 'Boyd', 1963, 'M', 339), +(88035, 'Dominick', 1963, 'M', 338), +(88036, 'Dirk', 1963, 'M', 336), +(88037, 'Carey', 1963, 'M', 335), +(88038, 'Marco', 1963, 'M', 334), +(88039, 'Miles', 1963, 'M', 331), +(88040, 'Blair', 1963, 'M', 328), +(88041, 'Zachary', 1963, 'M', 327), +(88042, 'Bert', 1963, 'M', 326), +(88043, 'Bryon', 1963, 'M', 324), +(88044, 'Freddy', 1963, 'M', 324), +(88045, 'Horace', 1963, 'M', 321), +(88046, 'Salvador', 1963, 'M', 320), +(88047, 'Garrett', 1963, 'M', 319), +(88048, 'Tracey', 1963, 'M', 319), +(88049, 'Dane', 1963, 'M', 316), +(88050, 'Dion', 1963, 'M', 314), +(88051, 'Darrin', 1963, 'M', 310), +(88052, 'Ervin', 1963, 'M', 308), +(88053, 'Mack', 1963, 'M', 306), +(88054, 'Mitch', 1963, 'M', 304), +(88055, 'Denis', 1963, 'M', 303), +(88056, 'Rufus', 1963, 'M', 302), +(88057, 'Buddy', 1963, 'M', 301), +(88058, 'Sergio', 1963, 'M', 297), +(88059, 'Lamont', 1963, 'M', 294), +(88060, 'Al', 1963, 'M', 293), +(88061, 'Seth', 1963, 'M', 292), +(88062, 'Dewey', 1963, 'M', 291), +(88063, 'Gerry', 1963, 'M', 291), +(88064, 'Russ', 1963, 'M', 291), +(88065, 'Jess', 1963, 'M', 287), +(88066, 'Sterling', 1963, 'M', 287), +(88067, 'Grady', 1963, 'M', 285), +(88068, 'Reynaldo', 1963, 'M', 285), +(88069, 'Gerardo', 1963, 'M', 284), +(88070, 'Wilson', 1963, 'M', 284), +(88071, 'Stan', 1963, 'M', 282), +(88072, 'Tyler', 1963, 'M', 282), +(88073, 'Ward', 1963, 'M', 282), +(88074, 'Rodolfo', 1963, 'M', 281), +(88075, 'Gilberto', 1963, 'M', 280), +(88076, 'Cornelius', 1963, 'M', 279), +(88077, 'Kurtis', 1963, 'M', 279), +(88078, 'Owen', 1963, 'M', 279), +(88079, 'Hal', 1963, 'M', 278), +(88080, 'Denny', 1963, 'M', 276), +(88081, 'Royce', 1963, 'M', 276), +(88082, 'Abraham', 1963, 'M', 274), +(88083, 'Conrad', 1963, 'M', 274), +(88084, 'Abel', 1963, 'M', 273), +(88085, 'Joesph', 1963, 'M', 272), +(88086, 'Elbert', 1963, 'M', 271), +(88087, 'Donny', 1963, 'M', 269), +(88088, 'Randell', 1963, 'M', 269), +(88089, 'Ellis', 1963, 'M', 268), +(88090, 'Louie', 1963, 'M', 268), +(88091, 'Wilbur', 1963, 'M', 268), +(88092, 'Vaughn', 1963, 'M', 267), +(88093, 'Carroll', 1963, 'M', 264), +(88094, 'Dino', 1963, 'M', 263), +(88095, 'Cliff', 1963, 'M', 262), +(88096, 'Duncan', 1963, 'M', 262), +(88097, 'Alejandro', 1963, 'M', 261), +(88098, 'Alphonso', 1963, 'M', 261), +(88099, 'Brandon', 1963, 'M', 261), +(88100, 'Kip', 1963, 'M', 260), +(88101, 'Stoney', 1963, 'M', 259), +(88102, 'Ronny', 1963, 'M', 257), +(88103, 'Elliott', 1963, 'M', 256), +(88104, 'Homer', 1963, 'M', 256), +(88105, 'Edmond', 1963, 'M', 255), +(88106, 'Terrell', 1963, 'M', 255), +(88107, 'Kirby', 1963, 'M', 254), +(88108, 'Daren', 1963, 'M', 252), +(88109, 'Rolando', 1963, 'M', 251), +(88110, 'Pablo', 1963, 'M', 248), +(88111, 'Aubrey', 1963, 'M', 247), +(88112, 'Irvin', 1963, 'M', 247), +(88113, 'Reuben', 1963, 'M', 245), +(88114, 'Brendan', 1963, 'M', 244), +(88115, 'Sammie', 1963, 'M', 244), +(88116, 'Garland', 1963, 'M', 241), +(88117, 'Ramiro', 1963, 'M', 241), +(88118, 'Will', 1963, 'M', 241), +(88119, 'Jonathon', 1963, 'M', 240), +(88120, 'Pierre', 1963, 'M', 238), +(88121, 'Hans', 1963, 'M', 237), +(88122, 'Percy', 1963, 'M', 236), +(88123, 'Emanuel', 1963, 'M', 235), +(88124, 'Wilfred', 1963, 'M', 232), +(88125, 'Eddy', 1963, 'M', 230), +(88126, 'Michel', 1963, 'M', 230), +(88127, 'Rich', 1963, 'M', 229), +(88128, 'Jan', 1963, 'M', 228), +(88129, 'Sandy', 1963, 'M', 226), +(88130, 'Andres', 1963, 'M', 225), +(88131, 'Bennett', 1963, 'M', 225), +(88132, 'Lamar', 1963, 'M', 225), +(88133, 'Israel', 1963, 'M', 223), +(88134, 'Quentin', 1963, 'M', 223), +(88135, 'Austin', 1963, 'M', 221), +(88136, 'Guadalupe', 1963, 'M', 220), +(88137, 'Barton', 1963, 'M', 219), +(88138, 'Morgan', 1963, 'M', 219), +(88139, 'Reggie', 1963, 'M', 217), +(88140, 'Moses', 1963, 'M', 216), +(88141, 'Felipe', 1963, 'M', 214), +(88142, 'Ismael', 1963, 'M', 214), +(88143, 'Thaddeus', 1963, 'M', 214), +(88144, 'Donnell', 1963, 'M', 213), +(88145, 'Simon', 1963, 'M', 213), +(88146, 'Gustavo', 1963, 'M', 212), +(88147, 'Johnathan', 1963, 'M', 212), +(88148, 'Marlin', 1963, 'M', 212), +(88149, 'Quintin', 1963, 'M', 212), +(88150, 'Lane', 1963, 'M', 210), +(88151, 'Amos', 1963, 'M', 209), +(88152, 'Garth', 1963, 'M', 209), +(88153, 'Winston', 1963, 'M', 208), +(88154, 'Murray', 1963, 'M', 205), +(88155, 'Erich', 1963, 'M', 204), +(88156, 'Harlan', 1963, 'M', 204), +(88157, 'Jeremy', 1963, 'M', 202), +(88158, 'Bryce', 1963, 'M', 201), +(88159, 'Cleveland', 1963, 'M', 201), +(88160, 'Galen', 1963, 'M', 200), +(88161, 'Tomas', 1963, 'M', 200), +(88162, 'Burton', 1963, 'M', 198), +(88163, 'Emmett', 1963, 'M', 198), +(88164, 'Mitchel', 1963, 'M', 198), +(88165, 'Devin', 1963, 'M', 197), +(88166, 'Erick', 1963, 'M', 197), +(88167, 'Russel', 1963, 'M', 196), +(88168, 'Guillermo', 1963, 'M', 193), +(88169, 'Lincoln', 1963, 'M', 193), +(88170, 'Nicky', 1963, 'M', 192), +(88171, 'Lonny', 1963, 'M', 191), +(88172, 'Woodrow', 1963, 'M', 191), +(88173, 'Billie', 1963, 'M', 189), +(88174, 'Demetrius', 1963, 'M', 189), +(88175, 'Danial', 1963, 'M', 188), +(88176, 'Ned', 1963, 'M', 188), +(88177, 'Norris', 1963, 'M', 188), +(88178, 'Richie', 1963, 'M', 188), +(88179, 'Rocco', 1963, 'M', 188), +(88180, 'Wilfredo', 1963, 'M', 188), +(88181, 'Kennith', 1963, 'M', 187), +(88182, 'Merle', 1963, 'M', 187), +(88183, 'Elias', 1963, 'M', 186), +(88184, 'Marcos', 1963, 'M', 185), +(88185, 'Stefan', 1963, 'M', 185), +(88186, 'Roman', 1963, 'M', 184), +(88187, 'Xavier', 1963, 'M', 183), +(88188, 'Kraig', 1963, 'M', 181), +(88189, 'Avery', 1963, 'M', 180), +(88190, 'Jefferson', 1963, 'M', 178), +(88191, 'Dwain', 1963, 'M', 177), +(88192, 'Hank', 1963, 'M', 177), +(88193, 'Lon', 1963, 'M', 177), +(88194, 'Lyndon', 1963, 'M', 177), +(88195, 'Elton', 1963, 'M', 176), +(88196, 'Cody', 1963, 'M', 175), +(88197, 'Brady', 1963, 'M', 174), +(88198, 'Kenton', 1963, 'M', 174), +(88199, 'Lenny', 1963, 'M', 174), +(88200, 'Chip', 1963, 'M', 171), +(88201, 'Quinton', 1963, 'M', 171), +(88202, 'Cesar', 1963, 'M', 170), +(88203, 'Damian', 1963, 'M', 170), +(88204, 'Tad', 1963, 'M', 169), +(88205, 'Carmen', 1963, 'M', 168), +(88206, 'Greggory', 1963, 'M', 168), +(88207, 'Scottie', 1963, 'M', 168), +(88208, 'Barney', 1963, 'M', 167), +(88209, 'Domingo', 1963, 'M', 167), +(88210, 'Chet', 1963, 'M', 166), +(88211, 'Reed', 1963, 'M', 166), +(88212, 'Kermit', 1963, 'M', 165), +(88213, 'Cornell', 1963, 'M', 164), +(88214, 'Elvin', 1963, 'M', 161), +(88215, 'Rogelio', 1963, 'M', 161), +(88216, 'Bernie', 1963, 'M', 160), +(88217, 'Gavin', 1963, 'M', 160), +(88218, 'Carter', 1963, 'M', 159), +(88219, 'Emilio', 1963, 'M', 159), +(88220, 'Irving', 1963, 'M', 159), +(88221, 'Lorne', 1963, 'M', 159), +(88222, 'Anton', 1963, 'M', 158), +(88223, 'Harrison', 1963, 'M', 158), +(88224, 'Junior', 1963, 'M', 158), +(88225, 'Kennedy', 1963, 'M', 158), +(88226, 'Loyd', 1963, 'M', 156), +(88227, 'Nolan', 1963, 'M', 156), +(88228, 'Toney', 1963, 'M', 156), +(88229, 'Wes', 1963, 'M', 156), +(88230, 'Erwin', 1963, 'M', 155), +(88231, 'Jake', 1963, 'M', 155), +(88232, 'Bobbie', 1963, 'M', 154), +(88233, 'Jordan', 1963, 'M', 154), +(88234, 'Levi', 1963, 'M', 154), +(88235, 'Gino', 1963, 'M', 153), +(88236, 'Vito', 1963, 'M', 153), +(88237, 'Elijah', 1963, 'M', 152), +(88238, 'Gus', 1963, 'M', 152), +(88239, 'Reid', 1963, 'M', 152), +(88240, 'Shelton', 1963, 'M', 151), +(88241, 'Jean', 1963, 'M', 150), +(88242, 'Art', 1963, 'M', 149), +(88243, 'Charley', 1963, 'M', 149), +(88244, 'Linwood', 1963, 'M', 149), +(88245, 'Pernell', 1963, 'M', 149), +(88246, 'Santos', 1963, 'M', 149), +(88247, 'Courtney', 1963, 'M', 148), +(88248, 'Keven', 1963, 'M', 148), +(88249, 'Santiago', 1963, 'M', 148), +(88250, 'Dannie', 1963, 'M', 147), +(88251, 'Antoine', 1963, 'M', 146), +(88252, 'Efrain', 1963, 'M', 146), +(88253, 'Eldon', 1963, 'M', 145), +(88254, 'Norbert', 1963, 'M', 145), +(88255, 'Saul', 1963, 'M', 145), +(88256, 'Zane', 1963, 'M', 143), +(88257, 'Jasper', 1963, 'M', 142), +(88258, 'Trevor', 1963, 'M', 142), +(88259, 'Benito', 1963, 'M', 140), +(88260, 'Emory', 1963, 'M', 140), +(88261, 'Jacques', 1963, 'M', 140), +(88262, 'Sanford', 1963, 'M', 140), +(88263, 'Wally', 1963, 'M', 140), +(88264, 'Jeremiah', 1963, 'M', 139), +(88265, 'Kirt', 1963, 'M', 139), +(88266, 'Eli', 1963, 'M', 138), +(88267, 'Elvis', 1963, 'M', 138), +(88268, 'Leonardo', 1963, 'M', 138), +(88269, 'Elliot', 1963, 'M', 137), +(88270, 'Ethan', 1963, 'M', 137), +(88271, 'Grover', 1963, 'M', 137), +(88272, 'Shelby', 1963, 'M', 137), +(88273, 'Mary', 1963, 'M', 136), +(88274, 'Timmie', 1963, 'M', 136), +(88275, 'Dudley', 1963, 'M', 135), +(88276, 'Carmine', 1963, 'M', 134), +(88277, 'Harley', 1963, 'M', 134), +(88278, 'Orville', 1963, 'M', 134), +(88279, 'Derick', 1963, 'M', 132), +(88280, 'Fabian', 1963, 'M', 132), +(88281, 'August', 1963, 'M', 131), +(88282, 'Emmanuel', 1963, 'M', 130), +(88283, 'Errol', 1963, 'M', 130), +(88284, 'Ashley', 1963, 'M', 129), +(88285, 'Dick', 1963, 'M', 129), +(88286, 'Sonny', 1963, 'M', 129), +(88287, 'Hiram', 1963, 'M', 128), +(88288, 'Jerold', 1963, 'M', 128), +(88289, 'Darius', 1963, 'M', 127), +(88290, 'Frederic', 1963, 'M', 127), +(88291, 'Ulysses', 1963, 'M', 127), +(88292, 'Emil', 1963, 'M', 126), +(88293, 'Otto', 1963, 'M', 126), +(88294, 'Noah', 1963, 'M', 125), +(88295, 'Theron', 1963, 'M', 125), +(88296, 'Wiley', 1963, 'M', 125), +(88297, 'Ignacio', 1963, 'M', 124), +(88298, 'Lindsey', 1963, 'M', 124), +(88299, 'Marcel', 1963, 'M', 124), +(88300, 'Weldon', 1963, 'M', 124), +(88301, 'Davis', 1963, 'M', 123), +(88302, 'Roscoe', 1963, 'M', 123), +(88303, 'Brooks', 1963, 'M', 122), +(88304, 'Del', 1963, 'M', 122), +(88305, 'Thad', 1963, 'M', 122), +(88306, 'Adolfo', 1963, 'M', 121), +(88307, 'Carlo', 1963, 'M', 121), +(88308, 'Emery', 1963, 'M', 121), +(88309, 'Les', 1963, 'M', 121), +(88310, 'Ritchie', 1963, 'M', 121), +(88311, 'Rodrick', 1963, 'M', 121), +(88312, 'Solomon', 1963, 'M', 121), +(88313, 'Thurman', 1963, 'M', 121), +(88314, 'Brock', 1963, 'M', 120), +(88315, 'Edwardo', 1963, 'M', 120), +(88316, 'Keenan', 1963, 'M', 120), +(88317, 'Lisa', 1963, 'M', 120), +(88318, 'Myles', 1963, 'M', 120), +(88319, 'Nicolas', 1963, 'M', 120), +(88320, 'Noe', 1963, 'M', 120), +(88321, 'Heriberto', 1963, 'M', 118), +(88322, 'Omar', 1963, 'M', 118), +(88323, 'Vern', 1963, 'M', 118), +(88324, 'Everette', 1963, 'M', 117), +(88325, 'Lanny', 1963, 'M', 117), +(88326, 'Desmond', 1963, 'M', 116), +(88327, 'Jefferey', 1963, 'M', 116), +(88328, 'Jerrold', 1963, 'M', 116), +(88329, 'Kelley', 1963, 'M', 116), +(88330, 'Kristopher', 1963, 'M', 116), +(88331, 'Humberto', 1963, 'M', 115), +(88332, 'Graham', 1963, 'M', 114), +(88333, 'Josh', 1963, 'M', 114), +(88334, 'Ivory', 1963, 'M', 113), +(88335, 'Jackson', 1963, 'M', 112), +(88336, 'Mikel', 1963, 'M', 112), +(88337, 'Vicente', 1963, 'M', 112), +(88338, 'Coy', 1963, 'M', 111), +(88339, 'Curtiss', 1963, 'M', 111), +(88340, 'Britt', 1963, 'M', 110), +(88341, 'Gil', 1963, 'M', 110), +(88342, 'Hugo', 1963, 'M', 110), +(88343, 'Mervin', 1963, 'M', 110), +(88344, 'Brant', 1963, 'M', 109), +(88345, 'Merlin', 1963, 'M', 109), +(88346, 'Sebastian', 1963, 'M', 109), +(88347, 'Stephon', 1963, 'M', 109), +(88348, 'Berry', 1963, 'M', 108), +(88349, 'Derwin', 1963, 'M', 108), +(88350, 'Joaquin', 1963, 'M', 108), +(88351, 'Antony', 1963, 'M', 107), +(88352, 'Darrick', 1963, 'M', 107), +(88353, 'Winfred', 1963, 'M', 107), +(88354, 'Lenard', 1963, 'M', 106), +(88355, 'Delmar', 1963, 'M', 105), +(88356, 'Burt', 1963, 'M', 104), +(88357, 'Devon', 1963, 'M', 104), +(88358, 'Garret', 1963, 'M', 104), +(88359, 'Layne', 1963, 'M', 103), +(88360, 'Lemuel', 1963, 'M', 103), +(88361, 'Bruno', 1963, 'M', 102), +(88362, 'Donovan', 1963, 'M', 102), +(88363, 'Dwane', 1963, 'M', 102), +(88364, 'Basil', 1963, 'M', 101), +(88365, 'Quinn', 1963, 'M', 101), +(88366, 'Brien', 1963, 'M', 100), +(88367, 'Duke', 1963, 'M', 100), +(88368, 'Lisa', 1964, 'F', 54275), +(88369, 'Mary', 1964, 'F', 40986), +(88370, 'Susan', 1964, 'F', 31516), +(88371, 'Karen', 1964, 'F', 30246), +(88372, 'Patricia', 1964, 'F', 26084), +(88373, 'Kimberly', 1964, 'F', 24129), +(88374, 'Donna', 1964, 'F', 23812), +(88375, 'Linda', 1964, 'F', 23631), +(88376, 'Cynthia', 1964, 'F', 20323), +(88377, 'Tammy', 1964, 'F', 20048), +(88378, 'Pamela', 1964, 'F', 19820), +(88379, 'Deborah', 1964, 'F', 19304), +(88380, 'Sandra', 1964, 'F', 19250), +(88381, 'Laura', 1964, 'F', 18976), +(88382, 'Lori', 1964, 'F', 18626), +(88383, 'Elizabeth', 1964, 'F', 17286), +(88384, 'Julie', 1964, 'F', 17281), +(88385, 'Brenda', 1964, 'F', 17103), +(88386, 'Barbara', 1964, 'F', 16474), +(88387, 'Sharon', 1964, 'F', 16446), +(88388, 'Teresa', 1964, 'F', 16417), +(88389, 'Angela', 1964, 'F', 16258), +(88390, 'Michelle', 1964, 'F', 16181), +(88391, 'Debra', 1964, 'F', 15330), +(88392, 'Denise', 1964, 'F', 14729), +(88393, 'Nancy', 1964, 'F', 14694), +(88394, 'Robin', 1964, 'F', 14330), +(88395, 'Christine', 1964, 'F', 14271), +(88396, 'Cheryl', 1964, 'F', 14077), +(88397, 'Kathleen', 1964, 'F', 13233), +(88398, 'Jennifer', 1964, 'F', 12959), +(88399, 'Diane', 1964, 'F', 12867), +(88400, 'Dawn', 1964, 'F', 12616), +(88401, 'Tina', 1964, 'F', 12553), +(88402, 'Kelly', 1964, 'F', 12480), +(88403, 'Carol', 1964, 'F', 12126), +(88404, 'Jacqueline', 1964, 'F', 11973), +(88405, 'Theresa', 1964, 'F', 10556), +(88406, 'Kathy', 1964, 'F', 10373), +(88407, 'Tracy', 1964, 'F', 10164), +(88408, 'Maria', 1964, 'F', 10127), +(88409, 'Kim', 1964, 'F', 9984), +(88410, 'Rhonda', 1964, 'F', 9716), +(88411, 'Amy', 1964, 'F', 9579), +(88412, 'Paula', 1964, 'F', 9505), +(88413, 'Rebecca', 1964, 'F', 9474), +(88414, 'Cindy', 1964, 'F', 9319), +(88415, 'Janet', 1964, 'F', 9255), +(88416, 'Margaret', 1964, 'F', 9113), +(88417, 'Sherry', 1964, 'F', 8487), +(88418, 'Sheila', 1964, 'F', 8469), +(88419, 'Debbie', 1964, 'F', 8383), +(88420, 'Melissa', 1964, 'F', 8317), +(88421, 'Catherine', 1964, 'F', 8236), +(88422, 'Wendy', 1964, 'F', 8077), +(88423, 'Carolyn', 1964, 'F', 8064), +(88424, 'Stephanie', 1964, 'F', 7937), +(88425, 'Michele', 1964, 'F', 7905), +(88426, 'Laurie', 1964, 'F', 7837), +(88427, 'Ann', 1964, 'F', 7759), +(88428, 'Jill', 1964, 'F', 7239), +(88429, 'Terri', 1964, 'F', 7136), +(88430, 'Diana', 1964, 'F', 7067), +(88431, 'Connie', 1964, 'F', 7035), +(88432, 'Beth', 1964, 'F', 6688), +(88433, 'Valerie', 1964, 'F', 6615), +(88434, 'Suzanne', 1964, 'F', 6485), +(88435, 'Annette', 1964, 'F', 6190), +(88436, 'Janice', 1964, 'F', 6164), +(88437, 'Dana', 1964, 'F', 6086), +(88438, 'Renee', 1964, 'F', 6011), +(88439, 'Lynn', 1964, 'F', 5678), +(88440, 'Leslie', 1964, 'F', 5600), +(88441, 'Judy', 1964, 'F', 5535), +(88442, 'Cathy', 1964, 'F', 5502), +(88443, 'Anne', 1964, 'F', 5412), +(88444, 'Andrea', 1964, 'F', 5384), +(88445, 'Carla', 1964, 'F', 5369), +(88446, 'Gina', 1964, 'F', 5233), +(88447, 'Darlene', 1964, 'F', 5169), +(88448, 'Wanda', 1964, 'F', 5168), +(88449, 'Katherine', 1964, 'F', 5073), +(88450, 'Regina', 1964, 'F', 4999), +(88451, 'Kathryn', 1964, 'F', 4924), +(88452, 'Anita', 1964, 'F', 4905), +(88453, 'Sherri', 1964, 'F', 4872), +(88454, 'Joyce', 1964, 'F', 4860), +(88455, 'Christina', 1964, 'F', 4700), +(88456, 'Bonnie', 1964, 'F', 4686), +(88457, 'Monica', 1964, 'F', 4645), +(88458, 'Beverly', 1964, 'F', 4606), +(88459, 'Sarah', 1964, 'F', 4585), +(88460, 'Jane', 1964, 'F', 4568), +(88461, 'Colleen', 1964, 'F', 4542), +(88462, 'Martha', 1964, 'F', 4447), +(88463, 'Penny', 1964, 'F', 4396), +(88464, 'Anna', 1964, 'F', 4285), +(88465, 'Judith', 1964, 'F', 4192), +(88466, 'Joan', 1964, 'F', 4147), +(88467, 'Jean', 1964, 'F', 4100), +(88468, 'Shelly', 1964, 'F', 4081), +(88469, 'Betty', 1964, 'F', 4066), +(88470, 'Gloria', 1964, 'F', 3962), +(88471, 'Shirley', 1964, 'F', 3962), +(88472, 'Melanie', 1964, 'F', 3942), +(88473, 'Peggy', 1964, 'F', 3844), +(88474, 'Maureen', 1964, 'F', 3832), +(88475, 'Tamara', 1964, 'F', 3805), +(88476, 'Virginia', 1964, 'F', 3793), +(88477, 'Marie', 1964, 'F', 3788), +(88478, 'Tracey', 1964, 'F', 3736), +(88479, 'Vicki', 1964, 'F', 3718), +(88480, 'Melinda', 1964, 'F', 3700), +(88481, 'Ruth', 1964, 'F', 3636), +(88482, 'Deanna', 1964, 'F', 3576), +(88483, 'Joanne', 1964, 'F', 3571), +(88484, 'Julia', 1964, 'F', 3540), +(88485, 'Dorothy', 1964, 'F', 3535), +(88486, 'Ellen', 1964, 'F', 3529), +(88487, 'Rose', 1964, 'F', 3481), +(88488, 'Holly', 1964, 'F', 3479), +(88489, 'Rita', 1964, 'F', 3468), +(88490, 'Stacy', 1964, 'F', 3460), +(88491, 'Heidi', 1964, 'F', 3451), +(88492, 'Gail', 1964, 'F', 3448), +(88493, 'Stacey', 1964, 'F', 3359), +(88494, 'Vickie', 1964, 'F', 3262), +(88495, 'Jackie', 1964, 'F', 3235), +(88496, 'Victoria', 1964, 'F', 3156), +(88497, 'Yvonne', 1964, 'F', 3132), +(88498, 'Becky', 1964, 'F', 3105), +(88499, 'Helen', 1964, 'F', 3095), +(88500, 'Veronica', 1964, 'F', 3058), +(88501, 'Carrie', 1964, 'F', 2975), +(88502, 'Sheryl', 1964, 'F', 2956), +(88503, 'Crystal', 1964, 'F', 2947), +(88504, 'Sylvia', 1964, 'F', 2941), +(88505, 'Sheri', 1964, 'F', 2922), +(88506, 'Terry', 1964, 'F', 2909), +(88507, 'Phyllis', 1964, 'F', 2894), +(88508, 'Alice', 1964, 'F', 2839), +(88509, 'Elaine', 1964, 'F', 2823), +(88510, 'Shelley', 1964, 'F', 2818), +(88511, 'Jodi', 1964, 'F', 2802), +(88512, 'Charlene', 1964, 'F', 2801), +(88513, 'Marilyn', 1964, 'F', 2794), +(88514, 'Yolanda', 1964, 'F', 2763), +(88515, 'Joann', 1964, 'F', 2733), +(88516, 'Sally', 1964, 'F', 2708), +(88517, 'Tonya', 1964, 'F', 2700), +(88518, 'April', 1964, 'F', 2600), +(88519, 'Frances', 1964, 'F', 2600), +(88520, 'Eileen', 1964, 'F', 2585), +(88521, 'Toni', 1964, 'F', 2554), +(88522, 'Yvette', 1964, 'F', 2549), +(88523, 'Jeanne', 1964, 'F', 2466), +(88524, 'Norma', 1964, 'F', 2429), +(88525, 'Charlotte', 1964, 'F', 2421), +(88526, 'Alicia', 1964, 'F', 2418), +(88527, 'Heather', 1964, 'F', 2386), +(88528, 'Belinda', 1964, 'F', 2382), +(88529, 'Jeanette', 1964, 'F', 2379), +(88530, 'Evelyn', 1964, 'F', 2378), +(88531, 'Carmen', 1964, 'F', 2377), +(88532, 'Lorraine', 1964, 'F', 2354), +(88533, 'Sara', 1964, 'F', 2354), +(88534, 'Patty', 1964, 'F', 2348), +(88535, 'Sandy', 1964, 'F', 2347), +(88536, 'Jamie', 1964, 'F', 2315), +(88537, 'Shannon', 1964, 'F', 2302), +(88538, 'Kristine', 1964, 'F', 2290), +(88539, 'Roberta', 1964, 'F', 2278), +(88540, 'Rachel', 1964, 'F', 2262), +(88541, 'Loretta', 1964, 'F', 2227), +(88542, 'Joy', 1964, 'F', 2218), +(88543, 'Sue', 1964, 'F', 2173), +(88544, 'Natalie', 1964, 'F', 2126), +(88545, 'Shari', 1964, 'F', 2114), +(88546, 'Caroline', 1964, 'F', 2106), +(88547, 'Tammie', 1964, 'F', 2083), +(88548, 'Allison', 1964, 'F', 2081), +(88549, 'Karla', 1964, 'F', 2061), +(88550, 'Vanessa', 1964, 'F', 2056), +(88551, 'Jo', 1964, 'F', 2051), +(88552, 'Darla', 1964, 'F', 2045), +(88553, 'Shelia', 1964, 'F', 2012), +(88554, 'Sonya', 1964, 'F', 1995), +(88555, 'Lynda', 1964, 'F', 1984), +(88556, 'Tanya', 1964, 'F', 1970), +(88557, 'Doris', 1964, 'F', 1933), +(88558, 'Marcia', 1964, 'F', 1932), +(88559, 'Melody', 1964, 'F', 1897), +(88560, 'Gwendolyn', 1964, 'F', 1894), +(88561, 'Lynne', 1964, 'F', 1894), +(88562, 'Robyn', 1964, 'F', 1882), +(88563, 'Audrey', 1964, 'F', 1868), +(88564, 'Pam', 1964, 'F', 1867), +(88565, 'Glenda', 1964, 'F', 1862), +(88566, 'Traci', 1964, 'F', 1833), +(88567, 'Doreen', 1964, 'F', 1832), +(88568, 'Felicia', 1964, 'F', 1831), +(88569, 'Dianne', 1964, 'F', 1825), +(88570, 'Juanita', 1964, 'F', 1807), +(88571, 'Marsha', 1964, 'F', 1783), +(88572, 'Tami', 1964, 'F', 1733), +(88573, 'Kristin', 1964, 'F', 1722), +(88574, 'Ronda', 1964, 'F', 1714), +(88575, 'Teri', 1964, 'F', 1714), +(88576, 'Kristi', 1964, 'F', 1670), +(88577, 'Jody', 1964, 'F', 1663), +(88578, 'Irene', 1964, 'F', 1661), +(88579, 'Kelli', 1964, 'F', 1650), +(88580, 'Patti', 1964, 'F', 1634), +(88581, 'Rosemary', 1964, 'F', 1628), +(88582, 'Vicky', 1964, 'F', 1617), +(88583, 'Deneen', 1964, 'F', 1604), +(88584, 'Cassandra', 1964, 'F', 1587), +(88585, 'Lora', 1964, 'F', 1578), +(88586, 'Constance', 1964, 'F', 1548), +(88587, 'Kimberley', 1964, 'F', 1547), +(88588, 'Angie', 1964, 'F', 1535), +(88589, 'Kelley', 1964, 'F', 1535), +(88590, 'Rosa', 1964, 'F', 1516), +(88591, 'Vivian', 1964, 'F', 1510), +(88592, 'Bridget', 1964, 'F', 1478), +(88593, 'Alison', 1964, 'F', 1452), +(88594, 'Dianna', 1964, 'F', 1430), +(88595, 'Erin', 1964, 'F', 1427), +(88596, 'Eva', 1964, 'F', 1426), +(88597, 'Leah', 1964, 'F', 1419), +(88598, 'Lois', 1964, 'F', 1409), +(88599, 'Shawn', 1964, 'F', 1404), +(88600, 'Chris', 1964, 'F', 1379), +(88601, 'Lauren', 1964, 'F', 1377), +(88602, 'Christy', 1964, 'F', 1374), +(88603, 'June', 1964, 'F', 1373), +(88604, 'Ramona', 1964, 'F', 1347), +(88605, 'Kellie', 1964, 'F', 1341), +(88606, 'Kristen', 1964, 'F', 1336), +(88607, 'Sherrie', 1964, 'F', 1330), +(88608, 'Roxanne', 1964, 'F', 1323), +(88609, 'Lynette', 1964, 'F', 1308), +(88610, 'Kay', 1964, 'F', 1302), +(88611, 'Marlene', 1964, 'F', 1287), +(88612, 'Hope', 1964, 'F', 1277), +(88613, 'Amanda', 1964, 'F', 1275), +(88614, 'Jacquelyn', 1964, 'F', 1273), +(88615, 'Lee', 1964, 'F', 1272), +(88616, 'Jan', 1964, 'F', 1258), +(88617, 'Tara', 1964, 'F', 1242), +(88618, 'Janine', 1964, 'F', 1240), +(88619, 'Jana', 1964, 'F', 1226), +(88620, 'Arlene', 1964, 'F', 1223), +(88621, 'Sonia', 1964, 'F', 1221), +(88622, 'Grace', 1964, 'F', 1212), +(88623, 'Marianne', 1964, 'F', 1209), +(88624, 'Marjorie', 1964, 'F', 1188), +(88625, 'Lydia', 1964, 'F', 1183), +(88626, 'Ginger', 1964, 'F', 1182), +(88627, 'Katrina', 1964, 'F', 1179), +(88628, 'Kerry', 1964, 'F', 1179), +(88629, 'Jessica', 1964, 'F', 1172), +(88630, 'Carole', 1964, 'F', 1164), +(88631, 'Louise', 1964, 'F', 1147), +(88632, 'Jenny', 1964, 'F', 1145), +(88633, 'Nina', 1964, 'F', 1143), +(88634, 'Priscilla', 1964, 'F', 1140), +(88635, 'Emily', 1964, 'F', 1130), +(88636, 'Lorie', 1964, 'F', 1113), +(88637, 'Ruby', 1964, 'F', 1113), +(88638, 'Gayle', 1964, 'F', 1108), +(88639, 'Geraldine', 1964, 'F', 1101), +(88640, 'Kari', 1964, 'F', 1093), +(88641, 'Dolores', 1964, 'F', 1081), +(88642, 'Lillian', 1964, 'F', 1063), +(88643, 'Maryann', 1964, 'F', 1053), +(88644, 'Sonja', 1964, 'F', 1053), +(88645, 'Danielle', 1964, 'F', 1052), +(88646, 'Leigh', 1964, 'F', 1049), +(88647, 'Nora', 1964, 'F', 1049), +(88648, 'Kristina', 1964, 'F', 1036), +(88649, 'Annie', 1964, 'F', 1031), +(88650, 'Monique', 1964, 'F', 1028), +(88651, 'Betsy', 1964, 'F', 1026), +(88652, 'Antoinette', 1964, 'F', 1025), +(88653, 'Esther', 1964, 'F', 1025), +(88654, 'Pauline', 1964, 'F', 1024), +(88655, 'Molly', 1964, 'F', 1009), +(88656, 'Cathleen', 1964, 'F', 1007), +(88657, 'Cheri', 1964, 'F', 1003), +(88658, 'Claudia', 1964, 'F', 994), +(88659, 'Trina', 1964, 'F', 994), +(88660, 'Tracie', 1964, 'F', 984), +(88661, 'Gretchen', 1964, 'F', 975), +(88662, 'Marla', 1964, 'F', 970), +(88663, 'Edith', 1964, 'F', 966), +(88664, 'Debora', 1964, 'F', 960), +(88665, 'Josephine', 1964, 'F', 960), +(88666, 'Dina', 1964, 'F', 949), +(88667, 'Lucy', 1964, 'F', 949), +(88668, 'Rochelle', 1964, 'F', 948), +(88669, 'Kris', 1964, 'F', 941), +(88670, 'Joni', 1964, 'F', 936), +(88671, 'Bernadette', 1964, 'F', 933), +(88672, 'Nadine', 1964, 'F', 933), +(88673, 'Dena', 1964, 'F', 907), +(88674, 'Billie', 1964, 'F', 896), +(88675, 'Delores', 1964, 'F', 891), +(88676, 'Mona', 1964, 'F', 890), +(88677, 'Karin', 1964, 'F', 885), +(88678, 'Lana', 1964, 'F', 884), +(88679, 'Dora', 1964, 'F', 883), +(88680, 'Margie', 1964, 'F', 883), +(88681, 'Sabrina', 1964, 'F', 880), +(88682, 'Joanna', 1964, 'F', 877), +(88683, 'Georgia', 1964, 'F', 871), +(88684, 'Susie', 1964, 'F', 868), +(88685, 'Lorrie', 1964, 'F', 865), +(88686, 'Bobbie', 1964, 'F', 863), +(88687, 'Miriam', 1964, 'F', 855), +(88688, 'Therese', 1964, 'F', 852), +(88689, 'Francine', 1964, 'F', 846), +(88690, 'Mildred', 1964, 'F', 846), +(88691, 'Leticia', 1964, 'F', 843), +(88692, 'Rosemarie', 1964, 'F', 839), +(88693, 'Paulette', 1964, 'F', 838), +(88694, 'Candace', 1964, 'F', 837), +(88695, 'Angelia', 1964, 'F', 834), +(88696, 'Cecilia', 1964, 'F', 833), +(88697, 'Nicole', 1964, 'F', 832), +(88698, 'Patrice', 1964, 'F', 830), +(88699, 'Kristy', 1964, 'F', 822), +(88700, 'Alisa', 1964, 'F', 819), +(88701, 'Cherie', 1964, 'F', 817), +(88702, 'Patsy', 1964, 'F', 816), +(88703, 'Faith', 1964, 'F', 805), +(88704, 'Terrie', 1964, 'F', 795), +(88705, 'Zina', 1964, 'F', 793), +(88706, 'Trisha', 1964, 'F', 792), +(88707, 'Edna', 1964, 'F', 789), +(88708, 'Desiree', 1964, 'F', 782), +(88709, 'Jeanine', 1964, 'F', 778), +(88710, 'Emma', 1964, 'F', 770), +(88711, 'Daphne', 1964, 'F', 765), +(88712, 'Marian', 1964, 'F', 757), +(88713, 'Ana', 1964, 'F', 756), +(88714, 'Janie', 1964, 'F', 752), +(88715, 'Myra', 1964, 'F', 749), +(88716, 'Jeannette', 1964, 'F', 731), +(88717, 'Marion', 1964, 'F', 726), +(88718, 'Deirdre', 1964, 'F', 722), +(88719, 'Suzette', 1964, 'F', 719), +(88720, 'Candy', 1964, 'F', 715), +(88721, 'Nanette', 1964, 'F', 715), +(88722, 'Leanne', 1964, 'F', 703), +(88723, 'Kerri', 1964, 'F', 701), +(88724, 'Adrienne', 1964, 'F', 698), +(88725, 'Clara', 1964, 'F', 698), +(88726, 'Celeste', 1964, 'F', 690), +(88727, 'Lucinda', 1964, 'F', 689), +(88728, 'Polly', 1964, 'F', 687), +(88729, 'Kirsten', 1964, 'F', 686), +(88730, 'Irma', 1964, 'F', 685), +(88731, 'Lesa', 1964, 'F', 683), +(88732, 'Trudy', 1964, 'F', 672), +(88733, 'Cara', 1964, 'F', 664), +(88734, 'Kara', 1964, 'F', 663), +(88735, 'Bonita', 1964, 'F', 662), +(88736, 'Susanne', 1964, 'F', 659), +(88737, 'Jodie', 1964, 'F', 657), +(88738, 'Rene', 1964, 'F', 654), +(88739, 'Thelma', 1964, 'F', 653), +(88740, 'Bernice', 1964, 'F', 652), +(88741, 'Tricia', 1964, 'F', 651), +(88742, 'Beatrice', 1964, 'F', 650), +(88743, 'Jeannie', 1964, 'F', 650), +(88744, 'Eleanor', 1964, 'F', 645), +(88745, 'Elisa', 1964, 'F', 642), +(88746, 'Bertha', 1964, 'F', 640), +(88747, 'Valarie', 1964, 'F', 640), +(88748, 'Vera', 1964, 'F', 639), +(88749, 'Tammi', 1964, 'F', 634), +(88750, 'Marcella', 1964, 'F', 630), +(88751, 'Gladys', 1964, 'F', 628), +(88752, 'Lauri', 1964, 'F', 627), +(88753, 'Jeannine', 1964, 'F', 621), +(88754, 'Naomi', 1964, 'F', 618), +(88755, 'Alma', 1964, 'F', 615), +(88756, 'Sondra', 1964, 'F', 615), +(88757, 'Krista', 1964, 'F', 614), +(88758, 'Gwen', 1964, 'F', 613), +(88759, 'Ladonna', 1964, 'F', 612), +(88760, 'Jayne', 1964, 'F', 610), +(88761, 'Claire', 1964, 'F', 607), +(88762, 'Karyn', 1964, 'F', 607), +(88763, 'Leann', 1964, 'F', 607), +(88764, 'Darcy', 1964, 'F', 602), +(88765, 'Jennie', 1964, 'F', 602), +(88766, 'Vonda', 1964, 'F', 601), +(88767, 'Deana', 1964, 'F', 590), +(88768, 'Shawna', 1964, 'F', 589), +(88769, 'Tamera', 1964, 'F', 588), +(88770, 'Janette', 1964, 'F', 586), +(88771, 'Stacie', 1964, 'F', 586), +(88772, 'Marcy', 1964, 'F', 580), +(88773, 'Ida', 1964, 'F', 579), +(88774, 'Deanne', 1964, 'F', 574), +(88775, 'Jeri', 1964, 'F', 571), +(88776, 'Lena', 1964, 'F', 570), +(88777, 'Dee', 1964, 'F', 567), +(88778, 'Ella', 1964, 'F', 564), +(88779, 'Janelle', 1964, 'F', 560), +(88780, 'Stella', 1964, 'F', 560), +(88781, 'Lorri', 1964, 'F', 551), +(88782, 'Margarita', 1964, 'F', 550), +(88783, 'Laurel', 1964, 'F', 546), +(88784, 'Rosalind', 1964, 'F', 544), +(88785, 'Erica', 1964, 'F', 542), +(88786, 'Mindy', 1964, 'F', 540), +(88787, 'Rosie', 1964, 'F', 540), +(88788, 'Rena', 1964, 'F', 538), +(88789, 'Paige', 1964, 'F', 537), +(88790, 'Florence', 1964, 'F', 535), +(88791, 'Iris', 1964, 'F', 534), +(88792, 'Ingrid', 1964, 'F', 531), +(88793, 'Jerri', 1964, 'F', 529), +(88794, 'Christie', 1964, 'F', 527), +(88795, 'Madeline', 1964, 'F', 526), +(88796, 'Lorna', 1964, 'F', 523), +(88797, 'Katie', 1964, 'F', 522), +(88798, 'Ethel', 1964, 'F', 517), +(88799, 'Janis', 1964, 'F', 516), +(88800, 'Megan', 1964, 'F', 514), +(88801, 'Elena', 1964, 'F', 507), +(88802, 'Lynnette', 1964, 'F', 507), +(88803, 'Noreen', 1964, 'F', 506), +(88804, 'Bobbi', 1964, 'F', 504), +(88805, 'Amelia', 1964, 'F', 502), +(88806, 'Christi', 1964, 'F', 499), +(88807, 'Tonia', 1964, 'F', 493), +(88808, 'Kimberlee', 1964, 'F', 492), +(88809, 'Colette', 1964, 'F', 485), +(88810, 'Deidre', 1964, 'F', 483), +(88811, 'Corinne', 1964, 'F', 480), +(88812, 'Amber', 1964, 'F', 479), +(88813, 'Jolene', 1964, 'F', 479), +(88814, 'Marybeth', 1964, 'F', 478), +(88815, 'Lucille', 1964, 'F', 477), +(88816, 'Olga', 1964, 'F', 475), +(88817, 'Bridgette', 1964, 'F', 472), +(88818, 'Tamra', 1964, 'F', 472), +(88819, 'Camille', 1964, 'F', 470), +(88820, 'Sophia', 1964, 'F', 470), +(88821, 'Della', 1964, 'F', 469), +(88822, 'Gena', 1964, 'F', 458), +(88823, 'Lillie', 1964, 'F', 458), +(88824, 'Mitzi', 1964, 'F', 458), +(88825, 'Wilma', 1964, 'F', 458), +(88826, 'Staci', 1964, 'F', 450), +(88827, 'Maxine', 1964, 'F', 446), +(88828, 'Tiffany', 1964, 'F', 442), +(88829, 'Danette', 1964, 'F', 440), +(88830, 'Faye', 1964, 'F', 439), +(88831, 'Elisabeth', 1964, 'F', 436), +(88832, 'Delia', 1964, 'F', 433), +(88833, 'Luann', 1964, 'F', 433), +(88834, 'Misty', 1964, 'F', 431), +(88835, 'Maura', 1964, 'F', 429), +(88836, 'Annmarie', 1964, 'F', 428), +(88837, 'Elise', 1964, 'F', 426), +(88838, 'Olivia', 1964, 'F', 426), +(88839, 'Samantha', 1964, 'F', 424), +(88840, 'Angel', 1964, 'F', 423), +(88841, 'Alesia', 1964, 'F', 419), +(88842, 'Rachelle', 1964, 'F', 414), +(88843, 'Hilda', 1964, 'F', 411), +(88844, 'Jessie', 1964, 'F', 411), +(88845, 'Margo', 1964, 'F', 410), +(88846, 'Willie', 1964, 'F', 405), +(88847, 'Deann', 1964, 'F', 404), +(88848, 'Leona', 1964, 'F', 404), +(88849, 'Lesley', 1964, 'F', 404), +(88850, 'Lea', 1964, 'F', 403), +(88851, 'Kristie', 1964, 'F', 402), +(88852, 'Robbin', 1964, 'F', 400), +(88853, 'Deena', 1964, 'F', 396), +(88854, 'Guadalupe', 1964, 'F', 396), +(88855, 'Rosalie', 1964, 'F', 394), +(88856, 'Felecia', 1964, 'F', 393), +(88857, 'Velma', 1964, 'F', 393), +(88858, 'Kendra', 1964, 'F', 392), +(88859, 'Allyson', 1964, 'F', 391), +(88860, 'Jacquline', 1964, 'F', 390), +(88861, 'Marguerite', 1964, 'F', 389), +(88862, 'Coleen', 1964, 'F', 388), +(88863, 'Isabel', 1964, 'F', 388), +(88864, 'Shellie', 1964, 'F', 387), +(88865, 'Shelli', 1964, 'F', 386), +(88866, 'Wendi', 1964, 'F', 386), +(88867, 'Julianne', 1964, 'F', 381), +(88868, 'Marci', 1964, 'F', 380), +(88869, 'Johanna', 1964, 'F', 377), +(88870, 'Celia', 1964, 'F', 376), +(88871, 'Lenora', 1964, 'F', 376), +(88872, 'Geneva', 1964, 'F', 375), +(88873, 'Robbie', 1964, 'F', 375), +(88874, 'Cecelia', 1964, 'F', 374), +(88875, 'Eugenia', 1964, 'F', 373), +(88876, 'Daisy', 1964, 'F', 372), +(88877, 'Benita', 1964, 'F', 370), +(88878, 'Bethany', 1964, 'F', 366), +(88879, 'Hazel', 1964, 'F', 363), +(88880, 'Angelina', 1964, 'F', 361), +(88881, 'Marina', 1964, 'F', 361), +(88882, 'Maryellen', 1964, 'F', 361), +(88883, 'Tamela', 1964, 'F', 360), +(88884, 'Johnna', 1964, 'F', 358), +(88885, 'Sandi', 1964, 'F', 358), +(88886, 'Erika', 1964, 'F', 357), +(88887, 'Denice', 1964, 'F', 355), +(88888, 'Gayla', 1964, 'F', 355), +(88889, 'Verna', 1964, 'F', 354), +(88890, 'Renae', 1964, 'F', 353), +(88891, 'Keri', 1964, 'F', 352), +(88892, 'Cora', 1964, 'F', 351), +(88893, 'Gay', 1964, 'F', 350), +(88894, 'Liz', 1964, 'F', 348), +(88895, 'Annemarie', 1964, 'F', 345), +(88896, 'Caryn', 1964, 'F', 344), +(88897, 'Luz', 1964, 'F', 343), +(88898, 'Marta', 1964, 'F', 343), +(88899, 'Helene', 1964, 'F', 341), +(88900, 'Malinda', 1964, 'F', 340), +(88901, 'Mari', 1964, 'F', 339), +(88902, 'Lorena', 1964, 'F', 338), +(88903, 'Justine', 1964, 'F', 336), +(88904, 'Laverne', 1964, 'F', 336), +(88905, 'Lola', 1964, 'F', 336), +(88906, 'Shauna', 1964, 'F', 336), +(88907, 'Martina', 1964, 'F', 334), +(88908, 'Randi', 1964, 'F', 332), +(88909, 'Debby', 1964, 'F', 331), +(88910, 'Whitney', 1964, 'F', 331), +(88911, 'Kathi', 1964, 'F', 330), +(88912, 'Letitia', 1964, 'F', 329), +(88913, 'Marisa', 1964, 'F', 328), +(88914, 'Saundra', 1964, 'F', 328), +(88915, 'Lourdes', 1964, 'F', 327), +(88916, 'Jenifer', 1964, 'F', 326), +(88917, 'Judi', 1964, 'F', 325), +(88918, 'Marcie', 1964, 'F', 324), +(88919, 'Dixie', 1964, 'F', 323), +(88920, 'Roseann', 1964, 'F', 323), +(88921, 'Ada', 1964, 'F', 318), +(88922, 'Shelby', 1964, 'F', 318), +(88923, 'Dale', 1964, 'F', 317), +(88924, 'James', 1964, 'F', 317), +(88925, 'Bridgett', 1964, 'F', 316), +(88926, 'Cristina', 1964, 'F', 309), +(88927, 'Sharlene', 1964, 'F', 308), +(88928, 'Cindi', 1964, 'F', 307), +(88929, 'Rae', 1964, 'F', 307), +(88930, 'Ernestine', 1964, 'F', 305), +(88931, 'Helena', 1964, 'F', 305), +(88932, 'Eunice', 1964, 'F', 304), +(88933, 'Meredith', 1964, 'F', 302), +(88934, 'Michael', 1964, 'F', 301), +(88935, 'Mia', 1964, 'F', 300), +(88936, 'Diann', 1964, 'F', 299), +(88937, 'Rosanne', 1964, 'F', 299), +(88938, 'Tonja', 1964, 'F', 299), +(88939, 'Mattie', 1964, 'F', 298), +(88940, 'Patrica', 1964, 'F', 295), +(88941, 'Leeann', 1964, 'F', 294), +(88942, 'Alexandra', 1964, 'F', 293), +(88943, 'Viola', 1964, 'F', 293), +(88944, 'Bessie', 1964, 'F', 292), +(88945, 'Claudette', 1964, 'F', 292), +(88946, 'Lucia', 1964, 'F', 292), +(88947, 'Nannette', 1964, 'F', 291), +(88948, 'Deloris', 1964, 'F', 290), +(88949, 'Gale', 1964, 'F', 290), +(88950, 'Katharine', 1964, 'F', 289), +(88951, 'Myrna', 1964, 'F', 289), +(88952, 'Liza', 1964, 'F', 287), +(88953, 'Lolita', 1964, 'F', 285), +(88954, 'Pearl', 1964, 'F', 285), +(88955, 'Jami', 1964, 'F', 283), +(88956, 'Roslyn', 1964, 'F', 283), +(88957, 'Elsa', 1964, 'F', 282), +(88958, 'Pamala', 1964, 'F', 282), +(88959, 'Christa', 1964, 'F', 280), +(88960, 'Deidra', 1964, 'F', 280), +(88961, 'Agnes', 1964, 'F', 278), +(88962, 'Harriet', 1964, 'F', 278), +(88963, 'Robert', 1964, 'F', 278), +(88964, 'Rosalyn', 1964, 'F', 278), +(88965, 'Blanca', 1964, 'F', 277), +(88966, 'Danita', 1964, 'F', 277), +(88967, 'Lou', 1964, 'F', 277), +(88968, 'Freda', 1964, 'F', 276), +(88969, 'Jeanie', 1964, 'F', 276), +(88970, 'Melisa', 1964, 'F', 276), +(88971, 'Genevieve', 1964, 'F', 274), +(88972, 'Stefanie', 1964, 'F', 274), +(88973, 'Dayna', 1964, 'F', 273), +(88974, 'Pat', 1964, 'F', 273), +(88975, 'Caren', 1964, 'F', 270), +(88976, 'Eve', 1964, 'F', 269), +(88977, 'Valeria', 1964, 'F', 268), +(88978, 'Carlene', 1964, 'F', 267), +(88979, 'Kathie', 1964, 'F', 267), +(88980, 'Latonya', 1964, 'F', 266), +(88981, 'Nikki', 1964, 'F', 266), +(88982, 'Penelope', 1964, 'F', 266), +(88983, 'Ava', 1964, 'F', 265), +(88984, 'Kecia', 1964, 'F', 265), +(88985, 'Leisa', 1964, 'F', 265), +(88986, 'Danna', 1964, 'F', 264), +(88987, 'Geri', 1964, 'F', 264), +(88988, 'Janna', 1964, 'F', 264), +(88989, 'John', 1964, 'F', 264), +(88990, 'Lorene', 1964, 'F', 264), +(88991, 'Clarissa', 1964, 'F', 263), +(88992, 'Jocelyn', 1964, 'F', 262), +(88993, 'Maryanne', 1964, 'F', 262), +(88994, 'Nellie', 1964, 'F', 262), +(88995, 'Cari', 1964, 'F', 261), +(88996, 'Charmaine', 1964, 'F', 261), +(88997, 'Lawanda', 1964, 'F', 261), +(88998, 'Silvia', 1964, 'F', 261), +(88999, 'Sallie', 1964, 'F', 260), +(89000, 'Janell', 1964, 'F', 259), +(89001, 'Johnnie', 1964, 'F', 259), +(89002, 'Maribel', 1964, 'F', 259), +(89003, 'Chandra', 1964, 'F', 258), +(89004, 'Hilary', 1964, 'F', 258), +(89005, 'Dawna', 1964, 'F', 257), +(89006, 'Edwina', 1964, 'F', 257), +(89007, 'Juli', 1964, 'F', 257), +(89008, 'Dorothea', 1964, 'F', 255), +(89009, 'Maryjo', 1964, 'F', 255), +(89010, 'Aimee', 1964, 'F', 252), +(89011, 'Flora', 1964, 'F', 252), +(89012, 'Kerrie', 1964, 'F', 252), +(89013, 'Antonia', 1964, 'F', 250), +(89014, 'David', 1964, 'F', 249), +(89015, 'Elsie', 1964, 'F', 249), +(89016, 'Aileen', 1964, 'F', 248), +(89017, 'Dona', 1964, 'F', 248), +(89018, 'Simone', 1964, 'F', 248), +(89019, 'Gracie', 1964, 'F', 247), +(89020, 'Rosalinda', 1964, 'F', 246), +(89021, 'Maggie', 1964, 'F', 245), +(89022, 'Abigail', 1964, 'F', 244), +(89023, 'Clare', 1964, 'F', 244), +(89024, 'Luanne', 1964, 'F', 242), +(89025, 'Ivette', 1964, 'F', 240), +(89026, 'Corina', 1964, 'F', 239), +(89027, 'Angelica', 1964, 'F', 238), +(89028, 'Lesia', 1964, 'F', 238), +(89029, 'Rosetta', 1964, 'F', 238), +(89030, 'Valorie', 1964, 'F', 238), +(89031, 'Courtney', 1964, 'F', 236), +(89032, 'Frankie', 1964, 'F', 236), +(89033, 'Teressa', 1964, 'F', 236), +(89034, 'Sharron', 1964, 'F', 235), +(89035, 'Ursula', 1964, 'F', 235), +(89036, 'Mandy', 1964, 'F', 233), +(89037, 'Suzan', 1964, 'F', 231), +(89038, 'Tena', 1964, 'F', 231), +(89039, 'Glynis', 1964, 'F', 230), +(89040, 'Maritza', 1964, 'F', 230), +(89041, 'Violet', 1964, 'F', 230), +(89042, 'Alberta', 1964, 'F', 229), +(89043, 'Gabrielle', 1964, 'F', 228), +(89044, 'Roxann', 1964, 'F', 228), +(89045, 'Carolina', 1964, 'F', 227), +(89046, 'Greta', 1964, 'F', 226), +(89047, 'Lila', 1964, 'F', 226), +(89048, 'Selena', 1964, 'F', 226), +(89049, 'Barb', 1964, 'F', 225), +(89050, 'Jewel', 1964, 'F', 225), +(89051, 'Laureen', 1964, 'F', 225), +(89052, 'Pattie', 1964, 'F', 224), +(89053, 'Minnie', 1964, 'F', 223), +(89054, 'Missy', 1964, 'F', 223), +(89055, 'Raquel', 1964, 'F', 223), +(89056, 'Karrie', 1964, 'F', 222), +(89057, 'Zena', 1964, 'F', 222), +(89058, 'Carmela', 1964, 'F', 221), +(89059, 'Merry', 1964, 'F', 221), +(89060, 'Rhoda', 1964, 'F', 221), +(89061, 'Sheree', 1964, 'F', 221), +(89062, 'Brigitte', 1964, 'F', 220), +(89063, 'Erma', 1964, 'F', 220), +(89064, 'Karol', 1964, 'F', 220), +(89065, 'Juliana', 1964, 'F', 219), +(89066, 'Valencia', 1964, 'F', 219), +(89067, 'Graciela', 1964, 'F', 218), +(89068, 'Reba', 1964, 'F', 218), +(89069, 'Abby', 1964, 'F', 217), +(89070, 'Adriana', 1964, 'F', 217), +(89071, 'Kaye', 1964, 'F', 217), +(89072, 'Melodie', 1964, 'F', 217), +(89073, 'Rebekah', 1964, 'F', 217), +(89074, 'Alana', 1964, 'F', 215), +(89075, 'Estella', 1964, 'F', 215), +(89076, 'Susanna', 1964, 'F', 215), +(89077, 'Tania', 1964, 'F', 214), +(89078, 'Georgina', 1964, 'F', 213), +(89079, 'Dorene', 1964, 'F', 212), +(89080, 'Kate', 1964, 'F', 211), +(89081, 'Glenna', 1964, 'F', 210), +(89082, 'Shirl', 1964, 'F', 210), +(89083, 'Twila', 1964, 'F', 210), +(89084, 'Corrine', 1964, 'F', 209), +(89085, 'Georgette', 1964, 'F', 209), +(89086, 'Pennie', 1964, 'F', 208), +(89087, 'Renita', 1964, 'F', 208), +(89088, 'Shanna', 1964, 'F', 207), +(89089, 'Tana', 1964, 'F', 207), +(89090, 'Ilene', 1964, 'F', 205), +(89091, 'Josie', 1964, 'F', 205), +(89092, 'Mae', 1964, 'F', 205), +(89093, 'Roxane', 1964, 'F', 205), +(89094, 'Annamarie', 1964, 'F', 204), +(89095, 'Gerri', 1964, 'F', 204), +(89096, 'Jonna', 1964, 'F', 204), +(89097, 'Nita', 1964, 'F', 204), +(89098, 'Serena', 1964, 'F', 203), +(89099, 'Libby', 1964, 'F', 202), +(89100, 'Lyn', 1964, 'F', 201), +(89101, 'Rachael', 1964, 'F', 201), +(89102, 'Terese', 1964, 'F', 201), +(89103, 'Juliet', 1964, 'F', 200), +(89104, 'Alyson', 1964, 'F', 199), +(89105, 'Djuna', 1964, 'F', 198), +(89106, 'Jeanna', 1964, 'F', 198), +(89107, 'Lupe', 1964, 'F', 198), +(89108, 'Vickey', 1964, 'F', 198), +(89109, 'Inez', 1964, 'F', 197), +(89110, 'Krystal', 1964, 'F', 197), +(89111, 'Dori', 1964, 'F', 196), +(89112, 'Gigi', 1964, 'F', 195), +(89113, 'Henrietta', 1964, 'F', 195), +(89114, 'Selina', 1964, 'F', 195), +(89115, 'Candice', 1964, 'F', 194), +(89116, 'Cathryn', 1964, 'F', 194), +(89117, 'Teena', 1964, 'F', 194), +(89118, 'Twyla', 1964, 'F', 194), +(89119, 'Bernadine', 1964, 'F', 191), +(89120, 'Ruthie', 1964, 'F', 191), +(89121, 'Starla', 1964, 'F', 191), +(89122, 'Adele', 1964, 'F', 190), +(89123, 'Barbie', 1964, 'F', 190), +(89124, 'Djuana', 1964, 'F', 190), +(89125, 'Marisol', 1964, 'F', 190), +(89126, 'Latanya', 1964, 'F', 188), +(89127, 'Susana', 1964, 'F', 187), +(89128, 'Arleen', 1964, 'F', 186), +(89129, 'Lanette', 1964, 'F', 186), +(89130, 'Lavonne', 1964, 'F', 186), +(89131, 'Alecia', 1964, 'F', 185), +(89132, 'Milagros', 1964, 'F', 185), +(89133, 'Fay', 1964, 'F', 184), +(89134, 'Jacquelin', 1964, 'F', 184), +(89135, 'Suzy', 1964, 'F', 183), +(89136, 'Mamie', 1964, 'F', 182), +(89137, 'Vikki', 1964, 'F', 182), +(89138, 'Ashley', 1964, 'F', 180), +(89139, 'Mara', 1964, 'F', 180), +(89140, 'Ivy', 1964, 'F', 179), +(89141, 'Charla', 1964, 'F', 177), +(89142, 'Lula', 1964, 'F', 177), +(89143, 'Noelle', 1964, 'F', 177), +(89144, 'Rosanna', 1964, 'F', 177), +(89145, 'Tresa', 1964, 'F', 177), +(89146, 'Tori', 1964, 'F', 176), +(89147, 'Antionette', 1964, 'F', 175), +(89148, 'Cherry', 1964, 'F', 175), +(89149, 'Hattie', 1964, 'F', 175), +(89150, 'Dinah', 1964, 'F', 174), +(89151, 'Esmeralda', 1964, 'F', 174), +(89152, 'Shana', 1964, 'F', 174), +(89153, 'Aida', 1964, 'F', 173), +(89154, 'Camilla', 1964, 'F', 173), +(89155, 'Deedee', 1964, 'F', 173), +(89156, 'Mercedes', 1964, 'F', 173), +(89157, 'Mollie', 1964, 'F', 173), +(89158, 'Venus', 1964, 'F', 173), +(89159, 'Alfreda', 1964, 'F', 172), +(89160, 'Ginny', 1964, 'F', 172), +(89161, 'Leanna', 1964, 'F', 172), +(89162, 'Lucretia', 1964, 'F', 172), +(89163, 'Marylou', 1964, 'F', 172), +(89164, 'Roxanna', 1964, 'F', 172), +(89165, 'Dolly', 1964, 'F', 171), +(89166, 'Sharla', 1964, 'F', 171), +(89167, 'Dedra', 1964, 'F', 170), +(89168, 'Kathrine', 1964, 'F', 170), +(89169, 'Letha', 1964, 'F', 170), +(89170, 'Magdalena', 1964, 'F', 170), +(89171, 'Kitty', 1964, 'F', 169), +(89172, 'Sydney', 1964, 'F', 169), +(89173, 'Avis', 1964, 'F', 168), +(89174, 'Bettina', 1964, 'F', 168), +(89175, 'Evette', 1964, 'F', 168), +(89176, 'Janeen', 1964, 'F', 167), +(89177, 'Juana', 1964, 'F', 167), +(89178, 'Chrystal', 1964, 'F', 166), +(89179, 'Jeana', 1964, 'F', 166), +(89180, 'Kandy', 1964, 'F', 166), +(89181, 'Lela', 1964, 'F', 166), +(89182, 'Loriann', 1964, 'F', 165), +(89183, 'Marietta', 1964, 'F', 165), +(89184, 'Nelda', 1964, 'F', 165), +(89185, 'Maribeth', 1964, 'F', 164), +(89186, 'Sherie', 1964, 'F', 164), +(89187, 'Barbra', 1964, 'F', 163), +(89188, 'Elvira', 1964, 'F', 163), +(89189, 'Kayla', 1964, 'F', 163), +(89190, 'Trena', 1964, 'F', 163), +(89191, 'Edie', 1964, 'F', 162), +(89192, 'Leila', 1964, 'F', 162), +(89193, 'Fannie', 1964, 'F', 161), +(89194, 'Meg', 1964, 'F', 161), +(89195, 'Renea', 1964, 'F', 161), +(89196, 'Adrian', 1964, 'F', 160), +(89197, 'Geralyn', 1964, 'F', 160), +(89198, 'Katy', 1964, 'F', 160), +(89199, 'Roseanne', 1964, 'F', 159), +(89200, 'Dara', 1964, 'F', 158), +(89201, 'Machelle', 1964, 'F', 158), +(89202, 'Etta', 1964, 'F', 157), +(89203, 'Shiela', 1964, 'F', 157), +(89204, 'William', 1964, 'F', 157), +(89205, 'Aurora', 1964, 'F', 156), +(89206, 'Lenore', 1964, 'F', 155), +(89207, 'Gaye', 1964, 'F', 154), +(89208, 'Gertrude', 1964, 'F', 153), +(89209, 'Karon', 1964, 'F', 153), +(89210, 'Babette', 1964, 'F', 152), +(89211, 'Carey', 1964, 'F', 152), +(89212, 'Carmella', 1964, 'F', 152), +(89213, 'Renata', 1964, 'F', 152), +(89214, 'Ronna', 1964, 'F', 152), +(89215, 'Millie', 1964, 'F', 151), +(89216, 'Rosario', 1964, 'F', 151), +(89217, 'Athena', 1964, 'F', 150), +(89218, 'Dorinda', 1964, 'F', 150), +(89219, 'Elva', 1964, 'F', 150), +(89220, 'Kandi', 1964, 'F', 150), +(89221, 'Althea', 1964, 'F', 149), +(89222, 'Corinna', 1964, 'F', 149), +(89223, 'Mariann', 1964, 'F', 148), +(89224, 'Minerva', 1964, 'F', 148), +(89225, 'Madonna', 1964, 'F', 147), +(89226, 'Darleen', 1964, 'F', 146), +(89227, 'Esperanza', 1964, 'F', 146), +(89228, 'Lorinda', 1964, 'F', 146), +(89229, 'Penni', 1964, 'F', 146), +(89230, 'Debi', 1964, 'F', 145), +(89231, 'Fonda', 1964, 'F', 145), +(89232, 'Francesca', 1964, 'F', 143), +(89233, 'Moira', 1964, 'F', 143), +(89234, 'Anastasia', 1964, 'F', 142), +(89235, 'Beatriz', 1964, 'F', 142), +(89236, 'Cassie', 1964, 'F', 142), +(89237, 'Juliann', 1964, 'F', 142), +(89238, 'Sybil', 1964, 'F', 142), +(89239, 'Louisa', 1964, 'F', 141), +(89240, 'Marva', 1964, 'F', 141), +(89241, 'Melba', 1964, 'F', 141), +(89242, 'Muriel', 1964, 'F', 141), +(89243, 'Tessa', 1964, 'F', 141), +(89244, 'Annetta', 1964, 'F', 140), +(89245, 'Migdalia', 1964, 'F', 140), +(89246, 'Nanci', 1964, 'F', 140), +(89247, 'Cherri', 1964, 'F', 139), +(89248, 'Jerry', 1964, 'F', 139), +(89249, 'Loraine', 1964, 'F', 139), +(89250, 'Mimi', 1964, 'F', 139), +(89251, 'Tia', 1964, 'F', 139), +(89252, 'Angeline', 1964, 'F', 138), +(89253, 'Ester', 1964, 'F', 137), +(89254, 'Nola', 1964, 'F', 137), +(89255, 'Treva', 1964, 'F', 137), +(89256, 'Candi', 1964, 'F', 136), +(89257, 'Cheryle', 1964, 'F', 136), +(89258, 'Hannah', 1964, 'F', 136), +(89259, 'Merri', 1964, 'F', 136), +(89260, 'Petra', 1964, 'F', 136), +(89261, 'Richard', 1964, 'F', 136), +(89262, 'Tamie', 1964, 'F', 136), +(89263, 'Angelita', 1964, 'F', 135), +(89264, 'Margot', 1964, 'F', 135), +(89265, 'Tonda', 1964, 'F', 135), +(89266, 'Darci', 1964, 'F', 134), +(89267, 'Francis', 1964, 'F', 134), +(89268, 'Noemi', 1964, 'F', 134), +(89269, 'Nona', 1964, 'F', 134), +(89270, 'Winifred', 1964, 'F', 134), +(89271, 'Anjanette', 1964, 'F', 133), +(89272, 'Denine', 1964, 'F', 133), +(89273, 'Zelda', 1964, 'F', 133), +(89274, 'Daneen', 1964, 'F', 132), +(89275, 'Donita', 1964, 'F', 132), +(89276, 'Dottie', 1964, 'F', 132), +(89277, 'Evangeline', 1964, 'F', 132), +(89278, 'Hillary', 1964, 'F', 132), +(89279, 'Lily', 1964, 'F', 132), +(89280, 'Blanche', 1964, 'F', 131), +(89281, 'Elissa', 1964, 'F', 131), +(89282, 'Janel', 1964, 'F', 131), +(89283, 'Michell', 1964, 'F', 131), +(89284, 'Collette', 1964, 'F', 130), +(89285, 'Josefina', 1964, 'F', 130), +(89286, 'Melonie', 1964, 'F', 130), +(89287, 'Portia', 1964, 'F', 130), +(89288, 'Debbra', 1964, 'F', 129), +(89289, 'Deeann', 1964, 'F', 129), +(89290, 'Holli', 1964, 'F', 129), +(89291, 'Joanie', 1964, 'F', 129), +(89292, 'Rona', 1964, 'F', 129), +(89293, 'Roxie', 1964, 'F', 129), +(89294, 'Brooke', 1964, 'F', 128), +(89295, 'Charles', 1964, 'F', 128), +(89296, 'Delisa', 1964, 'F', 128), +(89297, 'Joellen', 1964, 'F', 128), +(89298, 'Linette', 1964, 'F', 128), +(89299, 'Loreen', 1964, 'F', 128), +(89300, 'Matilda', 1964, 'F', 128), +(89301, 'Angelique', 1964, 'F', 127), +(89302, 'Bambi', 1964, 'F', 127), +(89303, 'Juliette', 1964, 'F', 127), +(89304, 'Kenneth', 1964, 'F', 127), +(89305, 'Kimberli', 1964, 'F', 127), +(89306, 'Leesa', 1964, 'F', 127), +(89307, 'Marilee', 1964, 'F', 127), +(89308, 'Cathie', 1964, 'F', 126), +(89309, 'Eloise', 1964, 'F', 126), +(89310, 'Mabel', 1964, 'F', 125), +(89311, 'Madelyn', 1964, 'F', 125), +(89312, 'Cyndi', 1964, 'F', 124), +(89313, 'Ina', 1964, 'F', 124), +(89314, 'Maryjane', 1964, 'F', 124), +(89315, 'Aretha', 1964, 'F', 123), +(89316, 'Cornelia', 1964, 'F', 123), +(89317, 'Christal', 1964, 'F', 122), +(89318, 'Debbi', 1964, 'F', 122), +(89319, 'Jacklyn', 1964, 'F', 122), +(89320, 'Louann', 1964, 'F', 122), +(89321, 'Stacia', 1964, 'F', 122), +(89322, 'Beverley', 1964, 'F', 121), +(89323, 'Catharine', 1964, 'F', 121), +(89324, 'Fawn', 1964, 'F', 121), +(89325, 'Jacki', 1964, 'F', 121), +(89326, 'Marti', 1964, 'F', 121), +(89327, 'Shaun', 1964, 'F', 121), +(89328, 'Sherrill', 1964, 'F', 121), +(89329, 'Shirlene', 1964, 'F', 121), +(89330, 'Alisha', 1964, 'F', 120), +(89331, 'Anthony', 1964, 'F', 120), +(89332, 'Brigette', 1964, 'F', 120), +(89333, 'Jena', 1964, 'F', 120), +(89334, 'Kendall', 1964, 'F', 120), +(89335, 'Mark', 1964, 'F', 120), +(89336, 'Cathrine', 1964, 'F', 119), +(89337, 'Charleen', 1964, 'F', 119), +(89338, 'Clarice', 1964, 'F', 119), +(89339, 'Jerilyn', 1964, 'F', 119), +(89340, 'Joseph', 1964, 'F', 119), +(89341, 'Thea', 1964, 'F', 119), +(89342, 'Alyssa', 1964, 'F', 118), +(89343, 'Elaina', 1964, 'F', 118), +(89344, 'Jewell', 1964, 'F', 118), +(89345, 'Karri', 1964, 'F', 118), +(89346, 'Katheryn', 1964, 'F', 118), +(89347, 'Maricela', 1964, 'F', 118), +(89348, 'Rosita', 1964, 'F', 118), +(89349, 'Aleta', 1964, 'F', 117), +(89350, 'Delinda', 1964, 'F', 117), +(89351, 'Jimmie', 1964, 'F', 117), +(89352, 'Lesli', 1964, 'F', 117), +(89353, 'Sabra', 1964, 'F', 117), +(89354, 'Tamala', 1964, 'F', 117), +(89355, 'Velvet', 1964, 'F', 117), +(89356, 'Carleen', 1964, 'F', 116), +(89357, 'Debrah', 1964, 'F', 116), +(89358, 'Fran', 1964, 'F', 116), +(89359, 'Lona', 1964, 'F', 116), +(89360, 'Tommie', 1964, 'F', 116), +(89361, 'Tyra', 1964, 'F', 116), +(89362, 'Earlene', 1964, 'F', 115), +(89363, 'Loren', 1964, 'F', 115), +(89364, 'Monika', 1964, 'F', 115), +(89365, 'Myrtle', 1964, 'F', 115), +(89366, 'Suzie', 1964, 'F', 115), +(89367, 'Tawana', 1964, 'F', 115), +(89368, 'Yolonda', 1964, 'F', 115), +(89369, 'Consuelo', 1964, 'F', 114), +(89370, 'Demetria', 1964, 'F', 114), +(89371, 'Dominique', 1964, 'F', 114), +(89372, 'Kevin', 1964, 'F', 114), +(89373, 'Mavis', 1964, 'F', 114), +(89374, 'Nedra', 1964, 'F', 114), +(89375, 'Romona', 1964, 'F', 114), +(89376, 'Callie', 1964, 'F', 113), +(89377, 'Dawne', 1964, 'F', 113), +(89378, 'Denita', 1964, 'F', 113), +(89379, 'Elvia', 1964, 'F', 113), +(89380, 'May', 1964, 'F', 113), +(89381, 'Scarlett', 1964, 'F', 113), +(89382, 'Thomas', 1964, 'F', 113), +(89383, 'Adrianne', 1964, 'F', 112), +(89384, 'Estelle', 1964, 'F', 112), +(89385, 'Jeanmarie', 1964, 'F', 112), +(89386, 'Kyle', 1964, 'F', 112), +(89387, 'Lissa', 1964, 'F', 112), +(89388, 'Marnie', 1964, 'F', 112), +(89389, 'Bobby', 1964, 'F', 111), +(89390, 'Brigid', 1964, 'F', 111), +(89391, 'Jacque', 1964, 'F', 111), +(89392, 'Marty', 1964, 'F', 111), +(89393, 'Bonny', 1964, 'F', 110), +(89394, 'Carmel', 1964, 'F', 110), +(89395, 'Darcie', 1964, 'F', 110), +(89396, 'Doretha', 1964, 'F', 110), +(89397, 'Janene', 1964, 'F', 110), +(89398, 'Noel', 1964, 'F', 110), +(89399, 'Ora', 1964, 'F', 110), +(89400, 'Charisse', 1964, 'F', 109), +(89401, 'Dalia', 1964, 'F', 109), +(89402, 'Hollie', 1964, 'F', 109), +(89403, 'Kimberlie', 1964, 'F', 109); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(89404, 'Miranda', 1964, 'F', 109), +(89405, 'Trish', 1964, 'F', 109), +(89406, 'Trudi', 1964, 'F', 109), +(89407, 'Willa', 1964, 'F', 109), +(89408, 'Celestine', 1964, 'F', 108), +(89409, 'Cristy', 1964, 'F', 108), +(89410, 'Justina', 1964, 'F', 108), +(89411, 'Lilly', 1964, 'F', 108), +(89412, 'Melony', 1964, 'F', 108), +(89413, 'Risa', 1964, 'F', 108), +(89414, 'Adriene', 1964, 'F', 107), +(89415, 'Inger', 1964, 'F', 107), +(89416, 'Marlena', 1964, 'F', 107), +(89417, 'Melva', 1964, 'F', 107), +(89418, 'Suzanna', 1964, 'F', 107), +(89419, 'Bethann', 1964, 'F', 106), +(89420, 'Casandra', 1964, 'F', 106), +(89421, 'Daria', 1964, 'F', 106), +(89422, 'Delphine', 1964, 'F', 106), +(89423, 'Mable', 1964, 'F', 106), +(89424, 'Millicent', 1964, 'F', 106), +(89425, 'Randy', 1964, 'F', 106), +(89426, 'Reva', 1964, 'F', 106), +(89427, 'Sadie', 1964, 'F', 106), +(89428, 'Bette', 1964, 'F', 105), +(89429, 'Fern', 1964, 'F', 105), +(89430, 'Jannie', 1964, 'F', 105), +(89431, 'Kamala', 1964, 'F', 105), +(89432, 'Alexis', 1964, 'F', 104), +(89433, 'Danelle', 1964, 'F', 104), +(89434, 'Julianna', 1964, 'F', 104), +(89435, 'Starr', 1964, 'F', 104), +(89436, 'Tanja', 1964, 'F', 104), +(89437, 'Tressa', 1964, 'F', 104), +(89438, 'Harriett', 1964, 'F', 103), +(89439, 'Jayme', 1964, 'F', 103), +(89440, 'Lizabeth', 1964, 'F', 103), +(89441, 'Lizzie', 1964, 'F', 103), +(89442, 'Natasha', 1964, 'F', 103), +(89443, 'Tammara', 1964, 'F', 103), +(89444, 'Becki', 1964, 'F', 102), +(89445, 'Gabriela', 1964, 'F', 102), +(89446, 'Isabelle', 1964, 'F', 102), +(89447, 'Karie', 1964, 'F', 102), +(89448, 'Margret', 1964, 'F', 102), +(89449, 'Richelle', 1964, 'F', 102), +(89450, 'Sharyn', 1964, 'F', 102), +(89451, 'Tari', 1964, 'F', 102), +(89452, 'Veda', 1964, 'F', 102), +(89453, 'Abbie', 1964, 'F', 101), +(89454, 'Earline', 1964, 'F', 101), +(89455, 'Jaime', 1964, 'F', 101), +(89456, 'Karan', 1964, 'F', 101), +(89457, 'Lilia', 1964, 'F', 101), +(89458, 'Sharyl', 1964, 'F', 101), +(89459, 'Phoebe', 1964, 'F', 100), +(89460, 'Rhea', 1964, 'F', 100), +(89461, 'Sheena', 1964, 'F', 100), +(89462, 'Tangela', 1964, 'F', 100), +(89463, 'Michael', 1964, 'M', 82674), +(89464, 'John', 1964, 'M', 82536), +(89465, 'David', 1964, 'M', 75066), +(89466, 'James', 1964, 'M', 73050), +(89467, 'Robert', 1964, 'M', 69994), +(89468, 'Mark', 1964, 'M', 45290), +(89469, 'William', 1964, 'M', 44249), +(89470, 'Richard', 1964, 'M', 40106), +(89471, 'Thomas', 1964, 'M', 34464), +(89472, 'Jeffrey', 1964, 'M', 30738), +(89473, 'Joseph', 1964, 'M', 30568), +(89474, 'Steven', 1964, 'M', 29718), +(89475, 'Kevin', 1964, 'M', 29367), +(89476, 'Scott', 1964, 'M', 28518), +(89477, 'Timothy', 1964, 'M', 28099), +(89478, 'Paul', 1964, 'M', 26879), +(89479, 'Charles', 1964, 'M', 25903), +(89480, 'Kenneth', 1964, 'M', 24870), +(89481, 'Daniel', 1964, 'M', 24354), +(89482, 'Brian', 1964, 'M', 24202), +(89483, 'Anthony', 1964, 'M', 20139), +(89484, 'Gregory', 1964, 'M', 19893), +(89485, 'Christopher', 1964, 'M', 19643), +(89486, 'Ronald', 1964, 'M', 18843), +(89487, 'Donald', 1964, 'M', 18060), +(89488, 'Gary', 1964, 'M', 17207), +(89489, 'Edward', 1964, 'M', 15600), +(89490, 'Todd', 1964, 'M', 15355), +(89491, 'Stephen', 1964, 'M', 14975), +(89492, 'Patrick', 1964, 'M', 14703), +(89493, 'Douglas', 1964, 'M', 14611), +(89494, 'Eric', 1964, 'M', 14560), +(89495, 'George', 1964, 'M', 11798), +(89496, 'Keith', 1964, 'M', 11664), +(89497, 'Terry', 1964, 'M', 10859), +(89498, 'Larry', 1964, 'M', 10673), +(89499, 'Andrew', 1964, 'M', 10503), +(89500, 'Randy', 1964, 'M', 10296), +(89501, 'Peter', 1964, 'M', 9907), +(89502, 'Jerry', 1964, 'M', 9617), +(89503, 'Frank', 1964, 'M', 9341), +(89504, 'Dennis', 1964, 'M', 9326), +(89505, 'Matthew', 1964, 'M', 8988), +(89506, 'Raymond', 1964, 'M', 8593), +(89507, 'Jeffery', 1964, 'M', 8363), +(89508, 'Bruce', 1964, 'M', 7897), +(89509, 'Mike', 1964, 'M', 7764), +(89510, 'Craig', 1964, 'M', 7757), +(89511, 'Roger', 1964, 'M', 7389), +(89512, 'Tony', 1964, 'M', 7200), +(89513, 'Steve', 1964, 'M', 7095), +(89514, 'Jeff', 1964, 'M', 6936), +(89515, 'Alan', 1964, 'M', 6809), +(89516, 'Ricky', 1964, 'M', 6755), +(89517, 'Carl', 1964, 'M', 6664), +(89518, 'Danny', 1964, 'M', 6474), +(89519, 'Troy', 1964, 'M', 6305), +(89520, 'Russell', 1964, 'M', 6236), +(89521, 'Rodney', 1964, 'M', 6068), +(89522, 'Gerald', 1964, 'M', 5869), +(89523, 'Wayne', 1964, 'M', 5834), +(89524, 'Joe', 1964, 'M', 5811), +(89525, 'Martin', 1964, 'M', 5725), +(89526, 'Vincent', 1964, 'M', 5677), +(89527, 'Chris', 1964, 'M', 5638), +(89528, 'Randall', 1964, 'M', 5515), +(89529, 'Phillip', 1964, 'M', 5500), +(89530, 'Lawrence', 1964, 'M', 5457), +(89531, 'Barry', 1964, 'M', 5365), +(89532, 'Bryan', 1964, 'M', 5282), +(89533, 'Billy', 1964, 'M', 5192), +(89534, 'Dale', 1964, 'M', 5160), +(89535, 'Bobby', 1964, 'M', 5083), +(89536, 'Curtis', 1964, 'M', 5064), +(89537, 'Johnny', 1964, 'M', 5061), +(89538, 'Philip', 1964, 'M', 4975), +(89539, 'Bradley', 1964, 'M', 4962), +(89540, 'Jimmy', 1964, 'M', 4914), +(89541, 'Jon', 1964, 'M', 4909), +(89542, 'Walter', 1964, 'M', 4848), +(89543, 'Glenn', 1964, 'M', 4748), +(89544, 'Tim', 1964, 'M', 4696), +(89545, 'Jonathan', 1964, 'M', 4642), +(89546, 'Jay', 1964, 'M', 4572), +(89547, 'Dean', 1964, 'M', 4512), +(89548, 'Samuel', 1964, 'M', 4475), +(89549, 'Darryl', 1964, 'M', 4427), +(89550, 'Shawn', 1964, 'M', 4397), +(89551, 'Willie', 1964, 'M', 4151), +(89552, 'Arthur', 1964, 'M', 4150), +(89553, 'Roy', 1964, 'M', 4146), +(89554, 'Henry', 1964, 'M', 4129), +(89555, 'Allen', 1964, 'M', 4104), +(89556, 'Greg', 1964, 'M', 3975), +(89557, 'Jose', 1964, 'M', 3973), +(89558, 'Darrell', 1964, 'M', 3969), +(89559, 'Victor', 1964, 'M', 3948), +(89560, 'Harold', 1964, 'M', 3880), +(89561, 'Jack', 1964, 'M', 3810), +(89562, 'Albert', 1964, 'M', 3762), +(89563, 'Jim', 1964, 'M', 3647), +(89564, 'Louis', 1964, 'M', 3584), +(89565, 'Ralph', 1964, 'M', 3564), +(89566, 'Ronnie', 1964, 'M', 3514), +(89567, 'Frederick', 1964, 'M', 3358), +(89568, 'Eddie', 1964, 'M', 3317), +(89569, 'Tom', 1964, 'M', 3293), +(89570, 'Tommy', 1964, 'M', 3205), +(89571, 'Kurt', 1964, 'M', 3156), +(89572, 'Joel', 1964, 'M', 3139), +(89573, 'Stanley', 1964, 'M', 3135), +(89574, 'Micheal', 1964, 'M', 3086), +(89575, 'Eugene', 1964, 'M', 3078), +(89576, 'Marc', 1964, 'M', 3078), +(89577, 'Leonard', 1964, 'M', 3070), +(89578, 'Howard', 1964, 'M', 3063), +(89579, 'Lee', 1964, 'M', 3036), +(89580, 'Sean', 1964, 'M', 3013), +(89581, 'Marvin', 1964, 'M', 2973), +(89582, 'Dwayne', 1964, 'M', 2869), +(89583, 'Adam', 1964, 'M', 2855), +(89584, 'Rick', 1964, 'M', 2855), +(89585, 'Tracy', 1964, 'M', 2838), +(89586, 'Ernest', 1964, 'M', 2819), +(89587, 'Brent', 1964, 'M', 2746), +(89588, 'Bill', 1964, 'M', 2739), +(89589, 'Darren', 1964, 'M', 2643), +(89590, 'Reginald', 1964, 'M', 2616), +(89591, 'Brett', 1964, 'M', 2551), +(89592, 'Duane', 1964, 'M', 2527), +(89593, 'Benjamin', 1964, 'M', 2508), +(89594, 'Kelly', 1964, 'M', 2492), +(89595, 'Fred', 1964, 'M', 2464), +(89596, 'Melvin', 1964, 'M', 2429), +(89597, 'Harry', 1964, 'M', 2401), +(89598, 'Karl', 1964, 'M', 2401), +(89599, 'Mitchell', 1964, 'M', 2385), +(89600, 'Aaron', 1964, 'M', 2384), +(89601, 'Dan', 1964, 'M', 2366), +(89602, 'Jerome', 1964, 'M', 2322), +(89603, 'Don', 1964, 'M', 2303), +(89604, 'Brad', 1964, 'M', 2281), +(89605, 'Ray', 1964, 'M', 2274), +(89606, 'Norman', 1964, 'M', 2255), +(89607, 'Calvin', 1964, 'M', 2254), +(89608, 'Kent', 1964, 'M', 2246), +(89609, 'Kirk', 1964, 'M', 2231), +(89610, 'Juan', 1964, 'M', 2228), +(89611, 'Earl', 1964, 'M', 2195), +(89612, 'Jesse', 1964, 'M', 2190), +(89613, 'Carlos', 1964, 'M', 2184), +(89614, 'Edwin', 1964, 'M', 2173), +(89615, 'Theodore', 1964, 'M', 2173), +(89616, 'Glen', 1964, 'M', 2125), +(89617, 'Jason', 1964, 'M', 2115), +(89618, 'Derrick', 1964, 'M', 2094), +(89619, 'Lance', 1964, 'M', 2089), +(89620, 'Nicholas', 1964, 'M', 2071), +(89621, 'Francis', 1964, 'M', 2070), +(89622, 'Warren', 1964, 'M', 2034), +(89623, 'Clifford', 1964, 'M', 2022), +(89624, 'Wesley', 1964, 'M', 1970), +(89625, 'Alfred', 1964, 'M', 1960), +(89626, 'Andre', 1964, 'M', 1896), +(89627, 'Bernard', 1964, 'M', 1875), +(89628, 'Clarence', 1964, 'M', 1774), +(89629, 'Gordon', 1964, 'M', 1774), +(89630, 'Antonio', 1964, 'M', 1753), +(89631, 'Manuel', 1964, 'M', 1639), +(89632, 'Guy', 1964, 'M', 1605), +(89633, 'Lonnie', 1964, 'M', 1600), +(89634, 'Derek', 1964, 'M', 1588), +(89635, 'Leroy', 1964, 'M', 1587), +(89636, 'Vernon', 1964, 'M', 1570), +(89637, 'Kerry', 1964, 'M', 1569), +(89638, 'Luis', 1964, 'M', 1565), +(89639, 'Tyrone', 1964, 'M', 1551), +(89640, 'Perry', 1964, 'M', 1550), +(89641, 'Dave', 1964, 'M', 1534), +(89642, 'Neil', 1964, 'M', 1531), +(89643, 'Daryl', 1964, 'M', 1530), +(89644, 'Gene', 1964, 'M', 1530), +(89645, 'Gilbert', 1964, 'M', 1518), +(89646, 'Stuart', 1964, 'M', 1513), +(89647, 'Ted', 1964, 'M', 1507), +(89648, 'Gregg', 1964, 'M', 1505), +(89649, 'Maurice', 1964, 'M', 1499), +(89650, 'Nathan', 1964, 'M', 1498), +(89651, 'Franklin', 1964, 'M', 1497), +(89652, 'Leon', 1964, 'M', 1485), +(89653, 'Kyle', 1964, 'M', 1478), +(89654, 'Ken', 1964, 'M', 1476), +(89655, 'Andy', 1964, 'M', 1468), +(89656, 'Alvin', 1964, 'M', 1459), +(89657, 'Lloyd', 1964, 'M', 1459), +(89658, 'Leslie', 1964, 'M', 1446), +(89659, 'Marty', 1964, 'M', 1446), +(89660, 'Bob', 1964, 'M', 1433), +(89661, 'Doug', 1964, 'M', 1410), +(89662, 'Kenny', 1964, 'M', 1401), +(89663, 'Herbert', 1964, 'M', 1392), +(89664, 'Wade', 1964, 'M', 1379), +(89665, 'Joey', 1964, 'M', 1368), +(89666, 'Rickey', 1964, 'M', 1358), +(89667, 'Marcus', 1964, 'M', 1357), +(89668, 'Mario', 1964, 'M', 1356), +(89669, 'Dana', 1964, 'M', 1355), +(89670, 'Ruben', 1964, 'M', 1343), +(89671, 'Ron', 1964, 'M', 1334), +(89672, 'Ricardo', 1964, 'M', 1317), +(89673, 'Timmy', 1964, 'M', 1301), +(89674, 'Alexander', 1964, 'M', 1291), +(89675, 'Byron', 1964, 'M', 1288), +(89676, 'Terrence', 1964, 'M', 1269), +(89677, 'Kelvin', 1964, 'M', 1258), +(89678, 'Dwight', 1964, 'M', 1257), +(89679, 'Lewis', 1964, 'M', 1250), +(89680, 'Alex', 1964, 'M', 1243), +(89681, 'Floyd', 1964, 'M', 1200), +(89682, 'Allan', 1964, 'M', 1170), +(89683, 'Erik', 1964, 'M', 1167), +(89684, 'Robin', 1964, 'M', 1162), +(89685, 'Neal', 1964, 'M', 1128), +(89686, 'Terrance', 1964, 'M', 1120), +(89687, 'Jamie', 1964, 'M', 1111), +(89688, 'Donnie', 1964, 'M', 1108), +(89689, 'Roland', 1964, 'M', 1087), +(89690, 'Jesus', 1964, 'M', 1075), +(89691, 'Charlie', 1964, 'M', 1070), +(89692, 'Roberto', 1964, 'M', 1059), +(89693, 'Jimmie', 1964, 'M', 1053), +(89694, 'Arnold', 1964, 'M', 1042), +(89695, 'Leo', 1964, 'M', 1027), +(89696, 'Roderick', 1964, 'M', 1027), +(89697, 'Gerard', 1964, 'M', 1025), +(89698, 'Ross', 1964, 'M', 1025), +(89699, 'Travis', 1964, 'M', 1025), +(89700, 'Nathaniel', 1964, 'M', 1023), +(89701, 'Darin', 1964, 'M', 1022), +(89702, 'Clinton', 1964, 'M', 1020), +(89703, 'Terence', 1964, 'M', 1016), +(89704, 'Wendell', 1964, 'M', 1015), +(89705, 'Oscar', 1964, 'M', 1001), +(89706, 'Lester', 1964, 'M', 996), +(89707, 'Jackie', 1964, 'M', 983), +(89708, 'Milton', 1964, 'M', 978), +(89709, 'Sam', 1964, 'M', 958), +(89710, 'Rex', 1964, 'M', 957), +(89711, 'Miguel', 1964, 'M', 948), +(89712, 'Hector', 1964, 'M', 942), +(89713, 'Clayton', 1964, 'M', 934), +(89714, 'Johnnie', 1964, 'M', 926), +(89715, 'Herman', 1964, 'M', 914), +(89716, 'Jessie', 1964, 'M', 908), +(89717, 'Freddie', 1964, 'M', 907), +(89718, 'Shane', 1964, 'M', 904), +(89719, 'Clyde', 1964, 'M', 891), +(89720, 'Matt', 1964, 'M', 883), +(89721, 'Chad', 1964, 'M', 879), +(89722, 'Ben', 1964, 'M', 870), +(89723, 'Fredrick', 1964, 'M', 870), +(89724, 'Harvey', 1964, 'M', 864), +(89725, 'Geoffrey', 1964, 'M', 848), +(89726, 'Robbie', 1964, 'M', 848), +(89727, 'Raul', 1964, 'M', 838), +(89728, 'Clifton', 1964, 'M', 835), +(89729, 'Marshall', 1964, 'M', 829), +(89730, 'Nelson', 1964, 'M', 825), +(89731, 'Randal', 1964, 'M', 822), +(89732, 'Francisco', 1964, 'M', 818), +(89733, 'Randolph', 1964, 'M', 817), +(89734, 'Darrin', 1964, 'M', 801), +(89735, 'Nick', 1964, 'M', 798), +(89736, 'Chuck', 1964, 'M', 795), +(89737, 'Adrian', 1964, 'M', 787), +(89738, 'Bret', 1964, 'M', 787), +(89739, 'Kim', 1964, 'M', 778), +(89740, 'Carlton', 1964, 'M', 777), +(89741, 'Rene', 1964, 'M', 777), +(89742, 'Ramon', 1964, 'M', 763), +(89743, 'Shannon', 1964, 'M', 760), +(89744, 'Cary', 1964, 'M', 749), +(89745, 'Pat', 1964, 'M', 748), +(89746, 'Cedric', 1964, 'M', 741), +(89747, 'Frankie', 1964, 'M', 740), +(89748, 'Jody', 1964, 'M', 740), +(89749, 'Garry', 1964, 'M', 738), +(89750, 'Sammy', 1964, 'M', 737), +(89751, 'Cecil', 1964, 'M', 731), +(89752, 'Sidney', 1964, 'M', 731), +(89753, 'Hugh', 1964, 'M', 722), +(89754, 'Edgar', 1964, 'M', 721), +(89755, 'Claude', 1964, 'M', 718), +(89756, 'Chester', 1964, 'M', 710), +(89757, 'Christian', 1964, 'M', 710), +(89758, 'Loren', 1964, 'M', 709), +(89759, 'Pedro', 1964, 'M', 708), +(89760, 'Damon', 1964, 'M', 701), +(89761, 'Angel', 1964, 'M', 695), +(89762, 'Angelo', 1964, 'M', 694), +(89763, 'Everett', 1964, 'M', 694), +(89764, 'Jaime', 1964, 'M', 694), +(89765, 'Clark', 1964, 'M', 668), +(89766, 'Grant', 1964, 'M', 668), +(89767, 'Curt', 1964, 'M', 666), +(89768, 'Lorenzo', 1964, 'M', 654), +(89769, 'Lynn', 1964, 'M', 646), +(89770, 'Wallace', 1964, 'M', 628), +(89771, 'Armando', 1964, 'M', 626), +(89772, 'Fernando', 1964, 'M', 620), +(89773, 'Gabriel', 1964, 'M', 618), +(89774, 'Dewayne', 1964, 'M', 612), +(89775, 'Jorge', 1964, 'M', 609), +(89776, 'Ivan', 1964, 'M', 607), +(89777, 'Evan', 1964, 'M', 606), +(89778, 'Orlando', 1964, 'M', 605), +(89779, 'Rudy', 1964, 'M', 603), +(89780, 'Bradford', 1964, 'M', 602), +(89781, 'Darrel', 1964, 'M', 594), +(89782, 'Benny', 1964, 'M', 591), +(89783, 'Dominic', 1964, 'M', 589), +(89784, 'Morris', 1964, 'M', 589), +(89785, 'Javier', 1964, 'M', 586), +(89786, 'Rafael', 1964, 'M', 579), +(89787, 'Bart', 1964, 'M', 577), +(89788, 'Clay', 1964, 'M', 575), +(89789, 'Shaun', 1964, 'M', 574), +(89790, 'Myron', 1964, 'M', 573), +(89791, 'Scot', 1964, 'M', 569), +(89792, 'Monte', 1964, 'M', 568), +(89793, 'Felix', 1964, 'M', 567), +(89794, 'Teddy', 1964, 'M', 555), +(89795, 'Pete', 1964, 'M', 549), +(89796, 'Rob', 1964, 'M', 547), +(89797, 'Virgil', 1964, 'M', 547), +(89798, 'Salvatore', 1964, 'M', 546), +(89799, 'Trent', 1964, 'M', 544), +(89800, 'Tod', 1964, 'M', 542), +(89801, 'Kendall', 1964, 'M', 538), +(89802, 'Stacy', 1964, 'M', 533), +(89803, 'Otis', 1964, 'M', 531), +(89804, 'Alfredo', 1964, 'M', 530), +(89805, 'Jacob', 1964, 'M', 525), +(89806, 'Max', 1964, 'M', 525), +(89807, 'Ryan', 1964, 'M', 520), +(89808, 'Lyle', 1964, 'M', 515), +(89809, 'Bennie', 1964, 'M', 513), +(89810, 'Lyndon', 1964, 'M', 513), +(89811, 'Julian', 1964, 'M', 510), +(89812, 'Mickey', 1964, 'M', 508), +(89813, 'Stewart', 1964, 'M', 503), +(89814, 'Isaac', 1964, 'M', 497), +(89815, 'Justin', 1964, 'M', 496), +(89816, 'Alberto', 1964, 'M', 493), +(89817, 'Bryant', 1964, 'M', 489), +(89818, 'Edmund', 1964, 'M', 486), +(89819, 'Phil', 1964, 'M', 478), +(89820, 'Clint', 1964, 'M', 477), +(89821, 'Eduardo', 1964, 'M', 474), +(89822, 'Blake', 1964, 'M', 472), +(89823, 'Malcolm', 1964, 'M', 471), +(89824, 'Alton', 1964, 'M', 463), +(89825, 'Corey', 1964, 'M', 460), +(89826, 'Laurence', 1964, 'M', 456), +(89827, 'Marion', 1964, 'M', 456), +(89828, 'Rocky', 1964, 'M', 454), +(89829, 'Monty', 1964, 'M', 451), +(89830, 'Preston', 1964, 'M', 451), +(89831, 'Alonzo', 1964, 'M', 450), +(89832, 'Luther', 1964, 'M', 449), +(89833, 'Mathew', 1964, 'M', 447), +(89834, 'Arturo', 1964, 'M', 446), +(89835, 'Luke', 1964, 'M', 446), +(89836, 'Sherman', 1964, 'M', 446), +(89837, 'Stephan', 1964, 'M', 442), +(89838, 'Vince', 1964, 'M', 442), +(89839, 'Jerald', 1964, 'M', 441), +(89840, 'Ed', 1964, 'M', 438), +(89841, 'Willard', 1964, 'M', 437), +(89842, 'Ian', 1964, 'M', 433), +(89843, 'Kris', 1964, 'M', 433), +(89844, 'Cory', 1964, 'M', 430), +(89845, 'Enrique', 1964, 'M', 430), +(89846, 'Dexter', 1964, 'M', 428), +(89847, 'Spencer', 1964, 'M', 425), +(89848, 'Jeffry', 1964, 'M', 421), +(89849, 'Rusty', 1964, 'M', 420), +(89850, 'Scotty', 1964, 'M', 420), +(89851, 'Ira', 1964, 'M', 419), +(89852, 'Drew', 1964, 'M', 418), +(89853, 'Julius', 1964, 'M', 418), +(89854, 'Earnest', 1964, 'M', 417), +(89855, 'Robby', 1964, 'M', 411), +(89856, 'Sheldon', 1964, 'M', 410), +(89857, 'Stevie', 1964, 'M', 408), +(89858, 'Vance', 1964, 'M', 407), +(89859, 'Leland', 1964, 'M', 400), +(89860, 'Delbert', 1964, 'M', 398), +(89861, 'Blaine', 1964, 'M', 397), +(89862, 'Casey', 1964, 'M', 397), +(89863, 'Van', 1964, 'M', 395), +(89864, 'Colin', 1964, 'M', 393), +(89865, 'Joshua', 1964, 'M', 392), +(89866, 'Julio', 1964, 'M', 392), +(89867, 'Roosevelt', 1964, 'M', 392), +(89868, 'Archie', 1964, 'M', 391), +(89869, 'Alfonso', 1964, 'M', 390), +(89870, 'Elmer', 1964, 'M', 390), +(89871, 'Sylvester', 1964, 'M', 389), +(89872, 'Darnell', 1964, 'M', 386), +(89873, 'Forrest', 1964, 'M', 381), +(89874, 'Rodger', 1964, 'M', 380), +(89875, 'Stacey', 1964, 'M', 379), +(89876, 'Doyle', 1964, 'M', 378), +(89877, 'Ernesto', 1964, 'M', 378), +(89878, 'Rudolph', 1964, 'M', 378), +(89879, 'Toby', 1964, 'M', 375), +(89880, 'Ty', 1964, 'M', 373), +(89881, 'Noel', 1964, 'M', 372), +(89882, 'Tommie', 1964, 'M', 371), +(89883, 'Lionel', 1964, 'M', 368), +(89884, 'Oliver', 1964, 'M', 368), +(89885, 'Rod', 1964, 'M', 367), +(89886, 'Rory', 1964, 'M', 363), +(89887, 'Darwin', 1964, 'M', 353), +(89888, 'Lowell', 1964, 'M', 352), +(89889, 'Marco', 1964, 'M', 351), +(89890, 'Horace', 1964, 'M', 349), +(89891, 'Seth', 1964, 'M', 348), +(89892, 'Bryon', 1964, 'M', 345), +(89893, 'Dane', 1964, 'M', 342), +(89894, 'Tracey', 1964, 'M', 342), +(89895, 'Lamont', 1964, 'M', 340), +(89896, 'Boyd', 1964, 'M', 337), +(89897, 'Hubert', 1964, 'M', 337), +(89898, 'Zachary', 1964, 'M', 336), +(89899, 'Bert', 1964, 'M', 335), +(89900, 'Dallas', 1964, 'M', 335), +(89901, 'Dirk', 1964, 'M', 333), +(89902, 'Kip', 1964, 'M', 333), +(89903, 'Carey', 1964, 'M', 332), +(89904, 'Rickie', 1964, 'M', 332), +(89905, 'Mack', 1964, 'M', 331), +(89906, 'Wilbert', 1964, 'M', 326), +(89907, 'Rodolfo', 1964, 'M', 324), +(89908, 'Willis', 1964, 'M', 324), +(89909, 'Grady', 1964, 'M', 318), +(89910, 'Miles', 1964, 'M', 316), +(89911, 'Daren', 1964, 'M', 314), +(89912, 'Sergio', 1964, 'M', 314), +(89913, 'Dominick', 1964, 'M', 313), +(89914, 'Ernie', 1964, 'M', 312), +(89915, 'Garrett', 1964, 'M', 310), +(89916, 'Tyler', 1964, 'M', 309), +(89917, 'Brandon', 1964, 'M', 305), +(89918, 'Rufus', 1964, 'M', 304), +(89919, 'Salvador', 1964, 'M', 303), +(89920, 'Cameron', 1964, 'M', 301), +(89921, 'Devin', 1964, 'M', 299), +(89922, 'Alejandro', 1964, 'M', 298), +(89923, 'Kurtis', 1964, 'M', 298), +(89924, 'Gerry', 1964, 'M', 297), +(89925, 'Owen', 1964, 'M', 295), +(89926, 'Ronny', 1964, 'M', 295), +(89927, 'Brendan', 1964, 'M', 289), +(89928, 'Erick', 1964, 'M', 288), +(89929, 'Donny', 1964, 'M', 287), +(89930, 'Sterling', 1964, 'M', 285), +(89931, 'Ellis', 1964, 'M', 284), +(89932, 'Freddy', 1964, 'M', 284), +(89933, 'Gilberto', 1964, 'M', 284), +(89934, 'Dewey', 1964, 'M', 281), +(89935, 'Buddy', 1964, 'M', 280), +(89936, 'Vaughn', 1964, 'M', 280), +(89937, 'Lane', 1964, 'M', 279), +(89938, 'Wilbur', 1964, 'M', 276), +(89939, 'Denis', 1964, 'M', 275), +(89940, 'Abel', 1964, 'M', 274), +(89941, 'Abraham', 1964, 'M', 273), +(89942, 'Dion', 1964, 'M', 272), +(89943, 'Al', 1964, 'M', 268), +(89944, 'Marlon', 1964, 'M', 267), +(89945, 'Joesph', 1964, 'M', 265), +(89946, 'Russ', 1964, 'M', 265), +(89947, 'Gerardo', 1964, 'M', 264), +(89948, 'Homer', 1964, 'M', 263), +(89949, 'Reynaldo', 1964, 'M', 262), +(89950, 'Cornelius', 1964, 'M', 261), +(89951, 'Louie', 1964, 'M', 261), +(89952, 'Wilson', 1964, 'M', 261), +(89953, 'Andres', 1964, 'M', 260), +(89954, 'Pablo', 1964, 'M', 260), +(89955, 'Lamar', 1964, 'M', 257), +(89956, 'Ervin', 1964, 'M', 255), +(89957, 'Randell', 1964, 'M', 253), +(89958, 'Conrad', 1964, 'M', 252), +(89959, 'Royce', 1964, 'M', 252), +(89960, 'Rolando', 1964, 'M', 251), +(89961, 'Hans', 1964, 'M', 249), +(89962, 'Stan', 1964, 'M', 249), +(89963, 'Guadalupe', 1964, 'M', 247), +(89964, 'Ward', 1964, 'M', 245), +(89965, 'Aubrey', 1964, 'M', 243), +(89966, 'Donnell', 1964, 'M', 242), +(89967, 'Israel', 1964, 'M', 242), +(89968, 'Elbert', 1964, 'M', 241), +(89969, 'Quentin', 1964, 'M', 239), +(89970, 'Garth', 1964, 'M', 238), +(89971, 'Will', 1964, 'M', 237), +(89972, 'Alphonso', 1964, 'M', 236), +(89973, 'Jonathon', 1964, 'M', 235), +(89974, 'Reuben', 1964, 'M', 235), +(89975, 'Scottie', 1964, 'M', 235), +(89976, 'Blair', 1964, 'M', 230), +(89977, 'Cliff', 1964, 'M', 230), +(89978, 'Kennedy', 1964, 'M', 230), +(89979, 'Garland', 1964, 'M', 229), +(89980, 'Denny', 1964, 'M', 228), +(89981, 'Kirby', 1964, 'M', 228), +(89982, 'Marlin', 1964, 'M', 227), +(89983, 'Pierre', 1964, 'M', 225), +(89984, 'Morgan', 1964, 'M', 224), +(89985, 'Rich', 1964, 'M', 224), +(89986, 'Johnathan', 1964, 'M', 223), +(89987, 'Jess', 1964, 'M', 222), +(89988, 'Simon', 1964, 'M', 222), +(89989, 'Terrell', 1964, 'M', 221), +(89990, 'Elliott', 1964, 'M', 220), +(89991, 'Marcos', 1964, 'M', 220), +(89992, 'Richie', 1964, 'M', 220), +(89993, 'Thaddeus', 1964, 'M', 220), +(89994, 'Ismael', 1964, 'M', 219), +(89995, 'Felipe', 1964, 'M', 218), +(89996, 'Cleveland', 1964, 'M', 216), +(89997, 'Jan', 1964, 'M', 216), +(89998, 'Galen', 1964, 'M', 215), +(89999, 'Austin', 1964, 'M', 213), +(90000, 'Jeremy', 1964, 'M', 213), +(90001, 'Ramiro', 1964, 'M', 213), +(90002, 'Cesar', 1964, 'M', 212), +(90003, 'Demetrius', 1964, 'M', 211), +(90004, 'Dino', 1964, 'M', 211), +(90005, 'Quintin', 1964, 'M', 211), +(90006, 'Kennith', 1964, 'M', 210), +(90007, 'Edmond', 1964, 'M', 209), +(90008, 'Emanuel', 1964, 'M', 208), +(90009, 'Percy', 1964, 'M', 208), +(90010, 'Reggie', 1964, 'M', 208), +(90011, 'Sammie', 1964, 'M', 208), +(90012, 'Jefferson', 1964, 'M', 206), +(90013, 'Irvin', 1964, 'M', 205), +(90014, 'Carroll', 1964, 'M', 204), +(90015, 'Emmett', 1964, 'M', 204), +(90016, 'Ethan', 1964, 'M', 203), +(90017, 'Cornell', 1964, 'M', 202), +(90018, 'Lincoln', 1964, 'M', 202), +(90019, 'Wilfred', 1964, 'M', 202), +(90020, 'Amos', 1964, 'M', 201), +(90021, 'Danial', 1964, 'M', 200), +(90022, 'Winston', 1964, 'M', 200), +(90023, 'Erich', 1964, 'M', 199), +(90024, 'Hal', 1964, 'M', 199), +(90025, 'Lon', 1964, 'M', 198), +(90026, 'Tomas', 1964, 'M', 198), +(90027, 'Michel', 1964, 'M', 197), +(90028, 'Bryce', 1964, 'M', 196), +(90029, 'Harlan', 1964, 'M', 195), +(90030, 'Woodrow', 1964, 'M', 195), +(90031, 'Rocco', 1964, 'M', 194), +(90032, 'Sandy', 1964, 'M', 194), +(90033, 'Billie', 1964, 'M', 191), +(90034, 'Cody', 1964, 'M', 191), +(90035, 'Guillermo', 1964, 'M', 191), +(90036, 'Quinton', 1964, 'M', 191), +(90037, 'Barton', 1964, 'M', 190), +(90038, 'Bennett', 1964, 'M', 189), +(90039, 'Avery', 1964, 'M', 188), +(90040, 'Brock', 1964, 'M', 188), +(90041, 'Lonny', 1964, 'M', 187), +(90042, 'Tad', 1964, 'M', 187), +(90043, 'Barney', 1964, 'M', 186), +(90044, 'Hank', 1964, 'M', 186), +(90045, 'Mitch', 1964, 'M', 186), +(90046, 'Reed', 1964, 'M', 185), +(90047, 'Kraig', 1964, 'M', 184), +(90048, 'Damian', 1964, 'M', 183), +(90049, 'Elias', 1964, 'M', 182), +(90050, 'Roman', 1964, 'M', 182), +(90051, 'Eddy', 1964, 'M', 180), +(90052, 'Lorne', 1964, 'M', 180), +(90053, 'Gustavo', 1964, 'M', 179), +(90054, 'Mitchel', 1964, 'M', 179), +(90055, 'Carmen', 1964, 'M', 178), +(90056, 'Pernell', 1964, 'M', 178), +(90057, 'Rogelio', 1964, 'M', 178), +(90058, 'Murray', 1964, 'M', 176), +(90059, 'Xavier', 1964, 'M', 176), +(90060, 'Elton', 1964, 'M', 175), +(90061, 'Kermit', 1964, 'M', 175), +(90062, 'Moses', 1964, 'M', 175), +(90063, 'Junior', 1964, 'M', 173), +(90064, 'Darron', 1964, 'M', 171), +(90065, 'Erwin', 1964, 'M', 171), +(90066, 'Benito', 1964, 'M', 170), +(90067, 'Antoine', 1964, 'M', 169), +(90068, 'Nicky', 1964, 'M', 168), +(90069, 'Bernie', 1964, 'M', 166), +(90070, 'Keven', 1964, 'M', 166), +(90071, 'Merle', 1964, 'M', 166), +(90072, 'Jean', 1964, 'M', 165), +(90073, 'Jordan', 1964, 'M', 165), +(90074, 'Nolan', 1964, 'M', 164), +(90075, 'Wilfredo', 1964, 'M', 163), +(90076, 'Burton', 1964, 'M', 162), +(90077, 'Chip', 1964, 'M', 162), +(90078, 'Levi', 1964, 'M', 162), +(90079, 'Vito', 1964, 'M', 161), +(90080, 'Elijah', 1964, 'M', 160), +(90081, 'Gino', 1964, 'M', 160), +(90082, 'Norris', 1964, 'M', 159), +(90083, 'Santos', 1964, 'M', 158), +(90084, 'Grover', 1964, 'M', 156), +(90085, 'Elvin', 1964, 'M', 155), +(90086, 'Brady', 1964, 'M', 154), +(90087, 'Duncan', 1964, 'M', 154), +(90088, 'Shelton', 1964, 'M', 154), +(90089, 'Ritchie', 1964, 'M', 153), +(90090, 'Anton', 1964, 'M', 152), +(90091, 'Bobbie', 1964, 'M', 152), +(90092, 'Emilio', 1964, 'M', 152), +(90093, 'Gavin', 1964, 'M', 152), +(90094, 'Lenny', 1964, 'M', 152), +(90095, 'Kenton', 1964, 'M', 151), +(90096, 'Linwood', 1964, 'M', 151), +(90097, 'Derick', 1964, 'M', 150), +(90098, 'Destry', 1964, 'M', 149), +(90099, 'Emory', 1964, 'M', 149), +(90100, 'Kristopher', 1964, 'M', 149), +(90101, 'Harley', 1964, 'M', 148), +(90102, 'Russel', 1964, 'M', 148), +(90103, 'Marcel', 1964, 'M', 147), +(90104, 'Ned', 1964, 'M', 147), +(90105, 'Santiago', 1964, 'M', 147), +(90106, 'Courtney', 1964, 'M', 146), +(90107, 'Efrain', 1964, 'M', 146), +(90108, 'Thurman', 1964, 'M', 146), +(90109, 'Eldon', 1964, 'M', 144), +(90110, 'Reid', 1964, 'M', 144), +(90111, 'Chet', 1964, 'M', 143), +(90112, 'Domingo', 1964, 'M', 143), +(90113, 'Gus', 1964, 'M', 142), +(90114, 'Dwain', 1964, 'M', 141), +(90115, 'Errol', 1964, 'M', 141), +(90116, 'Fabian', 1964, 'M', 141), +(90117, 'Sanford', 1964, 'M', 141), +(90118, 'Jasper', 1964, 'M', 140), +(90119, 'Kirt', 1964, 'M', 140), +(90120, 'Irving', 1964, 'M', 139), +(90121, 'Omar', 1964, 'M', 139), +(90122, 'Noah', 1964, 'M', 138), +(90123, 'Stefan', 1964, 'M', 138), +(90124, 'Toney', 1964, 'M', 138), +(90125, 'Theron', 1964, 'M', 137), +(90126, 'Frederic', 1964, 'M', 136), +(90127, 'Desmond', 1964, 'M', 135), +(90128, 'Jake', 1964, 'M', 134), +(90129, 'Mary', 1964, 'M', 134), +(90130, 'Carter', 1964, 'M', 133), +(90131, 'Sonny', 1964, 'M', 133), +(90132, 'Emil', 1964, 'M', 132), +(90133, 'Harrison', 1964, 'M', 132), +(90134, 'Solomon', 1964, 'M', 132), +(90135, 'Elliot', 1964, 'M', 131), +(90136, 'Ignacio', 1964, 'M', 131), +(90137, 'Lisa', 1964, 'M', 131), +(90138, 'Nicolas', 1964, 'M', 131), +(90139, 'Sebastian', 1964, 'M', 131), +(90140, 'Thad', 1964, 'M', 131), +(90141, 'Elvis', 1964, 'M', 130), +(90142, 'Leonardo', 1964, 'M', 129), +(90143, 'Deron', 1964, 'M', 128), +(90144, 'Greggory', 1964, 'M', 128), +(90145, 'Rodrick', 1964, 'M', 128), +(90146, 'August', 1964, 'M', 127), +(90147, 'Derwin', 1964, 'M', 127), +(90148, 'Wes', 1964, 'M', 127), +(90149, 'Norbert', 1964, 'M', 126), +(90150, 'Art', 1964, 'M', 125), +(90151, 'Darius', 1964, 'M', 125), +(90152, 'Emery', 1964, 'M', 125), +(90153, 'Fitzgerald', 1964, 'M', 125), +(90154, 'Denver', 1964, 'M', 124), +(90155, 'Hiram', 1964, 'M', 124), +(90156, 'Humberto', 1964, 'M', 124), +(90157, 'Bradly', 1964, 'M', 123), +(90158, 'Jerrold', 1964, 'M', 123), +(90159, 'Kelley', 1964, 'M', 123), +(90160, 'Saul', 1964, 'M', 123), +(90161, 'Ulysses', 1964, 'M', 123), +(90162, 'Whitney', 1964, 'M', 123), +(90163, 'Eli', 1964, 'M', 122), +(90164, 'Emmanuel', 1964, 'M', 122), +(90165, 'Jeremiah', 1964, 'M', 122), +(90166, 'Timmie', 1964, 'M', 122), +(90167, 'Britt', 1964, 'M', 121), +(90168, 'Dante', 1964, 'M', 121), +(90169, 'Quinn', 1964, 'M', 120), +(90170, 'Donovan', 1964, 'M', 119), +(90171, 'Otto', 1964, 'M', 119), +(90172, 'Trevor', 1964, 'M', 119), +(90173, 'Dannie', 1964, 'M', 118), +(90174, 'Joaquin', 1964, 'M', 118), +(90175, 'Wiley', 1964, 'M', 118), +(90176, 'Coy', 1964, 'M', 117), +(90177, 'Daron', 1964, 'M', 117), +(90178, 'Shelby', 1964, 'M', 117), +(90179, 'Carlo', 1964, 'M', 116), +(90180, 'Zane', 1964, 'M', 116), +(90181, 'Carmine', 1964, 'M', 115), +(90182, 'Devon', 1964, 'M', 115), +(90183, 'Everette', 1964, 'M', 115), +(90184, 'Alec', 1964, 'M', 114), +(90185, 'Lanny', 1964, 'M', 114), +(90186, 'Heriberto', 1964, 'M', 113), +(90187, 'Adolfo', 1964, 'M', 112), +(90188, 'Donn', 1964, 'M', 112), +(90189, 'Myles', 1964, 'M', 112), +(90190, 'Orville', 1964, 'M', 112), +(90191, 'Roscoe', 1964, 'M', 112), +(90192, 'Weldon', 1964, 'M', 112), +(90193, 'Antony', 1964, 'M', 111), +(90194, 'Edwardo', 1964, 'M', 111), +(90195, 'Jefferey', 1964, 'M', 111), +(90196, 'Loyd', 1964, 'M', 111), +(90197, 'Ashley', 1964, 'M', 110), +(90198, 'Noe', 1964, 'M', 110), +(90199, 'Odell', 1964, 'M', 110), +(90200, 'Dick', 1964, 'M', 109), +(90201, 'Stoney', 1964, 'M', 109), +(90202, 'Mikel', 1964, 'M', 108), +(90203, 'Augustine', 1964, 'M', 107), +(90204, 'Davis', 1964, 'M', 107), +(90205, 'Gil', 1964, 'M', 107), +(90206, 'Jacques', 1964, 'M', 107), +(90207, 'Jude', 1964, 'M', 107), +(90208, 'Rhett', 1964, 'M', 107), +(90209, 'Jerold', 1964, 'M', 106), +(90210, 'Riley', 1964, 'M', 106), +(90211, 'Dudley', 1964, 'M', 105), +(90212, 'Les', 1964, 'M', 105), +(90213, 'Brooks', 1964, 'M', 104), +(90214, 'Hugo', 1964, 'M', 104), +(90215, 'Timmothy', 1964, 'M', 104), +(90216, 'Dalton', 1964, 'M', 103), +(90217, 'Elwood', 1964, 'M', 103), +(90218, 'Jackson', 1964, 'M', 103), +(90219, 'Layne', 1964, 'M', 103), +(90220, 'Vern', 1964, 'M', 103), +(90221, 'Wally', 1964, 'M', 103), +(90222, 'Garret', 1964, 'M', 102), +(90223, 'Robb', 1964, 'M', 102), +(90224, 'Charley', 1964, 'M', 101), +(90225, 'Darrick', 1964, 'M', 100), +(90226, 'Del', 1964, 'M', 100), +(90227, 'Esteban', 1964, 'M', 100), +(90228, 'Graham', 1964, 'M', 100), +(90229, 'Lisa', 1965, 'F', 60268), +(90230, 'Mary', 1965, 'F', 34270), +(90231, 'Karen', 1965, 'F', 32874), +(90232, 'Kimberly', 1965, 'F', 28833), +(90233, 'Susan', 1965, 'F', 26333), +(90234, 'Patricia', 1965, 'F', 23554), +(90235, 'Donna', 1965, 'F', 19697), +(90236, 'Linda', 1965, 'F', 19339), +(90237, 'Cynthia', 1965, 'F', 19247), +(90238, 'Angela', 1965, 'F', 18751), +(90239, 'Tammy', 1965, 'F', 18005), +(90240, 'Pamela', 1965, 'F', 17475), +(90241, 'Deborah', 1965, 'F', 17084), +(90242, 'Julie', 1965, 'F', 16991), +(90243, 'Sandra', 1965, 'F', 16373), +(90244, 'Elizabeth', 1965, 'F', 16319), +(90245, 'Laura', 1965, 'F', 16215), +(90246, 'Michelle', 1965, 'F', 16215), +(90247, 'Lori', 1965, 'F', 15698), +(90248, 'Jennifer', 1965, 'F', 15211), +(90249, 'Christine', 1965, 'F', 15196), +(90250, 'Sharon', 1965, 'F', 15132), +(90251, 'Brenda', 1965, 'F', 15062), +(90252, 'Teresa', 1965, 'F', 14578), +(90253, 'Barbara', 1965, 'F', 14026), +(90254, 'Dawn', 1965, 'F', 13336), +(90255, 'Debra', 1965, 'F', 13100), +(90256, 'Denise', 1965, 'F', 13030), +(90257, 'Tina', 1965, 'F', 12821), +(90258, 'Kelly', 1965, 'F', 12760), +(90259, 'Cheryl', 1965, 'F', 12552), +(90260, 'Nancy', 1965, 'F', 12253), +(90261, 'Robin', 1965, 'F', 11992), +(90262, 'Kathleen', 1965, 'F', 11781), +(90263, 'Amy', 1965, 'F', 11527), +(90264, 'Tracy', 1965, 'F', 11173), +(90265, 'Rhonda', 1965, 'F', 10949), +(90266, 'Melissa', 1965, 'F', 10569), +(90267, 'Wendy', 1965, 'F', 10480), +(90268, 'Diane', 1965, 'F', 10361), +(90269, 'Rebecca', 1965, 'F', 10212), +(90270, 'Carol', 1965, 'F', 10101), +(90271, 'Kim', 1965, 'F', 10082), +(90272, 'Stephanie', 1965, 'F', 9763), +(90273, 'Theresa', 1965, 'F', 9682), +(90274, 'Maria', 1965, 'F', 9467), +(90275, 'Jacqueline', 1965, 'F', 9414), +(90276, 'Michele', 1965, 'F', 8664), +(90277, 'Paula', 1965, 'F', 7908), +(90278, 'Sheila', 1965, 'F', 7904), +(90279, 'Jill', 1965, 'F', 7821), +(90280, 'Margaret', 1965, 'F', 7791), +(90281, 'Cindy', 1965, 'F', 7777), +(90282, 'Kathy', 1965, 'F', 7760), +(90283, 'Janet', 1965, 'F', 7654), +(90284, 'Sherry', 1965, 'F', 7389), +(90285, 'Catherine', 1965, 'F', 7247), +(90286, 'Carolyn', 1965, 'F', 6971), +(90287, 'Ann', 1965, 'F', 6778), +(90288, 'Laurie', 1965, 'F', 6535), +(90289, 'Connie', 1965, 'F', 6152), +(90290, 'Debbie', 1965, 'F', 6087), +(90291, 'Andrea', 1965, 'F', 6078), +(90292, 'Diana', 1965, 'F', 5930), +(90293, 'Suzanne', 1965, 'F', 5913), +(90294, 'Beth', 1965, 'F', 5772), +(90295, 'Valerie', 1965, 'F', 5647), +(90296, 'Renee', 1965, 'F', 5497), +(90297, 'Terri', 1965, 'F', 5380), +(90298, 'Gina', 1965, 'F', 5269), +(90299, 'Annette', 1965, 'F', 5259), +(90300, 'Monica', 1965, 'F', 5107), +(90301, 'Janice', 1965, 'F', 5030), +(90302, 'Christina', 1965, 'F', 4977), +(90303, 'Leslie', 1965, 'F', 4874), +(90304, 'Carla', 1965, 'F', 4778), +(90305, 'Dana', 1965, 'F', 4728), +(90306, 'Anne', 1965, 'F', 4725), +(90307, 'Katherine', 1965, 'F', 4715), +(90308, 'Lynn', 1965, 'F', 4667), +(90309, 'Wanda', 1965, 'F', 4651), +(90310, 'Regina', 1965, 'F', 4548), +(90311, 'Darlene', 1965, 'F', 4359), +(90312, 'Stacey', 1965, 'F', 4270), +(90313, 'Tracey', 1965, 'F', 4261), +(90314, 'Judy', 1965, 'F', 4243), +(90315, 'Kathryn', 1965, 'F', 4159), +(90316, 'Cathy', 1965, 'F', 4152), +(90317, 'Joyce', 1965, 'F', 4129), +(90318, 'Bonnie', 1965, 'F', 4128), +(90319, 'Sherri', 1965, 'F', 4065), +(90320, 'Sarah', 1965, 'F', 4056), +(90321, 'Colleen', 1965, 'F', 4030), +(90322, 'Anita', 1965, 'F', 4022), +(90323, 'Jane', 1965, 'F', 3930), +(90324, 'Anna', 1965, 'F', 3920), +(90325, 'Penny', 1965, 'F', 3898), +(90326, 'Shelly', 1965, 'F', 3850), +(90327, 'Martha', 1965, 'F', 3800), +(90328, 'Melinda', 1965, 'F', 3799), +(90329, 'Beverly', 1965, 'F', 3773), +(90330, 'Judith', 1965, 'F', 3583), +(90331, 'Betty', 1965, 'F', 3564), +(90332, 'Tamara', 1965, 'F', 3560), +(90333, 'Heidi', 1965, 'F', 3559), +(90334, 'Marie', 1965, 'F', 3486), +(90335, 'Maureen', 1965, 'F', 3484), +(90336, 'Victoria', 1965, 'F', 3479), +(90337, 'Gloria', 1965, 'F', 3439), +(90338, 'Deanna', 1965, 'F', 3407), +(90339, 'Shirley', 1965, 'F', 3370), +(90340, 'Jean', 1965, 'F', 3365), +(90341, 'Holly', 1965, 'F', 3357), +(90342, 'Vicki', 1965, 'F', 3329), +(90343, 'Virginia', 1965, 'F', 3293), +(90344, 'Joan', 1965, 'F', 3283), +(90345, 'Ellen', 1965, 'F', 3253), +(90346, 'Ruth', 1965, 'F', 3231), +(90347, 'Stacy', 1965, 'F', 3207), +(90348, 'Kristine', 1965, 'F', 3164), +(90349, 'Joanne', 1965, 'F', 3149), +(90350, 'Melanie', 1965, 'F', 3115), +(90351, 'Peggy', 1965, 'F', 3105), +(90352, 'Julia', 1965, 'F', 3098), +(90353, 'Veronica', 1965, 'F', 3075), +(90354, 'Rita', 1965, 'F', 3063), +(90355, 'Jodi', 1965, 'F', 3053), +(90356, 'Allison', 1965, 'F', 3043), +(90357, 'Tonya', 1965, 'F', 2968), +(90358, 'Dorothy', 1965, 'F', 2961), +(90359, 'Sylvia', 1965, 'F', 2955), +(90360, 'Yvonne', 1965, 'F', 2954), +(90361, 'Rose', 1965, 'F', 2864), +(90362, 'Gail', 1965, 'F', 2859), +(90363, 'Kristin', 1965, 'F', 2830), +(90364, 'April', 1965, 'F', 2811), +(90365, 'Helen', 1965, 'F', 2804), +(90366, 'Vickie', 1965, 'F', 2785), +(90367, 'Yolanda', 1965, 'F', 2757), +(90368, 'Jamie', 1965, 'F', 2747), +(90369, 'Sheri', 1965, 'F', 2629), +(90370, 'Charlene', 1965, 'F', 2592), +(90371, 'Becky', 1965, 'F', 2589), +(90372, 'Shannon', 1965, 'F', 2569), +(90373, 'Alice', 1965, 'F', 2568), +(90374, 'Crystal', 1965, 'F', 2542), +(90375, 'Sheryl', 1965, 'F', 2535), +(90376, 'Shelley', 1965, 'F', 2528), +(90377, 'Elaine', 1965, 'F', 2500), +(90378, 'Heather', 1965, 'F', 2499), +(90379, 'Marilyn', 1965, 'F', 2488), +(90380, 'Carrie', 1965, 'F', 2483), +(90381, 'Charlotte', 1965, 'F', 2471), +(90382, 'Yvette', 1965, 'F', 2467), +(90383, 'Phyllis', 1965, 'F', 2466), +(90384, 'Jackie', 1965, 'F', 2445), +(90385, 'Eileen', 1965, 'F', 2418), +(90386, 'Joann', 1965, 'F', 2396), +(90387, 'Alicia', 1965, 'F', 2357), +(90388, 'Sonya', 1965, 'F', 2354), +(90389, 'Toni', 1965, 'F', 2326), +(90390, 'Sally', 1965, 'F', 2321), +(90391, 'Frances', 1965, 'F', 2262), +(90392, 'Felicia', 1965, 'F', 2193), +(90393, 'Jeanne', 1965, 'F', 2149), +(90394, 'Carmen', 1965, 'F', 2145), +(90395, 'Roberta', 1965, 'F', 2129), +(90396, 'Traci', 1965, 'F', 2079), +(90397, 'Jeanette', 1965, 'F', 2067), +(90398, 'Lorraine', 1965, 'F', 2060), +(90399, 'Norma', 1965, 'F', 2048), +(90400, 'Belinda', 1965, 'F', 2025), +(90401, 'Tanya', 1965, 'F', 2020), +(90402, 'Terry', 1965, 'F', 2020), +(90403, 'Rachel', 1965, 'F', 2014), +(90404, 'Evelyn', 1965, 'F', 2004), +(90405, 'Sara', 1965, 'F', 1976), +(90406, 'Joy', 1965, 'F', 1974), +(90407, 'Samantha', 1965, 'F', 1962), +(90408, 'Natalie', 1965, 'F', 1943), +(90409, 'Ronda', 1965, 'F', 1913), +(90410, 'Shelia', 1965, 'F', 1893), +(90411, 'Jo', 1965, 'F', 1852), +(90412, 'Shari', 1965, 'F', 1845), +(90413, 'Loretta', 1965, 'F', 1839), +(90414, 'Constance', 1965, 'F', 1834), +(90415, 'Caroline', 1965, 'F', 1815), +(90416, 'Karla', 1965, 'F', 1804), +(90417, 'Kimberley', 1965, 'F', 1799), +(90418, 'Sue', 1965, 'F', 1776), +(90419, 'Kristen', 1965, 'F', 1726), +(90420, 'Tami', 1965, 'F', 1722), +(90421, 'Sandy', 1965, 'F', 1706), +(90422, 'Gwendolyn', 1965, 'F', 1700), +(90423, 'Tammie', 1965, 'F', 1697), +(90424, 'Angie', 1965, 'F', 1695), +(90425, 'Juanita', 1965, 'F', 1670), +(90426, 'Melody', 1965, 'F', 1664), +(90427, 'Patty', 1965, 'F', 1664), +(90428, 'Audrey', 1965, 'F', 1660), +(90429, 'Amanda', 1965, 'F', 1650), +(90430, 'Dianne', 1965, 'F', 1635), +(90431, 'Vanessa', 1965, 'F', 1632), +(90432, 'Doris', 1965, 'F', 1624), +(90433, 'Monique', 1965, 'F', 1623), +(90434, 'Kristi', 1965, 'F', 1608), +(90435, 'Lynda', 1965, 'F', 1605), +(90436, 'Darla', 1965, 'F', 1582), +(90437, 'Jody', 1965, 'F', 1569), +(90438, 'Cassandra', 1965, 'F', 1563), +(90439, 'Irene', 1965, 'F', 1552), +(90440, 'Marcia', 1965, 'F', 1548), +(90441, 'Bridget', 1965, 'F', 1543), +(90442, 'Kelli', 1965, 'F', 1540), +(90443, 'Marsha', 1965, 'F', 1538), +(90444, 'Jessica', 1965, 'F', 1530), +(90445, 'Glenda', 1965, 'F', 1515), +(90446, 'Doreen', 1965, 'F', 1510), +(90447, 'Lynne', 1965, 'F', 1500), +(90448, 'Erin', 1965, 'F', 1463), +(90449, 'Kelley', 1965, 'F', 1463), +(90450, 'Teri', 1965, 'F', 1460), +(90451, 'Alison', 1965, 'F', 1458), +(90452, 'Shawn', 1965, 'F', 1448), +(90453, 'Lynette', 1965, 'F', 1410), +(90454, 'Rosa', 1965, 'F', 1403), +(90455, 'Robyn', 1965, 'F', 1394), +(90456, 'Leah', 1965, 'F', 1389), +(90457, 'Lora', 1965, 'F', 1385), +(90458, 'Kristina', 1965, 'F', 1372), +(90459, 'Vicky', 1965, 'F', 1364), +(90460, 'Janine', 1965, 'F', 1357), +(90461, 'Eva', 1965, 'F', 1335), +(90462, 'Patti', 1965, 'F', 1312), +(90463, 'Danielle', 1965, 'F', 1305), +(90464, 'Lauren', 1965, 'F', 1304), +(90465, 'Lee', 1965, 'F', 1299), +(90466, 'Emily', 1965, 'F', 1288), +(90467, 'Katrina', 1965, 'F', 1287), +(90468, 'Dianna', 1965, 'F', 1285), +(90469, 'Rosemary', 1965, 'F', 1275), +(90470, 'Ramona', 1965, 'F', 1271), +(90471, 'Roxanne', 1965, 'F', 1271), +(90472, 'Sonia', 1965, 'F', 1252), +(90473, 'Vivian', 1965, 'F', 1252), +(90474, 'Pam', 1965, 'F', 1219), +(90475, 'Marlene', 1965, 'F', 1212), +(90476, 'Sherrie', 1965, 'F', 1207), +(90477, 'Lois', 1965, 'F', 1206), +(90478, 'Tara', 1965, 'F', 1169), +(90479, 'Kellie', 1965, 'F', 1167), +(90480, 'Hope', 1965, 'F', 1153), +(90481, 'Marianne', 1965, 'F', 1146), +(90482, 'Christy', 1965, 'F', 1127), +(90483, 'Sonja', 1965, 'F', 1123), +(90484, 'Grace', 1965, 'F', 1115), +(90485, 'Ginger', 1965, 'F', 1111), +(90486, 'Jacquelyn', 1965, 'F', 1103), +(90487, 'Tracie', 1965, 'F', 1095), +(90488, 'Jana', 1965, 'F', 1094), +(90489, 'Vonda', 1965, 'F', 1093), +(90490, 'Chris', 1965, 'F', 1090), +(90491, 'Lydia', 1965, 'F', 1080), +(90492, 'Molly', 1965, 'F', 1061), +(90493, 'Nina', 1965, 'F', 1060), +(90494, 'Mia', 1965, 'F', 1054), +(90495, 'Arlene', 1965, 'F', 1052), +(90496, 'June', 1965, 'F', 1049), +(90497, 'Lorie', 1965, 'F', 1030), +(90498, 'Kay', 1965, 'F', 1020), +(90499, 'Trina', 1965, 'F', 1017), +(90500, 'Lillian', 1965, 'F', 1016), +(90501, 'Antoinette', 1965, 'F', 995), +(90502, 'Cara', 1965, 'F', 987), +(90503, 'Jenny', 1965, 'F', 986), +(90504, 'Ruby', 1965, 'F', 986), +(90505, 'Kris', 1965, 'F', 978), +(90506, 'Marjorie', 1965, 'F', 975), +(90507, 'Candace', 1965, 'F', 970), +(90508, 'Esther', 1965, 'F', 965), +(90509, 'Gayle', 1965, 'F', 954), +(90510, 'Kari', 1965, 'F', 948), +(90511, 'Priscilla', 1965, 'F', 944), +(90512, 'Louise', 1965, 'F', 943), +(90513, 'Jan', 1965, 'F', 938), +(90514, 'Angelia', 1965, 'F', 935), +(90515, 'Betsy', 1965, 'F', 931), +(90516, 'Alisa', 1965, 'F', 925), +(90517, 'Kerry', 1965, 'F', 921), +(90518, 'Karin', 1965, 'F', 917), +(90519, 'Geraldine', 1965, 'F', 916), +(90520, 'Bernadette', 1965, 'F', 910), +(90521, 'Bobbie', 1965, 'F', 908), +(90522, 'Joanna', 1965, 'F', 908), +(90523, 'Gretchen', 1965, 'F', 906), +(90524, 'Marla', 1965, 'F', 901), +(90525, 'Rochelle', 1965, 'F', 900), +(90526, 'Nicole', 1965, 'F', 897), +(90527, 'Carole', 1965, 'F', 896), +(90528, 'Edith', 1965, 'F', 890), +(90529, 'Cathleen', 1965, 'F', 885), +(90530, 'Debora', 1965, 'F', 880), +(90531, 'Nora', 1965, 'F', 879), +(90532, 'Cheri', 1965, 'F', 875), +(90533, 'Mona', 1965, 'F', 872), +(90534, 'Pauline', 1965, 'F', 872), +(90535, 'Leigh', 1965, 'F', 870), +(90536, 'Lucy', 1965, 'F', 869), +(90537, 'Josephine', 1965, 'F', 863), +(90538, 'Desiree', 1965, 'F', 855), +(90539, 'Dina', 1965, 'F', 831), +(90540, 'Dolores', 1965, 'F', 828), +(90541, 'Cherie', 1965, 'F', 825), +(90542, 'Maryann', 1965, 'F', 819), +(90543, 'Annie', 1965, 'F', 817), +(90544, 'Claudia', 1965, 'F', 817), +(90545, 'Ana', 1965, 'F', 811), +(90546, 'Dena', 1965, 'F', 809), +(90547, 'Kara', 1965, 'F', 798), +(90548, 'Sabrina', 1965, 'F', 789), +(90549, 'Leticia', 1965, 'F', 786), +(90550, 'Kristy', 1965, 'F', 780), +(90551, 'Lana', 1965, 'F', 780), +(90552, 'Nadine', 1965, 'F', 773), +(90553, 'Lorrie', 1965, 'F', 759), +(90554, 'Trisha', 1965, 'F', 757), +(90555, 'Miriam', 1965, 'F', 754), +(90556, 'Krista', 1965, 'F', 752), +(90557, 'Mildred', 1965, 'F', 749), +(90558, 'Lesley', 1965, 'F', 743), +(90559, 'Leanne', 1965, 'F', 739), +(90560, 'Cecilia', 1965, 'F', 734), +(90561, 'Delores', 1965, 'F', 733), +(90562, 'Irma', 1965, 'F', 728), +(90563, 'Billie', 1965, 'F', 723), +(90564, 'Dora', 1965, 'F', 723), +(90565, 'Therese', 1965, 'F', 721), +(90566, 'Georgia', 1965, 'F', 720), +(90567, 'Joni', 1965, 'F', 717), +(90568, 'Edna', 1965, 'F', 711), +(90569, 'Candy', 1965, 'F', 710), +(90570, 'Faith', 1965, 'F', 708), +(90571, 'Paulette', 1965, 'F', 706), +(90572, 'Patrice', 1965, 'F', 705), +(90573, 'Lesa', 1965, 'F', 699), +(90574, 'Jeannette', 1965, 'F', 696), +(90575, 'Adrienne', 1965, 'F', 694), +(90576, 'Margie', 1965, 'F', 694), +(90577, 'Rosemarie', 1965, 'F', 691), +(90578, 'Francine', 1965, 'F', 689), +(90579, 'Jeanine', 1965, 'F', 669), +(90580, 'Jodie', 1965, 'F', 669), +(90581, 'Celeste', 1965, 'F', 660), +(90582, 'Suzette', 1965, 'F', 659), +(90583, 'Rosalind', 1965, 'F', 649), +(90584, 'Kirsten', 1965, 'F', 641), +(90585, 'Daphne', 1965, 'F', 640), +(90586, 'Myra', 1965, 'F', 639), +(90587, 'Beatrice', 1965, 'F', 638), +(90588, 'Emma', 1965, 'F', 638), +(90589, 'Rene', 1965, 'F', 634), +(90590, 'Tammi', 1965, 'F', 625), +(90591, 'Bonita', 1965, 'F', 624), +(90592, 'Stacie', 1965, 'F', 622), +(90593, 'Terrie', 1965, 'F', 622), +(90594, 'Janie', 1965, 'F', 620), +(90595, 'Leann', 1965, 'F', 617), +(90596, 'Elisa', 1965, 'F', 614), +(90597, 'Lucinda', 1965, 'F', 614), +(90598, 'Megan', 1965, 'F', 610), +(90599, 'Kerri', 1965, 'F', 606), +(90600, 'Eleanor', 1965, 'F', 605), +(90601, 'Marian', 1965, 'F', 600), +(90602, 'Susie', 1965, 'F', 600), +(90603, 'Susanne', 1965, 'F', 591), +(90604, 'Marcella', 1965, 'F', 588), +(90605, 'Trudy', 1965, 'F', 583), +(90606, 'Naomi', 1965, 'F', 580), +(90607, 'Gladys', 1965, 'F', 578), +(90608, 'Sondra', 1965, 'F', 578), +(90609, 'Thelma', 1965, 'F', 578), +(90610, 'Bobbi', 1965, 'F', 577), +(90611, 'Jeannine', 1965, 'F', 577), +(90612, 'Patsy', 1965, 'F', 576), +(90613, 'Deanne', 1965, 'F', 575), +(90614, 'Clara', 1965, 'F', 568), +(90615, 'Marion', 1965, 'F', 568), +(90616, 'Erica', 1965, 'F', 565), +(90617, 'Tiffany', 1965, 'F', 565), +(90618, 'Jennie', 1965, 'F', 561), +(90619, 'Bernice', 1965, 'F', 560), +(90620, 'Kecia', 1965, 'F', 560), +(90621, 'Ladonna', 1965, 'F', 555), +(90622, 'Tricia', 1965, 'F', 555), +(90623, 'Bertha', 1965, 'F', 554), +(90624, 'Shawna', 1965, 'F', 552), +(90625, 'Alma', 1965, 'F', 551), +(90626, 'Jeannie', 1965, 'F', 550), +(90627, 'Darcy', 1965, 'F', 544), +(90628, 'Deirdre', 1965, 'F', 544), +(90629, 'Deana', 1965, 'F', 536), +(90630, 'Vera', 1965, 'F', 534), +(90631, 'Claire', 1965, 'F', 527), +(90632, 'Amber', 1965, 'F', 526), +(90633, 'Laurel', 1965, 'F', 524), +(90634, 'Nanette', 1965, 'F', 524), +(90635, 'Paige', 1965, 'F', 521), +(90636, 'Lena', 1965, 'F', 520), +(90637, 'Ida', 1965, 'F', 519), +(90638, 'Staci', 1965, 'F', 516), +(90639, 'Stella', 1965, 'F', 511), +(90640, 'Karyn', 1965, 'F', 510), +(90641, 'Lorna', 1965, 'F', 509), +(90642, 'Lauri', 1965, 'F', 508), +(90643, 'Iris', 1965, 'F', 507), +(90644, 'Sophia', 1965, 'F', 507), +(90645, 'Margarita', 1965, 'F', 498), +(90646, 'Valarie', 1965, 'F', 498), +(90647, 'Bridgette', 1965, 'F', 496), +(90648, 'Ingrid', 1965, 'F', 494), +(90649, 'Caryn', 1965, 'F', 492), +(90650, 'Misty', 1965, 'F', 490), +(90651, 'Tonia', 1965, 'F', 490), +(90652, 'Jayne', 1965, 'F', 489), +(90653, 'Tamera', 1965, 'F', 486), +(90654, 'Janette', 1965, 'F', 484), +(90655, 'Gwen', 1965, 'F', 482), +(90656, 'Kimberlee', 1965, 'F', 482), +(90657, 'Ella', 1965, 'F', 478), +(90658, 'Marcy', 1965, 'F', 478), +(90659, 'Amelia', 1965, 'F', 475), +(90660, 'Dee', 1965, 'F', 475), +(90661, 'Janelle', 1965, 'F', 473), +(90662, 'Jeri', 1965, 'F', 473), +(90663, 'Jessie', 1965, 'F', 473), +(90664, 'Rosie', 1965, 'F', 471), +(90665, 'Christie', 1965, 'F', 468), +(90666, 'Madeline', 1965, 'F', 464), +(90667, 'Julianne', 1965, 'F', 463), +(90668, 'Elisabeth', 1965, 'F', 458), +(90669, 'Wendi', 1965, 'F', 458), +(90670, 'Danette', 1965, 'F', 457), +(90671, 'Elena', 1965, 'F', 457), +(90672, 'Allyson', 1965, 'F', 454), +(90673, 'Kendra', 1965, 'F', 453), +(90674, 'Jerri', 1965, 'F', 452), +(90675, 'Katie', 1965, 'F', 452), +(90676, 'Mindy', 1965, 'F', 452), +(90677, 'Jolene', 1965, 'F', 451), +(90678, 'Florence', 1965, 'F', 450), +(90679, 'Camille', 1965, 'F', 449), +(90680, 'Colette', 1965, 'F', 447), +(90681, 'Polly', 1965, 'F', 447), +(90682, 'Rena', 1965, 'F', 447), +(90683, 'Lea', 1965, 'F', 442), +(90684, 'Olivia', 1965, 'F', 442), +(90685, 'Ethel', 1965, 'F', 440), +(90686, 'Noreen', 1965, 'F', 434), +(90687, 'Kristie', 1965, 'F', 433), +(90688, 'Lynnette', 1965, 'F', 428), +(90689, 'Janis', 1965, 'F', 427), +(90690, 'Maxine', 1965, 'F', 427), +(90691, 'Lorri', 1965, 'F', 425), +(90692, 'Deann', 1965, 'F', 424), +(90693, 'Deneen', 1965, 'F', 421), +(90694, 'Erika', 1965, 'F', 419), +(90695, 'Angelina', 1965, 'F', 418), +(90696, 'Guadalupe', 1965, 'F', 415), +(90697, 'Lucille', 1965, 'F', 414), +(90698, 'Alesia', 1965, 'F', 408), +(90699, 'Marybeth', 1965, 'F', 407), +(90700, 'Annmarie', 1965, 'F', 406), +(90701, 'Corinne', 1965, 'F', 405), +(90702, 'Angel', 1965, 'F', 402), +(90703, 'Marci', 1965, 'F', 398), +(90704, 'Diann', 1965, 'F', 397), +(90705, 'Wilma', 1965, 'F', 396), +(90706, 'Tamra', 1965, 'F', 394), +(90707, 'Olga', 1965, 'F', 393), +(90708, 'Shellie', 1965, 'F', 391), +(90709, 'Deidre', 1965, 'F', 389), +(90710, 'Della', 1965, 'F', 389), +(90711, 'Bethany', 1965, 'F', 388), +(90712, 'Maura', 1965, 'F', 385), +(90713, 'Christi', 1965, 'F', 379), +(90714, 'Benita', 1965, 'F', 378), +(90715, 'Rachelle', 1965, 'F', 378), +(90716, 'Lillie', 1965, 'F', 377), +(90717, 'Elise', 1965, 'F', 375), +(90718, 'Hilda', 1965, 'F', 375), +(90719, 'Johanna', 1965, 'F', 375), +(90720, 'Melisa', 1965, 'F', 373), +(90721, 'Malinda', 1965, 'F', 372), +(90722, 'Marina', 1965, 'F', 372), +(90723, 'Cora', 1965, 'F', 371), +(90724, 'Felecia', 1965, 'F', 367), +(90725, 'Velma', 1965, 'F', 364), +(90726, 'Delia', 1965, 'F', 363), +(90727, 'Zina', 1965, 'F', 363), +(90728, 'Marguerite', 1965, 'F', 361), +(90729, 'Eugenia', 1965, 'F', 360), +(90730, 'Tonja', 1965, 'F', 358), +(90731, 'Celia', 1965, 'F', 357), +(90732, 'Michael', 1965, 'F', 355), +(90733, 'Ursula', 1965, 'F', 355), +(90734, 'Marta', 1965, 'F', 352), +(90735, 'Mitzi', 1965, 'F', 351), +(90736, 'Leona', 1965, 'F', 348), +(90737, 'Liza', 1965, 'F', 348), +(90738, 'Deena', 1965, 'F', 345), +(90739, 'Meredith', 1965, 'F', 345), +(90740, 'Robbin', 1965, 'F', 345), +(90741, 'Lorena', 1965, 'F', 344), +(90742, 'Luann', 1965, 'F', 344), +(90743, 'Hazel', 1965, 'F', 343), +(90744, 'Jenifer', 1965, 'F', 341), +(90745, 'Coleen', 1965, 'F', 339), +(90746, 'Lenora', 1965, 'F', 339), +(90747, 'Faye', 1965, 'F', 338), +(90748, 'Daisy', 1965, 'F', 337), +(90749, 'Margo', 1965, 'F', 336), +(90750, 'Willie', 1965, 'F', 335), +(90751, 'Gayla', 1965, 'F', 333), +(90752, 'Bridgett', 1965, 'F', 332), +(90753, 'Stefanie', 1965, 'F', 331), +(90754, 'Cecelia', 1965, 'F', 330), +(90755, 'Jami', 1965, 'F', 327), +(90756, 'Isabel', 1965, 'F', 326), +(90757, 'Cristina', 1965, 'F', 325), +(90758, 'Gena', 1965, 'F', 325), +(90759, 'Keri', 1965, 'F', 324), +(90760, 'Justine', 1965, 'F', 319), +(90761, 'Latonya', 1965, 'F', 319), +(90762, 'Rosalie', 1965, 'F', 317), +(90763, 'Randi', 1965, 'F', 316), +(90764, 'Shauna', 1965, 'F', 316), +(90765, 'Rae', 1965, 'F', 314), +(90766, 'Renae', 1965, 'F', 312), +(90767, 'Shelli', 1965, 'F', 311), +(90768, 'Roseann', 1965, 'F', 308), +(90769, 'Luz', 1965, 'F', 306), +(90770, 'Alexandra', 1965, 'F', 305), +(90771, 'Rosalyn', 1965, 'F', 304), +(90772, 'Gay', 1965, 'F', 303), +(90773, 'James', 1965, 'F', 303), +(90774, 'Mari', 1965, 'F', 303), +(90775, 'Janna', 1965, 'F', 302), +(90776, 'Leeann', 1965, 'F', 302), +(90777, 'Marisa', 1965, 'F', 300), +(90778, 'Geneva', 1965, 'F', 299), +(90779, 'Robbie', 1965, 'F', 296), +(90780, 'Silvia', 1965, 'F', 296), +(90781, 'Whitney', 1965, 'F', 296), +(90782, 'Aimee', 1965, 'F', 294), +(90783, 'Annemarie', 1965, 'F', 294), +(90784, 'Judi', 1965, 'F', 293), +(90785, 'Jocelyn', 1965, 'F', 292), +(90786, 'Laverne', 1965, 'F', 291), +(90787, 'Harriet', 1965, 'F', 290), +(90788, 'Jacquline', 1965, 'F', 289), +(90789, 'Brigitte', 1965, 'F', 288), +(90790, 'Lourdes', 1965, 'F', 288), +(90791, 'Katharine', 1965, 'F', 287), +(90792, 'Helene', 1965, 'F', 286), +(90793, 'Janell', 1965, 'F', 286), +(90794, 'Tamela', 1965, 'F', 286), +(90795, 'Chandra', 1965, 'F', 285), +(90796, 'Martina', 1965, 'F', 282), +(90797, 'Saundra', 1965, 'F', 282), +(90798, 'Frankie', 1965, 'F', 281), +(90799, 'Letitia', 1965, 'F', 281), +(90800, 'Roslyn', 1965, 'F', 281), +(90801, 'Antonia', 1965, 'F', 278), +(90802, 'Lesia', 1965, 'F', 278), +(90803, 'Lola', 1965, 'F', 278), +(90804, 'Elsa', 1965, 'F', 274), +(90805, 'Shelby', 1965, 'F', 274), +(90806, 'Verna', 1965, 'F', 274), +(90807, 'Bessie', 1965, 'F', 272), +(90808, 'Selena', 1965, 'F', 272), +(90809, 'Christa', 1965, 'F', 271), +(90810, 'Marcie', 1965, 'F', 271), +(90811, 'Ada', 1965, 'F', 268), +(90812, 'Marnie', 1965, 'F', 267), +(90813, 'Maryellen', 1965, 'F', 265), +(90814, 'Shana', 1965, 'F', 265), +(90815, 'Penelope', 1965, 'F', 264), +(90816, 'Debby', 1965, 'F', 263), +(90817, 'Denice', 1965, 'F', 263), +(90818, 'Tania', 1965, 'F', 263), +(90819, 'Freda', 1965, 'F', 262), +(90820, 'Maryanne', 1965, 'F', 261), +(90821, 'Sandi', 1965, 'F', 261), +(90822, 'Helena', 1965, 'F', 260), +(90823, 'Rosalinda', 1965, 'F', 260), +(90824, 'Agnes', 1965, 'F', 259), +(90825, 'Candice', 1965, 'F', 259), +(90826, 'Caren', 1965, 'F', 259), +(90827, 'Corina', 1965, 'F', 259), +(90828, 'Dale', 1965, 'F', 259), +(90829, 'Mattie', 1965, 'F', 259), +(90830, 'Pearl', 1965, 'F', 259), +(90831, 'Deloris', 1965, 'F', 258), +(90832, 'Danita', 1965, 'F', 257), +(90833, 'Ernestine', 1965, 'F', 256), +(90834, 'Greta', 1965, 'F', 256), +(90835, 'Eve', 1965, 'F', 255), +(90836, 'Kathi', 1965, 'F', 255), +(90837, 'Robert', 1965, 'F', 255), +(90838, 'Aileen', 1965, 'F', 254), +(90839, 'Courtney', 1965, 'F', 253), +(90840, 'Leisa', 1965, 'F', 253), +(90841, 'Elsie', 1965, 'F', 252), +(90842, 'John', 1965, 'F', 252), +(90843, 'Lucia', 1965, 'F', 250), +(90844, 'Patrica', 1965, 'F', 250), +(90845, 'Viola', 1965, 'F', 250), +(90846, 'Angelica', 1965, 'F', 249), +(90847, 'Deidra', 1965, 'F', 247), +(90848, 'Hilary', 1965, 'F', 247), +(90849, 'Blanca', 1965, 'F', 246), +(90850, 'Maritza', 1965, 'F', 246), +(90851, 'Eunice', 1965, 'F', 245), +(90852, 'Raquel', 1965, 'F', 245), +(90853, 'Charmaine', 1965, 'F', 244), +(90854, 'Selina', 1965, 'F', 244), +(90855, 'Dionne', 1965, 'F', 242), +(90856, 'Juli', 1965, 'F', 242), +(90857, 'Cindi', 1965, 'F', 241), +(90858, 'Dayna', 1965, 'F', 241), +(90859, 'Rebekah', 1965, 'F', 240), +(90860, 'Carlene', 1965, 'F', 239), +(90861, 'Rosanne', 1965, 'F', 239), +(90862, 'Adriana', 1965, 'F', 238), +(90863, 'Genevieve', 1965, 'F', 238), +(90864, 'Johnnie', 1965, 'F', 238), +(90865, 'Liz', 1965, 'F', 237), +(90866, 'Marisol', 1965, 'F', 236), +(90867, 'Barbra', 1965, 'F', 235), +(90868, 'Gale', 1965, 'F', 234), +(90869, 'Myrna', 1965, 'F', 234), +(90870, 'Tena', 1965, 'F', 234), +(90871, 'Dawna', 1965, 'F', 233), +(90872, 'Nikki', 1965, 'F', 233), +(90873, 'Sharron', 1965, 'F', 233), +(90874, 'Maribel', 1965, 'F', 231), +(90875, 'Claudette', 1965, 'F', 229), +(90876, 'Valencia', 1965, 'F', 229), +(90877, 'Noelle', 1965, 'F', 228), +(90878, 'Ava', 1965, 'F', 227), +(90879, 'Latanya', 1965, 'F', 227), +(90880, 'Cari', 1965, 'F', 226), +(90881, 'Johnna', 1965, 'F', 226), +(90882, 'Lawanda', 1965, 'F', 226), +(90883, 'Lolita', 1965, 'F', 226), +(90884, 'Lou', 1965, 'F', 225), +(90885, 'Rhoda', 1965, 'F', 225), +(90886, 'Simone', 1965, 'F', 225), +(90887, 'Alberta', 1965, 'F', 223), +(90888, 'Laureen', 1965, 'F', 223), +(90889, 'Sharlene', 1965, 'F', 223), +(90890, 'Tana', 1965, 'F', 223), +(90891, 'Abby', 1965, 'F', 222), +(90892, 'Jeanie', 1965, 'F', 222), +(90893, 'David', 1965, 'F', 220), +(90894, 'Gabrielle', 1965, 'F', 220), +(90895, 'Missy', 1965, 'F', 220), +(90896, 'Ashley', 1965, 'F', 218), +(90897, 'Lorene', 1965, 'F', 216), +(90898, 'Rachael', 1965, 'F', 216), +(90899, 'Teressa', 1965, 'F', 216), +(90900, 'Juliana', 1965, 'F', 214), +(90901, 'Roxann', 1965, 'F', 214), +(90902, 'Althea', 1965, 'F', 213), +(90903, 'Valeria', 1965, 'F', 213), +(90904, 'Dorothea', 1965, 'F', 212), +(90905, 'Melodie', 1965, 'F', 212), +(90906, 'Violet', 1965, 'F', 212), +(90907, 'Abigail', 1965, 'F', 211), +(90908, 'Dixie', 1965, 'F', 208), +(90909, 'Geri', 1965, 'F', 208); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(90910, 'Minnie', 1965, 'F', 208), +(90911, 'Pennie', 1965, 'F', 208), +(90912, 'Gracie', 1965, 'F', 207), +(90913, 'Kathie', 1965, 'F', 207), +(90914, 'Flora', 1965, 'F', 206), +(90915, 'Juliet', 1965, 'F', 205), +(90916, 'Kate', 1965, 'F', 204), +(90917, 'Susanna', 1965, 'F', 204), +(90918, 'Maribeth', 1965, 'F', 203), +(90919, 'Nellie', 1965, 'F', 202), +(90920, 'Pamala', 1965, 'F', 202), +(90921, 'Rosetta', 1965, 'F', 202), +(90922, 'Graciela', 1965, 'F', 201), +(90923, 'Clarissa', 1965, 'F', 200), +(90924, 'Reba', 1965, 'F', 200), +(90925, 'Renita', 1965, 'F', 200), +(90926, 'Tresa', 1965, 'F', 200), +(90927, 'Sallie', 1965, 'F', 199), +(90928, 'Ivy', 1965, 'F', 198), +(90929, 'Sharla', 1965, 'F', 198), +(90930, 'Danna', 1965, 'F', 197), +(90931, 'Dona', 1965, 'F', 197), +(90932, 'Carolina', 1965, 'F', 195), +(90933, 'Alecia', 1965, 'F', 194), +(90934, 'Edwina', 1965, 'F', 194), +(90935, 'Mara', 1965, 'F', 194), +(90936, 'Sheree', 1965, 'F', 194), +(90937, 'Suzan', 1965, 'F', 194), +(90938, 'Alana', 1965, 'F', 193), +(90939, 'Kandy', 1965, 'F', 193), +(90940, 'Shanna', 1965, 'F', 193), +(90941, 'Starla', 1965, 'F', 193), +(90942, 'Carmela', 1965, 'F', 192), +(90943, 'Dorene', 1965, 'F', 192), +(90944, 'Vikki', 1965, 'F', 192), +(90945, 'Nannette', 1965, 'F', 191), +(90946, 'Arleen', 1965, 'F', 190), +(90947, 'Bettina', 1965, 'F', 190), +(90948, 'Leanna', 1965, 'F', 190), +(90949, 'Estella', 1965, 'F', 189), +(90950, 'Luanne', 1965, 'F', 189), +(90951, 'Mae', 1965, 'F', 189), +(90952, 'Susana', 1965, 'F', 189), +(90953, 'Ivette', 1965, 'F', 188), +(90954, 'Kathrine', 1965, 'F', 188), +(90955, 'Rosanna', 1965, 'F', 188), +(90956, 'Roxane', 1965, 'F', 188), +(90957, 'Jewel', 1965, 'F', 187), +(90958, 'Adele', 1965, 'F', 186), +(90959, 'Trena', 1965, 'F', 186), +(90960, 'Ilene', 1965, 'F', 185), +(90961, 'Letha', 1965, 'F', 185), +(90962, 'Mandy', 1965, 'F', 185), +(90963, 'Kerrie', 1965, 'F', 184), +(90964, 'Lupe', 1965, 'F', 184), +(90965, 'Teena', 1965, 'F', 184), +(90966, 'Alyson', 1965, 'F', 183), +(90967, 'Jeanna', 1965, 'F', 182), +(90968, 'Karrie', 1965, 'F', 182), +(90969, 'Serena', 1965, 'F', 182), +(90970, 'Karol', 1965, 'F', 181), +(90971, 'Lavonne', 1965, 'F', 181), +(90972, 'Libby', 1965, 'F', 181), +(90973, 'Clare', 1965, 'F', 180), +(90974, 'Corrine', 1965, 'F', 180), +(90975, 'Josie', 1965, 'F', 180), +(90976, 'Roxanna', 1965, 'F', 180), +(90977, 'Terese', 1965, 'F', 179), +(90978, 'Aida', 1965, 'F', 178), +(90979, 'Aurora', 1965, 'F', 178), +(90980, 'Krystal', 1965, 'F', 178), +(90981, 'Evette', 1965, 'F', 176), +(90982, 'Milagros', 1965, 'F', 176), +(90983, 'Georgette', 1965, 'F', 175), +(90984, 'Maggie', 1965, 'F', 175), +(90985, 'Bernadine', 1965, 'F', 173), +(90986, 'Antionette', 1965, 'F', 171), +(90987, 'Elvira', 1965, 'F', 171), +(90988, 'Kaye', 1965, 'F', 170), +(90989, 'Sydney', 1965, 'F', 169), +(90990, 'Valorie', 1965, 'F', 169), +(90991, 'Cathryn', 1965, 'F', 168), +(90992, 'Inez', 1965, 'F', 168), +(90993, 'Lorinda', 1965, 'F', 168), +(90994, 'Magdalena', 1965, 'F', 168), +(90995, 'Lila', 1965, 'F', 167), +(90996, 'Mercedes', 1965, 'F', 167), +(90997, 'Venus', 1965, 'F', 167), +(90998, 'Alexis', 1965, 'F', 166), +(90999, 'Sarita', 1965, 'F', 166), +(91000, 'Charla', 1965, 'F', 165), +(91001, 'Hattie', 1965, 'F', 165), +(91002, 'Georgina', 1965, 'F', 164), +(91003, 'Glenna', 1965, 'F', 164), +(91004, 'Loriann', 1965, 'F', 164), +(91005, 'Maryjo', 1965, 'F', 164), +(91006, 'Merry', 1965, 'F', 163), +(91007, 'Pat', 1965, 'F', 163), +(91008, 'Twila', 1965, 'F', 163), +(91009, 'Jonna', 1965, 'F', 162), +(91010, 'Tia', 1965, 'F', 162), +(91011, 'Lyn', 1965, 'F', 161), +(91012, 'Camilla', 1965, 'F', 159), +(91013, 'Cassie', 1965, 'F', 159), +(91014, 'Nita', 1965, 'F', 159), +(91015, 'Alisha', 1965, 'F', 157), +(91016, 'Lenore', 1965, 'F', 157), +(91017, 'William', 1965, 'F', 157), +(91018, 'Esmeralda', 1965, 'F', 156), +(91019, 'Dolly', 1965, 'F', 155), +(91020, 'Fay', 1965, 'F', 155), +(91021, 'Machelle', 1965, 'F', 155), +(91022, 'Vickey', 1965, 'F', 155), +(91023, 'Angelita', 1965, 'F', 154), +(91024, 'Annamarie', 1965, 'F', 154), +(91025, 'Minerva', 1965, 'F', 154), +(91026, 'Petra', 1965, 'F', 154), +(91027, 'Corinna', 1965, 'F', 153), +(91028, 'Dedra', 1965, 'F', 153), +(91029, 'Henrietta', 1965, 'F', 153), +(91030, 'Sybil', 1965, 'F', 153), +(91031, 'Elva', 1965, 'F', 152), +(91032, 'Glynis', 1965, 'F', 152), +(91033, 'Portia', 1965, 'F', 152), +(91034, 'Alfreda', 1965, 'F', 151), +(91035, 'Erma', 1965, 'F', 151), +(91036, 'Gerri', 1965, 'F', 151), +(91037, 'Hollie', 1965, 'F', 151), +(91038, 'Kandi', 1965, 'F', 151), +(91039, 'Carey', 1965, 'F', 150), +(91040, 'Lucretia', 1965, 'F', 150), +(91041, 'Ruthie', 1965, 'F', 150), +(91042, 'Anastasia', 1965, 'F', 149), +(91043, 'Barb', 1965, 'F', 149), +(91044, 'Dara', 1965, 'F', 149), +(91045, 'Aretha', 1965, 'F', 148), +(91046, 'Chrystal', 1965, 'F', 147), +(91047, 'Kayla', 1965, 'F', 147), +(91048, 'Lela', 1965, 'F', 147), +(91049, 'Beatriz', 1965, 'F', 146), +(91050, 'Brooke', 1965, 'F', 146), +(91051, 'Candi', 1965, 'F', 146), +(91052, 'Delisa', 1965, 'F', 145), +(91053, 'Louisa', 1965, 'F', 145), +(91054, 'Mollie', 1965, 'F', 145), +(91055, 'Renea', 1965, 'F', 145), +(91056, 'Shiela', 1965, 'F', 145), +(91057, 'Juliann', 1965, 'F', 144), +(91058, 'Melba', 1965, 'F', 144), +(91059, 'Pattie', 1965, 'F', 144), +(91060, 'Carmella', 1965, 'F', 143), +(91061, 'Moira', 1965, 'F', 143), +(91062, 'Dinah', 1965, 'F', 142), +(91063, 'Juana', 1965, 'F', 142), +(91064, 'Mamie', 1965, 'F', 142), +(91065, 'Millie', 1965, 'F', 142), +(91066, 'Zena', 1965, 'F', 142), +(91067, 'Dori', 1965, 'F', 141), +(91068, 'Rosario', 1965, 'F', 141), +(91069, 'Cherry', 1965, 'F', 140), +(91070, 'Gigi', 1965, 'F', 140), +(91071, 'Jeana', 1965, 'F', 140), +(91072, 'Katy', 1965, 'F', 140), +(91073, 'Aleta', 1965, 'F', 139), +(91074, 'Lanette', 1965, 'F', 139), +(91075, 'Michell', 1965, 'F', 139), +(91076, 'Migdalia', 1965, 'F', 139), +(91077, 'Mimi', 1965, 'F', 139), +(91078, 'Miranda', 1965, 'F', 139), +(91079, 'Stacia', 1965, 'F', 139), +(91080, 'Trudi', 1965, 'F', 139), +(91081, 'Brigette', 1965, 'F', 138), +(91082, 'Eloise', 1965, 'F', 138), +(91083, 'Jacquelin', 1965, 'F', 138), +(91084, 'Maricela', 1965, 'F', 137), +(91085, 'Roseanne', 1965, 'F', 137), +(91086, 'Joellen', 1965, 'F', 136), +(91087, 'Sherie', 1965, 'F', 136), +(91088, 'Fannie', 1965, 'F', 135), +(91089, 'Leila', 1965, 'F', 135), +(91090, 'Charles', 1965, 'F', 134), +(91091, 'Consuelo', 1965, 'F', 134), +(91092, 'Kimberli', 1965, 'F', 134), +(91093, 'Kimberlie', 1965, 'F', 134), +(91094, 'Madonna', 1965, 'F', 134), +(91095, 'Mariann', 1965, 'F', 134), +(91096, 'Richard', 1965, 'F', 134), +(91097, 'Angelique', 1965, 'F', 133), +(91098, 'Collette', 1965, 'F', 133), +(91099, 'Darleen', 1965, 'F', 132), +(91100, 'Loraine', 1965, 'F', 132), +(91101, 'Tonda', 1965, 'F', 132), +(91102, 'Janeen', 1965, 'F', 131), +(91103, 'Karon', 1965, 'F', 130), +(91104, 'Suzy', 1965, 'F', 130), +(91105, 'Dorinda', 1965, 'F', 129), +(91106, 'Gaye', 1965, 'F', 129), +(91107, 'Ina', 1965, 'F', 129), +(91108, 'Nanci', 1965, 'F', 129), +(91109, 'Nelda', 1965, 'F', 129), +(91110, 'Penni', 1965, 'F', 129), +(91111, 'Tori', 1965, 'F', 129), +(91112, 'Fonda', 1965, 'F', 128), +(91113, 'Gabriela', 1965, 'F', 128), +(91114, 'Athena', 1965, 'F', 127), +(91115, 'Donita', 1965, 'F', 127), +(91116, 'Edie', 1965, 'F', 127), +(91117, 'Etta', 1965, 'F', 127), +(91118, 'Kitty', 1965, 'F', 127), +(91119, 'Marylou', 1965, 'F', 127), +(91120, 'Casandra', 1965, 'F', 126), +(91121, 'Deedee', 1965, 'F', 126), +(91122, 'Lesli', 1965, 'F', 126), +(91123, 'Malissa', 1965, 'F', 126), +(91124, 'Marni', 1965, 'F', 126), +(91125, 'Monika', 1965, 'F', 126), +(91126, 'Noemi', 1965, 'F', 126), +(91127, 'Richelle', 1965, 'F', 126), +(91128, 'Sharyn', 1965, 'F', 126), +(91129, 'Tamie', 1965, 'F', 126), +(91130, 'Hannah', 1965, 'F', 125), +(91131, 'Josefina', 1965, 'F', 125), +(91132, 'Marva', 1965, 'F', 125), +(91133, 'Darci', 1965, 'F', 124), +(91134, 'Dawne', 1965, 'F', 124), +(91135, 'Elaina', 1965, 'F', 124), +(91136, 'Tangela', 1965, 'F', 124), +(91137, 'Amie', 1965, 'F', 123), +(91138, 'Cherri', 1965, 'F', 123), +(91139, 'Kimberely', 1965, 'F', 123), +(91140, 'Ronna', 1965, 'F', 123), +(91141, 'Francis', 1965, 'F', 122), +(91142, 'Kendall', 1965, 'F', 122), +(91143, 'Lilly', 1965, 'F', 122), +(91144, 'Barbie', 1965, 'F', 121), +(91145, 'Carleen', 1965, 'F', 121), +(91146, 'Cyndi', 1965, 'F', 121), +(91147, 'Leesa', 1965, 'F', 121), +(91148, 'Lizabeth', 1965, 'F', 121), +(91149, 'Shanda', 1965, 'F', 121), +(91150, 'Treva', 1965, 'F', 121), +(91151, 'Alyssa', 1965, 'F', 120), +(91152, 'Charisse', 1965, 'F', 120), +(91153, 'Demetria', 1965, 'F', 120), +(91154, 'Esperanza', 1965, 'F', 120), +(91155, 'Joseph', 1965, 'F', 120), +(91156, 'Lavonda', 1965, 'F', 120), +(91157, 'Linette', 1965, 'F', 120), +(91158, 'Meg', 1965, 'F', 120), +(91159, 'Natasha', 1965, 'F', 120), +(91160, 'Twyla', 1965, 'F', 120), +(91161, 'Avis', 1965, 'F', 119), +(91162, 'Ester', 1965, 'F', 119), +(91163, 'Mark', 1965, 'F', 119), +(91164, 'Risa', 1965, 'F', 119), +(91165, 'Suzanna', 1965, 'F', 119), +(91166, 'Thea', 1965, 'F', 119), +(91167, 'Charleen', 1965, 'F', 118), +(91168, 'Debbra', 1965, 'F', 118), +(91169, 'Mechelle', 1965, 'F', 118), +(91170, 'Shirlene', 1965, 'F', 118), +(91171, 'Tawana', 1965, 'F', 118), +(91172, 'Brigid', 1965, 'F', 117), +(91173, 'Kevin', 1965, 'F', 117), +(91174, 'Myrtle', 1965, 'F', 117), +(91175, 'Roxie', 1965, 'F', 117), +(91176, 'Shonda', 1965, 'F', 117), +(91177, 'Yolonda', 1965, 'F', 117), +(91178, 'Adrian', 1965, 'F', 116), +(91179, 'Cornelia', 1965, 'F', 116), +(91180, 'Jewell', 1965, 'F', 116), +(91181, 'Julianna', 1965, 'F', 116), +(91182, 'Annetta', 1965, 'F', 115), +(91183, 'Geralyn', 1965, 'F', 115), +(91184, 'Madelyn', 1965, 'F', 115), +(91185, 'Adrianne', 1965, 'F', 114), +(91186, 'Carin', 1965, 'F', 114), +(91187, 'Cathrine', 1965, 'F', 114), +(91188, 'Delinda', 1965, 'F', 114), +(91189, 'Jerry', 1965, 'F', 114), +(91190, 'Keli', 1965, 'F', 114), +(91191, 'Latricia', 1965, 'F', 114), +(91192, 'Loren', 1965, 'F', 114), +(91193, 'Marissa', 1965, 'F', 114), +(91194, 'Randy', 1965, 'F', 114), +(91195, 'Deeann', 1965, 'F', 113), +(91196, 'Evangeline', 1965, 'F', 113), +(91197, 'Gia', 1965, 'F', 113), +(91198, 'Ginny', 1965, 'F', 113), +(91199, 'Justina', 1965, 'F', 113), +(91200, 'Lorelei', 1965, 'F', 113), +(91201, 'Cristine', 1965, 'F', 112), +(91202, 'Fawn', 1965, 'F', 112), +(91203, 'Gertrude', 1965, 'F', 112), +(91204, 'Katheryn', 1965, 'F', 112), +(91205, 'Lizette', 1965, 'F', 112), +(91206, 'Margot', 1965, 'F', 112), +(91207, 'Romona', 1965, 'F', 112), +(91208, 'Thomas', 1965, 'F', 112), +(91209, 'Timothy', 1965, 'F', 112), +(91210, 'Tommie', 1965, 'F', 112), +(91211, 'Angeline', 1965, 'F', 111), +(91212, 'Anthony', 1965, 'F', 111), +(91213, 'Hillary', 1965, 'F', 111), +(91214, 'Jaime', 1965, 'F', 111), +(91215, 'Bethann', 1965, 'F', 110), +(91216, 'Jena', 1965, 'F', 110), +(91217, 'Juliette', 1965, 'F', 110), +(91218, 'Kenneth', 1965, 'F', 110), +(91219, 'Louann', 1965, 'F', 110), +(91220, 'Melva', 1965, 'F', 110), +(91221, 'Sadie', 1965, 'F', 110), +(91222, 'Winifred', 1965, 'F', 110), +(91223, 'Karolyn', 1965, 'F', 109), +(91224, 'Lula', 1965, 'F', 109), +(91225, 'Millicent', 1965, 'F', 109), +(91226, 'Noel', 1965, 'F', 109), +(91227, 'Shaun', 1965, 'F', 109), +(91228, 'Zelda', 1965, 'F', 109), +(91229, 'Babette', 1965, 'F', 108), +(91230, 'Blanche', 1965, 'F', 108), +(91231, 'Joanie', 1965, 'F', 108), +(91232, 'May', 1965, 'F', 108), +(91233, 'Brandi', 1965, 'F', 107), +(91234, 'Doretha', 1965, 'F', 107), +(91235, 'Francesca', 1965, 'F', 107), +(91236, 'Jeanmarie', 1965, 'F', 107), +(91237, 'Lashawn', 1965, 'F', 107), +(91238, 'Luisa', 1965, 'F', 107), +(91239, 'Muriel', 1965, 'F', 107), +(91240, 'Tessa', 1965, 'F', 107), +(91241, 'Anjanette', 1965, 'F', 106), +(91242, 'Clarice', 1965, 'F', 106), +(91243, 'Earlene', 1965, 'F', 106), +(91244, 'Estelle', 1965, 'F', 106), +(91245, 'Holli', 1965, 'F', 106), +(91246, 'Michaela', 1965, 'F', 106), +(91247, 'Janel', 1965, 'F', 105), +(91248, 'Lidia', 1965, 'F', 105), +(91249, 'Rona', 1965, 'F', 105), +(91250, 'Sharyl', 1965, 'F', 104), +(91251, 'Cheryle', 1965, 'F', 103), +(91252, 'Danelle', 1965, 'F', 103), +(91253, 'Jacki', 1965, 'F', 103), +(91254, 'Jada', 1965, 'F', 103), +(91255, 'Jannie', 1965, 'F', 103), +(91256, 'Lia', 1965, 'F', 103), +(91257, 'Marietta', 1965, 'F', 103), +(91258, 'Scarlett', 1965, 'F', 103), +(91259, 'Dannette', 1965, 'F', 102), +(91260, 'Debbi', 1965, 'F', 102), +(91261, 'Debrah', 1965, 'F', 102), +(91262, 'Elissa', 1965, 'F', 102), +(91263, 'Elvia', 1965, 'F', 102), +(91264, 'Jimmie', 1965, 'F', 102), +(91265, 'Joleen', 1965, 'F', 102), +(91266, 'Latonia', 1965, 'F', 102), +(91267, 'Tyra', 1965, 'F', 102), +(91268, 'Antonette', 1965, 'F', 101), +(91269, 'Cherrie', 1965, 'F', 101), +(91270, 'Christal', 1965, 'F', 101), +(91271, 'Claudine', 1965, 'F', 101), +(91272, 'Cristy', 1965, 'F', 101), +(91273, 'Denine', 1965, 'F', 101), +(91274, 'Denita', 1965, 'F', 101), +(91275, 'Inger', 1965, 'F', 101), +(91276, 'Tawnya', 1965, 'F', 101), +(91277, 'Daniel', 1965, 'F', 100), +(91278, 'Fran', 1965, 'F', 100), +(91279, 'Joycelyn', 1965, 'F', 100), +(91280, 'Maryjane', 1965, 'F', 100), +(91281, 'Sherrill', 1965, 'F', 100), +(91282, 'Sophie', 1965, 'F', 100), +(91283, 'Michael', 1965, 'M', 81048), +(91284, 'John', 1965, 'M', 71563), +(91285, 'David', 1965, 'M', 67886), +(91286, 'James', 1965, 'M', 67707), +(91287, 'Robert', 1965, 'M', 63146), +(91288, 'William', 1965, 'M', 40149), +(91289, 'Mark', 1965, 'M', 38276), +(91290, 'Richard', 1965, 'M', 36858), +(91291, 'Thomas', 1965, 'M', 31635), +(91292, 'Jeffrey', 1965, 'M', 29594), +(91293, 'Joseph', 1965, 'M', 28662), +(91294, 'Timothy', 1965, 'M', 28348), +(91295, 'Kevin', 1965, 'M', 28192), +(91296, 'Steven', 1965, 'M', 27998), +(91297, 'Scott', 1965, 'M', 25454), +(91298, 'Paul', 1965, 'M', 24935), +(91299, 'Daniel', 1965, 'M', 24862), +(91300, 'Christopher', 1965, 'M', 24650), +(91301, 'Brian', 1965, 'M', 24559), +(91302, 'Charles', 1965, 'M', 23495), +(91303, 'Kenneth', 1965, 'M', 22681), +(91304, 'Anthony', 1965, 'M', 20339), +(91305, 'Gregory', 1965, 'M', 18215), +(91306, 'Ronald', 1965, 'M', 17628), +(91307, 'Eric', 1965, 'M', 16834), +(91308, 'Donald', 1965, 'M', 16044), +(91309, 'Gary', 1965, 'M', 15281), +(91310, 'Stephen', 1965, 'M', 14654), +(91311, 'Edward', 1965, 'M', 14415), +(91312, 'Todd', 1965, 'M', 13939), +(91313, 'Patrick', 1965, 'M', 12948), +(91314, 'Douglas', 1965, 'M', 12787), +(91315, 'Rodney', 1965, 'M', 11084), +(91316, 'George', 1965, 'M', 10687), +(91317, 'Keith', 1965, 'M', 10684), +(91318, 'Matthew', 1965, 'M', 9993), +(91319, 'Andrew', 1965, 'M', 9686), +(91320, 'Larry', 1965, 'M', 9411), +(91321, 'Peter', 1965, 'M', 9394), +(91322, 'Terry', 1965, 'M', 9095), +(91323, 'Jerry', 1965, 'M', 9020), +(91324, 'Randy', 1965, 'M', 8866), +(91325, 'Frank', 1965, 'M', 8318), +(91326, 'Dennis', 1965, 'M', 8211), +(91327, 'Raymond', 1965, 'M', 8054), +(91328, 'Craig', 1965, 'M', 7872), +(91329, 'Jeffery', 1965, 'M', 7733), +(91330, 'Tony', 1965, 'M', 6824), +(91331, 'Roger', 1965, 'M', 6432), +(91332, 'Bruce', 1965, 'M', 6326), +(91333, 'Mike', 1965, 'M', 6034), +(91334, 'Darren', 1965, 'M', 5934), +(91335, 'Troy', 1965, 'M', 5860), +(91336, 'Carl', 1965, 'M', 5802), +(91337, 'Steve', 1965, 'M', 5689), +(91338, 'Danny', 1965, 'M', 5676), +(91339, 'Russell', 1965, 'M', 5656), +(91340, 'Ricky', 1965, 'M', 5653), +(91341, 'Alan', 1965, 'M', 5622), +(91342, 'Chris', 1965, 'M', 5488), +(91343, 'Vincent', 1965, 'M', 5436), +(91344, 'Jeff', 1965, 'M', 5417), +(91345, 'Bryan', 1965, 'M', 5347), +(91346, 'Gerald', 1965, 'M', 5257), +(91347, 'Wayne', 1965, 'M', 5117), +(91348, 'Lawrence', 1965, 'M', 4964), +(91349, 'Martin', 1965, 'M', 4940), +(91350, 'Darryl', 1965, 'M', 4924), +(91351, 'Shawn', 1965, 'M', 4924), +(91352, 'Phillip', 1965, 'M', 4895), +(91353, 'Joe', 1965, 'M', 4839), +(91354, 'Bradley', 1965, 'M', 4793), +(91355, 'Randall', 1965, 'M', 4759), +(91356, 'Jonathan', 1965, 'M', 4729), +(91357, 'Curtis', 1965, 'M', 4691), +(91358, 'Johnny', 1965, 'M', 4686), +(91359, 'Billy', 1965, 'M', 4652), +(91360, 'Jon', 1965, 'M', 4600), +(91361, 'Sean', 1965, 'M', 4600), +(91362, 'Bobby', 1965, 'M', 4591), +(91363, 'Jimmy', 1965, 'M', 4530), +(91364, 'Walter', 1965, 'M', 4489), +(91365, 'Samuel', 1965, 'M', 4401), +(91366, 'Dale', 1965, 'M', 4400), +(91367, 'Glenn', 1965, 'M', 4365), +(91368, 'Barry', 1965, 'M', 4326), +(91369, 'Philip', 1965, 'M', 4277), +(91370, 'Dean', 1965, 'M', 4098), +(91371, 'Jose', 1965, 'M', 3967), +(91372, 'Jay', 1965, 'M', 3943), +(91373, 'Darrell', 1965, 'M', 3893), +(91374, 'Allen', 1965, 'M', 3841), +(91375, 'Willie', 1965, 'M', 3801), +(91376, 'Henry', 1965, 'M', 3798), +(91377, 'Roy', 1965, 'M', 3788), +(91378, 'Arthur', 1965, 'M', 3775), +(91379, 'Tim', 1965, 'M', 3721), +(91380, 'Victor', 1965, 'M', 3683), +(91381, 'Harold', 1965, 'M', 3542), +(91382, 'Albert', 1965, 'M', 3421), +(91383, 'Louis', 1965, 'M', 3276), +(91384, 'Darrin', 1965, 'M', 3257), +(91385, 'Ralph', 1965, 'M', 3228), +(91386, 'Jack', 1965, 'M', 3204), +(91387, 'Greg', 1965, 'M', 3185), +(91388, 'Frederick', 1965, 'M', 3158), +(91389, 'Ronnie', 1965, 'M', 3142), +(91390, 'Marc', 1965, 'M', 3052), +(91391, 'Marvin', 1965, 'M', 2969), +(91392, 'Tracy', 1965, 'M', 2929), +(91393, 'Jason', 1965, 'M', 2899), +(91394, 'Kurt', 1965, 'M', 2881), +(91395, 'Eddie', 1965, 'M', 2871), +(91396, 'Joel', 1965, 'M', 2861), +(91397, 'Stanley', 1965, 'M', 2812), +(91398, 'Lee', 1965, 'M', 2775), +(91399, 'Jim', 1965, 'M', 2772), +(91400, 'Micheal', 1965, 'M', 2766), +(91401, 'Tommy', 1965, 'M', 2724), +(91402, 'Eugene', 1965, 'M', 2720), +(91403, 'Leonard', 1965, 'M', 2716), +(91404, 'Howard', 1965, 'M', 2680), +(91405, 'Darin', 1965, 'M', 2616), +(91406, 'Ernest', 1965, 'M', 2575), +(91407, 'Adam', 1965, 'M', 2570), +(91408, 'Dwayne', 1965, 'M', 2526), +(91409, 'Tom', 1965, 'M', 2501), +(91410, 'Reginald', 1965, 'M', 2472), +(91411, 'Derrick', 1965, 'M', 2418), +(91412, 'Aaron', 1965, 'M', 2416), +(91413, 'Brent', 1965, 'M', 2411), +(91414, 'Brett', 1965, 'M', 2347), +(91415, 'Benjamin', 1965, 'M', 2341), +(91416, 'Norman', 1965, 'M', 2304), +(91417, 'Duane', 1965, 'M', 2275), +(91418, 'Kelly', 1965, 'M', 2260), +(91419, 'Rick', 1965, 'M', 2255), +(91420, 'Melvin', 1965, 'M', 2230), +(91421, 'Jesse', 1965, 'M', 2212), +(91422, 'Juan', 1965, 'M', 2197), +(91423, 'Fred', 1965, 'M', 2151), +(91424, 'Jerome', 1965, 'M', 2140), +(91425, 'Theodore', 1965, 'M', 2140), +(91426, 'Carlos', 1965, 'M', 2130), +(91427, 'Erik', 1965, 'M', 2122), +(91428, 'Harry', 1965, 'M', 2113), +(91429, 'Ray', 1965, 'M', 2090), +(91430, 'Brad', 1965, 'M', 2088), +(91431, 'Nicholas', 1965, 'M', 2074), +(91432, 'Glen', 1965, 'M', 2070), +(91433, 'Bill', 1965, 'M', 2061), +(91434, 'Kirk', 1965, 'M', 2058), +(91435, 'Calvin', 1965, 'M', 2044), +(91436, 'Karl', 1965, 'M', 2025), +(91437, 'Dan', 1965, 'M', 1995), +(91438, 'Earl', 1965, 'M', 1949), +(91439, 'Don', 1965, 'M', 1911), +(91440, 'Edwin', 1965, 'M', 1905), +(91441, 'Mitchell', 1965, 'M', 1887), +(91442, 'Wesley', 1965, 'M', 1862), +(91443, 'Kent', 1965, 'M', 1847), +(91444, 'Warren', 1965, 'M', 1826), +(91445, 'Clifford', 1965, 'M', 1822), +(91446, 'Francis', 1965, 'M', 1817), +(91447, 'Andre', 1965, 'M', 1804), +(91448, 'Derek', 1965, 'M', 1802), +(91449, 'Clarence', 1965, 'M', 1801), +(91450, 'Antonio', 1965, 'M', 1779), +(91451, 'Lance', 1965, 'M', 1752), +(91452, 'Bernard', 1965, 'M', 1674), +(91453, 'Alfred', 1965, 'M', 1655), +(91454, 'Tyrone', 1965, 'M', 1572), +(91455, 'Leroy', 1965, 'M', 1538), +(91456, 'Luis', 1965, 'M', 1525), +(91457, 'Lonnie', 1965, 'M', 1502), +(91458, 'Manuel', 1965, 'M', 1501), +(91459, 'Kerry', 1965, 'M', 1475), +(91460, 'Gordon', 1965, 'M', 1445), +(91461, 'Daryl', 1965, 'M', 1429), +(91462, 'Nathan', 1965, 'M', 1420), +(91463, 'Leslie', 1965, 'M', 1419), +(91464, 'Maurice', 1965, 'M', 1418), +(91465, 'Herbert', 1965, 'M', 1380), +(91466, 'Marcus', 1965, 'M', 1375), +(91467, 'Franklin', 1965, 'M', 1373), +(91468, 'Guy', 1965, 'M', 1365), +(91469, 'Perry', 1965, 'M', 1365), +(91470, 'Vernon', 1965, 'M', 1357), +(91471, 'Gilbert', 1965, 'M', 1346), +(91472, 'Alvin', 1965, 'M', 1331), +(91473, 'Alexander', 1965, 'M', 1330), +(91474, 'Neil', 1965, 'M', 1317), +(91475, 'Gene', 1965, 'M', 1310), +(91476, 'Wade', 1965, 'M', 1300), +(91477, 'Lloyd', 1965, 'M', 1296), +(91478, 'Stuart', 1965, 'M', 1296), +(91479, 'Mario', 1965, 'M', 1289), +(91480, 'Ricardo', 1965, 'M', 1279), +(91481, 'Leon', 1965, 'M', 1262), +(91482, 'Alex', 1965, 'M', 1250), +(91483, 'Ted', 1965, 'M', 1245), +(91484, 'Gregg', 1965, 'M', 1233), +(91485, 'Dwight', 1965, 'M', 1228), +(91486, 'Byron', 1965, 'M', 1223), +(91487, 'Marty', 1965, 'M', 1220), +(91488, 'Dana', 1965, 'M', 1216), +(91489, 'Kelvin', 1965, 'M', 1196), +(91490, 'Chad', 1965, 'M', 1178), +(91491, 'Kyle', 1965, 'M', 1174), +(91492, 'Andy', 1965, 'M', 1173), +(91493, 'Dave', 1965, 'M', 1159), +(91494, 'Ruben', 1965, 'M', 1151), +(91495, 'Ron', 1965, 'M', 1144), +(91496, 'Joey', 1965, 'M', 1120), +(91497, 'Rickey', 1965, 'M', 1118), +(91498, 'Lewis', 1965, 'M', 1117), +(91499, 'Kenny', 1965, 'M', 1106), +(91500, 'Ken', 1965, 'M', 1099), +(91501, 'Allan', 1965, 'M', 1095), +(91502, 'Ryan', 1965, 'M', 1091), +(91503, 'Timmy', 1965, 'M', 1087), +(91504, 'Travis', 1965, 'M', 1077), +(91505, 'Nathaniel', 1965, 'M', 1071), +(91506, 'Roberto', 1965, 'M', 1061), +(91507, 'Floyd', 1965, 'M', 1054), +(91508, 'Terrence', 1965, 'M', 1034), +(91509, 'Doug', 1965, 'M', 1029), +(91510, 'Shane', 1965, 'M', 1025), +(91511, 'Jesus', 1965, 'M', 1018), +(91512, 'Bob', 1965, 'M', 1000), +(91513, 'Roderick', 1965, 'M', 998), +(91514, 'Oscar', 1965, 'M', 989), +(91515, 'Ross', 1965, 'M', 987), +(91516, 'Donnie', 1965, 'M', 971), +(91517, 'Hector', 1965, 'M', 968), +(91518, 'Charlie', 1965, 'M', 967), +(91519, 'Lester', 1965, 'M', 954), +(91520, 'Miguel', 1965, 'M', 952), +(91521, 'Jimmie', 1965, 'M', 949), +(91522, 'Arnold', 1965, 'M', 946), +(91523, 'Terrance', 1965, 'M', 946), +(91524, 'Jamie', 1965, 'M', 944), +(91525, 'Shannon', 1965, 'M', 937), +(91526, 'Roland', 1965, 'M', 934), +(91527, 'Clinton', 1965, 'M', 918), +(91528, 'Robin', 1965, 'M', 915), +(91529, 'Leo', 1965, 'M', 904), +(91530, 'Johnnie', 1965, 'M', 891), +(91531, 'Neal', 1965, 'M', 886), +(91532, 'Jackie', 1965, 'M', 885), +(91533, 'Clayton', 1965, 'M', 884), +(91534, 'Jessie', 1965, 'M', 875), +(91535, 'Geoffrey', 1965, 'M', 866), +(91536, 'Wendell', 1965, 'M', 863), +(91537, 'Freddie', 1965, 'M', 845), +(91538, 'Gerard', 1965, 'M', 828), +(91539, 'Milton', 1965, 'M', 824), +(91540, 'Fredrick', 1965, 'M', 818), +(91541, 'Nelson', 1965, 'M', 818), +(91542, 'Matt', 1965, 'M', 799), +(91543, 'Herman', 1965, 'M', 796), +(91544, 'Raul', 1965, 'M', 794), +(91545, 'Francisco', 1965, 'M', 792), +(91546, 'Rex', 1965, 'M', 789), +(91547, 'Marshall', 1965, 'M', 781), +(91548, 'Randolph', 1965, 'M', 781), +(91549, 'Sam', 1965, 'M', 773), +(91550, 'Adrian', 1965, 'M', 772), +(91551, 'Clyde', 1965, 'M', 770), +(91552, 'Terence', 1965, 'M', 767), +(91553, 'Daren', 1965, 'M', 762), +(91554, 'Ramon', 1965, 'M', 749), +(91555, 'Rene', 1965, 'M', 744), +(91556, 'Bret', 1965, 'M', 743), +(91557, 'Christian', 1965, 'M', 729), +(91558, 'Ben', 1965, 'M', 728), +(91559, 'Cecil', 1965, 'M', 728), +(91560, 'Harvey', 1965, 'M', 724), +(91561, 'Angel', 1965, 'M', 721), +(91562, 'Damon', 1965, 'M', 720), +(91563, 'Nick', 1965, 'M', 718), +(91564, 'Robbie', 1965, 'M', 713), +(91565, 'Cedric', 1965, 'M', 702), +(91566, 'Pedro', 1965, 'M', 702), +(91567, 'Randal', 1965, 'M', 691), +(91568, 'Cary', 1965, 'M', 689), +(91569, 'Clifton', 1965, 'M', 685), +(91570, 'Jaime', 1965, 'M', 680), +(91571, 'Frankie', 1965, 'M', 679), +(91572, 'Jody', 1965, 'M', 675), +(91573, 'Angelo', 1965, 'M', 660), +(91574, 'Hugh', 1965, 'M', 656), +(91575, 'Everett', 1965, 'M', 655), +(91576, 'Jorge', 1965, 'M', 655), +(91577, 'Loren', 1965, 'M', 655), +(91578, 'Sidney', 1965, 'M', 641), +(91579, 'Carlton', 1965, 'M', 640), +(91580, 'Ivan', 1965, 'M', 637), +(91581, 'Chester', 1965, 'M', 629), +(91582, 'Clark', 1965, 'M', 625), +(91583, 'Gabriel', 1965, 'M', 623), +(91584, 'Grant', 1965, 'M', 620), +(91585, 'Sammy', 1965, 'M', 619), +(91586, 'Rafael', 1965, 'M', 617), +(91587, 'Malcolm', 1965, 'M', 613), +(91588, 'Kim', 1965, 'M', 612), +(91589, 'Claude', 1965, 'M', 605), +(91590, 'Stacy', 1965, 'M', 605), +(91591, 'Edgar', 1965, 'M', 602), +(91592, 'Armando', 1965, 'M', 601), +(91593, 'Chuck', 1965, 'M', 593), +(91594, 'Felix', 1965, 'M', 593), +(91595, 'Rudy', 1965, 'M', 593), +(91596, 'Lorenzo', 1965, 'M', 591), +(91597, 'Dewayne', 1965, 'M', 586), +(91598, 'Bradford', 1965, 'M', 582), +(91599, 'Curt', 1965, 'M', 580), +(91600, 'Orlando', 1965, 'M', 579), +(91601, 'Javier', 1965, 'M', 574), +(91602, 'Salvatore', 1965, 'M', 562), +(91603, 'Evan', 1965, 'M', 558), +(91604, 'Shaun', 1965, 'M', 558), +(91605, 'Trent', 1965, 'M', 558), +(91606, 'Garry', 1965, 'M', 553), +(91607, 'Fernando', 1965, 'M', 548), +(91608, 'Wallace', 1965, 'M', 540), +(91609, 'Bryant', 1965, 'M', 533), +(91610, 'Alberto', 1965, 'M', 527), +(91611, 'Eduardo', 1965, 'M', 524), +(91612, 'Teddy', 1965, 'M', 523), +(91613, 'Morris', 1965, 'M', 519), +(91614, 'Pat', 1965, 'M', 519), +(91615, 'Scot', 1965, 'M', 516), +(91616, 'Benny', 1965, 'M', 515), +(91617, 'Lynn', 1965, 'M', 515), +(91618, 'Dexter', 1965, 'M', 508), +(91619, 'Corey', 1965, 'M', 504), +(91620, 'Virgil', 1965, 'M', 504), +(91621, 'Darrel', 1965, 'M', 500), +(91622, 'Dominic', 1965, 'M', 499), +(91623, 'Myron', 1965, 'M', 499), +(91624, 'Bart', 1965, 'M', 495), +(91625, 'Stacey', 1965, 'M', 495), +(91626, 'Rod', 1965, 'M', 493), +(91627, 'Ian', 1965, 'M', 492), +(91628, 'Alfredo', 1965, 'M', 489), +(91629, 'Jacob', 1965, 'M', 488), +(91630, 'Mickey', 1965, 'M', 478), +(91631, 'Monte', 1965, 'M', 476), +(91632, 'Toby', 1965, 'M', 473), +(91633, 'Otis', 1965, 'M', 472), +(91634, 'Joshua', 1965, 'M', 464), +(91635, 'Julian', 1965, 'M', 461), +(91636, 'Justin', 1965, 'M', 460), +(91637, 'Erick', 1965, 'M', 457), +(91638, 'Preston', 1965, 'M', 457), +(91639, 'Stewart', 1965, 'M', 457), +(91640, 'Lyle', 1965, 'M', 456), +(91641, 'Spencer', 1965, 'M', 455), +(91642, 'Colin', 1965, 'M', 454), +(91643, 'Cory', 1965, 'M', 450), +(91644, 'Pete', 1965, 'M', 449), +(91645, 'Bennie', 1965, 'M', 447), +(91646, 'Blake', 1965, 'M', 447), +(91647, 'Mathew', 1965, 'M', 445), +(91648, 'Arturo', 1965, 'M', 444), +(91649, 'Earnest', 1965, 'M', 442), +(91650, 'Casey', 1965, 'M', 441), +(91651, 'Clay', 1965, 'M', 440), +(91652, 'Rob', 1965, 'M', 437), +(91653, 'Edmund', 1965, 'M', 432), +(91654, 'Scotty', 1965, 'M', 432), +(91655, 'Marion', 1965, 'M', 431), +(91656, 'Kendall', 1965, 'M', 430), +(91657, 'Isaac', 1965, 'M', 429), +(91658, 'Max', 1965, 'M', 424), +(91659, 'Alonzo', 1965, 'M', 420), +(91660, 'Julius', 1965, 'M', 419), +(91661, 'Kip', 1965, 'M', 419), +(91662, 'Monty', 1965, 'M', 419), +(91663, 'Willard', 1965, 'M', 414), +(91664, 'Drew', 1965, 'M', 411), +(91665, 'Rusty', 1965, 'M', 411), +(91666, 'Sherman', 1965, 'M', 409), +(91667, 'Ira', 1965, 'M', 408), +(91668, 'Kris', 1965, 'M', 408), +(91669, 'Van', 1965, 'M', 407), +(91670, 'Alton', 1965, 'M', 404), +(91671, 'Clint', 1965, 'M', 403), +(91672, 'Luke', 1965, 'M', 403), +(91673, 'Stephan', 1965, 'M', 403), +(91674, 'Jerald', 1965, 'M', 402), +(91675, 'Brandon', 1965, 'M', 400), +(91676, 'Luther', 1965, 'M', 396), +(91677, 'Sheldon', 1965, 'M', 396), +(91678, 'Stevie', 1965, 'M', 390), +(91679, 'Vince', 1965, 'M', 388), +(91680, 'Noel', 1965, 'M', 387), +(91681, 'Sylvester', 1965, 'M', 387), +(91682, 'Marco', 1965, 'M', 386), +(91683, 'Alfonso', 1965, 'M', 383), +(91684, 'Jeffry', 1965, 'M', 382), +(91685, 'Vance', 1965, 'M', 382), +(91686, 'Darwin', 1965, 'M', 381), +(91687, 'Elmer', 1965, 'M', 376), +(91688, 'Delbert', 1965, 'M', 373), +(91689, 'Julio', 1965, 'M', 373), +(91690, 'Rocky', 1965, 'M', 372), +(91691, 'Darron', 1965, 'M', 371), +(91692, 'Enrique', 1965, 'M', 371), +(91693, 'Laurence', 1965, 'M', 365), +(91694, 'Phil', 1965, 'M', 359), +(91695, 'Ernesto', 1965, 'M', 357), +(91696, 'Leland', 1965, 'M', 357), +(91697, 'Roosevelt', 1965, 'M', 354), +(91698, 'Tracey', 1965, 'M', 354), +(91699, 'Robby', 1965, 'M', 353), +(91700, 'Rory', 1965, 'M', 353), +(91701, 'Forrest', 1965, 'M', 347), +(91702, 'Blaine', 1965, 'M', 343), +(91703, 'Rodger', 1965, 'M', 343), +(91704, 'Darnell', 1965, 'M', 340), +(91705, 'Tod', 1965, 'M', 337), +(91706, 'Lamont', 1965, 'M', 335), +(91707, 'Bryon', 1965, 'M', 330), +(91708, 'Tommie', 1965, 'M', 330), +(91709, 'Rudolph', 1965, 'M', 329), +(91710, 'Gerardo', 1965, 'M', 325), +(91711, 'Seth', 1965, 'M', 325), +(91712, 'Cameron', 1965, 'M', 324), +(91713, 'Lowell', 1965, 'M', 323), +(91714, 'Dallas', 1965, 'M', 319), +(91715, 'Rodolfo', 1965, 'M', 318), +(91716, 'Salvador', 1965, 'M', 318), +(91717, 'Devin', 1965, 'M', 317), +(91718, 'Zachary', 1965, 'M', 314), +(91719, 'Doyle', 1965, 'M', 312), +(91720, 'Brendan', 1965, 'M', 309), +(91721, 'Archie', 1965, 'M', 308), +(91722, 'Dominick', 1965, 'M', 307), +(91723, 'Ed', 1965, 'M', 306), +(91724, 'Lyndon', 1965, 'M', 306), +(91725, 'Horace', 1965, 'M', 305), +(91726, 'Hubert', 1965, 'M', 305), +(91727, 'Oliver', 1965, 'M', 302), +(91728, 'Sergio', 1965, 'M', 301), +(91729, 'Ty', 1965, 'M', 301), +(91730, 'Dirk', 1965, 'M', 300), +(91731, 'Willis', 1965, 'M', 299), +(91732, 'Tyler', 1965, 'M', 298), +(91733, 'Ervin', 1965, 'M', 297), +(91734, 'Gerry', 1965, 'M', 296), +(91735, 'Rolando', 1965, 'M', 292), +(91736, 'Lionel', 1965, 'M', 291), +(91737, 'Miles', 1965, 'M', 291), +(91738, 'Garrett', 1965, 'M', 290), +(91739, 'Vaughn', 1965, 'M', 289), +(91740, 'Demetrius', 1965, 'M', 288), +(91741, 'Grady', 1965, 'M', 288), +(91742, 'Boyd', 1965, 'M', 285), +(91743, 'Carey', 1965, 'M', 284), +(91744, 'Dion', 1965, 'M', 284), +(91745, 'Alejandro', 1965, 'M', 283), +(91746, 'Cornelius', 1965, 'M', 281), +(91747, 'Gilberto', 1965, 'M', 281), +(91748, 'Rickie', 1965, 'M', 281), +(91749, 'Abel', 1965, 'M', 280), +(91750, 'Jeremy', 1965, 'M', 279), +(91751, 'Abraham', 1965, 'M', 274), +(91752, 'Mack', 1965, 'M', 273), +(91753, 'Owen', 1965, 'M', 272), +(91754, 'Denis', 1965, 'M', 271), +(91755, 'Dewey', 1965, 'M', 271), +(91756, 'Reynaldo', 1965, 'M', 271), +(91757, 'Freddy', 1965, 'M', 269), +(91758, 'Kurtis', 1965, 'M', 269), +(91759, 'Wilbert', 1965, 'M', 269), +(91760, 'Ernie', 1965, 'M', 265), +(91761, 'Deron', 1965, 'M', 263), +(91762, 'Bert', 1965, 'M', 262), +(91763, 'Israel', 1965, 'M', 260), +(91764, 'Marlon', 1965, 'M', 260), +(91765, 'Buddy', 1965, 'M', 259), +(91766, 'Elliott', 1965, 'M', 255), +(91767, 'Wilbur', 1965, 'M', 255), +(91768, 'Louie', 1965, 'M', 252), +(91769, 'Andres', 1965, 'M', 251), +(91770, 'Guadalupe', 1965, 'M', 251), +(91771, 'Wilson', 1965, 'M', 250), +(91772, 'Marcos', 1965, 'M', 245), +(91773, 'Ronny', 1965, 'M', 243), +(91774, 'Terrell', 1965, 'M', 242), +(91775, 'Lamar', 1965, 'M', 241), +(91776, 'Daron', 1965, 'M', 240), +(91777, 'Jonathon', 1965, 'M', 239), +(91778, 'Denny', 1965, 'M', 237), +(91779, 'Scottie', 1965, 'M', 237), +(91780, 'Elbert', 1965, 'M', 236), +(91781, 'Pablo', 1965, 'M', 235), +(91782, 'Winston', 1965, 'M', 233), +(91783, 'Pierre', 1965, 'M', 232), +(91784, 'Homer', 1965, 'M', 231), +(91785, 'Moses', 1965, 'M', 231), +(91786, 'Ellis', 1965, 'M', 230), +(91787, 'Rufus', 1965, 'M', 229), +(91788, 'Conrad', 1965, 'M', 226), +(91789, 'Amos', 1965, 'M', 225), +(91790, 'Lane', 1965, 'M', 225), +(91791, 'Hans', 1965, 'M', 223), +(91792, 'Tad', 1965, 'M', 223), +(91793, 'Irvin', 1965, 'M', 222), +(91794, 'Cesar', 1965, 'M', 221), +(91795, 'Royce', 1965, 'M', 221), +(91796, 'Felipe', 1965, 'M', 220), +(91797, 'Marlin', 1965, 'M', 220), +(91798, 'Joesph', 1965, 'M', 219), +(91799, 'Randell', 1965, 'M', 219), +(91800, 'Alphonso', 1965, 'M', 218), +(91801, 'Jan', 1965, 'M', 218), +(91802, 'Cleveland', 1965, 'M', 217), +(91803, 'Dane', 1965, 'M', 217), +(91804, 'Dino', 1965, 'M', 215), +(91805, 'Sterling', 1965, 'M', 215), +(91806, 'Kirby', 1965, 'M', 214), +(91807, 'Reuben', 1965, 'M', 214), +(91808, 'Donnell', 1965, 'M', 213), +(91809, 'Garland', 1965, 'M', 213), +(91810, 'Trevor', 1965, 'M', 212), +(91811, 'Al', 1965, 'M', 211), +(91812, 'Austin', 1965, 'M', 210), +(91813, 'Danial', 1965, 'M', 210), +(91814, 'Erich', 1965, 'M', 210), +(91815, 'Sandy', 1965, 'M', 210), +(91816, 'Johnathan', 1965, 'M', 209), +(91817, 'Edmond', 1965, 'M', 208), +(91818, 'Morgan', 1965, 'M', 208), +(91819, 'Avery', 1965, 'M', 206), +(91820, 'Emanuel', 1965, 'M', 205), +(91821, 'Guillermo', 1965, 'M', 202), +(91822, 'Michel', 1965, 'M', 201), +(91823, 'Blair', 1965, 'M', 200), +(91824, 'Ismael', 1965, 'M', 200), +(91825, 'Jean', 1965, 'M', 200), +(91826, 'Sammie', 1965, 'M', 200), +(91827, 'Hal', 1965, 'M', 199), +(91828, 'Wilfred', 1965, 'M', 199), +(91829, 'Will', 1965, 'M', 196), +(91830, 'Ramiro', 1965, 'M', 195), +(91831, 'Tomas', 1965, 'M', 195), +(91832, 'Emmett', 1965, 'M', 194), +(91833, 'Stan', 1965, 'M', 194), +(91834, 'Aubrey', 1965, 'M', 193), +(91835, 'Percy', 1965, 'M', 193), +(91836, 'Richie', 1965, 'M', 193), +(91837, 'Kraig', 1965, 'M', 192), +(91838, 'Simon', 1965, 'M', 191), +(91839, 'Bryce', 1965, 'M', 190), +(91840, 'Brock', 1965, 'M', 188), +(91841, 'Hank', 1965, 'M', 187), +(91842, 'Roman', 1965, 'M', 185), +(91843, 'Courtney', 1965, 'M', 184), +(91844, 'Gustavo', 1965, 'M', 184), +(91845, 'Kristopher', 1965, 'M', 184), +(91846, 'Jess', 1965, 'M', 183), +(91847, 'Quentin', 1965, 'M', 183), +(91848, 'Ethan', 1965, 'M', 182), +(91849, 'Gino', 1965, 'M', 182), +(91850, 'Lorne', 1965, 'M', 182), +(91851, 'Donny', 1965, 'M', 181), +(91852, 'Russ', 1965, 'M', 181), +(91853, 'Thaddeus', 1965, 'M', 180), +(91854, 'Derick', 1965, 'M', 179), +(91855, 'Jordan', 1965, 'M', 179), +(91856, 'Wilfredo', 1965, 'M', 178), +(91857, 'Carroll', 1965, 'M', 177), +(91858, 'Lisa', 1965, 'M', 177), +(91859, 'Kennith', 1965, 'M', 176), +(91860, 'Barton', 1965, 'M', 175), +(91861, 'Cliff', 1965, 'M', 174), +(91862, 'Elton', 1965, 'M', 174), +(91863, 'Domingo', 1965, 'M', 172), +(91864, 'Ward', 1965, 'M', 172), +(91865, 'Eddy', 1965, 'M', 171), +(91866, 'Elias', 1965, 'M', 171), +(91867, 'Jefferson', 1965, 'M', 171), +(91868, 'Rocco', 1965, 'M', 171), +(91869, 'Cody', 1965, 'M', 168), +(91870, 'Woodrow', 1965, 'M', 168), +(91871, 'Harlan', 1965, 'M', 167), +(91872, 'Saul', 1965, 'M', 167), +(91873, 'Rich', 1965, 'M', 166), +(91874, 'Marcel', 1965, 'M', 165), +(91875, 'Elliot', 1965, 'M', 164), +(91876, 'Galen', 1965, 'M', 164), +(91877, 'Nicky', 1965, 'M', 164), +(91878, 'Cornell', 1965, 'M', 163), +(91879, 'Damian', 1965, 'M', 163), +(91880, 'Fabian', 1965, 'M', 162), +(91881, 'Rogelio', 1965, 'M', 162), +(91882, 'Billie', 1965, 'M', 161), +(91883, 'Antoine', 1965, 'M', 160), +(91884, 'Burton', 1965, 'M', 160), +(91885, 'Garth', 1965, 'M', 160), +(91886, 'Gavin', 1965, 'M', 160), +(91887, 'Merle', 1965, 'M', 160), +(91888, 'Reggie', 1965, 'M', 160), +(91889, 'Efrain', 1965, 'M', 159), +(91890, 'Lonny', 1965, 'M', 159), +(91891, 'Carmen', 1965, 'M', 158), +(91892, 'Reed', 1965, 'M', 158), +(91893, 'Elvis', 1965, 'M', 157), +(91894, 'Rodrick', 1965, 'M', 157), +(91895, 'Emilio', 1965, 'M', 156), +(91896, 'Quintin', 1965, 'M', 156), +(91897, 'Shelton', 1965, 'M', 156), +(91898, 'Xavier', 1965, 'M', 156), +(91899, 'Lon', 1965, 'M', 154), +(91900, 'Norris', 1965, 'M', 154), +(91901, 'Stefan', 1965, 'M', 154), +(91902, 'Omar', 1965, 'M', 152), +(91903, 'Russel', 1965, 'M', 151), +(91904, 'Junior', 1965, 'M', 149), +(91905, 'Quinton', 1965, 'M', 149), +(91906, 'Santiago', 1965, 'M', 148), +(91907, 'Bobbie', 1965, 'M', 147), +(91908, 'Pernell', 1965, 'M', 147), +(91909, 'Benito', 1965, 'M', 146), +(91910, 'Emil', 1965, 'M', 146), +(91911, 'Brady', 1965, 'M', 145), +(91912, 'Keven', 1965, 'M', 145), +(91913, 'Jake', 1965, 'M', 144), +(91914, 'Kirt', 1965, 'M', 144), +(91915, 'Frederic', 1965, 'M', 143), +(91916, 'Gus', 1965, 'M', 143), +(91917, 'Linwood', 1965, 'M', 142), +(91918, 'Santos', 1965, 'M', 140), +(91919, 'Solomon', 1965, 'M', 140), +(91920, 'Derwin', 1965, 'M', 139), +(91921, 'Erwin', 1965, 'M', 137), +(91922, 'Thurman', 1965, 'M', 137), +(91923, 'Mary', 1965, 'M', 136), +(91924, 'Murray', 1965, 'M', 136), +(91925, 'Nicolas', 1965, 'M', 136), +(91926, 'Thad', 1965, 'M', 136), +(91927, 'Eldon', 1965, 'M', 134), +(91928, 'Emmanuel', 1965, 'M', 133), +(91929, 'Toney', 1965, 'M', 133), +(91930, 'Barney', 1965, 'M', 132), +(91931, 'Donovan', 1965, 'M', 132), +(91932, 'Lenny', 1965, 'M', 132), +(91933, 'Mitch', 1965, 'M', 132), +(91934, 'Darrick', 1965, 'M', 131), +(91935, 'Kenton', 1965, 'M', 130), +(91936, 'Grover', 1965, 'M', 129), +(91937, 'Mitchel', 1965, 'M', 129), +(91938, 'Noe', 1965, 'M', 129), +(91939, 'Lincoln', 1965, 'M', 128), +(91940, 'Ned', 1965, 'M', 128), +(91941, 'Bennett', 1965, 'M', 127), +(91942, 'Adolfo', 1965, 'M', 126), +(91943, 'Duncan', 1965, 'M', 126), +(91944, 'Jacques', 1965, 'M', 126), +(91945, 'Errol', 1965, 'M', 125), +(91946, 'Wiley', 1965, 'M', 125), +(91947, 'Carlo', 1965, 'M', 124), +(91948, 'Darius', 1965, 'M', 124), +(91949, 'Desmond', 1965, 'M', 124), +(91950, 'Harley', 1965, 'M', 124), +(91951, 'Leonardo', 1965, 'M', 124), +(91952, 'Sonny', 1965, 'M', 124), +(91953, 'Dwain', 1965, 'M', 123), +(91954, 'Elijah', 1965, 'M', 123), +(91955, 'Elvin', 1965, 'M', 122), +(91956, 'Kennedy', 1965, 'M', 122), +(91957, 'Noah', 1965, 'M', 122), +(91958, 'Ashley', 1965, 'M', 121), +(91959, 'Hugo', 1965, 'M', 121), +(91960, 'Kimberly', 1965, 'M', 121), +(91961, 'Vito', 1965, 'M', 121), +(91962, 'Greggory', 1965, 'M', 120), +(91963, 'Jasper', 1965, 'M', 120), +(91964, 'Bernie', 1965, 'M', 119), +(91965, 'Bradly', 1965, 'M', 119), +(91966, 'Dannie', 1965, 'M', 119), +(91967, 'Reid', 1965, 'M', 119), +(91968, 'Andrea', 1965, 'M', 118), +(91969, 'Ritchie', 1965, 'M', 118), +(91970, 'Davis', 1965, 'M', 117), +(91971, 'Eli', 1965, 'M', 117), +(91972, 'Harrison', 1965, 'M', 117), +(91973, 'Micah', 1965, 'M', 117), +(91974, 'Alec', 1965, 'M', 116), +(91975, 'Dante', 1965, 'M', 116), +(91976, 'Jefferey', 1965, 'M', 116), +(91977, 'Kermit', 1965, 'M', 116), +(91978, 'Carter', 1965, 'M', 115), +(91979, 'Edwardo', 1965, 'M', 115), +(91980, 'Chet', 1965, 'M', 114), +(91981, 'Anton', 1965, 'M', 113), +(91982, 'Shelby', 1965, 'M', 113), +(91983, 'Everette', 1965, 'M', 112), +(91984, 'Humberto', 1965, 'M', 112), +(91985, 'Ignacio', 1965, 'M', 112), +(91986, 'Joaquin', 1965, 'M', 112), +(91987, 'Lanny', 1965, 'M', 112), +(91988, 'Nolan', 1965, 'M', 112), +(91989, 'Norbert', 1965, 'M', 112), +(91990, 'Irving', 1965, 'M', 111), +(91991, 'Lorin', 1965, 'M', 111), +(91992, 'Shayne', 1965, 'M', 111), +(91993, 'Antony', 1965, 'M', 110), +(91994, 'August', 1965, 'M', 110), +(91995, 'Kelley', 1965, 'M', 110), +(91996, 'Ulysses', 1965, 'M', 110), +(91997, 'Chip', 1965, 'M', 109), +(91998, 'Jackson', 1965, 'M', 108), +(91999, 'Daryn', 1965, 'M', 107), +(92000, 'Emery', 1965, 'M', 107), +(92001, 'Heriberto', 1965, 'M', 107), +(92002, 'Hiram', 1965, 'M', 107), +(92003, 'Jerold', 1965, 'M', 107), +(92004, 'Loyd', 1965, 'M', 107), +(92005, 'Levi', 1965, 'M', 106), +(92006, 'Alexis', 1965, 'M', 105), +(92007, 'Coy', 1965, 'M', 105), +(92008, 'Darien', 1965, 'M', 105), +(92009, 'Del', 1965, 'M', 105), +(92010, 'Devon', 1965, 'M', 105), +(92011, 'Josh', 1965, 'M', 105), +(92012, 'Kory', 1965, 'M', 105), +(92013, 'Quinn', 1965, 'M', 104), +(92014, 'Sebastian', 1965, 'M', 104), +(92015, 'Mikel', 1965, 'M', 103), +(92016, 'Jeremiah', 1965, 'M', 102), +(92017, 'Jerrold', 1965, 'M', 102), +(92018, 'Zane', 1965, 'M', 102), +(92019, 'Esteban', 1965, 'M', 101), +(92020, 'Myles', 1965, 'M', 101), +(92021, 'Orville', 1965, 'M', 101), +(92022, 'Sanford', 1965, 'M', 101), +(92023, 'Dick', 1965, 'M', 100), +(92024, 'Lenard', 1965, 'M', 100), +(92025, 'Weldon', 1965, 'M', 100), +(92026, 'Wes', 1965, 'M', 100), +(92027, 'Lisa', 1966, 'F', 56913), +(92028, 'Kimberly', 1966, 'F', 32229), +(92029, 'Mary', 1966, 'F', 28884), +(92030, 'Michelle', 1966, 'F', 27152), +(92031, 'Karen', 1966, 'F', 25444), +(92032, 'Susan', 1966, 'F', 23770), +(92033, 'Patricia', 1966, 'F', 20115), +(92034, 'Tammy', 1966, 'F', 18625), +(92035, 'Angela', 1966, 'F', 18533), +(92036, 'Jennifer', 1966, 'F', 18216), +(92037, 'Cynthia', 1966, 'F', 17413), +(92038, 'Donna', 1966, 'F', 17029), +(92039, 'Julie', 1966, 'F', 16328), +(92040, 'Pamela', 1966, 'F', 16256), +(92041, 'Deborah', 1966, 'F', 16250), +(92042, 'Elizabeth', 1966, 'F', 15890), +(92043, 'Sandra', 1966, 'F', 15853), +(92044, 'Linda', 1966, 'F', 15560), +(92045, 'Christine', 1966, 'F', 15549), +(92046, 'Laura', 1966, 'F', 15546), +(92047, 'Lori', 1966, 'F', 14673), +(92048, 'Melissa', 1966, 'F', 14255), +(92049, 'Tina', 1966, 'F', 13890), +(92050, 'Dawn', 1966, 'F', 13604), +(92051, 'Brenda', 1966, 'F', 13296), +(92052, 'Kelly', 1966, 'F', 13245), +(92053, 'Barbara', 1966, 'F', 13124), +(92054, 'Sharon', 1966, 'F', 13063), +(92055, 'Teresa', 1966, 'F', 13019), +(92056, 'Amy', 1966, 'F', 13002), +(92057, 'Tracy', 1966, 'F', 12502), +(92058, 'Denise', 1966, 'F', 11798), +(92059, 'Nancy', 1966, 'F', 11723), +(92060, 'Cheryl', 1966, 'F', 11712), +(92061, 'Debra', 1966, 'F', 11258), +(92062, 'Michele', 1966, 'F', 10687), +(92063, 'Kathleen', 1966, 'F', 10497), +(92064, 'Stephanie', 1966, 'F', 10164), +(92065, 'Rhonda', 1966, 'F', 9804), +(92066, 'Rebecca', 1966, 'F', 9777), +(92067, 'Wendy', 1966, 'F', 9517), +(92068, 'Robin', 1966, 'F', 9441), +(92069, 'Kim', 1966, 'F', 9196), +(92070, 'Maria', 1966, 'F', 9108), +(92071, 'Diane', 1966, 'F', 8749), +(92072, 'Theresa', 1966, 'F', 8703), +(92073, 'Jacqueline', 1966, 'F', 8356), +(92074, 'Carol', 1966, 'F', 8259), +(92075, 'Jill', 1966, 'F', 7868), +(92076, 'Paula', 1966, 'F', 7857), +(92077, 'Sheila', 1966, 'F', 7204), +(92078, 'Andrea', 1966, 'F', 7143), +(92079, 'Sherry', 1966, 'F', 6984), +(92080, 'Margaret', 1966, 'F', 6962), +(92081, 'Catherine', 1966, 'F', 6958), +(92082, 'Cindy', 1966, 'F', 6794), +(92083, 'Janet', 1966, 'F', 6431), +(92084, 'Gina', 1966, 'F', 6354), +(92085, 'Kathy', 1966, 'F', 6317), +(92086, 'Carolyn', 1966, 'F', 6122), +(92087, 'Ann', 1966, 'F', 5993), +(92088, 'Suzanne', 1966, 'F', 5684), +(92089, 'Laurie', 1966, 'F', 5664), +(92090, 'Diana', 1966, 'F', 5502), +(92091, 'Beth', 1966, 'F', 5446), +(92092, 'Renee', 1966, 'F', 5355), +(92093, 'Christina', 1966, 'F', 5343), +(92094, 'Dana', 1966, 'F', 5279), +(92095, 'Tracey', 1966, 'F', 5127), +(92096, 'Connie', 1966, 'F', 5107), +(92097, 'Leslie', 1966, 'F', 4996), +(92098, 'Terri', 1966, 'F', 4920), +(92099, 'Debbie', 1966, 'F', 4845), +(92100, 'Valerie', 1966, 'F', 4816), +(92101, 'Monica', 1966, 'F', 4719), +(92102, 'Stacey', 1966, 'F', 4585), +(92103, 'Carla', 1966, 'F', 4507), +(92104, 'Katherine', 1966, 'F', 4498), +(92105, 'Annette', 1966, 'F', 4428), +(92106, 'Janice', 1966, 'F', 4345), +(92107, 'Lynn', 1966, 'F', 4306), +(92108, 'Regina', 1966, 'F', 4294), +(92109, 'Anne', 1966, 'F', 4156), +(92110, 'Wanda', 1966, 'F', 4094), +(92111, 'Sarah', 1966, 'F', 4036), +(92112, 'Kathryn', 1966, 'F', 4008), +(92113, 'Heidi', 1966, 'F', 3967), +(92114, 'Anita', 1966, 'F', 3871), +(92115, 'Shelly', 1966, 'F', 3857), +(92116, 'Bonnie', 1966, 'F', 3843), +(92117, 'Stacy', 1966, 'F', 3776), +(92118, 'Colleen', 1966, 'F', 3744), +(92119, 'Sherri', 1966, 'F', 3744), +(92120, 'Darlene', 1966, 'F', 3725), +(92121, 'Anna', 1966, 'F', 3668), +(92122, 'Tonya', 1966, 'F', 3629), +(92123, 'Judy', 1966, 'F', 3509), +(92124, 'Tamara', 1966, 'F', 3480), +(92125, 'Cathy', 1966, 'F', 3420), +(92126, 'Holly', 1966, 'F', 3397), +(92127, 'Joyce', 1966, 'F', 3397), +(92128, 'Melinda', 1966, 'F', 3384), +(92129, 'Victoria', 1966, 'F', 3364), +(92130, 'Kristine', 1966, 'F', 3313), +(92131, 'Deanna', 1966, 'F', 3298), +(92132, 'Martha', 1966, 'F', 3271), +(92133, 'Kristin', 1966, 'F', 3261), +(92134, 'April', 1966, 'F', 3253), +(92135, 'Beverly', 1966, 'F', 3220), +(92136, 'Judith', 1966, 'F', 3216), +(92137, 'Jane', 1966, 'F', 3215), +(92138, 'Penny', 1966, 'F', 3109), +(92139, 'Veronica', 1966, 'F', 3089), +(92140, 'Marie', 1966, 'F', 3083), +(92141, 'Vicki', 1966, 'F', 3052), +(92142, 'Melanie', 1966, 'F', 3050), +(92143, 'Julia', 1966, 'F', 3043), +(92144, 'Jodi', 1966, 'F', 3031), +(92145, 'Maureen', 1966, 'F', 3015), +(92146, 'Shannon', 1966, 'F', 2993), +(92147, 'Betty', 1966, 'F', 2949), +(92148, 'Virginia', 1966, 'F', 2942), +(92149, 'Shirley', 1966, 'F', 2920), +(92150, 'Jean', 1966, 'F', 2917), +(92151, 'Heather', 1966, 'F', 2898), +(92152, 'Sonya', 1966, 'F', 2869), +(92153, 'Gloria', 1966, 'F', 2858), +(92154, 'Ruth', 1966, 'F', 2847), +(92155, 'Yvonne', 1966, 'F', 2823), +(92156, 'Ellen', 1966, 'F', 2806), +(92157, 'Yolanda', 1966, 'F', 2769), +(92158, 'Joan', 1966, 'F', 2725), +(92159, 'Joanne', 1966, 'F', 2724), +(92160, 'Sheri', 1966, 'F', 2719), +(92161, 'Rita', 1966, 'F', 2687), +(92162, 'Dorothy', 1966, 'F', 2667), +(92163, 'Traci', 1966, 'F', 2659), +(92164, 'Jamie', 1966, 'F', 2657), +(92165, 'Peggy', 1966, 'F', 2649), +(92166, 'Shelley', 1966, 'F', 2547), +(92167, 'Rose', 1966, 'F', 2532), +(92168, 'Carrie', 1966, 'F', 2475), +(92169, 'Yvette', 1966, 'F', 2473), +(92170, 'Helen', 1966, 'F', 2449), +(92171, 'Crystal', 1966, 'F', 2422), +(92172, 'Sylvia', 1966, 'F', 2411), +(92173, 'Vickie', 1966, 'F', 2395), +(92174, 'Amanda', 1966, 'F', 2329), +(92175, 'Kristen', 1966, 'F', 2323), +(92176, 'Natalie', 1966, 'F', 2309), +(92177, 'Charlotte', 1966, 'F', 2301), +(92178, 'Gail', 1966, 'F', 2299), +(92179, 'Becky', 1966, 'F', 2297), +(92180, 'Rachel', 1966, 'F', 2279), +(92181, 'Toni', 1966, 'F', 2248), +(92182, 'Alicia', 1966, 'F', 2224), +(92183, 'Alice', 1966, 'F', 2221), +(92184, 'Sheryl', 1966, 'F', 2210), +(92185, 'Charlene', 1966, 'F', 2188), +(92186, 'Tanya', 1966, 'F', 2168), +(92187, 'Felicia', 1966, 'F', 2136), +(92188, 'Frances', 1966, 'F', 2122), +(92189, 'Carmen', 1966, 'F', 2120), +(92190, 'Joann', 1966, 'F', 2116), +(92191, 'Joy', 1966, 'F', 2091), +(92192, 'Elaine', 1966, 'F', 2059), +(92193, 'Sara', 1966, 'F', 2056), +(92194, 'Eileen', 1966, 'F', 2039), +(92195, 'Nicole', 1966, 'F', 2031), +(92196, 'Marilyn', 1966, 'F', 1996), +(92197, 'Kimberley', 1966, 'F', 1984), +(92198, 'Jeanette', 1966, 'F', 1966), +(92199, 'Phyllis', 1966, 'F', 1940), +(92200, 'Jackie', 1966, 'F', 1934), +(92201, 'Loretta', 1966, 'F', 1898), +(92202, 'Evelyn', 1966, 'F', 1869), +(92203, 'Jeanne', 1966, 'F', 1864), +(92204, 'Norma', 1966, 'F', 1859), +(92205, 'Sally', 1966, 'F', 1833), +(92206, 'Roberta', 1966, 'F', 1816), +(92207, 'Shelia', 1966, 'F', 1805), +(92208, 'Samantha', 1966, 'F', 1794), +(92209, 'Audrey', 1966, 'F', 1769), +(92210, 'Allison', 1966, 'F', 1768), +(92211, 'Jody', 1966, 'F', 1760), +(92212, 'Kristi', 1966, 'F', 1760), +(92213, 'Ronda', 1966, 'F', 1752), +(92214, 'Belinda', 1966, 'F', 1751), +(92215, 'Lorraine', 1966, 'F', 1743), +(92216, 'Kelli', 1966, 'F', 1731), +(92217, 'Terry', 1966, 'F', 1710), +(92218, 'Melody', 1966, 'F', 1707), +(92219, 'Karla', 1966, 'F', 1686), +(92220, 'Sandy', 1966, 'F', 1680), +(92221, 'Jessica', 1966, 'F', 1664), +(92222, 'Shari', 1966, 'F', 1646), +(92223, 'Vanessa', 1966, 'F', 1645), +(92224, 'Bridget', 1966, 'F', 1628), +(92225, 'Cassandra', 1966, 'F', 1594), +(92226, 'Jo', 1966, 'F', 1590), +(92227, 'Monique', 1966, 'F', 1557), +(92228, 'Caroline', 1966, 'F', 1552), +(92229, 'Juanita', 1966, 'F', 1532), +(92230, 'Tami', 1966, 'F', 1532), +(92231, 'Kristina', 1966, 'F', 1531), +(92232, 'Sonia', 1966, 'F', 1527), +(92233, 'Erin', 1966, 'F', 1523), +(92234, 'Kelley', 1966, 'F', 1515), +(92235, 'Shawn', 1966, 'F', 1492), +(92236, 'Constance', 1966, 'F', 1469), +(92237, 'Darla', 1966, 'F', 1446), +(92238, 'Dianne', 1966, 'F', 1428), +(92239, 'Tammie', 1966, 'F', 1426), +(92240, 'Doris', 1966, 'F', 1419), +(92241, 'Marcia', 1966, 'F', 1419), +(92242, 'Robyn', 1966, 'F', 1418), +(92243, 'Gwendolyn', 1966, 'F', 1417), +(92244, 'Rosa', 1966, 'F', 1395), +(92245, 'Angie', 1966, 'F', 1394), +(92246, 'Leah', 1966, 'F', 1379), +(92247, 'Glenda', 1966, 'F', 1368), +(92248, 'Tracie', 1966, 'F', 1362), +(92249, 'Hope', 1966, 'F', 1359), +(92250, 'Lora', 1966, 'F', 1357), +(92251, 'Lynette', 1966, 'F', 1330), +(92252, 'Sonja', 1966, 'F', 1320), +(92253, 'Danielle', 1966, 'F', 1316), +(92254, 'Sue', 1966, 'F', 1316), +(92255, 'Katrina', 1966, 'F', 1309), +(92256, 'Lynda', 1966, 'F', 1309), +(92257, 'Teri', 1966, 'F', 1308), +(92258, 'Marsha', 1966, 'F', 1306), +(92259, 'Eva', 1966, 'F', 1291), +(92260, 'Tara', 1966, 'F', 1289), +(92261, 'Irene', 1966, 'F', 1285), +(92262, 'Dianna', 1966, 'F', 1260), +(92263, 'Emily', 1966, 'F', 1250), +(92264, 'Janine', 1966, 'F', 1239), +(92265, 'Candace', 1966, 'F', 1223), +(92266, 'Doreen', 1966, 'F', 1212), +(92267, 'Lee', 1966, 'F', 1212), +(92268, 'Tiffany', 1966, 'F', 1208), +(92269, 'Kellie', 1966, 'F', 1196), +(92270, 'Lauren', 1966, 'F', 1188), +(92271, 'Roxanne', 1966, 'F', 1185), +(92272, 'Lynne', 1966, 'F', 1169), +(92273, 'Ginger', 1966, 'F', 1149), +(92274, 'Ramona', 1966, 'F', 1146), +(92275, 'Marlene', 1966, 'F', 1141), +(92276, 'Jana', 1966, 'F', 1140), +(92277, 'Christy', 1966, 'F', 1137), +(92278, 'Trina', 1966, 'F', 1134), +(92279, 'Sherrie', 1966, 'F', 1133), +(92280, 'Rosemary', 1966, 'F', 1121), +(92281, 'Patty', 1966, 'F', 1112), +(92282, 'Bernadette', 1966, 'F', 1111), +(92283, 'Cheri', 1966, 'F', 1078), +(92284, 'Vicky', 1966, 'F', 1076), +(92285, 'Nina', 1966, 'F', 1062), +(92286, 'Vivian', 1966, 'F', 1057), +(92287, 'Dina', 1966, 'F', 1048), +(92288, 'Kerry', 1966, 'F', 1032), +(92289, 'Jacquelyn', 1966, 'F', 1022), +(92290, 'Patti', 1966, 'F', 998), +(92291, 'Molly', 1966, 'F', 984), +(92292, 'Leigh', 1966, 'F', 972), +(92293, 'Kari', 1966, 'F', 971), +(92294, 'Angelia', 1966, 'F', 966), +(92295, 'Gretchen', 1966, 'F', 962), +(92296, 'Alison', 1966, 'F', 958), +(92297, 'Marla', 1966, 'F', 957), +(92298, 'Lorie', 1966, 'F', 956), +(92299, 'Lydia', 1966, 'F', 955), +(92300, 'Antoinette', 1966, 'F', 951), +(92301, 'Sabrina', 1966, 'F', 940), +(92302, 'Grace', 1966, 'F', 937), +(92303, 'Marianne', 1966, 'F', 935), +(92304, 'Lois', 1966, 'F', 918), +(92305, 'Arlene', 1966, 'F', 910), +(92306, 'June', 1966, 'F', 910), +(92307, 'Mona', 1966, 'F', 902), +(92308, 'Rochelle', 1966, 'F', 901), +(92309, 'Audra', 1966, 'F', 892), +(92310, 'Joanna', 1966, 'F', 890), +(92311, 'Lana', 1966, 'F', 877), +(92312, 'Lillian', 1966, 'F', 877), +(92313, 'Louise', 1966, 'F', 875), +(92314, 'Cherie', 1966, 'F', 871), +(92315, 'Kris', 1966, 'F', 870), +(92316, 'Esther', 1966, 'F', 868), +(92317, 'Alisa', 1966, 'F', 862), +(92318, 'Bobbie', 1966, 'F', 861), +(92319, 'Chris', 1966, 'F', 860), +(92320, 'Jenny', 1966, 'F', 858), +(92321, 'Kay', 1966, 'F', 857), +(92322, 'Karin', 1966, 'F', 854), +(92323, 'Pam', 1966, 'F', 853), +(92324, 'Kirsten', 1966, 'F', 851), +(92325, 'Nora', 1966, 'F', 850), +(92326, 'Krista', 1966, 'F', 846), +(92327, 'Marjorie', 1966, 'F', 846), +(92328, 'Priscilla', 1966, 'F', 846), +(92329, 'Dena', 1966, 'F', 844), +(92330, 'Jan', 1966, 'F', 842), +(92331, 'Leticia', 1966, 'F', 842), +(92332, 'Josephine', 1966, 'F', 840), +(92333, 'Cathleen', 1966, 'F', 831), +(92334, 'Geraldine', 1966, 'F', 823), +(92335, 'Debora', 1966, 'F', 821), +(92336, 'Ana', 1966, 'F', 820), +(92337, 'Ruby', 1966, 'F', 806), +(92338, 'Kristy', 1966, 'F', 800), +(92339, 'Desiree', 1966, 'F', 799), +(92340, 'Edith', 1966, 'F', 798), +(92341, 'Claudia', 1966, 'F', 796), +(92342, 'Pauline', 1966, 'F', 794), +(92343, 'Paige', 1966, 'F', 791), +(92344, 'Gayle', 1966, 'F', 776), +(92345, 'Dolores', 1966, 'F', 771), +(92346, 'Leanne', 1966, 'F', 767), +(92347, 'Patrice', 1966, 'F', 762), +(92348, 'Lucy', 1966, 'F', 755), +(92349, 'Carole', 1966, 'F', 754), +(92350, 'Lesley', 1966, 'F', 752), +(92351, 'Christie', 1966, 'F', 737), +(92352, 'Jeanine', 1966, 'F', 736), +(92353, 'Annie', 1966, 'F', 733), +(92354, 'Billie', 1966, 'F', 723), +(92355, 'Maryann', 1966, 'F', 722), +(92356, 'Mia', 1966, 'F', 720), +(92357, 'Adrienne', 1966, 'F', 715), +(92358, 'Kendra', 1966, 'F', 715), +(92359, 'Francine', 1966, 'F', 711), +(92360, 'Delores', 1966, 'F', 700), +(92361, 'Betsy', 1966, 'F', 698), +(92362, 'Jodie', 1966, 'F', 696), +(92363, 'Nadine', 1966, 'F', 691), +(92364, 'Paulette', 1966, 'F', 690), +(92365, 'Lorrie', 1966, 'F', 689), +(92366, 'Kerri', 1966, 'F', 684), +(92367, 'Elisa', 1966, 'F', 681), +(92368, 'Jeannie', 1966, 'F', 681), +(92369, 'Misty', 1966, 'F', 680), +(92370, 'Edna', 1966, 'F', 679), +(92371, 'Tonia', 1966, 'F', 679), +(92372, 'Trisha', 1966, 'F', 678), +(92373, 'Cara', 1966, 'F', 677), +(92374, 'Miriam', 1966, 'F', 666), +(92375, 'Vonda', 1966, 'F', 664), +(92376, 'Dora', 1966, 'F', 663), +(92377, 'Mildred', 1966, 'F', 659), +(92378, 'Megan', 1966, 'F', 658), +(92379, 'Candy', 1966, 'F', 655), +(92380, 'Georgia', 1966, 'F', 655), +(92381, 'Faith', 1966, 'F', 654), +(92382, 'Celeste', 1966, 'F', 649), +(92383, 'Jeannette', 1966, 'F', 644), +(92384, 'Cecilia', 1966, 'F', 643), +(92385, 'Stacie', 1966, 'F', 642), +(92386, 'Irma', 1966, 'F', 640), +(92387, 'Leann', 1966, 'F', 636), +(92388, 'Suzette', 1966, 'F', 629), +(92389, 'Deana', 1966, 'F', 624), +(92390, 'Emma', 1966, 'F', 621), +(92391, 'Lesa', 1966, 'F', 616), +(92392, 'Daphne', 1966, 'F', 614), +(92393, 'Bridgette', 1966, 'F', 613), +(92394, 'Shawna', 1966, 'F', 609), +(92395, 'Beatrice', 1966, 'F', 601), +(92396, 'Alma', 1966, 'F', 598), +(92397, 'Susie', 1966, 'F', 597), +(92398, 'Colette', 1966, 'F', 595), +(92399, 'Janie', 1966, 'F', 595), +(92400, 'Naomi', 1966, 'F', 592), +(92401, 'Susanne', 1966, 'F', 592), +(92402, 'Sophia', 1966, 'F', 589), +(92403, 'Joni', 1966, 'F', 588), +(92404, 'Rene', 1966, 'F', 587), +(92405, 'Kara', 1966, 'F', 581), +(92406, 'Staci', 1966, 'F', 581), +(92407, 'Erica', 1966, 'F', 574), +(92408, 'Margarita', 1966, 'F', 563), +(92409, 'Rosemarie', 1966, 'F', 563), +(92410, 'Deirdre', 1966, 'F', 561), +(92411, 'Therese', 1966, 'F', 557), +(92412, 'Clara', 1966, 'F', 552), +(92413, 'Margie', 1966, 'F', 552), +(92414, 'Jeri', 1966, 'F', 551); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(92415, 'Stefanie', 1966, 'F', 547), +(92416, 'Sondra', 1966, 'F', 546), +(92417, 'Lena', 1966, 'F', 545), +(92418, 'Bobbi', 1966, 'F', 543), +(92419, 'Marcella', 1966, 'F', 541), +(92420, 'Jeannine', 1966, 'F', 534), +(92421, 'Jennie', 1966, 'F', 534), +(92422, 'Marion', 1966, 'F', 534), +(92423, 'Terrie', 1966, 'F', 532), +(92424, 'Amber', 1966, 'F', 529), +(92425, 'Deanne', 1966, 'F', 529), +(92426, 'Bertha', 1966, 'F', 528), +(92427, 'Bonita', 1966, 'F', 528), +(92428, 'Myra', 1966, 'F', 528), +(92429, 'Elena', 1966, 'F', 527), +(92430, 'Ingrid', 1966, 'F', 523), +(92431, 'Lucinda', 1966, 'F', 521), +(92432, 'Trudy', 1966, 'F', 521), +(92433, 'Marian', 1966, 'F', 517), +(92434, 'Tammi', 1966, 'F', 516), +(92435, 'Ida', 1966, 'F', 513), +(92436, 'Marcy', 1966, 'F', 513), +(92437, 'Kimberlee', 1966, 'F', 507), +(92438, 'Rosalind', 1966, 'F', 506), +(92439, 'Darcy', 1966, 'F', 505), +(92440, 'Kristie', 1966, 'F', 503), +(92441, 'Tamera', 1966, 'F', 503), +(92442, 'Danette', 1966, 'F', 501), +(92443, 'Janette', 1966, 'F', 501), +(92444, 'Claire', 1966, 'F', 500), +(92445, 'Tabatha', 1966, 'F', 500), +(92446, 'Wendi', 1966, 'F', 500), +(92447, 'Patsy', 1966, 'F', 497), +(92448, 'Tricia', 1966, 'F', 497), +(92449, 'Erika', 1966, 'F', 491), +(92450, 'Lynnette', 1966, 'F', 487), +(92451, 'Jessie', 1966, 'F', 476), +(92452, 'Thelma', 1966, 'F', 476), +(92453, 'Florence', 1966, 'F', 475), +(92454, 'Mindy', 1966, 'F', 474), +(92455, 'Shauna', 1966, 'F', 473), +(92456, 'Valarie', 1966, 'F', 473), +(92457, 'Bernice', 1966, 'F', 472), +(92458, 'Eleanor', 1966, 'F', 472), +(92459, 'Janelle', 1966, 'F', 472), +(92460, 'Lauri', 1966, 'F', 470), +(92461, 'Christi', 1966, 'F', 468), +(92462, 'Lea', 1966, 'F', 464), +(92463, 'Gwen', 1966, 'F', 463), +(92464, 'Angelina', 1966, 'F', 462), +(92465, 'Camille', 1966, 'F', 461), +(92466, 'Jerri', 1966, 'F', 455), +(92467, 'Vera', 1966, 'F', 454), +(92468, 'Katie', 1966, 'F', 451), +(92469, 'Elisabeth', 1966, 'F', 445), +(92470, 'Laurel', 1966, 'F', 444), +(92471, 'Ladonna', 1966, 'F', 439), +(92472, 'Angel', 1966, 'F', 438), +(92473, 'Jolene', 1966, 'F', 436), +(92474, 'Rachelle', 1966, 'F', 436), +(92475, 'Gladys', 1966, 'F', 435), +(92476, 'Iris', 1966, 'F', 434), +(92477, 'Greta', 1966, 'F', 433), +(92478, 'Amelia', 1966, 'F', 430), +(92479, 'Bethany', 1966, 'F', 430), +(92480, 'Julianne', 1966, 'F', 430), +(92481, 'Ella', 1966, 'F', 429), +(92482, 'Stella', 1966, 'F', 429), +(92483, 'Madeline', 1966, 'F', 425), +(92484, 'Deidre', 1966, 'F', 424), +(92485, 'Tamra', 1966, 'F', 424), +(92486, 'Guadalupe', 1966, 'F', 423), +(92487, 'Polly', 1966, 'F', 421), +(92488, 'Nanette', 1966, 'F', 420), +(92489, 'Rena', 1966, 'F', 420), +(92490, 'Jayne', 1966, 'F', 419), +(92491, 'Karyn', 1966, 'F', 417), +(92492, 'Marisa', 1966, 'F', 412), +(92493, 'Gena', 1966, 'F', 411), +(92494, 'Joelle', 1966, 'F', 406), +(92495, 'Dee', 1966, 'F', 405), +(92496, 'Olga', 1966, 'F', 405), +(92497, 'Tia', 1966, 'F', 405), +(92498, 'Tonja', 1966, 'F', 405), +(92499, 'Annmarie', 1966, 'F', 401), +(92500, 'Deann', 1966, 'F', 401), +(92501, 'Corinne', 1966, 'F', 399), +(92502, 'Marci', 1966, 'F', 389), +(92503, 'Caryn', 1966, 'F', 387), +(92504, 'Melisa', 1966, 'F', 387), +(92505, 'Rosie', 1966, 'F', 381), +(92506, 'Deena', 1966, 'F', 380), +(92507, 'Lorri', 1966, 'F', 378), +(92508, 'Courtney', 1966, 'F', 372), +(92509, 'Latonya', 1966, 'F', 372), +(92510, 'Shana', 1966, 'F', 372), +(92511, 'Luz', 1966, 'F', 371), +(92512, 'Margo', 1966, 'F', 370), +(92513, 'Della', 1966, 'F', 369), +(92514, 'Aimee', 1966, 'F', 367), +(92515, 'Maxine', 1966, 'F', 367), +(92516, 'Ursula', 1966, 'F', 367), +(92517, 'Ethel', 1966, 'F', 364), +(92518, 'Elise', 1966, 'F', 363), +(92519, 'Justine', 1966, 'F', 360), +(92520, 'Lorna', 1966, 'F', 360), +(92521, 'Lucille', 1966, 'F', 358), +(92522, 'Alesia', 1966, 'F', 356), +(92523, 'Noelle', 1966, 'F', 354), +(92524, 'Lorena', 1966, 'F', 353), +(92525, 'Noreen', 1966, 'F', 353), +(92526, 'Tamela', 1966, 'F', 352), +(92527, 'Coleen', 1966, 'F', 351), +(92528, 'Mitzi', 1966, 'F', 351), +(92529, 'Isabel', 1966, 'F', 350), +(92530, 'Chandra', 1966, 'F', 349), +(92531, 'Shellie', 1966, 'F', 349), +(92532, 'Cristina', 1966, 'F', 348), +(92533, 'Maura', 1966, 'F', 348), +(92534, 'Meredith', 1966, 'F', 347), +(92535, 'Michael', 1966, 'F', 346), +(92536, 'Janis', 1966, 'F', 345), +(92537, 'Barbra', 1966, 'F', 343), +(92538, 'Delia', 1966, 'F', 340), +(92539, 'Liza', 1966, 'F', 340), +(92540, 'Marina', 1966, 'F', 340), +(92541, 'Wilma', 1966, 'F', 338), +(92542, 'Olivia', 1966, 'F', 334), +(92543, 'Shelli', 1966, 'F', 333), +(92544, 'Bridgett', 1966, 'F', 331), +(92545, 'Jenifer', 1966, 'F', 331), +(92546, 'Marybeth', 1966, 'F', 331), +(92547, 'Candice', 1966, 'F', 330), +(92548, 'Marta', 1966, 'F', 329), +(92549, 'Johanna', 1966, 'F', 328), +(92550, 'Tabitha', 1966, 'F', 327), +(92551, 'Randi', 1966, 'F', 325), +(92552, 'Christa', 1966, 'F', 321), +(92553, 'Keri', 1966, 'F', 321), +(92554, 'Jami', 1966, 'F', 320), +(92555, 'Daisy', 1966, 'F', 318), +(92556, 'Leona', 1966, 'F', 318), +(92557, 'Alexandra', 1966, 'F', 315), +(92558, 'Lourdes', 1966, 'F', 314), +(92559, 'Cora', 1966, 'F', 313), +(92560, 'Tania', 1966, 'F', 313), +(92561, 'Benita', 1966, 'F', 311), +(92562, 'Gayla', 1966, 'F', 309), +(92563, 'Malinda', 1966, 'F', 308), +(92564, 'Lillie', 1966, 'F', 307), +(92565, 'Shelby', 1966, 'F', 306), +(92566, 'Simone', 1966, 'F', 305), +(92567, 'Celia', 1966, 'F', 301), +(92568, 'Hazel', 1966, 'F', 301), +(92569, 'Felecia', 1966, 'F', 300), +(92570, 'Katharine', 1966, 'F', 300), +(92571, 'Saundra', 1966, 'F', 300), +(92572, 'Selena', 1966, 'F', 299), +(92573, 'Velma', 1966, 'F', 299), +(92574, 'Eugenia', 1966, 'F', 298), +(92575, 'James', 1966, 'F', 297), +(92576, 'Jocelyn', 1966, 'F', 297), +(92577, 'Rosalie', 1966, 'F', 296), +(92578, 'Elsa', 1966, 'F', 293), +(92579, 'Lolita', 1966, 'F', 292), +(92580, 'Marguerite', 1966, 'F', 292), +(92581, 'Hilda', 1966, 'F', 291), +(92582, 'Nikki', 1966, 'F', 291), +(92583, 'Lenora', 1966, 'F', 290), +(92584, 'Marcie', 1966, 'F', 289), +(92585, 'Renae', 1966, 'F', 289), +(92586, 'Geneva', 1966, 'F', 288), +(92587, 'Sharlene', 1966, 'F', 287), +(92588, 'Brooke', 1966, 'F', 286), +(92589, 'Cecelia', 1966, 'F', 286), +(92590, 'Verna', 1966, 'F', 285), +(92591, 'John', 1966, 'F', 284), +(92592, 'Brigitte', 1966, 'F', 283), +(92593, 'Laverne', 1966, 'F', 283), +(92594, 'Sandi', 1966, 'F', 282), +(92595, 'Letitia', 1966, 'F', 281), +(92596, 'Willie', 1966, 'F', 278), +(92597, 'Silvia', 1966, 'F', 273), +(92598, 'Martina', 1966, 'F', 272), +(92599, 'Raquel', 1966, 'F', 271), +(92600, 'Diann', 1966, 'F', 270), +(92601, 'Faye', 1966, 'F', 270), +(92602, 'Selina', 1966, 'F', 270), +(92603, 'Denice', 1966, 'F', 265), +(92604, 'Dawna', 1966, 'F', 264), +(92605, 'Ashley', 1966, 'F', 263), +(92606, 'Corina', 1966, 'F', 263), +(92607, 'Leeann', 1966, 'F', 263), +(92608, 'Rachael', 1966, 'F', 263), +(92609, 'Blanca', 1966, 'F', 262), +(92610, 'Lucia', 1966, 'F', 262), +(92611, 'Mechelle', 1966, 'F', 262), +(92612, 'Janna', 1966, 'F', 261), +(92613, 'Adriana', 1966, 'F', 258), +(92614, 'Luann', 1966, 'F', 258), +(92615, 'Rebekah', 1966, 'F', 258), +(92616, 'Mari', 1966, 'F', 257), +(92617, 'Cari', 1966, 'F', 256), +(92618, 'Judi', 1966, 'F', 256), +(92619, 'Rosalyn', 1966, 'F', 256), +(92620, 'Hilary', 1966, 'F', 253), +(92621, 'Robbie', 1966, 'F', 252), +(92622, 'Danita', 1966, 'F', 251), +(92623, 'Robert', 1966, 'F', 251), +(92624, 'Patrica', 1966, 'F', 250), +(92625, 'Deidra', 1966, 'F', 248), +(92626, 'Robbin', 1966, 'F', 248), +(92627, 'Angelica', 1966, 'F', 247), +(92628, 'Antonia', 1966, 'F', 247), +(92629, 'Dionne', 1966, 'F', 246), +(92630, 'Shanna', 1966, 'F', 246), +(92631, 'Annemarie', 1966, 'F', 245), +(92632, 'Marnie', 1966, 'F', 245), +(92633, 'Lawanda', 1966, 'F', 244), +(92634, 'Ada', 1966, 'F', 243), +(92635, 'Helene', 1966, 'F', 242), +(92636, 'Maritza', 1966, 'F', 242), +(92637, 'Rosalinda', 1966, 'F', 242), +(92638, 'Caren', 1966, 'F', 241), +(92639, 'Leisa', 1966, 'F', 241), +(92640, 'Missy', 1966, 'F', 239), +(92641, 'Danna', 1966, 'F', 238), +(92642, 'Jacquline', 1966, 'F', 237), +(92643, 'Lara', 1966, 'F', 237), +(92644, 'Charmaine', 1966, 'F', 236), +(92645, 'Allyson', 1966, 'F', 235), +(92646, 'Gale', 1966, 'F', 234), +(92647, 'Gay', 1966, 'F', 234), +(92648, 'Rhoda', 1966, 'F', 234), +(92649, 'Deloris', 1966, 'F', 233), +(92650, 'Janell', 1966, 'F', 233), +(92651, 'Roslyn', 1966, 'F', 233), +(92652, 'Sheree', 1966, 'F', 233), +(92653, 'Ernestine', 1966, 'F', 232), +(92654, 'Eve', 1966, 'F', 232), +(92655, 'Marisol', 1966, 'F', 231), +(92656, 'David', 1966, 'F', 230), +(92657, 'Eunice', 1966, 'F', 230), +(92658, 'Elsie', 1966, 'F', 228), +(92659, 'Lola', 1966, 'F', 228), +(92660, 'Pamala', 1966, 'F', 228), +(92661, 'Roseann', 1966, 'F', 228), +(92662, 'Maryellen', 1966, 'F', 226), +(92663, 'Helena', 1966, 'F', 225), +(92664, 'Sonji', 1966, 'F', 225), +(92665, 'Rosetta', 1966, 'F', 224), +(92666, 'Whitney', 1966, 'F', 224), +(92667, 'Deneen', 1966, 'F', 223), +(92668, 'Frankie', 1966, 'F', 223), +(92669, 'Penelope', 1966, 'F', 223), +(92670, 'Clarissa', 1966, 'F', 222), +(92671, 'Graciela', 1966, 'F', 222), +(92672, 'Tamatha', 1966, 'F', 222), +(92673, 'Lesia', 1966, 'F', 221), +(92674, 'Vikki', 1966, 'F', 221), +(92675, 'Dale', 1966, 'F', 220), +(92676, 'Dixie', 1966, 'F', 220), +(92677, 'Roxann', 1966, 'F', 220), +(92678, 'Mattie', 1966, 'F', 219), +(92679, 'Genevieve', 1966, 'F', 218), +(92680, 'Rae', 1966, 'F', 218), +(92681, 'Juli', 1966, 'F', 217), +(92682, 'Valencia', 1966, 'F', 216), +(92683, 'Claudette', 1966, 'F', 215), +(92684, 'Jeanna', 1966, 'F', 214), +(92685, 'Johnnie', 1966, 'F', 214), +(92686, 'Latanya', 1966, 'F', 214), +(92687, 'Sharron', 1966, 'F', 214), +(92688, 'Susana', 1966, 'F', 214), +(92689, 'Tasha', 1966, 'F', 214), +(92690, 'Dayna', 1966, 'F', 213), +(92691, 'Nellie', 1966, 'F', 213), +(92692, 'Aileen', 1966, 'F', 212), +(92693, 'Jeanie', 1966, 'F', 212), +(92694, 'Johnna', 1966, 'F', 211), +(92695, 'Renita', 1966, 'F', 211), +(92696, 'Tatia', 1966, 'F', 211), +(92697, 'Violet', 1966, 'F', 210), +(92698, 'Kecia', 1966, 'F', 208), +(92699, 'Melodie', 1966, 'F', 208), +(92700, 'Harriet', 1966, 'F', 207), +(92701, 'Ivette', 1966, 'F', 207), +(92702, 'Myrna', 1966, 'F', 207), +(92703, 'Rosanne', 1966, 'F', 207), +(92704, 'Dorothea', 1966, 'F', 206), +(92705, 'Tresa', 1966, 'F', 206), +(92706, 'Viola', 1966, 'F', 206), +(92707, 'Carlene', 1966, 'F', 205), +(92708, 'Maribel', 1966, 'F', 205), +(92709, 'Cindi', 1966, 'F', 204), +(92710, 'Bessie', 1966, 'F', 203), +(92711, 'Tana', 1966, 'F', 203), +(92712, 'Teressa', 1966, 'F', 203), +(92713, 'Agnes', 1966, 'F', 202), +(92714, 'Charla', 1966, 'F', 202), +(92715, 'Dona', 1966, 'F', 201), +(92716, 'Susanna', 1966, 'F', 201), +(92717, 'Tena', 1966, 'F', 201), +(92718, 'Alana', 1966, 'F', 200), +(92719, 'Geri', 1966, 'F', 200), +(92720, 'Serena', 1966, 'F', 200), +(92721, 'Ava', 1966, 'F', 199), +(92722, 'Edwina', 1966, 'F', 199), +(92723, 'Evette', 1966, 'F', 197), +(92724, 'Maryanne', 1966, 'F', 197), +(92725, 'Lorene', 1966, 'F', 196), +(92726, 'Starla', 1966, 'F', 196), +(92727, 'Carmela', 1966, 'F', 195), +(92728, 'Pearl', 1966, 'F', 195), +(92729, 'Dara', 1966, 'F', 194), +(92730, 'Gabrielle', 1966, 'F', 194), +(92731, 'Freda', 1966, 'F', 193), +(92732, 'Juliet', 1966, 'F', 193), +(92733, 'Mandy', 1966, 'F', 193), +(92734, 'Carolina', 1966, 'F', 192), +(92735, 'Inez', 1966, 'F', 192), +(92736, 'Valeria', 1966, 'F', 192), +(92737, 'Laureen', 1966, 'F', 191), +(92738, 'Abigail', 1966, 'F', 190), +(92739, 'Collette', 1966, 'F', 189), +(92740, 'Estella', 1966, 'F', 189), +(92741, 'Liz', 1966, 'F', 189), +(92742, 'Alberta', 1966, 'F', 188), +(92743, 'Abby', 1966, 'F', 187), +(92744, 'Cathryn', 1966, 'F', 187), +(92745, 'Corrine', 1966, 'F', 187), +(92746, 'Gidget', 1966, 'F', 187), +(92747, 'Jeana', 1966, 'F', 187), +(92748, 'Leanna', 1966, 'F', 187), +(92749, 'Trena', 1966, 'F', 187), +(92750, 'Alexis', 1966, 'F', 186), +(92751, 'Lou', 1966, 'F', 186), +(92752, 'Mara', 1966, 'F', 186), +(92753, 'Michell', 1966, 'F', 185), +(92754, 'Debby', 1966, 'F', 183), +(92755, 'Malissa', 1966, 'F', 183), +(92756, 'Aida', 1966, 'F', 181), +(92757, 'Flora', 1966, 'F', 181), +(92758, 'Kate', 1966, 'F', 181), +(92759, 'Mae', 1966, 'F', 181), +(92760, 'Minnie', 1966, 'F', 181), +(92761, 'Kathrine', 1966, 'F', 180), +(92762, 'William', 1966, 'F', 180), +(92763, 'Georgina', 1966, 'F', 179), +(92764, 'Juliana', 1966, 'F', 179), +(92765, 'Roxanna', 1966, 'F', 179), +(92766, 'Maggie', 1966, 'F', 178), +(92767, 'Sharla', 1966, 'F', 178), +(92768, 'Esmeralda', 1966, 'F', 176), +(92769, 'Gracie', 1966, 'F', 176), +(92770, 'Aurora', 1966, 'F', 175), +(92771, 'Brigette', 1966, 'F', 175), +(92772, 'Krystal', 1966, 'F', 175), +(92773, 'Leila', 1966, 'F', 175), +(92774, 'Anthony', 1966, 'F', 173), +(92775, 'Karrie', 1966, 'F', 172), +(92776, 'Roxane', 1966, 'F', 172), +(92777, 'Sallie', 1966, 'F', 172), +(92778, 'Bernadine', 1966, 'F', 171), +(92779, 'Venus', 1966, 'F', 171), +(92780, 'Adrianne', 1966, 'F', 170), +(92781, 'Nannette', 1966, 'F', 170), +(92782, 'Richelle', 1966, 'F', 170), +(92783, 'Libby', 1966, 'F', 169), +(92784, 'Antionette', 1966, 'F', 168), +(92785, 'Sydney', 1966, 'F', 168), +(92786, 'Clare', 1966, 'F', 167), +(92787, 'Kathi', 1966, 'F', 166), +(92788, 'Reba', 1966, 'F', 166), +(92789, 'Adele', 1966, 'F', 165), +(92790, 'Zina', 1966, 'F', 165), +(92791, 'Carey', 1966, 'F', 164), +(92792, 'Elvira', 1966, 'F', 164), +(92793, 'Latonia', 1966, 'F', 164), +(92794, 'Althea', 1966, 'F', 163), +(92795, 'Georgette', 1966, 'F', 163), +(92796, 'Josie', 1966, 'F', 163), +(92797, 'Lanette', 1966, 'F', 163), +(92798, 'Sarita', 1966, 'F', 163), +(92799, 'Alecia', 1966, 'F', 161), +(92800, 'Letha', 1966, 'F', 161), +(92801, 'Lucretia', 1966, 'F', 161), +(92802, 'Dedra', 1966, 'F', 160), +(92803, 'Adrian', 1966, 'F', 159), +(92804, 'Kerrie', 1966, 'F', 159), +(92805, 'Miranda', 1966, 'F', 159), +(92806, 'Shonda', 1966, 'F', 159), +(92807, 'Casandra', 1966, 'F', 158), +(92808, 'Mercedes', 1966, 'F', 158), +(92809, 'Rosanna', 1966, 'F', 158), +(92810, 'Chrystal', 1966, 'F', 157), +(92811, 'Jewel', 1966, 'F', 157), +(92812, 'Karol', 1966, 'F', 157), +(92813, 'Monika', 1966, 'F', 157), +(92814, 'Twila', 1966, 'F', 157), +(92815, 'Suzan', 1966, 'F', 156), +(92816, 'Teena', 1966, 'F', 156), +(92817, 'Dorene', 1966, 'F', 155), +(92818, 'Janeen', 1966, 'F', 155), +(92819, 'Lupe', 1966, 'F', 155), +(92820, 'Ivy', 1966, 'F', 154), +(92821, 'Kandy', 1966, 'F', 154), +(92822, 'Machelle', 1966, 'F', 154), +(92823, 'Milagros', 1966, 'F', 154), +(92824, 'Renea', 1966, 'F', 154), +(92825, 'Anastasia', 1966, 'F', 153), +(92826, 'Rona', 1966, 'F', 153), +(92827, 'Beatriz', 1966, 'F', 152), +(92828, 'Bettina', 1966, 'F', 152), +(92829, 'Glenna', 1966, 'F', 152), +(92830, 'Henrietta', 1966, 'F', 152), +(92831, 'Hollie', 1966, 'F', 152), +(92832, 'Joellen', 1966, 'F', 152), +(92833, 'Loriann', 1966, 'F', 152), +(92834, 'Migdalia', 1966, 'F', 152), +(92835, 'Nita', 1966, 'F', 152), +(92836, 'Cassie', 1966, 'F', 151), +(92837, 'Maribeth', 1966, 'F', 151), +(92838, 'Noel', 1966, 'F', 151), +(92839, 'Jaime', 1966, 'F', 150), +(92840, 'Magdalena', 1966, 'F', 150), +(92841, 'Lavonne', 1966, 'F', 149), +(92842, 'Lenore', 1966, 'F', 149), +(92843, 'Maryjo', 1966, 'F', 149), +(92844, 'Valorie', 1966, 'F', 149), +(92845, 'Kimberli', 1966, 'F', 148), +(92846, 'Lizette', 1966, 'F', 148), +(92847, 'Treva', 1966, 'F', 148), +(92848, 'Kathie', 1966, 'F', 147), +(92849, 'Consuelo', 1966, 'F', 146), +(92850, 'Erma', 1966, 'F', 146), +(92851, 'Lila', 1966, 'F', 146), +(92852, 'Camilla', 1966, 'F', 145), +(92853, 'Corinna', 1966, 'F', 145), +(92854, 'Kayla', 1966, 'F', 145), +(92855, 'Pennie', 1966, 'F', 145), +(92856, 'Richard', 1966, 'F', 145), +(92857, 'Ilene', 1966, 'F', 144), +(92858, 'Nanci', 1966, 'F', 144), +(92859, 'Sybil', 1966, 'F', 144), +(92860, 'Angelita', 1966, 'F', 143), +(92861, 'Darci', 1966, 'F', 143), +(92862, 'Gerri', 1966, 'F', 143), +(92863, 'Noemi', 1966, 'F', 143), +(92864, 'Angelique', 1966, 'F', 142), +(92865, 'Stacia', 1966, 'F', 142), +(92866, 'Candi', 1966, 'F', 141), +(92867, 'Terese', 1966, 'F', 141), +(92868, 'Demetria', 1966, 'F', 140), +(92869, 'Fay', 1966, 'F', 140), +(92870, 'Kandi', 1966, 'F', 140), +(92871, 'Marissa', 1966, 'F', 140), +(92872, 'Sherie', 1966, 'F', 140), +(92873, 'Francesca', 1966, 'F', 139), +(92874, 'Lesli', 1966, 'F', 139), +(92875, 'Rosita', 1966, 'F', 139), +(92876, 'Amie', 1966, 'F', 138), +(92877, 'Brandi', 1966, 'F', 138), +(92878, 'Claudine', 1966, 'F', 138), +(92879, 'Lashawn', 1966, 'F', 138), +(92880, 'Yolonda', 1966, 'F', 138), +(92881, 'Alisha', 1966, 'F', 137), +(92882, 'Alyssa', 1966, 'F', 137), +(92883, 'Gabriela', 1966, 'F', 136), +(92884, 'Mamie', 1966, 'F', 136), +(92885, 'Athena', 1966, 'F', 135), +(92886, 'Dolly', 1966, 'F', 135), +(92887, 'Hannah', 1966, 'F', 135), +(92888, 'Luanne', 1966, 'F', 135), +(92889, 'Nichole', 1966, 'F', 135), +(92890, 'Pattie', 1966, 'F', 135), +(92891, 'Tori', 1966, 'F', 135), +(92892, 'Louisa', 1966, 'F', 134), +(92893, 'Natasha', 1966, 'F', 134), +(92894, 'Shiela', 1966, 'F', 134), +(92895, 'Vickey', 1966, 'F', 134), +(92896, 'Dori', 1966, 'F', 133), +(92897, 'Elva', 1966, 'F', 133), +(92898, 'Gia', 1966, 'F', 133), +(92899, 'Tangela', 1966, 'F', 132), +(92900, 'Alissa', 1966, 'F', 131), +(92901, 'Annamarie', 1966, 'F', 131), +(92902, 'Fawn', 1966, 'F', 131), +(92903, 'Lyn', 1966, 'F', 131), +(92904, 'Petra', 1966, 'F', 131), +(92905, 'Andra', 1966, 'F', 130), +(92906, 'Arleen', 1966, 'F', 130), +(92907, 'Juliann', 1966, 'F', 130), +(92908, 'Keli', 1966, 'F', 130), +(92909, 'Kimberlie', 1966, 'F', 130), +(92910, 'Minerva', 1966, 'F', 129), +(92911, 'Tawana', 1966, 'F', 129), +(92912, 'Trudi', 1966, 'F', 129), +(92913, 'Avis', 1966, 'F', 128), +(92914, 'Charles', 1966, 'F', 128), +(92915, 'Cherri', 1966, 'F', 128), +(92916, 'Mollie', 1966, 'F', 128), +(92917, 'Delisa', 1966, 'F', 127), +(92918, 'Hattie', 1966, 'F', 127), +(92919, 'Loren', 1966, 'F', 127), +(92920, 'Lorinda', 1966, 'F', 127), +(92921, 'Fannie', 1966, 'F', 126), +(92922, 'Ina', 1966, 'F', 126), +(92923, 'Kitty', 1966, 'F', 126), +(92924, 'Lela', 1966, 'F', 126), +(92925, 'Mark', 1966, 'F', 126), +(92926, 'Shaun', 1966, 'F', 126), +(92927, 'Donita', 1966, 'F', 125), +(92928, 'Lizabeth', 1966, 'F', 125), +(92929, 'Melba', 1966, 'F', 125), +(92930, 'Demetra', 1966, 'F', 124), +(92931, 'Dorinda', 1966, 'F', 124), +(92932, 'Francis', 1966, 'F', 124), +(92933, 'Juana', 1966, 'F', 124), +(92934, 'Risa', 1966, 'F', 124), +(92935, 'Dinah', 1966, 'F', 123), +(92936, 'Hillary', 1966, 'F', 123), +(92937, 'Kevin', 1966, 'F', 123), +(92938, 'Tamala', 1966, 'F', 123), +(92939, 'Annetta', 1966, 'F', 122), +(92940, 'Leesa', 1966, 'F', 122), +(92941, 'Maricela', 1966, 'F', 122), +(92942, 'Marni', 1966, 'F', 122), +(92943, 'Portia', 1966, 'F', 122), +(92944, 'Aleta', 1966, 'F', 121), +(92945, 'Charisse', 1966, 'F', 121), +(92946, 'Gigi', 1966, 'F', 121), +(92947, 'Jonna', 1966, 'F', 121), +(92948, 'Darleen', 1966, 'F', 120), +(92949, 'Joell', 1966, 'F', 120), +(92950, 'Latricia', 1966, 'F', 120), +(92951, 'Linette', 1966, 'F', 120), +(92952, 'Ruthie', 1966, 'F', 120), +(92953, 'Tressa', 1966, 'F', 119), +(92954, 'Barbie', 1966, 'F', 118), +(92955, 'Deedee', 1966, 'F', 118), +(92956, 'Fonda', 1966, 'F', 118), +(92957, 'Inger', 1966, 'F', 118), +(92958, 'Kaye', 1966, 'F', 118), +(92959, 'Kimberely', 1966, 'F', 118), +(92960, 'Marti', 1966, 'F', 118), +(92961, 'Roseanne', 1966, 'F', 118), +(92962, 'Tessa', 1966, 'F', 118), +(92963, 'Thomas', 1966, 'F', 118), +(92964, 'Zoe', 1966, 'F', 118), +(92965, 'Elana', 1966, 'F', 117), +(92966, 'Jerilyn', 1966, 'F', 117), +(92967, 'Josefina', 1966, 'F', 117), +(92968, 'Lisette', 1966, 'F', 117), +(92969, 'Zelda', 1966, 'F', 117), +(92970, 'Caprice', 1966, 'F', 116), +(92971, 'Cinda', 1966, 'F', 116), +(92972, 'Dominique', 1966, 'F', 116), +(92973, 'Evangeline', 1966, 'F', 116), +(92974, 'Shanda', 1966, 'F', 116), +(92975, 'Alfreda', 1966, 'F', 115), +(92976, 'Elissa', 1966, 'F', 115), +(92977, 'Timothy', 1966, 'F', 115), +(92978, 'Carmella', 1966, 'F', 114), +(92979, 'Holli', 1966, 'F', 114), +(92980, 'Janel', 1966, 'F', 114), +(92981, 'Mimi', 1966, 'F', 114), +(92982, 'Denita', 1966, 'F', 113), +(92983, 'Etta', 1966, 'F', 113), +(92984, 'Mellissa', 1966, 'F', 113), +(92985, 'Ronna', 1966, 'F', 113), +(92986, 'Alyson', 1966, 'F', 112), +(92987, 'Cherry', 1966, 'F', 112), +(92988, 'Jacquelin', 1966, 'F', 112), +(92989, 'Lily', 1966, 'F', 112), +(92990, 'Elaina', 1966, 'F', 111), +(92991, 'Eliza', 1966, 'F', 111), +(92992, 'Lia', 1966, 'F', 111), +(92993, 'Marva', 1966, 'F', 111), +(92994, 'Melonie', 1966, 'F', 111), +(92995, 'Merry', 1966, 'F', 111), +(92996, 'Romona', 1966, 'F', 111), +(92997, 'Suzy', 1966, 'F', 111), +(92998, 'Tonda', 1966, 'F', 111), +(92999, 'Angeline', 1966, 'F', 110), +(93000, 'Catrina', 1966, 'F', 110), +(93001, 'Christal', 1966, 'F', 110), +(93002, 'Katy', 1966, 'F', 110), +(93003, 'Loraine', 1966, 'F', 110), +(93004, 'Milissa', 1966, 'F', 110), +(93005, 'Millie', 1966, 'F', 110), +(93006, 'Moira', 1966, 'F', 110), +(93007, 'Suzanna', 1966, 'F', 110), +(93008, 'Tommie', 1966, 'F', 110), +(93009, 'Catharine', 1966, 'F', 109), +(93010, 'Roni', 1966, 'F', 109), +(93011, 'Sunday', 1966, 'F', 109), +(93012, 'Brigid', 1966, 'F', 108), +(93013, 'Marylou', 1966, 'F', 108), +(93014, 'Cathrine', 1966, 'F', 107), +(93015, 'Christian', 1966, 'F', 107), +(93016, 'Melony', 1966, 'F', 107), +(93017, 'Earlene', 1966, 'F', 106), +(93018, 'Margot', 1966, 'F', 106), +(93019, 'Mariann', 1966, 'F', 106), +(93020, 'Marianna', 1966, 'F', 106), +(93021, 'Meg', 1966, 'F', 106), +(93022, 'Meghan', 1966, 'F', 106), +(93023, 'Pat', 1966, 'F', 106), +(93024, 'Phoebe', 1966, 'F', 106), +(93025, 'Andria', 1966, 'F', 105), +(93026, 'Carleen', 1966, 'F', 105), +(93027, 'Christopher', 1966, 'F', 105), +(93028, 'Cornelia', 1966, 'F', 105), +(93029, 'Danelle', 1966, 'F', 105), +(93030, 'Joleen', 1966, 'F', 105), +(93031, 'Julianna', 1966, 'F', 105), +(93032, 'May', 1966, 'F', 105), +(93033, 'Muriel', 1966, 'F', 105), +(93034, 'Nedra', 1966, 'F', 105), +(93035, 'Tracee', 1966, 'F', 105), +(93036, 'Fontella', 1966, 'F', 104), +(93037, 'Jada', 1966, 'F', 104), +(93038, 'Kenneth', 1966, 'F', 104), +(93039, 'Siobhan', 1966, 'F', 104), +(93040, 'Zena', 1966, 'F', 104), +(93041, 'Eloise', 1966, 'F', 103), +(93042, 'Esperanza', 1966, 'F', 103), +(93043, 'Jacki', 1966, 'F', 103), +(93044, 'Lilly', 1966, 'F', 103), +(93045, 'Luisa', 1966, 'F', 103), +(93046, 'Tyra', 1966, 'F', 103), +(93047, 'Clarice', 1966, 'F', 102), +(93048, 'Evonne', 1966, 'F', 102), +(93049, 'Francisca', 1966, 'F', 102), +(93050, 'Iva', 1966, 'F', 102), +(93051, 'Joel', 1966, 'F', 102), +(93052, 'Karon', 1966, 'F', 102), +(93053, 'Lorelei', 1966, 'F', 102), +(93054, 'Penni', 1966, 'F', 102), +(93055, 'Rhea', 1966, 'F', 102), +(93056, 'Rosario', 1966, 'F', 102), +(93057, 'Antonette', 1966, 'F', 101), +(93058, 'Carin', 1966, 'F', 101), +(93059, 'Glynis', 1966, 'F', 101), +(93060, 'Jerry', 1966, 'F', 101), +(93061, 'Madonna', 1966, 'F', 101), +(93062, 'Marlo', 1966, 'F', 101), +(93063, 'Michaela', 1966, 'F', 101), +(93064, 'Nelda', 1966, 'F', 101), +(93065, 'Tanja', 1966, 'F', 101), +(93066, 'Tawnya', 1966, 'F', 101), +(93067, 'Thea', 1966, 'F', 101), +(93068, 'Brandy', 1966, 'F', 100), +(93069, 'Gretta', 1966, 'F', 100), +(93070, 'Jena', 1966, 'F', 100), +(93071, 'Joseph', 1966, 'F', 100), +(93072, 'Liesl', 1966, 'F', 100), +(93073, 'Misti', 1966, 'F', 100), +(93074, 'Sharyn', 1966, 'F', 100), +(93075, 'Michael', 1966, 'M', 80002), +(93076, 'David', 1966, 'M', 66447), +(93077, 'James', 1966, 'M', 65193), +(93078, 'John', 1966, 'M', 65056), +(93079, 'Robert', 1966, 'M', 59350), +(93080, 'William', 1966, 'M', 38272), +(93081, 'Mark', 1966, 'M', 34812), +(93082, 'Richard', 1966, 'M', 34468), +(93083, 'Jeffrey', 1966, 'M', 30201), +(93084, 'Thomas', 1966, 'M', 29017), +(93085, 'Timothy', 1966, 'M', 28932), +(93086, 'Christopher', 1966, 'M', 27880), +(93087, 'Steven', 1966, 'M', 27713), +(93088, 'Brian', 1966, 'M', 27275), +(93089, 'Joseph', 1966, 'M', 26992), +(93090, 'Scott', 1966, 'M', 26043), +(93091, 'Kevin', 1966, 'M', 25600), +(93092, 'Paul', 1966, 'M', 23584), +(93093, 'Daniel', 1966, 'M', 23273), +(93094, 'Charles', 1966, 'M', 22272), +(93095, 'Kenneth', 1966, 'M', 20823), +(93096, 'Anthony', 1966, 'M', 20626), +(93097, 'Gregory', 1966, 'M', 17017), +(93098, 'Ronald', 1966, 'M', 16956), +(93099, 'Eric', 1966, 'M', 16476), +(93100, 'Stephen', 1966, 'M', 14753), +(93101, 'Donald', 1966, 'M', 14721), +(93102, 'Gary', 1966, 'M', 14155), +(93103, 'Todd', 1966, 'M', 13557), +(93104, 'Edward', 1966, 'M', 13276), +(93105, 'Patrick', 1966, 'M', 12417), +(93106, 'Keith', 1966, 'M', 11614), +(93107, 'Douglas', 1966, 'M', 11409), +(93108, 'Matthew', 1966, 'M', 10809), +(93109, 'Rodney', 1966, 'M', 10265), +(93110, 'Andrew', 1966, 'M', 10238), +(93111, 'George', 1966, 'M', 9939), +(93112, 'Larry', 1966, 'M', 8715), +(93113, 'Peter', 1966, 'M', 8583), +(93114, 'Terry', 1966, 'M', 8455), +(93115, 'Jerry', 1966, 'M', 8426), +(93116, 'Jeffery', 1966, 'M', 7899), +(93117, 'Frank', 1966, 'M', 7797), +(93118, 'Dennis', 1966, 'M', 7789), +(93119, 'Randy', 1966, 'M', 7762), +(93120, 'Craig', 1966, 'M', 7741), +(93121, 'Raymond', 1966, 'M', 7383), +(93122, 'Troy', 1966, 'M', 6904), +(93123, 'Tony', 1966, 'M', 6568), +(93124, 'Sean', 1966, 'M', 6494), +(93125, 'Roger', 1966, 'M', 6302), +(93126, 'Bryan', 1966, 'M', 5895), +(93127, 'Bruce', 1966, 'M', 5842), +(93128, 'Shawn', 1966, 'M', 5726), +(93129, 'Chris', 1966, 'M', 5255), +(93130, 'Carl', 1966, 'M', 5225), +(93131, 'Alan', 1966, 'M', 4947), +(93132, 'Vincent', 1966, 'M', 4942), +(93133, 'Wayne', 1966, 'M', 4888), +(93134, 'Gerald', 1966, 'M', 4866), +(93135, 'Russell', 1966, 'M', 4864), +(93136, 'Danny', 1966, 'M', 4721), +(93137, 'Darren', 1966, 'M', 4718), +(93138, 'Ricky', 1966, 'M', 4686), +(93139, 'Jonathan', 1966, 'M', 4672), +(93140, 'Lawrence', 1966, 'M', 4653), +(93141, 'Steve', 1966, 'M', 4619), +(93142, 'Bradley', 1966, 'M', 4559), +(93143, 'Mike', 1966, 'M', 4528), +(93144, 'Randall', 1966, 'M', 4450), +(93145, 'Phillip', 1966, 'M', 4407), +(93146, 'Jeff', 1966, 'M', 4393), +(93147, 'Johnny', 1966, 'M', 4365), +(93148, 'Joe', 1966, 'M', 4334), +(93149, 'Curtis', 1966, 'M', 4242), +(93150, 'Jon', 1966, 'M', 4240), +(93151, 'Jimmy', 1966, 'M', 4236), +(93152, 'Martin', 1966, 'M', 4208), +(93153, 'Jose', 1966, 'M', 4184), +(93154, 'Billy', 1966, 'M', 4182), +(93155, 'Samuel', 1966, 'M', 4169), +(93156, 'Bobby', 1966, 'M', 4067), +(93157, 'Walter', 1966, 'M', 4052), +(93158, 'Dean', 1966, 'M', 4045), +(93159, 'Dale', 1966, 'M', 3983), +(93160, 'Philip', 1966, 'M', 3960), +(93161, 'Barry', 1966, 'M', 3918), +(93162, 'Darryl', 1966, 'M', 3816), +(93163, 'Jason', 1966, 'M', 3775), +(93164, 'Glenn', 1966, 'M', 3665), +(93165, 'Jay', 1966, 'M', 3600), +(93166, 'Henry', 1966, 'M', 3582), +(93167, 'Willie', 1966, 'M', 3549), +(93168, 'Roy', 1966, 'M', 3520), +(93169, 'Darrell', 1966, 'M', 3496), +(93170, 'Arthur', 1966, 'M', 3485), +(93171, 'Allen', 1966, 'M', 3414), +(93172, 'Tracy', 1966, 'M', 3377), +(93173, 'Harold', 1966, 'M', 3321), +(93174, 'Albert', 1966, 'M', 3301), +(93175, 'Victor', 1966, 'M', 3268), +(93176, 'Joel', 1966, 'M', 3229), +(93177, 'Tim', 1966, 'M', 3141), +(93178, 'Louis', 1966, 'M', 2992), +(93179, 'Marc', 1966, 'M', 2969), +(93180, 'Lee', 1966, 'M', 2966), +(93181, 'Jack', 1966, 'M', 2963), +(93182, 'Ronnie', 1966, 'M', 2908), +(93183, 'Frederick', 1966, 'M', 2891), +(93184, 'Kurt', 1966, 'M', 2845), +(93185, 'Kelly', 1966, 'M', 2785), +(93186, 'Ralph', 1966, 'M', 2785), +(93187, 'Marvin', 1966, 'M', 2734), +(93188, 'Brent', 1966, 'M', 2689), +(93189, 'Micheal', 1966, 'M', 2643), +(93190, 'Eugene', 1966, 'M', 2619), +(93191, 'Aaron', 1966, 'M', 2599), +(93192, 'Brett', 1966, 'M', 2575), +(93193, 'Darrin', 1966, 'M', 2567), +(93194, 'Howard', 1966, 'M', 2550), +(93195, 'Eddie', 1966, 'M', 2534), +(93196, 'Ernest', 1966, 'M', 2508), +(93197, 'Adam', 1966, 'M', 2500), +(93198, 'Tommy', 1966, 'M', 2463), +(93199, 'Greg', 1966, 'M', 2462), +(93200, 'Leonard', 1966, 'M', 2457), +(93201, 'Stanley', 1966, 'M', 2444), +(93202, 'Derrick', 1966, 'M', 2440), +(93203, 'Juan', 1966, 'M', 2386), +(93204, 'Benjamin', 1966, 'M', 2378), +(93205, 'Reginald', 1966, 'M', 2330), +(93206, 'Jesse', 1966, 'M', 2314), +(93207, 'Dwayne', 1966, 'M', 2264), +(93208, 'Darin', 1966, 'M', 2249), +(93209, 'Chad', 1966, 'M', 2201), +(93210, 'Jim', 1966, 'M', 2199), +(93211, 'Norman', 1966, 'M', 2170), +(93212, 'Carlos', 1966, 'M', 2158), +(93213, 'Nicholas', 1966, 'M', 2147), +(93214, 'Duane', 1966, 'M', 2117), +(93215, 'Derek', 1966, 'M', 2112), +(93216, 'Melvin', 1966, 'M', 2042), +(93217, 'Andre', 1966, 'M', 2028), +(93218, 'Harry', 1966, 'M', 1994), +(93219, 'Erik', 1966, 'M', 1961), +(93220, 'Kyle', 1966, 'M', 1960), +(93221, 'Jerome', 1966, 'M', 1947), +(93222, 'Antonio', 1966, 'M', 1911), +(93223, 'Theodore', 1966, 'M', 1906), +(93224, 'Brad', 1966, 'M', 1901), +(93225, 'Fred', 1966, 'M', 1879), +(93226, 'Edwin', 1966, 'M', 1873), +(93227, 'Tom', 1966, 'M', 1850), +(93228, 'Kirk', 1966, 'M', 1843), +(93229, 'Ray', 1966, 'M', 1826), +(93230, 'Lance', 1966, 'M', 1818), +(93231, 'Wesley', 1966, 'M', 1802), +(93232, 'Karl', 1966, 'M', 1792), +(93233, 'Calvin', 1966, 'M', 1766), +(93234, 'Earl', 1966, 'M', 1751), +(93235, 'Glen', 1966, 'M', 1749), +(93236, 'Rick', 1966, 'M', 1745), +(93237, 'Mitchell', 1966, 'M', 1733), +(93238, 'Francis', 1966, 'M', 1698), +(93239, 'Luis', 1966, 'M', 1658), +(93240, 'Don', 1966, 'M', 1650), +(93241, 'Warren', 1966, 'M', 1628), +(93242, 'Clifford', 1966, 'M', 1612), +(93243, 'Tyrone', 1966, 'M', 1612), +(93244, 'Alfred', 1966, 'M', 1606), +(93245, 'Ryan', 1966, 'M', 1578), +(93246, 'Kent', 1966, 'M', 1570), +(93247, 'Bill', 1966, 'M', 1557), +(93248, 'Dan', 1966, 'M', 1541), +(93249, 'Manuel', 1966, 'M', 1535), +(93250, 'Clarence', 1966, 'M', 1532), +(93251, 'Bernard', 1966, 'M', 1522), +(93252, 'Lonnie', 1966, 'M', 1430), +(93253, 'Nathan', 1966, 'M', 1422), +(93254, 'Maurice', 1966, 'M', 1417), +(93255, 'Gordon', 1966, 'M', 1388), +(93256, 'Alexander', 1966, 'M', 1370), +(93257, 'Wade', 1966, 'M', 1360), +(93258, 'Leroy', 1966, 'M', 1350), +(93259, 'Daryl', 1966, 'M', 1326), +(93260, 'Shane', 1966, 'M', 1314), +(93261, 'Leon', 1966, 'M', 1310), +(93262, 'Travis', 1966, 'M', 1305), +(93263, 'Franklin', 1966, 'M', 1300), +(93264, 'Mario', 1966, 'M', 1292), +(93265, 'Vernon', 1966, 'M', 1281), +(93266, 'Guy', 1966, 'M', 1278), +(93267, 'Marcus', 1966, 'M', 1271), +(93268, 'Gilbert', 1966, 'M', 1266), +(93269, 'Kerry', 1966, 'M', 1241), +(93270, 'Alvin', 1966, 'M', 1238), +(93271, 'Leslie', 1966, 'M', 1238), +(93272, 'Neil', 1966, 'M', 1225), +(93273, 'Ruben', 1966, 'M', 1198), +(93274, 'Ricardo', 1966, 'M', 1197), +(93275, 'Byron', 1966, 'M', 1178), +(93276, 'Stuart', 1966, 'M', 1169), +(93277, 'Herbert', 1966, 'M', 1158), +(93278, 'Shannon', 1966, 'M', 1156), +(93279, 'Gene', 1966, 'M', 1150), +(93280, 'Gregg', 1966, 'M', 1134), +(93281, 'Perry', 1966, 'M', 1125), +(93282, 'Lloyd', 1966, 'M', 1115), +(93283, 'Jesus', 1966, 'M', 1108), +(93284, 'Roberto', 1966, 'M', 1102), +(93285, 'Terrence', 1966, 'M', 1089), +(93286, 'Kelvin', 1966, 'M', 1080), +(93287, 'Ted', 1966, 'M', 1074), +(93288, 'Lewis', 1966, 'M', 1056), +(93289, 'Dwight', 1966, 'M', 1051), +(93290, 'Timmy', 1966, 'M', 1038), +(93291, 'Joey', 1966, 'M', 1031), +(93292, 'Alex', 1966, 'M', 1025), +(93293, 'Dana', 1966, 'M', 1016), +(93294, 'Miguel', 1966, 'M', 1016), +(93295, 'Andy', 1966, 'M', 997), +(93296, 'Allan', 1966, 'M', 988), +(93297, 'Marty', 1966, 'M', 976), +(93298, 'Terrance', 1966, 'M', 965), +(93299, 'Jamie', 1966, 'M', 962), +(93300, 'Roderick', 1966, 'M', 960), +(93301, 'Rickey', 1966, 'M', 944), +(93302, 'Floyd', 1966, 'M', 942), +(93303, 'Oscar', 1966, 'M', 942), +(93304, 'Ron', 1966, 'M', 939), +(93305, 'Hector', 1966, 'M', 935), +(93306, 'Kenny', 1966, 'M', 925), +(93307, 'Jimmie', 1966, 'M', 922), +(93308, 'Ross', 1966, 'M', 916), +(93309, 'Nathaniel', 1966, 'M', 904), +(93310, 'Jessie', 1966, 'M', 903), +(93311, 'Christian', 1966, 'M', 888), +(93312, 'Roland', 1966, 'M', 880), +(93313, 'Donnie', 1966, 'M', 870), +(93314, 'Dave', 1966, 'M', 868), +(93315, 'Damon', 1966, 'M', 865), +(93316, 'Francisco', 1966, 'M', 862), +(93317, 'Bret', 1966, 'M', 860), +(93318, 'Leo', 1966, 'M', 856), +(93319, 'Robin', 1966, 'M', 853), +(93320, 'Johnnie', 1966, 'M', 852), +(93321, 'Fredrick', 1966, 'M', 843), +(93322, 'Raul', 1966, 'M', 842), +(93323, 'Geoffrey', 1966, 'M', 839), +(93324, 'Charlie', 1966, 'M', 835), +(93325, 'Clinton', 1966, 'M', 825), +(93326, 'Ken', 1966, 'M', 821), +(93327, 'Arnold', 1966, 'M', 815), +(93328, 'Neal', 1966, 'M', 814), +(93329, 'Terence', 1966, 'M', 806), +(93330, 'Freddie', 1966, 'M', 800), +(93331, 'Gerard', 1966, 'M', 796), +(93332, 'Jackie', 1966, 'M', 785), +(93333, 'Ramon', 1966, 'M', 780), +(93334, 'Clayton', 1966, 'M', 776), +(93335, 'Lester', 1966, 'M', 773), +(93336, 'Angel', 1966, 'M', 767), +(93337, 'Milton', 1966, 'M', 766), +(93338, 'Cary', 1966, 'M', 762), +(93339, 'Jorge', 1966, 'M', 761), +(93340, 'Adrian', 1966, 'M', 755), +(93341, 'Herman', 1966, 'M', 755), +(93342, 'Jody', 1966, 'M', 750), +(93343, 'Randolph', 1966, 'M', 749), +(93344, 'Javier', 1966, 'M', 734), +(93345, 'Jaime', 1966, 'M', 728), +(93346, 'Matt', 1966, 'M', 728), +(93347, 'Cedric', 1966, 'M', 726), +(93348, 'Nelson', 1966, 'M', 723), +(93349, 'Rex', 1966, 'M', 719), +(93350, 'Wendell', 1966, 'M', 715), +(93351, 'Clifton', 1966, 'M', 695), +(93352, 'Randal', 1966, 'M', 690), +(93353, 'Nick', 1966, 'M', 685), +(93354, 'Bob', 1966, 'M', 684), +(93355, 'Doug', 1966, 'M', 684), +(93356, 'Ben', 1966, 'M', 682), +(93357, 'Sam', 1966, 'M', 679), +(93358, 'Cecil', 1966, 'M', 678), +(93359, 'Stacy', 1966, 'M', 678), +(93360, 'Pedro', 1966, 'M', 677), +(93361, 'Rene', 1966, 'M', 675), +(93362, 'Clyde', 1966, 'M', 666), +(93363, 'Trevor', 1966, 'M', 663), +(93364, 'Marshall', 1966, 'M', 661), +(93365, 'Harvey', 1966, 'M', 660), +(93366, 'Frankie', 1966, 'M', 657), +(93367, 'Carlton', 1966, 'M', 649), +(93368, 'Armando', 1966, 'M', 643), +(93369, 'Grant', 1966, 'M', 627), +(93370, 'Ivan', 1966, 'M', 623), +(93371, 'Ian', 1966, 'M', 620), +(93372, 'Rafael', 1966, 'M', 620), +(93373, 'Loren', 1966, 'M', 619), +(93374, 'Sidney', 1966, 'M', 613), +(93375, 'Lorenzo', 1966, 'M', 605), +(93376, 'Fernando', 1966, 'M', 602), +(93377, 'Angelo', 1966, 'M', 601), +(93378, 'Dewayne', 1966, 'M', 600), +(93379, 'Daren', 1966, 'M', 596), +(93380, 'Robbie', 1966, 'M', 595), +(93381, 'Trent', 1966, 'M', 595), +(93382, 'Shaun', 1966, 'M', 586), +(93383, 'Edgar', 1966, 'M', 584), +(93384, 'Sammy', 1966, 'M', 569), +(93385, 'Hugh', 1966, 'M', 566), +(93386, 'Casey', 1966, 'M', 562), +(93387, 'Stacey', 1966, 'M', 559), +(93388, 'Everett', 1966, 'M', 558), +(93389, 'Garry', 1966, 'M', 556), +(93390, 'Claude', 1966, 'M', 550), +(93391, 'Evan', 1966, 'M', 550), +(93392, 'Kim', 1966, 'M', 550), +(93393, 'Gabriel', 1966, 'M', 548), +(93394, 'Alberto', 1966, 'M', 546), +(93395, 'Rudy', 1966, 'M', 541), +(93396, 'Bryant', 1966, 'M', 537), +(93397, 'Chester', 1966, 'M', 536), +(93398, 'Orlando', 1966, 'M', 529), +(93399, 'Clark', 1966, 'M', 528), +(93400, 'Bradford', 1966, 'M', 526), +(93401, 'Eduardo', 1966, 'M', 526), +(93402, 'Felix', 1966, 'M', 526), +(93403, 'Scotty', 1966, 'M', 525), +(93404, 'Preston', 1966, 'M', 520), +(93405, 'Wallace', 1966, 'M', 520), +(93406, 'Alfredo', 1966, 'M', 518), +(93407, 'Salvatore', 1966, 'M', 516), +(93408, 'Teddy', 1966, 'M', 513), +(93409, 'Justin', 1966, 'M', 509), +(93410, 'Darrel', 1966, 'M', 508), +(93411, 'Scot', 1966, 'M', 500), +(93412, 'Curt', 1966, 'M', 498), +(93413, 'Brendan', 1966, 'M', 489), +(93414, 'Joshua', 1966, 'M', 487), +(93415, 'Lynn', 1966, 'M', 484), +(93416, 'Mathew', 1966, 'M', 476), +(93417, 'Dominic', 1966, 'M', 473), +(93418, 'Morris', 1966, 'M', 473), +(93419, 'Noel', 1966, 'M', 470), +(93420, 'Tracey', 1966, 'M', 470), +(93421, 'Corey', 1966, 'M', 466), +(93422, 'Virgil', 1966, 'M', 459), +(93423, 'Arturo', 1966, 'M', 458), +(93424, 'Benny', 1966, 'M', 458), +(93425, 'Jacob', 1966, 'M', 456), +(93426, 'Malcolm', 1966, 'M', 454), +(93427, 'Bart', 1966, 'M', 453), +(93428, 'Julian', 1966, 'M', 452), +(93429, 'Max', 1966, 'M', 447), +(93430, 'Bennie', 1966, 'M', 444), +(93431, 'Cory', 1966, 'M', 443), +(93432, 'Chuck', 1966, 'M', 436), +(93433, 'Lyle', 1966, 'M', 435), +(93434, 'Mickey', 1966, 'M', 434), +(93435, 'Heath', 1966, 'M', 433), +(93436, 'Isaac', 1966, 'M', 432), +(93437, 'Dexter', 1966, 'M', 430), +(93438, 'Drew', 1966, 'M', 430), +(93439, 'Monte', 1966, 'M', 428), +(93440, 'Jerald', 1966, 'M', 426), +(93441, 'Enrique', 1966, 'M', 425), +(93442, 'Earnest', 1966, 'M', 423), +(93443, 'Otis', 1966, 'M', 420), +(93444, 'Jeffry', 1966, 'M', 418), +(93445, 'Kendall', 1966, 'M', 417), +(93446, 'Stewart', 1966, 'M', 417), +(93447, 'Monty', 1966, 'M', 414), +(93448, 'Myron', 1966, 'M', 413), +(93449, 'Pat', 1966, 'M', 411), +(93450, 'Colin', 1966, 'M', 405), +(93451, 'Ira', 1966, 'M', 400), +(93452, 'Blake', 1966, 'M', 399), +(93453, 'Brandon', 1966, 'M', 399), +(93454, 'Marco', 1966, 'M', 397), +(93455, 'Erick', 1966, 'M', 396), +(93456, 'Julius', 1966, 'M', 396), +(93457, 'Scottie', 1966, 'M', 395), +(93458, 'Stephan', 1966, 'M', 395), +(93459, 'Edmund', 1966, 'M', 394), +(93460, 'Sheldon', 1966, 'M', 393), +(93461, 'Pete', 1966, 'M', 389), +(93462, 'Willard', 1966, 'M', 388), +(93463, 'Alonzo', 1966, 'M', 385), +(93464, 'Alton', 1966, 'M', 370), +(93465, 'Spencer', 1966, 'M', 368), +(93466, 'Alfonso', 1966, 'M', 367), +(93467, 'Delbert', 1966, 'M', 365), +(93468, 'Luther', 1966, 'M', 365), +(93469, 'Clay', 1966, 'M', 360), +(93470, 'Doyle', 1966, 'M', 358), +(93471, 'Kris', 1966, 'M', 357), +(93472, 'Luke', 1966, 'M', 357), +(93473, 'Ernesto', 1966, 'M', 354), +(93474, 'Darnell', 1966, 'M', 353), +(93475, 'Rod', 1966, 'M', 353), +(93476, 'Julio', 1966, 'M', 352), +(93477, 'Rudolph', 1966, 'M', 352), +(93478, 'Laurence', 1966, 'M', 349), +(93479, 'Marion', 1966, 'M', 349), +(93480, 'Toby', 1966, 'M', 349), +(93481, 'Van', 1966, 'M', 349), +(93482, 'Lamont', 1966, 'M', 345), +(93483, 'Seth', 1966, 'M', 341), +(93484, 'Leland', 1966, 'M', 338), +(93485, 'Oliver', 1966, 'M', 338), +(93486, 'Sherman', 1966, 'M', 337), +(93487, 'Bryon', 1966, 'M', 336), +(93488, 'Devin', 1966, 'M', 335), +(93489, 'Zachary', 1966, 'M', 335), +(93490, 'Darwin', 1966, 'M', 334), +(93491, 'Tyler', 1966, 'M', 332), +(93492, 'Rusty', 1966, 'M', 331), +(93493, 'Stevie', 1966, 'M', 331), +(93494, 'Dion', 1966, 'M', 330), +(93495, 'Ty', 1966, 'M', 328), +(93496, 'Rob', 1966, 'M', 326), +(93497, 'Sergio', 1966, 'M', 326), +(93498, 'Rodger', 1966, 'M', 325), +(93499, 'Sylvester', 1966, 'M', 325), +(93500, 'Elmer', 1966, 'M', 321), +(93501, 'Clint', 1966, 'M', 319), +(93502, 'Cameron', 1966, 'M', 318), +(93503, 'Garrett', 1966, 'M', 318), +(93504, 'Dominick', 1966, 'M', 315), +(93505, 'Alejandro', 1966, 'M', 312), +(93506, 'Rodolfo', 1966, 'M', 311), +(93507, 'Blaine', 1966, 'M', 310), +(93508, 'Kip', 1966, 'M', 309), +(93509, 'Carey', 1966, 'M', 308), +(93510, 'Robby', 1966, 'M', 305), +(93511, 'Roosevelt', 1966, 'M', 304), +(93512, 'Archie', 1966, 'M', 303), +(93513, 'Wilson', 1966, 'M', 303), +(93514, 'Rocky', 1966, 'M', 301), +(93515, 'Dallas', 1966, 'M', 300), +(93516, 'Forrest', 1966, 'M', 300), +(93517, 'Vance', 1966, 'M', 299), +(93518, 'Dirk', 1966, 'M', 297), +(93519, 'Gerardo', 1966, 'M', 296), +(93520, 'Darron', 1966, 'M', 295), +(93521, 'Salvador', 1966, 'M', 295), +(93522, 'Gilberto', 1966, 'M', 292), +(93523, 'Israel', 1966, 'M', 292), +(93524, 'Lionel', 1966, 'M', 292), +(93525, 'Lowell', 1966, 'M', 292), +(93526, 'Tommie', 1966, 'M', 292), +(93527, 'Wilbert', 1966, 'M', 290), +(93528, 'Jeremy', 1966, 'M', 289), +(93529, 'Vince', 1966, 'M', 288), +(93530, 'Andres', 1966, 'M', 277), +(93531, 'Hubert', 1966, 'M', 277), +(93532, 'Pablo', 1966, 'M', 277), +(93533, 'Tod', 1966, 'M', 277), +(93534, 'Reynaldo', 1966, 'M', 276), +(93535, 'Ernie', 1966, 'M', 273), +(93536, 'Denis', 1966, 'M', 271), +(93537, 'Phil', 1966, 'M', 271), +(93538, 'Deron', 1966, 'M', 270), +(93539, 'Horace', 1966, 'M', 270), +(93540, 'Grady', 1966, 'M', 268), +(93541, 'Vaughn', 1966, 'M', 267), +(93542, 'Demetrius', 1966, 'M', 266), +(93543, 'Dino', 1966, 'M', 266), +(93544, 'Boyd', 1966, 'M', 265), +(93545, 'Freddy', 1966, 'M', 265), +(93546, 'Owen', 1966, 'M', 265), +(93547, 'Tad', 1966, 'M', 265), +(93548, 'Conrad', 1966, 'M', 263), +(93549, 'Rolando', 1966, 'M', 261), +(93550, 'Jared', 1966, 'M', 259), +(93551, 'Johnathan', 1966, 'M', 259), +(93552, 'Marlon', 1966, 'M', 259), +(93553, 'Abel', 1966, 'M', 257), +(93554, 'Gerry', 1966, 'M', 257), +(93555, 'Rory', 1966, 'M', 254), +(93556, 'Willis', 1966, 'M', 254), +(93557, 'Abraham', 1966, 'M', 253), +(93558, 'Bert', 1966, 'M', 252), +(93559, 'Ervin', 1966, 'M', 247), +(93560, 'Terrell', 1966, 'M', 247), +(93561, 'Kurtis', 1966, 'M', 246), +(93562, 'Jonathon', 1966, 'M', 245), +(93563, 'Cornelius', 1966, 'M', 244), +(93564, 'Mack', 1966, 'M', 238), +(93565, 'Sterling', 1966, 'M', 238), +(93566, 'Rickie', 1966, 'M', 237), +(93567, 'Wilbur', 1966, 'M', 237), +(93568, 'Daron', 1966, 'M', 235), +(93569, 'Dewey', 1966, 'M', 235), +(93570, 'Ismael', 1966, 'M', 233), +(93571, 'Hans', 1966, 'M', 232), +(93572, 'Ronny', 1966, 'M', 231), +(93573, 'Alphonso', 1966, 'M', 230), +(93574, 'Felipe', 1966, 'M', 230), +(93575, 'Ed', 1966, 'M', 229), +(93576, 'Elliott', 1966, 'M', 229), +(93577, 'Ellis', 1966, 'M', 228), +(93578, 'Randell', 1966, 'M', 228), +(93579, 'Rufus', 1966, 'M', 228), +(93580, 'Guadalupe', 1966, 'M', 225), +(93581, 'Homer', 1966, 'M', 224), +(93582, 'Morgan', 1966, 'M', 224), +(93583, 'Marlin', 1966, 'M', 221), +(93584, 'Donnell', 1966, 'M', 219), +(93585, 'Jarrod', 1966, 'M', 219), +(93586, 'Lamar', 1966, 'M', 219), +(93587, 'Tomas', 1966, 'M', 218), +(93588, 'Buddy', 1966, 'M', 217), +(93589, 'Lane', 1966, 'M', 216), +(93590, 'Blair', 1966, 'M', 215), +(93591, 'Miles', 1966, 'M', 215), +(93592, 'Denny', 1966, 'M', 214), +(93593, 'Emanuel', 1966, 'M', 214), +(93594, 'Joesph', 1966, 'M', 214), +(93595, 'Thad', 1966, 'M', 214), +(93596, 'Louie', 1966, 'M', 213), +(93597, 'Xavier', 1966, 'M', 213), +(93598, 'Jordan', 1966, 'M', 212), +(93599, 'Cesar', 1966, 'M', 211), +(93600, 'Pierre', 1966, 'M', 209), +(93601, 'Sandy', 1966, 'M', 209), +(93602, 'Lonny', 1966, 'M', 208), +(93603, 'Winston', 1966, 'M', 208), +(93604, 'Ramiro', 1966, 'M', 206), +(93605, 'Will', 1966, 'M', 206), +(93606, 'Kristopher', 1966, 'M', 205), +(93607, 'Derick', 1966, 'M', 202), +(93608, 'Elbert', 1966, 'M', 202), +(93609, 'Omar', 1966, 'M', 201), +(93610, 'Rogelio', 1966, 'M', 201), +(93611, 'Aubrey', 1966, 'M', 200), +(93612, 'Austin', 1966, 'M', 200), +(93613, 'Jan', 1966, 'M', 200), +(93614, 'Jean', 1966, 'M', 200), +(93615, 'Jess', 1966, 'M', 200), +(93616, 'Ward', 1966, 'M', 200), +(93617, 'Courtney', 1966, 'M', 199), +(93618, 'Marcos', 1966, 'M', 199), +(93619, 'Thaddeus', 1966, 'M', 199), +(93620, 'Simon', 1966, 'M', 197), +(93621, 'Wilfredo', 1966, 'M', 197), +(93622, 'Bryce', 1966, 'M', 195), +(93623, 'Donny', 1966, 'M', 195), +(93624, 'Percy', 1966, 'M', 195), +(93625, 'Sammie', 1966, 'M', 195), +(93626, 'Avery', 1966, 'M', 193), +(93627, 'Guillermo', 1966, 'M', 193), +(93628, 'Royce', 1966, 'M', 192), +(93629, 'Garland', 1966, 'M', 190), +(93630, 'Wilfred', 1966, 'M', 190), +(93631, 'Erich', 1966, 'M', 188), +(93632, 'Kirby', 1966, 'M', 187), +(93633, 'Cleveland', 1966, 'M', 186), +(93634, 'Jefferson', 1966, 'M', 186), +(93635, 'Lorne', 1966, 'M', 186), +(93636, 'Michel', 1966, 'M', 185), +(93637, 'Carroll', 1966, 'M', 183), +(93638, 'Emmett', 1966, 'M', 182), +(93639, 'Richie', 1966, 'M', 182), +(93640, 'Amos', 1966, 'M', 180), +(93641, 'Theron', 1966, 'M', 180), +(93642, 'Dane', 1966, 'M', 178), +(93643, 'Edmond', 1966, 'M', 178), +(93644, 'Fabian', 1966, 'M', 177), +(93645, 'Cornell', 1966, 'M', 176), +(93646, 'Donovan', 1966, 'M', 176), +(93647, 'Gustavo', 1966, 'M', 176), +(93648, 'Reuben', 1966, 'M', 174), +(93649, 'Ethan', 1966, 'M', 173), +(93650, 'Galen', 1966, 'M', 173), +(93651, 'Danial', 1966, 'M', 172), +(93652, 'Barton', 1966, 'M', 171), +(93653, 'Billie', 1966, 'M', 171), +(93654, 'Damian', 1966, 'M', 171), +(93655, 'Garth', 1966, 'M', 170), +(93656, 'Hal', 1966, 'M', 170), +(93657, 'Elias', 1966, 'M', 169), +(93658, 'Stan', 1966, 'M', 167), +(93659, 'Efrain', 1966, 'M', 166), +(93660, 'Brock', 1966, 'M', 165), +(93661, 'Moses', 1966, 'M', 165), +(93662, 'Kraig', 1966, 'M', 164), +(93663, 'Baron', 1966, 'M', 163), +(93664, 'Leonardo', 1966, 'M', 162), +(93665, 'Irvin', 1966, 'M', 161), +(93666, 'Lyndon', 1966, 'M', 161), +(93667, 'Hank', 1966, 'M', 160), +(93668, 'Nolan', 1966, 'M', 160), +(93669, 'Quentin', 1966, 'M', 160), +(93670, 'Al', 1966, 'M', 158), +(93671, 'Cody', 1966, 'M', 158), +(93672, 'Noah', 1966, 'M', 157), +(93673, 'Kennith', 1966, 'M', 156), +(93674, 'Shelby', 1966, 'M', 155), +(93675, 'Brady', 1966, 'M', 153), +(93676, 'Reed', 1966, 'M', 153), +(93677, 'Roman', 1966, 'M', 153), +(93678, 'Burton', 1966, 'M', 152), +(93679, 'Rocco', 1966, 'M', 152), +(93680, 'Cliff', 1966, 'M', 151), +(93681, 'Lisa', 1966, 'M', 151), +(93682, 'Antoine', 1966, 'M', 150), +(93683, 'Shelton', 1966, 'M', 150), +(93684, 'Woodrow', 1966, 'M', 149), +(93685, 'Gavin', 1966, 'M', 148), +(93686, 'Levi', 1966, 'M', 148), +(93687, 'Reggie', 1966, 'M', 148), +(93688, 'Toney', 1966, 'M', 148), +(93689, 'Eddy', 1966, 'M', 147), +(93690, 'Harlan', 1966, 'M', 146), +(93691, 'Mitchel', 1966, 'M', 144), +(93692, 'Deon', 1966, 'M', 143), +(93693, 'Keven', 1966, 'M', 143), +(93694, 'Santos', 1966, 'M', 143), +(93695, 'Quinton', 1966, 'M', 142), +(93696, 'Lon', 1966, 'M', 141), +(93697, 'Marcel', 1966, 'M', 141), +(93698, 'Russel', 1966, 'M', 141), +(93699, 'Elijah', 1966, 'M', 140), +(93700, 'Harley', 1966, 'M', 140), +(93701, 'Murray', 1966, 'M', 140), +(93702, 'Stefan', 1966, 'M', 140), +(93703, 'Ignacio', 1966, 'M', 139), +(93704, 'Andrea', 1966, 'M', 138), +(93705, 'Bennett', 1966, 'M', 138), +(93706, 'Dante', 1966, 'M', 137), +(93707, 'Kirt', 1966, 'M', 136), +(93708, 'Santiago', 1966, 'M', 136), +(93709, 'Carmen', 1966, 'M', 135), +(93710, 'Edwardo', 1966, 'M', 135), +(93711, 'Kelley', 1966, 'M', 135), +(93712, 'Russ', 1966, 'M', 135), +(93713, 'Saul', 1966, 'M', 135), +(93714, 'Gus', 1966, 'M', 134), +(93715, 'Junior', 1966, 'M', 134), +(93716, 'Nicky', 1966, 'M', 134), +(93717, 'Quintin', 1966, 'M', 133), +(93718, 'Bobbie', 1966, 'M', 132), +(93719, 'Domingo', 1966, 'M', 132), +(93720, 'Elton', 1966, 'M', 132), +(93721, 'Emilio', 1966, 'M', 132), +(93722, 'Lenny', 1966, 'M', 132), +(93723, 'Harrison', 1966, 'M', 130), +(93724, 'Sanford', 1966, 'M', 130), +(93725, 'Erwin', 1966, 'M', 129), +(93726, 'Jeremiah', 1966, 'M', 129), +(93727, 'Adolfo', 1966, 'M', 128), +(93728, 'Carter', 1966, 'M', 128), +(93729, 'Esteban', 1966, 'M', 128), +(93730, 'Gino', 1966, 'M', 128), +(93731, 'Ned', 1966, 'M', 128), +(93732, 'Ritchie', 1966, 'M', 127), +(93733, 'Timmothy', 1966, 'M', 127), +(93734, 'Anton', 1966, 'M', 126), +(93735, 'Darius', 1966, 'M', 125), +(93736, 'Darrick', 1966, 'M', 124), +(93737, 'Derwin', 1966, 'M', 124), +(93738, 'Elliot', 1966, 'M', 124), +(93739, 'Parrish', 1966, 'M', 124), +(93740, 'Rich', 1966, 'M', 124), +(93741, 'Vito', 1966, 'M', 124), +(93742, 'Elvin', 1966, 'M', 123), +(93743, 'Hugo', 1966, 'M', 123), +(93744, 'Nicolas', 1966, 'M', 123), +(93745, 'Reid', 1966, 'M', 123), +(93746, 'Barney', 1966, 'M', 122), +(93747, 'Devon', 1966, 'M', 122), +(93748, 'Desmond', 1966, 'M', 121), +(93749, 'Irving', 1966, 'M', 121), +(93750, 'Jake', 1966, 'M', 121), +(93751, 'Merle', 1966, 'M', 121), +(93752, 'Rodrick', 1966, 'M', 121), +(93753, 'Benito', 1966, 'M', 120), +(93754, 'Humberto', 1966, 'M', 120), +(93755, 'Sonny', 1966, 'M', 120), +(93756, 'Alec', 1966, 'M', 118), +(93757, 'Elvis', 1966, 'M', 118), +(93758, 'Carlo', 1966, 'M', 117), +(93759, 'Dwain', 1966, 'M', 117), +(93760, 'Frederic', 1966, 'M', 116), +(93761, 'Norris', 1966, 'M', 116), +(93762, 'Solomon', 1966, 'M', 116), +(93763, 'Eli', 1966, 'M', 115), +(93764, 'Kimberly', 1966, 'M', 115), +(93765, 'Thurman', 1966, 'M', 115), +(93766, 'Chet', 1966, 'M', 114), +(93767, 'Jerrold', 1966, 'M', 114), +(93768, 'Kenton', 1966, 'M', 114), +(93769, 'Lanny', 1966, 'M', 114), +(93770, 'Lincoln', 1966, 'M', 114), +(93771, 'Greggory', 1966, 'M', 113), +(93772, 'Brant', 1966, 'M', 112), +(93773, 'Brooks', 1966, 'M', 112), +(93774, 'Grover', 1966, 'M', 112), +(93775, 'Orville', 1966, 'M', 112), +(93776, 'Otto', 1966, 'M', 112), +(93777, 'Shayne', 1966, 'M', 112), +(93778, 'Wiley', 1966, 'M', 111), +(93779, 'Ashley', 1966, 'M', 110), +(93780, 'Emmanuel', 1966, 'M', 110), +(93781, 'Jerold', 1966, 'M', 110), +(93782, 'Kermit', 1966, 'M', 110), +(93783, 'Quinn', 1966, 'M', 110), +(93784, 'Raphael', 1966, 'M', 110), +(93785, 'Emory', 1966, 'M', 109), +(93786, 'Roscoe', 1966, 'M', 109), +(93787, 'Davis', 1966, 'M', 108), +(93788, 'Jacques', 1966, 'M', 108), +(93789, 'Jefferey', 1966, 'M', 108), +(93790, 'Mary', 1966, 'M', 108), +(93791, 'Micah', 1966, 'M', 108), +(93792, 'Dannie', 1966, 'M', 107), +(93793, 'Duncan', 1966, 'M', 107), +(93794, 'Errol', 1966, 'M', 107), +(93795, 'Jasper', 1966, 'M', 107), +(93796, 'Vicente', 1966, 'M', 107), +(93797, 'Eldon', 1966, 'M', 106), +(93798, 'Ulysses', 1966, 'M', 106), +(93799, 'Antony', 1966, 'M', 105), +(93800, 'August', 1966, 'M', 105), +(93801, 'Norbert', 1966, 'M', 105), +(93802, 'Alexis', 1966, 'M', 103), +(93803, 'Graham', 1966, 'M', 103), +(93804, 'Carmine', 1966, 'M', 102), +(93805, 'Josh', 1966, 'M', 102), +(93806, 'Noe', 1966, 'M', 102), +(93807, 'Andreas', 1966, 'M', 101), +(93808, 'Jayson', 1966, 'M', 101), +(93809, 'Joaquin', 1966, 'M', 101), +(93810, 'Sebastian', 1966, 'M', 101), +(93811, 'Agustin', 1966, 'M', 100), +(93812, 'Heriberto', 1966, 'M', 100), +(93813, 'Lesley', 1966, 'M', 100), +(93814, 'Linwood', 1966, 'M', 100), +(93815, 'Lisa', 1967, 'F', 52430), +(93816, 'Kimberly', 1967, 'F', 33099), +(93817, 'Michelle', 1967, 'F', 30822), +(93818, 'Mary', 1967, 'F', 25314), +(93819, 'Susan', 1967, 'F', 22259), +(93820, 'Karen', 1967, 'F', 21543), +(93821, 'Angela', 1967, 'F', 19540), +(93822, 'Tammy', 1967, 'F', 18653), +(93823, 'Melissa', 1967, 'F', 18375), +(93824, 'Jennifer', 1967, 'F', 18238), +(93825, 'Patricia', 1967, 'F', 17745), +(93826, 'Amy', 1967, 'F', 16129), +(93827, 'Elizabeth', 1967, 'F', 16113), +(93828, 'Christine', 1967, 'F', 15991), +(93829, 'Laura', 1967, 'F', 15818), +(93830, 'Julie', 1967, 'F', 15547), +(93831, 'Pamela', 1967, 'F', 15368), +(93832, 'Cynthia', 1967, 'F', 15336), +(93833, 'Donna', 1967, 'F', 14784), +(93834, 'Sandra', 1967, 'F', 14739), +(93835, 'Tina', 1967, 'F', 14158), +(93836, 'Deborah', 1967, 'F', 14007), +(93837, 'Kelly', 1967, 'F', 13723), +(93838, 'Lori', 1967, 'F', 13563), +(93839, 'Stephanie', 1967, 'F', 13350), +(93840, 'Linda', 1967, 'F', 13198), +(93841, 'Dawn', 1967, 'F', 13166), +(93842, 'Teresa', 1967, 'F', 12269), +(93843, 'Tracy', 1967, 'F', 11952), +(93844, 'Sharon', 1967, 'F', 11924), +(93845, 'Brenda', 1967, 'F', 11478), +(93846, 'Wendy', 1967, 'F', 11225), +(93847, 'Barbara', 1967, 'F', 11202), +(93848, 'Denise', 1967, 'F', 11080), +(93849, 'Cheryl', 1967, 'F', 10768), +(93850, 'Michele', 1967, 'F', 10413), +(93851, 'Nancy', 1967, 'F', 10267), +(93852, 'Debra', 1967, 'F', 10224), +(93853, 'Rebecca', 1967, 'F', 9819), +(93854, 'Kathleen', 1967, 'F', 9210), +(93855, 'Rhonda', 1967, 'F', 9073), +(93856, 'Maria', 1967, 'F', 8856), +(93857, 'Theresa', 1967, 'F', 8104), +(93858, 'Diane', 1967, 'F', 7811), +(93859, 'Paula', 1967, 'F', 7693), +(93860, 'Robin', 1967, 'F', 7693), +(93861, 'Carol', 1967, 'F', 7489), +(93862, 'Andrea', 1967, 'F', 7413), +(93863, 'Kim', 1967, 'F', 7403), +(93864, 'Jill', 1967, 'F', 7401), +(93865, 'Sherry', 1967, 'F', 7130), +(93866, 'Jacqueline', 1967, 'F', 6951), +(93867, 'Christina', 1967, 'F', 6599), +(93868, 'Gina', 1967, 'F', 6364), +(93869, 'Catherine', 1967, 'F', 6348), +(93870, 'Sheila', 1967, 'F', 6324), +(93871, 'Ann', 1967, 'F', 6251), +(93872, 'Margaret', 1967, 'F', 6225), +(93873, 'Cindy', 1967, 'F', 5780), +(93874, 'Carolyn', 1967, 'F', 5716), +(93875, 'Janet', 1967, 'F', 5657), +(93876, 'Renee', 1967, 'F', 5562), +(93877, 'Suzanne', 1967, 'F', 5488), +(93878, 'Kathy', 1967, 'F', 5406), +(93879, 'Diana', 1967, 'F', 5340), +(93880, 'Leslie', 1967, 'F', 5321), +(93881, 'Beth', 1967, 'F', 5181), +(93882, 'Tonya', 1967, 'F', 5165), +(93883, 'Stacey', 1967, 'F', 5118), +(93884, 'Monica', 1967, 'F', 4960), +(93885, 'Dana', 1967, 'F', 4932), +(93886, 'Laurie', 1967, 'F', 4925), +(93887, 'Valerie', 1967, 'F', 4758), +(93888, 'Stacy', 1967, 'F', 4595), +(93889, 'Connie', 1967, 'F', 4578), +(93890, 'Katherine', 1967, 'F', 4560), +(93891, 'Terri', 1967, 'F', 4523), +(93892, 'Tracey', 1967, 'F', 4501), +(93893, 'April', 1967, 'F', 4463), +(93894, 'Regina', 1967, 'F', 4363), +(93895, 'Lynn', 1967, 'F', 4196), +(93896, 'Carla', 1967, 'F', 4185), +(93897, 'Sarah', 1967, 'F', 4140), +(93898, 'Anne', 1967, 'F', 4098), +(93899, 'Annette', 1967, 'F', 4007), +(93900, 'Tamara', 1967, 'F', 4002), +(93901, 'Heather', 1967, 'F', 3906), +(93902, 'Heidi', 1967, 'F', 3866), +(93903, 'Sherri', 1967, 'F', 3842), +(93904, 'Debbie', 1967, 'F', 3745), +(93905, 'Anna', 1967, 'F', 3717), +(93906, 'Kathryn', 1967, 'F', 3692), +(93907, 'Victoria', 1967, 'F', 3660), +(93908, 'Shelly', 1967, 'F', 3649), +(93909, 'Melinda', 1967, 'F', 3635), +(93910, 'Colleen', 1967, 'F', 3623), +(93911, 'Kristin', 1967, 'F', 3598), +(93912, 'Janice', 1967, 'F', 3516), +(93913, 'Anita', 1967, 'F', 3513), +(93914, 'Wanda', 1967, 'F', 3473), +(93915, 'Shannon', 1967, 'F', 3445), +(93916, 'Bonnie', 1967, 'F', 3372), +(93917, 'Jodi', 1967, 'F', 3367), +(93918, 'Deanna', 1967, 'F', 3347), +(93919, 'Rachel', 1967, 'F', 3315), +(93920, 'Kristine', 1967, 'F', 3292), +(93921, 'Carrie', 1967, 'F', 3196), +(93922, 'Veronica', 1967, 'F', 3175), +(93923, 'Holly', 1967, 'F', 3154); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(93924, 'Melanie', 1967, 'F', 3110), +(93925, 'Darlene', 1967, 'F', 3072), +(93926, 'Beverly', 1967, 'F', 3006), +(93927, 'Vicki', 1967, 'F', 2988), +(93928, 'Sonya', 1967, 'F', 2978), +(93929, 'Sheri', 1967, 'F', 2958), +(93930, 'Joyce', 1967, 'F', 2940), +(93931, 'Martha', 1967, 'F', 2909), +(93932, 'Cathy', 1967, 'F', 2827), +(93933, 'Penny', 1967, 'F', 2810), +(93934, 'Judy', 1967, 'F', 2800), +(93935, 'Yolanda', 1967, 'F', 2798), +(93936, 'Julia', 1967, 'F', 2776), +(93937, 'Nicole', 1967, 'F', 2772), +(93938, 'Kristen', 1967, 'F', 2753), +(93939, 'Yvette', 1967, 'F', 2744), +(93940, 'Marie', 1967, 'F', 2737), +(93941, 'Jane', 1967, 'F', 2728), +(93942, 'Yvonne', 1967, 'F', 2706), +(93943, 'Maureen', 1967, 'F', 2701), +(93944, 'Judith', 1967, 'F', 2665), +(93945, 'Amanda', 1967, 'F', 2662), +(93946, 'Tanya', 1967, 'F', 2659), +(93947, 'Sabrina', 1967, 'F', 2626), +(93948, 'Gloria', 1967, 'F', 2617), +(93949, 'Virginia', 1967, 'F', 2552), +(93950, 'Jean', 1967, 'F', 2549), +(93951, 'Betty', 1967, 'F', 2542), +(93952, 'Crystal', 1967, 'F', 2522), +(93953, 'Ellen', 1967, 'F', 2522), +(93954, 'Jamie', 1967, 'F', 2513), +(93955, 'Shirley', 1967, 'F', 2511), +(93956, 'Shelley', 1967, 'F', 2509), +(93957, 'Traci', 1967, 'F', 2444), +(93958, 'Vickie', 1967, 'F', 2424), +(93959, 'Ruth', 1967, 'F', 2419), +(93960, 'Rita', 1967, 'F', 2374), +(93961, 'Joanne', 1967, 'F', 2336), +(93962, 'Dorothy', 1967, 'F', 2316), +(93963, 'Alicia', 1967, 'F', 2306), +(93964, 'Joan', 1967, 'F', 2306), +(93965, 'Peggy', 1967, 'F', 2262), +(93966, 'Rose', 1967, 'F', 2251), +(93967, 'Toni', 1967, 'F', 2242), +(93968, 'Sheryl', 1967, 'F', 2238), +(93969, 'Sara', 1967, 'F', 2217), +(93970, 'Sylvia', 1967, 'F', 2212), +(93971, 'Carmen', 1967, 'F', 2175), +(93972, 'Helen', 1967, 'F', 2150), +(93973, 'Felicia', 1967, 'F', 2090), +(93974, 'Charlene', 1967, 'F', 2080), +(93975, 'Becky', 1967, 'F', 2031), +(93976, 'Natalie', 1967, 'F', 2031), +(93977, 'Gail', 1967, 'F', 2023), +(93978, 'Charlotte', 1967, 'F', 2022), +(93979, 'Kristi', 1967, 'F', 2011), +(93980, 'Kimberley', 1967, 'F', 2001), +(93981, 'Marilyn', 1967, 'F', 1960), +(93982, 'Alice', 1967, 'F', 1929), +(93983, 'Joy', 1967, 'F', 1885), +(93984, 'Vanessa', 1967, 'F', 1871), +(93985, 'Frances', 1967, 'F', 1868), +(93986, 'Jeanette', 1967, 'F', 1852), +(93987, 'Norma', 1967, 'F', 1828), +(93988, 'Kelli', 1967, 'F', 1810), +(93989, 'Belinda', 1967, 'F', 1809), +(93990, 'Samantha', 1967, 'F', 1806), +(93991, 'Loretta', 1967, 'F', 1803), +(93992, 'Joann', 1967, 'F', 1794), +(93993, 'Ronda', 1967, 'F', 1794), +(93994, 'Eileen', 1967, 'F', 1791), +(93995, 'Kristina', 1967, 'F', 1786), +(93996, 'Elaine', 1967, 'F', 1774), +(93997, 'Jessica', 1967, 'F', 1761), +(93998, 'Evelyn', 1967, 'F', 1724), +(93999, 'Erin', 1967, 'F', 1686), +(94000, 'Jackie', 1967, 'F', 1681), +(94001, 'Audrey', 1967, 'F', 1680), +(94002, 'Monique', 1967, 'F', 1671), +(94003, 'Shari', 1967, 'F', 1664), +(94004, 'Karla', 1967, 'F', 1646), +(94005, 'Cassandra', 1967, 'F', 1643), +(94006, 'Tiffany', 1967, 'F', 1643), +(94007, 'Sally', 1967, 'F', 1638), +(94008, 'Jody', 1967, 'F', 1628), +(94009, 'Roberta', 1967, 'F', 1623), +(94010, 'Tammie', 1967, 'F', 1620), +(94011, 'Danielle', 1967, 'F', 1618), +(94012, 'Jeanne', 1967, 'F', 1612), +(94013, 'Shawn', 1967, 'F', 1597), +(94014, 'Leah', 1967, 'F', 1596), +(94015, 'Terry', 1967, 'F', 1593), +(94016, 'Kelley', 1967, 'F', 1588), +(94017, 'Bridget', 1967, 'F', 1556), +(94018, 'Melody', 1967, 'F', 1529), +(94019, 'Lorraine', 1967, 'F', 1522), +(94020, 'Sonia', 1967, 'F', 1497), +(94021, 'Tami', 1967, 'F', 1489), +(94022, 'Shelia', 1967, 'F', 1476), +(94023, 'Allison', 1967, 'F', 1454), +(94024, 'Caroline', 1967, 'F', 1449), +(94025, 'Juanita', 1967, 'F', 1441), +(94026, 'Katrina', 1967, 'F', 1434), +(94027, 'Sandy', 1967, 'F', 1415), +(94028, 'Jo', 1967, 'F', 1409), +(94029, 'Phyllis', 1967, 'F', 1395), +(94030, 'Lora', 1967, 'F', 1388), +(94031, 'Tracie', 1967, 'F', 1346), +(94032, 'Leigh', 1967, 'F', 1344), +(94033, 'Gwendolyn', 1967, 'F', 1337), +(94034, 'Sonja', 1967, 'F', 1336), +(94035, 'Rosa', 1967, 'F', 1321), +(94036, 'Marsha', 1967, 'F', 1317), +(94037, 'Christy', 1967, 'F', 1314), +(94038, 'Marcia', 1967, 'F', 1310), +(94039, 'Cheri', 1967, 'F', 1305), +(94040, 'Kari', 1967, 'F', 1303), +(94041, 'Teri', 1967, 'F', 1302), +(94042, 'Lynette', 1967, 'F', 1295), +(94043, 'Tara', 1967, 'F', 1291), +(94044, 'Darla', 1967, 'F', 1265), +(94045, 'Sue', 1967, 'F', 1259), +(94046, 'Kerry', 1967, 'F', 1258), +(94047, 'Dina', 1967, 'F', 1254), +(94048, 'Angie', 1967, 'F', 1239), +(94049, 'Constance', 1967, 'F', 1232), +(94050, 'Dianne', 1967, 'F', 1222), +(94051, 'Bernadette', 1967, 'F', 1217), +(94052, 'Eva', 1967, 'F', 1209), +(94053, 'Emily', 1967, 'F', 1206), +(94054, 'Irene', 1967, 'F', 1195), +(94055, 'Robyn', 1967, 'F', 1190), +(94056, 'Lauren', 1967, 'F', 1186), +(94057, 'Doris', 1967, 'F', 1176), +(94058, 'Ginger', 1967, 'F', 1161), +(94059, 'Kellie', 1967, 'F', 1160), +(94060, 'Audra', 1967, 'F', 1152), +(94061, 'Lynda', 1967, 'F', 1147), +(94062, 'Lee', 1967, 'F', 1141), +(94063, 'Vicky', 1967, 'F', 1141), +(94064, 'Candace', 1967, 'F', 1118), +(94065, 'Sherrie', 1967, 'F', 1115), +(94066, 'Dianna', 1967, 'F', 1109), +(94067, 'Glenda', 1967, 'F', 1109), +(94068, 'Trina', 1967, 'F', 1107), +(94069, 'Jana', 1967, 'F', 1074), +(94070, 'Lynne', 1967, 'F', 1067), +(94071, 'Marla', 1967, 'F', 1066), +(94072, 'Tonia', 1967, 'F', 1061), +(94073, 'Vivian', 1967, 'F', 1059), +(94074, 'Janine', 1967, 'F', 1056), +(94075, 'Doreen', 1967, 'F', 1050), +(94076, 'Antoinette', 1967, 'F', 1032), +(94077, 'Adrienne', 1967, 'F', 1031), +(94078, 'Marlene', 1967, 'F', 1025), +(94079, 'Ramona', 1967, 'F', 1017), +(94080, 'Molly', 1967, 'F', 1015), +(94081, 'Rochelle', 1967, 'F', 1008), +(94082, 'Roxanne', 1967, 'F', 1003), +(94083, 'Nina', 1967, 'F', 979), +(94084, 'Jacquelyn', 1967, 'F', 975), +(94085, 'Hope', 1967, 'F', 967), +(94086, 'Gretchen', 1967, 'F', 966), +(94087, 'Cherie', 1967, 'F', 960), +(94088, 'Dena', 1967, 'F', 959), +(94089, 'Kara', 1967, 'F', 951), +(94090, 'Karin', 1967, 'F', 947), +(94091, 'Lara', 1967, 'F', 944), +(94092, 'Alisa', 1967, 'F', 921), +(94093, 'Angelia', 1967, 'F', 920), +(94094, 'Lana', 1967, 'F', 918), +(94095, 'Rosemary', 1967, 'F', 914), +(94096, 'Claudia', 1967, 'F', 902), +(94097, 'Grace', 1967, 'F', 896), +(94098, 'Alison', 1967, 'F', 893), +(94099, 'Lorie', 1967, 'F', 893), +(94100, 'Patti', 1967, 'F', 888), +(94101, 'Patty', 1967, 'F', 888), +(94102, 'Lydia', 1967, 'F', 879), +(94103, 'Kerri', 1967, 'F', 878), +(94104, 'Priscilla', 1967, 'F', 868), +(94105, 'Krista', 1967, 'F', 865), +(94106, 'Billie', 1967, 'F', 857), +(94107, 'Bobbie', 1967, 'F', 855), +(94108, 'Joanna', 1967, 'F', 855), +(94109, 'Jodie', 1967, 'F', 854), +(94110, 'Christie', 1967, 'F', 852), +(94111, 'Ana', 1967, 'F', 843), +(94112, 'Lillian', 1967, 'F', 841), +(94113, 'Marianne', 1967, 'F', 841), +(94114, 'Kristy', 1967, 'F', 835), +(94115, 'Stacie', 1967, 'F', 834), +(94116, 'Stefanie', 1967, 'F', 816), +(94117, 'Kirsten', 1967, 'F', 815), +(94118, 'Erika', 1967, 'F', 813), +(94119, 'Kendra', 1967, 'F', 795), +(94120, 'Marjorie', 1967, 'F', 794), +(94121, 'Misty', 1967, 'F', 788), +(94122, 'Paige', 1967, 'F', 788), +(94123, 'Deana', 1967, 'F', 784), +(94124, 'Arlene', 1967, 'F', 772), +(94125, 'June', 1967, 'F', 769), +(94126, 'Jenny', 1967, 'F', 768), +(94127, 'Leticia', 1967, 'F', 765), +(94128, 'Esther', 1967, 'F', 758), +(94129, 'Lois', 1967, 'F', 755), +(94130, 'Staci', 1967, 'F', 753), +(94131, 'Ruby', 1967, 'F', 747), +(94132, 'Jan', 1967, 'F', 746), +(94133, 'Josephine', 1967, 'F', 745), +(94134, 'Geraldine', 1967, 'F', 741), +(94135, 'Mia', 1967, 'F', 738), +(94136, 'Cathleen', 1967, 'F', 733), +(94137, 'Desiree', 1967, 'F', 731), +(94138, 'Chris', 1967, 'F', 728), +(94139, 'Nora', 1967, 'F', 728), +(94140, 'Kris', 1967, 'F', 723), +(94141, 'Megan', 1967, 'F', 711), +(94142, 'Kay', 1967, 'F', 709), +(94143, 'Carole', 1967, 'F', 703), +(94144, 'Leanne', 1967, 'F', 701), +(94145, 'Paulette', 1967, 'F', 701), +(94146, 'Gayle', 1967, 'F', 695), +(94147, 'Pauline', 1967, 'F', 695), +(94148, 'Annie', 1967, 'F', 691), +(94149, 'Lesley', 1967, 'F', 688), +(94150, 'Lucy', 1967, 'F', 685), +(94151, 'Mona', 1967, 'F', 682), +(94152, 'Erica', 1967, 'F', 681), +(94153, 'Debora', 1967, 'F', 677), +(94154, 'Dolores', 1967, 'F', 676), +(94155, 'Suzette', 1967, 'F', 674), +(94156, 'Georgia', 1967, 'F', 673), +(94157, 'Edith', 1967, 'F', 672), +(94158, 'Kristie', 1967, 'F', 672), +(94159, 'Susanne', 1967, 'F', 671), +(94160, 'Nadine', 1967, 'F', 667), +(94161, 'Wendi', 1967, 'F', 666), +(94162, 'Tammi', 1967, 'F', 664), +(94163, 'Louise', 1967, 'F', 659), +(94164, 'Miriam', 1967, 'F', 657), +(94165, 'Jeannette', 1967, 'F', 653), +(94166, 'Maryann', 1967, 'F', 650), +(94167, 'Shawna', 1967, 'F', 645), +(94168, 'Patrice', 1967, 'F', 644), +(94169, 'Jeannie', 1967, 'F', 638), +(94170, 'Trisha', 1967, 'F', 632), +(94171, 'Elisa', 1967, 'F', 630), +(94172, 'Amber', 1967, 'F', 628), +(94173, 'Celeste', 1967, 'F', 623), +(94174, 'Cecilia', 1967, 'F', 622), +(94175, 'Francine', 1967, 'F', 613), +(94176, 'Rene', 1967, 'F', 609), +(94177, 'Jeanine', 1967, 'F', 606), +(94178, 'Alma', 1967, 'F', 604), +(94179, 'Cara', 1967, 'F', 604), +(94180, 'Daphne', 1967, 'F', 604), +(94181, 'Pam', 1967, 'F', 601), +(94182, 'Sophia', 1967, 'F', 601), +(94183, 'Jeri', 1967, 'F', 600), +(94184, 'Leann', 1967, 'F', 600), +(94185, 'Rachelle', 1967, 'F', 598), +(94186, 'Dora', 1967, 'F', 595), +(94187, 'Faith', 1967, 'F', 595), +(94188, 'Christi', 1967, 'F', 590), +(94189, 'Edna', 1967, 'F', 583), +(94190, 'Lorrie', 1967, 'F', 583), +(94191, 'Candy', 1967, 'F', 582), +(94192, 'Tabatha', 1967, 'F', 581), +(94193, 'Aimee', 1967, 'F', 580), +(94194, 'Ingrid', 1967, 'F', 577), +(94195, 'Delores', 1967, 'F', 576), +(94196, 'Irma', 1967, 'F', 576), +(94197, 'Bridgette', 1967, 'F', 575), +(94198, 'Mildred', 1967, 'F', 572), +(94199, 'Emma', 1967, 'F', 564), +(94200, 'Courtney', 1967, 'F', 562), +(94201, 'Deanne', 1967, 'F', 561), +(94202, 'Darcy', 1967, 'F', 560), +(94203, 'Ladonna', 1967, 'F', 560), +(94204, 'Janie', 1967, 'F', 554), +(94205, 'Lesa', 1967, 'F', 542), +(94206, 'Rosemarie', 1967, 'F', 537), +(94207, 'Betsy', 1967, 'F', 535), +(94208, 'Greta', 1967, 'F', 534), +(94209, 'Susie', 1967, 'F', 530), +(94210, 'Tricia', 1967, 'F', 529), +(94211, 'Margarita', 1967, 'F', 523), +(94212, 'Janelle', 1967, 'F', 522), +(94213, 'Latonya', 1967, 'F', 521), +(94214, 'Marcella', 1967, 'F', 521), +(94215, 'Sondra', 1967, 'F', 521), +(94216, 'Elena', 1967, 'F', 519), +(94217, 'Lea', 1967, 'F', 519), +(94218, 'Marci', 1967, 'F', 515), +(94219, 'Marcy', 1967, 'F', 515), +(94220, 'Candice', 1967, 'F', 514), +(94221, 'Clara', 1967, 'F', 512), +(94222, 'Naomi', 1967, 'F', 512), +(94223, 'Bobbi', 1967, 'F', 511), +(94224, 'Tonja', 1967, 'F', 511), +(94225, 'Annmarie', 1967, 'F', 509), +(94226, 'Deirdre', 1967, 'F', 507), +(94227, 'Jerri', 1967, 'F', 507), +(94228, 'Laurel', 1967, 'F', 507), +(94229, 'Myra', 1967, 'F', 507), +(94230, 'Lucinda', 1967, 'F', 505), +(94231, 'Beatrice', 1967, 'F', 503), +(94232, 'Camille', 1967, 'F', 503), +(94233, 'Mindy', 1967, 'F', 496), +(94234, 'Margie', 1967, 'F', 493), +(94235, 'Keri', 1967, 'F', 490), +(94236, 'Kimberlee', 1967, 'F', 489), +(94237, 'Gena', 1967, 'F', 487), +(94238, 'Raquel', 1967, 'F', 484), +(94239, 'Lena', 1967, 'F', 483), +(94240, 'Melisa', 1967, 'F', 482), +(94241, 'Tamera', 1967, 'F', 482), +(94242, 'Marian', 1967, 'F', 481), +(94243, 'Ida', 1967, 'F', 478), +(94244, 'Bethany', 1967, 'F', 475), +(94245, 'Lynnette', 1967, 'F', 474), +(94246, 'Jeannine', 1967, 'F', 473), +(94247, 'Terrie', 1967, 'F', 471), +(94248, 'Colette', 1967, 'F', 467), +(94249, 'Elisabeth', 1967, 'F', 465), +(94250, 'Marion', 1967, 'F', 463), +(94251, 'Valarie', 1967, 'F', 463), +(94252, 'Bonita', 1967, 'F', 462), +(94253, 'Vera', 1967, 'F', 461), +(94254, 'Rosalind', 1967, 'F', 460), +(94255, 'Bernice', 1967, 'F', 457), +(94256, 'Nanette', 1967, 'F', 457), +(94257, 'Janette', 1967, 'F', 453), +(94258, 'Patsy', 1967, 'F', 451), +(94259, 'Amelia', 1967, 'F', 450), +(94260, 'Lauri', 1967, 'F', 450), +(94261, 'Rachael', 1967, 'F', 447), +(94262, 'Joni', 1967, 'F', 446), +(94263, 'Eleanor', 1967, 'F', 445), +(94264, 'Tabitha', 1967, 'F', 445), +(94265, 'Dionne', 1967, 'F', 444), +(94266, 'Gladys', 1967, 'F', 442), +(94267, 'Therese', 1967, 'F', 442), +(94268, 'Jennie', 1967, 'F', 441), +(94269, 'Karyn', 1967, 'F', 436), +(94270, 'Bertha', 1967, 'F', 432), +(94271, 'Iris', 1967, 'F', 432), +(94272, 'Trudy', 1967, 'F', 427), +(94273, 'Noelle', 1967, 'F', 423), +(94274, 'Olga', 1967, 'F', 422), +(94275, 'Angelina', 1967, 'F', 421), +(94276, 'Danette', 1967, 'F', 421), +(94277, 'Katie', 1967, 'F', 420), +(94278, 'Nikki', 1967, 'F', 417), +(94279, 'Deann', 1967, 'F', 414), +(94280, 'Shauna', 1967, 'F', 413), +(94281, 'Stella', 1967, 'F', 411), +(94282, 'Lorena', 1967, 'F', 409), +(94283, 'Tamra', 1967, 'F', 407), +(94284, 'Chandra', 1967, 'F', 405), +(94285, 'Madeline', 1967, 'F', 405), +(94286, 'Marisa', 1967, 'F', 403), +(94287, 'Guadalupe', 1967, 'F', 402), +(94288, 'Angel', 1967, 'F', 400), +(94289, 'Ursula', 1967, 'F', 400), +(94290, 'Polly', 1967, 'F', 399), +(94291, 'Cristina', 1967, 'F', 398), +(94292, 'Rena', 1967, 'F', 398), +(94293, 'Julianne', 1967, 'F', 393), +(94294, 'Claire', 1967, 'F', 390), +(94295, 'Jolene', 1967, 'F', 388), +(94296, 'Thelma', 1967, 'F', 388), +(94297, 'Alexandra', 1967, 'F', 387), +(94298, 'Ashley', 1967, 'F', 386), +(94299, 'Aretha', 1967, 'F', 385), +(94300, 'Ella', 1967, 'F', 384), +(94301, 'Florence', 1967, 'F', 382), +(94302, 'Deidre', 1967, 'F', 380), +(94303, 'Shana', 1967, 'F', 379), +(94304, 'Shellie', 1967, 'F', 377), +(94305, 'Tania', 1967, 'F', 377), +(94306, 'Joelle', 1967, 'F', 375), +(94307, 'Gwen', 1967, 'F', 374), +(94308, 'Margo', 1967, 'F', 374), +(94309, 'Jessie', 1967, 'F', 373), +(94310, 'Michael', 1967, 'F', 372), +(94311, 'Dee', 1967, 'F', 371), +(94312, 'Shelli', 1967, 'F', 368), +(94313, 'Lorna', 1967, 'F', 366), +(94314, 'Nichelle', 1967, 'F', 361), +(94315, 'Deena', 1967, 'F', 360), +(94316, 'Meredith', 1967, 'F', 357), +(94317, 'Christa', 1967, 'F', 353), +(94318, 'Isabel', 1967, 'F', 353), +(94319, 'Marlo', 1967, 'F', 352), +(94320, 'Cami', 1967, 'F', 351), +(94321, 'Jami', 1967, 'F', 351), +(94322, 'Jayne', 1967, 'F', 350), +(94323, 'Luz', 1967, 'F', 348), +(94324, 'Tia', 1967, 'F', 346), +(94325, 'Olivia', 1967, 'F', 345), +(94326, 'Mitzi', 1967, 'F', 343), +(94327, 'Ethel', 1967, 'F', 341), +(94328, 'Renae', 1967, 'F', 340), +(94329, 'Rosie', 1967, 'F', 340), +(94330, 'Lenora', 1967, 'F', 339), +(94331, 'Elise', 1967, 'F', 337), +(94332, 'Maura', 1967, 'F', 337), +(94333, 'Malinda', 1967, 'F', 334), +(94334, 'Marta', 1967, 'F', 334), +(94335, 'Rae', 1967, 'F', 328), +(94336, 'Cari', 1967, 'F', 326), +(94337, 'Della', 1967, 'F', 326), +(94338, 'Tamela', 1967, 'F', 326), +(94339, 'Corinne', 1967, 'F', 325), +(94340, 'Bridgett', 1967, 'F', 323), +(94341, 'Marina', 1967, 'F', 321), +(94342, 'Vonda', 1967, 'F', 321), +(94343, 'Eugenia', 1967, 'F', 320), +(94344, 'Liza', 1967, 'F', 317), +(94345, 'Delia', 1967, 'F', 314), +(94346, 'Tamatha', 1967, 'F', 313), +(94347, 'James', 1967, 'F', 312), +(94348, 'Angelica', 1967, 'F', 310), +(94349, 'Marcie', 1967, 'F', 310), +(94350, 'Janis', 1967, 'F', 306), +(94351, 'Jenifer', 1967, 'F', 305), +(94352, 'Lourdes', 1967, 'F', 305), +(94353, 'Shanna', 1967, 'F', 304), +(94354, 'Leona', 1967, 'F', 303), +(94355, 'Missy', 1967, 'F', 303), +(94356, 'Benita', 1967, 'F', 302), +(94357, 'Randi', 1967, 'F', 301), +(94358, 'Johanna', 1967, 'F', 300), +(94359, 'Lucille', 1967, 'F', 300), +(94360, 'Coleen', 1967, 'F', 298), +(94361, 'Claudine', 1967, 'F', 296), +(94362, 'Selena', 1967, 'F', 294), +(94363, 'Geneva', 1967, 'F', 293), +(94364, 'Lillie', 1967, 'F', 293), +(94365, 'Hilda', 1967, 'F', 292), +(94366, 'Shelby', 1967, 'F', 291), +(94367, 'Justine', 1967, 'F', 290), +(94368, 'John', 1967, 'F', 289), +(94369, 'Maxine', 1967, 'F', 288), +(94370, 'Noreen', 1967, 'F', 288), +(94371, 'Lorri', 1967, 'F', 287), +(94372, 'Rebekah', 1967, 'F', 285), +(94373, 'Martina', 1967, 'F', 284), +(94374, 'Adriana', 1967, 'F', 283), +(94375, 'David', 1967, 'F', 283), +(94376, 'Denice', 1967, 'F', 283), +(94377, 'Silvia', 1967, 'F', 283), +(94378, 'Maribel', 1967, 'F', 281), +(94379, 'Wilma', 1967, 'F', 281), +(94380, 'Lolita', 1967, 'F', 280), +(94381, 'Daisy', 1967, 'F', 279), +(94382, 'Marisol', 1967, 'F', 279), +(94383, 'Sandi', 1967, 'F', 279), +(94384, 'Blanca', 1967, 'F', 275), +(94385, 'Allyson', 1967, 'F', 274), +(94386, 'Caryn', 1967, 'F', 274), +(94387, 'Janna', 1967, 'F', 274), +(94388, 'Mari', 1967, 'F', 274), +(94389, 'Verna', 1967, 'F', 274), +(94390, 'Annemarie', 1967, 'F', 273), +(94391, 'Michell', 1967, 'F', 273), +(94392, 'Velma', 1967, 'F', 273), +(94393, 'Cecelia', 1967, 'F', 272), +(94394, 'Felecia', 1967, 'F', 271), +(94395, 'Celia', 1967, 'F', 270), +(94396, 'Katharine', 1967, 'F', 270), +(94397, 'Marybeth', 1967, 'F', 270), +(94398, 'Saundra', 1967, 'F', 269), +(94399, 'Brooke', 1967, 'F', 268), +(94400, 'Mechelle', 1967, 'F', 268), +(94401, 'Simone', 1967, 'F', 268), +(94402, 'Corina', 1967, 'F', 266), +(94403, 'Gayla', 1967, 'F', 264), +(94404, 'Leeann', 1967, 'F', 264), +(94405, 'Sharlene', 1967, 'F', 262), +(94406, 'Serena', 1967, 'F', 261), +(94407, 'Jocelyn', 1967, 'F', 260), +(94408, 'Hazel', 1967, 'F', 256), +(94409, 'Carey', 1967, 'F', 255), +(94410, 'Dayna', 1967, 'F', 255), +(94411, 'Penelope', 1967, 'F', 255), +(94412, 'Robert', 1967, 'F', 255), +(94413, 'Letitia', 1967, 'F', 254), +(94414, 'Marnie', 1967, 'F', 252), +(94415, 'Barbra', 1967, 'F', 251), +(94416, 'Faye', 1967, 'F', 249), +(94417, 'Alesia', 1967, 'F', 247), +(94418, 'Lucia', 1967, 'F', 246), +(94419, 'Abigail', 1967, 'F', 245), +(94420, 'Ada', 1967, 'F', 245), +(94421, 'Elsa', 1967, 'F', 245), +(94422, 'Noel', 1967, 'F', 245), +(94423, 'Rosalyn', 1967, 'F', 245), +(94424, 'Deidra', 1967, 'F', 244), +(94425, 'Rosalie', 1967, 'F', 244), +(94426, 'Willie', 1967, 'F', 243), +(94427, 'Karrie', 1967, 'F', 241), +(94428, 'Maritza', 1967, 'F', 241), +(94429, 'Latonia', 1967, 'F', 239), +(94430, 'Kerrie', 1967, 'F', 238), +(94431, 'Evette', 1967, 'F', 237), +(94432, 'Janell', 1967, 'F', 236), +(94433, 'Robbin', 1967, 'F', 236), +(94434, 'Juli', 1967, 'F', 235), +(94435, 'Leisa', 1967, 'F', 235), +(94436, 'Cora', 1967, 'F', 234), +(94437, 'Hilary', 1967, 'F', 234), +(94438, 'Ernestine', 1967, 'F', 232), +(94439, 'Selina', 1967, 'F', 232), +(94440, 'Vikki', 1967, 'F', 232), +(94441, 'Adrian', 1967, 'F', 231), +(94442, 'Geri', 1967, 'F', 231), +(94443, 'Brigitte', 1967, 'F', 229), +(94444, 'Pamala', 1967, 'F', 229), +(94445, 'Danita', 1967, 'F', 228), +(94446, 'Harriet', 1967, 'F', 228), +(94447, 'Marguerite', 1967, 'F', 228), +(94448, 'Natasha', 1967, 'F', 228), +(94449, 'Robbie', 1967, 'F', 228), +(94450, 'Dawna', 1967, 'F', 227), +(94451, 'Latanya', 1967, 'F', 227), +(94452, 'Mara', 1967, 'F', 227), +(94453, 'Judi', 1967, 'F', 226), +(94454, 'Antonia', 1967, 'F', 225), +(94455, 'Jacquline', 1967, 'F', 222), +(94456, 'Alana', 1967, 'F', 221), +(94457, 'Malissa', 1967, 'F', 221), +(94458, 'Whitney', 1967, 'F', 221), +(94459, 'Charmaine', 1967, 'F', 220), +(94460, 'Roseann', 1967, 'F', 220), +(94461, 'Anissa', 1967, 'F', 219), +(94462, 'Sharron', 1967, 'F', 219), +(94463, 'Patrica', 1967, 'F', 218), +(94464, 'Clarissa', 1967, 'F', 217), +(94465, 'Jeanie', 1967, 'F', 217), +(94466, 'Teressa', 1967, 'F', 217), +(94467, 'Valencia', 1967, 'F', 216), +(94468, 'Amie', 1967, 'F', 215), +(94469, 'Laverne', 1967, 'F', 215), +(94470, 'Lawanda', 1967, 'F', 214), +(94471, 'Gabrielle', 1967, 'F', 213), +(94472, 'Graciela', 1967, 'F', 213), +(94473, 'Marissa', 1967, 'F', 213), +(94474, 'Althea', 1967, 'F', 212), +(94475, 'Maggie', 1967, 'F', 212), +(94476, 'Aileen', 1967, 'F', 210), +(94477, 'Danna', 1967, 'F', 210), +(94478, 'Eve', 1967, 'F', 210), +(94479, 'Roni', 1967, 'F', 210), +(94480, 'Susanna', 1967, 'F', 210), +(94481, 'Melodie', 1967, 'F', 209), +(94482, 'Venus', 1967, 'F', 208), +(94483, 'Gale', 1967, 'F', 206), +(94484, 'Tasha', 1967, 'F', 206), +(94485, 'Valeria', 1967, 'F', 206), +(94486, 'Carmela', 1967, 'F', 205), +(94487, 'Frankie', 1967, 'F', 205), +(94488, 'Johnna', 1967, 'F', 205), +(94489, 'Johnnie', 1967, 'F', 205), +(94490, 'Tana', 1967, 'F', 205), +(94491, 'Viola', 1967, 'F', 205), +(94492, 'Tena', 1967, 'F', 204), +(94493, 'Libby', 1967, 'F', 203), +(94494, 'Luann', 1967, 'F', 203), +(94495, 'Jeanna', 1967, 'F', 202), +(94496, 'Renita', 1967, 'F', 202), +(94497, 'Rosetta', 1967, 'F', 202), +(94498, 'Eunice', 1967, 'F', 201), +(94499, 'Genevieve', 1967, 'F', 201), +(94500, 'Alberta', 1967, 'F', 200), +(94501, 'Cathryn', 1967, 'F', 200), +(94502, 'Claudette', 1967, 'F', 200), +(94503, 'Rosanne', 1967, 'F', 200), +(94504, 'Cindi', 1967, 'F', 199), +(94505, 'Elsie', 1967, 'F', 199), +(94506, 'Lashawn', 1967, 'F', 199), +(94507, 'Lenore', 1967, 'F', 198), +(94508, 'Lizette', 1967, 'F', 198), +(94509, 'Maryellen', 1967, 'F', 197), +(94510, 'Nellie', 1967, 'F', 197), +(94511, 'Susana', 1967, 'F', 197), +(94512, 'Caren', 1967, 'F', 196), +(94513, 'Helena', 1967, 'F', 196), +(94514, 'Mandy', 1967, 'F', 196), +(94515, 'Alissa', 1967, 'F', 195), +(94516, 'Agnes', 1967, 'F', 193), +(94517, 'Richelle', 1967, 'F', 193), +(94518, 'Antionette', 1967, 'F', 192), +(94519, 'Myrna', 1967, 'F', 192), +(94520, 'Rosalinda', 1967, 'F', 192), +(94521, 'Roslyn', 1967, 'F', 192), +(94522, 'Adrianne', 1967, 'F', 191), +(94523, 'Leanna', 1967, 'F', 190), +(94524, 'Charla', 1967, 'F', 189), +(94525, 'Ivette', 1967, 'F', 189), +(94526, 'Georgina', 1967, 'F', 188), +(94527, 'Angelique', 1967, 'F', 187), +(94528, 'Dara', 1967, 'F', 187), +(94529, 'Lola', 1967, 'F', 187), +(94530, 'Sheree', 1967, 'F', 187), +(94531, 'Anastasia', 1967, 'F', 186), +(94532, 'Laureen', 1967, 'F', 186), +(94533, 'William', 1967, 'F', 186), +(94534, 'Alexis', 1967, 'F', 185), +(94535, 'Bessie', 1967, 'F', 185), +(94536, 'Helene', 1967, 'F', 185), +(94537, 'Janel', 1967, 'F', 185), +(94538, 'Juliet', 1967, 'F', 185), +(94539, 'Dorothea', 1967, 'F', 184), +(94540, 'Kathi', 1967, 'F', 184), +(94541, 'Jeana', 1967, 'F', 183), +(94542, 'Josette', 1967, 'F', 182), +(94543, 'Aida', 1967, 'F', 181), +(94544, 'Carlene', 1967, 'F', 181), +(94545, 'Georgette', 1967, 'F', 181), +(94546, 'Deloris', 1967, 'F', 180), +(94547, 'Shonda', 1967, 'F', 180), +(94548, 'Tresa', 1967, 'F', 180), +(94549, 'Gay', 1967, 'F', 178), +(94550, 'Lorene', 1967, 'F', 176), +(94551, 'Pearl', 1967, 'F', 176), +(94552, 'Ava', 1967, 'F', 175), +(94553, 'Brandi', 1967, 'F', 175), +(94554, 'Lissette', 1967, 'F', 175), +(94555, 'Mattie', 1967, 'F', 175), +(94556, 'Minnie', 1967, 'F', 175), +(94557, 'Cherry', 1967, 'F', 174), +(94558, 'Corinna', 1967, 'F', 174), +(94559, 'Estella', 1967, 'F', 174), +(94560, 'Sherie', 1967, 'F', 174), +(94561, 'Trena', 1967, 'F', 174), +(94562, 'Dona', 1967, 'F', 173), +(94563, 'Lanette', 1967, 'F', 173), +(94564, 'Krystal', 1967, 'F', 172), +(94565, 'Beatriz', 1967, 'F', 171), +(94566, 'Demetria', 1967, 'F', 171), +(94567, 'Kate', 1967, 'F', 171), +(94568, 'Lou', 1967, 'F', 171), +(94569, 'Alisha', 1967, 'F', 169), +(94570, 'Kathrine', 1967, 'F', 169), +(94571, 'Lavonne', 1967, 'F', 169), +(94572, 'Maryanne', 1967, 'F', 169), +(94573, 'Noemi', 1967, 'F', 169), +(94574, 'Janeen', 1967, 'F', 168), +(94575, 'Dale', 1967, 'F', 167), +(94576, 'Miranda', 1967, 'F', 167), +(94577, 'Roxann', 1967, 'F', 167), +(94578, 'Adriane', 1967, 'F', 166), +(94579, 'Richard', 1967, 'F', 166), +(94580, 'Sharla', 1967, 'F', 166), +(94581, 'Mercedes', 1967, 'F', 164), +(94582, 'Reba', 1967, 'F', 164), +(94583, 'Athena', 1967, 'F', 163), +(94584, 'Aurora', 1967, 'F', 163), +(94585, 'Barbie', 1967, 'F', 163), +(94586, 'Juliana', 1967, 'F', 163), +(94587, 'Lisette', 1967, 'F', 163), +(94588, 'Camilla', 1967, 'F', 162), +(94589, 'Dedra', 1967, 'F', 162), +(94590, 'Kathie', 1967, 'F', 162), +(94591, 'Abby', 1967, 'F', 161), +(94592, 'Collette', 1967, 'F', 161), +(94593, 'Corrine', 1967, 'F', 161), +(94594, 'Flora', 1967, 'F', 161), +(94595, 'Freda', 1967, 'F', 161), +(94596, 'Glenna', 1967, 'F', 161), +(94597, 'Migdalia', 1967, 'F', 161), +(94598, 'Rhoda', 1967, 'F', 161), +(94599, 'Windy', 1967, 'F', 161), +(94600, 'Carolina', 1967, 'F', 160), +(94601, 'Casandra', 1967, 'F', 159), +(94602, 'Dixie', 1967, 'F', 159), +(94603, 'Kami', 1967, 'F', 159), +(94604, 'Maricela', 1967, 'F', 159), +(94605, 'Machelle', 1967, 'F', 158), +(94606, 'Milagros', 1967, 'F', 158), +(94607, 'Buffy', 1967, 'F', 157), +(94608, 'Debby', 1967, 'F', 157), +(94609, 'Deneen', 1967, 'F', 157), +(94610, 'Diann', 1967, 'F', 157), +(94611, 'Gerri', 1967, 'F', 157), +(94612, 'Anthony', 1967, 'F', 156), +(94613, 'Edwina', 1967, 'F', 156), +(94614, 'Monika', 1967, 'F', 156), +(94615, 'Starla', 1967, 'F', 156), +(94616, 'Elissa', 1967, 'F', 155), +(94617, 'Hillary', 1967, 'F', 155), +(94618, 'Brandy', 1967, 'F', 154), +(94619, 'Brigette', 1967, 'F', 154), +(94620, 'Minerva', 1967, 'F', 154), +(94621, 'Charisse', 1967, 'F', 153), +(94622, 'Ilene', 1967, 'F', 153), +(94623, 'Nannette', 1967, 'F', 152), +(94624, 'Violet', 1967, 'F', 152), +(94625, 'Andra', 1967, 'F', 151), +(94626, 'Darci', 1967, 'F', 151), +(94627, 'Kimberli', 1967, 'F', 150), +(94628, 'Lesia', 1967, 'F', 150), +(94629, 'Nita', 1967, 'F', 150), +(94630, 'Roxanna', 1967, 'F', 150), +(94631, 'Clare', 1967, 'F', 149), +(94632, 'Dorene', 1967, 'F', 149), +(94633, 'Karie', 1967, 'F', 149), +(94634, 'Elvira', 1967, 'F', 148), +(94635, 'Esmeralda', 1967, 'F', 148), +(94636, 'Nichole', 1967, 'F', 148), +(94637, 'Stacia', 1967, 'F', 148), +(94638, 'Jaime', 1967, 'F', 147), +(94639, 'Mae', 1967, 'F', 147), +(94640, 'Mellissa', 1967, 'F', 147), +(94641, 'Rona', 1967, 'F', 147), +(94642, 'Shanda', 1967, 'F', 147), +(94643, 'Bettina', 1967, 'F', 146), +(94644, 'Inez', 1967, 'F', 146), +(94645, 'Lupe', 1967, 'F', 146), +(94646, 'Lyn', 1967, 'F', 146), +(94647, 'Rosanna', 1967, 'F', 146), +(94648, 'Candi', 1967, 'F', 145), +(94649, 'Dominique', 1967, 'F', 145), +(94650, 'Josefina', 1967, 'F', 145), +(94651, 'Keisha', 1967, 'F', 145), +(94652, 'Lesli', 1967, 'F', 145), +(94653, 'Ronna', 1967, 'F', 145), +(94654, 'Chrystal', 1967, 'F', 144), +(94655, 'Francesca', 1967, 'F', 144), +(94656, 'Merry', 1967, 'F', 144), +(94657, 'Tamala', 1967, 'F', 144), +(94658, 'Valorie', 1967, 'F', 144), +(94659, 'Alyssa', 1967, 'F', 143), +(94660, 'Carmella', 1967, 'F', 143), +(94661, 'Mark', 1967, 'F', 143), +(94662, 'Gracie', 1967, 'F', 142), +(94663, 'Tori', 1967, 'F', 142), +(94664, 'Angeline', 1967, 'F', 141), +(94665, 'Leila', 1967, 'F', 141), +(94666, 'Madonna', 1967, 'F', 141), +(94667, 'Mollie', 1967, 'F', 141), +(94668, 'Hollie', 1967, 'F', 140), +(94669, 'Loriann', 1967, 'F', 140), +(94670, 'Suzan', 1967, 'F', 140), +(94671, 'Holli', 1967, 'F', 139), +(94672, 'Karol', 1967, 'F', 139), +(94673, 'Wende', 1967, 'F', 139), +(94674, 'Josie', 1967, 'F', 138), +(94675, 'Kecia', 1967, 'F', 138), +(94676, 'Tawana', 1967, 'F', 138), +(94677, 'Tawnya', 1967, 'F', 138), +(94678, 'Thomas', 1967, 'F', 138), +(94679, 'Alecia', 1967, 'F', 137), +(94680, 'Kandy', 1967, 'F', 137), +(94681, 'Marni', 1967, 'F', 137), +(94682, 'Phoebe', 1967, 'F', 137), +(94683, 'Romona', 1967, 'F', 137), +(94684, 'Twila', 1967, 'F', 137), +(94685, 'Elva', 1967, 'F', 136), +(94686, 'Juana', 1967, 'F', 136), +(94687, 'Kandi', 1967, 'F', 136), +(94688, 'Milissa', 1967, 'F', 136), +(94689, 'Vickey', 1967, 'F', 136), +(94690, 'Magdalena', 1967, 'F', 135), +(94691, 'Sallie', 1967, 'F', 135), +(94692, 'Ivy', 1967, 'F', 134), +(94693, 'Kaye', 1967, 'F', 134), +(94694, 'Pennie', 1967, 'F', 134), +(94695, 'Roxane', 1967, 'F', 134), +(94696, 'Suzanna', 1967, 'F', 134), +(94697, 'Treva', 1967, 'F', 134), +(94698, 'Yolonda', 1967, 'F', 134), +(94699, 'Angelita', 1967, 'F', 133), +(94700, 'Annamarie', 1967, 'F', 133), +(94701, 'Danelle', 1967, 'F', 133), +(94702, 'Dori', 1967, 'F', 133), +(94703, 'Gabriela', 1967, 'F', 133), +(94704, 'Liz', 1967, 'F', 133), +(94705, 'Misti', 1967, 'F', 133), +(94706, 'Tangela', 1967, 'F', 133), +(94707, 'Delisa', 1967, 'F', 132), +(94708, 'Kayla', 1967, 'F', 132), +(94709, 'Renea', 1967, 'F', 132), +(94710, 'Letha', 1967, 'F', 131), +(94711, 'Christopher', 1967, 'F', 130), +(94712, 'Jewel', 1967, 'F', 130), +(94713, 'Luanne', 1967, 'F', 130), +(94714, 'Teena', 1967, 'F', 130), +(94715, 'Tisha', 1967, 'F', 130), +(94716, 'Cassie', 1967, 'F', 129), +(94717, 'Lorinda', 1967, 'F', 129), +(94718, 'Cherri', 1967, 'F', 128), +(94719, 'Gidget', 1967, 'F', 128), +(94720, 'Portia', 1967, 'F', 128), +(94721, 'Sydney', 1967, 'F', 128), +(94722, 'Timothy', 1967, 'F', 128), +(94723, 'Bernadine', 1967, 'F', 127), +(94724, 'Larissa', 1967, 'F', 127), +(94725, 'Carin', 1967, 'F', 126), +(94726, 'Lila', 1967, 'F', 126), +(94727, 'Carleen', 1967, 'F', 125), +(94728, 'Jonna', 1967, 'F', 125), +(94729, 'Maryjo', 1967, 'F', 125), +(94730, 'Melonie', 1967, 'F', 125), +(94731, 'Mimi', 1967, 'F', 125), +(94732, 'Nanci', 1967, 'F', 125), +(94733, 'Adriene', 1967, 'F', 124), +(94734, 'Dorinda', 1967, 'F', 124), +(94735, 'Juliann', 1967, 'F', 124), +(94736, 'Petra', 1967, 'F', 124), +(94737, 'Charles', 1967, 'F', 123), +(94738, 'Hannah', 1967, 'F', 123), +(94739, 'Karri', 1967, 'F', 123), +(94740, 'Maribeth', 1967, 'F', 123), +(94741, 'Alfreda', 1967, 'F', 122), +(94742, 'Andria', 1967, 'F', 122), +(94743, 'Consuelo', 1967, 'F', 122), +(94744, 'Francis', 1967, 'F', 122), +(94745, 'Joseph', 1967, 'F', 122), +(94746, 'Darcie', 1967, 'F', 121), +(94747, 'Fannie', 1967, 'F', 121), +(94748, 'Cherrie', 1967, 'F', 120), +(94749, 'Alyson', 1967, 'F', 119), +(94750, 'Catrina', 1967, 'F', 119), +(94751, 'Kimberely', 1967, 'F', 119), +(94752, 'Leesa', 1967, 'F', 119), +(94753, 'Meghan', 1967, 'F', 119), +(94754, 'Esperanza', 1967, 'F', 118), +(94755, 'Kimberlie', 1967, 'F', 118), +(94756, 'Rosario', 1967, 'F', 118), +(94757, 'Joell', 1967, 'F', 117), +(94758, 'Kevin', 1967, 'F', 117), +(94759, 'Adele', 1967, 'F', 116), +(94760, 'Bethann', 1967, 'F', 116), +(94761, 'Jeffrey', 1967, 'F', 116), +(94762, 'Dolly', 1967, 'F', 115), +(94763, 'Mayra', 1967, 'F', 115), +(94764, 'Sebrina', 1967, 'F', 115), +(94765, 'Casey', 1967, 'F', 114), +(94766, 'Ericka', 1967, 'F', 114), +(94767, 'Henrietta', 1967, 'F', 114), +(94768, 'Latricia', 1967, 'F', 114), +(94769, 'Lucretia', 1967, 'F', 114), +(94770, 'Terese', 1967, 'F', 114), +(94771, 'Towanda', 1967, 'F', 114), +(94772, 'Christal', 1967, 'F', 113), +(94773, 'Darleen', 1967, 'F', 113), +(94774, 'Linette', 1967, 'F', 113), +(94775, 'Loren', 1967, 'F', 113), +(94776, 'Michaela', 1967, 'F', 113), +(94777, 'Susannah', 1967, 'F', 113), +(94778, 'Zina', 1967, 'F', 113), +(94779, 'Cristy', 1967, 'F', 112), +(94780, 'Hattie', 1967, 'F', 112), +(94781, 'Lina', 1967, 'F', 112), +(94782, 'Pattie', 1967, 'F', 112), +(94783, 'Shiela', 1967, 'F', 112), +(94784, 'Cary', 1967, 'F', 111), +(94785, 'Evonne', 1967, 'F', 111), +(94786, 'Fay', 1967, 'F', 111), +(94787, 'Ruthie', 1967, 'F', 111), +(94788, 'Jerry', 1967, 'F', 110), +(94789, 'Louisa', 1967, 'F', 110), +(94790, 'Mariann', 1967, 'F', 110), +(94791, 'Cherise', 1967, 'F', 109), +(94792, 'Ronnie', 1967, 'F', 109), +(94793, 'Tanja', 1967, 'F', 109), +(94794, 'Cristine', 1967, 'F', 108), +(94795, 'Marlena', 1967, 'F', 108), +(94796, 'Shaun', 1967, 'F', 108), +(94797, 'Suzy', 1967, 'F', 108), +(94798, 'Arleen', 1967, 'F', 107), +(94799, 'Carie', 1967, 'F', 107), +(94800, 'Leilani', 1967, 'F', 107), +(94801, 'Penni', 1967, 'F', 107), +(94802, 'Sharyn', 1967, 'F', 107), +(94803, 'Steven', 1967, 'F', 107), +(94804, 'Carri', 1967, 'F', 106), +(94805, 'Deedee', 1967, 'F', 106), +(94806, 'Melina', 1967, 'F', 106), +(94807, 'Tiffani', 1967, 'F', 106), +(94808, 'Tommie', 1967, 'F', 106), +(94809, 'Tressa', 1967, 'F', 106), +(94810, 'Zelda', 1967, 'F', 106), +(94811, 'Cathrine', 1967, 'F', 105), +(94812, 'Ginny', 1967, 'F', 105), +(94813, 'Marva', 1967, 'F', 105), +(94814, 'Stephany', 1967, 'F', 105), +(94815, 'Brian', 1967, 'F', 104), +(94816, 'Christian', 1967, 'F', 104), +(94817, 'Jacquelin', 1967, 'F', 104), +(94818, 'Melba', 1967, 'F', 104), +(94819, 'Octavia', 1967, 'F', 104), +(94820, 'Sarita', 1967, 'F', 104), +(94821, 'Sherryl', 1967, 'F', 104), +(94822, 'Sofia', 1967, 'F', 104), +(94823, 'Tamie', 1967, 'F', 104), +(94824, 'Avis', 1967, 'F', 103), +(94825, 'Donita', 1967, 'F', 103), +(94826, 'Joellen', 1967, 'F', 103), +(94827, 'Lela', 1967, 'F', 103), +(94828, 'Marianna', 1967, 'F', 103), +(94829, 'Rosita', 1967, 'F', 103), +(94830, 'Sybil', 1967, 'F', 103), +(94831, 'Trudi', 1967, 'F', 103), +(94832, 'Tyra', 1967, 'F', 103), +(94833, 'Anisa', 1967, 'F', 102), +(94834, 'Jacki', 1967, 'F', 102), +(94835, 'Kirstin', 1967, 'F', 102), +(94836, 'Lani', 1967, 'F', 102), +(94837, 'Melissia', 1967, 'F', 102), +(94838, 'Sadie', 1967, 'F', 102), +(94839, 'Eliza', 1967, 'F', 101), +(94840, 'Twyla', 1967, 'F', 101), +(94841, 'Winifred', 1967, 'F', 101), +(94842, 'Edie', 1967, 'F', 100), +(94843, 'Elaina', 1967, 'F', 100), +(94844, 'Juliette', 1967, 'F', 100), +(94845, 'Katheryn', 1967, 'F', 100), +(94846, 'Loraine', 1967, 'F', 100), +(94847, 'Nicki', 1967, 'F', 100), +(94848, 'Ronald', 1967, 'F', 100), +(94849, 'Michael', 1967, 'M', 82454), +(94850, 'David', 1967, 'M', 66805), +(94851, 'James', 1967, 'M', 61704), +(94852, 'John', 1967, 'M', 61629), +(94853, 'Robert', 1967, 'M', 56385), +(94854, 'William', 1967, 'M', 37623), +(94855, 'Mark', 1967, 'M', 34938), +(94856, 'Richard', 1967, 'M', 33592), +(94857, 'Christopher', 1967, 'M', 29437), +(94858, 'Brian', 1967, 'M', 28664), +(94859, 'Timothy', 1967, 'M', 28596), +(94860, 'Thomas', 1967, 'M', 28285), +(94861, 'Jeffrey', 1967, 'M', 28096), +(94862, 'Steven', 1967, 'M', 27040), +(94863, 'Joseph', 1967, 'M', 25941), +(94864, 'Scott', 1967, 'M', 25554), +(94865, 'Kevin', 1967, 'M', 24622), +(94866, 'Paul', 1967, 'M', 22843), +(94867, 'Daniel', 1967, 'M', 22219), +(94868, 'Charles', 1967, 'M', 21295), +(94869, 'Anthony', 1967, 'M', 20888), +(94870, 'Kenneth', 1967, 'M', 19278), +(94871, 'Eric', 1967, 'M', 17829), +(94872, 'Ronald', 1967, 'M', 16442), +(94873, 'Gregory', 1967, 'M', 15790), +(94874, 'Stephen', 1967, 'M', 15088), +(94875, 'Donald', 1967, 'M', 14223), +(94876, 'Matthew', 1967, 'M', 13582), +(94877, 'Todd', 1967, 'M', 13453), +(94878, 'Patrick', 1967, 'M', 12976), +(94879, 'Edward', 1967, 'M', 12666), +(94880, 'Gary', 1967, 'M', 12616), +(94881, 'Douglas', 1967, 'M', 11430), +(94882, 'Keith', 1967, 'M', 11009), +(94883, 'Andrew', 1967, 'M', 9973), +(94884, 'George', 1967, 'M', 9704), +(94885, 'Rodney', 1967, 'M', 8436), +(94886, 'Larry', 1967, 'M', 8329), +(94887, 'Peter', 1967, 'M', 8327), +(94888, 'Troy', 1967, 'M', 7935), +(94889, 'Jerry', 1967, 'M', 7780), +(94890, 'Terry', 1967, 'M', 7687), +(94891, 'Dennis', 1967, 'M', 7646), +(94892, 'Sean', 1967, 'M', 7514), +(94893, 'Frank', 1967, 'M', 7429), +(94894, 'Craig', 1967, 'M', 7313), +(94895, 'Jeffery', 1967, 'M', 7230), +(94896, 'Raymond', 1967, 'M', 7070), +(94897, 'Randy', 1967, 'M', 6794), +(94898, 'Tony', 1967, 'M', 6224), +(94899, 'Shawn', 1967, 'M', 6141), +(94900, 'Bryan', 1967, 'M', 6017), +(94901, 'Roger', 1967, 'M', 5722), +(94902, 'Jason', 1967, 'M', 5336), +(94903, 'Bruce', 1967, 'M', 5071), +(94904, 'Jonathan', 1967, 'M', 4921), +(94905, 'Carl', 1967, 'M', 4895), +(94906, 'Russell', 1967, 'M', 4888), +(94907, 'Gerald', 1967, 'M', 4873), +(94908, 'Chris', 1967, 'M', 4621), +(94909, 'Alan', 1967, 'M', 4567), +(94910, 'Wayne', 1967, 'M', 4468), +(94911, 'Darren', 1967, 'M', 4440), +(94912, 'Jose', 1967, 'M', 4414), +(94913, 'Vincent', 1967, 'M', 4394), +(94914, 'Bradley', 1967, 'M', 4343), +(94915, 'Lawrence', 1967, 'M', 4343), +(94916, 'Danny', 1967, 'M', 4312), +(94917, 'Samuel', 1967, 'M', 4236), +(94918, 'Johnny', 1967, 'M', 4167), +(94919, 'Jon', 1967, 'M', 4163), +(94920, 'Randall', 1967, 'M', 4070), +(94921, 'Phillip', 1967, 'M', 4054), +(94922, 'Jimmy', 1967, 'M', 4024), +(94923, 'Ricky', 1967, 'M', 4011), +(94924, 'Billy', 1967, 'M', 3983), +(94925, 'Curtis', 1967, 'M', 3968), +(94926, 'Dean', 1967, 'M', 3917), +(94927, 'Steve', 1967, 'M', 3909), +(94928, 'Martin', 1967, 'M', 3835), +(94929, 'Walter', 1967, 'M', 3813), +(94930, 'Philip', 1967, 'M', 3796), +(94931, 'Bobby', 1967, 'M', 3780), +(94932, 'Mike', 1967, 'M', 3758), +(94933, 'Joe', 1967, 'M', 3717), +(94934, 'Darrell', 1967, 'M', 3652), +(94935, 'Jay', 1967, 'M', 3619), +(94936, 'Jeff', 1967, 'M', 3593), +(94937, 'Dale', 1967, 'M', 3536), +(94938, 'Joel', 1967, 'M', 3478), +(94939, 'Glenn', 1967, 'M', 3444), +(94940, 'Willie', 1967, 'M', 3388), +(94941, 'Henry', 1967, 'M', 3333), +(94942, 'Arthur', 1967, 'M', 3309), +(94943, 'Roy', 1967, 'M', 3274), +(94944, 'Barry', 1967, 'M', 3206), +(94945, 'Victor', 1967, 'M', 3197), +(94946, 'Tracy', 1967, 'M', 3171), +(94947, 'Albert', 1967, 'M', 3166), +(94948, 'Allen', 1967, 'M', 3125), +(94949, 'Marc', 1967, 'M', 3103), +(94950, 'Kelly', 1967, 'M', 3099), +(94951, 'Lee', 1967, 'M', 2961), +(94952, 'Harold', 1967, 'M', 2960), +(94953, 'Chad', 1967, 'M', 2946), +(94954, 'Aaron', 1967, 'M', 2910), +(94955, 'Louis', 1967, 'M', 2900), +(94956, 'Brent', 1967, 'M', 2862), +(94957, 'Darryl', 1967, 'M', 2825), +(94958, 'Frederick', 1967, 'M', 2814), +(94959, 'Brett', 1967, 'M', 2793), +(94960, 'Jack', 1967, 'M', 2788), +(94961, 'Kurt', 1967, 'M', 2747), +(94962, 'Ronnie', 1967, 'M', 2709), +(94963, 'Micheal', 1967, 'M', 2704), +(94964, 'Tim', 1967, 'M', 2624), +(94965, 'Ralph', 1967, 'M', 2550), +(94966, 'Adam', 1967, 'M', 2530), +(94967, 'Benjamin', 1967, 'M', 2510), +(94968, 'Derrick', 1967, 'M', 2503), +(94969, 'Juan', 1967, 'M', 2473), +(94970, 'Eugene', 1967, 'M', 2453), +(94971, 'Derek', 1967, 'M', 2447), +(94972, 'Marvin', 1967, 'M', 2428), +(94973, 'Leonard', 1967, 'M', 2415), +(94974, 'Reginald', 1967, 'M', 2403), +(94975, 'Tommy', 1967, 'M', 2360), +(94976, 'Ernest', 1967, 'M', 2348), +(94977, 'Nicholas', 1967, 'M', 2294), +(94978, 'Carlos', 1967, 'M', 2293), +(94979, 'Howard', 1967, 'M', 2286), +(94980, 'Eddie', 1967, 'M', 2278), +(94981, 'Erik', 1967, 'M', 2249), +(94982, 'Stanley', 1967, 'M', 2244), +(94983, 'Jesse', 1967, 'M', 2185), +(94984, 'Dwayne', 1967, 'M', 2156), +(94985, 'Andre', 1967, 'M', 2153), +(94986, 'Kyle', 1967, 'M', 2144), +(94987, 'Duane', 1967, 'M', 2110), +(94988, 'Greg', 1967, 'M', 2100), +(94989, 'Darrin', 1967, 'M', 2029), +(94990, 'Darin', 1967, 'M', 2017), +(94991, 'Kirk', 1967, 'M', 1995), +(94992, 'Antonio', 1967, 'M', 1983), +(94993, 'Shane', 1967, 'M', 1976), +(94994, 'Norman', 1967, 'M', 1952), +(94995, 'Ryan', 1967, 'M', 1931), +(94996, 'Harry', 1967, 'M', 1876), +(94997, 'Theodore', 1967, 'M', 1861), +(94998, 'Melvin', 1967, 'M', 1841), +(94999, 'Jim', 1967, 'M', 1809), +(95000, 'Lance', 1967, 'M', 1805), +(95001, 'Jerome', 1967, 'M', 1795), +(95002, 'Calvin', 1967, 'M', 1783), +(95003, 'Brad', 1967, 'M', 1770), +(95004, 'Luis', 1967, 'M', 1743), +(95005, 'Glen', 1967, 'M', 1711), +(95006, 'Karl', 1967, 'M', 1697), +(95007, 'Mitchell', 1967, 'M', 1695), +(95008, 'Fred', 1967, 'M', 1690), +(95009, 'Edwin', 1967, 'M', 1663), +(95010, 'Stacy', 1967, 'M', 1660), +(95011, 'Earl', 1967, 'M', 1652), +(95012, 'Alfred', 1967, 'M', 1634), +(95013, 'Ray', 1967, 'M', 1620), +(95014, 'Travis', 1967, 'M', 1603), +(95015, 'Wesley', 1967, 'M', 1591), +(95016, 'Rick', 1967, 'M', 1589), +(95017, 'Francis', 1967, 'M', 1586), +(95018, 'Manuel', 1967, 'M', 1575), +(95019, 'Tyrone', 1967, 'M', 1566), +(95020, 'Warren', 1967, 'M', 1554), +(95021, 'Maurice', 1967, 'M', 1528), +(95022, 'Clifford', 1967, 'M', 1516), +(95023, 'Tom', 1967, 'M', 1491), +(95024, 'Don', 1967, 'M', 1474), +(95025, 'Marcus', 1967, 'M', 1473), +(95026, 'Alexander', 1967, 'M', 1464), +(95027, 'Bernard', 1967, 'M', 1443), +(95028, 'Nathan', 1967, 'M', 1435), +(95029, 'Kent', 1967, 'M', 1394), +(95030, 'Clarence', 1967, 'M', 1378), +(95031, 'Daryl', 1967, 'M', 1343), +(95032, 'Dan', 1967, 'M', 1329), +(95033, 'Christian', 1967, 'M', 1324), +(95034, 'Lonnie', 1967, 'M', 1324), +(95035, 'Mario', 1967, 'M', 1312), +(95036, 'Ricardo', 1967, 'M', 1296), +(95037, 'Leroy', 1967, 'M', 1277), +(95038, 'Bill', 1967, 'M', 1276), +(95039, 'Gilbert', 1967, 'M', 1269), +(95040, 'Wade', 1967, 'M', 1245), +(95041, 'Alvin', 1967, 'M', 1224), +(95042, 'Franklin', 1967, 'M', 1200), +(95043, 'Leon', 1967, 'M', 1198), +(95044, 'Byron', 1967, 'M', 1180), +(95045, 'Ruben', 1967, 'M', 1175), +(95046, 'Shannon', 1967, 'M', 1170), +(95047, 'Guy', 1967, 'M', 1167), +(95048, 'Neil', 1967, 'M', 1157), +(95049, 'Herbert', 1967, 'M', 1149), +(95050, 'Vernon', 1967, 'M', 1145), +(95051, 'Roberto', 1967, 'M', 1143), +(95052, 'Jesus', 1967, 'M', 1141), +(95053, 'Alex', 1967, 'M', 1130), +(95054, 'Kerry', 1967, 'M', 1124), +(95055, 'Gordon', 1967, 'M', 1116), +(95056, 'Lloyd', 1967, 'M', 1081), +(95057, 'Gene', 1967, 'M', 1068), +(95058, 'Joey', 1967, 'M', 1068), +(95059, 'Terrence', 1967, 'M', 1065), +(95060, 'Leslie', 1967, 'M', 1064), +(95061, 'Lewis', 1967, 'M', 1061), +(95062, 'Kelvin', 1967, 'M', 1058), +(95063, 'Miguel', 1967, 'M', 1058), +(95064, 'Jody', 1967, 'M', 1057), +(95065, 'Dana', 1967, 'M', 1032), +(95066, 'Jamie', 1967, 'M', 1030), +(95067, 'Stacey', 1967, 'M', 1021), +(95068, 'Perry', 1967, 'M', 1017), +(95069, 'Roderick', 1967, 'M', 1008), +(95070, 'Terrance', 1967, 'M', 991), +(95071, 'Dwight', 1967, 'M', 985), +(95072, 'Damon', 1967, 'M', 982), +(95073, 'Marty', 1967, 'M', 981), +(95074, 'Nathaniel', 1967, 'M', 977), +(95075, 'Timmy', 1967, 'M', 966), +(95076, 'Stuart', 1967, 'M', 962), +(95077, 'Gregg', 1967, 'M', 958), +(95078, 'Ted', 1967, 'M', 952), +(95079, 'Francisco', 1967, 'M', 947), +(95080, 'Andy', 1967, 'M', 941), +(95081, 'Hector', 1967, 'M', 934), +(95082, 'Oscar', 1967, 'M', 934), +(95083, 'Clinton', 1967, 'M', 908), +(95084, 'Geoffrey', 1967, 'M', 885), +(95085, 'Floyd', 1967, 'M', 869), +(95086, 'Jimmie', 1967, 'M', 866), +(95087, 'Allan', 1967, 'M', 859), +(95088, 'Raul', 1967, 'M', 852), +(95089, 'Ron', 1967, 'M', 843), +(95090, 'Ramon', 1967, 'M', 838), +(95091, 'Donnie', 1967, 'M', 837), +(95092, 'Bret', 1967, 'M', 836), +(95093, 'Jorge', 1967, 'M', 825), +(95094, 'Kenny', 1967, 'M', 820), +(95095, 'Adrian', 1967, 'M', 816), +(95096, 'Jackie', 1967, 'M', 808), +(95097, 'Charlie', 1967, 'M', 806), +(95098, 'Trevor', 1967, 'M', 803), +(95099, 'Roland', 1967, 'M', 799), +(95100, 'Javier', 1967, 'M', 797), +(95101, 'Jessie', 1967, 'M', 797), +(95102, 'Ross', 1967, 'M', 797), +(95103, 'Fredrick', 1967, 'M', 789), +(95104, 'Nelson', 1967, 'M', 789), +(95105, 'Arnold', 1967, 'M', 778), +(95106, 'Angel', 1967, 'M', 774), +(95107, 'Ian', 1967, 'M', 773), +(95108, 'Dave', 1967, 'M', 772), +(95109, 'Leo', 1967, 'M', 769), +(95110, 'Freddie', 1967, 'M', 767), +(95111, 'Terence', 1967, 'M', 767), +(95112, 'Rene', 1967, 'M', 765), +(95113, 'Rickey', 1967, 'M', 765), +(95114, 'Clayton', 1967, 'M', 745), +(95115, 'Johnnie', 1967, 'M', 742), +(95116, 'Neal', 1967, 'M', 742), +(95117, 'Pedro', 1967, 'M', 734), +(95118, 'Lester', 1967, 'M', 732), +(95119, 'Shaun', 1967, 'M', 724), +(95120, 'Cedric', 1967, 'M', 715), +(95121, 'Jaime', 1967, 'M', 714), +(95122, 'Milton', 1967, 'M', 712), +(95123, 'Matt', 1967, 'M', 708), +(95124, 'Nick', 1967, 'M', 683), +(95125, 'Marshall', 1967, 'M', 675), +(95126, 'Rafael', 1967, 'M', 670), +(95127, 'Wendell', 1967, 'M', 667), +(95128, 'Clifton', 1967, 'M', 666), +(95129, 'Gerard', 1967, 'M', 664), +(95130, 'Herman', 1967, 'M', 663), +(95131, 'Randal', 1967, 'M', 659), +(95132, 'Ken', 1967, 'M', 650), +(95133, 'Gabriel', 1967, 'M', 643), +(95134, 'Clyde', 1967, 'M', 639), +(95135, 'Angelo', 1967, 'M', 636), +(95136, 'Frankie', 1967, 'M', 631), +(95137, 'Robin', 1967, 'M', 631), +(95138, 'Trent', 1967, 'M', 631), +(95139, 'Cary', 1967, 'M', 629), +(95140, 'Justin', 1967, 'M', 628), +(95141, 'Doug', 1967, 'M', 624), +(95142, 'Harvey', 1967, 'M', 624), +(95143, 'Armando', 1967, 'M', 623), +(95144, 'Randolph', 1967, 'M', 614), +(95145, 'Carlton', 1967, 'M', 612), +(95146, 'Ivan', 1967, 'M', 610), +(95147, 'Sam', 1967, 'M', 610), +(95148, 'Bryant', 1967, 'M', 598), +(95149, 'Mathew', 1967, 'M', 595), +(95150, 'Sidney', 1967, 'M', 591), +(95151, 'Edgar', 1967, 'M', 589), +(95152, 'Fernando', 1967, 'M', 588), +(95153, 'Orlando', 1967, 'M', 588), +(95154, 'Rex', 1967, 'M', 583), +(95155, 'Grant', 1967, 'M', 578), +(95156, 'Scotty', 1967, 'M', 571), +(95157, 'Noel', 1967, 'M', 569), +(95158, 'Rudy', 1967, 'M', 568), +(95159, 'Joshua', 1967, 'M', 567), +(95160, 'Daren', 1967, 'M', 566), +(95161, 'Loren', 1967, 'M', 566), +(95162, 'Robbie', 1967, 'M', 563), +(95163, 'Bradford', 1967, 'M', 558), +(95164, 'Alberto', 1967, 'M', 556), +(95165, 'Ben', 1967, 'M', 555), +(95166, 'Tracey', 1967, 'M', 553), +(95167, 'Sammy', 1967, 'M', 549), +(95168, 'Everett', 1967, 'M', 542), +(95169, 'Cecil', 1967, 'M', 541), +(95170, 'Bart', 1967, 'M', 535), +(95171, 'Dominic', 1967, 'M', 535), +(95172, 'Chester', 1967, 'M', 533), +(95173, 'Bob', 1967, 'M', 532), +(95174, 'Alfredo', 1967, 'M', 526), +(95175, 'Mickey', 1967, 'M', 526), +(95176, 'Eduardo', 1967, 'M', 525), +(95177, 'Heath', 1967, 'M', 516), +(95178, 'Salvatore', 1967, 'M', 513), +(95179, 'Lorenzo', 1967, 'M', 512), +(95180, 'Scot', 1967, 'M', 511), +(95181, 'Dewayne', 1967, 'M', 510), +(95182, 'Curt', 1967, 'M', 506), +(95183, 'Claude', 1967, 'M', 505), +(95184, 'Casey', 1967, 'M', 503), +(95185, 'Hugh', 1967, 'M', 503), +(95186, 'Evan', 1967, 'M', 494), +(95187, 'Wallace', 1967, 'M', 487), +(95188, 'Felix', 1967, 'M', 486), +(95189, 'Garry', 1967, 'M', 485), +(95190, 'Brandon', 1967, 'M', 483), +(95191, 'Darrel', 1967, 'M', 483), +(95192, 'Clark', 1967, 'M', 470), +(95193, 'Corey', 1967, 'M', 465), +(95194, 'Julio', 1967, 'M', 465), +(95195, 'Erick', 1967, 'M', 461), +(95196, 'Preston', 1967, 'M', 460), +(95197, 'Kim', 1967, 'M', 456), +(95198, 'Enrique', 1967, 'M', 454), +(95199, 'Jacob', 1967, 'M', 452), +(95200, 'Teddy', 1967, 'M', 451), +(95201, 'Julian', 1967, 'M', 450), +(95202, 'Colin', 1967, 'M', 447), +(95203, 'Virgil', 1967, 'M', 447), +(95204, 'Brendan', 1967, 'M', 445), +(95205, 'Cory', 1967, 'M', 441), +(95206, 'Arturo', 1967, 'M', 440), +(95207, 'Lynn', 1967, 'M', 439), +(95208, 'Dexter', 1967, 'M', 436), +(95209, 'Marco', 1967, 'M', 436), +(95210, 'Malcolm', 1967, 'M', 430), +(95211, 'Toby', 1967, 'M', 430), +(95212, 'Blake', 1967, 'M', 423), +(95213, 'Clint', 1967, 'M', 421), +(95214, 'Tyler', 1967, 'M', 420), +(95215, 'Monte', 1967, 'M', 417), +(95216, 'Otis', 1967, 'M', 414), +(95217, 'Myron', 1967, 'M', 410), +(95218, 'Morris', 1967, 'M', 409), +(95219, 'Alonzo', 1967, 'M', 405), +(95220, 'Alton', 1967, 'M', 403), +(95221, 'Jeffry', 1967, 'M', 399), +(95222, 'Jeremy', 1967, 'M', 399), +(95223, 'Benny', 1967, 'M', 397), +(95224, 'Kendall', 1967, 'M', 396), +(95225, 'Max', 1967, 'M', 396), +(95226, 'Isaac', 1967, 'M', 395), +(95227, 'Willard', 1967, 'M', 395), +(95228, 'Seth', 1967, 'M', 394), +(95229, 'Sheldon', 1967, 'M', 391), +(95230, 'Darnell', 1967, 'M', 390), +(95231, 'Stephan', 1967, 'M', 390), +(95232, 'Demetrius', 1967, 'M', 385), +(95233, 'Alfonso', 1967, 'M', 381), +(95234, 'Earnest', 1967, 'M', 381), +(95235, 'Pete', 1967, 'M', 379), +(95236, 'Stewart', 1967, 'M', 379), +(95237, 'Drew', 1967, 'M', 377), +(95238, 'Lyle', 1967, 'M', 377), +(95239, 'Spencer', 1967, 'M', 377), +(95240, 'Jerald', 1967, 'M', 375), +(95241, 'Lamont', 1967, 'M', 375), +(95242, 'Chuck', 1967, 'M', 374), +(95243, 'Ira', 1967, 'M', 373), +(95244, 'Edmund', 1967, 'M', 370), +(95245, 'Sherman', 1967, 'M', 369), +(95246, 'Bennie', 1967, 'M', 368), +(95247, 'Scottie', 1967, 'M', 366), +(95248, 'Thad', 1967, 'M', 366), +(95249, 'Ty', 1967, 'M', 366), +(95250, 'Clay', 1967, 'M', 363), +(95251, 'Zachary', 1967, 'M', 361), +(95252, 'Dion', 1967, 'M', 360), +(95253, 'Julius', 1967, 'M', 359), +(95254, 'Pat', 1967, 'M', 354), +(95255, 'Jared', 1967, 'M', 350), +(95256, 'Laurence', 1967, 'M', 348), +(95257, 'Luke', 1967, 'M', 347), +(95258, 'Ernesto', 1967, 'M', 345), +(95259, 'Sergio', 1967, 'M', 345), +(95260, 'Marion', 1967, 'M', 344), +(95261, 'Bryon', 1967, 'M', 342), +(95262, 'Devin', 1967, 'M', 342), +(95263, 'Stevie', 1967, 'M', 338), +(95264, 'Cameron', 1967, 'M', 337), +(95265, 'Garrett', 1967, 'M', 336), +(95266, 'Rod', 1967, 'M', 335), +(95267, 'Rodolfo', 1967, 'M', 330), +(95268, 'Gerardo', 1967, 'M', 328), +(95269, 'Terrell', 1967, 'M', 327), +(95270, 'Monty', 1967, 'M', 324), +(95271, 'Carey', 1967, 'M', 323), +(95272, 'Delbert', 1967, 'M', 322), +(95273, 'Van', 1967, 'M', 322), +(95274, 'Kris', 1967, 'M', 320), +(95275, 'Leland', 1967, 'M', 316), +(95276, 'Salvador', 1967, 'M', 315), +(95277, 'Dirk', 1967, 'M', 314), +(95278, 'Alejandro', 1967, 'M', 311), +(95279, 'Marlon', 1967, 'M', 310), +(95280, 'Rusty', 1967, 'M', 308), +(95281, 'Rodger', 1967, 'M', 307), +(95282, 'Elmer', 1967, 'M', 304), +(95283, 'Tod', 1967, 'M', 303), +(95284, 'Forrest', 1967, 'M', 302), +(95285, 'Darwin', 1967, 'M', 299), +(95286, 'Andres', 1967, 'M', 296), +(95287, 'Sylvester', 1967, 'M', 296), +(95288, 'Kip', 1967, 'M', 294), +(95289, 'Roosevelt', 1967, 'M', 293), +(95290, 'Lionel', 1967, 'M', 292), +(95291, 'Gilberto', 1967, 'M', 291), +(95292, 'Oliver', 1967, 'M', 290), +(95293, 'Vance', 1967, 'M', 288), +(95294, 'Jonathon', 1967, 'M', 287), +(95295, 'Luther', 1967, 'M', 285), +(95296, 'Reynaldo', 1967, 'M', 285), +(95297, 'Dino', 1967, 'M', 284), +(95298, 'Doyle', 1967, 'M', 280), +(95299, 'Blaine', 1967, 'M', 279), +(95300, 'Rudolph', 1967, 'M', 276), +(95301, 'Archie', 1967, 'M', 275), +(95302, 'Darron', 1967, 'M', 275), +(95303, 'Dallas', 1967, 'M', 274), +(95304, 'Rob', 1967, 'M', 273), +(95305, 'Tommie', 1967, 'M', 273), +(95306, 'Horace', 1967, 'M', 272), +(95307, 'Lowell', 1967, 'M', 272), +(95308, 'Rocky', 1967, 'M', 272), +(95309, 'Israel', 1967, 'M', 271), +(95310, 'Morgan', 1967, 'M', 271), +(95311, 'Pablo', 1967, 'M', 269), +(95312, 'Hans', 1967, 'M', 267), +(95313, 'Johnathan', 1967, 'M', 267), +(95314, 'Cornelius', 1967, 'M', 264), +(95315, 'Rolando', 1967, 'M', 264), +(95316, 'Vince', 1967, 'M', 264), +(95317, 'Jarrod', 1967, 'M', 263), +(95318, 'Lamar', 1967, 'M', 262), +(95319, 'Dominick', 1967, 'M', 257), +(95320, 'Hubert', 1967, 'M', 257), +(95321, 'Robby', 1967, 'M', 254), +(95322, 'Wilson', 1967, 'M', 253), +(95323, 'Abel', 1967, 'M', 252), +(95324, 'Boyd', 1967, 'M', 252), +(95325, 'Cesar', 1967, 'M', 248), +(95326, 'Vaughn', 1967, 'M', 248), +(95327, 'Marcos', 1967, 'M', 247), +(95328, 'Omar', 1967, 'M', 246), +(95329, 'Bert', 1967, 'M', 245), +(95330, 'Donnell', 1967, 'M', 244), +(95331, 'Guadalupe', 1967, 'M', 242), +(95332, 'Guillermo', 1967, 'M', 242), +(95333, 'Willis', 1967, 'M', 239), +(95334, 'Conrad', 1967, 'M', 237), +(95335, 'Mack', 1967, 'M', 236), +(95336, 'Wilbert', 1967, 'M', 236), +(95337, 'Kurtis', 1967, 'M', 234), +(95338, 'Gerry', 1967, 'M', 233), +(95339, 'Grady', 1967, 'M', 233), +(95340, 'Ernie', 1967, 'M', 231), +(95341, 'Ervin', 1967, 'M', 231), +(95342, 'Rufus', 1967, 'M', 231), +(95343, 'Freddy', 1967, 'M', 230), +(95344, 'Owen', 1967, 'M', 230), +(95345, 'Thaddeus', 1967, 'M', 229), +(95346, 'Royce', 1967, 'M', 228), +(95347, 'Abraham', 1967, 'M', 227), +(95348, 'Donovan', 1967, 'M', 227), +(95349, 'Daron', 1967, 'M', 225), +(95350, 'Derick', 1967, 'M', 225), +(95351, 'Simon', 1967, 'M', 225), +(95352, 'Jordan', 1967, 'M', 222), +(95353, 'Dane', 1967, 'M', 221), +(95354, 'Ismael', 1967, 'M', 221), +(95355, 'Tad', 1967, 'M', 220), +(95356, 'Felipe', 1967, 'M', 219), +(95357, 'Lane', 1967, 'M', 218), +(95358, 'Alphonso', 1967, 'M', 217), +(95359, 'Sterling', 1967, 'M', 216), +(95360, 'Ellis', 1967, 'M', 215), +(95361, 'Buddy', 1967, 'M', 214), +(95362, 'Deron', 1967, 'M', 212), +(95363, 'Pierre', 1967, 'M', 212), +(95364, 'Denis', 1967, 'M', 211), +(95365, 'Phil', 1967, 'M', 210), +(95366, 'Jefferson', 1967, 'M', 208), +(95367, 'Austin', 1967, 'M', 207), +(95368, 'Dewey', 1967, 'M', 207), +(95369, 'Jean', 1967, 'M', 207), +(95370, 'Rickie', 1967, 'M', 207), +(95371, 'Emanuel', 1967, 'M', 204), +(95372, 'Miles', 1967, 'M', 203), +(95373, 'Blair', 1967, 'M', 202), +(95374, 'Rory', 1967, 'M', 202), +(95375, 'Tomas', 1967, 'M', 200), +(95376, 'Ramiro', 1967, 'M', 198), +(95377, 'Elliott', 1967, 'M', 197), +(95378, 'Cleveland', 1967, 'M', 196), +(95379, 'Cody', 1967, 'M', 196), +(95380, 'Ronny', 1967, 'M', 196), +(95381, 'Denny', 1967, 'M', 195), +(95382, 'Gustavo', 1967, 'M', 195), +(95383, 'Antoine', 1967, 'M', 193), +(95384, 'Randell', 1967, 'M', 193), +(95385, 'Reggie', 1967, 'M', 193), +(95386, 'Aubrey', 1967, 'M', 192), +(95387, 'Kirby', 1967, 'M', 192), +(95388, 'Donny', 1967, 'M', 191), +(95389, 'Kristopher', 1967, 'M', 191), +(95390, 'Emmett', 1967, 'M', 190), +(95391, 'Elbert', 1967, 'M', 189), +(95392, 'Amos', 1967, 'M', 188), +(95393, 'Ethan', 1967, 'M', 188), +(95394, 'Winston', 1967, 'M', 186), +(95395, 'Jess', 1967, 'M', 185), +(95396, 'Anton', 1967, 'M', 184), +(95397, 'Carroll', 1967, 'M', 184), +(95398, 'Erich', 1967, 'M', 184), +(95399, 'Sandy', 1967, 'M', 184), +(95400, 'Joesph', 1967, 'M', 183), +(95401, 'Ward', 1967, 'M', 183), +(95402, 'Edmond', 1967, 'M', 182), +(95403, 'Richie', 1967, 'M', 182), +(95404, 'Xavier', 1967, 'M', 181), +(95405, 'Bryce', 1967, 'M', 180), +(95406, 'Courtney', 1967, 'M', 179), +(95407, 'Avery', 1967, 'M', 178), +(95408, 'Percy', 1967, 'M', 178), +(95409, 'Reuben', 1967, 'M', 178), +(95410, 'Rogelio', 1967, 'M', 178), +(95411, 'Ed', 1967, 'M', 177), +(95412, 'Stefan', 1967, 'M', 177), +(95413, 'Louie', 1967, 'M', 176), +(95414, 'Wilbur', 1967, 'M', 176), +(95415, 'Wilfredo', 1967, 'M', 176), +(95416, 'Efrain', 1967, 'M', 175), +(95417, 'Jan', 1967, 'M', 175), +(95418, 'Galen', 1967, 'M', 174), +(95419, 'Gavin', 1967, 'M', 174), +(95420, 'Homer', 1967, 'M', 174), +(95421, 'Marlin', 1967, 'M', 174), +(95422, 'Damian', 1967, 'M', 173), +(95423, 'Cornell', 1967, 'M', 172), +(95424, 'Emilio', 1967, 'M', 172), +(95425, 'Fabian', 1967, 'M', 172), +(95426, 'Kraig', 1967, 'M', 172), +(95427, 'Moses', 1967, 'M', 172), +(95428, 'Nicolas', 1967, 'M', 172), +(95429, 'Michel', 1967, 'M', 169), +(95430, 'Garland', 1967, 'M', 168); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(95431, 'Quentin', 1967, 'M', 168), +(95432, 'Sammie', 1967, 'M', 168), +(95433, 'Elvis', 1967, 'M', 167), +(95434, 'Will', 1967, 'M', 167), +(95435, 'Al', 1967, 'M', 166), +(95436, 'Brady', 1967, 'M', 165), +(95437, 'Danial', 1967, 'M', 165), +(95438, 'Darius', 1967, 'M', 165), +(95439, 'Marcel', 1967, 'M', 164), +(95440, 'Theron', 1967, 'M', 163), +(95441, 'Keven', 1967, 'M', 162), +(95442, 'Lon', 1967, 'M', 162), +(95443, 'Elias', 1967, 'M', 161), +(95444, 'Saul', 1967, 'M', 160), +(95445, 'Santos', 1967, 'M', 159), +(95446, 'Dante', 1967, 'M', 157), +(95447, 'Garth', 1967, 'M', 156), +(95448, 'Noah', 1967, 'M', 156), +(95449, 'Kirt', 1967, 'M', 155), +(95450, 'Sonny', 1967, 'M', 155), +(95451, 'Deon', 1967, 'M', 154), +(95452, 'Roman', 1967, 'M', 154), +(95453, 'Russel', 1967, 'M', 154), +(95454, 'Irvin', 1967, 'M', 153), +(95455, 'Harlan', 1967, 'M', 152), +(95456, 'Nicky', 1967, 'M', 152), +(95457, 'Woodrow', 1967, 'M', 152), +(95458, 'Hal', 1967, 'M', 151), +(95459, 'Leonardo', 1967, 'M', 151), +(95460, 'Rocco', 1967, 'M', 151), +(95461, 'Levi', 1967, 'M', 150), +(95462, 'Devon', 1967, 'M', 149), +(95463, 'Desmond', 1967, 'M', 148), +(95464, 'Domingo', 1967, 'M', 148), +(95465, 'Hank', 1967, 'M', 148), +(95466, 'Reed', 1967, 'M', 148), +(95467, 'Darrick', 1967, 'M', 147), +(95468, 'Gino', 1967, 'M', 147), +(95469, 'Stan', 1967, 'M', 147), +(95470, 'Kennith', 1967, 'M', 146), +(95471, 'Brock', 1967, 'M', 145), +(95472, 'Lonny', 1967, 'M', 145), +(95473, 'Santiago', 1967, 'M', 145), +(95474, 'Billie', 1967, 'M', 144), +(95475, 'Lorne', 1967, 'M', 144), +(95476, 'Ulysses', 1967, 'M', 144), +(95477, 'Chadwick', 1967, 'M', 143), +(95478, 'Eddy', 1967, 'M', 143), +(95479, 'Wilfred', 1967, 'M', 143), +(95480, 'Shelton', 1967, 'M', 142), +(95481, 'Toney', 1967, 'M', 142), +(95482, 'Carter', 1967, 'M', 141), +(95483, 'Alexis', 1967, 'M', 139), +(95484, 'Shon', 1967, 'M', 139), +(95485, 'Barton', 1967, 'M', 138), +(95486, 'Ashley', 1967, 'M', 137), +(95487, 'Erwin', 1967, 'M', 136), +(95488, 'Quinn', 1967, 'M', 136), +(95489, 'Carmen', 1967, 'M', 135), +(95490, 'Elijah', 1967, 'M', 135), +(95491, 'Elliot', 1967, 'M', 135), +(95492, 'Reid', 1967, 'M', 135), +(95493, 'Andrea', 1967, 'M', 134), +(95494, 'Frederic', 1967, 'M', 134), +(95495, 'Bobbie', 1967, 'M', 133), +(95496, 'Harrison', 1967, 'M', 133), +(95497, 'Irving', 1967, 'M', 133), +(95498, 'Kelley', 1967, 'M', 132), +(95499, 'Ritchie', 1967, 'M', 131), +(95500, 'Sanford', 1967, 'M', 131), +(95501, 'Benito', 1967, 'M', 130), +(95502, 'Linwood', 1967, 'M', 130), +(95503, 'Norris', 1967, 'M', 130), +(95504, 'Shelby', 1967, 'M', 130), +(95505, 'Burton', 1967, 'M', 129), +(95506, 'Micah', 1967, 'M', 129), +(95507, 'Cliff', 1967, 'M', 128), +(95508, 'Errol', 1967, 'M', 128), +(95509, 'Jeremiah', 1967, 'M', 128), +(95510, 'Nolan', 1967, 'M', 128), +(95511, 'Rodrick', 1967, 'M', 128), +(95512, 'Brant', 1967, 'M', 127), +(95513, 'Mary', 1967, 'M', 127), +(95514, 'Antony', 1967, 'M', 126), +(95515, 'Eli', 1967, 'M', 126), +(95516, 'Elvin', 1967, 'M', 126), +(95517, 'Harley', 1967, 'M', 125), +(95518, 'Jasper', 1967, 'M', 125), +(95519, 'Britt', 1967, 'M', 123), +(95520, 'Russ', 1967, 'M', 123), +(95521, 'Bradly', 1967, 'M', 122), +(95522, 'Ignacio', 1967, 'M', 122), +(95523, 'Kermit', 1967, 'M', 122), +(95524, 'Rich', 1967, 'M', 122), +(95525, 'Adolfo', 1967, 'M', 121), +(95526, 'Carlo', 1967, 'M', 121), +(95527, 'Kenton', 1967, 'M', 121), +(95528, 'Murray', 1967, 'M', 120), +(95529, 'August', 1967, 'M', 119), +(95530, 'Jefferey', 1967, 'M', 119), +(95531, 'Joaquin', 1967, 'M', 119), +(95532, 'Lenny', 1967, 'M', 119), +(95533, 'Lisa', 1967, 'M', 119), +(95534, 'Baron', 1967, 'M', 117), +(95535, 'Gus', 1967, 'M', 117), +(95536, 'Hugo', 1967, 'M', 117), +(95537, 'Kimberly', 1967, 'M', 117), +(95538, 'Sebastian', 1967, 'M', 117), +(95539, 'Vito', 1967, 'M', 117), +(95540, 'Bennett', 1967, 'M', 116), +(95541, 'Wiley', 1967, 'M', 116), +(95542, 'Davis', 1967, 'M', 115), +(95543, 'Jayson', 1967, 'M', 115), +(95544, 'Elton', 1967, 'M', 114), +(95545, 'Trenton', 1967, 'M', 114), +(95546, 'Eldon', 1967, 'M', 113), +(95547, 'Humberto', 1967, 'M', 113), +(95548, 'Noe', 1967, 'M', 113), +(95549, 'Solomon', 1967, 'M', 113), +(95550, 'Collin', 1967, 'M', 112), +(95551, 'Emmanuel', 1967, 'M', 111), +(95552, 'Brooks', 1967, 'M', 110), +(95553, 'Jamey', 1967, 'M', 110), +(95554, 'Junior', 1967, 'M', 110), +(95555, 'Michelle', 1967, 'M', 110), +(95556, 'Otto', 1967, 'M', 110), +(95557, 'Shayne', 1967, 'M', 110), +(95558, 'Edwardo', 1967, 'M', 109), +(95559, 'Erin', 1967, 'M', 109), +(95560, 'Grover', 1967, 'M', 109), +(95561, 'Agustin', 1967, 'M', 108), +(95562, 'Zane', 1967, 'M', 108), +(95563, 'Derwin', 1967, 'M', 107), +(95564, 'Mitchel', 1967, 'M', 107), +(95565, 'Quintin', 1967, 'M', 107), +(95566, 'Timmothy', 1967, 'M', 107), +(95567, 'Carmine', 1967, 'M', 106), +(95568, 'Chance', 1967, 'M', 106), +(95569, 'Esteban', 1967, 'M', 106), +(95570, 'Graham', 1967, 'M', 106), +(95571, 'Jake', 1967, 'M', 105), +(95572, 'Josh', 1967, 'M', 105), +(95573, 'Mikel', 1967, 'M', 105), +(95574, 'Raphael', 1967, 'M', 105), +(95575, 'Dwain', 1967, 'M', 104), +(95576, 'Loyd', 1967, 'M', 104), +(95577, 'Quinton', 1967, 'M', 104), +(95578, 'Emil', 1967, 'M', 102), +(95579, 'Jacques', 1967, 'M', 102), +(95580, 'Timmie', 1967, 'M', 102), +(95581, 'Lyndon', 1967, 'M', 101), +(95582, 'Vicente', 1967, 'M', 101), +(95583, 'Bernie', 1967, 'M', 100), +(95584, 'Greggory', 1967, 'M', 100), +(95585, 'Jerold', 1967, 'M', 100), +(95586, 'Parrish', 1967, 'M', 100), +(95587, 'Lisa', 1968, 'F', 49532), +(95588, 'Michelle', 1968, 'F', 33215), +(95589, 'Kimberly', 1968, 'F', 31909), +(95590, 'Jennifer', 1968, 'F', 26850), +(95591, 'Melissa', 1968, 'F', 21731), +(95592, 'Mary', 1968, 'F', 21722), +(95593, 'Angela', 1968, 'F', 20662), +(95594, 'Tammy', 1968, 'F', 20054), +(95595, 'Karen', 1968, 'F', 19556), +(95596, 'Susan', 1968, 'F', 19507), +(95597, 'Laura', 1968, 'F', 18743), +(95598, 'Kelly', 1968, 'F', 17137), +(95599, 'Amy', 1968, 'F', 17090), +(95600, 'Christine', 1968, 'F', 16519), +(95601, 'Patricia', 1968, 'F', 15806), +(95602, 'Julie', 1968, 'F', 15750), +(95603, 'Elizabeth', 1968, 'F', 14891), +(95604, 'Tina', 1968, 'F', 14769), +(95605, 'Cynthia', 1968, 'F', 14049), +(95606, 'Pamela', 1968, 'F', 14032), +(95607, 'Dawn', 1968, 'F', 13437), +(95608, 'Lori', 1968, 'F', 13127), +(95609, 'Stephanie', 1968, 'F', 12952), +(95610, 'Donna', 1968, 'F', 12757), +(95611, 'Tracy', 1968, 'F', 12747), +(95612, 'Sandra', 1968, 'F', 12683), +(95613, 'Deborah', 1968, 'F', 12286), +(95614, 'Linda', 1968, 'F', 11367), +(95615, 'Michele', 1968, 'F', 11216), +(95616, 'Teresa', 1968, 'F', 10915), +(95617, 'Wendy', 1968, 'F', 10709), +(95618, 'Sharon', 1968, 'F', 10338), +(95619, 'Rebecca', 1968, 'F', 10229), +(95620, 'Brenda', 1968, 'F', 9939), +(95621, 'Denise', 1968, 'F', 9875), +(95622, 'Barbara', 1968, 'F', 9745), +(95623, 'Cheryl', 1968, 'F', 9142), +(95624, 'Debra', 1968, 'F', 9093), +(95625, 'Nancy', 1968, 'F', 8958), +(95626, 'Kathleen', 1968, 'F', 8730), +(95627, 'Maria', 1968, 'F', 8366), +(95628, 'Rhonda', 1968, 'F', 8267), +(95629, 'Robin', 1968, 'F', 8184), +(95630, 'Christina', 1968, 'F', 8009), +(95631, 'Paula', 1968, 'F', 7637), +(95632, 'Jill', 1968, 'F', 7523), +(95633, 'Theresa', 1968, 'F', 7304), +(95634, 'Andrea', 1968, 'F', 7086), +(95635, 'Carol', 1968, 'F', 7078), +(95636, 'Jacqueline', 1968, 'F', 6740), +(95637, 'Diane', 1968, 'F', 6584), +(95638, 'Sherry', 1968, 'F', 6430), +(95639, 'Shannon', 1968, 'F', 6403), +(95640, 'Ann', 1968, 'F', 6181), +(95641, 'Stacey', 1968, 'F', 6147), +(95642, 'Catherine', 1968, 'F', 6133), +(95643, 'Kim', 1968, 'F', 6090), +(95644, 'Gina', 1968, 'F', 6041), +(95645, 'Sheila', 1968, 'F', 5733), +(95646, 'Tonya', 1968, 'F', 5660), +(95647, 'Carolyn', 1968, 'F', 5537), +(95648, 'Heather', 1968, 'F', 5500), +(95649, 'Margaret', 1968, 'F', 5439), +(95650, 'Stacy', 1968, 'F', 5387), +(95651, 'Renee', 1968, 'F', 5355), +(95652, 'Leslie', 1968, 'F', 5282), +(95653, 'Cindy', 1968, 'F', 5240), +(95654, 'Monica', 1968, 'F', 5217), +(95655, 'Suzanne', 1968, 'F', 5041), +(95656, 'Dana', 1968, 'F', 5014), +(95657, 'Diana', 1968, 'F', 4992), +(95658, 'Tracey', 1968, 'F', 4930), +(95659, 'Janet', 1968, 'F', 4834), +(95660, 'Beth', 1968, 'F', 4767), +(95661, 'Katherine', 1968, 'F', 4719), +(95662, 'Kathy', 1968, 'F', 4678), +(95663, 'Valerie', 1968, 'F', 4550), +(95664, 'Sarah', 1968, 'F', 4486), +(95665, 'Laurie', 1968, 'F', 4341), +(95666, 'Tamara', 1968, 'F', 4308), +(95667, 'Regina', 1968, 'F', 4294), +(95668, 'Victoria', 1968, 'F', 4290), +(95669, 'Terri', 1968, 'F', 4268), +(95670, 'Kristin', 1968, 'F', 4133), +(95671, 'Lynn', 1968, 'F', 4102), +(95672, 'Carrie', 1968, 'F', 3979), +(95673, 'Connie', 1968, 'F', 3957), +(95674, 'Anne', 1968, 'F', 3914), +(95675, 'Heidi', 1968, 'F', 3910), +(95676, 'Melinda', 1968, 'F', 3813), +(95677, 'Carla', 1968, 'F', 3812), +(95678, 'Rachel', 1968, 'F', 3725), +(95679, 'Yolanda', 1968, 'F', 3692), +(95680, 'Melanie', 1968, 'F', 3644), +(95681, 'Sherri', 1968, 'F', 3643), +(95682, 'April', 1968, 'F', 3623), +(95683, 'Shelly', 1968, 'F', 3596), +(95684, 'Jodi', 1968, 'F', 3595), +(95685, 'Anna', 1968, 'F', 3557), +(95686, 'Kathryn', 1968, 'F', 3556), +(95687, 'Colleen', 1968, 'F', 3487), +(95688, 'Annette', 1968, 'F', 3470), +(95689, 'Holly', 1968, 'F', 3420), +(95690, 'Deanna', 1968, 'F', 3414), +(95691, 'Kristine', 1968, 'F', 3410), +(95692, 'Tanya', 1968, 'F', 3401), +(95693, 'Kristen', 1968, 'F', 3243), +(95694, 'Nicole', 1968, 'F', 3084), +(95695, 'Anita', 1968, 'F', 3045), +(95696, 'Janice', 1968, 'F', 3045), +(95697, 'Debbie', 1968, 'F', 3019), +(95698, 'Veronica', 1968, 'F', 3010), +(95699, 'Julia', 1968, 'F', 2994), +(95700, 'Vicki', 1968, 'F', 2978), +(95701, 'Wanda', 1968, 'F', 2962), +(95702, 'Bonnie', 1968, 'F', 2956), +(95703, 'Sonya', 1968, 'F', 2818), +(95704, 'Crystal', 1968, 'F', 2754), +(95705, 'Sheri', 1968, 'F', 2717), +(95706, 'Jamie', 1968, 'F', 2690), +(95707, 'Darlene', 1968, 'F', 2657), +(95708, 'Beverly', 1968, 'F', 2591), +(95709, 'Martha', 1968, 'F', 2578), +(95710, 'Penny', 1968, 'F', 2575), +(95711, 'Yvonne', 1968, 'F', 2573), +(95712, 'Alicia', 1968, 'F', 2566), +(95713, 'Traci', 1968, 'F', 2555), +(95714, 'Joyce', 1968, 'F', 2496), +(95715, 'Shelley', 1968, 'F', 2483), +(95716, 'Virginia', 1968, 'F', 2456), +(95717, 'Sara', 1968, 'F', 2455), +(95718, 'Amanda', 1968, 'F', 2430), +(95719, 'Danielle', 1968, 'F', 2407), +(95720, 'Cathy', 1968, 'F', 2399), +(95721, 'Marie', 1968, 'F', 2374), +(95722, 'Samantha', 1968, 'F', 2338), +(95723, 'Kelli', 1968, 'F', 2321), +(95724, 'Kristi', 1968, 'F', 2310), +(95725, 'Cassandra', 1968, 'F', 2301), +(95726, 'Judith', 1968, 'F', 2290), +(95727, 'Judy', 1968, 'F', 2269), +(95728, 'Carmen', 1968, 'F', 2268), +(95729, 'Gloria', 1968, 'F', 2254), +(95730, 'Yvette', 1968, 'F', 2212), +(95731, 'Jane', 1968, 'F', 2195), +(95732, 'Toni', 1968, 'F', 2195), +(95733, 'Tara', 1968, 'F', 2184), +(95734, 'Maureen', 1968, 'F', 2175), +(95735, 'Ruth', 1968, 'F', 2148), +(95736, 'Shirley', 1968, 'F', 2142), +(95737, 'Christy', 1968, 'F', 2139), +(95738, 'Kristina', 1968, 'F', 2137), +(95739, 'Betty', 1968, 'F', 2135), +(95740, 'Joanne', 1968, 'F', 2129), +(95741, 'Peggy', 1968, 'F', 2115), +(95742, 'Ellen', 1968, 'F', 2103), +(95743, 'Dorothy', 1968, 'F', 2084), +(95744, 'Jean', 1968, 'F', 2079), +(95745, 'Rita', 1968, 'F', 2076), +(95746, 'Tammie', 1968, 'F', 2062), +(95747, 'Becky', 1968, 'F', 2056), +(95748, 'Vickie', 1968, 'F', 2008), +(95749, 'Charlotte', 1968, 'F', 2002), +(95750, 'Sylvia', 1968, 'F', 1959), +(95751, 'Rose', 1968, 'F', 1952), +(95752, 'Charlene', 1968, 'F', 1946), +(95753, 'Felicia', 1968, 'F', 1935), +(95754, 'Kelley', 1968, 'F', 1916), +(95755, 'Jody', 1968, 'F', 1912), +(95756, 'Joy', 1968, 'F', 1902), +(95757, 'Natalie', 1968, 'F', 1887), +(95758, 'Sheryl', 1968, 'F', 1885), +(95759, 'Helen', 1968, 'F', 1881), +(95760, 'Erin', 1968, 'F', 1863), +(95761, 'Kimberley', 1968, 'F', 1857), +(95762, 'Belinda', 1968, 'F', 1851), +(95763, 'Jessica', 1968, 'F', 1843), +(95764, 'Tiffany', 1968, 'F', 1831), +(95765, 'Kellie', 1968, 'F', 1805), +(95766, 'Gail', 1968, 'F', 1801), +(95767, 'Vanessa', 1968, 'F', 1799), +(95768, 'Joan', 1968, 'F', 1784), +(95769, 'Shawn', 1968, 'F', 1751), +(95770, 'Jeanette', 1968, 'F', 1750), +(95771, 'Frances', 1968, 'F', 1742), +(95772, 'Kerry', 1968, 'F', 1737), +(95773, 'Alice', 1968, 'F', 1730), +(95774, 'Monique', 1968, 'F', 1708), +(95775, 'Elaine', 1968, 'F', 1707), +(95776, 'Joann', 1968, 'F', 1676), +(95777, 'Tami', 1968, 'F', 1659), +(95778, 'Evelyn', 1968, 'F', 1644), +(95779, 'Sabrina', 1968, 'F', 1638), +(95780, 'Loretta', 1968, 'F', 1626), +(95781, 'Leah', 1968, 'F', 1617), +(95782, 'Jackie', 1968, 'F', 1587), +(95783, 'Eileen', 1968, 'F', 1580), +(95784, 'Marilyn', 1968, 'F', 1576), +(95785, 'Sonia', 1968, 'F', 1566), +(95786, 'Ronda', 1968, 'F', 1556), +(95787, 'Norma', 1968, 'F', 1547), +(95788, 'Allison', 1968, 'F', 1536), +(95789, 'Lora', 1968, 'F', 1515), +(95790, 'Kari', 1968, 'F', 1512), +(95791, 'Karla', 1968, 'F', 1503), +(95792, 'Roberta', 1968, 'F', 1491), +(95793, 'Katrina', 1968, 'F', 1464), +(95794, 'Bridget', 1968, 'F', 1454), +(95795, 'Tracie', 1968, 'F', 1449), +(95796, 'Leigh', 1968, 'F', 1427), +(95797, 'Jeanne', 1968, 'F', 1425), +(95798, 'Audrey', 1968, 'F', 1424), +(95799, 'Shari', 1968, 'F', 1419), +(95800, 'Robyn', 1968, 'F', 1415), +(95801, 'Caroline', 1968, 'F', 1412), +(95802, 'Sally', 1968, 'F', 1403), +(95803, 'Terry', 1968, 'F', 1398), +(95804, 'Sandy', 1968, 'F', 1397), +(95805, 'Juanita', 1968, 'F', 1362), +(95806, 'Shelia', 1968, 'F', 1359), +(95807, 'Rosa', 1968, 'F', 1346), +(95808, 'Sonja', 1968, 'F', 1338), +(95809, 'Trina', 1968, 'F', 1333), +(95810, 'Lorraine', 1968, 'F', 1329), +(95811, 'Emily', 1968, 'F', 1328), +(95812, 'Jo', 1968, 'F', 1324), +(95813, 'Lara', 1968, 'F', 1294), +(95814, 'Angie', 1968, 'F', 1293), +(95815, 'Lynette', 1968, 'F', 1287), +(95816, 'Melody', 1968, 'F', 1280), +(95817, 'Dina', 1968, 'F', 1247), +(95818, 'Teri', 1968, 'F', 1244), +(95819, 'Gwendolyn', 1968, 'F', 1241), +(95820, 'Kerri', 1968, 'F', 1238), +(95821, 'Cheri', 1968, 'F', 1232), +(95822, 'Ginger', 1968, 'F', 1190), +(95823, 'Candace', 1968, 'F', 1178), +(95824, 'Irene', 1968, 'F', 1170), +(95825, 'Lee', 1968, 'F', 1159), +(95826, 'Darla', 1968, 'F', 1153), +(95827, 'Tonia', 1968, 'F', 1147), +(95828, 'Lauren', 1968, 'F', 1142), +(95829, 'Marcia', 1968, 'F', 1142), +(95830, 'Marsha', 1968, 'F', 1128), +(95831, 'Lynda', 1968, 'F', 1114), +(95832, 'Dianna', 1968, 'F', 1110), +(95833, 'Dianne', 1968, 'F', 1110), +(95834, 'Kirsten', 1968, 'F', 1106), +(95835, 'Marla', 1968, 'F', 1105), +(95836, 'Vicky', 1968, 'F', 1089), +(95837, 'Phyllis', 1968, 'F', 1086), +(95838, 'Stacie', 1968, 'F', 1079), +(95839, 'Adrienne', 1968, 'F', 1077), +(95840, 'Kristy', 1968, 'F', 1062), +(95841, 'Eva', 1968, 'F', 1050), +(95842, 'Rochelle', 1968, 'F', 1050), +(95843, 'Deana', 1968, 'F', 1049), +(95844, 'Krista', 1968, 'F', 1047), +(95845, 'Ramona', 1968, 'F', 1040), +(95846, 'Christie', 1968, 'F', 1038), +(95847, 'Joanna', 1968, 'F', 1036), +(95848, 'Constance', 1968, 'F', 1032), +(95849, 'Doris', 1968, 'F', 1023), +(95850, 'Jacquelyn', 1968, 'F', 1021), +(95851, 'Molly', 1968, 'F', 1021), +(95852, 'Dena', 1968, 'F', 1020), +(95853, 'Roxanne', 1968, 'F', 1017), +(95854, 'Sherrie', 1968, 'F', 1013), +(95855, 'Jana', 1968, 'F', 1011), +(95856, 'Marlene', 1968, 'F', 1004), +(95857, 'Alisa', 1968, 'F', 999), +(95858, 'Glenda', 1968, 'F', 998), +(95859, 'Audra', 1968, 'F', 997), +(95860, 'Claudia', 1968, 'F', 992), +(95861, 'Kristie', 1968, 'F', 990), +(95862, 'Sue', 1968, 'F', 980), +(95863, 'Staci', 1968, 'F', 975), +(95864, 'Karin', 1968, 'F', 972), +(95865, 'Antoinette', 1968, 'F', 964), +(95866, 'Erica', 1968, 'F', 958), +(95867, 'Erika', 1968, 'F', 957), +(95868, 'Lynne', 1968, 'F', 946), +(95869, 'Raquel', 1968, 'F', 941), +(95870, 'Angelia', 1968, 'F', 937), +(95871, 'Ana', 1968, 'F', 924), +(95872, 'Tricia', 1968, 'F', 924), +(95873, 'Bernadette', 1968, 'F', 921), +(95874, 'Vivian', 1968, 'F', 912), +(95875, 'Doreen', 1968, 'F', 910), +(95876, 'Kara', 1968, 'F', 909), +(95877, 'Alison', 1968, 'F', 904), +(95878, 'Cherie', 1968, 'F', 891), +(95879, 'Amber', 1968, 'F', 887), +(95880, 'Gretchen', 1968, 'F', 887), +(95881, 'Janine', 1968, 'F', 882), +(95882, 'Tammi', 1968, 'F', 874), +(95883, 'Rosemary', 1968, 'F', 873), +(95884, 'Bobbie', 1968, 'F', 872), +(95885, 'Lorie', 1968, 'F', 866), +(95886, 'Lydia', 1968, 'F', 862), +(95887, 'Jodie', 1968, 'F', 859), +(95888, 'Priscilla', 1968, 'F', 859), +(95889, 'Jenny', 1968, 'F', 858), +(95890, 'Leticia', 1968, 'F', 852), +(95891, 'Misty', 1968, 'F', 842), +(95892, 'Hope', 1968, 'F', 832), +(95893, 'Billie', 1968, 'F', 815), +(95894, 'Megan', 1968, 'F', 815), +(95895, 'Lillian', 1968, 'F', 814), +(95896, 'Lana', 1968, 'F', 806), +(95897, 'Nina', 1968, 'F', 805), +(95898, 'Rachelle', 1968, 'F', 783), +(95899, 'Trisha', 1968, 'F', 768), +(95900, 'Angelique', 1968, 'F', 764), +(95901, 'Marianne', 1968, 'F', 758), +(95902, 'Candy', 1968, 'F', 756), +(95903, 'Grace', 1968, 'F', 751), +(95904, 'Laurel', 1968, 'F', 751), +(95905, 'Christi', 1968, 'F', 739), +(95906, 'Shawna', 1968, 'F', 739), +(95907, 'Desiree', 1968, 'F', 732), +(95908, 'Esther', 1968, 'F', 730), +(95909, 'Marjorie', 1968, 'F', 725), +(95910, 'Arlene', 1968, 'F', 720), +(95911, 'Patty', 1968, 'F', 719), +(95912, 'Leanne', 1968, 'F', 715), +(95913, 'Wendi', 1968, 'F', 706), +(95914, 'Tabatha', 1968, 'F', 701), +(95915, 'Nora', 1968, 'F', 697), +(95916, 'Kendra', 1968, 'F', 695), +(95917, 'Paige', 1968, 'F', 695), +(95918, 'Josephine', 1968, 'F', 693), +(95919, 'Pauline', 1968, 'F', 692), +(95920, 'Patti', 1968, 'F', 688), +(95921, 'Mia', 1968, 'F', 682), +(95922, 'Jeannie', 1968, 'F', 672), +(95923, 'Rene', 1968, 'F', 671), +(95924, 'Lucy', 1968, 'F', 670), +(95925, 'Chris', 1968, 'F', 669), +(95926, 'Geraldine', 1968, 'F', 669), +(95927, 'Lois', 1968, 'F', 669), +(95928, 'Lesley', 1968, 'F', 663), +(95929, 'Susanne', 1968, 'F', 658), +(95930, 'Jan', 1968, 'F', 656), +(95931, 'Miriam', 1968, 'F', 654), +(95932, 'Gayle', 1968, 'F', 651), +(95933, 'Elisa', 1968, 'F', 650), +(95934, 'Courtney', 1968, 'F', 649), +(95935, 'Darcy', 1968, 'F', 643), +(95936, 'Aimee', 1968, 'F', 640), +(95937, 'Daphne', 1968, 'F', 640), +(95938, 'Ruby', 1968, 'F', 639), +(95939, 'Kay', 1968, 'F', 636), +(95940, 'Jeannette', 1968, 'F', 630), +(95941, 'Paulette', 1968, 'F', 629), +(95942, 'Candice', 1968, 'F', 622), +(95943, 'Keri', 1968, 'F', 622), +(95944, 'Leann', 1968, 'F', 621), +(95945, 'Louise', 1968, 'F', 621), +(95946, 'Patrice', 1968, 'F', 620), +(95947, 'Francine', 1968, 'F', 615), +(95948, 'Suzette', 1968, 'F', 615), +(95949, 'Carole', 1968, 'F', 613), +(95950, 'Cathleen', 1968, 'F', 612), +(95951, 'Annie', 1968, 'F', 611), +(95952, 'Latonya', 1968, 'F', 610), +(95953, 'Dionne', 1968, 'F', 607), +(95954, 'Mona', 1968, 'F', 605), +(95955, 'Edith', 1968, 'F', 604), +(95956, 'Nadine', 1968, 'F', 602), +(95957, 'Kris', 1968, 'F', 598), +(95958, 'Dolores', 1968, 'F', 595), +(95959, 'Annmarie', 1968, 'F', 594), +(95960, 'June', 1968, 'F', 592), +(95961, 'Lucinda', 1968, 'F', 592), +(95962, 'Iris', 1968, 'F', 585), +(95963, 'Deanne', 1968, 'F', 584), +(95964, 'Ladonna', 1968, 'F', 584), +(95965, 'Georgia', 1968, 'F', 582), +(95966, 'Debora', 1968, 'F', 581), +(95967, 'Mindy', 1968, 'F', 581), +(95968, 'Marcy', 1968, 'F', 579), +(95969, 'Melisa', 1968, 'F', 578), +(95970, 'Janelle', 1968, 'F', 568), +(95971, 'Bobbi', 1968, 'F', 565), +(95972, 'Bridgette', 1968, 'F', 564), +(95973, 'Deirdre', 1968, 'F', 563), +(95974, 'Stefanie', 1968, 'F', 561), +(95975, 'Celeste', 1968, 'F', 557), +(95976, 'Cecilia', 1968, 'F', 549), +(95977, 'Dora', 1968, 'F', 548), +(95978, 'Tabitha', 1968, 'F', 548), +(95979, 'Jeanine', 1968, 'F', 547), +(95980, 'Sophia', 1968, 'F', 546), +(95981, 'Camille', 1968, 'F', 545), +(95982, 'Marlo', 1968, 'F', 545), +(95983, 'Alma', 1968, 'F', 544), +(95984, 'Aretha', 1968, 'F', 544), +(95985, 'Ashley', 1968, 'F', 544), +(95986, 'Lorrie', 1968, 'F', 539), +(95987, 'Meredith', 1968, 'F', 539), +(95988, 'Naomi', 1968, 'F', 539), +(95989, 'Margarita', 1968, 'F', 537), +(95990, 'Faith', 1968, 'F', 532), +(95991, 'Irma', 1968, 'F', 531), +(95992, 'Marcella', 1968, 'F', 529), +(95993, 'Maryann', 1968, 'F', 524), +(95994, 'Alexandra', 1968, 'F', 522), +(95995, 'Delores', 1968, 'F', 520), +(95996, 'Christa', 1968, 'F', 518), +(95997, 'Cristina', 1968, 'F', 516), +(95998, 'Sondra', 1968, 'F', 511), +(95999, 'Myra', 1968, 'F', 509), +(96000, 'Cara', 1968, 'F', 508), +(96001, 'Jennie', 1968, 'F', 506), +(96002, 'Angel', 1968, 'F', 503), +(96003, 'Anissa', 1968, 'F', 503), +(96004, 'Bethany', 1968, 'F', 503), +(96005, 'Gena', 1968, 'F', 502), +(96006, 'Josette', 1968, 'F', 502), +(96007, 'Kimberlee', 1968, 'F', 502), +(96008, 'Pam', 1968, 'F', 502), +(96009, 'Rosemarie', 1968, 'F', 500), +(96010, 'Edna', 1968, 'F', 499), +(96011, 'Valarie', 1968, 'F', 497), +(96012, 'Beatrice', 1968, 'F', 495), +(96013, 'Emma', 1968, 'F', 494), +(96014, 'Lea', 1968, 'F', 492), +(96015, 'Janie', 1968, 'F', 490), +(96016, 'Jenifer', 1968, 'F', 487), +(96017, 'Rachael', 1968, 'F', 484), +(96018, 'Chandra', 1968, 'F', 483), +(96019, 'Ingrid', 1968, 'F', 483), +(96020, 'Betsy', 1968, 'F', 479), +(96021, 'Mildred', 1968, 'F', 476), +(96022, 'Elena', 1968, 'F', 475), +(96023, 'Jeri', 1968, 'F', 474), +(96024, 'Michael', 1968, 'F', 474), +(96025, 'Lynnette', 1968, 'F', 473), +(96026, 'Jerri', 1968, 'F', 471), +(96027, 'Angelina', 1968, 'F', 466), +(96028, 'Karyn', 1968, 'F', 463), +(96029, 'Susie', 1968, 'F', 463), +(96030, 'Lena', 1968, 'F', 462), +(96031, 'Terrie', 1968, 'F', 460), +(96032, 'Tamra', 1968, 'F', 458), +(96033, 'Katie', 1968, 'F', 457), +(96034, 'Tonja', 1968, 'F', 455), +(96035, 'Noelle', 1968, 'F', 454), +(96036, 'Tamera', 1968, 'F', 454), +(96037, 'Lesa', 1968, 'F', 453), +(96038, 'Janette', 1968, 'F', 451), +(96039, 'Shauna', 1968, 'F', 451), +(96040, 'Tania', 1968, 'F', 449), +(96041, 'Tia', 1968, 'F', 448), +(96042, 'Marnie', 1968, 'F', 446), +(96043, 'Olga', 1968, 'F', 446), +(96044, 'Marci', 1968, 'F', 444), +(96045, 'Serena', 1968, 'F', 440), +(96046, 'Shana', 1968, 'F', 439), +(96047, 'Marion', 1968, 'F', 436), +(96048, 'Elisabeth', 1968, 'F', 433), +(96049, 'Jeannine', 1968, 'F', 429), +(96050, 'Lorena', 1968, 'F', 428), +(96051, 'Margie', 1968, 'F', 425), +(96052, 'Nanette', 1968, 'F', 425), +(96053, 'Bernice', 1968, 'F', 421), +(96054, 'Greta', 1968, 'F', 421), +(96055, 'Luz', 1968, 'F', 420), +(96056, 'Julianne', 1968, 'F', 419), +(96057, 'Jami', 1968, 'F', 417), +(96058, 'Clara', 1968, 'F', 416), +(96059, 'Rena', 1968, 'F', 416), +(96060, 'Eleanor', 1968, 'F', 408), +(96061, 'Marisa', 1968, 'F', 408), +(96062, 'Therese', 1968, 'F', 407), +(96063, 'Cari', 1968, 'F', 404), +(96064, 'Trudy', 1968, 'F', 404), +(96065, 'Ida', 1968, 'F', 402), +(96066, 'Nikki', 1968, 'F', 400), +(96067, 'Thelma', 1968, 'F', 400), +(96068, 'Deidre', 1968, 'F', 399), +(96069, 'Joni', 1968, 'F', 399), +(96070, 'Shelli', 1968, 'F', 396), +(96071, 'Bertha', 1968, 'F', 395), +(96072, 'Nichelle', 1968, 'F', 395), +(96073, 'Colette', 1968, 'F', 391), +(96074, 'Guadalupe', 1968, 'F', 391), +(96075, 'Amelia', 1968, 'F', 390), +(96076, 'Joelle', 1968, 'F', 390), +(96077, 'Vera', 1968, 'F', 389), +(96078, 'Deann', 1968, 'F', 388), +(96079, 'Deena', 1968, 'F', 388), +(96080, 'Malinda', 1968, 'F', 388), +(96081, 'Marian', 1968, 'F', 388), +(96082, 'Gladys', 1968, 'F', 382), +(96083, 'Isabel', 1968, 'F', 382), +(96084, 'Jolene', 1968, 'F', 382), +(96085, 'Tamatha', 1968, 'F', 381), +(96086, 'Annemarie', 1968, 'F', 378), +(96087, 'Brandi', 1968, 'F', 378), +(96088, 'Bonita', 1968, 'F', 372), +(96089, 'Polly', 1968, 'F', 371), +(96090, 'Rosalind', 1968, 'F', 371), +(96091, 'Katharine', 1968, 'F', 370), +(96092, 'Patsy', 1968, 'F', 368), +(96093, 'Shellie', 1968, 'F', 368), +(96094, 'Danette', 1968, 'F', 366), +(96095, 'Lauri', 1968, 'F', 366), +(96096, 'Gwen', 1968, 'F', 361), +(96097, 'Adriana', 1968, 'F', 360), +(96098, 'Madeline', 1968, 'F', 360), +(96099, 'Stella', 1968, 'F', 357), +(96100, 'Claire', 1968, 'F', 354), +(96101, 'Ursula', 1968, 'F', 353), +(96102, 'Corinne', 1968, 'F', 351), +(96103, 'Marcie', 1968, 'F', 347), +(96104, 'Renae', 1968, 'F', 346), +(96105, 'Maura', 1968, 'F', 345), +(96106, 'Shanna', 1968, 'F', 345), +(96107, 'Elise', 1968, 'F', 342), +(96108, 'Maribel', 1968, 'F', 342), +(96109, 'Coretta', 1968, 'F', 336), +(96110, 'Margo', 1968, 'F', 336), +(96111, 'Marta', 1968, 'F', 335), +(96112, 'Vonda', 1968, 'F', 329), +(96113, 'Brooke', 1968, 'F', 327), +(96114, 'Della', 1968, 'F', 325), +(96115, 'Olivia', 1968, 'F', 325), +(96116, 'Carey', 1968, 'F', 324), +(96117, 'Jocelyn', 1968, 'F', 324), +(96118, 'Florence', 1968, 'F', 322), +(96119, 'Claudine', 1968, 'F', 321), +(96120, 'Marina', 1968, 'F', 321), +(96121, 'Bridgett', 1968, 'F', 320), +(96122, 'Caryn', 1968, 'F', 319), +(96123, 'Jessie', 1968, 'F', 319), +(96124, 'Natasha', 1968, 'F', 319), +(96125, 'Shelby', 1968, 'F', 319), +(96126, 'Mitzi', 1968, 'F', 316), +(96127, 'Blanca', 1968, 'F', 315), +(96128, 'Dee', 1968, 'F', 315), +(96129, 'Tamela', 1968, 'F', 315), +(96130, 'Latanya', 1968, 'F', 314), +(96131, 'Angelica', 1968, 'F', 313), +(96132, 'Ella', 1968, 'F', 313), +(96133, 'Liza', 1968, 'F', 313), +(96134, 'James', 1968, 'F', 312), +(96135, 'Delia', 1968, 'F', 311), +(96136, 'Randi', 1968, 'F', 311), +(96137, 'Karrie', 1968, 'F', 310), +(96138, 'Coleen', 1968, 'F', 309), +(96139, 'Tamiko', 1968, 'F', 309), +(96140, 'Kerrie', 1968, 'F', 307), +(96141, 'Lourdes', 1968, 'F', 307), +(96142, 'John', 1968, 'F', 306), +(96143, 'Lorri', 1968, 'F', 306), +(96144, 'Leeann', 1968, 'F', 302), +(96145, 'Johanna', 1968, 'F', 299), +(96146, 'Rae', 1968, 'F', 293), +(96147, 'Rosie', 1968, 'F', 290), +(96148, 'Mechelle', 1968, 'F', 287), +(96149, 'Missy', 1968, 'F', 287), +(96150, 'Brandy', 1968, 'F', 286), +(96151, 'Silvia', 1968, 'F', 286), +(96152, 'Marisol', 1968, 'F', 285), +(96153, 'Janis', 1968, 'F', 284), +(96154, 'Ethel', 1968, 'F', 283), +(96155, 'Penelope', 1968, 'F', 282), +(96156, 'Denice', 1968, 'F', 281), +(96157, 'Lorna', 1968, 'F', 281), +(96158, 'Justine', 1968, 'F', 280), +(96159, 'Lashawn', 1968, 'F', 280), +(96160, 'Sandi', 1968, 'F', 279), +(96161, 'Benita', 1968, 'F', 278), +(96162, 'Lenora', 1968, 'F', 278), +(96163, 'Saundra', 1968, 'F', 277), +(96164, 'Vikki', 1968, 'F', 277), +(96165, 'Leona', 1968, 'F', 274), +(96166, 'Rebekah', 1968, 'F', 273), +(96167, 'Lucille', 1968, 'F', 272), +(96168, 'Selena', 1968, 'F', 271), +(96169, 'Cecelia', 1968, 'F', 270), +(96170, 'Daisy', 1968, 'F', 269), +(96171, 'Lawanda', 1968, 'F', 269), +(96172, 'Eugenia', 1968, 'F', 267), +(96173, 'Simone', 1968, 'F', 267), +(96174, 'Celia', 1968, 'F', 265), +(96175, 'David', 1968, 'F', 265), +(96176, 'Robert', 1968, 'F', 265), +(96177, 'Martina', 1968, 'F', 264), +(96178, 'Abigail', 1968, 'F', 263), +(96179, 'Allyson', 1968, 'F', 262), +(96180, 'Gabrielle', 1968, 'F', 262), +(96181, 'Geneva', 1968, 'F', 262), +(96182, 'Janell', 1968, 'F', 261), +(96183, 'Tasha', 1968, 'F', 261), +(96184, 'Clarissa', 1968, 'F', 260), +(96185, 'Jayne', 1968, 'F', 258), +(96186, 'Malissa', 1968, 'F', 257), +(96187, 'Maxine', 1968, 'F', 256), +(96188, 'Robbin', 1968, 'F', 256), +(96189, 'Ada', 1968, 'F', 255), +(96190, 'Dayna', 1968, 'F', 255), +(96191, 'Gayla', 1968, 'F', 253), +(96192, 'Hilary', 1968, 'F', 253), +(96193, 'Janel', 1968, 'F', 252), +(96194, 'Lucia', 1968, 'F', 252), +(96195, 'Hilda', 1968, 'F', 250), +(96196, 'Whitney', 1968, 'F', 248), +(96197, 'Michell', 1968, 'F', 247), +(96198, 'Rosalyn', 1968, 'F', 246), +(96199, 'Faye', 1968, 'F', 245), +(96200, 'Maritza', 1968, 'F', 245), +(96201, 'Latonia', 1968, 'F', 244), +(96202, 'Elsa', 1968, 'F', 243), +(96203, 'Lolita', 1968, 'F', 243), +(96204, 'Danita', 1968, 'F', 241), +(96205, 'Hazel', 1968, 'F', 241), +(96206, 'Alisha', 1968, 'F', 239), +(96207, 'Buffy', 1968, 'F', 239), +(96208, 'Deidra', 1968, 'F', 238), +(96209, 'Marissa', 1968, 'F', 238), +(96210, 'Susana', 1968, 'F', 238), +(96211, 'Danna', 1968, 'F', 236), +(96212, 'Felecia', 1968, 'F', 236), +(96213, 'Krystal', 1968, 'F', 236), +(96214, 'Alissa', 1968, 'F', 235), +(96215, 'Cora', 1968, 'F', 235), +(96216, 'Mari', 1968, 'F', 235), +(96217, 'Letitia', 1968, 'F', 234), +(96218, 'Amie', 1968, 'F', 233), +(96219, 'Dara', 1968, 'F', 233), +(96220, 'Dawna', 1968, 'F', 233), +(96221, 'Noreen', 1968, 'F', 232), +(96222, 'Robbie', 1968, 'F', 232), +(96223, 'Marybeth', 1968, 'F', 231), +(96224, 'Adrian', 1968, 'F', 230), +(96225, 'Janna', 1968, 'F', 230), +(96226, 'Sharron', 1968, 'F', 230), +(96227, 'Richelle', 1968, 'F', 229), +(96228, 'Miranda', 1968, 'F', 228), +(96229, 'Rosalinda', 1968, 'F', 228), +(96230, 'Renita', 1968, 'F', 227), +(96231, 'Antonia', 1968, 'F', 226), +(96232, 'Mandy', 1968, 'F', 225), +(96233, 'Wilma', 1968, 'F', 225), +(96234, 'Georgina', 1968, 'F', 224), +(96235, 'Jeanie', 1968, 'F', 224), +(96236, 'Susanna', 1968, 'F', 224), +(96237, 'Casandra', 1968, 'F', 222), +(96238, 'Velma', 1968, 'F', 222), +(96239, 'Johnna', 1968, 'F', 221), +(96240, 'Rosalie', 1968, 'F', 220), +(96241, 'Anastasia', 1968, 'F', 219), +(96242, 'Laverne', 1968, 'F', 219), +(96243, 'Mara', 1968, 'F', 219), +(96244, 'Shonda', 1968, 'F', 219), +(96245, 'Lillie', 1968, 'F', 217), +(96246, 'Juli', 1968, 'F', 215), +(96247, 'Eve', 1968, 'F', 214), +(96248, 'Jeanna', 1968, 'F', 213), +(96249, 'Roseann', 1968, 'F', 213), +(96250, 'Alana', 1968, 'F', 211), +(96251, 'Charla', 1968, 'F', 211), +(96252, 'Aileen', 1968, 'F', 210), +(96253, 'Lissette', 1968, 'F', 210), +(96254, 'Leisa', 1968, 'F', 209), +(96255, 'Marni', 1968, 'F', 209), +(96256, 'Trena', 1968, 'F', 209), +(96257, 'Valeria', 1968, 'F', 209), +(96258, 'Corina', 1968, 'F', 207), +(96259, 'Johnnie', 1968, 'F', 207), +(96260, 'Luann', 1968, 'F', 207), +(96261, 'Rosanna', 1968, 'F', 207), +(96262, 'Leanna', 1968, 'F', 206), +(96263, 'Noel', 1968, 'F', 206), +(96264, 'Graciela', 1968, 'F', 205), +(96265, 'Lizette', 1968, 'F', 205), +(96266, 'Willie', 1968, 'F', 205), +(96267, 'Brigitte', 1968, 'F', 204), +(96268, 'Lenore', 1968, 'F', 203), +(96269, 'Sharlene', 1968, 'F', 203), +(96270, 'Althea', 1968, 'F', 202), +(96271, 'Caren', 1968, 'F', 202), +(96272, 'Frankie', 1968, 'F', 200), +(96273, 'Alyssa', 1968, 'F', 199), +(96274, 'Eunice', 1968, 'F', 198), +(96275, 'Kate', 1968, 'F', 198), +(96276, 'Selina', 1968, 'F', 198), +(96277, 'Genevieve', 1968, 'F', 197), +(96278, 'Tena', 1968, 'F', 197), +(96279, 'Teressa', 1968, 'F', 196), +(96280, 'Barbra', 1968, 'F', 195), +(96281, 'Pamala', 1968, 'F', 195), +(96282, 'Alesia', 1968, 'F', 194), +(96283, 'Gabriela', 1968, 'F', 194), +(96284, 'Ivy', 1968, 'F', 194), +(96285, 'Nichole', 1968, 'F', 194), +(96286, 'Antionette', 1968, 'F', 193), +(96287, 'Jeana', 1968, 'F', 193), +(96288, 'Marguerite', 1968, 'F', 193), +(96289, 'Geri', 1968, 'F', 192), +(96290, 'Adrianne', 1968, 'F', 191), +(96291, 'Demetria', 1968, 'F', 191), +(96292, 'Cindi', 1968, 'F', 190), +(96293, 'Sharla', 1968, 'F', 190), +(96294, 'William', 1968, 'F', 190), +(96295, 'Candi', 1968, 'F', 189), +(96296, 'Tawnya', 1968, 'F', 189), +(96297, 'Alecia', 1968, 'F', 187), +(96298, 'Kathrine', 1968, 'F', 187), +(96299, 'Verna', 1968, 'F', 187), +(96300, 'Josie', 1968, 'F', 186), +(96301, 'Lola', 1968, 'F', 186), +(96302, 'Brigette', 1968, 'F', 185), +(96303, 'Ernestine', 1968, 'F', 185), +(96304, 'Helena', 1968, 'F', 185), +(96305, 'Carolina', 1968, 'F', 184), +(96306, 'Ivette', 1968, 'F', 184), +(96307, 'Keisha', 1968, 'F', 184), +(96308, 'Valencia', 1968, 'F', 184), +(96309, 'Charmaine', 1968, 'F', 183), +(96310, 'Ericka', 1968, 'F', 183), +(96311, 'Evette', 1968, 'F', 183), +(96312, 'Jacquline', 1968, 'F', 183), +(96313, 'Juliet', 1968, 'F', 182), +(96314, 'Lisette', 1968, 'F', 182), +(96315, 'Tawana', 1968, 'F', 182), +(96316, 'Janeen', 1968, 'F', 181), +(96317, 'Roslyn', 1968, 'F', 181), +(96318, 'Tamika', 1968, 'F', 181), +(96319, 'Adriane', 1968, 'F', 180), +(96320, 'Alberta', 1968, 'F', 180), +(96321, 'Corinna', 1968, 'F', 180), +(96322, 'Darci', 1968, 'F', 179), +(96323, 'Dedra', 1968, 'F', 179), +(96324, 'Stacia', 1968, 'F', 179), +(96325, 'Tisha', 1968, 'F', 179), +(96326, 'Ava', 1968, 'F', 178), +(96327, 'Chantel', 1968, 'F', 178), +(96328, 'Hillary', 1968, 'F', 178), +(96329, 'Machelle', 1968, 'F', 177), +(96330, 'Aida', 1968, 'F', 176), +(96331, 'Athena', 1968, 'F', 176), +(96332, 'Bettina', 1968, 'F', 176), +(96333, 'Carmela', 1968, 'F', 176), +(96334, 'Judi', 1968, 'F', 176), +(96335, 'Maggie', 1968, 'F', 176), +(96336, 'Sheree', 1968, 'F', 176), +(96337, 'Chrystal', 1968, 'F', 175), +(96338, 'Tana', 1968, 'F', 175), +(96339, 'Alexis', 1968, 'F', 174), +(96340, 'Angelita', 1968, 'F', 174), +(96341, 'Hollie', 1968, 'F', 174), +(96342, 'Roxann', 1968, 'F', 174), +(96343, 'Libby', 1968, 'F', 173), +(96344, 'Claudette', 1968, 'F', 172), +(96345, 'Mellissa', 1968, 'F', 172), +(96346, 'Pearl', 1968, 'F', 172), +(96347, 'Melodie', 1968, 'F', 171), +(96348, 'Elissa', 1968, 'F', 170), +(96349, 'Gerri', 1968, 'F', 170), +(96350, 'Laureen', 1968, 'F', 170), +(96351, 'Patrica', 1968, 'F', 170), +(96352, 'Deloris', 1968, 'F', 169), +(96353, 'Estella', 1968, 'F', 169), +(96354, 'Gay', 1968, 'F', 169), +(96355, 'Georgette', 1968, 'F', 169), +(96356, 'Lou', 1968, 'F', 169), +(96357, 'Rosanne', 1968, 'F', 169), +(96358, 'Valorie', 1968, 'F', 169), +(96359, 'Larissa', 1968, 'F', 168), +(96360, 'Cassie', 1968, 'F', 167), +(96361, 'Lanette', 1968, 'F', 167), +(96362, 'Elsie', 1968, 'F', 166), +(96363, 'Cathryn', 1968, 'F', 165), +(96364, 'Francesca', 1968, 'F', 165), +(96365, 'Nellie', 1968, 'F', 165), +(96366, 'Rosetta', 1968, 'F', 165), +(96367, 'Kecia', 1968, 'F', 164), +(96368, 'Lavonne', 1968, 'F', 164), +(96369, 'Tresa', 1968, 'F', 164), +(96370, 'Cami', 1968, 'F', 163), +(96371, 'Milissa', 1968, 'F', 163), +(96372, 'Viola', 1968, 'F', 163), +(96373, 'Danelle', 1968, 'F', 162), +(96374, 'Kimberli', 1968, 'F', 162), +(96375, 'Richard', 1968, 'F', 162), +(96376, 'Roxanna', 1968, 'F', 162), +(96377, 'Dorothea', 1968, 'F', 160), +(96378, 'Gale', 1968, 'F', 160), +(96379, 'Shannan', 1968, 'F', 160), +(96380, 'Bessie', 1968, 'F', 159), +(96381, 'Esmeralda', 1968, 'F', 159), +(96382, 'Karri', 1968, 'F', 159), +(96383, 'Kathie', 1968, 'F', 159), +(96384, 'Kristal', 1968, 'F', 159), +(96385, 'Windy', 1968, 'F', 159), +(96386, 'Aurora', 1968, 'F', 158), +(96387, 'Catrina', 1968, 'F', 158), +(96388, 'Myrna', 1968, 'F', 158), +(96389, 'Noemi', 1968, 'F', 158), +(96390, 'Dixie', 1968, 'F', 157), +(96391, 'Helene', 1968, 'F', 157), +(96392, 'Kathi', 1968, 'F', 157), +(96393, 'Mark', 1968, 'F', 157), +(96394, 'Maryanne', 1968, 'F', 157), +(96395, 'Mercedes', 1968, 'F', 157), +(96396, 'Yolonda', 1968, 'F', 157), +(96397, 'Davina', 1968, 'F', 156), +(96398, 'Suzan', 1968, 'F', 156), +(96399, 'Corrine', 1968, 'F', 155), +(96400, 'Mattie', 1968, 'F', 155), +(96401, 'Minnie', 1968, 'F', 155), +(96402, 'Agnes', 1968, 'F', 154), +(96403, 'Monika', 1968, 'F', 154), +(96404, 'Shanon', 1968, 'F', 154), +(96405, 'Carie', 1968, 'F', 153), +(96406, 'Kirstin', 1968, 'F', 153), +(96407, 'Latrice', 1968, 'F', 153), +(96408, 'Maryellen', 1968, 'F', 153), +(96409, 'Beatriz', 1968, 'F', 152), +(96410, 'Carlene', 1968, 'F', 151), +(96411, 'Dale', 1968, 'F', 151), +(96412, 'Diann', 1968, 'F', 151), +(96413, 'Dona', 1968, 'F', 151), +(96414, 'Holli', 1968, 'F', 151), +(96415, 'Venus', 1968, 'F', 151), +(96416, 'Elvira', 1968, 'F', 150), +(96417, 'Freda', 1968, 'F', 150), +(96418, 'Tamala', 1968, 'F', 150), +(96419, 'Carin', 1968, 'F', 149), +(96420, 'Juliana', 1968, 'F', 149), +(96421, 'Darcie', 1968, 'F', 148), +(96422, 'Juana', 1968, 'F', 148), +(96423, 'Kandy', 1968, 'F', 148), +(96424, 'Loriann', 1968, 'F', 148), +(96425, 'Milagros', 1968, 'F', 148), +(96426, 'Tyra', 1968, 'F', 148), +(96427, 'Leesa', 1968, 'F', 147), +(96428, 'Charisse', 1968, 'F', 146), +(96429, 'Jewel', 1968, 'F', 146), +(96430, 'Mollie', 1968, 'F', 146), +(96431, 'Roxane', 1968, 'F', 146), +(96432, 'Sallie', 1968, 'F', 146), +(96433, 'Cammie', 1968, 'F', 145), +(96434, 'Casey', 1968, 'F', 145), +(96435, 'Cherry', 1968, 'F', 145), +(96436, 'Harriet', 1968, 'F', 145), +(96437, 'Joey', 1968, 'F', 145), +(96438, 'Lupe', 1968, 'F', 145), +(96439, 'Tori', 1968, 'F', 145), +(96440, 'Kandi', 1968, 'F', 144), +(96441, 'Angeline', 1968, 'F', 143), +(96442, 'Hannah', 1968, 'F', 143), +(96443, 'Meghan', 1968, 'F', 143), +(96444, 'Rhoda', 1968, 'F', 143), +(96445, 'Starla', 1968, 'F', 143), +(96446, 'Suzanna', 1968, 'F', 143), +(96447, 'Jaime', 1968, 'F', 142), +(96448, 'Cristy', 1968, 'F', 141), +(96449, 'Kayla', 1968, 'F', 141), +(96450, 'Renea', 1968, 'F', 141), +(96451, 'Violet', 1968, 'F', 141), +(96452, 'Carri', 1968, 'F', 140), +(96453, 'Kimberlie', 1968, 'F', 140), +(96454, 'Nannette', 1968, 'F', 140), +(96455, 'Consuelo', 1968, 'F', 139), +(96456, 'Karie', 1968, 'F', 139), +(96457, 'Maricela', 1968, 'F', 139), +(96458, 'Twila', 1968, 'F', 139), +(96459, 'Camilla', 1968, 'F', 138), +(96460, 'Deneen', 1968, 'F', 138), +(96461, 'Flora', 1968, 'F', 138), +(96462, 'Glenna', 1968, 'F', 138), +(96463, 'Lorinda', 1968, 'F', 138), +(96464, 'Melonie', 1968, 'F', 138), +(96465, 'Timothy', 1968, 'F', 138), +(96466, 'Anthony', 1968, 'F', 137), +(96467, 'Collette', 1968, 'F', 137), +(96468, 'Dominique', 1968, 'F', 137), +(96469, 'Edwina', 1968, 'F', 137), +(96470, 'Andra', 1968, 'F', 136), +(96471, 'Jolie', 1968, 'F', 136), +(96472, 'Shanda', 1968, 'F', 136), +(96473, 'Inez', 1968, 'F', 135), +(96474, 'Petra', 1968, 'F', 135), +(96475, 'Abby', 1968, 'F', 134), +(96476, 'Alyson', 1968, 'F', 134), +(96477, 'Carmella', 1968, 'F', 134), +(96478, 'Joseph', 1968, 'F', 134), +(96479, 'Lela', 1968, 'F', 133), +(96480, 'Lucretia', 1968, 'F', 133), +(96481, 'Migdalia', 1968, 'F', 133), +(96482, 'Ronna', 1968, 'F', 133), +(96483, 'Teena', 1968, 'F', 133), +(96484, 'Christopher', 1968, 'F', 132), +(96485, 'Lesia', 1968, 'F', 132), +(96486, 'Maryjo', 1968, 'F', 132), +(96487, 'Misti', 1968, 'F', 132), +(96488, 'Carleen', 1968, 'F', 131), +(96489, 'Clare', 1968, 'F', 131), +(96490, 'Gracie', 1968, 'F', 131), +(96491, 'Ilene', 1968, 'F', 131), +(96492, 'Charles', 1968, 'F', 130), +(96493, 'Cristi', 1968, 'F', 130), +(96494, 'Tangela', 1968, 'F', 130), +(96495, 'Dorene', 1968, 'F', 129), +(96496, 'Josefina', 1968, 'F', 129), +(96497, 'Shiela', 1968, 'F', 129), +(96498, 'Towanda', 1968, 'F', 129), +(96499, 'Elva', 1968, 'F', 128), +(96500, 'Lorene', 1968, 'F', 128), +(96501, 'Pennie', 1968, 'F', 128), +(96502, 'Annamarie', 1968, 'F', 127), +(96503, 'Cori', 1968, 'F', 127), +(96504, 'Juliann', 1968, 'F', 127), +(96505, 'Dorinda', 1968, 'F', 126), +(96506, 'Jena', 1968, 'F', 126), +(96507, 'Karol', 1968, 'F', 126), +(96508, 'Latricia', 1968, 'F', 126), +(96509, 'Lesli', 1968, 'F', 126), +(96510, 'Mayra', 1968, 'F', 126), +(96511, 'Tamie', 1968, 'F', 126), +(96512, 'Kenya', 1968, 'F', 125), +(96513, 'Kevin', 1968, 'F', 125), +(96514, 'Sherie', 1968, 'F', 125), +(96515, 'Tiffani', 1968, 'F', 125), +(96516, 'Cary', 1968, 'F', 124), +(96517, 'Lavonda', 1968, 'F', 124), +(96518, 'Roni', 1968, 'F', 124), +(96519, 'Francis', 1968, 'F', 123), +(96520, 'Araceli', 1968, 'F', 122), +(96521, 'Delisa', 1968, 'F', 122), +(96522, 'Louisa', 1968, 'F', 122), +(96523, 'Lyn', 1968, 'F', 122), +(96524, 'Stephenie', 1968, 'F', 122), +(96525, 'Thomas', 1968, 'F', 122), +(96526, 'Barbie', 1968, 'F', 121), +(96527, 'Cherri', 1968, 'F', 121), +(96528, 'Demetra', 1968, 'F', 121), +(96529, 'Kimberely', 1968, 'F', 121), +(96530, 'Madonna', 1968, 'F', 121), +(96531, 'Melissia', 1968, 'F', 121), +(96532, 'Rosario', 1968, 'F', 121), +(96533, 'Debby', 1968, 'F', 120), +(96534, 'Marti', 1968, 'F', 120), +(96535, 'Nita', 1968, 'F', 120), +(96536, 'Nanci', 1968, 'F', 119), +(96537, 'Deedee', 1968, 'F', 118), +(96538, 'Jonna', 1968, 'F', 118), +(96539, 'Kaye', 1968, 'F', 118), +(96540, 'Liz', 1968, 'F', 118), +(96541, 'Chantal', 1968, 'F', 117), +(96542, 'Corrina', 1968, 'F', 117), +(96543, 'Magdalena', 1968, 'F', 117), +(96544, 'Minerva', 1968, 'F', 117), +(96545, 'Andria', 1968, 'F', 116), +(96546, 'Erma', 1968, 'F', 116), +(96547, 'Gillian', 1968, 'F', 116), +(96548, 'Luanne', 1968, 'F', 116), +(96549, 'Marlena', 1968, 'F', 116), +(96550, 'Paul', 1968, 'F', 116), +(96551, 'Reba', 1968, 'F', 116), +(96552, 'Rona', 1968, 'F', 116), +(96553, 'Charity', 1968, 'F', 115), +(96554, 'Kami', 1968, 'F', 115), +(96555, 'Leilani', 1968, 'F', 115), +(96556, 'Lila', 1968, 'F', 115), +(96557, 'Tessa', 1968, 'F', 115), +(96558, 'Treva', 1968, 'F', 115), +(96559, 'Vickey', 1968, 'F', 115), +(96560, 'Bernadine', 1968, 'F', 114), +(96561, 'Christal', 1968, 'F', 114), +(96562, 'Rolanda', 1968, 'F', 114), +(96563, 'Romona', 1968, 'F', 114), +(96564, 'Christian', 1968, 'F', 113), +(96565, 'Dolly', 1968, 'F', 113), +(96566, 'Henrietta', 1968, 'F', 113), +(96567, 'Nicola', 1968, 'F', 113), +(96568, 'Roseanne', 1968, 'F', 113), +(96569, 'Steven', 1968, 'F', 113), +(96570, 'Dori', 1968, 'F', 112), +(96571, 'Kellee', 1968, 'F', 112), +(96572, 'Loraine', 1968, 'F', 112), +(96573, 'Mae', 1968, 'F', 112), +(96574, 'Rhea', 1968, 'F', 112), +(96575, 'Alfreda', 1968, 'F', 111), +(96576, 'Antonette', 1968, 'F', 111), +(96577, 'Eliza', 1968, 'F', 111), +(96578, 'Fay', 1968, 'F', 111), +(96579, 'Jeffrey', 1968, 'F', 111), +(96580, 'Loren', 1968, 'F', 111), +(96581, 'Moira', 1968, 'F', 111), +(96582, 'Susannah', 1968, 'F', 111), +(96583, 'Adele', 1968, 'F', 110), +(96584, 'Cristine', 1968, 'F', 110), +(96585, 'Donita', 1968, 'F', 110), +(96586, 'Hattie', 1968, 'F', 110), +(96587, 'Tanja', 1968, 'F', 110), +(96588, 'Chantelle', 1968, 'F', 109), +(96589, 'Jerry', 1968, 'F', 109), +(96590, 'Katy', 1968, 'F', 109), +(96591, 'Lahoma', 1968, 'F', 109), +(96592, 'Marva', 1968, 'F', 109), +(96593, 'Katheryn', 1968, 'F', 108), +(96594, 'Justina', 1968, 'F', 106), +(96595, 'Lia', 1968, 'F', 106), +(96596, 'Liana', 1968, 'F', 106), +(96597, 'Mamie', 1968, 'F', 106), +(96598, 'Terese', 1968, 'F', 106), +(96599, 'Toya', 1968, 'F', 106), +(96600, 'Brian', 1968, 'F', 105), +(96601, 'Jacquelin', 1968, 'F', 105), +(96602, 'Leila', 1968, 'F', 105), +(96603, 'Twyla', 1968, 'F', 105), +(96604, 'Evangeline', 1968, 'F', 104), +(96605, 'Ronnie', 1968, 'F', 104), +(96606, 'Tawanda', 1968, 'F', 104), +(96607, 'Trudi', 1968, 'F', 104), +(96608, 'Anjanette', 1968, 'F', 103), +(96609, 'Daniel', 1968, 'F', 103), +(96610, 'Hayley', 1968, 'F', 103), +(96611, 'Keli', 1968, 'F', 103), +(96612, 'Melony', 1968, 'F', 103), +(96613, 'Thea', 1968, 'F', 103), +(96614, 'Bethann', 1968, 'F', 102), +(96615, 'Celina', 1968, 'F', 102), +(96616, 'Liane', 1968, 'F', 102), +(96617, 'Sydney', 1968, 'F', 102), +(96618, 'Bobby', 1968, 'F', 101), +(96619, 'Christin', 1968, 'F', 101), +(96620, 'Ginny', 1968, 'F', 101), +(96621, 'Ina', 1968, 'F', 101), +(96622, 'Lilia', 1968, 'F', 101), +(96623, 'Marisela', 1968, 'F', 101), +(96624, 'May', 1968, 'F', 101), +(96625, 'Michaela', 1968, 'F', 101), +(96626, 'Nicki', 1968, 'F', 101), +(96627, 'Scarlett', 1968, 'F', 101), +(96628, 'Tressa', 1968, 'F', 101), +(96629, 'Cornelia', 1968, 'F', 100), +(96630, 'Elaina', 1968, 'F', 100), +(96631, 'Etta', 1968, 'F', 100), +(96632, 'Gia', 1968, 'F', 100), +(96633, 'Jayme', 1968, 'F', 100), +(96634, 'Kristan', 1968, 'F', 100), +(96635, 'Larisa', 1968, 'F', 100), +(96636, 'Linette', 1968, 'F', 100), +(96637, 'Luisa', 1968, 'F', 100), +(96638, 'Millicent', 1968, 'F', 100), +(96639, 'Niki', 1968, 'F', 100), +(96640, 'Racquel', 1968, 'F', 100), +(96641, 'Tammara', 1968, 'F', 100), +(96642, 'Michael', 1968, 'M', 82019), +(96643, 'David', 1968, 'M', 63739), +(96644, 'John', 1968, 'M', 60924), +(96645, 'James', 1968, 'M', 60730), +(96646, 'Robert', 1968, 'M', 58229), +(96647, 'William', 1968, 'M', 36968), +(96648, 'Mark', 1968, 'M', 35429), +(96649, 'Richard', 1968, 'M', 33000), +(96650, 'Christopher', 1968, 'M', 31478), +(96651, 'Brian', 1968, 'M', 29950), +(96652, 'Jeffrey', 1968, 'M', 28381), +(96653, 'Thomas', 1968, 'M', 27456), +(96654, 'Timothy', 1968, 'M', 26521), +(96655, 'Scott', 1968, 'M', 26028), +(96656, 'Steven', 1968, 'M', 25507), +(96657, 'Joseph', 1968, 'M', 25404), +(96658, 'Kevin', 1968, 'M', 23880), +(96659, 'Daniel', 1968, 'M', 22026), +(96660, 'Paul', 1968, 'M', 21881), +(96661, 'Charles', 1968, 'M', 21576), +(96662, 'Anthony', 1968, 'M', 20237), +(96663, 'Eric', 1968, 'M', 18509), +(96664, 'Kenneth', 1968, 'M', 18091), +(96665, 'Matthew', 1968, 'M', 15843), +(96666, 'Ronald', 1968, 'M', 15430), +(96667, 'Gregory', 1968, 'M', 15413), +(96668, 'Stephen', 1968, 'M', 14771), +(96669, 'Todd', 1968, 'M', 14662), +(96670, 'Donald', 1968, 'M', 13375), +(96671, 'Patrick', 1968, 'M', 13054), +(96672, 'Edward', 1968, 'M', 12291), +(96673, 'Gary', 1968, 'M', 11982), +(96674, 'Douglas', 1968, 'M', 11418), +(96675, 'Andrew', 1968, 'M', 10563), +(96676, 'Keith', 1968, 'M', 9870), +(96677, 'George', 1968, 'M', 9389), +(96678, 'Sean', 1968, 'M', 9192), +(96679, 'Larry', 1968, 'M', 8231), +(96680, 'Peter', 1968, 'M', 8131), +(96681, 'Troy', 1968, 'M', 7985), +(96682, 'Craig', 1968, 'M', 7870), +(96683, 'Rodney', 1968, 'M', 7512), +(96684, 'Shawn', 1968, 'M', 7478), +(96685, 'Jerry', 1968, 'M', 7451), +(96686, 'Dennis', 1968, 'M', 7401), +(96687, 'Jeffery', 1968, 'M', 7223), +(96688, 'Jason', 1968, 'M', 7157), +(96689, 'Terry', 1968, 'M', 7093), +(96690, 'Frank', 1968, 'M', 6898), +(96691, 'Raymond', 1968, 'M', 6884), +(96692, 'Bryan', 1968, 'M', 6255), +(96693, 'Tony', 1968, 'M', 5882), +(96694, 'Jonathan', 1968, 'M', 5813), +(96695, 'Randy', 1968, 'M', 5716), +(96696, 'Roger', 1968, 'M', 5189), +(96697, 'Russell', 1968, 'M', 5097), +(96698, 'Bradley', 1968, 'M', 4810), +(96699, 'Jose', 1968, 'M', 4795), +(96700, 'Carl', 1968, 'M', 4649), +(96701, 'Darren', 1968, 'M', 4644), +(96702, 'Bruce', 1968, 'M', 4489), +(96703, 'Gerald', 1968, 'M', 4477), +(96704, 'Wayne', 1968, 'M', 4264), +(96705, 'Chris', 1968, 'M', 4252), +(96706, 'Jon', 1968, 'M', 4211), +(96707, 'Samuel', 1968, 'M', 4125), +(96708, 'Lawrence', 1968, 'M', 4107), +(96709, 'Martin', 1968, 'M', 4076), +(96710, 'Johnny', 1968, 'M', 4053), +(96711, 'Ricky', 1968, 'M', 4038), +(96712, 'Alan', 1968, 'M', 3988), +(96713, 'Phillip', 1968, 'M', 3988), +(96714, 'Vincent', 1968, 'M', 3984), +(96715, 'Danny', 1968, 'M', 3982), +(96716, 'Curtis', 1968, 'M', 3852), +(96717, 'Billy', 1968, 'M', 3814), +(96718, 'Jimmy', 1968, 'M', 3808), +(96719, 'Dean', 1968, 'M', 3804), +(96720, 'Randall', 1968, 'M', 3754), +(96721, 'Joel', 1968, 'M', 3685), +(96722, 'Bobby', 1968, 'M', 3632), +(96723, 'Philip', 1968, 'M', 3619), +(96724, 'Walter', 1968, 'M', 3591), +(96725, 'Marc', 1968, 'M', 3543), +(96726, 'Joe', 1968, 'M', 3529), +(96727, 'Darrell', 1968, 'M', 3448), +(96728, 'Jay', 1968, 'M', 3434), +(96729, 'Aaron', 1968, 'M', 3427), +(96730, 'Steve', 1968, 'M', 3410), +(96731, 'Jeff', 1968, 'M', 3281), +(96732, 'Dale', 1968, 'M', 3259), +(96733, 'Glenn', 1968, 'M', 3244), +(96734, 'Mike', 1968, 'M', 3218), +(96735, 'Roy', 1968, 'M', 3181), +(96736, 'Henry', 1968, 'M', 3129), +(96737, 'Willie', 1968, 'M', 3110), +(96738, 'Kelly', 1968, 'M', 3058), +(96739, 'Arthur', 1968, 'M', 3042), +(96740, 'Benjamin', 1968, 'M', 3023), +(96741, 'Allen', 1968, 'M', 2966), +(96742, 'Victor', 1968, 'M', 2937), +(96743, 'Chad', 1968, 'M', 2920), +(96744, 'Albert', 1968, 'M', 2919), +(96745, 'Brent', 1968, 'M', 2919), +(96746, 'Brett', 1968, 'M', 2902), +(96747, 'Lee', 1968, 'M', 2873), +(96748, 'Barry', 1968, 'M', 2856), +(96749, 'Harold', 1968, 'M', 2839), +(96750, 'Louis', 1968, 'M', 2707), +(96751, 'Jack', 1968, 'M', 2699), +(96752, 'Tracy', 1968, 'M', 2654), +(96753, 'Juan', 1968, 'M', 2630), +(96754, 'Frederick', 1968, 'M', 2613), +(96755, 'Ronnie', 1968, 'M', 2599), +(96756, 'Micheal', 1968, 'M', 2598), +(96757, 'Derrick', 1968, 'M', 2591), +(96758, 'Nicholas', 1968, 'M', 2562), +(96759, 'Reginald', 1968, 'M', 2554), +(96760, 'Adam', 1968, 'M', 2547), +(96761, 'Shane', 1968, 'M', 2513), +(96762, 'Carlos', 1968, 'M', 2501), +(96763, 'Derek', 1968, 'M', 2464), +(96764, 'Kurt', 1968, 'M', 2452), +(96765, 'Tommy', 1968, 'M', 2367), +(96766, 'Erik', 1968, 'M', 2365), +(96767, 'Eugene', 1968, 'M', 2363), +(96768, 'Ralph', 1968, 'M', 2322), +(96769, 'Leonard', 1968, 'M', 2258), +(96770, 'Marvin', 1968, 'M', 2255), +(96771, 'Ernest', 1968, 'M', 2244), +(96772, 'Ryan', 1968, 'M', 2176), +(96773, 'Eddie', 1968, 'M', 2170), +(96774, 'Howard', 1968, 'M', 2155), +(96775, 'Jesse', 1968, 'M', 2152), +(96776, 'Stanley', 1968, 'M', 2148), +(96777, 'Antonio', 1968, 'M', 2145), +(96778, 'Dwayne', 1968, 'M', 2086), +(96779, 'Darrin', 1968, 'M', 2078), +(96780, 'Tim', 1968, 'M', 2073), +(96781, 'Darryl', 1968, 'M', 2069), +(96782, 'Travis', 1968, 'M', 2066), +(96783, 'Greg', 1968, 'M', 2048), +(96784, 'Kirk', 1968, 'M', 2012), +(96785, 'Lance', 1968, 'M', 1999), +(96786, 'Andre', 1968, 'M', 1969), +(96787, 'Duane', 1968, 'M', 1964), +(96788, 'Darin', 1968, 'M', 1954), +(96789, 'Kyle', 1968, 'M', 1944), +(96790, 'Theodore', 1968, 'M', 1891), +(96791, 'Melvin', 1968, 'M', 1799), +(96792, 'Christian', 1968, 'M', 1779), +(96793, 'Harry', 1968, 'M', 1778), +(96794, 'Luis', 1968, 'M', 1778), +(96795, 'Alexander', 1968, 'M', 1775), +(96796, 'Norman', 1968, 'M', 1765), +(96797, 'Calvin', 1968, 'M', 1760), +(96798, 'Stacy', 1968, 'M', 1735), +(96799, 'Brad', 1968, 'M', 1713), +(96800, 'Shannon', 1968, 'M', 1707), +(96801, 'Edwin', 1968, 'M', 1688), +(96802, 'Jerome', 1968, 'M', 1686), +(96803, 'Glen', 1968, 'M', 1671), +(96804, 'Nathan', 1968, 'M', 1658), +(96805, 'Earl', 1968, 'M', 1652), +(96806, 'Wesley', 1968, 'M', 1643), +(96807, 'Mitchell', 1968, 'M', 1628), +(96808, 'Clifford', 1968, 'M', 1610), +(96809, 'Karl', 1968, 'M', 1603), +(96810, 'Ray', 1968, 'M', 1596), +(96811, 'Manuel', 1968, 'M', 1594), +(96812, 'Corey', 1968, 'M', 1579), +(96813, 'Fred', 1968, 'M', 1572), +(96814, 'Warren', 1968, 'M', 1549), +(96815, 'Marcus', 1968, 'M', 1544), +(96816, 'Daryl', 1968, 'M', 1513), +(96817, 'Francis', 1968, 'M', 1513), +(96818, 'Jim', 1968, 'M', 1504), +(96819, 'Alfred', 1968, 'M', 1493), +(96820, 'Maurice', 1968, 'M', 1476), +(96821, 'Tyrone', 1968, 'M', 1449), +(96822, 'Lonnie', 1968, 'M', 1444), +(96823, 'Rick', 1968, 'M', 1430), +(96824, 'Don', 1968, 'M', 1405), +(96825, 'Clarence', 1968, 'M', 1379), +(96826, 'Tom', 1968, 'M', 1360), +(96827, 'Mario', 1968, 'M', 1356), +(96828, 'Ricardo', 1968, 'M', 1348), +(96829, 'Damon', 1968, 'M', 1330), +(96830, 'Bernard', 1968, 'M', 1309), +(96831, 'Jody', 1968, 'M', 1299), +(96832, 'Dan', 1968, 'M', 1271), +(96833, 'Jesus', 1968, 'M', 1229), +(96834, 'Jamie', 1968, 'M', 1224), +(96835, 'Kent', 1968, 'M', 1219), +(96836, 'Roberto', 1968, 'M', 1214), +(96837, 'Leroy', 1968, 'M', 1199), +(96838, 'Leon', 1968, 'M', 1197), +(96839, 'Franklin', 1968, 'M', 1183), +(96840, 'Gilbert', 1968, 'M', 1169), +(96841, 'Alex', 1968, 'M', 1161), +(96842, 'Bill', 1968, 'M', 1160), +(96843, 'Guy', 1968, 'M', 1145), +(96844, 'Vernon', 1968, 'M', 1142), +(96845, 'Ruben', 1968, 'M', 1139), +(96846, 'Terrence', 1968, 'M', 1132), +(96847, 'Byron', 1968, 'M', 1128), +(96848, 'Wade', 1968, 'M', 1125), +(96849, 'Clinton', 1968, 'M', 1124), +(96850, 'Joey', 1968, 'M', 1111), +(96851, 'Alvin', 1968, 'M', 1109), +(96852, 'Justin', 1968, 'M', 1109), +(96853, 'Miguel', 1968, 'M', 1108), +(96854, 'Gordon', 1968, 'M', 1093), +(96855, 'Kerry', 1968, 'M', 1085), +(96856, 'Stacey', 1968, 'M', 1075), +(96857, 'Gene', 1968, 'M', 1070), +(96858, 'Herbert', 1968, 'M', 1058), +(96859, 'Neil', 1968, 'M', 1058), +(96860, 'Ted', 1968, 'M', 1050), +(96861, 'Hector', 1968, 'M', 1037), +(96862, 'Terrance', 1968, 'M', 1020), +(96863, 'Dana', 1968, 'M', 1018), +(96864, 'Leslie', 1968, 'M', 1012), +(96865, 'Marty', 1968, 'M', 1005), +(96866, 'Lloyd', 1968, 'M', 1003), +(96867, 'Roderick', 1968, 'M', 998), +(96868, 'Kelvin', 1968, 'M', 997), +(96869, 'Francisco', 1968, 'M', 986), +(96870, 'Timmy', 1968, 'M', 969), +(96871, 'Lewis', 1968, 'M', 964), +(96872, 'Adrian', 1968, 'M', 959), +(96873, 'Geoffrey', 1968, 'M', 949), +(96874, 'Dwight', 1968, 'M', 943), +(96875, 'Gregg', 1968, 'M', 942), +(96876, 'Nathaniel', 1968, 'M', 924), +(96877, 'Andy', 1968, 'M', 907), +(96878, 'Oscar', 1968, 'M', 905), +(96879, 'Jorge', 1968, 'M', 903), +(96880, 'Stuart', 1968, 'M', 891), +(96881, 'Perry', 1968, 'M', 890), +(96882, 'Raul', 1968, 'M', 886), +(96883, 'Donnie', 1968, 'M', 875), +(96884, 'Allan', 1968, 'M', 872), +(96885, 'Shaun', 1968, 'M', 851), +(96886, 'Ross', 1968, 'M', 848), +(96887, 'Bret', 1968, 'M', 841), +(96888, 'Jimmie', 1968, 'M', 839), +(96889, 'Angel', 1968, 'M', 831), +(96890, 'Floyd', 1968, 'M', 830), +(96891, 'Fredrick', 1968, 'M', 823), +(96892, 'Ramon', 1968, 'M', 819), +(96893, 'Ron', 1968, 'M', 817), +(96894, 'Roland', 1968, 'M', 797), +(96895, 'Jaime', 1968, 'M', 790), +(96896, 'Pedro', 1968, 'M', 788), +(96897, 'Terence', 1968, 'M', 786), +(96898, 'Trevor', 1968, 'M', 785), +(96899, 'Matt', 1968, 'M', 784), +(96900, 'Rafael', 1968, 'M', 769), +(96901, 'Rickey', 1968, 'M', 769), +(96902, 'Nelson', 1968, 'M', 764), +(96903, 'Dexter', 1968, 'M', 761), +(96904, 'Brandon', 1968, 'M', 759), +(96905, 'Clayton', 1968, 'M', 758), +(96906, 'Kenny', 1968, 'M', 752), +(96907, 'Lester', 1968, 'M', 748), +(96908, 'Charlie', 1968, 'M', 739), +(96909, 'Johnnie', 1968, 'M', 738), +(96910, 'Javier', 1968, 'M', 737), +(96911, 'Gabriel', 1968, 'M', 733), +(96912, 'Joshua', 1968, 'M', 732), +(96913, 'Jackie', 1968, 'M', 721), +(96914, 'Freddie', 1968, 'M', 719), +(96915, 'Ian', 1968, 'M', 718), +(96916, 'Jessie', 1968, 'M', 717), +(96917, 'Cory', 1968, 'M', 716), +(96918, 'Rene', 1968, 'M', 709), +(96919, 'Marshall', 1968, 'M', 708), +(96920, 'Leo', 1968, 'M', 693), +(96921, 'Cedric', 1968, 'M', 690), +(96922, 'Clifton', 1968, 'M', 684), +(96923, 'Milton', 1968, 'M', 681), +(96924, 'Bryant', 1968, 'M', 678), +(96925, 'Dave', 1968, 'M', 668), +(96926, 'Nick', 1968, 'M', 666), +(96927, 'Cary', 1968, 'M', 664), +(96928, 'Herman', 1968, 'M', 662), +(96929, 'Trent', 1968, 'M', 660), +(96930, 'Arnold', 1968, 'M', 658), +(96931, 'Robbie', 1968, 'M', 652), +(96932, 'Neal', 1968, 'M', 651); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(96933, 'Fernando', 1968, 'M', 649), +(96934, 'Orlando', 1968, 'M', 649), +(96935, 'Armando', 1968, 'M', 642), +(96936, 'Ivan', 1968, 'M', 640), +(96937, 'Jeremy', 1968, 'M', 640), +(96938, 'Alberto', 1968, 'M', 639), +(96939, 'Noel', 1968, 'M', 639), +(96940, 'Harvey', 1968, 'M', 631), +(96941, 'Ben', 1968, 'M', 630), +(96942, 'Clyde', 1968, 'M', 627), +(96943, 'Mathew', 1968, 'M', 619), +(96944, 'Wendell', 1968, 'M', 612), +(96945, 'Carlton', 1968, 'M', 603), +(96946, 'Randolph', 1968, 'M', 603), +(96947, 'Ken', 1968, 'M', 602), +(96948, 'Frankie', 1968, 'M', 599), +(96949, 'Edgar', 1968, 'M', 597), +(96950, 'Robin', 1968, 'M', 594), +(96951, 'Eduardo', 1968, 'M', 591), +(96952, 'Randal', 1968, 'M', 590), +(96953, 'Gerard', 1968, 'M', 585), +(96954, 'Scotty', 1968, 'M', 585), +(96955, 'Doug', 1968, 'M', 582), +(96956, 'Bart', 1968, 'M', 574), +(96957, 'Grant', 1968, 'M', 573), +(96958, 'Sidney', 1968, 'M', 573), +(96959, 'Loren', 1968, 'M', 571), +(96960, 'Felix', 1968, 'M', 570), +(96961, 'Sam', 1968, 'M', 565), +(96962, 'Cecil', 1968, 'M', 563), +(96963, 'Scot', 1968, 'M', 555), +(96964, 'Jacob', 1968, 'M', 554), +(96965, 'Toby', 1968, 'M', 554), +(96966, 'Casey', 1968, 'M', 552), +(96967, 'Heath', 1968, 'M', 548), +(96968, 'Dominic', 1968, 'M', 546), +(96969, 'Spencer', 1968, 'M', 540), +(96970, 'Curt', 1968, 'M', 536), +(96971, 'Bradford', 1968, 'M', 535), +(96972, 'Salvatore', 1968, 'M', 531), +(96973, 'Claude', 1968, 'M', 530), +(96974, 'Seth', 1968, 'M', 526), +(96975, 'Clint', 1968, 'M', 524), +(96976, 'Dewayne', 1968, 'M', 524), +(96977, 'Jared', 1968, 'M', 521), +(96978, 'Angelo', 1968, 'M', 519), +(96979, 'Rudy', 1968, 'M', 518), +(96980, 'Rex', 1968, 'M', 513), +(96981, 'Sammy', 1968, 'M', 512), +(96982, 'Lorenzo', 1968, 'M', 511), +(96983, 'Daren', 1968, 'M', 504), +(96984, 'Chester', 1968, 'M', 502), +(96985, 'Arturo', 1968, 'M', 500), +(96986, 'Brendan', 1968, 'M', 499), +(96987, 'Colin', 1968, 'M', 499), +(96988, 'Preston', 1968, 'M', 499), +(96989, 'Otis', 1968, 'M', 498), +(96990, 'Everett', 1968, 'M', 497), +(96991, 'Hugh', 1968, 'M', 496), +(96992, 'Alfredo', 1968, 'M', 494), +(96993, 'Darrel', 1968, 'M', 486), +(96994, 'Marco', 1968, 'M', 482), +(96995, 'Bob', 1968, 'M', 478), +(96996, 'Julian', 1968, 'M', 473), +(96997, 'Mickey', 1968, 'M', 470), +(96998, 'Teddy', 1968, 'M', 470), +(96999, 'Erick', 1968, 'M', 469), +(97000, 'Julio', 1968, 'M', 466), +(97001, 'Dion', 1968, 'M', 465), +(97002, 'Wallace', 1968, 'M', 465), +(97003, 'Lynn', 1968, 'M', 456), +(97004, 'Ty', 1968, 'M', 456), +(97005, 'Enrique', 1968, 'M', 455), +(97006, 'Evan', 1968, 'M', 451), +(97007, 'Monte', 1968, 'M', 450), +(97008, 'Tracey', 1968, 'M', 450), +(97009, 'Dustin', 1968, 'M', 448), +(97010, 'Myron', 1968, 'M', 445), +(97011, 'Sergio', 1968, 'M', 443), +(97012, 'Virgil', 1968, 'M', 440), +(97013, 'Tyler', 1968, 'M', 437), +(97014, 'Lyle', 1968, 'M', 435), +(97015, 'Morris', 1968, 'M', 429), +(97016, 'Cameron', 1968, 'M', 428), +(97017, 'Isaac', 1968, 'M', 427), +(97018, 'Clark', 1968, 'M', 426), +(97019, 'Lamont', 1968, 'M', 423), +(97020, 'Garry', 1968, 'M', 422), +(97021, 'Malcolm', 1968, 'M', 422), +(97022, 'Alejandro', 1968, 'M', 421), +(97023, 'Max', 1968, 'M', 414), +(97024, 'Kendall', 1968, 'M', 410), +(97025, 'Kim', 1968, 'M', 409), +(97026, 'Ernesto', 1968, 'M', 406), +(97027, 'Benny', 1968, 'M', 404), +(97028, 'Blake', 1968, 'M', 404), +(97029, 'Sheldon', 1968, 'M', 403), +(97030, 'Bryon', 1968, 'M', 401), +(97031, 'Drew', 1968, 'M', 401), +(97032, 'Demetrius', 1968, 'M', 397), +(97033, 'Scottie', 1968, 'M', 393), +(97034, 'Earnest', 1968, 'M', 390), +(97035, 'Clay', 1968, 'M', 389), +(97036, 'Devin', 1968, 'M', 389), +(97037, 'Luke', 1968, 'M', 388), +(97038, 'Darnell', 1968, 'M', 386), +(97039, 'Stephan', 1968, 'M', 385), +(97040, 'Garrett', 1968, 'M', 384), +(97041, 'Alonzo', 1968, 'M', 383), +(97042, 'Alton', 1968, 'M', 380), +(97043, 'Bennie', 1968, 'M', 376), +(97044, 'Marion', 1968, 'M', 367), +(97045, 'Chuck', 1968, 'M', 364), +(97046, 'Johnathan', 1968, 'M', 362), +(97047, 'Julius', 1968, 'M', 362), +(97048, 'Jeffry', 1968, 'M', 360), +(97049, 'Pete', 1968, 'M', 358), +(97050, 'Alfonso', 1968, 'M', 356), +(97051, 'Jarrod', 1968, 'M', 353), +(97052, 'Sherman', 1968, 'M', 351), +(97053, 'Edmund', 1968, 'M', 348), +(97054, 'Gerardo', 1968, 'M', 348), +(97055, 'Robby', 1968, 'M', 345), +(97056, 'Zachary', 1968, 'M', 342), +(97057, 'Jerald', 1968, 'M', 341), +(97058, 'Willard', 1968, 'M', 340), +(97059, 'Carey', 1968, 'M', 338), +(97060, 'Ira', 1968, 'M', 334), +(97061, 'Israel', 1968, 'M', 334), +(97062, 'Rob', 1968, 'M', 334), +(97063, 'Salvador', 1968, 'M', 334), +(97064, 'Stewart', 1968, 'M', 333), +(97065, 'Vance', 1968, 'M', 331), +(97066, 'Dirk', 1968, 'M', 330), +(97067, 'Jonathon', 1968, 'M', 330), +(97068, 'Rusty', 1968, 'M', 329), +(97069, 'Oliver', 1968, 'M', 322), +(97070, 'Laurence', 1968, 'M', 321), +(97071, 'Thad', 1968, 'M', 320), +(97072, 'Luther', 1968, 'M', 319), +(97073, 'Omar', 1968, 'M', 318), +(97074, 'Rodolfo', 1968, 'M', 316), +(97075, 'Archie', 1968, 'M', 314), +(97076, 'Elmer', 1968, 'M', 308), +(97077, 'Pablo', 1968, 'M', 307), +(97078, 'Dallas', 1968, 'M', 302), +(97079, 'Lamar', 1968, 'M', 302), +(97080, 'Monty', 1968, 'M', 302), +(97081, 'Tod', 1968, 'M', 302), +(97082, 'Blaine', 1968, 'M', 300), +(97083, 'Lowell', 1968, 'M', 299), +(97084, 'Roosevelt', 1968, 'M', 298), +(97085, 'Andres', 1968, 'M', 297), +(97086, 'Terrell', 1968, 'M', 297), +(97087, 'Darwin', 1968, 'M', 296), +(97088, 'Forrest', 1968, 'M', 296), +(97089, 'Rodger', 1968, 'M', 296), +(97090, 'Tommie', 1968, 'M', 293), +(97091, 'Gilberto', 1968, 'M', 292), +(97092, 'Guillermo', 1968, 'M', 292), +(97093, 'Pat', 1968, 'M', 290), +(97094, 'Damian', 1968, 'M', 285), +(97095, 'Doyle', 1968, 'M', 285), +(97096, 'Delbert', 1968, 'M', 283), +(97097, 'Donovan', 1968, 'M', 283), +(97098, 'Dominick', 1968, 'M', 282), +(97099, 'Kris', 1968, 'M', 282), +(97100, 'Rolando', 1968, 'M', 282), +(97101, 'Stevie', 1968, 'M', 280), +(97102, 'Van', 1968, 'M', 278), +(97103, 'Boyd', 1968, 'M', 272), +(97104, 'Cesar', 1968, 'M', 270), +(97105, 'Rudolph', 1968, 'M', 270), +(97106, 'Abel', 1968, 'M', 266), +(97107, 'Lionel', 1968, 'M', 266), +(97108, 'Marcos', 1968, 'M', 265), +(97109, 'Dino', 1968, 'M', 263), +(97110, 'Morgan', 1968, 'M', 263), +(97111, 'Hubert', 1968, 'M', 258), +(97112, 'Sylvester', 1968, 'M', 258), +(97113, 'Abraham', 1968, 'M', 257), +(97114, 'Felipe', 1968, 'M', 257), +(97115, 'Wilbert', 1968, 'M', 257), +(97116, 'Dane', 1968, 'M', 255), +(97117, 'Leland', 1968, 'M', 254), +(97118, 'Simon', 1968, 'M', 254), +(97119, 'Ismael', 1968, 'M', 253), +(97120, 'Horace', 1968, 'M', 249), +(97121, 'Darron', 1968, 'M', 248), +(97122, 'Donnell', 1968, 'M', 248), +(97123, 'Kip', 1968, 'M', 247), +(97124, 'Vaughn', 1968, 'M', 247), +(97125, 'Cornelius', 1968, 'M', 246), +(97126, 'Sterling', 1968, 'M', 246), +(97127, 'Antoine', 1968, 'M', 245), +(97128, 'Kurtis', 1968, 'M', 245), +(97129, 'Rocky', 1968, 'M', 244), +(97130, 'Guadalupe', 1968, 'M', 242), +(97131, 'Hans', 1968, 'M', 241), +(97132, 'Reynaldo', 1968, 'M', 241), +(97133, 'Conrad', 1968, 'M', 238), +(97134, 'Marlon', 1968, 'M', 236), +(97135, 'Erich', 1968, 'M', 235), +(97136, 'Grady', 1968, 'M', 234), +(97137, 'Rod', 1968, 'M', 233), +(97138, 'Jean', 1968, 'M', 231), +(97139, 'Willis', 1968, 'M', 231), +(97140, 'Mack', 1968, 'M', 230), +(97141, 'Ramiro', 1968, 'M', 230), +(97142, 'Wilson', 1968, 'M', 227), +(97143, 'Dewey', 1968, 'M', 225), +(97144, 'Tomas', 1968, 'M', 225), +(97145, 'Denis', 1968, 'M', 224), +(97146, 'Louie', 1968, 'M', 224), +(97147, 'Rogelio', 1968, 'M', 224), +(97148, 'Rickie', 1968, 'M', 223), +(97149, 'Vince', 1968, 'M', 222), +(97150, 'Emanuel', 1968, 'M', 220), +(97151, 'Ervin', 1968, 'M', 219), +(97152, 'Deon', 1968, 'M', 217), +(97153, 'Derick', 1968, 'M', 217), +(97154, 'Bert', 1968, 'M', 216), +(97155, 'Roman', 1968, 'M', 216), +(97156, 'Lane', 1968, 'M', 215), +(97157, 'Owen', 1968, 'M', 215), +(97158, 'Blair', 1968, 'M', 214), +(97159, 'Elliott', 1968, 'M', 214), +(97160, 'Jefferson', 1968, 'M', 214), +(97161, 'Robb', 1968, 'M', 214), +(97162, 'Will', 1968, 'M', 214), +(97163, 'Alphonso', 1968, 'M', 213), +(97164, 'Cody', 1968, 'M', 212), +(97165, 'Kraig', 1968, 'M', 212), +(97166, 'Miles', 1968, 'M', 211), +(97167, 'Gerry', 1968, 'M', 210), +(97168, 'Gustavo', 1968, 'M', 210), +(97169, 'Xavier', 1968, 'M', 210), +(97170, 'Aubrey', 1968, 'M', 208), +(97171, 'Kristopher', 1968, 'M', 208), +(97172, 'Daron', 1968, 'M', 207), +(97173, 'Ronny', 1968, 'M', 207), +(97174, 'Lonny', 1968, 'M', 205), +(97175, 'Denny', 1968, 'M', 204), +(97176, 'Tad', 1968, 'M', 204), +(97177, 'Ellis', 1968, 'M', 203), +(97178, 'Thaddeus', 1968, 'M', 203), +(97179, 'Brady', 1968, 'M', 199), +(97180, 'Shon', 1968, 'M', 196), +(97181, 'Bryce', 1968, 'M', 195), +(97182, 'Austin', 1968, 'M', 194), +(97183, 'Freddy', 1968, 'M', 194), +(97184, 'Rufus', 1968, 'M', 194), +(97185, 'Homer', 1968, 'M', 192), +(97186, 'Phil', 1968, 'M', 192), +(97187, 'Buddy', 1968, 'M', 191), +(97188, 'Kirby', 1968, 'M', 191), +(97189, 'Emmett', 1968, 'M', 189), +(97190, 'Garland', 1968, 'M', 189), +(97191, 'Gavin', 1968, 'M', 189), +(97192, 'Jordan', 1968, 'M', 189), +(97193, 'Reggie', 1968, 'M', 189), +(97194, 'Royce', 1968, 'M', 187), +(97195, 'Anton', 1968, 'M', 186), +(97196, 'Pierre', 1968, 'M', 186), +(97197, 'Courtney', 1968, 'M', 185), +(97198, 'Deron', 1968, 'M', 185), +(97199, 'Elbert', 1968, 'M', 185), +(97200, 'Ernie', 1968, 'M', 185), +(97201, 'Joesph', 1968, 'M', 184), +(97202, 'Chadwick', 1968, 'M', 182), +(97203, 'Edmond', 1968, 'M', 182), +(97204, 'Fabian', 1968, 'M', 182), +(97205, 'Galen', 1968, 'M', 182), +(97206, 'Marlin', 1968, 'M', 181), +(97207, 'Percy', 1968, 'M', 181), +(97208, 'Reuben', 1968, 'M', 181), +(97209, 'Wilbur', 1968, 'M', 180), +(97210, 'Donny', 1968, 'M', 177), +(97211, 'Noah', 1968, 'M', 176), +(97212, 'Quentin', 1968, 'M', 176), +(97213, 'Lisa', 1968, 'M', 175), +(97214, 'Richie', 1968, 'M', 175), +(97215, 'Wilfredo', 1968, 'M', 175), +(97216, 'Ethan', 1968, 'M', 174), +(97217, 'Jan', 1968, 'M', 174), +(97218, 'Darius', 1968, 'M', 173), +(97219, 'Randell', 1968, 'M', 173), +(97220, 'Carroll', 1968, 'M', 172), +(97221, 'Rory', 1968, 'M', 171), +(97222, 'Ed', 1968, 'M', 170), +(97223, 'Ashley', 1968, 'M', 169), +(97224, 'Cornell', 1968, 'M', 169), +(97225, 'Sonny', 1968, 'M', 169), +(97226, 'Kelley', 1968, 'M', 168), +(97227, 'Michel', 1968, 'M', 168), +(97228, 'Moses', 1968, 'M', 168), +(97229, 'Nicolas', 1968, 'M', 168), +(97230, 'Jess', 1968, 'M', 167), +(97231, 'Efrain', 1968, 'M', 166), +(97232, 'Al', 1968, 'M', 165), +(97233, 'Barton', 1968, 'M', 165), +(97234, 'Elias', 1968, 'M', 165), +(97235, 'Stefan', 1968, 'M', 165), +(97236, 'Devon', 1968, 'M', 162), +(97237, 'Russel', 1968, 'M', 162), +(97238, 'Theron', 1968, 'M', 162), +(97239, 'Winston', 1968, 'M', 162), +(97240, 'Cleveland', 1968, 'M', 161), +(97241, 'Marcel', 1968, 'M', 161), +(97242, 'Shayne', 1968, 'M', 160), +(97243, 'Benito', 1968, 'M', 159), +(97244, 'Emilio', 1968, 'M', 159), +(97245, 'Irvin', 1968, 'M', 159), +(97246, 'Saul', 1968, 'M', 159), +(97247, 'Erin', 1968, 'M', 158), +(97248, 'Lon', 1968, 'M', 158), +(97249, 'Brenton', 1968, 'M', 156), +(97250, 'Hugo', 1968, 'M', 156), +(97251, 'Rocco', 1968, 'M', 155), +(97252, 'Santos', 1968, 'M', 155), +(97253, 'Amos', 1968, 'M', 154), +(97254, 'Avery', 1968, 'M', 154), +(97255, 'Billie', 1968, 'M', 153), +(97256, 'Carmen', 1968, 'M', 153), +(97257, 'Santiago', 1968, 'M', 153), +(97258, 'Rodrick', 1968, 'M', 151), +(97259, 'Antony', 1968, 'M', 150), +(97260, 'Danial', 1968, 'M', 149), +(97261, 'Eddy', 1968, 'M', 148), +(97262, 'Woodrow', 1968, 'M', 148), +(97263, 'Brant', 1968, 'M', 147), +(97264, 'Dante', 1968, 'M', 147), +(97265, 'Lorne', 1968, 'M', 147), +(97266, 'Nolan', 1968, 'M', 147), +(97267, 'Sandy', 1968, 'M', 147), +(97268, 'Darrick', 1968, 'M', 146), +(97269, 'Domingo', 1968, 'M', 145), +(97270, 'Sammie', 1968, 'M', 145), +(97271, 'Kennith', 1968, 'M', 144), +(97272, 'Keven', 1968, 'M', 144), +(97273, 'Trenton', 1968, 'M', 144), +(97274, 'Kirt', 1968, 'M', 143), +(97275, 'Nicky', 1968, 'M', 143), +(97276, 'Shelby', 1968, 'M', 143), +(97277, 'Leonardo', 1968, 'M', 142), +(97278, 'Reed', 1968, 'M', 142), +(97279, 'Andrea', 1968, 'M', 141), +(97280, 'Harlan', 1968, 'M', 141), +(97281, 'Ward', 1968, 'M', 141), +(97282, 'Gino', 1968, 'M', 140), +(97283, 'Eli', 1968, 'M', 139), +(97284, 'Elvis', 1968, 'M', 139), +(97285, 'Humberto', 1968, 'M', 138), +(97286, 'Ignacio', 1968, 'M', 138), +(97287, 'Levi', 1968, 'M', 138), +(97288, 'Elliot', 1968, 'M', 137), +(97289, 'Shelton', 1968, 'M', 137), +(97290, 'Merle', 1968, 'M', 136), +(97291, 'Edwardo', 1968, 'M', 135), +(97292, 'Jayson', 1968, 'M', 135), +(97293, 'Josh', 1968, 'M', 135), +(97294, 'Taylor', 1968, 'M', 135), +(97295, 'Frederic', 1968, 'M', 134), +(97296, 'Garth', 1968, 'M', 134), +(97297, 'Hank', 1968, 'M', 134), +(97298, 'Jacques', 1968, 'M', 134), +(97299, 'Quinton', 1968, 'M', 133), +(97300, 'Noe', 1968, 'M', 132), +(97301, 'Jeremiah', 1968, 'M', 131), +(97302, 'Micah', 1968, 'M', 130), +(97303, 'Michelle', 1968, 'M', 130), +(97304, 'Mitchel', 1968, 'M', 130), +(97305, 'Raphael', 1968, 'M', 130), +(97306, 'Brock', 1968, 'M', 128), +(97307, 'Desmond', 1968, 'M', 127), +(97308, 'Jake', 1968, 'M', 127), +(97309, 'Wilfred', 1968, 'M', 127), +(97310, 'Errol', 1968, 'M', 126), +(97311, 'Esteban', 1968, 'M', 126), +(97312, 'Cliff', 1968, 'M', 125), +(97313, 'Jarrett', 1968, 'M', 125), +(97314, 'Sanford', 1968, 'M', 125), +(97315, 'Solomon', 1968, 'M', 125), +(97316, 'Carlo', 1968, 'M', 124), +(97317, 'Carter', 1968, 'M', 124), +(97318, 'Hal', 1968, 'M', 124), +(97319, 'Russ', 1968, 'M', 124), +(97320, 'Harley', 1968, 'M', 123), +(97321, 'Irving', 1968, 'M', 122), +(97322, 'Kenton', 1968, 'M', 122), +(97323, 'Norris', 1968, 'M', 122), +(97324, 'Zane', 1968, 'M', 122), +(97325, 'Adolfo', 1968, 'M', 121), +(97326, 'Dylan', 1968, 'M', 121), +(97327, 'Elijah', 1968, 'M', 121), +(97328, 'Nickolas', 1968, 'M', 121), +(97329, 'Stan', 1968, 'M', 121), +(97330, 'Bradly', 1968, 'M', 120), +(97331, 'Burton', 1968, 'M', 120), +(97332, 'Kory', 1968, 'M', 120), +(97333, 'Vicente', 1968, 'M', 120), +(97334, 'Emmanuel', 1968, 'M', 119), +(97335, 'Brain', 1968, 'M', 118), +(97336, 'Brendon', 1968, 'M', 118), +(97337, 'Lenny', 1968, 'M', 118), +(97338, 'Reid', 1968, 'M', 118), +(97339, 'Vito', 1968, 'M', 118), +(97340, 'Bobbie', 1968, 'M', 116), +(97341, 'Brooks', 1968, 'M', 116), +(97342, 'Kermit', 1968, 'M', 116), +(97343, 'Rich', 1968, 'M', 116), +(97344, 'Sebastian', 1968, 'M', 116), +(97345, 'Joaquin', 1968, 'M', 115), +(97346, 'Quinn', 1968, 'M', 115), +(97347, 'Rhett', 1968, 'M', 115), +(97348, 'Ulysses', 1968, 'M', 115), +(97349, 'Derwin', 1968, 'M', 114), +(97350, 'Jamey', 1968, 'M', 114), +(97351, 'Jerrod', 1968, 'M', 113), +(97352, 'Ned', 1968, 'M', 113), +(97353, 'Britt', 1968, 'M', 112), +(97354, 'Tyron', 1968, 'M', 112), +(97355, 'Graham', 1968, 'M', 111), +(97356, 'Harrison', 1968, 'M', 111), +(97357, 'Kimberly', 1968, 'M', 111), +(97358, 'Toney', 1968, 'M', 111), +(97359, 'Alexis', 1968, 'M', 110), +(97360, 'Jackson', 1968, 'M', 110), +(97361, 'Odell', 1968, 'M', 109), +(97362, 'Bennett', 1968, 'M', 108), +(97363, 'Elton', 1968, 'M', 108), +(97364, 'Mason', 1968, 'M', 108), +(97365, 'Douglass', 1968, 'M', 107), +(97366, 'Kendrick', 1968, 'M', 107), +(97367, 'Linwood', 1968, 'M', 107), +(97368, 'Mikel', 1968, 'M', 107), +(97369, 'Elvin', 1968, 'M', 106), +(97370, 'Jarvis', 1968, 'M', 106), +(97371, 'Collin', 1968, 'M', 105), +(97372, 'Heriberto', 1968, 'M', 105), +(97373, 'Ritchie', 1968, 'M', 105), +(97374, 'Agustin', 1968, 'M', 104), +(97375, 'Dwain', 1968, 'M', 104), +(97376, 'Junior', 1968, 'M', 103), +(97377, 'Lanny', 1968, 'M', 103), +(97378, 'Timmothy', 1968, 'M', 103), +(97379, 'Coy', 1968, 'M', 102), +(97380, 'Eldon', 1968, 'M', 102), +(97381, 'Grover', 1968, 'M', 102), +(97382, 'Orville', 1968, 'M', 102), +(97383, 'Jerold', 1968, 'M', 101), +(97384, 'Leif', 1968, 'M', 101), +(97385, 'Mary', 1968, 'M', 101), +(97386, 'August', 1968, 'M', 100), +(97387, 'Jefferey', 1968, 'M', 100), +(97388, 'Lisa', 1969, 'F', 45032), +(97389, 'Michelle', 1969, 'F', 34319), +(97390, 'Jennifer', 1969, 'F', 33705), +(97391, 'Kimberly', 1969, 'F', 33081), +(97392, 'Melissa', 1969, 'F', 23025), +(97393, 'Amy', 1969, 'F', 21468), +(97394, 'Angela', 1969, 'F', 21054), +(97395, 'Mary', 1969, 'F', 19851), +(97396, 'Tammy', 1969, 'F', 19053), +(97397, 'Laura', 1969, 'F', 17921), +(97398, 'Susan', 1969, 'F', 17811), +(97399, 'Julie', 1969, 'F', 17738), +(97400, 'Karen', 1969, 'F', 17632), +(97401, 'Christine', 1969, 'F', 16754), +(97402, 'Kelly', 1969, 'F', 16328), +(97403, 'Elizabeth', 1969, 'F', 15299), +(97404, 'Tracy', 1969, 'F', 15102), +(97405, 'Patricia', 1969, 'F', 14954), +(97406, 'Stephanie', 1969, 'F', 14492), +(97407, 'Lori', 1969, 'F', 14018), +(97408, 'Dawn', 1969, 'F', 13770), +(97409, 'Tina', 1969, 'F', 13601), +(97410, 'Cynthia', 1969, 'F', 13523), +(97411, 'Pamela', 1969, 'F', 13358), +(97412, 'Sandra', 1969, 'F', 12175), +(97413, 'Donna', 1969, 'F', 11451), +(97414, 'Deborah', 1969, 'F', 11184), +(97415, 'Rebecca', 1969, 'F', 10951), +(97416, 'Wendy', 1969, 'F', 10626), +(97417, 'Michele', 1969, 'F', 10558), +(97418, 'Shannon', 1969, 'F', 10449), +(97419, 'Teresa', 1969, 'F', 10356), +(97420, 'Linda', 1969, 'F', 10249), +(97421, 'Heather', 1969, 'F', 10073), +(97422, 'Denise', 1969, 'F', 9802), +(97423, 'Sharon', 1969, 'F', 9689), +(97424, 'Christina', 1969, 'F', 9326), +(97425, 'Brenda', 1969, 'F', 8994), +(97426, 'Barbara', 1969, 'F', 8809), +(97427, 'Maria', 1969, 'F', 8375), +(97428, 'Cheryl', 1969, 'F', 8346), +(97429, 'Kathleen', 1969, 'F', 8301), +(97430, 'Debra', 1969, 'F', 7952), +(97431, 'Rhonda', 1969, 'F', 7918), +(97432, 'Nancy', 1969, 'F', 7899), +(97433, 'Robin', 1969, 'F', 7500), +(97434, 'Nicole', 1969, 'F', 7217), +(97435, 'Andrea', 1969, 'F', 7206), +(97436, 'Theresa', 1969, 'F', 6860), +(97437, 'Paula', 1969, 'F', 6754), +(97438, 'Jill', 1969, 'F', 6668), +(97439, 'Stacey', 1969, 'F', 6617), +(97440, 'Stacy', 1969, 'F', 6486), +(97441, 'Tonya', 1969, 'F', 6167), +(97442, 'Sherry', 1969, 'F', 6139), +(97443, 'Carol', 1969, 'F', 6138), +(97444, 'Ann', 1969, 'F', 6133), +(97445, 'Catherine', 1969, 'F', 6091), +(97446, 'Monica', 1969, 'F', 6036), +(97447, 'Dana', 1969, 'F', 6022), +(97448, 'Diane', 1969, 'F', 5945), +(97449, 'Jacqueline', 1969, 'F', 5924), +(97450, 'Gina', 1969, 'F', 5910), +(97451, 'Leslie', 1969, 'F', 5835), +(97452, 'Tracey', 1969, 'F', 5626), +(97453, 'Kim', 1969, 'F', 5449), +(97454, 'Renee', 1969, 'F', 5254), +(97455, 'Sheila', 1969, 'F', 5245), +(97456, 'Rachel', 1969, 'F', 5243), +(97457, 'Katherine', 1969, 'F', 5169), +(97458, 'Carolyn', 1969, 'F', 5135), +(97459, 'Sarah', 1969, 'F', 5075), +(97460, 'Margaret', 1969, 'F', 5042), +(97461, 'Cindy', 1969, 'F', 4958), +(97462, 'Suzanne', 1969, 'F', 4908), +(97463, 'Kristin', 1969, 'F', 4753), +(97464, 'Kathy', 1969, 'F', 4751), +(97465, 'Tamara', 1969, 'F', 4651), +(97466, 'Laurie', 1969, 'F', 4628), +(97467, 'Diana', 1969, 'F', 4533), +(97468, 'Heidi', 1969, 'F', 4531), +(97469, 'Beth', 1969, 'F', 4459), +(97470, 'Victoria', 1969, 'F', 4390), +(97471, 'Janet', 1969, 'F', 4384), +(97472, 'Valerie', 1969, 'F', 4297), +(97473, 'Regina', 1969, 'F', 4268), +(97474, 'Holly', 1969, 'F', 4127), +(97475, 'Deanna', 1969, 'F', 4067), +(97476, 'Melinda', 1969, 'F', 3989), +(97477, 'Tanya', 1969, 'F', 3968), +(97478, 'Carla', 1969, 'F', 3965), +(97479, 'Melanie', 1969, 'F', 3925), +(97480, 'Terri', 1969, 'F', 3900), +(97481, 'Carrie', 1969, 'F', 3886), +(97482, 'Jodi', 1969, 'F', 3866), +(97483, 'Kristen', 1969, 'F', 3812), +(97484, 'April', 1969, 'F', 3800), +(97485, 'Yolanda', 1969, 'F', 3774), +(97486, 'Julia', 1969, 'F', 3715), +(97487, 'Anna', 1969, 'F', 3714), +(97488, 'Anne', 1969, 'F', 3710), +(97489, 'Shelly', 1969, 'F', 3675), +(97490, 'Lynn', 1969, 'F', 3646), +(97491, 'Kathryn', 1969, 'F', 3618), +(97492, 'Connie', 1969, 'F', 3545), +(97493, 'Sherri', 1969, 'F', 3529), +(97494, 'Tara', 1969, 'F', 3518), +(97495, 'Veronica', 1969, 'F', 3447), +(97496, 'Colleen', 1969, 'F', 3414), +(97497, 'Kristine', 1969, 'F', 3324), +(97498, 'Danielle', 1969, 'F', 3175), +(97499, 'Traci', 1969, 'F', 3130), +(97500, 'Annette', 1969, 'F', 3106), +(97501, 'Erin', 1969, 'F', 3064), +(97502, 'Kelli', 1969, 'F', 3055), +(97503, 'Christy', 1969, 'F', 3052), +(97504, 'Alicia', 1969, 'F', 3046), +(97505, 'Crystal', 1969, 'F', 2988), +(97506, 'Tricia', 1969, 'F', 2983), +(97507, 'Anita', 1969, 'F', 2915), +(97508, 'Jamie', 1969, 'F', 2901), +(97509, 'Amanda', 1969, 'F', 2815), +(97510, 'Sonya', 1969, 'F', 2802), +(97511, 'Sara', 1969, 'F', 2795), +(97512, 'Vicki', 1969, 'F', 2747), +(97513, 'Wanda', 1969, 'F', 2685), +(97514, 'Debbie', 1969, 'F', 2652), +(97515, 'Kristi', 1969, 'F', 2650), +(97516, 'Bonnie', 1969, 'F', 2645), +(97517, 'Kellie', 1969, 'F', 2640), +(97518, 'Janice', 1969, 'F', 2633), +(97519, 'Sheri', 1969, 'F', 2601), +(97520, 'Cathy', 1969, 'F', 2522), +(97521, 'Jessica', 1969, 'F', 2490), +(97522, 'Shelley', 1969, 'F', 2478), +(97523, 'Kristina', 1969, 'F', 2464), +(97524, 'Darlene', 1969, 'F', 2459), +(97525, 'Virginia', 1969, 'F', 2444), +(97526, 'Samantha', 1969, 'F', 2425), +(97527, 'Martha', 1969, 'F', 2424), +(97528, 'Beverly', 1969, 'F', 2406), +(97529, 'Penny', 1969, 'F', 2361), +(97530, 'Yvonne', 1969, 'F', 2354), +(97531, 'Tiffany', 1969, 'F', 2352), +(97532, 'Marie', 1969, 'F', 2247), +(97533, 'Felicia', 1969, 'F', 2238), +(97534, 'Vanessa', 1969, 'F', 2233), +(97535, 'Joyce', 1969, 'F', 2231), +(97536, 'Carmen', 1969, 'F', 2196), +(97537, 'Gloria', 1969, 'F', 2167), +(97538, 'Cassandra', 1969, 'F', 2163), +(97539, 'Yvette', 1969, 'F', 2161), +(97540, 'Natalie', 1969, 'F', 2152), +(97541, 'Betty', 1969, 'F', 2133), +(97542, 'Becky', 1969, 'F', 2092), +(97543, 'Joanne', 1969, 'F', 2082), +(97544, 'Judith', 1969, 'F', 2078), +(97545, 'Peggy', 1969, 'F', 2057), +(97546, 'Toni', 1969, 'F', 2056), +(97547, 'Charlotte', 1969, 'F', 2028), +(97548, 'Maureen', 1969, 'F', 2012), +(97549, 'Judy', 1969, 'F', 2007), +(97550, 'Charlene', 1969, 'F', 1999), +(97551, 'Tammie', 1969, 'F', 1989), +(97552, 'Jody', 1969, 'F', 1959), +(97553, 'Sabrina', 1969, 'F', 1941), +(97554, 'Jean', 1969, 'F', 1907), +(97555, 'Ruth', 1969, 'F', 1901), +(97556, 'Ellen', 1969, 'F', 1895), +(97557, 'Jane', 1969, 'F', 1880), +(97558, 'Tracie', 1969, 'F', 1876), +(97559, 'Rose', 1969, 'F', 1868), +(97560, 'Shirley', 1969, 'F', 1867), +(97561, 'Vickie', 1969, 'F', 1860), +(97562, 'Helen', 1969, 'F', 1858), +(97563, 'Kerry', 1969, 'F', 1853), +(97564, 'Shawn', 1969, 'F', 1825), +(97565, 'Sylvia', 1969, 'F', 1812), +(97566, 'Kimberley', 1969, 'F', 1805), +(97567, 'Katrina', 1969, 'F', 1790), +(97568, 'Dorothy', 1969, 'F', 1778), +(97569, 'Monique', 1969, 'F', 1747), +(97570, 'Sonia', 1969, 'F', 1740), +(97571, 'Rita', 1969, 'F', 1734), +(97572, 'Alice', 1969, 'F', 1716), +(97573, 'Sheryl', 1969, 'F', 1706), +(97574, 'Joy', 1969, 'F', 1692), +(97575, 'Jeanette', 1969, 'F', 1688), +(97576, 'Robyn', 1969, 'F', 1686), +(97577, 'Elaine', 1969, 'F', 1685), +(97578, 'Kelley', 1969, 'F', 1685), +(97579, 'Trina', 1969, 'F', 1683), +(97580, 'Belinda', 1969, 'F', 1674), +(97581, 'Allison', 1969, 'F', 1652), +(97582, 'Frances', 1969, 'F', 1643), +(97583, 'Joann', 1969, 'F', 1635), +(97584, 'Bridget', 1969, 'F', 1597), +(97585, 'Emily', 1969, 'F', 1576), +(97586, 'Dina', 1969, 'F', 1571), +(97587, 'Joan', 1969, 'F', 1567), +(97588, 'Leigh', 1969, 'F', 1564), +(97589, 'Gail', 1969, 'F', 1562), +(97590, 'Norma', 1969, 'F', 1556), +(97591, 'Loretta', 1969, 'F', 1542), +(97592, 'Karla', 1969, 'F', 1535), +(97593, 'Tami', 1969, 'F', 1532), +(97594, 'Erica', 1969, 'F', 1506), +(97595, 'Roberta', 1969, 'F', 1506), +(97596, 'Stacie', 1969, 'F', 1502), +(97597, 'Leah', 1969, 'F', 1491), +(97598, 'Eileen', 1969, 'F', 1474), +(97599, 'Lora', 1969, 'F', 1474), +(97600, 'Kari', 1969, 'F', 1471), +(97601, 'Ronda', 1969, 'F', 1458), +(97602, 'Evelyn', 1969, 'F', 1454), +(97603, 'Rosa', 1969, 'F', 1437), +(97604, 'Shari', 1969, 'F', 1410), +(97605, 'Marilyn', 1969, 'F', 1397), +(97606, 'Jeanne', 1969, 'F', 1375), +(97607, 'Kristy', 1969, 'F', 1372), +(97608, 'Audrey', 1969, 'F', 1360), +(97609, 'Kara', 1969, 'F', 1355), +(97610, 'Erika', 1969, 'F', 1353), +(97611, 'Lara', 1969, 'F', 1353), +(97612, 'Caroline', 1969, 'F', 1350), +(97613, 'Jackie', 1969, 'F', 1342), +(97614, 'Krista', 1969, 'F', 1322), +(97615, 'Tonia', 1969, 'F', 1319), +(97616, 'Sonja', 1969, 'F', 1312), +(97617, 'Kristie', 1969, 'F', 1310), +(97618, 'Sally', 1969, 'F', 1310), +(97619, 'Lauren', 1969, 'F', 1308), +(97620, 'Shelia', 1969, 'F', 1303), +(97621, 'Candace', 1969, 'F', 1298), +(97622, 'Ginger', 1969, 'F', 1276), +(97623, 'Rochelle', 1969, 'F', 1270), +(97624, 'Dena', 1969, 'F', 1264), +(97625, 'Lorraine', 1969, 'F', 1249), +(97626, 'Melody', 1969, 'F', 1248), +(97627, 'Terry', 1969, 'F', 1244), +(97628, 'Sandy', 1969, 'F', 1243), +(97629, 'Kerri', 1969, 'F', 1241), +(97630, 'Juanita', 1969, 'F', 1218), +(97631, 'Joanna', 1969, 'F', 1214), +(97632, 'Raquel', 1969, 'F', 1206), +(97633, 'Christie', 1969, 'F', 1203), +(97634, 'Gwendolyn', 1969, 'F', 1200), +(97635, 'Deana', 1969, 'F', 1193), +(97636, 'Shawna', 1969, 'F', 1189), +(97637, 'Lynette', 1969, 'F', 1176), +(97638, 'Jo', 1969, 'F', 1166), +(97639, 'Angie', 1969, 'F', 1160), +(97640, 'Kirsten', 1969, 'F', 1155), +(97641, 'Teri', 1969, 'F', 1153), +(97642, 'Cheri', 1969, 'F', 1148), +(97643, 'Marsha', 1969, 'F', 1145), +(97644, 'Lee', 1969, 'F', 1134), +(97645, 'Trisha', 1969, 'F', 1125), +(97646, 'Claudia', 1969, 'F', 1118), +(97647, 'Marcia', 1969, 'F', 1115), +(97648, 'Alisa', 1969, 'F', 1109), +(97649, 'Irene', 1969, 'F', 1108), +(97650, 'Gretchen', 1969, 'F', 1106), +(97651, 'Staci', 1969, 'F', 1099), +(97652, 'Molly', 1969, 'F', 1093), +(97653, 'Meredith', 1969, 'F', 1092), +(97654, 'Roxanne', 1969, 'F', 1092), +(97655, 'Eva', 1969, 'F', 1090), +(97656, 'Alison', 1969, 'F', 1076), +(97657, 'Marla', 1969, 'F', 1067), +(97658, 'Darla', 1969, 'F', 1058), +(97659, 'Bobbie', 1969, 'F', 1057), +(97660, 'Dianna', 1969, 'F', 1051), +(97661, 'Doris', 1969, 'F', 1040), +(97662, 'Jenny', 1969, 'F', 1039), +(97663, 'Megan', 1969, 'F', 1032), +(97664, 'Amber', 1969, 'F', 1027), +(97665, 'Lynda', 1969, 'F', 1015), +(97666, 'Candy', 1969, 'F', 1012), +(97667, 'Jana', 1969, 'F', 1008), +(97668, 'Karin', 1969, 'F', 1007), +(97669, 'Sherrie', 1969, 'F', 1006), +(97670, 'Cherie', 1969, 'F', 991), +(97671, 'Leticia', 1969, 'F', 990), +(97672, 'Adrienne', 1969, 'F', 981), +(97673, 'Antoinette', 1969, 'F', 980), +(97674, 'Hope', 1969, 'F', 980), +(97675, 'Aimee', 1969, 'F', 971), +(97676, 'Ramona', 1969, 'F', 970), +(97677, 'Lorie', 1969, 'F', 964), +(97678, 'Vicky', 1969, 'F', 964), +(97679, 'Ana', 1969, 'F', 960), +(97680, 'Jacquelyn', 1969, 'F', 956), +(97681, 'Dianne', 1969, 'F', 955), +(97682, 'Misty', 1969, 'F', 949), +(97683, 'Rachelle', 1969, 'F', 946), +(97684, 'Tabitha', 1969, 'F', 944), +(97685, 'Glenda', 1969, 'F', 943), +(97686, 'Jodie', 1969, 'F', 936), +(97687, 'Priscilla', 1969, 'F', 923), +(97688, 'Phyllis', 1969, 'F', 905), +(97689, 'Angelia', 1969, 'F', 901), +(97690, 'Janine', 1969, 'F', 896), +(97691, 'Marlene', 1969, 'F', 889), +(97692, 'Shana', 1969, 'F', 876), +(97693, 'Constance', 1969, 'F', 875), +(97694, 'Kendra', 1969, 'F', 870), +(97695, 'Lana', 1969, 'F', 858), +(97696, 'Doreen', 1969, 'F', 854), +(97697, 'Audra', 1969, 'F', 844), +(97698, 'Bernadette', 1969, 'F', 836), +(97699, 'Billie', 1969, 'F', 823), +(97700, 'Christi', 1969, 'F', 816), +(97701, 'Nichole', 1969, 'F', 816), +(97702, 'Sue', 1969, 'F', 813), +(97703, 'Tammi', 1969, 'F', 813), +(97704, 'Lynne', 1969, 'F', 812), +(97705, 'Nina', 1969, 'F', 812), +(97706, 'Vivian', 1969, 'F', 811), +(97707, 'Lydia', 1969, 'F', 810), +(97708, 'Leanne', 1969, 'F', 801), +(97709, 'Rosemary', 1969, 'F', 796), +(97710, 'Camille', 1969, 'F', 784), +(97711, 'Lillian', 1969, 'F', 773), +(97712, 'Desiree', 1969, 'F', 771), +(97713, 'Latonya', 1969, 'F', 771), +(97714, 'Dionne', 1969, 'F', 768), +(97715, 'Jeannie', 1969, 'F', 768), +(97716, 'Lucinda', 1969, 'F', 757), +(97717, 'Arlene', 1969, 'F', 738), +(97718, 'Paige', 1969, 'F', 734), +(97719, 'Wendi', 1969, 'F', 732), +(97720, 'Rachael', 1969, 'F', 725), +(97721, 'Lesley', 1969, 'F', 713), +(97722, 'Keri', 1969, 'F', 711), +(97723, 'Nora', 1969, 'F', 709), +(97724, 'Esther', 1969, 'F', 706), +(97725, 'Courtney', 1969, 'F', 699), +(97726, 'Josephine', 1969, 'F', 699), +(97727, 'Grace', 1969, 'F', 697), +(97728, 'Mona', 1969, 'F', 689), +(97729, 'Ruby', 1969, 'F', 683), +(97730, 'Jeannette', 1969, 'F', 681), +(97731, 'Candice', 1969, 'F', 679), +(97732, 'Patty', 1969, 'F', 679), +(97733, 'Serena', 1969, 'F', 676), +(97734, 'Marcy', 1969, 'F', 672), +(97735, 'Cathleen', 1969, 'F', 670), +(97736, 'Rene', 1969, 'F', 670), +(97737, 'Marjorie', 1969, 'F', 668), +(97738, 'Janelle', 1969, 'F', 665), +(97739, 'Stefanie', 1969, 'F', 661), +(97740, 'Bobbi', 1969, 'F', 660), +(97741, 'Marianne', 1969, 'F', 660), +(97742, 'Tabatha', 1969, 'F', 658), +(97743, 'Annmarie', 1969, 'F', 652), +(97744, 'Mindy', 1969, 'F', 648), +(97745, 'Elisa', 1969, 'F', 647), +(97746, 'Pauline', 1969, 'F', 646), +(97747, 'Ashley', 1969, 'F', 642), +(97748, 'Daphne', 1969, 'F', 640), +(97749, 'Lorrie', 1969, 'F', 640), +(97750, 'Angel', 1969, 'F', 639), +(97751, 'Darcy', 1969, 'F', 639), +(97752, 'Christa', 1969, 'F', 638), +(97753, 'Paulette', 1969, 'F', 638), +(97754, 'Cara', 1969, 'F', 636), +(97755, 'Leann', 1969, 'F', 636), +(97756, 'Laurel', 1969, 'F', 632), +(97757, 'Deirdre', 1969, 'F', 631), +(97758, 'Angelique', 1969, 'F', 624), +(97759, 'Bethany', 1969, 'F', 622), +(97760, 'Gayle', 1969, 'F', 620), +(97761, 'Katie', 1969, 'F', 618), +(97762, 'Jeanine', 1969, 'F', 615), +(97763, 'Miriam', 1969, 'F', 613), +(97764, 'Chandra', 1969, 'F', 607), +(97765, 'Shanna', 1969, 'F', 607), +(97766, 'Anissa', 1969, 'F', 606), +(97767, 'Iris', 1969, 'F', 605), +(97768, 'Edith', 1969, 'F', 604), +(97769, 'Louise', 1969, 'F', 602), +(97770, 'June', 1969, 'F', 598), +(97771, 'Susanne', 1969, 'F', 597), +(97772, 'Sophia', 1969, 'F', 593), +(97773, 'Bridgette', 1969, 'F', 591), +(97774, 'Celeste', 1969, 'F', 591), +(97775, 'Dolores', 1969, 'F', 586), +(97776, 'Shauna', 1969, 'F', 585), +(97777, 'Deanne', 1969, 'F', 583), +(97778, 'Lucy', 1969, 'F', 582), +(97779, 'Patti', 1969, 'F', 578), +(97780, 'Cristina', 1969, 'F', 577), +(97781, 'Irma', 1969, 'F', 576), +(97782, 'Jenifer', 1969, 'F', 572), +(97783, 'Kimberlee', 1969, 'F', 572), +(97784, 'Annie', 1969, 'F', 570), +(97785, 'Jan', 1969, 'F', 570), +(97786, 'Francine', 1969, 'F', 567), +(97787, 'Tamra', 1969, 'F', 567), +(97788, 'Geraldine', 1969, 'F', 566), +(97789, 'Lois', 1969, 'F', 565), +(97790, 'Suzette', 1969, 'F', 561), +(97791, 'Georgia', 1969, 'F', 560), +(97792, 'Alexandra', 1969, 'F', 549), +(97793, 'Nadine', 1969, 'F', 546), +(97794, 'Cecilia', 1969, 'F', 543), +(97795, 'Patrice', 1969, 'F', 541), +(97796, 'Sondra', 1969, 'F', 540), +(97797, 'Jami', 1969, 'F', 537), +(97798, 'Maryann', 1969, 'F', 537), +(97799, 'Angelina', 1969, 'F', 534), +(97800, 'Ladonna', 1969, 'F', 534), +(97801, 'Carole', 1969, 'F', 532), +(97802, 'Kris', 1969, 'F', 529), +(97803, 'Chris', 1969, 'F', 528), +(97804, 'Lea', 1969, 'F', 528), +(97805, 'Marci', 1969, 'F', 528), +(97806, 'Melisa', 1969, 'F', 527), +(97807, 'Margarita', 1969, 'F', 526), +(97808, 'Naomi', 1969, 'F', 526), +(97809, 'Debora', 1969, 'F', 523), +(97810, 'Faith', 1969, 'F', 523), +(97811, 'Dora', 1969, 'F', 521), +(97812, 'Elena', 1969, 'F', 518), +(97813, 'Emma', 1969, 'F', 516), +(97814, 'Marnie', 1969, 'F', 510), +(97815, 'Alma', 1969, 'F', 509), +(97816, 'Natasha', 1969, 'F', 509), +(97817, 'Marcella', 1969, 'F', 507), +(97818, 'Tania', 1969, 'F', 501), +(97819, 'Janie', 1969, 'F', 499), +(97820, 'Marlo', 1969, 'F', 499), +(97821, 'Kay', 1969, 'F', 498), +(97822, 'Nikki', 1969, 'F', 493), +(97823, 'Jeri', 1969, 'F', 492), +(97824, 'Guadalupe', 1969, 'F', 484), +(97825, 'Jennie', 1969, 'F', 483), +(97826, 'Lena', 1969, 'F', 483), +(97827, 'Ingrid', 1969, 'F', 479), +(97828, 'Rosemarie', 1969, 'F', 479), +(97829, 'Janette', 1969, 'F', 478), +(97830, 'Adriana', 1969, 'F', 475), +(97831, 'Tonja', 1969, 'F', 471), +(97832, 'Amelia', 1969, 'F', 464), +(97833, 'Deena', 1969, 'F', 464), +(97834, 'Mia', 1969, 'F', 461), +(97835, 'Malinda', 1969, 'F', 459), +(97836, 'Michael', 1969, 'F', 457), +(97837, 'Edna', 1969, 'F', 455), +(97838, 'Jeannine', 1969, 'F', 455), +(97839, 'Julianne', 1969, 'F', 455), +(97840, 'Delores', 1969, 'F', 454), +(97841, 'Myra', 1969, 'F', 453), +(97842, 'Lorena', 1969, 'F', 452), +(97843, 'Lynnette', 1969, 'F', 452), +(97844, 'Tamera', 1969, 'F', 452), +(97845, 'Mildred', 1969, 'F', 450), +(97846, 'Valarie', 1969, 'F', 445), +(97847, 'Luz', 1969, 'F', 442), +(97848, 'Noelle', 1969, 'F', 442), +(97849, 'Deann', 1969, 'F', 438), +(97850, 'Beatrice', 1969, 'F', 437), +(97851, 'Marcie', 1969, 'F', 437), +(97852, 'Brandi', 1969, 'F', 436), +(97853, 'Susie', 1969, 'F', 431), +(97854, 'Karyn', 1969, 'F', 426), +(97855, 'Maribel', 1969, 'F', 426), +(97856, 'Terrie', 1969, 'F', 421), +(97857, 'Cari', 1969, 'F', 420), +(97858, 'Clara', 1969, 'F', 416), +(97859, 'Betsy', 1969, 'F', 415), +(97860, 'Danette', 1969, 'F', 415), +(97861, 'Deidre', 1969, 'F', 415), +(97862, 'Marion', 1969, 'F', 413), +(97863, 'Elisabeth', 1969, 'F', 412), +(97864, 'Margie', 1969, 'F', 410), +(97865, 'Lauri', 1969, 'F', 407), +(97866, 'Johanna', 1969, 'F', 406), +(97867, 'Brooke', 1969, 'F', 403), +(97868, 'Shellie', 1969, 'F', 403), +(97869, 'Shonda', 1969, 'F', 402), +(97870, 'Tisha', 1969, 'F', 402), +(97871, 'Rena', 1969, 'F', 400), +(97872, 'Gladys', 1969, 'F', 399), +(97873, 'Marisol', 1969, 'F', 399), +(97874, 'Angelica', 1969, 'F', 398), +(97875, 'Bertha', 1969, 'F', 397), +(97876, 'Colette', 1969, 'F', 395), +(97877, 'Olga', 1969, 'F', 393), +(97878, 'Jocelyn', 1969, 'F', 392), +(97879, 'Jerri', 1969, 'F', 391), +(97880, 'Gena', 1969, 'F', 389), +(97881, 'Ida', 1969, 'F', 389), +(97882, 'Bernice', 1969, 'F', 385), +(97883, 'Isabel', 1969, 'F', 383), +(97884, 'Ursula', 1969, 'F', 383), +(97885, 'Pam', 1969, 'F', 382), +(97886, 'Lashawn', 1969, 'F', 381), +(97887, 'Alyssa', 1969, 'F', 380), +(97888, 'Claire', 1969, 'F', 378), +(97889, 'Bridgett', 1969, 'F', 374), +(97890, 'Dee', 1969, 'F', 374), +(97891, 'Alisha', 1969, 'F', 373), +(97892, 'Carey', 1969, 'F', 373), +(97893, 'Caryn', 1969, 'F', 373), +(97894, 'Tasha', 1969, 'F', 370), +(97895, 'Lesa', 1969, 'F', 368), +(97896, 'Katharine', 1969, 'F', 367), +(97897, 'Rosalind', 1969, 'F', 366), +(97898, 'Florence', 1969, 'F', 365), +(97899, 'Jolene', 1969, 'F', 365), +(97900, 'Corinne', 1969, 'F', 363), +(97901, 'Gwen', 1969, 'F', 363), +(97902, 'Amie', 1969, 'F', 361), +(97903, 'Bonita', 1969, 'F', 361), +(97904, 'Shelli', 1969, 'F', 361), +(97905, 'Eleanor', 1969, 'F', 359), +(97906, 'Madeline', 1969, 'F', 359), +(97907, 'Justine', 1969, 'F', 355), +(97908, 'Vera', 1969, 'F', 355), +(97909, 'Nanette', 1969, 'F', 351), +(97910, 'Marisa', 1969, 'F', 350), +(97911, 'Latanya', 1969, 'F', 349), +(97912, 'Greta', 1969, 'F', 348), +(97913, 'Olivia', 1969, 'F', 348), +(97914, 'Hilary', 1969, 'F', 347), +(97915, 'Trudy', 1969, 'F', 347), +(97916, 'Blanca', 1969, 'F', 345), +(97917, 'Margo', 1969, 'F', 345), +(97918, 'Marian', 1969, 'F', 344), +(97919, 'Penelope', 1969, 'F', 344), +(97920, 'Rebekah', 1969, 'F', 343), +(97921, 'Kerrie', 1969, 'F', 342), +(97922, 'Renae', 1969, 'F', 340), +(97923, 'Therese', 1969, 'F', 339), +(97924, 'Joni', 1969, 'F', 336), +(97925, 'Robert', 1969, 'F', 335), +(97926, 'Tia', 1969, 'F', 332), +(97927, 'Nichelle', 1969, 'F', 331), +(97928, 'Brandy', 1969, 'F', 330), +(97929, 'Annemarie', 1969, 'F', 329), +(97930, 'James', 1969, 'F', 329), +(97931, 'Keisha', 1969, 'F', 329), +(97932, 'Elise', 1969, 'F', 328), +(97933, 'Shelby', 1969, 'F', 326), +(97934, 'Silvia', 1969, 'F', 326), +(97935, 'Jessie', 1969, 'F', 325), +(97936, 'Maura', 1969, 'F', 325), +(97937, 'Tamatha', 1969, 'F', 322), +(97938, 'Ella', 1969, 'F', 320), +(97939, 'Joelle', 1969, 'F', 319), +(97940, 'Stella', 1969, 'F', 318), +(97941, 'Thelma', 1969, 'F', 318), +(97942, 'Ericka', 1969, 'F', 316), +(97943, 'Tamela', 1969, 'F', 316), +(97944, 'Mitzi', 1969, 'F', 315), +(97945, 'Liza', 1969, 'F', 314), +(97946, 'Janel', 1969, 'F', 312), +(97947, 'Claudine', 1969, 'F', 310), +(97948, 'Dara', 1969, 'F', 310), +(97949, 'Gabrielle', 1969, 'F', 309), +(97950, 'Aretha', 1969, 'F', 308), +(97951, 'Denice', 1969, 'F', 307), +(97952, 'Allyson', 1969, 'F', 304), +(97953, 'Leeann', 1969, 'F', 303), +(97954, 'Karrie', 1969, 'F', 301), +(97955, 'Maritza', 1969, 'F', 300), +(97956, 'Daisy', 1969, 'F', 299), +(97957, 'Delia', 1969, 'F', 298), +(97958, 'David', 1969, 'F', 296), +(97959, 'Patsy', 1969, 'F', 296), +(97960, 'Polly', 1969, 'F', 296), +(97961, 'Corina', 1969, 'F', 295), +(97962, 'Lorna', 1969, 'F', 295), +(97963, 'Josette', 1969, 'F', 294), +(97964, 'Lorri', 1969, 'F', 294), +(97965, 'Rosie', 1969, 'F', 294), +(97966, 'Della', 1969, 'F', 291), +(97967, 'Eugenia', 1969, 'F', 291), +(97968, 'Felecia', 1969, 'F', 291), +(97969, 'Juliet', 1969, 'F', 291), +(97970, 'Whitney', 1969, 'F', 289), +(97971, 'John', 1969, 'F', 288), +(97972, 'Antonia', 1969, 'F', 286), +(97973, 'Hilda', 1969, 'F', 286), +(97974, 'Latonia', 1969, 'F', 285), +(97975, 'Shannan', 1969, 'F', 284), +(97976, 'Abigail', 1969, 'F', 281), +(97977, 'Richelle', 1969, 'F', 281), +(97978, 'Elsa', 1969, 'F', 280), +(97979, 'Lawanda', 1969, 'F', 280), +(97980, 'Marina', 1969, 'F', 280), +(97981, 'Benita', 1969, 'F', 278), +(97982, 'Coleen', 1969, 'F', 278), +(97983, 'Leona', 1969, 'F', 278), +(97984, 'Dayna', 1969, 'F', 277), +(97985, 'Alissa', 1969, 'F', 276), +(97986, 'Clarissa', 1969, 'F', 276), +(97987, 'Ethel', 1969, 'F', 276), +(97988, 'Lourdes', 1969, 'F', 274), +(97989, 'Sandi', 1969, 'F', 274), +(97990, 'Michell', 1969, 'F', 272), +(97991, 'Selena', 1969, 'F', 272), +(97992, 'Simone', 1969, 'F', 272), +(97993, 'Marta', 1969, 'F', 271), +(97994, 'Missy', 1969, 'F', 271), +(97995, 'Janis', 1969, 'F', 270), +(97996, 'Rae', 1969, 'F', 270), +(97997, 'Randi', 1969, 'F', 270), +(97998, 'Rosalinda', 1969, 'F', 269), +(97999, 'Janeen', 1969, 'F', 268), +(98000, 'Malissa', 1969, 'F', 268), +(98001, 'Mechelle', 1969, 'F', 263), +(98002, 'Geneva', 1969, 'F', 262), +(98003, 'Demetria', 1969, 'F', 261), +(98004, 'Janell', 1969, 'F', 259), +(98005, 'Lucille', 1969, 'F', 258), +(98006, 'Mara', 1969, 'F', 258), +(98007, 'Marissa', 1969, 'F', 258), +(98008, 'Tyra', 1969, 'F', 258), +(98009, 'Genevieve', 1969, 'F', 257), +(98010, 'Sharron', 1969, 'F', 255), +(98011, 'Marni', 1969, 'F', 253), +(98012, 'Hollie', 1969, 'F', 252), +(98013, 'Martina', 1969, 'F', 252), +(98014, 'Janna', 1969, 'F', 250), +(98015, 'Saundra', 1969, 'F', 250), +(98016, 'Vikki', 1969, 'F', 250), +(98017, 'Jeanie', 1969, 'F', 249), +(98018, 'Wilma', 1969, 'F', 248), +(98019, 'Lenora', 1969, 'F', 245), +(98020, 'Valencia', 1969, 'F', 244), +(98021, 'Buffy', 1969, 'F', 243), +(98022, 'Aileen', 1969, 'F', 242), +(98023, 'Juli', 1969, 'F', 242), +(98024, 'Deidra', 1969, 'F', 241), +(98025, 'Danita', 1969, 'F', 240), +(98026, 'Ivy', 1969, 'F', 240), +(98027, 'Renita', 1969, 'F', 240), +(98028, 'Susanna', 1969, 'F', 240), +(98029, 'Letitia', 1969, 'F', 239), +(98030, 'Maxine', 1969, 'F', 238), +(98031, 'Shanda', 1969, 'F', 238), +(98032, 'Celia', 1969, 'F', 237), +(98033, 'Danna', 1969, 'F', 237), +(98034, 'Jeanna', 1969, 'F', 237), +(98035, 'Vonda', 1969, 'F', 237), +(98036, 'Noreen', 1969, 'F', 236), +(98037, 'Robbin', 1969, 'F', 236), +(98038, 'Casandra', 1969, 'F', 235), +(98039, 'Charity', 1969, 'F', 234), +(98040, 'Faye', 1969, 'F', 234), +(98041, 'Gayla', 1969, 'F', 234), +(98042, 'Krystal', 1969, 'F', 234), +(98043, 'Meghan', 1969, 'F', 233), +(98044, 'Jayne', 1969, 'F', 229), +(98045, 'Robbie', 1969, 'F', 228), +(98046, 'Lillie', 1969, 'F', 227), +(98047, 'Rosalyn', 1969, 'F', 226), +(98048, 'Kate', 1969, 'F', 225), +(98049, 'Brigitte', 1969, 'F', 224), +(98050, 'Ada', 1969, 'F', 223), +(98051, 'Gabriela', 1969, 'F', 223), +(98052, 'Shani', 1969, 'F', 223), +(98053, 'Charmaine', 1969, 'F', 222), +(98054, 'Trena', 1969, 'F', 222), +(98055, 'Stacia', 1969, 'F', 221), +(98056, 'Eve', 1969, 'F', 220), +(98057, 'Charla', 1969, 'F', 219), +(98058, 'Kenya', 1969, 'F', 219), +(98059, 'Lolita', 1969, 'F', 219), +(98060, 'Marybeth', 1969, 'F', 218), +(98061, 'Sharlene', 1969, 'F', 218), +(98062, 'Darci', 1969, 'F', 217), +(98063, 'Mari', 1969, 'F', 217), +(98064, 'Graciela', 1969, 'F', 215), +(98065, 'Mandy', 1969, 'F', 215), +(98066, 'Johnna', 1969, 'F', 214), +(98067, 'Leanna', 1969, 'F', 214), +(98068, 'Miranda', 1969, 'F', 214), +(98069, 'Rosalie', 1969, 'F', 214), +(98070, 'Verna', 1969, 'F', 213), +(98071, 'Alana', 1969, 'F', 212), +(98072, 'Hazel', 1969, 'F', 212), +(98073, 'Georgina', 1969, 'F', 210), +(98074, 'Cecelia', 1969, 'F', 209), +(98075, 'Jeana', 1969, 'F', 209), +(98076, 'Lissette', 1969, 'F', 209), +(98077, 'Lucia', 1969, 'F', 208), +(98078, 'Tawana', 1969, 'F', 208), +(98079, 'Cassie', 1969, 'F', 207), +(98080, 'Anastasia', 1969, 'F', 206), +(98081, 'Candi', 1969, 'F', 205), +(98082, 'Catrina', 1969, 'F', 205), +(98083, 'Alexis', 1969, 'F', 204), +(98084, 'Beatriz', 1969, 'F', 204), +(98085, 'Chanda', 1969, 'F', 202), +(98086, 'Cora', 1969, 'F', 202), +(98087, 'Barbra', 1969, 'F', 201), +(98088, 'Chelsea', 1969, 'F', 201), +(98089, 'Cinnamon', 1969, 'F', 201), +(98090, 'Evette', 1969, 'F', 201), +(98091, 'Holli', 1969, 'F', 201), +(98092, 'Lisette', 1969, 'F', 201), +(98093, 'Sheree', 1969, 'F', 201), +(98094, 'Tawnya', 1969, 'F', 201), +(98095, 'Adrian', 1969, 'F', 200), +(98096, 'Dawna', 1969, 'F', 200), +(98097, 'Roslyn', 1969, 'F', 200), +(98098, 'Shanon', 1969, 'F', 200), +(98099, 'Susana', 1969, 'F', 200), +(98100, 'Alecia', 1969, 'F', 199), +(98101, 'William', 1969, 'F', 199), +(98102, 'Eunice', 1969, 'F', 198), +(98103, 'Hillary', 1969, 'F', 198), +(98104, 'Larissa', 1969, 'F', 198), +(98105, 'Carmela', 1969, 'F', 197), +(98106, 'Latricia', 1969, 'F', 197), +(98107, 'Corinna', 1969, 'F', 195), +(98108, 'Willie', 1969, 'F', 195), +(98109, 'Antionette', 1969, 'F', 194), +(98110, 'Coretta', 1969, 'F', 194), +(98111, 'Loriann', 1969, 'F', 194), +(98112, 'Kayla', 1969, 'F', 193), +(98113, 'Melodie', 1969, 'F', 193), +(98114, 'Pamala', 1969, 'F', 193), +(98115, 'Gia', 1969, 'F', 192), +(98116, 'Helena', 1969, 'F', 192), +(98117, 'Johnnie', 1969, 'F', 192), +(98118, 'Casey', 1969, 'F', 191), +(98119, 'Cindi', 1969, 'F', 191), +(98120, 'Ivette', 1969, 'F', 191), +(98121, 'Kathie', 1969, 'F', 191), +(98122, 'Velma', 1969, 'F', 191), +(98123, 'Luann', 1969, 'F', 190), +(98124, 'Carlene', 1969, 'F', 189), +(98125, 'Valeria', 1969, 'F', 189), +(98126, 'Christal', 1969, 'F', 188), +(98127, 'Dale', 1969, 'F', 188), +(98128, 'Rosetta', 1969, 'F', 188), +(98129, 'Myrna', 1969, 'F', 187), +(98130, 'Rosanne', 1969, 'F', 186), +(98131, 'Chrystal', 1969, 'F', 185), +(98132, 'Claudette', 1969, 'F', 184), +(98133, 'Darcie', 1969, 'F', 184), +(98134, 'Kami', 1969, 'F', 183), +(98135, 'Kathi', 1969, 'F', 183), +(98136, 'Maricela', 1969, 'F', 183), +(98137, 'Noel', 1969, 'F', 183), +(98138, 'Dixie', 1969, 'F', 182), +(98139, 'Rosanna', 1969, 'F', 182), +(98140, 'Cristy', 1969, 'F', 180), +(98141, 'Lanette', 1969, 'F', 179), +(98142, 'Cathryn', 1969, 'F', 178), +(98143, 'Windy', 1969, 'F', 178), +(98144, 'Georgette', 1969, 'F', 177), +(98145, 'Karri', 1969, 'F', 177), +(98146, 'Roxanna', 1969, 'F', 177), +(98147, 'Tressa', 1969, 'F', 177), +(98148, 'Athena', 1969, 'F', 176), +(98149, 'Elissa', 1969, 'F', 176), +(98150, 'Frankie', 1969, 'F', 176), +(98151, 'Josie', 1969, 'F', 176), +(98152, 'Juliana', 1969, 'F', 176), +(98153, 'Lorene', 1969, 'F', 176), +(98154, 'Camilla', 1969, 'F', 175), +(98155, 'Juana', 1969, 'F', 175), +(98156, 'Lenore', 1969, 'F', 175), +(98157, 'Marguerite', 1969, 'F', 175), +(98158, 'Tamika', 1969, 'F', 175), +(98159, 'Adrianne', 1969, 'F', 174), +(98160, 'Gerri', 1969, 'F', 174), +(98161, 'Judi', 1969, 'F', 174), +(98162, 'Richard', 1969, 'F', 174), +(98163, 'Teressa', 1969, 'F', 174), +(98164, 'Ava', 1969, 'F', 173), +(98165, 'Carolina', 1969, 'F', 173), +(98166, 'Christopher', 1969, 'F', 173), +(98167, 'Mellissa', 1969, 'F', 173), +(98168, 'Ami', 1969, 'F', 172), +(98169, 'Dedra', 1969, 'F', 172), +(98170, 'Lola', 1969, 'F', 172), +(98171, 'Aida', 1969, 'F', 171), +(98172, 'Caren', 1969, 'F', 171), +(98173, 'Jacquline', 1969, 'F', 171), +(98174, 'Maggie', 1969, 'F', 171), +(98175, 'Andra', 1969, 'F', 170), +(98176, 'Anjanette', 1969, 'F', 170), +(98177, 'Ernestine', 1969, 'F', 170), +(98178, 'Roxann', 1969, 'F', 170), +(98179, 'Kathrine', 1969, 'F', 169), +(98180, 'Noemi', 1969, 'F', 169), +(98181, 'Tana', 1969, 'F', 169), +(98182, 'Jaime', 1969, 'F', 168), +(98183, 'Tresa', 1969, 'F', 168), +(98184, 'Jolie', 1969, 'F', 167), +(98185, 'Mercedes', 1969, 'F', 167), +(98186, 'Mollie', 1969, 'F', 167), +(98187, 'Elsie', 1969, 'F', 165), +(98188, 'Lizette', 1969, 'F', 165), +(98189, 'Lorinda', 1969, 'F', 165), +(98190, 'Lou', 1969, 'F', 165), +(98191, 'Kirstin', 1969, 'F', 164), +(98192, 'Laverne', 1969, 'F', 164), +(98193, 'Roseann', 1969, 'F', 164), +(98194, 'Yolonda', 1969, 'F', 164), +(98195, 'Elvira', 1969, 'F', 163), +(98196, 'Leisa', 1969, 'F', 163), +(98197, 'Racquel', 1969, 'F', 162), +(98198, 'Tena', 1969, 'F', 162), +(98199, 'Nicolle', 1969, 'F', 161), +(98200, 'Patrica', 1969, 'F', 161), +(98201, 'Kandy', 1969, 'F', 159), +(98202, 'Kecia', 1969, 'F', 159), +(98203, 'Sharla', 1969, 'F', 159), +(98204, 'Anthony', 1969, 'F', 158), +(98205, 'Alberta', 1969, 'F', 157), +(98206, 'Bessie', 1969, 'F', 157), +(98207, 'Carin', 1969, 'F', 157), +(98208, 'Kandi', 1969, 'F', 157), +(98209, 'Latrice', 1969, 'F', 157), +(98210, 'Suzanna', 1969, 'F', 157), +(98211, 'Geri', 1969, 'F', 156), +(98212, 'Tiffani', 1969, 'F', 156), +(98213, 'Althea', 1969, 'F', 155), +(98214, 'Collette', 1969, 'F', 155), +(98215, 'Gale', 1969, 'F', 155), +(98216, 'Helene', 1969, 'F', 155), +(98217, 'Autumn', 1969, 'F', 154), +(98218, 'Charisse', 1969, 'F', 154), +(98219, 'Harriet', 1969, 'F', 154), +(98220, 'Joseph', 1969, 'F', 154), +(98221, 'Libby', 1969, 'F', 154), +(98222, 'Danelle', 1969, 'F', 153), +(98223, 'Deloris', 1969, 'F', 153), +(98224, 'Dona', 1969, 'F', 153), +(98225, 'Esmeralda', 1969, 'F', 153), +(98226, 'Francesca', 1969, 'F', 153), +(98227, 'Karie', 1969, 'F', 153), +(98228, 'Magdalena', 1969, 'F', 153), +(98229, 'Misti', 1969, 'F', 153), +(98230, 'Kisha', 1969, 'F', 152), +(98231, 'Adriane', 1969, 'F', 151), +(98232, 'Monika', 1969, 'F', 151), +(98233, 'Cherry', 1969, 'F', 150), +(98234, 'Janene', 1969, 'F', 150), +(98235, 'Kimberli', 1969, 'F', 150), +(98236, 'Kristal', 1969, 'F', 150), +(98237, 'Laureen', 1969, 'F', 150), +(98238, 'Starla', 1969, 'F', 150), +(98239, 'Latasha', 1969, 'F', 149), +(98240, 'Shonna', 1969, 'F', 149), +(98241, 'Abby', 1969, 'F', 148), +(98242, 'Christian', 1969, 'F', 148), +(98243, 'Dorothea', 1969, 'F', 148), +(98244, 'Valorie', 1969, 'F', 148), +(98245, 'Carri', 1969, 'F', 147), +(98246, 'Cori', 1969, 'F', 147), +(98247, 'Rona', 1969, 'F', 147), +(98248, 'Brigette', 1969, 'F', 146), +(98249, 'Chantel', 1969, 'F', 146), +(98250, 'Christin', 1969, 'F', 146), +(98251, 'Melonie', 1969, 'F', 146), +(98252, 'Milagros', 1969, 'F', 146), +(98253, 'Nellie', 1969, 'F', 146), +(98254, 'Selina', 1969, 'F', 146), +(98255, 'Sherie', 1969, 'F', 146), +(98256, 'Hannah', 1969, 'F', 145), +(98257, 'Mayra', 1969, 'F', 145), +(98258, 'Venus', 1969, 'F', 145), +(98259, 'Angeline', 1969, 'F', 144), +(98260, 'Francis', 1969, 'F', 144), +(98261, 'Lavonne', 1969, 'F', 144), +(98262, 'Tessa', 1969, 'F', 144), +(98263, 'Andria', 1969, 'F', 143), +(98264, 'Latisha', 1969, 'F', 143), +(98265, 'Linette', 1969, 'F', 143), +(98266, 'Machelle', 1969, 'F', 143), +(98267, 'Maryellen', 1969, 'F', 143), +(98268, 'Pearl', 1969, 'F', 143), +(98269, 'Tori', 1969, 'F', 143), +(98270, 'Corey', 1969, 'F', 142), +(98271, 'Dione', 1969, 'F', 142), +(98272, 'Joey', 1969, 'F', 142), +(98273, 'Mattie', 1969, 'F', 142), +(98274, 'Glenna', 1969, 'F', 141), +(98275, 'Lila', 1969, 'F', 141), +(98276, 'Nicola', 1969, 'F', 141), +(98277, 'Marti', 1969, 'F', 140), +(98278, 'Michaela', 1969, 'F', 140), +(98279, 'Viola', 1969, 'F', 140), +(98280, 'Alyson', 1969, 'F', 139), +(98281, 'Cherise', 1969, 'F', 139), +(98282, 'Jada', 1969, 'F', 139), +(98283, 'Mark', 1969, 'F', 139), +(98284, 'Marlena', 1969, 'F', 139), +(98285, 'Davina', 1969, 'F', 138), +(98286, 'Dori', 1969, 'F', 138), +(98287, 'Juliette', 1969, 'F', 138), +(98288, 'Minnie', 1969, 'F', 138), +(98289, 'Violet', 1969, 'F', 138), +(98290, 'Angelita', 1969, 'F', 137), +(98291, 'Consuelo', 1969, 'F', 137), +(98292, 'Dorene', 1969, 'F', 137), +(98293, 'Freda', 1969, 'F', 137), +(98294, 'Flora', 1969, 'F', 136), +(98295, 'Leila', 1969, 'F', 136), +(98296, 'Lucretia', 1969, 'F', 136), +(98297, 'Lupe', 1969, 'F', 136), +(98298, 'Roxane', 1969, 'F', 136), +(98299, 'Charles', 1969, 'F', 135), +(98300, 'Estella', 1969, 'F', 135), +(98301, 'Maryjo', 1969, 'F', 135), +(98302, 'Milissa', 1969, 'F', 135), +(98303, 'Pennie', 1969, 'F', 135), +(98304, 'Inez', 1969, 'F', 134), +(98305, 'Kyra', 1969, 'F', 134), +(98306, 'Mindi', 1969, 'F', 134), +(98307, 'Corrine', 1969, 'F', 133), +(98308, 'Tangela', 1969, 'F', 133), +(98309, 'Dominique', 1969, 'F', 132), +(98310, 'Katy', 1969, 'F', 132), +(98311, 'Rhoda', 1969, 'F', 132), +(98312, 'Shiela', 1969, 'F', 132), +(98313, 'Stephenie', 1969, 'F', 132), +(98314, 'Twila', 1969, 'F', 132), +(98315, 'Adele', 1969, 'F', 131), +(98316, 'Aurora', 1969, 'F', 131), +(98317, 'Kaye', 1969, 'F', 131), +(98318, 'Lesli', 1969, 'F', 131), +(98319, 'Rosario', 1969, 'F', 131), +(98320, 'Susannah', 1969, 'F', 131), +(98321, 'Brian', 1969, 'F', 130), +(98322, 'Kimberlie', 1969, 'F', 130), +(98323, 'Agnes', 1969, 'F', 129), +(98324, 'Cary', 1969, 'F', 129), +(98325, 'Gracie', 1969, 'F', 129), +(98326, 'Carmella', 1969, 'F', 128), +(98327, 'Eric', 1969, 'F', 128), +(98328, 'Gillian', 1969, 'F', 128), +(98329, 'Kevin', 1969, 'F', 128), +(98330, 'Shona', 1969, 'F', 128), +(98331, 'Sofia', 1969, 'F', 128), +(98332, 'Carleen', 1969, 'F', 127), +(98333, 'Diann', 1969, 'F', 127), +(98334, 'Gay', 1969, 'F', 127), +(98335, 'Mae', 1969, 'F', 127), +(98336, 'Mellisa', 1969, 'F', 127), +(98337, 'Merry', 1969, 'F', 127), +(98338, 'Renea', 1969, 'F', 127), +(98339, 'Christen', 1969, 'F', 126), +(98340, 'Julianna', 1969, 'F', 126), +(98341, 'Alexandria', 1969, 'F', 125), +(98342, 'Loren', 1969, 'F', 125), +(98343, 'Louisa', 1969, 'F', 125), +(98344, 'Nita', 1969, 'F', 125), +(98345, 'Rolanda', 1969, 'F', 125), +(98346, 'Sharonda', 1969, 'F', 125), +(98347, 'Tanja', 1969, 'F', 125), +(98348, 'Jonna', 1969, 'F', 124), +(98349, 'Julissa', 1969, 'F', 124), +(98350, 'Minerva', 1969, 'F', 124), +(98351, 'Treva', 1969, 'F', 124), +(98352, 'Eliza', 1969, 'F', 123), +(98353, 'Keely', 1969, 'F', 123), +(98354, 'Lesia', 1969, 'F', 123), +(98355, 'Loraine', 1969, 'F', 123), +(98356, 'Britt', 1969, 'F', 122), +(98357, 'Corrina', 1969, 'F', 122), +(98358, 'Liane', 1969, 'F', 122), +(98359, 'Steven', 1969, 'F', 122), +(98360, 'Tamie', 1969, 'F', 122), +(98361, 'Elva', 1969, 'F', 121), +(98362, 'Esperanza', 1969, 'F', 121), +(98363, 'Jayme', 1969, 'F', 121), +(98364, 'Karina', 1969, 'F', 121), +(98365, 'Leilani', 1969, 'F', 121), +(98366, 'Liz', 1969, 'F', 121), +(98367, 'Nicki', 1969, 'F', 121), +(98368, 'Paul', 1969, 'F', 121), +(98369, 'Ronna', 1969, 'F', 121), +(98370, 'Scott', 1969, 'F', 121), +(98371, 'Tamala', 1969, 'F', 121), +(98372, 'Cristine', 1969, 'F', 120), +(98373, 'Edwina', 1969, 'F', 120), +(98374, 'Juliann', 1969, 'F', 120), +(98375, 'Kira', 1969, 'F', 120), +(98376, 'Luanne', 1969, 'F', 120), +(98377, 'Lyn', 1969, 'F', 120), +(98378, 'Portia', 1969, 'F', 120), +(98379, 'Tawanda', 1969, 'F', 120), +(98380, 'Araceli', 1969, 'F', 118), +(98381, 'Dorinda', 1969, 'F', 118), +(98382, 'Marisela', 1969, 'F', 118), +(98383, 'Sallie', 1969, 'F', 118), +(98384, 'Suzan', 1969, 'F', 118), +(98385, 'Annamarie', 1969, 'F', 117), +(98386, 'Francisca', 1969, 'F', 117), +(98387, 'Josefina', 1969, 'F', 117), +(98388, 'Lia', 1969, 'F', 117), +(98389, 'Migdalia', 1969, 'F', 117), +(98390, 'Cherri', 1969, 'F', 116), +(98391, 'Ilene', 1969, 'F', 116), +(98392, 'Lily', 1969, 'F', 116), +(98393, 'Teena', 1969, 'F', 116), +(98394, 'Tracee', 1969, 'F', 116), +(98395, 'Bobby', 1969, 'F', 115), +(98396, 'Carie', 1969, 'F', 115), +(98397, 'Clare', 1969, 'F', 115), +(98398, 'Inga', 1969, 'F', 115), +(98399, 'Jeffrey', 1969, 'F', 115), +(98400, 'Joleen', 1969, 'F', 115), +(98401, 'Kimberely', 1969, 'F', 115), +(98402, 'Leesa', 1969, 'F', 115), +(98403, 'Marva', 1969, 'F', 115), +(98404, 'Tamiko', 1969, 'F', 115), +(98405, 'Terese', 1969, 'F', 115), +(98406, 'Caprice', 1969, 'F', 114), +(98407, 'Chantal', 1969, 'F', 114), +(98408, 'Hattie', 1969, 'F', 114), +(98409, 'Jenna', 1969, 'F', 114), +(98410, 'Jewel', 1969, 'F', 114), +(98411, 'Katheryn', 1969, 'F', 114), +(98412, 'Lavonda', 1969, 'F', 114), +(98413, 'Niki', 1969, 'F', 114), +(98414, 'Stefani', 1969, 'F', 114), +(98415, 'Cami', 1969, 'F', 113), +(98416, 'Henrietta', 1969, 'F', 113), +(98417, 'Petra', 1969, 'F', 113), +(98418, 'Reba', 1969, 'F', 113), +(98419, 'Twyla', 1969, 'F', 113), +(98420, 'Jena', 1969, 'F', 112), +(98421, 'Karol', 1969, 'F', 112), +(98422, 'Nannette', 1969, 'F', 112), +(98423, 'Shawnda', 1969, 'F', 112), +(98424, 'Angella', 1969, 'F', 111), +(98425, 'Bethann', 1969, 'F', 111), +(98426, 'Bonny', 1969, 'F', 111), +(98427, 'Carissa', 1969, 'F', 111), +(98428, 'Lashonda', 1969, 'F', 111), +(98429, 'Maryanne', 1969, 'F', 111), +(98430, 'Alesia', 1969, 'F', 110), +(98431, 'Demetra', 1969, 'F', 110), +(98432, 'Keli', 1969, 'F', 110), +(98433, 'Kori', 1969, 'F', 110), +(98434, 'Kristan', 1969, 'F', 110), +(98435, 'Catharine', 1969, 'F', 109), +(98436, 'Deneen', 1969, 'F', 109), +(98437, 'Sharyn', 1969, 'F', 109), +(98438, 'Suzann', 1969, 'F', 109), +(98439, 'Tommie', 1969, 'F', 109); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(98440, 'Bettina', 1969, 'F', 108), +(98441, 'Cathrine', 1969, 'F', 108), +(98442, 'Cornelia', 1969, 'F', 108), +(98443, 'Fonda', 1969, 'F', 108), +(98444, 'Griselda', 1969, 'F', 108), +(98445, 'Roseanne', 1969, 'F', 108), +(98446, 'Debby', 1969, 'F', 107), +(98447, 'Erma', 1969, 'F', 107), +(98448, 'Nicol', 1969, 'F', 107), +(98449, 'Shantel', 1969, 'F', 107), +(98450, 'Stephaine', 1969, 'F', 107), +(98451, 'Sydney', 1969, 'F', 107), +(98452, 'Timothy', 1969, 'F', 107), +(98453, 'Toya', 1969, 'F', 107), +(98454, 'Cherrie', 1969, 'F', 106), +(98455, 'Elaina', 1969, 'F', 106), +(98456, 'Jacquelin', 1969, 'F', 106), +(98457, 'Kenneth', 1969, 'F', 106), +(98458, 'Lela', 1969, 'F', 106), +(98459, 'Liana', 1969, 'F', 106), +(98460, 'Mimi', 1969, 'F', 106), +(98461, 'Sebrina', 1969, 'F', 106), +(98462, 'Stephany', 1969, 'F', 106), +(98463, 'Adina', 1969, 'F', 105), +(98464, 'Cristi', 1969, 'F', 105), +(98465, 'Deeann', 1969, 'F', 105), +(98466, 'Denita', 1969, 'F', 105), +(98467, 'Ina', 1969, 'F', 105), +(98468, 'Kellee', 1969, 'F', 105), +(98469, 'Mamie', 1969, 'F', 105), +(98470, 'Romona', 1969, 'F', 105), +(98471, 'Rory', 1969, 'F', 105), +(98472, 'Stephani', 1969, 'F', 105), +(98473, 'Bianca', 1969, 'F', 104), +(98474, 'Cyndi', 1969, 'F', 104), +(98475, 'Daniela', 1969, 'F', 104), +(98476, 'Dawne', 1969, 'F', 104), +(98477, 'Deedee', 1969, 'F', 104), +(98478, 'Jaclyn', 1969, 'F', 104), +(98479, 'Jolynn', 1969, 'F', 104), +(98480, 'Bernadine', 1969, 'F', 103), +(98481, 'Thomas', 1969, 'F', 103), +(98482, 'Denna', 1969, 'F', 102), +(98483, 'Towanda', 1969, 'F', 102), +(98484, 'Trudi', 1969, 'F', 102), +(98485, 'Venessa', 1969, 'F', 102), +(98486, 'Lilia', 1969, 'F', 101), +(98487, 'Maribeth', 1969, 'F', 101), +(98488, 'Millie', 1969, 'F', 101), +(98489, 'Shandra', 1969, 'F', 101), +(98490, 'Chantelle', 1969, 'F', 100), +(98491, 'Octavia', 1969, 'F', 100), +(98492, 'Phoebe', 1969, 'F', 100), +(98493, 'Tosha', 1969, 'F', 100), +(98494, 'Zandra', 1969, 'F', 100), +(98495, 'Michael', 1969, 'M', 85227), +(98496, 'David', 1969, 'M', 63728), +(98497, 'James', 1969, 'M', 59940), +(98498, 'John', 1969, 'M', 58791), +(98499, 'Robert', 1969, 'M', 58342), +(98500, 'William', 1969, 'M', 37644), +(98501, 'Christopher', 1969, 'M', 35709), +(98502, 'Mark', 1969, 'M', 33409), +(98503, 'Brian', 1969, 'M', 31708), +(98504, 'Richard', 1969, 'M', 31102), +(98505, 'Jeffrey', 1969, 'M', 28994), +(98506, 'Scott', 1969, 'M', 28682), +(98507, 'Thomas', 1969, 'M', 27491), +(98508, 'Steven', 1969, 'M', 26562), +(98509, 'Joseph', 1969, 'M', 26200), +(98510, 'Kevin', 1969, 'M', 23581), +(98511, 'Timothy', 1969, 'M', 23374), +(98512, 'Daniel', 1969, 'M', 23197), +(98513, 'Charles', 1969, 'M', 21684), +(98514, 'Anthony', 1969, 'M', 20906), +(98515, 'Eric', 1969, 'M', 20773), +(98516, 'Paul', 1969, 'M', 20705), +(98517, 'Kenneth', 1969, 'M', 17556), +(98518, 'Matthew', 1969, 'M', 17485), +(98519, 'Jason', 1969, 'M', 16504), +(98520, 'Gregory', 1969, 'M', 16171), +(98521, 'Stephen', 1969, 'M', 15104), +(98522, 'Todd', 1969, 'M', 14760), +(98523, 'Ronald', 1969, 'M', 14620), +(98524, 'Donald', 1969, 'M', 12773), +(98525, 'Patrick', 1969, 'M', 12687), +(98526, 'Edward', 1969, 'M', 12465), +(98527, 'Andrew', 1969, 'M', 11299), +(98528, 'Douglas', 1969, 'M', 11261), +(98529, 'Gary', 1969, 'M', 11153), +(98530, 'Keith', 1969, 'M', 9448), +(98531, 'Sean', 1969, 'M', 9363), +(98532, 'George', 1969, 'M', 9203), +(98533, 'Craig', 1969, 'M', 8793), +(98534, 'Larry', 1969, 'M', 8290), +(98535, 'Shawn', 1969, 'M', 8273), +(98536, 'Troy', 1969, 'M', 8096), +(98537, 'Peter', 1969, 'M', 7840), +(98538, 'Dennis', 1969, 'M', 7362), +(98539, 'Jerry', 1969, 'M', 7291), +(98540, 'Jonathan', 1969, 'M', 7088), +(98541, 'Frank', 1969, 'M', 6924), +(98542, 'Jeffery', 1969, 'M', 6744), +(98543, 'Rodney', 1969, 'M', 6667), +(98544, 'Raymond', 1969, 'M', 6644), +(98545, 'Bryan', 1969, 'M', 6475), +(98546, 'Terry', 1969, 'M', 6418), +(98547, 'Bradley', 1969, 'M', 6399), +(98548, 'Tony', 1969, 'M', 5513), +(98549, 'Randy', 1969, 'M', 5269), +(98550, 'Jose', 1969, 'M', 5188), +(98551, 'Russell', 1969, 'M', 5160), +(98552, 'Corey', 1969, 'M', 4927), +(98553, 'Roger', 1969, 'M', 4909), +(98554, 'Darren', 1969, 'M', 4664), +(98555, 'Aaron', 1969, 'M', 4604), +(98556, 'Carl', 1969, 'M', 4526), +(98557, 'Marc', 1969, 'M', 4502), +(98558, 'Samuel', 1969, 'M', 4437), +(98559, 'Gerald', 1969, 'M', 4392), +(98560, 'Chris', 1969, 'M', 4287), +(98561, 'Jon', 1969, 'M', 4218), +(98562, 'Johnny', 1969, 'M', 4217), +(98563, 'Vincent', 1969, 'M', 4062), +(98564, 'Chad', 1969, 'M', 4061), +(98565, 'Lawrence', 1969, 'M', 4053), +(98566, 'Bruce', 1969, 'M', 4048), +(98567, 'Danny', 1969, 'M', 4013), +(98568, 'Phillip', 1969, 'M', 4010), +(98569, 'Wayne', 1969, 'M', 3904), +(98570, 'Alan', 1969, 'M', 3864), +(98571, 'Billy', 1969, 'M', 3776), +(98572, 'Martin', 1969, 'M', 3768), +(98573, 'Jimmy', 1969, 'M', 3763), +(98574, 'Curtis', 1969, 'M', 3683), +(98575, 'Joel', 1969, 'M', 3681), +(98576, 'Bobby', 1969, 'M', 3650), +(98577, 'Joe', 1969, 'M', 3621), +(98578, 'Walter', 1969, 'M', 3570), +(98579, 'Randall', 1969, 'M', 3568), +(98580, 'Philip', 1969, 'M', 3543), +(98581, 'Shane', 1969, 'M', 3539), +(98582, 'Glenn', 1969, 'M', 3471), +(98583, 'Dean', 1969, 'M', 3448), +(98584, 'Ricky', 1969, 'M', 3418), +(98585, 'Benjamin', 1969, 'M', 3387), +(98586, 'Brent', 1969, 'M', 3360), +(98587, 'Darrell', 1969, 'M', 3246), +(98588, 'Jay', 1969, 'M', 3189), +(98589, 'Brett', 1969, 'M', 3186), +(98590, 'Dale', 1969, 'M', 3156), +(98591, 'Arthur', 1969, 'M', 3140), +(98592, 'Steve', 1969, 'M', 3073), +(98593, 'Barry', 1969, 'M', 3063), +(98594, 'Henry', 1969, 'M', 3060), +(98595, 'Victor', 1969, 'M', 3046), +(98596, 'Willie', 1969, 'M', 3045), +(98597, 'Lance', 1969, 'M', 3030), +(98598, 'Juan', 1969, 'M', 3023), +(98599, 'Roy', 1969, 'M', 3003), +(98600, 'Jeff', 1969, 'M', 2977), +(98601, 'Derrick', 1969, 'M', 2943), +(98602, 'Albert', 1969, 'M', 2935), +(98603, 'Derek', 1969, 'M', 2929), +(98604, 'Allen', 1969, 'M', 2894), +(98605, 'Carlos', 1969, 'M', 2893), +(98606, 'Mike', 1969, 'M', 2872), +(98607, 'Travis', 1969, 'M', 2868), +(98608, 'Adam', 1969, 'M', 2867), +(98609, 'Kelly', 1969, 'M', 2793), +(98610, 'Frederick', 1969, 'M', 2778), +(98611, 'Harold', 1969, 'M', 2768), +(98612, 'Lee', 1969, 'M', 2763), +(98613, 'Micheal', 1969, 'M', 2723), +(98614, 'Erik', 1969, 'M', 2721), +(98615, 'Louis', 1969, 'M', 2624), +(98616, 'Jack', 1969, 'M', 2615), +(98617, 'Nicholas', 1969, 'M', 2591), +(98618, 'Antonio', 1969, 'M', 2439), +(98619, 'Reginald', 1969, 'M', 2424), +(98620, 'Ralph', 1969, 'M', 2417), +(98621, 'Ronnie', 1969, 'M', 2416), +(98622, 'Jesse', 1969, 'M', 2380), +(98623, 'Shannon', 1969, 'M', 2372), +(98624, 'Ernest', 1969, 'M', 2361), +(98625, 'Eugene', 1969, 'M', 2352), +(98626, 'Kurt', 1969, 'M', 2284), +(98627, 'Leonard', 1969, 'M', 2264), +(98628, 'Ryan', 1969, 'M', 2254), +(98629, 'Tommy', 1969, 'M', 2251), +(98630, 'Glen', 1969, 'M', 2246), +(98631, 'Marcus', 1969, 'M', 2219), +(98632, 'Tyrone', 1969, 'M', 2218), +(98633, 'Marvin', 1969, 'M', 2201), +(98634, 'Christian', 1969, 'M', 2194), +(98635, 'Tracy', 1969, 'M', 2169), +(98636, 'Howard', 1969, 'M', 2145), +(98637, 'Kyle', 1969, 'M', 2139), +(98638, 'Dwayne', 1969, 'M', 2116), +(98639, 'Brad', 1969, 'M', 2109), +(98640, 'Eddie', 1969, 'M', 2094), +(98641, 'Kirk', 1969, 'M', 2086), +(98642, 'Jeremy', 1969, 'M', 2083), +(98643, 'Andre', 1969, 'M', 2064), +(98644, 'Alexander', 1969, 'M', 2027), +(98645, 'Greg', 1969, 'M', 1990), +(98646, 'Luis', 1969, 'M', 1985), +(98647, 'Theodore', 1969, 'M', 1946), +(98648, 'Nathan', 1969, 'M', 1911), +(98649, 'Stanley', 1969, 'M', 1902), +(98650, 'Duane', 1969, 'M', 1888), +(98651, 'Wesley', 1969, 'M', 1858), +(98652, 'Darrin', 1969, 'M', 1814), +(98653, 'Darin', 1969, 'M', 1789), +(98654, 'Cory', 1969, 'M', 1782), +(98655, 'Edwin', 1969, 'M', 1779), +(98656, 'Melvin', 1969, 'M', 1772), +(98657, 'Calvin', 1969, 'M', 1711), +(98658, 'Neil', 1969, 'M', 1683), +(98659, 'Manuel', 1969, 'M', 1677), +(98660, 'Jerome', 1969, 'M', 1673), +(98661, 'Justin', 1969, 'M', 1668), +(98662, 'Norman', 1969, 'M', 1655), +(98663, 'Mitchell', 1969, 'M', 1654), +(98664, 'Mario', 1969, 'M', 1632), +(98665, 'Harry', 1969, 'M', 1627), +(98666, 'Earl', 1969, 'M', 1624), +(98667, 'Daryl', 1969, 'M', 1603), +(98668, 'Darryl', 1969, 'M', 1592), +(98669, 'Jody', 1969, 'M', 1591), +(98670, 'Fred', 1969, 'M', 1574), +(98671, 'Ricardo', 1969, 'M', 1573), +(98672, 'Maurice', 1969, 'M', 1571), +(98673, 'Karl', 1969, 'M', 1567), +(98674, 'Jamie', 1969, 'M', 1566), +(98675, 'Tim', 1969, 'M', 1548), +(98676, 'Ray', 1969, 'M', 1525), +(98677, 'Warren', 1969, 'M', 1525), +(98678, 'Clifford', 1969, 'M', 1508), +(98679, 'Alfred', 1969, 'M', 1497), +(98680, 'Stacy', 1969, 'M', 1493), +(98681, 'Clinton', 1969, 'M', 1479), +(98682, 'Damon', 1969, 'M', 1456), +(98683, 'Francis', 1969, 'M', 1430), +(98684, 'Jim', 1969, 'M', 1426), +(98685, 'Jesus', 1969, 'M', 1403), +(98686, 'Lonnie', 1969, 'M', 1387), +(98687, 'Wade', 1969, 'M', 1367), +(98688, 'Don', 1969, 'M', 1349), +(98689, 'Clarence', 1969, 'M', 1339), +(98690, 'Joshua', 1969, 'M', 1324), +(98691, 'Roberto', 1969, 'M', 1322), +(98692, 'Miguel', 1969, 'M', 1304), +(98693, 'Bernard', 1969, 'M', 1279), +(98694, 'Rick', 1969, 'M', 1272), +(98695, 'Ruben', 1969, 'M', 1236), +(98696, 'Leroy', 1969, 'M', 1231), +(98697, 'Franklin', 1969, 'M', 1225), +(98698, 'Kent', 1969, 'M', 1225), +(98699, 'Terrence', 1969, 'M', 1218), +(98700, 'Tom', 1969, 'M', 1215), +(98701, 'Alex', 1969, 'M', 1214), +(98702, 'Byron', 1969, 'M', 1205), +(98703, 'Dwight', 1969, 'M', 1200), +(98704, 'Joey', 1969, 'M', 1191), +(98705, 'Guy', 1969, 'M', 1170), +(98706, 'Dan', 1969, 'M', 1163), +(98707, 'Leon', 1969, 'M', 1152), +(98708, 'Geoffrey', 1969, 'M', 1138), +(98709, 'Hector', 1969, 'M', 1129), +(98710, 'Gilbert', 1969, 'M', 1110), +(98711, 'Brandon', 1969, 'M', 1109), +(98712, 'Francisco', 1969, 'M', 1107), +(98713, 'Bill', 1969, 'M', 1076), +(98714, 'Vernon', 1969, 'M', 1071), +(98715, 'Alvin', 1969, 'M', 1067), +(98716, 'Ted', 1969, 'M', 1056), +(98717, 'Adrian', 1969, 'M', 1044), +(98718, 'Leslie', 1969, 'M', 1044), +(98719, 'Gene', 1969, 'M', 1039), +(98720, 'Gordon', 1969, 'M', 1014), +(98721, 'Herbert', 1969, 'M', 1010), +(98722, 'Dana', 1969, 'M', 1008), +(98723, 'Oscar', 1969, 'M', 1008), +(98724, 'Ron', 1969, 'M', 1005), +(98725, 'Nathaniel', 1969, 'M', 993), +(98726, 'Terrance', 1969, 'M', 982), +(98727, 'Jorge', 1969, 'M', 981), +(98728, 'Roderick', 1969, 'M', 979), +(98729, 'Kerry', 1969, 'M', 976), +(98730, 'Lloyd', 1969, 'M', 969), +(98731, 'Marty', 1969, 'M', 962), +(98732, 'Andy', 1969, 'M', 944), +(98733, 'Kelvin', 1969, 'M', 944), +(98734, 'Lewis', 1969, 'M', 944), +(98735, 'Angel', 1969, 'M', 938), +(98736, 'Ramon', 1969, 'M', 903), +(98737, 'Perry', 1969, 'M', 896), +(98738, 'Gregg', 1969, 'M', 886), +(98739, 'Ross', 1969, 'M', 885), +(98740, 'Shaun', 1969, 'M', 880), +(98741, 'Gabriel', 1969, 'M', 866), +(98742, 'Raul', 1969, 'M', 843), +(98743, 'Pedro', 1969, 'M', 841), +(98744, 'Stuart', 1969, 'M', 838), +(98745, 'Donnie', 1969, 'M', 830), +(98746, 'Ian', 1969, 'M', 829), +(98747, 'Stacey', 1969, 'M', 829), +(98748, 'Jimmie', 1969, 'M', 827), +(98749, 'Rafael', 1969, 'M', 820), +(98750, 'Rene', 1969, 'M', 816), +(98751, 'Allan', 1969, 'M', 813), +(98752, 'Trevor', 1969, 'M', 812), +(98753, 'Javier', 1969, 'M', 811), +(98754, 'Matt', 1969, 'M', 800), +(98755, 'Clayton', 1969, 'M', 798), +(98756, 'Jaime', 1969, 'M', 798), +(98757, 'Floyd', 1969, 'M', 797), +(98758, 'Bret', 1969, 'M', 792), +(98759, 'Fredrick', 1969, 'M', 785), +(98760, 'Johnnie', 1969, 'M', 777), +(98761, 'Jessie', 1969, 'M', 773), +(98762, 'Roland', 1969, 'M', 772), +(98763, 'Charlie', 1969, 'M', 770), +(98764, 'Nelson', 1969, 'M', 765), +(98765, 'Dustin', 1969, 'M', 758), +(98766, 'Toby', 1969, 'M', 753), +(98767, 'Leo', 1969, 'M', 743), +(98768, 'Bryant', 1969, 'M', 734), +(98769, 'Jackie', 1969, 'M', 732), +(98770, 'Marshall', 1969, 'M', 723), +(98771, 'Lester', 1969, 'M', 718), +(98772, 'Alberto', 1969, 'M', 711), +(98773, 'Robbie', 1969, 'M', 711), +(98774, 'Spencer', 1969, 'M', 709), +(98775, 'Armando', 1969, 'M', 704), +(98776, 'Trent', 1969, 'M', 704), +(98777, 'Neal', 1969, 'M', 703), +(98778, 'Cedric', 1969, 'M', 701), +(98779, 'Timmy', 1969, 'M', 699), +(98780, 'Jared', 1969, 'M', 686), +(98781, 'Casey', 1969, 'M', 682), +(98782, 'Fernando', 1969, 'M', 680), +(98783, 'Kenny', 1969, 'M', 676), +(98784, 'Clint', 1969, 'M', 674), +(98785, 'Clifton', 1969, 'M', 667), +(98786, 'Eduardo', 1969, 'M', 667), +(98787, 'Herman', 1969, 'M', 666), +(98788, 'Freddie', 1969, 'M', 663), +(98789, 'Grant', 1969, 'M', 658), +(98790, 'Jacob', 1969, 'M', 658), +(98791, 'Mathew', 1969, 'M', 658), +(98792, 'Nick', 1969, 'M', 657), +(98793, 'Milton', 1969, 'M', 652), +(98794, 'Ivan', 1969, 'M', 641), +(98795, 'Edgar', 1969, 'M', 639), +(98796, 'Orlando', 1969, 'M', 626), +(98797, 'Terence', 1969, 'M', 624), +(98798, 'Cary', 1969, 'M', 622), +(98799, 'Loren', 1969, 'M', 614), +(98800, 'Arnold', 1969, 'M', 610), +(98801, 'Clyde', 1969, 'M', 607), +(98802, 'Scotty', 1969, 'M', 607), +(98803, 'Dexter', 1969, 'M', 606), +(98804, 'Dominic', 1969, 'M', 603), +(98805, 'Noel', 1969, 'M', 602), +(98806, 'Bradford', 1969, 'M', 601), +(98807, 'Rickey', 1969, 'M', 594), +(98808, 'Marco', 1969, 'M', 592), +(98809, 'Randolph', 1969, 'M', 590), +(98810, 'Frankie', 1969, 'M', 588), +(98811, 'Scot', 1969, 'M', 588), +(98812, 'Sam', 1969, 'M', 584), +(98813, 'Colin', 1969, 'M', 583), +(98814, 'Seth', 1969, 'M', 582), +(98815, 'Ben', 1969, 'M', 581), +(98816, 'Julio', 1969, 'M', 579), +(98817, 'Harvey', 1969, 'M', 577), +(98818, 'Randal', 1969, 'M', 575), +(98819, 'Felix', 1969, 'M', 573), +(98820, 'Dave', 1969, 'M', 564), +(98821, 'Wendell', 1969, 'M', 562), +(98822, 'Vance', 1969, 'M', 556), +(98823, 'Bart', 1969, 'M', 553), +(98824, 'Cecil', 1969, 'M', 552), +(98825, 'Sidney', 1969, 'M', 548), +(98826, 'Evan', 1969, 'M', 545), +(98827, 'Chester', 1969, 'M', 544), +(98828, 'Gerard', 1969, 'M', 544), +(98829, 'Enrique', 1969, 'M', 537), +(98830, 'Dewayne', 1969, 'M', 536), +(98831, 'Angelo', 1969, 'M', 535), +(98832, 'Otis', 1969, 'M', 533), +(98833, 'Dion', 1969, 'M', 532), +(98834, 'Erick', 1969, 'M', 531), +(98835, 'Lorenzo', 1969, 'M', 528), +(98836, 'Rudy', 1969, 'M', 528), +(98837, 'Alfredo', 1969, 'M', 527), +(98838, 'Heath', 1969, 'M', 524), +(98839, 'Julian', 1969, 'M', 524), +(98840, 'Blake', 1969, 'M', 523), +(98841, 'Robin', 1969, 'M', 523), +(98842, 'Alejandro', 1969, 'M', 516), +(98843, 'Isaac', 1969, 'M', 515), +(98844, 'Doug', 1969, 'M', 512), +(98845, 'Carlton', 1969, 'M', 511), +(98846, 'Curt', 1969, 'M', 511), +(98847, 'Sammy', 1969, 'M', 509), +(98848, 'Preston', 1969, 'M', 508), +(98849, 'Salvatore', 1969, 'M', 498), +(98850, 'Ken', 1969, 'M', 494), +(98851, 'Tyler', 1969, 'M', 493), +(98852, 'Garrett', 1969, 'M', 487), +(98853, 'Cameron', 1969, 'M', 483), +(98854, 'Arturo', 1969, 'M', 482), +(98855, 'Donovan', 1969, 'M', 479), +(98856, 'Rex', 1969, 'M', 478), +(98857, 'Sergio', 1969, 'M', 477), +(98858, 'Brendan', 1969, 'M', 471), +(98859, 'Everett', 1969, 'M', 467), +(98860, 'Hugh', 1969, 'M', 463), +(98861, 'Luke', 1969, 'M', 451), +(98862, 'Omar', 1969, 'M', 451), +(98863, 'Claude', 1969, 'M', 448), +(98864, 'Demetrius', 1969, 'M', 448), +(98865, 'Teddy', 1969, 'M', 448), +(98866, 'Lamont', 1969, 'M', 443), +(98867, 'Malcolm', 1969, 'M', 441), +(98868, 'Darnell', 1969, 'M', 440), +(98869, 'Stephan', 1969, 'M', 436), +(98870, 'Lyle', 1969, 'M', 434), +(98871, 'Clay', 1969, 'M', 432), +(98872, 'Devin', 1969, 'M', 431), +(98873, 'Lynn', 1969, 'M', 431), +(98874, 'Bob', 1969, 'M', 426), +(98875, 'Ty', 1969, 'M', 425), +(98876, 'Zachary', 1969, 'M', 421), +(98877, 'Myron', 1969, 'M', 418), +(98878, 'Alonzo', 1969, 'M', 416), +(98879, 'Jerald', 1969, 'M', 415), +(98880, 'Garry', 1969, 'M', 414), +(98881, 'Wallace', 1969, 'M', 413), +(98882, 'Clark', 1969, 'M', 411), +(98883, 'Ira', 1969, 'M', 411), +(98884, 'Chuck', 1969, 'M', 409), +(98885, 'Jonathon', 1969, 'M', 408), +(98886, 'Sheldon', 1969, 'M', 408), +(98887, 'Bryon', 1969, 'M', 405), +(98888, 'Rob', 1969, 'M', 405), +(98889, 'Kendall', 1969, 'M', 402), +(98890, 'Darrel', 1969, 'M', 401), +(98891, 'Morris', 1969, 'M', 401), +(98892, 'Scottie', 1969, 'M', 399), +(98893, 'Benny', 1969, 'M', 398), +(98894, 'Johnathan', 1969, 'M', 398), +(98895, 'Tracey', 1969, 'M', 396), +(98896, 'Monte', 1969, 'M', 394), +(98897, 'Ernesto', 1969, 'M', 392), +(98898, 'Daren', 1969, 'M', 390), +(98899, 'Mickey', 1969, 'M', 385), +(98900, 'Virgil', 1969, 'M', 385), +(98901, 'Jeffry', 1969, 'M', 383), +(98902, 'Sherman', 1969, 'M', 383), +(98903, 'Earnest', 1969, 'M', 379), +(98904, 'Max', 1969, 'M', 377), +(98905, 'Drew', 1969, 'M', 376), +(98906, 'Robby', 1969, 'M', 374), +(98907, 'Julius', 1969, 'M', 372), +(98908, 'Salvador', 1969, 'M', 368), +(98909, 'Kris', 1969, 'M', 365), +(98910, 'Alfonso', 1969, 'M', 361), +(98911, 'Kim', 1969, 'M', 361), +(98912, 'Israel', 1969, 'M', 358), +(98913, 'Cesar', 1969, 'M', 354), +(98914, 'Alton', 1969, 'M', 352), +(98915, 'Gilberto', 1969, 'M', 352), +(98916, 'Rory', 1969, 'M', 351), +(98917, 'Gerardo', 1969, 'M', 345), +(98918, 'Carey', 1969, 'M', 344), +(98919, 'Antoine', 1969, 'M', 342), +(98920, 'Dirk', 1969, 'M', 342), +(98921, 'Pete', 1969, 'M', 342), +(98922, 'Marion', 1969, 'M', 341), +(98923, 'Blaine', 1969, 'M', 340), +(98924, 'Rusty', 1969, 'M', 340), +(98925, 'Dominick', 1969, 'M', 336), +(98926, 'Luther', 1969, 'M', 335), +(98927, 'Andres', 1969, 'M', 334), +(98928, 'Edmund', 1969, 'M', 333), +(98929, 'Morgan', 1969, 'M', 333), +(98930, 'Bennie', 1969, 'M', 331), +(98931, 'Pablo', 1969, 'M', 329), +(98932, 'Oliver', 1969, 'M', 328), +(98933, 'Thad', 1969, 'M', 323), +(98934, 'Stewart', 1969, 'M', 322), +(98935, 'Archie', 1969, 'M', 319), +(98936, 'Terrell', 1969, 'M', 319), +(98937, 'Jarrod', 1969, 'M', 318), +(98938, 'Lamar', 1969, 'M', 314), +(98939, 'Willard', 1969, 'M', 311), +(98940, 'Marcos', 1969, 'M', 307), +(98941, 'Abraham', 1969, 'M', 302), +(98942, 'Laurence', 1969, 'M', 302), +(98943, 'Dallas', 1969, 'M', 301), +(98944, 'Elmer', 1969, 'M', 301), +(98945, 'Monty', 1969, 'M', 296), +(98946, 'Tod', 1969, 'M', 294), +(98947, 'Kurtis', 1969, 'M', 287), +(98948, 'Leland', 1969, 'M', 283), +(98949, 'Lionel', 1969, 'M', 283), +(98950, 'Damian', 1969, 'M', 282), +(98951, 'Rodolfo', 1969, 'M', 281), +(98952, 'Abel', 1969, 'M', 278), +(98953, 'Forrest', 1969, 'M', 278), +(98954, 'Cornelius', 1969, 'M', 274), +(98955, 'Doyle', 1969, 'M', 274), +(98956, 'Tommie', 1969, 'M', 274), +(98957, 'Owen', 1969, 'M', 273), +(98958, 'Wilbert', 1969, 'M', 272), +(98959, 'Grady', 1969, 'M', 270), +(98960, 'Guadalupe', 1969, 'M', 270), +(98961, 'Delbert', 1969, 'M', 268), +(98962, 'Quentin', 1969, 'M', 268), +(98963, 'Denny', 1969, 'M', 267), +(98964, 'Rocky', 1969, 'M', 267), +(98965, 'Brady', 1969, 'M', 266), +(98966, 'Rodger', 1969, 'M', 265), +(98967, 'Kristopher', 1969, 'M', 264), +(98968, 'Darwin', 1969, 'M', 260), +(98969, 'Roosevelt', 1969, 'M', 260), +(98970, 'Felipe', 1969, 'M', 257), +(98971, 'Hans', 1969, 'M', 257), +(98972, 'Rogelio', 1969, 'M', 257), +(98973, 'Cody', 1969, 'M', 256), +(98974, 'Donnell', 1969, 'M', 256), +(98975, 'Jamal', 1969, 'M', 256), +(98976, 'Darrick', 1969, 'M', 255), +(98977, 'Boyd', 1969, 'M', 254), +(98978, 'Rolando', 1969, 'M', 253), +(98979, 'Rudolph', 1969, 'M', 251), +(98980, 'Chadwick', 1969, 'M', 250), +(98981, 'Ismael', 1969, 'M', 248), +(98982, 'Roman', 1969, 'M', 248), +(98983, 'Van', 1969, 'M', 248), +(98984, 'Dane', 1969, 'M', 247), +(98985, 'Jayson', 1969, 'M', 246), +(98986, 'Jefferson', 1969, 'M', 246), +(98987, 'Noah', 1969, 'M', 246), +(98988, 'Simon', 1969, 'M', 245), +(98989, 'Guillermo', 1969, 'M', 244), +(98990, 'Lane', 1969, 'M', 244), +(98991, 'Ramiro', 1969, 'M', 243), +(98992, 'Wilson', 1969, 'M', 243), +(98993, 'Shon', 1969, 'M', 241), +(98994, 'Sylvester', 1969, 'M', 241), +(98995, 'Gustavo', 1969, 'M', 240), +(98996, 'Robb', 1969, 'M', 237), +(98997, 'Erich', 1969, 'M', 236), +(98998, 'Hubert', 1969, 'M', 236), +(98999, 'Vaughn', 1969, 'M', 236), +(99000, 'Gerry', 1969, 'M', 235), +(99001, 'Lowell', 1969, 'M', 235), +(99002, 'Sterling', 1969, 'M', 235), +(99003, 'Stevie', 1969, 'M', 235), +(99004, 'Jean', 1969, 'M', 234), +(99005, 'Elliott', 1969, 'M', 232), +(99006, 'Marlon', 1969, 'M', 231), +(99007, 'Royce', 1969, 'M', 231), +(99008, 'Dylan', 1969, 'M', 230), +(99009, 'Darron', 1969, 'M', 227), +(99010, 'Horace', 1969, 'M', 227), +(99011, 'Pat', 1969, 'M', 227), +(99012, 'Willis', 1969, 'M', 227), +(99013, 'Dino', 1969, 'M', 226), +(99014, 'Miles', 1969, 'M', 226), +(99015, 'Gavin', 1969, 'M', 225), +(99016, 'Reynaldo', 1969, 'M', 225), +(99017, 'Xavier', 1969, 'M', 225), +(99018, 'Conrad', 1969, 'M', 223), +(99019, 'Jordan', 1969, 'M', 223), +(99020, 'Reggie', 1969, 'M', 223), +(99021, 'Ernie', 1969, 'M', 221), +(99022, 'Bryce', 1969, 'M', 220), +(99023, 'Ethan', 1969, 'M', 220), +(99024, 'Rod', 1969, 'M', 220), +(99025, 'Darius', 1969, 'M', 219), +(99026, 'Erin', 1969, 'M', 219), +(99027, 'Stefan', 1969, 'M', 218), +(99028, 'Dewey', 1969, 'M', 216), +(99029, 'Vince', 1969, 'M', 216), +(99030, 'Ervin', 1969, 'M', 215), +(99031, 'Bert', 1969, 'M', 214), +(99032, 'Buddy', 1969, 'M', 213), +(99033, 'Derick', 1969, 'M', 212), +(99034, 'Alphonso', 1969, 'M', 211), +(99035, 'Anton', 1969, 'M', 211), +(99036, 'Kip', 1969, 'M', 211), +(99037, 'Deon', 1969, 'M', 208), +(99038, 'Kory', 1969, 'M', 208), +(99039, 'Tomas', 1969, 'M', 208), +(99040, 'Courtney', 1969, 'M', 206), +(99041, 'Ellis', 1969, 'M', 205), +(99042, 'Rufus', 1969, 'M', 205), +(99043, 'Jemal', 1969, 'M', 204), +(99044, 'Wilbur', 1969, 'M', 204), +(99045, 'Emanuel', 1969, 'M', 203), +(99046, 'Thaddeus', 1969, 'M', 203), +(99047, 'Elias', 1969, 'M', 201), +(99048, 'Freddy', 1969, 'M', 201), +(99049, 'Percy', 1969, 'M', 201), +(99050, 'Denis', 1969, 'M', 200), +(99051, 'Aubrey', 1969, 'M', 196), +(99052, 'Wilfredo', 1969, 'M', 196), +(99053, 'Phil', 1969, 'M', 195), +(99054, 'Rickie', 1969, 'M', 195), +(99055, 'Ashley', 1969, 'M', 194), +(99056, 'Efrain', 1969, 'M', 193), +(99057, 'Homer', 1969, 'M', 193), +(99058, 'Josh', 1969, 'M', 193), +(99059, 'Saul', 1969, 'M', 193), +(99060, 'Fabian', 1969, 'M', 192), +(99061, 'Garth', 1969, 'M', 192), +(99062, 'Will', 1969, 'M', 192), +(99063, 'Winston', 1969, 'M', 192), +(99064, 'Jess', 1969, 'M', 190), +(99065, 'Emmett', 1969, 'M', 189), +(99066, 'Kraig', 1969, 'M', 189), +(99067, 'Galen', 1969, 'M', 187), +(99068, 'Moses', 1969, 'M', 187), +(99069, 'Pierre', 1969, 'M', 187), +(99070, 'Austin', 1969, 'M', 186), +(99071, 'Edmond', 1969, 'M', 185), +(99072, 'Emilio', 1969, 'M', 185), +(99073, 'Amos', 1969, 'M', 182), +(99074, 'Blair', 1969, 'M', 182), +(99075, 'Cleveland', 1969, 'M', 181), +(99076, 'Nicolas', 1969, 'M', 181), +(99077, 'Joesph', 1969, 'M', 179), +(99078, 'Dante', 1969, 'M', 177), +(99079, 'Elbert', 1969, 'M', 176), +(99080, 'Louie', 1969, 'M', 176), +(99081, 'Sonny', 1969, 'M', 176), +(99082, 'Bradly', 1969, 'M', 175), +(99083, 'Daron', 1969, 'M', 175), +(99084, 'Marcel', 1969, 'M', 175), +(99085, 'Trenton', 1969, 'M', 175), +(99086, 'Micah', 1969, 'M', 174), +(99087, 'Cornell', 1969, 'M', 173), +(99088, 'Garland', 1969, 'M', 173), +(99089, 'Jarrett', 1969, 'M', 173), +(99090, 'Kirby', 1969, 'M', 173), +(99091, 'Shelby', 1969, 'M', 173), +(99092, 'Ignacio', 1969, 'M', 171), +(99093, 'Mack', 1969, 'M', 171), +(99094, 'Devon', 1969, 'M', 170), +(99095, 'Jacques', 1969, 'M', 170), +(99096, 'Jamey', 1969, 'M', 170), +(99097, 'Ronny', 1969, 'M', 170), +(99098, 'Tad', 1969, 'M', 170), +(99099, 'Randell', 1969, 'M', 168), +(99100, 'Brant', 1969, 'M', 167), +(99101, 'Al', 1969, 'M', 166), +(99102, 'Russel', 1969, 'M', 166), +(99103, 'Donny', 1969, 'M', 165), +(99104, 'Shayne', 1969, 'M', 165), +(99105, 'Jan', 1969, 'M', 163), +(99106, 'Richie', 1969, 'M', 163), +(99107, 'Irvin', 1969, 'M', 162), +(99108, 'Santos', 1969, 'M', 162), +(99109, 'Shelton', 1969, 'M', 162), +(99110, 'Marlin', 1969, 'M', 161), +(99111, 'Rodrick', 1969, 'M', 161), +(99112, 'Gino', 1969, 'M', 160), +(99113, 'Graham', 1969, 'M', 160), +(99114, 'Michel', 1969, 'M', 160), +(99115, 'Antony', 1969, 'M', 159), +(99116, 'Carlo', 1969, 'M', 159), +(99117, 'Jeremiah', 1969, 'M', 159), +(99118, 'Reid', 1969, 'M', 159), +(99119, 'Reuben', 1969, 'M', 159), +(99120, 'Santiago', 1969, 'M', 159), +(99121, 'Theron', 1969, 'M', 159), +(99122, 'Leonardo', 1969, 'M', 158), +(99123, 'Lonny', 1969, 'M', 158), +(99124, 'Darian', 1969, 'M', 157), +(99125, 'Deron', 1969, 'M', 157), +(99126, 'Mason', 1969, 'M', 157), +(99127, 'Nolan', 1969, 'M', 157), +(99128, 'Woodrow', 1969, 'M', 157), +(99129, 'Barton', 1969, 'M', 156), +(99130, 'Carroll', 1969, 'M', 156), +(99131, 'Reed', 1969, 'M', 156), +(99132, 'Rocco', 1969, 'M', 156), +(99133, 'Elliot', 1969, 'M', 155), +(99134, 'Hugo', 1969, 'M', 155), +(99135, 'Sammie', 1969, 'M', 155), +(99136, 'Kennith', 1969, 'M', 154), +(99137, 'Raphael', 1969, 'M', 153), +(99138, 'Avery', 1969, 'M', 151), +(99139, 'Carter', 1969, 'M', 151), +(99140, 'Rhett', 1969, 'M', 151), +(99141, 'Kelley', 1969, 'M', 150), +(99142, 'Elvis', 1969, 'M', 149), +(99143, 'Lisa', 1969, 'M', 149), +(99144, 'Cliff', 1969, 'M', 147), +(99145, 'Domingo', 1969, 'M', 147), +(99146, 'Esteban', 1969, 'M', 147), +(99147, 'Noe', 1969, 'M', 147), +(99148, 'Benito', 1969, 'M', 146), +(99149, 'Wilfred', 1969, 'M', 146), +(99150, 'Elijah', 1969, 'M', 145), +(99151, 'Danial', 1969, 'M', 144), +(99152, 'Quinton', 1969, 'M', 144), +(99153, 'Brain', 1969, 'M', 143), +(99154, 'Brenton', 1969, 'M', 143), +(99155, 'Brock', 1969, 'M', 143), +(99156, 'Carmen', 1969, 'M', 142), +(99157, 'Errol', 1969, 'M', 141), +(99158, 'Jake', 1969, 'M', 141), +(99159, 'Jefferey', 1969, 'M', 141), +(99160, 'Solomon', 1969, 'M', 141), +(99161, 'Vicente', 1969, 'M', 141), +(99162, 'Elvin', 1969, 'M', 140), +(99163, 'Jude', 1969, 'M', 140), +(99164, 'Keven', 1969, 'M', 140), +(99165, 'Kristian', 1969, 'M', 139), +(99166, 'Nicky', 1969, 'M', 139), +(99167, 'Sandy', 1969, 'M', 139), +(99168, 'Michelle', 1969, 'M', 138), +(99169, 'Jonas', 1969, 'M', 137), +(99170, 'Dorian', 1969, 'M', 136), +(99171, 'Ed', 1969, 'M', 135), +(99172, 'Humberto', 1969, 'M', 135), +(99173, 'Joaquin', 1969, 'M', 135), +(99174, 'Junior', 1969, 'M', 135), +(99175, 'Leif', 1969, 'M', 135), +(99176, 'Alexis', 1969, 'M', 134), +(99177, 'Desmond', 1969, 'M', 134), +(99178, 'Douglass', 1969, 'M', 134), +(99179, 'Eddy', 1969, 'M', 134), +(99180, 'Jerrold', 1969, 'M', 133), +(99181, 'Levi', 1969, 'M', 133), +(99182, 'Bobbie', 1969, 'M', 131), +(99183, 'Chance', 1969, 'M', 131), +(99184, 'Edwardo', 1969, 'M', 131), +(99185, 'Emmanuel', 1969, 'M', 131), +(99186, 'Lorne', 1969, 'M', 131), +(99187, 'Vito', 1969, 'M', 131), +(99188, 'Ward', 1969, 'M', 131), +(99189, 'Barrett', 1969, 'M', 130), +(99190, 'Collin', 1969, 'M', 130), +(99191, 'Kirt', 1969, 'M', 130), +(99192, 'Lon', 1969, 'M', 130), +(99193, 'Frederic', 1969, 'M', 129), +(99194, 'Eli', 1969, 'M', 128), +(99195, 'Mauricio', 1969, 'M', 128), +(99196, 'Korey', 1969, 'M', 127), +(99197, 'Kendrick', 1969, 'M', 126), +(99198, 'Ulysses', 1969, 'M', 125), +(99199, 'Norris', 1969, 'M', 124), +(99200, 'Lucas', 1969, 'M', 123), +(99201, 'Thurman', 1969, 'M', 123), +(99202, 'Andrea', 1969, 'M', 122), +(99203, 'Billie', 1969, 'M', 122), +(99204, 'Heriberto', 1969, 'M', 122), +(99205, 'Harlan', 1969, 'M', 121), +(99206, 'Jamison', 1969, 'M', 121), +(99207, 'Judd', 1969, 'M', 121), +(99208, 'Dwain', 1969, 'M', 120), +(99209, 'Erwin', 1969, 'M', 120), +(99210, 'Mikel', 1969, 'M', 120), +(99211, 'Ned', 1969, 'M', 120), +(99212, 'Adolfo', 1969, 'M', 118), +(99213, 'Burton', 1969, 'M', 117), +(99214, 'Hank', 1969, 'M', 117), +(99215, 'Harrison', 1969, 'M', 117), +(99216, 'Kermit', 1969, 'M', 117), +(99217, 'Jasper', 1969, 'M', 116), +(99218, 'Kimberly', 1969, 'M', 116), +(99219, 'Russ', 1969, 'M', 116), +(99220, 'Sebastian', 1969, 'M', 116), +(99221, 'Taylor', 1969, 'M', 116), +(99222, 'Eldon', 1969, 'M', 115), +(99223, 'Lenny', 1969, 'M', 115), +(99224, 'Murray', 1969, 'M', 115), +(99225, 'Quinn', 1969, 'M', 115), +(99226, 'Zane', 1969, 'M', 115), +(99227, 'Irving', 1969, 'M', 114), +(99228, 'Dusty', 1969, 'M', 113), +(99229, 'Harley', 1969, 'M', 113), +(99230, 'Hiram', 1969, 'M', 113), +(99231, 'Linwood', 1969, 'M', 113), +(99232, 'Tobin', 1969, 'M', 113), +(99233, 'Toney', 1969, 'M', 113), +(99234, 'Bennett', 1969, 'M', 112), +(99235, 'Brendon', 1969, 'M', 112), +(99236, 'Trey', 1969, 'M', 112), +(99237, 'August', 1969, 'M', 111), +(99238, 'Judson', 1969, 'M', 111), +(99239, 'Kenton', 1969, 'M', 111), +(99240, 'Merle', 1969, 'M', 111), +(99241, 'Jerrod', 1969, 'M', 110), +(99242, 'Landon', 1969, 'M', 110), +(99243, 'Carmelo', 1969, 'M', 109), +(99244, 'Emil', 1969, 'M', 109), +(99245, 'Sanford', 1969, 'M', 109), +(99246, 'Dalton', 1969, 'M', 108), +(99247, 'Derwin', 1969, 'M', 108), +(99248, 'Jarvis', 1969, 'M', 108), +(99249, 'Mary', 1969, 'M', 108), +(99250, 'Dannie', 1969, 'M', 107), +(99251, 'Lanny', 1969, 'M', 107), +(99252, 'Tyson', 1969, 'M', 107), +(99253, 'Aron', 1969, 'M', 106), +(99254, 'Gregorio', 1969, 'M', 106), +(99255, 'Jerold', 1969, 'M', 106), +(99256, 'Tyron', 1969, 'M', 106), +(99257, 'Grover', 1969, 'M', 105), +(99258, 'Hal', 1969, 'M', 105), +(99259, 'Jed', 1969, 'M', 105), +(99260, 'Lincoln', 1969, 'M', 105), +(99261, 'Markus', 1969, 'M', 105), +(99262, 'Agustin', 1969, 'M', 104), +(99263, 'Mitchel', 1969, 'M', 103), +(99264, 'Tobias', 1969, 'M', 103), +(99265, 'Darby', 1969, 'M', 102), +(99266, 'Nickolas', 1969, 'M', 102), +(99267, 'Timmothy', 1969, 'M', 102), +(99268, 'Moises', 1969, 'M', 101), +(99269, 'Adan', 1969, 'M', 100), +(99270, 'Britt', 1969, 'M', 100), +(99271, 'Quincy', 1969, 'M', 100), +(99272, 'Stan', 1969, 'M', 100), +(99273, 'Jennifer', 1970, 'F', 46160), +(99274, 'Lisa', 1970, 'F', 38960), +(99275, 'Kimberly', 1970, 'F', 34142), +(99276, 'Michelle', 1970, 'F', 34053), +(99277, 'Amy', 1970, 'F', 25212), +(99278, 'Angela', 1970, 'F', 24924), +(99279, 'Melissa', 1970, 'F', 23743), +(99280, 'Tammy', 1970, 'F', 19586), +(99281, 'Mary', 1970, 'F', 19201), +(99282, 'Tracy', 1970, 'F', 18467), +(99283, 'Julie', 1970, 'F', 17162), +(99284, 'Karen', 1970, 'F', 16702), +(99285, 'Laura', 1970, 'F', 16496), +(99286, 'Christine', 1970, 'F', 16059), +(99287, 'Susan', 1970, 'F', 15741), +(99288, 'Dawn', 1970, 'F', 15679), +(99289, 'Stephanie', 1970, 'F', 15390), +(99290, 'Elizabeth', 1970, 'F', 15120), +(99291, 'Heather', 1970, 'F', 14668), +(99292, 'Kelly', 1970, 'F', 14609), +(99293, 'Tina', 1970, 'F', 13867), +(99294, 'Shannon', 1970, 'F', 13548), +(99295, 'Lori', 1970, 'F', 13444), +(99296, 'Patricia', 1970, 'F', 13404), +(99297, 'Cynthia', 1970, 'F', 12921), +(99298, 'Pamela', 1970, 'F', 12915), +(99299, 'Sandra', 1970, 'F', 11242), +(99300, 'Wendy', 1970, 'F', 11101), +(99301, 'Rebecca', 1970, 'F', 10859), +(99302, 'Nicole', 1970, 'F', 10692), +(99303, 'Michele', 1970, 'F', 10096), +(99304, 'Donna', 1970, 'F', 9970), +(99305, 'Deborah', 1970, 'F', 9852), +(99306, 'Teresa', 1970, 'F', 9607), +(99307, 'Christina', 1970, 'F', 9587), +(99308, 'Denise', 1970, 'F', 9343), +(99309, 'Sharon', 1970, 'F', 9174), +(99310, 'Linda', 1970, 'F', 8737), +(99311, 'Maria', 1970, 'F', 8658), +(99312, 'Brenda', 1970, 'F', 8335), +(99313, 'Barbara', 1970, 'F', 8025), +(99314, 'Stacy', 1970, 'F', 7775), +(99315, 'Andrea', 1970, 'F', 7705), +(99316, 'Cheryl', 1970, 'F', 7440), +(99317, 'Kathleen', 1970, 'F', 7410), +(99318, 'Rhonda', 1970, 'F', 7383), +(99319, 'Debra', 1970, 'F', 7200), +(99320, 'Stacey', 1970, 'F', 7155), +(99321, 'Tonya', 1970, 'F', 7140), +(99322, 'Nancy', 1970, 'F', 7065), +(99323, 'Robin', 1970, 'F', 7002), +(99324, 'Jill', 1970, 'F', 6807), +(99325, 'Dana', 1970, 'F', 6409), +(99326, 'Theresa', 1970, 'F', 6408), +(99327, 'Tracey', 1970, 'F', 6231), +(99328, 'Monica', 1970, 'F', 6185), +(99329, 'Paula', 1970, 'F', 6051), +(99330, 'Rachel', 1970, 'F', 6032), +(99331, 'Catherine', 1970, 'F', 6008), +(99332, 'Sherry', 1970, 'F', 5914), +(99333, 'Gina', 1970, 'F', 5877), +(99334, 'Ann', 1970, 'F', 5736), +(99335, 'Kristin', 1970, 'F', 5637), +(99336, 'Leslie', 1970, 'F', 5621), +(99337, 'Sarah', 1970, 'F', 5621), +(99338, 'Jacqueline', 1970, 'F', 5579), +(99339, 'Katherine', 1970, 'F', 5445), +(99340, 'Renee', 1970, 'F', 5373), +(99341, 'Tara', 1970, 'F', 5334), +(99342, 'Diane', 1970, 'F', 5186), +(99343, 'Carol', 1970, 'F', 5066), +(99344, 'Cindy', 1970, 'F', 5048), +(99345, 'Carrie', 1970, 'F', 4975), +(99346, 'Holly', 1970, 'F', 4938), +(99347, 'Sheila', 1970, 'F', 4938), +(99348, 'Tanya', 1970, 'F', 4865), +(99349, 'Kathy', 1970, 'F', 4798), +(99350, 'Kim', 1970, 'F', 4725), +(99351, 'Tamara', 1970, 'F', 4722), +(99352, 'Margaret', 1970, 'F', 4707), +(99353, 'Heidi', 1970, 'F', 4644), +(99354, 'April', 1970, 'F', 4602), +(99355, 'Kristen', 1970, 'F', 4602), +(99356, 'Carolyn', 1970, 'F', 4519), +(99357, 'Victoria', 1970, 'F', 4460), +(99358, 'Regina', 1970, 'F', 4435), +(99359, 'Suzanne', 1970, 'F', 4428), +(99360, 'Laurie', 1970, 'F', 4392), +(99361, 'Diana', 1970, 'F', 4374), +(99362, 'Deanna', 1970, 'F', 4331), +(99363, 'Melanie', 1970, 'F', 4331), +(99364, 'Beth', 1970, 'F', 4248), +(99365, 'Melinda', 1970, 'F', 4225), +(99366, 'Carla', 1970, 'F', 4213), +(99367, 'Jodi', 1970, 'F', 4184), +(99368, 'Janet', 1970, 'F', 4158), +(99369, 'Valerie', 1970, 'F', 4133), +(99370, 'Jessica', 1970, 'F', 4022), +(99371, 'Tiffany', 1970, 'F', 4000), +(99372, 'Traci', 1970, 'F', 3855), +(99373, 'Crystal', 1970, 'F', 3818), +(99374, 'Anna', 1970, 'F', 3793), +(99375, 'Shelly', 1970, 'F', 3751), +(99376, 'Kathryn', 1970, 'F', 3716), +(99377, 'Christy', 1970, 'F', 3714), +(99378, 'Yolanda', 1970, 'F', 3590), +(99379, 'Sabrina', 1970, 'F', 3569), +(99380, 'Amanda', 1970, 'F', 3549), +(99381, 'Kristine', 1970, 'F', 3533), +(99382, 'Veronica', 1970, 'F', 3491), +(99383, 'Erin', 1970, 'F', 3483), +(99384, 'Anne', 1970, 'F', 3440), +(99385, 'Terri', 1970, 'F', 3403), +(99386, 'Danielle', 1970, 'F', 3375), +(99387, 'Kelli', 1970, 'F', 3331), +(99388, 'Colleen', 1970, 'F', 3328), +(99389, 'Connie', 1970, 'F', 3325), +(99390, 'Alicia', 1970, 'F', 3316), +(99391, 'Lynn', 1970, 'F', 3264), +(99392, 'Jamie', 1970, 'F', 3200), +(99393, 'Julia', 1970, 'F', 3180), +(99394, 'Sherri', 1970, 'F', 3165), +(99395, 'Kristi', 1970, 'F', 3148), +(99396, 'Tricia', 1970, 'F', 3134), +(99397, 'Kristina', 1970, 'F', 3126), +(99398, 'Sara', 1970, 'F', 3060), +(99399, 'Anita', 1970, 'F', 2893), +(99400, 'Annette', 1970, 'F', 2890), +(99401, 'Erica', 1970, 'F', 2792), +(99402, 'Bonnie', 1970, 'F', 2746), +(99403, 'Sonya', 1970, 'F', 2740), +(99404, 'Wanda', 1970, 'F', 2718), +(99405, 'Allison', 1970, 'F', 2629), +(99406, 'Vicki', 1970, 'F', 2603), +(99407, 'Cassandra', 1970, 'F', 2602), +(99408, 'Krista', 1970, 'F', 2589), +(99409, 'Cathy', 1970, 'F', 2586), +(99410, 'Vanessa', 1970, 'F', 2580), +(99411, 'Felicia', 1970, 'F', 2540), +(99412, 'Sheri', 1970, 'F', 2400), +(99413, 'Yvonne', 1970, 'F', 2373), +(99414, 'Natalie', 1970, 'F', 2372), +(99415, 'Martha', 1970, 'F', 2368), +(99416, 'Shelley', 1970, 'F', 2352), +(99417, 'Janice', 1970, 'F', 2333), +(99418, 'Virginia', 1970, 'F', 2328), +(99419, 'Tracie', 1970, 'F', 2327), +(99420, 'Debbie', 1970, 'F', 2323), +(99421, 'Samantha', 1970, 'F', 2302), +(99422, 'Beverly', 1970, 'F', 2249), +(99423, 'Katrina', 1970, 'F', 2217), +(99424, 'Carmen', 1970, 'F', 2202), +(99425, 'Jody', 1970, 'F', 2201), +(99426, 'Marie', 1970, 'F', 2187), +(99427, 'Darlene', 1970, 'F', 2176), +(99428, 'Toni', 1970, 'F', 2165), +(99429, 'Penny', 1970, 'F', 2146), +(99430, 'Kellie', 1970, 'F', 2130), +(99431, 'Jean', 1970, 'F', 2110), +(99432, 'Monique', 1970, 'F', 2098), +(99433, 'Becky', 1970, 'F', 2071), +(99434, 'Yvette', 1970, 'F', 2050), +(99435, 'Gloria', 1970, 'F', 2039), +(99436, 'Joyce', 1970, 'F', 2031), +(99437, 'Stacie', 1970, 'F', 2020), +(99438, 'Charlotte', 1970, 'F', 1992), +(99439, 'Charlene', 1970, 'F', 1983), +(99440, 'Shawn', 1970, 'F', 1971), +(99441, 'Betty', 1970, 'F', 1967), +(99442, 'Joanne', 1970, 'F', 1952), +(99443, 'Erika', 1970, 'F', 1942), +(99444, 'Trina', 1970, 'F', 1933), +(99445, 'Emily', 1970, 'F', 1931), +(99446, 'Peggy', 1970, 'F', 1900), +(99447, 'Tammie', 1970, 'F', 1882), +(99448, 'Kerry', 1970, 'F', 1834), +(99449, 'Judy', 1970, 'F', 1828), +(99450, 'Ruth', 1970, 'F', 1819), +(99451, 'Bridget', 1970, 'F', 1816), +(99452, 'Dorothy', 1970, 'F', 1802), +(99453, 'Maureen', 1970, 'F', 1793), +(99454, 'Kristie', 1970, 'F', 1792), +(99455, 'Rose', 1970, 'F', 1779), +(99456, 'Joy', 1970, 'F', 1775), +(99457, 'Kimberley', 1970, 'F', 1770), +(99458, 'Sonia', 1970, 'F', 1768), +(99459, 'Alison', 1970, 'F', 1765), +(99460, 'Ellen', 1970, 'F', 1758), +(99461, 'Sylvia', 1970, 'F', 1727), +(99462, 'Jeanette', 1970, 'F', 1723), +(99463, 'Helen', 1970, 'F', 1714), +(99464, 'Leah', 1970, 'F', 1672), +(99465, 'Judith', 1970, 'F', 1669), +(99466, 'Kari', 1970, 'F', 1667), +(99467, 'Vickie', 1970, 'F', 1646), +(99468, 'Karla', 1970, 'F', 1633), +(99469, 'Kristy', 1970, 'F', 1632), +(99470, 'Shirley', 1970, 'F', 1629), +(99471, 'Frances', 1970, 'F', 1628), +(99472, 'Alice', 1970, 'F', 1620), +(99473, 'Belinda', 1970, 'F', 1620), +(99474, 'Jane', 1970, 'F', 1599), +(99475, 'Rita', 1970, 'F', 1587), +(99476, 'Jeanne', 1970, 'F', 1583), +(99477, 'Joann', 1970, 'F', 1556), +(99478, 'Tami', 1970, 'F', 1556), +(99479, 'Dina', 1970, 'F', 1546), +(99480, 'Dena', 1970, 'F', 1540), +(99481, 'Kara', 1970, 'F', 1502), +(99482, 'Shawna', 1970, 'F', 1500), +(99483, 'Robyn', 1970, 'F', 1499), +(99484, 'Kelley', 1970, 'F', 1498), +(99485, 'Leigh', 1970, 'F', 1484), +(99486, 'Sheryl', 1970, 'F', 1471), +(99487, 'Raquel', 1970, 'F', 1468), +(99488, 'Evelyn', 1970, 'F', 1466), +(99489, 'Elaine', 1970, 'F', 1439), +(99490, 'Norma', 1970, 'F', 1433), +(99491, 'Tonia', 1970, 'F', 1428), +(99492, 'Candace', 1970, 'F', 1426), +(99493, 'Gail', 1970, 'F', 1426), +(99494, 'Rosa', 1970, 'F', 1422), +(99495, 'Kerri', 1970, 'F', 1416), +(99496, 'Jenny', 1970, 'F', 1411), +(99497, 'Marsha', 1970, 'F', 1384), +(99498, 'Ginger', 1970, 'F', 1381), +(99499, 'Aimee', 1970, 'F', 1376), +(99500, 'Roberta', 1970, 'F', 1375), +(99501, 'Caroline', 1970, 'F', 1374), +(99502, 'Jackie', 1970, 'F', 1371), +(99503, 'Loretta', 1970, 'F', 1367), +(99504, 'Deana', 1970, 'F', 1364), +(99505, 'Meredith', 1970, 'F', 1356), +(99506, 'Ronda', 1970, 'F', 1356), +(99507, 'Lara', 1970, 'F', 1332), +(99508, 'Joanna', 1970, 'F', 1329), +(99509, 'Lauren', 1970, 'F', 1314), +(99510, 'Christie', 1970, 'F', 1312), +(99511, 'Sonja', 1970, 'F', 1310), +(99512, 'Audrey', 1970, 'F', 1309), +(99513, 'Joan', 1970, 'F', 1308), +(99514, 'Angie', 1970, 'F', 1296), +(99515, 'Amber', 1970, 'F', 1290), +(99516, 'Marcia', 1970, 'F', 1285), +(99517, 'Eileen', 1970, 'F', 1282), +(99518, 'Megan', 1970, 'F', 1268), +(99519, 'Juanita', 1970, 'F', 1262), +(99520, 'Marilyn', 1970, 'F', 1255), +(99521, 'Sally', 1970, 'F', 1250), +(99522, 'Gretchen', 1970, 'F', 1245), +(99523, 'Sandy', 1970, 'F', 1245), +(99524, 'Claudia', 1970, 'F', 1224), +(99525, 'Gwendolyn', 1970, 'F', 1221), +(99526, 'Bobbie', 1970, 'F', 1219), +(99527, 'Christa', 1970, 'F', 1213), +(99528, 'Lora', 1970, 'F', 1202), +(99529, 'Shari', 1970, 'F', 1200), +(99530, 'Molly', 1970, 'F', 1193), +(99531, 'Shelia', 1970, 'F', 1192), +(99532, 'Cheri', 1970, 'F', 1180), +(99533, 'Rochelle', 1970, 'F', 1180), +(99534, 'Melody', 1970, 'F', 1177), +(99535, 'Lorraine', 1970, 'F', 1160), +(99536, 'Lynette', 1970, 'F', 1158), +(99537, 'Alisa', 1970, 'F', 1154), +(99538, 'Kendra', 1970, 'F', 1152), +(99539, 'Misty', 1970, 'F', 1151), +(99540, 'Staci', 1970, 'F', 1148), +(99541, 'Terry', 1970, 'F', 1113), +(99542, 'Angel', 1970, 'F', 1108), +(99543, 'Billie', 1970, 'F', 1104), +(99544, 'Jo', 1970, 'F', 1101), +(99545, 'Marla', 1970, 'F', 1090), +(99546, 'Teri', 1970, 'F', 1075), +(99547, 'Irene', 1970, 'F', 1068), +(99548, 'Stefanie', 1970, 'F', 1068), +(99549, 'Jodie', 1970, 'F', 1053), +(99550, 'Karin', 1970, 'F', 1050), +(99551, 'Tabitha', 1970, 'F', 1050), +(99552, 'Janine', 1970, 'F', 1047), +(99553, 'Ana', 1970, 'F', 1046), +(99554, 'Candy', 1970, 'F', 1044), +(99555, 'Nichole', 1970, 'F', 1042), +(99556, 'Kirsten', 1970, 'F', 1034), +(99557, 'Jana', 1970, 'F', 1025), +(99558, 'Candice', 1970, 'F', 1024), +(99559, 'Eva', 1970, 'F', 1024), +(99560, 'Antoinette', 1970, 'F', 1020), +(99561, 'Roxanne', 1970, 'F', 1010), +(99562, 'Adrienne', 1970, 'F', 1002), +(99563, 'Cherie', 1970, 'F', 1002), +(99564, 'Dianna', 1970, 'F', 999), +(99565, 'Shana', 1970, 'F', 993), +(99566, 'Rachelle', 1970, 'F', 988), +(99567, 'Hope', 1970, 'F', 987), +(99568, 'Dianne', 1970, 'F', 976), +(99569, 'Leticia', 1970, 'F', 973), +(99570, 'Lee', 1970, 'F', 970), +(99571, 'Darla', 1970, 'F', 965), +(99572, 'Jacquelyn', 1970, 'F', 950), +(99573, 'Angelique', 1970, 'F', 941), +(99574, 'Latonya', 1970, 'F', 941), +(99575, 'Trisha', 1970, 'F', 938), +(99576, 'Priscilla', 1970, 'F', 932), +(99577, 'Ashley', 1970, 'F', 931), +(99578, 'Sherrie', 1970, 'F', 925), +(99579, 'Lydia', 1970, 'F', 923), +(99580, 'Angelia', 1970, 'F', 920), +(99581, 'Ramona', 1970, 'F', 915), +(99582, 'Patrice', 1970, 'F', 913), +(99583, 'Marisol', 1970, 'F', 896), +(99584, 'Glenda', 1970, 'F', 893), +(99585, 'Rachael', 1970, 'F', 886), +(99586, 'Christi', 1970, 'F', 878), +(99587, 'Doris', 1970, 'F', 863), +(99588, 'Marlene', 1970, 'F', 861), +(99589, 'Audra', 1970, 'F', 860), +(99590, 'Tammi', 1970, 'F', 853), +(99591, 'Lynda', 1970, 'F', 849), +(99592, 'Wendi', 1970, 'F', 844), +(99593, 'Dionne', 1970, 'F', 835), +(99594, 'Lorie', 1970, 'F', 833), +(99595, 'Jeannie', 1970, 'F', 829), +(99596, 'Vicky', 1970, 'F', 829), +(99597, 'Nina', 1970, 'F', 826), +(99598, 'Camille', 1970, 'F', 822), +(99599, 'Paulette', 1970, 'F', 806), +(99600, 'Constance', 1970, 'F', 805), +(99601, 'Keri', 1970, 'F', 802), +(99602, 'Jeanine', 1970, 'F', 801), +(99603, 'Rosemary', 1970, 'F', 796), +(99604, 'Bobbi', 1970, 'F', 790), +(99605, 'Desiree', 1970, 'F', 787), +(99606, 'Courtney', 1970, 'F', 783), +(99607, 'Lillian', 1970, 'F', 782), +(99608, 'Lana', 1970, 'F', 780), +(99609, 'Shauna', 1970, 'F', 778), +(99610, 'Vivian', 1970, 'F', 778), +(99611, 'Bernadette', 1970, 'F', 776), +(99612, 'Grace', 1970, 'F', 776), +(99613, 'Lesley', 1970, 'F', 769), +(99614, 'Phyllis', 1970, 'F', 766), +(99615, 'Paige', 1970, 'F', 762), +(99616, 'Brooke', 1970, 'F', 759), +(99617, 'Shanna', 1970, 'F', 759), +(99618, 'Marcy', 1970, 'F', 743), +(99619, 'Jenifer', 1970, 'F', 737), +(99620, 'Esther', 1970, 'F', 726), +(99621, 'Arlene', 1970, 'F', 717), +(99622, 'Cara', 1970, 'F', 717), +(99623, 'Natasha', 1970, 'F', 717), +(99624, 'Jeannette', 1970, 'F', 715), +(99625, 'Doreen', 1970, 'F', 708), +(99626, 'Mindy', 1970, 'F', 706), +(99627, 'Katie', 1970, 'F', 703), +(99628, 'Bethany', 1970, 'F', 702), +(99629, 'Chandra', 1970, 'F', 695), +(99630, 'Ruby', 1970, 'F', 695), +(99631, 'Elisa', 1970, 'F', 685), +(99632, 'Daphne', 1970, 'F', 684), +(99633, 'Darcy', 1970, 'F', 682), +(99634, 'Leanne', 1970, 'F', 682), +(99635, 'Marianne', 1970, 'F', 678), +(99636, 'Brandi', 1970, 'F', 675), +(99637, 'Josephine', 1970, 'F', 675), +(99638, 'Nora', 1970, 'F', 674), +(99639, 'Lynne', 1970, 'F', 663), +(99640, 'Sue', 1970, 'F', 663), +(99641, 'Nikki', 1970, 'F', 658), +(99642, 'Miriam', 1970, 'F', 655), +(99643, 'Marci', 1970, 'F', 645), +(99644, 'Iris', 1970, 'F', 643), +(99645, 'Annmarie', 1970, 'F', 642), +(99646, 'Serena', 1970, 'F', 640), +(99647, 'Cathleen', 1970, 'F', 636), +(99648, 'Marjorie', 1970, 'F', 635), +(99649, 'Pauline', 1970, 'F', 632), +(99650, 'Bridgette', 1970, 'F', 631), +(99651, 'Mona', 1970, 'F', 630), +(99652, 'Alexandra', 1970, 'F', 629), +(99653, 'Lucinda', 1970, 'F', 624), +(99654, 'Laurel', 1970, 'F', 621), +(99655, 'Cecilia', 1970, 'F', 620), +(99656, 'Ericka', 1970, 'F', 613), +(99657, 'Brandy', 1970, 'F', 611), +(99658, 'Jeannine', 1970, 'F', 609), +(99659, 'Janelle', 1970, 'F', 607), +(99660, 'Francine', 1970, 'F', 604), +(99661, 'Anissa', 1970, 'F', 602), +(99662, 'Jennie', 1970, 'F', 601), +(99663, 'Edith', 1970, 'F', 599), +(99664, 'Nadine', 1970, 'F', 599), +(99665, 'Deanne', 1970, 'F', 598), +(99666, 'Celeste', 1970, 'F', 594), +(99667, 'Patty', 1970, 'F', 594), +(99668, 'Tasha', 1970, 'F', 594), +(99669, 'Deena', 1970, 'F', 593), +(99670, 'Lea', 1970, 'F', 593), +(99671, 'Marlo', 1970, 'F', 593), +(99672, 'Angelica', 1970, 'F', 589), +(99673, 'Tabatha', 1970, 'F', 585), +(99674, 'Sophia', 1970, 'F', 582), +(99675, 'Leann', 1970, 'F', 579), +(99676, 'Kimberlee', 1970, 'F', 576), +(99677, 'Cristina', 1970, 'F', 567), +(99678, 'June', 1970, 'F', 565), +(99679, 'Dolores', 1970, 'F', 564), +(99680, 'Lorrie', 1970, 'F', 558), +(99681, 'Susanne', 1970, 'F', 557), +(99682, 'Melisa', 1970, 'F', 555), +(99683, 'Naomi', 1970, 'F', 555), +(99684, 'Jami', 1970, 'F', 550), +(99685, 'Faith', 1970, 'F', 548), +(99686, 'Rene', 1970, 'F', 548), +(99687, 'Ladonna', 1970, 'F', 546), +(99688, 'Louise', 1970, 'F', 542), +(99689, 'Patti', 1970, 'F', 539), +(99690, 'Gayle', 1970, 'F', 535), +(99691, 'Alma', 1970, 'F', 533), +(99692, 'Dora', 1970, 'F', 533), +(99693, 'Angelina', 1970, 'F', 529), +(99694, 'Emma', 1970, 'F', 527), +(99695, 'Tamra', 1970, 'F', 524), +(99696, 'Deirdre', 1970, 'F', 523), +(99697, 'Ingrid', 1970, 'F', 523), +(99698, 'Lois', 1970, 'F', 518), +(99699, 'Geraldine', 1970, 'F', 517), +(99700, 'Lorena', 1970, 'F', 517), +(99701, 'Marcie', 1970, 'F', 514), +(99702, 'Marcella', 1970, 'F', 511), +(99703, 'Tania', 1970, 'F', 511), +(99704, 'Shonda', 1970, 'F', 510), +(99705, 'Maryann', 1970, 'F', 508), +(99706, 'Georgia', 1970, 'F', 507), +(99707, 'Lena', 1970, 'F', 507), +(99708, 'Deidre', 1970, 'F', 505), +(99709, 'Elena', 1970, 'F', 505), +(99710, 'Lucy', 1970, 'F', 504), +(99711, 'Sondra', 1970, 'F', 501), +(99712, 'Annie', 1970, 'F', 499), +(99713, 'Margarita', 1970, 'F', 499), +(99714, 'Jan', 1970, 'F', 498), +(99715, 'Suzette', 1970, 'F', 496), +(99716, 'Lashawn', 1970, 'F', 494), +(99717, 'Amelia', 1970, 'F', 492), +(99718, 'Betsy', 1970, 'F', 492), +(99719, 'Keisha', 1970, 'F', 491), +(99720, 'Maribel', 1970, 'F', 491), +(99721, 'Irma', 1970, 'F', 489), +(99722, 'Mia', 1970, 'F', 487), +(99723, 'Rosemarie', 1970, 'F', 486), +(99724, 'Guadalupe', 1970, 'F', 485), +(99725, 'Bridgett', 1970, 'F', 482), +(99726, 'Mildred', 1970, 'F', 482), +(99727, 'Kay', 1970, 'F', 477), +(99728, 'Janie', 1970, 'F', 476), +(99729, 'Jeri', 1970, 'F', 471), +(99730, 'Karyn', 1970, 'F', 461), +(99731, 'Adriana', 1970, 'F', 458), +(99732, 'Chris', 1970, 'F', 458), +(99733, 'Michael', 1970, 'F', 457), +(99734, 'Myra', 1970, 'F', 455), +(99735, 'Malinda', 1970, 'F', 454), +(99736, 'Lynnette', 1970, 'F', 451), +(99737, 'Tonja', 1970, 'F', 451), +(99738, 'Edna', 1970, 'F', 446), +(99739, 'Alyssa', 1970, 'F', 444), +(99740, 'Claudine', 1970, 'F', 443), +(99741, 'Delores', 1970, 'F', 441), +(99742, 'Kris', 1970, 'F', 437), +(99743, 'Janette', 1970, 'F', 435), +(99744, 'Marnie', 1970, 'F', 432), +(99745, 'Cari', 1970, 'F', 430), +(99746, 'Latanya', 1970, 'F', 430), +(99747, 'Luz', 1970, 'F', 426), +(99748, 'Elisabeth', 1970, 'F', 425), +(99749, 'Noelle', 1970, 'F', 425), +(99750, 'Beatrice', 1970, 'F', 424), +(99751, 'Carole', 1970, 'F', 423), +(99752, 'Shellie', 1970, 'F', 423), +(99753, 'Alisha', 1970, 'F', 420), +(99754, 'Isabel', 1970, 'F', 417), +(99755, 'Julianne', 1970, 'F', 416), +(99756, 'Jocelyn', 1970, 'F', 414), +(99757, 'Johanna', 1970, 'F', 412), +(99758, 'Valarie', 1970, 'F', 412), +(99759, 'Carey', 1970, 'F', 410), +(99760, 'Justine', 1970, 'F', 410), +(99761, 'Amie', 1970, 'F', 409), +(99762, 'Katharine', 1970, 'F', 409), +(99763, 'Liza', 1970, 'F', 409), +(99764, 'Danette', 1970, 'F', 408), +(99765, 'Tamera', 1970, 'F', 408), +(99766, 'Deann', 1970, 'F', 407), +(99767, 'Terrie', 1970, 'F', 405), +(99768, 'Gena', 1970, 'F', 401), +(99769, 'Rena', 1970, 'F', 400), +(99770, 'Shelby', 1970, 'F', 400), +(99771, 'Tisha', 1970, 'F', 399), +(99772, 'Marisa', 1970, 'F', 398), +(99773, 'Colette', 1970, 'F', 395), +(99774, 'Debora', 1970, 'F', 394), +(99775, 'Gabrielle', 1970, 'F', 394), +(99776, 'Lauri', 1970, 'F', 394), +(99777, 'Juliet', 1970, 'F', 393), +(99778, 'Margie', 1970, 'F', 393), +(99779, 'Olga', 1970, 'F', 389), +(99780, 'Janel', 1970, 'F', 386), +(99781, 'Renae', 1970, 'F', 386), +(99782, 'Ida', 1970, 'F', 385), +(99783, 'Jerri', 1970, 'F', 385), +(99784, 'Jolene', 1970, 'F', 384), +(99785, 'Marion', 1970, 'F', 383), +(99786, 'Tia', 1970, 'F', 383), +(99787, 'Marian', 1970, 'F', 382), +(99788, 'Meghan', 1970, 'F', 382), +(99789, 'Bernice', 1970, 'F', 376), +(99790, 'Kerrie', 1970, 'F', 376), +(99791, 'Rebekah', 1970, 'F', 375), +(99792, 'Rosalind', 1970, 'F', 367), +(99793, 'Bertha', 1970, 'F', 366), +(99794, 'Eleanor', 1970, 'F', 366), +(99795, 'Vera', 1970, 'F', 366), +(99796, 'Blanca', 1970, 'F', 364), +(99797, 'Gladys', 1970, 'F', 364), +(99798, 'Abigail', 1970, 'F', 362), +(99799, 'Caryn', 1970, 'F', 361), +(99800, 'Alissa', 1970, 'F', 358), +(99801, 'Allyson', 1970, 'F', 358), +(99802, 'Celia', 1970, 'F', 357), +(99803, 'Clara', 1970, 'F', 357), +(99804, 'Alexis', 1970, 'F', 356), +(99805, 'Gwen', 1970, 'F', 355), +(99806, 'Hilary', 1970, 'F', 355), +(99807, 'Susie', 1970, 'F', 355), +(99808, 'James', 1970, 'F', 354), +(99809, 'Trudy', 1970, 'F', 354), +(99810, 'Madeline', 1970, 'F', 353), +(99811, 'Lesa', 1970, 'F', 351), +(99812, 'Olivia', 1970, 'F', 351), +(99813, 'Whitney', 1970, 'F', 351), +(99814, 'Lawanda', 1970, 'F', 350), +(99815, 'Stella', 1970, 'F', 346), +(99816, 'Claire', 1970, 'F', 345), +(99817, 'Greta', 1970, 'F', 344), +(99818, 'Joni', 1970, 'F', 344), +(99819, 'Charity', 1970, 'F', 342), +(99820, 'Nanette', 1970, 'F', 340), +(99821, 'Corinne', 1970, 'F', 339), +(99822, 'Krystal', 1970, 'F', 338), +(99823, 'Eugenia', 1970, 'F', 337), +(99824, 'Karrie', 1970, 'F', 336), +(99825, 'Kenya', 1970, 'F', 336), +(99826, 'Jessie', 1970, 'F', 335), +(99827, 'Ursula', 1970, 'F', 335), +(99828, 'Elise', 1970, 'F', 333), +(99829, 'Randi', 1970, 'F', 332), +(99830, 'Florence', 1970, 'F', 331), +(99831, 'Cassie', 1970, 'F', 329), +(99832, 'Robert', 1970, 'F', 328), +(99833, 'Delia', 1970, 'F', 327), +(99834, 'Pam', 1970, 'F', 327), +(99835, 'Marta', 1970, 'F', 325), +(99836, 'Ella', 1970, 'F', 324), +(99837, 'Clarissa', 1970, 'F', 323), +(99838, 'Bonita', 1970, 'F', 322), +(99839, 'Patsy', 1970, 'F', 322), +(99840, 'Shelli', 1970, 'F', 321), +(99841, 'Maritza', 1970, 'F', 320), +(99842, 'Hollie', 1970, 'F', 318), +(99843, 'Penelope', 1970, 'F', 315), +(99844, 'Dee', 1970, 'F', 313), +(99845, 'Felecia', 1970, 'F', 313), +(99846, 'Sandi', 1970, 'F', 310), +(99847, 'Cecelia', 1970, 'F', 309), +(99848, 'Daisy', 1970, 'F', 308), +(99849, 'Genevieve', 1970, 'F', 308), +(99850, 'Tamela', 1970, 'F', 308), +(99851, 'Tyra', 1970, 'F', 308), +(99852, 'Antonia', 1970, 'F', 307), +(99853, 'Stacia', 1970, 'F', 305), +(99854, 'Therese', 1970, 'F', 304), +(99855, 'Latonia', 1970, 'F', 301), +(99856, 'Hilda', 1970, 'F', 299), +(99857, 'Jeanna', 1970, 'F', 299), +(99858, 'Joelle', 1970, 'F', 299), +(99859, 'Leeann', 1970, 'F', 299), +(99860, 'Elsa', 1970, 'F', 298), +(99861, 'Lourdes', 1970, 'F', 298), +(99862, 'Selena', 1970, 'F', 298), +(99863, 'Geneva', 1970, 'F', 297), +(99864, 'Josette', 1970, 'F', 297), +(99865, 'Polly', 1970, 'F', 297), +(99866, 'Kate', 1970, 'F', 296), +(99867, 'Silvia', 1970, 'F', 296), +(99868, 'Larissa', 1970, 'F', 295), +(99869, 'Demetria', 1970, 'F', 294), +(99870, 'Marina', 1970, 'F', 293), +(99871, 'Della', 1970, 'F', 291), +(99872, 'Tamatha', 1970, 'F', 291), +(99873, 'John', 1970, 'F', 290), +(99874, 'Juli', 1970, 'F', 290), +(99875, 'Misti', 1970, 'F', 290), +(99876, 'David', 1970, 'F', 289), +(99877, 'Dayna', 1970, 'F', 287), +(99878, 'Benita', 1970, 'F', 286), +(99879, 'Mara', 1970, 'F', 286), +(99880, 'Margo', 1970, 'F', 286), +(99881, 'Leona', 1970, 'F', 285), +(99882, 'Shanon', 1970, 'F', 285), +(99883, 'Corina', 1970, 'F', 284), +(99884, 'Shannan', 1970, 'F', 283), +(99885, 'Vonda', 1970, 'F', 283), +(99886, 'Buffy', 1970, 'F', 282), +(99887, 'Rae', 1970, 'F', 282), +(99888, 'Dara', 1970, 'F', 279), +(99889, 'Annemarie', 1970, 'F', 278), +(99890, 'Catrina', 1970, 'F', 277), +(99891, 'Terra', 1970, 'F', 277), +(99892, 'Michell', 1970, 'F', 275), +(99893, 'Janell', 1970, 'F', 274), +(99894, 'Shanda', 1970, 'F', 274), +(99895, 'Anjanette', 1970, 'F', 273), +(99896, 'Thelma', 1970, 'F', 273), +(99897, 'Deidra', 1970, 'F', 272), +(99898, 'Janeen', 1970, 'F', 272), +(99899, 'Maura', 1970, 'F', 271), +(99900, 'Jeanie', 1970, 'F', 270), +(99901, 'Missy', 1970, 'F', 267), +(99902, 'Malissa', 1970, 'F', 265), +(99903, 'Marissa', 1970, 'F', 263), +(99904, 'Maxine', 1970, 'F', 262), +(99905, 'Valencia', 1970, 'F', 261), +(99906, 'Janna', 1970, 'F', 260), +(99907, 'Elissa', 1970, 'F', 259), +(99908, 'Georgina', 1970, 'F', 259), +(99909, 'Simone', 1970, 'F', 259), +(99910, 'Tamika', 1970, 'F', 259), +(99911, 'Aretha', 1970, 'F', 258), +(99912, 'Hillary', 1970, 'F', 258), +(99913, 'Denice', 1970, 'F', 257), +(99914, 'Mitzi', 1970, 'F', 257), +(99915, 'Richelle', 1970, 'F', 257), +(99916, 'Saundra', 1970, 'F', 256), +(99917, 'Charmaine', 1970, 'F', 255), +(99918, 'Ivy', 1970, 'F', 255), +(99919, 'Rosie', 1970, 'F', 255), +(99920, 'Sharron', 1970, 'F', 255), +(99921, 'Coleen', 1970, 'F', 253), +(99922, 'Lucia', 1970, 'F', 252), +(99923, 'Alana', 1970, 'F', 250), +(99924, 'Casandra', 1970, 'F', 250), +(99925, 'Chanda', 1970, 'F', 250), +(99926, 'Tawnya', 1970, 'F', 249), +(99927, 'Candi', 1970, 'F', 248), +(99928, 'Gabriela', 1970, 'F', 247), +(99929, 'Letitia', 1970, 'F', 247), +(99930, 'Vikki', 1970, 'F', 247), +(99931, 'Susana', 1970, 'F', 245), +(99932, 'Casey', 1970, 'F', 244), +(99933, 'Latrice', 1970, 'F', 244), +(99934, 'Janis', 1970, 'F', 243), +(99935, 'Eve', 1970, 'F', 241), +(99936, 'Holli', 1970, 'F', 241), +(99937, 'Ada', 1970, 'F', 239), +(99938, 'Robbin', 1970, 'F', 239), +(99939, 'Cristy', 1970, 'F', 238), +(99940, 'Lenora', 1970, 'F', 238), +(99941, 'Martina', 1970, 'F', 237), +(99942, 'Rosalinda', 1970, 'F', 237), +(99943, 'Rosalyn', 1970, 'F', 237); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(99944, 'Aileen', 1970, 'F', 236), +(99945, 'Lucille', 1970, 'F', 236), +(99946, 'Trena', 1970, 'F', 236), +(99947, 'Anastasia', 1970, 'F', 235), +(99948, 'Danita', 1970, 'F', 235), +(99949, 'Cora', 1970, 'F', 234), +(99950, 'Darci', 1970, 'F', 234), +(99951, 'Hazel', 1970, 'F', 234), +(99952, 'Lorna', 1970, 'F', 234), +(99953, 'Mandy', 1970, 'F', 234), +(99954, 'Leanna', 1970, 'F', 233), +(99955, 'Chrystal', 1970, 'F', 232), +(99956, 'Janene', 1970, 'F', 231), +(99957, 'Jeana', 1970, 'F', 231), +(99958, 'Tawana', 1970, 'F', 231), +(99959, 'Alyson', 1970, 'F', 230), +(99960, 'Danna', 1970, 'F', 229), +(99961, 'Gayla', 1970, 'F', 227), +(99962, 'Graciela', 1970, 'F', 227), +(99963, 'Chelsea', 1970, 'F', 226), +(99964, 'Ethel', 1970, 'F', 226), +(99965, 'Lorri', 1970, 'F', 226), +(99966, 'Mari', 1970, 'F', 226), +(99967, 'Mechelle', 1970, 'F', 226), +(99968, 'Ami', 1970, 'F', 225), +(99969, 'Ivette', 1970, 'F', 225), +(99970, 'Robbie', 1970, 'F', 225), +(99971, 'Corinna', 1970, 'F', 224), +(99972, 'Johnna', 1970, 'F', 224), +(99973, 'Lisette', 1970, 'F', 224), +(99974, 'Kisha', 1970, 'F', 222), +(99975, 'Latricia', 1970, 'F', 222), +(99976, 'Esmeralda', 1970, 'F', 221), +(99977, 'Marni', 1970, 'F', 221), +(99978, 'Jaime', 1970, 'F', 220), +(99979, 'Windy', 1970, 'F', 220), +(99980, 'Christopher', 1970, 'F', 218), +(99981, 'Lissette', 1970, 'F', 218), +(99982, 'Lolita', 1970, 'F', 218), +(99983, 'Evette', 1970, 'F', 217), +(99984, 'Miranda', 1970, 'F', 217), +(99985, 'Nicolle', 1970, 'F', 216), +(99986, 'Shiela', 1970, 'F', 216), +(99987, 'Susanna', 1970, 'F', 216), +(99988, 'Adrian', 1970, 'F', 215), +(99989, 'Beatriz', 1970, 'F', 215), +(99990, 'Carolina', 1970, 'F', 213), +(99991, 'Charla', 1970, 'F', 210), +(99992, 'Lashonda', 1970, 'F', 210), +(99993, 'Latasha', 1970, 'F', 209), +(99994, 'Tana', 1970, 'F', 209), +(99995, 'Sheree', 1970, 'F', 208), +(99996, 'Renita', 1970, 'F', 207), +(99997, 'Sharlene', 1970, 'F', 207), +(99998, 'Antionette', 1970, 'F', 205), +(99999, 'Nichelle', 1970, 'F', 205), +(100000, 'Cindi', 1970, 'F', 204), +(100001, 'Faye', 1970, 'F', 204), +(100002, 'William', 1970, 'F', 204), +(100003, 'Alecia', 1970, 'F', 203), +(100004, 'Darcie', 1970, 'F', 202), +(100005, 'Lillie', 1970, 'F', 202), +(100006, 'Wilma', 1970, 'F', 202), +(100007, 'Autumn', 1970, 'F', 201), +(100008, 'Helena', 1970, 'F', 201), +(100009, 'Athena', 1970, 'F', 200), +(100010, 'Barbra', 1970, 'F', 200), +(100011, 'Mercedes', 1970, 'F', 200), +(100012, 'Noel', 1970, 'F', 200), +(100013, 'Pamala', 1970, 'F', 200), +(100014, 'Latisha', 1970, 'F', 199), +(100015, 'Tiffani', 1970, 'F', 199), +(100016, 'Joey', 1970, 'F', 198), +(100017, 'Kandi', 1970, 'F', 198), +(100018, 'Kathie', 1970, 'F', 198), +(100019, 'Cathryn', 1970, 'F', 197), +(100020, 'Claudette', 1970, 'F', 197), +(100021, 'Karie', 1970, 'F', 197), +(100022, 'Kristal', 1970, 'F', 197), +(100023, 'Sharla', 1970, 'F', 197), +(100024, 'Adrianne', 1970, 'F', 196), +(100025, 'Christal', 1970, 'F', 196), +(100026, 'Mollie', 1970, 'F', 196), +(100027, 'Christian', 1970, 'F', 195), +(100028, 'Dawna', 1970, 'F', 195), +(100029, 'Verna', 1970, 'F', 195), +(100030, 'Angeline', 1970, 'F', 193), +(100031, 'Roxann', 1970, 'F', 193), +(100032, 'India', 1970, 'F', 192), +(100033, 'Racquel', 1970, 'F', 192), +(100034, 'Eunice', 1970, 'F', 191), +(100035, 'Tera', 1970, 'F', 191), +(100036, 'Mellissa', 1970, 'F', 190), +(100037, 'Brigitte', 1970, 'F', 189), +(100038, 'Jayne', 1970, 'F', 189), +(100039, 'Roslyn', 1970, 'F', 188), +(100040, 'Venus', 1970, 'F', 188), +(100041, 'Marguerite', 1970, 'F', 187), +(100042, 'Tressa', 1970, 'F', 186), +(100043, 'Tori', 1970, 'F', 185), +(100044, 'Chantel', 1970, 'F', 184), +(100045, 'Johnnie', 1970, 'F', 184), +(100046, 'Rosanna', 1970, 'F', 184), +(100047, 'Charisse', 1970, 'F', 183), +(100048, 'Geri', 1970, 'F', 183), +(100049, 'Teressa', 1970, 'F', 183), +(100050, 'Cori', 1970, 'F', 182), +(100051, 'Kathrine', 1970, 'F', 182), +(100052, 'Roseann', 1970, 'F', 182), +(100053, 'Juliette', 1970, 'F', 181), +(100054, 'Shonna', 1970, 'F', 181), +(100055, 'Velma', 1970, 'F', 181), +(100056, 'Aida', 1970, 'F', 180), +(100057, 'Rosalie', 1970, 'F', 180), +(100058, 'Tessa', 1970, 'F', 179), +(100059, 'Ernestine', 1970, 'F', 178), +(100060, 'Yolonda', 1970, 'F', 178), +(100061, 'Jolie', 1970, 'F', 177), +(100062, 'Juana', 1970, 'F', 177), +(100063, 'Lucretia', 1970, 'F', 177), +(100064, 'Marybeth', 1970, 'F', 177), +(100065, 'Noreen', 1970, 'F', 177), +(100066, 'Ava', 1970, 'F', 176), +(100067, 'Shani', 1970, 'F', 176), +(100068, 'Valeria', 1970, 'F', 176), +(100069, 'Carin', 1970, 'F', 175), +(100070, 'Carmela', 1970, 'F', 175), +(100071, 'Georgette', 1970, 'F', 175), +(100072, 'Juliana', 1970, 'F', 175), +(100073, 'Tresa', 1970, 'F', 174), +(100074, 'Caren', 1970, 'F', 173), +(100075, 'Hannah', 1970, 'F', 173), +(100076, 'Mayra', 1970, 'F', 173), +(100077, 'Danelle', 1970, 'F', 172), +(100078, 'Dori', 1970, 'F', 172), +(100079, 'Kathi', 1970, 'F', 172), +(100080, 'Lanette', 1970, 'F', 172), +(100081, 'Maggie', 1970, 'F', 172), +(100082, 'Starla', 1970, 'F', 172), +(100083, 'Abby', 1970, 'F', 171), +(100084, 'Andria', 1970, 'F', 171), +(100085, 'Dale', 1970, 'F', 170), +(100086, 'Josie', 1970, 'F', 170), +(100087, 'Kecia', 1970, 'F', 170), +(100088, 'Maryellen', 1970, 'F', 170), +(100089, 'Delilah', 1970, 'F', 169), +(100090, 'Lola', 1970, 'F', 169), +(100091, 'Loriann', 1970, 'F', 169), +(100092, 'Harriet', 1970, 'F', 168), +(100093, 'Luann', 1970, 'F', 168), +(100094, 'Adriane', 1970, 'F', 167), +(100095, 'Angelita', 1970, 'F', 167), +(100096, 'Toya', 1970, 'F', 167), +(100097, 'Willie', 1970, 'F', 167), +(100098, 'Carissa', 1970, 'F', 166), +(100099, 'Frankie', 1970, 'F', 166), +(100100, 'Gia', 1970, 'F', 166), +(100101, 'Maricela', 1970, 'F', 166), +(100102, 'Katy', 1970, 'F', 165), +(100103, 'Aurora', 1970, 'F', 164), +(100104, 'Jada', 1970, 'F', 164), +(100105, 'Kandy', 1970, 'F', 164), +(100106, 'Milagros', 1970, 'F', 164), +(100107, 'Noemi', 1970, 'F', 164), +(100108, 'Patrica', 1970, 'F', 164), +(100109, 'Francesca', 1970, 'F', 163), +(100110, 'Araceli', 1970, 'F', 162), +(100111, 'Dedra', 1970, 'F', 162), +(100112, 'Laverne', 1970, 'F', 162), +(100113, 'Dione', 1970, 'F', 161), +(100114, 'Nellie', 1970, 'F', 161), +(100115, 'Pearl', 1970, 'F', 161), +(100116, 'Roxanna', 1970, 'F', 161), +(100117, 'Bessie', 1970, 'F', 160), +(100118, 'Dixie', 1970, 'F', 160), +(100119, 'Elsie', 1970, 'F', 160), +(100120, 'Richard', 1970, 'F', 160), +(100121, 'Shona', 1970, 'F', 160), +(100122, 'Kayla', 1970, 'F', 159), +(100123, 'Lou', 1970, 'F', 159), +(100124, 'Myrna', 1970, 'F', 159), +(100125, 'Magdalena', 1970, 'F', 158), +(100126, 'Mattie', 1970, 'F', 158), +(100127, 'Carie', 1970, 'F', 157), +(100128, 'Cherry', 1970, 'F', 157), +(100129, 'Eliza', 1970, 'F', 157), +(100130, 'Milissa', 1970, 'F', 157), +(100131, 'Collette', 1970, 'F', 156), +(100132, 'Corrine', 1970, 'F', 156), +(100133, 'Dominique', 1970, 'F', 156), +(100134, 'Karri', 1970, 'F', 156), +(100135, 'Lenore', 1970, 'F', 156), +(100136, 'Cary', 1970, 'F', 155), +(100137, 'Davina', 1970, 'F', 155), +(100138, 'Juliann', 1970, 'F', 155), +(100139, 'Linette', 1970, 'F', 155), +(100140, 'Consuelo', 1970, 'F', 154), +(100141, 'Kirstin', 1970, 'F', 154), +(100142, 'Camilla', 1970, 'F', 153), +(100143, 'Jonna', 1970, 'F', 153), +(100144, 'Lorene', 1970, 'F', 153), +(100145, 'Tangela', 1970, 'F', 153), +(100146, 'Valorie', 1970, 'F', 153), +(100147, 'Monika', 1970, 'F', 152), +(100148, 'Rosetta', 1970, 'F', 152), +(100149, 'Tanja', 1970, 'F', 152), +(100150, 'Viola', 1970, 'F', 152), +(100151, 'Dona', 1970, 'F', 151), +(100152, 'Elvira', 1970, 'F', 151), +(100153, 'Jacquline', 1970, 'F', 151), +(100154, 'Karina', 1970, 'F', 151), +(100155, 'Rosanne', 1970, 'F', 151), +(100156, 'Althea', 1970, 'F', 150), +(100157, 'Carlene', 1970, 'F', 150), +(100158, 'Lavonne', 1970, 'F', 150), +(100159, 'Marisela', 1970, 'F', 150), +(100160, 'Selina', 1970, 'F', 150), +(100161, 'Charles', 1970, 'F', 149), +(100162, 'Estella', 1970, 'F', 149), +(100163, 'Stefani', 1970, 'F', 149), +(100164, 'Brian', 1970, 'F', 148), +(100165, 'Carri', 1970, 'F', 148), +(100166, 'Eric', 1970, 'F', 148), +(100167, 'Bobby', 1970, 'F', 147), +(100168, 'Cherise', 1970, 'F', 147), +(100169, 'Jayme', 1970, 'F', 147), +(100170, 'Kimberlie', 1970, 'F', 147), +(100171, 'Lorinda', 1970, 'F', 147), +(100172, 'Machelle', 1970, 'F', 147), +(100173, 'Treva', 1970, 'F', 147), +(100174, 'Twila', 1970, 'F', 147), +(100175, 'Coretta', 1970, 'F', 146), +(100176, 'Kasey', 1970, 'F', 146), +(100177, 'Sharonda', 1970, 'F', 146), +(100178, 'Tena', 1970, 'F', 146), +(100179, 'Freda', 1970, 'F', 145), +(100180, 'Kesha', 1970, 'F', 145), +(100181, 'Tawanda', 1970, 'F', 145), +(100182, 'Kimberli', 1970, 'F', 144), +(100183, 'Melonie', 1970, 'F', 144), +(100184, 'Tisa', 1970, 'F', 144), +(100185, 'Anthony', 1970, 'F', 143), +(100186, 'Maya', 1970, 'F', 142), +(100187, 'Stephenie', 1970, 'F', 142), +(100188, 'Gerri', 1970, 'F', 141), +(100189, 'Rolanda', 1970, 'F', 141), +(100190, 'Sebrina', 1970, 'F', 141), +(100191, 'Timothy', 1970, 'F', 141), +(100192, 'Alberta', 1970, 'F', 140), +(100193, 'Brigette', 1970, 'F', 140), +(100194, 'Deloris', 1970, 'F', 140), +(100195, 'Jeffrey', 1970, 'F', 140), +(100196, 'Violet', 1970, 'F', 140), +(100197, 'Angella', 1970, 'F', 139), +(100198, 'Jena', 1970, 'F', 139), +(100199, 'Raina', 1970, 'F', 139), +(100200, 'Tiffanie', 1970, 'F', 139), +(100201, 'Francis', 1970, 'F', 138), +(100202, 'Inez', 1970, 'F', 138), +(100203, 'Joseph', 1970, 'F', 138), +(100204, 'Mark', 1970, 'F', 138), +(100205, 'Rona', 1970, 'F', 138), +(100206, 'Shaun', 1970, 'F', 138), +(100207, 'Trista', 1970, 'F', 138), +(100208, 'Christen', 1970, 'F', 137), +(100209, 'Judi', 1970, 'F', 137), +(100210, 'Crista', 1970, 'F', 136), +(100211, 'Flora', 1970, 'F', 136), +(100212, 'Kristan', 1970, 'F', 136), +(100213, 'Alexandria', 1970, 'F', 135), +(100214, 'Christin', 1970, 'F', 135), +(100215, 'Diann', 1970, 'F', 135), +(100216, 'Helene', 1970, 'F', 135), +(100217, 'Kyra', 1970, 'F', 135), +(100218, 'Mindi', 1970, 'F', 135), +(100219, 'Sherie', 1970, 'F', 135), +(100220, 'Suzanna', 1970, 'F', 135), +(100221, 'Carmella', 1970, 'F', 134), +(100222, 'Josefina', 1970, 'F', 134), +(100223, 'Susannah', 1970, 'F', 134), +(100224, 'Tawanna', 1970, 'F', 134), +(100225, 'Zoe', 1970, 'F', 134), +(100226, 'Lani', 1970, 'F', 133), +(100227, 'Leisa', 1970, 'F', 133), +(100228, 'Marti', 1970, 'F', 133), +(100229, 'Niki', 1970, 'F', 133), +(100230, 'Serina', 1970, 'F', 133), +(100231, 'Shay', 1970, 'F', 133), +(100232, 'Tamiko', 1970, 'F', 133), +(100233, 'Andra', 1970, 'F', 132), +(100234, 'Cristi', 1970, 'F', 132), +(100235, 'Glenna', 1970, 'F', 132), +(100236, 'Leila', 1970, 'F', 132), +(100237, 'Lela', 1970, 'F', 132), +(100238, 'Thomas', 1970, 'F', 132), +(100239, 'Kami', 1970, 'F', 131), +(100240, 'Melodie', 1970, 'F', 131), +(100241, 'Rosario', 1970, 'F', 131), +(100242, 'Shawnda', 1970, 'F', 131), +(100243, 'Tosha', 1970, 'F', 131), +(100244, 'Zandra', 1970, 'F', 131), +(100245, 'Dorothea', 1970, 'F', 130), +(100246, 'Petra', 1970, 'F', 130), +(100247, 'Christel', 1970, 'F', 129), +(100248, 'Deedee', 1970, 'F', 129), +(100249, 'Kevin', 1970, 'F', 129), +(100250, 'Tanisha', 1970, 'F', 129), +(100251, 'Tracee', 1970, 'F', 129), +(100252, 'Dyan', 1970, 'F', 128), +(100253, 'Gale', 1970, 'F', 128), +(100254, 'Lilia', 1970, 'F', 128), +(100255, 'Michaela', 1970, 'F', 128), +(100256, 'Delisa', 1970, 'F', 127), +(100257, 'Elisha', 1970, 'F', 127), +(100258, 'Minerva', 1970, 'F', 127), +(100259, 'Steven', 1970, 'F', 127), +(100260, 'Antonette', 1970, 'F', 126), +(100261, 'Chantelle', 1970, 'F', 126), +(100262, 'Daria', 1970, 'F', 126), +(100263, 'Kimberely', 1970, 'F', 126), +(100264, 'Lily', 1970, 'F', 126), +(100265, 'Marlena', 1970, 'F', 126), +(100266, 'Minnie', 1970, 'F', 126), +(100267, 'Stephany', 1970, 'F', 126), +(100268, 'Treena', 1970, 'F', 126), +(100269, 'Cammie', 1970, 'F', 125), +(100270, 'Ginny', 1970, 'F', 125), +(100271, 'Gracie', 1970, 'F', 125), +(100272, 'Leilani', 1970, 'F', 125), +(100273, 'Maryjo', 1970, 'F', 125), +(100274, 'Merry', 1970, 'F', 125), +(100275, 'Nicol', 1970, 'F', 125), +(100276, 'Scott', 1970, 'F', 125), +(100277, 'Sofia', 1970, 'F', 125), +(100278, 'Towanda', 1970, 'F', 125), +(100279, 'Brandie', 1970, 'F', 124), +(100280, 'Gillian', 1970, 'F', 124), +(100281, 'Mellisa', 1970, 'F', 124), +(100282, 'Tamala', 1970, 'F', 124), +(100283, 'Lashon', 1970, 'F', 123), +(100284, 'Liane', 1970, 'F', 123), +(100285, 'Lila', 1970, 'F', 123), +(100286, 'Maryanne', 1970, 'F', 123), +(100287, 'Angelic', 1970, 'F', 122), +(100288, 'Dawne', 1970, 'F', 122), +(100289, 'Gay', 1970, 'F', 122), +(100290, 'Louisa', 1970, 'F', 122), +(100291, 'Reba', 1970, 'F', 122), +(100292, 'Kira', 1970, 'F', 121), +(100293, 'Luisa', 1970, 'F', 121), +(100294, 'Sallie', 1970, 'F', 121), +(100295, 'Agnes', 1970, 'F', 120), +(100296, 'Brenna', 1970, 'F', 120), +(100297, 'Carleen', 1970, 'F', 120), +(100298, 'Corey', 1970, 'F', 120), +(100299, 'Damaris', 1970, 'F', 120), +(100300, 'Deeann', 1970, 'F', 120), +(100301, 'Gabriella', 1970, 'F', 120), +(100302, 'Joleen', 1970, 'F', 120), +(100303, 'Katheryn', 1970, 'F', 120), +(100304, 'Mae', 1970, 'F', 120), +(100305, 'Racheal', 1970, 'F', 120), +(100306, 'Tameka', 1970, 'F', 120), +(100307, 'Dorene', 1970, 'F', 119), +(100308, 'Jewel', 1970, 'F', 119), +(100309, 'Libby', 1970, 'F', 119), +(100310, 'Lizette', 1970, 'F', 119), +(100311, 'Nannette', 1970, 'F', 119), +(100312, 'Nicola', 1970, 'F', 119), +(100313, 'Tamie', 1970, 'F', 119), +(100314, 'Tarsha', 1970, 'F', 119), +(100315, 'Barbie', 1970, 'F', 118), +(100316, 'Bettina', 1970, 'F', 118), +(100317, 'Britt', 1970, 'F', 118), +(100318, 'Cristine', 1970, 'F', 118), +(100319, 'Liliana', 1970, 'F', 118), +(100320, 'Lupe', 1970, 'F', 118), +(100321, 'Renea', 1970, 'F', 118), +(100322, 'Shantel', 1970, 'F', 118), +(100323, 'Rhoda', 1970, 'F', 117), +(100324, 'Shawnna', 1970, 'F', 117), +(100325, 'Tommie', 1970, 'F', 117), +(100326, 'Clare', 1970, 'F', 116), +(100327, 'Cristin', 1970, 'F', 116), +(100328, 'Imelda', 1970, 'F', 116), +(100329, 'Jerry', 1970, 'F', 116), +(100330, 'Julissa', 1970, 'F', 116), +(100331, 'Migdalia', 1970, 'F', 116), +(100332, 'Trudi', 1970, 'F', 116), +(100333, 'Callie', 1970, 'F', 115), +(100334, 'Dolly', 1970, 'F', 115), +(100335, 'Evangeline', 1970, 'F', 115), +(100336, 'Julianna', 1970, 'F', 115), +(100337, 'Nichol', 1970, 'F', 115), +(100338, 'Octavia', 1970, 'F', 115), +(100339, 'Terese', 1970, 'F', 115), +(100340, 'Twyla', 1970, 'F', 115), +(100341, 'Jason', 1970, 'F', 114), +(100342, 'Nicki', 1970, 'F', 114), +(100343, 'Portia', 1970, 'F', 114), +(100344, 'Shea', 1970, 'F', 114), +(100345, 'Dorinda', 1970, 'F', 113), +(100346, 'Henrietta', 1970, 'F', 113), +(100347, 'Keely', 1970, 'F', 113), +(100348, 'Kendall', 1970, 'F', 113), +(100349, 'Marva', 1970, 'F', 113), +(100350, 'Sarina', 1970, 'F', 113), +(100351, 'Ilene', 1970, 'F', 112), +(100352, 'Melissia', 1970, 'F', 112), +(100353, 'Phoebe', 1970, 'F', 112), +(100354, 'Lavonda', 1970, 'F', 111), +(100355, 'Cinnamon', 1970, 'F', 110), +(100356, 'Corrie', 1970, 'F', 110), +(100357, 'Debby', 1970, 'F', 110), +(100358, 'Kassandra', 1970, 'F', 110), +(100359, 'Lesli', 1970, 'F', 110), +(100360, 'Stephaine', 1970, 'F', 110), +(100361, 'Catharine', 1970, 'F', 109), +(100362, 'Donita', 1970, 'F', 109), +(100363, 'Keli', 1970, 'F', 109), +(100364, 'Pennie', 1970, 'F', 109), +(100365, 'Annamarie', 1970, 'F', 108), +(100366, 'Carlotta', 1970, 'F', 108), +(100367, 'Charleen', 1970, 'F', 108), +(100368, 'Jenna', 1970, 'F', 108), +(100369, 'Lia', 1970, 'F', 108), +(100370, 'Melony', 1970, 'F', 108), +(100371, 'Detra', 1970, 'F', 107), +(100372, 'Elva', 1970, 'F', 107), +(100373, 'Inga', 1970, 'F', 107), +(100374, 'Joellen', 1970, 'F', 107), +(100375, 'Nikole', 1970, 'F', 107), +(100376, 'Nita', 1970, 'F', 107), +(100377, 'Sabrena', 1970, 'F', 107), +(100378, 'Scarlett', 1970, 'F', 107), +(100379, 'Stephani', 1970, 'F', 107), +(100380, 'Cherri', 1970, 'F', 106), +(100381, 'Francisca', 1970, 'F', 106), +(100382, 'Justina', 1970, 'F', 106), +(100383, 'Kenneth', 1970, 'F', 106), +(100384, 'Kia', 1970, 'F', 106), +(100385, 'Larhonda', 1970, 'F', 106), +(100386, 'Lidia', 1970, 'F', 106), +(100387, 'Lyn', 1970, 'F', 106), +(100388, 'Nanci', 1970, 'F', 106), +(100389, 'Roxane', 1970, 'F', 106), +(100390, 'Shara', 1970, 'F', 106), +(100391, 'Cyndi', 1970, 'F', 105), +(100392, 'Hallie', 1970, 'F', 105), +(100393, 'Kellee', 1970, 'F', 105), +(100394, 'Laureen', 1970, 'F', 105), +(100395, 'Ronna', 1970, 'F', 105), +(100396, 'Sydney', 1970, 'F', 105), +(100397, 'Adele', 1970, 'F', 104), +(100398, 'Bianca', 1970, 'F', 104), +(100399, 'Cami', 1970, 'F', 104), +(100400, 'Corrina', 1970, 'F', 104), +(100401, 'Demetra', 1970, 'F', 104), +(100402, 'Marty', 1970, 'F', 104), +(100403, 'Shalonda', 1970, 'F', 104), +(100404, 'Sharyn', 1970, 'F', 104), +(100405, 'Alanna', 1970, 'F', 103), +(100406, 'Cory', 1970, 'F', 103), +(100407, 'Dinah', 1970, 'F', 103), +(100408, 'Dusty', 1970, 'F', 103), +(100409, 'Esperanza', 1970, 'F', 103), +(100410, 'Loren', 1970, 'F', 103), +(100411, 'Millicent', 1970, 'F', 103), +(100412, 'Nathalie', 1970, 'F', 103), +(100413, 'Annetta', 1970, 'F', 102), +(100414, 'Liz', 1970, 'F', 102), +(100415, 'Teena', 1970, 'F', 102), +(100416, 'Caitlin', 1970, 'F', 101), +(100417, 'Daniel', 1970, 'F', 101), +(100418, 'Daniela', 1970, 'F', 101), +(100419, 'Edwina', 1970, 'F', 101), +(100420, 'Fawn', 1970, 'F', 101), +(100421, 'Jacki', 1970, 'F', 101), +(100422, 'Jolynn', 1970, 'F', 101), +(100423, 'Karena', 1970, 'F', 101), +(100424, 'Rana', 1970, 'F', 101), +(100425, 'Shandra', 1970, 'F', 101), +(100426, 'Tammara', 1970, 'F', 101), +(100427, 'Thea', 1970, 'F', 101), +(100428, 'Alysia', 1970, 'F', 100), +(100429, 'Cristal', 1970, 'F', 100), +(100430, 'Donya', 1970, 'F', 100), +(100431, 'Julee', 1970, 'F', 100), +(100432, 'Marquita', 1970, 'F', 100), +(100433, 'Romona', 1970, 'F', 100), +(100434, 'Rosita', 1970, 'F', 100), +(100435, 'Shanta', 1970, 'F', 100), +(100436, 'Spring', 1970, 'F', 100), +(100437, 'Toby', 1970, 'F', 100), +(100438, 'Vickey', 1970, 'F', 100), +(100439, 'Michael', 1970, 'M', 85321), +(100440, 'David', 1970, 'M', 61776), +(100441, 'James', 1970, 'M', 61775), +(100442, 'John', 1970, 'M', 58540), +(100443, 'Robert', 1970, 'M', 57213), +(100444, 'Christopher', 1970, 'M', 41793), +(100445, 'William', 1970, 'M', 38913), +(100446, 'Brian', 1970, 'M', 31943), +(100447, 'Mark', 1970, 'M', 31496), +(100448, 'Richard', 1970, 'M', 30467), +(100449, 'Jeffrey', 1970, 'M', 30155), +(100450, 'Scott', 1970, 'M', 28597), +(100451, 'Jason', 1970, 'M', 27296), +(100452, 'Kevin', 1970, 'M', 26989), +(100453, 'Steven', 1970, 'M', 26823), +(100454, 'Joseph', 1970, 'M', 26734), +(100455, 'Thomas', 1970, 'M', 26689), +(100456, 'Eric', 1970, 'M', 23589), +(100457, 'Daniel', 1970, 'M', 23545), +(100458, 'Timothy', 1970, 'M', 22445), +(100459, 'Charles', 1970, 'M', 22429), +(100460, 'Anthony', 1970, 'M', 21194), +(100461, 'Paul', 1970, 'M', 20211), +(100462, 'Matthew', 1970, 'M', 20206), +(100463, 'Kenneth', 1970, 'M', 16815), +(100464, 'Gregory', 1970, 'M', 16297), +(100465, 'Stephen', 1970, 'M', 14776), +(100466, 'Todd', 1970, 'M', 14428), +(100467, 'Ronald', 1970, 'M', 13619), +(100468, 'Donald', 1970, 'M', 12404), +(100469, 'Edward', 1970, 'M', 12301), +(100470, 'Andrew', 1970, 'M', 12000), +(100471, 'Patrick', 1970, 'M', 11748), +(100472, 'Shawn', 1970, 'M', 10952), +(100473, 'Gary', 1970, 'M', 10727), +(100474, 'Douglas', 1970, 'M', 10418), +(100475, 'Sean', 1970, 'M', 10361), +(100476, 'Keith', 1970, 'M', 9612), +(100477, 'Craig', 1970, 'M', 9379), +(100478, 'George', 1970, 'M', 8923), +(100479, 'Troy', 1970, 'M', 8445), +(100480, 'Jonathan', 1970, 'M', 8203), +(100481, 'Larry', 1970, 'M', 8110), +(100482, 'Peter', 1970, 'M', 8057), +(100483, 'Jerry', 1970, 'M', 7426), +(100484, 'Dennis', 1970, 'M', 7323), +(100485, 'Bradley', 1970, 'M', 6825), +(100486, 'Frank', 1970, 'M', 6803), +(100487, 'Raymond', 1970, 'M', 6795), +(100488, 'Jeffery', 1970, 'M', 6709), +(100489, 'Chad', 1970, 'M', 6643), +(100490, 'Aaron', 1970, 'M', 6585), +(100491, 'Bryan', 1970, 'M', 6460), +(100492, 'Terry', 1970, 'M', 6190), +(100493, 'Rodney', 1970, 'M', 5864), +(100494, 'Jose', 1970, 'M', 5700), +(100495, 'Tony', 1970, 'M', 5488), +(100496, 'Russell', 1970, 'M', 5118), +(100497, 'Randy', 1970, 'M', 5040), +(100498, 'Marc', 1970, 'M', 5015), +(100499, 'Roger', 1970, 'M', 4586), +(100500, 'Samuel', 1970, 'M', 4559), +(100501, 'Chris', 1970, 'M', 4465), +(100502, 'Shane', 1970, 'M', 4455), +(100503, 'Johnny', 1970, 'M', 4442), +(100504, 'Gerald', 1970, 'M', 4401), +(100505, 'Carl', 1970, 'M', 4399), +(100506, 'Jon', 1970, 'M', 4377), +(100507, 'Travis', 1970, 'M', 4331), +(100508, 'Jeremy', 1970, 'M', 4323), +(100509, 'Adam', 1970, 'M', 4320), +(100510, 'Marcus', 1970, 'M', 4319), +(100511, 'Phillip', 1970, 'M', 4283), +(100512, 'Brent', 1970, 'M', 4272), +(100513, 'Darren', 1970, 'M', 4197), +(100514, 'Lance', 1970, 'M', 4166), +(100515, 'Derek', 1970, 'M', 4148), +(100516, 'Billy', 1970, 'M', 4124), +(100517, 'Vincent', 1970, 'M', 4030), +(100518, 'Wayne', 1970, 'M', 4005), +(100519, 'Benjamin', 1970, 'M', 3932), +(100520, 'Joel', 1970, 'M', 3842), +(100521, 'Lawrence', 1970, 'M', 3823), +(100522, 'Corey', 1970, 'M', 3815), +(100523, 'Danny', 1970, 'M', 3764), +(100524, 'Jimmy', 1970, 'M', 3654), +(100525, 'Bobby', 1970, 'M', 3633), +(100526, 'Curtis', 1970, 'M', 3615), +(100527, 'Walter', 1970, 'M', 3586), +(100528, 'Joe', 1970, 'M', 3572), +(100529, 'Alan', 1970, 'M', 3560), +(100530, 'Philip', 1970, 'M', 3520), +(100531, 'Martin', 1970, 'M', 3508), +(100532, 'Bruce', 1970, 'M', 3488), +(100533, 'Juan', 1970, 'M', 3469), +(100534, 'Derrick', 1970, 'M', 3450), +(100535, 'Jay', 1970, 'M', 3421), +(100536, 'Carlos', 1970, 'M', 3386), +(100537, 'Brett', 1970, 'M', 3376), +(100538, 'Randall', 1970, 'M', 3270), +(100539, 'Erik', 1970, 'M', 3246), +(100540, 'Darrell', 1970, 'M', 3150), +(100541, 'Willie', 1970, 'M', 3140), +(100542, 'Henry', 1970, 'M', 3131), +(100543, 'Ricky', 1970, 'M', 3088), +(100544, 'Victor', 1970, 'M', 3082), +(100545, 'Albert', 1970, 'M', 3074), +(100546, 'Roy', 1970, 'M', 3038), +(100547, 'Glenn', 1970, 'M', 3008), +(100548, 'Dale', 1970, 'M', 3003), +(100549, 'Arthur', 1970, 'M', 2983), +(100550, 'Dean', 1970, 'M', 2942), +(100551, 'Steve', 1970, 'M', 2935), +(100552, 'Allen', 1970, 'M', 2934), +(100553, 'Frederick', 1970, 'M', 2890), +(100554, 'Jeff', 1970, 'M', 2883), +(100555, 'Barry', 1970, 'M', 2801), +(100556, 'Lee', 1970, 'M', 2796), +(100557, 'Jesse', 1970, 'M', 2772), +(100558, 'Kyle', 1970, 'M', 2766), +(100559, 'Antonio', 1970, 'M', 2742), +(100560, 'Harold', 1970, 'M', 2726), +(100561, 'Nicholas', 1970, 'M', 2706), +(100562, 'Louis', 1970, 'M', 2646), +(100563, 'Jamie', 1970, 'M', 2641), +(100564, 'Micheal', 1970, 'M', 2634), +(100565, 'Christian', 1970, 'M', 2627), +(100566, 'Jack', 1970, 'M', 2576), +(100567, 'Shannon', 1970, 'M', 2572), +(100568, 'Nathan', 1970, 'M', 2554), +(100569, 'Brandon', 1970, 'M', 2546), +(100570, 'Tyrone', 1970, 'M', 2531), +(100571, 'Ronnie', 1970, 'M', 2514), +(100572, 'Andre', 1970, 'M', 2509), +(100573, 'Kelly', 1970, 'M', 2498), +(100574, 'Alexander', 1970, 'M', 2474), +(100575, 'Mike', 1970, 'M', 2468), +(100576, 'Justin', 1970, 'M', 2385), +(100577, 'Ryan', 1970, 'M', 2332), +(100578, 'Brad', 1970, 'M', 2327), +(100579, 'Dwayne', 1970, 'M', 2313), +(100580, 'Reginald', 1970, 'M', 2308), +(100581, 'Ernest', 1970, 'M', 2306), +(100582, 'Leonard', 1970, 'M', 2296), +(100583, 'Luis', 1970, 'M', 2286), +(100584, 'Eugene', 1970, 'M', 2266), +(100585, 'Ralph', 1970, 'M', 2246), +(100586, 'Tommy', 1970, 'M', 2223), +(100587, 'Kurt', 1970, 'M', 2197), +(100588, 'Joshua', 1970, 'M', 2177), +(100589, 'Eddie', 1970, 'M', 2153), +(100590, 'Wesley', 1970, 'M', 2063), +(100591, 'Marvin', 1970, 'M', 2035), +(100592, 'Greg', 1970, 'M', 2009), +(100593, 'Glen', 1970, 'M', 1999), +(100594, 'Howard', 1970, 'M', 1997), +(100595, 'Stanley', 1970, 'M', 1954), +(100596, 'Kirk', 1970, 'M', 1919), +(100597, 'Mario', 1970, 'M', 1901), +(100598, 'Theodore', 1970, 'M', 1830), +(100599, 'Daryl', 1970, 'M', 1795), +(100600, 'Duane', 1970, 'M', 1774), +(100601, 'Tracy', 1970, 'M', 1774), +(100602, 'Cory', 1970, 'M', 1763), +(100603, 'Maurice', 1970, 'M', 1741), +(100604, 'Calvin', 1970, 'M', 1734), +(100605, 'Edwin', 1970, 'M', 1726), +(100606, 'Jerome', 1970, 'M', 1724), +(100607, 'Harry', 1970, 'M', 1698), +(100608, 'Manuel', 1970, 'M', 1693), +(100609, 'Melvin', 1970, 'M', 1679), +(100610, 'Ricardo', 1970, 'M', 1651), +(100611, 'Earl', 1970, 'M', 1629), +(100612, 'Damon', 1970, 'M', 1622), +(100613, 'Clinton', 1970, 'M', 1598), +(100614, 'Clifford', 1970, 'M', 1581), +(100615, 'Karl', 1970, 'M', 1576), +(100616, 'Neil', 1970, 'M', 1570), +(100617, 'Mitchell', 1970, 'M', 1544), +(100618, 'Darrin', 1970, 'M', 1527), +(100619, 'Norman', 1970, 'M', 1524), +(100620, 'Warren', 1970, 'M', 1506), +(100621, 'Fred', 1970, 'M', 1505), +(100622, 'Jody', 1970, 'M', 1501), +(100623, 'Jesus', 1970, 'M', 1485), +(100624, 'Ray', 1970, 'M', 1464), +(100625, 'Terrence', 1970, 'M', 1464), +(100626, 'Darin', 1970, 'M', 1442), +(100627, 'Wade', 1970, 'M', 1421), +(100628, 'Alfred', 1970, 'M', 1414), +(100629, 'Alex', 1970, 'M', 1406), +(100630, 'Francis', 1970, 'M', 1390), +(100631, 'Clarence', 1970, 'M', 1384), +(100632, 'Lonnie', 1970, 'M', 1383), +(100633, 'Darryl', 1970, 'M', 1368), +(100634, 'Roberto', 1970, 'M', 1364), +(100635, 'Miguel', 1970, 'M', 1347), +(100636, 'Tim', 1970, 'M', 1327), +(100637, 'Ruben', 1970, 'M', 1325), +(100638, 'Adrian', 1970, 'M', 1296), +(100639, 'Geoffrey', 1970, 'M', 1288), +(100640, 'Dustin', 1970, 'M', 1285), +(100641, 'Don', 1970, 'M', 1279), +(100642, 'Jim', 1970, 'M', 1258), +(100643, 'Gabriel', 1970, 'M', 1245), +(100644, 'Byron', 1970, 'M', 1231), +(100645, 'Leon', 1970, 'M', 1222), +(100646, 'Franklin', 1970, 'M', 1221), +(100647, 'Francisco', 1970, 'M', 1220), +(100648, 'Bernard', 1970, 'M', 1189), +(100649, 'Rick', 1970, 'M', 1186), +(100650, 'Stacy', 1970, 'M', 1183), +(100651, 'Terrance', 1970, 'M', 1179), +(100652, 'Gilbert', 1970, 'M', 1170), +(100653, 'Leroy', 1970, 'M', 1169), +(100654, 'Kent', 1970, 'M', 1152), +(100655, 'Joey', 1970, 'M', 1141), +(100656, 'Nathaniel', 1970, 'M', 1135), +(100657, 'Tom', 1970, 'M', 1129), +(100658, 'Hector', 1970, 'M', 1128), +(100659, 'Jorge', 1970, 'M', 1123), +(100660, 'Ian', 1970, 'M', 1121), +(100661, 'Vernon', 1970, 'M', 1088), +(100662, 'Alvin', 1970, 'M', 1086), +(100663, 'Oscar', 1970, 'M', 1047), +(100664, 'Roderick', 1970, 'M', 1041), +(100665, 'Dana', 1970, 'M', 1039), +(100666, 'Angel', 1970, 'M', 1037), +(100667, 'Raul', 1970, 'M', 1036), +(100668, 'Herbert', 1970, 'M', 1034), +(100669, 'Dwight', 1970, 'M', 1026), +(100670, 'Bill', 1970, 'M', 1021), +(100671, 'Dan', 1970, 'M', 1021), +(100672, 'Leslie', 1970, 'M', 1013), +(100673, 'Guy', 1970, 'M', 1010), +(100674, 'Lewis', 1970, 'M', 1003), +(100675, 'Ramon', 1970, 'M', 994), +(100676, 'Gordon', 1970, 'M', 993), +(100677, 'Lloyd', 1970, 'M', 993), +(100678, 'Shaun', 1970, 'M', 988), +(100679, 'Trevor', 1970, 'M', 987), +(100680, 'Toby', 1970, 'M', 983), +(100681, 'Kerry', 1970, 'M', 969), +(100682, 'Andy', 1970, 'M', 955), +(100683, 'Rafael', 1970, 'M', 946), +(100684, 'Ted', 1970, 'M', 944), +(100685, 'Gregg', 1970, 'M', 942), +(100686, 'Fredrick', 1970, 'M', 941), +(100687, 'Gene', 1970, 'M', 934), +(100688, 'Jaime', 1970, 'M', 934), +(100689, 'Marty', 1970, 'M', 919), +(100690, 'Jacob', 1970, 'M', 918), +(100691, 'Donnie', 1970, 'M', 915), +(100692, 'Javier', 1970, 'M', 912), +(100693, 'Kelvin', 1970, 'M', 912), +(100694, 'Casey', 1970, 'M', 898), +(100695, 'Pedro', 1970, 'M', 886), +(100696, 'Ross', 1970, 'M', 881), +(100697, 'Cedric', 1970, 'M', 880), +(100698, 'Bret', 1970, 'M', 871), +(100699, 'Rene', 1970, 'M', 869), +(100700, 'Trent', 1970, 'M', 866), +(100701, 'Perry', 1970, 'M', 846), +(100702, 'Clayton', 1970, 'M', 835), +(100703, 'Mathew', 1970, 'M', 829), +(100704, 'Jimmie', 1970, 'M', 819), +(100705, 'Allan', 1970, 'M', 806), +(100706, 'Clint', 1970, 'M', 806), +(100707, 'Seth', 1970, 'M', 794), +(100708, 'Grant', 1970, 'M', 785), +(100709, 'Ron', 1970, 'M', 784), +(100710, 'Bryant', 1970, 'M', 782), +(100711, 'Charlie', 1970, 'M', 769), +(100712, 'Stuart', 1970, 'M', 769), +(100713, 'Fernando', 1970, 'M', 767), +(100714, 'Johnnie', 1970, 'M', 765), +(100715, 'Eduardo', 1970, 'M', 757), +(100716, 'Heath', 1970, 'M', 757), +(100717, 'Nelson', 1970, 'M', 755), +(100718, 'Floyd', 1970, 'M', 753), +(100719, 'Jackie', 1970, 'M', 753), +(100720, 'Marshall', 1970, 'M', 753), +(100721, 'Tyler', 1970, 'M', 750), +(100722, 'Jared', 1970, 'M', 748), +(100723, 'Matt', 1970, 'M', 739), +(100724, 'Roland', 1970, 'M', 738), +(100725, 'Armando', 1970, 'M', 731), +(100726, 'Jessie', 1970, 'M', 729), +(100727, 'Orlando', 1970, 'M', 723), +(100728, 'Spencer', 1970, 'M', 720), +(100729, 'Neal', 1970, 'M', 718), +(100730, 'Alberto', 1970, 'M', 716), +(100731, 'Marco', 1970, 'M', 707), +(100732, 'Leo', 1970, 'M', 703), +(100733, 'Dexter', 1970, 'M', 698), +(100734, 'Stacey', 1970, 'M', 689), +(100735, 'Lester', 1970, 'M', 681), +(100736, 'Ivan', 1970, 'M', 677), +(100737, 'Noel', 1970, 'M', 676), +(100738, 'Clifton', 1970, 'M', 673), +(100739, 'Robbie', 1970, 'M', 672), +(100740, 'Kenny', 1970, 'M', 669), +(100741, 'Nick', 1970, 'M', 666), +(100742, 'Edgar', 1970, 'M', 665), +(100743, 'Freddie', 1970, 'M', 660), +(100744, 'Timmy', 1970, 'M', 646), +(100745, 'Julio', 1970, 'M', 642), +(100746, 'Felix', 1970, 'M', 639), +(100747, 'Julian', 1970, 'M', 638), +(100748, 'Dominic', 1970, 'M', 634), +(100749, 'Scot', 1970, 'M', 633), +(100750, 'Milton', 1970, 'M', 632), +(100751, 'Erick', 1970, 'M', 627), +(100752, 'Colin', 1970, 'M', 622), +(100753, 'Clyde', 1970, 'M', 621), +(100754, 'Ben', 1970, 'M', 620), +(100755, 'Herman', 1970, 'M', 616), +(100756, 'Bradford', 1970, 'M', 614), +(100757, 'Robin', 1970, 'M', 612), +(100758, 'Garrett', 1970, 'M', 601), +(100759, 'Sam', 1970, 'M', 601), +(100760, 'Frankie', 1970, 'M', 598), +(100761, 'Evan', 1970, 'M', 597), +(100762, 'Terence', 1970, 'M', 594), +(100763, 'Angelo', 1970, 'M', 589), +(100764, 'Alejandro', 1970, 'M', 588), +(100765, 'Enrique', 1970, 'M', 585), +(100766, 'Carlton', 1970, 'M', 584), +(100767, 'Alfredo', 1970, 'M', 575), +(100768, 'Scotty', 1970, 'M', 574), +(100769, 'Randolph', 1970, 'M', 571), +(100770, 'Cary', 1970, 'M', 570), +(100771, 'Arnold', 1970, 'M', 569), +(100772, 'Arturo', 1970, 'M', 569), +(100773, 'Isaac', 1970, 'M', 569), +(100774, 'Brendan', 1970, 'M', 568), +(100775, 'Cecil', 1970, 'M', 566), +(100776, 'Loren', 1970, 'M', 564), +(100777, 'Lorenzo', 1970, 'M', 561), +(100778, 'Randal', 1970, 'M', 559), +(100779, 'Rickey', 1970, 'M', 559), +(100780, 'Zachary', 1970, 'M', 559), +(100781, 'Dewayne', 1970, 'M', 555), +(100782, 'Dion', 1970, 'M', 555), +(100783, 'Omar', 1970, 'M', 553), +(100784, 'Gerard', 1970, 'M', 546), +(100785, 'Harvey', 1970, 'M', 542), +(100786, 'Luke', 1970, 'M', 539), +(100787, 'Malcolm', 1970, 'M', 538), +(100788, 'Sergio', 1970, 'M', 538), +(100789, 'Wendell', 1970, 'M', 538), +(100790, 'Lamont', 1970, 'M', 534), +(100791, 'Blake', 1970, 'M', 526), +(100792, 'Jonathon', 1970, 'M', 524), +(100793, 'Preston', 1970, 'M', 523), +(100794, 'Brady', 1970, 'M', 522), +(100795, 'Dave', 1970, 'M', 522), +(100796, 'Devin', 1970, 'M', 522), +(100797, 'Chester', 1970, 'M', 515), +(100798, 'Sidney', 1970, 'M', 515), +(100799, 'Salvatore', 1970, 'M', 510), +(100800, 'Rex', 1970, 'M', 506), +(100801, 'Cameron', 1970, 'M', 505), +(100802, 'Johnathan', 1970, 'M', 503), +(100803, 'Donovan', 1970, 'M', 501), +(100804, 'Bart', 1970, 'M', 496), +(100805, 'Otis', 1970, 'M', 496), +(100806, 'Max', 1970, 'M', 488), +(100807, 'Ken', 1970, 'M', 486), +(100808, 'Hugh', 1970, 'M', 485), +(100809, 'Darnell', 1970, 'M', 484), +(100810, 'Rudy', 1970, 'M', 481), +(100811, 'Sammy', 1970, 'M', 474), +(100812, 'Demetrius', 1970, 'M', 467), +(100813, 'Curt', 1970, 'M', 466), +(100814, 'Lyle', 1970, 'M', 466), +(100815, 'Garry', 1970, 'M', 464), +(100816, 'Marlon', 1970, 'M', 458), +(100817, 'Clay', 1970, 'M', 457), +(100818, 'Everett', 1970, 'M', 454), +(100819, 'Ernesto', 1970, 'M', 453), +(100820, 'Bryon', 1970, 'M', 450), +(100821, 'Claude', 1970, 'M', 447), +(100822, 'Gerardo', 1970, 'M', 446), +(100823, 'Doug', 1970, 'M', 437), +(100824, 'Ty', 1970, 'M', 435), +(100825, 'Kendall', 1970, 'M', 434), +(100826, 'Jerald', 1970, 'M', 430), +(100827, 'Cesar', 1970, 'M', 423), +(100828, 'Israel', 1970, 'M', 423), +(100829, 'Monte', 1970, 'M', 423), +(100830, 'Kris', 1970, 'M', 418), +(100831, 'Sheldon', 1970, 'M', 417), +(100832, 'Quentin', 1970, 'M', 412), +(100833, 'Stephan', 1970, 'M', 412), +(100834, 'Virgil', 1970, 'M', 409), +(100835, 'Alfonso', 1970, 'M', 407), +(100836, 'Drew', 1970, 'M', 407), +(100837, 'Vance', 1970, 'M', 406), +(100838, 'Bob', 1970, 'M', 405), +(100839, 'Salvador', 1970, 'M', 405), +(100840, 'Scottie', 1970, 'M', 405), +(100841, 'Alonzo', 1970, 'M', 404), +(100842, 'Jayson', 1970, 'M', 404), +(100843, 'Wallace', 1970, 'M', 401), +(100844, 'Morris', 1970, 'M', 400), +(100845, 'Antoine', 1970, 'M', 399), +(100846, 'Lamar', 1970, 'M', 399), +(100847, 'Myron', 1970, 'M', 399), +(100848, 'Jarrod', 1970, 'M', 394), +(100849, 'Mickey', 1970, 'M', 394), +(100850, 'Rodolfo', 1970, 'M', 393), +(100851, 'Darrel', 1970, 'M', 392), +(100852, 'Sherman', 1970, 'M', 387), +(100853, 'Benny', 1970, 'M', 384), +(100854, 'Earnest', 1970, 'M', 383), +(100855, 'Rusty', 1970, 'M', 383), +(100856, 'Clark', 1970, 'M', 382), +(100857, 'Cody', 1970, 'M', 382), +(100858, 'Lynn', 1970, 'M', 381), +(100859, 'Pablo', 1970, 'M', 378), +(100860, 'Teddy', 1970, 'M', 377), +(100861, 'Pete', 1970, 'M', 374), +(100862, 'Roman', 1970, 'M', 374), +(100863, 'Chadwick', 1970, 'M', 370), +(100864, 'Tracey', 1970, 'M', 370), +(100865, 'Marcos', 1970, 'M', 368), +(100866, 'Oliver', 1970, 'M', 368), +(100867, 'Kristopher', 1970, 'M', 363), +(100868, 'Dallas', 1970, 'M', 357), +(100869, 'Julius', 1970, 'M', 357), +(100870, 'Abraham', 1970, 'M', 354), +(100871, 'Terrell', 1970, 'M', 354), +(100872, 'Bennie', 1970, 'M', 351), +(100873, 'Ira', 1970, 'M', 350), +(100874, 'Willard', 1970, 'M', 350), +(100875, 'Daren', 1970, 'M', 348), +(100876, 'Luther', 1970, 'M', 347), +(100877, 'Andres', 1970, 'M', 346), +(100878, 'Chuck', 1970, 'M', 345), +(100879, 'Alton', 1970, 'M', 344), +(100880, 'Stewart', 1970, 'M', 342), +(100881, 'Dirk', 1970, 'M', 341), +(100882, 'Gilberto', 1970, 'M', 341), +(100883, 'Noah', 1970, 'M', 341), +(100884, 'Morgan', 1970, 'M', 340), +(100885, 'Damian', 1970, 'M', 339), +(100886, 'Archie', 1970, 'M', 338), +(100887, 'Darrick', 1970, 'M', 337), +(100888, 'Rob', 1970, 'M', 333), +(100889, 'Blaine', 1970, 'M', 330), +(100890, 'Monty', 1970, 'M', 330), +(100891, 'Carey', 1970, 'M', 324), +(100892, 'Rolando', 1970, 'M', 323), +(100893, 'Stefan', 1970, 'M', 322), +(100894, 'Kim', 1970, 'M', 316), +(100895, 'Jeffry', 1970, 'M', 315), +(100896, 'Dylan', 1970, 'M', 313), +(100897, 'Robby', 1970, 'M', 312), +(100898, 'Tommie', 1970, 'M', 312), +(100899, 'Forrest', 1970, 'M', 311), +(100900, 'Rudolph', 1970, 'M', 309), +(100901, 'Cornelius', 1970, 'M', 307), +(100902, 'Erich', 1970, 'M', 304), +(100903, 'Laurence', 1970, 'M', 304), +(100904, 'Marion', 1970, 'M', 304), +(100905, 'Dominick', 1970, 'M', 301), +(100906, 'Ismael', 1970, 'M', 300), +(100907, 'Edmund', 1970, 'M', 298), +(100908, 'Jamey', 1970, 'M', 294), +(100909, 'Grady', 1970, 'M', 292), +(100910, 'Guillermo', 1970, 'M', 291), +(100911, 'Felipe', 1970, 'M', 289), +(100912, 'Roosevelt', 1970, 'M', 288), +(100913, 'Wilson', 1970, 'M', 287), +(100914, 'Elmer', 1970, 'M', 286), +(100915, 'Abel', 1970, 'M', 284), +(100916, 'Stevie', 1970, 'M', 284), +(100917, 'Tod', 1970, 'M', 284), +(100918, 'Jamal', 1970, 'M', 283), +(100919, 'Derick', 1970, 'M', 281), +(100920, 'Reynaldo', 1970, 'M', 281), +(100921, 'Rory', 1970, 'M', 281), +(100922, 'Shon', 1970, 'M', 281), +(100923, 'Bryce', 1970, 'M', 280), +(100924, 'Jordan', 1970, 'M', 280), +(100925, 'Simon', 1970, 'M', 280), +(100926, 'Jefferson', 1970, 'M', 278), +(100927, 'Deon', 1970, 'M', 277), +(100928, 'Boyd', 1970, 'M', 273), +(100929, 'Jean', 1970, 'M', 273), +(100930, 'Ethan', 1970, 'M', 272), +(100931, 'Donnell', 1970, 'M', 271), +(100932, 'Gustavo', 1970, 'M', 270), +(100933, 'Leland', 1970, 'M', 269), +(100934, 'Hans', 1970, 'M', 267), +(100935, 'Kurtis', 1970, 'M', 267), +(100936, 'Erin', 1970, 'M', 263), +(100937, 'Darius', 1970, 'M', 262), +(100938, 'Rogelio', 1970, 'M', 262), +(100939, 'Thad', 1970, 'M', 260), +(100940, 'Willis', 1970, 'M', 260), +(100941, 'Wilbert', 1970, 'M', 259), +(100942, 'Rodger', 1970, 'M', 256), +(100943, 'Delbert', 1970, 'M', 255), +(100944, 'Austin', 1970, 'M', 254), +(100945, 'Ashley', 1970, 'M', 253), +(100946, 'Rocky', 1970, 'M', 253), +(100947, 'Tomas', 1970, 'M', 250), +(100948, 'Reuben', 1970, 'M', 249), +(100949, 'Guadalupe', 1970, 'M', 248), +(100950, 'Josh', 1970, 'M', 248), +(100951, 'Vince', 1970, 'M', 248), +(100952, 'Robb', 1970, 'M', 246), +(100953, 'Hubert', 1970, 'M', 245), +(100954, 'Sylvester', 1970, 'M', 245), +(100955, 'Denny', 1970, 'M', 243), +(100956, 'Brant', 1970, 'M', 242), +(100957, 'Horace', 1970, 'M', 242), +(100958, 'Bert', 1970, 'M', 241), +(100959, 'Owen', 1970, 'M', 241), +(100960, 'Lionel', 1970, 'M', 239), +(100961, 'Lowell', 1970, 'M', 239), +(100962, 'Van', 1970, 'M', 239), +(100963, 'Dino', 1970, 'M', 236), +(100964, 'Elliott', 1970, 'M', 236), +(100965, 'Dane', 1970, 'M', 235), +(100966, 'Emanuel', 1970, 'M', 235), +(100967, 'Doyle', 1970, 'M', 234), +(100968, 'Eli', 1970, 'M', 233), +(100969, 'Lane', 1970, 'M', 232), +(100970, 'Miles', 1970, 'M', 231), +(100971, 'Will', 1970, 'M', 231), +(100972, 'Vaughn', 1970, 'M', 230), +(100973, 'Trenton', 1970, 'M', 229), +(100974, 'Dewey', 1970, 'M', 228), +(100975, 'Shayne', 1970, 'M', 228), +(100976, 'Conrad', 1970, 'M', 227), +(100977, 'Elias', 1970, 'M', 227), +(100978, 'Joesph', 1970, 'M', 227), +(100979, 'Micah', 1970, 'M', 225), +(100980, 'Ramiro', 1970, 'M', 225), +(100981, 'Kendrick', 1970, 'M', 224), +(100982, 'Nicolas', 1970, 'M', 223), +(100983, 'Thaddeus', 1970, 'M', 223), +(100984, 'Dante', 1970, 'M', 222), +(100985, 'Kory', 1970, 'M', 221), +(100986, 'Sterling', 1970, 'M', 221), +(100987, 'Xavier', 1970, 'M', 221), +(100988, 'Freddy', 1970, 'M', 219), +(100989, 'Saul', 1970, 'M', 219), +(100990, 'Jeremiah', 1970, 'M', 217), +(100991, 'Alphonso', 1970, 'M', 216), +(100992, 'Fabian', 1970, 'M', 216), +(100993, 'Royce', 1970, 'M', 214), +(100994, 'Ernie', 1970, 'M', 212), +(100995, 'Galen', 1970, 'M', 212), +(100996, 'Kraig', 1970, 'M', 211), +(100997, 'Courtney', 1970, 'M', 210), +(100998, 'Anton', 1970, 'M', 209), +(100999, 'Gavin', 1970, 'M', 209), +(101000, 'Rodrick', 1970, 'M', 209), +(101001, 'Louie', 1970, 'M', 208), +(101002, 'Darian', 1970, 'M', 207), +(101003, 'Darwin', 1970, 'M', 207), +(101004, 'Ervin', 1970, 'M', 206), +(101005, 'Reid', 1970, 'M', 206), +(101006, 'Aubrey', 1970, 'M', 204), +(101007, 'Devon', 1970, 'M', 202), +(101008, 'Denis', 1970, 'M', 201), +(101009, 'Reggie', 1970, 'M', 201), +(101010, 'Mack', 1970, 'M', 199), +(101011, 'Pierre', 1970, 'M', 198), +(101012, 'Cleveland', 1970, 'M', 197), +(101013, 'Tad', 1970, 'M', 197), +(101014, 'Leonardo', 1970, 'M', 196), +(101015, 'Rod', 1970, 'M', 196), +(101016, 'Jamison', 1970, 'M', 195), +(101017, 'Jonas', 1970, 'M', 195), +(101018, 'Cornell', 1970, 'M', 194), +(101019, 'Gerry', 1970, 'M', 194), +(101020, 'Brock', 1970, 'M', 193), +(101021, 'Darron', 1970, 'M', 192), +(101022, 'Pat', 1970, 'M', 192), +(101023, 'Santiago', 1970, 'M', 192), +(101024, 'Sonny', 1970, 'M', 192), +(101025, 'Efrain', 1970, 'M', 191), +(101026, 'Aron', 1970, 'M', 190), +(101027, 'Garth', 1970, 'M', 190), +(101028, 'Jess', 1970, 'M', 190), +(101029, 'Buddy', 1970, 'M', 188), +(101030, 'Edmond', 1970, 'M', 188), +(101031, 'Bradly', 1970, 'M', 187), +(101032, 'Ellis', 1970, 'M', 186), +(101033, 'Kip', 1970, 'M', 185), +(101034, 'Moses', 1970, 'M', 185), +(101035, 'Brenton', 1970, 'M', 184), +(101036, 'Elijah', 1970, 'M', 184), +(101037, 'Rufus', 1970, 'M', 184), +(101038, 'Marcel', 1970, 'M', 183), +(101039, 'Mason', 1970, 'M', 183), +(101040, 'Blair', 1970, 'M', 182), +(101041, 'Domingo', 1970, 'M', 182), +(101042, 'Marlin', 1970, 'M', 182), +(101043, 'Wilfredo', 1970, 'M', 182), +(101044, 'Homer', 1970, 'M', 181), +(101045, 'Quinton', 1970, 'M', 181), +(101046, 'Nolan', 1970, 'M', 180), +(101047, 'Winston', 1970, 'M', 180), +(101048, 'Jarrett', 1970, 'M', 179), +(101049, 'Antony', 1970, 'M', 177), +(101050, 'Emilio', 1970, 'M', 176), +(101051, 'Graham', 1970, 'M', 176), +(101052, 'Percy', 1970, 'M', 175), +(101053, 'Shad', 1970, 'M', 175), +(101054, 'Reed', 1970, 'M', 174), +(101055, 'Santos', 1970, 'M', 174), +(101056, 'Tyson', 1970, 'M', 174), +(101057, 'Emmett', 1970, 'M', 173), +(101058, 'Avery', 1970, 'M', 171), +(101059, 'Jermaine', 1970, 'M', 171), +(101060, 'Jerrold', 1970, 'M', 171), +(101061, 'Carlo', 1970, 'M', 170), +(101062, 'Richie', 1970, 'M', 169), +(101063, 'Kristian', 1970, 'M', 168), +(101064, 'Beau', 1970, 'M', 167), +(101065, 'Keven', 1970, 'M', 167), +(101066, 'Michel', 1970, 'M', 167), +(101067, 'Raphael', 1970, 'M', 167), +(101068, 'Desmond', 1970, 'M', 165), +(101069, 'Garland', 1970, 'M', 165), +(101070, 'Ignacio', 1970, 'M', 165), +(101071, 'Sebastian', 1970, 'M', 165), +(101072, 'Benito', 1970, 'M', 164), +(101073, 'Ronny', 1970, 'M', 164), +(101074, 'Daron', 1970, 'M', 163), +(101075, 'Jan', 1970, 'M', 163), +(101076, 'Randell', 1970, 'M', 163), +(101077, 'Hugo', 1970, 'M', 162), +(101078, 'Joaquin', 1970, 'M', 162), +(101079, 'Elbert', 1970, 'M', 161), +(101080, 'Irvin', 1970, 'M', 161), +(101081, 'Lucas', 1970, 'M', 161), +(101082, 'Quincy', 1970, 'M', 161), +(101083, 'Quinn', 1970, 'M', 161), +(101084, 'Gino', 1970, 'M', 159), +(101085, 'Humberto', 1970, 'M', 159), +(101086, 'Leif', 1970, 'M', 159), +(101087, 'Lonny', 1970, 'M', 159), +(101088, 'Rhett', 1970, 'M', 159), +(101089, 'Shelby', 1970, 'M', 159), +(101090, 'Chet', 1970, 'M', 158), +(101091, 'Esteban', 1970, 'M', 158), +(101092, 'Judd', 1970, 'M', 158), +(101093, 'Cliff', 1970, 'M', 157), +(101094, 'Carter', 1970, 'M', 156), +(101095, 'Phil', 1970, 'M', 156), +(101096, 'Danial', 1970, 'M', 155), +(101097, 'Sammie', 1970, 'M', 155), +(101098, 'Hank', 1970, 'M', 154), +(101099, 'Jacques', 1970, 'M', 154), +(101100, 'Jake', 1970, 'M', 153), +(101101, 'Jerrod', 1970, 'M', 153), +(101102, 'Theron', 1970, 'M', 153), +(101103, 'Billie', 1970, 'M', 152), +(101104, 'Judson', 1970, 'M', 152), +(101105, 'Edwardo', 1970, 'M', 151), +(101106, 'Donny', 1970, 'M', 150), +(101107, 'Eddy', 1970, 'M', 150), +(101108, 'Lon', 1970, 'M', 150), +(101109, 'Al', 1970, 'M', 149), +(101110, 'Collin', 1970, 'M', 149), +(101111, 'Kirby', 1970, 'M', 149), +(101112, 'Wilbur', 1970, 'M', 149), +(101113, 'Amos', 1970, 'M', 148), +(101114, 'Carroll', 1970, 'M', 148), +(101115, 'Aric', 1970, 'M', 147), +(101116, 'Barton', 1970, 'M', 147), +(101117, 'Brooks', 1970, 'M', 147), +(101118, 'Elliot', 1970, 'M', 147), +(101119, 'Jude', 1970, 'M', 147), +(101120, 'Rickie', 1970, 'M', 147), +(101121, 'Woodrow', 1970, 'M', 147), +(101122, 'Deron', 1970, 'M', 146), +(101123, 'Dorian', 1970, 'M', 146), +(101124, 'Frederic', 1970, 'M', 146), +(101125, 'Levi', 1970, 'M', 146), +(101126, 'Lincoln', 1970, 'M', 145), +(101127, 'Wilfred', 1970, 'M', 145), +(101128, 'Zane', 1970, 'M', 145), +(101129, 'Jarvis', 1970, 'M', 144), +(101130, 'Russel', 1970, 'M', 144), +(101131, 'Brain', 1970, 'M', 143), +(101132, 'Nicky', 1970, 'M', 143), +(101133, 'Andrea', 1970, 'M', 142), +(101134, 'Colby', 1970, 'M', 142), +(101135, 'Daryle', 1970, 'M', 142), +(101136, 'Rico', 1970, 'M', 142), +(101137, 'Shelton', 1970, 'M', 142), +(101138, 'Solomon', 1970, 'M', 142), +(101139, 'Tobias', 1970, 'M', 142), +(101140, 'Errol', 1970, 'M', 140), +(101141, 'Korey', 1970, 'M', 140), +(101142, 'Rocco', 1970, 'M', 140), +(101143, 'Emmanuel', 1970, 'M', 139), +(101144, 'Harlan', 1970, 'M', 139), +(101145, 'Kennith', 1970, 'M', 139), +(101146, 'Douglass', 1970, 'M', 138), +(101147, 'Dusty', 1970, 'M', 138), +(101148, 'Eldon', 1970, 'M', 138), +(101149, 'Lisa', 1970, 'M', 138), +(101150, 'Damion', 1970, 'M', 134), +(101151, 'Duncan', 1970, 'M', 134), +(101152, 'Davis', 1970, 'M', 132), +(101153, 'Irving', 1970, 'M', 132), +(101154, 'Kelley', 1970, 'M', 132), +(101155, 'Britt', 1970, 'M', 131), +(101156, 'Elvin', 1970, 'M', 131), +(101157, 'Elvis', 1970, 'M', 131), +(101158, 'Merle', 1970, 'M', 131), +(101159, 'Darby', 1970, 'M', 130), +(101160, 'Jefferey', 1970, 'M', 130), +(101161, 'Ward', 1970, 'M', 130), +(101162, 'Coy', 1970, 'M', 129), +(101163, 'Harley', 1970, 'M', 129), +(101164, 'Nickolas', 1970, 'M', 129), +(101165, 'Ed', 1970, 'M', 128), +(101166, 'Adolfo', 1970, 'M', 127), +(101167, 'Carmen', 1970, 'M', 127), +(101168, 'Chance', 1970, 'M', 127), +(101169, 'Malik', 1970, 'M', 127), +(101170, 'Russ', 1970, 'M', 127), +(101171, 'Mikel', 1970, 'M', 126), +(101172, 'Brendon', 1970, 'M', 125), +(101173, 'Hal', 1970, 'M', 125), +(101174, 'Michelle', 1970, 'M', 125), +(101175, 'Sandy', 1970, 'M', 125), +(101176, 'Wyatt', 1970, 'M', 125), +(101177, 'Alexis', 1970, 'M', 124), +(101178, 'Damien', 1970, 'M', 124), +(101179, 'Elton', 1970, 'M', 124), +(101180, 'Emil', 1970, 'M', 124), +(101181, 'Ari', 1970, 'M', 123), +(101182, 'Kirt', 1970, 'M', 123), +(101183, 'Vicente', 1970, 'M', 123), +(101184, 'Tobin', 1970, 'M', 122), +(101185, 'Torrey', 1970, 'M', 122), +(101186, 'Burton', 1970, 'M', 121), +(101187, 'Harrison', 1970, 'M', 121), +(101188, 'Markus', 1970, 'M', 120), +(101189, 'Paris', 1970, 'M', 120), +(101190, 'Tyron', 1970, 'M', 120), +(101191, 'Vito', 1970, 'M', 120), +(101192, 'Jennifer', 1970, 'M', 119), +(101193, 'Kermit', 1970, 'M', 119), +(101194, 'Moises', 1970, 'M', 119), +(101195, 'Taylor', 1970, 'M', 119), +(101196, 'Torrance', 1970, 'M', 119), +(101197, 'Waylon', 1970, 'M', 119), +(101198, 'Jade', 1970, 'M', 118), +(101199, 'Lenny', 1970, 'M', 118), +(101200, 'Noe', 1970, 'M', 118), +(101201, 'Deric', 1970, 'M', 117), +(101202, 'Heriberto', 1970, 'M', 117), +(101203, 'Linwood', 1970, 'M', 117), +(101204, 'Baron', 1970, 'M', 116), +(101205, 'Dwain', 1970, 'M', 116), +(101206, 'Lorne', 1970, 'M', 116), +(101207, 'Trey', 1970, 'M', 116), +(101208, 'Bobbie', 1970, 'M', 115), +(101209, 'Gregorio', 1970, 'M', 115), +(101210, 'Lanny', 1970, 'M', 115), +(101211, 'Kimberly', 1970, 'M', 114), +(101212, 'Toney', 1970, 'M', 114), +(101213, 'Hunter', 1970, 'M', 113), +(101214, 'Jed', 1970, 'M', 113), +(101215, 'Len', 1970, 'M', 113), +(101216, 'Tory', 1970, 'M', 113), +(101217, 'Brook', 1970, 'M', 112), +(101218, 'Carmine', 1970, 'M', 112), +(101219, 'Norris', 1970, 'M', 112), +(101220, 'Agustin', 1970, 'M', 111), +(101221, 'Greggory', 1970, 'M', 111), +(101222, 'August', 1970, 'M', 110), +(101223, 'Bennett', 1970, 'M', 110), +(101224, 'Jackson', 1970, 'M', 110), +(101225, 'Keenan', 1970, 'M', 110), +(101226, 'Ulysses', 1970, 'M', 110), +(101227, 'Adan', 1970, 'M', 109), +(101228, 'Arron', 1970, 'M', 109), +(101229, 'Murray', 1970, 'M', 109), +(101230, 'Erwin', 1970, 'M', 108), +(101231, 'Landon', 1970, 'M', 108), +(101232, 'Rodrigo', 1970, 'M', 108), +(101233, 'Mauricio', 1970, 'M', 107), +(101234, 'Alec', 1970, 'M', 106), +(101235, 'Carson', 1970, 'M', 105), +(101236, 'Loyd', 1970, 'M', 105), +(101237, 'Diego', 1970, 'M', 104), +(101238, 'Chandler', 1970, 'M', 103), +(101239, 'Junior', 1970, 'M', 103), +(101240, 'Lars', 1970, 'M', 103), +(101241, 'Jasen', 1970, 'M', 102), +(101242, 'Jerold', 1970, 'M', 102), +(101243, 'Carmelo', 1970, 'M', 101), +(101244, 'Cole', 1970, 'M', 101), +(101245, 'Eloy', 1970, 'M', 101), +(101246, 'Garret', 1970, 'M', 101), +(101247, 'Hiram', 1970, 'M', 101), +(101248, 'Odell', 1970, 'M', 101), +(101249, 'Brice', 1970, 'M', 100), +(101250, 'Cyrus', 1970, 'M', 100), +(101251, 'Jennifer', 1971, 'F', 56786), +(101252, 'Michelle', 1971, 'F', 33156), +(101253, 'Lisa', 1971, 'F', 32906), +(101254, 'Kimberly', 1971, 'F', 30692), +(101255, 'Amy', 1971, 'F', 26239), +(101256, 'Angela', 1971, 'F', 25887), +(101257, 'Melissa', 1971, 'F', 23870), +(101258, 'Tammy', 1971, 'F', 17656), +(101259, 'Mary', 1971, 'F', 16698), +(101260, 'Julie', 1971, 'F', 15329), +(101261, 'Stephanie', 1971, 'F', 15144), +(101262, 'Heather', 1971, 'F', 15020), +(101263, 'Tracy', 1971, 'F', 14325), +(101264, 'Dawn', 1971, 'F', 14281), +(101265, 'Karen', 1971, 'F', 14210), +(101266, 'Laura', 1971, 'F', 13869), +(101267, 'Susan', 1971, 'F', 13778), +(101268, 'Christine', 1971, 'F', 13675), +(101269, 'Elizabeth', 1971, 'F', 13603), +(101270, 'Tina', 1971, 'F', 13263), +(101271, 'Shannon', 1971, 'F', 12652), +(101272, 'Kelly', 1971, 'F', 12599), +(101273, 'Rebecca', 1971, 'F', 12197), +(101274, 'Cynthia', 1971, 'F', 12140), +(101275, 'Lori', 1971, 'F', 11835), +(101276, 'Patricia', 1971, 'F', 11467), +(101277, 'Nicole', 1971, 'F', 10428), +(101278, 'Pamela', 1971, 'F', 10141), +(101279, 'Wendy', 1971, 'F', 10061), +(101280, 'Christina', 1971, 'F', 9913), +(101281, 'Sandra', 1971, 'F', 9712), +(101282, 'Stacy', 1971, 'F', 9114), +(101283, 'Deborah', 1971, 'F', 8675), +(101284, 'Teresa', 1971, 'F', 8564), +(101285, 'Andrea', 1971, 'F', 8475), +(101286, 'Denise', 1971, 'F', 8216), +(101287, 'Maria', 1971, 'F', 8106), +(101288, 'Donna', 1971, 'F', 8011), +(101289, 'Michele', 1971, 'F', 7955), +(101290, 'Sharon', 1971, 'F', 7521), +(101291, 'Stacey', 1971, 'F', 7484), +(101292, 'Linda', 1971, 'F', 7378), +(101293, 'Brenda', 1971, 'F', 7163), +(101294, 'Dana', 1971, 'F', 6932), +(101295, 'Tonya', 1971, 'F', 6898), +(101296, 'Rhonda', 1971, 'F', 6647), +(101297, 'Barbara', 1971, 'F', 6455), +(101298, 'Monica', 1971, 'F', 6427), +(101299, 'Tara', 1971, 'F', 6330), +(101300, 'Cheryl', 1971, 'F', 6329), +(101301, 'Nancy', 1971, 'F', 6216), +(101302, 'Robin', 1971, 'F', 6215), +(101303, 'Kathleen', 1971, 'F', 6155), +(101304, 'Rachel', 1971, 'F', 6124), +(101305, 'Carrie', 1971, 'F', 5977), +(101306, 'April', 1971, 'F', 5939), +(101307, 'Debra', 1971, 'F', 5931), +(101308, 'Sarah', 1971, 'F', 5851), +(101309, 'Jill', 1971, 'F', 5727), +(101310, 'Sherry', 1971, 'F', 5562), +(101311, 'Theresa', 1971, 'F', 5448), +(101312, 'Tiffany', 1971, 'F', 5416), +(101313, 'Paula', 1971, 'F', 5383), +(101314, 'Jessica', 1971, 'F', 5359), +(101315, 'Catherine', 1971, 'F', 5331), +(101316, 'Melanie', 1971, 'F', 5140), +(101317, 'Katherine', 1971, 'F', 5120), +(101318, 'Leslie', 1971, 'F', 5111), +(101319, 'Gina', 1971, 'F', 4923), +(101320, 'Cindy', 1971, 'F', 4907), +(101321, 'Kristin', 1971, 'F', 4860), +(101322, 'Tanya', 1971, 'F', 4852), +(101323, 'Renee', 1971, 'F', 4833), +(101324, 'Tracey', 1971, 'F', 4792), +(101325, 'Jacqueline', 1971, 'F', 4786), +(101326, 'Holly', 1971, 'F', 4745), +(101327, 'Heidi', 1971, 'F', 4716), +(101328, 'Ann', 1971, 'F', 4558), +(101329, 'Crystal', 1971, 'F', 4535), +(101330, 'Tamara', 1971, 'F', 4485), +(101331, 'Sheila', 1971, 'F', 4330), +(101332, 'Diana', 1971, 'F', 4212), +(101333, 'Diane', 1971, 'F', 4206), +(101334, 'Amanda', 1971, 'F', 4133), +(101335, 'Melinda', 1971, 'F', 4058), +(101336, 'Margaret', 1971, 'F', 4001), +(101337, 'Kristen', 1971, 'F', 3964), +(101338, 'Suzanne', 1971, 'F', 3931), +(101339, 'Christy', 1971, 'F', 3930), +(101340, 'Regina', 1971, 'F', 3872), +(101341, 'Kathy', 1971, 'F', 3867), +(101342, 'Carol', 1971, 'F', 3858), +(101343, 'Erin', 1971, 'F', 3858), +(101344, 'Jodi', 1971, 'F', 3825), +(101345, 'Deanna', 1971, 'F', 3792), +(101346, 'Laurie', 1971, 'F', 3751), +(101347, 'Yolanda', 1971, 'F', 3724), +(101348, 'Victoria', 1971, 'F', 3723), +(101349, 'Danielle', 1971, 'F', 3719), +(101350, 'Kim', 1971, 'F', 3685), +(101351, 'Beth', 1971, 'F', 3684), +(101352, 'Valerie', 1971, 'F', 3680), +(101353, 'Shelly', 1971, 'F', 3638), +(101354, 'Carolyn', 1971, 'F', 3608), +(101355, 'Alicia', 1971, 'F', 3592), +(101356, 'Anna', 1971, 'F', 3572), +(101357, 'Carla', 1971, 'F', 3556), +(101358, 'Erica', 1971, 'F', 3491), +(101359, 'Tricia', 1971, 'F', 3470), +(101360, 'Veronica', 1971, 'F', 3427), +(101361, 'Kathryn', 1971, 'F', 3418), +(101362, 'Janet', 1971, 'F', 3395), +(101363, 'Kristi', 1971, 'F', 3269), +(101364, 'Sara', 1971, 'F', 3204), +(101365, 'Terri', 1971, 'F', 3167), +(101366, 'Traci', 1971, 'F', 3118), +(101367, 'Kristina', 1971, 'F', 3056), +(101368, 'Jamie', 1971, 'F', 3054), +(101369, 'Allison', 1971, 'F', 3020), +(101370, 'Kristine', 1971, 'F', 2962), +(101371, 'Colleen', 1971, 'F', 2950), +(101372, 'Anne', 1971, 'F', 2920), +(101373, 'Sherri', 1971, 'F', 2861), +(101374, 'Felicia', 1971, 'F', 2809), +(101375, 'Connie', 1971, 'F', 2752), +(101376, 'Sonya', 1971, 'F', 2730), +(101377, 'Anita', 1971, 'F', 2681), +(101378, 'Lynn', 1971, 'F', 2673), +(101379, 'Vanessa', 1971, 'F', 2656), +(101380, 'Julia', 1971, 'F', 2607), +(101381, 'Stacie', 1971, 'F', 2554), +(101382, 'Annette', 1971, 'F', 2466), +(101383, 'Sabrina', 1971, 'F', 2416), +(101384, 'Krista', 1971, 'F', 2412), +(101385, 'Kelli', 1971, 'F', 2381), +(101386, 'Cassandra', 1971, 'F', 2379), +(101387, 'Wanda', 1971, 'F', 2367), +(101388, 'Bonnie', 1971, 'F', 2331), +(101389, 'Katrina', 1971, 'F', 2299), +(101390, 'Shelley', 1971, 'F', 2272), +(101391, 'Cathy', 1971, 'F', 2270), +(101392, 'Jenny', 1971, 'F', 2237), +(101393, 'Samantha', 1971, 'F', 2213), +(101394, 'Alison', 1971, 'F', 2211), +(101395, 'Kerry', 1971, 'F', 2206), +(101396, 'Erika', 1971, 'F', 2198), +(101397, 'Martha', 1971, 'F', 2188), +(101398, 'Yvonne', 1971, 'F', 2188), +(101399, 'Tracie', 1971, 'F', 2172), +(101400, 'Virginia', 1971, 'F', 2148), +(101401, 'Janice', 1971, 'F', 2145), +(101402, 'Sheri', 1971, 'F', 2144), +(101403, 'Carmen', 1971, 'F', 2139), +(101404, 'Natalie', 1971, 'F', 2089), +(101405, 'Debbie', 1971, 'F', 2062), +(101406, 'Vicki', 1971, 'F', 2009), +(101407, 'Marie', 1971, 'F', 2006); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(101408, 'Penny', 1971, 'F', 2000), +(101409, 'Toni', 1971, 'F', 1995), +(101410, 'Beverly', 1971, 'F', 1988), +(101411, 'Monique', 1971, 'F', 1948), +(101412, 'Jody', 1971, 'F', 1937), +(101413, 'Becky', 1971, 'F', 1930), +(101414, 'Belinda', 1971, 'F', 1886), +(101415, 'Emily', 1971, 'F', 1869), +(101416, 'Gloria', 1971, 'F', 1869), +(101417, 'Kristie', 1971, 'F', 1867), +(101418, 'Shawn', 1971, 'F', 1863), +(101419, 'Joy', 1971, 'F', 1824), +(101420, 'Darlene', 1971, 'F', 1823), +(101421, 'Kristy', 1971, 'F', 1820), +(101422, 'Trina', 1971, 'F', 1816), +(101423, 'Jean', 1971, 'F', 1776), +(101424, 'Yvette', 1971, 'F', 1769), +(101425, 'Betty', 1971, 'F', 1762), +(101426, 'Charlotte', 1971, 'F', 1743), +(101427, 'Charlene', 1971, 'F', 1734), +(101428, 'Aimee', 1971, 'F', 1733), +(101429, 'Kari', 1971, 'F', 1731), +(101430, 'Amber', 1971, 'F', 1720), +(101431, 'Bridget', 1971, 'F', 1714), +(101432, 'Joyce', 1971, 'F', 1692), +(101433, 'Peggy', 1971, 'F', 1691), +(101434, 'Sonia', 1971, 'F', 1691), +(101435, 'Leah', 1971, 'F', 1689), +(101436, 'Jeanette', 1971, 'F', 1678), +(101437, 'Ginger', 1971, 'F', 1670), +(101438, 'Joanne', 1971, 'F', 1651), +(101439, 'Tammie', 1971, 'F', 1651), +(101440, 'Dorothy', 1971, 'F', 1626), +(101441, 'Ruth', 1971, 'F', 1626), +(101442, 'Kimberley', 1971, 'F', 1609), +(101443, 'Shirley', 1971, 'F', 1586), +(101444, 'Sylvia', 1971, 'F', 1578), +(101445, 'Kerri', 1971, 'F', 1575), +(101446, 'Judy', 1971, 'F', 1522), +(101447, 'Meredith', 1971, 'F', 1507), +(101448, 'Alice', 1971, 'F', 1506), +(101449, 'Megan', 1971, 'F', 1500), +(101450, 'Misty', 1971, 'F', 1493), +(101451, 'Angel', 1971, 'F', 1490), +(101452, 'Kendra', 1971, 'F', 1482), +(101453, 'Kara', 1971, 'F', 1471), +(101454, 'Maureen', 1971, 'F', 1471), +(101455, 'Hope', 1971, 'F', 1456), +(101456, 'Judith', 1971, 'F', 1454), +(101457, 'Tami', 1971, 'F', 1454), +(101458, 'Frances', 1971, 'F', 1452), +(101459, 'Helen', 1971, 'F', 1441), +(101460, 'Rose', 1971, 'F', 1428), +(101461, 'Kellie', 1971, 'F', 1426), +(101462, 'Tonia', 1971, 'F', 1425), +(101463, 'Leigh', 1971, 'F', 1424), +(101464, 'Shawna', 1971, 'F', 1422), +(101465, 'Karla', 1971, 'F', 1419), +(101466, 'Rita', 1971, 'F', 1417), +(101467, 'Robyn', 1971, 'F', 1416), +(101468, 'Ellen', 1971, 'F', 1394), +(101469, 'Christie', 1971, 'F', 1383), +(101470, 'Joann', 1971, 'F', 1380), +(101471, 'Joanna', 1971, 'F', 1371), +(101472, 'Rosa', 1971, 'F', 1366), +(101473, 'Norma', 1971, 'F', 1362), +(101474, 'Gretchen', 1971, 'F', 1348), +(101475, 'Vickie', 1971, 'F', 1332), +(101476, 'Candace', 1971, 'F', 1310), +(101477, 'Marsha', 1971, 'F', 1306), +(101478, 'Jane', 1971, 'F', 1305), +(101479, 'Natasha', 1971, 'F', 1303), +(101480, 'Loretta', 1971, 'F', 1301), +(101481, 'Juanita', 1971, 'F', 1299), +(101482, 'Evelyn', 1971, 'F', 1298), +(101483, 'Kelley', 1971, 'F', 1287), +(101484, 'Elaine', 1971, 'F', 1284), +(101485, 'Jeanne', 1971, 'F', 1270), +(101486, 'Angie', 1971, 'F', 1263), +(101487, 'Christa', 1971, 'F', 1250), +(101488, 'Claudia', 1971, 'F', 1248), +(101489, 'Jackie', 1971, 'F', 1216), +(101490, 'Marilyn', 1971, 'F', 1215), +(101491, 'Caroline', 1971, 'F', 1212), +(101492, 'Bobbie', 1971, 'F', 1206), +(101493, 'Marcia', 1971, 'F', 1205), +(101494, 'Melody', 1971, 'F', 1203), +(101495, 'Raquel', 1971, 'F', 1195), +(101496, 'Sheryl', 1971, 'F', 1192), +(101497, 'Molly', 1971, 'F', 1186), +(101498, 'Sonja', 1971, 'F', 1186), +(101499, 'Gail', 1971, 'F', 1184), +(101500, 'Staci', 1971, 'F', 1178), +(101501, 'Ronda', 1971, 'F', 1176), +(101502, 'Dena', 1971, 'F', 1171), +(101503, 'Roberta', 1971, 'F', 1170), +(101504, 'Dina', 1971, 'F', 1165), +(101505, 'Ashley', 1971, 'F', 1164), +(101506, 'Marcy', 1971, 'F', 1154), +(101507, 'Rochelle', 1971, 'F', 1154), +(101508, 'Latonya', 1971, 'F', 1141), +(101509, 'Audrey', 1971, 'F', 1131), +(101510, 'Candice', 1971, 'F', 1130), +(101511, 'Lauren', 1971, 'F', 1121), +(101512, 'Billie', 1971, 'F', 1114), +(101513, 'Nichole', 1971, 'F', 1114), +(101514, 'Teri', 1971, 'F', 1110), +(101515, 'Cheri', 1971, 'F', 1083), +(101516, 'Gwendolyn', 1971, 'F', 1081), +(101517, 'Sandy', 1971, 'F', 1081), +(101518, 'Lynette', 1971, 'F', 1079), +(101519, 'Lora', 1971, 'F', 1068), +(101520, 'Ana', 1971, 'F', 1066), +(101521, 'Sally', 1971, 'F', 1062), +(101522, 'Alisa', 1971, 'F', 1061), +(101523, 'Lara', 1971, 'F', 1053), +(101524, 'Leticia', 1971, 'F', 1051), +(101525, 'Eileen', 1971, 'F', 1038), +(101526, 'Jodie', 1971, 'F', 1038), +(101527, 'Shelia', 1971, 'F', 1038), +(101528, 'Roxanne', 1971, 'F', 1037), +(101529, 'Keri', 1971, 'F', 1036), +(101530, 'Joan', 1971, 'F', 1022), +(101531, 'Deana', 1971, 'F', 1016), +(101532, 'Tasha', 1971, 'F', 1015), +(101533, 'Shari', 1971, 'F', 1014), +(101534, 'Mindy', 1971, 'F', 1010), +(101535, 'Rachelle', 1971, 'F', 997), +(101536, 'Terry', 1971, 'F', 987), +(101537, 'Adrienne', 1971, 'F', 986), +(101538, 'Lorraine', 1971, 'F', 977), +(101539, 'Eva', 1971, 'F', 971), +(101540, 'Irene', 1971, 'F', 969), +(101541, 'Antoinette', 1971, 'F', 967), +(101542, 'Jana', 1971, 'F', 964), +(101543, 'Marla', 1971, 'F', 957), +(101544, 'Angelia', 1971, 'F', 955), +(101545, 'Tabitha', 1971, 'F', 947), +(101546, 'Kirsten', 1971, 'F', 937), +(101547, 'Trisha', 1971, 'F', 929), +(101548, 'Stefanie', 1971, 'F', 923), +(101549, 'Audra', 1971, 'F', 911), +(101550, 'Ericka', 1971, 'F', 911), +(101551, 'Jo', 1971, 'F', 911), +(101552, 'Dianna', 1971, 'F', 909), +(101553, 'Christi', 1971, 'F', 908), +(101554, 'Priscilla', 1971, 'F', 905), +(101555, 'Darla', 1971, 'F', 894), +(101556, 'Nikki', 1971, 'F', 876), +(101557, 'Lee', 1971, 'F', 874), +(101558, 'Karin', 1971, 'F', 873), +(101559, 'Patrice', 1971, 'F', 873), +(101560, 'Cherie', 1971, 'F', 870), +(101561, 'Tisha', 1971, 'F', 867), +(101562, 'Rachael', 1971, 'F', 850), +(101563, 'Lesley', 1971, 'F', 847), +(101564, 'Bobbi', 1971, 'F', 845), +(101565, 'Lydia', 1971, 'F', 845), +(101566, 'Nina', 1971, 'F', 839), +(101567, 'Wendi', 1971, 'F', 839), +(101568, 'Candy', 1971, 'F', 835), +(101569, 'Courtney', 1971, 'F', 835), +(101570, 'Jeannie', 1971, 'F', 833), +(101571, 'Janine', 1971, 'F', 830), +(101572, 'Ramona', 1971, 'F', 821), +(101573, 'Angelique', 1971, 'F', 820), +(101574, 'Jennie', 1971, 'F', 815), +(101575, 'Marcie', 1971, 'F', 815), +(101576, 'Sherrie', 1971, 'F', 814), +(101577, 'Marisol', 1971, 'F', 806), +(101578, 'Jacquelyn', 1971, 'F', 805), +(101579, 'Lorie', 1971, 'F', 796), +(101580, 'Brandi', 1971, 'F', 795), +(101581, 'Marci', 1971, 'F', 792), +(101582, 'Esther', 1971, 'F', 783), +(101583, 'Jenifer', 1971, 'F', 782), +(101584, 'Glenda', 1971, 'F', 781), +(101585, 'Daphne', 1971, 'F', 777), +(101586, 'Katie', 1971, 'F', 760), +(101587, 'Cara', 1971, 'F', 755), +(101588, 'Desiree', 1971, 'F', 751), +(101589, 'Doris', 1971, 'F', 751), +(101590, 'Tammi', 1971, 'F', 744), +(101591, 'Rosemary', 1971, 'F', 743), +(101592, 'Bernadette', 1971, 'F', 739), +(101593, 'Marlene', 1971, 'F', 735), +(101594, 'Dionne', 1971, 'F', 734), +(101595, 'Shana', 1971, 'F', 732), +(101596, 'Ruby', 1971, 'F', 731), +(101597, 'Brooke', 1971, 'F', 728), +(101598, 'Anissa', 1971, 'F', 725), +(101599, 'Jeannette', 1971, 'F', 716), +(101600, 'Vicky', 1971, 'F', 716), +(101601, 'Cristina', 1971, 'F', 707), +(101602, 'Lana', 1971, 'F', 707), +(101603, 'Brandy', 1971, 'F', 704), +(101604, 'Betsy', 1971, 'F', 700), +(101605, 'Miriam', 1971, 'F', 693), +(101606, 'Chandra', 1971, 'F', 683), +(101607, 'Lynda', 1971, 'F', 681), +(101608, 'Grace', 1971, 'F', 680), +(101609, 'Paulette', 1971, 'F', 680), +(101610, 'Elisa', 1971, 'F', 678), +(101611, 'Lillian', 1971, 'F', 676), +(101612, 'Vivian', 1971, 'F', 658), +(101613, 'Bethany', 1971, 'F', 655), +(101614, 'Celeste', 1971, 'F', 655), +(101615, 'Constance', 1971, 'F', 652), +(101616, 'Darcy', 1971, 'F', 648), +(101617, 'Keisha', 1971, 'F', 647), +(101618, 'Janelle', 1971, 'F', 641), +(101619, 'Shauna', 1971, 'F', 641), +(101620, 'Angelica', 1971, 'F', 640), +(101621, 'Sue', 1971, 'F', 633), +(101622, 'Camille', 1971, 'F', 631), +(101623, 'Jeanine', 1971, 'F', 631), +(101624, 'Phyllis', 1971, 'F', 625), +(101625, 'Nora', 1971, 'F', 623), +(101626, 'Dianne', 1971, 'F', 620), +(101627, 'Marianne', 1971, 'F', 620), +(101628, 'Leanne', 1971, 'F', 608), +(101629, 'Naomi', 1971, 'F', 608), +(101630, 'Arlene', 1971, 'F', 605), +(101631, 'Shanna', 1971, 'F', 604), +(101632, 'Josephine', 1971, 'F', 602), +(101633, 'Cecilia', 1971, 'F', 601), +(101634, 'Paige', 1971, 'F', 597), +(101635, 'Sophia', 1971, 'F', 593), +(101636, 'Serena', 1971, 'F', 585), +(101637, 'Alma', 1971, 'F', 584), +(101638, 'Melisa', 1971, 'F', 583), +(101639, 'Alexandra', 1971, 'F', 580), +(101640, 'Maribel', 1971, 'F', 576), +(101641, 'Marjorie', 1971, 'F', 567), +(101642, 'Doreen', 1971, 'F', 556), +(101643, 'Shelby', 1971, 'F', 556), +(101644, 'Lorena', 1971, 'F', 555), +(101645, 'Lynne', 1971, 'F', 549), +(101646, 'Pauline', 1971, 'F', 546), +(101647, 'Jeannine', 1971, 'F', 545), +(101648, 'Tabatha', 1971, 'F', 543), +(101649, 'Iris', 1971, 'F', 538), +(101650, 'Cathleen', 1971, 'F', 534), +(101651, 'Lea', 1971, 'F', 534), +(101652, 'Jami', 1971, 'F', 532), +(101653, 'Leann', 1971, 'F', 531), +(101654, 'Faith', 1971, 'F', 530), +(101655, 'Alisha', 1971, 'F', 529), +(101656, 'Tania', 1971, 'F', 529), +(101657, 'Lucinda', 1971, 'F', 527), +(101658, 'Edith', 1971, 'F', 526), +(101659, 'June', 1971, 'F', 525), +(101660, 'Yesenia', 1971, 'F', 525), +(101661, 'Margarita', 1971, 'F', 517), +(101662, 'Patty', 1971, 'F', 514), +(101663, 'Angelina', 1971, 'F', 513), +(101664, 'Elena', 1971, 'F', 511), +(101665, 'Francine', 1971, 'F', 511), +(101666, 'Susanne', 1971, 'F', 511), +(101667, 'Rene', 1971, 'F', 509), +(101668, 'Ingrid', 1971, 'F', 506), +(101669, 'Rebekah', 1971, 'F', 505), +(101670, 'Carey', 1971, 'F', 504), +(101671, 'Marcella', 1971, 'F', 498), +(101672, 'Bridgette', 1971, 'F', 495), +(101673, 'Laurel', 1971, 'F', 494), +(101674, 'Lena', 1971, 'F', 493), +(101675, 'Amie', 1971, 'F', 491), +(101676, 'Annie', 1971, 'F', 490), +(101677, 'Latanya', 1971, 'F', 489), +(101678, 'Lorrie', 1971, 'F', 489), +(101679, 'Kimberlee', 1971, 'F', 488), +(101680, 'Karyn', 1971, 'F', 484), +(101681, 'Amelia', 1971, 'F', 482), +(101682, 'Mia', 1971, 'F', 482), +(101683, 'Nadine', 1971, 'F', 482), +(101684, 'Dora', 1971, 'F', 480), +(101685, 'Guadalupe', 1971, 'F', 480), +(101686, 'Irma', 1971, 'F', 480), +(101687, 'Lashawn', 1971, 'F', 480), +(101688, 'Marlo', 1971, 'F', 480), +(101689, 'Dolores', 1971, 'F', 478), +(101690, 'Ladonna', 1971, 'F', 478), +(101691, 'Annmarie', 1971, 'F', 476), +(101692, 'Emma', 1971, 'F', 471), +(101693, 'Georgia', 1971, 'F', 470), +(101694, 'Latasha', 1971, 'F', 469), +(101695, 'Shonda', 1971, 'F', 466), +(101696, 'Adriana', 1971, 'F', 464), +(101697, 'Mona', 1971, 'F', 460), +(101698, 'Lois', 1971, 'F', 459), +(101699, 'Marisa', 1971, 'F', 459), +(101700, 'Michael', 1971, 'F', 459), +(101701, 'Deirdre', 1971, 'F', 454), +(101702, 'Janie', 1971, 'F', 454), +(101703, 'Johanna', 1971, 'F', 454), +(101704, 'Allyson', 1971, 'F', 453), +(101705, 'Myra', 1971, 'F', 450), +(101706, 'Suzette', 1971, 'F', 449), +(101707, 'Gayle', 1971, 'F', 446), +(101708, 'Maryann', 1971, 'F', 446), +(101709, 'Edna', 1971, 'F', 444), +(101710, 'Louise', 1971, 'F', 443), +(101711, 'Gabrielle', 1971, 'F', 442), +(101712, 'Jeri', 1971, 'F', 438), +(101713, 'Cari', 1971, 'F', 436), +(101714, 'Isabel', 1971, 'F', 436), +(101715, 'Selena', 1971, 'F', 435), +(101716, 'Deanne', 1971, 'F', 432), +(101717, 'Lucy', 1971, 'F', 428), +(101718, 'Beatrice', 1971, 'F', 427), +(101719, 'Malinda', 1971, 'F', 427), +(101720, 'Janette', 1971, 'F', 425), +(101721, 'Janel', 1971, 'F', 424), +(101722, 'Patti', 1971, 'F', 421), +(101723, 'Kerrie', 1971, 'F', 419), +(101724, 'Lawanda', 1971, 'F', 417), +(101725, 'Olga', 1971, 'F', 417), +(101726, 'Deena', 1971, 'F', 413), +(101727, 'Jan', 1971, 'F', 412), +(101728, 'Geraldine', 1971, 'F', 410), +(101729, 'Alyssa', 1971, 'F', 404), +(101730, 'Lynnette', 1971, 'F', 402), +(101731, 'Luz', 1971, 'F', 401), +(101732, 'Tamika', 1971, 'F', 400), +(101733, 'Elisabeth', 1971, 'F', 398), +(101734, 'Gena', 1971, 'F', 397), +(101735, 'Kenya', 1971, 'F', 397), +(101736, 'Jocelyn', 1971, 'F', 396), +(101737, 'Karrie', 1971, 'F', 395), +(101738, 'Terra', 1971, 'F', 395), +(101739, 'Ursula', 1971, 'F', 395), +(101740, 'Blanca', 1971, 'F', 394), +(101741, 'Abigail', 1971, 'F', 392), +(101742, 'Tamra', 1971, 'F', 390), +(101743, 'Susie', 1971, 'F', 388), +(101744, 'Mildred', 1971, 'F', 387), +(101745, 'Tonja', 1971, 'F', 386), +(101746, 'Shellie', 1971, 'F', 385), +(101747, 'Krystal', 1971, 'F', 384), +(101748, 'Latisha', 1971, 'F', 383), +(101749, 'Bridgett', 1971, 'F', 381), +(101750, 'Rosemarie', 1971, 'F', 381), +(101751, 'Danette', 1971, 'F', 378), +(101752, 'Margie', 1971, 'F', 378), +(101753, 'Deidre', 1971, 'F', 377), +(101754, 'Kay', 1971, 'F', 377), +(101755, 'Sondra', 1971, 'F', 375), +(101756, 'Tanisha', 1971, 'F', 374), +(101757, 'Tia', 1971, 'F', 374), +(101758, 'Juliet', 1971, 'F', 370), +(101759, 'Caryn', 1971, 'F', 369), +(101760, 'Julianne', 1971, 'F', 369), +(101761, 'Gwen', 1971, 'F', 367), +(101762, 'Nanette', 1971, 'F', 364), +(101763, 'Shelli', 1971, 'F', 363), +(101764, 'Demetria', 1971, 'F', 361), +(101765, 'Jerri', 1971, 'F', 359), +(101766, 'Jessie', 1971, 'F', 359), +(101767, 'Marion', 1971, 'F', 359), +(101768, 'Marnie', 1971, 'F', 358), +(101769, 'Colette', 1971, 'F', 357), +(101770, 'Deann', 1971, 'F', 357), +(101771, 'Valarie', 1971, 'F', 357), +(101772, 'Rena', 1971, 'F', 353), +(101773, 'Bertha', 1971, 'F', 351), +(101774, 'Lauri', 1971, 'F', 350), +(101775, 'Hilary', 1971, 'F', 349), +(101776, 'Justine', 1971, 'F', 348), +(101777, 'Tamera', 1971, 'F', 348), +(101778, 'Carole', 1971, 'F', 347), +(101779, 'Meghan', 1971, 'F', 347), +(101780, 'Tiffani', 1971, 'F', 346), +(101781, 'Alexis', 1971, 'F', 344), +(101782, 'Gladys', 1971, 'F', 344), +(101783, 'Ida', 1971, 'F', 344), +(101784, 'Renae', 1971, 'F', 344), +(101785, 'Charity', 1971, 'F', 342), +(101786, 'Noelle', 1971, 'F', 342), +(101787, 'Liza', 1971, 'F', 340), +(101788, 'Shanda', 1971, 'F', 340), +(101789, 'Terrie', 1971, 'F', 340), +(101790, 'Delores', 1971, 'F', 339), +(101791, 'Clara', 1971, 'F', 338), +(101792, 'Claudine', 1971, 'F', 335), +(101793, 'Olivia', 1971, 'F', 335), +(101794, 'Alissa', 1971, 'F', 331), +(101795, 'Hollie', 1971, 'F', 330), +(101796, 'Corinne', 1971, 'F', 329), +(101797, 'Latonia', 1971, 'F', 329), +(101798, 'Genevieve', 1971, 'F', 328), +(101799, 'Chanda', 1971, 'F', 327), +(101800, 'Clarissa', 1971, 'F', 327), +(101801, 'Eugenia', 1971, 'F', 327), +(101802, 'Whitney', 1971, 'F', 327), +(101803, 'Bernice', 1971, 'F', 326), +(101804, 'Eleanor', 1971, 'F', 325), +(101805, 'Chris', 1971, 'F', 324), +(101806, 'Kris', 1971, 'F', 323), +(101807, 'Jolene', 1971, 'F', 320), +(101808, 'Katharine', 1971, 'F', 320), +(101809, 'Corina', 1971, 'F', 318), +(101810, 'Kisha', 1971, 'F', 318), +(101811, 'Casey', 1971, 'F', 317), +(101812, 'Tera', 1971, 'F', 317), +(101813, 'Chrystal', 1971, 'F', 315), +(101814, 'Madeline', 1971, 'F', 315), +(101815, 'Marian', 1971, 'F', 315), +(101816, 'Buffy', 1971, 'F', 314), +(101817, 'Catrina', 1971, 'F', 313), +(101818, 'Cassie', 1971, 'F', 309), +(101819, 'Elise', 1971, 'F', 309), +(101820, 'Maritza', 1971, 'F', 308), +(101821, 'Dara', 1971, 'F', 307), +(101822, 'Polly', 1971, 'F', 307), +(101823, 'Delia', 1971, 'F', 306), +(101824, 'Tawana', 1971, 'F', 306), +(101825, 'Marta', 1971, 'F', 305), +(101826, 'Greta', 1971, 'F', 304), +(101827, 'Stacia', 1971, 'F', 304), +(101828, 'Daisy', 1971, 'F', 303), +(101829, 'James', 1971, 'F', 302), +(101830, 'Janna', 1971, 'F', 302), +(101831, 'Letitia', 1971, 'F', 301), +(101832, 'Margo', 1971, 'F', 301), +(101833, 'Claire', 1971, 'F', 299), +(101834, 'Stella', 1971, 'F', 299), +(101835, 'Felecia', 1971, 'F', 298), +(101836, 'Debora', 1971, 'F', 297), +(101837, 'Robert', 1971, 'F', 297), +(101838, 'Rosalind', 1971, 'F', 297), +(101839, 'Vera', 1971, 'F', 297), +(101840, 'Tyra', 1971, 'F', 296), +(101841, 'Silvia', 1971, 'F', 295), +(101842, 'Malissa', 1971, 'F', 294), +(101843, 'Mandy', 1971, 'F', 294), +(101844, 'Latrice', 1971, 'F', 293), +(101845, 'Tamela', 1971, 'F', 292), +(101846, 'Michell', 1971, 'F', 290), +(101847, 'Joni', 1971, 'F', 289), +(101848, 'Misti', 1971, 'F', 289), +(101849, 'Antonia', 1971, 'F', 288), +(101850, 'Sandi', 1971, 'F', 286), +(101851, 'Dayna', 1971, 'F', 285), +(101852, 'Lashonda', 1971, 'F', 285), +(101853, 'Chantel', 1971, 'F', 284), +(101854, 'Lourdes', 1971, 'F', 284), +(101855, 'Consuelo', 1971, 'F', 283), +(101856, 'Thelma', 1971, 'F', 282), +(101857, 'Elsa', 1971, 'F', 281), +(101858, 'Jeanna', 1971, 'F', 281), +(101859, 'Janell', 1971, 'F', 280), +(101860, 'Janis', 1971, 'F', 280), +(101861, 'Miranda', 1971, 'F', 280), +(101862, 'Celia', 1971, 'F', 278), +(101863, 'Florence', 1971, 'F', 277), +(101864, 'Trudy', 1971, 'F', 277), +(101865, 'Anjanette', 1971, 'F', 276), +(101866, 'Hilda', 1971, 'F', 275), +(101867, 'Susana', 1971, 'F', 275), +(101868, 'Marissa', 1971, 'F', 274), +(101869, 'Randi', 1971, 'F', 274), +(101870, 'Jeanie', 1971, 'F', 272), +(101871, 'John', 1971, 'F', 272), +(101872, 'Cristy', 1971, 'F', 270), +(101873, 'Mitzi', 1971, 'F', 270), +(101874, 'Christopher', 1971, 'F', 269), +(101875, 'Lesa', 1971, 'F', 269), +(101876, 'Alyson', 1971, 'F', 267), +(101877, 'Mara', 1971, 'F', 267), +(101878, 'Patsy', 1971, 'F', 265), +(101879, 'Shannan', 1971, 'F', 265), +(101880, 'Dee', 1971, 'F', 264), +(101881, 'Casandra', 1971, 'F', 263), +(101882, 'Maura', 1971, 'F', 262), +(101883, 'Rosie', 1971, 'F', 262), +(101884, 'Candi', 1971, 'F', 261), +(101885, 'Marina', 1971, 'F', 261), +(101886, 'Bonita', 1971, 'F', 260), +(101887, 'David', 1971, 'F', 260), +(101888, 'Kristal', 1971, 'F', 260), +(101889, 'Gabriela', 1971, 'F', 259), +(101890, 'Holli', 1971, 'F', 258), +(101891, 'Ella', 1971, 'F', 257), +(101892, 'Larissa', 1971, 'F', 256), +(101893, 'Susanna', 1971, 'F', 255), +(101894, 'Trena', 1971, 'F', 255), +(101895, 'Leeann', 1971, 'F', 254), +(101896, 'Tawnya', 1971, 'F', 254), +(101897, 'Latricia', 1971, 'F', 252), +(101898, 'Autumn', 1971, 'F', 251), +(101899, 'Danna', 1971, 'F', 251), +(101900, 'Hillary', 1971, 'F', 251), +(101901, 'Cecelia', 1971, 'F', 250), +(101902, 'Annemarie', 1971, 'F', 249), +(101903, 'Windy', 1971, 'F', 249), +(101904, 'India', 1971, 'F', 248), +(101905, 'Tamatha', 1971, 'F', 248), +(101906, 'Della', 1971, 'F', 247), +(101907, 'Rae', 1971, 'F', 244), +(101908, 'Sheree', 1971, 'F', 242), +(101909, 'Georgina', 1971, 'F', 241), +(101910, 'Eve', 1971, 'F', 240), +(101911, 'Charmaine', 1971, 'F', 239), +(101912, 'Geneva', 1971, 'F', 239), +(101913, 'Simone', 1971, 'F', 239), +(101914, 'Denice', 1971, 'F', 238), +(101915, 'Therese', 1971, 'F', 238), +(101916, 'Anastasia', 1971, 'F', 236), +(101917, 'Aretha', 1971, 'F', 236), +(101918, 'Rosalinda', 1971, 'F', 234), +(101919, 'Christal', 1971, 'F', 233), +(101920, 'Deidra', 1971, 'F', 233), +(101921, 'Danita', 1971, 'F', 231), +(101922, 'Jeana', 1971, 'F', 231), +(101923, 'Adrian', 1971, 'F', 230), +(101924, 'Pam', 1971, 'F', 230), +(101925, 'Ivette', 1971, 'F', 229), +(101926, 'Kesha', 1971, 'F', 228), +(101927, 'Martina', 1971, 'F', 228), +(101928, 'Mechelle', 1971, 'F', 228), +(101929, 'Josie', 1971, 'F', 226), +(101930, 'Kate', 1971, 'F', 226), +(101931, 'Rosalyn', 1971, 'F', 226), +(101932, 'Lucia', 1971, 'F', 225), +(101933, 'Richelle', 1971, 'F', 225), +(101934, 'Sharla', 1971, 'F', 225), +(101935, 'Venus', 1971, 'F', 225), +(101936, 'Araceli', 1971, 'F', 222), +(101937, 'Coleen', 1971, 'F', 222), +(101938, 'Cora', 1971, 'F', 222), +(101939, 'Lenora', 1971, 'F', 222), +(101940, 'Selina', 1971, 'F', 222), +(101941, 'Candida', 1971, 'F', 221), +(101942, 'Ami', 1971, 'F', 220), +(101943, 'Athena', 1971, 'F', 220), +(101944, 'Benita', 1971, 'F', 219), +(101945, 'Janeen', 1971, 'F', 219), +(101946, 'Josette', 1971, 'F', 219), +(101947, 'Lillie', 1971, 'F', 219), +(101948, 'Rosanna', 1971, 'F', 219), +(101949, 'Tawanda', 1971, 'F', 219), +(101950, 'Ethel', 1971, 'F', 218), +(101951, 'Juli', 1971, 'F', 218), +(101952, 'Leona', 1971, 'F', 218), +(101953, 'Lorri', 1971, 'F', 218), +(101954, 'Beatriz', 1971, 'F', 217), +(101955, 'Darci', 1971, 'F', 217), +(101956, 'Leanna', 1971, 'F', 216), +(101957, 'Missy', 1971, 'F', 216), +(101958, 'Tosha', 1971, 'F', 216), +(101959, 'Tessa', 1971, 'F', 215), +(101960, 'Trista', 1971, 'F', 215), +(101961, 'Vonda', 1971, 'F', 215), +(101962, 'Elissa', 1971, 'F', 214), +(101963, 'Ivy', 1971, 'F', 214), +(101964, 'Valencia', 1971, 'F', 214), +(101965, 'Maggie', 1971, 'F', 213), +(101966, 'Robbie', 1971, 'F', 213), +(101967, 'Tarsha', 1971, 'F', 212), +(101968, 'Darcie', 1971, 'F', 211), +(101969, 'Evette', 1971, 'F', 211), +(101970, 'Maricela', 1971, 'F', 211), +(101971, 'Shanon', 1971, 'F', 211), +(101972, 'Christian', 1971, 'F', 210), +(101973, 'Joelle', 1971, 'F', 210), +(101974, 'Mari', 1971, 'F', 210), +(101975, 'Saundra', 1971, 'F', 210), +(101976, 'Tameka', 1971, 'F', 210), +(101977, 'Charisse', 1971, 'F', 209), +(101978, 'Cindi', 1971, 'F', 208), +(101979, 'Carissa', 1971, 'F', 207), +(101980, 'Lorna', 1971, 'F', 207), +(101981, 'Tana', 1971, 'F', 206), +(101982, 'Corinna', 1971, 'F', 205), +(101983, 'Sharron', 1971, 'F', 205), +(101984, 'Abby', 1971, 'F', 204), +(101985, 'Cori', 1971, 'F', 204), +(101986, 'Noel', 1971, 'F', 204), +(101987, 'Penelope', 1971, 'F', 204), +(101988, 'Alana', 1971, 'F', 202), +(101989, 'Chelsea', 1971, 'F', 202), +(101990, 'Lucille', 1971, 'F', 202), +(101991, 'William', 1971, 'F', 201), +(101992, 'Kendall', 1971, 'F', 200), +(101993, 'Antionette', 1971, 'F', 199), +(101994, 'Carie', 1971, 'F', 199), +(101995, 'Vikki', 1971, 'F', 199), +(101996, 'Ada', 1971, 'F', 198), +(101997, 'Esmeralda', 1971, 'F', 198), +(101998, 'Karri', 1971, 'F', 198), +(101999, 'Maxine', 1971, 'F', 197), +(102000, 'Faye', 1971, 'F', 195), +(102001, 'Jaime', 1971, 'F', 195), +(102002, 'Mollie', 1971, 'F', 195), +(102003, 'Noemi', 1971, 'F', 195), +(102004, 'Ayanna', 1971, 'F', 194), +(102005, 'Juliana', 1971, 'F', 194), +(102006, 'Aida', 1971, 'F', 193), +(102007, 'Gayla', 1971, 'F', 193), +(102008, 'Graciela', 1971, 'F', 193), +(102009, 'Robbin', 1971, 'F', 193), +(102010, 'Tangela', 1971, 'F', 193), +(102011, 'Tressa', 1971, 'F', 193), +(102012, 'Aileen', 1971, 'F', 192), +(102013, 'Charla', 1971, 'F', 192), +(102014, 'Tresa', 1971, 'F', 192), +(102015, 'Mercedes', 1971, 'F', 191), +(102016, 'Kandi', 1971, 'F', 190), +(102017, 'Mindi', 1971, 'F', 190), +(102018, 'Francesca', 1971, 'F', 189), +(102019, 'Lucretia', 1971, 'F', 189), +(102020, 'Sharlene', 1971, 'F', 189), +(102021, 'Angeline', 1971, 'F', 188), +(102022, 'Hazel', 1971, 'F', 188), +(102023, 'Helena', 1971, 'F', 188), +(102024, 'Johnna', 1971, 'F', 188), +(102025, 'Renita', 1971, 'F', 188), +(102026, 'Wilma', 1971, 'F', 188), +(102027, 'Adrianne', 1971, 'F', 187), +(102028, 'Alecia', 1971, 'F', 187), +(102029, 'Carolina', 1971, 'F', 187), +(102030, 'Monika', 1971, 'F', 187), +(102031, 'Cary', 1971, 'F', 186), +(102032, 'Johnnie', 1971, 'F', 186), +(102033, 'Lenore', 1971, 'F', 186), +(102034, 'Lisette', 1971, 'F', 186), +(102035, 'Lolita', 1971, 'F', 186), +(102036, 'Tiffanie', 1971, 'F', 186), +(102037, 'Yolonda', 1971, 'F', 185), +(102038, 'Davina', 1971, 'F', 184), +(102039, 'Eunice', 1971, 'F', 184), +(102040, 'Toya', 1971, 'F', 184), +(102041, 'Andria', 1971, 'F', 181), +(102042, 'Hannah', 1971, 'F', 181), +(102043, 'Lola', 1971, 'F', 180), +(102044, 'Sharonda', 1971, 'F', 179), +(102045, 'Verna', 1971, 'F', 179), +(102046, 'Lissette', 1971, 'F', 178), +(102047, 'Aurora', 1971, 'F', 177), +(102048, 'Juana', 1971, 'F', 176), +(102049, 'Rolanda', 1971, 'F', 176), +(102050, 'Tamala', 1971, 'F', 176), +(102051, 'Jenni', 1971, 'F', 175), +(102052, 'Raina', 1971, 'F', 175), +(102053, 'Cathryn', 1971, 'F', 174), +(102054, 'Crista', 1971, 'F', 174), +(102055, 'Danelle', 1971, 'F', 174), +(102056, 'Kathrine', 1971, 'F', 174), +(102057, 'Shani', 1971, 'F', 174), +(102058, 'Freda', 1971, 'F', 172), +(102059, 'Jolie', 1971, 'F', 172), +(102060, 'Karie', 1971, 'F', 172), +(102061, 'Rosalie', 1971, 'F', 172), +(102062, 'Roxanna', 1971, 'F', 172), +(102063, 'Brigitte', 1971, 'F', 171), +(102064, 'Kathie', 1971, 'F', 171), +(102065, 'Melonie', 1971, 'F', 171), +(102066, 'Noreen', 1971, 'F', 171), +(102067, 'Racquel', 1971, 'F', 171), +(102068, 'Stephenie', 1971, 'F', 171), +(102069, 'Tamiko', 1971, 'F', 171), +(102070, 'Brandie', 1971, 'F', 170), +(102071, 'Nicolle', 1971, 'F', 170), +(102072, 'Carri', 1971, 'F', 169), +(102073, 'Dawna', 1971, 'F', 169), +(102074, 'Frankie', 1971, 'F', 169), +(102075, 'Shantel', 1971, 'F', 169), +(102076, 'Juliette', 1971, 'F', 168), +(102077, 'Kayla', 1971, 'F', 168), +(102078, 'Ebony', 1971, 'F', 167), +(102079, 'Joey', 1971, 'F', 167), +(102080, 'Marni', 1971, 'F', 167), +(102081, 'Roxann', 1971, 'F', 167), +(102082, 'Velma', 1971, 'F', 167), +(102083, 'Patrica', 1971, 'F', 166), +(102084, 'Roseann', 1971, 'F', 166), +(102085, 'Jayne', 1971, 'F', 165), +(102086, 'Carin', 1971, 'F', 164), +(102087, 'Myrna', 1971, 'F', 164), +(102088, 'Nellie', 1971, 'F', 164), +(102089, 'Nichelle', 1971, 'F', 164), +(102090, 'Shayla', 1971, 'F', 164), +(102091, 'Barbra', 1971, 'F', 163), +(102092, 'Carmela', 1971, 'F', 163), +(102093, 'Dori', 1971, 'F', 163), +(102094, 'Leila', 1971, 'F', 163), +(102095, 'Mayra', 1971, 'F', 163), +(102096, 'Pearl', 1971, 'F', 163), +(102097, 'Angelita', 1971, 'F', 162), +(102098, 'Ava', 1971, 'F', 161), +(102099, 'Kia', 1971, 'F', 161), +(102100, 'Marisela', 1971, 'F', 161), +(102101, 'Teressa', 1971, 'F', 160), +(102102, 'Alysia', 1971, 'F', 159), +(102103, 'Kasey', 1971, 'F', 159), +(102104, 'Mellissa', 1971, 'F', 159), +(102105, 'Shonna', 1971, 'F', 159), +(102106, 'Dedra', 1971, 'F', 158), +(102107, 'Dominique', 1971, 'F', 158), +(102108, 'Jada', 1971, 'F', 158), +(102109, 'Magdalena', 1971, 'F', 158), +(102110, 'Lia', 1971, 'F', 157), +(102111, 'Roslyn', 1971, 'F', 157), +(102112, 'Sofia', 1971, 'F', 157), +(102113, 'Christin', 1971, 'F', 156), +(102114, 'Claudette', 1971, 'F', 156), +(102115, 'Summer', 1971, 'F', 156), +(102116, 'Tena', 1971, 'F', 156), +(102117, 'Caren', 1971, 'F', 155), +(102118, 'Cherry', 1971, 'F', 155), +(102119, 'Jason', 1971, 'F', 155), +(102120, 'Cristi', 1971, 'F', 154), +(102121, 'Ginny', 1971, 'F', 154), +(102122, 'Karina', 1971, 'F', 154), +(102123, 'Mellisa', 1971, 'F', 154), +(102124, 'Dixie', 1971, 'F', 153), +(102125, 'Katy', 1971, 'F', 153), +(102126, 'Kecia', 1971, 'F', 153), +(102127, 'Laverne', 1971, 'F', 153), +(102128, 'Linette', 1971, 'F', 153), +(102129, 'Tori', 1971, 'F', 153), +(102130, 'Georgette', 1971, 'F', 152), +(102131, 'Jenna', 1971, 'F', 152), +(102132, 'Cherise', 1971, 'F', 151), +(102133, 'Elisha', 1971, 'F', 151), +(102134, 'Kathi', 1971, 'F', 151), +(102135, 'Kirstin', 1971, 'F', 151), +(102136, 'Brian', 1971, 'F', 150), +(102137, 'Collette', 1971, 'F', 150), +(102138, 'Pamala', 1971, 'F', 150), +(102139, 'Rosanne', 1971, 'F', 150), +(102140, 'Angella', 1971, 'F', 149), +(102141, 'Elvira', 1971, 'F', 149), +(102142, 'Lorinda', 1971, 'F', 149), +(102143, 'Shay', 1971, 'F', 149), +(102144, 'Alexandria', 1971, 'F', 148), +(102145, 'Brigette', 1971, 'F', 148), +(102146, 'Joseph', 1971, 'F', 148), +(102147, 'Lanette', 1971, 'F', 148), +(102148, 'Marybeth', 1971, 'F', 148), +(102149, 'Rosetta', 1971, 'F', 148), +(102150, 'Adriane', 1971, 'F', 147), +(102151, 'Brittany', 1971, 'F', 147), +(102152, 'Christel', 1971, 'F', 147), +(102153, 'Inez', 1971, 'F', 146), +(102154, 'Jena', 1971, 'F', 146), +(102155, 'Charles', 1971, 'F', 145), +(102156, 'Latoya', 1971, 'F', 145), +(102157, 'Melodie', 1971, 'F', 145), +(102158, 'Treva', 1971, 'F', 145), +(102159, 'Dione', 1971, 'F', 144), +(102160, 'Richard', 1971, 'F', 144), +(102161, 'Valeria', 1971, 'F', 144), +(102162, 'Violet', 1971, 'F', 144), +(102163, 'Christen', 1971, 'F', 143), +(102164, 'Glenna', 1971, 'F', 143), +(102165, 'Kandy', 1971, 'F', 143), +(102166, 'Nicola', 1971, 'F', 143), +(102167, 'Carlene', 1971, 'F', 142), +(102168, 'Corey', 1971, 'F', 142), +(102169, 'Jayme', 1971, 'F', 142), +(102170, 'Dale', 1971, 'F', 141), +(102171, 'Deedee', 1971, 'F', 141), +(102172, 'Ernestine', 1971, 'F', 141), +(102173, 'Teena', 1971, 'F', 141), +(102174, 'Bessie', 1971, 'F', 140), +(102175, 'Corrine', 1971, 'F', 140), +(102176, 'Elsie', 1971, 'F', 140), +(102177, 'Imelda', 1971, 'F', 140), +(102178, 'Suzanna', 1971, 'F', 140), +(102179, 'Valorie', 1971, 'F', 140), +(102180, 'Althea', 1971, 'F', 139), +(102181, 'Callie', 1971, 'F', 139), +(102182, 'Chantelle', 1971, 'F', 139), +(102183, 'Flora', 1971, 'F', 139), +(102184, 'Shiela', 1971, 'F', 139), +(102185, 'Anthony', 1971, 'F', 138), +(102186, 'Josefina', 1971, 'F', 138), +(102187, 'Chantal', 1971, 'F', 137), +(102188, 'Cristal', 1971, 'F', 137), +(102189, 'Eric', 1971, 'F', 137), +(102190, 'Niki', 1971, 'F', 137), +(102191, 'Shanta', 1971, 'F', 137), +(102192, 'Susannah', 1971, 'F', 137), +(102193, 'Willie', 1971, 'F', 137), +(102194, 'Jacquline', 1971, 'F', 136), +(102195, 'Maya', 1971, 'F', 136), +(102196, 'Shalonda', 1971, 'F', 136), +(102197, 'Tawanna', 1971, 'F', 136), +(102198, 'Brenna', 1971, 'F', 135), +(102199, 'Machelle', 1971, 'F', 135), +(102200, 'Alycia', 1971, 'F', 134), +(102201, 'Angelic', 1971, 'F', 134), +(102202, 'Damaris', 1971, 'F', 134), +(102203, 'Geri', 1971, 'F', 134), +(102204, 'Kevin', 1971, 'F', 134), +(102205, 'Lou', 1971, 'F', 134), +(102206, 'Minnie', 1971, 'F', 134), +(102207, 'Octavia', 1971, 'F', 134), +(102208, 'Bobby', 1971, 'F', 133), +(102209, 'Consuela', 1971, 'F', 133), +(102210, 'Dolly', 1971, 'F', 133), +(102211, 'Kimberli', 1971, 'F', 133), +(102212, 'Loriann', 1971, 'F', 133), +(102213, 'Renea', 1971, 'F', 133), +(102214, 'Agnes', 1971, 'F', 132), +(102215, 'Scott', 1971, 'F', 132), +(102216, 'Corrina', 1971, 'F', 131), +(102217, 'Delilah', 1971, 'F', 131), +(102218, 'Estella', 1971, 'F', 131), +(102219, 'Francis', 1971, 'F', 131), +(102220, 'Lashanda', 1971, 'F', 131), +(102221, 'Lilia', 1971, 'F', 131), +(102222, 'Mattie', 1971, 'F', 131), +(102223, 'Thomas', 1971, 'F', 131), +(102224, 'Towanda', 1971, 'F', 131), +(102225, 'Francisca', 1971, 'F', 130), +(102226, 'Kira', 1971, 'F', 130), +(102227, 'Maryanne', 1971, 'F', 130), +(102228, 'Milissa', 1971, 'F', 130), +(102229, 'Petra', 1971, 'F', 130), +(102230, 'Viola', 1971, 'F', 130), +(102231, 'Andra', 1971, 'F', 129), +(102232, 'Michaela', 1971, 'F', 129), +(102233, 'Rhoda', 1971, 'F', 129), +(102234, 'Zandra', 1971, 'F', 129), +(102235, 'Adria', 1971, 'F', 128), +(102236, 'Britt', 1971, 'F', 128), +(102237, 'Lasonya', 1971, 'F', 128), +(102238, 'Portia', 1971, 'F', 128), +(102239, 'Shea', 1971, 'F', 128), +(102240, 'Julianna', 1971, 'F', 127), +(102241, 'Luann', 1971, 'F', 127), +(102242, 'Marguerite', 1971, 'F', 127), +(102243, 'Shawnda', 1971, 'F', 127), +(102244, 'Steven', 1971, 'F', 127), +(102245, 'Sunny', 1971, 'F', 127), +(102246, 'Hallie', 1971, 'F', 126), +(102247, 'Julissa', 1971, 'F', 126), +(102248, 'Shara', 1971, 'F', 126), +(102249, 'Camilla', 1971, 'F', 125), +(102250, 'Gia', 1971, 'F', 125), +(102251, 'Lorene', 1971, 'F', 125), +(102252, 'Racheal', 1971, 'F', 125), +(102253, 'Tanja', 1971, 'F', 125), +(102254, 'Alanna', 1971, 'F', 124), +(102255, 'Kristan', 1971, 'F', 124), +(102256, 'Lavonne', 1971, 'F', 124), +(102257, 'Marti', 1971, 'F', 124), +(102258, 'Twila', 1971, 'F', 124), +(102259, 'Daria', 1971, 'F', 123), +(102260, 'Lakisha', 1971, 'F', 123), +(102261, 'Starla', 1971, 'F', 123), +(102262, 'Deloris', 1971, 'F', 122), +(102263, 'Gracie', 1971, 'F', 122), +(102264, 'Helene', 1971, 'F', 122), +(102265, 'Kimberlie', 1971, 'F', 122), +(102266, 'Lily', 1971, 'F', 122), +(102267, 'Milagros', 1971, 'F', 122), +(102268, 'Sherita', 1971, 'F', 122), +(102269, 'Shona', 1971, 'F', 122), +(102270, 'Gillian', 1971, 'F', 121), +(102271, 'Lesli', 1971, 'F', 121), +(102272, 'Lupe', 1971, 'F', 121), +(102273, 'Nikole', 1971, 'F', 121), +(102274, 'Zoe', 1971, 'F', 121), +(102275, 'Ashli', 1971, 'F', 120), +(102276, 'Keesha', 1971, 'F', 120), +(102277, 'Leilani', 1971, 'F', 120), +(102278, 'Melissia', 1971, 'F', 120), +(102279, 'Minerva', 1971, 'F', 120), +(102280, 'Rana', 1971, 'F', 120), +(102281, 'Tamie', 1971, 'F', 120), +(102282, 'Alina', 1971, 'F', 119), +(102283, 'Bettina', 1971, 'F', 119), +(102284, 'Kristyn', 1971, 'F', 119), +(102285, 'Alberta', 1971, 'F', 118), +(102286, 'Louisa', 1971, 'F', 118), +(102287, 'Sadie', 1971, 'F', 118), +(102288, 'Dona', 1971, 'F', 117), +(102289, 'Fawn', 1971, 'F', 117), +(102290, 'Daniel', 1971, 'F', 116), +(102291, 'Jonna', 1971, 'F', 116), +(102292, 'Kami', 1971, 'F', 116), +(102293, 'Latosha', 1971, 'F', 116), +(102294, 'Leisa', 1971, 'F', 116), +(102295, 'Carlotta', 1971, 'F', 115), +(102296, 'Corrie', 1971, 'F', 115), +(102297, 'Eliza', 1971, 'F', 115), +(102298, 'Gabriella', 1971, 'F', 115), +(102299, 'Keli', 1971, 'F', 115), +(102300, 'Kyra', 1971, 'F', 115), +(102301, 'Marlena', 1971, 'F', 115), +(102302, 'Stephaine', 1971, 'F', 115), +(102303, 'Gidget', 1971, 'F', 114), +(102304, 'Judi', 1971, 'F', 114), +(102305, 'Latrina', 1971, 'F', 114), +(102306, 'Liliana', 1971, 'F', 114), +(102307, 'Mark', 1971, 'F', 114), +(102308, 'Marquita', 1971, 'F', 114), +(102309, 'Nichol', 1971, 'F', 114), +(102310, 'Pennie', 1971, 'F', 114), +(102311, 'Rebeca', 1971, 'F', 114), +(102312, 'Rosario', 1971, 'F', 114), +(102313, 'Sheena', 1971, 'F', 114), +(102314, 'Stefani', 1971, 'F', 114), +(102315, 'Timothy', 1971, 'F', 114), +(102316, 'Venessa', 1971, 'F', 114), +(102317, 'Carolee', 1971, 'F', 113), +(102318, 'Janene', 1971, 'F', 113), +(102319, 'May', 1971, 'F', 113), +(102320, 'Phoebe', 1971, 'F', 113), +(102321, 'Rocio', 1971, 'F', 113), +(102322, 'Shane', 1971, 'F', 113), +(102323, 'Twana', 1971, 'F', 113), +(102324, 'Adina', 1971, 'F', 112), +(102325, 'Annamarie', 1971, 'F', 112), +(102326, 'Jeffrey', 1971, 'F', 112), +(102327, 'Lashon', 1971, 'F', 112), +(102328, 'Lela', 1971, 'F', 112), +(102329, 'Libby', 1971, 'F', 112), +(102330, 'Lila', 1971, 'F', 112), +(102331, 'Alejandra', 1971, 'F', 111), +(102332, 'Bianca', 1971, 'F', 111), +(102333, 'Chanel', 1971, 'F', 111), +(102334, 'Dusty', 1971, 'F', 111), +(102335, 'Jewel', 1971, 'F', 111), +(102336, 'Kori', 1971, 'F', 111), +(102337, 'Lizette', 1971, 'F', 111), +(102338, 'Lyn', 1971, 'F', 111), +(102339, 'Melony', 1971, 'F', 111), +(102340, 'Nannette', 1971, 'F', 111), +(102341, 'Rona', 1971, 'F', 111), +(102342, 'Thea', 1971, 'F', 111), +(102343, 'Cher', 1971, 'F', 110), +(102344, 'Crissy', 1971, 'F', 110), +(102345, 'Elva', 1971, 'F', 110), +(102346, 'Fannie', 1971, 'F', 110), +(102347, 'Sherie', 1971, 'F', 110), +(102348, 'Celina', 1971, 'F', 109), +(102349, 'Charissa', 1971, 'F', 109), +(102350, 'Cristin', 1971, 'F', 109), +(102351, 'Esperanza', 1971, 'F', 109), +(102352, 'Harriet', 1971, 'F', 109), +(102353, 'Shandra', 1971, 'F', 109), +(102354, 'Adele', 1971, 'F', 108), +(102355, 'Ali', 1971, 'F', 108), +(102356, 'Brook', 1971, 'F', 108), +(102357, 'Carmella', 1971, 'F', 108), +(102358, 'Jenniffer', 1971, 'F', 108), +(102359, 'Mendy', 1971, 'F', 108), +(102360, 'Reba', 1971, 'F', 108), +(102361, 'Kimberely', 1971, 'F', 107), +(102362, 'Serina', 1971, 'F', 107), +(102363, 'Ester', 1971, 'F', 106), +(102364, 'Gerri', 1971, 'F', 106), +(102365, 'Maryellen', 1971, 'F', 106), +(102366, 'Twyla', 1971, 'F', 106), +(102367, 'Barbie', 1971, 'F', 105), +(102368, 'Cherri', 1971, 'F', 105), +(102369, 'Dyan', 1971, 'F', 105), +(102370, 'Edwina', 1971, 'F', 105), +(102371, 'Joellen', 1971, 'F', 105), +(102372, 'Justina', 1971, 'F', 105), +(102373, 'Kyla', 1971, 'F', 105), +(102374, 'Lavonda', 1971, 'F', 105), +(102375, 'Nicolette', 1971, 'F', 105), +(102376, 'Alethea', 1971, 'F', 104), +(102377, 'Dawne', 1971, 'F', 104), +(102378, 'Meridith', 1971, 'F', 104), +(102379, 'Prudence', 1971, 'F', 104), +(102380, 'Sydney', 1971, 'F', 104), +(102381, 'Elaina', 1971, 'F', 103), +(102382, 'Juliann', 1971, 'F', 103), +(102383, 'Lamonica', 1971, 'F', 103), +(102384, 'Melina', 1971, 'F', 103), +(102385, 'Millie', 1971, 'F', 103), +(102386, 'Nicki', 1971, 'F', 103), +(102387, 'Stephany', 1971, 'F', 103), +(102388, 'Suzan', 1971, 'F', 103), +(102389, 'Taunya', 1971, 'F', 103), +(102390, 'Alesia', 1971, 'F', 102), +(102391, 'Cory', 1971, 'F', 102), +(102392, 'Nicol', 1971, 'F', 102), +(102393, 'Sasha', 1971, 'F', 102), +(102394, 'Siobhan', 1971, 'F', 102), +(102395, 'Tomika', 1971, 'F', 102), +(102396, 'Chantell', 1971, 'F', 101), +(102397, 'Delicia', 1971, 'F', 101), +(102398, 'Diann', 1971, 'F', 101), +(102399, 'Dorothea', 1971, 'F', 101), +(102400, 'Elvia', 1971, 'F', 101), +(102401, 'Griselda', 1971, 'F', 101), +(102402, 'Jodee', 1971, 'F', 101), +(102403, 'Laticia', 1971, 'F', 101), +(102404, 'Merry', 1971, 'F', 101), +(102405, 'Roxana', 1971, 'F', 101), +(102406, 'Sallie', 1971, 'F', 101), +(102407, 'Tammara', 1971, 'F', 101), +(102408, 'Celena', 1971, 'F', 100), +(102409, 'Devon', 1971, 'F', 100), +(102410, 'Donita', 1971, 'F', 100), +(102411, 'Ivonne', 1971, 'F', 100), +(102412, 'Karena', 1971, 'F', 100), +(102413, 'Luisa', 1971, 'F', 100), +(102414, 'Michael', 1971, 'M', 77611), +(102415, 'James', 1971, 'M', 54608), +(102416, 'David', 1971, 'M', 53136), +(102417, 'John', 1971, 'M', 51519), +(102418, 'Robert', 1971, 'M', 50656), +(102419, 'Christopher', 1971, 'M', 48251), +(102420, 'William', 1971, 'M', 35442), +(102421, 'Jason', 1971, 'M', 34191), +(102422, 'Brian', 1971, 'M', 32650), +(102423, 'Scott', 1971, 'M', 30920), +(102424, 'Richard', 1971, 'M', 26166), +(102425, 'Jeffrey', 1971, 'M', 25849), +(102426, 'Mark', 1971, 'M', 25143), +(102427, 'Kevin', 1971, 'M', 24876), +(102428, 'Joseph', 1971, 'M', 24512), +(102429, 'Steven', 1971, 'M', 23697), +(102430, 'Thomas', 1971, 'M', 23165), +(102431, 'Eric', 1971, 'M', 22977), +(102432, 'Matthew', 1971, 'M', 22567), +(102433, 'Daniel', 1971, 'M', 21784), +(102434, 'Timothy', 1971, 'M', 20101), +(102435, 'Charles', 1971, 'M', 19852), +(102436, 'Anthony', 1971, 'M', 19227), +(102437, 'Paul', 1971, 'M', 17478), +(102438, 'Kenneth', 1971, 'M', 14770), +(102439, 'Gregory', 1971, 'M', 14768), +(102440, 'Stephen', 1971, 'M', 13105), +(102441, 'Shawn', 1971, 'M', 12831), +(102442, 'Chad', 1971, 'M', 12135), +(102443, 'Todd', 1971, 'M', 12068), +(102444, 'Ronald', 1971, 'M', 11640), +(102445, 'Edward', 1971, 'M', 11066), +(102446, 'Andrew', 1971, 'M', 10924), +(102447, 'Donald', 1971, 'M', 10875), +(102448, 'Patrick', 1971, 'M', 10809), +(102449, 'Sean', 1971, 'M', 10514), +(102450, 'Keith', 1971, 'M', 9861), +(102451, 'Gary', 1971, 'M', 9193), +(102452, 'Douglas', 1971, 'M', 8741), +(102453, 'Jonathan', 1971, 'M', 8638), +(102454, 'Aaron', 1971, 'M', 8409), +(102455, 'George', 1971, 'M', 8228), +(102456, 'Craig', 1971, 'M', 7965), +(102457, 'Larry', 1971, 'M', 7761), +(102458, 'Jeremy', 1971, 'M', 7489), +(102459, 'Troy', 1971, 'M', 7342), +(102460, 'Peter', 1971, 'M', 7036), +(102461, 'Bryan', 1971, 'M', 6617), +(102462, 'Dennis', 1971, 'M', 6593), +(102463, 'Jerry', 1971, 'M', 6570), +(102464, 'Ryan', 1971, 'M', 6199), +(102465, 'Raymond', 1971, 'M', 6107), +(102466, 'Jeffery', 1971, 'M', 6096), +(102467, 'Frank', 1971, 'M', 6088), +(102468, 'Jose', 1971, 'M', 6001), +(102469, 'Terry', 1971, 'M', 5860), +(102470, 'Adam', 1971, 'M', 5857), +(102471, 'Bradley', 1971, 'M', 5788), +(102472, 'Rodney', 1971, 'M', 5201), +(102473, 'Shane', 1971, 'M', 5092), +(102474, 'Travis', 1971, 'M', 5019), +(102475, 'Tony', 1971, 'M', 4887), +(102476, 'Derek', 1971, 'M', 4678), +(102477, 'Russell', 1971, 'M', 4537), +(102478, 'Marcus', 1971, 'M', 4411), +(102479, 'Samuel', 1971, 'M', 4408), +(102480, 'Randy', 1971, 'M', 4349), +(102481, 'Chris', 1971, 'M', 4295), +(102482, 'Benjamin', 1971, 'M', 4254), +(102483, 'Marc', 1971, 'M', 4211), +(102484, 'Roger', 1971, 'M', 4133), +(102485, 'Carl', 1971, 'M', 4062), +(102486, 'Brent', 1971, 'M', 4054), +(102487, 'Johnny', 1971, 'M', 3939), +(102488, 'Billy', 1971, 'M', 3908), +(102489, 'Phillip', 1971, 'M', 3851), +(102490, 'Corey', 1971, 'M', 3772), +(102491, 'Jon', 1971, 'M', 3715), +(102492, 'Bobby', 1971, 'M', 3650), +(102493, 'Joshua', 1971, 'M', 3649), +(102494, 'Juan', 1971, 'M', 3639), +(102495, 'Danny', 1971, 'M', 3611), +(102496, 'Gerald', 1971, 'M', 3594), +(102497, 'Derrick', 1971, 'M', 3578), +(102498, 'Lawrence', 1971, 'M', 3526), +(102499, 'Joel', 1971, 'M', 3496), +(102500, 'Vincent', 1971, 'M', 3438), +(102501, 'Curtis', 1971, 'M', 3429), +(102502, 'Carlos', 1971, 'M', 3424), +(102503, 'Brett', 1971, 'M', 3358), +(102504, 'Walter', 1971, 'M', 3358), +(102505, 'Wayne', 1971, 'M', 3333), +(102506, 'Jimmy', 1971, 'M', 3317), +(102507, 'Philip', 1971, 'M', 3308), +(102508, 'Brandon', 1971, 'M', 3265), +(102509, 'Jamie', 1971, 'M', 3235), +(102510, 'Erik', 1971, 'M', 3211), +(102511, 'Lance', 1971, 'M', 3178), +(102512, 'Alan', 1971, 'M', 3168), +(102513, 'Darren', 1971, 'M', 3161), +(102514, 'Joe', 1971, 'M', 3150), +(102515, 'Randall', 1971, 'M', 3100), +(102516, 'Justin', 1971, 'M', 3060), +(102517, 'Nathan', 1971, 'M', 3055), +(102518, 'Martin', 1971, 'M', 3018), +(102519, 'Shannon', 1971, 'M', 3006), +(102520, 'Jesse', 1971, 'M', 3001), +(102521, 'Frederick', 1971, 'M', 2974), +(102522, 'Bruce', 1971, 'M', 2969), +(102523, 'Roy', 1971, 'M', 2960), +(102524, 'Antonio', 1971, 'M', 2950), +(102525, 'Henry', 1971, 'M', 2946), +(102526, 'Victor', 1971, 'M', 2891), +(102527, 'Jay', 1971, 'M', 2867), +(102528, 'Willie', 1971, 'M', 2863), +(102529, 'Kyle', 1971, 'M', 2833), +(102530, 'Darrell', 1971, 'M', 2817), +(102531, 'Arthur', 1971, 'M', 2815), +(102532, 'Albert', 1971, 'M', 2682), +(102533, 'Allen', 1971, 'M', 2674), +(102534, 'Ricky', 1971, 'M', 2656), +(102535, 'Christian', 1971, 'M', 2645), +(102536, 'Nicholas', 1971, 'M', 2619), +(102537, 'Micheal', 1971, 'M', 2554), +(102538, 'Dale', 1971, 'M', 2544), +(102539, 'Louis', 1971, 'M', 2521), +(102540, 'Glenn', 1971, 'M', 2478), +(102541, 'Lee', 1971, 'M', 2476), +(102542, 'Andre', 1971, 'M', 2417), +(102543, 'Harold', 1971, 'M', 2390), +(102544, 'Jack', 1971, 'M', 2368), +(102545, 'Steve', 1971, 'M', 2367), +(102546, 'Alexander', 1971, 'M', 2365), +(102547, 'Barry', 1971, 'M', 2365), +(102548, 'Ronnie', 1971, 'M', 2303), +(102549, 'Kelly', 1971, 'M', 2264), +(102550, 'Dean', 1971, 'M', 2246), +(102551, 'Luis', 1971, 'M', 2230), +(102552, 'Brad', 1971, 'M', 2166), +(102553, 'Jeff', 1971, 'M', 2156), +(102554, 'Reginald', 1971, 'M', 2116), +(102555, 'Tyrone', 1971, 'M', 2114), +(102556, 'Ernest', 1971, 'M', 2101), +(102557, 'Tracy', 1971, 'M', 2076), +(102558, 'Eugene', 1971, 'M', 2066), +(102559, 'Leonard', 1971, 'M', 2043), +(102560, 'Eddie', 1971, 'M', 2021), +(102561, 'Ralph', 1971, 'M', 1992), +(102562, 'Tommy', 1971, 'M', 1991), +(102563, 'Cory', 1971, 'M', 1988), +(102564, 'Wesley', 1971, 'M', 1959), +(102565, 'Marvin', 1971, 'M', 1934), +(102566, 'Mike', 1971, 'M', 1925), +(102567, 'Mario', 1971, 'M', 1901), +(102568, 'Kurt', 1971, 'M', 1874), +(102569, 'Howard', 1971, 'M', 1841), +(102570, 'Dwayne', 1971, 'M', 1830), +(102571, 'Stanley', 1971, 'M', 1770), +(102572, 'Kirk', 1971, 'M', 1746), +(102573, 'Jerome', 1971, 'M', 1709), +(102574, 'Greg', 1971, 'M', 1704), +(102575, 'Jody', 1971, 'M', 1703), +(102576, 'Maurice', 1971, 'M', 1702), +(102577, 'Manuel', 1971, 'M', 1685), +(102578, 'Theodore', 1971, 'M', 1668), +(102579, 'Ricardo', 1971, 'M', 1667), +(102580, 'Duane', 1971, 'M', 1616), +(102581, 'Calvin', 1971, 'M', 1593), +(102582, 'Daryl', 1971, 'M', 1592), +(102583, 'Damon', 1971, 'M', 1583), +(102584, 'Jesus', 1971, 'M', 1583), +(102585, 'Melvin', 1971, 'M', 1582), +(102586, 'Gabriel', 1971, 'M', 1581), +(102587, 'Glen', 1971, 'M', 1530), +(102588, 'Harry', 1971, 'M', 1529), +(102589, 'Edwin', 1971, 'M', 1526), +(102590, 'Adrian', 1971, 'M', 1507), +(102591, 'Earl', 1971, 'M', 1503), +(102592, 'Clinton', 1971, 'M', 1483), +(102593, 'Miguel', 1971, 'M', 1473), +(102594, 'Dustin', 1971, 'M', 1471), +(102595, 'Neil', 1971, 'M', 1427), +(102596, 'Warren', 1971, 'M', 1393), +(102597, 'Roberto', 1971, 'M', 1390), +(102598, 'Clifford', 1971, 'M', 1379), +(102599, 'Clarence', 1971, 'M', 1372), +(102600, 'Alex', 1971, 'M', 1371), +(102601, 'Alfred', 1971, 'M', 1370), +(102602, 'Norman', 1971, 'M', 1343), +(102603, 'Mitchell', 1971, 'M', 1342), +(102604, 'Karl', 1971, 'M', 1322), +(102605, 'Ruben', 1971, 'M', 1320), +(102606, 'Darin', 1971, 'M', 1292), +(102607, 'Fred', 1971, 'M', 1280), +(102608, 'Lonnie', 1971, 'M', 1271), +(102609, 'Ray', 1971, 'M', 1266), +(102610, 'Darrin', 1971, 'M', 1263), +(102611, 'Terrence', 1971, 'M', 1240), +(102612, 'Francisco', 1971, 'M', 1225), +(102613, 'Nathaniel', 1971, 'M', 1212), +(102614, 'Francis', 1971, 'M', 1210), +(102615, 'Geoffrey', 1971, 'M', 1198), +(102616, 'Ian', 1971, 'M', 1198), +(102617, 'Hector', 1971, 'M', 1173), +(102618, 'Bernard', 1971, 'M', 1169), +(102619, 'Wade', 1971, 'M', 1155), +(102620, 'Jorge', 1971, 'M', 1149), +(102621, 'Casey', 1971, 'M', 1127), +(102622, 'Franklin', 1971, 'M', 1127), +(102623, 'Scotty', 1971, 'M', 1118), +(102624, 'Raul', 1971, 'M', 1116), +(102625, 'Terrance', 1971, 'M', 1101), +(102626, 'Dana', 1971, 'M', 1098), +(102627, 'Trevor', 1971, 'M', 1095), +(102628, 'Don', 1971, 'M', 1093), +(102629, 'Shaun', 1971, 'M', 1087), +(102630, 'Byron', 1971, 'M', 1085), +(102631, 'Jared', 1971, 'M', 1074), +(102632, 'Joey', 1971, 'M', 1071), +(102633, 'Oscar', 1971, 'M', 1066), +(102634, 'Darryl', 1971, 'M', 1065), +(102635, 'Gilbert', 1971, 'M', 1063), +(102636, 'Jacob', 1971, 'M', 1057), +(102637, 'Heath', 1971, 'M', 1053), +(102638, 'Roderick', 1971, 'M', 1053), +(102639, 'Tim', 1971, 'M', 1050), +(102640, 'Leon', 1971, 'M', 1042), +(102641, 'Alvin', 1971, 'M', 1033), +(102642, 'Jaime', 1971, 'M', 1032), +(102643, 'Toby', 1971, 'M', 1032), +(102644, 'Stacy', 1971, 'M', 1027), +(102645, 'Fredrick', 1971, 'M', 1023), +(102646, 'Jermaine', 1971, 'M', 1015), +(102647, 'Leroy', 1971, 'M', 1014), +(102648, 'Kent', 1971, 'M', 1003), +(102649, 'Angel', 1971, 'M', 999), +(102650, 'Ramon', 1971, 'M', 997), +(102651, 'Leslie', 1971, 'M', 987), +(102652, 'Clayton', 1971, 'M', 969), +(102653, 'Javier', 1971, 'M', 967), +(102654, 'Herbert', 1971, 'M', 951), +(102655, 'Lloyd', 1971, 'M', 947), +(102656, 'Vernon', 1971, 'M', 943), +(102657, 'Jim', 1971, 'M', 935), +(102658, 'Lewis', 1971, 'M', 935), +(102659, 'Mathew', 1971, 'M', 935), +(102660, 'Gordon', 1971, 'M', 915), +(102661, 'Pedro', 1971, 'M', 914), +(102662, 'Dwight', 1971, 'M', 907), +(102663, 'Dan', 1971, 'M', 903), +(102664, 'Donnie', 1971, 'M', 888), +(102665, 'Kelvin', 1971, 'M', 880), +(102666, 'Gene', 1971, 'M', 878), +(102667, 'Kerry', 1971, 'M', 878), +(102668, 'Bill', 1971, 'M', 877), +(102669, 'Tom', 1971, 'M', 866), +(102670, 'Guy', 1971, 'M', 864), +(102671, 'Rafael', 1971, 'M', 864), +(102672, 'Cedric', 1971, 'M', 861), +(102673, 'Rick', 1971, 'M', 860), +(102674, 'Ross', 1971, 'M', 858), +(102675, 'Andy', 1971, 'M', 846), +(102676, 'Trent', 1971, 'M', 837), +(102677, 'Fernando', 1971, 'M', 822), +(102678, 'Marty', 1971, 'M', 822), +(102679, 'Matt', 1971, 'M', 807), +(102680, 'Ted', 1971, 'M', 801), +(102681, 'Armando', 1971, 'M', 789), +(102682, 'Stuart', 1971, 'M', 786), +(102683, 'Johnnie', 1971, 'M', 782), +(102684, 'Seth', 1971, 'M', 781), +(102685, 'Allan', 1971, 'M', 780), +(102686, 'Nelson', 1971, 'M', 774), +(102687, 'Gregg', 1971, 'M', 773), +(102688, 'Jimmie', 1971, 'M', 771), +(102689, 'Erick', 1971, 'M', 770), +(102690, 'Marlon', 1971, 'M', 766), +(102691, 'Jessie', 1971, 'M', 760), +(102692, 'Rene', 1971, 'M', 757), +(102693, 'Marco', 1971, 'M', 751), +(102694, 'Floyd', 1971, 'M', 736), +(102695, 'Perry', 1971, 'M', 736), +(102696, 'Jackie', 1971, 'M', 735), +(102697, 'Bret', 1971, 'M', 734), +(102698, 'Eduardo', 1971, 'M', 734), +(102699, 'Tyler', 1971, 'M', 723), +(102700, 'Bryant', 1971, 'M', 719), +(102701, 'Isaac', 1971, 'M', 713), +(102702, 'Zachary', 1971, 'M', 704), +(102703, 'Charlie', 1971, 'M', 695), +(102704, 'Ivan', 1971, 'M', 695), +(102705, 'Alejandro', 1971, 'M', 680), +(102706, 'Clint', 1971, 'M', 677), +(102707, 'Orlando', 1971, 'M', 677), +(102708, 'Marshall', 1971, 'M', 675), +(102709, 'Edgar', 1971, 'M', 674), +(102710, 'Alberto', 1971, 'M', 669), +(102711, 'Ron', 1971, 'M', 667), +(102712, 'Colin', 1971, 'M', 662), +(102713, 'Grant', 1971, 'M', 662), +(102714, 'Robbie', 1971, 'M', 658), +(102715, 'Leo', 1971, 'M', 653), +(102716, 'Julian', 1971, 'M', 648), +(102717, 'Clifton', 1971, 'M', 642), +(102718, 'Noel', 1971, 'M', 641), +(102719, 'Roland', 1971, 'M', 640), +(102720, 'Scottie', 1971, 'M', 634), +(102721, 'Lester', 1971, 'M', 629), +(102722, 'Spencer', 1971, 'M', 623), +(102723, 'Timmy', 1971, 'M', 618), +(102724, 'Felix', 1971, 'M', 605), +(102725, 'Garrett', 1971, 'M', 605), +(102726, 'Julio', 1971, 'M', 605), +(102727, 'Kenny', 1971, 'M', 604), +(102728, 'Neal', 1971, 'M', 601), +(102729, 'Carlton', 1971, 'M', 598), +(102730, 'Alfredo', 1971, 'M', 597), +(102731, 'Milton', 1971, 'M', 592), +(102732, 'Sergio', 1971, 'M', 590), +(102733, 'Dominic', 1971, 'M', 585), +(102734, 'Freddie', 1971, 'M', 585), +(102735, 'Ben', 1971, 'M', 578), +(102736, 'Johnathan', 1971, 'M', 578), +(102737, 'Jonathon', 1971, 'M', 575), +(102738, 'Scot', 1971, 'M', 575), +(102739, 'Lorenzo', 1971, 'M', 573), +(102740, 'Frankie', 1971, 'M', 572), +(102741, 'Bradford', 1971, 'M', 570), +(102742, 'Chadwick', 1971, 'M', 566), +(102743, 'Nick', 1971, 'M', 564), +(102744, 'Robin', 1971, 'M', 563), +(102745, 'Arturo', 1971, 'M', 555), +(102746, 'Evan', 1971, 'M', 550), +(102747, 'Dexter', 1971, 'M', 548), +(102748, 'Herman', 1971, 'M', 546), +(102749, 'Dewayne', 1971, 'M', 545), +(102750, 'Brendan', 1971, 'M', 544), +(102751, 'Cary', 1971, 'M', 544), +(102752, 'Preston', 1971, 'M', 543), +(102753, 'Demetrius', 1971, 'M', 541), +(102754, 'Sam', 1971, 'M', 541), +(102755, 'Enrique', 1971, 'M', 540), +(102756, 'Omar', 1971, 'M', 538), +(102757, 'Terence', 1971, 'M', 538), +(102758, 'Cecil', 1971, 'M', 536), +(102759, 'Luke', 1971, 'M', 533), +(102760, 'Wendell', 1971, 'M', 532), +(102761, 'Angelo', 1971, 'M', 529), +(102762, 'Rickey', 1971, 'M', 527), +(102763, 'Stacey', 1971, 'M', 524), +(102764, 'Lamont', 1971, 'M', 523), +(102765, 'Clyde', 1971, 'M', 522), +(102766, 'Clay', 1971, 'M', 520), +(102767, 'Malcolm', 1971, 'M', 519), +(102768, 'Gerard', 1971, 'M', 518), +(102769, 'Chester', 1971, 'M', 508), +(102770, 'Jarrod', 1971, 'M', 508), +(102771, 'Sammy', 1971, 'M', 505), +(102772, 'Ernesto', 1971, 'M', 503), +(102773, 'Cameron', 1971, 'M', 502), +(102774, 'Arnold', 1971, 'M', 500), +(102775, 'Devin', 1971, 'M', 496), +(102776, 'Dion', 1971, 'M', 496), +(102777, 'Harvey', 1971, 'M', 496), +(102778, 'Ty', 1971, 'M', 493), +(102779, 'Donovan', 1971, 'M', 479), +(102780, 'Noah', 1971, 'M', 478), +(102781, 'Blake', 1971, 'M', 476), +(102782, 'Darnell', 1971, 'M', 474), +(102783, 'Rex', 1971, 'M', 473), +(102784, 'Brady', 1971, 'M', 472), +(102785, 'Israel', 1971, 'M', 470), +(102786, 'Loren', 1971, 'M', 470), +(102787, 'Salvatore', 1971, 'M', 468), +(102788, 'Kristopher', 1971, 'M', 462), +(102789, 'Bart', 1971, 'M', 460), +(102790, 'Gerardo', 1971, 'M', 460), +(102791, 'Rudy', 1971, 'M', 455), +(102792, 'Randal', 1971, 'M', 451), +(102793, 'Everett', 1971, 'M', 445), +(102794, 'Sidney', 1971, 'M', 445), +(102795, 'Salvador', 1971, 'M', 440), +(102796, 'Monte', 1971, 'M', 438), +(102797, 'Randolph', 1971, 'M', 436), +(102798, 'Bryon', 1971, 'M', 434), +(102799, 'Hugh', 1971, 'M', 434), +(102800, 'Cesar', 1971, 'M', 433), +(102801, 'Jayson', 1971, 'M', 430), +(102802, 'Kendall', 1971, 'M', 429), +(102803, 'Myron', 1971, 'M', 426), +(102804, 'Claude', 1971, 'M', 423), +(102805, 'Virgil', 1971, 'M', 422), +(102806, 'Antoine', 1971, 'M', 420), +(102807, 'Oliver', 1971, 'M', 419), +(102808, 'Alonzo', 1971, 'M', 418), +(102809, 'Alfonso', 1971, 'M', 417), +(102810, 'Otis', 1971, 'M', 415), +(102811, 'Jamal', 1971, 'M', 414), +(102812, 'Cody', 1971, 'M', 412), +(102813, 'Dave', 1971, 'M', 412), +(102814, 'Garry', 1971, 'M', 412), +(102815, 'Max', 1971, 'M', 408), +(102816, 'Shad', 1971, 'M', 406), +(102817, 'Kris', 1971, 'M', 396), +(102818, 'Lyle', 1971, 'M', 395), +(102819, 'Andres', 1971, 'M', 394), +(102820, 'Darrick', 1971, 'M', 393), +(102821, 'Roman', 1971, 'M', 390), +(102822, 'Lamar', 1971, 'M', 389), +(102823, 'Quentin', 1971, 'M', 385), +(102824, 'Sherman', 1971, 'M', 383), +(102825, 'Sheldon', 1971, 'M', 382), +(102826, 'Curt', 1971, 'M', 378), +(102827, 'Tracey', 1971, 'M', 378), +(102828, 'Damian', 1971, 'M', 372), +(102829, 'Kendrick', 1971, 'M', 372), +(102830, 'Teddy', 1971, 'M', 371), +(102831, 'Morris', 1971, 'M', 370), +(102832, 'Benny', 1971, 'M', 369), +(102833, 'Ethan', 1971, 'M', 367), +(102834, 'Julius', 1971, 'M', 366), +(102835, 'Abraham', 1971, 'M', 364), +(102836, 'Alton', 1971, 'M', 364), +(102837, 'Earnest', 1971, 'M', 363), +(102838, 'Gilberto', 1971, 'M', 363), +(102839, 'Marcos', 1971, 'M', 363), +(102840, 'Ken', 1971, 'M', 362), +(102841, 'Pete', 1971, 'M', 360), +(102842, 'Stephan', 1971, 'M', 358), +(102843, 'Wallace', 1971, 'M', 357), +(102844, 'Pablo', 1971, 'M', 355), +(102845, 'Rusty', 1971, 'M', 355), +(102846, 'Robby', 1971, 'M', 354), +(102847, 'Darrel', 1971, 'M', 352), +(102848, 'Rodolfo', 1971, 'M', 351), +(102849, 'Carey', 1971, 'M', 350), +(102850, 'Dallas', 1971, 'M', 350), +(102851, 'Rolando', 1971, 'M', 348), +(102852, 'Terrell', 1971, 'M', 345), +(102853, 'Erich', 1971, 'M', 344), +(102854, 'Marion', 1971, 'M', 344), +(102855, 'Stewart', 1971, 'M', 343), +(102856, 'Mickey', 1971, 'M', 341), +(102857, 'Lynn', 1971, 'M', 340), +(102858, 'Doug', 1971, 'M', 339), +(102859, 'Vance', 1971, 'M', 339), +(102860, 'Ira', 1971, 'M', 337), +(102861, 'Simon', 1971, 'M', 337), +(102862, 'Josh', 1971, 'M', 326), +(102863, 'Bob', 1971, 'M', 325), +(102864, 'Clark', 1971, 'M', 324), +(102865, 'Jeremiah', 1971, 'M', 322), +(102866, 'Thaddeus', 1971, 'M', 321), +(102867, 'Jerald', 1971, 'M', 320), +(102868, 'Archie', 1971, 'M', 319); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(102869, 'Erin', 1971, 'M', 319), +(102870, 'Luther', 1971, 'M', 318), +(102871, 'Forrest', 1971, 'M', 316), +(102872, 'Jamey', 1971, 'M', 316), +(102873, 'Drew', 1971, 'M', 315), +(102874, 'Felipe', 1971, 'M', 313), +(102875, 'Guillermo', 1971, 'M', 313), +(102876, 'Blaine', 1971, 'M', 312), +(102877, 'Morgan', 1971, 'M', 311), +(102878, 'Abel', 1971, 'M', 309), +(102879, 'Bennie', 1971, 'M', 308), +(102880, 'Cornelius', 1971, 'M', 305), +(102881, 'Willard', 1971, 'M', 303), +(102882, 'Daren', 1971, 'M', 301), +(102883, 'Shon', 1971, 'M', 301), +(102884, 'Monty', 1971, 'M', 300), +(102885, 'Jean', 1971, 'M', 294), +(102886, 'Reynaldo', 1971, 'M', 292), +(102887, 'Sylvester', 1971, 'M', 292), +(102888, 'Jeffry', 1971, 'M', 290), +(102889, 'Jordan', 1971, 'M', 290), +(102890, 'Kirby', 1971, 'M', 290), +(102891, 'Ismael', 1971, 'M', 289), +(102892, 'Edmund', 1971, 'M', 285), +(102893, 'Kurtis', 1971, 'M', 282), +(102894, 'Gustavo', 1971, 'M', 280), +(102895, 'Stevie', 1971, 'M', 279), +(102896, 'Dirk', 1971, 'M', 275), +(102897, 'Rob', 1971, 'M', 274), +(102898, 'Rudolph', 1971, 'M', 274), +(102899, 'Elmer', 1971, 'M', 271), +(102900, 'Xavier', 1971, 'M', 271), +(102901, 'Guadalupe', 1971, 'M', 270), +(102902, 'Wilson', 1971, 'M', 270), +(102903, 'Micah', 1971, 'M', 269), +(102904, 'Chuck', 1971, 'M', 268), +(102905, 'Donnell', 1971, 'M', 268), +(102906, 'Eli', 1971, 'M', 268), +(102907, 'Jefferson', 1971, 'M', 267), +(102908, 'Kim', 1971, 'M', 267), +(102909, 'Thad', 1971, 'M', 266), +(102910, 'Austin', 1971, 'M', 265), +(102911, 'Derick', 1971, 'M', 265), +(102912, 'Hans', 1971, 'M', 265), +(102913, 'Bryce', 1971, 'M', 264), +(102914, 'Elliott', 1971, 'M', 264), +(102915, 'Grady', 1971, 'M', 264), +(102916, 'Ashley', 1971, 'M', 263), +(102917, 'Lionel', 1971, 'M', 262), +(102918, 'Conrad', 1971, 'M', 261), +(102919, 'Darius', 1971, 'M', 259), +(102920, 'Dylan', 1971, 'M', 258), +(102921, 'Reuben', 1971, 'M', 258), +(102922, 'Roosevelt', 1971, 'M', 258), +(102923, 'Stefan', 1971, 'M', 257), +(102924, 'Dominick', 1971, 'M', 255), +(102925, 'Horace', 1971, 'M', 255), +(102926, 'Rogelio', 1971, 'M', 255), +(102927, 'Willis', 1971, 'M', 253), +(102928, 'Deon', 1971, 'M', 251), +(102929, 'Delbert', 1971, 'M', 250), +(102930, 'Leland', 1971, 'M', 249), +(102931, 'Marlin', 1971, 'M', 249), +(102932, 'Owen', 1971, 'M', 249), +(102933, 'Tommie', 1971, 'M', 246), +(102934, 'Rodger', 1971, 'M', 244), +(102935, 'Hubert', 1971, 'M', 242), +(102936, 'Sterling', 1971, 'M', 242), +(102937, 'Tyson', 1971, 'M', 241), +(102938, 'Rocky', 1971, 'M', 237), +(102939, 'Trenton', 1971, 'M', 234), +(102940, 'Jess', 1971, 'M', 233), +(102941, 'Tomas', 1971, 'M', 231), +(102942, 'Laurence', 1971, 'M', 230), +(102943, 'Jonas', 1971, 'M', 229), +(102944, 'Ramiro', 1971, 'M', 229), +(102945, 'Royce', 1971, 'M', 229), +(102946, 'Fabian', 1971, 'M', 227), +(102947, 'Courtney', 1971, 'M', 225), +(102948, 'Desmond', 1971, 'M', 225), +(102949, 'Elias', 1971, 'M', 223), +(102950, 'Donny', 1971, 'M', 222), +(102951, 'Emanuel', 1971, 'M', 222), +(102952, 'Kristian', 1971, 'M', 221), +(102953, 'Dewey', 1971, 'M', 220), +(102954, 'Aric', 1971, 'M', 219), +(102955, 'Brant', 1971, 'M', 219), +(102956, 'Ervin', 1971, 'M', 219), +(102957, 'Gavin', 1971, 'M', 219), +(102958, 'Quincy', 1971, 'M', 219), +(102959, 'Aubrey', 1971, 'M', 218), +(102960, 'Denny', 1971, 'M', 218), +(102961, 'Leonardo', 1971, 'M', 218), +(102962, 'Buddy', 1971, 'M', 215), +(102963, 'Efrain', 1971, 'M', 215), +(102964, 'Ernie', 1971, 'M', 214), +(102965, 'Dino', 1971, 'M', 213), +(102966, 'Doyle', 1971, 'M', 213), +(102967, 'Van', 1971, 'M', 213), +(102968, 'Darian', 1971, 'M', 212), +(102969, 'Lowell', 1971, 'M', 212), +(102970, 'Nicolas', 1971, 'M', 212), +(102971, 'Joesph', 1971, 'M', 211), +(102972, 'Vaughn', 1971, 'M', 210), +(102973, 'Colby', 1971, 'M', 209), +(102974, 'Amos', 1971, 'M', 208), +(102975, 'Bert', 1971, 'M', 208), +(102976, 'Kory', 1971, 'M', 208), +(102977, 'Shayne', 1971, 'M', 208), +(102978, 'Will', 1971, 'M', 208), +(102979, 'Winston', 1971, 'M', 208), +(102980, 'Dane', 1971, 'M', 207), +(102981, 'Graham', 1971, 'M', 206), +(102982, 'Miles', 1971, 'M', 206), +(102983, 'Sonny', 1971, 'M', 206), +(102984, 'Tod', 1971, 'M', 205), +(102985, 'Ellis', 1971, 'M', 204), +(102986, 'Hugo', 1971, 'M', 204), +(102987, 'Rory', 1971, 'M', 204), +(102988, 'Carlo', 1971, 'M', 203), +(102989, 'Aron', 1971, 'M', 201), +(102990, 'Lucas', 1971, 'M', 201), +(102991, 'Carter', 1971, 'M', 200), +(102992, 'Jarrett', 1971, 'M', 200), +(102993, 'Nolan', 1971, 'M', 200), +(102994, 'Reggie', 1971, 'M', 200), +(102995, 'Gerry', 1971, 'M', 199), +(102996, 'Moses', 1971, 'M', 199), +(102997, 'Dante', 1971, 'M', 198), +(102998, 'Elbert', 1971, 'M', 198), +(102999, 'Levi', 1971, 'M', 198), +(103000, 'Chance', 1971, 'M', 197), +(103001, 'Wilbert', 1971, 'M', 197), +(103002, 'Alphonso', 1971, 'M', 196), +(103003, 'Freddy', 1971, 'M', 196), +(103004, 'Rufus', 1971, 'M', 196), +(103005, 'Elijah', 1971, 'M', 195), +(103006, 'Rodrick', 1971, 'M', 195), +(103007, 'Jennifer', 1971, 'M', 194), +(103008, 'Lane', 1971, 'M', 194), +(103009, 'Anton', 1971, 'M', 193), +(103010, 'Louie', 1971, 'M', 193), +(103011, 'Santiago', 1971, 'M', 193), +(103012, 'Saul', 1971, 'M', 193), +(103013, 'Wilbur', 1971, 'M', 193), +(103014, 'Devon', 1971, 'M', 192), +(103015, 'Darwin', 1971, 'M', 191), +(103016, 'Galen', 1971, 'M', 191), +(103017, 'Homer', 1971, 'M', 190), +(103018, 'Rico', 1971, 'M', 190), +(103019, 'Cleveland', 1971, 'M', 189), +(103020, 'Shelby', 1971, 'M', 189), +(103021, 'Percy', 1971, 'M', 188), +(103022, 'Wilfredo', 1971, 'M', 188), +(103023, 'Dorian', 1971, 'M', 187), +(103024, 'Mack', 1971, 'M', 186), +(103025, 'Raphael', 1971, 'M', 186), +(103026, 'Santos', 1971, 'M', 186), +(103027, 'Sebastian', 1971, 'M', 186), +(103028, 'Boyd', 1971, 'M', 185), +(103029, 'Emilio', 1971, 'M', 185), +(103030, 'Tad', 1971, 'M', 184), +(103031, 'Lincoln', 1971, 'M', 182), +(103032, 'Joaquin', 1971, 'M', 180), +(103033, 'Kraig', 1971, 'M', 180), +(103034, 'Marcel', 1971, 'M', 180), +(103035, 'Jake', 1971, 'M', 179), +(103036, 'Brock', 1971, 'M', 177), +(103037, 'Solomon', 1971, 'M', 177), +(103038, 'Pierre', 1971, 'M', 176), +(103039, 'Russel', 1971, 'M', 176), +(103040, 'Beau', 1971, 'M', 175), +(103041, 'Cornell', 1971, 'M', 175), +(103042, 'Jamison', 1971, 'M', 175), +(103043, 'Brenton', 1971, 'M', 173), +(103044, 'Collin', 1971, 'M', 172), +(103045, 'Vince', 1971, 'M', 172), +(103046, 'Jarvis', 1971, 'M', 170), +(103047, 'Denis', 1971, 'M', 168), +(103048, 'Kip', 1971, 'M', 168), +(103049, 'Rickie', 1971, 'M', 168), +(103050, 'Shelton', 1971, 'M', 167), +(103051, 'Ari', 1971, 'M', 166), +(103052, 'Gino', 1971, 'M', 166), +(103053, 'Mason', 1971, 'M', 166), +(103054, 'Esteban', 1971, 'M', 165), +(103055, 'Michel', 1971, 'M', 165), +(103056, 'Garland', 1971, 'M', 164), +(103057, 'Avery', 1971, 'M', 163), +(103058, 'Brooks', 1971, 'M', 163), +(103059, 'Edmond', 1971, 'M', 163), +(103060, 'Brain', 1971, 'M', 162), +(103061, 'Elliot', 1971, 'M', 162), +(103062, 'Darron', 1971, 'M', 161), +(103063, 'Jonah', 1971, 'M', 161), +(103064, 'Jeromy', 1971, 'M', 159), +(103065, 'Bradly', 1971, 'M', 158), +(103066, 'Emmanuel', 1971, 'M', 158), +(103067, 'Reid', 1971, 'M', 158), +(103068, 'Alexis', 1971, 'M', 157), +(103069, 'Jerrod', 1971, 'M', 157), +(103070, 'Merle', 1971, 'M', 157), +(103071, 'Benito', 1971, 'M', 156), +(103072, 'Humberto', 1971, 'M', 156), +(103073, 'Rod', 1971, 'M', 156), +(103074, 'Domingo', 1971, 'M', 155), +(103075, 'Quinton', 1971, 'M', 155), +(103076, 'Ronny', 1971, 'M', 155), +(103077, 'Sammie', 1971, 'M', 155), +(103078, 'Vicente', 1971, 'M', 155), +(103079, 'Jacques', 1971, 'M', 154), +(103080, 'Rhett', 1971, 'M', 154), +(103081, 'Adolfo', 1971, 'M', 153), +(103082, 'Elton', 1971, 'M', 153), +(103083, 'Theron', 1971, 'M', 153), +(103084, 'Andrea', 1971, 'M', 152), +(103085, 'Al', 1971, 'M', 151), +(103086, 'Blair', 1971, 'M', 151), +(103087, 'Emmett', 1971, 'M', 151), +(103088, 'Randell', 1971, 'M', 151), +(103089, 'Torrey', 1971, 'M', 151), +(103090, 'Irvin', 1971, 'M', 150), +(103091, 'Michelle', 1971, 'M', 150), +(103092, 'Robb', 1971, 'M', 149), +(103093, 'Rocco', 1971, 'M', 149), +(103094, 'Damien', 1971, 'M', 148), +(103095, 'Quinn', 1971, 'M', 148), +(103096, 'Antony', 1971, 'M', 146), +(103097, 'Daron', 1971, 'M', 146), +(103098, 'Garth', 1971, 'M', 146), +(103099, 'Lon', 1971, 'M', 146), +(103100, 'Wilfred', 1971, 'M', 146), +(103101, 'Carroll', 1971, 'M', 145), +(103102, 'Phil', 1971, 'M', 145), +(103103, 'Woodrow', 1971, 'M', 145), +(103104, 'Jed', 1971, 'M', 144), +(103105, 'Deron', 1971, 'M', 143), +(103106, 'Jan', 1971, 'M', 143), +(103107, 'Nicky', 1971, 'M', 143), +(103108, 'Noe', 1971, 'M', 143), +(103109, 'Richie', 1971, 'M', 143), +(103110, 'Wyatt', 1971, 'M', 143), +(103111, 'Taylor', 1971, 'M', 142), +(103112, 'Jasen', 1971, 'M', 141), +(103113, 'Kelley', 1971, 'M', 141), +(103114, 'Danial', 1971, 'M', 139), +(103115, 'Ignacio', 1971, 'M', 139), +(103116, 'Jude', 1971, 'M', 139), +(103117, 'Pat', 1971, 'M', 139), +(103118, 'Arron', 1971, 'M', 137), +(103119, 'Jerrold', 1971, 'M', 137), +(103120, 'Ali', 1971, 'M', 136), +(103121, 'Damion', 1971, 'M', 136), +(103122, 'Norris', 1971, 'M', 136), +(103123, 'Kennith', 1971, 'M', 135), +(103124, 'Korey', 1971, 'M', 135), +(103125, 'Vito', 1971, 'M', 135), +(103126, 'Billie', 1971, 'M', 134), +(103127, 'Harley', 1971, 'M', 134), +(103128, 'Lonny', 1971, 'M', 134), +(103129, 'Chet', 1971, 'M', 133), +(103130, 'Frederic', 1971, 'M', 133), +(103131, 'Keven', 1971, 'M', 133), +(103132, 'Malik', 1971, 'M', 132), +(103133, 'Tobin', 1971, 'M', 132), +(103134, 'Cliff', 1971, 'M', 131), +(103135, 'Eddy', 1971, 'M', 131), +(103136, 'Mauricio', 1971, 'M', 131), +(103137, 'Elvis', 1971, 'M', 130), +(103138, 'Lisa', 1971, 'M', 130), +(103139, 'Zane', 1971, 'M', 130), +(103140, 'Brice', 1971, 'M', 129), +(103141, 'Moises', 1971, 'M', 129), +(103142, 'Agustin', 1971, 'M', 128), +(103143, 'Paris', 1971, 'M', 128), +(103144, 'Reed', 1971, 'M', 128), +(103145, 'Edwardo', 1971, 'M', 127), +(103146, 'Carmen', 1971, 'M', 126), +(103147, 'Heriberto', 1971, 'M', 126), +(103148, 'Mikel', 1971, 'M', 126), +(103149, 'Elvin', 1971, 'M', 125), +(103150, 'Hal', 1971, 'M', 125), +(103151, 'Barton', 1971, 'M', 124), +(103152, 'Gus', 1971, 'M', 124), +(103153, 'Tobias', 1971, 'M', 124), +(103154, 'Markus', 1971, 'M', 123), +(103155, 'Jefferey', 1971, 'M', 122), +(103156, 'Douglass', 1971, 'M', 121), +(103157, 'Lenny', 1971, 'M', 121), +(103158, 'Marcellus', 1971, 'M', 121), +(103159, 'Tyron', 1971, 'M', 121), +(103160, 'Burton', 1971, 'M', 120), +(103161, 'Dax', 1971, 'M', 120), +(103162, 'Jammie', 1971, 'M', 120), +(103163, 'Daryle', 1971, 'M', 119), +(103164, 'Dusty', 1971, 'M', 119), +(103165, 'Sandy', 1971, 'M', 119), +(103166, 'Torrance', 1971, 'M', 119), +(103167, 'Adan', 1971, 'M', 118), +(103168, 'August', 1971, 'M', 118), +(103169, 'Brook', 1971, 'M', 118), +(103170, 'Davis', 1971, 'M', 118), +(103171, 'Eldon', 1971, 'M', 118), +(103172, 'Errol', 1971, 'M', 118), +(103173, 'Judd', 1971, 'M', 118), +(103174, 'Bobbie', 1971, 'M', 117), +(103175, 'Ulysses', 1971, 'M', 117), +(103176, 'Augustine', 1971, 'M', 116), +(103177, 'Kenton', 1971, 'M', 116), +(103178, 'Britt', 1971, 'M', 115), +(103179, 'Leif', 1971, 'M', 115), +(103180, 'Tory', 1971, 'M', 115), +(103181, 'Barrett', 1971, 'M', 114), +(103182, 'Junior', 1971, 'M', 114), +(103183, 'Ned', 1971, 'M', 114), +(103184, 'Tate', 1971, 'M', 113), +(103185, 'Sanford', 1971, 'M', 112), +(103186, 'Waylon', 1971, 'M', 112), +(103187, 'Hank', 1971, 'M', 111), +(103188, 'Nickolas', 1971, 'M', 111), +(103189, 'Harlan', 1971, 'M', 110), +(103190, 'Loyd', 1971, 'M', 110), +(103191, 'Eloy', 1971, 'M', 109), +(103192, 'Erwin', 1971, 'M', 109), +(103193, 'Jackson', 1971, 'M', 109), +(103194, 'Judson', 1971, 'M', 109), +(103195, 'Gregorio', 1971, 'M', 108), +(103196, 'Jasper', 1971, 'M', 108), +(103197, 'Alvaro', 1971, 'M', 107), +(103198, 'Caleb', 1971, 'M', 106), +(103199, 'Landon', 1971, 'M', 106), +(103200, 'Bernardo', 1971, 'M', 105), +(103201, 'Brendon', 1971, 'M', 105), +(103202, 'Kenyatta', 1971, 'M', 105), +(103203, 'Alec', 1971, 'M', 104), +(103204, 'Denver', 1971, 'M', 103), +(103205, 'Diego', 1971, 'M', 103), +(103206, 'Ed', 1971, 'M', 103), +(103207, 'Fidel', 1971, 'M', 103), +(103208, 'Irving', 1971, 'M', 103), +(103209, 'Myles', 1971, 'M', 103), +(103210, 'Russ', 1971, 'M', 103), +(103211, 'Terrill', 1971, 'M', 103), +(103212, 'Kimberly', 1971, 'M', 102), +(103213, 'Dwain', 1971, 'M', 101), +(103214, 'Linwood', 1971, 'M', 101), +(103215, 'Trey', 1971, 'M', 101), +(103216, 'Barney', 1971, 'M', 100), +(103217, 'Coy', 1971, 'M', 100), +(103218, 'Edgardo', 1971, 'M', 100), +(103219, 'Emil', 1971, 'M', 100), +(103220, 'Garrick', 1971, 'M', 100), +(103221, 'Hunter', 1971, 'M', 100), +(103222, 'Issac', 1971, 'M', 100), +(103223, 'Mitchel', 1971, 'M', 100), +(103224, 'Whitney', 1971, 'M', 100), +(103225, 'Jennifer', 1972, 'F', 63606), +(103226, 'Michelle', 1972, 'F', 29285), +(103227, 'Lisa', 1972, 'F', 27546), +(103228, 'Kimberly', 1972, 'F', 26297), +(103229, 'Amy', 1972, 'F', 25868), +(103230, 'Angela', 1972, 'F', 23554), +(103231, 'Melissa', 1972, 'F', 22497), +(103232, 'Stephanie', 1972, 'F', 16886), +(103233, 'Heather', 1972, 'F', 16324), +(103234, 'Nicole', 1972, 'F', 15752), +(103235, 'Tammy', 1972, 'F', 14210), +(103236, 'Julie', 1972, 'F', 14073), +(103237, 'Mary', 1972, 'F', 13762), +(103238, 'Rebecca', 1972, 'F', 13254), +(103239, 'Elizabeth', 1972, 'F', 12185), +(103240, 'Christine', 1972, 'F', 11993), +(103241, 'Laura', 1972, 'F', 11774), +(103242, 'Tina', 1972, 'F', 11517), +(103243, 'Tracy', 1972, 'F', 11437), +(103244, 'Dawn', 1972, 'F', 11339), +(103245, 'Karen', 1972, 'F', 11188), +(103246, 'Shannon', 1972, 'F', 10963), +(103247, 'Kelly', 1972, 'F', 10944), +(103248, 'Susan', 1972, 'F', 10575), +(103249, 'Cynthia', 1972, 'F', 10172), +(103250, 'Christina', 1972, 'F', 10171), +(103251, 'Patricia', 1972, 'F', 9603), +(103252, 'Lori', 1972, 'F', 9439), +(103253, 'Wendy', 1972, 'F', 8531), +(103254, 'Andrea', 1972, 'F', 8015), +(103255, 'Sandra', 1972, 'F', 7910), +(103256, 'Maria', 1972, 'F', 7689), +(103257, 'Stacy', 1972, 'F', 7605), +(103258, 'Pamela', 1972, 'F', 7480), +(103259, 'Denise', 1972, 'F', 7384), +(103260, 'Michele', 1972, 'F', 7377), +(103261, 'Tonya', 1972, 'F', 7245), +(103262, 'Tara', 1972, 'F', 7230), +(103263, 'Teresa', 1972, 'F', 7177), +(103264, 'Rachel', 1972, 'F', 6418), +(103265, 'Stacey', 1972, 'F', 6386), +(103266, 'Melanie', 1972, 'F', 6294), +(103267, 'Deborah', 1972, 'F', 6283), +(103268, 'Brenda', 1972, 'F', 6271), +(103269, 'Donna', 1972, 'F', 6266), +(103270, 'Jessica', 1972, 'F', 6208), +(103271, 'Monica', 1972, 'F', 6130), +(103272, 'April', 1972, 'F', 6119), +(103273, 'Sarah', 1972, 'F', 6112), +(103274, 'Sharon', 1972, 'F', 6110), +(103275, 'Linda', 1972, 'F', 5747), +(103276, 'Dana', 1972, 'F', 5607), +(103277, 'Carrie', 1972, 'F', 5423), +(103278, 'Tanya', 1972, 'F', 5405), +(103279, 'Robin', 1972, 'F', 5371), +(103280, 'Cheryl', 1972, 'F', 5135), +(103281, 'Kathleen', 1972, 'F', 5104), +(103282, 'Barbara', 1972, 'F', 5081), +(103283, 'Crystal', 1972, 'F', 5040), +(103284, 'Rhonda', 1972, 'F', 4999), +(103285, 'Tiffany', 1972, 'F', 4849), +(103286, 'Jill', 1972, 'F', 4825), +(103287, 'Nancy', 1972, 'F', 4823), +(103288, 'Heidi', 1972, 'F', 4722), +(103289, 'Catherine', 1972, 'F', 4685), +(103290, 'Debra', 1972, 'F', 4663), +(103291, 'Kristin', 1972, 'F', 4585), +(103292, 'Theresa', 1972, 'F', 4571), +(103293, 'Katherine', 1972, 'F', 4513), +(103294, 'Sherry', 1972, 'F', 4448), +(103295, 'Holly', 1972, 'F', 4374), +(103296, 'Paula', 1972, 'F', 4259), +(103297, 'Danielle', 1972, 'F', 4199), +(103298, 'Christy', 1972, 'F', 4190), +(103299, 'Amanda', 1972, 'F', 4181), +(103300, 'Leslie', 1972, 'F', 4180), +(103301, 'Renee', 1972, 'F', 4091), +(103302, 'Gina', 1972, 'F', 4057), +(103303, 'Jacqueline', 1972, 'F', 3800), +(103304, 'Cindy', 1972, 'F', 3737), +(103305, 'Melinda', 1972, 'F', 3671), +(103306, 'Veronica', 1972, 'F', 3565), +(103307, 'Diana', 1972, 'F', 3545), +(103308, 'Tamara', 1972, 'F', 3530), +(103309, 'Kristen', 1972, 'F', 3529), +(103310, 'Erica', 1972, 'F', 3444), +(103311, 'Anna', 1972, 'F', 3443), +(103312, 'Tracey', 1972, 'F', 3406), +(103313, 'Yolanda', 1972, 'F', 3398), +(103314, 'Sheila', 1972, 'F', 3397), +(103315, 'Ann', 1972, 'F', 3363), +(103316, 'Suzanne', 1972, 'F', 3301), +(103317, 'Erin', 1972, 'F', 3294), +(103318, 'Shelly', 1972, 'F', 3290), +(103319, 'Margaret', 1972, 'F', 3287), +(103320, 'Alicia', 1972, 'F', 3266), +(103321, 'Jodi', 1972, 'F', 3261), +(103322, 'Laurie', 1972, 'F', 3228), +(103323, 'Victoria', 1972, 'F', 3206), +(103324, 'Valerie', 1972, 'F', 3193), +(103325, 'Sara', 1972, 'F', 3182), +(103326, 'Kristi', 1972, 'F', 3132), +(103327, 'Kathryn', 1972, 'F', 3129), +(103328, 'Regina', 1972, 'F', 3104), +(103329, 'Diane', 1972, 'F', 3094), +(103330, 'Carla', 1972, 'F', 3081), +(103331, 'Deanna', 1972, 'F', 3039), +(103332, 'Kathy', 1972, 'F', 3033), +(103333, 'Carol', 1972, 'F', 3009), +(103334, 'Carolyn', 1972, 'F', 2995), +(103335, 'Janet', 1972, 'F', 2956), +(103336, 'Kristina', 1972, 'F', 2924), +(103337, 'Beth', 1972, 'F', 2818), +(103338, 'Jamie', 1972, 'F', 2814), +(103339, 'Allison', 1972, 'F', 2801), +(103340, 'Katrina', 1972, 'F', 2752), +(103341, 'Katina', 1972, 'F', 2744), +(103342, 'Kim', 1972, 'F', 2742), +(103343, 'Jenny', 1972, 'F', 2635), +(103344, 'Traci', 1972, 'F', 2613), +(103345, 'Tricia', 1972, 'F', 2613), +(103346, 'Sonya', 1972, 'F', 2506), +(103347, 'Colleen', 1972, 'F', 2502), +(103348, 'Terri', 1972, 'F', 2494), +(103349, 'Misty', 1972, 'F', 2426), +(103350, 'Shelley', 1972, 'F', 2386), +(103351, 'Kristine', 1972, 'F', 2369), +(103352, 'Felicia', 1972, 'F', 2359), +(103353, 'Sherri', 1972, 'F', 2349), +(103354, 'Julia', 1972, 'F', 2335), +(103355, 'Connie', 1972, 'F', 2333), +(103356, 'Emily', 1972, 'F', 2332), +(103357, 'Vanessa', 1972, 'F', 2279), +(103358, 'Anne', 1972, 'F', 2266), +(103359, 'Lynn', 1972, 'F', 2251), +(103360, 'Anita', 1972, 'F', 2231), +(103361, 'Samantha', 1972, 'F', 2227), +(103362, 'Erika', 1972, 'F', 2182), +(103363, 'Cassandra', 1972, 'F', 2129), +(103364, 'Brandy', 1972, 'F', 2082), +(103365, 'Brandi', 1972, 'F', 2057), +(103366, 'Krista', 1972, 'F', 2050), +(103367, 'Natalie', 1972, 'F', 2026), +(103368, 'Carmen', 1972, 'F', 1968), +(103369, 'Angel', 1972, 'F', 1944), +(103370, 'Nichole', 1972, 'F', 1943), +(103371, 'Sheri', 1972, 'F', 1923), +(103372, 'Kerry', 1972, 'F', 1908), +(103373, 'Yvonne', 1972, 'F', 1905), +(103374, 'Kelli', 1972, 'F', 1899), +(103375, 'Martha', 1972, 'F', 1898), +(103376, 'Monique', 1972, 'F', 1878), +(103377, 'Aimee', 1972, 'F', 1874), +(103378, 'Sabrina', 1972, 'F', 1874), +(103379, 'Annette', 1972, 'F', 1869), +(103380, 'Bridget', 1972, 'F', 1865), +(103381, 'Bonnie', 1972, 'F', 1854), +(103382, 'Kristy', 1972, 'F', 1838), +(103383, 'Stacie', 1972, 'F', 1822), +(103384, 'Joy', 1972, 'F', 1819), +(103385, 'Amber', 1972, 'F', 1814), +(103386, 'Alison', 1972, 'F', 1809), +(103387, 'Tracie', 1972, 'F', 1796), +(103388, 'Virginia', 1972, 'F', 1790), +(103389, 'Becky', 1972, 'F', 1787), +(103390, 'Wanda', 1972, 'F', 1776), +(103391, 'Marie', 1972, 'F', 1763), +(103392, 'Kristie', 1972, 'F', 1739), +(103393, 'Cathy', 1972, 'F', 1735), +(103394, 'Natasha', 1972, 'F', 1730), +(103395, 'Janice', 1972, 'F', 1714), +(103396, 'Jody', 1972, 'F', 1710), +(103397, 'Nikki', 1972, 'F', 1705), +(103398, 'Shawna', 1972, 'F', 1665), +(103399, 'Gloria', 1972, 'F', 1620), +(103400, 'Sonia', 1972, 'F', 1614), +(103401, 'Vicki', 1972, 'F', 1612), +(103402, 'Leah', 1972, 'F', 1594), +(103403, 'Toni', 1972, 'F', 1594), +(103404, 'Megan', 1972, 'F', 1590), +(103405, 'Penny', 1972, 'F', 1590), +(103406, 'Debbie', 1972, 'F', 1585), +(103407, 'Trina', 1972, 'F', 1579), +(103408, 'Shawn', 1972, 'F', 1574), +(103409, 'Beverly', 1972, 'F', 1569), +(103410, 'Kari', 1972, 'F', 1561), +(103411, 'Charlotte', 1972, 'F', 1537), +(103412, 'Belinda', 1972, 'F', 1535), +(103413, 'Yvette', 1972, 'F', 1530), +(103414, 'Kerri', 1972, 'F', 1501), +(103415, 'Jeanette', 1972, 'F', 1494), +(103416, 'Christie', 1972, 'F', 1480), +(103417, 'Robyn', 1972, 'F', 1470), +(103418, 'Charlene', 1972, 'F', 1463), +(103419, 'Sylvia', 1972, 'F', 1463), +(103420, 'Kara', 1972, 'F', 1456), +(103421, 'Meredith', 1972, 'F', 1438), +(103422, 'Joanna', 1972, 'F', 1424), +(103423, 'Darlene', 1972, 'F', 1417), +(103424, 'Kendra', 1972, 'F', 1398), +(103425, 'Ruth', 1972, 'F', 1384), +(103426, 'Catina', 1972, 'F', 1370), +(103427, 'Betty', 1972, 'F', 1367), +(103428, 'Tammie', 1972, 'F', 1361), +(103429, 'Claudia', 1972, 'F', 1360), +(103430, 'Joyce', 1972, 'F', 1352), +(103431, 'Joanne', 1972, 'F', 1345), +(103432, 'Peggy', 1972, 'F', 1345), +(103433, 'Shirley', 1972, 'F', 1336), +(103434, 'Ginger', 1972, 'F', 1317), +(103435, 'Rose', 1972, 'F', 1309), +(103436, 'Jean', 1972, 'F', 1300), +(103437, 'Hope', 1972, 'F', 1294), +(103438, 'Rosa', 1972, 'F', 1286), +(103439, 'Tami', 1972, 'F', 1286), +(103440, 'Frances', 1972, 'F', 1280), +(103441, 'Tonia', 1972, 'F', 1280), +(103442, 'Dorothy', 1972, 'F', 1278), +(103443, 'Kimberley', 1972, 'F', 1271), +(103444, 'Judith', 1972, 'F', 1264), +(103445, 'Gretchen', 1972, 'F', 1260), +(103446, 'Judy', 1972, 'F', 1259), +(103447, 'Kellie', 1972, 'F', 1254), +(103448, 'Candace', 1972, 'F', 1253), +(103449, 'Helen', 1972, 'F', 1245), +(103450, 'Molly', 1972, 'F', 1235), +(103451, 'Kelley', 1972, 'F', 1217), +(103452, 'Marsha', 1972, 'F', 1213), +(103453, 'Leigh', 1972, 'F', 1211), +(103454, 'Rita', 1972, 'F', 1201), +(103455, 'Alice', 1972, 'F', 1199), +(103456, 'Latonya', 1972, 'F', 1196), +(103457, 'Sonja', 1972, 'F', 1192), +(103458, 'Ashley', 1972, 'F', 1176), +(103459, 'Bobbie', 1972, 'F', 1174), +(103460, 'Ellen', 1972, 'F', 1174), +(103461, 'Maureen', 1972, 'F', 1172), +(103462, 'Jane', 1972, 'F', 1161), +(103463, 'Norma', 1972, 'F', 1149), +(103464, 'Tasha', 1972, 'F', 1138), +(103465, 'Juanita', 1972, 'F', 1135), +(103466, 'Melody', 1972, 'F', 1123), +(103467, 'Vickie', 1972, 'F', 1122), +(103468, 'Karla', 1972, 'F', 1121), +(103469, 'Christa', 1972, 'F', 1120), +(103470, 'Keri', 1972, 'F', 1115), +(103471, 'Joann', 1972, 'F', 1103), +(103472, 'Dina', 1972, 'F', 1096), +(103473, 'Ana', 1972, 'F', 1085), +(103474, 'Billie', 1972, 'F', 1077), +(103475, 'Caroline', 1972, 'F', 1071), +(103476, 'Elaine', 1972, 'F', 1065), +(103477, 'Evelyn', 1972, 'F', 1062), +(103478, 'Staci', 1972, 'F', 1062), +(103479, 'Sandy', 1972, 'F', 1055), +(103480, 'Leticia', 1972, 'F', 1053), +(103481, 'Loretta', 1972, 'F', 1049), +(103482, 'Rochelle', 1972, 'F', 1049), +(103483, 'Jackie', 1972, 'F', 1026), +(103484, 'Angie', 1972, 'F', 1017), +(103485, 'Raquel', 1972, 'F', 1013), +(103486, 'Lauren', 1972, 'F', 1007), +(103487, 'Candice', 1972, 'F', 1002), +(103488, 'Teri', 1972, 'F', 1002), +(103489, 'Cheri', 1972, 'F', 996), +(103490, 'Marcia', 1972, 'F', 996), +(103491, 'Gail', 1972, 'F', 989), +(103492, 'Lynette', 1972, 'F', 984), +(103493, 'Rachael', 1972, 'F', 979), +(103494, 'Roberta', 1972, 'F', 976), +(103495, 'Dena', 1972, 'F', 972), +(103496, 'Stefanie', 1972, 'F', 970), +(103497, 'Sheryl', 1972, 'F', 954), +(103498, 'Jeanne', 1972, 'F', 943), +(103499, 'Adrienne', 1972, 'F', 942), +(103500, 'Ronda', 1972, 'F', 939), +(103501, 'Jodie', 1972, 'F', 935), +(103502, 'Eileen', 1972, 'F', 920), +(103503, 'Audrey', 1972, 'F', 918), +(103504, 'Christi', 1972, 'F', 917), +(103505, 'Marcy', 1972, 'F', 917), +(103506, 'Jenifer', 1972, 'F', 913), +(103507, 'Sally', 1972, 'F', 913), +(103508, 'Rachelle', 1972, 'F', 898), +(103509, 'Kirsten', 1972, 'F', 896), +(103510, 'Lora', 1972, 'F', 890), +(103511, 'Eva', 1972, 'F', 888), +(103512, 'Roxanne', 1972, 'F', 884), +(103513, 'Gwendolyn', 1972, 'F', 869), +(103514, 'Jennie', 1972, 'F', 864), +(103515, 'Jana', 1972, 'F', 862), +(103516, 'Mindy', 1972, 'F', 862), +(103517, 'Marilyn', 1972, 'F', 860), +(103518, 'Candy', 1972, 'F', 857), +(103519, 'Deana', 1972, 'F', 855), +(103520, 'Tabitha', 1972, 'F', 831), +(103521, 'Lara', 1972, 'F', 830), +(103522, 'Shari', 1972, 'F', 823), +(103523, 'Cherie', 1972, 'F', 822), +(103524, 'Ericka', 1972, 'F', 806), +(103525, 'Jeannie', 1972, 'F', 806), +(103526, 'Angelia', 1972, 'F', 805), +(103527, 'Antoinette', 1972, 'F', 803), +(103528, 'Keisha', 1972, 'F', 803), +(103529, 'Shelia', 1972, 'F', 802), +(103530, 'Nina', 1972, 'F', 797), +(103531, 'Irene', 1972, 'F', 790), +(103532, 'Desiree', 1972, 'F', 784), +(103533, 'Bethany', 1972, 'F', 779), +(103534, 'Alisa', 1972, 'F', 775), +(103535, 'Lorraine', 1972, 'F', 774), +(103536, 'Dianna', 1972, 'F', 773), +(103537, 'Katie', 1972, 'F', 772), +(103538, 'Marla', 1972, 'F', 772), +(103539, 'Trisha', 1972, 'F', 771), +(103540, 'Priscilla', 1972, 'F', 765), +(103541, 'Shana', 1972, 'F', 764), +(103542, 'Shelby', 1972, 'F', 754), +(103543, 'Lydia', 1972, 'F', 753), +(103544, 'Terry', 1972, 'F', 749), +(103545, 'Brooke', 1972, 'F', 737), +(103546, 'Joan', 1972, 'F', 729), +(103547, 'Bobbi', 1972, 'F', 724), +(103548, 'Jo', 1972, 'F', 722), +(103549, 'Cara', 1972, 'F', 721), +(103550, 'Tammi', 1972, 'F', 718), +(103551, 'Sherrie', 1972, 'F', 715), +(103552, 'Latasha', 1972, 'F', 713), +(103553, 'Angelique', 1972, 'F', 708), +(103554, 'Wendi', 1972, 'F', 706), +(103555, 'Darla', 1972, 'F', 693), +(103556, 'Lee', 1972, 'F', 690), +(103557, 'Esther', 1972, 'F', 689), +(103558, 'Ramona', 1972, 'F', 688), +(103559, 'Audra', 1972, 'F', 686), +(103560, 'Lorie', 1972, 'F', 682), +(103561, 'Courtney', 1972, 'F', 672), +(103562, 'Jacquelyn', 1972, 'F', 667), +(103563, 'Karin', 1972, 'F', 664), +(103564, 'Angelica', 1972, 'F', 663), +(103565, 'Chandra', 1972, 'F', 660), +(103566, 'Cristina', 1972, 'F', 654), +(103567, 'Marlene', 1972, 'F', 654), +(103568, 'Lesley', 1972, 'F', 643), +(103569, 'Patrice', 1972, 'F', 642), +(103570, 'Marisol', 1972, 'F', 639), +(103571, 'Naomi', 1972, 'F', 638), +(103572, 'Bernadette', 1972, 'F', 637), +(103573, 'Ruby', 1972, 'F', 635), +(103574, 'Betsy', 1972, 'F', 634), +(103575, 'Melisa', 1972, 'F', 633), +(103576, 'Tanisha', 1972, 'F', 629), +(103577, 'Tamika', 1972, 'F', 628), +(103578, 'Alexandra', 1972, 'F', 627), +(103579, 'Lillian', 1972, 'F', 620), +(103580, 'Marcie', 1972, 'F', 618), +(103581, 'Rosemary', 1972, 'F', 618), +(103582, 'Glenda', 1972, 'F', 615), +(103583, 'Tisha', 1972, 'F', 614), +(103584, 'Shanna', 1972, 'F', 612), +(103585, 'Elisa', 1972, 'F', 607), +(103586, 'Doris', 1972, 'F', 606), +(103587, 'Grace', 1972, 'F', 606), +(103588, 'Nora', 1972, 'F', 604), +(103589, 'Lana', 1972, 'F', 600), +(103590, 'Shauna', 1972, 'F', 599), +(103591, 'Janine', 1972, 'F', 593), +(103592, 'Vicky', 1972, 'F', 589), +(103593, 'Amie', 1972, 'F', 588), +(103594, 'Janelle', 1972, 'F', 586), +(103595, 'Charity', 1972, 'F', 583), +(103596, 'Josephine', 1972, 'F', 581), +(103597, 'Angelina', 1972, 'F', 578), +(103598, 'Jeannette', 1972, 'F', 574), +(103599, 'Vivian', 1972, 'F', 572), +(103600, 'Miriam', 1972, 'F', 570), +(103601, 'Marci', 1972, 'F', 569), +(103602, 'Alma', 1972, 'F', 568), +(103603, 'Cecilia', 1972, 'F', 568), +(103604, 'Tania', 1972, 'F', 567), +(103605, 'Constance', 1972, 'F', 563), +(103606, 'Alisha', 1972, 'F', 562), +(103607, 'Kenya', 1972, 'F', 556), +(103608, 'Daphne', 1972, 'F', 555), +(103609, 'Maribel', 1972, 'F', 555), +(103610, 'Celeste', 1972, 'F', 552), +(103611, 'Casey', 1972, 'F', 544), +(103612, 'Bridgette', 1972, 'F', 542), +(103613, 'Rebekah', 1972, 'F', 539), +(103614, 'Lynda', 1972, 'F', 531), +(103615, 'Dionne', 1972, 'F', 529), +(103616, 'Faith', 1972, 'F', 526), +(103617, 'Darcy', 1972, 'F', 522), +(103618, 'Latanya', 1972, 'F', 521), +(103619, 'Lorena', 1972, 'F', 520), +(103620, 'Leanne', 1972, 'F', 518), +(103621, 'Camille', 1972, 'F', 512), +(103622, 'Phyllis', 1972, 'F', 504), +(103623, 'Ladonna', 1972, 'F', 503), +(103624, 'Arlene', 1972, 'F', 501), +(103625, 'Marianne', 1972, 'F', 501), +(103626, 'Jeanine', 1972, 'F', 498), +(103627, 'Tabatha', 1972, 'F', 492), +(103628, 'Terra', 1972, 'F', 488), +(103629, 'Marisa', 1972, 'F', 486), +(103630, 'Elena', 1972, 'F', 485), +(103631, 'Sophia', 1972, 'F', 485), +(103632, 'Jami', 1972, 'F', 483), +(103633, 'Paige', 1972, 'F', 483), +(103634, 'Carey', 1972, 'F', 481), +(103635, 'Dianne', 1972, 'F', 479), +(103636, 'Lena', 1972, 'F', 478), +(103637, 'Edith', 1972, 'F', 476), +(103638, 'Yesenia', 1972, 'F', 470), +(103639, 'Ingrid', 1972, 'F', 469), +(103640, 'Pauline', 1972, 'F', 469), +(103641, 'Laurel', 1972, 'F', 466), +(103642, 'Paulette', 1972, 'F', 466), +(103643, 'Guadalupe', 1972, 'F', 462), +(103644, 'Kimberlee', 1972, 'F', 460), +(103645, 'Anissa', 1972, 'F', 459), +(103646, 'Lashawn', 1972, 'F', 457), +(103647, 'Rene', 1972, 'F', 456), +(103648, 'Dora', 1972, 'F', 455), +(103649, 'Margarita', 1972, 'F', 455), +(103650, 'Emma', 1972, 'F', 454), +(103651, 'Krystal', 1972, 'F', 454), +(103652, 'Marjorie', 1972, 'F', 454), +(103653, 'Mona', 1972, 'F', 454), +(103654, 'Sue', 1972, 'F', 453), +(103655, 'Michael', 1972, 'F', 451), +(103656, 'Serena', 1972, 'F', 451), +(103657, 'Adriana', 1972, 'F', 447), +(103658, 'Lea', 1972, 'F', 445), +(103659, 'Janie', 1972, 'F', 441), +(103660, 'Meghan', 1972, 'F', 440), +(103661, 'Annie', 1972, 'F', 438), +(103662, 'Shonda', 1972, 'F', 438), +(103663, 'Iris', 1972, 'F', 436), +(103664, 'Marcella', 1972, 'F', 436), +(103665, 'Jeannine', 1972, 'F', 432), +(103666, 'Cathleen', 1972, 'F', 427), +(103667, 'Georgia', 1972, 'F', 427), +(103668, 'Doreen', 1972, 'F', 425), +(103669, 'Lynne', 1972, 'F', 424), +(103670, 'Francine', 1972, 'F', 423), +(103671, 'Irma', 1972, 'F', 420), +(103672, 'Lucinda', 1972, 'F', 420), +(103673, 'Malinda', 1972, 'F', 419), +(103674, 'Lucy', 1972, 'F', 416), +(103675, 'Mia', 1972, 'F', 415), +(103676, 'Leann', 1972, 'F', 413), +(103677, 'Lawanda', 1972, 'F', 412), +(103678, 'Johanna', 1972, 'F', 410), +(103679, 'Luz', 1972, 'F', 410), +(103680, 'Latisha', 1972, 'F', 407), +(103681, 'Patty', 1972, 'F', 407), +(103682, 'Amelia', 1972, 'F', 406), +(103683, 'June', 1972, 'F', 404), +(103684, 'Susanne', 1972, 'F', 404), +(103685, 'Edna', 1972, 'F', 403), +(103686, 'Allyson', 1972, 'F', 402), +(103687, 'Lorrie', 1972, 'F', 402), +(103688, 'Maryann', 1972, 'F', 402), +(103689, 'Alexis', 1972, 'F', 398), +(103690, 'Nadine', 1972, 'F', 398), +(103691, 'Dolores', 1972, 'F', 397), +(103692, 'Abigail', 1972, 'F', 395), +(103693, 'Cari', 1972, 'F', 387), +(103694, 'Tonja', 1972, 'F', 386), +(103695, 'Karyn', 1972, 'F', 385), +(103696, 'Kerrie', 1972, 'F', 382), +(103697, 'Catrina', 1972, 'F', 380), +(103698, 'Tera', 1972, 'F', 379), +(103699, 'Blanca', 1972, 'F', 378), +(103700, 'Jan', 1972, 'F', 377), +(103701, 'Karrie', 1972, 'F', 376), +(103702, 'Ursula', 1972, 'F', 376), +(103703, 'Liza', 1972, 'F', 374), +(103704, 'Tia', 1972, 'F', 374), +(103705, 'Latonia', 1972, 'F', 371), +(103706, 'Bridgett', 1972, 'F', 370), +(103707, 'Suzette', 1972, 'F', 370), +(103708, 'Brandie', 1972, 'F', 368), +(103709, 'Deanne', 1972, 'F', 368), +(103710, 'Deena', 1972, 'F', 368), +(103711, 'Clara', 1972, 'F', 366), +(103712, 'Cassie', 1972, 'F', 364), +(103713, 'Susie', 1972, 'F', 364), +(103714, 'Gena', 1972, 'F', 363), +(103715, 'Janette', 1972, 'F', 363), +(103716, 'Myra', 1972, 'F', 362), +(103717, 'Lashonda', 1972, 'F', 361), +(103718, 'Olga', 1972, 'F', 359), +(103719, 'Isabel', 1972, 'F', 358), +(103720, 'Selena', 1972, 'F', 358), +(103721, 'Janel', 1972, 'F', 357), +(103722, 'Gabrielle', 1972, 'F', 356), +(103723, 'Deirdre', 1972, 'F', 353), +(103724, 'Elisabeth', 1972, 'F', 352), +(103725, 'Jocelyn', 1972, 'F', 351), +(103726, 'Julianne', 1972, 'F', 349), +(103727, 'Olivia', 1972, 'F', 348), +(103728, 'Tamra', 1972, 'F', 347), +(103729, 'Alyssa', 1972, 'F', 345), +(103730, 'Lois', 1972, 'F', 344), +(103731, 'Ayanna', 1972, 'F', 343), +(103732, 'Louise', 1972, 'F', 340), +(103733, 'Sondra', 1972, 'F', 339), +(103734, 'Jeri', 1972, 'F', 337), +(103735, 'Mildred', 1972, 'F', 337), +(103736, 'Demetria', 1972, 'F', 336), +(103737, 'Shellie', 1972, 'F', 336), +(103738, 'Lynnette', 1972, 'F', 335), +(103739, 'Annmarie', 1972, 'F', 333), +(103740, 'Hilary', 1972, 'F', 333), +(103741, 'Chrystal', 1972, 'F', 330), +(103742, 'Gabriela', 1972, 'F', 330), +(103743, 'Patti', 1972, 'F', 330), +(103744, 'Genevieve', 1972, 'F', 328), +(103745, 'Tawana', 1972, 'F', 328), +(103746, 'Ida', 1972, 'F', 326), +(103747, 'Tameka', 1972, 'F', 325), +(103748, 'Mandy', 1972, 'F', 324), +(103749, 'Marlo', 1972, 'F', 324), +(103750, 'Nanette', 1972, 'F', 324), +(103751, 'Rena', 1972, 'F', 324), +(103752, 'Gayle', 1972, 'F', 323), +(103753, 'Kisha', 1972, 'F', 322), +(103754, 'Buffy', 1972, 'F', 319), +(103755, 'Hollie', 1972, 'F', 318), +(103756, 'Misti', 1972, 'F', 318), +(103757, 'Jessie', 1972, 'F', 317), +(103758, 'Justine', 1972, 'F', 317), +(103759, 'Silvia', 1972, 'F', 315), +(103760, 'Valarie', 1972, 'F', 314), +(103761, 'Miranda', 1972, 'F', 310), +(103762, 'Beatrice', 1972, 'F', 309), +(103763, 'Katharine', 1972, 'F', 309), +(103764, 'Renae', 1972, 'F', 309), +(103765, 'Chanda', 1972, 'F', 308), +(103766, 'Corinne', 1972, 'F', 308), +(103767, 'Jerri', 1972, 'F', 308), +(103768, 'Marnie', 1972, 'F', 308), +(103769, 'Latrice', 1972, 'F', 307), +(103770, 'Consuelo', 1972, 'F', 305), +(103771, 'Malissa', 1972, 'F', 305), +(103772, 'Shanda', 1972, 'F', 305), +(103773, 'Clarissa', 1972, 'F', 304), +(103774, 'Jenna', 1972, 'F', 304), +(103775, 'Gwen', 1972, 'F', 302), +(103776, 'Kami', 1972, 'F', 302), +(103777, 'Alissa', 1972, 'F', 301), +(103778, 'Autumn', 1972, 'F', 301), +(103779, 'Eleanor', 1972, 'F', 300), +(103780, 'James', 1972, 'F', 299), +(103781, 'Delia', 1972, 'F', 297), +(103782, 'Whitney', 1972, 'F', 297), +(103783, 'Corina', 1972, 'F', 296), +(103784, 'Latoya', 1972, 'F', 296), +(103785, 'Shelli', 1972, 'F', 296), +(103786, 'Danette', 1972, 'F', 295), +(103787, 'Margo', 1972, 'F', 294), +(103788, 'Maritza', 1972, 'F', 294), +(103789, 'Marion', 1972, 'F', 293), +(103790, 'Deann', 1972, 'F', 292), +(103791, 'Charmaine', 1972, 'F', 291), +(103792, 'Bernice', 1972, 'F', 290), +(103793, 'Felecia', 1972, 'F', 290), +(103794, 'Carole', 1972, 'F', 289), +(103795, 'Chantel', 1972, 'F', 289), +(103796, 'Tawnya', 1972, 'F', 289), +(103797, 'Robert', 1972, 'F', 288), +(103798, 'Susana', 1972, 'F', 287), +(103799, 'Bertha', 1972, 'F', 286), +(103800, 'Dayna', 1972, 'F', 285), +(103801, 'Stella', 1972, 'F', 285), +(103802, 'Hilda', 1972, 'F', 284), +(103803, 'Margie', 1972, 'F', 284), +(103804, 'Antonia', 1972, 'F', 283), +(103805, 'Randi', 1972, 'F', 282), +(103806, 'Caryn', 1972, 'F', 281), +(103807, 'Lauri', 1972, 'F', 281), +(103808, 'Claire', 1972, 'F', 277), +(103809, 'Chris', 1972, 'F', 275), +(103810, 'Marissa', 1972, 'F', 275), +(103811, 'Cristy', 1972, 'F', 273), +(103812, 'Kris', 1972, 'F', 273), +(103813, 'Trudy', 1972, 'F', 273), +(103814, 'Noelle', 1972, 'F', 272), +(103815, 'Madeline', 1972, 'F', 271), +(103816, 'Rosemarie', 1972, 'F', 271), +(103817, 'Mara', 1972, 'F', 270), +(103818, 'Windy', 1972, 'F', 270), +(103819, 'Delores', 1972, 'F', 269), +(103820, 'Ivy', 1972, 'F', 269), +(103821, 'Colette', 1972, 'F', 268), +(103822, 'Terrie', 1972, 'F', 268), +(103823, 'Jolene', 1972, 'F', 266), +(103824, 'Rosalind', 1972, 'F', 266), +(103825, 'Susanna', 1972, 'F', 266), +(103826, 'Tamera', 1972, 'F', 266), +(103827, 'Deidre', 1972, 'F', 264), +(103828, 'Richelle', 1972, 'F', 264), +(103829, 'Elsa', 1972, 'F', 262), +(103830, 'Marian', 1972, 'F', 262), +(103831, 'Sandi', 1972, 'F', 262), +(103832, 'Alyson', 1972, 'F', 261), +(103833, 'Esmeralda', 1972, 'F', 261), +(103834, 'Kate', 1972, 'F', 258), +(103835, 'Elise', 1972, 'F', 257), +(103836, 'Sheree', 1972, 'F', 257), +(103837, 'Eugenia', 1972, 'F', 256), +(103838, 'Juliet', 1972, 'F', 256), +(103839, 'Claudine', 1972, 'F', 255), +(103840, 'Trista', 1972, 'F', 255), +(103841, 'Vera', 1972, 'F', 253), +(103842, 'Michell', 1972, 'F', 252), +(103843, 'Geneva', 1972, 'F', 251), +(103844, 'Kay', 1972, 'F', 251), +(103845, 'Christopher', 1972, 'F', 250), +(103846, 'Kristal', 1972, 'F', 250), +(103847, 'Mitzi', 1972, 'F', 250), +(103848, 'Hannah', 1972, 'F', 249), +(103849, 'Florence', 1972, 'F', 248), +(103850, 'Janna', 1972, 'F', 247), +(103851, 'Letitia', 1972, 'F', 247), +(103852, 'Niki', 1972, 'F', 247), +(103853, 'Daisy', 1972, 'F', 246), +(103854, 'Dara', 1972, 'F', 246), +(103855, 'Candi', 1972, 'F', 244), +(103856, 'Gladys', 1972, 'F', 243), +(103857, 'Georgina', 1972, 'F', 242), +(103858, 'Hillary', 1972, 'F', 242), +(103859, 'Rosalinda', 1972, 'F', 242), +(103860, 'Adrian', 1972, 'F', 241), +(103861, 'Maura', 1972, 'F', 240), +(103862, 'Sharla', 1972, 'F', 240), +(103863, 'Tiffani', 1972, 'F', 240), +(103864, 'Jeanna', 1972, 'F', 239), +(103865, 'Marina', 1972, 'F', 239), +(103866, 'Kesha', 1972, 'F', 238), +(103867, 'David', 1972, 'F', 237), +(103868, 'Polly', 1972, 'F', 237), +(103869, 'Shannan', 1972, 'F', 237), +(103870, 'Christal', 1972, 'F', 236), +(103871, 'Ebony', 1972, 'F', 236), +(103872, 'Jeanie', 1972, 'F', 236), +(103873, 'Maggie', 1972, 'F', 236), +(103874, 'Cher', 1972, 'F', 235), +(103875, 'Marta', 1972, 'F', 235), +(103876, 'Stacia', 1972, 'F', 235), +(103877, 'Rosie', 1972, 'F', 234), +(103878, 'Tyra', 1972, 'F', 233), +(103879, 'Casandra', 1972, 'F', 232), +(103880, 'Kasey', 1972, 'F', 232), +(103881, 'Maricela', 1972, 'F', 232), +(103882, 'Ami', 1972, 'F', 230), +(103883, 'Athena', 1972, 'F', 228), +(103884, 'Lucia', 1972, 'F', 228), +(103885, 'Lakisha', 1972, 'F', 227), +(103886, 'Leona', 1972, 'F', 227), +(103887, 'Venus', 1972, 'F', 227), +(103888, 'Alana', 1972, 'F', 226), +(103889, 'Thelma', 1972, 'F', 226), +(103890, 'Bonita', 1972, 'F', 225), +(103891, 'Tarsha', 1972, 'F', 225), +(103892, 'John', 1972, 'F', 224), +(103893, 'Lourdes', 1972, 'F', 224), +(103894, 'Greta', 1972, 'F', 223), +(103895, 'Janell', 1972, 'F', 223), +(103896, 'Latricia', 1972, 'F', 223), +(103897, 'Deidra', 1972, 'F', 222), +(103898, 'Joni', 1972, 'F', 221), +(103899, 'Chastity', 1972, 'F', 220), +(103900, 'Penelope', 1972, 'F', 220), +(103901, 'Holli', 1972, 'F', 219), +(103902, 'Leanna', 1972, 'F', 218), +(103903, 'Simone', 1972, 'F', 218), +(103904, 'Celia', 1972, 'F', 217), +(103905, 'Chelsea', 1972, 'F', 217), +(103906, 'Geraldine', 1972, 'F', 217), +(103907, 'Tosha', 1972, 'F', 217), +(103908, 'Carissa', 1972, 'F', 216), +(103909, 'Josie', 1972, 'F', 214), +(103910, 'Patsy', 1972, 'F', 214), +(103911, 'Cecelia', 1972, 'F', 213), +(103912, 'Larissa', 1972, 'F', 213), +(103913, 'Leeann', 1972, 'F', 213), +(103914, 'Nikole', 1972, 'F', 213), +(103915, 'Rae', 1972, 'F', 213), +(103916, 'Anastasia', 1972, 'F', 211), +(103917, 'Annemarie', 1972, 'F', 210), +(103918, 'Tamiko', 1972, 'F', 210), +(103919, 'Tessa', 1972, 'F', 210), +(103920, 'Benita', 1972, 'F', 209), +(103921, 'Contina', 1972, 'F', 209), +(103922, 'Araceli', 1972, 'F', 208), +(103923, 'Debora', 1972, 'F', 208), +(103924, 'Jason', 1972, 'F', 208), +(103925, 'Denice', 1972, 'F', 207), +(103926, 'Chiquita', 1972, 'F', 206), +(103927, 'Danita', 1972, 'F', 206), +(103928, 'Ella', 1972, 'F', 206), +(103929, 'Ivette', 1972, 'F', 206), +(103930, 'Ada', 1972, 'F', 205), +(103931, 'Eve', 1972, 'F', 205), +(103932, 'Della', 1972, 'F', 204), +(103933, 'Jenni', 1972, 'F', 204), +(103934, 'Janis', 1972, 'F', 203), +(103935, 'Shane', 1972, 'F', 203), +(103936, 'Shantel', 1972, 'F', 202), +(103937, 'Brittany', 1972, 'F', 201), +(103938, 'Cora', 1972, 'F', 201), +(103939, 'Cori', 1972, 'F', 201), +(103940, 'Elissa', 1972, 'F', 201), +(103941, 'Jeana', 1972, 'F', 200), +(103942, 'Aretha', 1972, 'F', 199), +(103943, 'Christian', 1972, 'F', 199), +(103944, 'Corinna', 1972, 'F', 199), +(103945, 'Selina', 1972, 'F', 198), +(103946, 'Tawanda', 1972, 'F', 198), +(103947, 'Francesca', 1972, 'F', 197), +(103948, 'Summer', 1972, 'F', 197), +(103949, 'Rosanna', 1972, 'F', 196), +(103950, 'Aileen', 1972, 'F', 195), +(103951, 'India', 1972, 'F', 194), +(103952, 'Vikki', 1972, 'F', 194), +(103953, 'William', 1972, 'F', 193), +(103954, 'Dee', 1972, 'F', 192), +(103955, 'Johnna', 1972, 'F', 192), +(103956, 'Tamela', 1972, 'F', 192), +(103957, 'Joelle', 1972, 'F', 191), +(103958, 'Nicolle', 1972, 'F', 191), +(103959, 'Dixie', 1972, 'F', 190), +(103960, 'Juana', 1972, 'F', 190), +(103961, 'Graciela', 1972, 'F', 189), +(103962, 'Helena', 1972, 'F', 189), +(103963, 'Mercedes', 1972, 'F', 189), +(103964, 'Nicki', 1972, 'F', 189), +(103965, 'Pam', 1972, 'F', 189), +(103966, 'Anjanette', 1972, 'F', 188), +(103967, 'Carie', 1972, 'F', 188), +(103968, 'Christin', 1972, 'F', 188), +(103969, 'Lesa', 1972, 'F', 188), +(103970, 'Renita', 1972, 'F', 188), +(103971, 'Sharron', 1972, 'F', 188), +(103972, 'Yolonda', 1972, 'F', 188), +(103973, 'Rosalyn', 1972, 'F', 187), +(103974, 'Beatriz', 1972, 'F', 186), +(103975, 'Chasity', 1972, 'F', 186), +(103976, 'Lenora', 1972, 'F', 186), +(103977, 'Valencia', 1972, 'F', 186), +(103978, 'Adrianne', 1972, 'F', 185), +(103979, 'Joey', 1972, 'F', 185), +(103980, 'Mari', 1972, 'F', 185), +(103981, 'Shanon', 1972, 'F', 185), +(103982, 'Coleen', 1972, 'F', 184), +(103983, 'Mollie', 1972, 'F', 184), +(103984, 'Alecia', 1972, 'F', 183), +(103985, 'Kayla', 1972, 'F', 183), +(103986, 'Nicola', 1972, 'F', 183), +(103987, 'Tamatha', 1972, 'F', 183), +(103988, 'Nichol', 1972, 'F', 182), +(103989, 'Toya', 1972, 'F', 182), +(103990, 'Elisha', 1972, 'F', 181), +(103991, 'Martina', 1972, 'F', 181), +(103992, 'Noel', 1972, 'F', 181), +(103993, 'Ethel', 1972, 'F', 180), +(103994, 'Janeen', 1972, 'F', 180), +(103995, 'Robbie', 1972, 'F', 180), +(103996, 'Tangela', 1972, 'F', 180), +(103997, 'Cindi', 1972, 'F', 178), +(103998, 'Stephenie', 1972, 'F', 178), +(103999, 'Brandee', 1972, 'F', 177), +(104000, 'Tori', 1972, 'F', 177), +(104001, 'Davina', 1972, 'F', 176), +(104002, 'Monika', 1972, 'F', 176), +(104003, 'Andria', 1972, 'F', 175), +(104004, 'Darci', 1972, 'F', 175), +(104005, 'Josette', 1972, 'F', 175), +(104006, 'Mechelle', 1972, 'F', 175), +(104007, 'Suzanna', 1972, 'F', 175), +(104008, 'Angelita', 1972, 'F', 174), +(104009, 'Eunice', 1972, 'F', 174), +(104010, 'Lissette', 1972, 'F', 174), +(104011, 'Missy', 1972, 'F', 174), +(104012, 'Tana', 1972, 'F', 174), +(104013, 'Therese', 1972, 'F', 174), +(104014, 'Trena', 1972, 'F', 174), +(104015, 'Lillie', 1972, 'F', 173), +(104016, 'Lorna', 1972, 'F', 173), +(104017, 'Lucretia', 1972, 'F', 173), +(104018, 'Brian', 1972, 'F', 171), +(104019, 'Karina', 1972, 'F', 171), +(104020, 'Mellissa', 1972, 'F', 171), +(104021, 'Evette', 1972, 'F', 170), +(104022, 'Kandi', 1972, 'F', 170), +(104023, 'Candida', 1972, 'F', 169), +(104024, 'Charla', 1972, 'F', 169), +(104025, 'Hazel', 1972, 'F', 169), +(104026, 'Roxanna', 1972, 'F', 169), +(104027, 'Shalonda', 1972, 'F', 169), +(104028, 'Abby', 1972, 'F', 168), +(104029, 'Freda', 1972, 'F', 168), +(104030, 'Juliana', 1972, 'F', 168), +(104031, 'Pearl', 1972, 'F', 168), +(104032, 'Dominique', 1972, 'F', 167), +(104033, 'Jaime', 1972, 'F', 167), +(104034, 'Juli', 1972, 'F', 167), +(104035, 'Antionette', 1972, 'F', 166), +(104036, 'Danelle', 1972, 'F', 166), +(104037, 'Noemi', 1972, 'F', 166), +(104038, 'Sharonda', 1972, 'F', 166), +(104039, 'Camisha', 1972, 'F', 165), +(104040, 'Carolina', 1972, 'F', 165), +(104041, 'Maxine', 1972, 'F', 163), +(104042, 'Karie', 1972, 'F', 162), +(104043, 'Kathrine', 1972, 'F', 162), +(104044, 'Lakesha', 1972, 'F', 162), +(104045, 'Rosalie', 1972, 'F', 162), +(104046, 'Vonda', 1972, 'F', 162), +(104047, 'Anika', 1972, 'F', 161), +(104048, 'Cherilyn', 1972, 'F', 161), +(104049, 'Karri', 1972, 'F', 161), +(104050, 'Lisette', 1972, 'F', 161), +(104051, 'Alejandra', 1972, 'F', 160), +(104052, 'Danna', 1972, 'F', 160), +(104053, 'Tiffanie', 1972, 'F', 160), +(104054, 'Dawna', 1972, 'F', 159), +(104055, 'Melonie', 1972, 'F', 159), +(104056, 'Angeline', 1972, 'F', 158), +(104057, 'Darcie', 1972, 'F', 158), +(104058, 'Lakeisha', 1972, 'F', 158), +(104059, 'Latosha', 1972, 'F', 158), +(104060, 'Lucille', 1972, 'F', 158), +(104061, 'Cary', 1972, 'F', 157), +(104062, 'Kia', 1972, 'F', 156), +(104063, 'Marni', 1972, 'F', 156), +(104064, 'Lola', 1972, 'F', 155), +(104065, 'Aida', 1972, 'F', 154), +(104066, 'Brigitte', 1972, 'F', 154), +(104067, 'Cristi', 1972, 'F', 154), +(104068, 'Dori', 1972, 'F', 154), +(104069, 'Faye', 1972, 'F', 154), +(104070, 'Julissa', 1972, 'F', 154), +(104071, 'Mayra', 1972, 'F', 154), +(104072, 'Aurora', 1972, 'F', 153), +(104073, 'Ava', 1972, 'F', 153), +(104074, 'Rosario', 1972, 'F', 153), +(104075, 'Rosetta', 1972, 'F', 153), +(104076, 'Keena', 1972, 'F', 152), +(104077, 'Lashanda', 1972, 'F', 152), +(104078, 'Melodie', 1972, 'F', 152), +(104079, 'Sharlene', 1972, 'F', 152), +(104080, 'Corey', 1972, 'F', 151), +(104081, 'Mindi', 1972, 'F', 151), +(104082, 'Nellie', 1972, 'F', 151), +(104083, 'Shonna', 1972, 'F', 151), +(104084, 'Tawanna', 1972, 'F', 151), +(104085, 'Tressa', 1972, 'F', 150), +(104086, 'Marisela', 1972, 'F', 149), +(104087, 'Myrna', 1972, 'F', 149), +(104088, 'Sasha', 1972, 'F', 149), +(104089, 'Bessie', 1972, 'F', 148), +(104090, 'Frankie', 1972, 'F', 148), +(104091, 'Lenore', 1972, 'F', 148), +(104092, 'Maya', 1972, 'F', 148), +(104093, 'Verna', 1972, 'F', 148), +(104094, 'Eliza', 1972, 'F', 147), +(104095, 'Ginny', 1972, 'F', 147), +(104096, 'Katy', 1972, 'F', 147), +(104097, 'Saundra', 1972, 'F', 147), +(104098, 'Carmela', 1972, 'F', 146), +(104099, 'Kandy', 1972, 'F', 146), +(104100, 'Nikita', 1972, 'F', 146), +(104101, 'Cathryn', 1972, 'F', 145), +(104102, 'Cory', 1972, 'F', 145), +(104103, 'Crista', 1972, 'F', 145), +(104104, 'Tresa', 1972, 'F', 145), +(104105, 'Angelic', 1972, 'F', 144), +(104106, 'Consuela', 1972, 'F', 144), +(104107, 'Georgette', 1972, 'F', 144), +(104108, 'Johnnie', 1972, 'F', 144), +(104109, 'Cristin', 1972, 'F', 143), +(104110, 'Dusty', 1972, 'F', 143), +(104111, 'Althea', 1972, 'F', 142), +(104112, 'Cherry', 1972, 'F', 142), +(104113, 'Lolita', 1972, 'F', 142), +(104114, 'Susannah', 1972, 'F', 142), +(104115, 'Carin', 1972, 'F', 141), +(104116, 'Claudette', 1972, 'F', 141), +(104117, 'Jayne', 1972, 'F', 141), +(104118, 'Leila', 1972, 'F', 141), +(104119, 'Rocio', 1972, 'F', 141), +(104120, 'Tomika', 1972, 'F', 141), +(104121, 'Wilma', 1972, 'F', 141), +(104122, 'Britt', 1972, 'F', 140), +(104123, 'Gayla', 1972, 'F', 140), +(104124, 'Lily', 1972, 'F', 140), +(104125, 'Mellisa', 1972, 'F', 140), +(104126, 'Chantelle', 1972, 'F', 139), +(104127, 'Richard', 1972, 'F', 139), +(104128, 'Roslyn', 1972, 'F', 139), +(104129, 'Tomeka', 1972, 'F', 139), +(104130, 'Andra', 1972, 'F', 138), +(104131, 'Milissa', 1972, 'F', 138), +(104132, 'Teressa', 1972, 'F', 138), +(104133, 'Alexandria', 1972, 'F', 137), +(104134, 'Jada', 1972, 'F', 137), +(104135, 'Racheal', 1972, 'F', 137), +(104136, 'Robbin', 1972, 'F', 137), +(104137, 'Corrie', 1972, 'F', 136), +(104138, 'Dedra', 1972, 'F', 136), +(104139, 'Jena', 1972, 'F', 136), +(104140, 'Sheena', 1972, 'F', 136), +(104141, 'Carri', 1972, 'F', 135), +(104142, 'Griselda', 1972, 'F', 135), +(104143, 'Anthony', 1972, 'F', 134), +(104144, 'Camilla', 1972, 'F', 134), +(104145, 'Jolie', 1972, 'F', 134), +(104146, 'Ernestine', 1972, 'F', 133), +(104147, 'Kenyatta', 1972, 'F', 133), +(104148, 'Kirstin', 1972, 'F', 133), +(104149, 'Lorri', 1972, 'F', 133), +(104150, 'Shanta', 1972, 'F', 133), +(104151, 'Tanja', 1972, 'F', 133), +(104152, 'Brigette', 1972, 'F', 132), +(104153, 'Christel', 1972, 'F', 132), +(104154, 'Collette', 1972, 'F', 132), +(104155, 'Daniel', 1972, 'F', 132), +(104156, 'Keesha', 1972, 'F', 132), +(104157, 'Lila', 1972, 'F', 132), +(104158, 'Roseann', 1972, 'F', 132), +(104159, 'Sofia', 1972, 'F', 132), +(104160, 'Treva', 1972, 'F', 132), +(104161, 'Bree', 1972, 'F', 131), +(104162, 'Brook', 1972, 'F', 131), +(104163, 'Esperanza', 1972, 'F', 131), +(104164, 'Liliana', 1972, 'F', 131), +(104165, 'Stephaine', 1972, 'F', 131), +(104166, 'Tamala', 1972, 'F', 131), +(104167, 'Willie', 1972, 'F', 131), +(104168, 'Elsie', 1972, 'F', 130), +(104169, 'Shawnda', 1972, 'F', 130), +(104170, 'Damaris', 1972, 'F', 129), +(104171, 'Geri', 1972, 'F', 129), +(104172, 'Josefina', 1972, 'F', 129), +(104173, 'Kathie', 1972, 'F', 129), +(104174, 'Pamala', 1972, 'F', 129), +(104175, 'Gillian', 1972, 'F', 128), +(104176, 'Jewel', 1972, 'F', 128), +(104177, 'Joseph', 1972, 'F', 128), +(104178, 'Patrica', 1972, 'F', 128), +(104179, 'Racquel', 1972, 'F', 128), +(104180, 'Rhoda', 1972, 'F', 128), +(104181, 'Starla', 1972, 'F', 128), +(104182, 'Viola', 1972, 'F', 128), +(104183, 'Corrine', 1972, 'F', 127), +(104184, 'Lavonne', 1972, 'F', 127), +(104185, 'Magdalena', 1972, 'F', 127), +(104186, 'Marguerite', 1972, 'F', 127), +(104187, 'Octavia', 1972, 'F', 127), +(104188, 'Adriane', 1972, 'F', 126), +(104189, 'Flora', 1972, 'F', 126), +(104190, 'Latrina', 1972, 'F', 126), +(104191, 'Felisha', 1972, 'F', 125), +(104192, 'Layla', 1972, 'F', 125), +(104193, 'Rolanda', 1972, 'F', 125), +(104194, 'Shea', 1972, 'F', 125), +(104195, 'Celena', 1972, 'F', 124), +(104196, 'Jenniffer', 1972, 'F', 124), +(104197, 'Juliette', 1972, 'F', 124), +(104198, 'Lasonya', 1972, 'F', 124), +(104199, 'Libby', 1972, 'F', 124), +(104200, 'Rebeca', 1972, 'F', 124), +(104201, 'Sherita', 1972, 'F', 124), +(104202, 'Tracee', 1972, 'F', 124), +(104203, 'Charisse', 1972, 'F', 123), +(104204, 'Julianna', 1972, 'F', 123), +(104205, 'Kori', 1972, 'F', 123), +(104206, 'Stephany', 1972, 'F', 123), +(104207, 'Valeria', 1972, 'F', 123), +(104208, 'Charles', 1972, 'F', 122), +(104209, 'Cherise', 1972, 'F', 122), +(104210, 'Lanette', 1972, 'F', 122), +(104211, 'Agnes', 1972, 'F', 121), +(104212, 'Bettina', 1972, 'F', 121), +(104213, 'Marybeth', 1972, 'F', 121), +(104214, 'Mattie', 1972, 'F', 121), +(104215, 'Tena', 1972, 'F', 121), +(104216, 'Dione', 1972, 'F', 120), +(104217, 'Francis', 1972, 'F', 120), +(104218, 'Gerri', 1972, 'F', 120), +(104219, 'Velma', 1972, 'F', 120), +(104220, 'Corrina', 1972, 'F', 119), +(104221, 'Elvira', 1972, 'F', 119), +(104222, 'Eric', 1972, 'F', 119), +(104223, 'Jayme', 1972, 'F', 119), +(104224, 'Matthew', 1972, 'F', 119), +(104225, 'Kecia', 1972, 'F', 118), +(104226, 'Keshia', 1972, 'F', 118), +(104227, 'Kevin', 1972, 'F', 118), +(104228, 'Kyra', 1972, 'F', 118), +(104229, 'Marquita', 1972, 'F', 118), +(104230, 'Tarra', 1972, 'F', 118), +(104231, 'Glenna', 1972, 'F', 117), +(104232, 'Michaela', 1972, 'F', 117), +(104233, 'Petra', 1972, 'F', 117), +(104234, 'Portia', 1972, 'F', 117), +(104235, 'Rona', 1972, 'F', 117), +(104236, 'Gia', 1972, 'F', 116), +(104237, 'Jacquline', 1972, 'F', 116), +(104238, 'Kathi', 1972, 'F', 116), +(104239, 'Nannette', 1972, 'F', 116), +(104240, 'Shandra', 1972, 'F', 116), +(104241, 'Shay', 1972, 'F', 116), +(104242, 'Shiela', 1972, 'F', 116), +(104243, 'Kimberlie', 1972, 'F', 115), +(104244, 'Stefani', 1972, 'F', 115), +(104245, 'Carmelita', 1972, 'F', 114), +(104246, 'Charissa', 1972, 'F', 114), +(104247, 'Kendall', 1972, 'F', 114), +(104248, 'Lilia', 1972, 'F', 114), +(104249, 'Minnie', 1972, 'F', 114), +(104250, 'Nicol', 1972, 'F', 114), +(104251, 'Shani', 1972, 'F', 114), +(104252, 'Timothy', 1972, 'F', 114), +(104253, 'Valorie', 1972, 'F', 114), +(104254, 'Alberta', 1972, 'F', 113), +(104255, 'Barbra', 1972, 'F', 113), +(104256, 'Bobby', 1972, 'F', 113), +(104257, 'Carlene', 1972, 'F', 113), +(104258, 'Daniela', 1972, 'F', 113), +(104259, 'Laverne', 1972, 'F', 113), +(104260, 'Melba', 1972, 'F', 113), +(104261, 'Noreen', 1972, 'F', 113), +(104262, 'Brenna', 1972, 'F', 112), +(104263, 'Caren', 1972, 'F', 112), +(104264, 'Lia', 1972, 'F', 112), +(104265, 'Nichelle', 1972, 'F', 112), +(104266, 'Phoebe', 1972, 'F', 112), +(104267, 'Roxann', 1972, 'F', 112), +(104268, 'Callie', 1972, 'F', 111), +(104269, 'Gidget', 1972, 'F', 111), +(104270, 'Jonna', 1972, 'F', 111), +(104271, 'Nickie', 1972, 'F', 111), +(104272, 'Shantell', 1972, 'F', 111), +(104273, 'Sherie', 1972, 'F', 111), +(104274, 'Tatanisha', 1972, 'F', 111), +(104275, 'Alysia', 1972, 'F', 110), +(104276, 'Cristal', 1972, 'F', 110), +(104277, 'Fatima', 1972, 'F', 110), +(104278, 'Gabriella', 1972, 'F', 110), +(104279, 'Lesli', 1972, 'F', 110), +(104280, 'Minerva', 1972, 'F', 110), +(104281, 'Towanda', 1972, 'F', 110), +(104282, 'Christen', 1972, 'F', 109), +(104283, 'Cotina', 1972, 'F', 109), +(104284, 'Crissy', 1972, 'F', 109), +(104285, 'Francisca', 1972, 'F', 109), +(104286, 'Lorene', 1972, 'F', 109), +(104287, 'Milagros', 1972, 'F', 109), +(104288, 'Renea', 1972, 'F', 109), +(104289, 'Violet', 1972, 'F', 109), +(104290, 'Hallie', 1972, 'F', 108), +(104291, 'Helene', 1972, 'F', 108), +(104292, 'Kristan', 1972, 'F', 108), +(104293, 'Laquita', 1972, 'F', 108), +(104294, 'Nicolette', 1972, 'F', 108), +(104295, 'Tobi', 1972, 'F', 108), +(104296, 'Twana', 1972, 'F', 108), +(104297, 'Twila', 1972, 'F', 108), +(104298, 'Aisha', 1972, 'F', 107), +(104299, 'Carmella', 1972, 'F', 107), +(104300, 'Marti', 1972, 'F', 107), +(104301, 'Mendy', 1972, 'F', 107), +(104302, 'Keli', 1972, 'F', 106), +(104303, 'Kimberli', 1972, 'F', 106), +(104304, 'Kyla', 1972, 'F', 106), +(104305, 'Lela', 1972, 'F', 106), +(104306, 'Loriann', 1972, 'F', 106), +(104307, 'Sunny', 1972, 'F', 106), +(104308, 'Zandra', 1972, 'F', 106), +(104309, 'Alanna', 1972, 'F', 105), +(104310, 'Dolly', 1972, 'F', 105), +(104311, 'Edwina', 1972, 'F', 105), +(104312, 'Inez', 1972, 'F', 105), +(104313, 'Kira', 1972, 'F', 105), +(104314, 'Steven', 1972, 'F', 105), +(104315, 'Davida', 1972, 'F', 104), +(104316, 'Deloris', 1972, 'F', 104), +(104317, 'Evangeline', 1972, 'F', 104), +(104318, 'Imelda', 1972, 'F', 104), +(104319, 'Larhonda', 1972, 'F', 104), +(104320, 'Lidia', 1972, 'F', 104), +(104321, 'Sadie', 1972, 'F', 104), +(104322, 'Angella', 1972, 'F', 103), +(104323, 'Calandra', 1972, 'F', 103), +(104324, 'Delilah', 1972, 'F', 103), +(104325, 'Elva', 1972, 'F', 103), +(104326, 'Lashon', 1972, 'F', 102), +(104327, 'Marlena', 1972, 'F', 102), +(104328, 'Dona', 1972, 'F', 101), +(104329, 'Dorothea', 1972, 'F', 101), +(104330, 'Estella', 1972, 'F', 101); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(104331, 'Jillian', 1972, 'F', 101), +(104332, 'Lou', 1972, 'F', 101), +(104333, 'Machelle', 1972, 'F', 101), +(104334, 'Rosanne', 1972, 'F', 101), +(104335, 'Ali', 1972, 'F', 100), +(104336, 'Annamarie', 1972, 'F', 100), +(104337, 'Deedee', 1972, 'F', 100), +(104338, 'Linette', 1972, 'F', 100), +(104339, 'Lorinda', 1972, 'F', 100), +(104340, 'Nita', 1972, 'F', 100), +(104341, 'Shara', 1972, 'F', 100), +(104342, 'Teena', 1972, 'F', 100), +(104343, 'Michael', 1972, 'M', 71426), +(104344, 'Christopher', 1972, 'M', 52195), +(104345, 'James', 1972, 'M', 47084), +(104346, 'David', 1972, 'M', 46382), +(104347, 'John', 1972, 'M', 43183), +(104348, 'Robert', 1972, 'M', 43035), +(104349, 'Jason', 1972, 'M', 37448), +(104350, 'Brian', 1972, 'M', 36327), +(104351, 'William', 1972, 'M', 30529), +(104352, 'Matthew', 1972, 'M', 22947), +(104353, 'Scott', 1972, 'M', 22866), +(104354, 'Joseph', 1972, 'M', 22465), +(104355, 'Kevin', 1972, 'M', 22368), +(104356, 'Richard', 1972, 'M', 22322), +(104357, 'Daniel', 1972, 'M', 22115), +(104358, 'Eric', 1972, 'M', 22046), +(104359, 'Jeffrey', 1972, 'M', 21688), +(104360, 'Mark', 1972, 'M', 21511), +(104361, 'Steven', 1972, 'M', 19861), +(104362, 'Thomas', 1972, 'M', 19571), +(104363, 'Timothy', 1972, 'M', 17612), +(104364, 'Anthony', 1972, 'M', 17454), +(104365, 'Charles', 1972, 'M', 16981), +(104366, 'Paul', 1972, 'M', 14568), +(104367, 'Chad', 1972, 'M', 13401), +(104368, 'Gregory', 1972, 'M', 13071), +(104369, 'Kenneth', 1972, 'M', 12337), +(104370, 'Shawn', 1972, 'M', 11286), +(104371, 'Stephen', 1972, 'M', 11045), +(104372, 'Andrew', 1972, 'M', 10129), +(104373, 'Todd', 1972, 'M', 9988), +(104374, 'Ronald', 1972, 'M', 9508), +(104375, 'Sean', 1972, 'M', 9455), +(104376, 'Edward', 1972, 'M', 9305), +(104377, 'Patrick', 1972, 'M', 9279), +(104378, 'Donald', 1972, 'M', 9264), +(104379, 'Jonathan', 1972, 'M', 9225), +(104380, 'Keith', 1972, 'M', 9156), +(104381, 'Ryan', 1972, 'M', 8904), +(104382, 'Aaron', 1972, 'M', 7865), +(104383, 'Gary', 1972, 'M', 7767), +(104384, 'Jeremy', 1972, 'M', 7403), +(104385, 'Douglas', 1972, 'M', 7396), +(104386, 'George', 1972, 'M', 7163), +(104387, 'Bryan', 1972, 'M', 7037), +(104388, 'Craig', 1972, 'M', 6729), +(104389, 'Larry', 1972, 'M', 6610), +(104390, 'Peter', 1972, 'M', 6478), +(104391, 'Troy', 1972, 'M', 6351), +(104392, 'Jose', 1972, 'M', 5932), +(104393, 'Adam', 1972, 'M', 5749), +(104394, 'Dennis', 1972, 'M', 5609), +(104395, 'Jerry', 1972, 'M', 5601), +(104396, 'Raymond', 1972, 'M', 5445), +(104397, 'Shane', 1972, 'M', 5243), +(104398, 'Frank', 1972, 'M', 5167), +(104399, 'Travis', 1972, 'M', 5141), +(104400, 'Jeffery', 1972, 'M', 5069), +(104401, 'Joshua', 1972, 'M', 5040), +(104402, 'Justin', 1972, 'M', 4973), +(104403, 'Bradley', 1972, 'M', 4833), +(104404, 'Terry', 1972, 'M', 4772), +(104405, 'Brandon', 1972, 'M', 4633), +(104406, 'Benjamin', 1972, 'M', 4505), +(104407, 'Rodney', 1972, 'M', 4366), +(104408, 'Samuel', 1972, 'M', 4215), +(104409, 'Derek', 1972, 'M', 4146), +(104410, 'Tony', 1972, 'M', 3998), +(104411, 'Russell', 1972, 'M', 3784), +(104412, 'Randy', 1972, 'M', 3737), +(104413, 'Marcus', 1972, 'M', 3688), +(104414, 'Jamie', 1972, 'M', 3680), +(104415, 'Juan', 1972, 'M', 3673), +(104416, 'Johnny', 1972, 'M', 3567), +(104417, 'Roger', 1972, 'M', 3538), +(104418, 'Brent', 1972, 'M', 3536), +(104419, 'Phillip', 1972, 'M', 3533), +(104420, 'Joel', 1972, 'M', 3530), +(104421, 'Nathan', 1972, 'M', 3520), +(104422, 'Brett', 1972, 'M', 3513), +(104423, 'Chris', 1972, 'M', 3481), +(104424, 'Billy', 1972, 'M', 3471), +(104425, 'Marc', 1972, 'M', 3465), +(104426, 'Carlos', 1972, 'M', 3436), +(104427, 'Carl', 1972, 'M', 3410), +(104428, 'Erik', 1972, 'M', 3400), +(104429, 'Danny', 1972, 'M', 3307), +(104430, 'Jesse', 1972, 'M', 3229), +(104431, 'Jon', 1972, 'M', 3224), +(104432, 'Bobby', 1972, 'M', 3178), +(104433, 'Derrick', 1972, 'M', 3087), +(104434, 'Curtis', 1972, 'M', 3078), +(104435, 'Antonio', 1972, 'M', 3017), +(104436, 'Shannon', 1972, 'M', 3014), +(104437, 'Corey', 1972, 'M', 2993), +(104438, 'Christian', 1972, 'M', 2963), +(104439, 'Jimmy', 1972, 'M', 2931), +(104440, 'Walter', 1972, 'M', 2914), +(104441, 'Nicholas', 1972, 'M', 2846), +(104442, 'Lawrence', 1972, 'M', 2826), +(104443, 'Joe', 1972, 'M', 2822), +(104444, 'Gerald', 1972, 'M', 2820), +(104445, 'Wayne', 1972, 'M', 2795), +(104446, 'Philip', 1972, 'M', 2774), +(104447, 'Vincent', 1972, 'M', 2745), +(104448, 'Darren', 1972, 'M', 2673), +(104449, 'Victor', 1972, 'M', 2620), +(104450, 'Micheal', 1972, 'M', 2607), +(104451, 'Willie', 1972, 'M', 2593), +(104452, 'Alan', 1972, 'M', 2577), +(104453, 'Tracy', 1972, 'M', 2538), +(104454, 'Albert', 1972, 'M', 2509), +(104455, 'Roy', 1972, 'M', 2479), +(104456, 'Kyle', 1972, 'M', 2476), +(104457, 'Frederick', 1972, 'M', 2447), +(104458, 'Jay', 1972, 'M', 2445), +(104459, 'Martin', 1972, 'M', 2425), +(104460, 'Henry', 1972, 'M', 2422), +(104461, 'Arthur', 1972, 'M', 2397), +(104462, 'Randall', 1972, 'M', 2357), +(104463, 'Bruce', 1972, 'M', 2317), +(104464, 'Darrell', 1972, 'M', 2311), +(104465, 'Allen', 1972, 'M', 2307), +(104466, 'Luis', 1972, 'M', 2276), +(104467, 'Lee', 1972, 'M', 2264), +(104468, 'Lance', 1972, 'M', 2258), +(104469, 'Ricky', 1972, 'M', 2238), +(104470, 'Andre', 1972, 'M', 2153), +(104471, 'Alexander', 1972, 'M', 2123), +(104472, 'Louis', 1972, 'M', 2106), +(104473, 'Dale', 1972, 'M', 2065), +(104474, 'Harold', 1972, 'M', 2036), +(104475, 'Ronnie', 1972, 'M', 2005), +(104476, 'Glenn', 1972, 'M', 1982), +(104477, 'Jermaine', 1972, 'M', 1962), +(104478, 'Cory', 1972, 'M', 1958), +(104479, 'Damon', 1972, 'M', 1928), +(104480, 'Mario', 1972, 'M', 1928), +(104481, 'Gabriel', 1972, 'M', 1918), +(104482, 'Kelly', 1972, 'M', 1918), +(104483, 'Reginald', 1972, 'M', 1915), +(104484, 'Jack', 1972, 'M', 1900), +(104485, 'Steve', 1972, 'M', 1850), +(104486, 'Tyrone', 1972, 'M', 1840), +(104487, 'Eugene', 1972, 'M', 1808), +(104488, 'Tommy', 1972, 'M', 1776), +(104489, 'Ernest', 1972, 'M', 1770), +(104490, 'Barry', 1972, 'M', 1754), +(104491, 'Brad', 1972, 'M', 1751), +(104492, 'Eddie', 1972, 'M', 1745), +(104493, 'Leonard', 1972, 'M', 1718), +(104494, 'Manuel', 1972, 'M', 1705), +(104495, 'Ricardo', 1972, 'M', 1700), +(104496, 'Wesley', 1972, 'M', 1695), +(104497, 'Dean', 1972, 'M', 1685), +(104498, 'Jacob', 1972, 'M', 1685), +(104499, 'Duane', 1972, 'M', 1678), +(104500, 'Adrian', 1972, 'M', 1676), +(104501, 'Ralph', 1972, 'M', 1671), +(104502, 'Maurice', 1972, 'M', 1642), +(104503, 'Jesus', 1972, 'M', 1613), +(104504, 'Marvin', 1972, 'M', 1597), +(104505, 'Dwayne', 1972, 'M', 1592), +(104506, 'Kurt', 1972, 'M', 1586), +(104507, 'Dustin', 1972, 'M', 1562), +(104508, 'Jerome', 1972, 'M', 1547), +(104509, 'Jeff', 1972, 'M', 1543), +(104510, 'Howard', 1972, 'M', 1497), +(104511, 'Clinton', 1972, 'M', 1486), +(104512, 'Stanley', 1972, 'M', 1476), +(104513, 'Melvin', 1972, 'M', 1456), +(104514, 'Calvin', 1972, 'M', 1451), +(104515, 'Greg', 1972, 'M', 1438), +(104516, 'Theodore', 1972, 'M', 1424), +(104517, 'Miguel', 1972, 'M', 1421), +(104518, 'Roberto', 1972, 'M', 1400), +(104519, 'Edwin', 1972, 'M', 1394), +(104520, 'Mike', 1972, 'M', 1392), +(104521, 'Mitchell', 1972, 'M', 1370), +(104522, 'Kirk', 1972, 'M', 1350), +(104523, 'Jody', 1972, 'M', 1340), +(104524, 'Francisco', 1972, 'M', 1335), +(104525, 'Harry', 1972, 'M', 1332), +(104526, 'Ruben', 1972, 'M', 1324), +(104527, 'Neil', 1972, 'M', 1304), +(104528, 'Clifford', 1972, 'M', 1267), +(104529, 'Jared', 1972, 'M', 1261), +(104530, 'Earl', 1972, 'M', 1252), +(104531, 'Ian', 1972, 'M', 1249), +(104532, 'Heath', 1972, 'M', 1234), +(104533, 'Clarence', 1972, 'M', 1216), +(104534, 'Nathaniel', 1972, 'M', 1209), +(104535, 'Daryl', 1972, 'M', 1203), +(104536, 'Jorge', 1972, 'M', 1198), +(104537, 'Casey', 1972, 'M', 1189), +(104538, 'Alex', 1972, 'M', 1187), +(104539, 'Ray', 1972, 'M', 1178), +(104540, 'Norman', 1972, 'M', 1175), +(104541, 'Karl', 1972, 'M', 1169), +(104542, 'Alfred', 1972, 'M', 1163), +(104543, 'Terrence', 1972, 'M', 1161), +(104544, 'Glen', 1972, 'M', 1155), +(104545, 'Darin', 1972, 'M', 1129), +(104546, 'Hector', 1972, 'M', 1115), +(104547, 'Oscar', 1972, 'M', 1111), +(104548, 'Terrance', 1972, 'M', 1109), +(104549, 'Lonnie', 1972, 'M', 1099), +(104550, 'Trevor', 1972, 'M', 1097), +(104551, 'Warren', 1972, 'M', 1097), +(104552, 'Geoffrey', 1972, 'M', 1056), +(104553, 'Wade', 1972, 'M', 1054), +(104554, 'Raul', 1972, 'M', 1051), +(104555, 'Bernard', 1972, 'M', 1048), +(104556, 'Fred', 1972, 'M', 1040), +(104557, 'Lamont', 1972, 'M', 1039), +(104558, 'Dana', 1972, 'M', 1031), +(104559, 'Marlon', 1972, 'M', 1028), +(104560, 'Leon', 1972, 'M', 1026), +(104561, 'Jaime', 1972, 'M', 1007), +(104562, 'Ramon', 1972, 'M', 1003), +(104563, 'Zachary', 1972, 'M', 1003), +(104564, 'Francis', 1972, 'M', 990), +(104565, 'Don', 1972, 'M', 977), +(104566, 'Gilbert', 1972, 'M', 963), +(104567, 'Angel', 1972, 'M', 956), +(104568, 'Shaun', 1972, 'M', 950), +(104569, 'Byron', 1972, 'M', 946), +(104570, 'Fredrick', 1972, 'M', 944), +(104571, 'Roderick', 1972, 'M', 941), +(104572, 'Clayton', 1972, 'M', 931), +(104573, 'Franklin', 1972, 'M', 928), +(104574, 'Rafael', 1972, 'M', 928), +(104575, 'Leroy', 1972, 'M', 917), +(104576, 'Stacy', 1972, 'M', 914), +(104577, 'Clint', 1972, 'M', 910), +(104578, 'Joey', 1972, 'M', 909), +(104579, 'Mathew', 1972, 'M', 909), +(104580, 'Darryl', 1972, 'M', 903), +(104581, 'Javier', 1972, 'M', 898), +(104582, 'Cedric', 1972, 'M', 895), +(104583, 'Toby', 1972, 'M', 890), +(104584, 'Alvin', 1972, 'M', 884), +(104585, 'Kelvin', 1972, 'M', 883), +(104586, 'Seth', 1972, 'M', 870), +(104587, 'Vernon', 1972, 'M', 865), +(104588, 'Donnie', 1972, 'M', 861), +(104589, 'Darrin', 1972, 'M', 860), +(104590, 'Pedro', 1972, 'M', 842), +(104591, 'Leslie', 1972, 'M', 838), +(104592, 'Tyler', 1972, 'M', 834), +(104593, 'Isaac', 1972, 'M', 807), +(104594, 'Herbert', 1972, 'M', 805), +(104595, 'Lewis', 1972, 'M', 804), +(104596, 'Kent', 1972, 'M', 788), +(104597, 'Fernando', 1972, 'M', 786), +(104598, 'Armando', 1972, 'M', 775), +(104599, 'Dwight', 1972, 'M', 774), +(104600, 'Andy', 1972, 'M', 770), +(104601, 'Rene', 1972, 'M', 765), +(104602, 'Scotty', 1972, 'M', 758), +(104603, 'Jessie', 1972, 'M', 755), +(104604, 'Lloyd', 1972, 'M', 752), +(104605, 'Erick', 1972, 'M', 748), +(104606, 'Gene', 1972, 'M', 743), +(104607, 'Kerry', 1972, 'M', 736), +(104608, 'Tim', 1972, 'M', 733), +(104609, 'Guy', 1972, 'M', 728), +(104610, 'Marco', 1972, 'M', 724), +(104611, 'Gordon', 1972, 'M', 719), +(104612, 'Bryant', 1972, 'M', 716), +(104613, 'Kristopher', 1972, 'M', 713), +(104614, 'Trent', 1972, 'M', 711), +(104615, 'Eduardo', 1972, 'M', 709), +(104616, 'Jim', 1972, 'M', 709), +(104617, 'Ross', 1972, 'M', 709), +(104618, 'Alejandro', 1972, 'M', 701), +(104619, 'Ivan', 1972, 'M', 693), +(104620, 'Johnnie', 1972, 'M', 693), +(104621, 'Bill', 1972, 'M', 687), +(104622, 'Rick', 1972, 'M', 684), +(104623, 'Alberto', 1972, 'M', 676), +(104624, 'Dan', 1972, 'M', 676), +(104625, 'Jackie', 1972, 'M', 675), +(104626, 'Jimmie', 1972, 'M', 666), +(104627, 'Ted', 1972, 'M', 666), +(104628, 'Johnathan', 1972, 'M', 656), +(104629, 'Marshall', 1972, 'M', 645), +(104630, 'Omar', 1972, 'M', 645), +(104631, 'Sergio', 1972, 'M', 642), +(104632, 'Charlie', 1972, 'M', 640), +(104633, 'Edgar', 1972, 'M', 633), +(104634, 'Bret', 1972, 'M', 630), +(104635, 'Orlando', 1972, 'M', 630), +(104636, 'Gregg', 1972, 'M', 628), +(104637, 'Allan', 1972, 'M', 626), +(104638, 'Damian', 1972, 'M', 625), +(104639, 'Julian', 1972, 'M', 625), +(104640, 'Clifton', 1972, 'M', 623), +(104641, 'Nelson', 1972, 'M', 622), +(104642, 'Spencer', 1972, 'M', 621), +(104643, 'Chadwick', 1972, 'M', 619), +(104644, 'Julio', 1972, 'M', 614), +(104645, 'Marty', 1972, 'M', 614), +(104646, 'Floyd', 1972, 'M', 610), +(104647, 'Arturo', 1972, 'M', 597), +(104648, 'Demetrius', 1972, 'M', 597), +(104649, 'Enrique', 1972, 'M', 596), +(104650, 'Ben', 1972, 'M', 594), +(104651, 'Freddie', 1972, 'M', 594), +(104652, 'Alfredo', 1972, 'M', 592), +(104653, 'Lester', 1972, 'M', 588), +(104654, 'Matt', 1972, 'M', 588), +(104655, 'Stuart', 1972, 'M', 587), +(104656, 'Dominic', 1972, 'M', 583), +(104657, 'Robbie', 1972, 'M', 583), +(104658, 'Tom', 1972, 'M', 581), +(104659, 'Roland', 1972, 'M', 579), +(104660, 'Grant', 1972, 'M', 576), +(104661, 'Luke', 1972, 'M', 575), +(104662, 'Colin', 1972, 'M', 572), +(104663, 'Preston', 1972, 'M', 570), +(104664, 'Cameron', 1972, 'M', 559), +(104665, 'Evan', 1972, 'M', 559), +(104666, 'Jonathon', 1972, 'M', 558), +(104667, 'Nick', 1972, 'M', 553), +(104668, 'Herman', 1972, 'M', 552), +(104669, 'Leo', 1972, 'M', 549), +(104670, 'Garrett', 1972, 'M', 543), +(104671, 'Stacey', 1972, 'M', 542), +(104672, 'Perry', 1972, 'M', 541), +(104673, 'Noel', 1972, 'M', 537), +(104674, 'Angelo', 1972, 'M', 536), +(104675, 'Neal', 1972, 'M', 533), +(104676, 'Dewayne', 1972, 'M', 530), +(104677, 'Terence', 1972, 'M', 529), +(104678, 'Antoine', 1972, 'M', 527), +(104679, 'Felix', 1972, 'M', 526), +(104680, 'Lorenzo', 1972, 'M', 522), +(104681, 'Jarrod', 1972, 'M', 520), +(104682, 'Ethan', 1972, 'M', 517), +(104683, 'Robin', 1972, 'M', 517), +(104684, 'Rickey', 1972, 'M', 509), +(104685, 'Brendan', 1972, 'M', 503), +(104686, 'Kenny', 1972, 'M', 502), +(104687, 'Ron', 1972, 'M', 499), +(104688, 'Sam', 1972, 'M', 499), +(104689, 'Frankie', 1972, 'M', 494), +(104690, 'Cesar', 1972, 'M', 493), +(104691, 'Clyde', 1972, 'M', 487), +(104692, 'Milton', 1972, 'M', 487), +(104693, 'Cody', 1972, 'M', 485), +(104694, 'Israel', 1972, 'M', 485), +(104695, 'Dexter', 1972, 'M', 484), +(104696, 'Cecil', 1972, 'M', 475), +(104697, 'Arnold', 1972, 'M', 474), +(104698, 'Rudy', 1972, 'M', 473), +(104699, 'Bradford', 1972, 'M', 469), +(104700, 'Devin', 1972, 'M', 469), +(104701, 'Darnell', 1972, 'M', 468), +(104702, 'Bryce', 1972, 'M', 467), +(104703, 'Tracey', 1972, 'M', 466), +(104704, 'Timmy', 1972, 'M', 465), +(104705, 'Carlton', 1972, 'M', 463), +(104706, 'Blake', 1972, 'M', 461), +(104707, 'Sammy', 1972, 'M', 461), +(104708, 'Sidney', 1972, 'M', 461), +(104709, 'Jayson', 1972, 'M', 460), +(104710, 'Gerardo', 1972, 'M', 457), +(104711, 'Brady', 1972, 'M', 452), +(104712, 'Malcolm', 1972, 'M', 451), +(104713, 'Salvador', 1972, 'M', 451), +(104714, 'Ernesto', 1972, 'M', 449), +(104715, 'Harvey', 1972, 'M', 445), +(104716, 'Clay', 1972, 'M', 441), +(104717, 'Scot', 1972, 'M', 438), +(104718, 'Scottie', 1972, 'M', 435), +(104719, 'Jamal', 1972, 'M', 433), +(104720, 'Loren', 1972, 'M', 433), +(104721, 'Wendell', 1972, 'M', 433), +(104722, 'Everett', 1972, 'M', 426), +(104723, 'Ty', 1972, 'M', 425), +(104724, 'Lamar', 1972, 'M', 424), +(104725, 'Bryon', 1972, 'M', 422), +(104726, 'Noah', 1972, 'M', 421), +(104727, 'Salvatore', 1972, 'M', 420), +(104728, 'Dion', 1972, 'M', 416), +(104729, 'Randolph', 1972, 'M', 416), +(104730, 'Cary', 1972, 'M', 411), +(104731, 'Chester', 1972, 'M', 411), +(104732, 'Marcos', 1972, 'M', 407), +(104733, 'Donovan', 1972, 'M', 404), +(104734, 'Hugh', 1972, 'M', 403), +(104735, 'Demond', 1972, 'M', 402), +(104736, 'Kris', 1972, 'M', 401), +(104737, 'Gerard', 1972, 'M', 399), +(104738, 'Max', 1972, 'M', 393), +(104739, 'Abraham', 1972, 'M', 388), +(104740, 'Jamey', 1972, 'M', 387), +(104741, 'Rodolfo', 1972, 'M', 386), +(104742, 'Alfonso', 1972, 'M', 385), +(104743, 'Randal', 1972, 'M', 383), +(104744, 'Shad', 1972, 'M', 381), +(104745, 'Curt', 1972, 'M', 380), +(104746, 'Otis', 1972, 'M', 379), +(104747, 'Kareem', 1972, 'M', 377), +(104748, 'Myron', 1972, 'M', 377), +(104749, 'Rex', 1972, 'M', 373), +(104750, 'Andres', 1972, 'M', 371), +(104751, 'Micah', 1972, 'M', 371), +(104752, 'Sherman', 1972, 'M', 370), +(104753, 'Alonzo', 1972, 'M', 369), +(104754, 'Oliver', 1972, 'M', 367), +(104755, 'Virgil', 1972, 'M', 367), +(104756, 'Garry', 1972, 'M', 366), +(104757, 'Cornelius', 1972, 'M', 365), +(104758, 'Thaddeus', 1972, 'M', 364), +(104759, 'Claude', 1972, 'M', 362), +(104760, 'Monte', 1972, 'M', 361), +(104761, 'Roman', 1972, 'M', 361), +(104762, 'Josh', 1972, 'M', 359), +(104763, 'Stephan', 1972, 'M', 353), +(104764, 'Pablo', 1972, 'M', 352), +(104765, 'Terrell', 1972, 'M', 352), +(104766, 'Benny', 1972, 'M', 348), +(104767, 'Ira', 1972, 'M', 347), +(104768, 'Quentin', 1972, 'M', 345), +(104769, 'Derick', 1972, 'M', 344), +(104770, 'Bart', 1972, 'M', 343), +(104771, 'Darrel', 1972, 'M', 343), +(104772, 'Jeremiah', 1972, 'M', 343), +(104773, 'Gilberto', 1972, 'M', 342), +(104774, 'Simon', 1972, 'M', 342), +(104775, 'Quincy', 1972, 'M', 339), +(104776, 'Teddy', 1972, 'M', 334), +(104777, 'Earnest', 1972, 'M', 333), +(104778, 'Kendall', 1972, 'M', 331), +(104779, 'Julius', 1972, 'M', 330), +(104780, 'Rusty', 1972, 'M', 328), +(104781, 'Mickey', 1972, 'M', 326), +(104782, 'Wallace', 1972, 'M', 326), +(104783, 'Sheldon', 1972, 'M', 325), +(104784, 'Drew', 1972, 'M', 324), +(104785, 'Abel', 1972, 'M', 322), +(104786, 'Rolando', 1972, 'M', 320), +(104787, 'Robby', 1972, 'M', 318), +(104788, 'Owen', 1972, 'M', 317), +(104789, 'Darrick', 1972, 'M', 314), +(104790, 'Lyle', 1972, 'M', 314), +(104791, 'Dave', 1972, 'M', 313), +(104792, 'Pete', 1972, 'M', 313), +(104793, 'Morris', 1972, 'M', 306), +(104794, 'Dallas', 1972, 'M', 305), +(104795, 'Dylan', 1972, 'M', 304), +(104796, 'Morgan', 1972, 'M', 303), +(104797, 'Kendrick', 1972, 'M', 302), +(104798, 'Marion', 1972, 'M', 300), +(104799, 'Jerald', 1972, 'M', 294), +(104800, 'Alton', 1972, 'M', 293), +(104801, 'Lynn', 1972, 'M', 293), +(104802, 'Darius', 1972, 'M', 292), +(104803, 'Luther', 1972, 'M', 292), +(104804, 'Erich', 1972, 'M', 290), +(104805, 'Erin', 1972, 'M', 289), +(104806, 'Ken', 1972, 'M', 289), +(104807, 'Felipe', 1972, 'M', 288), +(104808, 'Willard', 1972, 'M', 287), +(104809, 'Carey', 1972, 'M', 282), +(104810, 'Guillermo', 1972, 'M', 281), +(104811, 'Ismael', 1972, 'M', 280), +(104812, 'Rogelio', 1972, 'M', 279), +(104813, 'Ramiro', 1972, 'M', 278), +(104814, 'Dominick', 1972, 'M', 276), +(104815, 'Ashley', 1972, 'M', 274), +(104816, 'Damien', 1972, 'M', 274), +(104817, 'Clark', 1972, 'M', 273), +(104818, 'Forrest', 1972, 'M', 273), +(104819, 'Bennie', 1972, 'M', 272), +(104820, 'Stevie', 1972, 'M', 271), +(104821, 'Tyson', 1972, 'M', 269), +(104822, 'Archie', 1972, 'M', 266), +(104823, 'Eli', 1972, 'M', 266), +(104824, 'Jake', 1972, 'M', 266), +(104825, 'Kirby', 1972, 'M', 265), +(104826, 'Monty', 1972, 'M', 265), +(104827, 'Sonny', 1972, 'M', 263), +(104828, 'Stewart', 1972, 'M', 263), +(104829, 'Gustavo', 1972, 'M', 261), +(104830, 'Blaine', 1972, 'M', 259), +(104831, 'Jordan', 1972, 'M', 259), +(104832, 'Grady', 1972, 'M', 257), +(104833, 'Xavier', 1972, 'M', 257), +(104834, 'Doug', 1972, 'M', 256), +(104835, 'Stefan', 1972, 'M', 256), +(104836, 'Dante', 1972, 'M', 254), +(104837, 'Shon', 1972, 'M', 254), +(104838, 'Elias', 1972, 'M', 253), +(104839, 'Leland', 1972, 'M', 253), +(104840, 'Tomas', 1972, 'M', 253), +(104841, 'Guadalupe', 1972, 'M', 251), +(104842, 'Desmond', 1972, 'M', 246), +(104843, 'Deon', 1972, 'M', 245), +(104844, 'Edmund', 1972, 'M', 245), +(104845, 'Elmer', 1972, 'M', 245), +(104846, 'Leonardo', 1972, 'M', 245), +(104847, 'Saul', 1972, 'M', 245), +(104848, 'Willis', 1972, 'M', 245), +(104849, 'Jess', 1972, 'M', 242), +(104850, 'Donnell', 1972, 'M', 239), +(104851, 'Reynaldo', 1972, 'M', 238), +(104852, 'Tommie', 1972, 'M', 238), +(104853, 'Austin', 1972, 'M', 237), +(104854, 'Marlin', 1972, 'M', 237), +(104855, 'Damion', 1972, 'M', 236), +(104856, 'Donny', 1972, 'M', 236), +(104857, 'Jefferson', 1972, 'M', 233), +(104858, 'Lucas', 1972, 'M', 233), +(104859, 'Reuben', 1972, 'M', 232), +(104860, 'Buddy', 1972, 'M', 231), +(104861, 'Conrad', 1972, 'M', 231), +(104862, 'Rocky', 1972, 'M', 231), +(104863, 'Rudolph', 1972, 'M', 231), +(104864, 'Freddy', 1972, 'M', 230), +(104865, 'Roosevelt', 1972, 'M', 230), +(104866, 'Wilson', 1972, 'M', 229), +(104867, 'Jean', 1972, 'M', 227), +(104868, 'Chuck', 1972, 'M', 226), +(104869, 'Jamison', 1972, 'M', 226), +(104870, 'Vance', 1972, 'M', 226), +(104871, 'Hans', 1972, 'M', 225), +(104872, 'Denny', 1972, 'M', 224), +(104873, 'Sylvester', 1972, 'M', 224), +(104874, 'Thad', 1972, 'M', 224), +(104875, 'Jeffry', 1972, 'M', 223), +(104876, 'Brant', 1972, 'M', 222), +(104877, 'Ervin', 1972, 'M', 222), +(104878, 'Bob', 1972, 'M', 220), +(104879, 'Kim', 1972, 'M', 220), +(104880, 'Trenton', 1972, 'M', 220), +(104881, 'Delbert', 1972, 'M', 219), +(104882, 'Emanuel', 1972, 'M', 218), +(104883, 'Daren', 1972, 'M', 215), +(104884, 'Lionel', 1972, 'M', 215), +(104885, 'Laurence', 1972, 'M', 214), +(104886, 'Anton', 1972, 'M', 213), +(104887, 'Efrain', 1972, 'M', 213), +(104888, 'Fabian', 1972, 'M', 213), +(104889, 'Kristian', 1972, 'M', 212), +(104890, 'Louie', 1972, 'M', 212), +(104891, 'Elijah', 1972, 'M', 211), +(104892, 'Joesph', 1972, 'M', 211), +(104893, 'Levi', 1972, 'M', 211), +(104894, 'Colby', 1972, 'M', 210), +(104895, 'Jerrod', 1972, 'M', 210), +(104896, 'Courtney', 1972, 'M', 206), +(104897, 'Dorian', 1972, 'M', 206), +(104898, 'Kory', 1972, 'M', 206), +(104899, 'Miles', 1972, 'M', 206), +(104900, 'Reggie', 1972, 'M', 206), +(104901, 'Kurtis', 1972, 'M', 205), +(104902, 'Nicolas', 1972, 'M', 205), +(104903, 'Carlo', 1972, 'M', 204), +(104904, 'Horace', 1972, 'M', 204), +(104905, 'Dane', 1972, 'M', 203), +(104906, 'Marcel', 1972, 'M', 202), +(104907, 'Garrick', 1972, 'M', 201), +(104908, 'Bert', 1972, 'M', 200), +(104909, 'Elliott', 1972, 'M', 199), +(104910, 'Rob', 1972, 'M', 199), +(104911, 'Devon', 1972, 'M', 198), +(104912, 'Moses', 1972, 'M', 198), +(104913, 'Shayne', 1972, 'M', 198), +(104914, 'Graham', 1972, 'M', 195), +(104915, 'Emilio', 1972, 'M', 194), +(104916, 'Jasen', 1972, 'M', 193), +(104917, 'Rodger', 1972, 'M', 193), +(104918, 'Vaughn', 1972, 'M', 193), +(104919, 'Esteban', 1972, 'M', 192), +(104920, 'Jennifer', 1972, 'M', 190), +(104921, 'Brice', 1972, 'M', 189), +(104922, 'Alphonso', 1972, 'M', 188), +(104923, 'Rodrick', 1972, 'M', 188), +(104924, 'Rory', 1972, 'M', 187), +(104925, 'Joaquin', 1972, 'M', 186), +(104926, 'Galen', 1972, 'M', 185), +(104927, 'Royce', 1972, 'M', 185), +(104928, 'Van', 1972, 'M', 185), +(104929, 'Jarrett', 1972, 'M', 184), +(104930, 'Sterling', 1972, 'M', 184), +(104931, 'Wilbert', 1972, 'M', 184), +(104932, 'Will', 1972, 'M', 184), +(104933, 'Dewey', 1972, 'M', 182), +(104934, 'Hubert', 1972, 'M', 182), +(104935, 'Aron', 1972, 'M', 181), +(104936, 'Jeromy', 1972, 'M', 181), +(104937, 'Aubrey', 1972, 'M', 180), +(104938, 'Raphael', 1972, 'M', 180), +(104939, 'Brain', 1972, 'M', 179), +(104940, 'Rufus', 1972, 'M', 179), +(104941, 'Shelton', 1972, 'M', 179), +(104942, 'Santiago', 1972, 'M', 178), +(104943, 'Percy', 1972, 'M', 177), +(104944, 'Brock', 1972, 'M', 175), +(104945, 'Gavin', 1972, 'M', 174), +(104946, 'Hugo', 1972, 'M', 174), +(104947, 'Shelby', 1972, 'M', 173), +(104948, 'Ignacio', 1972, 'M', 171), +(104949, 'Avery', 1972, 'M', 170), +(104950, 'Garland', 1972, 'M', 169), +(104951, 'Chance', 1972, 'M', 168), +(104952, 'Emmanuel', 1972, 'M', 168), +(104953, 'Dino', 1972, 'M', 167), +(104954, 'Elton', 1972, 'M', 166), +(104955, 'Jonas', 1972, 'M', 166), +(104956, 'Torrey', 1972, 'M', 166), +(104957, 'Carter', 1972, 'M', 165), +(104958, 'Dirk', 1972, 'M', 165), +(104959, 'Tory', 1972, 'M', 164), +(104960, 'Al', 1972, 'M', 162), +(104961, 'Winston', 1972, 'M', 162), +(104962, 'Doyle', 1972, 'M', 161), +(104963, 'Vidal', 1972, 'M', 161), +(104964, 'Gerry', 1972, 'M', 160), +(104965, 'Tad', 1972, 'M', 160), +(104966, 'Denis', 1972, 'M', 159), +(104967, 'Santos', 1972, 'M', 159), +(104968, 'Jarvis', 1972, 'M', 158), +(104969, 'Theron', 1972, 'M', 158), +(104970, 'Vicente', 1972, 'M', 158), +(104971, 'Amos', 1972, 'M', 157), +(104972, 'Germaine', 1972, 'M', 157), +(104973, 'Robb', 1972, 'M', 157), +(104974, 'Wilfredo', 1972, 'M', 157), +(104975, 'Collin', 1972, 'M', 156), +(104976, 'Jacques', 1972, 'M', 156), +(104977, 'Mack', 1972, 'M', 156), +(104978, 'Ronny', 1972, 'M', 156), +(104979, 'Beau', 1972, 'M', 155), +(104980, 'Reid', 1972, 'M', 155), +(104981, 'Brenton', 1972, 'M', 154), +(104982, 'Danial', 1972, 'M', 154), +(104983, 'Jonah', 1972, 'M', 154), +(104984, 'Boyd', 1972, 'M', 153), +(104985, 'Elliot', 1972, 'M', 153), +(104986, 'Ellis', 1972, 'M', 153), +(104987, 'Sebastian', 1972, 'M', 153), +(104988, 'Garth', 1972, 'M', 152), +(104989, 'Kraig', 1972, 'M', 152), +(104990, 'Lowell', 1972, 'M', 152), +(104991, 'Rico', 1972, 'M', 152), +(104992, 'Tod', 1972, 'M', 152), +(104993, 'Aric', 1972, 'M', 151), +(104994, 'Lane', 1972, 'M', 151), +(104995, 'Pierre', 1972, 'M', 151), +(104996, 'Sammie', 1972, 'M', 151), +(104997, 'Humberto', 1972, 'M', 150), +(104998, 'Wyatt', 1972, 'M', 150), +(104999, 'Darian', 1972, 'M', 149), +(105000, 'Kip', 1972, 'M', 149), +(105001, 'Michel', 1972, 'M', 149), +(105002, 'Rickie', 1972, 'M', 149), +(105003, 'Emmett', 1972, 'M', 148), +(105004, 'Cornell', 1972, 'M', 147), +(105005, 'Ernie', 1972, 'M', 147), +(105006, 'Issac', 1972, 'M', 147), +(105007, 'Elbert', 1972, 'M', 146), +(105008, 'Nolan', 1972, 'M', 146), +(105009, 'Noe', 1972, 'M', 145), +(105010, 'Cleveland', 1972, 'M', 144), +(105011, 'Solomon', 1972, 'M', 144), +(105012, 'Benito', 1972, 'M', 143), +(105013, 'Homer', 1972, 'M', 143), +(105014, 'Jude', 1972, 'M', 143), +(105015, 'Lonny', 1972, 'M', 143), +(105016, 'Richie', 1972, 'M', 143), +(105017, 'Darwin', 1972, 'M', 142), +(105018, 'Lincoln', 1972, 'M', 142), +(105019, 'Bradly', 1972, 'M', 141), +(105020, 'Tobias', 1972, 'M', 141), +(105021, 'Zane', 1972, 'M', 141), +(105022, 'Rhett', 1972, 'M', 140), +(105023, 'Andrea', 1972, 'M', 139), +(105024, 'Mauricio', 1972, 'M', 139), +(105025, 'Barrett', 1972, 'M', 138), +(105026, 'Keven', 1972, 'M', 138), +(105027, 'Cole', 1972, 'M', 137), +(105028, 'Woodrow', 1972, 'M', 137), +(105029, 'Alexis', 1972, 'M', 135), +(105030, 'Domingo', 1972, 'M', 135), +(105031, 'Dusty', 1972, 'M', 135), +(105032, 'Harley', 1972, 'M', 135), +(105033, 'Malik', 1972, 'M', 135), +(105034, 'Michelle', 1972, 'M', 135), +(105035, 'Toriano', 1972, 'M', 135), +(105036, 'Zachariah', 1972, 'M', 135), +(105037, 'Adolfo', 1972, 'M', 134), +(105038, 'Antwan', 1972, 'M', 134), +(105039, 'Carroll', 1972, 'M', 134), +(105040, 'Jammie', 1972, 'M', 133), +(105041, 'Daron', 1972, 'M', 132), +(105042, 'Mason', 1972, 'M', 132), +(105043, 'Quinton', 1972, 'M', 132), +(105044, 'Wilbur', 1972, 'M', 132), +(105045, 'Blair', 1972, 'M', 131), +(105046, 'Edwardo', 1972, 'M', 131), +(105047, 'Jed', 1972, 'M', 131), +(105048, 'Antony', 1972, 'M', 129), +(105049, 'Rocco', 1972, 'M', 129), +(105050, 'Arron', 1972, 'M', 128), +(105051, 'Edmond', 1972, 'M', 128), +(105052, 'Jan', 1972, 'M', 128), +(105053, 'Nicky', 1972, 'M', 128), +(105054, 'Brooks', 1972, 'M', 127), +(105055, 'Taylor', 1972, 'M', 127), +(105056, 'Heriberto', 1972, 'M', 126), +(105057, 'Moises', 1972, 'M', 126), +(105058, 'Barton', 1972, 'M', 124), +(105059, 'Carmelo', 1972, 'M', 124), +(105060, 'Darron', 1972, 'M', 124), +(105061, 'Carmen', 1972, 'M', 123), +(105062, 'Jefferey', 1972, 'M', 123), +(105063, 'Giovanni', 1972, 'M', 122), +(105064, 'Reed', 1972, 'M', 122), +(105065, 'Vito', 1972, 'M', 122), +(105066, 'Elvin', 1972, 'M', 121), +(105067, 'Rod', 1972, 'M', 121), +(105068, 'Tyron', 1972, 'M', 121), +(105069, 'Phil', 1972, 'M', 120), +(105070, 'Vince', 1972, 'M', 120), +(105071, 'Ali', 1972, 'M', 119), +(105072, 'Elvis', 1972, 'M', 119), +(105073, 'Judson', 1972, 'M', 119), +(105074, 'Nickolas', 1972, 'M', 119), +(105075, 'Quinn', 1972, 'M', 119), +(105076, 'Judd', 1972, 'M', 117), +(105077, 'Federico', 1972, 'M', 116), +(105078, 'Hal', 1972, 'M', 116), +(105079, 'Irvin', 1972, 'M', 116), +(105080, 'Harlan', 1972, 'M', 115), +(105081, 'Harrison', 1972, 'M', 115), +(105082, 'Jerod', 1972, 'M', 115), +(105083, 'Caleb', 1972, 'M', 114), +(105084, 'Cedrick', 1972, 'M', 114), +(105085, 'Rodrigo', 1972, 'M', 114), +(105086, 'Russel', 1972, 'M', 114), +(105087, 'Torrance', 1972, 'M', 114), +(105088, 'Coy', 1972, 'M', 113), +(105089, 'Deron', 1972, 'M', 113), +(105090, 'Jackson', 1972, 'M', 113), +(105091, 'Mikel', 1972, 'M', 113), +(105092, 'Trey', 1972, 'M', 113), +(105093, 'Antione', 1972, 'M', 112), +(105094, 'Burton', 1972, 'M', 112), +(105095, 'Johnathon', 1972, 'M', 112), +(105096, 'Merle', 1972, 'M', 112), +(105097, 'Kenyatta', 1972, 'M', 111), +(105098, 'Landon', 1972, 'M', 111), +(105099, 'Adan', 1972, 'M', 110), +(105100, 'Ari', 1972, 'M', 110), +(105101, 'Kirt', 1972, 'M', 110), +(105102, 'Leif', 1972, 'M', 110), +(105103, 'Sandy', 1972, 'M', 110), +(105104, 'Wilfred', 1972, 'M', 110), +(105105, 'Brendon', 1972, 'M', 109), +(105106, 'Errol', 1972, 'M', 109), +(105107, 'Jamar', 1972, 'M', 109), +(105108, 'Kennith', 1972, 'M', 109), +(105109, 'Bobbie', 1972, 'M', 108), +(105110, 'Gino', 1972, 'M', 108), +(105111, 'Billie', 1972, 'M', 107), +(105112, 'Branden', 1972, 'M', 107), +(105113, 'Hank', 1972, 'M', 107), +(105114, 'Kristofer', 1972, 'M', 107), +(105115, 'Lenny', 1972, 'M', 107), +(105116, 'Mitchel', 1972, 'M', 107), +(105117, 'Bernardo', 1972, 'M', 106), +(105118, 'Erwin', 1972, 'M', 106), +(105119, 'Raymundo', 1972, 'M', 106), +(105120, 'Carson', 1972, 'M', 105), +(105121, 'Gregorio', 1972, 'M', 105), +(105122, 'Jasper', 1972, 'M', 105), +(105123, 'Jerrold', 1972, 'M', 105), +(105124, 'Kwame', 1972, 'M', 105), +(105125, 'Randell', 1972, 'M', 105), +(105126, 'Cliff', 1972, 'M', 104), +(105127, 'Diego', 1972, 'M', 104), +(105128, 'Ezra', 1972, 'M', 104), +(105129, 'Keenan', 1972, 'M', 104), +(105130, 'Kenya', 1972, 'M', 104), +(105131, 'Ulysses', 1972, 'M', 104), +(105132, 'Dedrick', 1972, 'M', 103), +(105133, 'Irving', 1972, 'M', 103), +(105134, 'Chet', 1972, 'M', 102), +(105135, 'Kelley', 1972, 'M', 102), +(105136, 'Jade', 1972, 'M', 101), +(105137, 'Ariel', 1972, 'M', 100), +(105138, 'Augustine', 1972, 'M', 100), +(105139, 'Kenyon', 1972, 'M', 100), +(105140, 'Korey', 1972, 'M', 100), +(105141, 'Linwood', 1972, 'M', 100), +(105142, 'Marquis', 1972, 'M', 100), +(105143, 'Paris', 1972, 'M', 100), +(105144, 'Jennifer', 1973, 'F', 62454), +(105145, 'Amy', 1973, 'F', 26964), +(105146, 'Michelle', 1973, 'F', 26932), +(105147, 'Kimberly', 1973, 'F', 23532), +(105148, 'Lisa', 1973, 'F', 22665), +(105149, 'Melissa', 1973, 'F', 22484), +(105150, 'Angela', 1973, 'F', 20893), +(105151, 'Heather', 1973, 'F', 19354), +(105152, 'Stephanie', 1973, 'F', 17258), +(105153, 'Rebecca', 1973, 'F', 14872), +(105154, 'Nicole', 1973, 'F', 13921), +(105155, 'Julie', 1973, 'F', 12787), +(105156, 'Elizabeth', 1973, 'F', 12360), +(105157, 'Mary', 1973, 'F', 12321), +(105158, 'Tammy', 1973, 'F', 11243), +(105159, 'Christina', 1973, 'F', 10887), +(105160, 'Christine', 1973, 'F', 10551), +(105161, 'Kelly', 1973, 'F', 10516), +(105162, 'Laura', 1973, 'F', 10341), +(105163, 'Tracy', 1973, 'F', 9910), +(105164, 'Dawn', 1973, 'F', 9891), +(105165, 'Shannon', 1973, 'F', 9804), +(105166, 'Karen', 1973, 'F', 9359), +(105167, 'Tina', 1973, 'F', 9310), +(105168, 'Susan', 1973, 'F', 9290), +(105169, 'Cynthia', 1973, 'F', 8748), +(105170, 'Patricia', 1973, 'F', 8478), +(105171, 'Lori', 1973, 'F', 8472), +(105172, 'Wendy', 1973, 'F', 7814), +(105173, 'Andrea', 1973, 'F', 7767), +(105174, 'Maria', 1973, 'F', 7632), +(105175, 'Stacy', 1973, 'F', 7340), +(105176, 'April', 1973, 'F', 7260), +(105177, 'Jessica', 1973, 'F', 7227), +(105178, 'Sarah', 1973, 'F', 7216), +(105179, 'Tonya', 1973, 'F', 7180), +(105180, 'Tara', 1973, 'F', 6707), +(105181, 'Denise', 1973, 'F', 6617), +(105182, 'Sandra', 1973, 'F', 6588), +(105183, 'Monica', 1973, 'F', 6376), +(105184, 'Stacey', 1973, 'F', 6251), +(105185, 'Rachel', 1973, 'F', 6108), +(105186, 'Melanie', 1973, 'F', 6079), +(105187, 'Michele', 1973, 'F', 5997), +(105188, 'Teresa', 1973, 'F', 5986), +(105189, 'Carrie', 1973, 'F', 5835), +(105190, 'Pamela', 1973, 'F', 5815), +(105191, 'Crystal', 1973, 'F', 5774), +(105192, 'Danielle', 1973, 'F', 5650), +(105193, 'Tanya', 1973, 'F', 5630), +(105194, 'Amanda', 1973, 'F', 5627), +(105195, 'Tiffany', 1973, 'F', 5503), +(105196, 'Brenda', 1973, 'F', 5384), +(105197, 'Holly', 1973, 'F', 5115), +(105198, 'Donna', 1973, 'F', 5060), +(105199, 'Deborah', 1973, 'F', 4983), +(105200, 'Sharon', 1973, 'F', 4965), +(105201, 'Kristen', 1973, 'F', 4936), +(105202, 'Dana', 1973, 'F', 4931), +(105203, 'Robin', 1973, 'F', 4808), +(105204, 'Linda', 1973, 'F', 4738), +(105205, 'Jill', 1973, 'F', 4540), +(105206, 'Barbara', 1973, 'F', 4433), +(105207, 'Katherine', 1973, 'F', 4420), +(105208, 'Heidi', 1973, 'F', 4394), +(105209, 'Tamara', 1973, 'F', 4287), +(105210, 'Catherine', 1973, 'F', 4270), +(105211, 'Kathleen', 1973, 'F', 4254), +(105212, 'Theresa', 1973, 'F', 4181), +(105213, 'Rhonda', 1973, 'F', 4164), +(105214, 'Veronica', 1973, 'F', 4152), +(105215, 'Melinda', 1973, 'F', 4146), +(105216, 'Christy', 1973, 'F', 4121), +(105217, 'Cheryl', 1973, 'F', 4011), +(105218, 'Sherry', 1973, 'F', 3955), +(105219, 'Leslie', 1973, 'F', 3954), +(105220, 'Nancy', 1973, 'F', 3945), +(105221, 'Kristin', 1973, 'F', 3907), +(105222, 'Erin', 1973, 'F', 3879), +(105223, 'Renee', 1973, 'F', 3846), +(105224, 'Erica', 1973, 'F', 3799), +(105225, 'Brandy', 1973, 'F', 3714), +(105226, 'Gina', 1973, 'F', 3700), +(105227, 'Debra', 1973, 'F', 3657), +(105228, 'Diana', 1973, 'F', 3520), +(105229, 'Paula', 1973, 'F', 3508), +(105230, 'Jacqueline', 1973, 'F', 3500), +(105231, 'Anna', 1973, 'F', 3498), +(105232, 'Sara', 1973, 'F', 3480), +(105233, 'Misty', 1973, 'F', 3475), +(105234, 'Alicia', 1973, 'F', 3433), +(105235, 'Cindy', 1973, 'F', 3283), +(105236, 'Ann', 1973, 'F', 3254), +(105237, 'Margaret', 1973, 'F', 3168), +(105238, 'Victoria', 1973, 'F', 3070), +(105239, 'Valerie', 1973, 'F', 3043), +(105240, 'Kristina', 1973, 'F', 3038), +(105241, 'Suzanne', 1973, 'F', 3036), +(105242, 'Emily', 1973, 'F', 3029), +(105243, 'Jodi', 1973, 'F', 3023), +(105244, 'Sheila', 1973, 'F', 2998), +(105245, 'Tracey', 1973, 'F', 2979), +(105246, 'Jamie', 1973, 'F', 2953), +(105247, 'Shelly', 1973, 'F', 2912), +(105248, 'Allison', 1973, 'F', 2906), +(105249, 'Laurie', 1973, 'F', 2894), +(105250, 'Kathryn', 1973, 'F', 2884), +(105251, 'Kristi', 1973, 'F', 2846), +(105252, 'Regina', 1973, 'F', 2843), +(105253, 'Brandi', 1973, 'F', 2842), +(105254, 'Deanna', 1973, 'F', 2795), +(105255, 'Bridget', 1973, 'F', 2763), +(105256, 'Yolanda', 1973, 'F', 2753), +(105257, 'Carla', 1973, 'F', 2687), +(105258, 'Diane', 1973, 'F', 2604), +(105259, 'Carolyn', 1973, 'F', 2571), +(105260, 'Beth', 1973, 'F', 2564), +(105261, 'Katrina', 1973, 'F', 2524), +(105262, 'Janet', 1973, 'F', 2522), +(105263, 'Katina', 1973, 'F', 2473), +(105264, 'Carol', 1973, 'F', 2461), +(105265, 'Anne', 1973, 'F', 2449), +(105266, 'Tricia', 1973, 'F', 2387), +(105267, 'Kathy', 1973, 'F', 2371), +(105268, 'Colleen', 1973, 'F', 2307), +(105269, 'Aimee', 1973, 'F', 2281), +(105270, 'Shelley', 1973, 'F', 2258), +(105271, 'Traci', 1973, 'F', 2258), +(105272, 'Kim', 1973, 'F', 2195), +(105273, 'Amber', 1973, 'F', 2181), +(105274, 'Sonya', 1973, 'F', 2168), +(105275, 'Erika', 1973, 'F', 2156), +(105276, 'Kristine', 1973, 'F', 2149), +(105277, 'Vanessa', 1973, 'F', 2148), +(105278, 'Samantha', 1973, 'F', 2118), +(105279, 'Julia', 1973, 'F', 2094), +(105280, 'Terri', 1973, 'F', 2087), +(105281, 'Felicia', 1973, 'F', 2070), +(105282, 'Jenny', 1973, 'F', 2067), +(105283, 'Natalie', 1973, 'F', 2058), +(105284, 'Megan', 1973, 'F', 2021), +(105285, 'Anita', 1973, 'F', 1988), +(105286, 'Krista', 1973, 'F', 1954), +(105287, 'Connie', 1973, 'F', 1940), +(105288, 'Lynn', 1973, 'F', 1935), +(105289, 'Alison', 1973, 'F', 1927), +(105290, 'Kristy', 1973, 'F', 1891), +(105291, 'Kerry', 1973, 'F', 1875), +(105292, 'Sherri', 1973, 'F', 1853), +(105293, 'Stacie', 1973, 'F', 1838), +(105294, 'Cassandra', 1973, 'F', 1816), +(105295, 'Angel', 1973, 'F', 1815), +(105296, 'Virginia', 1973, 'F', 1815), +(105297, 'Monique', 1973, 'F', 1802), +(105298, 'Natasha', 1973, 'F', 1783), +(105299, 'Carmen', 1973, 'F', 1755), +(105300, 'Martha', 1973, 'F', 1727), +(105301, 'Kelli', 1973, 'F', 1726), +(105302, 'Yvonne', 1973, 'F', 1721), +(105303, 'Nichole', 1973, 'F', 1719), +(105304, 'Kristie', 1973, 'F', 1709), +(105305, 'Joy', 1973, 'F', 1697), +(105306, 'Bonnie', 1973, 'F', 1688), +(105307, 'Jody', 1973, 'F', 1687), +(105308, 'Sheri', 1973, 'F', 1666), +(105309, 'Joanna', 1973, 'F', 1662), +(105310, 'Kara', 1973, 'F', 1629), +(105311, 'Tracie', 1973, 'F', 1624), +(105312, 'Marie', 1973, 'F', 1620), +(105313, 'Becky', 1973, 'F', 1610), +(105314, 'Annette', 1973, 'F', 1604), +(105315, 'Kari', 1973, 'F', 1601), +(105316, 'Sabrina', 1973, 'F', 1599), +(105317, 'Sonia', 1973, 'F', 1598), +(105318, 'Leah', 1973, 'F', 1587), +(105319, 'Claudia', 1973, 'F', 1566), +(105320, 'Gloria', 1973, 'F', 1555), +(105321, 'Meredith', 1973, 'F', 1522), +(105322, 'Christie', 1973, 'F', 1512), +(105323, 'Kerri', 1973, 'F', 1504), +(105324, 'Belinda', 1973, 'F', 1497), +(105325, 'Janice', 1973, 'F', 1476), +(105326, 'Robyn', 1973, 'F', 1476), +(105327, 'Penny', 1973, 'F', 1471), +(105328, 'Cathy', 1973, 'F', 1437), +(105329, 'Vicki', 1973, 'F', 1414), +(105330, 'Wanda', 1973, 'F', 1412), +(105331, 'Shawna', 1973, 'F', 1403), +(105332, 'Toni', 1973, 'F', 1397), +(105333, 'Jeanette', 1973, 'F', 1362), +(105334, 'Gretchen', 1973, 'F', 1350), +(105335, 'Beverly', 1973, 'F', 1349), +(105336, 'Sylvia', 1973, 'F', 1347), +(105337, 'Molly', 1973, 'F', 1330), +(105338, 'Charlotte', 1973, 'F', 1328), +(105339, 'Betty', 1973, 'F', 1322), +(105340, 'Joanne', 1973, 'F', 1299), +(105341, 'Trina', 1973, 'F', 1296), +(105342, 'Nikki', 1973, 'F', 1292), +(105343, 'Shawn', 1973, 'F', 1285), +(105344, 'Ruth', 1973, 'F', 1274), +(105345, 'Ginger', 1973, 'F', 1272), +(105346, 'Yvette', 1973, 'F', 1267), +(105347, 'Kendra', 1973, 'F', 1264), +(105348, 'Ashley', 1973, 'F', 1255), +(105349, 'Rosa', 1973, 'F', 1254), +(105350, 'Catina', 1973, 'F', 1237), +(105351, 'Debbie', 1973, 'F', 1233), +(105352, 'Joyce', 1973, 'F', 1230), +(105353, 'Keri', 1973, 'F', 1214), +(105354, 'Charlene', 1973, 'F', 1208), +(105355, 'Kelley', 1973, 'F', 1201), +(105356, 'Latonya', 1973, 'F', 1193), +(105357, 'Alice', 1973, 'F', 1187), +(105358, 'Dorothy', 1973, 'F', 1175), +(105359, 'Darlene', 1973, 'F', 1163), +(105360, 'Shirley', 1973, 'F', 1158), +(105361, 'Frances', 1973, 'F', 1155), +(105362, 'Kellie', 1973, 'F', 1152), +(105363, 'Peggy', 1973, 'F', 1146), +(105364, 'Marsha', 1973, 'F', 1135), +(105365, 'Helen', 1973, 'F', 1134), +(105366, 'Candace', 1973, 'F', 1133), +(105367, 'Staci', 1973, 'F', 1125), +(105368, 'Melody', 1973, 'F', 1123), +(105369, 'Tasha', 1973, 'F', 1122), +(105370, 'Tonia', 1973, 'F', 1119), +(105371, 'Mindy', 1973, 'F', 1117), +(105372, 'Caroline', 1973, 'F', 1112), +(105373, 'Jean', 1973, 'F', 1112), +(105374, 'Karla', 1973, 'F', 1109), +(105375, 'Lauren', 1973, 'F', 1095), +(105376, 'Ana', 1973, 'F', 1094), +(105377, 'Rose', 1973, 'F', 1094), +(105378, 'Kimberley', 1973, 'F', 1092), +(105379, 'Billie', 1973, 'F', 1091), +(105380, 'Tammie', 1973, 'F', 1091), +(105381, 'Christa', 1973, 'F', 1081), +(105382, 'Leigh', 1973, 'F', 1078), +(105383, 'Bobbie', 1973, 'F', 1076), +(105384, 'Ellen', 1973, 'F', 1074), +(105385, 'Bethany', 1973, 'F', 1043), +(105386, 'Norma', 1973, 'F', 1043), +(105387, 'Joann', 1973, 'F', 1040), +(105388, 'Juanita', 1973, 'F', 1037), +(105389, 'Judy', 1973, 'F', 1034), +(105390, 'Maureen', 1973, 'F', 1033), +(105391, 'Rita', 1973, 'F', 1033), +(105392, 'Evelyn', 1973, 'F', 1016), +(105393, 'Judith', 1973, 'F', 1015), +(105394, 'Rochelle', 1973, 'F', 1007), +(105395, 'Tami', 1973, 'F', 1001), +(105396, 'Elaine', 1973, 'F', 992), +(105397, 'Angie', 1973, 'F', 985), +(105398, 'Leticia', 1973, 'F', 985), +(105399, 'Latasha', 1973, 'F', 982), +(105400, 'Loretta', 1973, 'F', 973), +(105401, 'Rachael', 1973, 'F', 972), +(105402, 'Keisha', 1973, 'F', 964), +(105403, 'Jane', 1973, 'F', 960), +(105404, 'Charity', 1973, 'F', 957), +(105405, 'Sally', 1973, 'F', 953), +(105406, 'Hope', 1973, 'F', 950), +(105407, 'Candice', 1973, 'F', 945), +(105408, 'Vickie', 1973, 'F', 937), +(105409, 'Cheri', 1973, 'F', 936), +(105410, 'Marcia', 1973, 'F', 935), +(105411, 'Jackie', 1973, 'F', 932), +(105412, 'Stefanie', 1973, 'F', 931), +(105413, 'Raquel', 1973, 'F', 924), +(105414, 'Audrey', 1973, 'F', 914), +(105415, 'Jenifer', 1973, 'F', 913), +(105416, 'Christi', 1973, 'F', 909), +(105417, 'Dina', 1973, 'F', 906), +(105418, 'Kenya', 1973, 'F', 894), +(105419, 'Trisha', 1973, 'F', 887), +(105420, 'Adrienne', 1973, 'F', 885), +(105421, 'Sonja', 1973, 'F', 884), +(105422, 'Rachelle', 1973, 'F', 883), +(105423, 'Sandy', 1973, 'F', 874), +(105424, 'Eileen', 1973, 'F', 866), +(105425, 'Eva', 1973, 'F', 865), +(105426, 'Roberta', 1973, 'F', 865), +(105427, 'Dena', 1973, 'F', 853), +(105428, 'Cara', 1973, 'F', 851), +(105429, 'Jodie', 1973, 'F', 851), +(105430, 'Irene', 1973, 'F', 847), +(105431, 'Jeanne', 1973, 'F', 845), +(105432, 'Jana', 1973, 'F', 828), +(105433, 'Priscilla', 1973, 'F', 826), +(105434, 'Courtney', 1973, 'F', 815), +(105435, 'Tabitha', 1973, 'F', 814), +(105436, 'Tamika', 1973, 'F', 808), +(105437, 'Katie', 1973, 'F', 807), +(105438, 'Sheryl', 1973, 'F', 795), +(105439, 'Teri', 1973, 'F', 793), +(105440, 'Kirsten', 1973, 'F', 790), +(105441, 'Marla', 1973, 'F', 788), +(105442, 'Alisa', 1973, 'F', 787), +(105443, 'Jennie', 1973, 'F', 775), +(105444, 'Marilyn', 1973, 'F', 773), +(105445, 'Brooke', 1973, 'F', 772), +(105446, 'Angelica', 1973, 'F', 769), +(105447, 'Gwendolyn', 1973, 'F', 764), +(105448, 'Rebekah', 1973, 'F', 762), +(105449, 'Cherie', 1973, 'F', 760), +(105450, 'Antoinette', 1973, 'F', 759), +(105451, 'Deana', 1973, 'F', 755), +(105452, 'Naomi', 1973, 'F', 753), +(105453, 'Desiree', 1973, 'F', 752), +(105454, 'Candy', 1973, 'F', 747), +(105455, 'Esther', 1973, 'F', 746), +(105456, 'Gail', 1973, 'F', 746), +(105457, 'Nina', 1973, 'F', 741), +(105458, 'Lorraine', 1973, 'F', 734), +(105459, 'Lynette', 1973, 'F', 734), +(105460, 'Lora', 1973, 'F', 725), +(105461, 'Shari', 1973, 'F', 724), +(105462, 'Ronda', 1973, 'F', 719), +(105463, 'Ericka', 1973, 'F', 707), +(105464, 'Amie', 1973, 'F', 703), +(105465, 'Roxanne', 1973, 'F', 702), +(105466, 'Bobbi', 1973, 'F', 700), +(105467, 'Angelia', 1973, 'F', 698), +(105468, 'Shelia', 1973, 'F', 688), +(105469, 'Shana', 1973, 'F', 682), +(105470, 'Cristina', 1973, 'F', 680), +(105471, 'Alexandra', 1973, 'F', 678), +(105472, 'Lydia', 1973, 'F', 677), +(105473, 'Shelby', 1973, 'F', 677), +(105474, 'Jeannie', 1973, 'F', 673), +(105475, 'Jo', 1973, 'F', 665), +(105476, 'Marcy', 1973, 'F', 662), +(105477, 'Lara', 1973, 'F', 661), +(105478, 'Lee', 1973, 'F', 658), +(105479, 'Lorie', 1973, 'F', 657), +(105480, 'Karin', 1973, 'F', 655), +(105481, 'Chandra', 1973, 'F', 653), +(105482, 'Sherrie', 1973, 'F', 645), +(105483, 'Shanna', 1973, 'F', 642), +(105484, 'Dianna', 1973, 'F', 638), +(105485, 'Terry', 1973, 'F', 638), +(105486, 'Melisa', 1973, 'F', 637), +(105487, 'Ruby', 1973, 'F', 636), +(105488, 'Wendi', 1973, 'F', 636), +(105489, 'Angelique', 1973, 'F', 627), +(105490, 'Casey', 1973, 'F', 620), +(105491, 'Lesley', 1973, 'F', 611), +(105492, 'Janelle', 1973, 'F', 609), +(105493, 'Rosemary', 1973, 'F', 608), +(105494, 'Bernadette', 1973, 'F', 606), +(105495, 'Grace', 1973, 'F', 606), +(105496, 'Celeste', 1973, 'F', 599), +(105497, 'Ramona', 1973, 'F', 598), +(105498, 'Lorena', 1973, 'F', 597), +(105499, 'Bridgette', 1973, 'F', 595), +(105500, 'Audra', 1973, 'F', 593), +(105501, 'Jacquelyn', 1973, 'F', 593), +(105502, 'Jenna', 1973, 'F', 591), +(105503, 'Alisha', 1973, 'F', 590), +(105504, 'Tisha', 1973, 'F', 590), +(105505, 'Miriam', 1973, 'F', 589), +(105506, 'Selena', 1973, 'F', 589), +(105507, 'Elisa', 1973, 'F', 586), +(105508, 'Janine', 1973, 'F', 585), +(105509, 'Tammi', 1973, 'F', 581), +(105510, 'Joan', 1973, 'F', 578), +(105511, 'Marisa', 1973, 'F', 577), +(105512, 'Nora', 1973, 'F', 574), +(105513, 'Camille', 1973, 'F', 571), +(105514, 'Angelina', 1973, 'F', 568), +(105515, 'Glenda', 1973, 'F', 566), +(105516, 'Lillian', 1973, 'F', 563), +(105517, 'Carey', 1973, 'F', 560), +(105518, 'Darla', 1973, 'F', 560), +(105519, 'Marisol', 1973, 'F', 559), +(105520, 'Brandie', 1973, 'F', 557), +(105521, 'Alma', 1973, 'F', 554), +(105522, 'Betsy', 1973, 'F', 550), +(105523, 'Chastity', 1973, 'F', 544), +(105524, 'Jeannette', 1973, 'F', 538), +(105525, 'Daphne', 1973, 'F', 536), +(105526, 'Josephine', 1973, 'F', 534), +(105527, 'Vicky', 1973, 'F', 534), +(105528, 'Leanne', 1973, 'F', 533), +(105529, 'Marlene', 1973, 'F', 530), +(105530, 'Marcie', 1973, 'F', 528), +(105531, 'Vivian', 1973, 'F', 528), +(105532, 'Tanisha', 1973, 'F', 526), +(105533, 'Maribel', 1973, 'F', 523), +(105534, 'Tania', 1973, 'F', 521), +(105535, 'Liza', 1973, 'F', 518), +(105536, 'Shauna', 1973, 'F', 515), +(105537, 'Iris', 1973, 'F', 514), +(105538, 'Guadalupe', 1973, 'F', 512), +(105539, 'Latisha', 1973, 'F', 511), +(105540, 'Faith', 1973, 'F', 509), +(105541, 'Marci', 1973, 'F', 505), +(105542, 'Meghan', 1973, 'F', 504), +(105543, 'Arlene', 1973, 'F', 501), +(105544, 'Cecilia', 1973, 'F', 501), +(105545, 'Constance', 1973, 'F', 495), +(105546, 'Tameka', 1973, 'F', 495), +(105547, 'Johanna', 1973, 'F', 494), +(105548, 'Alexis', 1973, 'F', 491), +(105549, 'Adriana', 1973, 'F', 490), +(105550, 'Latanya', 1973, 'F', 490), +(105551, 'Latoya', 1973, 'F', 488), +(105552, 'Jami', 1973, 'F', 486), +(105553, 'Patrice', 1973, 'F', 484), +(105554, 'Abigail', 1973, 'F', 481), +(105555, 'Darcy', 1973, 'F', 481), +(105556, 'Doris', 1973, 'F', 480), +(105557, 'Krystal', 1973, 'F', 479), +(105558, 'Dionne', 1973, 'F', 475), +(105559, 'Irma', 1973, 'F', 470), +(105560, 'Tabatha', 1973, 'F', 469), +(105561, 'Terra', 1973, 'F', 469), +(105562, 'Shonda', 1973, 'F', 468), +(105563, 'Jeanine', 1973, 'F', 467), +(105564, 'Allyson', 1973, 'F', 464), +(105565, 'Annie', 1973, 'F', 464), +(105566, 'Margarita', 1973, 'F', 463), +(105567, 'Hollie', 1973, 'F', 460), +(105568, 'Lana', 1973, 'F', 460), +(105569, 'Malinda', 1973, 'F', 460), +(105570, 'Marianne', 1973, 'F', 460), +(105571, 'Paige', 1973, 'F', 456), +(105572, 'Sophia', 1973, 'F', 455), +(105573, 'Lena', 1973, 'F', 454), +(105574, 'Michael', 1973, 'F', 451), +(105575, 'Esmeralda', 1973, 'F', 450), +(105576, 'Alyssa', 1973, 'F', 449), +(105577, 'Bridgett', 1973, 'F', 445), +(105578, 'Ladonna', 1973, 'F', 444), +(105579, 'Amelia', 1973, 'F', 441), +(105580, 'Lawanda', 1973, 'F', 441), +(105581, 'Tia', 1973, 'F', 438), +(105582, 'Lynda', 1973, 'F', 436), +(105583, 'Elena', 1973, 'F', 434), +(105584, 'Marjorie', 1973, 'F', 431), +(105585, 'Pauline', 1973, 'F', 431), +(105586, 'Edith', 1973, 'F', 424), +(105587, 'Lea', 1973, 'F', 423), +(105588, 'Kisha', 1973, 'F', 422), +(105589, 'Lashawn', 1973, 'F', 420), +(105590, 'Emma', 1973, 'F', 419), +(105591, 'Kimberlee', 1973, 'F', 418), +(105592, 'Laurel', 1973, 'F', 418), +(105593, 'Karrie', 1973, 'F', 415), +(105594, 'Cari', 1973, 'F', 407), +(105595, 'Catrina', 1973, 'F', 407), +(105596, 'Claire', 1973, 'F', 406), +(105597, 'Rene', 1973, 'F', 406), +(105598, 'Misti', 1973, 'F', 405), +(105599, 'Myra', 1973, 'F', 404), +(105600, 'Phyllis', 1973, 'F', 404), +(105601, 'Serena', 1973, 'F', 404), +(105602, 'Olga', 1973, 'F', 401), +(105603, 'Lashonda', 1973, 'F', 398), +(105604, 'Leann', 1973, 'F', 398), +(105605, 'Sue', 1973, 'F', 397), +(105606, 'Tera', 1973, 'F', 397), +(105607, 'Marcella', 1973, 'F', 396), +(105608, 'Blanca', 1973, 'F', 395), +(105609, 'Chasity', 1973, 'F', 393), +(105610, 'Dianne', 1973, 'F', 390), +(105611, 'Janie', 1973, 'F', 389), +(105612, 'Ingrid', 1973, 'F', 387), +(105613, 'Paulette', 1973, 'F', 386), +(105614, 'Deena', 1973, 'F', 385), +(105615, 'Dora', 1973, 'F', 385), +(105616, 'Mandy', 1973, 'F', 383), +(105617, 'Georgia', 1973, 'F', 381), +(105618, 'Chrystal', 1973, 'F', 378), +(105619, 'Karyn', 1973, 'F', 378), +(105620, 'Shanda', 1973, 'F', 376), +(105621, 'Hilary', 1973, 'F', 375), +(105622, 'Lakisha', 1973, 'F', 375), +(105623, 'Alissa', 1973, 'F', 372), +(105624, 'Dolores', 1973, 'F', 372), +(105625, 'Elisabeth', 1973, 'F', 371), +(105626, 'Jeannine', 1973, 'F', 371), +(105627, 'Nadine', 1973, 'F', 371), +(105628, 'Demetria', 1973, 'F', 370), +(105629, 'Cathleen', 1973, 'F', 367), +(105630, 'Mona', 1973, 'F', 363), +(105631, 'Susanne', 1973, 'F', 363), +(105632, 'Janette', 1973, 'F', 359), +(105633, 'Lucinda', 1973, 'F', 359), +(105634, 'Maryann', 1973, 'F', 358), +(105635, 'Olivia', 1973, 'F', 358), +(105636, 'Jocelyn', 1973, 'F', 355), +(105637, 'Isabel', 1973, 'F', 352), +(105638, 'Jessie', 1973, 'F', 352), +(105639, 'Marissa', 1973, 'F', 352), +(105640, 'Doreen', 1973, 'F', 351), +(105641, 'Lynne', 1973, 'F', 351), +(105642, 'Mia', 1973, 'F', 349), +(105643, 'Lucy', 1973, 'F', 347), +(105644, 'Lorrie', 1973, 'F', 344), +(105645, 'Luz', 1973, 'F', 343), +(105646, 'Yesenia', 1973, 'F', 342), +(105647, 'Maggie', 1973, 'F', 341), +(105648, 'Patty', 1973, 'F', 341), +(105649, 'Chanda', 1973, 'F', 340), +(105650, 'Edna', 1973, 'F', 340), +(105651, 'Janna', 1973, 'F', 337), +(105652, 'Valarie', 1973, 'F', 337), +(105653, 'Gabrielle', 1973, 'F', 336), +(105654, 'Kerrie', 1973, 'F', 335), +(105655, 'Annmarie', 1973, 'F', 333), +(105656, 'Gabriela', 1973, 'F', 333), +(105657, 'Janel', 1973, 'F', 333), +(105658, 'Clara', 1973, 'F', 332), +(105659, 'Jeri', 1973, 'F', 328), +(105660, 'Suzette', 1973, 'F', 328), +(105661, 'Beatrice', 1973, 'F', 327), +(105662, 'Tawana', 1973, 'F', 327), +(105663, 'Miranda', 1973, 'F', 326), +(105664, 'Latonia', 1973, 'F', 324), +(105665, 'Alethea', 1973, 'F', 322), +(105666, 'Cassie', 1973, 'F', 322), +(105667, 'Sondra', 1973, 'F', 322), +(105668, 'Susana', 1973, 'F', 321), +(105669, 'Deirdre', 1973, 'F', 319), +(105670, 'Francine', 1973, 'F', 319), +(105671, 'Shellie', 1973, 'F', 319), +(105672, 'Autumn', 1973, 'F', 318), +(105673, 'James', 1973, 'F', 317), +(105674, 'Tonja', 1973, 'F', 317), +(105675, 'Bertha', 1973, 'F', 316), +(105676, 'Susie', 1973, 'F', 315), +(105677, 'Gena', 1973, 'F', 314), +(105678, 'Louise', 1973, 'F', 313), +(105679, 'Tracee', 1973, 'F', 313), +(105680, 'Corina', 1973, 'F', 312), +(105681, 'Madeline', 1973, 'F', 312), +(105682, 'Deanne', 1973, 'F', 311), +(105683, 'Mildred', 1973, 'F', 311), +(105684, 'Lois', 1973, 'F', 310), +(105685, 'Tessa', 1973, 'F', 309), +(105686, 'Ami', 1973, 'F', 307), +(105687, 'Delia', 1973, 'F', 307), +(105688, 'Charmaine', 1973, 'F', 306), +(105689, 'Christal', 1973, 'F', 306), +(105690, 'Ida', 1973, 'F', 306), +(105691, 'Clarissa', 1973, 'F', 304), +(105692, 'June', 1973, 'F', 304), +(105693, 'Ebony', 1973, 'F', 300), +(105694, 'Hannah', 1973, 'F', 300), +(105695, 'Corinne', 1973, 'F', 299), +(105696, 'Julianne', 1973, 'F', 297), +(105697, 'Ursula', 1973, 'F', 297), +(105698, 'Jan', 1973, 'F', 296), +(105699, 'Caryn', 1973, 'F', 295), +(105700, 'Lakeisha', 1973, 'F', 295), +(105701, 'Tamra', 1973, 'F', 295), +(105702, 'Daisy', 1973, 'F', 294), +(105703, 'Genevieve', 1973, 'F', 294), +(105704, 'Whitney', 1973, 'F', 294), +(105705, 'Antonia', 1973, 'F', 292), +(105706, 'Elise', 1973, 'F', 292), +(105707, 'Jolene', 1973, 'F', 292), +(105708, 'Kesha', 1973, 'F', 292), +(105709, 'Deidre', 1973, 'F', 291), +(105710, 'Jerri', 1973, 'F', 290), +(105711, 'Silvia', 1973, 'F', 289), +(105712, 'Malissa', 1973, 'F', 288), +(105713, 'Renae', 1973, 'F', 288), +(105714, 'Cristy', 1973, 'F', 286), +(105715, 'Geneva', 1973, 'F', 283), +(105716, 'Delores', 1973, 'F', 281), +(105717, 'Maritza', 1973, 'F', 281), +(105718, 'Tawnya', 1973, 'F', 281), +(105719, 'Alana', 1973, 'F', 279), +(105720, 'Letitia', 1973, 'F', 278), +(105721, 'Christopher', 1973, 'F', 275), +(105722, 'Kate', 1973, 'F', 275), +(105723, 'Margo', 1973, 'F', 274), +(105724, 'Kay', 1973, 'F', 273), +(105725, 'Dara', 1973, 'F', 272), +(105726, 'Sasha', 1973, 'F', 271), +(105727, 'Trudy', 1973, 'F', 271), +(105728, 'Gladys', 1973, 'F', 270), +(105729, 'Justine', 1973, 'F', 270), +(105730, 'Katharine', 1973, 'F', 269), +(105731, 'Alyson', 1973, 'F', 268), +(105732, 'Consuelo', 1973, 'F', 268), +(105733, 'Eleanor', 1973, 'F', 267), +(105734, 'Marion', 1973, 'F', 267), +(105735, 'Latrice', 1973, 'F', 265), +(105736, 'Marian', 1973, 'F', 265), +(105737, 'Maricela', 1973, 'F', 265), +(105738, 'Rena', 1973, 'F', 265), +(105739, 'Tiffani', 1973, 'F', 265), +(105740, 'Bernice', 1973, 'F', 264), +(105741, 'Florence', 1973, 'F', 263), +(105742, 'Gayle', 1973, 'F', 263), +(105743, 'Kami', 1973, 'F', 263), +(105744, 'Colette', 1973, 'F', 262), +(105745, 'Lynnette', 1973, 'F', 262), +(105746, 'Randi', 1973, 'F', 262), +(105747, 'Sheree', 1973, 'F', 260), +(105748, 'Janell', 1973, 'F', 258), +(105749, 'Mitzi', 1973, 'F', 257), +(105750, 'Danette', 1973, 'F', 255), +(105751, 'Marnie', 1973, 'F', 255), +(105752, 'Michell', 1973, 'F', 255), +(105753, 'Latosha', 1973, 'F', 254), +(105754, 'Elsa', 1973, 'F', 253), +(105755, 'Buffy', 1973, 'F', 252), +(105756, 'Marlo', 1973, 'F', 251), +(105757, 'Tosha', 1973, 'F', 251), +(105758, 'Hillary', 1973, 'F', 250), +(105759, 'Chantel', 1973, 'F', 249), +(105760, 'Patti', 1973, 'F', 249), +(105761, 'Robert', 1973, 'F', 249), +(105762, 'Rosemarie', 1973, 'F', 249), +(105763, 'Richelle', 1973, 'F', 248), +(105764, 'Margie', 1973, 'F', 247), +(105765, 'Kristal', 1973, 'F', 246), +(105766, 'Brandee', 1973, 'F', 245), +(105767, 'Juliet', 1973, 'F', 245), +(105768, 'Marina', 1973, 'F', 244), +(105769, 'Noelle', 1973, 'F', 243), +(105770, 'Mara', 1973, 'F', 242), +(105771, 'Windy', 1973, 'F', 242), +(105772, 'Chelsea', 1973, 'F', 241), +(105773, 'Kasey', 1973, 'F', 241), +(105774, 'Carly', 1973, 'F', 240), +(105775, 'Holli', 1973, 'F', 240), +(105776, 'Lakesha', 1973, 'F', 240), +(105777, 'Chris', 1973, 'F', 239), +(105778, 'Cori', 1973, 'F', 239), +(105779, 'Susanna', 1973, 'F', 239), +(105780, 'Tamera', 1973, 'F', 239), +(105781, 'Ivy', 1973, 'F', 237), +(105782, 'Geraldine', 1973, 'F', 236), +(105783, 'Hilda', 1973, 'F', 236), +(105784, 'Terrie', 1973, 'F', 235), +(105785, 'Lauri', 1973, 'F', 234), +(105786, 'Stella', 1973, 'F', 234), +(105787, 'Araceli', 1973, 'F', 233), +(105788, 'Celia', 1973, 'F', 232), +(105789, 'Greta', 1973, 'F', 232), +(105790, 'Joni', 1973, 'F', 232), +(105791, 'Anastasia', 1973, 'F', 231); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(105792, 'Graciela', 1973, 'F', 231), +(105793, 'Stacia', 1973, 'F', 231), +(105794, 'Casandra', 1973, 'F', 230), +(105795, 'Noemi', 1973, 'F', 230), +(105796, 'Shelli', 1973, 'F', 230), +(105797, 'John', 1973, 'F', 229), +(105798, 'Therese', 1973, 'F', 229), +(105799, 'Carolina', 1973, 'F', 227), +(105800, 'Niki', 1973, 'F', 227), +(105801, 'Elissa', 1973, 'F', 226), +(105802, 'Jason', 1973, 'F', 226), +(105803, 'Rosie', 1973, 'F', 226), +(105804, 'David', 1973, 'F', 225), +(105805, 'Ella', 1973, 'F', 225), +(105806, 'Jeanna', 1973, 'F', 225), +(105807, 'Nanette', 1973, 'F', 225), +(105808, 'Felecia', 1973, 'F', 224), +(105809, 'Jeanie', 1973, 'F', 224), +(105810, 'Venus', 1973, 'F', 224), +(105811, 'Vera', 1973, 'F', 224), +(105812, 'Georgina', 1973, 'F', 223), +(105813, 'Aisha', 1973, 'F', 222), +(105814, 'Anissa', 1973, 'F', 222), +(105815, 'Carissa', 1973, 'F', 222), +(105816, 'Chiquita', 1973, 'F', 222), +(105817, 'Christian', 1973, 'F', 222), +(105818, 'Penelope', 1973, 'F', 222), +(105819, 'Danelle', 1973, 'F', 221), +(105820, 'Deann', 1973, 'F', 221), +(105821, 'Shane', 1973, 'F', 221), +(105822, 'Leona', 1973, 'F', 220), +(105823, 'Polly', 1973, 'F', 220), +(105824, 'Selina', 1973, 'F', 220), +(105825, 'Thelma', 1973, 'F', 220), +(105826, 'Brittany', 1973, 'F', 219), +(105827, 'Carole', 1973, 'F', 219), +(105828, 'Athena', 1973, 'F', 218), +(105829, 'Dayna', 1973, 'F', 218), +(105830, 'Jena', 1973, 'F', 217), +(105831, 'Larissa', 1973, 'F', 217), +(105832, 'Marta', 1973, 'F', 217), +(105833, 'Kris', 1973, 'F', 216), +(105834, 'Lourdes', 1973, 'F', 216), +(105835, 'Lucia', 1973, 'F', 216), +(105836, 'Maura', 1973, 'F', 216), +(105837, 'Corey', 1973, 'F', 215), +(105838, 'Leeann', 1973, 'F', 215), +(105839, 'Sandi', 1973, 'F', 215), +(105840, 'Carie', 1973, 'F', 214), +(105841, 'Rosalind', 1973, 'F', 214), +(105842, 'Simone', 1973, 'F', 214), +(105843, 'Gwen', 1973, 'F', 213), +(105844, 'Karie', 1973, 'F', 213), +(105845, 'Cicely', 1973, 'F', 212), +(105846, 'Lashanda', 1973, 'F', 212), +(105847, 'Eugenia', 1973, 'F', 211), +(105848, 'Latricia', 1973, 'F', 210), +(105849, 'Deidra', 1973, 'F', 209), +(105850, 'Joey', 1973, 'F', 208), +(105851, 'Francesca', 1973, 'F', 207), +(105852, 'Debora', 1973, 'F', 206), +(105853, 'Dominique', 1973, 'F', 206), +(105854, 'Tyra', 1973, 'F', 205), +(105855, 'Denice', 1973, 'F', 204), +(105856, 'Patsy', 1973, 'F', 204), +(105857, 'Sharonda', 1973, 'F', 204), +(105858, 'Tarsha', 1973, 'F', 204), +(105859, 'Tawanda', 1973, 'F', 204), +(105860, 'Candi', 1973, 'F', 203), +(105861, 'Ada', 1973, 'F', 201), +(105862, 'Alecia', 1973, 'F', 201), +(105863, 'Leanna', 1973, 'F', 201), +(105864, 'Tomeka', 1973, 'F', 201), +(105865, 'Trista', 1973, 'F', 201), +(105866, 'Adrian', 1973, 'F', 199), +(105867, 'Jeana', 1973, 'F', 199), +(105868, 'Shantel', 1973, 'F', 197), +(105869, 'Cora', 1973, 'F', 195), +(105870, 'Rosalinda', 1973, 'F', 194), +(105871, 'Valencia', 1973, 'F', 194), +(105872, 'Shalonda', 1973, 'F', 193), +(105873, 'Sharla', 1973, 'F', 193), +(105874, 'Cecelia', 1973, 'F', 192), +(105875, 'Josie', 1973, 'F', 192), +(105876, 'Abby', 1973, 'F', 191), +(105877, 'Griselda', 1973, 'F', 191), +(105878, 'Martina', 1973, 'F', 191), +(105879, 'Darcie', 1973, 'F', 190), +(105880, 'Juana', 1973, 'F', 190), +(105881, 'Kori', 1973, 'F', 190), +(105882, 'Mari', 1973, 'F', 190), +(105883, 'Aileen', 1973, 'F', 189), +(105884, 'Tiffanie', 1973, 'F', 189), +(105885, 'Helena', 1973, 'F', 188), +(105886, 'Shannan', 1973, 'F', 188), +(105887, 'Beatriz', 1973, 'F', 187), +(105888, 'Danita', 1973, 'F', 187), +(105889, 'Dixie', 1973, 'F', 187), +(105890, 'Jaime', 1973, 'F', 186), +(105891, 'Rosanna', 1973, 'F', 186), +(105892, 'Suzanna', 1973, 'F', 186), +(105893, 'Lesa', 1973, 'F', 185), +(105894, 'Marisela', 1973, 'F', 185), +(105895, 'Karri', 1973, 'F', 184), +(105896, 'Summer', 1973, 'F', 184), +(105897, 'Tawanna', 1973, 'F', 183), +(105898, 'Ethel', 1973, 'F', 181), +(105899, 'Toya', 1973, 'F', 181), +(105900, 'Karina', 1973, 'F', 180), +(105901, 'Monika', 1973, 'F', 179), +(105902, 'Tangela', 1973, 'F', 179), +(105903, 'Cher', 1973, 'F', 178), +(105904, 'Eunice', 1973, 'F', 178), +(105905, 'Ayanna', 1973, 'F', 177), +(105906, 'Aurora', 1973, 'F', 176), +(105907, 'Davina', 1973, 'F', 176), +(105908, 'Melonie', 1973, 'F', 176), +(105909, 'Renita', 1973, 'F', 176), +(105910, 'Aida', 1973, 'F', 175), +(105911, 'Darci', 1973, 'F', 175), +(105912, 'Mellissa', 1973, 'F', 175), +(105913, 'Noel', 1973, 'F', 175), +(105914, 'Rae', 1973, 'F', 175), +(105915, 'Anitra', 1973, 'F', 174), +(105916, 'Tamiko', 1973, 'F', 174), +(105917, 'Annemarie', 1973, 'F', 173), +(105918, 'Della', 1973, 'F', 173), +(105919, 'Lucretia', 1973, 'F', 173), +(105920, 'Benita', 1973, 'F', 172), +(105921, 'Coleen', 1973, 'F', 172), +(105922, 'Eve', 1973, 'F', 172), +(105923, 'Rosalie', 1973, 'F', 172), +(105924, 'Bianca', 1973, 'F', 171), +(105925, 'Sharron', 1973, 'F', 171), +(105926, 'Mollie', 1973, 'F', 170), +(105927, 'Stephenie', 1973, 'F', 170), +(105928, 'Angeline', 1973, 'F', 169), +(105929, 'Charisse', 1973, 'F', 169), +(105930, 'Christin', 1973, 'F', 168), +(105931, 'Danna', 1973, 'F', 168), +(105932, 'Andria', 1973, 'F', 167), +(105933, 'Georgette', 1973, 'F', 167), +(105934, 'Mercedes', 1973, 'F', 167), +(105935, 'Nicki', 1973, 'F', 167), +(105936, 'Dee', 1973, 'F', 166), +(105937, 'Octavia', 1973, 'F', 166), +(105938, 'Shanon', 1973, 'F', 166), +(105939, 'Tori', 1973, 'F', 166), +(105940, 'Magdalena', 1973, 'F', 165), +(105941, 'Juli', 1973, 'F', 164), +(105942, 'Candida', 1973, 'F', 163), +(105943, 'Janis', 1973, 'F', 163), +(105944, 'Katy', 1973, 'F', 163), +(105945, 'Mayra', 1973, 'F', 163), +(105946, 'Rosalyn', 1973, 'F', 163), +(105947, 'Brigette', 1973, 'F', 162), +(105948, 'Charla', 1973, 'F', 162), +(105949, 'Corinna', 1973, 'F', 162), +(105950, 'Josette', 1973, 'F', 162), +(105951, 'Kia', 1973, 'F', 162), +(105952, 'Liliana', 1973, 'F', 162), +(105953, 'Maxine', 1973, 'F', 162), +(105954, 'Melodie', 1973, 'F', 162), +(105955, 'William', 1973, 'F', 162), +(105956, 'Adrianne', 1973, 'F', 161), +(105957, 'Bonita', 1973, 'F', 161), +(105958, 'Freda', 1973, 'F', 161), +(105959, 'Ivette', 1973, 'F', 161), +(105960, 'Nikole', 1973, 'F', 161), +(105961, 'Vonetta', 1973, 'F', 161), +(105962, 'Anjanette', 1973, 'F', 160), +(105963, 'Brian', 1973, 'F', 160), +(105964, 'Jenni', 1973, 'F', 160), +(105965, 'Valeria', 1973, 'F', 160), +(105966, 'Vikki', 1973, 'F', 160), +(105967, 'Cory', 1973, 'F', 159), +(105968, 'Cristi', 1973, 'F', 159), +(105969, 'Joelle', 1973, 'F', 159), +(105970, 'Lenora', 1973, 'F', 159), +(105971, 'Lola', 1973, 'F', 159), +(105972, 'Tamela', 1973, 'F', 159), +(105973, 'Elisha', 1973, 'F', 158), +(105974, 'Saundra', 1973, 'F', 158), +(105975, 'Claudine', 1973, 'F', 157), +(105976, 'Delilah', 1973, 'F', 157), +(105977, 'Latarsha', 1973, 'F', 157), +(105978, 'Mindi', 1973, 'F', 157), +(105979, 'Nyree', 1973, 'F', 157), +(105980, 'Carri', 1973, 'F', 156), +(105981, 'Antionette', 1973, 'F', 155), +(105982, 'Christel', 1973, 'F', 155), +(105983, 'Dori', 1973, 'F', 155), +(105984, 'Eliza', 1973, 'F', 155), +(105985, 'Janeen', 1973, 'F', 155), +(105986, 'Missy', 1973, 'F', 155), +(105987, 'Cary', 1973, 'F', 154), +(105988, 'Brigitte', 1973, 'F', 153), +(105989, 'Lillie', 1973, 'F', 153), +(105990, 'Lolita', 1973, 'F', 153), +(105991, 'Trena', 1973, 'F', 153), +(105992, 'Alexa', 1973, 'F', 152), +(105993, 'Layla', 1973, 'F', 152), +(105994, 'Corrie', 1973, 'F', 151), +(105995, 'Kandi', 1973, 'F', 151), +(105996, 'Lissette', 1973, 'F', 151), +(105997, 'Nichol', 1973, 'F', 151), +(105998, 'Robbie', 1973, 'F', 151), +(105999, 'Callie', 1973, 'F', 150), +(106000, 'Jasmine', 1973, 'F', 150), +(106001, 'Lisette', 1973, 'F', 150), +(106002, 'Racheal', 1973, 'F', 150), +(106003, 'Tana', 1973, 'F', 150), +(106004, 'Tomika', 1973, 'F', 150), +(106005, 'Fatima', 1973, 'F', 149), +(106006, 'Johnna', 1973, 'F', 149), +(106007, 'Kayla', 1973, 'F', 149), +(106008, 'Keshia', 1973, 'F', 149), +(106009, 'Susannah', 1973, 'F', 149), +(106010, 'Yolonda', 1973, 'F', 149), +(106011, 'Dusty', 1973, 'F', 148), +(106012, 'Juliana', 1973, 'F', 148), +(106013, 'Marni', 1973, 'F', 148), +(106014, 'Tressa', 1973, 'F', 148), +(106015, 'Angelita', 1973, 'F', 147), +(106016, 'Aretha', 1973, 'F', 147), +(106017, 'Caren', 1973, 'F', 147), +(106018, 'Claudette', 1973, 'F', 147), +(106019, 'Daniela', 1973, 'F', 147), +(106020, 'Lilia', 1973, 'F', 147), +(106021, 'Nikita', 1973, 'F', 147), +(106022, 'Celina', 1973, 'F', 146), +(106023, 'Anthony', 1973, 'F', 145), +(106024, 'Leila', 1973, 'F', 145), +(106025, 'Pearl', 1973, 'F', 143), +(106026, 'Aubrey', 1973, 'F', 142), +(106027, 'Britt', 1973, 'F', 142), +(106028, 'Daniel', 1973, 'F', 142), +(106029, 'Danyelle', 1973, 'F', 142), +(106030, 'Estella', 1973, 'F', 142), +(106031, 'Hazel', 1973, 'F', 142), +(106032, 'Josefina', 1973, 'F', 142), +(106033, 'Mechelle', 1973, 'F', 142), +(106034, 'Kathrine', 1973, 'F', 141), +(106035, 'Roslyn', 1973, 'F', 141), +(106036, 'Carmela', 1973, 'F', 140), +(106037, 'Carmelita', 1973, 'F', 140), +(106038, 'India', 1973, 'F', 140), +(106039, 'Rocio', 1973, 'F', 140), +(106040, 'Cherry', 1973, 'F', 139), +(106041, 'Gillian', 1973, 'F', 139), +(106042, 'Jada', 1973, 'F', 139), +(106043, 'Keesha', 1973, 'F', 139), +(106044, 'Libby', 1973, 'F', 139), +(106045, 'Sofia', 1973, 'F', 139), +(106046, 'Alejandra', 1973, 'F', 138), +(106047, 'Cindi', 1973, 'F', 138), +(106048, 'Ginny', 1973, 'F', 138), +(106049, 'Richard', 1973, 'F', 138), +(106050, 'Shawnda', 1973, 'F', 138), +(106051, 'Kirstin', 1973, 'F', 137), +(106052, 'Tamatha', 1973, 'F', 137), +(106053, 'Starla', 1973, 'F', 136), +(106054, 'Elsie', 1973, 'F', 135), +(106055, 'Elvira', 1973, 'F', 135), +(106056, 'Lila', 1973, 'F', 135), +(106057, 'Mariah', 1973, 'F', 135), +(106058, 'Nellie', 1973, 'F', 135), +(106059, 'Roxanna', 1973, 'F', 135), +(106060, 'Shanta', 1973, 'F', 135), +(106061, 'Anika', 1973, 'F', 134), +(106062, 'Brenna', 1973, 'F', 134), +(106063, 'Brook', 1973, 'F', 134), +(106064, 'Christen', 1973, 'F', 134), +(106065, 'Joseph', 1973, 'F', 134), +(106066, 'Julissa', 1973, 'F', 134), +(106067, 'Mendy', 1973, 'F', 134), +(106068, 'Patrica', 1973, 'F', 134), +(106069, 'Kevin', 1973, 'F', 133), +(106070, 'Lorri', 1973, 'F', 133), +(106071, 'Violet', 1973, 'F', 133), +(106072, 'Vonda', 1973, 'F', 133), +(106073, 'Rhoda', 1973, 'F', 132), +(106074, 'Rosario', 1973, 'F', 132), +(106075, 'Sheena', 1973, 'F', 132), +(106076, 'Eric', 1973, 'F', 131), +(106077, 'Velma', 1973, 'F', 131), +(106078, 'Alexandria', 1973, 'F', 130), +(106079, 'Charissa', 1973, 'F', 130), +(106080, 'Imelda', 1973, 'F', 130), +(106081, 'Stephaine', 1973, 'F', 130), +(106082, 'Wilma', 1973, 'F', 130), +(106083, 'Angella', 1973, 'F', 129), +(106084, 'Lenore', 1973, 'F', 129), +(106085, 'Mellisa', 1973, 'F', 129), +(106086, 'Shara', 1973, 'F', 129), +(106087, 'Camilla', 1973, 'F', 128), +(106088, 'Crista', 1973, 'F', 128), +(106089, 'Gracie', 1973, 'F', 128), +(106090, 'Myrna', 1973, 'F', 128), +(106091, 'Rebeca', 1973, 'F', 128), +(106092, 'Francisca', 1973, 'F', 127), +(106093, 'Kandy', 1973, 'F', 127), +(106094, 'Lela', 1973, 'F', 127), +(106095, 'Minerva', 1973, 'F', 127), +(106096, 'Shantell', 1973, 'F', 127), +(106097, 'Shea', 1973, 'F', 127), +(106098, 'Carin', 1973, 'F', 126), +(106099, 'Nicola', 1973, 'F', 126), +(106100, 'Robbin', 1973, 'F', 126), +(106101, 'Chantelle', 1973, 'F', 125), +(106102, 'Esperanza', 1973, 'F', 125), +(106103, 'Faye', 1973, 'F', 125), +(106104, 'Lorna', 1973, 'F', 125), +(106105, 'Contina', 1973, 'F', 124), +(106106, 'Evette', 1973, 'F', 124), +(106107, 'Maya', 1973, 'F', 124), +(106108, 'Alysia', 1973, 'F', 123), +(106109, 'Angelic', 1973, 'F', 123), +(106110, 'Celena', 1973, 'F', 123), +(106111, 'Frankie', 1973, 'F', 123), +(106112, 'Jenniffer', 1973, 'F', 123), +(106113, 'Keely', 1973, 'F', 123), +(106114, 'Kenyatta', 1973, 'F', 123), +(106115, 'Laquita', 1973, 'F', 123), +(106116, 'Marybeth', 1973, 'F', 123), +(106117, 'Kira', 1973, 'F', 122), +(106118, 'Latrina', 1973, 'F', 122), +(106119, 'Leilani', 1973, 'F', 122), +(106120, 'Marquita', 1973, 'F', 122), +(106121, 'Petra', 1973, 'F', 122), +(106122, 'Shonna', 1973, 'F', 122), +(106123, 'Bettina', 1973, 'F', 121), +(106124, 'Briana', 1973, 'F', 121), +(106125, 'Chanel', 1973, 'F', 121), +(106126, 'Cherise', 1973, 'F', 121), +(106127, 'Dedra', 1973, 'F', 121), +(106128, 'Fawn', 1973, 'F', 121), +(106129, 'Jayme', 1973, 'F', 121), +(106130, 'Jayne', 1973, 'F', 121), +(106131, 'Lucille', 1973, 'F', 121), +(106132, 'Zoe', 1973, 'F', 121), +(106133, 'Bessie', 1973, 'F', 120), +(106134, 'Danyell', 1973, 'F', 120), +(106135, 'Elva', 1973, 'F', 120), +(106136, 'Jolie', 1973, 'F', 120), +(106137, 'Pam', 1973, 'F', 120), +(106138, 'Rosanne', 1973, 'F', 120), +(106139, 'Corrina', 1973, 'F', 119), +(106140, 'Daniella', 1973, 'F', 119), +(106141, 'Kyra', 1973, 'F', 119), +(106142, 'Rosetta', 1973, 'F', 119), +(106143, 'Sherie', 1973, 'F', 119), +(106144, 'Stefani', 1973, 'F', 119), +(106145, 'Gayla', 1973, 'F', 118), +(106146, 'Lindy', 1973, 'F', 118), +(106147, 'Phoebe', 1973, 'F', 118), +(106148, 'Portia', 1973, 'F', 118), +(106149, 'Sherita', 1973, 'F', 118), +(106150, 'Willie', 1973, 'F', 118), +(106151, 'Alanna', 1973, 'F', 117), +(106152, 'Charles', 1973, 'F', 117), +(106153, 'Verna', 1973, 'F', 117), +(106154, 'Cathryn', 1973, 'F', 116), +(106155, 'Julianna', 1973, 'F', 116), +(106156, 'Lashunda', 1973, 'F', 116), +(106157, 'Towanda', 1973, 'F', 116), +(106158, 'Bobby', 1973, 'F', 115), +(106159, 'Francis', 1973, 'F', 115), +(106160, 'Johnnie', 1973, 'F', 115), +(106161, 'Kimberlie', 1973, 'F', 115), +(106162, 'Lindsay', 1973, 'F', 115), +(106163, 'Marguerite', 1973, 'F', 115), +(106164, 'Noreen', 1973, 'F', 115), +(106165, 'Racquel', 1973, 'F', 115), +(106166, 'Rolanda', 1973, 'F', 115), +(106167, 'Roxann', 1973, 'F', 115), +(106168, 'Shay', 1973, 'F', 115), +(106169, 'Sunshine', 1973, 'F', 115), +(106170, 'Valorie', 1973, 'F', 115), +(106171, 'Cecily', 1973, 'F', 114), +(106172, 'Nichelle', 1973, 'F', 114), +(106173, 'Nicolle', 1973, 'F', 114), +(106174, 'Shani', 1973, 'F', 114), +(106175, 'Treva', 1973, 'F', 114), +(106176, 'Gerri', 1973, 'F', 113), +(106177, 'Justina', 1973, 'F', 113), +(106178, 'Roseann', 1973, 'F', 113), +(106179, 'Viola', 1973, 'F', 113), +(106180, 'Alberta', 1973, 'F', 112), +(106181, 'Daniele', 1973, 'F', 112), +(106182, 'Danyel', 1973, 'F', 112), +(106183, 'Genea', 1973, 'F', 112), +(106184, 'Geri', 1973, 'F', 112), +(106185, 'Helene', 1973, 'F', 112), +(106186, 'Marlena', 1973, 'F', 112), +(106187, 'Mistie', 1973, 'F', 112), +(106188, 'Teressa', 1973, 'F', 112), +(106189, 'Alycia', 1973, 'F', 111), +(106190, 'Kendall', 1973, 'F', 111), +(106191, 'Shandra', 1973, 'F', 111), +(106192, 'Barbra', 1973, 'F', 110), +(106193, 'Clare', 1973, 'F', 110), +(106194, 'Flora', 1973, 'F', 110), +(106195, 'Luisa', 1973, 'F', 110), +(106196, 'Mattie', 1973, 'F', 110), +(106197, 'Michaela', 1973, 'F', 110), +(106198, 'Milagros', 1973, 'F', 110), +(106199, 'Natalia', 1973, 'F', 110), +(106200, 'Adina', 1973, 'F', 109), +(106201, 'Ava', 1973, 'F', 109), +(106202, 'Cristin', 1973, 'F', 109), +(106203, 'Kristan', 1973, 'F', 109), +(106204, 'Matthew', 1973, 'F', 109), +(106205, 'Melony', 1973, 'F', 109), +(106206, 'Pamala', 1973, 'F', 109), +(106207, 'Regan', 1973, 'F', 109), +(106208, 'Sharlene', 1973, 'F', 109), +(106209, 'Tresa', 1973, 'F', 109), +(106210, 'Corrine', 1973, 'F', 108), +(106211, 'Cristal', 1973, 'F', 108), +(106212, 'Gidget', 1973, 'F', 108), +(106213, 'Juliette', 1973, 'F', 108), +(106214, 'Lupe', 1973, 'F', 108), +(106215, 'Minnie', 1973, 'F', 108), +(106216, 'Sadie', 1973, 'F', 108), +(106217, 'Alesha', 1973, 'F', 107), +(106218, 'Carlene', 1973, 'F', 107), +(106219, 'Consuela', 1973, 'F', 107), +(106220, 'Dawna', 1973, 'F', 107), +(106221, 'Felisha', 1973, 'F', 107), +(106222, 'Hallie', 1973, 'F', 107), +(106223, 'Jewel', 1973, 'F', 107), +(106224, 'Kathie', 1973, 'F', 107), +(106225, 'Lorinda', 1973, 'F', 107), +(106226, 'Renea', 1973, 'F', 107), +(106227, 'Tamica', 1973, 'F', 107), +(106228, 'Tanika', 1973, 'F', 107), +(106229, 'Ernestine', 1973, 'F', 106), +(106230, 'Mandi', 1973, 'F', 106), +(106231, 'Tamala', 1973, 'F', 106), +(106232, 'Dione', 1973, 'F', 105), +(106233, 'Elvia', 1973, 'F', 105), +(106234, 'Maryellen', 1973, 'F', 105), +(106235, 'Stephany', 1973, 'F', 105), +(106236, 'Adele', 1973, 'F', 104), +(106237, 'Damaris', 1973, 'F', 104), +(106238, 'Donita', 1973, 'F', 104), +(106239, 'Laronda', 1973, 'F', 104), +(106240, 'Malisa', 1973, 'F', 104), +(106241, 'Jamila', 1973, 'F', 103), +(106242, 'Lashon', 1973, 'F', 103), +(106243, 'Lavonda', 1973, 'F', 103), +(106244, 'Lily', 1973, 'F', 103), +(106245, 'Machelle', 1973, 'F', 103), +(106246, 'Nickie', 1973, 'F', 103), +(106247, 'Sybil', 1973, 'F', 103), +(106248, 'Adria', 1973, 'F', 102), +(106249, 'Dani', 1973, 'F', 102), +(106250, 'Jodee', 1973, 'F', 102), +(106251, 'Leslee', 1973, 'F', 102), +(106252, 'Chana', 1973, 'F', 101), +(106253, 'Jonna', 1973, 'F', 101), +(106254, 'Lakeshia', 1973, 'F', 101), +(106255, 'Laverne', 1973, 'F', 101), +(106256, 'Lidia', 1973, 'F', 101), +(106257, 'Lindsey', 1973, 'F', 101), +(106258, 'Lizette', 1973, 'F', 101), +(106259, 'Louisa', 1973, 'F', 101), +(106260, 'Shawanda', 1973, 'F', 101), +(106261, 'Thomas', 1973, 'F', 101), +(106262, 'Ali', 1973, 'F', 100), +(106263, 'Alina', 1973, 'F', 100), +(106264, 'Cami', 1973, 'F', 100), +(106265, 'Corie', 1973, 'F', 100), +(106266, 'Karena', 1973, 'F', 100), +(106267, 'Kimberely', 1973, 'F', 100), +(106268, 'Lesli', 1973, 'F', 100), +(106269, 'Melynda', 1973, 'F', 100), +(106270, 'Michael', 1973, 'M', 67864), +(106271, 'Christopher', 1973, 'M', 48322), +(106272, 'Jason', 1973, 'M', 46689), +(106273, 'James', 1973, 'M', 42896), +(106274, 'David', 1973, 'M', 41110), +(106275, 'John', 1973, 'M', 39175), +(106276, 'Robert', 1973, 'M', 38721), +(106277, 'Brian', 1973, 'M', 35717), +(106278, 'William', 1973, 'M', 28024), +(106279, 'Matthew', 1973, 'M', 24553), +(106280, 'Daniel', 1973, 'M', 23696), +(106281, 'Joseph', 1973, 'M', 21324), +(106282, 'Eric', 1973, 'M', 20813), +(106283, 'Kevin', 1973, 'M', 20799), +(106284, 'Mark', 1973, 'M', 20384), +(106285, 'Richard', 1973, 'M', 19953), +(106286, 'Jeffrey', 1973, 'M', 19225), +(106287, 'Scott', 1973, 'M', 18980), +(106288, 'Thomas', 1973, 'M', 17941), +(106289, 'Steven', 1973, 'M', 17193), +(106290, 'Anthony', 1973, 'M', 16418), +(106291, 'Timothy', 1973, 'M', 16055), +(106292, 'Charles', 1973, 'M', 15756), +(106293, 'Paul', 1973, 'M', 12911), +(106294, 'Chad', 1973, 'M', 12883), +(106295, 'Gregory', 1973, 'M', 11680), +(106296, 'Shawn', 1973, 'M', 11444), +(106297, 'Kenneth', 1973, 'M', 10980), +(106298, 'Andrew', 1973, 'M', 10741), +(106299, 'Ryan', 1973, 'M', 10522), +(106300, 'Jonathan', 1973, 'M', 10274), +(106301, 'Stephen', 1973, 'M', 9958), +(106302, 'Jeremy', 1973, 'M', 9362), +(106303, 'Aaron', 1973, 'M', 9245), +(106304, 'Todd', 1973, 'M', 8682), +(106305, 'Sean', 1973, 'M', 8571), +(106306, 'Patrick', 1973, 'M', 8483), +(106307, 'Edward', 1973, 'M', 8372), +(106308, 'Donald', 1973, 'M', 8369), +(106309, 'Ronald', 1973, 'M', 8326), +(106310, 'Keith', 1973, 'M', 8168), +(106311, 'Joshua', 1973, 'M', 8064), +(106312, 'Bryan', 1973, 'M', 7116), +(106313, 'Gary', 1973, 'M', 6855), +(106314, 'Adam', 1973, 'M', 6840), +(106315, 'George', 1973, 'M', 6606), +(106316, 'Douglas', 1973, 'M', 6602), +(106317, 'Craig', 1973, 'M', 6295), +(106318, 'Jose', 1973, 'M', 6094), +(106319, 'Larry', 1973, 'M', 6079), +(106320, 'Justin', 1973, 'M', 6076), +(106321, 'Peter', 1973, 'M', 5918), +(106322, 'Travis', 1973, 'M', 5873), +(106323, 'Shane', 1973, 'M', 5710), +(106324, 'Benjamin', 1973, 'M', 5233), +(106325, 'Dennis', 1973, 'M', 5181), +(106326, 'Jerry', 1973, 'M', 5099), +(106327, 'Brandon', 1973, 'M', 5073), +(106328, 'Troy', 1973, 'M', 5062), +(106329, 'Raymond', 1973, 'M', 4830), +(106330, 'Frank', 1973, 'M', 4789), +(106331, 'Bradley', 1973, 'M', 4752), +(106332, 'Nathan', 1973, 'M', 4751), +(106333, 'Jeffery', 1973, 'M', 4404), +(106334, 'Terry', 1973, 'M', 4379), +(106335, 'Samuel', 1973, 'M', 4268), +(106336, 'Juan', 1973, 'M', 4089), +(106337, 'Rodney', 1973, 'M', 4061), +(106338, 'Derek', 1973, 'M', 3935), +(106339, 'Jamie', 1973, 'M', 3913), +(106340, 'Phillip', 1973, 'M', 3859), +(106341, 'Marcus', 1973, 'M', 3716), +(106342, 'Joel', 1973, 'M', 3572), +(106343, 'Carlos', 1973, 'M', 3571), +(106344, 'Jesse', 1973, 'M', 3449), +(106345, 'Billy', 1973, 'M', 3445), +(106346, 'Russell', 1973, 'M', 3401), +(106347, 'Tony', 1973, 'M', 3358), +(106348, 'Randy', 1973, 'M', 3347), +(106349, 'Brent', 1973, 'M', 3289), +(106350, 'Marc', 1973, 'M', 3278), +(106351, 'Johnny', 1973, 'M', 3266), +(106352, 'Danny', 1973, 'M', 3177), +(106353, 'Roger', 1973, 'M', 3159), +(106354, 'Nicholas', 1973, 'M', 3152), +(106355, 'Erik', 1973, 'M', 3059), +(106356, 'Derrick', 1973, 'M', 3057), +(106357, 'Brett', 1973, 'M', 3031), +(106358, 'Corey', 1973, 'M', 3023), +(106359, 'Carl', 1973, 'M', 3017), +(106360, 'Philip', 1973, 'M', 3000), +(106361, 'Antonio', 1973, 'M', 2961), +(106362, 'Bobby', 1973, 'M', 2889), +(106363, 'Jon', 1973, 'M', 2802), +(106364, 'Jimmy', 1973, 'M', 2734), +(106365, 'Chris', 1973, 'M', 2706), +(106366, 'Christian', 1973, 'M', 2692), +(106367, 'Curtis', 1973, 'M', 2690), +(106368, 'Vincent', 1973, 'M', 2682), +(106369, 'Shannon', 1973, 'M', 2635), +(106370, 'Walter', 1973, 'M', 2631), +(106371, 'Gerald', 1973, 'M', 2592), +(106372, 'Victor', 1973, 'M', 2580), +(106373, 'Lawrence', 1973, 'M', 2526), +(106374, 'Joe', 1973, 'M', 2521), +(106375, 'Micheal', 1973, 'M', 2478), +(106376, 'Wayne', 1973, 'M', 2449), +(106377, 'Martin', 1973, 'M', 2401), +(106378, 'Willie', 1973, 'M', 2393), +(106379, 'Kyle', 1973, 'M', 2375), +(106380, 'Henry', 1973, 'M', 2362), +(106381, 'Albert', 1973, 'M', 2291), +(106382, 'Darren', 1973, 'M', 2289), +(106383, 'Luis', 1973, 'M', 2271), +(106384, 'Alan', 1973, 'M', 2270), +(106385, 'Alexander', 1973, 'M', 2259), +(106386, 'Roy', 1973, 'M', 2237), +(106387, 'Jay', 1973, 'M', 2217), +(106388, 'Arthur', 1973, 'M', 2207), +(106389, 'Frederick', 1973, 'M', 2183), +(106390, 'Randall', 1973, 'M', 2170), +(106391, 'Jacob', 1973, 'M', 2131), +(106392, 'Lee', 1973, 'M', 2110), +(106393, 'Allen', 1973, 'M', 2079), +(106394, 'Damon', 1973, 'M', 2047), +(106395, 'Tracy', 1973, 'M', 2042), +(106396, 'Jermaine', 1973, 'M', 2038), +(106397, 'Cory', 1973, 'M', 2035), +(106398, 'Mario', 1973, 'M', 2021), +(106399, 'Gabriel', 1973, 'M', 1985), +(106400, 'Darrell', 1973, 'M', 1980), +(106401, 'Andre', 1973, 'M', 1954), +(106402, 'Ricky', 1973, 'M', 1945), +(106403, 'Bruce', 1973, 'M', 1914), +(106404, 'Louis', 1973, 'M', 1903), +(106405, 'Ronnie', 1973, 'M', 1894), +(106406, 'Brad', 1973, 'M', 1884), +(106407, 'Jack', 1973, 'M', 1852), +(106408, 'Tyrone', 1973, 'M', 1834), +(106409, 'Harold', 1973, 'M', 1812), +(106410, 'Dale', 1973, 'M', 1803), +(106411, 'Jesus', 1973, 'M', 1736), +(106412, 'Tommy', 1973, 'M', 1732), +(106413, 'Eugene', 1973, 'M', 1721), +(106414, 'Manuel', 1973, 'M', 1711), +(106415, 'Kelly', 1973, 'M', 1704), +(106416, 'Glenn', 1973, 'M', 1700), +(106417, 'Lance', 1973, 'M', 1687), +(106418, 'Ernest', 1973, 'M', 1676), +(106419, 'Leonard', 1973, 'M', 1666), +(106420, 'Reginald', 1973, 'M', 1631), +(106421, 'Ricardo', 1973, 'M', 1630), +(106422, 'Dustin', 1973, 'M', 1617), +(106423, 'Adrian', 1973, 'M', 1611), +(106424, 'Jared', 1973, 'M', 1590), +(106425, 'Eddie', 1973, 'M', 1583), +(106426, 'Ralph', 1973, 'M', 1562), +(106427, 'Wesley', 1973, 'M', 1557), +(106428, 'Barry', 1973, 'M', 1518), +(106429, 'Clinton', 1973, 'M', 1510), +(106430, 'Steve', 1973, 'M', 1510), +(106431, 'Marvin', 1973, 'M', 1505), +(106432, 'Miguel', 1973, 'M', 1463), +(106433, 'Jerome', 1973, 'M', 1448), +(106434, 'Maurice', 1973, 'M', 1439), +(106435, 'Dwayne', 1973, 'M', 1435), +(106436, 'Roberto', 1973, 'M', 1435), +(106437, 'Dean', 1973, 'M', 1415), +(106438, 'Nathaniel', 1973, 'M', 1393), +(106439, 'Melvin', 1973, 'M', 1380), +(106440, 'Francisco', 1973, 'M', 1375), +(106441, 'Stanley', 1973, 'M', 1357), +(106442, 'Calvin', 1973, 'M', 1352), +(106443, 'Howard', 1973, 'M', 1350), +(106444, 'Theodore', 1973, 'M', 1345), +(106445, 'Duane', 1973, 'M', 1335), +(106446, 'Edwin', 1973, 'M', 1318), +(106447, 'Jorge', 1973, 'M', 1318), +(106448, 'Ruben', 1973, 'M', 1310), +(106449, 'Ian', 1973, 'M', 1304), +(106450, 'Greg', 1973, 'M', 1301), +(106451, 'Neil', 1973, 'M', 1296), +(106452, 'Casey', 1973, 'M', 1279), +(106453, 'Alex', 1973, 'M', 1252), +(106454, 'Jody', 1973, 'M', 1243), +(106455, 'Kurt', 1973, 'M', 1238), +(106456, 'Mitchell', 1973, 'M', 1219), +(106457, 'Kirk', 1973, 'M', 1215), +(106458, 'Harry', 1973, 'M', 1203), +(106459, 'Hector', 1973, 'M', 1195), +(106460, 'Terrance', 1973, 'M', 1188), +(106461, 'Jeff', 1973, 'M', 1184), +(106462, 'Clifford', 1973, 'M', 1175), +(106463, 'Terrence', 1973, 'M', 1167), +(106464, 'Earl', 1973, 'M', 1157), +(106465, 'Zachary', 1973, 'M', 1138), +(106466, 'Seth', 1973, 'M', 1137), +(106467, 'Wade', 1973, 'M', 1112), +(106468, 'Clayton', 1973, 'M', 1108), +(106469, 'Clarence', 1973, 'M', 1100), +(106470, 'Alfred', 1973, 'M', 1074), +(106471, 'Heath', 1973, 'M', 1074), +(106472, 'Oscar', 1973, 'M', 1067), +(106473, 'Jaime', 1973, 'M', 1065), +(106474, 'Darin', 1973, 'M', 1057), +(106475, 'Angel', 1973, 'M', 1047), +(106476, 'Ray', 1973, 'M', 1046), +(106477, 'Mike', 1973, 'M', 1039), +(106478, 'Javier', 1973, 'M', 1036), +(106479, 'Ramon', 1973, 'M', 1033), +(106480, 'Trevor', 1973, 'M', 1030), +(106481, 'Warren', 1973, 'M', 1030), +(106482, 'Daryl', 1973, 'M', 1028), +(106483, 'Mathew', 1973, 'M', 1027), +(106484, 'Fred', 1973, 'M', 1021), +(106485, 'Dana', 1973, 'M', 1012), +(106486, 'Leon', 1973, 'M', 1006), +(106487, 'Toby', 1973, 'M', 1005), +(106488, 'Norman', 1973, 'M', 990), +(106489, 'Karl', 1973, 'M', 988), +(106490, 'Lonnie', 1973, 'M', 984), +(106491, 'Francis', 1973, 'M', 981), +(106492, 'Kristopher', 1973, 'M', 981), +(106493, 'Geoffrey', 1973, 'M', 976), +(106494, 'Raul', 1973, 'M', 959), +(106495, 'Franklin', 1973, 'M', 947), +(106496, 'Bernard', 1973, 'M', 945), +(106497, 'Byron', 1973, 'M', 918), +(106498, 'Gilbert', 1973, 'M', 918), +(106499, 'Stacy', 1973, 'M', 915), +(106500, 'Roderick', 1973, 'M', 910), +(106501, 'Rafael', 1973, 'M', 904), +(106502, 'Marlon', 1973, 'M', 903), +(106503, 'Lamont', 1973, 'M', 901), +(106504, 'Isaac', 1973, 'M', 899), +(106505, 'Clint', 1973, 'M', 898), +(106506, 'Don', 1973, 'M', 893), +(106507, 'Eduardo', 1973, 'M', 889), +(106508, 'Cedric', 1973, 'M', 882), +(106509, 'Joey', 1973, 'M', 874), +(106510, 'Alvin', 1973, 'M', 869), +(106511, 'Glen', 1973, 'M', 868), +(106512, 'Pedro', 1973, 'M', 865), +(106513, 'Kelvin', 1973, 'M', 828), +(106514, 'Fernando', 1973, 'M', 805), +(106515, 'Leroy', 1973, 'M', 804), +(106516, 'Leslie', 1973, 'M', 792), +(106517, 'Vernon', 1973, 'M', 791), +(106518, 'Omar', 1973, 'M', 789), +(106519, 'Donnie', 1973, 'M', 787), +(106520, 'Darryl', 1973, 'M', 786), +(106521, 'Marco', 1973, 'M', 777), +(106522, 'Fredrick', 1973, 'M', 775), +(106523, 'Andy', 1973, 'M', 773), +(106524, 'Armando', 1973, 'M', 766), +(106525, 'Jeremiah', 1973, 'M', 765), +(106526, 'Alejandro', 1973, 'M', 761), +(106527, 'Jessie', 1973, 'M', 753), +(106528, 'Tyler', 1973, 'M', 751), +(106529, 'Lewis', 1973, 'M', 749), +(106530, 'Shaun', 1973, 'M', 748), +(106531, 'Johnathan', 1973, 'M', 740), +(106532, 'Kent', 1973, 'M', 729), +(106533, 'Julian', 1973, 'M', 719), +(106534, 'Dwight', 1973, 'M', 715), +(106535, 'Ross', 1973, 'M', 715), +(106536, 'Herbert', 1973, 'M', 708), +(106537, 'Alberto', 1973, 'M', 695), +(106538, 'Lloyd', 1973, 'M', 695), +(106539, 'Scotty', 1973, 'M', 695), +(106540, 'Rene', 1973, 'M', 683), +(106541, 'Kerry', 1973, 'M', 681), +(106542, 'Stuart', 1973, 'M', 681), +(106543, 'Erick', 1973, 'M', 668), +(106544, 'Jonathon', 1973, 'M', 666), +(106545, 'Sergio', 1973, 'M', 664), +(106546, 'Gordon', 1973, 'M', 660), +(106547, 'Damian', 1973, 'M', 657), +(106548, 'Darrin', 1973, 'M', 655), +(106549, 'Alfredo', 1973, 'M', 654), +(106550, 'Demetrius', 1973, 'M', 652), +(106551, 'Cody', 1973, 'M', 651), +(106552, 'Julio', 1973, 'M', 651), +(106553, 'Jackie', 1973, 'M', 637), +(106554, 'Luke', 1973, 'M', 637), +(106555, 'Bryant', 1973, 'M', 634), +(106556, 'Dominic', 1973, 'M', 632), +(106557, 'Guy', 1973, 'M', 628), +(106558, 'Johnnie', 1973, 'M', 628), +(106559, 'Gene', 1973, 'M', 626), +(106560, 'Jimmie', 1973, 'M', 625), +(106561, 'Orlando', 1973, 'M', 625), +(106562, 'Rick', 1973, 'M', 624), +(106563, 'Marshall', 1973, 'M', 621), +(106564, 'Charlie', 1973, 'M', 614), +(106565, 'Enrique', 1973, 'M', 613), +(106566, 'Floyd', 1973, 'M', 605), +(106567, 'Trent', 1973, 'M', 599), +(106568, 'Edgar', 1973, 'M', 596), +(106569, 'Marty', 1973, 'M', 592), +(106570, 'Spencer', 1973, 'M', 592), +(106571, 'Jim', 1973, 'M', 586), +(106572, 'Nelson', 1973, 'M', 580), +(106573, 'Grant', 1973, 'M', 575), +(106574, 'Jayson', 1973, 'M', 574), +(106575, 'Evan', 1973, 'M', 573), +(106576, 'Dan', 1973, 'M', 572), +(106577, 'Ivan', 1973, 'M', 570), +(106578, 'Stacey', 1973, 'M', 567), +(106579, 'Chadwick', 1973, 'M', 565), +(106580, 'Arturo', 1973, 'M', 563), +(106581, 'Roland', 1973, 'M', 563), +(106582, 'Allan', 1973, 'M', 561), +(106583, 'Colin', 1973, 'M', 560), +(106584, 'Felix', 1973, 'M', 559), +(106585, 'Clifton', 1973, 'M', 557), +(106586, 'Cesar', 1973, 'M', 555), +(106587, 'Freddie', 1973, 'M', 555), +(106588, 'Brendan', 1973, 'M', 551), +(106589, 'Nick', 1973, 'M', 548), +(106590, 'Ted', 1973, 'M', 544), +(106591, 'Bret', 1973, 'M', 542), +(106592, 'Neal', 1973, 'M', 539), +(106593, 'Ben', 1973, 'M', 535), +(106594, 'Gregg', 1973, 'M', 532), +(106595, 'Antoine', 1973, 'M', 528), +(106596, 'Micah', 1973, 'M', 528), +(106597, 'Tim', 1973, 'M', 524), +(106598, 'Dewayne', 1973, 'M', 521), +(106599, 'Ethan', 1973, 'M', 521), +(106600, 'Bill', 1973, 'M', 520), +(106601, 'Cameron', 1973, 'M', 516), +(106602, 'Lorenzo', 1973, 'M', 513), +(106603, 'Angelo', 1973, 'M', 510), +(106604, 'Leo', 1973, 'M', 509), +(106605, 'Lester', 1973, 'M', 506), +(106606, 'Perry', 1973, 'M', 506), +(106607, 'Devin', 1973, 'M', 504), +(106608, 'Matt', 1973, 'M', 504), +(106609, 'Terence', 1973, 'M', 502), +(106610, 'Rickey', 1973, 'M', 497), +(106611, 'Herman', 1973, 'M', 495), +(106612, 'Bradford', 1973, 'M', 493), +(106613, 'Clyde', 1973, 'M', 493), +(106614, 'Noah', 1973, 'M', 493), +(106615, 'Garrett', 1973, 'M', 492), +(106616, 'Robbie', 1973, 'M', 492), +(106617, 'Noel', 1973, 'M', 484), +(106618, 'Preston', 1973, 'M', 482), +(106619, 'Carlton', 1973, 'M', 479), +(106620, 'Sam', 1973, 'M', 477), +(106621, 'Israel', 1973, 'M', 474), +(106622, 'Clay', 1973, 'M', 473), +(106623, 'Frankie', 1973, 'M', 473), +(106624, 'Darnell', 1973, 'M', 470), +(106625, 'Jarrod', 1973, 'M', 470), +(106626, 'Kenny', 1973, 'M', 470), +(106627, 'Brady', 1973, 'M', 467), +(106628, 'Ernesto', 1973, 'M', 461), +(106629, 'Rudy', 1973, 'M', 457), +(106630, 'Milton', 1973, 'M', 456), +(106631, 'Marcos', 1973, 'M', 455), +(106632, 'Cornelius', 1973, 'M', 453), +(106633, 'Tom', 1973, 'M', 453), +(106634, 'Gerardo', 1973, 'M', 446), +(106635, 'Tyson', 1973, 'M', 441), +(106636, 'Sammy', 1973, 'M', 439), +(106637, 'Blake', 1973, 'M', 434), +(106638, 'Max', 1973, 'M', 433), +(106639, 'Alfonso', 1973, 'M', 426), +(106640, 'Ashley', 1973, 'M', 426), +(106641, 'Salvador', 1973, 'M', 426), +(106642, 'Chester', 1973, 'M', 421), +(106643, 'Tracey', 1973, 'M', 421), +(106644, 'Scottie', 1973, 'M', 420), +(106645, 'Jamal', 1973, 'M', 418), +(106646, 'Cecil', 1973, 'M', 415), +(106647, 'Demond', 1973, 'M', 411), +(106648, 'Dion', 1973, 'M', 411), +(106649, 'Ron', 1973, 'M', 410), +(106650, 'Bryon', 1973, 'M', 407), +(106651, 'Bryce', 1973, 'M', 404), +(106652, 'Randolph', 1973, 'M', 404), +(106653, 'Abraham', 1973, 'M', 403), +(106654, 'Andres', 1973, 'M', 403), +(106655, 'Josh', 1973, 'M', 401), +(106656, 'Harvey', 1973, 'M', 399), +(106657, 'Robin', 1973, 'M', 398), +(106658, 'Salvatore', 1973, 'M', 394), +(106659, 'Loren', 1973, 'M', 393), +(106660, 'Dexter', 1973, 'M', 391), +(106661, 'Malcolm', 1973, 'M', 389), +(106662, 'Wendell', 1973, 'M', 389), +(106663, 'Arnold', 1973, 'M', 388), +(106664, 'Jamey', 1973, 'M', 388), +(106665, 'Cary', 1973, 'M', 385), +(106666, 'Sidney', 1973, 'M', 383), +(106667, 'Everett', 1973, 'M', 382), +(106668, 'Timmy', 1973, 'M', 382), +(106669, 'Donovan', 1973, 'M', 379), +(106670, 'Gerard', 1973, 'M', 376), +(106671, 'Gilberto', 1973, 'M', 376), +(106672, 'Oliver', 1973, 'M', 375), +(106673, 'Rodolfo', 1973, 'M', 375), +(106674, 'Otis', 1973, 'M', 371), +(106675, 'Ty', 1973, 'M', 367), +(106676, 'Jamison', 1973, 'M', 364), +(106677, 'Pablo', 1973, 'M', 364), +(106678, 'Terrell', 1973, 'M', 364), +(106679, 'Roman', 1973, 'M', 363), +(106680, 'Kendrick', 1973, 'M', 362), +(106681, 'Abel', 1973, 'M', 360), +(106682, 'Damien', 1973, 'M', 358), +(106683, 'Myron', 1973, 'M', 357), +(106684, 'Randal', 1973, 'M', 357), +(106685, 'Alonzo', 1973, 'M', 356), +(106686, 'Kris', 1973, 'M', 356), +(106687, 'Kendall', 1973, 'M', 350), +(106688, 'Guillermo', 1973, 'M', 346), +(106689, 'Lamar', 1973, 'M', 346), +(106690, 'Simon', 1973, 'M', 345), +(106691, 'Virgil', 1973, 'M', 345), +(106692, 'Scot', 1973, 'M', 344), +(106693, 'Julius', 1973, 'M', 343), +(106694, 'Sheldon', 1973, 'M', 339), +(106695, 'Eli', 1973, 'M', 338), +(106696, 'Owen', 1973, 'M', 336), +(106697, 'Quentin', 1973, 'M', 333), +(106698, 'Garry', 1973, 'M', 331), +(106699, 'Curt', 1973, 'M', 326), +(106700, 'Rex', 1973, 'M', 326), +(106701, 'Rusty', 1973, 'M', 326), +(106702, 'Claude', 1973, 'M', 325), +(106703, 'Rolando', 1973, 'M', 325), +(106704, 'Alton', 1973, 'M', 322), +(106705, 'Quincy', 1973, 'M', 321), +(106706, 'Thaddeus', 1973, 'M', 320), +(106707, 'Jake', 1973, 'M', 318), +(106708, 'Mickey', 1973, 'M', 318), +(106709, 'Ira', 1973, 'M', 317), +(106710, 'Shad', 1973, 'M', 317), +(106711, 'Stewart', 1973, 'M', 315), +(106712, 'Darrick', 1973, 'M', 312), +(106713, 'Stephan', 1973, 'M', 311), +(106714, 'Colby', 1973, 'M', 309), +(106715, 'Monte', 1973, 'M', 307), +(106716, 'Earnest', 1973, 'M', 306), +(106717, 'Erin', 1973, 'M', 305), +(106718, 'Jordan', 1973, 'M', 305), +(106719, 'Bart', 1973, 'M', 302), +(106720, 'Drew', 1973, 'M', 302), +(106721, 'Lucas', 1973, 'M', 302), +(106722, 'Benny', 1973, 'M', 301), +(106723, 'Hugh', 1973, 'M', 300), +(106724, 'Marion', 1973, 'M', 297), +(106725, 'Dorian', 1973, 'M', 293), +(106726, 'Derick', 1973, 'M', 291), +(106727, 'Sherman', 1973, 'M', 291), +(106728, 'Gustavo', 1973, 'M', 290), +(106729, 'Lyle', 1973, 'M', 287), +(106730, 'Jefferson', 1973, 'M', 286), +(106731, 'Darius', 1973, 'M', 285), +(106732, 'Felipe', 1973, 'M', 285), +(106733, 'Wallace', 1973, 'M', 284), +(106734, 'Jess', 1973, 'M', 283), +(106735, 'Ramiro', 1973, 'M', 282), +(106736, 'Dallas', 1973, 'M', 280), +(106737, 'Carey', 1973, 'M', 279), +(106738, 'Desmond', 1973, 'M', 279), +(106739, 'Ismael', 1973, 'M', 279), +(106740, 'Jerald', 1973, 'M', 279), +(106741, 'Pete', 1973, 'M', 279), +(106742, 'Dylan', 1973, 'M', 278), +(106743, 'Xavier', 1973, 'M', 275), +(106744, 'Austin', 1973, 'M', 273), +(106745, 'Sonny', 1973, 'M', 273), +(106746, 'Rogelio', 1973, 'M', 272), +(106747, 'Devon', 1973, 'M', 270), +(106748, 'Morris', 1973, 'M', 270), +(106749, 'Donny', 1973, 'M', 269), +(106750, 'Teddy', 1973, 'M', 269), +(106751, 'Lynn', 1973, 'M', 268), +(106752, 'Dominick', 1973, 'M', 266), +(106753, 'Jarrett', 1973, 'M', 263), +(106754, 'Darrel', 1973, 'M', 262), +(106755, 'Donnell', 1973, 'M', 256), +(106756, 'Morgan', 1973, 'M', 256), +(106757, 'Shon', 1973, 'M', 255), +(106758, 'Erich', 1973, 'M', 251), +(106759, 'Saul', 1973, 'M', 251), +(106760, 'Stefan', 1973, 'M', 251), +(106761, 'Vance', 1973, 'M', 251), +(106762, 'Aron', 1973, 'M', 250), +(106763, 'Blaine', 1973, 'M', 250), +(106764, 'Nicolas', 1973, 'M', 250), +(106765, 'Luther', 1973, 'M', 249), +(106766, 'Moses', 1973, 'M', 249), +(106767, 'Tomas', 1973, 'M', 249), +(106768, 'Bennie', 1973, 'M', 245), +(106769, 'Guadalupe', 1973, 'M', 245), +(106770, 'Kareem', 1973, 'M', 244), +(106771, 'Dave', 1973, 'M', 241), +(106772, 'Leland', 1973, 'M', 241), +(106773, 'Sylvester', 1973, 'M', 241), +(106774, 'Lionel', 1973, 'M', 239), +(106775, 'Grady', 1973, 'M', 238), +(106776, 'Shayne', 1973, 'M', 236), +(106777, 'Elliott', 1973, 'M', 234), +(106778, 'Ken', 1973, 'M', 234), +(106779, 'Delbert', 1973, 'M', 233), +(106780, 'Efrain', 1973, 'M', 233), +(106781, 'Garrick', 1973, 'M', 233), +(106782, 'Gavin', 1973, 'M', 232), +(106783, 'Kristian', 1973, 'M', 232), +(106784, 'Reynaldo', 1973, 'M', 232), +(106785, 'Elias', 1973, 'M', 231), +(106786, 'Robby', 1973, 'M', 231), +(106787, 'Archie', 1973, 'M', 230), +(106788, 'Damion', 1973, 'M', 230), +(106789, 'Deon', 1973, 'M', 229), +(106790, 'Hans', 1973, 'M', 227), +(106791, 'Jean', 1973, 'M', 226), +(106792, 'Clark', 1973, 'M', 225), +(106793, 'Rocky', 1973, 'M', 225), +(106794, 'Edmund', 1973, 'M', 223), +(106795, 'Forrest', 1973, 'M', 223), +(106796, 'Monty', 1973, 'M', 222), +(106797, 'Leonardo', 1973, 'M', 221), +(106798, 'Courtney', 1973, 'M', 220), +(106799, 'Jennifer', 1973, 'M', 220), +(106800, 'Reggie', 1973, 'M', 220), +(106801, 'Fabian', 1973, 'M', 219), +(106802, 'Willard', 1973, 'M', 219), +(106803, 'Joaquin', 1973, 'M', 217), +(106804, 'Hugo', 1973, 'M', 215), +(106805, 'Rudolph', 1973, 'M', 215), +(106806, 'Elijah', 1973, 'M', 213), +(106807, 'Reuben', 1973, 'M', 210), +(106808, 'Elmer', 1973, 'M', 209), +(106809, 'Bob', 1973, 'M', 208), +(106810, 'Carlo', 1973, 'M', 208), +(106811, 'Freddy', 1973, 'M', 208), +(106812, 'Amos', 1973, 'M', 207), +(106813, 'Dane', 1973, 'M', 207), +(106814, 'Levi', 1973, 'M', 207), +(106815, 'Miles', 1973, 'M', 207), +(106816, 'Will', 1973, 'M', 207), +(106817, 'Joesph', 1973, 'M', 206), +(106818, 'Louie', 1973, 'M', 206), +(106819, 'Buddy', 1973, 'M', 204), +(106820, 'Dante', 1973, 'M', 204), +(106821, 'Daren', 1973, 'M', 204), +(106822, 'Laurence', 1973, 'M', 204), +(106823, 'Tommie', 1973, 'M', 204), +(106824, 'Avery', 1973, 'M', 203), +(106825, 'Emanuel', 1973, 'M', 203), +(106826, 'Wilson', 1973, 'M', 203), +(106827, 'Kory', 1973, 'M', 202), +(106828, 'Roosevelt', 1973, 'M', 202), +(106829, 'Rodrick', 1973, 'M', 201), +(106830, 'Thad', 1973, 'M', 201), +(106831, 'Anton', 1973, 'M', 200), +(106832, 'Jasen', 1973, 'M', 200), +(106833, 'Marlin', 1973, 'M', 199), +(106834, 'Emilio', 1973, 'M', 198), +(106835, 'Jeffry', 1973, 'M', 198), +(106836, 'Kurtis', 1973, 'M', 198), +(106837, 'Denny', 1973, 'M', 197), +(106838, 'Doug', 1973, 'M', 197), +(106839, 'Sterling', 1973, 'M', 194), +(106840, 'Raphael', 1973, 'M', 193), +(106841, 'Willis', 1973, 'M', 193), +(106842, 'Trenton', 1973, 'M', 192), +(106843, 'Antwan', 1973, 'M', 191), +(106844, 'Stevie', 1973, 'M', 190), +(106845, 'Elton', 1973, 'M', 189), +(106846, 'Ignacio', 1973, 'M', 189), +(106847, 'Santiago', 1973, 'M', 188), +(106848, 'Aric', 1973, 'M', 186), +(106849, 'Beau', 1973, 'M', 186), +(106850, 'Chuck', 1973, 'M', 186), +(106851, 'Emmanuel', 1973, 'M', 186), +(106852, 'Humberto', 1973, 'M', 186), +(106853, 'Caleb', 1973, 'M', 185), +(106854, 'Hubert', 1973, 'M', 184), +(106855, 'Marcel', 1973, 'M', 184), +(106856, 'Jonas', 1973, 'M', 183), +(106857, 'Kim', 1973, 'M', 183), +(106858, 'Ellis', 1973, 'M', 182), +(106859, 'Rickie', 1973, 'M', 182), +(106860, 'Elliot', 1973, 'M', 180), +(106861, 'Wilbert', 1973, 'M', 177), +(106862, 'Van', 1973, 'M', 176), +(106863, 'Ervin', 1973, 'M', 175), +(106864, 'Nolan', 1973, 'M', 175), +(106865, 'Rico', 1973, 'M', 175), +(106866, 'Rodger', 1973, 'M', 175), +(106867, 'Graham', 1973, 'M', 174), +(106868, 'Horace', 1973, 'M', 174), +(106869, 'Jeromy', 1973, 'M', 174), +(106870, 'Conrad', 1973, 'M', 172), +(106871, 'Esteban', 1973, 'M', 172), +(106872, 'Santos', 1973, 'M', 172), +(106873, 'Theron', 1973, 'M', 172), +(106874, 'Brenton', 1973, 'M', 171), +(106875, 'Danial', 1973, 'M', 171), +(106876, 'Domingo', 1973, 'M', 171), +(106877, 'Shelby', 1973, 'M', 171), +(106878, 'Brain', 1973, 'M', 170), +(106879, 'Cleveland', 1973, 'M', 170), +(106880, 'Aubrey', 1973, 'M', 169), +(106881, 'Percy', 1973, 'M', 169), +(106882, 'Quinton', 1973, 'M', 169), +(106883, 'Jarvis', 1973, 'M', 167), +(106884, 'Wilfredo', 1973, 'M', 167), +(106885, 'Deron', 1973, 'M', 164), +(106886, 'Royce', 1973, 'M', 164), +(106887, 'Dirk', 1973, 'M', 163), +(106888, 'Mack', 1973, 'M', 163), +(106889, 'Rufus', 1973, 'M', 163), +(106890, 'Alphonso', 1973, 'M', 162), +(106891, 'Noe', 1973, 'M', 162), +(106892, 'Vicente', 1973, 'M', 161), +(106893, 'Winston', 1973, 'M', 160), +(106894, 'Bert', 1973, 'M', 159), +(106895, 'Cole', 1973, 'M', 159), +(106896, 'Jerrod', 1973, 'M', 159), +(106897, 'Brant', 1973, 'M', 158), +(106898, 'Elbert', 1973, 'M', 158), +(106899, 'Jacques', 1973, 'M', 158), +(106900, 'Rodrigo', 1973, 'M', 158), +(106901, 'Tad', 1973, 'M', 158), +(106902, 'Solomon', 1973, 'M', 157), +(106903, 'Elvis', 1973, 'M', 156), +(106904, 'Ernie', 1973, 'M', 156), +(106905, 'Moises', 1973, 'M', 156), +(106906, 'Vaughn', 1973, 'M', 156), +(106907, 'Darian', 1973, 'M', 155), +(106908, 'Jed', 1973, 'M', 155), +(106909, 'Lowell', 1973, 'M', 155), +(106910, 'Zachariah', 1973, 'M', 155), +(106911, 'Galen', 1973, 'M', 154), +(106912, 'Garland', 1973, 'M', 153), +(106913, 'Mason', 1973, 'M', 153), +(106914, 'Tyron', 1973, 'M', 153), +(106915, 'Alexis', 1973, 'M', 152), +(106916, 'Kirby', 1973, 'M', 151), +(106917, 'Brock', 1973, 'M', 150), +(106918, 'Cornell', 1973, 'M', 150), +(106919, 'Garth', 1973, 'M', 150), +(106920, 'Kip', 1973, 'M', 150), +(106921, 'Nicky', 1973, 'M', 150), +(106922, 'Adan', 1973, 'M', 149), +(106923, 'Boyd', 1973, 'M', 149), +(106924, 'Dewey', 1973, 'M', 149), +(106925, 'Tobias', 1973, 'M', 149), +(106926, 'Arron', 1973, 'M', 148), +(106927, 'Doyle', 1973, 'M', 147), +(106928, 'Germaine', 1973, 'M', 146), +(106929, 'Andrea', 1973, 'M', 145), +(106930, 'Benito', 1973, 'M', 145), +(106931, 'Billie', 1973, 'M', 145), +(106932, 'Irvin', 1973, 'M', 145), +(106933, 'Kenya', 1973, 'M', 145), +(106934, 'Al', 1973, 'M', 144), +(106935, 'Darwin', 1973, 'M', 144), +(106936, 'Heriberto', 1973, 'M', 144), +(106937, 'Johnathon', 1973, 'M', 144), +(106938, 'Kenyatta', 1973, 'M', 143), +(106939, 'Tory', 1973, 'M', 143), +(106940, 'Kristofer', 1973, 'M', 142), +(106941, 'Tremayne', 1973, 'M', 142), +(106942, 'Branden', 1973, 'M', 141), +(106943, 'Brice', 1973, 'M', 141), +(106944, 'Wyatt', 1973, 'M', 140), +(106945, 'Giovanni', 1973, 'M', 139), +(106946, 'Edmond', 1973, 'M', 138), +(106947, 'Michel', 1973, 'M', 138), +(106948, 'Ronny', 1973, 'M', 138), +(106949, 'Taylor', 1973, 'M', 138), +(106950, 'Torrey', 1973, 'M', 138), +(106951, 'Darron', 1973, 'M', 137), +(106952, 'Barrett', 1973, 'M', 136), +(106953, 'Jamel', 1973, 'M', 136), +(106954, 'Nickolas', 1973, 'M', 136), +(106955, 'Quinn', 1973, 'M', 136), +(106956, 'Reed', 1973, 'M', 136), +(106957, 'Dusty', 1973, 'M', 135), +(106958, 'Jackson', 1973, 'M', 135), +(106959, 'Bradly', 1973, 'M', 134), +(106960, 'Brooks', 1973, 'M', 134), +(106961, 'Judd', 1973, 'M', 134), +(106962, 'Lane', 1973, 'M', 134), +(106963, 'Deshawn', 1973, 'M', 133), +(106964, 'Shelton', 1973, 'M', 133), +(106965, 'Tod', 1973, 'M', 133), +(106966, 'Carter', 1973, 'M', 132), +(106967, 'Chance', 1973, 'M', 132), +(106968, 'Emmett', 1973, 'M', 132), +(106969, 'Jeramy', 1973, 'M', 132), +(106970, 'Rory', 1973, 'M', 132), +(106971, 'Sebastian', 1973, 'M', 132), +(106972, 'Daron', 1973, 'M', 131), +(106973, 'Denis', 1973, 'M', 131), +(106974, 'Edwardo', 1973, 'M', 130), +(106975, 'Harley', 1973, 'M', 130), +(106976, 'Jonah', 1973, 'M', 130), +(106977, 'Russel', 1973, 'M', 130), +(106978, 'Collin', 1973, 'M', 129), +(106979, 'Zane', 1973, 'M', 129), +(106980, 'Jammie', 1973, 'M', 128), +(106981, 'Marquis', 1973, 'M', 128), +(106982, 'Rob', 1973, 'M', 128), +(106983, 'Torrance', 1973, 'M', 128), +(106984, 'Cedrick', 1973, 'M', 127), +(106985, 'Dax', 1973, 'M', 127), +(106986, 'Wilbur', 1973, 'M', 127), +(106987, 'Agustin', 1973, 'M', 126), +(106988, 'Issac', 1973, 'M', 126), +(106989, 'Malik', 1973, 'M', 126), +(106990, 'Deandre', 1973, 'M', 125), +(106991, 'Gerry', 1973, 'M', 125), +(106992, 'Jan', 1973, 'M', 125), +(106993, 'Kraig', 1973, 'M', 125), +(106994, 'Pierre', 1973, 'M', 124), +(106995, 'Reid', 1973, 'M', 124), +(106996, 'Blair', 1973, 'M', 122), +(106997, 'Duncan', 1973, 'M', 122), +(106998, 'Chase', 1973, 'M', 121), +(106999, 'Ezra', 1973, 'M', 121), +(107000, 'Gino', 1973, 'M', 121), +(107001, 'Jude', 1973, 'M', 121), +(107002, 'Rocco', 1973, 'M', 121), +(107003, 'Vito', 1973, 'M', 120), +(107004, 'Woodrow', 1973, 'M', 120), +(107005, 'Homer', 1973, 'M', 119), +(107006, 'Sammie', 1973, 'M', 119), +(107007, 'Carroll', 1973, 'M', 118), +(107008, 'Rhett', 1973, 'M', 118), +(107009, 'Tobin', 1973, 'M', 118), +(107010, 'Adolfo', 1973, 'M', 117), +(107011, 'Ari', 1973, 'M', 117), +(107012, 'Harrison', 1973, 'M', 117), +(107013, 'Josue', 1973, 'M', 117), +(107014, 'Eddy', 1973, 'M', 116), +(107015, 'Michelle', 1973, 'M', 116), +(107016, 'Rahsaan', 1973, 'M', 116), +(107017, 'Dino', 1973, 'M', 115), +(107018, 'Jarod', 1973, 'M', 115), +(107019, 'Randell', 1973, 'M', 115), +(107020, 'Ali', 1973, 'M', 114), +(107021, 'Antony', 1973, 'M', 114), +(107022, 'Jamar', 1973, 'M', 114), +(107023, 'Alvaro', 1973, 'M', 113), +(107024, 'Bernardo', 1973, 'M', 113), +(107025, 'Gregorio', 1973, 'M', 113), +(107026, 'Jory', 1973, 'M', 113), +(107027, 'Kristoffer', 1973, 'M', 113), +(107028, 'Korey', 1973, 'M', 112), +(107029, 'Brendon', 1973, 'M', 111), +(107030, 'Judson', 1973, 'M', 111), +(107031, 'Keven', 1973, 'M', 111), +(107032, 'Antione', 1973, 'M', 110), +(107033, 'Cliff', 1973, 'M', 110), +(107034, 'Markus', 1973, 'M', 109), +(107035, 'Coy', 1973, 'M', 108), +(107036, 'Damond', 1973, 'M', 108), +(107037, 'Diego', 1973, 'M', 108), +(107038, 'Trey', 1973, 'M', 108), +(107039, 'Ulysses', 1973, 'M', 108), +(107040, 'Donte', 1973, 'M', 107), +(107041, 'Carmen', 1973, 'M', 106), +(107042, 'Hank', 1973, 'M', 106), +(107043, 'Lonny', 1973, 'M', 106), +(107044, 'Mikel', 1973, 'M', 106), +(107045, 'Barton', 1973, 'M', 105), +(107046, 'Eloy', 1973, 'M', 105), +(107047, 'Jerod', 1973, 'M', 105), +(107048, 'Ariel', 1973, 'M', 104), +(107049, 'Dedrick', 1973, 'M', 104), +(107050, 'Leonel', 1973, 'M', 104), +(107051, 'Hiram', 1973, 'M', 103), +(107052, 'Lincoln', 1973, 'M', 103), +(107053, 'Octavio', 1973, 'M', 103), +(107054, 'Carson', 1973, 'M', 102), +(107055, 'Emil', 1973, 'M', 102), +(107056, 'Jasper', 1973, 'M', 102), +(107057, 'Keenan', 1973, 'M', 102), +(107058, 'Jeramie', 1973, 'M', 101), +(107059, 'Jeremie', 1973, 'M', 101), +(107060, 'Burt', 1973, 'M', 100), +(107061, 'Chet', 1973, 'M', 100), +(107062, 'Junior', 1973, 'M', 100), +(107063, 'Nathanael', 1973, 'M', 100), +(107064, 'Waylon', 1973, 'M', 100), +(107065, 'Jennifer', 1974, 'F', 63111), +(107066, 'Amy', 1974, 'F', 29566), +(107067, 'Michelle', 1974, 'F', 25828), +(107068, 'Heather', 1974, 'F', 23184), +(107069, 'Angela', 1974, 'F', 22799), +(107070, 'Kimberly', 1974, 'F', 22422), +(107071, 'Melissa', 1974, 'F', 22169), +(107072, 'Lisa', 1974, 'F', 19776), +(107073, 'Stephanie', 1974, 'F', 16983), +(107074, 'Rebecca', 1974, 'F', 15171), +(107075, 'Nicole', 1974, 'F', 13111), +(107076, 'Elizabeth', 1974, 'F', 12258), +(107077, 'Mary', 1974, 'F', 11750), +(107078, 'Julie', 1974, 'F', 11364), +(107079, 'Christina', 1974, 'F', 10852), +(107080, 'Kelly', 1974, 'F', 10846), +(107081, 'Jessica', 1974, 'F', 10654), +(107082, 'Shannon', 1974, 'F', 10608), +(107083, 'Christine', 1974, 'F', 9898), +(107084, 'Sarah', 1974, 'F', 9787), +(107085, 'Laura', 1974, 'F', 9717), +(107086, 'Dawn', 1974, 'F', 9417), +(107087, 'Tracy', 1974, 'F', 9291), +(107088, 'Tammy', 1974, 'F', 9241), +(107089, 'Tina', 1974, 'F', 8665), +(107090, 'Karen', 1974, 'F', 8648), +(107091, 'Susan', 1974, 'F', 8475), +(107092, 'April', 1974, 'F', 8452), +(107093, 'Patricia', 1974, 'F', 8040), +(107094, 'Lori', 1974, 'F', 7963), +(107095, 'Maria', 1974, 'F', 7769), +(107096, 'Wendy', 1974, 'F', 7563), +(107097, 'Cynthia', 1974, 'F', 7555), +(107098, 'Andrea', 1974, 'F', 7481), +(107099, 'Amanda', 1974, 'F', 7476), +(107100, 'Rachel', 1974, 'F', 7397), +(107101, 'Tonya', 1974, 'F', 6878), +(107102, 'Stacy', 1974, 'F', 6739), +(107103, 'Tara', 1974, 'F', 6656), +(107104, 'Danielle', 1974, 'F', 6628), +(107105, 'Tiffany', 1974, 'F', 6476), +(107106, 'Carrie', 1974, 'F', 6435), +(107107, 'Monica', 1974, 'F', 6283), +(107108, 'Sandra', 1974, 'F', 6269), +(107109, 'Kristen', 1974, 'F', 6055), +(107110, 'Tanya', 1974, 'F', 5996), +(107111, 'Erin', 1974, 'F', 5871), +(107112, 'Stacey', 1974, 'F', 5803), +(107113, 'Crystal', 1974, 'F', 5619), +(107114, 'Michele', 1974, 'F', 5586), +(107115, 'Melanie', 1974, 'F', 5483), +(107116, 'Denise', 1974, 'F', 5397), +(107117, 'Teresa', 1974, 'F', 5394), +(107118, 'Pamela', 1974, 'F', 5274), +(107119, 'Dana', 1974, 'F', 5158), +(107120, 'Holly', 1974, 'F', 5140), +(107121, 'Christy', 1974, 'F', 5067), +(107122, 'Jill', 1974, 'F', 5059), +(107123, 'Brenda', 1974, 'F', 4827), +(107124, 'Heidi', 1974, 'F', 4687), +(107125, 'Sara', 1974, 'F', 4651), +(107126, 'Katherine', 1974, 'F', 4531), +(107127, 'Tamara', 1974, 'F', 4524), +(107128, 'Robin', 1974, 'F', 4523), +(107129, 'Leslie', 1974, 'F', 4462), +(107130, 'Misty', 1974, 'F', 4437), +(107131, 'Donna', 1974, 'F', 4354), +(107132, 'Deborah', 1974, 'F', 4346), +(107133, 'Emily', 1974, 'F', 4331), +(107134, 'Sharon', 1974, 'F', 4277), +(107135, 'Veronica', 1974, 'F', 4227), +(107136, 'Kristin', 1974, 'F', 4220), +(107137, 'Catherine', 1974, 'F', 4182), +(107138, 'Erica', 1974, 'F', 4123), +(107139, 'Linda', 1974, 'F', 4085), +(107140, 'Kathleen', 1974, 'F', 3955), +(107141, 'Barbara', 1974, 'F', 3907), +(107142, 'Nancy', 1974, 'F', 3895), +(107143, 'Theresa', 1974, 'F', 3858), +(107144, 'Brandy', 1974, 'F', 3830), +(107145, 'Melinda', 1974, 'F', 3749), +(107146, 'Anna', 1974, 'F', 3610), +(107147, 'Jacqueline', 1974, 'F', 3576), +(107148, 'Gina', 1974, 'F', 3560), +(107149, 'Renee', 1974, 'F', 3531), +(107150, 'Rhonda', 1974, 'F', 3524), +(107151, 'Diana', 1974, 'F', 3513), +(107152, 'Cheryl', 1974, 'F', 3499), +(107153, 'Alicia', 1974, 'F', 3435), +(107154, 'Sherry', 1974, 'F', 3433), +(107155, 'Jodi', 1974, 'F', 3306), +(107156, 'Amber', 1974, 'F', 3275), +(107157, 'Valerie', 1974, 'F', 3183), +(107158, 'Debra', 1974, 'F', 3137), +(107159, 'Margaret', 1974, 'F', 3093), +(107160, 'Paula', 1974, 'F', 3061), +(107161, 'Jamie', 1974, 'F', 3022), +(107162, 'Kathryn', 1974, 'F', 2992), +(107163, 'Allison', 1974, 'F', 2960), +(107164, 'Ann', 1974, 'F', 2931), +(107165, 'Kristina', 1974, 'F', 2889), +(107166, 'Kristi', 1974, 'F', 2884), +(107167, 'Cindy', 1974, 'F', 2851), +(107168, 'Victoria', 1974, 'F', 2846), +(107169, 'Megan', 1974, 'F', 2818), +(107170, 'Brandi', 1974, 'F', 2808), +(107171, 'Shelly', 1974, 'F', 2797), +(107172, 'Tracey', 1974, 'F', 2760), +(107173, 'Joy', 1974, 'F', 2755), +(107174, 'Christie', 1974, 'F', 2705), +(107175, 'Suzanne', 1974, 'F', 2699), +(107176, 'Yolanda', 1974, 'F', 2629), +(107177, 'Regina', 1974, 'F', 2587), +(107178, 'Carla', 1974, 'F', 2572), +(107179, 'Deanna', 1974, 'F', 2559), +(107180, 'Laurie', 1974, 'F', 2555), +(107181, 'Beth', 1974, 'F', 2522), +(107182, 'Carolyn', 1974, 'F', 2475), +(107183, 'Natalie', 1974, 'F', 2470), +(107184, 'Anne', 1974, 'F', 2460), +(107185, 'Sheila', 1974, 'F', 2439), +(107186, 'Vanessa', 1974, 'F', 2349), +(107187, 'Colleen', 1974, 'F', 2346), +(107188, 'Courtney', 1974, 'F', 2335), +(107189, 'Kara', 1974, 'F', 2305), +(107190, 'Katrina', 1974, 'F', 2278), +(107191, 'Erika', 1974, 'F', 2265), +(107192, 'Samantha', 1974, 'F', 2252), +(107193, 'Diane', 1974, 'F', 2230), +(107194, 'Janet', 1974, 'F', 2181), +(107195, 'Jenny', 1974, 'F', 2129), +(107196, 'Sonya', 1974, 'F', 2111), +(107197, 'Kristy', 1974, 'F', 2089), +(107198, 'Alison', 1974, 'F', 2081), +(107199, 'Bridget', 1974, 'F', 2080), +(107200, 'Julia', 1974, 'F', 2066), +(107201, 'Felicia', 1974, 'F', 2042), +(107202, 'Carol', 1974, 'F', 2040), +(107203, 'Kristie', 1974, 'F', 2039), +(107204, 'Natasha', 1974, 'F', 2005), +(107205, 'Traci', 1974, 'F', 2005), +(107206, 'Shelley', 1974, 'F', 1997), +(107207, 'Tricia', 1974, 'F', 1970), +(107208, 'Anita', 1974, 'F', 1936), +(107209, 'Kim', 1974, 'F', 1936), +(107210, 'Kathy', 1974, 'F', 1921), +(107211, 'Kristine', 1974, 'F', 1864), +(107212, 'Aimee', 1974, 'F', 1856), +(107213, 'Leah', 1974, 'F', 1842), +(107214, 'Martha', 1974, 'F', 1832), +(107215, 'Terri', 1974, 'F', 1827), +(107216, 'Krista', 1974, 'F', 1807), +(107217, 'Kari', 1974, 'F', 1805), +(107218, 'Jody', 1974, 'F', 1777), +(107219, 'Joanna', 1974, 'F', 1774), +(107220, 'Stacie', 1974, 'F', 1758), +(107221, 'Carmen', 1974, 'F', 1750), +(107222, 'Kerry', 1974, 'F', 1730), +(107223, 'Cassandra', 1974, 'F', 1726), +(107224, 'Virginia', 1974, 'F', 1712), +(107225, 'Nichole', 1974, 'F', 1684), +(107226, 'Shawna', 1974, 'F', 1662), +(107227, 'Lynn', 1974, 'F', 1646), +(107228, 'Connie', 1974, 'F', 1634), +(107229, 'Ashley', 1974, 'F', 1626), +(107230, 'Sherri', 1974, 'F', 1619), +(107231, 'Claudia', 1974, 'F', 1610), +(107232, 'Kelli', 1974, 'F', 1606), +(107233, 'Robyn', 1974, 'F', 1596), +(107234, 'Angie', 1974, 'F', 1591), +(107235, 'Sonia', 1974, 'F', 1580), +(107236, 'Kerri', 1974, 'F', 1577), +(107237, 'Yvonne', 1974, 'F', 1539), +(107238, 'Monique', 1974, 'F', 1533), +(107239, 'Meredith', 1974, 'F', 1519), +(107240, 'Marie', 1974, 'F', 1511), +(107241, 'Becky', 1974, 'F', 1498), +(107242, 'Kendra', 1974, 'F', 1490), +(107243, 'Molly', 1974, 'F', 1480), +(107244, 'Bonnie', 1974, 'F', 1454), +(107245, 'Toni', 1974, 'F', 1452), +(107246, 'Tracie', 1974, 'F', 1452), +(107247, 'Angel', 1974, 'F', 1451), +(107248, 'Sheri', 1974, 'F', 1430), +(107249, 'Gloria', 1974, 'F', 1420), +(107250, 'Charity', 1974, 'F', 1408), +(107251, 'Lauren', 1974, 'F', 1393), +(107252, 'Annette', 1974, 'F', 1381); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(107253, 'Sylvia', 1974, 'F', 1355), +(107254, 'Tasha', 1974, 'F', 1345), +(107255, 'Jeanette', 1974, 'F', 1325), +(107256, 'Sabrina', 1974, 'F', 1325), +(107257, 'Janice', 1974, 'F', 1322), +(107258, 'Mindy', 1974, 'F', 1313), +(107259, 'Ruth', 1974, 'F', 1301), +(107260, 'Hope', 1974, 'F', 1300), +(107261, 'Latonya', 1974, 'F', 1290), +(107262, 'Ginger', 1974, 'F', 1281), +(107263, 'Gretchen', 1974, 'F', 1278), +(107264, 'Shawn', 1974, 'F', 1271), +(107265, 'Joyce', 1974, 'F', 1264), +(107266, 'Joanne', 1974, 'F', 1255), +(107267, 'Charlotte', 1974, 'F', 1253), +(107268, 'Rosa', 1974, 'F', 1247), +(107269, 'Keri', 1974, 'F', 1231), +(107270, 'Leigh', 1974, 'F', 1225), +(107271, 'Wanda', 1974, 'F', 1210), +(107272, 'Kelley', 1974, 'F', 1208), +(107273, 'Beverly', 1974, 'F', 1206), +(107274, 'Belinda', 1974, 'F', 1200), +(107275, 'Caroline', 1974, 'F', 1198), +(107276, 'Melody', 1974, 'F', 1197), +(107277, 'Latasha', 1974, 'F', 1196), +(107278, 'Trina', 1974, 'F', 1191), +(107279, 'Rachael', 1974, 'F', 1188), +(107280, 'Bethany', 1974, 'F', 1181), +(107281, 'Alice', 1974, 'F', 1179), +(107282, 'Ana', 1974, 'F', 1176), +(107283, 'Penny', 1974, 'F', 1174), +(107284, 'Tonia', 1974, 'F', 1174), +(107285, 'Cathy', 1974, 'F', 1169), +(107286, 'Vicki', 1974, 'F', 1169), +(107287, 'Candace', 1974, 'F', 1155), +(107288, 'Yvette', 1974, 'F', 1149), +(107289, 'Helen', 1974, 'F', 1140), +(107290, 'Nakia', 1974, 'F', 1135), +(107291, 'Billie', 1974, 'F', 1132), +(107292, 'Betty', 1974, 'F', 1130), +(107293, 'Katie', 1974, 'F', 1110), +(107294, 'Nikki', 1974, 'F', 1108), +(107295, 'Marsha', 1974, 'F', 1106), +(107296, 'Dorothy', 1974, 'F', 1101), +(107297, 'Kellie', 1974, 'F', 1089), +(107298, 'Ellen', 1974, 'F', 1088), +(107299, 'Bobbie', 1974, 'F', 1073), +(107300, 'Cara', 1974, 'F', 1073), +(107301, 'Charlene', 1974, 'F', 1070), +(107302, 'Frances', 1974, 'F', 1068), +(107303, 'Angelica', 1974, 'F', 1062), +(107304, 'Karla', 1974, 'F', 1062), +(107305, 'Norma', 1974, 'F', 1062), +(107306, 'Joann', 1974, 'F', 1058), +(107307, 'Debbie', 1974, 'F', 1057), +(107308, 'Rose', 1974, 'F', 1055), +(107309, 'Jolene', 1974, 'F', 1052), +(107310, 'Tamika', 1974, 'F', 1039), +(107311, 'Trisha', 1974, 'F', 1039), +(107312, 'Juanita', 1974, 'F', 1038), +(107313, 'Jodie', 1974, 'F', 1027), +(107314, 'Rebekah', 1974, 'F', 1023), +(107315, 'Darlene', 1974, 'F', 1020), +(107316, 'Leticia', 1974, 'F', 1017), +(107317, 'Maureen', 1974, 'F', 1015), +(107318, 'Shirley', 1974, 'F', 1008), +(107319, 'Kimberley', 1974, 'F', 1006), +(107320, 'Rita', 1974, 'F', 992), +(107321, 'Keisha', 1974, 'F', 982), +(107322, 'Adrienne', 1974, 'F', 972), +(107323, 'Audrey', 1974, 'F', 969), +(107324, 'Brooke', 1974, 'F', 964), +(107325, 'Jean', 1974, 'F', 960), +(107326, 'Stefanie', 1974, 'F', 959), +(107327, 'Marcia', 1974, 'F', 958), +(107328, 'Latoya', 1974, 'F', 957), +(107329, 'Sally', 1974, 'F', 957), +(107330, 'Loretta', 1974, 'F', 956), +(107331, 'Elaine', 1974, 'F', 951), +(107332, 'Christa', 1974, 'F', 948), +(107333, 'Tami', 1974, 'F', 947), +(107334, 'Peggy', 1974, 'F', 943), +(107335, 'Staci', 1974, 'F', 941), +(107336, 'Evelyn', 1974, 'F', 940), +(107337, 'Candice', 1974, 'F', 938), +(107338, 'Christi', 1974, 'F', 938), +(107339, 'Miranda', 1974, 'F', 934), +(107340, 'Judy', 1974, 'F', 930), +(107341, 'Tammie', 1974, 'F', 925), +(107342, 'Jenifer', 1974, 'F', 922), +(107343, 'Jackie', 1974, 'F', 913), +(107344, 'Priscilla', 1974, 'F', 906), +(107345, 'Rochelle', 1974, 'F', 898), +(107346, 'Judith', 1974, 'F', 893), +(107347, 'Tabitha', 1974, 'F', 887), +(107348, 'Raquel', 1974, 'F', 860), +(107349, 'Irene', 1974, 'F', 844), +(107350, 'Eva', 1974, 'F', 841), +(107351, 'Dena', 1974, 'F', 839), +(107352, 'Jane', 1974, 'F', 828), +(107353, 'Jeanne', 1974, 'F', 825), +(107354, 'Casey', 1974, 'F', 822), +(107355, 'Jeannie', 1974, 'F', 820), +(107356, 'Roberta', 1974, 'F', 820), +(107357, 'Sandy', 1974, 'F', 814), +(107358, 'Kenya', 1974, 'F', 812), +(107359, 'Kirsten', 1974, 'F', 808), +(107360, 'Cheri', 1974, 'F', 807), +(107361, 'Dina', 1974, 'F', 806), +(107362, 'Jana', 1974, 'F', 800), +(107363, 'Shelby', 1974, 'F', 799), +(107364, 'Naomi', 1974, 'F', 798), +(107365, 'Gwendolyn', 1974, 'F', 793), +(107366, 'Lesley', 1974, 'F', 782), +(107367, 'Teri', 1974, 'F', 777), +(107368, 'Rachelle', 1974, 'F', 776), +(107369, 'Cristina', 1974, 'F', 774), +(107370, 'Desiree', 1974, 'F', 773), +(107371, 'Katina', 1974, 'F', 765), +(107372, 'Eileen', 1974, 'F', 758), +(107373, 'Sonja', 1974, 'F', 754), +(107374, 'Amie', 1974, 'F', 750), +(107375, 'Chastity', 1974, 'F', 749), +(107376, 'Vickie', 1974, 'F', 745), +(107377, 'Nina', 1974, 'F', 731), +(107378, 'Esther', 1974, 'F', 725), +(107379, 'Lydia', 1974, 'F', 724), +(107380, 'Marilyn', 1974, 'F', 724), +(107381, 'Roxanne', 1974, 'F', 722), +(107382, 'Chandra', 1974, 'F', 713), +(107383, 'Alexandra', 1974, 'F', 708), +(107384, 'Bobbi', 1974, 'F', 699), +(107385, 'Lora', 1974, 'F', 696), +(107386, 'Jennie', 1974, 'F', 691), +(107387, 'Shauna', 1974, 'F', 689), +(107388, 'Antoinette', 1974, 'F', 685), +(107389, 'Alisha', 1974, 'F', 682), +(107390, 'Marcy', 1974, 'F', 682), +(107391, 'Angelia', 1974, 'F', 679), +(107392, 'Sheryl', 1974, 'F', 675), +(107393, 'Shana', 1974, 'F', 674), +(107394, 'Tania', 1974, 'F', 673), +(107395, 'Alisa', 1974, 'F', 667), +(107396, 'Deana', 1974, 'F', 663), +(107397, 'Candy', 1974, 'F', 661), +(107398, 'Cherie', 1974, 'F', 661), +(107399, 'Shanna', 1974, 'F', 661), +(107400, 'Carey', 1974, 'F', 658), +(107401, 'Latisha', 1974, 'F', 656), +(107402, 'Brandie', 1974, 'F', 649), +(107403, 'Jacquelyn', 1974, 'F', 643), +(107404, 'Wendi', 1974, 'F', 643), +(107405, 'Ericka', 1974, 'F', 639), +(107406, 'Lorena', 1974, 'F', 639), +(107407, 'Janelle', 1974, 'F', 635), +(107408, 'Lorraine', 1974, 'F', 635), +(107409, 'Gail', 1974, 'F', 630), +(107410, 'Lakisha', 1974, 'F', 628), +(107411, 'Angelina', 1974, 'F', 626), +(107412, 'Rosemary', 1974, 'F', 625), +(107413, 'Lynette', 1974, 'F', 620), +(107414, 'Autumn', 1974, 'F', 619), +(107415, 'Melisa', 1974, 'F', 619), +(107416, 'Chasity', 1974, 'F', 615), +(107417, 'Ronda', 1974, 'F', 613), +(107418, 'Tanisha', 1974, 'F', 611), +(107419, 'Meghan', 1974, 'F', 609), +(107420, 'Lee', 1974, 'F', 608), +(107421, 'Abigail', 1974, 'F', 605), +(107422, 'Alexis', 1974, 'F', 601), +(107423, 'Ruby', 1974, 'F', 601), +(107424, 'Lara', 1974, 'F', 600), +(107425, 'Miriam', 1974, 'F', 597), +(107426, 'Alma', 1974, 'F', 594), +(107427, 'Dianna', 1974, 'F', 594), +(107428, 'Marla', 1974, 'F', 590), +(107429, 'Marisa', 1974, 'F', 589), +(107430, 'Nora', 1974, 'F', 587), +(107431, 'Jo', 1974, 'F', 586), +(107432, 'Angelique', 1974, 'F', 584), +(107433, 'Shari', 1974, 'F', 583), +(107434, 'Celeste', 1974, 'F', 581), +(107435, 'Joan', 1974, 'F', 579), +(107436, 'Lorie', 1974, 'F', 577), +(107437, 'Bernadette', 1974, 'F', 572), +(107438, 'Karin', 1974, 'F', 572), +(107439, 'Johanna', 1974, 'F', 570), +(107440, 'Shelia', 1974, 'F', 569), +(107441, 'Tameka', 1974, 'F', 568), +(107442, 'Audra', 1974, 'F', 560), +(107443, 'Elisa', 1974, 'F', 560), +(107444, 'Maribel', 1974, 'F', 558), +(107445, 'Marlene', 1974, 'F', 547), +(107446, 'Elena', 1974, 'F', 544), +(107447, 'Faith', 1974, 'F', 542), +(107448, 'Jeannette', 1974, 'F', 542), +(107449, 'Janine', 1974, 'F', 541), +(107450, 'Cecilia', 1974, 'F', 540), +(107451, 'Tisha', 1974, 'F', 539), +(107452, 'Marisol', 1974, 'F', 538), +(107453, 'Josephine', 1974, 'F', 535), +(107454, 'Marcie', 1974, 'F', 534), +(107455, 'Grace', 1974, 'F', 533), +(107456, 'Michael', 1974, 'F', 525), +(107457, 'Ramona', 1974, 'F', 520), +(107458, 'Terra', 1974, 'F', 518), +(107459, 'Terry', 1974, 'F', 518), +(107460, 'Darcy', 1974, 'F', 516), +(107461, 'Adriana', 1974, 'F', 513), +(107462, 'Amelia', 1974, 'F', 507), +(107463, 'Glenda', 1974, 'F', 507), +(107464, 'Vivian', 1974, 'F', 507), +(107465, 'Olivia', 1974, 'F', 506), +(107466, 'Daphne', 1974, 'F', 504), +(107467, 'Marci', 1974, 'F', 501), +(107468, 'Ebony', 1974, 'F', 499), +(107469, 'Latanya', 1974, 'F', 498), +(107470, 'Sherrie', 1974, 'F', 498), +(107471, 'Emma', 1974, 'F', 495), +(107472, 'Darla', 1974, 'F', 492), +(107473, 'Betsy', 1974, 'F', 489), +(107474, 'Guadalupe', 1974, 'F', 489), +(107475, 'Margarita', 1974, 'F', 486), +(107476, 'Lena', 1974, 'F', 482), +(107477, 'Lillian', 1974, 'F', 482), +(107478, 'Cari', 1974, 'F', 476), +(107479, 'Paige', 1974, 'F', 476), +(107480, 'Hollie', 1974, 'F', 474), +(107481, 'Krystal', 1974, 'F', 473), +(107482, 'Jenna', 1974, 'F', 469), +(107483, 'Alyssa', 1974, 'F', 468), +(107484, 'Tammi', 1974, 'F', 466), +(107485, 'Annie', 1974, 'F', 464), +(107486, 'Jeanine', 1974, 'F', 461), +(107487, 'Camille', 1974, 'F', 459), +(107488, 'Lakeisha', 1974, 'F', 458), +(107489, 'Lashonda', 1974, 'F', 458), +(107490, 'Lawanda', 1974, 'F', 458), +(107491, 'Lana', 1974, 'F', 457), +(107492, 'Constance', 1974, 'F', 456), +(107493, 'Doris', 1974, 'F', 456), +(107494, 'Marianne', 1974, 'F', 452), +(107495, 'Blanca', 1974, 'F', 449), +(107496, 'Lea', 1974, 'F', 449), +(107497, 'Allyson', 1974, 'F', 447), +(107498, 'Jami', 1974, 'F', 446), +(107499, 'Mandy', 1974, 'F', 446), +(107500, 'Patrice', 1974, 'F', 446), +(107501, 'Selena', 1974, 'F', 446), +(107502, 'Bridgette', 1974, 'F', 445), +(107503, 'Vicky', 1974, 'F', 444), +(107504, 'Kisha', 1974, 'F', 440), +(107505, 'Shonda', 1974, 'F', 440), +(107506, 'Misti', 1974, 'F', 439), +(107507, 'Tabatha', 1974, 'F', 437), +(107508, 'Arlene', 1974, 'F', 435), +(107509, 'Hilary', 1974, 'F', 426), +(107510, 'Chrystal', 1974, 'F', 417), +(107511, 'Elisabeth', 1974, 'F', 412), +(107512, 'Leanne', 1974, 'F', 411), +(107513, 'Gabriela', 1974, 'F', 409), +(107514, 'Marjorie', 1974, 'F', 409), +(107515, 'Tera', 1974, 'F', 409), +(107516, 'Yesenia', 1974, 'F', 409), +(107517, 'Edith', 1974, 'F', 400), +(107518, 'Olga', 1974, 'F', 399), +(107519, 'Anitra', 1974, 'F', 398), +(107520, 'Malinda', 1974, 'F', 398), +(107521, 'Tia', 1974, 'F', 394), +(107522, 'Dora', 1974, 'F', 392), +(107523, 'Liza', 1974, 'F', 392), +(107524, 'Iris', 1974, 'F', 391), +(107525, 'Mia', 1974, 'F', 390), +(107526, 'Esmeralda', 1974, 'F', 389), +(107527, 'Jocelyn', 1974, 'F', 389), +(107528, 'Karrie', 1974, 'F', 389), +(107529, 'Pauline', 1974, 'F', 388), +(107530, 'Shanda', 1974, 'F', 387), +(107531, 'Sophia', 1974, 'F', 387), +(107532, 'Serena', 1974, 'F', 386), +(107533, 'Irma', 1974, 'F', 385), +(107534, 'Lashawn', 1974, 'F', 385), +(107535, 'Myra', 1974, 'F', 385), +(107536, 'Lucy', 1974, 'F', 384), +(107537, 'Isabel', 1974, 'F', 381), +(107538, 'Chelsea', 1974, 'F', 377), +(107539, 'Luz', 1974, 'F', 376), +(107540, 'Marcella', 1974, 'F', 372), +(107541, 'Maryann', 1974, 'F', 372), +(107542, 'Carly', 1974, 'F', 371), +(107543, 'Chanda', 1974, 'F', 371), +(107544, 'Demetria', 1974, 'F', 371), +(107545, 'Randi', 1974, 'F', 368), +(107546, 'Whitney', 1974, 'F', 368), +(107547, 'Claire', 1974, 'F', 366), +(107548, 'Tawana', 1974, 'F', 366), +(107549, 'Marissa', 1974, 'F', 365), +(107550, 'Ingrid', 1974, 'F', 361), +(107551, 'Georgia', 1974, 'F', 360), +(107552, 'Lynda', 1974, 'F', 360), +(107553, 'Kerrie', 1974, 'F', 359), +(107554, 'Ladonna', 1974, 'F', 359), +(107555, 'Bridgett', 1974, 'F', 358), +(107556, 'Jessie', 1974, 'F', 358), +(107557, 'Leann', 1974, 'F', 356), +(107558, 'Silvia', 1974, 'F', 356), +(107559, 'Kimberlee', 1974, 'F', 355), +(107560, 'Nadine', 1974, 'F', 355), +(107561, 'Sue', 1974, 'F', 355), +(107562, 'Janie', 1974, 'F', 354), +(107563, 'Maggie', 1974, 'F', 354), +(107564, 'Susana', 1974, 'F', 353), +(107565, 'Jeannine', 1974, 'F', 351), +(107566, 'Kate', 1974, 'F', 350), +(107567, 'Lakesha', 1974, 'F', 350), +(107568, 'Lucinda', 1974, 'F', 349), +(107569, 'Katharine', 1974, 'F', 344), +(107570, 'Laurel', 1974, 'F', 343), +(107571, 'Rene', 1974, 'F', 343), +(107572, 'Janette', 1974, 'F', 341), +(107573, 'Karyn', 1974, 'F', 341), +(107574, 'Alissa', 1974, 'F', 340), +(107575, 'Alana', 1974, 'F', 337), +(107576, 'Dionne', 1974, 'F', 337), +(107577, 'Cassie', 1974, 'F', 335), +(107578, 'Gabrielle', 1974, 'F', 331), +(107579, 'Catrina', 1974, 'F', 329), +(107580, 'Catina', 1974, 'F', 328), +(107581, 'Hannah', 1974, 'F', 327), +(107582, 'Latrice', 1974, 'F', 325), +(107583, 'Tamra', 1974, 'F', 325), +(107584, 'Jan', 1974, 'F', 324), +(107585, 'Francine', 1974, 'F', 323), +(107586, 'Annmarie', 1974, 'F', 322), +(107587, 'Cristy', 1974, 'F', 322), +(107588, 'Kesha', 1974, 'F', 320), +(107589, 'Cathleen', 1974, 'F', 318), +(107590, 'Clarissa', 1974, 'F', 318), +(107591, 'Corina', 1974, 'F', 318), +(107592, 'Doreen', 1974, 'F', 317), +(107593, 'Beatrice', 1974, 'F', 316), +(107594, 'Clara', 1974, 'F', 315), +(107595, 'Dianne', 1974, 'F', 315), +(107596, 'Edna', 1974, 'F', 315), +(107597, 'Genevieve', 1974, 'F', 315), +(107598, 'Sondra', 1974, 'F', 315), +(107599, 'Summer', 1974, 'F', 315), +(107600, 'Daisy', 1974, 'F', 314), +(107601, 'Jeri', 1974, 'F', 314), +(107602, 'June', 1974, 'F', 314), +(107603, 'Hillary', 1974, 'F', 313), +(107604, 'Paulette', 1974, 'F', 313), +(107605, 'Tiffani', 1974, 'F', 313), +(107606, 'Susie', 1974, 'F', 312), +(107607, 'Lorrie', 1974, 'F', 311), +(107608, 'Patty', 1974, 'F', 311), +(107609, 'Janel', 1974, 'F', 310), +(107610, 'Susanne', 1974, 'F', 310), +(107611, 'Antonia', 1974, 'F', 309), +(107612, 'Phyllis', 1974, 'F', 309), +(107613, 'Ami', 1974, 'F', 308), +(107614, 'Dolores', 1974, 'F', 305), +(107615, 'Hilda', 1974, 'F', 304), +(107616, 'Mona', 1974, 'F', 304), +(107617, 'Alyson', 1974, 'F', 303), +(107618, 'Deirdre', 1974, 'F', 303), +(107619, 'Ida', 1974, 'F', 303), +(107620, 'Mildred', 1974, 'F', 300), +(107621, 'Shellie', 1974, 'F', 300), +(107622, 'Araceli', 1974, 'F', 298), +(107623, 'Janna', 1974, 'F', 296), +(107624, 'Latosha', 1974, 'F', 296), +(107625, 'Maricela', 1974, 'F', 291), +(107626, 'Christopher', 1974, 'F', 289), +(107627, 'Maritza', 1974, 'F', 289), +(107628, 'Jasmine', 1974, 'F', 286), +(107629, 'Kasey', 1974, 'F', 286), +(107630, 'Lois', 1974, 'F', 285), +(107631, 'Tessa', 1974, 'F', 285), +(107632, 'Gena', 1974, 'F', 284), +(107633, 'Gwen', 1974, 'F', 284), +(107634, 'Caryn', 1974, 'F', 283), +(107635, 'Corinne', 1974, 'F', 283), +(107636, 'Valarie', 1974, 'F', 283), +(107637, 'Lynne', 1974, 'F', 279), +(107638, 'Chantel', 1974, 'F', 276), +(107639, 'Dayna', 1974, 'F', 276), +(107640, 'Kami', 1974, 'F', 276), +(107641, 'Bertha', 1974, 'F', 275), +(107642, 'Deidre', 1974, 'F', 275), +(107643, 'Tawnya', 1974, 'F', 275), +(107644, 'Holli', 1974, 'F', 274), +(107645, 'Renae', 1974, 'F', 274), +(107646, 'Julianne', 1974, 'F', 272), +(107647, 'Rosemarie', 1974, 'F', 271), +(107648, 'Sheree', 1974, 'F', 271), +(107649, 'Carissa', 1974, 'F', 270), +(107650, 'Latonia', 1974, 'F', 270), +(107651, 'Windy', 1974, 'F', 270), +(107652, 'Charmaine', 1974, 'F', 269), +(107653, 'Rena', 1974, 'F', 269), +(107654, 'Deena', 1974, 'F', 268), +(107655, 'Deanne', 1974, 'F', 267), +(107656, 'Gladys', 1974, 'F', 267), +(107657, 'Ursula', 1974, 'F', 267), +(107658, 'Jason', 1974, 'F', 266), +(107659, 'Joni', 1974, 'F', 266), +(107660, 'Danelle', 1974, 'F', 265), +(107661, 'Georgina', 1974, 'F', 265), +(107662, 'Christal', 1974, 'F', 264), +(107663, 'Ivy', 1974, 'F', 264), +(107664, 'Cori', 1974, 'F', 263), +(107665, 'Gayle', 1974, 'F', 263), +(107666, 'Bernice', 1974, 'F', 262), +(107667, 'Letitia', 1974, 'F', 262), +(107668, 'Madeline', 1974, 'F', 262), +(107669, 'Christen', 1974, 'F', 260), +(107670, 'Jaime', 1974, 'F', 260), +(107671, 'Christian', 1974, 'F', 258), +(107672, 'Cicely', 1974, 'F', 256), +(107673, 'Carie', 1974, 'F', 255), +(107674, 'Elsa', 1974, 'F', 255), +(107675, 'Sunshine', 1974, 'F', 255), +(107676, 'Dara', 1974, 'F', 254), +(107677, 'Jerri', 1974, 'F', 254), +(107678, 'Athena', 1974, 'F', 253), +(107679, 'John', 1974, 'F', 253), +(107680, 'Latricia', 1974, 'F', 253), +(107681, 'Marina', 1974, 'F', 253), +(107682, 'Tosha', 1974, 'F', 253), +(107683, 'Justine', 1974, 'F', 252), +(107684, 'Colette', 1974, 'F', 251), +(107685, 'James', 1974, 'F', 251), +(107686, 'Lynnette', 1974, 'F', 251), +(107687, 'Michell', 1974, 'F', 251), +(107688, 'Aisha', 1974, 'F', 250), +(107689, 'Stella', 1974, 'F', 249), +(107690, 'Sasha', 1974, 'F', 248), +(107691, 'Consuelo', 1974, 'F', 247), +(107692, 'Karie', 1974, 'F', 247), +(107693, 'Noelle', 1974, 'F', 247), +(107694, 'Brittany', 1974, 'F', 246), +(107695, 'Suzette', 1974, 'F', 246), +(107696, 'Tarsha', 1974, 'F', 246), +(107697, 'Larissa', 1974, 'F', 244), +(107698, 'Robert', 1974, 'F', 242), +(107699, 'Felecia', 1974, 'F', 241), +(107700, 'Delia', 1974, 'F', 240), +(107701, 'Graciela', 1974, 'F', 240), +(107702, 'Tomeka', 1974, 'F', 240), +(107703, 'Kay', 1974, 'F', 239), +(107704, 'Patti', 1974, 'F', 239), +(107705, 'Eugenia', 1974, 'F', 238), +(107706, 'Marian', 1974, 'F', 238), +(107707, 'Thelma', 1974, 'F', 238), +(107708, 'Margie', 1974, 'F', 237), +(107709, 'Marnie', 1974, 'F', 237), +(107710, 'Stacia', 1974, 'F', 237), +(107711, 'Celia', 1974, 'F', 235), +(107712, 'Jeanie', 1974, 'F', 235), +(107713, 'Mindi', 1974, 'F', 235), +(107714, 'David', 1974, 'F', 234), +(107715, 'Lindsey', 1974, 'F', 234), +(107716, 'Malissa', 1974, 'F', 234), +(107717, 'Mitzi', 1974, 'F', 234), +(107718, 'Buffy', 1974, 'F', 233), +(107719, 'Eve', 1974, 'F', 233), +(107720, 'Marion', 1974, 'F', 233), +(107721, 'Casandra', 1974, 'F', 232), +(107722, 'Delores', 1974, 'F', 232), +(107723, 'Greta', 1974, 'F', 231), +(107724, 'Joey', 1974, 'F', 231), +(107725, 'Louise', 1974, 'F', 230), +(107726, 'Marta', 1974, 'F', 230), +(107727, 'Sharonda', 1974, 'F', 229), +(107728, 'Tonja', 1974, 'F', 227), +(107729, 'Mara', 1974, 'F', 226), +(107730, 'Anastasia', 1974, 'F', 225), +(107731, 'Eleanor', 1974, 'F', 225), +(107732, 'Tamera', 1974, 'F', 225), +(107733, 'Trista', 1974, 'F', 225), +(107734, 'Brandee', 1974, 'F', 224), +(107735, 'Danette', 1974, 'F', 224), +(107736, 'Francesca', 1974, 'F', 224), +(107737, 'Christin', 1974, 'F', 223), +(107738, 'Nia', 1974, 'F', 223), +(107739, 'Susanna', 1974, 'F', 221), +(107740, 'Abby', 1974, 'F', 220), +(107741, 'Elise', 1974, 'F', 220), +(107742, 'Tawanda', 1974, 'F', 220), +(107743, 'Toya', 1974, 'F', 219), +(107744, 'Tiffanie', 1974, 'F', 218), +(107745, 'Deann', 1974, 'F', 217), +(107746, 'Florence', 1974, 'F', 217), +(107747, 'Kristal', 1974, 'F', 217), +(107748, 'Corey', 1974, 'F', 216), +(107749, 'Shalonda', 1974, 'F', 216), +(107750, 'Margo', 1974, 'F', 215), +(107751, 'Alexa', 1974, 'F', 214), +(107752, 'Chiquita', 1974, 'F', 214), +(107753, 'Lourdes', 1974, 'F', 214), +(107754, 'Geneva', 1974, 'F', 213), +(107755, 'Lindsay', 1974, 'F', 213), +(107756, 'Dominique', 1974, 'F', 212), +(107757, 'Ella', 1974, 'F', 212), +(107758, 'Polly', 1974, 'F', 212), +(107759, 'Shelli', 1974, 'F', 212), +(107760, 'Tyra', 1974, 'F', 212), +(107761, 'Beatriz', 1974, 'F', 211), +(107762, 'Josie', 1974, 'F', 211), +(107763, 'Trudy', 1974, 'F', 211), +(107764, 'Venus', 1974, 'F', 211), +(107765, 'Lashanda', 1974, 'F', 210), +(107766, 'Janell', 1974, 'F', 209), +(107767, 'Kori', 1974, 'F', 209), +(107768, 'Marisela', 1974, 'F', 208), +(107769, 'Mollie', 1974, 'F', 208), +(107770, 'Juana', 1974, 'F', 207), +(107771, 'Leeann', 1974, 'F', 207), +(107772, 'Marlo', 1974, 'F', 207), +(107773, 'Maura', 1974, 'F', 207), +(107774, 'Cora', 1974, 'F', 206), +(107775, 'Karina', 1974, 'F', 206), +(107776, 'Chris', 1974, 'F', 204), +(107777, 'Sandi', 1974, 'F', 204), +(107778, 'Danita', 1974, 'F', 203), +(107779, 'Juliet', 1974, 'F', 203), +(107780, 'Richelle', 1974, 'F', 202), +(107781, 'Alethea', 1974, 'F', 201), +(107782, 'Caren', 1974, 'F', 201), +(107783, 'Jada', 1974, 'F', 201), +(107784, 'Jeanna', 1974, 'F', 200), +(107785, 'Carolina', 1974, 'F', 199), +(107786, 'Shanon', 1974, 'F', 199), +(107787, 'Stephenie', 1974, 'F', 199), +(107788, 'Terrie', 1974, 'F', 199), +(107789, 'Leanna', 1974, 'F', 198), +(107790, 'Selina', 1974, 'F', 198), +(107791, 'Mayra', 1974, 'F', 197), +(107792, 'Racheal', 1974, 'F', 196), +(107793, 'Lucia', 1974, 'F', 195), +(107794, 'Noemi', 1974, 'F', 195), +(107795, 'Sharla', 1974, 'F', 195), +(107796, 'Vera', 1974, 'F', 195), +(107797, 'Adrian', 1974, 'F', 194), +(107798, 'Helena', 1974, 'F', 194), +(107799, 'Katy', 1974, 'F', 194), +(107800, 'Annemarie', 1974, 'F', 193), +(107801, 'Corrie', 1974, 'F', 193), +(107802, 'Deidra', 1974, 'F', 193), +(107803, 'Kira', 1974, 'F', 193), +(107804, 'Rosalinda', 1974, 'F', 193), +(107805, 'Callie', 1974, 'F', 192), +(107806, 'Carole', 1974, 'F', 192), +(107807, 'Darci', 1974, 'F', 192), +(107808, 'Niki', 1974, 'F', 192), +(107809, 'Shantel', 1974, 'F', 191), +(107810, 'Aileen', 1974, 'F', 190), +(107811, 'Lucretia', 1974, 'F', 190), +(107812, 'Alecia', 1974, 'F', 189), +(107813, 'Leona', 1974, 'F', 189), +(107814, 'Regan', 1974, 'F', 189), +(107815, 'Tori', 1974, 'F', 189), +(107816, 'Nikia', 1974, 'F', 188), +(107817, 'Therese', 1974, 'F', 188), +(107818, 'Joleen', 1974, 'F', 187), +(107819, 'Jeana', 1974, 'F', 186), +(107820, 'Patsy', 1974, 'F', 186), +(107821, 'Aubrey', 1974, 'F', 185), +(107822, 'Layla', 1974, 'F', 185), +(107823, 'Penelope', 1974, 'F', 185), +(107824, 'Elisha', 1974, 'F', 184), +(107825, 'Rosalind', 1974, 'F', 184), +(107826, 'Bianca', 1974, 'F', 183), +(107827, 'Dixie', 1974, 'F', 183), +(107828, 'Darcie', 1974, 'F', 182), +(107829, 'Jamila', 1974, 'F', 182), +(107830, 'Kia', 1974, 'F', 182), +(107831, 'Simone', 1974, 'F', 182), +(107832, 'Kayla', 1974, 'F', 181), +(107833, 'Lauri', 1974, 'F', 181), +(107834, 'Tanika', 1974, 'F', 181), +(107835, 'Angelita', 1974, 'F', 180), +(107836, 'Geraldine', 1974, 'F', 180), +(107837, 'Mari', 1974, 'F', 180), +(107838, 'Bonita', 1974, 'F', 179), +(107839, 'Angeline', 1974, 'F', 178), +(107840, 'Candi', 1974, 'F', 178), +(107841, 'Davina', 1974, 'F', 178), +(107842, 'Cary', 1974, 'F', 177), +(107843, 'Denice', 1974, 'F', 177), +(107844, 'Shanta', 1974, 'F', 177), +(107845, 'Cory', 1974, 'F', 176), +(107846, 'Elissa', 1974, 'F', 176), +(107847, 'Tamela', 1974, 'F', 176), +(107848, 'Nikole', 1974, 'F', 175), +(107849, 'Aurora', 1974, 'F', 174), +(107850, 'Brande', 1974, 'F', 174), +(107851, 'Rocio', 1974, 'F', 174), +(107852, 'Jena', 1974, 'F', 173), +(107853, 'Tawanna', 1974, 'F', 173), +(107854, 'Mendy', 1974, 'F', 172), +(107855, 'Monika', 1974, 'F', 172), +(107856, 'Rae', 1974, 'F', 172), +(107857, 'Andria', 1974, 'F', 171), +(107858, 'Cortney', 1974, 'F', 171), +(107859, 'Johnna', 1974, 'F', 171), +(107860, 'Nikita', 1974, 'F', 170), +(107861, 'Adrianne', 1974, 'F', 169), +(107862, 'Carri', 1974, 'F', 169), +(107863, 'Coleen', 1974, 'F', 169), +(107864, 'Maya', 1974, 'F', 169), +(107865, 'Mercedes', 1974, 'F', 169), +(107866, 'Myrna', 1974, 'F', 169), +(107867, 'Nanette', 1974, 'F', 169), +(107868, 'William', 1974, 'F', 169), +(107869, 'Antionette', 1974, 'F', 167), +(107870, 'Brenna', 1974, 'F', 167), +(107871, 'Danna', 1974, 'F', 167), +(107872, 'Griselda', 1974, 'F', 167), +(107873, 'Kris', 1974, 'F', 167), +(107874, 'Mellissa', 1974, 'F', 167), +(107875, 'Suzanna', 1974, 'F', 167), +(107876, 'Della', 1974, 'F', 166), +(107877, 'Liliana', 1974, 'F', 166), +(107878, 'Noel', 1974, 'F', 166), +(107879, 'Rosalie', 1974, 'F', 166), +(107880, 'Cecelia', 1974, 'F', 165), +(107881, 'Joelle', 1974, 'F', 165), +(107882, 'Ada', 1974, 'F', 164), +(107883, 'Meagan', 1974, 'F', 164), +(107884, 'Renita', 1974, 'F', 164), +(107885, 'Shannan', 1974, 'F', 164), +(107886, 'Tana', 1974, 'F', 164), +(107887, 'Tomika', 1974, 'F', 164), +(107888, 'Brook', 1974, 'F', 163), +(107889, 'Corinna', 1974, 'F', 163), +(107890, 'Rhoda', 1974, 'F', 162), +(107891, 'Shani', 1974, 'F', 162), +(107892, 'Janis', 1974, 'F', 161), +(107893, 'Elvira', 1974, 'F', 160), +(107894, 'Jasmin', 1974, 'F', 160), +(107895, 'Keshia', 1974, 'F', 160), +(107896, 'Carin', 1974, 'F', 159), +(107897, 'Eunice', 1974, 'F', 159), +(107898, 'Alejandra', 1974, 'F', 158), +(107899, 'Anika', 1974, 'F', 158), +(107900, 'Lilia', 1974, 'F', 158), +(107901, 'Valencia', 1974, 'F', 158), +(107902, 'Alexandria', 1974, 'F', 157), +(107903, 'Jayme', 1974, 'F', 157), +(107904, 'Nellie', 1974, 'F', 157), +(107905, 'Shane', 1974, 'F', 157), +(107906, 'Benita', 1974, 'F', 156), +(107907, 'Charla', 1974, 'F', 156), +(107908, 'Christel', 1974, 'F', 156), +(107909, 'Daniela', 1974, 'F', 156), +(107910, 'Magdalena', 1974, 'F', 156), +(107911, 'Ivette', 1974, 'F', 155), +(107912, 'Janeen', 1974, 'F', 155), +(107913, 'Leila', 1974, 'F', 155), +(107914, 'Maranda', 1974, 'F', 155), +(107915, 'Shea', 1974, 'F', 155), +(107916, 'Lola', 1974, 'F', 154), +(107917, 'Robbie', 1974, 'F', 154), +(107918, 'Daniel', 1974, 'F', 153), +(107919, 'Marquita', 1974, 'F', 153), +(107920, 'Martina', 1974, 'F', 153), +(107921, 'Tressa', 1974, 'F', 153), +(107922, 'Aretha', 1974, 'F', 152), +(107923, 'Julissa', 1974, 'F', 152), +(107924, 'Kandi', 1974, 'F', 152), +(107925, 'Kathrine', 1974, 'F', 152), +(107926, 'Lenora', 1974, 'F', 152), +(107927, 'Rosie', 1974, 'F', 152), +(107928, 'Fatima', 1974, 'F', 151), +(107929, 'Lakeshia', 1974, 'F', 151), +(107930, 'Octavia', 1974, 'F', 151), +(107931, 'Rosalyn', 1974, 'F', 151), +(107932, 'Claudine', 1974, 'F', 150), +(107933, 'Latarsha', 1974, 'F', 150), +(107934, 'Danyell', 1974, 'F', 149), +(107935, 'Debora', 1974, 'F', 149), +(107936, 'Faye', 1974, 'F', 149), +(107937, 'Sadie', 1974, 'F', 149), +(107938, 'Shantell', 1974, 'F', 149), +(107939, 'Anjanette', 1974, 'F', 148), +(107940, 'Esperanza', 1974, 'F', 148), +(107941, 'Francisca', 1974, 'F', 148), +(107942, 'Pearl', 1974, 'F', 148), +(107943, 'Rosanna', 1974, 'F', 148), +(107944, 'Delilah', 1974, 'F', 147), +(107945, 'Lila', 1974, 'F', 147), +(107946, 'Aida', 1974, 'F', 146), +(107947, 'Danyelle', 1974, 'F', 146), +(107948, 'Jolie', 1974, 'F', 146), +(107949, 'Karri', 1974, 'F', 146), +(107950, 'Tangela', 1974, 'F', 146), +(107951, 'Kirstin', 1974, 'F', 145), +(107952, 'Lissette', 1974, 'F', 145), +(107953, 'Lorna', 1974, 'F', 145), +(107954, 'Melonie', 1974, 'F', 145), +(107955, 'Keesha', 1974, 'F', 144), +(107956, 'Lesa', 1974, 'F', 144), +(107957, 'Nicki', 1974, 'F', 144), +(107958, 'Sofia', 1974, 'F', 144), +(107959, 'Alysia', 1974, 'F', 143), +(107960, 'Elsie', 1974, 'F', 143), +(107961, 'Shawnda', 1974, 'F', 143), +(107962, 'Kyla', 1974, 'F', 142), +(107963, 'Mellisa', 1974, 'F', 142), +(107964, 'Corrine', 1974, 'F', 141), +(107965, 'Georgette', 1974, 'F', 141), +(107966, 'Tamala', 1974, 'F', 141), +(107967, 'Vikki', 1974, 'F', 141), +(107968, 'Carmela', 1974, 'F', 140), +(107969, 'Eliza', 1974, 'F', 140), +(107970, 'Lillie', 1974, 'F', 140), +(107971, 'Sherita', 1974, 'F', 140), +(107972, 'Anissa', 1974, 'F', 139), +(107973, 'Candida', 1974, 'F', 139), +(107974, 'Eric', 1974, 'F', 139), +(107975, 'Valeria', 1974, 'F', 139), +(107976, 'Brian', 1974, 'F', 138), +(107977, 'Latrina', 1974, 'F', 138), +(107978, 'Marni', 1974, 'F', 138), +(107979, 'Mechelle', 1974, 'F', 138), +(107980, 'Rosario', 1974, 'F', 138), +(107981, 'Syreeta', 1974, 'F', 138), +(107982, 'Tracee', 1974, 'F', 138), +(107983, 'Yolonda', 1974, 'F', 138), +(107984, 'Ginny', 1974, 'F', 137), +(107985, 'Hazel', 1974, 'F', 137), +(107986, 'Jenni', 1974, 'F', 137), +(107987, 'Juli', 1974, 'F', 137), +(107988, 'Dee', 1974, 'F', 136), +(107989, 'Fawn', 1974, 'F', 136), +(107990, 'Luciana', 1974, 'F', 136), +(107991, 'Tobi', 1974, 'F', 136), +(107992, 'Corrina', 1974, 'F', 135), +(107993, 'Melodie', 1974, 'F', 135), +(107994, 'Alanna', 1974, 'F', 134), +(107995, 'Brigette', 1974, 'F', 134), +(107996, 'Dusty', 1974, 'F', 134), +(107997, 'Mistie', 1974, 'F', 134), +(107998, 'Josefina', 1974, 'F', 133), +(107999, 'Keely', 1974, 'F', 133), +(108000, 'Tamica', 1974, 'F', 133), +(108001, 'Bree', 1974, 'F', 132), +(108002, 'Carisa', 1974, 'F', 132), +(108003, 'Cherish', 1974, 'F', 132), +(108004, 'Cristin', 1974, 'F', 132), +(108005, 'Laquita', 1974, 'F', 132), +(108006, 'Maxine', 1974, 'F', 132), +(108007, 'Rolanda', 1974, 'F', 132), +(108008, 'Violet', 1974, 'F', 132), +(108009, 'Celina', 1974, 'F', 131), +(108010, 'Johnnie', 1974, 'F', 131), +(108011, 'Lucille', 1974, 'F', 131), +(108012, 'Sharron', 1974, 'F', 131), +(108013, 'Susannah', 1974, 'F', 131), +(108014, 'Tamiko', 1974, 'F', 131), +(108015, 'Ava', 1974, 'F', 130), +(108016, 'Cecily', 1974, 'F', 130), +(108017, 'Chantelle', 1974, 'F', 130), +(108018, 'Dedra', 1974, 'F', 130), +(108019, 'Ethel', 1974, 'F', 130), +(108020, 'Haley', 1974, 'F', 130), +(108021, 'Saundra', 1974, 'F', 130), +(108022, 'Shay', 1974, 'F', 130), +(108023, 'Taryn', 1974, 'F', 130), +(108024, 'Felisha', 1974, 'F', 129), +(108025, 'Juliana', 1974, 'F', 129), +(108026, 'Lindy', 1974, 'F', 129), +(108027, 'Charisse', 1974, 'F', 128), +(108028, 'Frankie', 1974, 'F', 128), +(108029, 'Leilani', 1974, 'F', 128), +(108030, 'Milissa', 1974, 'F', 128), +(108031, 'Adriane', 1974, 'F', 127), +(108032, 'Freda', 1974, 'F', 127), +(108033, 'Imelda', 1974, 'F', 127), +(108034, 'Kevin', 1974, 'F', 127), +(108035, 'Mandi', 1974, 'F', 127), +(108036, 'Sheena', 1974, 'F', 127), +(108037, 'Carmelita', 1974, 'F', 126), +(108038, 'Evette', 1974, 'F', 126), +(108039, 'Lisette', 1974, 'F', 126), +(108040, 'Michaela', 1974, 'F', 126), +(108041, 'Ryan', 1974, 'F', 126), +(108042, 'Vonetta', 1974, 'F', 126), +(108043, 'Angelic', 1974, 'F', 125), +(108044, 'Rebeca', 1974, 'F', 125), +(108045, 'Trinity', 1974, 'F', 125), +(108046, 'Adria', 1974, 'F', 124), +(108047, 'Anthony', 1974, 'F', 124), +(108048, 'Celena', 1974, 'F', 124), +(108049, 'Cherry', 1974, 'F', 124), +(108050, 'Cristi', 1974, 'F', 124), +(108051, 'Estella', 1974, 'F', 124), +(108052, 'Joseph', 1974, 'F', 124), +(108053, 'Kandy', 1974, 'F', 124), +(108054, 'Marlena', 1974, 'F', 124), +(108055, 'Camilla', 1974, 'F', 123), +(108056, 'Gabriella', 1974, 'F', 123), +(108057, 'Mirna', 1974, 'F', 123), +(108058, 'Daniele', 1974, 'F', 122), +(108059, 'Roseann', 1974, 'F', 122), +(108060, 'Stefani', 1974, 'F', 122), +(108061, 'Tamisha', 1974, 'F', 122), +(108062, 'Tanesha', 1974, 'F', 122), +(108063, 'Danyel', 1974, 'F', 121), +(108064, 'Elaina', 1974, 'F', 121), +(108065, 'Justina', 1974, 'F', 121), +(108066, 'Natalia', 1974, 'F', 121), +(108067, 'Ayanna', 1974, 'F', 120), +(108068, 'Josette', 1974, 'F', 120), +(108069, 'Libby', 1974, 'F', 120), +(108070, 'Petra', 1974, 'F', 120), +(108071, 'Roxanna', 1974, 'F', 120), +(108072, 'Chanel', 1974, 'F', 119), +(108073, 'Nyree', 1974, 'F', 119), +(108074, 'Roslyn', 1974, 'F', 119), +(108075, 'Trena', 1974, 'F', 119), +(108076, 'Twana', 1974, 'F', 119), +(108077, 'Adina', 1974, 'F', 118), +(108078, 'Briana', 1974, 'F', 118), +(108079, 'Cherise', 1974, 'F', 118), +(108080, 'Cindi', 1974, 'F', 118), +(108081, 'Kenyatta', 1974, 'F', 118), +(108082, 'Mariah', 1974, 'F', 118), +(108083, 'Nichol', 1974, 'F', 118), +(108084, 'Robbin', 1974, 'F', 118), +(108085, 'Shonna', 1974, 'F', 118), +(108086, 'Bessie', 1974, 'F', 117), +(108087, 'Bobby', 1974, 'F', 117), +(108088, 'Brigitte', 1974, 'F', 117), +(108089, 'Claudette', 1974, 'F', 117), +(108090, 'Damaris', 1974, 'F', 117), +(108091, 'Dawna', 1974, 'F', 117), +(108092, 'Destiny', 1974, 'F', 117), +(108093, 'Lesli', 1974, 'F', 117), +(108094, 'Patrica', 1974, 'F', 117), +(108095, 'Sybil', 1974, 'F', 117), +(108096, 'Toby', 1974, 'F', 117), +(108097, 'Viola', 1974, 'F', 117), +(108098, 'Crista', 1974, 'F', 116), +(108099, 'Julianna', 1974, 'F', 116), +(108100, 'Lolita', 1974, 'F', 116), +(108101, 'Mattie', 1974, 'F', 116), +(108102, 'Melony', 1974, 'F', 116), +(108103, 'Francis', 1974, 'F', 115), +(108104, 'Shandra', 1974, 'F', 115), +(108105, 'Shara', 1974, 'F', 115), +(108106, 'Dori', 1974, 'F', 114), +(108107, 'Karena', 1974, 'F', 114), +(108108, 'Nicola', 1974, 'F', 114), +(108109, 'Renea', 1974, 'F', 114), +(108110, 'Wilma', 1974, 'F', 114), +(108111, 'Annamarie', 1974, 'F', 113), +(108112, 'Chana', 1974, 'F', 113), +(108113, 'Elvia', 1974, 'F', 113), +(108114, 'Jacquline', 1974, 'F', 113), +(108115, 'Kimberlie', 1974, 'F', 113), +(108116, 'Kristan', 1974, 'F', 113), +(108117, 'Starla', 1974, 'F', 113), +(108118, 'Britt', 1974, 'F', 112), +(108119, 'Cherilyn', 1974, 'F', 112), +(108120, 'Jayne', 1974, 'F', 112), +(108121, 'Kenyetta', 1974, 'F', 112), +(108122, 'Nakisha', 1974, 'F', 112), +(108123, 'Rosetta', 1974, 'F', 112), +(108124, 'Shawanda', 1974, 'F', 112), +(108125, 'Sherie', 1974, 'F', 112), +(108126, 'Emilie', 1974, 'F', 111), +(108127, 'Flora', 1974, 'F', 111), +(108128, 'Gillian', 1974, 'F', 111), +(108129, 'Lashunda', 1974, 'F', 111), +(108130, 'Mark', 1974, 'F', 111), +(108131, 'Noreen', 1974, 'F', 111), +(108132, 'Raina', 1974, 'F', 111), +(108133, 'Roxann', 1974, 'F', 111), +(108134, 'Sharlene', 1974, 'F', 111), +(108135, 'Angella', 1974, 'F', 110), +(108136, 'Cristal', 1974, 'F', 110), +(108137, 'Dorian', 1974, 'F', 110), +(108138, 'Velma', 1974, 'F', 110), +(108139, 'Blythe', 1974, 'F', 109), +(108140, 'Charissa', 1974, 'F', 109), +(108141, 'Elana', 1974, 'F', 109), +(108142, 'Lenore', 1974, 'F', 109), +(108143, 'Matthew', 1974, 'F', 109), +(108144, 'Missy', 1974, 'F', 109), +(108145, 'Roxana', 1974, 'F', 109), +(108146, 'Venessa', 1974, 'F', 109), +(108147, 'Alina', 1974, 'F', 108), +(108148, 'Barbra', 1974, 'F', 108), +(108149, 'Carlene', 1974, 'F', 108), +(108150, 'Jenniffer', 1974, 'F', 108), +(108151, 'Kyra', 1974, 'F', 108), +(108152, 'Marti', 1974, 'F', 108), +(108153, 'Cristie', 1974, 'F', 107), +(108154, 'Kiesha', 1974, 'F', 107), +(108155, 'Lily', 1974, 'F', 107), +(108156, 'Nichelle', 1974, 'F', 107), +(108157, 'Tamatha', 1974, 'F', 107), +(108158, 'Verna', 1974, 'F', 107), +(108159, 'Althea', 1974, 'F', 106), +(108160, 'Danica', 1974, 'F', 106), +(108161, 'India', 1974, 'F', 106), +(108162, 'Jenelle', 1974, 'F', 106), +(108163, 'Lorri', 1974, 'F', 106), +(108164, 'Malika', 1974, 'F', 106), +(108165, 'Nicolle', 1974, 'F', 106), +(108166, 'Teena', 1974, 'F', 106), +(108167, 'Towanda', 1974, 'F', 106), +(108168, 'Vonda', 1974, 'F', 106), +(108169, 'Willie', 1974, 'F', 106), +(108170, 'Zoe', 1974, 'F', 106), +(108171, 'Corie', 1974, 'F', 105), +(108172, 'Holley', 1974, 'F', 105), +(108173, 'Inez', 1974, 'F', 105), +(108174, 'Marguerite', 1974, 'F', 105), +(108175, 'Milagros', 1974, 'F', 105), +(108176, 'Shawnna', 1974, 'F', 105), +(108177, 'Takisha', 1974, 'F', 105), +(108178, 'Catalina', 1974, 'F', 104), +(108179, 'Cathryn', 1974, 'F', 104), +(108180, 'Clare', 1974, 'F', 104), +(108181, 'Daniella', 1974, 'F', 104), +(108182, 'Demetra', 1974, 'F', 104), +(108183, 'Evangelina', 1974, 'F', 104), +(108184, 'Lasonya', 1974, 'F', 104), +(108185, 'Minnie', 1974, 'F', 104), +(108186, 'Stephaine', 1974, 'F', 104), +(108187, 'Treva', 1974, 'F', 104), +(108188, 'Bettina', 1974, 'F', 103), +(108189, 'Casie', 1974, 'F', 103), +(108190, 'Cher', 1974, 'F', 103), +(108191, 'Jewel', 1974, 'F', 103), +(108192, 'Latesha', 1974, 'F', 103), +(108193, 'Salina', 1974, 'F', 103), +(108194, 'Tanja', 1974, 'F', 103), +(108195, 'Thea', 1974, 'F', 103), +(108196, 'Adele', 1974, 'F', 102), +(108197, 'Ayana', 1974, 'F', 102), +(108198, 'Bambi', 1974, 'F', 102), +(108199, 'Charles', 1974, 'F', 102), +(108200, 'Estela', 1974, 'F', 102), +(108201, 'Lina', 1974, 'F', 102), +(108202, 'Shawana', 1974, 'F', 102), +(108203, 'Tamar', 1974, 'F', 102), +(108204, 'Yadira', 1974, 'F', 102), +(108205, 'Yasmin', 1974, 'F', 102), +(108206, 'Andra', 1974, 'F', 101), +(108207, 'Chantell', 1974, 'F', 101), +(108208, 'Gerri', 1974, 'F', 101), +(108209, 'Hayley', 1974, 'F', 101), +(108210, 'Lela', 1974, 'F', 101), +(108211, 'Marcela', 1974, 'F', 101), +(108212, 'Rashida', 1974, 'F', 101), +(108213, 'Teressa', 1974, 'F', 101), +(108214, 'Billiejo', 1974, 'F', 100), +(108215, 'Juliette', 1974, 'F', 100), +(108216, 'Kacey', 1974, 'F', 100), +(108217, 'Maisha', 1974, 'F', 100), +(108218, 'Tena', 1974, 'F', 100), +(108219, 'Twila', 1974, 'F', 100), +(108220, 'Michael', 1974, 'M', 67577), +(108221, 'Jason', 1974, 'M', 54778), +(108222, 'Christopher', 1974, 'M', 48621), +(108223, 'David', 1974, 'M', 41798), +(108224, 'James', 1974, 'M', 41365), +(108225, 'John', 1974, 'M', 37655), +(108226, 'Robert', 1974, 'M', 37046), +(108227, 'Brian', 1974, 'M', 34465), +(108228, 'Matthew', 1974, 'M', 27227), +(108229, 'William', 1974, 'M', 26997), +(108230, 'Daniel', 1974, 'M', 23842), +(108231, 'Joseph', 1974, 'M', 21844), +(108232, 'Eric', 1974, 'M', 20188), +(108233, 'Kevin', 1974, 'M', 19475), +(108234, 'Jeffrey', 1974, 'M', 19332), +(108235, 'Mark', 1974, 'M', 18915), +(108236, 'Richard', 1974, 'M', 18656), +(108237, 'Scott', 1974, 'M', 18048), +(108238, 'Steven', 1974, 'M', 17677), +(108239, 'Thomas', 1974, 'M', 17286), +(108240, 'Anthony', 1974, 'M', 16392), +(108241, 'Timothy', 1974, 'M', 15895), +(108242, 'Charles', 1974, 'M', 15157), +(108243, 'Jeremy', 1974, 'M', 13303), +(108244, 'Ryan', 1974, 'M', 13195), +(108245, 'Chad', 1974, 'M', 12801), +(108246, 'Paul', 1974, 'M', 12325), +(108247, 'Andrew', 1974, 'M', 11784), +(108248, 'Joshua', 1974, 'M', 11605), +(108249, 'Shawn', 1974, 'M', 11446), +(108250, 'Gregory', 1974, 'M', 10835), +(108251, 'Aaron', 1974, 'M', 10512), +(108252, 'Jonathan', 1974, 'M', 10235), +(108253, 'Kenneth', 1974, 'M', 10152), +(108254, 'Stephen', 1974, 'M', 10119), +(108255, 'Adam', 1974, 'M', 8439), +(108256, 'Sean', 1974, 'M', 8297), +(108257, 'Patrick', 1974, 'M', 8140), +(108258, 'Todd', 1974, 'M', 7853), +(108259, 'Edward', 1974, 'M', 7822), +(108260, 'Donald', 1974, 'M', 7759), +(108261, 'Ronald', 1974, 'M', 7670), +(108262, 'Justin', 1974, 'M', 7438), +(108263, 'Keith', 1974, 'M', 7393), +(108264, 'Bryan', 1974, 'M', 7234), +(108265, 'Benjamin', 1974, 'M', 7193), +(108266, 'Jose', 1974, 'M', 6717), +(108267, 'Gary', 1974, 'M', 6444), +(108268, 'George', 1974, 'M', 6283), +(108269, 'Peter', 1974, 'M', 5951), +(108270, 'Brandon', 1974, 'M', 5864), +(108271, 'Nathan', 1974, 'M', 5852), +(108272, 'Douglas', 1974, 'M', 5849), +(108273, 'Travis', 1974, 'M', 5704), +(108274, 'Larry', 1974, 'M', 5694), +(108275, 'Shane', 1974, 'M', 5656), +(108276, 'Craig', 1974, 'M', 5538), +(108277, 'Bradley', 1974, 'M', 5177), +(108278, 'Dennis', 1974, 'M', 4876), +(108279, 'Samuel', 1974, 'M', 4673), +(108280, 'Jerry', 1974, 'M', 4662), +(108281, 'Raymond', 1974, 'M', 4582), +(108282, 'Troy', 1974, 'M', 4568), +(108283, 'Juan', 1974, 'M', 4432), +(108284, 'Jeffery', 1974, 'M', 4367), +(108285, 'Frank', 1974, 'M', 4361), +(108286, 'Jesse', 1974, 'M', 4105), +(108287, 'Jamie', 1974, 'M', 4089), +(108288, 'Terry', 1974, 'M', 4025), +(108289, 'Phillip', 1974, 'M', 3934), +(108290, 'Carlos', 1974, 'M', 3867), +(108291, 'Rodney', 1974, 'M', 3849), +(108292, 'Marcus', 1974, 'M', 3803), +(108293, 'Derek', 1974, 'M', 3640), +(108294, 'Joel', 1974, 'M', 3493), +(108295, 'Brent', 1974, 'M', 3416), +(108296, 'Corey', 1974, 'M', 3378), +(108297, 'Billy', 1974, 'M', 3366), +(108298, 'Randy', 1974, 'M', 3348), +(108299, 'Tony', 1974, 'M', 3219), +(108300, 'Nicholas', 1974, 'M', 3217), +(108301, 'Antonio', 1974, 'M', 3177), +(108302, 'Russell', 1974, 'M', 3174), +(108303, 'Johnny', 1974, 'M', 3169), +(108304, 'Marc', 1974, 'M', 3110), +(108305, 'Philip', 1974, 'M', 2974), +(108306, 'Derrick', 1974, 'M', 2960), +(108307, 'Jacob', 1974, 'M', 2955), +(108308, 'Carl', 1974, 'M', 2895), +(108309, 'Erik', 1974, 'M', 2885), +(108310, 'Danny', 1974, 'M', 2860), +(108311, 'Bobby', 1974, 'M', 2790), +(108312, 'Roger', 1974, 'M', 2758), +(108313, 'Jon', 1974, 'M', 2749), +(108314, 'Brett', 1974, 'M', 2679), +(108315, 'Victor', 1974, 'M', 2625), +(108316, 'Kyle', 1974, 'M', 2600), +(108317, 'Curtis', 1974, 'M', 2590), +(108318, 'Jimmy', 1974, 'M', 2566), +(108319, 'Lawrence', 1974, 'M', 2545), +(108320, 'Shannon', 1974, 'M', 2506), +(108321, 'Walter', 1974, 'M', 2493), +(108322, 'Micheal', 1974, 'M', 2491), +(108323, 'Christian', 1974, 'M', 2490), +(108324, 'Brad', 1974, 'M', 2482), +(108325, 'Luis', 1974, 'M', 2449), +(108326, 'Vincent', 1974, 'M', 2436), +(108327, 'Gerald', 1974, 'M', 2416), +(108328, 'Martin', 1974, 'M', 2371), +(108329, 'Alexander', 1974, 'M', 2367), +(108330, 'Jay', 1974, 'M', 2366), +(108331, 'Damon', 1974, 'M', 2362), +(108332, 'Joe', 1974, 'M', 2346), +(108333, 'Cory', 1974, 'M', 2328), +(108334, 'Henry', 1974, 'M', 2323), +(108335, 'Chris', 1974, 'M', 2279), +(108336, 'Alan', 1974, 'M', 2234), +(108337, 'Gabriel', 1974, 'M', 2230), +(108338, 'Wayne', 1974, 'M', 2221), +(108339, 'Willie', 1974, 'M', 2220), +(108340, 'Dustin', 1974, 'M', 2197), +(108341, 'Roy', 1974, 'M', 2187), +(108342, 'Randall', 1974, 'M', 2116), +(108343, 'Lee', 1974, 'M', 2115), +(108344, 'Allen', 1974, 'M', 2101), +(108345, 'Arthur', 1974, 'M', 2076), +(108346, 'Darren', 1974, 'M', 2075), +(108347, 'Mario', 1974, 'M', 2060), +(108348, 'Ricky', 1974, 'M', 2035), +(108349, 'Albert', 1974, 'M', 2017), +(108350, 'Jared', 1974, 'M', 2003), +(108351, 'Andre', 1974, 'M', 1999), +(108352, 'Jesus', 1974, 'M', 1943), +(108353, 'Louis', 1974, 'M', 1936), +(108354, 'Frederick', 1974, 'M', 1933), +(108355, 'Bruce', 1974, 'M', 1855), +(108356, 'Darrell', 1974, 'M', 1839), +(108357, 'Adrian', 1974, 'M', 1819), +(108358, 'Tyrone', 1974, 'M', 1815), +(108359, 'Ricardo', 1974, 'M', 1809), +(108360, 'Ronnie', 1974, 'M', 1787), +(108361, 'Manuel', 1974, 'M', 1765), +(108362, 'Kelly', 1974, 'M', 1760), +(108363, 'Casey', 1974, 'M', 1728), +(108364, 'Dale', 1974, 'M', 1690), +(108365, 'Harold', 1974, 'M', 1680), +(108366, 'Ian', 1974, 'M', 1660), +(108367, 'Miguel', 1974, 'M', 1657), +(108368, 'Jack', 1974, 'M', 1653), +(108369, 'Ernest', 1974, 'M', 1642), +(108370, 'Jermaine', 1974, 'M', 1628), +(108371, 'Nathaniel', 1974, 'M', 1610), +(108372, 'Reginald', 1974, 'M', 1610), +(108373, 'Eugene', 1974, 'M', 1603), +(108374, 'Tommy', 1974, 'M', 1579), +(108375, 'Barry', 1974, 'M', 1564), +(108376, 'Clinton', 1974, 'M', 1548), +(108377, 'Glenn', 1974, 'M', 1545), +(108378, 'Lance', 1974, 'M', 1527), +(108379, 'Roberto', 1974, 'M', 1511), +(108380, 'Francisco', 1974, 'M', 1510), +(108381, 'Tracy', 1974, 'M', 1493), +(108382, 'Marvin', 1974, 'M', 1484), +(108383, 'Leonard', 1974, 'M', 1472), +(108384, 'Wesley', 1974, 'M', 1469), +(108385, 'Eddie', 1974, 'M', 1457), +(108386, 'Steve', 1974, 'M', 1446), +(108387, 'Jorge', 1974, 'M', 1429), +(108388, 'Jerome', 1974, 'M', 1417), +(108389, 'Seth', 1974, 'M', 1411), +(108390, 'Alex', 1974, 'M', 1388), +(108391, 'Ruben', 1974, 'M', 1384), +(108392, 'Maurice', 1974, 'M', 1375), +(108393, 'Ralph', 1974, 'M', 1373), +(108394, 'Neil', 1974, 'M', 1325), +(108395, 'Kristopher', 1974, 'M', 1308), +(108396, 'Calvin', 1974, 'M', 1297), +(108397, 'Jeremiah', 1974, 'M', 1295), +(108398, 'Zachary', 1974, 'M', 1276), +(108399, 'Theodore', 1974, 'M', 1268), +(108400, 'Heath', 1974, 'M', 1251), +(108401, 'Kurt', 1974, 'M', 1238), +(108402, 'Mitchell', 1974, 'M', 1232), +(108403, 'Dean', 1974, 'M', 1224), +(108404, 'Hector', 1974, 'M', 1215), +(108405, 'Howard', 1974, 'M', 1209), +(108406, 'Duane', 1974, 'M', 1202), +(108407, 'Melvin', 1974, 'M', 1200), +(108408, 'Dwayne', 1974, 'M', 1199), +(108409, 'Oscar', 1974, 'M', 1196), +(108410, 'Geoffrey', 1974, 'M', 1178), +(108411, 'Edwin', 1974, 'M', 1170), +(108412, 'Clifford', 1974, 'M', 1150), +(108413, 'Stanley', 1974, 'M', 1147), +(108414, 'Jody', 1974, 'M', 1125), +(108415, 'Kirk', 1974, 'M', 1123), +(108416, 'Wade', 1974, 'M', 1121), +(108417, 'Angel', 1974, 'M', 1110), +(108418, 'Terrence', 1974, 'M', 1107), +(108419, 'Greg', 1974, 'M', 1098), +(108420, 'Trevor', 1974, 'M', 1098), +(108421, 'Clayton', 1974, 'M', 1097), +(108422, 'Jaime', 1974, 'M', 1093), +(108423, 'Mathew', 1974, 'M', 1083), +(108424, 'Toby', 1974, 'M', 1081), +(108425, 'Harry', 1974, 'M', 1080), +(108426, 'Earl', 1974, 'M', 1078), +(108427, 'Terrance', 1974, 'M', 1067), +(108428, 'Raul', 1974, 'M', 1064), +(108429, 'Javier', 1974, 'M', 1059), +(108430, 'Darin', 1974, 'M', 1037), +(108431, 'Ramon', 1974, 'M', 1015), +(108432, 'Clarence', 1974, 'M', 1006), +(108433, 'Karl', 1974, 'M', 1005), +(108434, 'Norman', 1974, 'M', 1000), +(108435, 'Pedro', 1974, 'M', 979), +(108436, 'Jeff', 1974, 'M', 975), +(108437, 'Alfred', 1974, 'M', 974), +(108438, 'Leon', 1974, 'M', 973), +(108439, 'Ray', 1974, 'M', 956), +(108440, 'Byron', 1974, 'M', 955), +(108441, 'Daryl', 1974, 'M', 953), +(108442, 'Clint', 1974, 'M', 942), +(108443, 'Isaac', 1974, 'M', 938), +(108444, 'Warren', 1974, 'M', 933), +(108445, 'Rafael', 1974, 'M', 927), +(108446, 'Tyler', 1974, 'M', 924), +(108447, 'Lonnie', 1974, 'M', 922), +(108448, 'Franklin', 1974, 'M', 914), +(108449, 'Cedric', 1974, 'M', 901), +(108450, 'Andy', 1974, 'M', 897), +(108451, 'Fred', 1974, 'M', 890), +(108452, 'Francis', 1974, 'M', 888), +(108453, 'Gilbert', 1974, 'M', 887), +(108454, 'Roderick', 1974, 'M', 881), +(108455, 'Armando', 1974, 'M', 870), +(108456, 'Alejandro', 1974, 'M', 869), +(108457, 'Bernard', 1974, 'M', 857), +(108458, 'Joey', 1974, 'M', 855), +(108459, 'Fernando', 1974, 'M', 841), +(108460, 'Damian', 1974, 'M', 828), +(108461, 'Stacy', 1974, 'M', 828), +(108462, 'Lamont', 1974, 'M', 824), +(108463, 'Glen', 1974, 'M', 820), +(108464, 'Mike', 1974, 'M', 815), +(108465, 'Dana', 1974, 'M', 814), +(108466, 'Alvin', 1974, 'M', 812), +(108467, 'Eduardo', 1974, 'M', 810), +(108468, 'Omar', 1974, 'M', 809), +(108469, 'Shaun', 1974, 'M', 801), +(108470, 'Don', 1974, 'M', 799), +(108471, 'Cody', 1974, 'M', 797), +(108472, 'Leroy', 1974, 'M', 775), +(108473, 'Kelvin', 1974, 'M', 765), +(108474, 'Donnie', 1974, 'M', 761), +(108475, 'Marlon', 1974, 'M', 758), +(108476, 'Vernon', 1974, 'M', 752), +(108477, 'Clifton', 1974, 'M', 751), +(108478, 'Jessie', 1974, 'M', 749), +(108479, 'Marco', 1974, 'M', 747), +(108480, 'Alberto', 1974, 'M', 744), +(108481, 'Sergio', 1974, 'M', 741), +(108482, 'Fredrick', 1974, 'M', 729), +(108483, 'Julio', 1974, 'M', 728), +(108484, 'Luke', 1974, 'M', 727), +(108485, 'Rene', 1974, 'M', 726), +(108486, 'Orlando', 1974, 'M', 718), +(108487, 'Kerry', 1974, 'M', 709), +(108488, 'Darryl', 1974, 'M', 708), +(108489, 'Lewis', 1974, 'M', 708), +(108490, 'Dwight', 1974, 'M', 700), +(108491, 'Micah', 1974, 'M', 694), +(108492, 'Leslie', 1974, 'M', 691), +(108493, 'Erick', 1974, 'M', 685), +(108494, 'Demetrius', 1974, 'M', 680), +(108495, 'Stuart', 1974, 'M', 678), +(108496, 'Herbert', 1974, 'M', 677), +(108497, 'Nelson', 1974, 'M', 676), +(108498, 'Ross', 1974, 'M', 672), +(108499, 'Cesar', 1974, 'M', 670), +(108500, 'Johnathan', 1974, 'M', 670), +(108501, 'Colin', 1974, 'M', 668), +(108502, 'Ivan', 1974, 'M', 659), +(108503, 'Damien', 1974, 'M', 658), +(108504, 'Edgar', 1974, 'M', 653), +(108505, 'Cameron', 1974, 'M', 652), +(108506, 'Alfredo', 1974, 'M', 650), +(108507, 'Julian', 1974, 'M', 650), +(108508, 'Marshall', 1974, 'M', 648), +(108509, 'Dominic', 1974, 'M', 645), +(108510, 'Trent', 1974, 'M', 635), +(108511, 'Brendan', 1974, 'M', 634), +(108512, 'Gordon', 1974, 'M', 632), +(108513, 'Lloyd', 1974, 'M', 632), +(108514, 'Evan', 1974, 'M', 631), +(108515, 'Jarrod', 1974, 'M', 631), +(108516, 'Jonathon', 1974, 'M', 628), +(108517, 'Jayson', 1974, 'M', 625), +(108518, 'Enrique', 1974, 'M', 624), +(108519, 'Grant', 1974, 'M', 617), +(108520, 'Marty', 1974, 'M', 617), +(108521, 'Nakia', 1974, 'M', 611), +(108522, 'Chadwick', 1974, 'M', 608), +(108523, 'Scotty', 1974, 'M', 605), +(108524, 'Bradford', 1974, 'M', 603), +(108525, 'Darrin', 1974, 'M', 596), +(108526, 'Devin', 1974, 'M', 594), +(108527, 'Guy', 1974, 'M', 593), +(108528, 'Jackie', 1974, 'M', 592), +(108529, 'Arturo', 1974, 'M', 591), +(108530, 'Floyd', 1974, 'M', 591), +(108531, 'Tyson', 1974, 'M', 589), +(108532, 'Neal', 1974, 'M', 586), +(108533, 'Kent', 1974, 'M', 584), +(108534, 'Jimmie', 1974, 'M', 581), +(108535, 'Gene', 1974, 'M', 570), +(108536, 'Lorenzo', 1974, 'M', 568), +(108537, 'Bryant', 1974, 'M', 566), +(108538, 'Lucas', 1974, 'M', 566), +(108539, 'Johnnie', 1974, 'M', 564), +(108540, 'Spencer', 1974, 'M', 563), +(108541, 'Charlie', 1974, 'M', 553), +(108542, 'Angelo', 1974, 'M', 550), +(108543, 'Noah', 1974, 'M', 545), +(108544, 'Jim', 1974, 'M', 543), +(108545, 'Ben', 1974, 'M', 541), +(108546, 'Felix', 1974, 'M', 538), +(108547, 'Stacey', 1974, 'M', 535), +(108548, 'Allan', 1974, 'M', 534), +(108549, 'Garrett', 1974, 'M', 528), +(108550, 'Israel', 1974, 'M', 528), +(108551, 'Perry', 1974, 'M', 528), +(108552, 'Ethan', 1974, 'M', 525), +(108553, 'Freddie', 1974, 'M', 525), +(108554, 'Andres', 1974, 'M', 521), +(108555, 'Salvador', 1974, 'M', 518), +(108556, 'Rick', 1974, 'M', 517), +(108557, 'Gerardo', 1974, 'M', 516), +(108558, 'Roland', 1974, 'M', 516), +(108559, 'Leo', 1974, 'M', 512), +(108560, 'Antoine', 1974, 'M', 510), +(108561, 'Bret', 1974, 'M', 509), +(108562, 'Noel', 1974, 'M', 507), +(108563, 'Nick', 1974, 'M', 502), +(108564, 'Josh', 1974, 'M', 496), +(108565, 'Terence', 1974, 'M', 486), +(108566, 'Cornelius', 1974, 'M', 485), +(108567, 'Ernesto', 1974, 'M', 483), +(108568, 'Brady', 1974, 'M', 481), +(108569, 'Preston', 1974, 'M', 481), +(108570, 'Dan', 1974, 'M', 479), +(108571, 'Gregg', 1974, 'M', 479), +(108572, 'Ted', 1974, 'M', 479), +(108573, 'Rickey', 1974, 'M', 475), +(108574, 'Lester', 1974, 'M', 471), +(108575, 'Bill', 1974, 'M', 466), +(108576, 'Marcos', 1974, 'M', 462), +(108577, 'Frankie', 1974, 'M', 460), +(108578, 'Jamal', 1974, 'M', 458), +(108579, 'Herman', 1974, 'M', 457), +(108580, 'Abraham', 1974, 'M', 454), +(108581, 'Rudy', 1974, 'M', 452), +(108582, 'Milton', 1974, 'M', 451), +(108583, 'Carlton', 1974, 'M', 450), +(108584, 'Kenny', 1974, 'M', 449), +(108585, 'Sam', 1974, 'M', 435), +(108586, 'Chester', 1974, 'M', 429), +(108587, 'Darnell', 1974, 'M', 428), +(108588, 'Harvey', 1974, 'M', 427), +(108589, 'Dewayne', 1974, 'M', 425), +(108590, 'Robin', 1974, 'M', 424), +(108591, 'Tom', 1974, 'M', 422), +(108592, 'Clay', 1974, 'M', 420), +(108593, 'Blake', 1974, 'M', 419), +(108594, 'Cecil', 1974, 'M', 419), +(108595, 'Clyde', 1974, 'M', 418), +(108596, 'Quincy', 1974, 'M', 418), +(108597, 'Kris', 1974, 'M', 417), +(108598, 'Demond', 1974, 'M', 416), +(108599, 'Robbie', 1974, 'M', 415), +(108600, 'Max', 1974, 'M', 412), +(108601, 'Tim', 1974, 'M', 411), +(108602, 'Pablo', 1974, 'M', 409), +(108603, 'Ashley', 1974, 'M', 408), +(108604, 'Myron', 1974, 'M', 406), +(108605, 'Gilberto', 1974, 'M', 402), +(108606, 'Matt', 1974, 'M', 401), +(108607, 'Dion', 1974, 'M', 396), +(108608, 'Bryce', 1974, 'M', 395), +(108609, 'Sammy', 1974, 'M', 395), +(108610, 'Alfonso', 1974, 'M', 394), +(108611, 'Jamey', 1974, 'M', 394), +(108612, 'Gerard', 1974, 'M', 388), +(108613, 'Dylan', 1974, 'M', 384), +(108614, 'Randolph', 1974, 'M', 383), +(108615, 'Rodolfo', 1974, 'M', 383), +(108616, 'Salvatore', 1974, 'M', 381), +(108617, 'Drew', 1974, 'M', 378), +(108618, 'Scottie', 1974, 'M', 377), +(108619, 'Ron', 1974, 'M', 376), +(108620, 'Eli', 1974, 'M', 372), +(108621, 'Courtney', 1974, 'M', 371), +(108622, 'Garry', 1974, 'M', 371), +(108623, 'Jordan', 1974, 'M', 369), +(108624, 'Kendrick', 1974, 'M', 369), +(108625, 'Bryon', 1974, 'M', 368), +(108626, 'Donovan', 1974, 'M', 368), +(108627, 'Dexter', 1974, 'M', 367), +(108628, 'Sidney', 1974, 'M', 365), +(108629, 'Ismael', 1974, 'M', 364), +(108630, 'Sheldon', 1974, 'M', 362), +(108631, 'Rolando', 1974, 'M', 361), +(108632, 'Timmy', 1974, 'M', 361), +(108633, 'Loren', 1974, 'M', 357), +(108634, 'Damion', 1974, 'M', 355), +(108635, 'Devon', 1974, 'M', 352), +(108636, 'Ty', 1974, 'M', 352), +(108637, 'Roman', 1974, 'M', 349), +(108638, 'Guillermo', 1974, 'M', 348), +(108639, 'Jamison', 1974, 'M', 347), +(108640, 'Oliver', 1974, 'M', 347), +(108641, 'Kendall', 1974, 'M', 345), +(108642, 'Benny', 1974, 'M', 344), +(108643, 'Everett', 1974, 'M', 344), +(108644, 'Terrell', 1974, 'M', 340), +(108645, 'Julius', 1974, 'M', 338), +(108646, 'Alonzo', 1974, 'M', 337), +(108647, 'Malcolm', 1974, 'M', 337), +(108648, 'Quentin', 1974, 'M', 337), +(108649, 'Owen', 1974, 'M', 335), +(108650, 'Simon', 1974, 'M', 335), +(108651, 'Mickey', 1974, 'M', 334), +(108652, 'Arnold', 1974, 'M', 332), +(108653, 'Rogelio', 1974, 'M', 332), +(108654, 'Abel', 1974, 'M', 330), +(108655, 'Colby', 1974, 'M', 330), +(108656, 'Wendell', 1974, 'M', 329), +(108657, 'Sherman', 1974, 'M', 328), +(108658, 'Scot', 1974, 'M', 324), +(108659, 'Kareem', 1974, 'M', 323), +(108660, 'Lamar', 1974, 'M', 322), +(108661, 'Erin', 1974, 'M', 321), +(108662, 'Stewart', 1974, 'M', 318), +(108663, 'Claude', 1974, 'M', 317), +(108664, 'Shad', 1974, 'M', 316), +(108665, 'Desmond', 1974, 'M', 314), +(108666, 'Ramiro', 1974, 'M', 314), +(108667, 'Felipe', 1974, 'M', 313), +(108668, 'Jake', 1974, 'M', 312), +(108669, 'Rusty', 1974, 'M', 312), +(108670, 'Stephan', 1974, 'M', 312), +(108671, 'Virgil', 1974, 'M', 312), +(108672, 'Austin', 1974, 'M', 311), +(108673, 'Elias', 1974, 'M', 311), +(108674, 'Guadalupe', 1974, 'M', 311), +(108675, 'Jess', 1974, 'M', 309), +(108676, 'Otis', 1974, 'M', 309), +(108677, 'Gustavo', 1974, 'M', 307), +(108678, 'Cary', 1974, 'M', 306), +(108679, 'Caleb', 1974, 'M', 302), +(108680, 'Tracey', 1974, 'M', 300), +(108681, 'Randal', 1974, 'M', 299), +(108682, 'Carey', 1974, 'M', 298), +(108683, 'Xavier', 1974, 'M', 298), +(108684, 'Darius', 1974, 'M', 297), +(108685, 'Rex', 1974, 'M', 297), +(108686, 'Moses', 1974, 'M', 295), +(108687, 'Hugh', 1974, 'M', 293), +(108688, 'Telly', 1974, 'M', 293), +(108689, 'Dallas', 1974, 'M', 291), +(108690, 'Darrick', 1974, 'M', 288), +(108691, 'Elijah', 1974, 'M', 287), +(108692, 'Reynaldo', 1974, 'M', 284), +(108693, 'Earnest', 1974, 'M', 281), +(108694, 'Sonny', 1974, 'M', 280), +(108695, 'Forrest', 1974, 'M', 279), +(108696, 'Levi', 1974, 'M', 277), +(108697, 'Morgan', 1974, 'M', 277), +(108698, 'Alton', 1974, 'M', 276), +(108699, 'Ira', 1974, 'M', 276), +(108700, 'Derick', 1974, 'M', 274), +(108701, 'Curt', 1974, 'M', 272), +(108702, 'Morris', 1974, 'M', 272), +(108703, 'Lyle', 1974, 'M', 271), +(108704, 'Teddy', 1974, 'M', 271), +(108705, 'Pete', 1974, 'M', 269), +(108706, 'Wallace', 1974, 'M', 269), +(108707, 'Gavin', 1974, 'M', 268), +(108708, 'Leonardo', 1974, 'M', 268), +(108709, 'Mason', 1974, 'M', 267), +(108710, 'Marion', 1974, 'M', 266), +(108711, 'Saul', 1974, 'M', 266), +(108712, 'Tomas', 1974, 'M', 266), +(108713, 'Donnell', 1974, 'M', 263), +(108714, 'Monte', 1974, 'M', 263); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(108715, 'Bart', 1974, 'M', 259), +(108716, 'Shon', 1974, 'M', 257), +(108717, 'Dante', 1974, 'M', 255), +(108718, 'Dominick', 1974, 'M', 253), +(108719, 'Darrel', 1974, 'M', 252), +(108720, 'Erich', 1974, 'M', 252), +(108721, 'Hugo', 1974, 'M', 252), +(108722, 'Elton', 1974, 'M', 250), +(108723, 'Jarrett', 1974, 'M', 250), +(108724, 'Grady', 1974, 'M', 249), +(108725, 'Reuben', 1974, 'M', 246), +(108726, 'Bennie', 1974, 'M', 245), +(108727, 'Efrain', 1974, 'M', 243), +(108728, 'Aron', 1974, 'M', 242), +(108729, 'Luther', 1974, 'M', 242), +(108730, 'Brock', 1974, 'M', 241), +(108731, 'Jerald', 1974, 'M', 236), +(108732, 'Thaddeus', 1974, 'M', 236), +(108733, 'Jed', 1974, 'M', 235), +(108734, 'Blaine', 1974, 'M', 234), +(108735, 'Jefferson', 1974, 'M', 234), +(108736, 'Fabian', 1974, 'M', 233), +(108737, 'Donny', 1974, 'M', 232), +(108738, 'Hans', 1974, 'M', 232), +(108739, 'Carlo', 1974, 'M', 231), +(108740, 'Rodrick', 1974, 'M', 231), +(108741, 'Trenton', 1974, 'M', 230), +(108742, 'Dorian', 1974, 'M', 229), +(108743, 'Jean', 1974, 'M', 229), +(108744, 'Kristian', 1974, 'M', 229), +(108745, 'Daren', 1974, 'M', 228), +(108746, 'Dave', 1974, 'M', 227), +(108747, 'Tommie', 1974, 'M', 227), +(108748, 'Jeffry', 1974, 'M', 226), +(108749, 'Kory', 1974, 'M', 226), +(108750, 'Marlin', 1974, 'M', 226), +(108751, 'Nicolas', 1974, 'M', 226), +(108752, 'Edmund', 1974, 'M', 225), +(108753, 'Lynn', 1974, 'M', 225), +(108754, 'Shayne', 1974, 'M', 224), +(108755, 'Will', 1974, 'M', 224), +(108756, 'Amos', 1974, 'M', 222), +(108757, 'Elmer', 1974, 'M', 222), +(108758, 'Leland', 1974, 'M', 221), +(108759, 'Deon', 1974, 'M', 220), +(108760, 'Roosevelt', 1974, 'M', 220), +(108761, 'Stefan', 1974, 'M', 220), +(108762, 'Elliott', 1974, 'M', 218), +(108763, 'Joesph', 1974, 'M', 218), +(108764, 'Denny', 1974, 'M', 217), +(108765, 'Archie', 1974, 'M', 216), +(108766, 'Esteban', 1974, 'M', 216), +(108767, 'Rudolph', 1974, 'M', 216), +(108768, 'Jeromy', 1974, 'M', 214), +(108769, 'Elliot', 1974, 'M', 213), +(108770, 'Jerrod', 1974, 'M', 213), +(108771, 'Kurtis', 1974, 'M', 213), +(108772, 'Lionel', 1974, 'M', 212), +(108773, 'Tobias', 1974, 'M', 212), +(108774, 'Rocky', 1974, 'M', 209), +(108775, 'Emanuel', 1974, 'M', 208), +(108776, 'Beau', 1974, 'M', 207), +(108777, 'Wilson', 1974, 'M', 207), +(108778, 'Miles', 1974, 'M', 206), +(108779, 'Santiago', 1974, 'M', 205), +(108780, 'Ignacio', 1974, 'M', 204), +(108781, 'Joaquin', 1974, 'M', 204), +(108782, 'Reggie', 1974, 'M', 204), +(108783, 'Ken', 1974, 'M', 202), +(108784, 'Moises', 1974, 'M', 202), +(108785, 'Robby', 1974, 'M', 202), +(108786, 'Emilio', 1974, 'M', 201), +(108787, 'Delbert', 1974, 'M', 200), +(108788, 'Wilbert', 1974, 'M', 199), +(108789, 'Willis', 1974, 'M', 198), +(108790, 'Antwan', 1974, 'M', 197), +(108791, 'Clark', 1974, 'M', 197), +(108792, 'Willard', 1974, 'M', 197), +(108793, 'Humberto', 1974, 'M', 196), +(108794, 'Sterling', 1974, 'M', 195), +(108795, 'Sylvester', 1974, 'M', 195), +(108796, 'Alphonso', 1974, 'M', 193), +(108797, 'Kristofer', 1974, 'M', 193), +(108798, 'Mack', 1974, 'M', 192), +(108799, 'Rico', 1974, 'M', 192), +(108800, 'Freddy', 1974, 'M', 191), +(108801, 'Graham', 1974, 'M', 187), +(108802, 'Jarvis', 1974, 'M', 187), +(108803, 'Monty', 1974, 'M', 187), +(108804, 'Chance', 1974, 'M', 185), +(108805, 'Jennifer', 1974, 'M', 185), +(108806, 'Emmanuel', 1974, 'M', 184), +(108807, 'Laurence', 1974, 'M', 184), +(108808, 'Shelby', 1974, 'M', 184), +(108809, 'Collin', 1974, 'M', 183), +(108810, 'Stevie', 1974, 'M', 183), +(108811, 'Taylor', 1974, 'M', 182), +(108812, 'Cole', 1974, 'M', 181), +(108813, 'Dirk', 1974, 'M', 181), +(108814, 'Jasen', 1974, 'M', 181), +(108815, 'Alexis', 1974, 'M', 180), +(108816, 'Anton', 1974, 'M', 180), +(108817, 'Ervin', 1974, 'M', 180), +(108818, 'Pierre', 1974, 'M', 180), +(108819, 'Avery', 1974, 'M', 179), +(108820, 'Brant', 1974, 'M', 178), +(108821, 'Louie', 1974, 'M', 178), +(108822, 'Thad', 1974, 'M', 177), +(108823, 'Vance', 1974, 'M', 176), +(108824, 'Brain', 1974, 'M', 175), +(108825, 'Chuck', 1974, 'M', 175), +(108826, 'Aubrey', 1974, 'M', 174), +(108827, 'Buddy', 1974, 'M', 174), +(108828, 'Dane', 1974, 'M', 174), +(108829, 'Doug', 1974, 'M', 174), +(108830, 'Horace', 1974, 'M', 174), +(108831, 'Rodger', 1974, 'M', 173), +(108832, 'Santos', 1974, 'M', 173), +(108833, 'Ellis', 1974, 'M', 172), +(108834, 'Solomon', 1974, 'M', 172), +(108835, 'Aric', 1974, 'M', 171), +(108836, 'Tad', 1974, 'M', 171), +(108837, 'Vicente', 1974, 'M', 171), +(108838, 'Bob', 1974, 'M', 170), +(108839, 'Harley', 1974, 'M', 169), +(108840, 'Darian', 1974, 'M', 168), +(108841, 'Nolan', 1974, 'M', 167), +(108842, 'Benito', 1974, 'M', 166), +(108843, 'Rory', 1974, 'M', 166), +(108844, 'Branden', 1974, 'M', 165), +(108845, 'Dusty', 1974, 'M', 165), +(108846, 'Van', 1974, 'M', 165), +(108847, 'Doyle', 1974, 'M', 164), +(108848, 'Reid', 1974, 'M', 164), +(108849, 'Jonas', 1974, 'M', 163), +(108850, 'Conrad', 1974, 'M', 162), +(108851, 'Quinn', 1974, 'M', 162), +(108852, 'Raphael', 1974, 'M', 162), +(108853, 'Jeramy', 1974, 'M', 161), +(108854, 'Kim', 1974, 'M', 161), +(108855, 'Quinton', 1974, 'M', 160), +(108856, 'Royce', 1974, 'M', 160), +(108857, 'Theron', 1974, 'M', 160), +(108858, 'Dewey', 1974, 'M', 159), +(108859, 'Zachariah', 1974, 'M', 159), +(108860, 'Ali', 1974, 'M', 158), +(108861, 'Deshawn', 1974, 'M', 158), +(108862, 'Andrea', 1974, 'M', 156), +(108863, 'Cornell', 1974, 'M', 156), +(108864, 'Garth', 1974, 'M', 156), +(108865, 'Kristoffer', 1974, 'M', 156), +(108866, 'Lane', 1974, 'M', 155), +(108867, 'Mauricio', 1974, 'M', 155), +(108868, 'Tory', 1974, 'M', 155), +(108869, 'Hubert', 1974, 'M', 154), +(108870, 'Ariel', 1974, 'M', 153), +(108871, 'Arron', 1974, 'M', 153), +(108872, 'Josue', 1974, 'M', 153), +(108873, 'Cedrick', 1974, 'M', 152), +(108874, 'Jonah', 1974, 'M', 152), +(108875, 'Boyd', 1974, 'M', 151), +(108876, 'Jamel', 1974, 'M', 151), +(108877, 'Noe', 1974, 'M', 151), +(108878, 'Marcel', 1974, 'M', 150), +(108879, 'Tremayne', 1974, 'M', 150), +(108880, 'Heriberto', 1974, 'M', 149), +(108881, 'Wilfredo', 1974, 'M', 149), +(108882, 'Jerod', 1974, 'M', 148), +(108883, 'Percy', 1974, 'M', 148), +(108884, 'Reed', 1974, 'M', 148), +(108885, 'Rocco', 1974, 'M', 148), +(108886, 'Antione', 1974, 'M', 147), +(108887, 'Cleveland', 1974, 'M', 147), +(108888, 'Domingo', 1974, 'M', 147), +(108889, 'Kenyatta', 1974, 'M', 147), +(108890, 'Wyatt', 1974, 'M', 147), +(108891, 'Bradly', 1974, 'M', 146), +(108892, 'Brenton', 1974, 'M', 146), +(108893, 'Elvis', 1974, 'M', 146), +(108894, 'Kirby', 1974, 'M', 146), +(108895, 'Darwin', 1974, 'M', 145), +(108896, 'Winston', 1974, 'M', 145), +(108897, 'Homer', 1974, 'M', 144), +(108898, 'Kip', 1974, 'M', 144), +(108899, 'Rodrigo', 1974, 'M', 144), +(108900, 'Rufus', 1974, 'M', 144), +(108901, 'Shelton', 1974, 'M', 144), +(108902, 'Torrey', 1974, 'M', 144), +(108903, 'Blair', 1974, 'M', 143), +(108904, 'Marquis', 1974, 'M', 143), +(108905, 'Carter', 1974, 'M', 142), +(108906, 'Giovanni', 1974, 'M', 142), +(108907, 'Jeremie', 1974, 'M', 142), +(108908, 'Nicky', 1974, 'M', 142), +(108909, 'Adolfo', 1974, 'M', 141), +(108910, 'Daron', 1974, 'M', 141), +(108911, 'Issac', 1974, 'M', 141), +(108912, 'Judson', 1974, 'M', 141), +(108913, 'Vaughn', 1974, 'M', 141), +(108914, 'Bert', 1974, 'M', 140), +(108915, 'Brooks', 1974, 'M', 140), +(108916, 'Ernie', 1974, 'M', 139), +(108917, 'Kenyon', 1974, 'M', 139), +(108918, 'Galen', 1974, 'M', 138), +(108919, 'Al', 1974, 'M', 137), +(108920, 'Barrett', 1974, 'M', 137), +(108921, 'Deron', 1974, 'M', 137), +(108922, 'Garrick', 1974, 'M', 137), +(108923, 'Rickie', 1974, 'M', 137), +(108924, 'Agustin', 1974, 'M', 136), +(108925, 'Rhett', 1974, 'M', 136), +(108926, 'Zane', 1974, 'M', 136), +(108927, 'Billie', 1974, 'M', 135), +(108928, 'Diego', 1974, 'M', 135), +(108929, 'Johnathon', 1974, 'M', 135), +(108930, 'Denis', 1974, 'M', 134), +(108931, 'Mikel', 1974, 'M', 134), +(108932, 'Garland', 1974, 'M', 133), +(108933, 'Landon', 1974, 'M', 133), +(108934, 'Gino', 1974, 'M', 132), +(108935, 'Elbert', 1974, 'M', 131), +(108936, 'Jackson', 1974, 'M', 131), +(108937, 'Kenya', 1974, 'M', 131), +(108938, 'Adan', 1974, 'M', 130), +(108939, 'Jude', 1974, 'M', 130), +(108940, 'Lowell', 1974, 'M', 129), +(108941, 'Michel', 1974, 'M', 129), +(108942, 'Sammie', 1974, 'M', 129), +(108943, 'Ari', 1974, 'M', 128), +(108944, 'Dino', 1974, 'M', 128), +(108945, 'Chase', 1974, 'M', 127), +(108946, 'Emmett', 1974, 'M', 127), +(108947, 'Markus', 1974, 'M', 126), +(108948, 'Sebastian', 1974, 'M', 125), +(108949, 'Danial', 1974, 'M', 124), +(108950, 'Wilbur', 1974, 'M', 124), +(108951, 'Brendon', 1974, 'M', 123), +(108952, 'Ezra', 1974, 'M', 123), +(108953, 'Jacques', 1974, 'M', 123), +(108954, 'Irvin', 1974, 'M', 122), +(108955, 'Ronny', 1974, 'M', 122), +(108956, 'Wilfred', 1974, 'M', 122), +(108957, 'Alvaro', 1974, 'M', 120), +(108958, 'Edwardo', 1974, 'M', 120), +(108959, 'Gerry', 1974, 'M', 120), +(108960, 'Gregorio', 1974, 'M', 120), +(108961, 'Nickolas', 1974, 'M', 120), +(108962, 'Tyron', 1974, 'M', 120), +(108963, 'Brice', 1974, 'M', 119), +(108964, 'Deandre', 1974, 'M', 119), +(108965, 'Judd', 1974, 'M', 119), +(108966, 'Titus', 1974, 'M', 118), +(108967, 'Torrance', 1974, 'M', 118), +(108968, 'Antony', 1974, 'M', 117), +(108969, 'Chet', 1974, 'M', 117), +(108970, 'Donte', 1974, 'M', 117), +(108971, 'Hank', 1974, 'M', 117), +(108972, 'Kelley', 1974, 'M', 116), +(108973, 'Bernardo', 1974, 'M', 115), +(108974, 'Damond', 1974, 'M', 115), +(108975, 'Dedrick', 1974, 'M', 115), +(108976, 'Rob', 1974, 'M', 115), +(108977, 'Jarod', 1974, 'M', 114), +(108978, 'Jeramie', 1974, 'M', 114), +(108979, 'Keenan', 1974, 'M', 114), +(108980, 'Korey', 1974, 'M', 114), +(108981, 'Tobin', 1974, 'M', 114), +(108982, 'Chauncey', 1974, 'M', 113), +(108983, 'Germaine', 1974, 'M', 113), +(108984, 'Edmond', 1974, 'M', 112), +(108985, 'Ahmad', 1974, 'M', 111), +(108986, 'Jammie', 1974, 'M', 111), +(108987, 'Malik', 1974, 'M', 110), +(108988, 'Richie', 1974, 'M', 110), +(108989, 'August', 1974, 'M', 109), +(108990, 'Michelle', 1974, 'M', 109), +(108991, 'Antonia', 1974, 'M', 108), +(108992, 'Harrison', 1974, 'M', 108), +(108993, 'Isaiah', 1974, 'M', 108), +(108994, 'Coby', 1974, 'M', 107), +(108995, 'Lincoln', 1974, 'M', 107), +(108996, 'Darron', 1974, 'M', 106), +(108997, 'Octavio', 1974, 'M', 106), +(108998, 'Randell', 1974, 'M', 106), +(108999, 'Sedrick', 1974, 'M', 106), +(109000, 'Federico', 1974, 'M', 105), +(109001, 'Giuseppe', 1974, 'M', 105), +(109002, 'Vito', 1974, 'M', 105), +(109003, 'Deric', 1974, 'M', 104), +(109004, 'Eddy', 1974, 'M', 104), +(109005, 'Nathanael', 1974, 'M', 104), +(109006, 'Sandy', 1974, 'M', 104), +(109007, 'Carson', 1974, 'M', 103), +(109008, 'Coy', 1974, 'M', 103), +(109009, 'Errol', 1974, 'M', 103), +(109010, 'Taurus', 1974, 'M', 103), +(109011, 'Denver', 1974, 'M', 102), +(109012, 'Jan', 1974, 'M', 102), +(109013, 'Jasper', 1974, 'M', 102), +(109014, 'Jayme', 1974, 'M', 102), +(109015, 'Leonel', 1974, 'M', 102), +(109016, 'Shea', 1974, 'M', 102), +(109017, 'Cliff', 1974, 'M', 101), +(109018, 'Russel', 1974, 'M', 101), +(109019, 'Trey', 1974, 'M', 101), +(109020, 'Barton', 1974, 'M', 100), +(109021, 'Dax', 1974, 'M', 100), +(109022, 'Eloy', 1974, 'M', 100), +(109023, 'Gonzalo', 1974, 'M', 100), +(109024, 'Kennith', 1974, 'M', 100), +(109025, 'Osvaldo', 1974, 'M', 100), +(109026, 'Raymundo', 1974, 'M', 100), +(109027, 'Jennifer', 1975, 'F', 58185), +(109028, 'Amy', 1975, 'F', 32252), +(109029, 'Heather', 1975, 'F', 24305), +(109030, 'Melissa', 1975, 'F', 24164), +(109031, 'Angela', 1975, 'F', 23353), +(109032, 'Michelle', 1975, 'F', 22666), +(109033, 'Kimberly', 1975, 'F', 20265), +(109034, 'Lisa', 1975, 'F', 18130), +(109035, 'Stephanie', 1975, 'F', 15775), +(109036, 'Nicole', 1975, 'F', 14274), +(109037, 'Rebecca', 1975, 'F', 13927), +(109038, 'Christina', 1975, 'F', 12973), +(109039, 'Jessica', 1975, 'F', 12929), +(109040, 'Amanda', 1975, 'F', 12652), +(109041, 'Elizabeth', 1975, 'F', 12473), +(109042, 'Kelly', 1975, 'F', 11736), +(109043, 'Sarah', 1975, 'F', 11166), +(109044, 'Julie', 1975, 'F', 11140), +(109045, 'Mary', 1975, 'F', 10964), +(109046, 'Laura', 1975, 'F', 10313), +(109047, 'Shannon', 1975, 'F', 9371), +(109048, 'Christine', 1975, 'F', 9104), +(109049, 'Dawn', 1975, 'F', 8748), +(109050, 'Tracy', 1975, 'F', 8508), +(109051, 'April', 1975, 'F', 8242), +(109052, 'Rachel', 1975, 'F', 8226), +(109053, 'Karen', 1975, 'F', 8163), +(109054, 'Andrea', 1975, 'F', 8042), +(109055, 'Carrie', 1975, 'F', 7858), +(109056, 'Tammy', 1975, 'F', 7525), +(109057, 'Maria', 1975, 'F', 7512), +(109058, 'Susan', 1975, 'F', 7490), +(109059, 'Wendy', 1975, 'F', 7474), +(109060, 'Stacy', 1975, 'F', 7174), +(109061, 'Tina', 1975, 'F', 7064), +(109062, 'Patricia', 1975, 'F', 7056), +(109063, 'Tiffany', 1975, 'F', 6920), +(109064, 'Erin', 1975, 'F', 6895), +(109065, 'Lori', 1975, 'F', 6648), +(109066, 'Cynthia', 1975, 'F', 6542), +(109067, 'Tara', 1975, 'F', 6458), +(109068, 'Danielle', 1975, 'F', 6415), +(109069, 'Crystal', 1975, 'F', 6242), +(109070, 'Stacey', 1975, 'F', 5931), +(109071, 'Tonya', 1975, 'F', 5899), +(109072, 'Jill', 1975, 'F', 5730), +(109073, 'Misty', 1975, 'F', 5552), +(109074, 'Emily', 1975, 'F', 5484), +(109075, 'Monica', 1975, 'F', 5478), +(109076, 'Tanya', 1975, 'F', 5379), +(109077, 'Sandra', 1975, 'F', 5375), +(109078, 'Melanie', 1975, 'F', 5367), +(109079, 'Christy', 1975, 'F', 5170), +(109080, 'Sara', 1975, 'F', 5130), +(109081, 'Holly', 1975, 'F', 5049), +(109082, 'Michele', 1975, 'F', 5035), +(109083, 'Brandy', 1975, 'F', 4947), +(109084, 'Katherine', 1975, 'F', 4855), +(109085, 'Amber', 1975, 'F', 4680), +(109086, 'Kristen', 1975, 'F', 4676), +(109087, 'Teresa', 1975, 'F', 4635), +(109088, 'Dana', 1975, 'F', 4620), +(109089, 'Erica', 1975, 'F', 4582), +(109090, 'Denise', 1975, 'F', 4461), +(109091, 'Robin', 1975, 'F', 4332), +(109092, 'Heidi', 1975, 'F', 4290), +(109093, 'Brenda', 1975, 'F', 4237), +(109094, 'Jamie', 1975, 'F', 4234), +(109095, 'Megan', 1975, 'F', 4195), +(109096, 'Pamela', 1975, 'F', 4180), +(109097, 'Leslie', 1975, 'F', 4106), +(109098, 'Veronica', 1975, 'F', 4059), +(109099, 'Catherine', 1975, 'F', 3932), +(109100, 'Kristin', 1975, 'F', 3879), +(109101, 'Sharon', 1975, 'F', 3737), +(109102, 'Alicia', 1975, 'F', 3719), +(109103, 'Tamara', 1975, 'F', 3628), +(109104, 'Theresa', 1975, 'F', 3612), +(109105, 'Anna', 1975, 'F', 3569), +(109106, 'Kathleen', 1975, 'F', 3541), +(109107, 'Linda', 1975, 'F', 3525), +(109108, 'Nancy', 1975, 'F', 3509), +(109109, 'Barbara', 1975, 'F', 3457), +(109110, 'Gina', 1975, 'F', 3428), +(109111, 'Donna', 1975, 'F', 3424), +(109112, 'Deborah', 1975, 'F', 3416), +(109113, 'Renee', 1975, 'F', 3407), +(109114, 'Brandi', 1975, 'F', 3369), +(109115, 'Allison', 1975, 'F', 3353), +(109116, 'Jacqueline', 1975, 'F', 3313), +(109117, 'Melinda', 1975, 'F', 3284), +(109118, 'Valerie', 1975, 'F', 3227), +(109119, 'Rhonda', 1975, 'F', 3167), +(109120, 'Jodi', 1975, 'F', 3105), +(109121, 'Sherry', 1975, 'F', 3042), +(109122, 'Christie', 1975, 'F', 3028), +(109123, 'Cheryl', 1975, 'F', 2998), +(109124, 'Margaret', 1975, 'F', 2951), +(109125, 'Kathryn', 1975, 'F', 2947), +(109126, 'Diana', 1975, 'F', 2914), +(109127, 'Samantha', 1975, 'F', 2836), +(109128, 'Courtney', 1975, 'F', 2773), +(109129, 'Kristina', 1975, 'F', 2747), +(109130, 'Ann', 1975, 'F', 2717), +(109131, 'Victoria', 1975, 'F', 2714), +(109132, 'Mandy', 1975, 'F', 2709), +(109133, 'Paula', 1975, 'F', 2654), +(109134, 'Yolanda', 1975, 'F', 2654), +(109135, 'Kristi', 1975, 'F', 2647), +(109136, 'Natalie', 1975, 'F', 2639), +(109137, 'Regina', 1975, 'F', 2569), +(109138, 'Cindy', 1975, 'F', 2506), +(109139, 'Shelly', 1975, 'F', 2483), +(109140, 'Vanessa', 1975, 'F', 2447), +(109141, 'Debra', 1975, 'F', 2444), +(109142, 'Felicia', 1975, 'F', 2403), +(109143, 'Tracey', 1975, 'F', 2377), +(109144, 'Kara', 1975, 'F', 2361), +(109145, 'Carolyn', 1975, 'F', 2346), +(109146, 'Beth', 1975, 'F', 2325), +(109147, 'Suzanne', 1975, 'F', 2319), +(109148, 'Carla', 1975, 'F', 2317), +(109149, 'Joy', 1975, 'F', 2307), +(109150, 'Laurie', 1975, 'F', 2284), +(109151, 'Anne', 1975, 'F', 2283), +(109152, 'Deanna', 1975, 'F', 2277), +(109153, 'Alison', 1975, 'F', 2266), +(109154, 'Erika', 1975, 'F', 2256), +(109155, 'Kari', 1975, 'F', 2218), +(109156, 'Tamika', 1975, 'F', 2159), +(109157, 'Katrina', 1975, 'F', 2130), +(109158, 'Leah', 1975, 'F', 2121), +(109159, 'Colleen', 1975, 'F', 2101), +(109160, 'Sheila', 1975, 'F', 2098), +(109161, 'Jenny', 1975, 'F', 2061), +(109162, 'Aimee', 1975, 'F', 2031), +(109163, 'Julia', 1975, 'F', 2002), +(109164, 'Ashley', 1975, 'F', 1988), +(109165, 'Janet', 1975, 'F', 1950), +(109166, 'Angie', 1975, 'F', 1947), +(109167, 'Kristy', 1975, 'F', 1919), +(109168, 'Diane', 1975, 'F', 1906), +(109169, 'Bridget', 1975, 'F', 1863), +(109170, 'Lauren', 1975, 'F', 1849), +(109171, 'Natasha', 1975, 'F', 1843), +(109172, 'Stacie', 1975, 'F', 1839), +(109173, 'Kristie', 1975, 'F', 1819), +(109174, 'Tricia', 1975, 'F', 1803), +(109175, 'Martha', 1975, 'F', 1790), +(109176, 'Carol', 1975, 'F', 1786), +(109177, 'Carmen', 1975, 'F', 1777), +(109178, 'Kelli', 1975, 'F', 1769), +(109179, 'Nichole', 1975, 'F', 1765), +(109180, 'Sonya', 1975, 'F', 1759), +(109181, 'Traci', 1975, 'F', 1740), +(109182, 'Virginia', 1975, 'F', 1733), +(109183, 'Anita', 1975, 'F', 1720), +(109184, 'Joanna', 1975, 'F', 1696), +(109185, 'Krista', 1975, 'F', 1693), +(109186, 'Kathy', 1975, 'F', 1691), +(109187, 'Shawna', 1975, 'F', 1690), +(109188, 'Jody', 1975, 'F', 1685), +(109189, 'Kerry', 1975, 'F', 1679), +(109190, 'Marie', 1975, 'F', 1630), +(109191, 'Terri', 1975, 'F', 1600), +(109192, 'Angel', 1975, 'F', 1598), +(109193, 'Kerri', 1975, 'F', 1597), +(109194, 'Cassandra', 1975, 'F', 1587), +(109195, 'Kristine', 1975, 'F', 1560), +(109196, 'Molly', 1975, 'F', 1548), +(109197, 'Shelley', 1975, 'F', 1547), +(109198, 'Robyn', 1975, 'F', 1511), +(109199, 'Kendra', 1975, 'F', 1503), +(109200, 'Keri', 1975, 'F', 1503), +(109201, 'Trisha', 1975, 'F', 1502), +(109202, 'Monique', 1975, 'F', 1495), +(109203, 'Sonia', 1975, 'F', 1490), +(109204, 'Kim', 1975, 'F', 1481), +(109205, 'Toni', 1975, 'F', 1454), +(109206, 'Claudia', 1975, 'F', 1447), +(109207, 'Meredith', 1975, 'F', 1428), +(109208, 'Lynn', 1975, 'F', 1423), +(109209, 'Charity', 1975, 'F', 1421), +(109210, 'Connie', 1975, 'F', 1407), +(109211, 'Rachael', 1975, 'F', 1376), +(109212, 'Adrienne', 1975, 'F', 1371), +(109213, 'Annette', 1975, 'F', 1364), +(109214, 'Bonnie', 1975, 'F', 1346), +(109215, 'Yvonne', 1975, 'F', 1330), +(109216, 'Sabrina', 1975, 'F', 1327), +(109217, 'Janice', 1975, 'F', 1309), +(109218, 'Mindy', 1975, 'F', 1306), +(109219, 'Becky', 1975, 'F', 1305), +(109220, 'Katie', 1975, 'F', 1294), +(109221, 'Gloria', 1975, 'F', 1290), +(109222, 'Sherri', 1975, 'F', 1274), +(109223, 'Latasha', 1975, 'F', 1243), +(109224, 'Caroline', 1975, 'F', 1232), +(109225, 'Ruth', 1975, 'F', 1230), +(109226, 'Tracie', 1975, 'F', 1225), +(109227, 'Angelica', 1975, 'F', 1210), +(109228, 'Hope', 1975, 'F', 1208), +(109229, 'Latonya', 1975, 'F', 1207), +(109230, 'Rosa', 1975, 'F', 1204), +(109231, 'Latoya', 1975, 'F', 1203), +(109232, 'Melody', 1975, 'F', 1198), +(109233, 'Cara', 1975, 'F', 1194), +(109234, 'Brooke', 1975, 'F', 1181), +(109235, 'Gretchen', 1975, 'F', 1175), +(109236, 'Kellie', 1975, 'F', 1171), +(109237, 'Kelley', 1975, 'F', 1168), +(109238, 'Jeanette', 1975, 'F', 1160), +(109239, 'Ana', 1975, 'F', 1159), +(109240, 'Sheri', 1975, 'F', 1151), +(109241, 'Sylvia', 1975, 'F', 1143), +(109242, 'Belinda', 1975, 'F', 1138), +(109243, 'Bethany', 1975, 'F', 1136), +(109244, 'Joanne', 1975, 'F', 1133), +(109245, 'Joyce', 1975, 'F', 1127), +(109246, 'Candice', 1975, 'F', 1126), +(109247, 'Candace', 1975, 'F', 1123), +(109248, 'Nikki', 1975, 'F', 1103), +(109249, 'Tasha', 1975, 'F', 1083), +(109250, 'Charlotte', 1975, 'F', 1081), +(109251, 'Ginger', 1975, 'F', 1077), +(109252, 'Charlene', 1975, 'F', 1075), +(109253, 'Rebekah', 1975, 'F', 1071), +(109254, 'Leigh', 1975, 'F', 1065), +(109255, 'Helen', 1975, 'F', 1058), +(109256, 'Wanda', 1975, 'F', 1058), +(109257, 'Alice', 1975, 'F', 1055), +(109258, 'Olivia', 1975, 'F', 1047), +(109259, 'Bobbie', 1975, 'F', 1043), +(109260, 'Frances', 1975, 'F', 1031), +(109261, 'Penny', 1975, 'F', 1026), +(109262, 'Norma', 1975, 'F', 1024), +(109263, 'Ellen', 1975, 'F', 1021), +(109264, 'Betty', 1975, 'F', 1020), +(109265, 'Shana', 1975, 'F', 1019), +(109266, 'Yvette', 1975, 'F', 1018), +(109267, 'Karla', 1975, 'F', 1014), +(109268, 'Keisha', 1975, 'F', 1014), +(109269, 'Billie', 1975, 'F', 1010), +(109270, 'Christa', 1975, 'F', 1010), +(109271, 'Beverly', 1975, 'F', 1009), +(109272, 'Trina', 1975, 'F', 1006), +(109273, 'Marsha', 1975, 'F', 1005), +(109274, 'Jolene', 1975, 'F', 999), +(109275, 'Leticia', 1975, 'F', 977), +(109276, 'Dorothy', 1975, 'F', 974), +(109277, 'Nakia', 1975, 'F', 972), +(109278, 'Cathy', 1975, 'F', 970), +(109279, 'Staci', 1975, 'F', 969), +(109280, 'Shawn', 1975, 'F', 963), +(109281, 'Tonia', 1975, 'F', 958), +(109282, 'Sally', 1975, 'F', 949), +(109283, 'Rose', 1975, 'F', 947), +(109284, 'Audrey', 1975, 'F', 937), +(109285, 'Joann', 1975, 'F', 936), +(109286, 'Juanita', 1975, 'F', 936), +(109287, 'Amie', 1975, 'F', 920), +(109288, 'Raquel', 1975, 'F', 920), +(109289, 'Jaime', 1975, 'F', 914), +(109290, 'Tabitha', 1975, 'F', 912), +(109291, 'Darlene', 1975, 'F', 907), +(109292, 'Christi', 1975, 'F', 900), +(109293, 'Naomi', 1975, 'F', 897), +(109294, 'Peggy', 1975, 'F', 897), +(109295, 'Tameka', 1975, 'F', 893), +(109296, 'Jodie', 1975, 'F', 892), +(109297, 'Jackie', 1975, 'F', 886), +(109298, 'Jean', 1975, 'F', 885), +(109299, 'Rita', 1975, 'F', 883), +(109300, 'Miranda', 1975, 'F', 882), +(109301, 'Vicki', 1975, 'F', 882), +(109302, 'Cristina', 1975, 'F', 880), +(109303, 'Maureen', 1975, 'F', 877), +(109304, 'Shirley', 1975, 'F', 875), +(109305, 'Kimberley', 1975, 'F', 872), +(109306, 'Evelyn', 1975, 'F', 865), +(109307, 'Kenya', 1975, 'F', 863), +(109308, 'Elaine', 1975, 'F', 859), +(109309, 'Casey', 1975, 'F', 856), +(109310, 'Judith', 1975, 'F', 853), +(109311, 'Sandy', 1975, 'F', 841), +(109312, 'Autumn', 1975, 'F', 840), +(109313, 'Jenifer', 1975, 'F', 838), +(109314, 'Lakisha', 1975, 'F', 838), +(109315, 'Tami', 1975, 'F', 832), +(109316, 'Rochelle', 1975, 'F', 829), +(109317, 'Meghan', 1975, 'F', 823), +(109318, 'Jana', 1975, 'F', 822), +(109319, 'Dena', 1975, 'F', 816), +(109320, 'Debbie', 1975, 'F', 812), +(109321, 'Marcia', 1975, 'F', 794), +(109322, 'Gwendolyn', 1975, 'F', 793), +(109323, 'Alisha', 1975, 'F', 791), +(109324, 'Rachelle', 1975, 'F', 788), +(109325, 'Summer', 1975, 'F', 785), +(109326, 'Jane', 1975, 'F', 783), +(109327, 'Loretta', 1975, 'F', 777), +(109328, 'Eva', 1975, 'F', 766), +(109329, 'Kirsten', 1975, 'F', 762), +(109330, 'Carey', 1975, 'F', 756), +(109331, 'Desiree', 1975, 'F', 754), +(109332, 'Judy', 1975, 'F', 749), +(109333, 'Chandra', 1975, 'F', 747), +(109334, 'Roxanne', 1975, 'F', 745), +(109335, 'Shelby', 1975, 'F', 745), +(109336, 'Cheri', 1975, 'F', 733), +(109337, 'Janelle', 1975, 'F', 733), +(109338, 'Alexandra', 1975, 'F', 726), +(109339, 'Nina', 1975, 'F', 726), +(109340, 'Chasity', 1975, 'F', 725), +(109341, 'Teri', 1975, 'F', 723), +(109342, 'Priscilla', 1975, 'F', 722), +(109343, 'Tammie', 1975, 'F', 721), +(109344, 'Irene', 1975, 'F', 719), +(109345, 'Stefanie', 1975, 'F', 717), +(109346, 'Esther', 1975, 'F', 714), +(109347, 'Lesley', 1975, 'F', 713), +(109348, 'Jennie', 1975, 'F', 707), +(109349, 'Jeanne', 1975, 'F', 702), +(109350, 'Jeannie', 1975, 'F', 699), +(109351, 'Tania', 1975, 'F', 697), +(109352, 'Angelina', 1975, 'F', 683), +(109353, 'Chastity', 1975, 'F', 679), +(109354, 'Alexis', 1975, 'F', 678), +(109355, 'Latisha', 1975, 'F', 672), +(109356, 'Miriam', 1975, 'F', 670), +(109357, 'Roberta', 1975, 'F', 670), +(109358, 'Lydia', 1975, 'F', 669), +(109359, 'Mandi', 1975, 'F', 669), +(109360, 'Angelia', 1975, 'F', 668), +(109361, 'Lora', 1975, 'F', 666), +(109362, 'Eileen', 1975, 'F', 662), +(109363, 'Brandie', 1975, 'F', 659), +(109364, 'Lorraine', 1975, 'F', 656), +(109365, 'Marilyn', 1975, 'F', 652), +(109366, 'Cherie', 1975, 'F', 648), +(109367, 'Candy', 1975, 'F', 647), +(109368, 'Antoinette', 1975, 'F', 645), +(109369, 'Bobbi', 1975, 'F', 644), +(109370, 'Lara', 1975, 'F', 638), +(109371, 'Tanisha', 1975, 'F', 631), +(109372, 'Ruby', 1975, 'F', 629), +(109373, 'Shauna', 1975, 'F', 626), +(109374, 'Dina', 1975, 'F', 622), +(109375, 'Lorena', 1975, 'F', 621), +(109376, 'Lynette', 1975, 'F', 620), +(109377, 'Sonja', 1975, 'F', 617), +(109378, 'Deana', 1975, 'F', 616), +(109379, 'Ebony', 1975, 'F', 616), +(109380, 'Abigail', 1975, 'F', 614), +(109381, 'Adriana', 1975, 'F', 609), +(109382, 'Jami', 1975, 'F', 603), +(109383, 'Shanna', 1975, 'F', 601), +(109384, 'Jacquelyn', 1975, 'F', 600), +(109385, 'Ronda', 1975, 'F', 589), +(109386, 'Lee', 1975, 'F', 585), +(109387, 'Alisa', 1975, 'F', 576), +(109388, 'Sheryl', 1975, 'F', 576), +(109389, 'Marisol', 1975, 'F', 572), +(109390, 'Vickie', 1975, 'F', 572), +(109391, 'Marla', 1975, 'F', 569), +(109392, 'Grace', 1975, 'F', 568), +(109393, 'Guadalupe', 1975, 'F', 566), +(109394, 'Tia', 1975, 'F', 563), +(109395, 'Wendi', 1975, 'F', 562), +(109396, 'Gail', 1975, 'F', 561), +(109397, 'Alyssa', 1975, 'F', 559), +(109398, 'Marisa', 1975, 'F', 559), +(109399, 'Michael', 1975, 'F', 557), +(109400, 'Angelique', 1975, 'F', 556), +(109401, 'Faith', 1975, 'F', 555), +(109402, 'Ericka', 1975, 'F', 553), +(109403, 'Nora', 1975, 'F', 552), +(109404, 'Joan', 1975, 'F', 551), +(109405, 'Melisa', 1975, 'F', 549), +(109406, 'Bernadette', 1975, 'F', 545), +(109407, 'Maribel', 1975, 'F', 545), +(109408, 'Johanna', 1975, 'F', 541), +(109409, 'Marcy', 1975, 'F', 536), +(109410, 'Rosemary', 1975, 'F', 535), +(109411, 'Lawanda', 1975, 'F', 529), +(109412, 'Terra', 1975, 'F', 526), +(109413, 'Amelia', 1975, 'F', 524), +(109414, 'Celeste', 1975, 'F', 523), +(109415, 'Misti', 1975, 'F', 522), +(109416, 'Jo', 1975, 'F', 521), +(109417, 'Alma', 1975, 'F', 520), +(109418, 'Cari', 1975, 'F', 520), +(109419, 'Elena', 1975, 'F', 518), +(109420, 'Hollie', 1975, 'F', 518), +(109421, 'Latanya', 1975, 'F', 518), +(109422, 'Lindsay', 1975, 'F', 516), +(109423, 'Betsy', 1975, 'F', 512), +(109424, 'Lakeisha', 1975, 'F', 512), +(109425, 'Cecilia', 1975, 'F', 511), +(109426, 'Audra', 1975, 'F', 509), +(109427, 'Ramona', 1975, 'F', 508), +(109428, 'Katina', 1975, 'F', 506), +(109429, 'Karin', 1975, 'F', 503), +(109430, 'Jenna', 1975, 'F', 502), +(109431, 'Dianna', 1975, 'F', 501), +(109432, 'Sherrie', 1975, 'F', 499), +(109433, 'Elisa', 1975, 'F', 494), +(109434, 'Yesenia', 1975, 'F', 494), +(109435, 'Marlene', 1975, 'F', 493), +(109436, 'Janine', 1975, 'F', 491), +(109437, 'Tabatha', 1975, 'F', 491), +(109438, 'Terry', 1975, 'F', 491), +(109439, 'Margarita', 1975, 'F', 488), +(109440, 'Lorie', 1975, 'F', 487), +(109441, 'Tamiko', 1975, 'F', 486), +(109442, 'Annie', 1975, 'F', 485), +(109443, 'Krystal', 1975, 'F', 485), +(109444, 'Lakesha', 1975, 'F', 482), +(109445, 'Shari', 1975, 'F', 482), +(109446, 'Lashonda', 1975, 'F', 481), +(109447, 'Kisha', 1975, 'F', 478), +(109448, 'Emma', 1975, 'F', 477), +(109449, 'Kate', 1975, 'F', 477), +(109450, 'Darcy', 1975, 'F', 473), +(109451, 'Lena', 1975, 'F', 473), +(109452, 'Marcie', 1975, 'F', 468), +(109453, 'Leanne', 1975, 'F', 466), +(109454, 'Tisha', 1975, 'F', 466), +(109455, 'Elisabeth', 1975, 'F', 461), +(109456, 'Camille', 1975, 'F', 459), +(109457, 'Anitra', 1975, 'F', 458), +(109458, 'Jeanine', 1975, 'F', 457), +(109459, 'Josephine', 1975, 'F', 456), +(109460, 'Allyson', 1975, 'F', 455), +(109461, 'Lillian', 1975, 'F', 455), +(109462, 'Blanca', 1975, 'F', 454), +(109463, 'Bridgette', 1975, 'F', 454), +(109464, 'Taryn', 1975, 'F', 453), +(109465, 'Hilary', 1975, 'F', 452), +(109466, 'Karrie', 1975, 'F', 450), +(109467, 'Shelia', 1975, 'F', 450), +(109468, 'Glenda', 1975, 'F', 447), +(109469, 'Hannah', 1975, 'F', 444), +(109470, 'Lana', 1975, 'F', 444), +(109471, 'Serena', 1975, 'F', 444), +(109472, 'Alana', 1975, 'F', 443), +(109473, 'Shonda', 1975, 'F', 441), +(109474, 'Esmeralda', 1975, 'F', 440), +(109475, 'Constance', 1975, 'F', 436), +(109476, 'Liza', 1975, 'F', 435), +(109477, 'Irma', 1975, 'F', 429), +(109478, 'Jeannette', 1975, 'F', 428), +(109479, 'Vivian', 1975, 'F', 422), +(109480, 'Paige', 1975, 'F', 419), +(109481, 'Chrystal', 1975, 'F', 416), +(109482, 'Iris', 1975, 'F', 414), +(109483, 'Whitney', 1975, 'F', 412), +(109484, 'Bridgett', 1975, 'F', 411), +(109485, 'Gabriela', 1975, 'F', 410), +(109486, 'Darla', 1975, 'F', 409), +(109487, 'Arlene', 1975, 'F', 408), +(109488, 'Isabel', 1975, 'F', 408), +(109489, 'Maggie', 1975, 'F', 408), +(109490, 'Marci', 1975, 'F', 407), +(109491, 'Dora', 1975, 'F', 406), +(109492, 'Lea', 1975, 'F', 403), +(109493, 'Chanda', 1975, 'F', 401), +(109494, 'Jocelyn', 1975, 'F', 401), +(109495, 'Aisha', 1975, 'F', 397), +(109496, 'Kerrie', 1975, 'F', 397), +(109497, 'Edith', 1975, 'F', 395), +(109498, 'Randi', 1975, 'F', 395), +(109499, 'Jessie', 1975, 'F', 392), +(109500, 'Marjorie', 1975, 'F', 390), +(109501, 'Marianne', 1975, 'F', 388), +(109502, 'Claire', 1975, 'F', 387), +(109503, 'Marcella', 1975, 'F', 385), +(109504, 'Doris', 1975, 'F', 384), +(109505, 'Daphne', 1975, 'F', 383), +(109506, 'Jasmine', 1975, 'F', 383), +(109507, 'Marissa', 1975, 'F', 383), +(109508, 'Vicky', 1975, 'F', 383), +(109509, 'Alissa', 1975, 'F', 381), +(109510, 'Sophia', 1975, 'F', 381), +(109511, 'Tera', 1975, 'F', 381), +(109512, 'Joni', 1975, 'F', 380), +(109513, 'Luz', 1975, 'F', 379), +(109514, 'Cassie', 1975, 'F', 378), +(109515, 'Clarissa', 1975, 'F', 378), +(109516, 'Patrice', 1975, 'F', 377), +(109517, 'Susana', 1975, 'F', 373), +(109518, 'Gabrielle', 1975, 'F', 371), +(109519, 'Mia', 1975, 'F', 367), +(109520, 'Myra', 1975, 'F', 367), +(109521, 'Olga', 1975, 'F', 366), +(109522, 'Gena', 1975, 'F', 361), +(109523, 'Lindsey', 1975, 'F', 361), +(109524, 'Shanda', 1975, 'F', 361), +(109525, 'Tammi', 1975, 'F', 360), +(109526, 'Janette', 1975, 'F', 359), +(109527, 'Kimberlee', 1975, 'F', 357), +(109528, 'Tomeka', 1975, 'F', 357), +(109529, 'Nadine', 1975, 'F', 355), +(109530, 'Demetria', 1975, 'F', 354), +(109531, 'Leann', 1975, 'F', 354), +(109532, 'Ingrid', 1975, 'F', 353), +(109533, 'Ladonna', 1975, 'F', 353), +(109534, 'Malinda', 1975, 'F', 352), +(109535, 'Janie', 1975, 'F', 351), +(109536, 'Catrina', 1975, 'F', 350), +(109537, 'Chelsea', 1975, 'F', 350), +(109538, 'Georgia', 1975, 'F', 349), +(109539, 'Alyson', 1975, 'F', 347), +(109540, 'Janel', 1975, 'F', 346), +(109541, 'Tawana', 1975, 'F', 346), +(109542, 'Katharine', 1975, 'F', 345), +(109543, 'Silvia', 1975, 'F', 345), +(109544, 'Selena', 1975, 'F', 344), +(109545, 'Karyn', 1975, 'F', 340), +(109546, 'Pauline', 1975, 'F', 340), +(109547, 'Dionne', 1975, 'F', 339), +(109548, 'Clara', 1975, 'F', 337), +(109549, 'Latosha', 1975, 'F', 336), +(109550, 'Lynda', 1975, 'F', 336), +(109551, 'Ami', 1975, 'F', 334), +(109552, 'Genevieve', 1975, 'F', 334), +(109553, 'Brittany', 1975, 'F', 332), +(109554, 'Lashawn', 1975, 'F', 332), +(109555, 'Daisy', 1975, 'F', 328), +(109556, 'Lucy', 1975, 'F', 327), +(109557, 'Phyllis', 1975, 'F', 325), +(109558, 'Rene', 1975, 'F', 325), +(109559, 'Jeannine', 1975, 'F', 324), +(109560, 'Gwen', 1975, 'F', 323), +(109561, 'Hillary', 1975, 'F', 323), +(109562, 'Sunshine', 1975, 'F', 323), +(109563, 'Maryann', 1975, 'F', 322), +(109564, 'Beatrice', 1975, 'F', 321), +(109565, 'Cristy', 1975, 'F', 321), +(109566, 'Carly', 1975, 'F', 319), +(109567, 'Latrice', 1975, 'F', 319), +(109568, 'Sunny', 1975, 'F', 319), +(109569, 'Lucinda', 1975, 'F', 318), +(109570, 'Tori', 1975, 'F', 318), +(109571, 'Araceli', 1975, 'F', 317), +(109572, 'Marina', 1975, 'F', 317), +(109573, 'Shellie', 1975, 'F', 317), +(109574, 'Laurel', 1975, 'F', 313), +(109575, 'Edna', 1975, 'F', 311), +(109576, 'Noelle', 1975, 'F', 311), +(109577, 'Gladys', 1975, 'F', 310), +(109578, 'Tomika', 1975, 'F', 310), +(109579, 'Windy', 1975, 'F', 310), +(109580, 'Kasey', 1975, 'F', 309), +(109581, 'Carissa', 1975, 'F', 308), +(109582, 'Janna', 1975, 'F', 305), +(109583, 'Carie', 1975, 'F', 304), +(109584, 'Kesha', 1975, 'F', 304), +(109585, 'Jason', 1975, 'F', 303), +(109586, 'Christopher', 1975, 'F', 302), +(109587, 'June', 1975, 'F', 301), +(109588, 'Cori', 1975, 'F', 298), +(109589, 'Janell', 1975, 'F', 298), +(109590, 'Renae', 1975, 'F', 298), +(109591, 'Lacey', 1975, 'F', 294), +(109592, 'Karie', 1975, 'F', 293), +(109593, 'Sue', 1975, 'F', 293), +(109594, 'Jeri', 1975, 'F', 292), +(109595, 'Maricela', 1975, 'F', 291), +(109596, 'Mitzi', 1975, 'F', 291), +(109597, 'Valarie', 1975, 'F', 291), +(109598, 'Dolores', 1975, 'F', 290), +(109599, 'Francine', 1975, 'F', 289), +(109600, 'Ivy', 1975, 'F', 289), +(109601, 'Luciana', 1975, 'F', 289), +(109602, 'Tessa', 1975, 'F', 289), +(109603, 'Annmarie', 1975, 'F', 286), +(109604, 'Lorrie', 1975, 'F', 286), +(109605, 'Rena', 1975, 'F', 286), +(109606, 'Susie', 1975, 'F', 286), +(109607, 'Tiffani', 1975, 'F', 286), +(109608, 'Tosha', 1975, 'F', 285), +(109609, 'Kami', 1975, 'F', 284), +(109610, 'Sheree', 1975, 'F', 284), +(109611, 'Maritza', 1975, 'F', 281), +(109612, 'Sondra', 1975, 'F', 280), +(109613, 'Chantel', 1975, 'F', 276), +(109614, 'Christal', 1975, 'F', 276), +(109615, 'Karina', 1975, 'F', 276), +(109616, 'Tamra', 1975, 'F', 276), +(109617, 'Corina', 1975, 'F', 274), +(109618, 'Deena', 1975, 'F', 273), +(109619, 'Deidre', 1975, 'F', 272), +(109620, 'Nikia', 1975, 'F', 272), +(109621, 'Delia', 1975, 'F', 271), +(109622, 'Mona', 1975, 'F', 271), +(109623, 'Madeline', 1975, 'F', 270), +(109624, 'Caryn', 1975, 'F', 269), +(109625, 'Georgina', 1975, 'F', 269), +(109626, 'Charmaine', 1975, 'F', 268), +(109627, 'Doreen', 1975, 'F', 268), +(109628, 'Corey', 1975, 'F', 267), +(109629, 'Susanne', 1975, 'F', 266), +(109630, 'Bertha', 1975, 'F', 263), +(109631, 'Corinne', 1975, 'F', 263), +(109632, 'Letitia', 1975, 'F', 263), +(109633, 'Cathleen', 1975, 'F', 261), +(109634, 'Jan', 1975, 'F', 261), +(109635, 'Ursula', 1975, 'F', 261), +(109636, 'Mayra', 1975, 'F', 260), +(109637, 'Tawnya', 1975, 'F', 260), +(109638, 'Deirdre', 1975, 'F', 258), +(109639, 'Kira', 1975, 'F', 258), +(109640, 'Mildred', 1975, 'F', 256), +(109641, 'Antonia', 1975, 'F', 255), +(109642, 'Elsa', 1975, 'F', 255), +(109643, 'Felecia', 1975, 'F', 255), +(109644, 'Tanika', 1975, 'F', 255), +(109645, 'Consuelo', 1975, 'F', 254), +(109646, 'Lucia', 1975, 'F', 254), +(109647, 'Anastasia', 1975, 'F', 253), +(109648, 'Brandee', 1975, 'F', 253), +(109649, 'James', 1975, 'F', 253), +(109650, 'Latonia', 1975, 'F', 253), +(109651, 'Athena', 1975, 'F', 252), +(109652, 'Geneva', 1975, 'F', 252), +(109653, 'Paulette', 1975, 'F', 252), +(109654, 'Stella', 1975, 'F', 252), +(109655, 'Patty', 1975, 'F', 250), +(109656, 'Bianca', 1975, 'F', 249), +(109657, 'Hilda', 1975, 'F', 249), +(109658, 'Buffy', 1975, 'F', 247), +(109659, 'Tiana', 1975, 'F', 247), +(109660, 'Dianne', 1975, 'F', 245), +(109661, 'Carolina', 1975, 'F', 244), +(109662, 'Robert', 1975, 'F', 244), +(109663, 'Tawanda', 1975, 'F', 244), +(109664, 'Abby', 1975, 'F', 241), +(109665, 'Ida', 1975, 'F', 240), +(109666, 'Justine', 1975, 'F', 240), +(109667, 'Susanna', 1975, 'F', 240), +(109668, 'Julianne', 1975, 'F', 239), +(109669, 'Lashanda', 1975, 'F', 238), +(109670, 'Sharonda', 1975, 'F', 238), +(109671, 'Danette', 1975, 'F', 237), +(109672, 'David', 1975, 'F', 237), +(109673, 'Mara', 1975, 'F', 237), +(109674, 'Tiffanie', 1975, 'F', 237), +(109675, 'Kristal', 1975, 'F', 236), +(109676, 'Juana', 1975, 'F', 235), +(109677, 'Eleanor', 1975, 'F', 234), +(109678, 'Marion', 1975, 'F', 233), +(109679, 'Marta', 1975, 'F', 233), +(109680, 'Michell', 1975, 'F', 233), +(109681, 'Eve', 1975, 'F', 232), +(109682, 'John', 1975, 'F', 232), +(109683, 'Larissa', 1975, 'F', 232), +(109684, 'Tamera', 1975, 'F', 232), +(109685, 'Danelle', 1975, 'F', 231), +(109686, 'Malissa', 1975, 'F', 231), +(109687, 'Colette', 1975, 'F', 230), +(109688, 'Elise', 1975, 'F', 230), +(109689, 'Elisha', 1975, 'F', 230), +(109690, 'Meagan', 1975, 'F', 230), +(109691, 'Aubrey', 1975, 'F', 229), +(109692, 'Eugenia', 1975, 'F', 229), +(109693, 'Jerri', 1975, 'F', 228), +(109694, 'Louise', 1975, 'F', 228), +(109695, 'Sasha', 1975, 'F', 227), +(109696, 'Suzette', 1975, 'F', 225), +(109697, 'Tyra', 1975, 'F', 225), +(109698, 'Corrie', 1975, 'F', 224), +(109699, 'Joey', 1975, 'F', 224), +(109700, 'Bernice', 1975, 'F', 222), +(109701, 'Cory', 1975, 'F', 222), +(109702, 'Lois', 1975, 'F', 222), +(109703, 'Mollie', 1975, 'F', 222), +(109704, 'Dara', 1975, 'F', 221), +(109705, 'Christen', 1975, 'F', 220), +(109706, 'Jeanie', 1975, 'F', 220), +(109707, 'Regan', 1975, 'F', 220), +(109708, 'Rosemarie', 1975, 'F', 220), +(109709, 'Stacia', 1975, 'F', 220), +(109710, 'Adrianne', 1975, 'F', 219), +(109711, 'Lynne', 1975, 'F', 219), +(109712, 'Vera', 1975, 'F', 219), +(109713, 'Juliet', 1975, 'F', 218), +(109714, 'Deanne', 1975, 'F', 217), +(109715, 'Holli', 1975, 'F', 217), +(109716, 'Kenyatta', 1975, 'F', 217), +(109717, 'Lissette', 1975, 'F', 217), +(109718, 'Chiquita', 1975, 'F', 216), +(109719, 'Christin', 1975, 'F', 216), +(109720, 'Dayna', 1975, 'F', 216), +(109721, 'Elissa', 1975, 'F', 216), +(109722, 'Callie', 1975, 'F', 215), +(109723, 'Noemi', 1975, 'F', 214), +(109724, 'Latricia', 1975, 'F', 213), +(109725, 'Lynnette', 1975, 'F', 213), +(109726, 'Adrian', 1975, 'F', 212), +(109727, 'Alexa', 1975, 'F', 212), +(109728, 'Jayme', 1975, 'F', 211), +(109729, 'Leeann', 1975, 'F', 211), +(109730, 'Lourdes', 1975, 'F', 211), +(109731, 'Mercedes', 1975, 'F', 211), +(109732, 'Sandi', 1975, 'F', 211), +(109733, 'Graciela', 1975, 'F', 210), +(109734, 'Jena', 1975, 'F', 210), +(109735, 'Lacy', 1975, 'F', 210), +(109736, 'Venus', 1975, 'F', 210), +(109737, 'Casandra', 1975, 'F', 208), +(109738, 'Andria', 1975, 'F', 207), +(109739, 'Emilie', 1975, 'F', 207), +(109740, 'Katy', 1975, 'F', 207), +(109741, 'Shalonda', 1975, 'F', 207), +(109742, 'Alecia', 1975, 'F', 206), +(109743, 'Celia', 1975, 'F', 206), +(109744, 'Dusty', 1975, 'F', 206), +(109745, 'Kay', 1975, 'F', 206), +(109746, 'Marian', 1975, 'F', 206), +(109747, 'Helena', 1975, 'F', 205), +(109748, 'Cary', 1975, 'F', 204), +(109749, 'Dixie', 1975, 'F', 203), +(109750, 'Florence', 1975, 'F', 203), +(109751, 'Jeanna', 1975, 'F', 203), +(109752, 'Leanna', 1975, 'F', 203), +(109753, 'Mindi', 1975, 'F', 203), +(109754, 'Toya', 1975, 'F', 203), +(109755, 'Chris', 1975, 'F', 201), +(109756, 'Ivette', 1975, 'F', 201), +(109757, 'Margie', 1975, 'F', 201), +(109758, 'Trista', 1975, 'F', 201), +(109759, 'Darcie', 1975, 'F', 200), +(109760, 'Lakeshia', 1975, 'F', 200), +(109761, 'Mandie', 1975, 'F', 200), +(109762, 'Thelma', 1975, 'F', 199), +(109763, 'Sadie', 1975, 'F', 198), +(109764, 'Christian', 1975, 'F', 197), +(109765, 'Josie', 1975, 'F', 196), +(109766, 'Marisela', 1975, 'F', 196), +(109767, 'Layla', 1975, 'F', 195), +(109768, 'Greta', 1975, 'F', 194), +(109769, 'Octavia', 1975, 'F', 194), +(109770, 'Dominique', 1975, 'F', 193), +(109771, 'Fatima', 1975, 'F', 193), +(109772, 'Francesca', 1975, 'F', 192), +(109773, 'Martina', 1975, 'F', 192), +(109774, 'Beatriz', 1975, 'F', 191), +(109775, 'Cortney', 1975, 'F', 191), +(109776, 'Delores', 1975, 'F', 191), +(109777, 'Leona', 1975, 'F', 191), +(109778, 'Marlo', 1975, 'F', 191), +(109779, 'Racheal', 1975, 'F', 191), +(109780, 'Simone', 1975, 'F', 190), +(109781, 'Brenna', 1975, 'F', 189), +(109782, 'Shantel', 1975, 'F', 189), +(109783, 'Carole', 1975, 'F', 188), +(109784, 'Rosalind', 1975, 'F', 188), +(109785, 'Richelle', 1975, 'F', 187), +(109786, 'Karri', 1975, 'F', 186), +(109787, 'Kia', 1975, 'F', 186), +(109788, 'Marnie', 1975, 'F', 186), +(109789, 'Rosalinda', 1975, 'F', 186), +(109790, 'Shelli', 1975, 'F', 186), +(109791, 'Kayla', 1975, 'F', 185), +(109792, 'Tonja', 1975, 'F', 185), +(109793, 'Ada', 1975, 'F', 184), +(109794, 'Danita', 1975, 'F', 184), +(109795, 'Ella', 1975, 'F', 184), +(109796, 'Gayle', 1975, 'F', 184), +(109797, 'Rosanna', 1975, 'F', 184), +(109798, 'Alejandra', 1975, 'F', 183), +(109799, 'Annemarie', 1975, 'F', 183), +(109800, 'Maya', 1975, 'F', 183), +(109801, 'Angelita', 1975, 'F', 182), +(109802, 'Cora', 1975, 'F', 182), +(109803, 'Rhoda', 1975, 'F', 182), +(109804, 'Davina', 1975, 'F', 181), +(109805, 'Rocio', 1975, 'F', 181), +(109806, 'Shanon', 1975, 'F', 181), +(109807, 'Sharla', 1975, 'F', 181), +(109808, 'Syreeta', 1975, 'F', 181), +(109809, 'Laquita', 1975, 'F', 180), +(109810, 'Margo', 1975, 'F', 180), +(109811, 'Briana', 1975, 'F', 179), +(109812, 'Joelle', 1975, 'F', 179), +(109813, 'Trudy', 1975, 'F', 179), +(109814, 'Aurora', 1975, 'F', 178), +(109815, 'Lauri', 1975, 'F', 178), +(109816, 'Jamila', 1975, 'F', 177), +(109817, 'Tarsha', 1975, 'F', 177), +(109818, 'Candi', 1975, 'F', 176), +(109819, 'Harmony', 1975, 'F', 176), +(109820, 'Jeana', 1975, 'F', 176), +(109821, 'Angeline', 1975, 'F', 174), +(109822, 'Catina', 1975, 'F', 174), +(109823, 'Liliana', 1975, 'F', 174), +(109824, 'Maura', 1975, 'F', 174), +(109825, 'Therese', 1975, 'F', 174), +(109826, 'Brook', 1975, 'F', 173), +(109827, 'Noel', 1975, 'F', 172), +(109828, 'Shannan', 1975, 'F', 172), +(109829, 'Carri', 1975, 'F', 171), +(109830, 'Kori', 1975, 'F', 171), +(109831, 'Mellissa', 1975, 'F', 171), +(109832, 'Aileen', 1975, 'F', 170), +(109833, 'Griselda', 1975, 'F', 170), +(109834, 'Tawanna', 1975, 'F', 170), +(109835, 'Deann', 1975, 'F', 169), +(109836, 'Eunice', 1975, 'F', 169), +(109837, 'Mendy', 1975, 'F', 169), +(109838, 'Patti', 1975, 'F', 169), +(109839, 'Anissa', 1975, 'F', 168), +(109840, 'Deidra', 1975, 'F', 168), +(109841, 'Nanette', 1975, 'F', 168), +(109842, 'Cecelia', 1975, 'F', 167), +(109843, 'Johnna', 1975, 'F', 167), +(109844, 'Magdalena', 1975, 'F', 167), +(109845, 'Niki', 1975, 'F', 167), +(109846, 'Shanta', 1975, 'F', 167), +(109847, 'Rosie', 1975, 'F', 166), +(109848, 'Daniel', 1975, 'F', 165), +(109849, 'Nikita', 1975, 'F', 165), +(109850, 'Shameka', 1975, 'F', 165), +(109851, 'Tamica', 1975, 'F', 165), +(109852, 'Terrie', 1975, 'F', 165), +(109853, 'Della', 1975, 'F', 164), +(109854, 'Trinity', 1975, 'F', 164), +(109855, 'Kandi', 1975, 'F', 163), +(109856, 'William', 1975, 'F', 163), +(109857, 'Monika', 1975, 'F', 162), +(109858, 'Spring', 1975, 'F', 162), +(109859, 'Benita', 1975, 'F', 161), +(109860, 'Candida', 1975, 'F', 161), +(109861, 'Carisa', 1975, 'F', 161), +(109862, 'Carmela', 1975, 'F', 161), +(109863, 'Destiny', 1975, 'F', 161), +(109864, 'Joleen', 1975, 'F', 161), +(109865, 'Nakisha', 1975, 'F', 161), +(109866, 'Aida', 1975, 'F', 160), +(109867, 'Bree', 1975, 'F', 160), +(109868, 'Darci', 1975, 'F', 160), +(109869, 'Georgette', 1975, 'F', 159), +(109870, 'Penelope', 1975, 'F', 159), +(109871, 'Christel', 1975, 'F', 158), +(109872, 'Lisette', 1975, 'F', 158), +(109873, 'Tana', 1975, 'F', 158), +(109874, 'Toby', 1975, 'F', 158), +(109875, 'Anika', 1975, 'F', 157), +(109876, 'Leila', 1975, 'F', 157), +(109877, 'Nikole', 1975, 'F', 157), +(109878, 'Rae', 1975, 'F', 157), +(109879, 'Sofia', 1975, 'F', 157), +(109880, 'Tamekia', 1975, 'F', 157), +(109881, 'Tamela', 1975, 'F', 157), +(109882, 'Danna', 1975, 'F', 156), +(109883, 'Geraldine', 1975, 'F', 156), +(109884, 'Jada', 1975, 'F', 156), +(109885, 'Josefina', 1975, 'F', 156), +(109886, 'Juliana', 1975, 'F', 156), +(109887, 'Kathrine', 1975, 'F', 156), +(109888, 'Mariah', 1975, 'F', 156), +(109889, 'Nicolle', 1975, 'F', 156), +(109890, 'Valeria', 1975, 'F', 156), +(109891, 'Ayanna', 1975, 'F', 155), +(109892, 'Janis', 1975, 'F', 155), +(109893, 'Polly', 1975, 'F', 155), +(109894, 'Lilia', 1975, 'F', 154), +(109895, 'Selina', 1975, 'F', 154), +(109896, 'Shawnda', 1975, 'F', 154), +(109897, 'Danyelle', 1975, 'F', 153), +(109898, 'Fawn', 1975, 'F', 153), +(109899, 'Suzanna', 1975, 'F', 153), +(109900, 'Tressa', 1975, 'F', 153), +(109901, 'Alanna', 1975, 'F', 152), +(109902, 'Mari', 1975, 'F', 152), +(109903, 'Susannah', 1975, 'F', 152), +(109904, 'Adria', 1975, 'F', 151), +(109905, 'Brian', 1975, 'F', 151), +(109906, 'India', 1975, 'F', 151), +(109907, 'Latarsha', 1975, 'F', 151), +(109908, 'Lola', 1975, 'F', 151), +(109909, 'Stephenie', 1975, 'F', 151), +(109910, 'Tangela', 1975, 'F', 151), +(109911, 'Felisha', 1975, 'F', 150), +(109912, 'Nellie', 1975, 'F', 150), +(109913, 'Rosalie', 1975, 'F', 150), +(109914, 'Tobi', 1975, 'F', 150), +(109915, 'Ethel', 1975, 'F', 149), +(109916, 'Natalia', 1975, 'F', 149), +(109917, 'Antionette', 1975, 'F', 148), +(109918, 'Mellisa', 1975, 'F', 148), +(109919, 'Pearl', 1975, 'F', 148), +(109920, 'Shani', 1975, 'F', 148), +(109921, 'Shantell', 1975, 'F', 148), +(109922, 'Alexandria', 1975, 'F', 147), +(109923, 'Ayana', 1975, 'F', 147), +(109924, 'Eliza', 1975, 'F', 147), +(109925, 'Roseann', 1975, 'F', 147), +(109926, 'Jade', 1975, 'F', 146), +(109927, 'Lenora', 1975, 'F', 146), +(109928, 'Maranda', 1975, 'F', 146), +(109929, 'Valencia', 1975, 'F', 146), +(109930, 'Lucretia', 1975, 'F', 145), +(109931, 'Corinna', 1975, 'F', 144), +(109932, 'Kirstin', 1975, 'F', 144), +(109933, 'Rashida', 1975, 'F', 144), +(109934, 'Yadira', 1975, 'F', 144), +(109935, 'Elsie', 1975, 'F', 143), +(109936, 'Keshia', 1975, 'F', 143), +(109937, 'Rolanda', 1975, 'F', 143), +(109938, 'Roxanna', 1975, 'F', 143), +(109939, 'Keesha', 1975, 'F', 142), +(109940, 'Mistie', 1975, 'F', 142), +(109941, 'Patsy', 1975, 'F', 142), +(109942, 'Alesha', 1975, 'F', 141), +(109943, 'Charissa', 1975, 'F', 141), +(109944, 'Claudine', 1975, 'F', 141), +(109945, 'Daniela', 1975, 'F', 141), +(109946, 'Faye', 1975, 'F', 141), +(109947, 'Kacey', 1975, 'F', 141), +(109948, 'Kris', 1975, 'F', 141), +(109949, 'Chanel', 1975, 'F', 140), +(109950, 'Keely', 1975, 'F', 140), +(109951, 'Elvira', 1975, 'F', 139), +(109952, 'Nyree', 1975, 'F', 139), +(109953, 'Ryan', 1975, 'F', 139), +(109954, 'Shawanda', 1975, 'F', 139), +(109955, 'Ginny', 1975, 'F', 138), +(109956, 'Melonie', 1975, 'F', 138), +(109957, 'Anthony', 1975, 'F', 137), +(109958, 'Imelda', 1975, 'F', 137), +(109959, 'Celina', 1975, 'F', 136), +(109960, 'Damaris', 1975, 'F', 136), +(109961, 'Francis', 1975, 'F', 136), +(109962, 'Shamika', 1975, 'F', 136), +(109963, 'Tanesha', 1975, 'F', 136), +(109964, 'Coleen', 1975, 'F', 135), +(109965, 'Julissa', 1975, 'F', 135), +(109966, 'Justina', 1975, 'F', 135), +(109967, 'Marlena', 1975, 'F', 135), +(109968, 'Takisha', 1975, 'F', 135), +(109969, 'Angella', 1975, 'F', 134), +(109970, 'Esperanza', 1975, 'F', 134), +(109971, 'Hazel', 1975, 'F', 134), +(109972, 'Reagan', 1975, 'F', 134), +(109973, 'Trena', 1975, 'F', 134), +(109974, 'Adriane', 1975, 'F', 133), +(109975, 'Lorna', 1975, 'F', 133), +(109976, 'Angelic', 1975, 'F', 132), +(109977, 'Carin', 1975, 'F', 132), +(109978, 'Charla', 1975, 'F', 132), +(109979, 'Delilah', 1975, 'F', 132), +(109980, 'Freda', 1975, 'F', 132), +(109981, 'Joseph', 1975, 'F', 132), +(109982, 'Pepper', 1975, 'F', 132), +(109983, 'Bessie', 1975, 'F', 131), +(109984, 'Kandice', 1975, 'F', 131), +(109985, 'Caren', 1975, 'F', 130), +(109986, 'Cherilyn', 1975, 'F', 130), +(109987, 'Latrina', 1975, 'F', 130), +(109988, 'Nicki', 1975, 'F', 130), +(109989, 'Richard', 1975, 'F', 130), +(109990, 'Anjanette', 1975, 'F', 129), +(109991, 'Charles', 1975, 'F', 129), +(109992, 'Francisca', 1975, 'F', 129), +(109993, 'Lesa', 1975, 'F', 129), +(109994, 'Melodie', 1975, 'F', 129), +(109995, 'Nicola', 1975, 'F', 129), +(109996, 'Renita', 1975, 'F', 129), +(109997, 'Denice', 1975, 'F', 128), +(109998, 'Janeen', 1975, 'F', 128), +(109999, 'Maxine', 1975, 'F', 128), +(110000, 'Corrine', 1975, 'F', 127), +(110001, 'Elvia', 1975, 'F', 127), +(110002, 'Racquel', 1975, 'F', 127), +(110003, 'Bonita', 1975, 'F', 126), +(110004, 'Charisse', 1975, 'F', 126), +(110005, 'Cristal', 1975, 'F', 126), +(110006, 'Demetra', 1975, 'F', 126), +(110007, 'Sherita', 1975, 'F', 126), +(110008, 'Yolonda', 1975, 'F', 126), +(110009, 'Zoe', 1975, 'F', 126), +(110010, 'Alina', 1975, 'F', 125), +(110011, 'Ava', 1975, 'F', 125), +(110012, 'Jasmin', 1975, 'F', 125), +(110013, 'Marni', 1975, 'F', 125), +(110014, 'Rosario', 1975, 'F', 125), +(110015, 'Cami', 1975, 'F', 124), +(110016, 'Eric', 1975, 'F', 124), +(110017, 'Jenni', 1975, 'F', 124), +(110018, 'Myrna', 1975, 'F', 124), +(110019, 'Rosalyn', 1975, 'F', 124), +(110020, 'Alysia', 1975, 'F', 123), +(110021, 'Cher', 1975, 'F', 123), +(110022, 'Meggan', 1975, 'F', 123), +(110023, 'Shara', 1975, 'F', 123), +(110024, 'Aaron', 1975, 'F', 122), +(110025, 'Chantelle', 1975, 'F', 122), +(110026, 'Daniele', 1975, 'F', 122), +(110027, 'Dee', 1975, 'F', 122), +(110028, 'Jolie', 1975, 'F', 122), +(110029, 'Nichol', 1975, 'F', 122), +(110030, 'Azure', 1975, 'F', 121), +(110031, 'Cherise', 1975, 'F', 121), +(110032, 'Lily', 1975, 'F', 121), +(110033, 'Mariana', 1975, 'F', 121), +(110034, 'Ashlee', 1975, 'F', 120), +(110035, 'Chaka', 1975, 'F', 120), +(110036, 'Michaela', 1975, 'F', 120), +(110037, 'Rebeca', 1975, 'F', 120), +(110038, 'Cicely', 1975, 'F', 119), +(110039, 'Claudette', 1975, 'F', 119), +(110040, 'Jenniffer', 1975, 'F', 119), +(110041, 'Julianna', 1975, 'F', 119), +(110042, 'Karey', 1975, 'F', 119), +(110043, 'Libby', 1975, 'F', 119), +(110044, 'Marguerite', 1975, 'F', 119), +(110045, 'Robbie', 1975, 'F', 119), +(110046, 'Sharron', 1975, 'F', 119), +(110047, 'Sybil', 1975, 'F', 119), +(110048, 'Turkessa', 1975, 'F', 119), +(110049, 'Cathryn', 1975, 'F', 118), +(110050, 'Dawna', 1975, 'F', 118), +(110051, 'Jesse', 1975, 'F', 118), +(110052, 'Aretha', 1975, 'F', 117), +(110053, 'Cherry', 1975, 'F', 117), +(110054, 'Jayne', 1975, 'F', 117), +(110055, 'Nichelle', 1975, 'F', 117), +(110056, 'Raina', 1975, 'F', 117), +(110057, 'Rikki', 1975, 'F', 117), +(110058, 'Shayna', 1975, 'F', 117), +(110059, 'Danyel', 1975, 'F', 116), +(110060, 'Debora', 1975, 'F', 116), +(110061, 'Shea', 1975, 'F', 116), +(110062, 'Starr', 1975, 'F', 116), +(110063, 'Cindi', 1975, 'F', 115), +(110064, 'Isela', 1975, 'F', 115), +(110065, 'Luisa', 1975, 'F', 115), +(110066, 'Malika', 1975, 'F', 115), +(110067, 'Morgan', 1975, 'F', 115), +(110068, 'Adrianna', 1975, 'F', 114), +(110069, 'Jonna', 1975, 'F', 114), +(110070, 'Juli', 1975, 'F', 114), +(110071, 'Kyra', 1975, 'F', 114), +(110072, 'Rana', 1975, 'F', 114), +(110073, 'Starla', 1975, 'F', 114), +(110074, 'Adina', 1975, 'F', 113), +(110075, 'Cristi', 1975, 'F', 113), +(110076, 'Estella', 1975, 'F', 113), +(110077, 'Lolita', 1975, 'F', 113), +(110078, 'Matthew', 1975, 'F', 113), +(110079, 'Sheena', 1975, 'F', 113), +(110080, 'Twana', 1975, 'F', 113), +(110081, 'Violet', 1975, 'F', 113), +(110082, 'Corrina', 1975, 'F', 112), +(110083, 'Lesli', 1975, 'F', 112), +(110084, 'Mechelle', 1975, 'F', 112), +(110085, 'Phoebe', 1975, 'F', 112), +(110086, 'Sherie', 1975, 'F', 112), +(110087, 'Catalina', 1975, 'F', 111), +(110088, 'Leilani', 1975, 'F', 111), +(110089, 'Lindy', 1975, 'F', 111), +(110090, 'Mirna', 1975, 'F', 111), +(110091, 'Temeka', 1975, 'F', 111), +(110092, 'Vonetta', 1975, 'F', 111), +(110093, 'Alycia', 1975, 'F', 110), +(110094, 'Brande', 1975, 'F', 110), +(110095, 'Carmelita', 1975, 'F', 110), +(110096, 'Cecily', 1975, 'F', 110), +(110097, 'Clare', 1975, 'F', 110), +(110098, 'Crista', 1975, 'F', 110), +(110099, 'Danica', 1975, 'F', 110), +(110100, 'Haley', 1975, 'F', 110), +(110101, 'Asia', 1975, 'F', 109), +(110102, 'Brigette', 1975, 'F', 109), +(110103, 'Devon', 1975, 'F', 109), +(110104, 'Frankie', 1975, 'F', 109), +(110105, 'Kandy', 1975, 'F', 109), +(110106, 'Saundra', 1975, 'F', 109), +(110107, 'Shanita', 1975, 'F', 109), +(110108, 'Wilma', 1975, 'F', 109), +(110109, 'Bambi', 1975, 'F', 108), +(110110, 'Dannielle', 1975, 'F', 108), +(110111, 'Elva', 1975, 'F', 108), +(110112, 'Inez', 1975, 'F', 108), +(110113, 'Marquita', 1975, 'F', 108), +(110114, 'Milagros', 1975, 'F', 108), +(110115, 'Shane', 1975, 'F', 108), +(110116, 'Shawana', 1975, 'F', 108), +(110117, 'Shayla', 1975, 'F', 108), +(110118, 'Trish', 1975, 'F', 108), +(110119, 'Twila', 1975, 'F', 108), +(110120, 'Chana', 1975, 'F', 107), +(110121, 'Christiana', 1975, 'F', 107), +(110122, 'Johnnie', 1975, 'F', 107), +(110123, 'Lina', 1975, 'F', 107), +(110124, 'Mattie', 1975, 'F', 107), +(110125, 'Tamala', 1975, 'F', 107), +(110126, 'Danyell', 1975, 'F', 106), +(110127, 'Kevin', 1975, 'F', 106), +(110128, 'Kiesha', 1975, 'F', 106), +(110129, 'Kyla', 1975, 'F', 106), +(110130, 'Lupe', 1975, 'F', 106), +(110131, 'Natosha', 1975, 'F', 106), +(110132, 'Precious', 1975, 'F', 106), +(110133, 'Roxann', 1975, 'F', 106), +(110134, 'Shanika', 1975, 'F', 106), +(110135, 'Steven', 1975, 'F', 106), +(110136, 'Alexia', 1975, 'F', 105), +(110137, 'Celena', 1975, 'F', 105), +(110138, 'Hallie', 1975, 'F', 105), +(110139, 'Kelsey', 1975, 'F', 105), +(110140, 'Kenyetta', 1975, 'F', 105), +(110141, 'Lashunda', 1975, 'F', 105), +(110142, 'Lucille', 1975, 'F', 105), +(110143, 'Sharlene', 1975, 'F', 105), +(110144, 'Timothy', 1975, 'F', 105), +(110145, 'Bobby', 1975, 'F', 104), +(110146, 'Nia', 1975, 'F', 104), +(110147, 'Rhea', 1975, 'F', 104), +(110148, 'Tabetha', 1975, 'F', 104), +(110149, 'Adele', 1975, 'F', 103), +(110150, 'Camilla', 1975, 'F', 103), +(110151, 'Chaya', 1975, 'F', 103), +(110152, 'Cherish', 1975, 'F', 103), +(110153, 'Elana', 1975, 'F', 103), +(110154, 'Gabriella', 1975, 'F', 103), +(110155, 'Gayla', 1975, 'F', 103), +(110156, 'Gracie', 1975, 'F', 103), +(110157, 'Keli', 1975, 'F', 103), +(110158, 'Liana', 1975, 'F', 103), +(110159, 'Lila', 1975, 'F', 103), +(110160, 'Shanell', 1975, 'F', 103), +(110161, 'Stephany', 1975, 'F', 103), +(110162, 'Tamatha', 1975, 'F', 103), +(110163, 'Tennille', 1975, 'F', 103), +(110164, 'Verna', 1975, 'F', 103), +(110165, 'Corie', 1975, 'F', 102), +(110166, 'Eboni', 1975, 'F', 102), +(110167, 'Flora', 1975, 'F', 102), +(110168, 'Lillie', 1975, 'F', 102), +(110169, 'Lorinda', 1975, 'F', 102), +(110170, 'Manda', 1975, 'F', 102), +(110171, 'Missy', 1975, 'F', 102), +(110172, 'Robbin', 1975, 'F', 102), +(110173, 'Alethea', 1975, 'F', 101), +(110174, 'Aracely', 1975, 'F', 101), +(110175, 'Carina', 1975, 'F', 101); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(110176, 'Cristie', 1975, 'F', 101), +(110177, 'Geri', 1975, 'F', 101), +(110178, 'Jacquline', 1975, 'F', 101), +(110179, 'Kera', 1975, 'F', 101), +(110180, 'Petra', 1975, 'F', 101), +(110181, 'Shandra', 1975, 'F', 101), +(110182, 'Gillian', 1975, 'F', 100), +(110183, 'Marcela', 1975, 'F', 100), +(110184, 'Melina', 1975, 'F', 100), +(110185, 'Minerva', 1975, 'F', 100), +(110186, 'Shalanda', 1975, 'F', 100), +(110187, 'Venessa', 1975, 'F', 100), +(110188, 'Michael', 1975, 'M', 68457), +(110189, 'Jason', 1975, 'M', 52199), +(110190, 'Christopher', 1975, 'M', 46587), +(110191, 'James', 1975, 'M', 39595), +(110192, 'David', 1975, 'M', 39172), +(110193, 'Robert', 1975, 'M', 35337), +(110194, 'John', 1975, 'M', 35098), +(110195, 'Brian', 1975, 'M', 30608), +(110196, 'Matthew', 1975, 'M', 28569), +(110197, 'William', 1975, 'M', 25581), +(110198, 'Daniel', 1975, 'M', 23830), +(110199, 'Joseph', 1975, 'M', 22144), +(110200, 'Eric', 1975, 'M', 19823), +(110201, 'Jeffrey', 1975, 'M', 18323), +(110202, 'Kevin', 1975, 'M', 18089), +(110203, 'Richard', 1975, 'M', 17681), +(110204, 'Scott', 1975, 'M', 17323), +(110205, 'Steven', 1975, 'M', 17062), +(110206, 'Mark', 1975, 'M', 16754), +(110207, 'Thomas', 1975, 'M', 16558), +(110208, 'Anthony', 1975, 'M', 16499), +(110209, 'Timothy', 1975, 'M', 15952), +(110210, 'Ryan', 1975, 'M', 15306), +(110211, 'Jeremy', 1975, 'M', 15204), +(110212, 'Charles', 1975, 'M', 14577), +(110213, 'Joshua', 1975, 'M', 14577), +(110214, 'Chad', 1975, 'M', 12849), +(110215, 'Andrew', 1975, 'M', 12775), +(110216, 'Paul', 1975, 'M', 12019), +(110217, 'Jonathan', 1975, 'M', 10919), +(110218, 'Shawn', 1975, 'M', 10694), +(110219, 'Aaron', 1975, 'M', 10549), +(110220, 'Gregory', 1975, 'M', 10411), +(110221, 'Stephen', 1975, 'M', 9737), +(110222, 'Kenneth', 1975, 'M', 9640), +(110223, 'Benjamin', 1975, 'M', 9552), +(110224, 'Justin', 1975, 'M', 8895), +(110225, 'Adam', 1975, 'M', 8654), +(110226, 'Patrick', 1975, 'M', 8067), +(110227, 'Sean', 1975, 'M', 7602), +(110228, 'Edward', 1975, 'M', 7391), +(110229, 'Donald', 1975, 'M', 7200), +(110230, 'Todd', 1975, 'M', 7156), +(110231, 'Brandon', 1975, 'M', 7089), +(110232, 'Nathan', 1975, 'M', 7068), +(110233, 'Ronald', 1975, 'M', 7066), +(110234, 'Bryan', 1975, 'M', 7010), +(110235, 'Jose', 1975, 'M', 6967), +(110236, 'Keith', 1975, 'M', 6826), +(110237, 'Gary', 1975, 'M', 6120), +(110238, 'Travis', 1975, 'M', 5962), +(110239, 'Bradley', 1975, 'M', 5898), +(110240, 'George', 1975, 'M', 5840), +(110241, 'Peter', 1975, 'M', 5707), +(110242, 'Douglas', 1975, 'M', 5351), +(110243, 'Larry', 1975, 'M', 5312), +(110244, 'Shane', 1975, 'M', 5209), +(110245, 'Craig', 1975, 'M', 5114), +(110246, 'Dennis', 1975, 'M', 4729), +(110247, 'Juan', 1975, 'M', 4696), +(110248, 'Samuel', 1975, 'M', 4623), +(110249, 'Jamie', 1975, 'M', 4573), +(110250, 'Raymond', 1975, 'M', 4530), +(110251, 'Jesse', 1975, 'M', 4435), +(110252, 'Jerry', 1975, 'M', 4315), +(110253, 'Frank', 1975, 'M', 4211), +(110254, 'Terry', 1975, 'M', 3974), +(110255, 'Marcus', 1975, 'M', 3973), +(110256, 'Troy', 1975, 'M', 3949), +(110257, 'Jeffery', 1975, 'M', 3910), +(110258, 'Corey', 1975, 'M', 3883), +(110259, 'Phillip', 1975, 'M', 3853), +(110260, 'Carlos', 1975, 'M', 3788), +(110261, 'Joel', 1975, 'M', 3732), +(110262, 'Jacob', 1975, 'M', 3627), +(110263, 'Rodney', 1975, 'M', 3581), +(110264, 'Antonio', 1975, 'M', 3483), +(110265, 'Randy', 1975, 'M', 3382), +(110266, 'Brent', 1975, 'M', 3370), +(110267, 'Tony', 1975, 'M', 3325), +(110268, 'Nicholas', 1975, 'M', 3322), +(110269, 'Russell', 1975, 'M', 3229), +(110270, 'Derek', 1975, 'M', 3188), +(110271, 'Billy', 1975, 'M', 3112), +(110272, 'Philip', 1975, 'M', 3008), +(110273, 'Johnny', 1975, 'M', 2971), +(110274, 'Erik', 1975, 'M', 2862), +(110275, 'Kyle', 1975, 'M', 2838), +(110276, 'Marc', 1975, 'M', 2821), +(110277, 'Derrick', 1975, 'M', 2820), +(110278, 'Carl', 1975, 'M', 2813), +(110279, 'Brett', 1975, 'M', 2778), +(110280, 'Bobby', 1975, 'M', 2771), +(110281, 'Danny', 1975, 'M', 2741), +(110282, 'Victor', 1975, 'M', 2682), +(110283, 'Dustin', 1975, 'M', 2681), +(110284, 'Roger', 1975, 'M', 2621), +(110285, 'Brad', 1975, 'M', 2615), +(110286, 'Cory', 1975, 'M', 2570), +(110287, 'Jared', 1975, 'M', 2564), +(110288, 'Shannon', 1975, 'M', 2535), +(110289, 'Jon', 1975, 'M', 2518), +(110290, 'Christian', 1975, 'M', 2463), +(110291, 'Alexander', 1975, 'M', 2442), +(110292, 'Micheal', 1975, 'M', 2442), +(110293, 'Gabriel', 1975, 'M', 2428), +(110294, 'Luis', 1975, 'M', 2425), +(110295, 'Gerald', 1975, 'M', 2401), +(110296, 'Vincent', 1975, 'M', 2387), +(110297, 'Lawrence', 1975, 'M', 2364), +(110298, 'Walter', 1975, 'M', 2359), +(110299, 'Jimmy', 1975, 'M', 2358), +(110300, 'Curtis', 1975, 'M', 2331), +(110301, 'Damon', 1975, 'M', 2280), +(110302, 'Alan', 1975, 'M', 2249), +(110303, 'Joe', 1975, 'M', 2238), +(110304, 'Jay', 1975, 'M', 2179), +(110305, 'Willie', 1975, 'M', 2175), +(110306, 'Martin', 1975, 'M', 2165), +(110307, 'Wayne', 1975, 'M', 2130), +(110308, 'Randall', 1975, 'M', 2128), +(110309, 'Roy', 1975, 'M', 2123), +(110310, 'Andre', 1975, 'M', 2104), +(110311, 'Henry', 1975, 'M', 2087), +(110312, 'Mario', 1975, 'M', 2057), +(110313, 'Allen', 1975, 'M', 2036), +(110314, 'Darren', 1975, 'M', 2033), +(110315, 'Arthur', 1975, 'M', 2025), +(110316, 'Albert', 1975, 'M', 2018), +(110317, 'Chris', 1975, 'M', 1962), +(110318, 'Nathaniel', 1975, 'M', 1960), +(110319, 'Casey', 1975, 'M', 1959), +(110320, 'Adrian', 1975, 'M', 1955), +(110321, 'Jesus', 1975, 'M', 1923), +(110322, 'Ricky', 1975, 'M', 1914), +(110323, 'Seth', 1975, 'M', 1868), +(110324, 'Lee', 1975, 'M', 1861), +(110325, 'Louis', 1975, 'M', 1813), +(110326, 'Manuel', 1975, 'M', 1798), +(110327, 'Bruce', 1975, 'M', 1793), +(110328, 'Frederick', 1975, 'M', 1787), +(110329, 'Jack', 1975, 'M', 1744), +(110330, 'Ricardo', 1975, 'M', 1730), +(110331, 'Ian', 1975, 'M', 1727), +(110332, 'Zachary', 1975, 'M', 1686), +(110333, 'Tyrone', 1975, 'M', 1684), +(110334, 'Darrell', 1975, 'M', 1673), +(110335, 'Miguel', 1975, 'M', 1661), +(110336, 'Jeremiah', 1975, 'M', 1653), +(110337, 'Kelly', 1975, 'M', 1642), +(110338, 'Ronnie', 1975, 'M', 1630), +(110339, 'Francisco', 1975, 'M', 1613), +(110340, 'Harold', 1975, 'M', 1592), +(110341, 'Clinton', 1975, 'M', 1577), +(110342, 'Roberto', 1975, 'M', 1557), +(110343, 'Tommy', 1975, 'M', 1553), +(110344, 'Jorge', 1975, 'M', 1537), +(110345, 'Wesley', 1975, 'M', 1534), +(110346, 'Dale', 1975, 'M', 1530), +(110347, 'Eugene', 1975, 'M', 1519), +(110348, 'Ernest', 1975, 'M', 1515), +(110349, 'Reginald', 1975, 'M', 1499), +(110350, 'Lance', 1975, 'M', 1498), +(110351, 'Barry', 1975, 'M', 1480), +(110352, 'Jerome', 1975, 'M', 1437), +(110353, 'Leonard', 1975, 'M', 1435), +(110354, 'Geoffrey', 1975, 'M', 1397), +(110355, 'Eddie', 1975, 'M', 1390), +(110356, 'Steve', 1975, 'M', 1387), +(110357, 'Maurice', 1975, 'M', 1385), +(110358, 'Glenn', 1975, 'M', 1384), +(110359, 'Ruben', 1975, 'M', 1377), +(110360, 'Ralph', 1975, 'M', 1341), +(110361, 'Neil', 1975, 'M', 1335), +(110362, 'Alex', 1975, 'M', 1328), +(110363, 'Jermaine', 1975, 'M', 1317), +(110364, 'Marvin', 1975, 'M', 1312), +(110365, 'Calvin', 1975, 'M', 1286), +(110366, 'Jaime', 1975, 'M', 1273), +(110367, 'Trevor', 1975, 'M', 1268), +(110368, 'Hector', 1975, 'M', 1249), +(110369, 'Dwayne', 1975, 'M', 1247), +(110370, 'Edwin', 1975, 'M', 1240), +(110371, 'Kristopher', 1975, 'M', 1234), +(110372, 'Oscar', 1975, 'M', 1232), +(110373, 'Clifton', 1975, 'M', 1215), +(110374, 'Melvin', 1975, 'M', 1208), +(110375, 'Heath', 1975, 'M', 1205), +(110376, 'Theodore', 1975, 'M', 1198), +(110377, 'Toby', 1975, 'M', 1191), +(110378, 'Terrance', 1975, 'M', 1180), +(110379, 'Mitchell', 1975, 'M', 1179), +(110380, 'Clayton', 1975, 'M', 1178), +(110381, 'Stanley', 1975, 'M', 1168), +(110382, 'Howard', 1975, 'M', 1167), +(110383, 'Terrence', 1975, 'M', 1149), +(110384, 'Wade', 1975, 'M', 1131), +(110385, 'Mathew', 1975, 'M', 1126), +(110386, 'Clifford', 1975, 'M', 1124), +(110387, 'Javier', 1975, 'M', 1113), +(110388, 'Angel', 1975, 'M', 1092), +(110389, 'Kurt', 1975, 'M', 1088), +(110390, 'Ramon', 1975, 'M', 1081), +(110391, 'Harry', 1975, 'M', 1072), +(110392, 'Tyler', 1975, 'M', 1067), +(110393, 'Tracy', 1975, 'M', 1052), +(110394, 'Duane', 1975, 'M', 1043), +(110395, 'Raul', 1975, 'M', 1037), +(110396, 'Cameron', 1975, 'M', 1028), +(110397, 'Alejandro', 1975, 'M', 1026), +(110398, 'Dean', 1975, 'M', 1026), +(110399, 'Earl', 1975, 'M', 1023), +(110400, 'Isaac', 1975, 'M', 1014), +(110401, 'Kirk', 1975, 'M', 1001), +(110402, 'Rafael', 1975, 'M', 988), +(110403, 'Pedro', 1975, 'M', 982), +(110404, 'Francis', 1975, 'M', 958), +(110405, 'Greg', 1975, 'M', 953), +(110406, 'Alfred', 1975, 'M', 949), +(110407, 'Jody', 1975, 'M', 939), +(110408, 'Andy', 1975, 'M', 928), +(110409, 'Armando', 1975, 'M', 925), +(110410, 'Byron', 1975, 'M', 914), +(110411, 'Clarence', 1975, 'M', 912), +(110412, 'Fernando', 1975, 'M', 911), +(110413, 'Karl', 1975, 'M', 902), +(110414, 'Cody', 1975, 'M', 901), +(110415, 'Ray', 1975, 'M', 894), +(110416, 'Lucas', 1975, 'M', 892), +(110417, 'Omar', 1975, 'M', 892), +(110418, 'Warren', 1975, 'M', 892), +(110419, 'Damian', 1975, 'M', 891), +(110420, 'Jeff', 1975, 'M', 884), +(110421, 'Leon', 1975, 'M', 884), +(110422, 'Gilbert', 1975, 'M', 879), +(110423, 'Lonnie', 1975, 'M', 873), +(110424, 'Cedric', 1975, 'M', 871), +(110425, 'Franklin', 1975, 'M', 865), +(110426, 'Dana', 1975, 'M', 858), +(110427, 'Alvin', 1975, 'M', 855), +(110428, 'Bernard', 1975, 'M', 849), +(110429, 'Norman', 1975, 'M', 849), +(110430, 'Clint', 1975, 'M', 846), +(110431, 'Darin', 1975, 'M', 844), +(110432, 'Eduardo', 1975, 'M', 844), +(110433, 'Orlando', 1975, 'M', 842), +(110434, 'Daryl', 1975, 'M', 841), +(110435, 'Fred', 1975, 'M', 841), +(110436, 'Joey', 1975, 'M', 840), +(110437, 'Glen', 1975, 'M', 807), +(110438, 'Leroy', 1975, 'M', 800), +(110439, 'Johnathan', 1975, 'M', 798), +(110440, 'Roderick', 1975, 'M', 794), +(110441, 'Micah', 1975, 'M', 790), +(110442, 'Stacy', 1975, 'M', 783), +(110443, 'Luke', 1975, 'M', 777), +(110444, 'Jessie', 1975, 'M', 772), +(110445, 'Julio', 1975, 'M', 764), +(110446, 'Don', 1975, 'M', 763), +(110447, 'Sergio', 1975, 'M', 759), +(110448, 'Marco', 1975, 'M', 751), +(110449, 'Julian', 1975, 'M', 745), +(110450, 'Donnie', 1975, 'M', 738), +(110451, 'Gerardo', 1975, 'M', 738), +(110452, 'Jonathon', 1975, 'M', 736), +(110453, 'Kelvin', 1975, 'M', 729), +(110454, 'Ivan', 1975, 'M', 725), +(110455, 'Fredrick', 1975, 'M', 720), +(110456, 'Grant', 1975, 'M', 720), +(110457, 'Edgar', 1975, 'M', 717), +(110458, 'Alberto', 1975, 'M', 716), +(110459, 'Chadwick', 1975, 'M', 707), +(110460, 'Colin', 1975, 'M', 706), +(110461, 'Alfredo', 1975, 'M', 704), +(110462, 'Shaun', 1975, 'M', 703), +(110463, 'Spencer', 1975, 'M', 696), +(110464, 'Nelson', 1975, 'M', 690), +(110465, 'Rene', 1975, 'M', 689), +(110466, 'Vernon', 1975, 'M', 688), +(110467, 'Mike', 1975, 'M', 684), +(110468, 'Ross', 1975, 'M', 682), +(110469, 'Leslie', 1975, 'M', 681), +(110470, 'Cesar', 1975, 'M', 678), +(110471, 'Dominic', 1975, 'M', 677), +(110472, 'Darryl', 1975, 'M', 675), +(110473, 'Herbert', 1975, 'M', 674), +(110474, 'Dwight', 1975, 'M', 672), +(110475, 'Jarrod', 1975, 'M', 669), +(110476, 'Trent', 1975, 'M', 668), +(110477, 'Lamont', 1975, 'M', 660), +(110478, 'Lewis', 1975, 'M', 660), +(110479, 'Brendan', 1975, 'M', 656), +(110480, 'Neal', 1975, 'M', 647), +(110481, 'Kerry', 1975, 'M', 646), +(110482, 'Enrique', 1975, 'M', 645), +(110483, 'Arturo', 1975, 'M', 644), +(110484, 'Marlon', 1975, 'M', 640), +(110485, 'Tyson', 1975, 'M', 639), +(110486, 'Demetrius', 1975, 'M', 636), +(110487, 'Lloyd', 1975, 'M', 636), +(110488, 'Erick', 1975, 'M', 628), +(110489, 'Evan', 1975, 'M', 627), +(110490, 'Marshall', 1975, 'M', 622), +(110491, 'Antoine', 1975, 'M', 619), +(110492, 'Brock', 1975, 'M', 618), +(110493, 'Jayson', 1975, 'M', 615), +(110494, 'Ben', 1975, 'M', 606), +(110495, 'Darrin', 1975, 'M', 587), +(110496, 'Jackie', 1975, 'M', 587), +(110497, 'Gordon', 1975, 'M', 585), +(110498, 'Noah', 1975, 'M', 582), +(110499, 'Jimmie', 1975, 'M', 581), +(110500, 'Allan', 1975, 'M', 579), +(110501, 'Marty', 1975, 'M', 572), +(110502, 'Garrett', 1975, 'M', 567), +(110503, 'Stuart', 1975, 'M', 567), +(110504, 'Charlie', 1975, 'M', 565), +(110505, 'Scotty', 1975, 'M', 563), +(110506, 'Devin', 1975, 'M', 562), +(110507, 'Salvador', 1975, 'M', 561), +(110508, 'Lorenzo', 1975, 'M', 559), +(110509, 'Bradford', 1975, 'M', 556), +(110510, 'Gene', 1975, 'M', 555), +(110511, 'Freddie', 1975, 'M', 549), +(110512, 'Angelo', 1975, 'M', 546), +(110513, 'Ethan', 1975, 'M', 545), +(110514, 'Damien', 1975, 'M', 541), +(110515, 'Felix', 1975, 'M', 536), +(110516, 'Guy', 1975, 'M', 534), +(110517, 'Rickey', 1975, 'M', 533), +(110518, 'Israel', 1975, 'M', 530), +(110519, 'Johnnie', 1975, 'M', 524), +(110520, 'Blake', 1975, 'M', 523), +(110521, 'Floyd', 1975, 'M', 520), +(110522, 'Marcos', 1975, 'M', 520), +(110523, 'Leo', 1975, 'M', 517), +(110524, 'Nakia', 1975, 'M', 514), +(110525, 'Roland', 1975, 'M', 514), +(110526, 'Ernesto', 1975, 'M', 505), +(110527, 'Kent', 1975, 'M', 502), +(110528, 'Noel', 1975, 'M', 502), +(110529, 'Abraham', 1975, 'M', 501), +(110530, 'Rick', 1975, 'M', 500), +(110531, 'Carlton', 1975, 'M', 497), +(110532, 'Andres', 1975, 'M', 496), +(110533, 'Lester', 1975, 'M', 496), +(110534, 'Bryant', 1975, 'M', 494), +(110535, 'Gregg', 1975, 'M', 493), +(110536, 'Terrell', 1975, 'M', 492), +(110537, 'Perry', 1975, 'M', 489), +(110538, 'Quincy', 1975, 'M', 483), +(110539, 'Terence', 1975, 'M', 482), +(110540, 'Dewayne', 1975, 'M', 476), +(110541, 'Bryce', 1975, 'M', 473), +(110542, 'Rudy', 1975, 'M', 472), +(110543, 'Stacey', 1975, 'M', 472), +(110544, 'Jamal', 1975, 'M', 470), +(110545, 'Brady', 1975, 'M', 467), +(110546, 'Bret', 1975, 'M', 462), +(110547, 'Herman', 1975, 'M', 457), +(110548, 'Darnell', 1975, 'M', 456), +(110549, 'Josh', 1975, 'M', 456), +(110550, 'Ted', 1975, 'M', 456), +(110551, 'Dion', 1975, 'M', 454), +(110552, 'Dylan', 1975, 'M', 454), +(110553, 'Clay', 1975, 'M', 453), +(110554, 'Preston', 1975, 'M', 452), +(110555, 'Rodolfo', 1975, 'M', 451), +(110556, 'Dan', 1975, 'M', 448), +(110557, 'Nick', 1975, 'M', 446), +(110558, 'Jim', 1975, 'M', 441), +(110559, 'Frankie', 1975, 'M', 440), +(110560, 'Milton', 1975, 'M', 438), +(110561, 'Alfonso', 1975, 'M', 432), +(110562, 'Rolando', 1975, 'M', 423), +(110563, 'Austin', 1975, 'M', 421), +(110564, 'Sam', 1975, 'M', 420), +(110565, 'Ashley', 1975, 'M', 419), +(110566, 'Cornelius', 1975, 'M', 417), +(110567, 'Kareem', 1975, 'M', 417), +(110568, 'Max', 1975, 'M', 416), +(110569, 'Caleb', 1975, 'M', 415), +(110570, 'Quentin', 1975, 'M', 412), +(110571, 'Matt', 1975, 'M', 411), +(110572, 'Pablo', 1975, 'M', 411), +(110573, 'Robin', 1975, 'M', 411), +(110574, 'Bill', 1975, 'M', 409), +(110575, 'Courtney', 1975, 'M', 409), +(110576, 'Jamey', 1975, 'M', 403), +(110577, 'Clyde', 1975, 'M', 399), +(110578, 'Gerard', 1975, 'M', 399), +(110579, 'Jordan', 1975, 'M', 398), +(110580, 'Robbie', 1975, 'M', 398), +(110581, 'Salvatore', 1975, 'M', 398), +(110582, 'Levi', 1975, 'M', 394), +(110583, 'Abel', 1975, 'M', 382), +(110584, 'Drew', 1975, 'M', 377), +(110585, 'Felipe', 1975, 'M', 370), +(110586, 'Malcolm', 1975, 'M', 368), +(110587, 'Sheldon', 1975, 'M', 368), +(110588, 'Damion', 1975, 'M', 367), +(110589, 'Kendrick', 1975, 'M', 366), +(110590, 'Rusty', 1975, 'M', 364), +(110591, 'Myron', 1975, 'M', 363), +(110592, 'Cary', 1975, 'M', 359), +(110593, 'Bryon', 1975, 'M', 358), +(110594, 'Kenny', 1975, 'M', 358), +(110595, 'Oliver', 1975, 'M', 357), +(110596, 'Randolph', 1975, 'M', 356), +(110597, 'Chester', 1975, 'M', 355), +(110598, 'Sammy', 1975, 'M', 352), +(110599, 'Scottie', 1975, 'M', 352), +(110600, 'Colby', 1975, 'M', 351), +(110601, 'Everett', 1975, 'M', 351), +(110602, 'Roman', 1975, 'M', 351), +(110603, 'Guillermo', 1975, 'M', 350), +(110604, 'Cecil', 1975, 'M', 348), +(110605, 'Sidney', 1975, 'M', 347), +(110606, 'Dallas', 1975, 'M', 344), +(110607, 'Gilberto', 1975, 'M', 342), +(110608, 'Loren', 1975, 'M', 341), +(110609, 'Moses', 1975, 'M', 341), +(110610, 'Simon', 1975, 'M', 341), +(110611, 'Donovan', 1975, 'M', 339), +(110612, 'Eli', 1975, 'M', 338), +(110613, 'Harvey', 1975, 'M', 338), +(110614, 'Garry', 1975, 'M', 337), +(110615, 'Rocky', 1975, 'M', 335), +(110616, 'Sonny', 1975, 'M', 335), +(110617, 'Sherman', 1975, 'M', 334), +(110618, 'Jake', 1975, 'M', 333), +(110619, 'Alonzo', 1975, 'M', 331), +(110620, 'Guadalupe', 1975, 'M', 331), +(110621, 'Scot', 1975, 'M', 331), +(110622, 'Otis', 1975, 'M', 330), +(110623, 'Tim', 1975, 'M', 325), +(110624, 'Benny', 1975, 'M', 324), +(110625, 'Julius', 1975, 'M', 323), +(110626, 'Lamar', 1975, 'M', 323), +(110627, 'Mickey', 1975, 'M', 323), +(110628, 'Kris', 1975, 'M', 322), +(110629, 'Ty', 1975, 'M', 322), +(110630, 'Wendell', 1975, 'M', 322), +(110631, 'Arnold', 1975, 'M', 321), +(110632, 'Ira', 1975, 'M', 321), +(110633, 'Ron', 1975, 'M', 321), +(110634, 'Erin', 1975, 'M', 320), +(110635, 'Claude', 1975, 'M', 317), +(110636, 'Rogelio', 1975, 'M', 317), +(110637, 'Devon', 1975, 'M', 314), +(110638, 'Dante', 1975, 'M', 311), +(110639, 'Virgil', 1975, 'M', 311), +(110640, 'Demond', 1975, 'M', 310), +(110641, 'Xavier', 1975, 'M', 310), +(110642, 'Mason', 1975, 'M', 308), +(110643, 'Timmy', 1975, 'M', 308), +(110644, 'Gustavo', 1975, 'M', 307), +(110645, 'Nicolas', 1975, 'M', 307), +(110646, 'Darius', 1975, 'M', 306), +(110647, 'Ismael', 1975, 'M', 306), +(110648, 'Ramiro', 1975, 'M', 306), +(110649, 'Elias', 1975, 'M', 305), +(110650, 'Tom', 1975, 'M', 304), +(110651, 'Randal', 1975, 'M', 302), +(110652, 'Carey', 1975, 'M', 301), +(110653, 'Dexter', 1975, 'M', 299), +(110654, 'Kendall', 1975, 'M', 298), +(110655, 'Rex', 1975, 'M', 296), +(110656, 'Darrick', 1975, 'M', 295), +(110657, 'Owen', 1975, 'M', 295), +(110658, 'Wallace', 1975, 'M', 294), +(110659, 'Dominick', 1975, 'M', 292), +(110660, 'Earnest', 1975, 'M', 285), +(110661, 'Elton', 1975, 'M', 285), +(110662, 'Jess', 1975, 'M', 284), +(110663, 'Morgan', 1975, 'M', 283), +(110664, 'Hugh', 1975, 'M', 281), +(110665, 'Stephan', 1975, 'M', 281), +(110666, 'Forrest', 1975, 'M', 279), +(110667, 'Saul', 1975, 'M', 279), +(110668, 'Leonardo', 1975, 'M', 277), +(110669, 'Telly', 1975, 'M', 277), +(110670, 'Bart', 1975, 'M', 276), +(110671, 'Teddy', 1975, 'M', 276), +(110672, 'Jamison', 1975, 'M', 275), +(110673, 'Kristian', 1975, 'M', 274), +(110674, 'Derick', 1975, 'M', 271), +(110675, 'Donnell', 1975, 'M', 269), +(110676, 'Trenton', 1975, 'M', 269), +(110677, 'Tomas', 1975, 'M', 265), +(110678, 'Elijah', 1975, 'M', 263), +(110679, 'Bennie', 1975, 'M', 261), +(110680, 'Esteban', 1975, 'M', 261), +(110681, 'Monte', 1975, 'M', 261), +(110682, 'Shad', 1975, 'M', 261), +(110683, 'Gavin', 1975, 'M', 260), +(110684, 'Efrain', 1975, 'M', 258), +(110685, 'Pete', 1975, 'M', 258), +(110686, 'Jerrod', 1975, 'M', 257), +(110687, 'Erich', 1975, 'M', 256), +(110688, 'Kory', 1975, 'M', 255), +(110689, 'Reynaldo', 1975, 'M', 255), +(110690, 'Lionel', 1975, 'M', 252), +(110691, 'Thaddeus', 1975, 'M', 252), +(110692, 'Beau', 1975, 'M', 251), +(110693, 'Donny', 1975, 'M', 251), +(110694, 'Joaquin', 1975, 'M', 250), +(110695, 'Aron', 1975, 'M', 246), +(110696, 'Fabian', 1975, 'M', 246), +(110697, 'Lyle', 1975, 'M', 246), +(110698, 'Joesph', 1975, 'M', 245), +(110699, 'Marion', 1975, 'M', 245), +(110700, 'Emanuel', 1975, 'M', 244), +(110701, 'Blaine', 1975, 'M', 243), +(110702, 'Hugo', 1975, 'M', 242), +(110703, 'Jeffry', 1975, 'M', 241), +(110704, 'Morris', 1975, 'M', 241), +(110705, 'Alton', 1975, 'M', 240), +(110706, 'Deon', 1975, 'M', 240), +(110707, 'Desmond', 1975, 'M', 240), +(110708, 'Rodrick', 1975, 'M', 239), +(110709, 'Tobias', 1975, 'M', 238), +(110710, 'Jarrett', 1975, 'M', 237), +(110711, 'Anton', 1975, 'M', 236), +(110712, 'Luther', 1975, 'M', 236), +(110713, 'Stewart', 1975, 'M', 235), +(110714, 'Curt', 1975, 'M', 233), +(110715, 'Graham', 1975, 'M', 233), +(110716, 'Antwan', 1975, 'M', 231), +(110717, 'Reuben', 1975, 'M', 230), +(110718, 'Willard', 1975, 'M', 229), +(110719, 'Miles', 1975, 'M', 227), +(110720, 'Clark', 1975, 'M', 225), +(110721, 'Jennifer', 1975, 'M', 225), +(110722, 'Kenyatta', 1975, 'M', 225), +(110723, 'Reggie', 1975, 'M', 224), +(110724, 'Will', 1975, 'M', 224), +(110725, 'Dorian', 1975, 'M', 223), +(110726, 'Rico', 1975, 'M', 222), +(110727, 'Tracey', 1975, 'M', 222), +(110728, 'Jeromy', 1975, 'M', 220), +(110729, 'Emmanuel', 1975, 'M', 219), +(110730, 'Stefan', 1975, 'M', 219), +(110731, 'Avery', 1975, 'M', 218), +(110732, 'Darrel', 1975, 'M', 218), +(110733, 'Sylvester', 1975, 'M', 218), +(110734, 'Alexis', 1975, 'M', 217), +(110735, 'Wilson', 1975, 'M', 217), +(110736, 'Moises', 1975, 'M', 216), +(110737, 'Elliott', 1975, 'M', 214), +(110738, 'Jed', 1975, 'M', 214), +(110739, 'Elliot', 1975, 'M', 213), +(110740, 'Shon', 1975, 'M', 213), +(110741, 'Jarvis', 1975, 'M', 212), +(110742, 'Landon', 1975, 'M', 212), +(110743, 'Vicente', 1975, 'M', 211), +(110744, 'Aric', 1975, 'M', 210), +(110745, 'Brant', 1975, 'M', 210), +(110746, 'Chuck', 1975, 'M', 210), +(110747, 'Jerald', 1975, 'M', 210), +(110748, 'Edmund', 1975, 'M', 209), +(110749, 'Grady', 1975, 'M', 209), +(110750, 'Branden', 1975, 'M', 205), +(110751, 'Santiago', 1975, 'M', 205), +(110752, 'Amos', 1975, 'M', 204), +(110753, 'Leland', 1975, 'M', 203), +(110754, 'Willis', 1975, 'M', 203), +(110755, 'Archie', 1975, 'M', 202), +(110756, 'Nolan', 1975, 'M', 201), +(110757, 'Denny', 1975, 'M', 200), +(110758, 'Roosevelt', 1975, 'M', 200), +(110759, 'Aubrey', 1975, 'M', 199), +(110760, 'Robby', 1975, 'M', 199), +(110761, 'Tory', 1975, 'M', 199), +(110762, 'Emilio', 1975, 'M', 197), +(110763, 'Hans', 1975, 'M', 197), +(110764, 'Collin', 1975, 'M', 196), +(110765, 'Shelby', 1975, 'M', 196), +(110766, 'Humberto', 1975, 'M', 195), +(110767, 'Daren', 1975, 'M', 194), +(110768, 'Freddy', 1975, 'M', 194), +(110769, 'Jean', 1975, 'M', 193), +(110770, 'Lynn', 1975, 'M', 193), +(110771, 'Tommie', 1975, 'M', 193), +(110772, 'Ignacio', 1975, 'M', 190), +(110773, 'Quinton', 1975, 'M', 190), +(110774, 'Santos', 1975, 'M', 190), +(110775, 'Rudolph', 1975, 'M', 188), +(110776, 'Wilfredo', 1975, 'M', 188), +(110777, 'Brendon', 1975, 'M', 187), +(110778, 'Elmer', 1975, 'M', 187), +(110779, 'Dave', 1975, 'M', 186), +(110780, 'Zachariah', 1975, 'M', 186), +(110781, 'Jamel', 1975, 'M', 185), +(110782, 'Taylor', 1975, 'M', 185), +(110783, 'Marcel', 1975, 'M', 184), +(110784, 'Brain', 1975, 'M', 183), +(110785, 'Galen', 1975, 'M', 183), +(110786, 'Kurtis', 1975, 'M', 183), +(110787, 'Noe', 1975, 'M', 183), +(110788, 'Shayne', 1975, 'M', 183), +(110789, 'Sterling', 1975, 'M', 183), +(110790, 'Monty', 1975, 'M', 182), +(110791, 'Raphael', 1975, 'M', 181), +(110792, 'Jasen', 1975, 'M', 180), +(110793, 'Torrey', 1975, 'M', 180), +(110794, 'Wyatt', 1975, 'M', 180), +(110795, 'Buddy', 1975, 'M', 179), +(110796, 'Tremayne', 1975, 'M', 179), +(110797, 'Chance', 1975, 'M', 178), +(110798, 'Laurence', 1975, 'M', 178), +(110799, 'Andrea', 1975, 'M', 177), +(110800, 'Jefferson', 1975, 'M', 177), +(110801, 'Jerod', 1975, 'M', 177), +(110802, 'Ariel', 1975, 'M', 176), +(110803, 'Carlo', 1975, 'M', 176), +(110804, 'Kristofer', 1975, 'M', 175), +(110805, 'Solomon', 1975, 'M', 173), +(110806, 'Domingo', 1975, 'M', 172), +(110807, 'Tad', 1975, 'M', 170), +(110808, 'Benji', 1975, 'M', 169), +(110809, 'Jonas', 1975, 'M', 169), +(110810, 'Arron', 1975, 'M', 168), +(110811, 'Bob', 1975, 'M', 168), +(110812, 'Shelton', 1975, 'M', 168), +(110813, 'Deandre', 1975, 'M', 167), +(110814, 'Delbert', 1975, 'M', 167), +(110815, 'Vance', 1975, 'M', 166), +(110816, 'Dewey', 1975, 'M', 165), +(110817, 'Reid', 1975, 'M', 165), +(110818, 'Jamar', 1975, 'M', 164), +(110819, 'Kim', 1975, 'M', 164), +(110820, 'Carter', 1975, 'M', 163), +(110821, 'Deshawn', 1975, 'M', 163), +(110822, 'Mack', 1975, 'M', 163), +(110823, 'Nathanael', 1975, 'M', 163), +(110824, 'Bert', 1975, 'M', 162), +(110825, 'Conrad', 1975, 'M', 162), +(110826, 'Jarod', 1975, 'M', 162), +(110827, 'Jeramy', 1975, 'M', 162), +(110828, 'Tavares', 1975, 'M', 162), +(110829, 'Bradly', 1975, 'M', 161), +(110830, 'Ali', 1975, 'M', 160), +(110831, 'Dane', 1975, 'M', 160), +(110832, 'Jeremie', 1975, 'M', 160), +(110833, 'Rickie', 1975, 'M', 160), +(110834, 'Rory', 1975, 'M', 160), +(110835, 'Wilbert', 1975, 'M', 160), +(110836, 'Winston', 1975, 'M', 160), +(110837, 'Dirk', 1975, 'M', 159), +(110838, 'Hubert', 1975, 'M', 159), +(110839, 'Josue', 1975, 'M', 159), +(110840, 'Louie', 1975, 'M', 159), +(110841, 'Mauricio', 1975, 'M', 159), +(110842, 'Cole', 1975, 'M', 158), +(110843, 'Korey', 1975, 'M', 158), +(110844, 'Abdul', 1975, 'M', 157), +(110845, 'Johnathon', 1975, 'M', 157), +(110846, 'Ervin', 1975, 'M', 156), +(110847, 'Marlin', 1975, 'M', 156), +(110848, 'Marquis', 1975, 'M', 156), +(110849, 'Stevie', 1975, 'M', 156), +(110850, 'Thad', 1975, 'M', 156), +(110851, 'Alphonso', 1975, 'M', 155), +(110852, 'Ken', 1975, 'M', 154), +(110853, 'Barrett', 1975, 'M', 153), +(110854, 'Pierre', 1975, 'M', 152), +(110855, 'Quinn', 1975, 'M', 152), +(110856, 'Van', 1975, 'M', 152), +(110857, 'Benito', 1975, 'M', 151), +(110858, 'Blair', 1975, 'M', 151), +(110859, 'Rodrigo', 1975, 'M', 151), +(110860, 'Cleveland', 1975, 'M', 150), +(110861, 'Giovanni', 1975, 'M', 150), +(110862, 'Antione', 1975, 'M', 148), +(110863, 'Dusty', 1975, 'M', 148), +(110864, 'Lincoln', 1975, 'M', 148), +(110865, 'Theron', 1975, 'M', 148), +(110866, 'Diego', 1975, 'M', 147), +(110867, 'Garland', 1975, 'M', 147), +(110868, 'Rufus', 1975, 'M', 147), +(110869, 'Vaughn', 1975, 'M', 147), +(110870, 'Horace', 1975, 'M', 146), +(110871, 'Lane', 1975, 'M', 146), +(110872, 'Royce', 1975, 'M', 146), +(110873, 'Brenton', 1975, 'M', 145), +(110874, 'Ezra', 1975, 'M', 145), +(110875, 'Heriberto', 1975, 'M', 145), +(110876, 'Kirby', 1975, 'M', 145), +(110877, 'Rigoberto', 1975, 'M', 145), +(110878, 'Darian', 1975, 'M', 143), +(110879, 'Donte', 1975, 'M', 143), +(110880, 'Jeramie', 1975, 'M', 143), +(110881, 'Kenyon', 1975, 'M', 143), +(110882, 'Tyron', 1975, 'M', 143), +(110883, 'Michel', 1975, 'M', 142), +(110884, 'Percy', 1975, 'M', 142), +(110885, 'Rhett', 1975, 'M', 142), +(110886, 'Harley', 1975, 'M', 141), +(110887, 'Jackson', 1975, 'M', 141), +(110888, 'Lenny', 1975, 'M', 141), +(110889, 'Adan', 1975, 'M', 139), +(110890, 'Danial', 1975, 'M', 139), +(110891, 'Alvaro', 1975, 'M', 138), +(110892, 'Cedrick', 1975, 'M', 138), +(110893, 'Ellis', 1975, 'M', 138), +(110894, 'Nickolas', 1975, 'M', 138), +(110895, 'Boyd', 1975, 'M', 137), +(110896, 'Cornell', 1975, 'M', 137), +(110897, 'Garth', 1975, 'M', 137), +(110898, 'Ahmad', 1975, 'M', 135), +(110899, 'Chet', 1975, 'M', 135), +(110900, 'Isaiah', 1975, 'M', 135), +(110901, 'Jammie', 1975, 'M', 135), +(110902, 'Osvaldo', 1975, 'M', 135), +(110903, 'Tyree', 1975, 'M', 135), +(110904, 'Al', 1975, 'M', 134), +(110905, 'Edmond', 1975, 'M', 134), +(110906, 'Adolfo', 1975, 'M', 132), +(110907, 'Agustin', 1975, 'M', 132), +(110908, 'Jonah', 1975, 'M', 132), +(110909, 'Mikel', 1975, 'M', 132), +(110910, 'Judd', 1975, 'M', 131), +(110911, 'Kasey', 1975, 'M', 131), +(110912, 'Lowell', 1975, 'M', 131), +(110913, 'Ernie', 1975, 'M', 130), +(110914, 'Markus', 1975, 'M', 130), +(110915, 'Nigel', 1975, 'M', 130), +(110916, 'Reed', 1975, 'M', 130), +(110917, 'Daron', 1975, 'M', 129), +(110918, 'Kenya', 1975, 'M', 129), +(110919, 'Rodger', 1975, 'M', 129), +(110920, 'Ronny', 1975, 'M', 129), +(110921, 'Brice', 1975, 'M', 128), +(110922, 'Issac', 1975, 'M', 128), +(110923, 'Chase', 1975, 'M', 127), +(110924, 'Nicky', 1975, 'M', 127), +(110925, 'Octavio', 1975, 'M', 127), +(110926, 'Russel', 1975, 'M', 127), +(110927, 'Sebastian', 1975, 'M', 127), +(110928, 'Tobin', 1975, 'M', 127), +(110929, 'Elbert', 1975, 'M', 126), +(110930, 'Judson', 1975, 'M', 126), +(110931, 'Zane', 1975, 'M', 126), +(110932, 'Darwin', 1975, 'M', 125), +(110933, 'Doug', 1975, 'M', 125), +(110934, 'Giuseppe', 1975, 'M', 125), +(110935, 'Keenan', 1975, 'M', 125), +(110936, 'Doyle', 1975, 'M', 124), +(110937, 'Emmett', 1975, 'M', 124), +(110938, 'Carson', 1975, 'M', 122), +(110939, 'Denis', 1975, 'M', 122), +(110940, 'Denver', 1975, 'M', 122), +(110941, 'Leonel', 1975, 'M', 122), +(110942, 'Malik', 1975, 'M', 122), +(110943, 'Terrill', 1975, 'M', 122), +(110944, 'Wilbur', 1975, 'M', 122), +(110945, 'Deron', 1975, 'M', 121), +(110946, 'Chauncey', 1975, 'M', 120), +(110947, 'Rashad', 1975, 'M', 119), +(110948, 'Jasper', 1975, 'M', 118), +(110949, 'Antony', 1975, 'M', 117), +(110950, 'Dameon', 1975, 'M', 117), +(110951, 'Glendon', 1975, 'M', 117), +(110952, 'Jacques', 1975, 'M', 117), +(110953, 'Kip', 1975, 'M', 117), +(110954, 'Sedrick', 1975, 'M', 117), +(110955, 'Vito', 1975, 'M', 117), +(110956, 'Waylon', 1975, 'M', 116), +(110957, 'Dax', 1975, 'M', 115), +(110958, 'Elvin', 1975, 'M', 115), +(110959, 'Francesco', 1975, 'M', 115), +(110960, 'Rocco', 1975, 'M', 115), +(110961, 'Brooks', 1975, 'M', 114), +(110962, 'Carmen', 1975, 'M', 114), +(110963, 'Federico', 1975, 'M', 114), +(110964, 'Gerry', 1975, 'M', 114), +(110965, 'Jeremey', 1975, 'M', 114), +(110966, 'Richie', 1975, 'M', 114), +(110967, 'Trinity', 1975, 'M', 113), +(110968, 'Tristan', 1975, 'M', 113), +(110969, 'Fidel', 1975, 'M', 112), +(110970, 'Garrick', 1975, 'M', 112), +(110971, 'Homer', 1975, 'M', 112), +(110972, 'Michelle', 1975, 'M', 112), +(110973, 'Titus', 1975, 'M', 112), +(110974, 'Bernardo', 1975, 'M', 111), +(110975, 'Harrison', 1975, 'M', 111), +(110976, 'Jarred', 1975, 'M', 111), +(110977, 'Shea', 1975, 'M', 111), +(110978, 'Silas', 1975, 'M', 111), +(110979, 'Edwardo', 1975, 'M', 110), +(110980, 'Elvis', 1975, 'M', 110), +(110981, 'Kraig', 1975, 'M', 110), +(110982, 'Torrance', 1975, 'M', 110), +(110983, 'Eloy', 1975, 'M', 109), +(110984, 'Kristoffer', 1975, 'M', 109), +(110985, 'Leif', 1975, 'M', 109), +(110986, 'Trey', 1975, 'M', 109), +(110987, 'Cordell', 1975, 'M', 108), +(110988, 'Hunter', 1975, 'M', 108), +(110989, 'Jayme', 1975, 'M', 108), +(110990, 'Tarik', 1975, 'M', 108), +(110991, 'Ulysses', 1975, 'M', 108), +(110992, 'Brannon', 1975, 'M', 107), +(110993, 'Josef', 1975, 'M', 107), +(110994, 'Jude', 1975, 'M', 107), +(110995, 'Riley', 1975, 'M', 107), +(110996, 'Jade', 1975, 'M', 106), +(110997, 'Taurus', 1975, 'M', 106), +(110998, 'Ari', 1975, 'M', 105), +(110999, 'Mac', 1975, 'M', 105), +(111000, 'Randell', 1975, 'M', 105), +(111001, 'August', 1975, 'M', 104), +(111002, 'Darron', 1975, 'M', 104), +(111003, 'Gino', 1975, 'M', 104), +(111004, 'Rob', 1975, 'M', 104), +(111005, 'Brandy', 1975, 'M', 103), +(111006, 'Chadrick', 1975, 'M', 103), +(111007, 'Marques', 1975, 'M', 103), +(111008, 'Maxwell', 1975, 'M', 103), +(111009, 'Antwon', 1975, 'M', 102), +(111010, 'Brennan', 1975, 'M', 102), +(111011, 'Coy', 1975, 'M', 102), +(111012, 'Eldon', 1975, 'M', 102), +(111013, 'Hiram', 1975, 'M', 102), +(111014, 'Jevon', 1975, 'M', 102), +(111015, 'Kelley', 1975, 'M', 101), +(111016, 'Lashawn', 1975, 'M', 101), +(111017, 'Lonny', 1975, 'M', 101), +(111018, 'Billie', 1975, 'M', 100), +(111019, 'Sammie', 1975, 'M', 100), +(111020, 'Woodrow', 1975, 'M', 100), +(111021, 'Jennifer', 1976, 'F', 59479), +(111022, 'Amy', 1976, 'F', 31341), +(111023, 'Melissa', 1976, 'F', 25093), +(111024, 'Heather', 1976, 'F', 24202), +(111025, 'Angela', 1976, 'F', 22042), +(111026, 'Michelle', 1976, 'F', 19554), +(111027, 'Kimberly', 1976, 'F', 18963), +(111028, 'Jessica', 1976, 'F', 18373), +(111029, 'Lisa', 1976, 'F', 17349), +(111030, 'Amanda', 1976, 'F', 15591), +(111031, 'Stephanie', 1976, 'F', 15174), +(111032, 'Rebecca', 1976, 'F', 14491), +(111033, 'Nicole', 1976, 'F', 14456), +(111034, 'Christina', 1976, 'F', 14034), +(111035, 'Sarah', 1976, 'F', 13992), +(111036, 'Elizabeth', 1976, 'F', 13551), +(111037, 'Shannon', 1976, 'F', 13371), +(111038, 'Jamie', 1976, 'F', 12539), +(111039, 'Kelly', 1976, 'F', 11791), +(111040, 'Laura', 1976, 'F', 11249), +(111041, 'Julie', 1976, 'F', 10843), +(111042, 'Mary', 1976, 'F', 10326), +(111043, 'Rachel', 1976, 'F', 8458), +(111044, 'Erin', 1976, 'F', 8385), +(111045, 'Andrea', 1976, 'F', 8358), +(111046, 'Christine', 1976, 'F', 8109), +(111047, 'Sara', 1976, 'F', 8022), +(111048, 'Carrie', 1976, 'F', 7994), +(111049, 'Jaime', 1976, 'F', 7836), +(111050, 'April', 1976, 'F', 7763), +(111051, 'Karen', 1976, 'F', 7502), +(111052, 'Tiffany', 1976, 'F', 7486), +(111053, 'Danielle', 1976, 'F', 7363), +(111054, 'Maria', 1976, 'F', 7337), +(111055, 'Dawn', 1976, 'F', 7049), +(111056, 'Crystal', 1976, 'F', 6946), +(111057, 'Tracy', 1976, 'F', 6824), +(111058, 'Stacy', 1976, 'F', 6522), +(111059, 'Wendy', 1976, 'F', 6468), +(111060, 'Susan', 1976, 'F', 6409), +(111061, 'Tammy', 1976, 'F', 6228), +(111062, 'Tara', 1976, 'F', 6022), +(111063, 'Patricia', 1976, 'F', 6019), +(111064, 'Cynthia', 1976, 'F', 6014), +(111065, 'Monica', 1976, 'F', 5976), +(111066, 'Misty', 1976, 'F', 5907), +(111067, 'Lori', 1976, 'F', 5846), +(111068, 'Tina', 1976, 'F', 5748), +(111069, 'Amber', 1976, 'F', 5648), +(111070, 'Emily', 1976, 'F', 5546), +(111071, 'Stacey', 1976, 'F', 5391), +(111072, 'Jill', 1976, 'F', 5282), +(111073, 'Melanie', 1976, 'F', 5240), +(111074, 'Erica', 1976, 'F', 5234), +(111075, 'Brandy', 1976, 'F', 5233), +(111076, 'Holly', 1976, 'F', 5177), +(111077, 'Katherine', 1976, 'F', 5055), +(111078, 'Tonya', 1976, 'F', 4964), +(111079, 'Sandra', 1976, 'F', 4861), +(111080, 'Christy', 1976, 'F', 4850), +(111081, 'Tanya', 1976, 'F', 4820), +(111082, 'Megan', 1976, 'F', 4465), +(111083, 'Michele', 1976, 'F', 4443), +(111084, 'Dana', 1976, 'F', 4410), +(111085, 'Leslie', 1976, 'F', 4310), +(111086, 'Teresa', 1976, 'F', 4057), +(111087, 'Allison', 1976, 'F', 4031), +(111088, 'Veronica', 1976, 'F', 4022), +(111089, 'Denise', 1976, 'F', 3990), +(111090, 'Heidi', 1976, 'F', 3891), +(111091, 'Alicia', 1976, 'F', 3792), +(111092, 'Catherine', 1976, 'F', 3782), +(111093, 'Kristen', 1976, 'F', 3655), +(111094, 'Kristin', 1976, 'F', 3628), +(111095, 'Robin', 1976, 'F', 3622), +(111096, 'Courtney', 1976, 'F', 3620), +(111097, 'Brenda', 1976, 'F', 3587), +(111098, 'Anna', 1976, 'F', 3582), +(111099, 'Brandi', 1976, 'F', 3535), +(111100, 'Natalie', 1976, 'F', 3504), +(111101, 'Sharon', 1976, 'F', 3455), +(111102, 'Kathleen', 1976, 'F', 3408), +(111103, 'Valerie', 1976, 'F', 3386), +(111104, 'Pamela', 1976, 'F', 3367), +(111105, 'Samantha', 1976, 'F', 3350), +(111106, 'Renee', 1976, 'F', 3318), +(111107, 'Nancy', 1976, 'F', 3281), +(111108, 'Kathryn', 1976, 'F', 3262), +(111109, 'Theresa', 1976, 'F', 3174), +(111110, 'Linda', 1976, 'F', 3142), +(111111, 'Tamara', 1976, 'F', 3090), +(111112, 'Victoria', 1976, 'F', 3037), +(111113, 'Donna', 1976, 'F', 3032), +(111114, 'Gina', 1976, 'F', 3010), +(111115, 'Melinda', 1976, 'F', 2995), +(111116, 'Deborah', 1976, 'F', 2993), +(111117, 'Kristina', 1976, 'F', 2973), +(111118, 'Barbara', 1976, 'F', 2970), +(111119, 'Jacqueline', 1976, 'F', 2948), +(111120, 'Mandy', 1976, 'F', 2925), +(111121, 'Diana', 1976, 'F', 2757), +(111122, 'Jodi', 1976, 'F', 2673), +(111123, 'Margaret', 1976, 'F', 2666), +(111124, 'Kristi', 1976, 'F', 2519), +(111125, 'Cheryl', 1976, 'F', 2490), +(111126, 'Vanessa', 1976, 'F', 2463), +(111127, 'Rhonda', 1976, 'F', 2461), +(111128, 'Ann', 1976, 'F', 2435), +(111129, 'Jenny', 1976, 'F', 2427), +(111130, 'Katrina', 1976, 'F', 2366), +(111131, 'Sherry', 1976, 'F', 2358), +(111132, 'Erika', 1976, 'F', 2339), +(111133, 'Kristy', 1976, 'F', 2327), +(111134, 'Beth', 1976, 'F', 2307), +(111135, 'Ashley', 1976, 'F', 2292), +(111136, 'Yolanda', 1976, 'F', 2275), +(111137, 'Regina', 1976, 'F', 2273), +(111138, 'Alison', 1976, 'F', 2272), +(111139, 'Leah', 1976, 'F', 2272), +(111140, 'Cindy', 1976, 'F', 2261), +(111141, 'Paula', 1976, 'F', 2252), +(111142, 'Carla', 1976, 'F', 2250), +(111143, 'Aimee', 1976, 'F', 2248), +(111144, 'Anne', 1976, 'F', 2224), +(111145, 'Lauren', 1976, 'F', 2222), +(111146, 'Suzanne', 1976, 'F', 2200), +(111147, 'Kari', 1976, 'F', 2182), +(111148, 'Carolyn', 1976, 'F', 2116), +(111149, 'Deanna', 1976, 'F', 2116), +(111150, 'Felicia', 1976, 'F', 2096), +(111151, 'Natasha', 1976, 'F', 2094), +(111152, 'Joy', 1976, 'F', 2077), +(111153, 'Lindsay', 1976, 'F', 2071), +(111154, 'Debra', 1976, 'F', 2070), +(111155, 'Latoya', 1976, 'F', 2051), +(111156, 'Colleen', 1976, 'F', 2043), +(111157, 'Laurie', 1976, 'F', 2038), +(111158, 'Kara', 1976, 'F', 2036), +(111159, 'Christie', 1976, 'F', 2010), +(111160, 'Tracey', 1976, 'F', 1941), +(111161, 'Julia', 1976, 'F', 1916), +(111162, 'Janet', 1976, 'F', 1879), +(111163, 'Sheila', 1976, 'F', 1872), +(111164, 'Tamika', 1976, 'F', 1867), +(111165, 'Shelly', 1976, 'F', 1861), +(111166, 'Sabrina', 1976, 'F', 1857), +(111167, 'Kelli', 1976, 'F', 1820), +(111168, 'Nichole', 1976, 'F', 1768), +(111169, 'Marie', 1976, 'F', 1764), +(111170, 'Molly', 1976, 'F', 1731), +(111171, 'Stacie', 1976, 'F', 1725), +(111172, 'Joanna', 1976, 'F', 1718), +(111173, 'Angie', 1976, 'F', 1708), +(111174, 'Bridget', 1976, 'F', 1708), +(111175, 'Diane', 1976, 'F', 1693), +(111176, 'Angel', 1976, 'F', 1642), +(111177, 'Kendra', 1976, 'F', 1630), +(111178, 'Kristie', 1976, 'F', 1624), +(111179, 'Carmen', 1976, 'F', 1615), +(111180, 'Virginia', 1976, 'F', 1615), +(111181, 'Martha', 1976, 'F', 1599), +(111182, 'Krista', 1976, 'F', 1594), +(111183, 'Katie', 1976, 'F', 1591), +(111184, 'Jody', 1976, 'F', 1567), +(111185, 'Sonia', 1976, 'F', 1552), +(111186, 'Sonya', 1976, 'F', 1523), +(111187, 'Shawna', 1976, 'F', 1510), +(111188, 'Anita', 1976, 'F', 1509), +(111189, 'Kerri', 1976, 'F', 1508), +(111190, 'Monique', 1976, 'F', 1497), +(111191, 'Carol', 1976, 'F', 1494), +(111192, 'Meredith', 1976, 'F', 1468), +(111193, 'Keri', 1976, 'F', 1466), +(111194, 'Brooke', 1976, 'F', 1465), +(111195, 'Trisha', 1976, 'F', 1465), +(111196, 'Kerry', 1976, 'F', 1450), +(111197, 'Rachael', 1976, 'F', 1438), +(111198, 'Adrienne', 1976, 'F', 1431), +(111199, 'Robyn', 1976, 'F', 1430), +(111200, 'Tricia', 1976, 'F', 1429), +(111201, 'Traci', 1976, 'F', 1421), +(111202, 'Claudia', 1976, 'F', 1409), +(111203, 'Toni', 1976, 'F', 1399), +(111204, 'Terri', 1976, 'F', 1388), +(111205, 'Latasha', 1976, 'F', 1384), +(111206, 'Kathy', 1976, 'F', 1382), +(111207, 'Kristine', 1976, 'F', 1359), +(111208, 'Cassandra', 1976, 'F', 1356), +(111209, 'Shana', 1976, 'F', 1323), +(111210, 'Connie', 1976, 'F', 1314), +(111211, 'Annette', 1976, 'F', 1299), +(111212, 'Bethany', 1976, 'F', 1293), +(111213, 'Yvonne', 1976, 'F', 1290), +(111214, 'Shelley', 1976, 'F', 1275), +(111215, 'Kim', 1976, 'F', 1249), +(111216, 'Olivia', 1976, 'F', 1238), +(111217, 'Caroline', 1976, 'F', 1225), +(111218, 'Gretchen', 1976, 'F', 1224), +(111219, 'Melody', 1976, 'F', 1215), +(111220, 'Candace', 1976, 'F', 1212), +(111221, 'Angelica', 1976, 'F', 1211), +(111222, 'Candice', 1976, 'F', 1209), +(111223, 'Bonnie', 1976, 'F', 1205), +(111224, 'Charity', 1976, 'F', 1203), +(111225, 'Ruth', 1976, 'F', 1198), +(111226, 'Becky', 1976, 'F', 1196), +(111227, 'Rebekah', 1976, 'F', 1187), +(111228, 'Gloria', 1976, 'F', 1174), +(111229, 'Kellie', 1976, 'F', 1174), +(111230, 'Mindy', 1976, 'F', 1167), +(111231, 'Ana', 1976, 'F', 1163), +(111232, 'Rosa', 1976, 'F', 1158), +(111233, 'Janice', 1976, 'F', 1156), +(111234, 'Hope', 1976, 'F', 1151), +(111235, 'Lynn', 1976, 'F', 1148), +(111236, 'Sherri', 1976, 'F', 1145), +(111237, 'Jeanette', 1976, 'F', 1130), +(111238, 'Tasha', 1976, 'F', 1106), +(111239, 'Cara', 1976, 'F', 1104), +(111240, 'Kelley', 1976, 'F', 1100), +(111241, 'Sheri', 1976, 'F', 1094), +(111242, 'Marisa', 1976, 'F', 1092), +(111243, 'Latonya', 1976, 'F', 1086), +(111244, 'Amie', 1976, 'F', 1084), +(111245, 'Ginger', 1976, 'F', 1081), +(111246, 'Charlene', 1976, 'F', 1080), +(111247, 'Summer', 1976, 'F', 1072), +(111248, 'Sylvia', 1976, 'F', 1056), +(111249, 'Bobbie', 1976, 'F', 1049), +(111250, 'Belinda', 1976, 'F', 1048), +(111251, 'Miranda', 1976, 'F', 1044), +(111252, 'Leticia', 1976, 'F', 1036), +(111253, 'Keisha', 1976, 'F', 1027), +(111254, 'Tracie', 1976, 'F', 1021), +(111255, 'Nikki', 1976, 'F', 1009), +(111256, 'Tabitha', 1976, 'F', 1003), +(111257, 'Yvette', 1976, 'F', 1001), +(111258, 'Billie', 1976, 'F', 1000), +(111259, 'Audrey', 1976, 'F', 990), +(111260, 'Dorothy', 1976, 'F', 983), +(111261, 'Jami', 1976, 'F', 980), +(111262, 'Karla', 1976, 'F', 977), +(111263, 'Cristina', 1976, 'F', 973), +(111264, 'Rose', 1976, 'F', 970), +(111265, 'Charlotte', 1976, 'F', 956), +(111266, 'Alice', 1976, 'F', 954), +(111267, 'Frances', 1976, 'F', 948), +(111268, 'Joyce', 1976, 'F', 948), +(111269, 'Joanne', 1976, 'F', 947), +(111270, 'Ellen', 1976, 'F', 944), +(111271, 'Helen', 1976, 'F', 941), +(111272, 'Chasity', 1976, 'F', 936), +(111273, 'Christa', 1976, 'F', 936), +(111274, 'Beverly', 1976, 'F', 932), +(111275, 'Alisha', 1976, 'F', 931), +(111276, 'Autumn', 1976, 'F', 930), +(111277, 'Leigh', 1976, 'F', 930), +(111278, 'Naomi', 1976, 'F', 924), +(111279, 'Norma', 1976, 'F', 924), +(111280, 'Tameka', 1976, 'F', 916), +(111281, 'Lakisha', 1976, 'F', 914), +(111282, 'Betty', 1976, 'F', 909), +(111283, 'Marsha', 1976, 'F', 905), +(111284, 'Sally', 1976, 'F', 899), +(111285, 'Ebony', 1976, 'F', 897), +(111286, 'Trina', 1976, 'F', 896), +(111287, 'Lindsey', 1976, 'F', 873), +(111288, 'Staci', 1976, 'F', 870), +(111289, 'Penny', 1976, 'F', 869), +(111290, 'Meghan', 1976, 'F', 865), +(111291, 'Rita', 1976, 'F', 859), +(111292, 'Wanda', 1976, 'F', 855), +(111293, 'Juanita', 1976, 'F', 846), +(111294, 'Jodie', 1976, 'F', 839), +(111295, 'Desiree', 1976, 'F', 838), +(111296, 'Farrah', 1976, 'F', 838), +(111297, 'Shirley', 1976, 'F', 834), +(111298, 'Abigail', 1976, 'F', 832), +(111299, 'Darlene', 1976, 'F', 829), +(111300, 'Evelyn', 1976, 'F', 821), +(111301, 'Casey', 1976, 'F', 811), +(111302, 'Jean', 1976, 'F', 811), +(111303, 'Maureen', 1976, 'F', 810), +(111304, 'Tonia', 1976, 'F', 809), +(111305, 'Cathy', 1976, 'F', 808), +(111306, 'Jennie', 1976, 'F', 802), +(111307, 'Joann', 1976, 'F', 801), +(111308, 'Jana', 1976, 'F', 798), +(111309, 'Raquel', 1976, 'F', 798), +(111310, 'Priscilla', 1976, 'F', 790), +(111311, 'Sandy', 1976, 'F', 785), +(111312, 'Elaine', 1976, 'F', 781), +(111313, 'Christi', 1976, 'F', 775), +(111314, 'Lara', 1976, 'F', 775), +(111315, 'Eva', 1976, 'F', 773), +(111316, 'Jenifer', 1976, 'F', 773), +(111317, 'Shawn', 1976, 'F', 773), +(111318, 'Irene', 1976, 'F', 772), +(111319, 'Rachelle', 1976, 'F', 770), +(111320, 'Tennille', 1976, 'F', 769), +(111321, 'Jolene', 1976, 'F', 765), +(111322, 'Janelle', 1976, 'F', 760), +(111323, 'Peggy', 1976, 'F', 759), +(111324, 'Marcia', 1976, 'F', 755), +(111325, 'Lesley', 1976, 'F', 753), +(111326, 'Chastity', 1976, 'F', 747), +(111327, 'Judith', 1976, 'F', 747), +(111328, 'Latisha', 1976, 'F', 747), +(111329, 'Lydia', 1976, 'F', 744), +(111330, 'Stefanie', 1976, 'F', 744), +(111331, 'Rochelle', 1976, 'F', 739), +(111332, 'Jackie', 1976, 'F', 732), +(111333, 'Tania', 1976, 'F', 732), +(111334, 'Gwendolyn', 1976, 'F', 731), +(111335, 'Kimberley', 1976, 'F', 720), +(111336, 'Kenya', 1976, 'F', 714), +(111337, 'Kirsten', 1976, 'F', 714), +(111338, 'Tami', 1976, 'F', 710), +(111339, 'Debbie', 1976, 'F', 700), +(111340, 'Jane', 1976, 'F', 698), +(111341, 'Vicki', 1976, 'F', 698), +(111342, 'Carey', 1976, 'F', 693), +(111343, 'Alexis', 1976, 'F', 692), +(111344, 'Alexandra', 1976, 'F', 690), +(111345, 'Shanna', 1976, 'F', 690), +(111346, 'Chandra', 1976, 'F', 682), +(111347, 'Alyssa', 1976, 'F', 681), +(111348, 'Lakeisha', 1976, 'F', 680), +(111349, 'Roxanne', 1976, 'F', 679), +(111350, 'Adriana', 1976, 'F', 678), +(111351, 'Brandie', 1976, 'F', 678), +(111352, 'Dena', 1976, 'F', 677), +(111353, 'Loretta', 1976, 'F', 671), +(111354, 'Angelina', 1976, 'F', 662), +(111355, 'Teri', 1976, 'F', 661), +(111356, 'Esther', 1976, 'F', 658), +(111357, 'Bobbi', 1976, 'F', 656), +(111358, 'Lora', 1976, 'F', 656), +(111359, 'Tanisha', 1976, 'F', 655), +(111360, 'Tammie', 1976, 'F', 654), +(111361, 'Marilyn', 1976, 'F', 648), +(111362, 'Faith', 1976, 'F', 637), +(111363, 'Mandi', 1976, 'F', 634), +(111364, 'Johanna', 1976, 'F', 620), +(111365, 'Miriam', 1976, 'F', 618), +(111366, 'Tabatha', 1976, 'F', 618), +(111367, 'Marissa', 1976, 'F', 617), +(111368, 'Roberta', 1976, 'F', 616), +(111369, 'Judy', 1976, 'F', 615), +(111370, 'Betsy', 1976, 'F', 613), +(111371, 'Ruby', 1976, 'F', 613), +(111372, 'Antoinette', 1976, 'F', 610), +(111373, 'Lorena', 1976, 'F', 605), +(111374, 'Tori', 1976, 'F', 602), +(111375, 'Anitra', 1976, 'F', 595), +(111376, 'Lakesha', 1976, 'F', 588), +(111377, 'Alisa', 1976, 'F', 587), +(111378, 'Joni', 1976, 'F', 586), +(111379, 'Marisol', 1976, 'F', 586), +(111380, 'Nadia', 1976, 'F', 586), +(111381, 'Sonja', 1976, 'F', 583), +(111382, 'Alma', 1976, 'F', 580), +(111383, 'Cheri', 1976, 'F', 580), +(111384, 'Lynette', 1976, 'F', 580), +(111385, 'Shelby', 1976, 'F', 575), +(111386, 'Ericka', 1976, 'F', 574), +(111387, 'Hollie', 1976, 'F', 574), +(111388, 'Nina', 1976, 'F', 566), +(111389, 'Eileen', 1976, 'F', 563), +(111390, 'Guadalupe', 1976, 'F', 561), +(111391, 'Candy', 1976, 'F', 557), +(111392, 'Jeanne', 1976, 'F', 557), +(111393, 'Jacquelyn', 1976, 'F', 554), +(111394, 'Dina', 1976, 'F', 553), +(111395, 'Krystal', 1976, 'F', 550), +(111396, 'Celeste', 1976, 'F', 546), +(111397, 'Melisa', 1976, 'F', 545), +(111398, 'Lorraine', 1976, 'F', 543), +(111399, 'Cari', 1976, 'F', 541), +(111400, 'Aisha', 1976, 'F', 540), +(111401, 'Shauna', 1976, 'F', 539), +(111402, 'Elisa', 1976, 'F', 538), +(111403, 'Hannah', 1976, 'F', 538), +(111404, 'Bernadette', 1976, 'F', 537), +(111405, 'Kate', 1976, 'F', 532), +(111406, 'Lee', 1976, 'F', 532), +(111407, 'Whitney', 1976, 'F', 532), +(111408, 'Maribel', 1976, 'F', 528), +(111409, 'Elena', 1976, 'F', 527), +(111410, 'Grace', 1976, 'F', 527), +(111411, 'Angelia', 1976, 'F', 525), +(111412, 'Jasmine', 1976, 'F', 525), +(111413, 'Amelia', 1976, 'F', 523), +(111414, 'Tia', 1976, 'F', 523), +(111415, 'Misti', 1976, 'F', 521), +(111416, 'Nora', 1976, 'F', 519), +(111417, 'Cecilia', 1976, 'F', 515), +(111418, 'Michael', 1976, 'F', 515), +(111419, 'Jeannie', 1976, 'F', 513), +(111420, 'Vickie', 1976, 'F', 513), +(111421, 'Camille', 1976, 'F', 506), +(111422, 'Margarita', 1976, 'F', 502), +(111423, 'Deana', 1976, 'F', 497), +(111424, 'Elisabeth', 1976, 'F', 497), +(111425, 'Lashonda', 1976, 'F', 497), +(111426, 'Rosemary', 1976, 'F', 497), +(111427, 'Ronda', 1976, 'F', 496), +(111428, 'Chrystal', 1976, 'F', 495), +(111429, 'Janine', 1976, 'F', 495), +(111430, 'Cherie', 1976, 'F', 493), +(111431, 'Lawanda', 1976, 'F', 493), +(111432, 'Marlene', 1976, 'F', 492), +(111433, 'Audra', 1976, 'F', 491), +(111434, 'Nakia', 1976, 'F', 490), +(111435, 'Shari', 1976, 'F', 486), +(111436, 'Terra', 1976, 'F', 486), +(111437, 'Jenna', 1976, 'F', 484), +(111438, 'Marla', 1976, 'F', 484), +(111439, 'Allyson', 1976, 'F', 480), +(111440, 'Esmeralda', 1976, 'F', 480), +(111441, 'Jayme', 1976, 'F', 480), +(111442, 'Blanca', 1976, 'F', 479), +(111443, 'Lillian', 1976, 'F', 479), +(111444, 'Angelique', 1976, 'F', 478), +(111445, 'Carissa', 1976, 'F', 475), +(111446, 'Gail', 1976, 'F', 475), +(111447, 'Wendi', 1976, 'F', 475), +(111448, 'Marcy', 1976, 'F', 468), +(111449, 'Latanya', 1976, 'F', 465), +(111450, 'Annie', 1976, 'F', 464), +(111451, 'Jaimie', 1976, 'F', 464), +(111452, 'Selena', 1976, 'F', 464), +(111453, 'Joan', 1976, 'F', 461), +(111454, 'Karin', 1976, 'F', 461), +(111455, 'Yesenia', 1976, 'F', 460), +(111456, 'Glenda', 1976, 'F', 456), +(111457, 'Serena', 1976, 'F', 452), +(111458, 'Sheryl', 1976, 'F', 452), +(111459, 'Lena', 1976, 'F', 449), +(111460, 'Jessie', 1976, 'F', 448), +(111461, 'Dianna', 1976, 'F', 446), +(111462, 'Chelsea', 1976, 'F', 441), +(111463, 'Daphne', 1976, 'F', 440), +(111464, 'Hilary', 1976, 'F', 437), +(111465, 'Ramona', 1976, 'F', 437), +(111466, 'Darcy', 1976, 'F', 436), +(111467, 'Gabriela', 1976, 'F', 435), +(111468, 'Liza', 1976, 'F', 431), +(111469, 'Sherrie', 1976, 'F', 431), +(111470, 'Iris', 1976, 'F', 430), +(111471, 'Josephine', 1976, 'F', 430), +(111472, 'Karrie', 1976, 'F', 428), +(111473, 'Marianne', 1976, 'F', 426), +(111474, 'Bridgette', 1976, 'F', 425), +(111475, 'Marcie', 1976, 'F', 424), +(111476, 'Jocelyn', 1976, 'F', 423), +(111477, 'Susana', 1976, 'F', 422), +(111478, 'Shonda', 1976, 'F', 420), +(111479, 'Chanda', 1976, 'F', 418), +(111480, 'Edith', 1976, 'F', 418), +(111481, 'Emma', 1976, 'F', 418), +(111482, 'Jo', 1976, 'F', 417), +(111483, 'Arlene', 1976, 'F', 415), +(111484, 'Isabel', 1976, 'F', 411), +(111485, 'Tisha', 1976, 'F', 409), +(111486, 'Alissa', 1976, 'F', 406), +(111487, 'Jeannette', 1976, 'F', 406), +(111488, 'Leanne', 1976, 'F', 406), +(111489, 'Maricela', 1976, 'F', 405), +(111490, 'Maggie', 1976, 'F', 404), +(111491, 'Dora', 1976, 'F', 400), +(111492, 'Genevieve', 1976, 'F', 400), +(111493, 'Bianca', 1976, 'F', 394), +(111494, 'Lorie', 1976, 'F', 391), +(111495, 'Terry', 1976, 'F', 386), +(111496, 'Tomeka', 1976, 'F', 386), +(111497, 'Katina', 1976, 'F', 385), +(111498, 'Lana', 1976, 'F', 385), +(111499, 'Clarissa', 1976, 'F', 384), +(111500, 'Paige', 1976, 'F', 384), +(111501, 'Darla', 1976, 'F', 382), +(111502, 'Malinda', 1976, 'F', 381), +(111503, 'Patrice', 1976, 'F', 379), +(111504, 'Kisha', 1976, 'F', 378), +(111505, 'Vivian', 1976, 'F', 378), +(111506, 'Alyson', 1976, 'F', 377), +(111507, 'Luz', 1976, 'F', 376), +(111508, 'Claire', 1976, 'F', 375), +(111509, 'Irma', 1976, 'F', 371), +(111510, 'Alana', 1976, 'F', 370), +(111511, 'Jeanine', 1976, 'F', 369), +(111512, 'Cassie', 1976, 'F', 368), +(111513, 'Gabrielle', 1976, 'F', 367), +(111514, 'Katharine', 1976, 'F', 367), +(111515, 'Sophia', 1976, 'F', 366), +(111516, 'Olga', 1976, 'F', 365), +(111517, 'Vicky', 1976, 'F', 361), +(111518, 'Janie', 1976, 'F', 360), +(111519, 'Marci', 1976, 'F', 359), +(111520, 'Marjorie', 1976, 'F', 356), +(111521, 'Shanda', 1976, 'F', 356), +(111522, 'Tawana', 1976, 'F', 356), +(111523, 'Mia', 1976, 'F', 355), +(111524, 'Larissa', 1976, 'F', 354), +(111525, 'Latosha', 1976, 'F', 354), +(111526, 'Brittany', 1976, 'F', 353), +(111527, 'Tera', 1976, 'F', 353), +(111528, 'Doris', 1976, 'F', 352), +(111529, 'Lea', 1976, 'F', 350), +(111530, 'Tammi', 1976, 'F', 350), +(111531, 'Constance', 1976, 'F', 348), +(111532, 'Kerrie', 1976, 'F', 347), +(111533, 'Nadine', 1976, 'F', 347), +(111534, 'Janel', 1976, 'F', 346), +(111535, 'Lucy', 1976, 'F', 346), +(111536, 'Annmarie', 1976, 'F', 345), +(111537, 'Carly', 1976, 'F', 345), +(111538, 'Leann', 1976, 'F', 345), +(111539, 'Maryann', 1976, 'F', 344), +(111540, 'Kimberlee', 1976, 'F', 342), +(111541, 'Georgia', 1976, 'F', 340), +(111542, 'Myra', 1976, 'F', 340), +(111543, 'Tessa', 1976, 'F', 340), +(111544, 'Ingrid', 1976, 'F', 338), +(111545, 'Randi', 1976, 'F', 338), +(111546, 'Shelia', 1976, 'F', 338), +(111547, 'Ami', 1976, 'F', 332), +(111548, 'Corrie', 1976, 'F', 332), +(111549, 'Hillary', 1976, 'F', 331), +(111550, 'Cristy', 1976, 'F', 330), +(111551, 'Laurel', 1976, 'F', 330), +(111552, 'Silvia', 1976, 'F', 330), +(111553, 'Karyn', 1976, 'F', 329), +(111554, 'Karina', 1976, 'F', 328), +(111555, 'Marcella', 1976, 'F', 327), +(111556, 'Charmaine', 1976, 'F', 325), +(111557, 'Delia', 1976, 'F', 325), +(111558, 'Dolores', 1976, 'F', 324), +(111559, 'Jaclyn', 1976, 'F', 324), +(111560, 'Pauline', 1976, 'F', 324), +(111561, 'Noelle', 1976, 'F', 323), +(111562, 'Cortney', 1976, 'F', 322), +(111563, 'Liberty', 1976, 'F', 321), +(111564, 'Daisy', 1976, 'F', 320), +(111565, 'Bridgett', 1976, 'F', 317), +(111566, 'Luciana', 1976, 'F', 317), +(111567, 'Catrina', 1976, 'F', 315), +(111568, 'Carie', 1976, 'F', 313), +(111569, 'Janette', 1976, 'F', 313), +(111570, 'Kesha', 1976, 'F', 313), +(111571, 'Clara', 1976, 'F', 310), +(111572, 'Araceli', 1976, 'F', 309), +(111573, 'Sunny', 1976, 'F', 309), +(111574, 'Janna', 1976, 'F', 307), +(111575, 'Ladonna', 1976, 'F', 306), +(111576, 'Kasey', 1976, 'F', 305), +(111577, 'Cori', 1976, 'F', 303), +(111578, 'Tanika', 1976, 'F', 302), +(111579, 'Christal', 1976, 'F', 300), +(111580, 'Elisha', 1976, 'F', 300), +(111581, 'Maritza', 1976, 'F', 300), +(111582, 'Valarie', 1976, 'F', 300), +(111583, 'Antonia', 1976, 'F', 298), +(111584, 'Lynda', 1976, 'F', 297), +(111585, 'Sunshine', 1976, 'F', 297), +(111586, 'Janell', 1976, 'F', 293), +(111587, 'Alejandra', 1976, 'F', 292), +(111588, 'Chantel', 1976, 'F', 292), +(111589, 'Jason', 1976, 'F', 292), +(111590, 'Lashanda', 1976, 'F', 289), +(111591, 'Tiffani', 1976, 'F', 289), +(111592, 'Lucinda', 1976, 'F', 287), +(111593, 'Mara', 1976, 'F', 286), +(111594, 'June', 1976, 'F', 285), +(111595, 'Marina', 1976, 'F', 285), +(111596, 'Corey', 1976, 'F', 284), +(111597, 'Corinne', 1976, 'F', 284), +(111598, 'Marisela', 1976, 'F', 284), +(111599, 'Taryn', 1976, 'F', 284), +(111600, 'Dominique', 1976, 'F', 283), +(111601, 'Meagan', 1976, 'F', 283), +(111602, 'Beatrice', 1976, 'F', 281), +(111603, 'Dusty', 1976, 'F', 281), +(111604, 'Caryn', 1976, 'F', 280), +(111605, 'Hilda', 1976, 'F', 280), +(111606, 'Lashawn', 1976, 'F', 278), +(111607, 'Lucia', 1976, 'F', 278), +(111608, 'Edna', 1976, 'F', 277), +(111609, 'Christopher', 1976, 'F', 276), +(111610, 'Gwen', 1976, 'F', 276), +(111611, 'Rene', 1976, 'F', 275), +(111612, 'Karie', 1976, 'F', 274), +(111613, 'Rhiannon', 1976, 'F', 272), +(111614, 'Jeannine', 1976, 'F', 271), +(111615, 'Tiana', 1976, 'F', 270), +(111616, 'Corina', 1976, 'F', 269), +(111617, 'Deirdre', 1976, 'F', 268), +(111618, 'Elsa', 1976, 'F', 268), +(111619, 'Gena', 1976, 'F', 268), +(111620, 'Tomika', 1976, 'F', 268), +(111621, 'Demetria', 1976, 'F', 267), +(111622, 'Jeri', 1976, 'F', 265), +(111623, 'Aubrey', 1976, 'F', 263), +(111624, 'Tosha', 1976, 'F', 263), +(111625, 'Kami', 1976, 'F', 262), +(111626, 'Kristal', 1976, 'F', 262), +(111627, 'Latrice', 1976, 'F', 262), +(111628, 'Mona', 1976, 'F', 258), +(111629, 'Gladys', 1976, 'F', 257), +(111630, 'Abby', 1976, 'F', 256), +(111631, 'Deidre', 1976, 'F', 256), +(111632, 'Eleanor', 1976, 'F', 256), +(111633, 'Adrianne', 1976, 'F', 255), +(111634, 'Bernice', 1976, 'F', 255), +(111635, 'Dara', 1976, 'F', 254); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(111636, 'Jan', 1976, 'F', 254), +(111637, 'Madeline', 1976, 'F', 254), +(111638, 'Shellie', 1976, 'F', 254), +(111639, 'James', 1976, 'F', 253), +(111640, 'Jillian', 1976, 'F', 252), +(111641, 'Susanne', 1976, 'F', 252), +(111642, 'Jammie', 1976, 'F', 251), +(111643, 'Windy', 1976, 'F', 251), +(111644, 'Spring', 1976, 'F', 250), +(111645, 'Tamiko', 1976, 'F', 250), +(111646, 'Sasha', 1976, 'F', 249), +(111647, 'Geneva', 1976, 'F', 248), +(111648, 'Carolina', 1976, 'F', 247), +(111649, 'Holli', 1976, 'F', 247), +(111650, 'Sheree', 1976, 'F', 247), +(111651, 'Elise', 1976, 'F', 246), +(111652, 'Tamra', 1976, 'F', 246), +(111653, 'Brandee', 1976, 'F', 244), +(111654, 'Felecia', 1976, 'F', 244), +(111655, 'Cory', 1976, 'F', 243), +(111656, 'Dionne', 1976, 'F', 243), +(111657, 'Lynnette', 1976, 'F', 243), +(111658, 'Brook', 1976, 'F', 242), +(111659, 'Lacey', 1976, 'F', 242), +(111660, 'Susie', 1976, 'F', 242), +(111661, 'Bree', 1976, 'F', 241), +(111662, 'Phyllis', 1976, 'F', 241), +(111663, 'Rena', 1976, 'F', 241), +(111664, 'Sue', 1976, 'F', 241), +(111665, 'Susanna', 1976, 'F', 241), +(111666, 'Francine', 1976, 'F', 240), +(111667, 'Renae', 1976, 'F', 240), +(111668, 'Anissa', 1976, 'F', 239), +(111669, 'Lakeshia', 1976, 'F', 239), +(111670, 'Mildred', 1976, 'F', 239), +(111671, 'Tiffanie', 1976, 'F', 239), +(111672, 'Anastasia', 1976, 'F', 238), +(111673, 'Danelle', 1976, 'F', 237), +(111674, 'Robert', 1976, 'F', 236), +(111675, 'Shanon', 1976, 'F', 236), +(111676, 'Harmony', 1976, 'F', 234), +(111677, 'Georgina', 1976, 'F', 233), +(111678, 'Latonia', 1976, 'F', 233), +(111679, 'Shannan', 1976, 'F', 233), +(111680, 'Athena', 1976, 'F', 232), +(111681, 'Julianne', 1976, 'F', 232), +(111682, 'Consuelo', 1976, 'F', 231), +(111683, 'Graciela', 1976, 'F', 231), +(111684, 'Malissa', 1976, 'F', 231), +(111685, 'Shameka', 1976, 'F', 230), +(111686, 'David', 1976, 'F', 229), +(111687, 'Letitia', 1976, 'F', 229), +(111688, 'Shalonda', 1976, 'F', 229), +(111689, 'Tawnya', 1976, 'F', 229), +(111690, 'Ursula', 1976, 'F', 229), +(111691, 'Francesca', 1976, 'F', 228), +(111692, 'Tawanda', 1976, 'F', 228), +(111693, 'Sondra', 1976, 'F', 227), +(111694, 'Toya', 1976, 'F', 227), +(111695, 'Dayna', 1976, 'F', 226), +(111696, 'Deena', 1976, 'F', 226), +(111697, 'Sharonda', 1976, 'F', 220), +(111698, 'Katy', 1976, 'F', 219), +(111699, 'Sadie', 1976, 'F', 219), +(111700, 'Elissa', 1976, 'F', 218), +(111701, 'Venus', 1976, 'F', 218), +(111702, 'Ida', 1976, 'F', 217), +(111703, 'Mayra', 1976, 'F', 217), +(111704, 'Alecia', 1976, 'F', 216), +(111705, 'Bertha', 1976, 'F', 216), +(111706, 'Danette', 1976, 'F', 216), +(111707, 'Dianne', 1976, 'F', 216), +(111708, 'Lourdes', 1976, 'F', 216), +(111709, 'Marian', 1976, 'F', 216), +(111710, 'Mitzi', 1976, 'F', 216), +(111711, 'Josie', 1976, 'F', 215), +(111712, 'Cathleen', 1976, 'F', 214), +(111713, 'Jerri', 1976, 'F', 214), +(111714, 'Lorrie', 1976, 'F', 214), +(111715, 'Rosalinda', 1976, 'F', 214), +(111716, 'Buffy', 1976, 'F', 212), +(111717, 'Cora', 1976, 'F', 212), +(111718, 'Doreen', 1976, 'F', 212), +(111719, 'Maya', 1976, 'F', 212), +(111720, 'Rosemarie', 1976, 'F', 212), +(111721, 'Celia', 1976, 'F', 211), +(111722, 'Eve', 1976, 'F', 211), +(111723, 'Stacia', 1976, 'F', 211), +(111724, 'John', 1976, 'F', 210), +(111725, 'Adrian', 1976, 'F', 209), +(111726, 'Liliana', 1976, 'F', 209), +(111727, 'Racheal', 1976, 'F', 208), +(111728, 'Trudy', 1976, 'F', 207), +(111729, 'Ivy', 1976, 'F', 206), +(111730, 'Jeana', 1976, 'F', 206), +(111731, 'Jeanna', 1976, 'F', 206), +(111732, 'Rocio', 1976, 'F', 206), +(111733, 'Jamila', 1976, 'F', 205), +(111734, 'Juana', 1976, 'F', 205), +(111735, 'Khalilah', 1976, 'F', 205), +(111736, 'Lynne', 1976, 'F', 205), +(111737, 'Niki', 1976, 'F', 205), +(111738, 'January', 1976, 'F', 204), +(111739, 'Louise', 1976, 'F', 204), +(111740, 'Mollie', 1976, 'F', 204), +(111741, 'Stella', 1976, 'F', 204), +(111742, 'Joey', 1976, 'F', 203), +(111743, 'Mercedes', 1976, 'F', 203), +(111744, 'Alexa', 1976, 'F', 202), +(111745, 'Karri', 1976, 'F', 202), +(111746, 'Kayla', 1976, 'F', 202), +(111747, 'Leanna', 1976, 'F', 202), +(111748, 'Martina', 1976, 'F', 202), +(111749, 'Rashida', 1976, 'F', 202), +(111750, 'Rosalind', 1976, 'F', 202), +(111751, 'Shantel', 1976, 'F', 202), +(111752, 'Beatriz', 1976, 'F', 201), +(111753, 'Janae', 1976, 'F', 201), +(111754, 'Justine', 1976, 'F', 201), +(111755, 'Leeann', 1976, 'F', 201), +(111756, 'Lola', 1976, 'F', 200), +(111757, 'Selina', 1976, 'F', 200), +(111758, 'William', 1976, 'F', 200), +(111759, 'Briana', 1976, 'F', 199), +(111760, 'Eliza', 1976, 'F', 199), +(111761, 'Mindi', 1976, 'F', 199), +(111762, 'Jeanie', 1976, 'F', 198), +(111763, 'Rosalyn', 1976, 'F', 198), +(111764, 'Celina', 1976, 'F', 197), +(111765, 'Chiquita', 1976, 'F', 197), +(111766, 'Monika', 1976, 'F', 195), +(111767, 'Stephenie', 1976, 'F', 195), +(111768, 'Griselda', 1976, 'F', 194), +(111769, 'Maura', 1976, 'F', 194), +(111770, 'Deanne', 1976, 'F', 193), +(111771, 'Gayle', 1976, 'F', 193), +(111772, 'Patty', 1976, 'F', 193), +(111773, 'Thelma', 1976, 'F', 193), +(111774, 'Florence', 1976, 'F', 192), +(111775, 'Kay', 1976, 'F', 192), +(111776, 'Charla', 1976, 'F', 191), +(111777, 'Colette', 1976, 'F', 191), +(111778, 'Marion', 1976, 'F', 191), +(111779, 'Marta', 1976, 'F', 191), +(111780, 'Callie', 1976, 'F', 190), +(111781, 'Mariah', 1976, 'F', 190), +(111782, 'Andria', 1976, 'F', 189), +(111783, 'Nikia', 1976, 'F', 189), +(111784, 'Chris', 1976, 'F', 188), +(111785, 'Deidra', 1976, 'F', 188), +(111786, 'Lois', 1976, 'F', 188), +(111787, 'Ayana', 1976, 'F', 187), +(111788, 'Casandra', 1976, 'F', 187), +(111789, 'Davina', 1976, 'F', 187), +(111790, 'Helena', 1976, 'F', 187), +(111791, 'Kori', 1976, 'F', 187), +(111792, 'Maranda', 1976, 'F', 187), +(111793, 'Candi', 1976, 'F', 186), +(111794, 'Destiny', 1976, 'F', 185), +(111795, 'Jaimee', 1976, 'F', 185), +(111796, 'Aurora', 1976, 'F', 184), +(111797, 'Brenna', 1976, 'F', 184), +(111798, 'Deann', 1976, 'F', 184), +(111799, 'Simone', 1976, 'F', 184), +(111800, 'Vera', 1976, 'F', 184), +(111801, 'Cary', 1976, 'F', 183), +(111802, 'Eugenia', 1976, 'F', 183), +(111803, 'Noemi', 1976, 'F', 183), +(111804, 'Ella', 1976, 'F', 182), +(111805, 'Michell', 1976, 'F', 182), +(111806, 'Paulette', 1976, 'F', 182), +(111807, 'Christin', 1976, 'F', 181), +(111808, 'Tyra', 1976, 'F', 181), +(111809, 'Tamica', 1976, 'F', 180), +(111810, 'Rosanna', 1976, 'F', 179), +(111811, 'Shayla', 1976, 'F', 179), +(111812, 'Tawanna', 1976, 'F', 179), +(111813, 'Greta', 1976, 'F', 177), +(111814, 'Kia', 1976, 'F', 177), +(111815, 'Latricia', 1976, 'F', 177), +(111816, 'Christen', 1976, 'F', 176), +(111817, 'Mandie', 1976, 'F', 176), +(111818, 'Margo', 1976, 'F', 175), +(111819, 'Therese', 1976, 'F', 175), +(111820, 'Margie', 1976, 'F', 174), +(111821, 'Octavia', 1976, 'F', 174), +(111822, 'Shamika', 1976, 'F', 174), +(111823, 'Joleen', 1976, 'F', 173), +(111824, 'Layla', 1976, 'F', 173), +(111825, 'Nikita', 1976, 'F', 173), +(111826, 'Tana', 1976, 'F', 173), +(111827, 'Daniel', 1976, 'F', 172), +(111828, 'Dixie', 1976, 'F', 172), +(111829, 'Farah', 1976, 'F', 172), +(111830, 'Lindy', 1976, 'F', 172), +(111831, 'Sandi', 1976, 'F', 172), +(111832, 'Christian', 1976, 'F', 171), +(111833, 'Janis', 1976, 'F', 171), +(111834, 'Latarsha', 1976, 'F', 171), +(111835, 'Rosalie', 1976, 'F', 171), +(111836, 'Sharla', 1976, 'F', 171), +(111837, 'Chana', 1976, 'F', 170), +(111838, 'Corinna', 1976, 'F', 170), +(111839, 'Jena', 1976, 'F', 170), +(111840, 'Nakisha', 1976, 'F', 170), +(111841, 'Eunice', 1976, 'F', 169), +(111842, 'Mellissa', 1976, 'F', 169), +(111843, 'Regan', 1976, 'F', 169), +(111844, 'Tamera', 1976, 'F', 169), +(111845, 'Marlena', 1976, 'F', 168), +(111846, 'Tanesha', 1976, 'F', 168), +(111847, 'Ada', 1976, 'F', 167), +(111848, 'Daniela', 1976, 'F', 167), +(111849, 'Danita', 1976, 'F', 167), +(111850, 'Marlo', 1976, 'F', 167), +(111851, 'Richelle', 1976, 'F', 167), +(111852, 'Carisa', 1976, 'F', 166), +(111853, 'Kyla', 1976, 'F', 166), +(111854, 'Takisha', 1976, 'F', 166), +(111855, 'Tarsha', 1976, 'F', 166), +(111856, 'Annemarie', 1976, 'F', 165), +(111857, 'Christel', 1976, 'F', 164), +(111858, 'Mackenzie', 1976, 'F', 164), +(111859, 'Rosie', 1976, 'F', 164), +(111860, 'Suzette', 1976, 'F', 164), +(111861, 'Delores', 1976, 'F', 163), +(111862, 'Ryan', 1976, 'F', 163), +(111863, 'Shanta', 1976, 'F', 163), +(111864, 'Suzanna', 1976, 'F', 163), +(111865, 'Geraldine', 1976, 'F', 162), +(111866, 'Jasmin', 1976, 'F', 162), +(111867, 'Nikole', 1976, 'F', 162), +(111868, 'Shawanda', 1976, 'F', 162), +(111869, 'Kenyatta', 1976, 'F', 161), +(111870, 'Magdalena', 1976, 'F', 161), +(111871, 'Mellisa', 1976, 'F', 161), +(111872, 'Salina', 1976, 'F', 161), +(111873, 'Sommer', 1976, 'F', 161), +(111874, 'Fawn', 1976, 'F', 160), +(111875, 'Sofia', 1976, 'F', 160), +(111876, 'Terrie', 1976, 'F', 160), +(111877, 'Leila', 1976, 'F', 159), +(111878, 'Noel', 1976, 'F', 159), +(111879, 'Shayna', 1976, 'F', 159), +(111880, 'Catina', 1976, 'F', 158), +(111881, 'Juliana', 1976, 'F', 158), +(111882, 'Juliet', 1976, 'F', 158), +(111883, 'Leona', 1976, 'F', 158), +(111884, 'Shasta', 1976, 'F', 158), +(111885, 'Trista', 1976, 'F', 158), +(111886, 'Alysia', 1976, 'F', 157), +(111887, 'Joelle', 1976, 'F', 157), +(111888, 'Fatima', 1976, 'F', 156), +(111889, 'Michaela', 1976, 'F', 156), +(111890, 'Danyelle', 1976, 'F', 155), +(111891, 'Angelita', 1976, 'F', 154), +(111892, 'Brian', 1976, 'F', 154), +(111893, 'Aaron', 1976, 'F', 153), +(111894, 'Darci', 1976, 'F', 153), +(111895, 'Ivette', 1976, 'F', 153), +(111896, 'Aida', 1976, 'F', 152), +(111897, 'Lacy', 1976, 'F', 152), +(111898, 'Marnie', 1976, 'F', 152), +(111899, 'Sherita', 1976, 'F', 152), +(111900, 'Chanel', 1976, 'F', 151), +(111901, 'Justina', 1976, 'F', 151), +(111902, 'Laquita', 1976, 'F', 151), +(111903, 'Lissette', 1976, 'F', 151), +(111904, 'Natalia', 1976, 'F', 151), +(111905, 'Susannah', 1976, 'F', 150), +(111906, 'Adriane', 1976, 'F', 149), +(111907, 'Candida', 1976, 'F', 149), +(111908, 'Kandi', 1976, 'F', 149), +(111909, 'Kyra', 1976, 'F', 149), +(111910, 'Torrie', 1976, 'F', 149), +(111911, 'Valencia', 1976, 'F', 149), +(111912, 'Aileen', 1976, 'F', 148), +(111913, 'Carina', 1976, 'F', 148), +(111914, 'Chantelle', 1976, 'F', 148), +(111915, 'Melina', 1976, 'F', 148), +(111916, 'Nicolle', 1976, 'F', 148), +(111917, 'Anika', 1976, 'F', 147), +(111918, 'Ashlee', 1976, 'F', 147), +(111919, 'Chaka', 1976, 'F', 147), +(111920, 'Darcie', 1976, 'F', 147), +(111921, 'Kira', 1976, 'F', 147), +(111922, 'Lisette', 1976, 'F', 147), +(111923, 'Alexandria', 1976, 'F', 146), +(111924, 'Jamey', 1976, 'F', 146), +(111925, 'Rebeca', 1976, 'F', 146), +(111926, 'Trish', 1976, 'F', 146), +(111927, 'Della', 1976, 'F', 145), +(111928, 'Elvira', 1976, 'F', 145), +(111929, 'Carri', 1976, 'F', 144), +(111930, 'Felisha', 1976, 'F', 144), +(111931, 'Johnna', 1976, 'F', 144), +(111932, 'Lucretia', 1976, 'F', 144), +(111933, 'Rayna', 1976, 'F', 144), +(111934, 'Tory', 1976, 'F', 144), +(111935, 'Melonie', 1976, 'F', 143), +(111936, 'Morgan', 1976, 'F', 143), +(111937, 'Pearl', 1976, 'F', 143), +(111938, 'Rosario', 1976, 'F', 143), +(111939, 'Tonja', 1976, 'F', 143), +(111940, 'Clarice', 1976, 'F', 142), +(111941, 'Shantell', 1976, 'F', 142), +(111942, 'Jade', 1976, 'F', 141), +(111943, 'Joseph', 1976, 'F', 141), +(111944, 'Alanna', 1976, 'F', 140), +(111945, 'Angeline', 1976, 'F', 140), +(111946, 'Anthony', 1976, 'F', 140), +(111947, 'Carole', 1976, 'F', 140), +(111948, 'Kathrine', 1976, 'F', 140), +(111949, 'Matthew', 1976, 'F', 140), +(111950, 'Leilani', 1976, 'F', 139), +(111951, 'Mistie', 1976, 'F', 139), +(111952, 'Antionette', 1976, 'F', 138), +(111953, 'Brianna', 1976, 'F', 138), +(111954, 'Eboni', 1976, 'F', 138), +(111955, 'Mari', 1976, 'F', 138), +(111956, 'Francisca', 1976, 'F', 137), +(111957, 'Imelda', 1976, 'F', 137), +(111958, 'Jesse', 1976, 'F', 137), +(111959, 'Nichol', 1976, 'F', 137), +(111960, 'Benita', 1976, 'F', 136), +(111961, 'Brigitte', 1976, 'F', 136), +(111962, 'Daniele', 1976, 'F', 136), +(111963, 'Delilah', 1976, 'F', 136), +(111964, 'Jada', 1976, 'F', 136), +(111965, 'Lauri', 1976, 'F', 136), +(111966, 'Tamela', 1976, 'F', 136), +(111967, 'Caitlin', 1976, 'F', 135), +(111968, 'Cecelia', 1976, 'F', 135), +(111969, 'Lucille', 1976, 'F', 135), +(111970, 'Myrna', 1976, 'F', 135), +(111971, 'Alycia', 1976, 'F', 134), +(111972, 'Carmela', 1976, 'F', 134), +(111973, 'India', 1976, 'F', 134), +(111974, 'Joanie', 1976, 'F', 134), +(111975, 'Kenisha', 1976, 'F', 134), +(111976, 'Lilia', 1976, 'F', 134), +(111977, 'Lily', 1976, 'F', 134), +(111978, 'Eric', 1976, 'F', 133), +(111979, 'Inez', 1976, 'F', 133), +(111980, 'Latoria', 1976, 'F', 133), +(111981, 'Mendy', 1976, 'F', 133), +(111982, 'Raina', 1976, 'F', 133), +(111983, 'Shelli', 1976, 'F', 133), +(111984, 'Brigette', 1976, 'F', 132), +(111985, 'Celena', 1976, 'F', 132), +(111986, 'Georgette', 1976, 'F', 132), +(111987, 'Latrina', 1976, 'F', 132), +(111988, 'Patti', 1976, 'F', 132), +(111989, 'Rae', 1976, 'F', 132), +(111990, 'Roxanna', 1976, 'F', 132), +(111991, 'Sharlene', 1976, 'F', 132), +(111992, 'Coleen', 1976, 'F', 131), +(111993, 'Corrine', 1976, 'F', 131), +(111994, 'Jenni', 1976, 'F', 131), +(111995, 'Nellie', 1976, 'F', 131), +(111996, 'Starr', 1976, 'F', 131), +(111997, 'Torie', 1976, 'F', 131), +(111998, 'Damaris', 1976, 'F', 130), +(111999, 'Danna', 1976, 'F', 130), +(112000, 'Emilie', 1976, 'F', 130), +(112001, 'Francis', 1976, 'F', 130), +(112002, 'Keli', 1976, 'F', 130), +(112003, 'Shani', 1976, 'F', 130), +(112004, 'Tamekia', 1976, 'F', 130), +(112005, 'Trinity', 1976, 'F', 130), +(112006, 'Valeria', 1976, 'F', 130), +(112007, 'Venessa', 1976, 'F', 130), +(112008, 'Bonita', 1976, 'F', 129), +(112009, 'Esperanza', 1976, 'F', 129), +(112010, 'Shanika', 1976, 'F', 129), +(112011, 'Alesha', 1976, 'F', 128), +(112012, 'Cristi', 1976, 'F', 128), +(112013, 'Faye', 1976, 'F', 128), +(112014, 'Ginny', 1976, 'F', 128), +(112015, 'Josefina', 1976, 'F', 128), +(112016, 'Libby', 1976, 'F', 128), +(112017, 'Richard', 1976, 'F', 128), +(112018, 'Shandra', 1976, 'F', 127), +(112019, 'Adria', 1976, 'F', 126), +(112020, 'Danyel', 1976, 'F', 126), +(112021, 'Jeremy', 1976, 'F', 126), +(112022, 'Shanita', 1976, 'F', 126), +(112023, 'Shara', 1976, 'F', 126), +(112024, 'Temeka', 1976, 'F', 126), +(112025, 'Keesha', 1976, 'F', 125), +(112026, 'Polly', 1976, 'F', 125), +(112027, 'Tracee', 1976, 'F', 125), +(112028, 'Ayanna', 1976, 'F', 124), +(112029, 'Cheyenne', 1976, 'F', 124), +(112030, 'Isis', 1976, 'F', 124), +(112031, 'Lenora', 1976, 'F', 124), +(112032, 'Luisa', 1976, 'F', 124), +(112033, 'Milagros', 1976, 'F', 124), +(112034, 'Minerva', 1976, 'F', 124), +(112035, 'Tenille', 1976, 'F', 124), +(112036, 'Claudette', 1976, 'F', 123), +(112037, 'Devon', 1976, 'F', 123), +(112038, 'Janeen', 1976, 'F', 123), +(112039, 'Jenelle', 1976, 'F', 123), +(112040, 'Petra', 1976, 'F', 123), +(112041, 'Sharron', 1976, 'F', 123), +(112042, 'Sydney', 1976, 'F', 123), +(112043, 'Cherise', 1976, 'F', 122), +(112044, 'Melodie', 1976, 'F', 122), +(112045, 'Patsy', 1976, 'F', 122), +(112046, 'Sheena', 1976, 'F', 122), +(112047, 'Cherilyn', 1976, 'F', 121), +(112048, 'Corrina', 1976, 'F', 121), +(112049, 'Nicola', 1976, 'F', 121), +(112050, 'Penelope', 1976, 'F', 121), +(112051, 'Rolanda', 1976, 'F', 121), +(112052, 'Yadira', 1976, 'F', 121), +(112053, 'Angella', 1976, 'F', 120), +(112054, 'Frankie', 1976, 'F', 120), +(112055, 'Shawnda', 1976, 'F', 120), +(112056, 'Charissa', 1976, 'F', 119), +(112057, 'Kandy', 1976, 'F', 119), +(112058, 'Kiesha', 1976, 'F', 119), +(112059, 'Lina', 1976, 'F', 119), +(112060, 'Pepper', 1976, 'F', 119), +(112061, 'Stephaine', 1976, 'F', 119), +(112062, 'Bambi', 1976, 'F', 118), +(112063, 'Keely', 1976, 'F', 118), +(112064, 'Lashunda', 1976, 'F', 118), +(112065, 'Nanette', 1976, 'F', 118), +(112066, 'Stephany', 1976, 'F', 118), +(112067, 'Timothy', 1976, 'F', 118), +(112068, 'Caren', 1976, 'F', 117), +(112069, 'Carin', 1976, 'F', 117), +(112070, 'Crista', 1976, 'F', 117), +(112071, 'Haley', 1976, 'F', 117), +(112072, 'Roseann', 1976, 'F', 117), +(112073, 'Tressa', 1976, 'F', 117), +(112074, 'Clare', 1976, 'F', 116), +(112075, 'Corie', 1976, 'F', 116), +(112076, 'Dee', 1976, 'F', 116), +(112077, 'Jolie', 1976, 'F', 116), +(112078, 'Julianna', 1976, 'F', 116), +(112079, 'Kelsey', 1976, 'F', 116), +(112080, 'Lizette', 1976, 'F', 116), +(112081, 'Shakira', 1976, 'F', 116), +(112082, 'Tangela', 1976, 'F', 116), +(112083, 'Toby', 1976, 'F', 116), +(112084, 'Trena', 1976, 'F', 116), +(112085, 'Evette', 1976, 'F', 115), +(112086, 'Flora', 1976, 'F', 115), +(112087, 'Hazel', 1976, 'F', 115), +(112088, 'Keshia', 1976, 'F', 115), +(112089, 'Qiana', 1976, 'F', 115), +(112090, 'Rhoda', 1976, 'F', 115), +(112091, 'Tenisha', 1976, 'F', 115), +(112092, 'Chantell', 1976, 'F', 114), +(112093, 'Daniella', 1976, 'F', 114), +(112094, 'Dannielle', 1976, 'F', 114), +(112095, 'Elsie', 1976, 'F', 114), +(112096, 'Marquita', 1976, 'F', 114), +(112097, 'Maxine', 1976, 'F', 114), +(112098, 'Catalina', 1976, 'F', 113), +(112099, 'Cristal', 1976, 'F', 113), +(112100, 'Ethel', 1976, 'F', 113), +(112101, 'Kevin', 1976, 'F', 113), +(112102, 'Kirstin', 1976, 'F', 113), +(112103, 'Marguerite', 1976, 'F', 113), +(112104, 'Rana', 1976, 'F', 113), +(112105, 'Violet', 1976, 'F', 113), +(112106, 'Brittney', 1976, 'F', 112), +(112107, 'Camilla', 1976, 'F', 112), +(112108, 'Karissa', 1976, 'F', 112), +(112109, 'Lesa', 1976, 'F', 112), +(112110, 'Lila', 1976, 'F', 112), +(112111, 'Shea', 1976, 'F', 112), +(112112, 'Cristie', 1976, 'F', 111), +(112113, 'Danyell', 1976, 'F', 111), +(112114, 'Jayne', 1976, 'F', 111), +(112115, 'Kenyetta', 1976, 'F', 111), +(112116, 'Nicki', 1976, 'F', 111), +(112117, 'Roslyn', 1976, 'F', 111), +(112118, 'Bobby', 1976, 'F', 110), +(112119, 'Isela', 1976, 'F', 110), +(112120, 'Kris', 1976, 'F', 110), +(112121, 'Starla', 1976, 'F', 110), +(112122, 'Adina', 1976, 'F', 109), +(112123, 'Angelic', 1976, 'F', 109), +(112124, 'Cristin', 1976, 'F', 109), +(112125, 'Danica', 1976, 'F', 109), +(112126, 'Demetra', 1976, 'F', 109), +(112127, 'Freda', 1976, 'F', 109), +(112128, 'Hallie', 1976, 'F', 109), +(112129, 'Karey', 1976, 'F', 109), +(112130, 'Reagan', 1976, 'F', 109), +(112131, 'Roxana', 1976, 'F', 109), +(112132, 'Tobi', 1976, 'F', 109), +(112133, 'Julissa', 1976, 'F', 108), +(112134, 'Lolita', 1976, 'F', 108), +(112135, 'Missy', 1976, 'F', 108), +(112136, 'Yolonda', 1976, 'F', 108), +(112137, 'Alina', 1976, 'F', 107), +(112138, 'Debora', 1976, 'F', 107), +(112139, 'Latesha', 1976, 'F', 107), +(112140, 'Malia', 1976, 'F', 107), +(112141, 'Phoebe', 1976, 'F', 107), +(112142, 'Rasheda', 1976, 'F', 107), +(112143, 'Bessie', 1976, 'F', 106), +(112144, 'Cathryn', 1976, 'F', 106), +(112145, 'Charles', 1976, 'F', 106), +(112146, 'Cherry', 1976, 'F', 106), +(112147, 'Estela', 1976, 'F', 106), +(112148, 'Lakeesha', 1976, 'F', 106), +(112149, 'Lillie', 1976, 'F', 106), +(112150, 'Ivonne', 1976, 'F', 105), +(112151, 'Rikki', 1976, 'F', 105), +(112152, 'Saundra', 1976, 'F', 105), +(112153, 'Sybil', 1976, 'F', 105), +(112154, 'Tamisha', 1976, 'F', 105), +(112155, 'Claudine', 1976, 'F', 104), +(112156, 'Dedra', 1976, 'F', 104), +(112157, 'Lakiesha', 1976, 'F', 104), +(112158, 'Lorna', 1976, 'F', 104), +(112159, 'Chantal', 1976, 'F', 103), +(112160, 'Estella', 1976, 'F', 103), +(112161, 'Juliette', 1976, 'F', 103), +(112162, 'Kindra', 1976, 'F', 103), +(112163, 'Marni', 1976, 'F', 103), +(112164, 'Jenniffer', 1976, 'F', 102), +(112165, 'Lidia', 1976, 'F', 102), +(112166, 'Rhea', 1976, 'F', 102), +(112167, 'Wilma', 1976, 'F', 102), +(112168, 'Samara', 1976, 'F', 101), +(112169, 'Shane', 1976, 'F', 101), +(112170, 'Shante', 1976, 'F', 101), +(112171, 'Thomas', 1976, 'F', 101), +(112172, 'Cindi', 1976, 'F', 100), +(112173, 'Giovanna', 1976, 'F', 100), +(112174, 'Juli', 1976, 'F', 100), +(112175, 'Lashawnda', 1976, 'F', 100), +(112176, 'Marcela', 1976, 'F', 100), +(112177, 'Raven', 1976, 'F', 100), +(112178, 'Tabetha', 1976, 'F', 100), +(112179, 'Tamar', 1976, 'F', 100), +(112180, 'Michael', 1976, 'M', 66971), +(112181, 'Jason', 1976, 'M', 52686), +(112182, 'Christopher', 1976, 'M', 45235), +(112183, 'David', 1976, 'M', 39296), +(112184, 'James', 1976, 'M', 38311), +(112185, 'John', 1976, 'M', 33989), +(112186, 'Robert', 1976, 'M', 33815), +(112187, 'Brian', 1976, 'M', 30535), +(112188, 'Matthew', 1976, 'M', 29996), +(112189, 'Daniel', 1976, 'M', 24726), +(112190, 'William', 1976, 'M', 24446), +(112191, 'Joseph', 1976, 'M', 24074), +(112192, 'Eric', 1976, 'M', 21374), +(112193, 'Jeremy', 1976, 'M', 20136), +(112194, 'Kevin', 1976, 'M', 18487), +(112195, 'Ryan', 1976, 'M', 17504), +(112196, 'Jeffrey', 1976, 'M', 17025), +(112197, 'Joshua', 1976, 'M', 16870), +(112198, 'Richard', 1976, 'M', 16766), +(112199, 'Steven', 1976, 'M', 16664), +(112200, 'Timothy', 1976, 'M', 16633), +(112201, 'Anthony', 1976, 'M', 16618), +(112202, 'Thomas', 1976, 'M', 16119), +(112203, 'Scott', 1976, 'M', 15748), +(112204, 'Mark', 1976, 'M', 15517), +(112205, 'Charles', 1976, 'M', 13934), +(112206, 'Andrew', 1976, 'M', 13322), +(112207, 'Paul', 1976, 'M', 11793), +(112208, 'Chad', 1976, 'M', 11775), +(112209, 'Aaron', 1976, 'M', 11349), +(112210, 'Jonathan', 1976, 'M', 11317), +(112211, 'Benjamin', 1976, 'M', 10680), +(112212, 'Justin', 1976, 'M', 10155), +(112213, 'Shawn', 1976, 'M', 10109), +(112214, 'Gregory', 1976, 'M', 10065), +(112215, 'Adam', 1976, 'M', 9947), +(112216, 'Stephen', 1976, 'M', 9732), +(112217, 'Kenneth', 1976, 'M', 9135), +(112218, 'Nathan', 1976, 'M', 8619), +(112219, 'Brandon', 1976, 'M', 7795), +(112220, 'Patrick', 1976, 'M', 7639), +(112221, 'Sean', 1976, 'M', 7574), +(112222, 'Bryan', 1976, 'M', 7294), +(112223, 'Edward', 1976, 'M', 7056), +(112224, 'Jose', 1976, 'M', 7051), +(112225, 'Travis', 1976, 'M', 6837), +(112226, 'Donald', 1976, 'M', 6797), +(112227, 'Keith', 1976, 'M', 6751), +(112228, 'Ronald', 1976, 'M', 6461), +(112229, 'Todd', 1976, 'M', 6442), +(112230, 'Bradley', 1976, 'M', 5983), +(112231, 'Gary', 1976, 'M', 5590), +(112232, 'George', 1976, 'M', 5563), +(112233, 'Peter', 1976, 'M', 5451), +(112234, 'Jesse', 1976, 'M', 5303), +(112235, 'Douglas', 1976, 'M', 5234), +(112236, 'Shane', 1976, 'M', 5099), +(112237, 'Juan', 1976, 'M', 5048), +(112238, 'Samuel', 1976, 'M', 5023), +(112239, 'Larry', 1976, 'M', 4843), +(112240, 'Craig', 1976, 'M', 4742), +(112241, 'Jamie', 1976, 'M', 4622), +(112242, 'Jacob', 1976, 'M', 4517), +(112243, 'Corey', 1976, 'M', 4440), +(112244, 'Raymond', 1976, 'M', 4223), +(112245, 'Dennis', 1976, 'M', 4169), +(112246, 'Jerry', 1976, 'M', 4068), +(112247, 'Frank', 1976, 'M', 3897), +(112248, 'Phillip', 1976, 'M', 3791), +(112249, 'Carlos', 1976, 'M', 3786), +(112250, 'Antonio', 1976, 'M', 3771), +(112251, 'Joel', 1976, 'M', 3727), +(112252, 'Troy', 1976, 'M', 3716), +(112253, 'Marcus', 1976, 'M', 3688), +(112254, 'Terry', 1976, 'M', 3667), +(112255, 'Jeffery', 1976, 'M', 3568), +(112256, 'Nicholas', 1976, 'M', 3475), +(112257, 'Brent', 1976, 'M', 3404), +(112258, 'Randy', 1976, 'M', 3319), +(112259, 'Kyle', 1976, 'M', 3312), +(112260, 'Gabriel', 1976, 'M', 3303), +(112261, 'Dustin', 1976, 'M', 3215), +(112262, 'Cory', 1976, 'M', 3187), +(112263, 'Derek', 1976, 'M', 3169), +(112264, 'Billy', 1976, 'M', 3156), +(112265, 'Tony', 1976, 'M', 3062), +(112266, 'Russell', 1976, 'M', 2996), +(112267, 'Rodney', 1976, 'M', 2991), +(112268, 'Philip', 1976, 'M', 2949), +(112269, 'Jared', 1976, 'M', 2932), +(112270, 'Derrick', 1976, 'M', 2919), +(112271, 'Jeremiah', 1976, 'M', 2874), +(112272, 'Johnny', 1976, 'M', 2872), +(112273, 'Erik', 1976, 'M', 2759), +(112274, 'Carl', 1976, 'M', 2672), +(112275, 'Zachary', 1976, 'M', 2650), +(112276, 'Bobby', 1976, 'M', 2642), +(112277, 'Shannon', 1976, 'M', 2613), +(112278, 'Marc', 1976, 'M', 2596), +(112279, 'Victor', 1976, 'M', 2532), +(112280, 'Jimmy', 1976, 'M', 2498), +(112281, 'Danny', 1976, 'M', 2493), +(112282, 'Roger', 1976, 'M', 2465), +(112283, 'Damon', 1976, 'M', 2456), +(112284, 'Vincent', 1976, 'M', 2456), +(112285, 'Curtis', 1976, 'M', 2454), +(112286, 'Alexander', 1976, 'M', 2446), +(112287, 'Brad', 1976, 'M', 2439), +(112288, 'Brett', 1976, 'M', 2417), +(112289, 'Luis', 1976, 'M', 2388), +(112290, 'Jon', 1976, 'M', 2326), +(112291, 'Christian', 1976, 'M', 2268), +(112292, 'Lawrence', 1976, 'M', 2253), +(112293, 'Nathaniel', 1976, 'M', 2212), +(112294, 'Alan', 1976, 'M', 2188), +(112295, 'Micheal', 1976, 'M', 2181), +(112296, 'Martin', 1976, 'M', 2174), +(112297, 'Joe', 1976, 'M', 2170), +(112298, 'Wesley', 1976, 'M', 2146), +(112299, 'Gerald', 1976, 'M', 2142), +(112300, 'Willie', 1976, 'M', 2134), +(112301, 'Henry', 1976, 'M', 2130), +(112302, 'Casey', 1976, 'M', 2128), +(112303, 'Adrian', 1976, 'M', 2120), +(112304, 'Andre', 1976, 'M', 2114), +(112305, 'Jay', 1976, 'M', 2105), +(112306, 'Walter', 1976, 'M', 2102), +(112307, 'Seth', 1976, 'M', 2100), +(112308, 'Jesus', 1976, 'M', 2039), +(112309, 'Mario', 1976, 'M', 2027), +(112310, 'Wayne', 1976, 'M', 2022), +(112311, 'Ricky', 1976, 'M', 1994), +(112312, 'Randall', 1976, 'M', 1984), +(112313, 'Allen', 1976, 'M', 1969), +(112314, 'Ian', 1976, 'M', 1941), +(112315, 'Albert', 1976, 'M', 1916), +(112316, 'Arthur', 1976, 'M', 1903), +(112317, 'Lee', 1976, 'M', 1878), +(112318, 'Roy', 1976, 'M', 1872), +(112319, 'Manuel', 1976, 'M', 1834), +(112320, 'Ricardo', 1976, 'M', 1785), +(112321, 'Louis', 1976, 'M', 1782), +(112322, 'Miguel', 1976, 'M', 1758), +(112323, 'Lance', 1976, 'M', 1737), +(112324, 'Frederick', 1976, 'M', 1731), +(112325, 'Tyrone', 1976, 'M', 1731), +(112326, 'Darren', 1976, 'M', 1696), +(112327, 'Bruce', 1976, 'M', 1690), +(112328, 'Jack', 1976, 'M', 1668), +(112329, 'Darrell', 1976, 'M', 1664), +(112330, 'Clinton', 1976, 'M', 1660), +(112331, 'Jorge', 1976, 'M', 1651), +(112332, 'Kristopher', 1976, 'M', 1610), +(112333, 'Chris', 1976, 'M', 1603), +(112334, 'Ronnie', 1976, 'M', 1595), +(112335, 'Roberto', 1976, 'M', 1586), +(112336, 'Francisco', 1976, 'M', 1573), +(112337, 'Kelly', 1976, 'M', 1540), +(112338, 'Eugene', 1976, 'M', 1514), +(112339, 'Ernest', 1976, 'M', 1489), +(112340, 'Dale', 1976, 'M', 1479), +(112341, 'Harold', 1976, 'M', 1437), +(112342, 'Jermaine', 1976, 'M', 1427), +(112343, 'Reginald', 1976, 'M', 1426), +(112344, 'Barry', 1976, 'M', 1425), +(112345, 'Jerome', 1976, 'M', 1412), +(112346, 'Steve', 1976, 'M', 1403), +(112347, 'Eddie', 1976, 'M', 1400), +(112348, 'Jaime', 1976, 'M', 1400), +(112349, 'Tommy', 1976, 'M', 1391), +(112350, 'Ruben', 1976, 'M', 1366), +(112351, 'Alex', 1976, 'M', 1361), +(112352, 'Neil', 1976, 'M', 1351), +(112353, 'Maurice', 1976, 'M', 1346), +(112354, 'Dwayne', 1976, 'M', 1326), +(112355, 'Glenn', 1976, 'M', 1319), +(112356, 'Leonard', 1976, 'M', 1310), +(112357, 'Geoffrey', 1976, 'M', 1297), +(112358, 'Tyler', 1976, 'M', 1263), +(112359, 'Trevor', 1976, 'M', 1258), +(112360, 'Marvin', 1976, 'M', 1254), +(112361, 'Hector', 1976, 'M', 1253), +(112362, 'Oscar', 1976, 'M', 1232), +(112363, 'Calvin', 1976, 'M', 1230), +(112364, 'Terrance', 1976, 'M', 1199), +(112365, 'Clayton', 1976, 'M', 1190), +(112366, 'Edwin', 1976, 'M', 1188), +(112367, 'Mitchell', 1976, 'M', 1188), +(112368, 'Theodore', 1976, 'M', 1173), +(112369, 'Terrence', 1976, 'M', 1165), +(112370, 'Melvin', 1976, 'M', 1164), +(112371, 'Ralph', 1976, 'M', 1164), +(112372, 'Mathew', 1976, 'M', 1163), +(112373, 'Joey', 1976, 'M', 1162), +(112374, 'Heath', 1976, 'M', 1151), +(112375, 'Stanley', 1976, 'M', 1150), +(112376, 'Angel', 1976, 'M', 1138), +(112377, 'Omar', 1976, 'M', 1138), +(112378, 'Raul', 1976, 'M', 1111), +(112379, 'Cody', 1976, 'M', 1098), +(112380, 'Toby', 1976, 'M', 1097), +(112381, 'Isaac', 1976, 'M', 1091), +(112382, 'Alejandro', 1976, 'M', 1073), +(112383, 'Cameron', 1976, 'M', 1069), +(112384, 'Clifford', 1976, 'M', 1066), +(112385, 'Javier', 1976, 'M', 1054), +(112386, 'Duane', 1976, 'M', 1050), +(112387, 'Howard', 1976, 'M', 1033), +(112388, 'Kurt', 1976, 'M', 1019), +(112389, 'Wade', 1976, 'M', 1009), +(112390, 'Damian', 1976, 'M', 995), +(112391, 'Eduardo', 1976, 'M', 995), +(112392, 'Jody', 1976, 'M', 995), +(112393, 'Ramon', 1976, 'M', 986), +(112394, 'Rafael', 1976, 'M', 975), +(112395, 'Harry', 1976, 'M', 967), +(112396, 'Armando', 1976, 'M', 959), +(112397, 'Pedro', 1976, 'M', 955), +(112398, 'Clarence', 1976, 'M', 953), +(112399, 'Earl', 1976, 'M', 941), +(112400, 'Leon', 1976, 'M', 926), +(112401, 'Luke', 1976, 'M', 918), +(112402, 'Andy', 1976, 'M', 914), +(112403, 'Byron', 1976, 'M', 906), +(112404, 'Alfred', 1976, 'M', 902), +(112405, 'Micah', 1976, 'M', 899), +(112406, 'Daryl', 1976, 'M', 896), +(112407, 'Kirk', 1976, 'M', 890), +(112408, 'Dean', 1976, 'M', 886), +(112409, 'Fernando', 1976, 'M', 885), +(112410, 'Lucas', 1976, 'M', 878), +(112411, 'Johnathan', 1976, 'M', 875), +(112412, 'Clifton', 1976, 'M', 871), +(112413, 'Karl', 1976, 'M', 869), +(112414, 'Clint', 1976, 'M', 867), +(112415, 'Cedric', 1976, 'M', 861), +(112416, 'Greg', 1976, 'M', 857), +(112417, 'Ray', 1976, 'M', 849), +(112418, 'Sergio', 1976, 'M', 844), +(112419, 'Francis', 1976, 'M', 839), +(112420, 'Brendan', 1976, 'M', 837), +(112421, 'Lonnie', 1976, 'M', 834), +(112422, 'Warren', 1976, 'M', 830), +(112423, 'Norman', 1976, 'M', 827), +(112424, 'Gilbert', 1976, 'M', 826), +(112425, 'Jessie', 1976, 'M', 822), +(112426, 'Franklin', 1976, 'M', 803), +(112427, 'Fred', 1976, 'M', 800), +(112428, 'Bernard', 1976, 'M', 796), +(112429, 'Colin', 1976, 'M', 787), +(112430, 'Marco', 1976, 'M', 787), +(112431, 'Tracy', 1976, 'M', 785), +(112432, 'Roderick', 1976, 'M', 783), +(112433, 'Evan', 1976, 'M', 779), +(112434, 'Jonathon', 1976, 'M', 776), +(112435, 'Spencer', 1976, 'M', 770), +(112436, 'Alvin', 1976, 'M', 767), +(112437, 'Julio', 1976, 'M', 759), +(112438, 'Leroy', 1976, 'M', 758), +(112439, 'Dominic', 1976, 'M', 751), +(112440, 'Glen', 1976, 'M', 751), +(112441, 'Jeff', 1976, 'M', 747), +(112442, 'Marlon', 1976, 'M', 744), +(112443, 'Julian', 1976, 'M', 734), +(112444, 'Kelvin', 1976, 'M', 733), +(112445, 'Nelson', 1976, 'M', 733), +(112446, 'Jarrod', 1976, 'M', 724), +(112447, 'Cesar', 1976, 'M', 721), +(112448, 'Don', 1976, 'M', 721), +(112449, 'Grant', 1976, 'M', 718), +(112450, 'Antoine', 1976, 'M', 715), +(112451, 'Erick', 1976, 'M', 712), +(112452, 'Alberto', 1976, 'M', 706), +(112453, 'Darryl', 1976, 'M', 705), +(112454, 'Donnie', 1976, 'M', 704), +(112455, 'Arturo', 1976, 'M', 693), +(112456, 'Rene', 1976, 'M', 687), +(112457, 'Ross', 1976, 'M', 680), +(112458, 'Gerardo', 1976, 'M', 679), +(112459, 'Lewis', 1976, 'M', 679), +(112460, 'Tyson', 1976, 'M', 678), +(112461, 'Dana', 1976, 'M', 671), +(112462, 'Damien', 1976, 'M', 663), +(112463, 'Edgar', 1976, 'M', 663), +(112464, 'Ivan', 1976, 'M', 662), +(112465, 'Demetrius', 1976, 'M', 655), +(112466, 'Marshall', 1976, 'M', 653), +(112467, 'Alfredo', 1976, 'M', 650), +(112468, 'Darin', 1976, 'M', 649), +(112469, 'Orlando', 1976, 'M', 649), +(112470, 'Vernon', 1976, 'M', 648), +(112471, 'Brock', 1976, 'M', 647), +(112472, 'Enrique', 1976, 'M', 646), +(112473, 'Fredrick', 1976, 'M', 634), +(112474, 'Herbert', 1976, 'M', 632), +(112475, 'Shaun', 1976, 'M', 625), +(112476, 'Chadwick', 1976, 'M', 619), +(112477, 'Jayson', 1976, 'M', 610), +(112478, 'Dwight', 1976, 'M', 602), +(112479, 'Lamont', 1976, 'M', 599), +(112480, 'Bradford', 1976, 'M', 594), +(112481, 'Mike', 1976, 'M', 593), +(112482, 'Ben', 1976, 'M', 590), +(112483, 'Quincy', 1976, 'M', 588), +(112484, 'Kerry', 1976, 'M', 583), +(112485, 'Stacy', 1976, 'M', 573), +(112486, 'Ethan', 1976, 'M', 571), +(112487, 'Trent', 1976, 'M', 570), +(112488, 'Abraham', 1976, 'M', 569), +(112489, 'Preston', 1976, 'M', 569), +(112490, 'Charlie', 1976, 'M', 565), +(112491, 'Israel', 1976, 'M', 565), +(112492, 'Stuart', 1976, 'M', 561), +(112493, 'Garrett', 1976, 'M', 560), +(112494, 'Jackie', 1976, 'M', 560), +(112495, 'Salvador', 1976, 'M', 558), +(112496, 'Blake', 1976, 'M', 557), +(112497, 'Ernesto', 1976, 'M', 556), +(112498, 'Angelo', 1976, 'M', 553), +(112499, 'Lorenzo', 1976, 'M', 553), +(112500, 'Jamal', 1976, 'M', 551), +(112501, 'Rickey', 1976, 'M', 551), +(112502, 'Neal', 1976, 'M', 548), +(112503, 'Noah', 1976, 'M', 545), +(112504, 'Courtney', 1976, 'M', 540), +(112505, 'Bryant', 1976, 'M', 538), +(112506, 'Leslie', 1976, 'M', 534), +(112507, 'Lloyd', 1976, 'M', 534), +(112508, 'Johnnie', 1976, 'M', 527), +(112509, 'Caleb', 1976, 'M', 526), +(112510, 'Quentin', 1976, 'M', 521), +(112511, 'Austin', 1976, 'M', 519), +(112512, 'Gordon', 1976, 'M', 518), +(112513, 'Jordan', 1976, 'M', 518), +(112514, 'Devin', 1976, 'M', 516), +(112515, 'Felix', 1976, 'M', 513), +(112516, 'Roland', 1976, 'M', 511), +(112517, 'Guy', 1976, 'M', 508), +(112518, 'Jimmie', 1976, 'M', 507), +(112519, 'Kent', 1976, 'M', 507), +(112520, 'Bret', 1976, 'M', 506), +(112521, 'Allan', 1976, 'M', 505), +(112522, 'Freddie', 1976, 'M', 503), +(112523, 'Terrell', 1976, 'M', 501), +(112524, 'Rudy', 1976, 'M', 499), +(112525, 'Andres', 1976, 'M', 487), +(112526, 'Gregg', 1976, 'M', 485), +(112527, 'Marty', 1976, 'M', 482), +(112528, 'Leo', 1976, 'M', 480), +(112529, 'Lester', 1976, 'M', 477), +(112530, 'Ashley', 1976, 'M', 475), +(112531, 'Darnell', 1976, 'M', 473), +(112532, 'Dewayne', 1976, 'M', 473), +(112533, 'Darrin', 1976, 'M', 466), +(112534, 'Gene', 1976, 'M', 462), +(112535, 'Rick', 1976, 'M', 462), +(112536, 'Perry', 1976, 'M', 460), +(112537, 'Damion', 1976, 'M', 457), +(112538, 'Marcos', 1976, 'M', 452), +(112539, 'Floyd', 1976, 'M', 448), +(112540, 'Bryce', 1976, 'M', 447), +(112541, 'Pablo', 1976, 'M', 447), +(112542, 'Scotty', 1976, 'M', 447), +(112543, 'Milton', 1976, 'M', 441), +(112544, 'Noel', 1976, 'M', 441), +(112545, 'Herman', 1976, 'M', 437), +(112546, 'Clay', 1976, 'M', 435), +(112547, 'Ted', 1976, 'M', 431), +(112548, 'Jamey', 1976, 'M', 429), +(112549, 'Jake', 1976, 'M', 428), +(112550, 'Rodolfo', 1976, 'M', 426), +(112551, 'Terence', 1976, 'M', 421), +(112552, 'Drew', 1976, 'M', 420), +(112553, 'Jim', 1976, 'M', 419), +(112554, 'Levi', 1976, 'M', 418), +(112555, 'Kenny', 1976, 'M', 417), +(112556, 'Donny', 1976, 'M', 414), +(112557, 'Frankie', 1976, 'M', 414), +(112558, 'Kendrick', 1976, 'M', 412), +(112559, 'Cornelius', 1976, 'M', 411), +(112560, 'Max', 1976, 'M', 409), +(112561, 'Nick', 1976, 'M', 406), +(112562, 'Rocky', 1976, 'M', 405), +(112563, 'Brady', 1976, 'M', 402), +(112564, 'Dan', 1976, 'M', 401), +(112565, 'Dylan', 1976, 'M', 401), +(112566, 'Sam', 1976, 'M', 399), +(112567, 'Simon', 1976, 'M', 399), +(112568, 'Carlton', 1976, 'M', 396), +(112569, 'Abel', 1976, 'M', 395), +(112570, 'Robin', 1976, 'M', 394), +(112571, 'Sheldon', 1976, 'M', 392), +(112572, 'Josh', 1976, 'M', 389), +(112573, 'Clyde', 1976, 'M', 386), +(112574, 'Alfonso', 1976, 'M', 382), +(112575, 'Randolph', 1976, 'M', 382), +(112576, 'Eli', 1976, 'M', 381), +(112577, 'Kareem', 1976, 'M', 378), +(112578, 'Dion', 1976, 'M', 377), +(112579, 'Rusty', 1976, 'M', 377), +(112580, 'Beau', 1976, 'M', 372), +(112581, 'Felipe', 1976, 'M', 372), +(112582, 'Chester', 1976, 'M', 371), +(112583, 'Loren', 1976, 'M', 371), +(112584, 'Bill', 1976, 'M', 367), +(112585, 'Gerard', 1976, 'M', 366), +(112586, 'Garry', 1976, 'M', 362), +(112587, 'Lamar', 1976, 'M', 362), +(112588, 'Salvatore', 1976, 'M', 362), +(112589, 'Gilberto', 1976, 'M', 361), +(112590, 'Guillermo', 1976, 'M', 358), +(112591, 'Cecil', 1976, 'M', 351), +(112592, 'Donovan', 1976, 'M', 349), +(112593, 'Julius', 1976, 'M', 349), +(112594, 'Ismael', 1976, 'M', 348), +(112595, 'Bryon', 1976, 'M', 347), +(112596, 'Ron', 1976, 'M', 345), +(112597, 'Sidney', 1976, 'M', 344), +(112598, 'Myron', 1976, 'M', 343), +(112599, 'Rolando', 1976, 'M', 343), +(112600, 'Sammy', 1976, 'M', 343), +(112601, 'Matt', 1976, 'M', 340), +(112602, 'Malcolm', 1976, 'M', 338), +(112603, 'Oliver', 1976, 'M', 337), +(112604, 'Rogelio', 1976, 'M', 337), +(112605, 'Stacey', 1976, 'M', 336), +(112606, 'Ty', 1976, 'M', 335), +(112607, 'Harvey', 1976, 'M', 329), +(112608, 'Dallas', 1976, 'M', 327), +(112609, 'Cary', 1976, 'M', 325), +(112610, 'Otis', 1976, 'M', 322), +(112611, 'Colby', 1976, 'M', 320), +(112612, 'Everett', 1976, 'M', 319), +(112613, 'Gavin', 1976, 'M', 319), +(112614, 'Moses', 1976, 'M', 319), +(112615, 'Rico', 1976, 'M', 319), +(112616, 'Gustavo', 1976, 'M', 318), +(112617, 'Mickey', 1976, 'M', 318), +(112618, 'Derick', 1976, 'M', 317), +(112619, 'Roman', 1976, 'M', 317), +(112620, 'Tom', 1976, 'M', 317), +(112621, 'Jeromy', 1976, 'M', 313), +(112622, 'Robbie', 1976, 'M', 312), +(112623, 'Elias', 1976, 'M', 311), +(112624, 'Nicolas', 1976, 'M', 308), +(112625, 'Ramiro', 1976, 'M', 307), +(112626, 'Devon', 1976, 'M', 306), +(112627, 'Arnold', 1976, 'M', 305), +(112628, 'Morgan', 1976, 'M', 305), +(112629, 'Guadalupe', 1976, 'M', 304), +(112630, 'Alonzo', 1976, 'M', 302), +(112631, 'Elijah', 1976, 'M', 301), +(112632, 'Kris', 1976, 'M', 299), +(112633, 'Dante', 1976, 'M', 298), +(112634, 'Erin', 1976, 'M', 296), +(112635, 'Darrick', 1976, 'M', 295), +(112636, 'Saul', 1976, 'M', 295), +(112637, 'Demond', 1976, 'M', 293), +(112638, 'Xavier', 1976, 'M', 291), +(112639, 'Sherman', 1976, 'M', 290), +(112640, 'Tim', 1976, 'M', 290), +(112641, 'Teddy', 1976, 'M', 289), +(112642, 'Benny', 1976, 'M', 286), +(112643, 'Tomas', 1976, 'M', 284), +(112644, 'Wendell', 1976, 'M', 284), +(112645, 'Rex', 1976, 'M', 283), +(112646, 'Stephan', 1976, 'M', 283), +(112647, 'Timmy', 1976, 'M', 283), +(112648, 'Earnest', 1976, 'M', 281), +(112649, 'Kendall', 1976, 'M', 280), +(112650, 'Forrest', 1976, 'M', 279), +(112651, 'Owen', 1976, 'M', 279), +(112652, 'Antwan', 1976, 'M', 278), +(112653, 'Scottie', 1976, 'M', 278), +(112654, 'Dexter', 1976, 'M', 277), +(112655, 'Jess', 1976, 'M', 277), +(112656, 'Tobias', 1976, 'M', 277), +(112657, 'Dominick', 1976, 'M', 274), +(112658, 'Kory', 1976, 'M', 274), +(112659, 'Sonny', 1976, 'M', 274), +(112660, 'Darius', 1976, 'M', 273), +(112661, 'Reynaldo', 1976, 'M', 272), +(112662, 'Claude', 1976, 'M', 268), +(112663, 'Reuben', 1976, 'M', 268), +(112664, 'Thaddeus', 1976, 'M', 267), +(112665, 'Jamison', 1976, 'M', 266), +(112666, 'Lionel', 1976, 'M', 266), +(112667, 'Virgil', 1976, 'M', 265), +(112668, 'Alton', 1976, 'M', 264), +(112669, 'Ira', 1976, 'M', 264), +(112670, 'Morris', 1976, 'M', 263), +(112671, 'Blaine', 1976, 'M', 261), +(112672, 'Pete', 1976, 'M', 261), +(112673, 'Fabian', 1976, 'M', 260), +(112674, 'Randal', 1976, 'M', 260), +(112675, 'Jarrett', 1976, 'M', 258), +(112676, 'Carey', 1976, 'M', 257), +(112677, 'Desmond', 1976, 'M', 257), +(112678, 'Kristian', 1976, 'M', 257), +(112679, 'Wallace', 1976, 'M', 257), +(112680, 'Esteban', 1976, 'M', 256), +(112681, 'Trenton', 1976, 'M', 255), +(112682, 'Donnell', 1976, 'M', 254), +(112683, 'Stewart', 1976, 'M', 254), +(112684, 'Leonardo', 1976, 'M', 253), +(112685, 'Mason', 1976, 'M', 251), +(112686, 'Graham', 1976, 'M', 249), +(112687, 'Torrey', 1976, 'M', 249), +(112688, 'Joaquin', 1976, 'M', 248), +(112689, 'Joesph', 1976, 'M', 248), +(112690, 'Aron', 1976, 'M', 247), +(112691, 'Quinton', 1976, 'M', 247), +(112692, 'Efrain', 1976, 'M', 245), +(112693, 'Jerrod', 1976, 'M', 244), +(112694, 'Luther', 1976, 'M', 244), +(112695, 'Hugh', 1976, 'M', 242), +(112696, 'Hugo', 1976, 'M', 242), +(112697, 'Rory', 1976, 'M', 242), +(112698, 'Marion', 1976, 'M', 241), +(112699, 'Taylor', 1976, 'M', 241), +(112700, 'Moises', 1976, 'M', 240), +(112701, 'Bart', 1976, 'M', 239), +(112702, 'Erich', 1976, 'M', 239), +(112703, 'Scot', 1976, 'M', 236), +(112704, 'Avery', 1976, 'M', 235), +(112705, 'Emanuel', 1976, 'M', 235), +(112706, 'Jeramy', 1976, 'M', 235), +(112707, 'Zachariah', 1976, 'M', 235), +(112708, 'Jeremie', 1976, 'M', 234), +(112709, 'Collin', 1976, 'M', 232), +(112710, 'Jerald', 1976, 'M', 232), +(112711, 'Jamaal', 1976, 'M', 231), +(112712, 'Jamel', 1976, 'M', 231), +(112713, 'Elliott', 1976, 'M', 229), +(112714, 'Vicente', 1976, 'M', 229), +(112715, 'Santiago', 1976, 'M', 227), +(112716, 'Deon', 1976, 'M', 225), +(112717, 'Freddy', 1976, 'M', 224), +(112718, 'Will', 1976, 'M', 223), +(112719, 'Lyle', 1976, 'M', 222), +(112720, 'Landon', 1976, 'M', 221), +(112721, 'Rodrick', 1976, 'M', 220), +(112722, 'Tory', 1976, 'M', 220), +(112723, 'Bennie', 1976, 'M', 219), +(112724, 'Jean', 1976, 'M', 219), +(112725, 'Jed', 1976, 'M', 219), +(112726, 'Wilson', 1976, 'M', 218), +(112727, 'Elton', 1976, 'M', 217), +(112728, 'Amos', 1976, 'M', 215), +(112729, 'Aric', 1976, 'M', 215), +(112730, 'Elliot', 1976, 'M', 215), +(112731, 'Alexis', 1976, 'M', 214), +(112732, 'Jeramie', 1976, 'M', 213), +(112733, 'Curt', 1976, 'M', 211), +(112734, 'Johnathon', 1976, 'M', 210), +(112735, 'Kristofer', 1976, 'M', 210), +(112736, 'Darrel', 1976, 'M', 209), +(112737, 'Ignacio', 1976, 'M', 209), +(112738, 'Vance', 1976, 'M', 209), +(112739, 'Stefan', 1976, 'M', 208), +(112740, 'Reggie', 1976, 'M', 207), +(112741, 'Roosevelt', 1976, 'M', 207), +(112742, 'Telly', 1976, 'M', 207), +(112743, 'Jamar', 1976, 'M', 206), +(112744, 'Leland', 1976, 'M', 206), +(112745, 'Carlo', 1976, 'M', 205), +(112746, 'Emmanuel', 1976, 'M', 205), +(112747, 'Wilfredo', 1976, 'M', 205), +(112748, 'Dorian', 1976, 'M', 204), +(112749, 'Jarod', 1976, 'M', 204), +(112750, 'Nolan', 1976, 'M', 203), +(112751, 'Archie', 1976, 'M', 202), +(112752, 'Isaiah', 1976, 'M', 201), +(112753, 'Jennifer', 1976, 'M', 200), +(112754, 'Monte', 1976, 'M', 200), +(112755, 'Nathanael', 1976, 'M', 199), +(112756, 'Rudolph', 1976, 'M', 199), +(112757, 'Shad', 1976, 'M', 199), +(112758, 'Ali', 1976, 'M', 198), +(112759, 'Edmund', 1976, 'M', 198), +(112760, 'Kurtis', 1976, 'M', 198), +(112761, 'Clark', 1976, 'M', 197), +(112762, 'Humberto', 1976, 'M', 197), +(112763, 'Hans', 1976, 'M', 196), +(112764, 'Miles', 1976, 'M', 196), +(112765, 'Jeffry', 1976, 'M', 195), +(112766, 'Jefferson', 1976, 'M', 194), +(112767, 'Jonas', 1976, 'M', 194), +(112768, 'Solomon', 1976, 'M', 193), +(112769, 'Brant', 1976, 'M', 190), +(112770, 'Anton', 1976, 'M', 189), +(112771, 'Sterling', 1976, 'M', 189), +(112772, 'Sylvester', 1976, 'M', 189), +(112773, 'Jarvis', 1976, 'M', 187), +(112774, 'Jasen', 1976, 'M', 187), +(112775, 'Adan', 1976, 'M', 186), +(112776, 'Elmer', 1976, 'M', 184), +(112777, 'Jonah', 1976, 'M', 184), +(112778, 'Mack', 1976, 'M', 184), +(112779, 'Andrea', 1976, 'M', 183), +(112780, 'Noe', 1976, 'M', 183), +(112781, 'Daren', 1976, 'M', 182), +(112782, 'Emilio', 1976, 'M', 182), +(112783, 'Kenyatta', 1976, 'M', 182), +(112784, 'Lynn', 1976, 'M', 182), +(112785, 'Raphael', 1976, 'M', 182), +(112786, 'Tommie', 1976, 'M', 182), +(112787, 'Wyatt', 1976, 'M', 182), +(112788, 'Willis', 1976, 'M', 181), +(112789, 'Dave', 1976, 'M', 180), +(112790, 'Deandre', 1976, 'M', 180), +(112791, 'Branden', 1976, 'M', 178), +(112792, 'Dusty', 1976, 'M', 178), +(112793, 'Jackson', 1976, 'M', 178), +(112794, 'Ariel', 1976, 'M', 176), +(112795, 'Brendon', 1976, 'M', 176), +(112796, 'Shelby', 1976, 'M', 176), +(112797, 'Tyree', 1976, 'M', 176), +(112798, 'Willard', 1976, 'M', 176), +(112799, 'Ellis', 1976, 'M', 175), +(112800, 'Josue', 1976, 'M', 175), +(112801, 'Benito', 1976, 'M', 174), +(112802, 'Laurence', 1976, 'M', 174), +(112803, 'Shayne', 1976, 'M', 174), +(112804, 'Nickolas', 1976, 'M', 173), +(112805, 'Rodrigo', 1976, 'M', 173), +(112806, 'Santos', 1976, 'M', 173), +(112807, 'Royce', 1976, 'M', 172), +(112808, 'Buddy', 1976, 'M', 170), +(112809, 'Agustin', 1976, 'M', 169), +(112810, 'Conrad', 1976, 'M', 169), +(112811, 'Harley', 1976, 'M', 169), +(112812, 'Marquis', 1976, 'M', 169), +(112813, 'Tavares', 1976, 'M', 169), +(112814, 'Tyron', 1976, 'M', 169), +(112815, 'Marcel', 1976, 'M', 167), +(112816, 'Marlin', 1976, 'M', 166), +(112817, 'Tremayne', 1976, 'M', 166), +(112818, 'Blair', 1976, 'M', 165), +(112819, 'Denny', 1976, 'M', 165), +(112820, 'Domingo', 1976, 'M', 165), +(112821, 'Bradly', 1976, 'M', 164), +(112822, 'Grady', 1976, 'M', 164), +(112823, 'Jerod', 1976, 'M', 164), +(112824, 'Robby', 1976, 'M', 164), +(112825, 'Aubrey', 1976, 'M', 162), +(112826, 'Jarred', 1976, 'M', 162), +(112827, 'Horace', 1976, 'M', 161), +(112828, 'Giovanni', 1976, 'M', 160), +(112829, 'Waylon', 1976, 'M', 160), +(112830, 'Carter', 1976, 'M', 159), +(112831, 'Abdul', 1976, 'M', 157), +(112832, 'Al', 1976, 'M', 157), +(112833, 'Barrett', 1976, 'M', 156), +(112834, 'Dane', 1976, 'M', 156), +(112835, 'Korey', 1976, 'M', 156), +(112836, 'Monty', 1976, 'M', 156), +(112837, 'Cedrick', 1976, 'M', 155), +(112838, 'Shelton', 1976, 'M', 155), +(112839, 'Arron', 1976, 'M', 154), +(112840, 'Brain', 1976, 'M', 154), +(112841, 'Donte', 1976, 'M', 154), +(112842, 'Lane', 1976, 'M', 154), +(112843, 'Jeremey', 1976, 'M', 153), +(112844, 'Tracey', 1976, 'M', 152), +(112845, 'Delbert', 1976, 'M', 151), +(112846, 'Heriberto', 1976, 'M', 151), +(112847, 'Reid', 1976, 'M', 151), +(112848, 'Rigoberto', 1976, 'M', 151), +(112849, 'Chuck', 1976, 'M', 150), +(112850, 'Ernie', 1976, 'M', 150), +(112851, 'Wilbert', 1976, 'M', 150), +(112852, 'Darian', 1976, 'M', 149), +(112853, 'Ezra', 1976, 'M', 149), +(112854, 'Lincoln', 1976, 'M', 149), +(112855, 'Rufus', 1976, 'M', 149), +(112856, 'Winston', 1976, 'M', 149), +(112857, 'Elvis', 1976, 'M', 148), +(112858, 'Hubert', 1976, 'M', 148), +(112859, 'Louie', 1976, 'M', 148), +(112860, 'Federico', 1976, 'M', 147), +(112861, 'Issac', 1976, 'M', 147), +(112862, 'Jan', 1976, 'M', 147), +(112863, 'Stevie', 1976, 'M', 147), +(112864, 'Bert', 1976, 'M', 146), +(112865, 'Shon', 1976, 'M', 146), +(112866, 'Tad', 1976, 'M', 146), +(112867, 'Van', 1976, 'M', 146), +(112868, 'Kenyon', 1976, 'M', 145), +(112869, 'Lowell', 1976, 'M', 145), +(112870, 'Edwardo', 1976, 'M', 144), +(112871, 'Ervin', 1976, 'M', 144), +(112872, 'Kasey', 1976, 'M', 144), +(112873, 'Cole', 1976, 'M', 142), +(112874, 'Mauricio', 1976, 'M', 142), +(112875, 'Pierre', 1976, 'M', 142), +(112876, 'Antione', 1976, 'M', 141), +(112877, 'Quinn', 1976, 'M', 141), +(112878, 'Rodger', 1976, 'M', 141), +(112879, 'Brenton', 1976, 'M', 140), +(112880, 'Carson', 1976, 'M', 140), +(112881, 'Chance', 1976, 'M', 140), +(112882, 'Chet', 1976, 'M', 140), +(112883, 'Jamil', 1976, 'M', 140), +(112884, 'Ken', 1976, 'M', 140), +(112885, 'Reed', 1976, 'M', 140), +(112886, 'Rocco', 1976, 'M', 140), +(112887, 'Bob', 1976, 'M', 139), +(112888, 'Brice', 1976, 'M', 139), +(112889, 'Lenny', 1976, 'M', 139), +(112890, 'Malik', 1976, 'M', 139), +(112891, 'Weston', 1976, 'M', 139), +(112892, 'Deshawn', 1976, 'M', 138), +(112893, 'Percy', 1976, 'M', 138), +(112894, 'Zane', 1976, 'M', 138), +(112895, 'Galen', 1976, 'M', 137), +(112896, 'Kim', 1976, 'M', 137), +(112897, 'Danial', 1976, 'M', 136), +(112898, 'Denis', 1976, 'M', 136), +(112899, 'Adolfo', 1976, 'M', 135), +(112900, 'Dameon', 1976, 'M', 135), +(112901, 'Chase', 1976, 'M', 134), +(112902, 'Cornell', 1976, 'M', 134), +(112903, 'Dewey', 1976, 'M', 134), +(112904, 'Jude', 1976, 'M', 134), +(112905, 'Rhett', 1976, 'M', 134), +(112906, 'Markus', 1976, 'M', 133), +(112907, 'Octavio', 1976, 'M', 133), +(112908, 'Thad', 1976, 'M', 133), +(112909, 'Emmett', 1976, 'M', 132), +(112910, 'Bernardo', 1976, 'M', 131), +(112911, 'Hunter', 1976, 'M', 131), +(112912, 'Rickie', 1976, 'M', 130), +(112913, 'Abram', 1976, 'M', 129), +(112914, 'Mikel', 1976, 'M', 129), +(112915, 'Sedrick', 1976, 'M', 129), +(112916, 'Jovan', 1976, 'M', 128), +(112917, 'Keenan', 1976, 'M', 128), +(112918, 'Alphonso', 1976, 'M', 127), +(112919, 'Osvaldo', 1976, 'M', 127), +(112920, 'Vaughn', 1976, 'M', 127), +(112921, 'Daron', 1976, 'M', 126), +(112922, 'Theron', 1976, 'M', 126), +(112923, 'Cleveland', 1976, 'M', 125), +(112924, 'Jayme', 1976, 'M', 125), +(112925, 'Nigel', 1976, 'M', 124), +(112926, 'Brooks', 1976, 'M', 123), +(112927, 'Dirk', 1976, 'M', 123), +(112928, 'Edmond', 1976, 'M', 123), +(112929, 'Elvin', 1976, 'M', 123), +(112930, 'Josiah', 1976, 'M', 123), +(112931, 'Nicky', 1976, 'M', 123), +(112932, 'Sebastian', 1976, 'M', 123), +(112933, 'Ahmad', 1976, 'M', 120), +(112934, 'Antony', 1976, 'M', 120), +(112935, 'Davin', 1976, 'M', 120), +(112936, 'Kip', 1976, 'M', 120), +(112937, 'Titus', 1976, 'M', 120), +(112938, 'Gino', 1976, 'M', 119), +(112939, 'Kirby', 1976, 'M', 119), +(112940, 'Laron', 1976, 'M', 119), +(112941, 'Doyle', 1976, 'M', 118), +(112942, 'Jasper', 1976, 'M', 118), +(112943, 'Kelley', 1976, 'M', 118), +(112944, 'Michel', 1976, 'M', 118), +(112945, 'Alvaro', 1976, 'M', 117), +(112946, 'Deangelo', 1976, 'M', 117), +(112947, 'Gregorio', 1976, 'M', 117), +(112948, 'Leonel', 1976, 'M', 117), +(112949, 'Chadrick', 1976, 'M', 116), +(112950, 'Coby', 1976, 'M', 116), +(112951, 'Jade', 1976, 'M', 116), +(112952, 'Nathanial', 1976, 'M', 116), +(112953, 'Diego', 1976, 'M', 115), +(112954, 'Doug', 1976, 'M', 115), +(112955, 'Dedrick', 1976, 'M', 114), +(112956, 'Jammie', 1976, 'M', 114), +(112957, 'Ulysses', 1976, 'M', 114), +(112958, 'Antwon', 1976, 'M', 113), +(112959, 'Logan', 1976, 'M', 113), +(112960, 'Davis', 1976, 'M', 112), +(112961, 'Giuseppe', 1976, 'M', 112), +(112962, 'Rashad', 1976, 'M', 112), +(112963, 'Taurus', 1976, 'M', 112), +(112964, 'Boyd', 1976, 'M', 111), +(112965, 'Denver', 1976, 'M', 111), +(112966, 'Fidel', 1976, 'M', 111), +(112967, 'Garth', 1976, 'M', 111), +(112968, 'Jevon', 1976, 'M', 111), +(112969, 'Billie', 1976, 'M', 110), +(112970, 'Errol', 1976, 'M', 110), +(112971, 'Nakia', 1976, 'M', 110), +(112972, 'Trinity', 1976, 'M', 110), +(112973, 'Tristan', 1976, 'M', 110), +(112974, 'Vito', 1976, 'M', 110), +(112975, 'Demarcus', 1976, 'M', 109), +(112976, 'Francesco', 1976, 'M', 109), +(112977, 'Hassan', 1976, 'M', 109), +(112978, 'Homer', 1976, 'M', 109), +(112979, 'Torrance', 1976, 'M', 109), +(112980, 'Zachery', 1976, 'M', 109), +(112981, 'Trever', 1976, 'M', 108), +(112982, 'August', 1976, 'M', 107), +(112983, 'Dejuan', 1976, 'M', 107), +(112984, 'Garrick', 1976, 'M', 107), +(112985, 'Moshe', 1976, 'M', 107), +(112986, 'Raymundo', 1976, 'M', 107), +(112987, 'Ronny', 1976, 'M', 107), +(112988, 'Seneca', 1976, 'M', 107), +(112989, 'Brannon', 1976, 'M', 106), +(112990, 'Hiram', 1976, 'M', 106), +(112991, 'Kenya', 1976, 'M', 106), +(112992, 'Keven', 1976, 'M', 106), +(112993, 'Riley', 1976, 'M', 106), +(112994, 'Woodrow', 1976, 'M', 106), +(112995, 'Elbert', 1976, 'M', 105), +(112996, 'Gerry', 1976, 'M', 105), +(112997, 'Jacques', 1976, 'M', 105), +(112998, 'Jereme', 1976, 'M', 105), +(112999, 'Trey', 1976, 'M', 105), +(113000, 'Wilbur', 1976, 'M', 105), +(113001, 'Dax', 1976, 'M', 104), +(113002, 'Garland', 1976, 'M', 104), +(113003, 'Terrill', 1976, 'M', 104), +(113004, 'Brook', 1976, 'M', 103), +(113005, 'Harrison', 1976, 'M', 103), +(113006, 'Jermey', 1976, 'M', 103), +(113007, 'Junior', 1976, 'M', 103), +(113008, 'Quintin', 1976, 'M', 102), +(113009, 'Shea', 1976, 'M', 102), +(113010, 'Tobin', 1976, 'M', 102), +(113011, 'Ari', 1976, 'M', 101), +(113012, 'Coy', 1976, 'M', 101), +(113013, 'Judd', 1976, 'M', 101), +(113014, 'Kelsey', 1976, 'M', 101), +(113015, 'Lashawn', 1976, 'M', 101), +(113016, 'Brennan', 1976, 'M', 100), +(113017, 'Silas', 1976, 'M', 100), +(113018, 'Jennifer', 1977, 'F', 58960), +(113019, 'Melissa', 1977, 'F', 26884), +(113020, 'Amy', 1977, 'F', 26730), +(113021, 'Jessica', 1977, 'F', 24844), +(113022, 'Heather', 1977, 'F', 23772), +(113023, 'Angela', 1977, 'F', 20996), +(113024, 'Michelle', 1977, 'F', 19538), +(113025, 'Kimberly', 1977, 'F', 18286), +(113026, 'Amanda', 1977, 'F', 18280), +(113027, 'Kelly', 1977, 'F', 18235), +(113028, 'Sarah', 1977, 'F', 18096), +(113029, 'Lisa', 1977, 'F', 17012), +(113030, 'Elizabeth', 1977, 'F', 16425), +(113031, 'Stephanie', 1977, 'F', 15419), +(113032, 'Nicole', 1977, 'F', 15252), +(113033, 'Christina', 1977, 'F', 14496), +(113034, 'Rebecca', 1977, 'F', 14194), +(113035, 'Jamie', 1977, 'F', 12900), +(113036, 'Shannon', 1977, 'F', 12519), +(113037, 'Laura', 1977, 'F', 11323), +(113038, 'Mary', 1977, 'F', 10661), +(113039, 'Julie', 1977, 'F', 10201), +(113040, 'Erin', 1977, 'F', 10200), +(113041, 'Andrea', 1977, 'F', 9786), +(113042, 'Crystal', 1977, 'F', 9726), +(113043, 'Rachel', 1977, 'F', 8975), +(113044, 'Sara', 1977, 'F', 8709), +(113045, 'Carrie', 1977, 'F', 8662), +(113046, 'April', 1977, 'F', 8067), +(113047, 'Christine', 1977, 'F', 7886), +(113048, 'Danielle', 1977, 'F', 7616), +(113049, 'Karen', 1977, 'F', 7441), +(113050, 'Amber', 1977, 'F', 7206), +(113051, 'Tiffany', 1977, 'F', 7206), +(113052, 'Tara', 1977, 'F', 7199), +(113053, 'Maria', 1977, 'F', 7074), +(113054, 'Emily', 1977, 'F', 6880), +(113055, 'Erica', 1977, 'F', 6621), +(113056, 'Monica', 1977, 'F', 6368), +(113057, 'Misty', 1977, 'F', 6314), +(113058, 'Jill', 1977, 'F', 6241), +(113059, 'Stacy', 1977, 'F', 6154), +(113060, 'Dawn', 1977, 'F', 6094), +(113061, 'Katherine', 1977, 'F', 6031), +(113062, 'Susan', 1977, 'F', 5954), +(113063, 'Patricia', 1977, 'F', 5907), +(113064, 'Jaime', 1977, 'F', 5906), +(113065, 'Cynthia', 1977, 'F', 5783), +(113066, 'Wendy', 1977, 'F', 5763), +(113067, 'Tracy', 1977, 'F', 5757), +(113068, 'Brandy', 1977, 'F', 5476), +(113069, 'Holly', 1977, 'F', 5463), +(113070, 'Melanie', 1977, 'F', 5369), +(113071, 'Megan', 1977, 'F', 5324), +(113072, 'Tammy', 1977, 'F', 5309), +(113073, 'Stacey', 1977, 'F', 5208), +(113074, 'Lori', 1977, 'F', 5071), +(113075, 'Tina', 1977, 'F', 4950), +(113076, 'Christy', 1977, 'F', 4602), +(113077, 'Alicia', 1977, 'F', 4402), +(113078, 'Sandra', 1977, 'F', 4370), +(113079, 'Dana', 1977, 'F', 4340), +(113080, 'Sabrina', 1977, 'F', 4303), +(113081, 'Tonya', 1977, 'F', 4265), +(113082, 'Leslie', 1977, 'F', 4250), +(113083, 'Allison', 1977, 'F', 4207), +(113084, 'Tanya', 1977, 'F', 4085), +(113085, 'Kristy', 1977, 'F', 4045), +(113086, 'Natalie', 1977, 'F', 4041), +(113087, 'Kathryn', 1977, 'F', 3968), +(113088, 'Brandi', 1977, 'F', 3882), +(113089, 'Kristen', 1977, 'F', 3862), +(113090, 'Veronica', 1977, 'F', 3856), +(113091, 'Anna', 1977, 'F', 3850), +(113092, 'Catherine', 1977, 'F', 3842), +(113093, 'Courtney', 1977, 'F', 3808), +(113094, 'Michele', 1977, 'F', 3712), +(113095, 'Denise', 1977, 'F', 3681), +(113096, 'Teresa', 1977, 'F', 3655), +(113097, 'Kathleen', 1977, 'F', 3649), +(113098, 'Heidi', 1977, 'F', 3643); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(113099, 'Kristin', 1977, 'F', 3606), +(113100, 'Kristina', 1977, 'F', 3539), +(113101, 'Robin', 1977, 'F', 3431), +(113102, 'Samantha', 1977, 'F', 3283), +(113103, 'Valerie', 1977, 'F', 3270), +(113104, 'Renee', 1977, 'F', 3258), +(113105, 'Gina', 1977, 'F', 3230), +(113106, 'Nancy', 1977, 'F', 3222), +(113107, 'Vanessa', 1977, 'F', 3208), +(113108, 'Brenda', 1977, 'F', 3151), +(113109, 'Jacqueline', 1977, 'F', 3145), +(113110, 'Tamara', 1977, 'F', 3122), +(113111, 'Mandy', 1977, 'F', 3102), +(113112, 'Sharon', 1977, 'F', 3090), +(113113, 'Melinda', 1977, 'F', 3045), +(113114, 'Beth', 1977, 'F', 2967), +(113115, 'Theresa', 1977, 'F', 2916), +(113116, 'Linda', 1977, 'F', 2909), +(113117, 'Diana', 1977, 'F', 2848), +(113118, 'Barbara', 1977, 'F', 2841), +(113119, 'Pamela', 1977, 'F', 2831), +(113120, 'Erika', 1977, 'F', 2823), +(113121, 'Kristi', 1977, 'F', 2797), +(113122, 'Jodi', 1977, 'F', 2729), +(113123, 'Ashley', 1977, 'F', 2705), +(113124, 'Victoria', 1977, 'F', 2700), +(113125, 'Jenny', 1977, 'F', 2687), +(113126, 'Deborah', 1977, 'F', 2676), +(113127, 'Lindsay', 1977, 'F', 2635), +(113128, 'Margaret', 1977, 'F', 2624), +(113129, 'Leah', 1977, 'F', 2587), +(113130, 'Donna', 1977, 'F', 2583), +(113131, 'Lauren', 1977, 'F', 2550), +(113132, 'Katie', 1977, 'F', 2505), +(113133, 'Natasha', 1977, 'F', 2505), +(113134, 'Kelli', 1977, 'F', 2466), +(113135, 'Ann', 1977, 'F', 2453), +(113136, 'Summer', 1977, 'F', 2446), +(113137, 'Kara', 1977, 'F', 2416), +(113138, 'Alison', 1977, 'F', 2376), +(113139, 'Suzanne', 1977, 'F', 2372), +(113140, 'Anne', 1977, 'F', 2354), +(113141, 'Regina', 1977, 'F', 2326), +(113142, 'Latoya', 1977, 'F', 2319), +(113143, 'Katrina', 1977, 'F', 2298), +(113144, 'Aimee', 1977, 'F', 2289), +(113145, 'Felicia', 1977, 'F', 2219), +(113146, 'Carolyn', 1977, 'F', 2195), +(113147, 'Kari', 1977, 'F', 2164), +(113148, 'Rhonda', 1977, 'F', 2162), +(113149, 'Cindy', 1977, 'F', 2159), +(113150, 'Angel', 1977, 'F', 2137), +(113151, 'Cheryl', 1977, 'F', 2122), +(113152, 'Yolanda', 1977, 'F', 2120), +(113153, 'Joy', 1977, 'F', 2100), +(113154, 'Carla', 1977, 'F', 2099), +(113155, 'Deanna', 1977, 'F', 2096), +(113156, 'Shawna', 1977, 'F', 2081), +(113157, 'Sherry', 1977, 'F', 2072), +(113158, 'Julia', 1977, 'F', 2068), +(113159, 'Molly', 1977, 'F', 2067), +(113160, 'Nichole', 1977, 'F', 2063), +(113161, 'Paula', 1977, 'F', 2042), +(113162, 'Colleen', 1977, 'F', 1997), +(113163, 'Debra', 1977, 'F', 1964), +(113164, 'Janet', 1977, 'F', 1943), +(113165, 'Jaclyn', 1977, 'F', 1939), +(113166, 'Marie', 1977, 'F', 1910), +(113167, 'Brooke', 1977, 'F', 1870), +(113168, 'Shelly', 1977, 'F', 1848), +(113169, 'Kendra', 1977, 'F', 1774), +(113170, 'Meredith', 1977, 'F', 1768), +(113171, 'Laurie', 1977, 'F', 1767), +(113172, 'Krista', 1977, 'F', 1763), +(113173, 'Christie', 1977, 'F', 1757), +(113174, 'Kristie', 1977, 'F', 1757), +(113175, 'Tamika', 1977, 'F', 1696), +(113176, 'Adrienne', 1977, 'F', 1692), +(113177, 'Cassandra', 1977, 'F', 1672), +(113178, 'Monique', 1977, 'F', 1672), +(113179, 'Trisha', 1977, 'F', 1658), +(113180, 'Sheila', 1977, 'F', 1656), +(113181, 'Diane', 1977, 'F', 1646), +(113182, 'Bridget', 1977, 'F', 1643), +(113183, 'Carmen', 1977, 'F', 1630), +(113184, 'Marisa', 1977, 'F', 1608), +(113185, 'Shanna', 1977, 'F', 1608), +(113186, 'Virginia', 1977, 'F', 1599), +(113187, 'Latasha', 1977, 'F', 1598), +(113188, 'Martha', 1977, 'F', 1592), +(113189, 'Toni', 1977, 'F', 1591), +(113190, 'Kristine', 1977, 'F', 1564), +(113191, 'Joanna', 1977, 'F', 1563), +(113192, 'Aisha', 1977, 'F', 1540), +(113193, 'Bethany', 1977, 'F', 1533), +(113194, 'Farrah', 1977, 'F', 1516), +(113195, 'Anita', 1977, 'F', 1514), +(113196, 'Robyn', 1977, 'F', 1511), +(113197, 'Tracey', 1977, 'F', 1504), +(113198, 'Kelley', 1977, 'F', 1503), +(113199, 'Kellie', 1977, 'F', 1502), +(113200, 'Jody', 1977, 'F', 1501), +(113201, 'Shana', 1977, 'F', 1500), +(113202, 'Rachael', 1977, 'F', 1486), +(113203, 'Stacie', 1977, 'F', 1486), +(113204, 'Keri', 1977, 'F', 1474), +(113205, 'Kerri', 1977, 'F', 1438), +(113206, 'Cara', 1977, 'F', 1411), +(113207, 'Kathy', 1977, 'F', 1406), +(113208, 'Angie', 1977, 'F', 1389), +(113209, 'Terri', 1977, 'F', 1388), +(113210, 'Sonya', 1977, 'F', 1382), +(113211, 'Lindsey', 1977, 'F', 1381), +(113212, 'Tabitha', 1977, 'F', 1375), +(113213, 'Melody', 1977, 'F', 1371), +(113214, 'Sonia', 1977, 'F', 1369), +(113215, 'Carol', 1977, 'F', 1345), +(113216, 'Bonnie', 1977, 'F', 1340), +(113217, 'Rebekah', 1977, 'F', 1328), +(113218, 'Alisha', 1977, 'F', 1315), +(113219, 'Kerry', 1977, 'F', 1298), +(113220, 'Candice', 1977, 'F', 1275), +(113221, 'Tricia', 1977, 'F', 1260), +(113222, 'Mindy', 1977, 'F', 1234), +(113223, 'Traci', 1977, 'F', 1233), +(113224, 'Claudia', 1977, 'F', 1231), +(113225, 'Connie', 1977, 'F', 1210), +(113226, 'Caroline', 1977, 'F', 1205), +(113227, 'Yvonne', 1977, 'F', 1205), +(113228, 'Charity', 1977, 'F', 1196), +(113229, 'Ruth', 1977, 'F', 1189), +(113230, 'Ebony', 1977, 'F', 1156), +(113231, 'Lakisha', 1977, 'F', 1148), +(113232, 'Janice', 1977, 'F', 1143), +(113233, 'Meghan', 1977, 'F', 1142), +(113234, 'Candace', 1977, 'F', 1140), +(113235, 'Annette', 1977, 'F', 1136), +(113236, 'Ana', 1977, 'F', 1135), +(113237, 'Angelica', 1977, 'F', 1133), +(113238, 'Gloria', 1977, 'F', 1129), +(113239, 'Miranda', 1977, 'F', 1123), +(113240, 'Kizzy', 1977, 'F', 1116), +(113241, 'Tasha', 1977, 'F', 1115), +(113242, 'Olivia', 1977, 'F', 1104), +(113243, 'Shelley', 1977, 'F', 1103), +(113244, 'Lynn', 1977, 'F', 1100), +(113245, 'Autumn', 1977, 'F', 1092), +(113246, 'Rosa', 1977, 'F', 1089), +(113247, 'Kim', 1977, 'F', 1084), +(113248, 'Sherri', 1977, 'F', 1081), +(113249, 'Janelle', 1977, 'F', 1070), +(113250, 'Charlene', 1977, 'F', 1068), +(113251, 'Marissa', 1977, 'F', 1067), +(113252, 'Jeanette', 1977, 'F', 1065), +(113253, 'Jillian', 1977, 'F', 1054), +(113254, 'Keisha', 1977, 'F', 1050), +(113255, 'Gretchen', 1977, 'F', 1045), +(113256, 'Jami', 1977, 'F', 1040), +(113257, 'Amie', 1977, 'F', 1029), +(113258, 'Tameka', 1977, 'F', 1021), +(113259, 'Ellen', 1977, 'F', 1020), +(113260, 'Leticia', 1977, 'F', 1020), +(113261, 'Hope', 1977, 'F', 1019), +(113262, 'Becky', 1977, 'F', 1008), +(113263, 'Cristina', 1977, 'F', 1006), +(113264, 'Karla', 1977, 'F', 1000), +(113265, 'Naomi', 1977, 'F', 999), +(113266, 'Helen', 1977, 'F', 992), +(113267, 'Latonya', 1977, 'F', 989), +(113268, 'Bobbie', 1977, 'F', 984), +(113269, 'Desiree', 1977, 'F', 984), +(113270, 'Shauna', 1977, 'F', 983), +(113271, 'Sheri', 1977, 'F', 983), +(113272, 'Sylvia', 1977, 'F', 983), +(113273, 'Audrey', 1977, 'F', 973), +(113274, 'Rose', 1977, 'F', 965), +(113275, 'Leigh', 1977, 'F', 953), +(113276, 'Ginger', 1977, 'F', 952), +(113277, 'Yvette', 1977, 'F', 951), +(113278, 'Casey', 1977, 'F', 950), +(113279, 'Jana', 1977, 'F', 950), +(113280, 'Nikki', 1977, 'F', 948), +(113281, 'Belinda', 1977, 'F', 944), +(113282, 'Frances', 1977, 'F', 940), +(113283, 'Charlotte', 1977, 'F', 939), +(113284, 'Jocelyn', 1977, 'F', 938), +(113285, 'Latisha', 1977, 'F', 936), +(113286, 'Dorothy', 1977, 'F', 934), +(113287, 'Stefanie', 1977, 'F', 928), +(113288, 'Joanne', 1977, 'F', 915), +(113289, 'Priscilla', 1977, 'F', 911), +(113290, 'Trina', 1977, 'F', 865), +(113291, 'Elaine', 1977, 'F', 864), +(113292, 'Juanita', 1977, 'F', 863), +(113293, 'Beverly', 1977, 'F', 862), +(113294, 'Christa', 1977, 'F', 860), +(113295, 'Alice', 1977, 'F', 858), +(113296, 'Marsha', 1977, 'F', 856), +(113297, 'Penny', 1977, 'F', 856), +(113298, 'Lesley', 1977, 'F', 849), +(113299, 'Krystal', 1977, 'F', 847), +(113300, 'Joyce', 1977, 'F', 846), +(113301, 'Jodie', 1977, 'F', 845), +(113302, 'Billie', 1977, 'F', 844), +(113303, 'Jennie', 1977, 'F', 843), +(113304, 'Maureen', 1977, 'F', 842), +(113305, 'Staci', 1977, 'F', 840), +(113306, 'Evelyn', 1977, 'F', 833), +(113307, 'Kate', 1977, 'F', 829), +(113308, 'Eva', 1977, 'F', 817), +(113309, 'Jenifer', 1977, 'F', 814), +(113310, 'Betty', 1977, 'F', 807), +(113311, 'Faith', 1977, 'F', 802), +(113312, 'Rita', 1977, 'F', 801), +(113313, 'Lakeisha', 1977, 'F', 799), +(113314, 'Abigail', 1977, 'F', 796), +(113315, 'Raquel', 1977, 'F', 796), +(113316, 'Jackie', 1977, 'F', 794), +(113317, 'Christi', 1977, 'F', 793), +(113318, 'Adriana', 1977, 'F', 791), +(113319, 'Selena', 1977, 'F', 791), +(113320, 'Nadia', 1977, 'F', 790), +(113321, 'Sally', 1977, 'F', 790), +(113322, 'Sandy', 1977, 'F', 785), +(113323, 'Norma', 1977, 'F', 779), +(113324, 'Shirley', 1977, 'F', 776), +(113325, 'Darlene', 1977, 'F', 772), +(113326, 'Chasity', 1977, 'F', 769), +(113327, 'Esther', 1977, 'F', 765), +(113328, 'Jean', 1977, 'F', 765), +(113329, 'Lydia', 1977, 'F', 764), +(113330, 'Tracie', 1977, 'F', 760), +(113331, 'Alyssa', 1977, 'F', 759), +(113332, 'Irene', 1977, 'F', 758), +(113333, 'Roxanne', 1977, 'F', 751), +(113334, 'Alexandra', 1977, 'F', 744), +(113335, 'Cathy', 1977, 'F', 744), +(113336, 'Jane', 1977, 'F', 743), +(113337, 'Jolene', 1977, 'F', 739), +(113338, 'Tanisha', 1977, 'F', 735), +(113339, 'Wanda', 1977, 'F', 728), +(113340, 'Jacquelyn', 1977, 'F', 727), +(113341, 'Alexis', 1977, 'F', 726), +(113342, 'Joann', 1977, 'F', 726), +(113343, 'Tonia', 1977, 'F', 722), +(113344, 'Jasmine', 1977, 'F', 719), +(113345, 'Marcia', 1977, 'F', 715), +(113346, 'Peggy', 1977, 'F', 713), +(113347, 'Kenya', 1977, 'F', 712), +(113348, 'Rochelle', 1977, 'F', 711), +(113349, 'Brandie', 1977, 'F', 708), +(113350, 'Judith', 1977, 'F', 707), +(113351, 'Mandi', 1977, 'F', 697), +(113352, 'Whitney', 1977, 'F', 693), +(113353, 'Kirsten', 1977, 'F', 687), +(113354, 'Angelina', 1977, 'F', 681), +(113355, 'Rachelle', 1977, 'F', 676), +(113356, 'Lakesha', 1977, 'F', 669), +(113357, 'Shawn', 1977, 'F', 667), +(113358, 'Chandra', 1977, 'F', 664), +(113359, 'Lara', 1977, 'F', 660), +(113360, 'Miriam', 1977, 'F', 659), +(113361, 'Lora', 1977, 'F', 650), +(113362, 'Tori', 1977, 'F', 649), +(113363, 'Vicki', 1977, 'F', 641), +(113364, 'Alisa', 1977, 'F', 640), +(113365, 'Hannah', 1977, 'F', 636), +(113366, 'Eileen', 1977, 'F', 633), +(113367, 'Judy', 1977, 'F', 632), +(113368, 'Teri', 1977, 'F', 631), +(113369, 'Kimberley', 1977, 'F', 630), +(113370, 'Ericka', 1977, 'F', 626), +(113371, 'Nina', 1977, 'F', 625), +(113372, 'Tami', 1977, 'F', 622), +(113373, 'Hollie', 1977, 'F', 620), +(113374, 'Bobbi', 1977, 'F', 617), +(113375, 'Tania', 1977, 'F', 613), +(113376, 'Marilyn', 1977, 'F', 610), +(113377, 'Marisol', 1977, 'F', 609), +(113378, 'Johanna', 1977, 'F', 608), +(113379, 'Carey', 1977, 'F', 601), +(113380, 'Ruby', 1977, 'F', 601), +(113381, 'Amelia', 1977, 'F', 600), +(113382, 'Debbie', 1977, 'F', 595), +(113383, 'Lawanda', 1977, 'F', 592), +(113384, 'Gwendolyn', 1977, 'F', 585), +(113385, 'Dena', 1977, 'F', 582), +(113386, 'Hilary', 1977, 'F', 579), +(113387, 'Joni', 1977, 'F', 579), +(113388, 'Lorena', 1977, 'F', 577), +(113389, 'Elisabeth', 1977, 'F', 575), +(113390, 'Roberta', 1977, 'F', 575), +(113391, 'Loretta', 1977, 'F', 570), +(113392, 'Alma', 1977, 'F', 564), +(113393, 'Allyson', 1977, 'F', 562), +(113394, 'Lee', 1977, 'F', 561), +(113395, 'Michael', 1977, 'F', 561), +(113396, 'Elisa', 1977, 'F', 558), +(113397, 'Jeanne', 1977, 'F', 555), +(113398, 'Melisa', 1977, 'F', 554), +(113399, 'Antoinette', 1977, 'F', 553), +(113400, 'Bernadette', 1977, 'F', 553), +(113401, 'Shelby', 1977, 'F', 553), +(113402, 'Guadalupe', 1977, 'F', 549), +(113403, 'Tabatha', 1977, 'F', 543), +(113404, 'Terra', 1977, 'F', 543), +(113405, 'Annie', 1977, 'F', 541), +(113406, 'Elena', 1977, 'F', 540), +(113407, 'Camille', 1977, 'F', 539), +(113408, 'Lynette', 1977, 'F', 538), +(113409, 'Taryn', 1977, 'F', 537), +(113410, 'Carissa', 1977, 'F', 532), +(113411, 'Jenna', 1977, 'F', 532), +(113412, 'Candy', 1977, 'F', 530), +(113413, 'Chrystal', 1977, 'F', 530), +(113414, 'Grace', 1977, 'F', 526), +(113415, 'Bianca', 1977, 'F', 525), +(113416, 'Cecilia', 1977, 'F', 521), +(113417, 'Ramona', 1977, 'F', 519), +(113418, 'Angelique', 1977, 'F', 518), +(113419, 'Nora', 1977, 'F', 518), +(113420, 'Sonja', 1977, 'F', 518), +(113421, 'Lashonda', 1977, 'F', 514), +(113422, 'Maribel', 1977, 'F', 512), +(113423, 'Chastity', 1977, 'F', 510), +(113424, 'Serena', 1977, 'F', 506), +(113425, 'Alissa', 1977, 'F', 505), +(113426, 'Karrie', 1977, 'F', 505), +(113427, 'Cheri', 1977, 'F', 500), +(113428, 'Liza', 1977, 'F', 498), +(113429, 'Cassie', 1977, 'F', 495), +(113430, 'Marla', 1977, 'F', 495), +(113431, 'Misti', 1977, 'F', 495), +(113432, 'Lorraine', 1977, 'F', 494), +(113433, 'Tammie', 1977, 'F', 493), +(113434, 'Marlene', 1977, 'F', 492), +(113435, 'Rhiannon', 1977, 'F', 491), +(113436, 'Brittany', 1977, 'F', 488), +(113437, 'Jessie', 1977, 'F', 486), +(113438, 'Chelsea', 1977, 'F', 482), +(113439, 'Janine', 1977, 'F', 479), +(113440, 'Emma', 1977, 'F', 478), +(113441, 'Claire', 1977, 'F', 477), +(113442, 'Karin', 1977, 'F', 475), +(113443, 'Kisha', 1977, 'F', 475), +(113444, 'Lana', 1977, 'F', 475), +(113445, 'Tia', 1977, 'F', 475), +(113446, 'Jeannie', 1977, 'F', 474), +(113447, 'Margarita', 1977, 'F', 474), +(113448, 'Celeste', 1977, 'F', 471), +(113449, 'Esmeralda', 1977, 'F', 471), +(113450, 'Lillian', 1977, 'F', 471), +(113451, 'Betsy', 1977, 'F', 470), +(113452, 'Audra', 1977, 'F', 469), +(113453, 'Dina', 1977, 'F', 469), +(113454, 'Angelia', 1977, 'F', 468), +(113455, 'Dianna', 1977, 'F', 467), +(113456, 'Cari', 1977, 'F', 466), +(113457, 'Cherie', 1977, 'F', 465), +(113458, 'Sommer', 1977, 'F', 464), +(113459, 'Haley', 1977, 'F', 462), +(113460, 'Lena', 1977, 'F', 462), +(113461, 'Jeannette', 1977, 'F', 460), +(113462, 'Deana', 1977, 'F', 459), +(113463, 'Rosemary', 1977, 'F', 459), +(113464, 'Wendi', 1977, 'F', 458), +(113465, 'Yesenia', 1977, 'F', 446), +(113466, 'Mia', 1977, 'F', 445), +(113467, 'Noelle', 1977, 'F', 445), +(113468, 'Josephine', 1977, 'F', 443), +(113469, 'Hillary', 1977, 'F', 442), +(113470, 'Jayme', 1977, 'F', 436), +(113471, 'Maricela', 1977, 'F', 436), +(113472, 'Katharine', 1977, 'F', 435), +(113473, 'Sophia', 1977, 'F', 433), +(113474, 'Joan', 1977, 'F', 432), +(113475, 'Bridgette', 1977, 'F', 431), +(113476, 'Blanca', 1977, 'F', 430), +(113477, 'Latanya', 1977, 'F', 429), +(113478, 'Darcy', 1977, 'F', 425), +(113479, 'Tennille', 1977, 'F', 425), +(113480, 'Gabriela', 1977, 'F', 424), +(113481, 'Marlena', 1977, 'F', 423), +(113482, 'Elisha', 1977, 'F', 421), +(113483, 'Marcie', 1977, 'F', 421), +(113484, 'Jaimie', 1977, 'F', 419), +(113485, 'Jamila', 1977, 'F', 418), +(113486, 'Chanda', 1977, 'F', 412), +(113487, 'Tisha', 1977, 'F', 412), +(113488, 'Vickie', 1977, 'F', 412), +(113489, 'Latosha', 1977, 'F', 410), +(113490, 'Maggie', 1977, 'F', 410), +(113491, 'Ronda', 1977, 'F', 410), +(113492, 'Karina', 1977, 'F', 406), +(113493, 'Alyson', 1977, 'F', 405), +(113494, 'Glenda', 1977, 'F', 402), +(113495, 'Carly', 1977, 'F', 401), +(113496, 'Genevieve', 1977, 'F', 399), +(113497, 'Selina', 1977, 'F', 399), +(113498, 'Lea', 1977, 'F', 398), +(113499, 'Cori', 1977, 'F', 397), +(113500, 'Corinne', 1977, 'F', 397), +(113501, 'Anitra', 1977, 'F', 392), +(113502, 'Gail', 1977, 'F', 392), +(113503, 'Isabel', 1977, 'F', 391), +(113504, 'Arlene', 1977, 'F', 390), +(113505, 'Marianne', 1977, 'F', 390), +(113506, 'Tera', 1977, 'F', 390), +(113507, 'Marcy', 1977, 'F', 389), +(113508, 'Janel', 1977, 'F', 387), +(113509, 'Randi', 1977, 'F', 387), +(113510, 'Leanne', 1977, 'F', 386), +(113511, 'Salina', 1977, 'F', 386), +(113512, 'Sheryl', 1977, 'F', 385), +(113513, 'Shari', 1977, 'F', 384), +(113514, 'Constance', 1977, 'F', 383), +(113515, 'Marjorie', 1977, 'F', 381), +(113516, 'Meagan', 1977, 'F', 380), +(113517, 'Iris', 1977, 'F', 374), +(113518, 'Jeanine', 1977, 'F', 374), +(113519, 'Karyn', 1977, 'F', 372), +(113520, 'Shanda', 1977, 'F', 370), +(113521, 'Sherrie', 1977, 'F', 369), +(113522, 'Kasey', 1977, 'F', 368), +(113523, 'Alana', 1977, 'F', 366), +(113524, 'Georgia', 1977, 'F', 366), +(113525, 'Janna', 1977, 'F', 365), +(113526, 'Jo', 1977, 'F', 365), +(113527, 'Luz', 1977, 'F', 365), +(113528, 'Malinda', 1977, 'F', 364), +(113529, 'Nakia', 1977, 'F', 364), +(113530, 'Patrice', 1977, 'F', 363), +(113531, 'Briana', 1977, 'F', 362), +(113532, 'Ryan', 1977, 'F', 362), +(113533, 'Larissa', 1977, 'F', 361), +(113534, 'Susana', 1977, 'F', 361), +(113535, 'Vivian', 1977, 'F', 360), +(113536, 'Leann', 1977, 'F', 359), +(113537, 'Valarie', 1977, 'F', 357), +(113538, 'Janie', 1977, 'F', 353), +(113539, 'Marci', 1977, 'F', 353), +(113540, 'Paige', 1977, 'F', 352), +(113541, 'Tiffani', 1977, 'F', 351), +(113542, 'Clarissa', 1977, 'F', 350), +(113543, 'Corey', 1977, 'F', 348), +(113544, 'Kimberlee', 1977, 'F', 348), +(113545, 'Christal', 1977, 'F', 346), +(113546, 'Daphne', 1977, 'F', 346), +(113547, 'Myra', 1977, 'F', 345), +(113548, 'Maya', 1977, 'F', 342), +(113549, 'Darla', 1977, 'F', 341), +(113550, 'Nadine', 1977, 'F', 340), +(113551, 'Doris', 1977, 'F', 339), +(113552, 'Edith', 1977, 'F', 339), +(113553, 'Rashida', 1977, 'F', 338), +(113554, 'Laurel', 1977, 'F', 337), +(113555, 'Aubrey', 1977, 'F', 334), +(113556, 'Delia', 1977, 'F', 334), +(113557, 'Corrie', 1977, 'F', 333), +(113558, 'Lorie', 1977, 'F', 332), +(113559, 'Kristal', 1977, 'F', 330), +(113560, 'Devon', 1977, 'F', 329), +(113561, 'Janette', 1977, 'F', 328), +(113562, 'Shayla', 1977, 'F', 326), +(113563, 'Katy', 1977, 'F', 323), +(113564, 'Marina', 1977, 'F', 323), +(113565, 'Maryann', 1977, 'F', 323), +(113566, 'Silvia', 1977, 'F', 323), +(113567, 'Vicky', 1977, 'F', 323), +(113568, 'Tomeka', 1977, 'F', 321), +(113569, 'Olga', 1977, 'F', 318), +(113570, 'Cristy', 1977, 'F', 317), +(113571, 'Bridgett', 1977, 'F', 316), +(113572, 'Daisy', 1977, 'F', 316), +(113573, 'Terry', 1977, 'F', 316), +(113574, 'Tosha', 1977, 'F', 316), +(113575, 'Shonda', 1977, 'F', 315), +(113576, 'Katina', 1977, 'F', 314), +(113577, 'Sasha', 1977, 'F', 314), +(113578, 'Irma', 1977, 'F', 313), +(113579, 'Celina', 1977, 'F', 312), +(113580, 'Jason', 1977, 'F', 312), +(113581, 'Caryn', 1977, 'F', 311), +(113582, 'Demetria', 1977, 'F', 311), +(113583, 'Edna', 1977, 'F', 311), +(113584, 'Araceli', 1977, 'F', 310), +(113585, 'Lucy', 1977, 'F', 310), +(113586, 'Kesha', 1977, 'F', 309), +(113587, 'Cortney', 1977, 'F', 306), +(113588, 'Adrianne', 1977, 'F', 305), +(113589, 'Ingrid', 1977, 'F', 305), +(113590, 'Lacey', 1977, 'F', 304), +(113591, 'Tawana', 1977, 'F', 304), +(113592, 'Sunshine', 1977, 'F', 303), +(113593, 'Lakeshia', 1977, 'F', 302), +(113594, 'Shanta', 1977, 'F', 301), +(113595, 'Mariah', 1977, 'F', 299), +(113596, 'Raven', 1977, 'F', 299), +(113597, 'Charmaine', 1977, 'F', 298), +(113598, 'Clara', 1977, 'F', 297), +(113599, 'Gena', 1977, 'F', 297), +(113600, 'Tammi', 1977, 'F', 297), +(113601, 'Dora', 1977, 'F', 296), +(113602, 'Marcella', 1977, 'F', 296), +(113603, 'Dolores', 1977, 'F', 294), +(113604, 'Shameka', 1977, 'F', 294), +(113605, 'Chantel', 1977, 'F', 293), +(113606, 'Dominique', 1977, 'F', 293), +(113607, 'Pauline', 1977, 'F', 293), +(113608, 'Rene', 1977, 'F', 293), +(113609, 'Sheree', 1977, 'F', 292), +(113610, 'Jeri', 1977, 'F', 291), +(113611, 'Kerrie', 1977, 'F', 291), +(113612, 'Ladonna', 1977, 'F', 289), +(113613, 'Latrice', 1977, 'F', 289), +(113614, 'Lynda', 1977, 'F', 289), +(113615, 'Kizzie', 1977, 'F', 286), +(113616, 'Beatrice', 1977, 'F', 285), +(113617, 'Dayna', 1977, 'F', 284), +(113618, 'Deidre', 1977, 'F', 284), +(113619, 'Gabrielle', 1977, 'F', 284), +(113620, 'Shelia', 1977, 'F', 284), +(113621, 'Catrina', 1977, 'F', 281), +(113622, 'Lashanda', 1977, 'F', 280), +(113623, 'Sue', 1977, 'F', 280), +(113624, 'Abby', 1977, 'F', 279), +(113625, 'Christopher', 1977, 'F', 278), +(113626, 'Marisela', 1977, 'F', 278), +(113627, 'Maritza', 1977, 'F', 277), +(113628, 'Adrian', 1977, 'F', 274), +(113629, 'Annmarie', 1977, 'F', 274), +(113630, 'Dionne', 1977, 'F', 274), +(113631, 'Rena', 1977, 'F', 274), +(113632, 'Tanika', 1977, 'F', 274), +(113633, 'Bree', 1977, 'F', 273), +(113634, 'James', 1977, 'F', 273), +(113635, 'Cory', 1977, 'F', 272), +(113636, 'Ami', 1977, 'F', 271), +(113637, 'Elissa', 1977, 'F', 271), +(113638, 'Cathleen', 1977, 'F', 270), +(113639, 'Corina', 1977, 'F', 270), +(113640, 'Gladys', 1977, 'F', 270), +(113641, 'Susanna', 1977, 'F', 269), +(113642, 'Susanne', 1977, 'F', 269), +(113643, 'Carolina', 1977, 'F', 268), +(113644, 'Dara', 1977, 'F', 267), +(113645, 'Janell', 1977, 'F', 267), +(113646, 'Lucia', 1977, 'F', 267), +(113647, 'Athena', 1977, 'F', 266), +(113648, 'Kami', 1977, 'F', 266), +(113649, 'Antonia', 1977, 'F', 264), +(113650, 'Stacia', 1977, 'F', 264), +(113651, 'Tessa', 1977, 'F', 264), +(113652, 'Alecia', 1977, 'F', 263), +(113653, 'Francesca', 1977, 'F', 263), +(113654, 'Jammie', 1977, 'F', 262), +(113655, 'Renae', 1977, 'F', 261), +(113656, 'Anastasia', 1977, 'F', 260), +(113657, 'Alejandra', 1977, 'F', 259), +(113658, 'Tawanda', 1977, 'F', 259), +(113659, 'Brook', 1977, 'F', 258), +(113660, 'Malissa', 1977, 'F', 258), +(113661, 'Jada', 1977, 'F', 257), +(113662, 'Elise', 1977, 'F', 255), +(113663, 'Kori', 1977, 'F', 255), +(113664, 'David', 1977, 'F', 252), +(113665, 'Ivy', 1977, 'F', 251), +(113666, 'Qiana', 1977, 'F', 251), +(113667, 'Ida', 1977, 'F', 250), +(113668, 'Mollie', 1977, 'F', 250), +(113669, 'June', 1977, 'F', 248), +(113670, 'Geneva', 1977, 'F', 247), +(113671, 'Celia', 1977, 'F', 246), +(113672, 'Karie', 1977, 'F', 246), +(113673, 'Elsa', 1977, 'F', 245), +(113674, 'Rosalyn', 1977, 'F', 245), +(113675, 'Tiffanie', 1977, 'F', 245), +(113676, 'Madeline', 1977, 'F', 244), +(113677, 'Lucinda', 1977, 'F', 242), +(113678, 'Dusty', 1977, 'F', 241), +(113679, 'Leanna', 1977, 'F', 241), +(113680, 'Lashawn', 1977, 'F', 240), +(113681, 'Mackenzie', 1977, 'F', 238), +(113682, 'Robert', 1977, 'F', 238), +(113683, 'Phyllis', 1977, 'F', 237), +(113684, 'Mara', 1977, 'F', 236), +(113685, 'Susie', 1977, 'F', 236), +(113686, 'Sadie', 1977, 'F', 235), +(113687, 'Sunny', 1977, 'F', 235), +(113688, 'Tomika', 1977, 'F', 235), +(113689, 'Felecia', 1977, 'F', 233), +(113690, 'Holli', 1977, 'F', 233), +(113691, 'Bertha', 1977, 'F', 232), +(113692, 'Shanon', 1977, 'F', 232), +(113693, 'Stella', 1977, 'F', 232), +(113694, 'Tawanna', 1977, 'F', 232), +(113695, 'Jan', 1977, 'F', 231), +(113696, 'Josie', 1977, 'F', 231), +(113697, 'Sharonda', 1977, 'F', 231), +(113698, 'Jasmin', 1977, 'F', 230), +(113699, 'Letitia', 1977, 'F', 230), +(113700, 'Mellissa', 1977, 'F', 230), +(113701, 'Deirdre', 1977, 'F', 229), +(113702, 'Kenisha', 1977, 'F', 229), +(113703, 'Marion', 1977, 'F', 229), +(113704, 'Trish', 1977, 'F', 229), +(113705, 'Danelle', 1977, 'F', 228), +(113706, 'Eleanor', 1977, 'F', 228), +(113707, 'Georgina', 1977, 'F', 228), +(113708, 'Jeannine', 1977, 'F', 227), +(113709, 'Jeanna', 1977, 'F', 226), +(113710, 'Kayla', 1977, 'F', 226), +(113711, 'Lynne', 1977, 'F', 226), +(113712, 'Callie', 1977, 'F', 225), +(113713, 'Carie', 1977, 'F', 225), +(113714, 'Julianne', 1977, 'F', 225), +(113715, 'Brianna', 1977, 'F', 224), +(113716, 'Cora', 1977, 'F', 223), +(113717, 'Shamika', 1977, 'F', 223), +(113718, 'Andria', 1977, 'F', 222), +(113719, 'Eliza', 1977, 'F', 222), +(113720, 'Noemi', 1977, 'F', 221), +(113721, 'Lisette', 1977, 'F', 220), +(113722, 'Rosalinda', 1977, 'F', 220), +(113723, 'Shellie', 1977, 'F', 220), +(113724, 'Mona', 1977, 'F', 219), +(113725, 'Shannan', 1977, 'F', 219), +(113726, 'Talia', 1977, 'F', 219), +(113727, 'Eve', 1977, 'F', 218), +(113728, 'Gwen', 1977, 'F', 218), +(113729, 'Hayley', 1977, 'F', 218), +(113730, 'John', 1977, 'F', 218), +(113731, 'Francine', 1977, 'F', 217), +(113732, 'Kia', 1977, 'F', 217), +(113733, 'Ursula', 1977, 'F', 217), +(113734, 'Danita', 1977, 'F', 216), +(113735, 'Deidra', 1977, 'F', 216), +(113736, 'Sondra', 1977, 'F', 215), +(113737, 'Tamra', 1977, 'F', 215), +(113738, 'Windy', 1977, 'F', 215), +(113739, 'Bambi', 1977, 'F', 214), +(113740, 'Chiquita', 1977, 'F', 214), +(113741, 'Monika', 1977, 'F', 213), +(113742, 'Helena', 1977, 'F', 212), +(113743, 'Tamera', 1977, 'F', 212), +(113744, 'Casandra', 1977, 'F', 211), +(113745, 'Destiny', 1977, 'F', 211), +(113746, 'Graciela', 1977, 'F', 211), +(113747, 'Harmony', 1977, 'F', 211), +(113748, 'Mayra', 1977, 'F', 211), +(113749, 'Morgan', 1977, 'F', 211), +(113750, 'Racheal', 1977, 'F', 211), +(113751, 'Rosemarie', 1977, 'F', 211), +(113752, 'Shalonda', 1977, 'F', 211), +(113753, 'Justine', 1977, 'F', 210), +(113754, 'Mercedes', 1977, 'F', 209), +(113755, 'Rocio', 1977, 'F', 209), +(113756, 'Beatriz', 1977, 'F', 208), +(113757, 'Louise', 1977, 'F', 208), +(113758, 'Venus', 1977, 'F', 208), +(113759, 'Jeanie', 1977, 'F', 207), +(113760, 'Layla', 1977, 'F', 207), +(113761, 'Rosanna', 1977, 'F', 207), +(113762, 'Shantel', 1977, 'F', 207), +(113763, 'Shawnte', 1977, 'F', 207), +(113764, 'Marian', 1977, 'F', 205), +(113765, 'Brandee', 1977, 'F', 204), +(113766, 'Dianne', 1977, 'F', 204), +(113767, 'Mildred', 1977, 'F', 204), +(113768, 'Deanne', 1977, 'F', 203), +(113769, 'Jeana', 1977, 'F', 203), +(113770, 'Jerri', 1977, 'F', 203), +(113771, 'Juana', 1977, 'F', 203), +(113772, 'Maranda', 1977, 'F', 202), +(113773, 'Nikia', 1977, 'F', 202), +(113774, 'Carisa', 1977, 'F', 200), +(113775, 'Charla', 1977, 'F', 200), +(113776, 'Marta', 1977, 'F', 200), +(113777, 'Takisha', 1977, 'F', 200), +(113778, 'Joey', 1977, 'F', 199), +(113779, 'Lourdes', 1977, 'F', 199), +(113780, 'Shante', 1977, 'F', 199), +(113781, 'Fawn', 1977, 'F', 198), +(113782, 'Candi', 1977, 'F', 197), +(113783, 'Hilda', 1977, 'F', 197), +(113784, 'Karri', 1977, 'F', 197), +(113785, 'Kathrine', 1977, 'F', 197), +(113786, 'Danette', 1977, 'F', 196), +(113787, 'Deena', 1977, 'F', 196), +(113788, 'Jaimee', 1977, 'F', 196), +(113789, 'Tyra', 1977, 'F', 196), +(113790, 'Celena', 1977, 'F', 195), +(113791, 'Kay', 1977, 'F', 195), +(113792, 'Leeann', 1977, 'F', 195), +(113793, 'Lynnette', 1977, 'F', 195), +(113794, 'Regan', 1977, 'F', 195), +(113795, 'Thelma', 1977, 'F', 195), +(113796, 'Ashlee', 1977, 'F', 194), +(113797, 'Maura', 1977, 'F', 194), +(113798, 'Shonna', 1977, 'F', 194), +(113799, 'Daniel', 1977, 'F', 192), +(113800, 'Jena', 1977, 'F', 192), +(113801, 'Latonia', 1977, 'F', 192), +(113802, 'Leila', 1977, 'F', 192), +(113803, 'Colette', 1977, 'F', 191), +(113804, 'Daniela', 1977, 'F', 191), +(113805, 'Mitzi', 1977, 'F', 191), +(113806, 'Sofia', 1977, 'F', 191), +(113807, 'Felisha', 1977, 'F', 190), +(113808, 'Paulette', 1977, 'F', 190), +(113809, 'Alexa', 1977, 'F', 189), +(113810, 'Annemarie', 1977, 'F', 189), +(113811, 'Latricia', 1977, 'F', 189), +(113812, 'Florence', 1977, 'F', 188), +(113813, 'Laquita', 1977, 'F', 188), +(113814, 'Martina', 1977, 'F', 188), +(113815, 'Polly', 1977, 'F', 188), +(113816, 'Salena', 1977, 'F', 188), +(113817, 'Shanika', 1977, 'F', 188), +(113818, 'Simone', 1977, 'F', 188), +(113819, 'Toya', 1977, 'F', 188), +(113820, 'Ada', 1977, 'F', 187), +(113821, 'Griselda', 1977, 'F', 187), +(113822, 'William', 1977, 'F', 187), +(113823, 'Dixie', 1977, 'F', 186), +(113824, 'Doreen', 1977, 'F', 186), +(113825, 'Eugenia', 1977, 'F', 186), +(113826, 'Shawanda', 1977, 'F', 186), +(113827, 'Aurora', 1977, 'F', 185), +(113828, 'Carina', 1977, 'F', 185), +(113829, 'Brenna', 1977, 'F', 184), +(113830, 'Christel', 1977, 'F', 184), +(113831, 'Christen', 1977, 'F', 184), +(113832, 'Consuelo', 1977, 'F', 184), +(113833, 'Octavia', 1977, 'F', 184), +(113834, 'Vera', 1977, 'F', 184), +(113835, 'Anissa', 1977, 'F', 183), +(113836, 'Delores', 1977, 'F', 183), +(113837, 'Lois', 1977, 'F', 183), +(113838, 'Margo', 1977, 'F', 183), +(113839, 'Starr', 1977, 'F', 183), +(113840, 'Bernice', 1977, 'F', 182), +(113841, 'Joleen', 1977, 'F', 182), +(113842, 'Liana', 1977, 'F', 182), +(113843, 'Mindi', 1977, 'F', 182), +(113844, 'Yadira', 1977, 'F', 182), +(113845, 'Brian', 1977, 'F', 181), +(113846, 'Lorrie', 1977, 'F', 181), +(113847, 'Nikita', 1977, 'F', 181), +(113848, 'Spring', 1977, 'F', 181), +(113849, 'Della', 1977, 'F', 180), +(113850, 'Noel', 1977, 'F', 180), +(113851, 'Tory', 1977, 'F', 180), +(113852, 'Johnna', 1977, 'F', 179), +(113853, 'Niki', 1977, 'F', 179), +(113854, 'Rosie', 1977, 'F', 179), +(113855, 'Davina', 1977, 'F', 178), +(113856, 'Keli', 1977, 'F', 178), +(113857, 'Quiana', 1977, 'F', 178), +(113858, 'Rosalind', 1977, 'F', 178), +(113859, 'Alanna', 1977, 'F', 177), +(113860, 'Nakisha', 1977, 'F', 177), +(113861, 'Ayanna', 1977, 'F', 176), +(113862, 'Joseph', 1977, 'F', 176), +(113863, 'Adriane', 1977, 'F', 175), +(113864, 'Shayna', 1977, 'F', 175), +(113865, 'Tawnya', 1977, 'F', 175), +(113866, 'Farah', 1977, 'F', 174), +(113867, 'Kyla', 1977, 'F', 174), +(113868, 'Mellisa', 1977, 'F', 174), +(113869, 'Sandi', 1977, 'F', 174), +(113870, 'Janae', 1977, 'F', 173), +(113871, 'Tiana', 1977, 'F', 173), +(113872, 'Caitlin', 1977, 'F', 172), +(113873, 'Kamilah', 1977, 'F', 172), +(113874, 'Lindy', 1977, 'F', 172), +(113875, 'Patty', 1977, 'F', 172), +(113876, 'Tanesha', 1977, 'F', 172), +(113877, 'Christin', 1977, 'F', 171), +(113878, 'Joelle', 1977, 'F', 171), +(113879, 'Alysia', 1977, 'F', 170), +(113880, 'Gayle', 1977, 'F', 170), +(113881, 'Michaela', 1977, 'F', 170), +(113882, 'Suzanna', 1977, 'F', 170), +(113883, 'Leona', 1977, 'F', 169), +(113884, 'Magdalena', 1977, 'F', 169), +(113885, 'Shalon', 1977, 'F', 168), +(113886, 'Matthew', 1977, 'F', 167), +(113887, 'Corinna', 1977, 'F', 166), +(113888, 'Khalilah', 1977, 'F', 166), +(113889, 'Cary', 1977, 'F', 165), +(113890, 'January', 1977, 'F', 165), +(113891, 'Margie', 1977, 'F', 165), +(113892, 'Stephenie', 1977, 'F', 165), +(113893, 'Darcie', 1977, 'F', 164), +(113894, 'Juliana', 1977, 'F', 164), +(113895, 'Keesha', 1977, 'F', 164), +(113896, 'Suzette', 1977, 'F', 164), +(113897, 'Chanel', 1977, 'F', 163), +(113898, 'Ella', 1977, 'F', 163), +(113899, 'Jesse', 1977, 'F', 163), +(113900, 'Trista', 1977, 'F', 163), +(113901, 'Chris', 1977, 'F', 162), +(113902, 'Gillian', 1977, 'F', 162), +(113903, 'Jade', 1977, 'F', 162), +(113904, 'Starla', 1977, 'F', 162), +(113905, 'Janis', 1977, 'F', 161), +(113906, 'Keshia', 1977, 'F', 161), +(113907, 'Latarsha', 1977, 'F', 161), +(113908, 'Christian', 1977, 'F', 159), +(113909, 'Corrine', 1977, 'F', 159), +(113910, 'Darci', 1977, 'F', 159), +(113911, 'India', 1977, 'F', 159), +(113912, 'Lacy', 1977, 'F', 159), +(113913, 'Latesha', 1977, 'F', 159), +(113914, 'Michell', 1977, 'F', 159), +(113915, 'Fatima', 1977, 'F', 158), +(113916, 'Tamiko', 1977, 'F', 158), +(113917, 'Terrie', 1977, 'F', 158), +(113918, 'Trudy', 1977, 'F', 158), +(113919, 'Benita', 1977, 'F', 157), +(113920, 'Iesha', 1977, 'F', 157), +(113921, 'Trinity', 1977, 'F', 157), +(113922, 'Buffy', 1977, 'F', 156), +(113923, 'Carin', 1977, 'F', 156), +(113924, 'Carri', 1977, 'F', 156), +(113925, 'Jenni', 1977, 'F', 156), +(113926, 'Liliana', 1977, 'F', 156), +(113927, 'Nicolle', 1977, 'F', 156), +(113928, 'Raina', 1977, 'F', 156), +(113929, 'Richelle', 1977, 'F', 156), +(113930, 'Nikole', 1977, 'F', 155), +(113931, 'Venessa', 1977, 'F', 155), +(113932, 'Mandie', 1977, 'F', 154), +(113933, 'Therese', 1977, 'F', 154), +(113934, 'Torrie', 1977, 'F', 154), +(113935, 'Kenyatta', 1977, 'F', 153), +(113936, 'Rosalie', 1977, 'F', 153), +(113937, 'Shasta', 1977, 'F', 153), +(113938, 'Brittney', 1977, 'F', 152), +(113939, 'Danica', 1977, 'F', 152), +(113940, 'Deann', 1977, 'F', 152), +(113941, 'Shelli', 1977, 'F', 152), +(113942, 'Aileen', 1977, 'F', 151), +(113943, 'Alesha', 1977, 'F', 151), +(113944, 'Delilah', 1977, 'F', 151), +(113945, 'Jenelle', 1977, 'F', 151), +(113946, 'Kandi', 1977, 'F', 151), +(113947, 'Phoebe', 1977, 'F', 151), +(113948, 'Yasmin', 1977, 'F', 151), +(113949, 'Carole', 1977, 'F', 150), +(113950, 'Malia', 1977, 'F', 150), +(113951, 'Kevin', 1977, 'F', 149), +(113952, 'Shara', 1977, 'F', 149), +(113953, 'Adrianna', 1977, 'F', 148), +(113954, 'Emilie', 1977, 'F', 148), +(113955, 'Lashunda', 1977, 'F', 148), +(113956, 'Mendy', 1977, 'F', 148), +(113957, 'Sheena', 1977, 'F', 148), +(113958, 'Tana', 1977, 'F', 148), +(113959, 'Angelita', 1977, 'F', 147), +(113960, 'Chana', 1977, 'F', 147), +(113961, 'Eunice', 1977, 'F', 147), +(113962, 'Greta', 1977, 'F', 147), +(113963, 'Aaron', 1977, 'F', 146), +(113964, 'Anthony', 1977, 'F', 146), +(113965, 'Damaris', 1977, 'F', 146), +(113966, 'Faye', 1977, 'F', 146), +(113967, 'Kirstin', 1977, 'F', 146), +(113968, 'Melodie', 1977, 'F', 146), +(113969, 'Reagan', 1977, 'F', 146), +(113970, 'Elaina', 1977, 'F', 145), +(113971, 'Leilani', 1977, 'F', 145), +(113972, 'Natalia', 1977, 'F', 145), +(113973, 'Shantell', 1977, 'F', 145), +(113974, 'Tamekia', 1977, 'F', 145), +(113975, 'Tarah', 1977, 'F', 145), +(113976, 'Alexandria', 1977, 'F', 144), +(113977, 'Alycia', 1977, 'F', 144), +(113978, 'Kelsey', 1977, 'F', 144), +(113979, 'Kira', 1977, 'F', 144), +(113980, 'Shawnna', 1977, 'F', 144), +(113981, 'Tenisha', 1977, 'F', 144), +(113982, 'Adria', 1977, 'F', 143), +(113983, 'Cristal', 1977, 'F', 143), +(113984, 'Francis', 1977, 'F', 143), +(113985, 'Josefina', 1977, 'F', 143), +(113986, 'Karissa', 1977, 'F', 143), +(113987, 'Melina', 1977, 'F', 143), +(113988, 'Caren', 1977, 'F', 142), +(113989, 'Chante', 1977, 'F', 142), +(113990, 'Corie', 1977, 'F', 142), +(113991, 'Ginny', 1977, 'F', 142), +(113992, 'Lucretia', 1977, 'F', 142), +(113993, 'Shani', 1977, 'F', 142), +(113994, 'Angeline', 1977, 'F', 141), +(113995, 'Georgette', 1977, 'F', 141), +(113996, 'Juliet', 1977, 'F', 141), +(113997, 'Tamica', 1977, 'F', 141), +(113998, 'Alina', 1977, 'F', 140), +(113999, 'Marnie', 1977, 'F', 140), +(114000, 'Ayana', 1977, 'F', 139), +(114001, 'Jacklyn', 1977, 'F', 139), +(114002, 'Jeremy', 1977, 'F', 139), +(114003, 'Lizette', 1977, 'F', 139), +(114004, 'Danyelle', 1977, 'F', 138), +(114005, 'Imelda', 1977, 'F', 138), +(114006, 'Lissette', 1977, 'F', 138), +(114007, 'Sharla', 1977, 'F', 138), +(114008, 'Valencia', 1977, 'F', 138), +(114009, 'Keely', 1977, 'F', 137), +(114010, 'Marlo', 1977, 'F', 137), +(114011, 'Nanette', 1977, 'F', 137), +(114012, 'Latrina', 1977, 'F', 136), +(114013, 'Mari', 1977, 'F', 136), +(114014, 'Meggan', 1977, 'F', 136), +(114015, 'Rebeca', 1977, 'F', 136), +(114016, 'Anika', 1977, 'F', 135), +(114017, 'Justina', 1977, 'F', 135), +(114018, 'Kellee', 1977, 'F', 135), +(114019, 'Lilia', 1977, 'F', 135), +(114020, 'Susannah', 1977, 'F', 135), +(114021, 'Charissa', 1977, 'F', 134), +(114022, 'Jamey', 1977, 'F', 134), +(114023, 'Nellie', 1977, 'F', 134), +(114024, 'Sierra', 1977, 'F', 134), +(114025, 'Star', 1977, 'F', 134), +(114026, 'Kindra', 1977, 'F', 133), +(114027, 'Nichol', 1977, 'F', 133), +(114028, 'Rosario', 1977, 'F', 133), +(114029, 'Sherita', 1977, 'F', 133), +(114030, 'Tamar', 1977, 'F', 133), +(114031, 'Chantelle', 1977, 'F', 132), +(114032, 'Lola', 1977, 'F', 132), +(114033, 'Luciana', 1977, 'F', 132), +(114034, 'Mistie', 1977, 'F', 132), +(114035, 'Precious', 1977, 'F', 132), +(114036, 'Rikki', 1977, 'F', 132), +(114037, 'Shawnta', 1977, 'F', 132), +(114038, 'Twanna', 1977, 'F', 132), +(114039, 'Ashleigh', 1977, 'F', 131), +(114040, 'Ivette', 1977, 'F', 131), +(114041, 'Reyna', 1977, 'F', 131), +(114042, 'Richard', 1977, 'F', 131), +(114043, 'Scarlett', 1977, 'F', 131), +(114044, 'Cecelia', 1977, 'F', 130), +(114045, 'Eboni', 1977, 'F', 130), +(114046, 'Myrna', 1977, 'F', 130), +(114047, 'Cicely', 1977, 'F', 129), +(114048, 'Esperanza', 1977, 'F', 129), +(114049, 'Rae', 1977, 'F', 129), +(114050, 'Temeka', 1977, 'F', 129), +(114051, 'Angella', 1977, 'F', 128), +(114052, 'Cherry', 1977, 'F', 128), +(114053, 'Marybeth', 1977, 'F', 128), +(114054, 'Roxanna', 1977, 'F', 128), +(114055, 'Sharlene', 1977, 'F', 128), +(114056, 'Tarrah', 1977, 'F', 128), +(114057, 'Tequila', 1977, 'F', 128), +(114058, 'Aida', 1977, 'F', 127), +(114059, 'Antionette', 1977, 'F', 127), +(114060, 'Hazel', 1977, 'F', 127), +(114061, 'Kacey', 1977, 'F', 127), +(114062, 'Melonie', 1977, 'F', 127), +(114063, 'Violet', 1977, 'F', 127), +(114064, 'Cathryn', 1977, 'F', 126), +(114065, 'Dannielle', 1977, 'F', 126), +(114066, 'Lauri', 1977, 'F', 126), +(114067, 'Mariana', 1977, 'F', 126), +(114068, 'Shandra', 1977, 'F', 126), +(114069, 'Ayesha', 1977, 'F', 125), +(114070, 'Francisca', 1977, 'F', 125), +(114071, 'Inez', 1977, 'F', 125), +(114072, 'Rolanda', 1977, 'F', 125), +(114073, 'Shawana', 1977, 'F', 125), +(114074, 'Stefani', 1977, 'F', 125), +(114075, 'Tressa', 1977, 'F', 125), +(114076, 'Eric', 1977, 'F', 124), +(114077, 'Milagros', 1977, 'F', 124), +(114078, 'Brigitte', 1977, 'F', 123), +(114079, 'Janeen', 1977, 'F', 123), +(114080, 'Joslyn', 1977, 'F', 123), +(114081, 'Pearl', 1977, 'F', 123), +(114082, 'Tarsha', 1977, 'F', 123), +(114083, 'Taylor', 1977, 'F', 123), +(114084, 'Thomas', 1977, 'F', 123), +(114085, 'Tonja', 1977, 'F', 123), +(114086, 'Danyell', 1977, 'F', 122), +(114087, 'Joi', 1977, 'F', 122), +(114088, 'Robbie', 1977, 'F', 122), +(114089, 'Torie', 1977, 'F', 122), +(114090, 'Lia', 1977, 'F', 121), +(114091, 'Lyndsay', 1977, 'F', 121), +(114092, 'Maxine', 1977, 'F', 121), +(114093, 'Roseann', 1977, 'F', 121), +(114094, 'Tangela', 1977, 'F', 121), +(114095, 'Zoe', 1977, 'F', 121), +(114096, 'Denice', 1977, 'F', 120), +(114097, 'Estella', 1977, 'F', 120), +(114098, 'Joanie', 1977, 'F', 120), +(114099, 'Latoria', 1977, 'F', 120), +(114100, 'Lucille', 1977, 'F', 120), +(114101, 'Rhea', 1977, 'F', 120), +(114102, 'Shakira', 1977, 'F', 120), +(114103, 'Stephaine', 1977, 'F', 120), +(114104, 'Catalina', 1977, 'F', 119), +(114105, 'Chrissy', 1977, 'F', 119), +(114106, 'Erinn', 1977, 'F', 119), +(114107, 'Geraldine', 1977, 'F', 119), +(114108, 'Jayne', 1977, 'F', 119), +(114109, 'Julianna', 1977, 'F', 119), +(114110, 'Marlana', 1977, 'F', 119), +(114111, 'Marquita', 1977, 'F', 119), +(114112, 'Penelope', 1977, 'F', 119), +(114113, 'Brigette', 1977, 'F', 118), +(114114, 'Elvira', 1977, 'F', 118), +(114115, 'Latashia', 1977, 'F', 118), +(114116, 'Lila', 1977, 'F', 118), +(114117, 'Marcela', 1977, 'F', 118), +(114118, 'Shea', 1977, 'F', 118), +(114119, 'Charisse', 1977, 'F', 117), +(114120, 'Frankie', 1977, 'F', 117), +(114121, 'Lina', 1977, 'F', 117), +(114122, 'Roslyn', 1977, 'F', 117), +(114123, 'Samara', 1977, 'F', 117), +(114124, 'Shawnda', 1977, 'F', 117), +(114125, 'Lakeesha', 1977, 'F', 116), +(114126, 'Stephany', 1977, 'F', 116), +(114127, 'Caron', 1977, 'F', 115), +(114128, 'Clare', 1977, 'F', 115), +(114129, 'Daniella', 1977, 'F', 115), +(114130, 'Karey', 1977, 'F', 115), +(114131, 'Kiesha', 1977, 'F', 115), +(114132, 'Lakiesha', 1977, 'F', 115), +(114133, 'Patti', 1977, 'F', 115), +(114134, 'Shalanda', 1977, 'F', 115), +(114135, 'Claudine', 1977, 'F', 114), +(114136, 'Danna', 1977, 'F', 114), +(114137, 'Kristyn', 1977, 'F', 114), +(114138, 'Maisha', 1977, 'F', 114), +(114139, 'Nicki', 1977, 'F', 114), +(114140, 'Shonta', 1977, 'F', 114), +(114141, 'Taisha', 1977, 'F', 114), +(114142, 'Carmela', 1977, 'F', 113), +(114143, 'Cristi', 1977, 'F', 113), +(114144, 'Freda', 1977, 'F', 113), +(114145, 'Jolie', 1977, 'F', 113), +(114146, 'Joshua', 1977, 'F', 113), +(114147, 'Natosha', 1977, 'F', 113), +(114148, 'Adele', 1977, 'F', 112), +(114149, 'Claudette', 1977, 'F', 112), +(114150, 'Coleen', 1977, 'F', 112), +(114151, 'Devin', 1977, 'F', 112), +(114152, 'Hallie', 1977, 'F', 112), +(114153, 'Meaghan', 1977, 'F', 112), +(114154, 'Tamisha', 1977, 'F', 112), +(114155, 'Tyesha', 1977, 'F', 112), +(114156, 'Yolonda', 1977, 'F', 112), +(114157, 'Addie', 1977, 'F', 111), +(114158, 'Jordan', 1977, 'F', 111), +(114159, 'Kenyetta', 1977, 'F', 111), +(114160, 'Kyra', 1977, 'F', 111), +(114161, 'Rana', 1977, 'F', 111), +(114162, 'Renita', 1977, 'F', 111), +(114163, 'Bobby', 1977, 'F', 110), +(114164, 'Christiana', 1977, 'F', 110), +(114165, 'Evette', 1977, 'F', 110), +(114166, 'Hailey', 1977, 'F', 110), +(114167, 'Johnnie', 1977, 'F', 110), +(114168, 'Kris', 1977, 'F', 110), +(114169, 'Lesa', 1977, 'F', 110), +(114170, 'Tabetha', 1977, 'F', 110), +(114171, 'Cheyenne', 1977, 'F', 109), +(114172, 'Kiana', 1977, 'F', 109), +(114173, 'Nicola', 1977, 'F', 109), +(114174, 'Elsie', 1977, 'F', 108), +(114175, 'Adina', 1977, 'F', 107), +(114176, 'Bonita', 1977, 'F', 107), +(114177, 'Corrina', 1977, 'F', 107), +(114178, 'Dee', 1977, 'F', 107), +(114179, 'Luisa', 1977, 'F', 107), +(114180, 'Natisha', 1977, 'F', 107), +(114181, 'Rayna', 1977, 'F', 107), +(114182, 'Sebrina', 1977, 'F', 107), +(114183, 'Shaunna', 1977, 'F', 107), +(114184, 'Steven', 1977, 'F', 107), +(114185, 'Tenille', 1977, 'F', 107), +(114186, 'Alia', 1977, 'F', 106), +(114187, 'Elana', 1977, 'F', 106), +(114188, 'Ethel', 1977, 'F', 106), +(114189, 'Lily', 1977, 'F', 106), +(114190, 'Lolita', 1977, 'F', 106), +(114191, 'Tameika', 1977, 'F', 106), +(114192, 'Torri', 1977, 'F', 106), +(114193, 'Ariana', 1977, 'F', 105), +(114194, 'Ava', 1977, 'F', 105), +(114195, 'Casie', 1977, 'F', 105), +(114196, 'Gayla', 1977, 'F', 105), +(114197, 'Shanita', 1977, 'F', 105), +(114198, 'Somer', 1977, 'F', 105), +(114199, 'Tamela', 1977, 'F', 105), +(114200, 'Ariel', 1977, 'F', 104), +(114201, 'Barbra', 1977, 'F', 104), +(114202, 'Cami', 1977, 'F', 104), +(114203, 'Catina', 1977, 'F', 104), +(114204, 'Cristin', 1977, 'F', 104), +(114205, 'Dacia', 1977, 'F', 104), +(114206, 'Lyndsey', 1977, 'F', 104), +(114207, 'Marguerite', 1977, 'F', 104), +(114208, 'Micah', 1977, 'F', 104), +(114209, 'Cameron', 1977, 'F', 103), +(114210, 'Cherish', 1977, 'F', 103), +(114211, 'Lenora', 1977, 'F', 103), +(114212, 'Milissa', 1977, 'F', 103), +(114213, 'Nakita', 1977, 'F', 103), +(114214, 'Sacha', 1977, 'F', 103), +(114215, 'Shanell', 1977, 'F', 103), +(114216, 'Candida', 1977, 'F', 102), +(114217, 'Cherise', 1977, 'F', 102), +(114218, 'Flora', 1977, 'F', 102), +(114219, 'Jeni', 1977, 'F', 102), +(114220, 'Juliette', 1977, 'F', 102), +(114221, 'Nichelle', 1977, 'F', 102), +(114222, 'Timothy', 1977, 'F', 102), +(114223, 'Alena', 1977, 'F', 101), +(114224, 'Britt', 1977, 'F', 101), +(114225, 'Lela', 1977, 'F', 101), +(114226, 'Melony', 1977, 'F', 101), +(114227, 'Petra', 1977, 'F', 101), +(114228, 'Stormy', 1977, 'F', 101), +(114229, 'Thea', 1977, 'F', 101), +(114230, 'Dalia', 1977, 'F', 100), +(114231, 'Daniele', 1977, 'F', 100), +(114232, 'Flor', 1977, 'F', 100), +(114233, 'Julissa', 1977, 'F', 100), +(114234, 'Latoyia', 1977, 'F', 100), +(114235, 'Louisa', 1977, 'F', 100), +(114236, 'Missy', 1977, 'F', 100), +(114237, 'Rasheedah', 1977, 'F', 100), +(114238, 'Roxana', 1977, 'F', 100), +(114239, 'Sharron', 1977, 'F', 100), +(114240, 'Tatum', 1977, 'F', 100), +(114241, 'Michael', 1977, 'M', 67611), +(114242, 'Jason', 1977, 'M', 55649), +(114243, 'Christopher', 1977, 'M', 46753), +(114244, 'David', 1977, 'M', 40548), +(114245, 'James', 1977, 'M', 40051), +(114246, 'John', 1977, 'M', 34232), +(114247, 'Robert', 1977, 'M', 34221), +(114248, 'Brian', 1977, 'M', 32498), +(114249, 'Matthew', 1977, 'M', 31973), +(114250, 'Joseph', 1977, 'M', 26487), +(114251, 'Daniel', 1977, 'M', 26077), +(114252, 'William', 1977, 'M', 24775), +(114253, 'Kevin', 1977, 'M', 22482), +(114254, 'Joshua', 1977, 'M', 22073), +(114255, 'Jeremy', 1977, 'M', 21618), +(114256, 'Ryan', 1977, 'M', 21256), +(114257, 'Eric', 1977, 'M', 20745), +(114258, 'Timothy', 1977, 'M', 17980), +(114259, 'Jeffrey', 1977, 'M', 17488), +(114260, 'Richard', 1977, 'M', 17450), +(114261, 'Anthony', 1977, 'M', 16797), +(114262, 'Thomas', 1977, 'M', 16602), +(114263, 'Steven', 1977, 'M', 16492), +(114264, 'Andrew', 1977, 'M', 16036), +(114265, 'Mark', 1977, 'M', 15441), +(114266, 'Charles', 1977, 'M', 14745), +(114267, 'Scott', 1977, 'M', 14212), +(114268, 'Jonathan', 1977, 'M', 12326), +(114269, 'Benjamin', 1977, 'M', 12112), +(114270, 'Justin', 1977, 'M', 12013), +(114271, 'Paul', 1977, 'M', 11806), +(114272, 'Aaron', 1977, 'M', 11634), +(114273, 'Adam', 1977, 'M', 11035), +(114274, 'Chad', 1977, 'M', 10838), +(114275, 'Gregory', 1977, 'M', 10052), +(114276, 'Nathan', 1977, 'M', 9888), +(114277, 'Shawn', 1977, 'M', 9865), +(114278, 'Stephen', 1977, 'M', 9637), +(114279, 'Kenneth', 1977, 'M', 9456), +(114280, 'Patrick', 1977, 'M', 8313), +(114281, 'Brandon', 1977, 'M', 8285), +(114282, 'Bryan', 1977, 'M', 7890), +(114283, 'Sean', 1977, 'M', 7643), +(114284, 'Travis', 1977, 'M', 7279), +(114285, 'Jose', 1977, 'M', 6914), +(114286, 'Donald', 1977, 'M', 6867), +(114287, 'Edward', 1977, 'M', 6848), +(114288, 'Keith', 1977, 'M', 6605), +(114289, 'Bradley', 1977, 'M', 6427), +(114290, 'Todd', 1977, 'M', 6278), +(114291, 'Nicholas', 1977, 'M', 6076), +(114292, 'Corey', 1977, 'M', 6044), +(114293, 'Ronald', 1977, 'M', 6031), +(114294, 'Jesse', 1977, 'M', 5821), +(114295, 'Peter', 1977, 'M', 5818), +(114296, 'Jacob', 1977, 'M', 5796), +(114297, 'George', 1977, 'M', 5602), +(114298, 'Gary', 1977, 'M', 5444), +(114299, 'Douglas', 1977, 'M', 5300), +(114300, 'Samuel', 1977, 'M', 5267), +(114301, 'Shane', 1977, 'M', 4869), +(114302, 'Larry', 1977, 'M', 4840), +(114303, 'Craig', 1977, 'M', 4565), +(114304, 'Juan', 1977, 'M', 4559), +(114305, 'Raymond', 1977, 'M', 4379), +(114306, 'Wesley', 1977, 'M', 4303), +(114307, 'Cory', 1977, 'M', 4259), +(114308, 'Dennis', 1977, 'M', 4152), +(114309, 'Jeremiah', 1977, 'M', 4151), +(114310, 'Phillip', 1977, 'M', 3963), +(114311, 'Frank', 1977, 'M', 3896), +(114312, 'Marcus', 1977, 'M', 3845), +(114313, 'Joel', 1977, 'M', 3822), +(114314, 'Carlos', 1977, 'M', 3791), +(114315, 'Jerry', 1977, 'M', 3748), +(114316, 'Jared', 1977, 'M', 3739), +(114317, 'Antonio', 1977, 'M', 3655), +(114318, 'Jeffery', 1977, 'M', 3562), +(114319, 'Kyle', 1977, 'M', 3513), +(114320, 'Derrick', 1977, 'M', 3486), +(114321, 'Dustin', 1977, 'M', 3477), +(114322, 'Derek', 1977, 'M', 3450), +(114323, 'Jamie', 1977, 'M', 3446), +(114324, 'Terry', 1977, 'M', 3444), +(114325, 'Brent', 1977, 'M', 3429), +(114326, 'Randy', 1977, 'M', 3398), +(114327, 'Gabriel', 1977, 'M', 3347), +(114328, 'Troy', 1977, 'M', 3310), +(114329, 'Russell', 1977, 'M', 3127), +(114330, 'Philip', 1977, 'M', 3091), +(114331, 'Billy', 1977, 'M', 2947), +(114332, 'Tony', 1977, 'M', 2941), +(114333, 'Johnny', 1977, 'M', 2804), +(114334, 'Erik', 1977, 'M', 2784), +(114335, 'Zachary', 1977, 'M', 2780), +(114336, 'Rodney', 1977, 'M', 2713), +(114337, 'Alexander', 1977, 'M', 2709), +(114338, 'Jimmy', 1977, 'M', 2638), +(114339, 'Carl', 1977, 'M', 2619), +(114340, 'Curtis', 1977, 'M', 2606), +(114341, 'Marc', 1977, 'M', 2601), +(114342, 'Casey', 1977, 'M', 2597), +(114343, 'Shaun', 1977, 'M', 2578), +(114344, 'Victor', 1977, 'M', 2553), +(114345, 'Bobby', 1977, 'M', 2540), +(114346, 'Brad', 1977, 'M', 2525), +(114347, 'Nathaniel', 1977, 'M', 2496), +(114348, 'Luis', 1977, 'M', 2495), +(114349, 'Brett', 1977, 'M', 2490), +(114350, 'Vincent', 1977, 'M', 2460), +(114351, 'Danny', 1977, 'M', 2439), +(114352, 'Damon', 1977, 'M', 2356), +(114353, 'Kristopher', 1977, 'M', 2346), +(114354, 'Roger', 1977, 'M', 2313), +(114355, 'Lawrence', 1977, 'M', 2310), +(114356, 'Christian', 1977, 'M', 2299), +(114357, 'Ian', 1977, 'M', 2292), +(114358, 'Jon', 1977, 'M', 2288), +(114359, 'Seth', 1977, 'M', 2287), +(114360, 'Shannon', 1977, 'M', 2285), +(114361, 'Adrian', 1977, 'M', 2260), +(114362, 'Micheal', 1977, 'M', 2215), +(114363, 'Walter', 1977, 'M', 2185), +(114364, 'Willie', 1977, 'M', 2165), +(114365, 'Martin', 1977, 'M', 2157), +(114366, 'Alan', 1977, 'M', 2133), +(114367, 'Henry', 1977, 'M', 2133), +(114368, 'Joe', 1977, 'M', 2123), +(114369, 'Mario', 1977, 'M', 2121), +(114370, 'Jay', 1977, 'M', 2093), +(114371, 'Gerald', 1977, 'M', 2046), +(114372, 'Jesus', 1977, 'M', 2045), +(114373, 'Lee', 1977, 'M', 2016), +(114374, 'Arthur', 1977, 'M', 1973), +(114375, 'Andre', 1977, 'M', 1970), +(114376, 'Ricky', 1977, 'M', 1958), +(114377, 'Albert', 1977, 'M', 1952), +(114378, 'Wayne', 1977, 'M', 1949), +(114379, 'Lance', 1977, 'M', 1925), +(114380, 'Randall', 1977, 'M', 1922), +(114381, 'Roy', 1977, 'M', 1912), +(114382, 'Clinton', 1977, 'M', 1870), +(114383, 'Louis', 1977, 'M', 1861), +(114384, 'Allen', 1977, 'M', 1820), +(114385, 'Miguel', 1977, 'M', 1755), +(114386, 'Manuel', 1977, 'M', 1738), +(114387, 'Ricardo', 1977, 'M', 1725), +(114388, 'Bruce', 1977, 'M', 1703), +(114389, 'Jack', 1977, 'M', 1675), +(114390, 'Darrell', 1977, 'M', 1655), +(114391, 'Frederick', 1977, 'M', 1627), +(114392, 'Roberto', 1977, 'M', 1626), +(114393, 'Alex', 1977, 'M', 1613), +(114394, 'Jorge', 1977, 'M', 1578), +(114395, 'Tyrone', 1977, 'M', 1573), +(114396, 'Ronnie', 1977, 'M', 1545), +(114397, 'Reginald', 1977, 'M', 1520), +(114398, 'Darren', 1977, 'M', 1505), +(114399, 'Francisco', 1977, 'M', 1495), +(114400, 'Chris', 1977, 'M', 1493), +(114401, 'Ernest', 1977, 'M', 1486), +(114402, 'Kelly', 1977, 'M', 1484), +(114403, 'Tyler', 1977, 'M', 1463), +(114404, 'Dwayne', 1977, 'M', 1460), +(114405, 'Barry', 1977, 'M', 1457), +(114406, 'Harold', 1977, 'M', 1439), +(114407, 'Maurice', 1977, 'M', 1438), +(114408, 'Trevor', 1977, 'M', 1432), +(114409, 'Neil', 1977, 'M', 1430), +(114410, 'Eugene', 1977, 'M', 1395), +(114411, 'Eddie', 1977, 'M', 1382), +(114412, 'Jermaine', 1977, 'M', 1374), +(114413, 'Jerome', 1977, 'M', 1365), +(114414, 'Ruben', 1977, 'M', 1365), +(114415, 'Jaime', 1977, 'M', 1361), +(114416, 'Dale', 1977, 'M', 1359), +(114417, 'Tommy', 1977, 'M', 1334), +(114418, 'Leonard', 1977, 'M', 1300), +(114419, 'Edwin', 1977, 'M', 1290), +(114420, 'Calvin', 1977, 'M', 1285), +(114421, 'Mitchell', 1977, 'M', 1272), +(114422, 'Oscar', 1977, 'M', 1272), +(114423, 'Steve', 1977, 'M', 1270), +(114424, 'Cody', 1977, 'M', 1267), +(114425, 'Isaac', 1977, 'M', 1265), +(114426, 'Geoffrey', 1977, 'M', 1264), +(114427, 'Ralph', 1977, 'M', 1253), +(114428, 'Angel', 1977, 'M', 1244), +(114429, 'Glenn', 1977, 'M', 1244), +(114430, 'Luke', 1977, 'M', 1243), +(114431, 'Mathew', 1977, 'M', 1241), +(114432, 'Terrance', 1977, 'M', 1237), +(114433, 'Theodore', 1977, 'M', 1223), +(114434, 'Omar', 1977, 'M', 1222), +(114435, 'Joey', 1977, 'M', 1214), +(114436, 'Marvin', 1977, 'M', 1173), +(114437, 'Clayton', 1977, 'M', 1167), +(114438, 'Terrence', 1977, 'M', 1152), +(114439, 'Melvin', 1977, 'M', 1145), +(114440, 'Hector', 1977, 'M', 1143), +(114441, 'Fernando', 1977, 'M', 1135), +(114442, 'Kurt', 1977, 'M', 1119), +(114443, 'Stanley', 1977, 'M', 1114), +(114444, 'Javier', 1977, 'M', 1113), +(114445, 'Lucas', 1977, 'M', 1101), +(114446, 'Alejandro', 1977, 'M', 1085), +(114447, 'Heath', 1977, 'M', 1079), +(114448, 'Jody', 1977, 'M', 1061), +(114449, 'Toby', 1977, 'M', 1060), +(114450, 'Damian', 1977, 'M', 1055), +(114451, 'Micah', 1977, 'M', 1052), +(114452, 'Dominic', 1977, 'M', 1050), +(114453, 'Duane', 1977, 'M', 1047), +(114454, 'Clint', 1977, 'M', 1044), +(114455, 'Rafael', 1977, 'M', 1031), +(114456, 'Howard', 1977, 'M', 1017), +(114457, 'Raul', 1977, 'M', 1014), +(114458, 'Cameron', 1977, 'M', 1011), +(114459, 'Ramon', 1977, 'M', 1010), +(114460, 'Evan', 1977, 'M', 1007), +(114461, 'Earl', 1977, 'M', 1003), +(114462, 'Daryl', 1977, 'M', 1001), +(114463, 'Clifford', 1977, 'M', 974), +(114464, 'Andy', 1977, 'M', 973), +(114465, 'Eduardo', 1977, 'M', 958), +(114466, 'Pedro', 1977, 'M', 956), +(114467, 'Alfred', 1977, 'M', 951), +(114468, 'Harry', 1977, 'M', 949), +(114469, 'Leon', 1977, 'M', 949), +(114470, 'Karl', 1977, 'M', 940), +(114471, 'Jessie', 1977, 'M', 934), +(114472, 'Johnathan', 1977, 'M', 932), +(114473, 'Armando', 1977, 'M', 917), +(114474, 'Cedric', 1977, 'M', 903), +(114475, 'Francis', 1977, 'M', 899), +(114476, 'Wade', 1977, 'M', 890), +(114477, 'Clarence', 1977, 'M', 886), +(114478, 'Kirk', 1977, 'M', 881), +(114479, 'Dean', 1977, 'M', 869), +(114480, 'Franklin', 1977, 'M', 866), +(114481, 'Byron', 1977, 'M', 849), +(114482, 'Lonnie', 1977, 'M', 848), +(114483, 'Jarrod', 1977, 'M', 845), +(114484, 'Marco', 1977, 'M', 841), +(114485, 'Jonathon', 1977, 'M', 839), +(114486, 'Damien', 1977, 'M', 834), +(114487, 'Colin', 1977, 'M', 830), +(114488, 'Clifton', 1977, 'M', 827), +(114489, 'Greg', 1977, 'M', 823), +(114490, 'Ross', 1977, 'M', 823), +(114491, 'Devin', 1977, 'M', 810), +(114492, 'Ray', 1977, 'M', 808), +(114493, 'Warren', 1977, 'M', 802), +(114494, 'Courtney', 1977, 'M', 797), +(114495, 'Ivan', 1977, 'M', 796), +(114496, 'Gilbert', 1977, 'M', 786), +(114497, 'Kelvin', 1977, 'M', 785), +(114498, 'Brendan', 1977, 'M', 769), +(114499, 'Alvin', 1977, 'M', 762), +(114500, 'Roderick', 1977, 'M', 759), +(114501, 'Bernard', 1977, 'M', 758), +(114502, 'Norman', 1977, 'M', 756), +(114503, 'Tyson', 1977, 'M', 755), +(114504, 'Sergio', 1977, 'M', 753), +(114505, 'Fred', 1977, 'M', 747), +(114506, 'Julian', 1977, 'M', 747), +(114507, 'Leroy', 1977, 'M', 735), +(114508, 'Don', 1977, 'M', 734), +(114509, 'Spencer', 1977, 'M', 732), +(114510, 'Grant', 1977, 'M', 725), +(114511, 'Garrett', 1977, 'M', 720), +(114512, 'Julio', 1977, 'M', 719), +(114513, 'Quincy', 1977, 'M', 717), +(114514, 'Caleb', 1977, 'M', 716), +(114515, 'Edgar', 1977, 'M', 709), +(114516, 'Jeff', 1977, 'M', 703), +(114517, 'Alfredo', 1977, 'M', 699), +(114518, 'Vernon', 1977, 'M', 697), +(114519, 'Darryl', 1977, 'M', 694), +(114520, 'Antoine', 1977, 'M', 691), +(114521, 'Rene', 1977, 'M', 688), +(114522, 'Marshall', 1977, 'M', 686), +(114523, 'Orlando', 1977, 'M', 686), +(114524, 'Austin', 1977, 'M', 685), +(114525, 'Noah', 1977, 'M', 685), +(114526, 'Cesar', 1977, 'M', 683), +(114527, 'Tracy', 1977, 'M', 683), +(114528, 'Alberto', 1977, 'M', 681), +(114529, 'Ethan', 1977, 'M', 679), +(114530, 'Abraham', 1977, 'M', 678), +(114531, 'Demetrius', 1977, 'M', 674), +(114532, 'Nelson', 1977, 'M', 668), +(114533, 'Glen', 1977, 'M', 666), +(114534, 'Lewis', 1977, 'M', 664), +(114535, 'Fredrick', 1977, 'M', 661), +(114536, 'Brock', 1977, 'M', 653), +(114537, 'Marlon', 1977, 'M', 650), +(114538, 'Jordan', 1977, 'M', 649), +(114539, 'Jayson', 1977, 'M', 646), +(114540, 'Erick', 1977, 'M', 645), +(114541, 'Blake', 1977, 'M', 644), +(114542, 'Arturo', 1977, 'M', 642), +(114543, 'Donnie', 1977, 'M', 641), +(114544, 'Dana', 1977, 'M', 638), +(114545, 'Gerardo', 1977, 'M', 631), +(114546, 'Israel', 1977, 'M', 630), +(114547, 'Neal', 1977, 'M', 626), +(114548, 'Ben', 1977, 'M', 624), +(114549, 'Quentin', 1977, 'M', 623), +(114550, 'Charlie', 1977, 'M', 609), +(114551, 'Leslie', 1977, 'M', 607), +(114552, 'Bradford', 1977, 'M', 604), +(114553, 'Darin', 1977, 'M', 601), +(114554, 'Salvador', 1977, 'M', 600); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(114555, 'Terrell', 1977, 'M', 591), +(114556, 'Andres', 1977, 'M', 589), +(114557, 'Chadwick', 1977, 'M', 586), +(114558, 'Herbert', 1977, 'M', 585), +(114559, 'Jamal', 1977, 'M', 583), +(114560, 'Preston', 1977, 'M', 583), +(114561, 'Ashley', 1977, 'M', 582), +(114562, 'Enrique', 1977, 'M', 579), +(114563, 'Stuart', 1977, 'M', 576), +(114564, 'Angelo', 1977, 'M', 574), +(114565, 'Dwight', 1977, 'M', 574), +(114566, 'Trent', 1977, 'M', 572), +(114567, 'Bryant', 1977, 'M', 566), +(114568, 'Rocky', 1977, 'M', 565), +(114569, 'Lloyd', 1977, 'M', 559), +(114570, 'Rickey', 1977, 'M', 554), +(114571, 'Ernesto', 1977, 'M', 549), +(114572, 'Gordon', 1977, 'M', 549), +(114573, 'Rudy', 1977, 'M', 543), +(114574, 'Kerry', 1977, 'M', 540), +(114575, 'Rory', 1977, 'M', 538), +(114576, 'Felix', 1977, 'M', 534), +(114577, 'Lamont', 1977, 'M', 533), +(114578, 'Dylan', 1977, 'M', 532), +(114579, 'Marcos', 1977, 'M', 527), +(114580, 'Bryce', 1977, 'M', 526), +(114581, 'Dewayne', 1977, 'M', 525), +(114582, 'Gene', 1977, 'M', 524), +(114583, 'Levar', 1977, 'M', 523), +(114584, 'Mike', 1977, 'M', 521), +(114585, 'Jackie', 1977, 'M', 520), +(114586, 'Darnell', 1977, 'M', 517), +(114587, 'Freddie', 1977, 'M', 517), +(114588, 'Lamar', 1977, 'M', 515), +(114589, 'Johnnie', 1977, 'M', 514), +(114590, 'Elijah', 1977, 'M', 503), +(114591, 'Guy', 1977, 'M', 498), +(114592, 'Damion', 1977, 'M', 495), +(114593, 'Allan', 1977, 'M', 491), +(114594, 'Floyd', 1977, 'M', 491), +(114595, 'Beau', 1977, 'M', 489), +(114596, 'Jimmie', 1977, 'M', 488), +(114597, 'Drew', 1977, 'M', 486), +(114598, 'Kent', 1977, 'M', 485), +(114599, 'Leo', 1977, 'M', 484), +(114600, 'Lorenzo', 1977, 'M', 481), +(114601, 'Kendrick', 1977, 'M', 474), +(114602, 'Eli', 1977, 'M', 473), +(114603, 'Roland', 1977, 'M', 472), +(114604, 'Gregg', 1977, 'M', 468), +(114605, 'Carlton', 1977, 'M', 466), +(114606, 'Lester', 1977, 'M', 453), +(114607, 'Kareem', 1977, 'M', 448), +(114608, 'Noel', 1977, 'M', 447), +(114609, 'Julius', 1977, 'M', 444), +(114610, 'Levi', 1977, 'M', 444), +(114611, 'Devon', 1977, 'M', 442), +(114612, 'Marty', 1977, 'M', 441), +(114613, 'Jake', 1977, 'M', 439), +(114614, 'Rick', 1977, 'M', 439), +(114615, 'Nicolas', 1977, 'M', 434), +(114616, 'Stacy', 1977, 'M', 433), +(114617, 'Robbie', 1977, 'M', 432), +(114618, 'Donny', 1977, 'M', 426), +(114619, 'Terence', 1977, 'M', 425), +(114620, 'Clay', 1977, 'M', 423), +(114621, 'Nick', 1977, 'M', 423), +(114622, 'Pablo', 1977, 'M', 423), +(114623, 'Ted', 1977, 'M', 418), +(114624, 'Scotty', 1977, 'M', 416), +(114625, 'Bret', 1977, 'M', 415), +(114626, 'Rodolfo', 1977, 'M', 415), +(114627, 'Herman', 1977, 'M', 413), +(114628, 'Alfonso', 1977, 'M', 412), +(114629, 'Milton', 1977, 'M', 412), +(114630, 'Cornelius', 1977, 'M', 409), +(114631, 'Jim', 1977, 'M', 408), +(114632, 'Max', 1977, 'M', 403), +(114633, 'Kenny', 1977, 'M', 402), +(114634, 'Frankie', 1977, 'M', 401), +(114635, 'Kris', 1977, 'M', 398), +(114636, 'Brady', 1977, 'M', 393), +(114637, 'Chester', 1977, 'M', 393), +(114638, 'Randolph', 1977, 'M', 388), +(114639, 'Josh', 1977, 'M', 384), +(114640, 'Ty', 1977, 'M', 383), +(114641, 'Perry', 1977, 'M', 380), +(114642, 'Dan', 1977, 'M', 377), +(114643, 'Dante', 1977, 'M', 374), +(114644, 'Gilberto', 1977, 'M', 374), +(114645, 'Dion', 1977, 'M', 372), +(114646, 'Rolando', 1977, 'M', 371), +(114647, 'Desmond', 1977, 'M', 370), +(114648, 'Morgan', 1977, 'M', 370), +(114649, 'Cecil', 1977, 'M', 369), +(114650, 'Robin', 1977, 'M', 369), +(114651, 'Clyde', 1977, 'M', 368), +(114652, 'Simon', 1977, 'M', 368), +(114653, 'Elias', 1977, 'M', 366), +(114654, 'Darrin', 1977, 'M', 362), +(114655, 'Garry', 1977, 'M', 361), +(114656, 'Darius', 1977, 'M', 360), +(114657, 'Alonzo', 1977, 'M', 359), +(114658, 'Sam', 1977, 'M', 356), +(114659, 'Bryon', 1977, 'M', 353), +(114660, 'Guillermo', 1977, 'M', 351), +(114661, 'Salvatore', 1977, 'M', 351), +(114662, 'Rogelio', 1977, 'M', 350), +(114663, 'Gerard', 1977, 'M', 348), +(114664, 'Abel', 1977, 'M', 347), +(114665, 'Kristofer', 1977, 'M', 345), +(114666, 'Sidney', 1977, 'M', 345), +(114667, 'Xavier', 1977, 'M', 345), +(114668, 'Rusty', 1977, 'M', 342), +(114669, 'Loren', 1977, 'M', 340), +(114670, 'Oliver', 1977, 'M', 339), +(114671, 'Sheldon', 1977, 'M', 339), +(114672, 'Dallas', 1977, 'M', 336), +(114673, 'Myron', 1977, 'M', 336), +(114674, 'Kory', 1977, 'M', 335), +(114675, 'Felipe', 1977, 'M', 332), +(114676, 'Jamey', 1977, 'M', 332), +(114677, 'Sammy', 1977, 'M', 331), +(114678, 'Gustavo', 1977, 'M', 329), +(114679, 'Malcolm', 1977, 'M', 327), +(114680, 'Ismael', 1977, 'M', 326), +(114681, 'Bill', 1977, 'M', 324), +(114682, 'Donovan', 1977, 'M', 324), +(114683, 'Mickey', 1977, 'M', 324), +(114684, 'Owen', 1977, 'M', 324), +(114685, 'Darrick', 1977, 'M', 323), +(114686, 'Saul', 1977, 'M', 323), +(114687, 'Fabian', 1977, 'M', 322), +(114688, 'Taylor', 1977, 'M', 320), +(114689, 'Dominick', 1977, 'M', 319), +(114690, 'Harvey', 1977, 'M', 318), +(114691, 'Forrest', 1977, 'M', 315), +(114692, 'Moses', 1977, 'M', 314), +(114693, 'Derick', 1977, 'M', 311), +(114694, 'Everett', 1977, 'M', 311), +(114695, 'Jess', 1977, 'M', 311), +(114696, 'Rashad', 1977, 'M', 311), +(114697, 'Ron', 1977, 'M', 310), +(114698, 'Ramiro', 1977, 'M', 309), +(114699, 'Ira', 1977, 'M', 306), +(114700, 'Esteban', 1977, 'M', 302), +(114701, 'Gavin', 1977, 'M', 302), +(114702, 'Torrey', 1977, 'M', 302), +(114703, 'Otis', 1977, 'M', 301), +(114704, 'Sherman', 1977, 'M', 301), +(114705, 'Benny', 1977, 'M', 300), +(114706, 'Colby', 1977, 'M', 299), +(114707, 'Elvis', 1977, 'M', 299), +(114708, 'Kristian', 1977, 'M', 297), +(114709, 'Guadalupe', 1977, 'M', 296), +(114710, 'Matt', 1977, 'M', 293), +(114711, 'Timmy', 1977, 'M', 293), +(114712, 'Rex', 1977, 'M', 291), +(114713, 'Roman', 1977, 'M', 291), +(114714, 'Wendell', 1977, 'M', 290), +(114715, 'Antwan', 1977, 'M', 289), +(114716, 'Reuben', 1977, 'M', 287), +(114717, 'Teddy', 1977, 'M', 287), +(114718, 'Aron', 1977, 'M', 286), +(114719, 'Tom', 1977, 'M', 286), +(114720, 'Tory', 1977, 'M', 286), +(114721, 'Trenton', 1977, 'M', 285), +(114722, 'Tomas', 1977, 'M', 281), +(114723, 'Zachariah', 1977, 'M', 281), +(114724, 'Arnold', 1977, 'M', 280), +(114725, 'Jerrod', 1977, 'M', 279), +(114726, 'Lavar', 1977, 'M', 279), +(114727, 'Lyle', 1977, 'M', 279), +(114728, 'Dexter', 1977, 'M', 278), +(114729, 'Stephan', 1977, 'M', 278), +(114730, 'Stewart', 1977, 'M', 274), +(114731, 'Alton', 1977, 'M', 273), +(114732, 'Rodrick', 1977, 'M', 273), +(114733, 'Edmund', 1977, 'M', 271), +(114734, 'Randal', 1977, 'M', 271), +(114735, 'Cary', 1977, 'M', 270), +(114736, 'Elliott', 1977, 'M', 270), +(114737, 'Jamar', 1977, 'M', 270), +(114738, 'Nickolas', 1977, 'M', 270), +(114739, 'Quinton', 1977, 'M', 270), +(114740, 'Jarrett', 1977, 'M', 267), +(114741, 'Mason', 1977, 'M', 266), +(114742, 'Aric', 1977, 'M', 265), +(114743, 'Earnest', 1977, 'M', 265), +(114744, 'Jeromy', 1977, 'M', 264), +(114745, 'Jarvis', 1977, 'M', 262), +(114746, 'Pete', 1977, 'M', 262), +(114747, 'Hugh', 1977, 'M', 261), +(114748, 'Joesph', 1977, 'M', 261), +(114749, 'Reynaldo', 1977, 'M', 258), +(114750, 'Erich', 1977, 'M', 257), +(114751, 'Thaddeus', 1977, 'M', 257), +(114752, 'Clark', 1977, 'M', 256), +(114753, 'Landon', 1977, 'M', 256), +(114754, 'Leonardo', 1977, 'M', 256), +(114755, 'Tim', 1977, 'M', 256), +(114756, 'Tobias', 1977, 'M', 256), +(114757, 'Emanuel', 1977, 'M', 255), +(114758, 'Claude', 1977, 'M', 254), +(114759, 'Hugo', 1977, 'M', 254), +(114760, 'Isaiah', 1977, 'M', 254), +(114761, 'Carey', 1977, 'M', 253), +(114762, 'Emmanuel', 1977, 'M', 253), +(114763, 'Waylon', 1977, 'M', 253), +(114764, 'Amos', 1977, 'M', 252), +(114765, 'Branden', 1977, 'M', 252), +(114766, 'Efrain', 1977, 'M', 252), +(114767, 'Virgil', 1977, 'M', 252), +(114768, 'Blaine', 1977, 'M', 251), +(114769, 'Kurtis', 1977, 'M', 251), +(114770, 'Lionel', 1977, 'M', 251), +(114771, 'Graham', 1977, 'M', 250), +(114772, 'Kendall', 1977, 'M', 250), +(114773, 'Erin', 1977, 'M', 249), +(114774, 'Korey', 1977, 'M', 248), +(114775, 'Robby', 1977, 'M', 248), +(114776, 'Jed', 1977, 'M', 241), +(114777, 'Wallace', 1977, 'M', 241), +(114778, 'Scottie', 1977, 'M', 240), +(114779, 'Alexis', 1977, 'M', 239), +(114780, 'Bennie', 1977, 'M', 238), +(114781, 'Santiago', 1977, 'M', 236), +(114782, 'Jamel', 1977, 'M', 235), +(114783, 'Deon', 1977, 'M', 234), +(114784, 'Luther', 1977, 'M', 234), +(114785, 'Marquis', 1977, 'M', 234), +(114786, 'Demond', 1977, 'M', 232), +(114787, 'Morris', 1977, 'M', 232), +(114788, 'Reggie', 1977, 'M', 232), +(114789, 'Rico', 1977, 'M', 232), +(114790, 'Willis', 1977, 'M', 232), +(114791, 'Donte', 1977, 'M', 231), +(114792, 'Marion', 1977, 'M', 229), +(114793, 'Stefan', 1977, 'M', 228), +(114794, 'Donnell', 1977, 'M', 227), +(114795, 'Miles', 1977, 'M', 227), +(114796, 'Collin', 1977, 'M', 226), +(114797, 'Jonah', 1977, 'M', 226), +(114798, 'Johnathon', 1977, 'M', 225), +(114799, 'Will', 1977, 'M', 225), +(114800, 'Dorian', 1977, 'M', 224), +(114801, 'Kristoffer', 1977, 'M', 223), +(114802, 'Solomon', 1977, 'M', 222), +(114803, 'Moises', 1977, 'M', 220), +(114804, 'Emilio', 1977, 'M', 219), +(114805, 'Curt', 1977, 'M', 218), +(114806, 'Jarod', 1977, 'M', 218), +(114807, 'Jerald', 1977, 'M', 218), +(114808, 'Nathanael', 1977, 'M', 218), +(114809, 'Nolan', 1977, 'M', 218), +(114810, 'Humberto', 1977, 'M', 217), +(114811, 'Sylvester', 1977, 'M', 217), +(114812, 'Kunta', 1977, 'M', 215), +(114813, 'Sterling', 1977, 'M', 214), +(114814, 'Jeffry', 1977, 'M', 213), +(114815, 'Wilson', 1977, 'M', 213), +(114816, 'Freddy', 1977, 'M', 212), +(114817, 'Sonny', 1977, 'M', 211), +(114818, 'Jamaal', 1977, 'M', 208), +(114819, 'Jeramy', 1977, 'M', 208), +(114820, 'Leland', 1977, 'M', 208), +(114821, 'Monte', 1977, 'M', 208), +(114822, 'Noe', 1977, 'M', 208), +(114823, 'Vicente', 1977, 'M', 208), +(114824, 'Ahmad', 1977, 'M', 207), +(114825, 'Deandre', 1977, 'M', 207), +(114826, 'Ignacio', 1977, 'M', 206), +(114827, 'Joaquin', 1977, 'M', 206), +(114828, 'Avery', 1977, 'M', 204), +(114829, 'Darrel', 1977, 'M', 204), +(114830, 'Elliot', 1977, 'M', 204), +(114831, 'Logan', 1977, 'M', 204), +(114832, 'Bart', 1977, 'M', 203), +(114833, 'Hans', 1977, 'M', 203), +(114834, 'Jackson', 1977, 'M', 202), +(114835, 'Jamison', 1977, 'M', 202), +(114836, 'Rhett', 1977, 'M', 202), +(114837, 'Roosevelt', 1977, 'M', 202), +(114838, 'Scot', 1977, 'M', 201), +(114839, 'Jeramie', 1977, 'M', 200), +(114840, 'Jeremie', 1977, 'M', 200), +(114841, 'Stacey', 1977, 'M', 199), +(114842, 'Carlo', 1977, 'M', 197), +(114843, 'Ali', 1977, 'M', 196), +(114844, 'Josue', 1977, 'M', 196), +(114845, 'Shad', 1977, 'M', 196), +(114846, 'Blair', 1977, 'M', 193), +(114847, 'Dave', 1977, 'M', 191), +(114848, 'Jerod', 1977, 'M', 191), +(114849, 'Brant', 1977, 'M', 190), +(114850, 'Brendon', 1977, 'M', 189), +(114851, 'Harley', 1977, 'M', 189), +(114852, 'Denny', 1977, 'M', 188), +(114853, 'Dusty', 1977, 'M', 188), +(114854, 'Archie', 1977, 'M', 187), +(114855, 'Shelby', 1977, 'M', 187), +(114856, 'Adan', 1977, 'M', 186), +(114857, 'Buddy', 1977, 'M', 185), +(114858, 'Jonas', 1977, 'M', 185), +(114859, 'Dameon', 1977, 'M', 184), +(114860, 'Raphael', 1977, 'M', 183), +(114861, 'Shayne', 1977, 'M', 183), +(114862, 'Royce', 1977, 'M', 182), +(114863, 'Jarred', 1977, 'M', 181), +(114864, 'Rudolph', 1977, 'M', 181), +(114865, 'Wilbert', 1977, 'M', 181), +(114866, 'Winston', 1977, 'M', 181), +(114867, 'Jean', 1977, 'M', 180), +(114868, 'Tommie', 1977, 'M', 180), +(114869, 'Conrad', 1977, 'M', 179), +(114870, 'Elton', 1977, 'M', 179), +(114871, 'Jennifer', 1977, 'M', 179), +(114872, 'Marques', 1977, 'M', 179), +(114873, 'Pierre', 1977, 'M', 179), +(114874, 'Seneca', 1977, 'M', 179), +(114875, 'Santos', 1977, 'M', 178), +(114876, 'Wyatt', 1977, 'M', 178), +(114877, 'Brenton', 1977, 'M', 177), +(114878, 'Darian', 1977, 'M', 177), +(114879, 'Anton', 1977, 'M', 176), +(114880, 'Bradly', 1977, 'M', 176), +(114881, 'Elmer', 1977, 'M', 176), +(114882, 'Jasen', 1977, 'M', 176), +(114883, 'Aubrey', 1977, 'M', 175), +(114884, 'Jovan', 1977, 'M', 175), +(114885, 'Marcel', 1977, 'M', 172), +(114886, 'Weston', 1977, 'M', 172), +(114887, 'Willard', 1977, 'M', 172), +(114888, 'Benito', 1977, 'M', 171), +(114889, 'Delbert', 1977, 'M', 171), +(114890, 'Tavares', 1977, 'M', 169), +(114891, 'Mack', 1977, 'M', 168), +(114892, 'Agustin', 1977, 'M', 167), +(114893, 'Dane', 1977, 'M', 167), +(114894, 'Daren', 1977, 'M', 167), +(114895, 'Wilfredo', 1977, 'M', 167), +(114896, 'Jeremey', 1977, 'M', 166), +(114897, 'Stevie', 1977, 'M', 166), +(114898, 'Deshawn', 1977, 'M', 164), +(114899, 'Edmond', 1977, 'M', 164), +(114900, 'Arron', 1977, 'M', 163), +(114901, 'Brain', 1977, 'M', 163), +(114902, 'Kasey', 1977, 'M', 162), +(114903, 'Tremayne', 1977, 'M', 162), +(114904, 'Hubert', 1977, 'M', 161), +(114905, 'Jefferson', 1977, 'M', 161), +(114906, 'Rodrigo', 1977, 'M', 161), +(114907, 'Tyree', 1977, 'M', 161), +(114908, 'Grady', 1977, 'M', 160), +(114909, 'Hunter', 1977, 'M', 160), +(114910, 'Kenyatta', 1977, 'M', 160), +(114911, 'Andrea', 1977, 'M', 159), +(114912, 'Horace', 1977, 'M', 159), +(114913, 'Ezra', 1977, 'M', 158), +(114914, 'Laurence', 1977, 'M', 157), +(114915, 'Van', 1977, 'M', 157), +(114916, 'Ariel', 1977, 'M', 156), +(114917, 'Cole', 1977, 'M', 156), +(114918, 'Cornell', 1977, 'M', 155), +(114919, 'Josiah', 1977, 'M', 155), +(114920, 'Marlin', 1977, 'M', 155), +(114921, 'Shon', 1977, 'M', 155), +(114922, 'Barrett', 1977, 'M', 154), +(114923, 'Domingo', 1977, 'M', 154), +(114924, 'Ellis', 1977, 'M', 154), +(114925, 'Diego', 1977, 'M', 153), +(114926, 'Rocco', 1977, 'M', 153), +(114927, 'Antione', 1977, 'M', 152), +(114928, 'Chance', 1977, 'M', 152), +(114929, 'Heriberto', 1977, 'M', 152), +(114930, 'Bert', 1977, 'M', 151), +(114931, 'Louie', 1977, 'M', 151), +(114932, 'Cedrick', 1977, 'M', 150), +(114933, 'Ervin', 1977, 'M', 150), +(114934, 'Kenyon', 1977, 'M', 150), +(114935, 'Lynn', 1977, 'M', 149), +(114936, 'Mauricio', 1977, 'M', 149), +(114937, 'Rigoberto', 1977, 'M', 149), +(114938, 'Lincoln', 1977, 'M', 148), +(114939, 'Raheem', 1977, 'M', 148), +(114940, 'Theron', 1977, 'M', 148), +(114941, 'Abdul', 1977, 'M', 147), +(114942, 'Dedrick', 1977, 'M', 147), +(114943, 'Jamil', 1977, 'M', 147), +(114944, 'Quinn', 1977, 'M', 147), +(114945, 'Nigel', 1977, 'M', 146), +(114946, 'Reed', 1977, 'M', 146), +(114947, 'Cortney', 1977, 'M', 145), +(114948, 'Vance', 1977, 'M', 145), +(114949, 'Demarcus', 1977, 'M', 143), +(114950, 'Malik', 1977, 'M', 143), +(114951, 'Rickie', 1977, 'M', 143), +(114952, 'Davin', 1977, 'M', 142), +(114953, 'Michel', 1977, 'M', 142), +(114954, 'Rufus', 1977, 'M', 142), +(114955, 'Titus', 1977, 'M', 142), +(114956, 'Tracey', 1977, 'M', 142), +(114957, 'Zachery', 1977, 'M', 142), +(114958, 'Shelton', 1977, 'M', 141), +(114959, 'Ernie', 1977, 'M', 140), +(114960, 'Chase', 1977, 'M', 139), +(114961, 'Dewey', 1977, 'M', 139), +(114962, 'Giovanni', 1977, 'M', 139), +(114963, 'Hassan', 1977, 'M', 139), +(114964, 'Monty', 1977, 'M', 139), +(114965, 'Ronny', 1977, 'M', 139), +(114966, 'Tyron', 1977, 'M', 139), +(114967, 'Brooks', 1977, 'M', 138), +(114968, 'Percy', 1977, 'M', 138), +(114969, 'Thad', 1977, 'M', 138), +(114970, 'Chuck', 1977, 'M', 137), +(114971, 'Cyrus', 1977, 'M', 137), +(114972, 'Tad', 1977, 'M', 137), +(114973, 'Telly', 1977, 'M', 136), +(114974, 'Carson', 1977, 'M', 135), +(114975, 'Galen', 1977, 'M', 135), +(114976, 'Jasper', 1977, 'M', 135), +(114977, 'Markus', 1977, 'M', 135), +(114978, 'Reid', 1977, 'M', 135), +(114979, 'Vaughn', 1977, 'M', 135), +(114980, 'Lane', 1977, 'M', 134), +(114981, 'Zane', 1977, 'M', 134), +(114982, 'Cleveland', 1977, 'M', 133), +(114983, 'Mikel', 1977, 'M', 133), +(114984, 'Rodger', 1977, 'M', 133), +(114985, 'Keven', 1977, 'M', 132), +(114986, 'Kim', 1977, 'M', 131), +(114987, 'Delvin', 1977, 'M', 130), +(114988, 'Jevon', 1977, 'M', 130), +(114989, 'Lenny', 1977, 'M', 130), +(114990, 'Alphonso', 1977, 'M', 129), +(114991, 'Alvaro', 1977, 'M', 129), +(114992, 'Broderick', 1977, 'M', 129), +(114993, 'Denis', 1977, 'M', 129), +(114994, 'Kirby', 1977, 'M', 129), +(114995, 'Al', 1977, 'M', 128), +(114996, 'Danial', 1977, 'M', 128), +(114997, 'Adolfo', 1977, 'M', 127), +(114998, 'Chet', 1977, 'M', 127), +(114999, 'Nicky', 1977, 'M', 127), +(115000, 'Osvaldo', 1977, 'M', 126), +(115001, 'Jereme', 1977, 'M', 125), +(115002, 'Jedediah', 1977, 'M', 124), +(115003, 'Judson', 1977, 'M', 124), +(115004, 'Ken', 1977, 'M', 124), +(115005, 'Lowell', 1977, 'M', 124), +(115006, 'Nathanial', 1977, 'M', 124), +(115007, 'Anson', 1977, 'M', 123), +(115008, 'Ari', 1977, 'M', 123), +(115009, 'Dominique', 1977, 'M', 123), +(115010, 'Emmett', 1977, 'M', 123), +(115011, 'Ezekiel', 1977, 'M', 123), +(115012, 'Sebastian', 1977, 'M', 123), +(115013, 'Carter', 1977, 'M', 122), +(115014, 'Maxwell', 1977, 'M', 122), +(115015, 'Issac', 1977, 'M', 121), +(115016, 'Jayme', 1977, 'M', 121), +(115017, 'Jerimiah', 1977, 'M', 121), +(115018, 'Tanner', 1977, 'M', 121), +(115019, 'Bob', 1977, 'M', 120), +(115020, 'Jameel', 1977, 'M', 120), +(115021, 'Tristan', 1977, 'M', 120), +(115022, 'Brannon', 1977, 'M', 119), +(115023, 'Elvin', 1977, 'M', 119), +(115024, 'Kenya', 1977, 'M', 119), +(115025, 'Myles', 1977, 'M', 119), +(115026, 'Octavio', 1977, 'M', 119), +(115027, 'Antwon', 1977, 'M', 118), +(115028, 'Darwin', 1977, 'M', 118), +(115029, 'Federico', 1977, 'M', 118), +(115030, 'Josef', 1977, 'M', 118), +(115031, 'Riley', 1977, 'M', 118), +(115032, 'Westley', 1977, 'M', 118), +(115033, 'Braden', 1977, 'M', 117), +(115034, 'Garland', 1977, 'M', 116), +(115035, 'Raymundo', 1977, 'M', 116), +(115036, 'Boyd', 1977, 'M', 115), +(115037, 'Dax', 1977, 'M', 115), +(115038, 'Jamin', 1977, 'M', 115), +(115039, 'Jude', 1977, 'M', 115), +(115040, 'Keenan', 1977, 'M', 115), +(115041, 'Trinity', 1977, 'M', 115), +(115042, 'Abram', 1977, 'M', 114), +(115043, 'Davis', 1977, 'M', 114), +(115044, 'Dirk', 1977, 'M', 114), +(115045, 'Terrill', 1977, 'M', 114), +(115046, 'Chadrick', 1977, 'M', 113), +(115047, 'Jan', 1977, 'M', 112), +(115048, 'Antony', 1977, 'M', 111), +(115049, 'Chauncey', 1977, 'M', 111), +(115050, 'Gregorio', 1977, 'M', 111), +(115051, 'Homer', 1977, 'M', 111), +(115052, 'Sedrick', 1977, 'M', 111), +(115053, 'Trey', 1977, 'M', 111), +(115054, 'Donta', 1977, 'M', 110), +(115055, 'Errol', 1977, 'M', 110), +(115056, 'Fidel', 1977, 'M', 110), +(115057, 'Brennan', 1977, 'M', 108), +(115058, 'Denver', 1977, 'M', 108), +(115059, 'Gino', 1977, 'M', 108), +(115060, 'Jacques', 1977, 'M', 108), +(115061, 'Javon', 1977, 'M', 108), +(115062, 'Woodrow', 1977, 'M', 108), +(115063, 'August', 1977, 'M', 107), +(115064, 'Dedric', 1977, 'M', 107), +(115065, 'Laron', 1977, 'M', 107), +(115066, 'Lindsey', 1977, 'M', 107), +(115067, 'Tobin', 1977, 'M', 107), +(115068, 'Wilbur', 1977, 'M', 107), +(115069, 'Doyle', 1977, 'M', 105), +(115070, 'Eliseo', 1977, 'M', 105), +(115071, 'Lashawn', 1977, 'M', 105), +(115072, 'Torrance', 1977, 'M', 105), +(115073, 'Brice', 1977, 'M', 104), +(115074, 'Edwardo', 1977, 'M', 104), +(115075, 'Elbert', 1977, 'M', 104), +(115076, 'Garth', 1977, 'M', 104), +(115077, 'Jade', 1977, 'M', 104), +(115078, 'Jermey', 1977, 'M', 104), +(115079, 'Kinte', 1977, 'M', 104), +(115080, 'Moshe', 1977, 'M', 104), +(115081, 'Billie', 1977, 'M', 103), +(115082, 'Coy', 1977, 'M', 103), +(115083, 'Francesco', 1977, 'M', 103), +(115084, 'Gerry', 1977, 'M', 103), +(115085, 'Greggory', 1977, 'M', 103), +(115086, 'Cale', 1977, 'M', 102), +(115087, 'Daron', 1977, 'M', 102), +(115088, 'Judd', 1977, 'M', 102), +(115089, 'Torey', 1977, 'M', 102), +(115090, 'Corry', 1977, 'M', 101), +(115091, 'Dejuan', 1977, 'M', 101), +(115092, 'Eloy', 1977, 'M', 101), +(115093, 'Giuseppe', 1977, 'M', 101), +(115094, 'Junior', 1977, 'M', 101), +(115095, 'Rashawn', 1977, 'M', 101), +(115096, 'Doug', 1977, 'M', 100), +(115097, 'Jennifer', 1978, 'F', 56311), +(115098, 'Melissa', 1978, 'F', 28332), +(115099, 'Jessica', 1978, 'F', 26104), +(115100, 'Amy', 1978, 'F', 23215), +(115101, 'Heather', 1978, 'F', 22268), +(115102, 'Amanda', 1978, 'F', 20520), +(115103, 'Angela', 1978, 'F', 20503), +(115104, 'Sarah', 1978, 'F', 19981), +(115105, 'Michelle', 1978, 'F', 18861), +(115106, 'Nicole', 1978, 'F', 17270), +(115107, 'Lisa', 1978, 'F', 17032), +(115108, 'Kelly', 1978, 'F', 16985), +(115109, 'Kimberly', 1978, 'F', 16876), +(115110, 'Elizabeth', 1978, 'F', 16808), +(115111, 'Christina', 1978, 'F', 16369), +(115112, 'Stephanie', 1978, 'F', 16229), +(115113, 'Rebecca', 1978, 'F', 13799), +(115114, 'Crystal', 1978, 'F', 12593), +(115115, 'Laura', 1978, 'F', 11243), +(115116, 'Jamie', 1978, 'F', 10983), +(115117, 'Erin', 1978, 'F', 10792), +(115118, 'Shannon', 1978, 'F', 10601), +(115119, 'Andrea', 1978, 'F', 10467), +(115120, 'Mary', 1978, 'F', 10047), +(115121, 'Rachel', 1978, 'F', 9806), +(115122, 'Julie', 1978, 'F', 9799), +(115123, 'April', 1978, 'F', 9587), +(115124, 'Sara', 1978, 'F', 8866), +(115125, 'Christine', 1978, 'F', 8273), +(115126, 'Amber', 1978, 'F', 8172), +(115127, 'Danielle', 1978, 'F', 7984), +(115128, 'Tiffany', 1978, 'F', 7701), +(115129, 'Emily', 1978, 'F', 7480), +(115130, 'Erica', 1978, 'F', 7342), +(115131, 'Carrie', 1978, 'F', 7320), +(115132, 'Maria', 1978, 'F', 7010), +(115133, 'Brandy', 1978, 'F', 6696), +(115134, 'Katherine', 1978, 'F', 6625), +(115135, 'Karen', 1978, 'F', 6374), +(115136, 'Tara', 1978, 'F', 6328), +(115137, 'Megan', 1978, 'F', 5897), +(115138, 'Monica', 1978, 'F', 5865), +(115139, 'Misty', 1978, 'F', 5833), +(115140, 'Stacy', 1978, 'F', 5776), +(115141, 'Tina', 1978, 'F', 5697), +(115142, 'Jill', 1978, 'F', 5675), +(115143, 'Tracy', 1978, 'F', 5629), +(115144, 'Patricia', 1978, 'F', 5497), +(115145, 'Susan', 1978, 'F', 5418), +(115146, 'Cynthia', 1978, 'F', 5404), +(115147, 'Kristy', 1978, 'F', 5332), +(115148, 'Dawn', 1978, 'F', 5218), +(115149, 'Stacey', 1978, 'F', 5000), +(115150, 'Melanie', 1978, 'F', 4995), +(115151, 'Holly', 1978, 'F', 4975), +(115152, 'Wendy', 1978, 'F', 4918), +(115153, 'Kathryn', 1978, 'F', 4810), +(115154, 'Alicia', 1978, 'F', 4747), +(115155, 'Christy', 1978, 'F', 4663), +(115156, 'Lori', 1978, 'F', 4631), +(115157, 'Brandi', 1978, 'F', 4500), +(115158, 'Kristen', 1978, 'F', 4368), +(115159, 'Leslie', 1978, 'F', 4341), +(115160, 'Kristina', 1978, 'F', 4228), +(115161, 'Natalie', 1978, 'F', 4169), +(115162, 'Anna', 1978, 'F', 4167), +(115163, 'Tammy', 1978, 'F', 4073), +(115164, 'Courtney', 1978, 'F', 4035), +(115165, 'Sandra', 1978, 'F', 4007), +(115166, 'Dana', 1978, 'F', 4004), +(115167, 'Jaime', 1978, 'F', 4002), +(115168, 'Catherine', 1978, 'F', 3956), +(115169, 'Veronica', 1978, 'F', 3937), +(115170, 'Samantha', 1978, 'F', 3892), +(115171, 'Allison', 1978, 'F', 3867), +(115172, 'Vanessa', 1978, 'F', 3849), +(115173, 'Tonya', 1978, 'F', 3827), +(115174, 'Kristin', 1978, 'F', 3808), +(115175, 'Kathleen', 1978, 'F', 3746), +(115176, 'Lauren', 1978, 'F', 3671), +(115177, 'Tanya', 1978, 'F', 3578), +(115178, 'Jacqueline', 1978, 'F', 3576), +(115179, 'Heidi', 1978, 'F', 3567), +(115180, 'Melinda', 1978, 'F', 3563), +(115181, 'Denise', 1978, 'F', 3520), +(115182, 'Michele', 1978, 'F', 3485), +(115183, 'Ashley', 1978, 'F', 3483), +(115184, 'Teresa', 1978, 'F', 3472), +(115185, 'Robin', 1978, 'F', 3442), +(115186, 'Katie', 1978, 'F', 3420), +(115187, 'Sabrina', 1978, 'F', 3349), +(115188, 'Valerie', 1978, 'F', 3300), +(115189, 'Gina', 1978, 'F', 3222), +(115190, 'Cheryl', 1978, 'F', 3169), +(115191, 'Lindsay', 1978, 'F', 3122), +(115192, 'Mandy', 1978, 'F', 3107), +(115193, 'Nancy', 1978, 'F', 3049), +(115194, 'Kristi', 1978, 'F', 2992), +(115195, 'Renee', 1978, 'F', 2969), +(115196, 'Linda', 1978, 'F', 2936), +(115197, 'Theresa', 1978, 'F', 2922), +(115198, 'Diana', 1978, 'F', 2884), +(115199, 'Brenda', 1978, 'F', 2870), +(115200, 'Erika', 1978, 'F', 2825), +(115201, 'Tamara', 1978, 'F', 2799), +(115202, 'Sharon', 1978, 'F', 2756), +(115203, 'Beth', 1978, 'F', 2743), +(115204, 'Leah', 1978, 'F', 2712), +(115205, 'Pamela', 1978, 'F', 2691), +(115206, 'Margaret', 1978, 'F', 2634), +(115207, 'Jenny', 1978, 'F', 2619), +(115208, 'Julia', 1978, 'F', 2592), +(115209, 'Barbara', 1978, 'F', 2578), +(115210, 'Natasha', 1978, 'F', 2556), +(115211, 'Brooke', 1978, 'F', 2532), +(115212, 'Nichole', 1978, 'F', 2510), +(115213, 'Suzanne', 1978, 'F', 2508), +(115214, 'Deborah', 1978, 'F', 2479), +(115215, 'Anne', 1978, 'F', 2469), +(115216, 'Donna', 1978, 'F', 2462), +(115217, 'Victoria', 1978, 'F', 2451), +(115218, 'Katrina', 1978, 'F', 2441), +(115219, 'Alison', 1978, 'F', 2433), +(115220, 'Kelli', 1978, 'F', 2327), +(115221, 'Ann', 1978, 'F', 2318), +(115222, 'Tabitha', 1978, 'F', 2310), +(115223, 'Kara', 1978, 'F', 2291), +(115224, 'Jodi', 1978, 'F', 2266), +(115225, 'Regina', 1978, 'F', 2187), +(115226, 'Carolyn', 1978, 'F', 2175), +(115227, 'Jaclyn', 1978, 'F', 2129), +(115228, 'Carla', 1978, 'F', 2100), +(115229, 'Colleen', 1978, 'F', 2057), +(115230, 'Cindy', 1978, 'F', 2044), +(115231, 'Latoya', 1978, 'F', 2038), +(115232, 'Deanna', 1978, 'F', 2031), +(115233, 'Kari', 1978, 'F', 1968), +(115234, 'Yolanda', 1978, 'F', 1951), +(115235, 'Joy', 1978, 'F', 1947), +(115236, 'Felicia', 1978, 'F', 1939), +(115237, 'Angel', 1978, 'F', 1935), +(115238, 'Molly', 1978, 'F', 1933), +(115239, 'Summer', 1978, 'F', 1917), +(115240, 'Aimee', 1978, 'F', 1905), +(115241, 'Kendra', 1978, 'F', 1904), +(115242, 'Meredith', 1978, 'F', 1881), +(115243, 'Debra', 1978, 'F', 1874), +(115244, 'Marie', 1978, 'F', 1861), +(115245, 'Shanna', 1978, 'F', 1844), +(115246, 'Sherry', 1978, 'F', 1829), +(115247, 'Paula', 1978, 'F', 1827), +(115248, 'Cassandra', 1978, 'F', 1813), +(115249, 'Lindsey', 1978, 'F', 1813), +(115250, 'Desiree', 1978, 'F', 1809), +(115251, 'Bethany', 1978, 'F', 1766), +(115252, 'Krista', 1978, 'F', 1734), +(115253, 'Adrienne', 1978, 'F', 1732), +(115254, 'Kristine', 1978, 'F', 1732), +(115255, 'Janet', 1978, 'F', 1730), +(115256, 'Rhonda', 1978, 'F', 1725), +(115257, 'Shawna', 1978, 'F', 1703), +(115258, 'Rachael', 1978, 'F', 1695), +(115259, 'Bridget', 1978, 'F', 1685), +(115260, 'Meghan', 1978, 'F', 1680), +(115261, 'Virginia', 1978, 'F', 1653), +(115262, 'Tamika', 1978, 'F', 1635), +(115263, 'Kristie', 1978, 'F', 1618), +(115264, 'Candice', 1978, 'F', 1614), +(115265, 'Laurie', 1978, 'F', 1614), +(115266, 'Mindy', 1978, 'F', 1597), +(115267, 'Trisha', 1978, 'F', 1582), +(115268, 'Monique', 1978, 'F', 1573), +(115269, 'Casey', 1978, 'F', 1535), +(115270, 'Christie', 1978, 'F', 1534), +(115271, 'Shelly', 1978, 'F', 1501), +(115272, 'Martha', 1978, 'F', 1484), +(115273, 'Stacie', 1978, 'F', 1465), +(115274, 'Toni', 1978, 'F', 1457), +(115275, 'Tracey', 1978, 'F', 1450), +(115276, 'Kellie', 1978, 'F', 1446), +(115277, 'Diane', 1978, 'F', 1432), +(115278, 'Carmen', 1978, 'F', 1428), +(115279, 'Miranda', 1978, 'F', 1415), +(115280, 'Sheila', 1978, 'F', 1413), +(115281, 'Latasha', 1978, 'F', 1397), +(115282, 'Janelle', 1978, 'F', 1384), +(115283, 'Robyn', 1978, 'F', 1378), +(115284, 'Alisha', 1978, 'F', 1377), +(115285, 'Kelley', 1978, 'F', 1363), +(115286, 'Joanna', 1978, 'F', 1348), +(115287, 'Cara', 1978, 'F', 1346), +(115288, 'Shana', 1978, 'F', 1345), +(115289, 'Rebekah', 1978, 'F', 1343), +(115290, 'Jillian', 1978, 'F', 1341), +(115291, 'Melody', 1978, 'F', 1330), +(115292, 'Candace', 1978, 'F', 1327), +(115293, 'Keri', 1978, 'F', 1323), +(115294, 'Ebony', 1978, 'F', 1318), +(115295, 'Olivia', 1978, 'F', 1309), +(115296, 'Caroline', 1978, 'F', 1308), +(115297, 'Autumn', 1978, 'F', 1307), +(115298, 'Shauna', 1978, 'F', 1267), +(115299, 'Sonya', 1978, 'F', 1266), +(115300, 'Sonia', 1978, 'F', 1265), +(115301, 'Carol', 1978, 'F', 1262), +(115302, 'Marisa', 1978, 'F', 1257), +(115303, 'Tricia', 1978, 'F', 1249), +(115304, 'Kerri', 1978, 'F', 1222), +(115305, 'Angie', 1978, 'F', 1221), +(115306, 'Anita', 1978, 'F', 1221), +(115307, 'Traci', 1978, 'F', 1219), +(115308, 'Ruth', 1978, 'F', 1208), +(115309, 'Yvonne', 1978, 'F', 1208), +(115310, 'Claudia', 1978, 'F', 1199), +(115311, 'Jody', 1978, 'F', 1168), +(115312, 'Janice', 1978, 'F', 1161), +(115313, 'Kerry', 1978, 'F', 1154), +(115314, 'Angelica', 1978, 'F', 1147), +(115315, 'Marissa', 1978, 'F', 1146), +(115316, 'Ana', 1978, 'F', 1136), +(115317, 'Kathy', 1978, 'F', 1133), +(115318, 'Terri', 1978, 'F', 1116), +(115319, 'Lynn', 1978, 'F', 1108), +(115320, 'Connie', 1978, 'F', 1102), +(115321, 'Priscilla', 1978, 'F', 1099), +(115322, 'Nikki', 1978, 'F', 1096), +(115323, 'Bonnie', 1978, 'F', 1091), +(115324, 'Cristina', 1978, 'F', 1087), +(115325, 'Krystal', 1978, 'F', 1074), +(115326, 'Rosa', 1978, 'F', 1073), +(115327, 'Naomi', 1978, 'F', 1069), +(115328, 'Charity', 1978, 'F', 1066), +(115329, 'Lakisha', 1978, 'F', 1066), +(115330, 'Audrey', 1978, 'F', 1062), +(115331, 'Tasha', 1978, 'F', 1053), +(115332, 'Gloria', 1978, 'F', 1048), +(115333, 'Annette', 1978, 'F', 1045), +(115334, 'Shelley', 1978, 'F', 1029), +(115335, 'Jeanette', 1978, 'F', 1027), +(115336, 'Leticia', 1978, 'F', 1019), +(115337, 'Ellen', 1978, 'F', 1012), +(115338, 'Abigail', 1978, 'F', 1009), +(115339, 'Kate', 1978, 'F', 1001), +(115340, 'Becky', 1978, 'F', 995), +(115341, 'Ginger', 1978, 'F', 995), +(115342, 'Keisha', 1978, 'F', 985), +(115343, 'Tameka', 1978, 'F', 962), +(115344, 'Jana', 1978, 'F', 958), +(115345, 'Latisha', 1978, 'F', 956), +(115346, 'Gretchen', 1978, 'F', 947), +(115347, 'Karla', 1978, 'F', 947), +(115348, 'Sylvia', 1978, 'F', 947), +(115349, 'Charlene', 1978, 'F', 938), +(115350, 'Latonya', 1978, 'F', 936), +(115351, 'Frances', 1978, 'F', 926), +(115352, 'Helen', 1978, 'F', 924), +(115353, 'Jami', 1978, 'F', 917), +(115354, 'Leigh', 1978, 'F', 916), +(115355, 'Rose', 1978, 'F', 916), +(115356, 'Dorothy', 1978, 'F', 913), +(115357, 'Amie', 1978, 'F', 910), +(115358, 'Christa', 1978, 'F', 892), +(115359, 'Rita', 1978, 'F', 890), +(115360, 'Sherri', 1978, 'F', 889), +(115361, 'Bobbie', 1978, 'F', 876), +(115362, 'Jacquelyn', 1978, 'F', 868), +(115363, 'Hope', 1978, 'F', 866), +(115364, 'Juanita', 1978, 'F', 866), +(115365, 'Yvette', 1978, 'F', 866), +(115366, 'Eva', 1978, 'F', 855), +(115367, 'Sheri', 1978, 'F', 850), +(115368, 'Corinne', 1978, 'F', 847), +(115369, 'Belinda', 1978, 'F', 843), +(115370, 'Jennie', 1978, 'F', 843), +(115371, 'Lesley', 1978, 'F', 842), +(115372, 'Faith', 1978, 'F', 839), +(115373, 'Charlotte', 1978, 'F', 830), +(115374, 'Jocelyn', 1978, 'F', 828), +(115375, 'Jodie', 1978, 'F', 828), +(115376, 'Beverly', 1978, 'F', 824), +(115377, 'Evelyn', 1978, 'F', 821), +(115378, 'Kim', 1978, 'F', 820), +(115379, 'Aisha', 1978, 'F', 819), +(115380, 'Trina', 1978, 'F', 818), +(115381, 'Kirsten', 1978, 'F', 814), +(115382, 'Lakeisha', 1978, 'F', 812), +(115383, 'Adriana', 1978, 'F', 810), +(115384, 'Marsha', 1978, 'F', 809), +(115385, 'Raquel', 1978, 'F', 804), +(115386, 'Alyssa', 1978, 'F', 800), +(115387, 'Jasmine', 1978, 'F', 797), +(115388, 'Alice', 1978, 'F', 791), +(115389, 'Lacey', 1978, 'F', 788), +(115390, 'Billie', 1978, 'F', 786), +(115391, 'Rachelle', 1978, 'F', 783), +(115392, 'Sally', 1978, 'F', 776), +(115393, 'Whitney', 1978, 'F', 776), +(115394, 'Maureen', 1978, 'F', 775), +(115395, 'Joyce', 1978, 'F', 774), +(115396, 'Alexis', 1978, 'F', 771), +(115397, 'Brandie', 1978, 'F', 766), +(115398, 'Staci', 1978, 'F', 764), +(115399, 'Stefanie', 1978, 'F', 764), +(115400, 'Alexandra', 1978, 'F', 763), +(115401, 'Jenifer', 1978, 'F', 763), +(115402, 'Hilary', 1978, 'F', 762), +(115403, 'Devon', 1978, 'F', 760), +(115404, 'Roxanne', 1978, 'F', 759), +(115405, 'Chasity', 1978, 'F', 758), +(115406, 'Elaine', 1978, 'F', 758), +(115407, 'Penny', 1978, 'F', 750), +(115408, 'Hannah', 1978, 'F', 736), +(115409, 'Jackie', 1978, 'F', 733), +(115410, 'Joanne', 1978, 'F', 732), +(115411, 'Sandy', 1978, 'F', 732), +(115412, 'Rochelle', 1978, 'F', 722), +(115413, 'Norma', 1978, 'F', 719), +(115414, 'Darlene', 1978, 'F', 718), +(115415, 'Hillary', 1978, 'F', 718), +(115416, 'Betty', 1978, 'F', 715), +(115417, 'Esther', 1978, 'F', 713), +(115418, 'Tracie', 1978, 'F', 712), +(115419, 'Marcia', 1978, 'F', 707), +(115420, 'Christi', 1978, 'F', 706), +(115421, 'Chrystal', 1978, 'F', 704), +(115422, 'Irene', 1978, 'F', 704), +(115423, 'Lydia', 1978, 'F', 703), +(115424, 'Jane', 1978, 'F', 699), +(115425, 'Lakesha', 1978, 'F', 678), +(115426, 'Angelina', 1978, 'F', 673), +(115427, 'Cassie', 1978, 'F', 671), +(115428, 'Annie', 1978, 'F', 662), +(115429, 'Joni', 1978, 'F', 657), +(115430, 'Jean', 1978, 'F', 654), +(115431, 'Tanisha', 1978, 'F', 651), +(115432, 'Shirley', 1978, 'F', 647), +(115433, 'Chandra', 1978, 'F', 645), +(115434, 'Amelia', 1978, 'F', 643), +(115435, 'Jessie', 1978, 'F', 643), +(115436, 'Cathy', 1978, 'F', 639), +(115437, 'Marilyn', 1978, 'F', 635), +(115438, 'Jolene', 1978, 'F', 632), +(115439, 'Mandi', 1978, 'F', 632), +(115440, 'Eileen', 1978, 'F', 630), +(115441, 'Brittany', 1978, 'F', 629), +(115442, 'Ruby', 1978, 'F', 629), +(115443, 'Judith', 1978, 'F', 626), +(115444, 'Lora', 1978, 'F', 621), +(115445, 'Tami', 1978, 'F', 619), +(115446, 'Abby', 1978, 'F', 618), +(115447, 'Peggy', 1978, 'F', 614), +(115448, 'Miriam', 1978, 'F', 613), +(115449, 'Nadia', 1978, 'F', 611), +(115450, 'Debbie', 1978, 'F', 605), +(115451, 'Ericka', 1978, 'F', 599), +(115452, 'Selena', 1978, 'F', 597), +(115453, 'Bianca', 1978, 'F', 593), +(115454, 'Hollie', 1978, 'F', 591), +(115455, 'Elisabeth', 1978, 'F', 588), +(115456, 'Grace', 1978, 'F', 588), +(115457, 'Kenya', 1978, 'F', 588), +(115458, 'Wanda', 1978, 'F', 588), +(115459, 'Joann', 1978, 'F', 587), +(115460, 'Teri', 1978, 'F', 586), +(115461, 'Elisa', 1978, 'F', 585), +(115462, 'Bobbi', 1978, 'F', 583), +(115463, 'Nora', 1978, 'F', 583), +(115464, 'Ryan', 1978, 'F', 580), +(115465, 'Lorena', 1978, 'F', 577), +(115466, 'Alisa', 1978, 'F', 575), +(115467, 'Elena', 1978, 'F', 573), +(115468, 'Allyson', 1978, 'F', 570), +(115469, 'Kimberley', 1978, 'F', 570), +(115470, 'Camille', 1978, 'F', 569), +(115471, 'Nina', 1978, 'F', 562), +(115472, 'Lara', 1978, 'F', 560), +(115473, 'Chrissy', 1978, 'F', 559), +(115474, 'Tonia', 1978, 'F', 559), +(115475, 'Cecilia', 1978, 'F', 556), +(115476, 'Judy', 1978, 'F', 555), +(115477, 'Melisa', 1978, 'F', 554), +(115478, 'Carissa', 1978, 'F', 553), +(115479, 'Carly', 1978, 'F', 550), +(115480, 'Michael', 1978, 'F', 545), +(115481, 'Gwendolyn', 1978, 'F', 543), +(115482, 'Tori', 1978, 'F', 541), +(115483, 'Antoinette', 1978, 'F', 537), +(115484, 'Gabriela', 1978, 'F', 537), +(115485, 'Alissa', 1978, 'F', 536), +(115486, 'Guadalupe', 1978, 'F', 535), +(115487, 'Shawn', 1978, 'F', 535), +(115488, 'Carey', 1978, 'F', 534), +(115489, 'Roberta', 1978, 'F', 529), +(115490, 'Marisol', 1978, 'F', 527), +(115491, 'Mia', 1978, 'F', 525), +(115492, 'Johanna', 1978, 'F', 520), +(115493, 'Haley', 1978, 'F', 518), +(115494, 'Dena', 1978, 'F', 517), +(115495, 'Tania', 1978, 'F', 516), +(115496, 'Maribel', 1978, 'F', 515), +(115497, 'Alma', 1978, 'F', 513), +(115498, 'Tia', 1978, 'F', 513), +(115499, 'Tabatha', 1978, 'F', 512), +(115500, 'Lana', 1978, 'F', 511), +(115501, 'Kasey', 1978, 'F', 510), +(115502, 'Terra', 1978, 'F', 509), +(115503, 'Kylie', 1978, 'F', 508), +(115504, 'Lorraine', 1978, 'F', 506), +(115505, 'Candy', 1978, 'F', 505), +(115506, 'Chelsea', 1978, 'F', 505), +(115507, 'Cheri', 1978, 'F', 496), +(115508, 'Aja', 1978, 'F', 491), +(115509, 'Celeste', 1978, 'F', 489), +(115510, 'Lee', 1978, 'F', 489), +(115511, 'Audra', 1978, 'F', 488), +(115512, 'Jeanne', 1978, 'F', 488), +(115513, 'Janine', 1978, 'F', 485), +(115514, 'Dianna', 1978, 'F', 483), +(115515, 'Loretta', 1978, 'F', 482), +(115516, 'Shelby', 1978, 'F', 482), +(115517, 'Claire', 1978, 'F', 481), +(115518, 'Sonja', 1978, 'F', 481), +(115519, 'Vicki', 1978, 'F', 479), +(115520, 'Karina', 1978, 'F', 478), +(115521, 'Esmeralda', 1978, 'F', 476), +(115522, 'Lashonda', 1978, 'F', 476), +(115523, 'Misti', 1978, 'F', 474), +(115524, 'Betsy', 1978, 'F', 472), +(115525, 'Serena', 1978, 'F', 471), +(115526, 'Marlena', 1978, 'F', 470), +(115527, 'Jenna', 1978, 'F', 462), +(115528, 'Bernadette', 1978, 'F', 461), +(115529, 'Dina', 1978, 'F', 461), +(115530, 'Taryn', 1978, 'F', 461), +(115531, 'Rhiannon', 1978, 'F', 460), +(115532, 'Genevieve', 1978, 'F', 458), +(115533, 'Lynette', 1978, 'F', 458), +(115534, 'Josephine', 1978, 'F', 457), +(115535, 'Kizzy', 1978, 'F', 457), +(115536, 'Marlene', 1978, 'F', 456), +(115537, 'Lacy', 1978, 'F', 453), +(115538, 'Rosemary', 1978, 'F', 453), +(115539, 'Iris', 1978, 'F', 448), +(115540, 'Margarita', 1978, 'F', 448), +(115541, 'Elisha', 1978, 'F', 444), +(115542, 'Marla', 1978, 'F', 444), +(115543, 'Sheryl', 1978, 'F', 444), +(115544, 'Jayme', 1978, 'F', 443), +(115545, 'Lawanda', 1978, 'F', 443), +(115546, 'Emma', 1978, 'F', 442), +(115547, 'Alana', 1978, 'F', 441), +(115548, 'Tessa', 1978, 'F', 441), +(115549, 'Katy', 1978, 'F', 440), +(115550, 'Malinda', 1978, 'F', 440), +(115551, 'Noelle', 1978, 'F', 436), +(115552, 'Angelia', 1978, 'F', 435), +(115553, 'Angelique', 1978, 'F', 435), +(115554, 'Latosha', 1978, 'F', 435), +(115555, 'Blanca', 1978, 'F', 431), +(115556, 'Alyson', 1978, 'F', 430), +(115557, 'Lena', 1978, 'F', 428), +(115558, 'Cherie', 1978, 'F', 424), +(115559, 'Latanya', 1978, 'F', 424), +(115560, 'Maricela', 1978, 'F', 424), +(115561, 'Deana', 1978, 'F', 423), +(115562, 'Leanne', 1978, 'F', 423), +(115563, 'Yesenia', 1978, 'F', 423), +(115564, 'Katharine', 1978, 'F', 422), +(115565, 'Cari', 1978, 'F', 421), +(115566, 'Karin', 1978, 'F', 421), +(115567, 'Joan', 1978, 'F', 420), +(115568, 'Devin', 1978, 'F', 418), +(115569, 'Gabrielle', 1978, 'F', 417), +(115570, 'Liza', 1978, 'F', 417), +(115571, 'Janel', 1978, 'F', 413), +(115572, 'Sophia', 1978, 'F', 412), +(115573, 'Wendi', 1978, 'F', 409), +(115574, 'Randi', 1978, 'F', 408), +(115575, 'Jeannette', 1978, 'F', 407), +(115576, 'Jeannie', 1978, 'F', 407), +(115577, 'Marcie', 1978, 'F', 406), +(115578, 'Adrianne', 1978, 'F', 404), +(115579, 'Cristy', 1978, 'F', 402), +(115580, 'Mayra', 1978, 'F', 402), +(115581, 'Sasha', 1978, 'F', 401), +(115582, 'Lillian', 1978, 'F', 399), +(115583, 'Karrie', 1978, 'F', 398), +(115584, 'Marcy', 1978, 'F', 398), +(115585, 'Bridgette', 1978, 'F', 397), +(115586, 'Carolina', 1978, 'F', 396), +(115587, 'Tammie', 1978, 'F', 396), +(115588, 'Kisha', 1978, 'F', 395), +(115589, 'Tera', 1978, 'F', 395), +(115590, 'Darcy', 1978, 'F', 393), +(115591, 'Gail', 1978, 'F', 393), +(115592, 'Marianne', 1978, 'F', 393), +(115593, 'Aubrey', 1978, 'F', 389), +(115594, 'Susana', 1978, 'F', 388), +(115595, 'Marci', 1978, 'F', 387), +(115596, 'Ramona', 1978, 'F', 387), +(115597, 'Lea', 1978, 'F', 386), +(115598, 'Meagan', 1978, 'F', 386), +(115599, 'Chastity', 1978, 'F', 383), +(115600, 'Briana', 1978, 'F', 378), +(115601, 'Shanda', 1978, 'F', 373), +(115602, 'Patrice', 1978, 'F', 372), +(115603, 'Tisha', 1978, 'F', 371), +(115604, 'Jeanine', 1978, 'F', 370), +(115605, 'Qiana', 1978, 'F', 370), +(115606, 'Marjorie', 1978, 'F', 369), +(115607, 'Paige', 1978, 'F', 367), +(115608, 'Kristal', 1978, 'F', 365), +(115609, 'Clarissa', 1978, 'F', 364), +(115610, 'Isabel', 1978, 'F', 364), +(115611, 'Caryn', 1978, 'F', 362), +(115612, 'Glenda', 1978, 'F', 362), +(115613, 'Constance', 1978, 'F', 360), +(115614, 'Shanta', 1978, 'F', 359), +(115615, 'Shari', 1978, 'F', 359), +(115616, 'Myra', 1978, 'F', 356), +(115617, 'Cortney', 1978, 'F', 355), +(115618, 'Luz', 1978, 'F', 355), +(115619, 'Arlene', 1978, 'F', 354), +(115620, 'Larissa', 1978, 'F', 354), +(115621, 'Christal', 1978, 'F', 352), +(115622, 'Tiffani', 1978, 'F', 352), +(115623, 'Georgia', 1978, 'F', 349), +(115624, 'Janna', 1978, 'F', 349), +(115625, 'Vivian', 1978, 'F', 348), +(115626, 'Sommer', 1978, 'F', 346), +(115627, 'Shameka', 1978, 'F', 345), +(115628, 'Maggie', 1978, 'F', 343), +(115629, 'Raven', 1978, 'F', 342), +(115630, 'Cori', 1978, 'F', 337), +(115631, 'Kimberlee', 1978, 'F', 337), +(115632, 'Vickie', 1978, 'F', 337), +(115633, 'Janell', 1978, 'F', 334), +(115634, 'Darla', 1978, 'F', 333), +(115635, 'Farrah', 1978, 'F', 332), +(115636, 'Doris', 1978, 'F', 331), +(115637, 'Edith', 1978, 'F', 330), +(115638, 'Nadine', 1978, 'F', 330), +(115639, 'Ronda', 1978, 'F', 326), +(115640, 'Sherrie', 1978, 'F', 326), +(115641, 'Jamila', 1978, 'F', 325), +(115642, 'Marcella', 1978, 'F', 325), +(115643, 'Destiny', 1978, 'F', 324), +(115644, 'Jo', 1978, 'F', 323), +(115645, 'Vicky', 1978, 'F', 323), +(115646, 'Leann', 1978, 'F', 321), +(115647, 'Irma', 1978, 'F', 319), +(115648, 'Silvia', 1978, 'F', 318), +(115649, 'Adrian', 1978, 'F', 315), +(115650, 'Pauline', 1978, 'F', 315), +(115651, 'Shayla', 1978, 'F', 315), +(115652, 'Sheree', 1978, 'F', 314), +(115653, 'Kenisha', 1978, 'F', 313), +(115654, 'Laurel', 1978, 'F', 313), +(115655, 'Nakia', 1978, 'F', 313), +(115656, 'Chanda', 1978, 'F', 312), +(115657, 'Corrie', 1978, 'F', 312), +(115658, 'Maryann', 1978, 'F', 312), +(115659, 'Olga', 1978, 'F', 310), +(115660, 'Catrina', 1978, 'F', 308), +(115661, 'Karyn', 1978, 'F', 307), +(115662, 'Tosha', 1978, 'F', 307), +(115663, 'Shonda', 1978, 'F', 306), +(115664, 'Lynda', 1978, 'F', 304), +(115665, 'Janie', 1978, 'F', 303), +(115666, 'Jaimie', 1978, 'F', 302), +(115667, 'Daphne', 1978, 'F', 301), +(115668, 'Meghann', 1978, 'F', 301), +(115669, 'Tanika', 1978, 'F', 301), +(115670, 'Janette', 1978, 'F', 299), +(115671, 'Brianna', 1978, 'F', 298), +(115672, 'Christopher', 1978, 'F', 298), +(115673, 'Corey', 1978, 'F', 298), +(115674, 'Alejandra', 1978, 'F', 297), +(115675, 'Corina', 1978, 'F', 297), +(115676, 'Maya', 1978, 'F', 296), +(115677, 'Dora', 1978, 'F', 295), +(115678, 'Jason', 1978, 'F', 295), +(115679, 'Dominique', 1978, 'F', 294), +(115680, 'June', 1978, 'F', 293), +(115681, 'Beatrice', 1978, 'F', 292), +(115682, 'Latrice', 1978, 'F', 292), +(115683, 'Tomeka', 1978, 'F', 292), +(115684, 'Lucy', 1978, 'F', 289), +(115685, 'Marina', 1978, 'F', 289), +(115686, 'Delia', 1978, 'F', 288), +(115687, 'Mariah', 1978, 'F', 288), +(115688, 'Selina', 1978, 'F', 288), +(115689, 'Clara', 1978, 'F', 287), +(115690, 'Quiana', 1978, 'F', 287), +(115691, 'Rene', 1978, 'F', 287), +(115692, 'Valarie', 1978, 'F', 287), +(115693, 'Dara', 1978, 'F', 286), +(115694, 'Araceli', 1978, 'F', 285), +(115695, 'Ladonna', 1978, 'F', 285), +(115696, 'Alecia', 1978, 'F', 284), +(115697, 'Elise', 1978, 'F', 284), +(115698, 'Lashanda', 1978, 'F', 284), +(115699, 'Bridgett', 1978, 'F', 283), +(115700, 'Cory', 1978, 'F', 283), +(115701, 'Corrine', 1978, 'F', 282), +(115702, 'Daisy', 1978, 'F', 282), +(115703, 'Deidre', 1978, 'F', 282), +(115704, 'Demetria', 1978, 'F', 281), +(115705, 'Dolores', 1978, 'F', 281), +(115706, 'Antonia', 1978, 'F', 280), +(115707, 'Lakeshia', 1978, 'F', 280), +(115708, 'Elissa', 1978, 'F', 279), +(115709, 'Terry', 1978, 'F', 277), +(115710, 'Renae', 1978, 'F', 275), +(115711, 'Crissy', 1978, 'F', 274), +(115712, 'Sharonda', 1978, 'F', 274), +(115713, 'Tawana', 1978, 'F', 274), +(115714, 'Katina', 1978, 'F', 273), +(115715, 'Kiley', 1978, 'F', 273), +(115716, 'Mara', 1978, 'F', 273), +(115717, 'Edna', 1978, 'F', 271), +(115718, 'Francesca', 1978, 'F', 270), +(115719, 'Lucia', 1978, 'F', 270), +(115720, 'Athena', 1978, 'F', 269), +(115721, 'James', 1978, 'F', 269), +(115722, 'Eleanor', 1978, 'F', 268), +(115723, 'Lorie', 1978, 'F', 268), +(115724, 'Ivy', 1978, 'F', 267), +(115725, 'Kesha', 1978, 'F', 267), +(115726, 'Ami', 1978, 'F', 265), +(115727, 'Gena', 1978, 'F', 264), +(115728, 'Brook', 1978, 'F', 261), +(115729, 'Chantel', 1978, 'F', 261), +(115730, 'Morgan', 1978, 'F', 261), +(115731, 'Rena', 1978, 'F', 260), +(115732, 'Sadie', 1978, 'F', 259), +(115733, 'Noemi', 1978, 'F', 258), +(115734, 'January', 1978, 'F', 257), +(115735, 'Shanika', 1978, 'F', 257), +(115736, 'Sondra', 1978, 'F', 257), +(115737, 'Susanne', 1978, 'F', 257), +(115738, 'Robert', 1978, 'F', 255), +(115739, 'Shamika', 1978, 'F', 253), +(115740, 'Celina', 1978, 'F', 252), +(115741, 'Shelia', 1978, 'F', 252), +(115742, 'Julianne', 1978, 'F', 251), +(115743, 'Lucinda', 1978, 'F', 251), +(115744, 'Meaghan', 1978, 'F', 251), +(115745, 'Adriane', 1978, 'F', 250), +(115746, 'Leanna', 1978, 'F', 250), +(115747, 'Geneva', 1978, 'F', 249), +(115748, 'Jeanna', 1978, 'F', 249), +(115749, 'Jeri', 1978, 'F', 248), +(115750, 'Simone', 1978, 'F', 248), +(115751, 'Jan', 1978, 'F', 247), +(115752, 'David', 1978, 'F', 245), +(115753, 'Dayna', 1978, 'F', 245), +(115754, 'Rocio', 1978, 'F', 245), +(115755, 'Kami', 1978, 'F', 244), +(115756, 'Malissa', 1978, 'F', 244), +(115757, 'Annmarie', 1978, 'F', 243), +(115758, 'Susanna', 1978, 'F', 243), +(115759, 'Tawanda', 1978, 'F', 242), +(115760, 'Harmony', 1978, 'F', 241), +(115761, 'Rosalinda', 1978, 'F', 241), +(115762, 'Stella', 1978, 'F', 241), +(115763, 'Andria', 1978, 'F', 240), +(115764, 'Casandra', 1978, 'F', 240), +(115765, 'Elaina', 1978, 'F', 239), +(115766, 'Callie', 1978, 'F', 237), +(115767, 'Kia', 1978, 'F', 237), +(115768, 'Lindy', 1978, 'F', 237), +(115769, 'Bree', 1978, 'F', 236), +(115770, 'Hayley', 1978, 'F', 236), +(115771, 'Hilda', 1978, 'F', 236), +(115772, 'Jasmin', 1978, 'F', 236), +(115773, 'Kayla', 1978, 'F', 236), +(115774, 'Ingrid', 1978, 'F', 235), +(115775, 'Racheal', 1978, 'F', 235), +(115776, 'Sue', 1978, 'F', 235), +(115777, 'Susie', 1978, 'F', 235), +(115778, 'Mona', 1978, 'F', 234), +(115779, 'Lashawn', 1978, 'F', 233), +(115780, 'Jeannine', 1978, 'F', 232), +(115781, 'Shante', 1978, 'F', 232), +(115782, 'Anastasia', 1978, 'F', 231), +(115783, 'Letitia', 1978, 'F', 231), +(115784, 'Rosalyn', 1978, 'F', 231), +(115785, 'Charmaine', 1978, 'F', 230), +(115786, 'Holli', 1978, 'F', 230), +(115787, 'Kori', 1978, 'F', 230), +(115788, 'Shavon', 1978, 'F', 230), +(115789, 'Mackenzie', 1978, 'F', 229), +(115790, 'Maritza', 1978, 'F', 229), +(115791, 'Beatriz', 1978, 'F', 228), +(115792, 'Mollie', 1978, 'F', 228), +(115793, 'Sunshine', 1978, 'F', 228), +(115794, 'Jacklyn', 1978, 'F', 227), +(115795, 'Shasta', 1978, 'F', 227), +(115796, 'Danelle', 1978, 'F', 226), +(115797, 'Elsa', 1978, 'F', 226), +(115798, 'Cora', 1978, 'F', 225), +(115799, 'Tiffanie', 1978, 'F', 225), +(115800, 'Francine', 1978, 'F', 224), +(115801, 'Madeline', 1978, 'F', 224), +(115802, 'Niki', 1978, 'F', 224), +(115803, 'Nikia', 1978, 'F', 224), +(115804, 'Kerrie', 1978, 'F', 223), +(115805, 'Monika', 1978, 'F', 223), +(115806, 'Caitlin', 1978, 'F', 222), +(115807, 'Marta', 1978, 'F', 222), +(115808, 'Phyllis', 1978, 'F', 222), +(115809, 'Deidra', 1978, 'F', 221), +(115810, 'John', 1978, 'F', 221), +(115811, 'Lynne', 1978, 'F', 221), +(115812, 'Marisela', 1978, 'F', 221), +(115813, 'Cathleen', 1978, 'F', 220), +(115814, 'Maranda', 1978, 'F', 220), +(115815, 'Windy', 1978, 'F', 220), +(115816, 'Ida', 1978, 'F', 219), +(115817, 'Mercedes', 1978, 'F', 219), +(115818, 'Shalonda', 1978, 'F', 219), +(115819, 'Venus', 1978, 'F', 219), +(115820, 'Celia', 1978, 'F', 218), +(115821, 'Mellissa', 1978, 'F', 218), +(115822, 'Lisette', 1978, 'F', 217), +(115823, 'Justine', 1978, 'F', 216), +(115824, 'Mindi', 1978, 'F', 216), +(115825, 'Josie', 1978, 'F', 215), +(115826, 'Tamra', 1978, 'F', 215), +(115827, 'Laquita', 1978, 'F', 214), +(115828, 'Shantel', 1978, 'F', 214), +(115829, 'Tammi', 1978, 'F', 214), +(115830, 'Helena', 1978, 'F', 213), +(115831, 'Jammie', 1978, 'F', 213), +(115832, 'Talia', 1978, 'F', 213), +(115833, 'Brenna', 1978, 'F', 212), +(115834, 'Dusty', 1978, 'F', 212), +(115835, 'Graciela', 1978, 'F', 211), +(115836, 'Tomika', 1978, 'F', 211), +(115837, 'Jade', 1978, 'F', 210), +(115838, 'Paulette', 1978, 'F', 210), +(115839, 'Tiana', 1978, 'F', 210), +(115840, 'Bambi', 1978, 'F', 209), +(115841, 'Christen', 1978, 'F', 209), +(115842, 'Rosemarie', 1978, 'F', 209), +(115843, 'Eve', 1978, 'F', 208), +(115844, 'Jada', 1978, 'F', 208), +(115845, 'Deirdre', 1978, 'F', 207), +(115846, 'Gwen', 1978, 'F', 207), +(115847, 'Griselda', 1978, 'F', 206), +(115848, 'Natalia', 1978, 'F', 206), +(115849, 'Brandee', 1978, 'F', 205), +(115850, 'Eliza', 1978, 'F', 205), +(115851, 'Jeana', 1978, 'F', 205), +(115852, 'Rashida', 1978, 'F', 205), +(115853, 'Stacia', 1978, 'F', 204), +(115854, 'Alysia', 1978, 'F', 203), +(115855, 'Eugenia', 1978, 'F', 203), +(115856, 'Nakisha', 1978, 'F', 203), +(115857, 'Brianne', 1978, 'F', 202), +(115858, 'Georgina', 1978, 'F', 202), +(115859, 'Krissy', 1978, 'F', 202), +(115860, 'Lois', 1978, 'F', 202), +(115861, 'Octavia', 1978, 'F', 202), +(115862, 'Salina', 1978, 'F', 202), +(115863, 'Brittney', 1978, 'F', 201), +(115864, 'Christel', 1978, 'F', 201), +(115865, 'Gladys', 1978, 'F', 201), +(115866, 'Jenelle', 1978, 'F', 201), +(115867, 'Kellee', 1978, 'F', 201), +(115868, 'Shellie', 1978, 'F', 201), +(115869, 'Louise', 1978, 'F', 200), +(115870, 'Bertha', 1978, 'F', 199), +(115871, 'Marian', 1978, 'F', 199), +(115872, 'Ashlee', 1978, 'F', 198), +(115873, 'Chanel', 1978, 'F', 198), +(115874, 'Ada', 1978, 'F', 197), +(115875, 'Chiquita', 1978, 'F', 197), +(115876, 'Jordan', 1978, 'F', 196), +(115877, 'Shannan', 1978, 'F', 196), +(115878, 'Kyla', 1978, 'F', 195), +(115879, 'Lourdes', 1978, 'F', 195), +(115880, 'Alexandria', 1978, 'F', 194), +(115881, 'Carisa', 1978, 'F', 194), +(115882, 'Kacey', 1978, 'F', 194), +(115883, 'Shanon', 1978, 'F', 194), +(115884, 'Leeann', 1978, 'F', 192), +(115885, 'Maura', 1978, 'F', 191), +(115886, 'Jesse', 1978, 'F', 190), +(115887, 'Danette', 1978, 'F', 189), +(115888, 'Deena', 1978, 'F', 189), +(115889, 'Jerri', 1978, 'F', 189), +(115890, 'Regan', 1978, 'F', 189), +(115891, 'Shavonne', 1978, 'F', 189), +(115892, 'Takisha', 1978, 'F', 189), +(115893, 'Anitra', 1978, 'F', 188), +(115894, 'Kathrine', 1978, 'F', 188), +(115895, 'Lacie', 1978, 'F', 188), +(115896, 'Latonia', 1978, 'F', 188), +(115897, 'Dionne', 1978, 'F', 187), +(115898, 'Kenyatta', 1978, 'F', 187), +(115899, 'Lynnette', 1978, 'F', 187), +(115900, 'Tawanna', 1978, 'F', 187), +(115901, 'William', 1978, 'F', 187), +(115902, 'Jena', 1978, 'F', 186), +(115903, 'Leila', 1978, 'F', 186), +(115904, 'Yadira', 1978, 'F', 186), +(115905, 'Annemarie', 1978, 'F', 185), +(115906, 'Noel', 1978, 'F', 185), +(115907, 'Bernice', 1978, 'F', 184), +(115908, 'Carina', 1978, 'F', 184), +(115909, 'Juana', 1978, 'F', 184), +(115910, 'Latricia', 1978, 'F', 184), +(115911, 'Leona', 1978, 'F', 184), +(115912, 'Marion', 1978, 'F', 184), +(115913, 'Shanita', 1978, 'F', 184), +(115914, 'Tyra', 1978, 'F', 184), +(115915, 'Alanna', 1978, 'F', 183), +(115916, 'Davina', 1978, 'F', 183), +(115917, 'Emilie', 1978, 'F', 183), +(115918, 'Keely', 1978, 'F', 183), +(115919, 'Richelle', 1978, 'F', 182), +(115920, 'Tanesha', 1978, 'F', 182), +(115921, 'Desirae', 1978, 'F', 181), +(115922, 'Joelle', 1978, 'F', 181), +(115923, 'Joseph', 1978, 'F', 181), +(115924, 'Margie', 1978, 'F', 181), +(115925, 'Mildred', 1978, 'F', 180), +(115926, 'Colette', 1978, 'F', 179), +(115927, 'Doreen', 1978, 'F', 179), +(115928, 'Shayna', 1978, 'F', 179), +(115929, 'Ursula', 1978, 'F', 179), +(115930, 'Eboni', 1978, 'F', 178), +(115931, 'Martina', 1978, 'F', 178), +(115932, 'Daniel', 1978, 'F', 177), +(115933, 'Jeanie', 1978, 'F', 177), +(115934, 'Leilani', 1978, 'F', 177), +(115935, 'Shawanda', 1978, 'F', 177), +(115936, 'Sofia', 1978, 'F', 177), +(115937, 'Abbey', 1978, 'F', 176), +(115938, 'Abbie', 1978, 'F', 176), +(115939, 'Alexa', 1978, 'F', 176), +(115940, 'Margo', 1978, 'F', 176), +(115941, 'Starla', 1978, 'F', 176), +(115942, 'Gillian', 1978, 'F', 175), +(115943, 'Stephenie', 1978, 'F', 175), +(115944, 'Tawnya', 1978, 'F', 175), +(115945, 'Gayle', 1978, 'F', 174), +(115946, 'Lyndsey', 1978, 'F', 174), +(115947, 'Mellisa', 1978, 'F', 174), +(115948, 'Michaela', 1978, 'F', 174), +(115949, 'Spring', 1978, 'F', 174), +(115950, 'Venessa', 1978, 'F', 174), +(115951, 'Christian', 1978, 'F', 173), +(115952, 'Ella', 1978, 'F', 173), +(115953, 'Brian', 1978, 'F', 171), +(115954, 'Fatima', 1978, 'F', 171), +(115955, 'Karissa', 1978, 'F', 171), +(115956, 'Liliana', 1978, 'F', 171), +(115957, 'Shara', 1978, 'F', 171), +(115958, 'Shaunna', 1978, 'F', 171), +(115959, 'Thelma', 1978, 'F', 171), +(115960, 'Chana', 1978, 'F', 170), +(115961, 'Karie', 1978, 'F', 170), +(115962, 'Sandi', 1978, 'F', 170), +(115963, 'Carie', 1978, 'F', 169), +(115964, 'Consuelo', 1978, 'F', 169), +(115965, 'Daniela', 1978, 'F', 169), +(115966, 'Dianne', 1978, 'F', 169), +(115967, 'Keli', 1978, 'F', 169), +(115968, 'Marlana', 1978, 'F', 169), +(115969, 'Sherita', 1978, 'F', 169), +(115970, 'Starr', 1978, 'F', 169), +(115971, 'Rosalie', 1978, 'F', 168), +(115972, 'Rosanna', 1978, 'F', 168), +(115973, 'Tamera', 1978, 'F', 168), +(115974, 'Aurora', 1978, 'F', 167), +(115975, 'Delores', 1978, 'F', 167), +(115976, 'Felecia', 1978, 'F', 167), +(115977, 'Reagan', 1978, 'F', 167), +(115978, 'Sunny', 1978, 'F', 167), +(115979, 'Rae', 1978, 'F', 166), +(115980, 'Anissa', 1978, 'F', 165), +(115981, 'Juliana', 1978, 'F', 165), +(115982, 'Nikita', 1978, 'F', 165), +(115983, 'Ariane', 1978, 'F', 164), +(115984, 'Kelsey', 1978, 'F', 164), +(115985, 'Kylee', 1978, 'F', 164), +(115986, 'Lizette', 1978, 'F', 164), +(115987, 'Vera', 1978, 'F', 164), +(115988, 'Caren', 1978, 'F', 163), +(115989, 'Christin', 1978, 'F', 163), +(115990, 'Mitzi', 1978, 'F', 163), +(115991, 'Ariel', 1978, 'F', 162), +(115992, 'Rosie', 1978, 'F', 162), +(115993, 'Adria', 1978, 'F', 161), +(115994, 'Nichol', 1978, 'F', 161), +(115995, 'Angelita', 1978, 'F', 160), +(115996, 'Tenisha', 1978, 'F', 160), +(115997, 'Aileen', 1978, 'F', 159), +(115998, 'Cody', 1978, 'F', 159), +(115999, 'Sierra', 1978, 'F', 159), +(116000, 'Suzanna', 1978, 'F', 159), +(116001, 'Tamica', 1978, 'F', 159), +(116002, 'Kyle', 1978, 'F', 158), +(116003, 'Nikole', 1978, 'F', 158), +(116004, 'Trish', 1978, 'F', 158), +(116005, 'Deanne', 1978, 'F', 157), +(116006, 'Candi', 1978, 'F', 156), +(116007, 'Leia', 1978, 'F', 156), +(116008, 'Matthew', 1978, 'F', 156), +(116009, 'Aaron', 1978, 'F', 155), +(116010, 'Angeline', 1978, 'F', 155), +(116011, 'Janis', 1978, 'F', 155), +(116012, 'Jenni', 1978, 'F', 155), +(116013, 'Kay', 1978, 'F', 155), +(116014, 'Rosalind', 1978, 'F', 155), +(116015, 'Sharla', 1978, 'F', 155), +(116016, 'Delilah', 1978, 'F', 154), +(116017, 'Faye', 1978, 'F', 154), +(116018, 'Juliet', 1978, 'F', 154); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(116019, 'Liana', 1978, 'F', 154), +(116020, 'Natosha', 1978, 'F', 154), +(116021, 'Ariana', 1978, 'F', 153), +(116022, 'Greta', 1978, 'F', 153), +(116023, 'Kizzie', 1978, 'F', 153), +(116024, 'Mandie', 1978, 'F', 153), +(116025, 'Melonie', 1978, 'F', 153), +(116026, 'Eunice', 1978, 'F', 152), +(116027, 'Janae', 1978, 'F', 152), +(116028, 'Lola', 1978, 'F', 152), +(116029, 'Nicolle', 1978, 'F', 152), +(116030, 'Somer', 1978, 'F', 152), +(116031, 'Alesha', 1978, 'F', 151), +(116032, 'Damaris', 1978, 'F', 151), +(116033, 'Justina', 1978, 'F', 151), +(116034, 'Rebeca', 1978, 'F', 151), +(116035, 'Anthony', 1978, 'F', 150), +(116036, 'Ashleigh', 1978, 'F', 150), +(116037, 'Danita', 1978, 'F', 150), +(116038, 'Eric', 1978, 'F', 150), +(116039, 'Fawn', 1978, 'F', 150), +(116040, 'Felisha', 1978, 'F', 150), +(116041, 'Mendy', 1978, 'F', 150), +(116042, 'Susannah', 1978, 'F', 150), +(116043, 'Imelda', 1978, 'F', 149), +(116044, 'Shonna', 1978, 'F', 149), +(116045, 'Esperanza', 1978, 'F', 148), +(116046, 'Sheena', 1978, 'F', 148), +(116047, 'Joey', 1978, 'F', 147), +(116048, 'Magdalena', 1978, 'F', 147), +(116049, 'Star', 1978, 'F', 147), +(116050, 'Adrianna', 1978, 'F', 146), +(116051, 'Alaina', 1978, 'F', 146), +(116052, 'Corinna', 1978, 'F', 146), +(116053, 'Florence', 1978, 'F', 146), +(116054, 'Micah', 1978, 'F', 146), +(116055, 'Casie', 1978, 'F', 145), +(116056, 'Ginny', 1978, 'F', 145), +(116057, 'Patty', 1978, 'F', 145), +(116058, 'Trinity', 1978, 'F', 145), +(116059, 'Trista', 1978, 'F', 145), +(116060, 'Danica', 1978, 'F', 144), +(116061, 'Kindra', 1978, 'F', 144), +(116062, 'Maxine', 1978, 'F', 144), +(116063, 'Melodie', 1978, 'F', 144), +(116064, 'Raina', 1978, 'F', 144), +(116065, 'Suzette', 1978, 'F', 144), +(116066, 'Trudy', 1978, 'F', 144), +(116067, 'Khalilah', 1978, 'F', 143), +(116068, 'Nellie', 1978, 'F', 143), +(116069, 'Yasmin', 1978, 'F', 143), +(116070, 'Charla', 1978, 'F', 142), +(116071, 'Danna', 1978, 'F', 142), +(116072, 'Latarsha', 1978, 'F', 142), +(116073, 'Michell', 1978, 'F', 142), +(116074, 'Therese', 1978, 'F', 142), +(116075, 'Elvira', 1978, 'F', 141), +(116076, 'Joshua', 1978, 'F', 141), +(116077, 'Kirstin', 1978, 'F', 141), +(116078, 'Layla', 1978, 'F', 141), +(116079, 'Malia', 1978, 'F', 141), +(116080, 'Tennille', 1978, 'F', 141), +(116081, 'Valencia', 1978, 'F', 141), +(116082, 'Camilla', 1978, 'F', 140), +(116083, 'Dixie', 1978, 'F', 140), +(116084, 'Jaimee', 1978, 'F', 140), +(116085, 'Precious', 1978, 'F', 140), +(116086, 'Tana', 1978, 'F', 140), +(116087, 'Toya', 1978, 'F', 140), +(116088, 'Francisca', 1978, 'F', 139), +(116089, 'Kiana', 1978, 'F', 138), +(116090, 'Bettina', 1978, 'F', 137), +(116091, 'Charissa', 1978, 'F', 137), +(116092, 'Karri', 1978, 'F', 137), +(116093, 'Kyra', 1978, 'F', 137), +(116094, 'Nicola', 1978, 'F', 137), +(116095, 'Shantell', 1978, 'F', 137), +(116096, 'Winter', 1978, 'F', 137), +(116097, 'Benita', 1978, 'F', 136), +(116098, 'Cristal', 1978, 'F', 136), +(116099, 'Johnna', 1978, 'F', 136), +(116100, 'Joleen', 1978, 'F', 136), +(116101, 'Tamekia', 1978, 'F', 136), +(116102, 'Ayesha', 1978, 'F', 135), +(116103, 'Buffy', 1978, 'F', 135), +(116104, 'Cathryn', 1978, 'F', 135), +(116105, 'Deann', 1978, 'F', 135), +(116106, 'Francis', 1978, 'F', 135), +(116107, 'Joanie', 1978, 'F', 135), +(116108, 'Kira', 1978, 'F', 135), +(116109, 'Mari', 1978, 'F', 135), +(116110, 'Melina', 1978, 'F', 135), +(116111, 'Alina', 1978, 'F', 134), +(116112, 'Dannielle', 1978, 'F', 134), +(116113, 'Darci', 1978, 'F', 134), +(116114, 'Darcie', 1978, 'F', 134), +(116115, 'Janeen', 1978, 'F', 134), +(116116, 'Latesha', 1978, 'F', 134), +(116117, 'Rhea', 1978, 'F', 134), +(116118, 'Rosario', 1978, 'F', 134), +(116119, 'Tamiko', 1978, 'F', 134), +(116120, 'Terrie', 1978, 'F', 134), +(116121, 'Carole', 1978, 'F', 133), +(116122, 'Celena', 1978, 'F', 133), +(116123, 'Lashunda', 1978, 'F', 133), +(116124, 'Lorrie', 1978, 'F', 133), +(116125, 'Shelli', 1978, 'F', 133), +(116126, 'Tarah', 1978, 'F', 133), +(116127, 'Ava', 1978, 'F', 132), +(116128, 'Cameron', 1978, 'F', 132), +(116129, 'Charisse', 1978, 'F', 132), +(116130, 'Pearl', 1978, 'F', 132), +(116131, 'Shawnta', 1978, 'F', 132), +(116132, 'Cristin', 1978, 'F', 131), +(116133, 'Hazel', 1978, 'F', 131), +(116134, 'Ivette', 1978, 'F', 131), +(116135, 'Kandice', 1978, 'F', 131), +(116136, 'Kati', 1978, 'F', 131), +(116137, 'Kris', 1978, 'F', 131), +(116138, 'Mistie', 1978, 'F', 131), +(116139, 'Thomas', 1978, 'F', 131), +(116140, 'Cary', 1978, 'F', 130), +(116141, 'Kandi', 1978, 'F', 130), +(116142, 'Shea', 1978, 'F', 130), +(116143, 'Shiloh', 1978, 'F', 130), +(116144, 'Alycia', 1978, 'F', 129), +(116145, 'Ayanna', 1978, 'F', 129), +(116146, 'Chris', 1978, 'F', 129), +(116147, 'Iesha', 1978, 'F', 129), +(116148, 'India', 1978, 'F', 129), +(116149, 'Corie', 1978, 'F', 128), +(116150, 'Devan', 1978, 'F', 128), +(116151, 'Marybeth', 1978, 'F', 128), +(116152, 'Roseann', 1978, 'F', 128), +(116153, 'Marquita', 1978, 'F', 127), +(116154, 'Cecelia', 1978, 'F', 126), +(116155, 'Daniella', 1978, 'F', 126), +(116156, 'Katheryn', 1978, 'F', 126), +(116157, 'Lissette', 1978, 'F', 126), +(116158, 'Mariana', 1978, 'F', 126), +(116159, 'Shani', 1978, 'F', 126), +(116160, 'Asia', 1978, 'F', 125), +(116161, 'Lucretia', 1978, 'F', 125), +(116162, 'Marcela', 1978, 'F', 125), +(116163, 'Roxanna', 1978, 'F', 125), +(116164, 'Ryann', 1978, 'F', 125), +(116165, 'Samara', 1978, 'F', 125), +(116166, 'Nichelle', 1978, 'F', 124), +(116167, 'Sharee', 1978, 'F', 124), +(116168, 'Clare', 1978, 'F', 123), +(116169, 'Danyelle', 1978, 'F', 123), +(116170, 'Jeremy', 1978, 'F', 123), +(116171, 'Josefina', 1978, 'F', 123), +(116172, 'Shanell', 1978, 'F', 123), +(116173, 'Joi', 1978, 'F', 122), +(116174, 'Kacy', 1978, 'F', 122), +(116175, 'Kamilah', 1978, 'F', 122), +(116176, 'Kiesha', 1978, 'F', 122), +(116177, 'Shemeka', 1978, 'F', 122), +(116178, 'Stephany', 1978, 'F', 122), +(116179, 'Tarsha', 1978, 'F', 122), +(116180, 'Keshia', 1978, 'F', 121), +(116181, 'Lauri', 1978, 'F', 121), +(116182, 'Luisa', 1978, 'F', 121), +(116183, 'Salena', 1978, 'F', 121), +(116184, 'Angella', 1978, 'F', 120), +(116185, 'Anika', 1978, 'F', 120), +(116186, 'Geraldine', 1978, 'F', 120), +(116187, 'Keesha', 1978, 'F', 120), +(116188, 'Lakiesha', 1978, 'F', 120), +(116189, 'Cherise', 1978, 'F', 119), +(116190, 'Della', 1978, 'F', 119), +(116191, 'Elana', 1978, 'F', 119), +(116192, 'Georgette', 1978, 'F', 119), +(116193, 'Jessi', 1978, 'F', 119), +(116194, 'Julianna', 1978, 'F', 119), +(116195, 'Kristyn', 1978, 'F', 119), +(116196, 'Lyndsay', 1978, 'F', 119), +(116197, 'Marnie', 1978, 'F', 119), +(116198, 'Taylor', 1978, 'F', 119), +(116199, 'Temeka', 1978, 'F', 119), +(116200, 'Chante', 1978, 'F', 118), +(116201, 'Charles', 1978, 'F', 118), +(116202, 'Justin', 1978, 'F', 118), +(116203, 'Lashawnda', 1978, 'F', 118), +(116204, 'Petra', 1978, 'F', 118), +(116205, 'Portia', 1978, 'F', 118), +(116206, 'Siobhan', 1978, 'F', 118), +(116207, 'Tequila', 1978, 'F', 118), +(116208, 'Tressa', 1978, 'F', 118), +(116209, 'Chloe', 1978, 'F', 117), +(116210, 'Cicely', 1978, 'F', 117), +(116211, 'Inez', 1978, 'F', 117), +(116212, 'Malika', 1978, 'F', 117), +(116213, 'Nicki', 1978, 'F', 117), +(116214, 'Ashlie', 1978, 'F', 116), +(116215, 'Ayana', 1978, 'F', 116), +(116216, 'Carmela', 1978, 'F', 116), +(116217, 'Carri', 1978, 'F', 116), +(116218, 'Cheyenne', 1978, 'F', 116), +(116219, 'Jayne', 1978, 'F', 116), +(116220, 'Rayna', 1978, 'F', 116), +(116221, 'Shaun', 1978, 'F', 116), +(116222, 'Aida', 1978, 'F', 115), +(116223, 'Catalina', 1978, 'F', 115), +(116224, 'Catina', 1978, 'F', 115), +(116225, 'Coleen', 1978, 'F', 115), +(116226, 'Milagros', 1978, 'F', 115), +(116227, 'Phoebe', 1978, 'F', 115), +(116228, 'Tamisha', 1978, 'F', 115), +(116229, 'Valeria', 1978, 'F', 115), +(116230, 'Violet', 1978, 'F', 115), +(116231, 'Lila', 1978, 'F', 114), +(116232, 'Thea', 1978, 'F', 114), +(116233, 'Viviana', 1978, 'F', 114), +(116234, 'Adina', 1978, 'F', 113), +(116235, 'Jesica', 1978, 'F', 113), +(116236, 'Kendall', 1978, 'F', 113), +(116237, 'Robbie', 1978, 'F', 113), +(116238, 'Shawnte', 1978, 'F', 113), +(116239, 'Alena', 1978, 'F', 112), +(116240, 'Natisha', 1978, 'F', 112), +(116241, 'Polly', 1978, 'F', 112), +(116242, 'Rasheedah', 1978, 'F', 112), +(116243, 'Antionette', 1978, 'F', 111), +(116244, 'Carin', 1978, 'F', 111), +(116245, 'Freda', 1978, 'F', 111), +(116246, 'Gabriella', 1978, 'F', 111), +(116247, 'Lily', 1978, 'F', 111), +(116248, 'Shenika', 1978, 'F', 111), +(116249, 'Tamar', 1978, 'F', 111), +(116250, 'Tangela', 1978, 'F', 111), +(116251, 'Christiana', 1978, 'F', 110), +(116252, 'Cristi', 1978, 'F', 110), +(116253, 'Lilia', 1978, 'F', 110), +(116254, 'Shaneka', 1978, 'F', 110), +(116255, 'Shaunte', 1978, 'F', 110), +(116256, 'Steven', 1978, 'F', 110), +(116257, 'Corrina', 1978, 'F', 109), +(116258, 'Kenyetta', 1978, 'F', 109), +(116259, 'Letisha', 1978, 'F', 109), +(116260, 'Rasheeda', 1978, 'F', 109), +(116261, 'Shaunta', 1978, 'F', 109), +(116262, 'Shawnna', 1978, 'F', 109), +(116263, 'Sydney', 1978, 'F', 109), +(116264, 'Amalia', 1978, 'F', 108), +(116265, 'Hallie', 1978, 'F', 108), +(116266, 'Kristel', 1978, 'F', 108), +(116267, 'Nicholas', 1978, 'F', 108), +(116268, 'Penelope', 1978, 'F', 108), +(116269, 'Perla', 1978, 'F', 108), +(116270, 'Torrie', 1978, 'F', 108), +(116271, 'Isela', 1978, 'F', 107), +(116272, 'Laci', 1978, 'F', 107), +(116273, 'Loren', 1978, 'F', 107), +(116274, 'Princess', 1978, 'F', 107), +(116275, 'Shay', 1978, 'F', 107), +(116276, 'Stephaine', 1978, 'F', 107), +(116277, 'Talisha', 1978, 'F', 107), +(116278, 'Tatum', 1978, 'F', 107), +(116279, 'Tiffiny', 1978, 'F', 107), +(116280, 'Timothy', 1978, 'F', 107), +(116281, 'Britt', 1978, 'F', 106), +(116282, 'Ethel', 1978, 'F', 106), +(116283, 'Evette', 1978, 'F', 106), +(116284, 'Flora', 1978, 'F', 106), +(116285, 'Lakeesha', 1978, 'F', 106), +(116286, 'Shakira', 1978, 'F', 106), +(116287, 'Shona', 1978, 'F', 106), +(116288, 'Tamela', 1978, 'F', 106), +(116289, 'Arianne', 1978, 'F', 105), +(116290, 'Frankie', 1978, 'F', 105), +(116291, 'Kevin', 1978, 'F', 105), +(116292, 'Lashaunda', 1978, 'F', 105), +(116293, 'Latoria', 1978, 'F', 105), +(116294, 'Lela', 1978, 'F', 105), +(116295, 'Lillie', 1978, 'F', 105), +(116296, 'Lynsey', 1978, 'F', 105), +(116297, 'Mckenzie', 1978, 'F', 105), +(116298, 'Rikki', 1978, 'F', 105), +(116299, 'Tory', 1978, 'F', 105), +(116300, 'Dalia', 1978, 'F', 104), +(116301, 'Denice', 1978, 'F', 104), +(116302, 'Lesa', 1978, 'F', 104), +(116303, 'Myrna', 1978, 'F', 104), +(116304, 'Shaunda', 1978, 'F', 104), +(116305, 'Tameika', 1978, 'F', 104), +(116306, 'Trena', 1978, 'F', 104), +(116307, 'Brigette', 1978, 'F', 103), +(116308, 'Cherry', 1978, 'F', 103), +(116309, 'Hailey', 1978, 'F', 103), +(116310, 'Latrina', 1978, 'F', 103), +(116311, 'Rana', 1978, 'F', 103), +(116312, 'Reyna', 1978, 'F', 103), +(116313, 'Shalanda', 1978, 'F', 103), +(116314, 'Stormy', 1978, 'F', 103), +(116315, 'Tabetha', 1978, 'F', 103), +(116316, 'Bonita', 1978, 'F', 102), +(116317, 'Cassidy', 1978, 'F', 102), +(116318, 'Deandra', 1978, 'F', 102), +(116319, 'Jamey', 1978, 'F', 102), +(116320, 'Kourtney', 1978, 'F', 102), +(116321, 'Lina', 1978, 'F', 102), +(116322, 'Patience', 1978, 'F', 102), +(116323, 'Renita', 1978, 'F', 102), +(116324, 'Shandra', 1978, 'F', 102), +(116325, 'Sharron', 1978, 'F', 102), +(116326, 'Candida', 1978, 'F', 101), +(116327, 'Chantal', 1978, 'F', 101), +(116328, 'Estella', 1978, 'F', 101), +(116329, 'Joslyn', 1978, 'F', 101), +(116330, 'Lenora', 1978, 'F', 101), +(116331, 'Maegan', 1978, 'F', 101), +(116332, 'Marlo', 1978, 'F', 101), +(116333, 'Natashia', 1978, 'F', 101), +(116334, 'Rosanne', 1978, 'F', 101), +(116335, 'Shawana', 1978, 'F', 101), +(116336, 'Brandon', 1978, 'F', 100), +(116337, 'Chantelle', 1978, 'F', 100), +(116338, 'Jolie', 1978, 'F', 100), +(116339, 'Kaci', 1978, 'F', 100), +(116340, 'Marguerite', 1978, 'F', 100), +(116341, 'Meggan', 1978, 'F', 100), +(116342, 'Paola', 1978, 'F', 100), +(116343, 'Patsy', 1978, 'F', 100), +(116344, 'Michael', 1978, 'M', 67153), +(116345, 'Jason', 1978, 'M', 51625), +(116346, 'Christopher', 1978, 'M', 47243), +(116347, 'David', 1978, 'M', 40698), +(116348, 'James', 1978, 'M', 39908), +(116349, 'Matthew', 1978, 'M', 34310), +(116350, 'John', 1978, 'M', 34026), +(116351, 'Robert', 1978, 'M', 33381), +(116352, 'Brian', 1978, 'M', 29451), +(116353, 'Joseph', 1978, 'M', 26679), +(116354, 'Daniel', 1978, 'M', 26445), +(116355, 'Joshua', 1978, 'M', 25209), +(116356, 'William', 1978, 'M', 24186), +(116357, 'Ryan', 1978, 'M', 21339), +(116358, 'Kevin', 1978, 'M', 20111), +(116359, 'Eric', 1978, 'M', 19776), +(116360, 'Timothy', 1978, 'M', 19609), +(116361, 'Jeremy', 1978, 'M', 19513), +(116362, 'Jeffrey', 1978, 'M', 16999), +(116363, 'Anthony', 1978, 'M', 16810), +(116364, 'Andrew', 1978, 'M', 16743), +(116365, 'Richard', 1978, 'M', 16730), +(116366, 'Thomas', 1978, 'M', 16490), +(116367, 'Steven', 1978, 'M', 16403), +(116368, 'Nicholas', 1978, 'M', 16357), +(116369, 'Mark', 1978, 'M', 14867), +(116370, 'Charles', 1978, 'M', 14852), +(116371, 'Justin', 1978, 'M', 14190), +(116372, 'Adam', 1978, 'M', 13921), +(116373, 'Scott', 1978, 'M', 13538), +(116374, 'Jonathan', 1978, 'M', 12522), +(116375, 'Aaron', 1978, 'M', 12316), +(116376, 'Paul', 1978, 'M', 11734), +(116377, 'Benjamin', 1978, 'M', 11411), +(116378, 'Chad', 1978, 'M', 10119), +(116379, 'Nathan', 1978, 'M', 9892), +(116380, 'Stephen', 1978, 'M', 9862), +(116381, 'Gregory', 1978, 'M', 9348), +(116382, 'Shawn', 1978, 'M', 9286), +(116383, 'Brandon', 1978, 'M', 9253), +(116384, 'Kenneth', 1978, 'M', 9020), +(116385, 'Patrick', 1978, 'M', 8848), +(116386, 'Bryan', 1978, 'M', 7293), +(116387, 'Jose', 1978, 'M', 7146), +(116388, 'Sean', 1978, 'M', 7068), +(116389, 'Travis', 1978, 'M', 6953), +(116390, 'Edward', 1978, 'M', 6482), +(116391, 'Donald', 1978, 'M', 6426), +(116392, 'Keith', 1978, 'M', 6173), +(116393, 'Jacob', 1978, 'M', 6160), +(116394, 'Shaun', 1978, 'M', 6105), +(116395, 'Jesse', 1978, 'M', 6102), +(116396, 'Bradley', 1978, 'M', 6100), +(116397, 'Peter', 1978, 'M', 5885), +(116398, 'Ronald', 1978, 'M', 5755), +(116399, 'Todd', 1978, 'M', 5504), +(116400, 'Samuel', 1978, 'M', 5394), +(116401, 'George', 1978, 'M', 5293), +(116402, 'Douglas', 1978, 'M', 5154), +(116403, 'Gary', 1978, 'M', 5117), +(116404, 'Corey', 1978, 'M', 4939), +(116405, 'Juan', 1978, 'M', 4831), +(116406, 'Kyle', 1978, 'M', 4517), +(116407, 'Larry', 1978, 'M', 4513), +(116408, 'Shane', 1978, 'M', 4481), +(116409, 'Craig', 1978, 'M', 4476), +(116410, 'Phillip', 1978, 'M', 4363), +(116411, 'Dustin', 1978, 'M', 4176), +(116412, 'Raymond', 1978, 'M', 4136), +(116413, 'Marcus', 1978, 'M', 4003), +(116414, 'Dennis', 1978, 'M', 3861), +(116415, 'Jared', 1978, 'M', 3848), +(116416, 'Cory', 1978, 'M', 3845), +(116417, 'Joel', 1978, 'M', 3811), +(116418, 'Derek', 1978, 'M', 3802), +(116419, 'Derrick', 1978, 'M', 3787), +(116420, 'Frank', 1978, 'M', 3773), +(116421, 'Carlos', 1978, 'M', 3724), +(116422, 'Antonio', 1978, 'M', 3679), +(116423, 'Jeffery', 1978, 'M', 3541), +(116424, 'Jeremiah', 1978, 'M', 3441), +(116425, 'Jerry', 1978, 'M', 3428), +(116426, 'Wesley', 1978, 'M', 3309), +(116427, 'Philip', 1978, 'M', 3301), +(116428, 'Erik', 1978, 'M', 3262), +(116429, 'Randy', 1978, 'M', 3217), +(116430, 'Brent', 1978, 'M', 3181), +(116431, 'Troy', 1978, 'M', 3156), +(116432, 'Zachary', 1978, 'M', 3132), +(116433, 'Gabriel', 1978, 'M', 3131), +(116434, 'Terry', 1978, 'M', 3086), +(116435, 'Casey', 1978, 'M', 3006), +(116436, 'Russell', 1978, 'M', 2982), +(116437, 'Nathaniel', 1978, 'M', 2927), +(116438, 'Jamie', 1978, 'M', 2865), +(116439, 'Curtis', 1978, 'M', 2825), +(116440, 'Tony', 1978, 'M', 2771), +(116441, 'Alexander', 1978, 'M', 2747), +(116442, 'Billy', 1978, 'M', 2696), +(116443, 'Carl', 1978, 'M', 2608), +(116444, 'Johnny', 1978, 'M', 2560), +(116445, 'Rodney', 1978, 'M', 2556), +(116446, 'Victor', 1978, 'M', 2550), +(116447, 'Kristopher', 1978, 'M', 2523), +(116448, 'Seth', 1978, 'M', 2503), +(116449, 'Vincent', 1978, 'M', 2503), +(116450, 'Marc', 1978, 'M', 2477), +(116451, 'Jon', 1978, 'M', 2411), +(116452, 'Bobby', 1978, 'M', 2399), +(116453, 'Luis', 1978, 'M', 2398), +(116454, 'Adrian', 1978, 'M', 2309), +(116455, 'Brett', 1978, 'M', 2305), +(116456, 'Lawrence', 1978, 'M', 2246), +(116457, 'Mario', 1978, 'M', 2227), +(116458, 'Christian', 1978, 'M', 2211), +(116459, 'Danny', 1978, 'M', 2204), +(116460, 'Jimmy', 1978, 'M', 2169), +(116461, 'Ian', 1978, 'M', 2167), +(116462, 'Jay', 1978, 'M', 2149), +(116463, 'Roger', 1978, 'M', 2142), +(116464, 'Willie', 1978, 'M', 2133), +(116465, 'Alan', 1978, 'M', 2118), +(116466, 'Brad', 1978, 'M', 2109), +(116467, 'Jesus', 1978, 'M', 2072), +(116468, 'Micheal', 1978, 'M', 2059), +(116469, 'Martin', 1978, 'M', 2051), +(116470, 'Henry', 1978, 'M', 2042), +(116471, 'Joe', 1978, 'M', 2034), +(116472, 'Andre', 1978, 'M', 2033), +(116473, 'Ricky', 1978, 'M', 2017), +(116474, 'Walter', 1978, 'M', 1989), +(116475, 'Damon', 1978, 'M', 1983), +(116476, 'Lee', 1978, 'M', 1980), +(116477, 'Randall', 1978, 'M', 1974), +(116478, 'Lance', 1978, 'M', 1972), +(116479, 'Lucas', 1978, 'M', 1947), +(116480, 'Gerald', 1978, 'M', 1891), +(116481, 'Wayne', 1978, 'M', 1887), +(116482, 'Luke', 1978, 'M', 1885), +(116483, 'Ricardo', 1978, 'M', 1882), +(116484, 'Arthur', 1978, 'M', 1874), +(116485, 'Shannon', 1978, 'M', 1849), +(116486, 'Manuel', 1978, 'M', 1845), +(116487, 'Allen', 1978, 'M', 1829), +(116488, 'Miguel', 1978, 'M', 1825), +(116489, 'Albert', 1978, 'M', 1805), +(116490, 'Roy', 1978, 'M', 1800), +(116491, 'Clinton', 1978, 'M', 1765), +(116492, 'Tyler', 1978, 'M', 1759), +(116493, 'Louis', 1978, 'M', 1755), +(116494, 'Bruce', 1978, 'M', 1701), +(116495, 'Cody', 1978, 'M', 1684), +(116496, 'Jorge', 1978, 'M', 1632), +(116497, 'Francisco', 1978, 'M', 1607), +(116498, 'Roberto', 1978, 'M', 1605), +(116499, 'Jack', 1978, 'M', 1579), +(116500, 'Maurice', 1978, 'M', 1571), +(116501, 'Frederick', 1978, 'M', 1532), +(116502, 'Neil', 1978, 'M', 1530), +(116503, 'Reginald', 1978, 'M', 1515), +(116504, 'Damien', 1978, 'M', 1507), +(116505, 'Barry', 1978, 'M', 1500), +(116506, 'Ronnie', 1978, 'M', 1475), +(116507, 'Alex', 1978, 'M', 1472), +(116508, 'Darrell', 1978, 'M', 1466), +(116509, 'Darren', 1978, 'M', 1456), +(116510, 'Isaac', 1978, 'M', 1452), +(116511, 'Tyrone', 1978, 'M', 1434), +(116512, 'Trevor', 1978, 'M', 1407), +(116513, 'Eddie', 1978, 'M', 1382), +(116514, 'Ernest', 1978, 'M', 1380), +(116515, 'Ruben', 1978, 'M', 1379), +(116516, 'Jerome', 1978, 'M', 1371), +(116517, 'Chris', 1978, 'M', 1337), +(116518, 'Eugene', 1978, 'M', 1329), +(116519, 'Dale', 1978, 'M', 1324), +(116520, 'Tommy', 1978, 'M', 1320), +(116521, 'Leonard', 1978, 'M', 1314), +(116522, 'Oscar', 1978, 'M', 1311), +(116523, 'Kelly', 1978, 'M', 1308), +(116524, 'Omar', 1978, 'M', 1292), +(116525, 'Mathew', 1978, 'M', 1284), +(116526, 'Terrance', 1978, 'M', 1282), +(116527, 'Jaime', 1978, 'M', 1277), +(116528, 'Mitchell', 1978, 'M', 1273), +(116529, 'Geoffrey', 1978, 'M', 1272), +(116530, 'Calvin', 1978, 'M', 1261), +(116531, 'Jermaine', 1978, 'M', 1254), +(116532, 'Angel', 1978, 'M', 1247), +(116533, 'Harold', 1978, 'M', 1243), +(116534, 'Hector', 1978, 'M', 1242), +(116535, 'Dwayne', 1978, 'M', 1238), +(116536, 'Steve', 1978, 'M', 1238), +(116537, 'Edwin', 1978, 'M', 1231), +(116538, 'Theodore', 1978, 'M', 1214), +(116539, 'Marvin', 1978, 'M', 1200), +(116540, 'Evan', 1978, 'M', 1161), +(116541, 'Melvin', 1978, 'M', 1161), +(116542, 'Javier', 1978, 'M', 1158), +(116543, 'Glenn', 1978, 'M', 1121), +(116544, 'Terrence', 1978, 'M', 1116), +(116545, 'Alejandro', 1978, 'M', 1106), +(116546, 'Clayton', 1978, 'M', 1084), +(116547, 'Fernando', 1978, 'M', 1080), +(116548, 'Cameron', 1978, 'M', 1077), +(116549, 'Ralph', 1978, 'M', 1076), +(116550, 'Joey', 1978, 'M', 1072), +(116551, 'Kurt', 1978, 'M', 1065), +(116552, 'Raul', 1978, 'M', 1037), +(116553, 'Clint', 1978, 'M', 1028), +(116554, 'Stanley', 1978, 'M', 1023), +(116555, 'Heath', 1978, 'M', 1022), +(116556, 'Pedro', 1978, 'M', 1018), +(116557, 'Ramon', 1978, 'M', 1010), +(116558, 'Micah', 1978, 'M', 1007), +(116559, 'Clifford', 1978, 'M', 1002), +(116560, 'Eduardo', 1978, 'M', 998), +(116561, 'Rafael', 1978, 'M', 996), +(116562, 'Jordan', 1978, 'M', 979), +(116563, 'Andy', 1978, 'M', 968), +(116564, 'Dominic', 1978, 'M', 965), +(116565, 'Howard', 1978, 'M', 956), +(116566, 'Colin', 1978, 'M', 951), +(116567, 'Johnathan', 1978, 'M', 945), +(116568, 'Francis', 1978, 'M', 942), +(116569, 'Clarence', 1978, 'M', 934), +(116570, 'Earl', 1978, 'M', 928), +(116571, 'Leon', 1978, 'M', 924), +(116572, 'Ross', 1978, 'M', 919), +(116573, 'Jarrod', 1978, 'M', 913), +(116574, 'Harry', 1978, 'M', 912), +(116575, 'Karl', 1978, 'M', 901), +(116576, 'Brendan', 1978, 'M', 898), +(116577, 'Alfred', 1978, 'M', 895), +(116578, 'Jessie', 1978, 'M', 895), +(116579, 'Armando', 1978, 'M', 892), +(116580, 'Austin', 1978, 'M', 890), +(116581, 'Sergio', 1978, 'M', 888), +(116582, 'Toby', 1978, 'M', 884), +(116583, 'Jonathon', 1978, 'M', 876), +(116584, 'Clifton', 1978, 'M', 869), +(116585, 'Devin', 1978, 'M', 868), +(116586, 'Marco', 1978, 'M', 850), +(116587, 'Damian', 1978, 'M', 847), +(116588, 'Jody', 1978, 'M', 843), +(116589, 'Daryl', 1978, 'M', 838), +(116590, 'Duane', 1978, 'M', 837), +(116591, 'Franklin', 1978, 'M', 836), +(116592, 'Grant', 1978, 'M', 820), +(116593, 'Tyson', 1978, 'M', 817), +(116594, 'Garrett', 1978, 'M', 808), +(116595, 'Alvin', 1978, 'M', 800), +(116596, 'Nicolas', 1978, 'M', 799), +(116597, 'Byron', 1978, 'M', 796), +(116598, 'Gilbert', 1978, 'M', 796), +(116599, 'Cedric', 1978, 'M', 793), +(116600, 'Ray', 1978, 'M', 792), +(116601, 'Warren', 1978, 'M', 789), +(116602, 'Erick', 1978, 'M', 785), +(116603, 'Alberto', 1978, 'M', 780), +(116604, 'Courtney', 1978, 'M', 778), +(116605, 'Wade', 1978, 'M', 773), +(116606, 'Dean', 1978, 'M', 768), +(116607, 'Kelvin', 1978, 'M', 751), +(116608, 'Julio', 1978, 'M', 743), +(116609, 'Norman', 1978, 'M', 739), +(116610, 'Spencer', 1978, 'M', 738), +(116611, 'Bernard', 1978, 'M', 737), +(116612, 'Ivan', 1978, 'M', 736), +(116613, 'Cesar', 1978, 'M', 730), +(116614, 'Darryl', 1978, 'M', 726), +(116615, 'Marshall', 1978, 'M', 718), +(116616, 'Kirk', 1978, 'M', 715), +(116617, 'Leroy', 1978, 'M', 707), +(116618, 'Caleb', 1978, 'M', 705), +(116619, 'Alfredo', 1978, 'M', 701), +(116620, 'Lonnie', 1978, 'M', 699), +(116621, 'Greg', 1978, 'M', 697), +(116622, 'Fred', 1978, 'M', 695), +(116623, 'Abraham', 1978, 'M', 689), +(116624, 'Roderick', 1978, 'M', 689), +(116625, 'Noah', 1978, 'M', 688), +(116626, 'Edgar', 1978, 'M', 687), +(116627, 'Arturo', 1978, 'M', 684), +(116628, 'Nelson', 1978, 'M', 680), +(116629, 'Rene', 1978, 'M', 679), +(116630, 'Fredrick', 1978, 'M', 670), +(116631, 'Blake', 1978, 'M', 669), +(116632, 'Demetrius', 1978, 'M', 659), +(116633, 'Charlie', 1978, 'M', 658), +(116634, 'Glen', 1978, 'M', 654), +(116635, 'Antoine', 1978, 'M', 649), +(116636, 'Jeff', 1978, 'M', 645), +(116637, 'Julian', 1978, 'M', 641), +(116638, 'Ethan', 1978, 'M', 637), +(116639, 'Orlando', 1978, 'M', 635), +(116640, 'Enrique', 1978, 'M', 630), +(116641, 'Quincy', 1978, 'M', 628), +(116642, 'Lewis', 1978, 'M', 625), +(116643, 'Vernon', 1978, 'M', 620), +(116644, 'Bradford', 1978, 'M', 601), +(116645, 'Jayson', 1978, 'M', 600), +(116646, 'Preston', 1978, 'M', 598), +(116647, 'Donnie', 1978, 'M', 593), +(116648, 'Israel', 1978, 'M', 590), +(116649, 'Don', 1978, 'M', 587), +(116650, 'Neal', 1978, 'M', 584), +(116651, 'Andres', 1978, 'M', 582), +(116652, 'Gerardo', 1978, 'M', 576), +(116653, 'Nickolas', 1978, 'M', 576), +(116654, 'Ben', 1978, 'M', 571), +(116655, 'Salvador', 1978, 'M', 571), +(116656, 'Herbert', 1978, 'M', 567), +(116657, 'Darnell', 1978, 'M', 566), +(116658, 'Ernesto', 1978, 'M', 564), +(116659, 'Bryant', 1978, 'M', 563), +(116660, 'Jamal', 1978, 'M', 553), +(116661, 'Rocky', 1978, 'M', 553), +(116662, 'Rudy', 1978, 'M', 553), +(116663, 'Drew', 1978, 'M', 549), +(116664, 'Elijah', 1978, 'M', 547), +(116665, 'Trent', 1978, 'M', 547), +(116666, 'Stuart', 1978, 'M', 543), +(116667, 'Lamont', 1978, 'M', 542), +(116668, 'Dana', 1978, 'M', 539), +(116669, 'Levi', 1978, 'M', 536), +(116670, 'Darin', 1978, 'M', 535), +(116671, 'Angelo', 1978, 'M', 534), +(116672, 'Ashley', 1978, 'M', 533), +(116673, 'Marlon', 1978, 'M', 532), +(116674, 'Felix', 1978, 'M', 528), +(116675, 'Desmond', 1978, 'M', 527), +(116676, 'Lorenzo', 1978, 'M', 527), +(116677, 'Marcos', 1978, 'M', 526), +(116678, 'Tracy', 1978, 'M', 526), +(116679, 'Leslie', 1978, 'M', 524), +(116680, 'Bryce', 1978, 'M', 523), +(116681, 'Chadwick', 1978, 'M', 522), +(116682, 'Brock', 1978, 'M', 518), +(116683, 'Gordon', 1978, 'M', 516), +(116684, 'Lloyd', 1978, 'M', 516), +(116685, 'Allan', 1978, 'M', 507), +(116686, 'Terrell', 1978, 'M', 503), +(116687, 'Kent', 1978, 'M', 500), +(116688, 'Rickey', 1978, 'M', 500), +(116689, 'Kendrick', 1978, 'M', 494), +(116690, 'Dwight', 1978, 'M', 489), +(116691, 'Roland', 1978, 'M', 485), +(116692, 'Jimmie', 1978, 'M', 484), +(116693, 'Dylan', 1978, 'M', 480), +(116694, 'Lamar', 1978, 'M', 480), +(116695, 'Leo', 1978, 'M', 479), +(116696, 'Floyd', 1978, 'M', 478), +(116697, 'Beau', 1978, 'M', 477), +(116698, 'Freddie', 1978, 'M', 473), +(116699, 'Johnnie', 1978, 'M', 467), +(116700, 'Quentin', 1978, 'M', 467), +(116701, 'Dallas', 1978, 'M', 463), +(116702, 'Kerry', 1978, 'M', 463), +(116703, 'Dewayne', 1978, 'M', 459), +(116704, 'Gene', 1978, 'M', 453), +(116705, 'Jake', 1978, 'M', 449), +(116706, 'Julius', 1978, 'M', 447), +(116707, 'Brady', 1978, 'M', 444), +(116708, 'Eli', 1978, 'M', 442), +(116709, 'Jackie', 1978, 'M', 441), +(116710, 'Mike', 1978, 'M', 440), +(116711, 'Carlton', 1978, 'M', 436), +(116712, 'Guy', 1978, 'M', 435), +(116713, 'Rodolfo', 1978, 'M', 431), +(116714, 'Josh', 1978, 'M', 429), +(116715, 'Pablo', 1978, 'M', 429), +(116716, 'Kenny', 1978, 'M', 427), +(116717, 'Cornelius', 1978, 'M', 426), +(116718, 'Oliver', 1978, 'M', 420), +(116719, 'Rory', 1978, 'M', 417), +(116720, 'Devon', 1978, 'M', 416), +(116721, 'Milton', 1978, 'M', 416), +(116722, 'Perry', 1978, 'M', 416), +(116723, 'Sam', 1978, 'M', 416), +(116724, 'Alfonso', 1978, 'M', 415), +(116725, 'Noel', 1978, 'M', 414), +(116726, 'Damion', 1978, 'M', 413), +(116727, 'Derick', 1978, 'M', 413), +(116728, 'Max', 1978, 'M', 412), +(116729, 'Terence', 1978, 'M', 406), +(116730, 'Rick', 1978, 'M', 404), +(116731, 'Frankie', 1978, 'M', 403), +(116732, 'Nick', 1978, 'M', 400), +(116733, 'Rolando', 1978, 'M', 396), +(116734, 'Morgan', 1978, 'M', 390), +(116735, 'Lester', 1978, 'M', 387), +(116736, 'Scotty', 1978, 'M', 386), +(116737, 'Robin', 1978, 'M', 385), +(116738, 'Herman', 1978, 'M', 383), +(116739, 'Bret', 1978, 'M', 381), +(116740, 'Kris', 1978, 'M', 379), +(116741, 'Chester', 1978, 'M', 378), +(116742, 'Felipe', 1978, 'M', 372), +(116743, 'Abel', 1978, 'M', 371), +(116744, 'Clay', 1978, 'M', 369), +(116745, 'Dante', 1978, 'M', 368), +(116746, 'Gavin', 1978, 'M', 366), +(116747, 'Dion', 1978, 'M', 364), +(116748, 'Elvis', 1978, 'M', 364), +(116749, 'Gregg', 1978, 'M', 364), +(116750, 'Loren', 1978, 'M', 362), +(116751, 'Kareem', 1978, 'M', 361), +(116752, 'Ted', 1978, 'M', 360), +(116753, 'Jim', 1978, 'M', 359), +(116754, 'Trenton', 1978, 'M', 358), +(116755, 'Ty', 1978, 'M', 357), +(116756, 'Elias', 1978, 'M', 355), +(116757, 'Gilberto', 1978, 'M', 355), +(116758, 'Darrick', 1978, 'M', 354), +(116759, 'Clyde', 1978, 'M', 353), +(116760, 'Rashad', 1978, 'M', 353), +(116761, 'Cecil', 1978, 'M', 352), +(116762, 'Robbie', 1978, 'M', 352), +(116763, 'Darius', 1978, 'M', 351), +(116764, 'Simon', 1978, 'M', 351), +(116765, 'Kristofer', 1978, 'M', 349), +(116766, 'Bryon', 1978, 'M', 348), +(116767, 'Darrin', 1978, 'M', 347), +(116768, 'Jess', 1978, 'M', 347), +(116769, 'Randolph', 1978, 'M', 345), +(116770, 'Salvatore', 1978, 'M', 344), +(116771, 'Stacy', 1978, 'M', 344), +(116772, 'Taylor', 1978, 'M', 344), +(116773, 'Thaddeus', 1978, 'M', 343), +(116774, 'Dan', 1978, 'M', 342), +(116775, 'Rusty', 1978, 'M', 341), +(116776, 'Gerard', 1978, 'M', 338), +(116777, 'Ismael', 1978, 'M', 338), +(116778, 'Marty', 1978, 'M', 338), +(116779, 'Jarrett', 1978, 'M', 335), +(116780, 'Kendall', 1978, 'M', 335), +(116781, 'Xavier', 1978, 'M', 333), +(116782, 'Fabian', 1978, 'M', 332), +(116783, 'Rogelio', 1978, 'M', 326), +(116784, 'Dominick', 1978, 'M', 322), +(116785, 'Garry', 1978, 'M', 322), +(116786, 'Harvey', 1978, 'M', 321), +(116787, 'Guillermo', 1978, 'M', 320), +(116788, 'Wendell', 1978, 'M', 319), +(116789, 'Benny', 1978, 'M', 318), +(116790, 'Forrest', 1978, 'M', 318), +(116791, 'Antwan', 1978, 'M', 316), +(116792, 'Jerrod', 1978, 'M', 316), +(116793, 'Sheldon', 1978, 'M', 316), +(116794, 'Moses', 1978, 'M', 314), +(116795, 'Sherman', 1978, 'M', 312), +(116796, 'Emmanuel', 1978, 'M', 311), +(116797, 'Logan', 1978, 'M', 308), +(116798, 'Ira', 1978, 'M', 307), +(116799, 'Ramiro', 1978, 'M', 306), +(116800, 'Kristoffer', 1978, 'M', 305), +(116801, 'Aron', 1978, 'M', 304), +(116802, 'Myron', 1978, 'M', 304), +(116803, 'Gustavo', 1978, 'M', 303), +(116804, 'Kory', 1978, 'M', 303), +(116805, 'Donny', 1978, 'M', 302), +(116806, 'Jamar', 1978, 'M', 302), +(116807, 'Zachariah', 1978, 'M', 302), +(116808, 'Everett', 1978, 'M', 301), +(116809, 'Graham', 1978, 'M', 299), +(116810, 'Otis', 1978, 'M', 297), +(116811, 'Sammy', 1978, 'M', 297), +(116812, 'Sidney', 1978, 'M', 297), +(116813, 'Chance', 1978, 'M', 296), +(116814, 'Malcolm', 1978, 'M', 296), +(116815, 'Reuben', 1978, 'M', 296), +(116816, 'Guadalupe', 1978, 'M', 294), +(116817, 'Jamel', 1978, 'M', 294), +(116818, 'Donovan', 1978, 'M', 293), +(116819, 'Landon', 1978, 'M', 293), +(116820, 'Stephan', 1978, 'M', 292), +(116821, 'Saul', 1978, 'M', 291), +(116822, 'Colby', 1978, 'M', 290), +(116823, 'Timmy', 1978, 'M', 285), +(116824, 'Isaiah', 1978, 'M', 283), +(116825, 'Reggie', 1978, 'M', 283), +(116826, 'Alonzo', 1978, 'M', 282), +(116827, 'Tobias', 1978, 'M', 282), +(116828, 'Jed', 1978, 'M', 281), +(116829, 'Dexter', 1978, 'M', 279), +(116830, 'Emanuel', 1978, 'M', 274), +(116831, 'Esteban', 1978, 'M', 274), +(116832, 'Edmund', 1978, 'M', 271), +(116833, 'Kurtis', 1978, 'M', 271), +(116834, 'Owen', 1978, 'M', 271), +(116835, 'Mason', 1978, 'M', 270), +(116836, 'Ron', 1978, 'M', 270), +(116837, 'Stewart', 1978, 'M', 270), +(116838, 'Tomas', 1978, 'M', 269), +(116839, 'Bill', 1978, 'M', 268), +(116840, 'Reynaldo', 1978, 'M', 268), +(116841, 'Nathanael', 1978, 'M', 263), +(116842, 'Claude', 1978, 'M', 262), +(116843, 'Jarvis', 1978, 'M', 262), +(116844, 'Sonny', 1978, 'M', 261), +(116845, 'Torrey', 1978, 'M', 260), +(116846, 'Amos', 1978, 'M', 259), +(116847, 'Dane', 1978, 'M', 259), +(116848, 'Erin', 1978, 'M', 259), +(116849, 'Roman', 1978, 'M', 259), +(116850, 'Nolan', 1978, 'M', 258), +(116851, 'Waylon', 1978, 'M', 258), +(116852, 'Jeromy', 1978, 'M', 257), +(116853, 'Joesph', 1978, 'M', 256), +(116854, 'Johnathon', 1978, 'M', 255), +(116855, 'Alexis', 1978, 'M', 254), +(116856, 'Ali', 1978, 'M', 254), +(116857, 'Levar', 1978, 'M', 254), +(116858, 'Marquis', 1978, 'M', 254), +(116859, 'Rex', 1978, 'M', 254), +(116860, 'Deon', 1978, 'M', 252), +(116861, 'Efrain', 1978, 'M', 252), +(116862, 'Arnold', 1978, 'M', 250), +(116863, 'Deandre', 1978, 'M', 250), +(116864, 'Lionel', 1978, 'M', 249), +(116865, 'Bennie', 1978, 'M', 246), +(116866, 'Branden', 1978, 'M', 246), +(116867, 'Collin', 1978, 'M', 246), +(116868, 'Randal', 1978, 'M', 246), +(116869, 'Tim', 1978, 'M', 245), +(116870, 'Leonardo', 1978, 'M', 244), +(116871, 'Teddy', 1978, 'M', 244), +(116872, 'Tom', 1978, 'M', 244), +(116873, 'Mickey', 1978, 'M', 243), +(116874, 'Erich', 1978, 'M', 242), +(116875, 'Kristian', 1978, 'M', 242), +(116876, 'Hugh', 1978, 'M', 241), +(116877, 'Donte', 1978, 'M', 240), +(116878, 'Jamey', 1978, 'M', 240), +(116879, 'Rodrick', 1978, 'M', 240), +(116880, 'Blaine', 1978, 'M', 238), +(116881, 'Harley', 1978, 'M', 237), +(116882, 'Alton', 1978, 'M', 235), +(116883, 'Matt', 1978, 'M', 235), +(116884, 'Lyle', 1978, 'M', 234), +(116885, 'Jarod', 1978, 'M', 233), +(116886, 'Will', 1978, 'M', 233), +(116887, 'Elliott', 1978, 'M', 232), +(116888, 'Jerod', 1978, 'M', 232), +(116889, 'Miles', 1978, 'M', 232), +(116890, 'Cary', 1978, 'M', 231), +(116891, 'Leland', 1978, 'M', 231), +(116892, 'Morris', 1978, 'M', 229), +(116893, 'Brant', 1978, 'M', 228), +(116894, 'Kasey', 1978, 'M', 228), +(116895, 'Virgil', 1978, 'M', 228), +(116896, 'Scottie', 1978, 'M', 227), +(116897, 'Avery', 1978, 'M', 226), +(116898, 'Curt', 1978, 'M', 226), +(116899, 'Dusty', 1978, 'M', 226), +(116900, 'Sterling', 1978, 'M', 226), +(116901, 'Ariel', 1978, 'M', 225), +(116902, 'Carey', 1978, 'M', 224), +(116903, 'Rico', 1978, 'M', 224), +(116904, 'Wilson', 1978, 'M', 224), +(116905, 'Sylvester', 1978, 'M', 223), +(116906, 'Demond', 1978, 'M', 222), +(116907, 'Earnest', 1978, 'M', 220), +(116908, 'Quinton', 1978, 'M', 220), +(116909, 'Hugo', 1978, 'M', 219), +(116910, 'Luther', 1978, 'M', 219), +(116911, 'Stefan', 1978, 'M', 219), +(116912, 'Elliot', 1978, 'M', 217), +(116913, 'Joaquin', 1978, 'M', 217), +(116914, 'Clark', 1978, 'M', 216), +(116915, 'Solomon', 1978, 'M', 216), +(116916, 'Santiago', 1978, 'M', 215), +(116917, 'Wallace', 1978, 'M', 214), +(116918, 'Willis', 1978, 'M', 213), +(116919, 'Jackson', 1978, 'M', 212), +(116920, 'Jeramy', 1978, 'M', 212), +(116921, 'Blair', 1978, 'M', 211), +(116922, 'Moises', 1978, 'M', 211), +(116923, 'Robby', 1978, 'M', 211), +(116924, 'Tory', 1978, 'M', 211), +(116925, 'Pete', 1978, 'M', 210), +(116926, 'Vicente', 1978, 'M', 210), +(116927, 'Aric', 1978, 'M', 209), +(116928, 'Ignacio', 1978, 'M', 209), +(116929, 'Emilio', 1978, 'M', 206), +(116930, 'Marion', 1978, 'M', 206), +(116931, 'Donnell', 1978, 'M', 205), +(116932, 'Darrel', 1978, 'M', 204), +(116933, 'Jennifer', 1978, 'M', 203), +(116934, 'Stacey', 1978, 'M', 203), +(116935, 'Ahmad', 1978, 'M', 201), +(116936, 'Jarred', 1978, 'M', 201), +(116937, 'Cedrick', 1978, 'M', 200), +(116938, 'Jeremie', 1978, 'M', 198), +(116939, 'Humberto', 1978, 'M', 197), +(116940, 'Edmond', 1978, 'M', 195), +(116941, 'Freddy', 1978, 'M', 195), +(116942, 'Noe', 1978, 'M', 195), +(116943, 'Jamaal', 1978, 'M', 194), +(116944, 'Jedediah', 1978, 'M', 192), +(116945, 'Reid', 1978, 'M', 192), +(116946, 'Reed', 1978, 'M', 191), +(116947, 'Josue', 1978, 'M', 190), +(116948, 'Wyatt', 1978, 'M', 190), +(116949, 'Archie', 1978, 'M', 189), +(116950, 'Anton', 1978, 'M', 188), +(116951, 'Carlo', 1978, 'M', 188), +(116952, 'Jovan', 1978, 'M', 188), +(116953, 'Jeramie', 1978, 'M', 187), +(116954, 'Rodrigo', 1978, 'M', 187), +(116955, 'Delvin', 1978, 'M', 186), +(116956, 'Conrad', 1978, 'M', 184), +(116957, 'Mack', 1978, 'M', 184), +(116958, 'Bart', 1978, 'M', 183), +(116959, 'Scot', 1978, 'M', 183), +(116960, 'Hans', 1978, 'M', 182), +(116961, 'Jean', 1978, 'M', 182), +(116962, 'Jeffry', 1978, 'M', 182), +(116963, 'Jerald', 1978, 'M', 182), +(116964, 'Rudolph', 1978, 'M', 182), +(116965, 'Shad', 1978, 'M', 180), +(116966, 'Dorian', 1978, 'M', 179), +(116967, 'Nathanial', 1978, 'M', 179), +(116968, 'Deshawn', 1978, 'M', 178), +(116969, 'Aubrey', 1978, 'M', 177), +(116970, 'Shayne', 1978, 'M', 177), +(116971, 'Arron', 1978, 'M', 176), +(116972, 'Jonas', 1978, 'M', 175), +(116973, 'Monte', 1978, 'M', 175), +(116974, 'Buddy', 1978, 'M', 174), +(116975, 'Lavar', 1978, 'M', 174), +(116976, 'Rhett', 1978, 'M', 174), +(116977, 'Rigoberto', 1978, 'M', 174), +(116978, 'Korey', 1978, 'M', 173), +(116979, 'Tommie', 1978, 'M', 173), +(116980, 'Jamison', 1978, 'M', 172), +(116981, 'Santos', 1978, 'M', 172), +(116982, 'Vance', 1978, 'M', 172), +(116983, 'Wilfredo', 1978, 'M', 172), +(116984, 'Zane', 1978, 'M', 172), +(116985, 'Marques', 1978, 'M', 171), +(116986, 'Raphael', 1978, 'M', 171), +(116987, 'Royce', 1978, 'M', 171), +(116988, 'Winston', 1978, 'M', 171), +(116989, 'Tanner', 1978, 'M', 169), +(116990, 'Daren', 1978, 'M', 168), +(116991, 'Jonah', 1978, 'M', 168), +(116992, 'Malik', 1978, 'M', 167), +(116993, 'Riley', 1978, 'M', 167), +(116994, 'Shelby', 1978, 'M', 167), +(116995, 'Elmer', 1978, 'M', 166), +(116996, 'Pierre', 1978, 'M', 166), +(116997, 'Adan', 1978, 'M', 165), +(116998, 'Dave', 1978, 'M', 165), +(116999, 'Jefferson', 1978, 'M', 164), +(117000, 'Quinn', 1978, 'M', 164), +(117001, 'Roosevelt', 1978, 'M', 164), +(117002, 'Markus', 1978, 'M', 163), +(117003, 'Tavares', 1978, 'M', 163), +(117004, 'Grady', 1978, 'M', 161), +(117005, 'Weston', 1978, 'M', 160), +(117006, 'Bradly', 1978, 'M', 159), +(117007, 'Demarcus', 1978, 'M', 159), +(117008, 'Chauncey', 1978, 'M', 158), +(117009, 'Ervin', 1978, 'M', 158), +(117010, 'Josiah', 1978, 'M', 158), +(117011, 'Kenyatta', 1978, 'M', 158), +(117012, 'Giovanni', 1978, 'M', 157), +(117013, 'Jamil', 1978, 'M', 157), +(117014, 'Benito', 1978, 'M', 155), +(117015, 'Davin', 1978, 'M', 155), +(117016, 'Elton', 1978, 'M', 155), +(117017, 'Stevie', 1978, 'M', 155), +(117018, 'Willard', 1978, 'M', 155), +(117019, 'Galen', 1978, 'M', 154), +(117020, 'Barrett', 1978, 'M', 153), +(117021, 'Darian', 1978, 'M', 153), +(117022, 'Andrea', 1978, 'M', 152), +(117023, 'Issac', 1978, 'M', 152), +(117024, 'Lynn', 1978, 'M', 152), +(117025, 'Zachery', 1978, 'M', 152), +(117026, 'Alvaro', 1978, 'M', 151), +(117027, 'Brendon', 1978, 'M', 151), +(117028, 'Abram', 1978, 'M', 150), +(117029, 'Conor', 1978, 'M', 150), +(117030, 'Cole', 1978, 'M', 149), +(117031, 'Dameon', 1978, 'M', 149), +(117032, 'Denny', 1978, 'M', 149), +(117033, 'Ezra', 1978, 'M', 149), +(117034, 'Hunter', 1978, 'M', 147), +(117035, 'Van', 1978, 'M', 147), +(117036, 'Wilbert', 1978, 'M', 147), +(117037, 'Horace', 1978, 'M', 146), +(117038, 'Percy', 1978, 'M', 146), +(117039, 'Brice', 1978, 'M', 145), +(117040, 'Anwar', 1978, 'M', 144), +(117041, 'Brain', 1978, 'M', 144), +(117042, 'Jasper', 1978, 'M', 144), +(117043, 'Domingo', 1978, 'M', 143), +(117044, 'Jedidiah', 1978, 'M', 143), +(117045, 'Sebastian', 1978, 'M', 143), +(117046, 'Tremayne', 1978, 'M', 143), +(117047, 'Tyron', 1978, 'M', 143), +(117048, 'Chase', 1978, 'M', 142), +(117049, 'Tyree', 1978, 'M', 142), +(117050, 'Antony', 1978, 'M', 141), +(117051, 'Hubert', 1978, 'M', 141), +(117052, 'Jasen', 1978, 'M', 141), +(117053, 'Marlin', 1978, 'M', 141), +(117054, 'Louie', 1978, 'M', 140), +(117055, 'Carson', 1978, 'M', 139), +(117056, 'Delbert', 1978, 'M', 139), +(117057, 'Hassan', 1978, 'M', 139), +(117058, 'Laurence', 1978, 'M', 139), +(117059, 'Heriberto', 1978, 'M', 138), +(117060, 'Kenyon', 1978, 'M', 138), +(117061, 'Vaughn', 1978, 'M', 138), +(117062, 'Ken', 1978, 'M', 137), +(117063, 'Diego', 1978, 'M', 136), +(117064, 'Ellis', 1978, 'M', 136), +(117065, 'Shelton', 1978, 'M', 136), +(117066, 'Jeremey', 1978, 'M', 135), +(117067, 'Mauricio', 1978, 'M', 135), +(117068, 'Al', 1978, 'M', 134), +(117069, 'Brenton', 1978, 'M', 134), +(117070, 'Jade', 1978, 'M', 134), +(117071, 'Marcel', 1978, 'M', 134), +(117072, 'Elvin', 1978, 'M', 133), +(117073, 'Rickie', 1978, 'M', 133), +(117074, 'Tristan', 1978, 'M', 133), +(117075, 'Cyrus', 1978, 'M', 132), +(117076, 'Dedrick', 1978, 'M', 132), +(117077, 'Jan', 1978, 'M', 132), +(117078, 'Mikel', 1978, 'M', 132), +(117079, 'Rufus', 1978, 'M', 132), +(117080, 'Cornell', 1978, 'M', 131), +(117081, 'Danial', 1978, 'M', 131), +(117082, 'Ernie', 1978, 'M', 131), +(117083, 'Keenan', 1978, 'M', 131), +(117084, 'Ari', 1978, 'M', 130), +(117085, 'Chet', 1978, 'M', 130), +(117086, 'Lane', 1978, 'M', 130), +(117087, 'Nicholaus', 1978, 'M', 130), +(117088, 'Theron', 1978, 'M', 130), +(117089, 'Judson', 1978, 'M', 129), +(117090, 'Leonel', 1978, 'M', 129), +(117091, 'Monty', 1978, 'M', 129), +(117092, 'Agustin', 1978, 'M', 128), +(117093, 'Antione', 1978, 'M', 128), +(117094, 'Kenji', 1978, 'M', 128), +(117095, 'Kenya', 1978, 'M', 128), +(117096, 'Ezekiel', 1978, 'M', 127), +(117097, 'Rocco', 1978, 'M', 127), +(117098, 'Gregorio', 1978, 'M', 126), +(117099, 'Thad', 1978, 'M', 126), +(117100, 'Titus', 1978, 'M', 126), +(117101, 'Davis', 1978, 'M', 124), +(117102, 'Leif', 1978, 'M', 124), +(117103, 'Jameel', 1978, 'M', 123), +(117104, 'Keven', 1978, 'M', 123), +(117105, 'Kim', 1978, 'M', 123), +(117106, 'Ronny', 1978, 'M', 123), +(117107, 'Ulysses', 1978, 'M', 123), +(117108, 'Alphonso', 1978, 'M', 122), +(117109, 'Brennan', 1978, 'M', 122), +(117110, 'Josef', 1978, 'M', 122), +(117111, 'Billie', 1978, 'M', 121), +(117112, 'Trey', 1978, 'M', 121), +(117113, 'Antwon', 1978, 'M', 119), +(117114, 'Dewey', 1978, 'M', 119), +(117115, 'Donta', 1978, 'M', 119), +(117116, 'Michel', 1978, 'M', 119), +(117117, 'Rodger', 1978, 'M', 119), +(117118, 'Lenny', 1978, 'M', 118), +(117119, 'Lowell', 1978, 'M', 118), +(117120, 'Adolfo', 1978, 'M', 117), +(117121, 'Cleveland', 1978, 'M', 117), +(117122, 'Cortney', 1978, 'M', 117), +(117123, 'Garth', 1978, 'M', 117), +(117124, 'Seneca', 1978, 'M', 117), +(117125, 'Errol', 1978, 'M', 116), +(117126, 'Fidel', 1978, 'M', 116), +(117127, 'Kip', 1978, 'M', 116), +(117128, 'Maxwell', 1978, 'M', 116), +(117129, 'Moshe', 1978, 'M', 116), +(117130, 'Nicky', 1978, 'M', 116), +(117131, 'Nigel', 1978, 'M', 116), +(117132, 'Tad', 1978, 'M', 116), +(117133, 'Bert', 1978, 'M', 115), +(117134, 'Brooks', 1978, 'M', 115), +(117135, 'Edwardo', 1978, 'M', 115), +(117136, 'Octavio', 1978, 'M', 115), +(117137, 'Cruz', 1978, 'M', 114), +(117138, 'Daron', 1978, 'M', 114), +(117139, 'Denver', 1978, 'M', 114), +(117140, 'Gerry', 1978, 'M', 114), +(117141, 'Richie', 1978, 'M', 114), +(117142, 'Tarik', 1978, 'M', 114), +(117143, 'Broderick', 1978, 'M', 113), +(117144, 'Efren', 1978, 'M', 113), +(117145, 'Elbert', 1978, 'M', 113), +(117146, 'Jevon', 1978, 'M', 113), +(117147, 'Silas', 1978, 'M', 113), +(117148, 'Terrill', 1978, 'M', 113), +(117149, 'Adrain', 1978, 'M', 112), +(117150, 'Jerad', 1978, 'M', 112), +(117151, 'Wilbur', 1978, 'M', 112), +(117152, 'Deric', 1978, 'M', 111), +(117153, 'Emmett', 1978, 'M', 111), +(117154, 'Liam', 1978, 'M', 111), +(117155, 'Bob', 1978, 'M', 110), +(117156, 'Coby', 1978, 'M', 110), +(117157, 'Gino', 1978, 'M', 110), +(117158, 'Osvaldo', 1978, 'M', 110), +(117159, 'Dejuan', 1978, 'M', 109), +(117160, 'Nikolas', 1978, 'M', 109), +(117161, 'Braden', 1978, 'M', 108), +(117162, 'Federico', 1978, 'M', 108), +(117163, 'Irvin', 1978, 'M', 108), +(117164, 'Parker', 1978, 'M', 108), +(117165, 'Raheem', 1978, 'M', 108), +(117166, 'Torrance', 1978, 'M', 108), +(117167, 'Aldo', 1978, 'M', 107), +(117168, 'Demario', 1978, 'M', 107), +(117169, 'Denis', 1978, 'M', 107), +(117170, 'Jacques', 1978, 'M', 107), +(117171, 'Laron', 1978, 'M', 107), +(117172, 'Tracey', 1978, 'M', 107), +(117173, 'Abdul', 1978, 'M', 106), +(117174, 'Darwin', 1978, 'M', 106), +(117175, 'Khalid', 1978, 'M', 106), +(117176, 'Myles', 1978, 'M', 106), +(117177, 'Shon', 1978, 'M', 106), +(117178, 'Carmen', 1978, 'M', 105), +(117179, 'Cortez', 1978, 'M', 105), +(117180, 'Giuseppe', 1978, 'M', 105), +(117181, 'Westley', 1978, 'M', 105), +(117182, 'Whitney', 1978, 'M', 105), +(117183, 'Brannon', 1978, 'M', 104), +(117184, 'Francesco', 1978, 'M', 104), +(117185, 'Javon', 1978, 'M', 104), +(117186, 'Rashawn', 1978, 'M', 104), +(117187, 'Amir', 1978, 'M', 103), +(117188, 'Quintin', 1978, 'M', 103), +(117189, 'Vito', 1978, 'M', 103), +(117190, 'Boyd', 1978, 'M', 102), +(117191, 'Burton', 1978, 'M', 102), +(117192, 'Jayme', 1978, 'M', 102), +(117193, 'Jered', 1978, 'M', 102), +(117194, 'Shea', 1978, 'M', 102), +(117195, 'Zackery', 1978, 'M', 102), +(117196, 'Derik', 1978, 'M', 101), +(117197, 'Dirk', 1978, 'M', 101), +(117198, 'Dominique', 1978, 'M', 101), +(117199, 'Homer', 1978, 'M', 101), +(117200, 'Melissa', 1978, 'M', 101), +(117201, 'Trinity', 1978, 'M', 101), +(117202, 'Chuck', 1978, 'M', 100), +(117203, 'Jabari', 1978, 'M', 100), +(117204, 'Jereme', 1978, 'M', 100), +(117205, 'Kenton', 1978, 'M', 100), +(117206, 'Sedrick', 1978, 'M', 100), +(117207, 'Jennifer', 1979, 'F', 56715), +(117208, 'Melissa', 1979, 'F', 34049), +(117209, 'Amanda', 1979, 'F', 31926), +(117210, 'Jessica', 1979, 'F', 27779), +(117211, 'Amy', 1979, 'F', 21613), +(117212, 'Sarah', 1979, 'F', 21015), +(117213, 'Heather', 1979, 'F', 20840), +(117214, 'Angela', 1979, 'F', 20258), +(117215, 'Nicole', 1979, 'F', 19509), +(117216, 'Michelle', 1979, 'F', 19266), +(117217, 'Elizabeth', 1979, 'F', 18076), +(117218, 'Kimberly', 1979, 'F', 17637), +(117219, 'Lisa', 1979, 'F', 17284), +(117220, 'Christina', 1979, 'F', 16459), +(117221, 'Stephanie', 1979, 'F', 16203), +(117222, 'Kelly', 1979, 'F', 15299), +(117223, 'Rebecca', 1979, 'F', 14546), +(117224, 'Crystal', 1979, 'F', 13466), +(117225, 'Jamie', 1979, 'F', 12156), +(117226, 'Laura', 1979, 'F', 11886), +(117227, 'Erin', 1979, 'F', 11255), +(117228, 'Amber', 1979, 'F', 11078), +(117229, 'April', 1979, 'F', 10902), +(117230, 'Mary', 1979, 'F', 10554), +(117231, 'Shannon', 1979, 'F', 10366), +(117232, 'Andrea', 1979, 'F', 10336), +(117233, 'Rachel', 1979, 'F', 10232), +(117234, 'Tiffany', 1979, 'F', 9611), +(117235, 'Julie', 1979, 'F', 9252), +(117236, 'Sara', 1979, 'F', 8656), +(117237, 'Megan', 1979, 'F', 8291), +(117238, 'Erica', 1979, 'F', 8180), +(117239, 'Danielle', 1979, 'F', 7979), +(117240, 'Emily', 1979, 'F', 7976), +(117241, 'Christine', 1979, 'F', 7687), +(117242, 'Katherine', 1979, 'F', 7469), +(117243, 'Maria', 1979, 'F', 7322), +(117244, 'Tara', 1979, 'F', 6808), +(117245, 'Brandy', 1979, 'F', 6776), +(117246, 'Monica', 1979, 'F', 6587), +(117247, 'Carrie', 1979, 'F', 6357), +(117248, 'Misty', 1979, 'F', 5786), +(117249, 'Stacy', 1979, 'F', 5709), +(117250, 'Patricia', 1979, 'F', 5651), +(117251, 'Lauren', 1979, 'F', 5624), +(117252, 'Karen', 1979, 'F', 5602), +(117253, 'Alicia', 1979, 'F', 5546), +(117254, 'Holly', 1979, 'F', 5486), +(117255, 'Tracy', 1979, 'F', 5389), +(117256, 'Kathryn', 1979, 'F', 5313), +(117257, 'Susan', 1979, 'F', 5199), +(117258, 'Jill', 1979, 'F', 5194), +(117259, 'Melanie', 1979, 'F', 5023), +(117260, 'Dana', 1979, 'F', 4949), +(117261, 'Cynthia', 1979, 'F', 4932), +(117262, 'Kristy', 1979, 'F', 4879), +(117263, 'Dawn', 1979, 'F', 4725), +(117264, 'Tina', 1979, 'F', 4676), +(117265, 'Anna', 1979, 'F', 4663), +(117266, 'Stacey', 1979, 'F', 4614), +(117267, 'Brandi', 1979, 'F', 4606), +(117268, 'Kristen', 1979, 'F', 4572), +(117269, 'Katie', 1979, 'F', 4510), +(117270, 'Wendy', 1979, 'F', 4499), +(117271, 'Leslie', 1979, 'F', 4497), +(117272, 'Samantha', 1979, 'F', 4460), +(117273, 'Ashley', 1979, 'F', 4450), +(117274, 'Natalie', 1979, 'F', 4443), +(117275, 'Lori', 1979, 'F', 4432), +(117276, 'Allison', 1979, 'F', 4408), +(117277, 'Courtney', 1979, 'F', 4324), +(117278, 'Christy', 1979, 'F', 4285), +(117279, 'Kristin', 1979, 'F', 4264), +(117280, 'Kristina', 1979, 'F', 4130), +(117281, 'Vanessa', 1979, 'F', 4101), +(117282, 'Veronica', 1979, 'F', 4063), +(117283, 'Sandra', 1979, 'F', 3995), +(117284, 'Catherine', 1979, 'F', 3877), +(117285, 'Tammy', 1979, 'F', 3757), +(117286, 'Jacqueline', 1979, 'F', 3741), +(117287, 'Mindy', 1979, 'F', 3710), +(117288, 'Melinda', 1979, 'F', 3706), +(117289, 'Heidi', 1979, 'F', 3670), +(117290, 'Kathleen', 1979, 'F', 3644), +(117291, 'Brooke', 1979, 'F', 3512), +(117292, 'Tonya', 1979, 'F', 3493), +(117293, 'Teresa', 1979, 'F', 3480), +(117294, 'Lindsay', 1979, 'F', 3465), +(117295, 'Valerie', 1979, 'F', 3408), +(117296, 'Pamela', 1979, 'F', 3366), +(117297, 'Erika', 1979, 'F', 3317), +(117298, 'Denise', 1979, 'F', 3265), +(117299, 'Tanya', 1979, 'F', 3224), +(117300, 'Cheryl', 1979, 'F', 3209), +(117301, 'Robin', 1979, 'F', 3208), +(117302, 'Gina', 1979, 'F', 3114), +(117303, 'Jaime', 1979, 'F', 3086), +(117304, 'Leah', 1979, 'F', 3078), +(117305, 'Katrina', 1979, 'F', 3000), +(117306, 'Theresa', 1979, 'F', 2995), +(117307, 'Renee', 1979, 'F', 2977), +(117308, 'Alison', 1979, 'F', 2936), +(117309, 'Nichole', 1979, 'F', 2906), +(117310, 'Tamara', 1979, 'F', 2885), +(117311, 'Michele', 1979, 'F', 2877), +(117312, 'Sabrina', 1979, 'F', 2868), +(117313, 'Nancy', 1979, 'F', 2863), +(117314, 'Margaret', 1979, 'F', 2829), +(117315, 'Kristi', 1979, 'F', 2798), +(117316, 'Natasha', 1979, 'F', 2794), +(117317, 'Diana', 1979, 'F', 2778), +(117318, 'Brenda', 1979, 'F', 2771), +(117319, 'Lindsey', 1979, 'F', 2760), +(117320, 'Linda', 1979, 'F', 2740), +(117321, 'Anne', 1979, 'F', 2733), +(117322, 'Mandy', 1979, 'F', 2722), +(117323, 'Sharon', 1979, 'F', 2691), +(117324, 'Beth', 1979, 'F', 2687), +(117325, 'Victoria', 1979, 'F', 2674), +(117326, 'Jenny', 1979, 'F', 2628), +(117327, 'Meghan', 1979, 'F', 2571), +(117328, 'Julia', 1979, 'F', 2569), +(117329, 'Barbara', 1979, 'F', 2491), +(117330, 'Jaclyn', 1979, 'F', 2302), +(117331, 'Kara', 1979, 'F', 2302), +(117332, 'Ann', 1979, 'F', 2266), +(117333, 'Suzanne', 1979, 'F', 2243), +(117334, 'Candice', 1979, 'F', 2227), +(117335, 'Kelli', 1979, 'F', 2217), +(117336, 'Krista', 1979, 'F', 2214), +(117337, 'Donna', 1979, 'F', 2198), +(117338, 'Deborah', 1979, 'F', 2181), +(117339, 'Colleen', 1979, 'F', 2134), +(117340, 'Regina', 1979, 'F', 2119), +(117341, 'Bethany', 1979, 'F', 2093), +(117342, 'Cindy', 1979, 'F', 2086), +(117343, 'Kendra', 1979, 'F', 2069), +(117344, 'Carolyn', 1979, 'F', 2056), +(117345, 'Molly', 1979, 'F', 2024), +(117346, 'Monique', 1979, 'F', 1978), +(117347, 'Jodi', 1979, 'F', 1976), +(117348, 'Carla', 1979, 'F', 1971), +(117349, 'Meredith', 1979, 'F', 1962), +(117350, 'Casey', 1979, 'F', 1957), +(117351, 'Deanna', 1979, 'F', 1950), +(117352, 'Cassandra', 1979, 'F', 1945), +(117353, 'Yolanda', 1979, 'F', 1935), +(117354, 'Latoya', 1979, 'F', 1880), +(117355, 'Marie', 1979, 'F', 1879), +(117356, 'Summer', 1979, 'F', 1861), +(117357, 'Rachael', 1979, 'F', 1853), +(117358, 'Felicia', 1979, 'F', 1852), +(117359, 'Kari', 1979, 'F', 1852), +(117360, 'Joy', 1979, 'F', 1820), +(117361, 'Tabitha', 1979, 'F', 1818), +(117362, 'Aimee', 1979, 'F', 1813), +(117363, 'Shanna', 1979, 'F', 1794), +(117364, 'Adrienne', 1979, 'F', 1781), +(117365, 'Trisha', 1979, 'F', 1776), +(117366, 'Janet', 1979, 'F', 1744), +(117367, 'Bridget', 1979, 'F', 1734), +(117368, 'Alisha', 1979, 'F', 1721), +(117369, 'Rhonda', 1979, 'F', 1716), +(117370, 'Angel', 1979, 'F', 1696), +(117371, 'Paula', 1979, 'F', 1694), +(117372, 'Debra', 1979, 'F', 1691), +(117373, 'Latasha', 1979, 'F', 1686), +(117374, 'Brianne', 1979, 'F', 1662), +(117375, 'Virginia', 1979, 'F', 1658), +(117376, 'Desiree', 1979, 'F', 1635), +(117377, 'Bonnie', 1979, 'F', 1626), +(117378, 'Carmen', 1979, 'F', 1610), +(117379, 'Miranda', 1979, 'F', 1594), +(117380, 'Candace', 1979, 'F', 1593), +(117381, 'Sherry', 1979, 'F', 1589), +(117382, 'Laurie', 1979, 'F', 1581), +(117383, 'Shawna', 1979, 'F', 1548), +(117384, 'Rebekah', 1979, 'F', 1519), +(117385, 'Jillian', 1979, 'F', 1508), +(117386, 'Autumn', 1979, 'F', 1499), +(117387, 'Christie', 1979, 'F', 1458), +(117388, 'Shelly', 1979, 'F', 1458), +(117389, 'Kristine', 1979, 'F', 1455), +(117390, 'Ebony', 1979, 'F', 1445), +(117391, 'Martha', 1979, 'F', 1442), +(117392, 'Janelle', 1979, 'F', 1415), +(117393, 'Tamika', 1979, 'F', 1414), +(117394, 'Kristie', 1979, 'F', 1407), +(117395, 'Shauna', 1979, 'F', 1401), +(117396, 'Tasha', 1979, 'F', 1401), +(117397, 'Toni', 1979, 'F', 1398), +(117398, 'Robyn', 1979, 'F', 1397), +(117399, 'Joanna', 1979, 'F', 1389), +(117400, 'Marissa', 1979, 'F', 1387), +(117401, 'Sheila', 1979, 'F', 1369), +(117402, 'Angie', 1979, 'F', 1366), +(117403, 'Melody', 1979, 'F', 1364), +(117404, 'Caroline', 1979, 'F', 1352), +(117405, 'Diane', 1979, 'F', 1331), +(117406, 'Kellie', 1979, 'F', 1326), +(117407, 'Stacie', 1979, 'F', 1326), +(117408, 'Tracey', 1979, 'F', 1314), +(117409, 'Claudia', 1979, 'F', 1309), +(117410, 'Angelica', 1979, 'F', 1305), +(117411, 'Marisa', 1979, 'F', 1293), +(117412, 'Sonya', 1979, 'F', 1287), +(117413, 'Sonia', 1979, 'F', 1276), +(117414, 'Kate', 1979, 'F', 1260), +(117415, 'Priscilla', 1979, 'F', 1256), +(117416, 'Olivia', 1979, 'F', 1252), +(117417, 'Cara', 1979, 'F', 1246), +(117418, 'Yvonne', 1979, 'F', 1235), +(117419, 'Abigail', 1979, 'F', 1226), +(117420, 'Traci', 1979, 'F', 1217), +(117421, 'Tricia', 1979, 'F', 1209), +(117422, 'Kelley', 1979, 'F', 1201), +(117423, 'Ruth', 1979, 'F', 1200), +(117424, 'Shana', 1979, 'F', 1198), +(117425, 'Charity', 1979, 'F', 1197), +(117426, 'Audrey', 1979, 'F', 1179), +(117427, 'Latisha', 1979, 'F', 1175), +(117428, 'Alyssa', 1979, 'F', 1174), +(117429, 'Naomi', 1979, 'F', 1174), +(117430, 'Carol', 1979, 'F', 1166), +(117431, 'Krystal', 1979, 'F', 1165), +(117432, 'Jana', 1979, 'F', 1161), +(117433, 'Keri', 1979, 'F', 1151), +(117434, 'Rosa', 1979, 'F', 1149), +(117435, 'Anita', 1979, 'F', 1139), +(117436, 'Ana', 1979, 'F', 1137), +(117437, 'Terri', 1979, 'F', 1127), +(117438, 'Leigh', 1979, 'F', 1126), +(117439, 'Cristina', 1979, 'F', 1121), +(117440, 'Kerri', 1979, 'F', 1110), +(117441, 'Kathy', 1979, 'F', 1109), +(117442, 'Alissa', 1979, 'F', 1090), +(117443, 'Nikki', 1979, 'F', 1085), +(117444, 'Karla', 1979, 'F', 1080), +(117445, 'Christa', 1979, 'F', 1079), +(117446, 'Janice', 1979, 'F', 1079), +(117447, 'Gloria', 1979, 'F', 1074), +(117448, 'Lynn', 1979, 'F', 1072), +(117449, 'Shelley', 1979, 'F', 1065), +(117450, 'Jasmine', 1979, 'F', 1042), +(117451, 'Lakisha', 1979, 'F', 1042), +(117452, 'Leticia', 1979, 'F', 1018), +(117453, 'Sylvia', 1979, 'F', 1018), +(117454, 'Alexis', 1979, 'F', 1011), +(117455, 'Jeanette', 1979, 'F', 1007), +(117456, 'Annette', 1979, 'F', 1000), +(117457, 'Jody', 1979, 'F', 994), +(117458, 'Kerry', 1979, 'F', 994), +(117459, 'Hannah', 1979, 'F', 973), +(117460, 'Whitney', 1979, 'F', 950), +(117461, 'Connie', 1979, 'F', 945), +(117462, 'Ellen', 1979, 'F', 943), +(117463, 'Keisha', 1979, 'F', 937), +(117464, 'Charlene', 1979, 'F', 934), +(117465, 'Jacquelyn', 1979, 'F', 932), +(117466, 'Adriana', 1979, 'F', 930), +(117467, 'Latonya', 1979, 'F', 930), +(117468, 'Gretchen', 1979, 'F', 929), +(117469, 'Amie', 1979, 'F', 923), +(117470, 'Hillary', 1979, 'F', 921), +(117471, 'Jami', 1979, 'F', 921), +(117472, 'Rose', 1979, 'F', 921), +(117473, 'Frances', 1979, 'F', 912), +(117474, 'Lesley', 1979, 'F', 912), +(117475, 'Becky', 1979, 'F', 908); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(117476, 'Annie', 1979, 'F', 907), +(117477, 'Juanita', 1979, 'F', 892), +(117478, 'Dorothy', 1979, 'F', 889), +(117479, 'Chasity', 1979, 'F', 888), +(117480, 'Sandy', 1979, 'F', 888), +(117481, 'Hilary', 1979, 'F', 883), +(117482, 'Maureen', 1979, 'F', 883), +(117483, 'Rita', 1979, 'F', 880), +(117484, 'Helen', 1979, 'F', 879), +(117485, 'Roxanne', 1979, 'F', 879), +(117486, 'Bobbie', 1979, 'F', 878), +(117487, 'Tameka', 1979, 'F', 875), +(117488, 'Yvette', 1979, 'F', 864), +(117489, 'Faith', 1979, 'F', 861), +(117490, 'Nina', 1979, 'F', 858), +(117491, 'Charlotte', 1979, 'F', 856), +(117492, 'Sherri', 1979, 'F', 851), +(117493, 'Evelyn', 1979, 'F', 849), +(117494, 'Rachelle', 1979, 'F', 843), +(117495, 'Angelina', 1979, 'F', 837), +(117496, 'Alexandra', 1979, 'F', 829), +(117497, 'Lakeisha', 1979, 'F', 823), +(117498, 'Billie', 1979, 'F', 820), +(117499, 'Kirsten', 1979, 'F', 818), +(117500, 'Jennie', 1979, 'F', 815), +(117501, 'Raquel', 1979, 'F', 811), +(117502, 'Lydia', 1979, 'F', 803), +(117503, 'Eva', 1979, 'F', 800), +(117504, 'Irene', 1979, 'F', 798), +(117505, 'Staci', 1979, 'F', 796), +(117506, 'Rochelle', 1979, 'F', 793), +(117507, 'Abby', 1979, 'F', 792), +(117508, 'Brittany', 1979, 'F', 790), +(117509, 'Lacey', 1979, 'F', 790), +(117510, 'Corinne', 1979, 'F', 788), +(117511, 'Hope', 1979, 'F', 786), +(117512, 'Elaine', 1979, 'F', 784), +(117513, 'Kim', 1979, 'F', 781), +(117514, 'Alice', 1979, 'F', 776), +(117515, 'Belinda', 1979, 'F', 776), +(117516, 'Norma', 1979, 'F', 774), +(117517, 'Cassie', 1979, 'F', 772), +(117518, 'Miriam', 1979, 'F', 763), +(117519, 'Alisa', 1979, 'F', 762), +(117520, 'Esther', 1979, 'F', 761), +(117521, 'Joanne', 1979, 'F', 759), +(117522, 'Ginger', 1979, 'F', 758), +(117523, 'Devon', 1979, 'F', 757), +(117524, 'Sheri', 1979, 'F', 756), +(117525, 'Brandie', 1979, 'F', 745), +(117526, 'Joyce', 1979, 'F', 739), +(117527, 'Sally', 1979, 'F', 735), +(117528, 'Trina', 1979, 'F', 735), +(117529, 'Elisa', 1979, 'F', 728), +(117530, 'Jessie', 1979, 'F', 720), +(117531, 'Jocelyn', 1979, 'F', 719), +(117532, 'Jane', 1979, 'F', 718), +(117533, 'Brianna', 1979, 'F', 714), +(117534, 'Jenifer', 1979, 'F', 714), +(117535, 'Beverly', 1979, 'F', 713), +(117536, 'Betty', 1979, 'F', 711), +(117537, 'Jackie', 1979, 'F', 710), +(117538, 'Ericka', 1979, 'F', 706), +(117539, 'Stefanie', 1979, 'F', 706), +(117540, 'Tracie', 1979, 'F', 705), +(117541, 'Gabriela', 1979, 'F', 704), +(117542, 'Jodie', 1979, 'F', 703), +(117543, 'Marsha', 1979, 'F', 703), +(117544, 'Amelia', 1979, 'F', 702), +(117545, 'Penny', 1979, 'F', 697), +(117546, 'Christi', 1979, 'F', 692), +(117547, 'Chrystal', 1979, 'F', 691), +(117548, 'Grace', 1979, 'F', 690), +(117549, 'Carissa', 1979, 'F', 686), +(117550, 'Tanisha', 1979, 'F', 686), +(117551, 'Carly', 1979, 'F', 674), +(117552, 'Kasey', 1979, 'F', 671), +(117553, 'Shirley', 1979, 'F', 670), +(117554, 'Darlene', 1979, 'F', 666), +(117555, 'Aisha', 1979, 'F', 662), +(117556, 'Melisa', 1979, 'F', 661), +(117557, 'Joni', 1979, 'F', 660), +(117558, 'Ruby', 1979, 'F', 660), +(117559, 'Jean', 1979, 'F', 658), +(117560, 'Tami', 1979, 'F', 651), +(117561, 'Lorena', 1979, 'F', 647), +(117562, 'Cecilia', 1979, 'F', 636), +(117563, 'Joann', 1979, 'F', 635), +(117564, 'Kenya', 1979, 'F', 630), +(117565, 'Elena', 1979, 'F', 629), +(117566, 'Leanne', 1979, 'F', 629), +(117567, 'Katharine', 1979, 'F', 628), +(117568, 'Elisabeth', 1979, 'F', 624), +(117569, 'Jenna', 1979, 'F', 623), +(117570, 'Antoinette', 1979, 'F', 621), +(117571, 'Lee', 1979, 'F', 621), +(117572, 'Hollie', 1979, 'F', 620), +(117573, 'Lakesha', 1979, 'F', 620), +(117574, 'Marcia', 1979, 'F', 619), +(117575, 'Bianca', 1979, 'F', 615), +(117576, 'Judith', 1979, 'F', 613), +(117577, 'Camille', 1979, 'F', 611), +(117578, 'Nadia', 1979, 'F', 608), +(117579, 'Alana', 1979, 'F', 606), +(117580, 'Bobbi', 1979, 'F', 605), +(117581, 'Mia', 1979, 'F', 601), +(117582, 'Tia', 1979, 'F', 600), +(117583, 'Lora', 1979, 'F', 593), +(117584, 'Mayra', 1979, 'F', 593), +(117585, 'Audra', 1979, 'F', 591), +(117586, 'Cathy', 1979, 'F', 587), +(117587, 'Tabatha', 1979, 'F', 582), +(117588, 'Mandi', 1979, 'F', 580), +(117589, 'Alma', 1979, 'F', 579), +(117590, 'Kimberley', 1979, 'F', 575), +(117591, 'Wanda', 1979, 'F', 575), +(117592, 'Eileen', 1979, 'F', 569), +(117593, 'Jolene', 1979, 'F', 567), +(117594, 'Tania', 1979, 'F', 565), +(117595, 'Marilyn', 1979, 'F', 558), +(117596, 'Ryan', 1979, 'F', 558), +(117597, 'Chandra', 1979, 'F', 556), +(117598, 'Guadalupe', 1979, 'F', 555), +(117599, 'Terra', 1979, 'F', 554), +(117600, 'Marisol', 1979, 'F', 553), +(117601, 'Michael', 1979, 'F', 553), +(117602, 'Debbie', 1979, 'F', 552), +(117603, 'Allyson', 1979, 'F', 551), +(117604, 'Elisha', 1979, 'F', 546), +(117605, 'Johanna', 1979, 'F', 545), +(117606, 'Claire', 1979, 'F', 540), +(117607, 'Yesenia', 1979, 'F', 540), +(117608, 'Judy', 1979, 'F', 536), +(117609, 'Maribel', 1979, 'F', 536), +(117610, 'Dena', 1979, 'F', 535), +(117611, 'Nora', 1979, 'F', 535), +(117612, 'Gwendolyn', 1979, 'F', 533), +(117613, 'Randi', 1979, 'F', 532), +(117614, 'Betsy', 1979, 'F', 530), +(117615, 'Celeste', 1979, 'F', 525), +(117616, 'Janine', 1979, 'F', 524), +(117617, 'Lorraine', 1979, 'F', 523), +(117618, 'Selena', 1979, 'F', 523), +(117619, 'Peggy', 1979, 'F', 518), +(117620, 'Haley', 1979, 'F', 511), +(117621, 'Lynette', 1979, 'F', 511), +(117622, 'Esmeralda', 1979, 'F', 510), +(117623, 'Karina', 1979, 'F', 504), +(117624, 'Candy', 1979, 'F', 502), +(117625, 'Serena', 1979, 'F', 502), +(117626, 'Briana', 1979, 'F', 500), +(117627, 'Lara', 1979, 'F', 500), +(117628, 'Loretta', 1979, 'F', 497), +(117629, 'Roberta', 1979, 'F', 493), +(117630, 'Iris', 1979, 'F', 492), +(117631, 'Kylie', 1979, 'F', 491), +(117632, 'Sophia', 1979, 'F', 490), +(117633, 'Alyson', 1979, 'F', 488), +(117634, 'Rosemary', 1979, 'F', 488), +(117635, 'Emma', 1979, 'F', 486), +(117636, 'Teri', 1979, 'F', 483), +(117637, 'Latosha', 1979, 'F', 482), +(117638, 'Leann', 1979, 'F', 482), +(117639, 'Gabrielle', 1979, 'F', 477), +(117640, 'Meagan', 1979, 'F', 475), +(117641, 'Angelique', 1979, 'F', 472), +(117642, 'Aubrey', 1979, 'F', 472), +(117643, 'Lea', 1979, 'F', 471), +(117644, 'Maggie', 1979, 'F', 469), +(117645, 'Genevieve', 1979, 'F', 468), +(117646, 'Cherie', 1979, 'F', 467), +(117647, 'Patrice', 1979, 'F', 467), +(117648, 'Marlene', 1979, 'F', 466), +(117649, 'Shawn', 1979, 'F', 462), +(117650, 'Tonia', 1979, 'F', 462), +(117651, 'Bernadette', 1979, 'F', 461), +(117652, 'Katy', 1979, 'F', 461), +(117653, 'Vivian', 1979, 'F', 458), +(117654, 'Lashonda', 1979, 'F', 457), +(117655, 'Noelle', 1979, 'F', 456), +(117656, 'Cheri', 1979, 'F', 454), +(117657, 'Chrissy', 1979, 'F', 454), +(117658, 'Lena', 1979, 'F', 452), +(117659, 'Misti', 1979, 'F', 452), +(117660, 'Liza', 1979, 'F', 449), +(117661, 'Marcie', 1979, 'F', 448), +(117662, 'Luz', 1979, 'F', 447), +(117663, 'Athena', 1979, 'F', 445), +(117664, 'Chelsea', 1979, 'F', 443), +(117665, 'Morgan', 1979, 'F', 442), +(117666, 'Lillian', 1979, 'F', 439), +(117667, 'Sonja', 1979, 'F', 438), +(117668, 'Carolina', 1979, 'F', 437), +(117669, 'Tessa', 1979, 'F', 437), +(117670, 'Adrianne', 1979, 'F', 435), +(117671, 'Josephine', 1979, 'F', 434), +(117672, 'Jeanne', 1979, 'F', 433), +(117673, 'Laurel', 1979, 'F', 430), +(117674, 'Marcy', 1979, 'F', 429), +(117675, 'Catrina', 1979, 'F', 428), +(117676, 'Chastity', 1979, 'F', 428), +(117677, 'Janna', 1979, 'F', 428), +(117678, 'Shelby', 1979, 'F', 428), +(117679, 'Vicki', 1979, 'F', 428), +(117680, 'Blanca', 1979, 'F', 427), +(117681, 'Lacy', 1979, 'F', 427), +(117682, 'Susana', 1979, 'F', 427), +(117683, 'Jeannie', 1979, 'F', 426), +(117684, 'Deana', 1979, 'F', 425), +(117685, 'Kristal', 1979, 'F', 425), +(117686, 'Marla', 1979, 'F', 425), +(117687, 'Marianne', 1979, 'F', 424), +(117688, 'Clarissa', 1979, 'F', 422), +(117689, 'Isabel', 1979, 'F', 422), +(117690, 'Rhiannon', 1979, 'F', 422), +(117691, 'Margarita', 1979, 'F', 420), +(117692, 'Dina', 1979, 'F', 419), +(117693, 'Viviana', 1979, 'F', 419), +(117694, 'Dianna', 1979, 'F', 418), +(117695, 'Lana', 1979, 'F', 417), +(117696, 'Janell', 1979, 'F', 416), +(117697, 'Sheryl', 1979, 'F', 413), +(117698, 'Darcy', 1979, 'F', 411), +(117699, 'Jeannette', 1979, 'F', 410), +(117700, 'Shanika', 1979, 'F', 410), +(117701, 'Tisha', 1979, 'F', 409), +(117702, 'Elissa', 1979, 'F', 408), +(117703, 'Carey', 1979, 'F', 406), +(117704, 'Bridgette', 1979, 'F', 405), +(117705, 'Malinda', 1979, 'F', 405), +(117706, 'Tammie', 1979, 'F', 405), +(117707, 'Devin', 1979, 'F', 402), +(117708, 'Joan', 1979, 'F', 401), +(117709, 'Marci', 1979, 'F', 400), +(117710, 'Lawanda', 1979, 'F', 397), +(117711, 'Ramona', 1979, 'F', 393), +(117712, 'Sasha', 1979, 'F', 393), +(117713, 'Larissa', 1979, 'F', 391), +(117714, 'Alejandra', 1979, 'F', 390), +(117715, 'Latanya', 1979, 'F', 390), +(117716, 'Paige', 1979, 'F', 389), +(117717, 'Shameka', 1979, 'F', 387), +(117718, 'Marlena', 1979, 'F', 386), +(117719, 'Maya', 1979, 'F', 385), +(117720, 'Destiny', 1979, 'F', 384), +(117721, 'Shari', 1979, 'F', 384), +(117722, 'Jayme', 1979, 'F', 381), +(117723, 'Meghann', 1979, 'F', 374), +(117724, 'Wendi', 1979, 'F', 374), +(117725, 'Cristy', 1979, 'F', 370), +(117726, 'Daisy', 1979, 'F', 370), +(117727, 'Tiffani', 1979, 'F', 370), +(117728, 'Angelia', 1979, 'F', 369), +(117729, 'Latrice', 1979, 'F', 367), +(117730, 'Georgia', 1979, 'F', 365), +(117731, 'Kimberlee', 1979, 'F', 363), +(117732, 'Aja', 1979, 'F', 362), +(117733, 'Kisha', 1979, 'F', 362), +(117734, 'Tera', 1979, 'F', 362), +(117735, 'Maricela', 1979, 'F', 361), +(117736, 'Janel', 1979, 'F', 358), +(117737, 'Shavon', 1979, 'F', 358), +(117738, 'Breanne', 1979, 'F', 357), +(117739, 'Sherrie', 1979, 'F', 356), +(117740, 'Silvia', 1979, 'F', 352), +(117741, 'Gail', 1979, 'F', 351), +(117742, 'Irma', 1979, 'F', 351), +(117743, 'Lucy', 1979, 'F', 350), +(117744, 'Karrie', 1979, 'F', 349), +(117745, 'Adrian', 1979, 'F', 348), +(117746, 'Cari', 1979, 'F', 347), +(117747, 'Marjorie', 1979, 'F', 347), +(117748, 'Raven', 1979, 'F', 346), +(117749, 'Tori', 1979, 'F', 345), +(117750, 'Constance', 1979, 'F', 344), +(117751, 'Cortney', 1979, 'F', 343), +(117752, 'Leeann', 1979, 'F', 343), +(117753, 'Clara', 1979, 'F', 342), +(117754, 'Dayna', 1979, 'F', 340), +(117755, 'Jeanine', 1979, 'F', 340), +(117756, 'Marcella', 1979, 'F', 339), +(117757, 'Edith', 1979, 'F', 338), +(117758, 'Christal', 1979, 'F', 337), +(117759, 'Kyla', 1979, 'F', 336), +(117760, 'Tiffanie', 1979, 'F', 335), +(117761, 'Cori', 1979, 'F', 333), +(117762, 'Qiana', 1979, 'F', 332), +(117763, 'Karin', 1979, 'F', 331), +(117764, 'Janie', 1979, 'F', 330), +(117765, 'Araceli', 1979, 'F', 328), +(117766, 'Demetria', 1979, 'F', 328), +(117767, 'Shanda', 1979, 'F', 328), +(117768, 'Bambi', 1979, 'F', 327), +(117769, 'Dominique', 1979, 'F', 327), +(117770, 'Janette', 1979, 'F', 326), +(117771, 'Arlene', 1979, 'F', 325), +(117772, 'Jasmin', 1979, 'F', 324), +(117773, 'Tosha', 1979, 'F', 323), +(117774, 'Ivy', 1979, 'F', 322), +(117775, 'Quiana', 1979, 'F', 322), +(117776, 'Sheree', 1979, 'F', 322), +(117777, 'Marina', 1979, 'F', 320), +(117778, 'Shamika', 1979, 'F', 318), +(117779, 'Sommer', 1979, 'F', 318), +(117780, 'Myra', 1979, 'F', 317), +(117781, 'Deidre', 1979, 'F', 316), +(117782, 'Maryann', 1979, 'F', 316), +(117783, 'Valarie', 1979, 'F', 316), +(117784, 'Lakeshia', 1979, 'F', 315), +(117785, 'Mindi', 1979, 'F', 315), +(117786, 'Nadine', 1979, 'F', 315), +(117787, 'Christopher', 1979, 'F', 314), +(117788, 'Bridgett', 1979, 'F', 313), +(117789, 'Darla', 1979, 'F', 313), +(117790, 'Shanta', 1979, 'F', 311), +(117791, 'Brook', 1979, 'F', 310), +(117792, 'Lindy', 1979, 'F', 310), +(117793, 'Maritza', 1979, 'F', 308), +(117794, 'Malissa', 1979, 'F', 307), +(117795, 'Mariah', 1979, 'F', 307), +(117796, 'Jo', 1979, 'F', 306), +(117797, 'Ronda', 1979, 'F', 306), +(117798, 'Terry', 1979, 'F', 305), +(117799, 'Ladonna', 1979, 'F', 304), +(117800, 'Jason', 1979, 'F', 303), +(117801, 'Shayla', 1979, 'F', 303), +(117802, 'Taryn', 1979, 'F', 303), +(117803, 'Jaimie', 1979, 'F', 302), +(117804, 'Meaghan', 1979, 'F', 302), +(117805, 'Tiana', 1979, 'F', 302), +(117806, 'Ashlee', 1979, 'F', 301), +(117807, 'Daphne', 1979, 'F', 301), +(117808, 'Leanna', 1979, 'F', 299), +(117809, 'Glenda', 1979, 'F', 297), +(117810, 'Corina', 1979, 'F', 296), +(117811, 'Elise', 1979, 'F', 295), +(117812, 'Kami', 1979, 'F', 294), +(117813, 'Noemi', 1979, 'F', 293), +(117814, 'Dora', 1979, 'F', 292), +(117815, 'Sharonda', 1979, 'F', 291), +(117816, 'Corey', 1979, 'F', 290), +(117817, 'Dolores', 1979, 'F', 290), +(117818, 'Edna', 1979, 'F', 288), +(117819, 'Natalia', 1979, 'F', 288), +(117820, 'Olga', 1979, 'F', 288), +(117821, 'Vickie', 1979, 'F', 287), +(117822, 'Alecia', 1979, 'F', 285), +(117823, 'David', 1979, 'F', 285), +(117824, 'Doris', 1979, 'F', 285), +(117825, 'Maranda', 1979, 'F', 285), +(117826, 'Ami', 1979, 'F', 283), +(117827, 'Francesca', 1979, 'F', 283), +(117828, 'Jordan', 1979, 'F', 283), +(117829, 'Talia', 1979, 'F', 281), +(117830, 'Beatrice', 1979, 'F', 280), +(117831, 'Delia', 1979, 'F', 280), +(117832, 'June', 1979, 'F', 280), +(117833, 'Justine', 1979, 'F', 280), +(117834, 'Lashanda', 1979, 'F', 278), +(117835, 'Siobhan', 1979, 'F', 278), +(117836, 'Eleanor', 1979, 'F', 276), +(117837, 'Karyn', 1979, 'F', 275), +(117838, 'Kiley', 1979, 'F', 275), +(117839, 'Lucia', 1979, 'F', 275), +(117840, 'Susanna', 1979, 'F', 275), +(117841, 'Jade', 1979, 'F', 274), +(117842, 'Mollie', 1979, 'F', 274), +(117843, 'Pauline', 1979, 'F', 274), +(117844, 'Corrie', 1979, 'F', 273), +(117845, 'Jamila', 1979, 'F', 273), +(117846, 'Brittney', 1979, 'F', 272), +(117847, 'Sadie', 1979, 'F', 272), +(117848, 'Sue', 1979, 'F', 272), +(117849, 'Mellissa', 1979, 'F', 271), +(117850, 'Nakia', 1979, 'F', 270), +(117851, 'Shonda', 1979, 'F', 270), +(117852, 'Antonia', 1979, 'F', 269), +(117853, 'Chantel', 1979, 'F', 269), +(117854, 'Lorie', 1979, 'F', 269), +(117855, 'Tawana', 1979, 'F', 269), +(117856, 'Katina', 1979, 'F', 268), +(117857, 'Kizzy', 1979, 'F', 268), +(117858, 'Shavonne', 1979, 'F', 268), +(117859, 'Gena', 1979, 'F', 267), +(117860, 'Rocio', 1979, 'F', 267), +(117861, 'Andria', 1979, 'F', 266), +(117862, 'Holli', 1979, 'F', 266), +(117863, 'Lynda', 1979, 'F', 266), +(117864, 'Tomeka', 1979, 'F', 266), +(117865, 'Lucinda', 1979, 'F', 265), +(117866, 'Annmarie', 1979, 'F', 264), +(117867, 'Chanel', 1979, 'F', 264), +(117868, 'Dara', 1979, 'F', 264), +(117869, 'Chanda', 1979, 'F', 263), +(117870, 'Crissy', 1979, 'F', 262), +(117871, 'Harmony', 1979, 'F', 262), +(117872, 'Jeri', 1979, 'F', 262), +(117873, 'James', 1979, 'F', 261), +(117874, 'Tanika', 1979, 'F', 260), +(117875, 'Anastasia', 1979, 'F', 259), +(117876, 'Caryn', 1979, 'F', 259), +(117877, 'Renae', 1979, 'F', 258), +(117878, 'Ingrid', 1979, 'F', 257), +(117879, 'Kayla', 1979, 'F', 256), +(117880, 'Kerrie', 1979, 'F', 256), +(117881, 'Marisela', 1979, 'F', 256), +(117882, 'Abbey', 1979, 'F', 255), +(117883, 'Caitlin', 1979, 'F', 255), +(117884, 'Rene', 1979, 'F', 254), +(117885, 'Christen', 1979, 'F', 252), +(117886, 'Griselda', 1979, 'F', 252), +(117887, 'Robert', 1979, 'F', 252), +(117888, 'Josie', 1979, 'F', 251), +(117889, 'Kesha', 1979, 'F', 251), +(117890, 'Shantel', 1979, 'F', 251), +(117891, 'Charmaine', 1979, 'F', 249), +(117892, 'Nicolette', 1979, 'F', 249), +(117893, 'Jada', 1979, 'F', 248), +(117894, 'Shalonda', 1979, 'F', 248), +(117895, 'Tamra', 1979, 'F', 248), +(117896, 'Alysia', 1979, 'F', 247), +(117897, 'Celia', 1979, 'F', 247), +(117898, 'Candi', 1979, 'F', 245), +(117899, 'John', 1979, 'F', 245), +(117900, 'Corrine', 1979, 'F', 244), +(117901, 'Hayley', 1979, 'F', 244), +(117902, 'Helena', 1979, 'F', 244), +(117903, 'Rena', 1979, 'F', 244), +(117904, 'Eliza', 1979, 'F', 243), +(117905, 'Mara', 1979, 'F', 243), +(117906, 'Selina', 1979, 'F', 242), +(117907, 'Sondra', 1979, 'F', 242), +(117908, 'Adriane', 1979, 'F', 241), +(117909, 'Susie', 1979, 'F', 241), +(117910, 'Vicky', 1979, 'F', 241), +(117911, 'Winter', 1979, 'F', 241), +(117912, 'Rosalinda', 1979, 'F', 240), +(117913, 'Sunshine', 1979, 'F', 240), +(117914, 'Celina', 1979, 'F', 239), +(117915, 'Cory', 1979, 'F', 239), +(117916, 'Ida', 1979, 'F', 239), +(117917, 'Lyndsey', 1979, 'F', 239), +(117918, 'Abbie', 1979, 'F', 238), +(117919, 'Racheal', 1979, 'F', 238), +(117920, 'Gladys', 1979, 'F', 237), +(117921, 'Graciela', 1979, 'F', 236), +(117922, 'Shasta', 1979, 'F', 235), +(117923, 'Madeline', 1979, 'F', 234), +(117924, 'Jeanna', 1979, 'F', 232), +(117925, 'Shara', 1979, 'F', 232), +(117926, 'Tammi', 1979, 'F', 232), +(117927, 'Alesha', 1979, 'F', 231), +(117928, 'Beatriz', 1979, 'F', 231), +(117929, 'Francine', 1979, 'F', 231), +(117930, 'Geneva', 1979, 'F', 230), +(117931, 'Maura', 1979, 'F', 229), +(117932, 'Susanne', 1979, 'F', 229), +(117933, 'Liliana', 1979, 'F', 228), +(117934, 'Renata', 1979, 'F', 228), +(117935, 'Shelia', 1979, 'F', 228), +(117936, 'Jesse', 1979, 'F', 227), +(117937, 'Windy', 1979, 'F', 227), +(117938, 'Christin', 1979, 'F', 226), +(117939, 'Maren', 1979, 'F', 226), +(117940, 'Michaela', 1979, 'F', 225), +(117941, 'Jacklyn', 1979, 'F', 223), +(117942, 'Mercedes', 1979, 'F', 223), +(117943, 'Danelle', 1979, 'F', 222), +(117944, 'Kelsey', 1979, 'F', 222), +(117945, 'Hilda', 1979, 'F', 221), +(117946, 'Mellisa', 1979, 'F', 221), +(117947, 'Rosanna', 1979, 'F', 221), +(117948, 'Rosalyn', 1979, 'F', 220), +(117949, 'Simone', 1979, 'F', 219), +(117950, 'Christian', 1979, 'F', 218), +(117951, 'Darci', 1979, 'F', 218), +(117952, 'Jenelle', 1979, 'F', 218), +(117953, 'Kori', 1979, 'F', 217), +(117954, 'Bree', 1979, 'F', 216), +(117955, 'January', 1979, 'F', 216), +(117956, 'Kathrine', 1979, 'F', 216), +(117957, 'Stella', 1979, 'F', 216), +(117958, 'Alanna', 1979, 'F', 215), +(117959, 'Brandee', 1979, 'F', 215), +(117960, 'Cathleen', 1979, 'F', 215), +(117961, 'Marta', 1979, 'F', 215), +(117962, 'Callie', 1979, 'F', 213), +(117963, 'Regan', 1979, 'F', 213), +(117964, 'Rosemarie', 1979, 'F', 213), +(117965, 'Chiquita', 1979, 'F', 212), +(117966, 'Eve', 1979, 'F', 212), +(117967, 'Julianne', 1979, 'F', 212), +(117968, 'Brenna', 1979, 'F', 211), +(117969, 'Joshua', 1979, 'F', 211), +(117970, 'Elsa', 1979, 'F', 210), +(117971, 'Fatima', 1979, 'F', 210), +(117972, 'Gwen', 1979, 'F', 210), +(117973, 'Martina', 1979, 'F', 210), +(117974, 'Bertha', 1979, 'F', 209), +(117975, 'Joseph', 1979, 'F', 209), +(117976, 'Louise', 1979, 'F', 209), +(117977, 'Casandra', 1979, 'F', 208), +(117978, 'Deirdre', 1979, 'F', 208), +(117979, 'Richelle', 1979, 'F', 208), +(117980, 'Tana', 1979, 'F', 208), +(117981, 'Yadira', 1979, 'F', 208), +(117982, 'Deidra', 1979, 'F', 206), +(117983, 'Emilie', 1979, 'F', 206), +(117984, 'Greta', 1979, 'F', 205), +(117985, 'Kylene', 1979, 'F', 205), +(117986, 'Lynne', 1979, 'F', 205), +(117987, 'Tanesha', 1979, 'F', 205), +(117988, 'Phyllis', 1979, 'F', 204), +(117989, 'Felecia', 1979, 'F', 203), +(117990, 'Monika', 1979, 'F', 203), +(117991, 'Shannan', 1979, 'F', 203), +(117992, 'Alycia', 1979, 'F', 202), +(117993, 'Daniel', 1979, 'F', 202), +(117994, 'Jeannine', 1979, 'F', 202), +(117995, 'Davina', 1979, 'F', 201), +(117996, 'Dionne', 1979, 'F', 201), +(117997, 'Farrah', 1979, 'F', 200), +(117998, 'Stacia', 1979, 'F', 200), +(117999, 'Ashleigh', 1979, 'F', 199), +(118000, 'Charissa', 1979, 'F', 199), +(118001, 'Eboni', 1979, 'F', 199), +(118002, 'Jammie', 1979, 'F', 199), +(118003, 'Kylee', 1979, 'F', 199), +(118004, 'Shayna', 1979, 'F', 199), +(118005, 'Kenyatta', 1979, 'F', 198), +(118006, 'Jan', 1979, 'F', 197), +(118007, 'Jeana', 1979, 'F', 197), +(118008, 'Juana', 1979, 'F', 197), +(118009, 'Laquita', 1979, 'F', 197), +(118010, 'Breanna', 1979, 'F', 196), +(118011, 'Carina', 1979, 'F', 196), +(118012, 'Delilah', 1979, 'F', 196), +(118013, 'Leila', 1979, 'F', 196), +(118014, 'Alaina', 1979, 'F', 195), +(118015, 'Dianne', 1979, 'F', 195), +(118016, 'Georgina', 1979, 'F', 195), +(118017, 'Nichol', 1979, 'F', 195), +(118018, 'Sofia', 1979, 'F', 195), +(118019, 'Starr', 1979, 'F', 195), +(118020, 'Aurora', 1979, 'F', 194), +(118021, 'Dusty', 1979, 'F', 194), +(118022, 'Letitia', 1979, 'F', 194), +(118023, 'Cora', 1979, 'F', 193), +(118024, 'Nakisha', 1979, 'F', 193), +(118025, 'Sherita', 1979, 'F', 193), +(118026, 'Nikia', 1979, 'F', 192), +(118027, 'Shante', 1979, 'F', 192), +(118028, 'William', 1979, 'F', 191), +(118029, 'Daniela', 1979, 'F', 190), +(118030, 'Deena', 1979, 'F', 190), +(118031, 'Keli', 1979, 'F', 190), +(118032, 'Krissy', 1979, 'F', 189), +(118033, 'Marian', 1979, 'F', 189), +(118034, 'Mona', 1979, 'F', 189), +(118035, 'Sandi', 1979, 'F', 189), +(118036, 'Janae', 1979, 'F', 188), +(118037, 'Kacey', 1979, 'F', 188), +(118038, 'Precious', 1979, 'F', 188), +(118039, 'Shellie', 1979, 'F', 188), +(118040, 'Alexandria', 1979, 'F', 187), +(118041, 'Jerri', 1979, 'F', 187), +(118042, 'Juliana', 1979, 'F', 187), +(118043, 'Margo', 1979, 'F', 187), +(118044, 'Carisa', 1979, 'F', 186), +(118045, 'Rosalie', 1979, 'F', 186), +(118046, 'Eugenia', 1979, 'F', 185), +(118047, 'Kia', 1979, 'F', 185), +(118048, 'Latonia', 1979, 'F', 185), +(118049, 'Marion', 1979, 'F', 185), +(118050, 'Noel', 1979, 'F', 185), +(118051, 'Shawanda', 1979, 'F', 185), +(118052, 'Venus', 1979, 'F', 185), +(118053, 'Casie', 1979, 'F', 184), +(118054, 'Deanne', 1979, 'F', 184), +(118055, 'Lashawn', 1979, 'F', 184), +(118056, 'Margie', 1979, 'F', 184), +(118057, 'Raina', 1979, 'F', 184), +(118058, 'Sunny', 1979, 'F', 184), +(118059, 'Jena', 1979, 'F', 183), +(118060, 'Niki', 1979, 'F', 183), +(118061, 'Tyra', 1979, 'F', 183), +(118062, 'Leona', 1979, 'F', 182), +(118063, 'Shanon', 1979, 'F', 182), +(118064, 'Tawanda', 1979, 'F', 182), +(118065, 'Magdalena', 1979, 'F', 181), +(118066, 'Mari', 1979, 'F', 181), +(118067, 'Octavia', 1979, 'F', 181), +(118068, 'Ursula', 1979, 'F', 181), +(118069, 'Tawanna', 1979, 'F', 180), +(118070, 'Ada', 1979, 'F', 179), +(118071, 'Karissa', 1979, 'F', 179), +(118072, 'Lourdes', 1979, 'F', 179), +(118073, 'Kellee', 1979, 'F', 178), +(118074, 'Kenisha', 1979, 'F', 178), +(118075, 'Mackenzie', 1979, 'F', 178), +(118076, 'Tenisha', 1979, 'F', 178), +(118077, 'Alexa', 1979, 'F', 177), +(118078, 'Juliet', 1979, 'F', 177), +(118079, 'Venessa', 1979, 'F', 177), +(118080, 'Vera', 1979, 'F', 177), +(118081, 'Rae', 1979, 'F', 176), +(118082, 'Spring', 1979, 'F', 176), +(118083, 'Ashanti', 1979, 'F', 175), +(118084, 'Lois', 1979, 'F', 175), +(118085, 'Gillian', 1979, 'F', 174), +(118086, 'Lacie', 1979, 'F', 174), +(118087, 'Joey', 1979, 'F', 173), +(118088, 'Adrianna', 1979, 'F', 172), +(118089, 'Ella', 1979, 'F', 172), +(118090, 'Tamekia', 1979, 'F', 172), +(118091, 'Colette', 1979, 'F', 171), +(118092, 'Keely', 1979, 'F', 171), +(118093, 'Starla', 1979, 'F', 171), +(118094, 'Takisha', 1979, 'F', 171), +(118095, 'Iesha', 1979, 'F', 169), +(118096, 'Karie', 1979, 'F', 169), +(118097, 'Salina', 1979, 'F', 169), +(118098, 'Shaunna', 1979, 'F', 168), +(118099, 'Therese', 1979, 'F', 168), +(118100, 'Asia', 1979, 'F', 167), +(118101, 'Joelle', 1979, 'F', 167), +(118102, 'Stephenie', 1979, 'F', 167), +(118103, 'Annemarie', 1979, 'F', 166), +(118104, 'Danica', 1979, 'F', 166), +(118105, 'Jenni', 1979, 'F', 166), +(118106, 'Kyle', 1979, 'F', 166), +(118107, 'Latricia', 1979, 'F', 166), +(118108, 'Nikole', 1979, 'F', 166), +(118109, 'Kirstin', 1979, 'F', 165), +(118110, 'Adria', 1979, 'F', 164), +(118111, 'Bernice', 1979, 'F', 164), +(118112, 'Faye', 1979, 'F', 164), +(118113, 'Lynnette', 1979, 'F', 164), +(118114, 'Melina', 1979, 'F', 164), +(118115, 'Thelma', 1979, 'F', 164), +(118116, 'Jeanie', 1979, 'F', 163), +(118117, 'Alina', 1979, 'F', 162), +(118118, 'Anitra', 1979, 'F', 162), +(118119, 'Elaina', 1979, 'F', 162), +(118120, 'Johnna', 1979, 'F', 162), +(118121, 'Lyndsay', 1979, 'F', 162), +(118122, 'Matthew', 1979, 'F', 162), +(118123, 'Nicolle', 1979, 'F', 162), +(118124, 'Rosie', 1979, 'F', 162), +(118125, 'Desirae', 1979, 'F', 161), +(118126, 'Janis', 1979, 'F', 161), +(118127, 'Lizette', 1979, 'F', 161), +(118128, 'Mildred', 1979, 'F', 160), +(118129, 'Brian', 1979, 'F', 159), +(118130, 'Esperanza', 1979, 'F', 159), +(118131, 'Florence', 1979, 'F', 159), +(118132, 'Gayle', 1979, 'F', 159), +(118133, 'Jayne', 1979, 'F', 159), +(118134, 'Rebeca', 1979, 'F', 159), +(118135, 'Sharee', 1979, 'F', 159), +(118136, 'Sierra', 1979, 'F', 159), +(118137, 'Angeline', 1979, 'F', 158), +(118138, 'Charisse', 1979, 'F', 158), +(118139, 'Cody', 1979, 'F', 158), +(118140, 'Consuelo', 1979, 'F', 158), +(118141, 'Justina', 1979, 'F', 158), +(118142, 'Liana', 1979, 'F', 158), +(118143, 'Tamica', 1979, 'F', 158), +(118144, 'Delores', 1979, 'F', 157), +(118145, 'Fawn', 1979, 'F', 157), +(118146, 'India', 1979, 'F', 157), +(118147, 'Paulette', 1979, 'F', 157), +(118148, 'Trista', 1979, 'F', 157), +(118149, 'Felisha', 1979, 'F', 156), +(118150, 'Kay', 1979, 'F', 156), +(118151, 'Tomika', 1979, 'F', 156), +(118152, 'Valencia', 1979, 'F', 156), +(118153, 'Ginny', 1979, 'F', 155), +(118154, 'Rashida', 1979, 'F', 155), +(118155, 'Shantell', 1979, 'F', 155), +(118156, 'Anthony', 1979, 'F', 154), +(118157, 'Ariel', 1979, 'F', 154), +(118158, 'Damaris', 1979, 'F', 154), +(118159, 'Kira', 1979, 'F', 154), +(118160, 'Nellie', 1979, 'F', 154), +(118161, 'Trish', 1979, 'F', 154), +(118162, 'Leilani', 1979, 'F', 153), +(118163, 'Lily', 1979, 'F', 153), +(118164, 'Syreeta', 1979, 'F', 153), +(118165, 'Kandi', 1979, 'F', 152), +(118166, 'Cecelia', 1979, 'F', 151), +(118167, 'Danette', 1979, 'F', 151), +(118168, 'Doreen', 1979, 'F', 151), +(118169, 'Nicki', 1979, 'F', 151), +(118170, 'Shea', 1979, 'F', 151), +(118171, 'Bettina', 1979, 'F', 150), +(118172, 'Kacy', 1979, 'F', 150), +(118173, 'Princess', 1979, 'F', 150), +(118174, 'Aileen', 1979, 'F', 149), +(118175, 'Tamera', 1979, 'F', 149), +(118176, 'Cristal', 1979, 'F', 148), +(118177, 'Josefina', 1979, 'F', 148), +(118178, 'Lisette', 1979, 'F', 148), +(118179, 'Shanita', 1979, 'F', 148), +(118180, 'Star', 1979, 'F', 148), +(118181, 'Tawnya', 1979, 'F', 148), +(118182, 'Taylor', 1979, 'F', 148), +(118183, 'Ayesha', 1979, 'F', 147), +(118184, 'Cristin', 1979, 'F', 147), +(118185, 'Rikki', 1979, 'F', 147), +(118186, 'Luisa', 1979, 'F', 146), +(118187, 'Lynsey', 1979, 'F', 146), +(118188, 'Quinn', 1979, 'F', 146), +(118189, 'Roxanna', 1979, 'F', 146), +(118190, 'Shaneka', 1979, 'F', 146), +(118191, 'Linsey', 1979, 'F', 145), +(118192, 'Loni', 1979, 'F', 145), +(118193, 'Lorrie', 1979, 'F', 145), +(118194, 'Nikita', 1979, 'F', 145), +(118195, 'Trinity', 1979, 'F', 145), +(118196, 'Aaron', 1979, 'F', 144), +(118197, 'Charla', 1979, 'F', 144), +(118198, 'Marlana', 1979, 'F', 144), +(118199, 'Perla', 1979, 'F', 144), +(118200, 'Rosario', 1979, 'F', 144), +(118201, 'Kaci', 1979, 'F', 143), +(118202, 'Kristyn', 1979, 'F', 143), +(118203, 'Lani', 1979, 'F', 143), +(118204, 'Lilia', 1979, 'F', 143), +(118205, 'Mitzi', 1979, 'F', 143), +(118206, 'Pearl', 1979, 'F', 143), +(118207, 'Shani', 1979, 'F', 143), +(118208, 'Sheena', 1979, 'F', 143), +(118209, 'Susannah', 1979, 'F', 143), +(118210, 'Suzanna', 1979, 'F', 143), +(118211, 'Anissa', 1979, 'F', 142), +(118212, 'Chantelle', 1979, 'F', 142), +(118213, 'Eunice', 1979, 'F', 142), +(118214, 'Francisca', 1979, 'F', 142), +(118215, 'Latesha', 1979, 'F', 141), +(118216, 'Natosha', 1979, 'F', 141), +(118217, 'Daniella', 1979, 'F', 140), +(118218, 'Eric', 1979, 'F', 140), +(118219, 'Lashunda', 1979, 'F', 140), +(118220, 'Nicholas', 1979, 'F', 140), +(118221, 'Reyna', 1979, 'F', 140), +(118222, 'Darcie', 1979, 'F', 139), +(118223, 'Reagan', 1979, 'F', 139), +(118224, 'Renita', 1979, 'F', 139), +(118225, 'Benita', 1979, 'F', 138), +(118226, 'Cherise', 1979, 'F', 138), +(118227, 'Ivette', 1979, 'F', 138), +(118228, 'Nicola', 1979, 'F', 138), +(118229, 'Rasheeda', 1979, 'F', 138), +(118230, 'Roseann', 1979, 'F', 138), +(118231, 'Katheryn', 1979, 'F', 137), +(118232, 'Lila', 1979, 'F', 137), +(118233, 'Mariana', 1979, 'F', 137), +(118234, 'Michell', 1979, 'F', 137), +(118235, 'Steven', 1979, 'F', 137), +(118236, 'Ariana', 1979, 'F', 136), +(118237, 'Ava', 1979, 'F', 136), +(118238, 'Cameron', 1979, 'F', 136), +(118239, 'Chana', 1979, 'F', 136), +(118240, 'Lola', 1979, 'F', 136), +(118241, 'Malia', 1979, 'F', 136), +(118242, 'Antionette', 1979, 'F', 135), +(118243, 'Amberly', 1979, 'F', 134), +(118244, 'Carie', 1979, 'F', 134), +(118245, 'Elvira', 1979, 'F', 134), +(118246, 'Jeremy', 1979, 'F', 134), +(118247, 'Jessi', 1979, 'F', 134), +(118248, 'Julianna', 1979, 'F', 134), +(118249, 'Kandice', 1979, 'F', 134), +(118250, 'Kyra', 1979, 'F', 134), +(118251, 'Micah', 1979, 'F', 134), +(118252, 'Suzette', 1979, 'F', 134), +(118253, 'Tyesha', 1979, 'F', 134), +(118254, 'Jaimee', 1979, 'F', 133), +(118255, 'Joanie', 1979, 'F', 133), +(118256, 'Roxann', 1979, 'F', 133), +(118257, 'Tracee', 1979, 'F', 133), +(118258, 'Britney', 1979, 'F', 132), +(118259, 'Shanell', 1979, 'F', 132), +(118260, 'Stephaine', 1979, 'F', 132), +(118261, 'Cathryn', 1979, 'F', 131), +(118262, 'Danna', 1979, 'F', 131), +(118263, 'Melodie', 1979, 'F', 131), +(118264, 'Reina', 1979, 'F', 131), +(118265, 'Shemeka', 1979, 'F', 131), +(118266, 'Stephany', 1979, 'F', 131), +(118267, 'Tamar', 1979, 'F', 131), +(118268, 'Caren', 1979, 'F', 130), +(118269, 'Charles', 1979, 'F', 130), +(118270, 'Cheyenne', 1979, 'F', 130), +(118271, 'Clare', 1979, 'F', 130), +(118272, 'Kiana', 1979, 'F', 130), +(118273, 'Latarsha', 1979, 'F', 130), +(118274, 'Ayanna', 1979, 'F', 129), +(118275, 'Christiana', 1979, 'F', 129), +(118276, 'Elsie', 1979, 'F', 129), +(118277, 'Layla', 1979, 'F', 129), +(118278, 'Mandie', 1979, 'F', 129), +(118279, 'Patty', 1979, 'F', 129), +(118280, 'Timothy', 1979, 'F', 129), +(118281, 'Angelita', 1979, 'F', 128), +(118282, 'Carole', 1979, 'F', 128), +(118283, 'Lakiesha', 1979, 'F', 128), +(118284, 'Andrew', 1979, 'F', 127), +(118285, 'Brandon', 1979, 'F', 127), +(118286, 'Justin', 1979, 'F', 127), +(118287, 'Khalilah', 1979, 'F', 127), +(118288, 'Lissette', 1979, 'F', 127), +(118289, 'Loren', 1979, 'F', 127), +(118290, 'Marquita', 1979, 'F', 127), +(118291, 'Trudy', 1979, 'F', 127), +(118292, 'Celena', 1979, 'F', 126), +(118293, 'Chante', 1979, 'F', 126), +(118294, 'Crista', 1979, 'F', 126), +(118295, 'Danyelle', 1979, 'F', 126), +(118296, 'Deann', 1979, 'F', 126), +(118297, 'Jesica', 1979, 'F', 126), +(118298, 'Kristan', 1979, 'F', 126), +(118299, 'Shawnna', 1979, 'F', 126), +(118300, 'Sherika', 1979, 'F', 126), +(118301, 'Karri', 1979, 'F', 125), +(118302, 'Mistie', 1979, 'F', 125), +(118303, 'Aida', 1979, 'F', 124), +(118304, 'Alena', 1979, 'F', 124), +(118305, 'Kiesha', 1979, 'F', 124), +(118306, 'Kizzie', 1979, 'F', 124), +(118307, 'Meggan', 1979, 'F', 124), +(118308, 'Sparkle', 1979, 'F', 124), +(118309, 'Keshia', 1979, 'F', 123), +(118310, 'Letisha', 1979, 'F', 123), +(118311, 'Maegan', 1979, 'F', 123), +(118312, 'Marcela', 1979, 'F', 123), +(118313, 'Rayna', 1979, 'F', 123), +(118314, 'Richard', 1979, 'F', 123), +(118315, 'Shelli', 1979, 'F', 123), +(118316, 'Shonna', 1979, 'F', 123), +(118317, 'Talisha', 1979, 'F', 123), +(118318, 'Yasmin', 1979, 'F', 123), +(118319, 'Lina', 1979, 'F', 122), +(118320, 'Rosalia', 1979, 'F', 122), +(118321, 'Stormy', 1979, 'F', 122), +(118322, 'Tarsha', 1979, 'F', 122), +(118323, 'Thomas', 1979, 'F', 122), +(118324, 'Toya', 1979, 'F', 122), +(118325, 'Brienne', 1979, 'F', 121), +(118326, 'Francis', 1979, 'F', 120), +(118327, 'Kevin', 1979, 'F', 120), +(118328, 'Marybeth', 1979, 'F', 120), +(118329, 'Sharla', 1979, 'F', 120), +(118330, 'Amity', 1979, 'F', 119), +(118331, 'Chris', 1979, 'F', 119), +(118332, 'Danita', 1979, 'F', 119), +(118333, 'Georgette', 1979, 'F', 119), +(118334, 'Joi', 1979, 'F', 119), +(118335, 'Kati', 1979, 'F', 119), +(118336, 'Keesha', 1979, 'F', 119), +(118337, 'Maxine', 1979, 'F', 119), +(118338, 'Sharita', 1979, 'F', 119), +(118339, 'Tatiana', 1979, 'F', 119), +(118340, 'Violet', 1979, 'F', 119), +(118341, 'Domenica', 1979, 'F', 118), +(118342, 'Gabriella', 1979, 'F', 118), +(118343, 'Latrisha', 1979, 'F', 118), +(118344, 'Leia', 1979, 'F', 118), +(118345, 'Alexia', 1979, 'F', 117), +(118346, 'Ashlie', 1979, 'F', 117), +(118347, 'Camilla', 1979, 'F', 117), +(118348, 'Rosalind', 1979, 'F', 117), +(118349, 'Tarah', 1979, 'F', 117), +(118350, 'Chaya', 1979, 'F', 116), +(118351, 'Dixie', 1979, 'F', 116), +(118352, 'Elana', 1979, 'F', 116), +(118353, 'Joleen', 1979, 'F', 116), +(118354, 'Kindra', 1979, 'F', 116), +(118355, 'Lillie', 1979, 'F', 116), +(118356, 'Myesha', 1979, 'F', 116), +(118357, 'Samara', 1979, 'F', 116), +(118358, 'Tangela', 1979, 'F', 116), +(118359, 'Tawny', 1979, 'F', 116), +(118360, 'Yashica', 1979, 'F', 116), +(118361, 'Bobby', 1979, 'F', 115), +(118362, 'Christel', 1979, 'F', 115), +(118363, 'Della', 1979, 'F', 115), +(118364, 'Estella', 1979, 'F', 115), +(118365, 'Fabiola', 1979, 'F', 115), +(118366, 'Shaunta', 1979, 'F', 115), +(118367, 'Anika', 1979, 'F', 114), +(118368, 'Estela', 1979, 'F', 114), +(118369, 'Somer', 1979, 'F', 114), +(118370, 'Temeka', 1979, 'F', 114), +(118371, 'Thea', 1979, 'F', 114), +(118372, 'Cicely', 1979, 'F', 113), +(118373, 'Coleen', 1979, 'F', 113), +(118374, 'Lolita', 1979, 'F', 113), +(118375, 'Melonie', 1979, 'F', 113), +(118376, 'Mendy', 1979, 'F', 113), +(118377, 'Natisha', 1979, 'F', 113), +(118378, 'Polly', 1979, 'F', 113), +(118379, 'Portia', 1979, 'F', 113), +(118380, 'Tabetha', 1979, 'F', 113), +(118381, 'Tennille', 1979, 'F', 113), +(118382, 'Corinna', 1979, 'F', 112), +(118383, 'Hazel', 1979, 'F', 112), +(118384, 'Kenyetta', 1979, 'F', 112), +(118385, 'Laci', 1979, 'F', 112), +(118386, 'Salena', 1979, 'F', 112), +(118387, 'Skye', 1979, 'F', 112), +(118388, 'Sydney', 1979, 'F', 112), +(118389, 'Ariane', 1979, 'F', 111), +(118390, 'Carin', 1979, 'F', 111), +(118391, 'Dalia', 1979, 'F', 111), +(118392, 'Dannielle', 1979, 'F', 111), +(118393, 'Giselle', 1979, 'F', 111), +(118394, 'Jamey', 1979, 'F', 111), +(118395, 'Shenika', 1979, 'F', 111), +(118396, 'Terrie', 1979, 'F', 111), +(118397, 'Tiesha', 1979, 'F', 111), +(118398, 'Dallas', 1979, 'F', 110), +(118399, 'Geraldine', 1979, 'F', 110), +(118400, 'Lucretia', 1979, 'F', 110), +(118401, 'Maia', 1979, 'F', 110), +(118402, 'Rhea', 1979, 'F', 110), +(118403, 'Season', 1979, 'F', 110), +(118404, 'Angella', 1979, 'F', 109), +(118405, 'Aracely', 1979, 'F', 109), +(118406, 'Bonita', 1979, 'F', 109), +(118407, 'Corie', 1979, 'F', 109), +(118408, 'Latrina', 1979, 'F', 109), +(118409, 'Alysha', 1979, 'F', 108), +(118410, 'Cassidy', 1979, 'F', 108), +(118411, 'Julissa', 1979, 'F', 108), +(118412, 'Kassandra', 1979, 'F', 108), +(118413, 'May', 1979, 'F', 108), +(118414, 'Scarlett', 1979, 'F', 108), +(118415, 'Zoe', 1979, 'F', 108), +(118416, 'Annamarie', 1979, 'F', 107), +(118417, 'Ayana', 1979, 'F', 107), +(118418, 'Brie', 1979, 'F', 107), +(118419, 'Janeen', 1979, 'F', 107), +(118420, 'Jonna', 1979, 'F', 107), +(118421, 'Kamilah', 1979, 'F', 107), +(118422, 'Kasie', 1979, 'F', 107), +(118423, 'Lashaunda', 1979, 'F', 107), +(118424, 'Melony', 1979, 'F', 107), +(118425, 'Shandra', 1979, 'F', 107), +(118426, 'Sharron', 1979, 'F', 107), +(118427, 'Shaun', 1979, 'F', 107), +(118428, 'Shawnta', 1979, 'F', 107), +(118429, 'Shemika', 1979, 'F', 107), +(118430, 'Tressa', 1979, 'F', 107), +(118431, 'Britt', 1979, 'F', 106), +(118432, 'Inez', 1979, 'F', 106), +(118433, 'Jewel', 1979, 'F', 106), +(118434, 'Juliette', 1979, 'F', 106), +(118435, 'Latashia', 1979, 'F', 106), +(118436, 'Lela', 1979, 'F', 106), +(118437, 'Lucille', 1979, 'F', 106), +(118438, 'Imelda', 1979, 'F', 105), +(118439, 'Juli', 1979, 'F', 105), +(118440, 'Sharlene', 1979, 'F', 105), +(118441, 'Tamela', 1979, 'F', 105), +(118442, 'Yajaira', 1979, 'F', 105), +(118443, 'Catalina', 1979, 'F', 104), +(118444, 'Kacie', 1979, 'F', 104), +(118445, 'Lakia', 1979, 'F', 104), +(118446, 'Lashawnda', 1979, 'F', 104), +(118447, 'Nickie', 1979, 'F', 104), +(118448, 'Shira', 1979, 'F', 104), +(118449, 'Tyisha', 1979, 'F', 104), +(118450, 'Cherry', 1979, 'F', 103), +(118451, 'Erinn', 1979, 'F', 103), +(118452, 'Jenniffer', 1979, 'F', 103), +(118453, 'Kris', 1979, 'F', 103), +(118454, 'Mireya', 1979, 'F', 103), +(118455, 'Shawana', 1979, 'F', 103), +(118456, 'Tiffiny', 1979, 'F', 103), +(118457, 'Cami', 1979, 'F', 102), +(118458, 'Laquisha', 1979, 'F', 102), +(118459, 'Lesa', 1979, 'F', 102), +(118460, 'Mckenzie', 1979, 'F', 102), +(118461, 'Milagros', 1979, 'F', 102), +(118462, 'Minerva', 1979, 'F', 102), +(118463, 'Shaunda', 1979, 'F', 102), +(118464, 'Shiloh', 1979, 'F', 102), +(118465, 'Stefani', 1979, 'F', 102), +(118466, 'Addie', 1979, 'F', 101), +(118467, 'Bessie', 1979, 'F', 101), +(118468, 'Cary', 1979, 'F', 101), +(118469, 'Chloe', 1979, 'F', 101), +(118470, 'Elicia', 1979, 'F', 101), +(118471, 'Madelyn', 1979, 'F', 101), +(118472, 'Petra', 1979, 'F', 101), +(118473, 'Samatha', 1979, 'F', 101), +(118474, 'Tameika', 1979, 'F', 101), +(118475, 'Tonja', 1979, 'F', 101), +(118476, 'Valeria', 1979, 'F', 101), +(118477, 'Adina', 1979, 'F', 100), +(118478, 'Arianne', 1979, 'F', 100), +(118479, 'Claudette', 1979, 'F', 100), +(118480, 'Melynda', 1979, 'F', 100), +(118481, 'Meridith', 1979, 'F', 100), +(118482, 'Myrna', 1979, 'F', 100), +(118483, 'Penelope', 1979, 'F', 100), +(118484, 'Phoebe', 1979, 'F', 100), +(118485, 'Rosalba', 1979, 'F', 100), +(118486, 'Roxana', 1979, 'F', 100), +(118487, 'Michael', 1979, 'M', 67728), +(118488, 'Christopher', 1979, 'M', 50676), +(118489, 'Jason', 1979, 'M', 50393), +(118490, 'David', 1979, 'M', 42069), +(118491, 'James', 1979, 'M', 39371), +(118492, 'Matthew', 1979, 'M', 35658), +(118493, 'John', 1979, 'M', 35434), +(118494, 'Robert', 1979, 'M', 34025), +(118495, 'Joshua', 1979, 'M', 31133), +(118496, 'Brian', 1979, 'M', 28667), +(118497, 'Joseph', 1979, 'M', 28665), +(118498, 'Daniel', 1979, 'M', 28521), +(118499, 'William', 1979, 'M', 24694), +(118500, 'Ryan', 1979, 'M', 23212), +(118501, 'Nicholas', 1979, 'M', 21342), +(118502, 'Jeremy', 1979, 'M', 21010), +(118503, 'Eric', 1979, 'M', 20272), +(118504, 'Timothy', 1979, 'M', 19078), +(118505, 'Kevin', 1979, 'M', 18737), +(118506, 'Andrew', 1979, 'M', 18628), +(118507, 'Anthony', 1979, 'M', 17529), +(118508, 'Justin', 1979, 'M', 17400), +(118509, 'Adam', 1979, 'M', 17066), +(118510, 'Jeffrey', 1979, 'M', 16874), +(118511, 'Richard', 1979, 'M', 16723), +(118512, 'Thomas', 1979, 'M', 16475), +(118513, 'Steven', 1979, 'M', 16329), +(118514, 'Charles', 1979, 'M', 14828), +(118515, 'Scott', 1979, 'M', 14466), +(118516, 'Mark', 1979, 'M', 14391), +(118517, 'Jonathan', 1979, 'M', 14333), +(118518, 'Aaron', 1979, 'M', 13074), +(118519, 'Benjamin', 1979, 'M', 12516), +(118520, 'Paul', 1979, 'M', 11644), +(118521, 'Brandon', 1979, 'M', 11308), +(118522, 'Travis', 1979, 'M', 11049), +(118523, 'Nathan', 1979, 'M', 10747), +(118524, 'Chad', 1979, 'M', 10155), +(118525, 'Patrick', 1979, 'M', 9987), +(118526, 'Stephen', 1979, 'M', 9899), +(118527, 'Kenneth', 1979, 'M', 9243), +(118528, 'Gregory', 1979, 'M', 9116), +(118529, 'Shawn', 1979, 'M', 7916), +(118530, 'Jose', 1979, 'M', 7838), +(118531, 'Jacob', 1979, 'M', 7548), +(118532, 'Bryan', 1979, 'M', 7448), +(118533, 'Bradley', 1979, 'M', 6929), +(118534, 'Edward', 1979, 'M', 6878), +(118535, 'Sean', 1979, 'M', 6862), +(118536, 'Jesse', 1979, 'M', 6687), +(118537, 'Donald', 1979, 'M', 6513), +(118538, 'Keith', 1979, 'M', 6192), +(118539, 'Peter', 1979, 'M', 6076), +(118540, 'Ronald', 1979, 'M', 5700), +(118541, 'Samuel', 1979, 'M', 5683), +(118542, 'Kyle', 1979, 'M', 5452), +(118543, 'George', 1979, 'M', 5254), +(118544, 'Douglas', 1979, 'M', 5171), +(118545, 'Gary', 1979, 'M', 5039), +(118546, 'Todd', 1979, 'M', 4987), +(118547, 'Juan', 1979, 'M', 4939), +(118548, 'Dustin', 1979, 'M', 4899), +(118549, 'Corey', 1979, 'M', 4738), +(118550, 'Shaun', 1979, 'M', 4736), +(118551, 'Jared', 1979, 'M', 4668), +(118552, 'Erik', 1979, 'M', 4637), +(118553, 'Shane', 1979, 'M', 4480), +(118554, 'Phillip', 1979, 'M', 4425), +(118555, 'Larry', 1979, 'M', 4393), +(118556, 'Raymond', 1979, 'M', 4339), +(118557, 'Joel', 1979, 'M', 4212), +(118558, 'Derek', 1979, 'M', 4203), +(118559, 'Carlos', 1979, 'M', 4164), +(118560, 'Zachary', 1979, 'M', 4158), +(118561, 'Dennis', 1979, 'M', 4082), +(118562, 'Marcus', 1979, 'M', 4047), +(118563, 'Craig', 1979, 'M', 4026), +(118564, 'Frank', 1979, 'M', 3930), +(118565, 'Antonio', 1979, 'M', 3799), +(118566, 'Derrick', 1979, 'M', 3728), +(118567, 'Jeremiah', 1979, 'M', 3720), +(118568, 'Cory', 1979, 'M', 3591), +(118569, 'Philip', 1979, 'M', 3463), +(118570, 'Brent', 1979, 'M', 3462), +(118571, 'Jerry', 1979, 'M', 3442), +(118572, 'Randy', 1979, 'M', 3416), +(118573, 'Jeffery', 1979, 'M', 3355), +(118574, 'Jamie', 1979, 'M', 3238), +(118575, 'Gabriel', 1979, 'M', 3236), +(118576, 'Wesley', 1979, 'M', 3230), +(118577, 'Curtis', 1979, 'M', 3204), +(118578, 'Russell', 1979, 'M', 3132), +(118579, 'Casey', 1979, 'M', 3087), +(118580, 'Alexander', 1979, 'M', 3061), +(118581, 'Nathaniel', 1979, 'M', 3041), +(118582, 'Terry', 1979, 'M', 3039), +(118583, 'Brett', 1979, 'M', 3000), +(118584, 'Billy', 1979, 'M', 2999), +(118585, 'Troy', 1979, 'M', 2961), +(118586, 'Carl', 1979, 'M', 2900), +(118587, 'Seth', 1979, 'M', 2840), +(118588, 'Luis', 1979, 'M', 2754), +(118589, 'Mario', 1979, 'M', 2703), +(118590, 'Tony', 1979, 'M', 2644), +(118591, 'Victor', 1979, 'M', 2637), +(118592, 'Bobby', 1979, 'M', 2586), +(118593, 'Ian', 1979, 'M', 2554), +(118594, 'Lucas', 1979, 'M', 2542), +(118595, 'Vincent', 1979, 'M', 2518), +(118596, 'Luke', 1979, 'M', 2472), +(118597, 'Johnny', 1979, 'M', 2446), +(118598, 'Adrian', 1979, 'M', 2364), +(118599, 'Jesus', 1979, 'M', 2362), +(118600, 'Kristopher', 1979, 'M', 2352), +(118601, 'Brad', 1979, 'M', 2336), +(118602, 'Alan', 1979, 'M', 2327), +(118603, 'Jon', 1979, 'M', 2301), +(118604, 'Rodney', 1979, 'M', 2300), +(118605, 'Christian', 1979, 'M', 2268), +(118606, 'Marc', 1979, 'M', 2267), +(118607, 'Danny', 1979, 'M', 2261), +(118608, 'Lawrence', 1979, 'M', 2259), +(118609, 'Jimmy', 1979, 'M', 2234), +(118610, 'Ricky', 1979, 'M', 2226), +(118611, 'Willie', 1979, 'M', 2154), +(118612, 'Jay', 1979, 'M', 2150), +(118613, 'Micheal', 1979, 'M', 2136), +(118614, 'Walter', 1979, 'M', 2119), +(118615, 'Lee', 1979, 'M', 2080), +(118616, 'Ricardo', 1979, 'M', 2075), +(118617, 'Tyler', 1979, 'M', 2045), +(118618, 'Roger', 1979, 'M', 2026), +(118619, 'Martin', 1979, 'M', 2018), +(118620, 'Jorge', 1979, 'M', 2017), +(118621, 'Randall', 1979, 'M', 2015), +(118622, 'Joe', 1979, 'M', 1964), +(118623, 'Miguel', 1979, 'M', 1959), +(118624, 'Henry', 1979, 'M', 1943), +(118625, 'Allen', 1979, 'M', 1942), +(118626, 'Manuel', 1979, 'M', 1909), +(118627, 'Andre', 1979, 'M', 1882), +(118628, 'Lance', 1979, 'M', 1871), +(118629, 'Gerald', 1979, 'M', 1865), +(118630, 'Arthur', 1979, 'M', 1863), +(118631, 'Albert', 1979, 'M', 1858), +(118632, 'Clinton', 1979, 'M', 1855), +(118633, 'Cody', 1979, 'M', 1853), +(118634, 'Louis', 1979, 'M', 1838), +(118635, 'Wayne', 1979, 'M', 1832), +(118636, 'Roy', 1979, 'M', 1752), +(118637, 'Isaac', 1979, 'M', 1734), +(118638, 'Bruce', 1979, 'M', 1713), +(118639, 'Trevor', 1979, 'M', 1700), +(118640, 'Francisco', 1979, 'M', 1693), +(118641, 'Roberto', 1979, 'M', 1657), +(118642, 'Reginald', 1979, 'M', 1656), +(118643, 'Alex', 1979, 'M', 1651), +(118644, 'Shannon', 1979, 'M', 1640), +(118645, 'Frederick', 1979, 'M', 1636), +(118646, 'Maurice', 1979, 'M', 1591), +(118647, 'Jack', 1979, 'M', 1586), +(118648, 'Darrell', 1979, 'M', 1527), +(118649, 'Ronnie', 1979, 'M', 1520), +(118650, 'Darren', 1979, 'M', 1505), +(118651, 'Neil', 1979, 'M', 1487), +(118652, 'Damon', 1979, 'M', 1447), +(118653, 'Hector', 1979, 'M', 1422), +(118654, 'Jordan', 1979, 'M', 1406), +(118655, 'Evan', 1979, 'M', 1405), +(118656, 'Barry', 1979, 'M', 1401), +(118657, 'Ernest', 1979, 'M', 1400), +(118658, 'Ruben', 1979, 'M', 1397), +(118659, 'Omar', 1979, 'M', 1378), +(118660, 'Mitchell', 1979, 'M', 1369), +(118661, 'Eddie', 1979, 'M', 1364), +(118662, 'Tyrone', 1979, 'M', 1364), +(118663, 'Jerome', 1979, 'M', 1360), +(118664, 'Jaime', 1979, 'M', 1357), +(118665, 'Terrance', 1979, 'M', 1348), +(118666, 'Jermaine', 1979, 'M', 1339), +(118667, 'Calvin', 1979, 'M', 1337), +(118668, 'Eugene', 1979, 'M', 1331), +(118669, 'Damien', 1979, 'M', 1320), +(118670, 'Oscar', 1979, 'M', 1312), +(118671, 'Angel', 1979, 'M', 1307), +(118672, 'Edwin', 1979, 'M', 1283), +(118673, 'Dale', 1979, 'M', 1280), +(118674, 'Tommy', 1979, 'M', 1277), +(118675, 'Chris', 1979, 'M', 1265), +(118676, 'Leonard', 1979, 'M', 1264), +(118677, 'Geoffrey', 1979, 'M', 1262), +(118678, 'Mathew', 1979, 'M', 1257), +(118679, 'Steve', 1979, 'M', 1256), +(118680, 'Kurt', 1979, 'M', 1250), +(118681, 'Harold', 1979, 'M', 1248), +(118682, 'Marvin', 1979, 'M', 1244), +(118683, 'Alejandro', 1979, 'M', 1238), +(118684, 'Theodore', 1979, 'M', 1236), +(118685, 'Clayton', 1979, 'M', 1209), +(118686, 'Garrett', 1979, 'M', 1207), +(118687, 'Kelly', 1979, 'M', 1207), +(118688, 'Terrence', 1979, 'M', 1192), +(118689, 'Dwayne', 1979, 'M', 1167), +(118690, 'Melvin', 1979, 'M', 1159), +(118691, 'Micah', 1979, 'M', 1144), +(118692, 'Ramon', 1979, 'M', 1142), +(118693, 'Colin', 1979, 'M', 1141), +(118694, 'Javier', 1979, 'M', 1140), +(118695, 'Johnathan', 1979, 'M', 1140), +(118696, 'Cameron', 1979, 'M', 1135), +(118697, 'Fernando', 1979, 'M', 1131), +(118698, 'Glenn', 1979, 'M', 1117), +(118699, 'Raul', 1979, 'M', 1116), +(118700, 'Pedro', 1979, 'M', 1098), +(118701, 'Joey', 1979, 'M', 1095), +(118702, 'Ralph', 1979, 'M', 1079), +(118703, 'Clint', 1979, 'M', 1077), +(118704, 'Stanley', 1979, 'M', 1065), +(118705, 'Clifford', 1979, 'M', 1046), +(118706, 'Jarrod', 1979, 'M', 1046), +(118707, 'Dominic', 1979, 'M', 1031), +(118708, 'Rafael', 1979, 'M', 1025), +(118709, 'Jessie', 1979, 'M', 1023), +(118710, 'Jonathon', 1979, 'M', 1019), +(118711, 'Andy', 1979, 'M', 1011), +(118712, 'Grant', 1979, 'M', 1010), +(118713, 'Austin', 1979, 'M', 1000), +(118714, 'Ross', 1979, 'M', 1000), +(118715, 'Heath', 1979, 'M', 998), +(118716, 'Brendan', 1979, 'M', 991), +(118717, 'Armando', 1979, 'M', 975), +(118718, 'Eduardo', 1979, 'M', 967), +(118719, 'Levi', 1979, 'M', 963), +(118720, 'Karl', 1979, 'M', 959), +(118721, 'Marco', 1979, 'M', 953), +(118722, 'Devin', 1979, 'M', 938), +(118723, 'Francis', 1979, 'M', 931), +(118724, 'Howard', 1979, 'M', 929), +(118725, 'Harry', 1979, 'M', 914), +(118726, 'Noah', 1979, 'M', 914), +(118727, 'Clarence', 1979, 'M', 912), +(118728, 'Leon', 1979, 'M', 907), +(118729, 'Nicolas', 1979, 'M', 905), +(118730, 'Erick', 1979, 'M', 902), +(118731, 'Earl', 1979, 'M', 893), +(118732, 'Daryl', 1979, 'M', 871), +(118733, 'Caleb', 1979, 'M', 859), +(118734, 'Franklin', 1979, 'M', 858), +(118735, 'Byron', 1979, 'M', 855), +(118736, 'Spencer', 1979, 'M', 850), +(118737, 'Dean', 1979, 'M', 846), +(118738, 'Sergio', 1979, 'M', 835), +(118739, 'Alfred', 1979, 'M', 834), +(118740, 'Duane', 1979, 'M', 829), +(118741, 'Cedric', 1979, 'M', 828), +(118742, 'Alberto', 1979, 'M', 827), +(118743, 'Ray', 1979, 'M', 825), +(118744, 'Julio', 1979, 'M', 824), +(118745, 'Warren', 1979, 'M', 817), +(118746, 'Alvin', 1979, 'M', 816), +(118747, 'Kirk', 1979, 'M', 806), +(118748, 'Edgar', 1979, 'M', 804), +(118749, 'Ivan', 1979, 'M', 803), +(118750, 'Tyson', 1979, 'M', 801), +(118751, 'Courtney', 1979, 'M', 800), +(118752, 'Clifton', 1979, 'M', 783), +(118753, 'Gilbert', 1979, 'M', 778), +(118754, 'Antoine', 1979, 'M', 768), +(118755, 'Wade', 1979, 'M', 765), +(118756, 'Cesar', 1979, 'M', 763), +(118757, 'Bernard', 1979, 'M', 759), +(118758, 'Darryl', 1979, 'M', 759), +(118759, 'Marshall', 1979, 'M', 758), +(118760, 'Alfredo', 1979, 'M', 748), +(118761, 'Roderick', 1979, 'M', 748), +(118762, 'Blake', 1979, 'M', 744), +(118763, 'Abraham', 1979, 'M', 735), +(118764, 'Demetrius', 1979, 'M', 735), +(118765, 'Lonnie', 1979, 'M', 735), +(118766, 'Jody', 1979, 'M', 730), +(118767, 'Leroy', 1979, 'M', 729), +(118768, 'Rene', 1979, 'M', 721), +(118769, 'Ethan', 1979, 'M', 714), +(118770, 'Jayson', 1979, 'M', 712), +(118771, 'Enrique', 1979, 'M', 711), +(118772, 'Brock', 1979, 'M', 707), +(118773, 'Lewis', 1979, 'M', 699), +(118774, 'Charlie', 1979, 'M', 697), +(118775, 'Elijah', 1979, 'M', 697), +(118776, 'Gerardo', 1979, 'M', 697), +(118777, 'Norman', 1979, 'M', 696), +(118778, 'Orlando', 1979, 'M', 695), +(118779, 'Arturo', 1979, 'M', 691), +(118780, 'Preston', 1979, 'M', 691), +(118781, 'Israel', 1979, 'M', 687), +(118782, 'Damian', 1979, 'M', 677), +(118783, 'Nelson', 1979, 'M', 672), +(118784, 'Beau', 1979, 'M', 666), +(118785, 'Toby', 1979, 'M', 666), +(118786, 'Kelvin', 1979, 'M', 664), +(118787, 'Julian', 1979, 'M', 663), +(118788, 'Rocky', 1979, 'M', 656), +(118789, 'Don', 1979, 'M', 654), +(118790, 'Fredrick', 1979, 'M', 647), +(118791, 'Dylan', 1979, 'M', 637), +(118792, 'Andres', 1979, 'M', 636), +(118793, 'Neal', 1979, 'M', 636), +(118794, 'Vernon', 1979, 'M', 634), +(118795, 'Salvador', 1979, 'M', 629), +(118796, 'Trent', 1979, 'M', 629), +(118797, 'Dana', 1979, 'M', 627), +(118798, 'Drew', 1979, 'M', 622), +(118799, 'Herbert', 1979, 'M', 618), +(118800, 'Bradford', 1979, 'M', 615), +(118801, 'Fred', 1979, 'M', 612), +(118802, 'Dallas', 1979, 'M', 610), +(118803, 'Nickolas', 1979, 'M', 606), +(118804, 'Terrell', 1979, 'M', 592), +(118805, 'Marlon', 1979, 'M', 590), +(118806, 'Glen', 1979, 'M', 587), +(118807, 'Ashley', 1979, 'M', 586), +(118808, 'Quincy', 1979, 'M', 584), +(118809, 'Donnie', 1979, 'M', 580), +(118810, 'Bryant', 1979, 'M', 575), +(118811, 'Lamar', 1979, 'M', 575), +(118812, 'Greg', 1979, 'M', 570), +(118813, 'Stuart', 1979, 'M', 569), +(118814, 'Ernesto', 1979, 'M', 555), +(118815, 'Lloyd', 1979, 'M', 553), +(118816, 'Chadwick', 1979, 'M', 550), +(118817, 'Jeff', 1979, 'M', 550), +(118818, 'Ben', 1979, 'M', 549), +(118819, 'Kendrick', 1979, 'M', 549), +(118820, 'Angelo', 1979, 'M', 548), +(118821, 'Dwight', 1979, 'M', 544), +(118822, 'Rudy', 1979, 'M', 542), +(118823, 'Felix', 1979, 'M', 541), +(118824, 'Bryce', 1979, 'M', 538), +(118825, 'Marcos', 1979, 'M', 533), +(118826, 'Josh', 1979, 'M', 531), +(118827, 'Leslie', 1979, 'M', 530), +(118828, 'Allan', 1979, 'M', 528), +(118829, 'Jamal', 1979, 'M', 527), +(118830, 'Rickey', 1979, 'M', 525), +(118831, 'Lorenzo', 1979, 'M', 523), +(118832, 'Lamont', 1979, 'M', 520), +(118833, 'Rusty', 1979, 'M', 520), +(118834, 'Scotty', 1979, 'M', 516), +(118835, 'Gordon', 1979, 'M', 502), +(118836, 'Morgan', 1979, 'M', 502), +(118837, 'Darin', 1979, 'M', 500), +(118838, 'Robin', 1979, 'M', 500), +(118839, 'Eli', 1979, 'M', 497), +(118840, 'Rick', 1979, 'M', 496), +(118841, 'Darnell', 1979, 'M', 495), +(118842, 'Jake', 1979, 'M', 495), +(118843, 'Kenny', 1979, 'M', 495), +(118844, 'Noel', 1979, 'M', 492), +(118845, 'Bret', 1979, 'M', 491), +(118846, 'Derick', 1979, 'M', 490), +(118847, 'Gene', 1979, 'M', 489), +(118848, 'Leo', 1979, 'M', 483), +(118849, 'Kent', 1979, 'M', 482), +(118850, 'Simon', 1979, 'M', 482), +(118851, 'Quentin', 1979, 'M', 480), +(118852, 'Brady', 1979, 'M', 479), +(118853, 'Carlton', 1979, 'M', 470), +(118854, 'Freddie', 1979, 'M', 470), +(118855, 'Julius', 1979, 'M', 469), +(118856, 'Logan', 1979, 'M', 467), +(118857, 'Roland', 1979, 'M', 465), +(118858, 'Guy', 1979, 'M', 464), +(118859, 'Darius', 1979, 'M', 462), +(118860, 'Kerry', 1979, 'M', 462), +(118861, 'Max', 1979, 'M', 461), +(118862, 'Johnnie', 1979, 'M', 455), +(118863, 'Rolando', 1979, 'M', 455), +(118864, 'Perry', 1979, 'M', 454), +(118865, 'Tracy', 1979, 'M', 450), +(118866, 'Floyd', 1979, 'M', 448), +(118867, 'Taylor', 1979, 'M', 448), +(118868, 'Pablo', 1979, 'M', 445), +(118869, 'Rodolfo', 1979, 'M', 443), +(118870, 'Desmond', 1979, 'M', 442), +(118871, 'Alfonso', 1979, 'M', 441), +(118872, 'Mike', 1979, 'M', 439), +(118873, 'Dewayne', 1979, 'M', 433), +(118874, 'Jimmie', 1979, 'M', 431), +(118875, 'Abel', 1979, 'M', 430), +(118876, 'Lester', 1979, 'M', 422), +(118877, 'Trenton', 1979, 'M', 420), +(118878, 'Ismael', 1979, 'M', 419), +(118879, 'Jackie', 1979, 'M', 418), +(118880, 'Devon', 1979, 'M', 409), +(118881, 'Herman', 1979, 'M', 409), +(118882, 'Oliver', 1979, 'M', 408), +(118883, 'Frankie', 1979, 'M', 400), +(118884, 'Cornelius', 1979, 'M', 399), +(118885, 'Antwan', 1979, 'M', 396), +(118886, 'Dante', 1979, 'M', 393), +(118887, 'Guillermo', 1979, 'M', 393), +(118888, 'Landon', 1979, 'M', 393), +(118889, 'Jonah', 1979, 'M', 391), +(118890, 'Jamar', 1979, 'M', 385), +(118891, 'Terence', 1979, 'M', 380), +(118892, 'Loren', 1979, 'M', 379), +(118893, 'Sam', 1979, 'M', 378), +(118894, 'Rogelio', 1979, 'M', 377), +(118895, 'Milton', 1979, 'M', 375), +(118896, 'Elias', 1979, 'M', 374), +(118897, 'Zachariah', 1979, 'M', 373), +(118898, 'Nick', 1979, 'M', 372), +(118899, 'Owen', 1979, 'M', 371), +(118900, 'Jim', 1979, 'M', 370), +(118901, 'Felipe', 1979, 'M', 368), +(118902, 'Graham', 1979, 'M', 367), +(118903, 'Fabian', 1979, 'M', 364), +(118904, 'Moses', 1979, 'M', 364), +(118905, 'Ty', 1979, 'M', 362), +(118906, 'Gilberto', 1979, 'M', 361), +(118907, 'Jarrett', 1979, 'M', 359), +(118908, 'Kareem', 1979, 'M', 358), +(118909, 'Kendall', 1979, 'M', 355), +(118910, 'Chester', 1979, 'M', 353), +(118911, 'Ted', 1979, 'M', 353), +(118912, 'Cecil', 1979, 'M', 350), +(118913, 'Randolph', 1979, 'M', 350), +(118914, 'Saul', 1979, 'M', 349), +(118915, 'Rashad', 1979, 'M', 347), +(118916, 'Clay', 1979, 'M', 345), +(118917, 'Salvatore', 1979, 'M', 345), +(118918, 'Kurtis', 1979, 'M', 344), +(118919, 'Damion', 1979, 'M', 341), +(118920, 'Rory', 1979, 'M', 341), +(118921, 'Clyde', 1979, 'M', 340), +(118922, 'Benny', 1979, 'M', 339), +(118923, 'Collin', 1979, 'M', 338), +(118924, 'Dane', 1979, 'M', 337), +(118925, 'Jerrod', 1979, 'M', 337), +(118926, 'Robbie', 1979, 'M', 337), +(118927, 'Myron', 1979, 'M', 336), +(118928, 'Gerard', 1979, 'M', 335), +(118929, 'Alonzo', 1979, 'M', 334), +(118930, 'Gustavo', 1979, 'M', 334), +(118931, 'Marty', 1979, 'M', 333), +(118932, 'Alexis', 1979, 'M', 330), +(118933, 'Dan', 1979, 'M', 330), +(118934, 'Otis', 1979, 'M', 329), +(118935, 'Emmanuel', 1979, 'M', 322), +(118936, 'Garry', 1979, 'M', 322), +(118937, 'Sheldon', 1979, 'M', 322); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(118938, 'Sidney', 1979, 'M', 322), +(118939, 'Edmund', 1979, 'M', 320), +(118940, 'Mason', 1979, 'M', 320), +(118941, 'Dominick', 1979, 'M', 319), +(118942, 'Reggie', 1979, 'M', 318), +(118943, 'Donovan', 1979, 'M', 317), +(118944, 'Everett', 1979, 'M', 317), +(118945, 'Forrest', 1979, 'M', 317), +(118946, 'Jarod', 1979, 'M', 317), +(118947, 'Gavin', 1979, 'M', 316), +(118948, 'Ali', 1979, 'M', 314), +(118949, 'Gregg', 1979, 'M', 314), +(118950, 'Dion', 1979, 'M', 311), +(118951, 'Guadalupe', 1979, 'M', 311), +(118952, 'Miles', 1979, 'M', 311), +(118953, 'Waylon', 1979, 'M', 311), +(118954, 'Aron', 1979, 'M', 309), +(118955, 'Thaddeus', 1979, 'M', 307), +(118956, 'Jess', 1979, 'M', 306), +(118957, 'Hugo', 1979, 'M', 303), +(118958, 'Esteban', 1979, 'M', 302), +(118959, 'Anton', 1979, 'M', 301), +(118960, 'Ramiro', 1979, 'M', 301), +(118961, 'Kory', 1979, 'M', 300), +(118962, 'Colby', 1979, 'M', 299), +(118963, 'Kris', 1979, 'M', 299), +(118964, 'Harvey', 1979, 'M', 297), +(118965, 'Tanner', 1979, 'M', 297), +(118966, 'Elliott', 1979, 'M', 296), +(118967, 'Isaiah', 1979, 'M', 296), +(118968, 'Jarvis', 1979, 'M', 296), +(118969, 'Branden', 1979, 'M', 293), +(118970, 'Sammy', 1979, 'M', 291), +(118971, 'Stephan', 1979, 'M', 291), +(118972, 'Teddy', 1979, 'M', 291), +(118973, 'Malcolm', 1979, 'M', 290), +(118974, 'Moises', 1979, 'M', 290), +(118975, 'Emanuel', 1979, 'M', 288), +(118976, 'Marquis', 1979, 'M', 288), +(118977, 'Sherman', 1979, 'M', 287), +(118978, 'Bryon', 1979, 'M', 285), +(118979, 'Roman', 1979, 'M', 285), +(118980, 'Ahmad', 1979, 'M', 284), +(118981, 'Ira', 1979, 'M', 284), +(118982, 'Ron', 1979, 'M', 282), +(118983, 'Amos', 1979, 'M', 280), +(118984, 'Nathanael', 1979, 'M', 280), +(118985, 'Wendell', 1979, 'M', 280), +(118986, 'Tobias', 1979, 'M', 279), +(118987, 'Reynaldo', 1979, 'M', 278), +(118988, 'Leonardo', 1979, 'M', 277), +(118989, 'Arnold', 1979, 'M', 276), +(118990, 'Elvis', 1979, 'M', 274), +(118991, 'Xavier', 1979, 'M', 274), +(118992, 'Bill', 1979, 'M', 273), +(118993, 'Jamel', 1979, 'M', 273), +(118994, 'Will', 1979, 'M', 273), +(118995, 'Darrin', 1979, 'M', 272), +(118996, 'Timmy', 1979, 'M', 272), +(118997, 'Johnathon', 1979, 'M', 270), +(118998, 'Chance', 1979, 'M', 268), +(118999, 'Claude', 1979, 'M', 268), +(119000, 'Pete', 1979, 'M', 268), +(119001, 'Stewart', 1979, 'M', 267), +(119002, 'Reuben', 1979, 'M', 266), +(119003, 'Donte', 1979, 'M', 265), +(119004, 'Efrain', 1979, 'M', 265), +(119005, 'Erin', 1979, 'M', 265), +(119006, 'Nolan', 1979, 'M', 262), +(119007, 'Tom', 1979, 'M', 262), +(119008, 'Tomas', 1979, 'M', 262), +(119009, 'Quinton', 1979, 'M', 261), +(119010, 'Rex', 1979, 'M', 261), +(119011, 'Jackson', 1979, 'M', 260), +(119012, 'Jerod', 1979, 'M', 260), +(119013, 'Donny', 1979, 'M', 259), +(119014, 'Joaquin', 1979, 'M', 259), +(119015, 'Matt', 1979, 'M', 258), +(119016, 'Noe', 1979, 'M', 258), +(119017, 'Stacy', 1979, 'M', 258), +(119018, 'Joesph', 1979, 'M', 254), +(119019, 'Darrick', 1979, 'M', 253), +(119020, 'Dexter', 1979, 'M', 253), +(119021, 'Josue', 1979, 'M', 251), +(119022, 'Scottie', 1979, 'M', 251), +(119023, 'Curt', 1979, 'M', 250), +(119024, 'Mickey', 1979, 'M', 250), +(119025, 'Bennie', 1979, 'M', 249), +(119026, 'Donnell', 1979, 'M', 249), +(119027, 'Jedediah', 1979, 'M', 249), +(119028, 'Sylvester', 1979, 'M', 249), +(119029, 'Kristofer', 1979, 'M', 247), +(119030, 'Lyle', 1979, 'M', 246), +(119031, 'Earnest', 1979, 'M', 245), +(119032, 'Alton', 1979, 'M', 244), +(119033, 'Harley', 1979, 'M', 244), +(119034, 'Clark', 1979, 'M', 243), +(119035, 'Lionel', 1979, 'M', 243), +(119036, 'Blair', 1979, 'M', 241), +(119037, 'Elliot', 1979, 'M', 241), +(119038, 'Santiago', 1979, 'M', 241), +(119039, 'Wilson', 1979, 'M', 241), +(119040, 'Jovan', 1979, 'M', 240), +(119041, 'Solomon', 1979, 'M', 240), +(119042, 'Jamey', 1979, 'M', 239), +(119043, 'Randal', 1979, 'M', 237), +(119044, 'Virgil', 1979, 'M', 237), +(119045, 'Hugh', 1979, 'M', 236), +(119046, 'Tyree', 1979, 'M', 236), +(119047, 'Luther', 1979, 'M', 235), +(119048, 'Pierre', 1979, 'M', 233), +(119049, 'Willis', 1979, 'M', 233), +(119050, 'Marion', 1979, 'M', 232), +(119051, 'Robby', 1979, 'M', 232), +(119052, 'Kristian', 1979, 'M', 230), +(119053, 'Blaine', 1979, 'M', 229), +(119054, 'Jeromy', 1979, 'M', 229), +(119055, 'Jarred', 1979, 'M', 227), +(119056, 'Deon', 1979, 'M', 226), +(119057, 'Sterling', 1979, 'M', 225), +(119058, 'Darrel', 1979, 'M', 223), +(119059, 'Jeramy', 1979, 'M', 223), +(119060, 'Sonny', 1979, 'M', 221), +(119061, 'Wallace', 1979, 'M', 220), +(119062, 'Dorian', 1979, 'M', 219), +(119063, 'Jed', 1979, 'M', 219), +(119064, 'Jamison', 1979, 'M', 218), +(119065, 'Jeremie', 1979, 'M', 217), +(119066, 'Rodrick', 1979, 'M', 217), +(119067, 'Ariel', 1979, 'M', 216), +(119068, 'Josiah', 1979, 'M', 216), +(119069, 'Morris', 1979, 'M', 216), +(119070, 'Quinn', 1979, 'M', 216), +(119071, 'Bart', 1979, 'M', 215), +(119072, 'Jonas', 1979, 'M', 212), +(119073, 'Kasey', 1979, 'M', 212), +(119074, 'Vicente', 1979, 'M', 212), +(119075, 'Ignacio', 1979, 'M', 211), +(119076, 'Humberto', 1979, 'M', 210), +(119077, 'Deandre', 1979, 'M', 209), +(119078, 'Conrad', 1979, 'M', 208), +(119079, 'Erich', 1979, 'M', 208), +(119080, 'Leland', 1979, 'M', 207), +(119081, 'Avery', 1979, 'M', 206), +(119082, 'Jean', 1979, 'M', 206), +(119083, 'Jennifer', 1979, 'M', 206), +(119084, 'Tory', 1979, 'M', 206), +(119085, 'Emilio', 1979, 'M', 204), +(119086, 'Jasen', 1979, 'M', 204), +(119087, 'Stefan', 1979, 'M', 204), +(119088, 'Bradly', 1979, 'M', 203), +(119089, 'Jamaal', 1979, 'M', 203), +(119090, 'Brant', 1979, 'M', 202), +(119091, 'Brendon', 1979, 'M', 202), +(119092, 'Zachery', 1979, 'M', 202), +(119093, 'Edmond', 1979, 'M', 200), +(119094, 'Rico', 1979, 'M', 200), +(119095, 'Carey', 1979, 'M', 198), +(119096, 'Cary', 1979, 'M', 197), +(119097, 'Hunter', 1979, 'M', 197), +(119098, 'Jerald', 1979, 'M', 195), +(119099, 'Dusty', 1979, 'M', 194), +(119100, 'Hans', 1979, 'M', 193), +(119101, 'Issac', 1979, 'M', 193), +(119102, 'Jeramie', 1979, 'M', 193), +(119103, 'Archie', 1979, 'M', 192), +(119104, 'Wyatt', 1979, 'M', 192), +(119105, 'Aric', 1979, 'M', 191), +(119106, 'Brooks', 1979, 'M', 191), +(119107, 'Demond', 1979, 'M', 191), +(119108, 'Elmer', 1979, 'M', 191), +(119109, 'Rudolph', 1979, 'M', 190), +(119110, 'Roosevelt', 1979, 'M', 189), +(119111, 'Freddy', 1979, 'M', 187), +(119112, 'Jedidiah', 1979, 'M', 187), +(119113, 'Royce', 1979, 'M', 187), +(119114, 'Reid', 1979, 'M', 185), +(119115, 'Rocco', 1979, 'M', 185), +(119116, 'Scot', 1979, 'M', 185), +(119117, 'Aubrey', 1979, 'M', 184), +(119118, 'Brenton', 1979, 'M', 184), +(119119, 'Giovanni', 1979, 'M', 184), +(119120, 'Zane', 1979, 'M', 184), +(119121, 'Agustin', 1979, 'M', 183), +(119122, 'Barrett', 1979, 'M', 183), +(119123, 'Adan', 1979, 'M', 181), +(119124, 'Leif', 1979, 'M', 181), +(119125, 'Benito', 1979, 'M', 177), +(119126, 'Demarcus', 1979, 'M', 177), +(119127, 'Jeremey', 1979, 'M', 177), +(119128, 'Dirk', 1979, 'M', 176), +(119129, 'Jefferson', 1979, 'M', 176), +(119130, 'Nathanial', 1979, 'M', 176), +(119131, 'Levar', 1979, 'M', 175), +(119132, 'Louie', 1979, 'M', 175), +(119133, 'Wilfredo', 1979, 'M', 175), +(119134, 'Johnpaul', 1979, 'M', 174), +(119135, 'Brice', 1979, 'M', 173), +(119136, 'Carlo', 1979, 'M', 173), +(119137, 'Deshawn', 1979, 'M', 173), +(119138, 'Weston', 1979, 'M', 173), +(119139, 'Santos', 1979, 'M', 171), +(119140, 'Stacey', 1979, 'M', 171), +(119141, 'Tristan', 1979, 'M', 171), +(119142, 'Willard', 1979, 'M', 171), +(119143, 'Conor', 1979, 'M', 170), +(119144, 'Tommie', 1979, 'M', 170), +(119145, 'Buddy', 1979, 'M', 168), +(119146, 'Daren', 1979, 'M', 167), +(119147, 'Davin', 1979, 'M', 167), +(119148, 'Ellis', 1979, 'M', 167), +(119149, 'Rodrigo', 1979, 'M', 167), +(119150, 'Ervin', 1979, 'M', 165), +(119151, 'Korey', 1979, 'M', 165), +(119152, 'Nicholaus', 1979, 'M', 165), +(119153, 'Rhett', 1979, 'M', 165), +(119154, 'Delvin', 1979, 'M', 164), +(119155, 'Mauricio', 1979, 'M', 164), +(119156, 'Torrey', 1979, 'M', 164), +(119157, 'Riley', 1979, 'M', 162), +(119158, 'Josef', 1979, 'M', 161), +(119159, 'Van', 1979, 'M', 161), +(119160, 'Vance', 1979, 'M', 161), +(119161, 'Brain', 1979, 'M', 160), +(119162, 'Cole', 1979, 'M', 160), +(119163, 'Rigoberto', 1979, 'M', 160), +(119164, 'Marcel', 1979, 'M', 159), +(119165, 'Antione', 1979, 'M', 158), +(119166, 'Raphael', 1979, 'M', 158), +(119167, 'Wilbert', 1979, 'M', 158), +(119168, 'Ari', 1979, 'M', 157), +(119169, 'Ezra', 1979, 'M', 157), +(119170, 'Chase', 1979, 'M', 155), +(119171, 'Dave', 1979, 'M', 155), +(119172, 'Alvaro', 1979, 'M', 154), +(119173, 'Arron', 1979, 'M', 154), +(119174, 'Horace', 1979, 'M', 154), +(119175, 'Rickie', 1979, 'M', 154), +(119176, 'Jamil', 1979, 'M', 153), +(119177, 'Jasper', 1979, 'M', 153), +(119178, 'Laurence', 1979, 'M', 153), +(119179, 'Winston', 1979, 'M', 153), +(119180, 'Carson', 1979, 'M', 152), +(119181, 'Galen', 1979, 'M', 152), +(119182, 'Chauncey', 1979, 'M', 151), +(119183, 'Jeffry', 1979, 'M', 151), +(119184, 'Shad', 1979, 'M', 151), +(119185, 'Delbert', 1979, 'M', 150), +(119186, 'Mack', 1979, 'M', 150), +(119187, 'Maxwell', 1979, 'M', 150), +(119188, 'Cedrick', 1979, 'M', 149), +(119189, 'Markus', 1979, 'M', 149), +(119190, 'Adolfo', 1979, 'M', 148), +(119191, 'Antwon', 1979, 'M', 148), +(119192, 'Lane', 1979, 'M', 148), +(119193, 'Abram', 1979, 'M', 147), +(119194, 'Demario', 1979, 'M', 147), +(119195, 'Lavar', 1979, 'M', 147), +(119196, 'Malik', 1979, 'M', 147), +(119197, 'Shelton', 1979, 'M', 147), +(119198, 'Stevie', 1979, 'M', 147), +(119199, 'Jace', 1979, 'M', 146), +(119200, 'Marques', 1979, 'M', 146), +(119201, 'Monte', 1979, 'M', 146), +(119202, 'Tim', 1979, 'M', 146), +(119203, 'Domingo', 1979, 'M', 145), +(119204, 'Jaron', 1979, 'M', 145), +(119205, 'Keenan', 1979, 'M', 145), +(119206, 'Nigel', 1979, 'M', 145), +(119207, 'Shayne', 1979, 'M', 145), +(119208, 'Diego', 1979, 'M', 144), +(119209, 'Shelby', 1979, 'M', 144), +(119210, 'Judson', 1979, 'M', 143), +(119211, 'Lynn', 1979, 'M', 143), +(119212, 'Tyron', 1979, 'M', 142), +(119213, 'Daron', 1979, 'M', 141), +(119214, 'Dewey', 1979, 'M', 141), +(119215, 'Reed', 1979, 'M', 141), +(119216, 'Rodger', 1979, 'M', 141), +(119217, 'Tavares', 1979, 'M', 141), +(119218, 'Grady', 1979, 'M', 140), +(119219, 'Kristoffer', 1979, 'M', 140), +(119220, 'Denny', 1979, 'M', 139), +(119221, 'Gino', 1979, 'M', 138), +(119222, 'Heriberto', 1979, 'M', 138), +(119223, 'Leonel', 1979, 'M', 138), +(119224, 'Tremayne', 1979, 'M', 138), +(119225, 'Brennan', 1979, 'M', 137), +(119226, 'Sebastian', 1979, 'M', 137), +(119227, 'Cornell', 1979, 'M', 136), +(119228, 'Elvin', 1979, 'M', 136), +(119229, 'Jamin', 1979, 'M', 136), +(119230, 'Lenny', 1979, 'M', 136), +(119231, 'Broderick', 1979, 'M', 135), +(119232, 'Tyrell', 1979, 'M', 135), +(119233, 'Rufus', 1979, 'M', 134), +(119234, 'Theron', 1979, 'M', 134), +(119235, 'Andrea', 1979, 'M', 133), +(119236, 'Jermey', 1979, 'M', 133), +(119237, 'Mikel', 1979, 'M', 133), +(119238, 'Titus', 1979, 'M', 133), +(119239, 'Davis', 1979, 'M', 132), +(119240, 'Fidel', 1979, 'M', 132), +(119241, 'Jan', 1979, 'M', 132), +(119242, 'Nikolas', 1979, 'M', 132), +(119243, 'Parker', 1979, 'M', 132), +(119244, 'Jerad', 1979, 'M', 131), +(119245, 'Jered', 1979, 'M', 131), +(119246, 'Lowell', 1979, 'M', 131), +(119247, 'Vaughn', 1979, 'M', 131), +(119248, 'Whitney', 1979, 'M', 131), +(119249, 'Michel', 1979, 'M', 130), +(119250, 'Melissa', 1979, 'M', 129), +(119251, 'Abdul', 1979, 'M', 128), +(119252, 'Dameon', 1979, 'M', 128), +(119253, 'Dejuan', 1979, 'M', 128), +(119254, 'Alphonso', 1979, 'M', 127), +(119255, 'Jacques', 1979, 'M', 127), +(119256, 'Marlin', 1979, 'M', 127), +(119257, 'Brannon', 1979, 'M', 126), +(119258, 'Cleveland', 1979, 'M', 126), +(119259, 'Cyrus', 1979, 'M', 126), +(119260, 'Elton', 1979, 'M', 126), +(119261, 'Garret', 1979, 'M', 126), +(119262, 'Hubert', 1979, 'M', 125), +(119263, 'Zebulon', 1979, 'M', 125), +(119264, 'Garth', 1979, 'M', 124), +(119265, 'Dominique', 1979, 'M', 123), +(119266, 'Federico', 1979, 'M', 123), +(119267, 'Kenyon', 1979, 'M', 123), +(119268, 'Ulysses', 1979, 'M', 123), +(119269, 'Ernie', 1979, 'M', 122), +(119270, 'Gregorio', 1979, 'M', 122), +(119271, 'Jevon', 1979, 'M', 122), +(119272, 'Osvaldo', 1979, 'M', 122), +(119273, 'Jerimiah', 1979, 'M', 121), +(119274, 'Vito', 1979, 'M', 121), +(119275, 'Cortney', 1979, 'M', 120), +(119276, 'Denver', 1979, 'M', 120), +(119277, 'Monty', 1979, 'M', 120), +(119278, 'Zackary', 1979, 'M', 120), +(119279, 'Derik', 1979, 'M', 119), +(119280, 'Ezekiel', 1979, 'M', 119), +(119281, 'Lukas', 1979, 'M', 119), +(119282, 'Percy', 1979, 'M', 119), +(119283, 'Bob', 1979, 'M', 118), +(119284, 'Braden', 1979, 'M', 118), +(119285, 'Jereme', 1979, 'M', 118), +(119286, 'Kenyatta', 1979, 'M', 118), +(119287, 'Aldo', 1979, 'M', 117), +(119288, 'Cliff', 1979, 'M', 117), +(119289, 'Hassan', 1979, 'M', 117), +(119290, 'Jameel', 1979, 'M', 117), +(119291, 'Ken', 1979, 'M', 117), +(119292, 'Moshe', 1979, 'M', 117), +(119293, 'Octavio', 1979, 'M', 117), +(119294, 'Raheem', 1979, 'M', 117), +(119295, 'Al', 1979, 'M', 116), +(119296, 'Trey', 1979, 'M', 116), +(119297, 'Amir', 1979, 'M', 115), +(119298, 'Bernardo', 1979, 'M', 115), +(119299, 'Danial', 1979, 'M', 115), +(119300, 'Liam', 1979, 'M', 115), +(119301, 'Bert', 1979, 'M', 114), +(119302, 'Dedrick', 1979, 'M', 114), +(119303, 'Emmett', 1979, 'M', 114), +(119304, 'Jessica', 1979, 'M', 114), +(119305, 'Kim', 1979, 'M', 114), +(119306, 'Laron', 1979, 'M', 114), +(119307, 'Jabari', 1979, 'M', 113), +(119308, 'Deangelo', 1979, 'M', 112), +(119309, 'Myles', 1979, 'M', 112), +(119310, 'Silas', 1979, 'M', 112), +(119311, 'Thad', 1979, 'M', 112), +(119312, 'Amanda', 1979, 'M', 111), +(119313, 'Bennett', 1979, 'M', 111), +(119314, 'Chadrick', 1979, 'M', 111), +(119315, 'Darian', 1979, 'M', 111), +(119316, 'Eloy', 1979, 'M', 111), +(119317, 'Hiram', 1979, 'M', 111), +(119318, 'Seneca', 1979, 'M', 110), +(119319, 'Efren', 1979, 'M', 109), +(119320, 'Mohammad', 1979, 'M', 109), +(119321, 'Denis', 1979, 'M', 108), +(119322, 'Raymundo', 1979, 'M', 108), +(119323, 'Bryson', 1979, 'M', 107), +(119324, 'Kirby', 1979, 'M', 107), +(119325, 'Quintin', 1979, 'M', 107), +(119326, 'Sedrick', 1979, 'M', 107), +(119327, 'Muhammad', 1979, 'M', 106), +(119328, 'Antwain', 1979, 'M', 105), +(119329, 'Gerry', 1979, 'M', 105), +(119330, 'Jade', 1979, 'M', 105), +(119331, 'Randell', 1979, 'M', 105), +(119332, 'Tracey', 1979, 'M', 105), +(119333, 'Wilbur', 1979, 'M', 105), +(119334, 'Dereck', 1979, 'M', 104), +(119335, 'German', 1979, 'M', 104), +(119336, 'Harrison', 1979, 'M', 104), +(119337, 'Lars', 1979, 'M', 104), +(119338, 'Tad', 1979, 'M', 104), +(119339, 'August', 1979, 'M', 103), +(119340, 'Garland', 1979, 'M', 103), +(119341, 'Kip', 1979, 'M', 103), +(119342, 'Kraig', 1979, 'M', 103), +(119343, 'Boyd', 1979, 'M', 102), +(119344, 'Darwin', 1979, 'M', 102), +(119345, 'Judd', 1979, 'M', 102), +(119346, 'Rashawn', 1979, 'M', 102), +(119347, 'Ronny', 1979, 'M', 102), +(119348, 'Wilfred', 1979, 'M', 102), +(119349, 'Adrain', 1979, 'M', 101), +(119350, 'Bo', 1979, 'M', 101), +(119351, 'Donta', 1979, 'M', 101), +(119352, 'Francesco', 1979, 'M', 101), +(119353, 'Irvin', 1979, 'M', 101), +(119354, 'Russel', 1979, 'M', 101), +(119355, 'Sammie', 1979, 'M', 101), +(119356, 'Terrill', 1979, 'M', 101), +(119357, 'Ahmed', 1979, 'M', 100), +(119358, 'Coby', 1979, 'M', 100), +(119359, 'Edwardo', 1979, 'M', 100), +(119360, 'Ramsey', 1979, 'M', 100), +(119361, 'Jennifer', 1980, 'F', 58385), +(119362, 'Amanda', 1980, 'F', 35820), +(119363, 'Jessica', 1980, 'F', 33920), +(119364, 'Melissa', 1980, 'F', 31631), +(119365, 'Sarah', 1980, 'F', 25741), +(119366, 'Heather', 1980, 'F', 19971), +(119367, 'Nicole', 1980, 'F', 19916), +(119368, 'Amy', 1980, 'F', 19832), +(119369, 'Elizabeth', 1980, 'F', 19528), +(119370, 'Michelle', 1980, 'F', 19120), +(119371, 'Kimberly', 1980, 'F', 18497), +(119372, 'Angela', 1980, 'F', 17968), +(119373, 'Stephanie', 1980, 'F', 17840), +(119374, 'Tiffany', 1980, 'F', 16226), +(119375, 'Christina', 1980, 'F', 16136), +(119376, 'Lisa', 1980, 'F', 15660), +(119377, 'Rebecca', 1980, 'F', 15282), +(119378, 'Crystal', 1980, 'F', 14258), +(119379, 'Kelly', 1980, 'F', 13715), +(119380, 'Erin', 1980, 'F', 13434), +(119381, 'Laura', 1980, 'F', 12916), +(119382, 'Amber', 1980, 'F', 12554), +(119383, 'Rachel', 1980, 'F', 11624), +(119384, 'Jamie', 1980, 'F', 11523), +(119385, 'Mary', 1980, 'F', 11473), +(119386, 'April', 1980, 'F', 11470), +(119387, 'Sara', 1980, 'F', 11148), +(119388, 'Andrea', 1980, 'F', 10450), +(119389, 'Shannon', 1980, 'F', 9668), +(119390, 'Megan', 1980, 'F', 9137), +(119391, 'Emily', 1980, 'F', 9005), +(119392, 'Julie', 1980, 'F', 8909), +(119393, 'Danielle', 1980, 'F', 8844), +(119394, 'Erica', 1980, 'F', 8758), +(119395, 'Katherine', 1980, 'F', 8017), +(119396, 'Maria', 1980, 'F', 7856), +(119397, 'Kristin', 1980, 'F', 7701), +(119398, 'Lauren', 1980, 'F', 7474), +(119399, 'Kristen', 1980, 'F', 7318), +(119400, 'Ashley', 1980, 'F', 7295), +(119401, 'Christine', 1980, 'F', 7085), +(119402, 'Brandy', 1980, 'F', 6410), +(119403, 'Tara', 1980, 'F', 6282), +(119404, 'Katie', 1980, 'F', 6135), +(119405, 'Monica', 1980, 'F', 6033), +(119406, 'Carrie', 1980, 'F', 5763), +(119407, 'Alicia', 1980, 'F', 5750), +(119408, 'Courtney', 1980, 'F', 5615), +(119409, 'Misty', 1980, 'F', 5542), +(119410, 'Kathryn', 1980, 'F', 5529), +(119411, 'Patricia', 1980, 'F', 5309), +(119412, 'Holly', 1980, 'F', 5282), +(119413, 'Stacy', 1980, 'F', 5057), +(119414, 'Karen', 1980, 'F', 5054), +(119415, 'Anna', 1980, 'F', 5030), +(119416, 'Tracy', 1980, 'F', 4969), +(119417, 'Brooke', 1980, 'F', 4953), +(119418, 'Samantha', 1980, 'F', 4919), +(119419, 'Allison', 1980, 'F', 4868), +(119420, 'Melanie', 1980, 'F', 4844), +(119421, 'Leslie', 1980, 'F', 4777), +(119422, 'Brandi', 1980, 'F', 4704), +(119423, 'Susan', 1980, 'F', 4702), +(119424, 'Cynthia', 1980, 'F', 4699), +(119425, 'Natalie', 1980, 'F', 4644), +(119426, 'Jill', 1980, 'F', 4556), +(119427, 'Dawn', 1980, 'F', 4478), +(119428, 'Dana', 1980, 'F', 4438), +(119429, 'Vanessa', 1980, 'F', 4427), +(119430, 'Veronica', 1980, 'F', 4379), +(119431, 'Lindsay', 1980, 'F', 4354), +(119432, 'Tina', 1980, 'F', 4257), +(119433, 'Kristina', 1980, 'F', 4226), +(119434, 'Stacey', 1980, 'F', 4223), +(119435, 'Wendy', 1980, 'F', 4142), +(119436, 'Lori', 1980, 'F', 4084), +(119437, 'Catherine', 1980, 'F', 4081), +(119438, 'Kristy', 1980, 'F', 4059), +(119439, 'Heidi', 1980, 'F', 4026), +(119440, 'Sandra', 1980, 'F', 3995), +(119441, 'Jacqueline', 1980, 'F', 3879), +(119442, 'Kathleen', 1980, 'F', 3860), +(119443, 'Christy', 1980, 'F', 3674), +(119444, 'Leah', 1980, 'F', 3638), +(119445, 'Valerie', 1980, 'F', 3612), +(119446, 'Pamela', 1980, 'F', 3530), +(119447, 'Erika', 1980, 'F', 3515), +(119448, 'Tanya', 1980, 'F', 3436), +(119449, 'Natasha', 1980, 'F', 3427), +(119450, 'Katrina', 1980, 'F', 3397), +(119451, 'Lindsey', 1980, 'F', 3388), +(119452, 'Melinda', 1980, 'F', 3201), +(119453, 'Monique', 1980, 'F', 3162), +(119454, 'Denise', 1980, 'F', 3147), +(119455, 'Teresa', 1980, 'F', 3146), +(119456, 'Tammy', 1980, 'F', 3133), +(119457, 'Tonya', 1980, 'F', 3079), +(119458, 'Julia', 1980, 'F', 3068), +(119459, 'Candice', 1980, 'F', 3010), +(119460, 'Gina', 1980, 'F', 2988), +(119461, 'Alison', 1980, 'F', 2980), +(119462, 'Nichole', 1980, 'F', 2938), +(119463, 'Theresa', 1980, 'F', 2926), +(119464, 'Victoria', 1980, 'F', 2923), +(119465, 'Margaret', 1980, 'F', 2860), +(119466, 'Beth', 1980, 'F', 2848), +(119467, 'Renee', 1980, 'F', 2844), +(119468, 'Tamara', 1980, 'F', 2809), +(119469, 'Robin', 1980, 'F', 2806), +(119470, 'Linda', 1980, 'F', 2805), +(119471, 'Nancy', 1980, 'F', 2804), +(119472, 'Anne', 1980, 'F', 2779), +(119473, 'Sabrina', 1980, 'F', 2775), +(119474, 'Meghan', 1980, 'F', 2692), +(119475, 'Brenda', 1980, 'F', 2646), +(119476, 'Jaime', 1980, 'F', 2645), +(119477, 'Jenny', 1980, 'F', 2645), +(119478, 'Diana', 1980, 'F', 2616), +(119479, 'Cheryl', 1980, 'F', 2609), +(119480, 'Barbara', 1980, 'F', 2575), +(119481, 'Krista', 1980, 'F', 2531), +(119482, 'Kristi', 1980, 'F', 2526), +(119483, 'Latoya', 1980, 'F', 2503), +(119484, 'Bethany', 1980, 'F', 2499), +(119485, 'Michele', 1980, 'F', 2488), +(119486, 'Kelli', 1980, 'F', 2486), +(119487, 'Kara', 1980, 'F', 2445), +(119488, 'Miranda', 1980, 'F', 2415), +(119489, 'Sharon', 1980, 'F', 2382), +(119490, 'Tasha', 1980, 'F', 2266), +(119491, 'Mindy', 1980, 'F', 2262), +(119492, 'Mandy', 1980, 'F', 2230), +(119493, 'Molly', 1980, 'F', 2202), +(119494, 'Candace', 1980, 'F', 2187), +(119495, 'Casey', 1980, 'F', 2172), +(119496, 'Ann', 1980, 'F', 2171), +(119497, 'Colleen', 1980, 'F', 2124), +(119498, 'Cassandra', 1980, 'F', 2111), +(119499, 'Suzanne', 1980, 'F', 2103), +(119500, 'Meredith', 1980, 'F', 2070), +(119501, 'Latasha', 1980, 'F', 2058), +(119502, 'Rachael', 1980, 'F', 2047), +(119503, 'Regina', 1980, 'F', 2045), +(119504, 'Donna', 1980, 'F', 2010), +(119505, 'Marie', 1980, 'F', 1945), +(119506, 'Deborah', 1980, 'F', 1937), +(119507, 'Carolyn', 1980, 'F', 1929), +(119508, 'Nina', 1980, 'F', 1888), +(119509, 'Deanna', 1980, 'F', 1868), +(119510, 'Cindy', 1980, 'F', 1867), +(119511, 'Alisha', 1980, 'F', 1853), +(119512, 'Bridget', 1980, 'F', 1831), +(119513, 'Carla', 1980, 'F', 1830), +(119514, 'Kendra', 1980, 'F', 1815), +(119515, 'Desiree', 1980, 'F', 1790), +(119516, 'Tabitha', 1980, 'F', 1788), +(119517, 'Yolanda', 1980, 'F', 1777), +(119518, 'Kari', 1980, 'F', 1768), +(119519, 'Summer', 1980, 'F', 1754), +(119520, 'Virginia', 1980, 'F', 1737), +(119521, 'Trisha', 1980, 'F', 1732), +(119522, 'Rebekah', 1980, 'F', 1729), +(119523, 'Joanna', 1980, 'F', 1725), +(119524, 'Felicia', 1980, 'F', 1722), +(119525, 'Joy', 1980, 'F', 1716), +(119526, 'Bonnie', 1980, 'F', 1711), +(119527, 'Jodi', 1980, 'F', 1700), +(119528, 'Jaclyn', 1980, 'F', 1694), +(119529, 'Angel', 1980, 'F', 1691), +(119530, 'Adrienne', 1980, 'F', 1670), +(119531, 'Jillian', 1980, 'F', 1649), +(119532, 'Janet', 1980, 'F', 1610), +(119533, 'Paula', 1980, 'F', 1598), +(119534, 'Aimee', 1980, 'F', 1590), +(119535, 'Ebony', 1980, 'F', 1580), +(119536, 'Abigail', 1980, 'F', 1576), +(119537, 'Debra', 1980, 'F', 1558), +(119538, 'Martha', 1980, 'F', 1553), +(119539, 'Rhonda', 1980, 'F', 1534), +(119540, 'Autumn', 1980, 'F', 1530), +(119541, 'Shanna', 1980, 'F', 1521), +(119542, 'Robyn', 1980, 'F', 1501), +(119543, 'Carmen', 1980, 'F', 1458), +(119544, 'Angelica', 1980, 'F', 1453), +(119545, 'Shelly', 1980, 'F', 1452), +(119546, 'Toni', 1980, 'F', 1452), +(119547, 'Priscilla', 1980, 'F', 1432), +(119548, 'Shawna', 1980, 'F', 1431), +(119549, 'Kristine', 1980, 'F', 1424), +(119550, 'Brittany', 1980, 'F', 1406), +(119551, 'Claudia', 1980, 'F', 1404), +(119552, 'Sherry', 1980, 'F', 1404), +(119553, 'Marissa', 1980, 'F', 1403), +(119554, 'Janelle', 1980, 'F', 1395), +(119555, 'Laurie', 1980, 'F', 1338), +(119556, 'Stefanie', 1980, 'F', 1334), +(119557, 'Kate', 1980, 'F', 1327), +(119558, 'Ana', 1980, 'F', 1323), +(119559, 'Melody', 1980, 'F', 1317), +(119560, 'Caroline', 1980, 'F', 1314), +(119561, 'Diane', 1980, 'F', 1286), +(119562, 'Tamika', 1980, 'F', 1278), +(119563, 'Cara', 1980, 'F', 1276), +(119564, 'Alexis', 1980, 'F', 1268), +(119565, 'Rosa', 1980, 'F', 1267), +(119566, 'Kellie', 1980, 'F', 1261), +(119567, 'Tracey', 1980, 'F', 1255), +(119568, 'Ruth', 1980, 'F', 1254), +(119569, 'Sonia', 1980, 'F', 1252), +(119570, 'Naomi', 1980, 'F', 1249), +(119571, 'Cristina', 1980, 'F', 1245), +(119572, 'Audrey', 1980, 'F', 1222), +(119573, 'Hannah', 1980, 'F', 1221), +(119574, 'Sheila', 1980, 'F', 1212), +(119575, 'Sonya', 1980, 'F', 1205), +(119576, 'Jasmine', 1980, 'F', 1187), +(119577, 'Alyssa', 1980, 'F', 1179), +(119578, 'Leigh', 1980, 'F', 1177), +(119579, 'Whitney', 1980, 'F', 1169), +(119580, 'Krystal', 1980, 'F', 1163), +(119581, 'Yvonne', 1980, 'F', 1157), +(119582, 'Stacie', 1980, 'F', 1154), +(119583, 'Anita', 1980, 'F', 1152), +(119584, 'Shauna', 1980, 'F', 1142), +(119585, 'Shelley', 1980, 'F', 1131), +(119586, 'Traci', 1980, 'F', 1131), +(119587, 'Rose', 1980, 'F', 1129), +(119588, 'Kerri', 1980, 'F', 1119), +(119589, 'Olivia', 1980, 'F', 1117), +(119590, 'Tia', 1980, 'F', 1115), +(119591, 'Christie', 1980, 'F', 1113), +(119592, 'Carol', 1980, 'F', 1106), +(119593, 'Adriana', 1980, 'F', 1097), +(119594, 'Brianne', 1980, 'F', 1089), +(119595, 'Marisa', 1980, 'F', 1085), +(119596, 'Kelley', 1980, 'F', 1084), +(119597, 'Kristie', 1980, 'F', 1083), +(119598, 'Jenna', 1980, 'F', 1074), +(119599, 'Gloria', 1980, 'F', 1071), +(119600, 'Charlene', 1980, 'F', 1069), +(119601, 'Leticia', 1980, 'F', 1069), +(119602, 'Terri', 1980, 'F', 1066), +(119603, 'Charity', 1980, 'F', 1061), +(119604, 'Morgan', 1980, 'F', 1061), +(119605, 'Latisha', 1980, 'F', 1057), +(119606, 'Nikki', 1980, 'F', 1048), +(119607, 'Jana', 1980, 'F', 1047), +(119608, 'Angie', 1980, 'F', 1044), +(119609, 'Jacquelyn', 1980, 'F', 1036), +(119610, 'Jeanette', 1980, 'F', 1026), +(119611, 'Karla', 1980, 'F', 1026), +(119612, 'Christa', 1980, 'F', 1021), +(119613, 'Lynn', 1980, 'F', 1015), +(119614, 'Becky', 1980, 'F', 1011), +(119615, 'Kathy', 1980, 'F', 1011), +(119616, 'Tricia', 1980, 'F', 1007), +(119617, 'Annie', 1980, 'F', 1002), +(119618, 'Janice', 1980, 'F', 1002), +(119619, 'Kerry', 1980, 'F', 1000), +(119620, 'Ellen', 1980, 'F', 990), +(119621, 'Keri', 1980, 'F', 983), +(119622, 'Amie', 1980, 'F', 981), +(119623, 'Annette', 1980, 'F', 971), +(119624, 'Sylvia', 1980, 'F', 958), +(119625, 'Rachelle', 1980, 'F', 949), +(119626, 'Alissa', 1980, 'F', 944), +(119627, 'Frances', 1980, 'F', 938), +(119628, 'Abby', 1980, 'F', 930), +(119629, 'Lesley', 1980, 'F', 928), +(119630, 'Bobbie', 1980, 'F', 922), +(119631, 'Gretchen', 1980, 'F', 918), +(119632, 'Shana', 1980, 'F', 913), +(119633, 'Lakisha', 1980, 'F', 912), +(119634, 'Helen', 1980, 'F', 910), +(119635, 'Jami', 1980, 'F', 907), +(119636, 'Latonya', 1980, 'F', 900), +(119637, 'Lacey', 1980, 'F', 897), +(119638, 'Dorothy', 1980, 'F', 895), +(119639, 'Keisha', 1980, 'F', 884), +(119640, 'Maureen', 1980, 'F', 882), +(119641, 'Jennie', 1980, 'F', 874), +(119642, 'Yvette', 1980, 'F', 874), +(119643, 'Mayra', 1980, 'F', 873), +(119644, 'Alexandra', 1980, 'F', 872), +(119645, 'Roxanne', 1980, 'F', 871), +(119646, 'Johanna', 1980, 'F', 865), +(119647, 'Lydia', 1980, 'F', 863), +(119648, 'Evelyn', 1980, 'F', 861), +(119649, 'Sandy', 1980, 'F', 856), +(119650, 'Sherri', 1980, 'F', 854), +(119651, 'Charlotte', 1980, 'F', 849), +(119652, 'Irene', 1980, 'F', 848), +(119653, 'Jody', 1980, 'F', 848), +(119654, 'Tameka', 1980, 'F', 843), +(119655, 'Esther', 1980, 'F', 841), +(119656, 'Chasity', 1980, 'F', 840), +(119657, 'Connie', 1980, 'F', 838), +(119658, 'Eva', 1980, 'F', 837), +(119659, 'Rita', 1980, 'F', 837), +(119660, 'Hillary', 1980, 'F', 835), +(119661, 'Raquel', 1980, 'F', 831), +(119662, 'Lorena', 1980, 'F', 818), +(119663, 'Jessie', 1980, 'F', 812), +(119664, 'Juanita', 1980, 'F', 809), +(119665, 'Faith', 1980, 'F', 804), +(119666, 'Billie', 1980, 'F', 801), +(119667, 'Brandie', 1980, 'F', 797), +(119668, 'Angelina', 1980, 'F', 795), +(119669, 'Hope', 1980, 'F', 781), +(119670, 'Staci', 1980, 'F', 779), +(119671, 'Miriam', 1980, 'F', 778), +(119672, 'Jane', 1980, 'F', 773), +(119673, 'Elaine', 1980, 'F', 771), +(119674, 'Cassie', 1980, 'F', 770), +(119675, 'Amelia', 1980, 'F', 768), +(119676, 'Maribel', 1980, 'F', 766), +(119677, 'Jocelyn', 1980, 'F', 760), +(119678, 'Grace', 1980, 'F', 757), +(119679, 'Joni', 1980, 'F', 757), +(119680, 'Norma', 1980, 'F', 757), +(119681, 'Rochelle', 1980, 'F', 754), +(119682, 'Carly', 1980, 'F', 752), +(119683, 'Elisabeth', 1980, 'F', 751), +(119684, 'Tanisha', 1980, 'F', 751), +(119685, 'Ginger', 1980, 'F', 750), +(119686, 'Hilary', 1980, 'F', 741), +(119687, 'Alice', 1980, 'F', 738), +(119688, 'Sally', 1980, 'F', 738), +(119689, 'Meagan', 1980, 'F', 732), +(119690, 'Joyce', 1980, 'F', 730), +(119691, 'Lakeisha', 1980, 'F', 728), +(119692, 'Carissa', 1980, 'F', 725), +(119693, 'Jenifer', 1980, 'F', 724), +(119694, 'Beverly', 1980, 'F', 722), +(119695, 'Devon', 1980, 'F', 721), +(119696, 'Renata', 1980, 'F', 720), +(119697, 'Jolene', 1980, 'F', 719), +(119698, 'Randi', 1980, 'F', 715), +(119699, 'Elisa', 1980, 'F', 712), +(119700, 'Tabatha', 1980, 'F', 711), +(119701, 'Brianna', 1980, 'F', 710), +(119702, 'Sheri', 1980, 'F', 708), +(119703, 'Kirsten', 1980, 'F', 705), +(119704, 'Joanne', 1980, 'F', 701), +(119705, 'Tracie', 1980, 'F', 686), +(119706, 'Leanne', 1980, 'F', 683), +(119707, 'Belinda', 1980, 'F', 681), +(119708, 'Jean', 1980, 'F', 681), +(119709, 'Jackie', 1980, 'F', 680), +(119710, 'Mia', 1980, 'F', 680), +(119711, 'Karina', 1980, 'F', 675), +(119712, 'Chrystal', 1980, 'F', 672), +(119713, 'Ericka', 1980, 'F', 670), +(119714, 'Camille', 1980, 'F', 667), +(119715, 'Bobbi', 1980, 'F', 665), +(119716, 'Corinne', 1980, 'F', 663), +(119717, 'Ruby', 1980, 'F', 660), +(119718, 'Alma', 1980, 'F', 658), +(119719, 'Betty', 1980, 'F', 658), +(119720, 'Marisol', 1980, 'F', 656), +(119721, 'Cecilia', 1980, 'F', 654), +(119722, 'Darlene', 1980, 'F', 653), +(119723, 'Kasey', 1980, 'F', 653), +(119724, 'Lee', 1980, 'F', 651), +(119725, 'Caitlin', 1980, 'F', 648), +(119726, 'Sophia', 1980, 'F', 642), +(119727, 'Patrice', 1980, 'F', 639), +(119728, 'Alana', 1980, 'F', 635), +(119729, 'Sasha', 1980, 'F', 632), +(119730, 'Bianca', 1980, 'F', 631), +(119731, 'Elena', 1980, 'F', 630), +(119732, 'Serena', 1980, 'F', 630), +(119733, 'Elisha', 1980, 'F', 623), +(119734, 'Alisa', 1980, 'F', 621), +(119735, 'Aisha', 1980, 'F', 619), +(119736, 'Jodie', 1980, 'F', 617), +(119737, 'Eileen', 1980, 'F', 613), +(119738, 'Gabriela', 1980, 'F', 605), +(119739, 'Terra', 1980, 'F', 604), +(119740, 'Briana', 1980, 'F', 602), +(119741, 'Christi', 1980, 'F', 602), +(119742, 'Ryan', 1980, 'F', 602), +(119743, 'Shirley', 1980, 'F', 602), +(119744, 'Kim', 1980, 'F', 601), +(119745, 'Joann', 1980, 'F', 600), +(119746, 'Hollie', 1980, 'F', 597), +(119747, 'Judith', 1980, 'F', 597), +(119748, 'Trina', 1980, 'F', 597), +(119749, 'Antoinette', 1980, 'F', 590), +(119750, 'Guadalupe', 1980, 'F', 590), +(119751, 'Lakesha', 1980, 'F', 585), +(119752, 'Celeste', 1980, 'F', 582), +(119753, 'Marilyn', 1980, 'F', 580), +(119754, 'Lara', 1980, 'F', 577), +(119755, 'Rosemary', 1980, 'F', 576), +(119756, 'Marsha', 1980, 'F', 573), +(119757, 'Chandra', 1980, 'F', 572), +(119758, 'Katharine', 1980, 'F', 571), +(119759, 'Kimberley', 1980, 'F', 570), +(119760, 'Nora', 1980, 'F', 569), +(119761, 'Cathy', 1980, 'F', 568), +(119762, 'Claire', 1980, 'F', 568), +(119763, 'Gabrielle', 1980, 'F', 568), +(119764, 'Allyson', 1980, 'F', 567), +(119765, 'Melisa', 1980, 'F', 566), +(119766, 'Lacy', 1980, 'F', 563), +(119767, 'Penny', 1980, 'F', 555), +(119768, 'Judy', 1980, 'F', 549), +(119769, 'Michael', 1980, 'F', 546), +(119770, 'Nadia', 1980, 'F', 546), +(119771, 'Mandi', 1980, 'F', 543), +(119772, 'Chelsea', 1980, 'F', 541), +(119773, 'Betsy', 1980, 'F', 537), +(119774, 'Marcia', 1980, 'F', 536), +(119775, 'Lora', 1980, 'F', 535), +(119776, 'Emma', 1980, 'F', 534), +(119777, 'Dena', 1980, 'F', 530), +(119778, 'Daisy', 1980, 'F', 527), +(119779, 'Tami', 1980, 'F', 526), +(119780, 'Kenya', 1980, 'F', 520), +(119781, 'Esmeralda', 1980, 'F', 518), +(119782, 'Christin', 1980, 'F', 515), +(119783, 'Audra', 1980, 'F', 514), +(119784, 'Genevieve', 1980, 'F', 511), +(119785, 'Lillian', 1980, 'F', 510), +(119786, 'Yesenia', 1980, 'F', 509), +(119787, 'Janine', 1980, 'F', 506), +(119788, 'Iris', 1980, 'F', 504), +(119789, 'Katy', 1980, 'F', 503), +(119790, 'Josephine', 1980, 'F', 501), +(119791, 'Lorraine', 1980, 'F', 501), +(119792, 'Tania', 1980, 'F', 500), +(119793, 'Teri', 1980, 'F', 500), +(119794, 'Lena', 1980, 'F', 499), +(119795, 'Blanca', 1980, 'F', 494), +(119796, 'Isabel', 1980, 'F', 494), +(119797, 'Jayme', 1980, 'F', 493), +(119798, 'Debbie', 1980, 'F', 491), +(119799, 'Haley', 1980, 'F', 489), +(119800, 'Peggy', 1980, 'F', 489), +(119801, 'Gwendolyn', 1980, 'F', 486), +(119802, 'Leann', 1980, 'F', 483), +(119803, 'Roberta', 1980, 'F', 483), +(119804, 'Shelby', 1980, 'F', 482), +(119805, 'Aubrey', 1980, 'F', 480), +(119806, 'Wanda', 1980, 'F', 480), +(119807, 'Alyson', 1980, 'F', 478), +(119808, 'Christen', 1980, 'F', 478), +(119809, 'Laurel', 1980, 'F', 478), +(119810, 'Paige', 1980, 'F', 476), +(119811, 'Jeannette', 1980, 'F', 474), +(119812, 'Jeannie', 1980, 'F', 474), +(119813, 'Lashonda', 1980, 'F', 474), +(119814, 'Marcie', 1980, 'F', 474), +(119815, 'Tiffanie', 1980, 'F', 470), +(119816, 'Cherie', 1980, 'F', 467), +(119817, 'Alejandra', 1980, 'F', 463), +(119818, 'Lea', 1980, 'F', 463), +(119819, 'Cortney', 1980, 'F', 462), +(119820, 'Angelique', 1980, 'F', 460), +(119821, 'Darcy', 1980, 'F', 460), +(119822, 'Maggie', 1980, 'F', 460), +(119823, 'Marcy', 1980, 'F', 460), +(119824, 'Liza', 1980, 'F', 459), +(119825, 'Margarita', 1980, 'F', 458), +(119826, 'Lana', 1980, 'F', 456), +(119827, 'Catrina', 1980, 'F', 454), +(119828, 'Brittney', 1980, 'F', 453), +(119829, 'Carolina', 1980, 'F', 452), +(119830, 'Shameka', 1980, 'F', 452), +(119831, 'Selena', 1980, 'F', 451), +(119832, 'Tiffani', 1980, 'F', 449), +(119833, 'Misti', 1980, 'F', 447), +(119834, 'Noelle', 1980, 'F', 447), +(119835, 'Marci', 1980, 'F', 445), +(119836, 'Cheri', 1980, 'F', 444), +(119837, 'Destiny', 1980, 'F', 440), +(119838, 'Marlene', 1980, 'F', 440), +(119839, 'Shayla', 1980, 'F', 440), +(119840, 'Lucy', 1980, 'F', 439), +(119841, 'Bridgette', 1980, 'F', 438), +(119842, 'Candy', 1980, 'F', 438), +(119843, 'Ashlee', 1980, 'F', 435), +(119844, 'Bernadette', 1980, 'F', 434), +(119845, 'Lynette', 1980, 'F', 433), +(119846, 'Dara', 1980, 'F', 430), +(119847, 'Susana', 1980, 'F', 426), +(119848, 'Larissa', 1980, 'F', 425), +(119849, 'Clarissa', 1980, 'F', 423), +(119850, 'Dina', 1980, 'F', 422), +(119851, 'Joan', 1980, 'F', 422), +(119852, 'Luz', 1980, 'F', 422), +(119853, 'Jeanne', 1980, 'F', 419), +(119854, 'Loretta', 1980, 'F', 418), +(119855, 'Marla', 1980, 'F', 417), +(119856, 'Adrianne', 1980, 'F', 415), +(119857, 'Marianne', 1980, 'F', 415), +(119858, 'Rhiannon', 1980, 'F', 409), +(119859, 'Raven', 1980, 'F', 408), +(119860, 'Vivian', 1980, 'F', 408), +(119861, 'Alaina', 1980, 'F', 407), +(119862, 'Latosha', 1980, 'F', 407), +(119863, 'Brook', 1980, 'F', 405), +(119864, 'Vicki', 1980, 'F', 403), +(119865, 'Kristal', 1980, 'F', 401), +(119866, 'Janel', 1980, 'F', 397), +(119867, 'Maya', 1980, 'F', 397), +(119868, 'Tonia', 1980, 'F', 397), +(119869, 'Dianna', 1980, 'F', 396), +(119870, 'Sonja', 1980, 'F', 396), +(119871, 'Clara', 1980, 'F', 390), +(119872, 'Shawn', 1980, 'F', 388), +(119873, 'Mariah', 1980, 'F', 386), +(119874, 'Maranda', 1980, 'F', 378), +(119875, 'Tiana', 1980, 'F', 377), +(119876, 'Nicolette', 1980, 'F', 373), +(119877, 'Jordan', 1980, 'F', 372), +(119878, 'Kimberlee', 1980, 'F', 372), +(119879, 'Kisha', 1980, 'F', 371), +(119880, 'Latrice', 1980, 'F', 371), +(119881, 'Arlene', 1980, 'F', 370), +(119882, 'Corina', 1980, 'F', 370), +(119883, 'Latanya', 1980, 'F', 370), +(119884, 'Myra', 1980, 'F', 367), +(119885, 'Janna', 1980, 'F', 366), +(119886, 'Tessa', 1980, 'F', 361), +(119887, 'Candi', 1980, 'F', 360), +(119888, 'Christian', 1980, 'F', 358), +(119889, 'Elissa', 1980, 'F', 357), +(119890, 'Sheryl', 1980, 'F', 357), +(119891, 'Tera', 1980, 'F', 357), +(119892, 'Marcella', 1980, 'F', 356), +(119893, 'Malinda', 1980, 'F', 355), +(119894, 'Deana', 1980, 'F', 354), +(119895, 'Wendi', 1980, 'F', 353), +(119896, 'Constance', 1980, 'F', 351), +(119897, 'Jasmin', 1980, 'F', 351), +(119898, 'Shari', 1980, 'F', 350), +(119899, 'Araceli', 1980, 'F', 349), +(119900, 'Devin', 1980, 'F', 348), +(119901, 'Jo', 1980, 'F', 348), +(119902, 'Adrian', 1980, 'F', 346), +(119903, 'Athena', 1980, 'F', 346), +(119904, 'Sue', 1980, 'F', 344), +(119905, 'Carey', 1980, 'F', 341), +(119906, 'Meaghan', 1980, 'F', 341), +(119907, 'Dayna', 1980, 'F', 340), +(119908, 'Deidra', 1980, 'F', 340), +(119909, 'Janell', 1980, 'F', 340), +(119910, 'Maritza', 1980, 'F', 339), +(119911, 'Edith', 1980, 'F', 338), +(119912, 'Karin', 1980, 'F', 337), +(119913, 'Tisha', 1980, 'F', 337), +(119914, 'Antonia', 1980, 'F', 334), +(119915, 'Anya', 1980, 'F', 334), +(119916, 'Marjorie', 1980, 'F', 334), +(119917, 'Tammie', 1980, 'F', 334), +(119918, 'Chrissy', 1980, 'F', 333), +(119919, 'Irma', 1980, 'F', 333), +(119920, 'Nadine', 1980, 'F', 333), +(119921, 'Georgia', 1980, 'F', 332), +(119922, 'Marina', 1980, 'F', 332), +(119923, 'Elise', 1980, 'F', 331), +(119924, 'Glenda', 1980, 'F', 329), +(119925, 'Lawanda', 1980, 'F', 329), +(119926, 'Justine', 1980, 'F', 328), +(119927, 'Maricela', 1980, 'F', 328), +(119928, 'Kylie', 1980, 'F', 326), +(119929, 'Syreeta', 1980, 'F', 326), +(119930, 'Loni', 1980, 'F', 325), +(119931, 'Rocio', 1980, 'F', 325), +(119932, 'Breanne', 1980, 'F', 324), +(119933, 'Bridgett', 1980, 'F', 324), +(119934, 'Olga', 1980, 'F', 324), +(119935, 'Tosha', 1980, 'F', 324), +(119936, 'Deidre', 1980, 'F', 323), +(119937, 'Bambi', 1980, 'F', 322), +(119938, 'Maryann', 1980, 'F', 322), +(119939, 'Chastity', 1980, 'F', 319), +(119940, 'Ramona', 1980, 'F', 317), +(119941, 'Shamika', 1980, 'F', 317), +(119942, 'Janie', 1980, 'F', 316), +(119943, 'Lucia', 1980, 'F', 316), +(119944, 'Silvia', 1980, 'F', 316), +(119945, 'Angelia', 1980, 'F', 315), +(119946, 'Cori', 1980, 'F', 315), +(119947, 'Darla', 1980, 'F', 315), +(119948, 'Dominique', 1980, 'F', 314), +(119949, 'Janette', 1980, 'F', 314), +(119950, 'Talia', 1980, 'F', 314), +(119951, 'Andria', 1980, 'F', 313), +(119952, 'Christopher', 1980, 'F', 313), +(119953, 'Jeanine', 1980, 'F', 313), +(119954, 'Kayla', 1980, 'F', 313), +(119955, 'Ladonna', 1980, 'F', 312), +(119956, 'Lynda', 1980, 'F', 312), +(119957, 'Aja', 1980, 'F', 311), +(119958, 'Ariana', 1980, 'F', 310), +(119959, 'Kelsey', 1980, 'F', 309), +(119960, 'Renae', 1980, 'F', 309), +(119961, 'Alecia', 1980, 'F', 308), +(119962, 'Leanna', 1980, 'F', 308), +(119963, 'Kami', 1980, 'F', 307), +(119964, 'Jason', 1980, 'F', 306), +(119965, 'Kyla', 1980, 'F', 303), +(119966, 'Rena', 1980, 'F', 303), +(119967, 'Shanda', 1980, 'F', 303), +(119968, 'Gail', 1980, 'F', 302), +(119969, 'Chantel', 1980, 'F', 301), +(119970, 'Dora', 1980, 'F', 301), +(119971, 'Marlena', 1980, 'F', 301), +(119972, 'Tori', 1980, 'F', 301), +(119973, 'Brenna', 1980, 'F', 300), +(119974, 'Shavon', 1980, 'F', 300), +(119975, 'Sharonda', 1980, 'F', 299), +(119976, 'Valarie', 1980, 'F', 298), +(119977, 'Doris', 1980, 'F', 297), +(119978, 'Natalia', 1980, 'F', 297), +(119979, 'Noemi', 1980, 'F', 296), +(119980, 'Quiana', 1980, 'F', 296), +(119981, 'Ashleigh', 1980, 'F', 293), +(119982, 'Cari', 1980, 'F', 293), +(119983, 'Christal', 1980, 'F', 293), +(119984, 'Terry', 1980, 'F', 293), +(119985, 'Jesse', 1980, 'F', 292), +(119986, 'Breanna', 1980, 'F', 291), +(119987, 'David', 1980, 'F', 291), +(119988, 'Gladys', 1980, 'F', 291), +(119989, 'Lashanda', 1980, 'F', 290), +(119990, 'Dusty', 1980, 'F', 289), +(119991, 'Cristy', 1980, 'F', 288), +(119992, 'Vickie', 1980, 'F', 288), +(119993, 'Beatrice', 1980, 'F', 287), +(119994, 'Ingrid', 1980, 'F', 287), +(119995, 'Mollie', 1980, 'F', 286), +(119996, 'Pauline', 1980, 'F', 286), +(119997, 'Delia', 1980, 'F', 285), +(119998, 'Liliana', 1980, 'F', 285), +(119999, 'Lucinda', 1980, 'F', 285), +(120000, 'Sheree', 1980, 'F', 285), +(120001, 'Demetria', 1980, 'F', 284), +(120002, 'Racheal', 1980, 'F', 284), +(120003, 'Daphne', 1980, 'F', 283), +(120004, 'Edna', 1980, 'F', 283), +(120005, 'Leeann', 1980, 'F', 283), +(120006, 'Ivy', 1980, 'F', 282), +(120007, 'Ronda', 1980, 'F', 282), +(120008, 'Sherrie', 1980, 'F', 282), +(120009, 'Siobhan', 1980, 'F', 282), +(120010, 'Sommer', 1980, 'F', 282), +(120011, 'Chanel', 1980, 'F', 281), +(120012, 'Corey', 1980, 'F', 281), +(120013, 'Regan', 1980, 'F', 281), +(120014, 'Karyn', 1980, 'F', 280), +(120015, 'Dolores', 1980, 'F', 279), +(120016, 'Celia', 1980, 'F', 276), +(120017, 'Sadie', 1980, 'F', 276), +(120018, 'Taryn', 1980, 'F', 275), +(120019, 'Abbey', 1980, 'F', 274), +(120020, 'Jade', 1980, 'F', 273), +(120021, 'Eliza', 1980, 'F', 272), +(120022, 'Karrie', 1980, 'F', 272), +(120023, 'James', 1980, 'F', 271), +(120024, 'Josie', 1980, 'F', 269), +(120025, 'Michaela', 1980, 'F', 266), +(120026, 'Dionne', 1980, 'F', 265), +(120027, 'Julianne', 1980, 'F', 265), +(120028, 'Lyndsey', 1980, 'F', 264), +(120029, 'Rene', 1980, 'F', 264), +(120030, 'Shanta', 1980, 'F', 264), +(120031, 'Yadira', 1980, 'F', 263), +(120032, 'Shanika', 1980, 'F', 262), +(120033, 'Mara', 1980, 'F', 261), +(120034, 'Shalonda', 1980, 'F', 261), +(120035, 'Nakia', 1980, 'F', 259), +(120036, 'Casandra', 1980, 'F', 258), +(120037, 'Geneva', 1980, 'F', 257), +(120038, 'Rosalinda', 1980, 'F', 257), +(120039, 'Eleanor', 1980, 'F', 255), +(120040, 'Susanna', 1980, 'F', 255), +(120041, 'Vicky', 1980, 'F', 255), +(120042, 'Callie', 1980, 'F', 254), +(120043, 'Lindy', 1980, 'F', 254), +(120044, 'Robert', 1980, 'F', 254), +(120045, 'Hilda', 1980, 'F', 253), +(120046, 'Alanna', 1980, 'F', 252), +(120047, 'Caryn', 1980, 'F', 252), +(120048, 'John', 1980, 'F', 251), +(120049, 'Griselda', 1980, 'F', 250), +(120050, 'Mellissa', 1980, 'F', 250), +(120051, 'Precious', 1980, 'F', 249), +(120052, 'Francesca', 1980, 'F', 248), +(120053, 'Mercedes', 1980, 'F', 248), +(120054, 'Rosemarie', 1980, 'F', 246), +(120055, 'Beatriz', 1980, 'F', 245), +(120056, 'Charmaine', 1980, 'F', 245), +(120057, 'Cristin', 1980, 'F', 244), +(120058, 'Ami', 1980, 'F', 243), +(120059, 'Elsa', 1980, 'F', 243), +(120060, 'Holli', 1980, 'F', 243), +(120061, 'Starla', 1980, 'F', 243), +(120062, 'Alexandria', 1980, 'F', 242), +(120063, 'Darci', 1980, 'F', 241), +(120064, 'Jeanna', 1980, 'F', 241), +(120065, 'Mariana', 1980, 'F', 241), +(120066, 'Sunshine', 1980, 'F', 241), +(120067, 'Deirdre', 1980, 'F', 240), +(120068, 'Renada', 1980, 'F', 240), +(120069, 'Alesha', 1980, 'F', 239), +(120070, 'Graciela', 1980, 'F', 239), +(120071, 'Jaimie', 1980, 'F', 239), +(120072, 'Taylor', 1980, 'F', 237), +(120073, 'Marisela', 1980, 'F', 236), +(120074, 'Annmarie', 1980, 'F', 235), +(120075, 'Shonda', 1980, 'F', 235), +(120076, 'Celina', 1980, 'F', 234), +(120077, 'Jeri', 1980, 'F', 234), +(120078, 'Jacklyn', 1980, 'F', 233), +(120079, 'June', 1980, 'F', 233), +(120080, 'Louise', 1980, 'F', 233), +(120081, 'Madeline', 1980, 'F', 233), +(120082, 'Mackenzie', 1980, 'F', 232), +(120083, 'Maura', 1980, 'F', 232), +(120084, 'Selina', 1980, 'F', 232), +(120085, 'Abbie', 1980, 'F', 231), +(120086, 'Brandee', 1980, 'F', 231), +(120087, 'Georgina', 1980, 'F', 230), +(120088, 'Hayley', 1980, 'F', 230), +(120089, 'Lakeshia', 1980, 'F', 229), +(120090, 'Stella', 1980, 'F', 229), +(120091, 'Lorie', 1980, 'F', 228), +(120092, 'Meghann', 1980, 'F', 228), +(120093, 'Tawana', 1980, 'F', 227), +(120094, 'Tomeka', 1980, 'F', 227), +(120095, 'Anastasia', 1980, 'F', 226), +(120096, 'Jamila', 1980, 'F', 226), +(120097, 'Kandice', 1980, 'F', 226), +(120098, 'Simone', 1980, 'F', 226), +(120099, 'Laquita', 1980, 'F', 225), +(120100, 'Kia', 1980, 'F', 224), +(120101, 'Martina', 1980, 'F', 224), +(120102, 'Daniela', 1980, 'F', 223), +(120103, 'Kristyn', 1980, 'F', 223), +(120104, 'Leilani', 1980, 'F', 223), +(120105, 'Susie', 1980, 'F', 223), +(120106, 'Jenelle', 1980, 'F', 222), +(120107, 'Joshua', 1980, 'F', 222), +(120108, 'Katina', 1980, 'F', 222), +(120109, 'Sondra', 1980, 'F', 222), +(120110, 'Emilie', 1980, 'F', 221), +(120111, 'Kiley', 1980, 'F', 221), +(120112, 'Carina', 1980, 'F', 220), +(120113, 'Daniel', 1980, 'F', 220), +(120114, 'Shasta', 1980, 'F', 220), +(120115, 'Shavonne', 1980, 'F', 220), +(120116, 'Tamra', 1980, 'F', 220), +(120117, 'Tanesha', 1980, 'F', 220), +(120118, 'Juana', 1980, 'F', 219), +(120119, 'Shantel', 1980, 'F', 219), +(120120, 'Danelle', 1980, 'F', 218), +(120121, 'Helena', 1980, 'F', 218), +(120122, 'Shelia', 1980, 'F', 218), +(120123, 'Joseph', 1980, 'F', 217), +(120124, 'William', 1980, 'F', 216), +(120125, 'Eve', 1980, 'F', 215), +(120126, 'Harmony', 1980, 'F', 215), +(120127, 'Karissa', 1980, 'F', 215), +(120128, 'Marta', 1980, 'F', 215), +(120129, 'Cory', 1980, 'F', 214), +(120130, 'Marian', 1980, 'F', 214), +(120131, 'Mindi', 1980, 'F', 214), +(120132, 'Cora', 1980, 'F', 213), +(120133, 'Kesha', 1980, 'F', 213), +(120134, 'Lynne', 1980, 'F', 213), +(120135, 'Starr', 1980, 'F', 213), +(120136, 'Tammi', 1980, 'F', 213), +(120137, 'Aileen', 1980, 'F', 212), +(120138, 'Corrine', 1980, 'F', 212), +(120139, 'Juliana', 1980, 'F', 212), +(120140, 'Monika', 1980, 'F', 212), +(120141, 'Charissa', 1980, 'F', 211), +(120142, 'Corrie', 1980, 'F', 210), +(120143, 'Fatima', 1980, 'F', 210), +(120144, 'Shara', 1980, 'F', 210), +(120145, 'Tanika', 1980, 'F', 210), +(120146, 'Gena', 1980, 'F', 209), +(120147, 'Ida', 1980, 'F', 209), +(120148, 'Kira', 1980, 'F', 209), +(120149, 'Qiana', 1980, 'F', 209), +(120150, 'Rosalyn', 1980, 'F', 209), +(120151, 'Lyndsay', 1980, 'F', 208), +(120152, 'Aurora', 1980, 'F', 207), +(120153, 'Malissa', 1980, 'F', 207), +(120154, 'Eboni', 1980, 'F', 206), +(120155, 'Viviana', 1980, 'F', 206), +(120156, 'Jena', 1980, 'F', 205), +(120157, 'Kristan', 1980, 'F', 205), +(120158, 'Desirae', 1980, 'F', 204), +(120159, 'Jeanie', 1980, 'F', 204), +(120160, 'Adriane', 1980, 'F', 203), +(120161, 'Bertha', 1980, 'F', 203), +(120162, 'Kerrie', 1980, 'F', 202), +(120163, 'Mellisa', 1980, 'F', 202), +(120164, 'Rosanna', 1980, 'F', 202), +(120165, 'Casie', 1980, 'F', 201), +(120166, 'Sunny', 1980, 'F', 201), +(120167, 'Venessa', 1980, 'F', 201), +(120168, 'Bree', 1980, 'F', 200), +(120169, 'Francine', 1980, 'F', 200), +(120170, 'Lourdes', 1980, 'F', 200), +(120171, 'Greta', 1980, 'F', 199), +(120172, 'Jammie', 1980, 'F', 198), +(120173, 'Sherita', 1980, 'F', 198), +(120174, 'Jeannine', 1980, 'F', 197), +(120175, 'Shayna', 1980, 'F', 197), +(120176, 'Kacey', 1980, 'F', 196), +(120177, 'Jada', 1980, 'F', 195), +(120178, 'Shante', 1980, 'F', 195), +(120179, 'Matthew', 1980, 'F', 194), +(120180, 'Jerri', 1980, 'F', 192), +(120181, 'Ashanti', 1980, 'F', 191), +(120182, 'Niki', 1980, 'F', 191), +(120183, 'Sofia', 1980, 'F', 191), +(120184, 'Adrianna', 1980, 'F', 190), +(120185, 'Chanda', 1980, 'F', 190), +(120186, 'Colette', 1980, 'F', 190), +(120187, 'Kacie', 1980, 'F', 190), +(120188, 'Kathrine', 1980, 'F', 190), +(120189, 'Kendall', 1980, 'F', 190), +(120190, 'Marion', 1980, 'F', 189), +(120191, 'Octavia', 1980, 'F', 189), +(120192, 'Lily', 1980, 'F', 188), +(120193, 'Noel', 1980, 'F', 188), +(120194, 'Stacia', 1980, 'F', 188), +(120195, 'Janae', 1980, 'F', 187), +(120196, 'Lizette', 1980, 'F', 187), +(120197, 'Richelle', 1980, 'F', 187), +(120198, 'Shannan', 1980, 'F', 187), +(120199, 'Venus', 1980, 'F', 187), +(120200, 'Cathleen', 1980, 'F', 186), +(120201, 'Salina', 1980, 'F', 186), +(120202, 'Jan', 1980, 'F', 185), +(120203, 'Trista', 1980, 'F', 185), +(120204, 'Britney', 1980, 'F', 184), +(120205, 'Chiquita', 1980, 'F', 184), +(120206, 'Latesha', 1980, 'F', 184), +(120207, 'Leila', 1980, 'F', 184), +(120208, 'Letitia', 1980, 'F', 184), +(120209, 'Sierra', 1980, 'F', 184), +(120210, 'Eugenia', 1980, 'F', 183), +(120211, 'Melina', 1980, 'F', 183), +(120212, 'Juliet', 1980, 'F', 182), +(120213, 'Susanne', 1980, 'F', 182), +(120214, 'Ariel', 1980, 'F', 181), +(120215, 'Lacie', 1980, 'F', 181), +(120216, 'Phyllis', 1980, 'F', 181), +(120217, 'Felecia', 1980, 'F', 180), +(120218, 'Nikole', 1980, 'F', 180), +(120219, 'Alexa', 1980, 'F', 179), +(120220, 'Angeline', 1980, 'F', 179), +(120221, 'Delores', 1980, 'F', 179), +(120222, 'Tarah', 1980, 'F', 179), +(120223, 'Angelita', 1980, 'F', 178), +(120224, 'Nakisha', 1980, 'F', 178), +(120225, 'Nikia', 1980, 'F', 178), +(120226, 'Shanon', 1980, 'F', 178), +(120227, 'Deanne', 1980, 'F', 177), +(120228, 'Joelle', 1980, 'F', 177), +(120229, 'Annemarie', 1980, 'F', 176), +(120230, 'Bernice', 1980, 'F', 176), +(120231, 'Cheyenne', 1980, 'F', 176), +(120232, 'Davina', 1980, 'F', 176), +(120233, 'Eunice', 1980, 'F', 176), +(120234, 'Mari', 1980, 'F', 176), +(120235, 'Gwen', 1980, 'F', 175), +(120236, 'Josefina', 1980, 'F', 175), +(120237, 'Missy', 1980, 'F', 175), +(120238, 'Princess', 1980, 'F', 175), +(120239, 'Tamera', 1980, 'F', 175), +(120240, 'Ella', 1980, 'F', 174), +(120241, 'Kandi', 1980, 'F', 174), +(120242, 'Shanita', 1980, 'F', 174), +(120243, 'Aaron', 1980, 'F', 173), +(120244, 'Brian', 1980, 'F', 173), +(120245, 'Gillian', 1980, 'F', 173), +(120246, 'Kori', 1980, 'F', 173), +(120247, 'Kyle', 1980, 'F', 173), +(120248, 'Justina', 1980, 'F', 172), +(120249, 'Keli', 1980, 'F', 172), +(120250, 'Deena', 1980, 'F', 171), +(120251, 'Dixie', 1980, 'F', 171), +(120252, 'Reyna', 1980, 'F', 171), +(120253, 'Elaina', 1980, 'F', 170), +(120254, 'Farrah', 1980, 'F', 170), +(120255, 'Jenni', 1980, 'F', 170), +(120256, 'Star', 1980, 'F', 170), +(120257, 'Blair', 1980, 'F', 169), +(120258, 'Rebeca', 1980, 'F', 169), +(120259, 'Jeana', 1980, 'F', 168), +(120260, 'Pearl', 1980, 'F', 168), +(120261, 'Tyra', 1980, 'F', 168), +(120262, 'Chimere', 1980, 'F', 167), +(120263, 'Leona', 1980, 'F', 167), +(120264, 'Magdalena', 1980, 'F', 167), +(120265, 'Margie', 1980, 'F', 167), +(120266, 'Perla', 1980, 'F', 167), +(120267, 'Tawanda', 1980, 'F', 167), +(120268, 'Valencia', 1980, 'F', 167), +(120269, 'Ada', 1980, 'F', 166), +(120270, 'Francisca', 1980, 'F', 166), +(120271, 'Nichol', 1980, 'F', 166), +(120272, 'Chana', 1980, 'F', 165), +(120273, 'Fawn', 1980, 'F', 165), +(120274, 'Rikki', 1980, 'F', 165), +(120275, 'Stephenie', 1980, 'F', 165), +(120276, 'Ursula', 1980, 'F', 165), +(120277, 'Kaci', 1980, 'F', 164), +(120278, 'Margo', 1980, 'F', 164), +(120279, 'Johnna', 1980, 'F', 163), +(120280, 'Tenisha', 1980, 'F', 163), +(120281, 'Anabel', 1980, 'F', 162), +(120282, 'Leia', 1980, 'F', 162), +(120283, 'Reagan', 1980, 'F', 162), +(120284, 'Adria', 1980, 'F', 161), +(120285, 'Anthony', 1980, 'F', 161), +(120286, 'Brynn', 1980, 'F', 161), +(120287, 'Cecelia', 1980, 'F', 161), +(120288, 'Crissy', 1980, 'F', 161), +(120289, 'Justin', 1980, 'F', 161), +(120290, 'Kenyatta', 1980, 'F', 161), +(120291, 'Rosalie', 1980, 'F', 161), +(120292, 'Vera', 1980, 'F', 161), +(120293, 'Asia', 1980, 'F', 160), +(120294, 'Bettina', 1980, 'F', 160), +(120295, 'Consuelo', 1980, 'F', 160), +(120296, 'Darcie', 1980, 'F', 160), +(120297, 'Laci', 1980, 'F', 160), +(120298, 'Lisette', 1980, 'F', 160), +(120299, 'Tai', 1980, 'F', 160), +(120300, 'Tomika', 1980, 'F', 160), +(120301, 'Danica', 1980, 'F', 159), +(120302, 'Delilah', 1980, 'F', 159), +(120303, 'Loren', 1980, 'F', 159), +(120304, 'Lynnette', 1980, 'F', 159), +(120305, 'Maren', 1980, 'F', 159), +(120306, 'Mildred', 1980, 'F', 159), +(120307, 'Sandi', 1980, 'F', 159), +(120308, 'Damaris', 1980, 'F', 158), +(120309, 'Keely', 1980, 'F', 158), +(120310, 'Shantell', 1980, 'F', 158), +(120311, 'Tana', 1980, 'F', 157), +(120312, 'Dianne', 1980, 'F', 156), +(120313, 'Iesha', 1980, 'F', 156), +(120314, 'Shellie', 1980, 'F', 156), +(120315, 'Alysia', 1980, 'F', 155), +(120316, 'Candis', 1980, 'F', 155), +(120317, 'Kellee', 1980, 'F', 155), +(120318, 'Kirstin', 1980, 'F', 155), +(120319, 'Paulette', 1980, 'F', 155), +(120320, 'Ashlie', 1980, 'F', 154), +(120321, 'Lois', 1980, 'F', 154), +(120322, 'Mona', 1980, 'F', 154), +(120323, 'Rosie', 1980, 'F', 154), +(120324, 'Shea', 1980, 'F', 154), +(120325, 'Therese', 1980, 'F', 154), +(120326, 'Alina', 1980, 'F', 153), +(120327, 'Charla', 1980, 'F', 153), +(120328, 'Eric', 1980, 'F', 153), +(120329, 'Francis', 1980, 'F', 153), +(120330, 'Kay', 1980, 'F', 153), +(120331, 'Lissette', 1980, 'F', 153), +(120332, 'Rashida', 1980, 'F', 153), +(120333, 'Shawanda', 1980, 'F', 153), +(120334, 'Tracee', 1980, 'F', 153), +(120335, 'Windy', 1980, 'F', 153), +(120336, 'Florence', 1980, 'F', 152), +(120337, 'Raina', 1980, 'F', 152), +(120338, 'Renita', 1980, 'F', 152), +(120339, 'Suzanna', 1980, 'F', 152), +(120340, 'Alena', 1980, 'F', 151), +(120341, 'Alycia', 1980, 'F', 151), +(120342, 'Cristal', 1980, 'F', 151), +(120343, 'Jessi', 1980, 'F', 151), +(120344, 'Lashawn', 1980, 'F', 151), +(120345, 'Lina', 1980, 'F', 151), +(120346, 'Lola', 1980, 'F', 151), +(120347, 'Cameron', 1980, 'F', 150), +(120348, 'Lila', 1980, 'F', 150), +(120349, 'Krissy', 1980, 'F', 149), +(120350, 'Kylene', 1980, 'F', 149), +(120351, 'Linsey', 1980, 'F', 149), +(120352, 'Malia', 1980, 'F', 149), +(120353, 'Nicki', 1980, 'F', 149), +(120354, 'Thelma', 1980, 'F', 149), +(120355, 'Julianna', 1980, 'F', 148), +(120356, 'Liana', 1980, 'F', 148), +(120357, 'Tatiana', 1980, 'F', 148), +(120358, 'Chantelle', 1980, 'F', 147), +(120359, 'Kati', 1980, 'F', 147), +(120360, 'Lashunda', 1980, 'F', 147), +(120361, 'Mariel', 1980, 'F', 147), +(120362, 'Rae', 1980, 'F', 147), +(120363, 'Ayesha', 1980, 'F', 146), +(120364, 'Latricia', 1980, 'F', 146), +(120365, 'Doreen', 1980, 'F', 145), +(120366, 'Gayle', 1980, 'F', 145), +(120367, 'Joleen', 1980, 'F', 145), +(120368, 'Ginny', 1980, 'F', 144), +(120369, 'Kandace', 1980, 'F', 144), +(120370, 'Karie', 1980, 'F', 144), +(120371, 'Kylee', 1980, 'F', 144), +(120372, 'Maira', 1980, 'F', 144), +(120373, 'Natosha', 1980, 'F', 144), +(120374, 'Sheena', 1980, 'F', 144), +(120375, 'Tiffiny', 1980, 'F', 144), +(120376, 'Alexia', 1980, 'F', 143), +(120377, 'Jayne', 1980, 'F', 143), +(120378, 'Nikita', 1980, 'F', 143), +(120379, 'Deann', 1980, 'F', 142), +(120380, 'Lani', 1980, 'F', 142), +(120381, 'Melodie', 1980, 'F', 142), +(120382, 'Tiffaney', 1980, 'F', 142), +(120383, 'Felisha', 1980, 'F', 141), +(120384, 'Kourtney', 1980, 'F', 141), +(120385, 'Violet', 1980, 'F', 141), +(120386, 'Jeremy', 1980, 'F', 140), +(120387, 'Sharita', 1980, 'F', 140), +(120388, 'Tennille', 1980, 'F', 140), +(120389, 'Winter', 1980, 'F', 140), +(120390, 'Antionette', 1980, 'F', 139), +(120391, 'Chloe', 1980, 'F', 139), +(120392, 'Ivette', 1980, 'F', 139), +(120393, 'Nicholas', 1980, 'F', 139), +(120394, 'Amberly', 1980, 'F', 138), +(120395, 'Esperanza', 1980, 'F', 138), +(120396, 'Janis', 1980, 'F', 138), +(120397, 'Jesica', 1980, 'F', 138), +(120398, 'Kacy', 1980, 'F', 138); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(120399, 'Lilia', 1980, 'F', 138), +(120400, 'Melonie', 1980, 'F', 138), +(120401, 'Nellie', 1980, 'F', 138), +(120402, 'Reina', 1980, 'F', 138), +(120403, 'Danna', 1980, 'F', 137), +(120404, 'Joi', 1980, 'F', 137), +(120405, 'Shaneka', 1980, 'F', 137), +(120406, 'Takisha', 1980, 'F', 137), +(120407, 'Tawnya', 1980, 'F', 137), +(120408, 'Toya', 1980, 'F', 137), +(120409, 'Annamarie', 1980, 'F', 136), +(120410, 'Brandon', 1980, 'F', 136), +(120411, 'Brigette', 1980, 'F', 136), +(120412, 'Nichelle', 1980, 'F', 136), +(120413, 'Nicolle', 1980, 'F', 136), +(120414, 'Aida', 1980, 'F', 135), +(120415, 'Jaimee', 1980, 'F', 135), +(120416, 'Kaitlin', 1980, 'F', 135), +(120417, 'Sarita', 1980, 'F', 135), +(120418, 'Cathryn', 1980, 'F', 134), +(120419, 'India', 1980, 'F', 134), +(120420, 'Kiana', 1980, 'F', 134), +(120421, 'Lia', 1980, 'F', 134), +(120422, 'Shay', 1980, 'F', 134), +(120423, 'Somer', 1980, 'F', 134), +(120424, 'Charisse', 1980, 'F', 133), +(120425, 'Edwina', 1980, 'F', 133), +(120426, 'Shaunna', 1980, 'F', 133), +(120427, 'Aracely', 1980, 'F', 132), +(120428, 'Daniella', 1980, 'F', 132), +(120429, 'Joanie', 1980, 'F', 132), +(120430, 'Katelyn', 1980, 'F', 132), +(120431, 'Micah', 1980, 'F', 132), +(120432, 'Portia', 1980, 'F', 132), +(120433, 'Tawanna', 1980, 'F', 132), +(120434, 'Thea', 1980, 'F', 132), +(120435, 'Carmela', 1980, 'F', 131), +(120436, 'Cassidy', 1980, 'F', 131), +(120437, 'Clare', 1980, 'F', 131), +(120438, 'Hazel', 1980, 'F', 131), +(120439, 'Layla', 1980, 'F', 131), +(120440, 'Maegan', 1980, 'F', 131), +(120441, 'Marcela', 1980, 'F', 131), +(120442, 'Shanell', 1980, 'F', 131), +(120443, 'Shelli', 1980, 'F', 131), +(120444, 'Katheryn', 1980, 'F', 130), +(120445, 'Sydney', 1980, 'F', 130), +(120446, 'Catalina', 1980, 'F', 129), +(120447, 'May', 1980, 'F', 129), +(120448, 'Rhea', 1980, 'F', 129), +(120449, 'Adina', 1980, 'F', 128), +(120450, 'Danyelle', 1980, 'F', 128), +(120451, 'Erinn', 1980, 'F', 128), +(120452, 'Kindra', 1980, 'F', 128), +(120453, 'Meggan', 1980, 'F', 128), +(120454, 'Spring', 1980, 'F', 128), +(120455, 'Yasmin', 1980, 'F', 128), +(120456, 'Georgette', 1980, 'F', 127), +(120457, 'Sharla', 1980, 'F', 127), +(120458, 'Shemika', 1980, 'F', 127), +(120459, 'Benita', 1980, 'F', 126), +(120460, 'Elvira', 1980, 'F', 126), +(120461, 'Joey', 1980, 'F', 126), +(120462, 'Michell', 1980, 'F', 126), +(120463, 'Roxana', 1980, 'F', 126), +(120464, 'Cristen', 1980, 'F', 125), +(120465, 'Lucille', 1980, 'F', 125), +(120466, 'Stephaine', 1980, 'F', 125), +(120467, 'Stephany', 1980, 'F', 125), +(120468, 'Rosario', 1980, 'F', 124), +(120469, 'Tamica', 1980, 'F', 124), +(120470, 'Trish', 1980, 'F', 124), +(120471, 'Bonita', 1980, 'F', 123), +(120472, 'Carie', 1980, 'F', 123), +(120473, 'Natisha', 1980, 'F', 123), +(120474, 'Rayna', 1980, 'F', 123), +(120475, 'Shandra', 1980, 'F', 123), +(120476, 'Ariane', 1980, 'F', 122), +(120477, 'Crista', 1980, 'F', 122), +(120478, 'Elana', 1980, 'F', 122), +(120479, 'January', 1980, 'F', 122), +(120480, 'Kenisha', 1980, 'F', 122), +(120481, 'Letisha', 1980, 'F', 122), +(120482, 'Shemeka', 1980, 'F', 122), +(120483, 'Stefani', 1980, 'F', 122), +(120484, 'Taisha', 1980, 'F', 122), +(120485, 'Tiesha', 1980, 'F', 122), +(120486, 'Elsie', 1980, 'F', 121), +(120487, 'Faye', 1980, 'F', 121), +(120488, 'Johana', 1980, 'F', 121), +(120489, 'Richard', 1980, 'F', 121), +(120490, 'Scarlett', 1980, 'F', 121), +(120491, 'Shanelle', 1980, 'F', 121), +(120492, 'Shawana', 1980, 'F', 121), +(120493, 'Suzette', 1980, 'F', 121), +(120494, 'Tiara', 1980, 'F', 121), +(120495, 'Trinity', 1980, 'F', 121), +(120496, 'Tyesha', 1980, 'F', 121), +(120497, 'Danita', 1980, 'F', 120), +(120498, 'Jazmin', 1980, 'F', 120), +(120499, 'Marquita', 1980, 'F', 120), +(120500, 'Ayana', 1980, 'F', 119), +(120501, 'Cherise', 1980, 'F', 119), +(120502, 'Elicia', 1980, 'F', 119), +(120503, 'Imelda', 1980, 'F', 119), +(120504, 'Inez', 1980, 'F', 119), +(120505, 'Kizzy', 1980, 'F', 119), +(120506, 'Kyra', 1980, 'F', 119), +(120507, 'Lillie', 1980, 'F', 119), +(120508, 'Tamekia', 1980, 'F', 119), +(120509, 'Tawny', 1980, 'F', 119), +(120510, 'Elvia', 1980, 'F', 118), +(120511, 'Janessa', 1980, 'F', 118), +(120512, 'Luisa', 1980, 'F', 118), +(120513, 'Dallas', 1980, 'F', 117), +(120514, 'Kasie', 1980, 'F', 117), +(120515, 'Kassandra', 1980, 'F', 117), +(120516, 'Kevin', 1980, 'F', 117), +(120517, 'Mitzi', 1980, 'F', 117), +(120518, 'Nia', 1980, 'F', 117), +(120519, 'Roxanna', 1980, 'F', 117), +(120520, 'Anitra', 1980, 'F', 116), +(120521, 'Charles', 1980, 'F', 116), +(120522, 'Emilia', 1980, 'F', 116), +(120523, 'Flora', 1980, 'F', 116), +(120524, 'Keesha', 1980, 'F', 116), +(120525, 'Louisa', 1980, 'F', 116), +(120526, 'Maia', 1980, 'F', 116), +(120527, 'Petra', 1980, 'F', 116), +(120528, 'Ranada', 1980, 'F', 116), +(120529, 'Susannah', 1980, 'F', 116), +(120530, 'Latonia', 1980, 'F', 115), +(120531, 'Libby', 1980, 'F', 115), +(120532, 'Ryann', 1980, 'F', 115), +(120533, 'Talisha', 1980, 'F', 115), +(120534, 'Tamisha', 1980, 'F', 115), +(120535, 'Trudy', 1980, 'F', 115), +(120536, 'Brigitte', 1980, 'F', 114), +(120537, 'Chaya', 1980, 'F', 114), +(120538, 'Christiana', 1980, 'F', 114), +(120539, 'Corinna', 1980, 'F', 114), +(120540, 'Roseann', 1980, 'F', 114), +(120541, 'Sharee', 1980, 'F', 114), +(120542, 'Giselle', 1980, 'F', 113), +(120543, 'Lakiesha', 1980, 'F', 113), +(120544, 'Roxann', 1980, 'F', 113), +(120545, 'Terrie', 1980, 'F', 113), +(120546, 'Ava', 1980, 'F', 112), +(120547, 'Carole', 1980, 'F', 112), +(120548, 'Chante', 1980, 'F', 112), +(120549, 'Gracie', 1980, 'F', 112), +(120550, 'Hanna', 1980, 'F', 112), +(120551, 'Leighann', 1980, 'F', 112), +(120552, 'Mandie', 1980, 'F', 112), +(120553, 'Tabetha', 1980, 'F', 112), +(120554, 'Laquisha', 1980, 'F', 111), +(120555, 'Mariela', 1980, 'F', 111), +(120556, 'Maxine', 1980, 'F', 111), +(120557, 'Patty', 1980, 'F', 111), +(120558, 'Thomas', 1980, 'F', 111), +(120559, 'Brie', 1980, 'F', 110), +(120560, 'Carisa', 1980, 'F', 110), +(120561, 'Jewel', 1980, 'F', 110), +(120562, 'Juliette', 1980, 'F', 110), +(120563, 'Myrna', 1980, 'F', 110), +(120564, 'Sparkle', 1980, 'F', 110), +(120565, 'Steven', 1980, 'F', 110), +(120566, 'Stormy', 1980, 'F', 110), +(120567, 'Alia', 1980, 'F', 109), +(120568, 'Alishia', 1980, 'F', 109), +(120569, 'Ayanna', 1980, 'F', 109), +(120570, 'Geraldine', 1980, 'F', 109), +(120571, 'Nicola', 1980, 'F', 109), +(120572, 'Racquel', 1980, 'F', 109), +(120573, 'Robbie', 1980, 'F', 109), +(120574, 'Shira', 1980, 'F', 109), +(120575, 'Tashia', 1980, 'F', 109), +(120576, 'Aleisha', 1980, 'F', 108), +(120577, 'Apryl', 1980, 'F', 108), +(120578, 'Bobby', 1980, 'F', 108), +(120579, 'Cherry', 1980, 'F', 108), +(120580, 'Cody', 1980, 'F', 108), +(120581, 'Della', 1980, 'F', 108), +(120582, 'Karri', 1980, 'F', 108), +(120583, 'Kristel', 1980, 'F', 108), +(120584, 'Lynsey', 1980, 'F', 108), +(120585, 'Marybeth', 1980, 'F', 108), +(120586, 'Tamela', 1980, 'F', 108), +(120587, 'Corrina', 1980, 'F', 107), +(120588, 'Danette', 1980, 'F', 107), +(120589, 'Flor', 1980, 'F', 107), +(120590, 'Jaqueline', 1980, 'F', 107), +(120591, 'Joana', 1980, 'F', 107), +(120592, 'Latia', 1980, 'F', 107), +(120593, 'Latoyia', 1980, 'F', 107), +(120594, 'Mireya', 1980, 'F', 107), +(120595, 'Polly', 1980, 'F', 107), +(120596, 'Sherika', 1980, 'F', 107), +(120597, 'Tangela', 1980, 'F', 107), +(120598, 'Chantal', 1980, 'F', 106), +(120599, 'Janeen', 1980, 'F', 106), +(120600, 'Lashawnda', 1980, 'F', 106), +(120601, 'Lauri', 1980, 'F', 106), +(120602, 'Nena', 1980, 'F', 106), +(120603, 'Viola', 1980, 'F', 106), +(120604, 'Violeta', 1980, 'F', 106), +(120605, 'Emilee', 1980, 'F', 105), +(120606, 'Patience', 1980, 'F', 105), +(120607, 'Serina', 1980, 'F', 105), +(120608, 'Sharron', 1980, 'F', 105), +(120609, 'Tianna', 1980, 'F', 105), +(120610, 'Timothy', 1980, 'F', 105), +(120611, 'Corie', 1980, 'F', 104), +(120612, 'Gabriella', 1980, 'F', 104), +(120613, 'Jonathan', 1980, 'F', 104), +(120614, 'Kenyetta', 1980, 'F', 104), +(120615, 'Latoria', 1980, 'F', 104), +(120616, 'Lidia', 1980, 'F', 104), +(120617, 'Lucretia', 1980, 'F', 104), +(120618, 'Quinn', 1980, 'F', 104), +(120619, 'Samara', 1980, 'F', 104), +(120620, 'Skye', 1980, 'F', 104), +(120621, 'Brienne', 1980, 'F', 103), +(120622, 'Chris', 1980, 'F', 103), +(120623, 'Kristian', 1980, 'F', 103), +(120624, 'Lenora', 1980, 'F', 103), +(120625, 'Misha', 1980, 'F', 103), +(120626, 'Shani', 1980, 'F', 103), +(120627, 'Addie', 1980, 'F', 102), +(120628, 'Camilla', 1980, 'F', 102), +(120629, 'Leslee', 1980, 'F', 102), +(120630, 'Lorrie', 1980, 'F', 102), +(120631, 'Mistie', 1980, 'F', 102), +(120632, 'Zoe', 1980, 'F', 102), +(120633, 'Asha', 1980, 'F', 101), +(120634, 'Genese', 1980, 'F', 101), +(120635, 'Sarina', 1980, 'F', 101), +(120636, 'Estela', 1980, 'F', 100), +(120637, 'Iliana', 1980, 'F', 100), +(120638, 'Kassie', 1980, 'F', 100), +(120639, 'Latarsha', 1980, 'F', 100), +(120640, 'Rosalba', 1980, 'F', 100), +(120641, 'Shaina', 1980, 'F', 100), +(120642, 'Tatum', 1980, 'F', 100), +(120643, 'Valeria', 1980, 'F', 100), +(120644, 'Michael', 1980, 'M', 68666), +(120645, 'Christopher', 1980, 'M', 49086), +(120646, 'Jason', 1980, 'M', 48176), +(120647, 'David', 1980, 'M', 41913), +(120648, 'James', 1980, 'M', 39312), +(120649, 'Matthew', 1980, 'M', 37857), +(120650, 'Joshua', 1980, 'M', 36058), +(120651, 'John', 1980, 'M', 35263), +(120652, 'Robert', 1980, 'M', 34273), +(120653, 'Joseph', 1980, 'M', 30189), +(120654, 'Daniel', 1980, 'M', 29889), +(120655, 'Brian', 1980, 'M', 28718), +(120656, 'Justin', 1980, 'M', 26752), +(120657, 'William', 1980, 'M', 25659), +(120658, 'Ryan', 1980, 'M', 24801), +(120659, 'Eric', 1980, 'M', 22622), +(120660, 'Nicholas', 1980, 'M', 21019), +(120661, 'Jeremy', 1980, 'M', 19903), +(120662, 'Andrew', 1980, 'M', 19725), +(120663, 'Timothy', 1980, 'M', 19157), +(120664, 'Jonathan', 1980, 'M', 18989), +(120665, 'Adam', 1980, 'M', 18870), +(120666, 'Kevin', 1980, 'M', 17976), +(120667, 'Anthony', 1980, 'M', 17611), +(120668, 'Thomas', 1980, 'M', 17566), +(120669, 'Richard', 1980, 'M', 16658), +(120670, 'Jeffrey', 1980, 'M', 16382), +(120671, 'Steven', 1980, 'M', 15911), +(120672, 'Charles', 1980, 'M', 14957), +(120673, 'Brandon', 1980, 'M', 14160), +(120674, 'Mark', 1980, 'M', 14156), +(120675, 'Benjamin', 1980, 'M', 13630), +(120676, 'Scott', 1980, 'M', 13312), +(120677, 'Aaron', 1980, 'M', 13169), +(120678, 'Paul', 1980, 'M', 11818), +(120679, 'Nathan', 1980, 'M', 11139), +(120680, 'Travis', 1980, 'M', 10767), +(120681, 'Patrick', 1980, 'M', 10352), +(120682, 'Chad', 1980, 'M', 10148), +(120683, 'Stephen', 1980, 'M', 10068), +(120684, 'Kenneth', 1980, 'M', 9613), +(120685, 'Gregory', 1980, 'M', 9269), +(120686, 'Jacob', 1980, 'M', 8522), +(120687, 'Dustin', 1980, 'M', 8419), +(120688, 'Jesse', 1980, 'M', 8379), +(120689, 'Jose', 1980, 'M', 8316), +(120690, 'Shawn', 1980, 'M', 7696), +(120691, 'Sean', 1980, 'M', 7593), +(120692, 'Bryan', 1980, 'M', 7512), +(120693, 'Derek', 1980, 'M', 7245), +(120694, 'Bradley', 1980, 'M', 7216), +(120695, 'Edward', 1980, 'M', 6760), +(120696, 'Donald', 1980, 'M', 6270), +(120697, 'Samuel', 1980, 'M', 6009), +(120698, 'Peter', 1980, 'M', 5963), +(120699, 'Keith', 1980, 'M', 5887), +(120700, 'Kyle', 1980, 'M', 5784), +(120701, 'Ronald', 1980, 'M', 5763), +(120702, 'Juan', 1980, 'M', 5430), +(120703, 'George', 1980, 'M', 5294), +(120704, 'Jared', 1980, 'M', 5208), +(120705, 'Douglas', 1980, 'M', 5185), +(120706, 'Gary', 1980, 'M', 5038), +(120707, 'Erik', 1980, 'M', 4912), +(120708, 'Phillip', 1980, 'M', 4636), +(120709, 'Raymond', 1980, 'M', 4578), +(120710, 'Joel', 1980, 'M', 4572), +(120711, 'Corey', 1980, 'M', 4437), +(120712, 'Shane', 1980, 'M', 4367), +(120713, 'Larry', 1980, 'M', 4269), +(120714, 'Marcus', 1980, 'M', 4256), +(120715, 'Zachary', 1980, 'M', 4240), +(120716, 'Craig', 1980, 'M', 4233), +(120717, 'Derrick', 1980, 'M', 4135), +(120718, 'Todd', 1980, 'M', 4130), +(120719, 'Jeremiah', 1980, 'M', 4097), +(120720, 'Antonio', 1980, 'M', 4089), +(120721, 'Carlos', 1980, 'M', 4079), +(120722, 'Shaun', 1980, 'M', 3926), +(120723, 'Dennis', 1980, 'M', 3806), +(120724, 'Frank', 1980, 'M', 3737), +(120725, 'Philip', 1980, 'M', 3562), +(120726, 'Cory', 1980, 'M', 3553), +(120727, 'Brent', 1980, 'M', 3539), +(120728, 'Gabriel', 1980, 'M', 3495), +(120729, 'Nathaniel', 1980, 'M', 3494), +(120730, 'Randy', 1980, 'M', 3386), +(120731, 'Luis', 1980, 'M', 3355), +(120732, 'Curtis', 1980, 'M', 3335), +(120733, 'Jeffery', 1980, 'M', 3328), +(120734, 'Alexander', 1980, 'M', 3272), +(120735, 'Russell', 1980, 'M', 3271), +(120736, 'Casey', 1980, 'M', 3220), +(120737, 'Jerry', 1980, 'M', 3191), +(120738, 'Wesley', 1980, 'M', 3164), +(120739, 'Brett', 1980, 'M', 3131), +(120740, 'Luke', 1980, 'M', 3106), +(120741, 'Lucas', 1980, 'M', 3086), +(120742, 'Seth', 1980, 'M', 3049), +(120743, 'Billy', 1980, 'M', 2992), +(120744, 'Terry', 1980, 'M', 2982), +(120745, 'Mario', 1980, 'M', 2936), +(120746, 'Carl', 1980, 'M', 2933), +(120747, 'Ian', 1980, 'M', 2904), +(120748, 'Jamie', 1980, 'M', 2846), +(120749, 'Troy', 1980, 'M', 2830), +(120750, 'Victor', 1980, 'M', 2825), +(120751, 'Tony', 1980, 'M', 2724), +(120752, 'Bobby', 1980, 'M', 2723), +(120753, 'Vincent', 1980, 'M', 2699), +(120754, 'Jesus', 1980, 'M', 2695), +(120755, 'Alan', 1980, 'M', 2670), +(120756, 'Johnny', 1980, 'M', 2641), +(120757, 'Tyler', 1980, 'M', 2623), +(120758, 'Adrian', 1980, 'M', 2391), +(120759, 'Brad', 1980, 'M', 2369), +(120760, 'Ricardo', 1980, 'M', 2322), +(120761, 'Christian', 1980, 'M', 2311), +(120762, 'Marc', 1980, 'M', 2311), +(120763, 'Danny', 1980, 'M', 2266), +(120764, 'Rodney', 1980, 'M', 2265), +(120765, 'Ricky', 1980, 'M', 2231), +(120766, 'Martin', 1980, 'M', 2226), +(120767, 'Lee', 1980, 'M', 2209), +(120768, 'Allen', 1980, 'M', 2207), +(120769, 'Jimmy', 1980, 'M', 2207), +(120770, 'Jon', 1980, 'M', 2180), +(120771, 'Miguel', 1980, 'M', 2174), +(120772, 'Lawrence', 1980, 'M', 2171), +(120773, 'Willie', 1980, 'M', 2168), +(120774, 'Clinton', 1980, 'M', 2165), +(120775, 'Micheal', 1980, 'M', 2152), +(120776, 'Andre', 1980, 'M', 2079), +(120777, 'Roger', 1980, 'M', 2076), +(120778, 'Henry', 1980, 'M', 2072), +(120779, 'Randall', 1980, 'M', 2025), +(120780, 'Walter', 1980, 'M', 2013), +(120781, 'Kristopher', 1980, 'M', 2008), +(120782, 'Jorge', 1980, 'M', 1997), +(120783, 'Jay', 1980, 'M', 1988), +(120784, 'Joe', 1980, 'M', 1988), +(120785, 'Albert', 1980, 'M', 1956), +(120786, 'Cody', 1980, 'M', 1953), +(120787, 'Manuel', 1980, 'M', 1905), +(120788, 'Roberto', 1980, 'M', 1880), +(120789, 'Wayne', 1980, 'M', 1842), +(120790, 'Gerald', 1980, 'M', 1819), +(120791, 'Arthur', 1980, 'M', 1817), +(120792, 'Jermaine', 1980, 'M', 1804), +(120793, 'Isaac', 1980, 'M', 1795), +(120794, 'Louis', 1980, 'M', 1790), +(120795, 'Lance', 1980, 'M', 1787), +(120796, 'Roy', 1980, 'M', 1778), +(120797, 'Francisco', 1980, 'M', 1768), +(120798, 'Trevor', 1980, 'M', 1688), +(120799, 'Alex', 1980, 'M', 1677), +(120800, 'Bruce', 1980, 'M', 1651), +(120801, 'Evan', 1980, 'M', 1628), +(120802, 'Jack', 1980, 'M', 1627), +(120803, 'Jordan', 1980, 'M', 1616), +(120804, 'Frederick', 1980, 'M', 1612), +(120805, 'Maurice', 1980, 'M', 1554), +(120806, 'Darren', 1980, 'M', 1530), +(120807, 'Mitchell', 1980, 'M', 1521), +(120808, 'Ruben', 1980, 'M', 1488), +(120809, 'Reginald', 1980, 'M', 1479), +(120810, 'Jaime', 1980, 'M', 1464), +(120811, 'Darrell', 1980, 'M', 1462), +(120812, 'Hector', 1980, 'M', 1448), +(120813, 'Omar', 1980, 'M', 1447), +(120814, 'Jonathon', 1980, 'M', 1432), +(120815, 'Angel', 1980, 'M', 1418), +(120816, 'Ronnie', 1980, 'M', 1409), +(120817, 'Johnathan', 1980, 'M', 1406), +(120818, 'Barry', 1980, 'M', 1400), +(120819, 'Oscar', 1980, 'M', 1396), +(120820, 'Eddie', 1980, 'M', 1389), +(120821, 'Jerome', 1980, 'M', 1383), +(120822, 'Terrance', 1980, 'M', 1381), +(120823, 'Ernest', 1980, 'M', 1370), +(120824, 'Neil', 1980, 'M', 1349), +(120825, 'Damien', 1980, 'M', 1339), +(120826, 'Mathew', 1980, 'M', 1334), +(120827, 'Shannon', 1980, 'M', 1330), +(120828, 'Calvin', 1980, 'M', 1325), +(120829, 'Javier', 1980, 'M', 1305), +(120830, 'Alejandro', 1980, 'M', 1302), +(120831, 'Edwin', 1980, 'M', 1297), +(120832, 'Garrett', 1980, 'M', 1287), +(120833, 'Eugene', 1980, 'M', 1286), +(120834, 'Raul', 1980, 'M', 1285), +(120835, 'Kurt', 1980, 'M', 1283), +(120836, 'Leonard', 1980, 'M', 1277), +(120837, 'Clayton', 1980, 'M', 1275), +(120838, 'Clint', 1980, 'M', 1274), +(120839, 'Fernando', 1980, 'M', 1263), +(120840, 'Tommy', 1980, 'M', 1258), +(120841, 'Dale', 1980, 'M', 1238), +(120842, 'Geoffrey', 1980, 'M', 1226), +(120843, 'Marvin', 1980, 'M', 1223), +(120844, 'Steve', 1980, 'M', 1222), +(120845, 'Clifford', 1980, 'M', 1214), +(120846, 'Beau', 1980, 'M', 1206), +(120847, 'Colin', 1980, 'M', 1197), +(120848, 'Theodore', 1980, 'M', 1196), +(120849, 'Tyrone', 1980, 'M', 1195), +(120850, 'Harold', 1980, 'M', 1194), +(120851, 'Rafael', 1980, 'M', 1185), +(120852, 'Kelly', 1980, 'M', 1184), +(120853, 'Terrence', 1980, 'M', 1180), +(120854, 'Austin', 1980, 'M', 1166), +(120855, 'Joey', 1980, 'M', 1153), +(120856, 'Jarrod', 1980, 'M', 1145), +(120857, 'Glenn', 1980, 'M', 1144), +(120858, 'Ramon', 1980, 'M', 1142), +(120859, 'Cameron', 1980, 'M', 1140), +(120860, 'Grant', 1980, 'M', 1106), +(120861, 'Melvin', 1980, 'M', 1104), +(120862, 'Brendan', 1980, 'M', 1102), +(120863, 'Jessie', 1980, 'M', 1097), +(120864, 'Stanley', 1980, 'M', 1094), +(120865, 'Armando', 1980, 'M', 1090), +(120866, 'Pedro', 1980, 'M', 1088), +(120867, 'Dwayne', 1980, 'M', 1067), +(120868, 'Karl', 1980, 'M', 1057), +(120869, 'Levi', 1980, 'M', 1054), +(120870, 'Eduardo', 1980, 'M', 1049), +(120871, 'Micah', 1980, 'M', 1048), +(120872, 'Ross', 1980, 'M', 1041), +(120873, 'Ralph', 1980, 'M', 1038), +(120874, 'Byron', 1980, 'M', 1025), +(120875, 'Dominic', 1980, 'M', 1020), +(120876, 'Marco', 1980, 'M', 1009), +(120877, 'Chris', 1980, 'M', 986), +(120878, 'Caleb', 1980, 'M', 984), +(120879, 'Devin', 1980, 'M', 981), +(120880, 'Andy', 1980, 'M', 968), +(120881, 'Blake', 1980, 'M', 968), +(120882, 'Sergio', 1980, 'M', 952), +(120883, 'Noah', 1980, 'M', 929), +(120884, 'Erick', 1980, 'M', 928), +(120885, 'Howard', 1980, 'M', 923), +(120886, 'Francis', 1980, 'M', 921), +(120887, 'Tyson', 1980, 'M', 915), +(120888, 'Cedric', 1980, 'M', 907), +(120889, 'Heath', 1980, 'M', 906), +(120890, 'Ivan', 1980, 'M', 905), +(120891, 'Leon', 1980, 'M', 903), +(120892, 'Alberto', 1980, 'M', 900), +(120893, 'Earl', 1980, 'M', 899), +(120894, 'Damon', 1980, 'M', 896), +(120895, 'Edgar', 1980, 'M', 886), +(120896, 'Franklin', 1980, 'M', 877), +(120897, 'Alvin', 1980, 'M', 869), +(120898, 'Alfred', 1980, 'M', 864), +(120899, 'Clarence', 1980, 'M', 860), +(120900, 'Courtney', 1980, 'M', 860), +(120901, 'Harry', 1980, 'M', 858), +(120902, 'Darryl', 1980, 'M', 849), +(120903, 'Nicolas', 1980, 'M', 849), +(120904, 'Ray', 1980, 'M', 841), +(120905, 'Gilbert', 1980, 'M', 833), +(120906, 'Marshall', 1980, 'M', 826), +(120907, 'Dylan', 1980, 'M', 823), +(120908, 'Cesar', 1980, 'M', 822), +(120909, 'Alfredo', 1980, 'M', 820), +(120910, 'Dean', 1980, 'M', 817), +(120911, 'Warren', 1980, 'M', 808), +(120912, 'Clifton', 1980, 'M', 804), +(120913, 'Julio', 1980, 'M', 793), +(120914, 'Enrique', 1980, 'M', 791), +(120915, 'Kirk', 1980, 'M', 788), +(120916, 'Abraham', 1980, 'M', 779), +(120917, 'Bernard', 1980, 'M', 771), +(120918, 'Arturo', 1980, 'M', 766), +(120919, 'Daryl', 1980, 'M', 764), +(120920, 'Preston', 1980, 'M', 763), +(120921, 'Roderick', 1980, 'M', 758), +(120922, 'Elijah', 1980, 'M', 754), +(120923, 'Julian', 1980, 'M', 751), +(120924, 'Antoine', 1980, 'M', 747), +(120925, 'Ashley', 1980, 'M', 746), +(120926, 'Orlando', 1980, 'M', 743), +(120927, 'Andres', 1980, 'M', 737), +(120928, 'Wade', 1980, 'M', 735), +(120929, 'Norman', 1980, 'M', 726), +(120930, 'Duane', 1980, 'M', 720), +(120931, 'Drew', 1980, 'M', 719), +(120932, 'Spencer', 1980, 'M', 719), +(120933, 'Morgan', 1980, 'M', 709), +(120934, 'Ethan', 1980, 'M', 706), +(120935, 'Vernon', 1980, 'M', 705), +(120936, 'Leroy', 1980, 'M', 698), +(120937, 'Lonnie', 1980, 'M', 695), +(120938, 'Demetrius', 1980, 'M', 694), +(120939, 'Brock', 1980, 'M', 687), +(120940, 'Nelson', 1980, 'M', 687), +(120941, 'Dallas', 1980, 'M', 680), +(120942, 'Nickolas', 1980, 'M', 680), +(120943, 'Rene', 1980, 'M', 675), +(120944, 'Israel', 1980, 'M', 663), +(120945, 'Bryce', 1980, 'M', 659), +(120946, 'Salvador', 1980, 'M', 650), +(120947, 'Toby', 1980, 'M', 649), +(120948, 'Lewis', 1980, 'M', 647), +(120949, 'Ernesto', 1980, 'M', 645), +(120950, 'Gerardo', 1980, 'M', 636), +(120951, 'Bradford', 1980, 'M', 629), +(120952, 'Marcos', 1980, 'M', 628), +(120953, 'Fredrick', 1980, 'M', 621), +(120954, 'Taylor', 1980, 'M', 617), +(120955, 'Lamar', 1980, 'M', 613), +(120956, 'Bryant', 1980, 'M', 612), +(120957, 'Kelvin', 1980, 'M', 612), +(120958, 'Jayson', 1980, 'M', 606), +(120959, 'Terrell', 1980, 'M', 605), +(120960, 'Jody', 1980, 'M', 604), +(120961, 'Angelo', 1980, 'M', 601), +(120962, 'Glen', 1980, 'M', 601), +(120963, 'Don', 1980, 'M', 599), +(120964, 'Rocky', 1980, 'M', 598), +(120965, 'Charlie', 1980, 'M', 596), +(120966, 'Neal', 1980, 'M', 593), +(120967, 'Damian', 1980, 'M', 584), +(120968, 'Fred', 1980, 'M', 584), +(120969, 'Lorenzo', 1980, 'M', 584), +(120970, 'Jamal', 1980, 'M', 580), +(120971, 'Trent', 1980, 'M', 578), +(120972, 'Rickey', 1980, 'M', 576), +(120973, 'Kenny', 1980, 'M', 572), +(120974, 'Herbert', 1980, 'M', 569), +(120975, 'Jake', 1980, 'M', 567), +(120976, 'Rodolfo', 1980, 'M', 563), +(120977, 'Lloyd', 1980, 'M', 562), +(120978, 'Stuart', 1980, 'M', 561), +(120979, 'Greg', 1980, 'M', 557), +(120980, 'Donnie', 1980, 'M', 551), +(120981, 'Derick', 1980, 'M', 546), +(120982, 'Brady', 1980, 'M', 541), +(120983, 'Jeff', 1980, 'M', 541), +(120984, 'Allan', 1980, 'M', 538), +(120985, 'Felix', 1980, 'M', 538), +(120986, 'Marlon', 1980, 'M', 538), +(120987, 'Eli', 1980, 'M', 536), +(120988, 'Gordon', 1980, 'M', 533), +(120989, 'Quincy', 1980, 'M', 528), +(120990, 'Desmond', 1980, 'M', 527), +(120991, 'Logan', 1980, 'M', 520), +(120992, 'Ben', 1980, 'M', 518), +(120993, 'Darnell', 1980, 'M', 516), +(120994, 'Dwight', 1980, 'M', 516), +(120995, 'Julius', 1980, 'M', 514), +(120996, 'Dana', 1980, 'M', 507), +(120997, 'Leslie', 1980, 'M', 507), +(120998, 'Rusty', 1980, 'M', 504), +(120999, 'Kent', 1980, 'M', 499), +(121000, 'Darius', 1980, 'M', 496), +(121001, 'Rudy', 1980, 'M', 496), +(121002, 'Dusty', 1980, 'M', 495), +(121003, 'Pablo', 1980, 'M', 493), +(121004, 'Freddie', 1980, 'M', 490), +(121005, 'Lamont', 1980, 'M', 485), +(121006, 'Jimmie', 1980, 'M', 484), +(121007, 'Max', 1980, 'M', 483), +(121008, 'Roland', 1980, 'M', 480), +(121009, 'Abel', 1980, 'M', 475), +(121010, 'Leo', 1980, 'M', 475), +(121011, 'Quentin', 1980, 'M', 471), +(121012, 'Kendrick', 1980, 'M', 470), +(121013, 'Lester', 1980, 'M', 466), +(121014, 'Josh', 1980, 'M', 460), +(121015, 'Kareem', 1980, 'M', 460), +(121016, 'Noel', 1980, 'M', 460), +(121017, 'Rolando', 1980, 'M', 459), +(121018, 'Tracy', 1980, 'M', 459), +(121019, 'Jackie', 1980, 'M', 457), +(121020, 'Jamar', 1980, 'M', 457), +(121021, 'Darin', 1980, 'M', 455), +(121022, 'Simon', 1980, 'M', 455), +(121023, 'Gene', 1980, 'M', 452), +(121024, 'Alfonso', 1980, 'M', 447), +(121025, 'Jamaal', 1980, 'M', 446), +(121026, 'Graham', 1980, 'M', 445), +(121027, 'Johnnie', 1980, 'M', 445), +(121028, 'Perry', 1980, 'M', 445), +(121029, 'Floyd', 1980, 'M', 444), +(121030, 'Scotty', 1980, 'M', 444), +(121031, 'Carlton', 1980, 'M', 443), +(121032, 'Robin', 1980, 'M', 443), +(121033, 'Rick', 1980, 'M', 442), +(121034, 'Dewayne', 1980, 'M', 441), +(121035, 'Cornelius', 1980, 'M', 438), +(121036, 'Devon', 1980, 'M', 438), +(121037, 'Kerry', 1980, 'M', 432), +(121038, 'Chadwick', 1980, 'M', 426), +(121039, 'Guy', 1980, 'M', 417), +(121040, 'Gilberto', 1980, 'M', 414), +(121041, 'Bret', 1980, 'M', 411), +(121042, 'Felipe', 1980, 'M', 411), +(121043, 'Emmanuel', 1980, 'M', 410), +(121044, 'Cecil', 1980, 'M', 408), +(121045, 'Mike', 1980, 'M', 408), +(121046, 'Zachariah', 1980, 'M', 406), +(121047, 'Antwan', 1980, 'M', 403), +(121048, 'Rogelio', 1980, 'M', 403), +(121049, 'Milton', 1980, 'M', 402), +(121050, 'Branden', 1980, 'M', 398), +(121051, 'Frankie', 1980, 'M', 398), +(121052, 'Terence', 1980, 'M', 397), +(121053, 'Guillermo', 1980, 'M', 395), +(121054, 'Jonah', 1980, 'M', 394), +(121055, 'Oliver', 1980, 'M', 394), +(121056, 'Ty', 1980, 'M', 394), +(121057, 'Jarrett', 1980, 'M', 393), +(121058, 'Loren', 1980, 'M', 392), +(121059, 'Kurtis', 1980, 'M', 390), +(121060, 'Waylon', 1980, 'M', 388), +(121061, 'Clyde', 1980, 'M', 387), +(121062, 'Gustavo', 1980, 'M', 387), +(121063, 'Dante', 1980, 'M', 386), +(121064, 'Ismael', 1980, 'M', 386), +(121065, 'Elias', 1980, 'M', 385), +(121066, 'Johnathon', 1980, 'M', 380), +(121067, 'Landon', 1980, 'M', 376), +(121068, 'Jarod', 1980, 'M', 371), +(121069, 'Kendall', 1980, 'M', 370), +(121070, 'Herman', 1980, 'M', 367), +(121071, 'Salvatore', 1980, 'M', 366), +(121072, 'Sam', 1980, 'M', 366), +(121073, 'Alonzo', 1980, 'M', 364), +(121074, 'Ted', 1980, 'M', 364), +(121075, 'Saul', 1980, 'M', 363), +(121076, 'Collin', 1980, 'M', 360), +(121077, 'Fabian', 1980, 'M', 360), +(121078, 'Jerrod', 1980, 'M', 358), +(121079, 'Tomas', 1980, 'M', 358), +(121080, 'Trenton', 1980, 'M', 357), +(121081, 'Isaiah', 1980, 'M', 355), +(121082, 'Rory', 1980, 'M', 355), +(121083, 'Sidney', 1980, 'M', 353), +(121084, 'Gavin', 1980, 'M', 352), +(121085, 'Owen', 1980, 'M', 352), +(121086, 'Alexis', 1980, 'M', 350), +(121087, 'Chester', 1980, 'M', 350), +(121088, 'Clay', 1980, 'M', 350), +(121089, 'Moses', 1980, 'M', 350), +(121090, 'Nathanael', 1980, 'M', 347), +(121091, 'Bryon', 1980, 'M', 345), +(121092, 'Robbie', 1980, 'M', 345), +(121093, 'Donovan', 1980, 'M', 343), +(121094, 'Gerard', 1980, 'M', 343), +(121095, 'Leonardo', 1980, 'M', 343), +(121096, 'Sammy', 1980, 'M', 343), +(121097, 'Emanuel', 1980, 'M', 342), +(121098, 'Esteban', 1980, 'M', 341), +(121099, 'Jonas', 1980, 'M', 341), +(121100, 'Jarvis', 1980, 'M', 340), +(121101, 'Hugo', 1980, 'M', 339), +(121102, 'Mason', 1980, 'M', 337), +(121103, 'Everett', 1980, 'M', 336), +(121104, 'Dan', 1980, 'M', 334), +(121105, 'Elliott', 1980, 'M', 333), +(121106, 'Forrest', 1980, 'M', 333), +(121107, 'Nolan', 1980, 'M', 329), +(121108, 'Josue', 1980, 'M', 328), +(121109, 'Xavier', 1980, 'M', 328), +(121110, 'Dane', 1980, 'M', 322), +(121111, 'Sheldon', 1980, 'M', 321), +(121112, 'Dominick', 1980, 'M', 320), +(121113, 'Jarred', 1980, 'M', 319), +(121114, 'Rashad', 1980, 'M', 318), +(121115, 'Kory', 1980, 'M', 317), +(121116, 'Nick', 1980, 'M', 317), +(121117, 'Wendell', 1980, 'M', 317), +(121118, 'Ramiro', 1980, 'M', 313), +(121119, 'Marquis', 1980, 'M', 311), +(121120, 'Myron', 1980, 'M', 310), +(121121, 'Tanner', 1980, 'M', 310), +(121122, 'Garry', 1980, 'M', 309), +(121123, 'Randolph', 1980, 'M', 308), +(121124, 'Guadalupe', 1980, 'M', 307), +(121125, 'Marty', 1980, 'M', 307), +(121126, 'Lionel', 1980, 'M', 304), +(121127, 'Sherman', 1980, 'M', 304), +(121128, 'Jim', 1980, 'M', 303), +(121129, 'Stephan', 1980, 'M', 303), +(121130, 'Gregg', 1980, 'M', 302), +(121131, 'Rex', 1980, 'M', 300), +(121132, 'Reynaldo', 1980, 'M', 299), +(121133, 'Miles', 1980, 'M', 298), +(121134, 'Benny', 1980, 'M', 297), +(121135, 'Jerod', 1980, 'M', 296), +(121136, 'Otis', 1980, 'M', 296), +(121137, 'Ron', 1980, 'M', 295), +(121138, 'Reuben', 1980, 'M', 294), +(121139, 'Jess', 1980, 'M', 292), +(121140, 'Brooks', 1980, 'M', 289), +(121141, 'Noe', 1980, 'M', 288), +(121142, 'Harvey', 1980, 'M', 285), +(121143, 'Moises', 1980, 'M', 285), +(121144, 'Anton', 1980, 'M', 284), +(121145, 'Jackson', 1980, 'M', 284), +(121146, 'Wilson', 1980, 'M', 284), +(121147, 'Darrin', 1980, 'M', 283), +(121148, 'Efrain', 1980, 'M', 283), +(121149, 'Ira', 1980, 'M', 282), +(121150, 'Harley', 1980, 'M', 281), +(121151, 'Pierre', 1980, 'M', 281), +(121152, 'Deon', 1980, 'M', 277), +(121153, 'Jamel', 1980, 'M', 276), +(121154, 'Arnold', 1980, 'M', 275), +(121155, 'Aron', 1980, 'M', 275), +(121156, 'Elliot', 1980, 'M', 274), +(121157, 'Cole', 1980, 'M', 272), +(121158, 'Dion', 1980, 'M', 272), +(121159, 'Humberto', 1980, 'M', 272), +(121160, 'Donnell', 1980, 'M', 271), +(121161, 'Erich', 1980, 'M', 271), +(121162, 'Joaquin', 1980, 'M', 271), +(121163, 'Will', 1980, 'M', 271), +(121164, 'Edmund', 1980, 'M', 270), +(121165, 'Deandre', 1980, 'M', 269), +(121166, 'Lyle', 1980, 'M', 269), +(121167, 'Blaine', 1980, 'M', 268), +(121168, 'Donte', 1980, 'M', 268), +(121169, 'Quinton', 1980, 'M', 268), +(121170, 'Thaddeus', 1980, 'M', 268), +(121171, 'Claude', 1980, 'M', 267), +(121172, 'Erin', 1980, 'M', 265), +(121173, 'Dexter', 1980, 'M', 263), +(121174, 'Amos', 1980, 'M', 262), +(121175, 'Clark', 1980, 'M', 262), +(121176, 'Colby', 1980, 'M', 261), +(121177, 'Malcolm', 1980, 'M', 258), +(121178, 'Roman', 1980, 'M', 258), +(121179, 'Donny', 1980, 'M', 257), +(121180, 'Josiah', 1980, 'M', 255), +(121181, 'Ali', 1980, 'M', 253), +(121182, 'Bill', 1980, 'M', 253), +(121183, 'Alton', 1980, 'M', 251), +(121184, 'Earnest', 1980, 'M', 251), +(121185, 'Santiago', 1980, 'M', 251), +(121186, 'Teddy', 1980, 'M', 251), +(121187, 'Damion', 1980, 'M', 250), +(121188, 'Joesph', 1980, 'M', 250), +(121189, 'Stewart', 1980, 'M', 246), +(121190, 'Hunter', 1980, 'M', 244), +(121191, 'Tobias', 1980, 'M', 244), +(121192, 'Reggie', 1980, 'M', 243), +(121193, 'Wallace', 1980, 'M', 242), +(121194, 'Sterling', 1980, 'M', 241), +(121195, 'Blair', 1980, 'M', 240), +(121196, 'Kasey', 1980, 'M', 240), +(121197, 'Robby', 1980, 'M', 240), +(121198, 'Ariel', 1980, 'M', 239), +(121199, 'Jeromy', 1980, 'M', 238), +(121200, 'Adan', 1980, 'M', 237), +(121201, 'Tom', 1980, 'M', 237), +(121202, 'Vicente', 1980, 'M', 237), +(121203, 'Ignacio', 1980, 'M', 236), +(121204, 'Ahmad', 1980, 'M', 235), +(121205, 'Timmy', 1980, 'M', 235), +(121206, 'Matt', 1980, 'M', 234), +(121207, 'Randal', 1980, 'M', 234), +(121208, 'Stefan', 1980, 'M', 234), +(121209, 'Stacy', 1980, 'M', 233), +(121210, 'Bo', 1980, 'M', 232), +(121211, 'Jeramy', 1980, 'M', 231), +(121212, 'Wyatt', 1980, 'M', 231), +(121213, 'Avery', 1980, 'M', 230), +(121214, 'Elvis', 1980, 'M', 230), +(121215, 'Scottie', 1980, 'M', 229), +(121216, 'Willis', 1980, 'M', 228), +(121217, 'Hugh', 1980, 'M', 227), +(121218, 'Curt', 1980, 'M', 226), +(121219, 'Demarcus', 1980, 'M', 224), +(121220, 'Santos', 1980, 'M', 221), +(121221, 'Sonny', 1980, 'M', 221), +(121222, 'Kristofer', 1980, 'M', 220), +(121223, 'Zachery', 1980, 'M', 220), +(121224, 'Pete', 1980, 'M', 219), +(121225, 'Quinn', 1980, 'M', 218), +(121226, 'Jed', 1980, 'M', 217), +(121227, 'Jovan', 1980, 'M', 217), +(121228, 'Korey', 1980, 'M', 216), +(121229, 'Rico', 1980, 'M', 216), +(121230, 'Freddy', 1980, 'M', 215), +(121231, 'Rodrick', 1980, 'M', 215), +(121232, 'Bradly', 1980, 'M', 214), +(121233, 'Jean', 1980, 'M', 214), +(121234, 'Kris', 1980, 'M', 214), +(121235, 'Marques', 1980, 'M', 214), +(121236, 'Mickey', 1980, 'M', 214), +(121237, 'Solomon', 1980, 'M', 214), +(121238, 'Bart', 1980, 'M', 211), +(121239, 'Conrad', 1980, 'M', 211), +(121240, 'Reid', 1980, 'M', 211), +(121241, 'Hans', 1980, 'M', 210), +(121242, 'Jennifer', 1980, 'M', 210), +(121243, 'Rigoberto', 1980, 'M', 210), +(121244, 'Brendon', 1980, 'M', 209), +(121245, 'Tristan', 1980, 'M', 209), +(121246, 'Bennie', 1980, 'M', 208), +(121247, 'Leland', 1980, 'M', 208), +(121248, 'Chance', 1980, 'M', 207), +(121249, 'Issac', 1980, 'M', 207), +(121250, 'Roosevelt', 1980, 'M', 207), +(121251, 'Jedediah', 1980, 'M', 206), +(121252, 'Luther', 1980, 'M', 206), +(121253, 'Wilfredo', 1980, 'M', 206), +(121254, 'Jeremie', 1980, 'M', 205), +(121255, 'Darrel', 1980, 'M', 204), +(121256, 'Emilio', 1980, 'M', 204), +(121257, 'Marion', 1980, 'M', 204), +(121258, 'Sylvester', 1980, 'M', 204), +(121259, 'Giovanni', 1980, 'M', 203), +(121260, 'Weston', 1980, 'M', 203), +(121261, 'Virgil', 1980, 'M', 202), +(121262, 'Darrick', 1980, 'M', 200), +(121263, 'Conor', 1980, 'M', 198), +(121264, 'Reed', 1980, 'M', 197), +(121265, 'Cedrick', 1980, 'M', 196), +(121266, 'Morris', 1980, 'M', 196), +(121267, 'Rudolph', 1980, 'M', 196), +(121268, 'Cary', 1980, 'M', 195), +(121269, 'Jeffry', 1980, 'M', 195), +(121270, 'Tommie', 1980, 'M', 195), +(121271, 'Brice', 1980, 'M', 193), +(121272, 'Diego', 1980, 'M', 193), +(121273, 'Zane', 1980, 'M', 193), +(121274, 'Jerald', 1980, 'M', 192), +(121275, 'Jerad', 1980, 'M', 190), +(121276, 'Nathanial', 1980, 'M', 190), +(121277, 'Brenton', 1980, 'M', 189), +(121278, 'Barrett', 1980, 'M', 188), +(121279, 'Maxwell', 1980, 'M', 188), +(121280, 'Heriberto', 1980, 'M', 187), +(121281, 'Derik', 1980, 'M', 186), +(121282, 'Jedidiah', 1980, 'M', 185), +(121283, 'Jamey', 1980, 'M', 184), +(121284, 'Arron', 1980, 'M', 183), +(121285, 'Daren', 1980, 'M', 182), +(121286, 'Jamison', 1980, 'M', 182), +(121287, 'Keenan', 1980, 'M', 182), +(121288, 'Alvaro', 1980, 'M', 181), +(121289, 'Jeramie', 1980, 'M', 181), +(121290, 'Wilbert', 1980, 'M', 181), +(121291, 'Benito', 1980, 'M', 179), +(121292, 'Rodrigo', 1980, 'M', 179), +(121293, 'Archie', 1980, 'M', 177), +(121294, 'Brain', 1980, 'M', 177), +(121295, 'Jeremey', 1980, 'M', 177), +(121296, 'Marcel', 1980, 'M', 177), +(121297, 'Royce', 1980, 'M', 177), +(121298, 'Aubrey', 1980, 'M', 176), +(121299, 'Winston', 1980, 'M', 176), +(121300, 'Jefferson', 1980, 'M', 175), +(121301, 'Chase', 1980, 'M', 174), +(121302, 'Brant', 1980, 'M', 173), +(121303, 'Ervin', 1980, 'M', 173), +(121304, 'Ellis', 1980, 'M', 172), +(121305, 'Carlo', 1980, 'M', 169), +(121306, 'Leif', 1980, 'M', 169), +(121307, 'Lynn', 1980, 'M', 169), +(121308, 'Carey', 1980, 'M', 168), +(121309, 'Demond', 1980, 'M', 168), +(121310, 'Malik', 1980, 'M', 168), +(121311, 'Mauricio', 1980, 'M', 168), +(121312, 'Dillon', 1980, 'M', 167), +(121313, 'Ezra', 1980, 'M', 167), +(121314, 'Vaughn', 1980, 'M', 167), +(121315, 'Adolfo', 1980, 'M', 166), +(121316, 'Aric', 1980, 'M', 166), +(121317, 'Sebastian', 1980, 'M', 166), +(121318, 'Tim', 1980, 'M', 166), +(121319, 'Dorian', 1980, 'M', 165), +(121320, 'Nigel', 1980, 'M', 165), +(121321, 'Riley', 1980, 'M', 164), +(121322, 'Willard', 1980, 'M', 164), +(121323, 'Jasper', 1980, 'M', 163), +(121324, 'Elmer', 1980, 'M', 162), +(121325, 'Tyree', 1980, 'M', 162), +(121326, 'Cyrus', 1980, 'M', 160), +(121327, 'Dave', 1980, 'M', 160), +(121328, 'Demario', 1980, 'M', 160), +(121329, 'Laurence', 1980, 'M', 160), +(121330, 'Deshawn', 1980, 'M', 159), +(121331, 'Edmond', 1980, 'M', 159), +(121332, 'Jasen', 1980, 'M', 159), +(121333, 'Chauncey', 1980, 'M', 158), +(121334, 'Jamil', 1980, 'M', 158), +(121335, 'Raphael', 1980, 'M', 158), +(121336, 'Galen', 1980, 'M', 157), +(121337, 'Stacey', 1980, 'M', 157), +(121338, 'Tory', 1980, 'M', 157), +(121339, 'Agustin', 1980, 'M', 156), +(121340, 'Carson', 1980, 'M', 156), +(121341, 'Raheem', 1980, 'M', 156), +(121342, 'Leonel', 1980, 'M', 155), +(121343, 'Monte', 1980, 'M', 154), +(121344, 'Nicholaus', 1980, 'M', 154), +(121345, 'Dereck', 1980, 'M', 153), +(121346, 'Hubert', 1980, 'M', 153), +(121347, 'Jered', 1980, 'M', 152), +(121348, 'Van', 1980, 'M', 152), +(121349, 'Rhett', 1980, 'M', 151), +(121350, 'Shayne', 1980, 'M', 151), +(121351, 'Josef', 1980, 'M', 150), +(121352, 'Vance', 1980, 'M', 150), +(121353, 'Antwon', 1980, 'M', 149), +(121354, 'Rocco', 1980, 'M', 149), +(121355, 'Rufus', 1980, 'M', 149), +(121356, 'Dirk', 1980, 'M', 148), +(121357, 'Kristian', 1980, 'M', 148), +(121358, 'Mack', 1980, 'M', 148), +(121359, 'Abram', 1980, 'M', 147), +(121360, 'Antione', 1980, 'M', 147), +(121361, 'Ari', 1980, 'M', 147), +(121362, 'Braden', 1980, 'M', 147), +(121363, 'Brannon', 1980, 'M', 147), +(121364, 'Domingo', 1980, 'M', 147), +(121365, 'Lane', 1980, 'M', 147), +(121366, 'Louie', 1980, 'M', 147), +(121367, 'Seneca', 1980, 'M', 147), +(121368, 'Andrea', 1980, 'M', 146), +(121369, 'Gino', 1980, 'M', 146), +(121370, 'Jacques', 1980, 'M', 146), +(121371, 'Lukas', 1980, 'M', 146), +(121372, 'Bernardo', 1980, 'M', 144), +(121373, 'Cliff', 1980, 'M', 144), +(121374, 'Cortney', 1980, 'M', 144), +(121375, 'Garret', 1980, 'M', 144), +(121376, 'Rickie', 1980, 'M', 144), +(121377, 'Aldo', 1980, 'M', 143), +(121378, 'Brennan', 1980, 'M', 143), +(121379, 'Grady', 1980, 'M', 143), +(121380, 'Ken', 1980, 'M', 142), +(121381, 'Kristoffer', 1980, 'M', 142), +(121382, 'Octavio', 1980, 'M', 142), +(121383, 'Whitney', 1980, 'M', 141), +(121384, 'Cornell', 1980, 'M', 140), +(121385, 'Davin', 1980, 'M', 140), +(121386, 'Buddy', 1980, 'M', 139), +(121387, 'Cleveland', 1980, 'M', 139), +(121388, 'Davis', 1980, 'M', 139), +(121389, 'Denny', 1980, 'M', 139), +(121390, 'Melissa', 1980, 'M', 138), +(121391, 'Scot', 1980, 'M', 138), +(121392, 'Chaz', 1980, 'M', 137), +(121393, 'Delbert', 1980, 'M', 137), +(121394, 'Markus', 1980, 'M', 137), +(121395, 'Bryson', 1980, 'M', 136), +(121396, 'Gregorio', 1980, 'M', 136), +(121397, 'Trey', 1980, 'M', 136), +(121398, 'Asa', 1980, 'M', 135), +(121399, 'Dewey', 1980, 'M', 135), +(121400, 'Harrison', 1980, 'M', 135), +(121401, 'Judson', 1980, 'M', 135), +(121402, 'Shelby', 1980, 'M', 134), +(121403, 'Parker', 1980, 'M', 133), +(121404, 'Tavares', 1980, 'M', 133), +(121405, 'Zackary', 1980, 'M', 133), +(121406, 'Elton', 1980, 'M', 132), +(121407, 'Amir', 1980, 'M', 131), +(121408, 'Deangelo', 1980, 'M', 131), +(121409, 'Federico', 1980, 'M', 131), +(121410, 'Jamin', 1980, 'M', 131), +(121411, 'Prince', 1980, 'M', 131), +(121412, 'Rodger', 1980, 'M', 131), +(121413, 'Dario', 1980, 'M', 130), +(121414, 'Hassan', 1980, 'M', 130), +(121415, 'Stevie', 1980, 'M', 130), +(121416, 'Daron', 1980, 'M', 129), +(121417, 'Alec', 1980, 'M', 128), +(121418, 'Francesco', 1980, 'M', 128), +(121419, 'Jereme', 1980, 'M', 128), +(121420, 'Tyrell', 1980, 'M', 128), +(121421, 'Nikolas', 1980, 'M', 127), +(121422, 'Yoel', 1980, 'M', 127), +(121423, 'Mikel', 1980, 'M', 126), +(121424, 'Osvaldo', 1980, 'M', 126), +(121425, 'Edwardo', 1980, 'M', 125), +(121426, 'Jessica', 1980, 'M', 125), +(121427, 'Tyron', 1980, 'M', 125), +(121428, 'Dominique', 1980, 'M', 124), +(121429, 'Ernie', 1980, 'M', 124), +(121430, 'Percy', 1980, 'M', 124), +(121431, 'Raymundo', 1980, 'M', 124), +(121432, 'Denis', 1980, 'M', 123), +(121433, 'Gonzalo', 1980, 'M', 123), +(121434, 'Horace', 1980, 'M', 123), +(121435, 'Broderick', 1980, 'M', 122), +(121436, 'Deric', 1980, 'M', 122), +(121437, 'Johnpaul', 1980, 'M', 122), +(121438, 'Juston', 1980, 'M', 122), +(121439, 'Titus', 1980, 'M', 122), +(121440, 'Kenton', 1980, 'M', 121), +(121441, 'Shelton', 1980, 'M', 121), +(121442, 'Ulysses', 1980, 'M', 121), +(121443, 'Bennett', 1980, 'M', 120), +(121444, 'Marlin', 1980, 'M', 120), +(121445, 'Russel', 1980, 'M', 120), +(121446, 'Billie', 1980, 'M', 119), +(121447, 'Dedrick', 1980, 'M', 119), +(121448, 'Junior', 1980, 'M', 119), +(121449, 'Kaleb', 1980, 'M', 119), +(121450, 'Alphonso', 1980, 'M', 118), +(121451, 'Bert', 1980, 'M', 118), +(121452, 'Darwin', 1980, 'M', 118), +(121453, 'Ezekiel', 1980, 'M', 118), +(121454, 'Kip', 1980, 'M', 118), +(121455, 'Shad', 1980, 'M', 118), +(121456, 'Theron', 1980, 'M', 118), +(121457, 'Jaron', 1980, 'M', 117), +(121458, 'Monty', 1980, 'M', 117), +(121459, 'Quintin', 1980, 'M', 117), +(121460, 'Antony', 1980, 'M', 116), +(121461, 'Silas', 1980, 'M', 116), +(121462, 'Delvin', 1980, 'M', 115), +(121463, 'Jerimiah', 1980, 'M', 115), +(121464, 'Randell', 1980, 'M', 115), +(121465, 'Torrey', 1980, 'M', 115), +(121466, 'Errol', 1980, 'M', 114), +(121467, 'Jan', 1980, 'M', 114), +(121468, 'Jermey', 1980, 'M', 114), +(121469, 'Shea', 1980, 'M', 114), +(121470, 'Efren', 1980, 'M', 113), +(121471, 'Elvin', 1980, 'M', 113), +(121472, 'Judd', 1980, 'M', 113), +(121473, 'Elisha', 1980, 'M', 112), +(121474, 'Kim', 1980, 'M', 112), +(121475, 'Liam', 1980, 'M', 112), +(121476, 'Vito', 1980, 'M', 112), +(121477, 'Erwin', 1980, 'M', 111), +(121478, 'Jade', 1980, 'M', 111), +(121479, 'Jameel', 1980, 'M', 111), +(121480, 'Kelley', 1980, 'M', 111), +(121481, 'Lavar', 1980, 'M', 111), +(121482, 'Myles', 1980, 'M', 111), +(121483, 'Coy', 1980, 'M', 110), +(121484, 'Davon', 1980, 'M', 110), +(121485, 'Dejuan', 1980, 'M', 110), +(121486, 'Fidel', 1980, 'M', 110), +(121487, 'Mohammad', 1980, 'M', 110), +(121488, 'Sedrick', 1980, 'M', 110), +(121489, 'Al', 1980, 'M', 109), +(121490, 'Keegan', 1980, 'M', 109), +(121491, 'Paris', 1980, 'M', 109), +(121492, 'Ramsey', 1980, 'M', 109), +(121493, 'August', 1980, 'M', 108), +(121494, 'Cortez', 1980, 'M', 108), +(121495, 'Cristian', 1980, 'M', 108), +(121496, 'Garth', 1980, 'M', 108), +(121497, 'Lowell', 1980, 'M', 108), +(121498, 'Bob', 1980, 'M', 107), +(121499, 'Chadrick', 1980, 'M', 107), +(121500, 'Chet', 1980, 'M', 107), +(121501, 'Emmett', 1980, 'M', 107), +(121502, 'German', 1980, 'M', 107), +(121503, 'Adrain', 1980, 'M', 106), +(121504, 'Augustine', 1980, 'M', 106), +(121505, 'Homer', 1980, 'M', 106), +(121506, 'Irvin', 1980, 'M', 106), +(121507, 'Nestor', 1980, 'M', 106), +(121508, 'Abdul', 1980, 'M', 105), +(121509, 'Anson', 1980, 'M', 105), +(121510, 'Danial', 1980, 'M', 105), +(121511, 'Franco', 1980, 'M', 105), +(121512, 'Kirby', 1980, 'M', 105), +(121513, 'Tremayne', 1980, 'M', 105), +(121514, 'Garrick', 1980, 'M', 104), +(121515, 'Kenyatta', 1980, 'M', 104), +(121516, 'Keon', 1980, 'M', 104), +(121517, 'Ronny', 1980, 'M', 104), +(121518, 'Tremaine', 1980, 'M', 104), +(121519, 'Amit', 1980, 'M', 103), +(121520, 'Brenden', 1980, 'M', 103), +(121521, 'Denver', 1980, 'M', 103), +(121522, 'Donta', 1980, 'M', 103), +(121523, 'Eddy', 1980, 'M', 103), +(121524, 'Forest', 1980, 'M', 103), +(121525, 'Garland', 1980, 'M', 103), +(121526, 'Justen', 1980, 'M', 103), +(121527, 'Moshe', 1980, 'M', 103), +(121528, 'Tucker', 1980, 'M', 103), +(121529, 'Andrae', 1980, 'M', 102), +(121530, 'Andreas', 1980, 'M', 102), +(121531, 'Javon', 1980, 'M', 102), +(121532, 'Mitchel', 1980, 'M', 102), +(121533, 'Ahmed', 1980, 'M', 101), +(121534, 'Eliseo', 1980, 'M', 101), +(121535, 'Jeramiah', 1980, 'M', 101), +(121536, 'Laron', 1980, 'M', 101), +(121537, 'Cale', 1980, 'M', 100), +(121538, 'Carmen', 1980, 'M', 100), +(121539, 'Lazaro', 1980, 'M', 100), +(121540, 'Michelle', 1980, 'M', 100), +(121541, 'Tad', 1980, 'M', 100), +(121542, 'Zackery', 1980, 'M', 100), +(121543, 'Jennifer', 1981, 'F', 57041), +(121544, 'Jessica', 1981, 'F', 42526), +(121545, 'Amanda', 1981, 'F', 34372), +(121546, 'Sarah', 1981, 'F', 28166), +(121547, 'Melissa', 1981, 'F', 28006), +(121548, 'Amy', 1981, 'F', 20339), +(121549, 'Nicole', 1981, 'F', 20312), +(121550, 'Stephanie', 1981, 'F', 20207), +(121551, 'Elizabeth', 1981, 'F', 20171), +(121552, 'Heather', 1981, 'F', 17943), +(121553, 'Michelle', 1981, 'F', 17770), +(121554, 'Rebecca', 1981, 'F', 16733), +(121555, 'Kimberly', 1981, 'F', 16691), +(121556, 'Tiffany', 1981, 'F', 16416), +(121557, 'Angela', 1981, 'F', 15917), +(121558, 'Crystal', 1981, 'F', 15880), +(121559, 'Christina', 1981, 'F', 14395), +(121560, 'Lisa', 1981, 'F', 14292), +(121561, 'Erin', 1981, 'F', 13854), +(121562, 'Amber', 1981, 'F', 13813), +(121563, 'Laura', 1981, 'F', 13291), +(121564, 'Rachel', 1981, 'F', 12587), +(121565, 'Kelly', 1981, 'F', 11878), +(121566, 'Andrea', 1981, 'F', 11680), +(121567, 'April', 1981, 'F', 11403), +(121568, 'Sara', 1981, 'F', 11351), +(121569, 'Mary', 1981, 'F', 11037), +(121570, 'Jamie', 1981, 'F', 10979), +(121571, 'Emily', 1981, 'F', 10800), +(121572, 'Danielle', 1981, 'F', 10032), +(121573, 'Kristin', 1981, 'F', 9736), +(121574, 'Shannon', 1981, 'F', 9226), +(121575, 'Megan', 1981, 'F', 8964), +(121576, 'Ashley', 1981, 'F', 8875), +(121577, 'Lauren', 1981, 'F', 8807), +(121578, 'Erica', 1981, 'F', 8624), +(121579, 'Julie', 1981, 'F', 8565), +(121580, 'Kristen', 1981, 'F', 8541), +(121581, 'Katherine', 1981, 'F', 8432), +(121582, 'Maria', 1981, 'F', 7671), +(121583, 'Brandy', 1981, 'F', 6892), +(121584, 'Christine', 1981, 'F', 6856), +(121585, 'Courtney', 1981, 'F', 6640), +(121586, 'Katie', 1981, 'F', 6599), +(121587, 'Tara', 1981, 'F', 6365), +(121588, 'Alicia', 1981, 'F', 5858), +(121589, 'Lindsay', 1981, 'F', 5844), +(121590, 'Kathryn', 1981, 'F', 5822), +(121591, 'Monica', 1981, 'F', 5783), +(121592, 'Brandi', 1981, 'F', 5524), +(121593, 'Samantha', 1981, 'F', 5519), +(121594, 'Brooke', 1981, 'F', 5331), +(121595, 'Patricia', 1981, 'F', 5284), +(121596, 'Anna', 1981, 'F', 5183), +(121597, 'Carrie', 1981, 'F', 5092), +(121598, 'Leslie', 1981, 'F', 4933), +(121599, 'Allison', 1981, 'F', 4903), +(121600, 'Lindsey', 1981, 'F', 4862), +(121601, 'Cynthia', 1981, 'F', 4859), +(121602, 'Natalie', 1981, 'F', 4857), +(121603, 'Misty', 1981, 'F', 4799), +(121604, 'Vanessa', 1981, 'F', 4747), +(121605, 'Holly', 1981, 'F', 4565), +(121606, 'Karen', 1981, 'F', 4535), +(121607, 'Stacy', 1981, 'F', 4479), +(121608, 'Melanie', 1981, 'F', 4471), +(121609, 'Jacqueline', 1981, 'F', 4334), +(121610, 'Veronica', 1981, 'F', 4314), +(121611, 'Latoya', 1981, 'F', 4266), +(121612, 'Dana', 1981, 'F', 4247), +(121613, 'Susan', 1981, 'F', 4246), +(121614, 'Kristina', 1981, 'F', 4060), +(121615, 'Catherine', 1981, 'F', 4053), +(121616, 'Sandra', 1981, 'F', 4035), +(121617, 'Diana', 1981, 'F', 3970), +(121618, 'Pamela', 1981, 'F', 3881), +(121619, 'Tracy', 1981, 'F', 3868), +(121620, 'Jill', 1981, 'F', 3856), +(121621, 'Dawn', 1981, 'F', 3837), +(121622, 'Tina', 1981, 'F', 3818), +(121623, 'Leah', 1981, 'F', 3807), +(121624, 'Kathleen', 1981, 'F', 3777), +(121625, 'Stacey', 1981, 'F', 3752), +(121626, 'Heidi', 1981, 'F', 3738), +(121627, 'Natasha', 1981, 'F', 3732), +(121628, 'Candice', 1981, 'F', 3696), +(121629, 'Victoria', 1981, 'F', 3690), +(121630, 'Julia', 1981, 'F', 3668), +(121631, 'Valerie', 1981, 'F', 3610), +(121632, 'Wendy', 1981, 'F', 3608), +(121633, 'Lori', 1981, 'F', 3479), +(121634, 'Tanya', 1981, 'F', 3408), +(121635, 'Erika', 1981, 'F', 3396), +(121636, 'Kristy', 1981, 'F', 3264), +(121637, 'Katrina', 1981, 'F', 3258), +(121638, 'Denise', 1981, 'F', 3202), +(121639, 'Teresa', 1981, 'F', 3122), +(121640, 'Renee', 1981, 'F', 2996), +(121641, 'Theresa', 1981, 'F', 2943), +(121642, 'Christy', 1981, 'F', 2941), +(121643, 'Nancy', 1981, 'F', 2909), +(121644, 'Robin', 1981, 'F', 2868), +(121645, 'Monique', 1981, 'F', 2859), +(121646, 'Cassandra', 1981, 'F', 2854), +(121647, 'Anne', 1981, 'F', 2806), +(121648, 'Gina', 1981, 'F', 2799), +(121649, 'Margaret', 1981, 'F', 2791), +(121650, 'Nichole', 1981, 'F', 2773), +(121651, 'Melinda', 1981, 'F', 2772), +(121652, 'Tonya', 1981, 'F', 2758), +(121653, 'Linda', 1981, 'F', 2729), +(121654, 'Brenda', 1981, 'F', 2720), +(121655, 'Alison', 1981, 'F', 2702), +(121656, 'Bethany', 1981, 'F', 2693), +(121657, 'Tamara', 1981, 'F', 2650), +(121658, 'Meghan', 1981, 'F', 2617), +(121659, 'Tammy', 1981, 'F', 2588), +(121660, 'Candace', 1981, 'F', 2578), +(121661, 'Barbara', 1981, 'F', 2531), +(121662, 'Sabrina', 1981, 'F', 2495), +(121663, 'Kara', 1981, 'F', 2437), +(121664, 'Casey', 1981, 'F', 2420), +(121665, 'Jenny', 1981, 'F', 2401), +(121666, 'Jaime', 1981, 'F', 2386), +(121667, 'Beth', 1981, 'F', 2310), +(121668, 'Kelli', 1981, 'F', 2280), +(121669, 'Michele', 1981, 'F', 2270), +(121670, 'Miranda', 1981, 'F', 2240), +(121671, 'Kristi', 1981, 'F', 2206), +(121672, 'Sharon', 1981, 'F', 2152), +(121673, 'Krystal', 1981, 'F', 2133), +(121674, 'Rachael', 1981, 'F', 2132), +(121675, 'Ann', 1981, 'F', 2124), +(121676, 'Cheryl', 1981, 'F', 2117), +(121677, 'Molly', 1981, 'F', 2090), +(121678, 'Mandy', 1981, 'F', 2089), +(121679, 'Jillian', 1981, 'F', 2080), +(121680, 'Colleen', 1981, 'F', 2065), +(121681, 'Latasha', 1981, 'F', 2059), +(121682, 'Meredith', 1981, 'F', 2046), +(121683, 'Tasha', 1981, 'F', 2019), +(121684, 'Alisha', 1981, 'F', 1999), +(121685, 'Marie', 1981, 'F', 1985), +(121686, 'Carolyn', 1981, 'F', 1960), +(121687, 'Kari', 1981, 'F', 1953), +(121688, 'Deanna', 1981, 'F', 1940), +(121689, 'Tabitha', 1981, 'F', 1917), +(121690, 'Rebekah', 1981, 'F', 1905), +(121691, 'Deborah', 1981, 'F', 1904), +(121692, 'Bridget', 1981, 'F', 1902), +(121693, 'Regina', 1981, 'F', 1881), +(121694, 'Kendra', 1981, 'F', 1850), +(121695, 'Krista', 1981, 'F', 1848), +(121696, 'Mindy', 1981, 'F', 1828), +(121697, 'Joanna', 1981, 'F', 1825), +(121698, 'Angel', 1981, 'F', 1815), +(121699, 'Abigail', 1981, 'F', 1812), +(121700, 'Jaclyn', 1981, 'F', 1807), +(121701, 'Virginia', 1981, 'F', 1797), +(121702, 'Carla', 1981, 'F', 1788), +(121703, 'Suzanne', 1981, 'F', 1774), +(121704, 'Morgan', 1981, 'F', 1770), +(121705, 'Cindy', 1981, 'F', 1745), +(121706, 'Trisha', 1981, 'F', 1726), +(121707, 'Brittany', 1981, 'F', 1714), +(121708, 'Donna', 1981, 'F', 1700), +(121709, 'Nina', 1981, 'F', 1697), +(121710, 'Felicia', 1981, 'F', 1629), +(121711, 'Bonnie', 1981, 'F', 1623), +(121712, 'Joy', 1981, 'F', 1621), +(121713, 'Desiree', 1981, 'F', 1606), +(121714, 'Alexis', 1981, 'F', 1585), +(121715, 'Jodi', 1981, 'F', 1580), +(121716, 'Adrienne', 1981, 'F', 1570), +(121717, 'Martha', 1981, 'F', 1570), +(121718, 'Janet', 1981, 'F', 1569), +(121719, 'Yolanda', 1981, 'F', 1564), +(121720, 'Ebony', 1981, 'F', 1553), +(121721, 'Summer', 1981, 'F', 1544), +(121722, 'Priscilla', 1981, 'F', 1539), +(121723, 'Claudia', 1981, 'F', 1528), +(121724, 'Aimee', 1981, 'F', 1506), +(121725, 'Angelica', 1981, 'F', 1502), +(121726, 'Autumn', 1981, 'F', 1495), +(121727, 'Stefanie', 1981, 'F', 1487), +(121728, 'Paula', 1981, 'F', 1480), +(121729, 'Marissa', 1981, 'F', 1450), +(121730, 'Carmen', 1981, 'F', 1448), +(121731, 'Ana', 1981, 'F', 1439), +(121732, 'Hannah', 1981, 'F', 1409), +(121733, 'Jasmine', 1981, 'F', 1400), +(121734, 'Kate', 1981, 'F', 1397), +(121735, 'Caroline', 1981, 'F', 1391), +(121736, 'Lacey', 1981, 'F', 1370), +(121737, 'Robyn', 1981, 'F', 1367), +(121738, 'Kristine', 1981, 'F', 1360), +(121739, 'Jenna', 1981, 'F', 1359), +(121740, 'Shawna', 1981, 'F', 1358), +(121741, 'Rhonda', 1981, 'F', 1356), +(121742, 'Toni', 1981, 'F', 1351), +(121743, 'Cristina', 1981, 'F', 1345), +(121744, 'Debra', 1981, 'F', 1342), +(121745, 'Janelle', 1981, 'F', 1317), +(121746, 'Whitney', 1981, 'F', 1302), +(121747, 'Audrey', 1981, 'F', 1285), +(121748, 'Diane', 1981, 'F', 1271), +(121749, 'Sherry', 1981, 'F', 1266), +(121750, 'Ruth', 1981, 'F', 1265), +(121751, 'Cara', 1981, 'F', 1261), +(121752, 'Shanna', 1981, 'F', 1255), +(121753, 'Sophia', 1981, 'F', 1232), +(121754, 'Shelly', 1981, 'F', 1229), +(121755, 'Rosa', 1981, 'F', 1225), +(121756, 'Cassie', 1981, 'F', 1224), +(121757, 'Laurie', 1981, 'F', 1224), +(121758, 'Naomi', 1981, 'F', 1223), +(121759, 'Sheila', 1981, 'F', 1216), +(121760, 'Abby', 1981, 'F', 1211), +(121761, 'Jessie', 1981, 'F', 1210), +(121762, 'Alexandra', 1981, 'F', 1203), +(121763, 'Tamika', 1981, 'F', 1187), +(121764, 'Kellie', 1981, 'F', 1177), +(121765, 'Melody', 1981, 'F', 1176), +(121766, 'Marisa', 1981, 'F', 1168), +(121767, 'Jacquelyn', 1981, 'F', 1148), +(121768, 'Sonya', 1981, 'F', 1138), +(121769, 'Sonia', 1981, 'F', 1130), +(121770, 'Alyssa', 1981, 'F', 1129), +(121771, 'Gloria', 1981, 'F', 1109), +(121772, 'Leigh', 1981, 'F', 1099), +(121773, 'Rose', 1981, 'F', 1096), +(121774, 'Jeanette', 1981, 'F', 1088), +(121775, 'Yvonne', 1981, 'F', 1080), +(121776, 'Terri', 1981, 'F', 1067), +(121777, 'Stacie', 1981, 'F', 1063), +(121778, 'Anita', 1981, 'F', 1054), +(121779, 'Adriana', 1981, 'F', 1043), +(121780, 'Carol', 1981, 'F', 1042), +(121781, 'Tracey', 1981, 'F', 1038), +(121782, 'Leticia', 1981, 'F', 1036), +(121783, 'Nikki', 1981, 'F', 1036), +(121784, 'Christie', 1981, 'F', 1032), +(121785, 'Evelyn', 1981, 'F', 1029), +(121786, 'Kerri', 1981, 'F', 1024), +(121787, 'Olivia', 1981, 'F', 1023), +(121788, 'Tia', 1981, 'F', 1010), +(121789, 'Sylvia', 1981, 'F', 1009), +(121790, 'Charlene', 1981, 'F', 1004), +(121791, 'Keri', 1981, 'F', 999), +(121792, 'Becky', 1981, 'F', 993), +(121793, 'Latonya', 1981, 'F', 993), +(121794, 'Karla', 1981, 'F', 985), +(121795, 'Annie', 1981, 'F', 973), +(121796, 'Kristie', 1981, 'F', 972), +(121797, 'Charity', 1981, 'F', 964), +(121798, 'Latisha', 1981, 'F', 964), +(121799, 'Ellen', 1981, 'F', 958), +(121800, 'Kathy', 1981, 'F', 958), +(121801, 'Randi', 1981, 'F', 955), +(121802, 'Kelley', 1981, 'F', 953), +(121803, 'Lynn', 1981, 'F', 952), +(121804, 'Traci', 1981, 'F', 949), +(121805, 'Annette', 1981, 'F', 947), +(121806, 'Tricia', 1981, 'F', 942), +(121807, 'Jana', 1981, 'F', 940), +(121808, 'Shauna', 1981, 'F', 940), +(121809, 'Kerry', 1981, 'F', 939), +(121810, 'Lydia', 1981, 'F', 938), +(121811, 'Bobbie', 1981, 'F', 935), +(121812, 'Carly', 1981, 'F', 926), +(121813, 'Frances', 1981, 'F', 924), +(121814, 'Shelley', 1981, 'F', 913), +(121815, 'Esther', 1981, 'F', 909), +(121816, 'Raquel', 1981, 'F', 906), +(121817, 'Helen', 1981, 'F', 896), +(121818, 'Gretchen', 1981, 'F', 894), +(121819, 'Janice', 1981, 'F', 890), +(121820, 'Johanna', 1981, 'F', 880), +(121821, 'Angelina', 1981, 'F', 877), +(121822, 'Amie', 1981, 'F', 874), +(121823, 'Juanita', 1981, 'F', 873), +(121824, 'Lesley', 1981, 'F', 870), +(121825, 'Eva', 1981, 'F', 855), +(121826, 'Rita', 1981, 'F', 854), +(121827, 'Roxanne', 1981, 'F', 851), +(121828, 'Amelia', 1981, 'F', 849), +(121829, 'Alissa', 1981, 'F', 848), +(121830, 'Rachelle', 1981, 'F', 844), +(121831, 'Meagan', 1981, 'F', 842), +(121832, 'Charlotte', 1981, 'F', 833), +(121833, 'Lacy', 1981, 'F', 833), +(121834, 'Grace', 1981, 'F', 831), +(121835, 'Jennie', 1981, 'F', 829), +(121836, 'Maureen', 1981, 'F', 828), +(121837, 'Shana', 1981, 'F', 820), +(121838, 'Brandie', 1981, 'F', 816), +(121839, 'Rochelle', 1981, 'F', 812), +(121840, 'Yvette', 1981, 'F', 810), +(121841, 'Jocelyn', 1981, 'F', 809), +(121842, 'Jami', 1981, 'F', 803), +(121843, 'Lakisha', 1981, 'F', 802), +(121844, 'Sandy', 1981, 'F', 802), +(121845, 'Irene', 1981, 'F', 798), +(121846, 'Miriam', 1981, 'F', 797), +(121847, 'Faith', 1981, 'F', 795), +(121848, 'Katharine', 1981, 'F', 791), +(121849, 'Dorothy', 1981, 'F', 787), +(121850, 'Angie', 1981, 'F', 785), +(121851, 'Caitlin', 1981, 'F', 784), +(121852, 'Elaine', 1981, 'F', 784), +(121853, 'Elisa', 1981, 'F', 773), +(121854, 'Haley', 1981, 'F', 773), +(121855, 'Connie', 1981, 'F', 764); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(121856, 'Jane', 1981, 'F', 763), +(121857, 'Jolene', 1981, 'F', 756), +(121858, 'Kasey', 1981, 'F', 746), +(121859, 'Alice', 1981, 'F', 745), +(121860, 'Christa', 1981, 'F', 745), +(121861, 'Jody', 1981, 'F', 744), +(121862, 'Tameka', 1981, 'F', 738), +(121863, 'Hillary', 1981, 'F', 735), +(121864, 'Elisabeth', 1981, 'F', 733), +(121865, 'Brianna', 1981, 'F', 730), +(121866, 'Norma', 1981, 'F', 729), +(121867, 'Chasity', 1981, 'F', 725), +(121868, 'Joni', 1981, 'F', 724), +(121869, 'Lorena', 1981, 'F', 724), +(121870, 'Daisy', 1981, 'F', 722), +(121871, 'Ginger', 1981, 'F', 720), +(121872, 'Keisha', 1981, 'F', 720), +(121873, 'Chrystal', 1981, 'F', 718), +(121874, 'Mia', 1981, 'F', 718), +(121875, 'Constance', 1981, 'F', 715), +(121876, 'Sally', 1981, 'F', 712), +(121877, 'Kirsten', 1981, 'F', 708), +(121878, 'Jenifer', 1981, 'F', 706), +(121879, 'Brianne', 1981, 'F', 698), +(121880, 'Jackie', 1981, 'F', 696), +(121881, 'Tanisha', 1981, 'F', 691), +(121882, 'Joyce', 1981, 'F', 687), +(121883, 'Alma', 1981, 'F', 686), +(121884, 'Cecilia', 1981, 'F', 683), +(121885, 'Claire', 1981, 'F', 681), +(121886, 'Bianca', 1981, 'F', 678), +(121887, 'Joanne', 1981, 'F', 676), +(121888, 'Ruby', 1981, 'F', 676), +(121889, 'Ryan', 1981, 'F', 675), +(121890, 'Beverly', 1981, 'F', 674), +(121891, 'Carissa', 1981, 'F', 670), +(121892, 'Billie', 1981, 'F', 668), +(121893, 'Bobbi', 1981, 'F', 668), +(121894, 'Judith', 1981, 'F', 666), +(121895, 'Antoinette', 1981, 'F', 665), +(121896, 'Betty', 1981, 'F', 662), +(121897, 'Maribel', 1981, 'F', 661), +(121898, 'Karina', 1981, 'F', 657), +(121899, 'Sheena', 1981, 'F', 657), +(121900, 'Elena', 1981, 'F', 656), +(121901, 'Ashlee', 1981, 'F', 653), +(121902, 'Hope', 1981, 'F', 651), +(121903, 'Lakeisha', 1981, 'F', 648), +(121904, 'Sherri', 1981, 'F', 647), +(121905, 'Staci', 1981, 'F', 647), +(121906, 'Tiffani', 1981, 'F', 643), +(121907, 'Tabatha', 1981, 'F', 642), +(121908, 'Ericka', 1981, 'F', 640), +(121909, 'Alana', 1981, 'F', 639), +(121910, 'Darlene', 1981, 'F', 639), +(121911, 'Camille', 1981, 'F', 634), +(121912, 'Belinda', 1981, 'F', 633), +(121913, 'Leanne', 1981, 'F', 631), +(121914, 'Patrice', 1981, 'F', 625), +(121915, 'Hilary', 1981, 'F', 624), +(121916, 'Guadalupe', 1981, 'F', 622), +(121917, 'Cortney', 1981, 'F', 621), +(121918, 'Sheri', 1981, 'F', 618), +(121919, 'Paige', 1981, 'F', 610), +(121920, 'Corinne', 1981, 'F', 608), +(121921, 'Jean', 1981, 'F', 605), +(121922, 'Mayra', 1981, 'F', 605), +(121923, 'Judy', 1981, 'F', 602), +(121924, 'Gabriela', 1981, 'F', 595), +(121925, 'Celeste', 1981, 'F', 594), +(121926, 'Marisol', 1981, 'F', 592), +(121927, 'Gabrielle', 1981, 'F', 586), +(121928, 'Eileen', 1981, 'F', 585), +(121929, 'Christin', 1981, 'F', 583), +(121930, 'Lara', 1981, 'F', 583), +(121931, 'Jodie', 1981, 'F', 580), +(121932, 'Marilyn', 1981, 'F', 579), +(121933, 'Shirley', 1981, 'F', 579), +(121934, 'Katy', 1981, 'F', 577), +(121935, 'Aisha', 1981, 'F', 574), +(121936, 'Audra', 1981, 'F', 573), +(121937, 'Briana', 1981, 'F', 571), +(121938, 'Tessa', 1981, 'F', 571), +(121939, 'Alisa', 1981, 'F', 569), +(121940, 'Ashleigh', 1981, 'F', 569), +(121941, 'Tracie', 1981, 'F', 566), +(121942, 'Elisha', 1981, 'F', 565), +(121943, 'Rosemary', 1981, 'F', 564), +(121944, 'Mandi', 1981, 'F', 561), +(121945, 'Marsha', 1981, 'F', 561), +(121946, 'Alexandria', 1981, 'F', 555), +(121947, 'Nora', 1981, 'F', 552), +(121948, 'Devon', 1981, 'F', 550), +(121949, 'Teri', 1981, 'F', 544), +(121950, 'Chelsea', 1981, 'F', 541), +(121951, 'Chandra', 1981, 'F', 539), +(121952, 'Kim', 1981, 'F', 535), +(121953, 'Serena', 1981, 'F', 535), +(121954, 'Cathy', 1981, 'F', 534), +(121955, 'Emma', 1981, 'F', 533), +(121956, 'Lee', 1981, 'F', 533), +(121957, 'Marcia', 1981, 'F', 531), +(121958, 'Aubrey', 1981, 'F', 528), +(121959, 'Christen', 1981, 'F', 526), +(121960, 'Clarissa', 1981, 'F', 524), +(121961, 'Brittney', 1981, 'F', 518), +(121962, 'Lillian', 1981, 'F', 518), +(121963, 'Esmeralda', 1981, 'F', 516), +(121964, 'Melisa', 1981, 'F', 516), +(121965, 'Yesenia', 1981, 'F', 513), +(121966, 'Shelby', 1981, 'F', 512), +(121967, 'Genevieve', 1981, 'F', 506), +(121968, 'Joann', 1981, 'F', 506), +(121969, 'Blanca', 1981, 'F', 502), +(121970, 'Christi', 1981, 'F', 498), +(121971, 'Janine', 1981, 'F', 495), +(121972, 'Kristal', 1981, 'F', 495), +(121973, 'Allyson', 1981, 'F', 493), +(121974, 'Shayla', 1981, 'F', 492), +(121975, 'Lora', 1981, 'F', 491), +(121976, 'Lorraine', 1981, 'F', 490), +(121977, 'Sasha', 1981, 'F', 490), +(121978, 'Kelsey', 1981, 'F', 489), +(121979, 'Loretta', 1981, 'F', 489), +(121980, 'Iris', 1981, 'F', 488), +(121981, 'Maggie', 1981, 'F', 487), +(121982, 'Michael', 1981, 'F', 487), +(121983, 'Tania', 1981, 'F', 485), +(121984, 'Jordan', 1981, 'F', 484), +(121985, 'Alejandra', 1981, 'F', 482), +(121986, 'Terra', 1981, 'F', 482), +(121987, 'Jayme', 1981, 'F', 480), +(121988, 'Lena', 1981, 'F', 480), +(121989, 'Penny', 1981, 'F', 480), +(121990, 'Cari', 1981, 'F', 479), +(121991, 'Lakesha', 1981, 'F', 479), +(121992, 'Laurel', 1981, 'F', 479), +(121993, 'Nadia', 1981, 'F', 477), +(121994, 'Dena', 1981, 'F', 476), +(121995, 'Josephine', 1981, 'F', 476), +(121996, 'Margarita', 1981, 'F', 476), +(121997, 'Kimberley', 1981, 'F', 474), +(121998, 'Trina', 1981, 'F', 473), +(121999, 'Susana', 1981, 'F', 472), +(122000, 'Destiny', 1981, 'F', 467), +(122001, 'Isabel', 1981, 'F', 467), +(122002, 'Alaina', 1981, 'F', 466), +(122003, 'Liliana', 1981, 'F', 466), +(122004, 'Lea', 1981, 'F', 465), +(122005, 'Hollie', 1981, 'F', 462), +(122006, 'Roberta', 1981, 'F', 462), +(122007, 'Wanda', 1981, 'F', 457), +(122008, 'Alyson', 1981, 'F', 455), +(122009, 'Lashonda', 1981, 'F', 455), +(122010, 'Tami', 1981, 'F', 454), +(122011, 'Dara', 1981, 'F', 453), +(122012, 'Selena', 1981, 'F', 453), +(122013, 'Dianna', 1981, 'F', 452), +(122014, 'Krystle', 1981, 'F', 448), +(122015, 'Marlene', 1981, 'F', 448), +(122016, 'Angelique', 1981, 'F', 446), +(122017, 'Betsy', 1981, 'F', 446), +(122018, 'Bridgette', 1981, 'F', 446), +(122019, 'Leann', 1981, 'F', 445), +(122020, 'Gwendolyn', 1981, 'F', 444), +(122021, 'Larissa', 1981, 'F', 442), +(122022, 'Debbie', 1981, 'F', 439), +(122023, 'Hayley', 1981, 'F', 439), +(122024, 'Marcie', 1981, 'F', 438), +(122025, 'Lucy', 1981, 'F', 436), +(122026, 'Peggy', 1981, 'F', 436), +(122027, 'Carolina', 1981, 'F', 435), +(122028, 'Jeanne', 1981, 'F', 431), +(122029, 'Catrina', 1981, 'F', 423), +(122030, 'Lyndsey', 1981, 'F', 423), +(122031, 'Liza', 1981, 'F', 422), +(122032, 'Shameka', 1981, 'F', 421), +(122033, 'Kenya', 1981, 'F', 417), +(122034, 'Christian', 1981, 'F', 416), +(122035, 'Jeannette', 1981, 'F', 415), +(122036, 'Adrianne', 1981, 'F', 413), +(122037, 'Arlene', 1981, 'F', 413), +(122038, 'Dina', 1981, 'F', 412), +(122039, 'Lynette', 1981, 'F', 411), +(122040, 'Simone', 1981, 'F', 410), +(122041, 'Joan', 1981, 'F', 403), +(122042, 'Sonja', 1981, 'F', 402), +(122043, 'Tiffanie', 1981, 'F', 402), +(122044, 'Marci', 1981, 'F', 401), +(122045, 'Marianne', 1981, 'F', 398), +(122046, 'Misti', 1981, 'F', 398), +(122047, 'Candy', 1981, 'F', 397), +(122048, 'Cheri', 1981, 'F', 396), +(122049, 'Dominique', 1981, 'F', 393), +(122050, 'Jeannie', 1981, 'F', 392), +(122051, 'Kira', 1981, 'F', 392), +(122052, 'Darcy', 1981, 'F', 390), +(122053, 'Elise', 1981, 'F', 388), +(122054, 'Taylor', 1981, 'F', 386), +(122055, 'Rhiannon', 1981, 'F', 384), +(122056, 'Abbey', 1981, 'F', 383), +(122057, 'Cherie', 1981, 'F', 383), +(122058, 'Latrice', 1981, 'F', 381), +(122059, 'Jesse', 1981, 'F', 380), +(122060, 'Latosha', 1981, 'F', 380), +(122061, 'Raven', 1981, 'F', 380), +(122062, 'Bernadette', 1981, 'F', 379), +(122063, 'Lana', 1981, 'F', 378), +(122064, 'Araceli', 1981, 'F', 376), +(122065, 'Noelle', 1981, 'F', 374), +(122066, 'Blair', 1981, 'F', 372), +(122067, 'Brook', 1981, 'F', 369), +(122068, 'Jasmin', 1981, 'F', 364), +(122069, 'Tiana', 1981, 'F', 363), +(122070, 'Kyla', 1981, 'F', 360), +(122071, 'Marla', 1981, 'F', 360), +(122072, 'Janna', 1981, 'F', 358), +(122073, 'Deana', 1981, 'F', 355), +(122074, 'Callie', 1981, 'F', 354), +(122075, 'Marina', 1981, 'F', 353), +(122076, 'Elissa', 1981, 'F', 352), +(122077, 'Luz', 1981, 'F', 352), +(122078, 'Myra', 1981, 'F', 351), +(122079, 'Vivian', 1981, 'F', 351), +(122080, 'Vicki', 1981, 'F', 350), +(122081, 'Ariana', 1981, 'F', 349), +(122082, 'Marjorie', 1981, 'F', 349), +(122083, 'Marcy', 1981, 'F', 348), +(122084, 'Tera', 1981, 'F', 343), +(122085, 'Tierra', 1981, 'F', 343), +(122086, 'Nicolette', 1981, 'F', 342), +(122087, 'Silvia', 1981, 'F', 342), +(122088, 'Jo', 1981, 'F', 341), +(122089, 'Antonia', 1981, 'F', 340), +(122090, 'Meaghan', 1981, 'F', 340), +(122091, 'Nadine', 1981, 'F', 340), +(122092, 'Janie', 1981, 'F', 338), +(122093, 'Shawn', 1981, 'F', 338), +(122094, 'Beatrice', 1981, 'F', 337), +(122095, 'Jacklyn', 1981, 'F', 337), +(122096, 'Shamika', 1981, 'F', 337), +(122097, 'Breanna', 1981, 'F', 336), +(122098, 'Lynda', 1981, 'F', 335), +(122099, 'Casandra', 1981, 'F', 334), +(122100, 'Shari', 1981, 'F', 334), +(122101, 'Kimberlee', 1981, 'F', 333), +(122102, 'Brenna', 1981, 'F', 332), +(122103, 'Dayna', 1981, 'F', 331), +(122104, 'Cristy', 1981, 'F', 330), +(122105, 'Janell', 1981, 'F', 330), +(122106, 'Janette', 1981, 'F', 329), +(122107, 'Jeanine', 1981, 'F', 329), +(122108, 'Wendi', 1981, 'F', 329), +(122109, 'Leeann', 1981, 'F', 325), +(122110, 'Janel', 1981, 'F', 324), +(122111, 'Maya', 1981, 'F', 324), +(122112, 'Tosha', 1981, 'F', 324), +(122113, 'Latanya', 1981, 'F', 323), +(122114, 'Noemi', 1981, 'F', 323), +(122115, 'Athena', 1981, 'F', 322), +(122116, 'Bridgett', 1981, 'F', 322), +(122117, 'Edith', 1981, 'F', 322), +(122118, 'Lucia', 1981, 'F', 322), +(122119, 'Malinda', 1981, 'F', 322), +(122120, 'Mariah', 1981, 'F', 321), +(122121, 'Clara', 1981, 'F', 320), +(122122, 'Sheryl', 1981, 'F', 319), +(122123, 'Kayla', 1981, 'F', 318), +(122124, 'Adrian', 1981, 'F', 317), +(122125, 'Irma', 1981, 'F', 317), +(122126, 'Chantel', 1981, 'F', 316), +(122127, 'Kisha', 1981, 'F', 316), +(122128, 'Maranda', 1981, 'F', 314), +(122129, 'Olga', 1981, 'F', 314), +(122130, 'Jade', 1981, 'F', 313), +(122131, 'Marcella', 1981, 'F', 313), +(122132, 'Natalia', 1981, 'F', 313), +(122133, 'Tonia', 1981, 'F', 312), +(122134, 'Glenda', 1981, 'F', 310), +(122135, 'Karin', 1981, 'F', 310), +(122136, 'Rocio', 1981, 'F', 310), +(122137, 'Candi', 1981, 'F', 308), +(122138, 'Justine', 1981, 'F', 308), +(122139, 'Racheal', 1981, 'F', 308), +(122140, 'Beatriz', 1981, 'F', 307), +(122141, 'Corina', 1981, 'F', 307), +(122142, 'Ladonna', 1981, 'F', 307), +(122143, 'Leanna', 1981, 'F', 307), +(122144, 'Ramona', 1981, 'F', 306), +(122145, 'Georgia', 1981, 'F', 305), +(122146, 'Maritza', 1981, 'F', 305), +(122147, 'Deidra', 1981, 'F', 304), +(122148, 'Tisha', 1981, 'F', 304), +(122149, 'Martina', 1981, 'F', 302), +(122150, 'Valarie', 1981, 'F', 302), +(122151, 'Alecia', 1981, 'F', 299), +(122152, 'Kristyn', 1981, 'F', 298), +(122153, 'Pauline', 1981, 'F', 298), +(122154, 'Alanna', 1981, 'F', 295), +(122155, 'Breanne', 1981, 'F', 295), +(122156, 'Cori', 1981, 'F', 295), +(122157, 'Mollie', 1981, 'F', 295), +(122158, 'Talia', 1981, 'F', 295), +(122159, 'Celia', 1981, 'F', 294), +(122160, 'Selina', 1981, 'F', 294), +(122161, 'Lucinda', 1981, 'F', 293), +(122162, 'Abbie', 1981, 'F', 292), +(122163, 'Andria', 1981, 'F', 292), +(122164, 'Christal', 1981, 'F', 292), +(122165, 'Christopher', 1981, 'F', 291), +(122166, 'Gail', 1981, 'F', 291), +(122167, 'Maryann', 1981, 'F', 291), +(122168, 'Rena', 1981, 'F', 288), +(122169, 'Tammie', 1981, 'F', 288), +(122170, 'Darla', 1981, 'F', 286), +(122171, 'Dora', 1981, 'F', 284), +(122172, 'Chastity', 1981, 'F', 283), +(122173, 'Lawanda', 1981, 'F', 283), +(122174, 'Dolores', 1981, 'F', 282), +(122175, 'Rene', 1981, 'F', 282), +(122176, 'Anastasia', 1981, 'F', 281), +(122177, 'Eliza', 1981, 'F', 279), +(122178, 'Ivy', 1981, 'F', 279), +(122179, 'Juliana', 1981, 'F', 279), +(122180, 'Sadie', 1981, 'F', 279), +(122181, 'Julianne', 1981, 'F', 278), +(122182, 'Maricela', 1981, 'F', 278), +(122183, 'Deidre', 1981, 'F', 277), +(122184, 'Ingrid', 1981, 'F', 277), +(122185, 'Karissa', 1981, 'F', 276), +(122186, 'Cristin', 1981, 'F', 274), +(122187, 'Lyndsay', 1981, 'F', 274), +(122188, 'Carey', 1981, 'F', 273), +(122189, 'Daphne', 1981, 'F', 273), +(122190, 'James', 1981, 'F', 273), +(122191, 'Jessi', 1981, 'F', 273), +(122192, 'Kami', 1981, 'F', 273), +(122193, 'Loni', 1981, 'F', 273), +(122194, 'Doris', 1981, 'F', 271), +(122195, 'Griselda', 1981, 'F', 271), +(122196, 'Shanda', 1981, 'F', 271), +(122197, 'Sue', 1981, 'F', 271), +(122198, 'Chanel', 1981, 'F', 270), +(122199, 'Edna', 1981, 'F', 270), +(122200, 'Eleanor', 1981, 'F', 270), +(122201, 'Susanna', 1981, 'F', 268), +(122202, 'Angelia', 1981, 'F', 267), +(122203, 'Corey', 1981, 'F', 267), +(122204, 'Emilie', 1981, 'F', 267), +(122205, 'Francesca', 1981, 'F', 267), +(122206, 'Sofia', 1981, 'F', 266), +(122207, 'Sharonda', 1981, 'F', 265), +(122208, 'Kia', 1981, 'F', 263), +(122209, 'Sheree', 1981, 'F', 262), +(122210, 'Aja', 1981, 'F', 261), +(122211, 'Josie', 1981, 'F', 261), +(122212, 'Francine', 1981, 'F', 260), +(122213, 'Geneva', 1981, 'F', 260), +(122214, 'Kacie', 1981, 'F', 260), +(122215, 'Marta', 1981, 'F', 260), +(122216, 'Renae', 1981, 'F', 259), +(122217, 'Lashanda', 1981, 'F', 257), +(122218, 'Madeline', 1981, 'F', 257), +(122219, 'Shanika', 1981, 'F', 257), +(122220, 'Tiara', 1981, 'F', 257), +(122221, 'Gladys', 1981, 'F', 255), +(122222, 'Marlena', 1981, 'F', 255), +(122223, 'Quiana', 1981, 'F', 255), +(122224, 'Rosalinda', 1981, 'F', 255), +(122225, 'Shanta', 1981, 'F', 255), +(122226, 'Jenelle', 1981, 'F', 254), +(122227, 'Nakia', 1981, 'F', 254), +(122228, 'Delia', 1981, 'F', 253), +(122229, 'Mercedes', 1981, 'F', 253), +(122230, 'Daniela', 1981, 'F', 251), +(122231, 'Celina', 1981, 'F', 250), +(122232, 'Devin', 1981, 'F', 250), +(122233, 'Kandice', 1981, 'F', 247), +(122234, 'Precious', 1981, 'F', 246), +(122235, 'Shavon', 1981, 'F', 246), +(122236, 'Sondra', 1981, 'F', 246), +(122237, 'Demetria', 1981, 'F', 245), +(122238, 'Michaela', 1981, 'F', 243), +(122239, 'Hilda', 1981, 'F', 242), +(122240, 'Vicky', 1981, 'F', 242), +(122241, 'Elsa', 1981, 'F', 241), +(122242, 'Lacie', 1981, 'F', 241), +(122243, 'Susie', 1981, 'F', 241), +(122244, 'Joshua', 1981, 'F', 240), +(122245, 'Mackenzie', 1981, 'F', 240), +(122246, 'Tori', 1981, 'F', 240), +(122247, 'Jason', 1981, 'F', 239), +(122248, 'Jena', 1981, 'F', 239), +(122249, 'Sherrie', 1981, 'F', 239), +(122250, 'Sherita', 1981, 'F', 237), +(122251, 'Tanesha', 1981, 'F', 237), +(122252, 'Mara', 1981, 'F', 236), +(122253, 'Maura', 1981, 'F', 236), +(122254, 'Caryn', 1981, 'F', 234), +(122255, 'Dionne', 1981, 'F', 234), +(122256, 'Margo', 1981, 'F', 233), +(122257, 'Fallon', 1981, 'F', 232), +(122258, 'Monika', 1981, 'F', 231), +(122259, 'Vickie', 1981, 'F', 231), +(122260, 'Corrie', 1981, 'F', 230), +(122261, 'Taryn', 1981, 'F', 230), +(122262, 'Dusty', 1981, 'F', 229), +(122263, 'Kylie', 1981, 'F', 229), +(122264, 'Ariel', 1981, 'F', 228), +(122265, 'Jaimie', 1981, 'F', 228), +(122266, 'Karrie', 1981, 'F', 228), +(122267, 'Malissa', 1981, 'F', 228), +(122268, 'Robert', 1981, 'F', 228), +(122269, 'Shasta', 1981, 'F', 228), +(122270, 'Tamra', 1981, 'F', 228), +(122271, 'Mellissa', 1981, 'F', 227), +(122272, 'Ronda', 1981, 'F', 227), +(122273, 'Stella', 1981, 'F', 227), +(122274, 'Terry', 1981, 'F', 227), +(122275, 'June', 1981, 'F', 226), +(122276, 'Louise', 1981, 'F', 225), +(122277, 'David', 1981, 'F', 224), +(122278, 'Renata', 1981, 'F', 224), +(122279, 'Shantel', 1981, 'F', 224), +(122280, 'Yadira', 1981, 'F', 224), +(122281, 'Sommer', 1981, 'F', 223), +(122282, 'Alexa', 1981, 'F', 222), +(122283, 'Elaina', 1981, 'F', 222), +(122284, 'Leila', 1981, 'F', 222), +(122285, 'Lily', 1981, 'F', 222), +(122286, 'Annmarie', 1981, 'F', 221), +(122287, 'Casie', 1981, 'F', 221), +(122288, 'Danelle', 1981, 'F', 221), +(122289, 'Fatima', 1981, 'F', 221), +(122290, 'Holli', 1981, 'F', 221), +(122291, 'Brandon', 1981, 'F', 220), +(122292, 'Cora', 1981, 'F', 220), +(122293, 'Gillian', 1981, 'F', 220), +(122294, 'Helena', 1981, 'F', 220), +(122295, 'Lindy', 1981, 'F', 220), +(122296, 'Tatiana', 1981, 'F', 219), +(122297, 'Adrianna', 1981, 'F', 218), +(122298, 'Eve', 1981, 'F', 218), +(122299, 'Starla', 1981, 'F', 218), +(122300, 'Britney', 1981, 'F', 217), +(122301, 'Octavia', 1981, 'F', 217), +(122302, 'Shayna', 1981, 'F', 217), +(122303, 'Mariana', 1981, 'F', 216), +(122304, 'Karyn', 1981, 'F', 214), +(122305, 'Rosemarie', 1981, 'F', 214), +(122306, 'Carina', 1981, 'F', 213), +(122307, 'Cory', 1981, 'F', 213), +(122308, 'Daniel', 1981, 'F', 213), +(122309, 'Siobhan', 1981, 'F', 213), +(122310, 'Chrissy', 1981, 'F', 212), +(122311, 'Gena', 1981, 'F', 212), +(122312, 'Jeri', 1981, 'F', 212), +(122313, 'Tarah', 1981, 'F', 212), +(122314, 'Aileen', 1981, 'F', 211), +(122315, 'Ami', 1981, 'F', 211), +(122316, 'Aurora', 1981, 'F', 211), +(122317, 'Deirdre', 1981, 'F', 211), +(122318, 'Kaitlin', 1981, 'F', 211), +(122319, 'Marion', 1981, 'F', 211), +(122320, 'Mellisa', 1981, 'F', 211), +(122321, 'Evita', 1981, 'F', 210), +(122322, 'Bertha', 1981, 'F', 209), +(122323, 'Eboni', 1981, 'F', 209), +(122324, 'Greta', 1981, 'F', 209), +(122325, 'Syreeta', 1981, 'F', 209), +(122326, 'Alesha', 1981, 'F', 208), +(122327, 'Lakeshia', 1981, 'F', 207), +(122328, 'Rikki', 1981, 'F', 207), +(122329, 'Shonda', 1981, 'F', 207), +(122330, 'Fawn', 1981, 'F', 206), +(122331, 'Ida', 1981, 'F', 206), +(122332, 'Janae', 1981, 'F', 206), +(122333, 'Corrine', 1981, 'F', 205), +(122334, 'Charmaine', 1981, 'F', 204), +(122335, 'Marian', 1981, 'F', 204), +(122336, 'Bambi', 1981, 'F', 203), +(122337, 'Darci', 1981, 'F', 203), +(122338, 'Leilani', 1981, 'F', 203), +(122339, 'Martine', 1981, 'F', 203), +(122340, 'Kandi', 1981, 'F', 202), +(122341, 'Kathrine', 1981, 'F', 202), +(122342, 'Candis', 1981, 'F', 201), +(122343, 'Kristan', 1981, 'F', 201), +(122344, 'Matthew', 1981, 'F', 201), +(122345, 'Shante', 1981, 'F', 201), +(122346, 'Mari', 1981, 'F', 199), +(122347, 'Sunshine', 1981, 'F', 199), +(122348, 'Tawana', 1981, 'F', 199), +(122349, 'Lourdes', 1981, 'F', 198), +(122350, 'Venessa', 1981, 'F', 198), +(122351, 'Cathleen', 1981, 'F', 197), +(122352, 'Juana', 1981, 'F', 197), +(122353, 'Kacey', 1981, 'F', 197), +(122354, 'Laquita', 1981, 'F', 197), +(122355, 'Niki', 1981, 'F', 197), +(122356, 'John', 1981, 'F', 196), +(122357, 'Kendall', 1981, 'F', 196), +(122358, 'Jamila', 1981, 'F', 195), +(122359, 'Rebeca', 1981, 'F', 195), +(122360, 'Richelle', 1981, 'F', 195), +(122361, 'Adriane', 1981, 'F', 194), +(122362, 'Harmony', 1981, 'F', 194), +(122363, 'Rosanna', 1981, 'F', 194), +(122364, 'Jada', 1981, 'F', 192), +(122365, 'Kerrie', 1981, 'F', 192), +(122366, 'Kesha', 1981, 'F', 192), +(122367, 'Kori', 1981, 'F', 192), +(122368, 'Nikia', 1981, 'F', 192), +(122369, 'Marisela', 1981, 'F', 191), +(122370, 'Starr', 1981, 'F', 191), +(122371, 'Kassandra', 1981, 'F', 190), +(122372, 'Shalonda', 1981, 'F', 190), +(122373, 'Chana', 1981, 'F', 189), +(122374, 'Chanda', 1981, 'F', 189), +(122375, 'Jeanna', 1981, 'F', 188), +(122376, 'Graciela', 1981, 'F', 187), +(122377, 'Laci', 1981, 'F', 187), +(122378, 'Lois', 1981, 'F', 187), +(122379, 'Lorie', 1981, 'F', 187), +(122380, 'Noel', 1981, 'F', 187), +(122381, 'Princess', 1981, 'F', 187), +(122382, 'Sierra', 1981, 'F', 187), +(122383, 'Tanika', 1981, 'F', 187), +(122384, 'Salina', 1981, 'F', 186), +(122385, 'Sunny', 1981, 'F', 186), +(122386, 'Jeannine', 1981, 'F', 185), +(122387, 'Joseph', 1981, 'F', 185), +(122388, 'Jesica', 1981, 'F', 184), +(122389, 'Rosalie', 1981, 'F', 184), +(122390, 'Roxanna', 1981, 'F', 184), +(122391, 'Alexia', 1981, 'F', 183), +(122392, 'Brandee', 1981, 'F', 183), +(122393, 'Lisette', 1981, 'F', 183), +(122394, 'Pearl', 1981, 'F', 183), +(122395, 'Janeen', 1981, 'F', 182), +(122396, 'Justin', 1981, 'F', 182), +(122397, 'Linsey', 1981, 'F', 182), +(122398, 'Phyllis', 1981, 'F', 182), +(122399, 'Toccara', 1981, 'F', 182), +(122400, 'Ada', 1981, 'F', 181), +(122401, 'Loren', 1981, 'F', 181), +(122402, 'Tenisha', 1981, 'F', 181), +(122403, 'India', 1981, 'F', 180), +(122404, 'Rosalyn', 1981, 'F', 180), +(122405, 'Shara', 1981, 'F', 180), +(122406, 'Tammi', 1981, 'F', 180), +(122407, 'Deanne', 1981, 'F', 179), +(122408, 'Ella', 1981, 'F', 179), +(122409, 'Juliet', 1981, 'F', 179), +(122410, 'Latricia', 1981, 'F', 179), +(122411, 'Mona', 1981, 'F', 179), +(122412, 'Asia', 1981, 'F', 178), +(122413, 'Melina', 1981, 'F', 178), +(122414, 'Davina', 1981, 'F', 176), +(122415, 'Johnna', 1981, 'F', 176), +(122416, 'Tomeka', 1981, 'F', 176), +(122417, 'Dianne', 1981, 'F', 175), +(122418, 'Lynne', 1981, 'F', 175), +(122419, 'Angeline', 1981, 'F', 174), +(122420, 'Jeanie', 1981, 'F', 174), +(122421, 'Viviana', 1981, 'F', 174), +(122422, 'Cameron', 1981, 'F', 173), +(122423, 'Eugenia', 1981, 'F', 173), +(122424, 'Georgina', 1981, 'F', 173), +(122425, 'Shelia', 1981, 'F', 173), +(122426, 'Alysia', 1981, 'F', 172), +(122427, 'Tamera', 1981, 'F', 172), +(122428, 'Deena', 1981, 'F', 171), +(122429, 'Stacia', 1981, 'F', 171), +(122430, 'William', 1981, 'F', 171), +(122431, 'Meghann', 1981, 'F', 170), +(122432, 'Ursula', 1981, 'F', 170), +(122433, 'Bernice', 1981, 'F', 169), +(122434, 'Nakisha', 1981, 'F', 169), +(122435, 'Magdalena', 1981, 'F', 168), +(122436, 'Tashina', 1981, 'F', 168), +(122437, 'Annemarie', 1981, 'F', 167), +(122438, 'Bree', 1981, 'F', 167), +(122439, 'Charissa', 1981, 'F', 167), +(122440, 'Desirae', 1981, 'F', 167), +(122441, 'Josefina', 1981, 'F', 167), +(122442, 'Latoyia', 1981, 'F', 167), +(122443, 'Anya', 1981, 'F', 166), +(122444, 'Chaya', 1981, 'F', 166), +(122445, 'Justina', 1981, 'F', 166), +(122446, 'Lynnette', 1981, 'F', 166), +(122447, 'Shanita', 1981, 'F', 166), +(122448, 'Consuelo', 1981, 'F', 165), +(122449, 'Francisca', 1981, 'F', 165), +(122450, 'Lizette', 1981, 'F', 165), +(122451, 'Micah', 1981, 'F', 165), +(122452, 'Tyra', 1981, 'F', 165), +(122453, 'Alycia', 1981, 'F', 164), +(122454, 'Cheyenne', 1981, 'F', 164), +(122455, 'Jan', 1981, 'F', 164), +(122456, 'Joi', 1981, 'F', 164), +(122457, 'Kay', 1981, 'F', 164), +(122458, 'Sandi', 1981, 'F', 164), +(122459, 'Susanne', 1981, 'F', 164), +(122460, 'Esperanza', 1981, 'F', 163), +(122461, 'Iesha', 1981, 'F', 163), +(122462, 'Jenni', 1981, 'F', 163), +(122463, 'Latoria', 1981, 'F', 163), +(122464, 'Shanon', 1981, 'F', 163), +(122465, 'Tawanda', 1981, 'F', 163), +(122466, 'Therese', 1981, 'F', 163), +(122467, 'Vera', 1981, 'F', 163), +(122468, 'Daniella', 1981, 'F', 162), +(122469, 'Elvira', 1981, 'F', 162), +(122470, 'Rosie', 1981, 'F', 162), +(122471, 'Shavonne', 1981, 'F', 162), +(122472, 'Colette', 1981, 'F', 161), +(122473, 'Felecia', 1981, 'F', 161), +(122474, 'Jeana', 1981, 'F', 161), +(122475, 'Joelle', 1981, 'F', 160), +(122476, 'Stephenie', 1981, 'F', 160), +(122477, 'Suzanna', 1981, 'F', 160), +(122478, 'Angelita', 1981, 'F', 159), +(122479, 'Chantelle', 1981, 'F', 159), +(122480, 'Cristal', 1981, 'F', 159), +(122481, 'Qiana', 1981, 'F', 159), +(122482, 'Bettina', 1981, 'F', 158), +(122483, 'Cassidy', 1981, 'F', 158), +(122484, 'Jammie', 1981, 'F', 158), +(122485, 'Ashlie', 1981, 'F', 157), +(122486, 'Latesha', 1981, 'F', 157), +(122487, 'Delores', 1981, 'F', 156), +(122488, 'Kyle', 1981, 'F', 156), +(122489, 'Natosha', 1981, 'F', 156), +(122490, 'Julianna', 1981, 'F', 155), +(122491, 'Keely', 1981, 'F', 155), +(122492, 'Lynsey', 1981, 'F', 155), +(122493, 'Mildred', 1981, 'F', 155), +(122494, 'Nikole', 1981, 'F', 155), +(122495, 'Perla', 1981, 'F', 155), +(122496, 'Sydney', 1981, 'F', 155), +(122497, 'Florence', 1981, 'F', 154), +(122498, 'Aaron', 1981, 'F', 153), +(122499, 'Gwen', 1981, 'F', 153), +(122500, 'Jonathan', 1981, 'F', 153), +(122501, 'Katelyn', 1981, 'F', 153), +(122502, 'Trista', 1981, 'F', 153), +(122503, 'Chiquita', 1981, 'F', 152), +(122504, 'Danica', 1981, 'F', 152), +(122505, 'Francis', 1981, 'F', 152), +(122506, 'Kandace', 1981, 'F', 152), +(122507, 'Leona', 1981, 'F', 152), +(122508, 'Renita', 1981, 'F', 152), +(122509, 'Shanell', 1981, 'F', 152), +(122510, 'Shellie', 1981, 'F', 152), +(122511, 'Thelma', 1981, 'F', 152), +(122512, 'Adria', 1981, 'F', 151), +(122513, 'Cecelia', 1981, 'F', 151), +(122514, 'Katina', 1981, 'F', 151), +(122515, 'Malia', 1981, 'F', 151), +(122516, 'Shawanda', 1981, 'F', 151), +(122517, 'Venus', 1981, 'F', 151), +(122518, 'Jerri', 1981, 'F', 150), +(122519, 'Kyra', 1981, 'F', 150), +(122520, 'Lashawn', 1981, 'F', 150), +(122521, 'Letitia', 1981, 'F', 150), +(122522, 'Rae', 1981, 'F', 150), +(122523, 'Shannan', 1981, 'F', 150), +(122524, 'Ginny', 1981, 'F', 149), +(122525, 'Jayne', 1981, 'F', 149), +(122526, 'Kourtney', 1981, 'F', 149), +(122527, 'Lila', 1981, 'F', 149), +(122528, 'Nereida', 1981, 'F', 149), +(122529, 'Reyna', 1981, 'F', 149), +(122530, 'Margie', 1981, 'F', 148), +(122531, 'Michell', 1981, 'F', 148), +(122532, 'Brynn', 1981, 'F', 147), +(122533, 'Chimere', 1981, 'F', 147), +(122534, 'Jazmin', 1981, 'F', 147), +(122535, 'Lissette', 1981, 'F', 147), +(122536, 'Regan', 1981, 'F', 147), +(122537, 'Tawnya', 1981, 'F', 147), +(122538, 'Violet', 1981, 'F', 147), +(122539, 'Alina', 1981, 'F', 146), +(122540, 'Brian', 1981, 'F', 146), +(122541, 'Gayle', 1981, 'F', 146), +(122542, 'Keli', 1981, 'F', 146), +(122543, 'Raina', 1981, 'F', 146), +(122544, 'Valencia', 1981, 'F', 146), +(122545, 'Windy', 1981, 'F', 146), +(122546, 'Cody', 1981, 'F', 145), +(122547, 'Eunice', 1981, 'F', 145), +(122548, 'Hailey', 1981, 'F', 145), +(122549, 'Kenyatta', 1981, 'F', 145), +(122550, 'May', 1981, 'F', 145), +(122551, 'Timothy', 1981, 'F', 145), +(122552, 'Yasmin', 1981, 'F', 145), +(122553, 'Kati', 1981, 'F', 144), +(122554, 'Lilia', 1981, 'F', 144), +(122555, 'Mindi', 1981, 'F', 144), +(122556, 'Shantell', 1981, 'F', 144), +(122557, 'Kindra', 1981, 'F', 143), +(122558, 'Cathryn', 1981, 'F', 142), +(122559, 'Clare', 1981, 'F', 142), +(122560, 'Emilia', 1981, 'F', 142), +(122561, 'Faye', 1981, 'F', 142), +(122562, 'Paulette', 1981, 'F', 142), +(122563, 'Gabriella', 1981, 'F', 141), +(122564, 'Ivette', 1981, 'F', 141), +(122565, 'Stephaine', 1981, 'F', 141), +(122566, 'Antionette', 1981, 'F', 140), +(122567, 'Edwina', 1981, 'F', 140), +(122568, 'Kaci', 1981, 'F', 140), +(122569, 'Kristian', 1981, 'F', 140), +(122570, 'Lia', 1981, 'F', 140), +(122571, 'Rhea', 1981, 'F', 140), +(122572, 'Roxana', 1981, 'F', 140), +(122573, 'Tiffiny', 1981, 'F', 140), +(122574, 'Alena', 1981, 'F', 139), +(122575, 'Chantal', 1981, 'F', 139), +(122576, 'Hanna', 1981, 'F', 139), +(122577, 'Marcela', 1981, 'F', 139), +(122578, 'Susannah', 1981, 'F', 139), +(122579, 'Ayesha', 1981, 'F', 138), +(122580, 'Felisha', 1981, 'F', 138), +(122581, 'Mai', 1981, 'F', 138), +(122582, 'Nicki', 1981, 'F', 138), +(122583, 'Rasheeda', 1981, 'F', 138), +(122584, 'Shaneka', 1981, 'F', 138), +(122585, 'Stefani', 1981, 'F', 138), +(122586, 'Crissy', 1981, 'F', 137), +(122587, 'Darcie', 1981, 'F', 137), +(122588, 'Jonelle', 1981, 'F', 137), +(122589, 'Kirstin', 1981, 'F', 137), +(122590, 'Luisa', 1981, 'F', 137), +(122591, 'Tiffaney', 1981, 'F', 137), +(122592, 'Danna', 1981, 'F', 136), +(122593, 'Kacy', 1981, 'F', 136), +(122594, 'Shea', 1981, 'F', 136), +(122595, 'Cherise', 1981, 'F', 135), +(122596, 'Damaris', 1981, 'F', 135), +(122597, 'Dixie', 1981, 'F', 135), +(122598, 'Farrah', 1981, 'F', 135), +(122599, 'Maren', 1981, 'F', 135), +(122600, 'Marquita', 1981, 'F', 135), +(122601, 'Nellie', 1981, 'F', 135), +(122602, 'Emilee', 1981, 'F', 134), +(122603, 'Rosario', 1981, 'F', 134), +(122604, 'Shaina', 1981, 'F', 134), +(122605, 'Eric', 1981, 'F', 133), +(122606, 'Reina', 1981, 'F', 133), +(122607, 'Star', 1981, 'F', 133), +(122608, 'Thea', 1981, 'F', 133), +(122609, 'Anabel', 1981, 'F', 132), +(122610, 'Anthony', 1981, 'F', 132), +(122611, 'Britt', 1981, 'F', 132), +(122612, 'Latia', 1981, 'F', 132), +(122613, 'Lina', 1981, 'F', 132), +(122614, 'Takisha', 1981, 'F', 132), +(122615, 'Hazel', 1981, 'F', 131), +(122616, 'Janessa', 1981, 'F', 131), +(122617, 'Joleen', 1981, 'F', 131), +(122618, 'Karie', 1981, 'F', 131), +(122619, 'Kassie', 1981, 'F', 131), +(122620, 'Tabetha', 1981, 'F', 131), +(122621, 'Jewel', 1981, 'F', 130), +(122622, 'Joanie', 1981, 'F', 130), +(122623, 'Trinity', 1981, 'F', 130), +(122624, 'Chloe', 1981, 'F', 129), +(122625, 'Giselle', 1981, 'F', 129), +(122626, 'Kali', 1981, 'F', 129), +(122627, 'Kristel', 1981, 'F', 129), +(122628, 'Portia', 1981, 'F', 129), +(122629, 'Somer', 1981, 'F', 129), +(122630, 'Stephany', 1981, 'F', 129), +(122631, 'Aida', 1981, 'F', 128), +(122632, 'Camilla', 1981, 'F', 128), +(122633, 'Kiana', 1981, 'F', 128), +(122634, 'Sharee', 1981, 'F', 128), +(122635, 'Tana', 1981, 'F', 128), +(122636, 'Benita', 1981, 'F', 127), +(122637, 'Kiley', 1981, 'F', 127), +(122638, 'Kylee', 1981, 'F', 127), +(122639, 'Liana', 1981, 'F', 127), +(122640, 'Nicolle', 1981, 'F', 127), +(122641, 'Tawny', 1981, 'F', 127), +(122642, 'Jaimee', 1981, 'F', 126), +(122643, 'Katheryn', 1981, 'F', 126), +(122644, 'Leia', 1981, 'F', 126), +(122645, 'Lenora', 1981, 'F', 126), +(122646, 'Louisa', 1981, 'F', 126), +(122647, 'Patty', 1981, 'F', 126), +(122648, 'Deann', 1981, 'F', 125), +(122649, 'Geraldine', 1981, 'F', 125), +(122650, 'Julissa', 1981, 'F', 125), +(122651, 'Nikita', 1981, 'F', 125), +(122652, 'Roseann', 1981, 'F', 125), +(122653, 'Samara', 1981, 'F', 125), +(122654, 'Sharita', 1981, 'F', 125), +(122655, 'Tai', 1981, 'F', 125), +(122656, 'Amberly', 1981, 'F', 124), +(122657, 'Angelic', 1981, 'F', 124), +(122658, 'Ayanna', 1981, 'F', 124), +(122659, 'Bonita', 1981, 'F', 124), +(122660, 'Charla', 1981, 'F', 124), +(122661, 'Cristen', 1981, 'F', 124), +(122662, 'Janis', 1981, 'F', 124), +(122663, 'Nicholas', 1981, 'F', 124), +(122664, 'Toya', 1981, 'F', 124), +(122665, 'Denisha', 1981, 'F', 123), +(122666, 'Mariel', 1981, 'F', 123), +(122667, 'Meggan', 1981, 'F', 123), +(122668, 'Paola', 1981, 'F', 123), +(122669, 'Ava', 1981, 'F', 122), +(122670, 'Ciara', 1981, 'F', 122), +(122671, 'Karri', 1981, 'F', 122), +(122672, 'Kasandra', 1981, 'F', 122), +(122673, 'Maegan', 1981, 'F', 122), +(122674, 'Melodie', 1981, 'F', 122), +(122675, 'Teena', 1981, 'F', 122), +(122676, 'Amalia', 1981, 'F', 121), +(122677, 'Catalina', 1981, 'F', 121), +(122678, 'Rashida', 1981, 'F', 121), +(122679, 'Imelda', 1981, 'F', 120), +(122680, 'Marianna', 1981, 'F', 120), +(122681, 'Maxine', 1981, 'F', 120), +(122682, 'Mckenzie', 1981, 'F', 120), +(122683, 'Sarita', 1981, 'F', 120), +(122684, 'Shemeka', 1981, 'F', 120), +(122685, 'Apryl', 1981, 'F', 119), +(122686, 'Dallas', 1981, 'F', 119), +(122687, 'Lillie', 1981, 'F', 119), +(122688, 'Missy', 1981, 'F', 119), +(122689, 'Carole', 1981, 'F', 118), +(122690, 'Charisse', 1981, 'F', 118), +(122691, 'Elana', 1981, 'F', 118), +(122692, 'Rosio', 1981, 'F', 118), +(122693, 'Tamar', 1981, 'F', 118), +(122694, 'Erinn', 1981, 'F', 117), +(122695, 'Shandra', 1981, 'F', 117), +(122696, 'Trudy', 1981, 'F', 117), +(122697, 'Andrew', 1981, 'F', 116), +(122698, 'Linnea', 1981, 'F', 116), +(122699, 'Shakira', 1981, 'F', 116), +(122700, 'Shay', 1981, 'F', 116), +(122701, 'Adina', 1981, 'F', 115), +(122702, 'Delilah', 1981, 'F', 115), +(122703, 'Kellee', 1981, 'F', 115), +(122704, 'Richard', 1981, 'F', 115), +(122705, 'Shanelle', 1981, 'F', 115), +(122706, 'Tamica', 1981, 'F', 115), +(122707, 'Alia', 1981, 'F', 114), +(122708, 'Atiya', 1981, 'F', 114), +(122709, 'Brigitte', 1981, 'F', 114), +(122710, 'Lucretia', 1981, 'F', 114), +(122711, 'Marguerite', 1981, 'F', 114), +(122712, 'Tomika', 1981, 'F', 114), +(122713, 'Valeria', 1981, 'F', 114), +(122714, 'Fabiola', 1981, 'F', 113), +(122715, 'Georgette', 1981, 'F', 113), +(122716, 'Gracie', 1981, 'F', 113), +(122717, 'Lani', 1981, 'F', 113), +(122718, 'Melonie', 1981, 'F', 113), +(122719, 'Scarlett', 1981, 'F', 113), +(122720, 'Sherika', 1981, 'F', 113), +(122721, 'Spring', 1981, 'F', 113), +(122722, 'Andra', 1981, 'F', 112), +(122723, 'Brandis', 1981, 'F', 112), +(122724, 'Christiana', 1981, 'F', 112), +(122725, 'Elsie', 1981, 'F', 112), +(122726, 'Jaqueline', 1981, 'F', 112), +(122727, 'Minerva', 1981, 'F', 112), +(122728, 'Tawanna', 1981, 'F', 112), +(122729, 'Carley', 1981, 'F', 111), +(122730, 'Kevin', 1981, 'F', 111), +(122731, 'Maira', 1981, 'F', 111), +(122732, 'Marybeth', 1981, 'F', 111), +(122733, 'Sharla', 1981, 'F', 111), +(122734, 'Thomas', 1981, 'F', 111), +(122735, 'Dalia', 1981, 'F', 110), +(122736, 'Elicia', 1981, 'F', 110), +(122737, 'Jamey', 1981, 'F', 110), +(122738, 'Juliette', 1981, 'F', 110), +(122739, 'Lela', 1981, 'F', 110), +(122740, 'Reagan', 1981, 'F', 110), +(122741, 'Zoe', 1981, 'F', 110), +(122742, 'Arianna', 1981, 'F', 109), +(122743, 'Ayana', 1981, 'F', 109), +(122744, 'Danyelle', 1981, 'F', 109), +(122745, 'Geri', 1981, 'F', 109), +(122746, 'January', 1981, 'F', 109), +(122747, 'Lashunda', 1981, 'F', 109), +(122748, 'Mistie', 1981, 'F', 109), +(122749, 'Tianna', 1981, 'F', 109), +(122750, 'Winter', 1981, 'F', 109), +(122751, 'Corinna', 1981, 'F', 108), +(122752, 'Crista', 1981, 'F', 108), +(122753, 'Danae', 1981, 'F', 108), +(122754, 'Doreen', 1981, 'F', 108), +(122755, 'Jeremy', 1981, 'F', 108), +(122756, 'Kasie', 1981, 'F', 108), +(122757, 'Kenyetta', 1981, 'F', 108), +(122758, 'Krysta', 1981, 'F', 108), +(122759, 'Lakia', 1981, 'F', 108), +(122760, 'Lashawnda', 1981, 'F', 108), +(122761, 'Sarina', 1981, 'F', 108), +(122762, 'Trish', 1981, 'F', 108), +(122763, 'Annamarie', 1981, 'F', 107), +(122764, 'Ashly', 1981, 'F', 107), +(122765, 'Karly', 1981, 'F', 107), +(122766, 'Latrisha', 1981, 'F', 107), +(122767, 'Layla', 1981, 'F', 107), +(122768, 'Shenika', 1981, 'F', 107), +(122769, 'Tamekia', 1981, 'F', 107), +(122770, 'Tequila', 1981, 'F', 107), +(122771, 'Corie', 1981, 'F', 106), +(122772, 'Danette', 1981, 'F', 106), +(122773, 'Eryn', 1981, 'F', 106), +(122774, 'Estella', 1981, 'F', 106), +(122775, 'Joana', 1981, 'F', 106), +(122776, 'Latonia', 1981, 'F', 106), +(122777, 'Lorrie', 1981, 'F', 106), +(122778, 'Taisha', 1981, 'F', 106), +(122779, 'Candie', 1981, 'F', 105), +(122780, 'Chanelle', 1981, 'F', 105), +(122781, 'Dannielle', 1981, 'F', 105), +(122782, 'Estela', 1981, 'F', 105), +(122783, 'Lola', 1981, 'F', 105), +(122784, 'Nichol', 1981, 'F', 105), +(122785, 'Rayna', 1981, 'F', 105), +(122786, 'Sharlene', 1981, 'F', 105), +(122787, 'Shaunna', 1981, 'F', 105), +(122788, 'Tyesha', 1981, 'F', 105), +(122789, 'Brie', 1981, 'F', 104), +(122790, 'Micaela', 1981, 'F', 104), +(122791, 'Shandi', 1981, 'F', 104), +(122792, 'Taina', 1981, 'F', 104), +(122793, 'Anika', 1981, 'F', 103), +(122794, 'Bessie', 1981, 'F', 103), +(122795, 'Carlie', 1981, 'F', 103), +(122796, 'Carmela', 1981, 'F', 103), +(122797, 'Juli', 1981, 'F', 103), +(122798, 'Laquisha', 1981, 'F', 103), +(122799, 'Leighann', 1981, 'F', 103), +(122800, 'Letisha', 1981, 'F', 103), +(122801, 'Lizbeth', 1981, 'F', 103), +(122802, 'Natisha', 1981, 'F', 103), +(122803, 'Olympia', 1981, 'F', 103), +(122804, 'Tess', 1981, 'F', 103), +(122805, 'Carie', 1981, 'F', 102), +(122806, 'Charles', 1981, 'F', 102), +(122807, 'Dustin', 1981, 'F', 102), +(122808, 'Elvia', 1981, 'F', 102), +(122809, 'Mariela', 1981, 'F', 102), +(122810, 'Rosalia', 1981, 'F', 102), +(122811, 'Tiesha', 1981, 'F', 102), +(122812, 'Alba', 1981, 'F', 101), +(122813, 'Cami', 1981, 'F', 101), +(122814, 'Joey', 1981, 'F', 101), +(122815, 'Keesha', 1981, 'F', 101), +(122816, 'Ryann', 1981, 'F', 101), +(122817, 'Shemika', 1981, 'F', 101), +(122818, 'Aracely', 1981, 'F', 100), +(122819, 'Arielle', 1981, 'F', 100), +(122820, 'Evangelina', 1981, 'F', 100), +(122821, 'Lidia', 1981, 'F', 100), +(122822, 'Lucille', 1981, 'F', 100), +(122823, 'Rachele', 1981, 'F', 100), +(122824, 'Roxann', 1981, 'F', 100), +(122825, 'Michael', 1981, 'M', 68752), +(122826, 'Christopher', 1981, 'M', 50229), +(122827, 'Matthew', 1981, 'M', 43323), +(122828, 'Jason', 1981, 'M', 41921), +(122829, 'David', 1981, 'M', 40643), +(122830, 'Joshua', 1981, 'M', 39054), +(122831, 'James', 1981, 'M', 38301), +(122832, 'John', 1981, 'M', 34877), +(122833, 'Robert', 1981, 'M', 34388), +(122834, 'Daniel', 1981, 'M', 30991), +(122835, 'Joseph', 1981, 'M', 30765), +(122836, 'Justin', 1981, 'M', 27308), +(122837, 'Ryan', 1981, 'M', 26821), +(122838, 'Brian', 1981, 'M', 26598), +(122839, 'William', 1981, 'M', 24796), +(122840, 'Jonathan', 1981, 'M', 22593), +(122841, 'Eric', 1981, 'M', 20722), +(122842, 'Andrew', 1981, 'M', 20225), +(122843, 'Brandon', 1981, 'M', 20217), +(122844, 'Adam', 1981, 'M', 20041), +(122845, 'Nicholas', 1981, 'M', 19779), +(122846, 'Jeremy', 1981, 'M', 19113), +(122847, 'Anthony', 1981, 'M', 18573), +(122848, 'Timothy', 1981, 'M', 18215), +(122849, 'Kevin', 1981, 'M', 17458), +(122850, 'Thomas', 1981, 'M', 17162), +(122851, 'Richard', 1981, 'M', 16856), +(122852, 'Steven', 1981, 'M', 16485), +(122853, 'Jeffrey', 1981, 'M', 15926), +(122854, 'Aaron', 1981, 'M', 14685), +(122855, 'Charles', 1981, 'M', 14429), +(122856, 'Benjamin', 1981, 'M', 14350), +(122857, 'Mark', 1981, 'M', 13543), +(122858, 'Scott', 1981, 'M', 12727), +(122859, 'Paul', 1981, 'M', 11773), +(122860, 'Nathan', 1981, 'M', 11260), +(122861, 'Jesse', 1981, 'M', 10451), +(122862, 'Patrick', 1981, 'M', 10387), +(122863, 'Stephen', 1981, 'M', 10294), +(122864, 'Travis', 1981, 'M', 10110), +(122865, 'Kenneth', 1981, 'M', 9477), +(122866, 'Dustin', 1981, 'M', 9351), +(122867, 'Jacob', 1981, 'M', 9345), +(122868, 'Sean', 1981, 'M', 8896), +(122869, 'Jose', 1981, 'M', 8765), +(122870, 'Gregory', 1981, 'M', 8755), +(122871, 'Chad', 1981, 'M', 8410), +(122872, 'Bryan', 1981, 'M', 7219), +(122873, 'Shawn', 1981, 'M', 7077), +(122874, 'Bradley', 1981, 'M', 6898), +(122875, 'Edward', 1981, 'M', 6657), +(122876, 'Kyle', 1981, 'M', 6570), +(122877, 'Derek', 1981, 'M', 6477), +(122878, 'Samuel', 1981, 'M', 6031), +(122879, 'Peter', 1981, 'M', 5989), +(122880, 'Donald', 1981, 'M', 5912), +(122881, 'Jared', 1981, 'M', 5863), +(122882, 'Keith', 1981, 'M', 5622), +(122883, 'Ronald', 1981, 'M', 5534), +(122884, 'Juan', 1981, 'M', 5490), +(122885, 'George', 1981, 'M', 5158), +(122886, 'Gary', 1981, 'M', 4947), +(122887, 'Zachary', 1981, 'M', 4848), +(122888, 'Douglas', 1981, 'M', 4788), +(122889, 'Joel', 1981, 'M', 4540), +(122890, 'Phillip', 1981, 'M', 4540), +(122891, 'Marcus', 1981, 'M', 4508), +(122892, 'Raymond', 1981, 'M', 4367), +(122893, 'Corey', 1981, 'M', 4248), +(122894, 'Alexander', 1981, 'M', 4237), +(122895, 'Carlos', 1981, 'M', 4177), +(122896, 'Craig', 1981, 'M', 4094), +(122897, 'Todd', 1981, 'M', 3955), +(122898, 'Larry', 1981, 'M', 3950), +(122899, 'Erik', 1981, 'M', 3922), +(122900, 'Antonio', 1981, 'M', 3920), +(122901, 'Jeremiah', 1981, 'M', 3894), +(122902, 'Derrick', 1981, 'M', 3851), +(122903, 'Brett', 1981, 'M', 3775), +(122904, 'Nathaniel', 1981, 'M', 3718), +(122905, 'Shane', 1981, 'M', 3714), +(122906, 'Frank', 1981, 'M', 3634), +(122907, 'Dennis', 1981, 'M', 3633), +(122908, 'Philip', 1981, 'M', 3578), +(122909, 'Casey', 1981, 'M', 3515), +(122910, 'Shaun', 1981, 'M', 3382), +(122911, 'Lucas', 1981, 'M', 3376), +(122912, 'Gabriel', 1981, 'M', 3375), +(122913, 'Brent', 1981, 'M', 3370), +(122914, 'Cory', 1981, 'M', 3357), +(122915, 'Luis', 1981, 'M', 3340), +(122916, 'Randy', 1981, 'M', 3340), +(122917, 'Jeffery', 1981, 'M', 3337), +(122918, 'Curtis', 1981, 'M', 3193), +(122919, 'Seth', 1981, 'M', 3139), +(122920, 'Tyler', 1981, 'M', 3121), +(122921, 'Jerry', 1981, 'M', 3055), +(122922, 'Russell', 1981, 'M', 3045), +(122923, 'Wesley', 1981, 'M', 3040), +(122924, 'Luke', 1981, 'M', 3019), +(122925, 'Ian', 1981, 'M', 2931), +(122926, 'Jordan', 1981, 'M', 2924), +(122927, 'Billy', 1981, 'M', 2882), +(122928, 'Victor', 1981, 'M', 2844), +(122929, 'Terry', 1981, 'M', 2815), +(122930, 'Carl', 1981, 'M', 2790), +(122931, 'Vincent', 1981, 'M', 2765), +(122932, 'Jesus', 1981, 'M', 2754), +(122933, 'Mario', 1981, 'M', 2715), +(122934, 'Bobby', 1981, 'M', 2658), +(122935, 'Tony', 1981, 'M', 2648), +(122936, 'Alan', 1981, 'M', 2594), +(122937, 'Johnny', 1981, 'M', 2555), +(122938, 'Troy', 1981, 'M', 2514), +(122939, 'Adrian', 1981, 'M', 2466), +(122940, 'Miguel', 1981, 'M', 2390), +(122941, 'Ricardo', 1981, 'M', 2364), +(122942, 'Jamie', 1981, 'M', 2356), +(122943, 'Cody', 1981, 'M', 2328), +(122944, 'Roger', 1981, 'M', 2243), +(122945, 'Christian', 1981, 'M', 2231), +(122946, 'Ricky', 1981, 'M', 2219), +(122947, 'Lee', 1981, 'M', 2210), +(122948, 'Clinton', 1981, 'M', 2206), +(122949, 'Lawrence', 1981, 'M', 2193), +(122950, 'Henry', 1981, 'M', 2187), +(122951, 'Martin', 1981, 'M', 2155), +(122952, 'Jorge', 1981, 'M', 2103), +(122953, 'Jimmy', 1981, 'M', 2097), +(122954, 'Danny', 1981, 'M', 2093), +(122955, 'Allen', 1981, 'M', 2061), +(122956, 'Jon', 1981, 'M', 2056), +(122957, 'Andre', 1981, 'M', 2055), +(122958, 'Marc', 1981, 'M', 2053), +(122959, 'Rodney', 1981, 'M', 2029), +(122960, 'Micheal', 1981, 'M', 2021), +(122961, 'Randall', 1981, 'M', 2008), +(122962, 'Walter', 1981, 'M', 1990), +(122963, 'Evan', 1981, 'M', 1972), +(122964, 'Willie', 1981, 'M', 1968), +(122965, 'Mitchell', 1981, 'M', 1966), +(122966, 'Manuel', 1981, 'M', 1958), +(122967, 'Brad', 1981, 'M', 1957), +(122968, 'Francisco', 1981, 'M', 1957), +(122969, 'Albert', 1981, 'M', 1941), +(122970, 'Kristopher', 1981, 'M', 1934), +(122971, 'Roberto', 1981, 'M', 1928), +(122972, 'Alex', 1981, 'M', 1873), +(122973, 'Joe', 1981, 'M', 1861), +(122974, 'Isaac', 1981, 'M', 1836), +(122975, 'Arthur', 1981, 'M', 1802), +(122976, 'Louis', 1981, 'M', 1802), +(122977, 'Jay', 1981, 'M', 1782), +(122978, 'Gerald', 1981, 'M', 1763), +(122979, 'Trevor', 1981, 'M', 1757), +(122980, 'Wayne', 1981, 'M', 1750), +(122981, 'Roy', 1981, 'M', 1726), +(122982, 'Johnathan', 1981, 'M', 1710), +(122983, 'Blake', 1981, 'M', 1702), +(122984, 'Lance', 1981, 'M', 1687), +(122985, 'Jermaine', 1981, 'M', 1680), +(122986, 'Maurice', 1981, 'M', 1645), +(122987, 'Jonathon', 1981, 'M', 1643), +(122988, 'Bruce', 1981, 'M', 1632), +(122989, 'Mathew', 1981, 'M', 1626), +(122990, 'Jack', 1981, 'M', 1610), +(122991, 'Garrett', 1981, 'M', 1498), +(122992, 'Alejandro', 1981, 'M', 1483), +(122993, 'Ruben', 1981, 'M', 1473), +(122994, 'Frederick', 1981, 'M', 1470), +(122995, 'Oscar', 1981, 'M', 1461), +(122996, 'Calvin', 1981, 'M', 1458), +(122997, 'Austin', 1981, 'M', 1455), +(122998, 'Omar', 1981, 'M', 1434), +(122999, 'Caleb', 1981, 'M', 1429), +(123000, 'Darren', 1981, 'M', 1426), +(123001, 'Jaime', 1981, 'M', 1410), +(123002, 'Reginald', 1981, 'M', 1409), +(123003, 'Hector', 1981, 'M', 1407), +(123004, 'Noah', 1981, 'M', 1400), +(123005, 'Ronnie', 1981, 'M', 1370), +(123006, 'Jerome', 1981, 'M', 1364), +(123007, 'Levi', 1981, 'M', 1364), +(123008, 'Darrell', 1981, 'M', 1359), +(123009, 'Clayton', 1981, 'M', 1349), +(123010, 'Barry', 1981, 'M', 1348), +(123011, 'Edwin', 1981, 'M', 1334), +(123012, 'Neil', 1981, 'M', 1331), +(123013, 'Cameron', 1981, 'M', 1326), +(123014, 'Raul', 1981, 'M', 1318), +(123015, 'Eddie', 1981, 'M', 1315), +(123016, 'Ernest', 1981, 'M', 1305), +(123017, 'Javier', 1981, 'M', 1305), +(123018, 'Angel', 1981, 'M', 1298), +(123019, 'Terrance', 1981, 'M', 1273), +(123020, 'Jessie', 1981, 'M', 1251), +(123021, 'Dale', 1981, 'M', 1250), +(123022, 'Geoffrey', 1981, 'M', 1243), +(123023, 'Ross', 1981, 'M', 1241), +(123024, 'Fernando', 1981, 'M', 1240), +(123025, 'Colin', 1981, 'M', 1228), +(123026, 'Pedro', 1981, 'M', 1226), +(123027, 'Sergio', 1981, 'M', 1223), +(123028, 'Tommy', 1981, 'M', 1212), +(123029, 'Rafael', 1981, 'M', 1211), +(123030, 'Tyrone', 1981, 'M', 1211), +(123031, 'Shannon', 1981, 'M', 1204), +(123032, 'Leonard', 1981, 'M', 1191), +(123033, 'Kelly', 1981, 'M', 1182), +(123034, 'Clifford', 1981, 'M', 1179), +(123035, 'Eugene', 1981, 'M', 1174), +(123036, 'Marvin', 1981, 'M', 1170), +(123037, 'Micah', 1981, 'M', 1168), +(123038, 'Kurt', 1981, 'M', 1161), +(123039, 'Brendan', 1981, 'M', 1159), +(123040, 'Clint', 1981, 'M', 1144), +(123041, 'Ramon', 1981, 'M', 1139), +(123042, 'Theodore', 1981, 'M', 1134), +(123043, 'Armando', 1981, 'M', 1124), +(123044, 'Steve', 1981, 'M', 1117), +(123045, 'Glenn', 1981, 'M', 1106), +(123046, 'Harold', 1981, 'M', 1099), +(123047, 'Grant', 1981, 'M', 1095), +(123048, 'Terrence', 1981, 'M', 1076), +(123049, 'Joey', 1981, 'M', 1071), +(123050, 'Karl', 1981, 'M', 1061), +(123051, 'Melvin', 1981, 'M', 1051), +(123052, 'Damien', 1981, 'M', 1036), +(123053, 'Beau', 1981, 'M', 1027), +(123054, 'Stanley', 1981, 'M', 1015), +(123055, 'Dominic', 1981, 'M', 1013), +(123056, 'Dwayne', 1981, 'M', 1008), +(123057, 'Jarrod', 1981, 'M', 1004), +(123058, 'Ivan', 1981, 'M', 1000), +(123059, 'Byron', 1981, 'M', 995), +(123060, 'Francis', 1981, 'M', 972), +(123061, 'Andy', 1981, 'M', 969), +(123062, 'Eduardo', 1981, 'M', 944), +(123063, 'Darryl', 1981, 'M', 935), +(123064, 'Edgar', 1981, 'M', 934), +(123065, 'Alberto', 1981, 'M', 933), +(123066, 'Cesar', 1981, 'M', 915), +(123067, 'Drew', 1981, 'M', 913), +(123068, 'Cedric', 1981, 'M', 911), +(123069, 'Tyson', 1981, 'M', 906), +(123070, 'Marco', 1981, 'M', 899), +(123071, 'Ralph', 1981, 'M', 897), +(123072, 'Nicolas', 1981, 'M', 896), +(123073, 'Julio', 1981, 'M', 884), +(123074, 'Erick', 1981, 'M', 876), +(123075, 'Devin', 1981, 'M', 874), +(123076, 'Julian', 1981, 'M', 869), +(123077, 'Leon', 1981, 'M', 868), +(123078, 'Earl', 1981, 'M', 863), +(123079, 'Howard', 1981, 'M', 855), +(123080, 'Ray', 1981, 'M', 855), +(123081, 'Clarence', 1981, 'M', 846), +(123082, 'Harry', 1981, 'M', 836), +(123083, 'Chris', 1981, 'M', 828), +(123084, 'Marshall', 1981, 'M', 824), +(123085, 'Spencer', 1981, 'M', 824), +(123086, 'Arturo', 1981, 'M', 822), +(123087, 'Gilbert', 1981, 'M', 822), +(123088, 'Warren', 1981, 'M', 820), +(123089, 'Alfredo', 1981, 'M', 816), +(123090, 'Andres', 1981, 'M', 816), +(123091, 'Alfred', 1981, 'M', 815), +(123092, 'Franklin', 1981, 'M', 815), +(123093, 'Abraham', 1981, 'M', 812), +(123094, 'Alvin', 1981, 'M', 805), +(123095, 'Heath', 1981, 'M', 792), +(123096, 'Clifton', 1981, 'M', 788), +(123097, 'Taylor', 1981, 'M', 776), +(123098, 'Daryl', 1981, 'M', 769), +(123099, 'Morgan', 1981, 'M', 766), +(123100, 'Elijah', 1981, 'M', 750), +(123101, 'Dean', 1981, 'M', 748), +(123102, 'Roderick', 1981, 'M', 743), +(123103, 'Preston', 1981, 'M', 742), +(123104, 'Courtney', 1981, 'M', 736), +(123105, 'Enrique', 1981, 'M', 736), +(123106, 'Ethan', 1981, 'M', 735), +(123107, 'Dylan', 1981, 'M', 728), +(123108, 'Orlando', 1981, 'M', 718), +(123109, 'Kirk', 1981, 'M', 717), +(123110, 'Demetrius', 1981, 'M', 716), +(123111, 'Antoine', 1981, 'M', 714), +(123112, 'Gerardo', 1981, 'M', 698), +(123113, 'Bernard', 1981, 'M', 697), +(123114, 'Logan', 1981, 'M', 693), +(123115, 'Ernesto', 1981, 'M', 690), +(123116, 'Damon', 1981, 'M', 684), +(123117, 'Norman', 1981, 'M', 683), +(123118, 'Ashley', 1981, 'M', 674), +(123119, 'Salvador', 1981, 'M', 673), +(123120, 'Bryce', 1981, 'M', 664), +(123121, 'Rene', 1981, 'M', 662), +(123122, 'Don', 1981, 'M', 653), +(123123, 'Kelvin', 1981, 'M', 650), +(123124, 'Wade', 1981, 'M', 647), +(123125, 'Lonnie', 1981, 'M', 639), +(123126, 'Nelson', 1981, 'M', 638), +(123127, 'Kenny', 1981, 'M', 633), +(123128, 'Marcos', 1981, 'M', 631), +(123129, 'Vernon', 1981, 'M', 629), +(123130, 'Lorenzo', 1981, 'M', 621), +(123131, 'Leroy', 1981, 'M', 618), +(123132, 'Nickolas', 1981, 'M', 618), +(123133, 'Charlie', 1981, 'M', 615), +(123134, 'Duane', 1981, 'M', 612), +(123135, 'Glen', 1981, 'M', 610), +(123136, 'Lewis', 1981, 'M', 609), +(123137, 'Rodolfo', 1981, 'M', 608), +(123138, 'Emmanuel', 1981, 'M', 606), +(123139, 'Bryant', 1981, 'M', 604), +(123140, 'Dusty', 1981, 'M', 601), +(123141, 'Bradford', 1981, 'M', 600), +(123142, 'Branden', 1981, 'M', 600), +(123143, 'Terrell', 1981, 'M', 599), +(123144, 'Neal', 1981, 'M', 596), +(123145, 'Stuart', 1981, 'M', 596), +(123146, 'Fredrick', 1981, 'M', 595), +(123147, 'Israel', 1981, 'M', 594), +(123148, 'Jake', 1981, 'M', 590), +(123149, 'Rocky', 1981, 'M', 590), +(123150, 'Dallas', 1981, 'M', 586), +(123151, 'Lamar', 1981, 'M', 586), +(123152, 'Angelo', 1981, 'M', 583), +(123153, 'Fred', 1981, 'M', 582), +(123154, 'Rickey', 1981, 'M', 580), +(123155, 'Trent', 1981, 'M', 568), +(123156, 'Lloyd', 1981, 'M', 560), +(123157, 'Brady', 1981, 'M', 559), +(123158, 'Felix', 1981, 'M', 555), +(123159, 'Allan', 1981, 'M', 552), +(123160, 'Herbert', 1981, 'M', 551), +(123161, 'Jayson', 1981, 'M', 551), +(123162, 'Eli', 1981, 'M', 549), +(123163, 'Dana', 1981, 'M', 542), +(123164, 'Pablo', 1981, 'M', 535), +(123165, 'Bret', 1981, 'M', 532), +(123166, 'Leo', 1981, 'M', 532), +(123167, 'Jamal', 1981, 'M', 523), +(123168, 'Ben', 1981, 'M', 520), +(123169, 'Rudy', 1981, 'M', 520), +(123170, 'Gordon', 1981, 'M', 519), +(123171, 'Damian', 1981, 'M', 517), +(123172, 'Dwight', 1981, 'M', 517), +(123173, 'Julius', 1981, 'M', 512), +(123174, 'Gustavo', 1981, 'M', 506), +(123175, 'Max', 1981, 'M', 502), +(123176, 'Leslie', 1981, 'M', 500), +(123177, 'Rusty', 1981, 'M', 499), +(123178, 'Johnathon', 1981, 'M', 498), +(123179, 'Kent', 1981, 'M', 498), +(123180, 'Jody', 1981, 'M', 496), +(123181, 'Gavin', 1981, 'M', 494), +(123182, 'Landon', 1981, 'M', 493), +(123183, 'Darnell', 1981, 'M', 492), +(123184, 'Derick', 1981, 'M', 487), +(123185, 'Jarrett', 1981, 'M', 487), +(123186, 'Brock', 1981, 'M', 485), +(123187, 'Darius', 1981, 'M', 484), +(123188, 'Abel', 1981, 'M', 478), +(123189, 'Jamar', 1981, 'M', 478), +(123190, 'Donnie', 1981, 'M', 477), +(123191, 'Greg', 1981, 'M', 477), +(123192, 'Noel', 1981, 'M', 474), +(123193, 'Freddie', 1981, 'M', 473), +(123194, 'Johnnie', 1981, 'M', 473), +(123195, 'Kendrick', 1981, 'M', 472), +(123196, 'Felipe', 1981, 'M', 471), +(123197, 'Perry', 1981, 'M', 471), +(123198, 'Simon', 1981, 'M', 464), +(123199, 'Alfonso', 1981, 'M', 460), +(123200, 'Toby', 1981, 'M', 458), +(123201, 'Darin', 1981, 'M', 455), +(123202, 'Robin', 1981, 'M', 455), +(123203, 'Roland', 1981, 'M', 455), +(123204, 'Cornelius', 1981, 'M', 454), +(123205, 'Rick', 1981, 'M', 450), +(123206, 'Graham', 1981, 'M', 447), +(123207, 'Gilberto', 1981, 'M', 446), +(123208, 'Rolando', 1981, 'M', 445), +(123209, 'Lester', 1981, 'M', 438), +(123210, 'Quentin', 1981, 'M', 438), +(123211, 'Quincy', 1981, 'M', 438), +(123212, 'Jeff', 1981, 'M', 434), +(123213, 'Emanuel', 1981, 'M', 433), +(123214, 'Floyd', 1981, 'M', 433), +(123215, 'Marlon', 1981, 'M', 429), +(123216, 'Guillermo', 1981, 'M', 427), +(123217, 'Hugo', 1981, 'M', 427), +(123218, 'Rory', 1981, 'M', 425), +(123219, 'Dante', 1981, 'M', 424), +(123220, 'Isaiah', 1981, 'M', 420), +(123221, 'Scotty', 1981, 'M', 420), +(123222, 'Gene', 1981, 'M', 417), +(123223, 'Kerry', 1981, 'M', 417), +(123224, 'Jackie', 1981, 'M', 411), +(123225, 'Terence', 1981, 'M', 411), +(123226, 'Mike', 1981, 'M', 410), +(123227, 'Saul', 1981, 'M', 410), +(123228, 'Rogelio', 1981, 'M', 409), +(123229, 'Alexis', 1981, 'M', 406), +(123230, 'Ismael', 1981, 'M', 405), +(123231, 'Tracy', 1981, 'M', 405), +(123232, 'Guy', 1981, 'M', 404), +(123233, 'Oliver', 1981, 'M', 403), +(123234, 'Ty', 1981, 'M', 403), +(123235, 'Fabian', 1981, 'M', 402), +(123236, 'Jarvis', 1981, 'M', 402), +(123237, 'Lamont', 1981, 'M', 402), +(123238, 'Milton', 1981, 'M', 402), +(123239, 'Jimmie', 1981, 'M', 399), +(123240, 'Tristan', 1981, 'M', 397), +(123241, 'Nolan', 1981, 'M', 395), +(123242, 'Elias', 1981, 'M', 394), +(123243, 'Chadwick', 1981, 'M', 392), +(123244, 'Kurtis', 1981, 'M', 392), +(123245, 'Carlton', 1981, 'M', 391), +(123246, 'Brooks', 1981, 'M', 390), +(123247, 'Desmond', 1981, 'M', 387), +(123248, 'Devon', 1981, 'M', 384), +(123249, 'Jonah', 1981, 'M', 384), +(123250, 'Zachariah', 1981, 'M', 384), +(123251, 'Sam', 1981, 'M', 383), +(123252, 'Jamaal', 1981, 'M', 381), +(123253, 'Loren', 1981, 'M', 380), +(123254, 'Dewayne', 1981, 'M', 378), +(123255, 'Owen', 1981, 'M', 378), +(123256, 'Frankie', 1981, 'M', 370), +(123257, 'Ramiro', 1981, 'M', 366), +(123258, 'Kendall', 1981, 'M', 365), +(123259, 'Dan', 1981, 'M', 363), +(123260, 'Moses', 1981, 'M', 359), +(123261, 'Collin', 1981, 'M', 358), +(123262, 'Antwan', 1981, 'M', 355), +(123263, 'Esteban', 1981, 'M', 355), +(123264, 'Jarod', 1981, 'M', 355), +(123265, 'Chester', 1981, 'M', 349), +(123266, 'Josh', 1981, 'M', 348), +(123267, 'Xavier', 1981, 'M', 346), +(123268, 'Clyde', 1981, 'M', 345), +(123269, 'Josue', 1981, 'M', 345), +(123270, 'Randolph', 1981, 'M', 345), +(123271, 'Robbie', 1981, 'M', 345), +(123272, 'Everett', 1981, 'M', 342), +(123273, 'Ted', 1981, 'M', 340), +(123274, 'Trenton', 1981, 'M', 336), +(123275, 'Marquis', 1981, 'M', 335), +(123276, 'Sidney', 1981, 'M', 335), +(123277, 'Dane', 1981, 'M', 334), +(123278, 'Clay', 1981, 'M', 332), +(123279, 'Salvatore', 1981, 'M', 332), +(123280, 'Tomas', 1981, 'M', 332), +(123281, 'Herman', 1981, 'M', 330), +(123282, 'Jonas', 1981, 'M', 328), +(123283, 'Dominick', 1981, 'M', 326), +(123284, 'Rashad', 1981, 'M', 325), +(123285, 'Jerrod', 1981, 'M', 324), +(123286, 'Sheldon', 1981, 'M', 324), +(123287, 'Nathanael', 1981, 'M', 323), +(123288, 'Cecil', 1981, 'M', 319), +(123289, 'Kory', 1981, 'M', 319), +(123290, 'Jim', 1981, 'M', 318), +(123291, 'Gerard', 1981, 'M', 316), +(123292, 'Kareem', 1981, 'M', 316), +(123293, 'Efrain', 1981, 'M', 312), +(123294, 'Forrest', 1981, 'M', 312), +(123295, 'Garry', 1981, 'M', 311), +(123296, 'Alonzo', 1981, 'M', 310), +(123297, 'Mason', 1981, 'M', 310), +(123298, 'Moises', 1981, 'M', 310), +(123299, 'Myron', 1981, 'M', 308), +(123300, 'Guadalupe', 1981, 'M', 305), +(123301, 'Quinton', 1981, 'M', 305), +(123302, 'Blaine', 1981, 'M', 303), +(123303, 'Stephan', 1981, 'M', 303), +(123304, 'Waylon', 1981, 'M', 303), +(123305, 'Aron', 1981, 'M', 302), +(123306, 'Miles', 1981, 'M', 300), +(123307, 'Cole', 1981, 'M', 299), +(123308, 'Jackson', 1981, 'M', 299), +(123309, 'Wendell', 1981, 'M', 299), +(123310, 'Pierre', 1981, 'M', 297), +(123311, 'Elliott', 1981, 'M', 293), +(123312, 'Benny', 1981, 'M', 292), +(123313, 'Nick', 1981, 'M', 292), +(123314, 'Donovan', 1981, 'M', 290), +(123315, 'Donte', 1981, 'M', 290), +(123316, 'Gregg', 1981, 'M', 290), +(123317, 'Lionel', 1981, 'M', 290); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(123318, 'Leonardo', 1981, 'M', 289), +(123319, 'Roman', 1981, 'M', 286), +(123320, 'Harvey', 1981, 'M', 285), +(123321, 'Jerod', 1981, 'M', 284), +(123322, 'Josiah', 1981, 'M', 284), +(123323, 'Jarred', 1981, 'M', 283), +(123324, 'Sherman', 1981, 'M', 283), +(123325, 'Blair', 1981, 'M', 281), +(123326, 'Darrin', 1981, 'M', 280), +(123327, 'Santiago', 1981, 'M', 280), +(123328, 'Tanner', 1981, 'M', 278), +(123329, 'Jess', 1981, 'M', 277), +(123330, 'Barrett', 1981, 'M', 276), +(123331, 'Ira', 1981, 'M', 275), +(123332, 'Randal', 1981, 'M', 275), +(123333, 'Reuben', 1981, 'M', 275), +(123334, 'Malcolm', 1981, 'M', 273), +(123335, 'Bryon', 1981, 'M', 272), +(123336, 'Marques', 1981, 'M', 272), +(123337, 'Amos', 1981, 'M', 270), +(123338, 'Otis', 1981, 'M', 269), +(123339, 'Elliot', 1981, 'M', 268), +(123340, 'Kasey', 1981, 'M', 268), +(123341, 'Hunter', 1981, 'M', 267), +(123342, 'Rex', 1981, 'M', 267), +(123343, 'Noe', 1981, 'M', 266), +(123344, 'Sammy', 1981, 'M', 262), +(123345, 'Clark', 1981, 'M', 261), +(123346, 'Dion', 1981, 'M', 260), +(123347, 'Donnell', 1981, 'M', 260), +(123348, 'Wilson', 1981, 'M', 260), +(123349, 'Arnold', 1981, 'M', 259), +(123350, 'Dexter', 1981, 'M', 256), +(123351, 'Joesph', 1981, 'M', 256), +(123352, 'Reynaldo', 1981, 'M', 254), +(123353, 'Adan', 1981, 'M', 251), +(123354, 'Edmund', 1981, 'M', 251), +(123355, 'Vicente', 1981, 'M', 250), +(123356, 'Stewart', 1981, 'M', 248), +(123357, 'Deandre', 1981, 'M', 246), +(123358, 'Lyle', 1981, 'M', 246), +(123359, 'Tom', 1981, 'M', 244), +(123360, 'Ahmad', 1981, 'M', 243), +(123361, 'Harley', 1981, 'M', 243), +(123362, 'Reid', 1981, 'M', 243), +(123363, 'Erin', 1981, 'M', 242), +(123364, 'Marty', 1981, 'M', 241), +(123365, 'Reggie', 1981, 'M', 241), +(123366, 'Ron', 1981, 'M', 241), +(123367, 'Teddy', 1981, 'M', 241), +(123368, 'Alton', 1981, 'M', 240), +(123369, 'Colby', 1981, 'M', 239), +(123370, 'Thaddeus', 1981, 'M', 239), +(123371, 'Jamel', 1981, 'M', 238), +(123372, 'Bo', 1981, 'M', 237), +(123373, 'Giovanni', 1981, 'M', 237), +(123374, 'Ignacio', 1981, 'M', 237), +(123375, 'Jean', 1981, 'M', 237), +(123376, 'Ariel', 1981, 'M', 236), +(123377, 'Pete', 1981, 'M', 236), +(123378, 'Ali', 1981, 'M', 235), +(123379, 'Avery', 1981, 'M', 235), +(123380, 'Earnest', 1981, 'M', 235), +(123381, 'Emilio', 1981, 'M', 235), +(123382, 'Anton', 1981, 'M', 234), +(123383, 'Bill', 1981, 'M', 233), +(123384, 'Claude', 1981, 'M', 233), +(123385, 'Sonny', 1981, 'M', 233), +(123386, 'Will', 1981, 'M', 233), +(123387, 'Luther', 1981, 'M', 231), +(123388, 'Donny', 1981, 'M', 230), +(123389, 'Kristofer', 1981, 'M', 230), +(123390, 'Stefan', 1981, 'M', 228), +(123391, 'Jed', 1981, 'M', 227), +(123392, 'Jovan', 1981, 'M', 227), +(123393, 'Weston', 1981, 'M', 227), +(123394, 'Santos', 1981, 'M', 226), +(123395, 'Wallace', 1981, 'M', 224), +(123396, 'Hans', 1981, 'M', 223), +(123397, 'Wyatt', 1981, 'M', 223), +(123398, 'Damion', 1981, 'M', 221), +(123399, 'Virgil', 1981, 'M', 221), +(123400, 'Morris', 1981, 'M', 220), +(123401, 'Zachery', 1981, 'M', 220), +(123402, 'Brendon', 1981, 'M', 218), +(123403, 'Humberto', 1981, 'M', 218), +(123404, 'Sterling', 1981, 'M', 218), +(123405, 'Joaquin', 1981, 'M', 217), +(123406, 'Rigoberto', 1981, 'M', 215), +(123407, 'Sylvester', 1981, 'M', 215), +(123408, 'Freddy', 1981, 'M', 214), +(123409, 'Robby', 1981, 'M', 212), +(123410, 'Demarcus', 1981, 'M', 211), +(123411, 'Erich', 1981, 'M', 211), +(123412, 'Leland', 1981, 'M', 211), +(123413, 'Diego', 1981, 'M', 210), +(123414, 'Hugh', 1981, 'M', 210), +(123415, 'Mickey', 1981, 'M', 210), +(123416, 'Bennie', 1981, 'M', 209), +(123417, 'Deon', 1981, 'M', 209), +(123418, 'Elvis', 1981, 'M', 208), +(123419, 'Maxwell', 1981, 'M', 208), +(123420, 'Tobias', 1981, 'M', 208), +(123421, 'Zane', 1981, 'M', 208), +(123422, 'Conor', 1981, 'M', 206), +(123423, 'Alvaro', 1981, 'M', 205), +(123424, 'Bradly', 1981, 'M', 204), +(123425, 'Brant', 1981, 'M', 201), +(123426, 'Jerald', 1981, 'M', 201), +(123427, 'Solomon', 1981, 'M', 201), +(123428, 'Tyrell', 1981, 'M', 201), +(123429, 'Curt', 1981, 'M', 200), +(123430, 'Rodrigo', 1981, 'M', 200), +(123431, 'Willis', 1981, 'M', 199), +(123432, 'Issac', 1981, 'M', 197), +(123433, 'Matt', 1981, 'M', 197), +(123434, 'Chase', 1981, 'M', 195), +(123435, 'Reed', 1981, 'M', 195), +(123436, 'Jasper', 1981, 'M', 194), +(123437, 'Jerad', 1981, 'M', 194), +(123438, 'Jeramy', 1981, 'M', 194), +(123439, 'Jennifer', 1981, 'M', 192), +(123440, 'Aubrey', 1981, 'M', 191), +(123441, 'Kellen', 1981, 'M', 191), +(123442, 'Scottie', 1981, 'M', 191), +(123443, 'Nigel', 1981, 'M', 190), +(123444, 'Chance', 1981, 'M', 189), +(123445, 'Royce', 1981, 'M', 189), +(123446, 'Darrel', 1981, 'M', 188), +(123447, 'Mauricio', 1981, 'M', 188), +(123448, 'Arron', 1981, 'M', 187), +(123449, 'Ezra', 1981, 'M', 187), +(123450, 'Marion', 1981, 'M', 187), +(123451, 'Quinn', 1981, 'M', 187), +(123452, 'Brenton', 1981, 'M', 186), +(123453, 'Cary', 1981, 'M', 186), +(123454, 'Conrad', 1981, 'M', 185), +(123455, 'Jeremie', 1981, 'M', 185), +(123456, 'Riley', 1981, 'M', 181), +(123457, 'Tyrel', 1981, 'M', 181), +(123458, 'Jefferson', 1981, 'M', 180), +(123459, 'Jamison', 1981, 'M', 179), +(123460, 'Winston', 1981, 'M', 179), +(123461, 'Adolfo', 1981, 'M', 178), +(123462, 'Ervin', 1981, 'M', 178), +(123463, 'Nathanial', 1981, 'M', 178), +(123464, 'Lane', 1981, 'M', 177), +(123465, 'Marcel', 1981, 'M', 176), +(123466, 'Skyler', 1981, 'M', 175), +(123467, 'Bart', 1981, 'M', 174), +(123468, 'Cedrick', 1981, 'M', 174), +(123469, 'Chauncey', 1981, 'M', 174), +(123470, 'Korey', 1981, 'M', 174), +(123471, 'Sebastian', 1981, 'M', 174), +(123472, 'Tommie', 1981, 'M', 174), +(123473, 'Carlo', 1981, 'M', 173), +(123474, 'Cyrus', 1981, 'M', 173), +(123475, 'Heriberto', 1981, 'M', 173), +(123476, 'Jedidiah', 1981, 'M', 172), +(123477, 'Leonel', 1981, 'M', 172), +(123478, 'Rodrick', 1981, 'M', 172), +(123479, 'Jamey', 1981, 'M', 171), +(123480, 'Jeromy', 1981, 'M', 171), +(123481, 'Lynn', 1981, 'M', 171), +(123482, 'Octavio', 1981, 'M', 171), +(123483, 'Dave', 1981, 'M', 170), +(123484, 'Rudolph', 1981, 'M', 170), +(123485, 'Laurence', 1981, 'M', 169), +(123486, 'Brice', 1981, 'M', 168), +(123487, 'Jeffry', 1981, 'M', 168), +(123488, 'Nicholaus', 1981, 'M', 168), +(123489, 'Benito', 1981, 'M', 167), +(123490, 'Dario', 1981, 'M', 167), +(123491, 'Jessica', 1981, 'M', 167), +(123492, 'Keenan', 1981, 'M', 167), +(123493, 'Raphael', 1981, 'M', 167), +(123494, 'Stacy', 1981, 'M', 167), +(123495, 'Timmy', 1981, 'M', 167), +(123496, 'Archie', 1981, 'M', 166), +(123497, 'Carey', 1981, 'M', 164), +(123498, 'Derik', 1981, 'M', 164), +(123499, 'Dorian', 1981, 'M', 164), +(123500, 'Roosevelt', 1981, 'M', 164), +(123501, 'Carson', 1981, 'M', 163), +(123502, 'Lukas', 1981, 'M', 163), +(123503, 'Scot', 1981, 'M', 163), +(123504, 'Brain', 1981, 'M', 162), +(123505, 'Tim', 1981, 'M', 162), +(123506, 'Kristoffer', 1981, 'M', 161), +(123507, 'Braden', 1981, 'M', 160), +(123508, 'Davis', 1981, 'M', 160), +(123509, 'Dillon', 1981, 'M', 160), +(123510, 'Wilfredo', 1981, 'M', 160), +(123511, 'Kris', 1981, 'M', 158), +(123512, 'Titus', 1981, 'M', 158), +(123513, 'Buddy', 1981, 'M', 157), +(123514, 'Elmer', 1981, 'M', 157), +(123515, 'Daren', 1981, 'M', 156), +(123516, 'Ellis', 1981, 'M', 156), +(123517, 'Tyree', 1981, 'M', 155), +(123518, 'Andrea', 1981, 'M', 154), +(123519, 'Antwon', 1981, 'M', 154), +(123520, 'Asa', 1981, 'M', 154), +(123521, 'Chaz', 1981, 'M', 154), +(123522, 'Domingo', 1981, 'M', 154), +(123523, 'Leif', 1981, 'M', 154), +(123524, 'Raheem', 1981, 'M', 154), +(123525, 'Darrick', 1981, 'M', 153), +(123526, 'Agustin', 1981, 'M', 152), +(123527, 'Fidel', 1981, 'M', 152), +(123528, 'Rico', 1981, 'M', 152), +(123529, 'Vance', 1981, 'M', 152), +(123530, 'Galen', 1981, 'M', 150), +(123531, 'Judson', 1981, 'M', 150), +(123532, 'Rocco', 1981, 'M', 150), +(123533, 'Amir', 1981, 'M', 149), +(123534, 'Jered', 1981, 'M', 148), +(123535, 'Kristian', 1981, 'M', 148), +(123536, 'Markus', 1981, 'M', 148), +(123537, 'Rhett', 1981, 'M', 148), +(123538, 'Zackary', 1981, 'M', 148), +(123539, 'Prince', 1981, 'M', 146), +(123540, 'Bernardo', 1981, 'M', 145), +(123541, 'Cliff', 1981, 'M', 145), +(123542, 'Edmond', 1981, 'M', 145), +(123543, 'Ken', 1981, 'M', 145), +(123544, 'Louie', 1981, 'M', 145), +(123545, 'Wilbert', 1981, 'M', 145), +(123546, 'Raymundo', 1981, 'M', 144), +(123547, 'Deshawn', 1981, 'M', 143), +(123548, 'Grady', 1981, 'M', 143), +(123549, 'Jeramie', 1981, 'M', 143), +(123550, 'Tyron', 1981, 'M', 143), +(123551, 'Jedediah', 1981, 'M', 142), +(123552, 'Van', 1981, 'M', 142), +(123553, 'Rickie', 1981, 'M', 141), +(123554, 'Anwar', 1981, 'M', 140), +(123555, 'Dejuan', 1981, 'M', 140), +(123556, 'Garret', 1981, 'M', 140), +(123557, 'Harrison', 1981, 'M', 140), +(123558, 'Myles', 1981, 'M', 140), +(123559, 'Vaughn', 1981, 'M', 140), +(123560, 'Aldo', 1981, 'M', 139), +(123561, 'Jacques', 1981, 'M', 139), +(123562, 'Jamil', 1981, 'M', 139), +(123563, 'Rufus', 1981, 'M', 139), +(123564, 'Aric', 1981, 'M', 138), +(123565, 'Brennan', 1981, 'M', 138), +(123566, 'Johnpaul', 1981, 'M', 138), +(123567, 'Monte', 1981, 'M', 138), +(123568, 'Parker', 1981, 'M', 138), +(123569, 'Antione', 1981, 'M', 137), +(123570, 'Gregorio', 1981, 'M', 137), +(123571, 'Trey', 1981, 'M', 137), +(123572, 'Abram', 1981, 'M', 136), +(123573, 'Hassan', 1981, 'M', 136), +(123574, 'Willard', 1981, 'M', 136), +(123575, 'Bryson', 1981, 'M', 135), +(123576, 'Shelby', 1981, 'M', 135), +(123577, 'Whitney', 1981, 'M', 135), +(123578, 'Demario', 1981, 'M', 134), +(123579, 'Denny', 1981, 'M', 134), +(123580, 'Garth', 1981, 'M', 134), +(123581, 'Jasen', 1981, 'M', 134), +(123582, 'Nikolas', 1981, 'M', 133), +(123583, 'Alec', 1981, 'M', 132), +(123584, 'Silas', 1981, 'M', 132), +(123585, 'Delbert', 1981, 'M', 131), +(123586, 'Ernie', 1981, 'M', 131), +(123587, 'Josef', 1981, 'M', 131), +(123588, 'Tory', 1981, 'M', 131), +(123589, 'Dominique', 1981, 'M', 130), +(123590, 'Gonzalo', 1981, 'M', 130), +(123591, 'Mitchel', 1981, 'M', 130), +(123592, 'Randell', 1981, 'M', 130), +(123593, 'Malik', 1981, 'M', 129), +(123594, 'Percy', 1981, 'M', 129), +(123595, 'Dereck', 1981, 'M', 128), +(123596, 'Federico', 1981, 'M', 127), +(123597, 'Stacey', 1981, 'M', 127), +(123598, 'Brannon', 1981, 'M', 126), +(123599, 'Denis', 1981, 'M', 126), +(123600, 'Kaleb', 1981, 'M', 126), +(123601, 'Kip', 1981, 'M', 126), +(123602, 'Mikel', 1981, 'M', 126), +(123603, 'Moshe', 1981, 'M', 126), +(123604, 'Osvaldo', 1981, 'M', 126), +(123605, 'Alphonso', 1981, 'M', 125), +(123606, 'Horace', 1981, 'M', 125), +(123607, 'Davin', 1981, 'M', 124), +(123608, 'German', 1981, 'M', 124), +(123609, 'Daron', 1981, 'M', 123), +(123610, 'Elton', 1981, 'M', 123), +(123611, 'Jordon', 1981, 'M', 123), +(123612, 'Mack', 1981, 'M', 123), +(123613, 'Shayne', 1981, 'M', 123), +(123614, 'Shelton', 1981, 'M', 123), +(123615, 'Ulysses', 1981, 'M', 123), +(123616, 'Demond', 1981, 'M', 122), +(123617, 'Hubert', 1981, 'M', 122), +(123618, 'Liam', 1981, 'M', 122), +(123619, 'Rodger', 1981, 'M', 122), +(123620, 'Dirk', 1981, 'M', 121), +(123621, 'Marcello', 1981, 'M', 121), +(123622, 'Marlin', 1981, 'M', 121), +(123623, 'Amit', 1981, 'M', 120), +(123624, 'Antony', 1981, 'M', 120), +(123625, 'Cornell', 1981, 'M', 120), +(123626, 'Danial', 1981, 'M', 120), +(123627, 'Darwin', 1981, 'M', 120), +(123628, 'Cristian', 1981, 'M', 119), +(123629, 'Ezekiel', 1981, 'M', 119), +(123630, 'Lincoln', 1981, 'M', 119), +(123631, 'Isidro', 1981, 'M', 118), +(123632, 'Cortney', 1981, 'M', 117), +(123633, 'Jan', 1981, 'M', 117), +(123634, 'Zackery', 1981, 'M', 117), +(123635, 'Ari', 1981, 'M', 116), +(123636, 'Bennett', 1981, 'M', 116), +(123637, 'Cleveland', 1981, 'M', 116), +(123638, 'Mohammad', 1981, 'M', 116), +(123639, 'Valentin', 1981, 'M', 116), +(123640, 'Denver', 1981, 'M', 115), +(123641, 'Edwardo', 1981, 'M', 115), +(123642, 'Jerimiah', 1981, 'M', 115), +(123643, 'Quintin', 1981, 'M', 115), +(123644, 'Tavares', 1981, 'M', 115), +(123645, 'Efren', 1981, 'M', 114), +(123646, 'Erwin', 1981, 'M', 114), +(123647, 'Lindsey', 1981, 'M', 114), +(123648, 'Vito', 1981, 'M', 114), +(123649, 'Ahmed', 1981, 'M', 113), +(123650, 'Billie', 1981, 'M', 113), +(123651, 'Broderick', 1981, 'M', 113), +(123652, 'Cortez', 1981, 'M', 113), +(123653, 'Davon', 1981, 'M', 113), +(123654, 'Irvin', 1981, 'M', 113), +(123655, 'Andrae', 1981, 'M', 112), +(123656, 'Eliseo', 1981, 'M', 112), +(123657, 'Elvin', 1981, 'M', 111), +(123658, 'Jeremey', 1981, 'M', 111), +(123659, 'Kirby', 1981, 'M', 111), +(123660, 'Theron', 1981, 'M', 111), +(123661, 'Brandan', 1981, 'M', 110), +(123662, 'Garland', 1981, 'M', 110), +(123663, 'Jaron', 1981, 'M', 110), +(123664, 'Jereme', 1981, 'M', 110), +(123665, 'Kenton', 1981, 'M', 110), +(123666, 'Al', 1981, 'M', 109), +(123667, 'Marchello', 1981, 'M', 109), +(123668, 'Sarah', 1981, 'M', 109), +(123669, 'Gino', 1981, 'M', 108), +(123670, 'Jermey', 1981, 'M', 108), +(123671, 'Kim', 1981, 'M', 108), +(123672, 'Tremaine', 1981, 'M', 108), +(123673, 'Tremayne', 1981, 'M', 108), +(123674, 'Carmen', 1981, 'M', 107), +(123675, 'Chet', 1981, 'M', 107), +(123676, 'Francesco', 1981, 'M', 107), +(123677, 'Junior', 1981, 'M', 107), +(123678, 'Keon', 1981, 'M', 107), +(123679, 'Ramsey', 1981, 'M', 107), +(123680, 'Russel', 1981, 'M', 107), +(123681, 'Deric', 1981, 'M', 106), +(123682, 'Juston', 1981, 'M', 106), +(123683, 'Keegan', 1981, 'M', 106), +(123684, 'Laron', 1981, 'M', 106), +(123685, 'Paris', 1981, 'M', 106), +(123686, 'August', 1981, 'M', 105), +(123687, 'Cristopher', 1981, 'M', 105), +(123688, 'Dewey', 1981, 'M', 105), +(123689, 'Eloy', 1981, 'M', 105), +(123690, 'Kody', 1981, 'M', 105), +(123691, 'Shea', 1981, 'M', 105), +(123692, 'Brenden', 1981, 'M', 104), +(123693, 'Chaim', 1981, 'M', 104), +(123694, 'Javon', 1981, 'M', 104), +(123695, 'Jermain', 1981, 'M', 104), +(123696, 'Stevie', 1981, 'M', 104), +(123697, 'Elisha', 1981, 'M', 103), +(123698, 'Emmett', 1981, 'M', 103), +(123699, 'Garrick', 1981, 'M', 103), +(123700, 'Jamin', 1981, 'M', 103), +(123701, 'Michel', 1981, 'M', 103), +(123702, 'Mohammed', 1981, 'M', 103), +(123703, 'Norberto', 1981, 'M', 103), +(123704, 'Wilbur', 1981, 'M', 103), +(123705, 'Cullen', 1981, 'M', 102), +(123706, 'Lowell', 1981, 'M', 102), +(123707, 'Shad', 1981, 'M', 102), +(123708, 'Deangelo', 1981, 'M', 101), +(123709, 'Giuseppe', 1981, 'M', 101), +(123710, 'Jarad', 1981, 'M', 101), +(123711, 'Monty', 1981, 'M', 101), +(123712, 'Sammie', 1981, 'M', 101), +(123713, 'Amanda', 1981, 'M', 100), +(123714, 'Hank', 1981, 'M', 100), +(123715, 'Justen', 1981, 'M', 100), +(123716, 'Kelsey', 1981, 'M', 100), +(123717, 'Simeon', 1981, 'M', 100), +(123718, 'Yoel', 1981, 'M', 100), +(123719, 'Jennifer', 1982, 'F', 57109), +(123720, 'Jessica', 1982, 'F', 45443), +(123721, 'Amanda', 1982, 'F', 34209), +(123722, 'Sarah', 1982, 'F', 28481), +(123723, 'Melissa', 1982, 'F', 25860), +(123724, 'Nicole', 1982, 'F', 21704), +(123725, 'Stephanie', 1982, 'F', 20859), +(123726, 'Elizabeth', 1982, 'F', 20506), +(123727, 'Crystal', 1982, 'F', 19101), +(123728, 'Amy', 1982, 'F', 18798), +(123729, 'Michelle', 1982, 'F', 17763), +(123730, 'Heather', 1982, 'F', 17485), +(123731, 'Tiffany', 1982, 'F', 17168), +(123732, 'Kimberly', 1982, 'F', 16095), +(123733, 'Rebecca', 1982, 'F', 15724), +(123734, 'Angela', 1982, 'F', 14999), +(123735, 'Ashley', 1982, 'F', 14848), +(123736, 'Amber', 1982, 'F', 14674), +(123737, 'Christina', 1982, 'F', 14512), +(123738, 'Erin', 1982, 'F', 14366), +(123739, 'Rachel', 1982, 'F', 13869), +(123740, 'Laura', 1982, 'F', 13301), +(123741, 'Lisa', 1982, 'F', 12644), +(123742, 'Emily', 1982, 'F', 12518), +(123743, 'Kelly', 1982, 'F', 12168), +(123744, 'Lauren', 1982, 'F', 11588), +(123745, 'Andrea', 1982, 'F', 11378), +(123746, 'Sara', 1982, 'F', 11341), +(123747, 'Jamie', 1982, 'F', 11039), +(123748, 'Mary', 1982, 'F', 10850), +(123749, 'Danielle', 1982, 'F', 10210), +(123750, 'April', 1982, 'F', 10062), +(123751, 'Kristen', 1982, 'F', 9535), +(123752, 'Megan', 1982, 'F', 9515), +(123753, 'Erica', 1982, 'F', 9339), +(123754, 'Katherine', 1982, 'F', 9181), +(123755, 'Kristin', 1982, 'F', 8732), +(123756, 'Shannon', 1982, 'F', 8621), +(123757, 'Lindsay', 1982, 'F', 8254), +(123758, 'Lindsey', 1982, 'F', 7958), +(123759, 'Julie', 1982, 'F', 7693), +(123760, 'Maria', 1982, 'F', 7338), +(123761, 'Courtney', 1982, 'F', 7094), +(123762, 'Samantha', 1982, 'F', 6768), +(123763, 'Katie', 1982, 'F', 6678), +(123764, 'Christine', 1982, 'F', 6552), +(123765, 'Tara', 1982, 'F', 6522), +(123766, 'Kathryn', 1982, 'F', 6282), +(123767, 'Vanessa', 1982, 'F', 6148), +(123768, 'Brandy', 1982, 'F', 6078), +(123769, 'Natalie', 1982, 'F', 5958), +(123770, 'Monica', 1982, 'F', 5733), +(123771, 'Alicia', 1982, 'F', 5611), +(123772, 'Jacqueline', 1982, 'F', 5493), +(123773, 'Brandi', 1982, 'F', 5469), +(123774, 'Anna', 1982, 'F', 5268), +(123775, 'Carrie', 1982, 'F', 5187), +(123776, 'Allison', 1982, 'F', 5171), +(123777, 'Patricia', 1982, 'F', 5166), +(123778, 'Leslie', 1982, 'F', 4982), +(123779, 'Holly', 1982, 'F', 4682), +(123780, 'Cassandra', 1982, 'F', 4665), +(123781, 'Cynthia', 1982, 'F', 4425), +(123782, 'Diana', 1982, 'F', 4424), +(123783, 'Victoria', 1982, 'F', 4253), +(123784, 'Melanie', 1982, 'F', 4252), +(123785, 'Dana', 1982, 'F', 4235), +(123786, 'Karen', 1982, 'F', 4151), +(123787, 'Veronica', 1982, 'F', 4146), +(123788, 'Kristina', 1982, 'F', 4145), +(123789, 'Natasha', 1982, 'F', 4129), +(123790, 'Stacy', 1982, 'F', 4098), +(123791, 'Catherine', 1982, 'F', 4096), +(123792, 'Misty', 1982, 'F', 4070), +(123793, 'Valerie', 1982, 'F', 3986), +(123794, 'Susan', 1982, 'F', 3962), +(123795, 'Kathleen', 1982, 'F', 3948), +(123796, 'Candice', 1982, 'F', 3794), +(123797, 'Leah', 1982, 'F', 3765), +(123798, 'Sandra', 1982, 'F', 3646), +(123799, 'Erika', 1982, 'F', 3596), +(123800, 'Pamela', 1982, 'F', 3546), +(123801, 'Krystal', 1982, 'F', 3505), +(123802, 'Julia', 1982, 'F', 3500), +(123803, 'Stacey', 1982, 'F', 3460), +(123804, 'Heidi', 1982, 'F', 3391), +(123805, 'Katrina', 1982, 'F', 3323), +(123806, 'Tracy', 1982, 'F', 3281), +(123807, 'Jill', 1982, 'F', 3270), +(123808, 'Tina', 1982, 'F', 3218), +(123809, 'Latoya', 1982, 'F', 3200), +(123810, 'Brooke', 1982, 'F', 3145), +(123811, 'Alexis', 1982, 'F', 3122), +(123812, 'Brittany', 1982, 'F', 3099), +(123813, 'Dawn', 1982, 'F', 3088), +(123814, 'Jillian', 1982, 'F', 3056), +(123815, 'Margaret', 1982, 'F', 2998), +(123816, 'Lori', 1982, 'F', 2979), +(123817, 'Nichole', 1982, 'F', 2920), +(123818, 'Denise', 1982, 'F', 2894), +(123819, 'Renee', 1982, 'F', 2893), +(123820, 'Teresa', 1982, 'F', 2882), +(123821, 'Candace', 1982, 'F', 2852), +(123822, 'Kristy', 1982, 'F', 2843), +(123823, 'Wendy', 1982, 'F', 2821), +(123824, 'Nancy', 1982, 'F', 2804), +(123825, 'Linda', 1982, 'F', 2787), +(123826, 'Robin', 1982, 'F', 2767), +(123827, 'Theresa', 1982, 'F', 2750), +(123828, 'Meghan', 1982, 'F', 2734), +(123829, 'Alison', 1982, 'F', 2726), +(123830, 'Bethany', 1982, 'F', 2712), +(123831, 'Kara', 1982, 'F', 2662), +(123832, 'Tanya', 1982, 'F', 2602), +(123833, 'Christy', 1982, 'F', 2599), +(123834, 'Monique', 1982, 'F', 2570), +(123835, 'Miranda', 1982, 'F', 2519), +(123836, 'Brenda', 1982, 'F', 2516), +(123837, 'Casey', 1982, 'F', 2477), +(123838, 'Rachael', 1982, 'F', 2471), +(123839, 'Jenny', 1982, 'F', 2455), +(123840, 'Anne', 1982, 'F', 2445), +(123841, 'Melinda', 1982, 'F', 2408), +(123842, 'Lacey', 1982, 'F', 2385), +(123843, 'Gina', 1982, 'F', 2381), +(123844, 'Tonya', 1982, 'F', 2377), +(123845, 'Kelli', 1982, 'F', 2373), +(123846, 'Sabrina', 1982, 'F', 2370), +(123847, 'Tamara', 1982, 'F', 2358), +(123848, 'Barbara', 1982, 'F', 2343), +(123849, 'Molly', 1982, 'F', 2317), +(123850, 'Ebony', 1982, 'F', 2280), +(123851, 'Kayla', 1982, 'F', 2275), +(123852, 'Tammy', 1982, 'F', 2262), +(123853, 'Michele', 1982, 'F', 2225), +(123854, 'Kari', 1982, 'F', 2222), +(123855, 'Cassie', 1982, 'F', 2193), +(123856, 'Jaime', 1982, 'F', 2193), +(123857, 'Colleen', 1982, 'F', 2145), +(123858, 'Kristi', 1982, 'F', 2143), +(123859, 'Jaclyn', 1982, 'F', 2141), +(123860, 'Desiree', 1982, 'F', 2096), +(123861, 'Rebekah', 1982, 'F', 2059), +(123862, 'Sharon', 1982, 'F', 2027), +(123863, 'Alisha', 1982, 'F', 2012), +(123864, 'Bridget', 1982, 'F', 2008), +(123865, 'Carolyn', 1982, 'F', 2008), +(123866, 'Beth', 1982, 'F', 2003), +(123867, 'Sheena', 1982, 'F', 1956), +(123868, 'Meredith', 1982, 'F', 1952), +(123869, 'Stefanie', 1982, 'F', 1949), +(123870, 'Tabitha', 1982, 'F', 1935), +(123871, 'Latasha', 1982, 'F', 1922), +(123872, 'Marie', 1982, 'F', 1921), +(123873, 'Ann', 1982, 'F', 1919), +(123874, 'Deanna', 1982, 'F', 1895), +(123875, 'Abigail', 1982, 'F', 1884), +(123876, 'Tasha', 1982, 'F', 1884), +(123877, 'Cheryl', 1982, 'F', 1876), +(123878, 'Deborah', 1982, 'F', 1842), +(123879, 'Joanna', 1982, 'F', 1834), +(123880, 'Shawna', 1982, 'F', 1770), +(123881, 'Kendra', 1982, 'F', 1762), +(123882, 'Virginia', 1982, 'F', 1762), +(123883, 'Carla', 1982, 'F', 1757), +(123884, 'Angel', 1982, 'F', 1745), +(123885, 'Cindy', 1982, 'F', 1730), +(123886, 'Adrienne', 1982, 'F', 1728), +(123887, 'Morgan', 1982, 'F', 1716), +(123888, 'Chelsea', 1982, 'F', 1715), +(123889, 'Mandy', 1982, 'F', 1714), +(123890, 'Regina', 1982, 'F', 1713), +(123891, 'Krista', 1982, 'F', 1695), +(123892, 'Suzanne', 1982, 'F', 1627), +(123893, 'Hannah', 1982, 'F', 1579), +(123894, 'Jodi', 1982, 'F', 1569), +(123895, 'Audrey', 1982, 'F', 1542), +(123896, 'Caroline', 1982, 'F', 1537), +(123897, 'Alexandra', 1982, 'F', 1528), +(123898, 'Donna', 1982, 'F', 1527), +(123899, 'Marissa', 1982, 'F', 1521), +(123900, 'Janet', 1982, 'F', 1498), +(123901, 'Angelica', 1982, 'F', 1495), +(123902, 'Priscilla', 1982, 'F', 1488), +(123903, 'Whitney', 1982, 'F', 1478), +(123904, 'Trisha', 1982, 'F', 1459), +(123905, 'Aimee', 1982, 'F', 1450), +(123906, 'Martha', 1982, 'F', 1450), +(123907, 'Jasmine', 1982, 'F', 1446), +(123908, 'Claudia', 1982, 'F', 1439), +(123909, 'Jacquelyn', 1982, 'F', 1436), +(123910, 'Yolanda', 1982, 'F', 1436), +(123911, 'Nina', 1982, 'F', 1427), +(123912, 'Autumn', 1982, 'F', 1426), +(123913, 'Felicia', 1982, 'F', 1426), +(123914, 'Cristina', 1982, 'F', 1421), +(123915, 'Evelyn', 1982, 'F', 1375), +(123916, 'Toni', 1982, 'F', 1372), +(123917, 'Bonnie', 1982, 'F', 1367), +(123918, 'Ana', 1982, 'F', 1357), +(123919, 'Diane', 1982, 'F', 1349), +(123920, 'Kate', 1982, 'F', 1339), +(123921, 'Joy', 1982, 'F', 1335), +(123922, 'Cara', 1982, 'F', 1328), +(123923, 'Paula', 1982, 'F', 1327), +(123924, 'Mindy', 1982, 'F', 1322), +(123925, 'Carmen', 1982, 'F', 1316), +(123926, 'Robyn', 1982, 'F', 1315), +(123927, 'Debra', 1982, 'F', 1313), +(123928, 'Abby', 1982, 'F', 1299), +(123929, 'Summer', 1982, 'F', 1260), +(123930, 'Carly', 1982, 'F', 1249), +(123931, 'Janelle', 1982, 'F', 1245), +(123932, 'Kristine', 1982, 'F', 1232), +(123933, 'Naomi', 1982, 'F', 1221), +(123934, 'Shanna', 1982, 'F', 1212), +(123935, 'Rosa', 1982, 'F', 1203), +(123936, 'Kellie', 1982, 'F', 1194), +(123937, 'Caitlin', 1982, 'F', 1191), +(123938, 'Laurie', 1982, 'F', 1185), +(123939, 'Tia', 1982, 'F', 1182), +(123940, 'Adriana', 1982, 'F', 1175), +(123941, 'Ruth', 1982, 'F', 1175), +(123942, 'Sophia', 1982, 'F', 1160), +(123943, 'Jessie', 1982, 'F', 1144), +(123944, 'Shelly', 1982, 'F', 1136), +(123945, 'Rhonda', 1982, 'F', 1131), +(123946, 'Olivia', 1982, 'F', 1125), +(123947, 'Melody', 1982, 'F', 1114), +(123948, 'Alyssa', 1982, 'F', 1110), +(123949, 'Sheila', 1982, 'F', 1099), +(123950, 'Marisa', 1982, 'F', 1096), +(123951, 'Rose', 1982, 'F', 1096), +(123952, 'Terri', 1982, 'F', 1091), +(123953, 'Randi', 1982, 'F', 1086), +(123954, 'Nikki', 1982, 'F', 1075), +(123955, 'Gloria', 1982, 'F', 1074), +(123956, 'Charlene', 1982, 'F', 1058), +(123957, 'Tamika', 1982, 'F', 1057), +(123958, 'Lydia', 1982, 'F', 1051), +(123959, 'Sonia', 1982, 'F', 1047), +(123960, 'Sherry', 1982, 'F', 1046), +(123961, 'Christie', 1982, 'F', 1040), +(123962, 'Kerri', 1982, 'F', 1029), +(123963, 'Haley', 1982, 'F', 1024), +(123964, 'Annie', 1982, 'F', 1015), +(123965, 'Jenna', 1982, 'F', 1011), +(123966, 'Anita', 1982, 'F', 1010), +(123967, 'Ellen', 1982, 'F', 1007), +(123968, 'Sonya', 1982, 'F', 1007), +(123969, 'Yvonne', 1982, 'F', 1007), +(123970, 'Kelley', 1982, 'F', 1006), +(123971, 'Lacy', 1982, 'F', 986), +(123972, 'Sylvia', 1982, 'F', 984), +(123973, 'Keri', 1982, 'F', 982), +(123974, 'Shauna', 1982, 'F', 969), +(123975, 'Leticia', 1982, 'F', 966), +(123976, 'Leigh', 1982, 'F', 958), +(123977, 'Karla', 1982, 'F', 957), +(123978, 'Katharine', 1982, 'F', 950), +(123979, 'Grace', 1982, 'F', 948), +(123980, 'Bobbie', 1982, 'F', 947), +(123981, 'Carol', 1982, 'F', 947), +(123982, 'Jeanette', 1982, 'F', 939), +(123983, 'Kristie', 1982, 'F', 938), +(123984, 'Kerry', 1982, 'F', 937), +(123985, 'Esther', 1982, 'F', 934), +(123986, 'Traci', 1982, 'F', 921), +(123987, 'Krystle', 1982, 'F', 916), +(123988, 'Maureen', 1982, 'F', 915), +(123989, 'Frances', 1982, 'F', 904), +(123990, 'Tracey', 1982, 'F', 897), +(123991, 'Kira', 1982, 'F', 891), +(123992, 'Brianna', 1982, 'F', 889), +(123993, 'Rachelle', 1982, 'F', 885), +(123994, 'Janice', 1982, 'F', 881), +(123995, 'Roxanne', 1982, 'F', 880), +(123996, 'Kathy', 1982, 'F', 878), +(123997, 'Helen', 1982, 'F', 875), +(123998, 'Raquel', 1982, 'F', 871), +(123999, 'Stacie', 1982, 'F', 869), +(124000, 'Yvette', 1982, 'F', 866), +(124001, 'Annette', 1982, 'F', 862), +(124002, 'Charity', 1982, 'F', 858), +(124003, 'Latisha', 1982, 'F', 855), +(124004, 'Angelina', 1982, 'F', 850), +(124005, 'Shelley', 1982, 'F', 848), +(124006, 'Juanita', 1982, 'F', 845), +(124007, 'Eva', 1982, 'F', 844), +(124008, 'Jana', 1982, 'F', 843), +(124009, 'Jane', 1982, 'F', 840), +(124010, 'Meagan', 1982, 'F', 837), +(124011, 'Jennie', 1982, 'F', 835), +(124012, 'Amelia', 1982, 'F', 834), +(124013, 'Brandie', 1982, 'F', 834), +(124014, 'Lynn', 1982, 'F', 834), +(124015, 'Lesley', 1982, 'F', 833), +(124016, 'Dorothy', 1982, 'F', 829), +(124017, 'Claire', 1982, 'F', 815), +(124018, 'Ashlee', 1982, 'F', 812), +(124019, 'Rochelle', 1982, 'F', 810), +(124020, 'Miriam', 1982, 'F', 809), +(124021, 'Amie', 1982, 'F', 807), +(124022, 'Elisabeth', 1982, 'F', 801), +(124023, 'Becky', 1982, 'F', 800), +(124024, 'Tabatha', 1982, 'F', 799), +(124025, 'Johanna', 1982, 'F', 795), +(124026, 'Chrystal', 1982, 'F', 792), +(124027, 'Charlotte', 1982, 'F', 791), +(124028, 'Kelsey', 1982, 'F', 790), +(124029, 'Alissa', 1982, 'F', 789), +(124030, 'Constance', 1982, 'F', 780), +(124031, 'Elaine', 1982, 'F', 779), +(124032, 'Bianca', 1982, 'F', 775), +(124033, 'Irene', 1982, 'F', 772), +(124034, 'Jolene', 1982, 'F', 769), +(124035, 'Sandy', 1982, 'F', 763), +(124036, 'Tanisha', 1982, 'F', 758), +(124037, 'Jackie', 1982, 'F', 757), +(124038, 'Jami', 1982, 'F', 757), +(124039, 'Hillary', 1982, 'F', 753), +(124040, 'Brianne', 1982, 'F', 752), +(124041, 'Patrice', 1982, 'F', 749), +(124042, 'Alice', 1982, 'F', 747), +(124043, 'Gretchen', 1982, 'F', 747), +(124044, 'Tricia', 1982, 'F', 746), +(124045, 'Jocelyn', 1982, 'F', 740), +(124046, 'Kirsten', 1982, 'F', 739), +(124047, 'Angie', 1982, 'F', 736), +(124048, 'Chasity', 1982, 'F', 732), +(124049, 'Latonya', 1982, 'F', 732), +(124050, 'Brittney', 1982, 'F', 725), +(124051, 'Kasey', 1982, 'F', 724), +(124052, 'Jenifer', 1982, 'F', 722), +(124053, 'Carissa', 1982, 'F', 714), +(124054, 'Elisa', 1982, 'F', 714), +(124055, 'Lakisha', 1982, 'F', 712), +(124056, 'Rita', 1982, 'F', 708), +(124057, 'Alana', 1982, 'F', 707), +(124058, 'Judith', 1982, 'F', 707), +(124059, 'Briana', 1982, 'F', 705), +(124060, 'Shana', 1982, 'F', 694), +(124061, 'Bobbi', 1982, 'F', 687), +(124062, 'Faith', 1982, 'F', 686), +(124063, 'Antoinette', 1982, 'F', 685), +(124064, 'Ginger', 1982, 'F', 683), +(124065, 'Tameka', 1982, 'F', 683), +(124066, 'Jody', 1982, 'F', 677), +(124067, 'Belinda', 1982, 'F', 671), +(124068, 'Norma', 1982, 'F', 667), +(124069, 'Karina', 1982, 'F', 666), +(124070, 'Keisha', 1982, 'F', 665), +(124071, 'Joyce', 1982, 'F', 663), +(124072, 'Cecilia', 1982, 'F', 662), +(124073, 'Staci', 1982, 'F', 661), +(124074, 'Audra', 1982, 'F', 659), +(124075, 'Connie', 1982, 'F', 656), +(124076, 'Lorena', 1982, 'F', 653), +(124077, 'Tessa', 1982, 'F', 648), +(124078, 'Christa', 1982, 'F', 641), +(124079, 'Gabrielle', 1982, 'F', 641), +(124080, 'Maribel', 1982, 'F', 640), +(124081, 'Aubrey', 1982, 'F', 638), +(124082, 'Betty', 1982, 'F', 635), +(124083, 'Lyndsey', 1982, 'F', 634), +(124084, 'Sally', 1982, 'F', 633), +(124085, 'Daisy', 1982, 'F', 632), +(124086, 'Joanne', 1982, 'F', 632), +(124087, 'Camille', 1982, 'F', 630), +(124088, 'Lara', 1982, 'F', 628), +(124089, 'Sherri', 1982, 'F', 624), +(124090, 'Ruby', 1982, 'F', 622), +(124091, 'Elena', 1982, 'F', 614), +(124092, 'Jade', 1982, 'F', 614), +(124093, 'Judy', 1982, 'F', 613), +(124094, 'Fallon', 1982, 'F', 611), +(124095, 'Beverly', 1982, 'F', 609), +(124096, 'Lakeisha', 1982, 'F', 607), +(124097, 'Christin', 1982, 'F', 605), +(124098, 'Taylor', 1982, 'F', 605), +(124099, 'Jean', 1982, 'F', 603), +(124100, 'Alma', 1982, 'F', 602), +(124101, 'Hilary', 1982, 'F', 602), +(124102, 'Maggie', 1982, 'F', 601), +(124103, 'Shirley', 1982, 'F', 600), +(124104, 'Celeste', 1982, 'F', 598), +(124105, 'Gabriela', 1982, 'F', 596), +(124106, 'Ryan', 1982, 'F', 596), +(124107, 'Serena', 1982, 'F', 594), +(124108, 'Alexandria', 1982, 'F', 592), +(124109, 'Corinne', 1982, 'F', 588), +(124110, 'Joni', 1982, 'F', 588), +(124111, 'Ariel', 1982, 'F', 584), +(124112, 'Cortney', 1982, 'F', 584), +(124113, 'Eileen', 1982, 'F', 584), +(124114, 'Paige', 1982, 'F', 584), +(124115, 'Darlene', 1982, 'F', 583), +(124116, 'Ericka', 1982, 'F', 583), +(124117, 'Marilyn', 1982, 'F', 583), +(124118, 'Kristal', 1982, 'F', 582), +(124119, 'Jodie', 1982, 'F', 580), +(124120, 'Guadalupe', 1982, 'F', 578), +(124121, 'Michael', 1982, 'F', 576), +(124122, 'Leanne', 1982, 'F', 575), +(124123, 'Christen', 1982, 'F', 569), +(124124, 'Allyson', 1982, 'F', 563), +(124125, 'Katy', 1982, 'F', 563), +(124126, 'Nora', 1982, 'F', 562), +(124127, 'Emma', 1982, 'F', 561), +(124128, 'Marisol', 1982, 'F', 560), +(124129, 'Janine', 1982, 'F', 559), +(124130, 'Hope', 1982, 'F', 557), +(124131, 'Ashleigh', 1982, 'F', 552), +(124132, 'Mayra', 1982, 'F', 550), +(124133, 'Mia', 1982, 'F', 548), +(124134, 'Clarissa', 1982, 'F', 542), +(124135, 'Tiffani', 1982, 'F', 540), +(124136, 'Elisha', 1982, 'F', 539), +(124137, 'Hollie', 1982, 'F', 538), +(124138, 'Rosemary', 1982, 'F', 531), +(124139, 'Genevieve', 1982, 'F', 528), +(124140, 'Mandi', 1982, 'F', 524), +(124141, 'Terra', 1982, 'F', 523), +(124142, 'Esmeralda', 1982, 'F', 519), +(124143, 'Sheri', 1982, 'F', 515), +(124144, 'Billie', 1982, 'F', 514), +(124145, 'Alisa', 1982, 'F', 513), +(124146, 'Lena', 1982, 'F', 513), +(124147, 'Dianna', 1982, 'F', 512), +(124148, 'Joann', 1982, 'F', 509), +(124149, 'Laurel', 1982, 'F', 507), +(124150, 'Jayme', 1982, 'F', 506), +(124151, 'Leann', 1982, 'F', 506), +(124152, 'Shayla', 1982, 'F', 506), +(124153, 'Devon', 1982, 'F', 501), +(124154, 'Marsha', 1982, 'F', 496), +(124155, 'Hayley', 1982, 'F', 493), +(124156, 'Rosanna', 1982, 'F', 492), +(124157, 'Lora', 1982, 'F', 491), +(124158, 'Alejandra', 1982, 'F', 490), +(124159, 'Josephine', 1982, 'F', 489), +(124160, 'Isabel', 1982, 'F', 488), +(124161, 'Cathy', 1982, 'F', 486), +(124162, 'Lee', 1982, 'F', 485), +(124163, 'Blair', 1982, 'F', 483), +(124164, 'Aisha', 1982, 'F', 482), +(124165, 'Marlene', 1982, 'F', 481), +(124166, 'Chandra', 1982, 'F', 478), +(124167, 'Lillian', 1982, 'F', 475), +(124168, 'Tracie', 1982, 'F', 475), +(124169, 'Jordan', 1982, 'F', 471), +(124170, 'Lorraine', 1982, 'F', 471), +(124171, 'Iris', 1982, 'F', 470), +(124172, 'Raven', 1982, 'F', 470), +(124173, 'Destiny', 1982, 'F', 469), +(124174, 'Kim', 1982, 'F', 468), +(124175, 'Lucy', 1982, 'F', 468), +(124176, 'Trina', 1982, 'F', 467), +(124177, 'Teri', 1982, 'F', 465), +(124178, 'Margarita', 1982, 'F', 459), +(124179, 'Alaina', 1982, 'F', 458), +(124180, 'Angelique', 1982, 'F', 456), +(124181, 'Alyson', 1982, 'F', 454), +(124182, 'Marcia', 1982, 'F', 454), +(124183, 'Christi', 1982, 'F', 453), +(124184, 'Dena', 1982, 'F', 451), +(124185, 'Dominique', 1982, 'F', 450), +(124186, 'Taryn', 1982, 'F', 450), +(124187, 'Blanca', 1982, 'F', 448), +(124188, 'Yesenia', 1982, 'F', 448), +(124189, 'Kimberley', 1982, 'F', 446), +(124190, 'Nadia', 1982, 'F', 444), +(124191, 'Bridgette', 1982, 'F', 443), +(124192, 'Lashonda', 1982, 'F', 440), +(124193, 'Casandra', 1982, 'F', 439), +(124194, 'Christian', 1982, 'F', 439), +(124195, 'Bernadette', 1982, 'F', 436), +(124196, 'Elise', 1982, 'F', 436), +(124197, 'Sasha', 1982, 'F', 435), +(124198, 'Shelby', 1982, 'F', 435), +(124199, 'Gwendolyn', 1982, 'F', 432), +(124200, 'Larissa', 1982, 'F', 432), +(124201, 'Christopher', 1982, 'F', 430), +(124202, 'Melisa', 1982, 'F', 428), +(124203, 'Juliana', 1982, 'F', 425), +(124204, 'Adrianne', 1982, 'F', 422), +(124205, 'Arlene', 1982, 'F', 421), +(124206, 'Betsy', 1982, 'F', 421), +(124207, 'Callie', 1982, 'F', 420), +(124208, 'Lakesha', 1982, 'F', 418), +(124209, 'Jeannette', 1982, 'F', 415), +(124210, 'Debbie', 1982, 'F', 413), +(124211, 'Loretta', 1982, 'F', 413), +(124212, 'Jeanne', 1982, 'F', 412), +(124213, 'Roberta', 1982, 'F', 412), +(124214, 'Kenya', 1982, 'F', 411), +(124215, 'Adrian', 1982, 'F', 409), +(124216, 'Marianne', 1982, 'F', 407), +(124217, 'Tami', 1982, 'F', 404), +(124218, 'Tiffanie', 1982, 'F', 404), +(124219, 'Lyndsay', 1982, 'F', 403), +(124220, 'Marina', 1982, 'F', 402), +(124221, 'Shameka', 1982, 'F', 402), +(124222, 'Darcy', 1982, 'F', 400), +(124223, 'Susana', 1982, 'F', 399), +(124224, 'Tania', 1982, 'F', 399), +(124225, 'Carolina', 1982, 'F', 397), +(124226, 'Cari', 1982, 'F', 396), +(124227, 'Catrina', 1982, 'F', 396), +(124228, 'Lynette', 1982, 'F', 395), +(124229, 'Liza', 1982, 'F', 393), +(124230, 'Cherie', 1982, 'F', 392), +(124231, 'Vivian', 1982, 'F', 392), +(124232, 'Rhiannon', 1982, 'F', 391), +(124233, 'Selena', 1982, 'F', 391), +(124234, 'Candy', 1982, 'F', 388), +(124235, 'Tera', 1982, 'F', 386), +(124236, 'Janette', 1982, 'F', 385), +(124237, 'Nicolette', 1982, 'F', 385), +(124238, 'Lea', 1982, 'F', 384), +(124239, 'Breanna', 1982, 'F', 381), +(124240, 'Jacklyn', 1982, 'F', 381), +(124241, 'Penny', 1982, 'F', 380), +(124242, 'Luz', 1982, 'F', 373), +(124243, 'Sonja', 1982, 'F', 372), +(124244, 'Kyla', 1982, 'F', 371), +(124245, 'Liliana', 1982, 'F', 371), +(124246, 'Abbey', 1982, 'F', 370), +(124247, 'Jeannie', 1982, 'F', 370), +(124248, 'Latrice', 1982, 'F', 370), +(124249, 'Jasmin', 1982, 'F', 369), +(124250, 'Ariana', 1982, 'F', 367), +(124251, 'Peggy', 1982, 'F', 367), +(124252, 'Araceli', 1982, 'F', 365), +(124253, 'Elissa', 1982, 'F', 364), +(124254, 'Tiana', 1982, 'F', 362), +(124255, 'Dina', 1982, 'F', 361), +(124256, 'Joan', 1982, 'F', 361), +(124257, 'Mariah', 1982, 'F', 361), +(124258, 'Cheri', 1982, 'F', 359), +(124259, 'Toccara', 1982, 'F', 358), +(124260, 'Natalia', 1982, 'F', 357), +(124261, 'Dayna', 1982, 'F', 356), +(124262, 'Marjorie', 1982, 'F', 351), +(124263, 'Vicki', 1982, 'F', 349), +(124264, 'Christal', 1982, 'F', 348), +(124265, 'Maya', 1982, 'F', 345), +(124266, 'Silvia', 1982, 'F', 345), +(124267, 'Tatiana', 1982, 'F', 343), +(124268, 'Janie', 1982, 'F', 335), +(124269, 'Maranda', 1982, 'F', 335), +(124270, 'Wanda', 1982, 'F', 335), +(124271, 'Chantel', 1982, 'F', 334), +(124272, 'Lana', 1982, 'F', 334), +(124273, 'Nadine', 1982, 'F', 334), +(124274, 'Lynda', 1982, 'F', 333), +(124275, 'Chanel', 1982, 'F', 331), +(124276, 'Myra', 1982, 'F', 331), +(124277, 'Mollie', 1982, 'F', 329), +(124278, 'Marla', 1982, 'F', 328), +(124279, 'Janna', 1982, 'F', 327), +(124280, 'Maryann', 1982, 'F', 327), +(124281, 'Misti', 1982, 'F', 327), +(124282, 'Clara', 1982, 'F', 326), +(124283, 'Glenda', 1982, 'F', 326), +(124284, 'Athena', 1982, 'F', 325), +(124285, 'Kassandra', 1982, 'F', 325), +(124286, 'Latosha', 1982, 'F', 325), +(124287, 'Shamika', 1982, 'F', 323), +(124288, 'Chelsey', 1982, 'F', 322), +(124289, 'Julianne', 1982, 'F', 321), +(124290, 'Shari', 1982, 'F', 321), +(124291, 'Dara', 1982, 'F', 320), +(124292, 'Kimberlee', 1982, 'F', 320), +(124293, 'Irma', 1982, 'F', 318), +(124294, 'Brenna', 1982, 'F', 317), +(124295, 'Lucia', 1982, 'F', 317), +(124296, 'Valarie', 1982, 'F', 317), +(124297, 'James', 1982, 'F', 316), +(124298, 'Marcie', 1982, 'F', 316), +(124299, 'Antonia', 1982, 'F', 314), +(124300, 'Tanika', 1982, 'F', 314), +(124301, 'Justine', 1982, 'F', 313), +(124302, 'Noelle', 1982, 'F', 313), +(124303, 'Tosha', 1982, 'F', 312), +(124304, 'Breanne', 1982, 'F', 311), +(124305, 'Bridgett', 1982, 'F', 311), +(124306, 'Leanna', 1982, 'F', 311), +(124307, 'Shawn', 1982, 'F', 311), +(124308, 'Janell', 1982, 'F', 308), +(124309, 'Jesse', 1982, 'F', 308), +(124310, 'Beatriz', 1982, 'F', 306), +(124311, 'Gail', 1982, 'F', 306), +(124312, 'Marci', 1982, 'F', 305), +(124313, 'Mercedes', 1982, 'F', 304), +(124314, 'Ladonna', 1982, 'F', 302), +(124315, 'Rena', 1982, 'F', 302), +(124316, 'Racheal', 1982, 'F', 301), +(124317, 'Kacie', 1982, 'F', 299), +(124318, 'Marcella', 1982, 'F', 299), +(124319, 'Sheryl', 1982, 'F', 299), +(124320, 'Eliza', 1982, 'F', 298), +(124321, 'Deana', 1982, 'F', 297), +(124322, 'Lacie', 1982, 'F', 297), +(124323, 'Marcy', 1982, 'F', 297), +(124324, 'Edith', 1982, 'F', 296), +(124325, 'Noemi', 1982, 'F', 296), +(124326, 'Daphne', 1982, 'F', 295), +(124327, 'Karin', 1982, 'F', 295), +(124328, 'Leeann', 1982, 'F', 295), +(124329, 'Brynn', 1982, 'F', 294), +(124330, 'Ivy', 1982, 'F', 293), +(124331, 'Jeanine', 1982, 'F', 293), +(124332, 'Rocio', 1982, 'F', 293), +(124333, 'Talia', 1982, 'F', 293), +(124334, 'Daniela', 1982, 'F', 292), +(124335, 'Gladys', 1982, 'F', 292), +(124336, 'Malinda', 1982, 'F', 292), +(124337, 'Wendi', 1982, 'F', 291), +(124338, 'Marlena', 1982, 'F', 290), +(124339, 'Alanna', 1982, 'F', 289), +(124340, 'Beatrice', 1982, 'F', 289), +(124341, 'Kristyn', 1982, 'F', 289), +(124342, 'Anastasia', 1982, 'F', 288), +(124343, 'Olga', 1982, 'F', 288), +(124344, 'Shanika', 1982, 'F', 288), +(124345, 'Maritza', 1982, 'F', 287), +(124346, 'Selina', 1982, 'F', 287), +(124347, 'Candi', 1982, 'F', 286), +(124348, 'Chastity', 1982, 'F', 285), +(124349, 'Deidre', 1982, 'F', 285), +(124350, 'Michaela', 1982, 'F', 285), +(124351, 'Tiara', 1982, 'F', 285), +(124352, 'Georgia', 1982, 'F', 284), +(124353, 'Ramona', 1982, 'F', 284), +(124354, 'Janel', 1982, 'F', 283), +(124355, 'Eboni', 1982, 'F', 282), +(124356, 'Corina', 1982, 'F', 281), +(124357, 'Dolores', 1982, 'F', 279), +(124358, 'Maura', 1982, 'F', 279), +(124359, 'Sheree', 1982, 'F', 278), +(124360, 'Sherrie', 1982, 'F', 278), +(124361, 'Britney', 1982, 'F', 277), +(124362, 'Sadie', 1982, 'F', 277), +(124363, 'Simone', 1982, 'F', 277), +(124364, 'Francesca', 1982, 'F', 276), +(124365, 'Kendall', 1982, 'F', 276), +(124366, 'Meaghan', 1982, 'F', 276), +(124367, 'Rene', 1982, 'F', 276), +(124368, 'Abbie', 1982, 'F', 275), +(124369, 'Corey', 1982, 'F', 274), +(124370, 'Jason', 1982, 'F', 274), +(124371, 'Josie', 1982, 'F', 274), +(124372, 'Dora', 1982, 'F', 273), +(124373, 'Matthew', 1982, 'F', 273), +(124374, 'Renae', 1982, 'F', 273), +(124375, 'Doris', 1982, 'F', 272), +(124376, 'Emilie', 1982, 'F', 271), +(124377, 'Ingrid', 1982, 'F', 271), +(124378, 'Precious', 1982, 'F', 271), +(124379, 'Kaleena', 1982, 'F', 270), +(124380, 'Kia', 1982, 'F', 270), +(124381, 'Tonia', 1982, 'F', 269), +(124382, 'Celina', 1982, 'F', 267), +(124383, 'Jo', 1982, 'F', 267), +(124384, 'Linsey', 1982, 'F', 267), +(124385, 'Martina', 1982, 'F', 267), +(124386, 'Alecia', 1982, 'F', 266), +(124387, 'Deirdre', 1982, 'F', 265), +(124388, 'Eleanor', 1982, 'F', 265), +(124389, 'Andria', 1982, 'F', 264), +(124390, 'Cori', 1982, 'F', 264), +(124391, 'Karissa', 1982, 'F', 264), +(124392, 'Aja', 1982, 'F', 263), +(124393, 'Loni', 1982, 'F', 262), +(124394, 'Kandice', 1982, 'F', 260), +(124395, 'Madeline', 1982, 'F', 260), +(124396, 'Tierra', 1982, 'F', 260), +(124397, 'Brook', 1982, 'F', 259), +(124398, 'Darla', 1982, 'F', 259), +(124399, 'Celia', 1982, 'F', 257), +(124400, 'Deidra', 1982, 'F', 257), +(124401, 'Sharonda', 1982, 'F', 257), +(124402, 'Cristin', 1982, 'F', 256), +(124403, 'Pauline', 1982, 'F', 256), +(124404, 'Carey', 1982, 'F', 255), +(124405, 'Daniel', 1982, 'F', 255), +(124406, 'Louise', 1982, 'F', 255), +(124407, 'Rosemarie', 1982, 'F', 255), +(124408, 'Shantel', 1982, 'F', 255), +(124409, 'Susanna', 1982, 'F', 255), +(124410, 'Lynsey', 1982, 'F', 254), +(124411, 'Mackenzie', 1982, 'F', 254), +(124412, 'Devin', 1982, 'F', 253), +(124413, 'Gillian', 1982, 'F', 253), +(124414, 'Kaitlin', 1982, 'F', 253), +(124415, 'Lawanda', 1982, 'F', 253), +(124416, 'Maricela', 1982, 'F', 251), +(124417, 'Octavia', 1982, 'F', 251), +(124418, 'Tisha', 1982, 'F', 251), +(124419, 'Ashlie', 1982, 'F', 250), +(124420, 'Kacey', 1982, 'F', 250), +(124421, 'Karrie', 1982, 'F', 250), +(124422, 'Tammie', 1982, 'F', 250), +(124423, 'David', 1982, 'F', 249), +(124424, 'Laci', 1982, 'F', 249), +(124425, 'Fatima', 1982, 'F', 247), +(124426, 'Geneva', 1982, 'F', 245), +(124427, 'Cristy', 1982, 'F', 244), +(124428, 'Jenelle', 1982, 'F', 244), +(124429, 'Kylie', 1982, 'F', 244), +(124430, 'Lucinda', 1982, 'F', 244), +(124431, 'Alexia', 1982, 'F', 243), +(124432, 'Helena', 1982, 'F', 243), +(124433, 'Sondra', 1982, 'F', 243), +(124434, 'Desirae', 1982, 'F', 242), +(124435, 'Katelyn', 1982, 'F', 242), +(124436, 'Syreeta', 1982, 'F', 242), +(124437, 'Aurora', 1982, 'F', 241), +(124438, 'Joshua', 1982, 'F', 241), +(124439, 'Georgina', 1982, 'F', 240), +(124440, 'Sofia', 1982, 'F', 240), +(124441, 'Carina', 1982, 'F', 239), +(124442, 'Latanya', 1982, 'F', 239), +(124443, 'Mara', 1982, 'F', 239), +(124444, 'Cora', 1982, 'F', 238), +(124445, 'Lashanda', 1982, 'F', 238), +(124446, 'Shanda', 1982, 'F', 236), +(124447, 'Terry', 1982, 'F', 235), +(124448, 'John', 1982, 'F', 234), +(124449, 'Adrianna', 1982, 'F', 233), +(124450, 'Robert', 1982, 'F', 233), +(124451, 'Marian', 1982, 'F', 232), +(124452, 'Nakia', 1982, 'F', 232), +(124453, 'Corrie', 1982, 'F', 231), +(124454, 'Adriane', 1982, 'F', 230), +(124455, 'Yadira', 1982, 'F', 230), +(124456, 'Casie', 1982, 'F', 229), +(124457, 'Corrine', 1982, 'F', 229), +(124458, 'Rosalinda', 1982, 'F', 228), +(124459, 'Siobhan', 1982, 'F', 228), +(124460, 'Sherita', 1982, 'F', 227), +(124461, 'Asia', 1982, 'F', 226), +(124462, 'Quiana', 1982, 'F', 225), +(124463, 'Francine', 1982, 'F', 224), +(124464, 'Jeri', 1982, 'F', 224), +(124465, 'Delia', 1982, 'F', 223), +(124466, 'Kristan', 1982, 'F', 223), +(124467, 'Demetria', 1982, 'F', 222), +(124468, 'Lourdes', 1982, 'F', 222), +(124469, 'Margo', 1982, 'F', 222), +(124470, 'Holli', 1982, 'F', 221), +(124471, 'Alesha', 1982, 'F', 220), +(124472, 'Princess', 1982, 'F', 220), +(124473, 'Stella', 1982, 'F', 219), +(124474, 'Cassidy', 1982, 'F', 218), +(124475, 'Kami', 1982, 'F', 218), +(124476, 'Kisha', 1982, 'F', 218), +(124477, 'Ronda', 1982, 'F', 218), +(124478, 'Tanesha', 1982, 'F', 218), +(124479, 'Hilda', 1982, 'F', 217), +(124480, 'Jamila', 1982, 'F', 217), +(124481, 'Kala', 1982, 'F', 217), +(124482, 'Edna', 1982, 'F', 216), +(124483, 'Janae', 1982, 'F', 216), +(124484, 'Shayna', 1982, 'F', 216), +(124485, 'Alexa', 1982, 'F', 215), +(124486, 'Candis', 1982, 'F', 214), +(124487, 'June', 1982, 'F', 214), +(124488, 'Vickie', 1982, 'F', 214), +(124489, 'Aileen', 1982, 'F', 213), +(124490, 'Tori', 1982, 'F', 213), +(124491, 'Vicky', 1982, 'F', 213), +(124492, 'Elaina', 1982, 'F', 212), +(124493, 'Cody', 1982, 'F', 211), +(124494, 'Malissa', 1982, 'F', 211), +(124495, 'Marion', 1982, 'F', 211), +(124496, 'Sue', 1982, 'F', 211), +(124497, 'Leila', 1982, 'F', 210), +(124498, 'Shara', 1982, 'F', 210), +(124499, 'Sierra', 1982, 'F', 210), +(124500, 'Brandee', 1982, 'F', 209), +(124501, 'Danelle', 1982, 'F', 208), +(124502, 'Tamra', 1982, 'F', 208), +(124503, 'Angelia', 1982, 'F', 207), +(124504, 'Elsa', 1982, 'F', 206), +(124505, 'Lily', 1982, 'F', 206), +(124506, 'Lindy', 1982, 'F', 206), +(124507, 'Ida', 1982, 'F', 205), +(124508, 'Tarah', 1982, 'F', 205), +(124509, 'Annmarie', 1982, 'F', 204), +(124510, 'Kyra', 1982, 'F', 204), +(124511, 'Shanta', 1982, 'F', 204), +(124512, 'Cristal', 1982, 'F', 203), +(124513, 'Laquita', 1982, 'F', 203), +(124514, 'Mari', 1982, 'F', 203), +(124515, 'Cathleen', 1982, 'F', 202), +(124516, 'Julianna', 1982, 'F', 202), +(124517, 'Kassie', 1982, 'F', 202), +(124518, 'Shalonda', 1982, 'F', 202), +(124519, 'Charmaine', 1982, 'F', 201), +(124520, 'Justin', 1982, 'F', 201), +(124521, 'Melina', 1982, 'F', 201), +(124522, 'Brandon', 1982, 'F', 200), +(124523, 'Cameron', 1982, 'F', 200), +(124524, 'Marta', 1982, 'F', 199), +(124525, 'Lizette', 1982, 'F', 198), +(124526, 'Venessa', 1982, 'F', 198), +(124527, 'Mellissa', 1982, 'F', 197), +(124528, 'Jessi', 1982, 'F', 196), +(124529, 'Jada', 1982, 'F', 195), +(124530, 'Joseph', 1982, 'F', 195), +(124531, 'Loren', 1982, 'F', 195), +(124532, 'Magdalena', 1982, 'F', 195), +(124533, 'Rosalie', 1982, 'F', 195), +(124534, 'Shavon', 1982, 'F', 194), +(124535, 'Colette', 1982, 'F', 192), +(124536, 'Jenilee', 1982, 'F', 192), +(124537, 'Jenni', 1982, 'F', 192), +(124538, 'Lorie', 1982, 'F', 192), +(124539, 'Salina', 1982, 'F', 192), +(124540, 'Shasta', 1982, 'F', 192), +(124541, 'Lakeshia', 1982, 'F', 191), +(124542, 'Cheyenne', 1982, 'F', 190), +(124543, 'Eve', 1982, 'F', 190), +(124544, 'Jaimie', 1982, 'F', 190), +(124545, 'Jeanna', 1982, 'F', 190), +(124546, 'Monika', 1982, 'F', 190), +(124547, 'Pearl', 1982, 'F', 190), +(124548, 'Emilee', 1982, 'F', 189), +(124549, 'Gena', 1982, 'F', 189), +(124550, 'Kyle', 1982, 'F', 189), +(124551, 'Rikki', 1982, 'F', 189), +(124552, 'Deena', 1982, 'F', 187), +(124553, 'Griselda', 1982, 'F', 187), +(124554, 'Juana', 1982, 'F', 187), +(124555, 'Kori', 1982, 'F', 187), +(124556, 'Susie', 1982, 'F', 187), +(124557, 'Bertha', 1982, 'F', 186), +(124558, 'Caryn', 1982, 'F', 186), +(124559, 'Cassondra', 1982, 'F', 186), +(124560, 'Chana', 1982, 'F', 185), +(124561, 'Shaina', 1982, 'F', 185), +(124562, 'Chiquita', 1982, 'F', 184), +(124563, 'Harmony', 1982, 'F', 184), +(124564, 'Roxanna', 1982, 'F', 184), +(124565, 'Shonda', 1982, 'F', 184), +(124566, 'Tawana', 1982, 'F', 184), +(124567, 'Clare', 1982, 'F', 183), +(124568, 'Keely', 1982, 'F', 183), +(124569, 'Sommer', 1982, 'F', 183), +(124570, 'Ami', 1982, 'F', 182), +(124571, 'Chloe', 1982, 'F', 182), +(124572, 'Darci', 1982, 'F', 182), +(124573, 'Mellisa', 1982, 'F', 182), +(124574, 'Tana', 1982, 'F', 182), +(124575, 'Shante', 1982, 'F', 181), +(124576, 'Afton', 1982, 'F', 180), +(124577, 'Chantal', 1982, 'F', 179), +(124578, 'Dionne', 1982, 'F', 179), +(124579, 'Jena', 1982, 'F', 179), +(124580, 'Noel', 1982, 'F', 179), +(124581, 'Shakira', 1982, 'F', 179), +(124582, 'Sunny', 1982, 'F', 179), +(124583, 'Ciara', 1982, 'F', 178), +(124584, 'Ella', 1982, 'F', 178), +(124585, 'Jesica', 1982, 'F', 178), +(124586, 'Phyllis', 1982, 'F', 178), +(124587, 'Tenisha', 1982, 'F', 178), +(124588, 'William', 1982, 'F', 178), +(124589, 'Cory', 1982, 'F', 177), +(124590, 'Graciela', 1982, 'F', 177), +(124591, 'Ivory', 1982, 'F', 177), +(124592, 'Rosalyn', 1982, 'F', 177), +(124593, 'Letitia', 1982, 'F', 176), +(124594, 'Niki', 1982, 'F', 176), +(124595, 'Roxana', 1982, 'F', 176), +(124596, 'Dianne', 1982, 'F', 175), +(124597, 'Joanie', 1982, 'F', 175), +(124598, 'Kathrine', 1982, 'F', 175), +(124599, 'Lois', 1982, 'F', 175), +(124600, 'Mariana', 1982, 'F', 175), +(124601, 'Mildred', 1982, 'F', 175), +(124602, 'Bernice', 1982, 'F', 174), +(124603, 'Jeana', 1982, 'F', 173), +(124604, 'Jeanie', 1982, 'F', 173), +(124605, 'Kesha', 1982, 'F', 173), +(124606, 'Leilani', 1982, 'F', 173), +(124607, 'Rebeca', 1982, 'F', 172), +(124608, 'Stacia', 1982, 'F', 172), +(124609, 'Stephenie', 1982, 'F', 172), +(124610, 'Hailey', 1982, 'F', 171), +(124611, 'Juliet', 1982, 'F', 171), +(124612, 'Ada', 1982, 'F', 170), +(124613, 'Shanita', 1982, 'F', 170), +(124614, 'Angeline', 1982, 'F', 169), +(124615, 'Eugenia', 1982, 'F', 169), +(124616, 'Justina', 1982, 'F', 169), +(124617, 'Suzanna', 1982, 'F', 169), +(124618, 'Cecelia', 1982, 'F', 168), +(124619, 'Daniella', 1982, 'F', 168), +(124620, 'Jonathan', 1982, 'F', 168), +(124621, 'Lynne', 1982, 'F', 168), +(124622, 'Shelia', 1982, 'F', 168), +(124623, 'Annemarie', 1982, 'F', 167), +(124624, 'Greta', 1982, 'F', 167), +(124625, 'Jeannine', 1982, 'F', 167), +(124626, 'Joelle', 1982, 'F', 167), +(124627, 'Vera', 1982, 'F', 167), +(124628, 'Eunice', 1982, 'F', 166), +(124629, 'Kali', 1982, 'F', 166), +(124630, 'Karyn', 1982, 'F', 166), +(124631, 'Kati', 1982, 'F', 166), +(124632, 'Meghann', 1982, 'F', 166), +(124633, 'Mona', 1982, 'F', 166), +(124634, 'Shena', 1982, 'F', 166), +(124635, 'Falon', 1982, 'F', 165), +(124636, 'Viviana', 1982, 'F', 165), +(124637, 'Alina', 1982, 'F', 164), +(124638, 'Malia', 1982, 'F', 164), +(124639, 'Richelle', 1982, 'F', 164), +(124640, 'Starla', 1982, 'F', 164), +(124641, 'Tawny', 1982, 'F', 164), +(124642, 'Therese', 1982, 'F', 164), +(124643, 'Charissa', 1982, 'F', 163), +(124644, 'Jan', 1982, 'F', 163), +(124645, 'Lynnette', 1982, 'F', 163), +(124646, 'Kerrie', 1982, 'F', 162), +(124647, 'Arielle', 1982, 'F', 161), +(124648, 'Ashly', 1982, 'F', 161), +(124649, 'Chantelle', 1982, 'F', 161), +(124650, 'Katina', 1982, 'F', 161), +(124651, 'Nikole', 1982, 'F', 161), +(124652, 'Bambi', 1982, 'F', 160), +(124653, 'Chelsie', 1982, 'F', 160), +(124654, 'Kandi', 1982, 'F', 160), +(124655, 'Ursula', 1982, 'F', 160), +(124656, 'Delilah', 1982, 'F', 159), +(124657, 'Francisca', 1982, 'F', 159), +(124658, 'Johnna', 1982, 'F', 159), +(124659, 'Shannan', 1982, 'F', 159), +(124660, 'Andrew', 1982, 'F', 158), +(124661, 'Kaci', 1982, 'F', 158), +(124662, 'Kiley', 1982, 'F', 158), +(124663, 'Margie', 1982, 'F', 158), +(124664, 'Perla', 1982, 'F', 158), +(124665, 'Lisette', 1982, 'F', 157), +(124666, 'Rae', 1982, 'F', 157), +(124667, 'Tenika', 1982, 'F', 157), +(124668, 'Danica', 1982, 'F', 156), +(124669, 'Fawn', 1982, 'F', 156), +(124670, 'Lashawn', 1982, 'F', 156), +(124671, 'Latesha', 1982, 'F', 156), +(124672, 'Reyna', 1982, 'F', 156), +(124673, 'Rosie', 1982, 'F', 156), +(124674, 'Tamera', 1982, 'F', 156), +(124675, 'Venus', 1982, 'F', 156), +(124676, 'Consuelo', 1982, 'F', 155), +(124677, 'Deanne', 1982, 'F', 155), +(124678, 'Emilia', 1982, 'F', 155), +(124679, 'Roseanna', 1982, 'F', 155), +(124680, 'Alysia', 1982, 'F', 154), +(124681, 'May', 1982, 'F', 154), +(124682, 'Sharita', 1982, 'F', 154), +(124683, 'Sydney', 1982, 'F', 154), +(124684, 'Jerri', 1982, 'F', 153), +(124685, 'Josefina', 1982, 'F', 153), +(124686, 'Micah', 1982, 'F', 153), +(124687, 'Aaron', 1982, 'F', 152), +(124688, 'Cristen', 1982, 'F', 152), +(124689, 'Felisha', 1982, 'F', 152), +(124690, 'Iesha', 1982, 'F', 152), +(124691, 'Luisa', 1982, 'F', 152), +(124692, 'Natosha', 1982, 'F', 152), +(124693, 'Sandi', 1982, 'F', 152), +(124694, 'Susanne', 1982, 'F', 152), +(124695, 'Tabetha', 1982, 'F', 152), +(124696, 'Thelma', 1982, 'F', 152), +(124697, 'Trista', 1982, 'F', 152), +(124698, 'Tristan', 1982, 'F', 152), +(124699, 'Francis', 1982, 'F', 151), +(124700, 'Kay', 1982, 'F', 151), +(124701, 'Krysta', 1982, 'F', 151), +(124702, 'Tammi', 1982, 'F', 151), +(124703, 'Esperanza', 1982, 'F', 150), +(124704, 'Valencia', 1982, 'F', 150), +(124705, 'Antionette', 1982, 'F', 149), +(124706, 'Carley', 1982, 'F', 149), +(124707, 'Gayle', 1982, 'F', 149), +(124708, 'Ginny', 1982, 'F', 149), +(124709, 'Kacy', 1982, 'F', 149), +(124710, 'Lila', 1982, 'F', 149), +(124711, 'Maren', 1982, 'F', 149), +(124712, 'Violet', 1982, 'F', 149), +(124713, 'Adria', 1982, 'F', 148), +(124714, 'Arianna', 1982, 'F', 148), +(124715, 'Ayesha', 1982, 'F', 148), +(124716, 'Davina', 1982, 'F', 148), +(124717, 'Lia', 1982, 'F', 148), +(124718, 'Renita', 1982, 'F', 148), +(124719, 'Shantell', 1982, 'F', 148), +(124720, 'Bree', 1982, 'F', 147), +(124721, 'Brian', 1982, 'F', 147), +(124722, 'Delores', 1982, 'F', 147), +(124723, 'Hallie', 1982, 'F', 147), +(124724, 'Kourtney', 1982, 'F', 147), +(124725, 'Nakisha', 1982, 'F', 147), +(124726, 'Stephany', 1982, 'F', 147), +(124727, 'Chaya', 1982, 'F', 146), +(124728, 'Ebonie', 1982, 'F', 146), +(124729, 'Hanna', 1982, 'F', 146), +(124730, 'Kandace', 1982, 'F', 146), +(124731, 'Karie', 1982, 'F', 146), +(124732, 'Renata', 1982, 'F', 146), +(124733, 'Valeria', 1982, 'F', 146), +(124734, 'Liana', 1982, 'F', 145), +(124735, 'Alycia', 1982, 'F', 144), +(124736, 'Christiana', 1982, 'F', 144), +(124737, 'Felecia', 1982, 'F', 144), +(124738, 'Kristel', 1982, 'F', 144), +(124739, 'Leona', 1982, 'F', 144), +(124740, 'Marisela', 1982, 'F', 144), +(124741, 'Shavonne', 1982, 'F', 144), +(124742, 'Yasmin', 1982, 'F', 144), +(124743, 'Charisse', 1982, 'F', 143), +(124744, 'Giselle', 1982, 'F', 143), +(124745, 'Nichol', 1982, 'F', 143), +(124746, 'Stefani', 1982, 'F', 143), +(124747, 'Sunshine', 1982, 'F', 143), +(124748, 'Damaris', 1982, 'F', 142), +(124749, 'Farrah', 1982, 'F', 141), +(124750, 'India', 1982, 'F', 141), +(124751, 'Kasandra', 1982, 'F', 141), +(124752, 'Kirstin', 1982, 'F', 141), +(124753, 'Marcela', 1982, 'F', 141), +(124754, 'Quinn', 1982, 'F', 141), +(124755, 'Starr', 1982, 'F', 141), +(124756, 'Tyra', 1982, 'F', 141), +(124757, 'Florence', 1982, 'F', 140), +(124758, 'Elvira', 1982, 'F', 139), +(124759, 'Jammie', 1982, 'F', 139), +(124760, 'Kylee', 1982, 'F', 139), +(124761, 'Shanell', 1982, 'F', 139), +(124762, 'Shaunna', 1982, 'F', 139), +(124763, 'Ashli', 1982, 'F', 138), +(124764, 'Eric', 1982, 'F', 138), +(124765, 'Jazmin', 1982, 'F', 138), +(124766, 'Joi', 1982, 'F', 138), +(124767, 'Latricia', 1982, 'F', 138), +(124768, 'Maegan', 1982, 'F', 138), +(124769, 'Mindi', 1982, 'F', 138), +(124770, 'Tianna', 1982, 'F', 138), +(124771, 'Jayne', 1982, 'F', 137), +(124772, 'Kaitlyn', 1982, 'F', 137), +(124773, 'Michell', 1982, 'F', 137), +(124774, 'Reina', 1982, 'F', 137), +(124775, 'Tashina', 1982, 'F', 137), +(124776, 'Darcie', 1982, 'F', 136), +(124777, 'Gwen', 1982, 'F', 136), +(124778, 'Karri', 1982, 'F', 136); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(124779, 'Nicholas', 1982, 'F', 136), +(124780, 'Stephaine', 1982, 'F', 136), +(124781, 'Tomeka', 1982, 'F', 136), +(124782, 'Anthony', 1982, 'F', 135), +(124783, 'Joleen', 1982, 'F', 135), +(124784, 'Kiana', 1982, 'F', 135), +(124785, 'Shemeka', 1982, 'F', 135), +(124786, 'Tyler', 1982, 'F', 135), +(124787, 'Angelita', 1982, 'F', 134), +(124788, 'Cathryn', 1982, 'F', 134), +(124789, 'Latia', 1982, 'F', 134), +(124790, 'Alena', 1982, 'F', 133), +(124791, 'Kasie', 1982, 'F', 133), +(124792, 'Kristian', 1982, 'F', 133), +(124793, 'Lilia', 1982, 'F', 133), +(124794, 'Tess', 1982, 'F', 133), +(124795, 'Timothy', 1982, 'F', 133), +(124796, 'Chanda', 1982, 'F', 132), +(124797, 'Lina', 1982, 'F', 132), +(124798, 'Mai', 1982, 'F', 132), +(124799, 'Richard', 1982, 'F', 132), +(124800, 'Shanon', 1982, 'F', 132), +(124801, 'Janessa', 1982, 'F', 131), +(124802, 'Keli', 1982, 'F', 131), +(124803, 'Susannah', 1982, 'F', 131), +(124804, 'Tawanna', 1982, 'F', 131), +(124805, 'Kenyatta', 1982, 'F', 130), +(124806, 'Shea', 1982, 'F', 130), +(124807, 'Shellie', 1982, 'F', 130), +(124808, 'Stephani', 1982, 'F', 130), +(124809, 'Zoe', 1982, 'F', 130), +(124810, 'Chrissy', 1982, 'F', 129), +(124811, 'Jaimee', 1982, 'F', 129), +(124812, 'Lindsy', 1982, 'F', 129), +(124813, 'Lissette', 1982, 'F', 129), +(124814, 'Louisa', 1982, 'F', 129), +(124815, 'Nereida', 1982, 'F', 129), +(124816, 'Stevie', 1982, 'F', 129), +(124817, 'Katheryn', 1982, 'F', 128), +(124818, 'Kera', 1982, 'F', 128), +(124819, 'Lashunda', 1982, 'F', 128), +(124820, 'Natashia', 1982, 'F', 128), +(124821, 'Nicki', 1982, 'F', 128), +(124822, 'Nicolle', 1982, 'F', 128), +(124823, 'Portia', 1982, 'F', 128), +(124824, 'Shaneka', 1982, 'F', 128), +(124825, 'Bettina', 1982, 'F', 127), +(124826, 'Ivette', 1982, 'F', 127), +(124827, 'Karli', 1982, 'F', 127), +(124828, 'Latoria', 1982, 'F', 127), +(124829, 'Marquita', 1982, 'F', 127), +(124830, 'Nellie', 1982, 'F', 127), +(124831, 'Patty', 1982, 'F', 127), +(124832, 'Rosario', 1982, 'F', 127), +(124833, 'Aida', 1982, 'F', 126), +(124834, 'Benita', 1982, 'F', 126), +(124835, 'Cassi', 1982, 'F', 126), +(124836, 'Crissy', 1982, 'F', 126), +(124837, 'Elana', 1982, 'F', 126), +(124838, 'Nikia', 1982, 'F', 126), +(124839, 'Paulette', 1982, 'F', 126), +(124840, 'Samatha', 1982, 'F', 126), +(124841, 'Tiesha', 1982, 'F', 126), +(124842, 'Cherise', 1982, 'F', 125), +(124843, 'Dixie', 1982, 'F', 125), +(124844, 'Faye', 1982, 'F', 125), +(124845, 'Geraldine', 1982, 'F', 125), +(124846, 'Sherika', 1982, 'F', 125), +(124847, 'Talisha', 1982, 'F', 125), +(124848, 'Camilla', 1982, 'F', 124), +(124849, 'Charles', 1982, 'F', 124), +(124850, 'Jewel', 1982, 'F', 124), +(124851, 'Kindra', 1982, 'F', 124), +(124852, 'Rashida', 1982, 'F', 124), +(124853, 'Sarita', 1982, 'F', 124), +(124854, 'Sharla', 1982, 'F', 124), +(124855, 'Shemika', 1982, 'F', 124), +(124856, 'Tamar', 1982, 'F', 124), +(124857, 'Trish', 1982, 'F', 124), +(124858, 'Anya', 1982, 'F', 123), +(124859, 'Catalina', 1982, 'F', 123), +(124860, 'Chimere', 1982, 'F', 123), +(124861, 'Denisha', 1982, 'F', 123), +(124862, 'Jeni', 1982, 'F', 123), +(124863, 'Mariel', 1982, 'F', 123), +(124864, 'Nichelle', 1982, 'F', 123), +(124865, 'Shira', 1982, 'F', 123), +(124866, 'Star', 1982, 'F', 123), +(124867, 'Thea', 1982, 'F', 123), +(124868, 'Tyesha', 1982, 'F', 123), +(124869, 'Annamarie', 1982, 'F', 122), +(124870, 'Brigette', 1982, 'F', 122), +(124871, 'Carli', 1982, 'F', 122), +(124872, 'Danae', 1982, 'F', 122), +(124873, 'Jaqueline', 1982, 'F', 122), +(124874, 'Sharee', 1982, 'F', 122), +(124875, 'Shenika', 1982, 'F', 122), +(124876, 'Trinity', 1982, 'F', 122), +(124877, 'Fabiola', 1982, 'F', 121), +(124878, 'Amberly', 1982, 'F', 120), +(124879, 'Chante', 1982, 'F', 120), +(124880, 'Hazel', 1982, 'F', 120), +(124881, 'Latoyia', 1982, 'F', 120), +(124882, 'Shyla', 1982, 'F', 119), +(124883, 'Tawnya', 1982, 'F', 119), +(124884, 'Tiffiny', 1982, 'F', 119), +(124885, 'Evelina', 1982, 'F', 118), +(124886, 'Karly', 1982, 'F', 118), +(124887, 'Kevin', 1982, 'F', 118), +(124888, 'Savannah', 1982, 'F', 118), +(124889, 'Steven', 1982, 'F', 118), +(124890, 'Ashely', 1982, 'F', 117), +(124891, 'Dalia', 1982, 'F', 117), +(124892, 'Eryn', 1982, 'F', 117), +(124893, 'Lucretia', 1982, 'F', 117), +(124894, 'Roseann', 1982, 'F', 117), +(124895, 'Roxann', 1982, 'F', 117), +(124896, 'Adam', 1982, 'F', 116), +(124897, 'Alia', 1982, 'F', 116), +(124898, 'Brett', 1982, 'F', 116), +(124899, 'Charla', 1982, 'F', 116), +(124900, 'Jonelle', 1982, 'F', 116), +(124901, 'Maira', 1982, 'F', 116), +(124902, 'Marybeth', 1982, 'F', 116), +(124903, 'Takisha', 1982, 'F', 116), +(124904, 'Edwina', 1982, 'F', 115), +(124905, 'Margot', 1982, 'F', 115), +(124906, 'Maxine', 1982, 'F', 115), +(124907, 'Tamisha', 1982, 'F', 115), +(124908, 'Yajaira', 1982, 'F', 115), +(124909, 'Carlie', 1982, 'F', 114), +(124910, 'Doreen', 1982, 'F', 114), +(124911, 'Dusty', 1982, 'F', 114), +(124912, 'Layla', 1982, 'F', 114), +(124913, 'Melonie', 1982, 'F', 114), +(124914, 'Samara', 1982, 'F', 114), +(124915, 'Shawanda', 1982, 'F', 114), +(124916, 'Apryl', 1982, 'F', 113), +(124917, 'Britni', 1982, 'F', 113), +(124918, 'Janeen', 1982, 'F', 113), +(124919, 'Julissa', 1982, 'F', 113), +(124920, 'Mckenzie', 1982, 'F', 113), +(124921, 'Ayanna', 1982, 'F', 112), +(124922, 'Brigitte', 1982, 'F', 112), +(124923, 'Brittani', 1982, 'F', 112), +(124924, 'Raina', 1982, 'F', 112), +(124925, 'Rosanne', 1982, 'F', 112), +(124926, 'Tawanda', 1982, 'F', 112), +(124927, 'Tiffaney', 1982, 'F', 112), +(124928, 'Adina', 1982, 'F', 111), +(124929, 'Lakia', 1982, 'F', 111), +(124930, 'Linnea', 1982, 'F', 111), +(124931, 'Ava', 1982, 'F', 110), +(124932, 'Bailey', 1982, 'F', 110), +(124933, 'Imelda', 1982, 'F', 110), +(124934, 'Lashawnda', 1982, 'F', 110), +(124935, 'Rosalia', 1982, 'F', 110), +(124936, 'Thomas', 1982, 'F', 110), +(124937, 'Anitra', 1982, 'F', 109), +(124938, 'Lucille', 1982, 'F', 109), +(124939, 'Meggan', 1982, 'F', 109), +(124940, 'Micaela', 1982, 'F', 109), +(124941, 'Paris', 1982, 'F', 109), +(124942, 'Rhea', 1982, 'F', 109), +(124943, 'Shelli', 1982, 'F', 109), +(124944, 'Skye', 1982, 'F', 109), +(124945, 'Lola', 1982, 'F', 108), +(124946, 'Suzette', 1982, 'F', 108), +(124947, 'Corie', 1982, 'F', 107), +(124948, 'Danyelle', 1982, 'F', 107), +(124949, 'Gabriella', 1982, 'F', 107), +(124950, 'Inez', 1982, 'F', 107), +(124951, 'Jeremy', 1982, 'F', 107), +(124952, 'Rachele', 1982, 'F', 107), +(124953, 'Shanelle', 1982, 'F', 107), +(124954, 'Alesia', 1982, 'F', 106), +(124955, 'Carmela', 1982, 'F', 106), +(124956, 'Deann', 1982, 'F', 106), +(124957, 'Janis', 1982, 'F', 106), +(124958, 'Nikita', 1982, 'F', 106), +(124959, 'Taneka', 1982, 'F', 106), +(124960, 'Anabel', 1982, 'F', 105), +(124961, 'Aracely', 1982, 'F', 105), +(124962, 'Ashlea', 1982, 'F', 105), +(124963, 'Caitlyn', 1982, 'F', 105), +(124964, 'Melodie', 1982, 'F', 105), +(124965, 'Nathalie', 1982, 'F', 105), +(124966, 'Niesha', 1982, 'F', 105), +(124967, 'Taisha', 1982, 'F', 105), +(124968, 'Tomika', 1982, 'F', 105), +(124969, 'Juliette', 1982, 'F', 104), +(124970, 'Lillie', 1982, 'F', 104), +(124971, 'Rosalind', 1982, 'F', 104), +(124972, 'Tamekia', 1982, 'F', 104), +(124973, 'Carin', 1982, 'F', 103), +(124974, 'Dorian', 1982, 'F', 103), +(124975, 'Gracie', 1982, 'F', 103), +(124976, 'Jacinta', 1982, 'F', 103), +(124977, 'Mattie', 1982, 'F', 103), +(124978, 'Mitzi', 1982, 'F', 103), +(124979, 'Racquel', 1982, 'F', 103), +(124980, 'Breann', 1982, 'F', 102), +(124981, 'Candie', 1982, 'F', 102), +(124982, 'Clarice', 1982, 'F', 102), +(124983, 'Leandra', 1982, 'F', 102), +(124984, 'Paola', 1982, 'F', 102), +(124985, 'Tamica', 1982, 'F', 102), +(124986, 'Ashanti', 1982, 'F', 101), +(124987, 'Bobby', 1982, 'F', 101), +(124988, 'Danna', 1982, 'F', 101), +(124989, 'Elsie', 1982, 'F', 101), +(124990, 'Kiera', 1982, 'F', 101), +(124991, 'Leighann', 1982, 'F', 101), +(124992, 'Myesha', 1982, 'F', 101), +(124993, 'Shenna', 1982, 'F', 101), +(124994, 'Tangela', 1982, 'F', 101), +(124995, 'Winter', 1982, 'F', 101), +(124996, 'Arianne', 1982, 'F', 100), +(124997, 'Asha', 1982, 'F', 100), +(124998, 'Crista', 1982, 'F', 100), +(124999, 'Lidia', 1982, 'F', 100), +(125000, 'Mariam', 1982, 'F', 100), +(125001, 'Michael', 1982, 'M', 68204), +(125002, 'Christopher', 1982, 'M', 59225), +(125003, 'Matthew', 1982, 'M', 46052), +(125004, 'Jason', 1982, 'M', 40611), +(125005, 'David', 1982, 'M', 40441), +(125006, 'James', 1982, 'M', 38867), +(125007, 'Joshua', 1982, 'M', 38021), +(125008, 'John', 1982, 'M', 34683), +(125009, 'Robert', 1982, 'M', 34411), +(125010, 'Daniel', 1982, 'M', 32648), +(125011, 'Joseph', 1982, 'M', 31038), +(125012, 'Justin', 1982, 'M', 29099), +(125013, 'Ryan', 1982, 'M', 26695), +(125014, 'Brian', 1982, 'M', 25830), +(125015, 'William', 1982, 'M', 25594), +(125016, 'Jonathan', 1982, 'M', 23122), +(125017, 'Andrew', 1982, 'M', 22833), +(125018, 'Brandon', 1982, 'M', 20213), +(125019, 'Adam', 1982, 'M', 20093), +(125020, 'Eric', 1982, 'M', 19861), +(125021, 'Anthony', 1982, 'M', 19644), +(125022, 'Nicholas', 1982, 'M', 19643), +(125023, 'Thomas', 1982, 'M', 17576), +(125024, 'Kevin', 1982, 'M', 17461), +(125025, 'Timothy', 1982, 'M', 17461), +(125026, 'Steven', 1982, 'M', 17135), +(125027, 'Richard', 1982, 'M', 16706), +(125028, 'Jeremy', 1982, 'M', 16469), +(125029, 'Jeffrey', 1982, 'M', 16035), +(125030, 'Aaron', 1982, 'M', 14411), +(125031, 'Charles', 1982, 'M', 14303), +(125032, 'Mark', 1982, 'M', 13869), +(125033, 'Benjamin', 1982, 'M', 13814), +(125034, 'Scott', 1982, 'M', 12212), +(125035, 'Paul', 1982, 'M', 11303), +(125036, 'Nathan', 1982, 'M', 10801), +(125037, 'Patrick', 1982, 'M', 10694), +(125038, 'Stephen', 1982, 'M', 10627), +(125039, 'Travis', 1982, 'M', 10418), +(125040, 'Gregory', 1982, 'M', 10152), +(125041, 'Jacob', 1982, 'M', 10050), +(125042, 'Dustin', 1982, 'M', 9548), +(125043, 'Jesse', 1982, 'M', 9505), +(125044, 'Sean', 1982, 'M', 9358), +(125045, 'Kenneth', 1982, 'M', 9353), +(125046, 'Jose', 1982, 'M', 8617), +(125047, 'Kyle', 1982, 'M', 8209), +(125048, 'Chad', 1982, 'M', 7908), +(125049, 'Bryan', 1982, 'M', 7496), +(125050, 'Derek', 1982, 'M', 6989), +(125051, 'Bradley', 1982, 'M', 6974), +(125052, 'Shawn', 1982, 'M', 6842), +(125053, 'Edward', 1982, 'M', 6288), +(125054, 'Jared', 1982, 'M', 6262), +(125055, 'Zachary', 1982, 'M', 6148), +(125056, 'Samuel', 1982, 'M', 6008), +(125057, 'Peter', 1982, 'M', 5774), +(125058, 'Donald', 1982, 'M', 5717), +(125059, 'Keith', 1982, 'M', 5621), +(125060, 'Ronald', 1982, 'M', 5205), +(125061, 'Juan', 1982, 'M', 5115), +(125062, 'George', 1982, 'M', 4987), +(125063, 'Marcus', 1982, 'M', 4984), +(125064, 'Gary', 1982, 'M', 4637), +(125065, 'Tyler', 1982, 'M', 4584), +(125066, 'Alexander', 1982, 'M', 4583), +(125067, 'Phillip', 1982, 'M', 4519), +(125068, 'Douglas', 1982, 'M', 4513), +(125069, 'Joel', 1982, 'M', 4439), +(125070, 'Raymond', 1982, 'M', 4295), +(125071, 'Carlos', 1982, 'M', 4265), +(125072, 'Brett', 1982, 'M', 4025), +(125073, 'Craig', 1982, 'M', 4021), +(125074, 'Corey', 1982, 'M', 3941), +(125075, 'Nathaniel', 1982, 'M', 3935), +(125076, 'Antonio', 1982, 'M', 3882), +(125077, 'Larry', 1982, 'M', 3718), +(125078, 'Derrick', 1982, 'M', 3654), +(125079, 'Philip', 1982, 'M', 3640), +(125080, 'Erik', 1982, 'M', 3632), +(125081, 'Frank', 1982, 'M', 3603), +(125082, 'Todd', 1982, 'M', 3597), +(125083, 'Ian', 1982, 'M', 3581), +(125084, 'Shane', 1982, 'M', 3537), +(125085, 'Jordan', 1982, 'M', 3535), +(125086, 'Casey', 1982, 'M', 3427), +(125087, 'Dennis', 1982, 'M', 3389), +(125088, 'Gabriel', 1982, 'M', 3366), +(125089, 'Jeremiah', 1982, 'M', 3328), +(125090, 'Brent', 1982, 'M', 3326), +(125091, 'Luis', 1982, 'M', 3324), +(125092, 'Jeffery', 1982, 'M', 3310), +(125093, 'Cory', 1982, 'M', 3235), +(125094, 'Randy', 1982, 'M', 3232), +(125095, 'Cody', 1982, 'M', 3180), +(125096, 'Shaun', 1982, 'M', 3155), +(125097, 'Russell', 1982, 'M', 3032), +(125098, 'Wesley', 1982, 'M', 3030), +(125099, 'Victor', 1982, 'M', 2997), +(125100, 'Curtis', 1982, 'M', 2942), +(125101, 'Jerry', 1982, 'M', 2941), +(125102, 'Seth', 1982, 'M', 2912), +(125103, 'Vincent', 1982, 'M', 2864), +(125104, 'Carl', 1982, 'M', 2804), +(125105, 'Terry', 1982, 'M', 2764), +(125106, 'Lucas', 1982, 'M', 2741), +(125107, 'Alan', 1982, 'M', 2683), +(125108, 'Evan', 1982, 'M', 2668), +(125109, 'Mario', 1982, 'M', 2657), +(125110, 'Miguel', 1982, 'M', 2629), +(125111, 'Jesus', 1982, 'M', 2620), +(125112, 'Bobby', 1982, 'M', 2606), +(125113, 'Tony', 1982, 'M', 2606), +(125114, 'Christian', 1982, 'M', 2570), +(125115, 'Troy', 1982, 'M', 2534), +(125116, 'Billy', 1982, 'M', 2528), +(125117, 'Adrian', 1982, 'M', 2514), +(125118, 'Johnny', 1982, 'M', 2489), +(125119, 'Luke', 1982, 'M', 2476), +(125120, 'Blake', 1982, 'M', 2349), +(125121, 'Ricardo', 1982, 'M', 2291), +(125122, 'Allen', 1982, 'M', 2216), +(125123, 'Lee', 1982, 'M', 2203), +(125124, 'Andre', 1982, 'M', 2199), +(125125, 'Kristopher', 1982, 'M', 2190), +(125126, 'Martin', 1982, 'M', 2166), +(125127, 'Roger', 1982, 'M', 2165), +(125128, 'Lawrence', 1982, 'M', 2134), +(125129, 'Ricky', 1982, 'M', 2118), +(125130, 'Randall', 1982, 'M', 2113), +(125131, 'Jamie', 1982, 'M', 2092), +(125132, 'Jimmy', 1982, 'M', 2091), +(125133, 'Clinton', 1982, 'M', 2081), +(125134, 'Henry', 1982, 'M', 2079), +(125135, 'Mitchell', 1982, 'M', 2068), +(125136, 'Manuel', 1982, 'M', 2053), +(125137, 'Danny', 1982, 'M', 2051), +(125138, 'Marc', 1982, 'M', 2041), +(125139, 'Jorge', 1982, 'M', 2026), +(125140, 'Albert', 1982, 'M', 2022), +(125141, 'Jon', 1982, 'M', 2018), +(125142, 'Lance', 1982, 'M', 1971), +(125143, 'Alex', 1982, 'M', 1963), +(125144, 'Willie', 1982, 'M', 1960), +(125145, 'Rodney', 1982, 'M', 1948), +(125146, 'Trevor', 1982, 'M', 1941), +(125147, 'Walter', 1982, 'M', 1911), +(125148, 'Micheal', 1982, 'M', 1908), +(125149, 'Joe', 1982, 'M', 1870), +(125150, 'Isaac', 1982, 'M', 1844), +(125151, 'Roberto', 1982, 'M', 1843), +(125152, 'Johnathan', 1982, 'M', 1836), +(125153, 'Jonathon', 1982, 'M', 1829), +(125154, 'Noah', 1982, 'M', 1814), +(125155, 'Francisco', 1982, 'M', 1811), +(125156, 'Austin', 1982, 'M', 1799), +(125157, 'Arthur', 1982, 'M', 1795), +(125158, 'Gerald', 1982, 'M', 1719), +(125159, 'Mathew', 1982, 'M', 1712), +(125160, 'Wayne', 1982, 'M', 1710), +(125161, 'Clayton', 1982, 'M', 1707), +(125162, 'Louis', 1982, 'M', 1695), +(125163, 'Brad', 1982, 'M', 1689), +(125164, 'Jay', 1982, 'M', 1670), +(125165, 'Maurice', 1982, 'M', 1647), +(125166, 'Jack', 1982, 'M', 1621), +(125167, 'Roy', 1982, 'M', 1615), +(125168, 'Jermaine', 1982, 'M', 1609), +(125169, 'Bruce', 1982, 'M', 1584), +(125170, 'Caleb', 1982, 'M', 1582), +(125171, 'Colin', 1982, 'M', 1536), +(125172, 'Hector', 1982, 'M', 1526), +(125173, 'Alejandro', 1982, 'M', 1495), +(125174, 'Oscar', 1982, 'M', 1487), +(125175, 'Darren', 1982, 'M', 1486), +(125176, 'Calvin', 1982, 'M', 1476), +(125177, 'Ruben', 1982, 'M', 1472), +(125178, 'Cameron', 1982, 'M', 1470), +(125179, 'Ross', 1982, 'M', 1465), +(125180, 'Garrett', 1982, 'M', 1456), +(125181, 'Angel', 1982, 'M', 1443), +(125182, 'Darrell', 1982, 'M', 1391), +(125183, 'Omar', 1982, 'M', 1384), +(125184, 'Reginald', 1982, 'M', 1379), +(125185, 'Fernando', 1982, 'M', 1366), +(125186, 'Frederick', 1982, 'M', 1364), +(125187, 'Jaime', 1982, 'M', 1350), +(125188, 'Neil', 1982, 'M', 1343), +(125189, 'Edwin', 1982, 'M', 1339), +(125190, 'Jessie', 1982, 'M', 1330), +(125191, 'Jerome', 1982, 'M', 1307), +(125192, 'Eddie', 1982, 'M', 1294), +(125193, 'Javier', 1982, 'M', 1293), +(125194, 'Geoffrey', 1982, 'M', 1289), +(125195, 'Tyrone', 1982, 'M', 1280), +(125196, 'Ronnie', 1982, 'M', 1273), +(125197, 'Kelly', 1982, 'M', 1271), +(125198, 'Terrance', 1982, 'M', 1265), +(125199, 'Rafael', 1982, 'M', 1256), +(125200, 'Ernest', 1982, 'M', 1240), +(125201, 'Eugene', 1982, 'M', 1226), +(125202, 'Raul', 1982, 'M', 1218), +(125203, 'Sergio', 1982, 'M', 1205), +(125204, 'Pedro', 1982, 'M', 1203), +(125205, 'Leonard', 1982, 'M', 1200), +(125206, 'Brendan', 1982, 'M', 1197), +(125207, 'Theodore', 1982, 'M', 1192), +(125208, 'Kurt', 1982, 'M', 1182), +(125209, 'Barry', 1982, 'M', 1181), +(125210, 'Grant', 1982, 'M', 1172), +(125211, 'Tommy', 1982, 'M', 1172), +(125212, 'Clifford', 1982, 'M', 1139), +(125213, 'Marvin', 1982, 'M', 1136), +(125214, 'Levi', 1982, 'M', 1134), +(125215, 'Dale', 1982, 'M', 1132), +(125216, 'Micah', 1982, 'M', 1122), +(125217, 'Bret', 1982, 'M', 1098), +(125218, 'Glenn', 1982, 'M', 1088), +(125219, 'Shannon', 1982, 'M', 1088), +(125220, 'Ivan', 1982, 'M', 1086), +(125221, 'Ramon', 1982, 'M', 1077), +(125222, 'Terrence', 1982, 'M', 1074), +(125223, 'Dominic', 1982, 'M', 1052), +(125224, 'Jarrod', 1982, 'M', 1046), +(125225, 'Harold', 1982, 'M', 1045), +(125226, 'Melvin', 1982, 'M', 1035), +(125227, 'Devin', 1982, 'M', 1034), +(125228, 'Marco', 1982, 'M', 1030), +(125229, 'Steve', 1982, 'M', 1023), +(125230, 'Drew', 1982, 'M', 1015), +(125231, 'Alberto', 1982, 'M', 1007), +(125232, 'Joey', 1982, 'M', 1001), +(125233, 'Stanley', 1982, 'M', 998), +(125234, 'Eduardo', 1982, 'M', 997), +(125235, 'Julian', 1982, 'M', 993), +(125236, 'Armando', 1982, 'M', 987), +(125237, 'Darryl', 1982, 'M', 987), +(125238, 'Francis', 1982, 'M', 982), +(125239, 'Cedric', 1982, 'M', 974), +(125240, 'Karl', 1982, 'M', 971), +(125241, 'Dwayne', 1982, 'M', 964), +(125242, 'Damien', 1982, 'M', 951), +(125243, 'Ralph', 1982, 'M', 949), +(125244, 'Taylor', 1982, 'M', 948), +(125245, 'Chase', 1982, 'M', 937), +(125246, 'Clint', 1982, 'M', 927), +(125247, 'Andy', 1982, 'M', 926), +(125248, 'Spencer', 1982, 'M', 926), +(125249, 'Nicolas', 1982, 'M', 891), +(125250, 'Andres', 1982, 'M', 890), +(125251, 'Earl', 1982, 'M', 883), +(125252, 'Erick', 1982, 'M', 875), +(125253, 'Leon', 1982, 'M', 872), +(125254, 'Ray', 1982, 'M', 866), +(125255, 'Byron', 1982, 'M', 863), +(125256, 'Tyson', 1982, 'M', 861), +(125257, 'Franklin', 1982, 'M', 859), +(125258, 'Cesar', 1982, 'M', 856), +(125259, 'Clarence', 1982, 'M', 842), +(125260, 'Abraham', 1982, 'M', 837), +(125261, 'Alfred', 1982, 'M', 834), +(125262, 'Edgar', 1982, 'M', 833), +(125263, 'Julio', 1982, 'M', 829), +(125264, 'Marshall', 1982, 'M', 817), +(125265, 'Preston', 1982, 'M', 807), +(125266, 'Cole', 1982, 'M', 805), +(125267, 'Warren', 1982, 'M', 804), +(125268, 'Howard', 1982, 'M', 792), +(125269, 'Gilbert', 1982, 'M', 791), +(125270, 'Alvin', 1982, 'M', 784), +(125271, 'Alfredo', 1982, 'M', 777), +(125272, 'Harry', 1982, 'M', 768), +(125273, 'Dean', 1982, 'M', 767), +(125274, 'Courtney', 1982, 'M', 763), +(125275, 'Alexis', 1982, 'M', 761), +(125276, 'Tristan', 1982, 'M', 760), +(125277, 'Antoine', 1982, 'M', 756), +(125278, 'Enrique', 1982, 'M', 753), +(125279, 'Roderick', 1982, 'M', 739), +(125280, 'Elijah', 1982, 'M', 738), +(125281, 'Rory', 1982, 'M', 737), +(125282, 'Arturo', 1982, 'M', 732), +(125283, 'Kelvin', 1982, 'M', 726), +(125284, 'Daryl', 1982, 'M', 720), +(125285, 'Clifton', 1982, 'M', 718), +(125286, 'Jamaal', 1982, 'M', 715), +(125287, 'Ethan', 1982, 'M', 713), +(125288, 'Chris', 1982, 'M', 712), +(125289, 'Heath', 1982, 'M', 709), +(125290, 'Dylan', 1982, 'M', 699), +(125291, 'Salvador', 1982, 'M', 697), +(125292, 'Orlando', 1982, 'M', 690), +(125293, 'Gerardo', 1982, 'M', 688), +(125294, 'Logan', 1982, 'M', 687), +(125295, 'Terrell', 1982, 'M', 682), +(125296, 'Beau', 1982, 'M', 677), +(125297, 'Bernard', 1982, 'M', 677), +(125298, 'Leroy', 1982, 'M', 675), +(125299, 'Jake', 1982, 'M', 667), +(125300, 'Wade', 1982, 'M', 663), +(125301, 'Kirk', 1982, 'M', 660), +(125302, 'Nelson', 1982, 'M', 656), +(125303, 'Lonnie', 1982, 'M', 652), +(125304, 'Rene', 1982, 'M', 651), +(125305, 'Ashley', 1982, 'M', 650), +(125306, 'Ernesto', 1982, 'M', 640), +(125307, 'Damon', 1982, 'M', 639), +(125308, 'Quentin', 1982, 'M', 639), +(125309, 'Bryant', 1982, 'M', 638), +(125310, 'Bryce', 1982, 'M', 636), +(125311, 'Israel', 1982, 'M', 636), +(125312, 'Norman', 1982, 'M', 634), +(125313, 'Morgan', 1982, 'M', 630), +(125314, 'Demetrius', 1982, 'M', 627), +(125315, 'Lorenzo', 1982, 'M', 626), +(125316, 'Marcos', 1982, 'M', 624), +(125317, 'Emmanuel', 1982, 'M', 615), +(125318, 'Angelo', 1982, 'M', 607), +(125319, 'Kenny', 1982, 'M', 597), +(125320, 'Branden', 1982, 'M', 596), +(125321, 'Duane', 1982, 'M', 596), +(125322, 'Lewis', 1982, 'M', 592), +(125323, 'Allan', 1982, 'M', 590), +(125324, 'Rocky', 1982, 'M', 590), +(125325, 'Glen', 1982, 'M', 587), +(125326, 'Nickolas', 1982, 'M', 587), +(125327, 'Stuart', 1982, 'M', 586), +(125328, 'Damian', 1982, 'M', 584), +(125329, 'Trent', 1982, 'M', 583), +(125330, 'Jayson', 1982, 'M', 582), +(125331, 'Fredrick', 1982, 'M', 577), +(125332, 'Landon', 1982, 'M', 575), +(125333, 'Brady', 1982, 'M', 571), +(125334, 'Vernon', 1982, 'M', 571), +(125335, 'Jamal', 1982, 'M', 563), +(125336, 'Bradford', 1982, 'M', 561), +(125337, 'Kent', 1982, 'M', 557), +(125338, 'Rickey', 1982, 'M', 556), +(125339, 'Neal', 1982, 'M', 555), +(125340, 'Fred', 1982, 'M', 553), +(125341, 'Don', 1982, 'M', 552), +(125342, 'Rodolfo', 1982, 'M', 552), +(125343, 'Lamar', 1982, 'M', 548), +(125344, 'Gordon', 1982, 'M', 538), +(125345, 'Darnell', 1982, 'M', 537), +(125346, 'Dallas', 1982, 'M', 536), +(125347, 'Isaiah', 1982, 'M', 536), +(125348, 'Julius', 1982, 'M', 536), +(125349, 'Rudy', 1982, 'M', 533), +(125350, 'Dana', 1982, 'M', 529), +(125351, 'Felix', 1982, 'M', 527), +(125352, 'Johnathon', 1982, 'M', 527), +(125353, 'Charlie', 1982, 'M', 518), +(125354, 'Dusty', 1982, 'M', 517), +(125355, 'Herbert', 1982, 'M', 516), +(125356, 'Lloyd', 1982, 'M', 506), +(125357, 'Eli', 1982, 'M', 504), +(125358, 'Pablo', 1982, 'M', 500), +(125359, 'Kendrick', 1982, 'M', 499), +(125360, 'Colby', 1982, 'M', 494), +(125361, 'Darius', 1982, 'M', 493), +(125362, 'Jamar', 1982, 'M', 493), +(125363, 'Dwight', 1982, 'M', 491), +(125364, 'Rick', 1982, 'M', 491), +(125365, 'Derick', 1982, 'M', 488), +(125366, 'Leo', 1982, 'M', 484), +(125367, 'Gavin', 1982, 'M', 479), +(125368, 'Terence', 1982, 'M', 479), +(125369, 'Graham', 1982, 'M', 474), +(125370, 'Noel', 1982, 'M', 470), +(125371, 'Elliott', 1982, 'M', 468), +(125372, 'Abel', 1982, 'M', 467), +(125373, 'Toby', 1982, 'M', 467), +(125374, 'Collin', 1982, 'M', 465), +(125375, 'Max', 1982, 'M', 465), +(125376, 'Devon', 1982, 'M', 460), +(125377, 'Zachariah', 1982, 'M', 458), +(125378, 'Johnnie', 1982, 'M', 456), +(125379, 'Marlon', 1982, 'M', 456), +(125380, 'Gustavo', 1982, 'M', 453), +(125381, 'Jarrett', 1982, 'M', 450), +(125382, 'Oliver', 1982, 'M', 450), +(125383, 'Carlton', 1982, 'M', 444), +(125384, 'Donnie', 1982, 'M', 440), +(125385, 'Greg', 1982, 'M', 438), +(125386, 'Simon', 1982, 'M', 436), +(125387, 'Guillermo', 1982, 'M', 435), +(125388, 'Ismael', 1982, 'M', 435), +(125389, 'Ben', 1982, 'M', 433), +(125390, 'Dante', 1982, 'M', 431), +(125391, 'Leslie', 1982, 'M', 431), +(125392, 'Brock', 1982, 'M', 430), +(125393, 'Alfonso', 1982, 'M', 429), +(125394, 'Perry', 1982, 'M', 425), +(125395, 'Jeff', 1982, 'M', 424), +(125396, 'Darin', 1982, 'M', 423), +(125397, 'Cornelius', 1982, 'M', 422), +(125398, 'Guy', 1982, 'M', 422), +(125399, 'Nolan', 1982, 'M', 422), +(125400, 'Brooks', 1982, 'M', 421), +(125401, 'Xavier', 1982, 'M', 421), +(125402, 'Quincy', 1982, 'M', 420), +(125403, 'Roland', 1982, 'M', 420), +(125404, 'Rusty', 1982, 'M', 420), +(125405, 'Kerry', 1982, 'M', 418), +(125406, 'Trenton', 1982, 'M', 418), +(125407, 'Freddie', 1982, 'M', 417), +(125408, 'Scotty', 1982, 'M', 415), +(125409, 'Gene', 1982, 'M', 413), +(125410, 'Quinton', 1982, 'M', 412), +(125411, 'Milton', 1982, 'M', 410), +(125412, 'Elias', 1982, 'M', 406), +(125413, 'Kellen', 1982, 'M', 406), +(125414, 'Robin', 1982, 'M', 406), +(125415, 'Elliot', 1982, 'M', 405), +(125416, 'Miles', 1982, 'M', 403), +(125417, 'Antwan', 1982, 'M', 401), +(125418, 'Dane', 1982, 'M', 398), +(125419, 'Dewayne', 1982, 'M', 398), +(125420, 'Lester', 1982, 'M', 398), +(125421, 'Rogelio', 1982, 'M', 396), +(125422, 'Floyd', 1982, 'M', 394), +(125423, 'Jimmie', 1982, 'M', 390), +(125424, 'Felipe', 1982, 'M', 387), +(125425, 'Jarvis', 1982, 'M', 386), +(125426, 'Loren', 1982, 'M', 385), +(125427, 'Rolando', 1982, 'M', 385), +(125428, 'Jarod', 1982, 'M', 381), +(125429, 'Gilberto', 1982, 'M', 379), +(125430, 'Marquis', 1982, 'M', 379), +(125431, 'Owen', 1982, 'M', 377), +(125432, 'Jackie', 1982, 'M', 376), +(125433, 'Sam', 1982, 'M', 374), +(125434, 'Ty', 1982, 'M', 373), +(125435, 'Chadwick', 1982, 'M', 371), +(125436, 'Nathanael', 1982, 'M', 369), +(125437, 'Roman', 1982, 'M', 369), +(125438, 'Josiah', 1982, 'M', 368), +(125439, 'Lamont', 1982, 'M', 368), +(125440, 'Emanuel', 1982, 'M', 366), +(125441, 'Gerard', 1982, 'M', 366), +(125442, 'Jody', 1982, 'M', 365), +(125443, 'Fabian', 1982, 'M', 364), +(125444, 'Kendall', 1982, 'M', 364), +(125445, 'Tanner', 1982, 'M', 364), +(125446, 'Frankie', 1982, 'M', 363), +(125447, 'Herman', 1982, 'M', 363), +(125448, 'Saul', 1982, 'M', 362), +(125449, 'Kurtis', 1982, 'M', 361), +(125450, 'Forrest', 1982, 'M', 359), +(125451, 'Salvatore', 1982, 'M', 359), +(125452, 'Tracy', 1982, 'M', 359), +(125453, 'Pierre', 1982, 'M', 357), +(125454, 'Desmond', 1982, 'M', 355), +(125455, 'Lionel', 1982, 'M', 353), +(125456, 'Hugo', 1982, 'M', 350), +(125457, 'Moses', 1982, 'M', 347), +(125458, 'Clay', 1982, 'M', 345), +(125459, 'Colt', 1982, 'M', 344), +(125460, 'Stephan', 1982, 'M', 342), +(125461, 'Dominick', 1982, 'M', 341), +(125462, 'Jess', 1982, 'M', 337), +(125463, 'Sidney', 1982, 'M', 333), +(125464, 'Deandre', 1982, 'M', 332), +(125465, 'Chester', 1982, 'M', 331), +(125466, 'Ramiro', 1982, 'M', 330), +(125467, 'Everett', 1982, 'M', 327), +(125468, 'Mason', 1982, 'M', 327), +(125469, 'Alonzo', 1982, 'M', 324), +(125470, 'Josue', 1982, 'M', 322), +(125471, 'Mike', 1982, 'M', 321), +(125472, 'Jerrod', 1982, 'M', 320), +(125473, 'Hunter', 1982, 'M', 319), +(125474, 'Kareem', 1982, 'M', 318), +(125475, 'Kory', 1982, 'M', 317), +(125476, 'Ted', 1982, 'M', 316), +(125477, 'Esteban', 1982, 'M', 315), +(125478, 'Marques', 1982, 'M', 315), +(125479, 'Robbie', 1982, 'M', 315), +(125480, 'Jim', 1982, 'M', 314), +(125481, 'Leonardo', 1982, 'M', 314), +(125482, 'Randolph', 1982, 'M', 314), +(125483, 'Bryon', 1982, 'M', 312), +(125484, 'Dan', 1982, 'M', 312), +(125485, 'Clyde', 1982, 'M', 310), +(125486, 'Jarred', 1982, 'M', 306), +(125487, 'Clark', 1982, 'M', 304), +(125488, 'Tomas', 1982, 'M', 303), +(125489, 'Wendell', 1982, 'M', 303), +(125490, 'Weston', 1982, 'M', 302), +(125491, 'Malcolm', 1982, 'M', 300), +(125492, 'Reynaldo', 1982, 'M', 298), +(125493, 'Josh', 1982, 'M', 297), +(125494, 'Cecil', 1982, 'M', 296), +(125495, 'Donte', 1982, 'M', 296), +(125496, 'Solomon', 1982, 'M', 295), +(125497, 'Ariel', 1982, 'M', 294), +(125498, 'Zachery', 1982, 'M', 291), +(125499, 'Donnell', 1982, 'M', 289), +(125500, 'Benny', 1982, 'M', 288), +(125501, 'Jonah', 1982, 'M', 287), +(125502, 'Darrin', 1982, 'M', 286), +(125503, 'Kristofer', 1982, 'M', 285), +(125504, 'Moises', 1982, 'M', 284), +(125505, 'Jonas', 1982, 'M', 283), +(125506, 'Jamel', 1982, 'M', 282), +(125507, 'Donovan', 1982, 'M', 279), +(125508, 'Noe', 1982, 'M', 279), +(125509, 'Aron', 1982, 'M', 276), +(125510, 'Guadalupe', 1982, 'M', 276), +(125511, 'Jerod', 1982, 'M', 275), +(125512, 'Sheldon', 1982, 'M', 275), +(125513, 'Garry', 1982, 'M', 273), +(125514, 'Jackson', 1982, 'M', 272), +(125515, 'Jean', 1982, 'M', 271), +(125516, 'Santiago', 1982, 'M', 271), +(125517, 'Sherman', 1982, 'M', 271), +(125518, 'Sammy', 1982, 'M', 270), +(125519, 'Myron', 1982, 'M', 269), +(125520, 'Wilson', 1982, 'M', 268), +(125521, 'Arnold', 1982, 'M', 267), +(125522, 'Nick', 1982, 'M', 267), +(125523, 'Reuben', 1982, 'M', 266), +(125524, 'Rex', 1982, 'M', 265), +(125525, 'Ali', 1982, 'M', 264), +(125526, 'Alton', 1982, 'M', 263), +(125527, 'Rashad', 1982, 'M', 262), +(125528, 'Will', 1982, 'M', 262), +(125529, 'Blaine', 1982, 'M', 261), +(125530, 'Reid', 1982, 'M', 260), +(125531, 'Diego', 1982, 'M', 258), +(125532, 'Erich', 1982, 'M', 258), +(125533, 'Earnest', 1982, 'M', 256), +(125534, 'Ira', 1982, 'M', 255), +(125535, 'Brenton', 1982, 'M', 254), +(125536, 'Harvey', 1982, 'M', 254), +(125537, 'Otis', 1982, 'M', 254), +(125538, 'Stefan', 1982, 'M', 254), +(125539, 'Stewart', 1982, 'M', 254), +(125540, 'Dominique', 1982, 'M', 253), +(125541, 'Emilio', 1982, 'M', 253), +(125542, 'Randal', 1982, 'M', 253), +(125543, 'Demarcus', 1982, 'M', 251), +(125544, 'Brendon', 1982, 'M', 250), +(125545, 'Joesph', 1982, 'M', 250), +(125546, 'Joaquin', 1982, 'M', 248), +(125547, 'Harley', 1982, 'M', 247), +(125548, 'Erin', 1982, 'M', 246), +(125549, 'Kasey', 1982, 'M', 246), +(125550, 'Freddy', 1982, 'M', 245), +(125551, 'Giovanni', 1982, 'M', 245), +(125552, 'Vicente', 1982, 'M', 245), +(125553, 'Amos', 1982, 'M', 244), +(125554, 'Chaz', 1982, 'M', 244), +(125555, 'Anton', 1982, 'M', 243), +(125556, 'Bill', 1982, 'M', 243), +(125557, 'Ron', 1982, 'M', 241), +(125558, 'Humberto', 1982, 'M', 238), +(125559, 'Sterling', 1982, 'M', 238), +(125560, 'Claude', 1982, 'M', 235), +(125561, 'Rigoberto', 1982, 'M', 233), +(125562, 'Zane', 1982, 'M', 233), +(125563, 'Conrad', 1982, 'M', 232), +(125564, 'Barrett', 1982, 'M', 230), +(125565, 'Marty', 1982, 'M', 230), +(125566, 'Hugh', 1982, 'M', 229), +(125567, 'Blair', 1982, 'M', 228), +(125568, 'Luther', 1982, 'M', 228), +(125569, 'Jovan', 1982, 'M', 227), +(125570, 'Virgil', 1982, 'M', 227), +(125571, 'Willis', 1982, 'M', 227), +(125572, 'Adan', 1982, 'M', 226), +(125573, 'Edmund', 1982, 'M', 225), +(125574, 'Lyle', 1982, 'M', 224), +(125575, 'Efrain', 1982, 'M', 223), +(125576, 'Conor', 1982, 'M', 221), +(125577, 'Dexter', 1982, 'M', 221), +(125578, 'Dorian', 1982, 'M', 221), +(125579, 'Rodrigo', 1982, 'M', 221), +(125580, 'Dion', 1982, 'M', 220), +(125581, 'Teddy', 1982, 'M', 220), +(125582, 'Bradly', 1982, 'M', 219), +(125583, 'Sebastian', 1982, 'M', 218), +(125584, 'Sylvester', 1982, 'M', 218), +(125585, 'Thaddeus', 1982, 'M', 218), +(125586, 'Avery', 1982, 'M', 216), +(125587, 'Reed', 1982, 'M', 216), +(125588, 'Royce', 1982, 'M', 216), +(125589, 'Hans', 1982, 'M', 214), +(125590, 'Gregg', 1982, 'M', 212), +(125591, 'Ignacio', 1982, 'M', 212), +(125592, 'Tyrell', 1982, 'M', 211), +(125593, 'Taurean', 1982, 'M', 210), +(125594, 'Sonny', 1982, 'M', 209), +(125595, 'Ahmad', 1982, 'M', 208), +(125596, 'Jerad', 1982, 'M', 208), +(125597, 'Pete', 1982, 'M', 208), +(125598, 'Quintin', 1982, 'M', 208), +(125599, 'Deon', 1982, 'M', 206), +(125600, 'Damion', 1982, 'M', 205), +(125601, 'Wyatt', 1982, 'M', 205), +(125602, 'Donny', 1982, 'M', 202), +(125603, 'Harrison', 1982, 'M', 201), +(125604, 'Skyler', 1982, 'M', 201), +(125605, 'Waylon', 1982, 'M', 201), +(125606, 'Agustin', 1982, 'M', 200), +(125607, 'Alvaro', 1982, 'M', 200), +(125608, 'Nathanial', 1982, 'M', 200), +(125609, 'Wallace', 1982, 'M', 200), +(125610, 'Bennie', 1982, 'M', 199), +(125611, 'Morris', 1982, 'M', 199), +(125612, 'Issac', 1982, 'M', 198), +(125613, 'Riley', 1982, 'M', 198), +(125614, 'Rodrick', 1982, 'M', 198), +(125615, 'Scottie', 1982, 'M', 198), +(125616, 'Braden', 1982, 'M', 197), +(125617, 'Brant', 1982, 'M', 197), +(125618, 'Jeromy', 1982, 'M', 197), +(125619, 'Matt', 1982, 'M', 196), +(125620, 'Trey', 1982, 'M', 196), +(125621, 'Wilfredo', 1982, 'M', 196), +(125622, 'Tom', 1982, 'M', 195), +(125623, 'Kiel', 1982, 'M', 194), +(125624, 'Arron', 1982, 'M', 192), +(125625, 'Maxwell', 1982, 'M', 192), +(125626, 'Rudolph', 1982, 'M', 192), +(125627, 'Raphael', 1982, 'M', 191), +(125628, 'Tobias', 1982, 'M', 191), +(125629, 'Aubrey', 1982, 'M', 190), +(125630, 'Robby', 1982, 'M', 190), +(125631, 'Brain', 1982, 'M', 189), +(125632, 'Carson', 1982, 'M', 189), +(125633, 'Quinn', 1982, 'M', 189), +(125634, 'Jessica', 1982, 'M', 188), +(125635, 'Chance', 1982, 'M', 187), +(125636, 'Reggie', 1982, 'M', 187), +(125637, 'Timmy', 1982, 'M', 184), +(125638, 'Jennifer', 1982, 'M', 183), +(125639, 'Marion', 1982, 'M', 183), +(125640, 'Leland', 1982, 'M', 182), +(125641, 'Tommie', 1982, 'M', 182), +(125642, 'Cedrick', 1982, 'M', 180), +(125643, 'Curt', 1982, 'M', 180), +(125644, 'Jerald', 1982, 'M', 180), +(125645, 'Mauricio', 1982, 'M', 180), +(125646, 'Santos', 1982, 'M', 180), +(125647, 'Abram', 1982, 'M', 179), +(125648, 'Jamison', 1982, 'M', 179), +(125649, 'Bryson', 1982, 'M', 178), +(125650, 'Ezra', 1982, 'M', 178), +(125651, 'Mickey', 1982, 'M', 178), +(125652, 'Cary', 1982, 'M', 177), +(125653, 'Jered', 1982, 'M', 177), +(125654, 'Leonel', 1982, 'M', 176), +(125655, 'Rico', 1982, 'M', 176), +(125656, 'Winston', 1982, 'M', 176), +(125657, 'Benito', 1982, 'M', 175), +(125658, 'Darrel', 1982, 'M', 175), +(125659, 'Kristian', 1982, 'M', 175), +(125660, 'Bart', 1982, 'M', 174), +(125661, 'Jeramy', 1982, 'M', 174), +(125662, 'Zackary', 1982, 'M', 174), +(125663, 'Buddy', 1982, 'M', 173), +(125664, 'Lane', 1982, 'M', 173), +(125665, 'Brice', 1982, 'M', 172), +(125666, 'Davis', 1982, 'M', 172), +(125667, 'Carey', 1982, 'M', 171), +(125668, 'Dave', 1982, 'M', 171), +(125669, 'Elvis', 1982, 'M', 171), +(125670, 'Keenan', 1982, 'M', 171), +(125671, 'Vance', 1982, 'M', 171), +(125672, 'Demario', 1982, 'M', 170), +(125673, 'Daren', 1982, 'M', 169), +(125674, 'Dillon', 1982, 'M', 168), +(125675, 'Korey', 1982, 'M', 167), +(125676, 'Ervin', 1982, 'M', 165), +(125677, 'Laurence', 1982, 'M', 165), +(125678, 'Jed', 1982, 'M', 164), +(125679, 'Leif', 1982, 'M', 164), +(125680, 'Cristian', 1982, 'M', 163), +(125681, 'Markus', 1982, 'M', 163), +(125682, 'Wilbert', 1982, 'M', 163), +(125683, 'Antwon', 1982, 'M', 160), +(125684, 'Bo', 1982, 'M', 160), +(125685, 'Gregorio', 1982, 'M', 159), +(125686, 'Roosevelt', 1982, 'M', 159), +(125687, 'Titus', 1982, 'M', 159), +(125688, 'Carlo', 1982, 'M', 158), +(125689, 'Chauncey', 1982, 'M', 158), +(125690, 'Jefferson', 1982, 'M', 158), +(125691, 'Kaleb', 1982, 'M', 158), +(125692, 'Archie', 1982, 'M', 157), +(125693, 'Dereck', 1982, 'M', 157), +(125694, 'Denny', 1982, 'M', 156), +(125695, 'Garret', 1982, 'M', 156), +(125696, 'Jasen', 1982, 'M', 156), +(125697, 'Tyree', 1982, 'M', 156), +(125698, 'Liam', 1982, 'M', 155), +(125699, 'Tyrel', 1982, 'M', 155), +(125700, 'Heriberto', 1982, 'M', 154), +(125701, 'Jasper', 1982, 'M', 154), +(125702, 'Whitney', 1982, 'M', 154), +(125703, 'Derik', 1982, 'M', 153), +(125704, 'Myles', 1982, 'M', 153), +(125705, 'Tory', 1982, 'M', 153), +(125706, 'Brennan', 1982, 'M', 152), +(125707, 'Grady', 1982, 'M', 152), +(125708, 'Jamil', 1982, 'M', 151), +(125709, 'Marcel', 1982, 'M', 151), +(125710, 'Parker', 1982, 'M', 151), +(125711, 'Rhett', 1982, 'M', 151), +(125712, 'Elmer', 1982, 'M', 150), +(125713, 'Judson', 1982, 'M', 149), +(125714, 'Mack', 1982, 'M', 149), +(125715, 'Jedidiah', 1982, 'M', 148), +(125716, 'Josef', 1982, 'M', 148), +(125717, 'Alec', 1982, 'M', 147), +(125718, 'Lukas', 1982, 'M', 147), +(125719, 'Jeremey', 1982, 'M', 146), +(125720, 'Nigel', 1982, 'M', 145), +(125721, 'Tremaine', 1982, 'M', 145), +(125722, 'Jeremie', 1982, 'M', 144), +(125723, 'Deshawn', 1982, 'M', 143), +(125724, 'Edmond', 1982, 'M', 143), +(125725, 'Kody', 1982, 'M', 143), +(125726, 'Scot', 1982, 'M', 143), +(125727, 'Cliff', 1982, 'M', 142), +(125728, 'Cyrus', 1982, 'M', 142), +(125729, 'Jan', 1982, 'M', 142), +(125730, 'Monte', 1982, 'M', 142), +(125731, 'Andrae', 1982, 'M', 141), +(125732, 'Danial', 1982, 'M', 141), +(125733, 'Davon', 1982, 'M', 141), +(125734, 'Horace', 1982, 'M', 141), +(125735, 'Hubert', 1982, 'M', 141), +(125736, 'Kristoffer', 1982, 'M', 141), +(125737, 'Louie', 1982, 'M', 141), +(125738, 'Rickie', 1982, 'M', 141), +(125739, 'Stevie', 1982, 'M', 141), +(125740, 'Anwar', 1982, 'M', 140), +(125741, 'Asa', 1982, 'M', 140), +(125742, 'Jeffry', 1982, 'M', 140), +(125743, 'Osvaldo', 1982, 'M', 140), +(125744, 'Zackery', 1982, 'M', 140), +(125745, 'Ari', 1982, 'M', 139), +(125746, 'Domingo', 1982, 'M', 139), +(125747, 'Jaron', 1982, 'M', 139), +(125748, 'Tim', 1982, 'M', 139), +(125749, 'Adolfo', 1982, 'M', 138), +(125750, 'Aldo', 1982, 'M', 138), +(125751, 'Elton', 1982, 'M', 138), +(125752, 'Lindsey', 1982, 'M', 138), +(125753, 'Stacy', 1982, 'M', 138), +(125754, 'Amir', 1982, 'M', 137), +(125755, 'Ken', 1982, 'M', 137), +(125756, 'Prince', 1982, 'M', 137), +(125757, 'Ahmed', 1982, 'M', 136), +(125758, 'Mitchel', 1982, 'M', 135), +(125759, 'Nikolas', 1982, 'M', 135), +(125760, 'Rocco', 1982, 'M', 135), +(125761, 'Antony', 1982, 'M', 134), +(125762, 'Nicholaus', 1982, 'M', 134), +(125763, 'Andrea', 1982, 'M', 133), +(125764, 'Michel', 1982, 'M', 132), +(125765, 'Cortney', 1982, 'M', 131), +(125766, 'Jameson', 1982, 'M', 131), +(125767, 'Jordon', 1982, 'M', 131), +(125768, 'Junior', 1982, 'M', 131), +(125769, 'Mikel', 1982, 'M', 131), +(125770, 'Mohammad', 1982, 'M', 131), +(125771, 'Shayne', 1982, 'M', 131), +(125772, 'Van', 1982, 'M', 131), +(125773, 'Darrick', 1982, 'M', 130), +(125774, 'Ezekiel', 1982, 'M', 130), +(125775, 'Jeramie', 1982, 'M', 130), +(125776, 'Willard', 1982, 'M', 130), +(125777, 'Cleveland', 1982, 'M', 129), +(125778, 'Daron', 1982, 'M', 128), +(125779, 'Mohammed', 1982, 'M', 128), +(125780, 'Raheem', 1982, 'M', 127), +(125781, 'Deangelo', 1982, 'M', 126), +(125782, 'Federico', 1982, 'M', 126), +(125783, 'Galen', 1982, 'M', 126), +(125784, 'Gonzalo', 1982, 'M', 126), +(125785, 'Keon', 1982, 'M', 126), +(125786, 'Paris', 1982, 'M', 126), +(125787, 'Vaughn', 1982, 'M', 126), +(125788, 'Bennett', 1982, 'M', 125), +(125789, 'Justen', 1982, 'M', 125), +(125790, 'Kenton', 1982, 'M', 125), +(125791, 'Kris', 1982, 'M', 125), +(125792, 'Sarah', 1982, 'M', 125), +(125793, 'Shelby', 1982, 'M', 125), +(125794, 'Antione', 1982, 'M', 124), +(125795, 'Octavio', 1982, 'M', 124), +(125796, 'Tyron', 1982, 'M', 124), +(125797, 'Ernie', 1982, 'M', 123), +(125798, 'Lowell', 1982, 'M', 123), +(125799, 'Lynn', 1982, 'M', 123), +(125800, 'Coleman', 1982, 'M', 122), +(125801, 'Ellis', 1982, 'M', 122), +(125802, 'Johnpaul', 1982, 'M', 122), +(125803, 'Dario', 1982, 'M', 121), +(125804, 'Jacques', 1982, 'M', 121), +(125805, 'Keegan', 1982, 'M', 121), +(125806, 'Colton', 1982, 'M', 120), +(125807, 'Davin', 1982, 'M', 120), +(125808, 'Marlin', 1982, 'M', 120), +(125809, 'Brenden', 1982, 'M', 119), +(125810, 'Gino', 1982, 'M', 119), +(125811, 'Lincoln', 1982, 'M', 119), +(125812, 'Rufus', 1982, 'M', 119), +(125813, 'Cornell', 1982, 'M', 118), +(125814, 'Cortez', 1982, 'M', 118), +(125815, 'Denver', 1982, 'M', 118), +(125816, 'Raymundo', 1982, 'M', 118), +(125817, 'Shelton', 1982, 'M', 118), +(125818, 'Al', 1982, 'M', 117), +(125819, 'Javon', 1982, 'M', 117), +(125820, 'Lazaro', 1982, 'M', 117), +(125821, 'Russel', 1982, 'M', 117), +(125822, 'Carter', 1982, 'M', 116), +(125823, 'German', 1982, 'M', 116), +(125824, 'Jedediah', 1982, 'M', 116), +(125825, 'Maria', 1982, 'M', 116), +(125826, 'Renaldo', 1982, 'M', 116), +(125827, 'Bernardo', 1982, 'M', 115), +(125828, 'Eliezer', 1982, 'M', 115), +(125829, 'Hassan', 1982, 'M', 115), +(125830, 'Jamey', 1982, 'M', 115), +(125831, 'Isiah', 1982, 'M', 114), +(125832, 'Malik', 1982, 'M', 114), +(125833, 'Percy', 1982, 'M', 114), +(125834, 'Silas', 1982, 'M', 114), +(125835, 'Dejuan', 1982, 'M', 113), +(125836, 'Efren', 1982, 'M', 113), +(125837, 'Christoper', 1982, 'M', 112), +(125838, 'Estevan', 1982, 'M', 112), +(125839, 'Garrick', 1982, 'M', 112), +(125840, 'Amit', 1982, 'M', 111), +(125841, 'Deric', 1982, 'M', 111), +(125842, 'Jamin', 1982, 'M', 111), +(125843, 'Sedrick', 1982, 'M', 111), +(125844, 'Wilfred', 1982, 'M', 111), +(125845, 'Emmett', 1982, 'M', 110), +(125846, 'Fidel', 1982, 'M', 110), +(125847, 'Moshe', 1982, 'M', 110), +(125848, 'Schuyler', 1982, 'M', 110), +(125849, 'Cristopher', 1982, 'M', 109), +(125850, 'Jace', 1982, 'M', 109), +(125851, 'Melissa', 1982, 'M', 109), +(125852, 'Nestor', 1982, 'M', 109), +(125853, 'Alphonso', 1982, 'M', 108), +(125854, 'Amanda', 1982, 'M', 108), +(125855, 'Brannon', 1982, 'M', 108), +(125856, 'Dewey', 1982, 'M', 108), +(125857, 'Elisha', 1982, 'M', 108), +(125858, 'Jerrell', 1982, 'M', 108), +(125859, 'Muhammad', 1982, 'M', 108), +(125860, 'Shea', 1982, 'M', 108), +(125861, 'Delbert', 1982, 'M', 107), +(125862, 'Ronny', 1982, 'M', 107), +(125863, 'Torrey', 1982, 'M', 107), +(125864, 'Edwardo', 1982, 'M', 106), +(125865, 'Elvin', 1982, 'M', 106), +(125866, 'Kelsey', 1982, 'M', 106), +(125867, 'Aric', 1982, 'M', 105), +(125868, 'Cristobal', 1982, 'M', 105), +(125869, 'Errol', 1982, 'M', 105), +(125870, 'Gerry', 1982, 'M', 105), +(125871, 'Kraig', 1982, 'M', 105), +(125872, 'Ulysses', 1982, 'M', 105), +(125873, 'Randell', 1982, 'M', 104), +(125874, 'Rashawn', 1982, 'M', 104), +(125875, 'August', 1982, 'M', 103), +(125876, 'Donta', 1982, 'M', 103), +(125877, 'Eloy', 1982, 'M', 103), +(125878, 'Ezequiel', 1982, 'M', 103), +(125879, 'Rasheed', 1982, 'M', 103), +(125880, 'Skylar', 1982, 'M', 103), +(125881, 'Vito', 1982, 'M', 103), +(125882, 'Brandt', 1982, 'M', 102), +(125883, 'Cruz', 1982, 'M', 102), +(125884, 'Dontae', 1982, 'M', 102), +(125885, 'Eliseo', 1982, 'M', 102), +(125886, 'Isidro', 1982, 'M', 102), +(125887, 'Rodger', 1982, 'M', 102), +(125888, 'Augustine', 1982, 'M', 101), +(125889, 'Chet', 1982, 'M', 101), +(125890, 'Giuseppe', 1982, 'M', 101), +(125891, 'Jarad', 1982, 'M', 101), +(125892, 'Mohamed', 1982, 'M', 101), +(125893, 'Theron', 1982, 'M', 101), +(125894, 'Tremayne', 1982, 'M', 101), +(125895, 'Boyd', 1982, 'M', 100), +(125896, 'Broderick', 1982, 'M', 100), +(125897, 'Jarret', 1982, 'M', 100), +(125898, 'Jude', 1982, 'M', 100), +(125899, 'Jennifer', 1983, 'F', 54336), +(125900, 'Jessica', 1983, 'F', 45278), +(125901, 'Amanda', 1983, 'F', 33752), +(125902, 'Ashley', 1983, 'F', 33292), +(125903, 'Sarah', 1983, 'F', 27228), +(125904, 'Melissa', 1983, 'F', 23472), +(125905, 'Nicole', 1983, 'F', 22392), +(125906, 'Stephanie', 1983, 'F', 22323), +(125907, 'Heather', 1983, 'F', 20749), +(125908, 'Elizabeth', 1983, 'F', 19838), +(125909, 'Crystal', 1983, 'F', 17904), +(125910, 'Amy', 1983, 'F', 17095), +(125911, 'Michelle', 1983, 'F', 16828), +(125912, 'Tiffany', 1983, 'F', 15960), +(125913, 'Kimberly', 1983, 'F', 15374), +(125914, 'Christina', 1983, 'F', 15359), +(125915, 'Amber', 1983, 'F', 14886), +(125916, 'Erin', 1983, 'F', 14835), +(125917, 'Rebecca', 1983, 'F', 14711), +(125918, 'Rachel', 1983, 'F', 14588), +(125919, 'Megan', 1983, 'F', 14123), +(125920, 'Angela', 1983, 'F', 13219), +(125921, 'Laura', 1983, 'F', 13192), +(125922, 'Lauren', 1983, 'F', 12944), +(125923, 'Emily', 1983, 'F', 12375), +(125924, 'Kelly', 1983, 'F', 11584), +(125925, 'Lisa', 1983, 'F', 11466), +(125926, 'Jamie', 1983, 'F', 11029), +(125927, 'Danielle', 1983, 'F', 10634), +(125928, 'Andrea', 1983, 'F', 10413), +(125929, 'Sara', 1983, 'F', 10084), +(125930, 'Mary', 1983, 'F', 9893), +(125931, 'Erica', 1983, 'F', 9707), +(125932, 'Katherine', 1983, 'F', 9682), +(125933, 'Lindsey', 1983, 'F', 8679), +(125934, 'Lindsay', 1983, 'F', 8620), +(125935, 'Kristen', 1983, 'F', 8616), +(125936, 'Shannon', 1983, 'F', 8424), +(125937, 'April', 1983, 'F', 8205), +(125938, 'Samantha', 1983, 'F', 7707), +(125939, 'Alicia', 1983, 'F', 7492), +(125940, 'Kristin', 1983, 'F', 7266), +(125941, 'Maria', 1983, 'F', 6838), +(125942, 'Courtney', 1983, 'F', 6746), +(125943, 'Katie', 1983, 'F', 6700), +(125944, 'Julie', 1983, 'F', 6653), +(125945, 'Christine', 1983, 'F', 6494), +(125946, 'Holly', 1983, 'F', 6387), +(125947, 'Vanessa', 1983, 'F', 6384), +(125948, 'Kathryn', 1983, 'F', 6370), +(125949, 'Tara', 1983, 'F', 6273), +(125950, 'Natalie', 1983, 'F', 5726), +(125951, 'Monica', 1983, 'F', 5403), +(125952, 'Jacqueline', 1983, 'F', 5402), +(125953, 'Anna', 1983, 'F', 5219), +(125954, 'Brandi', 1983, 'F', 5203), +(125955, 'Brandy', 1983, 'F', 5192), +(125956, 'Victoria', 1983, 'F', 5046), +(125957, 'Allison', 1983, 'F', 4971), +(125958, 'Patricia', 1983, 'F', 4923), +(125959, 'Stacy', 1983, 'F', 4678), +(125960, 'Cynthia', 1983, 'F', 4552), +(125961, 'Kristina', 1983, 'F', 4383), +(125962, 'Brittany', 1983, 'F', 4377), +(125963, 'Carrie', 1983, 'F', 4297), +(125964, 'Catherine', 1983, 'F', 4250), +(125965, 'Leslie', 1983, 'F', 4244), +(125966, 'Veronica', 1983, 'F', 4069), +(125967, 'Diana', 1983, 'F', 4036), +(125968, 'Cassandra', 1983, 'F', 4004), +(125969, 'Natasha', 1983, 'F', 3951), +(125970, 'Dana', 1983, 'F', 3923), +(125971, 'Kathleen', 1983, 'F', 3923), +(125972, 'Valerie', 1983, 'F', 3903), +(125973, 'Meghan', 1983, 'F', 3887), +(125974, 'Stacey', 1983, 'F', 3798), +(125975, 'Karen', 1983, 'F', 3791), +(125976, 'Krystal', 1983, 'F', 3716), +(125977, 'Melanie', 1983, 'F', 3551), +(125978, 'Erika', 1983, 'F', 3547), +(125979, 'Kayla', 1983, 'F', 3527), +(125980, 'Leah', 1983, 'F', 3479), +(125981, 'Alexis', 1983, 'F', 3463), +(125982, 'Candice', 1983, 'F', 3419), +(125983, 'Julia', 1983, 'F', 3380), +(125984, 'Susan', 1983, 'F', 3352), +(125985, 'Misty', 1983, 'F', 3188), +(125986, 'Sandra', 1983, 'F', 3171), +(125987, 'Tracy', 1983, 'F', 3158), +(125988, 'Latoya', 1983, 'F', 3151), +(125989, 'Pamela', 1983, 'F', 3026), +(125990, 'Margaret', 1983, 'F', 2942), +(125991, 'Nichole', 1983, 'F', 2928), +(125992, 'Desiree', 1983, 'F', 2914), +(125993, 'Heidi', 1983, 'F', 2914), +(125994, 'Brooke', 1983, 'F', 2865), +(125995, 'Renee', 1983, 'F', 2848), +(125996, 'Jill', 1983, 'F', 2788), +(125997, 'Bethany', 1983, 'F', 2765), +(125998, 'Tina', 1983, 'F', 2742), +(125999, 'Kara', 1983, 'F', 2714), +(126000, 'Chelsea', 1983, 'F', 2706), +(126001, 'Teresa', 1983, 'F', 2701), +(126002, 'Candace', 1983, 'F', 2697), +(126003, 'Stefanie', 1983, 'F', 2666), +(126004, 'Dawn', 1983, 'F', 2640), +(126005, 'Sheena', 1983, 'F', 2632), +(126006, 'Katrina', 1983, 'F', 2603), +(126007, 'Denise', 1983, 'F', 2572), +(126008, 'Casey', 1983, 'F', 2556), +(126009, 'Sabrina', 1983, 'F', 2554), +(126010, 'Marquita', 1983, 'F', 2543), +(126011, 'Nancy', 1983, 'F', 2520), +(126012, 'Lori', 1983, 'F', 2519), +(126013, 'Jillian', 1983, 'F', 2513), +(126014, 'Alison', 1983, 'F', 2491), +(126015, 'Monique', 1983, 'F', 2484), +(126016, 'Miranda', 1983, 'F', 2479), +(126017, 'Linda', 1983, 'F', 2473), +(126018, 'Brenda', 1983, 'F', 2433), +(126019, 'Gina', 1983, 'F', 2417), +(126020, 'Theresa', 1983, 'F', 2415), +(126021, 'Rachael', 1983, 'F', 2410), +(126022, 'Hannah', 1983, 'F', 2398), +(126023, 'Wendy', 1983, 'F', 2388), +(126024, 'Robin', 1983, 'F', 2387), +(126025, 'Jaclyn', 1983, 'F', 2386), +(126026, 'Lacey', 1983, 'F', 2383), +(126027, 'Molly', 1983, 'F', 2310), +(126028, 'Anne', 1983, 'F', 2305), +(126029, 'Tamara', 1983, 'F', 2279), +(126030, 'Jenny', 1983, 'F', 2248), +(126031, 'Kristy', 1983, 'F', 2241), +(126032, 'Tanya', 1983, 'F', 2226), +(126033, 'Ebony', 1983, 'F', 2216), +(126034, 'Kelli', 1983, 'F', 2162), +(126035, 'Tabitha', 1983, 'F', 2157), +(126036, 'Melinda', 1983, 'F', 2143), +(126037, 'Joanna', 1983, 'F', 2120), +(126038, 'Adrienne', 1983, 'F', 2078), +(126039, 'Alisha', 1983, 'F', 2048), +(126040, 'Krista', 1983, 'F', 2043), +(126041, 'Barbara', 1983, 'F', 2019), +(126042, 'Colleen', 1983, 'F', 2009), +(126043, 'Kari', 1983, 'F', 1998), +(126044, 'Christy', 1983, 'F', 1974), +(126045, 'Tonya', 1983, 'F', 1957), +(126046, 'Meredith', 1983, 'F', 1939), +(126047, 'Deanna', 1983, 'F', 1921), +(126048, 'Carolyn', 1983, 'F', 1913), +(126049, 'Abigail', 1983, 'F', 1908), +(126050, 'Rebekah', 1983, 'F', 1900), +(126051, 'Caitlin', 1983, 'F', 1884), +(126052, 'Kristi', 1983, 'F', 1870), +(126053, 'Michele', 1983, 'F', 1837), +(126054, 'Tasha', 1983, 'F', 1832), +(126055, 'Ann', 1983, 'F', 1812), +(126056, 'Jaime', 1983, 'F', 1782), +(126057, 'Tammy', 1983, 'F', 1782), +(126058, 'Sharon', 1983, 'F', 1779), +(126059, 'Marie', 1983, 'F', 1749), +(126060, 'Bridget', 1983, 'F', 1748), +(126061, 'Alexandra', 1983, 'F', 1695), +(126062, 'Whitney', 1983, 'F', 1688), +(126063, 'Virginia', 1983, 'F', 1679), +(126064, 'Latasha', 1983, 'F', 1665), +(126065, 'Morgan', 1983, 'F', 1659), +(126066, 'Regina', 1983, 'F', 1651), +(126067, 'Beth', 1983, 'F', 1634), +(126068, 'Marissa', 1983, 'F', 1622), +(126069, 'Kendra', 1983, 'F', 1610), +(126070, 'Deborah', 1983, 'F', 1605), +(126071, 'Cassie', 1983, 'F', 1598), +(126072, 'Angel', 1983, 'F', 1575), +(126073, 'Jasmine', 1983, 'F', 1568), +(126074, 'Cheryl', 1983, 'F', 1562), +(126075, 'Cindy', 1983, 'F', 1548), +(126076, 'Carla', 1983, 'F', 1529), +(126077, 'Cristina', 1983, 'F', 1518), +(126078, 'Priscilla', 1983, 'F', 1509), +(126079, 'Felicia', 1983, 'F', 1500), +(126080, 'Ashlee', 1983, 'F', 1494), +(126081, 'Aimee', 1983, 'F', 1482), +(126082, 'Caroline', 1983, 'F', 1479), +(126083, 'Audrey', 1983, 'F', 1467), +(126084, 'Angelica', 1983, 'F', 1463), +(126085, 'Shawna', 1983, 'F', 1455), +(126086, 'Jodi', 1983, 'F', 1428), +(126087, 'Suzanne', 1983, 'F', 1402), +(126088, 'Janet', 1983, 'F', 1396), +(126089, 'Cara', 1983, 'F', 1393), +(126090, 'Donna', 1983, 'F', 1378), +(126091, 'Diane', 1983, 'F', 1377), +(126092, 'Jacquelyn', 1983, 'F', 1377), +(126093, 'Claudia', 1983, 'F', 1352), +(126094, 'Martha', 1983, 'F', 1345), +(126095, 'Mandy', 1983, 'F', 1343), +(126096, 'Nina', 1983, 'F', 1343), +(126097, 'Kate', 1983, 'F', 1334), +(126098, 'Abby', 1983, 'F', 1310), +(126099, 'Ana', 1983, 'F', 1308), +(126100, 'Bonnie', 1983, 'F', 1276), +(126101, 'Robyn', 1983, 'F', 1269), +(126102, 'Kristine', 1983, 'F', 1259), +(126103, 'Autumn', 1983, 'F', 1255), +(126104, 'Carmen', 1983, 'F', 1226), +(126105, 'Mindy', 1983, 'F', 1222), +(126106, 'Yolanda', 1983, 'F', 1209), +(126107, 'Alyssa', 1983, 'F', 1202), +(126108, 'Sophia', 1983, 'F', 1195), +(126109, 'Joy', 1983, 'F', 1191), +(126110, 'Trisha', 1983, 'F', 1191), +(126111, 'Meagan', 1983, 'F', 1190), +(126112, 'Daisy', 1983, 'F', 1174), +(126113, 'Jenna', 1983, 'F', 1168), +(126114, 'Janelle', 1983, 'F', 1165), +(126115, 'Summer', 1983, 'F', 1165), +(126116, 'Toni', 1983, 'F', 1165), +(126117, 'Paula', 1983, 'F', 1161), +(126118, 'Carly', 1983, 'F', 1159), +(126119, 'Gloria', 1983, 'F', 1149), +(126120, 'Evelyn', 1983, 'F', 1139), +(126121, 'Ruth', 1983, 'F', 1124), +(126122, 'Kelsey', 1983, 'F', 1116), +(126123, 'Melody', 1983, 'F', 1107), +(126124, 'Naomi', 1983, 'F', 1101), +(126125, 'Christie', 1983, 'F', 1098), +(126126, 'Olivia', 1983, 'F', 1086), +(126127, 'Debra', 1983, 'F', 1083), +(126128, 'Kellie', 1983, 'F', 1074), +(126129, 'Shelly', 1983, 'F', 1073), +(126130, 'Krystle', 1983, 'F', 1067), +(126131, 'Rose', 1983, 'F', 1061), +(126132, 'Adriana', 1983, 'F', 1052), +(126133, 'Randi', 1983, 'F', 1049), +(126134, 'Rosa', 1983, 'F', 1047), +(126135, 'Shanna', 1983, 'F', 1044), +(126136, 'Sylvia', 1983, 'F', 1036), +(126137, 'Lydia', 1983, 'F', 1022), +(126138, 'Grace', 1983, 'F', 998), +(126139, 'Marisa', 1983, 'F', 995), +(126140, 'Lacy', 1983, 'F', 972), +(126141, 'Brianna', 1983, 'F', 971), +(126142, 'Charlene', 1983, 'F', 962), +(126143, 'Sonia', 1983, 'F', 959), +(126144, 'Ellen', 1983, 'F', 953), +(126145, 'Laurie', 1983, 'F', 953), +(126146, 'Ashleigh', 1983, 'F', 947), +(126147, 'Sheila', 1983, 'F', 947), +(126148, 'Nikki', 1983, 'F', 946), +(126149, 'Carol', 1983, 'F', 942), +(126150, 'Keri', 1983, 'F', 941), +(126151, 'Bianca', 1983, 'F', 940), +(126152, 'Rhonda', 1983, 'F', 939), +(126153, 'Karla', 1983, 'F', 938), +(126154, 'Sherry', 1983, 'F', 931), +(126155, 'Brittney', 1983, 'F', 923), +(126156, 'Haley', 1983, 'F', 918), +(126157, 'Tamika', 1983, 'F', 918), +(126158, 'Jeanette', 1983, 'F', 915), +(126159, 'Stacie', 1983, 'F', 914), +(126160, 'Tia', 1983, 'F', 914), +(126161, 'Sonya', 1983, 'F', 913), +(126162, 'Rachelle', 1983, 'F', 909), +(126163, 'Kelley', 1983, 'F', 908), +(126164, 'Yvonne', 1983, 'F', 908), +(126165, 'Terri', 1983, 'F', 905), +(126166, 'Anita', 1983, 'F', 899), +(126167, 'Jessie', 1983, 'F', 888), +(126168, 'Frances', 1983, 'F', 875), +(126169, 'Leigh', 1983, 'F', 865), +(126170, 'Shauna', 1983, 'F', 864), +(126171, 'Esther', 1983, 'F', 860), +(126172, 'Kerri', 1983, 'F', 858), +(126173, 'Mayra', 1983, 'F', 857), +(126174, 'Claire', 1983, 'F', 855), +(126175, 'Helen', 1983, 'F', 844), +(126176, 'Traci', 1983, 'F', 844), +(126177, 'Leticia', 1983, 'F', 842), +(126178, 'Maureen', 1983, 'F', 841), +(126179, 'Katharine', 1983, 'F', 839), +(126180, 'Tabatha', 1983, 'F', 837), +(126181, 'Charlotte', 1983, 'F', 835), +(126182, 'Raquel', 1983, 'F', 823), +(126183, 'Trista', 1983, 'F', 822), +(126184, 'Eva', 1983, 'F', 820), +(126185, 'Roxanne', 1983, 'F', 818), +(126186, 'Angelina', 1983, 'F', 817), +(126187, 'Tessa', 1983, 'F', 816), +(126188, 'Charity', 1983, 'F', 814), +(126189, 'Brandie', 1983, 'F', 809), +(126190, 'Annie', 1983, 'F', 802), +(126191, 'Elaine', 1983, 'F', 797), +(126192, 'Kristie', 1983, 'F', 791), +(126193, 'Lynn', 1983, 'F', 789), +(126194, 'Kerry', 1983, 'F', 786), +(126195, 'Tracey', 1983, 'F', 786), +(126196, 'Jane', 1983, 'F', 782), +(126197, 'Johanna', 1983, 'F', 778), +(126198, 'Shelley', 1983, 'F', 777), +(126199, 'Janice', 1983, 'F', 772), +(126200, 'Kasey', 1983, 'F', 770), +(126201, 'Kathy', 1983, 'F', 765), +(126202, 'Amelia', 1983, 'F', 759), +(126203, 'Dorothy', 1983, 'F', 759), +(126204, 'Chrystal', 1983, 'F', 757), +(126205, 'Irene', 1983, 'F', 747), +(126206, 'Alissa', 1983, 'F', 744), +(126207, 'Latisha', 1983, 'F', 744), +(126208, 'Jana', 1983, 'F', 741), +(126209, 'Yvette', 1983, 'F', 741), +(126210, 'Maggie', 1983, 'F', 738), +(126211, 'Bobbie', 1983, 'F', 737), +(126212, 'Carissa', 1983, 'F', 737), +(126213, 'Jami', 1983, 'F', 737), +(126214, 'Miriam', 1983, 'F', 737), +(126215, 'Lesley', 1983, 'F', 734), +(126216, 'Jade', 1983, 'F', 733), +(126217, 'Brianne', 1983, 'F', 726), +(126218, 'Tanisha', 1983, 'F', 724), +(126219, 'Annette', 1983, 'F', 723), +(126220, 'Jocelyn', 1983, 'F', 721), +(126221, 'Shana', 1983, 'F', 718), +(126222, 'Kirsten', 1983, 'F', 716), +(126223, 'Jennie', 1983, 'F', 714), +(126224, 'Staci', 1983, 'F', 711), +(126225, 'Gabriela', 1983, 'F', 709), +(126226, 'Elisabeth', 1983, 'F', 705), +(126227, 'Alice', 1983, 'F', 699), +(126228, 'Hillary', 1983, 'F', 696), +(126229, 'Chasity', 1983, 'F', 692), +(126230, 'Becky', 1983, 'F', 689), +(126231, 'Mallory', 1983, 'F', 689), +(126232, 'Briana', 1983, 'F', 688), +(126233, 'Eileen', 1983, 'F', 688), +(126234, 'Juanita', 1983, 'F', 685); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(126235, 'Rochelle', 1983, 'F', 685), +(126236, 'Taylor', 1983, 'F', 683), +(126237, 'Patrice', 1983, 'F', 682), +(126238, 'Elisa', 1983, 'F', 676), +(126239, 'Jackie', 1983, 'F', 675), +(126240, 'Jolene', 1983, 'F', 674), +(126241, 'Lyndsey', 1983, 'F', 670), +(126242, 'Faith', 1983, 'F', 663), +(126243, 'Sally', 1983, 'F', 660), +(126244, 'Hilary', 1983, 'F', 655), +(126245, 'Hollie', 1983, 'F', 653), +(126246, 'Ariel', 1983, 'F', 649), +(126247, 'Jenifer', 1983, 'F', 647), +(126248, 'Karina', 1983, 'F', 646), +(126249, 'Shelby', 1983, 'F', 642), +(126250, 'Christa', 1983, 'F', 640), +(126251, 'Constance', 1983, 'F', 639), +(126252, 'Latonya', 1983, 'F', 637), +(126253, 'Tricia', 1983, 'F', 637), +(126254, 'Joyce', 1983, 'F', 636), +(126255, 'Sandy', 1983, 'F', 636), +(126256, 'Cecilia', 1983, 'F', 635), +(126257, 'Alana', 1983, 'F', 633), +(126258, 'Antoinette', 1983, 'F', 632), +(126259, 'Gabrielle', 1983, 'F', 625), +(126260, 'Camille', 1983, 'F', 624), +(126261, 'Clarissa', 1983, 'F', 621), +(126262, 'Connie', 1983, 'F', 621), +(126263, 'Amie', 1983, 'F', 619), +(126264, 'Audra', 1983, 'F', 619), +(126265, 'Judith', 1983, 'F', 613), +(126266, 'Marilyn', 1983, 'F', 612), +(126267, 'Lorena', 1983, 'F', 609), +(126268, 'Ryan', 1983, 'F', 609), +(126269, 'Tameka', 1983, 'F', 606), +(126270, 'Jody', 1983, 'F', 602), +(126271, 'Leanne', 1983, 'F', 599), +(126272, 'Gretchen', 1983, 'F', 595), +(126273, 'Serena', 1983, 'F', 595), +(126274, 'Rita', 1983, 'F', 592), +(126275, 'Ruby', 1983, 'F', 592), +(126276, 'Aubrey', 1983, 'F', 590), +(126277, 'Paige', 1983, 'F', 587), +(126278, 'Fallon', 1983, 'F', 586), +(126279, 'Keisha', 1983, 'F', 582), +(126280, 'Belinda', 1983, 'F', 581), +(126281, 'Angie', 1983, 'F', 580), +(126282, 'Devon', 1983, 'F', 579), +(126283, 'Michael', 1983, 'F', 577), +(126284, 'Ericka', 1983, 'F', 576), +(126285, 'Jodie', 1983, 'F', 569), +(126286, 'Beverly', 1983, 'F', 568), +(126287, 'Betty', 1983, 'F', 563), +(126288, 'Elena', 1983, 'F', 563), +(126289, 'Joanne', 1983, 'F', 563), +(126290, 'Katy', 1983, 'F', 561), +(126291, 'Lakisha', 1983, 'F', 560), +(126292, 'Elise', 1983, 'F', 555), +(126293, 'Kira', 1983, 'F', 555), +(126294, 'Sherri', 1983, 'F', 554), +(126295, 'Cortney', 1983, 'F', 552), +(126296, 'Emma', 1983, 'F', 552), +(126297, 'Alexandria', 1983, 'F', 550), +(126298, 'Kristal', 1983, 'F', 544), +(126299, 'Janine', 1983, 'F', 542), +(126300, 'Guadalupe', 1983, 'F', 540), +(126301, 'Chelsey', 1983, 'F', 535), +(126302, 'Alejandra', 1983, 'F', 534), +(126303, 'Shayla', 1983, 'F', 533), +(126304, 'Sasha', 1983, 'F', 530), +(126305, 'Darlene', 1983, 'F', 528), +(126306, 'Ginger', 1983, 'F', 527), +(126307, 'Elisha', 1983, 'F', 526), +(126308, 'Celeste', 1983, 'F', 524), +(126309, 'Jean', 1983, 'F', 524), +(126310, 'Alma', 1983, 'F', 523), +(126311, 'Justine', 1983, 'F', 522), +(126312, 'Billie', 1983, 'F', 521), +(126313, 'Judy', 1983, 'F', 521), +(126314, 'Marisol', 1983, 'F', 520), +(126315, 'Bobbi', 1983, 'F', 519), +(126316, 'Nora', 1983, 'F', 519), +(126317, 'Norma', 1983, 'F', 519), +(126318, 'Lakeisha', 1983, 'F', 517), +(126319, 'Destiny', 1983, 'F', 516), +(126320, 'Corinne', 1983, 'F', 511), +(126321, 'Lara', 1983, 'F', 511), +(126322, 'Terra', 1983, 'F', 510), +(126323, 'Maribel', 1983, 'F', 509), +(126324, 'Alisa', 1983, 'F', 508), +(126325, 'Kaitlin', 1983, 'F', 507), +(126326, 'Shirley', 1983, 'F', 507), +(126327, 'Christen', 1983, 'F', 504), +(126328, 'Hope', 1983, 'F', 502), +(126329, 'Jordan', 1983, 'F', 498), +(126330, 'Christin', 1983, 'F', 495), +(126331, 'Rosemary', 1983, 'F', 489), +(126332, 'Dianna', 1983, 'F', 488), +(126333, 'Rosanna', 1983, 'F', 488), +(126334, 'Genevieve', 1983, 'F', 483), +(126335, 'Breanna', 1983, 'F', 482), +(126336, 'Josephine', 1983, 'F', 480), +(126337, 'Sheri', 1983, 'F', 480), +(126338, 'Adrian', 1983, 'F', 479), +(126339, 'Mia', 1983, 'F', 469), +(126340, 'Joni', 1983, 'F', 465), +(126341, 'Jayme', 1983, 'F', 464), +(126342, 'Alyson', 1983, 'F', 462), +(126343, 'Bridgette', 1983, 'F', 460), +(126344, 'Chandra', 1983, 'F', 460), +(126345, 'Meaghan', 1983, 'F', 460), +(126346, 'Larissa', 1983, 'F', 459), +(126347, 'Allyson', 1983, 'F', 458), +(126348, 'Lora', 1983, 'F', 458), +(126349, 'Marlene', 1983, 'F', 458), +(126350, 'Tracie', 1983, 'F', 455), +(126351, 'Dominique', 1983, 'F', 454), +(126352, 'Yesenia', 1983, 'F', 453), +(126353, 'Callie', 1983, 'F', 452), +(126354, 'Lillian', 1983, 'F', 451), +(126355, 'Joann', 1983, 'F', 447), +(126356, 'Adrianne', 1983, 'F', 446), +(126357, 'Tiffani', 1983, 'F', 446), +(126358, 'Lena', 1983, 'F', 445), +(126359, 'Margarita', 1983, 'F', 442), +(126360, 'Esmeralda', 1983, 'F', 440), +(126361, 'Leann', 1983, 'F', 440), +(126362, 'Laurel', 1983, 'F', 436), +(126363, 'Chanel', 1983, 'F', 435), +(126364, 'Savannah', 1983, 'F', 434), +(126365, 'Teri', 1983, 'F', 434), +(126366, 'Isabel', 1983, 'F', 431), +(126367, 'Lorraine', 1983, 'F', 430), +(126368, 'Katelyn', 1983, 'F', 424), +(126369, 'Raven', 1983, 'F', 424), +(126370, 'Jacklyn', 1983, 'F', 422), +(126371, 'Ashlie', 1983, 'F', 421), +(126372, 'Abbey', 1983, 'F', 420), +(126373, 'Carolina', 1983, 'F', 420), +(126374, 'Christopher', 1983, 'F', 419), +(126375, 'Shameka', 1983, 'F', 417), +(126376, 'Dena', 1983, 'F', 416), +(126377, 'Blair', 1983, 'F', 411), +(126378, 'Lynette', 1983, 'F', 411), +(126379, 'Vivian', 1983, 'F', 411), +(126380, 'Christi', 1983, 'F', 410), +(126381, 'Mandi', 1983, 'F', 410), +(126382, 'Lucy', 1983, 'F', 408), +(126383, 'Blanca', 1983, 'F', 406), +(126384, 'Noelle', 1983, 'F', 404), +(126385, 'Alaina', 1983, 'F', 403), +(126386, 'Tiffanie', 1983, 'F', 403), +(126387, 'Tera', 1983, 'F', 402), +(126388, 'Kim', 1983, 'F', 401), +(126389, 'Betsy', 1983, 'F', 400), +(126390, 'Celia', 1983, 'F', 400), +(126391, 'Lakesha', 1983, 'F', 397), +(126392, 'Shari', 1983, 'F', 397), +(126393, 'Lyndsay', 1983, 'F', 393), +(126394, 'Gwendolyn', 1983, 'F', 392), +(126395, 'Tania', 1983, 'F', 392), +(126396, 'Aisha', 1983, 'F', 391), +(126397, 'Iris', 1983, 'F', 390), +(126398, 'Kenya', 1983, 'F', 389), +(126399, 'Marsha', 1983, 'F', 389), +(126400, 'Kimberley', 1983, 'F', 387), +(126401, 'Susana', 1983, 'F', 387), +(126402, 'Tiara', 1983, 'F', 386), +(126403, 'Melisa', 1983, 'F', 385), +(126404, 'Marina', 1983, 'F', 384), +(126405, 'Casandra', 1983, 'F', 383), +(126406, 'Anastasia', 1983, 'F', 381), +(126407, 'Ariana', 1983, 'F', 380), +(126408, 'Natalia', 1983, 'F', 380), +(126409, 'Chantel', 1983, 'F', 379), +(126410, 'Lee', 1983, 'F', 373), +(126411, 'Nadia', 1983, 'F', 373), +(126412, 'Cathy', 1983, 'F', 371), +(126413, 'Maranda', 1983, 'F', 370), +(126414, 'Arlene', 1983, 'F', 369), +(126415, 'Selena', 1983, 'F', 367), +(126416, 'Angelique', 1983, 'F', 366), +(126417, 'Bernadette', 1983, 'F', 366), +(126418, 'Brenna', 1983, 'F', 366), +(126419, 'Candy', 1983, 'F', 365), +(126420, 'Christian', 1983, 'F', 364), +(126421, 'Hayley', 1983, 'F', 364), +(126422, 'Darcy', 1983, 'F', 361), +(126423, 'Liliana', 1983, 'F', 361), +(126424, 'Rhiannon', 1983, 'F', 361), +(126425, 'Latrice', 1983, 'F', 360), +(126426, 'Marianne', 1983, 'F', 359), +(126427, 'Taryn', 1983, 'F', 359), +(126428, 'Cassidy', 1983, 'F', 358), +(126429, 'Tami', 1983, 'F', 358), +(126430, 'Britney', 1983, 'F', 357), +(126431, 'Marcia', 1983, 'F', 355), +(126432, 'Trina', 1983, 'F', 354), +(126433, 'Kyla', 1983, 'F', 351), +(126434, 'Luz', 1983, 'F', 350), +(126435, 'Lea', 1983, 'F', 349), +(126436, 'Elissa', 1983, 'F', 348), +(126437, 'Joan', 1983, 'F', 348), +(126438, 'Rocio', 1983, 'F', 347), +(126439, 'Lashonda', 1983, 'F', 346), +(126440, 'Loretta', 1983, 'F', 346), +(126441, 'Debbie', 1983, 'F', 345), +(126442, 'Kacie', 1983, 'F', 345), +(126443, 'Kaleena', 1983, 'F', 341), +(126444, 'Lana', 1983, 'F', 341), +(126445, 'Daniela', 1983, 'F', 340), +(126446, 'Mariah', 1983, 'F', 336), +(126447, 'Athena', 1983, 'F', 335), +(126448, 'Cherie', 1983, 'F', 335), +(126449, 'Devin', 1983, 'F', 335), +(126450, 'Roberta', 1983, 'F', 335), +(126451, 'Juliana', 1983, 'F', 333), +(126452, 'Jasmin', 1983, 'F', 330), +(126453, 'Breanne', 1983, 'F', 328), +(126454, 'Tiana', 1983, 'F', 328), +(126455, 'Jeannette', 1983, 'F', 327), +(126456, 'Asia', 1983, 'F', 326), +(126457, 'Antonia', 1983, 'F', 325), +(126458, 'Janette', 1983, 'F', 325), +(126459, 'Jeanne', 1983, 'F', 325), +(126460, 'Tatiana', 1983, 'F', 324), +(126461, 'Ashly', 1983, 'F', 323), +(126462, 'Deana', 1983, 'F', 323), +(126463, 'Liza', 1983, 'F', 323), +(126464, 'Myra', 1983, 'F', 323), +(126465, 'David', 1983, 'F', 321), +(126466, 'Dina', 1983, 'F', 319), +(126467, 'Wanda', 1983, 'F', 319), +(126468, 'Matthew', 1983, 'F', 316), +(126469, 'Racheal', 1983, 'F', 316), +(126470, 'Silvia', 1983, 'F', 314), +(126471, 'Sonja', 1983, 'F', 314), +(126472, 'Christal', 1983, 'F', 313), +(126473, 'Mollie', 1983, 'F', 312), +(126474, 'Clara', 1983, 'F', 310), +(126475, 'Mercedes', 1983, 'F', 310), +(126476, 'Talia', 1983, 'F', 310), +(126477, 'Cheri', 1983, 'F', 309), +(126478, 'Janie', 1983, 'F', 309), +(126479, 'Deidre', 1983, 'F', 307), +(126480, 'Alecia', 1983, 'F', 306), +(126481, 'Shamika', 1983, 'F', 306), +(126482, 'Daphne', 1983, 'F', 305), +(126483, 'Tori', 1983, 'F', 305), +(126484, 'Valarie', 1983, 'F', 305), +(126485, 'Lacie', 1983, 'F', 303), +(126486, 'Martina', 1983, 'F', 303), +(126487, 'Corina', 1983, 'F', 302), +(126488, 'Kimberlee', 1983, 'F', 302), +(126489, 'Lucia', 1983, 'F', 301), +(126490, 'Francesca', 1983, 'F', 299), +(126491, 'Georgia', 1983, 'F', 299), +(126492, 'Araceli', 1983, 'F', 298), +(126493, 'Josie', 1983, 'F', 298), +(126494, 'Kassandra', 1983, 'F', 298), +(126495, 'Cari', 1983, 'F', 297), +(126496, 'Janna', 1983, 'F', 297), +(126497, 'Jeannie', 1983, 'F', 297), +(126498, 'Marjorie', 1983, 'F', 297), +(126499, 'Meghann', 1983, 'F', 297), +(126500, 'Dayna', 1983, 'F', 294), +(126501, 'Penny', 1983, 'F', 294), +(126502, 'Michaela', 1983, 'F', 293), +(126503, 'Maritza', 1983, 'F', 292), +(126504, 'Ivy', 1983, 'F', 291), +(126505, 'Corey', 1983, 'F', 289), +(126506, 'Maya', 1983, 'F', 289), +(126507, 'Tierra', 1983, 'F', 289), +(126508, 'Edith', 1983, 'F', 287), +(126509, 'Glenda', 1983, 'F', 287), +(126510, 'Janell', 1983, 'F', 286), +(126511, 'Marcella', 1983, 'F', 286), +(126512, 'Marla', 1983, 'F', 284), +(126513, 'Peggy', 1983, 'F', 284), +(126514, 'Holli', 1983, 'F', 283), +(126515, 'Tosha', 1983, 'F', 283), +(126516, 'James', 1983, 'F', 282), +(126517, 'Eliza', 1983, 'F', 280), +(126518, 'Leanna', 1983, 'F', 280), +(126519, 'Maryann', 1983, 'F', 279), +(126520, 'Shawn', 1983, 'F', 279), +(126521, 'Tanesha', 1983, 'F', 279), +(126522, 'Kala', 1983, 'F', 277), +(126523, 'Cristy', 1983, 'F', 276), +(126524, 'Gail', 1983, 'F', 275), +(126525, 'Nadine', 1983, 'F', 275), +(126526, 'Nicolette', 1983, 'F', 275), +(126527, 'Shanika', 1983, 'F', 275), +(126528, 'Adriane', 1983, 'F', 274), +(126529, 'Kacey', 1983, 'F', 274), +(126530, 'Kaitlyn', 1983, 'F', 274), +(126531, 'Kandice', 1983, 'F', 273), +(126532, 'Kia', 1983, 'F', 272), +(126533, 'Mackenzie', 1983, 'F', 271), +(126534, 'Catrina', 1983, 'F', 270), +(126535, 'Leeann', 1983, 'F', 269), +(126536, 'Simone', 1983, 'F', 269), +(126537, 'Ingrid', 1983, 'F', 268), +(126538, 'Misti', 1983, 'F', 268), +(126539, 'Precious', 1983, 'F', 268), +(126540, 'Bridgett', 1983, 'F', 267), +(126541, 'Cori', 1983, 'F', 267), +(126542, 'Ramona', 1983, 'F', 267), +(126543, 'Andria', 1983, 'F', 266), +(126544, 'Chelsie', 1983, 'F', 266), +(126545, 'Delia', 1983, 'F', 266), +(126546, 'John', 1983, 'F', 266), +(126547, 'Karissa', 1983, 'F', 266), +(126548, 'Ladonna', 1983, 'F', 266), +(126549, 'Madeline', 1983, 'F', 265), +(126550, 'Deidra', 1983, 'F', 264), +(126551, 'Eleanor', 1983, 'F', 264), +(126552, 'Jeanine', 1983, 'F', 264), +(126553, 'Marcie', 1983, 'F', 264), +(126554, 'Vicki', 1983, 'F', 264), +(126555, 'Susanna', 1983, 'F', 263), +(126556, 'Tarah', 1983, 'F', 262), +(126557, 'Beatriz', 1983, 'F', 261), +(126558, 'Kylie', 1983, 'F', 261), +(126559, 'Sofia', 1983, 'F', 261), +(126560, 'Desirae', 1983, 'F', 260), +(126561, 'Marci', 1983, 'F', 260), +(126562, 'Noemi', 1983, 'F', 260), +(126563, 'Olga', 1983, 'F', 260), +(126564, 'Geneva', 1983, 'F', 259), +(126565, 'Daniel', 1983, 'F', 258), +(126566, 'Rena', 1983, 'F', 258), +(126567, 'Beatrice', 1983, 'F', 257), +(126568, 'Jesse', 1983, 'F', 257), +(126569, 'Robert', 1983, 'F', 255), +(126570, 'Selina', 1983, 'F', 255), +(126571, 'Shayna', 1983, 'F', 255), +(126572, 'Aileen', 1983, 'F', 254), +(126573, 'Dara', 1983, 'F', 254), +(126574, 'Pauline', 1983, 'F', 254), +(126575, 'Delilah', 1983, 'F', 252), +(126576, 'Sheree', 1983, 'F', 252), +(126577, 'Princess', 1983, 'F', 251), +(126578, 'Latosha', 1983, 'F', 250), +(126579, 'Aja', 1983, 'F', 249), +(126580, 'Arielle', 1983, 'F', 249), +(126581, 'Brandon', 1983, 'F', 248), +(126582, 'Doris', 1983, 'F', 248), +(126583, 'Laquita', 1983, 'F', 248), +(126584, 'Maura', 1983, 'F', 248), +(126585, 'Kendall', 1983, 'F', 247), +(126586, 'Kristyn', 1983, 'F', 247), +(126587, 'Octavia', 1983, 'F', 247), +(126588, 'Adrianna', 1983, 'F', 246), +(126589, 'Hanna', 1983, 'F', 246), +(126590, 'Julianne', 1983, 'F', 246), +(126591, 'Laci', 1983, 'F', 246), +(126592, 'Shantel', 1983, 'F', 246), +(126593, 'Alanna', 1983, 'F', 245), +(126594, 'Alesha', 1983, 'F', 245), +(126595, 'Jason', 1983, 'F', 245), +(126596, 'Ciji', 1983, 'F', 244), +(126597, 'Loren', 1983, 'F', 244), +(126598, 'Marlena', 1983, 'F', 244), +(126599, 'Chastity', 1983, 'F', 243), +(126600, 'Elyse', 1983, 'F', 243), +(126601, 'Kyle', 1983, 'F', 243), +(126602, 'Malinda', 1983, 'F', 243), +(126603, 'Ashely', 1983, 'F', 241), +(126604, 'Candi', 1983, 'F', 241), +(126605, 'Lynda', 1983, 'F', 241), +(126606, 'Mara', 1983, 'F', 241), +(126607, 'Justina', 1983, 'F', 240), +(126608, 'Karin', 1983, 'F', 240), +(126609, 'Dora', 1983, 'F', 238), +(126610, 'Eboni', 1983, 'F', 237), +(126611, 'Renae', 1983, 'F', 237), +(126612, 'Sharonda', 1983, 'F', 237), +(126613, 'Charmaine', 1983, 'F', 235), +(126614, 'Elsa', 1983, 'F', 235), +(126615, 'Linsey', 1983, 'F', 233), +(126616, 'Joshua', 1983, 'F', 232), +(126617, 'Kirby', 1983, 'F', 232), +(126618, 'Casie', 1983, 'F', 231), +(126619, 'Celina', 1983, 'F', 231), +(126620, 'Lucinda', 1983, 'F', 231), +(126621, 'Marcy', 1983, 'F', 231), +(126622, 'Edna', 1983, 'F', 229), +(126623, 'Tonia', 1983, 'F', 229), +(126624, 'Janel', 1983, 'F', 228), +(126625, 'Brynn', 1983, 'F', 227), +(126626, 'Gillian', 1983, 'F', 227), +(126627, 'Carina', 1983, 'F', 226), +(126628, 'Kathrine', 1983, 'F', 225), +(126629, 'Yadira', 1983, 'F', 225), +(126630, 'Cora', 1983, 'F', 224), +(126631, 'Venessa', 1983, 'F', 224), +(126632, 'Abbie', 1983, 'F', 223), +(126633, 'Karrie', 1983, 'F', 223), +(126634, 'Tanika', 1983, 'F', 223), +(126635, 'Carey', 1983, 'F', 221), +(126636, 'Janae', 1983, 'F', 221), +(126637, 'Monika', 1983, 'F', 221), +(126638, 'Noel', 1983, 'F', 221), +(126639, 'Rene', 1983, 'F', 221), +(126640, 'Tenisha', 1983, 'F', 221), +(126641, 'Emilie', 1983, 'F', 220), +(126642, 'Lashanda', 1983, 'F', 220), +(126643, 'Sheryl', 1983, 'F', 220), +(126644, 'Alexa', 1983, 'F', 219), +(126645, 'Darla', 1983, 'F', 219), +(126646, 'Irma', 1983, 'F', 219), +(126647, 'Dolores', 1983, 'F', 218), +(126648, 'Nakia', 1983, 'F', 218), +(126649, 'Justin', 1983, 'F', 217), +(126650, 'Sadie', 1983, 'F', 217), +(126651, 'Gladys', 1983, 'F', 216), +(126652, 'Danelle', 1983, 'F', 215), +(126653, 'Terry', 1983, 'F', 215), +(126654, 'Brandee', 1983, 'F', 214), +(126655, 'Emilee', 1983, 'F', 213), +(126656, 'Leila', 1983, 'F', 213), +(126657, 'Lourdes', 1983, 'F', 213), +(126658, 'Shanda', 1983, 'F', 213), +(126659, 'Jenelle', 1983, 'F', 212), +(126660, 'Sherrie', 1983, 'F', 212), +(126661, 'Joseph', 1983, 'F', 211), +(126662, 'Kyra', 1983, 'F', 210), +(126663, 'Demetria', 1983, 'F', 209), +(126664, 'Cristin', 1983, 'F', 208), +(126665, 'Kami', 1983, 'F', 208), +(126666, 'Kisha', 1983, 'F', 208), +(126667, 'Stella', 1983, 'F', 208), +(126668, 'Georgina', 1983, 'F', 207), +(126669, 'Jo', 1983, 'F', 207), +(126670, 'Maricela', 1983, 'F', 207), +(126671, 'Roxana', 1983, 'F', 207), +(126672, 'Cristal', 1983, 'F', 206), +(126673, 'Deirdre', 1983, 'F', 206), +(126674, 'Helena', 1983, 'F', 206), +(126675, 'Kali', 1983, 'F', 206), +(126676, 'Lily', 1983, 'F', 206), +(126677, 'Lynsey', 1983, 'F', 206), +(126678, 'Tammie', 1983, 'F', 206), +(126679, 'Candis', 1983, 'F', 205), +(126680, 'Shaina', 1983, 'F', 205), +(126681, 'Latanya', 1983, 'F', 204), +(126682, 'Wendi', 1983, 'F', 204), +(126683, 'Fatima', 1983, 'F', 203), +(126684, 'Siobhan', 1983, 'F', 203), +(126685, 'Cheyenne', 1983, 'F', 201), +(126686, 'Tisha', 1983, 'F', 201), +(126687, 'Juana', 1983, 'F', 200), +(126688, 'Mariana', 1983, 'F', 200), +(126689, 'Shavon', 1983, 'F', 200), +(126690, 'Sydney', 1983, 'F', 200), +(126691, 'Tamra', 1983, 'F', 200), +(126692, 'Louise', 1983, 'F', 198), +(126693, 'Giselle', 1983, 'F', 197), +(126694, 'Lizette', 1983, 'F', 196), +(126695, 'Hilda', 1983, 'F', 195), +(126696, 'Jeri', 1983, 'F', 195), +(126697, 'Rosalinda', 1983, 'F', 195), +(126698, 'Rosemarie', 1983, 'F', 195), +(126699, 'Stephaine', 1983, 'F', 195), +(126700, 'Margo', 1983, 'F', 194), +(126701, 'Shasta', 1983, 'F', 194), +(126702, 'Corrie', 1983, 'F', 193), +(126703, 'Kassie', 1983, 'F', 193), +(126704, 'Rikki', 1983, 'F', 193), +(126705, 'Sierra', 1983, 'F', 193), +(126706, 'Deena', 1983, 'F', 192), +(126707, 'Elaina', 1983, 'F', 192), +(126708, 'Melina', 1983, 'F', 192), +(126709, 'Daniella', 1983, 'F', 191), +(126710, 'Tess', 1983, 'F', 191), +(126711, 'Annemarie', 1983, 'F', 190), +(126712, 'Graciela', 1983, 'F', 190), +(126713, 'Griselda', 1983, 'F', 189), +(126714, 'Vicky', 1983, 'F', 189), +(126715, 'Jeanna', 1983, 'F', 188), +(126716, 'Kaci', 1983, 'F', 188), +(126717, 'Cecelia', 1983, 'F', 187), +(126718, 'Francine', 1983, 'F', 187), +(126719, 'Karyn', 1983, 'F', 187), +(126720, 'Loni', 1983, 'F', 187), +(126721, 'Afton', 1983, 'F', 186), +(126722, 'Andrew', 1983, 'F', 186), +(126723, 'Jeannine', 1983, 'F', 186), +(126724, 'Maegan', 1983, 'F', 186), +(126725, 'William', 1983, 'F', 186), +(126726, 'Angelia', 1983, 'F', 185), +(126727, 'Annmarie', 1983, 'F', 185), +(126728, 'Jaimie', 1983, 'F', 185), +(126729, 'Roxanna', 1983, 'F', 185), +(126730, 'Jenni', 1983, 'F', 184), +(126731, 'Kati', 1983, 'F', 184), +(126732, 'Lindy', 1983, 'F', 184), +(126733, 'Richelle', 1983, 'F', 184), +(126734, 'Shalonda', 1983, 'F', 184), +(126735, 'Stacia', 1983, 'F', 184), +(126736, 'Cory', 1983, 'F', 183), +(126737, 'Kristan', 1983, 'F', 183), +(126738, 'Marta', 1983, 'F', 183), +(126739, 'Shara', 1983, 'F', 183), +(126740, 'Falon', 1983, 'F', 182), +(126741, 'Hailey', 1983, 'F', 182), +(126742, 'Echo', 1983, 'F', 181), +(126743, 'June', 1983, 'F', 181), +(126744, 'Sherita', 1983, 'F', 181), +(126745, 'Valencia', 1983, 'F', 181), +(126746, 'Chloe', 1983, 'F', 180), +(126747, 'Corrine', 1983, 'F', 180), +(126748, 'Darci', 1983, 'F', 180), +(126749, 'Marian', 1983, 'F', 180), +(126750, 'Ronda', 1983, 'F', 180), +(126751, 'Shanita', 1983, 'F', 180), +(126752, 'Tabetha', 1983, 'F', 180), +(126753, 'Jeana', 1983, 'F', 179), +(126754, 'Mari', 1983, 'F', 179), +(126755, 'Stevie', 1983, 'F', 179), +(126756, 'Cathleen', 1983, 'F', 178), +(126757, 'Sondra', 1983, 'F', 178), +(126758, 'Colette', 1983, 'F', 177), +(126759, 'India', 1983, 'F', 177), +(126760, 'Jena', 1983, 'F', 177), +(126761, 'Jonathan', 1983, 'F', 177), +(126762, 'Liana', 1983, 'F', 177), +(126763, 'Malissa', 1983, 'F', 177), +(126764, 'Kourtney', 1983, 'F', 176), +(126765, 'Aurora', 1983, 'F', 175), +(126766, 'Charissa', 1983, 'F', 175), +(126767, 'Ciara', 1983, 'F', 175), +(126768, 'Shanta', 1983, 'F', 175), +(126769, 'Marion', 1983, 'F', 174), +(126770, 'Mellisa', 1983, 'F', 174), +(126771, 'Zoe', 1983, 'F', 174), +(126772, 'Chiquita', 1983, 'F', 173), +(126773, 'Dwan', 1983, 'F', 173), +(126774, 'Ivory', 1983, 'F', 173), +(126775, 'Jamila', 1983, 'F', 173), +(126776, 'Mellissa', 1983, 'F', 173), +(126777, 'Shante', 1983, 'F', 173), +(126778, 'Vickie', 1983, 'F', 173), +(126779, 'Aaron', 1983, 'F', 172), +(126780, 'Chantelle', 1983, 'F', 172), +(126781, 'Danica', 1983, 'F', 172), +(126782, 'Gena', 1983, 'F', 172), +(126783, 'Phyllis', 1983, 'F', 172), +(126784, 'Shonda', 1983, 'F', 171), +(126785, 'Stefani', 1983, 'F', 171), +(126786, 'Sue', 1983, 'F', 171), +(126787, 'Ami', 1983, 'F', 170), +(126788, 'Clare', 1983, 'F', 170), +(126789, 'Jesica', 1983, 'F', 170), +(126790, 'Nikole', 1983, 'F', 170), +(126791, 'Pearl', 1983, 'F', 170), +(126792, 'Britni', 1983, 'F', 169), +(126793, 'Eve', 1983, 'F', 169), +(126794, 'Lakeshia', 1983, 'F', 169), +(126795, 'Leilani', 1983, 'F', 169), +(126796, 'Quiana', 1983, 'F', 169), +(126797, 'Tristan', 1983, 'F', 169), +(126798, 'Eugenia', 1983, 'F', 168), +(126799, 'Dianne', 1983, 'F', 167), +(126800, 'Kiley', 1983, 'F', 167), +(126801, 'Lynne', 1983, 'F', 167), +(126802, 'Salina', 1983, 'F', 167), +(126803, 'Viviana', 1983, 'F', 167), +(126804, 'Bertha', 1983, 'F', 166), +(126805, 'Fawn', 1983, 'F', 166), +(126806, 'Hallie', 1983, 'F', 166), +(126807, 'Ashli', 1983, 'F', 165), +(126808, 'Juliet', 1983, 'F', 165), +(126809, 'Perla', 1983, 'F', 165), +(126810, 'Rebeca', 1983, 'F', 165), +(126811, 'Roseanna', 1983, 'F', 165), +(126812, 'Anthony', 1983, 'F', 164), +(126813, 'Kori', 1983, 'F', 164), +(126814, 'Shaneka', 1983, 'F', 164), +(126815, 'Alexia', 1983, 'F', 162), +(126816, 'Consuelo', 1983, 'F', 162), +(126817, 'Jazmin', 1983, 'F', 162), +(126818, 'Joelle', 1983, 'F', 162), +(126819, 'Johnna', 1983, 'F', 162), +(126820, 'Kandace', 1983, 'F', 162), +(126821, 'Micah', 1983, 'F', 162), +(126822, 'Paola', 1983, 'F', 162), +(126823, 'Kandi', 1983, 'F', 161), +(126824, 'Krysta', 1983, 'F', 161), +(126825, 'Starr', 1983, 'F', 161), +(126826, 'Susie', 1983, 'F', 161), +(126827, 'Ashlea', 1983, 'F', 160), +(126828, 'Chana', 1983, 'F', 160), +(126829, 'Cherish', 1983, 'F', 160), +(126830, 'Deanne', 1983, 'F', 160), +(126831, 'Kylee', 1983, 'F', 160), +(126832, 'Stephenie', 1983, 'F', 160), +(126833, 'Kirstin', 1983, 'F', 159), +(126834, 'Nathalie', 1983, 'F', 159), +(126835, 'Cameron', 1983, 'F', 158), +(126836, 'Carley', 1983, 'F', 158), +(126837, 'Harmony', 1983, 'F', 158), +(126838, 'Jada', 1983, 'F', 158), +(126839, 'Toccara', 1983, 'F', 158), +(126840, 'Brook', 1983, 'F', 157), +(126841, 'Caitlyn', 1983, 'F', 157), +(126842, 'Cathryn', 1983, 'F', 157), +(126843, 'Keely', 1983, 'F', 157), +(126844, 'Brian', 1983, 'F', 156), +(126845, 'Julianna', 1983, 'F', 156), +(126846, 'Caryn', 1983, 'F', 155), +(126847, 'Cassondra', 1983, 'F', 155), +(126848, 'Ella', 1983, 'F', 155), +(126849, 'Latoria', 1983, 'F', 155), +(126850, 'Lia', 1983, 'F', 155), +(126851, 'Rosalie', 1983, 'F', 155), +(126852, 'Therese', 1983, 'F', 155), +(126853, 'Bailey', 1983, 'F', 154), +(126854, 'Eric', 1983, 'F', 154), +(126855, 'Lawanda', 1983, 'F', 153), +(126856, 'Marisela', 1983, 'F', 153), +(126857, 'Valeria', 1983, 'F', 153), +(126858, 'Dionne', 1983, 'F', 152), +(126859, 'Ida', 1983, 'F', 152), +(126860, 'Iesha', 1983, 'F', 152), +(126861, 'Kacy', 1983, 'F', 152), +(126862, 'Kerrie', 1983, 'F', 152), +(126863, 'Reyna', 1983, 'F', 152), +(126864, 'Cody', 1983, 'F', 151), +(126865, 'Dixie', 1983, 'F', 151), +(126866, 'Jessi', 1983, 'F', 151), +(126867, 'Malia', 1983, 'F', 151), +(126868, 'Mona', 1983, 'F', 151), +(126869, 'Portia', 1983, 'F', 151), +(126870, 'Tamera', 1983, 'F', 151), +(126871, 'Tyesha', 1983, 'F', 151), +(126872, 'Davina', 1983, 'F', 150), +(126873, 'Kay', 1983, 'F', 150), +(126874, 'Maira', 1983, 'F', 150), +(126875, 'Rosalyn', 1983, 'F', 150), +(126876, 'Shantell', 1983, 'F', 150), +(126877, 'Suzanna', 1983, 'F', 150), +(126878, 'Tana', 1983, 'F', 150), +(126879, 'Alina', 1983, 'F', 149), +(126880, 'Lois', 1983, 'F', 149), +(126881, 'Meggan', 1983, 'F', 149), +(126882, 'Katheryn', 1983, 'F', 148), +(126883, 'Ursula', 1983, 'F', 148), +(126884, 'Eunice', 1983, 'F', 147), +(126885, 'Mai', 1983, 'F', 147), +(126886, 'Shakira', 1983, 'F', 147), +(126887, 'Shavonne', 1983, 'F', 147), +(126888, 'Susanne', 1983, 'F', 147), +(126889, 'Thomas', 1983, 'F', 147), +(126890, 'Vera', 1983, 'F', 147), +(126891, 'Ada', 1983, 'F', 146), +(126892, 'Chaya', 1983, 'F', 146), +(126893, 'Tawny', 1983, 'F', 146), +(126894, 'Anya', 1983, 'F', 145), +(126895, 'Lisette', 1983, 'F', 145), +(126896, 'Kevin', 1983, 'F', 144), +(126897, 'Magdalena', 1983, 'F', 144), +(126898, 'Bernice', 1983, 'F', 143), +(126899, 'Jan', 1983, 'F', 143), +(126900, 'Karie', 1983, 'F', 143), +(126901, 'Nicki', 1983, 'F', 143), +(126902, 'Latoyia', 1983, 'F', 142), +(126903, 'Darcie', 1983, 'F', 141), +(126904, 'Shanon', 1983, 'F', 141), +(126905, 'Violet', 1983, 'F', 141), +(126906, 'Ebonie', 1983, 'F', 140), +(126907, 'Florence', 1983, 'F', 140), +(126908, 'Josefina', 1983, 'F', 140), +(126909, 'Lorie', 1983, 'F', 140), +(126910, 'Rhea', 1983, 'F', 140), +(126911, 'Shanell', 1983, 'F', 140), +(126912, 'Shena', 1983, 'F', 140), +(126913, 'Kesha', 1983, 'F', 139), +(126914, 'Sommer', 1983, 'F', 139), +(126915, 'Yasmin', 1983, 'F', 139), +(126916, 'Chantal', 1983, 'F', 138), +(126917, 'Keli', 1983, 'F', 138), +(126918, 'Kiana', 1983, 'F', 138), +(126919, 'Luisa', 1983, 'F', 138), +(126920, 'Marquitta', 1983, 'F', 138), +(126921, 'Mildred', 1983, 'F', 138), +(126922, 'Antionette', 1983, 'F', 137), +(126923, 'Arianna', 1983, 'F', 137), +(126924, 'Chanelle', 1983, 'F', 137), +(126925, 'Denisha', 1983, 'F', 137), +(126926, 'Elana', 1983, 'F', 137), +(126927, 'Roseann', 1983, 'F', 137), +(126928, 'Adria', 1983, 'F', 136), +(126929, 'Alycia', 1983, 'F', 136), +(126930, 'Letitia', 1983, 'F', 136), +(126931, 'Marguita', 1983, 'F', 136), +(126932, 'Natosha', 1983, 'F', 136), +(126933, 'Nikia', 1983, 'F', 136), +(126934, 'Sharita', 1983, 'F', 136), +(126935, 'Tyra', 1983, 'F', 136), +(126936, 'Leia', 1983, 'F', 135), +(126937, 'Nicholas', 1983, 'F', 135), +(126938, 'Ayesha', 1983, 'F', 134), +(126939, 'Damaris', 1983, 'F', 134), +(126940, 'Starla', 1983, 'F', 134), +(126941, 'Latia', 1983, 'F', 133), +(126942, 'Mckenzie', 1983, 'F', 133), +(126943, 'Niki', 1983, 'F', 133), +(126944, 'Rae', 1983, 'F', 133), +(126945, 'Sophie', 1983, 'F', 133), +(126946, 'Tammi', 1983, 'F', 133), +(126947, 'Adam', 1983, 'F', 132), +(126948, 'Angeline', 1983, 'F', 132), +(126949, 'Brittani', 1983, 'F', 132), +(126950, 'Felecia', 1983, 'F', 132), +(126951, 'Greta', 1983, 'F', 132), +(126952, 'Gwen', 1983, 'F', 132), +(126953, 'Ivette', 1983, 'F', 132), +(126954, 'Janessa', 1983, 'F', 132), +(126955, 'Samatha', 1983, 'F', 132), +(126956, 'Steven', 1983, 'F', 132), +(126957, 'Tyler', 1983, 'F', 132), +(126958, 'Kenyatta', 1983, 'F', 131), +(126959, 'Luisana', 1983, 'F', 131), +(126960, 'Marybeth', 1983, 'F', 131), +(126961, 'Rosie', 1983, 'F', 131), +(126962, 'Stephani', 1983, 'F', 131), +(126963, 'Camilla', 1983, 'F', 130), +(126964, 'Contessa', 1983, 'F', 130), +(126965, 'Kasandra', 1983, 'F', 130), +(126966, 'Lina', 1983, 'F', 130), +(126967, 'Shira', 1983, 'F', 130), +(126968, 'Tianna', 1983, 'F', 130), +(126969, 'Aida', 1983, 'F', 129), +(126970, 'Dusty', 1983, 'F', 129), +(126971, 'Elicia', 1983, 'F', 129), +(126972, 'Joanie', 1983, 'F', 129), +(126973, 'Kristel', 1983, 'F', 129), +(126974, 'Lynnette', 1983, 'F', 129), +(126975, 'Nellie', 1983, 'F', 129), +(126976, 'Shellie', 1983, 'F', 129), +(126977, 'Annamarie', 1983, 'F', 128), +(126978, 'Carlie', 1983, 'F', 128), +(126979, 'Christiana', 1983, 'F', 128), +(126980, 'May', 1983, 'F', 128), +(126981, 'Emilia', 1983, 'F', 127), +(126982, 'Joleen', 1983, 'F', 127), +(126983, 'Leandra', 1983, 'F', 127), +(126984, 'Leona', 1983, 'F', 127), +(126985, 'Nicolle', 1983, 'F', 127), +(126986, 'Richard', 1983, 'F', 127), +(126987, 'Tawana', 1983, 'F', 127), +(126988, 'Amberly', 1983, 'F', 126), +(126989, 'Jayne', 1983, 'F', 126), +(126990, 'Sunny', 1983, 'F', 126), +(126991, 'Sunshine', 1983, 'F', 126), +(126992, 'Tamar', 1983, 'F', 126), +(126993, 'Tiesha', 1983, 'F', 126), +(126994, 'Alesia', 1983, 'F', 125), +(126995, 'Dorian', 1983, 'F', 125), +(126996, 'Esperanza', 1983, 'F', 125), +(126997, 'Jewel', 1983, 'F', 125), +(126998, 'Latricia', 1983, 'F', 125), +(126999, 'Sharee', 1983, 'F', 125), +(127000, 'Talisha', 1983, 'F', 125), +(127001, 'Timothy', 1983, 'F', 125), +(127002, 'Anabel', 1983, 'F', 124), +(127003, 'Bree', 1983, 'F', 124), +(127004, 'Lucille', 1983, 'F', 124), +(127005, 'Francisca', 1983, 'F', 123), +(127006, 'Lila', 1983, 'F', 123), +(127007, 'Marguerite', 1983, 'F', 123), +(127008, 'Brigette', 1983, 'F', 122), +(127009, 'Dannielle', 1983, 'F', 122), +(127010, 'Farrah', 1983, 'F', 122), +(127011, 'Kasie', 1983, 'F', 122), +(127012, 'Charles', 1983, 'F', 121), +(127013, 'Danna', 1983, 'F', 121), +(127014, 'Dulce', 1983, 'F', 121), +(127015, 'Latesha', 1983, 'F', 121), +(127016, 'Margie', 1983, 'F', 121), +(127017, 'Shanelle', 1983, 'F', 121), +(127018, 'Shelia', 1983, 'F', 121), +(127019, 'Brigitte', 1983, 'F', 120), +(127020, 'Doreen', 1983, 'F', 120), +(127021, 'Elvira', 1983, 'F', 120), +(127022, 'Jammie', 1983, 'F', 120), +(127023, 'Shannan', 1983, 'F', 120), +(127024, 'Tiffaney', 1983, 'F', 120), +(127025, 'Jeanie', 1983, 'F', 119), +(127026, 'Katina', 1983, 'F', 119), +(127027, 'Mindi', 1983, 'F', 119), +(127028, 'Susannah', 1983, 'F', 119), +(127029, 'Alysha', 1983, 'F', 118), +(127030, 'Lilia', 1983, 'F', 118), +(127031, 'Renata', 1983, 'F', 118), +(127032, 'Rosario', 1983, 'F', 118), +(127033, 'Shea', 1983, 'F', 118), +(127034, 'Thelma', 1983, 'F', 118), +(127035, 'Chante', 1983, 'F', 117), +(127036, 'Cherise', 1983, 'F', 117), +(127037, 'Chrissy', 1983, 'F', 117), +(127038, 'Karly', 1983, 'F', 117), +(127039, 'Lashawn', 1983, 'F', 117), +(127040, 'Michell', 1983, 'F', 117), +(127041, 'Reina', 1983, 'F', 117), +(127042, 'Alysia', 1983, 'F', 116), +(127043, 'Aracely', 1983, 'F', 116), +(127044, 'Catalina', 1983, 'F', 116), +(127045, 'Francis', 1983, 'F', 116), +(127046, 'Ginny', 1983, 'F', 116), +(127047, 'Sarita', 1983, 'F', 116), +(127048, 'Vanesa', 1983, 'F', 116), +(127049, 'Alena', 1983, 'F', 115), +(127050, 'Cristen', 1983, 'F', 115), +(127051, 'Dalia', 1983, 'F', 115), +(127052, 'Jaqueline', 1983, 'F', 115), +(127053, 'Jerri', 1983, 'F', 115), +(127054, 'Kelsie', 1983, 'F', 115), +(127055, 'Lissette', 1983, 'F', 115), +(127056, 'Louisa', 1983, 'F', 115), +(127057, 'Carli', 1983, 'F', 114), +(127058, 'Erinn', 1983, 'F', 114), +(127059, 'Gabriella', 1983, 'F', 114), +(127060, 'Jeffrey', 1983, 'F', 114), +(127061, 'Shaquita', 1983, 'F', 114), +(127062, 'Shenika', 1983, 'F', 114), +(127063, 'Chanda', 1983, 'F', 113), +(127064, 'Sandi', 1983, 'F', 113), +(127065, 'Shaunna', 1983, 'F', 113), +(127066, 'Tawanna', 1983, 'F', 113), +(127067, 'Alia', 1983, 'F', 112), +(127068, 'Danyelle', 1983, 'F', 112), +(127069, 'Gayle', 1983, 'F', 112), +(127070, 'Kandis', 1983, 'F', 112), +(127071, 'Lindsy', 1983, 'F', 112), +(127072, 'Maren', 1983, 'F', 112), +(127073, 'Nichelle', 1983, 'F', 112), +(127074, 'Renita', 1983, 'F', 112), +(127075, 'Star', 1983, 'F', 112), +(127076, 'Delores', 1983, 'F', 111), +(127077, 'Felisha', 1983, 'F', 111), +(127078, 'Kortney', 1983, 'F', 111), +(127079, 'Mariel', 1983, 'F', 111), +(127080, 'Sarina', 1983, 'F', 111), +(127081, 'Aleshia', 1983, 'F', 110), +(127082, 'Bettina', 1983, 'F', 110), +(127083, 'Maxine', 1983, 'F', 110), +(127084, 'Nikita', 1983, 'F', 110), +(127085, 'Patty', 1983, 'F', 110), +(127086, 'Trinity', 1983, 'F', 110), +(127087, 'Alishia', 1983, 'F', 109), +(127088, 'Asha', 1983, 'F', 109), +(127089, 'Paris', 1983, 'F', 109), +(127090, 'Skye', 1983, 'F', 109), +(127091, 'Stephany', 1983, 'F', 109), +(127092, 'Tiffiny', 1983, 'F', 109), +(127093, 'Adina', 1983, 'F', 108), +(127094, 'Ava', 1983, 'F', 108), +(127095, 'Carole', 1983, 'F', 108), +(127096, 'Lakia', 1983, 'F', 108), +(127097, 'Lidia', 1983, 'F', 108), +(127098, 'Shawanda', 1983, 'F', 108), +(127099, 'Charisse', 1983, 'F', 107), +(127100, 'Danae', 1983, 'F', 107), +(127101, 'Kaila', 1983, 'F', 107), +(127102, 'Kellee', 1983, 'F', 107), +(127103, 'Melodie', 1983, 'F', 107), +(127104, 'Raina', 1983, 'F', 107), +(127105, 'Angelita', 1983, 'F', 106), +(127106, 'Ariane', 1983, 'F', 106), +(127107, 'Cassi', 1983, 'F', 106), +(127108, 'Kenisha', 1983, 'F', 106), +(127109, 'Nichol', 1983, 'F', 106), +(127110, 'Eryn', 1983, 'F', 105), +(127111, 'Kristian', 1983, 'F', 105), +(127112, 'Micaela', 1983, 'F', 105), +(127113, 'Rashida', 1983, 'F', 105), +(127114, 'Sharlene', 1983, 'F', 105), +(127115, 'Suzette', 1983, 'F', 105), +(127116, 'Anika', 1983, 'F', 104), +(127117, 'Brie', 1983, 'F', 104), +(127118, 'Essence', 1983, 'F', 104), +(127119, 'Fabiola', 1983, 'F', 104), +(127120, 'Juliette', 1983, 'F', 104), +(127121, 'Lakiesha', 1983, 'F', 104), +(127122, 'Leighann', 1983, 'F', 104), +(127123, 'Lela', 1983, 'F', 104), +(127124, 'Milagros', 1983, 'F', 104), +(127125, 'Tamisha', 1983, 'F', 104), +(127126, 'Tashina', 1983, 'F', 104), +(127127, 'Bambi', 1983, 'F', 103), +(127128, 'Chantell', 1983, 'F', 103), +(127129, 'Davida', 1983, 'F', 103), +(127130, 'Elsie', 1983, 'F', 103), +(127131, 'Geraldine', 1983, 'F', 103), +(127132, 'Julissa', 1983, 'F', 103), +(127133, 'Marcela', 1983, 'F', 103), +(127134, 'Shantelle', 1983, 'F', 103), +(127135, 'Arianne', 1983, 'F', 102), +(127136, 'Georgette', 1983, 'F', 102), +(127137, 'Jacquelin', 1983, 'F', 102), +(127138, 'Janis', 1983, 'F', 102), +(127139, 'Karri', 1983, 'F', 102), +(127140, 'Krysten', 1983, 'F', 102), +(127141, 'Laquisha', 1983, 'F', 102), +(127142, 'Nia', 1983, 'F', 102), +(127143, 'Tawanda', 1983, 'F', 102), +(127144, 'Toya', 1983, 'F', 102), +(127145, 'Ilana', 1983, 'F', 101), +(127146, 'Joi', 1983, 'F', 101), +(127147, 'Lenora', 1983, 'F', 101), +(127148, 'Mariela', 1983, 'F', 101), +(127149, 'Shandra', 1983, 'F', 101), +(127150, 'Adele', 1983, 'F', 100), +(127151, 'Charla', 1983, 'F', 100), +(127152, 'Jeniffer', 1983, 'F', 100), +(127153, 'Magen', 1983, 'F', 100), +(127154, 'Nakisha', 1983, 'F', 100), +(127155, 'Samara', 1983, 'F', 100), +(127156, 'Shandi', 1983, 'F', 100), +(127157, 'Shaniqua', 1983, 'F', 100), +(127158, 'Michael', 1983, 'M', 67986), +(127159, 'Christopher', 1983, 'M', 59325), +(127160, 'Matthew', 1983, 'M', 50202), +(127161, 'David', 1983, 'M', 39192), +(127162, 'Joshua', 1983, 'M', 36704), +(127163, 'James', 1983, 'M', 36336), +(127164, 'Jason', 1983, 'M', 35105), +(127165, 'Daniel', 1983, 'M', 34739), +(127166, 'John', 1983, 'M', 33142), +(127167, 'Robert', 1983, 'M', 32739), +(127168, 'Joseph', 1983, 'M', 30447), +(127169, 'Justin', 1983, 'M', 28293), +(127170, 'Ryan', 1983, 'M', 27835), +(127171, 'Brian', 1983, 'M', 26060), +(127172, 'Andrew', 1983, 'M', 25568), +(127173, 'William', 1983, 'M', 25379), +(127174, 'Brandon', 1983, 'M', 23515), +(127175, 'Adam', 1983, 'M', 23480), +(127176, 'Jonathan', 1983, 'M', 22742), +(127177, 'Eric', 1983, 'M', 20337), +(127178, 'Nicholas', 1983, 'M', 19889), +(127179, 'Anthony', 1983, 'M', 19828), +(127180, 'Steven', 1983, 'M', 18307), +(127181, 'Thomas', 1983, 'M', 17559), +(127182, 'Kevin', 1983, 'M', 17372), +(127183, 'Timothy', 1983, 'M', 16354), +(127184, 'Richard', 1983, 'M', 15890), +(127185, 'Jeffrey', 1983, 'M', 15647), +(127186, 'Aaron', 1983, 'M', 14455), +(127187, 'Jeremy', 1983, 'M', 14255), +(127188, 'Mark', 1983, 'M', 13805), +(127189, 'Benjamin', 1983, 'M', 13281), +(127190, 'Charles', 1983, 'M', 13209), +(127191, 'Kyle', 1983, 'M', 12371), +(127192, 'Stephen', 1983, 'M', 11558), +(127193, 'Jacob', 1983, 'M', 10993), +(127194, 'Patrick', 1983, 'M', 10872), +(127195, 'Scott', 1983, 'M', 10848), +(127196, 'Paul', 1983, 'M', 10820), +(127197, 'Nathan', 1983, 'M', 10548), +(127198, 'Travis', 1983, 'M', 10474), +(127199, 'Gregory', 1983, 'M', 9976), +(127200, 'Dustin', 1983, 'M', 9681), +(127201, 'Sean', 1983, 'M', 9613), +(127202, 'Kenneth', 1983, 'M', 8967), +(127203, 'Jesse', 1983, 'M', 8466), +(127204, 'Bryan', 1983, 'M', 8189), +(127205, 'Jose', 1983, 'M', 8069), +(127206, 'Chad', 1983, 'M', 7384), +(127207, 'Zachary', 1983, 'M', 7303), +(127208, 'Derek', 1983, 'M', 6982), +(127209, 'Bradley', 1983, 'M', 6738), +(127210, 'Shawn', 1983, 'M', 6357), +(127211, 'Samuel', 1983, 'M', 6193), +(127212, 'Edward', 1983, 'M', 5998), +(127213, 'Jared', 1983, 'M', 5849), +(127214, 'Tyler', 1983, 'M', 5818), +(127215, 'Marcus', 1983, 'M', 5630), +(127216, 'Peter', 1983, 'M', 5479), +(127217, 'Donald', 1983, 'M', 5327), +(127218, 'Keith', 1983, 'M', 5315), +(127219, 'Juan', 1983, 'M', 4892), +(127220, 'Alexander', 1983, 'M', 4801), +(127221, 'Ronald', 1983, 'M', 4705), +(127222, 'George', 1983, 'M', 4487), +(127223, 'Phillip', 1983, 'M', 4462), +(127224, 'Joel', 1983, 'M', 4341), +(127225, 'Gary', 1983, 'M', 4271), +(127226, 'Douglas', 1983, 'M', 4180), +(127227, 'Craig', 1983, 'M', 4087), +(127228, 'Jordan', 1983, 'M', 4012), +(127229, 'Raymond', 1983, 'M', 4009), +(127230, 'Brett', 1983, 'M', 3977), +(127231, 'Corey', 1983, 'M', 3967), +(127232, 'Carlos', 1983, 'M', 3911), +(127233, 'Antonio', 1983, 'M', 3679), +(127234, 'Ian', 1983, 'M', 3670), +(127235, 'Derrick', 1983, 'M', 3657), +(127236, 'Nathaniel', 1983, 'M', 3642), +(127237, 'Erik', 1983, 'M', 3635), +(127238, 'Cody', 1983, 'M', 3509), +(127239, 'Philip', 1983, 'M', 3484), +(127240, 'Cory', 1983, 'M', 3401), +(127241, 'Shane', 1983, 'M', 3400), +(127242, 'Larry', 1983, 'M', 3381), +(127243, 'Frank', 1983, 'M', 3359), +(127244, 'Todd', 1983, 'M', 3333), +(127245, 'Luis', 1983, 'M', 3316), +(127246, 'Gabriel', 1983, 'M', 3265), +(127247, 'Casey', 1983, 'M', 3232), +(127248, 'Jeffery', 1983, 'M', 3154), +(127249, 'Dennis', 1983, 'M', 3046), +(127250, 'Evan', 1983, 'M', 3045), +(127251, 'Brent', 1983, 'M', 3026), +(127252, 'Victor', 1983, 'M', 2968), +(127253, 'Randy', 1983, 'M', 2918), +(127254, 'Vincent', 1983, 'M', 2894), +(127255, 'Seth', 1983, 'M', 2852), +(127256, 'Curtis', 1983, 'M', 2847), +(127257, 'Jeremiah', 1983, 'M', 2846), +(127258, 'Wesley', 1983, 'M', 2789), +(127259, 'Alan', 1983, 'M', 2768), +(127260, 'Jerry', 1983, 'M', 2756), +(127261, 'Russell', 1983, 'M', 2743), +(127262, 'Luke', 1983, 'M', 2648), +(127263, 'Carl', 1983, 'M', 2604), +(127264, 'Adrian', 1983, 'M', 2543), +(127265, 'Jesus', 1983, 'M', 2507), +(127266, 'Blake', 1983, 'M', 2496), +(127267, 'Terry', 1983, 'M', 2469), +(127268, 'Shaun', 1983, 'M', 2465), +(127269, 'Christian', 1983, 'M', 2416), +(127270, 'Troy', 1983, 'M', 2404), +(127271, 'Miguel', 1983, 'M', 2378), +(127272, 'Mario', 1983, 'M', 2372), +(127273, 'Johnny', 1983, 'M', 2364), +(127274, 'Lucas', 1983, 'M', 2359), +(127275, 'Bobby', 1983, 'M', 2356), +(127276, 'Tony', 1983, 'M', 2351), +(127277, 'Allen', 1983, 'M', 2245), +(127278, 'Ricardo', 1983, 'M', 2176), +(127279, 'Martin', 1983, 'M', 2172), +(127280, 'Alex', 1983, 'M', 2152), +(127281, 'Billy', 1983, 'M', 2149), +(127282, 'Marc', 1983, 'M', 2092), +(127283, 'Andre', 1983, 'M', 2085), +(127284, 'Jimmy', 1983, 'M', 2085), +(127285, 'Ricky', 1983, 'M', 2082), +(127286, 'Randall', 1983, 'M', 2064), +(127287, 'Trevor', 1983, 'M', 2052), +(127288, 'Austin', 1983, 'M', 2044), +(127289, 'Lawrence', 1983, 'M', 2027), +(127290, 'Danny', 1983, 'M', 2017), +(127291, 'Kristopher', 1983, 'M', 2011), +(127292, 'Lance', 1983, 'M', 1962), +(127293, 'Henry', 1983, 'M', 1949), +(127294, 'Johnathan', 1983, 'M', 1925), +(127295, 'Lee', 1983, 'M', 1917), +(127296, 'Micheal', 1983, 'M', 1909), +(127297, 'Jorge', 1983, 'M', 1905), +(127298, 'Clinton', 1983, 'M', 1900), +(127299, 'Devin', 1983, 'M', 1892), +(127300, 'Mitchell', 1983, 'M', 1878), +(127301, 'Manuel', 1983, 'M', 1869), +(127302, 'Roger', 1983, 'M', 1867), +(127303, 'Mathew', 1983, 'M', 1866), +(127304, 'Albert', 1983, 'M', 1824), +(127305, 'Chase', 1983, 'M', 1822), +(127306, 'Jon', 1983, 'M', 1821), +(127307, 'Francisco', 1983, 'M', 1819), +(127308, 'Isaac', 1983, 'M', 1792), +(127309, 'Roberto', 1983, 'M', 1772), +(127310, 'Jamie', 1983, 'M', 1770), +(127311, 'Walter', 1983, 'M', 1767), +(127312, 'Willie', 1983, 'M', 1762), +(127313, 'Louis', 1983, 'M', 1761), +(127314, 'Arthur', 1983, 'M', 1745), +(127315, 'Clayton', 1983, 'M', 1727), +(127316, 'Caleb', 1983, 'M', 1712), +(127317, 'Jonathon', 1983, 'M', 1693), +(127318, 'Rodney', 1983, 'M', 1693), +(127319, 'Maurice', 1983, 'M', 1684), +(127320, 'Joe', 1983, 'M', 1613), +(127321, 'Darren', 1983, 'M', 1598), +(127322, 'Jermaine', 1983, 'M', 1562), +(127323, 'Colin', 1983, 'M', 1557), +(127324, 'Grant', 1983, 'M', 1551), +(127325, 'Gerald', 1983, 'M', 1550), +(127326, 'Jay', 1983, 'M', 1539), +(127327, 'Noah', 1983, 'M', 1538), +(127328, 'Wayne', 1983, 'M', 1530), +(127329, 'Jack', 1983, 'M', 1522), +(127330, 'Garrett', 1983, 'M', 1516), +(127331, 'Ruben', 1983, 'M', 1493), +(127332, 'Brad', 1983, 'M', 1473), +(127333, 'Roy', 1983, 'M', 1452), +(127334, 'Cameron', 1983, 'M', 1449), +(127335, 'Bruce', 1983, 'M', 1437), +(127336, 'Frederick', 1983, 'M', 1435), +(127337, 'Calvin', 1983, 'M', 1429), +(127338, 'Javier', 1983, 'M', 1419), +(127339, 'Drew', 1983, 'M', 1376), +(127340, 'Hector', 1983, 'M', 1369), +(127341, 'Oscar', 1983, 'M', 1369), +(127342, 'Angel', 1983, 'M', 1348), +(127343, 'Ross', 1983, 'M', 1344), +(127344, 'Alejandro', 1983, 'M', 1333), +(127345, 'Darrell', 1983, 'M', 1333), +(127346, 'Geoffrey', 1983, 'M', 1320), +(127347, 'Fernando', 1983, 'M', 1281), +(127348, 'Brendan', 1983, 'M', 1273), +(127349, 'Omar', 1983, 'M', 1269), +(127350, 'Reginald', 1983, 'M', 1268), +(127351, 'Jerome', 1983, 'M', 1231), +(127352, 'Neil', 1983, 'M', 1227), +(127353, 'Jaime', 1983, 'M', 1222), +(127354, 'Edwin', 1983, 'M', 1195), +(127355, 'Terrance', 1983, 'M', 1195), +(127356, 'Ernest', 1983, 'M', 1192), +(127357, 'Ronnie', 1983, 'M', 1188), +(127358, 'Rafael', 1983, 'M', 1184), +(127359, 'Marvin', 1983, 'M', 1173), +(127360, 'Eddie', 1983, 'M', 1169), +(127361, 'Sergio', 1983, 'M', 1163), +(127362, 'Jessie', 1983, 'M', 1161), +(127363, 'Theodore', 1983, 'M', 1158), +(127364, 'Tyrone', 1983, 'M', 1146), +(127365, 'Raul', 1983, 'M', 1141), +(127366, 'Cole', 1983, 'M', 1113), +(127367, 'Leonard', 1983, 'M', 1101), +(127368, 'Eugene', 1983, 'M', 1100), +(127369, 'Dale', 1983, 'M', 1095), +(127370, 'Pedro', 1983, 'M', 1088), +(127371, 'Ramon', 1983, 'M', 1064), +(127372, 'Steve', 1983, 'M', 1064), +(127373, 'Dominic', 1983, 'M', 1056), +(127374, 'Taylor', 1983, 'M', 1055), +(127375, 'Kelly', 1983, 'M', 1054), +(127376, 'Ivan', 1983, 'M', 1041), +(127377, 'Micah', 1983, 'M', 1039), +(127378, 'Byron', 1983, 'M', 1031), +(127379, 'Glenn', 1983, 'M', 1014), +(127380, 'Terrence', 1983, 'M', 1008), +(127381, 'Tommy', 1983, 'M', 1006), +(127382, 'Barry', 1983, 'M', 993), +(127383, 'Alberto', 1983, 'M', 981), +(127384, 'Armando', 1983, 'M', 978), +(127385, 'Clifford', 1983, 'M', 975), +(127386, 'Kurt', 1983, 'M', 974), +(127387, 'Darryl', 1983, 'M', 973), +(127388, 'Eduardo', 1983, 'M', 972), +(127389, 'Levi', 1983, 'M', 961), +(127390, 'Jarrod', 1983, 'M', 960), +(127391, 'Francis', 1983, 'M', 959), +(127392, 'Dwayne', 1983, 'M', 955), +(127393, 'Melvin', 1983, 'M', 947), +(127394, 'Nicolas', 1983, 'M', 942), +(127395, 'Spencer', 1983, 'M', 941), +(127396, 'Harold', 1983, 'M', 940), +(127397, 'Andres', 1983, 'M', 938), +(127398, 'Julian', 1983, 'M', 931), +(127399, 'Karl', 1983, 'M', 913), +(127400, 'Stanley', 1983, 'M', 906), +(127401, 'Marco', 1983, 'M', 904), +(127402, 'Edgar', 1983, 'M', 896), +(127403, 'Shannon', 1983, 'M', 882), +(127404, 'Erick', 1983, 'M', 862), +(127405, 'Tristan', 1983, 'M', 855), +(127406, 'Ralph', 1983, 'M', 845), +(127407, 'Andy', 1983, 'M', 836), +(127408, 'Marshall', 1983, 'M', 833), +(127409, 'Dane', 1983, 'M', 831), +(127410, 'Tyson', 1983, 'M', 829), +(127411, 'Preston', 1983, 'M', 819), +(127412, 'Warren', 1983, 'M', 816), +(127413, 'Rene', 1983, 'M', 811), +(127414, 'Clint', 1983, 'M', 810), +(127415, 'Alfred', 1983, 'M', 807), +(127416, 'Cedric', 1983, 'M', 804), +(127417, 'Clarence', 1983, 'M', 795), +(127418, 'Joey', 1983, 'M', 791), +(127419, 'Damien', 1983, 'M', 789), +(127420, 'Logan', 1983, 'M', 788), +(127421, 'Cesar', 1983, 'M', 786), +(127422, 'Leon', 1983, 'M', 784), +(127423, 'Dylan', 1983, 'M', 777), +(127424, 'Enrique', 1983, 'M', 775), +(127425, 'Jake', 1983, 'M', 772), +(127426, 'Abraham', 1983, 'M', 770), +(127427, 'Earl', 1983, 'M', 768), +(127428, 'Julio', 1983, 'M', 768), +(127429, 'Ray', 1983, 'M', 764), +(127430, 'Gilbert', 1983, 'M', 757), +(127431, 'Antoine', 1983, 'M', 755), +(127432, 'Harry', 1983, 'M', 753), +(127433, 'Devon', 1983, 'M', 750), +(127434, 'Dean', 1983, 'M', 747), +(127435, 'Franklin', 1983, 'M', 738), +(127436, 'Quentin', 1983, 'M', 735), +(127437, 'Ethan', 1983, 'M', 732), +(127438, 'Arturo', 1983, 'M', 729), +(127439, 'Howard', 1983, 'M', 727), +(127440, 'Emmanuel', 1983, 'M', 719), +(127441, 'Alfredo', 1983, 'M', 716), +(127442, 'Gerardo', 1983, 'M', 715), +(127443, 'Terrell', 1983, 'M', 713), +(127444, 'Alvin', 1983, 'M', 707), +(127445, 'Bryce', 1983, 'M', 707), +(127446, 'Courtney', 1983, 'M', 707), +(127447, 'Bryant', 1983, 'M', 693), +(127448, 'Gavin', 1983, 'M', 690), +(127449, 'Demetrius', 1983, 'M', 688), +(127450, 'Orlando', 1983, 'M', 688), +(127451, 'Roderick', 1983, 'M', 681), +(127452, 'Marcos', 1983, 'M', 672), +(127453, 'Elijah', 1983, 'M', 671), +(127454, 'Kelvin', 1983, 'M', 664), +(127455, 'Lorenzo', 1983, 'M', 662), +(127456, 'Alexis', 1983, 'M', 658), +(127457, 'Colby', 1983, 'M', 655), +(127458, 'Daryl', 1983, 'M', 655), +(127459, 'Heath', 1983, 'M', 653), +(127460, 'Chris', 1983, 'M', 647), +(127461, 'Nickolas', 1983, 'M', 647), +(127462, 'Quinton', 1983, 'M', 646), +(127463, 'Darnell', 1983, 'M', 644), +(127464, 'Bernard', 1983, 'M', 641), +(127465, 'Branden', 1983, 'M', 641), +(127466, 'Ernesto', 1983, 'M', 641), +(127467, 'Stuart', 1983, 'M', 636), +(127468, 'Kirk', 1983, 'M', 632), +(127469, 'Nelson', 1983, 'M', 629), +(127470, 'Norman', 1983, 'M', 626), +(127471, 'Morgan', 1983, 'M', 622), +(127472, 'Salvador', 1983, 'M', 618), +(127473, 'Angelo', 1983, 'M', 617), +(127474, 'Clifton', 1983, 'M', 610), +(127475, 'Damon', 1983, 'M', 602), +(127476, 'Wade', 1983, 'M', 600), +(127477, 'Lamar', 1983, 'M', 599), +(127478, 'Ashley', 1983, 'M', 594), +(127479, 'Lewis', 1983, 'M', 593), +(127480, 'Israel', 1983, 'M', 590), +(127481, 'Allan', 1983, 'M', 589), +(127482, 'Elliott', 1983, 'M', 582), +(127483, 'Landon', 1983, 'M', 580), +(127484, 'Julius', 1983, 'M', 579), +(127485, 'Jamaal', 1983, 'M', 578), +(127486, 'Neal', 1983, 'M', 574), +(127487, 'Elliot', 1983, 'M', 562), +(127488, 'Vernon', 1983, 'M', 560), +(127489, 'Johnathon', 1983, 'M', 559), +(127490, 'Beau', 1983, 'M', 556), +(127491, 'Isaiah', 1983, 'M', 555), +(127492, 'Kent', 1983, 'M', 555), +(127493, 'Charlie', 1983, 'M', 553), +(127494, 'Kenny', 1983, 'M', 548), +(127495, 'Fred', 1983, 'M', 547), +(127496, 'Damian', 1983, 'M', 542), +(127497, 'Dwight', 1983, 'M', 536), +(127498, 'Rory', 1983, 'M', 535), +(127499, 'Duane', 1983, 'M', 530), +(127500, 'Max', 1983, 'M', 530), +(127501, 'Glen', 1983, 'M', 527), +(127502, 'Graham', 1983, 'M', 525), +(127503, 'Terence', 1983, 'M', 524), +(127504, 'Leroy', 1983, 'M', 523), +(127505, 'Trent', 1983, 'M', 523), +(127506, 'Eli', 1983, 'M', 519), +(127507, 'Lonnie', 1983, 'M', 519), +(127508, 'Brady', 1983, 'M', 503), +(127509, 'Bret', 1983, 'M', 503), +(127510, 'Rudy', 1983, 'M', 503), +(127511, 'Jayson', 1983, 'M', 501), +(127512, 'Rickey', 1983, 'M', 501), +(127513, 'Derick', 1983, 'M', 499), +(127514, 'Gordon', 1983, 'M', 496), +(127515, 'Fredrick', 1983, 'M', 493), +(127516, 'Collin', 1983, 'M', 492), +(127517, 'Felix', 1983, 'M', 489), +(127518, 'Darius', 1983, 'M', 487), +(127519, 'Rocky', 1983, 'M', 486), +(127520, 'Herbert', 1983, 'M', 481), +(127521, 'Bradford', 1983, 'M', 480), +(127522, 'Xavier', 1983, 'M', 480), +(127523, 'Jamar', 1983, 'M', 479), +(127524, 'Don', 1983, 'M', 477), +(127525, 'Dana', 1983, 'M', 476), +(127526, 'Pablo', 1983, 'M', 476), +(127527, 'Rodolfo', 1983, 'M', 475), +(127528, 'Lloyd', 1983, 'M', 471), +(127529, 'Kendrick', 1983, 'M', 468), +(127530, 'Jamal', 1983, 'M', 466), +(127531, 'Felipe', 1983, 'M', 463), +(127532, 'Simon', 1983, 'M', 463), +(127533, 'Noel', 1983, 'M', 462), +(127534, 'Dallas', 1983, 'M', 459), +(127535, 'Jarvis', 1983, 'M', 453), +(127536, 'Nolan', 1983, 'M', 448), +(127537, 'Perry', 1983, 'M', 444), +(127538, 'Zachariah', 1983, 'M', 441), +(127539, 'Brock', 1983, 'M', 437), +(127540, 'Rick', 1983, 'M', 436), +(127541, 'Jarrett', 1983, 'M', 434), +(127542, 'Oliver', 1983, 'M', 433), +(127543, 'Ben', 1983, 'M', 430), +(127544, 'Darin', 1983, 'M', 430), +(127545, 'Trenton', 1983, 'M', 429), +(127546, 'Leo', 1983, 'M', 428), +(127547, 'Rolando', 1983, 'M', 428), +(127548, 'Abel', 1983, 'M', 426), +(127549, 'Donnie', 1983, 'M', 425), +(127550, 'Ismael', 1983, 'M', 424), +(127551, 'Guillermo', 1983, 'M', 422), +(127552, 'Lionel', 1983, 'M', 420), +(127553, 'Loren', 1983, 'M', 420), +(127554, 'Alfonso', 1983, 'M', 419), +(127555, 'Marquis', 1983, 'M', 415), +(127556, 'Greg', 1983, 'M', 414), +(127557, 'Leslie', 1983, 'M', 414), +(127558, 'Emanuel', 1983, 'M', 413), +(127559, 'Robin', 1983, 'M', 412), +(127560, 'Freddie', 1983, 'M', 409), +(127561, 'Pierre', 1983, 'M', 408), +(127562, 'Josiah', 1983, 'M', 405), +(127563, 'Roland', 1983, 'M', 404), +(127564, 'Marlon', 1983, 'M', 402), +(127565, 'Tanner', 1983, 'M', 401), +(127566, 'Lester', 1983, 'M', 398), +(127567, 'Kurtis', 1983, 'M', 393), +(127568, 'Gilberto', 1983, 'M', 391), +(127569, 'Elias', 1983, 'M', 390), +(127570, 'Jeff', 1983, 'M', 390), +(127571, 'Cornelius', 1983, 'M', 386), +(127572, 'Roman', 1983, 'M', 386), +(127573, 'Jimmie', 1983, 'M', 385), +(127574, 'Toby', 1983, 'M', 384), +(127575, 'Carlton', 1983, 'M', 383), +(127576, 'Kellen', 1983, 'M', 383), +(127577, 'Kerry', 1983, 'M', 383), +(127578, 'Saul', 1983, 'M', 379), +(127579, 'Gene', 1983, 'M', 375), +(127580, 'Gustavo', 1983, 'M', 375), +(127581, 'Clay', 1983, 'M', 373), +(127582, 'Jerrod', 1983, 'M', 372), +(127583, 'Milton', 1983, 'M', 372), +(127584, 'Jarred', 1983, 'M', 366), +(127585, 'Johnnie', 1983, 'M', 366), +(127586, 'Antwan', 1983, 'M', 364), +(127587, 'Quincy', 1983, 'M', 364), +(127588, 'Dante', 1983, 'M', 361), +(127589, 'Fabian', 1983, 'M', 361), +(127590, 'Rusty', 1983, 'M', 360), +(127591, 'Stephan', 1983, 'M', 360), +(127592, 'Sam', 1983, 'M', 359), +(127593, 'Kendall', 1983, 'M', 358), +(127594, 'Desmond', 1983, 'M', 357), +(127595, 'Owen', 1983, 'M', 357), +(127596, 'Floyd', 1983, 'M', 356), +(127597, 'Hunter', 1983, 'M', 356), +(127598, 'Nathanael', 1983, 'M', 356), +(127599, 'Herman', 1983, 'M', 352), +(127600, 'Josue', 1983, 'M', 352), +(127601, 'Colt', 1983, 'M', 351), +(127602, 'Jarod', 1983, 'M', 351), +(127603, 'Miles', 1983, 'M', 347), +(127604, 'Frankie', 1983, 'M', 346), +(127605, 'Zachery', 1983, 'M', 344), +(127606, 'Marques', 1983, 'M', 343), +(127607, 'Esteban', 1983, 'M', 342), +(127608, 'Guy', 1983, 'M', 342), +(127609, 'Ty', 1983, 'M', 338), +(127610, 'Randolph', 1983, 'M', 333), +(127611, 'Rogelio', 1983, 'M', 333), +(127612, 'Moses', 1983, 'M', 332), +(127613, 'Darrin', 1983, 'M', 331), +(127614, 'Deandre', 1983, 'M', 331), +(127615, 'Jody', 1983, 'M', 331), +(127616, 'Jackie', 1983, 'M', 330), +(127617, 'Sidney', 1983, 'M', 330), +(127618, 'Donte', 1983, 'M', 329), +(127619, 'Jameson', 1983, 'M', 328), +(127620, 'Tracy', 1983, 'M', 326), +(127621, 'Ramiro', 1983, 'M', 325), +(127622, 'Alonzo', 1983, 'M', 323), +(127623, 'Clark', 1983, 'M', 320), +(127624, 'Jamel', 1983, 'M', 319), +(127625, 'Dominique', 1983, 'M', 318), +(127626, 'Dewayne', 1983, 'M', 317), +(127627, 'Lamont', 1983, 'M', 316), +(127628, 'Ariel', 1983, 'M', 315), +(127629, 'Kory', 1983, 'M', 314), +(127630, 'Bryon', 1983, 'M', 313), +(127631, 'Kareem', 1983, 'M', 313), +(127632, 'Dominick', 1983, 'M', 312), +(127633, 'Forrest', 1983, 'M', 312), +(127634, 'Salvatore', 1983, 'M', 312), +(127635, 'Scotty', 1983, 'M', 312), +(127636, 'Cecil', 1983, 'M', 309), +(127637, 'Chadwick', 1983, 'M', 309), +(127638, 'Dusty', 1983, 'M', 309), +(127639, 'Mike', 1983, 'M', 309), +(127640, 'Weston', 1983, 'M', 309), +(127641, 'Jess', 1983, 'M', 306), +(127642, 'Brooks', 1983, 'M', 303), +(127643, 'Gerard', 1983, 'M', 303), +(127644, 'Josh', 1983, 'M', 300), +(127645, 'Ted', 1983, 'M', 299), +(127646, 'Everett', 1983, 'M', 296), +(127647, 'Tomas', 1983, 'M', 296), +(127648, 'Aron', 1983, 'M', 294), +(127649, 'Sheldon', 1983, 'M', 294), +(127650, 'Chester', 1983, 'M', 291), +(127651, 'Hugo', 1983, 'M', 291), +(127652, 'Moises', 1983, 'M', 289), +(127653, 'Clyde', 1983, 'M', 288), +(127654, 'Reid', 1983, 'M', 288), +(127655, 'Myron', 1983, 'M', 287), +(127656, 'Reynaldo', 1983, 'M', 282), +(127657, 'Dan', 1983, 'M', 278), +(127658, 'Donovan', 1983, 'M', 278), +(127659, 'Jean', 1983, 'M', 278), +(127660, 'Jim', 1983, 'M', 278), +(127661, 'Wendell', 1983, 'M', 278), +(127662, 'Kiel', 1983, 'M', 277), +(127663, 'Demarcus', 1983, 'M', 276), +(127664, 'Diego', 1983, 'M', 276), +(127665, 'Jonas', 1983, 'M', 276), +(127666, 'Sterling', 1983, 'M', 275), +(127667, 'Jerod', 1983, 'M', 274), +(127668, 'Jackson', 1983, 'M', 272), +(127669, 'Robbie', 1983, 'M', 269), +(127670, 'Anton', 1983, 'M', 267), +(127671, 'Blaine', 1983, 'M', 266), +(127672, 'Leonardo', 1983, 'M', 266), +(127673, 'Garry', 1983, 'M', 262), +(127674, 'Guadalupe', 1983, 'M', 261), +(127675, 'Jonah', 1983, 'M', 260), +(127676, 'Harvey', 1983, 'M', 258), +(127677, 'Arnold', 1983, 'M', 257), +(127678, 'Nick', 1983, 'M', 256), +(127679, 'Stefan', 1983, 'M', 255), +(127680, 'Efrain', 1983, 'M', 254), +(127681, 'Sammy', 1983, 'M', 254), +(127682, 'Brenton', 1983, 'M', 252), +(127683, 'Chaz', 1983, 'M', 252), +(127684, 'Sherman', 1983, 'M', 251), +(127685, 'Tyrell', 1983, 'M', 249), +(127686, 'Wilson', 1983, 'M', 249), +(127687, 'Lyle', 1983, 'M', 247), +(127688, 'Stewart', 1983, 'M', 247), +(127689, 'Quintin', 1983, 'M', 246), +(127690, 'Rex', 1983, 'M', 246), +(127691, 'Vicente', 1983, 'M', 246), +(127692, 'Dion', 1983, 'M', 245), +(127693, 'Kristofer', 1983, 'M', 244), +(127694, 'Skyler', 1983, 'M', 244), +(127695, 'Avery', 1983, 'M', 243), +(127696, 'Giovanni', 1983, 'M', 243); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(127697, 'Jerad', 1983, 'M', 243), +(127698, 'Mason', 1983, 'M', 242), +(127699, 'Brendon', 1983, 'M', 240), +(127700, 'Reuben', 1983, 'M', 240), +(127701, 'Alton', 1983, 'M', 238), +(127702, 'Blair', 1983, 'M', 237), +(127703, 'Santiago', 1983, 'M', 235), +(127704, 'Ali', 1983, 'M', 234), +(127705, 'Adan', 1983, 'M', 233), +(127706, 'Ira', 1983, 'M', 233), +(127707, 'Erich', 1983, 'M', 232), +(127708, 'Freddy', 1983, 'M', 232), +(127709, 'Joaquin', 1983, 'M', 231), +(127710, 'Randal', 1983, 'M', 231), +(127711, 'Taurean', 1983, 'M', 231), +(127712, 'Chance', 1983, 'M', 230), +(127713, 'Dillon', 1983, 'M', 228), +(127714, 'Amos', 1983, 'M', 227), +(127715, 'Trey', 1983, 'M', 227), +(127716, 'Zackary', 1983, 'M', 227), +(127717, 'Harrison', 1983, 'M', 226), +(127718, 'Riley', 1983, 'M', 226), +(127719, 'Keenan', 1983, 'M', 225), +(127720, 'Matt', 1983, 'M', 225), +(127721, 'Thaddeus', 1983, 'M', 223), +(127722, 'Will', 1983, 'M', 223), +(127723, 'Barrett', 1983, 'M', 222), +(127724, 'Malcolm', 1983, 'M', 222), +(127725, 'Maxwell', 1983, 'M', 221), +(127726, 'Solomon', 1983, 'M', 221), +(127727, 'Dexter', 1983, 'M', 220), +(127728, 'Donnell', 1983, 'M', 219), +(127729, 'Emilio', 1983, 'M', 219), +(127730, 'Noe', 1983, 'M', 217), +(127731, 'Dorian', 1983, 'M', 216), +(127732, 'Rashad', 1983, 'M', 216), +(127733, 'Benny', 1983, 'M', 214), +(127734, 'Erin', 1983, 'M', 214), +(127735, 'Luther', 1983, 'M', 214), +(127736, 'Conrad', 1983, 'M', 212), +(127737, 'Harley', 1983, 'M', 212), +(127738, 'Joesph', 1983, 'M', 212), +(127739, 'Earnest', 1983, 'M', 210), +(127740, 'Humberto', 1983, 'M', 210), +(127741, 'Rigoberto', 1983, 'M', 210), +(127742, 'Leland', 1983, 'M', 209), +(127743, 'Marty', 1983, 'M', 209), +(127744, 'Rodrigo', 1983, 'M', 209), +(127745, 'Ignacio', 1983, 'M', 208), +(127746, 'Parker', 1983, 'M', 208), +(127747, 'Zane', 1983, 'M', 208), +(127748, 'Issac', 1983, 'M', 207), +(127749, 'Mickey', 1983, 'M', 207), +(127750, 'Wallace', 1983, 'M', 207), +(127751, 'Korey', 1983, 'M', 206), +(127752, 'Marcel', 1983, 'M', 206), +(127753, 'Otis', 1983, 'M', 206), +(127754, 'Reed', 1983, 'M', 206), +(127755, 'Bill', 1983, 'M', 205), +(127756, 'Pete', 1983, 'M', 205), +(127757, 'Wyatt', 1983, 'M', 205), +(127758, 'Alec', 1983, 'M', 204), +(127759, 'Brant', 1983, 'M', 203), +(127760, 'Willis', 1983, 'M', 203), +(127761, 'Santos', 1983, 'M', 200), +(127762, 'Alvaro', 1983, 'M', 199), +(127763, 'Kasey', 1983, 'M', 199), +(127764, 'Tom', 1983, 'M', 199), +(127765, 'Hugh', 1983, 'M', 198), +(127766, 'Vance', 1983, 'M', 198), +(127767, 'Garret', 1983, 'M', 196), +(127768, 'Jennifer', 1983, 'M', 196), +(127769, 'Jovan', 1983, 'M', 196), +(127770, 'Teddy', 1983, 'M', 195), +(127771, 'Bradly', 1983, 'M', 194), +(127772, 'Conor', 1983, 'M', 194), +(127773, 'Jessica', 1983, 'M', 194), +(127774, 'Sebastian', 1983, 'M', 193), +(127775, 'Akeem', 1983, 'M', 192), +(127776, 'Aubrey', 1983, 'M', 190), +(127777, 'Demario', 1983, 'M', 189), +(127778, 'Deon', 1983, 'M', 189), +(127779, 'Deangelo', 1983, 'M', 188), +(127780, 'Brain', 1983, 'M', 187), +(127781, 'Gregg', 1983, 'M', 187), +(127782, 'Jamison', 1983, 'M', 187), +(127783, 'Arron', 1983, 'M', 185), +(127784, 'Carson', 1983, 'M', 184), +(127785, 'Morris', 1983, 'M', 184), +(127786, 'Waylon', 1983, 'M', 184), +(127787, 'Claude', 1983, 'M', 183), +(127788, 'Sylvester', 1983, 'M', 183), +(127789, 'Wilfredo', 1983, 'M', 183), +(127790, 'Agustin', 1983, 'M', 182), +(127791, 'Brennan', 1983, 'M', 182), +(127792, 'Elvis', 1983, 'M', 182), +(127793, 'Darrel', 1983, 'M', 181), +(127794, 'Edmund', 1983, 'M', 180), +(127795, 'Nathanial', 1983, 'M', 180), +(127796, 'Ron', 1983, 'M', 180), +(127797, 'Ahmad', 1983, 'M', 179), +(127798, 'Bryson', 1983, 'M', 179), +(127799, 'Brice', 1983, 'M', 178), +(127800, 'Damion', 1983, 'M', 178), +(127801, 'Rudolph', 1983, 'M', 178), +(127802, 'Markus', 1983, 'M', 177), +(127803, 'Raphael', 1983, 'M', 176), +(127804, 'Hans', 1983, 'M', 175), +(127805, 'Quinn', 1983, 'M', 175), +(127806, 'Zackery', 1983, 'M', 175), +(127807, 'Jasper', 1983, 'M', 174), +(127808, 'Tyree', 1983, 'M', 173), +(127809, 'Antwon', 1983, 'M', 171), +(127810, 'Jed', 1983, 'M', 171), +(127811, 'Jordon', 1983, 'M', 171), +(127812, 'Cedrick', 1983, 'M', 170), +(127813, 'Deshawn', 1983, 'M', 170), +(127814, 'Kaleb', 1983, 'M', 170), +(127815, 'Carey', 1983, 'M', 168), +(127816, 'Jerald', 1983, 'M', 168), +(127817, 'Mauricio', 1983, 'M', 168), +(127818, 'Prince', 1983, 'M', 167), +(127819, 'Royce', 1983, 'M', 167), +(127820, 'Sonny', 1983, 'M', 167), +(127821, 'Amir', 1983, 'M', 166), +(127822, 'Bennie', 1983, 'M', 166), +(127823, 'Rodrick', 1983, 'M', 166), +(127824, 'Whitney', 1983, 'M', 166), +(127825, 'Titus', 1983, 'M', 164), +(127826, 'Cassidy', 1983, 'M', 163), +(127827, 'Dereck', 1983, 'M', 163), +(127828, 'Myles', 1983, 'M', 162), +(127829, 'Tory', 1983, 'M', 162), +(127830, 'Reggie', 1983, 'M', 161), +(127831, 'Van', 1983, 'M', 161), +(127832, 'Kody', 1983, 'M', 160), +(127833, 'Nigel', 1983, 'M', 160), +(127834, 'Virgil', 1983, 'M', 160), +(127835, 'Braden', 1983, 'M', 159), +(127836, 'Derik', 1983, 'M', 158), +(127837, 'Timmy', 1983, 'M', 158), +(127838, 'Tommie', 1983, 'M', 158), +(127839, 'Cary', 1983, 'M', 157), +(127840, 'Davis', 1983, 'M', 157), +(127841, 'Rico', 1983, 'M', 157), +(127842, 'Robby', 1983, 'M', 157), +(127843, 'Shelby', 1983, 'M', 157), +(127844, 'Benito', 1983, 'M', 156), +(127845, 'Carlo', 1983, 'M', 156), +(127846, 'Daren', 1983, 'M', 156), +(127847, 'Jered', 1983, 'M', 155), +(127848, 'Ervin', 1983, 'M', 153), +(127849, 'Tobias', 1983, 'M', 153), +(127850, 'Antione', 1983, 'M', 152), +(127851, 'Heriberto', 1983, 'M', 152), +(127852, 'Winston', 1983, 'M', 152), +(127853, 'Ari', 1983, 'M', 151), +(127854, 'Jeffry', 1983, 'M', 151), +(127855, 'Abram', 1983, 'M', 150), +(127856, 'Ezekiel', 1983, 'M', 149), +(127857, 'Nikolas', 1983, 'M', 149), +(127858, 'Archie', 1983, 'M', 148), +(127859, 'Cyrus', 1983, 'M', 148), +(127860, 'Elmer', 1983, 'M', 148), +(127861, 'Leonel', 1983, 'M', 148), +(127862, 'Cortney', 1983, 'M', 147), +(127863, 'Donny', 1983, 'M', 147), +(127864, 'Lukas', 1983, 'M', 147), +(127865, 'Dave', 1983, 'M', 146), +(127866, 'Kenton', 1983, 'M', 146), +(127867, 'Kirby', 1983, 'M', 146), +(127868, 'Osvaldo', 1983, 'M', 146), +(127869, 'Rhett', 1983, 'M', 146), +(127870, 'Tyrel', 1983, 'M', 146), +(127871, 'Cristian', 1983, 'M', 145), +(127872, 'Curt', 1983, 'M', 145), +(127873, 'Chauncey', 1983, 'M', 144), +(127874, 'Davon', 1983, 'M', 144), +(127875, 'Ezra', 1983, 'M', 144), +(127876, 'Liam', 1983, 'M', 144), +(127877, 'Mohammad', 1983, 'M', 144), +(127878, 'Asa', 1983, 'M', 143), +(127879, 'Cortez', 1983, 'M', 143), +(127880, 'Jamil', 1983, 'M', 143), +(127881, 'Adolfo', 1983, 'M', 142), +(127882, 'Galen', 1983, 'M', 142), +(127883, 'Justen', 1983, 'M', 141), +(127884, 'Mikel', 1983, 'M', 141), +(127885, 'Ellis', 1983, 'M', 140), +(127886, 'Jeromy', 1983, 'M', 140), +(127887, 'Roosevelt', 1983, 'M', 140), +(127888, 'Connor', 1983, 'M', 139), +(127889, 'Coy', 1983, 'M', 139), +(127890, 'Jefferson', 1983, 'M', 139), +(127891, 'Rocco', 1983, 'M', 139), +(127892, 'Bo', 1983, 'M', 138), +(127893, 'Buddy', 1983, 'M', 138), +(127894, 'Lane', 1983, 'M', 137), +(127895, 'Tremaine', 1983, 'M', 137), +(127896, 'Marion', 1983, 'M', 136), +(127897, 'Wilbert', 1983, 'M', 136), +(127898, 'Cliff', 1983, 'M', 135), +(127899, 'Davin', 1983, 'M', 135), +(127900, 'Delbert', 1983, 'M', 135), +(127901, 'Leif', 1983, 'M', 135), +(127902, 'Amit', 1983, 'M', 134), +(127903, 'Laurence', 1983, 'M', 134), +(127904, 'Moshe', 1983, 'M', 134), +(127905, 'Tyron', 1983, 'M', 134), +(127906, 'Jace', 1983, 'M', 133), +(127907, 'Kristian', 1983, 'M', 133), +(127908, 'Mohammed', 1983, 'M', 133), +(127909, 'Mitchel', 1983, 'M', 132), +(127910, 'Bennett', 1983, 'M', 131), +(127911, 'Darrick', 1983, 'M', 131), +(127912, 'Jedidiah', 1983, 'M', 131), +(127913, 'Mack', 1983, 'M', 131), +(127914, 'Duncan', 1983, 'M', 130), +(127915, 'Javon', 1983, 'M', 130), +(127916, 'Josef', 1983, 'M', 130), +(127917, 'Scottie', 1983, 'M', 130), +(127918, 'Dejuan', 1983, 'M', 129), +(127919, 'Louie', 1983, 'M', 129), +(127920, 'Stacy', 1983, 'M', 129), +(127921, 'Cale', 1983, 'M', 128), +(127922, 'Cleveland', 1983, 'M', 128), +(127923, 'Dirk', 1983, 'M', 128), +(127924, 'Gregorio', 1983, 'M', 128), +(127925, 'Jedediah', 1983, 'M', 128), +(127926, 'Monte', 1983, 'M', 128), +(127927, 'Willard', 1983, 'M', 128), +(127928, 'Ahmed', 1983, 'M', 127), +(127929, 'Brenden', 1983, 'M', 127), +(127930, 'Lindsey', 1983, 'M', 127), +(127931, 'Bernardo', 1983, 'M', 126), +(127932, 'Cornell', 1983, 'M', 126), +(127933, 'Keegan', 1983, 'M', 126), +(127934, 'Kristoffer', 1983, 'M', 126), +(127935, 'Raymundo', 1983, 'M', 126), +(127936, 'Rickie', 1983, 'M', 126), +(127937, 'Tucker', 1983, 'M', 126), +(127938, 'Domingo', 1983, 'M', 125), +(127939, 'Jeremie', 1983, 'M', 125), +(127940, 'Antony', 1983, 'M', 124), +(127941, 'German', 1983, 'M', 124), +(127942, 'Marlin', 1983, 'M', 124), +(127943, 'Vaughn', 1983, 'M', 124), +(127944, 'Coleman', 1983, 'M', 123), +(127945, 'Jeramy', 1983, 'M', 123), +(127946, 'Silas', 1983, 'M', 123), +(127947, 'Theron', 1983, 'M', 123), +(127948, 'Daron', 1983, 'M', 122), +(127949, 'Denny', 1983, 'M', 122), +(127950, 'Grady', 1983, 'M', 122), +(127951, 'Jerrell', 1983, 'M', 122), +(127952, 'Ashton', 1983, 'M', 121), +(127953, 'Raheem', 1983, 'M', 121), +(127954, 'Andrea', 1983, 'M', 120), +(127955, 'Eliot', 1983, 'M', 120), +(127956, 'Emmett', 1983, 'M', 120), +(127957, 'Hassan', 1983, 'M', 120), +(127958, 'Jaron', 1983, 'M', 120), +(127959, 'Rufus', 1983, 'M', 120), +(127960, 'Jasen', 1983, 'M', 119), +(127961, 'Michel', 1983, 'M', 119), +(127962, 'Keon', 1983, 'M', 118), +(127963, 'Sarah', 1983, 'M', 118), +(127964, 'Carter', 1983, 'M', 117), +(127965, 'Colton', 1983, 'M', 117), +(127966, 'Cristopher', 1983, 'M', 117), +(127967, 'Elton', 1983, 'M', 117), +(127968, 'Federico', 1983, 'M', 117), +(127969, 'Stacey', 1983, 'M', 117), +(127970, 'Jarad', 1983, 'M', 116), +(127971, 'Shelton', 1983, 'M', 116), +(127972, 'Horace', 1983, 'M', 115), +(127973, 'Judson', 1983, 'M', 115), +(127974, 'Kelsey', 1983, 'M', 115), +(127975, 'Malik', 1983, 'M', 115), +(127976, 'Jacques', 1983, 'M', 114), +(127977, 'Muhammad', 1983, 'M', 114), +(127978, 'Broderick', 1983, 'M', 113), +(127979, 'Jan', 1983, 'M', 113), +(127980, 'Alphonso', 1983, 'M', 112), +(127981, 'Lincoln', 1983, 'M', 112), +(127982, 'Octavio', 1983, 'M', 112), +(127983, 'Randell', 1983, 'M', 112), +(127984, 'Dario', 1983, 'M', 111), +(127985, 'Devan', 1983, 'M', 111), +(127986, 'Efren', 1983, 'M', 111), +(127987, 'Hank', 1983, 'M', 111), +(127988, 'Kris', 1983, 'M', 111), +(127989, 'Martell', 1983, 'M', 111), +(127990, 'Shayne', 1983, 'M', 111), +(127991, 'Donta', 1983, 'M', 110), +(127992, 'Bart', 1983, 'M', 109), +(127993, 'Fidel', 1983, 'M', 109), +(127994, 'Rodger', 1983, 'M', 109), +(127995, 'Dalton', 1983, 'M', 108), +(127996, 'Garrick', 1983, 'M', 108), +(127997, 'Gino', 1983, 'M', 108), +(127998, 'Johathan', 1983, 'M', 108), +(127999, 'Nestor', 1983, 'M', 108), +(128000, 'Scot', 1983, 'M', 108), +(128001, 'Brannon', 1983, 'M', 107), +(128002, 'Danial', 1983, 'M', 107), +(128003, 'Dontae', 1983, 'M', 107), +(128004, 'Junior', 1983, 'M', 107), +(128005, 'Nicholaus', 1983, 'M', 107), +(128006, 'Denver', 1983, 'M', 106), +(128007, 'Edmond', 1983, 'M', 106), +(128008, 'Remington', 1983, 'M', 106), +(128009, 'Shea', 1983, 'M', 106), +(128010, 'Tavares', 1983, 'M', 106), +(128011, 'Chet', 1983, 'M', 105), +(128012, 'Percy', 1983, 'M', 105), +(128013, 'Al', 1983, 'M', 104), +(128014, 'Isiah', 1983, 'M', 104), +(128015, 'Jeramie', 1983, 'M', 104), +(128016, 'Ken', 1983, 'M', 104), +(128017, 'Lazaro', 1983, 'M', 104), +(128018, 'Abdul', 1983, 'M', 103), +(128019, 'Amanda', 1983, 'M', 103), +(128020, 'Elvin', 1983, 'M', 103), +(128021, 'Estevan', 1983, 'M', 103), +(128022, 'Irvin', 1983, 'M', 103), +(128023, 'Ulysses', 1983, 'M', 103), +(128024, 'Brandan', 1983, 'M', 102), +(128025, 'Christoper', 1983, 'M', 102), +(128026, 'Eliezer', 1983, 'M', 102), +(128027, 'Elizabeth', 1983, 'M', 102), +(128028, 'Lynn', 1983, 'M', 102), +(128029, 'Aldo', 1983, 'M', 101), +(128030, 'Greggory', 1983, 'M', 101), +(128031, 'Melissa', 1983, 'M', 101), +(128032, 'Paris', 1983, 'M', 101), +(128033, 'Ronny', 1983, 'M', 101), +(128034, 'Darron', 1983, 'M', 100), +(128035, 'Genaro', 1983, 'M', 100), +(128036, 'Johnpaul', 1983, 'M', 100), +(128037, 'Juston', 1983, 'M', 100), +(128038, 'Laron', 1983, 'M', 100), +(128039, 'Lars', 1983, 'M', 100), +(128040, 'Lauren', 1983, 'M', 100), +(128041, 'Rashawn', 1983, 'M', 100), +(128042, 'Jennifer', 1984, 'F', 50559), +(128043, 'Jessica', 1984, 'F', 45849), +(128044, 'Ashley', 1984, 'F', 38758), +(128045, 'Amanda', 1984, 'F', 33905), +(128046, 'Sarah', 1984, 'F', 25874), +(128047, 'Stephanie', 1984, 'F', 23018), +(128048, 'Nicole', 1984, 'F', 22264), +(128049, 'Melissa', 1984, 'F', 21886), +(128050, 'Heather', 1984, 'F', 21486), +(128051, 'Elizabeth', 1984, 'F', 20362), +(128052, 'Megan', 1984, 'F', 16974), +(128053, 'Crystal', 1984, 'F', 16561), +(128054, 'Amy', 1984, 'F', 15991), +(128055, 'Tiffany', 1984, 'F', 15854), +(128056, 'Rachel', 1984, 'F', 15837), +(128057, 'Danielle', 1984, 'F', 15664), +(128058, 'Michelle', 1984, 'F', 15498), +(128059, 'Amber', 1984, 'F', 15365), +(128060, 'Laura', 1984, 'F', 14812), +(128061, 'Christina', 1984, 'F', 14700), +(128062, 'Lauren', 1984, 'F', 14473), +(128063, 'Kimberly', 1984, 'F', 14439), +(128064, 'Rebecca', 1984, 'F', 13343), +(128065, 'Emily', 1984, 'F', 12782), +(128066, 'Erin', 1984, 'F', 12620), +(128067, 'Angela', 1984, 'F', 11294), +(128068, 'Kelly', 1984, 'F', 11214), +(128069, 'Andrea', 1984, 'F', 10345), +(128070, 'Lisa', 1984, 'F', 10235), +(128071, 'Katherine', 1984, 'F', 10153), +(128072, 'Jamie', 1984, 'F', 9761), +(128073, 'Sara', 1984, 'F', 9315), +(128074, 'Mary', 1984, 'F', 9288), +(128075, 'Erica', 1984, 'F', 9279), +(128076, 'Lindsey', 1984, 'F', 9008), +(128077, 'Lindsay', 1984, 'F', 8507), +(128078, 'Shannon', 1984, 'F', 8476), +(128079, 'Kristen', 1984, 'F', 8385), +(128080, 'Samantha', 1984, 'F', 8032), +(128081, 'Alicia', 1984, 'F', 7819), +(128082, 'Brittany', 1984, 'F', 7662), +(128083, 'April', 1984, 'F', 7564), +(128084, 'Christine', 1984, 'F', 7295), +(128085, 'Katie', 1984, 'F', 7169), +(128086, 'Vanessa', 1984, 'F', 7154), +(128087, 'Courtney', 1984, 'F', 7148), +(128088, 'Kristin', 1984, 'F', 7008), +(128089, 'Kathryn', 1984, 'F', 6539), +(128090, 'Tara', 1984, 'F', 6282), +(128091, 'Maria', 1984, 'F', 6114), +(128092, 'Allison', 1984, 'F', 6037), +(128093, 'Julie', 1984, 'F', 5939), +(128094, 'Holly', 1984, 'F', 5925), +(128095, 'Jenna', 1984, 'F', 5877), +(128096, 'Natalie', 1984, 'F', 5555), +(128097, 'Jacqueline', 1984, 'F', 5547), +(128098, 'Anna', 1984, 'F', 5304), +(128099, 'Monica', 1984, 'F', 5129), +(128100, 'Victoria', 1984, 'F', 5076), +(128101, 'Latoya', 1984, 'F', 5050), +(128102, 'Brandi', 1984, 'F', 4846), +(128103, 'Cynthia', 1984, 'F', 4621), +(128104, 'Cassandra', 1984, 'F', 4582), +(128105, 'Brandy', 1984, 'F', 4577), +(128106, 'Meghan', 1984, 'F', 4505), +(128107, 'Patricia', 1984, 'F', 4475), +(128108, 'Stacy', 1984, 'F', 4444), +(128109, 'Kristina', 1984, 'F', 4326), +(128110, 'Catherine', 1984, 'F', 4237), +(128111, 'Veronica', 1984, 'F', 4008), +(128112, 'Kathleen', 1984, 'F', 3989), +(128113, 'Diana', 1984, 'F', 3965), +(128114, 'Dana', 1984, 'F', 3940), +(128115, 'Krystal', 1984, 'F', 3931), +(128116, 'Leslie', 1984, 'F', 3813), +(128117, 'Valerie', 1984, 'F', 3722), +(128118, 'Natasha', 1984, 'F', 3708), +(128119, 'Carrie', 1984, 'F', 3690), +(128120, 'Stacey', 1984, 'F', 3648), +(128121, 'Sheena', 1984, 'F', 3598), +(128122, 'Erika', 1984, 'F', 3539), +(128123, 'Karen', 1984, 'F', 3533), +(128124, 'Leah', 1984, 'F', 3532), +(128125, 'Chelsea', 1984, 'F', 3529), +(128126, 'Melanie', 1984, 'F', 3515), +(128127, 'Candice', 1984, 'F', 3393), +(128128, 'Julia', 1984, 'F', 3358), +(128129, 'Joanna', 1984, 'F', 3326), +(128130, 'Alexis', 1984, 'F', 3290), +(128131, 'Susan', 1984, 'F', 3114), +(128132, 'Tracy', 1984, 'F', 3049), +(128133, 'Margaret', 1984, 'F', 3042), +(128134, 'Bethany', 1984, 'F', 2987), +(128135, 'Sandra', 1984, 'F', 2876), +(128136, 'Kara', 1984, 'F', 2855), +(128137, 'Alexandra', 1984, 'F', 2812), +(128138, 'Nichole', 1984, 'F', 2806), +(128139, 'Misty', 1984, 'F', 2792), +(128140, 'Brooke', 1984, 'F', 2746), +(128141, 'Kayla', 1984, 'F', 2681), +(128142, 'Candace', 1984, 'F', 2668), +(128143, 'Heidi', 1984, 'F', 2666), +(128144, 'Rachael', 1984, 'F', 2651), +(128145, 'Pamela', 1984, 'F', 2641), +(128146, 'Katrina', 1984, 'F', 2630), +(128147, 'Jillian', 1984, 'F', 2623), +(128148, 'Casey', 1984, 'F', 2582), +(128149, 'Renee', 1984, 'F', 2582), +(128150, 'Gina', 1984, 'F', 2562), +(128151, 'Alison', 1984, 'F', 2511), +(128152, 'Tina', 1984, 'F', 2503), +(128153, 'Brenda', 1984, 'F', 2494), +(128154, 'Nancy', 1984, 'F', 2485), +(128155, 'Miranda', 1984, 'F', 2480), +(128156, 'Denise', 1984, 'F', 2459), +(128157, 'Lacey', 1984, 'F', 2399), +(128158, 'Teresa', 1984, 'F', 2387), +(128159, 'Caitlin', 1984, 'F', 2343), +(128160, 'Linda', 1984, 'F', 2333), +(128161, 'Jill', 1984, 'F', 2327), +(128162, 'Theresa', 1984, 'F', 2305), +(128163, 'Sabrina', 1984, 'F', 2303), +(128164, 'Alisha', 1984, 'F', 2292), +(128165, 'Whitney', 1984, 'F', 2288), +(128166, 'Tamara', 1984, 'F', 2286), +(128167, 'Hannah', 1984, 'F', 2264), +(128168, 'Anne', 1984, 'F', 2234), +(128169, 'Desiree', 1984, 'F', 2230), +(128170, 'Melinda', 1984, 'F', 2229), +(128171, 'Monique', 1984, 'F', 2200), +(128172, 'Molly', 1984, 'F', 2178), +(128173, 'Morgan', 1984, 'F', 2175), +(128174, 'Krista', 1984, 'F', 2169), +(128175, 'Jaclyn', 1984, 'F', 2167), +(128176, 'Kristy', 1984, 'F', 2159), +(128177, 'Jenny', 1984, 'F', 2137), +(128178, 'Ebony', 1984, 'F', 2130), +(128179, 'Stefanie', 1984, 'F', 2127), +(128180, 'Robin', 1984, 'F', 2113), +(128181, 'Tanya', 1984, 'F', 2110), +(128182, 'Dawn', 1984, 'F', 2106), +(128183, 'Tabitha', 1984, 'F', 2106), +(128184, 'Lori', 1984, 'F', 2080), +(128185, 'Colleen', 1984, 'F', 2067), +(128186, 'Christy', 1984, 'F', 2026), +(128187, 'Wendy', 1984, 'F', 2023), +(128188, 'Kelli', 1984, 'F', 1981), +(128189, 'Meredith', 1984, 'F', 1934), +(128190, 'Jasmine', 1984, 'F', 1928), +(128191, 'Kendra', 1984, 'F', 1919), +(128192, 'Deanna', 1984, 'F', 1915), +(128193, 'Barbara', 1984, 'F', 1865), +(128194, 'Tonya', 1984, 'F', 1855), +(128195, 'Abigail', 1984, 'F', 1841), +(128196, 'Carolyn', 1984, 'F', 1824), +(128197, 'Kari', 1984, 'F', 1816), +(128198, 'Rebekah', 1984, 'F', 1802), +(128199, 'Cassie', 1984, 'F', 1777), +(128200, 'Kristi', 1984, 'F', 1766), +(128201, 'Ann', 1984, 'F', 1694), +(128202, 'Michele', 1984, 'F', 1692), +(128203, 'Angel', 1984, 'F', 1685), +(128204, 'Tasha', 1984, 'F', 1685), +(128205, 'Bridget', 1984, 'F', 1683), +(128206, 'Meagan', 1984, 'F', 1677), +(128207, 'Adrienne', 1984, 'F', 1648), +(128208, 'Beth', 1984, 'F', 1632), +(128209, 'Caroline', 1984, 'F', 1631), +(128210, 'Sharon', 1984, 'F', 1630), +(128211, 'Marissa', 1984, 'F', 1627), +(128212, 'Ashlee', 1984, 'F', 1609), +(128213, 'Priscilla', 1984, 'F', 1600), +(128214, 'Marie', 1984, 'F', 1585), +(128215, 'Latasha', 1984, 'F', 1561), +(128216, 'Shana', 1984, 'F', 1559), +(128217, 'Brittney', 1984, 'F', 1558), +(128218, 'Kate', 1984, 'F', 1553), +(128219, 'Kelsey', 1984, 'F', 1553), +(128220, 'Cindy', 1984, 'F', 1541), +(128221, 'Alyssa', 1984, 'F', 1538), +(128222, 'Jaime', 1984, 'F', 1505), +(128223, 'Tammy', 1984, 'F', 1505), +(128224, 'Regina', 1984, 'F', 1489), +(128225, 'Audrey', 1984, 'F', 1486), +(128226, 'Felicia', 1984, 'F', 1482), +(128227, 'Mallory', 1984, 'F', 1470), +(128228, 'Deborah', 1984, 'F', 1468), +(128229, 'Virginia', 1984, 'F', 1463), +(128230, 'Carla', 1984, 'F', 1454), +(128231, 'Cristina', 1984, 'F', 1443), +(128232, 'Cara', 1984, 'F', 1439), +(128233, 'Jacquelyn', 1984, 'F', 1432), +(128234, 'Ana', 1984, 'F', 1389), +(128235, 'Angelica', 1984, 'F', 1380), +(128236, 'Marquita', 1984, 'F', 1373), +(128237, 'Kristine', 1984, 'F', 1359), +(128238, 'Brianna', 1984, 'F', 1355), +(128239, 'Claudia', 1984, 'F', 1351), +(128240, 'Mindy', 1984, 'F', 1346), +(128241, 'Nina', 1984, 'F', 1339), +(128242, 'Shawna', 1984, 'F', 1327), +(128243, 'Carly', 1984, 'F', 1322), +(128244, 'Cheryl', 1984, 'F', 1322), +(128245, 'Carmen', 1984, 'F', 1298), +(128246, 'Suzanne', 1984, 'F', 1291), +(128247, 'Bonnie', 1984, 'F', 1273), +(128248, 'Janet', 1984, 'F', 1267), +(128249, 'Abby', 1984, 'F', 1263), +(128250, 'Dominique', 1984, 'F', 1254), +(128251, 'Aimee', 1984, 'F', 1236), +(128252, 'Jodi', 1984, 'F', 1229), +(128253, 'Janelle', 1984, 'F', 1220), +(128254, 'Shanna', 1984, 'F', 1218), +(128255, 'Trista', 1984, 'F', 1216), +(128256, 'Summer', 1984, 'F', 1212), +(128257, 'Martha', 1984, 'F', 1210), +(128258, 'Lydia', 1984, 'F', 1200), +(128259, 'Diane', 1984, 'F', 1197), +(128260, 'Keri', 1984, 'F', 1195), +(128261, 'Autumn', 1984, 'F', 1185), +(128262, 'Donna', 1984, 'F', 1180), +(128263, 'Ruth', 1984, 'F', 1161), +(128264, 'Olivia', 1984, 'F', 1160), +(128265, 'Joy', 1984, 'F', 1154), +(128266, 'Daisy', 1984, 'F', 1145), +(128267, 'Kellie', 1984, 'F', 1135), +(128268, 'Mayra', 1984, 'F', 1127), +(128269, 'Christie', 1984, 'F', 1115), +(128270, 'Krystle', 1984, 'F', 1111), +(128271, 'Paula', 1984, 'F', 1100), +(128272, 'Robyn', 1984, 'F', 1098), +(128273, 'Amelia', 1984, 'F', 1093), +(128274, 'Mandy', 1984, 'F', 1092), +(128275, 'Melody', 1984, 'F', 1087), +(128276, 'Sophia', 1984, 'F', 1083), +(128277, 'Toni', 1984, 'F', 1079), +(128278, 'Yolanda', 1984, 'F', 1070), +(128279, 'Rose', 1984, 'F', 1056), +(128280, 'Evelyn', 1984, 'F', 1049), +(128281, 'Gloria', 1984, 'F', 1048), +(128282, 'Naomi', 1984, 'F', 1048), +(128283, 'Shelby', 1984, 'F', 1041), +(128284, 'Randi', 1984, 'F', 1035), +(128285, 'Trisha', 1984, 'F', 1021), +(128286, 'Debra', 1984, 'F', 1019), +(128287, 'Grace', 1984, 'F', 1015), +(128288, 'Hillary', 1984, 'F', 1009), +(128289, 'Sylvia', 1984, 'F', 1004), +(128290, 'Nikki', 1984, 'F', 1002), +(128291, 'Ashleigh', 1984, 'F', 996), +(128292, 'Jessie', 1984, 'F', 992), +(128293, 'Haley', 1984, 'F', 991), +(128294, 'Stacie', 1984, 'F', 986), +(128295, 'Claire', 1984, 'F', 978), +(128296, 'Rosa', 1984, 'F', 977), +(128297, 'Adriana', 1984, 'F', 967), +(128298, 'Shauna', 1984, 'F', 953), +(128299, 'Rachelle', 1984, 'F', 949), +(128300, 'Shelly', 1984, 'F', 948), +(128301, 'Lacy', 1984, 'F', 940), +(128302, 'Charlene', 1984, 'F', 936), +(128303, 'Karla', 1984, 'F', 934), +(128304, 'Ellen', 1984, 'F', 929), +(128305, 'Sonia', 1984, 'F', 927), +(128306, 'Johanna', 1984, 'F', 918), +(128307, 'Traci', 1984, 'F', 910), +(128308, 'Sheila', 1984, 'F', 907), +(128309, 'Carol', 1984, 'F', 906), +(128310, 'Marisa', 1984, 'F', 900), +(128311, 'Kerri', 1984, 'F', 886), +(128312, 'Esther', 1984, 'F', 883), +(128313, 'Leigh', 1984, 'F', 883), +(128314, 'Sherry', 1984, 'F', 879), +(128315, 'Hilary', 1984, 'F', 877), +(128316, 'Jeanette', 1984, 'F', 873), +(128317, 'Jocelyn', 1984, 'F', 870), +(128318, 'Savannah', 1984, 'F', 868), +(128319, 'Taylor', 1984, 'F', 868), +(128320, 'Kasey', 1984, 'F', 866), +(128321, 'Anita', 1984, 'F', 863), +(128322, 'Helen', 1984, 'F', 859), +(128323, 'Frances', 1984, 'F', 855), +(128324, 'Sonya', 1984, 'F', 854), +(128325, 'Katharine', 1984, 'F', 850), +(128326, 'Alexandria', 1984, 'F', 848), +(128327, 'Maggie', 1984, 'F', 843), +(128328, 'Tracey', 1984, 'F', 839), +(128329, 'Rhonda', 1984, 'F', 837), +(128330, 'Tabatha', 1984, 'F', 832), +(128331, 'Tamika', 1984, 'F', 831), +(128332, 'Laurie', 1984, 'F', 817), +(128333, 'Briana', 1984, 'F', 815), +(128334, 'Brianne', 1984, 'F', 815), +(128335, 'Hope', 1984, 'F', 811), +(128336, 'Gabrielle', 1984, 'F', 810), +(128337, 'Raquel', 1984, 'F', 799), +(128338, 'Alissa', 1984, 'F', 797), +(128339, 'Kelley', 1984, 'F', 796), +(128340, 'Terri', 1984, 'F', 796), +(128341, 'Annie', 1984, 'F', 793), +(128342, 'Yvonne', 1984, 'F', 793), +(128343, 'Charity', 1984, 'F', 790), +(128344, 'Elisabeth', 1984, 'F', 790), +(128345, 'Tia', 1984, 'F', 788), +(128346, 'Miriam', 1984, 'F', 786), +(128347, 'Charlotte', 1984, 'F', 785), +(128348, 'Tessa', 1984, 'F', 775), +(128349, 'Kristie', 1984, 'F', 767), +(128350, 'Latisha', 1984, 'F', 766), +(128351, 'Kira', 1984, 'F', 765), +(128352, 'Angelina', 1984, 'F', 763), +(128353, 'Elise', 1984, 'F', 758), +(128354, 'Jana', 1984, 'F', 757), +(128355, 'Janice', 1984, 'F', 756), +(128356, 'Carissa', 1984, 'F', 752), +(128357, 'Leticia', 1984, 'F', 752), +(128358, 'Roxanne', 1984, 'F', 748), +(128359, 'Eva', 1984, 'F', 743), +(128360, 'Christa', 1984, 'F', 740), +(128361, 'Irene', 1984, 'F', 736), +(128362, 'Kerry', 1984, 'F', 730), +(128363, 'Chelsey', 1984, 'F', 729), +(128364, 'Jane', 1984, 'F', 725), +(128365, 'Cecilia', 1984, 'F', 723), +(128366, 'Kirsten', 1984, 'F', 723), +(128367, 'Maureen', 1984, 'F', 721), +(128368, 'Staci', 1984, 'F', 719), +(128369, 'Yvette', 1984, 'F', 708), +(128370, 'Lynn', 1984, 'F', 706), +(128371, 'Shelley', 1984, 'F', 706), +(128372, 'Brandie', 1984, 'F', 705), +(128373, 'Katelyn', 1984, 'F', 702), +(128374, 'Sandy', 1984, 'F', 701), +(128375, 'Annette', 1984, 'F', 696), +(128376, 'Rochelle', 1984, 'F', 691), +(128377, 'Chasity', 1984, 'F', 687), +(128378, 'Alice', 1984, 'F', 686), +(128379, 'Tricia', 1984, 'F', 684), +(128380, 'Kaitlin', 1984, 'F', 683), +(128381, 'Dorothy', 1984, 'F', 682), +(128382, 'Connie', 1984, 'F', 676), +(128383, 'Emma', 1984, 'F', 674), +(128384, 'Kathy', 1984, 'F', 670), +(128385, 'Jade', 1984, 'F', 665), +(128386, 'Jennie', 1984, 'F', 665), +(128387, 'Justine', 1984, 'F', 665), +(128388, 'Nadia', 1984, 'F', 663), +(128389, 'Bianca', 1984, 'F', 662), +(128390, 'Karina', 1984, 'F', 657), +(128391, 'Lyndsey', 1984, 'F', 657), +(128392, 'Tanisha', 1984, 'F', 657), +(128393, 'Alana', 1984, 'F', 655), +(128394, 'Antoinette', 1984, 'F', 651), +(128395, 'Amie', 1984, 'F', 650), +(128396, 'Hollie', 1984, 'F', 649), +(128397, 'Juanita', 1984, 'F', 648), +(128398, 'Lorena', 1984, 'F', 648), +(128399, 'Chrystal', 1984, 'F', 644), +(128400, 'Latonya', 1984, 'F', 644), +(128401, 'Elisa', 1984, 'F', 643), +(128402, 'Gabriela', 1984, 'F', 643), +(128403, 'Ariel', 1984, 'F', 636), +(128404, 'Faith', 1984, 'F', 635), +(128405, 'Clarissa', 1984, 'F', 633), +(128406, 'Camille', 1984, 'F', 630), +(128407, 'Breanna', 1984, 'F', 628), +(128408, 'Aubrey', 1984, 'F', 624), +(128409, 'Jami', 1984, 'F', 623), +(128410, 'Patrice', 1984, 'F', 621), +(128411, 'Cortney', 1984, 'F', 618), +(128412, 'Elaine', 1984, 'F', 616), +(128413, 'Eileen', 1984, 'F', 614), +(128414, 'Sally', 1984, 'F', 614), +(128415, 'Bobbie', 1984, 'F', 607), +(128416, 'Jenifer', 1984, 'F', 607), +(128417, 'Lesley', 1984, 'F', 606), +(128418, 'Paige', 1984, 'F', 606), +(128419, 'Rita', 1984, 'F', 603), +(128420, 'Leanne', 1984, 'F', 596), +(128421, 'Ruby', 1984, 'F', 595), +(128422, 'Jordan', 1984, 'F', 594), +(128423, 'Joyce', 1984, 'F', 593), +(128424, 'Shari', 1984, 'F', 580), +(128425, 'Becky', 1984, 'F', 577), +(128426, 'Serena', 1984, 'F', 577), +(128427, 'Judith', 1984, 'F', 566), +(128428, 'Katy', 1984, 'F', 566), +(128429, 'Sherri', 1984, 'F', 566), +(128430, 'Constance', 1984, 'F', 564), +(128431, 'Destiny', 1984, 'F', 564), +(128432, 'Nora', 1984, 'F', 555), +(128433, 'Ericka', 1984, 'F', 554), +(128434, 'Jody', 1984, 'F', 552), +(128435, 'Jackie', 1984, 'F', 546), +(128436, 'Jolene', 1984, 'F', 545), +(128437, 'Ryan', 1984, 'F', 543), +(128438, 'Allyson', 1984, 'F', 542), +(128439, 'Elena', 1984, 'F', 541), +(128440, 'Alma', 1984, 'F', 530), +(128441, 'Audra', 1984, 'F', 530), +(128442, 'Guadalupe', 1984, 'F', 528), +(128443, 'Marisol', 1984, 'F', 527), +(128444, 'Christin', 1984, 'F', 526), +(128445, 'Lakeisha', 1984, 'F', 524), +(128446, 'Gretchen', 1984, 'F', 523), +(128447, 'Beverly', 1984, 'F', 521), +(128448, 'Taryn', 1984, 'F', 521), +(128449, 'Shayla', 1984, 'F', 520), +(128450, 'Keisha', 1984, 'F', 519), +(128451, 'Jean', 1984, 'F', 518), +(128452, 'Terra', 1984, 'F', 518), +(128453, 'Sheri', 1984, 'F', 517), +(128454, 'Meaghan', 1984, 'F', 514), +(128455, 'Judy', 1984, 'F', 513), +(128456, 'Alisa', 1984, 'F', 510), +(128457, 'Joanne', 1984, 'F', 510), +(128458, 'Celeste', 1984, 'F', 508), +(128459, 'Marilyn', 1984, 'F', 508), +(128460, 'Michael', 1984, 'F', 508), +(128461, 'Devon', 1984, 'F', 507), +(128462, 'Janine', 1984, 'F', 507), +(128463, 'Lara', 1984, 'F', 507), +(128464, 'Betty', 1984, 'F', 503), +(128465, 'Celia', 1984, 'F', 501), +(128466, 'Christen', 1984, 'F', 500), +(128467, 'Corinne', 1984, 'F', 498), +(128468, 'Jena', 1984, 'F', 492), +(128469, 'Laurel', 1984, 'F', 491), +(128470, 'Kristal', 1984, 'F', 490), +(128471, 'Belinda', 1984, 'F', 488), +(128472, 'Rosemary', 1984, 'F', 488), +(128473, 'Bridgette', 1984, 'F', 483), +(128474, 'Tameka', 1984, 'F', 483), +(128475, 'Blair', 1984, 'F', 482), +(128476, 'Callie', 1984, 'F', 482), +(128477, 'Lakisha', 1984, 'F', 481), +(128478, 'Genevieve', 1984, 'F', 479), +(128479, 'Shirley', 1984, 'F', 476), +(128480, 'Maribel', 1984, 'F', 474), +(128481, 'Kendall', 1984, 'F', 472), +(128482, 'Iris', 1984, 'F', 471), +(128483, 'Jodie', 1984, 'F', 471), +(128484, 'Elisha', 1984, 'F', 468), +(128485, 'Lillian', 1984, 'F', 468), +(128486, 'Sasha', 1984, 'F', 467), +(128487, 'Britney', 1984, 'F', 465), +(128488, 'Alyson', 1984, 'F', 464), +(128489, 'Angie', 1984, 'F', 464), +(128490, 'Norma', 1984, 'F', 463), +(128491, 'Lena', 1984, 'F', 462), +(128492, 'Adrian', 1984, 'F', 459), +(128493, 'Darlene', 1984, 'F', 458), +(128494, 'Christian', 1984, 'F', 457), +(128495, 'Julianne', 1984, 'F', 457), +(128496, 'Larissa', 1984, 'F', 456), +(128497, 'Tracie', 1984, 'F', 456), +(128498, 'Betsy', 1984, 'F', 455), +(128499, 'Alejandra', 1984, 'F', 454), +(128500, 'Jasmin', 1984, 'F', 454), +(128501, 'Bobbi', 1984, 'F', 453), +(128502, 'Shayna', 1984, 'F', 453), +(128503, 'Fallon', 1984, 'F', 452), +(128504, 'Mia', 1984, 'F', 452), +(128505, 'Joann', 1984, 'F', 450), +(128506, 'Dianna', 1984, 'F', 449), +(128507, 'Kaitlyn', 1984, 'F', 449), +(128508, 'Teri', 1984, 'F', 448), +(128509, 'Jayme', 1984, 'F', 446), +(128510, 'Ashlie', 1984, 'F', 443), +(128511, 'Noelle', 1984, 'F', 439), +(128512, 'Chanel', 1984, 'F', 437), +(128513, 'Josephine', 1984, 'F', 437), +(128514, 'Marlene', 1984, 'F', 437), +(128515, 'Leann', 1984, 'F', 435), +(128516, 'Hayley', 1984, 'F', 433), +(128517, 'Chandra', 1984, 'F', 430), +(128518, 'Ginger', 1984, 'F', 430), +(128519, 'Tiffani', 1984, 'F', 428), +(128520, 'Elyse', 1984, 'F', 426), +(128521, 'Lora', 1984, 'F', 426), +(128522, 'Lucy', 1984, 'F', 424), +(128523, 'Kacie', 1984, 'F', 420), +(128524, 'Isabel', 1984, 'F', 419), +(128525, 'Marina', 1984, 'F', 417), +(128526, 'Adrianne', 1984, 'F', 416), +(128527, 'Tera', 1984, 'F', 416), +(128528, 'Yesenia', 1984, 'F', 415), +(128529, 'Tiana', 1984, 'F', 412), +(128530, 'Brenna', 1984, 'F', 411), +(128531, 'Vivian', 1984, 'F', 410), +(128532, 'Raven', 1984, 'F', 407), +(128533, 'Cassidy', 1984, 'F', 406), +(128534, 'Dena', 1984, 'F', 406), +(128535, 'Lea', 1984, 'F', 404), +(128536, 'Chantel', 1984, 'F', 401), +(128537, 'Tiara', 1984, 'F', 400), +(128538, 'Margarita', 1984, 'F', 399), +(128539, 'Trina', 1984, 'F', 399), +(128540, 'Susana', 1984, 'F', 397), +(128541, 'Tiffanie', 1984, 'F', 396), +(128542, 'Jacklyn', 1984, 'F', 395), +(128543, 'Tania', 1984, 'F', 395), +(128544, 'Anastasia', 1984, 'F', 392), +(128545, 'Christopher', 1984, 'F', 392), +(128546, 'Esmeralda', 1984, 'F', 392), +(128547, 'Christi', 1984, 'F', 388), +(128548, 'Tatiana', 1984, 'F', 388), +(128549, 'Billie', 1984, 'F', 387), +(128550, 'Kim', 1984, 'F', 386), +(128551, 'Shameka', 1984, 'F', 385), +(128552, 'Daniela', 1984, 'F', 384), +(128553, 'Blanca', 1984, 'F', 382), +(128554, 'Lorraine', 1984, 'F', 379), +(128555, 'Breanne', 1984, 'F', 378), +(128556, 'Carolina', 1984, 'F', 376), +(128557, 'Lana', 1984, 'F', 376), +(128558, 'Melisa', 1984, 'F', 376), +(128559, 'Lacie', 1984, 'F', 375), +(128560, 'Darcy', 1984, 'F', 374), +(128561, 'Joni', 1984, 'F', 374), +(128562, 'Cathy', 1984, 'F', 373), +(128563, 'Casandra', 1984, 'F', 372), +(128564, 'Kyla', 1984, 'F', 369), +(128565, 'Aisha', 1984, 'F', 368), +(128566, 'Selena', 1984, 'F', 368), +(128567, 'Kirby', 1984, 'F', 367), +(128568, 'Rosanna', 1984, 'F', 367), +(128569, 'Ashly', 1984, 'F', 364), +(128570, 'Ariana', 1984, 'F', 363), +(128571, 'Chelsie', 1984, 'F', 363), +(128572, 'Debbie', 1984, 'F', 363), +(128573, 'Lyndsay', 1984, 'F', 362), +(128574, 'Lee', 1984, 'F', 360), +(128575, 'Rhiannon', 1984, 'F', 360), +(128576, 'Alaina', 1984, 'F', 359), +(128577, 'Gwendolyn', 1984, 'F', 359), +(128578, 'Abbey', 1984, 'F', 357), +(128579, 'Cherie', 1984, 'F', 357), +(128580, 'Janna', 1984, 'F', 357), +(128581, 'Lashonda', 1984, 'F', 357), +(128582, 'Latrice', 1984, 'F', 353), +(128583, 'Francesca', 1984, 'F', 351), +(128584, 'Arlene', 1984, 'F', 350), +(128585, 'Marcia', 1984, 'F', 350), +(128586, 'Dina', 1984, 'F', 348), +(128587, 'Marsha', 1984, 'F', 346), +(128588, 'Natalia', 1984, 'F', 346), +(128589, 'Racheal', 1984, 'F', 345), +(128590, 'Mandi', 1984, 'F', 344), +(128591, 'Angelique', 1984, 'F', 343), +(128592, 'Kassandra', 1984, 'F', 342), +(128593, 'Lynette', 1984, 'F', 342), +(128594, 'Antonia', 1984, 'F', 338), +(128595, 'Jeannie', 1984, 'F', 338), +(128596, 'Cheri', 1984, 'F', 336), +(128597, 'Liliana', 1984, 'F', 336), +(128598, 'Mackenzie', 1984, 'F', 335), +(128599, 'Lucia', 1984, 'F', 334), +(128600, 'Michaela', 1984, 'F', 333), +(128601, 'Alecia', 1984, 'F', 331), +(128602, 'Leanna', 1984, 'F', 329), +(128603, 'India', 1984, 'F', 328), +(128604, 'Peggy', 1984, 'F', 328), +(128605, 'Kimberley', 1984, 'F', 327), +(128606, 'Tierra', 1984, 'F', 327), +(128607, 'Athena', 1984, 'F', 326), +(128608, 'Joan', 1984, 'F', 326), +(128609, 'Rocio', 1984, 'F', 323), +(128610, 'Shaina', 1984, 'F', 323), +(128611, 'Asia', 1984, 'F', 322), +(128612, 'Bernadette', 1984, 'F', 321), +(128613, 'Dayna', 1984, 'F', 321), +(128614, 'Candy', 1984, 'F', 320), +(128615, 'Lakesha', 1984, 'F', 320), +(128616, 'Nadine', 1984, 'F', 320), +(128617, 'Clara', 1984, 'F', 319), +(128618, 'Deidre', 1984, 'F', 319), +(128619, 'Martina', 1984, 'F', 319), +(128620, 'Elissa', 1984, 'F', 315), +(128621, 'Karissa', 1984, 'F', 315), +(128622, 'Roberta', 1984, 'F', 315), +(128623, 'Kenya', 1984, 'F', 313), +(128624, 'Kylie', 1984, 'F', 313), +(128625, 'Luz', 1984, 'F', 313), +(128626, 'Mariah', 1984, 'F', 311), +(128627, 'Myra', 1984, 'F', 310), +(128628, 'Chloe', 1984, 'F', 308), +(128629, 'Loretta', 1984, 'F', 308), +(128630, 'Janie', 1984, 'F', 306), +(128631, 'Kali', 1984, 'F', 306), +(128632, 'Deana', 1984, 'F', 305), +(128633, 'Maranda', 1984, 'F', 304), +(128634, 'Juliana', 1984, 'F', 303), +(128635, 'Catrina', 1984, 'F', 302), +(128636, 'Corina', 1984, 'F', 302), +(128637, 'Shantel', 1984, 'F', 302), +(128638, 'Jeanne', 1984, 'F', 300), +(128639, 'Maritza', 1984, 'F', 300), +(128640, 'Arielle', 1984, 'F', 299), +(128641, 'Laci', 1984, 'F', 298), +(128642, 'Devin', 1984, 'F', 297), +(128643, 'Tami', 1984, 'F', 296), +(128644, 'Araceli', 1984, 'F', 295), +(128645, 'Georgia', 1984, 'F', 295), +(128646, 'Kristyn', 1984, 'F', 295), +(128647, 'Corey', 1984, 'F', 294), +(128648, 'Edith', 1984, 'F', 294), +(128649, 'Loren', 1984, 'F', 294), +(128650, 'Matthew', 1984, 'F', 294), +(128651, 'Mercedes', 1984, 'F', 294), +(128652, 'Mollie', 1984, 'F', 292), +(128653, 'Silvia', 1984, 'F', 292), +(128654, 'Tori', 1984, 'F', 292), +(128655, 'Wanda', 1984, 'F', 292), +(128656, 'Tosha', 1984, 'F', 291), +(128657, 'Latosha', 1984, 'F', 289), +(128658, 'Valarie', 1984, 'F', 289), +(128659, 'Janell', 1984, 'F', 288), +(128660, 'Cori', 1984, 'F', 287), +(128661, 'Jesse', 1984, 'F', 287), +(128662, 'Ladonna', 1984, 'F', 286), +(128663, 'Marianne', 1984, 'F', 286), +(128664, 'Madeline', 1984, 'F', 285), +(128665, 'Sydney', 1984, 'F', 285), +(128666, 'Celina', 1984, 'F', 283), +(128667, 'Alesha', 1984, 'F', 282), +(128668, 'Brittani', 1984, 'F', 282), +(128669, 'Jeannette', 1984, 'F', 282), +(128670, 'Daphne', 1984, 'F', 281), +(128671, 'Liza', 1984, 'F', 281), +(128672, 'Shamika', 1984, 'F', 281), +(128673, 'Penny', 1984, 'F', 279), +(128674, 'Cari', 1984, 'F', 278), +(128675, 'Precious', 1984, 'F', 278), +(128676, 'Bridgett', 1984, 'F', 277), +(128677, 'Dara', 1984, 'F', 277), +(128678, 'Marcella', 1984, 'F', 277), +(128679, 'Shanika', 1984, 'F', 277), +(128680, 'Alanna', 1984, 'F', 275), +(128681, 'Justina', 1984, 'F', 275), +(128682, 'Andria', 1984, 'F', 273), +(128683, 'Irma', 1984, 'F', 273), +(128684, 'Karin', 1984, 'F', 272), +(128685, 'Ashely', 1984, 'F', 271), +(128686, 'Marjorie', 1984, 'F', 271), +(128687, 'Marla', 1984, 'F', 271), +(128688, 'Daniel', 1984, 'F', 269), +(128689, 'Maryann', 1984, 'F', 269), +(128690, 'Nakia', 1984, 'F', 269), +(128691, 'Shawn', 1984, 'F', 268), +(128692, 'Bailey', 1984, 'F', 267), +(128693, 'Christal', 1984, 'F', 267), +(128694, 'Joshua', 1984, 'F', 267), +(128695, 'Sherrie', 1984, 'F', 267), +(128696, 'Talia', 1984, 'F', 267), +(128697, 'Kandice', 1984, 'F', 266), +(128698, 'Octavia', 1984, 'F', 266), +(128699, 'Aileen', 1984, 'F', 265), +(128700, 'Leeann', 1984, 'F', 265), +(128701, 'Noemi', 1984, 'F', 265), +(128702, 'Sonja', 1984, 'F', 265), +(128703, 'Tarah', 1984, 'F', 265), +(128704, 'Janette', 1984, 'F', 263), +(128705, 'Princess', 1984, 'F', 262), +(128706, 'Malinda', 1984, 'F', 261), +(128707, 'Simone', 1984, 'F', 261), +(128708, 'Ivy', 1984, 'F', 259), +(128709, 'Linsey', 1984, 'F', 258), +(128710, 'Susanna', 1984, 'F', 257), +(128711, 'Kimberlee', 1984, 'F', 256), +(128712, 'Gillian', 1984, 'F', 255), +(128713, 'Hanna', 1984, 'F', 253), +(128714, 'Kati', 1984, 'F', 253), +(128715, 'Olga', 1984, 'F', 253), +(128716, 'Emilie', 1984, 'F', 251), +(128717, 'Selina', 1984, 'F', 251), +(128718, 'Sofia', 1984, 'F', 251), +(128719, 'Holli', 1984, 'F', 250), +(128720, 'Abbie', 1984, 'F', 249), +(128721, 'Beatriz', 1984, 'F', 249), +(128722, 'Josie', 1984, 'F', 249), +(128723, 'Ingrid', 1984, 'F', 248), +(128724, 'Carina', 1984, 'F', 246), +(128725, 'Fatima', 1984, 'F', 246), +(128726, 'Maegan', 1984, 'F', 245), +(128727, 'Marcy', 1984, 'F', 245), +(128728, 'Doris', 1984, 'F', 244), +(128729, 'Eleanor', 1984, 'F', 244), +(128730, 'Eliza', 1984, 'F', 244), +(128731, 'Candi', 1984, 'F', 243), +(128732, 'Tanesha', 1984, 'F', 243), +(128733, 'Jeanine', 1984, 'F', 242), +(128734, 'Danelle', 1984, 'F', 241), +(128735, 'Maya', 1984, 'F', 241), +(128736, 'Noel', 1984, 'F', 241), +(128737, 'Eboni', 1984, 'F', 239), +(128738, 'Venessa', 1984, 'F', 239), +(128739, 'James', 1984, 'F', 238), +(128740, 'Britni', 1984, 'F', 237), +(128741, 'Cristy', 1984, 'F', 237), +(128742, 'Deidra', 1984, 'F', 237), +(128743, 'Gail', 1984, 'F', 237), +(128744, 'John', 1984, 'F', 237), +(128745, 'Meghann', 1984, 'F', 236), +(128746, 'Beatrice', 1984, 'F', 235), +(128747, 'Brandon', 1984, 'F', 235), +(128748, 'Ciara', 1984, 'F', 235), +(128749, 'David', 1984, 'F', 234), +(128750, 'Dora', 1984, 'F', 234), +(128751, 'Adrianna', 1984, 'F', 233), +(128752, 'Daniella', 1984, 'F', 233), +(128753, 'Marcie', 1984, 'F', 233), +(128754, 'Griselda', 1984, 'F', 232), +(128755, 'Glenda', 1984, 'F', 231), +(128756, 'Marci', 1984, 'F', 231), +(128757, 'Pauline', 1984, 'F', 231), +(128758, 'Kyle', 1984, 'F', 230), +(128759, 'Mara', 1984, 'F', 230), +(128760, 'Robert', 1984, 'F', 230), +(128761, 'Sierra', 1984, 'F', 230), +(128762, 'Marlena', 1984, 'F', 229), +(128763, 'Misti', 1984, 'F', 229), +(128764, 'Lucinda', 1984, 'F', 228), +(128765, 'Gladys', 1984, 'F', 227), +(128766, 'Hailey', 1984, 'F', 227), +(128767, 'Sharonda', 1984, 'F', 226), +(128768, 'Siobhan', 1984, 'F', 226), +(128769, 'Lynda', 1984, 'F', 225), +(128770, 'Candis', 1984, 'F', 224), +(128771, 'Cora', 1984, 'F', 224), +(128772, 'Delilah', 1984, 'F', 224), +(128773, 'Lily', 1984, 'F', 224), +(128774, 'Annmarie', 1984, 'F', 223), +(128775, 'Lynsey', 1984, 'F', 223), +(128776, 'Nicolette', 1984, 'F', 223), +(128777, 'Tasia', 1984, 'F', 223), +(128778, 'Vicki', 1984, 'F', 223), +(128779, 'Laquita', 1984, 'F', 222), +(128780, 'Maura', 1984, 'F', 222), +(128781, 'Rena', 1984, 'F', 222), +(128782, 'Jenelle', 1984, 'F', 220), +(128783, 'Maricela', 1984, 'F', 220), +(128784, 'Sheryl', 1984, 'F', 220), +(128785, 'Cameron', 1984, 'F', 219), +(128786, 'Casie', 1984, 'F', 219), +(128787, 'Geneva', 1984, 'F', 219), +(128788, 'Renae', 1984, 'F', 219), +(128789, 'Kacey', 1984, 'F', 218), +(128790, 'Sadie', 1984, 'F', 217), +(128791, 'Elsa', 1984, 'F', 216), +(128792, 'Kassie', 1984, 'F', 216), +(128793, 'Tamra', 1984, 'F', 216), +(128794, 'Tess', 1984, 'F', 216), +(128795, 'Cory', 1984, 'F', 215), +(128796, 'Janae', 1984, 'F', 215), +(128797, 'Chastity', 1984, 'F', 214), +(128798, 'Santana', 1984, 'F', 214), +(128799, 'Jeri', 1984, 'F', 213), +(128800, 'Shanda', 1984, 'F', 213), +(128801, 'Caitlyn', 1984, 'F', 212), +(128802, 'Desirae', 1984, 'F', 212), +(128803, 'Brynn', 1984, 'F', 211), +(128804, 'Cristal', 1984, 'F', 211), +(128805, 'Joseph', 1984, 'F', 211), +(128806, 'Kourtney', 1984, 'F', 211), +(128807, 'Viviana', 1984, 'F', 211), +(128808, 'Cherish', 1984, 'F', 210), +(128809, 'Clare', 1984, 'F', 210), +(128810, 'Jo', 1984, 'F', 210), +(128811, 'Perla', 1984, 'F', 210), +(128812, 'Alexa', 1984, 'F', 209), +(128813, 'Cody', 1984, 'F', 209), +(128814, 'Jeanna', 1984, 'F', 209), +(128815, 'Louise', 1984, 'F', 209), +(128816, 'Edna', 1984, 'F', 208), +(128817, 'Lizette', 1984, 'F', 208), +(128818, 'Rene', 1984, 'F', 208), +(128819, 'Sheree', 1984, 'F', 208), +(128820, 'Janel', 1984, 'F', 207), +(128821, 'Vicky', 1984, 'F', 207), +(128822, 'Aurora', 1984, 'F', 206), +(128823, 'Kristan', 1984, 'F', 206), +(128824, 'Jason', 1984, 'F', 205), +(128825, 'Grisel', 1984, 'F', 204), +(128826, 'Kathrine', 1984, 'F', 204), +(128827, 'Shanell', 1984, 'F', 204), +(128828, 'Tabetha', 1984, 'F', 204), +(128829, 'Leila', 1984, 'F', 203), +(128830, 'Delia', 1984, 'F', 202), +(128831, 'Francine', 1984, 'F', 202), +(128832, 'Keely', 1984, 'F', 202), +(128833, 'Kristian', 1984, 'F', 202), +(128834, 'Carey', 1984, 'F', 201), +(128835, 'Gena', 1984, 'F', 201), +(128836, 'Zoe', 1984, 'F', 201), +(128837, 'Danica', 1984, 'F', 200), +(128838, 'Helena', 1984, 'F', 200), +(128839, 'Kala', 1984, 'F', 199), +(128840, 'Kandace', 1984, 'F', 199), +(128841, 'Marian', 1984, 'F', 199), +(128842, 'Ramona', 1984, 'F', 199), +(128843, 'Joelle', 1984, 'F', 198), +(128844, 'Mariana', 1984, 'F', 198), +(128845, 'Stevie', 1984, 'F', 198), +(128846, 'Darla', 1984, 'F', 197), +(128847, 'Shena', 1984, 'F', 197), +(128848, 'Colette', 1984, 'F', 196), +(128849, 'Tammie', 1984, 'F', 196), +(128850, 'Adriane', 1984, 'F', 195), +(128851, 'Alycia', 1984, 'F', 195), +(128852, 'Kaci', 1984, 'F', 195), +(128853, 'Nathalie', 1984, 'F', 195), +(128854, 'Reyna', 1984, 'F', 195), +(128855, 'Sondra', 1984, 'F', 195), +(128856, 'Shanta', 1984, 'F', 194), +(128857, 'Corrie', 1984, 'F', 193), +(128858, 'Giselle', 1984, 'F', 193), +(128859, 'Georgina', 1984, 'F', 192), +(128860, 'Kyra', 1984, 'F', 192), +(128861, 'Latoria', 1984, 'F', 192), +(128862, 'Chana', 1984, 'F', 191), +(128863, 'Chiquita', 1984, 'F', 191), +(128864, 'Demetria', 1984, 'F', 191), +(128865, 'Kaylee', 1984, 'F', 191), +(128866, 'Lindy', 1984, 'F', 191), +(128867, 'Shara', 1984, 'F', 191), +(128868, 'Shasta', 1984, 'F', 191), +(128869, 'Annemarie', 1984, 'F', 190), +(128870, 'Stella', 1984, 'F', 190), +(128871, 'Tyler', 1984, 'F', 190), +(128872, 'Hilda', 1984, 'F', 188), +(128873, 'Kia', 1984, 'F', 188), +(128874, 'Kylee', 1984, 'F', 188), +(128875, 'Roxana', 1984, 'F', 188), +(128876, 'Deena', 1984, 'F', 187), +(128877, 'Shantell', 1984, 'F', 186), +(128878, 'Shante', 1984, 'F', 185), +(128879, 'Charmaine', 1984, 'F', 184), +(128880, 'Julianna', 1984, 'F', 184), +(128881, 'Krysta', 1984, 'F', 184), +(128882, 'Deirdre', 1984, 'F', 183), +(128883, 'Jonathan', 1984, 'F', 183), +(128884, 'Malissa', 1984, 'F', 183), +(128885, 'Tanika', 1984, 'F', 183), +(128886, 'Ashli', 1984, 'F', 182), +(128887, 'Echo', 1984, 'F', 182), +(128888, 'Jenni', 1984, 'F', 182), +(128889, 'Jeana', 1984, 'F', 181), +(128890, 'Kami', 1984, 'F', 181), +(128891, 'Terry', 1984, 'F', 181), +(128892, 'Justin', 1984, 'F', 180), +(128893, 'Karrie', 1984, 'F', 180), +(128894, 'Valencia', 1984, 'F', 180), +(128895, 'Carley', 1984, 'F', 179), +(128896, 'Kerrie', 1984, 'F', 179), +(128897, 'Mai', 1984, 'F', 179), +(128898, 'Shenna', 1984, 'F', 179), +(128899, 'Tisha', 1984, 'F', 179), +(128900, 'Rosalinda', 1984, 'F', 178), +(128901, 'Shea', 1984, 'F', 178), +(128902, 'Yadira', 1984, 'F', 178), +(128903, 'Cathleen', 1984, 'F', 177), +(128904, 'Cecelia', 1984, 'F', 177), +(128905, 'Shalonda', 1984, 'F', 177), +(128906, 'Dolores', 1984, 'F', 176), +(128907, 'Latanya', 1984, 'F', 176), +(128908, 'Aja', 1984, 'F', 175), +(128909, 'Charissa', 1984, 'F', 175), +(128910, 'Cheyenne', 1984, 'F', 175), +(128911, 'Kiley', 1984, 'F', 175), +(128912, 'Micah', 1984, 'F', 175), +(128913, 'Teela', 1984, 'F', 175), +(128914, 'Marta', 1984, 'F', 174), +(128915, 'Brook', 1984, 'F', 173), +(128916, 'Mari', 1984, 'F', 173), +(128917, 'Marisela', 1984, 'F', 173), +(128918, 'Rikki', 1984, 'F', 173), +(128919, 'Jessi', 1984, 'F', 172), +(128920, 'Lashanda', 1984, 'F', 171), +(128921, 'Luisa', 1984, 'F', 171), +(128922, 'Stefani', 1984, 'F', 171), +(128923, 'Susie', 1984, 'F', 171), +(128924, 'Jesica', 1984, 'F', 170), +(128925, 'Juana', 1984, 'F', 170), +(128926, 'Katheryn', 1984, 'F', 170), +(128927, 'Monika', 1984, 'F', 170), +(128928, 'Elaina', 1984, 'F', 169), +(128929, 'Melina', 1984, 'F', 169), +(128930, 'Pearl', 1984, 'F', 169), +(128931, 'Portia', 1984, 'F', 168), +(128932, 'Rosemarie', 1984, 'F', 168), +(128933, 'Tenisha', 1984, 'F', 168), +(128934, 'Cristin', 1984, 'F', 167), +(128935, 'Emilee', 1984, 'F', 167), +(128936, 'Lakeshia', 1984, 'F', 167), +(128937, 'Rosalie', 1984, 'F', 167), +(128938, 'Roxanna', 1984, 'F', 167), +(128939, 'Tonia', 1984, 'F', 167), +(128940, 'Ashlea', 1984, 'F', 166), +(128941, 'Chantelle', 1984, 'F', 166), +(128942, 'Graciela', 1984, 'F', 166), +(128943, 'Jamila', 1984, 'F', 166), +(128944, 'Kirstin', 1984, 'F', 166), +(128945, 'Lissette', 1984, 'F', 166), +(128946, 'Marion', 1984, 'F', 165), +(128947, 'Stacia', 1984, 'F', 165), +(128948, 'Wendi', 1984, 'F', 165), +(128949, 'Ami', 1984, 'F', 164), +(128950, 'Corrine', 1984, 'F', 164), +(128951, 'Hallie', 1984, 'F', 164), +(128952, 'Iesha', 1984, 'F', 164), +(128953, 'Ronda', 1984, 'F', 164), +(128954, 'Savanna', 1984, 'F', 164), +(128955, 'Falon', 1984, 'F', 163), +(128956, 'Jazmin', 1984, 'F', 163), +(128957, 'Sharita', 1984, 'F', 163), +(128958, 'Tristan', 1984, 'F', 163), +(128959, 'Dianne', 1984, 'F', 162), +(128960, 'Jada', 1984, 'F', 162), +(128961, 'Loni', 1984, 'F', 162), +(128962, 'Salina', 1984, 'F', 162), +(128963, 'Tyesha', 1984, 'F', 162), +(128964, 'Carlie', 1984, 'F', 161), +(128965, 'Harmony', 1984, 'F', 161), +(128966, 'Suzanna', 1984, 'F', 161), +(128967, 'Lourdes', 1984, 'F', 160), +(128968, 'Paola', 1984, 'F', 160), +(128969, 'Breann', 1984, 'F', 159), +(128970, 'Lawanda', 1984, 'F', 159), +(128971, 'Anthony', 1984, 'F', 158), +(128972, 'Liana', 1984, 'F', 158), +(128973, 'Mckenzie', 1984, 'F', 158), +(128974, 'William', 1984, 'F', 158), +(128975, 'Alexia', 1984, 'F', 157), +(128976, 'Bernice', 1984, 'F', 157), +(128977, 'Kori', 1984, 'F', 157), +(128978, 'Tana', 1984, 'F', 157), +(128979, 'Maira', 1984, 'F', 156), +(128980, 'Meggan', 1984, 'F', 156), +(128981, 'Sherita', 1984, 'F', 156), +(128982, 'Sophie', 1984, 'F', 156), +(128983, 'Ada', 1984, 'F', 155), +(128984, 'Cathryn', 1984, 'F', 155), +(128985, 'Ida', 1984, 'F', 155), +(128986, 'Janessa', 1984, 'F', 155), +(128987, 'June', 1984, 'F', 155), +(128988, 'Mellissa', 1984, 'F', 155), +(128989, 'Jaimie', 1984, 'F', 154), +(128990, 'Stephaine', 1984, 'F', 154), +(128991, 'Kasandra', 1984, 'F', 153), +(128992, 'Markita', 1984, 'F', 153), +(128993, 'Therese', 1984, 'F', 153), +(128994, 'Andrew', 1984, 'F', 152), +(128995, 'Gabriella', 1984, 'F', 152), +(128996, 'Richelle', 1984, 'F', 152), +(128997, 'Shavon', 1984, 'F', 152), +(128998, 'Darcie', 1984, 'F', 151), +(128999, 'Phyllis', 1984, 'F', 151), +(129000, 'Quiana', 1984, 'F', 151), +(129001, 'Tawny', 1984, 'F', 151), +(129002, 'Vickie', 1984, 'F', 151), +(129003, 'Chaya', 1984, 'F', 150), +(129004, 'Ciji', 1984, 'F', 150), +(129005, 'Darci', 1984, 'F', 150), +(129006, 'Eugenia', 1984, 'F', 150), +(129007, 'Karly', 1984, 'F', 150), +(129008, 'Alesia', 1984, 'F', 149), +(129009, 'Antionette', 1984, 'F', 149), +(129010, 'Damaris', 1984, 'F', 149), +(129011, 'Lisette', 1984, 'F', 149), +(129012, 'Magdalena', 1984, 'F', 149), +(129013, 'Mildred', 1984, 'F', 149), +(129014, 'Shanon', 1984, 'F', 149), +(129015, 'Starla', 1984, 'F', 149), +(129016, 'Brian', 1984, 'F', 148), +(129017, 'Danyelle', 1984, 'F', 148), +(129018, 'Davina', 1984, 'F', 148), +(129019, 'Eric', 1984, 'F', 148), +(129020, 'Jeannine', 1984, 'F', 148), +(129021, 'Ava', 1984, 'F', 147), +(129022, 'Cherise', 1984, 'F', 147), +(129023, 'Johnna', 1984, 'F', 147), +(129024, 'Magen', 1984, 'F', 147), +(129025, 'Margo', 1984, 'F', 147), +(129026, 'Natosha', 1984, 'F', 147), +(129027, 'Sue', 1984, 'F', 147), +(129028, 'Bertha', 1984, 'F', 146), +(129029, 'Caryn', 1984, 'F', 146), +(129030, 'Dannielle', 1984, 'F', 146), +(129031, 'Eve', 1984, 'F', 146), +(129032, 'Felisha', 1984, 'F', 146), +(129033, 'Kay', 1984, 'F', 146), +(129034, 'Malia', 1984, 'F', 146), +(129035, 'Mellisa', 1984, 'F', 146), +(129036, 'Nicholas', 1984, 'F', 146), +(129037, 'Nikole', 1984, 'F', 146), +(129038, 'Shaneka', 1984, 'F', 146), +(129039, 'Shonda', 1984, 'F', 146), +(129040, 'Sommer', 1984, 'F', 146), +(129041, 'Rosalyn', 1984, 'F', 145), +(129042, 'Starr', 1984, 'F', 145), +(129043, 'Lia', 1984, 'F', 144), +(129044, 'Shanita', 1984, 'F', 144), +(129045, 'Angeline', 1984, 'F', 143), +(129046, 'Kacy', 1984, 'F', 143), +(129047, 'Adam', 1984, 'F', 142), +(129048, 'Samatha', 1984, 'F', 142), +(129049, 'Shanelle', 1984, 'F', 142), +(129050, 'Yasmin', 1984, 'F', 142), +(129051, 'Alyse', 1984, 'F', 141), +(129052, 'Anisha', 1984, 'F', 141), +(129053, 'Brandee', 1984, 'F', 141), +(129054, 'Ebonie', 1984, 'F', 141), +(129055, 'Leilani', 1984, 'F', 141), +(129056, 'Niki', 1984, 'F', 141), +(129057, 'Tyra', 1984, 'F', 141), +(129058, 'Chanelle', 1984, 'F', 140), +(129059, 'Chantal', 1984, 'F', 140), +(129060, 'Christiana', 1984, 'F', 140), +(129061, 'Kiana', 1984, 'F', 140), +(129062, 'Valeria', 1984, 'F', 140), +(129063, 'Cassondra', 1984, 'F', 139), +(129064, 'Kisha', 1984, 'F', 139), +(129065, 'Latia', 1984, 'F', 139), +(129066, 'Shakira', 1984, 'F', 139), +(129067, 'Shaquita', 1984, 'F', 139), +(129068, 'Stephany', 1984, 'F', 139), +(129069, 'Alysha', 1984, 'F', 138), +(129070, 'Ella', 1984, 'F', 138), +(129071, 'Emilia', 1984, 'F', 138), +(129072, 'Eunice', 1984, 'F', 138), +(129073, 'Violet', 1984, 'F', 138), +(129074, 'Adria', 1984, 'F', 137), +(129075, 'Greta', 1984, 'F', 137), +(129076, 'Lashawn', 1984, 'F', 137), +(129077, 'Paris', 1984, 'F', 137), +(129078, 'Rosie', 1984, 'F', 137), +(129079, 'Shavonne', 1984, 'F', 137), +(129080, 'Tamera', 1984, 'F', 137), +(129081, 'Jaqueline', 1984, 'F', 136), +(129082, 'Lynnette', 1984, 'F', 136), +(129083, 'Aaron', 1984, 'F', 135), +(129084, 'Alysia', 1984, 'F', 135), +(129085, 'Ivory', 1984, 'F', 135), +(129086, 'Kandi', 1984, 'F', 135), +(129087, 'Karli', 1984, 'F', 135), +(129088, 'Kenyatta', 1984, 'F', 135), +(129089, 'Rebeca', 1984, 'F', 135), +(129090, 'Sarina', 1984, 'F', 135), +(129091, 'Alina', 1984, 'F', 134), +(129092, 'Katina', 1984, 'F', 134), +(129093, 'Kelsie', 1984, 'F', 134), +(129094, 'Lois', 1984, 'F', 134), +(129095, 'Angelia', 1984, 'F', 133), +(129096, 'Fawn', 1984, 'F', 133), +(129097, 'Latoyia', 1984, 'F', 133), +(129098, 'Nikita', 1984, 'F', 133), +(129099, 'Stephenie', 1984, 'F', 133), +(129100, 'Annamarie', 1984, 'F', 132), +(129101, 'Farrah', 1984, 'F', 132), +(129102, 'Josefina', 1984, 'F', 132), +(129103, 'Lynne', 1984, 'F', 132), +(129104, 'Nichelle', 1984, 'F', 132), +(129105, 'Reina', 1984, 'F', 132), +(129106, 'Rhea', 1984, 'F', 132), +(129107, 'Ursula', 1984, 'F', 132), +(129108, 'Florence', 1984, 'F', 131), +(129109, 'Kindra', 1984, 'F', 131), +(129110, 'Laquisha', 1984, 'F', 131), +(129111, 'Latesha', 1984, 'F', 131), +(129112, 'Latricia', 1984, 'F', 131), +(129113, 'Roseann', 1984, 'F', 131), +(129114, 'Roseanna', 1984, 'F', 131), +(129115, 'Shelia', 1984, 'F', 131), +(129116, 'Elana', 1984, 'F', 130), +(129117, 'Jayne', 1984, 'F', 130), +(129118, 'Kendal', 1984, 'F', 130), +(129119, 'Stephani', 1984, 'F', 130), +(129120, 'Anya', 1984, 'F', 129), +(129121, 'Bree', 1984, 'F', 129), +(129122, 'Carli', 1984, 'F', 129), +(129123, 'Colby', 1984, 'F', 129), +(129124, 'Domonique', 1984, 'F', 129), +(129125, 'Nikia', 1984, 'F', 129), +(129126, 'Vanesa', 1984, 'F', 129), +(129127, 'Amberly', 1984, 'F', 128), +(129128, 'Denisha', 1984, 'F', 128), +(129129, 'Marquitta', 1984, 'F', 128), +(129130, 'Afton', 1984, 'F', 127), +(129131, 'Anais', 1984, 'F', 127), +(129132, 'Catalina', 1984, 'F', 127), +(129133, 'Jazmine', 1984, 'F', 127), +(129134, 'Juliet', 1984, 'F', 127), +(129135, 'Marcela', 1984, 'F', 127), +(129136, 'Steven', 1984, 'F', 127), +(129137, 'Tianna', 1984, 'F', 127), +(129138, 'Jeanie', 1984, 'F', 126), +(129139, 'Marybeth', 1984, 'F', 126), +(129140, 'May', 1984, 'F', 126), +(129141, 'Tammi', 1984, 'F', 126), +(129142, 'Tawana', 1984, 'F', 126), +(129143, 'Vera', 1984, 'F', 126), +(129144, 'Ali', 1984, 'F', 125), +(129145, 'Dionne', 1984, 'F', 125), +(129146, 'Francis', 1984, 'F', 125), +(129147, 'Genna', 1984, 'F', 125), +(129148, 'Lina', 1984, 'F', 125), +(129149, 'Shannan', 1984, 'F', 125), +(129150, 'Timothy', 1984, 'F', 125), +(129151, 'Cassi', 1984, 'F', 124), +(129152, 'Jan', 1984, 'F', 124), +(129153, 'Kevin', 1984, 'F', 124), +(129154, 'Lorie', 1984, 'F', 124), +(129155, 'Natashia', 1984, 'F', 124); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(129156, 'Rachele', 1984, 'F', 124), +(129157, 'Shaunna', 1984, 'F', 124), +(129158, 'Susanne', 1984, 'F', 124), +(129159, 'Karyn', 1984, 'F', 123), +(129160, 'Kasie', 1984, 'F', 123), +(129161, 'Leona', 1984, 'F', 123), +(129162, 'Louisa', 1984, 'F', 123), +(129163, 'Scarlett', 1984, 'F', 123), +(129164, 'Sharee', 1984, 'F', 123), +(129165, 'Taisha', 1984, 'F', 123), +(129166, 'Brittni', 1984, 'F', 122), +(129167, 'Esperanza', 1984, 'F', 122), +(129168, 'Faye', 1984, 'F', 122), +(129169, 'Lindsy', 1984, 'F', 122), +(129170, 'Magan', 1984, 'F', 122), +(129171, 'Mona', 1984, 'F', 122), +(129172, 'Thelma', 1984, 'F', 122), +(129173, 'Felecia', 1984, 'F', 121), +(129174, 'Jessika', 1984, 'F', 121), +(129175, 'Kera', 1984, 'F', 121), +(129176, 'Marguerite', 1984, 'F', 121), +(129177, 'Shellie', 1984, 'F', 121), +(129178, 'Ayesha', 1984, 'F', 120), +(129179, 'Consuelo', 1984, 'F', 120), +(129180, 'Micaela', 1984, 'F', 120), +(129181, 'Regan', 1984, 'F', 120), +(129182, 'Shira', 1984, 'F', 120), +(129183, 'Susannah', 1984, 'F', 120), +(129184, 'Tamar', 1984, 'F', 120), +(129185, 'Alexander', 1984, 'F', 119), +(129186, 'Danae', 1984, 'F', 119), +(129187, 'Deanne', 1984, 'F', 119), +(129188, 'Dominque', 1984, 'F', 119), +(129189, 'Nicolle', 1984, 'F', 119), +(129190, 'Paulette', 1984, 'F', 119), +(129191, 'Sandi', 1984, 'F', 119), +(129192, 'Angelita', 1984, 'F', 118), +(129193, 'Charisse', 1984, 'F', 118), +(129194, 'Danyell', 1984, 'F', 118), +(129195, 'Maxine', 1984, 'F', 118), +(129196, 'Renita', 1984, 'F', 118), +(129197, 'Thomas', 1984, 'F', 118), +(129198, 'Anabel', 1984, 'F', 117), +(129199, 'Claribel', 1984, 'F', 117), +(129200, 'Delores', 1984, 'F', 117), +(129201, 'Dulce', 1984, 'F', 117), +(129202, 'Mariel', 1984, 'F', 117), +(129203, 'Nicki', 1984, 'F', 117), +(129204, 'Porsha', 1984, 'F', 117), +(129205, 'Hazel', 1984, 'F', 116), +(129206, 'Sharlene', 1984, 'F', 116), +(129207, 'Sunny', 1984, 'F', 116), +(129208, 'Elvira', 1984, 'F', 115), +(129209, 'Francisca', 1984, 'F', 115), +(129210, 'Kaycee', 1984, 'F', 115), +(129211, 'Brittny', 1984, 'F', 114), +(129212, 'Mindi', 1984, 'F', 114), +(129213, 'Nellie', 1984, 'F', 114), +(129214, 'Candie', 1984, 'F', 113), +(129215, 'Dixie', 1984, 'F', 113), +(129216, 'Joana', 1984, 'F', 113), +(129217, 'Katelin', 1984, 'F', 113), +(129218, 'Serina', 1984, 'F', 113), +(129219, 'Aida', 1984, 'F', 112), +(129220, 'Arianna', 1984, 'F', 112), +(129221, 'Charles', 1984, 'F', 112), +(129222, 'Jaimee', 1984, 'F', 112), +(129223, 'Juliette', 1984, 'F', 112), +(129224, 'Julissa', 1984, 'F', 112), +(129225, 'Stormy', 1984, 'F', 112), +(129226, 'Jammie', 1984, 'F', 111), +(129227, 'Lakia', 1984, 'F', 111), +(129228, 'Layla', 1984, 'F', 111), +(129229, 'Renata', 1984, 'F', 111), +(129230, 'Talisha', 1984, 'F', 111), +(129231, 'Adina', 1984, 'F', 110), +(129232, 'Amalia', 1984, 'F', 110), +(129233, 'Chelsi', 1984, 'F', 110), +(129234, 'Chrissy', 1984, 'F', 110), +(129235, 'Dallas', 1984, 'F', 110), +(129236, 'Joi', 1984, 'F', 110), +(129237, 'Britany', 1984, 'F', 109), +(129238, 'Chantell', 1984, 'F', 109), +(129239, 'Keli', 1984, 'F', 109), +(129240, 'Michell', 1984, 'F', 109), +(129241, 'Sarai', 1984, 'F', 109), +(129242, 'Shaquana', 1984, 'F', 109), +(129243, 'Tiesha', 1984, 'F', 109), +(129244, 'Tiffaney', 1984, 'F', 109), +(129245, 'Alishia', 1984, 'F', 108), +(129246, 'Crista', 1984, 'F', 108), +(129247, 'Danna', 1984, 'F', 108), +(129248, 'Dorian', 1984, 'F', 108), +(129249, 'Elicia', 1984, 'F', 108), +(129250, 'Gwen', 1984, 'F', 108), +(129251, 'Holley', 1984, 'F', 108), +(129252, 'Lorna', 1984, 'F', 108), +(129253, 'Nena', 1984, 'F', 108), +(129254, 'Sharla', 1984, 'F', 108), +(129255, 'Aracely', 1984, 'F', 107), +(129256, 'Brigette', 1984, 'F', 107), +(129257, 'Charla', 1984, 'F', 107), +(129258, 'Daniell', 1984, 'F', 107), +(129259, 'Geraldine', 1984, 'F', 107), +(129260, 'Ginny', 1984, 'F', 107), +(129261, 'Kaila', 1984, 'F', 107), +(129262, 'Nataly', 1984, 'F', 107), +(129263, 'Samara', 1984, 'F', 107), +(129264, 'Elsie', 1984, 'F', 106), +(129265, 'Jewel', 1984, 'F', 106), +(129266, 'Krysten', 1984, 'F', 106), +(129267, 'Lashawnda', 1984, 'F', 106), +(129268, 'Phoebe', 1984, 'F', 106), +(129269, 'Richard', 1984, 'F', 106), +(129270, 'Shanae', 1984, 'F', 106), +(129271, 'Shoshana', 1984, 'F', 106), +(129272, 'Tomeka', 1984, 'F', 106), +(129273, 'Jerri', 1984, 'F', 105), +(129274, 'Kaley', 1984, 'F', 105), +(129275, 'Nisha', 1984, 'F', 105), +(129276, 'Rosalind', 1984, 'F', 105), +(129277, 'Taneisha', 1984, 'F', 105), +(129278, 'Tawnya', 1984, 'F', 105), +(129279, 'Alia', 1984, 'F', 104), +(129280, 'Gayle', 1984, 'F', 104), +(129281, 'Kandis', 1984, 'F', 104), +(129282, 'Margie', 1984, 'F', 104), +(129283, 'Margot', 1984, 'F', 104), +(129284, 'Racquel', 1984, 'F', 104), +(129285, 'Cinthia', 1984, 'F', 103), +(129286, 'Corie', 1984, 'F', 103), +(129287, 'Elvia', 1984, 'F', 103), +(129288, 'Ivette', 1984, 'F', 103), +(129289, 'Kenisha', 1984, 'F', 103), +(129290, 'Letitia', 1984, 'F', 103), +(129291, 'Mariela', 1984, 'F', 103), +(129292, 'Shandra', 1984, 'F', 103), +(129293, 'Suzette', 1984, 'F', 103), +(129294, 'Tashia', 1984, 'F', 103), +(129295, 'Tawanna', 1984, 'F', 103), +(129296, 'Bettina', 1984, 'F', 102), +(129297, 'Kesha', 1984, 'F', 102), +(129298, 'Melodie', 1984, 'F', 102), +(129299, 'Rae', 1984, 'F', 102), +(129300, 'Tawanda', 1984, 'F', 102), +(129301, 'Fabiola', 1984, 'F', 101), +(129302, 'Kaleena', 1984, 'F', 101), +(129303, 'Kiera', 1984, 'F', 101), +(129304, 'Mariam', 1984, 'F', 101), +(129305, 'Quinn', 1984, 'F', 101), +(129306, 'Brigitte', 1984, 'F', 100), +(129307, 'Camilla', 1984, 'F', 100), +(129308, 'Jenae', 1984, 'F', 100), +(129309, 'Kenyetta', 1984, 'F', 100), +(129310, 'Kristel', 1984, 'F', 100), +(129311, 'Sharina', 1984, 'F', 100), +(129312, 'Tiffiny', 1984, 'F', 100), +(129313, 'Michael', 1984, 'M', 67722), +(129314, 'Christopher', 1984, 'M', 60016), +(129315, 'Matthew', 1984, 'M', 49763), +(129316, 'Joshua', 1984, 'M', 40249), +(129317, 'David', 1984, 'M', 38471), +(129318, 'Daniel', 1984, 'M', 36511), +(129319, 'James', 1984, 'M', 35843), +(129320, 'John', 1984, 'M', 32591), +(129321, 'Robert', 1984, 'M', 31752), +(129322, 'Joseph', 1984, 'M', 30506), +(129323, 'Jason', 1984, 'M', 29939), +(129324, 'Ryan', 1984, 'M', 28707), +(129325, 'Justin', 1984, 'M', 26764), +(129326, 'Andrew', 1984, 'M', 25906), +(129327, 'Brandon', 1984, 'M', 25669), +(129328, 'William', 1984, 'M', 24898), +(129329, 'Brian', 1984, 'M', 24716), +(129330, 'Adam', 1984, 'M', 23933), +(129331, 'Jonathan', 1984, 'M', 23327), +(129332, 'Nicholas', 1984, 'M', 21009), +(129333, 'Anthony', 1984, 'M', 20947), +(129334, 'Eric', 1984, 'M', 20947), +(129335, 'Steven', 1984, 'M', 18206), +(129336, 'Kevin', 1984, 'M', 17854), +(129337, 'Thomas', 1984, 'M', 17588), +(129338, 'Timothy', 1984, 'M', 16999), +(129339, 'Richard', 1984, 'M', 15591), +(129340, 'Jeffrey', 1984, 'M', 14762), +(129341, 'Aaron', 1984, 'M', 13397), +(129342, 'Benjamin', 1984, 'M', 13256), +(129343, 'Jeremy', 1984, 'M', 13256), +(129344, 'Mark', 1984, 'M', 13208), +(129345, 'Charles', 1984, 'M', 12939), +(129346, 'Kyle', 1984, 'M', 12539), +(129347, 'Stephen', 1984, 'M', 12089), +(129348, 'Patrick', 1984, 'M', 11515), +(129349, 'Jacob', 1984, 'M', 11341), +(129350, 'Nathan', 1984, 'M', 10609), +(129351, 'Scott', 1984, 'M', 10578), +(129352, 'Paul', 1984, 'M', 10453), +(129353, 'Dustin', 1984, 'M', 10401), +(129354, 'Travis', 1984, 'M', 10241), +(129355, 'Sean', 1984, 'M', 10013), +(129356, 'Gregory', 1984, 'M', 9688), +(129357, 'Zachary', 1984, 'M', 9070), +(129358, 'Kenneth', 1984, 'M', 8787), +(129359, 'Tyler', 1984, 'M', 8705), +(129360, 'Bryan', 1984, 'M', 8263), +(129361, 'Jose', 1984, 'M', 8005), +(129362, 'Jesse', 1984, 'M', 7607), +(129363, 'Chad', 1984, 'M', 7063), +(129364, 'Derek', 1984, 'M', 6968), +(129365, 'Bradley', 1984, 'M', 6567), +(129366, 'Alexander', 1984, 'M', 6482), +(129367, 'Samuel', 1984, 'M', 6357), +(129368, 'Shawn', 1984, 'M', 6044), +(129369, 'Marcus', 1984, 'M', 5992), +(129370, 'Edward', 1984, 'M', 5910), +(129371, 'Jared', 1984, 'M', 5678), +(129372, 'Peter', 1984, 'M', 5629), +(129373, 'Keith', 1984, 'M', 5324), +(129374, 'Cody', 1984, 'M', 5202), +(129375, 'Donald', 1984, 'M', 5062), +(129376, 'Juan', 1984, 'M', 4635), +(129377, 'Jordan', 1984, 'M', 4538), +(129378, 'Joel', 1984, 'M', 4523), +(129379, 'Ronald', 1984, 'M', 4508), +(129380, 'George', 1984, 'M', 4262), +(129381, 'Corey', 1984, 'M', 4241), +(129382, 'Phillip', 1984, 'M', 4231), +(129383, 'Douglas', 1984, 'M', 4142), +(129384, 'Brett', 1984, 'M', 4091), +(129385, 'Raymond', 1984, 'M', 3975), +(129386, 'Carlos', 1984, 'M', 3956), +(129387, 'Craig', 1984, 'M', 3956), +(129388, 'Gary', 1984, 'M', 3950), +(129389, 'Antonio', 1984, 'M', 3879), +(129390, 'Ian', 1984, 'M', 3790), +(129391, 'Derrick', 1984, 'M', 3661), +(129392, 'Nathaniel', 1984, 'M', 3601), +(129393, 'Philip', 1984, 'M', 3516), +(129394, 'Casey', 1984, 'M', 3514), +(129395, 'Cory', 1984, 'M', 3504), +(129396, 'Erik', 1984, 'M', 3420), +(129397, 'Shane', 1984, 'M', 3332), +(129398, 'Frank', 1984, 'M', 3329), +(129399, 'Gabriel', 1984, 'M', 3318), +(129400, 'Luis', 1984, 'M', 3258), +(129401, 'Brent', 1984, 'M', 3183), +(129402, 'Victor', 1984, 'M', 3178), +(129403, 'Todd', 1984, 'M', 3105), +(129404, 'Larry', 1984, 'M', 3104), +(129405, 'Jeffery', 1984, 'M', 3026), +(129406, 'Alex', 1984, 'M', 3024), +(129407, 'Vincent', 1984, 'M', 2970), +(129408, 'Curtis', 1984, 'M', 2954), +(129409, 'Dennis', 1984, 'M', 2952), +(129410, 'Evan', 1984, 'M', 2937), +(129411, 'Seth', 1984, 'M', 2914), +(129412, 'Randy', 1984, 'M', 2905), +(129413, 'Wesley', 1984, 'M', 2801), +(129414, 'Jeremiah', 1984, 'M', 2774), +(129415, 'Blake', 1984, 'M', 2760), +(129416, 'Christian', 1984, 'M', 2721), +(129417, 'Alan', 1984, 'M', 2699), +(129418, 'Russell', 1984, 'M', 2685), +(129419, 'Adrian', 1984, 'M', 2653), +(129420, 'Carl', 1984, 'M', 2561), +(129421, 'Jesus', 1984, 'M', 2514), +(129422, 'Luke', 1984, 'M', 2469), +(129423, 'Jerry', 1984, 'M', 2455), +(129424, 'Tony', 1984, 'M', 2440), +(129425, 'Miguel', 1984, 'M', 2418), +(129426, 'Troy', 1984, 'M', 2418), +(129427, 'Trevor', 1984, 'M', 2357), +(129428, 'Mario', 1984, 'M', 2348), +(129429, 'Austin', 1984, 'M', 2337), +(129430, 'Terry', 1984, 'M', 2336), +(129431, 'Andre', 1984, 'M', 2309), +(129432, 'Johnny', 1984, 'M', 2267), +(129433, 'Shaun', 1984, 'M', 2251), +(129434, 'Ricardo', 1984, 'M', 2203), +(129435, 'Devin', 1984, 'M', 2175), +(129436, 'Lee', 1984, 'M', 2164), +(129437, 'Mitchell', 1984, 'M', 2149), +(129438, 'Lance', 1984, 'M', 2138), +(129439, 'Martin', 1984, 'M', 2133), +(129440, 'Allen', 1984, 'M', 2125), +(129441, 'Bobby', 1984, 'M', 2118), +(129442, 'Lucas', 1984, 'M', 2111), +(129443, 'Marc', 1984, 'M', 2100), +(129444, 'Johnathan', 1984, 'M', 2096), +(129445, 'Chase', 1984, 'M', 2092), +(129446, 'Jimmy', 1984, 'M', 2069), +(129447, 'Henry', 1984, 'M', 2032), +(129448, 'Danny', 1984, 'M', 2001), +(129449, 'Kristopher', 1984, 'M', 1983), +(129450, 'Ricky', 1984, 'M', 1980), +(129451, 'Mathew', 1984, 'M', 1969), +(129452, 'Billy', 1984, 'M', 1947), +(129453, 'Albert', 1984, 'M', 1883), +(129454, 'Jonathon', 1984, 'M', 1871), +(129455, 'Lawrence', 1984, 'M', 1869), +(129456, 'Jorge', 1984, 'M', 1866), +(129457, 'Clinton', 1984, 'M', 1851), +(129458, 'Jon', 1984, 'M', 1847), +(129459, 'Manuel', 1984, 'M', 1847), +(129460, 'Randall', 1984, 'M', 1843), +(129461, 'Micheal', 1984, 'M', 1831), +(129462, 'Clayton', 1984, 'M', 1816), +(129463, 'Francisco', 1984, 'M', 1811), +(129464, 'Jamie', 1984, 'M', 1765), +(129465, 'Colin', 1984, 'M', 1764), +(129466, 'Drew', 1984, 'M', 1764), +(129467, 'Ross', 1984, 'M', 1744), +(129468, 'Garrett', 1984, 'M', 1730), +(129469, 'Roger', 1984, 'M', 1717), +(129470, 'Louis', 1984, 'M', 1709), +(129471, 'Arthur', 1984, 'M', 1700), +(129472, 'Isaac', 1984, 'M', 1692), +(129473, 'Walter', 1984, 'M', 1689), +(129474, 'Roberto', 1984, 'M', 1669), +(129475, 'Caleb', 1984, 'M', 1652), +(129476, 'Cameron', 1984, 'M', 1639), +(129477, 'Rodney', 1984, 'M', 1624), +(129478, 'Willie', 1984, 'M', 1605), +(129479, 'Joe', 1984, 'M', 1591), +(129480, 'Maurice', 1984, 'M', 1590), +(129481, 'Grant', 1984, 'M', 1584), +(129482, 'Jermaine', 1984, 'M', 1578), +(129483, 'Darren', 1984, 'M', 1551), +(129484, 'Jay', 1984, 'M', 1548), +(129485, 'Jack', 1984, 'M', 1480), +(129486, 'Wayne', 1984, 'M', 1477), +(129487, 'Bruce', 1984, 'M', 1461), +(129488, 'Gerald', 1984, 'M', 1442), +(129489, 'Calvin', 1984, 'M', 1440), +(129490, 'Oscar', 1984, 'M', 1420), +(129491, 'Angel', 1984, 'M', 1415), +(129492, 'Taylor', 1984, 'M', 1415), +(129493, 'Javier', 1984, 'M', 1390), +(129494, 'Roy', 1984, 'M', 1383), +(129495, 'Ruben', 1984, 'M', 1373), +(129496, 'Edwin', 1984, 'M', 1349), +(129497, 'Reginald', 1984, 'M', 1336), +(129498, 'Darrell', 1984, 'M', 1335), +(129499, 'Brendan', 1984, 'M', 1333), +(129500, 'Hector', 1984, 'M', 1332), +(129501, 'Geoffrey', 1984, 'M', 1324), +(129502, 'Alejandro', 1984, 'M', 1316), +(129503, 'Sergio', 1984, 'M', 1283), +(129504, 'Fernando', 1984, 'M', 1282), +(129505, 'Omar', 1984, 'M', 1273), +(129506, 'Noah', 1984, 'M', 1246), +(129507, 'Brad', 1984, 'M', 1237), +(129508, 'Dominic', 1984, 'M', 1234), +(129509, 'Frederick', 1984, 'M', 1219), +(129510, 'Terrance', 1984, 'M', 1213), +(129511, 'Jerome', 1984, 'M', 1180), +(129512, 'Jaime', 1984, 'M', 1174), +(129513, 'Cole', 1984, 'M', 1166), +(129514, 'Eddie', 1984, 'M', 1164), +(129515, 'Ernest', 1984, 'M', 1147), +(129516, 'Rafael', 1984, 'M', 1147), +(129517, 'Neil', 1984, 'M', 1123), +(129518, 'Pedro', 1984, 'M', 1120), +(129519, 'Micah', 1984, 'M', 1115), +(129520, 'Raul', 1984, 'M', 1107), +(129521, 'Ronnie', 1984, 'M', 1104), +(129522, 'Marvin', 1984, 'M', 1101), +(129523, 'Jessie', 1984, 'M', 1096), +(129524, 'Darryl', 1984, 'M', 1079), +(129525, 'Theodore', 1984, 'M', 1069), +(129526, 'Emmanuel', 1984, 'M', 1066), +(129527, 'Eugene', 1984, 'M', 1064), +(129528, 'Tyrone', 1984, 'M', 1055), +(129529, 'Leonard', 1984, 'M', 1053), +(129530, 'Steve', 1984, 'M', 1038), +(129531, 'Levi', 1984, 'M', 1032), +(129532, 'Dale', 1984, 'M', 1029), +(129533, 'Glenn', 1984, 'M', 1021), +(129534, 'Ramon', 1984, 'M', 1017), +(129535, 'Ivan', 1984, 'M', 1005), +(129536, 'Eduardo', 1984, 'M', 1002), +(129537, 'Clifford', 1984, 'M', 996), +(129538, 'Terrence', 1984, 'M', 992), +(129539, 'Logan', 1984, 'M', 991), +(129540, 'Kelly', 1984, 'M', 984), +(129541, 'Kurt', 1984, 'M', 975), +(129542, 'Tommy', 1984, 'M', 974), +(129543, 'Dylan', 1984, 'M', 968), +(129544, 'Barry', 1984, 'M', 961), +(129545, 'Nicolas', 1984, 'M', 958), +(129546, 'Armando', 1984, 'M', 952), +(129547, 'Julio', 1984, 'M', 945), +(129548, 'Alberto', 1984, 'M', 943), +(129549, 'Julian', 1984, 'M', 937), +(129550, 'Spencer', 1984, 'M', 936), +(129551, 'Tyson', 1984, 'M', 924), +(129552, 'Andres', 1984, 'M', 919), +(129553, 'Melvin', 1984, 'M', 907), +(129554, 'Preston', 1984, 'M', 903), +(129555, 'Francis', 1984, 'M', 898), +(129556, 'Karl', 1984, 'M', 894), +(129557, 'Byron', 1984, 'M', 892), +(129558, 'Marco', 1984, 'M', 892), +(129559, 'Stanley', 1984, 'M', 885), +(129560, 'Cedric', 1984, 'M', 883), +(129561, 'Chance', 1984, 'M', 880), +(129562, 'Erick', 1984, 'M', 879), +(129563, 'Tristan', 1984, 'M', 872), +(129564, 'Cesar', 1984, 'M', 862), +(129565, 'Harold', 1984, 'M', 862), +(129566, 'Dwayne', 1984, 'M', 861), +(129567, 'Abraham', 1984, 'M', 851), +(129568, 'Devon', 1984, 'M', 851), +(129569, 'Bryce', 1984, 'M', 838), +(129570, 'Edgar', 1984, 'M', 833), +(129571, 'Terrell', 1984, 'M', 802), +(129572, 'Warren', 1984, 'M', 800), +(129573, 'Brenton', 1984, 'M', 799), +(129574, 'Leon', 1984, 'M', 797), +(129575, 'Franklin', 1984, 'M', 795), +(129576, 'Marshall', 1984, 'M', 793), +(129577, 'Jarrod', 1984, 'M', 792), +(129578, 'Earl', 1984, 'M', 782), +(129579, 'Ralph', 1984, 'M', 778), +(129580, 'Antoine', 1984, 'M', 777), +(129581, 'Gilbert', 1984, 'M', 774), +(129582, 'Courtney', 1984, 'M', 773), +(129583, 'Arturo', 1984, 'M', 767), +(129584, 'Rene', 1984, 'M', 766), +(129585, 'Ray', 1984, 'M', 765), +(129586, 'Shannon', 1984, 'M', 762), +(129587, 'Dean', 1984, 'M', 761), +(129588, 'Colby', 1984, 'M', 756), +(129589, 'Alfred', 1984, 'M', 748), +(129590, 'Jake', 1984, 'M', 743), +(129591, 'Lorenzo', 1984, 'M', 742), +(129592, 'Darnell', 1984, 'M', 741), +(129593, 'Joey', 1984, 'M', 741), +(129594, 'Andy', 1984, 'M', 739), +(129595, 'Branden', 1984, 'M', 735), +(129596, 'Clarence', 1984, 'M', 732), +(129597, 'Ethan', 1984, 'M', 731), +(129598, 'Harry', 1984, 'M', 727), +(129599, 'Enrique', 1984, 'M', 714), +(129600, 'Clint', 1984, 'M', 709), +(129601, 'Damien', 1984, 'M', 708), +(129602, 'Morgan', 1984, 'M', 700), +(129603, 'Brady', 1984, 'M', 699), +(129604, 'Beau', 1984, 'M', 696), +(129605, 'Stuart', 1984, 'M', 692), +(129606, 'Kirk', 1984, 'M', 691), +(129607, 'Alvin', 1984, 'M', 690), +(129608, 'Kelvin', 1984, 'M', 689), +(129609, 'Alfredo', 1984, 'M', 675), +(129610, 'Howard', 1984, 'M', 673), +(129611, 'Marcos', 1984, 'M', 664), +(129612, 'Wade', 1984, 'M', 664), +(129613, 'Orlando', 1984, 'M', 661), +(129614, 'Simon', 1984, 'M', 656), +(129615, 'Nelson', 1984, 'M', 652), +(129616, 'Clifton', 1984, 'M', 644), +(129617, 'Heath', 1984, 'M', 640), +(129618, 'Dane', 1984, 'M', 634), +(129619, 'Daryl', 1984, 'M', 634), +(129620, 'Max', 1984, 'M', 633), +(129621, 'Salvador', 1984, 'M', 631), +(129622, 'Elijah', 1984, 'M', 628), +(129623, 'Roderick', 1984, 'M', 628), +(129624, 'Gerardo', 1984, 'M', 623), +(129625, 'Demetrius', 1984, 'M', 621), +(129626, 'Nickolas', 1984, 'M', 619), +(129627, 'Chris', 1984, 'M', 618), +(129628, 'Bryant', 1984, 'M', 617), +(129629, 'Bernard', 1984, 'M', 615), +(129630, 'Ernesto', 1984, 'M', 608), +(129631, 'Isaiah', 1984, 'M', 605), +(129632, 'Quentin', 1984, 'M', 602), +(129633, 'Darius', 1984, 'M', 600), +(129634, 'Damon', 1984, 'M', 597), +(129635, 'Trent', 1984, 'M', 596), +(129636, 'Norman', 1984, 'M', 594), +(129637, 'Israel', 1984, 'M', 589), +(129638, 'Allan', 1984, 'M', 585), +(129639, 'Johnathon', 1984, 'M', 584), +(129640, 'Landon', 1984, 'M', 575), +(129641, 'Angelo', 1984, 'M', 571), +(129642, 'Dwight', 1984, 'M', 571), +(129643, 'Brock', 1984, 'M', 567), +(129644, 'Neal', 1984, 'M', 565), +(129645, 'Quinton', 1984, 'M', 564), +(129646, 'Lewis', 1984, 'M', 555), +(129647, 'Emanuel', 1984, 'M', 554), +(129648, 'Duane', 1984, 'M', 552), +(129649, 'Dallas', 1984, 'M', 551), +(129650, 'Vernon', 1984, 'M', 550), +(129651, 'Glen', 1984, 'M', 549), +(129652, 'Kent', 1984, 'M', 548), +(129653, 'Lamar', 1984, 'M', 548), +(129654, 'Terence', 1984, 'M', 548), +(129655, 'Rory', 1984, 'M', 547), +(129656, 'Ashley', 1984, 'M', 540), +(129657, 'Damian', 1984, 'M', 539), +(129658, 'Charlie', 1984, 'M', 538), +(129659, 'Xavier', 1984, 'M', 535), +(129660, 'Leroy', 1984, 'M', 530), +(129661, 'Elliott', 1984, 'M', 528), +(129662, 'Kenny', 1984, 'M', 528), +(129663, 'Collin', 1984, 'M', 520), +(129664, 'Nolan', 1984, 'M', 519), +(129665, 'Jamal', 1984, 'M', 516), +(129666, 'Graham', 1984, 'M', 515), +(129667, 'Gavin', 1984, 'M', 513), +(129668, 'Kerry', 1984, 'M', 512), +(129669, 'Trenton', 1984, 'M', 511), +(129670, 'Rickey', 1984, 'M', 510), +(129671, 'Eli', 1984, 'M', 506), +(129672, 'Lonnie', 1984, 'M', 505), +(129673, 'Gordon', 1984, 'M', 504), +(129674, 'Julius', 1984, 'M', 503), +(129675, 'Rudy', 1984, 'M', 494), +(129676, 'Felix', 1984, 'M', 490), +(129677, 'Dana', 1984, 'M', 489), +(129678, 'Pablo', 1984, 'M', 486), +(129679, 'Tyrell', 1984, 'M', 485), +(129680, 'Jayson', 1984, 'M', 479), +(129681, 'Noel', 1984, 'M', 478), +(129682, 'Alexis', 1984, 'M', 475), +(129683, 'Marlon', 1984, 'M', 475), +(129684, 'Bradford', 1984, 'M', 473), +(129685, 'Don', 1984, 'M', 471), +(129686, 'Derick', 1984, 'M', 470), +(129687, 'Fredrick', 1984, 'M', 470), +(129688, 'Josiah', 1984, 'M', 470), +(129689, 'Kendrick', 1984, 'M', 470), +(129690, 'Jarvis', 1984, 'M', 466), +(129691, 'Jamar', 1984, 'M', 461), +(129692, 'Bret', 1984, 'M', 458), +(129693, 'Hunter', 1984, 'M', 457), +(129694, 'Marquis', 1984, 'M', 457), +(129695, 'Elliot', 1984, 'M', 452), +(129696, 'Kurtis', 1984, 'M', 450), +(129697, 'Fred', 1984, 'M', 449), +(129698, 'Rodolfo', 1984, 'M', 443), +(129699, 'Lionel', 1984, 'M', 442), +(129700, 'Ben', 1984, 'M', 441), +(129701, 'Rolando', 1984, 'M', 441), +(129702, 'Deandre', 1984, 'M', 438), +(129703, 'Herbert', 1984, 'M', 436), +(129704, 'Robin', 1984, 'M', 433), +(129705, 'Zachery', 1984, 'M', 433), +(129706, 'Leo', 1984, 'M', 431), +(129707, 'Lloyd', 1984, 'M', 431), +(129708, 'Roland', 1984, 'M', 430), +(129709, 'Zachariah', 1984, 'M', 430), +(129710, 'Kendall', 1984, 'M', 429), +(129711, 'Darin', 1984, 'M', 428), +(129712, 'Rocky', 1984, 'M', 426), +(129713, 'Abel', 1984, 'M', 424), +(129714, 'Perry', 1984, 'M', 422), +(129715, 'Jarrett', 1984, 'M', 413), +(129716, 'Guillermo', 1984, 'M', 412), +(129717, 'Pierre', 1984, 'M', 411), +(129718, 'Cornelius', 1984, 'M', 410), +(129719, 'Miles', 1984, 'M', 410), +(129720, 'Roman', 1984, 'M', 410), +(129721, 'Tanner', 1984, 'M', 407), +(129722, 'Dominique', 1984, 'M', 406), +(129723, 'Jamaal', 1984, 'M', 403), +(129724, 'Stephan', 1984, 'M', 402), +(129725, 'Alfonso', 1984, 'M', 399), +(129726, 'Dante', 1984, 'M', 398), +(129727, 'Owen', 1984, 'M', 397), +(129728, 'Josue', 1984, 'M', 396), +(129729, 'Oliver', 1984, 'M', 391), +(129730, 'Loren', 1984, 'M', 390), +(129731, 'Saul', 1984, 'M', 387), +(129732, 'Greg', 1984, 'M', 386), +(129733, 'Rick', 1984, 'M', 386), +(129734, 'Ty', 1984, 'M', 384), +(129735, 'Clay', 1984, 'M', 383), +(129736, 'Donnie', 1984, 'M', 382), +(129737, 'Jarred', 1984, 'M', 381), +(129738, 'Ismael', 1984, 'M', 380), +(129739, 'Fabian', 1984, 'M', 379), +(129740, 'Freddie', 1984, 'M', 379), +(129741, 'Felipe', 1984, 'M', 377), +(129742, 'Desmond', 1984, 'M', 376), +(129743, 'Dominick', 1984, 'M', 375), +(129744, 'Milton', 1984, 'M', 375), +(129745, 'Gene', 1984, 'M', 374), +(129746, 'Antwan', 1984, 'M', 373), +(129747, 'Gustavo', 1984, 'M', 370), +(129748, 'Jameson', 1984, 'M', 370), +(129749, 'Gilberto', 1984, 'M', 368), +(129750, 'Leslie', 1984, 'M', 367), +(129751, 'Carlton', 1984, 'M', 366), +(129752, 'Darrin', 1984, 'M', 365), +(129753, 'Frankie', 1984, 'M', 364), +(129754, 'Jeff', 1984, 'M', 364), +(129755, 'Jerrod', 1984, 'M', 364), +(129756, 'Sam', 1984, 'M', 364), +(129757, 'Rogelio', 1984, 'M', 358), +(129758, 'Marques', 1984, 'M', 350), +(129759, 'Nathanael', 1984, 'M', 350), +(129760, 'Quincy', 1984, 'M', 350), +(129761, 'Elias', 1984, 'M', 348), +(129762, 'Lester', 1984, 'M', 345), +(129763, 'Toby', 1984, 'M', 344), +(129764, 'Guy', 1984, 'M', 342), +(129765, 'Kellen', 1984, 'M', 341), +(129766, 'Tomas', 1984, 'M', 339), +(129767, 'Kory', 1984, 'M', 338), +(129768, 'Rusty', 1984, 'M', 338), +(129769, 'Stefan', 1984, 'M', 338), +(129770, 'Moses', 1984, 'M', 337), +(129771, 'Dexter', 1984, 'M', 336), +(129772, 'Gerard', 1984, 'M', 336), +(129773, 'Dewayne', 1984, 'M', 335), +(129774, 'Weston', 1984, 'M', 335), +(129775, 'Donovan', 1984, 'M', 332), +(129776, 'Dusty', 1984, 'M', 332), +(129777, 'Jimmie', 1984, 'M', 330), +(129778, 'Floyd', 1984, 'M', 329), +(129779, 'Johnnie', 1984, 'M', 327), +(129780, 'Ramiro', 1984, 'M', 325), +(129781, 'Jody', 1984, 'M', 322), +(129782, 'Alonzo', 1984, 'M', 321), +(129783, 'Lamont', 1984, 'M', 320), +(129784, 'Skyler', 1984, 'M', 319), +(129785, 'Diego', 1984, 'M', 316), +(129786, 'Esteban', 1984, 'M', 312), +(129787, 'Donte', 1984, 'M', 311), +(129788, 'Sidney', 1984, 'M', 310), +(129789, 'Chadwick', 1984, 'M', 309), +(129790, 'Trey', 1984, 'M', 307), +(129791, 'Sheldon', 1984, 'M', 305), +(129792, 'Clark', 1984, 'M', 304), +(129793, 'Brendon', 1984, 'M', 300), +(129794, 'Jarod', 1984, 'M', 300), +(129795, 'Hugo', 1984, 'M', 298), +(129796, 'Cecil', 1984, 'M', 297), +(129797, 'Everett', 1984, 'M', 297), +(129798, 'Maxwell', 1984, 'M', 297), +(129799, 'Salvatore', 1984, 'M', 297), +(129800, 'Moises', 1984, 'M', 296), +(129801, 'Leonardo', 1984, 'M', 294), +(129802, 'Tracy', 1984, 'M', 293), +(129803, 'Myron', 1984, 'M', 292), +(129804, 'Sterling', 1984, 'M', 292), +(129805, 'Clyde', 1984, 'M', 291), +(129806, 'Mike', 1984, 'M', 291), +(129807, 'Reynaldo', 1984, 'M', 289), +(129808, 'Forrest', 1984, 'M', 288), +(129809, 'Reid', 1984, 'M', 288), +(129810, 'Ted', 1984, 'M', 288), +(129811, 'Bryon', 1984, 'M', 287), +(129812, 'Jackie', 1984, 'M', 287), +(129813, 'Jamel', 1984, 'M', 287), +(129814, 'Garry', 1984, 'M', 286), +(129815, 'Chester', 1984, 'M', 285), +(129816, 'Ariel', 1984, 'M', 280), +(129817, 'Malcolm', 1984, 'M', 279), +(129818, 'Stewart', 1984, 'M', 279), +(129819, 'Randolph', 1984, 'M', 278), +(129820, 'Nick', 1984, 'M', 277), +(129821, 'Quintin', 1984, 'M', 277), +(129822, 'Aron', 1984, 'M', 276), +(129823, 'Herman', 1984, 'M', 276), +(129824, 'Mason', 1984, 'M', 276), +(129825, 'Blaine', 1984, 'M', 275), +(129826, 'Giovanni', 1984, 'M', 275), +(129827, 'Dillon', 1984, 'M', 274), +(129828, 'Scotty', 1984, 'M', 274), +(129829, 'Kasey', 1984, 'M', 272), +(129830, 'Colt', 1984, 'M', 271), +(129831, 'Jonah', 1984, 'M', 269), +(129832, 'Santiago', 1984, 'M', 269), +(129833, 'Wilson', 1984, 'M', 269), +(129834, 'Jean', 1984, 'M', 268), +(129835, 'Noe', 1984, 'M', 268), +(129836, 'Dan', 1984, 'M', 266), +(129837, 'Jackson', 1984, 'M', 266), +(129838, 'Solomon', 1984, 'M', 264), +(129839, 'Vicente', 1984, 'M', 264), +(129840, 'Zackary', 1984, 'M', 264), +(129841, 'Brooks', 1984, 'M', 263), +(129842, 'Demarcus', 1984, 'M', 263), +(129843, 'Ali', 1984, 'M', 262), +(129844, 'Jess', 1984, 'M', 261), +(129845, 'Josh', 1984, 'M', 260), +(129846, 'Kiel', 1984, 'M', 260), +(129847, 'Donnell', 1984, 'M', 259), +(129848, 'Rex', 1984, 'M', 258), +(129849, 'Amos', 1984, 'M', 257), +(129850, 'Shea', 1984, 'M', 257), +(129851, 'Wendell', 1984, 'M', 257), +(129852, 'Arnold', 1984, 'M', 255), +(129853, 'Guadalupe', 1984, 'M', 255), +(129854, 'Jim', 1984, 'M', 255), +(129855, 'Lyle', 1984, 'M', 255), +(129856, 'Reuben', 1984, 'M', 255), +(129857, 'Akeem', 1984, 'M', 254), +(129858, 'Alec', 1984, 'M', 253), +(129859, 'Dion', 1984, 'M', 253), +(129860, 'Efrain', 1984, 'M', 253), +(129861, 'Riley', 1984, 'M', 252), +(129862, 'Joaquin', 1984, 'M', 247), +(129863, 'Adan', 1984, 'M', 246), +(129864, 'Erich', 1984, 'M', 246), +(129865, 'Kareem', 1984, 'M', 246), +(129866, 'Parker', 1984, 'M', 245), +(129867, 'Kristofer', 1984, 'M', 240), +(129868, 'Sebastian', 1984, 'M', 240), +(129869, 'Zane', 1984, 'M', 240), +(129870, 'Deangelo', 1984, 'M', 239), +(129871, 'Jerad', 1984, 'M', 235), +(129872, 'Freddy', 1984, 'M', 234), +(129873, 'Humberto', 1984, 'M', 233), +(129874, 'Brennan', 1984, 'M', 232), +(129875, 'Randal', 1984, 'M', 231), +(129876, 'Jamison', 1984, 'M', 230), +(129877, 'Anton', 1984, 'M', 227), +(129878, 'Zackery', 1984, 'M', 226), +(129879, 'Jerod', 1984, 'M', 224), +(129880, 'Conrad', 1984, 'M', 223), +(129881, 'Kody', 1984, 'M', 223), +(129882, 'Harrison', 1984, 'M', 222), +(129883, 'Jonas', 1984, 'M', 222), +(129884, 'Carson', 1984, 'M', 220), +(129885, 'Joesph', 1984, 'M', 219), +(129886, 'Blair', 1984, 'M', 218), +(129887, 'Otis', 1984, 'M', 218), +(129888, 'Deon', 1984, 'M', 217), +(129889, 'Sammy', 1984, 'M', 217), +(129890, 'Sherman', 1984, 'M', 216), +(129891, 'Emilio', 1984, 'M', 214), +(129892, 'Conor', 1984, 'M', 213), +(129893, 'Keenan', 1984, 'M', 212), +(129894, 'Benny', 1984, 'M', 211), +(129895, 'Ira', 1984, 'M', 211), +(129896, 'Harley', 1984, 'M', 210), +(129897, 'Avery', 1984, 'M', 209), +(129898, 'Sylvester', 1984, 'M', 209), +(129899, 'Prince', 1984, 'M', 206), +(129900, 'Raphael', 1984, 'M', 206), +(129901, 'Wyatt', 1984, 'M', 206), +(129902, 'Amir', 1984, 'M', 205), +(129903, 'Damion', 1984, 'M', 205), +(129904, 'Harvey', 1984, 'M', 205), +(129905, 'Will', 1984, 'M', 205), +(129906, 'Jennifer', 1984, 'M', 204), +(129907, 'Reed', 1984, 'M', 204), +(129908, 'Cale', 1984, 'M', 203), +(129909, 'Leland', 1984, 'M', 203), +(129910, 'Dorian', 1984, 'M', 202), +(129911, 'Bo', 1984, 'M', 201), +(129912, 'Hugh', 1984, 'M', 201), +(129913, 'Korey', 1984, 'M', 201), +(129914, 'Whitney', 1984, 'M', 201), +(129915, 'Barrett', 1984, 'M', 200), +(129916, 'Markus', 1984, 'M', 200), +(129917, 'Ryne', 1984, 'M', 199), +(129918, 'Wallace', 1984, 'M', 197), +(129919, 'Sonny', 1984, 'M', 196), +(129920, 'Alton', 1984, 'M', 195), +(129921, 'Pete', 1984, 'M', 195), +(129922, 'Royce', 1984, 'M', 195), +(129923, 'Bryson', 1984, 'M', 194), +(129924, 'Nathanial', 1984, 'M', 193), +(129925, 'Waylon', 1984, 'M', 193), +(129926, 'Braden', 1984, 'M', 192), +(129927, 'Erin', 1984, 'M', 192), +(129928, 'Garret', 1984, 'M', 192), +(129929, 'Jovan', 1984, 'M', 192), +(129930, 'Arron', 1984, 'M', 191), +(129931, 'Marcel', 1984, 'M', 191), +(129932, 'Aubrey', 1984, 'M', 190), +(129933, 'Mickey', 1984, 'M', 190), +(129934, 'Claude', 1984, 'M', 187), +(129935, 'Daren', 1984, 'M', 186), +(129936, 'Rodrigo', 1984, 'M', 186), +(129937, 'Tom', 1984, 'M', 186), +(129938, 'Willis', 1984, 'M', 186), +(129939, 'Rodrick', 1984, 'M', 185), +(129940, 'Winston', 1984, 'M', 185), +(129941, 'Bradly', 1984, 'M', 184), +(129942, 'Chaz', 1984, 'M', 184), +(129943, 'Hans', 1984, 'M', 184), +(129944, 'Rashad', 1984, 'M', 184), +(129945, 'Robbie', 1984, 'M', 184), +(129946, 'Ashton', 1984, 'M', 182), +(129947, 'Ignacio', 1984, 'M', 182), +(129948, 'Marty', 1984, 'M', 182), +(129949, 'Morris', 1984, 'M', 182), +(129950, 'Antwon', 1984, 'M', 181), +(129951, 'Demario', 1984, 'M', 181), +(129952, 'Luther', 1984, 'M', 181), +(129953, 'Jessica', 1984, 'M', 180), +(129954, 'Quinn', 1984, 'M', 180), +(129955, 'Cary', 1984, 'M', 179), +(129956, 'Jordon', 1984, 'M', 179), +(129957, 'Virgil', 1984, 'M', 179), +(129958, 'Davis', 1984, 'M', 178), +(129959, 'Matt', 1984, 'M', 178), +(129960, 'Rigoberto', 1984, 'M', 178), +(129961, 'Ron', 1984, 'M', 178), +(129962, 'Brice', 1984, 'M', 177), +(129963, 'Deshawn', 1984, 'M', 176), +(129964, 'Edmund', 1984, 'M', 176), +(129965, 'Carlo', 1984, 'M', 175), +(129966, 'Thaddeus', 1984, 'M', 175), +(129967, 'Darrel', 1984, 'M', 174), +(129968, 'Earnest', 1984, 'M', 174), +(129969, 'Alvaro', 1984, 'M', 173), +(129970, 'Brant', 1984, 'M', 171), +(129971, 'Mauricio', 1984, 'M', 171), +(129972, 'Taurean', 1984, 'M', 171), +(129973, 'Timmy', 1984, 'M', 171), +(129974, 'Jered', 1984, 'M', 170), +(129975, 'Josef', 1984, 'M', 170), +(129976, 'Roosevelt', 1984, 'M', 170), +(129977, 'Cassidy', 1984, 'M', 169), +(129978, 'Lane', 1984, 'M', 169), +(129979, 'Marion', 1984, 'M', 169), +(129980, 'Nikolas', 1984, 'M', 169), +(129981, 'Brenden', 1984, 'M', 168), +(129982, 'Leonel', 1984, 'M', 168), +(129983, 'Wilfredo', 1984, 'M', 168), +(129984, 'Cristian', 1984, 'M', 167), +(129985, 'Kenton', 1984, 'M', 166), +(129986, 'Ahmad', 1984, 'M', 165), +(129987, 'Bill', 1984, 'M', 165), +(129988, 'Rudolph', 1984, 'M', 165), +(129989, 'Elmer', 1984, 'M', 163), +(129990, 'Mitchel', 1984, 'M', 163), +(129991, 'Curt', 1984, 'M', 162), +(129992, 'Kristian', 1984, 'M', 162), +(129993, 'Myles', 1984, 'M', 162), +(129994, 'Santos', 1984, 'M', 162), +(129995, 'Cyrus', 1984, 'M', 161), +(129996, 'Tremaine', 1984, 'M', 161), +(129997, 'Ezekiel', 1984, 'M', 160), +(129998, 'Teddy', 1984, 'M', 160), +(129999, 'Bennie', 1984, 'M', 159), +(130000, 'Gregg', 1984, 'M', 159), +(130001, 'Jefferson', 1984, 'M', 159), +(130002, 'Vance', 1984, 'M', 159), +(130003, 'Agustin', 1984, 'M', 158), +(130004, 'Cedrick', 1984, 'M', 158), +(130005, 'Cortez', 1984, 'M', 158), +(130006, 'Benito', 1984, 'M', 157), +(130007, 'Ervin', 1984, 'M', 157), +(130008, 'Issac', 1984, 'M', 157), +(130009, 'Carey', 1984, 'M', 156), +(130010, 'Jerrell', 1984, 'M', 156), +(130011, 'Keegan', 1984, 'M', 156), +(130012, 'Mohammad', 1984, 'M', 156), +(130013, 'Titus', 1984, 'M', 156), +(130014, 'Heriberto', 1984, 'M', 155), +(130015, 'Elvis', 1984, 'M', 154), +(130016, 'Nigel', 1984, 'M', 154), +(130017, 'Connor', 1984, 'M', 153), +(130018, 'Davon', 1984, 'M', 153), +(130019, 'Dave', 1984, 'M', 152), +(130020, 'Laurence', 1984, 'M', 152), +(130021, 'Galen', 1984, 'M', 151), +(130022, 'Jed', 1984, 'M', 151), +(130023, 'Tory', 1984, 'M', 151), +(130024, 'Ezra', 1984, 'M', 150), +(130025, 'Tucker', 1984, 'M', 150), +(130026, 'Derik', 1984, 'M', 149), +(130027, 'Antione', 1984, 'M', 148), +(130028, 'Dereck', 1984, 'M', 148), +(130029, 'Stacy', 1984, 'M', 148), +(130030, 'Chauncey', 1984, 'M', 147), +(130031, 'Robby', 1984, 'M', 146), +(130032, 'Shelby', 1984, 'M', 146), +(130033, 'Skylar', 1984, 'M', 146), +(130034, 'Jan', 1984, 'M', 145), +(130035, 'Jasper', 1984, 'M', 144), +(130036, 'Jeramy', 1984, 'M', 144), +(130037, 'Liam', 1984, 'M', 144), +(130038, 'Rico', 1984, 'M', 144), +(130039, 'Kaleb', 1984, 'M', 143), +(130040, 'Tobias', 1984, 'M', 143), +(130041, 'Adolfo', 1984, 'M', 142), +(130042, 'Archie', 1984, 'M', 142), +(130043, 'Kirby', 1984, 'M', 142), +(130044, 'Ahmed', 1984, 'M', 141), +(130045, 'Brain', 1984, 'M', 141), +(130046, 'Lincoln', 1984, 'M', 141), +(130047, 'Aric', 1984, 'M', 140), +(130048, 'Davin', 1984, 'M', 140), +(130049, 'Jace', 1984, 'M', 140), +(130050, 'Bart', 1984, 'M', 139), +(130051, 'Bennett', 1984, 'M', 139), +(130052, 'Tyrel', 1984, 'M', 139), +(130053, 'Keon', 1984, 'M', 138), +(130054, 'Abram', 1984, 'M', 137), +(130055, 'Brandan', 1984, 'M', 137), +(130056, 'Domingo', 1984, 'M', 137), +(130057, 'Vaughn', 1984, 'M', 136), +(130058, 'Duncan', 1984, 'M', 135), +(130059, 'Ellis', 1984, 'M', 135), +(130060, 'Tommie', 1984, 'M', 135), +(130061, 'Carter', 1984, 'M', 134), +(130062, 'Gonzalo', 1984, 'M', 134), +(130063, 'Reggie', 1984, 'M', 134), +(130064, 'Bronson', 1984, 'M', 132), +(130065, 'Jeremie', 1984, 'M', 132), +(130066, 'Rocco', 1984, 'M', 132), +(130067, 'Judson', 1984, 'M', 131), +(130068, 'Scottie', 1984, 'M', 131), +(130069, 'Buddy', 1984, 'M', 130), +(130070, 'Donny', 1984, 'M', 130), +(130071, 'Jacques', 1984, 'M', 130), +(130072, 'Tad', 1984, 'M', 130), +(130073, 'Alphonso', 1984, 'M', 129), +(130074, 'Broderick', 1984, 'M', 129), +(130075, 'Colton', 1984, 'M', 129), +(130076, 'Octavio', 1984, 'M', 129), +(130077, 'Tyree', 1984, 'M', 129), +(130078, 'Cortney', 1984, 'M', 128), +(130079, 'Mack', 1984, 'M', 127), +(130080, 'Mikel', 1984, 'M', 126), +(130081, 'Antony', 1984, 'M', 125), +(130082, 'Dejuan', 1984, 'M', 125), +(130083, 'Jaron', 1984, 'M', 125), +(130084, 'Lukas', 1984, 'M', 125), +(130085, 'Paris', 1984, 'M', 125), +(130086, 'Cristopher', 1984, 'M', 124), +(130087, 'Grady', 1984, 'M', 124), +(130088, 'Michel', 1984, 'M', 124), +(130089, 'Mohammed', 1984, 'M', 124), +(130090, 'Moshe', 1984, 'M', 124), +(130091, 'Van', 1984, 'M', 124), +(130092, 'Darrick', 1984, 'M', 123), +(130093, 'Jerald', 1984, 'M', 123), +(130094, 'Louie', 1984, 'M', 123), +(130095, 'Muhammad', 1984, 'M', 123), +(130096, 'Scot', 1984, 'M', 123), +(130097, 'Darwin', 1984, 'M', 122), +(130098, 'Dirk', 1984, 'M', 122), +(130099, 'Edmond', 1984, 'M', 122), +(130100, 'Isidro', 1984, 'M', 122), +(130101, 'Jeffry', 1984, 'M', 122), +(130102, 'Kelsey', 1984, 'M', 122), +(130103, 'Sarah', 1984, 'M', 122), +(130104, 'Tim', 1984, 'M', 122), +(130105, 'Kris', 1984, 'M', 121), +(130106, 'Monte', 1984, 'M', 121), +(130107, 'Andrea', 1984, 'M', 120), +(130108, 'Coleman', 1984, 'M', 120), +(130109, 'Isiah', 1984, 'M', 120), +(130110, 'Osvaldo', 1984, 'M', 120), +(130111, 'Rhett', 1984, 'M', 120), +(130112, 'Hassan', 1984, 'M', 119), +(130113, 'Tyron', 1984, 'M', 119), +(130114, 'Asa', 1984, 'M', 118), +(130115, 'Elton', 1984, 'M', 118), +(130116, 'Estevan', 1984, 'M', 118), +(130117, 'Jeremey', 1984, 'M', 118), +(130118, 'German', 1984, 'M', 117), +(130119, 'Jamil', 1984, 'M', 117), +(130120, 'Chandler', 1984, 'M', 116), +(130121, 'Cleveland', 1984, 'M', 116), +(130122, 'Cliff', 1984, 'M', 116), +(130123, 'Javon', 1984, 'M', 116), +(130124, 'Jeromy', 1984, 'M', 116), +(130125, 'Ken', 1984, 'M', 116), +(130126, 'Shelton', 1984, 'M', 116), +(130127, 'Elisha', 1984, 'M', 115), +(130128, 'Kristoffer', 1984, 'M', 115), +(130129, 'Nestor', 1984, 'M', 115), +(130130, 'Amit', 1984, 'M', 114), +(130131, 'Chaim', 1984, 'M', 114), +(130132, 'Jedidiah', 1984, 'M', 114), +(130133, 'Lindsey', 1984, 'M', 114), +(130134, 'Nicholaus', 1984, 'M', 114), +(130135, 'Coy', 1984, 'M', 113), +(130136, 'Jamey', 1984, 'M', 113), +(130137, 'Malik', 1984, 'M', 113), +(130138, 'Shayne', 1984, 'M', 113), +(130139, 'Cornell', 1984, 'M', 112), +(130140, 'Donta', 1984, 'M', 112), +(130141, 'Horace', 1984, 'M', 112), +(130142, 'Leif', 1984, 'M', 112), +(130143, 'Daron', 1984, 'M', 111), +(130144, 'Fidel', 1984, 'M', 111), +(130145, 'Raymundo', 1984, 'M', 111), +(130146, 'Aldo', 1984, 'M', 110), +(130147, 'Gregorio', 1984, 'M', 110), +(130148, 'Justen', 1984, 'M', 110), +(130149, 'Ulysses', 1984, 'M', 110), +(130150, 'Amanda', 1984, 'M', 109), +(130151, 'Devan', 1984, 'M', 109), +(130152, 'Kraig', 1984, 'M', 109), +(130153, 'Stephon', 1984, 'M', 109), +(130154, 'Wilbert', 1984, 'M', 109), +(130155, 'August', 1984, 'M', 108), +(130156, 'Dalton', 1984, 'M', 108), +(130157, 'Jeramie', 1984, 'M', 108), +(130158, 'Marlin', 1984, 'M', 108), +(130159, 'Randell', 1984, 'M', 108), +(130160, 'Rufus', 1984, 'M', 108), +(130161, 'Britton', 1984, 'M', 107), +(130162, 'Houston', 1984, 'M', 107), +(130163, 'Stephanie', 1984, 'M', 107), +(130164, 'Darrius', 1984, 'M', 106), +(130165, 'Darron', 1984, 'M', 106), +(130166, 'Delbert', 1984, 'M', 106), +(130167, 'Elvin', 1984, 'M', 106), +(130168, 'Federico', 1984, 'M', 106), +(130169, 'Hubert', 1984, 'M', 106), +(130170, 'Lazaro', 1984, 'M', 106), +(130171, 'Ari', 1984, 'M', 105), +(130172, 'Christoper', 1984, 'M', 105), +(130173, 'Danial', 1984, 'M', 105), +(130174, 'Rickie', 1984, 'M', 105), +(130175, 'Cruz', 1984, 'M', 104), +(130176, 'Kip', 1984, 'M', 104), +(130177, 'Ramsey', 1984, 'M', 104), +(130178, 'Ernie', 1984, 'M', 103), +(130179, 'Johnpaul', 1984, 'M', 103), +(130180, 'Lynn', 1984, 'M', 103), +(130181, 'Silas', 1984, 'M', 103), +(130182, 'Willard', 1984, 'M', 103), +(130183, 'Bernardo', 1984, 'M', 102), +(130184, 'Denny', 1984, 'M', 102), +(130185, 'Eloy', 1984, 'M', 102), +(130186, 'Marquise', 1984, 'M', 102), +(130187, 'Brandt', 1984, 'M', 101), +(130188, 'Eddy', 1984, 'M', 101), +(130189, 'Emmett', 1984, 'M', 101), +(130190, 'Junior', 1984, 'M', 101), +(130191, 'Coty', 1984, 'M', 100), +(130192, 'Dontae', 1984, 'M', 100), +(130193, 'Gino', 1984, 'M', 100), +(130194, 'Jessica', 1985, 'F', 48346), +(130195, 'Ashley', 1985, 'F', 47006), +(130196, 'Jennifer', 1985, 'F', 42649), +(130197, 'Amanda', 1985, 'F', 39048), +(130198, 'Sarah', 1985, 'F', 24876), +(130199, 'Stephanie', 1985, 'F', 23239), +(130200, 'Nicole', 1985, 'F', 22958), +(130201, 'Heather', 1985, 'F', 21149), +(130202, 'Elizabeth', 1985, 'F', 20539), +(130203, 'Megan', 1985, 'F', 20014), +(130204, 'Melissa', 1985, 'F', 19960), +(130205, 'Christina', 1985, 'F', 16595), +(130206, 'Rachel', 1985, 'F', 16361), +(130207, 'Laura', 1985, 'F', 15991), +(130208, 'Lauren', 1985, 'F', 15765), +(130209, 'Amber', 1985, 'F', 15504), +(130210, 'Brittany', 1985, 'F', 15438), +(130211, 'Danielle', 1985, 'F', 15404), +(130212, 'Kimberly', 1985, 'F', 14914), +(130213, 'Amy', 1985, 'F', 14422), +(130214, 'Crystal', 1985, 'F', 14399), +(130215, 'Michelle', 1985, 'F', 13964), +(130216, 'Tiffany', 1985, 'F', 13680), +(130217, 'Emily', 1985, 'F', 13133), +(130218, 'Rebecca', 1985, 'F', 12702), +(130219, 'Erin', 1985, 'F', 11383), +(130220, 'Jamie', 1985, 'F', 11036), +(130221, 'Kelly', 1985, 'F', 11028), +(130222, 'Samantha', 1985, 'F', 10654), +(130223, 'Sara', 1985, 'F', 10553), +(130224, 'Angela', 1985, 'F', 10226), +(130225, 'Katherine', 1985, 'F', 10123), +(130226, 'Andrea', 1985, 'F', 10049), +(130227, 'Erica', 1985, 'F', 9523), +(130228, 'Mary', 1985, 'F', 9239), +(130229, 'Lisa', 1985, 'F', 9014), +(130230, 'Lindsey', 1985, 'F', 8464), +(130231, 'Kristen', 1985, 'F', 8440), +(130232, 'Katie', 1985, 'F', 7993), +(130233, 'Lindsay', 1985, 'F', 7871), +(130234, 'Shannon', 1985, 'F', 7713), +(130235, 'Vanessa', 1985, 'F', 7563), +(130236, 'Courtney', 1985, 'F', 7534), +(130237, 'Christine', 1985, 'F', 7440), +(130238, 'Alicia', 1985, 'F', 7121), +(130239, 'Allison', 1985, 'F', 7030), +(130240, 'April', 1985, 'F', 6693), +(130241, 'Kathryn', 1985, 'F', 6631), +(130242, 'Kristin', 1985, 'F', 6566), +(130243, 'Jenna', 1985, 'F', 6433), +(130244, 'Tara', 1985, 'F', 6100), +(130245, 'Maria', 1985, 'F', 6005), +(130246, 'Krystal', 1985, 'F', 5936), +(130247, 'Anna', 1985, 'F', 5881), +(130248, 'Julie', 1985, 'F', 5762), +(130249, 'Holly', 1985, 'F', 5603), +(130250, 'Kristina', 1985, 'F', 5565), +(130251, 'Natalie', 1985, 'F', 5536), +(130252, 'Victoria', 1985, 'F', 5424), +(130253, 'Jacqueline', 1985, 'F', 5244), +(130254, 'Monica', 1985, 'F', 4985), +(130255, 'Cassandra', 1985, 'F', 4724), +(130256, 'Meghan', 1985, 'F', 4665), +(130257, 'Patricia', 1985, 'F', 4398), +(130258, 'Catherine', 1985, 'F', 4288), +(130259, 'Cynthia', 1985, 'F', 4128), +(130260, 'Stacy', 1985, 'F', 4111), +(130261, 'Kathleen', 1985, 'F', 4085), +(130262, 'Brandi', 1985, 'F', 4045), +(130263, 'Brandy', 1985, 'F', 3902), +(130264, 'Valerie', 1985, 'F', 3879), +(130265, 'Veronica', 1985, 'F', 3875), +(130266, 'Whitney', 1985, 'F', 3833), +(130267, 'Diana', 1985, 'F', 3683), +(130268, 'Chelsea', 1985, 'F', 3614), +(130269, 'Leslie', 1985, 'F', 3606), +(130270, 'Caitlin', 1985, 'F', 3605), +(130271, 'Leah', 1985, 'F', 3574), +(130272, 'Natasha', 1985, 'F', 3552), +(130273, 'Erika', 1985, 'F', 3500), +(130274, 'Latoya', 1985, 'F', 3403), +(130275, 'Dana', 1985, 'F', 3345), +(130276, 'Dominique', 1985, 'F', 3299), +(130277, 'Brittney', 1985, 'F', 3224), +(130278, 'Julia', 1985, 'F', 3200), +(130279, 'Candice', 1985, 'F', 3196), +(130280, 'Karen', 1985, 'F', 3137), +(130281, 'Melanie', 1985, 'F', 3130), +(130282, 'Stacey', 1985, 'F', 3115), +(130283, 'Margaret', 1985, 'F', 3070), +(130284, 'Sheena', 1985, 'F', 3062), +(130285, 'Alexandra', 1985, 'F', 3013), +(130286, 'Katrina', 1985, 'F', 2978), +(130287, 'Bethany', 1985, 'F', 2959), +(130288, 'Nichole', 1985, 'F', 2949), +(130289, 'Carrie', 1985, 'F', 2940), +(130290, 'Alison', 1985, 'F', 2828), +(130291, 'Kara', 1985, 'F', 2811), +(130292, 'Joanna', 1985, 'F', 2770), +(130293, 'Rachael', 1985, 'F', 2761), +(130294, 'Felicia', 1985, 'F', 2739), +(130295, 'Brooke', 1985, 'F', 2726), +(130296, 'Candace', 1985, 'F', 2705), +(130297, 'Jasmine', 1985, 'F', 2705), +(130298, 'Susan', 1985, 'F', 2660), +(130299, 'Sandra', 1985, 'F', 2658), +(130300, 'Tracy', 1985, 'F', 2653), +(130301, 'Kayla', 1985, 'F', 2607), +(130302, 'Nancy', 1985, 'F', 2605), +(130303, 'Tina', 1985, 'F', 2598), +(130304, 'Krystle', 1985, 'F', 2579), +(130305, 'Alexis', 1985, 'F', 2515), +(130306, 'Casey', 1985, 'F', 2477), +(130307, 'Gina', 1985, 'F', 2477), +(130308, 'Jillian', 1985, 'F', 2476), +(130309, 'Pamela', 1985, 'F', 2468), +(130310, 'Hannah', 1985, 'F', 2448), +(130311, 'Renee', 1985, 'F', 2439), +(130312, 'Denise', 1985, 'F', 2433), +(130313, 'Molly', 1985, 'F', 2429), +(130314, 'Misty', 1985, 'F', 2413), +(130315, 'Brenda', 1985, 'F', 2384), +(130316, 'Jaclyn', 1985, 'F', 2384), +(130317, 'Lacey', 1985, 'F', 2358), +(130318, 'Heidi', 1985, 'F', 2321), +(130319, 'Desiree', 1985, 'F', 2304), +(130320, 'Morgan', 1985, 'F', 2280), +(130321, 'Sabrina', 1985, 'F', 2269), +(130322, 'Miranda', 1985, 'F', 2268), +(130323, 'Alyssa', 1985, 'F', 2258), +(130324, 'Alisha', 1985, 'F', 2211), +(130325, 'Teresa', 1985, 'F', 2211), +(130326, 'Meagan', 1985, 'F', 2202), +(130327, 'Krista', 1985, 'F', 2182), +(130328, 'Tabitha', 1985, 'F', 2154), +(130329, 'Theresa', 1985, 'F', 2121), +(130330, 'Melinda', 1985, 'F', 2114), +(130331, 'Linda', 1985, 'F', 2112), +(130332, 'Monique', 1985, 'F', 2112), +(130333, 'Tanya', 1985, 'F', 2112), +(130334, 'Ashlee', 1985, 'F', 2064), +(130335, 'Kelli', 1985, 'F', 2058), +(130336, 'Mallory', 1985, 'F', 2038), +(130337, 'Jill', 1985, 'F', 2037), +(130338, 'Anne', 1985, 'F', 2021), +(130339, 'Kristy', 1985, 'F', 2021), +(130340, 'Robin', 1985, 'F', 2010), +(130341, 'Tamara', 1985, 'F', 1992), +(130342, 'Meredith', 1985, 'F', 1958), +(130343, 'Colleen', 1985, 'F', 1949), +(130344, 'Christy', 1985, 'F', 1940), +(130345, 'Marissa', 1985, 'F', 1890), +(130346, 'Abigail', 1985, 'F', 1847), +(130347, 'Kendra', 1985, 'F', 1838), +(130348, 'Carolyn', 1985, 'F', 1837), +(130349, 'Deanna', 1985, 'F', 1816), +(130350, 'Jenny', 1985, 'F', 1808), +(130351, 'Rebekah', 1985, 'F', 1791), +(130352, 'Lori', 1985, 'F', 1790), +(130353, 'Ebony', 1985, 'F', 1786), +(130354, 'Wendy', 1985, 'F', 1782), +(130355, 'Angel', 1985, 'F', 1781), +(130356, 'Kristi', 1985, 'F', 1754), +(130357, 'Caroline', 1985, 'F', 1749), +(130358, 'Dawn', 1985, 'F', 1731), +(130359, 'Kari', 1985, 'F', 1721), +(130360, 'Priscilla', 1985, 'F', 1701), +(130361, 'Kelsey', 1985, 'F', 1699), +(130362, 'Barbara', 1985, 'F', 1673), +(130363, 'Cassie', 1985, 'F', 1659), +(130364, 'Cristina', 1985, 'F', 1646), +(130365, 'Tonya', 1985, 'F', 1641), +(130366, 'Bridget', 1985, 'F', 1612), +(130367, 'Cindy', 1985, 'F', 1593), +(130368, 'Jaime', 1985, 'F', 1558), +(130369, 'Angelica', 1985, 'F', 1543), +(130370, 'Sharon', 1985, 'F', 1536), +(130371, 'Marie', 1985, 'F', 1507), +(130372, 'Kate', 1985, 'F', 1491), +(130373, 'Adrienne', 1985, 'F', 1490), +(130374, 'Tasha', 1985, 'F', 1480), +(130375, 'Michele', 1985, 'F', 1478), +(130376, 'Ana', 1985, 'F', 1469), +(130377, 'Cara', 1985, 'F', 1463), +(130378, 'Stefanie', 1985, 'F', 1462), +(130379, 'Audrey', 1985, 'F', 1446), +(130380, 'Ann', 1985, 'F', 1442), +(130381, 'Kristine', 1985, 'F', 1442), +(130382, 'Shana', 1985, 'F', 1423), +(130383, 'Katelyn', 1985, 'F', 1418), +(130384, 'Brianna', 1985, 'F', 1416), +(130385, 'Deborah', 1985, 'F', 1401), +(130386, 'Claudia', 1985, 'F', 1395), +(130387, 'Carla', 1985, 'F', 1394), +(130388, 'Haley', 1985, 'F', 1378), +(130389, 'Virginia', 1985, 'F', 1378), +(130390, 'Janelle', 1985, 'F', 1360), +(130391, 'Jacquelyn', 1985, 'F', 1359), +(130392, 'Beth', 1985, 'F', 1341), +(130393, 'Latasha', 1985, 'F', 1323), +(130394, 'Savannah', 1985, 'F', 1321), +(130395, 'Carly', 1985, 'F', 1310), +(130396, 'Ashleigh', 1985, 'F', 1275), +(130397, 'Regina', 1985, 'F', 1275), +(130398, 'Aimee', 1985, 'F', 1274), +(130399, 'Mandy', 1985, 'F', 1268), +(130400, 'Janet', 1985, 'F', 1242), +(130401, 'Kaitlin', 1985, 'F', 1235), +(130402, 'Cheryl', 1985, 'F', 1224), +(130403, 'Autumn', 1985, 'F', 1222), +(130404, 'Martha', 1985, 'F', 1220), +(130405, 'Lydia', 1985, 'F', 1213), +(130406, 'Abby', 1985, 'F', 1208), +(130407, 'Shawna', 1985, 'F', 1200), +(130408, 'Sierra', 1985, 'F', 1200), +(130409, 'Nina', 1985, 'F', 1198), +(130410, 'Tammy', 1985, 'F', 1196), +(130411, 'Nikki', 1985, 'F', 1195), +(130412, 'Donna', 1985, 'F', 1190), +(130413, 'Claire', 1985, 'F', 1185), +(130414, 'Bonnie', 1985, 'F', 1176), +(130415, 'Trisha', 1985, 'F', 1176), +(130416, 'Diane', 1985, 'F', 1169), +(130417, 'Carmen', 1985, 'F', 1167), +(130418, 'Summer', 1985, 'F', 1166), +(130419, 'Mayra', 1985, 'F', 1165), +(130420, 'Taryn', 1985, 'F', 1135), +(130421, 'Toni', 1985, 'F', 1133), +(130422, 'Evelyn', 1985, 'F', 1132), +(130423, 'Joy', 1985, 'F', 1122), +(130424, 'Adriana', 1985, 'F', 1120), +(130425, 'Mindy', 1985, 'F', 1116), +(130426, 'Ruth', 1985, 'F', 1116), +(130427, 'Jessie', 1985, 'F', 1111), +(130428, 'Suzanne', 1985, 'F', 1099), +(130429, 'Sophia', 1985, 'F', 1097), +(130430, 'Jodi', 1985, 'F', 1086), +(130431, 'Christie', 1985, 'F', 1083), +(130432, 'Raquel', 1985, 'F', 1081), +(130433, 'Naomi', 1985, 'F', 1075), +(130434, 'Kellie', 1985, 'F', 1073), +(130435, 'Grace', 1985, 'F', 1062), +(130436, 'Shanna', 1985, 'F', 1056), +(130437, 'Hilary', 1985, 'F', 1054), +(130438, 'Taylor', 1985, 'F', 1050), +(130439, 'Hillary', 1985, 'F', 1047), +(130440, 'Yolanda', 1985, 'F', 1043), +(130441, 'Olivia', 1985, 'F', 1020), +(130442, 'Amelia', 1985, 'F', 1014), +(130443, 'Paula', 1985, 'F', 1014), +(130444, 'Rosa', 1985, 'F', 1011), +(130445, 'Sheila', 1985, 'F', 1011), +(130446, 'Robyn', 1985, 'F', 1009), +(130447, 'Gloria', 1985, 'F', 996), +(130448, 'Jordan', 1985, 'F', 977), +(130449, 'Keri', 1985, 'F', 977), +(130450, 'Alana', 1985, 'F', 975), +(130451, 'Marisa', 1985, 'F', 972), +(130452, 'Melody', 1985, 'F', 967), +(130453, 'Rose', 1985, 'F', 965), +(130454, 'Daisy', 1985, 'F', 957), +(130455, 'Randi', 1985, 'F', 949), +(130456, 'Maggie', 1985, 'F', 945), +(130457, 'Charlotte', 1985, 'F', 943), +(130458, 'Emma', 1985, 'F', 940), +(130459, 'Justine', 1985, 'F', 939), +(130460, 'Britney', 1985, 'F', 938), +(130461, 'Jeanette', 1985, 'F', 934), +(130462, 'Lacy', 1985, 'F', 934), +(130463, 'Elise', 1985, 'F', 932), +(130464, 'Sylvia', 1985, 'F', 928), +(130465, 'Rachelle', 1985, 'F', 925), +(130466, 'Debra', 1985, 'F', 915), +(130467, 'Charity', 1985, 'F', 912), +(130468, 'Hope', 1985, 'F', 908), +(130469, 'Johanna', 1985, 'F', 904), +(130470, 'Karla', 1985, 'F', 901), +(130471, 'Charlene', 1985, 'F', 900), +(130472, 'Gabrielle', 1985, 'F', 896), +(130473, 'Sonia', 1985, 'F', 890), +(130474, 'Shelby', 1985, 'F', 884), +(130475, 'Stacie', 1985, 'F', 884), +(130476, 'Shelly', 1985, 'F', 882), +(130477, 'Roxanne', 1985, 'F', 879), +(130478, 'Kaitlyn', 1985, 'F', 878), +(130479, 'Kasey', 1985, 'F', 876), +(130480, 'Jocelyn', 1985, 'F', 870), +(130481, 'Esther', 1985, 'F', 856), +(130482, 'Alexandria', 1985, 'F', 855), +(130483, 'Ellen', 1985, 'F', 853), +(130484, 'Kerri', 1985, 'F', 853), +(130485, 'Carol', 1985, 'F', 840), +(130486, 'Katharine', 1985, 'F', 839), +(130487, 'Shauna', 1985, 'F', 838), +(130488, 'Frances', 1985, 'F', 834), +(130489, 'Annie', 1985, 'F', 830), +(130490, 'Tabatha', 1985, 'F', 829), +(130491, 'Alissa', 1985, 'F', 823), +(130492, 'Sherry', 1985, 'F', 822), +(130493, 'Chelsey', 1985, 'F', 815), +(130494, 'Helen', 1985, 'F', 809), +(130495, 'Traci', 1985, 'F', 801), +(130496, 'Sonya', 1985, 'F', 797), +(130497, 'Angelina', 1985, 'F', 789), +(130498, 'Briana', 1985, 'F', 789), +(130499, 'Trista', 1985, 'F', 788), +(130500, 'Bianca', 1985, 'F', 787), +(130501, 'Leticia', 1985, 'F', 784), +(130502, 'Tia', 1985, 'F', 782), +(130503, 'Kristie', 1985, 'F', 781), +(130504, 'Laurie', 1985, 'F', 780), +(130505, 'Leigh', 1985, 'F', 773), +(130506, 'Elisabeth', 1985, 'F', 770), +(130507, 'Aubrey', 1985, 'F', 769), +(130508, 'Kelley', 1985, 'F', 761), +(130509, 'Latisha', 1985, 'F', 756), +(130510, 'Eva', 1985, 'F', 754), +(130511, 'India', 1985, 'F', 754), +(130512, 'Yvonne', 1985, 'F', 751), +(130513, 'Kirsten', 1985, 'F', 750), +(130514, 'Miriam', 1985, 'F', 744), +(130515, 'Lorena', 1985, 'F', 737), +(130516, 'Staci', 1985, 'F', 737), +(130517, 'Anita', 1985, 'F', 736), +(130518, 'Cortney', 1985, 'F', 731), +(130519, 'Carissa', 1985, 'F', 730), +(130520, 'Jade', 1985, 'F', 725), +(130521, 'Camille', 1985, 'F', 724), +(130522, 'Paige', 1985, 'F', 723), +(130523, 'Brianne', 1985, 'F', 721), +(130524, 'Elena', 1985, 'F', 721), +(130525, 'Dorothy', 1985, 'F', 718), +(130526, 'Terri', 1985, 'F', 712), +(130527, 'Gabriela', 1985, 'F', 710), +(130528, 'Jane', 1985, 'F', 709), +(130529, 'Tamika', 1985, 'F', 704), +(130530, 'Chasity', 1985, 'F', 703), +(130531, 'Jana', 1985, 'F', 696), +(130532, 'Tracey', 1985, 'F', 694), +(130533, 'Antoinette', 1985, 'F', 691), +(130534, 'Jami', 1985, 'F', 690), +(130535, 'Janice', 1985, 'F', 687), +(130536, 'Christa', 1985, 'F', 683), +(130537, 'Tessa', 1985, 'F', 683), +(130538, 'Yvette', 1985, 'F', 681), +(130539, 'Elisa', 1985, 'F', 678), +(130540, 'Breanna', 1985, 'F', 673), +(130541, 'Kerry', 1985, 'F', 672), +(130542, 'Maureen', 1985, 'F', 672), +(130543, 'Karina', 1985, 'F', 670), +(130544, 'Rochelle', 1985, 'F', 670), +(130545, 'Rhonda', 1985, 'F', 668), +(130546, 'Alice', 1985, 'F', 667), +(130547, 'Keisha', 1985, 'F', 667), +(130548, 'Irene', 1985, 'F', 666), +(130549, 'Allyson', 1985, 'F', 665), +(130550, 'Hayley', 1985, 'F', 663), +(130551, 'Cecilia', 1985, 'F', 657), +(130552, 'Elaine', 1985, 'F', 657), +(130553, 'Annette', 1985, 'F', 656), +(130554, 'Brandie', 1985, 'F', 654), +(130555, 'Katy', 1985, 'F', 654), +(130556, 'Tricia', 1985, 'F', 652), +(130557, 'Julianne', 1985, 'F', 640), +(130558, 'Elyse', 1985, 'F', 637), +(130559, 'Lyndsey', 1985, 'F', 635), +(130560, 'Clarissa', 1985, 'F', 634), +(130561, 'Meaghan', 1985, 'F', 633), +(130562, 'Tanisha', 1985, 'F', 630), +(130563, 'Kathy', 1985, 'F', 617), +(130564, 'Jena', 1985, 'F', 614), +(130565, 'Marisol', 1985, 'F', 611), +(130566, 'Guadalupe', 1985, 'F', 607), +(130567, 'Jenifer', 1985, 'F', 606), +(130568, 'Patrice', 1985, 'F', 605), +(130569, 'Lynn', 1985, 'F', 603), +(130570, 'Jasmin', 1985, 'F', 602), +(130571, 'Sandy', 1985, 'F', 602), +(130572, 'Ariel', 1985, 'F', 600), +(130573, 'Sasha', 1985, 'F', 599), +(130574, 'Juanita', 1985, 'F', 598), +(130575, 'Ericka', 1985, 'F', 597), +(130576, 'Jayme', 1985, 'F', 595), +(130577, 'Kira', 1985, 'F', 592), +(130578, 'Ruby', 1985, 'F', 591), +(130579, 'Rita', 1985, 'F', 589), +(130580, 'Tiara', 1985, 'F', 587), +(130581, 'Jackie', 1985, 'F', 586), +(130582, 'Jennie', 1985, 'F', 585), +(130583, 'Lakeisha', 1985, 'F', 580), +(130584, 'Destiny', 1985, 'F', 572), +(130585, 'Hollie', 1985, 'F', 572), +(130586, 'Leanne', 1985, 'F', 572), +(130587, 'Ryan', 1985, 'F', 570), +(130588, 'Shelley', 1985, 'F', 570), +(130589, 'Amie', 1985, 'F', 568), +(130590, 'Callie', 1985, 'F', 567), +(130591, 'Connie', 1985, 'F', 566), +(130592, 'Sally', 1985, 'F', 566), +(130593, 'Lesley', 1985, 'F', 564), +(130594, 'Serena', 1985, 'F', 564), +(130595, 'Laurel', 1985, 'F', 561), +(130596, 'Eileen', 1985, 'F', 560), +(130597, 'Bobbie', 1985, 'F', 559), +(130598, 'Faith', 1985, 'F', 558), +(130599, 'Brittani', 1985, 'F', 557), +(130600, 'Shayla', 1985, 'F', 556), +(130601, 'Judith', 1985, 'F', 552), +(130602, 'Alyson', 1985, 'F', 549), +(130603, 'Ciara', 1985, 'F', 549), +(130604, 'Alma', 1985, 'F', 547), +(130605, 'Lillian', 1985, 'F', 542), +(130606, 'Nora', 1985, 'F', 541), +(130607, 'Christian', 1985, 'F', 538), +(130608, 'Chrystal', 1985, 'F', 538), +(130609, 'Joyce', 1985, 'F', 537), +(130610, 'Marquita', 1985, 'F', 536), +(130611, 'Ashlie', 1985, 'F', 533); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(130612, 'Michael', 1985, 'F', 531), +(130613, 'Joanne', 1985, 'F', 526), +(130614, 'Yesenia', 1985, 'F', 522), +(130615, 'Marilyn', 1985, 'F', 521), +(130616, 'Constance', 1985, 'F', 520), +(130617, 'Lena', 1985, 'F', 518), +(130618, 'Juliana', 1985, 'F', 517), +(130619, 'Becky', 1985, 'F', 516), +(130620, 'Isabel', 1985, 'F', 515), +(130621, 'Nadia', 1985, 'F', 515), +(130622, 'Shari', 1985, 'F', 515), +(130623, 'Blair', 1985, 'F', 513), +(130624, 'Christen', 1985, 'F', 512), +(130625, 'Rosemary', 1985, 'F', 512), +(130626, 'Genevieve', 1985, 'F', 508), +(130627, 'Michaela', 1985, 'F', 507), +(130628, 'Shayna', 1985, 'F', 505), +(130629, 'Celeste', 1985, 'F', 504), +(130630, 'Betty', 1985, 'F', 502), +(130631, 'Mia', 1985, 'F', 498), +(130632, 'Norma', 1985, 'F', 498), +(130633, 'Bridgette', 1985, 'F', 496), +(130634, 'Noelle', 1985, 'F', 494), +(130635, 'Sherri', 1985, 'F', 494), +(130636, 'Shirley', 1985, 'F', 494), +(130637, 'Alisa', 1985, 'F', 492), +(130638, 'Chantel', 1985, 'F', 492), +(130639, 'Jody', 1985, 'F', 491), +(130640, 'Christin', 1985, 'F', 490), +(130641, 'Latonya', 1985, 'F', 489), +(130642, 'Lara', 1985, 'F', 487), +(130643, 'Lucy', 1985, 'F', 485), +(130644, 'Beverly', 1985, 'F', 481), +(130645, 'Elisha', 1985, 'F', 481), +(130646, 'Audra', 1985, 'F', 480), +(130647, 'Alejandra', 1985, 'F', 478), +(130648, 'Tiffani', 1985, 'F', 474), +(130649, 'Darlene', 1985, 'F', 471), +(130650, 'Sheri', 1985, 'F', 469), +(130651, 'Terra', 1985, 'F', 469), +(130652, 'Iris', 1985, 'F', 467), +(130653, 'Ashly', 1985, 'F', 466), +(130654, 'Jean', 1985, 'F', 463), +(130655, 'Tierra', 1985, 'F', 461), +(130656, 'Maribel', 1985, 'F', 460), +(130657, 'Chanel', 1985, 'F', 458), +(130658, 'Judy', 1985, 'F', 458), +(130659, 'Cierra', 1985, 'F', 456), +(130660, 'Brenna', 1985, 'F', 453), +(130661, 'Larissa', 1985, 'F', 453), +(130662, 'Kristal', 1985, 'F', 452), +(130663, 'Gretchen', 1985, 'F', 451), +(130664, 'Jolene', 1985, 'F', 448), +(130665, 'Kendall', 1985, 'F', 447), +(130666, 'Dianna', 1985, 'F', 446), +(130667, 'Marlene', 1985, 'F', 446), +(130668, 'Tatiana', 1985, 'F', 443), +(130669, 'Angie', 1985, 'F', 442), +(130670, 'Corinne', 1985, 'F', 440), +(130671, 'Leann', 1985, 'F', 440), +(130672, 'Sydney', 1985, 'F', 438), +(130673, 'Belinda', 1985, 'F', 437), +(130674, 'Lora', 1985, 'F', 435), +(130675, 'Mackenzie', 1985, 'F', 431), +(130676, 'Tameka', 1985, 'F', 428), +(130677, 'Janine', 1985, 'F', 426), +(130678, 'Josephine', 1985, 'F', 423), +(130679, 'Bobbi', 1985, 'F', 421), +(130680, 'Blanca', 1985, 'F', 420), +(130681, 'Esmeralda', 1985, 'F', 418), +(130682, 'Ashely', 1985, 'F', 417), +(130683, 'Cassidy', 1985, 'F', 416), +(130684, 'Christopher', 1985, 'F', 415), +(130685, 'Daniela', 1985, 'F', 413), +(130686, 'Lorraine', 1985, 'F', 413), +(130687, 'Marisela', 1985, 'F', 410), +(130688, 'Chandra', 1985, 'F', 409), +(130689, 'Gwendolyn', 1985, 'F', 408), +(130690, 'Alaina', 1985, 'F', 406), +(130691, 'Celia', 1985, 'F', 406), +(130692, 'Francesca', 1985, 'F', 406), +(130693, 'Devon', 1985, 'F', 405), +(130694, 'Fallon', 1985, 'F', 405), +(130695, 'Mandi', 1985, 'F', 405), +(130696, 'Vivian', 1985, 'F', 405), +(130697, 'Carolina', 1985, 'F', 402), +(130698, 'Raven', 1985, 'F', 402), +(130699, 'Tania', 1985, 'F', 400), +(130700, 'Betsy', 1985, 'F', 399), +(130701, 'Casandra', 1985, 'F', 399), +(130702, 'Joann', 1985, 'F', 399), +(130703, 'Tracie', 1985, 'F', 398), +(130704, 'Margarita', 1985, 'F', 396), +(130705, 'Sade', 1985, 'F', 393), +(130706, 'Jacklyn', 1985, 'F', 392), +(130707, 'Lyndsay', 1985, 'F', 392), +(130708, 'Marina', 1985, 'F', 391), +(130709, 'Adrian', 1985, 'F', 388), +(130710, 'Liliana', 1985, 'F', 388), +(130711, 'Racheal', 1985, 'F', 388), +(130712, 'Maegan', 1985, 'F', 387), +(130713, 'Mollie', 1985, 'F', 387), +(130714, 'Anastasia', 1985, 'F', 386), +(130715, 'Santana', 1985, 'F', 385), +(130716, 'Breanne', 1985, 'F', 382), +(130717, 'Madeline', 1985, 'F', 382), +(130718, 'Tiffanie', 1985, 'F', 380), +(130719, 'Melisa', 1985, 'F', 379), +(130720, 'Corey', 1985, 'F', 378), +(130721, 'Ivy', 1985, 'F', 378), +(130722, 'Precious', 1985, 'F', 377), +(130723, 'Lea', 1985, 'F', 376), +(130724, 'Susana', 1985, 'F', 374), +(130725, 'Chiquita', 1985, 'F', 373), +(130726, 'Tera', 1985, 'F', 373), +(130727, 'Caitlyn', 1985, 'F', 372), +(130728, 'Teri', 1985, 'F', 372), +(130729, 'Natalia', 1985, 'F', 371), +(130730, 'Ariana', 1985, 'F', 370), +(130731, 'Hailey', 1985, 'F', 370), +(130732, 'Cherie', 1985, 'F', 369), +(130733, 'Jeannette', 1985, 'F', 368), +(130734, 'Karissa', 1985, 'F', 368), +(130735, 'Lakisha', 1985, 'F', 368), +(130736, 'Lucia', 1985, 'F', 367), +(130737, 'Kassandra', 1985, 'F', 366), +(130738, 'Krystina', 1985, 'F', 365), +(130739, 'Micaela', 1985, 'F', 365), +(130740, 'Chelsie', 1985, 'F', 364), +(130741, 'Cathy', 1985, 'F', 362), +(130742, 'Shante', 1985, 'F', 361), +(130743, 'Kylie', 1985, 'F', 360), +(130744, 'Dena', 1985, 'F', 358), +(130745, 'Mercedes', 1985, 'F', 358), +(130746, 'Christi', 1985, 'F', 357), +(130747, 'Clara', 1985, 'F', 357), +(130748, 'Devin', 1985, 'F', 356), +(130749, 'Latrice', 1985, 'F', 356), +(130750, 'Rosanna', 1985, 'F', 355), +(130751, 'Domonique', 1985, 'F', 353), +(130752, 'Chloe', 1985, 'F', 352), +(130753, 'Jodie', 1985, 'F', 352), +(130754, 'Kacie', 1985, 'F', 352), +(130755, 'Shaina', 1985, 'F', 352), +(130756, 'Adrianne', 1985, 'F', 351), +(130757, 'Alecia', 1985, 'F', 349), +(130758, 'Kim', 1985, 'F', 348), +(130759, 'Antonia', 1985, 'F', 347), +(130760, 'Arlene', 1985, 'F', 347), +(130761, 'Rocio', 1985, 'F', 347), +(130762, 'Deidre', 1985, 'F', 344), +(130763, 'Kimberley', 1985, 'F', 343), +(130764, 'Shantel', 1985, 'F', 343), +(130765, 'Mariah', 1985, 'F', 342), +(130766, 'Tasia', 1985, 'F', 341), +(130767, 'Leanna', 1985, 'F', 340), +(130768, 'Lacie', 1985, 'F', 339), +(130769, 'Aisha', 1985, 'F', 338), +(130770, 'Dayna', 1985, 'F', 336), +(130771, 'Ginger', 1985, 'F', 336), +(130772, 'Kyla', 1985, 'F', 336), +(130773, 'Lana', 1985, 'F', 336), +(130774, 'Marianne', 1985, 'F', 336), +(130775, 'Lashonda', 1985, 'F', 335), +(130776, 'Tiana', 1985, 'F', 335), +(130777, 'Janna', 1985, 'F', 334), +(130778, 'Luz', 1985, 'F', 334), +(130779, 'Marcia', 1985, 'F', 334), +(130780, 'Desirae', 1985, 'F', 333), +(130781, 'Billie', 1985, 'F', 331), +(130782, 'Angelique', 1985, 'F', 330), +(130783, 'Kali', 1985, 'F', 329), +(130784, 'Asia', 1985, 'F', 328), +(130785, 'Silvia', 1985, 'F', 328), +(130786, 'Catrina', 1985, 'F', 327), +(130787, 'Athena', 1985, 'F', 326), +(130788, 'Maricela', 1985, 'F', 323), +(130789, 'Keshia', 1985, 'F', 321), +(130790, 'Nadine', 1985, 'F', 321), +(130791, 'Shawn', 1985, 'F', 321), +(130792, 'Maranda', 1985, 'F', 320), +(130793, 'Tosha', 1985, 'F', 320), +(130794, 'Joan', 1985, 'F', 316), +(130795, 'Lynette', 1985, 'F', 316), +(130796, 'Dominque', 1985, 'F', 315), +(130797, 'Justina', 1985, 'F', 315), +(130798, 'Abbey', 1985, 'F', 314), +(130799, 'Cori', 1985, 'F', 313), +(130800, 'Kristyn', 1985, 'F', 313), +(130801, 'Laci', 1985, 'F', 312), +(130802, 'Debbie', 1985, 'F', 310), +(130803, 'Lee', 1985, 'F', 310), +(130804, 'Selena', 1985, 'F', 310), +(130805, 'Trina', 1985, 'F', 309), +(130806, 'Bailey', 1985, 'F', 308), +(130807, 'Joni', 1985, 'F', 308), +(130808, 'Myra', 1985, 'F', 308), +(130809, 'Edith', 1985, 'F', 307), +(130810, 'Julianna', 1985, 'F', 307), +(130811, 'Arielle', 1985, 'F', 306), +(130812, 'Octavia', 1985, 'F', 306), +(130813, 'Kyle', 1985, 'F', 303), +(130814, 'Sonja', 1985, 'F', 303), +(130815, 'Elissa', 1985, 'F', 302), +(130816, 'Jeannie', 1985, 'F', 302), +(130817, 'Noel', 1985, 'F', 301), +(130818, 'Janie', 1985, 'F', 299), +(130819, 'Loren', 1985, 'F', 299), +(130820, 'Madison', 1985, 'F', 299), +(130821, 'Kandice', 1985, 'F', 298), +(130822, 'Sadie', 1985, 'F', 298), +(130823, 'Alanna', 1985, 'F', 297), +(130824, 'Linsey', 1985, 'F', 296), +(130825, 'Beatrice', 1985, 'F', 294), +(130826, 'Britni', 1985, 'F', 294), +(130827, 'Darcy', 1985, 'F', 294), +(130828, 'Matthew', 1985, 'F', 294), +(130829, 'Corina', 1985, 'F', 293), +(130830, 'Daniel', 1985, 'F', 293), +(130831, 'Tori', 1985, 'F', 292), +(130832, 'Cheri', 1985, 'F', 291), +(130833, 'David', 1985, 'F', 291), +(130834, 'Kenya', 1985, 'F', 291), +(130835, 'Jeanne', 1985, 'F', 289), +(130836, 'Roberta', 1985, 'F', 289), +(130837, 'Maritza', 1985, 'F', 288), +(130838, 'James', 1985, 'F', 287), +(130839, 'Loretta', 1985, 'F', 287), +(130840, 'Shameka', 1985, 'F', 286), +(130841, 'Emilie', 1985, 'F', 285), +(130842, 'Ladonna', 1985, 'F', 283), +(130843, 'Araceli', 1985, 'F', 282), +(130844, 'Dina', 1985, 'F', 282), +(130845, 'Janette', 1985, 'F', 280), +(130846, 'Jesse', 1985, 'F', 279), +(130847, 'Martina', 1985, 'F', 279), +(130848, 'Nakia', 1985, 'F', 279), +(130849, 'Savanna', 1985, 'F', 279), +(130850, 'Daphne', 1985, 'F', 276), +(130851, 'Joshua', 1985, 'F', 276), +(130852, 'Kristian', 1985, 'F', 276), +(130853, 'Cari', 1985, 'F', 274), +(130854, 'Brandon', 1985, 'F', 273), +(130855, 'Bridgett', 1985, 'F', 273), +(130856, 'Deidra', 1985, 'F', 273), +(130857, 'Marsha', 1985, 'F', 273), +(130858, 'Celina', 1985, 'F', 272), +(130859, 'Joelle', 1985, 'F', 272), +(130860, 'Rhiannon', 1985, 'F', 272), +(130861, 'Deana', 1985, 'F', 271), +(130862, 'Georgia', 1985, 'F', 271), +(130863, 'Eleanor', 1985, 'F', 270), +(130864, 'Penny', 1985, 'F', 270), +(130865, 'Shanika', 1985, 'F', 269), +(130866, 'Bernadette', 1985, 'F', 268), +(130867, 'Daniella', 1985, 'F', 268), +(130868, 'Maryann', 1985, 'F', 267), +(130869, 'Maura', 1985, 'F', 267), +(130870, 'Noemi', 1985, 'F', 267), +(130871, 'Princess', 1985, 'F', 267), +(130872, 'Tarah', 1985, 'F', 267), +(130873, 'Valarie', 1985, 'F', 266), +(130874, 'Doris', 1985, 'F', 264), +(130875, 'Selina', 1985, 'F', 264), +(130876, 'Ashli', 1985, 'F', 263), +(130877, 'Sofia', 1985, 'F', 263), +(130878, 'Holli', 1985, 'F', 262), +(130879, 'Janell', 1985, 'F', 260), +(130880, 'Meghann', 1985, 'F', 260), +(130881, 'Marjorie', 1985, 'F', 259), +(130882, 'Christal', 1985, 'F', 258), +(130883, 'Jazmin', 1985, 'F', 258), +(130884, 'Gladys', 1985, 'F', 256), +(130885, 'Carina', 1985, 'F', 255), +(130886, 'Lakesha', 1985, 'F', 255), +(130887, 'Latosha', 1985, 'F', 254), +(130888, 'Lizette', 1985, 'F', 254), +(130889, 'Valencia', 1985, 'F', 251), +(130890, 'Nicolette', 1985, 'F', 250), +(130891, 'Peggy', 1985, 'F', 250), +(130892, 'Ciera', 1985, 'F', 249), +(130893, 'Lakeshia', 1985, 'F', 249), +(130894, 'Leeann', 1985, 'F', 249), +(130895, 'Maya', 1985, 'F', 249), +(130896, 'Olga', 1985, 'F', 249), +(130897, 'Beatriz', 1985, 'F', 248), +(130898, 'Cristal', 1985, 'F', 248), +(130899, 'Tami', 1985, 'F', 248), +(130900, 'Jenelle', 1985, 'F', 247), +(130901, 'Krysta', 1985, 'F', 245), +(130902, 'Alesha', 1985, 'F', 244), +(130903, 'Colette', 1985, 'F', 244), +(130904, 'Liza', 1985, 'F', 244), +(130905, 'Eliza', 1985, 'F', 242), +(130906, 'Kristan', 1985, 'F', 242), +(130907, 'Candy', 1985, 'F', 241), +(130908, 'Hanna', 1985, 'F', 241), +(130909, 'Lily', 1985, 'F', 241), +(130910, 'Lynsey', 1985, 'F', 241), +(130911, 'Chastity', 1985, 'F', 240), +(130912, 'Marcella', 1985, 'F', 240), +(130913, 'Renae', 1985, 'F', 240), +(130914, 'Adrianna', 1985, 'F', 238), +(130915, 'Eboni', 1985, 'F', 238), +(130916, 'Pauline', 1985, 'F', 238), +(130917, 'Robert', 1985, 'F', 238), +(130918, 'Shamika', 1985, 'F', 238), +(130919, 'Aileen', 1985, 'F', 237), +(130920, 'Delilah', 1985, 'F', 237), +(130921, 'Kaylee', 1985, 'F', 237), +(130922, 'Marla', 1985, 'F', 237), +(130923, 'Shanta', 1985, 'F', 237), +(130924, 'Sheree', 1985, 'F', 237), +(130925, 'Felisha', 1985, 'F', 236), +(130926, 'Gabriella', 1985, 'F', 236), +(130927, 'Kassie', 1985, 'F', 236), +(130928, 'Susanna', 1985, 'F', 236), +(130929, 'Geneva', 1985, 'F', 235), +(130930, 'Chantelle', 1985, 'F', 234), +(130931, 'Gillian', 1985, 'F', 234), +(130932, 'Kimberlee', 1985, 'F', 234), +(130933, 'Siobhan', 1985, 'F', 234), +(130934, 'Wanda', 1985, 'F', 234), +(130935, 'Abbie', 1985, 'F', 233), +(130936, 'Candis', 1985, 'F', 233), +(130937, 'John', 1985, 'F', 233), +(130938, 'Roxana', 1985, 'F', 233), +(130939, 'Cody', 1985, 'F', 232), +(130940, 'Dora', 1985, 'F', 232), +(130941, 'Jeanine', 1985, 'F', 232), +(130942, 'Giselle', 1985, 'F', 231), +(130943, 'Lucinda', 1985, 'F', 231), +(130944, 'Marcie', 1985, 'F', 231), +(130945, 'Marlena', 1985, 'F', 231), +(130946, 'Alycia', 1985, 'F', 229), +(130947, 'Griselda', 1985, 'F', 229), +(130948, 'Joseph', 1985, 'F', 227), +(130949, 'Talia', 1985, 'F', 227), +(130950, 'Magen', 1985, 'F', 226), +(130951, 'Cristy', 1985, 'F', 225), +(130952, 'Kirby', 1985, 'F', 225), +(130953, 'Simone', 1985, 'F', 225), +(130954, 'Andria', 1985, 'F', 224), +(130955, 'Kylee', 1985, 'F', 224), +(130956, 'Valeria', 1985, 'F', 224), +(130957, 'Fatima', 1985, 'F', 223), +(130958, 'Kacey', 1985, 'F', 223), +(130959, 'Kala', 1985, 'F', 223), +(130960, 'Dara', 1985, 'F', 222), +(130961, 'Cora', 1985, 'F', 221), +(130962, 'Josie', 1985, 'F', 220), +(130963, 'Leila', 1985, 'F', 220), +(130964, 'Sharonda', 1985, 'F', 220), +(130965, 'Danelle', 1985, 'F', 219), +(130966, 'Kia', 1985, 'F', 219), +(130967, 'Laquita', 1985, 'F', 219), +(130968, 'Marci', 1985, 'F', 219), +(130969, 'Chantal', 1985, 'F', 218), +(130970, 'Tess', 1985, 'F', 218), +(130971, 'Francine', 1985, 'F', 217), +(130972, 'Tamra', 1985, 'F', 217), +(130973, 'Janae', 1985, 'F', 216), +(130974, 'Ramona', 1985, 'F', 215), +(130975, 'Stevie', 1985, 'F', 215), +(130976, 'Kathrine', 1985, 'F', 214), +(130977, 'Kourtney', 1985, 'F', 214), +(130978, 'Ingrid', 1985, 'F', 213), +(130979, 'Kaci', 1985, 'F', 213), +(130980, 'Shanda', 1985, 'F', 213), +(130981, 'Brittni', 1985, 'F', 212), +(130982, 'Glenda', 1985, 'F', 212), +(130983, 'Irma', 1985, 'F', 212), +(130984, 'Kati', 1985, 'F', 212), +(130985, 'Malinda', 1985, 'F', 212), +(130986, 'Kayleigh', 1985, 'F', 211), +(130987, 'Mariana', 1985, 'F', 211), +(130988, 'Britany', 1985, 'F', 209), +(130989, 'Rikki', 1985, 'F', 209), +(130990, 'Aurora', 1985, 'F', 208), +(130991, 'Clare', 1985, 'F', 208), +(130992, 'Viviana', 1985, 'F', 208), +(130993, 'Andrew', 1985, 'F', 207), +(130994, 'Vicki', 1985, 'F', 207), +(130995, 'Casie', 1985, 'F', 206), +(130996, 'Sophie', 1985, 'F', 206), +(130997, 'Venessa', 1985, 'F', 206), +(130998, 'Kori', 1985, 'F', 205), +(130999, 'Misti', 1985, 'F', 204), +(131000, 'Paris', 1985, 'F', 204), +(131001, 'Perla', 1985, 'F', 204), +(131002, 'Jeanna', 1985, 'F', 203), +(131003, 'Jeri', 1985, 'F', 203), +(131004, 'Mara', 1985, 'F', 203), +(131005, 'Edna', 1985, 'F', 201), +(131006, 'Sherrie', 1985, 'F', 201), +(131007, 'Tanesha', 1985, 'F', 201), +(131008, 'Lynda', 1985, 'F', 200), +(131009, 'Marian', 1985, 'F', 200), +(131010, 'Alexa', 1985, 'F', 199), +(131011, 'Anthony', 1985, 'F', 199), +(131012, 'Cameron', 1985, 'F', 199), +(131013, 'Dolores', 1985, 'F', 199), +(131014, 'Yadira', 1985, 'F', 199), +(131015, 'Annmarie', 1985, 'F', 198), +(131016, 'Emilee', 1985, 'F', 198), +(131017, 'Lissette', 1985, 'F', 198), +(131018, 'Sheryl', 1985, 'F', 198), +(131019, 'Jaimie', 1985, 'F', 197), +(131020, 'Vicky', 1985, 'F', 197), +(131021, 'Corrie', 1985, 'F', 196), +(131022, 'Karin', 1985, 'F', 196), +(131023, 'Nathalie', 1985, 'F', 196), +(131024, 'Tyler', 1985, 'F', 196), +(131025, 'Tyra', 1985, 'F', 196), +(131026, 'Alyse', 1985, 'F', 195), +(131027, 'Hallie', 1985, 'F', 195), +(131028, 'Lourdes', 1985, 'F', 195), +(131029, 'Reyna', 1985, 'F', 195), +(131030, 'Gail', 1985, 'F', 194), +(131031, 'Jesica', 1985, 'F', 194), +(131032, 'Louise', 1985, 'F', 194), +(131033, 'Marcy', 1985, 'F', 194), +(131034, 'Zoe', 1985, 'F', 194), +(131035, 'Rena', 1985, 'F', 193), +(131036, 'Shea', 1985, 'F', 193), +(131037, 'Tabetha', 1985, 'F', 193), +(131038, 'Cherish', 1985, 'F', 192), +(131039, 'Elsa', 1985, 'F', 192), +(131040, 'Rene', 1985, 'F', 192), +(131041, 'Deirdre', 1985, 'F', 191), +(131042, 'Elaina', 1985, 'F', 191), +(131043, 'Deandra', 1985, 'F', 190), +(131044, 'Rosalinda', 1985, 'F', 190), +(131045, 'Stacia', 1985, 'F', 190), +(131046, 'Cathleen', 1985, 'F', 189), +(131047, 'Kami', 1985, 'F', 189), +(131048, 'Roxanna', 1985, 'F', 189), +(131049, 'Tonia', 1985, 'F', 188), +(131050, 'Danyelle', 1985, 'F', 187), +(131051, 'Kandace', 1985, 'F', 187), +(131052, 'Richelle', 1985, 'F', 187), +(131053, 'Danica', 1985, 'F', 186), +(131054, 'Helena', 1985, 'F', 186), +(131055, 'Ashlea', 1985, 'F', 185), +(131056, 'Brittny', 1985, 'F', 185), +(131057, 'Chana', 1985, 'F', 185), +(131058, 'Janel', 1985, 'F', 185), +(131059, 'Meggan', 1985, 'F', 185), +(131060, 'Rosemarie', 1985, 'F', 185), +(131061, 'Alina', 1985, 'F', 184), +(131062, 'Cory', 1985, 'F', 184), +(131063, 'Jason', 1985, 'F', 184), +(131064, 'Mellissa', 1985, 'F', 184), +(131065, 'Yasmin', 1985, 'F', 184), +(131066, 'Charmaine', 1985, 'F', 183), +(131067, 'Delia', 1985, 'F', 183), +(131068, 'Hilda', 1985, 'F', 183), +(131069, 'Jessi', 1985, 'F', 183), +(131070, 'Kaley', 1985, 'F', 183), +(131071, 'Mckenzie', 1985, 'F', 183), +(131072, 'Nikole', 1985, 'F', 183), +(131073, 'William', 1985, 'F', 183), +(131074, 'Alysha', 1985, 'F', 182), +(131075, 'Justin', 1985, 'F', 182), +(131076, 'Melina', 1985, 'F', 182), +(131077, 'Jonathan', 1985, 'F', 181), +(131078, 'Niki', 1985, 'F', 181), +(131079, 'Cecelia', 1985, 'F', 180), +(131080, 'Demetria', 1985, 'F', 180), +(131081, 'Graciela', 1985, 'F', 180), +(131082, 'Keely', 1985, 'F', 180), +(131083, 'Terry', 1985, 'F', 180), +(131084, 'Ami', 1985, 'F', 179), +(131085, 'Felecia', 1985, 'F', 179), +(131086, 'Cheyenne', 1985, 'F', 178), +(131087, 'June', 1985, 'F', 178), +(131088, 'Paola', 1985, 'F', 178), +(131089, 'Shavon', 1985, 'F', 178), +(131090, 'Tristan', 1985, 'F', 178), +(131091, 'Candi', 1985, 'F', 177), +(131092, 'Sherita', 1985, 'F', 177), +(131093, 'Sondra', 1985, 'F', 177), +(131094, 'Carley', 1985, 'F', 176), +(131095, 'Dannielle', 1985, 'F', 176), +(131096, 'Darla', 1985, 'F', 176), +(131097, 'Marta', 1985, 'F', 176), +(131098, 'Carey', 1985, 'F', 175), +(131099, 'Cristin', 1985, 'F', 175), +(131100, 'Adriane', 1985, 'F', 174), +(131101, 'Jazmine', 1985, 'F', 174), +(131102, 'Maira', 1985, 'F', 174), +(131103, 'Shaquita', 1985, 'F', 174), +(131104, 'Shasta', 1985, 'F', 174), +(131105, 'Wendi', 1985, 'F', 174), +(131106, 'Gena', 1985, 'F', 173), +(131107, 'Jada', 1985, 'F', 173), +(131108, 'Krysten', 1985, 'F', 173), +(131109, 'Kyra', 1985, 'F', 173), +(131110, 'Latoria', 1985, 'F', 173), +(131111, 'Tana', 1985, 'F', 173), +(131112, 'Georgina', 1985, 'F', 172), +(131113, 'Mai', 1985, 'F', 172), +(131114, 'Monika', 1985, 'F', 172), +(131115, 'Rebeca', 1985, 'F', 172), +(131116, 'Shanita', 1985, 'F', 172), +(131117, 'Brittanie', 1985, 'F', 171), +(131118, 'Jo', 1985, 'F', 171), +(131119, 'Lisette', 1985, 'F', 171), +(131120, 'Magan', 1985, 'F', 171), +(131121, 'Portia', 1985, 'F', 171), +(131122, 'Krystin', 1985, 'F', 170), +(131123, 'Malissa', 1985, 'F', 170), +(131124, 'Kerrie', 1985, 'F', 169), +(131125, 'Kiley', 1985, 'F', 169), +(131126, 'Brynn', 1985, 'F', 168), +(131127, 'Juliet', 1985, 'F', 168), +(131128, 'Lia', 1985, 'F', 168), +(131129, 'Marion', 1985, 'F', 168), +(131130, 'Stephany', 1985, 'F', 168), +(131131, 'Cassondra', 1985, 'F', 167), +(131132, 'Jeana', 1985, 'F', 167), +(131133, 'Katelin', 1985, 'F', 167), +(131134, 'Katheryn', 1985, 'F', 167), +(131135, 'Rosalyn', 1985, 'F', 167), +(131136, 'Micah', 1985, 'F', 166), +(131137, 'Tyesha', 1985, 'F', 166), +(131138, 'Pearl', 1985, 'F', 165), +(131139, 'Sharita', 1985, 'F', 165), +(131140, 'Shara', 1985, 'F', 164), +(131141, 'Ada', 1985, 'F', 163), +(131142, 'Cathryn', 1985, 'F', 163), +(131143, 'Eric', 1985, 'F', 163), +(131144, 'Karly', 1985, 'F', 163), +(131145, 'Latanya', 1985, 'F', 163), +(131146, 'Mari', 1985, 'F', 163), +(131147, 'Susie', 1985, 'F', 163), +(131148, 'Alena', 1985, 'F', 162), +(131149, 'Bertha', 1985, 'F', 162), +(131150, 'Brook', 1985, 'F', 162), +(131151, 'Carlie', 1985, 'F', 162), +(131152, 'Corrine', 1985, 'F', 162), +(131153, 'Nicholas', 1985, 'F', 162), +(131154, 'Nikita', 1985, 'F', 162), +(131155, 'Sunny', 1985, 'F', 161), +(131156, 'Aja', 1985, 'F', 160), +(131157, 'Markita', 1985, 'F', 160), +(131158, 'Rosalie', 1985, 'F', 160), +(131159, 'Violeta', 1985, 'F', 160), +(131160, 'Ali', 1985, 'F', 159), +(131161, 'Deena', 1985, 'F', 159), +(131162, 'Eunice', 1985, 'F', 159), +(131163, 'Jenni', 1985, 'F', 159), +(131164, 'Stefani', 1985, 'F', 159), +(131165, 'Breann', 1985, 'F', 158), +(131166, 'Brigitte', 1985, 'F', 158), +(131167, 'Kasie', 1985, 'F', 158), +(131168, 'Shavonne', 1985, 'F', 158), +(131169, 'Kacy', 1985, 'F', 157), +(131170, 'Kirstin', 1985, 'F', 157), +(131171, 'Shena', 1985, 'F', 157), +(131172, 'Tisha', 1985, 'F', 157), +(131173, 'Jessika', 1985, 'F', 156), +(131174, 'Karrie', 1985, 'F', 156), +(131175, 'Kelsie', 1985, 'F', 156), +(131176, 'Mariel', 1985, 'F', 156), +(131177, 'Salina', 1985, 'F', 156), +(131178, 'Iesha', 1985, 'F', 155), +(131179, 'Shira', 1985, 'F', 155), +(131180, 'Alexia', 1985, 'F', 154), +(131181, 'Caryn', 1985, 'F', 154), +(131182, 'Jaqueline', 1985, 'F', 154), +(131183, 'Kiana', 1985, 'F', 154), +(131184, 'Leilani', 1985, 'F', 154), +(131185, 'Mona', 1985, 'F', 154), +(131186, 'Samatha', 1985, 'F', 154), +(131187, 'Shantell', 1985, 'F', 154), +(131188, 'Stella', 1985, 'F', 154), +(131189, 'Tammie', 1985, 'F', 154), +(131190, 'Amberly', 1985, 'F', 153), +(131191, 'Francisca', 1985, 'F', 153), +(131192, 'Ida', 1985, 'F', 153), +(131193, 'Lashanda', 1985, 'F', 153), +(131194, 'Nia', 1985, 'F', 153), +(131195, 'Annemarie', 1985, 'F', 152), +(131196, 'Charissa', 1985, 'F', 152), +(131197, 'Janessa', 1985, 'F', 152), +(131198, 'Nichelle', 1985, 'F', 152), +(131199, 'Brandee', 1985, 'F', 151), +(131200, 'Julissa', 1985, 'F', 151), +(131201, 'Karyn', 1985, 'F', 151), +(131202, 'Therese', 1985, 'F', 151), +(131203, 'Antionette', 1985, 'F', 150), +(131204, 'Porsha', 1985, 'F', 150), +(131205, 'Stephaine', 1985, 'F', 150), +(131206, 'Suzanna', 1985, 'F', 150), +(131207, 'Elana', 1985, 'F', 149), +(131208, 'Elvia', 1985, 'F', 149), +(131209, 'Eve', 1985, 'F', 149), +(131210, 'Johnna', 1985, 'F', 149), +(131211, 'Mellisa', 1985, 'F', 149), +(131212, 'Tenisha', 1985, 'F', 149), +(131213, 'Damaris', 1985, 'F', 148), +(131214, 'Joana', 1985, 'F', 148), +(131215, 'Lindy', 1985, 'F', 148), +(131216, 'Alexander', 1985, 'F', 147), +(131217, 'Alia', 1985, 'F', 147), +(131218, 'Cherise', 1985, 'F', 147), +(131219, 'Kevin', 1985, 'F', 147), +(131220, 'Margo', 1985, 'F', 147), +(131221, 'Shalonda', 1985, 'F', 147), +(131222, 'Alysia', 1985, 'F', 146), +(131223, 'Colby', 1985, 'F', 146), +(131224, 'Ella', 1985, 'F', 146), +(131225, 'Halley', 1985, 'F', 146), +(131226, 'Madonna', 1985, 'F', 146), +(131227, 'Sarina', 1985, 'F', 146), +(131228, 'Teena', 1985, 'F', 146), +(131229, 'Bernice', 1985, 'F', 145), +(131230, 'Liana', 1985, 'F', 145), +(131231, 'Natashia', 1985, 'F', 145), +(131232, 'Sommer', 1985, 'F', 145), +(131233, 'Steven', 1985, 'F', 145), +(131234, 'Teela', 1985, 'F', 145), +(131235, 'Nicolle', 1985, 'F', 144), +(131236, 'Tanika', 1985, 'F', 144), +(131237, 'Jamila', 1985, 'F', 143), +(131238, 'Stephenie', 1985, 'F', 143), +(131239, 'Angelia', 1985, 'F', 142), +(131240, 'Marcela', 1985, 'F', 142), +(131241, 'Shanelle', 1985, 'F', 142), +(131242, 'Tashina', 1985, 'F', 142), +(131243, 'Violet', 1985, 'F', 142), +(131244, 'Darci', 1985, 'F', 141), +(131245, 'Katlyn', 1985, 'F', 141), +(131246, 'Magdalena', 1985, 'F', 141), +(131247, 'Shenna', 1985, 'F', 141), +(131248, 'Tawny', 1985, 'F', 141), +(131249, 'Jayne', 1985, 'F', 140), +(131250, 'Katina', 1985, 'F', 140), +(131251, 'Latesha', 1985, 'F', 140), +(131252, 'Sue', 1985, 'F', 140), +(131253, 'Diamond', 1985, 'F', 139), +(131254, 'Dianne', 1985, 'F', 139), +(131255, 'Kay', 1985, 'F', 139), +(131256, 'Natosha', 1985, 'F', 139), +(131257, 'Renita', 1985, 'F', 139), +(131258, 'Aaron', 1985, 'F', 138), +(131259, 'Francis', 1985, 'F', 138), +(131260, 'Stephani', 1985, 'F', 138), +(131261, 'Tamera', 1985, 'F', 138), +(131262, 'Anais', 1985, 'F', 137), +(131263, 'Brian', 1985, 'F', 137), +(131264, 'Juana', 1985, 'F', 137), +(131265, 'Afton', 1985, 'F', 136), +(131266, 'Shanae', 1985, 'F', 136), +(131267, 'Shanell', 1985, 'F', 136), +(131268, 'Vickie', 1985, 'F', 136), +(131269, 'Ashlyn', 1985, 'F', 135), +(131270, 'Kesha', 1985, 'F', 135), +(131271, 'Leona', 1985, 'F', 135), +(131272, 'Sharee', 1985, 'F', 135), +(131273, 'Angeline', 1985, 'F', 134), +(131274, 'Aubree', 1985, 'F', 134), +(131275, 'Ivory', 1985, 'F', 134), +(131276, 'Kasandra', 1985, 'F', 134), +(131277, 'May', 1985, 'F', 134), +(131278, 'Sarai', 1985, 'F', 134), +(131279, 'Tianna', 1985, 'F', 134), +(131280, 'Allie', 1985, 'F', 133), +(131281, 'Ava', 1985, 'F', 133), +(131282, 'Karli', 1985, 'F', 133), +(131283, 'Kiera', 1985, 'F', 133), +(131284, 'Maxine', 1985, 'F', 133), +(131285, 'Mikaela', 1985, 'F', 133), +(131286, 'Shakira', 1985, 'F', 133), +(131287, 'Timothy', 1985, 'F', 133), +(131288, 'Annamarie', 1985, 'F', 132), +(131289, 'Eugenia', 1985, 'F', 132), +(131290, 'Fawn', 1985, 'F', 132), +(131291, 'Jammie', 1985, 'F', 132), +(131292, 'Lila', 1985, 'F', 132), +(131293, 'Arianna', 1985, 'F', 131), +(131294, 'Brittaney', 1985, 'F', 131), +(131295, 'Crystle', 1985, 'F', 131), +(131296, 'Dulce', 1985, 'F', 131), +(131297, 'Latia', 1985, 'F', 131), +(131298, 'Shaniqua', 1985, 'F', 131), +(131299, 'Shannan', 1985, 'F', 131), +(131300, 'Ursula', 1985, 'F', 131), +(131301, 'Yajaira', 1985, 'F', 131), +(131302, 'Chanelle', 1985, 'F', 130), +(131303, 'Chaya', 1985, 'F', 130), +(131304, 'Corinna', 1985, 'F', 130), +(131305, 'Deanne', 1985, 'F', 130), +(131306, 'Denisha', 1985, 'F', 130), +(131307, 'Elsie', 1985, 'F', 130), +(131308, 'Kandi', 1985, 'F', 130), +(131309, 'Malia', 1985, 'F', 130), +(131310, 'Ashton', 1985, 'F', 129), +(131311, 'Kisha', 1985, 'F', 129), +(131312, 'Kortney', 1985, 'F', 129), +(131313, 'Lashawn', 1985, 'F', 129), +(131314, 'Nicki', 1985, 'F', 129), +(131315, 'Phyllis', 1985, 'F', 129), +(131316, 'Rhea', 1985, 'F', 129), +(131317, 'Shardae', 1985, 'F', 129), +(131318, 'Tegan', 1985, 'F', 129), +(131319, 'Vera', 1985, 'F', 129), +(131320, 'Cali', 1985, 'F', 128), +(131321, 'Carli', 1985, 'F', 128), +(131322, 'Christiana', 1985, 'F', 128), +(131323, 'Lois', 1985, 'F', 128), +(131324, 'Malorie', 1985, 'F', 128), +(131325, 'Shequita', 1985, 'F', 128), +(131326, 'Shonda', 1985, 'F', 128), +(131327, 'Dionne', 1985, 'F', 127), +(131328, 'Starla', 1985, 'F', 127), +(131329, 'Stormy', 1985, 'F', 127), +(131330, 'Chante', 1985, 'F', 126), +(131331, 'Chantell', 1985, 'F', 126), +(131332, 'Crista', 1985, 'F', 126), +(131333, 'Florence', 1985, 'F', 126), +(131334, 'Jeannine', 1985, 'F', 126), +(131335, 'Latricia', 1985, 'F', 126), +(131336, 'Shellie', 1985, 'F', 126), +(131337, 'Geraldine', 1985, 'F', 125), +(131338, 'Kaila', 1985, 'F', 125), +(131339, 'Luisa', 1985, 'F', 125), +(131340, 'Roxann', 1985, 'F', 125), +(131341, 'Shaneka', 1985, 'F', 125), +(131342, 'Bree', 1985, 'F', 124), +(131343, 'Danae', 1985, 'F', 124), +(131344, 'Leandra', 1985, 'F', 124), +(131345, 'Lynnette', 1985, 'F', 124), +(131346, 'Nataly', 1985, 'F', 124), +(131347, 'Shanon', 1985, 'F', 124), +(131348, 'Sharde', 1985, 'F', 124), +(131349, 'Shelia', 1985, 'F', 124), +(131350, 'Adria', 1985, 'F', 123), +(131351, 'Fabiola', 1985, 'F', 123), +(131352, 'Farrah', 1985, 'F', 123), +(131353, 'Kenisha', 1985, 'F', 123), +(131354, 'Lina', 1985, 'F', 123), +(131355, 'Suzette', 1985, 'F', 123), +(131356, 'Tamar', 1985, 'F', 123), +(131357, 'Codi', 1985, 'F', 122), +(131358, 'Elicia', 1985, 'F', 122), +(131359, 'Harmony', 1985, 'F', 122), +(131360, 'Josefina', 1985, 'F', 122), +(131361, 'Kera', 1985, 'F', 122), +(131362, 'Lawanda', 1985, 'F', 122), +(131363, 'Lidia', 1985, 'F', 122), +(131364, 'Phylicia', 1985, 'F', 122), +(131365, 'Racquel', 1985, 'F', 122), +(131366, 'Ayesha', 1985, 'F', 121), +(131367, 'Drew', 1985, 'F', 121), +(131368, 'Marybeth', 1985, 'F', 121), +(131369, 'Nichol', 1985, 'F', 121), +(131370, 'Susannah', 1985, 'F', 121), +(131371, 'Aracely', 1985, 'F', 120), +(131372, 'Cassi', 1985, 'F', 120), +(131373, 'Nikia', 1985, 'F', 120), +(131374, 'Rosie', 1985, 'F', 120), +(131375, 'Shera', 1985, 'F', 120), +(131376, 'Vanesa', 1985, 'F', 120), +(131377, 'Alishia', 1985, 'F', 119), +(131378, 'Ariane', 1985, 'F', 119), +(131379, 'Camilla', 1985, 'F', 119), +(131380, 'Ebonie', 1985, 'F', 119), +(131381, 'Hazel', 1985, 'F', 119), +(131382, 'Ivette', 1985, 'F', 119), +(131383, 'Keli', 1985, 'F', 119), +(131384, 'Kiersten', 1985, 'F', 119), +(131385, 'Tiesha', 1985, 'F', 119), +(131386, 'Juliann', 1985, 'F', 118), +(131387, 'Kenyatta', 1985, 'F', 118), +(131388, 'Lindsy', 1985, 'F', 118), +(131389, 'Lynne', 1985, 'F', 118), +(131390, 'Ronda', 1985, 'F', 118), +(131391, 'Sherika', 1985, 'F', 118), +(131392, 'Tiera', 1985, 'F', 118), +(131393, 'Adam', 1985, 'F', 117), +(131394, 'Dalia', 1985, 'F', 117), +(131395, 'Diandra', 1985, 'F', 117), +(131396, 'Phoebe', 1985, 'F', 117), +(131397, 'Mallorie', 1985, 'F', 116), +(131398, 'Reina', 1985, 'F', 116), +(131399, 'Richard', 1985, 'F', 116), +(131400, 'Echo', 1985, 'F', 115), +(131401, 'Kandis', 1985, 'F', 115), +(131402, 'Loni', 1985, 'F', 115), +(131403, 'Reva', 1985, 'F', 115), +(131404, 'Starr', 1985, 'F', 115), +(131405, 'Anabel', 1985, 'F', 114), +(131406, 'Cami', 1985, 'F', 114), +(131407, 'Jeanie', 1985, 'F', 114), +(131408, 'Juliette', 1985, 'F', 114), +(131409, 'Lakia', 1985, 'F', 114), +(131410, 'Quiana', 1985, 'F', 114), +(131411, 'Rosanne', 1985, 'F', 114), +(131412, 'Jonelle', 1985, 'F', 113), +(131413, 'Kady', 1985, 'F', 113), +(131414, 'Marguerite', 1985, 'F', 113), +(131415, 'Taisha', 1985, 'F', 113), +(131416, 'Thomas', 1985, 'F', 113), +(131417, 'Alexandrea', 1985, 'F', 112), +(131418, 'Elvira', 1985, 'F', 112), +(131419, 'Emilia', 1985, 'F', 112), +(131420, 'Kelsi', 1985, 'F', 112), +(131421, 'Mariam', 1985, 'F', 112), +(131422, 'Aida', 1985, 'F', 111), +(131423, 'Ashlei', 1985, 'F', 111), +(131424, 'Jaimee', 1985, 'F', 111), +(131425, 'Lorna', 1985, 'F', 111), +(131426, 'Margot', 1985, 'F', 111), +(131427, 'Rosario', 1985, 'F', 111), +(131428, 'Sandi', 1985, 'F', 111), +(131429, 'Scarlett', 1985, 'F', 111), +(131430, 'Sharina', 1985, 'F', 111), +(131431, 'Tashia', 1985, 'F', 111), +(131432, 'Adina', 1985, 'F', 110), +(131433, 'Ahsley', 1985, 'F', 110), +(131434, 'Alessandra', 1985, 'F', 110), +(131435, 'Amalia', 1985, 'F', 110), +(131436, 'Chelsi', 1985, 'F', 110), +(131437, 'Darcie', 1985, 'F', 110), +(131438, 'Esperanza', 1985, 'F', 110), +(131439, 'Greta', 1985, 'F', 110), +(131440, 'Laken', 1985, 'F', 110), +(131441, 'Paulette', 1985, 'F', 110), +(131442, 'Savanah', 1985, 'F', 110), +(131443, 'Taneisha', 1985, 'F', 110), +(131444, 'Corie', 1985, 'F', 109), +(131445, 'Faye', 1985, 'F', 109), +(131446, 'Jewel', 1985, 'F', 109), +(131447, 'Moriah', 1985, 'F', 109), +(131448, 'Roseann', 1985, 'F', 109), +(131449, 'Susanne', 1985, 'F', 109), +(131450, 'Catalina', 1985, 'F', 108), +(131451, 'Jessenia', 1985, 'F', 108), +(131452, 'Rae', 1985, 'F', 108), +(131453, 'Raina', 1985, 'F', 108), +(131454, 'Reanna', 1985, 'F', 108), +(131455, 'Shawanda', 1985, 'F', 108), +(131456, 'Alona', 1985, 'F', 107), +(131457, 'Charisse', 1985, 'F', 107), +(131458, 'Jerri', 1985, 'F', 107), +(131459, 'Letitia', 1985, 'F', 107), +(131460, 'Rayna', 1985, 'F', 107), +(131461, 'Carlee', 1985, 'F', 106), +(131462, 'Charles', 1985, 'F', 106), +(131463, 'Coral', 1985, 'F', 106), +(131464, 'Katelynn', 1985, 'F', 106), +(131465, 'Lorie', 1985, 'F', 106), +(131466, 'Mildred', 1985, 'F', 106), +(131467, 'Nellie', 1985, 'F', 106), +(131468, 'Shanice', 1985, 'F', 106), +(131469, 'Anika', 1985, 'F', 105), +(131470, 'Breana', 1985, 'F', 105), +(131471, 'Consuelo', 1985, 'F', 105), +(131472, 'Cristen', 1985, 'F', 105), +(131473, 'Eden', 1985, 'F', 105), +(131474, 'Genna', 1985, 'F', 105), +(131475, 'Keena', 1985, 'F', 105), +(131476, 'Shandi', 1985, 'F', 105), +(131477, 'Shantelle', 1985, 'F', 105), +(131478, 'Tiffiny', 1985, 'F', 105), +(131479, 'Trinity', 1985, 'F', 105), +(131480, 'Delores', 1985, 'F', 104), +(131481, 'Holley', 1985, 'F', 104), +(131482, 'Jacquelynn', 1985, 'F', 104), +(131483, 'Jeffrey', 1985, 'F', 104), +(131484, 'Regan', 1985, 'F', 104), +(131485, 'Renata', 1985, 'F', 104), +(131486, 'Serina', 1985, 'F', 104), +(131487, 'Shani', 1985, 'F', 104), +(131488, 'Dani', 1985, 'F', 103), +(131489, 'Danna', 1985, 'F', 103), +(131490, 'Dixie', 1985, 'F', 103), +(131491, 'Eryn', 1985, 'F', 103), +(131492, 'Evan', 1985, 'F', 103), +(131493, 'Ginny', 1985, 'F', 103), +(131494, 'Gwen', 1985, 'F', 103), +(131495, 'Laquisha', 1985, 'F', 103), +(131496, 'Niesha', 1985, 'F', 103), +(131497, 'Ryann', 1985, 'F', 103), +(131498, 'Sharlene', 1985, 'F', 103), +(131499, 'Shaunna', 1985, 'F', 103), +(131500, 'Tammi', 1985, 'F', 103), +(131501, 'Tawanna', 1985, 'F', 103), +(131502, 'Vanity', 1985, 'F', 103), +(131503, 'Aleshia', 1985, 'F', 102), +(131504, 'Angelita', 1985, 'F', 102), +(131505, 'Candyce', 1985, 'F', 102), +(131506, 'Daniele', 1985, 'F', 102), +(131507, 'Jenniffer', 1985, 'F', 102), +(131508, 'Kindra', 1985, 'F', 102), +(131509, 'Margie', 1985, 'F', 102), +(131510, 'Shaquana', 1985, 'F', 102), +(131511, 'Shaunte', 1985, 'F', 101), +(131512, 'Thelma', 1985, 'F', 101), +(131513, 'Baby', 1985, 'F', 100), +(131514, 'Brigid', 1985, 'F', 100), +(131515, 'Cinthia', 1985, 'F', 100), +(131516, 'Davina', 1985, 'F', 100), +(131517, 'Hana', 1985, 'F', 100), +(131518, 'Joi', 1985, 'F', 100), +(131519, 'Kaycee', 1985, 'F', 100), +(131520, 'Leighann', 1985, 'F', 100), +(131521, 'Samara', 1985, 'F', 100), +(131522, 'Sharday', 1985, 'F', 100), +(131523, 'Skye', 1985, 'F', 100), +(131524, 'Michael', 1985, 'M', 64887), +(131525, 'Christopher', 1985, 'M', 59583), +(131526, 'Matthew', 1985, 'M', 47050), +(131527, 'Joshua', 1985, 'M', 42185), +(131528, 'Daniel', 1985, 'M', 38530), +(131529, 'David', 1985, 'M', 38502), +(131530, 'James', 1985, 'M', 35840), +(131531, 'Robert', 1985, 'M', 32078), +(131532, 'John', 1985, 'M', 31490), +(131533, 'Joseph', 1985, 'M', 30209), +(131534, 'Andrew', 1985, 'M', 30159), +(131535, 'Ryan', 1985, 'M', 29881), +(131536, 'Brandon', 1985, 'M', 29300), +(131537, 'Jason', 1985, 'M', 26031), +(131538, 'Justin', 1985, 'M', 25533), +(131539, 'William', 1985, 'M', 24603), +(131540, 'Jonathan', 1985, 'M', 24120), +(131541, 'Brian', 1985, 'M', 23052), +(131542, 'Nicholas', 1985, 'M', 22381), +(131543, 'Anthony', 1985, 'M', 22082), +(131544, 'Eric', 1985, 'M', 20837), +(131545, 'Adam', 1985, 'M', 20161), +(131546, 'Kevin', 1985, 'M', 18806), +(131547, 'Steven', 1985, 'M', 18716), +(131548, 'Thomas', 1985, 'M', 17590), +(131549, 'Timothy', 1985, 'M', 17141), +(131550, 'Kyle', 1985, 'M', 16512), +(131551, 'Richard', 1985, 'M', 15327), +(131552, 'Jeffrey', 1985, 'M', 14496), +(131553, 'Jeremy', 1985, 'M', 13445), +(131554, 'Benjamin', 1985, 'M', 13425), +(131555, 'Mark', 1985, 'M', 13185), +(131556, 'Aaron', 1985, 'M', 13133), +(131557, 'Charles', 1985, 'M', 12890), +(131558, 'Jacob', 1985, 'M', 12266), +(131559, 'Stephen', 1985, 'M', 12204), +(131560, 'Patrick', 1985, 'M', 11631), +(131561, 'Sean', 1985, 'M', 11447), +(131562, 'Zachary', 1985, 'M', 11341), +(131563, 'Nathan', 1985, 'M', 10647), +(131564, 'Dustin', 1985, 'M', 10436), +(131565, 'Paul', 1985, 'M', 10308), +(131566, 'Tyler', 1985, 'M', 10210), +(131567, 'Scott', 1985, 'M', 10139), +(131568, 'Gregory', 1985, 'M', 9767), +(131569, 'Travis', 1985, 'M', 9087), +(131570, 'Kenneth', 1985, 'M', 8990), +(131571, 'Bryan', 1985, 'M', 8719), +(131572, 'Jose', 1985, 'M', 8398), +(131573, 'Alexander', 1985, 'M', 8286), +(131574, 'Jesse', 1985, 'M', 8216), +(131575, 'Cody', 1985, 'M', 7095), +(131576, 'Bradley', 1985, 'M', 7006), +(131577, 'Samuel', 1985, 'M', 7000), +(131578, 'Shawn', 1985, 'M', 6980), +(131579, 'Derek', 1985, 'M', 6658), +(131580, 'Chad', 1985, 'M', 6467), +(131581, 'Jared', 1985, 'M', 5882), +(131582, 'Edward', 1985, 'M', 5866), +(131583, 'Peter', 1985, 'M', 5665), +(131584, 'Marcus', 1985, 'M', 5585), +(131585, 'Jordan', 1985, 'M', 5456), +(131586, 'Corey', 1985, 'M', 5229), +(131587, 'Keith', 1985, 'M', 5209), +(131588, 'Juan', 1985, 'M', 4848), +(131589, 'Donald', 1985, 'M', 4750), +(131590, 'Joel', 1985, 'M', 4624), +(131591, 'Shane', 1985, 'M', 4547), +(131592, 'Phillip', 1985, 'M', 4491), +(131593, 'Brett', 1985, 'M', 4325), +(131594, 'Ronald', 1985, 'M', 4296), +(131595, 'George', 1985, 'M', 4254), +(131596, 'Antonio', 1985, 'M', 4145), +(131597, 'Raymond', 1985, 'M', 4087), +(131598, 'Carlos', 1985, 'M', 4083), +(131599, 'Douglas', 1985, 'M', 4022), +(131600, 'Nathaniel', 1985, 'M', 3999), +(131601, 'Ian', 1985, 'M', 3996), +(131602, 'Craig', 1985, 'M', 3952), +(131603, 'Alex', 1985, 'M', 3901), +(131604, 'Cory', 1985, 'M', 3865), +(131605, 'Gary', 1985, 'M', 3811), +(131606, 'Derrick', 1985, 'M', 3778), +(131607, 'Philip', 1985, 'M', 3735), +(131608, 'Luis', 1985, 'M', 3703), +(131609, 'Casey', 1985, 'M', 3491), +(131610, 'Erik', 1985, 'M', 3370), +(131611, 'Victor', 1985, 'M', 3332), +(131612, 'Brent', 1985, 'M', 3318), +(131613, 'Frank', 1985, 'M', 3298), +(131614, 'Evan', 1985, 'M', 3220), +(131615, 'Gabriel', 1985, 'M', 3209), +(131616, 'Adrian', 1985, 'M', 3130), +(131617, 'Wesley', 1985, 'M', 3043), +(131618, 'Vincent', 1985, 'M', 3037), +(131619, 'Larry', 1985, 'M', 2947), +(131620, 'Jeffery', 1985, 'M', 2946), +(131621, 'Curtis', 1985, 'M', 2941), +(131622, 'Todd', 1985, 'M', 2938), +(131623, 'Blake', 1985, 'M', 2918), +(131624, 'Christian', 1985, 'M', 2915), +(131625, 'Randy', 1985, 'M', 2883), +(131626, 'Dennis', 1985, 'M', 2842), +(131627, 'Seth', 1985, 'M', 2822), +(131628, 'Trevor', 1985, 'M', 2821), +(131629, 'Luke', 1985, 'M', 2741), +(131630, 'Austin', 1985, 'M', 2724), +(131631, 'Alan', 1985, 'M', 2682), +(131632, 'Jesus', 1985, 'M', 2681), +(131633, 'Russell', 1985, 'M', 2570), +(131634, 'Jeremiah', 1985, 'M', 2536), +(131635, 'Carl', 1985, 'M', 2525), +(131636, 'Miguel', 1985, 'M', 2522), +(131637, 'Tony', 1985, 'M', 2519), +(131638, 'Mitchell', 1985, 'M', 2450), +(131639, 'Jerry', 1985, 'M', 2423), +(131640, 'Mario', 1985, 'M', 2412), +(131641, 'Johnathan', 1985, 'M', 2393), +(131642, 'Terry', 1985, 'M', 2374), +(131643, 'Shaun', 1985, 'M', 2350), +(131644, 'Devin', 1985, 'M', 2331), +(131645, 'Lucas', 1985, 'M', 2311), +(131646, 'Troy', 1985, 'M', 2311), +(131647, 'Jorge', 1985, 'M', 2288), +(131648, 'Andre', 1985, 'M', 2284), +(131649, 'Drew', 1985, 'M', 2275), +(131650, 'Johnny', 1985, 'M', 2210), +(131651, 'Allen', 1985, 'M', 2187), +(131652, 'Marc', 1985, 'M', 2155), +(131653, 'Lance', 1985, 'M', 2152), +(131654, 'Ricardo', 1985, 'M', 2139), +(131655, 'Martin', 1985, 'M', 2135), +(131656, 'Chase', 1985, 'M', 2126), +(131657, 'Kristopher', 1985, 'M', 2099), +(131658, 'Bobby', 1985, 'M', 2094), +(131659, 'Caleb', 1985, 'M', 2083), +(131660, 'Henry', 1985, 'M', 2062), +(131661, 'Garrett', 1985, 'M', 2053), +(131662, 'Jonathon', 1985, 'M', 2032), +(131663, 'Francisco', 1985, 'M', 2014), +(131664, 'Danny', 1985, 'M', 2013), +(131665, 'Lee', 1985, 'M', 2005), +(131666, 'Manuel', 1985, 'M', 1974), +(131667, 'Lawrence', 1985, 'M', 1942), +(131668, 'Ricky', 1985, 'M', 1933), +(131669, 'Randall', 1985, 'M', 1909), +(131670, 'Ross', 1985, 'M', 1884), +(131671, 'Mathew', 1985, 'M', 1879), +(131672, 'Jimmy', 1985, 'M', 1866), +(131673, 'Billy', 1985, 'M', 1831), +(131674, 'Jon', 1985, 'M', 1801), +(131675, 'Albert', 1985, 'M', 1797), +(131676, 'Taylor', 1985, 'M', 1794), +(131677, 'Cameron', 1985, 'M', 1792), +(131678, 'Micheal', 1985, 'M', 1760), +(131679, 'Colin', 1985, 'M', 1737), +(131680, 'Clayton', 1985, 'M', 1718), +(131681, 'Arthur', 1985, 'M', 1712), +(131682, 'Roberto', 1985, 'M', 1707), +(131683, 'Roger', 1985, 'M', 1705), +(131684, 'Darren', 1985, 'M', 1700), +(131685, 'Clinton', 1985, 'M', 1691), +(131686, 'Walter', 1985, 'M', 1689), +(131687, 'Louis', 1985, 'M', 1681), +(131688, 'Isaac', 1985, 'M', 1670), +(131689, 'Grant', 1985, 'M', 1651), +(131690, 'Jamie', 1985, 'M', 1630), +(131691, 'Rodney', 1985, 'M', 1620), +(131692, 'Joe', 1985, 'M', 1592), +(131693, 'Oscar', 1985, 'M', 1591), +(131694, 'Willie', 1985, 'M', 1574), +(131695, 'Angel', 1985, 'M', 1560), +(131696, 'Maurice', 1985, 'M', 1559), +(131697, 'Julian', 1985, 'M', 1525), +(131698, 'Jack', 1985, 'M', 1522), +(131699, 'Calvin', 1985, 'M', 1518), +(131700, 'Jay', 1985, 'M', 1518), +(131701, 'Hector', 1985, 'M', 1491), +(131702, 'Alejandro', 1985, 'M', 1458), +(131703, 'Ruben', 1985, 'M', 1454), +(131704, 'Gerald', 1985, 'M', 1447), +(131705, 'Javier', 1985, 'M', 1422), +(131706, 'Bruce', 1985, 'M', 1412), +(131707, 'Wayne', 1985, 'M', 1382), +(131708, 'Roy', 1985, 'M', 1380), +(131709, 'Brendan', 1985, 'M', 1378), +(131710, 'Dylan', 1985, 'M', 1330), +(131711, 'Edwin', 1985, 'M', 1329), +(131712, 'Dominic', 1985, 'M', 1327), +(131713, 'Darrell', 1985, 'M', 1322), +(131714, 'Geoffrey', 1985, 'M', 1320), +(131715, 'Reginald', 1985, 'M', 1312), +(131716, 'Fernando', 1985, 'M', 1287), +(131717, 'Sergio', 1985, 'M', 1264), +(131718, 'Pedro', 1985, 'M', 1246), +(131719, 'Rafael', 1985, 'M', 1246), +(131720, 'Frederick', 1985, 'M', 1223), +(131721, 'Tyrone', 1985, 'M', 1223), +(131722, 'Omar', 1985, 'M', 1214), +(131723, 'Jerome', 1985, 'M', 1210), +(131724, 'Theodore', 1985, 'M', 1208), +(131725, 'Neil', 1985, 'M', 1204), +(131726, 'Terrance', 1985, 'M', 1188), +(131727, 'Cole', 1985, 'M', 1183), +(131728, 'Jaime', 1985, 'M', 1182), +(131729, 'Jermaine', 1985, 'M', 1154), +(131730, 'Eddie', 1985, 'M', 1150), +(131731, 'Micah', 1985, 'M', 1146), +(131732, 'Levi', 1985, 'M', 1144), +(131733, 'Marvin', 1985, 'M', 1143), +(131734, 'Brad', 1985, 'M', 1141), +(131735, 'Emmanuel', 1985, 'M', 1141), +(131736, 'Jessie', 1985, 'M', 1131), +(131737, 'Ronnie', 1985, 'M', 1127), +(131738, 'Darryl', 1985, 'M', 1126), +(131739, 'Spencer', 1985, 'M', 1115), +(131740, 'Noah', 1985, 'M', 1109), +(131741, 'Raul', 1985, 'M', 1106), +(131742, 'Dale', 1985, 'M', 1093), +(131743, 'Ernest', 1985, 'M', 1072), +(131744, 'Jake', 1985, 'M', 1067), +(131745, 'Tristan', 1985, 'M', 1060), +(131746, 'Eduardo', 1985, 'M', 1050), +(131747, 'Ivan', 1985, 'M', 1049), +(131748, 'Alberto', 1985, 'M', 1040), +(131749, 'Andres', 1985, 'M', 1038), +(131750, 'Armando', 1985, 'M', 1017), +(131751, 'Kurt', 1985, 'M', 1011), +(131752, 'Dane', 1985, 'M', 1005), +(131753, 'Glenn', 1985, 'M', 1002), +(131754, 'Nicolas', 1985, 'M', 996), +(131755, 'Eugene', 1985, 'M', 994), +(131756, 'Logan', 1985, 'M', 991), +(131757, 'Ramon', 1985, 'M', 991), +(131758, 'Steve', 1985, 'M', 989), +(131759, 'Bryce', 1985, 'M', 984), +(131760, 'Tommy', 1985, 'M', 981), +(131761, 'Preston', 1985, 'M', 977), +(131762, 'Devon', 1985, 'M', 976), +(131763, 'Barry', 1985, 'M', 965), +(131764, 'Marco', 1985, 'M', 962), +(131765, 'Karl', 1985, 'M', 960), +(131766, 'Leonard', 1985, 'M', 953), +(131767, 'Terrence', 1985, 'M', 942), +(131768, 'Francis', 1985, 'M', 935), +(131769, 'Tyson', 1985, 'M', 933), +(131770, 'Stanley', 1985, 'M', 919), +(131771, 'Brady', 1985, 'M', 914), +(131772, 'Melvin', 1985, 'M', 907), +(131773, 'Jarrod', 1985, 'M', 900), +(131774, 'Cesar', 1985, 'M', 897), +(131775, 'Byron', 1985, 'M', 894), +(131776, 'Clifford', 1985, 'M', 893), +(131777, 'Kelly', 1985, 'M', 891), +(131778, 'Julio', 1985, 'M', 889), +(131779, 'Terrell', 1985, 'M', 889), +(131780, 'Edgar', 1985, 'M', 880), +(131781, 'Dwayne', 1985, 'M', 879), +(131782, 'Harold', 1985, 'M', 856), +(131783, 'Abraham', 1985, 'M', 848), +(131784, 'Cedric', 1985, 'M', 842), +(131785, 'Antoine', 1985, 'M', 829), +(131786, 'Erick', 1985, 'M', 824), +(131787, 'Franklin', 1985, 'M', 812), +(131788, 'Branden', 1985, 'M', 809), +(131789, 'Dean', 1985, 'M', 801), +(131790, 'Lorenzo', 1985, 'M', 801), +(131791, 'Harry', 1985, 'M', 780), +(131792, 'Stuart', 1985, 'M', 780), +(131793, 'Alfredo', 1985, 'M', 770), +(131794, 'Ray', 1985, 'M', 768), +(131795, 'Arturo', 1985, 'M', 766), +(131796, 'Joey', 1985, 'M', 763), +(131797, 'Andy', 1985, 'M', 761), +(131798, 'Max', 1985, 'M', 760), +(131799, 'Johnathon', 1985, 'M', 756), +(131800, 'Ralph', 1985, 'M', 752), +(131801, 'Warren', 1985, 'M', 750), +(131802, 'Kelvin', 1985, 'M', 740), +(131803, 'Courtney', 1985, 'M', 734), +(131804, 'Rene', 1985, 'M', 731), +(131805, 'Orlando', 1985, 'M', 730), +(131806, 'Leon', 1985, 'M', 727), +(131807, 'Marcos', 1985, 'M', 722), +(131808, 'Marshall', 1985, 'M', 717), +(131809, 'Colby', 1985, 'M', 715), +(131810, 'Daryl', 1985, 'M', 715), +(131811, 'Brock', 1985, 'M', 711), +(131812, 'Gerardo', 1985, 'M', 709), +(131813, 'Nelson', 1985, 'M', 706), +(131814, 'Alvin', 1985, 'M', 705), +(131815, 'Enrique', 1985, 'M', 702), +(131816, 'Trent', 1985, 'M', 699), +(131817, 'Earl', 1985, 'M', 691), +(131818, 'Shannon', 1985, 'M', 689), +(131819, 'Damien', 1985, 'M', 688), +(131820, 'Gilbert', 1985, 'M', 686), +(131821, 'Morgan', 1985, 'M', 684), +(131822, 'Kirk', 1985, 'M', 681), +(131823, 'Elijah', 1985, 'M', 680), +(131824, 'Clarence', 1985, 'M', 676), +(131825, 'Desmond', 1985, 'M', 676), +(131826, 'Howard', 1985, 'M', 676), +(131827, 'Alfred', 1985, 'M', 675), +(131828, 'Darnell', 1985, 'M', 674), +(131829, 'Nickolas', 1985, 'M', 671), +(131830, 'Roderick', 1985, 'M', 669), +(131831, 'Ethan', 1985, 'M', 668), +(131832, 'Trenton', 1985, 'M', 662), +(131833, 'Beau', 1985, 'M', 660), +(131834, 'Demetrius', 1985, 'M', 656), +(131835, 'Bernard', 1985, 'M', 652), +(131836, 'Chance', 1985, 'M', 651), +(131837, 'Wade', 1985, 'M', 650), +(131838, 'Bryant', 1985, 'M', 648), +(131839, 'Zachery', 1985, 'M', 646), +(131840, 'Clifton', 1985, 'M', 644), +(131841, 'Angelo', 1985, 'M', 639), +(131842, 'Ernesto', 1985, 'M', 630), +(131843, 'Isaiah', 1985, 'M', 629), +(131844, 'Clint', 1985, 'M', 624), +(131845, 'Xavier', 1985, 'M', 624), +(131846, 'Jamal', 1985, 'M', 618), +(131847, 'Salvador', 1985, 'M', 616), +(131848, 'Chris', 1985, 'M', 609), +(131849, 'Darius', 1985, 'M', 609), +(131850, 'Landon', 1985, 'M', 605), +(131851, 'Brenton', 1985, 'M', 603), +(131852, 'Israel', 1985, 'M', 598), +(131853, 'Quentin', 1985, 'M', 596), +(131854, 'Damon', 1985, 'M', 594), +(131855, 'Heath', 1985, 'M', 593), +(131856, 'Collin', 1985, 'M', 585), +(131857, 'Norman', 1985, 'M', 574), +(131858, 'Kenny', 1985, 'M', 573), +(131859, 'Duane', 1985, 'M', 566), +(131860, 'Hunter', 1985, 'M', 566), +(131861, 'Dallas', 1985, 'M', 563), +(131862, 'Simon', 1985, 'M', 563), +(131863, 'Neal', 1985, 'M', 562), +(131864, 'Lewis', 1985, 'M', 559), +(131865, 'Eli', 1985, 'M', 554), +(131866, 'Charlie', 1985, 'M', 549), +(131867, 'Terence', 1985, 'M', 549), +(131868, 'Vernon', 1985, 'M', 547), +(131869, 'Quinton', 1985, 'M', 543), +(131870, 'Leroy', 1985, 'M', 539), +(131871, 'Kent', 1985, 'M', 536), +(131872, 'Lamar', 1985, 'M', 534), +(131873, 'Emanuel', 1985, 'M', 531), +(131874, 'Kerry', 1985, 'M', 525), +(131875, 'Gavin', 1985, 'M', 522), +(131876, 'Graham', 1985, 'M', 521), +(131877, 'Perry', 1985, 'M', 521), +(131878, 'Alexis', 1985, 'M', 519), +(131879, 'Allan', 1985, 'M', 517), +(131880, 'Jayson', 1985, 'M', 517), +(131881, 'Rudy', 1985, 'M', 514), +(131882, 'Tanner', 1985, 'M', 514), +(131883, 'Glen', 1985, 'M', 509), +(131884, 'Marlon', 1985, 'M', 509), +(131885, 'Damian', 1985, 'M', 508), +(131886, 'Fredrick', 1985, 'M', 505), +(131887, 'Marquis', 1985, 'M', 504), +(131888, 'Ashley', 1985, 'M', 502), +(131889, 'Bret', 1985, 'M', 502), +(131890, 'Dwight', 1985, 'M', 501), +(131891, 'Kurtis', 1985, 'M', 501), +(131892, 'Rickey', 1985, 'M', 500), +(131893, 'Rory', 1985, 'M', 499), +(131894, 'Josiah', 1985, 'M', 497), +(131895, 'Zachariah', 1985, 'M', 491), +(131896, 'Julius', 1985, 'M', 490), +(131897, 'Gordon', 1985, 'M', 489), +(131898, 'Dana', 1985, 'M', 482), +(131899, 'Deandre', 1985, 'M', 481), +(131900, 'Jarrett', 1985, 'M', 481), +(131901, 'Nolan', 1985, 'M', 478), +(131902, 'Felix', 1985, 'M', 477), +(131903, 'Lonnie', 1985, 'M', 474), +(131904, 'Don', 1985, 'M', 473), +(131905, 'Rodolfo', 1985, 'M', 470), +(131906, 'Kendall', 1985, 'M', 466), +(131907, 'Maxwell', 1985, 'M', 466), +(131908, 'Fred', 1985, 'M', 463), +(131909, 'Kendrick', 1985, 'M', 463), +(131910, 'Jarvis', 1985, 'M', 462), +(131911, 'Abel', 1985, 'M', 461), +(131912, 'Pablo', 1985, 'M', 461), +(131913, 'Donovan', 1985, 'M', 460), +(131914, 'Stephan', 1985, 'M', 460), +(131915, 'Elliott', 1985, 'M', 459), +(131916, 'Tyrell', 1985, 'M', 458), +(131917, 'Alfonso', 1985, 'M', 457), +(131918, 'Fabian', 1985, 'M', 457), +(131919, 'Miles', 1985, 'M', 457), +(131920, 'Mason', 1985, 'M', 454), +(131921, 'Bradford', 1985, 'M', 453), +(131922, 'Elliot', 1985, 'M', 453), +(131923, 'Gustavo', 1985, 'M', 450), +(131924, 'Derick', 1985, 'M', 449), +(131925, 'Jarred', 1985, 'M', 448), +(131926, 'Lloyd', 1985, 'M', 447), +(131927, 'Pierre', 1985, 'M', 447), +(131928, 'Jamar', 1985, 'M', 446), +(131929, 'Leo', 1985, 'M', 446), +(131930, 'Noel', 1985, 'M', 445), +(131931, 'Rick', 1985, 'M', 442), +(131932, 'Guillermo', 1985, 'M', 430), +(131933, 'Herbert', 1985, 'M', 430), +(131934, 'Elias', 1985, 'M', 428), +(131935, 'Ben', 1985, 'M', 426), +(131936, 'Stefan', 1985, 'M', 423), +(131937, 'Dominick', 1985, 'M', 422), +(131938, 'Jameson', 1985, 'M', 422), +(131939, 'Darin', 1985, 'M', 418), +(131940, 'Josue', 1985, 'M', 418), +(131941, 'Clay', 1985, 'M', 416), +(131942, 'Ismael', 1985, 'M', 415), +(131943, 'Harrison', 1985, 'M', 414), +(131944, 'Roland', 1985, 'M', 414), +(131945, 'Owen', 1985, 'M', 412), +(131946, 'Rocky', 1985, 'M', 411), +(131947, 'Dexter', 1985, 'M', 409), +(131948, 'Kory', 1985, 'M', 409), +(131949, 'Saul', 1985, 'M', 408), +(131950, 'Rolando', 1985, 'M', 403), +(131951, 'Lionel', 1985, 'M', 402), +(131952, 'Dante', 1985, 'M', 398), +(131953, 'Trey', 1985, 'M', 396), +(131954, 'Skyler', 1985, 'M', 393), +(131955, 'Rogelio', 1985, 'M', 388), +(131956, 'Felipe', 1985, 'M', 387), +(131957, 'Malcolm', 1985, 'M', 386), +(131958, 'Dominique', 1985, 'M', 384), +(131959, 'Dillon', 1985, 'M', 380), +(131960, 'Darrin', 1985, 'M', 379), +(131961, 'Carlton', 1985, 'M', 378), +(131962, 'Cornelius', 1985, 'M', 378), +(131963, 'Loren', 1985, 'M', 376), +(131964, 'Jeff', 1985, 'M', 373), +(131965, 'Robin', 1985, 'M', 372), +(131966, 'Donte', 1985, 'M', 370), +(131967, 'Oliver', 1985, 'M', 370), +(131968, 'Guy', 1985, 'M', 367), +(131969, 'Jerrod', 1985, 'M', 367), +(131970, 'Esteban', 1985, 'M', 365), +(131971, 'Gilberto', 1985, 'M', 365), +(131972, 'Milton', 1985, 'M', 365), +(131973, 'Antwan', 1985, 'M', 363), +(131974, 'Roman', 1985, 'M', 362), +(131975, 'Ty', 1985, 'M', 361), +(131976, 'Freddie', 1985, 'M', 356), +(131977, 'Kellen', 1985, 'M', 356), +(131978, 'Demarcus', 1985, 'M', 354), +(131979, 'Alvaro', 1985, 'M', 353), +(131980, 'Dusty', 1985, 'M', 352), +(131981, 'Nathanael', 1985, 'M', 352), +(131982, 'Sidney', 1985, 'M', 351), +(131983, 'Mike', 1985, 'M', 350), +(131984, 'Tracy', 1985, 'M', 348), +(131985, 'Sam', 1985, 'M', 347), +(131986, 'Jamaal', 1985, 'M', 346), +(131987, 'Gene', 1985, 'M', 343), +(131988, 'Gerard', 1985, 'M', 343), +(131989, 'Salvatore', 1985, 'M', 343), +(131990, 'Diego', 1985, 'M', 342), +(131991, 'Weston', 1985, 'M', 342), +(131992, 'Hugo', 1985, 'M', 341), +(131993, 'Jimmie', 1985, 'M', 341), +(131994, 'Zackary', 1985, 'M', 340), +(131995, 'Donnie', 1985, 'M', 338), +(131996, 'Riley', 1985, 'M', 333), +(131997, 'Greg', 1985, 'M', 331), +(131998, 'Leslie', 1985, 'M', 331), +(131999, 'Zane', 1985, 'M', 331), +(132000, 'Johnnie', 1985, 'M', 329), +(132001, 'Quincy', 1985, 'M', 327), +(132002, 'Frankie', 1985, 'M', 326), +(132003, 'Rusty', 1985, 'M', 326), +(132004, 'Randolph', 1985, 'M', 325), +(132005, 'Sheldon', 1985, 'M', 324), +(132006, 'Tomas', 1985, 'M', 323), +(132007, 'Toby', 1985, 'M', 322), +(132008, 'Lester', 1985, 'M', 321), +(132009, 'Brendon', 1985, 'M', 318), +(132010, 'Korey', 1985, 'M', 317), +(132011, 'Moses', 1985, 'M', 314), +(132012, 'Alonzo', 1985, 'M', 313), +(132013, 'Dewayne', 1985, 'M', 313), +(132014, 'Blaine', 1985, 'M', 310), +(132015, 'Forrest', 1985, 'M', 310), +(132016, 'Parker', 1985, 'M', 310), +(132017, 'Zackery', 1985, 'M', 310), +(132018, 'Herman', 1985, 'M', 309), +(132019, 'Bryon', 1985, 'M', 306), +(132020, 'Giovanni', 1985, 'M', 305), +(132021, 'Jarod', 1985, 'M', 305), +(132022, 'Floyd', 1985, 'M', 304), +(132023, 'Jamel', 1985, 'M', 303), +(132024, 'Kody', 1985, 'M', 303), +(132025, 'Leonardo', 1985, 'M', 301), +(132026, 'Kasey', 1985, 'M', 300), +(132027, 'Jackie', 1985, 'M', 299), +(132028, 'Reid', 1985, 'M', 297), +(132029, 'Jody', 1985, 'M', 295), +(132030, 'Moises', 1985, 'M', 295), +(132031, 'Brooks', 1985, 'M', 293), +(132032, 'Everett', 1985, 'M', 293), +(132033, 'Ramiro', 1985, 'M', 292), +(132034, 'Lamont', 1985, 'M', 291), +(132035, 'Alec', 1985, 'M', 290), +(132036, 'Ariel', 1985, 'M', 290), +(132037, 'Jackson', 1985, 'M', 289), +(132038, 'Ryne', 1985, 'M', 286), +(132039, 'Sebastian', 1985, 'M', 286), +(132040, 'Clark', 1985, 'M', 285), +(132041, 'Scotty', 1985, 'M', 285), +(132042, 'Ali', 1985, 'M', 282), +(132043, 'Chadwick', 1985, 'M', 282), +(132044, 'Stewart', 1985, 'M', 282), +(132045, 'Kareem', 1985, 'M', 280), +(132046, 'Reuben', 1985, 'M', 279), +(132047, 'Braden', 1985, 'M', 276), +(132048, 'Clyde', 1985, 'M', 276), +(132049, 'Wilson', 1985, 'M', 276), +(132050, 'Sterling', 1985, 'M', 274), +(132051, 'Colt', 1985, 'M', 272), +(132052, 'Keenan', 1985, 'M', 272), +(132053, 'Kristofer', 1985, 'M', 272), +(132054, 'Jonah', 1985, 'M', 267), +(132055, 'Cecil', 1985, 'M', 266), +(132056, 'Jamison', 1985, 'M', 266), +(132057, 'Santiago', 1985, 'M', 266), +(132058, 'Ted', 1985, 'M', 266), +(132059, 'Dan', 1985, 'M', 265), +(132060, 'Myron', 1985, 'M', 264), +(132061, 'Reynaldo', 1985, 'M', 264), +(132062, 'Deangelo', 1985, 'M', 263), +(132063, 'Chester', 1985, 'M', 262), +(132064, 'Jess', 1985, 'M', 262), +(132065, 'Noe', 1985, 'M', 262), +(132066, 'Randal', 1985, 'M', 262), +(132067, 'Rex', 1985, 'M', 261), +(132068, 'Garret', 1985, 'M', 260), +(132069, 'Avery', 1985, 'M', 259), +(132070, 'Freddy', 1985, 'M', 258), +(132071, 'Carson', 1985, 'M', 256), +(132072, 'Joaquin', 1985, 'M', 255); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(132073, 'Quintin', 1985, 'M', 255), +(132074, 'Raphael', 1985, 'M', 255), +(132075, 'Brennan', 1985, 'M', 253), +(132076, 'Nick', 1985, 'M', 253), +(132077, 'Erich', 1985, 'M', 252), +(132078, 'Dion', 1985, 'M', 251), +(132079, 'Garry', 1985, 'M', 251), +(132080, 'Jean', 1985, 'M', 250), +(132081, 'Guadalupe', 1985, 'M', 249), +(132082, 'Josh', 1985, 'M', 249), +(132083, 'Brice', 1985, 'M', 248), +(132084, 'Deon', 1985, 'M', 248), +(132085, 'Wendell', 1985, 'M', 247), +(132086, 'Efrain', 1985, 'M', 246), +(132087, 'Lyle', 1985, 'M', 245), +(132088, 'Solomon', 1985, 'M', 244), +(132089, 'Jordon', 1985, 'M', 243), +(132090, 'Rigoberto', 1985, 'M', 243), +(132091, 'Sammy', 1985, 'M', 243), +(132092, 'Adan', 1985, 'M', 241), +(132093, 'Aron', 1985, 'M', 238), +(132094, 'Humberto', 1985, 'M', 238), +(132095, 'Whitney', 1985, 'M', 236), +(132096, 'Shea', 1985, 'M', 234), +(132097, 'Aubrey', 1985, 'M', 233), +(132098, 'Amos', 1985, 'M', 232), +(132099, 'Barrett', 1985, 'M', 232), +(132100, 'Harvey', 1985, 'M', 232), +(132101, 'Reed', 1985, 'M', 230), +(132102, 'Ashton', 1985, 'M', 229), +(132103, 'Jessica', 1985, 'M', 229), +(132104, 'Anton', 1985, 'M', 226), +(132105, 'Hugh', 1985, 'M', 226), +(132106, 'Harley', 1985, 'M', 225), +(132107, 'Vicente', 1985, 'M', 225), +(132108, 'Dorian', 1985, 'M', 224), +(132109, 'Thaddeus', 1985, 'M', 224), +(132110, 'Conrad', 1985, 'M', 223), +(132111, 'Marques', 1985, 'M', 223), +(132112, 'Winston', 1985, 'M', 222), +(132113, 'Emilio', 1985, 'M', 221), +(132114, 'Kiel', 1985, 'M', 221), +(132115, 'Robbie', 1985, 'M', 221), +(132116, 'Donnell', 1985, 'M', 217), +(132117, 'Nathanial', 1985, 'M', 217), +(132118, 'Arron', 1985, 'M', 216), +(132119, 'Mauricio', 1985, 'M', 216), +(132120, 'Erin', 1985, 'M', 215), +(132121, 'Royce', 1985, 'M', 214), +(132122, 'Benny', 1985, 'M', 213), +(132123, 'Bradly', 1985, 'M', 213), +(132124, 'Jerod', 1985, 'M', 213), +(132125, 'Myles', 1985, 'M', 213), +(132126, 'Jairo', 1985, 'M', 211), +(132127, 'Wyatt', 1985, 'M', 209), +(132128, 'Bryson', 1985, 'M', 208), +(132129, 'Durell', 1985, 'M', 208), +(132130, 'Alton', 1985, 'M', 207), +(132131, 'Jim', 1985, 'M', 207), +(132132, 'Jerrell', 1985, 'M', 206), +(132133, 'Keegan', 1985, 'M', 205), +(132134, 'Chaz', 1985, 'M', 204), +(132135, 'Deshawn', 1985, 'M', 203), +(132136, 'Morris', 1985, 'M', 203), +(132137, 'Otis', 1985, 'M', 203), +(132138, 'Demario', 1985, 'M', 201), +(132139, 'Marcel', 1985, 'M', 201), +(132140, 'Will', 1985, 'M', 201), +(132141, 'Elvis', 1985, 'M', 200), +(132142, 'Joesph', 1985, 'M', 200), +(132143, 'Sonny', 1985, 'M', 200), +(132144, 'Conor', 1985, 'M', 199), +(132145, 'Jovan', 1985, 'M', 199), +(132146, 'Ignacio', 1985, 'M', 198), +(132147, 'Kaleb', 1985, 'M', 198), +(132148, 'Cary', 1985, 'M', 197), +(132149, 'Tyree', 1985, 'M', 197), +(132150, 'Lukas', 1985, 'M', 196), +(132151, 'Sherman', 1985, 'M', 196), +(132152, 'Jonas', 1985, 'M', 195), +(132153, 'Nigel', 1985, 'M', 195), +(132154, 'Prince', 1985, 'M', 195), +(132155, 'Sylvester', 1985, 'M', 194), +(132156, 'Wilfredo', 1985, 'M', 194), +(132157, 'Arnold', 1985, 'M', 193), +(132158, 'Brody', 1985, 'M', 192), +(132159, 'Cortez', 1985, 'M', 191), +(132160, 'Markus', 1985, 'M', 191), +(132161, 'Davon', 1985, 'M', 189), +(132162, 'Ahmad', 1985, 'M', 188), +(132163, 'Claude', 1985, 'M', 188), +(132164, 'Jerad', 1985, 'M', 187), +(132165, 'Cale', 1985, 'M', 186), +(132166, 'Willis', 1985, 'M', 186), +(132167, 'Antwon', 1985, 'M', 185), +(132168, 'Nikolas', 1985, 'M', 184), +(132169, 'Leonel', 1985, 'M', 183), +(132170, 'Rodrigo', 1985, 'M', 183), +(132171, 'Blair', 1985, 'M', 182), +(132172, 'Kristian', 1985, 'M', 182), +(132173, 'Cristian', 1985, 'M', 181), +(132174, 'Davis', 1985, 'M', 181), +(132175, 'Pete', 1985, 'M', 181), +(132176, 'Wallace', 1985, 'M', 180), +(132177, 'Waylon', 1985, 'M', 180), +(132178, 'Issac', 1985, 'M', 179), +(132179, 'Tom', 1985, 'M', 179), +(132180, 'Earnest', 1985, 'M', 178), +(132181, 'Hans', 1985, 'M', 178), +(132182, 'Lane', 1985, 'M', 178), +(132183, 'Coty', 1985, 'M', 177), +(132184, 'Jasper', 1985, 'M', 177), +(132185, 'Shelby', 1985, 'M', 177), +(132186, 'Bill', 1985, 'M', 176), +(132187, 'Brandan', 1985, 'M', 176), +(132188, 'Jace', 1985, 'M', 176), +(132189, 'Ron', 1985, 'M', 176), +(132190, 'Santos', 1985, 'M', 176), +(132191, 'Carter', 1985, 'M', 175), +(132192, 'Connor', 1985, 'M', 175), +(132193, 'Skylar', 1985, 'M', 175), +(132194, 'Tory', 1985, 'M', 175), +(132195, 'Amir', 1985, 'M', 174), +(132196, 'Edmund', 1985, 'M', 174), +(132197, 'Darrel', 1985, 'M', 173), +(132198, 'Derik', 1985, 'M', 173), +(132199, 'Ezra', 1985, 'M', 173), +(132200, 'Luther', 1985, 'M', 172), +(132201, 'Colton', 1985, 'M', 171), +(132202, 'Josef', 1985, 'M', 171), +(132203, 'Mickey', 1985, 'M', 171), +(132204, 'Quinn', 1985, 'M', 171), +(132205, 'Carey', 1985, 'M', 170), +(132206, 'Jefferson', 1985, 'M', 169), +(132207, 'Rashad', 1985, 'M', 169), +(132208, 'Gregg', 1985, 'M', 168), +(132209, 'Agustin', 1985, 'M', 167), +(132210, 'Damion', 1985, 'M', 166), +(132211, 'Leland', 1985, 'M', 166), +(132212, 'Duncan', 1985, 'M', 165), +(132213, 'Matt', 1985, 'M', 164), +(132214, 'Vance', 1985, 'M', 162), +(132215, 'Bennett', 1985, 'M', 161), +(132216, 'Brant', 1985, 'M', 161), +(132217, 'Ira', 1985, 'M', 161), +(132218, 'Jennifer', 1985, 'M', 161), +(132219, 'Mitchel', 1985, 'M', 161), +(132220, 'Akeem', 1985, 'M', 160), +(132221, 'Tyrel', 1985, 'M', 160), +(132222, 'Galen', 1985, 'M', 159), +(132223, 'Robby', 1985, 'M', 158), +(132224, 'Jarrell', 1985, 'M', 157), +(132225, 'Mikel', 1985, 'M', 157), +(132226, 'Roosevelt', 1985, 'M', 157), +(132227, 'Rudolph', 1985, 'M', 157), +(132228, 'Shayne', 1985, 'M', 157), +(132229, 'Curt', 1985, 'M', 156), +(132230, 'Marty', 1985, 'M', 156), +(132231, 'Rodrick', 1985, 'M', 156), +(132232, 'Brain', 1985, 'M', 155), +(132233, 'Devan', 1985, 'M', 155), +(132234, 'Mohammad', 1985, 'M', 155), +(132235, 'Rhett', 1985, 'M', 155), +(132236, 'Marion', 1985, 'M', 154), +(132237, 'Carlo', 1985, 'M', 153), +(132238, 'Javon', 1985, 'M', 153), +(132239, 'Bo', 1985, 'M', 152), +(132240, 'Abram', 1985, 'M', 151), +(132241, 'Cassidy', 1985, 'M', 151), +(132242, 'Dejuan', 1985, 'M', 151), +(132243, 'Tobias', 1985, 'M', 151), +(132244, 'Heriberto', 1985, 'M', 150), +(132245, 'Durrell', 1985, 'M', 149), +(132246, 'Teddy', 1985, 'M', 149), +(132247, 'Ellis', 1985, 'M', 148), +(132248, 'Griffin', 1985, 'M', 148), +(132249, 'Brenden', 1985, 'M', 147), +(132250, 'Dave', 1985, 'M', 147), +(132251, 'Jered', 1985, 'M', 147), +(132252, 'Tommie', 1985, 'M', 147), +(132253, 'Liam', 1985, 'M', 146), +(132254, 'Rico', 1985, 'M', 146), +(132255, 'Virgil', 1985, 'M', 146), +(132256, 'Jerald', 1985, 'M', 145), +(132257, 'Timmy', 1985, 'M', 145), +(132258, 'Amanda', 1985, 'M', 144), +(132259, 'Jacques', 1985, 'M', 144), +(132260, 'Jed', 1985, 'M', 144), +(132261, 'Paris', 1985, 'M', 144), +(132262, 'Taurean', 1985, 'M', 144), +(132263, 'Adolfo', 1985, 'M', 143), +(132264, 'Alphonso', 1985, 'M', 143), +(132265, 'Bennie', 1985, 'M', 143), +(132266, 'Jamil', 1985, 'M', 143), +(132267, 'Jeremie', 1985, 'M', 143), +(132268, 'Van', 1985, 'M', 143), +(132269, 'Dereck', 1985, 'M', 142), +(132270, 'Asa', 1985, 'M', 141), +(132271, 'Benito', 1985, 'M', 141), +(132272, 'Cortney', 1985, 'M', 141), +(132273, 'Antione', 1985, 'M', 140), +(132274, 'Coleman', 1985, 'M', 140), +(132275, 'Tucker', 1985, 'M', 140), +(132276, 'Elmer', 1985, 'M', 139), +(132277, 'Jaron', 1985, 'M', 139), +(132278, 'Jeramy', 1985, 'M', 139), +(132279, 'Nestor', 1985, 'M', 139), +(132280, 'Osvaldo', 1985, 'M', 139), +(132281, 'Laurence', 1985, 'M', 138), +(132282, 'Mohammed', 1985, 'M', 138), +(132283, 'Stacy', 1985, 'M', 137), +(132284, 'Cornell', 1985, 'M', 135), +(132285, 'Kenton', 1985, 'M', 135), +(132286, 'Archie', 1985, 'M', 134), +(132287, 'Cristopher', 1985, 'M', 134), +(132288, 'Darrick', 1985, 'M', 134), +(132289, 'Grayson', 1985, 'M', 134), +(132290, 'Titus', 1985, 'M', 134), +(132291, 'Aric', 1985, 'M', 133), +(132292, 'Cyrus', 1985, 'M', 133), +(132293, 'Ervin', 1985, 'M', 133), +(132294, 'Grady', 1985, 'M', 133), +(132295, 'Rocco', 1985, 'M', 133), +(132296, 'Raymundo', 1985, 'M', 132), +(132297, 'Scottie', 1985, 'M', 132), +(132298, 'Daren', 1985, 'M', 130), +(132299, 'Domingo', 1985, 'M', 130), +(132300, 'Isiah', 1985, 'M', 130), +(132301, 'Reggie', 1985, 'M', 130), +(132302, 'Vaughn', 1985, 'M', 130), +(132303, 'Cedrick', 1985, 'M', 129), +(132304, 'Dalton', 1985, 'M', 129), +(132305, 'Jeromy', 1985, 'M', 129), +(132306, 'Darron', 1985, 'M', 128), +(132307, 'Jan', 1985, 'M', 128), +(132308, 'Jeffry', 1985, 'M', 128), +(132309, 'Keon', 1985, 'M', 128), +(132310, 'Tad', 1985, 'M', 128), +(132311, 'Gonzalo', 1985, 'M', 127), +(132312, 'Jedidiah', 1985, 'M', 127), +(132313, 'Kirby', 1985, 'M', 127), +(132314, 'Estevan', 1985, 'M', 126), +(132315, 'Fidel', 1985, 'M', 126), +(132316, 'Ari', 1985, 'M', 125), +(132317, 'Chauncey', 1985, 'M', 125), +(132318, 'Dontae', 1985, 'M', 125), +(132319, 'Rufus', 1985, 'M', 125), +(132320, 'Channing', 1985, 'M', 124), +(132321, 'Stephon', 1985, 'M', 124), +(132322, 'Ulysses', 1985, 'M', 124), +(132323, 'Ahmed', 1985, 'M', 123), +(132324, 'Bronson', 1985, 'M', 123), +(132325, 'Davin', 1985, 'M', 122), +(132326, 'Lazaro', 1985, 'M', 122), +(132327, 'Andrea', 1985, 'M', 121), +(132328, 'Bart', 1985, 'M', 121), +(132329, 'Broderick', 1985, 'M', 121), +(132330, 'Elvin', 1985, 'M', 121), +(132331, 'Kelsey', 1985, 'M', 121), +(132332, 'Chandler', 1985, 'M', 120), +(132333, 'Cruz', 1985, 'M', 120), +(132334, 'Jamey', 1985, 'M', 120), +(132335, 'Malik', 1985, 'M', 120), +(132336, 'Octavio', 1985, 'M', 120), +(132337, 'Rickie', 1985, 'M', 120), +(132338, 'Tyron', 1985, 'M', 120), +(132339, 'Edmond', 1985, 'M', 119), +(132340, 'German', 1985, 'M', 119), +(132341, 'Hassan', 1985, 'M', 119), +(132342, 'Kristoffer', 1985, 'M', 119), +(132343, 'Louie', 1985, 'M', 119), +(132344, 'Isidro', 1985, 'M', 118), +(132345, 'August', 1985, 'M', 117), +(132346, 'Britton', 1985, 'M', 117), +(132347, 'Christoper', 1985, 'M', 117), +(132348, 'Denny', 1985, 'M', 117), +(132349, 'Ezekiel', 1985, 'M', 117), +(132350, 'Martell', 1985, 'M', 117), +(132351, 'Moshe', 1985, 'M', 117), +(132352, 'Randell', 1985, 'M', 117), +(132353, 'Shelton', 1985, 'M', 117), +(132354, 'Stevie', 1985, 'M', 117), +(132355, 'Buddy', 1985, 'M', 116), +(132356, 'Danial', 1985, 'M', 116), +(132357, 'Judson', 1985, 'M', 116), +(132358, 'Lincoln', 1985, 'M', 116), +(132359, 'Lindsey', 1985, 'M', 116), +(132360, 'Mohamed', 1985, 'M', 116), +(132361, 'Silas', 1985, 'M', 116), +(132362, 'Coy', 1985, 'M', 114), +(132363, 'Delbert', 1985, 'M', 114), +(132364, 'Donny', 1985, 'M', 114), +(132365, 'Lauren', 1985, 'M', 114), +(132366, 'Rashawn', 1985, 'M', 114), +(132367, 'Wilbert', 1985, 'M', 114), +(132368, 'Amit', 1985, 'M', 113), +(132369, 'Gino', 1985, 'M', 113), +(132370, 'Gregorio', 1985, 'M', 113), +(132371, 'Jaymes', 1985, 'M', 113), +(132372, 'Justen', 1985, 'M', 113), +(132373, 'Mack', 1985, 'M', 113), +(132374, 'Stephanie', 1985, 'M', 113), +(132375, 'Dirk', 1985, 'M', 112), +(132376, 'Federico', 1985, 'M', 112), +(132377, 'Ken', 1985, 'M', 112), +(132378, 'Monte', 1985, 'M', 112), +(132379, 'Junior', 1985, 'M', 111), +(132380, 'Daron', 1985, 'M', 110), +(132381, 'Errol', 1985, 'M', 110), +(132382, 'Garett', 1985, 'M', 110), +(132383, 'Garrick', 1985, 'M', 110), +(132384, 'Hubert', 1985, 'M', 110), +(132385, 'Jeremey', 1985, 'M', 110), +(132386, 'Leif', 1985, 'M', 110), +(132387, 'Lynn', 1985, 'M', 110), +(132388, 'Bernardo', 1985, 'M', 109), +(132389, 'Chaim', 1985, 'M', 109), +(132390, 'Dakota', 1985, 'M', 109), +(132391, 'Keaton', 1985, 'M', 109), +(132392, 'Laron', 1985, 'M', 109), +(132393, 'Marquise', 1985, 'M', 109), +(132394, 'Samson', 1985, 'M', 109), +(132395, 'Stacey', 1985, 'M', 109), +(132396, 'Cliff', 1985, 'M', 108), +(132397, 'Cooper', 1985, 'M', 108), +(132398, 'Schuyler', 1985, 'M', 108), +(132399, 'Derrell', 1985, 'M', 107), +(132400, 'Francesco', 1985, 'M', 107), +(132401, 'Johathan', 1985, 'M', 107), +(132402, 'Pierce', 1985, 'M', 107), +(132403, 'Ulises', 1985, 'M', 107), +(132404, 'Brandyn', 1985, 'M', 106), +(132405, 'Darwin', 1985, 'M', 106), +(132406, 'Marlin', 1985, 'M', 106), +(132407, 'Danielle', 1985, 'M', 105), +(132408, 'Elizabeth', 1985, 'M', 105), +(132409, 'Kraig', 1985, 'M', 105), +(132410, 'Tylor', 1985, 'M', 105), +(132411, 'Willard', 1985, 'M', 105), +(132412, 'Brannon', 1985, 'M', 104), +(132413, 'Mackenzie', 1985, 'M', 104), +(132414, 'Cade', 1985, 'M', 103), +(132415, 'Donta', 1985, 'M', 103), +(132416, 'Drake', 1985, 'M', 103), +(132417, 'Jermey', 1985, 'M', 103), +(132418, 'Jerrad', 1985, 'M', 103), +(132419, 'Michel', 1985, 'M', 103), +(132420, 'Efren', 1985, 'M', 102), +(132421, 'Lowell', 1985, 'M', 102), +(132422, 'Nicholaus', 1985, 'M', 102), +(132423, 'Scot', 1985, 'M', 102), +(132424, 'Elisha', 1985, 'M', 101), +(132425, 'Greggory', 1985, 'M', 101), +(132426, 'Ronny', 1985, 'M', 101), +(132427, 'Sarah', 1985, 'M', 101), +(132428, 'Tim', 1985, 'M', 101), +(132429, 'Antony', 1985, 'M', 100), +(132430, 'Braxton', 1985, 'M', 100), +(132431, 'Cullen', 1985, 'M', 100), +(132432, 'Jessica', 1986, 'F', 52667), +(132433, 'Ashley', 1986, 'F', 49673), +(132434, 'Amanda', 1986, 'F', 40524), +(132435, 'Jennifer', 1986, 'F', 36181), +(132436, 'Sarah', 1986, 'F', 28141), +(132437, 'Stephanie', 1986, 'F', 22635), +(132438, 'Nicole', 1986, 'F', 21286), +(132439, 'Brittany', 1986, 'F', 20309), +(132440, 'Heather', 1986, 'F', 19789), +(132441, 'Elizabeth', 1986, 'F', 19065), +(132442, 'Megan', 1986, 'F', 18593), +(132443, 'Melissa', 1986, 'F', 17661), +(132444, 'Amber', 1986, 'F', 16949), +(132445, 'Lauren', 1986, 'F', 16675), +(132446, 'Rachel', 1986, 'F', 15449), +(132447, 'Danielle', 1986, 'F', 14944), +(132448, 'Tiffany', 1986, 'F', 14482), +(132449, 'Kimberly', 1986, 'F', 14414), +(132450, 'Christina', 1986, 'F', 14376), +(132451, 'Laura', 1986, 'F', 14172), +(132452, 'Samantha', 1986, 'F', 14091), +(132453, 'Amy', 1986, 'F', 13451), +(132454, 'Michelle', 1986, 'F', 13298), +(132455, 'Emily', 1986, 'F', 13232), +(132456, 'Crystal', 1986, 'F', 12690), +(132457, 'Rebecca', 1986, 'F', 11787), +(132458, 'Sara', 1986, 'F', 11044), +(132459, 'Katherine', 1986, 'F', 10568), +(132460, 'Kelly', 1986, 'F', 10413), +(132461, 'Erin', 1986, 'F', 10064), +(132462, 'Erica', 1986, 'F', 9972), +(132463, 'Whitney', 1986, 'F', 9532), +(132464, 'Angela', 1986, 'F', 9268), +(132465, 'Jamie', 1986, 'F', 9234), +(132466, 'Courtney', 1986, 'F', 9119), +(132467, 'Andrea', 1986, 'F', 8632), +(132468, 'Mary', 1986, 'F', 8503), +(132469, 'Katie', 1986, 'F', 8330), +(132470, 'Lindsey', 1986, 'F', 8056), +(132471, 'Lisa', 1986, 'F', 7899), +(132472, 'Kristen', 1986, 'F', 7844), +(132473, 'Allison', 1986, 'F', 7574), +(132474, 'Vanessa', 1986, 'F', 7466), +(132475, 'Shannon', 1986, 'F', 7401), +(132476, 'Alicia', 1986, 'F', 7014), +(132477, 'Lindsay', 1986, 'F', 6951), +(132478, 'Christine', 1986, 'F', 6916), +(132479, 'Kathryn', 1986, 'F', 6393), +(132480, 'Maria', 1986, 'F', 6126), +(132481, 'Kristin', 1986, 'F', 6000), +(132482, 'Anna', 1986, 'F', 5903), +(132483, 'Natalie', 1986, 'F', 5702), +(132484, 'April', 1986, 'F', 5673), +(132485, 'Victoria', 1986, 'F', 5671), +(132486, 'Jenna', 1986, 'F', 5414), +(132487, 'Tara', 1986, 'F', 5084), +(132488, 'Jacqueline', 1986, 'F', 5037), +(132489, 'Julie', 1986, 'F', 5016), +(132490, 'Monica', 1986, 'F', 5011), +(132491, 'Cassandra', 1986, 'F', 4988), +(132492, 'Krystal', 1986, 'F', 4926), +(132493, 'Kristina', 1986, 'F', 4841), +(132494, 'Holly', 1986, 'F', 4837), +(132495, 'Kayla', 1986, 'F', 4658), +(132496, 'Brittney', 1986, 'F', 4593), +(132497, 'Patricia', 1986, 'F', 4246), +(132498, 'Catherine', 1986, 'F', 4238), +(132499, 'Kathleen', 1986, 'F', 4127), +(132500, 'Caitlin', 1986, 'F', 3881), +(132501, 'Natasha', 1986, 'F', 3871), +(132502, 'Meghan', 1986, 'F', 3867), +(132503, 'Alexandra', 1986, 'F', 3801), +(132504, 'Chelsea', 1986, 'F', 3751), +(132505, 'Erika', 1986, 'F', 3678), +(132506, 'Diana', 1986, 'F', 3664), +(132507, 'Valerie', 1986, 'F', 3618), +(132508, 'Veronica', 1986, 'F', 3575), +(132509, 'Leah', 1986, 'F', 3453), +(132510, 'Brandi', 1986, 'F', 3430), +(132511, 'Casey', 1986, 'F', 3423), +(132512, 'Cynthia', 1986, 'F', 3423), +(132513, 'Hannah', 1986, 'F', 3385), +(132514, 'Mallory', 1986, 'F', 3323), +(132515, 'Brandy', 1986, 'F', 3295), +(132516, 'Alyssa', 1986, 'F', 3223), +(132517, 'Leslie', 1986, 'F', 3220), +(132518, 'Stacy', 1986, 'F', 3220), +(132519, 'Julia', 1986, 'F', 3106), +(132520, 'Bethany', 1986, 'F', 3081), +(132521, 'Felicia', 1986, 'F', 3080), +(132522, 'Margaret', 1986, 'F', 3077), +(132523, 'Dana', 1986, 'F', 3071), +(132524, 'Krista', 1986, 'F', 3054), +(132525, 'Stacey', 1986, 'F', 3034), +(132526, 'Jasmine', 1986, 'F', 2991), +(132527, 'Alison', 1986, 'F', 2974), +(132528, 'Melanie', 1986, 'F', 2971), +(132529, 'Dominique', 1986, 'F', 2943), +(132530, 'Katrina', 1986, 'F', 2827), +(132531, 'Karen', 1986, 'F', 2801), +(132532, 'Kendra', 1986, 'F', 2758), +(132533, 'Kara', 1986, 'F', 2719), +(132534, 'Rachael', 1986, 'F', 2698), +(132535, 'Brooke', 1986, 'F', 2696), +(132536, 'Nichole', 1986, 'F', 2651), +(132537, 'Sandra', 1986, 'F', 2639), +(132538, 'Jillian', 1986, 'F', 2587), +(132539, 'Carrie', 1986, 'F', 2562), +(132540, 'Candice', 1986, 'F', 2560), +(132541, 'Molly', 1986, 'F', 2551), +(132542, 'Latoya', 1986, 'F', 2536), +(132543, 'Kelsey', 1986, 'F', 2515), +(132544, 'Morgan', 1986, 'F', 2475), +(132545, 'Candace', 1986, 'F', 2460), +(132546, 'Marissa', 1986, 'F', 2441), +(132547, 'Nancy', 1986, 'F', 2427), +(132548, 'Tracy', 1986, 'F', 2424), +(132549, 'Susan', 1986, 'F', 2389), +(132550, 'Gina', 1986, 'F', 2361), +(132551, 'Sabrina', 1986, 'F', 2310), +(132552, 'Lacey', 1986, 'F', 2266), +(132553, 'Robin', 1986, 'F', 2264), +(132554, 'Meagan', 1986, 'F', 2246), +(132555, 'Brenda', 1986, 'F', 2238), +(132556, 'Alisha', 1986, 'F', 2236), +(132557, 'Joanna', 1986, 'F', 2222), +(132558, 'Renee', 1986, 'F', 2215), +(132559, 'Denise', 1986, 'F', 2204), +(132560, 'Alexis', 1986, 'F', 2194), +(132561, 'Angelica', 1986, 'F', 2147), +(132562, 'Heidi', 1986, 'F', 2122), +(132563, 'Ashlee', 1986, 'F', 2117), +(132564, 'Jaclyn', 1986, 'F', 2103), +(132565, 'Tamara', 1986, 'F', 2100), +(132566, 'Jordan', 1986, 'F', 2082), +(132567, 'Monique', 1986, 'F', 2045), +(132568, 'Miranda', 1986, 'F', 2036), +(132569, 'Pamela', 1986, 'F', 2017), +(132570, 'Tabitha', 1986, 'F', 2008), +(132571, 'Teresa', 1986, 'F', 2007), +(132572, 'Desiree', 1986, 'F', 2006), +(132573, 'Kelli', 1986, 'F', 2001), +(132574, 'Abigail', 1986, 'F', 1996), +(132575, 'Theresa', 1986, 'F', 1978), +(132576, 'Misty', 1986, 'F', 1971), +(132577, 'Tina', 1986, 'F', 1961), +(132578, 'Melinda', 1986, 'F', 1958), +(132579, 'Linda', 1986, 'F', 1950), +(132580, 'Katelyn', 1986, 'F', 1938), +(132581, 'Meredith', 1986, 'F', 1928), +(132582, 'Anne', 1986, 'F', 1918), +(132583, 'Colleen', 1986, 'F', 1842), +(132584, 'Rebekah', 1986, 'F', 1833), +(132585, 'Brianna', 1986, 'F', 1815), +(132586, 'Savannah', 1986, 'F', 1810), +(132587, 'Cassie', 1986, 'F', 1808), +(132588, 'Caroline', 1986, 'F', 1802), +(132589, 'Kristy', 1986, 'F', 1787), +(132590, 'Jill', 1986, 'F', 1772), +(132591, 'Tanya', 1986, 'F', 1762), +(132592, 'Krystle', 1986, 'F', 1752), +(132593, 'Carolyn', 1986, 'F', 1736), +(132594, 'Cristina', 1986, 'F', 1708), +(132595, 'Ebony', 1986, 'F', 1663), +(132596, 'Deanna', 1986, 'F', 1662), +(132597, 'Ana', 1986, 'F', 1636), +(132598, 'Jenny', 1986, 'F', 1630), +(132599, 'Kristi', 1986, 'F', 1615), +(132600, 'Sierra', 1986, 'F', 1611), +(132601, 'Kari', 1986, 'F', 1600), +(132602, 'Angel', 1986, 'F', 1583), +(132603, 'Bridget', 1986, 'F', 1575), +(132604, 'Sheena', 1986, 'F', 1572), +(132605, 'Christy', 1986, 'F', 1555), +(132606, 'Priscilla', 1986, 'F', 1535), +(132607, 'Marie', 1986, 'F', 1523), +(132608, 'Wendy', 1986, 'F', 1517), +(132609, 'Christa', 1986, 'F', 1513), +(132610, 'Mayra', 1986, 'F', 1502), +(132611, 'Audrey', 1986, 'F', 1486), +(132612, 'Barbara', 1986, 'F', 1485), +(132613, 'Kaitlin', 1986, 'F', 1467), +(132614, 'Lori', 1986, 'F', 1467), +(132615, 'Dawn', 1986, 'F', 1451), +(132616, 'Cindy', 1986, 'F', 1444), +(132617, 'Kate', 1986, 'F', 1440), +(132618, 'Sharon', 1986, 'F', 1426), +(132619, 'Michele', 1986, 'F', 1423), +(132620, 'Britney', 1986, 'F', 1404), +(132621, 'Stefanie', 1986, 'F', 1389), +(132622, 'Virginia', 1986, 'F', 1367), +(132623, 'Kristine', 1986, 'F', 1366), +(132624, 'Carla', 1986, 'F', 1344), +(132625, 'Cara', 1986, 'F', 1337), +(132626, 'Claudia', 1986, 'F', 1331), +(132627, 'Adrienne', 1986, 'F', 1321), +(132628, 'Aimee', 1986, 'F', 1319), +(132629, 'Claire', 1986, 'F', 1304), +(132630, 'Tasha', 1986, 'F', 1302), +(132631, 'Ann', 1986, 'F', 1301), +(132632, 'Tonya', 1986, 'F', 1298), +(132633, 'Deborah', 1986, 'F', 1284), +(132634, 'Haley', 1986, 'F', 1278), +(132635, 'Jessie', 1986, 'F', 1276), +(132636, 'Regina', 1986, 'F', 1269), +(132637, 'Trisha', 1986, 'F', 1269), +(132638, 'Jacquelyn', 1986, 'F', 1262), +(132639, 'Robyn', 1986, 'F', 1262), +(132640, 'Ashleigh', 1986, 'F', 1259), +(132641, 'Justine', 1986, 'F', 1258), +(132642, 'Emma', 1986, 'F', 1257), +(132643, 'Adriana', 1986, 'F', 1247), +(132644, 'Sade', 1986, 'F', 1245), +(132645, 'Janet', 1986, 'F', 1235), +(132646, 'Olivia', 1986, 'F', 1229), +(132647, 'Janelle', 1986, 'F', 1220), +(132648, 'Jaime', 1986, 'F', 1218), +(132649, 'Taylor', 1986, 'F', 1214), +(132650, 'Kaitlyn', 1986, 'F', 1207), +(132651, 'Latasha', 1986, 'F', 1204), +(132652, 'Carmen', 1986, 'F', 1198), +(132653, 'Shawna', 1986, 'F', 1194), +(132654, 'Carly', 1986, 'F', 1189), +(132655, 'Kasey', 1986, 'F', 1181), +(132656, 'Sasha', 1986, 'F', 1158), +(132657, 'Grace', 1986, 'F', 1154), +(132658, 'Martha', 1986, 'F', 1151), +(132659, 'Beth', 1986, 'F', 1135), +(132660, 'Summer', 1986, 'F', 1127), +(132661, 'Lydia', 1986, 'F', 1126), +(132662, 'Alexandria', 1986, 'F', 1121), +(132663, 'Autumn', 1986, 'F', 1121), +(132664, 'Abby', 1986, 'F', 1119), +(132665, 'Jeanette', 1986, 'F', 1111), +(132666, 'Briana', 1986, 'F', 1106), +(132667, 'Shana', 1986, 'F', 1094), +(132668, 'Bonnie', 1986, 'F', 1093), +(132669, 'Hillary', 1986, 'F', 1083), +(132670, 'Ruth', 1986, 'F', 1082), +(132671, 'Evelyn', 1986, 'F', 1079), +(132672, 'Kellie', 1986, 'F', 1077), +(132673, 'Toni', 1986, 'F', 1073), +(132674, 'Mindy', 1986, 'F', 1072), +(132675, 'Nina', 1986, 'F', 1072), +(132676, 'Sophia', 1986, 'F', 1060), +(132677, 'Mandy', 1986, 'F', 1056), +(132678, 'Marisa', 1986, 'F', 1054), +(132679, 'Elise', 1986, 'F', 1043), +(132680, 'Joy', 1986, 'F', 1037), +(132681, 'Nikita', 1986, 'F', 1034), +(132682, 'Cheryl', 1986, 'F', 1030), +(132683, 'Amelia', 1986, 'F', 1018), +(132684, 'Randi', 1986, 'F', 1018), +(132685, 'Diane', 1986, 'F', 1012), +(132686, 'Suzanne', 1986, 'F', 1009), +(132687, 'Nikki', 1986, 'F', 1007), +(132688, 'Tammy', 1986, 'F', 1006), +(132689, 'Kelley', 1986, 'F', 999), +(132690, 'Donna', 1986, 'F', 990), +(132691, 'Christie', 1986, 'F', 980), +(132692, 'Sheila', 1986, 'F', 979), +(132693, 'Raquel', 1986, 'F', 978), +(132694, 'Gloria', 1986, 'F', 976), +(132695, 'Ellen', 1986, 'F', 969), +(132696, 'Rosa', 1986, 'F', 967), +(132697, 'Gabrielle', 1986, 'F', 965), +(132698, 'Ashton', 1986, 'F', 954), +(132699, 'Naomi', 1986, 'F', 943), +(132700, 'Melody', 1986, 'F', 935), +(132701, 'Rachelle', 1986, 'F', 922), +(132702, 'Karla', 1986, 'F', 916), +(132703, 'Keri', 1986, 'F', 911), +(132704, 'Hope', 1986, 'F', 910), +(132705, 'Hilary', 1986, 'F', 909), +(132706, 'Katharine', 1986, 'F', 909), +(132707, 'Shelby', 1986, 'F', 900), +(132708, 'Jodi', 1986, 'F', 894), +(132709, 'Yolanda', 1986, 'F', 881), +(132710, 'Paula', 1986, 'F', 879), +(132711, 'Paige', 1986, 'F', 877), +(132712, 'Sylvia', 1986, 'F', 875), +(132713, 'Hayley', 1986, 'F', 868), +(132714, 'Traci', 1986, 'F', 868), +(132715, 'Jade', 1986, 'F', 861), +(132716, 'Charlotte', 1986, 'F', 860), +(132717, 'Esther', 1986, 'F', 858), +(132718, 'Sonia', 1986, 'F', 857), +(132719, 'Charity', 1986, 'F', 856), +(132720, 'Shanna', 1986, 'F', 854), +(132721, 'Lacy', 1986, 'F', 853), +(132722, 'Madeline', 1986, 'F', 853), +(132723, 'Jocelyn', 1986, 'F', 851), +(132724, 'Yesenia', 1986, 'F', 845), +(132725, 'Bianca', 1986, 'F', 830), +(132726, 'Alissa', 1986, 'F', 828), +(132727, 'Maggie', 1986, 'F', 827), +(132728, 'Allyson', 1986, 'F', 823), +(132729, 'Rose', 1986, 'F', 822), +(132730, 'Brianne', 1986, 'F', 814), +(132731, 'Angelina', 1986, 'F', 813), +(132732, 'Stacie', 1986, 'F', 812), +(132733, 'Roxanne', 1986, 'F', 810), +(132734, 'Chelsey', 1986, 'F', 807), +(132735, 'Johanna', 1986, 'F', 804), +(132736, 'Daisy', 1986, 'F', 800), +(132737, 'Charlene', 1986, 'F', 784), +(132738, 'Kerri', 1986, 'F', 781), +(132739, 'Antoinette', 1986, 'F', 780), +(132740, 'Debra', 1986, 'F', 776), +(132741, 'Carol', 1986, 'F', 769), +(132742, 'Helen', 1986, 'F', 766), +(132743, 'Carissa', 1986, 'F', 765), +(132744, 'Frances', 1986, 'F', 765), +(132745, 'Clarissa', 1986, 'F', 763), +(132746, 'Cortney', 1986, 'F', 758), +(132747, 'Gabriela', 1986, 'F', 758), +(132748, 'Miriam', 1986, 'F', 754), +(132749, 'Tracey', 1986, 'F', 754), +(132750, 'Shauna', 1986, 'F', 750), +(132751, 'Yvette', 1986, 'F', 749), +(132752, 'Kayleigh', 1986, 'F', 748), +(132753, 'Kirsten', 1986, 'F', 747), +(132754, 'Anita', 1986, 'F', 745), +(132755, 'Kristie', 1986, 'F', 743), +(132756, 'Meaghan', 1986, 'F', 743), +(132757, 'Shelly', 1986, 'F', 743), +(132758, 'Taryn', 1986, 'F', 740), +(132759, 'Yvonne', 1986, 'F', 736), +(132760, 'Sonya', 1986, 'F', 735), +(132761, 'Ciara', 1986, 'F', 733), +(132762, 'Keisha', 1986, 'F', 731), +(132763, 'Eva', 1986, 'F', 730), +(132764, 'Alana', 1986, 'F', 729), +(132765, 'Karina', 1986, 'F', 722), +(132766, 'Aubrey', 1986, 'F', 720), +(132767, 'Annie', 1986, 'F', 719), +(132768, 'Leigh', 1986, 'F', 718), +(132769, 'Tabatha', 1986, 'F', 713), +(132770, 'Alice', 1986, 'F', 706), +(132771, 'Breanna', 1986, 'F', 704), +(132772, 'Elisabeth', 1986, 'F', 703), +(132773, 'Ryan', 1986, 'F', 703), +(132774, 'Elyse', 1986, 'F', 702), +(132775, 'Brittani', 1986, 'F', 697), +(132776, 'Jasmin', 1986, 'F', 697), +(132777, 'Kerry', 1986, 'F', 697), +(132778, 'Rochelle', 1986, 'F', 696), +(132779, 'Cierra', 1986, 'F', 688), +(132780, 'Cecilia', 1986, 'F', 686), +(132781, 'Tanisha', 1986, 'F', 679), +(132782, 'Tia', 1986, 'F', 678), +(132783, 'Jana', 1986, 'F', 677), +(132784, 'Camille', 1986, 'F', 671), +(132785, 'Leticia', 1986, 'F', 671), +(132786, 'Sherry', 1986, 'F', 670), +(132787, 'Elisa', 1986, 'F', 667), +(132788, 'Jane', 1986, 'F', 667), +(132789, 'Elaine', 1986, 'F', 663), +(132790, 'Lyndsey', 1986, 'F', 663), +(132791, 'Lorena', 1986, 'F', 662), +(132792, 'Janice', 1986, 'F', 658), +(132793, 'Katy', 1986, 'F', 655), +(132794, 'Latisha', 1986, 'F', 655), +(132795, 'Ariel', 1986, 'F', 652), +(132796, 'Tricia', 1986, 'F', 649), +(132797, 'Madison', 1986, 'F', 646), +(132798, 'Rhonda', 1986, 'F', 639), +(132799, 'Alyson', 1986, 'F', 638), +(132800, 'Elena', 1986, 'F', 638), +(132801, 'Staci', 1986, 'F', 638), +(132802, 'Faith', 1986, 'F', 634), +(132803, 'Dorothy', 1986, 'F', 629), +(132804, 'Maureen', 1986, 'F', 629), +(132805, 'Terri', 1986, 'F', 627), +(132806, 'Jena', 1986, 'F', 619), +(132807, 'Chasity', 1986, 'F', 618), +(132808, 'Tessa', 1986, 'F', 618), +(132809, 'Tatiana', 1986, 'F', 608), +(132810, 'Guadalupe', 1986, 'F', 607), +(132811, 'Sandy', 1986, 'F', 606), +(132812, 'Annette', 1986, 'F', 605), +(132813, 'Destiny', 1986, 'F', 605), +(132814, 'Constance', 1986, 'F', 603), +(132815, 'Francesca', 1986, 'F', 603), +(132816, 'India', 1986, 'F', 603), +(132817, 'Julianne', 1986, 'F', 597), +(132818, 'Irene', 1986, 'F', 595), +(132819, 'Callie', 1986, 'F', 593), +(132820, 'Cristal', 1986, 'F', 593), +(132821, 'Sally', 1986, 'F', 591), +(132822, 'Laurie', 1986, 'F', 590), +(132823, 'Michael', 1986, 'F', 590), +(132824, 'Ericka', 1986, 'F', 586), +(132825, 'Juanita', 1986, 'F', 583), +(132826, 'Tiara', 1986, 'F', 580), +(132827, 'Jennie', 1986, 'F', 578), +(132828, 'Kathy', 1986, 'F', 570), +(132829, 'Shaina', 1986, 'F', 569), +(132830, 'Leanne', 1986, 'F', 567), +(132831, 'Shelley', 1986, 'F', 563), +(132832, 'Ruby', 1986, 'F', 558), +(132833, 'Tamika', 1986, 'F', 557), +(132834, 'Trista', 1986, 'F', 557), +(132835, 'Lillian', 1986, 'F', 553), +(132836, 'Christian', 1986, 'F', 547), +(132837, 'Shayla', 1986, 'F', 547), +(132838, 'Brandie', 1986, 'F', 546), +(132839, 'Rita', 1986, 'F', 543), +(132840, 'Lara', 1986, 'F', 538), +(132841, 'Caitlyn', 1986, 'F', 536), +(132842, 'Joyce', 1986, 'F', 536), +(132843, 'Eileen', 1986, 'F', 535), +(132844, 'Ashlie', 1986, 'F', 534), +(132845, 'Judith', 1986, 'F', 532), +(132846, 'Tierra', 1986, 'F', 531), +(132847, 'Patrice', 1986, 'F', 527), +(132848, 'Alejandra', 1986, 'F', 525), +(132849, 'Lakeisha', 1986, 'F', 525), +(132850, 'Jami', 1986, 'F', 523), +(132851, 'Alma', 1986, 'F', 520), +(132852, 'Lesley', 1986, 'F', 520), +(132853, 'Michaela', 1986, 'F', 519), +(132854, 'Lynn', 1986, 'F', 515), +(132855, 'Jaimie', 1986, 'F', 513), +(132856, 'Marisol', 1986, 'F', 513), +(132857, 'Keshia', 1986, 'F', 511), +(132858, 'Kendall', 1986, 'F', 509), +(132859, 'Jackie', 1986, 'F', 502), +(132860, 'Bailey', 1986, 'F', 499), +(132861, 'Bridgette', 1986, 'F', 499), +(132862, 'Alexa', 1986, 'F', 498), +(132863, 'Lucy', 1986, 'F', 498), +(132864, 'Chanel', 1986, 'F', 495), +(132865, 'Daniela', 1986, 'F', 495), +(132866, 'Blair', 1986, 'F', 493), +(132867, 'Kira', 1986, 'F', 492), +(132868, 'Ashly', 1986, 'F', 491), +(132869, 'Mia', 1986, 'F', 491), +(132870, 'Mackenzie', 1986, 'F', 490), +(132871, 'Tiffani', 1986, 'F', 490), +(132872, 'Kaylee', 1986, 'F', 488), +(132873, 'Marilyn', 1986, 'F', 488), +(132874, 'Alisa', 1986, 'F', 487), +(132875, 'Iris', 1986, 'F', 486), +(132876, 'Maribel', 1986, 'F', 485), +(132877, 'Nora', 1986, 'F', 485), +(132878, 'Kassandra', 1986, 'F', 483), +(132879, 'Isabel', 1986, 'F', 482), +(132880, 'Laurel', 1986, 'F', 482), +(132881, 'Celeste', 1986, 'F', 481), +(132882, 'Eliana', 1986, 'F', 481), +(132883, 'Marlene', 1986, 'F', 478), +(132884, 'Nadia', 1986, 'F', 476), +(132885, 'Chantel', 1986, 'F', 475), +(132886, 'Norma', 1986, 'F', 473), +(132887, 'Rosemary', 1986, 'F', 472), +(132888, 'Shayna', 1986, 'F', 472), +(132889, 'Connie', 1986, 'F', 470), +(132890, 'Belinda', 1986, 'F', 468), +(132891, 'Ashely', 1986, 'F', 467), +(132892, 'Chloe', 1986, 'F', 465), +(132893, 'Devin', 1986, 'F', 465), +(132894, 'Esmeralda', 1986, 'F', 465), +(132895, 'Carolina', 1986, 'F', 464), +(132896, 'Amie', 1986, 'F', 463), +(132897, 'Sydney', 1986, 'F', 461), +(132898, 'Corinne', 1986, 'F', 460), +(132899, 'Joanne', 1986, 'F', 459), +(132900, 'Hollie', 1986, 'F', 458), +(132901, 'Jenifer', 1986, 'F', 455), +(132902, 'Josephine', 1986, 'F', 455), +(132903, 'Christen', 1986, 'F', 453), +(132904, 'Hailey', 1986, 'F', 453), +(132905, 'Bobbie', 1986, 'F', 452), +(132906, 'Serena', 1986, 'F', 452), +(132907, 'Alaina', 1986, 'F', 451), +(132908, 'Darlene', 1986, 'F', 451), +(132909, 'Kylie', 1986, 'F', 450), +(132910, 'Beverly', 1986, 'F', 447), +(132911, 'Ciera', 1986, 'F', 447), +(132912, 'Jacklyn', 1986, 'F', 447), +(132913, 'Genevieve', 1986, 'F', 445), +(132914, 'Larissa', 1986, 'F', 445), +(132915, 'Jayme', 1986, 'F', 444), +(132916, 'Vivian', 1986, 'F', 442), +(132917, 'Noelle', 1986, 'F', 441), +(132918, 'Brenna', 1986, 'F', 440), +(132919, 'Marquita', 1986, 'F', 440), +(132920, 'Angie', 1986, 'F', 438), +(132921, 'Margarita', 1986, 'F', 438), +(132922, 'Shirley', 1986, 'F', 436), +(132923, 'Devon', 1986, 'F', 435), +(132924, 'Audra', 1986, 'F', 434), +(132925, 'Kacie', 1986, 'F', 434), +(132926, 'Anastasia', 1986, 'F', 431), +(132927, 'Juliana', 1986, 'F', 430), +(132928, 'Lena', 1986, 'F', 430), +(132929, 'Blanca', 1986, 'F', 429), +(132930, 'Elisha', 1986, 'F', 428), +(132931, 'Jeannette', 1986, 'F', 425), +(132932, 'Sherri', 1986, 'F', 424), +(132933, 'Ariana', 1986, 'F', 418), +(132934, 'Precious', 1986, 'F', 417), +(132935, 'Judy', 1986, 'F', 414), +(132936, 'Latonya', 1986, 'F', 414), +(132937, 'Terra', 1986, 'F', 414), +(132938, 'Chelsie', 1986, 'F', 410), +(132939, 'Tania', 1986, 'F', 410), +(132940, 'Christopher', 1986, 'F', 408), +(132941, 'Betty', 1986, 'F', 407), +(132942, 'Dianna', 1986, 'F', 406), +(132943, 'Gretchen', 1986, 'F', 405), +(132944, 'Chrystal', 1986, 'F', 404), +(132945, 'Maritza', 1986, 'F', 404), +(132946, 'Savanna', 1986, 'F', 403), +(132947, 'Jean', 1986, 'F', 401), +(132948, 'Liliana', 1986, 'F', 401), +(132949, 'Karissa', 1986, 'F', 399), +(132950, 'Chandra', 1986, 'F', 398), +(132951, 'Casandra', 1986, 'F', 397), +(132952, 'Fallon', 1986, 'F', 395), +(132953, 'Leann', 1986, 'F', 394), +(132954, 'Corey', 1986, 'F', 392), +(132955, 'Tori', 1986, 'F', 392), +(132956, 'Maegan', 1986, 'F', 391), +(132957, 'Breanne', 1986, 'F', 389), +(132958, 'Clara', 1986, 'F', 387), +(132959, 'Susana', 1986, 'F', 387), +(132960, 'Kristal', 1986, 'F', 386), +(132961, 'Sheri', 1986, 'F', 385), +(132962, 'Mercedes', 1986, 'F', 384), +(132963, 'Asia', 1986, 'F', 383), +(132964, 'Mandi', 1986, 'F', 383), +(132965, 'Marina', 1986, 'F', 383), +(132966, 'Santana', 1986, 'F', 383), +(132967, 'Tiana', 1986, 'F', 383), +(132968, 'Becky', 1986, 'F', 382), +(132969, 'Christin', 1986, 'F', 381), +(132970, 'Racheal', 1986, 'F', 379), +(132971, 'Bobbi', 1986, 'F', 376), +(132972, 'Janine', 1986, 'F', 376), +(132973, 'Tracie', 1986, 'F', 376), +(132974, 'Domonique', 1986, 'F', 374), +(132975, 'Aisha', 1986, 'F', 372), +(132976, 'Natalia', 1986, 'F', 372), +(132977, 'Cassidy', 1986, 'F', 371), +(132978, 'Kyla', 1986, 'F', 371), +(132979, 'Abbey', 1986, 'F', 370), +(132980, 'Gwendolyn', 1986, 'F', 370), +(132981, 'Ivy', 1986, 'F', 370), +(132982, 'Mollie', 1986, 'F', 370), +(132983, 'Joann', 1986, 'F', 369), +(132984, 'Jolene', 1986, 'F', 368), +(132985, 'Deidre', 1986, 'F', 366), +(132986, 'Kimberley', 1986, 'F', 366), +(132987, 'Tiffanie', 1986, 'F', 366), +(132988, 'Shari', 1986, 'F', 363), +(132989, 'Kali', 1986, 'F', 359), +(132990, 'Teri', 1986, 'F', 359), +(132991, 'Celia', 1986, 'F', 358), +(132992, 'Shantel', 1986, 'F', 357), +(132993, 'Lorraine', 1986, 'F', 356), +(132994, 'Betsy', 1986, 'F', 354), +(132995, 'Arlene', 1986, 'F', 353), +(132996, 'Jesse', 1986, 'F', 353), +(132997, 'Tameka', 1986, 'F', 350), +(132998, 'Lyndsay', 1986, 'F', 349), +(132999, 'Justina', 1986, 'F', 347), +(133000, 'Lea', 1986, 'F', 345), +(133001, 'Lora', 1986, 'F', 345), +(133002, 'Antonia', 1986, 'F', 342), +(133003, 'Alecia', 1986, 'F', 340), +(133004, 'Cherie', 1986, 'F', 340), +(133005, 'Elissa', 1986, 'F', 340), +(133006, 'Lucia', 1986, 'F', 340), +(133007, 'Edith', 1986, 'F', 339), +(133008, 'Marisela', 1986, 'F', 336), +(133009, 'Chiquita', 1986, 'F', 335), +(133010, 'Rocio', 1986, 'F', 334), +(133011, 'Halley', 1986, 'F', 333), +(133012, 'Talia', 1986, 'F', 333), +(133013, 'Maricela', 1986, 'F', 332), +(133014, 'Lacie', 1986, 'F', 331), +(133015, 'Octavia', 1986, 'F', 331), +(133016, 'Sadie', 1986, 'F', 329), +(133017, 'Brittni', 1986, 'F', 328), +(133018, 'Melisa', 1986, 'F', 328), +(133019, 'Shante', 1986, 'F', 328), +(133020, 'Jazmin', 1986, 'F', 327), +(133021, 'Rosanna', 1986, 'F', 327), +(133022, 'Lakisha', 1986, 'F', 326), +(133023, 'Stevie', 1986, 'F', 326), +(133024, 'Janette', 1986, 'F', 325), +(133025, 'Jodie', 1986, 'F', 325), +(133026, 'Raven', 1986, 'F', 325), +(133027, 'Latrice', 1986, 'F', 324), +(133028, 'Jody', 1986, 'F', 323), +(133029, 'Leanna', 1986, 'F', 323), +(133030, 'Lynette', 1986, 'F', 322), +(133031, 'Silvia', 1986, 'F', 322), +(133032, 'Luz', 1986, 'F', 321), +(133033, 'Myra', 1986, 'F', 321), +(133034, 'Christi', 1986, 'F', 320), +(133035, 'Arielle', 1986, 'F', 318), +(133036, 'Kristyn', 1986, 'F', 318), +(133037, 'Britni', 1986, 'F', 317), +(133038, 'Kacey', 1986, 'F', 316), +(133039, 'Sonja', 1986, 'F', 316), +(133040, 'Araceli', 1986, 'F', 315), +(133041, 'Daniella', 1986, 'F', 315), +(133042, 'Janna', 1986, 'F', 315), +(133043, 'Cori', 1986, 'F', 314), +(133044, 'Princess', 1986, 'F', 313), +(133045, 'Loren', 1986, 'F', 311), +(133046, 'Nadine', 1986, 'F', 311), +(133047, 'Angelique', 1986, 'F', 307), +(133048, 'Joshua', 1986, 'F', 307), +(133049, 'Adrian', 1986, 'F', 305), +(133050, 'Trina', 1986, 'F', 305), +(133051, 'Kaci', 1986, 'F', 302), +(133052, 'Lana', 1986, 'F', 302), +(133053, 'Joni', 1986, 'F', 300), +(133054, 'Alyse', 1986, 'F', 299), +(133055, 'Ashli', 1986, 'F', 297), +(133056, 'Cheri', 1986, 'F', 297), +(133057, 'Janie', 1986, 'F', 297), +(133058, 'Loretta', 1986, 'F', 297), +(133059, 'Rhiannon', 1986, 'F', 296), +(133060, 'Martina', 1986, 'F', 295), +(133061, 'Paris', 1986, 'F', 295), +(133062, 'Britany', 1986, 'F', 294), +(133063, 'Kourtney', 1986, 'F', 292), +(133064, 'Krysta', 1986, 'F', 292), +(133065, 'Shameka', 1986, 'F', 292), +(133066, 'Tera', 1986, 'F', 292), +(133067, 'Adrianne', 1986, 'F', 291), +(133068, 'Lily', 1986, 'F', 291), +(133069, 'Laci', 1986, 'F', 290), +(133070, 'Alanna', 1986, 'F', 289), +(133071, 'Ginger', 1986, 'F', 289), +(133072, 'Daniel', 1986, 'F', 288), +(133073, 'Alycia', 1986, 'F', 287), +(133074, 'Dina', 1986, 'F', 287), +(133075, 'Kaleigh', 1986, 'F', 287), +(133076, 'Lashonda', 1986, 'F', 287), +(133077, 'Lee', 1986, 'F', 286), +(133078, 'Joan', 1986, 'F', 285), +(133079, 'Roberta', 1986, 'F', 284), +(133080, 'Billie', 1986, 'F', 283), +(133081, 'Catrina', 1986, 'F', 283), +(133082, 'Joelle', 1986, 'F', 283), +(133083, 'Julianna', 1986, 'F', 283), +(133084, 'Maryann', 1986, 'F', 283), +(133085, 'Matthew', 1986, 'F', 282), +(133086, 'Selena', 1986, 'F', 282), +(133087, 'Dominque', 1986, 'F', 281), +(133088, 'Lakeshia', 1986, 'F', 281), +(133089, 'Marcella', 1986, 'F', 281), +(133090, 'Ali', 1986, 'F', 280), +(133091, 'Kim', 1986, 'F', 280), +(133092, 'Leeann', 1986, 'F', 280), +(133093, 'Marjorie', 1986, 'F', 280), +(133094, 'Hanna', 1986, 'F', 279), +(133095, 'Maranda', 1986, 'F', 279), +(133096, 'Marcia', 1986, 'F', 278), +(133097, 'Roxana', 1986, 'F', 278), +(133098, 'Darcy', 1986, 'F', 276), +(133099, 'David', 1986, 'F', 274), +(133100, 'Desirae', 1986, 'F', 274), +(133101, 'Bernadette', 1986, 'F', 273), +(133102, 'Dena', 1986, 'F', 273), +(133103, 'James', 1986, 'F', 273), +(133104, 'Kala', 1986, 'F', 273), +(133105, 'Maura', 1986, 'F', 273), +(133106, 'Adrianna', 1986, 'F', 272), +(133107, 'Cathy', 1986, 'F', 272), +(133108, 'Kimberlee', 1986, 'F', 272), +(133109, 'Mariah', 1986, 'F', 272), +(133110, 'Corina', 1986, 'F', 271), +(133111, 'Marianne', 1986, 'F', 271), +(133112, 'Debbie', 1986, 'F', 270), +(133113, 'Deidra', 1986, 'F', 270), +(133114, 'Brandon', 1986, 'F', 269), +(133115, 'Nakita', 1986, 'F', 269), +(133116, 'Lizette', 1986, 'F', 268), +(133117, 'Hallie', 1986, 'F', 267), +(133118, 'Athena', 1986, 'F', 266), +(133119, 'Kristian', 1986, 'F', 265), +(133120, 'Selina', 1986, 'F', 265), +(133121, 'Kia', 1986, 'F', 264), +(133122, 'Susanna', 1986, 'F', 264), +(133123, 'Cherish', 1986, 'F', 263), +(133124, 'Eleanor', 1986, 'F', 262), +(133125, 'Kati', 1986, 'F', 261), +(133126, 'Kyle', 1986, 'F', 261), +(133127, 'Shamika', 1986, 'F', 261), +(133128, 'Brittanie', 1986, 'F', 259), +(133129, 'Cari', 1986, 'F', 259), +(133130, 'Dayna', 1986, 'F', 259), +(133131, 'Beatrice', 1986, 'F', 258), +(133132, 'Simone', 1986, 'F', 258), +(133133, 'Stephany', 1986, 'F', 258), +(133134, 'Cory', 1986, 'F', 257), +(133135, 'Peggy', 1986, 'F', 256), +(133136, 'Kandice', 1986, 'F', 255), +(133137, 'Chantal', 1986, 'F', 254), +(133138, 'Felisha', 1986, 'F', 253), +(133139, 'Kylee', 1986, 'F', 253), +(133140, 'Noel', 1986, 'F', 253), +(133141, 'Tosha', 1986, 'F', 253), +(133142, 'Marlena', 1986, 'F', 252), +(133143, 'Shawn', 1986, 'F', 252), +(133144, 'Aileen', 1986, 'F', 251), +(133145, 'Bridgett', 1986, 'F', 251), +(133146, 'Eboni', 1986, 'F', 251), +(133147, 'Holli', 1986, 'F', 251), +(133148, 'Tami', 1986, 'F', 251), +(133149, 'Kassie', 1986, 'F', 250), +(133150, 'Jeannie', 1986, 'F', 248), +(133151, 'Ingrid', 1986, 'F', 247), +(133152, 'Noemi', 1986, 'F', 247), +(133153, 'Chantelle', 1986, 'F', 246), +(133154, 'Krystina', 1986, 'F', 246), +(133155, 'Celina', 1986, 'F', 245), +(133156, 'Georgia', 1986, 'F', 245), +(133157, 'Janae', 1986, 'F', 245), +(133158, 'Daphne', 1986, 'F', 244), +(133159, 'Justin', 1986, 'F', 244), +(133160, 'Lakesha', 1986, 'F', 244), +(133161, 'Latosha', 1986, 'F', 244), +(133162, 'Deana', 1986, 'F', 243), +(133163, 'Janell', 1986, 'F', 243), +(133164, 'Monika', 1986, 'F', 243), +(133165, 'Sofia', 1986, 'F', 243), +(133166, 'Alysha', 1986, 'F', 242), +(133167, 'Carina', 1986, 'F', 242), +(133168, 'Kori', 1986, 'F', 242), +(133169, 'Robert', 1986, 'F', 241), +(133170, 'Kaley', 1986, 'F', 239), +(133171, 'Marsha', 1986, 'F', 239), +(133172, 'Kenya', 1986, 'F', 238), +(133173, 'Cora', 1986, 'F', 237), +(133174, 'Emilie', 1986, 'F', 237), +(133175, 'Beatriz', 1986, 'F', 236), +(133176, 'Cheyenne', 1986, 'F', 236), +(133177, 'Portia', 1986, 'F', 234), +(133178, 'Maya', 1986, 'F', 233), +(133179, 'Shanika', 1986, 'F', 233), +(133180, 'Jeanne', 1986, 'F', 232), +(133181, 'Alesha', 1986, 'F', 231), +(133182, 'Annmarie', 1986, 'F', 231), +(133183, 'Gladys', 1986, 'F', 231), +(133184, 'Janel', 1986, 'F', 231), +(133185, 'Kelsie', 1986, 'F', 231), +(133186, 'Nicolette', 1986, 'F', 231), +(133187, 'Eliza', 1986, 'F', 230), +(133188, 'Olga', 1986, 'F', 230), +(133189, 'Abbie', 1986, 'F', 228), +(133190, 'Dara', 1986, 'F', 228), +(133191, 'Ladonna', 1986, 'F', 228), +(133192, 'Mckenzie', 1986, 'F', 228), +(133193, 'Renae', 1986, 'F', 228), +(133194, 'Allie', 1986, 'F', 226), +(133195, 'Perla', 1986, 'F', 226), +(133196, 'Valarie', 1986, 'F', 226), +(133197, 'Casie', 1986, 'F', 225), +(133198, 'Fatima', 1986, 'F', 224), +(133199, 'Jessi', 1986, 'F', 224), +(133200, 'Tamra', 1986, 'F', 224), +(133201, 'Kristan', 1986, 'F', 223), +(133202, 'Danelle', 1986, 'F', 222), +(133203, 'Irma', 1986, 'F', 221), +(133204, 'Liza', 1986, 'F', 221), +(133205, 'Viviana', 1986, 'F', 221), +(133206, 'John', 1986, 'F', 220), +(133207, 'Pauline', 1986, 'F', 219), +(133208, 'Tanesha', 1986, 'F', 219), +(133209, 'Candy', 1986, 'F', 218), +(133210, 'Shanda', 1986, 'F', 218), +(133211, 'Laquita', 1986, 'F', 217), +(133212, 'Marla', 1986, 'F', 217), +(133213, 'Aurora', 1986, 'F', 216), +(133214, 'Griselda', 1986, 'F', 216), +(133215, 'Lynsey', 1986, 'F', 216), +(133216, 'Rikki', 1986, 'F', 216), +(133217, 'Katelin', 1986, 'F', 215), +(133218, 'Giselle', 1986, 'F', 214), +(133219, 'Phylicia', 1986, 'F', 214), +(133220, 'Nathalie', 1986, 'F', 213), +(133221, 'Zoe', 1986, 'F', 213), +(133222, 'Andrew', 1986, 'F', 212), +(133223, 'Meghann', 1986, 'F', 212), +(133224, 'Sophie', 1986, 'F', 212), +(133225, 'Christal', 1986, 'F', 211), +(133226, 'Clare', 1986, 'F', 211), +(133227, 'Doris', 1986, 'F', 211), +(133228, 'Gabriella', 1986, 'F', 211), +(133229, 'Karin', 1986, 'F', 210), +(133230, 'Leila', 1986, 'F', 210), +(133231, 'Penny', 1986, 'F', 210), +(133232, 'Carley', 1986, 'F', 209), +(133233, 'Corrie', 1986, 'F', 209), +(133234, 'Gillian', 1986, 'F', 209), +(133235, 'Sheree', 1986, 'F', 209), +(133236, 'Valencia', 1986, 'F', 209), +(133237, 'Geneva', 1986, 'F', 208), +(133238, 'Joseph', 1986, 'F', 208), +(133239, 'Kathrine', 1986, 'F', 208), +(133240, 'Kyra', 1986, 'F', 208), +(133241, 'Alexander', 1986, 'F', 207), +(133242, 'Alysia', 1986, 'F', 207), +(133243, 'Cody', 1986, 'F', 207), +(133244, 'Marian', 1986, 'F', 207), +(133245, 'Samatha', 1986, 'F', 207), +(133246, 'Demetria', 1986, 'F', 206), +(133247, 'Helena', 1986, 'F', 206), +(133248, 'Sharonda', 1986, 'F', 206), +(133249, 'Shea', 1986, 'F', 206), +(133250, 'Valeria', 1986, 'F', 206), +(133251, 'Janessa', 1986, 'F', 205), +(133252, 'Shanta', 1986, 'F', 205), +(133253, 'Jesica', 1986, 'F', 204), +(133254, 'Josie', 1986, 'F', 204), +(133255, 'Mara', 1986, 'F', 204), +(133256, 'Brittaney', 1986, 'F', 203), +(133257, 'Elaina', 1986, 'F', 203), +(133258, 'Felecia', 1986, 'F', 203), +(133259, 'Vicki', 1986, 'F', 202), +(133260, 'Katlyn', 1986, 'F', 201), +(133261, 'Rene', 1986, 'F', 201), +(133262, 'Richelle', 1986, 'F', 201), +(133263, 'Lucinda', 1986, 'F', 200), +(133264, 'Rosalinda', 1986, 'F', 200), +(133265, 'Shardae', 1986, 'F', 200), +(133266, 'Stacia', 1986, 'F', 200), +(133267, 'Jerrica', 1986, 'F', 199), +(133268, 'Lissette', 1986, 'F', 199), +(133269, 'Malinda', 1986, 'F', 199), +(133270, 'Sheryl', 1986, 'F', 199), +(133271, 'Tyler', 1986, 'F', 199), +(133272, 'Elsa', 1986, 'F', 198), +(133273, 'Glenda', 1986, 'F', 198), +(133274, 'Anthony', 1986, 'F', 197), +(133275, 'Jeanna', 1986, 'F', 197), +(133276, 'Madelyn', 1986, 'F', 197), +(133277, 'Magen', 1986, 'F', 197), +(133278, 'Yasmin', 1986, 'F', 197), +(133279, 'Dora', 1986, 'F', 196), +(133280, 'Magdalena', 1986, 'F', 196), +(133281, 'Porsha', 1986, 'F', 196), +(133282, 'Caryn', 1986, 'F', 195), +(133283, 'Sondra', 1986, 'F', 195), +(133284, 'Cassondra', 1986, 'F', 194), +(133285, 'Roxanna', 1986, 'F', 194), +(133286, 'Tess', 1986, 'F', 194), +(133287, 'Vicky', 1986, 'F', 194), +(133288, 'Cameron', 1986, 'F', 193), +(133289, 'Delia', 1986, 'F', 193), +(133290, 'Jazmine', 1986, 'F', 193), +(133291, 'Mariana', 1986, 'F', 193), +(133292, 'Venessa', 1986, 'F', 193), +(133293, 'Jamila', 1986, 'F', 192), +(133294, 'Stefani', 1986, 'F', 192), +(133295, 'Andria', 1986, 'F', 191), +(133296, 'Britta', 1986, 'F', 191), +(133297, 'Candis', 1986, 'F', 191), +(133298, 'Chastity', 1986, 'F', 191), +(133299, 'Jenelle', 1986, 'F', 191), +(133300, 'Linsey', 1986, 'F', 191), +(133301, 'Nakia', 1986, 'F', 191), +(133302, 'Siobhan', 1986, 'F', 191), +(133303, 'Alina', 1986, 'F', 190), +(133304, 'Juana', 1986, 'F', 190), +(133305, 'Lynda', 1986, 'F', 190), +(133306, 'Rena', 1986, 'F', 190), +(133307, 'Sharde', 1986, 'F', 190), +(133308, 'Kasie', 1986, 'F', 189), +(133309, 'Ramona', 1986, 'F', 189), +(133310, 'Cherrelle', 1986, 'F', 188), +(133311, 'Deirdre', 1986, 'F', 188), +(133312, 'Emilee', 1986, 'F', 188), +(133313, 'Katelynn', 1986, 'F', 188), +(133314, 'Tarah', 1986, 'F', 188), +(133315, 'Charmaine', 1986, 'F', 187), +(133316, 'Ami', 1986, 'F', 186), +(133317, 'Liana', 1986, 'F', 186), +(133318, 'Misti', 1986, 'F', 186), +(133319, 'Delilah', 1986, 'F', 185), +(133320, 'Mallorie', 1986, 'F', 185), +(133321, 'Paola', 1986, 'F', 185), +(133322, 'Cherelle', 1986, 'F', 184), +(133323, 'Jeanine', 1986, 'F', 184), +(133324, 'Kandace', 1986, 'F', 184), +(133325, 'Marcie', 1986, 'F', 183), +(133326, 'Micah', 1986, 'F', 183), +(133327, 'Chana', 1986, 'F', 182), +(133328, 'Colette', 1986, 'F', 182), +(133329, 'Krysten', 1986, 'F', 182), +(133330, 'Wanda', 1986, 'F', 182), +(133331, 'Aja', 1986, 'F', 181), +(133332, 'Johnna', 1986, 'F', 181), +(133333, 'Malorie', 1986, 'F', 180), +(133334, 'Nikole', 1986, 'F', 180), +(133335, 'Sable', 1986, 'F', 180), +(133336, 'Maira', 1986, 'F', 179), +(133337, 'Cathleen', 1986, 'F', 178), +(133338, 'Micaela', 1986, 'F', 178), +(133339, 'Shaquita', 1986, 'F', 178), +(133340, 'Candi', 1986, 'F', 177), +(133341, 'Cristy', 1986, 'F', 177), +(133342, 'Kaila', 1986, 'F', 177), +(133343, 'Keely', 1986, 'F', 177), +(133344, 'Eunice', 1986, 'F', 176), +(133345, 'Marcy', 1986, 'F', 176), +(133346, 'Marta', 1986, 'F', 176), +(133347, 'Shantell', 1986, 'F', 176), +(133348, 'Breann', 1986, 'F', 175), +(133349, 'Brett', 1986, 'F', 175), +(133350, 'Sherrie', 1986, 'F', 175), +(133351, 'Dolores', 1986, 'F', 174), +(133352, 'Edna', 1986, 'F', 174), +(133353, 'Francine', 1986, 'F', 174), +(133354, 'Jonathan', 1986, 'F', 174), +(133355, 'Rosemarie', 1986, 'F', 174), +(133356, 'Shanell', 1986, 'F', 174), +(133357, 'Cecelia', 1986, 'F', 173), +(133358, 'Tabetha', 1986, 'F', 172), +(133359, 'Tristan', 1986, 'F', 172), +(133360, 'Ashlyn', 1986, 'F', 171), +(133361, 'Charissa', 1986, 'F', 171), +(133362, 'Crista', 1986, 'F', 171), +(133363, 'Lisette', 1986, 'F', 171), +(133364, 'Antionette', 1986, 'F', 170), +(133365, 'Hilda', 1986, 'F', 170), +(133366, 'Jessika', 1986, 'F', 170), +(133367, 'Kami', 1986, 'F', 170), +(133368, 'Shanae', 1986, 'F', 170), +(133369, 'Sharday', 1986, 'F', 170), +(133370, 'Tasia', 1986, 'F', 170), +(133371, 'Malissa', 1986, 'F', 169), +(133372, 'Mattie', 1986, 'F', 169), +(133373, 'Nia', 1986, 'F', 169), +(133374, 'Reyna', 1986, 'F', 169), +(133375, 'Brynn', 1986, 'F', 168), +(133376, 'Magan', 1986, 'F', 168), +(133377, 'Annemarie', 1986, 'F', 167), +(133378, 'Ava', 1986, 'F', 167), +(133379, 'Danyelle', 1986, 'F', 167), +(133380, 'Fabiola', 1986, 'F', 167), +(133381, 'Krystin', 1986, 'F', 167), +(133382, 'Lourdes', 1986, 'F', 167), +(133383, 'Amberly', 1986, 'F', 166), +(133384, 'Jada', 1986, 'F', 166), +(133385, 'Madeleine', 1986, 'F', 165), +(133386, 'William', 1986, 'F', 165), +(133387, 'Ashlea', 1986, 'F', 164), +(133388, 'Danica', 1986, 'F', 164), +(133389, 'Diamond', 1986, 'F', 164), +(133390, 'Eden', 1986, 'F', 164), +(133391, 'Iliana', 1986, 'F', 164), +(133392, 'Kerrie', 1986, 'F', 164), +(133393, 'Kyrie', 1986, 'F', 164), +(133394, 'Leandra', 1986, 'F', 164), +(133395, 'Mai', 1986, 'F', 164), +(133396, 'Mari', 1986, 'F', 164), +(133397, 'Yadira', 1986, 'F', 164), +(133398, 'Iesha', 1986, 'F', 163), +(133399, 'Jason', 1986, 'F', 163), +(133400, 'Kiley', 1986, 'F', 163), +(133401, 'Louise', 1986, 'F', 163), +(133402, 'Mariel', 1986, 'F', 163), +(133403, 'Tana', 1986, 'F', 163), +(133404, 'Brittny', 1986, 'F', 162), +(133405, 'Katheryn', 1986, 'F', 162), +(133406, 'Marion', 1986, 'F', 162), +(133407, 'Niki', 1986, 'F', 162), +(133408, 'Pearl', 1986, 'F', 162), +(133409, 'Shalonda', 1986, 'F', 162), +(133410, 'Tyesha', 1986, 'F', 162), +(133411, 'Cathryn', 1986, 'F', 161), +(133412, 'Kirby', 1986, 'F', 161), +(133413, 'Natosha', 1986, 'F', 161), +(133414, 'Kacy', 1986, 'F', 160), +(133415, 'Mona', 1986, 'F', 160), +(133416, 'Salina', 1986, 'F', 160), +(133417, 'Shasta', 1986, 'F', 160), +(133418, 'Annamarie', 1986, 'F', 159), +(133419, 'Arianna', 1986, 'F', 159), +(133420, 'Leilani', 1986, 'F', 159), +(133421, 'Rosalie', 1986, 'F', 159), +(133422, 'Shatara', 1986, 'F', 159), +(133423, 'June', 1986, 'F', 158), +(133424, 'Savanah', 1986, 'F', 158), +(133425, 'Deena', 1986, 'F', 157), +(133426, 'Lia', 1986, 'F', 157), +(133427, 'Dannielle', 1986, 'F', 155), +(133428, 'Ida', 1986, 'F', 155), +(133429, 'Jeana', 1986, 'F', 155), +(133430, 'Kortney', 1986, 'F', 155), +(133431, 'Shara', 1986, 'F', 155), +(133432, 'Tonia', 1986, 'F', 155), +(133433, 'Gail', 1986, 'F', 154), +(133434, 'Tiera', 1986, 'F', 154), +(133435, 'Alexia', 1986, 'F', 153), +(133436, 'Carey', 1986, 'F', 153), +(133437, 'Christiana', 1986, 'F', 153), +(133438, 'Danae', 1986, 'F', 153), +(133439, 'Denisha', 1986, 'F', 153), +(133440, 'Marci', 1986, 'F', 153), +(133441, 'Rebeca', 1986, 'F', 153), +(133442, 'Shanita', 1986, 'F', 153), +(133443, 'Brook', 1986, 'F', 151), +(133444, 'Graciela', 1986, 'F', 151), +(133445, 'Meggan', 1986, 'F', 151), +(133446, 'Carli', 1986, 'F', 150), +(133447, 'Eric', 1986, 'F', 150), +(133448, 'Jaqueline', 1986, 'F', 150), +(133449, 'Kasandra', 1986, 'F', 150), +(133450, 'Whittney', 1986, 'F', 150), +(133451, 'Gena', 1986, 'F', 149), +(133452, 'Stella', 1986, 'F', 149), +(133453, 'Suzanna', 1986, 'F', 149), +(133454, 'Tenisha', 1986, 'F', 149), +(133455, 'Jeri', 1986, 'F', 148), +(133456, 'Kailey', 1986, 'F', 148), +(133457, 'Reina', 1986, 'F', 148), +(133458, 'Stephaine', 1986, 'F', 148), +(133459, 'Sunny', 1986, 'F', 148), +(133460, 'Karrie', 1986, 'F', 147), +(133461, 'Terry', 1986, 'F', 147), +(133462, 'Ada', 1986, 'F', 146), +(133463, 'Brandee', 1986, 'F', 146), +(133464, 'Brigitte', 1986, 'F', 146), +(133465, 'Cayla', 1986, 'F', 146), +(133466, 'Damaris', 1986, 'F', 146), +(133467, 'Georgina', 1986, 'F', 146), +(133468, 'Kevin', 1986, 'F', 146), +(133469, 'Kirstin', 1986, 'F', 146), +(133470, 'Latoria', 1986, 'F', 146), +(133471, 'Susie', 1986, 'F', 146), +(133472, 'Tyra', 1986, 'F', 146), +(133473, 'Ebonie', 1986, 'F', 145), +(133474, 'Karli', 1986, 'F', 145), +(133475, 'Rosalyn', 1986, 'F', 145), +(133476, 'Stephani', 1986, 'F', 145), +(133477, 'Tamera', 1986, 'F', 145), +(133478, 'Adriane', 1986, 'F', 144), +(133479, 'Angeline', 1986, 'F', 144), +(133480, 'Bertha', 1986, 'F', 144), +(133481, 'Carlie', 1986, 'F', 144), +(133482, 'Genna', 1986, 'F', 144), +(133483, 'Kiana', 1986, 'F', 144), +(133484, 'Lindy', 1986, 'F', 144), +(133485, 'Mariela', 1986, 'F', 144), +(133486, 'Marcela', 1986, 'F', 143), +(133487, 'Alex', 1986, 'F', 142), +(133488, 'Anjelica', 1986, 'F', 142), +(133489, 'Brian', 1986, 'F', 142), +(133490, 'Chaya', 1986, 'F', 142), +(133491, 'Corrine', 1986, 'F', 142), +(133492, 'Davina', 1986, 'F', 142), +(133493, 'Elana', 1986, 'F', 142), +(133494, 'Kelsi', 1986, 'F', 142), +(133495, 'Afton', 1986, 'F', 141), +(133496, 'Ahsley', 1986, 'F', 141), +(133497, 'Alessandra', 1986, 'F', 141), +(133498, 'Alia', 1986, 'F', 141), +(133499, 'Chanelle', 1986, 'F', 141), +(133500, 'Eve', 1986, 'F', 141), +(133501, 'Lina', 1986, 'F', 141), +(133502, 'Markita', 1986, 'F', 141), +(133503, 'Tianna', 1986, 'F', 141), +(133504, 'Cristin', 1986, 'F', 140), +(133505, 'Kiera', 1986, 'F', 140), +(133506, 'Latavia', 1986, 'F', 140), +(133507, 'Melina', 1986, 'F', 140), +(133508, 'Shaneka', 1986, 'F', 140), +(133509, 'Shavon', 1986, 'F', 140), +(133510, 'Stephenie', 1986, 'F', 140), +(133511, 'Eugenia', 1986, 'F', 139), +(133512, 'Juliet', 1986, 'F', 139), +(133513, 'Phoebe', 1986, 'F', 139), +(133514, 'Tawny', 1986, 'F', 139), +(133515, 'Tisha', 1986, 'F', 139), +(133516, 'Dionne', 1986, 'F', 138), +(133517, 'Kallie', 1986, 'F', 138), +(133518, 'Lashanda', 1986, 'F', 138), +(133519, 'Scarlett', 1986, 'F', 138), +(133520, 'Darla', 1986, 'F', 137), +(133521, 'Kisha', 1986, 'F', 137), +(133522, 'Margo', 1986, 'F', 137), +(133523, 'Jerica', 1986, 'F', 136), +(133524, 'Natashia', 1986, 'F', 136), +(133525, 'Sarina', 1986, 'F', 136), +(133526, 'Shakira', 1986, 'F', 136), +(133527, 'Shaquana', 1986, 'F', 136), +(133528, 'Aaron', 1986, 'F', 135), +(133529, 'Deandra', 1986, 'F', 135), +(133530, 'Francis', 1986, 'F', 135); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(133531, 'Jenni', 1986, 'F', 135), +(133532, 'Kaycee', 1986, 'F', 135), +(133533, 'Lizbeth', 1986, 'F', 135), +(133534, 'Mellissa', 1986, 'F', 135), +(133535, 'Nicholas', 1986, 'F', 135), +(133536, 'Shera', 1986, 'F', 135), +(133537, 'Kalie', 1986, 'F', 134), +(133538, 'Karly', 1986, 'F', 134), +(133539, 'Reva', 1986, 'F', 134), +(133540, 'Sharita', 1986, 'F', 134), +(133541, 'Chante', 1986, 'F', 133), +(133542, 'Latanya', 1986, 'F', 133), +(133543, 'Kaylie', 1986, 'F', 132), +(133544, 'Logan', 1986, 'F', 132), +(133545, 'Nicolle', 1986, 'F', 132), +(133546, 'Nikia', 1986, 'F', 132), +(133547, 'Raina', 1986, 'F', 132), +(133548, 'Cherise', 1986, 'F', 131), +(133549, 'Lynnette', 1986, 'F', 131), +(133550, 'Deanne', 1986, 'F', 130), +(133551, 'Karyn', 1986, 'F', 130), +(133552, 'Mikaela', 1986, 'F', 130), +(133553, 'Erinn', 1986, 'F', 129), +(133554, 'Lakendra', 1986, 'F', 129), +(133555, 'Leona', 1986, 'F', 129), +(133556, 'Racquel', 1986, 'F', 129), +(133557, 'Shelia', 1986, 'F', 129), +(133558, 'Anabel', 1986, 'F', 128), +(133559, 'Brigette', 1986, 'F', 128), +(133560, 'Charisse', 1986, 'F', 128), +(133561, 'Kay', 1986, 'F', 128), +(133562, 'Mildred', 1986, 'F', 128), +(133563, 'Ronda', 1986, 'F', 128), +(133564, 'Sarai', 1986, 'F', 128), +(133565, 'Thomas', 1986, 'F', 128), +(133566, 'Ella', 1986, 'F', 127), +(133567, 'Kalyn', 1986, 'F', 127), +(133568, 'Kiersten', 1986, 'F', 127), +(133569, 'Layla', 1986, 'F', 127), +(133570, 'Porsche', 1986, 'F', 127), +(133571, 'Ursula', 1986, 'F', 127), +(133572, 'Nicki', 1986, 'F', 126), +(133573, 'Cassi', 1986, 'F', 125), +(133574, 'Katina', 1986, 'F', 125), +(133575, 'Keli', 1986, 'F', 125), +(133576, 'Maxine', 1986, 'F', 125), +(133577, 'Moriah', 1986, 'F', 125), +(133578, 'Steven', 1986, 'F', 125), +(133579, 'Violet', 1986, 'F', 125), +(133580, 'Colby', 1986, 'F', 124), +(133581, 'Eryn', 1986, 'F', 124), +(133582, 'Jaimee', 1986, 'F', 124), +(133583, 'Kendal', 1986, 'F', 124), +(133584, 'Kesha', 1986, 'F', 124), +(133585, 'Luisa', 1986, 'F', 124), +(133586, 'Shanelle', 1986, 'F', 124), +(133587, 'Vickie', 1986, 'F', 124), +(133588, 'Catalina', 1986, 'F', 123), +(133589, 'Corie', 1986, 'F', 123), +(133590, 'Ivette', 1986, 'F', 123), +(133591, 'Joana', 1986, 'F', 123), +(133592, 'Latia', 1986, 'F', 123), +(133593, 'Alishia', 1986, 'F', 122), +(133594, 'Chanda', 1986, 'F', 122), +(133595, 'Geraldine', 1986, 'F', 122), +(133596, 'Lois', 1986, 'F', 122), +(133597, 'Richard', 1986, 'F', 122), +(133598, 'Sharee', 1986, 'F', 122), +(133599, 'Tiesha', 1986, 'F', 122), +(133600, 'Wendi', 1986, 'F', 122), +(133601, 'Aubree', 1986, 'F', 121), +(133602, 'Farrah', 1986, 'F', 121), +(133603, 'Hana', 1986, 'F', 121), +(133604, 'Hazel', 1986, 'F', 121), +(133605, 'Marybeth', 1986, 'F', 121), +(133606, 'Mellisa', 1986, 'F', 121), +(133607, 'Shaniqua', 1986, 'F', 121), +(133608, 'Alena', 1986, 'F', 120), +(133609, 'Breana', 1986, 'F', 120), +(133610, 'Brittnie', 1986, 'F', 120), +(133611, 'Codi', 1986, 'F', 120), +(133612, 'Dianne', 1986, 'F', 120), +(133613, 'Franchesca', 1986, 'F', 120), +(133614, 'Jeremy', 1986, 'F', 120), +(133615, 'Jewel', 1986, 'F', 120), +(133616, 'Lashawn', 1986, 'F', 120), +(133617, 'Sherita', 1986, 'F', 120), +(133618, 'Shira', 1986, 'F', 120), +(133619, 'Vanesa', 1986, 'F', 120), +(133620, 'Kandi', 1986, 'F', 119), +(133621, 'Kandis', 1986, 'F', 119), +(133622, 'Leighann', 1986, 'F', 119), +(133623, 'Rosie', 1986, 'F', 119), +(133624, 'Ryann', 1986, 'F', 119), +(133625, 'Emilia', 1986, 'F', 118), +(133626, 'Josefina', 1986, 'F', 118), +(133627, 'Kenisha', 1986, 'F', 118), +(133628, 'Kierra', 1986, 'F', 118), +(133629, 'Nichelle', 1986, 'F', 118), +(133630, 'Esperanza', 1986, 'F', 117), +(133631, 'Kindra', 1986, 'F', 117), +(133632, 'Marguerite', 1986, 'F', 117), +(133633, 'Tashina', 1986, 'F', 117), +(133634, 'Elsie', 1986, 'F', 116), +(133635, 'Lawanda', 1986, 'F', 116), +(133636, 'Lorna', 1986, 'F', 116), +(133637, 'Roxann', 1986, 'F', 116), +(133638, 'Skye', 1986, 'F', 116), +(133639, 'Therese', 1986, 'F', 116), +(133640, 'Ashlei', 1986, 'F', 115), +(133641, 'Brittnee', 1986, 'F', 115), +(133642, 'Dulce', 1986, 'F', 115), +(133643, 'Lynne', 1986, 'F', 115), +(133644, 'May', 1986, 'F', 115), +(133645, 'Tanika', 1986, 'F', 115), +(133646, 'Chelsi', 1986, 'F', 114), +(133647, 'Greta', 1986, 'F', 114), +(133648, 'Lila', 1986, 'F', 114), +(133649, 'Flor', 1986, 'F', 113), +(133650, 'Florence', 1986, 'F', 113), +(133651, 'Renita', 1986, 'F', 113), +(133652, 'Rhea', 1986, 'F', 113), +(133653, 'Saundra', 1986, 'F', 113), +(133654, 'Shavonne', 1986, 'F', 113), +(133655, 'Anais', 1986, 'F', 112), +(133656, 'Asha', 1986, 'F', 112), +(133657, 'Drew', 1986, 'F', 112), +(133658, 'Ilana', 1986, 'F', 112), +(133659, 'Latesha', 1986, 'F', 112), +(133660, 'Rayna', 1986, 'F', 112), +(133661, 'Taneisha', 1986, 'F', 112), +(133662, 'Tegan', 1986, 'F', 112), +(133663, 'Vera', 1986, 'F', 112), +(133664, 'Chantell', 1986, 'F', 111), +(133665, 'Elicia', 1986, 'F', 111), +(133666, 'Fawn', 1986, 'F', 111), +(133667, 'Lauryn', 1986, 'F', 111), +(133668, 'Lidia', 1986, 'F', 111), +(133669, 'Sharda', 1986, 'F', 111), +(133670, 'Starla', 1986, 'F', 111), +(133671, 'Vanna', 1986, 'F', 111), +(133672, 'Alesia', 1986, 'F', 110), +(133673, 'Camilla', 1986, 'F', 110), +(133674, 'Dustin', 1986, 'F', 110), +(133675, 'Juliette', 1986, 'F', 110), +(133676, 'Laquisha', 1986, 'F', 110), +(133677, 'Lilia', 1986, 'F', 110), +(133678, 'Shandi', 1986, 'F', 110), +(133679, 'Sherika', 1986, 'F', 110), +(133680, 'Amalia', 1986, 'F', 109), +(133681, 'Faye', 1986, 'F', 109), +(133682, 'Jo', 1986, 'F', 109), +(133683, 'Lakia', 1986, 'F', 109), +(133684, 'Mindi', 1986, 'F', 109), +(133685, 'Charlie', 1986, 'F', 108), +(133686, 'Ivory', 1986, 'F', 108), +(133687, 'Kady', 1986, 'F', 108), +(133688, 'Malia', 1986, 'F', 108), +(133689, 'Sue', 1986, 'F', 108), +(133690, 'Viridiana', 1986, 'F', 108), +(133691, 'Bernice', 1986, 'F', 107), +(133692, 'Cami', 1986, 'F', 107), +(133693, 'Consuelo', 1986, 'F', 107), +(133694, 'Corinna', 1986, 'F', 107), +(133695, 'Harmony', 1986, 'F', 107), +(133696, 'Kassi', 1986, 'F', 107), +(133697, 'Lakita', 1986, 'F', 107), +(133698, 'Niesha', 1986, 'F', 107), +(133699, 'Phyllis', 1986, 'F', 107), +(133700, 'Sharlene', 1986, 'F', 107), +(133701, 'Shena', 1986, 'F', 107), +(133702, 'Timothy', 1986, 'F', 107), +(133703, 'Alayna', 1986, 'F', 106), +(133704, 'Aleshia', 1986, 'F', 106), +(133705, 'Angelia', 1986, 'F', 106), +(133706, 'Daniele', 1986, 'F', 106), +(133707, 'Francisca', 1986, 'F', 106), +(133708, 'Latricia', 1986, 'F', 106), +(133709, 'Roseann', 1986, 'F', 106), +(133710, 'Sommer', 1986, 'F', 106), +(133711, 'Taisha', 1986, 'F', 106), +(133712, 'Addie', 1986, 'F', 105), +(133713, 'Cassy', 1986, 'F', 105), +(133714, 'Charde', 1986, 'F', 105), +(133715, 'Dalia', 1986, 'F', 105), +(133716, 'Darci', 1986, 'F', 105), +(133717, 'Haylee', 1986, 'F', 105), +(133718, 'Merissa', 1986, 'F', 105), +(133719, 'Paulina', 1986, 'F', 105), +(133720, 'Susannah', 1986, 'F', 105), +(133721, 'Thelma', 1986, 'F', 105), +(133722, 'Giovanna', 1986, 'F', 104), +(133723, 'Liberty', 1986, 'F', 104), +(133724, 'Margot', 1986, 'F', 104), +(133725, 'Marianna', 1986, 'F', 104), +(133726, 'Nickole', 1986, 'F', 104), +(133727, 'Samara', 1986, 'F', 104), +(133728, 'Shakia', 1986, 'F', 104), +(133729, 'Tammie', 1986, 'F', 104), +(133730, 'Austin', 1986, 'F', 103), +(133731, 'Jessenia', 1986, 'F', 103), +(133732, 'Rosario', 1986, 'F', 103), +(133733, 'Shantelle', 1986, 'F', 103), +(133734, 'Shonda', 1986, 'F', 103), +(133735, 'Aida', 1986, 'F', 102), +(133736, 'Elvira', 1986, 'F', 102), +(133737, 'Emerald', 1986, 'F', 102), +(133738, 'Jeniffer', 1986, 'F', 102), +(133739, 'Kalee', 1986, 'F', 102), +(133740, 'Kasi', 1986, 'F', 102), +(133741, 'Kaylin', 1986, 'F', 102), +(133742, 'Kellye', 1986, 'F', 102), +(133743, 'Tawana', 1986, 'F', 102), +(133744, 'Avery', 1986, 'F', 101), +(133745, 'Charla', 1986, 'F', 101), +(133746, 'Echo', 1986, 'F', 101), +(133747, 'Jesenia', 1986, 'F', 101), +(133748, 'Kaylyn', 1986, 'F', 101), +(133749, 'Kenyatta', 1986, 'F', 101), +(133750, 'Loni', 1986, 'F', 101), +(133751, 'Rachele', 1986, 'F', 101), +(133752, 'Regan', 1986, 'F', 101), +(133753, 'Rosanne', 1986, 'F', 101), +(133754, 'Suzette', 1986, 'F', 101), +(133755, 'Adria', 1986, 'F', 100), +(133756, 'Anika', 1986, 'F', 100), +(133757, 'Kayce', 1986, 'F', 100), +(133758, 'Mariam', 1986, 'F', 100), +(133759, 'Michael', 1986, 'M', 64184), +(133760, 'Christopher', 1986, 'M', 56675), +(133761, 'Matthew', 1986, 'M', 46907), +(133762, 'Joshua', 1986, 'M', 37532), +(133763, 'David', 1986, 'M', 37133), +(133764, 'Daniel', 1986, 'M', 36554), +(133765, 'James', 1986, 'M', 34026), +(133766, 'Andrew', 1986, 'M', 33851), +(133767, 'Robert', 1986, 'M', 31332), +(133768, 'John', 1986, 'M', 30183), +(133769, 'Ryan', 1986, 'M', 29498), +(133770, 'Joseph', 1986, 'M', 28820), +(133771, 'Brandon', 1986, 'M', 27248), +(133772, 'Justin', 1986, 'M', 26620), +(133773, 'William', 1986, 'M', 24320), +(133774, 'Jonathan', 1986, 'M', 23956), +(133775, 'Nicholas', 1986, 'M', 22792), +(133776, 'Jason', 1986, 'M', 22387), +(133777, 'Anthony', 1986, 'M', 21948), +(133778, 'Brian', 1986, 'M', 21016), +(133779, 'Kevin', 1986, 'M', 19930), +(133780, 'Eric', 1986, 'M', 19523), +(133781, 'Kyle', 1986, 'M', 19301), +(133782, 'Adam', 1986, 'M', 18154), +(133783, 'Steven', 1986, 'M', 18091), +(133784, 'Thomas', 1986, 'M', 17343), +(133785, 'Timothy', 1986, 'M', 16868), +(133786, 'Jeremy', 1986, 'M', 16263), +(133787, 'Richard', 1986, 'M', 15006), +(133788, 'Benjamin', 1986, 'M', 13781), +(133789, 'Jeffrey', 1986, 'M', 13644), +(133790, 'Jacob', 1986, 'M', 13642), +(133791, 'Aaron', 1986, 'M', 12689), +(133792, 'Charles', 1986, 'M', 12619), +(133793, 'Mark', 1986, 'M', 12596), +(133794, 'Stephen', 1986, 'M', 11870), +(133795, 'Sean', 1986, 'M', 11775), +(133796, 'Zachary', 1986, 'M', 11719), +(133797, 'Patrick', 1986, 'M', 11399), +(133798, 'Tyler', 1986, 'M', 10912), +(133799, 'Alexander', 1986, 'M', 10594), +(133800, 'Dustin', 1986, 'M', 10316), +(133801, 'Nathan', 1986, 'M', 9994), +(133802, 'Scott', 1986, 'M', 9960), +(133803, 'Paul', 1986, 'M', 9709), +(133804, 'Gregory', 1986, 'M', 9528), +(133805, 'Bryan', 1986, 'M', 8648), +(133806, 'Jesse', 1986, 'M', 8538), +(133807, 'Travis', 1986, 'M', 8476), +(133808, 'Kenneth', 1986, 'M', 8452), +(133809, 'Jose', 1986, 'M', 8355), +(133810, 'Samuel', 1986, 'M', 7569), +(133811, 'Jordan', 1986, 'M', 7296), +(133812, 'Bradley', 1986, 'M', 7037), +(133813, 'Shawn', 1986, 'M', 7009), +(133814, 'Cody', 1986, 'M', 6929), +(133815, 'Derek', 1986, 'M', 6897), +(133816, 'Jared', 1986, 'M', 6114), +(133817, 'Chad', 1986, 'M', 6025), +(133818, 'Peter', 1986, 'M', 5793), +(133819, 'Edward', 1986, 'M', 5774), +(133820, 'Corey', 1986, 'M', 5768), +(133821, 'Marcus', 1986, 'M', 5272), +(133822, 'Alex', 1986, 'M', 5106), +(133823, 'Juan', 1986, 'M', 5075), +(133824, 'Keith', 1986, 'M', 5038), +(133825, 'Shane', 1986, 'M', 4929), +(133826, 'Cory', 1986, 'M', 4868), +(133827, 'Brett', 1986, 'M', 4725), +(133828, 'Phillip', 1986, 'M', 4706), +(133829, 'Donald', 1986, 'M', 4659), +(133830, 'Joel', 1986, 'M', 4505), +(133831, 'Antonio', 1986, 'M', 4403), +(133832, 'George', 1986, 'M', 4342), +(133833, 'Ronald', 1986, 'M', 4222), +(133834, 'Carlos', 1986, 'M', 4085), +(133835, 'Raymond', 1986, 'M', 4052), +(133836, 'Nathaniel', 1986, 'M', 4032), +(133837, 'Luis', 1986, 'M', 4019), +(133838, 'Craig', 1986, 'M', 3924), +(133839, 'Evan', 1986, 'M', 3884), +(133840, 'Casey', 1986, 'M', 3761), +(133841, 'Douglas', 1986, 'M', 3760), +(133842, 'Gary', 1986, 'M', 3719), +(133843, 'Ian', 1986, 'M', 3712), +(133844, 'Philip', 1986, 'M', 3657), +(133845, 'Derrick', 1986, 'M', 3326), +(133846, 'Victor', 1986, 'M', 3289), +(133847, 'Christian', 1986, 'M', 3206), +(133848, 'Austin', 1986, 'M', 3200), +(133849, 'Frank', 1986, 'M', 3173), +(133850, 'Erik', 1986, 'M', 3105), +(133851, 'Vincent', 1986, 'M', 3092), +(133852, 'Brent', 1986, 'M', 3059), +(133853, 'Gabriel', 1986, 'M', 3041), +(133854, 'Wesley', 1986, 'M', 3040), +(133855, 'Seth', 1986, 'M', 2978), +(133856, 'Trevor', 1986, 'M', 2978), +(133857, 'Adrian', 1986, 'M', 2943), +(133858, 'Curtis', 1986, 'M', 2906), +(133859, 'Blake', 1986, 'M', 2781), +(133860, 'Jeffery', 1986, 'M', 2770), +(133861, 'Randy', 1986, 'M', 2729), +(133862, 'Dennis', 1986, 'M', 2705), +(133863, 'Mitchell', 1986, 'M', 2664), +(133864, 'Luke', 1986, 'M', 2650), +(133865, 'Alan', 1986, 'M', 2643), +(133866, 'Larry', 1986, 'M', 2622), +(133867, 'Jesus', 1986, 'M', 2598), +(133868, 'Todd', 1986, 'M', 2586), +(133869, 'Miguel', 1986, 'M', 2575), +(133870, 'Mario', 1986, 'M', 2474), +(133871, 'Devin', 1986, 'M', 2445), +(133872, 'Carl', 1986, 'M', 2441), +(133873, 'Johnathan', 1986, 'M', 2417), +(133874, 'Russell', 1986, 'M', 2401), +(133875, 'Garrett', 1986, 'M', 2386), +(133876, 'Jeremiah', 1986, 'M', 2381), +(133877, 'Martin', 1986, 'M', 2374), +(133878, 'Tony', 1986, 'M', 2358), +(133879, 'Jerry', 1986, 'M', 2267), +(133880, 'Terry', 1986, 'M', 2251), +(133881, 'Troy', 1986, 'M', 2250), +(133882, 'Ricardo', 1986, 'M', 2220), +(133883, 'Johnny', 1986, 'M', 2205), +(133884, 'Lucas', 1986, 'M', 2195), +(133885, 'Jorge', 1986, 'M', 2181), +(133886, 'Allen', 1986, 'M', 2117), +(133887, 'Jonathon', 1986, 'M', 2106), +(133888, 'Bobby', 1986, 'M', 2105), +(133889, 'Caleb', 1986, 'M', 2097), +(133890, 'Shaun', 1986, 'M', 2064), +(133891, 'Lance', 1986, 'M', 2051), +(133892, 'Andre', 1986, 'M', 2050), +(133893, 'Cameron', 1986, 'M', 2045), +(133894, 'Taylor', 1986, 'M', 2031), +(133895, 'Marc', 1986, 'M', 2030), +(133896, 'Drew', 1986, 'M', 2000), +(133897, 'Henry', 1986, 'M', 1994), +(133898, 'Kristopher', 1986, 'M', 1994), +(133899, 'Chase', 1986, 'M', 1966), +(133900, 'Mathew', 1986, 'M', 1965), +(133901, 'Manuel', 1986, 'M', 1961), +(133902, 'Ricky', 1986, 'M', 1957), +(133903, 'Lee', 1986, 'M', 1933), +(133904, 'Danny', 1986, 'M', 1913), +(133905, 'Francisco', 1986, 'M', 1912), +(133906, 'Randall', 1986, 'M', 1888), +(133907, 'Dylan', 1986, 'M', 1832), +(133908, 'Jimmy', 1986, 'M', 1819), +(133909, 'Lawrence', 1986, 'M', 1787), +(133910, 'Ross', 1986, 'M', 1773), +(133911, 'Micheal', 1986, 'M', 1767), +(133912, 'Albert', 1986, 'M', 1748), +(133913, 'Isaac', 1986, 'M', 1734), +(133914, 'Walter', 1986, 'M', 1715), +(133915, 'Roberto', 1986, 'M', 1709), +(133916, 'Colin', 1986, 'M', 1688), +(133917, 'Billy', 1986, 'M', 1683), +(133918, 'Louis', 1986, 'M', 1682), +(133919, 'Clayton', 1986, 'M', 1667), +(133920, 'Calvin', 1986, 'M', 1665), +(133921, 'Angel', 1986, 'M', 1648), +(133922, 'Spencer', 1986, 'M', 1643), +(133923, 'Rodney', 1986, 'M', 1631), +(133924, 'Alejandro', 1986, 'M', 1630), +(133925, 'Roger', 1986, 'M', 1608), +(133926, 'Darren', 1986, 'M', 1578), +(133927, 'Oscar', 1986, 'M', 1571), +(133928, 'Arthur', 1986, 'M', 1568), +(133929, 'Jake', 1986, 'M', 1551), +(133930, 'Julian', 1986, 'M', 1544), +(133931, 'Joe', 1986, 'M', 1537), +(133932, 'Clinton', 1986, 'M', 1527), +(133933, 'Jack', 1986, 'M', 1512), +(133934, 'Maurice', 1986, 'M', 1509), +(133935, 'Jon', 1986, 'M', 1507), +(133936, 'Willie', 1986, 'M', 1490), +(133937, 'Grant', 1986, 'M', 1485), +(133938, 'Jay', 1986, 'M', 1479), +(133939, 'Hector', 1986, 'M', 1472), +(133940, 'Jamie', 1986, 'M', 1467), +(133941, 'Gerald', 1986, 'M', 1454), +(133942, 'Javier', 1986, 'M', 1426), +(133943, 'Brendan', 1986, 'M', 1398), +(133944, 'Ruben', 1986, 'M', 1381), +(133945, 'Dominic', 1986, 'M', 1364), +(133946, 'Bruce', 1986, 'M', 1348), +(133947, 'Reginald', 1986, 'M', 1348), +(133948, 'Edwin', 1986, 'M', 1345), +(133949, 'Wayne', 1986, 'M', 1342), +(133950, 'Logan', 1986, 'M', 1325), +(133951, 'Fernando', 1986, 'M', 1321), +(133952, 'Sergio', 1986, 'M', 1309), +(133953, 'Darrell', 1986, 'M', 1308), +(133954, 'Omar', 1986, 'M', 1307), +(133955, 'Roy', 1986, 'M', 1283), +(133956, 'Frederick', 1986, 'M', 1266), +(133957, 'Geoffrey', 1986, 'M', 1261), +(133958, 'Theodore', 1986, 'M', 1255), +(133959, 'Bryce', 1986, 'M', 1216), +(133960, 'Jaime', 1986, 'M', 1211), +(133961, 'Rafael', 1986, 'M', 1206), +(133962, 'Ivan', 1986, 'M', 1204), +(133963, 'Emmanuel', 1986, 'M', 1185), +(133964, 'Jerome', 1986, 'M', 1166), +(133965, 'Raul', 1986, 'M', 1164), +(133966, 'Pedro', 1986, 'M', 1163), +(133967, 'Levi', 1986, 'M', 1160), +(133968, 'Tyrone', 1986, 'M', 1158), +(133969, 'Neil', 1986, 'M', 1150), +(133970, 'Marvin', 1986, 'M', 1136), +(133971, 'Terrance', 1986, 'M', 1132), +(133972, 'Preston', 1986, 'M', 1120), +(133973, 'Jessie', 1986, 'M', 1117), +(133974, 'Brad', 1986, 'M', 1100), +(133975, 'Micah', 1986, 'M', 1097), +(133976, 'Eddie', 1986, 'M', 1085), +(133977, 'Darryl', 1986, 'M', 1075), +(133978, 'Dane', 1986, 'M', 1068), +(133979, 'Cole', 1986, 'M', 1066), +(133980, 'Armando', 1986, 'M', 1061), +(133981, 'Ronnie', 1986, 'M', 1061), +(133982, 'Andres', 1986, 'M', 1058), +(133983, 'Kurt', 1986, 'M', 1057), +(133984, 'Devon', 1986, 'M', 1053), +(133985, 'Noah', 1986, 'M', 1038), +(133986, 'Ramon', 1986, 'M', 1028), +(133987, 'Edgar', 1986, 'M', 1020), +(133988, 'Eugene', 1986, 'M', 1020), +(133989, 'Eduardo', 1986, 'M', 1019), +(133990, 'Alberto', 1986, 'M', 1013), +(133991, 'Ernest', 1986, 'M', 1007), +(133992, 'Julio', 1986, 'M', 992), +(133993, 'Steve', 1986, 'M', 991), +(133994, 'Glenn', 1986, 'M', 982), +(133995, 'Dale', 1986, 'M', 980), +(133996, 'Nicolas', 1986, 'M', 974), +(133997, 'Tommy', 1986, 'M', 963), +(133998, 'Tyson', 1986, 'M', 957), +(133999, 'Jermaine', 1986, 'M', 952), +(134000, 'Terrence', 1986, 'M', 938), +(134001, 'Max', 1986, 'M', 923), +(134002, 'Tristan', 1986, 'M', 922), +(134003, 'Francis', 1986, 'M', 914), +(134004, 'Marco', 1986, 'M', 909), +(134005, 'Abraham', 1986, 'M', 908), +(134006, 'Karl', 1986, 'M', 902), +(134007, 'Leonard', 1986, 'M', 901), +(134008, 'Bryant', 1986, 'M', 897), +(134009, 'Brady', 1986, 'M', 894), +(134010, 'Byron', 1986, 'M', 892), +(134011, 'Colby', 1986, 'M', 891), +(134012, 'Cesar', 1986, 'M', 878), +(134013, 'Kelly', 1986, 'M', 872), +(134014, 'Stanley', 1986, 'M', 871), +(134015, 'Clifford', 1986, 'M', 867), +(134016, 'Melvin', 1986, 'M', 860), +(134017, 'Branden', 1986, 'M', 858), +(134018, 'Terrell', 1986, 'M', 857), +(134019, 'Barry', 1986, 'M', 851), +(134020, 'Erick', 1986, 'M', 840), +(134021, 'Jarrod', 1986, 'M', 839), +(134022, 'Dean', 1986, 'M', 838), +(134023, 'Dwayne', 1986, 'M', 823), +(134024, 'Brock', 1986, 'M', 817), +(134025, 'Orlando', 1986, 'M', 817), +(134026, 'Alfredo', 1986, 'M', 808), +(134027, 'Jamal', 1986, 'M', 806), +(134028, 'Harold', 1986, 'M', 803), +(134029, 'Antoine', 1986, 'M', 794), +(134030, 'Franklin', 1986, 'M', 785), +(134031, 'Gilbert', 1986, 'M', 781), +(134032, 'Courtney', 1986, 'M', 778), +(134033, 'Miles', 1986, 'M', 776), +(134034, 'Enrique', 1986, 'M', 772), +(134035, 'Demetrius', 1986, 'M', 762), +(134036, 'Rene', 1986, 'M', 757), +(134037, 'Nickolas', 1986, 'M', 756), +(134038, 'Warren', 1986, 'M', 756), +(134039, 'Xavier', 1986, 'M', 746), +(134040, 'Marshall', 1986, 'M', 744), +(134041, 'Arturo', 1986, 'M', 743), +(134042, 'Ray', 1986, 'M', 739), +(134043, 'Marcos', 1986, 'M', 738), +(134044, 'Ralph', 1986, 'M', 729), +(134045, 'Wade', 1986, 'M', 728), +(134046, 'Johnathon', 1986, 'M', 726), +(134047, 'Elijah', 1986, 'M', 718), +(134048, 'Andy', 1986, 'M', 717), +(134049, 'Lorenzo', 1986, 'M', 716), +(134050, 'Kelvin', 1986, 'M', 714), +(134051, 'Nelson', 1986, 'M', 713), +(134052, 'Gerardo', 1986, 'M', 709), +(134053, 'Cedric', 1986, 'M', 706), +(134054, 'Clarence', 1986, 'M', 693), +(134055, 'Darnell', 1986, 'M', 692), +(134056, 'Daryl', 1986, 'M', 689), +(134057, 'Leon', 1986, 'M', 687), +(134058, 'Stuart', 1986, 'M', 685), +(134059, 'Desmond', 1986, 'M', 677), +(134060, 'Harry', 1986, 'M', 677), +(134061, 'Alvin', 1986, 'M', 676), +(134062, 'Morgan', 1986, 'M', 674), +(134063, 'Hunter', 1986, 'M', 672), +(134064, 'Alfred', 1986, 'M', 671), +(134065, 'Trenton', 1986, 'M', 670), +(134066, 'Beau', 1986, 'M', 665), +(134067, 'Joey', 1986, 'M', 656), +(134068, 'Trent', 1986, 'M', 656), +(134069, 'Earl', 1986, 'M', 651), +(134070, 'Darius', 1986, 'M', 650), +(134071, 'Mason', 1986, 'M', 650), +(134072, 'Damien', 1986, 'M', 644), +(134073, 'Collin', 1986, 'M', 642), +(134074, 'Kirk', 1986, 'M', 642), +(134075, 'Salvador', 1986, 'M', 642), +(134076, 'Zachery', 1986, 'M', 642), +(134077, 'Ernesto', 1986, 'M', 638), +(134078, 'Quentin', 1986, 'M', 634), +(134079, 'Roderick', 1986, 'M', 631), +(134080, 'Landon', 1986, 'M', 629), +(134081, 'Isaiah', 1986, 'M', 619), +(134082, 'Lamar', 1986, 'M', 617), +(134083, 'Israel', 1986, 'M', 616), +(134084, 'Clifton', 1986, 'M', 608), +(134085, 'Maxwell', 1986, 'M', 608), +(134086, 'Simon', 1986, 'M', 606), +(134087, 'Brenton', 1986, 'M', 601), +(134088, 'Dillon', 1986, 'M', 600), +(134089, 'Howard', 1986, 'M', 600), +(134090, 'Bernard', 1986, 'M', 595), +(134091, 'Ethan', 1986, 'M', 595), +(134092, 'Dexter', 1986, 'M', 587), +(134093, 'Lewis', 1986, 'M', 581), +(134094, 'Kendrick', 1986, 'M', 574), +(134095, 'Shannon', 1986, 'M', 569), +(134096, 'Heath', 1986, 'M', 566), +(134097, 'Graham', 1986, 'M', 564), +(134098, 'Eli', 1986, 'M', 563), +(134099, 'Angelo', 1986, 'M', 562), +(134100, 'Damon', 1986, 'M', 562), +(134101, 'Tanner', 1986, 'M', 560), +(134102, 'Rodolfo', 1986, 'M', 559), +(134103, 'Clint', 1986, 'M', 556), +(134104, 'Rudy', 1986, 'M', 556), +(134105, 'Kurtis', 1986, 'M', 549), +(134106, 'Neal', 1986, 'M', 542), +(134107, 'Kenny', 1986, 'M', 541), +(134108, 'Leroy', 1986, 'M', 540), +(134109, 'Deandre', 1986, 'M', 538), +(134110, 'Dallas', 1986, 'M', 537), +(134111, 'Gavin', 1986, 'M', 537), +(134112, 'Charlie', 1986, 'M', 535), +(134113, 'Chris', 1986, 'M', 533), +(134114, 'Jarvis', 1986, 'M', 533), +(134115, 'Jarrett', 1986, 'M', 530), +(134116, 'Emanuel', 1986, 'M', 528), +(134117, 'Malcolm', 1986, 'M', 528), +(134118, 'Dominique', 1986, 'M', 523), +(134119, 'Pablo', 1986, 'M', 522), +(134120, 'Gordon', 1986, 'M', 517), +(134121, 'Damian', 1986, 'M', 514), +(134122, 'Kendall', 1986, 'M', 511), +(134123, 'Allan', 1986, 'M', 510), +(134124, 'Bret', 1986, 'M', 509), +(134125, 'Dwight', 1986, 'M', 508), +(134126, 'Jamar', 1986, 'M', 508), +(134127, 'Chance', 1986, 'M', 507), +(134128, 'Terence', 1986, 'M', 503), +(134129, 'Norman', 1986, 'M', 501), +(134130, 'Zachariah', 1986, 'M', 497), +(134131, 'Quinton', 1986, 'M', 495), +(134132, 'Donovan', 1986, 'M', 493), +(134133, 'Stefan', 1986, 'M', 490), +(134134, 'Alfonso', 1986, 'M', 489), +(134135, 'Josiah', 1986, 'M', 489), +(134136, 'Felix', 1986, 'M', 488), +(134137, 'Josue', 1986, 'M', 484), +(134138, 'Marquis', 1986, 'M', 484), +(134139, 'Abel', 1986, 'M', 482), +(134140, 'Fabian', 1986, 'M', 481), +(134141, 'Kerry', 1986, 'M', 481), +(134142, 'Nolan', 1986, 'M', 479), +(134143, 'Rashad', 1986, 'M', 477), +(134144, 'Stephan', 1986, 'M', 476), +(134145, 'Perry', 1986, 'M', 474), +(134146, 'Noel', 1986, 'M', 473), +(134147, 'Pierre', 1986, 'M', 469), +(134148, 'Dana', 1986, 'M', 467), +(134149, 'Don', 1986, 'M', 467), +(134150, 'Kent', 1986, 'M', 467), +(134151, 'Glen', 1986, 'M', 463), +(134152, 'Harrison', 1986, 'M', 463), +(134153, 'Jayson', 1986, 'M', 462), +(134154, 'Kory', 1986, 'M', 457), +(134155, 'Derick', 1986, 'M', 452), +(134156, 'Duane', 1986, 'M', 452), +(134157, 'Elliott', 1986, 'M', 452), +(134158, 'Jarred', 1986, 'M', 451), +(134159, 'Julius', 1986, 'M', 451), +(134160, 'Tyrell', 1986, 'M', 451), +(134161, 'Gustavo', 1986, 'M', 447), +(134162, 'Vernon', 1986, 'M', 447), +(134163, 'Ismael', 1986, 'M', 445), +(134164, 'Dante', 1986, 'M', 444), +(134165, 'Rory', 1986, 'M', 444), +(134166, 'Fred', 1986, 'M', 442), +(134167, 'Felipe', 1986, 'M', 434), +(134168, 'Rickey', 1986, 'M', 434), +(134169, 'Alexis', 1986, 'M', 429), +(134170, 'Ben', 1986, 'M', 429), +(134171, 'Trey', 1986, 'M', 428), +(134172, 'Skyler', 1986, 'M', 423), +(134173, 'Rolando', 1986, 'M', 422), +(134174, 'Elias', 1986, 'M', 421), +(134175, 'Diego', 1986, 'M', 419), +(134176, 'Dominick', 1986, 'M', 419), +(134177, 'Lonnie', 1986, 'M', 419), +(134178, 'Ashley', 1986, 'M', 418), +(134179, 'Rick', 1986, 'M', 418), +(134180, 'Leo', 1986, 'M', 415), +(134181, 'Saul', 1986, 'M', 412), +(134182, 'Clay', 1986, 'M', 410), +(134183, 'Lloyd', 1986, 'M', 410), +(134184, 'Rocky', 1986, 'M', 410), +(134185, 'Darin', 1986, 'M', 408), +(134186, 'Fredrick', 1986, 'M', 405), +(134187, 'Guillermo', 1986, 'M', 404), +(134188, 'Owen', 1986, 'M', 404), +(134189, 'Riley', 1986, 'M', 403), +(134190, 'Marlon', 1986, 'M', 401), +(134191, 'Nathanael', 1986, 'M', 394), +(134192, 'Cornelius', 1986, 'M', 390), +(134193, 'Roman', 1986, 'M', 390), +(134194, 'Elliot', 1986, 'M', 388), +(134195, 'Bradford', 1986, 'M', 387), +(134196, 'Blaine', 1986, 'M', 383), +(134197, 'Myles', 1986, 'M', 382), +(134198, 'Herbert', 1986, 'M', 381), +(134199, 'Darrin', 1986, 'M', 380), +(134200, 'Leslie', 1986, 'M', 380), +(134201, 'Roland', 1986, 'M', 380), +(134202, 'Sam', 1986, 'M', 380), +(134203, 'Rogelio', 1986, 'M', 379), +(134204, 'Dusty', 1986, 'M', 378), +(134205, 'Alec', 1986, 'M', 377), +(134206, 'Ty', 1986, 'M', 377), +(134207, 'Carlton', 1986, 'M', 376), +(134208, 'Demarcus', 1986, 'M', 374), +(134209, 'Zane', 1986, 'M', 371), +(134210, 'Alonzo', 1986, 'M', 370), +(134211, 'Freddie', 1986, 'M', 369), +(134212, 'Hugo', 1986, 'M', 368), +(134213, 'Weston', 1986, 'M', 368), +(134214, 'Jameson', 1986, 'M', 367), +(134215, 'Loren', 1986, 'M', 366), +(134216, 'Gilberto', 1986, 'M', 365), +(134217, 'Antwan', 1986, 'M', 364), +(134218, 'Zackary', 1986, 'M', 364), +(134219, 'Brendon', 1986, 'M', 358), +(134220, 'Robin', 1986, 'M', 354), +(134221, 'Sheldon', 1986, 'M', 354), +(134222, 'Donte', 1986, 'M', 352), +(134223, 'Quincy', 1986, 'M', 350), +(134224, 'Guy', 1986, 'M', 342), +(134225, 'Jeff', 1986, 'M', 342), +(134226, 'Tracy', 1986, 'M', 342), +(134227, 'Giovanni', 1986, 'M', 340), +(134228, 'Milton', 1986, 'M', 340), +(134229, 'Esteban', 1986, 'M', 338), +(134230, 'Parker', 1986, 'M', 338), +(134231, 'Oliver', 1986, 'M', 337), +(134232, 'Rusty', 1986, 'M', 335), +(134233, 'Frankie', 1986, 'M', 332), +(134234, 'Forrest', 1986, 'M', 331), +(134235, 'Jerrod', 1986, 'M', 331), +(134236, 'Johnnie', 1986, 'M', 331), +(134237, 'Gerard', 1986, 'M', 330), +(134238, 'Tomas', 1986, 'M', 330), +(134239, 'Floyd', 1986, 'M', 328), +(134240, 'Gene', 1986, 'M', 328), +(134241, 'Jamel', 1986, 'M', 328), +(134242, 'Lionel', 1986, 'M', 327), +(134243, 'Kody', 1986, 'M', 326), +(134244, 'Lamont', 1986, 'M', 326), +(134245, 'Mike', 1986, 'M', 321), +(134246, 'Dakota', 1986, 'M', 320), +(134247, 'Jimmie', 1986, 'M', 320), +(134248, 'Salvatore', 1986, 'M', 319), +(134249, 'Jordon', 1986, 'M', 318), +(134250, 'Kellen', 1986, 'M', 318), +(134251, 'Clark', 1986, 'M', 315), +(134252, 'Donnie', 1986, 'M', 313), +(134253, 'Sidney', 1986, 'M', 311), +(134254, 'Adan', 1986, 'M', 310), +(134255, 'Korey', 1986, 'M', 310), +(134256, 'Leonardo', 1986, 'M', 310), +(134257, 'Deangelo', 1986, 'M', 309), +(134258, 'Ramiro', 1986, 'M', 308), +(134259, 'Brice', 1986, 'M', 304), +(134260, 'Toby', 1986, 'M', 304), +(134261, 'Chadwick', 1986, 'M', 303), +(134262, 'Lester', 1986, 'M', 302), +(134263, 'Kristofer', 1986, 'M', 301), +(134264, 'Dewayne', 1986, 'M', 300), +(134265, 'Kasey', 1986, 'M', 300), +(134266, 'Ariel', 1986, 'M', 299), +(134267, 'Braden', 1986, 'M', 298), +(134268, 'Lyle', 1986, 'M', 297), +(134269, 'Sterling', 1986, 'M', 297), +(134270, 'Ted', 1986, 'M', 296), +(134271, 'Addison', 1986, 'M', 295), +(134272, 'Zackery', 1986, 'M', 295), +(134273, 'Efrain', 1986, 'M', 294), +(134274, 'Moises', 1986, 'M', 294), +(134275, 'Nick', 1986, 'M', 294), +(134276, 'Reuben', 1986, 'M', 294), +(134277, 'Wyatt', 1986, 'M', 293), +(134278, 'Brennan', 1986, 'M', 292), +(134279, 'Moses', 1986, 'M', 291), +(134280, 'Reid', 1986, 'M', 291), +(134281, 'Jackson', 1986, 'M', 290), +(134282, 'Wilson', 1986, 'M', 286), +(134283, 'Akeem', 1986, 'M', 283), +(134284, 'Ali', 1986, 'M', 282), +(134285, 'Everett', 1986, 'M', 282), +(134286, 'Noe', 1986, 'M', 280), +(134287, 'Shea', 1986, 'M', 280), +(134288, 'Avery', 1986, 'M', 279), +(134289, 'Sebastian', 1986, 'M', 279), +(134290, 'Guadalupe', 1986, 'M', 278), +(134291, 'Alvaro', 1986, 'M', 276), +(134292, 'Cecil', 1986, 'M', 276), +(134293, 'Herman', 1986, 'M', 276), +(134294, 'Jackie', 1986, 'M', 276), +(134295, 'Reynaldo', 1986, 'M', 275), +(134296, 'Connor', 1986, 'M', 274), +(134297, 'Keenan', 1986, 'M', 273), +(134298, 'Garret', 1986, 'M', 272), +(134299, 'Sonny', 1986, 'M', 272), +(134300, 'Jody', 1986, 'M', 271), +(134301, 'Thaddeus', 1986, 'M', 271), +(134302, 'Greg', 1986, 'M', 270), +(134303, 'Dan', 1986, 'M', 268), +(134304, 'Raphael', 1986, 'M', 268), +(134305, 'Stewart', 1986, 'M', 266), +(134306, 'Ashton', 1986, 'M', 261), +(134307, 'Bryson', 1986, 'M', 261), +(134308, 'Sammy', 1986, 'M', 261), +(134309, 'Scotty', 1986, 'M', 260), +(134310, 'Jean', 1986, 'M', 259), +(134311, 'Jamaal', 1986, 'M', 258), +(134312, 'Randolph', 1986, 'M', 258), +(134313, 'Myron', 1986, 'M', 256), +(134314, 'Conor', 1986, 'M', 254), +(134315, 'Jamison', 1986, 'M', 254), +(134316, 'Jarod', 1986, 'M', 254), +(134317, 'Humberto', 1986, 'M', 253), +(134318, 'Carson', 1986, 'M', 251), +(134319, 'Conrad', 1986, 'M', 251), +(134320, 'Kareem', 1986, 'M', 251), +(134321, 'Freddy', 1986, 'M', 248), +(134322, 'Marcel', 1986, 'M', 248), +(134323, 'Ahmad', 1986, 'M', 245), +(134324, 'Demario', 1986, 'M', 245), +(134325, 'Whitney', 1986, 'M', 245), +(134326, 'Emilio', 1986, 'M', 243), +(134327, 'Arnold', 1986, 'M', 242), +(134328, 'Bryon', 1986, 'M', 242), +(134329, 'Aron', 1986, 'M', 241), +(134330, 'Jess', 1986, 'M', 241), +(134331, 'Quinn', 1986, 'M', 241), +(134332, 'Clyde', 1986, 'M', 240), +(134333, 'Davis', 1986, 'M', 240), +(134334, 'Garry', 1986, 'M', 240), +(134335, 'Colton', 1986, 'M', 238), +(134336, 'Ignacio', 1986, 'M', 236), +(134337, 'Markus', 1986, 'M', 236), +(134338, 'Cristian', 1986, 'M', 235), +(134339, 'Jonah', 1986, 'M', 234), +(134340, 'Wendell', 1986, 'M', 233), +(134341, 'Randal', 1986, 'M', 232), +(134342, 'Reed', 1986, 'M', 232), +(134343, 'Rex', 1986, 'M', 232), +(134344, 'Aubrey', 1986, 'M', 231), +(134345, 'Rodrigo', 1986, 'M', 231), +(134346, 'Brooks', 1986, 'M', 230), +(134347, 'Jaron', 1986, 'M', 227), +(134348, 'Jovan', 1986, 'M', 227), +(134349, 'Deshawn', 1986, 'M', 225), +(134350, 'Santiago', 1986, 'M', 224), +(134351, 'Morris', 1986, 'M', 223), +(134352, 'Robbie', 1986, 'M', 223), +(134353, 'Colt', 1986, 'M', 222), +(134354, 'Dion', 1986, 'M', 222), +(134355, 'Jim', 1986, 'M', 222), +(134356, 'Joaquin', 1986, 'M', 222), +(134357, 'Solomon', 1986, 'M', 221), +(134358, 'Chester', 1986, 'M', 220), +(134359, 'Josh', 1986, 'M', 220), +(134360, 'Bradly', 1986, 'M', 219), +(134361, 'Lane', 1986, 'M', 219), +(134362, 'Anton', 1986, 'M', 217), +(134363, 'Jessica', 1986, 'M', 217), +(134364, 'Quintin', 1986, 'M', 217), +(134365, 'Rigoberto', 1986, 'M', 216), +(134366, 'Jerrell', 1986, 'M', 215), +(134367, 'Cordell', 1986, 'M', 214), +(134368, 'Barrett', 1986, 'M', 213), +(134369, 'Otis', 1986, 'M', 213), +(134370, 'Vicente', 1986, 'M', 213), +(134371, 'Benny', 1986, 'M', 212), +(134372, 'Kaleb', 1986, 'M', 212), +(134373, 'Amos', 1986, 'M', 210), +(134374, 'Cortez', 1986, 'M', 210), +(134375, 'Jace', 1986, 'M', 210), +(134376, 'Nathanial', 1986, 'M', 210), +(134377, 'Davon', 1986, 'M', 209), +(134378, 'Erich', 1986, 'M', 209), +(134379, 'Amir', 1986, 'M', 208), +(134380, 'Nigel', 1986, 'M', 208), +(134381, 'Donnell', 1986, 'M', 206), +(134382, 'Leonel', 1986, 'M', 205), +(134383, 'Deon', 1986, 'M', 204), +(134384, 'Will', 1986, 'M', 204), +(134385, 'Harley', 1986, 'M', 203), +(134386, 'Marques', 1986, 'M', 203), +(134387, 'Tory', 1986, 'M', 203), +(134388, 'Brenden', 1986, 'M', 202), +(134389, 'Mauricio', 1986, 'M', 202), +(134390, 'Erin', 1986, 'M', 201), +(134391, 'Nikolas', 1986, 'M', 201), +(134392, 'Sylvester', 1986, 'M', 200), +(134393, 'Chaz', 1986, 'M', 198), +(134394, 'Coty', 1986, 'M', 198), +(134395, 'Mitchel', 1986, 'M', 198), +(134396, 'Ira', 1986, 'M', 197), +(134397, 'Jerod', 1986, 'M', 197), +(134398, 'Leland', 1986, 'M', 196), +(134399, 'Shayne', 1986, 'M', 196), +(134400, 'Earnest', 1986, 'M', 195), +(134401, 'Blair', 1986, 'M', 194), +(134402, 'Edmund', 1986, 'M', 194), +(134403, 'Winston', 1986, 'M', 192), +(134404, 'Moshe', 1986, 'M', 190), +(134405, 'Alton', 1986, 'M', 189), +(134406, 'Brandan', 1986, 'M', 189), +(134407, 'Harvey', 1986, 'M', 189), +(134408, 'Hugh', 1986, 'M', 189), +(134409, 'Sherman', 1986, 'M', 189), +(134410, 'Tom', 1986, 'M', 188), +(134411, 'Dorian', 1986, 'M', 187), +(134412, 'Teddy', 1986, 'M', 187), +(134413, 'Arron', 1986, 'M', 186), +(134414, 'Kristian', 1986, 'M', 186), +(134415, 'Pete', 1986, 'M', 186), +(134416, 'Luther', 1986, 'M', 185), +(134417, 'Ron', 1986, 'M', 185), +(134418, 'Santos', 1986, 'M', 185), +(134419, 'Galen', 1986, 'M', 184), +(134420, 'Rico', 1986, 'M', 184), +(134421, 'Carter', 1986, 'M', 182), +(134422, 'Cary', 1986, 'M', 182), +(134423, 'Kiel', 1986, 'M', 182), +(134424, 'Royce', 1986, 'M', 182), +(134425, 'Brant', 1986, 'M', 181), +(134426, 'Devan', 1986, 'M', 181), +(134427, 'Jerad', 1986, 'M', 180), +(134428, 'Darrel', 1986, 'M', 179), +(134429, 'Hans', 1986, 'M', 179), +(134430, 'Virgil', 1986, 'M', 179), +(134431, 'Claude', 1986, 'M', 178), +(134432, 'Marty', 1986, 'M', 178), +(134433, 'Ryne', 1986, 'M', 178), +(134434, 'Agustin', 1986, 'M', 177), +(134435, 'Javon', 1986, 'M', 177), +(134436, 'Jeremey', 1986, 'M', 177), +(134437, 'Wilfredo', 1986, 'M', 177), +(134438, 'Jonas', 1986, 'M', 176), +(134439, 'Willis', 1986, 'M', 176), +(134440, 'Damion', 1986, 'M', 175), +(134441, 'Antwon', 1986, 'M', 174), +(134442, 'Bo', 1986, 'M', 174), +(134443, 'Brody', 1986, 'M', 174), +(134444, 'Issac', 1986, 'M', 174), +(134445, 'Jeramy', 1986, 'M', 174), +(134446, 'Cale', 1986, 'M', 173), +(134447, 'Cordero', 1986, 'M', 173), +(134448, 'Mohammad', 1986, 'M', 173), +(134449, 'Adolfo', 1986, 'M', 172), +(134450, 'Heriberto', 1986, 'M', 172), +(134451, 'Shelby', 1986, 'M', 172), +(134452, 'Tobias', 1986, 'M', 172), +(134453, 'Jayce', 1986, 'M', 171), +(134454, 'Jasper', 1986, 'M', 170), +(134455, 'Joesph', 1986, 'M', 170), +(134456, 'Rashawn', 1986, 'M', 170), +(134457, 'Skylar', 1986, 'M', 170), +(134458, 'Tyree', 1986, 'M', 169), +(134459, 'Benito', 1986, 'M', 166), +(134460, 'Bennett', 1986, 'M', 165), +(134461, 'Keegan', 1986, 'M', 165), +(134462, 'Marion', 1986, 'M', 164), +(134463, 'Ezra', 1986, 'M', 163), +(134464, 'Gregorio', 1986, 'M', 163), +(134465, 'Jennifer', 1986, 'M', 163), +(134466, 'Matt', 1986, 'M', 163), +(134467, 'Aldo', 1986, 'M', 162), +(134468, 'Duncan', 1986, 'M', 162), +(134469, 'Vance', 1986, 'M', 162), +(134470, 'Bennie', 1986, 'M', 161), +(134471, 'Elvis', 1986, 'M', 161), +(134472, 'Jairo', 1986, 'M', 161), +(134473, 'Ellis', 1986, 'M', 160), +(134474, 'Jeramie', 1986, 'M', 160), +(134475, 'Jeremie', 1986, 'M', 160), +(134476, 'Dalton', 1986, 'M', 159), +(134477, 'Josef', 1986, 'M', 159), +(134478, 'Antony', 1986, 'M', 157), +(134479, 'Bernardo', 1986, 'M', 157), +(134480, 'Carey', 1986, 'M', 157), +(134481, 'Grady', 1986, 'M', 157), +(134482, 'Alphonso', 1986, 'M', 156), +(134483, 'Dejuan', 1986, 'M', 156), +(134484, 'Curt', 1986, 'M', 155), +(134485, 'Abram', 1986, 'M', 154), +(134486, 'Jered', 1986, 'M', 154), +(134487, 'Mickey', 1986, 'M', 154), +(134488, 'Carlo', 1986, 'M', 153), +(134489, 'Gregg', 1986, 'M', 153), +(134490, 'Jefferson', 1986, 'M', 153), +(134491, 'Cruz', 1986, 'M', 152), +(134492, 'Wallace', 1986, 'M', 152), +(134493, 'Ezekiel', 1986, 'M', 151), +(134494, 'Lukas', 1986, 'M', 151), +(134495, 'Stephon', 1986, 'M', 151), +(134496, 'Coleman', 1986, 'M', 150), +(134497, 'Jamil', 1986, 'M', 150), +(134498, 'Liam', 1986, 'M', 150), +(134499, 'Mackenzie', 1986, 'M', 150), +(134500, 'Prince', 1986, 'M', 150), +(134501, 'Van', 1986, 'M', 150), +(134502, 'Elmer', 1986, 'M', 149), +(134503, 'Jermey', 1986, 'M', 149), +(134504, 'Robby', 1986, 'M', 149), +(134505, 'Cornell', 1986, 'M', 148), +(134506, 'Jeromy', 1986, 'M', 148), +(134507, 'Kenton', 1986, 'M', 148), +(134508, 'Westley', 1986, 'M', 148), +(134509, 'Derik', 1986, 'M', 146), +(134510, 'Jakob', 1986, 'M', 146), +(134511, 'Rodrick', 1986, 'M', 145), +(134512, 'Griffin', 1986, 'M', 144), +(134513, 'Jaymes', 1986, 'M', 144), +(134514, 'Brain', 1986, 'M', 143), +(134515, 'Bronson', 1986, 'M', 143), +(134516, 'Daren', 1986, 'M', 143), +(134517, 'Paris', 1986, 'M', 143), +(134518, 'Antione', 1986, 'M', 142), +(134519, 'Chandler', 1986, 'M', 142), +(134520, 'Dereck', 1986, 'M', 142), +(134521, 'Jerald', 1986, 'M', 142), +(134522, 'Vaughn', 1986, 'M', 142), +(134523, 'Ervin', 1986, 'M', 141), +(134524, 'Roosevelt', 1986, 'M', 141), +(134525, 'Stacy', 1986, 'M', 141), +(134526, 'Kelsey', 1986, 'M', 140), +(134527, 'Dave', 1986, 'M', 139), +(134528, 'Fidel', 1986, 'M', 138), +(134529, 'Rudolph', 1986, 'M', 138), +(134530, 'Ulysses', 1986, 'M', 138), +(134531, 'Ahmed', 1986, 'M', 137), +(134532, 'Cortney', 1986, 'M', 137), +(134533, 'Brandyn', 1986, 'M', 136), +(134534, 'Gino', 1986, 'M', 136), +(134535, 'Mikel', 1986, 'M', 136), +(134536, 'Timmy', 1986, 'M', 136), +(134537, 'Cyrus', 1986, 'M', 135), +(134538, 'Tommie', 1986, 'M', 135), +(134539, 'Cristopher', 1986, 'M', 134), +(134540, 'Gonzalo', 1986, 'M', 134), +(134541, 'Grayson', 1986, 'M', 133), +(134542, 'Houston', 1986, 'M', 133), +(134543, 'Nestor', 1986, 'M', 133), +(134544, 'Tad', 1986, 'M', 133), +(134545, 'Aric', 1986, 'M', 132), +(134546, 'Cedrick', 1986, 'M', 132), +(134547, 'Andrea', 1986, 'M', 131), +(134548, 'August', 1986, 'M', 131), +(134549, 'Jed', 1986, 'M', 131), +(134550, 'Keaton', 1986, 'M', 131), +(134551, 'Mohamed', 1986, 'M', 131), +(134552, 'Mohammed', 1986, 'M', 131), +(134553, 'Titus', 1986, 'M', 131), +(134554, 'Darrius', 1986, 'M', 130), +(134555, 'Kirby', 1986, 'M', 130), +(134556, 'Tyron', 1986, 'M', 130), +(134557, 'Amanda', 1986, 'M', 129), +(134558, 'Daron', 1986, 'M', 129), +(134559, 'Octavio', 1986, 'M', 129), +(134560, 'Bill', 1986, 'M', 128), +(134561, 'Chauncey', 1986, 'M', 128), +(134562, 'Louie', 1986, 'M', 128), +(134563, 'Waylon', 1986, 'M', 128), +(134564, 'Malik', 1986, 'M', 126), +(134565, 'Ari', 1986, 'M', 125), +(134566, 'Durrell', 1986, 'M', 125), +(134567, 'Jacques', 1986, 'M', 125), +(134568, 'Taurean', 1986, 'M', 125), +(134569, 'Deonte', 1986, 'M', 124), +(134570, 'Martell', 1986, 'M', 124), +(134571, 'Osvaldo', 1986, 'M', 124), +(134572, 'Tyrel', 1986, 'M', 124), +(134573, 'Archie', 1986, 'M', 123), +(134574, 'Dario', 1986, 'M', 123), +(134575, 'Durell', 1986, 'M', 123), +(134576, 'Hassan', 1986, 'M', 123), +(134577, 'Jerel', 1986, 'M', 123), +(134578, 'Michel', 1986, 'M', 123), +(134579, 'Broderick', 1986, 'M', 122), +(134580, 'Cullen', 1986, 'M', 122), +(134581, 'Drake', 1986, 'M', 122), +(134582, 'Efren', 1986, 'M', 122), +(134583, 'Buddy', 1986, 'M', 121), +(134584, 'Jedidiah', 1986, 'M', 121), +(134585, 'Monte', 1986, 'M', 121), +(134586, 'Mack', 1986, 'M', 120), +(134587, 'Rocco', 1986, 'M', 120), +(134588, 'Torrey', 1986, 'M', 120), +(134589, 'Laurence', 1986, 'M', 119), +(134590, 'Nicholaus', 1986, 'M', 119), +(134591, 'Domingo', 1986, 'M', 118), +(134592, 'Scot', 1986, 'M', 118), +(134593, 'Darrick', 1986, 'M', 117), +(134594, 'Davin', 1986, 'M', 117), +(134595, 'Jan', 1986, 'M', 117), +(134596, 'Jarrell', 1986, 'M', 117), +(134597, 'Danial', 1986, 'M', 116), +(134598, 'Jeffry', 1986, 'M', 116), +(134599, 'Kraig', 1986, 'M', 116), +(134600, 'Sarah', 1986, 'M', 116), +(134601, 'Wilbert', 1986, 'M', 116), +(134602, 'Lazaro', 1986, 'M', 115), +(134603, 'Maximilian', 1986, 'M', 115), +(134604, 'Silas', 1986, 'M', 115), +(134605, 'Tylor', 1986, 'M', 115), +(134606, 'Braxton', 1986, 'M', 114), +(134607, 'Junior', 1986, 'M', 114), +(134608, 'Keon', 1986, 'M', 114), +(134609, 'Reggie', 1986, 'M', 114), +(134610, 'Scottie', 1986, 'M', 114), +(134611, 'Yaakov', 1986, 'M', 114), +(134612, 'Derrell', 1986, 'M', 113), +(134613, 'Leif', 1986, 'M', 113), +(134614, 'Marquise', 1986, 'M', 113), +(134615, 'Dandre', 1986, 'M', 112), +(134616, 'Justine', 1986, 'M', 112), +(134617, 'Rhett', 1986, 'M', 112), +(134618, 'Denis', 1986, 'M', 111), +(134619, 'Donta', 1986, 'M', 111), +(134620, 'Johnpaul', 1986, 'M', 111), +(134621, 'Tucker', 1986, 'M', 111), +(134622, 'Delbert', 1986, 'M', 110), +(134623, 'Isidro', 1986, 'M', 110), +(134624, 'Randell', 1986, 'M', 110), +(134625, 'Willard', 1986, 'M', 110), +(134626, 'Channing', 1986, 'M', 109), +(134627, 'Denny', 1986, 'M', 109), +(134628, 'Estevan', 1986, 'M', 109), +(134629, 'Andreas', 1986, 'M', 108), +(134630, 'Bart', 1986, 'M', 108), +(134631, 'Britton', 1986, 'M', 108), +(134632, 'Donavan', 1986, 'M', 108), +(134633, 'Lindsey', 1986, 'M', 108), +(134634, 'Isiah', 1986, 'M', 107), +(134635, 'Reece', 1986, 'M', 107), +(134636, 'Britt', 1986, 'M', 106), +(134637, 'Darwin', 1986, 'M', 106), +(134638, 'Denver', 1986, 'M', 106), +(134639, 'Deron', 1986, 'M', 106), +(134640, 'Dirk', 1986, 'M', 106), +(134641, 'Federico', 1986, 'M', 106), +(134642, 'Francesco', 1986, 'M', 106), +(134643, 'Trever', 1986, 'M', 106), +(134644, 'Cooper', 1986, 'M', 105), +(134645, 'Dontae', 1986, 'M', 105), +(134646, 'Eddy', 1986, 'M', 105), +(134647, 'Raymundo', 1986, 'M', 105), +(134648, 'Stevie', 1986, 'M', 105), +(134649, 'Brandin', 1986, 'M', 104), +(134650, 'German', 1986, 'M', 104), +(134651, 'Horace', 1986, 'M', 104), +(134652, 'Shelton', 1986, 'M', 104), +(134653, 'Baby', 1986, 'M', 103), +(134654, 'Jessy', 1986, 'M', 103), +(134655, 'Johathan', 1986, 'M', 103), +(134656, 'Justen', 1986, 'M', 103), +(134657, 'Kyler', 1986, 'M', 103), +(134658, 'Alexandro', 1986, 'M', 102), +(134659, 'Asa', 1986, 'M', 102), +(134660, 'Coy', 1986, 'M', 102), +(134661, 'Demarco', 1986, 'M', 102), +(134662, 'Donny', 1986, 'M', 102), +(134663, 'Edwardo', 1986, 'M', 102), +(134664, 'Emmett', 1986, 'M', 102), +(134665, 'Jude', 1986, 'M', 102), +(134666, 'Rickie', 1986, 'M', 102), +(134667, 'Theron', 1986, 'M', 102), +(134668, 'Cassidy', 1986, 'M', 101), +(134669, 'Elvin', 1986, 'M', 101), +(134670, 'Erwin', 1986, 'M', 101), +(134671, 'Ken', 1986, 'M', 101), +(134672, 'Emerson', 1986, 'M', 100), +(134673, 'Ernie', 1986, 'M', 100), +(134674, 'Isaias', 1986, 'M', 100), +(134675, 'Stacey', 1986, 'M', 100), +(134676, 'Tremaine', 1986, 'M', 100), +(134677, 'Jessica', 1987, 'F', 55985), +(134678, 'Ashley', 1987, 'F', 54840), +(134679, 'Amanda', 1987, 'F', 41785), +(134680, 'Jennifer', 1987, 'F', 32693), +(134681, 'Sarah', 1987, 'F', 27883), +(134682, 'Stephanie', 1987, 'F', 22398), +(134683, 'Brittany', 1987, 'F', 22224), +(134684, 'Nicole', 1987, 'F', 20281), +(134685, 'Heather', 1987, 'F', 18980), +(134686, 'Elizabeth', 1987, 'F', 18601), +(134687, 'Samantha', 1987, 'F', 17937), +(134688, 'Megan', 1987, 'F', 17825), +(134689, 'Melissa', 1987, 'F', 17669), +(134690, 'Danielle', 1987, 'F', 17001), +(134691, 'Amber', 1987, 'F', 16747), +(134692, 'Lauren', 1987, 'F', 16706), +(134693, 'Rachel', 1987, 'F', 15642), +(134694, 'Tiffany', 1987, 'F', 14745), +(134695, 'Emily', 1987, 'F', 14711), +(134696, 'Christina', 1987, 'F', 13815), +(134697, 'Kimberly', 1987, 'F', 13031), +(134698, 'Michelle', 1987, 'F', 13028), +(134699, 'Laura', 1987, 'F', 13026), +(134700, 'Amy', 1987, 'F', 11786), +(134701, 'Rebecca', 1987, 'F', 11628), +(134702, 'Crystal', 1987, 'F', 11003), +(134703, 'Kayla', 1987, 'F', 10575), +(134704, 'Katherine', 1987, 'F', 10430), +(134705, 'Sara', 1987, 'F', 10086), +(134706, 'Kelly', 1987, 'F', 9861), +(134707, 'Erica', 1987, 'F', 9325), +(134708, 'Whitney', 1987, 'F', 8923), +(134709, 'Courtney', 1987, 'F', 8905), +(134710, 'Erin', 1987, 'F', 8849), +(134711, 'Angela', 1987, 'F', 8580), +(134712, 'Andrea', 1987, 'F', 8489), +(134713, 'Mary', 1987, 'F', 8395), +(134714, 'Katie', 1987, 'F', 8192), +(134715, 'Jamie', 1987, 'F', 7915), +(134716, 'Lisa', 1987, 'F', 7549), +(134717, 'Lindsey', 1987, 'F', 7452), +(134718, 'Kristen', 1987, 'F', 7360), +(134719, 'Vanessa', 1987, 'F', 7345), +(134720, 'Allison', 1987, 'F', 7341), +(134721, 'Shannon', 1987, 'F', 6966), +(134722, 'Alicia', 1987, 'F', 6777), +(134723, 'Chelsea', 1987, 'F', 6631), +(134724, 'Christine', 1987, 'F', 6617), +(134725, 'Lindsay', 1987, 'F', 6528), +(134726, 'Victoria', 1987, 'F', 6251), +(134727, 'Kathryn', 1987, 'F', 6235), +(134728, 'Anna', 1987, 'F', 6162), +(134729, 'Maria', 1987, 'F', 5667), +(134730, 'Jacqueline', 1987, 'F', 5625), +(134731, 'Kristin', 1987, 'F', 5462), +(134732, 'Natalie', 1987, 'F', 5328), +(134733, 'Jenna', 1987, 'F', 5303), +(134734, 'April', 1987, 'F', 5294), +(134735, 'Alexandra', 1987, 'F', 5218), +(134736, 'Alyssa', 1987, 'F', 5130), +(134737, 'Brittney', 1987, 'F', 5129), +(134738, 'Kristina', 1987, 'F', 5017), +(134739, 'Caitlin', 1987, 'F', 4990), +(134740, 'Monica', 1987, 'F', 4808), +(134741, 'Julie', 1987, 'F', 4739), +(134742, 'Hannah', 1987, 'F', 4592), +(134743, 'Kelsey', 1987, 'F', 4572), +(134744, 'Cassandra', 1987, 'F', 4555), +(134745, 'Tara', 1987, 'F', 4443), +(134746, 'Krystal', 1987, 'F', 4382), +(134747, 'Holly', 1987, 'F', 4256), +(134748, 'Kathleen', 1987, 'F', 4163), +(134749, 'Natasha', 1987, 'F', 4127), +(134750, 'Catherine', 1987, 'F', 4104), +(134751, 'Erika', 1987, 'F', 3993), +(134752, 'Patricia', 1987, 'F', 3912), +(134753, 'Kendra', 1987, 'F', 3841), +(134754, 'Meghan', 1987, 'F', 3769), +(134755, 'Jasmine', 1987, 'F', 3724), +(134756, 'Veronica', 1987, 'F', 3616), +(134757, 'Casey', 1987, 'F', 3581), +(134758, 'Leah', 1987, 'F', 3452), +(134759, 'Dana', 1987, 'F', 3420), +(134760, 'Cynthia', 1987, 'F', 3391), +(134761, 'Diana', 1987, 'F', 3352), +(134762, 'Julia', 1987, 'F', 3326), +(134763, 'Bethany', 1987, 'F', 3294), +(134764, 'Brandi', 1987, 'F', 3244), +(134765, 'Leslie', 1987, 'F', 3195), +(134766, 'Margaret', 1987, 'F', 3143), +(134767, 'Mallory', 1987, 'F', 3140), +(134768, 'Brandy', 1987, 'F', 3032), +(134769, 'Valerie', 1987, 'F', 2962), +(134770, 'Brooke', 1987, 'F', 2957), +(134771, 'Morgan', 1987, 'F', 2924), +(134772, 'Felicia', 1987, 'F', 2911), +(134773, 'Molly', 1987, 'F', 2889), +(134774, 'Rachael', 1987, 'F', 2831), +(134775, 'Jillian', 1987, 'F', 2794), +(134776, 'Alison', 1987, 'F', 2770), +(134777, 'Stacy', 1987, 'F', 2748), +(134778, 'Melanie', 1987, 'F', 2743), +(134779, 'Stacey', 1987, 'F', 2710), +(134780, 'Kara', 1987, 'F', 2699), +(134781, 'Katrina', 1987, 'F', 2612), +(134782, 'Angelica', 1987, 'F', 2602), +(134783, 'Karen', 1987, 'F', 2579), +(134784, 'Krista', 1987, 'F', 2550), +(134785, 'Marissa', 1987, 'F', 2545), +(134786, 'Sabrina', 1987, 'F', 2542), +(134787, 'Nichole', 1987, 'F', 2537), +(134788, 'Ashlee', 1987, 'F', 2467), +(134789, 'Alexis', 1987, 'F', 2458), +(134790, 'Dominique', 1987, 'F', 2444), +(134791, 'Sandra', 1987, 'F', 2410), +(134792, 'Jaclyn', 1987, 'F', 2404), +(134793, 'Lacey', 1987, 'F', 2399), +(134794, 'Alisha', 1987, 'F', 2392), +(134795, 'Carrie', 1987, 'F', 2388), +(134796, 'Candace', 1987, 'F', 2328), +(134797, 'Candice', 1987, 'F', 2290), +(134798, 'Brianna', 1987, 'F', 2287), +(134799, 'Gina', 1987, 'F', 2267), +(134800, 'Desiree', 1987, 'F', 2251), +(134801, 'Susan', 1987, 'F', 2248), +(134802, 'Nancy', 1987, 'F', 2235), +(134803, 'Katelyn', 1987, 'F', 2219), +(134804, 'Brenda', 1987, 'F', 2151), +(134805, 'Latoya', 1987, 'F', 2151), +(134806, 'Monique', 1987, 'F', 2116), +(134807, 'Kelli', 1987, 'F', 2109), +(134808, 'Denise', 1987, 'F', 2103), +(134809, 'Joanna', 1987, 'F', 2054), +(134810, 'Renee', 1987, 'F', 2048), +(134811, 'Caroline', 1987, 'F', 2044), +(134812, 'Meagan', 1987, 'F', 2003), +(134813, 'Abigail', 1987, 'F', 2001), +(134814, 'Yesenia', 1987, 'F', 2001), +(134815, 'Tracy', 1987, 'F', 1990), +(134816, 'Miranda', 1987, 'F', 1979), +(134817, 'Kaitlin', 1987, 'F', 1958), +(134818, 'Linda', 1987, 'F', 1930), +(134819, 'Melinda', 1987, 'F', 1921), +(134820, 'Heidi', 1987, 'F', 1912), +(134821, 'Robin', 1987, 'F', 1911), +(134822, 'Jordan', 1987, 'F', 1901), +(134823, 'Anne', 1987, 'F', 1868), +(134824, 'Meredith', 1987, 'F', 1815), +(134825, 'Carolyn', 1987, 'F', 1812), +(134826, 'Tina', 1987, 'F', 1810), +(134827, 'Tabitha', 1987, 'F', 1808), +(134828, 'Sasha', 1987, 'F', 1800), +(134829, 'Pamela', 1987, 'F', 1783), +(134830, 'Teresa', 1987, 'F', 1781), +(134831, 'Cassie', 1987, 'F', 1755), +(134832, 'Tanya', 1987, 'F', 1751), +(134833, 'Ebony', 1987, 'F', 1748), +(134834, 'Colleen', 1987, 'F', 1745), +(134835, 'Theresa', 1987, 'F', 1742), +(134836, 'Tamara', 1987, 'F', 1735), +(134837, 'Rebekah', 1987, 'F', 1732), +(134838, 'Misty', 1987, 'F', 1713), +(134839, 'Kaitlyn', 1987, 'F', 1707), +(134840, 'Taylor', 1987, 'F', 1703), +(134841, 'Jenny', 1987, 'F', 1700), +(134842, 'Olivia', 1987, 'F', 1694), +(134843, 'Kari', 1987, 'F', 1671), +(134844, 'Priscilla', 1987, 'F', 1647), +(134845, 'Ana', 1987, 'F', 1646), +(134846, 'Deanna', 1987, 'F', 1638), +(134847, 'Paige', 1987, 'F', 1637), +(134848, 'Barbara', 1987, 'F', 1631), +(134849, 'Sierra', 1987, 'F', 1620), +(134850, 'Gabrielle', 1987, 'F', 1605), +(134851, 'Emma', 1987, 'F', 1588), +(134852, 'Justine', 1987, 'F', 1586), +(134853, 'Britney', 1987, 'F', 1585), +(134854, 'Haley', 1987, 'F', 1556), +(134855, 'Alexandria', 1987, 'F', 1554), +(134856, 'Bridget', 1987, 'F', 1539), +(134857, 'Mayra', 1987, 'F', 1513), +(134858, 'Kristy', 1987, 'F', 1512), +(134859, 'Marie', 1987, 'F', 1495), +(134860, 'Audrey', 1987, 'F', 1487), +(134861, 'Cristina', 1987, 'F', 1479), +(134862, 'Chelsey', 1987, 'F', 1477), +(134863, 'Savannah', 1987, 'F', 1469), +(134864, 'Adrienne', 1987, 'F', 1466), +(134865, 'Jacquelyn', 1987, 'F', 1464), +(134866, 'Briana', 1987, 'F', 1449), +(134867, 'Kate', 1987, 'F', 1448), +(134868, 'Angel', 1987, 'F', 1445), +(134869, 'Autumn', 1987, 'F', 1443), +(134870, 'Cindy', 1987, 'F', 1425), +(134871, 'Kristi', 1987, 'F', 1419), +(134872, 'Carly', 1987, 'F', 1412), +(134873, 'Jill', 1987, 'F', 1410), +(134874, 'Grace', 1987, 'F', 1376), +(134875, 'Kristine', 1987, 'F', 1369), +(134876, 'Wendy', 1987, 'F', 1354), +(134877, 'Ashleigh', 1987, 'F', 1347), +(134878, 'Claire', 1987, 'F', 1332), +(134879, 'Kasey', 1987, 'F', 1315), +(134880, 'Janet', 1987, 'F', 1312), +(134881, 'Michele', 1987, 'F', 1310), +(134882, 'Claudia', 1987, 'F', 1304), +(134883, 'Christy', 1987, 'F', 1293), +(134884, 'Tasha', 1987, 'F', 1279), +(134885, 'Nina', 1987, 'F', 1262), +(134886, 'Stefanie', 1987, 'F', 1259), +(134887, 'Sharon', 1987, 'F', 1248), +(134888, 'Virginia', 1987, 'F', 1246), +(134889, 'Cara', 1987, 'F', 1231), +(134890, 'Aimee', 1987, 'F', 1228), +(134891, 'Jessie', 1987, 'F', 1221), +(134892, 'Toni', 1987, 'F', 1218), +(134893, 'Janelle', 1987, 'F', 1217), +(134894, 'Adriana', 1987, 'F', 1209), +(134895, 'Krystle', 1987, 'F', 1207), +(134896, 'Lydia', 1987, 'F', 1206), +(134897, 'Ann', 1987, 'F', 1205), +(134898, 'Deborah', 1987, 'F', 1202), +(134899, 'Latasha', 1987, 'F', 1201), +(134900, 'Regina', 1987, 'F', 1201), +(134901, 'Carla', 1987, 'F', 1197), +(134902, 'Kelley', 1987, 'F', 1197), +(134903, 'Tonya', 1987, 'F', 1188), +(134904, 'Trisha', 1987, 'F', 1186), +(134905, 'Raquel', 1987, 'F', 1170), +(134906, 'Lori', 1987, 'F', 1169), +(134907, 'Sheena', 1987, 'F', 1155), +(134908, 'Dawn', 1987, 'F', 1153), +(134909, 'Kellie', 1987, 'F', 1152), +(134910, 'Carmen', 1987, 'F', 1149), +(134911, 'Elise', 1987, 'F', 1144), +(134912, 'Martha', 1987, 'F', 1142), +(134913, 'Shawna', 1987, 'F', 1126), +(134914, 'Sophia', 1987, 'F', 1122), +(134915, 'Jaime', 1987, 'F', 1108), +(134916, 'Ellen', 1987, 'F', 1079), +(134917, 'Hillary', 1987, 'F', 1079), +(134918, 'Nikki', 1987, 'F', 1072), +(134919, 'Jeanette', 1987, 'F', 1065), +(134920, 'Randi', 1987, 'F', 1062), +(134921, 'Abby', 1987, 'F', 1051), +(134922, 'Robyn', 1987, 'F', 1049), +(134923, 'Summer', 1987, 'F', 1041), +(134924, 'Ruth', 1987, 'F', 1031), +(134925, 'Donna', 1987, 'F', 1030), +(134926, 'Roxanne', 1987, 'F', 1020), +(134927, 'Christa', 1987, 'F', 1018), +(134928, 'Shana', 1987, 'F', 1017), +(134929, 'Evelyn', 1987, 'F', 1012), +(134930, 'Amelia', 1987, 'F', 1006), +(134931, 'Naomi', 1987, 'F', 995), +(134932, 'Marisa', 1987, 'F', 989), +(134933, 'Gloria', 1987, 'F', 987), +(134934, 'Bonnie', 1987, 'F', 984), +(134935, 'Gabriela', 1987, 'F', 980), +(134936, 'Jocelyn', 1987, 'F', 979), +(134937, 'Rosa', 1987, 'F', 970), +(134938, 'Allyson', 1987, 'F', 963), +(134939, 'Cheryl', 1987, 'F', 960), +(134940, 'Mandy', 1987, 'F', 958), +(134941, 'Mindy', 1987, 'F', 957), +(134942, 'Suzanne', 1987, 'F', 947), +(134943, 'Beth', 1987, 'F', 930), +(134944, 'Bianca', 1987, 'F', 919), +(134945, 'Anastasia', 1987, 'F', 908), +(134946, 'Breanna', 1987, 'F', 905), +(134947, 'Melody', 1987, 'F', 905), +(134948, 'Paula', 1987, 'F', 904), +(134949, 'Shelby', 1987, 'F', 898), +(134950, 'Yolanda', 1987, 'F', 897), +(134951, 'Diane', 1987, 'F', 894), +(134952, 'Kirsten', 1987, 'F', 891), +(134953, 'Keri', 1987, 'F', 889), +(134954, 'Hayley', 1987, 'F', 884), +(134955, 'Maggie', 1987, 'F', 877), +(134956, 'Madeline', 1987, 'F', 875), +(134957, 'Hilary', 1987, 'F', 873), +(134958, 'Rachelle', 1987, 'F', 873), +(134959, 'Tammy', 1987, 'F', 867), +(134960, 'Karla', 1987, 'F', 865), +(134961, 'Sylvia', 1987, 'F', 863), +(134962, 'Joy', 1987, 'F', 861), +(134963, 'Jade', 1987, 'F', 858), +(134964, 'Esther', 1987, 'F', 850), +(134965, 'Karina', 1987, 'F', 848), +(134966, 'Lacy', 1987, 'F', 838), +(134967, 'Rose', 1987, 'F', 836), +(134968, 'Sonia', 1987, 'F', 826), +(134969, 'Aubrey', 1987, 'F', 822), +(134970, 'Alexa', 1987, 'F', 821), +(134971, 'Traci', 1987, 'F', 821), +(134972, 'Charlotte', 1987, 'F', 820), +(134973, 'Helen', 1987, 'F', 815), +(134974, 'Jasmin', 1987, 'F', 815), +(134975, 'Destiny', 1987, 'F', 811), +(134976, 'Christie', 1987, 'F', 808), +(134977, 'Hope', 1987, 'F', 808), +(134978, 'Tracey', 1987, 'F', 807), +(134979, 'Frances', 1987, 'F', 805), +(134980, 'Charlene', 1987, 'F', 804), +(134981, 'Elyse', 1987, 'F', 803), +(134982, 'Sheila', 1987, 'F', 799), +(134983, 'Brittani', 1987, 'F', 796), +(134984, 'Angelina', 1987, 'F', 790), +(134985, 'Jodi', 1987, 'F', 790); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(134986, 'Antoinette', 1987, 'F', 788), +(134987, 'Cierra', 1987, 'F', 784), +(134988, 'Shauna', 1987, 'F', 774), +(134989, 'Daisy', 1987, 'F', 771), +(134990, 'Ciara', 1987, 'F', 770), +(134991, 'Alice', 1987, 'F', 769), +(134992, 'Johanna', 1987, 'F', 769), +(134993, 'Brianne', 1987, 'F', 763), +(134994, 'Carol', 1987, 'F', 762), +(134995, 'Ashton', 1987, 'F', 758), +(134996, 'Shaina', 1987, 'F', 758), +(134997, 'Miriam', 1987, 'F', 756), +(134998, 'Alissa', 1987, 'F', 753), +(134999, 'Tatiana', 1987, 'F', 752), +(135000, 'Cortney', 1987, 'F', 751), +(135001, 'Keisha', 1987, 'F', 751), +(135002, 'Madison', 1987, 'F', 750), +(135003, 'Yvette', 1987, 'F', 748), +(135004, 'Shanna', 1987, 'F', 744), +(135005, 'Cecilia', 1987, 'F', 743), +(135006, 'Charity', 1987, 'F', 741), +(135007, 'Stacie', 1987, 'F', 741), +(135008, 'Rochelle', 1987, 'F', 739), +(135009, 'Anita', 1987, 'F', 737), +(135010, 'Carissa', 1987, 'F', 733), +(135011, 'Kerri', 1987, 'F', 730), +(135012, 'Yvonne', 1987, 'F', 730), +(135013, 'Katharine', 1987, 'F', 728), +(135014, 'Staci', 1987, 'F', 726), +(135015, 'Tia', 1987, 'F', 722), +(135016, 'Elisabeth', 1987, 'F', 721), +(135017, 'Mackenzie', 1987, 'F', 711), +(135018, 'Camille', 1987, 'F', 707), +(135019, 'Kendall', 1987, 'F', 702), +(135020, 'Ryan', 1987, 'F', 698), +(135021, 'Clarissa', 1987, 'F', 696), +(135022, 'Alyson', 1987, 'F', 694), +(135023, 'Eva', 1987, 'F', 694), +(135024, 'Leticia', 1987, 'F', 693), +(135025, 'Kristie', 1987, 'F', 689), +(135026, 'Tanisha', 1987, 'F', 685), +(135027, 'Katy', 1987, 'F', 674), +(135028, 'Jaimie', 1987, 'F', 670), +(135029, 'Tiara', 1987, 'F', 670), +(135030, 'Janice', 1987, 'F', 669), +(135031, 'Kerry', 1987, 'F', 669), +(135032, 'Elaine', 1987, 'F', 668), +(135033, 'Leigh', 1987, 'F', 668), +(135034, 'Jane', 1987, 'F', 667), +(135035, 'Chasity', 1987, 'F', 663), +(135036, 'Annie', 1987, 'F', 658), +(135037, 'Nikita', 1987, 'F', 658), +(135038, 'Irene', 1987, 'F', 653), +(135039, 'Meaghan', 1987, 'F', 653), +(135040, 'Tabatha', 1987, 'F', 653), +(135041, 'Sydney', 1987, 'F', 651), +(135042, 'Debra', 1987, 'F', 641), +(135043, 'Tricia', 1987, 'F', 641), +(135044, 'Chelsie', 1987, 'F', 640), +(135045, 'Ruby', 1987, 'F', 631), +(135046, 'Guadalupe', 1987, 'F', 630), +(135047, 'Shelly', 1987, 'F', 629), +(135048, 'Ariel', 1987, 'F', 625), +(135049, 'Sade', 1987, 'F', 625), +(135050, 'Elisa', 1987, 'F', 624), +(135051, 'Ericka', 1987, 'F', 624), +(135052, 'Alana', 1987, 'F', 623), +(135053, 'Lyndsey', 1987, 'F', 623), +(135054, 'Chantel', 1987, 'F', 620), +(135055, 'Callie', 1987, 'F', 617), +(135056, 'Sonya', 1987, 'F', 617), +(135057, 'Dorothy', 1987, 'F', 614), +(135058, 'Taryn', 1987, 'F', 613), +(135059, 'Bailey', 1987, 'F', 611), +(135060, 'Latisha', 1987, 'F', 609), +(135061, 'Rhonda', 1987, 'F', 607), +(135062, 'Kaylee', 1987, 'F', 604), +(135063, 'Caitlyn', 1987, 'F', 596), +(135064, 'Janay', 1987, 'F', 596), +(135065, 'Elena', 1987, 'F', 591), +(135066, 'Lorena', 1987, 'F', 589), +(135067, 'Patrice', 1987, 'F', 588), +(135068, 'Annette', 1987, 'F', 587), +(135069, 'Christian', 1987, 'F', 583), +(135070, 'Shayla', 1987, 'F', 583), +(135071, 'Jena', 1987, 'F', 582), +(135072, 'Jana', 1987, 'F', 581), +(135073, 'Noelle', 1987, 'F', 581), +(135074, 'Jackie', 1987, 'F', 576), +(135075, 'Sandy', 1987, 'F', 569), +(135076, 'Francesca', 1987, 'F', 568), +(135077, 'Sherry', 1987, 'F', 567), +(135078, 'Tessa', 1987, 'F', 565), +(135079, 'Constance', 1987, 'F', 562), +(135080, 'Daniela', 1987, 'F', 561), +(135081, 'Faith', 1987, 'F', 561), +(135082, 'Joyce', 1987, 'F', 561), +(135083, 'Shayna', 1987, 'F', 560), +(135084, 'Maureen', 1987, 'F', 553), +(135085, 'Mia', 1987, 'F', 544), +(135086, 'Michael', 1987, 'F', 544), +(135087, 'Tamika', 1987, 'F', 544), +(135088, 'Terri', 1987, 'F', 541), +(135089, 'Hailey', 1987, 'F', 538), +(135090, 'Lara', 1987, 'F', 538), +(135091, 'Kayleigh', 1987, 'F', 537), +(135092, 'Nora', 1987, 'F', 536), +(135093, 'Michaela', 1987, 'F', 535), +(135094, 'Marilyn', 1987, 'F', 532), +(135095, 'Nadia', 1987, 'F', 532), +(135096, 'Lillian', 1987, 'F', 531), +(135097, 'India', 1987, 'F', 530), +(135098, 'Kira', 1987, 'F', 530), +(135099, 'Sally', 1987, 'F', 528), +(135100, 'Judith', 1987, 'F', 526), +(135101, 'Alejandra', 1987, 'F', 525), +(135102, 'Jami', 1987, 'F', 525), +(135103, 'Juanita', 1987, 'F', 524), +(135104, 'Lakeisha', 1987, 'F', 524), +(135105, 'Ariana', 1987, 'F', 523), +(135106, 'Ciera', 1987, 'F', 520), +(135107, 'Laurie', 1987, 'F', 519), +(135108, 'Rita', 1987, 'F', 518), +(135109, 'Kathy', 1987, 'F', 517), +(135110, 'Marisol', 1987, 'F', 509), +(135111, 'Tierra', 1987, 'F', 509), +(135112, 'Ashlie', 1987, 'F', 508), +(135113, 'Connie', 1987, 'F', 508), +(135114, 'Ashly', 1987, 'F', 507), +(135115, 'Chloe', 1987, 'F', 506), +(135116, 'Lucy', 1987, 'F', 506), +(135117, 'Larissa', 1987, 'F', 504), +(135118, 'Shelley', 1987, 'F', 502), +(135119, 'Ashely', 1987, 'F', 499), +(135120, 'Julianne', 1987, 'F', 499), +(135121, 'Tori', 1987, 'F', 494), +(135122, 'Isabel', 1987, 'F', 493), +(135123, 'Alma', 1987, 'F', 492), +(135124, 'Kylie', 1987, 'F', 492), +(135125, 'Marlene', 1987, 'F', 492), +(135126, 'Maribel', 1987, 'F', 491), +(135127, 'Alisa', 1987, 'F', 489), +(135128, 'Brenna', 1987, 'F', 489), +(135129, 'Leanne', 1987, 'F', 489), +(135130, 'Jacklyn', 1987, 'F', 488), +(135131, 'Bridgette', 1987, 'F', 487), +(135132, 'Esmeralda', 1987, 'F', 485), +(135133, 'Keshia', 1987, 'F', 483), +(135134, 'Carolina', 1987, 'F', 482), +(135135, 'Krystina', 1987, 'F', 480), +(135136, 'Kyla', 1987, 'F', 478), +(135137, 'Brandie', 1987, 'F', 476), +(135138, 'Lynn', 1987, 'F', 475), +(135139, 'Lesley', 1987, 'F', 472), +(135140, 'Eileen', 1987, 'F', 470), +(135141, 'Jazmin', 1987, 'F', 470), +(135142, 'Celeste', 1987, 'F', 467), +(135143, 'Joanne', 1987, 'F', 466), +(135144, 'Chanel', 1987, 'F', 465), +(135145, 'Jennie', 1987, 'F', 465), +(135146, 'Belinda', 1987, 'F', 464), +(135147, 'Natalia', 1987, 'F', 463), +(135148, 'Norma', 1987, 'F', 463), +(135149, 'Shirley', 1987, 'F', 459), +(135150, 'Juliana', 1987, 'F', 456), +(135151, 'Kassandra', 1987, 'F', 456), +(135152, 'Rosemary', 1987, 'F', 455), +(135153, 'Beverly', 1987, 'F', 454), +(135154, 'Angie', 1987, 'F', 452), +(135155, 'Elisha', 1987, 'F', 450), +(135156, 'Serena', 1987, 'F', 448), +(135157, 'Jenifer', 1987, 'F', 447), +(135158, 'Laurel', 1987, 'F', 447), +(135159, 'Tiffani', 1987, 'F', 447), +(135160, 'Audra', 1987, 'F', 446), +(135161, 'Octavia', 1987, 'F', 446), +(135162, 'Jayme', 1987, 'F', 444), +(135163, 'Marina', 1987, 'F', 444), +(135164, 'Blair', 1987, 'F', 443), +(135165, 'Alaina', 1987, 'F', 442), +(135166, 'Darlene', 1987, 'F', 442), +(135167, 'Janae', 1987, 'F', 442), +(135168, 'Trista', 1987, 'F', 441), +(135169, 'Amie', 1987, 'F', 440), +(135170, 'Devin', 1987, 'F', 440), +(135171, 'Genevieve', 1987, 'F', 438), +(135172, 'Mariah', 1987, 'F', 437), +(135173, 'Betty', 1987, 'F', 435), +(135174, 'Josephine', 1987, 'F', 434), +(135175, 'Iris', 1987, 'F', 432), +(135176, 'Precious', 1987, 'F', 427), +(135177, 'Mercedes', 1987, 'F', 426), +(135178, 'Vivian', 1987, 'F', 426), +(135179, 'Bobbie', 1987, 'F', 423), +(135180, 'Kacie', 1987, 'F', 423), +(135181, 'Maegan', 1987, 'F', 420), +(135182, 'Lena', 1987, 'F', 419), +(135183, 'Shantel', 1987, 'F', 419), +(135184, 'Devon', 1987, 'F', 418), +(135185, 'Tania', 1987, 'F', 417), +(135186, 'Simone', 1987, 'F', 414), +(135187, 'Judy', 1987, 'F', 411), +(135188, 'Blanca', 1987, 'F', 408), +(135189, 'Corinne', 1987, 'F', 406), +(135190, 'Betsy', 1987, 'F', 404), +(135191, 'Tiana', 1987, 'F', 404), +(135192, 'Clara', 1987, 'F', 402), +(135193, 'Karissa', 1987, 'F', 402), +(135194, 'Savanna', 1987, 'F', 402), +(135195, 'Leann', 1987, 'F', 401), +(135196, 'Mollie', 1987, 'F', 397), +(135197, 'Cassidy', 1987, 'F', 395), +(135198, 'Asia', 1987, 'F', 390), +(135199, 'Cristal', 1987, 'F', 390), +(135200, 'Stephany', 1987, 'F', 390), +(135201, 'Hollie', 1987, 'F', 389), +(135202, 'Sadie', 1987, 'F', 388), +(135203, 'Liliana', 1987, 'F', 385), +(135204, 'Alysha', 1987, 'F', 383), +(135205, 'Kala', 1987, 'F', 381), +(135206, 'Aisha', 1987, 'F', 379), +(135207, 'Christopher', 1987, 'F', 379), +(135208, 'Jean', 1987, 'F', 379), +(135209, 'Susana', 1987, 'F', 379), +(135210, 'Becky', 1987, 'F', 377), +(135211, 'Christen', 1987, 'F', 376), +(135212, 'Chrystal', 1987, 'F', 375), +(135213, 'Dianna', 1987, 'F', 375), +(135214, 'Hanna', 1987, 'F', 375), +(135215, 'Maritza', 1987, 'F', 375), +(135216, 'Lorraine', 1987, 'F', 374), +(135217, 'Sherri', 1987, 'F', 372), +(135218, 'Bobbi', 1987, 'F', 371), +(135219, 'Ivy', 1987, 'F', 371), +(135220, 'Christin', 1987, 'F', 370), +(135221, 'Margarita', 1987, 'F', 368), +(135222, 'Daniella', 1987, 'F', 367), +(135223, 'Deidre', 1987, 'F', 367), +(135224, 'Chandra', 1987, 'F', 365), +(135225, 'Terra', 1987, 'F', 365), +(135226, 'Alyse', 1987, 'F', 364), +(135227, 'Arlene', 1987, 'F', 364), +(135228, 'Lacie', 1987, 'F', 364), +(135229, 'Marquita', 1987, 'F', 364), +(135230, 'Breanne', 1987, 'F', 363), +(135231, 'Alecia', 1987, 'F', 362), +(135232, 'Dayna', 1987, 'F', 360), +(135233, 'Alycia', 1987, 'F', 359), +(135234, 'Gretchen', 1987, 'F', 359), +(135235, 'Talia', 1987, 'F', 359), +(135236, 'Brittni', 1987, 'F', 357), +(135237, 'Kristal', 1987, 'F', 356), +(135238, 'Lea', 1987, 'F', 356), +(135239, 'Adrian', 1987, 'F', 355), +(135240, 'Joann', 1987, 'F', 355), +(135241, 'Jolene', 1987, 'F', 355), +(135242, 'Justina', 1987, 'F', 355), +(135243, 'Lora', 1987, 'F', 351), +(135244, 'Mandi', 1987, 'F', 351), +(135245, 'Racheal', 1987, 'F', 349), +(135246, 'Raven', 1987, 'F', 348), +(135247, 'Casandra', 1987, 'F', 347), +(135248, 'Desirae', 1987, 'F', 347), +(135249, 'Luz', 1987, 'F', 347), +(135250, 'Kali', 1987, 'F', 346), +(135251, 'Kelsie', 1987, 'F', 345), +(135252, 'Gabriella', 1987, 'F', 344), +(135253, 'Antonia', 1987, 'F', 343), +(135254, 'Janine', 1987, 'F', 343), +(135255, 'Jeannette', 1987, 'F', 343), +(135256, 'Arielle', 1987, 'F', 341), +(135257, 'Chantal', 1987, 'F', 341), +(135258, 'Latonya', 1987, 'F', 341), +(135259, 'Janna', 1987, 'F', 340), +(135260, 'Stevie', 1987, 'F', 340), +(135261, 'Lyndsay', 1987, 'F', 337), +(135262, 'Tameka', 1987, 'F', 337), +(135263, 'Noel', 1987, 'F', 336), +(135264, 'Tiffanie', 1987, 'F', 334), +(135265, 'Leanna', 1987, 'F', 332), +(135266, 'Channing', 1987, 'F', 330), +(135267, 'Corey', 1987, 'F', 330), +(135268, 'Lucia', 1987, 'F', 330), +(135269, 'Ayla', 1987, 'F', 329), +(135270, 'Celia', 1987, 'F', 329), +(135271, 'Jazmine', 1987, 'F', 329), +(135272, 'Abbey', 1987, 'F', 327), +(135273, 'Cherie', 1987, 'F', 327), +(135274, 'Rocio', 1987, 'F', 327), +(135275, 'Teri', 1987, 'F', 326), +(135276, 'Kacey', 1987, 'F', 324), +(135277, 'Lana', 1987, 'F', 324), +(135278, 'Nadine', 1987, 'F', 324), +(135279, 'Lynette', 1987, 'F', 323), +(135280, 'Cori', 1987, 'F', 322), +(135281, 'Jesse', 1987, 'F', 322), +(135282, 'Kyle', 1987, 'F', 320), +(135283, 'Jerrica', 1987, 'F', 318), +(135284, 'Gwendolyn', 1987, 'F', 317), +(135285, 'Kaila', 1987, 'F', 317), +(135286, 'Angelique', 1987, 'F', 316), +(135287, 'Adrianne', 1987, 'F', 315), +(135288, 'Britni', 1987, 'F', 315), +(135289, 'Paris', 1987, 'F', 315), +(135290, 'Edith', 1987, 'F', 314), +(135291, 'Sofia', 1987, 'F', 314), +(135292, 'Ashli', 1987, 'F', 313), +(135293, 'Roxana', 1987, 'F', 313), +(135294, 'Dina', 1987, 'F', 312), +(135295, 'Janette', 1987, 'F', 312), +(135296, 'Maricela', 1987, 'F', 312), +(135297, 'Marisela', 1987, 'F', 311), +(135298, 'Lashonda', 1987, 'F', 310), +(135299, 'Sheri', 1987, 'F', 308), +(135300, 'Kristyn', 1987, 'F', 307), +(135301, 'Krysta', 1987, 'F', 307), +(135302, 'Lily', 1987, 'F', 307), +(135303, 'Marianne', 1987, 'F', 306), +(135304, 'Mckenzie', 1987, 'F', 305), +(135305, 'Sonja', 1987, 'F', 304), +(135306, 'Elissa', 1987, 'F', 303), +(135307, 'Rosanna', 1987, 'F', 303), +(135308, 'Shari', 1987, 'F', 303), +(135309, 'Adrianna', 1987, 'F', 302), +(135310, 'Roxanna', 1987, 'F', 301), +(135311, 'Alysia', 1987, 'F', 299), +(135312, 'Melisa', 1987, 'F', 298), +(135313, 'Tracie', 1987, 'F', 298), +(135314, 'Maranda', 1987, 'F', 296), +(135315, 'Shanika', 1987, 'F', 296), +(135316, 'Kassie', 1987, 'F', 294), +(135317, 'Katlyn', 1987, 'F', 294), +(135318, 'Kimberley', 1987, 'F', 294), +(135319, 'Eliza', 1987, 'F', 293), +(135320, 'Kourtney', 1987, 'F', 293), +(135321, 'Myra', 1987, 'F', 292), +(135322, 'Domonique', 1987, 'F', 291), +(135323, 'Cayla', 1987, 'F', 290), +(135324, 'Kaleigh', 1987, 'F', 290), +(135325, 'Eleanor', 1987, 'F', 289), +(135326, 'Latrice', 1987, 'F', 289), +(135327, 'Phylicia', 1987, 'F', 289), +(135328, 'Bernadette', 1987, 'F', 288), +(135329, 'Joelle', 1987, 'F', 288), +(135330, 'Maya', 1987, 'F', 288), +(135331, 'Shante', 1987, 'F', 288), +(135332, 'Kaci', 1987, 'F', 287), +(135333, 'Laci', 1987, 'F', 287), +(135334, 'Matthew', 1987, 'F', 287), +(135335, 'Alanna', 1987, 'F', 286), +(135336, 'Billie', 1987, 'F', 284), +(135337, 'Marcia', 1987, 'F', 284), +(135338, 'Jody', 1987, 'F', 282), +(135339, 'Julianna', 1987, 'F', 282), +(135340, 'Cheyenne', 1987, 'F', 281), +(135341, 'Janel', 1987, 'F', 280), +(135342, 'Joan', 1987, 'F', 279), +(135343, 'Kim', 1987, 'F', 279), +(135344, 'Kylee', 1987, 'F', 279), +(135345, 'Jessika', 1987, 'F', 278), +(135346, 'Lakeshia', 1987, 'F', 278), +(135347, 'Emilie', 1987, 'F', 277), +(135348, 'Kimberlee', 1987, 'F', 277), +(135349, 'Corina', 1987, 'F', 275), +(135350, 'Britany', 1987, 'F', 274), +(135351, 'Kaley', 1987, 'F', 274), +(135352, 'Cari', 1987, 'F', 273), +(135353, 'Brittanie', 1987, 'F', 272), +(135354, 'Jodie', 1987, 'F', 272), +(135355, 'Joshua', 1987, 'F', 272), +(135356, 'Debbie', 1987, 'F', 271), +(135357, 'Deidra', 1987, 'F', 271), +(135358, 'Felisha', 1987, 'F', 271), +(135359, 'Lakisha', 1987, 'F', 271), +(135360, 'Leeann', 1987, 'F', 271), +(135361, 'Maura', 1987, 'F', 271), +(135362, 'Allie', 1987, 'F', 269), +(135363, 'Loretta', 1987, 'F', 269), +(135364, 'Mara', 1987, 'F', 269), +(135365, 'Janie', 1987, 'F', 268), +(135366, 'Dominque', 1987, 'F', 267), +(135367, 'Fatima', 1987, 'F', 267), +(135368, 'Alesha', 1987, 'F', 265), +(135369, 'Gillian', 1987, 'F', 264), +(135370, 'Silvia', 1987, 'F', 264), +(135371, 'Daniel', 1987, 'F', 263), +(135372, 'Giselle', 1987, 'F', 263), +(135373, 'Maryann', 1987, 'F', 263), +(135374, 'Rhiannon', 1987, 'F', 262), +(135375, 'Georgia', 1987, 'F', 261), +(135376, 'Roberta', 1987, 'F', 261), +(135377, 'Yasmin', 1987, 'F', 260), +(135378, 'Araceli', 1987, 'F', 259), +(135379, 'Chantelle', 1987, 'F', 259), +(135380, 'Diamond', 1987, 'F', 259), +(135381, 'Kandice', 1987, 'F', 259), +(135382, 'Martina', 1987, 'F', 259), +(135383, 'Ali', 1987, 'F', 258), +(135384, 'Beatriz', 1987, 'F', 258), +(135385, 'Cameron', 1987, 'F', 258), +(135386, 'Chiquita', 1987, 'F', 258), +(135387, 'Nicolette', 1987, 'F', 258), +(135388, 'Katelin', 1987, 'F', 257), +(135389, 'Shamika', 1987, 'F', 257), +(135390, 'Fallon', 1987, 'F', 255), +(135391, 'Kristian', 1987, 'F', 254), +(135392, 'Justin', 1987, 'F', 253), +(135393, 'Aurora', 1987, 'F', 252), +(135394, 'David', 1987, 'F', 252), +(135395, 'Lizette', 1987, 'F', 252), +(135396, 'Marjorie', 1987, 'F', 252), +(135397, 'Tyler', 1987, 'F', 252), +(135398, 'Kenya', 1987, 'F', 251), +(135399, 'Loren', 1987, 'F', 250), +(135400, 'Marsha', 1987, 'F', 250), +(135401, 'Monika', 1987, 'F', 250), +(135402, 'Noemi', 1987, 'F', 249), +(135403, 'Yessenia', 1987, 'F', 249), +(135404, 'Clare', 1987, 'F', 248), +(135405, 'Selina', 1987, 'F', 248), +(135406, 'Christi', 1987, 'F', 247), +(135407, 'Eboni', 1987, 'F', 247), +(135408, 'Holli', 1987, 'F', 247), +(135409, 'Zoe', 1987, 'F', 247), +(135410, 'Cathy', 1987, 'F', 246), +(135411, 'James', 1987, 'F', 246), +(135412, 'Selena', 1987, 'F', 246), +(135413, 'Viviana', 1987, 'F', 245), +(135414, 'Carina', 1987, 'F', 244), +(135415, 'Janell', 1987, 'F', 244), +(135416, 'Joni', 1987, 'F', 244), +(135417, 'Kandace', 1987, 'F', 244), +(135418, 'Katelynn', 1987, 'F', 244), +(135419, 'Susanna', 1987, 'F', 244), +(135420, 'Cherish', 1987, 'F', 243), +(135421, 'Kyra', 1987, 'F', 243), +(135422, 'Lee', 1987, 'F', 242), +(135423, 'Porsha', 1987, 'F', 240), +(135424, 'Skye', 1987, 'F', 240), +(135425, 'Dara', 1987, 'F', 239), +(135426, 'Marla', 1987, 'F', 239), +(135427, 'Tosha', 1987, 'F', 239), +(135428, 'Daphne', 1987, 'F', 238), +(135429, 'Emilee', 1987, 'F', 238), +(135430, 'Jesica', 1987, 'F', 238), +(135431, 'Marcella', 1987, 'F', 238), +(135432, 'Princess', 1987, 'F', 238), +(135433, 'Tera', 1987, 'F', 238), +(135434, 'Andria', 1987, 'F', 237), +(135435, 'Brittaney', 1987, 'F', 237), +(135436, 'Kati', 1987, 'F', 237), +(135437, 'Dena', 1987, 'F', 236), +(135438, 'Gladys', 1987, 'F', 236), +(135439, 'Lakesha', 1987, 'F', 236), +(135440, 'Sophie', 1987, 'F', 236), +(135441, 'Ginger', 1987, 'F', 235), +(135442, 'Jeannie', 1987, 'F', 235), +(135443, 'Portia', 1987, 'F', 235), +(135444, 'Kathrine', 1987, 'F', 233), +(135445, 'Liza', 1987, 'F', 233), +(135446, 'Peggy', 1987, 'F', 233), +(135447, 'Trina', 1987, 'F', 232), +(135448, 'Nathalie', 1987, 'F', 231), +(135449, 'Shameka', 1987, 'F', 231), +(135450, 'Casie', 1987, 'F', 229), +(135451, 'Olga', 1987, 'F', 229), +(135452, 'Shea', 1987, 'F', 229), +(135453, 'Abbie', 1987, 'F', 228), +(135454, 'Cody', 1987, 'F', 227), +(135455, 'Doris', 1987, 'F', 227), +(135456, 'Ingrid', 1987, 'F', 227), +(135457, 'Lynsey', 1987, 'F', 227), +(135458, 'Rikki', 1987, 'F', 227), +(135459, 'Santana', 1987, 'F', 227), +(135460, 'Celina', 1987, 'F', 226), +(135461, 'Kelsi', 1987, 'F', 226), +(135462, 'Kori', 1987, 'F', 225), +(135463, 'Bridgett', 1987, 'F', 224), +(135464, 'Nikole', 1987, 'F', 224), +(135465, 'Andrew', 1987, 'F', 223), +(135466, 'Irma', 1987, 'F', 223), +(135467, 'Cheri', 1987, 'F', 222), +(135468, 'Alexia', 1987, 'F', 221), +(135469, 'Carley', 1987, 'F', 221), +(135470, 'Mariana', 1987, 'F', 221), +(135471, 'Yadira', 1987, 'F', 221), +(135472, 'Ashlyn', 1987, 'F', 220), +(135473, 'Nakita', 1987, 'F', 220), +(135474, 'Candy', 1987, 'F', 219), +(135475, 'Catrina', 1987, 'F', 219), +(135476, 'Delilah', 1987, 'F', 219), +(135477, 'Robert', 1987, 'F', 219), +(135478, 'Malorie', 1987, 'F', 218), +(135479, 'Wanda', 1987, 'F', 218), +(135480, 'Aileen', 1987, 'F', 217), +(135481, 'Brandon', 1987, 'F', 217), +(135482, 'Deana', 1987, 'F', 217), +(135483, 'Jeanne', 1987, 'F', 217), +(135484, 'Joseph', 1987, 'F', 217), +(135485, 'Madeleine', 1987, 'F', 217), +(135486, 'Alexander', 1987, 'F', 216), +(135487, 'Kasie', 1987, 'F', 216), +(135488, 'Marlena', 1987, 'F', 216), +(135489, 'Perla', 1987, 'F', 216), +(135490, 'Mattie', 1987, 'F', 215), +(135491, 'Reyna', 1987, 'F', 215), +(135492, 'Leila', 1987, 'F', 214), +(135493, 'Linsey', 1987, 'F', 214), +(135494, 'Richelle', 1987, 'F', 214), +(135495, 'Anthony', 1987, 'F', 213), +(135496, 'Stefani', 1987, 'F', 213), +(135497, 'Deirdre', 1987, 'F', 212), +(135498, 'Janessa', 1987, 'F', 212), +(135499, 'Kiley', 1987, 'F', 212), +(135500, 'Mallorie', 1987, 'F', 212), +(135501, 'Pauline', 1987, 'F', 212), +(135502, 'Alex', 1987, 'F', 211), +(135503, 'Cecelia', 1987, 'F', 211), +(135504, 'Eliana', 1987, 'F', 211), +(135505, 'Jerica', 1987, 'F', 211), +(135506, 'Cory', 1987, 'F', 210), +(135507, 'Danyelle', 1987, 'F', 210), +(135508, 'Dora', 1987, 'F', 210), +(135509, 'Hallie', 1987, 'F', 210), +(135510, 'Malinda', 1987, 'F', 210), +(135511, 'Ramona', 1987, 'F', 210), +(135512, 'Shanda', 1987, 'F', 210), +(135513, 'Beatrice', 1987, 'F', 209), +(135514, 'Dannielle', 1987, 'F', 208), +(135515, 'Tanesha', 1987, 'F', 208), +(135516, 'Valarie', 1987, 'F', 208), +(135517, 'Sharonda', 1987, 'F', 207), +(135518, 'Valencia', 1987, 'F', 207), +(135519, 'Valeria', 1987, 'F', 207), +(135520, 'Christal', 1987, 'F', 206), +(135521, 'Laquita', 1987, 'F', 205), +(135522, 'Darcy', 1987, 'F', 204), +(135523, 'Alina', 1987, 'F', 203), +(135524, 'Jessi', 1987, 'F', 203), +(135525, 'Athena', 1987, 'F', 202), +(135526, 'Danelle', 1987, 'F', 202), +(135527, 'Josie', 1987, 'F', 202), +(135528, 'Maira', 1987, 'F', 201), +(135529, 'Ashlea', 1987, 'F', 200), +(135530, 'Candis', 1987, 'F', 200), +(135531, 'Eden', 1987, 'F', 200), +(135532, 'Shawn', 1987, 'F', 200), +(135533, 'Vicky', 1987, 'F', 200), +(135534, 'Samatha', 1987, 'F', 199), +(135535, 'Delia', 1987, 'F', 198), +(135536, 'Jenelle', 1987, 'F', 198), +(135537, 'Latosha', 1987, 'F', 198), +(135538, 'Arianna', 1987, 'F', 197), +(135539, 'John', 1987, 'F', 197), +(135540, 'Magen', 1987, 'F', 197), +(135541, 'Tiera', 1987, 'F', 197), +(135542, 'Caryn', 1987, 'F', 196), +(135543, 'Kia', 1987, 'F', 196), +(135544, 'Kirstin', 1987, 'F', 196), +(135545, 'Lissette', 1987, 'F', 196), +(135546, 'Mariel', 1987, 'F', 196), +(135547, 'Shantell', 1987, 'F', 196), +(135548, 'Tarah', 1987, 'F', 196), +(135549, 'Cora', 1987, 'F', 195), +(135550, 'Jeanna', 1987, 'F', 195), +(135551, 'Karin', 1987, 'F', 195), +(135552, 'Venessa', 1987, 'F', 195), +(135553, 'Chana', 1987, 'F', 194), +(135554, 'Griselda', 1987, 'F', 193), +(135555, 'Ladonna', 1987, 'F', 193), +(135556, 'Paola', 1987, 'F', 193), +(135557, 'Shanta', 1987, 'F', 193), +(135558, 'Dolores', 1987, 'F', 192), +(135559, 'Edna', 1987, 'F', 192), +(135560, 'Kristan', 1987, 'F', 192), +(135561, 'Krysten', 1987, 'F', 192), +(135562, 'Tamra', 1987, 'F', 192), +(135563, 'Jamila', 1987, 'F', 191), +(135564, 'Demetria', 1987, 'F', 190), +(135565, 'Micaela', 1987, 'F', 190), +(135566, 'Annmarie', 1987, 'F', 189), +(135567, 'Krystin', 1987, 'F', 189), +(135568, 'Micah', 1987, 'F', 189), +(135569, 'Elaina', 1987, 'F', 188), +(135570, 'Geneva', 1987, 'F', 188), +(135571, 'Nakia', 1987, 'F', 188), +(135572, 'Vicki', 1987, 'F', 188), +(135573, 'Iesha', 1987, 'F', 187), +(135574, 'Jesenia', 1987, 'F', 187), +(135575, 'Meghann', 1987, 'F', 186), +(135576, 'Kasandra', 1987, 'F', 185), +(135577, 'Leandra', 1987, 'F', 185), +(135578, 'Rena', 1987, 'F', 185), +(135579, 'Sheree', 1987, 'F', 185), +(135580, 'Charmaine', 1987, 'F', 184), +(135581, 'Rosemarie', 1987, 'F', 184), +(135582, 'Shakira', 1987, 'F', 184), +(135583, 'Tess', 1987, 'F', 184), +(135584, 'Felecia', 1987, 'F', 183), +(135585, 'Glenda', 1987, 'F', 183), +(135586, 'Liana', 1987, 'F', 183), +(135587, 'Rene', 1987, 'F', 183), +(135588, 'Siobhan', 1987, 'F', 183), +(135589, 'Antionette', 1987, 'F', 182), +(135590, 'Kaela', 1987, 'F', 182), +(135591, 'Eunice', 1987, 'F', 181), +(135592, 'Farrah', 1987, 'F', 181), +(135593, 'Karli', 1987, 'F', 181), +(135594, 'Madelyn', 1987, 'F', 181), +(135595, 'Porsche', 1987, 'F', 181), +(135596, 'Breann', 1987, 'F', 180), +(135597, 'Kalyn', 1987, 'F', 180), +(135598, 'Katheryn', 1987, 'F', 180), +(135599, 'Chanelle', 1987, 'F', 179), +(135600, 'Jonathan', 1987, 'F', 179), +(135601, 'Karly', 1987, 'F', 179), +(135602, 'Lisette', 1987, 'F', 179), +(135603, 'Marian', 1987, 'F', 179), +(135604, 'Lakendra', 1987, 'F', 177), +(135605, 'Lauryn', 1987, 'F', 177), +(135606, 'Renae', 1987, 'F', 177), +(135607, 'Terry', 1987, 'F', 177), +(135608, 'Alessandra', 1987, 'F', 176), +(135609, 'Marcy', 1987, 'F', 176), +(135610, 'Sherrie', 1987, 'F', 176), +(135611, 'Damaris', 1987, 'F', 175), +(135612, 'Juana', 1987, 'F', 175), +(135613, 'Kaycee', 1987, 'F', 175), +(135614, 'Sheryl', 1987, 'F', 175), +(135615, 'Tenisha', 1987, 'F', 175), +(135616, 'Ava', 1987, 'F', 174), +(135617, 'Kacy', 1987, 'F', 174), +(135618, 'Lia', 1987, 'F', 174), +(135619, 'Tami', 1987, 'F', 174), +(135620, 'Tyesha', 1987, 'F', 174), +(135621, 'Jada', 1987, 'F', 173), +(135622, 'Chastity', 1987, 'F', 172), +(135623, 'Elsa', 1987, 'F', 171), +(135624, 'Penny', 1987, 'F', 171), +(135625, 'Stephenie', 1987, 'F', 171), +(135626, 'Ami', 1987, 'F', 170), +(135627, 'Cassondra', 1987, 'F', 170), +(135628, 'Denisse', 1987, 'F', 169), +(135629, 'Georgina', 1987, 'F', 169), +(135630, 'Kailey', 1987, 'F', 169), +(135631, 'Louise', 1987, 'F', 169), +(135632, 'Lynda', 1987, 'F', 169), +(135633, 'William', 1987, 'F', 169), +(135634, 'Magdalena', 1987, 'F', 168), +(135635, 'Jessenia', 1987, 'F', 167), +(135636, 'Annamarie', 1987, 'F', 166), +(135637, 'Francis', 1987, 'F', 166), +(135638, 'Helena', 1987, 'F', 166), +(135639, 'Shanae', 1987, 'F', 166), +(135640, 'Sarai', 1987, 'F', 165), +(135641, 'Anjelica', 1987, 'F', 164), +(135642, 'Jeana', 1987, 'F', 164), +(135643, 'Rebeca', 1987, 'F', 164), +(135644, 'Shanita', 1987, 'F', 164), +(135645, 'Danica', 1987, 'F', 163), +(135646, 'Davina', 1987, 'F', 163), +(135647, 'Gabriel', 1987, 'F', 163), +(135648, 'Lucinda', 1987, 'F', 163), +(135649, 'Stella', 1987, 'F', 163), +(135650, 'Brigitte', 1987, 'F', 162), +(135651, 'Cathleen', 1987, 'F', 162), +(135652, 'Francine', 1987, 'F', 162), +(135653, 'Jaqueline', 1987, 'F', 162), +(135654, 'Jeanine', 1987, 'F', 162), +(135655, 'Shanell', 1987, 'F', 162), +(135656, 'Mari', 1987, 'F', 161), +(135657, 'Tianna', 1987, 'F', 161), +(135658, 'Kami', 1987, 'F', 160), +(135659, 'Kaylyn', 1987, 'F', 160), +(135660, 'Luisa', 1987, 'F', 160), +(135661, 'Nicholas', 1987, 'F', 160), +(135662, 'Racquel', 1987, 'F', 160), +(135663, 'Denisha', 1987, 'F', 159), +(135664, 'Graciela', 1987, 'F', 159), +(135665, 'Johnna', 1987, 'F', 159), +(135666, 'Kaylin', 1987, 'F', 159), +(135667, 'Natosha', 1987, 'F', 159), +(135668, 'Stephani', 1987, 'F', 159), +(135669, 'Aja', 1987, 'F', 158), +(135670, 'Eric', 1987, 'F', 158), +(135671, 'Kaylie', 1987, 'F', 158), +(135672, 'Ada', 1987, 'F', 157), +(135673, 'Angeline', 1987, 'F', 157), +(135674, 'Brook', 1987, 'F', 157), +(135675, 'Danae', 1987, 'F', 157), +(135676, 'Lourdes', 1987, 'F', 157), +(135677, 'Maxine', 1987, 'F', 157), +(135678, 'Dianne', 1987, 'F', 156), +(135679, 'Magan', 1987, 'F', 156), +(135680, 'Stacia', 1987, 'F', 156), +(135681, 'Bertha', 1987, 'F', 155), +(135682, 'Chelsi', 1987, 'F', 155), +(135683, 'Latoria', 1987, 'F', 155), +(135684, 'Misti', 1987, 'F', 155), +(135685, 'Carey', 1987, 'F', 154), +(135686, 'Christiana', 1987, 'F', 154), +(135687, 'Mai', 1987, 'F', 154), +(135688, 'Marcie', 1987, 'F', 154), +(135689, 'Susie', 1987, 'F', 154), +(135690, 'Latara', 1987, 'F', 153), +(135691, 'Marci', 1987, 'F', 153), +(135692, 'Keely', 1987, 'F', 152), +(135693, 'Kindra', 1987, 'F', 152), +(135694, 'Kirby', 1987, 'F', 152), +(135695, 'Lina', 1987, 'F', 152), +(135696, 'Mariela', 1987, 'F', 152), +(135697, 'Sondra', 1987, 'F', 152), +(135698, 'Tawny', 1987, 'F', 152), +(135699, 'Ahsley', 1987, 'F', 151), +(135700, 'Britta', 1987, 'F', 151), +(135701, 'Gena', 1987, 'F', 151), +(135702, 'June', 1987, 'F', 151), +(135703, 'Lizbeth', 1987, 'F', 151), +(135704, 'Rosalinda', 1987, 'F', 151), +(135705, 'Salina', 1987, 'F', 151), +(135706, 'Scarlett', 1987, 'F', 151), +(135707, 'Brittnee', 1987, 'F', 150), +(135708, 'Cecily', 1987, 'F', 150), +(135709, 'Cherelle', 1987, 'F', 150), +(135710, 'Ida', 1987, 'F', 150), +(135711, 'Marion', 1987, 'F', 150), +(135712, 'Shaquita', 1987, 'F', 150), +(135713, 'Alexandrea', 1987, 'F', 149), +(135714, 'Carli', 1987, 'F', 149), +(135715, 'Sarina', 1987, 'F', 149), +(135716, 'Shaneka', 1987, 'F', 149), +(135717, 'Sherita', 1987, 'F', 149), +(135718, 'Stephaine', 1987, 'F', 149), +(135719, 'Whittney', 1987, 'F', 149), +(135720, 'Corrine', 1987, 'F', 148), +(135721, 'Karyn', 1987, 'F', 148), +(135722, 'Malissa', 1987, 'F', 148), +(135723, 'Margo', 1987, 'F', 148), +(135724, 'Nicolle', 1987, 'F', 148), +(135725, 'Shalonda', 1987, 'F', 148), +(135726, 'Charissa', 1987, 'F', 147), +(135727, 'Shanelle', 1987, 'F', 147), +(135728, 'Brittny', 1987, 'F', 146), +(135729, 'Cathryn', 1987, 'F', 146), +(135730, 'Colette', 1987, 'F', 146), +(135731, 'Hilda', 1987, 'F', 146), +(135732, 'Juliet', 1987, 'F', 146), +(135733, 'Kiersten', 1987, 'F', 146), +(135734, 'Fabiola', 1987, 'F', 145), +(135735, 'Kellye', 1987, 'F', 145), +(135736, 'Kiera', 1987, 'F', 145), +(135737, 'Marcela', 1987, 'F', 145), +(135738, 'Rosalie', 1987, 'F', 145), +(135739, 'Tabetha', 1987, 'F', 145), +(135740, 'Chaya', 1987, 'F', 144), +(135741, 'Gail', 1987, 'F', 144), +(135742, 'Kendal', 1987, 'F', 144), +(135743, 'Latia', 1987, 'F', 144), +(135744, 'Mellissa', 1987, 'F', 144), +(135745, 'Sunny', 1987, 'F', 144), +(135746, 'Violet', 1987, 'F', 144), +(135747, 'Aaron', 1987, 'F', 143), +(135748, 'Fawn', 1987, 'F', 143), +(135749, 'Jewel', 1987, 'F', 143), +(135750, 'Lindy', 1987, 'F', 143), +(135751, 'Candi', 1987, 'F', 142), +(135752, 'Darla', 1987, 'F', 142), +(135753, 'Kevin', 1987, 'F', 142), +(135754, 'Kimber', 1987, 'F', 142), +(135755, 'Ryann', 1987, 'F', 142), +(135756, 'Shasta', 1987, 'F', 142), +(135757, 'Amberly', 1987, 'F', 141), +(135758, 'Brittnie', 1987, 'F', 141), +(135759, 'Hazel', 1987, 'F', 141), +(135760, 'Pearl', 1987, 'F', 141), +(135761, 'Brandee', 1987, 'F', 140), +(135762, 'Carlie', 1987, 'F', 140), +(135763, 'Corrie', 1987, 'F', 140), +(135764, 'Leigha', 1987, 'F', 140), +(135765, 'Leilani', 1987, 'F', 140), +(135766, 'Mona', 1987, 'F', 140), +(135767, 'Rosalyn', 1987, 'F', 140), +(135768, 'Shanice', 1987, 'F', 140), +(135769, 'Giovanna', 1987, 'F', 139), +(135770, 'Lashawn', 1987, 'F', 139), +(135771, 'Natashia', 1987, 'F', 139), +(135772, 'Tristan', 1987, 'F', 139), +(135773, 'Colby', 1987, 'F', 138), +(135774, 'Cristy', 1987, 'F', 138), +(135775, 'Genesis', 1987, 'F', 138), +(135776, 'Geraldine', 1987, 'F', 138), +(135777, 'Jeri', 1987, 'F', 138), +(135778, 'Nichelle', 1987, 'F', 138), +(135779, 'Chelsy', 1987, 'F', 137), +(135780, 'Shavon', 1987, 'F', 137), +(135781, 'Chanda', 1987, 'F', 136), +(135782, 'Malia', 1987, 'F', 136), +(135783, 'Markita', 1987, 'F', 136), +(135784, 'Mikaela', 1987, 'F', 136), +(135785, 'Paulina', 1987, 'F', 136), +(135786, 'Franchesca', 1987, 'F', 135), +(135787, 'Kandis', 1987, 'F', 135), +(135788, 'Logan', 1987, 'F', 135), +(135789, 'Shatara', 1987, 'F', 135), +(135790, 'Adriane', 1987, 'F', 134), +(135791, 'Asha', 1987, 'F', 134), +(135792, 'Breana', 1987, 'F', 134), +(135793, 'Corinna', 1987, 'F', 134), +(135794, 'Ivette', 1987, 'F', 134), +(135795, 'Latanya', 1987, 'F', 134), +(135796, 'Suzanna', 1987, 'F', 134), +(135797, 'Tonia', 1987, 'F', 134), +(135798, 'Tyra', 1987, 'F', 134), +(135799, 'Codi', 1987, 'F', 133), +(135800, 'Grecia', 1987, 'F', 133), +(135801, 'Marta', 1987, 'F', 133), +(135802, 'Niki', 1987, 'F', 133), +(135803, 'Therese', 1987, 'F', 133), +(135804, 'Bernice', 1987, 'F', 132), +(135805, 'Esperanza', 1987, 'F', 132), +(135806, 'Jo', 1987, 'F', 132), +(135807, 'Reva', 1987, 'F', 132), +(135808, 'Ashlei', 1987, 'F', 131), +(135809, 'Daniele', 1987, 'F', 131), +(135810, 'Julissa', 1987, 'F', 131), +(135811, 'Kesha', 1987, 'F', 131), +(135812, 'Annemarie', 1987, 'F', 130), +(135813, 'Camilla', 1987, 'F', 130), +(135814, 'Hali', 1987, 'F', 130), +(135815, 'Katlin', 1987, 'F', 130), +(135816, 'Lashanda', 1987, 'F', 130), +(135817, 'Marguerite', 1987, 'F', 130), +(135818, 'Savanah', 1987, 'F', 130), +(135819, 'Tasia', 1987, 'F', 130), +(135820, 'Tiesha', 1987, 'F', 130), +(135821, 'Ursula', 1987, 'F', 130), +(135822, 'Cristin', 1987, 'F', 129), +(135823, 'Kortney', 1987, 'F', 129), +(135824, 'Laquisha', 1987, 'F', 129), +(135825, 'Danna', 1987, 'F', 128), +(135826, 'Ebonie', 1987, 'F', 128), +(135827, 'Ella', 1987, 'F', 128), +(135828, 'Kiara', 1987, 'F', 128), +(135829, 'Mellisa', 1987, 'F', 128), +(135830, 'Moriah', 1987, 'F', 128), +(135831, 'Sharee', 1987, 'F', 128), +(135832, 'Tana', 1987, 'F', 128), +(135833, 'Kallie', 1987, 'F', 127), +(135834, 'Brett', 1987, 'F', 126), +(135835, 'Brian', 1987, 'F', 126), +(135836, 'Chante', 1987, 'F', 126), +(135837, 'Cherise', 1987, 'F', 126), +(135838, 'Dulce', 1987, 'F', 126), +(135839, 'Emilia', 1987, 'F', 126), +(135840, 'Genna', 1987, 'F', 126), +(135841, 'Jenni', 1987, 'F', 126), +(135842, 'Kerrie', 1987, 'F', 126), +(135843, 'Kiana', 1987, 'F', 126), +(135844, 'Kyrie', 1987, 'F', 126), +(135845, 'Lynnette', 1987, 'F', 126), +(135846, 'Porscha', 1987, 'F', 126), +(135847, 'Deandra', 1987, 'F', 125), +(135848, 'Deena', 1987, 'F', 125), +(135849, 'Hana', 1987, 'F', 125), +(135850, 'Joana', 1987, 'F', 125), +(135851, 'Leona', 1987, 'F', 125), +(135852, 'Merissa', 1987, 'F', 125), +(135853, 'Thomas', 1987, 'F', 125), +(135854, 'Afton', 1987, 'F', 124), +(135855, 'Eryn', 1987, 'F', 124), +(135856, 'Kandi', 1987, 'F', 124), +(135857, 'Meggan', 1987, 'F', 124), +(135858, 'Shantelle', 1987, 'F', 124), +(135859, 'Elana', 1987, 'F', 123), +(135860, 'Gianna', 1987, 'F', 123), +(135861, 'Ilana', 1987, 'F', 123), +(135862, 'Jacquelynn', 1987, 'F', 123), +(135863, 'Kalie', 1987, 'F', 123), +(135864, 'Karrie', 1987, 'F', 123), +(135865, 'Laken', 1987, 'F', 123), +(135866, 'Tisha', 1987, 'F', 123), +(135867, 'Vannessa', 1987, 'F', 123), +(135868, 'Elsie', 1987, 'F', 122), +(135869, 'Erinn', 1987, 'F', 122), +(135870, 'Kady', 1987, 'F', 122), +(135871, 'Brigette', 1987, 'F', 121), +(135872, 'Rhea', 1987, 'F', 121), +(135873, 'Shaquana', 1987, 'F', 121), +(135874, 'Sharita', 1987, 'F', 121), +(135875, 'Susannah', 1987, 'F', 121), +(135876, 'Alishia', 1987, 'F', 120), +(135877, 'Consuelo', 1987, 'F', 120), +(135878, 'Phyllis', 1987, 'F', 120), +(135879, 'Stormy', 1987, 'F', 120), +(135880, 'Tanika', 1987, 'F', 120), +(135881, 'Tiarra', 1987, 'F', 120), +(135882, 'Vickie', 1987, 'F', 120), +(135883, 'Alena', 1987, 'F', 119), +(135884, 'Alysa', 1987, 'F', 119), +(135885, 'Brynn', 1987, 'F', 119), +(135886, 'Jayne', 1987, 'F', 119), +(135887, 'Josefina', 1987, 'F', 119), +(135888, 'Kayce', 1987, 'F', 119), +(135889, 'Mariam', 1987, 'F', 119), +(135890, 'Shakia', 1987, 'F', 119), +(135891, 'Sommer', 1987, 'F', 119), +(135892, 'Vanesa', 1987, 'F', 119), +(135893, 'Cassi', 1987, 'F', 118), +(135894, 'Janee', 1987, 'F', 118), +(135895, 'Kay', 1987, 'F', 118), +(135896, 'Melina', 1987, 'F', 118), +(135897, 'Timothy', 1987, 'F', 118), +(135898, 'Iliana', 1987, 'F', 117), +(135899, 'Ivory', 1987, 'F', 117), +(135900, 'Kenyatta', 1987, 'F', 117), +(135901, 'Sable', 1987, 'F', 117), +(135902, 'Shavonne', 1987, 'F', 117), +(135903, 'Tamera', 1987, 'F', 117), +(135904, 'Bethanie', 1987, 'F', 116), +(135905, 'Francisca', 1987, 'F', 116), +(135906, 'Greta', 1987, 'F', 116), +(135907, 'Jaleesa', 1987, 'F', 116), +(135908, 'Karie', 1987, 'F', 116), +(135909, 'Mildred', 1987, 'F', 116), +(135910, 'Aleisha', 1987, 'F', 115), +(135911, 'Anabel', 1987, 'F', 115), +(135912, 'Anastacia', 1987, 'F', 115), +(135913, 'Brittnay', 1987, 'F', 115), +(135914, 'Rae', 1987, 'F', 115), +(135915, 'Tammie', 1987, 'F', 115), +(135916, 'Chantell', 1987, 'F', 114), +(135917, 'Juliann', 1987, 'F', 114), +(135918, 'Keli', 1987, 'F', 114), +(135919, 'Nikia', 1987, 'F', 114), +(135920, 'Shay', 1987, 'F', 114), +(135921, 'Steven', 1987, 'F', 114), +(135922, 'Valentina', 1987, 'F', 114), +(135923, 'Britteny', 1987, 'F', 113), +(135924, 'Elyssa', 1987, 'F', 113), +(135925, 'Gracie', 1987, 'F', 113), +(135926, 'Haylee', 1987, 'F', 113), +(135927, 'Leighann', 1987, 'F', 113), +(135928, 'Lidia', 1987, 'F', 113), +(135929, 'Marybeth', 1987, 'F', 113), +(135930, 'Reina', 1987, 'F', 113), +(135931, 'Shara', 1987, 'F', 113), +(135932, 'Austin', 1987, 'F', 112), +(135933, 'Avery', 1987, 'F', 112), +(135934, 'Emerald', 1987, 'F', 112), +(135935, 'Eve', 1987, 'F', 112), +(135936, 'Jaimee', 1987, 'F', 112), +(135937, 'Jason', 1987, 'F', 112), +(135938, 'Juliette', 1987, 'F', 112), +(135939, 'Lila', 1987, 'F', 112), +(135940, 'Lynne', 1987, 'F', 112), +(135941, 'Salena', 1987, 'F', 112), +(135942, 'Sherika', 1987, 'F', 112), +(135943, 'Alesia', 1987, 'F', 111), +(135944, 'Kierra', 1987, 'F', 111), +(135945, 'Myesha', 1987, 'F', 111), +(135946, 'Petra', 1987, 'F', 111), +(135947, 'Renita', 1987, 'F', 111), +(135948, 'Richard', 1987, 'F', 111), +(135949, 'Shonda', 1987, 'F', 111), +(135950, 'Bryanna', 1987, 'F', 110), +(135951, 'Danika', 1987, 'F', 110), +(135952, 'Destinee', 1987, 'F', 110), +(135953, 'Shaniqua', 1987, 'F', 110), +(135954, 'Baby', 1987, 'F', 109), +(135955, 'Carlee', 1987, 'F', 109), +(135956, 'Charlie', 1987, 'F', 109), +(135957, 'Eugenia', 1987, 'F', 109), +(135958, 'Jenae', 1987, 'F', 109), +(135959, 'Jeremy', 1987, 'F', 109), +(135960, 'Kasi', 1987, 'F', 109), +(135961, 'Kymberly', 1987, 'F', 109), +(135962, 'Lois', 1987, 'F', 109), +(135963, 'Marianna', 1987, 'F', 109), +(135964, 'Nia', 1987, 'F', 109), +(135965, 'Phoebe', 1987, 'F', 109), +(135966, 'Shandi', 1987, 'F', 109), +(135967, 'Aleshia', 1987, 'F', 108), +(135968, 'Bree', 1987, 'F', 108), +(135969, 'Desire', 1987, 'F', 108), +(135970, 'Fiona', 1987, 'F', 108), +(135971, 'Jacquelin', 1987, 'F', 108), +(135972, 'Vera', 1987, 'F', 108), +(135973, 'Yuri', 1987, 'F', 108), +(135974, 'Alayna', 1987, 'F', 107), +(135975, 'Bria', 1987, 'F', 107), +(135976, 'Skylar', 1987, 'F', 107), +(135977, 'Tegan', 1987, 'F', 107), +(135978, 'Chanell', 1987, 'F', 106), +(135979, 'Dani', 1987, 'F', 106), +(135980, 'Keesha', 1987, 'F', 106), +(135981, 'Kenisha', 1987, 'F', 106), +(135982, 'Lacee', 1987, 'F', 106), +(135983, 'Monet', 1987, 'F', 106), +(135984, 'Shelia', 1987, 'F', 106), +(135985, 'Yasmine', 1987, 'F', 106), +(135986, 'Angelia', 1987, 'F', 105), +(135987, 'Florence', 1987, 'F', 105), +(135988, 'Haleigh', 1987, 'F', 105), +(135989, 'Kassi', 1987, 'F', 105), +(135990, 'Kera', 1987, 'F', 105), +(135991, 'Talisha', 1987, 'F', 105), +(135992, 'Allyssa', 1987, 'F', 104), +(135993, 'Bonita', 1987, 'F', 104), +(135994, 'Catalina', 1987, 'F', 104), +(135995, 'Dalia', 1987, 'F', 104), +(135996, 'Devan', 1987, 'F', 104), +(135997, 'Eleni', 1987, 'F', 104), +(135998, 'Elvia', 1987, 'F', 104), +(135999, 'Heaven', 1987, 'F', 104), +(136000, 'Katina', 1987, 'F', 104), +(136001, 'Shae', 1987, 'F', 104), +(136002, 'Taisha', 1987, 'F', 104), +(136003, 'Taneisha', 1987, 'F', 104), +(136004, 'Trinity', 1987, 'F', 104), +(136005, 'Alia', 1987, 'F', 103), +(136006, 'Blake', 1987, 'F', 103), +(136007, 'Kisha', 1987, 'F', 103), +(136008, 'Nicki', 1987, 'F', 103), +(136009, 'Starla', 1987, 'F', 103), +(136010, 'Tashina', 1987, 'F', 103), +(136011, 'Adam', 1987, 'F', 102), +(136012, 'Aubree', 1987, 'F', 102), +(136013, 'Ayesha', 1987, 'F', 102), +(136014, 'Daniell', 1987, 'F', 102), +(136015, 'Deja', 1987, 'F', 102), +(136016, 'Flor', 1987, 'F', 102), +(136017, 'Joi', 1987, 'F', 102), +(136018, 'Lindsy', 1987, 'F', 102), +(136019, 'Madalyn', 1987, 'F', 102), +(136020, 'Maren', 1987, 'F', 102), +(136021, 'Markie', 1987, 'F', 102), +(136022, 'Reba', 1987, 'F', 102), +(136023, 'Ronda', 1987, 'F', 102), +(136024, 'Roseanna', 1987, 'F', 102), +(136025, 'Addie', 1987, 'F', 101), +(136026, 'Adina', 1987, 'F', 101), +(136027, 'Dusty', 1987, 'F', 101), +(136028, 'Kenyetta', 1987, 'F', 101), +(136029, 'Latricia', 1987, 'F', 101), +(136030, 'Margie', 1987, 'F', 101), +(136031, 'Margot', 1987, 'F', 101), +(136032, 'May', 1987, 'F', 101), +(136033, 'Mindi', 1987, 'F', 101), +(136034, 'Rivka', 1987, 'F', 101), +(136035, 'Sue', 1987, 'F', 101), +(136036, 'Wendi', 1987, 'F', 101), +(136037, 'Adria', 1987, 'F', 100), +(136038, 'Amalia', 1987, 'F', 100), +(136039, 'Brooklyn', 1987, 'F', 100), +(136040, 'Crista', 1987, 'F', 100), +(136041, 'Drew', 1987, 'F', 100), +(136042, 'Kayleen', 1987, 'F', 100), +(136043, 'Malika', 1987, 'F', 100), +(136044, 'Raina', 1987, 'F', 100), +(136045, 'Shanon', 1987, 'F', 100), +(136046, 'Michael', 1987, 'M', 63631), +(136047, 'Christopher', 1987, 'M', 54471), +(136048, 'Matthew', 1987, 'M', 46471), +(136049, 'Joshua', 1987, 'M', 39991), +(136050, 'David', 1987, 'M', 36776), +(136051, 'Andrew', 1987, 'M', 36197), +(136052, 'Daniel', 1987, 'M', 35859), +(136053, 'James', 1987, 'M', 32628), +(136054, 'Justin', 1987, 'M', 31491), +(136055, 'Robert', 1987, 'M', 30232), +(136056, 'John', 1987, 'M', 29533), +(136057, 'Joseph', 1987, 'M', 28503), +(136058, 'Ryan', 1987, 'M', 28466), +(136059, 'Brandon', 1987, 'M', 24815), +(136060, 'William', 1987, 'M', 24197), +(136061, 'Nicholas', 1987, 'M', 23244), +(136062, 'Anthony', 1987, 'M', 23112), +(136063, 'Jonathan', 1987, 'M', 23097), +(136064, 'Kevin', 1987, 'M', 20406), +(136065, 'Brian', 1987, 'M', 20350), +(136066, 'Eric', 1987, 'M', 20199), +(136067, 'Kyle', 1987, 'M', 19858), +(136068, 'Jason', 1987, 'M', 19337), +(136069, 'Thomas', 1987, 'M', 18120), +(136070, 'Steven', 1987, 'M', 17756), +(136071, 'Timothy', 1987, 'M', 17388), +(136072, 'Adam', 1987, 'M', 16912), +(136073, 'Benjamin', 1987, 'M', 14876), +(136074, 'Jeremy', 1987, 'M', 14470), +(136075, 'Richard', 1987, 'M', 14392), +(136076, 'Jacob', 1987, 'M', 14316), +(136077, 'Jeffrey', 1987, 'M', 13477), +(136078, 'Zachary', 1987, 'M', 13198), +(136079, 'Aaron', 1987, 'M', 12677), +(136080, 'Charles', 1987, 'M', 12164), +(136081, 'Mark', 1987, 'M', 11988), +(136082, 'Alexander', 1987, 'M', 11824), +(136083, 'Stephen', 1987, 'M', 11545), +(136084, 'Tyler', 1987, 'M', 11530), +(136085, 'Sean', 1987, 'M', 11450), +(136086, 'Patrick', 1987, 'M', 11137), +(136087, 'Travis', 1987, 'M', 10394), +(136088, 'Scott', 1987, 'M', 10190), +(136089, 'Dustin', 1987, 'M', 10099), +(136090, 'Nathan', 1987, 'M', 9906), +(136091, 'Paul', 1987, 'M', 9696), +(136092, 'Gregory', 1987, 'M', 9127), +(136093, 'Jose', 1987, 'M', 8724), +(136094, 'Cody', 1987, 'M', 8668), +(136095, 'Samuel', 1987, 'M', 8572), +(136096, 'Bryan', 1987, 'M', 8555), +(136097, 'Jordan', 1987, 'M', 8407), +(136098, 'Kenneth', 1987, 'M', 8350), +(136099, 'Derek', 1987, 'M', 8245), +(136100, 'Jesse', 1987, 'M', 7977), +(136101, 'Bradley', 1987, 'M', 6915), +(136102, 'Corey', 1987, 'M', 6442), +(136103, 'Jared', 1987, 'M', 6203), +(136104, 'Shawn', 1987, 'M', 6203), +(136105, 'Alex', 1987, 'M', 6040), +(136106, 'Edward', 1987, 'M', 5901), +(136107, 'Cory', 1987, 'M', 5848), +(136108, 'Chad', 1987, 'M', 5624), +(136109, 'Peter', 1987, 'M', 5540), +(136110, 'Shane', 1987, 'M', 5300), +(136111, 'Juan', 1987, 'M', 4973), +(136112, 'Marcus', 1987, 'M', 4944), +(136113, 'Phillip', 1987, 'M', 4810), +(136114, 'Keith', 1987, 'M', 4780), +(136115, 'Donald', 1987, 'M', 4499), +(136116, 'Brett', 1987, 'M', 4431), +(136117, 'Antonio', 1987, 'M', 4419), +(136118, 'Ronald', 1987, 'M', 4151), +(136119, 'Carlos', 1987, 'M', 4147), +(136120, 'Joel', 1987, 'M', 4135), +(136121, 'Austin', 1987, 'M', 4088), +(136122, 'George', 1987, 'M', 4086), +(136123, 'Nathaniel', 1987, 'M', 4046), +(136124, 'Raymond', 1987, 'M', 3994), +(136125, 'Casey', 1987, 'M', 3926), +(136126, 'Ian', 1987, 'M', 3920), +(136127, 'Luis', 1987, 'M', 3913), +(136128, 'Evan', 1987, 'M', 3867), +(136129, 'Philip', 1987, 'M', 3838), +(136130, 'Douglas', 1987, 'M', 3802), +(136131, 'Derrick', 1987, 'M', 3532), +(136132, 'Gary', 1987, 'M', 3484), +(136133, 'Craig', 1987, 'M', 3362), +(136134, 'Seth', 1987, 'M', 3337), +(136135, 'Christian', 1987, 'M', 3322), +(136136, 'Victor', 1987, 'M', 3302), +(136137, 'Wesley', 1987, 'M', 3244), +(136138, 'Trevor', 1987, 'M', 3233), +(136139, 'Erik', 1987, 'M', 3232), +(136140, 'Vincent', 1987, 'M', 3170), +(136141, 'Cameron', 1987, 'M', 3156), +(136142, 'Frank', 1987, 'M', 3122), +(136143, 'Devin', 1987, 'M', 3077), +(136144, 'Gabriel', 1987, 'M', 3075), +(136145, 'Curtis', 1987, 'M', 2907), +(136146, 'Mitchell', 1987, 'M', 2869), +(136147, 'Adrian', 1987, 'M', 2845), +(136148, 'Brent', 1987, 'M', 2834), +(136149, 'Randy', 1987, 'M', 2789), +(136150, 'Blake', 1987, 'M', 2787), +(136151, 'Jesus', 1987, 'M', 2786), +(136152, 'Dennis', 1987, 'M', 2753), +(136153, 'Mario', 1987, 'M', 2736), +(136154, 'Jeffery', 1987, 'M', 2643), +(136155, 'Miguel', 1987, 'M', 2636), +(136156, 'Luke', 1987, 'M', 2588), +(136157, 'Alan', 1987, 'M', 2585), +(136158, 'Garrett', 1987, 'M', 2583), +(136159, 'Larry', 1987, 'M', 2501), +(136160, 'Caleb', 1987, 'M', 2500), +(136161, 'Johnathan', 1987, 'M', 2478), +(136162, 'Taylor', 1987, 'M', 2430), +(136163, 'Martin', 1987, 'M', 2400), +(136164, 'Russell', 1987, 'M', 2380), +(136165, 'Todd', 1987, 'M', 2353), +(136166, 'Lucas', 1987, 'M', 2326), +(136167, 'Troy', 1987, 'M', 2294), +(136168, 'Tony', 1987, 'M', 2290), +(136169, 'Spencer', 1987, 'M', 2248), +(136170, 'Jerry', 1987, 'M', 2234), +(136171, 'Carl', 1987, 'M', 2220), +(136172, 'Johnny', 1987, 'M', 2199), +(136173, 'Allen', 1987, 'M', 2170), +(136174, 'Jorge', 1987, 'M', 2170), +(136175, 'Jeremiah', 1987, 'M', 2135), +(136176, 'Ricardo', 1987, 'M', 2121), +(136177, 'Jonathon', 1987, 'M', 2116), +(136178, 'Terry', 1987, 'M', 2101), +(136179, 'Colin', 1987, 'M', 2097), +(136180, 'Francisco', 1987, 'M', 2096), +(136181, 'Andre', 1987, 'M', 2091), +(136182, 'Henry', 1987, 'M', 2086), +(136183, 'Manuel', 1987, 'M', 2085), +(136184, 'Chase', 1987, 'M', 2065), +(136185, 'Mathew', 1987, 'M', 2045), +(136186, 'Dylan', 1987, 'M', 1996), +(136187, 'Lance', 1987, 'M', 1992), +(136188, 'Marc', 1987, 'M', 1969), +(136189, 'Logan', 1987, 'M', 1947), +(136190, 'Kristopher', 1987, 'M', 1937), +(136191, 'Lawrence', 1987, 'M', 1896), +(136192, 'Bobby', 1987, 'M', 1885), +(136193, 'Ricky', 1987, 'M', 1853), +(136194, 'Danny', 1987, 'M', 1845), +(136195, 'Randall', 1987, 'M', 1833), +(136196, 'Shaun', 1987, 'M', 1829), +(136197, 'Isaac', 1987, 'M', 1827), +(136198, 'Clayton', 1987, 'M', 1812), +(136199, 'Lee', 1987, 'M', 1812), +(136200, 'Jimmy', 1987, 'M', 1810), +(136201, 'Brendan', 1987, 'M', 1805), +(136202, 'Calvin', 1987, 'M', 1787), +(136203, 'Micheal', 1987, 'M', 1766), +(136204, 'Albert', 1987, 'M', 1765), +(136205, 'Drew', 1987, 'M', 1757), +(136206, 'Louis', 1987, 'M', 1683), +(136207, 'Ross', 1987, 'M', 1664), +(136208, 'Oscar', 1987, 'M', 1659), +(136209, 'Angel', 1987, 'M', 1655), +(136210, 'Jack', 1987, 'M', 1647), +(136211, 'Jake', 1987, 'M', 1635), +(136212, 'Roberto', 1987, 'M', 1625), +(136213, 'Billy', 1987, 'M', 1622), +(136214, 'Edgar', 1987, 'M', 1599), +(136215, 'Darren', 1987, 'M', 1598), +(136216, 'Rodney', 1987, 'M', 1593), +(136217, 'Hector', 1987, 'M', 1589), +(136218, 'Alejandro', 1987, 'M', 1583), +(136219, 'Walter', 1987, 'M', 1574), +(136220, 'Grant', 1987, 'M', 1562), +(136221, 'Roger', 1987, 'M', 1558), +(136222, 'Arthur', 1987, 'M', 1556), +(136223, 'Jamie', 1987, 'M', 1541), +(136224, 'Javier', 1987, 'M', 1528), +(136225, 'Ruben', 1987, 'M', 1526), +(136226, 'Jon', 1987, 'M', 1515), +(136227, 'Bryant', 1987, 'M', 1496), +(136228, 'Joe', 1987, 'M', 1488), +(136229, 'Julian', 1987, 'M', 1488), +(136230, 'Jay', 1987, 'M', 1486), +(136231, 'Willie', 1987, 'M', 1477), +(136232, 'Maurice', 1987, 'M', 1470), +(136233, 'Max', 1987, 'M', 1447), +(136234, 'Sergio', 1987, 'M', 1444), +(136235, 'Gerald', 1987, 'M', 1441), +(136236, 'Edwin', 1987, 'M', 1404), +(136237, 'Emmanuel', 1987, 'M', 1401), +(136238, 'Levi', 1987, 'M', 1393), +(136239, 'Clinton', 1987, 'M', 1360), +(136240, 'Bryce', 1987, 'M', 1355), +(136241, 'Reginald', 1987, 'M', 1336), +(136242, 'Dominic', 1987, 'M', 1334), +(136243, 'Bruce', 1987, 'M', 1303), +(136244, 'Geoffrey', 1987, 'M', 1302), +(136245, 'Wayne', 1987, 'M', 1298), +(136246, 'Omar', 1987, 'M', 1286), +(136247, 'Preston', 1987, 'M', 1280), +(136248, 'Roy', 1987, 'M', 1258), +(136249, 'Pedro', 1987, 'M', 1256), +(136250, 'Darrell', 1987, 'M', 1231), +(136251, 'Theodore', 1987, 'M', 1217), +(136252, 'Rafael', 1987, 'M', 1215), +(136253, 'Fernando', 1987, 'M', 1203), +(136254, 'Devon', 1987, 'M', 1196), +(136255, 'Jaime', 1987, 'M', 1183), +(136256, 'Jerome', 1987, 'M', 1180), +(136257, 'Raul', 1987, 'M', 1180), +(136258, 'Frederick', 1987, 'M', 1170), +(136259, 'Jessie', 1987, 'M', 1162), +(136260, 'Tyrone', 1987, 'M', 1150), +(136261, 'Terrance', 1987, 'M', 1135), +(136262, 'Ivan', 1987, 'M', 1129), +(136263, 'Andres', 1987, 'M', 1104), +(136264, 'Eddie', 1987, 'M', 1094), +(136265, 'Marvin', 1987, 'M', 1078), +(136266, 'Neil', 1987, 'M', 1078), +(136267, 'Eduardo', 1987, 'M', 1077), +(136268, 'Darryl', 1987, 'M', 1076), +(136269, 'Micah', 1987, 'M', 1065), +(136270, 'Armando', 1987, 'M', 1050), +(136271, 'Terrence', 1987, 'M', 1044), +(136272, 'Ronnie', 1987, 'M', 1040), +(136273, 'Brad', 1987, 'M', 1025), +(136274, 'Kurt', 1987, 'M', 1023), +(136275, 'Nicolas', 1987, 'M', 1018), +(136276, 'Maxwell', 1987, 'M', 1014), +(136277, 'Julio', 1987, 'M', 1009), +(136278, 'Cole', 1987, 'M', 1003), +(136279, 'Steve', 1987, 'M', 1002), +(136280, 'Ramon', 1987, 'M', 1001), +(136281, 'Noah', 1987, 'M', 993), +(136282, 'Jamal', 1987, 'M', 988), +(136283, 'Tommy', 1987, 'M', 988), +(136284, 'Glenn', 1987, 'M', 986), +(136285, 'Alberto', 1987, 'M', 984), +(136286, 'Xavier', 1987, 'M', 970), +(136287, 'Leonard', 1987, 'M', 966), +(136288, 'Marco', 1987, 'M', 956), +(136289, 'Ernest', 1987, 'M', 947), +(136290, 'Francis', 1987, 'M', 946), +(136291, 'Tyson', 1987, 'M', 935), +(136292, 'Tristan', 1987, 'M', 931), +(136293, 'Dale', 1987, 'M', 930), +(136294, 'Byron', 1987, 'M', 929), +(136295, 'Erick', 1987, 'M', 917), +(136296, 'Branden', 1987, 'M', 914), +(136297, 'Abraham', 1987, 'M', 906), +(136298, 'Darius', 1987, 'M', 902), +(136299, 'Eugene', 1987, 'M', 896), +(136300, 'Orlando', 1987, 'M', 876), +(136301, 'Brady', 1987, 'M', 875), +(136302, 'Colby', 1987, 'M', 870), +(136303, 'Terrell', 1987, 'M', 868), +(136304, 'Jermaine', 1987, 'M', 860), +(136305, 'Karl', 1987, 'M', 853), +(136306, 'Cesar', 1987, 'M', 847), +(136307, 'Miles', 1987, 'M', 835), +(136308, 'Jarrod', 1987, 'M', 828), +(136309, 'Melvin', 1987, 'M', 824), +(136310, 'Dean', 1987, 'M', 820), +(136311, 'Isaiah', 1987, 'M', 820), +(136312, 'Stanley', 1987, 'M', 818), +(136313, 'Mason', 1987, 'M', 815), +(136314, 'Franklin', 1987, 'M', 808), +(136315, 'Andy', 1987, 'M', 807), +(136316, 'Hunter', 1987, 'M', 804), +(136317, 'Lorenzo', 1987, 'M', 804), +(136318, 'Dwayne', 1987, 'M', 802), +(136319, 'Harold', 1987, 'M', 801), +(136320, 'Antoine', 1987, 'M', 800), +(136321, 'Collin', 1987, 'M', 798), +(136322, 'Barry', 1987, 'M', 790), +(136323, 'Nickolas', 1987, 'M', 788), +(136324, 'Johnathon', 1987, 'M', 787), +(136325, 'Kelly', 1987, 'M', 786), +(136326, 'Arturo', 1987, 'M', 775), +(136327, 'Ray', 1987, 'M', 769), +(136328, 'Morgan', 1987, 'M', 768), +(136329, 'Courtney', 1987, 'M', 758), +(136330, 'Dane', 1987, 'M', 756), +(136331, 'Clifford', 1987, 'M', 754), +(136332, 'Demetrius', 1987, 'M', 747), +(136333, 'Elijah', 1987, 'M', 747), +(136334, 'Kelvin', 1987, 'M', 746), +(136335, 'Gilbert', 1987, 'M', 738), +(136336, 'Alfredo', 1987, 'M', 734), +(136337, 'Brock', 1987, 'M', 733), +(136338, 'Wade', 1987, 'M', 731), +(136339, 'Alvin', 1987, 'M', 729), +(136340, 'Enrique', 1987, 'M', 729), +(136341, 'Marshall', 1987, 'M', 726), +(136342, 'Ralph', 1987, 'M', 724), +(136343, 'Kirk', 1987, 'M', 723), +(136344, 'Joey', 1987, 'M', 722), +(136345, 'Tanner', 1987, 'M', 720), +(136346, 'Warren', 1987, 'M', 714), +(136347, 'Nelson', 1987, 'M', 710), +(136348, 'Harry', 1987, 'M', 709), +(136349, 'Rene', 1987, 'M', 706), +(136350, 'Trent', 1987, 'M', 706), +(136351, 'Marcos', 1987, 'M', 705), +(136352, 'Dillon', 1987, 'M', 701), +(136353, 'Quentin', 1987, 'M', 700), +(136354, 'Darnell', 1987, 'M', 686), +(136355, 'Gerardo', 1987, 'M', 686), +(136356, 'Zachery', 1987, 'M', 686), +(136357, 'Dominique', 1987, 'M', 684), +(136358, 'Alfred', 1987, 'M', 680), +(136359, 'Daryl', 1987, 'M', 679), +(136360, 'Cedric', 1987, 'M', 676), +(136361, 'Trenton', 1987, 'M', 673), +(136362, 'Dexter', 1987, 'M', 665), +(136363, 'Leon', 1987, 'M', 662), +(136364, 'Stuart', 1987, 'M', 659), +(136365, 'Landon', 1987, 'M', 656), +(136366, 'Salvador', 1987, 'M', 655), +(136367, 'Ethan', 1987, 'M', 653), +(136368, 'Kendrick', 1987, 'M', 640), +(136369, 'Malcolm', 1987, 'M', 633), +(136370, 'Clarence', 1987, 'M', 631), +(136371, 'Donovan', 1987, 'M', 630), +(136372, 'Gavin', 1987, 'M', 629), +(136373, 'Gustavo', 1987, 'M', 629), +(136374, 'Angelo', 1987, 'M', 626), +(136375, 'Howard', 1987, 'M', 625), +(136376, 'Ernesto', 1987, 'M', 624), +(136377, 'Earl', 1987, 'M', 620), +(136378, 'Israel', 1987, 'M', 614), +(136379, 'Kurtis', 1987, 'M', 612), +(136380, 'Lamar', 1987, 'M', 611), +(136381, 'Rashad', 1987, 'M', 608), +(136382, 'Deandre', 1987, 'M', 602), +(136383, 'Roderick', 1987, 'M', 596), +(136384, 'Desmond', 1987, 'M', 594), +(136385, 'Bernard', 1987, 'M', 593), +(136386, 'Harrison', 1987, 'M', 592), +(136387, 'Connor', 1987, 'M', 580), +(136388, 'Damien', 1987, 'M', 579), +(136389, 'Heath', 1987, 'M', 576), +(136390, 'Simon', 1987, 'M', 575), +(136391, 'Lewis', 1987, 'M', 571), +(136392, 'Stephan', 1987, 'M', 566), +(136393, 'Dallas', 1987, 'M', 562), +(136394, 'Rudy', 1987, 'M', 559), +(136395, 'Emanuel', 1987, 'M', 555), +(136396, 'Clifton', 1987, 'M', 552), +(136397, 'Felix', 1987, 'M', 552), +(136398, 'Marquis', 1987, 'M', 550), +(136399, 'Dwight', 1987, 'M', 549), +(136400, 'Jarrett', 1987, 'M', 548), +(136401, 'Eli', 1987, 'M', 547), +(136402, 'Josue', 1987, 'M', 545), +(136403, 'Chance', 1987, 'M', 544), +(136404, 'Clint', 1987, 'M', 542), +(136405, 'Kendall', 1987, 'M', 540), +(136406, 'Kenny', 1987, 'M', 539), +(136407, 'Allan', 1987, 'M', 538), +(136408, 'Bret', 1987, 'M', 538), +(136409, 'Zachariah', 1987, 'M', 538), +(136410, 'Damian', 1987, 'M', 537), +(136411, 'Charlie', 1987, 'M', 533), +(136412, 'Damon', 1987, 'M', 533), +(136413, 'Norman', 1987, 'M', 525), +(136414, 'Tyrell', 1987, 'M', 525), +(136415, 'Diego', 1987, 'M', 523), +(136416, 'Kory', 1987, 'M', 518), +(136417, 'Shannon', 1987, 'M', 518), +(136418, 'Elias', 1987, 'M', 516), +(136419, 'Quinton', 1987, 'M', 515), +(136420, 'Beau', 1987, 'M', 514), +(136421, 'Pablo', 1987, 'M', 514), +(136422, 'Stefan', 1987, 'M', 514), +(136423, 'Chris', 1987, 'M', 511), +(136424, 'Julius', 1987, 'M', 506), +(136425, 'Glen', 1987, 'M', 505), +(136426, 'Rodolfo', 1987, 'M', 504), +(136427, 'Brenton', 1987, 'M', 503), +(136428, 'Blaine', 1987, 'M', 502), +(136429, 'Josiah', 1987, 'M', 501), +(136430, 'Leroy', 1987, 'M', 499), +(136431, 'Jarvis', 1987, 'M', 497), +(136432, 'Jamar', 1987, 'M', 496), +(136433, 'Fabian', 1987, 'M', 494), +(136434, 'Gordon', 1987, 'M', 492), +(136435, 'Vernon', 1987, 'M', 488), +(136436, 'Derick', 1987, 'M', 484), +(136437, 'Perry', 1987, 'M', 482), +(136438, 'Nolan', 1987, 'M', 481), +(136439, 'Sam', 1987, 'M', 481), +(136440, 'Terence', 1987, 'M', 481), +(136441, 'Jarred', 1987, 'M', 480), +(136442, 'Graham', 1987, 'M', 477), +(136443, 'Alexis', 1987, 'M', 476), +(136444, 'Riley', 1987, 'M', 476); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(136445, 'Dante', 1987, 'M', 473), +(136446, 'Pierre', 1987, 'M', 473), +(136447, 'Clay', 1987, 'M', 466), +(136448, 'Noel', 1987, 'M', 463), +(136449, 'Owen', 1987, 'M', 461), +(136450, 'Zackary', 1987, 'M', 461), +(136451, 'Abel', 1987, 'M', 457), +(136452, 'Oliver', 1987, 'M', 457), +(136453, 'Neal', 1987, 'M', 456), +(136454, 'Skyler', 1987, 'M', 454), +(136455, 'Leo', 1987, 'M', 453), +(136456, 'Trey', 1987, 'M', 451), +(136457, 'Don', 1987, 'M', 450), +(136458, 'Alec', 1987, 'M', 445), +(136459, 'Kent', 1987, 'M', 444), +(136460, 'Elliott', 1987, 'M', 443), +(136461, 'Bradford', 1987, 'M', 441), +(136462, 'Alfonso', 1987, 'M', 437), +(136463, 'Kody', 1987, 'M', 437), +(136464, 'Rick', 1987, 'M', 437), +(136465, 'Ismael', 1987, 'M', 434), +(136466, 'Dakota', 1987, 'M', 430), +(136467, 'Duane', 1987, 'M', 428), +(136468, 'Saul', 1987, 'M', 428), +(136469, 'Ben', 1987, 'M', 425), +(136470, 'Donte', 1987, 'M', 425), +(136471, 'Jayson', 1987, 'M', 425), +(136472, 'Dominick', 1987, 'M', 423), +(136473, 'Brennan', 1987, 'M', 422), +(136474, 'Dana', 1987, 'M', 419), +(136475, 'Lloyd', 1987, 'M', 419), +(136476, 'Elliot', 1987, 'M', 415), +(136477, 'Frankie', 1987, 'M', 415), +(136478, 'Marlon', 1987, 'M', 415), +(136479, 'Myles', 1987, 'M', 411), +(136480, 'Brendon', 1987, 'M', 410), +(136481, 'Ashley', 1987, 'M', 409), +(136482, 'Kerry', 1987, 'M', 409), +(136483, 'Rogelio', 1987, 'M', 408), +(136484, 'Rolando', 1987, 'M', 408), +(136485, 'Alonzo', 1987, 'M', 406), +(136486, 'Rickey', 1987, 'M', 406), +(136487, 'Roland', 1987, 'M', 406), +(136488, 'Dusty', 1987, 'M', 405), +(136489, 'Roman', 1987, 'M', 404), +(136490, 'Weston', 1987, 'M', 404), +(136491, 'Lonnie', 1987, 'M', 399), +(136492, 'Cornelius', 1987, 'M', 392), +(136493, 'Darin', 1987, 'M', 390), +(136494, 'Felipe', 1987, 'M', 390), +(136495, 'Rory', 1987, 'M', 390), +(136496, 'Guillermo', 1987, 'M', 388), +(136497, 'Darrin', 1987, 'M', 386), +(136498, 'Fredrick', 1987, 'M', 385), +(136499, 'Chadwick', 1987, 'M', 383), +(136500, 'Fred', 1987, 'M', 380), +(136501, 'Kasey', 1987, 'M', 380), +(136502, 'Forrest', 1987, 'M', 377), +(136503, 'Avery', 1987, 'M', 376), +(136504, 'Giovanni', 1987, 'M', 376), +(136505, 'Demarcus', 1987, 'M', 368), +(136506, 'Sheldon', 1987, 'M', 367), +(136507, 'Hugo', 1987, 'M', 365), +(136508, 'Jaron', 1987, 'M', 364), +(136509, 'Milton', 1987, 'M', 361), +(136510, 'Wyatt', 1987, 'M', 361), +(136511, 'Korey', 1987, 'M', 358), +(136512, 'Conor', 1987, 'M', 356), +(136513, 'Guy', 1987, 'M', 355), +(136514, 'Jordon', 1987, 'M', 355), +(136515, 'Gilberto', 1987, 'M', 354), +(136516, 'Sebastian', 1987, 'M', 354), +(136517, 'Antwan', 1987, 'M', 352), +(136518, 'Carlton', 1987, 'M', 352), +(136519, 'Salvatore', 1987, 'M', 352), +(136520, 'Herbert', 1987, 'M', 349), +(136521, 'Deangelo', 1987, 'M', 346), +(136522, 'Kristofer', 1987, 'M', 346), +(136523, 'Esteban', 1987, 'M', 343), +(136524, 'Jackson', 1987, 'M', 341), +(136525, 'Rusty', 1987, 'M', 341), +(136526, 'Cordero', 1987, 'M', 340), +(136527, 'Johnnie', 1987, 'M', 336), +(136528, 'Kaleb', 1987, 'M', 334), +(136529, 'Loren', 1987, 'M', 334), +(136530, 'Parker', 1987, 'M', 332), +(136531, 'Freddie', 1987, 'M', 330), +(136532, 'Jamel', 1987, 'M', 330), +(136533, 'Donnie', 1987, 'M', 329), +(136534, 'Reid', 1987, 'M', 329), +(136535, 'Floyd', 1987, 'M', 326), +(136536, 'Sterling', 1987, 'M', 326), +(136537, 'Ramiro', 1987, 'M', 325), +(136538, 'Zane', 1987, 'M', 325), +(136539, 'Colton', 1987, 'M', 322), +(136540, 'Gene', 1987, 'M', 322), +(136541, 'Sidney', 1987, 'M', 322), +(136542, 'Zackery', 1987, 'M', 322), +(136543, 'Leonardo', 1987, 'M', 319), +(136544, 'Moises', 1987, 'M', 318), +(136545, 'Chaz', 1987, 'M', 317), +(136546, 'Jimmie', 1987, 'M', 317), +(136547, 'Tracy', 1987, 'M', 317), +(136548, 'Rocky', 1987, 'M', 316), +(136549, 'Ty', 1987, 'M', 316), +(136550, 'Gerard', 1987, 'M', 313), +(136551, 'Tomas', 1987, 'M', 313), +(136552, 'Moses', 1987, 'M', 312), +(136553, 'Jerrod', 1987, 'M', 310), +(136554, 'Lionel', 1987, 'M', 310), +(136555, 'Brice', 1987, 'M', 309), +(136556, 'Mike', 1987, 'M', 308), +(136557, 'Ali', 1987, 'M', 306), +(136558, 'Nathanael', 1987, 'M', 306), +(136559, 'Dewayne', 1987, 'M', 304), +(136560, 'Jeff', 1987, 'M', 304), +(136561, 'Everett', 1987, 'M', 302), +(136562, 'Robin', 1987, 'M', 302), +(136563, 'Lamont', 1987, 'M', 299), +(136564, 'Clark', 1987, 'M', 298), +(136565, 'Coty', 1987, 'M', 298), +(136566, 'Ariel', 1987, 'M', 294), +(136567, 'Jameson', 1987, 'M', 294), +(136568, 'Kellen', 1987, 'M', 294), +(136569, 'Toby', 1987, 'M', 294), +(136570, 'Kareem', 1987, 'M', 292), +(136571, 'Reuben', 1987, 'M', 292), +(136572, 'Wilson', 1987, 'M', 292), +(136573, 'Jonah', 1987, 'M', 290), +(136574, 'Leslie', 1987, 'M', 290), +(136575, 'Freddy', 1987, 'M', 289), +(136576, 'Keenan', 1987, 'M', 289), +(136577, 'Emilio', 1987, 'M', 288), +(136578, 'Humberto', 1987, 'M', 288), +(136579, 'Stewart', 1987, 'M', 287), +(136580, 'Ashton', 1987, 'M', 286), +(136581, 'Braden', 1987, 'M', 286), +(136582, 'Brenden', 1987, 'M', 285), +(136583, 'Reynaldo', 1987, 'M', 285), +(136584, 'Efrain', 1987, 'M', 284), +(136585, 'Greg', 1987, 'M', 284), +(136586, 'Ahmad', 1987, 'M', 283), +(136587, 'Herman', 1987, 'M', 282), +(136588, 'Jean', 1987, 'M', 282), +(136589, 'Quincy', 1987, 'M', 282), +(136590, 'Ted', 1987, 'M', 282), +(136591, 'Addison', 1987, 'M', 281), +(136592, 'Demario', 1987, 'M', 279), +(136593, 'Lester', 1987, 'M', 277), +(136594, 'Nick', 1987, 'M', 274), +(136595, 'Quintin', 1987, 'M', 274), +(136596, 'Jarod', 1987, 'M', 273), +(136597, 'Davon', 1987, 'M', 270), +(136598, 'Arnold', 1987, 'M', 269), +(136599, 'Dion', 1987, 'M', 269), +(136600, 'Quinn', 1987, 'M', 269), +(136601, 'Bryon', 1987, 'M', 267), +(136602, 'Colt', 1987, 'M', 266), +(136603, 'Markus', 1987, 'M', 265), +(136604, 'Jamaal', 1987, 'M', 264), +(136605, 'Adan', 1987, 'M', 262), +(136606, 'Noe', 1987, 'M', 262), +(136607, 'Shea', 1987, 'M', 261), +(136608, 'Cordell', 1987, 'M', 257), +(136609, 'Bryson', 1987, 'M', 256), +(136610, 'Santiago', 1987, 'M', 256), +(136611, 'Alvaro', 1987, 'M', 255), +(136612, 'Lyle', 1987, 'M', 253), +(136613, 'Raphael', 1987, 'M', 253), +(136614, 'Garret', 1987, 'M', 252), +(136615, 'Chester', 1987, 'M', 251), +(136616, 'Dorian', 1987, 'M', 251), +(136617, 'Griffin', 1987, 'M', 251), +(136618, 'Jackie', 1987, 'M', 251), +(136619, 'Cecil', 1987, 'M', 250), +(136620, 'Davis', 1987, 'M', 250), +(136621, 'Jody', 1987, 'M', 249), +(136622, 'Carson', 1987, 'M', 248), +(136623, 'Sammy', 1987, 'M', 248), +(136624, 'Spenser', 1987, 'M', 248), +(136625, 'Randolph', 1987, 'M', 247), +(136626, 'Skylar', 1987, 'M', 245), +(136627, 'Jessica', 1987, 'M', 243), +(136628, 'Jim', 1987, 'M', 240), +(136629, 'Reed', 1987, 'M', 240), +(136630, 'Thaddeus', 1987, 'M', 240), +(136631, 'Deshawn', 1987, 'M', 239), +(136632, 'Joaquin', 1987, 'M', 239), +(136633, 'Guadalupe', 1987, 'M', 238), +(136634, 'Randal', 1987, 'M', 236), +(136635, 'Myron', 1987, 'M', 235), +(136636, 'Corbin', 1987, 'M', 234), +(136637, 'Mitchel', 1987, 'M', 234), +(136638, 'Josh', 1987, 'M', 233), +(136639, 'Marcel', 1987, 'M', 233), +(136640, 'Shayne', 1987, 'M', 233), +(136641, 'Will', 1987, 'M', 233), +(136642, 'Conrad', 1987, 'M', 232), +(136643, 'Vicente', 1987, 'M', 232), +(136644, 'Rex', 1987, 'M', 231), +(136645, 'Brooks', 1987, 'M', 229), +(136646, 'Dan', 1987, 'M', 228), +(136647, 'Jamison', 1987, 'M', 227), +(136648, 'Scotty', 1987, 'M', 227), +(136649, 'Solomon', 1987, 'M', 227), +(136650, 'Moshe', 1987, 'M', 226), +(136651, 'Sonny', 1987, 'M', 226), +(136652, 'Mackenzie', 1987, 'M', 223), +(136653, 'Winston', 1987, 'M', 222), +(136654, 'Aron', 1987, 'M', 220), +(136655, 'Donnell', 1987, 'M', 220), +(136656, 'Bradly', 1987, 'M', 219), +(136657, 'Mauricio', 1987, 'M', 219), +(136658, 'Mohammad', 1987, 'M', 219), +(136659, 'Cortez', 1987, 'M', 218), +(136660, 'Deon', 1987, 'M', 217), +(136661, 'Erich', 1987, 'M', 217), +(136662, 'Jace', 1987, 'M', 217), +(136663, 'Harvey', 1987, 'M', 216), +(136664, 'Jess', 1987, 'M', 216), +(136665, 'Nikolas', 1987, 'M', 216), +(136666, 'Anton', 1987, 'M', 215), +(136667, 'Clyde', 1987, 'M', 215), +(136668, 'Leland', 1987, 'M', 214), +(136669, 'Darrel', 1987, 'M', 213), +(136670, 'Amos', 1987, 'M', 212), +(136671, 'Carter', 1987, 'M', 212), +(136672, 'Vance', 1987, 'M', 212), +(136673, 'Wendell', 1987, 'M', 212), +(136674, 'Benny', 1987, 'M', 211), +(136675, 'Elvis', 1987, 'M', 211), +(136676, 'Garry', 1987, 'M', 211), +(136677, 'Lane', 1987, 'M', 210), +(136678, 'Claude', 1987, 'M', 209), +(136679, 'Nigel', 1987, 'M', 209), +(136680, 'Rigoberto', 1987, 'M', 209), +(136681, 'Ignacio', 1987, 'M', 208), +(136682, 'Westley', 1987, 'M', 208), +(136683, 'Jerrell', 1987, 'M', 207), +(136684, 'Tory', 1987, 'M', 207), +(136685, 'Isiah', 1987, 'M', 205), +(136686, 'Jasper', 1987, 'M', 204), +(136687, 'Leonel', 1987, 'M', 204), +(136688, 'Jonas', 1987, 'M', 203), +(136689, 'Barrett', 1987, 'M', 202), +(136690, 'Devan', 1987, 'M', 202), +(136691, 'Jovan', 1987, 'M', 201), +(136692, 'Aubrey', 1987, 'M', 199), +(136693, 'Dalton', 1987, 'M', 199), +(136694, 'Ezra', 1987, 'M', 199), +(136695, 'Hugh', 1987, 'M', 199), +(136696, 'Chandler', 1987, 'M', 198), +(136697, 'Derik', 1987, 'M', 198), +(136698, 'Sylvester', 1987, 'M', 198), +(136699, 'Amir', 1987, 'M', 197), +(136700, 'Royce', 1987, 'M', 196), +(136701, 'Otis', 1987, 'M', 194), +(136702, 'Rodrigo', 1987, 'M', 193), +(136703, 'Cristian', 1987, 'M', 192), +(136704, 'Erin', 1987, 'M', 192), +(136705, 'Alton', 1987, 'M', 191), +(136706, 'Lukas', 1987, 'M', 191), +(136707, 'Brandan', 1987, 'M', 190), +(136708, 'Edmund', 1987, 'M', 190), +(136709, 'Javon', 1987, 'M', 190), +(136710, 'Jerod', 1987, 'M', 190), +(136711, 'Agustin', 1987, 'M', 189), +(136712, 'Harley', 1987, 'M', 189), +(136713, 'Morris', 1987, 'M', 188), +(136714, 'Stephon', 1987, 'M', 188), +(136715, 'Keegan', 1987, 'M', 187), +(136716, 'Bo', 1987, 'M', 186), +(136717, 'Jeramy', 1987, 'M', 185), +(136718, 'Nathanial', 1987, 'M', 185), +(136719, 'Teddy', 1987, 'M', 185), +(136720, 'Wilfredo', 1987, 'M', 183), +(136721, 'Antwon', 1987, 'M', 182), +(136722, 'Arron', 1987, 'M', 182), +(136723, 'Bronson', 1987, 'M', 181), +(136724, 'Vaughn', 1987, 'M', 180), +(136725, 'Akeem', 1987, 'M', 178), +(136726, 'Cary', 1987, 'M', 177), +(136727, 'Robbie', 1987, 'M', 177), +(136728, 'Santos', 1987, 'M', 177), +(136729, 'Ira', 1987, 'M', 176), +(136730, 'Shelby', 1987, 'M', 176), +(136731, 'Tom', 1987, 'M', 176), +(136732, 'Rico', 1987, 'M', 175), +(136733, 'Nestor', 1987, 'M', 173), +(136734, 'Coleman', 1987, 'M', 172), +(136735, 'Jarrell', 1987, 'M', 172), +(136736, 'Marty', 1987, 'M', 172), +(136737, 'Paris', 1987, 'M', 172), +(136738, 'Pete', 1987, 'M', 172), +(136739, 'Sherman', 1987, 'M', 172), +(136740, 'Heriberto', 1987, 'M', 171), +(136741, 'Kristian', 1987, 'M', 171), +(136742, 'Darrius', 1987, 'M', 170), +(136743, 'Earnest', 1987, 'M', 170), +(136744, 'Houston', 1987, 'M', 170), +(136745, 'Rhett', 1987, 'M', 170), +(136746, 'Ulysses', 1987, 'M', 170), +(136747, 'Tyree', 1987, 'M', 169), +(136748, 'Willis', 1987, 'M', 169), +(136749, 'Cruz', 1987, 'M', 168), +(136750, 'Marques', 1987, 'M', 168), +(136751, 'Ron', 1987, 'M', 168), +(136752, 'Dereck', 1987, 'M', 167), +(136753, 'Mohammed', 1987, 'M', 167), +(136754, 'Adolfo', 1987, 'M', 166), +(136755, 'Maximilian', 1987, 'M', 166), +(136756, 'Josef', 1987, 'M', 165), +(136757, 'Hans', 1987, 'M', 164), +(136758, 'Octavio', 1987, 'M', 164), +(136759, 'Duncan', 1987, 'M', 163), +(136760, 'Grady', 1987, 'M', 163), +(136761, 'Cale', 1987, 'M', 162), +(136762, 'Ellis', 1987, 'M', 162), +(136763, 'Ezekiel', 1987, 'M', 162), +(136764, 'Galen', 1987, 'M', 162), +(136765, 'Ervin', 1987, 'M', 161), +(136766, 'Joesph', 1987, 'M', 161), +(136767, 'Kelsey', 1987, 'M', 161), +(136768, 'Bennett', 1987, 'M', 160), +(136769, 'Elmer', 1987, 'M', 160), +(136770, 'Kameron', 1987, 'M', 159), +(136771, 'Brant', 1987, 'M', 158), +(136772, 'Daron', 1987, 'M', 158), +(136773, 'Jamil', 1987, 'M', 158), +(136774, 'Issac', 1987, 'M', 157), +(136775, 'Blair', 1987, 'M', 156), +(136776, 'Rudolph', 1987, 'M', 156), +(136777, 'Luther', 1987, 'M', 155), +(136778, 'Ryne', 1987, 'M', 155), +(136779, 'Whitney', 1987, 'M', 155), +(136780, 'Daren', 1987, 'M', 154), +(136781, 'Malik', 1987, 'M', 154), +(136782, 'Grayson', 1987, 'M', 153), +(136783, 'Mickey', 1987, 'M', 153), +(136784, 'Aldo', 1987, 'M', 152), +(136785, 'Benito', 1987, 'M', 152), +(136786, 'Cortney', 1987, 'M', 152), +(136787, 'Cristopher', 1987, 'M', 152), +(136788, 'Jerad', 1987, 'M', 152), +(136789, 'Tyrel', 1987, 'M', 152), +(136790, 'Brody', 1987, 'M', 151), +(136791, 'Cyrus', 1987, 'M', 151), +(136792, 'Tobias', 1987, 'M', 151), +(136793, 'Roosevelt', 1987, 'M', 150), +(136794, 'Bennie', 1987, 'M', 149), +(136795, 'Damion', 1987, 'M', 149), +(136796, 'Jakob', 1987, 'M', 148), +(136797, 'Liam', 1987, 'M', 148), +(136798, 'Jerel', 1987, 'M', 147), +(136799, 'Kenton', 1987, 'M', 147), +(136800, 'Antione', 1987, 'M', 146), +(136801, 'Cullen', 1987, 'M', 146), +(136802, 'Gregg', 1987, 'M', 146), +(136803, 'Hassan', 1987, 'M', 146), +(136804, 'Jedidiah', 1987, 'M', 146), +(136805, 'Rocco', 1987, 'M', 146), +(136806, 'Jefferson', 1987, 'M', 145), +(136807, 'Antony', 1987, 'M', 144), +(136808, 'Justen', 1987, 'M', 144), +(136809, 'Stacy', 1987, 'M', 144), +(136810, 'Tommie', 1987, 'M', 144), +(136811, 'Torrey', 1987, 'M', 144), +(136812, 'Van', 1987, 'M', 144), +(136813, 'Wallace', 1987, 'M', 144), +(136814, 'Cornell', 1987, 'M', 143), +(136815, 'Irvin', 1987, 'M', 143), +(136816, 'Mychal', 1987, 'M', 143), +(136817, 'Dontae', 1987, 'M', 142), +(136818, 'Marquise', 1987, 'M', 142), +(136819, 'Virgil', 1987, 'M', 142), +(136820, 'Tucker', 1987, 'M', 141), +(136821, 'Carey', 1987, 'M', 140), +(136822, 'Cedrick', 1987, 'M', 140), +(136823, 'Jered', 1987, 'M', 140), +(136824, 'Baby', 1987, 'M', 139), +(136825, 'Brain', 1987, 'M', 139), +(136826, 'Domingo', 1987, 'M', 139), +(136827, 'Louie', 1987, 'M', 139), +(136828, 'Raymundo', 1987, 'M', 139), +(136829, 'Ahmed', 1987, 'M', 138), +(136830, 'Aric', 1987, 'M', 138), +(136831, 'Drake', 1987, 'M', 138), +(136832, 'Curt', 1987, 'M', 137), +(136833, 'Deron', 1987, 'M', 137), +(136834, 'Jacques', 1987, 'M', 137), +(136835, 'Marion', 1987, 'M', 137), +(136836, 'Timmy', 1987, 'M', 137), +(136837, 'Bill', 1987, 'M', 136), +(136838, 'Britton', 1987, 'M', 136), +(136839, 'Cooper', 1987, 'M', 136), +(136840, 'Derrell', 1987, 'M', 136), +(136841, 'Rashawn', 1987, 'M', 136), +(136842, 'Junior', 1987, 'M', 135), +(136843, 'Keaton', 1987, 'M', 135), +(136844, 'Matt', 1987, 'M', 135), +(136845, 'Mikel', 1987, 'M', 135), +(136846, 'Abram', 1987, 'M', 134), +(136847, 'Conner', 1987, 'M', 134), +(136848, 'Dave', 1987, 'M', 134), +(136849, 'Fidel', 1987, 'M', 134), +(136850, 'Jermey', 1987, 'M', 134), +(136851, 'Rodrick', 1987, 'M', 134), +(136852, 'Gregorio', 1987, 'M', 133), +(136853, 'Keon', 1987, 'M', 133), +(136854, 'Broderick', 1987, 'M', 132), +(136855, 'Deven', 1987, 'M', 132), +(136856, 'Shelton', 1987, 'M', 132), +(136857, 'Waylon', 1987, 'M', 132), +(136858, 'Jeremie', 1987, 'M', 131), +(136859, 'Jed', 1987, 'M', 130), +(136860, 'Reggie', 1987, 'M', 130), +(136861, 'Tylor', 1987, 'M', 130), +(136862, 'Tyron', 1987, 'M', 130), +(136863, 'Deonte', 1987, 'M', 129), +(136864, 'Estevan', 1987, 'M', 129), +(136865, 'Jairo', 1987, 'M', 129), +(136866, 'Jerald', 1987, 'M', 129), +(136867, 'Madison', 1987, 'M', 129), +(136868, 'Andreas', 1987, 'M', 128), +(136869, 'Dario', 1987, 'M', 128), +(136870, 'Mack', 1987, 'M', 128), +(136871, 'Robby', 1987, 'M', 128), +(136872, 'Justine', 1987, 'M', 127), +(136873, 'Titus', 1987, 'M', 127), +(136874, 'Asa', 1987, 'M', 126), +(136875, 'Gonzalo', 1987, 'M', 126), +(136876, 'Hayden', 1987, 'M', 126), +(136877, 'Ken', 1987, 'M', 126), +(136878, 'Kyler', 1987, 'M', 126), +(136879, 'Osvaldo', 1987, 'M', 126), +(136880, 'Johnpaul', 1987, 'M', 125), +(136881, 'Alphonso', 1987, 'M', 124), +(136882, 'Brandyn', 1987, 'M', 124), +(136883, 'Chauncey', 1987, 'M', 124), +(136884, 'Jaymes', 1987, 'M', 124), +(136885, 'Jeffry', 1987, 'M', 124), +(136886, 'Randell', 1987, 'M', 124), +(136887, 'Amanda', 1987, 'M', 123), +(136888, 'Bernardo', 1987, 'M', 123), +(136889, 'Lincoln', 1987, 'M', 123), +(136890, 'Torey', 1987, 'M', 123), +(136891, 'Dejuan', 1987, 'M', 122), +(136892, 'Donavan', 1987, 'M', 122), +(136893, 'Kiel', 1987, 'M', 122), +(136894, 'Prince', 1987, 'M', 122), +(136895, 'Silas', 1987, 'M', 121), +(136896, 'Cassidy', 1987, 'M', 120), +(136897, 'Efren', 1987, 'M', 120), +(136898, 'Jeremey', 1987, 'M', 120), +(136899, 'Kraig', 1987, 'M', 120), +(136900, 'Michel', 1987, 'M', 120), +(136901, 'Mohamed', 1987, 'M', 120), +(136902, 'Carlo', 1987, 'M', 119), +(136903, 'German', 1987, 'M', 119), +(136904, 'Kale', 1987, 'M', 119), +(136905, 'Stevie', 1987, 'M', 119), +(136906, 'Dandre', 1987, 'M', 117), +(136907, 'Jeromy', 1987, 'M', 117), +(136908, 'Kirby', 1987, 'M', 117), +(136909, 'Willard', 1987, 'M', 117), +(136910, 'Andrea', 1987, 'M', 116), +(136911, 'Buddy', 1987, 'M', 116), +(136912, 'Davin', 1987, 'M', 116), +(136913, 'Deric', 1987, 'M', 116), +(136914, 'Gino', 1987, 'M', 116), +(136915, 'Ari', 1987, 'M', 115), +(136916, 'August', 1987, 'M', 115), +(136917, 'Darwin', 1987, 'M', 115), +(136918, 'Laurence', 1987, 'M', 115), +(136919, 'Reece', 1987, 'M', 115), +(136920, 'Coy', 1987, 'M', 114), +(136921, 'Denny', 1987, 'M', 114), +(136922, 'Isidro', 1987, 'M', 114), +(136923, 'Chaim', 1987, 'M', 113), +(136924, 'Channing', 1987, 'M', 113), +(136925, 'Jennifer', 1987, 'M', 113), +(136926, 'Laron', 1987, 'M', 113), +(136927, 'Scot', 1987, 'M', 113), +(136928, 'Darrick', 1987, 'M', 112), +(136929, 'Jeramie', 1987, 'M', 112), +(136930, 'Keven', 1987, 'M', 112), +(136931, 'Kolby', 1987, 'M', 112), +(136932, 'Raheem', 1987, 'M', 112), +(136933, 'Ramsey', 1987, 'M', 112), +(136934, 'Stacey', 1987, 'M', 112), +(136935, 'Wilbert', 1987, 'M', 112), +(136936, 'Derrek', 1987, 'M', 111), +(136937, 'Francesco', 1987, 'M', 111), +(136938, 'Uriel', 1987, 'M', 111), +(136939, 'Jory', 1987, 'M', 110), +(136940, 'Muhammad', 1987, 'M', 110), +(136941, 'Sarah', 1987, 'M', 110), +(136942, 'Archie', 1987, 'M', 109), +(136943, 'Braxton', 1987, 'M', 109), +(136944, 'Danial', 1987, 'M', 109), +(136945, 'Demarco', 1987, 'M', 109), +(136946, 'Denver', 1987, 'M', 109), +(136947, 'Irving', 1987, 'M', 109), +(136948, 'Rickie', 1987, 'M', 109), +(136949, 'Cade', 1987, 'M', 108), +(136950, 'Hank', 1987, 'M', 108), +(136951, 'Lauren', 1987, 'M', 108), +(136952, 'Monte', 1987, 'M', 108), +(136953, 'Trever', 1987, 'M', 108), +(136954, 'Cordaro', 1987, 'M', 107), +(136955, 'Dashawn', 1987, 'M', 107), +(136956, 'Holden', 1987, 'M', 107), +(136957, 'Jessy', 1987, 'M', 107), +(136958, 'Ronny', 1987, 'M', 107), +(136959, 'Theron', 1987, 'M', 107), +(136960, 'Edmond', 1987, 'M', 106), +(136961, 'Elizabeth', 1987, 'M', 106), +(136962, 'Johathan', 1987, 'M', 106), +(136963, 'Kalen', 1987, 'M', 106), +(136964, 'Octavius', 1987, 'M', 106), +(136965, 'Shay', 1987, 'M', 106), +(136966, 'Stephanie', 1987, 'M', 106), +(136967, 'Dangelo', 1987, 'M', 105), +(136968, 'Donny', 1987, 'M', 105), +(136969, 'Federico', 1987, 'M', 105), +(136970, 'Martell', 1987, 'M', 105), +(136971, 'Scottie', 1987, 'M', 105), +(136972, 'Uriah', 1987, 'M', 105), +(136973, 'Christoper', 1987, 'M', 104), +(136974, 'Kai', 1987, 'M', 104), +(136975, 'Payton', 1987, 'M', 104), +(136976, 'Eliezer', 1987, 'M', 103), +(136977, 'Erwin', 1987, 'M', 103), +(136978, 'Tad', 1987, 'M', 103), +(136979, 'Eddy', 1987, 'M', 102), +(136980, 'Edgardo', 1987, 'M', 102), +(136981, 'Emmett', 1987, 'M', 102), +(136982, 'Garett', 1987, 'M', 102), +(136983, 'Jarad', 1987, 'M', 102), +(136984, 'Denis', 1987, 'M', 101), +(136985, 'Lazaro', 1987, 'M', 101), +(136986, 'Pierce', 1987, 'M', 101), +(136987, 'Jan', 1987, 'M', 100), +(136988, 'Kris', 1987, 'M', 100), +(136989, 'Lyndon', 1987, 'M', 100), +(136990, 'Marcelo', 1987, 'M', 100), +(136991, 'Marlin', 1987, 'M', 100), +(136992, 'Rashaad', 1987, 'M', 100), +(136993, 'Jessica', 1988, 'F', 51530), +(136994, 'Ashley', 1988, 'F', 49964), +(136995, 'Amanda', 1988, 'F', 39449), +(136996, 'Sarah', 1988, 'F', 28356), +(136997, 'Jennifer', 1988, 'F', 27885), +(136998, 'Brittany', 1988, 'F', 26815), +(136999, 'Stephanie', 1988, 'F', 22832), +(137000, 'Samantha', 1988, 'F', 20697), +(137001, 'Nicole', 1988, 'F', 20310), +(137002, 'Elizabeth', 1988, 'F', 20025), +(137003, 'Lauren', 1988, 'F', 19633), +(137004, 'Megan', 1988, 'F', 18564), +(137005, 'Tiffany', 1988, 'F', 18362), +(137006, 'Heather', 1988, 'F', 18029), +(137007, 'Amber', 1988, 'F', 16677), +(137008, 'Melissa', 1988, 'F', 16542), +(137009, 'Danielle', 1988, 'F', 16251), +(137010, 'Emily', 1988, 'F', 15863), +(137011, 'Rachel', 1988, 'F', 15343), +(137012, 'Kayla', 1988, 'F', 13429), +(137013, 'Michelle', 1988, 'F', 13327), +(137014, 'Christina', 1988, 'F', 12952), +(137015, 'Laura', 1988, 'F', 12113), +(137016, 'Courtney', 1988, 'F', 12043), +(137017, 'Kimberly', 1988, 'F', 11946), +(137018, 'Rebecca', 1988, 'F', 11870), +(137019, 'Katherine', 1988, 'F', 11142), +(137020, 'Crystal', 1988, 'F', 10100), +(137021, 'Amy', 1988, 'F', 10031), +(137022, 'Sara', 1988, 'F', 10010), +(137023, 'Erica', 1988, 'F', 9589), +(137024, 'Kelly', 1988, 'F', 8913), +(137025, 'Chelsea', 1988, 'F', 8881), +(137026, 'Mary', 1988, 'F', 8508), +(137027, 'Andrea', 1988, 'F', 8391), +(137028, 'Kristen', 1988, 'F', 8381), +(137029, 'Erin', 1988, 'F', 8262), +(137030, 'Angela', 1988, 'F', 7909), +(137031, 'Whitney', 1988, 'F', 7848), +(137032, 'Katie', 1988, 'F', 7759), +(137033, 'Vanessa', 1988, 'F', 7514), +(137034, 'Victoria', 1988, 'F', 7278), +(137035, 'Lisa', 1988, 'F', 7261), +(137036, 'Caitlin', 1988, 'F', 7241), +(137037, 'Jamie', 1988, 'F', 7182), +(137038, 'Allison', 1988, 'F', 7140), +(137039, 'Alyssa', 1988, 'F', 7140), +(137040, 'Lindsey', 1988, 'F', 6999), +(137041, 'Alexandra', 1988, 'F', 6966), +(137042, 'Alicia', 1988, 'F', 6697), +(137043, 'Christine', 1988, 'F', 6606), +(137044, 'Brittney', 1988, 'F', 6575), +(137045, 'Jasmine', 1988, 'F', 6441), +(137046, 'Anna', 1988, 'F', 6436), +(137047, 'Kathryn', 1988, 'F', 6339), +(137048, 'Shannon', 1988, 'F', 6254), +(137049, 'Lindsay', 1988, 'F', 6026), +(137050, 'Kristin', 1988, 'F', 6018), +(137051, 'Cassandra', 1988, 'F', 5723), +(137052, 'Maria', 1988, 'F', 5701), +(137053, 'Hannah', 1988, 'F', 5556), +(137054, 'Jacqueline', 1988, 'F', 5544), +(137055, 'Natalie', 1988, 'F', 5479), +(137056, 'Kelsey', 1988, 'F', 5448), +(137057, 'April', 1988, 'F', 4839), +(137058, 'Jenna', 1988, 'F', 4607), +(137059, 'Tara', 1988, 'F', 4607), +(137060, 'Kristina', 1988, 'F', 4575), +(137061, 'Catherine', 1988, 'F', 4505), +(137062, 'Monica', 1988, 'F', 4463), +(137063, 'Julie', 1988, 'F', 4460), +(137064, 'Holly', 1988, 'F', 4216), +(137065, 'Natasha', 1988, 'F', 4034), +(137066, 'Krystal', 1988, 'F', 4016), +(137067, 'Kathleen', 1988, 'F', 3928), +(137068, 'Erika', 1988, 'F', 3883), +(137069, 'Patricia', 1988, 'F', 3798), +(137070, 'Morgan', 1988, 'F', 3795), +(137071, 'Cynthia', 1988, 'F', 3783), +(137072, 'Kendra', 1988, 'F', 3761), +(137073, 'Meghan', 1988, 'F', 3607), +(137074, 'Leah', 1988, 'F', 3555), +(137075, 'Veronica', 1988, 'F', 3525), +(137076, 'Katelyn', 1988, 'F', 3509), +(137077, 'Diana', 1988, 'F', 3485), +(137078, 'Molly', 1988, 'F', 3460), +(137079, 'Brooke', 1988, 'F', 3412), +(137080, 'Julia', 1988, 'F', 3355), +(137081, 'Bethany', 1988, 'F', 3270), +(137082, 'Dana', 1988, 'F', 3191), +(137083, 'Brandi', 1988, 'F', 3171), +(137084, 'Casey', 1988, 'F', 3148), +(137085, 'Margaret', 1988, 'F', 3138), +(137086, 'Leslie', 1988, 'F', 3077), +(137087, 'Kara', 1988, 'F', 3039), +(137088, 'Brianna', 1988, 'F', 2962), +(137089, 'Alexis', 1988, 'F', 2901), +(137090, 'Kaitlin', 1988, 'F', 2842), +(137091, 'Rachael', 1988, 'F', 2830), +(137092, 'Melanie', 1988, 'F', 2828), +(137093, 'Marissa', 1988, 'F', 2809), +(137094, 'Taylor', 1988, 'F', 2795), +(137095, 'Valerie', 1988, 'F', 2767), +(137096, 'Jillian', 1988, 'F', 2746), +(137097, 'Felicia', 1988, 'F', 2701), +(137098, 'Kaitlyn', 1988, 'F', 2686), +(137099, 'Brandy', 1988, 'F', 2685), +(137100, 'Bianca', 1988, 'F', 2636), +(137101, 'Angelica', 1988, 'F', 2612), +(137102, 'Katrina', 1988, 'F', 2576), +(137103, 'Karen', 1988, 'F', 2566), +(137104, 'Krista', 1988, 'F', 2566), +(137105, 'Alison', 1988, 'F', 2539), +(137106, 'Nichole', 1988, 'F', 2498), +(137107, 'Jaclyn', 1988, 'F', 2496), +(137108, 'Sabrina', 1988, 'F', 2436), +(137109, 'Candace', 1988, 'F', 2418), +(137110, 'Abigail', 1988, 'F', 2372), +(137111, 'Stacey', 1988, 'F', 2370), +(137112, 'Mallory', 1988, 'F', 2365), +(137113, 'Nancy', 1988, 'F', 2343), +(137114, 'Caroline', 1988, 'F', 2322), +(137115, 'Brenda', 1988, 'F', 2283), +(137116, 'Alexandria', 1988, 'F', 2275), +(137117, 'Stacy', 1988, 'F', 2272), +(137118, 'Alisha', 1988, 'F', 2267), +(137119, 'Desiree', 1988, 'F', 2266), +(137120, 'Sandra', 1988, 'F', 2258), +(137121, 'Lacey', 1988, 'F', 2242), +(137122, 'Candice', 1988, 'F', 2224), +(137123, 'Carrie', 1988, 'F', 2205), +(137124, 'Joanna', 1988, 'F', 2203), +(137125, 'Ashlee', 1988, 'F', 2152), +(137126, 'Olivia', 1988, 'F', 2136), +(137127, 'Monique', 1988, 'F', 2130), +(137128, 'Jordan', 1988, 'F', 2128), +(137129, 'Gabrielle', 1988, 'F', 2095), +(137130, 'Britney', 1988, 'F', 2082), +(137131, 'Denise', 1988, 'F', 2065), +(137132, 'Susan', 1988, 'F', 2060), +(137133, 'Meagan', 1988, 'F', 2054), +(137134, 'Gina', 1988, 'F', 2026), +(137135, 'Haley', 1988, 'F', 2004), +(137136, 'Miranda', 1988, 'F', 1976), +(137137, 'Dominique', 1988, 'F', 1905), +(137138, 'Renee', 1988, 'F', 1889), +(137139, 'Sasha', 1988, 'F', 1885), +(137140, 'Chelsey', 1988, 'F', 1880), +(137141, 'Melinda', 1988, 'F', 1879), +(137142, 'Kelli', 1988, 'F', 1864), +(137143, 'Paige', 1988, 'F', 1860), +(137144, 'Meredith', 1988, 'F', 1852), +(137145, 'Anne', 1988, 'F', 1851), +(137146, 'Tabitha', 1988, 'F', 1848), +(137147, 'Linda', 1988, 'F', 1844), +(137148, 'Priscilla', 1988, 'F', 1812), +(137149, 'Latoya', 1988, 'F', 1809), +(137150, 'Carolyn', 1988, 'F', 1802), +(137151, 'Briana', 1988, 'F', 1801), +(137152, 'Emma', 1988, 'F', 1787), +(137153, 'Robin', 1988, 'F', 1765), +(137154, 'Heidi', 1988, 'F', 1746), +(137155, 'Deanna', 1988, 'F', 1738), +(137156, 'Ebony', 1988, 'F', 1725), +(137157, 'Grace', 1988, 'F', 1706), +(137158, 'Angel', 1988, 'F', 1704), +(137159, 'Colleen', 1988, 'F', 1703), +(137160, 'Rebekah', 1988, 'F', 1695), +(137161, 'Autumn', 1988, 'F', 1665), +(137162, 'Ana', 1988, 'F', 1659), +(137163, 'Theresa', 1988, 'F', 1657), +(137164, 'Teresa', 1988, 'F', 1633), +(137165, 'Tracy', 1988, 'F', 1632), +(137166, 'Tina', 1988, 'F', 1604), +(137167, 'Cassie', 1988, 'F', 1599), +(137168, 'Carly', 1988, 'F', 1596), +(137169, 'Justine', 1988, 'F', 1591), +(137170, 'Bridget', 1988, 'F', 1566), +(137171, 'Cindy', 1988, 'F', 1556), +(137172, 'Audrey', 1988, 'F', 1552), +(137173, 'Sierra', 1988, 'F', 1550), +(137174, 'Jacquelyn', 1988, 'F', 1535), +(137175, 'Tamara', 1988, 'F', 1529), +(137176, 'Pamela', 1988, 'F', 1510), +(137177, 'Tanya', 1988, 'F', 1503), +(137178, 'Barbara', 1988, 'F', 1502), +(137179, 'Kari', 1988, 'F', 1496), +(137180, 'Cristina', 1988, 'F', 1482), +(137181, 'Claire', 1988, 'F', 1446), +(137182, 'Adriana', 1988, 'F', 1445), +(137183, 'Marie', 1988, 'F', 1434), +(137184, 'Mayra', 1988, 'F', 1433), +(137185, 'Adrienne', 1988, 'F', 1426), +(137186, 'Misty', 1988, 'F', 1406), +(137187, 'Jenny', 1988, 'F', 1401), +(137188, 'Kristine', 1988, 'F', 1375), +(137189, 'Jill', 1988, 'F', 1333), +(137190, 'Ashleigh', 1988, 'F', 1314), +(137191, 'Savannah', 1988, 'F', 1312), +(137192, 'Tasha', 1988, 'F', 1306), +(137193, 'Kasey', 1988, 'F', 1297), +(137194, 'Wendy', 1988, 'F', 1295), +(137195, 'Virginia', 1988, 'F', 1291), +(137196, 'Karina', 1988, 'F', 1288), +(137197, 'Kristy', 1988, 'F', 1280), +(137198, 'Michele', 1988, 'F', 1272), +(137199, 'Claudia', 1988, 'F', 1267), +(137200, 'Cara', 1988, 'F', 1265), +(137201, 'Janelle', 1988, 'F', 1246), +(137202, 'Breanna', 1988, 'F', 1243), +(137203, 'Kristi', 1988, 'F', 1234), +(137204, 'Nina', 1988, 'F', 1226), +(137205, 'Kirsten', 1988, 'F', 1222), +(137206, 'Abby', 1988, 'F', 1221), +(137207, 'Yesenia', 1988, 'F', 1208), +(137208, 'Tiara', 1988, 'F', 1201), +(137209, 'Sharon', 1988, 'F', 1197), +(137210, 'Roxanne', 1988, 'F', 1190), +(137211, 'Ellen', 1988, 'F', 1187), +(137212, 'Janet', 1988, 'F', 1180), +(137213, 'Ann', 1988, 'F', 1171), +(137214, 'Caitlyn', 1988, 'F', 1171), +(137215, 'Lydia', 1988, 'F', 1170), +(137216, 'Carmen', 1988, 'F', 1166), +(137217, 'Daisy', 1988, 'F', 1166), +(137218, 'Sophia', 1988, 'F', 1163), +(137219, 'Jessie', 1988, 'F', 1160), +(137220, 'Raquel', 1988, 'F', 1156), +(137221, 'Stefanie', 1988, 'F', 1154), +(137222, 'Kate', 1988, 'F', 1150), +(137223, 'Martha', 1988, 'F', 1137), +(137224, 'Christy', 1988, 'F', 1130), +(137225, 'Amelia', 1988, 'F', 1128), +(137226, 'Kelley', 1988, 'F', 1125), +(137227, 'Evelyn', 1988, 'F', 1124), +(137228, 'Kellie', 1988, 'F', 1123), +(137229, 'Toni', 1988, 'F', 1118), +(137230, 'Jocelyn', 1988, 'F', 1102), +(137231, 'Shawna', 1988, 'F', 1102), +(137232, 'Elise', 1988, 'F', 1095), +(137233, 'Lori', 1988, 'F', 1089), +(137234, 'Aimee', 1988, 'F', 1088), +(137235, 'Carla', 1988, 'F', 1087), +(137236, 'Latasha', 1988, 'F', 1087), +(137237, 'Hillary', 1988, 'F', 1083), +(137238, 'Trisha', 1988, 'F', 1066), +(137239, 'Regina', 1988, 'F', 1064), +(137240, 'Dawn', 1988, 'F', 1063), +(137241, 'Marisa', 1988, 'F', 1061), +(137242, 'Deborah', 1988, 'F', 1057), +(137243, 'Donna', 1988, 'F', 1039), +(137244, 'Nikki', 1988, 'F', 1022), +(137245, 'Allyson', 1988, 'F', 1013), +(137246, 'Tonya', 1988, 'F', 1002), +(137247, 'Naomi', 1988, 'F', 1000), +(137248, 'Ruth', 1988, 'F', 996), +(137249, 'Gabriela', 1988, 'F', 992), +(137250, 'Summer', 1988, 'F', 986), +(137251, 'Robyn', 1988, 'F', 983), +(137252, 'Randi', 1988, 'F', 977), +(137253, 'Rosa', 1988, 'F', 976), +(137254, 'Hilary', 1988, 'F', 975), +(137255, 'Jeanette', 1988, 'F', 975), +(137256, 'Krystle', 1988, 'F', 962), +(137257, 'Cortney', 1988, 'F', 953), +(137258, 'Jaime', 1988, 'F', 950), +(137259, 'Shana', 1988, 'F', 945), +(137260, 'Bailey', 1988, 'F', 942), +(137261, 'Destiny', 1988, 'F', 941), +(137262, 'Shanice', 1988, 'F', 937), +(137263, 'Gloria', 1988, 'F', 935), +(137264, 'Christa', 1988, 'F', 925), +(137265, 'Madeline', 1988, 'F', 918), +(137266, 'Alexa', 1988, 'F', 917), +(137267, 'Sydney', 1988, 'F', 914), +(137268, 'Esther', 1988, 'F', 911), +(137269, 'Ariel', 1988, 'F', 910), +(137270, 'Rachelle', 1988, 'F', 906), +(137271, 'Suzanne', 1988, 'F', 892), +(137272, 'Cheryl', 1988, 'F', 888), +(137273, 'Maggie', 1988, 'F', 888), +(137274, 'Jasmin', 1988, 'F', 886), +(137275, 'Melody', 1988, 'F', 883), +(137276, 'Shelby', 1988, 'F', 881), +(137277, 'Brittani', 1988, 'F', 870), +(137278, 'Rose', 1988, 'F', 866), +(137279, 'Karla', 1988, 'F', 863), +(137280, 'Beth', 1988, 'F', 862), +(137281, 'Charlotte', 1988, 'F', 857), +(137282, 'Sheena', 1988, 'F', 855), +(137283, 'Jade', 1988, 'F', 854), +(137284, 'Sylvia', 1988, 'F', 854), +(137285, 'Aubrey', 1988, 'F', 837), +(137286, 'Kylie', 1988, 'F', 837), +(137287, 'Carissa', 1988, 'F', 836), +(137288, 'Joy', 1988, 'F', 836), +(137289, 'Keri', 1988, 'F', 832), +(137290, 'Bonnie', 1988, 'F', 829), +(137291, 'Hope', 1988, 'F', 823), +(137292, 'Madison', 1988, 'F', 822), +(137293, 'Alice', 1988, 'F', 821), +(137294, 'Mindy', 1988, 'F', 821), +(137295, 'Diane', 1988, 'F', 818), +(137296, 'Paula', 1988, 'F', 811), +(137297, 'Angelina', 1988, 'F', 810), +(137298, 'Chelsie', 1988, 'F', 810), +(137299, 'Camille', 1988, 'F', 806), +(137300, 'Frances', 1988, 'F', 806), +(137301, 'Hayley', 1988, 'F', 799), +(137302, 'Simone', 1988, 'F', 798), +(137303, 'Yolanda', 1988, 'F', 798), +(137304, 'Mandy', 1988, 'F', 796), +(137305, 'Kaylee', 1988, 'F', 793), +(137306, 'Elyse', 1988, 'F', 790), +(137307, 'Yvette', 1988, 'F', 790), +(137308, 'Anastasia', 1988, 'F', 782), +(137309, 'Sonia', 1988, 'F', 782), +(137310, 'Alissa', 1988, 'F', 780), +(137311, 'Brianne', 1988, 'F', 779), +(137312, 'Clarissa', 1988, 'F', 776), +(137313, 'Helen', 1988, 'F', 775), +(137314, 'Mackenzie', 1988, 'F', 772), +(137315, 'Staci', 1988, 'F', 772), +(137316, 'Shaina', 1988, 'F', 771), +(137317, 'Tatiana', 1988, 'F', 768), +(137318, 'Christie', 1988, 'F', 761), +(137319, 'Eva', 1988, 'F', 754), +(137320, 'Katharine', 1988, 'F', 754), +(137321, 'Lacy', 1988, 'F', 749), +(137322, 'Antoinette', 1988, 'F', 745), +(137323, 'Kristie', 1988, 'F', 742), +(137324, 'Johanna', 1988, 'F', 741), +(137325, 'Carol', 1988, 'F', 740), +(137326, 'Nadia', 1988, 'F', 740), +(137327, 'Miriam', 1988, 'F', 733), +(137328, 'Kerri', 1988, 'F', 731), +(137329, 'Rochelle', 1988, 'F', 728), +(137330, 'Cecilia', 1988, 'F', 726), +(137331, 'Cierra', 1988, 'F', 725), +(137332, 'Annie', 1988, 'F', 721), +(137333, 'Jane', 1988, 'F', 719), +(137334, 'Stacie', 1988, 'F', 719), +(137335, 'Tammy', 1988, 'F', 719), +(137336, 'Jaleesa', 1988, 'F', 718), +(137337, 'Anita', 1988, 'F', 715), +(137338, 'Elisabeth', 1988, 'F', 714), +(137339, 'Leigh', 1988, 'F', 714), +(137340, 'Jodi', 1988, 'F', 713), +(137341, 'Sheila', 1988, 'F', 710), +(137342, 'Charlene', 1988, 'F', 707), +(137343, 'Chasity', 1988, 'F', 706), +(137344, 'Elaine', 1988, 'F', 706), +(137345, 'Tracey', 1988, 'F', 704), +(137346, 'Ciara', 1988, 'F', 703), +(137347, 'Alejandra', 1988, 'F', 700), +(137348, 'Ericka', 1988, 'F', 697), +(137349, 'Tabatha', 1988, 'F', 693), +(137350, 'Shauna', 1988, 'F', 689), +(137351, 'Leticia', 1988, 'F', 681), +(137352, 'Tierra', 1988, 'F', 677), +(137353, 'Shayla', 1988, 'F', 676), +(137354, 'Tia', 1988, 'F', 675), +(137355, 'Hailey', 1988, 'F', 672), +(137356, 'Shanna', 1988, 'F', 671), +(137357, 'Yvonne', 1988, 'F', 667), +(137358, 'Taryn', 1988, 'F', 666), +(137359, 'Lyndsey', 1988, 'F', 660), +(137360, 'Arielle', 1988, 'F', 654), +(137361, 'Traci', 1988, 'F', 654), +(137362, 'Alana', 1988, 'F', 652), +(137363, 'Keisha', 1988, 'F', 651), +(137364, 'Charity', 1988, 'F', 648), +(137365, 'Lillian', 1988, 'F', 646), +(137366, 'Alyson', 1988, 'F', 643), +(137367, 'Meaghan', 1988, 'F', 642), +(137368, 'Irene', 1988, 'F', 640), +(137369, 'Ariana', 1988, 'F', 635), +(137370, 'Michaela', 1988, 'F', 633), +(137371, 'Sonya', 1988, 'F', 632), +(137372, 'Janice', 1988, 'F', 631), +(137373, 'Ashton', 1988, 'F', 629), +(137374, 'Guadalupe', 1988, 'F', 626), +(137375, 'Faith', 1988, 'F', 621), +(137376, 'Julianne', 1988, 'F', 621), +(137377, 'Ruby', 1988, 'F', 621), +(137378, 'Shayna', 1988, 'F', 621), +(137379, 'Mia', 1988, 'F', 620), +(137380, 'Tanisha', 1988, 'F', 618), +(137381, 'Debra', 1988, 'F', 616), +(137382, 'Sade', 1988, 'F', 616), +(137383, 'Kassandra', 1988, 'F', 614), +(137384, 'Ryan', 1988, 'F', 613), +(137385, 'Christian', 1988, 'F', 612), +(137386, 'Elena', 1988, 'F', 610), +(137387, 'Dorothy', 1988, 'F', 608), +(137388, 'Mercedes', 1988, 'F', 608), +(137389, 'Nora', 1988, 'F', 604), +(137390, 'Tricia', 1988, 'F', 604), +(137391, 'Elisa', 1988, 'F', 602), +(137392, 'Jaimie', 1988, 'F', 601), +(137393, 'Latisha', 1988, 'F', 601), +(137394, 'Francesca', 1988, 'F', 600), +(137395, 'Kerry', 1988, 'F', 598), +(137396, 'Chantel', 1988, 'F', 596), +(137397, 'Maureen', 1988, 'F', 594), +(137398, 'Bridgette', 1988, 'F', 588), +(137399, 'Katy', 1988, 'F', 587), +(137400, 'Tessa', 1988, 'F', 585), +(137401, 'Noelle', 1988, 'F', 579), +(137402, 'Annette', 1988, 'F', 573), +(137403, 'Kendall', 1988, 'F', 572), +(137404, 'Ashlie', 1988, 'F', 565), +(137405, 'Kayleigh', 1988, 'F', 565), +(137406, 'Sandy', 1988, 'F', 565), +(137407, 'Asia', 1988, 'F', 564), +(137408, 'Karissa', 1988, 'F', 564), +(137409, 'Kira', 1988, 'F', 559), +(137410, 'Lara', 1988, 'F', 559), +(137411, 'Callie', 1988, 'F', 557), +(137412, 'Isabel', 1988, 'F', 557), +(137413, 'Jazmin', 1988, 'F', 557), +(137414, 'Larissa', 1988, 'F', 549), +(137415, 'Blair', 1988, 'F', 547), +(137416, 'Kyla', 1988, 'F', 546), +(137417, 'Marilyn', 1988, 'F', 546), +(137418, 'Sherry', 1988, 'F', 546), +(137419, 'Chanel', 1988, 'F', 544), +(137420, 'Sally', 1988, 'F', 543), +(137421, 'Shelly', 1988, 'F', 537), +(137422, 'Daniela', 1988, 'F', 534), +(137423, 'Jackie', 1988, 'F', 529), +(137424, 'Brenna', 1988, 'F', 527), +(137425, 'Precious', 1988, 'F', 524), +(137426, 'Carolina', 1988, 'F', 523), +(137427, 'Kathy', 1988, 'F', 522), +(137428, 'Leanne', 1988, 'F', 521), +(137429, 'Jalisa', 1988, 'F', 520), +(137430, 'Lorena', 1988, 'F', 520), +(137431, 'Judith', 1988, 'F', 517), +(137432, 'Eileen', 1988, 'F', 514), +(137433, 'Tiffani', 1988, 'F', 514), +(137434, 'Alma', 1988, 'F', 511), +(137435, 'Brittni', 1988, 'F', 511), +(137436, 'Lucy', 1988, 'F', 511), +(137437, 'Constance', 1988, 'F', 510), +(137438, 'Whitley', 1988, 'F', 508), +(137439, 'Katlyn', 1988, 'F', 506), +(137440, 'Belinda', 1988, 'F', 504), +(137441, 'Jana', 1988, 'F', 504), +(137442, 'Josephine', 1988, 'F', 503), +(137443, 'Leanna', 1988, 'F', 503), +(137444, 'India', 1988, 'F', 498), +(137445, 'Jena', 1988, 'F', 498), +(137446, 'Juanita', 1988, 'F', 493), +(137447, 'Laurel', 1988, 'F', 493), +(137448, 'Tamika', 1988, 'F', 492), +(137449, 'Devin', 1988, 'F', 491), +(137450, 'Ashely', 1988, 'F', 489), +(137451, 'Marlene', 1988, 'F', 489), +(137452, 'Alisa', 1988, 'F', 488), +(137453, 'Alysha', 1988, 'F', 488), +(137454, 'Ciera', 1988, 'F', 488), +(137455, 'Iris', 1988, 'F', 486), +(137456, 'Jami', 1988, 'F', 486), +(137457, 'Natalia', 1988, 'F', 484), +(137458, 'Rita', 1988, 'F', 484), +(137459, 'Connie', 1988, 'F', 482), +(137460, 'Marisol', 1988, 'F', 482), +(137461, 'Jacklyn', 1988, 'F', 481), +(137462, 'Maribel', 1988, 'F', 481), +(137463, 'Alaina', 1988, 'F', 480), +(137464, 'Darlene', 1988, 'F', 480), +(137465, 'Michael', 1988, 'F', 480), +(137466, 'Patrice', 1988, 'F', 480), +(137467, 'Terri', 1988, 'F', 480), +(137468, 'Lesley', 1988, 'F', 479), +(137469, 'Casandra', 1988, 'F', 478), +(137470, 'Laurie', 1988, 'F', 476), +(137471, 'Chloe', 1988, 'F', 475), +(137472, 'Esmeralda', 1988, 'F', 475), +(137473, 'Joyce', 1988, 'F', 475), +(137474, 'Blanca', 1988, 'F', 471), +(137475, 'Jennie', 1988, 'F', 470), +(137476, 'Lynn', 1988, 'F', 469), +(137477, 'Jazmine', 1988, 'F', 468), +(137478, 'Ashly', 1988, 'F', 465), +(137479, 'Lakeisha', 1988, 'F', 463), +(137480, 'Beverly', 1988, 'F', 462), +(137481, 'Kala', 1988, 'F', 462), +(137482, 'Rhonda', 1988, 'F', 462), +(137483, 'Shirley', 1988, 'F', 462), +(137484, 'Tori', 1988, 'F', 462), +(137485, 'Brandie', 1988, 'F', 461), +(137486, 'Celeste', 1988, 'F', 458), +(137487, 'Stephany', 1988, 'F', 458), +(137488, 'Gabriella', 1988, 'F', 456), +(137489, 'Nikita', 1988, 'F', 454), +(137490, 'Juliana', 1988, 'F', 451), +(137491, 'Genevieve', 1988, 'F', 450), +(137492, 'Norma', 1988, 'F', 449), +(137493, 'Marina', 1988, 'F', 448), +(137494, 'Corinne', 1988, 'F', 446), +(137495, 'Tiana', 1988, 'F', 445), +(137496, 'Devon', 1988, 'F', 443), +(137497, 'Hollie', 1988, 'F', 440), +(137498, 'Jerrica', 1988, 'F', 437), +(137499, 'Breanne', 1988, 'F', 436), +(137500, 'Liliana', 1988, 'F', 436), +(137501, 'Janae', 1988, 'F', 432), +(137502, 'Rosemary', 1988, 'F', 432), +(137503, 'Christin', 1988, 'F', 431), +(137504, 'Joanne', 1988, 'F', 430), +(137505, 'Janay', 1988, 'F', 429), +(137506, 'Kacie', 1988, 'F', 429), +(137507, 'Christen', 1988, 'F', 428), +(137508, 'Vivian', 1988, 'F', 428), +(137509, 'Katelynn', 1988, 'F', 427), +(137510, 'Leann', 1988, 'F', 427), +(137511, 'Kelsie', 1988, 'F', 426), +(137512, 'Shelley', 1988, 'F', 426), +(137513, 'Mariah', 1988, 'F', 423), +(137514, 'Adrianna', 1988, 'F', 422), +(137515, 'Maegan', 1988, 'F', 421), +(137516, 'Tania', 1988, 'F', 421), +(137517, 'Mollie', 1988, 'F', 419), +(137518, 'Clara', 1988, 'F', 418), +(137519, 'Justina', 1988, 'F', 418), +(137520, 'Octavia', 1988, 'F', 418), +(137521, 'Audra', 1988, 'F', 416), +(137522, 'Serena', 1988, 'F', 416), +(137523, 'Kourtney', 1988, 'F', 415), +(137524, 'Kristyn', 1988, 'F', 414), +(137525, 'Susana', 1988, 'F', 412), +(137526, 'Beatriz', 1988, 'F', 411), +(137527, 'Hanna', 1988, 'F', 411), +(137528, 'Judy', 1988, 'F', 410), +(137529, 'Tiffanie', 1988, 'F', 407), +(137530, 'Cassidy', 1988, 'F', 405), +(137531, 'Abbey', 1988, 'F', 404), +(137532, 'Shantel', 1988, 'F', 404), +(137533, 'Amie', 1988, 'F', 403), +(137534, 'Sadie', 1988, 'F', 403), +(137535, 'Elisha', 1988, 'F', 402), +(137536, 'Alyse', 1988, 'F', 401), +(137537, 'Katelin', 1988, 'F', 400), +(137538, 'Lea', 1988, 'F', 399), +(137539, 'Nadine', 1988, 'F', 399), +(137540, 'Keshia', 1988, 'F', 398), +(137541, 'Lily', 1988, 'F', 397), +(137542, 'Stevie', 1988, 'F', 397), +(137543, 'Lena', 1988, 'F', 396), +(137544, 'Betty', 1988, 'F', 395), +(137545, 'Margarita', 1988, 'F', 395), +(137546, 'Kaila', 1988, 'F', 392), +(137547, 'Dianna', 1988, 'F', 390), +(137548, 'Jolene', 1988, 'F', 388), +(137549, 'Adrian', 1988, 'F', 385), +(137550, 'Bobbie', 1988, 'F', 383), +(137551, 'Kyra', 1988, 'F', 382), +(137552, 'Jenifer', 1988, 'F', 381), +(137553, 'Terra', 1988, 'F', 380), +(137554, 'Jayme', 1988, 'F', 379), +(137555, 'Alycia', 1988, 'F', 376), +(137556, 'Janine', 1988, 'F', 366), +(137557, 'Angie', 1988, 'F', 365), +(137558, 'Britany', 1988, 'F', 363), +(137559, 'Lorraine', 1988, 'F', 363), +(137560, 'Silvia', 1988, 'F', 363), +(137561, 'Trista', 1988, 'F', 363), +(137562, 'Dayna', 1988, 'F', 361), +(137563, 'Aisha', 1988, 'F', 360), +(137564, 'Brittny', 1988, 'F', 360), +(137565, 'Racheal', 1988, 'F', 360), +(137566, 'Chrystal', 1988, 'F', 359), +(137567, 'Antonia', 1988, 'F', 357), +(137568, 'Geraldine', 1988, 'F', 355), +(137569, 'Christopher', 1988, 'F', 354), +(137570, 'Daniella', 1988, 'F', 353), +(137571, 'Maritza', 1988, 'F', 353), +(137572, 'Alysia', 1988, 'F', 351), +(137573, 'Desirae', 1988, 'F', 351), +(137574, 'Mckenzie', 1988, 'F', 351), +(137575, 'Rocio', 1988, 'F', 349), +(137576, 'Kali', 1988, 'F', 348), +(137577, 'Lacie', 1988, 'F', 347), +(137578, 'Cristal', 1988, 'F', 346), +(137579, 'Jeannette', 1988, 'F', 346), +(137580, 'Gretchen', 1988, 'F', 344), +(137581, 'Krysta', 1988, 'F', 343), +(137582, 'Celia', 1988, 'F', 342), +(137583, 'Arlene', 1988, 'F', 341), +(137584, 'Jerica', 1988, 'F', 341), +(137585, 'Betsy', 1988, 'F', 339), +(137586, 'Chandra', 1988, 'F', 338), +(137587, 'Melisa', 1988, 'F', 337), +(137588, 'Diamond', 1988, 'F', 335), +(137589, 'Edith', 1988, 'F', 335), +(137590, 'Alanna', 1988, 'F', 334), +(137591, 'Angelique', 1988, 'F', 334), +(137592, 'Bobbi', 1988, 'F', 333), +(137593, 'Lyndsay', 1988, 'F', 333), +(137594, 'Alexander', 1988, 'F', 331), +(137595, 'Brittanie', 1988, 'F', 331), +(137596, 'Joann', 1988, 'F', 331), +(137597, 'Mara', 1988, 'F', 331), +(137598, 'Corina', 1988, 'F', 330), +(137599, 'Talia', 1988, 'F', 330), +(137600, 'Eliza', 1988, 'F', 329), +(137601, 'Jean', 1988, 'F', 329), +(137602, 'Carina', 1988, 'F', 328), +(137603, 'Lana', 1988, 'F', 327), +(137604, 'Raven', 1988, 'F', 327), +(137605, 'Kaleigh', 1988, 'F', 326), +(137606, 'Loren', 1988, 'F', 325), +(137607, 'Maricela', 1988, 'F', 325), +(137608, 'Shante', 1988, 'F', 325), +(137609, 'Becky', 1988, 'F', 324), +(137610, 'Cayla', 1988, 'F', 324), +(137611, 'Corey', 1988, 'F', 324), +(137612, 'Savanna', 1988, 'F', 323), +(137613, 'Mandi', 1988, 'F', 322), +(137614, 'Ashli', 1988, 'F', 319), +(137615, 'Kristal', 1988, 'F', 319), +(137616, 'Jesse', 1988, 'F', 318), +(137617, 'Kaci', 1988, 'F', 318), +(137618, 'Janie', 1988, 'F', 317), +(137619, 'Kacey', 1988, 'F', 316), +(137620, 'Roxanna', 1988, 'F', 316), +(137621, 'Janette', 1988, 'F', 315), +(137622, 'Julianna', 1988, 'F', 315), +(137623, 'Marquita', 1988, 'F', 315), +(137624, 'Maura', 1988, 'F', 315), +(137625, 'Noel', 1988, 'F', 315), +(137626, 'Cheyenne', 1988, 'F', 314), +(137627, 'Lizette', 1988, 'F', 314), +(137628, 'Adrianne', 1988, 'F', 312), +(137629, 'Lucia', 1988, 'F', 312), +(137630, 'Gwendolyn', 1988, 'F', 310), +(137631, 'Kylee', 1988, 'F', 310), +(137632, 'Marisela', 1988, 'F', 310), +(137633, 'Emilie', 1988, 'F', 309), +(137634, 'Luz', 1988, 'F', 309), +(137635, 'Roxana', 1988, 'F', 309), +(137636, 'Eleanor', 1988, 'F', 308), +(137637, 'Ivy', 1988, 'F', 304), +(137638, 'Lora', 1988, 'F', 304), +(137639, 'Georgia', 1988, 'F', 303), +(137640, 'Myra', 1988, 'F', 302), +(137641, 'Dina', 1988, 'F', 301), +(137642, 'Cameron', 1988, 'F', 300), +(137643, 'Nathalie', 1988, 'F', 299), +(137644, 'Joshua', 1988, 'F', 298), +(137645, 'Britni', 1988, 'F', 297), +(137646, 'Janna', 1988, 'F', 297), +(137647, 'Laci', 1988, 'F', 297), +(137648, 'Latonya', 1988, 'F', 297), +(137649, 'Maranda', 1988, 'F', 296), +(137650, 'Sonja', 1988, 'F', 294), +(137651, 'Fatima', 1988, 'F', 293), +(137652, 'Paris', 1988, 'F', 293), +(137653, 'Rosanna', 1988, 'F', 293), +(137654, 'Chantal', 1988, 'F', 292), +(137655, 'Kaley', 1988, 'F', 292), +(137656, 'Kelsi', 1988, 'F', 292), +(137657, 'Kyle', 1988, 'F', 290), +(137658, 'Alecia', 1988, 'F', 289), +(137659, 'Billie', 1988, 'F', 289), +(137660, 'Porsha', 1988, 'F', 289), +(137661, 'Martina', 1988, 'F', 288), +(137662, 'Cherie', 1988, 'F', 287), +(137663, 'Emilee', 1988, 'F', 287), +(137664, 'Leeann', 1988, 'F', 287), +(137665, 'Maya', 1988, 'F', 287), +(137666, 'Araceli', 1988, 'F', 286), +(137667, 'Beatrice', 1988, 'F', 286), +(137668, 'Deja', 1988, 'F', 286), +(137669, 'Felisha', 1988, 'F', 286), +(137670, 'Kassie', 1988, 'F', 286), +(137671, 'Phylicia', 1988, 'F', 286), +(137672, 'Alesha', 1988, 'F', 285), +(137673, 'Kimberley', 1988, 'F', 285), +(137674, 'Daniel', 1988, 'F', 282), +(137675, 'Ashlyn', 1988, 'F', 281), +(137676, 'Gillian', 1988, 'F', 281), +(137677, 'Latrice', 1988, 'F', 281), +(137678, 'Sofia', 1988, 'F', 281), +(137679, 'Cari', 1988, 'F', 280), +(137680, 'Eden', 1988, 'F', 280), +(137681, 'Joan', 1988, 'F', 280), +(137682, 'Kandace', 1988, 'F', 279), +(137683, 'Princess', 1988, 'F', 279), +(137684, 'Daphne', 1988, 'F', 277), +(137685, 'Lynette', 1988, 'F', 277), +(137686, 'Nicolette', 1988, 'F', 277), +(137687, 'Kimberlee', 1988, 'F', 276), +(137688, 'Allie', 1988, 'F', 275), +(137689, 'Deidre', 1988, 'F', 275), +(137690, 'Krystina', 1988, 'F', 274), +(137691, 'Marcella', 1988, 'F', 273), +(137692, 'Mariana', 1988, 'F', 273), +(137693, 'Jessika', 1988, 'F', 272), +(137694, 'Jody', 1988, 'F', 272), +(137695, 'Maryann', 1988, 'F', 272), +(137696, 'Shanika', 1988, 'F', 271), +(137697, 'Bernadette', 1988, 'F', 270), +(137698, 'Alex', 1988, 'F', 269), +(137699, 'Lee', 1988, 'F', 268), +(137700, 'Teri', 1988, 'F', 268), +(137701, 'Ayla', 1988, 'F', 267), +(137702, 'Marianne', 1988, 'F', 267), +(137703, 'Alexia', 1988, 'F', 266), +(137704, 'Noemi', 1988, 'F', 266), +(137705, 'Kenya', 1988, 'F', 263), +(137706, 'Tyler', 1988, 'F', 263), +(137707, 'Tameka', 1988, 'F', 262), +(137708, 'Debbie', 1988, 'F', 261), +(137709, 'Marjorie', 1988, 'F', 261), +(137710, 'Shari', 1988, 'F', 261), +(137711, 'Tracie', 1988, 'F', 260), +(137712, 'Cori', 1988, 'F', 259), +(137713, 'Domonique', 1988, 'F', 259), +(137714, 'Kirstin', 1988, 'F', 259), +(137715, 'Brittaney', 1988, 'F', 258), +(137716, 'Carley', 1988, 'F', 258), +(137717, 'Shameka', 1988, 'F', 258), +(137718, 'Sherri', 1988, 'F', 258), +(137719, 'Taja', 1988, 'F', 258), +(137720, 'Chelsi', 1988, 'F', 257), +(137721, 'Elissa', 1988, 'F', 257), +(137722, 'Sheri', 1988, 'F', 257), +(137723, 'Aileen', 1988, 'F', 256), +(137724, 'Eboni', 1988, 'F', 256), +(137725, 'Irma', 1988, 'F', 256), +(137726, 'Janel', 1988, 'F', 255), +(137727, 'Julissa', 1988, 'F', 255), +(137728, 'Kandice', 1988, 'F', 255), +(137729, 'Krysten', 1988, 'F', 255), +(137730, 'Portia', 1988, 'F', 255), +(137731, 'Olga', 1988, 'F', 254), +(137732, 'Cody', 1988, 'F', 253), +(137733, 'Matthew', 1988, 'F', 253), +(137734, 'Shea', 1988, 'F', 253), +(137735, 'Clare', 1988, 'F', 252), +(137736, 'Deidra', 1988, 'F', 252), +(137737, 'Kim', 1988, 'F', 252), +(137738, 'Yadira', 1988, 'F', 252), +(137739, 'Loretta', 1988, 'F', 251), +(137740, 'Viviana', 1988, 'F', 251), +(137741, 'Arianna', 1988, 'F', 250), +(137742, 'David', 1988, 'F', 250), +(137743, 'Dena', 1988, 'F', 250), +(137744, 'Monika', 1988, 'F', 250), +(137745, 'Yessenia', 1988, 'F', 249), +(137746, 'Josie', 1988, 'F', 248), +(137747, 'Kathrine', 1988, 'F', 248), +(137748, 'Sophie', 1988, 'F', 248), +(137749, 'Stefani', 1988, 'F', 248), +(137750, 'Genesis', 1988, 'F', 247), +(137751, 'Alina', 1988, 'F', 246), +(137752, 'Catrina', 1988, 'F', 246), +(137753, 'Lynsey', 1988, 'F', 246), +(137754, 'Marcia', 1988, 'F', 246), +(137755, 'Darcy', 1988, 'F', 245), +(137756, 'Kiley', 1988, 'F', 245), +(137757, 'Lashonda', 1988, 'F', 245), +(137758, 'Logan', 1988, 'F', 245), +(137759, 'Rikki', 1988, 'F', 245), +(137760, 'James', 1988, 'F', 244), +(137761, 'Katlin', 1988, 'F', 244), +(137762, 'Tera', 1988, 'F', 244), +(137763, 'Gladys', 1988, 'F', 243), +(137764, 'Lakisha', 1988, 'F', 243), +(137765, 'Chantelle', 1988, 'F', 242), +(137766, 'Janessa', 1988, 'F', 242), +(137767, 'Kasandra', 1988, 'F', 242), +(137768, 'Tosha', 1988, 'F', 242), +(137769, 'Janell', 1988, 'F', 241), +(137770, 'Justin', 1988, 'F', 241), +(137771, 'Kati', 1988, 'F', 241), +(137772, 'Mariel', 1988, 'F', 241), +(137773, 'Dara', 1988, 'F', 240), +(137774, 'Joelle', 1988, 'F', 240), +(137775, 'Liza', 1988, 'F', 240), +(137776, 'Madeleine', 1988, 'F', 240), +(137777, 'Rhiannon', 1988, 'F', 240), +(137778, 'Skye', 1988, 'F', 240), +(137779, 'Zoe', 1988, 'F', 240), +(137780, 'Kimber', 1988, 'F', 239), +(137781, 'Geneva', 1988, 'F', 238), +(137782, 'Lakeshia', 1988, 'F', 238), +(137783, 'Demetria', 1988, 'F', 237), +(137784, 'Aurora', 1988, 'F', 236), +(137785, 'Cecily', 1988, 'F', 235), +(137786, 'Holli', 1988, 'F', 235), +(137787, 'Athena', 1988, 'F', 233), +(137788, 'Hallie', 1988, 'F', 233), +(137789, 'Renae', 1988, 'F', 233), +(137790, 'Marla', 1988, 'F', 232), +(137791, 'Celina', 1988, 'F', 231), +(137792, 'Deana', 1988, 'F', 231), +(137793, 'Rebeca', 1988, 'F', 231), +(137794, 'Selina', 1988, 'F', 231), +(137795, 'Joni', 1988, 'F', 229), +(137796, 'Kori', 1988, 'F', 229), +(137797, 'Christi', 1988, 'F', 228), +(137798, 'Cathy', 1988, 'F', 227), +(137799, 'Deandra', 1988, 'F', 227), +(137800, 'Peggy', 1988, 'F', 227), +(137801, 'Abbie', 1988, 'F', 226), +(137802, 'Ali', 1988, 'F', 226), +(137803, 'Kailey', 1988, 'F', 226), +(137804, 'Bridgett', 1988, 'F', 225), +(137805, 'Doris', 1988, 'F', 225), +(137806, 'Tanesha', 1988, 'F', 225), +(137807, 'Candy', 1988, 'F', 223), +(137808, 'Caryn', 1988, 'F', 223), +(137809, 'Valeria', 1988, 'F', 223), +(137810, 'Kiara', 1988, 'F', 222), +(137811, 'Pauline', 1988, 'F', 222), +(137812, 'Perla', 1988, 'F', 222), +(137813, 'Samatha', 1988, 'F', 222), +(137814, 'Susanna', 1988, 'F', 222), +(137815, 'Breann', 1988, 'F', 221), +(137816, 'Chastity', 1988, 'F', 221), +(137817, 'Fallon', 1988, 'F', 221), +(137818, 'Leandra', 1988, 'F', 221), +(137819, 'Leila', 1988, 'F', 221), +(137820, 'Ginger', 1988, 'F', 220), +(137821, 'Shamika', 1988, 'F', 220), +(137822, 'Alessandra', 1988, 'F', 219), +(137823, 'Elaina', 1988, 'F', 219), +(137824, 'Brittnee', 1988, 'F', 217), +(137825, 'Kristian', 1988, 'F', 217), +(137826, 'Annmarie', 1988, 'F', 216), +(137827, 'Richelle', 1988, 'F', 216), +(137828, 'Valencia', 1988, 'F', 216), +(137829, 'Charmaine', 1988, 'F', 215), +(137830, 'Dora', 1988, 'F', 215), +(137831, 'Yasmin', 1988, 'F', 215), +(137832, 'Cecelia', 1988, 'F', 214), +(137833, 'Eunice', 1988, 'F', 214), +(137834, 'Tiera', 1988, 'F', 214), +(137835, 'Trina', 1988, 'F', 214), +(137836, 'Andrew', 1988, 'F', 213), +(137837, 'Chaya', 1988, 'F', 213), +(137838, 'Jesica', 1988, 'F', 213), +(137839, 'Kierra', 1988, 'F', 213), +(137840, 'Katheryn', 1988, 'F', 212), +(137841, 'Tarah', 1988, 'F', 212), +(137842, 'Jeanne', 1988, 'F', 211), +(137843, 'Selena', 1988, 'F', 211), +(137844, 'Jaqueline', 1988, 'F', 210), +(137845, 'Jodie', 1988, 'F', 210), +(137846, 'Lakesha', 1988, 'F', 210), +(137847, 'Micah', 1988, 'F', 209), +(137848, 'Roberta', 1988, 'F', 209), +(137849, 'Kaylin', 1988, 'F', 208), +(137850, 'Danica', 1988, 'F', 207), +(137851, 'Alexandrea', 1988, 'F', 206), +(137852, 'Dominque', 1988, 'F', 206), +(137853, 'Kortney', 1988, 'F', 206), +(137854, 'Paola', 1988, 'F', 206), +(137855, 'Cory', 1988, 'F', 205), +(137856, 'Giselle', 1988, 'F', 205), +(137857, 'Ingrid', 1988, 'F', 205), +(137858, 'Lauryn', 1988, 'F', 204), +(137859, 'Marsha', 1988, 'F', 204), +(137860, 'Aja', 1988, 'F', 203), +(137861, 'Liana', 1988, 'F', 203), +(137862, 'Nikole', 1988, 'F', 203), +(137863, 'Chiquita', 1988, 'F', 202), +(137864, 'Griselda', 1988, 'F', 202), +(137865, 'Kalyn', 1988, 'F', 202), +(137866, 'Magen', 1988, 'F', 202), +(137867, 'Micaela', 1988, 'F', 202), +(137868, 'Allyssa', 1988, 'F', 201), +(137869, 'Anais', 1988, 'F', 201), +(137870, 'Cora', 1988, 'F', 201), +(137871, 'Ramona', 1988, 'F', 201), +(137872, 'Cheri', 1988, 'F', 200), +(137873, 'Cherish', 1988, 'F', 200), +(137874, 'Kiersten', 1988, 'F', 200), +(137875, 'Linsey', 1988, 'F', 200), +(137876, 'Marlena', 1988, 'F', 200), +(137877, 'Breana', 1988, 'F', 199), +(137878, 'Jeannie', 1988, 'F', 199), +(137879, 'Mari', 1988, 'F', 199), +(137880, 'Jessi', 1988, 'F', 198), +(137881, 'Kaylyn', 1988, 'F', 197), +(137882, 'Latosha', 1988, 'F', 197), +(137883, 'Reyna', 1988, 'F', 197), +(137884, 'Karli', 1988, 'F', 196), +(137885, 'Laquita', 1988, 'F', 196), +(137886, 'Lissette', 1988, 'F', 196), +(137887, 'Malinda', 1988, 'F', 196), +(137888, 'Shanae', 1988, 'F', 196), +(137889, 'Brook', 1988, 'F', 195), +(137890, 'Rena', 1988, 'F', 195), +(137891, 'Maxine', 1988, 'F', 194), +(137892, 'Shawn', 1988, 'F', 194), +(137893, 'Tianna', 1988, 'F', 193), +(137894, 'Delilah', 1988, 'F', 192), +(137895, 'Kaela', 1988, 'F', 192), +(137896, 'Kristan', 1988, 'F', 192), +(137897, 'Diandra', 1988, 'F', 191), +(137898, 'Cassondra', 1988, 'F', 190), +(137899, 'Felecia', 1988, 'F', 190), +(137900, 'Jessenia', 1988, 'F', 190), +(137901, 'Johnna', 1988, 'F', 190), +(137902, 'Sharonda', 1988, 'F', 189), +(137903, 'Rosemarie', 1988, 'F', 188); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(137904, 'Sarina', 1988, 'F', 188), +(137905, 'Delia', 1988, 'F', 187), +(137906, 'Sheree', 1988, 'F', 187), +(137907, 'Chanelle', 1988, 'F', 186), +(137908, 'Tawny', 1988, 'F', 186), +(137909, 'Lia', 1988, 'F', 185), +(137910, 'Racquel', 1988, 'F', 185), +(137911, 'Helena', 1988, 'F', 184), +(137912, 'Krystin', 1988, 'F', 184), +(137913, 'Shantell', 1988, 'F', 184), +(137914, 'Andria', 1988, 'F', 183), +(137915, 'Farrah', 1988, 'F', 183), +(137916, 'Georgina', 1988, 'F', 183), +(137917, 'Mai', 1988, 'F', 183), +(137918, 'Marcy', 1988, 'F', 183), +(137919, 'Sondra', 1988, 'F', 183), +(137920, 'Tess', 1988, 'F', 183), +(137921, 'Brandee', 1988, 'F', 182), +(137922, 'Joseph', 1988, 'F', 182), +(137923, 'Robert', 1988, 'F', 182), +(137924, 'Ella', 1988, 'F', 181), +(137925, 'Danyelle', 1988, 'F', 180), +(137926, 'Lizbeth', 1988, 'F', 180), +(137927, 'Mattie', 1988, 'F', 180), +(137928, 'Salina', 1988, 'F', 180), +(137929, 'Susie', 1988, 'F', 180), +(137930, 'Annamarie', 1988, 'F', 179), +(137931, 'Casie', 1988, 'F', 179), +(137932, 'Karin', 1988, 'F', 179), +(137933, 'Kasie', 1988, 'F', 179), +(137934, 'Kiera', 1988, 'F', 179), +(137935, 'Rosalie', 1988, 'F', 179), +(137936, 'Anthony', 1988, 'F', 178), +(137937, 'Carlie', 1988, 'F', 177), +(137938, 'Cathryn', 1988, 'F', 177), +(137939, 'Christal', 1988, 'F', 177), +(137940, 'Deirdre', 1988, 'F', 177), +(137941, 'Jada', 1988, 'F', 177), +(137942, 'Kami', 1988, 'F', 177), +(137943, 'Marian', 1988, 'F', 177), +(137944, 'Maira', 1988, 'F', 176), +(137945, 'Margo', 1988, 'F', 176), +(137946, 'Valarie', 1988, 'F', 176), +(137947, 'Marion', 1988, 'F', 175), +(137948, 'Wanda', 1988, 'F', 175), +(137949, 'Gabriel', 1988, 'F', 174), +(137950, 'Karly', 1988, 'F', 174), +(137951, 'Paulina', 1988, 'F', 174), +(137952, 'Anabel', 1988, 'F', 173), +(137953, 'Antionette', 1988, 'F', 173), +(137954, 'Jeanna', 1988, 'F', 173), +(137955, 'Katarina', 1988, 'F', 173), +(137956, 'Magan', 1988, 'F', 173), +(137957, 'Porsche', 1988, 'F', 173), +(137958, 'Rosalinda', 1988, 'F', 173), +(137959, 'Venessa', 1988, 'F', 173), +(137960, 'Amberly', 1988, 'F', 172), +(137961, 'Brigitte', 1988, 'F', 172), +(137962, 'Jalissa', 1988, 'F', 172), +(137963, 'Danelle', 1988, 'F', 171), +(137964, 'Glenda', 1988, 'F', 171), +(137965, 'Elsa', 1988, 'F', 170), +(137966, 'Hali', 1988, 'F', 170), +(137967, 'Jamila', 1988, 'F', 170), +(137968, 'Madelyn', 1988, 'F', 170), +(137969, 'Stacia', 1988, 'F', 170), +(137970, 'Vicky', 1988, 'F', 170), +(137971, 'Carli', 1988, 'F', 169), +(137972, 'Lakendra', 1988, 'F', 169), +(137973, 'Tamra', 1988, 'F', 169), +(137974, 'Tiarra', 1988, 'F', 169), +(137975, 'Magdalena', 1988, 'F', 168), +(137976, 'Ava', 1988, 'F', 167), +(137977, 'Emilia', 1988, 'F', 167), +(137978, 'Grecia', 1988, 'F', 167), +(137979, 'Ivette', 1988, 'F', 167), +(137980, 'John', 1988, 'F', 167), +(137981, 'Moriah', 1988, 'F', 167), +(137982, 'Brandon', 1988, 'F', 166), +(137983, 'Jeanine', 1988, 'F', 166), +(137984, 'Ladonna', 1988, 'F', 166), +(137985, 'Lourdes', 1988, 'F', 166), +(137986, 'Rene', 1988, 'F', 166), +(137987, 'Santana', 1988, 'F', 166), +(137988, 'Eric', 1988, 'F', 165), +(137989, 'Kaitlynn', 1988, 'F', 165), +(137990, 'Brittnie', 1988, 'F', 164), +(137991, 'Flor', 1988, 'F', 164), +(137992, 'Jonathan', 1988, 'F', 164), +(137993, 'Kacy', 1988, 'F', 164), +(137994, 'William', 1988, 'F', 164), +(137995, 'Chana', 1988, 'F', 163), +(137996, 'Corinna', 1988, 'F', 163), +(137997, 'Francine', 1988, 'F', 163), +(137998, 'Ida', 1988, 'F', 163), +(137999, 'Maricruz', 1988, 'F', 163), +(138000, 'Danae', 1988, 'F', 162), +(138001, 'Destinee', 1988, 'F', 162), +(138002, 'Luisa', 1988, 'F', 162), +(138003, 'Meghann', 1988, 'F', 162), +(138004, 'Shaniece', 1988, 'F', 162), +(138005, 'Tabetha', 1988, 'F', 162), +(138006, 'Anjelica', 1988, 'F', 161), +(138007, 'Ashlea', 1988, 'F', 161), +(138008, 'Baby', 1988, 'F', 161), +(138009, 'Kiana', 1988, 'F', 161), +(138010, 'Haylee', 1988, 'F', 160), +(138011, 'Louise', 1988, 'F', 160), +(138012, 'Candis', 1988, 'F', 159), +(138013, 'Dannielle', 1988, 'F', 159), +(138014, 'Davina', 1988, 'F', 159), +(138015, 'Lisette', 1988, 'F', 159), +(138016, 'Shanda', 1988, 'F', 159), +(138017, 'Corrine', 1988, 'F', 158), +(138018, 'Keely', 1988, 'F', 158), +(138019, 'Malissa', 1988, 'F', 158), +(138020, 'Avery', 1988, 'F', 157), +(138021, 'Jenelle', 1988, 'F', 157), +(138022, 'Juana', 1988, 'F', 157), +(138023, 'Kaycee', 1988, 'F', 157), +(138024, 'Mariela', 1988, 'F', 157), +(138025, 'Lucinda', 1988, 'F', 156), +(138026, 'Marci', 1988, 'F', 156), +(138027, 'Shakira', 1988, 'F', 156), +(138028, 'Terry', 1988, 'F', 156), +(138029, 'Christiana', 1988, 'F', 155), +(138030, 'Colette', 1988, 'F', 155), +(138031, 'Graciela', 1988, 'F', 155), +(138032, 'Marcela', 1988, 'F', 155), +(138033, 'Shaneka', 1988, 'F', 155), +(138034, 'Shanelle', 1988, 'F', 155), +(138035, 'Siobhan', 1988, 'F', 155), +(138036, 'Tyesha', 1988, 'F', 155), +(138037, 'Allegra', 1988, 'F', 154), +(138038, 'Stella', 1988, 'F', 154), +(138039, 'Ada', 1988, 'F', 153), +(138040, 'Kia', 1988, 'F', 153), +(138041, 'Marcie', 1988, 'F', 153), +(138042, 'Sheryl', 1988, 'F', 153), +(138043, 'Joana', 1988, 'F', 152), +(138044, 'Kirby', 1988, 'F', 152), +(138045, 'Penny', 1988, 'F', 152), +(138046, 'Bryanna', 1988, 'F', 151), +(138047, 'Cathleen', 1988, 'F', 151), +(138048, 'Stephani', 1988, 'F', 151), +(138049, 'Stephenie', 1988, 'F', 151), +(138050, 'Asha', 1988, 'F', 150), +(138051, 'Edna', 1988, 'F', 150), +(138052, 'Jalessa', 1988, 'F', 150), +(138053, 'Suzanna', 1988, 'F', 150), +(138054, 'Alesia', 1988, 'F', 149), +(138055, 'Kaylie', 1988, 'F', 149), +(138056, 'Malorie', 1988, 'F', 149), +(138057, 'Reva', 1988, 'F', 149), +(138058, 'Angeline', 1988, 'F', 148), +(138059, 'Dolores', 1988, 'F', 148), +(138060, 'Elana', 1988, 'F', 148), +(138061, 'Giovanna', 1988, 'F', 148), +(138062, 'Jesenia', 1988, 'F', 148), +(138063, 'Pearl', 1988, 'F', 148), +(138064, 'Shanell', 1988, 'F', 148), +(138065, 'Darla', 1988, 'F', 147), +(138066, 'Kalie', 1988, 'F', 147), +(138067, 'Shanta', 1988, 'F', 147), +(138068, 'Alysa', 1988, 'F', 146), +(138069, 'Bertha', 1988, 'F', 146), +(138070, 'Britnee', 1988, 'F', 146), +(138071, 'Juliet', 1988, 'F', 146), +(138072, 'Lindy', 1988, 'F', 146), +(138073, 'Mellissa', 1988, 'F', 146), +(138074, 'Nakita', 1988, 'F', 146), +(138075, 'Vicki', 1988, 'F', 146), +(138076, 'Candi', 1988, 'F', 145), +(138077, 'Eryn', 1988, 'F', 145), +(138078, 'Francis', 1988, 'F', 145), +(138079, 'Iliana', 1988, 'F', 145), +(138080, 'Lynda', 1988, 'F', 145), +(138081, 'Mallorie', 1988, 'F', 145), +(138082, 'Mikaela', 1988, 'F', 145), +(138083, 'Sarai', 1988, 'F', 145), +(138084, 'Danika', 1988, 'F', 144), +(138085, 'Karyn', 1988, 'F', 144), +(138086, 'Leilani', 1988, 'F', 144), +(138087, 'Shaquita', 1988, 'F', 144), +(138088, 'Elyssa', 1988, 'F', 143), +(138089, 'Mikayla', 1988, 'F', 143), +(138090, 'Paulette', 1988, 'F', 143), +(138091, 'Denisha', 1988, 'F', 142), +(138092, 'Jayne', 1988, 'F', 142), +(138093, 'Malia', 1988, 'F', 142), +(138094, 'Mona', 1988, 'F', 142), +(138095, 'Shanita', 1988, 'F', 142), +(138096, 'Damaris', 1988, 'F', 141), +(138097, 'Kay', 1988, 'F', 141), +(138098, 'Shaniqua', 1988, 'F', 141), +(138099, 'Tristan', 1988, 'F', 141), +(138100, 'Whittney', 1988, 'F', 141), +(138101, 'Bernice', 1988, 'F', 140), +(138102, 'Nataly', 1988, 'F', 140), +(138103, 'Samone', 1988, 'F', 140), +(138104, 'Tisha', 1988, 'F', 140), +(138105, 'Brooklyn', 1988, 'F', 139), +(138106, 'Hilda', 1988, 'F', 139), +(138107, 'Shalonda', 1988, 'F', 139), +(138108, 'Brigette', 1988, 'F', 138), +(138109, 'Tyra', 1988, 'F', 138), +(138110, 'Chantell', 1988, 'F', 137), +(138111, 'Codi', 1988, 'F', 137), +(138112, 'Emerald', 1988, 'F', 137), +(138113, 'Lashanda', 1988, 'F', 137), +(138114, 'Lina', 1988, 'F', 137), +(138115, 'Nicolle', 1988, 'F', 137), +(138116, 'Ryann', 1988, 'F', 137), +(138117, 'Shaquana', 1988, 'F', 137), +(138118, 'Stephaine', 1988, 'F', 137), +(138119, 'Tenisha', 1988, 'F', 137), +(138120, 'Chelsy', 1988, 'F', 136), +(138121, 'Dianne', 1988, 'F', 136), +(138122, 'Gail', 1988, 'F', 136), +(138123, 'Charissa', 1988, 'F', 135), +(138124, 'Danna', 1988, 'F', 135), +(138125, 'Misti', 1988, 'F', 135), +(138126, 'Nicholas', 1988, 'F', 135), +(138127, 'Shavon', 1988, 'F', 135), +(138128, 'Sunny', 1988, 'F', 135), +(138129, 'Talisha', 1988, 'F', 135), +(138130, 'Annemarie', 1988, 'F', 134), +(138131, 'Austin', 1988, 'F', 134), +(138132, 'Brittnay', 1988, 'F', 134), +(138133, 'Catalina', 1988, 'F', 134), +(138134, 'Fabiola', 1988, 'F', 134), +(138135, 'Francisca', 1988, 'F', 134), +(138136, 'Kenisha', 1988, 'F', 134), +(138137, 'Marta', 1988, 'F', 134), +(138138, 'Nia', 1988, 'F', 134), +(138139, 'Violet', 1988, 'F', 134), +(138140, 'Adilene', 1988, 'F', 133), +(138141, 'Cinthia', 1988, 'F', 133), +(138142, 'Eliana', 1988, 'F', 133), +(138143, 'Iesha', 1988, 'F', 133), +(138144, 'Jelisa', 1988, 'F', 133), +(138145, 'Karrie', 1988, 'F', 133), +(138146, 'Natashia', 1988, 'F', 133), +(138147, 'Alyssia', 1988, 'F', 132), +(138148, 'Ami', 1988, 'F', 132), +(138149, 'Cherelle', 1988, 'F', 132), +(138150, 'Cherise', 1988, 'F', 132), +(138151, 'Deena', 1988, 'F', 132), +(138152, 'Mariam', 1988, 'F', 132), +(138153, 'Shasta', 1988, 'F', 132), +(138154, 'Susannah', 1988, 'F', 132), +(138155, 'Aaron', 1988, 'F', 131), +(138156, 'Aubree', 1988, 'F', 131), +(138157, 'Bree', 1988, 'F', 131), +(138158, 'Elsie', 1988, 'F', 131), +(138159, 'Heaven', 1988, 'F', 131), +(138160, 'Tiesha', 1988, 'F', 131), +(138161, 'Chante', 1988, 'F', 130), +(138162, 'Fiona', 1988, 'F', 130), +(138163, 'Harmony', 1988, 'F', 130), +(138164, 'Josefina', 1988, 'F', 130), +(138165, 'Kirstie', 1988, 'F', 130), +(138166, 'Niki', 1988, 'F', 130), +(138167, 'Scarlett', 1988, 'F', 130), +(138168, 'Shira', 1988, 'F', 130), +(138169, 'Dalia', 1988, 'F', 129), +(138170, 'Marguerite', 1988, 'F', 129), +(138171, 'Thalia', 1988, 'F', 129), +(138172, 'Alayna', 1988, 'F', 128), +(138173, 'Britteny', 1988, 'F', 128), +(138174, 'Corrie', 1988, 'F', 128), +(138175, 'Gena', 1988, 'F', 128), +(138176, 'Janee', 1988, 'F', 128), +(138177, 'Kallie', 1988, 'F', 128), +(138178, 'Tami', 1988, 'F', 128), +(138179, 'Alia', 1988, 'F', 127), +(138180, 'Aracely', 1988, 'F', 127), +(138181, 'Britny', 1988, 'F', 127), +(138182, 'Brynn', 1988, 'F', 127), +(138183, 'Jenae', 1988, 'F', 127), +(138184, 'Melina', 1988, 'F', 127), +(138185, 'Natosha', 1988, 'F', 127), +(138186, 'Reina', 1988, 'F', 127), +(138187, 'Ursula', 1988, 'F', 127), +(138188, 'Aleshia', 1988, 'F', 126), +(138189, 'Brian', 1988, 'F', 126), +(138190, 'Jeri', 1988, 'F', 126), +(138191, 'Karlee', 1988, 'F', 126), +(138192, 'Laquisha', 1988, 'F', 126), +(138193, 'Reanna', 1988, 'F', 126), +(138194, 'Starla', 1988, 'F', 126), +(138195, 'Camilla', 1988, 'F', 125), +(138196, 'Delisa', 1988, 'F', 125), +(138197, 'Eve', 1988, 'F', 125), +(138198, 'Fawn', 1988, 'F', 125), +(138199, 'Kelsea', 1988, 'F', 125), +(138200, 'Nakia', 1988, 'F', 125), +(138201, 'Tayler', 1988, 'F', 125), +(138202, 'Alishia', 1988, 'F', 124), +(138203, 'Cami', 1988, 'F', 124), +(138204, 'Channing', 1988, 'F', 124), +(138205, 'Dallas', 1988, 'F', 124), +(138206, 'Karlie', 1988, 'F', 124), +(138207, 'Kesha', 1988, 'F', 124), +(138208, 'Kindra', 1988, 'F', 124), +(138209, 'Crista', 1988, 'F', 123), +(138210, 'Devan', 1988, 'F', 123), +(138211, 'Jewel', 1988, 'F', 123), +(138212, 'Sherrie', 1988, 'F', 123), +(138213, 'Sidney', 1988, 'F', 123), +(138214, 'Steven', 1988, 'F', 123), +(138215, 'Yasmine', 1988, 'F', 123), +(138216, 'Cristy', 1988, 'F', 122), +(138217, 'Ebonie', 1988, 'F', 122), +(138218, 'Gracie', 1988, 'F', 122), +(138219, 'Mildred', 1988, 'F', 122), +(138220, 'Carey', 1988, 'F', 121), +(138221, 'Chanda', 1988, 'F', 121), +(138222, 'Charlie', 1988, 'F', 121), +(138223, 'Kerrie', 1988, 'F', 121), +(138224, 'Nichelle', 1988, 'F', 121), +(138225, 'Phoebe', 1988, 'F', 121), +(138226, 'Rae', 1988, 'F', 121), +(138227, 'Riley', 1988, 'F', 121), +(138228, 'Rosie', 1988, 'F', 121), +(138229, 'Tana', 1988, 'F', 121), +(138230, 'Ariane', 1988, 'F', 120), +(138231, 'Daniele', 1988, 'F', 120), +(138232, 'Isabelle', 1988, 'F', 120), +(138233, 'June', 1988, 'F', 120), +(138234, 'Lynnette', 1988, 'F', 120), +(138235, 'Mellisa', 1988, 'F', 120), +(138236, 'Ilana', 1988, 'F', 119), +(138237, 'Jordyn', 1988, 'F', 119), +(138238, 'Lois', 1988, 'F', 119), +(138239, 'Tonia', 1988, 'F', 119), +(138240, 'Vanesa', 1988, 'F', 119), +(138241, 'Aleisha', 1988, 'F', 118), +(138242, 'Alena', 1988, 'F', 118), +(138243, 'Franchesca', 1988, 'F', 118), +(138244, 'Jacquelynn', 1988, 'F', 118), +(138245, 'Laken', 1988, 'F', 118), +(138246, 'Britta', 1988, 'F', 117), +(138247, 'Cristin', 1988, 'F', 117), +(138248, 'Jaimee', 1988, 'F', 117), +(138249, 'Juliette', 1988, 'F', 117), +(138250, 'Thomas', 1988, 'F', 117), +(138251, 'Alba', 1988, 'F', 116), +(138252, 'Dulce', 1988, 'F', 116), +(138253, 'Greta', 1988, 'F', 116), +(138254, 'Kevin', 1988, 'F', 116), +(138255, 'Latoria', 1988, 'F', 116), +(138256, 'Madalyn', 1988, 'F', 116), +(138257, 'Regan', 1988, 'F', 116), +(138258, 'Sherita', 1988, 'F', 116), +(138259, 'Skylar', 1988, 'F', 116), +(138260, 'Vanity', 1988, 'F', 116), +(138261, 'Dani', 1988, 'F', 115), +(138262, 'Ivory', 1988, 'F', 115), +(138263, 'Joslyn', 1988, 'F', 115), +(138264, 'Kailee', 1988, 'F', 115), +(138265, 'Kendal', 1988, 'F', 115), +(138266, 'Latia', 1988, 'F', 115), +(138267, 'Leigha', 1988, 'F', 115), +(138268, 'Phyllis', 1988, 'F', 115), +(138269, 'Rosalyn', 1988, 'F', 115), +(138270, 'Sharita', 1988, 'F', 115), +(138271, 'Timothy', 1988, 'F', 115), +(138272, 'Ivonne', 1988, 'F', 114), +(138273, 'Jacquelin', 1988, 'F', 114), +(138274, 'Keila', 1988, 'F', 114), +(138275, 'Raina', 1988, 'F', 114), +(138276, 'Wendi', 1988, 'F', 114), +(138277, 'Addie', 1988, 'F', 113), +(138278, 'Aida', 1988, 'F', 113), +(138279, 'Carlee', 1988, 'F', 113), +(138280, 'Jeana', 1988, 'F', 113), +(138281, 'Kasi', 1988, 'F', 113), +(138282, 'Marybeth', 1988, 'F', 113), +(138283, 'Shatara', 1988, 'F', 113), +(138284, 'Chanell', 1988, 'F', 112), +(138285, 'Darci', 1988, 'F', 112), +(138286, 'Elvia', 1988, 'F', 112), +(138287, 'Esperanza', 1988, 'F', 112), +(138288, 'Jenni', 1988, 'F', 112), +(138289, 'Kenyatta', 1988, 'F', 112), +(138290, 'Pricilla', 1988, 'F', 112), +(138291, 'Shakia', 1988, 'F', 112), +(138292, 'Ashlei', 1988, 'F', 111), +(138293, 'Berenice', 1988, 'F', 111), +(138294, 'Chassidy', 1988, 'F', 111), +(138295, 'Denisse', 1988, 'F', 111), +(138296, 'Hazel', 1988, 'F', 111), +(138297, 'Jo', 1988, 'F', 111), +(138298, 'Kaylene', 1988, 'F', 111), +(138299, 'Kaylynn', 1988, 'F', 111), +(138300, 'Lacee', 1988, 'F', 111), +(138301, 'Lashawn', 1988, 'F', 111), +(138302, 'Richard', 1988, 'F', 111), +(138303, 'Shanee', 1988, 'F', 111), +(138304, 'Stormy', 1988, 'F', 111), +(138305, 'Gianna', 1988, 'F', 110), +(138306, 'Haleigh', 1988, 'F', 110), +(138307, 'Kayli', 1988, 'F', 110), +(138308, 'Leona', 1988, 'F', 110), +(138309, 'Rachele', 1988, 'F', 110), +(138310, 'Talisa', 1988, 'F', 110), +(138311, 'Vannessa', 1988, 'F', 110), +(138312, 'Belen', 1988, 'F', 109), +(138313, 'China', 1988, 'F', 109), +(138314, 'Juliann', 1988, 'F', 109), +(138315, 'Kandis', 1988, 'F', 109), +(138316, 'Monet', 1988, 'F', 109), +(138317, 'Reba', 1988, 'F', 109), +(138318, 'Ahsley', 1988, 'F', 108), +(138319, 'Alix', 1988, 'F', 108), +(138320, 'Keli', 1988, 'F', 108), +(138321, 'Layla', 1988, 'F', 108), +(138322, 'Marlee', 1988, 'F', 108), +(138323, 'Salena', 1988, 'F', 108), +(138324, 'Samara', 1988, 'F', 108), +(138325, 'Sharee', 1988, 'F', 108), +(138326, 'Starr', 1988, 'F', 108), +(138327, 'Courtnie', 1988, 'F', 107), +(138328, 'Halie', 1988, 'F', 107), +(138329, 'Hana', 1988, 'F', 107), +(138330, 'Kadie', 1988, 'F', 107), +(138331, 'Makenzie', 1988, 'F', 107), +(138332, 'Myesha', 1988, 'F', 107), +(138333, 'Shara', 1988, 'F', 107), +(138334, 'Sherika', 1988, 'F', 107), +(138335, 'Tasia', 1988, 'F', 107), +(138336, 'Adriane', 1988, 'F', 106), +(138337, 'Jerika', 1988, 'F', 106), +(138338, 'Kelcie', 1988, 'F', 106), +(138339, 'Lizeth', 1988, 'F', 106), +(138340, 'Markita', 1988, 'F', 106), +(138341, 'Shay', 1988, 'F', 106), +(138342, 'Tamar', 1988, 'F', 106), +(138343, 'Tawana', 1988, 'F', 106), +(138344, 'Therese', 1988, 'F', 106), +(138345, 'Tierney', 1988, 'F', 106), +(138346, 'Annalisa', 1988, 'F', 105), +(138347, 'Brielle', 1988, 'F', 105), +(138348, 'Daniell', 1988, 'F', 105), +(138349, 'Elvira', 1988, 'F', 105), +(138350, 'Karie', 1988, 'F', 105), +(138351, 'Kenna', 1988, 'F', 105), +(138352, 'Kera', 1988, 'F', 105), +(138353, 'Lidia', 1988, 'F', 105), +(138354, 'Lilia', 1988, 'F', 105), +(138355, 'Loni', 1988, 'F', 105), +(138356, 'Shae', 1988, 'F', 105), +(138357, 'Zachary', 1988, 'F', 105), +(138358, 'Genna', 1988, 'F', 104), +(138359, 'Kaylan', 1988, 'F', 104), +(138360, 'Marianna', 1988, 'F', 104), +(138361, 'Melyssa', 1988, 'F', 104), +(138362, 'Merissa', 1988, 'F', 104), +(138363, 'Tanika', 1988, 'F', 104), +(138364, 'Thea', 1988, 'F', 104), +(138365, 'Yajaira', 1988, 'F', 104), +(138366, 'Colby', 1988, 'F', 103), +(138367, 'Jonna', 1988, 'F', 103), +(138368, 'Kayley', 1988, 'F', 103), +(138369, 'Lila', 1988, 'F', 103), +(138370, 'Lynne', 1988, 'F', 103), +(138371, 'Mabel', 1988, 'F', 103), +(138372, 'Meggan', 1988, 'F', 103), +(138373, 'Rhea', 1988, 'F', 103), +(138374, 'Rosario', 1988, 'F', 103), +(138375, 'Ayesha', 1988, 'F', 102), +(138376, 'Essence', 1988, 'F', 102), +(138377, 'Julisa', 1988, 'F', 102), +(138378, 'Kisha', 1988, 'F', 102), +(138379, 'Latanya', 1988, 'F', 102), +(138380, 'Sean', 1988, 'F', 102), +(138381, 'Tawni', 1988, 'F', 102), +(138382, 'Unique', 1988, 'F', 102), +(138383, 'Afton', 1988, 'F', 101), +(138384, 'Arianne', 1988, 'F', 101), +(138385, 'Blaire', 1988, 'F', 101), +(138386, 'Cassi', 1988, 'F', 101), +(138387, 'Florence', 1988, 'F', 101), +(138388, 'Jackeline', 1988, 'F', 101), +(138389, 'Patsy', 1988, 'F', 101), +(138390, 'Sommer', 1988, 'F', 101), +(138391, 'Tory', 1988, 'F', 101), +(138392, 'Latricia', 1988, 'F', 100), +(138393, 'Leighann', 1988, 'F', 100), +(138394, 'Rivka', 1988, 'F', 100), +(138395, 'Shelia', 1988, 'F', 100), +(138396, 'Tashina', 1988, 'F', 100), +(138397, 'Vickie', 1988, 'F', 100), +(138398, 'Michael', 1988, 'M', 64116), +(138399, 'Christopher', 1988, 'M', 52979), +(138400, 'Matthew', 1988, 'M', 45867), +(138401, 'Joshua', 1988, 'M', 42644), +(138402, 'Andrew', 1988, 'M', 35724), +(138403, 'David', 1988, 'M', 35304), +(138404, 'Justin', 1988, 'M', 35034), +(138405, 'Daniel', 1988, 'M', 34683), +(138406, 'James', 1988, 'M', 32490), +(138407, 'Robert', 1988, 'M', 30306), +(138408, 'John', 1988, 'M', 29390), +(138409, 'Joseph', 1988, 'M', 28997), +(138410, 'Ryan', 1988, 'M', 27730), +(138411, 'Nicholas', 1988, 'M', 25288), +(138412, 'Jonathan', 1988, 'M', 24340), +(138413, 'William', 1988, 'M', 24112), +(138414, 'Brandon', 1988, 'M', 23726), +(138415, 'Anthony', 1988, 'M', 23626), +(138416, 'Eric', 1988, 'M', 20158), +(138417, 'Kevin', 1988, 'M', 20158), +(138418, 'Kyle', 1988, 'M', 19883), +(138419, 'Brian', 1988, 'M', 19521), +(138420, 'Thomas', 1988, 'M', 18791), +(138421, 'Steven', 1988, 'M', 17856), +(138422, 'Timothy', 1988, 'M', 16800), +(138423, 'Adam', 1988, 'M', 16451), +(138424, 'Jason', 1988, 'M', 15892), +(138425, 'Jacob', 1988, 'M', 15866), +(138426, 'Zachary', 1988, 'M', 15864), +(138427, 'Benjamin', 1988, 'M', 15178), +(138428, 'Aaron', 1988, 'M', 14395), +(138429, 'Richard', 1988, 'M', 14136), +(138430, 'Tyler', 1988, 'M', 13341), +(138431, 'Alexander', 1988, 'M', 13326), +(138432, 'Jeremy', 1988, 'M', 13162), +(138433, 'Jeffrey', 1988, 'M', 12392), +(138434, 'Charles', 1988, 'M', 12097), +(138435, 'Sean', 1988, 'M', 11782), +(138436, 'Mark', 1988, 'M', 11701), +(138437, 'Stephen', 1988, 'M', 11600), +(138438, 'Travis', 1988, 'M', 11419), +(138439, 'Patrick', 1988, 'M', 11387), +(138440, 'Cody', 1988, 'M', 10579), +(138441, 'Nathan', 1988, 'M', 10146), +(138442, 'Samuel', 1988, 'M', 9553), +(138443, 'Paul', 1988, 'M', 9425), +(138444, 'Scott', 1988, 'M', 9345), +(138445, 'Dustin', 1988, 'M', 9335), +(138446, 'Jose', 1988, 'M', 8999), +(138447, 'Gregory', 1988, 'M', 8628), +(138448, 'Kenneth', 1988, 'M', 8563), +(138449, 'Jordan', 1988, 'M', 8481), +(138450, 'Derek', 1988, 'M', 8067), +(138451, 'Bryan', 1988, 'M', 8032), +(138452, 'Jesse', 1988, 'M', 7906), +(138453, 'Corey', 1988, 'M', 7324), +(138454, 'Bradley', 1988, 'M', 7008), +(138455, 'Alex', 1988, 'M', 6400), +(138456, 'Cory', 1988, 'M', 6264), +(138457, 'Jared', 1988, 'M', 6208), +(138458, 'Shawn', 1988, 'M', 5887), +(138459, 'Edward', 1988, 'M', 5796), +(138460, 'Austin', 1988, 'M', 5584), +(138461, 'Peter', 1988, 'M', 5419), +(138462, 'Chad', 1988, 'M', 5295), +(138463, 'Marcus', 1988, 'M', 5203), +(138464, 'Shane', 1988, 'M', 5167), +(138465, 'Juan', 1988, 'M', 5165), +(138466, 'Cameron', 1988, 'M', 4984), +(138467, 'Keith', 1988, 'M', 4944), +(138468, 'Phillip', 1988, 'M', 4574), +(138469, 'Antonio', 1988, 'M', 4460), +(138470, 'Brett', 1988, 'M', 4373), +(138471, 'Evan', 1988, 'M', 4332), +(138472, 'Donald', 1988, 'M', 4325), +(138473, 'Luis', 1988, 'M', 4321), +(138474, 'Ian', 1988, 'M', 4312), +(138475, 'George', 1988, 'M', 4291), +(138476, 'Ronald', 1988, 'M', 4170), +(138477, 'Carlos', 1988, 'M', 4121), +(138478, 'Nathaniel', 1988, 'M', 4052), +(138479, 'Vincent', 1988, 'M', 4052), +(138480, 'Casey', 1988, 'M', 4037), +(138481, 'Raymond', 1988, 'M', 4032), +(138482, 'Joel', 1988, 'M', 3935), +(138483, 'Christian', 1988, 'M', 3926), +(138484, 'Trevor', 1988, 'M', 3694), +(138485, 'Douglas', 1988, 'M', 3653), +(138486, 'Victor', 1988, 'M', 3621), +(138487, 'Seth', 1988, 'M', 3489), +(138488, 'Taylor', 1988, 'M', 3488), +(138489, 'Wesley', 1988, 'M', 3476), +(138490, 'Erik', 1988, 'M', 3475), +(138491, 'Philip', 1988, 'M', 3373), +(138492, 'Mitchell', 1988, 'M', 3318), +(138493, 'Derrick', 1988, 'M', 3305), +(138494, 'Craig', 1988, 'M', 3302), +(138495, 'Devin', 1988, 'M', 3298), +(138496, 'Frank', 1988, 'M', 3267), +(138497, 'Gary', 1988, 'M', 3243), +(138498, 'Adrian', 1988, 'M', 3216), +(138499, 'Gabriel', 1988, 'M', 3116), +(138500, 'Blake', 1988, 'M', 3099), +(138501, 'Jesus', 1988, 'M', 2924), +(138502, 'Curtis', 1988, 'M', 2907), +(138503, 'Mario', 1988, 'M', 2889), +(138504, 'Brent', 1988, 'M', 2867), +(138505, 'Caleb', 1988, 'M', 2811), +(138506, 'Logan', 1988, 'M', 2755), +(138507, 'Alan', 1988, 'M', 2753), +(138508, 'Miguel', 1988, 'M', 2728), +(138509, 'Randy', 1988, 'M', 2718), +(138510, 'Lucas', 1988, 'M', 2711), +(138511, 'Spencer', 1988, 'M', 2693), +(138512, 'Johnathan', 1988, 'M', 2673), +(138513, 'Dennis', 1988, 'M', 2649), +(138514, 'Martin', 1988, 'M', 2647), +(138515, 'Garrett', 1988, 'M', 2646), +(138516, 'Luke', 1988, 'M', 2620), +(138517, 'Jeffery', 1988, 'M', 2583), +(138518, 'Ricardo', 1988, 'M', 2502), +(138519, 'Jorge', 1988, 'M', 2470), +(138520, 'Larry', 1988, 'M', 2447), +(138521, 'Troy', 1988, 'M', 2342), +(138522, 'Jonathon', 1988, 'M', 2331), +(138523, 'Carl', 1988, 'M', 2317), +(138524, 'Chase', 1988, 'M', 2304), +(138525, 'Russell', 1988, 'M', 2298), +(138526, 'Johnny', 1988, 'M', 2266), +(138527, 'Jerry', 1988, 'M', 2262), +(138528, 'Colin', 1988, 'M', 2255), +(138529, 'Francisco', 1988, 'M', 2254), +(138530, 'Tony', 1988, 'M', 2243), +(138531, 'Allen', 1988, 'M', 2207), +(138532, 'Todd', 1988, 'M', 2200), +(138533, 'Jeremiah', 1988, 'M', 2190), +(138534, 'Dylan', 1988, 'M', 2158), +(138535, 'Andre', 1988, 'M', 2150), +(138536, 'Manuel', 1988, 'M', 2117), +(138537, 'Henry', 1988, 'M', 2079), +(138538, 'Terry', 1988, 'M', 2064), +(138539, 'Mathew', 1988, 'M', 2061), +(138540, 'Isaac', 1988, 'M', 1960), +(138541, 'Kristopher', 1988, 'M', 1956), +(138542, 'Danny', 1988, 'M', 1897), +(138543, 'Lance', 1988, 'M', 1888), +(138544, 'Clayton', 1988, 'M', 1887), +(138545, 'Ricky', 1988, 'M', 1882), +(138546, 'Marc', 1988, 'M', 1873), +(138547, 'Lawrence', 1988, 'M', 1858), +(138548, 'Angel', 1988, 'M', 1827), +(138549, 'Calvin', 1988, 'M', 1809), +(138550, 'Albert', 1988, 'M', 1795), +(138551, 'Randall', 1988, 'M', 1793), +(138552, 'Brendan', 1988, 'M', 1790), +(138553, 'Micheal', 1988, 'M', 1784), +(138554, 'Lee', 1988, 'M', 1782), +(138555, 'Ross', 1988, 'M', 1768), +(138556, 'Drew', 1988, 'M', 1752), +(138557, 'Jimmy', 1988, 'M', 1730), +(138558, 'Rodney', 1988, 'M', 1730), +(138559, 'Oscar', 1988, 'M', 1729), +(138560, 'Bobby', 1988, 'M', 1716), +(138561, 'Bryant', 1988, 'M', 1714), +(138562, 'Jake', 1988, 'M', 1707), +(138563, 'Louis', 1988, 'M', 1704), +(138564, 'Julian', 1988, 'M', 1672), +(138565, 'Roberto', 1988, 'M', 1660), +(138566, 'Hector', 1988, 'M', 1656), +(138567, 'Shaun', 1988, 'M', 1656), +(138568, 'Jack', 1988, 'M', 1647), +(138569, 'Grant', 1988, 'M', 1621), +(138570, 'Edgar', 1988, 'M', 1618), +(138571, 'Levi', 1988, 'M', 1610), +(138572, 'Walter', 1988, 'M', 1610), +(138573, 'Alejandro', 1988, 'M', 1604), +(138574, 'Darren', 1988, 'M', 1597), +(138575, 'Ruben', 1988, 'M', 1592), +(138576, 'Bryce', 1988, 'M', 1585), +(138577, 'Roger', 1988, 'M', 1574), +(138578, 'Javier', 1988, 'M', 1568), +(138579, 'Arthur', 1988, 'M', 1553), +(138580, 'Edwin', 1988, 'M', 1552), +(138581, 'Sergio', 1988, 'M', 1544), +(138582, 'Billy', 1988, 'M', 1510), +(138583, 'Maurice', 1988, 'M', 1492), +(138584, 'Joe', 1988, 'M', 1472), +(138585, 'Jamie', 1988, 'M', 1470), +(138586, 'Jon', 1988, 'M', 1447), +(138587, 'Devon', 1988, 'M', 1437), +(138588, 'Willie', 1988, 'M', 1428), +(138589, 'Omar', 1988, 'M', 1424), +(138590, 'Terrance', 1988, 'M', 1422), +(138591, 'Gerald', 1988, 'M', 1403), +(138592, 'Dominic', 1988, 'M', 1397), +(138593, 'Clinton', 1988, 'M', 1395), +(138594, 'Eduardo', 1988, 'M', 1384), +(138595, 'Max', 1988, 'M', 1384), +(138596, 'Jay', 1988, 'M', 1362), +(138597, 'Fernando', 1988, 'M', 1359), +(138598, 'Preston', 1988, 'M', 1349), +(138599, 'Reginald', 1988, 'M', 1333), +(138600, 'Ivan', 1988, 'M', 1330), +(138601, 'Pedro', 1988, 'M', 1305), +(138602, 'Bruce', 1988, 'M', 1282), +(138603, 'Rafael', 1988, 'M', 1278), +(138604, 'Emmanuel', 1988, 'M', 1277), +(138605, 'Jaime', 1988, 'M', 1252), +(138606, 'Terrence', 1988, 'M', 1241), +(138607, 'Wayne', 1988, 'M', 1241), +(138608, 'Theodore', 1988, 'M', 1238), +(138609, 'Raul', 1988, 'M', 1234), +(138610, 'Geoffrey', 1988, 'M', 1231), +(138611, 'Xavier', 1988, 'M', 1228), +(138612, 'Andres', 1988, 'M', 1221), +(138613, 'Darrell', 1988, 'M', 1213), +(138614, 'Maxwell', 1988, 'M', 1206), +(138615, 'Nicolas', 1988, 'M', 1201), +(138616, 'Frederick', 1988, 'M', 1176), +(138617, 'Roy', 1988, 'M', 1162), +(138618, 'Marvin', 1988, 'M', 1151), +(138619, 'Eddie', 1988, 'M', 1127), +(138620, 'Jerome', 1988, 'M', 1125), +(138621, 'Micah', 1988, 'M', 1114), +(138622, 'Tyrone', 1988, 'M', 1112), +(138623, 'Alberto', 1988, 'M', 1096), +(138624, 'Jessie', 1988, 'M', 1082), +(138625, 'Marco', 1988, 'M', 1081), +(138626, 'Darryl', 1988, 'M', 1079), +(138627, 'Noah', 1988, 'M', 1062), +(138628, 'Byron', 1988, 'M', 1055), +(138629, 'Cesar', 1988, 'M', 1050), +(138630, 'Kurt', 1988, 'M', 1041), +(138631, 'Dominique', 1988, 'M', 1029), +(138632, 'Mason', 1988, 'M', 1024), +(138633, 'Julio', 1988, 'M', 1023), +(138634, 'Jamal', 1988, 'M', 1018), +(138635, 'Ronnie', 1988, 'M', 1013), +(138636, 'Ernest', 1988, 'M', 1002), +(138637, 'Neil', 1988, 'M', 998), +(138638, 'Armando', 1988, 'M', 992), +(138639, 'Ramon', 1988, 'M', 992), +(138640, 'Hunter', 1988, 'M', 977), +(138641, 'Isaiah', 1988, 'M', 977), +(138642, 'Abraham', 1988, 'M', 971), +(138643, 'Brady', 1988, 'M', 953), +(138644, 'Francis', 1988, 'M', 950), +(138645, 'Darius', 1988, 'M', 948), +(138646, 'Steve', 1988, 'M', 948), +(138647, 'Tommy', 1988, 'M', 946), +(138648, 'Tyson', 1988, 'M', 937), +(138649, 'Erick', 1988, 'M', 929), +(138650, 'Trent', 1988, 'M', 928), +(138651, 'Glenn', 1988, 'M', 923), +(138652, 'Colby', 1988, 'M', 920), +(138653, 'Terrell', 1988, 'M', 916), +(138654, 'Eugene', 1988, 'M', 911), +(138655, 'Leonard', 1988, 'M', 910), +(138656, 'Tanner', 1988, 'M', 907), +(138657, 'Cole', 1988, 'M', 902), +(138658, 'Branden', 1988, 'M', 894), +(138659, 'Melvin', 1988, 'M', 893), +(138660, 'Ethan', 1988, 'M', 892), +(138661, 'Johnathon', 1988, 'M', 891), +(138662, 'Miles', 1988, 'M', 888), +(138663, 'Elijah', 1988, 'M', 884), +(138664, 'Dale', 1988, 'M', 881), +(138665, 'Colton', 1988, 'M', 879), +(138666, 'Orlando', 1988, 'M', 874), +(138667, 'Zachery', 1988, 'M', 871), +(138668, 'Dean', 1988, 'M', 859), +(138669, 'Collin', 1988, 'M', 848), +(138670, 'Courtney', 1988, 'M', 843), +(138671, 'Karl', 1988, 'M', 842), +(138672, 'Marshall', 1988, 'M', 840), +(138673, 'Gerardo', 1988, 'M', 837), +(138674, 'Brad', 1988, 'M', 834), +(138675, 'Andy', 1988, 'M', 833), +(138676, 'Jarrod', 1988, 'M', 833), +(138677, 'Franklin', 1988, 'M', 831), +(138678, 'Morgan', 1988, 'M', 829), +(138679, 'Dwayne', 1988, 'M', 828), +(138680, 'Stanley', 1988, 'M', 827), +(138681, 'Trenton', 1988, 'M', 826), +(138682, 'Nickolas', 1988, 'M', 822), +(138683, 'Arturo', 1988, 'M', 815), +(138684, 'Alfredo', 1988, 'M', 803), +(138685, 'Kirk', 1988, 'M', 802), +(138686, 'Tristan', 1988, 'M', 802), +(138687, 'Harold', 1988, 'M', 801), +(138688, 'Kelvin', 1988, 'M', 794), +(138689, 'Demetrius', 1988, 'M', 789), +(138690, 'Dillon', 1988, 'M', 785), +(138691, 'Jermaine', 1988, 'M', 782), +(138692, 'Connor', 1988, 'M', 781), +(138693, 'Wade', 1988, 'M', 776), +(138694, 'Quentin', 1988, 'M', 770), +(138695, 'Clifford', 1988, 'M', 764), +(138696, 'Dane', 1988, 'M', 759), +(138697, 'Ernesto', 1988, 'M', 756), +(138698, 'Nelson', 1988, 'M', 756), +(138699, 'Enrique', 1988, 'M', 754), +(138700, 'Rene', 1988, 'M', 754), +(138701, 'Lorenzo', 1988, 'M', 751), +(138702, 'Antoine', 1988, 'M', 743), +(138703, 'Ray', 1988, 'M', 743), +(138704, 'Malcolm', 1988, 'M', 741), +(138705, 'Kelly', 1988, 'M', 738), +(138706, 'Barry', 1988, 'M', 731), +(138707, 'Marcos', 1988, 'M', 726), +(138708, 'Landon', 1988, 'M', 723), +(138709, 'Alfred', 1988, 'M', 721), +(138710, 'Gilbert', 1988, 'M', 710), +(138711, 'Harrison', 1988, 'M', 693), +(138712, 'Deandre', 1988, 'M', 692), +(138713, 'Desmond', 1988, 'M', 691), +(138714, 'Alvin', 1988, 'M', 688), +(138715, 'Brock', 1988, 'M', 681), +(138716, 'Stuart', 1988, 'M', 676), +(138717, 'Leon', 1988, 'M', 675), +(138718, 'Donovan', 1988, 'M', 672), +(138719, 'Harry', 1988, 'M', 670), +(138720, 'Lamar', 1988, 'M', 668), +(138721, 'Kendall', 1988, 'M', 665), +(138722, 'Salvador', 1988, 'M', 663), +(138723, 'Marquis', 1988, 'M', 659), +(138724, 'Damien', 1988, 'M', 658), +(138725, 'Israel', 1988, 'M', 654), +(138726, 'Clarence', 1988, 'M', 653), +(138727, 'Darnell', 1988, 'M', 653), +(138728, 'Warren', 1988, 'M', 650), +(138729, 'Daryl', 1988, 'M', 649), +(138730, 'Angelo', 1988, 'M', 648), +(138731, 'Dexter', 1988, 'M', 643), +(138732, 'Kendrick', 1988, 'M', 643), +(138733, 'Cedric', 1988, 'M', 640), +(138734, 'Zachariah', 1988, 'M', 640), +(138735, 'Earl', 1988, 'M', 635), +(138736, 'Ralph', 1988, 'M', 628), +(138737, 'Chance', 1988, 'M', 622), +(138738, 'Damian', 1988, 'M', 620), +(138739, 'Josue', 1988, 'M', 620), +(138740, 'Joey', 1988, 'M', 617), +(138741, 'Howard', 1988, 'M', 614), +(138742, 'Bernard', 1988, 'M', 608), +(138743, 'Stefan', 1988, 'M', 606), +(138744, 'Jarvis', 1988, 'M', 600), +(138745, 'Diego', 1988, 'M', 595), +(138746, 'Terence', 1988, 'M', 594), +(138747, 'Beau', 1988, 'M', 593), +(138748, 'Dallas', 1988, 'M', 591), +(138749, 'Allan', 1988, 'M', 590), +(138750, 'Kurtis', 1988, 'M', 589), +(138751, 'Zackary', 1988, 'M', 586), +(138752, 'Damon', 1988, 'M', 585), +(138753, 'Simon', 1988, 'M', 585), +(138754, 'Rudy', 1988, 'M', 580), +(138755, 'Felix', 1988, 'M', 570), +(138756, 'Lewis', 1988, 'M', 570), +(138757, 'Kory', 1988, 'M', 568), +(138758, 'Roderick', 1988, 'M', 568), +(138759, 'Kody', 1988, 'M', 559), +(138760, 'Dakota', 1988, 'M', 554), +(138761, 'Emanuel', 1988, 'M', 552), +(138762, 'Heath', 1988, 'M', 552), +(138763, 'Jarred', 1988, 'M', 552), +(138764, 'Rashad', 1988, 'M', 551), +(138765, 'Skyler', 1988, 'M', 551), +(138766, 'Elias', 1988, 'M', 547), +(138767, 'Gavin', 1988, 'M', 544), +(138768, 'Josiah', 1988, 'M', 544), +(138769, 'Eli', 1988, 'M', 542), +(138770, 'Fabian', 1988, 'M', 542), +(138771, 'Jarrett', 1988, 'M', 538), +(138772, 'Jamar', 1988, 'M', 533), +(138773, 'Stephan', 1988, 'M', 531), +(138774, 'Elliott', 1988, 'M', 529), +(138775, 'Riley', 1988, 'M', 527), +(138776, 'Chaz', 1988, 'M', 526), +(138777, 'Gustavo', 1988, 'M', 525), +(138778, 'Quinton', 1988, 'M', 521), +(138779, 'Clifton', 1988, 'M', 518), +(138780, 'Tyrell', 1988, 'M', 515), +(138781, 'Abel', 1988, 'M', 513), +(138782, 'Derick', 1988, 'M', 511), +(138783, 'Shannon', 1988, 'M', 511), +(138784, 'Guillermo', 1988, 'M', 510), +(138785, 'Dante', 1988, 'M', 508), +(138786, 'Nolan', 1988, 'M', 508), +(138787, 'Kenny', 1988, 'M', 506), +(138788, 'Roman', 1988, 'M', 506), +(138789, 'Glen', 1988, 'M', 505), +(138790, 'Blaine', 1988, 'M', 502), +(138791, 'Brenton', 1988, 'M', 502), +(138792, 'Trey', 1988, 'M', 502), +(138793, 'Julius', 1988, 'M', 501), +(138794, 'Alfonso', 1988, 'M', 500), +(138795, 'Charlie', 1988, 'M', 499), +(138796, 'Elliot', 1988, 'M', 498), +(138797, 'Pablo', 1988, 'M', 497), +(138798, 'Giovanni', 1988, 'M', 494), +(138799, 'Chris', 1988, 'M', 493), +(138800, 'Norman', 1988, 'M', 492), +(138801, 'Leroy', 1988, 'M', 490), +(138802, 'Clint', 1988, 'M', 489), +(138803, 'Clay', 1988, 'M', 488), +(138804, 'Graham', 1988, 'M', 488), +(138805, 'Noel', 1988, 'M', 488), +(138806, 'Bret', 1988, 'M', 487), +(138807, 'Dwight', 1988, 'M', 487), +(138808, 'Marlon', 1988, 'M', 487), +(138809, 'Dominick', 1988, 'M', 481), +(138810, 'Sam', 1988, 'M', 479), +(138811, 'Ismael', 1988, 'M', 474), +(138812, 'Pierre', 1988, 'M', 474), +(138813, 'Donte', 1988, 'M', 468), +(138814, 'Owen', 1988, 'M', 466), +(138815, 'Vernon', 1988, 'M', 463), +(138816, 'Gordon', 1988, 'M', 462), +(138817, 'Alonzo', 1988, 'M', 460), +(138818, 'Brennan', 1988, 'M', 460), +(138819, 'Kent', 1988, 'M', 459), +(138820, 'Neal', 1988, 'M', 459), +(138821, 'Perry', 1988, 'M', 456), +(138822, 'Don', 1988, 'M', 453), +(138823, 'Gilberto', 1988, 'M', 450), +(138824, 'Leo', 1988, 'M', 449), +(138825, 'Oliver', 1988, 'M', 438), +(138826, 'Rodolfo', 1988, 'M', 438), +(138827, 'Demarcus', 1988, 'M', 437), +(138828, 'Weston', 1988, 'M', 437), +(138829, 'Saul', 1988, 'M', 435), +(138830, 'Roland', 1988, 'M', 434), +(138831, 'Rolando', 1988, 'M', 431), +(138832, 'Ben', 1988, 'M', 430), +(138833, 'Felipe', 1988, 'M', 430), +(138834, 'Rickey', 1988, 'M', 429), +(138835, 'Alec', 1988, 'M', 426), +(138836, 'Hugo', 1988, 'M', 421), +(138837, 'Kerry', 1988, 'M', 421), +(138838, 'Parker', 1988, 'M', 418), +(138839, 'Alexis', 1988, 'M', 417), +(138840, 'Lonnie', 1988, 'M', 415), +(138841, 'Sterling', 1988, 'M', 414), +(138842, 'Conor', 1988, 'M', 412), +(138843, 'Kaleb', 1988, 'M', 406), +(138844, 'Rory', 1988, 'M', 406), +(138845, 'Darrin', 1988, 'M', 403), +(138846, 'Forrest', 1988, 'M', 401), +(138847, 'Herbert', 1988, 'M', 400), +(138848, 'Esteban', 1988, 'M', 399), +(138849, 'Jaron', 1988, 'M', 399), +(138850, 'Jayson', 1988, 'M', 399), +(138851, 'Kasey', 1988, 'M', 398), +(138852, 'Sebastian', 1988, 'M', 394), +(138853, 'Korey', 1988, 'M', 393), +(138854, 'Fred', 1988, 'M', 392), +(138855, 'Brice', 1988, 'M', 390), +(138856, 'Duane', 1988, 'M', 390), +(138857, 'Jackson', 1988, 'M', 389), +(138858, 'Lloyd', 1988, 'M', 387), +(138859, 'Sheldon', 1988, 'M', 387), +(138860, 'Myles', 1988, 'M', 385), +(138861, 'Rick', 1988, 'M', 385), +(138862, 'Dana', 1988, 'M', 384), +(138863, 'Rogelio', 1988, 'M', 384), +(138864, 'Carlton', 1988, 'M', 382), +(138865, 'Mike', 1988, 'M', 380), +(138866, 'Zackery', 1988, 'M', 380), +(138867, 'Brendon', 1988, 'M', 378), +(138868, 'Wyatt', 1988, 'M', 376), +(138869, 'Zane', 1988, 'M', 376), +(138870, 'Corbin', 1988, 'M', 374), +(138871, 'Cornelius', 1988, 'M', 374), +(138872, 'Frankie', 1988, 'M', 373), +(138873, 'Fredrick', 1988, 'M', 373), +(138874, 'Salvatore', 1988, 'M', 373), +(138875, 'Deangelo', 1988, 'M', 370), +(138876, 'Bradford', 1988, 'M', 368), +(138877, 'Jordon', 1988, 'M', 367), +(138878, 'Darin', 1988, 'M', 366), +(138879, 'Coty', 1988, 'M', 365), +(138880, 'Milton', 1988, 'M', 365), +(138881, 'Avery', 1988, 'M', 362), +(138882, 'Jamel', 1988, 'M', 361), +(138883, 'Antwan', 1988, 'M', 355), +(138884, 'Dusty', 1988, 'M', 355), +(138885, 'Leonardo', 1988, 'M', 355), +(138886, 'Nathanael', 1988, 'M', 353), +(138887, 'Wilson', 1988, 'M', 353), +(138888, 'Tomas', 1988, 'M', 352), +(138889, 'Emilio', 1988, 'M', 347), +(138890, 'Ariel', 1988, 'M', 343), +(138891, 'Rusty', 1988, 'M', 342), +(138892, 'Sidney', 1988, 'M', 341), +(138893, 'Ramiro', 1988, 'M', 337), +(138894, 'Moises', 1988, 'M', 336), +(138895, 'Ty', 1988, 'M', 336), +(138896, 'Chadwick', 1988, 'M', 335), +(138897, 'Reid', 1988, 'M', 335), +(138898, 'Keenan', 1988, 'M', 333), +(138899, 'Spenser', 1988, 'M', 333), +(138900, 'Demario', 1988, 'M', 332), +(138901, 'Ali', 1988, 'M', 331), +(138902, 'Irvin', 1988, 'M', 328), +(138903, 'Kristofer', 1988, 'M', 328), +(138904, 'Jimmie', 1988, 'M', 327), +(138905, 'Gerard', 1988, 'M', 326), +(138906, 'Guy', 1988, 'M', 326), +(138907, 'Jerrod', 1988, 'M', 326), +(138908, 'Robin', 1988, 'M', 325), +(138909, 'Everett', 1988, 'M', 322), +(138910, 'Jeff', 1988, 'M', 322), +(138911, 'Freddie', 1988, 'M', 319), +(138912, 'Clark', 1988, 'M', 318), +(138913, 'Leslie', 1988, 'M', 318), +(138914, 'Tracy', 1988, 'M', 316), +(138915, 'Bryson', 1988, 'M', 312), +(138916, 'Ashton', 1988, 'M', 309), +(138917, 'Lester', 1988, 'M', 309), +(138918, 'Lamont', 1988, 'M', 307), +(138919, 'Gene', 1988, 'M', 304), +(138920, 'Irving', 1988, 'M', 304), +(138921, 'Ashley', 1988, 'M', 303), +(138922, 'Raphael', 1988, 'M', 303), +(138923, 'Isiah', 1988, 'M', 302), +(138924, 'Loren', 1988, 'M', 300), +(138925, 'Markus', 1988, 'M', 299), +(138926, 'Donnie', 1988, 'M', 297), +(138927, 'Moses', 1988, 'M', 296), +(138928, 'Brenden', 1988, 'M', 295), +(138929, 'Rocky', 1988, 'M', 295), +(138930, 'Noe', 1988, 'M', 293), +(138931, 'Johnnie', 1988, 'M', 292), +(138932, 'Dorian', 1988, 'M', 291), +(138933, 'Ted', 1988, 'M', 291), +(138934, 'Kellen', 1988, 'M', 290), +(138935, 'Davon', 1988, 'M', 289), +(138936, 'Deshawn', 1988, 'M', 289), +(138937, 'Jean', 1988, 'M', 289), +(138938, 'Nikolas', 1988, 'M', 289), +(138939, 'Kareem', 1988, 'M', 288), +(138940, 'Freddy', 1988, 'M', 287), +(138941, 'Braden', 1988, 'M', 286), +(138942, 'Kameron', 1988, 'M', 286), +(138943, 'Efrain', 1988, 'M', 285), +(138944, 'Carson', 1988, 'M', 283), +(138945, 'Reynaldo', 1988, 'M', 283), +(138946, 'Shayne', 1988, 'M', 282), +(138947, 'Quintin', 1988, 'M', 281), +(138948, 'Marcel', 1988, 'M', 278), +(138949, 'Herman', 1988, 'M', 276), +(138950, 'Floyd', 1988, 'M', 275), +(138951, 'Bryon', 1988, 'M', 274), +(138952, 'Quincy', 1988, 'M', 274), +(138953, 'Reuben', 1988, 'M', 274), +(138954, 'Sonny', 1988, 'M', 274), +(138955, 'Toby', 1988, 'M', 274), +(138956, 'Arnold', 1988, 'M', 271), +(138957, 'Davis', 1988, 'M', 271), +(138958, 'Humberto', 1988, 'M', 271), +(138959, 'Westley', 1988, 'M', 271), +(138960, 'Adan', 1988, 'M', 270), +(138961, 'Cecil', 1988, 'M', 270), +(138962, 'Stewart', 1988, 'M', 268), +(138963, 'Conrad', 1988, 'M', 267), +(138964, 'Dewayne', 1988, 'M', 267), +(138965, 'Quinn', 1988, 'M', 267), +(138966, 'Carter', 1988, 'M', 264), +(138967, 'Devan', 1988, 'M', 263), +(138968, 'Mackenzie', 1988, 'M', 262), +(138969, 'Lukas', 1988, 'M', 261), +(138970, 'Jameson', 1988, 'M', 259), +(138971, 'Reed', 1988, 'M', 258), +(138972, 'Dion', 1988, 'M', 257), +(138973, 'Mauricio', 1988, 'M', 256), +(138974, 'Solomon', 1988, 'M', 255), +(138975, 'Garret', 1988, 'M', 254), +(138976, 'Harvey', 1988, 'M', 254), +(138977, 'Myron', 1988, 'M', 254), +(138978, 'Jamaal', 1988, 'M', 253), +(138979, 'Jody', 1988, 'M', 252), +(138980, 'Aron', 1988, 'M', 251), +(138981, 'Jackie', 1988, 'M', 251), +(138982, 'Dan', 1988, 'M', 250), +(138983, 'Leland', 1988, 'M', 250), +(138984, 'Addison', 1988, 'M', 249), +(138985, 'Cordell', 1988, 'M', 249), +(138986, 'Jarod', 1988, 'M', 249), +(138987, 'Lionel', 1988, 'M', 249), +(138988, 'Lane', 1988, 'M', 248), +(138989, 'Lyle', 1988, 'M', 248), +(138990, 'Thaddeus', 1988, 'M', 248), +(138991, 'Mitchel', 1988, 'M', 247), +(138992, 'Rex', 1988, 'M', 247), +(138993, 'Jasper', 1988, 'M', 246), +(138994, 'Vicente', 1988, 'M', 246), +(138995, 'Randolph', 1988, 'M', 245), +(138996, 'Shea', 1988, 'M', 245), +(138997, 'Vance', 1988, 'M', 245), +(138998, 'Santiago', 1988, 'M', 244), +(138999, 'Cristian', 1988, 'M', 243), +(139000, 'Jonah', 1988, 'M', 243), +(139001, 'Alton', 1988, 'M', 242), +(139002, 'Alvaro', 1988, 'M', 241), +(139003, 'Deon', 1988, 'M', 241), +(139004, 'Erich', 1988, 'M', 241), +(139005, 'Will', 1988, 'M', 241), +(139006, 'Jamison', 1988, 'M', 240), +(139007, 'Nick', 1988, 'M', 240), +(139008, 'Nigel', 1988, 'M', 240), +(139009, 'Donnell', 1988, 'M', 239), +(139010, 'Wendell', 1988, 'M', 239), +(139011, 'Ahmad', 1988, 'M', 238), +(139012, 'Josh', 1988, 'M', 238), +(139013, 'Mohammad', 1988, 'M', 237), +(139014, 'Cordero', 1988, 'M', 236), +(139015, 'Cortez', 1988, 'M', 234), +(139016, 'Sammy', 1988, 'M', 234), +(139017, 'Griffin', 1988, 'M', 232), +(139018, 'Anton', 1988, 'M', 231), +(139019, 'Skylar', 1988, 'M', 230), +(139020, 'Guadalupe', 1988, 'M', 229), +(139021, 'Jovan', 1988, 'M', 229), +(139022, 'Rodrigo', 1988, 'M', 229), +(139023, 'Chester', 1988, 'M', 228), +(139024, 'Drake', 1988, 'M', 228), +(139025, 'Harley', 1988, 'M', 228), +(139026, 'Jace', 1988, 'M', 228), +(139027, 'Randal', 1988, 'M', 228), +(139028, 'Tucker', 1988, 'M', 228), +(139029, 'Joaquin', 1988, 'M', 227), +(139030, 'Winston', 1988, 'M', 226), +(139031, 'Arron', 1988, 'M', 225), +(139032, 'Jessica', 1988, 'M', 225), +(139033, 'Amos', 1988, 'M', 224), +(139034, 'Chandler', 1988, 'M', 224), +(139035, 'Javon', 1988, 'M', 224), +(139036, 'Clyde', 1988, 'M', 223), +(139037, 'Akeem', 1988, 'M', 221), +(139038, 'Ignacio', 1988, 'M', 221), +(139039, 'Leonel', 1988, 'M', 221), +(139040, 'Nestor', 1988, 'M', 215), +(139041, 'Amir', 1988, 'M', 214), +(139042, 'Dalton', 1988, 'M', 214), +(139043, 'Jim', 1988, 'M', 214), +(139044, 'Keegan', 1988, 'M', 214), +(139045, 'Garry', 1988, 'M', 213), +(139046, 'Kelsey', 1988, 'M', 213), +(139047, 'Rico', 1988, 'M', 213), +(139048, 'Robbie', 1988, 'M', 211), +(139049, 'Scotty', 1988, 'M', 211), +(139050, 'Aubrey', 1988, 'M', 210), +(139051, 'Barrett', 1988, 'M', 210), +(139052, 'Bradly', 1988, 'M', 208), +(139053, 'Nathanial', 1988, 'M', 208), +(139054, 'Rigoberto', 1988, 'M', 206), +(139055, 'Jerrell', 1988, 'M', 205), +(139056, 'Blair', 1988, 'M', 204), +(139057, 'Stephon', 1988, 'M', 204), +(139058, 'Antwon', 1988, 'M', 203), +(139059, 'Bennett', 1988, 'M', 203), +(139060, 'Erin', 1988, 'M', 203), +(139061, 'Greg', 1988, 'M', 203), +(139062, 'Mychal', 1988, 'M', 203), +(139063, 'Sylvester', 1988, 'M', 203), +(139064, 'Royce', 1988, 'M', 202), +(139065, 'Ezra', 1988, 'M', 201), +(139066, 'Tory', 1988, 'M', 200), +(139067, 'Jess', 1988, 'M', 199), +(139068, 'Teddy', 1988, 'M', 199), +(139069, 'Adolfo', 1988, 'M', 196), +(139070, 'Marquise', 1988, 'M', 196), +(139071, 'Ahmed', 1988, 'M', 195), +(139072, 'Ervin', 1988, 'M', 195), +(139073, 'Colt', 1988, 'M', 193), +(139074, 'Benny', 1988, 'M', 192), +(139075, 'Kristian', 1988, 'M', 192), +(139076, 'Otis', 1988, 'M', 192), +(139077, 'Agustin', 1988, 'M', 191), +(139078, 'Ezekiel', 1988, 'M', 191), +(139079, 'Moshe', 1988, 'M', 191), +(139080, 'Brooks', 1988, 'M', 190), +(139081, 'Jerald', 1988, 'M', 189), +(139082, 'Marty', 1988, 'M', 189), +(139083, 'Tom', 1988, 'M', 188), +(139084, 'Hugh', 1988, 'M', 186), +(139085, 'Kirby', 1988, 'M', 186), +(139086, 'Darrel', 1988, 'M', 185), +(139087, 'Tobias', 1988, 'M', 185), +(139088, 'Shelby', 1988, 'M', 184), +(139089, 'Elvis', 1988, 'M', 183), +(139090, 'Willis', 1988, 'M', 183), +(139091, 'Tyree', 1988, 'M', 182), +(139092, 'Brant', 1988, 'M', 181), +(139093, 'Claude', 1988, 'M', 180), +(139094, 'Heriberto', 1988, 'M', 180), +(139095, 'Pete', 1988, 'M', 179), +(139096, 'Ulysses', 1988, 'M', 179), +(139097, 'Deonte', 1988, 'M', 178), +(139098, 'Jakob', 1988, 'M', 178), +(139099, 'Justen', 1988, 'M', 178), +(139100, 'Paris', 1988, 'M', 178), +(139101, 'Darrius', 1988, 'M', 177), +(139102, 'Josef', 1988, 'M', 177), +(139103, 'Kyler', 1988, 'M', 177), +(139104, 'Mohammed', 1988, 'M', 177), +(139105, 'Bronson', 1988, 'M', 176), +(139106, 'Conner', 1988, 'M', 175), +(139107, 'Jonas', 1988, 'M', 174), +(139108, 'Cruz', 1988, 'M', 173), +(139109, 'Luther', 1988, 'M', 173), +(139110, 'Bo', 1988, 'M', 172), +(139111, 'Grady', 1988, 'M', 172), +(139112, 'Houston', 1988, 'M', 172), +(139113, 'Issac', 1988, 'M', 172), +(139114, 'Jerod', 1988, 'M', 172), +(139115, 'Baby', 1988, 'M', 171), +(139116, 'Marques', 1988, 'M', 170), +(139117, 'Sherman', 1988, 'M', 170), +(139118, 'Jefferson', 1988, 'M', 169), +(139119, 'Joesph', 1988, 'M', 169), +(139120, 'Liam', 1988, 'M', 169), +(139121, 'Rudolph', 1988, 'M', 169), +(139122, 'Wilfredo', 1988, 'M', 169), +(139123, 'Brandan', 1988, 'M', 168), +(139124, 'Duncan', 1988, 'M', 168), +(139125, 'Elmer', 1988, 'M', 168), +(139126, 'Marion', 1988, 'M', 168), +(139127, 'Morris', 1988, 'M', 168), +(139128, 'Aric', 1988, 'M', 167), +(139129, 'Carey', 1988, 'M', 167), +(139130, 'Estevan', 1988, 'M', 167), +(139131, 'Cyrus', 1988, 'M', 166), +(139132, 'Tylor', 1988, 'M', 166), +(139133, 'Jerel', 1988, 'M', 165), +(139134, 'Rodrick', 1988, 'M', 165), +(139135, 'Bernardo', 1988, 'M', 164), +(139136, 'Antony', 1988, 'M', 163), +(139137, 'Dereck', 1988, 'M', 163), +(139138, 'Keaton', 1988, 'M', 163), +(139139, 'Cullen', 1988, 'M', 162), +(139140, 'Dave', 1988, 'M', 162), +(139141, 'Ryne', 1988, 'M', 162), +(139142, 'Cary', 1988, 'M', 161), +(139143, 'Mikel', 1988, 'M', 161), +(139144, 'Trever', 1988, 'M', 161), +(139145, 'Derik', 1988, 'M', 160), +(139146, 'Edmund', 1988, 'M', 160), +(139147, 'Damion', 1988, 'M', 159), +(139148, 'Dandre', 1988, 'M', 159), +(139149, 'Hans', 1988, 'M', 159), +(139150, 'Justine', 1988, 'M', 159), +(139151, 'Malik', 1988, 'M', 158), +(139152, 'Rhett', 1988, 'M', 158), +(139153, 'Earnest', 1988, 'M', 157), +(139154, 'Santos', 1988, 'M', 157), +(139155, 'Jarrell', 1988, 'M', 156), +(139156, 'Jerad', 1988, 'M', 155), +(139157, 'Titus', 1988, 'M', 155), +(139158, 'Tommie', 1988, 'M', 155), +(139159, 'Brody', 1988, 'M', 154), +(139160, 'Cristopher', 1988, 'M', 153), +(139161, 'Hassan', 1988, 'M', 153), +(139162, 'Reece', 1988, 'M', 152), +(139163, 'Cortney', 1988, 'M', 151), +(139164, 'Grayson', 1988, 'M', 151), +(139165, 'Brandyn', 1988, 'M', 150), +(139166, 'Fidel', 1988, 'M', 150), +(139167, 'Rashawn', 1988, 'M', 150), +(139168, 'Shelton', 1988, 'M', 150), +(139169, 'Jeramy', 1988, 'M', 149), +(139170, 'Asa', 1988, 'M', 148), +(139171, 'German', 1988, 'M', 148), +(139172, 'Gregg', 1988, 'M', 148), +(139173, 'Ira', 1988, 'M', 148), +(139174, 'Roosevelt', 1988, 'M', 148), +(139175, 'Galen', 1988, 'M', 147), +(139176, 'Ron', 1988, 'M', 147), +(139177, 'Ellis', 1988, 'M', 146), +(139178, 'Jacques', 1988, 'M', 146), +(139179, 'Maximilian', 1988, 'M', 146), +(139180, 'Austen', 1988, 'M', 145), +(139181, 'Bennie', 1988, 'M', 145), +(139182, 'Bill', 1988, 'M', 145), +(139183, 'Mickey', 1988, 'M', 145), +(139184, 'Daren', 1988, 'M', 144), +(139185, 'Gonzalo', 1988, 'M', 144), +(139186, 'Jairo', 1988, 'M', 144), +(139187, 'Kenton', 1988, 'M', 144), +(139188, 'Matt', 1988, 'M', 144), +(139189, 'Octavio', 1988, 'M', 144), +(139190, 'Cooper', 1988, 'M', 143), +(139191, 'Holden', 1988, 'M', 143), +(139192, 'Junior', 1988, 'M', 143), +(139193, 'Camron', 1988, 'M', 142), +(139194, 'Virgil', 1988, 'M', 142), +(139195, 'Cornell', 1988, 'M', 141), +(139196, 'Deven', 1988, 'M', 141), +(139197, 'Jamil', 1988, 'M', 141), +(139198, 'Vaughn', 1988, 'M', 141), +(139199, 'Cale', 1988, 'M', 140), +(139200, 'Carlo', 1988, 'M', 140), +(139201, 'Timmy', 1988, 'M', 140), +(139202, 'Benito', 1988, 'M', 139), +(139203, 'Jedidiah', 1988, 'M', 138), +(139204, 'Prince', 1988, 'M', 138), +(139205, 'Stacy', 1988, 'M', 138), +(139206, 'Chaim', 1988, 'M', 137), +(139207, 'Coleman', 1988, 'M', 137), +(139208, 'Pierce', 1988, 'M', 137), +(139209, 'Uriel', 1988, 'M', 137), +(139210, 'Wallace', 1988, 'M', 137), +(139211, 'Braxton', 1988, 'M', 136), +(139212, 'Broderick', 1988, 'M', 136), +(139213, 'Colten', 1988, 'M', 134), +(139214, 'Dejuan', 1988, 'M', 134), +(139215, 'Jeffry', 1988, 'M', 134), +(139216, 'Brain', 1988, 'M', 133), +(139217, 'Derrell', 1988, 'M', 133), +(139218, 'Kraig', 1988, 'M', 133), +(139219, 'Long', 1988, 'M', 133), +(139220, 'Daron', 1988, 'M', 132), +(139221, 'Gino', 1988, 'M', 132), +(139222, 'Louie', 1988, 'M', 132), +(139223, 'Mack', 1988, 'M', 132), +(139224, 'Abram', 1988, 'M', 131), +(139225, 'Cedrick', 1988, 'M', 131), +(139226, 'Keon', 1988, 'M', 131), +(139227, 'Samson', 1988, 'M', 131), +(139228, 'Codey', 1988, 'M', 130), +(139229, 'Osvaldo', 1988, 'M', 130), +(139230, 'Torrey', 1988, 'M', 130), +(139231, 'Van', 1988, 'M', 130), +(139232, 'Alphonso', 1988, 'M', 129), +(139233, 'Dario', 1988, 'M', 129), +(139234, 'Darwin', 1988, 'M', 129), +(139235, 'Davin', 1988, 'M', 129), +(139236, 'Jeromy', 1988, 'M', 129), +(139237, 'Dontae', 1988, 'M', 128), +(139238, 'Jeremie', 1988, 'M', 128), +(139239, 'Shay', 1988, 'M', 128), +(139240, 'Trevin', 1988, 'M', 128), +(139241, 'Deron', 1988, 'M', 127), +(139242, 'Jered', 1988, 'M', 127), +(139243, 'Tyron', 1988, 'M', 127), +(139244, 'Donta', 1988, 'M', 126), +(139245, 'Edmond', 1988, 'M', 126), +(139246, 'Antione', 1988, 'M', 125), +(139247, 'Brandin', 1988, 'M', 125), +(139248, 'Curt', 1988, 'M', 125), +(139249, 'Marlin', 1988, 'M', 125), +(139250, 'Randell', 1988, 'M', 125), +(139251, 'Arsenio', 1988, 'M', 124), +(139252, 'Aldo', 1988, 'M', 123), +(139253, 'Brennen', 1988, 'M', 123), +(139254, 'Amanda', 1988, 'M', 122), +(139255, 'August', 1988, 'M', 122), +(139256, 'Chauncey', 1988, 'M', 122), +(139257, 'Elvin', 1988, 'M', 122), +(139258, 'Darrick', 1988, 'M', 121), +(139259, 'Donavan', 1988, 'M', 121), +(139260, 'Jessy', 1988, 'M', 121), +(139261, 'Lincoln', 1988, 'M', 121), +(139262, 'Rocco', 1988, 'M', 121), +(139263, 'Alonso', 1988, 'M', 120), +(139264, 'Jory', 1988, 'M', 120), +(139265, 'Laron', 1988, 'M', 120), +(139266, 'Robby', 1988, 'M', 120), +(139267, 'Ari', 1988, 'M', 119), +(139268, 'Ezequiel', 1988, 'M', 119), +(139269, 'Jed', 1988, 'M', 119), +(139270, 'Monte', 1988, 'M', 119), +(139271, 'Stacey', 1988, 'M', 119), +(139272, 'Andreas', 1988, 'M', 118), +(139273, 'Brandt', 1988, 'M', 118), +(139274, 'Britton', 1988, 'M', 118), +(139275, 'Demarco', 1988, 'M', 118), +(139276, 'Efren', 1988, 'M', 118), +(139277, 'Waylon', 1988, 'M', 117), +(139278, 'Cassidy', 1988, 'M', 116), +(139279, 'Eddy', 1988, 'M', 116), +(139280, 'Greggory', 1988, 'M', 116), +(139281, 'Isidro', 1988, 'M', 116), +(139282, 'Jaquan', 1988, 'M', 116), +(139283, 'Rashaad', 1988, 'M', 116), +(139284, 'Silas', 1988, 'M', 116), +(139285, 'Archie', 1988, 'M', 115), +(139286, 'Dashawn', 1988, 'M', 115), +(139287, 'Dirk', 1988, 'M', 115), +(139288, 'Geraldo', 1988, 'M', 115), +(139289, 'Martez', 1988, 'M', 115), +(139290, 'Mohamed', 1988, 'M', 115), +(139291, 'Theron', 1988, 'M', 115), +(139292, 'Whitney', 1988, 'M', 115), +(139293, 'Eliezer', 1988, 'M', 114), +(139294, 'Jennifer', 1988, 'M', 114), +(139295, 'Johathan', 1988, 'M', 114), +(139296, 'Kelby', 1988, 'M', 114), +(139297, 'Garrison', 1988, 'M', 113), +(139298, 'Hayden', 1988, 'M', 113), +(139299, 'Jade', 1988, 'M', 113), +(139300, 'Coby', 1988, 'M', 112), +(139301, 'Darron', 1988, 'M', 112), +(139302, 'Denny', 1988, 'M', 112), +(139303, 'Isaias', 1988, 'M', 112), +(139304, 'Kalvin', 1988, 'M', 111), +(139305, 'Ken', 1988, 'M', 111), +(139306, 'Emmett', 1988, 'M', 110), +(139307, 'Gregorio', 1988, 'M', 110), +(139308, 'Jamarcus', 1988, 'M', 110), +(139309, 'Jeremey', 1988, 'M', 110), +(139310, 'Michel', 1988, 'M', 110), +(139311, 'Donavon', 1988, 'M', 109), +(139312, 'Jan', 1988, 'M', 109), +(139313, 'Anderson', 1988, 'M', 108), +(139314, 'Coy', 1988, 'M', 108), +(139315, 'Jacoby', 1988, 'M', 108), +(139316, 'Jarad', 1988, 'M', 108), +(139317, 'Kale', 1988, 'M', 108), +(139318, 'Kane', 1988, 'M', 108), +(139319, 'Kolby', 1988, 'M', 108), +(139320, 'Tad', 1988, 'M', 108), +(139321, 'Jeramie', 1988, 'M', 107), +(139322, 'Kristoffer', 1988, 'M', 107), +(139323, 'Raymundo', 1988, 'M', 107), +(139324, 'Dangelo', 1988, 'M', 106), +(139325, 'Derrek', 1988, 'M', 106), +(139326, 'Keven', 1988, 'M', 106), +(139327, 'Laurence', 1988, 'M', 106), +(139328, 'Muhammad', 1988, 'M', 106), +(139329, 'Payton', 1988, 'M', 106), +(139330, 'Percy', 1988, 'M', 106), +(139331, 'Reggie', 1988, 'M', 106), +(139332, 'Schuyler', 1988, 'M', 106), +(139333, 'Vince', 1988, 'M', 106), +(139334, 'Danial', 1988, 'M', 105), +(139335, 'Francesco', 1988, 'M', 105), +(139336, 'Marquez', 1988, 'M', 105), +(139337, 'Raheem', 1988, 'M', 105), +(139338, 'Reese', 1988, 'M', 105), +(139339, 'Tyrel', 1988, 'M', 105), +(139340, 'Buddy', 1988, 'M', 104), +(139341, 'Cade', 1988, 'M', 104), +(139342, 'Channing', 1988, 'M', 104), +(139343, 'Martell', 1988, 'M', 104), +(139344, 'Rickie', 1988, 'M', 104), +(139345, 'Travon', 1988, 'M', 104), +(139346, 'Wilbert', 1988, 'M', 104), +(139347, 'Deric', 1988, 'M', 103), +(139348, 'Domingo', 1988, 'M', 103), +(139349, 'Horace', 1988, 'M', 103), +(139350, 'Jaymes', 1988, 'M', 103), +(139351, 'Madison', 1988, 'M', 103), +(139352, 'Armand', 1988, 'M', 102), +(139353, 'Edwardo', 1988, 'M', 102), +(139354, 'Elizabeth', 1988, 'M', 102), +(139355, 'Jermey', 1988, 'M', 102), +(139356, 'Ronny', 1988, 'M', 102), +(139357, 'Dominque', 1988, 'M', 101), +(139358, 'Brittany', 1988, 'M', 100), +(139359, 'Darian', 1988, 'M', 100), +(139360, 'Donny', 1988, 'M', 100), +(139361, 'Levon', 1988, 'M', 100), +(139362, 'Maria', 1988, 'M', 100), +(139363, 'Nathen', 1988, 'M', 100), +(139364, 'Jessica', 1989, 'F', 47882), +(139365, 'Ashley', 1989, 'F', 47586), +(139366, 'Brittany', 1989, 'F', 37786); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(139367, 'Amanda', 1989, 'F', 36826), +(139368, 'Sarah', 1989, 'F', 27790), +(139369, 'Samantha', 1989, 'F', 24791), +(139370, 'Jennifer', 1989, 'F', 23991), +(139371, 'Stephanie', 1989, 'F', 22767), +(139372, 'Lauren', 1989, 'F', 21063), +(139373, 'Elizabeth', 1989, 'F', 20291), +(139374, 'Megan', 1989, 'F', 19785), +(139375, 'Nicole', 1989, 'F', 19022), +(139376, 'Emily', 1989, 'F', 17322), +(139377, 'Amber', 1989, 'F', 16757), +(139378, 'Heather', 1989, 'F', 16249), +(139379, 'Tiffany', 1989, 'F', 15711), +(139380, 'Danielle', 1989, 'F', 15365), +(139381, 'Rachel', 1989, 'F', 15354), +(139382, 'Melissa', 1989, 'F', 15202), +(139383, 'Kayla', 1989, 'F', 14901), +(139384, 'Courtney', 1989, 'F', 13452), +(139385, 'Michelle', 1989, 'F', 13378), +(139386, 'Christina', 1989, 'F', 13136), +(139387, 'Rebecca', 1989, 'F', 12431), +(139388, 'Laura', 1989, 'F', 11739), +(139389, 'Katherine', 1989, 'F', 11419), +(139390, 'Chelsea', 1989, 'F', 11247), +(139391, 'Kimberly', 1989, 'F', 11034), +(139392, 'Sara', 1989, 'F', 9706), +(139393, 'Jasmine', 1989, 'F', 9548), +(139394, 'Kelsey', 1989, 'F', 9257), +(139395, 'Crystal', 1989, 'F', 9101), +(139396, 'Alyssa', 1989, 'F', 9043), +(139397, 'Erica', 1989, 'F', 9023), +(139398, 'Amy', 1989, 'F', 8898), +(139399, 'Kristen', 1989, 'F', 8800), +(139400, 'Kelly', 1989, 'F', 8761), +(139401, 'Mary', 1989, 'F', 8642), +(139402, 'Andrea', 1989, 'F', 8407), +(139403, 'Erin', 1989, 'F', 8142), +(139404, 'Brittney', 1989, 'F', 7832), +(139405, 'Hannah', 1989, 'F', 7829), +(139406, 'Alexandra', 1989, 'F', 7676), +(139407, 'Victoria', 1989, 'F', 7633), +(139408, 'Katie', 1989, 'F', 7292), +(139409, 'Allison', 1989, 'F', 7287), +(139410, 'Angela', 1989, 'F', 7200), +(139411, 'Lindsey', 1989, 'F', 7067), +(139412, 'Caitlin', 1989, 'F', 7028), +(139413, 'Vanessa', 1989, 'F', 6956), +(139414, 'Anna', 1989, 'F', 6890), +(139415, 'Jamie', 1989, 'F', 6847), +(139416, 'Alicia', 1989, 'F', 6818), +(139417, 'Cassandra', 1989, 'F', 6694), +(139418, 'Lisa', 1989, 'F', 6574), +(139419, 'Maria', 1989, 'F', 6332), +(139420, 'Whitney', 1989, 'F', 6308), +(139421, 'Kathryn', 1989, 'F', 6294), +(139422, 'Christine', 1989, 'F', 6133), +(139423, 'Kristin', 1989, 'F', 6061), +(139424, 'Shannon', 1989, 'F', 5661), +(139425, 'Natalie', 1989, 'F', 5629), +(139426, 'Lindsay', 1989, 'F', 5525), +(139427, 'Jacqueline', 1989, 'F', 5444), +(139428, 'Kristina', 1989, 'F', 4803), +(139429, 'April', 1989, 'F', 4734), +(139430, 'Catherine', 1989, 'F', 4557), +(139431, 'Monica', 1989, 'F', 4502), +(139432, 'Morgan', 1989, 'F', 4427), +(139433, 'Tara', 1989, 'F', 4370), +(139434, 'Jenna', 1989, 'F', 4339), +(139435, 'Jordan', 1989, 'F', 4280), +(139436, 'Erika', 1989, 'F', 4190), +(139437, 'Brooke', 1989, 'F', 4147), +(139438, 'Taylor', 1989, 'F', 4068), +(139439, 'Katelyn', 1989, 'F', 4036), +(139440, 'Brianna', 1989, 'F', 3995), +(139441, 'Julie', 1989, 'F', 3944), +(139442, 'Holly', 1989, 'F', 3895), +(139443, 'Meghan', 1989, 'F', 3856), +(139444, 'Marissa', 1989, 'F', 3794), +(139445, 'Krystal', 1989, 'F', 3785), +(139446, 'Leah', 1989, 'F', 3785), +(139447, 'Cynthia', 1989, 'F', 3777), +(139448, 'Veronica', 1989, 'F', 3711), +(139449, 'Diana', 1989, 'F', 3685), +(139450, 'Natasha', 1989, 'F', 3668), +(139451, 'Melanie', 1989, 'F', 3628), +(139452, 'Patricia', 1989, 'F', 3607), +(139453, 'Kathleen', 1989, 'F', 3597), +(139454, 'Bianca', 1989, 'F', 3593), +(139455, 'Alexis', 1989, 'F', 3513), +(139456, 'Molly', 1989, 'F', 3457), +(139457, 'Abigail', 1989, 'F', 3401), +(139458, 'Kaitlyn', 1989, 'F', 3393), +(139459, 'Julia', 1989, 'F', 3368), +(139460, 'Margaret', 1989, 'F', 3285), +(139461, 'Brandi', 1989, 'F', 3248), +(139462, 'Kendra', 1989, 'F', 3229), +(139463, 'Kaitlin', 1989, 'F', 3170), +(139464, 'Kara', 1989, 'F', 3120), +(139465, 'Bethany', 1989, 'F', 3081), +(139466, 'Casey', 1989, 'F', 3079), +(139467, 'Alexandria', 1989, 'F', 3059), +(139468, 'Dana', 1989, 'F', 3001), +(139469, 'Jillian', 1989, 'F', 2920), +(139470, 'Angelica', 1989, 'F', 2875), +(139471, 'Leslie', 1989, 'F', 2865), +(139472, 'Rachael', 1989, 'F', 2832), +(139473, 'Karen', 1989, 'F', 2757), +(139474, 'Felicia', 1989, 'F', 2751), +(139475, 'Gabrielle', 1989, 'F', 2719), +(139476, 'Caroline', 1989, 'F', 2663), +(139477, 'Kiara', 1989, 'F', 2624), +(139478, 'Katrina', 1989, 'F', 2622), +(139479, 'Sabrina', 1989, 'F', 2574), +(139480, 'Valerie', 1989, 'F', 2561), +(139481, 'Britney', 1989, 'F', 2496), +(139482, 'Alison', 1989, 'F', 2491), +(139483, 'Meagan', 1989, 'F', 2465), +(139484, 'Brandy', 1989, 'F', 2455), +(139485, 'Alisha', 1989, 'F', 2436), +(139486, 'Olivia', 1989, 'F', 2433), +(139487, 'Paige', 1989, 'F', 2391), +(139488, 'Haley', 1989, 'F', 2361), +(139489, 'Briana', 1989, 'F', 2353), +(139490, 'Desiree', 1989, 'F', 2348), +(139491, 'Nancy', 1989, 'F', 2342), +(139492, 'Sandra', 1989, 'F', 2328), +(139493, 'Miranda', 1989, 'F', 2324), +(139494, 'Brenda', 1989, 'F', 2272), +(139495, 'Ana', 1989, 'F', 2270), +(139496, 'Candace', 1989, 'F', 2267), +(139497, 'Candice', 1989, 'F', 2263), +(139498, 'Adriana', 1989, 'F', 2258), +(139499, 'Nichole', 1989, 'F', 2233), +(139500, 'Krista', 1989, 'F', 2224), +(139501, 'Jaclyn', 1989, 'F', 2216), +(139502, 'Monique', 1989, 'F', 2208), +(139503, 'Chelsey', 1989, 'F', 2201), +(139504, 'Gina', 1989, 'F', 2168), +(139505, 'Joanna', 1989, 'F', 2116), +(139506, 'Lacey', 1989, 'F', 2076), +(139507, 'Ashlee', 1989, 'F', 2046), +(139508, 'Denise', 1989, 'F', 2033), +(139509, 'Stacey', 1989, 'F', 2016), +(139510, 'Mallory', 1989, 'F', 1970), +(139511, 'Carrie', 1989, 'F', 1957), +(139512, 'Emma', 1989, 'F', 1932), +(139513, 'Kylie', 1989, 'F', 1927), +(139514, 'Grace', 1989, 'F', 1926), +(139515, 'Stacy', 1989, 'F', 1882), +(139516, 'Anne', 1989, 'F', 1879), +(139517, 'Rebekah', 1989, 'F', 1869), +(139518, 'Sierra', 1989, 'F', 1863), +(139519, 'Tabitha', 1989, 'F', 1853), +(139520, 'Linda', 1989, 'F', 1843), +(139521, 'Carolyn', 1989, 'F', 1810), +(139522, 'Colleen', 1989, 'F', 1809), +(139523, 'Robin', 1989, 'F', 1801), +(139524, 'Susan', 1989, 'F', 1800), +(139525, 'Deanna', 1989, 'F', 1757), +(139526, 'Breanna', 1989, 'F', 1746), +(139527, 'Priscilla', 1989, 'F', 1739), +(139528, 'Kelli', 1989, 'F', 1735), +(139529, 'Cristina', 1989, 'F', 1733), +(139530, 'Angel', 1989, 'F', 1716), +(139531, 'Meredith', 1989, 'F', 1701), +(139532, 'Sasha', 1989, 'F', 1698), +(139533, 'Audrey', 1989, 'F', 1683), +(139534, 'Claire', 1989, 'F', 1670), +(139535, 'Renee', 1989, 'F', 1660), +(139536, 'Dominique', 1989, 'F', 1641), +(139537, 'Bridget', 1989, 'F', 1634), +(139538, 'Melinda', 1989, 'F', 1586), +(139539, 'Ebony', 1989, 'F', 1578), +(139540, 'Cindy', 1989, 'F', 1568), +(139541, 'Justine', 1989, 'F', 1565), +(139542, 'Carly', 1989, 'F', 1555), +(139543, 'Theresa', 1989, 'F', 1544), +(139544, 'Heidi', 1989, 'F', 1539), +(139545, 'Karina', 1989, 'F', 1538), +(139546, 'Kirsten', 1989, 'F', 1537), +(139547, 'Arielle', 1989, 'F', 1530), +(139548, 'Teresa', 1989, 'F', 1530), +(139549, 'Barbara', 1989, 'F', 1494), +(139550, 'Tamara', 1989, 'F', 1484), +(139551, 'Autumn', 1989, 'F', 1481), +(139552, 'Tracy', 1989, 'F', 1465), +(139553, 'Latoya', 1989, 'F', 1464), +(139554, 'Mayra', 1989, 'F', 1455), +(139555, 'Claudia', 1989, 'F', 1412), +(139556, 'Tanya', 1989, 'F', 1388), +(139557, 'Kristine', 1989, 'F', 1376), +(139558, 'Marie', 1989, 'F', 1376), +(139559, 'Cassie', 1989, 'F', 1375), +(139560, 'Jacquelyn', 1989, 'F', 1365), +(139561, 'Pamela', 1989, 'F', 1335), +(139562, 'Wendy', 1989, 'F', 1335), +(139563, 'Ashleigh', 1989, 'F', 1331), +(139564, 'Tina', 1989, 'F', 1322), +(139565, 'Ellen', 1989, 'F', 1315), +(139566, 'Alexa', 1989, 'F', 1305), +(139567, 'Yesenia', 1989, 'F', 1303), +(139568, 'Kari', 1989, 'F', 1299), +(139569, 'Savannah', 1989, 'F', 1289), +(139570, 'Jenny', 1989, 'F', 1288), +(139571, 'Kasey', 1989, 'F', 1286), +(139572, 'Hillary', 1989, 'F', 1285), +(139573, 'Ariel', 1989, 'F', 1284), +(139574, 'Cara', 1989, 'F', 1276), +(139575, 'Abby', 1989, 'F', 1275), +(139576, 'Adrienne', 1989, 'F', 1271), +(139577, 'Michele', 1989, 'F', 1267), +(139578, 'Virginia', 1989, 'F', 1266), +(139579, 'Amelia', 1989, 'F', 1265), +(139580, 'Lydia', 1989, 'F', 1258), +(139581, 'Tiara', 1989, 'F', 1254), +(139582, 'Daisy', 1989, 'F', 1253), +(139583, 'Martha', 1989, 'F', 1248), +(139584, 'Caitlyn', 1989, 'F', 1234), +(139585, 'Madison', 1989, 'F', 1224), +(139586, 'Gabriela', 1989, 'F', 1222), +(139587, 'Misty', 1989, 'F', 1220), +(139588, 'Mercedes', 1989, 'F', 1219), +(139589, 'Kristy', 1989, 'F', 1218), +(139590, 'Janet', 1989, 'F', 1208), +(139591, 'Tasha', 1989, 'F', 1204), +(139592, 'Shelby', 1989, 'F', 1203), +(139593, 'Sydney', 1989, 'F', 1193), +(139594, 'Carmen', 1989, 'F', 1188), +(139595, 'Janelle', 1989, 'F', 1183), +(139596, 'Kristi', 1989, 'F', 1173), +(139597, 'Evelyn', 1989, 'F', 1170), +(139598, 'Nina', 1989, 'F', 1169), +(139599, 'Raquel', 1989, 'F', 1168), +(139600, 'Madeline', 1989, 'F', 1167), +(139601, 'Destiny', 1989, 'F', 1151), +(139602, 'Jessie', 1989, 'F', 1148), +(139603, 'Jade', 1989, 'F', 1146), +(139604, 'Brittani', 1989, 'F', 1143), +(139605, 'Rosa', 1989, 'F', 1138), +(139606, 'Allyson', 1989, 'F', 1120), +(139607, 'Sharon', 1989, 'F', 1119), +(139608, 'Christy', 1989, 'F', 1093), +(139609, 'Ann', 1989, 'F', 1088), +(139610, 'Gloria', 1989, 'F', 1080), +(139611, 'Jocelyn', 1989, 'F', 1080), +(139612, 'Jasmin', 1989, 'F', 1077), +(139613, 'Kate', 1989, 'F', 1077), +(139614, 'Deborah', 1989, 'F', 1076), +(139615, 'Carla', 1989, 'F', 1066), +(139616, 'Elise', 1989, 'F', 1064), +(139617, 'Sophia', 1989, 'F', 1058), +(139618, 'Jill', 1989, 'F', 1057), +(139619, 'Toni', 1989, 'F', 1054), +(139620, 'Bailey', 1989, 'F', 1051), +(139621, 'Kellie', 1989, 'F', 1044), +(139622, 'Marisa', 1989, 'F', 1036), +(139623, 'Ashton', 1989, 'F', 1027), +(139624, 'Hilary', 1989, 'F', 1027), +(139625, 'Cortney', 1989, 'F', 1024), +(139626, 'Jeanette', 1989, 'F', 1015), +(139627, 'Aimee', 1989, 'F', 1012), +(139628, 'Shawna', 1989, 'F', 1007), +(139629, 'Chelsie', 1989, 'F', 1006), +(139630, 'Nikki', 1989, 'F', 1004), +(139631, 'Stefanie', 1989, 'F', 1002), +(139632, 'Michaela', 1989, 'F', 998), +(139633, 'Donna', 1989, 'F', 992), +(139634, 'Regina', 1989, 'F', 991), +(139635, 'Naomi', 1989, 'F', 989), +(139636, 'Lori', 1989, 'F', 986), +(139637, 'Kaylee', 1989, 'F', 985), +(139638, 'Ruth', 1989, 'F', 985), +(139639, 'Trisha', 1989, 'F', 980), +(139640, 'Roxanne', 1989, 'F', 977), +(139641, 'Ariana', 1989, 'F', 970), +(139642, 'Karla', 1989, 'F', 966), +(139643, 'Carissa', 1989, 'F', 963), +(139644, 'Kelley', 1989, 'F', 957), +(139645, 'Adrianna', 1989, 'F', 954), +(139646, 'Latasha', 1989, 'F', 954), +(139647, 'Brianne', 1989, 'F', 943), +(139648, 'Hayley', 1989, 'F', 934), +(139649, 'Christin', 1989, 'F', 925), +(139650, 'Robyn', 1989, 'F', 912), +(139651, 'Summer', 1989, 'F', 908), +(139652, 'Esther', 1989, 'F', 903), +(139653, 'Alissa', 1989, 'F', 897), +(139654, 'Alejandra', 1989, 'F', 894), +(139655, 'Angelina', 1989, 'F', 893), +(139656, 'Charlotte', 1989, 'F', 893), +(139657, 'Rose', 1989, 'F', 893), +(139658, 'Ciara', 1989, 'F', 883), +(139659, 'Melody', 1989, 'F', 882), +(139660, 'Camille', 1989, 'F', 876), +(139661, 'Randi', 1989, 'F', 876), +(139662, 'Hope', 1989, 'F', 872), +(139663, 'Rachelle', 1989, 'F', 868), +(139664, 'Jaime', 1989, 'F', 865), +(139665, 'Chloe', 1989, 'F', 862), +(139666, 'Cierra', 1989, 'F', 859), +(139667, 'Sonia', 1989, 'F', 859), +(139668, 'Dawn', 1989, 'F', 858), +(139669, 'Helen', 1989, 'F', 857), +(139670, 'Mackenzie', 1989, 'F', 856), +(139671, 'Maggie', 1989, 'F', 840), +(139672, 'Suzanne', 1989, 'F', 836), +(139673, 'Tonya', 1989, 'F', 831), +(139674, 'Asia', 1989, 'F', 812), +(139675, 'Elisabeth', 1989, 'F', 812), +(139676, 'Cecilia', 1989, 'F', 810), +(139677, 'Miriam', 1989, 'F', 809), +(139678, 'Tatiana', 1989, 'F', 806), +(139679, 'Diane', 1989, 'F', 803), +(139680, 'Joy', 1989, 'F', 802), +(139681, 'Krystle', 1989, 'F', 800), +(139682, 'Sylvia', 1989, 'F', 799), +(139683, 'Paula', 1989, 'F', 793), +(139684, 'Aubrey', 1989, 'F', 792), +(139685, 'Carolina', 1989, 'F', 791), +(139686, 'Frances', 1989, 'F', 781), +(139687, 'Eva', 1989, 'F', 780), +(139688, 'Jane', 1989, 'F', 780), +(139689, 'Kassandra', 1989, 'F', 775), +(139690, 'Shana', 1989, 'F', 769), +(139691, 'Sheena', 1989, 'F', 768), +(139692, 'Bonnie', 1989, 'F', 765), +(139693, 'Ruby', 1989, 'F', 763), +(139694, 'Christian', 1989, 'F', 761), +(139695, 'Nadia', 1989, 'F', 761), +(139696, 'Tierra', 1989, 'F', 761), +(139697, 'Kelsie', 1989, 'F', 760), +(139698, 'Clarissa', 1989, 'F', 759), +(139699, 'Taryn', 1989, 'F', 756), +(139700, 'Anastasia', 1989, 'F', 755), +(139701, 'Hailey', 1989, 'F', 752), +(139702, 'Carol', 1989, 'F', 751), +(139703, 'Callie', 1989, 'F', 747), +(139704, 'Yvette', 1989, 'F', 746), +(139705, 'Christa', 1989, 'F', 745), +(139706, 'Alice', 1989, 'F', 741), +(139707, 'Annie', 1989, 'F', 741), +(139708, 'Karissa', 1989, 'F', 739), +(139709, 'Guadalupe', 1989, 'F', 737), +(139710, 'Keri', 1989, 'F', 737), +(139711, 'Meaghan', 1989, 'F', 737), +(139712, 'Lacy', 1989, 'F', 736), +(139713, 'Cheryl', 1989, 'F', 732), +(139714, 'Simone', 1989, 'F', 731), +(139715, 'Jazmine', 1989, 'F', 729), +(139716, 'Brittni', 1989, 'F', 728), +(139717, 'Alyson', 1989, 'F', 725), +(139718, 'Elena', 1989, 'F', 722), +(139719, 'Chasity', 1989, 'F', 719), +(139720, 'Sandy', 1989, 'F', 718), +(139721, 'Tia', 1989, 'F', 716), +(139722, 'Yolanda', 1989, 'F', 713), +(139723, 'Mindy', 1989, 'F', 711), +(139724, 'Keisha', 1989, 'F', 710), +(139725, 'Shayla', 1989, 'F', 710), +(139726, 'Charlene', 1989, 'F', 709), +(139727, 'Rochelle', 1989, 'F', 708), +(139728, 'Faith', 1989, 'F', 707), +(139729, 'Johanna', 1989, 'F', 706), +(139730, 'Antoinette', 1989, 'F', 702), +(139731, 'Tessa', 1989, 'F', 696), +(139732, 'Jazmin', 1989, 'F', 695), +(139733, 'Lillian', 1989, 'F', 695), +(139734, 'Ericka', 1989, 'F', 692), +(139735, 'Chantel', 1989, 'F', 683), +(139736, 'Julianne', 1989, 'F', 682), +(139737, 'Anita', 1989, 'F', 678), +(139738, 'Beth', 1989, 'F', 677), +(139739, 'Elaine', 1989, 'F', 673), +(139740, 'Yvonne', 1989, 'F', 671), +(139741, 'Shaina', 1989, 'F', 669), +(139742, 'Alana', 1989, 'F', 666), +(139743, 'Hanna', 1989, 'F', 664), +(139744, 'Leticia', 1989, 'F', 661), +(139745, 'Staci', 1989, 'F', 661), +(139746, 'Leanna', 1989, 'F', 658), +(139747, 'Mia', 1989, 'F', 658), +(139748, 'Sheila', 1989, 'F', 658), +(139749, 'Christie', 1989, 'F', 656), +(139750, 'Larissa', 1989, 'F', 652), +(139751, 'Daniela', 1989, 'F', 647), +(139752, 'Elisa', 1989, 'F', 641), +(139753, 'Irene', 1989, 'F', 638), +(139754, 'Kristie', 1989, 'F', 636), +(139755, 'Stephani', 1989, 'F', 636), +(139756, 'Katharine', 1989, 'F', 628), +(139757, 'Marilyn', 1989, 'F', 628), +(139758, 'Devon', 1989, 'F', 625), +(139759, 'Casandra', 1989, 'F', 624), +(139760, 'Kendall', 1989, 'F', 623), +(139761, 'Dorothy', 1989, 'F', 620), +(139762, 'Stacie', 1989, 'F', 619), +(139763, 'Alma', 1989, 'F', 615), +(139764, 'Tanisha', 1989, 'F', 615), +(139765, 'Jodi', 1989, 'F', 614), +(139766, 'Katlyn', 1989, 'F', 614), +(139767, 'Isabel', 1989, 'F', 613), +(139768, 'Kylee', 1989, 'F', 613), +(139769, 'Elyse', 1989, 'F', 612), +(139770, 'Kayleigh', 1989, 'F', 609), +(139771, 'Lyndsey', 1989, 'F', 606), +(139772, 'Leigh', 1989, 'F', 603), +(139773, 'Blanca', 1989, 'F', 602), +(139774, 'Marlene', 1989, 'F', 601), +(139775, 'Marina', 1989, 'F', 600), +(139776, 'Marisol', 1989, 'F', 599), +(139777, 'Latisha', 1989, 'F', 597), +(139778, 'Tracey', 1989, 'F', 596), +(139779, 'Nora', 1989, 'F', 595), +(139780, 'Sade', 1989, 'F', 593), +(139781, 'Celeste', 1989, 'F', 592), +(139782, 'Jalisa', 1989, 'F', 592), +(139783, 'Alysha', 1989, 'F', 590), +(139784, 'Tammy', 1989, 'F', 590), +(139785, 'Lorena', 1989, 'F', 589), +(139786, 'Devin', 1989, 'F', 587), +(139787, 'Katy', 1989, 'F', 585), +(139788, 'Mandy', 1989, 'F', 585), +(139789, 'Shayna', 1989, 'F', 585), +(139790, 'Tabatha', 1989, 'F', 581), +(139791, 'Jaleesa', 1989, 'F', 579), +(139792, 'Kyla', 1989, 'F', 579), +(139793, 'Traci', 1989, 'F', 574), +(139794, 'Maribel', 1989, 'F', 572), +(139795, 'Juliana', 1989, 'F', 571), +(139796, 'Charity', 1989, 'F', 568), +(139797, 'Ryan', 1989, 'F', 568), +(139798, 'Shauna', 1989, 'F', 566), +(139799, 'Bridgette', 1989, 'F', 562), +(139800, 'Kerry', 1989, 'F', 560), +(139801, 'Debra', 1989, 'F', 555), +(139802, 'Esmeralda', 1989, 'F', 555), +(139803, 'Brenna', 1989, 'F', 554), +(139804, 'Shanna', 1989, 'F', 553), +(139805, 'Jaimie', 1989, 'F', 551), +(139806, 'Kerri', 1989, 'F', 551), +(139807, 'Corinne', 1989, 'F', 547), +(139808, 'Janice', 1989, 'F', 546), +(139809, 'Lucy', 1989, 'F', 545), +(139810, 'Gabriella', 1989, 'F', 544), +(139811, 'Ashlie', 1989, 'F', 543), +(139812, 'Katelynn', 1989, 'F', 543), +(139813, 'Iris', 1989, 'F', 541), +(139814, 'Alisa', 1989, 'F', 538), +(139815, 'Shanice', 1989, 'F', 537), +(139816, 'Sally', 1989, 'F', 535), +(139817, 'Britany', 1989, 'F', 534), +(139818, 'Alaina', 1989, 'F', 533), +(139819, 'Norma', 1989, 'F', 533), +(139820, 'Leanne', 1989, 'F', 529), +(139821, 'Ciera', 1989, 'F', 528), +(139822, 'Josephine', 1989, 'F', 528), +(139823, 'Laurel', 1989, 'F', 526), +(139824, 'Liliana', 1989, 'F', 526), +(139825, 'Kala', 1989, 'F', 525), +(139826, 'Kierra', 1989, 'F', 525), +(139827, 'Sonya', 1989, 'F', 525), +(139828, 'Tricia', 1989, 'F', 525), +(139829, 'Connie', 1989, 'F', 524), +(139830, 'Eileen', 1989, 'F', 524), +(139831, 'Chanel', 1989, 'F', 523), +(139832, 'Judith', 1989, 'F', 514), +(139833, 'Noelle', 1989, 'F', 513), +(139834, 'Patrice', 1989, 'F', 505), +(139835, 'Stephany', 1989, 'F', 503), +(139836, 'Tiffani', 1989, 'F', 503), +(139837, 'Arianna', 1989, 'F', 502), +(139838, 'Jackie', 1989, 'F', 500), +(139839, 'Tiana', 1989, 'F', 498), +(139840, 'Kaila', 1989, 'F', 497), +(139841, 'Precious', 1989, 'F', 497), +(139842, 'Keshia', 1989, 'F', 496), +(139843, 'Juanita', 1989, 'F', 495), +(139844, 'Constance', 1989, 'F', 489), +(139845, 'Joyce', 1989, 'F', 489), +(139846, 'Blair', 1989, 'F', 488), +(139847, 'Breanne', 1989, 'F', 488), +(139848, 'Maureen', 1989, 'F', 488), +(139849, 'Annette', 1989, 'F', 483), +(139850, 'Cassidy', 1989, 'F', 482), +(139851, 'Jana', 1989, 'F', 482), +(139852, 'Jacklyn', 1989, 'F', 480), +(139853, 'Whitley', 1989, 'F', 480), +(139854, 'Darlene', 1989, 'F', 478), +(139855, 'Natalia', 1989, 'F', 478), +(139856, 'Lara', 1989, 'F', 477), +(139857, 'Kira', 1989, 'F', 476), +(139858, 'Raven', 1989, 'F', 476), +(139859, 'Sadie', 1989, 'F', 476), +(139860, 'Cecily', 1989, 'F', 473), +(139861, 'Ashly', 1989, 'F', 472), +(139862, 'Kali', 1989, 'F', 472), +(139863, 'Abbey', 1989, 'F', 470), +(139864, 'Jena', 1989, 'F', 470), +(139865, 'Kathy', 1989, 'F', 469), +(139866, 'Maritza', 1989, 'F', 467), +(139867, 'Rosemary', 1989, 'F', 466), +(139868, 'Shelly', 1989, 'F', 466), +(139869, 'Vivian', 1989, 'F', 466), +(139870, 'Margarita', 1989, 'F', 464), +(139871, 'Joanne', 1989, 'F', 462), +(139872, 'Janae', 1989, 'F', 461), +(139873, 'Francesca', 1989, 'F', 458), +(139874, 'Kiera', 1989, 'F', 458), +(139875, 'Jami', 1989, 'F', 457), +(139876, 'Shantel', 1989, 'F', 457), +(139877, 'Diamond', 1989, 'F', 456), +(139878, 'Shirley', 1989, 'F', 456), +(139879, 'Beatriz', 1989, 'F', 455), +(139880, 'Daniella', 1989, 'F', 451), +(139881, 'Sherry', 1989, 'F', 451), +(139882, 'Jennie', 1989, 'F', 449), +(139883, 'Kacie', 1989, 'F', 449), +(139884, 'Laurie', 1989, 'F', 448), +(139885, 'Serena', 1989, 'F', 448), +(139886, 'Tori', 1989, 'F', 447), +(139887, 'Elizabet', 1989, 'F', 445), +(139888, 'India', 1989, 'F', 444), +(139889, 'Kelsi', 1989, 'F', 441), +(139890, 'Mollie', 1989, 'F', 441), +(139891, 'Kourtney', 1989, 'F', 439), +(139892, 'Kristyn', 1989, 'F', 438), +(139893, 'Terri', 1989, 'F', 438), +(139894, 'Lakeisha', 1989, 'F', 435), +(139895, 'Beverly', 1989, 'F', 434), +(139896, 'Desirae', 1989, 'F', 434), +(139897, 'Gretchen', 1989, 'F', 430), +(139898, 'Susana', 1989, 'F', 427), +(139899, 'Maegan', 1989, 'F', 426), +(139900, 'Tania', 1989, 'F', 426), +(139901, 'Clara', 1989, 'F', 424), +(139902, 'Justina', 1989, 'F', 423), +(139903, 'Belinda', 1989, 'F', 422), +(139904, 'Ashely', 1989, 'F', 421), +(139905, 'Lynn', 1989, 'F', 420), +(139906, 'Katelin', 1989, 'F', 418), +(139907, 'Nikita', 1989, 'F', 417), +(139908, 'Brittanie', 1989, 'F', 416), +(139909, 'Lily', 1989, 'F', 415), +(139910, 'Hollie', 1989, 'F', 414), +(139911, 'Talia', 1989, 'F', 414), +(139912, 'Lena', 1989, 'F', 413), +(139913, 'Lizette', 1989, 'F', 412), +(139914, 'Rita', 1989, 'F', 411), +(139915, 'Alycia', 1989, 'F', 410), +(139916, 'Britni', 1989, 'F', 410), +(139917, 'Mara', 1989, 'F', 410), +(139918, 'Christen', 1989, 'F', 404), +(139919, 'Araceli', 1989, 'F', 402), +(139920, 'Genevieve', 1989, 'F', 402), +(139921, 'Jerrica', 1989, 'F', 402), +(139922, 'Rhonda', 1989, 'F', 402), +(139923, 'Carina', 1989, 'F', 400), +(139924, 'Betty', 1989, 'F', 399), +(139925, 'Mariah', 1989, 'F', 399), +(139926, 'Loren', 1989, 'F', 397), +(139927, 'Lucia', 1989, 'F', 395), +(139928, 'Lea', 1989, 'F', 394), +(139929, 'Lesley', 1989, 'F', 393), +(139930, 'Cristal', 1989, 'F', 392), +(139931, 'Infant', 1989, 'F', 392), +(139932, 'Julianna', 1989, 'F', 390), +(139933, 'Bobbie', 1989, 'F', 387), +(139934, 'Alysia', 1989, 'F', 386), +(139935, 'Ashlyn', 1989, 'F', 385), +(139936, 'Brandie', 1989, 'F', 381), +(139937, 'Tamika', 1989, 'F', 381), +(139938, 'Lacie', 1989, 'F', 380), +(139939, 'Rocio', 1989, 'F', 380), +(139940, 'Shelley', 1989, 'F', 380), +(139941, 'Octavia', 1989, 'F', 379), +(139942, 'Audra', 1989, 'F', 378), +(139943, 'Cayla', 1989, 'F', 377), +(139944, 'Chantal', 1989, 'F', 376), +(139945, 'Zoe', 1989, 'F', 376), +(139946, 'Allie', 1989, 'F', 375), +(139947, 'Brittaney', 1989, 'F', 375), +(139948, 'Dianna', 1989, 'F', 374), +(139949, 'Aisha', 1989, 'F', 373), +(139950, 'Cheyenne', 1989, 'F', 373), +(139951, 'Kyra', 1989, 'F', 373), +(139952, 'Mckenzie', 1989, 'F', 372), +(139953, 'Terra', 1989, 'F', 371), +(139954, 'Marisela', 1989, 'F', 368), +(139955, 'Brittny', 1989, 'F', 367), +(139956, 'Paris', 1989, 'F', 367), +(139957, 'Judy', 1989, 'F', 363), +(139958, 'Michael', 1989, 'F', 363), +(139959, 'Angie', 1989, 'F', 361), +(139960, 'Edith', 1989, 'F', 359), +(139961, 'Elisha', 1989, 'F', 358), +(139962, 'Eleanor', 1989, 'F', 357), +(139963, 'Jenifer', 1989, 'F', 357), +(139964, 'Nadine', 1989, 'F', 357), +(139965, 'Silvia', 1989, 'F', 357), +(139966, 'Ashli', 1989, 'F', 356), +(139967, 'Mariana', 1989, 'F', 355), +(139968, 'Alanna', 1989, 'F', 354), +(139969, 'Jayme', 1989, 'F', 352), +(139970, 'Kirstin', 1989, 'F', 351), +(139971, 'Kaleigh', 1989, 'F', 349), +(139972, 'Kenya', 1989, 'F', 349), +(139973, 'Maura', 1989, 'F', 349), +(139974, 'Jean', 1989, 'F', 348), +(139975, 'Kaci', 1989, 'F', 348), +(139976, 'Leann', 1989, 'F', 348), +(139977, 'Janette', 1989, 'F', 347), +(139978, 'Stevie', 1989, 'F', 347), +(139979, 'Alecia', 1989, 'F', 346), +(139980, 'Racheal', 1989, 'F', 344), +(139981, 'Maranda', 1989, 'F', 343), +(139982, 'Tiffanie', 1989, 'F', 343), +(139983, 'Dayna', 1989, 'F', 342), +(139984, 'Arlene', 1989, 'F', 341), +(139985, 'Logan', 1989, 'F', 341), +(139986, 'Maya', 1989, 'F', 340), +(139987, 'Elissa', 1989, 'F', 339), +(139988, 'Luz', 1989, 'F', 339), +(139989, 'Chrystal', 1989, 'F', 338), +(139990, 'Jerica', 1989, 'F', 338), +(139991, 'Amie', 1989, 'F', 336), +(139992, 'Angelique', 1989, 'F', 335), +(139993, 'Corina', 1989, 'F', 334), +(139994, 'Savanna', 1989, 'F', 334), +(139995, 'Sophie', 1989, 'F', 334), +(139996, 'Lorraine', 1989, 'F', 332), +(139997, 'Maricela', 1989, 'F', 332), +(139998, 'Selina', 1989, 'F', 332), +(139999, 'Kacey', 1989, 'F', 331), +(140000, 'Emilee', 1989, 'F', 330), +(140001, 'Cori', 1989, 'F', 329), +(140002, 'Danica', 1989, 'F', 328), +(140003, 'Janine', 1989, 'F', 328), +(140004, 'Noemi', 1989, 'F', 326), +(140005, 'Genesis', 1989, 'F', 322), +(140006, 'Josie', 1989, 'F', 321), +(140007, 'Krystina', 1989, 'F', 321), +(140008, 'Nathalie', 1989, 'F', 321), +(140009, 'Sofia', 1989, 'F', 320), +(140010, 'Shante', 1989, 'F', 319), +(140011, 'Alexia', 1989, 'F', 318), +(140012, 'Gwendolyn', 1989, 'F', 318), +(140013, 'Kaley', 1989, 'F', 318), +(140014, 'Janay', 1989, 'F', 315), +(140015, 'Nicolette', 1989, 'F', 315), +(140016, 'Jesse', 1989, 'F', 314), +(140017, 'Katlin', 1989, 'F', 314), +(140018, 'Cassondra', 1989, 'F', 313), +(140019, 'Kristal', 1989, 'F', 312), +(140020, 'Jeannette', 1989, 'F', 311), +(140021, 'Celia', 1989, 'F', 310), +(140022, 'Joann', 1989, 'F', 310), +(140023, 'Kristian', 1989, 'F', 310), +(140024, 'Antonia', 1989, 'F', 309), +(140025, 'Alyse', 1989, 'F', 308), +(140026, 'Kailey', 1989, 'F', 308), +(140027, 'Lyndsay', 1989, 'F', 306), +(140028, 'Emilie', 1989, 'F', 305), +(140029, 'Adrian', 1989, 'F', 304), +(140030, 'Chelsi', 1989, 'F', 304), +(140031, 'Marquita', 1989, 'F', 304), +(140032, 'Beatrice', 1989, 'F', 303), +(140033, 'Eden', 1989, 'F', 303), +(140034, 'Eliza', 1989, 'F', 303), +(140035, 'Kasandra', 1989, 'F', 303), +(140036, 'Lana', 1989, 'F', 303), +(140037, 'Chantelle', 1989, 'F', 302), +(140038, 'Lynette', 1989, 'F', 302), +(140039, 'Rhiannon', 1989, 'F', 302), +(140040, 'Alexandr', 1989, 'F', 301), +(140041, 'Betsy', 1989, 'F', 301), +(140042, 'Princess', 1989, 'F', 301), +(140043, 'Roxana', 1989, 'F', 300), +(140044, 'Alesha', 1989, 'F', 298), +(140045, 'Latrice', 1989, 'F', 298), +(140046, 'Porsha', 1989, 'F', 296), +(140047, 'Adrianne', 1989, 'F', 295), +(140048, 'Kimberley', 1989, 'F', 295), +(140049, 'Lora', 1989, 'F', 295), +(140050, 'Chandra', 1989, 'F', 294), +(140051, 'Fatima', 1989, 'F', 294), +(140052, 'Janie', 1989, 'F', 294), +(140053, 'Kiley', 1989, 'F', 294), +(140054, 'Paulina', 1989, 'F', 294), +(140055, 'Kiersten', 1989, 'F', 293), +(140056, 'Felisha', 1989, 'F', 291), +(140057, 'Breana', 1989, 'F', 290), +(140058, 'Brittnee', 1989, 'F', 289), +(140059, 'Trista', 1989, 'F', 288), +(140060, 'Corey', 1989, 'F', 286), +(140061, 'Yasmin', 1989, 'F', 286), +(140062, 'Kassie', 1989, 'F', 284), +(140063, 'Kori', 1989, 'F', 284), +(140064, 'Latonya', 1989, 'F', 284), +(140065, 'Shanika', 1989, 'F', 284), +(140066, 'Alina', 1989, 'F', 281), +(140067, 'Bobbi', 1989, 'F', 281), +(140068, 'Selena', 1989, 'F', 281), +(140069, 'Yadira', 1989, 'F', 281), +(140070, 'Clare', 1989, 'F', 280), +(140071, 'Joan', 1989, 'F', 280), +(140072, 'Jodie', 1989, 'F', 280), +(140073, 'Kandice', 1989, 'F', 280), +(140074, 'Athena', 1989, 'F', 279), +(140075, 'Laci', 1989, 'F', 279), +(140076, 'Britny', 1989, 'F', 278), +(140077, 'Ivy', 1989, 'F', 278), +(140078, 'Krysta', 1989, 'F', 278), +(140079, 'Madeleine', 1989, 'F', 278), +(140080, 'Katherin', 1989, 'F', 277), +(140081, 'Georgia', 1989, 'F', 275), +(140082, 'Jolene', 1989, 'F', 275), +(140083, 'Darcy', 1989, 'F', 274), +(140084, 'Debbie', 1989, 'F', 274), +(140085, 'Aurora', 1989, 'F', 273), +(140086, 'Janna', 1989, 'F', 273), +(140087, 'Noel', 1989, 'F', 273), +(140088, 'Tiera', 1989, 'F', 273), +(140089, 'Melisa', 1989, 'F', 272), +(140090, 'Sonja', 1989, 'F', 272), +(140091, 'Tyler', 1989, 'F', 272), +(140092, 'Cameron', 1989, 'F', 271), +(140093, 'Jessika', 1989, 'F', 270), +(140094, 'Myra', 1989, 'F', 270), +(140095, 'Tess', 1989, 'F', 270), +(140096, 'Dina', 1989, 'F', 269), +(140097, 'Leandra', 1989, 'F', 269), +(140098, 'Lauryn', 1989, 'F', 267), +(140099, 'Perla', 1989, 'F', 267), +(140100, 'Tracie', 1989, 'F', 267), +(140101, 'Maryann', 1989, 'F', 266), +(140102, 'Olga', 1989, 'F', 266), +(140103, 'Pauline', 1989, 'F', 266), +(140104, 'Abbie', 1989, 'F', 265), +(140105, 'Gladys', 1989, 'F', 265), +(140106, 'Liana', 1989, 'F', 265), +(140107, 'Phylicia', 1989, 'F', 265), +(140108, 'Irma', 1989, 'F', 264), +(140109, 'Kimberlee', 1989, 'F', 264), +(140110, 'Liza', 1989, 'F', 264), +(140111, 'Kaylyn', 1989, 'F', 263), +(140112, 'Gillian', 1989, 'F', 262), +(140113, 'Tameka', 1989, 'F', 262), +(140114, 'Alexandrea', 1989, 'F', 261), +(140115, 'Ali', 1989, 'F', 261), +(140116, 'Becky', 1989, 'F', 261), +(140117, 'Mikayla', 1989, 'F', 261), +(140118, 'Griselda', 1989, 'F', 260), +(140119, 'Stefani', 1989, 'F', 260), +(140120, 'Kim', 1989, 'F', 259), +(140121, 'Portia', 1989, 'F', 259), +(140122, 'Kortney', 1989, 'F', 258), +(140123, 'Audrianna', 1989, 'F', 257), +(140124, 'Kandace', 1989, 'F', 257), +(140125, 'Leeann', 1989, 'F', 257), +(140126, 'Ingrid', 1989, 'F', 255), +(140127, 'Kathrine', 1989, 'F', 255), +(140128, 'Lashonda', 1989, 'F', 255), +(140129, 'Paola', 1989, 'F', 255), +(140130, 'Kyle', 1989, 'F', 254), +(140131, 'Lissette', 1989, 'F', 254), +(140132, 'Roxanna', 1989, 'F', 254), +(140133, 'Marjorie', 1989, 'F', 253), +(140134, 'Iliana', 1989, 'F', 252), +(140135, 'Kaela', 1989, 'F', 252), +(140136, 'Kirstie', 1989, 'F', 251), +(140137, 'Unknown', 1989, 'F', 251), +(140138, 'Catrina', 1989, 'F', 250), +(140139, 'Demetria', 1989, 'F', 250), +(140140, 'Geraldine', 1989, 'F', 250), +(140141, 'Kati', 1989, 'F', 249), +(140142, 'Lizbeth', 1989, 'F', 248), +(140143, 'Samatha', 1989, 'F', 248), +(140144, 'Celina', 1989, 'F', 247), +(140145, 'Kaylin', 1989, 'F', 247), +(140146, 'Martina', 1989, 'F', 247), +(140147, 'Cora', 1989, 'F', 246), +(140148, 'Janessa', 1989, 'F', 246), +(140149, 'Kaitlynn', 1989, 'F', 246), +(140150, 'Mandi', 1989, 'F', 245), +(140151, 'Christopher', 1989, 'F', 242), +(140152, 'Alex', 1989, 'F', 241), +(140153, 'Joelle', 1989, 'F', 241), +(140154, 'Marianne', 1989, 'F', 241), +(140155, 'Richelle', 1989, 'F', 241), +(140156, 'Skye', 1989, 'F', 241), +(140157, 'Mai', 1989, 'F', 240), +(140158, 'Anabel', 1989, 'F', 239), +(140159, 'Asha', 1989, 'F', 239), +(140160, 'Cari', 1989, 'F', 239), +(140161, 'Dara', 1989, 'F', 239), +(140162, 'Rebeca', 1989, 'F', 239), +(140163, 'Aileen', 1989, 'F', 238), +(140164, 'Elaina', 1989, 'F', 238), +(140165, 'Janel', 1989, 'F', 238), +(140166, 'Alexander', 1989, 'F', 237), +(140167, 'Bridgett', 1989, 'F', 237), +(140168, 'Hallie', 1989, 'F', 237), +(140169, 'Holli', 1989, 'F', 237), +(140170, 'Krysten', 1989, 'F', 237), +(140171, 'Madelyn', 1989, 'F', 237), +(140172, 'Yessenia', 1989, 'F', 236), +(140173, 'Bernadette', 1989, 'F', 235), +(140174, 'Deja', 1989, 'F', 235), +(140175, 'Edna', 1989, 'F', 235), +(140176, 'Eboni', 1989, 'F', 234), +(140177, 'Teri', 1989, 'F', 234), +(140178, 'Giselle', 1989, 'F', 233), +(140179, 'Valeria', 1989, 'F', 233), +(140180, 'Billie', 1989, 'F', 232), +(140181, 'Chaya', 1989, 'F', 232), +(140182, 'Kiana', 1989, 'F', 232), +(140183, 'Roberta', 1989, 'F', 232), +(140184, 'Deidra', 1989, 'F', 231), +(140185, 'Lee', 1989, 'F', 231), +(140186, 'Shamika', 1989, 'F', 231), +(140187, 'Jordyn', 1989, 'F', 230), +(140188, 'Kalyn', 1989, 'F', 230), +(140189, 'Maira', 1989, 'F', 230), +(140190, 'Shea', 1989, 'F', 230), +(140191, 'Tera', 1989, 'F', 230), +(140192, 'Carley', 1989, 'F', 229), +(140193, 'Lakeshia', 1989, 'F', 229), +(140194, 'Sherri', 1989, 'F', 229), +(140195, 'Susanna', 1989, 'F', 228), +(140196, 'Charmaine', 1989, 'F', 227), +(140197, 'Jody', 1989, 'F', 227), +(140198, 'Kaylie', 1989, 'F', 227), +(140199, 'Baby', 1989, 'F', 226), +(140200, 'Geneva', 1989, 'F', 226), +(140201, 'Ayla', 1989, 'F', 225), +(140202, 'Cathy', 1989, 'F', 224), +(140203, 'Kallie', 1989, 'F', 224), +(140204, 'Marcella', 1989, 'F', 224), +(140205, 'Cherish', 1989, 'F', 222), +(140206, 'Daphne', 1989, 'F', 222), +(140207, 'Fabiola', 1989, 'F', 221), +(140208, 'Jaqueline', 1989, 'F', 221), +(140209, 'Julissa', 1989, 'F', 221), +(140210, 'Kelsea', 1989, 'F', 221), +(140211, 'Monika', 1989, 'F', 221), +(140212, 'Bryanna', 1989, 'F', 219), +(140213, 'Candy', 1989, 'F', 219), +(140214, 'Delia', 1989, 'F', 219), +(140215, 'Breann', 1989, 'F', 218), +(140216, 'Brittnie', 1989, 'F', 218), +(140217, 'Cherie', 1989, 'F', 218), +(140218, 'Dena', 1989, 'F', 218), +(140219, 'Fallon', 1989, 'F', 218), +(140220, 'Kaycee', 1989, 'F', 218), +(140221, 'Catalina', 1989, 'F', 217), +(140222, 'Rikki', 1989, 'F', 217), +(140223, 'Tawny', 1989, 'F', 217), +(140224, 'Valencia', 1989, 'F', 216), +(140225, 'Janell', 1989, 'F', 215), +(140226, 'Alessandra', 1989, 'F', 214), +(140227, 'Audriana', 1989, 'F', 214), +(140228, 'Brook', 1989, 'F', 214), +(140229, 'Christi', 1989, 'F', 214), +(140230, 'Deidre', 1989, 'F', 214), +(140231, 'Peggy', 1989, 'F', 214), +(140232, 'Jamila', 1989, 'F', 213), +(140233, 'Domonique', 1989, 'F', 212), +(140234, 'Juana', 1989, 'F', 212), +(140235, 'Kasie', 1989, 'F', 212), +(140236, 'Marcia', 1989, 'F', 212), +(140237, 'Tanesha', 1989, 'F', 212), +(140238, 'Danika', 1989, 'F', 211), +(140239, 'Keely', 1989, 'F', 211), +(140240, 'Cory', 1989, 'F', 210), +(140241, 'Jessi', 1989, 'F', 210), +(140242, 'Kristan', 1989, 'F', 210), +(140243, 'Shameka', 1989, 'F', 210), +(140244, 'Laquita', 1989, 'F', 209), +(140245, 'Tosha', 1989, 'F', 209), +(140246, 'Elsa', 1989, 'F', 208), +(140247, 'Krystin', 1989, 'F', 208), +(140248, 'Doris', 1989, 'F', 207), +(140249, 'Georgina', 1989, 'F', 207), +(140250, 'Gianna', 1989, 'F', 207), +(140251, 'Jeanne', 1989, 'F', 207), +(140252, 'Joshua', 1989, 'F', 207), +(140253, 'Makayla', 1989, 'F', 207), +(140254, 'Marlena', 1989, 'F', 207), +(140255, 'Martika', 1989, 'F', 207), +(140256, 'Vicky', 1989, 'F', 207), +(140257, 'Andria', 1989, 'F', 206), +(140258, 'Ashanti', 1989, 'F', 206), +(140259, 'Bree', 1989, 'F', 206), +(140260, 'Allyssa', 1989, 'F', 205), +(140261, 'Glenda', 1989, 'F', 205), +(140262, 'Kia', 1989, 'F', 205), +(140263, 'Shari', 1989, 'F', 205), +(140264, 'Micaela', 1989, 'F', 204), +(140265, 'Mikaela', 1989, 'F', 204), +(140266, 'Shanae', 1989, 'F', 204), +(140267, 'Chastity', 1989, 'F', 203), +(140268, 'Viviana', 1989, 'F', 203), +(140269, 'Graciela', 1989, 'F', 201), +(140270, 'Loretta', 1989, 'F', 201), +(140271, 'Aja', 1989, 'F', 200), +(140272, 'Cecelia', 1989, 'F', 200), +(140273, 'Danyelle', 1989, 'F', 200), +(140274, 'Lia', 1989, 'F', 200), +(140275, 'Destinee', 1989, 'F', 199), +(140276, 'Leila', 1989, 'F', 199), +(140277, 'Reyna', 1989, 'F', 199), +(140278, 'Ivette', 1989, 'F', 198), +(140279, 'Justin', 1989, 'F', 198), +(140280, 'Lakesha', 1989, 'F', 198), +(140281, 'Mari', 1989, 'F', 197), +(140282, 'Chanelle', 1989, 'F', 196), +(140283, 'Nikole', 1989, 'F', 196), +(140284, 'Tarah', 1989, 'F', 196), +(140285, 'Brandee', 1989, 'F', 195), +(140286, 'Lynsey', 1989, 'F', 195), +(140287, 'Dora', 1989, 'F', 194), +(140288, 'Latosha', 1989, 'F', 194), +(140289, 'Lisette', 1989, 'F', 194), +(140290, 'Salina', 1989, 'F', 194), +(140291, 'Trina', 1989, 'F', 194), +(140292, 'Chana', 1989, 'F', 193), +(140293, 'Lakisha', 1989, 'F', 193), +(140294, 'Magen', 1989, 'F', 193), +(140295, 'Marian', 1989, 'F', 193), +(140296, 'Brittnay', 1989, 'F', 192), +(140297, 'Dominque', 1989, 'F', 192), +(140298, 'Shantell', 1989, 'F', 192), +(140299, 'Valarie', 1989, 'F', 192), +(140300, 'Marla', 1989, 'F', 191), +(140301, 'Marsha', 1989, 'F', 191), +(140302, 'Tianna', 1989, 'F', 191), +(140303, 'Cody', 1989, 'F', 190), +(140304, 'Tayler', 1989, 'F', 190), +(140305, 'Jesica', 1989, 'F', 189), +(140306, 'Phoebe', 1989, 'F', 189), +(140307, 'Corrine', 1989, 'F', 188), +(140308, 'Daniel', 1989, 'F', 188), +(140309, 'Yajaira', 1989, 'F', 188), +(140310, 'Yasmine', 1989, 'F', 188), +(140311, 'Moriah', 1989, 'F', 187), +(140312, 'Sheri', 1989, 'F', 187), +(140313, 'Carlie', 1989, 'F', 186), +(140314, 'Casie', 1989, 'F', 186), +(140315, 'Christiana', 1989, 'F', 186), +(140316, 'Karly', 1989, 'F', 186), +(140317, 'Rosanna', 1989, 'F', 186), +(140318, 'Shaniqua', 1989, 'F', 186), +(140319, 'Annmarie', 1989, 'F', 184), +(140320, 'Cherelle', 1989, 'F', 183), +(140321, 'Brigitte', 1989, 'F', 182), +(140322, 'Dolores', 1989, 'F', 182), +(140323, 'Cheri', 1989, 'F', 181), +(140324, 'Chiquita', 1989, 'F', 181), +(140325, 'Juliet', 1989, 'F', 181), +(140326, 'Karin', 1989, 'F', 181), +(140327, 'Sarai', 1989, 'F', 181), +(140328, 'Shakira', 1989, 'F', 181), +(140329, 'Shanelle', 1989, 'F', 181), +(140330, 'Johnna', 1989, 'F', 180), +(140331, 'Kimber', 1989, 'F', 180), +(140332, 'Luisa', 1989, 'F', 180), +(140333, 'Rosalinda', 1989, 'F', 180), +(140334, 'Deana', 1989, 'F', 179), +(140335, 'Eunice', 1989, 'F', 179), +(140336, 'Magan', 1989, 'F', 179), +(140337, 'Micah', 1989, 'F', 179), +(140338, 'Wanda', 1989, 'F', 179), +(140339, 'Avery', 1989, 'F', 178), +(140340, 'Lizeth', 1989, 'F', 178), +(140341, 'Antionette', 1989, 'F', 177), +(140342, 'Brynn', 1989, 'F', 177), +(140343, 'Joni', 1989, 'F', 177), +(140344, 'Rena', 1989, 'F', 177), +(140345, 'James', 1989, 'F', 176), +(140346, 'Kacy', 1989, 'F', 176), +(140347, 'Karli', 1989, 'F', 176), +(140348, 'Lourdes', 1989, 'F', 176), +(140349, 'Deirdre', 1989, 'F', 175), +(140350, 'Helena', 1989, 'F', 175), +(140351, 'Joana', 1989, 'F', 175), +(140352, 'Katheryn', 1989, 'F', 175), +(140353, 'Angelia', 1989, 'F', 174), +(140354, 'Jeannie', 1989, 'F', 174), +(140355, 'Margo', 1989, 'F', 174), +(140356, 'Renae', 1989, 'F', 174), +(140357, 'Ryann', 1989, 'F', 174), +(140358, 'Anjelica', 1989, 'F', 173), +(140359, 'Ava', 1989, 'F', 173), +(140360, 'Felecia', 1989, 'F', 173), +(140361, 'Ginger', 1989, 'F', 173), +(140362, 'Mariel', 1989, 'F', 173), +(140363, 'Matthew', 1989, 'F', 173), +(140364, 'Maxine', 1989, 'F', 173), +(140365, 'Tanika', 1989, 'F', 173), +(140366, 'Tyesha', 1989, 'F', 173), +(140367, 'Alysa', 1989, 'F', 172), +(140368, 'Hilda', 1989, 'F', 172), +(140369, 'Santana', 1989, 'F', 172), +(140370, 'Hali', 1989, 'F', 171), +(140371, 'Sarina', 1989, 'F', 171), +(140372, 'Alyssia', 1989, 'F', 170), +(140373, 'Haleigh', 1989, 'F', 170), +(140374, 'Lucinda', 1989, 'F', 170), +(140375, 'Shanita', 1989, 'F', 170), +(140376, 'Sidney', 1989, 'F', 170), +(140377, 'Linsey', 1989, 'F', 169), +(140378, 'Magdalena', 1989, 'F', 169), +(140379, 'Siobhan', 1989, 'F', 169), +(140380, 'Gabriel', 1989, 'F', 168), +(140381, 'Racquel', 1989, 'F', 168), +(140382, 'Riley', 1989, 'F', 168), +(140383, 'Stella', 1989, 'F', 168), +(140384, 'Talisa', 1989, 'F', 168), +(140385, 'Tiarra', 1989, 'F', 168), +(140386, 'Annamarie', 1989, 'F', 167), +(140387, 'Damaris', 1989, 'F', 167), +(140388, 'Jesenia', 1989, 'F', 167), +(140389, 'Malinda', 1989, 'F', 167), +(140390, 'Rosalie', 1989, 'F', 167), +(140391, 'Rosemarie', 1989, 'F', 167), +(140392, 'Stacia', 1989, 'F', 167), +(140393, 'Bertha', 1989, 'F', 166), +(140394, 'Devan', 1989, 'F', 166), +(140395, 'Heaven', 1989, 'F', 166), +(140396, 'Jada', 1989, 'F', 166), +(140397, 'Karyn', 1989, 'F', 166), +(140398, 'Mattie', 1989, 'F', 166), +(140399, 'Rene', 1989, 'F', 166), +(140400, 'Ada', 1989, 'F', 165), +(140401, 'Amberly', 1989, 'F', 165), +(140402, 'Elyssa', 1989, 'F', 165), +(140403, 'Malia', 1989, 'F', 165), +(140404, 'Berenice', 1989, 'F', 164), +(140405, 'Brooklyn', 1989, 'F', 164), +(140406, 'Danae', 1989, 'F', 164), +(140407, 'Ella', 1989, 'F', 164), +(140408, 'Marta', 1989, 'F', 164), +(140409, 'Reina', 1989, 'F', 164), +(140410, 'Shanell', 1989, 'F', 164), +(140411, 'Dakota', 1989, 'F', 163), +(140412, 'Marcela', 1989, 'F', 163), +(140413, 'Ramona', 1989, 'F', 163), +(140414, 'Ashlea', 1989, 'F', 162), +(140415, 'Janee', 1989, 'F', 162), +(140416, 'Jessenia', 1989, 'F', 162), +(140417, 'Mariela', 1989, 'F', 162), +(140418, 'Sheree', 1989, 'F', 162), +(140419, 'Alesia', 1989, 'F', 161), +(140420, 'Emerald', 1989, 'F', 161), +(140421, 'Iesha', 1989, 'F', 161), +(140422, 'Jenelle', 1989, 'F', 161), +(140423, 'Denisha', 1989, 'F', 160), +(140424, 'Kalie', 1989, 'F', 160), +(140425, 'Shaquita', 1989, 'F', 160), +(140426, 'Angeline', 1989, 'F', 159), +(140427, 'Marci', 1989, 'F', 159), +(140428, 'Porsche', 1989, 'F', 159), +(140429, 'Adilene', 1989, 'F', 158), +(140430, 'Alena', 1989, 'F', 158), +(140431, 'Emilia', 1989, 'F', 158), +(140432, 'Fiona', 1989, 'F', 158), +(140433, 'Flor', 1989, 'F', 158), +(140434, 'Kelcie', 1989, 'F', 158), +(140435, 'Marcy', 1989, 'F', 158), +(140436, 'Penny', 1989, 'F', 158), +(140437, 'Shaquana', 1989, 'F', 158), +(140438, 'Susie', 1989, 'F', 158), +(140439, 'Deandra', 1989, 'F', 157), +(140440, 'Jacqueli', 1989, 'F', 157), +(140441, 'Jewel', 1989, 'F', 157), +(140442, 'Sondra', 1989, 'F', 157), +(140443, 'Anais', 1989, 'F', 156), +(140444, 'Andreina', 1989, 'F', 156), +(140445, 'Aracely', 1989, 'F', 156), +(140446, 'Louise', 1989, 'F', 156), +(140447, 'Sable', 1989, 'F', 156), +(140448, 'Charissa', 1989, 'F', 155), +(140449, 'Merissa', 1989, 'F', 155), +(140450, 'Nichelle', 1989, 'F', 155), +(140451, 'Cathryn', 1989, 'F', 154), +(140452, 'Christal', 1989, 'F', 154), +(140453, 'Hazel', 1989, 'F', 154), +(140454, 'Paulette', 1989, 'F', 154), +(140455, 'Sharonda', 1989, 'F', 154), +(140456, 'Dannielle', 1989, 'F', 153), +(140457, 'Delilah', 1989, 'F', 153), +(140458, 'Jalissa', 1989, 'F', 153), +(140459, 'Kirby', 1989, 'F', 153), +(140460, 'Macy', 1989, 'F', 153), +(140461, 'Malissa', 1989, 'F', 153), +(140462, 'Shanta', 1989, 'F', 153), +(140463, 'Cassandr', 1989, 'F', 152), +(140464, 'Eve', 1989, 'F', 152), +(140465, 'Ladonna', 1989, 'F', 152), +(140466, 'Marion', 1989, 'F', 152), +(140467, 'Shasta', 1989, 'F', 152), +(140468, 'Aubree', 1989, 'F', 151), +(140469, 'Candis', 1989, 'F', 151), +(140470, 'Shawn', 1989, 'F', 151), +(140471, 'Tamra', 1989, 'F', 151), +(140472, 'Venessa', 1989, 'F', 151), +(140473, 'Francine', 1989, 'F', 150), +(140474, 'Cassaundra', 1989, 'F', 149), +(140475, 'Eryn', 1989, 'F', 149), +(140476, 'Haylee', 1989, 'F', 149), +(140477, 'Jeanine', 1989, 'F', 149), +(140478, 'Jeanna', 1989, 'F', 149), +(140479, 'Kenisha', 1989, 'F', 149), +(140480, 'China', 1989, 'F', 148), +(140481, 'David', 1989, 'F', 148), +(140482, 'Eliana', 1989, 'F', 148), +(140483, 'Leilani', 1989, 'F', 148), +(140484, 'Lina', 1989, 'F', 148), +(140485, 'Andrew', 1989, 'F', 147), +(140486, 'Austin', 1989, 'F', 147), +(140487, 'Blake', 1989, 'F', 147), +(140488, 'Colette', 1989, 'F', 147), +(140489, 'Kayley', 1989, 'F', 147), +(140490, 'Kiarra', 1989, 'F', 147), +(140491, 'Madalyn', 1989, 'F', 147), +(140492, 'Nakita', 1989, 'F', 147), +(140493, 'Alix', 1989, 'F', 146), +(140494, 'Ayana', 1989, 'F', 146), +(140495, 'Francisca', 1989, 'F', 146), +(140496, 'Kailee', 1989, 'F', 146), +(140497, 'Nataly', 1989, 'F', 146), +(140498, 'Natosha', 1989, 'F', 146), +(140499, 'Brielle', 1989, 'F', 145), +(140500, 'Carli', 1989, 'F', 145), +(140501, 'Corrie', 1989, 'F', 145), +(140502, 'Denisse', 1989, 'F', 145), +(140503, 'Dulce', 1989, 'F', 145), +(140504, 'Giovanna', 1989, 'F', 145), +(140505, 'Jelisa', 1989, 'F', 145), +(140506, 'Leigha', 1989, 'F', 145), +(140507, 'Tenisha', 1989, 'F', 145), +(140508, 'Bernice', 1989, 'F', 144), +(140509, 'Danelle', 1989, 'F', 144), +(140510, 'Gabriell', 1989, 'F', 144), +(140511, 'Kami', 1989, 'F', 144), +(140512, 'Nia', 1989, 'F', 144), +(140513, 'Britteny', 1989, 'F', 143), +(140514, 'Catherin', 1989, 'F', 143), +(140515, 'Francis', 1989, 'F', 143), +(140516, 'Melina', 1989, 'F', 143), +(140517, 'Nakia', 1989, 'F', 143), +(140518, 'Annemarie', 1989, 'F', 142), +(140519, 'Carlee', 1989, 'F', 142), +(140520, 'Farrah', 1989, 'F', 142), +(140521, 'Leona', 1989, 'F', 142), +(140522, 'Meghann', 1989, 'F', 142), +(140523, 'Shanda', 1989, 'F', 142), +(140524, 'Stormy', 1989, 'F', 142), +(140525, 'Terry', 1989, 'F', 142), +(140526, 'Viridiana', 1989, 'F', 142), +(140527, 'Chyna', 1989, 'F', 141), +(140528, 'Grecia', 1989, 'F', 141), +(140529, 'Lakendra', 1989, 'F', 141), +(140530, 'Lidia', 1989, 'F', 141), +(140531, 'Lindy', 1989, 'F', 141), +(140532, 'Cathleen', 1989, 'F', 140), +(140533, 'Cherise', 1989, 'F', 140), +(140534, 'Lynda', 1989, 'F', 140), +(140535, 'Mariam', 1989, 'F', 140), +(140536, 'Pearl', 1989, 'F', 140), +(140537, 'Stephenie', 1989, 'F', 140), +(140538, 'Talisha', 1989, 'F', 140), +(140539, 'Ashlynn', 1989, 'F', 139), +(140540, 'Isabella', 1989, 'F', 139), +(140541, 'Isabelle', 1989, 'F', 139), +(140542, 'Joseph', 1989, 'F', 139), +(140543, 'Laquisha', 1989, 'F', 139), +(140544, 'Mona', 1989, 'F', 139), +(140545, 'Shalonda', 1989, 'F', 139), +(140546, 'Alba', 1989, 'F', 138), +(140547, 'Britta', 1989, 'F', 138), +(140548, 'Cherrelle', 1989, 'F', 138), +(140549, 'Natashia', 1989, 'F', 138), +(140550, 'Scarlett', 1989, 'F', 138), +(140551, 'Unique', 1989, 'F', 138), +(140552, 'Ileana', 1989, 'F', 137), +(140553, 'Karlee', 1989, 'F', 137), +(140554, 'Lilia', 1989, 'F', 137), +(140555, 'Nicolle', 1989, 'F', 137), +(140556, 'Regan', 1989, 'F', 137), +(140557, 'Tristan', 1989, 'F', 137), +(140558, 'Elana', 1989, 'F', 136), +(140559, 'Kelsy', 1989, 'F', 136), +(140560, 'Vanesa', 1989, 'F', 136), +(140561, 'Brandon', 1989, 'F', 135), +(140562, 'Hana', 1989, 'F', 135), +(140563, 'Marcie', 1989, 'F', 135), +(140564, 'Sheryl', 1989, 'F', 135), +(140565, 'Brigette', 1989, 'F', 134), +(140566, 'Britnee', 1989, 'F', 134), +(140567, 'Deena', 1989, 'F', 134), +(140568, 'John', 1989, 'F', 134), +(140569, 'Mallorie', 1989, 'F', 134), +(140570, 'Porscha', 1989, 'F', 134), +(140571, 'Reva', 1989, 'F', 134), +(140572, 'Rubi', 1989, 'F', 134), +(140573, 'Therese', 1989, 'F', 134), +(140574, 'Vicki', 1989, 'F', 134), +(140575, 'Whittney', 1989, 'F', 134), +(140576, 'Caryn', 1989, 'F', 133), +(140577, 'Cinthia', 1989, 'F', 133), +(140578, 'Codi', 1989, 'F', 133), +(140579, 'Ida', 1989, 'F', 133), +(140580, 'Jayne', 1989, 'F', 133), +(140581, 'Alayna', 1989, 'F', 132), +(140582, 'Cali', 1989, 'F', 132), +(140583, 'Esperanza', 1989, 'F', 132), +(140584, 'Kaylynn', 1989, 'F', 132), +(140585, 'Lashawn', 1989, 'F', 132), +(140586, 'Tiesha', 1989, 'F', 132), +(140587, 'Violet', 1989, 'F', 132), +(140588, 'Carey', 1989, 'F', 131), +(140589, 'Dixie', 1989, 'F', 131), +(140590, 'Gail', 1989, 'F', 131), +(140591, 'Kalee', 1989, 'F', 131), +(140592, 'Kayli', 1989, 'F', 131), +(140593, 'Lashanda', 1989, 'F', 131), +(140594, 'Laken', 1989, 'F', 130), +(140595, 'Latia', 1989, 'F', 130), +(140596, 'Tyra', 1989, 'F', 130), +(140597, 'Alia', 1989, 'F', 129), +(140598, 'Corinna', 1989, 'F', 129), +(140599, 'Dianne', 1989, 'F', 129), +(140600, 'Elsie', 1989, 'F', 129), +(140601, 'June', 1989, 'F', 129), +(140602, 'Shae', 1989, 'F', 129), +(140603, 'Ellie', 1989, 'F', 128), +(140604, 'Kerrie', 1989, 'F', 128), +(140605, 'Samara', 1989, 'F', 128), +(140606, 'Taja', 1989, 'F', 128), +(140607, 'Trinity', 1989, 'F', 128), +(140608, 'Candi', 1989, 'F', 127), +(140609, 'Imani', 1989, 'F', 127), +(140610, 'Mildred', 1989, 'F', 127), +(140611, 'Skylar', 1989, 'F', 127), +(140612, 'Tequila', 1989, 'F', 127), +(140613, 'Amalia', 1989, 'F', 126), +(140614, 'Darci', 1989, 'F', 126), +(140615, 'Davina', 1989, 'F', 126), +(140616, 'Gena', 1989, 'F', 126), +(140617, 'Lila', 1989, 'F', 126), +(140618, 'Rhea', 1989, 'F', 126), +(140619, 'Robert', 1989, 'F', 126), +(140620, 'Roseanne', 1989, 'F', 126), +(140621, 'Thea', 1989, 'F', 126), +(140622, 'Anthony', 1989, 'F', 125), +(140623, 'Gracie', 1989, 'F', 125), +(140624, 'Ilana', 1989, 'F', 125), +(140625, 'Kyleigh', 1989, 'F', 125), +(140626, 'Latesha', 1989, 'F', 125), +(140627, 'Marguerite', 1989, 'F', 125), +(140628, 'Rosalyn', 1989, 'F', 125), +(140629, 'Shaniece', 1989, 'F', 125), +(140630, 'Chantell', 1989, 'F', 124), +(140631, 'Eugenia', 1989, 'F', 124), +(140632, 'Keara', 1989, 'F', 124), +(140633, 'Kesha', 1989, 'F', 124), +(140634, 'Markita', 1989, 'F', 124), +(140635, 'Monet', 1989, 'F', 124), +(140636, 'Shay', 1989, 'F', 124), +(140637, 'Starr', 1989, 'F', 124), +(140638, 'Suzanna', 1989, 'F', 124), +(140639, 'Tana', 1989, 'F', 124), +(140640, 'Adriane', 1989, 'F', 123), +(140641, 'Afton', 1989, 'F', 123), +(140642, 'Alishia', 1989, 'F', 123), +(140643, 'Coral', 1989, 'F', 123), +(140644, 'Dalia', 1989, 'F', 123), +(140645, 'Karrie', 1989, 'F', 123), +(140646, 'Reanna', 1989, 'F', 123), +(140647, 'Rosie', 1989, 'F', 123), +(140648, 'Salena', 1989, 'F', 123), +(140649, 'Shavon', 1989, 'F', 123), +(140650, 'Aleisha', 1989, 'F', 122), +(140651, 'Brett', 1989, 'F', 122), +(140652, 'Chelsy', 1989, 'F', 122), +(140653, 'Daniele', 1989, 'F', 122), +(140654, 'Danna', 1989, 'F', 122), +(140655, 'Ivonne', 1989, 'F', 122), +(140656, 'Karlie', 1989, 'F', 122), +(140657, 'Keosha', 1989, 'F', 122), +(140658, 'Lashay', 1989, 'F', 122), +(140659, 'Leeanna', 1989, 'F', 122), +(140660, 'Malorie', 1989, 'F', 122), +(140661, 'Misti', 1989, 'F', 122), +(140662, 'Rae', 1989, 'F', 122), +(140663, 'Valentina', 1989, 'F', 122), +(140664, 'Aida', 1989, 'F', 121), +(140665, 'Jenae', 1989, 'F', 121), +(140666, 'Joslyn', 1989, 'F', 121), +(140667, 'Kelcey', 1989, 'F', 121), +(140668, 'Kindra', 1989, 'F', 121), +(140669, 'Melyssa', 1989, 'F', 121), +(140670, 'Nicholas', 1989, 'F', 121), +(140671, 'Serina', 1989, 'F', 121), +(140672, 'Susannah', 1989, 'F', 121), +(140673, 'Tabetha', 1989, 'F', 121), +(140674, 'Aleshia', 1989, 'F', 120), +(140675, 'Jacquelynn', 1989, 'F', 120), +(140676, 'Marlee', 1989, 'F', 120), +(140677, 'Starla', 1989, 'F', 120), +(140678, 'Xiomara', 1989, 'F', 120), +(140679, 'Frankie', 1989, 'F', 119), +(140680, 'Jeana', 1989, 'F', 119), +(140681, 'Jeri', 1989, 'F', 119), +(140682, 'Jourdan', 1989, 'F', 119), +(140683, 'Stephaine', 1989, 'F', 119), +(140684, 'Tami', 1989, 'F', 119), +(140685, 'Jaimee', 1989, 'F', 118), +(140686, 'Kay', 1989, 'F', 118), +(140687, 'Keila', 1989, 'F', 118), +(140688, 'Lois', 1989, 'F', 118), +(140689, 'Lynnette', 1989, 'F', 118), +(140690, 'Paloma', 1989, 'F', 118), +(140691, 'Darla', 1989, 'F', 117), +(140692, 'Julisa', 1989, 'F', 117), +(140693, 'Mellissa', 1989, 'F', 117), +(140694, 'Thalia', 1989, 'F', 117), +(140695, 'Aubrie', 1989, 'F', 116), +(140696, 'Belen', 1989, 'F', 116), +(140697, 'Camilla', 1989, 'F', 116), +(140698, 'Jacquelin', 1989, 'F', 116), +(140699, 'Lacee', 1989, 'F', 116), +(140700, 'Raina', 1989, 'F', 116), +(140701, 'Shaneka', 1989, 'F', 116), +(140702, 'Vannessa', 1989, 'F', 116), +(140703, 'Annika', 1989, 'F', 115), +(140704, 'Chante', 1989, 'F', 115), +(140705, 'Corie', 1989, 'F', 115), +(140706, 'Eric', 1989, 'F', 115), +(140707, 'Jasmyne', 1989, 'F', 115), +(140708, 'Kaylan', 1989, 'F', 115), +(140709, 'Niki', 1989, 'F', 115), +(140710, 'Shanay', 1989, 'F', 115), +(140711, 'Sunny', 1989, 'F', 115), +(140712, 'Evan', 1989, 'F', 114), +(140713, 'Farah', 1989, 'F', 114), +(140714, 'Juliette', 1989, 'F', 114), +(140715, 'Lucero', 1989, 'F', 114), +(140716, 'Yanira', 1989, 'F', 114), +(140717, 'Anya', 1989, 'F', 113), +(140718, 'Arianne', 1989, 'F', 113), +(140719, 'Britani', 1989, 'F', 113), +(140720, 'Cassi', 1989, 'F', 113), +(140721, 'Franchesca', 1989, 'F', 113), +(140722, 'Kayleen', 1989, 'F', 113), +(140723, 'Lucille', 1989, 'F', 113), +(140724, 'Marianna', 1989, 'F', 113), +(140725, 'Misha', 1989, 'F', 113), +(140726, 'Patience', 1989, 'F', 113), +(140727, 'Rosario', 1989, 'F', 113), +(140728, 'Allegra', 1989, 'F', 112), +(140729, 'Elvia', 1989, 'F', 112), +(140730, 'Greta', 1989, 'F', 112), +(140731, 'Lillie', 1989, 'F', 112), +(140732, 'Tonia', 1989, 'F', 112), +(140733, 'Addie', 1989, 'F', 111), +(140734, 'Annalisa', 1989, 'F', 111), +(140735, 'Shara', 1989, 'F', 111), +(140736, 'Ami', 1989, 'F', 110), +(140737, 'Annabel', 1989, 'F', 110), +(140738, 'Bethanie', 1989, 'F', 110), +(140739, 'Bryana', 1989, 'F', 110), +(140740, 'Crista', 1989, 'F', 110), +(140741, 'Dallas', 1989, 'F', 110), +(140742, 'Josefina', 1989, 'F', 110), +(140743, 'Myesha', 1989, 'F', 110), +(140744, 'Sharee', 1989, 'F', 110), +(140745, 'Taneisha', 1989, 'F', 110), +(140746, 'Wendi', 1989, 'F', 110), +(140747, 'Amaris', 1989, 'F', 109), +(140748, 'Ariane', 1989, 'F', 109), +(140749, 'Essence', 1989, 'F', 109), +(140750, 'Jasmyn', 1989, 'F', 109), +(140751, 'Jenni', 1989, 'F', 109), +(140752, 'Katina', 1989, 'F', 109), +(140753, 'Loni', 1989, 'F', 109), +(140754, 'Stefany', 1989, 'F', 109), +(140755, 'Chassidy', 1989, 'F', 108), +(140756, 'Ebonie', 1989, 'F', 108), +(140757, 'Ivana', 1989, 'F', 108), +(140758, 'Karisa', 1989, 'F', 108), +(140759, 'Mireya', 1989, 'F', 108), +(140760, 'Ayesha', 1989, 'F', 107), +(140761, 'Chynna', 1989, 'F', 107), +(140762, 'Cristin', 1989, 'F', 107), +(140763, 'Kassidy', 1989, 'F', 107), +(140764, 'Lorin', 1989, 'F', 107), +(140765, 'Mellisa', 1989, 'F', 107), +(140766, 'Tegan', 1989, 'F', 107), +(140767, 'Calli', 1989, 'F', 106), +(140768, 'Eleni', 1989, 'F', 106), +(140769, 'Florence', 1989, 'F', 106), +(140770, 'Juliann', 1989, 'F', 106), +(140771, 'Katarina', 1989, 'F', 106), +(140772, 'Katerina', 1989, 'F', 106), +(140773, 'Latricia', 1989, 'F', 106), +(140774, 'Rayna', 1989, 'F', 106), +(140775, 'Yuri', 1989, 'F', 106), +(140776, 'Allysa', 1989, 'F', 105), +(140777, 'Colby', 1989, 'F', 105), +(140778, 'Dani', 1989, 'F', 105), +(140779, 'Kelci', 1989, 'F', 105), +(140780, 'Latoria', 1989, 'F', 105), +(140781, 'Leighann', 1989, 'F', 105), +(140782, 'Samone', 1989, 'F', 105), +(140783, 'Sommer', 1989, 'F', 105), +(140784, 'Tamar', 1989, 'F', 105), +(140785, 'Tawni', 1989, 'F', 105), +(140786, 'Tisha', 1989, 'F', 105), +(140787, 'Ursula', 1989, 'F', 105), +(140788, 'Adria', 1989, 'F', 104), +(140789, 'Courtnie', 1989, 'F', 104), +(140790, 'Elicia', 1989, 'F', 104), +(140791, 'Ivory', 1989, 'F', 104), +(140792, 'Kendal', 1989, 'F', 104), +(140793, 'Louisa', 1989, 'F', 104), +(140794, 'Makenzie', 1989, 'F', 104), +(140795, 'Mica', 1989, 'F', 104), +(140796, 'Raechel', 1989, 'F', 104), +(140797, 'Vera', 1989, 'F', 104), +(140798, 'Alora', 1989, 'F', 103), +(140799, 'Kailyn', 1989, 'F', 103), +(140800, 'Kalli', 1989, 'F', 103), +(140801, 'Kera', 1989, 'F', 103), +(140802, 'Keyana', 1989, 'F', 103), +(140803, 'Kymberly', 1989, 'F', 103), +(140804, 'Priya', 1989, 'F', 103), +(140805, 'Spencer', 1989, 'F', 103), +(140806, 'Chanda', 1989, 'F', 102), +(140807, 'Corrina', 1989, 'F', 102), +(140808, 'Diandra', 1989, 'F', 102), +(140809, 'Kandis', 1989, 'F', 102), +(140810, 'Kanisha', 1989, 'F', 102), +(140811, 'Kenna', 1989, 'F', 102), +(140812, 'Lilly', 1989, 'F', 102), +(140813, 'Markie', 1989, 'F', 102), +(140814, 'Pricilla', 1989, 'F', 102), +(140815, 'Tierney', 1989, 'F', 102), +(140816, 'Vanity', 1989, 'F', 102), +(140817, 'Dionna', 1989, 'F', 101), +(140818, 'Jonathan', 1989, 'F', 101), +(140819, 'Kayle', 1989, 'F', 101), +(140820, 'Maricruz', 1989, 'F', 101); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(140821, 'May', 1989, 'F', 101), +(140822, 'Shira', 1989, 'F', 101), +(140823, 'Yazmin', 1989, 'F', 101), +(140824, 'Ayanna', 1989, 'F', 100), +(140825, 'Breeanna', 1989, 'F', 100), +(140826, 'Consuelo', 1989, 'F', 100), +(140827, 'Darcie', 1989, 'F', 100), +(140828, 'Elvira', 1989, 'F', 100), +(140829, 'Erinn', 1989, 'F', 100), +(140830, 'Kayce', 1989, 'F', 100), +(140831, 'Kenyetta', 1989, 'F', 100), +(140832, 'Shyla', 1989, 'F', 100), +(140833, 'Steffanie', 1989, 'F', 100), +(140834, 'Michael', 1989, 'M', 65374), +(140835, 'Christopher', 1989, 'M', 53175), +(140836, 'Matthew', 1989, 'M', 45372), +(140837, 'Joshua', 1989, 'M', 44089), +(140838, 'David', 1989, 'M', 35203), +(140839, 'Daniel', 1989, 'M', 34986), +(140840, 'Andrew', 1989, 'M', 34811), +(140841, 'Justin', 1989, 'M', 32843), +(140842, 'James', 1989, 'M', 32695), +(140843, 'Robert', 1989, 'M', 30064), +(140844, 'Joseph', 1989, 'M', 29871), +(140845, 'John', 1989, 'M', 29836), +(140846, 'Ryan', 1989, 'M', 28408), +(140847, 'Nicholas', 1989, 'M', 28220), +(140848, 'William', 1989, 'M', 24673), +(140849, 'Anthony', 1989, 'M', 24423), +(140850, 'Jonathan', 1989, 'M', 23598), +(140851, 'Brandon', 1989, 'M', 23305), +(140852, 'Kevin', 1989, 'M', 21199), +(140853, 'Kyle', 1989, 'M', 20875), +(140854, 'Eric', 1989, 'M', 18975), +(140855, 'Steven', 1989, 'M', 18922), +(140856, 'Thomas', 1989, 'M', 18431), +(140857, 'Brian', 1989, 'M', 18097), +(140858, 'Zachary', 1989, 'M', 18073), +(140859, 'Jacob', 1989, 'M', 17829), +(140860, 'Adam', 1989, 'M', 16927), +(140861, 'Timothy', 1989, 'M', 16424), +(140862, 'Benjamin', 1989, 'M', 15728), +(140863, 'Tyler', 1989, 'M', 15588), +(140864, 'Aaron', 1989, 'M', 15315), +(140865, 'Alexander', 1989, 'M', 14517), +(140866, 'Richard', 1989, 'M', 14133), +(140867, 'Jeremy', 1989, 'M', 13078), +(140868, 'Jason', 1989, 'M', 12600), +(140869, 'Charles', 1989, 'M', 12244), +(140870, 'Jeffrey', 1989, 'M', 12009), +(140871, 'Patrick', 1989, 'M', 11982), +(140872, 'Sean', 1989, 'M', 11889), +(140873, 'Stephen', 1989, 'M', 11734), +(140874, 'Travis', 1989, 'M', 11521), +(140875, 'Mark', 1989, 'M', 11311), +(140876, 'Nathan', 1989, 'M', 10901), +(140877, 'Jordan', 1989, 'M', 10869), +(140878, 'Cody', 1989, 'M', 10819), +(140879, 'Jose', 1989, 'M', 10326), +(140880, 'Samuel', 1989, 'M', 10102), +(140881, 'Dustin', 1989, 'M', 9718), +(140882, 'Paul', 1989, 'M', 9028), +(140883, 'Jesse', 1989, 'M', 8850), +(140884, 'Scott', 1989, 'M', 8848), +(140885, 'Gregory', 1989, 'M', 8755), +(140886, 'Kenneth', 1989, 'M', 8555), +(140887, 'Derek', 1989, 'M', 8363), +(140888, 'Corey', 1989, 'M', 8003), +(140889, 'Bryan', 1989, 'M', 7852), +(140890, 'Jared', 1989, 'M', 7015), +(140891, 'Bradley', 1989, 'M', 6979), +(140892, 'Austin', 1989, 'M', 6883), +(140893, 'Alex', 1989, 'M', 6538), +(140894, 'Cory', 1989, 'M', 6451), +(140895, 'Edward', 1989, 'M', 5848), +(140896, 'Juan', 1989, 'M', 5771), +(140897, 'Cameron', 1989, 'M', 5590), +(140898, 'Shawn', 1989, 'M', 5476), +(140899, 'Peter', 1989, 'M', 5405), +(140900, 'Marcus', 1989, 'M', 5395), +(140901, 'Ian', 1989, 'M', 4945), +(140902, 'Evan', 1989, 'M', 4921), +(140903, 'Keith', 1989, 'M', 4891), +(140904, 'Shane', 1989, 'M', 4861), +(140905, 'Taylor', 1989, 'M', 4856), +(140906, 'Luis', 1989, 'M', 4845), +(140907, 'Chad', 1989, 'M', 4722), +(140908, 'Phillip', 1989, 'M', 4719), +(140909, 'Antonio', 1989, 'M', 4717), +(140910, 'Carlos', 1989, 'M', 4637), +(140911, 'Christian', 1989, 'M', 4618), +(140912, 'George', 1989, 'M', 4510), +(140913, 'Vincent', 1989, 'M', 4490), +(140914, 'Brett', 1989, 'M', 4422), +(140915, 'Donald', 1989, 'M', 4325), +(140916, 'Trevor', 1989, 'M', 4162), +(140917, 'Nathaniel', 1989, 'M', 4116), +(140918, 'Raymond', 1989, 'M', 4106), +(140919, 'Ronald', 1989, 'M', 4106), +(140920, 'Ethan', 1989, 'M', 4053), +(140921, 'Joel', 1989, 'M', 3938), +(140922, 'Victor', 1989, 'M', 3897), +(140923, 'Casey', 1989, 'M', 3851), +(140924, 'Caleb', 1989, 'M', 3786), +(140925, 'Douglas', 1989, 'M', 3695), +(140926, 'Mitchell', 1989, 'M', 3645), +(140927, 'Seth', 1989, 'M', 3633), +(140928, 'Erik', 1989, 'M', 3628), +(140929, 'Devin', 1989, 'M', 3594), +(140930, 'Blake', 1989, 'M', 3523), +(140931, 'Wesley', 1989, 'M', 3457), +(140932, 'Derrick', 1989, 'M', 3443), +(140933, 'Adrian', 1989, 'M', 3418), +(140934, 'Philip', 1989, 'M', 3319), +(140935, 'Garrett', 1989, 'M', 3314), +(140936, 'Jesus', 1989, 'M', 3290), +(140937, 'Logan', 1989, 'M', 3282), +(140938, 'Craig', 1989, 'M', 3158), +(140939, 'Gary', 1989, 'M', 3128), +(140940, 'Spencer', 1989, 'M', 3126), +(140941, 'Miguel', 1989, 'M', 3077), +(140942, 'Frank', 1989, 'M', 3049), +(140943, 'Gabriel', 1989, 'M', 3036), +(140944, 'Curtis', 1989, 'M', 2965), +(140945, 'Johnathan', 1989, 'M', 2962), +(140946, 'Chase', 1989, 'M', 2864), +(140947, 'Lucas', 1989, 'M', 2860), +(140948, 'Dylan', 1989, 'M', 2853), +(140949, 'Mario', 1989, 'M', 2843), +(140950, 'Martin', 1989, 'M', 2797), +(140951, 'Brent', 1989, 'M', 2747), +(140952, 'Ricardo', 1989, 'M', 2732), +(140953, 'Alan', 1989, 'M', 2725), +(140954, 'Luke', 1989, 'M', 2708), +(140955, 'Jorge', 1989, 'M', 2702), +(140956, 'Dennis', 1989, 'M', 2676), +(140957, 'Troy', 1989, 'M', 2638), +(140958, 'Francisco', 1989, 'M', 2620), +(140959, 'Colin', 1989, 'M', 2606), +(140960, 'Randy', 1989, 'M', 2604), +(140961, 'Jonathon', 1989, 'M', 2529), +(140962, 'Jeffery', 1989, 'M', 2479), +(140963, 'Allen', 1989, 'M', 2359), +(140964, 'Larry', 1989, 'M', 2338), +(140965, 'Tony', 1989, 'M', 2300), +(140966, 'Johnny', 1989, 'M', 2297), +(140967, 'Andre', 1989, 'M', 2272), +(140968, 'Carl', 1989, 'M', 2258), +(140969, 'Russell', 1989, 'M', 2218), +(140970, 'Julian', 1989, 'M', 2211), +(140971, 'Isaac', 1989, 'M', 2210), +(140972, 'Manuel', 1989, 'M', 2207), +(140973, 'Angel', 1989, 'M', 2174), +(140974, 'Henry', 1989, 'M', 2174), +(140975, 'Jerry', 1989, 'M', 2164), +(140976, 'Mathew', 1989, 'M', 2162), +(140977, 'Brendan', 1989, 'M', 2147), +(140978, 'Jeremiah', 1989, 'M', 2145), +(140979, 'Todd', 1989, 'M', 2124), +(140980, 'Edgar', 1989, 'M', 2101), +(140981, 'Alejandro', 1989, 'M', 2082), +(140982, 'Roberto', 1989, 'M', 2015), +(140983, 'Drew', 1989, 'M', 2010), +(140984, 'Terry', 1989, 'M', 2004), +(140985, 'Jake', 1989, 'M', 1963), +(140986, 'Clayton', 1989, 'M', 1962), +(140987, 'Oscar', 1989, 'M', 1961), +(140988, 'Kristopher', 1989, 'M', 1956), +(140989, 'Eduardo', 1989, 'M', 1936), +(140990, 'Colton', 1989, 'M', 1924), +(140991, 'Danny', 1989, 'M', 1912), +(140992, 'Ricky', 1989, 'M', 1895), +(140993, 'Marc', 1989, 'M', 1893), +(140994, 'Calvin', 1989, 'M', 1867), +(140995, 'Randall', 1989, 'M', 1848), +(140996, 'Louis', 1989, 'M', 1836), +(140997, 'Micheal', 1989, 'M', 1834), +(140998, 'Lance', 1989, 'M', 1821), +(140999, 'Javier', 1989, 'M', 1814), +(141000, 'Hector', 1989, 'M', 1803), +(141001, 'Ross', 1989, 'M', 1786), +(141002, 'Levi', 1989, 'M', 1781), +(141003, 'Albert', 1989, 'M', 1762), +(141004, 'Edwin', 1989, 'M', 1761), +(141005, 'Bobby', 1989, 'M', 1759), +(141006, 'Lawrence', 1989, 'M', 1752), +(141007, 'Sergio', 1989, 'M', 1750), +(141008, 'Jimmy', 1989, 'M', 1744), +(141009, 'Bryant', 1989, 'M', 1735), +(141010, 'Rodney', 1989, 'M', 1735), +(141011, 'Devon', 1989, 'M', 1718), +(141012, 'Jack', 1989, 'M', 1712), +(141013, 'Grant', 1989, 'M', 1680), +(141014, 'Bryce', 1989, 'M', 1636), +(141015, 'Omar', 1989, 'M', 1628), +(141016, 'Darren', 1989, 'M', 1625), +(141017, 'Walter', 1989, 'M', 1611), +(141018, 'Max', 1989, 'M', 1605), +(141019, 'Ruben', 1989, 'M', 1593), +(141020, 'Fernando', 1989, 'M', 1581), +(141021, 'Lee', 1989, 'M', 1545), +(141022, 'Arthur', 1989, 'M', 1533), +(141023, 'Ivan', 1989, 'M', 1531), +(141024, 'Nicolas', 1989, 'M', 1529), +(141025, 'Jon', 1989, 'M', 1508), +(141026, 'Billy', 1989, 'M', 1505), +(141027, 'Darius', 1989, 'M', 1504), +(141028, 'Joe', 1989, 'M', 1492), +(141029, 'Roger', 1989, 'M', 1477), +(141030, 'Jamie', 1989, 'M', 1472), +(141031, 'Dominic', 1989, 'M', 1471), +(141032, 'Preston', 1989, 'M', 1471), +(141033, 'Gerald', 1989, 'M', 1470), +(141034, 'Pedro', 1989, 'M', 1469), +(141035, 'Willie', 1989, 'M', 1460), +(141036, 'Jay', 1989, 'M', 1440), +(141037, 'Maurice', 1989, 'M', 1421), +(141038, 'Maxwell', 1989, 'M', 1401), +(141039, 'Jaime', 1989, 'M', 1396), +(141040, 'Shaun', 1989, 'M', 1390), +(141041, 'Terrance', 1989, 'M', 1360), +(141042, 'Raul', 1989, 'M', 1359), +(141043, 'Xavier', 1989, 'M', 1356), +(141044, 'Clinton', 1989, 'M', 1351), +(141045, 'Emmanuel', 1989, 'M', 1336), +(141046, 'Rafael', 1989, 'M', 1320), +(141047, 'Andres', 1989, 'M', 1307), +(141048, 'Reginald', 1989, 'M', 1297), +(141049, 'Theodore', 1989, 'M', 1290), +(141050, 'Roy', 1989, 'M', 1257), +(141051, 'Cesar', 1989, 'M', 1243), +(141052, 'Noah', 1989, 'M', 1242), +(141053, 'Tanner', 1989, 'M', 1235), +(141054, 'Dominique', 1989, 'M', 1233), +(141055, 'Bruce', 1989, 'M', 1212), +(141056, 'Eddie', 1989, 'M', 1210), +(141057, 'Geoffrey', 1989, 'M', 1208), +(141058, 'Darrell', 1989, 'M', 1206), +(141059, 'Hunter', 1989, 'M', 1204), +(141060, 'Isaiah', 1989, 'M', 1190), +(141061, 'Marvin', 1989, 'M', 1190), +(141062, 'Julio', 1989, 'M', 1186), +(141063, 'Alberto', 1989, 'M', 1177), +(141064, 'Wayne', 1989, 'M', 1167), +(141065, 'Armando', 1989, 'M', 1166), +(141066, 'Terrence', 1989, 'M', 1159), +(141067, 'Marco', 1989, 'M', 1151), +(141068, 'Jessie', 1989, 'M', 1133), +(141069, 'Darryl', 1989, 'M', 1130), +(141070, 'Micah', 1989, 'M', 1118), +(141071, 'Frederick', 1989, 'M', 1113), +(141072, 'Jamal', 1989, 'M', 1104), +(141073, 'Mason', 1989, 'M', 1094), +(141074, 'Christop', 1989, 'M', 1082), +(141075, 'Trent', 1989, 'M', 1079), +(141076, 'Ramon', 1989, 'M', 1078), +(141077, 'Byron', 1989, 'M', 1074), +(141078, 'Erick', 1989, 'M', 1071), +(141079, 'Tyrone', 1989, 'M', 1066), +(141080, 'Collin', 1989, 'M', 1063), +(141081, 'Nickolas', 1989, 'M', 1048), +(141082, 'Jerome', 1989, 'M', 1034), +(141083, 'Colby', 1989, 'M', 1031), +(141084, 'Dillon', 1989, 'M', 1027), +(141085, 'Neil', 1989, 'M', 1025), +(141086, 'Zachery', 1989, 'M', 1024), +(141087, 'Abraham', 1989, 'M', 998), +(141088, 'Trenton', 1989, 'M', 995), +(141089, 'Steve', 1989, 'M', 993), +(141090, 'Elijah', 1989, 'M', 991), +(141091, 'Johnathon', 1989, 'M', 985), +(141092, 'Terrell', 1989, 'M', 985), +(141093, 'Ronnie', 1989, 'M', 973), +(141094, 'Kurt', 1989, 'M', 972), +(141095, 'Branden', 1989, 'M', 968), +(141096, 'Miles', 1989, 'M', 957), +(141097, 'Tommy', 1989, 'M', 957), +(141098, 'Ernest', 1989, 'M', 955), +(141099, 'Connor', 1989, 'M', 934), +(141100, 'Gerardo', 1989, 'M', 934), +(141101, 'Francis', 1989, 'M', 918), +(141102, 'Alfredo', 1989, 'M', 917), +(141103, 'Leonard', 1989, 'M', 912), +(141104, 'Glenn', 1989, 'M', 911), +(141105, 'Karl', 1989, 'M', 910), +(141106, 'Cole', 1989, 'M', 908), +(141107, 'Malcolm', 1989, 'M', 904), +(141108, 'Andy', 1989, 'M', 902), +(141109, 'Melvin', 1989, 'M', 900), +(141110, 'Franklin', 1989, 'M', 898), +(141111, 'Dean', 1989, 'M', 889), +(141112, 'Deandre', 1989, 'M', 889), +(141113, 'Enrique', 1989, 'M', 888), +(141114, 'Demetrius', 1989, 'M', 885), +(141115, 'Eugene', 1989, 'M', 884), +(141116, 'Harrison', 1989, 'M', 884), +(141117, 'Dwayne', 1989, 'M', 870), +(141118, 'Stanley', 1989, 'M', 869), +(141119, 'Arturo', 1989, 'M', 861), +(141120, 'Nelson', 1989, 'M', 857), +(141121, 'Dale', 1989, 'M', 854), +(141122, 'Marshall', 1989, 'M', 847), +(141123, 'Brady', 1989, 'M', 844), +(141124, 'Kirk', 1989, 'M', 844), +(141125, 'Orlando', 1989, 'M', 838), +(141126, 'Jarrod', 1989, 'M', 833), +(141127, 'Kelvin', 1989, 'M', 826), +(141128, 'Morgan', 1989, 'M', 826), +(141129, 'Dakota', 1989, 'M', 824), +(141130, 'Alvin', 1989, 'M', 822), +(141131, 'Jermaine', 1989, 'M', 820), +(141132, 'Kelly', 1989, 'M', 811), +(141133, 'Marcos', 1989, 'M', 806), +(141134, 'Salvador', 1989, 'M', 802), +(141135, 'Marquis', 1989, 'M', 798), +(141136, 'Courtney', 1989, 'M', 794), +(141137, 'Warren', 1989, 'M', 786), +(141138, 'Harold', 1989, 'M', 783), +(141139, 'Ernesto', 1989, 'M', 779), +(141140, 'Damian', 1989, 'M', 777), +(141141, 'Wade', 1989, 'M', 777), +(141142, 'Clifford', 1989, 'M', 774), +(141143, 'Damien', 1989, 'M', 773), +(141144, 'Donovan', 1989, 'M', 770), +(141145, 'Brock', 1989, 'M', 763), +(141146, 'Tristan', 1989, 'M', 763), +(141147, 'Lorenzo', 1989, 'M', 760), +(141148, 'Israel', 1989, 'M', 759), +(141149, 'Desmond', 1989, 'M', 758), +(141150, 'Elliot', 1989, 'M', 758), +(141151, 'Diego', 1989, 'M', 752), +(141152, 'Landon', 1989, 'M', 752), +(141153, 'Quentin', 1989, 'M', 748), +(141154, 'Brad', 1989, 'M', 747), +(141155, 'Harry', 1989, 'M', 746), +(141156, 'Rene', 1989, 'M', 739), +(141157, 'Stuart', 1989, 'M', 739), +(141158, 'Lamar', 1989, 'M', 737), +(141159, 'Ray', 1989, 'M', 722), +(141160, 'Chance', 1989, 'M', 711), +(141161, 'Kendrick', 1989, 'M', 706), +(141162, 'Antoine', 1989, 'M', 705), +(141163, 'Angelo', 1989, 'M', 704), +(141164, 'Quinton', 1989, 'M', 702), +(141165, 'Barry', 1989, 'M', 699), +(141166, 'Gustavo', 1989, 'M', 698), +(141167, 'Zachariah', 1989, 'M', 697), +(141168, 'Josue', 1989, 'M', 694), +(141169, 'Dexter', 1989, 'M', 688), +(141170, 'Kendall', 1989, 'M', 688), +(141171, 'Dane', 1989, 'M', 683), +(141172, 'Zackary', 1989, 'M', 680), +(141173, 'Gilbert', 1989, 'M', 677), +(141174, 'Riley', 1989, 'M', 677), +(141175, 'Skyler', 1989, 'M', 676), +(141176, 'Kaleb', 1989, 'M', 669), +(141177, 'Elliott', 1989, 'M', 668), +(141178, 'Stefan', 1989, 'M', 668), +(141179, 'Tyson', 1989, 'M', 666), +(141180, 'Ralph', 1989, 'M', 663), +(141181, 'Rashad', 1989, 'M', 661), +(141182, 'Bernard', 1989, 'M', 659), +(141183, 'Darnell', 1989, 'M', 656), +(141184, 'Leon', 1989, 'M', 646), +(141185, 'Cedric', 1989, 'M', 643), +(141186, 'Elias', 1989, 'M', 643), +(141187, 'Damon', 1989, 'M', 642), +(141188, 'Kody', 1989, 'M', 639), +(141189, 'Jarrett', 1989, 'M', 637), +(141190, 'Clarence', 1989, 'M', 635), +(141191, 'Alfred', 1989, 'M', 634), +(141192, 'Jarvis', 1989, 'M', 634), +(141193, 'Gavin', 1989, 'M', 628), +(141194, 'Pablo', 1989, 'M', 625), +(141195, 'Eli', 1989, 'M', 624), +(141196, 'Kurtis', 1989, 'M', 624), +(141197, 'Giovanni', 1989, 'M', 623), +(141198, 'Nolan', 1989, 'M', 617), +(141199, 'Felix', 1989, 'M', 610), +(141200, 'Roderick', 1989, 'M', 610), +(141201, 'Trey', 1989, 'M', 610), +(141202, 'Jarred', 1989, 'M', 607), +(141203, 'Joey', 1989, 'M', 605), +(141204, 'Alec', 1989, 'M', 603), +(141205, 'Earl', 1989, 'M', 602), +(141206, 'Kory', 1989, 'M', 601), +(141207, 'Blaine', 1989, 'M', 599), +(141208, 'Rudy', 1989, 'M', 596), +(141209, 'Jamar', 1989, 'M', 595), +(141210, 'Fabian', 1989, 'M', 594), +(141211, 'Allan', 1989, 'M', 591), +(141212, 'Josiah', 1989, 'M', 591), +(141213, 'Dallas', 1989, 'M', 590), +(141214, 'Emanuel', 1989, 'M', 590), +(141215, 'Stephan', 1989, 'M', 579), +(141216, 'Simon', 1989, 'M', 575), +(141217, 'Beau', 1989, 'M', 574), +(141218, 'Roman', 1989, 'M', 572), +(141219, 'Terence', 1989, 'M', 572), +(141220, 'Derick', 1989, 'M', 571), +(141221, 'Daryl', 1989, 'M', 568), +(141222, 'Shannon', 1989, 'M', 566), +(141223, 'Noel', 1989, 'M', 561), +(141224, 'Lewis', 1989, 'M', 560), +(141225, 'Rodolfo', 1989, 'M', 559), +(141226, 'Howard', 1989, 'M', 558), +(141227, 'Kenny', 1989, 'M', 556), +(141228, 'Dominick', 1989, 'M', 551), +(141229, 'Alexis', 1989, 'M', 550), +(141230, 'Dante', 1989, 'M', 550), +(141231, 'Bret', 1989, 'M', 545), +(141232, 'Julius', 1989, 'M', 545), +(141233, 'Abel', 1989, 'M', 542), +(141234, 'Chris', 1989, 'M', 536), +(141235, 'Heath', 1989, 'M', 535), +(141236, 'Ashton', 1989, 'M', 532), +(141237, 'Guillermo', 1989, 'M', 530), +(141238, 'Parker', 1989, 'M', 528), +(141239, 'Corbin', 1989, 'M', 525), +(141240, 'Hugo', 1989, 'M', 525), +(141241, 'Charlie', 1989, 'M', 522), +(141242, 'Saul', 1989, 'M', 522), +(141243, 'Neal', 1989, 'M', 521), +(141244, 'Zackery', 1989, 'M', 520), +(141245, 'Sebastian', 1989, 'M', 516), +(141246, 'Clifton', 1989, 'M', 506), +(141247, 'Donte', 1989, 'M', 503), +(141248, 'Sam', 1989, 'M', 503), +(141249, 'Chaz', 1989, 'M', 499), +(141250, 'Graham', 1989, 'M', 499), +(141251, 'Alfonso', 1989, 'M', 496), +(141252, 'Gilberto', 1989, 'M', 496), +(141253, 'Norman', 1989, 'M', 496), +(141254, 'Jackson', 1989, 'M', 494), +(141255, 'Brendon', 1989, 'M', 489), +(141256, 'Leroy', 1989, 'M', 489), +(141257, 'Dwight', 1989, 'M', 488), +(141258, 'Felipe', 1989, 'M', 487), +(141259, 'Jordon', 1989, 'M', 486), +(141260, 'Korey', 1989, 'M', 485), +(141261, 'Esteban', 1989, 'M', 480), +(141262, 'Glen', 1989, 'M', 480), +(141263, 'Wyatt', 1989, 'M', 479), +(141264, 'Carlton', 1989, 'M', 477), +(141265, 'Tyrell', 1989, 'M', 476), +(141266, 'Weston', 1989, 'M', 475), +(141267, 'Rogelio', 1989, 'M', 474), +(141268, 'Gordon', 1989, 'M', 471), +(141269, 'Avery', 1989, 'M', 469), +(141270, 'Forrest', 1989, 'M', 463), +(141271, 'Perry', 1989, 'M', 461), +(141272, 'Akeem', 1989, 'M', 459), +(141273, 'Oliver', 1989, 'M', 458), +(141274, 'Demarcus', 1989, 'M', 456), +(141275, 'Emilio', 1989, 'M', 455), +(141276, 'Ismael', 1989, 'M', 452), +(141277, 'Clay', 1989, 'M', 451), +(141278, 'Brenton', 1989, 'M', 447), +(141279, 'Brennan', 1989, 'M', 445), +(141280, 'Moises', 1989, 'M', 439), +(141281, 'Kent', 1989, 'M', 437), +(141282, 'Ben', 1989, 'M', 436), +(141283, 'Fredrick', 1989, 'M', 434), +(141284, 'Owen', 1989, 'M', 434), +(141285, 'Cornelius', 1989, 'M', 433), +(141286, 'Deangelo', 1989, 'M', 429), +(141287, 'Alonzo', 1989, 'M', 426), +(141288, 'Leo', 1989, 'M', 425), +(141289, 'Rickey', 1989, 'M', 424), +(141290, 'Pierre', 1989, 'M', 423), +(141291, 'Zane', 1989, 'M', 422), +(141292, 'Conor', 1989, 'M', 421), +(141293, 'Darrin', 1989, 'M', 418), +(141294, 'Lonnie', 1989, 'M', 417), +(141295, 'Fred', 1989, 'M', 416), +(141296, 'Clint', 1989, 'M', 412), +(141297, 'Marlon', 1989, 'M', 412), +(141298, 'Isiah', 1989, 'M', 409), +(141299, 'Vernon', 1989, 'M', 409), +(141300, 'Jaron', 1989, 'M', 408), +(141301, 'Kerry', 1989, 'M', 408), +(141302, 'Myles', 1989, 'M', 407), +(141303, 'Lloyd', 1989, 'M', 405), +(141304, 'Roland', 1989, 'M', 404), +(141305, 'Kasey', 1989, 'M', 403), +(141306, 'Dalton', 1989, 'M', 402), +(141307, 'Jayson', 1989, 'M', 402), +(141308, 'Duane', 1989, 'M', 401), +(141309, 'Mike', 1989, 'M', 401), +(141310, 'Brice', 1989, 'M', 398), +(141311, 'Leonardo', 1989, 'M', 398), +(141312, 'Arsenio', 1989, 'M', 397), +(141313, 'Keenan', 1989, 'M', 395), +(141314, 'Rolando', 1989, 'M', 395), +(141315, 'Don', 1989, 'M', 394), +(141316, 'Rory', 1989, 'M', 393), +(141317, 'Cristian', 1989, 'M', 391), +(141318, 'Sheldon', 1989, 'M', 391), +(141319, 'Sterling', 1989, 'M', 389), +(141320, 'Davon', 1989, 'M', 384), +(141321, 'Ali', 1989, 'M', 383), +(141322, 'Ariel', 1989, 'M', 383), +(141323, 'Ashley', 1989, 'M', 376), +(141324, 'Carson', 1989, 'M', 376), +(141325, 'Infant', 1989, 'M', 376), +(141326, 'Kameron', 1989, 'M', 375), +(141327, 'Ramiro', 1989, 'M', 375), +(141328, 'Lukas', 1989, 'M', 373), +(141329, 'Antwan', 1989, 'M', 372), +(141330, 'Tucker', 1989, 'M', 371), +(141331, 'Tracy', 1989, 'M', 370), +(141332, 'Frankie', 1989, 'M', 369), +(141333, 'Rick', 1989, 'M', 366), +(141334, 'Tomas', 1989, 'M', 366), +(141335, 'Quinn', 1989, 'M', 361), +(141336, 'Freddy', 1989, 'M', 359), +(141337, 'Nathanael', 1989, 'M', 359), +(141338, 'Dana', 1989, 'M', 357), +(141339, 'Devan', 1989, 'M', 357), +(141340, 'Coty', 1989, 'M', 356), +(141341, 'Bradford', 1989, 'M', 353), +(141342, 'Ty', 1989, 'M', 353), +(141343, 'Efrain', 1989, 'M', 352), +(141344, 'Darin', 1989, 'M', 351), +(141345, 'Herbert', 1989, 'M', 350), +(141346, 'Nikolas', 1989, 'M', 350), +(141347, 'Johnnie', 1989, 'M', 347), +(141348, 'Milton', 1989, 'M', 347), +(141349, 'Jamel', 1989, 'M', 346), +(141350, 'Sidney', 1989, 'M', 345), +(141351, 'Braden', 1989, 'M', 342), +(141352, 'Dion', 1989, 'M', 341), +(141353, 'Clark', 1989, 'M', 340), +(141354, 'Alvaro', 1989, 'M', 336), +(141355, 'Demario', 1989, 'M', 334), +(141356, 'Dorian', 1989, 'M', 334), +(141357, 'Moses', 1989, 'M', 334), +(141358, 'Quincy', 1989, 'M', 334), +(141359, 'Lamont', 1989, 'M', 332), +(141360, 'Jerrod', 1989, 'M', 330), +(141361, 'Keegan', 1989, 'M', 329), +(141362, 'Kristofer', 1989, 'M', 329), +(141363, 'Chadwick', 1989, 'M', 328), +(141364, 'Leslie', 1989, 'M', 327), +(141365, 'Bryson', 1989, 'M', 326), +(141366, 'Gerard', 1989, 'M', 326), +(141367, 'Mackenzie', 1989, 'M', 326), +(141368, 'Garret', 1989, 'M', 325), +(141369, 'Salvatore', 1989, 'M', 325), +(141370, 'Noe', 1989, 'M', 324), +(141371, 'Robin', 1989, 'M', 324), +(141372, 'Wilson', 1989, 'M', 323), +(141373, 'Santiago', 1989, 'M', 322), +(141374, 'Everett', 1989, 'M', 321), +(141375, 'Cortez', 1989, 'M', 320), +(141376, 'Darrius', 1989, 'M', 317), +(141377, 'Markus', 1989, 'M', 317), +(141378, 'Ahmad', 1989, 'M', 314), +(141379, 'Lester', 1989, 'M', 314), +(141380, 'Nico', 1989, 'M', 314), +(141381, 'Brenden', 1989, 'M', 313), +(141382, 'Deshawn', 1989, 'M', 313), +(141383, 'Guy', 1989, 'M', 313), +(141384, 'Jimmie', 1989, 'M', 311), +(141385, 'Reid', 1989, 'M', 308), +(141386, 'Deon', 1989, 'M', 302), +(141387, 'Freddie', 1989, 'M', 302), +(141388, 'Raphael', 1989, 'M', 302), +(141389, 'Alexande', 1989, 'M', 301), +(141390, 'Chandler', 1989, 'M', 301), +(141391, 'Adan', 1989, 'M', 300), +(141392, 'Aron', 1989, 'M', 299), +(141393, 'Mauricio', 1989, 'M', 299), +(141394, 'Kareem', 1989, 'M', 298), +(141395, 'Rusty', 1989, 'M', 298), +(141396, 'Skylar', 1989, 'M', 296), +(141397, 'Herman', 1989, 'M', 295), +(141398, 'Vicente', 1989, 'M', 295), +(141399, 'Carter', 1989, 'M', 294), +(141400, 'Thaddeus', 1989, 'M', 294), +(141401, 'Floyd', 1989, 'M', 293), +(141402, 'Gene', 1989, 'M', 291), +(141403, 'Reynaldo', 1989, 'M', 291), +(141404, 'Davis', 1989, 'M', 290), +(141405, 'Loren', 1989, 'M', 289), +(141406, 'Sammy', 1989, 'M', 288), +(141407, 'Sonny', 1989, 'M', 288), +(141408, 'Arnold', 1989, 'M', 287), +(141409, 'Quintin', 1989, 'M', 287), +(141410, 'Reuben', 1989, 'M', 287), +(141411, 'Arron', 1989, 'M', 286), +(141412, 'Dewayne', 1989, 'M', 286), +(141413, 'Jeff', 1989, 'M', 284), +(141414, 'Nigel', 1989, 'M', 284), +(141415, 'Conrad', 1989, 'M', 281), +(141416, 'Humberto', 1989, 'M', 280), +(141417, 'Javon', 1989, 'M', 280), +(141418, 'Rico', 1989, 'M', 280), +(141419, 'Hakeem', 1989, 'M', 279), +(141420, 'Marcel', 1989, 'M', 279), +(141421, 'Marquise', 1989, 'M', 278), +(141422, 'Jarod', 1989, 'M', 277), +(141423, 'Will', 1989, 'M', 277), +(141424, 'Stewart', 1989, 'M', 274), +(141425, 'Donnie', 1989, 'M', 272), +(141426, 'Drake', 1989, 'M', 271), +(141427, 'German', 1989, 'M', 269), +(141428, 'Harley', 1989, 'M', 269), +(141429, 'Mitchel', 1989, 'M', 269), +(141430, 'Ted', 1989, 'M', 269), +(141431, 'Deonte', 1989, 'M', 268), +(141432, 'Jackie', 1989, 'M', 268), +(141433, 'Irvin', 1989, 'M', 267), +(141434, 'Lionel', 1989, 'M', 267), +(141435, 'Baby', 1989, 'M', 266), +(141436, 'Solomon', 1989, 'M', 265), +(141437, 'Jace', 1989, 'M', 264), +(141438, 'Joaquin', 1989, 'M', 263), +(141439, 'Leland', 1989, 'M', 263), +(141440, 'Toby', 1989, 'M', 263), +(141441, 'Ignacio', 1989, 'M', 262), +(141442, 'Unknown', 1989, 'M', 262), +(141443, 'Vance', 1989, 'M', 262), +(141444, 'Jean', 1989, 'M', 261), +(141445, 'Spenser', 1989, 'M', 261), +(141446, 'Jonah', 1989, 'M', 260), +(141447, 'Tyree', 1989, 'M', 260), +(141448, 'Garrick', 1989, 'M', 258), +(141449, 'Amir', 1989, 'M', 256), +(141450, 'Guadalupe', 1989, 'M', 256), +(141451, 'Colten', 1989, 'M', 255), +(141452, 'Myron', 1989, 'M', 255), +(141453, 'Rigoberto', 1989, 'M', 255), +(141454, 'Leonel', 1989, 'M', 254), +(141455, 'Nestor', 1989, 'M', 254), +(141456, 'Agustin', 1989, 'M', 253), +(141457, 'Shayne', 1989, 'M', 253), +(141458, 'Winston', 1989, 'M', 253), +(141459, 'Jessica', 1989, 'M', 252), +(141460, 'Lyle', 1989, 'M', 252), +(141461, 'Rodrigo', 1989, 'M', 251), +(141462, 'Kelsey', 1989, 'M', 250), +(141463, 'Mohammad', 1989, 'M', 250), +(141464, 'Bennett', 1989, 'M', 249), +(141465, 'Donnell', 1989, 'M', 249), +(141466, 'Dusty', 1989, 'M', 249), +(141467, 'Jakob', 1989, 'M', 249), +(141468, 'Nick', 1989, 'M', 249), +(141469, 'Griffin', 1989, 'M', 248), +(141470, 'Blair', 1989, 'M', 245), +(141471, 'Jamaal', 1989, 'M', 245), +(141472, 'Jamison', 1989, 'M', 245), +(141473, 'Randolph', 1989, 'M', 245), +(141474, 'Tory', 1989, 'M', 245), +(141475, 'Elvis', 1989, 'M', 243), +(141476, 'Jerrell', 1989, 'M', 241), +(141477, 'Jovan', 1989, 'M', 241), +(141478, 'Stephon', 1989, 'M', 241), +(141479, 'Addison', 1989, 'M', 240), +(141480, 'Dan', 1989, 'M', 240), +(141481, 'Hayden', 1989, 'M', 239), +(141482, 'Lane', 1989, 'M', 239), +(141483, 'Cecil', 1989, 'M', 237), +(141484, 'Bradly', 1989, 'M', 236), +(141485, 'Randal', 1989, 'M', 236), +(141486, 'Clyde', 1989, 'M', 235), +(141487, 'Erin', 1989, 'M', 233), +(141488, 'Greg', 1989, 'M', 233), +(141489, 'Harvey', 1989, 'M', 231), +(141490, 'Westley', 1989, 'M', 231), +(141491, 'Jameson', 1989, 'M', 230), +(141492, 'Jasper', 1989, 'M', 230), +(141493, 'Kwame', 1989, 'M', 230), +(141494, 'Paris', 1989, 'M', 230), +(141495, 'Kellen', 1989, 'M', 229), +(141496, 'Wendell', 1989, 'M', 229), +(141497, 'Rocky', 1989, 'M', 228), +(141498, 'Chester', 1989, 'M', 226), +(141499, 'Reed', 1989, 'M', 226), +(141500, 'Keaton', 1989, 'M', 225), +(141501, 'Malik', 1989, 'M', 224), +(141502, 'Rex', 1989, 'M', 224), +(141503, 'Ezekiel', 1989, 'M', 223), +(141504, 'Liam', 1989, 'M', 223), +(141505, 'Irving', 1989, 'M', 222), +(141506, 'Erich', 1989, 'M', 221), +(141507, 'Anton', 1989, 'M', 219), +(141508, 'Jody', 1989, 'M', 219), +(141509, 'Shea', 1989, 'M', 218), +(141510, 'Kristian', 1989, 'M', 217), +(141511, 'Brittany', 1989, 'M', 216), +(141512, 'Nathanial', 1989, 'M', 216), +(141513, 'Bo', 1989, 'M', 215), +(141514, 'Brooks', 1989, 'M', 214), +(141515, 'Bryon', 1989, 'M', 214), +(141516, 'Josh', 1989, 'M', 214), +(141517, 'Tylor', 1989, 'M', 214), +(141518, 'Benny', 1989, 'M', 211), +(141519, 'Antwon', 1989, 'M', 210), +(141520, 'Hugh', 1989, 'M', 210), +(141521, 'Adolfo', 1989, 'M', 209), +(141522, 'Aldo', 1989, 'M', 209), +(141523, 'Duncan', 1989, 'M', 208), +(141524, 'Cruz', 1989, 'M', 206), +(141525, 'Brandan', 1989, 'M', 205), +(141526, 'Jaren', 1989, 'M', 205), +(141527, 'Shelby', 1989, 'M', 205), +(141528, 'Issac', 1989, 'M', 202), +(141529, 'Mohammed', 1989, 'M', 200), +(141530, 'Estevan', 1989, 'M', 198), +(141531, 'Kyler', 1989, 'M', 198), +(141532, 'Mikel', 1989, 'M', 198), +(141533, 'Robbie', 1989, 'M', 197), +(141534, 'Kadeem', 1989, 'M', 196), +(141535, 'Kirby', 1989, 'M', 196), +(141536, 'Barrett', 1989, 'M', 195), +(141537, 'Sherman', 1989, 'M', 195), +(141538, 'Alton', 1989, 'M', 194), +(141539, 'Royce', 1989, 'M', 194), +(141540, 'Tobias', 1989, 'M', 194), +(141541, 'Jim', 1989, 'M', 193), +(141542, 'Morris', 1989, 'M', 193), +(141543, 'Sylvester', 1989, 'M', 193), +(141544, 'Cristopher', 1989, 'M', 192), +(141545, 'Otis', 1989, 'M', 192), +(141546, 'Darrel', 1989, 'M', 191), +(141547, 'Aubrey', 1989, 'M', 190), +(141548, 'Conner', 1989, 'M', 190), +(141549, 'Darian', 1989, 'M', 190), +(141550, 'Luther', 1989, 'M', 190), +(141551, 'Damion', 1989, 'M', 189), +(141552, 'Ryne', 1989, 'M', 189), +(141553, 'Ezra', 1989, 'M', 188), +(141554, 'Garry', 1989, 'M', 188), +(141555, 'Dereck', 1989, 'M', 187), +(141556, 'Heriberto', 1989, 'M', 187), +(141557, 'Tom', 1989, 'M', 187), +(141558, 'Ahmed', 1989, 'M', 186), +(141559, 'Jefferson', 1989, 'M', 186), +(141560, 'Houston', 1989, 'M', 185), +(141561, 'Ron', 1989, 'M', 184), +(141562, 'Scotty', 1989, 'M', 184), +(141563, 'Asa', 1989, 'M', 183), +(141564, 'Hans', 1989, 'M', 183), +(141565, 'Osvaldo', 1989, 'M', 183), +(141566, 'Rudolph', 1989, 'M', 183), +(141567, 'Mickey', 1989, 'M', 181), +(141568, 'Moshe', 1989, 'M', 181), +(141569, 'Bernardo', 1989, 'M', 180), +(141570, 'Dandre', 1989, 'M', 180), +(141571, 'Rodrick', 1989, 'M', 180), +(141572, 'Bronson', 1989, 'M', 179), +(141573, 'Dominque', 1989, 'M', 179), +(141574, 'Maximilian', 1989, 'M', 179), +(141575, 'Pete', 1989, 'M', 179), +(141576, 'Amos', 1989, 'M', 178), +(141577, 'Austen', 1989, 'M', 177), +(141578, 'Cullen', 1989, 'M', 177), +(141579, 'Ulysses', 1989, 'M', 177), +(141580, 'Mychal', 1989, 'M', 176), +(141581, 'Aric', 1989, 'M', 175), +(141582, 'Jess', 1989, 'M', 174), +(141583, 'Cooper', 1989, 'M', 173), +(141584, 'Cary', 1989, 'M', 172), +(141585, 'Ellis', 1989, 'M', 172), +(141586, 'Fidel', 1989, 'M', 172), +(141587, 'Santos', 1989, 'M', 172), +(141588, 'Gage', 1989, 'M', 171), +(141589, 'Jerad', 1989, 'M', 171), +(141590, 'Donavan', 1989, 'M', 170), +(141591, 'Grayson', 1989, 'M', 170), +(141592, 'Cedrick', 1989, 'M', 169), +(141593, 'Claude', 1989, 'M', 169), +(141594, 'Earnest', 1989, 'M', 169), +(141595, 'Grady', 1989, 'M', 169), +(141596, 'Jamil', 1989, 'M', 169), +(141597, 'Marty', 1989, 'M', 168), +(141598, 'Octavio', 1989, 'M', 168), +(141599, 'Vaughn', 1989, 'M', 168), +(141600, 'Colt', 1989, 'M', 167), +(141601, 'Cordell', 1989, 'M', 167), +(141602, 'Elmer', 1989, 'M', 167), +(141603, 'Brandyn', 1989, 'M', 166), +(141604, 'Jerel', 1989, 'M', 166), +(141605, 'Willis', 1989, 'M', 166), +(141606, 'Brant', 1989, 'M', 165), +(141607, 'Jerald', 1989, 'M', 164), +(141608, 'Jonas', 1989, 'M', 164), +(141609, 'Teddy', 1989, 'M', 164), +(141610, 'Trever', 1989, 'M', 164), +(141611, 'Wilfredo', 1989, 'M', 164), +(141612, 'Derik', 1989, 'M', 163), +(141613, 'Rashawn', 1989, 'M', 163), +(141614, 'Dashawn', 1989, 'M', 162), +(141615, 'Galen', 1989, 'M', 161), +(141616, 'Rhett', 1989, 'M', 161), +(141617, 'Wallace', 1989, 'M', 161), +(141618, 'Justen', 1989, 'M', 160), +(141619, 'Roosevelt', 1989, 'M', 160), +(141620, 'Edmund', 1989, 'M', 159), +(141621, 'Khiry', 1989, 'M', 159), +(141622, 'Ervin', 1989, 'M', 158), +(141623, 'Ira', 1989, 'M', 158), +(141624, 'Cyrus', 1989, 'M', 157), +(141625, 'Deven', 1989, 'M', 157), +(141626, 'Gonzalo', 1989, 'M', 157), +(141627, 'Marques', 1989, 'M', 157), +(141628, 'Dontae', 1989, 'M', 156), +(141629, 'Jarrell', 1989, 'M', 156), +(141630, 'Josef', 1989, 'M', 156), +(141631, 'Raheem', 1989, 'M', 156), +(141632, 'Uriel', 1989, 'M', 156), +(141633, 'Braxton', 1989, 'M', 155), +(141634, 'Jairo', 1989, 'M', 154), +(141635, 'Keon', 1989, 'M', 154), +(141636, 'Stacy', 1989, 'M', 154), +(141637, 'Dangelo', 1989, 'M', 153), +(141638, 'August', 1989, 'M', 152), +(141639, 'Zechariah', 1989, 'M', 152), +(141640, 'Jaquan', 1989, 'M', 151), +(141641, 'Jasmine', 1989, 'M', 151), +(141642, 'Kenton', 1989, 'M', 150), +(141643, 'Alphonso', 1989, 'M', 149), +(141644, 'Bennie', 1989, 'M', 149), +(141645, 'Marion', 1989, 'M', 149), +(141646, 'Shelton', 1989, 'M', 149), +(141647, 'Benito', 1989, 'M', 148), +(141648, 'Darien', 1989, 'M', 148), +(141649, 'Darwin', 1989, 'M', 148), +(141650, 'Carlo', 1989, 'M', 147), +(141651, 'Gino', 1989, 'M', 147), +(141652, 'Darrick', 1989, 'M', 146), +(141653, 'Holden', 1989, 'M', 146), +(141654, 'Jennifer', 1989, 'M', 146), +(141655, 'Martez', 1989, 'M', 146), +(141656, 'Sarah', 1989, 'M', 146), +(141657, 'Virgil', 1989, 'M', 146), +(141658, 'Brody', 1989, 'M', 145), +(141659, 'Coleman', 1989, 'M', 145), +(141660, 'Jerod', 1989, 'M', 145), +(141661, 'Laurence', 1989, 'M', 145), +(141662, 'Titus', 1989, 'M', 145), +(141663, 'Chaim', 1989, 'M', 144), +(141664, 'Cortney', 1989, 'M', 144), +(141665, 'Daquan', 1989, 'M', 144), +(141666, 'Isaias', 1989, 'M', 144), +(141667, 'Justine', 1989, 'M', 144), +(141668, 'Pierce', 1989, 'M', 144), +(141669, 'Carey', 1989, 'M', 143), +(141670, 'Stephanie', 1989, 'M', 143), +(141671, 'Antione', 1989, 'M', 142), +(141672, 'Cordero', 1989, 'M', 142), +(141673, 'Federico', 1989, 'M', 142), +(141674, 'Remington', 1989, 'M', 142), +(141675, 'Robby', 1989, 'M', 142), +(141676, 'Rocco', 1989, 'M', 142), +(141677, 'Cornell', 1989, 'M', 141), +(141678, 'Hassan', 1989, 'M', 141), +(141679, 'Niko', 1989, 'M', 141), +(141680, 'Antony', 1989, 'M', 140), +(141681, 'Elizabeth', 1989, 'M', 140), +(141682, 'Junior', 1989, 'M', 140), +(141683, 'Kai', 1989, 'M', 140), +(141684, 'Mohamed', 1989, 'M', 140), +(141685, 'Reece', 1989, 'M', 140), +(141686, 'Camron', 1989, 'M', 139), +(141687, 'Tyron', 1989, 'M', 139), +(141688, 'Andreas', 1989, 'M', 138), +(141689, 'Daren', 1989, 'M', 138), +(141690, 'Jeramy', 1989, 'M', 138), +(141691, 'Van', 1989, 'M', 138), +(141692, 'Broderick', 1989, 'M', 137), +(141693, 'Ken', 1989, 'M', 137), +(141694, 'Tommie', 1989, 'M', 137), +(141695, 'Edgardo', 1989, 'M', 136), +(141696, 'Brennen', 1989, 'M', 135), +(141697, 'Isidro', 1989, 'M', 135), +(141698, 'Jacques', 1989, 'M', 135), +(141699, 'Jered', 1989, 'M', 135), +(141700, 'Mack', 1989, 'M', 135), +(141701, 'Amanda', 1989, 'M', 134), +(141702, 'Dario', 1989, 'M', 134), +(141703, 'Domingo', 1989, 'M', 134), +(141704, 'Lauren', 1989, 'M', 134), +(141705, 'Prince', 1989, 'M', 134), +(141706, 'Ulises', 1989, 'M', 134), +(141707, 'Gregorio', 1989, 'M', 133), +(141708, 'Dejuan', 1989, 'M', 132), +(141709, 'Marquez', 1989, 'M', 132), +(141710, 'Britton', 1989, 'M', 131), +(141711, 'Chauncey', 1989, 'M', 131), +(141712, 'Deron', 1989, 'M', 131), +(141713, 'Emmett', 1989, 'M', 131), +(141714, 'Gregg', 1989, 'M', 131), +(141715, 'Reese', 1989, 'M', 131), +(141716, 'Andrea', 1989, 'M', 130), +(141717, 'Eddy', 1989, 'M', 130), +(141718, 'Madison', 1989, 'M', 130), +(141719, 'Bill', 1989, 'M', 129), +(141720, 'Donta', 1989, 'M', 129), +(141721, 'Timmy', 1989, 'M', 129), +(141722, 'Tyrel', 1989, 'M', 129), +(141723, 'Christina', 1989, 'M', 128), +(141724, 'Derrek', 1989, 'M', 128), +(141725, 'Derrell', 1989, 'M', 128), +(141726, 'Jermey', 1989, 'M', 128), +(141727, 'Lyndon', 1989, 'M', 128), +(141728, 'Michel', 1989, 'M', 128), +(141729, 'Stevie', 1989, 'M', 128), +(141730, 'Walker', 1989, 'M', 128), +(141731, 'Dave', 1989, 'M', 127), +(141732, 'Jabari', 1989, 'M', 127), +(141733, 'Kegan', 1989, 'M', 127), +(141734, 'Kendell', 1989, 'M', 127), +(141735, 'Abram', 1989, 'M', 126), +(141736, 'Codey', 1989, 'M', 126), +(141737, 'Demarco', 1989, 'M', 126), +(141738, 'Rakeem', 1989, 'M', 126), +(141739, 'Stacey', 1989, 'M', 126), +(141740, 'Alonso', 1989, 'M', 125), +(141741, 'Daron', 1989, 'M', 125), +(141742, 'Jed', 1989, 'M', 125), +(141743, 'Joesph', 1989, 'M', 125), +(141744, 'Torrey', 1989, 'M', 125), +(141745, 'Cassidy', 1989, 'M', 124), +(141746, 'Efren', 1989, 'M', 124), +(141747, 'Jessy', 1989, 'M', 124), +(141748, 'Montrell', 1989, 'M', 124), +(141749, 'Eliseo', 1989, 'M', 123), +(141750, 'Jory', 1989, 'M', 123), +(141751, 'Raymundo', 1989, 'M', 123), +(141752, 'Shay', 1989, 'M', 123), +(141753, 'Lincoln', 1989, 'M', 122), +(141754, 'Nikko', 1989, 'M', 122), +(141755, 'Travon', 1989, 'M', 122), +(141756, 'Ari', 1989, 'M', 121), +(141757, 'Dionte', 1989, 'M', 121), +(141758, 'Laron', 1989, 'M', 121), +(141759, 'Cale', 1989, 'M', 120), +(141760, 'Deric', 1989, 'M', 120), +(141761, 'Jedidiah', 1989, 'M', 120), +(141762, 'Jeromy', 1989, 'M', 120), +(141763, 'Samantha', 1989, 'M', 120), +(141764, 'Uriah', 1989, 'M', 120), +(141765, 'Darion', 1989, 'M', 119), +(141766, 'Davin', 1989, 'M', 119), +(141767, 'Jade', 1989, 'M', 119), +(141768, 'Kolby', 1989, 'M', 119), +(141769, 'Valentin', 1989, 'M', 119), +(141770, 'Denny', 1989, 'M', 118), +(141771, 'Rashaad', 1989, 'M', 118), +(141772, 'Silas', 1989, 'M', 118), +(141773, 'Waylon', 1989, 'M', 118), +(141774, 'Brandin', 1989, 'M', 117), +(141775, 'Danielle', 1989, 'M', 117), +(141776, 'Jacoby', 1989, 'M', 117), +(141777, 'Kelby', 1989, 'M', 117), +(141778, 'Kendal', 1989, 'M', 117), +(141779, 'Louie', 1989, 'M', 117), +(141780, 'Jamarcus', 1989, 'M', 116), +(141781, 'Marlin', 1989, 'M', 116), +(141782, 'Theron', 1989, 'M', 116), +(141783, 'Brandt', 1989, 'M', 115), +(141784, 'Denis', 1989, 'M', 115), +(141785, 'Elvin', 1989, 'M', 115), +(141786, 'Ezequiel', 1989, 'M', 115), +(141787, 'Axel', 1989, 'M', 114), +(141788, 'Horace', 1989, 'M', 114), +(141789, 'Kiara', 1989, 'M', 114), +(141790, 'Malachi', 1989, 'M', 114), +(141791, 'Quinten', 1989, 'M', 114), +(141792, 'Tiffany', 1989, 'M', 114), +(141793, 'Khalil', 1989, 'M', 113), +(141794, 'Anderson', 1989, 'M', 112), +(141795, 'Cade', 1989, 'M', 112), +(141796, 'Erwin', 1989, 'M', 112), +(141797, 'Najee', 1989, 'M', 112), +(141798, 'Schuyler', 1989, 'M', 112), +(141799, 'Willard', 1989, 'M', 112), +(141800, 'Channing', 1989, 'M', 111), +(141801, 'Edwardo', 1989, 'M', 111), +(141802, 'Emerson', 1989, 'M', 111), +(141803, 'Francesco', 1989, 'M', 111), +(141804, 'Ladarius', 1989, 'M', 111), +(141805, 'Maria', 1989, 'M', 111), +(141806, 'Simeon', 1989, 'M', 111), +(141807, 'Vince', 1989, 'M', 111), +(141808, 'Cleveland', 1989, 'M', 110), +(141809, 'Darron', 1989, 'M', 110), +(141810, 'Edmond', 1989, 'M', 110), +(141811, 'Coby', 1989, 'M', 109), +(141812, 'Garrison', 1989, 'M', 109), +(141813, 'Armand', 1989, 'M', 108), +(141814, 'Stetson', 1989, 'M', 108), +(141815, 'Tad', 1989, 'M', 108), +(141816, 'Yosef', 1989, 'M', 108), +(141817, 'Cristobal', 1989, 'M', 107), +(141818, 'Dirk', 1989, 'M', 107), +(141819, 'Jeremey', 1989, 'M', 107), +(141820, 'Kalvin', 1989, 'M', 107), +(141821, 'Keven', 1989, 'M', 107), +(141822, 'Malcom', 1989, 'M', 107), +(141823, 'Nicole', 1989, 'M', 107), +(141824, 'Peyton', 1989, 'M', 107), +(141825, 'Trevon', 1989, 'M', 107), +(141826, 'Dimitri', 1989, 'M', 106), +(141827, 'Jeremie', 1989, 'M', 106), +(141828, 'Joshuah', 1989, 'M', 106), +(141829, 'Rachel', 1989, 'M', 106), +(141830, 'Brain', 1989, 'M', 105), +(141831, 'Chadd', 1989, 'M', 105), +(141832, 'Martell', 1989, 'M', 105), +(141833, 'Ridge', 1989, 'M', 105), +(141834, 'Alexandro', 1989, 'M', 104), +(141835, 'Archie', 1989, 'M', 104), +(141836, 'Harris', 1989, 'M', 104), +(141837, 'Jayme', 1989, 'M', 104), +(141838, 'Matt', 1989, 'M', 104), +(141839, 'Nicholaus', 1989, 'M', 104), +(141840, 'Christoper', 1989, 'M', 103), +(141841, 'Elisha', 1989, 'M', 103), +(141842, 'Greggory', 1989, 'M', 103), +(141843, 'Jarret', 1989, 'M', 103), +(141844, 'Jeffry', 1989, 'M', 103), +(141845, 'Mariano', 1989, 'M', 103), +(141846, 'Rickie', 1989, 'M', 103), +(141847, 'Samir', 1989, 'M', 103), +(141848, 'Torey', 1989, 'M', 103), +(141849, 'Brannon', 1989, 'M', 102), +(141850, 'Deante', 1989, 'M', 102), +(141851, 'Garett', 1989, 'M', 102), +(141852, 'Jan', 1989, 'M', 102), +(141853, 'Kane', 1989, 'M', 102), +(141854, 'Kristoffer', 1989, 'M', 102), +(141855, 'Adrain', 1989, 'M', 101), +(141856, 'Camden', 1989, 'M', 101), +(141857, 'Deonta', 1989, 'M', 101), +(141858, 'Geraldo', 1989, 'M', 101), +(141859, 'Joseluis', 1989, 'M', 101), +(141860, 'Unnamed', 1989, 'M', 101), +(141861, 'Zakary', 1989, 'M', 101), +(141862, 'Bilal', 1989, 'M', 100), +(141863, 'Kalen', 1989, 'M', 100), +(141864, 'Lazaro', 1989, 'M', 100), +(141865, 'Rayshawn', 1989, 'M', 100), +(141866, 'Reggie', 1989, 'M', 100), +(141867, 'Terell', 1989, 'M', 100), +(141868, 'Jessica', 1990, 'F', 46466), +(141869, 'Ashley', 1990, 'F', 45549), +(141870, 'Brittany', 1990, 'F', 36535), +(141871, 'Amanda', 1990, 'F', 34406), +(141872, 'Samantha', 1990, 'F', 25864), +(141873, 'Sarah', 1990, 'F', 25808), +(141874, 'Stephanie', 1990, 'F', 24856), +(141875, 'Jennifer', 1990, 'F', 22221), +(141876, 'Elizabeth', 1990, 'F', 20742), +(141877, 'Lauren', 1990, 'F', 20498), +(141878, 'Megan', 1990, 'F', 20255), +(141879, 'Emily', 1990, 'F', 19358), +(141880, 'Nicole', 1990, 'F', 17950), +(141881, 'Kayla', 1990, 'F', 17536), +(141882, 'Amber', 1990, 'F', 15863), +(141883, 'Rachel', 1990, 'F', 15703), +(141884, 'Courtney', 1990, 'F', 15377), +(141885, 'Danielle', 1990, 'F', 14330), +(141886, 'Heather', 1990, 'F', 14217), +(141887, 'Melissa', 1990, 'F', 13996), +(141888, 'Rebecca', 1990, 'F', 13670), +(141889, 'Michelle', 1990, 'F', 13417), +(141890, 'Tiffany', 1990, 'F', 13157), +(141891, 'Chelsea', 1990, 'F', 12782), +(141892, 'Christina', 1990, 'F', 11925), +(141893, 'Katherine', 1990, 'F', 11617), +(141894, 'Alyssa', 1990, 'F', 11261), +(141895, 'Jasmine', 1990, 'F', 11033), +(141896, 'Laura', 1990, 'F', 10908), +(141897, 'Hannah', 1990, 'F', 10275), +(141898, 'Kimberly', 1990, 'F', 10192), +(141899, 'Kelsey', 1990, 'F', 9494), +(141900, 'Victoria', 1990, 'F', 9104), +(141901, 'Sara', 1990, 'F', 8972), +(141902, 'Mary', 1990, 'F', 8664), +(141903, 'Erica', 1990, 'F', 8603), +(141904, 'Alexandra', 1990, 'F', 8506), +(141905, 'Amy', 1990, 'F', 8456), +(141906, 'Crystal', 1990, 'F', 8218), +(141907, 'Andrea', 1990, 'F', 8210), +(141908, 'Kelly', 1990, 'F', 8135), +(141909, 'Kristen', 1990, 'F', 8073), +(141910, 'Erin', 1990, 'F', 7985), +(141911, 'Brittney', 1990, 'F', 7428), +(141912, 'Anna', 1990, 'F', 7288), +(141913, 'Taylor', 1990, 'F', 7256), +(141914, 'Maria', 1990, 'F', 7181), +(141915, 'Allison', 1990, 'F', 7130), +(141916, 'Cassandra', 1990, 'F', 7053), +(141917, 'Caitlin', 1990, 'F', 7025), +(141918, 'Lindsey', 1990, 'F', 6782), +(141919, 'Angela', 1990, 'F', 6664), +(141920, 'Alicia', 1990, 'F', 6510), +(141921, 'Jamie', 1990, 'F', 6510), +(141922, 'Katie', 1990, 'F', 6510), +(141923, 'Vanessa', 1990, 'F', 6405), +(141924, 'Kathryn', 1990, 'F', 6350), +(141925, 'Morgan', 1990, 'F', 6047), +(141926, 'Jordan', 1990, 'F', 5954), +(141927, 'Whitney', 1990, 'F', 5903), +(141928, 'Brianna', 1990, 'F', 5678), +(141929, 'Christine', 1990, 'F', 5673), +(141930, 'Natalie', 1990, 'F', 5632), +(141931, 'Lisa', 1990, 'F', 5344), +(141932, 'Kristin', 1990, 'F', 5301), +(141933, 'Alexis', 1990, 'F', 5255), +(141934, 'Jacqueline', 1990, 'F', 5238), +(141935, 'Shannon', 1990, 'F', 5185), +(141936, 'Lindsay', 1990, 'F', 5036), +(141937, 'Brooke', 1990, 'F', 4988), +(141938, 'Catherine', 1990, 'F', 4892), +(141939, 'Olivia', 1990, 'F', 4622), +(141940, 'April', 1990, 'F', 4570), +(141941, 'Erika', 1990, 'F', 4566), +(141942, 'Katelyn', 1990, 'F', 4485), +(141943, 'Monica', 1990, 'F', 4452), +(141944, 'Kristina', 1990, 'F', 4390), +(141945, 'Kaitlyn', 1990, 'F', 4312), +(141946, 'Paige', 1990, 'F', 4112), +(141947, 'Molly', 1990, 'F', 3964), +(141948, 'Jenna', 1990, 'F', 3958), +(141949, 'Leah', 1990, 'F', 3924), +(141950, 'Julia', 1990, 'F', 3908), +(141951, 'Bianca', 1990, 'F', 3826), +(141952, 'Tara', 1990, 'F', 3821), +(141953, 'Melanie', 1990, 'F', 3812), +(141954, 'Marissa', 1990, 'F', 3806), +(141955, 'Cynthia', 1990, 'F', 3794), +(141956, 'Holly', 1990, 'F', 3771), +(141957, 'Abigail', 1990, 'F', 3719), +(141958, 'Meghan', 1990, 'F', 3693), +(141959, 'Kathleen', 1990, 'F', 3669), +(141960, 'Julie', 1990, 'F', 3655), +(141961, 'Ariel', 1990, 'F', 3604), +(141962, 'Alexandria', 1990, 'F', 3594), +(141963, 'Veronica', 1990, 'F', 3588), +(141964, 'Patricia', 1990, 'F', 3579), +(141965, 'Diana', 1990, 'F', 3543), +(141966, 'Gabrielle', 1990, 'F', 3541), +(141967, 'Shelby', 1990, 'F', 3517), +(141968, 'Kaitlin', 1990, 'F', 3472), +(141969, 'Margaret', 1990, 'F', 3370), +(141970, 'Brandi', 1990, 'F', 3340), +(141971, 'Krystal', 1990, 'F', 3289), +(141972, 'Natasha', 1990, 'F', 3267), +(141973, 'Casey', 1990, 'F', 3261), +(141974, 'Bethany', 1990, 'F', 3235), +(141975, 'Haley', 1990, 'F', 3199), +(141976, 'Briana', 1990, 'F', 3067), +(141977, 'Kara', 1990, 'F', 3036), +(141978, 'Rachael', 1990, 'F', 3028), +(141979, 'Miranda', 1990, 'F', 2957), +(141980, 'Breanna', 1990, 'F', 2952), +(141981, 'Dana', 1990, 'F', 2932), +(141982, 'Leslie', 1990, 'F', 2828), +(141983, 'Caroline', 1990, 'F', 2817), +(141984, 'Kendra', 1990, 'F', 2788), +(141985, 'Sabrina', 1990, 'F', 2722), +(141986, 'Angelica', 1990, 'F', 2717), +(141987, 'Karen', 1990, 'F', 2713), +(141988, 'Felicia', 1990, 'F', 2702), +(141989, 'Jillian', 1990, 'F', 2677), +(141990, 'Brenda', 1990, 'F', 2633), +(141991, 'Ana', 1990, 'F', 2609), +(141992, 'Desiree', 1990, 'F', 2575), +(141993, 'Meagan', 1990, 'F', 2531), +(141994, 'Katrina', 1990, 'F', 2479), +(141995, 'Chelsey', 1990, 'F', 2447), +(141996, 'Valerie', 1990, 'F', 2427), +(141997, 'Emma', 1990, 'F', 2415), +(141998, 'Nancy', 1990, 'F', 2384), +(141999, 'Monique', 1990, 'F', 2362), +(142000, 'Alison', 1990, 'F', 2361), +(142001, 'Alisha', 1990, 'F', 2343), +(142002, 'Sandra', 1990, 'F', 2343), +(142003, 'Britney', 1990, 'F', 2293), +(142004, 'Brandy', 1990, 'F', 2263), +(142005, 'Joanna', 1990, 'F', 2230), +(142006, 'Gina', 1990, 'F', 2208), +(142007, 'Grace', 1990, 'F', 2186), +(142008, 'Sierra', 1990, 'F', 2168), +(142009, 'Candace', 1990, 'F', 2164), +(142010, 'Jaclyn', 1990, 'F', 2155), +(142011, 'Adriana', 1990, 'F', 2149), +(142012, 'Krista', 1990, 'F', 2143), +(142013, 'Alexa', 1990, 'F', 2131), +(142014, 'Candice', 1990, 'F', 2116), +(142015, 'Lacey', 1990, 'F', 2047), +(142016, 'Rebekah', 1990, 'F', 2041), +(142017, 'Sydney', 1990, 'F', 2026), +(142018, 'Nichole', 1990, 'F', 1992), +(142019, 'Denise', 1990, 'F', 1955), +(142020, 'Dominique', 1990, 'F', 1945), +(142021, 'Ashlee', 1990, 'F', 1941), +(142022, 'Anne', 1990, 'F', 1926), +(142023, 'Yesenia', 1990, 'F', 1922), +(142024, 'Kirsten', 1990, 'F', 1869), +(142025, 'Deanna', 1990, 'F', 1854), +(142026, 'Claire', 1990, 'F', 1851), +(142027, 'Colleen', 1990, 'F', 1807), +(142028, 'Audrey', 1990, 'F', 1797), +(142029, 'Mallory', 1990, 'F', 1782), +(142030, 'Carly', 1990, 'F', 1777), +(142031, 'Tabitha', 1990, 'F', 1765), +(142032, 'Cristina', 1990, 'F', 1762), +(142033, 'Raven', 1990, 'F', 1758), +(142034, 'Priscilla', 1990, 'F', 1753), +(142035, 'Stacey', 1990, 'F', 1735), +(142036, 'Carolyn', 1990, 'F', 1714), +(142037, 'Carrie', 1990, 'F', 1707), +(142038, 'Kiara', 1990, 'F', 1690), +(142039, 'Susan', 1990, 'F', 1685), +(142040, 'Stacy', 1990, 'F', 1668), +(142041, 'Angel', 1990, 'F', 1663), +(142042, 'Linda', 1990, 'F', 1660), +(142043, 'Mercedes', 1990, 'F', 1654), +(142044, 'Autumn', 1990, 'F', 1652), +(142045, 'Ashleigh', 1990, 'F', 1623), +(142046, 'Kylie', 1990, 'F', 1612), +(142047, 'Teresa', 1990, 'F', 1610), +(142048, 'Gabriela', 1990, 'F', 1603), +(142049, 'Kelli', 1990, 'F', 1603), +(142050, 'Caitlyn', 1990, 'F', 1585), +(142051, 'Renee', 1990, 'F', 1572), +(142052, 'Arielle', 1990, 'F', 1569), +(142053, 'Cindy', 1990, 'F', 1567), +(142054, 'Ebony', 1990, 'F', 1567), +(142055, 'Justine', 1990, 'F', 1565), +(142056, 'Karina', 1990, 'F', 1561), +(142057, 'Meredith', 1990, 'F', 1555), +(142058, 'Bridget', 1990, 'F', 1545), +(142059, 'Hillary', 1990, 'F', 1524), +(142060, 'Daisy', 1990, 'F', 1520), +(142061, 'Amelia', 1990, 'F', 1511), +(142062, 'Mayra', 1990, 'F', 1502), +(142063, 'Theresa', 1990, 'F', 1500), +(142064, 'Madeline', 1990, 'F', 1492), +(142065, 'Claudia', 1990, 'F', 1490), +(142066, 'Sasha', 1990, 'F', 1488), +(142067, 'Heidi', 1990, 'F', 1465), +(142068, 'Robin', 1990, 'F', 1412), +(142069, 'Destiny', 1990, 'F', 1408), +(142070, 'Madison', 1990, 'F', 1408), +(142071, 'Lydia', 1990, 'F', 1405), +(142072, 'Savannah', 1990, 'F', 1401), +(142073, 'Wendy', 1990, 'F', 1398), +(142074, 'Barbara', 1990, 'F', 1388), +(142075, 'Melinda', 1990, 'F', 1381), +(142076, 'Tamara', 1990, 'F', 1378), +(142077, 'Ellen', 1990, 'F', 1377), +(142078, 'Alejandra', 1990, 'F', 1376), +(142079, 'Chloe', 1990, 'F', 1369), +(142080, 'Marie', 1990, 'F', 1340), +(142081, 'Jenny', 1990, 'F', 1338), +(142082, 'Virginia', 1990, 'F', 1335), +(142083, 'Kasey', 1990, 'F', 1331), +(142084, 'Jocelyn', 1990, 'F', 1317), +(142085, 'Carmen', 1990, 'F', 1315), +(142086, 'Jade', 1990, 'F', 1312), +(142087, 'Evelyn', 1990, 'F', 1301), +(142088, 'Jacquelyn', 1990, 'F', 1299), +(142089, 'Abby', 1990, 'F', 1293), +(142090, 'Janet', 1990, 'F', 1281), +(142091, 'Martha', 1990, 'F', 1266), +(142092, 'Tracy', 1990, 'F', 1266), +(142093, 'Cortney', 1990, 'F', 1261), +(142094, 'Bailey', 1990, 'F', 1259), +(142095, 'Ariana', 1990, 'F', 1254), +(142096, 'Cassie', 1990, 'F', 1253), +(142097, 'Brittani', 1990, 'F', 1220), +(142098, 'Jasmin', 1990, 'F', 1218), +(142099, 'Hilary', 1990, 'F', 1216), +(142100, 'Kaylee', 1990, 'F', 1211), +(142101, 'Cara', 1990, 'F', 1210), +(142102, 'Adrienne', 1990, 'F', 1209), +(142103, 'Allyson', 1990, 'F', 1198), +(142104, 'Kristine', 1990, 'F', 1196), +(142105, 'Pamela', 1990, 'F', 1195), +(142106, 'Raquel', 1990, 'F', 1189), +(142107, 'Tina', 1990, 'F', 1180), +(142108, 'Gloria', 1990, 'F', 1179), +(142109, 'Rosa', 1990, 'F', 1175), +(142110, 'Camille', 1990, 'F', 1170), +(142111, 'Michele', 1990, 'F', 1164), +(142112, 'Tiara', 1990, 'F', 1161), +(142113, 'Tasha', 1990, 'F', 1154), +(142114, 'Mackenzie', 1990, 'F', 1150), +(142115, 'Kristy', 1990, 'F', 1133), +(142116, 'Ann', 1990, 'F', 1125), +(142117, 'Sophia', 1990, 'F', 1125), +(142118, 'Shawna', 1990, 'F', 1124), +(142119, 'Tanya', 1990, 'F', 1118), +(142120, 'Jessie', 1990, 'F', 1116), +(142121, 'Latoya', 1990, 'F', 1116), +(142122, 'Marisa', 1990, 'F', 1110), +(142123, 'Kari', 1990, 'F', 1107), +(142124, 'Carissa', 1990, 'F', 1105), +(142125, 'Janelle', 1990, 'F', 1104), +(142126, 'Mariah', 1990, 'F', 1102), +(142127, 'Nina', 1990, 'F', 1101), +(142128, 'Angelina', 1990, 'F', 1099), +(142129, 'Deborah', 1990, 'F', 1094), +(142130, 'Carla', 1990, 'F', 1090), +(142131, 'Kellie', 1990, 'F', 1087), +(142132, 'Elise', 1990, 'F', 1071), +(142133, 'Hope', 1990, 'F', 1055), +(142134, 'Hayley', 1990, 'F', 1052), +(142135, 'Cierra', 1990, 'F', 1042), +(142136, 'Kristi', 1990, 'F', 1041), +(142137, 'Kate', 1990, 'F', 1035), +(142138, 'Summer', 1990, 'F', 1022), +(142139, 'Aimee', 1990, 'F', 1019), +(142140, 'Chelsie', 1990, 'F', 1014), +(142141, 'Sharon', 1990, 'F', 1008), +(142142, 'Toni', 1990, 'F', 1005), +(142143, 'Karla', 1990, 'F', 1001), +(142144, 'Alissa', 1990, 'F', 997), +(142145, 'Devon', 1990, 'F', 996), +(142146, 'Misty', 1990, 'F', 996), +(142147, 'Regina', 1990, 'F', 991), +(142148, 'Jeanette', 1990, 'F', 989), +(142149, 'Nikki', 1990, 'F', 984), +(142150, 'Esther', 1990, 'F', 981), +(142151, 'Miriam', 1990, 'F', 980), +(142152, 'Tatiana', 1990, 'F', 979), +(142153, 'Christy', 1990, 'F', 974), +(142154, 'Charlotte', 1990, 'F', 959), +(142155, 'Maggie', 1990, 'F', 958), +(142156, 'Stefanie', 1990, 'F', 957), +(142157, 'Tessa', 1990, 'F', 955), +(142158, 'Ruby', 1990, 'F', 953), +(142159, 'Gabriella', 1990, 'F', 945), +(142160, 'Hailey', 1990, 'F', 945), +(142161, 'Ciara', 1990, 'F', 944), +(142162, 'Callie', 1990, 'F', 941), +(142163, 'Faith', 1990, 'F', 940), +(142164, 'Paula', 1990, 'F', 940), +(142165, 'Aubrey', 1990, 'F', 936), +(142166, 'Asia', 1990, 'F', 924), +(142167, 'Naomi', 1990, 'F', 921), +(142168, 'Jazmine', 1990, 'F', 916), +(142169, 'Jazmin', 1990, 'F', 910), +(142170, 'Carolina', 1990, 'F', 908), +(142171, 'Tia', 1990, 'F', 908), +(142172, 'Ruth', 1990, 'F', 906), +(142173, 'Trisha', 1990, 'F', 905), +(142174, 'Rose', 1990, 'F', 901), +(142175, 'Kelley', 1990, 'F', 887), +(142176, 'Robyn', 1990, 'F', 886), +(142177, 'Jaime', 1990, 'F', 882), +(142178, 'Michaela', 1990, 'F', 878), +(142179, 'Kassandra', 1990, 'F', 873), +(142180, 'Karissa', 1990, 'F', 871), +(142181, 'Sonia', 1990, 'F', 867), +(142182, 'Melody', 1990, 'F', 864), +(142183, 'Christian', 1990, 'F', 863), +(142184, 'Devin', 1990, 'F', 861), +(142185, 'Donna', 1990, 'F', 861), +(142186, 'Helen', 1990, 'F', 861), +(142187, 'Brianne', 1990, 'F', 857), +(142188, 'Kelsie', 1990, 'F', 856), +(142189, 'Clarissa', 1990, 'F', 853), +(142190, 'Lori', 1990, 'F', 852), +(142191, 'Marina', 1990, 'F', 851), +(142192, 'Adrianna', 1990, 'F', 850), +(142193, 'Cecilia', 1990, 'F', 847), +(142194, 'Shaniqua', 1990, 'F', 842), +(142195, 'Guadalupe', 1990, 'F', 836), +(142196, 'Rachelle', 1990, 'F', 834), +(142197, 'Jill', 1990, 'F', 833), +(142198, 'Ashton', 1990, 'F', 832), +(142199, 'Cheyenne', 1990, 'F', 832), +(142200, 'Annie', 1990, 'F', 820), +(142201, 'Sylvia', 1990, 'F', 818), +(142202, 'Taryn', 1990, 'F', 806), +(142203, 'Roxanne', 1990, 'F', 802), +(142204, 'Shayla', 1990, 'F', 799), +(142205, 'Randi', 1990, 'F', 794), +(142206, 'Isabel', 1990, 'F', 785), +(142207, 'Leticia', 1990, 'F', 781), +(142208, 'Mia', 1990, 'F', 780), +(142209, 'Eva', 1990, 'F', 778), +(142210, 'Hanna', 1990, 'F', 778), +(142211, 'Katlyn', 1990, 'F', 778), +(142212, 'Alice', 1990, 'F', 771), +(142213, 'Jane', 1990, 'F', 771), +(142214, 'Simone', 1990, 'F', 767), +(142215, 'Elisabeth', 1990, 'F', 766), +(142216, 'Carol', 1990, 'F', 764), +(142217, 'Shana', 1990, 'F', 762), +(142218, 'Frances', 1990, 'F', 759), +(142219, 'Tierra', 1990, 'F', 756), +(142220, 'Elena', 1990, 'F', 755), +(142221, 'Antoinette', 1990, 'F', 753), +(142222, 'Lacy', 1990, 'F', 753), +(142223, 'Ericka', 1990, 'F', 749), +(142224, 'Brittni', 1990, 'F', 746), +(142225, 'Latasha', 1990, 'F', 741), +(142226, 'Alyson', 1990, 'F', 740), +(142227, 'Dawn', 1990, 'F', 740), +(142228, 'Yvette', 1990, 'F', 739), +(142229, 'Chantel', 1990, 'F', 738), +(142230, 'Diane', 1990, 'F', 730), +(142231, 'Shauna', 1990, 'F', 730), +(142232, 'Tonya', 1990, 'F', 725), +(142233, 'Liliana', 1990, 'F', 722), +(142234, 'Lillian', 1990, 'F', 722), +(142235, 'Meaghan', 1990, 'F', 722), +(142236, 'Alana', 1990, 'F', 720), +(142237, 'Suzanne', 1990, 'F', 715), +(142238, 'Yvonne', 1990, 'F', 712), +(142239, 'Christa', 1990, 'F', 706), +(142240, 'Chasity', 1990, 'F', 704), +(142241, 'Johanna', 1990, 'F', 699), +(142242, 'Joy', 1990, 'F', 697), +(142243, 'Kristie', 1990, 'F', 696), +(142244, 'Rochelle', 1990, 'F', 696), +(142245, 'Katelynn', 1990, 'F', 695), +(142246, 'Bonnie', 1990, 'F', 694), +(142247, 'Sandy', 1990, 'F', 694), +(142248, 'Daniela', 1990, 'F', 690), +(142249, 'Lorena', 1990, 'F', 690), +(142250, 'Anastasia', 1990, 'F', 688), +(142251, 'Lyndsey', 1990, 'F', 687), +(142252, 'Irene', 1990, 'F', 685), +(142253, 'Alma', 1990, 'F', 683), +(142254, 'Tanisha', 1990, 'F', 681), +(142255, 'Keri', 1990, 'F', 678), +(142256, 'Leanna', 1990, 'F', 675), +(142257, 'Marlene', 1990, 'F', 670), +(142258, 'Yolanda', 1990, 'F', 669), +(142259, 'Beth', 1990, 'F', 663), +(142260, 'Blanca', 1990, 'F', 662), +(142261, 'Charlene', 1990, 'F', 660), +(142262, 'Maribel', 1990, 'F', 660), +(142263, 'Nadia', 1990, 'F', 659), +(142264, 'Keisha', 1990, 'F', 657), +(142265, 'Celeste', 1990, 'F', 653), +(142266, 'Maya', 1990, 'F', 651), +(142267, 'Marisol', 1990, 'F', 650), +(142268, 'Katharine', 1990, 'F', 647), +(142269, 'Kourtney', 1990, 'F', 646), +(142270, 'Larissa', 1990, 'F', 646), +(142271, 'Anita', 1990, 'F', 642), +(142272, 'Corinne', 1990, 'F', 642); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(142273, 'Kendall', 1990, 'F', 642), +(142274, 'Casandra', 1990, 'F', 641), +(142275, 'Shaina', 1990, 'F', 639), +(142276, 'Elaine', 1990, 'F', 631), +(142277, 'Alysha', 1990, 'F', 630), +(142278, 'Arianna', 1990, 'F', 629), +(142279, 'Shayna', 1990, 'F', 628), +(142280, 'Sheila', 1990, 'F', 626), +(142281, 'Kayleigh', 1990, 'F', 619), +(142282, 'Cheryl', 1990, 'F', 616), +(142283, 'Tabatha', 1990, 'F', 614), +(142284, 'Iris', 1990, 'F', 608), +(142285, 'Brenna', 1990, 'F', 605), +(142286, 'Chanel', 1990, 'F', 604), +(142287, 'Stacie', 1990, 'F', 603), +(142288, 'Elisa', 1990, 'F', 601), +(142289, 'Kylee', 1990, 'F', 601), +(142290, 'Mindy', 1990, 'F', 600), +(142291, 'Tiana', 1990, 'F', 600), +(142292, 'Esmeralda', 1990, 'F', 599), +(142293, 'Dorothy', 1990, 'F', 596), +(142294, 'Kyla', 1990, 'F', 596), +(142295, 'Juliana', 1990, 'F', 595), +(142296, 'Diamond', 1990, 'F', 591), +(142297, 'Shanna', 1990, 'F', 589), +(142298, 'Nora', 1990, 'F', 586), +(142299, 'Marilyn', 1990, 'F', 582), +(142300, 'Kierra', 1990, 'F', 581), +(142301, 'Infant', 1990, 'F', 580), +(142302, 'Josephine', 1990, 'F', 578), +(142303, 'Kaila', 1990, 'F', 576), +(142304, 'Kerri', 1990, 'F', 574), +(142305, 'Christie', 1990, 'F', 573), +(142306, 'Staci', 1990, 'F', 571), +(142307, 'Bridgette', 1990, 'F', 569), +(142308, 'Alaina', 1990, 'F', 567), +(142309, 'Stephany', 1990, 'F', 564), +(142310, 'Ciera', 1990, 'F', 559), +(142311, 'Kali', 1990, 'F', 558), +(142312, 'Julianne', 1990, 'F', 557), +(142313, 'Kerry', 1990, 'F', 554), +(142314, 'Jalisa', 1990, 'F', 553), +(142315, 'Vivian', 1990, 'F', 552), +(142316, 'Lucy', 1990, 'F', 550), +(142317, 'Sally', 1990, 'F', 550), +(142318, 'Tammy', 1990, 'F', 549), +(142319, 'Precious', 1990, 'F', 547), +(142320, 'Judith', 1990, 'F', 544), +(142321, 'Debra', 1990, 'F', 543), +(142322, 'Sadie', 1990, 'F', 541), +(142323, 'Tiffani', 1990, 'F', 539), +(142324, 'Kirstie', 1990, 'F', 537), +(142325, 'Charity', 1990, 'F', 536), +(142326, 'Alisa', 1990, 'F', 533), +(142327, 'Margarita', 1990, 'F', 530), +(142328, 'Eileen', 1990, 'F', 529), +(142329, 'Krystle', 1990, 'F', 529), +(142330, 'Noelle', 1990, 'F', 529), +(142331, 'Mollie', 1990, 'F', 528), +(142332, 'Francesca', 1990, 'F', 527), +(142333, 'Mandy', 1990, 'F', 526), +(142334, 'Tori', 1990, 'F', 526), +(142335, 'Leigh', 1990, 'F', 522), +(142336, 'Sheena', 1990, 'F', 522), +(142337, 'Beatriz', 1990, 'F', 521), +(142338, 'Cassidy', 1990, 'F', 521), +(142339, 'Patrice', 1990, 'F', 521), +(142340, 'Alanna', 1990, 'F', 520), +(142341, 'Jodi', 1990, 'F', 518), +(142342, 'Traci', 1990, 'F', 516), +(142343, 'Ashlie', 1990, 'F', 514), +(142344, 'Janice', 1990, 'F', 513), +(142345, 'Joyce', 1990, 'F', 512), +(142346, 'Natalia', 1990, 'F', 511), +(142347, 'Desirae', 1990, 'F', 508), +(142348, 'Jordyn', 1990, 'F', 508), +(142349, 'Abbey', 1990, 'F', 507), +(142350, 'Connie', 1990, 'F', 506), +(142351, 'Darlene', 1990, 'F', 505), +(142352, 'Genevieve', 1990, 'F', 501), +(142353, 'India', 1990, 'F', 500), +(142354, 'Maritza', 1990, 'F', 500), +(142355, 'Blair', 1990, 'F', 499), +(142356, 'Tania', 1990, 'F', 498), +(142357, 'Mckenzie', 1990, 'F', 497), +(142358, 'Britany', 1990, 'F', 496), +(142359, 'Tracey', 1990, 'F', 496), +(142360, 'Latisha', 1990, 'F', 495), +(142361, 'Norma', 1990, 'F', 494), +(142362, 'Tricia', 1990, 'F', 493), +(142363, 'Kelsi', 1990, 'F', 492), +(142364, 'Maureen', 1990, 'F', 491), +(142365, 'Breanne', 1990, 'F', 488), +(142366, 'Shantel', 1990, 'F', 486), +(142367, 'Angelia', 1990, 'F', 484), +(142368, 'Daniella', 1990, 'F', 483), +(142369, 'Janae', 1990, 'F', 480), +(142370, 'Kathy', 1990, 'F', 478), +(142371, 'Zoe', 1990, 'F', 478), +(142372, 'Serena', 1990, 'F', 477), +(142373, 'Constance', 1990, 'F', 475), +(142374, 'Jaimie', 1990, 'F', 475), +(142375, 'Mariana', 1990, 'F', 473), +(142376, 'Rosemary', 1990, 'F', 472), +(142377, 'Shirley', 1990, 'F', 472), +(142378, 'Annette', 1990, 'F', 470), +(142379, 'Nicolette', 1990, 'F', 470), +(142380, 'Sonya', 1990, 'F', 470), +(142381, 'Katy', 1990, 'F', 469), +(142382, 'Clara', 1990, 'F', 466), +(142383, 'Lea', 1990, 'F', 465), +(142384, 'Loren', 1990, 'F', 463), +(142385, 'Kacie', 1990, 'F', 460), +(142386, 'Kristyn', 1990, 'F', 459), +(142387, 'Cristal', 1990, 'F', 458), +(142388, 'Jami', 1990, 'F', 458), +(142389, 'Alycia', 1990, 'F', 457), +(142390, 'Beverly', 1990, 'F', 456), +(142391, 'Jackie', 1990, 'F', 455), +(142392, 'Lena', 1990, 'F', 452), +(142393, 'Ryan', 1990, 'F', 451), +(142394, 'Elyse', 1990, 'F', 449), +(142395, 'Kira', 1990, 'F', 449), +(142396, 'Gladys', 1990, 'F', 448), +(142397, 'Juanita', 1990, 'F', 448), +(142398, 'Kaleigh', 1990, 'F', 448), +(142399, 'Laurel', 1990, 'F', 447), +(142400, 'Isamar', 1990, 'F', 446), +(142401, 'Leanne', 1990, 'F', 446), +(142402, 'Tyler', 1990, 'F', 445), +(142403, 'Ashly', 1990, 'F', 444), +(142404, 'Justina', 1990, 'F', 444), +(142405, 'Lara', 1990, 'F', 442), +(142406, 'Mara', 1990, 'F', 442), +(142407, 'Jacklyn', 1990, 'F', 440), +(142408, 'Lesley', 1990, 'F', 440), +(142409, 'Paris', 1990, 'F', 439), +(142410, 'Kala', 1990, 'F', 438), +(142411, 'Carina', 1990, 'F', 435), +(142412, 'Breana', 1990, 'F', 433), +(142413, 'Jana', 1990, 'F', 433), +(142414, 'Rita', 1990, 'F', 433), +(142415, 'Rocio', 1990, 'F', 433), +(142416, 'Whitley', 1990, 'F', 432), +(142417, 'Cayla', 1990, 'F', 431), +(142418, 'Brandie', 1990, 'F', 429), +(142419, 'Brittanie', 1990, 'F', 429), +(142420, 'Chantal', 1990, 'F', 428), +(142421, 'Terri', 1990, 'F', 426), +(142422, 'Eliza', 1990, 'F', 424), +(142423, 'Araceli', 1990, 'F', 423), +(142424, 'Edith', 1990, 'F', 423), +(142425, 'Susana', 1990, 'F', 423), +(142426, 'Alexia', 1990, 'F', 422), +(142427, 'Ashlyn', 1990, 'F', 419), +(142428, 'Joanne', 1990, 'F', 418), +(142429, 'Skylar', 1990, 'F', 418), +(142430, 'Jena', 1990, 'F', 417), +(142431, 'Kirstin', 1990, 'F', 413), +(142432, 'Shelly', 1990, 'F', 413), +(142433, 'Kiera', 1990, 'F', 412), +(142434, 'Aisha', 1990, 'F', 410), +(142435, 'Katelin', 1990, 'F', 409), +(142436, 'Paulina', 1990, 'F', 408), +(142437, 'Kyra', 1990, 'F', 407), +(142438, 'Sade', 1990, 'F', 407), +(142439, 'Betty', 1990, 'F', 406), +(142440, 'Tamika', 1990, 'F', 404), +(142441, 'Cecily', 1990, 'F', 403), +(142442, 'Tess', 1990, 'F', 403), +(142443, 'Judy', 1990, 'F', 402), +(142444, 'Madeleine', 1990, 'F', 402), +(142445, 'Maegan', 1990, 'F', 402), +(142446, 'Allie', 1990, 'F', 400), +(142447, 'Lucia', 1990, 'F', 399), +(142448, 'Sherry', 1990, 'F', 399), +(142449, 'Lynn', 1990, 'F', 398), +(142450, 'Maricela', 1990, 'F', 398), +(142451, 'Lily', 1990, 'F', 397), +(142452, 'Angie', 1990, 'F', 395), +(142453, 'Jennie', 1990, 'F', 394), +(142454, 'Emilee', 1990, 'F', 392), +(142455, 'Celia', 1990, 'F', 391), +(142456, 'Lakeisha', 1990, 'F', 391), +(142457, 'Genesis', 1990, 'F', 390), +(142458, 'Noemi', 1990, 'F', 389), +(142459, 'Brittny', 1990, 'F', 388), +(142460, 'Keshia', 1990, 'F', 385), +(142461, 'Dianna', 1990, 'F', 384), +(142462, 'Jayme', 1990, 'F', 381), +(142463, 'Dakota', 1990, 'F', 380), +(142464, 'Maranda', 1990, 'F', 380), +(142465, 'Eleanor', 1990, 'F', 378), +(142466, 'Savanna', 1990, 'F', 378), +(142467, 'Jessika', 1990, 'F', 377), +(142468, 'Kaley', 1990, 'F', 377), +(142469, 'Adrian', 1990, 'F', 376), +(142470, 'Kailey', 1990, 'F', 376), +(142471, 'Luz', 1990, 'F', 375), +(142472, 'Rhonda', 1990, 'F', 373), +(142473, 'Sophie', 1990, 'F', 373), +(142474, 'Talia', 1990, 'F', 373), +(142475, 'Britni', 1990, 'F', 370), +(142476, 'Jerrica', 1990, 'F', 370), +(142477, 'Silvia', 1990, 'F', 370), +(142478, 'Hollie', 1990, 'F', 369), +(142479, 'Logan', 1990, 'F', 368), +(142480, 'Shante', 1990, 'F', 368), +(142481, 'Kenya', 1990, 'F', 366), +(142482, 'Marisela', 1990, 'F', 366), +(142483, 'Christin', 1990, 'F', 365), +(142484, 'Emilie', 1990, 'F', 365), +(142485, 'Octavia', 1990, 'F', 365), +(142486, 'Josie', 1990, 'F', 363), +(142487, 'Kaci', 1990, 'F', 362), +(142488, 'Kiersten', 1990, 'F', 362), +(142489, 'Fatima', 1990, 'F', 361), +(142490, 'Jenifer', 1990, 'F', 359), +(142491, 'Lizbeth', 1990, 'F', 358), +(142492, 'Belinda', 1990, 'F', 357), +(142493, 'Lizette', 1990, 'F', 357), +(142494, 'Gretchen', 1990, 'F', 356), +(142495, 'Katlin', 1990, 'F', 356), +(142496, 'Kristian', 1990, 'F', 356), +(142497, 'Bryanna', 1990, 'F', 355), +(142498, 'Janette', 1990, 'F', 355), +(142499, 'Terra', 1990, 'F', 355), +(142500, 'Yadira', 1990, 'F', 355), +(142501, 'Angelique', 1990, 'F', 354), +(142502, 'Ashely', 1990, 'F', 354), +(142503, 'Perla', 1990, 'F', 354), +(142504, 'Racheal', 1990, 'F', 354), +(142505, 'Bobbie', 1990, 'F', 351), +(142506, 'Danica', 1990, 'F', 351), +(142507, 'Dayna', 1990, 'F', 351), +(142508, 'Macy', 1990, 'F', 351), +(142509, 'Lacie', 1990, 'F', 349), +(142510, 'Maura', 1990, 'F', 349), +(142511, 'Alysia', 1990, 'F', 348), +(142512, 'Corina', 1990, 'F', 348), +(142513, 'Elisha', 1990, 'F', 348), +(142514, 'Sofia', 1990, 'F', 348), +(142515, 'Jesse', 1990, 'F', 347), +(142516, 'Laurie', 1990, 'F', 344), +(142517, 'Christen', 1990, 'F', 343), +(142518, 'Kacey', 1990, 'F', 343), +(142519, 'Stevie', 1990, 'F', 343), +(142520, 'Alexandrea', 1990, 'F', 341), +(142521, 'Lorraine', 1990, 'F', 341), +(142522, 'Kaitlynn', 1990, 'F', 340), +(142523, 'Clare', 1990, 'F', 338), +(142524, 'Jaleesa', 1990, 'F', 338), +(142525, 'Julianna', 1990, 'F', 338), +(142526, 'Antonia', 1990, 'F', 337), +(142527, 'Janine', 1990, 'F', 337), +(142528, 'Nikita', 1990, 'F', 337), +(142529, 'Nathalie', 1990, 'F', 332), +(142530, 'Yessenia', 1990, 'F', 329), +(142531, 'Alina', 1990, 'F', 326), +(142532, 'Paola', 1990, 'F', 326), +(142533, 'Janie', 1990, 'F', 323), +(142534, 'Kimberley', 1990, 'F', 323), +(142535, 'Viviana', 1990, 'F', 322), +(142536, 'Devan', 1990, 'F', 321), +(142537, 'Kasandra', 1990, 'F', 321), +(142538, 'Audra', 1990, 'F', 320), +(142539, 'Rhiannon', 1990, 'F', 320), +(142540, 'Corey', 1990, 'F', 319), +(142541, 'Janessa', 1990, 'F', 318), +(142542, 'Yasmin', 1990, 'F', 317), +(142543, 'Cameron', 1990, 'F', 316), +(142544, 'Kortney', 1990, 'F', 316), +(142545, 'Kaylyn', 1990, 'F', 315), +(142546, 'Alecia', 1990, 'F', 314), +(142547, 'Arlene', 1990, 'F', 314), +(142548, 'Gwendolyn', 1990, 'F', 314), +(142549, 'Abbie', 1990, 'F', 313), +(142550, 'Valeria', 1990, 'F', 313), +(142551, 'Irma', 1990, 'F', 312), +(142552, 'Joann', 1990, 'F', 312), +(142553, 'Roxana', 1990, 'F', 311), +(142554, 'Brittaney', 1990, 'F', 309), +(142555, 'Ali', 1990, 'F', 308), +(142556, 'Skye', 1990, 'F', 308), +(142557, 'Kristal', 1990, 'F', 307), +(142558, 'Shanae', 1990, 'F', 307), +(142559, 'Tiffanie', 1990, 'F', 307), +(142560, 'Alesha', 1990, 'F', 306), +(142561, 'Leann', 1990, 'F', 306), +(142562, 'Nadine', 1990, 'F', 306), +(142563, 'Amie', 1990, 'F', 305), +(142564, 'Eden', 1990, 'F', 305), +(142565, 'Chrystal', 1990, 'F', 304), +(142566, 'Domonique', 1990, 'F', 302), +(142567, 'Lauryn', 1990, 'F', 302), +(142568, 'Myra', 1990, 'F', 301), +(142569, 'Latifah', 1990, 'F', 300), +(142570, 'Celina', 1990, 'F', 299), +(142571, 'Cori', 1990, 'F', 299), +(142572, 'Giselle', 1990, 'F', 299), +(142573, 'Shelley', 1990, 'F', 298), +(142574, 'Allyssa', 1990, 'F', 296), +(142575, 'Krysta', 1990, 'F', 296), +(142576, 'Tayler', 1990, 'F', 296), +(142577, 'Kimberlee', 1990, 'F', 295), +(142578, 'Mikayla', 1990, 'F', 295), +(142579, 'Tianna', 1990, 'F', 295), +(142580, 'Brittnee', 1990, 'F', 294), +(142581, 'Lyndsay', 1990, 'F', 294), +(142582, 'Aurora', 1990, 'F', 293), +(142583, 'Kanisha', 1990, 'F', 293), +(142584, 'Kaylin', 1990, 'F', 292), +(142585, 'Georgia', 1990, 'F', 291), +(142586, 'Janay', 1990, 'F', 291), +(142587, 'Beatrice', 1990, 'F', 290), +(142588, 'Ashli', 1990, 'F', 289), +(142589, 'Britny', 1990, 'F', 289), +(142590, 'Chantelle', 1990, 'F', 289), +(142591, 'Rebeca', 1990, 'F', 289), +(142592, 'Shanice', 1990, 'F', 289), +(142593, 'Reyna', 1990, 'F', 288), +(142594, 'Shanika', 1990, 'F', 288), +(142595, 'Cassondra', 1990, 'F', 287), +(142596, 'Griselda', 1990, 'F', 287), +(142597, 'Jerica', 1990, 'F', 286), +(142598, 'Athena', 1990, 'F', 285), +(142599, 'Iesha', 1990, 'F', 285), +(142600, 'Porsha', 1990, 'F', 285), +(142601, 'Rubi', 1990, 'F', 285), +(142602, 'Madelyn', 1990, 'F', 284), +(142603, 'Iliana', 1990, 'F', 283), +(142604, 'Skyler', 1990, 'F', 283), +(142605, 'Stefani', 1990, 'F', 282), +(142606, 'Bernadette', 1990, 'F', 281), +(142607, 'Betsy', 1990, 'F', 281), +(142608, 'Ingrid', 1990, 'F', 281), +(142609, 'Chandra', 1990, 'F', 280), +(142610, 'Debbie', 1990, 'F', 280), +(142611, 'Elissa', 1990, 'F', 279), +(142612, 'Trista', 1990, 'F', 279), +(142613, 'Deja', 1990, 'F', 278), +(142614, 'Anabel', 1990, 'F', 277), +(142615, 'Kandice', 1990, 'F', 277), +(142616, 'Kassie', 1990, 'F', 277), +(142617, 'Latrice', 1990, 'F', 277), +(142618, 'Michael', 1990, 'F', 277), +(142619, 'Dina', 1990, 'F', 276), +(142620, 'Kiley', 1990, 'F', 276), +(142621, 'Kandace', 1990, 'F', 275), +(142622, 'Krystina', 1990, 'F', 275), +(142623, 'Martika', 1990, 'F', 273), +(142624, 'Pauline', 1990, 'F', 273), +(142625, 'Kiana', 1990, 'F', 272), +(142626, 'Marcella', 1990, 'F', 272), +(142627, 'Princess', 1990, 'F', 272), +(142628, 'Carley', 1990, 'F', 271), +(142629, 'Chelsi', 1990, 'F', 271), +(142630, 'Joan', 1990, 'F', 269), +(142631, 'Selina', 1990, 'F', 269), +(142632, 'Daphne', 1990, 'F', 268), +(142633, 'Keely', 1990, 'F', 267), +(142634, 'Lora', 1990, 'F', 267), +(142635, 'Tiera', 1990, 'F', 267), +(142636, 'Ivy', 1990, 'F', 266), +(142637, 'Jeannette', 1990, 'F', 266), +(142638, 'Bobbi', 1990, 'F', 265), +(142639, 'Jean', 1990, 'F', 265), +(142640, 'Breann', 1990, 'F', 264), +(142641, 'Felisha', 1990, 'F', 264), +(142642, 'Hallie', 1990, 'F', 264), +(142643, 'Melisa', 1990, 'F', 264), +(142644, 'Mikaela', 1990, 'F', 264), +(142645, 'Julissa', 1990, 'F', 263), +(142646, 'Kelsea', 1990, 'F', 262), +(142647, 'Selena', 1990, 'F', 262), +(142648, 'Kathrine', 1990, 'F', 260), +(142649, 'Darcy', 1990, 'F', 258), +(142650, 'Olga', 1990, 'F', 258), +(142651, 'Adrianne', 1990, 'F', 257), +(142652, 'Kim', 1990, 'F', 257), +(142653, 'Monika', 1990, 'F', 257), +(142654, 'Phylicia', 1990, 'F', 257), +(142655, 'Laci', 1990, 'F', 256), +(142656, 'Jaqueline', 1990, 'F', 255), +(142657, 'Joelle', 1990, 'F', 255), +(142658, 'Marquita', 1990, 'F', 255), +(142659, 'Noel', 1990, 'F', 255), +(142660, 'Kori', 1990, 'F', 254), +(142661, 'Jolene', 1990, 'F', 253), +(142662, 'Mai', 1990, 'F', 253), +(142663, 'Eboni', 1990, 'F', 252), +(142664, 'Moriah', 1990, 'F', 252), +(142665, 'Latonya', 1990, 'F', 251), +(142666, 'Liana', 1990, 'F', 251), +(142667, 'Makayla', 1990, 'F', 251), +(142668, 'Alex', 1990, 'F', 250), +(142669, 'Avery', 1990, 'F', 250), +(142670, 'Leandra', 1990, 'F', 250), +(142671, 'Maira', 1990, 'F', 250), +(142672, 'Marla', 1990, 'F', 250), +(142673, 'Kaylie', 1990, 'F', 249), +(142674, 'Lana', 1990, 'F', 249), +(142675, 'Kaela', 1990, 'F', 248), +(142676, 'Delia', 1990, 'F', 246), +(142677, 'Tanesha', 1990, 'F', 246), +(142678, 'Micaela', 1990, 'F', 245), +(142679, 'Juana', 1990, 'F', 244), +(142680, 'Leeann', 1990, 'F', 243), +(142681, 'Elaina', 1990, 'F', 242), +(142682, 'Elsa', 1990, 'F', 242), +(142683, 'Valencia', 1990, 'F', 242), +(142684, 'Alyse', 1990, 'F', 241), +(142685, 'Ayla', 1990, 'F', 241), +(142686, 'Charmaine', 1990, 'F', 240), +(142687, 'Lynette', 1990, 'F', 239), +(142688, 'Mariela', 1990, 'F', 239), +(142689, 'Symone', 1990, 'F', 239), +(142690, 'Gillian', 1990, 'F', 238), +(142691, 'Laquita', 1990, 'F', 238), +(142692, 'Melina', 1990, 'F', 238), +(142693, 'Rikki', 1990, 'F', 238), +(142694, 'Riley', 1990, 'F', 238), +(142695, 'Kyle', 1990, 'F', 237), +(142696, 'Sonja', 1990, 'F', 237), +(142697, 'Alessandra', 1990, 'F', 236), +(142698, 'Jamila', 1990, 'F', 236), +(142699, 'Martina', 1990, 'F', 236), +(142700, 'Tyesha', 1990, 'F', 236), +(142701, 'Billie', 1990, 'F', 235), +(142702, 'Janna', 1990, 'F', 235), +(142703, 'Krysten', 1990, 'F', 235), +(142704, 'Nikole', 1990, 'F', 235), +(142705, 'Teri', 1990, 'F', 235), +(142706, 'Bridgett', 1990, 'F', 234), +(142707, 'Ella', 1990, 'F', 234), +(142708, 'Portia', 1990, 'F', 234), +(142709, 'Tameka', 1990, 'F', 234), +(142710, 'Brittnie', 1990, 'F', 233), +(142711, 'Christiana', 1990, 'F', 233), +(142712, 'Deidra', 1990, 'F', 233), +(142713, 'Destinee', 1990, 'F', 232), +(142714, 'Kaycee', 1990, 'F', 232), +(142715, 'Susanna', 1990, 'F', 232), +(142716, 'Cecelia', 1990, 'F', 231), +(142717, 'Fabiola', 1990, 'F', 231), +(142718, 'Geneva', 1990, 'F', 231), +(142719, 'Ivana', 1990, 'F', 231), +(142720, 'Kalyn', 1990, 'F', 231), +(142721, 'Aileen', 1990, 'F', 230), +(142722, 'Becky', 1990, 'F', 230), +(142723, 'Cora', 1990, 'F', 230), +(142724, 'Doris', 1990, 'F', 230), +(142725, 'Heaven', 1990, 'F', 230), +(142726, 'Ivette', 1990, 'F', 230), +(142727, 'Cody', 1990, 'F', 229), +(142728, 'Kia', 1990, 'F', 229), +(142729, 'Nia', 1990, 'F', 229), +(142730, 'Shea', 1990, 'F', 229), +(142731, 'Baby', 1990, 'F', 227), +(142732, 'Gianna', 1990, 'F', 227), +(142733, 'Janell', 1990, 'F', 227), +(142734, 'Cherie', 1990, 'F', 226), +(142735, 'Lucero', 1990, 'F', 226), +(142736, 'Brook', 1990, 'F', 225), +(142737, 'Andria', 1990, 'F', 224), +(142738, 'Jodie', 1990, 'F', 224), +(142739, 'Phoebe', 1990, 'F', 224), +(142740, 'Alexander', 1990, 'F', 223), +(142741, 'Jaimee', 1990, 'F', 223), +(142742, 'Magen', 1990, 'F', 222), +(142743, 'Mandi', 1990, 'F', 222), +(142744, 'Corrine', 1990, 'F', 221), +(142745, 'Kati', 1990, 'F', 221), +(142746, 'Kenisha', 1990, 'F', 221), +(142747, 'Samatha', 1990, 'F', 221), +(142748, 'Dara', 1990, 'F', 220), +(142749, 'Sarai', 1990, 'F', 220), +(142750, 'Shelbi', 1990, 'F', 220), +(142751, 'Danika', 1990, 'F', 219), +(142752, 'Deana', 1990, 'F', 219), +(142753, 'Demetria', 1990, 'F', 219), +(142754, 'Shakira', 1990, 'F', 219), +(142755, 'Liza', 1990, 'F', 218), +(142756, 'Marjorie', 1990, 'F', 218), +(142757, 'Karly', 1990, 'F', 217), +(142758, 'Tera', 1990, 'F', 217), +(142759, 'Lashonda', 1990, 'F', 216), +(142760, 'Maryann', 1990, 'F', 216), +(142761, 'Holli', 1990, 'F', 215), +(142762, 'Isabella', 1990, 'F', 215), +(142763, 'Chaya', 1990, 'F', 214), +(142764, 'Lakeshia', 1990, 'F', 214), +(142765, 'Lissette', 1990, 'F', 214), +(142766, 'Richelle', 1990, 'F', 214), +(142767, 'Alysa', 1990, 'F', 213), +(142768, 'Jessenia', 1990, 'F', 213), +(142769, 'Joana', 1990, 'F', 213), +(142770, 'Marcia', 1990, 'F', 213), +(142771, 'Catrina', 1990, 'F', 212), +(142772, 'Dulce', 1990, 'F', 212), +(142773, 'Gabriel', 1990, 'F', 212), +(142774, 'Katheryn', 1990, 'F', 212), +(142775, 'Lourdes', 1990, 'F', 212), +(142776, 'Micah', 1990, 'F', 212), +(142777, 'Roxanna', 1990, 'F', 212), +(142778, 'Dominque', 1990, 'F', 211), +(142779, 'Brooklyn', 1990, 'F', 210), +(142780, 'Cathy', 1990, 'F', 210), +(142781, 'Nataly', 1990, 'F', 210), +(142782, 'Chastity', 1990, 'F', 209), +(142783, 'Jessi', 1990, 'F', 209), +(142784, 'Magdalena', 1990, 'F', 209), +(142785, 'Trina', 1990, 'F', 208), +(142786, 'Fallon', 1990, 'F', 207), +(142787, 'Loretta', 1990, 'F', 207), +(142788, 'Shanell', 1990, 'F', 207), +(142789, 'Sherri', 1990, 'F', 207), +(142790, 'Sidney', 1990, 'F', 207), +(142791, 'Anjelica', 1990, 'F', 206), +(142792, 'Carlie', 1990, 'F', 206), +(142793, 'Chanelle', 1990, 'F', 206), +(142794, 'Karli', 1990, 'F', 206), +(142795, 'Edna', 1990, 'F', 205), +(142796, 'Eunice', 1990, 'F', 205), +(142797, 'Tracie', 1990, 'F', 205), +(142798, 'Imani', 1990, 'F', 204), +(142799, 'Jesica', 1990, 'F', 204), +(142800, 'Kalie', 1990, 'F', 204), +(142801, 'Krystin', 1990, 'F', 204), +(142802, 'Mari', 1990, 'F', 204), +(142803, 'Marian', 1990, 'F', 203), +(142804, 'Aja', 1990, 'F', 202), +(142805, 'Alannah', 1990, 'F', 202), +(142806, 'Blake', 1990, 'F', 202), +(142807, 'Bree', 1990, 'F', 202), +(142808, 'Roberta', 1990, 'F', 202), +(142809, 'Fiona', 1990, 'F', 201), +(142810, 'Kallie', 1990, 'F', 201), +(142811, 'Shari', 1990, 'F', 201), +(142812, 'Lisette', 1990, 'F', 200), +(142813, 'Candy', 1990, 'F', 199), +(142814, 'Danyelle', 1990, 'F', 199), +(142815, 'Geraldine', 1990, 'F', 199), +(142816, 'Helena', 1990, 'F', 199), +(142817, 'Vicky', 1990, 'F', 199), +(142818, 'Kanesha', 1990, 'F', 198), +(142819, 'Lia', 1990, 'F', 198), +(142820, 'Ava', 1990, 'F', 197), +(142821, 'Kristan', 1990, 'F', 197), +(142822, 'Laken', 1990, 'F', 197), +(142823, 'Lee', 1990, 'F', 197), +(142824, 'Catalina', 1990, 'F', 196), +(142825, 'Dena', 1990, 'F', 196), +(142826, 'Kacy', 1990, 'F', 196), +(142827, 'Mariel', 1990, 'F', 196), +(142828, 'Marsha', 1990, 'F', 196), +(142829, 'Cari', 1990, 'F', 195), +(142830, 'Haleigh', 1990, 'F', 195), +(142831, 'Jeanne', 1990, 'F', 195), +(142832, 'Jesenia', 1990, 'F', 195), +(142833, 'Janel', 1990, 'F', 194), +(142834, 'Marlena', 1990, 'F', 194), +(142835, 'Deidre', 1990, 'F', 193), +(142836, 'Georgina', 1990, 'F', 193), +(142837, 'Luisa', 1990, 'F', 193), +(142838, 'Cory', 1990, 'F', 192), +(142839, 'Dora', 1990, 'F', 192), +(142840, 'Eryn', 1990, 'F', 192), +(142841, 'Lizeth', 1990, 'F', 192), +(142842, 'Danae', 1990, 'F', 191), +(142843, 'Graciela', 1990, 'F', 191), +(142844, 'Shamika', 1990, 'F', 191), +(142845, 'Tosha', 1990, 'F', 191), +(142846, 'Wanda', 1990, 'F', 191), +(142847, 'Annmarie', 1990, 'F', 190), +(142848, 'Christopher', 1990, 'F', 188), +(142849, 'Elyssa', 1990, 'F', 188), +(142850, 'Emilia', 1990, 'F', 188), +(142851, 'Jody', 1990, 'F', 188), +(142852, 'Kimber', 1990, 'F', 188), +(142853, 'Marianne', 1990, 'F', 188), +(142854, 'Renae', 1990, 'F', 187), +(142855, 'Shameka', 1990, 'F', 187), +(142856, 'Deirdre', 1990, 'F', 186), +(142857, 'Linsey', 1990, 'F', 186), +(142858, 'Lynsey', 1990, 'F', 186), +(142859, 'Malinda', 1990, 'F', 185), +(142860, 'Shantell', 1990, 'F', 185), +(142861, 'Asha', 1990, 'F', 184), +(142862, 'Cherish', 1990, 'F', 184), +(142863, 'Tarah', 1990, 'F', 184), +(142864, 'Hali', 1990, 'F', 183), +(142865, 'Jada', 1990, 'F', 182), +(142866, 'Leila', 1990, 'F', 182), +(142867, 'Louise', 1990, 'F', 182), +(142868, 'Annemarie', 1990, 'F', 181), +(142869, 'Damaris', 1990, 'F', 181), +(142870, 'Deandra', 1990, 'F', 181), +(142871, 'Haylee', 1990, 'F', 181), +(142872, 'Jourdan', 1990, 'F', 181), +(142873, 'Magan', 1990, 'F', 181), +(142874, 'Peggy', 1990, 'F', 181), +(142875, 'Amberly', 1990, 'F', 180), +(142876, 'Delaney', 1990, 'F', 180), +(142877, 'Jasmyne', 1990, 'F', 180), +(142878, 'Makenzie', 1990, 'F', 180), +(142879, 'Sheri', 1990, 'F', 180), +(142880, 'Tawny', 1990, 'F', 180), +(142881, 'Tiarra', 1990, 'F', 180), +(142882, 'Annamarie', 1990, 'F', 179), +(142883, 'Bertha', 1990, 'F', 179), +(142884, 'Porsche', 1990, 'F', 179), +(142885, 'Alyssia', 1990, 'F', 178), +(142886, 'Antionette', 1990, 'F', 178), +(142887, 'Aubree', 1990, 'F', 178), +(142888, 'Brynn', 1990, 'F', 178), +(142889, 'Rosalinda', 1990, 'F', 178), +(142890, 'Salina', 1990, 'F', 177), +(142891, 'Shanique', 1990, 'F', 177), +(142892, 'Ada', 1990, 'F', 176), +(142893, 'Chiquita', 1990, 'F', 176), +(142894, 'Kelcie', 1990, 'F', 176), +(142895, 'Marta', 1990, 'F', 176), +(142896, 'Christal', 1990, 'F', 175), +(142897, 'Glenda', 1990, 'F', 175), +(142898, 'Kaneesha', 1990, 'F', 175), +(142899, 'Shanequa', 1990, 'F', 175), +(142900, 'Shaquana', 1990, 'F', 175), +(142901, 'Valarie', 1990, 'F', 175), +(142902, 'Chana', 1990, 'F', 174), +(142903, 'Stacia', 1990, 'F', 174), +(142904, 'Christi', 1990, 'F', 173), +(142905, 'Ellie', 1990, 'F', 173), +(142906, 'Marcy', 1990, 'F', 173), +(142907, 'Stephani', 1990, 'F', 173), +(142908, 'Ayana', 1990, 'F', 172), +(142909, 'Dolores', 1990, 'F', 172), +(142910, 'Isabelle', 1990, 'F', 172), +(142911, 'Reina', 1990, 'F', 172), +(142912, 'Rosemarie', 1990, 'F', 172), +(142913, 'Kasie', 1990, 'F', 171), +(142914, 'Marcela', 1990, 'F', 171), +(142915, 'Maxine', 1990, 'F', 171), +(142916, 'Sarina', 1990, 'F', 171), +(142917, 'Shawn', 1990, 'F', 171), +(142918, 'Stella', 1990, 'F', 171), +(142919, 'Anissa', 1990, 'F', 170), +(142920, 'Joni', 1990, 'F', 170), +(142921, 'Patience', 1990, 'F', 170), +(142922, 'Cinthia', 1990, 'F', 169), +(142923, 'Maricruz', 1990, 'F', 169), +(142924, 'Carli', 1990, 'F', 168), +(142925, 'Flor', 1990, 'F', 168), +(142926, 'Merissa', 1990, 'F', 168), +(142927, 'Santana', 1990, 'F', 168), +(142928, 'Shawnee', 1990, 'F', 168), +(142929, 'Adilene', 1990, 'F', 167), +(142930, 'Demi', 1990, 'F', 167), +(142931, 'Denisha', 1990, 'F', 167), +(142932, 'Brandee', 1990, 'F', 166), +(142933, 'Brielle', 1990, 'F', 166), +(142934, 'Joshua', 1990, 'F', 166), +(142935, 'Marion', 1990, 'F', 166), +(142936, 'Scarlett', 1990, 'F', 166), +(142937, 'Selene', 1990, 'F', 166), +(142938, 'Shaquita', 1990, 'F', 166), +(142939, 'Casie', 1990, 'F', 165), +(142940, 'Cheyanne', 1990, 'F', 165), +(142941, 'Leigha', 1990, 'F', 165), +(142942, 'Macey', 1990, 'F', 165), +(142943, 'Tyra', 1990, 'F', 165), +(142944, 'Coral', 1990, 'F', 164), +(142945, 'Kami', 1990, 'F', 164), +(142946, 'Alayna', 1990, 'F', 163), +(142947, 'Angeline', 1990, 'F', 163), +(142948, 'Brittnay', 1990, 'F', 163), +(142949, 'China', 1990, 'F', 163), +(142950, 'Devyn', 1990, 'F', 163), +(142951, 'Diandra', 1990, 'F', 163), +(142952, 'Ivonne', 1990, 'F', 163), +(142953, 'Johana', 1990, 'F', 163), +(142954, 'Emerald', 1990, 'F', 162), +(142955, 'Karlie', 1990, 'F', 162), +(142956, 'Kirby', 1990, 'F', 162), +(142957, 'Regan', 1990, 'F', 162), +(142958, 'Susie', 1990, 'F', 162), +(142959, 'Unknown', 1990, 'F', 162), +(142960, 'Yasmine', 1990, 'F', 162), +(142961, 'Brigitte', 1990, 'F', 160), +(142962, 'Lakesha', 1990, 'F', 160), +(142963, 'Lakisha', 1990, 'F', 160), +(142964, 'Mattie', 1990, 'F', 160), +(142965, 'Shanelle', 1990, 'F', 160), +(142966, 'Sinead', 1990, 'F', 160), +(142967, 'Elvira', 1990, 'F', 159), +(142968, 'Giovanna', 1990, 'F', 159), +(142969, 'Malia', 1990, 'F', 159), +(142970, 'Mariam', 1990, 'F', 159), +(142971, 'Ashlea', 1990, 'F', 158), +(142972, 'Esperanza', 1990, 'F', 158), +(142973, 'Hilda', 1990, 'F', 158), +(142974, 'Karin', 1990, 'F', 158), +(142975, 'Lucinda', 1990, 'F', 158), +(142976, 'Rosalie', 1990, 'F', 158), +(142977, 'Alena', 1990, 'F', 157), +(142978, 'Cathryn', 1990, 'F', 157), +(142979, 'Female', 1990, 'F', 157), +(142980, 'Francis', 1990, 'F', 157), +(142981, 'Leilani', 1990, 'F', 157), +(142982, 'Nichelle', 1990, 'F', 157), +(142983, 'Racquel', 1990, 'F', 157), +(142984, 'Rosie', 1990, 'F', 157), +(142985, 'Shaneka', 1990, 'F', 157), +(142986, 'Austin', 1990, 'F', 156), +(142987, 'Erinn', 1990, 'F', 156), +(142988, 'Harley', 1990, 'F', 156), +(142989, 'Jalissa', 1990, 'F', 156), +(142990, 'Juliet', 1990, 'F', 156), +(142991, 'Brianda', 1990, 'F', 155), +(142992, 'Dalia', 1990, 'F', 155), +(142993, 'Thalia', 1990, 'F', 155), +(142994, 'Alesia', 1990, 'F', 154), +(142995, 'Jenelle', 1990, 'F', 154), +(142996, 'Marlee', 1990, 'F', 154), +(142997, 'Rena', 1990, 'F', 154), +(142998, 'Alia', 1990, 'F', 153), +(142999, 'Chantell', 1990, 'F', 153), +(143000, 'Chelsy', 1990, 'F', 153), +(143001, 'Johnna', 1990, 'F', 153), +(143002, 'Kailee', 1990, 'F', 153), +(143003, 'Lina', 1990, 'F', 153), +(143004, 'Margo', 1990, 'F', 153), +(143005, 'Berenice', 1990, 'F', 152), +(143006, 'Kelsy', 1990, 'F', 152), +(143007, 'Madalyn', 1990, 'F', 152), +(143008, 'Ryann', 1990, 'F', 152), +(143009, 'Joslyn', 1990, 'F', 151), +(143010, 'Latosha', 1990, 'F', 151), +(143011, 'Sheree', 1990, 'F', 151), +(143012, 'Vanesa', 1990, 'F', 151), +(143013, 'Britta', 1990, 'F', 150), +(143014, 'Calli', 1990, 'F', 150), +(143015, 'Codi', 1990, 'F', 150), +(143016, 'Felecia', 1990, 'F', 150), +(143017, 'Kayli', 1990, 'F', 150), +(143018, 'Malissa', 1990, 'F', 150), +(143019, 'Nicolle', 1990, 'F', 150), +(143020, 'Anais', 1990, 'F', 149), +(143021, 'Cady', 1990, 'F', 149), +(143022, 'Charissa', 1990, 'F', 149), +(143023, 'Janee', 1990, 'F', 149), +(143024, 'Kenyatta', 1990, 'F', 149), +(143025, 'Marianna', 1990, 'F', 149), +(143026, 'Samara', 1990, 'F', 149), +(143027, 'Shelbie', 1990, 'F', 149), +(143028, 'Stephenie', 1990, 'F', 149), +(143029, 'Breonna', 1990, 'F', 148), +(143030, 'Cali', 1990, 'F', 148), +(143031, 'Daniel', 1990, 'F', 148), +(143032, 'Lynda', 1990, 'F', 148), +(143033, 'Davina', 1990, 'F', 147), +(143034, 'Eliana', 1990, 'F', 147), +(143035, 'Halie', 1990, 'F', 147), +(143036, 'Hana', 1990, 'F', 147), +(143037, 'Jeanine', 1990, 'F', 147), +(143038, 'Jeannie', 1990, 'F', 147), +(143039, 'Jewel', 1990, 'F', 147), +(143040, 'Joselyn', 1990, 'F', 147), +(143041, 'Lidia', 1990, 'F', 147), +(143042, 'Lilian', 1990, 'F', 147), +(143043, 'Audrianna', 1990, 'F', 146), +(143044, 'Ginger', 1990, 'F', 146), +(143045, 'Rene', 1990, 'F', 146), +(143046, 'Bernice', 1990, 'F', 145), +(143047, 'Hazel', 1990, 'F', 145), +(143048, 'Karyn', 1990, 'F', 145), +(143049, 'Shanita', 1990, 'F', 145), +(143050, 'Siobhan', 1990, 'F', 145), +(143051, 'Tamra', 1990, 'F', 145), +(143052, 'Whittney', 1990, 'F', 145), +(143053, 'Amalia', 1990, 'F', 144), +(143054, 'Aracely', 1990, 'F', 144), +(143055, 'Bryana', 1990, 'F', 144), +(143056, 'Carlee', 1990, 'F', 144), +(143057, 'Laquisha', 1990, 'F', 144), +(143058, 'Lilia', 1990, 'F', 144), +(143059, 'Denisse', 1990, 'F', 143), +(143060, 'Elsie', 1990, 'F', 143), +(143061, 'Latia', 1990, 'F', 143), +(143062, 'Mckenna', 1990, 'F', 143), +(143063, 'Nakia', 1990, 'F', 143), +(143064, 'Sondra', 1990, 'F', 143), +(143065, 'Destini', 1990, 'F', 142), +(143066, 'Francine', 1990, 'F', 142), +(143067, 'Kalli', 1990, 'F', 142), +(143068, 'Karlee', 1990, 'F', 142), +(143069, 'Kayley', 1990, 'F', 142), +(143070, 'Xiomara', 1990, 'F', 142), +(143071, 'Ashlynn', 1990, 'F', 141), +(143072, 'Keila', 1990, 'F', 141), +(143073, 'Sharonda', 1990, 'F', 141), +(143074, 'Corinna', 1990, 'F', 140), +(143075, 'Dianne', 1990, 'F', 140), +(143076, 'Myranda', 1990, 'F', 140), +(143077, 'Tristan', 1990, 'F', 140), +(143078, 'Viridiana', 1990, 'F', 140), +(143079, 'Audriana', 1990, 'F', 139), +(143080, 'Breeanna', 1990, 'F', 139), +(143081, 'Ileana', 1990, 'F', 139), +(143082, 'Katarina', 1990, 'F', 139), +(143083, 'Rosanna', 1990, 'F', 139), +(143084, 'Tenisha', 1990, 'F', 139), +(143085, 'Cheri', 1990, 'F', 138), +(143086, 'Essence', 1990, 'F', 138), +(143087, 'Justin', 1990, 'F', 138), +(143088, 'Paloma', 1990, 'F', 138), +(143089, 'Ramona', 1990, 'F', 138), +(143090, 'Thea', 1990, 'F', 138), +(143091, 'Arianne', 1990, 'F', 137), +(143092, 'Courtnie', 1990, 'F', 137), +(143093, 'Jacquelin', 1990, 'F', 137), +(143094, 'Spencer', 1990, 'F', 137), +(143095, 'Susannah', 1990, 'F', 137), +(143096, 'Delilah', 1990, 'F', 136), +(143097, 'Jeana', 1990, 'F', 136), +(143098, 'Jelisa', 1990, 'F', 136), +(143099, 'Brigette', 1990, 'F', 135), +(143100, 'Elana', 1990, 'F', 135), +(143101, 'Reanna', 1990, 'F', 135), +(143102, 'Shanay', 1990, 'F', 135), +(143103, 'Valentina', 1990, 'F', 135), +(143104, 'Ariella', 1990, 'F', 134), +(143105, 'Britnee', 1990, 'F', 134), +(143106, 'Britteny', 1990, 'F', 134), +(143107, 'Kinsey', 1990, 'F', 134), +(143108, 'Markie', 1990, 'F', 134), +(143109, 'Stormy', 1990, 'F', 134), +(143110, 'Meghann', 1990, 'F', 133), +(143111, 'Page', 1990, 'F', 133), +(143112, 'Trinity', 1990, 'F', 133), +(143113, 'Alishia', 1990, 'F', 132), +(143114, 'Francisca', 1990, 'F', 132), +(143115, 'Karisa', 1990, 'F', 132), +(143116, 'Kirstyn', 1990, 'F', 132), +(143117, 'Latesha', 1990, 'F', 132), +(143118, 'Layla', 1990, 'F', 132), +(143119, 'Shanta', 1990, 'F', 132), +(143120, 'Amara', 1990, 'F', 131), +(143121, 'Gracie', 1990, 'F', 131), +(143122, 'Lindy', 1990, 'F', 131), +(143123, 'Nakita', 1990, 'F', 131), +(143124, 'Aleshia', 1990, 'F', 130), +(143125, 'Corrie', 1990, 'F', 130), +(143126, 'Elvia', 1990, 'F', 130), +(143127, 'Jasmyn', 1990, 'F', 130), +(143128, 'Malorie', 1990, 'F', 130), +(143129, 'Pearl', 1990, 'F', 130), +(143130, 'Rosario', 1990, 'F', 130), +(143131, 'Shasta', 1990, 'F', 130), +(143132, 'Cathleen', 1990, 'F', 129), +(143133, 'Colby', 1990, 'F', 129), +(143134, 'Ladonna', 1990, 'F', 129), +(143135, 'Mellissa', 1990, 'F', 129), +(143136, 'Natali', 1990, 'F', 129), +(143137, 'Tanika', 1990, 'F', 129), +(143138, 'Colette', 1990, 'F', 128), +(143139, 'Courtnee', 1990, 'F', 128), +(143140, 'Eugenia', 1990, 'F', 128), +(143141, 'Gail', 1990, 'F', 128), +(143142, 'Jayne', 1990, 'F', 128), +(143143, 'Jazmyn', 1990, 'F', 128), +(143144, 'Lashawn', 1990, 'F', 128), +(143145, 'Shay', 1990, 'F', 128), +(143146, 'Suzanna', 1990, 'F', 128), +(143147, 'Vicki', 1990, 'F', 128), +(143148, 'Belen', 1990, 'F', 127), +(143149, 'Cherise', 1990, 'F', 127), +(143150, 'Danelle', 1990, 'F', 127), +(143151, 'Danna', 1990, 'F', 127), +(143152, 'Jeanna', 1990, 'F', 127), +(143153, 'Kaneisha', 1990, 'F', 127), +(143154, 'Katlynn', 1990, 'F', 127), +(143155, 'Kaylan', 1990, 'F', 127), +(143156, 'Kelci', 1990, 'F', 127), +(143157, 'Shakia', 1990, 'F', 127), +(143158, 'Dannielle', 1990, 'F', 126), +(143159, 'Estefania', 1990, 'F', 126), +(143160, 'Malika', 1990, 'F', 126), +(143161, 'Marci', 1990, 'F', 126), +(143162, 'Misha', 1990, 'F', 126), +(143163, 'Mona', 1990, 'F', 126), +(143164, 'Monet', 1990, 'F', 126), +(143165, 'Myesha', 1990, 'F', 126), +(143166, 'Violet', 1990, 'F', 126), +(143167, 'Deena', 1990, 'F', 125), +(143168, 'Ilana', 1990, 'F', 125), +(143169, 'Josefina', 1990, 'F', 125), +(143170, 'Kayle', 1990, 'F', 125), +(143171, 'Matthew', 1990, 'F', 125), +(143172, 'Pricilla', 1990, 'F', 125), +(143173, 'Brea', 1990, 'F', 124), +(143174, 'Cherelle', 1990, 'F', 124), +(143175, 'Franchesca', 1990, 'F', 124), +(143176, 'Ivory', 1990, 'F', 124), +(143177, 'Lakendra', 1990, 'F', 124), +(143178, 'Lila', 1990, 'F', 124), +(143179, 'Marguerite', 1990, 'F', 124), +(143180, 'Natosha', 1990, 'F', 124), +(143181, 'Rae', 1990, 'F', 124), +(143182, 'Rhea', 1990, 'F', 124), +(143183, 'Shalonda', 1990, 'F', 124), +(143184, 'Yajaira', 1990, 'F', 124), +(143185, 'Jackeline', 1990, 'F', 123), +(143186, 'Jazmyne', 1990, 'F', 123), +(143187, 'Meranda', 1990, 'F', 123), +(143188, 'Raina', 1990, 'F', 123), +(143189, 'Shanda', 1990, 'F', 123), +(143190, 'Unique', 1990, 'F', 123), +(143191, 'Alix', 1990, 'F', 122), +(143192, 'Annabel', 1990, 'F', 122), +(143193, 'Chante', 1990, 'F', 122), +(143194, 'Markita', 1990, 'F', 122), +(143195, 'Starr', 1990, 'F', 122), +(143196, 'Tisha', 1990, 'F', 122), +(143197, 'Aleisha', 1990, 'F', 121), +(143198, 'Ida', 1990, 'F', 121), +(143199, 'Pilar', 1990, 'F', 121), +(143200, 'Darla', 1990, 'F', 120), +(143201, 'David', 1990, 'F', 120), +(143202, 'Penny', 1990, 'F', 120), +(143203, 'Talisha', 1990, 'F', 120), +(143204, 'Chelsee', 1990, 'F', 119), +(143205, 'Estela', 1990, 'F', 119), +(143206, 'Farrah', 1990, 'F', 119), +(143207, 'Kalee', 1990, 'F', 119), +(143208, 'Kianna', 1990, 'F', 119), +(143209, 'Kiarra', 1990, 'F', 119), +(143210, 'Mallorie', 1990, 'F', 119), +(143211, 'Porscha', 1990, 'F', 119), +(143212, 'Yessica', 1990, 'F', 119), +(143213, 'Caryn', 1990, 'F', 118), +(143214, 'Charlie', 1990, 'F', 118), +(143215, 'Eve', 1990, 'F', 118), +(143216, 'Katerina', 1990, 'F', 118), +(143217, 'Kaylynn', 1990, 'F', 118), +(143218, 'Kenzie', 1990, 'F', 118), +(143219, 'Marcie', 1990, 'F', 118), +(143220, 'Nellie', 1990, 'F', 118), +(143221, 'Sheryl', 1990, 'F', 118), +(143222, 'Brieanna', 1990, 'F', 117), +(143223, 'Jordon', 1990, 'F', 117), +(143224, 'Kathryne', 1990, 'F', 117), +(143225, 'Kendal', 1990, 'F', 117), +(143226, 'Kenia', 1990, 'F', 117), +(143227, 'Kesha', 1990, 'F', 117), +(143228, 'Rachele', 1990, 'F', 117), +(143229, 'Shanee', 1990, 'F', 117), +(143230, 'Sharee', 1990, 'F', 117), +(143231, 'Annalisa', 1990, 'F', 116), +(143232, 'Jenessa', 1990, 'F', 116), +(143233, 'Jeri', 1990, 'F', 116), +(143234, 'Kaytlin', 1990, 'F', 116), +(143235, 'Misti', 1990, 'F', 116), +(143236, 'Sydnee', 1990, 'F', 116), +(143237, 'Therese', 1990, 'F', 116), +(143238, 'Aida', 1990, 'F', 115), +(143239, 'Cassaundra', 1990, 'F', 115), +(143240, 'James', 1990, 'F', 115), +(143241, 'Kady', 1990, 'F', 115), +(143242, 'Lillie', 1990, 'F', 115), +(143243, 'Linnea', 1990, 'F', 115), +(143244, 'Meggan', 1990, 'F', 115), +(143245, 'Sage', 1990, 'F', 115), +(143246, 'Shaniece', 1990, 'F', 115), +(143247, 'Stephaine', 1990, 'F', 115), +(143248, 'Tiesha', 1990, 'F', 115), +(143249, 'Yanira', 1990, 'F', 115), +(143250, 'Bailee', 1990, 'F', 114), +(143251, 'Cally', 1990, 'F', 114), +(143252, 'Corie', 1990, 'F', 114), +(143253, 'Corrina', 1990, 'F', 114), +(143254, 'Desire', 1990, 'F', 114), +(143255, 'Destiney', 1990, 'F', 114), +(143256, 'Jacquelynn', 1990, 'F', 114), +(143257, 'Jenae', 1990, 'F', 114), +(143258, 'Kay', 1990, 'F', 114), +(143259, 'Nicollette', 1990, 'F', 114), +(143260, 'Rashida', 1990, 'F', 114), +(143261, 'Terry', 1990, 'F', 114), +(143262, 'Venessa', 1990, 'F', 114), +(143263, 'Ashanti', 1990, 'F', 113), +(143264, 'Bria', 1990, 'F', 113), +(143265, 'Grecia', 1990, 'F', 113), +(143266, 'Jose', 1990, 'F', 113), +(143267, 'London', 1990, 'F', 113), +(143268, 'Macie', 1990, 'F', 113), +(143269, 'Natashia', 1990, 'F', 113), +(143270, 'Skyla', 1990, 'F', 113), +(143271, 'Tana', 1990, 'F', 113), +(143272, 'Taneisha', 1990, 'F', 113), +(143273, 'Tierney', 1990, 'F', 113), +(143274, 'Alba', 1990, 'F', 112), +(143275, 'Aleah', 1990, 'F', 112), +(143276, 'Alondra', 1990, 'F', 112), +(143277, 'Ayanna', 1990, 'F', 112), +(143278, 'Juliette', 1990, 'F', 112), +(143279, 'Kadie', 1990, 'F', 112), +(143280, 'Keeley', 1990, 'F', 112), +(143281, 'Kenna', 1990, 'F', 112), +(143282, 'Lucille', 1990, 'F', 112), +(143283, 'Marlen', 1990, 'F', 112), +(143284, 'Mellisa', 1990, 'F', 112), +(143285, 'Paulette', 1990, 'F', 112), +(143286, 'Salena', 1990, 'F', 112), +(143287, 'Stefany', 1990, 'F', 112), +(143288, 'Tabetha', 1990, 'F', 112), +(143289, 'Yazmin', 1990, 'F', 112), +(143290, 'Addie', 1990, 'F', 111), +(143291, 'Aubrie', 1990, 'F', 111), +(143292, 'Cami', 1990, 'F', 111), +(143293, 'Darci', 1990, 'F', 111), +(143294, 'Eleni', 1990, 'F', 111), +(143295, 'Evan', 1990, 'F', 111), +(143296, 'Frankie', 1990, 'F', 111), +(143297, 'Hailee', 1990, 'F', 111), +(143298, 'Lacee', 1990, 'F', 111), +(143299, 'Serina', 1990, 'F', 111), +(143300, 'Chanell', 1990, 'F', 110), +(143301, 'Jazzmine', 1990, 'F', 110), +(143302, 'Shavon', 1990, 'F', 110), +(143303, 'Sherrie', 1990, 'F', 110), +(143304, 'Ashia', 1990, 'F', 109), +(143305, 'Ayesha', 1990, 'F', 109), +(143306, 'Miesha', 1990, 'F', 109), +(143307, 'Mildred', 1990, 'F', 109), +(143308, 'Patsy', 1990, 'F', 109), +(143309, 'Robert', 1990, 'F', 109), +(143310, 'Shira', 1990, 'F', 109), +(143311, 'Shyla', 1990, 'F', 109), +(143312, 'Alora', 1990, 'F', 108), +(143313, 'Chanda', 1990, 'F', 108), +(143314, 'Daniele', 1990, 'F', 108), +(143315, 'Florence', 1990, 'F', 108), +(143316, 'Keara', 1990, 'F', 108), +(143317, 'Lilly', 1990, 'F', 108), +(143318, 'Reba', 1990, 'F', 108), +(143319, 'Rebecka', 1990, 'F', 108), +(143320, 'Rivka', 1990, 'F', 108), +(143321, 'Steffanie', 1990, 'F', 108), +(143322, 'Tasia', 1990, 'F', 108), +(143323, 'Aliza', 1990, 'F', 107), +(143324, 'Annalise', 1990, 'F', 107), +(143325, 'Gena', 1990, 'F', 107), +(143326, 'Izamar', 1990, 'F', 107), +(143327, 'Kaitlan', 1990, 'F', 107), +(143328, 'Keyana', 1990, 'F', 107), +(143329, 'Leeanna', 1990, 'F', 107), +(143330, 'Marah', 1990, 'F', 107), +(143331, 'Rosalyn', 1990, 'F', 107), +(143332, 'Tesla', 1990, 'F', 107), +(143333, 'Tonisha', 1990, 'F', 107), +(143334, 'Allegra', 1990, 'F', 106), +(143335, 'Anika', 1990, 'F', 106), +(143336, 'Bethanie', 1990, 'F', 106), +(143337, 'Dallas', 1990, 'F', 106), +(143338, 'Greta', 1990, 'F', 106), +(143339, 'Jamesha', 1990, 'F', 106), +(143340, 'Kelcey', 1990, 'F', 106), +(143341, 'Kiah', 1990, 'F', 106), +(143342, 'Lashanda', 1990, 'F', 106), +(143343, 'Latoria', 1990, 'F', 106), +(143344, 'Louisa', 1990, 'F', 106), +(143345, 'Rasheeda', 1990, 'F', 106), +(143346, 'Alyshia', 1990, 'F', 105), +(143347, 'Anastacia', 1990, 'F', 105), +(143348, 'Andrew', 1990, 'F', 105), +(143349, 'Ashlei', 1990, 'F', 105), +(143350, 'Britani', 1990, 'F', 105), +(143351, 'Camilla', 1990, 'F', 105), +(143352, 'Candis', 1990, 'F', 105), +(143353, 'Cristin', 1990, 'F', 105), +(143354, 'Dixie', 1990, 'F', 105), +(143355, 'Harmony', 1990, 'F', 105), +(143356, 'Kayce', 1990, 'F', 105), +(143357, 'Lashay', 1990, 'F', 105), +(143358, 'Sunny', 1990, 'F', 105), +(143359, 'Ami', 1990, 'F', 104), +(143360, 'Ariane', 1990, 'F', 104), +(143361, 'Cristy', 1990, 'F', 104), +(143362, 'Kenyetta', 1990, 'F', 104), +(143363, 'Kerrie', 1990, 'F', 104), +(143364, 'Magali', 1990, 'F', 104), +(143365, 'Mica', 1990, 'F', 104), +(143366, 'Niki', 1990, 'F', 104), +(143367, 'Shatara', 1990, 'F', 104), +(143368, 'Stormie', 1990, 'F', 104), +(143369, 'Alivia', 1990, 'F', 103), +(143370, 'Anisha', 1990, 'F', 103), +(143371, 'Cydney', 1990, 'F', 103), +(143372, 'Katina', 1990, 'F', 103), +(143373, 'Leona', 1990, 'F', 103), +(143374, 'Libby', 1990, 'F', 103), +(143375, 'Nelly', 1990, 'F', 103), +(143376, 'Reva', 1990, 'F', 103), +(143377, 'Samira', 1990, 'F', 103), +(143378, 'Yuri', 1990, 'F', 103), +(143379, 'Allysa', 1990, 'F', 102), +(143380, 'Brionna', 1990, 'F', 102), +(143381, 'Chynna', 1990, 'F', 102), +(143382, 'Jerika', 1990, 'F', 102), +(143383, 'Karrie', 1990, 'F', 102), +(143384, 'Keyona', 1990, 'F', 102), +(143385, 'Kyndra', 1990, 'F', 102), +(143386, 'Maci', 1990, 'F', 102), +(143387, 'Mireya', 1990, 'F', 102), +(143388, 'Rayna', 1990, 'F', 102), +(143389, 'Violeta', 1990, 'F', 102), +(143390, 'Ciarra', 1990, 'F', 101), +(143391, 'Corissa', 1990, 'F', 101), +(143392, 'Daria', 1990, 'F', 101), +(143393, 'Kayleen', 1990, 'F', 101), +(143394, 'Lianna', 1990, 'F', 101), +(143395, 'Mercedez', 1990, 'F', 101), +(143396, 'Quanisha', 1990, 'F', 101), +(143397, 'Shani', 1990, 'F', 101), +(143398, 'Yasmeen', 1990, 'F', 101), +(143399, 'Anthony', 1990, 'F', 100), +(143400, 'Astrid', 1990, 'F', 100), +(143401, 'Deonna', 1990, 'F', 100), +(143402, 'June', 1990, 'F', 100), +(143403, 'Khadijah', 1990, 'F', 100), +(143404, 'Michell', 1990, 'F', 100), +(143405, 'Sammantha', 1990, 'F', 100), +(143406, 'Savanah', 1990, 'F', 100), +(143407, 'Talisa', 1990, 'F', 100), +(143408, 'Vera', 1990, 'F', 100), +(143409, 'Michael', 1990, 'M', 65274), +(143410, 'Christopher', 1990, 'M', 52323), +(143411, 'Matthew', 1990, 'M', 44794), +(143412, 'Joshua', 1990, 'M', 43214), +(143413, 'Daniel', 1990, 'M', 33809), +(143414, 'David', 1990, 'M', 33741), +(143415, 'Andrew', 1990, 'M', 33653), +(143416, 'James', 1990, 'M', 32344), +(143417, 'Justin', 1990, 'M', 30637), +(143418, 'Joseph', 1990, 'M', 30122), +(143419, 'Ryan', 1990, 'M', 29239), +(143420, 'John', 1990, 'M', 29067), +(143421, 'Robert', 1990, 'M', 28864), +(143422, 'Nicholas', 1990, 'M', 27900), +(143423, 'Anthony', 1990, 'M', 25073), +(143424, 'William', 1990, 'M', 24884), +(143425, 'Jonathan', 1990, 'M', 24064), +(143426, 'Kyle', 1990, 'M', 22697), +(143427, 'Brandon', 1990, 'M', 22153), +(143428, 'Jacob', 1990, 'M', 22005), +(143429, 'Tyler', 1990, 'M', 20629), +(143430, 'Zachary', 1990, 'M', 20424), +(143431, 'Kevin', 1990, 'M', 20401), +(143432, 'Eric', 1990, 'M', 19411), +(143433, 'Steven', 1990, 'M', 18749), +(143434, 'Thomas', 1990, 'M', 18214), +(143435, 'Brian', 1990, 'M', 16918), +(143436, 'Alexander', 1990, 'M', 16181), +(143437, 'Jordan', 1990, 'M', 16128), +(143438, 'Timothy', 1990, 'M', 15685), +(143439, 'Cody', 1990, 'M', 15392), +(143440, 'Adam', 1990, 'M', 14708), +(143441, 'Benjamin', 1990, 'M', 14619), +(143442, 'Aaron', 1990, 'M', 14549), +(143443, 'Richard', 1990, 'M', 13575), +(143444, 'Patrick', 1990, 'M', 12372), +(143445, 'Sean', 1990, 'M', 12014), +(143446, 'Charles', 1990, 'M', 11990), +(143447, 'Stephen', 1990, 'M', 11939), +(143448, 'Jeremy', 1990, 'M', 11685), +(143449, 'Jose', 1990, 'M', 11508), +(143450, 'Travis', 1990, 'M', 11453), +(143451, 'Jeffrey', 1990, 'M', 10979), +(143452, 'Nathan', 1990, 'M', 10934), +(143453, 'Samuel', 1990, 'M', 10882), +(143454, 'Mark', 1990, 'M', 10681), +(143455, 'Jason', 1990, 'M', 10676), +(143456, 'Jesse', 1990, 'M', 8980), +(143457, 'Paul', 1990, 'M', 8578), +(143458, 'Dustin', 1990, 'M', 8453), +(143459, 'Gregory', 1990, 'M', 8377), +(143460, 'Kenneth', 1990, 'M', 8259), +(143461, 'Scott', 1990, 'M', 8082), +(143462, 'Derek', 1990, 'M', 8074), +(143463, 'Austin', 1990, 'M', 7909), +(143464, 'Corey', 1990, 'M', 7690), +(143465, 'Bryan', 1990, 'M', 7435), +(143466, 'Ethan', 1990, 'M', 6987), +(143467, 'Alex', 1990, 'M', 6941), +(143468, 'Christian', 1990, 'M', 6775), +(143469, 'Juan', 1990, 'M', 6735), +(143470, 'Cameron', 1990, 'M', 6663), +(143471, 'Jared', 1990, 'M', 6639), +(143472, 'Taylor', 1990, 'M', 6574), +(143473, 'Bradley', 1990, 'M', 6430), +(143474, 'Luis', 1990, 'M', 5788), +(143475, 'Cory', 1990, 'M', 5763), +(143476, 'Edward', 1990, 'M', 5741), +(143477, 'Shawn', 1990, 'M', 5719), +(143478, 'Ian', 1990, 'M', 5460), +(143479, 'Evan', 1990, 'M', 5307), +(143480, 'Marcus', 1990, 'M', 5297), +(143481, 'Shane', 1990, 'M', 5271), +(143482, 'Peter', 1990, 'M', 5215), +(143483, 'Carlos', 1990, 'M', 5207), +(143484, 'Trevor', 1990, 'M', 5140), +(143485, 'Antonio', 1990, 'M', 4864), +(143486, 'Vincent', 1990, 'M', 4798), +(143487, 'George', 1990, 'M', 4564), +(143488, 'Keith', 1990, 'M', 4481), +(143489, 'Phillip', 1990, 'M', 4453), +(143490, 'Victor', 1990, 'M', 4440), +(143491, 'Dylan', 1990, 'M', 4412), +(143492, 'Brett', 1990, 'M', 4392), +(143493, 'Chad', 1990, 'M', 4349), +(143494, 'Nathaniel', 1990, 'M', 4341), +(143495, 'Donald', 1990, 'M', 4177), +(143496, 'Caleb', 1990, 'M', 4153), +(143497, 'Casey', 1990, 'M', 4130), +(143498, 'Jesus', 1990, 'M', 4127), +(143499, 'Blake', 1990, 'M', 4101), +(143500, 'Raymond', 1990, 'M', 4061), +(143501, 'Mitchell', 1990, 'M', 4019), +(143502, 'Adrian', 1990, 'M', 3999), +(143503, 'Joel', 1990, 'M', 3998), +(143504, 'Erik', 1990, 'M', 3950), +(143505, 'Ronald', 1990, 'M', 3900), +(143506, 'Devin', 1990, 'M', 3862), +(143507, 'Garrett', 1990, 'M', 3755), +(143508, 'Gabriel', 1990, 'M', 3694), +(143509, 'Miguel', 1990, 'M', 3693), +(143510, 'Seth', 1990, 'M', 3560), +(143511, 'Douglas', 1990, 'M', 3544), +(143512, 'Logan', 1990, 'M', 3431), +(143513, 'Spencer', 1990, 'M', 3418), +(143514, 'Derrick', 1990, 'M', 3363), +(143515, 'Wesley', 1990, 'M', 3314), +(143516, 'Johnathan', 1990, 'M', 3246), +(143517, 'Frank', 1990, 'M', 3186), +(143518, 'Chase', 1990, 'M', 3158), +(143519, 'Philip', 1990, 'M', 3140), +(143520, 'Lucas', 1990, 'M', 3084), +(143521, 'Martin', 1990, 'M', 3080), +(143522, 'Gary', 1990, 'M', 3069), +(143523, 'Francisco', 1990, 'M', 2929), +(143524, 'Jorge', 1990, 'M', 2912), +(143525, 'Craig', 1990, 'M', 2905), +(143526, 'Luke', 1990, 'M', 2878), +(143527, 'Mario', 1990, 'M', 2821), +(143528, 'Ricardo', 1990, 'M', 2800), +(143529, 'Curtis', 1990, 'M', 2798), +(143530, 'Colin', 1990, 'M', 2781), +(143531, 'Julian', 1990, 'M', 2697), +(143532, 'Jonathon', 1990, 'M', 2667), +(143533, 'Alan', 1990, 'M', 2639), +(143534, 'Alejandro', 1990, 'M', 2636), +(143535, 'Brent', 1990, 'M', 2608), +(143536, 'Troy', 1990, 'M', 2503), +(143537, 'Dennis', 1990, 'M', 2491), +(143538, 'Johnny', 1990, 'M', 2480), +(143539, 'Randy', 1990, 'M', 2473), +(143540, 'Isaac', 1990, 'M', 2427), +(143541, 'Angel', 1990, 'M', 2404), +(143542, 'Manuel', 1990, 'M', 2391), +(143543, 'Oscar', 1990, 'M', 2326), +(143544, 'Jeffery', 1990, 'M', 2320), +(143545, 'Andre', 1990, 'M', 2296), +(143546, 'Henry', 1990, 'M', 2253), +(143547, 'Colton', 1990, 'M', 2232), +(143548, 'Jake', 1990, 'M', 2221), +(143549, 'Allen', 1990, 'M', 2218), +(143550, 'Russell', 1990, 'M', 2213), +(143551, 'Edgar', 1990, 'M', 2203), +(143552, 'Larry', 1990, 'M', 2193), +(143553, 'Carl', 1990, 'M', 2189), +(143554, 'Jerry', 1990, 'M', 2183), +(143555, 'Tony', 1990, 'M', 2181), +(143556, 'Mathew', 1990, 'M', 2175), +(143557, 'Eduardo', 1990, 'M', 2159), +(143558, 'Roberto', 1990, 'M', 2093), +(143559, 'Devon', 1990, 'M', 2057), +(143560, 'Darius', 1990, 'M', 2032), +(143561, 'Clayton', 1990, 'M', 2029), +(143562, 'Jeremiah', 1990, 'M', 2006), +(143563, 'Brendan', 1990, 'M', 1997), +(143564, 'Hector', 1990, 'M', 1986), +(143565, 'Javier', 1990, 'M', 1977), +(143566, 'Todd', 1990, 'M', 1975), +(143567, 'Omar', 1990, 'M', 1972), +(143568, 'Drew', 1990, 'M', 1953), +(143569, 'Sergio', 1990, 'M', 1934), +(143570, 'Danny', 1990, 'M', 1916), +(143571, 'Marc', 1990, 'M', 1900), +(143572, 'Terry', 1990, 'M', 1891), +(143573, 'Kristopher', 1990, 'M', 1858), +(143574, 'Jack', 1990, 'M', 1831), +(143575, 'Albert', 1990, 'M', 1826), +(143576, 'Louis', 1990, 'M', 1818), +(143577, 'Bryce', 1990, 'M', 1816), +(143578, 'Edwin', 1990, 'M', 1814), +(143579, 'Max', 1990, 'M', 1791), +(143580, 'Jimmy', 1990, 'M', 1786), +(143581, 'Calvin', 1990, 'M', 1782), +(143582, 'Lawrence', 1990, 'M', 1779), +(143583, 'Micheal', 1990, 'M', 1771), +(143584, 'Ricky', 1990, 'M', 1759), +(143585, 'Ivan', 1990, 'M', 1748), +(143586, 'Ruben', 1990, 'M', 1743), +(143587, 'Fernando', 1990, 'M', 1729), +(143588, 'Levi', 1990, 'M', 1716), +(143589, 'Rodney', 1990, 'M', 1710), +(143590, 'Lance', 1990, 'M', 1696), +(143591, 'Grant', 1990, 'M', 1691), +(143592, 'Dillon', 1990, 'M', 1682), +(143593, 'Bobby', 1990, 'M', 1678), +(143594, 'Xavier', 1990, 'M', 1647), +(143595, 'Nicolas', 1990, 'M', 1640), +(143596, 'Maxwell', 1990, 'M', 1626), +(143597, 'Dominic', 1990, 'M', 1624), +(143598, 'Ross', 1990, 'M', 1618), +(143599, 'Walter', 1990, 'M', 1613), +(143600, 'Randall', 1990, 'M', 1602), +(143601, 'Dalton', 1990, 'M', 1572), +(143602, 'Julio', 1990, 'M', 1553), +(143603, 'Dakota', 1990, 'M', 1549), +(143604, 'Pedro', 1990, 'M', 1541), +(143605, 'Arthur', 1990, 'M', 1540), +(143606, 'Preston', 1990, 'M', 1528), +(143607, 'Cesar', 1990, 'M', 1505), +(143608, 'Darren', 1990, 'M', 1505), +(143609, 'Rafael', 1990, 'M', 1502), +(143610, 'Clinton', 1990, 'M', 1499), +(143611, 'Andres', 1990, 'M', 1497), +(143612, 'Bryant', 1990, 'M', 1492), +(143613, 'Maurice', 1990, 'M', 1489), +(143614, 'Isaiah', 1990, 'M', 1487), +(143615, 'Dominique', 1990, 'M', 1485), +(143616, 'Mason', 1990, 'M', 1476), +(143617, 'Joe', 1990, 'M', 1459), +(143618, 'Raul', 1990, 'M', 1459), +(143619, 'Roger', 1990, 'M', 1456), +(143620, 'Gerald', 1990, 'M', 1451), +(143621, 'Lee', 1990, 'M', 1448), +(143622, 'Billy', 1990, 'M', 1438), +(143623, 'Jaime', 1990, 'M', 1436), +(143624, 'Jon', 1990, 'M', 1422), +(143625, 'Jay', 1990, 'M', 1397), +(143626, 'Emmanuel', 1990, 'M', 1396), +(143627, 'Hunter', 1990, 'M', 1388), +(143628, 'Tanner', 1990, 'M', 1387), +(143629, 'Willie', 1990, 'M', 1377), +(143630, 'Connor', 1990, 'M', 1376), +(143631, 'Erick', 1990, 'M', 1368), +(143632, 'Alberto', 1990, 'M', 1353), +(143633, 'Shaun', 1990, 'M', 1353), +(143634, 'Marco', 1990, 'M', 1338), +(143635, 'Jamie', 1990, 'M', 1318), +(143636, 'Noah', 1990, 'M', 1305), +(143637, 'Armando', 1990, 'M', 1288), +(143638, 'Reginald', 1990, 'M', 1282), +(143639, 'Jessie', 1990, 'M', 1255), +(143640, 'Eddie', 1990, 'M', 1248), +(143641, 'Theodore', 1990, 'M', 1231), +(143642, 'Zachery', 1990, 'M', 1228), +(143643, 'Terrance', 1990, 'M', 1225), +(143644, 'Roy', 1990, 'M', 1223), +(143645, 'Marvin', 1990, 'M', 1216), +(143646, 'Micah', 1990, 'M', 1177), +(143647, 'Collin', 1990, 'M', 1169), +(143648, 'Bruce', 1990, 'M', 1168), +(143649, 'Malcolm', 1990, 'M', 1158), +(143650, 'Wayne', 1990, 'M', 1149), +(143651, 'Elijah', 1990, 'M', 1136), +(143652, 'Abraham', 1990, 'M', 1131), +(143653, 'Darrell', 1990, 'M', 1129), +(143654, 'Colby', 1990, 'M', 1128), +(143655, 'Jamal', 1990, 'M', 1111), +(143656, 'Geoffrey', 1990, 'M', 1097), +(143657, 'Cole', 1990, 'M', 1096), +(143658, 'Johnathon', 1990, 'M', 1089), +(143659, 'Ramon', 1990, 'M', 1089), +(143660, 'Frederick', 1990, 'M', 1077), +(143661, 'Trent', 1990, 'M', 1072), +(143662, 'Gerardo', 1990, 'M', 1063), +(143663, 'Terrence', 1990, 'M', 1055), +(143664, 'Darryl', 1990, 'M', 1054), +(143665, 'Brock', 1990, 'M', 1040), +(143666, 'Marquis', 1990, 'M', 1037), +(143667, 'Arturo', 1990, 'M', 1036), +(143668, 'Tyrone', 1990, 'M', 1029), +(143669, 'Neil', 1990, 'M', 1028), +(143670, 'Ronnie', 1990, 'M', 1023), +(143671, 'Enrique', 1990, 'M', 1021), +(143672, 'Jerome', 1990, 'M', 1018), +(143673, 'Byron', 1990, 'M', 1014), +(143674, 'Trenton', 1990, 'M', 1010), +(143675, 'Steve', 1990, 'M', 1004), +(143676, 'Nickolas', 1990, 'M', 998), +(143677, 'Miles', 1990, 'M', 992), +(143678, 'Tommy', 1990, 'M', 981), +(143679, 'Alec', 1990, 'M', 978), +(143680, 'Alfredo', 1990, 'M', 971), +(143681, 'Marcos', 1990, 'M', 961), +(143682, 'Kurt', 1990, 'M', 957), +(143683, 'Andy', 1990, 'M', 956), +(143684, 'Deandre', 1990, 'M', 944), +(143685, 'Melvin', 1990, 'M', 939), +(143686, 'Morgan', 1990, 'M', 936), +(143687, 'Nelson', 1990, 'M', 931), +(143688, 'Harrison', 1990, 'M', 928), +(143689, 'Marshall', 1990, 'M', 927), +(143690, 'Terrell', 1990, 'M', 924), +(143691, 'Ernest', 1990, 'M', 920), +(143692, 'Francis', 1990, 'M', 916), +(143693, 'Dale', 1990, 'M', 907), +(143694, 'Dean', 1990, 'M', 893), +(143695, 'Desmond', 1990, 'M', 870), +(143696, 'Kelvin', 1990, 'M', 868), +(143697, 'Demetrius', 1990, 'M', 867), +(143698, 'Salvador', 1990, 'M', 867), +(143699, 'Kendall', 1990, 'M', 866), +(143700, 'Josue', 1990, 'M', 863), +(143701, 'Leonard', 1990, 'M', 863), +(143702, 'Gavin', 1990, 'M', 860), +(143703, 'Karl', 1990, 'M', 856), +(143704, 'Glenn', 1990, 'M', 853), +(143705, 'Quinton', 1990, 'M', 852), +(143706, 'Donovan', 1990, 'M', 850), +(143707, 'Franklin', 1990, 'M', 850), +(143708, 'Branden', 1990, 'M', 849), +(143709, 'Skyler', 1990, 'M', 847), +(143710, 'Nolan', 1990, 'M', 845), +(143711, 'Rene', 1990, 'M', 838), +(143712, 'Kaleb', 1990, 'M', 835), +(143713, 'Kody', 1990, 'M', 833), +(143714, 'Jermaine', 1990, 'M', 829), +(143715, 'Dwayne', 1990, 'M', 827), +(143716, 'Diego', 1990, 'M', 826), +(143717, 'Lorenzo', 1990, 'M', 826), +(143718, 'Ernesto', 1990, 'M', 821), +(143719, 'Riley', 1990, 'M', 812), +(143720, 'Eugene', 1990, 'M', 810), +(143721, 'Stanley', 1990, 'M', 808), +(143722, 'Orlando', 1990, 'M', 801), +(143723, 'Brady', 1990, 'M', 797), +(143724, 'Chance', 1990, 'M', 794), +(143725, 'Israel', 1990, 'M', 792), +(143726, 'Jarrod', 1990, 'M', 792), +(143727, 'Sebastian', 1990, 'M', 792), +(143728, 'Jackson', 1990, 'M', 791); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(143729, 'Damon', 1990, 'M', 787), +(143730, 'Damian', 1990, 'M', 781), +(143731, 'Wade', 1990, 'M', 778), +(143732, 'Harold', 1990, 'M', 771), +(143733, 'Fabian', 1990, 'M', 766), +(143734, 'Landon', 1990, 'M', 760), +(143735, 'Zachariah', 1990, 'M', 757), +(143736, 'Giovanni', 1990, 'M', 755), +(143737, 'Ray', 1990, 'M', 755), +(143738, 'Tristan', 1990, 'M', 751), +(143739, 'Alvin', 1990, 'M', 749), +(143740, 'Damien', 1990, 'M', 746), +(143741, 'Zackary', 1990, 'M', 743), +(143742, 'Dane', 1990, 'M', 739), +(143743, 'Angelo', 1990, 'M', 738), +(143744, 'Alexis', 1990, 'M', 736), +(143745, 'Beau', 1990, 'M', 731), +(143746, 'Quentin', 1990, 'M', 729), +(143747, 'Kendrick', 1990, 'M', 728), +(143748, 'Warren', 1990, 'M', 728), +(143749, 'Gilbert', 1990, 'M', 725), +(143750, 'Parker', 1990, 'M', 723), +(143751, 'Gustavo', 1990, 'M', 722), +(143752, 'Stuart', 1990, 'M', 706), +(143753, 'Trey', 1990, 'M', 704), +(143754, 'Clifford', 1990, 'M', 699), +(143755, 'Kirk', 1990, 'M', 697), +(143756, 'Barry', 1990, 'M', 694), +(143757, 'Jordon', 1990, 'M', 693), +(143758, 'Lamar', 1990, 'M', 689), +(143759, 'Kelly', 1990, 'M', 686), +(143760, 'Joey', 1990, 'M', 684), +(143761, 'Darnell', 1990, 'M', 678), +(143762, 'Pablo', 1990, 'M', 678), +(143763, 'Josiah', 1990, 'M', 677), +(143764, 'Rashad', 1990, 'M', 676), +(143765, 'Courtney', 1990, 'M', 675), +(143766, 'Elliott', 1990, 'M', 672), +(143767, 'Eli', 1990, 'M', 667), +(143768, 'Gage', 1990, 'M', 666), +(143769, 'Elias', 1990, 'M', 665), +(143770, 'Antoine', 1990, 'M', 651), +(143771, 'Brad', 1990, 'M', 649), +(143772, 'Alfred', 1990, 'M', 642), +(143773, 'Dante', 1990, 'M', 639), +(143774, 'Stefan', 1990, 'M', 638), +(143775, 'Ashton', 1990, 'M', 637), +(143776, 'Felix', 1990, 'M', 635), +(143777, 'Elliot', 1990, 'M', 631), +(143778, 'Emanuel', 1990, 'M', 628), +(143779, 'Harry', 1990, 'M', 626), +(143780, 'Oliver', 1990, 'M', 625), +(143781, 'Roman', 1990, 'M', 623), +(143782, 'Simon', 1990, 'M', 620), +(143783, 'Clarence', 1990, 'M', 618), +(143784, 'Clint', 1990, 'M', 617), +(143785, 'Dexter', 1990, 'M', 612), +(143786, 'Cedric', 1990, 'M', 611), +(143787, 'Hayden', 1990, 'M', 610), +(143788, 'Jarrett', 1990, 'M', 609), +(143789, 'Tevin', 1990, 'M', 607), +(143790, 'Brennan', 1990, 'M', 606), +(143791, 'Allan', 1990, 'M', 605), +(143792, 'Abel', 1990, 'M', 603), +(143793, 'Ralph', 1990, 'M', 602), +(143794, 'Rudy', 1990, 'M', 602), +(143795, 'Kory', 1990, 'M', 598), +(143796, 'Roderick', 1990, 'M', 598), +(143797, 'Infant', 1990, 'M', 596), +(143798, 'Leon', 1990, 'M', 594), +(143799, 'Keenan', 1990, 'M', 592), +(143800, 'Dallas', 1990, 'M', 591), +(143801, 'Dominick', 1990, 'M', 588), +(143802, 'Noel', 1990, 'M', 588), +(143803, 'Guillermo', 1990, 'M', 586), +(143804, 'Sam', 1990, 'M', 584), +(143805, 'Graham', 1990, 'M', 582), +(143806, 'Lewis', 1990, 'M', 579), +(143807, 'Weston', 1990, 'M', 578), +(143808, 'Blaine', 1990, 'M', 577), +(143809, 'Rodolfo', 1990, 'M', 575), +(143810, 'Julius', 1990, 'M', 574), +(143811, 'Howard', 1990, 'M', 573), +(143812, 'Akeem', 1990, 'M', 570), +(143813, 'Earl', 1990, 'M', 570), +(143814, 'Tyson', 1990, 'M', 570), +(143815, 'Wyatt', 1990, 'M', 570), +(143816, 'Stephan', 1990, 'M', 569), +(143817, 'Saul', 1990, 'M', 567), +(143818, 'Kurtis', 1990, 'M', 566), +(143819, 'Jarred', 1990, 'M', 564), +(143820, 'Derick', 1990, 'M', 561), +(143821, 'Ismael', 1990, 'M', 557), +(143822, 'Esteban', 1990, 'M', 556), +(143823, 'Leonardo', 1990, 'M', 555), +(143824, 'Hugo', 1990, 'M', 551), +(143825, 'Cristian', 1990, 'M', 550), +(143826, 'Bret', 1990, 'M', 546), +(143827, 'Jamar', 1990, 'M', 543), +(143828, 'Zackery', 1990, 'M', 543), +(143829, 'Forrest', 1990, 'M', 542), +(143830, 'Alfonso', 1990, 'M', 537), +(143831, 'Charlie', 1990, 'M', 537), +(143832, 'Donte', 1990, 'M', 536), +(143833, 'Carlton', 1990, 'M', 529), +(143834, 'Corbin', 1990, 'M', 528), +(143835, 'Felipe', 1990, 'M', 523), +(143836, 'Myles', 1990, 'M', 521), +(143837, 'Shannon', 1990, 'M', 520), +(143838, 'Bernard', 1990, 'M', 516), +(143839, 'Gilberto', 1990, 'M', 515), +(143840, 'Kenny', 1990, 'M', 514), +(143841, 'Isiah', 1990, 'M', 510), +(143842, 'Zane', 1990, 'M', 510), +(143843, 'Jarvis', 1990, 'M', 509), +(143844, 'Ty', 1990, 'M', 508), +(143845, 'Emilio', 1990, 'M', 507), +(143846, 'Korey', 1990, 'M', 507), +(143847, 'Rogelio', 1990, 'M', 505), +(143848, 'Leroy', 1990, 'M', 502), +(143849, 'Sheldon', 1990, 'M', 501), +(143850, 'Daryl', 1990, 'M', 500), +(143851, 'Demarcus', 1990, 'M', 498), +(143852, 'Denzel', 1990, 'M', 496), +(143853, 'Clay', 1990, 'M', 494), +(143854, 'Dwight', 1990, 'M', 493), +(143855, 'Coty', 1990, 'M', 491), +(143856, 'Chris', 1990, 'M', 487), +(143857, 'Brendon', 1990, 'M', 485), +(143858, 'Chaz', 1990, 'M', 485), +(143859, 'Tyrell', 1990, 'M', 485), +(143860, 'Terence', 1990, 'M', 482), +(143861, 'Owen', 1990, 'M', 479), +(143862, 'Deangelo', 1990, 'M', 478), +(143863, 'Perry', 1990, 'M', 473), +(143864, 'Carson', 1990, 'M', 471), +(143865, 'Marlon', 1990, 'M', 469), +(143866, 'Conor', 1990, 'M', 466), +(143867, 'Kasey', 1990, 'M', 466), +(143868, 'Neal', 1990, 'M', 463), +(143869, 'Heath', 1990, 'M', 456), +(143870, 'Kameron', 1990, 'M', 455), +(143871, 'Sterling', 1990, 'M', 451), +(143872, 'Glen', 1990, 'M', 450), +(143873, 'Raphael', 1990, 'M', 449), +(143874, 'Skylar', 1990, 'M', 448), +(143875, 'Moises', 1990, 'M', 447), +(143876, 'Fredrick', 1990, 'M', 446), +(143877, 'Brenton', 1990, 'M', 444), +(143878, 'Norman', 1990, 'M', 443), +(143879, 'Gordon', 1990, 'M', 441), +(143880, 'Clifton', 1990, 'M', 440), +(143881, 'Ali', 1990, 'M', 439), +(143882, 'Nikolas', 1990, 'M', 438), +(143883, 'Tucker', 1990, 'M', 434), +(143884, 'Alonzo', 1990, 'M', 429), +(143885, 'Leo', 1990, 'M', 429), +(143886, 'Ramiro', 1990, 'M', 426), +(143887, 'Davon', 1990, 'M', 423), +(143888, 'Wilson', 1990, 'M', 416), +(143889, 'Deshawn', 1990, 'M', 409), +(143890, 'Ariel', 1990, 'M', 405), +(143891, 'Kerry', 1990, 'M', 402), +(143892, 'Shayne', 1990, 'M', 399), +(143893, 'Braden', 1990, 'M', 396), +(143894, 'Chandler', 1990, 'M', 396), +(143895, 'Cornelius', 1990, 'M', 396), +(143896, 'Kent', 1990, 'M', 394), +(143897, 'Vernon', 1990, 'M', 394), +(143898, 'Tomas', 1990, 'M', 392), +(143899, 'Lloyd', 1990, 'M', 391), +(143900, 'Avery', 1990, 'M', 387), +(143901, 'Devan', 1990, 'M', 387), +(143902, 'Frankie', 1990, 'M', 387), +(143903, 'Pierre', 1990, 'M', 387), +(143904, 'Jaron', 1990, 'M', 385), +(143905, 'Rolando', 1990, 'M', 385), +(143906, 'Fred', 1990, 'M', 384), +(143907, 'Jayson', 1990, 'M', 384), +(143908, 'Keegan', 1990, 'M', 384), +(143909, 'Markus', 1990, 'M', 384), +(143910, 'Quincy', 1990, 'M', 383), +(143911, 'Rickey', 1990, 'M', 382), +(143912, 'Quintin', 1990, 'M', 381), +(143913, 'Garret', 1990, 'M', 380), +(143914, 'Roland', 1990, 'M', 380), +(143915, 'Mike', 1990, 'M', 379), +(143916, 'Lonnie', 1990, 'M', 377), +(143917, 'Rick', 1990, 'M', 377), +(143918, 'Darrin', 1990, 'M', 376), +(143919, 'Rodrigo', 1990, 'M', 376), +(143920, 'Rory', 1990, 'M', 373), +(143921, 'Humberto', 1990, 'M', 371), +(143922, 'Sidney', 1990, 'M', 367), +(143923, 'Ben', 1990, 'M', 366), +(143924, 'Tracy', 1990, 'M', 364), +(143925, 'Quinn', 1990, 'M', 363), +(143926, 'Brenden', 1990, 'M', 362), +(143927, 'Jamel', 1990, 'M', 359), +(143928, 'Dorian', 1990, 'M', 357), +(143929, 'Duane', 1990, 'M', 357), +(143930, 'Jean', 1990, 'M', 356), +(143931, 'Mackenzie', 1990, 'M', 355), +(143932, 'Nathanael', 1990, 'M', 355), +(143933, 'Shelby', 1990, 'M', 355), +(143934, 'Dion', 1990, 'M', 351), +(143935, 'Gerard', 1990, 'M', 350), +(143936, 'Lukas', 1990, 'M', 349), +(143937, 'Brice', 1990, 'M', 348), +(143938, 'Herbert', 1990, 'M', 348), +(143939, 'Dana', 1990, 'M', 347), +(143940, 'Darin', 1990, 'M', 347), +(143941, 'Cortez', 1990, 'M', 346), +(143942, 'Antwan', 1990, 'M', 345), +(143943, 'Javon', 1990, 'M', 343), +(143944, 'Kadeem', 1990, 'M', 342), +(143945, 'Clark', 1990, 'M', 341), +(143946, 'Efrain', 1990, 'M', 341), +(143947, 'Noe', 1990, 'M', 341), +(143948, 'Reynaldo', 1990, 'M', 341), +(143949, 'Drake', 1990, 'M', 340), +(143950, 'Freddy', 1990, 'M', 340), +(143951, 'Kristofer', 1990, 'M', 340), +(143952, 'Reid', 1990, 'M', 339), +(143953, 'Donnie', 1990, 'M', 338), +(143954, 'Tylor', 1990, 'M', 337), +(143955, 'Adan', 1990, 'M', 335), +(143956, 'Mauricio', 1990, 'M', 335), +(143957, 'Deon', 1990, 'M', 334), +(143958, 'Bryson', 1990, 'M', 333), +(143959, 'Jace', 1990, 'M', 333), +(143960, 'Marquise', 1990, 'M', 333), +(143961, 'Carter', 1990, 'M', 332), +(143962, 'Don', 1990, 'M', 332), +(143963, 'Everett', 1990, 'M', 332), +(143964, 'Jimmie', 1990, 'M', 332), +(143965, 'Johnnie', 1990, 'M', 328), +(143966, 'Lane', 1990, 'M', 328), +(143967, 'Malik', 1990, 'M', 328), +(143968, 'Ahmad', 1990, 'M', 327), +(143969, 'Arnold', 1990, 'M', 327), +(143970, 'Marcel', 1990, 'M', 327), +(143971, 'Milton', 1990, 'M', 324), +(143972, 'Santiago', 1990, 'M', 324), +(143973, 'Tyree', 1990, 'M', 324), +(143974, 'Guy', 1990, 'M', 323), +(143975, 'Salvatore', 1990, 'M', 322), +(143976, 'Jerrod', 1990, 'M', 318), +(143977, 'Darrius', 1990, 'M', 317), +(143978, 'Kristian', 1990, 'M', 315), +(143979, 'Nigel', 1990, 'M', 314), +(143980, 'Lamont', 1990, 'M', 313), +(143981, 'Kareem', 1990, 'M', 312), +(143982, 'Mitchel', 1990, 'M', 312), +(143983, 'Freddie', 1990, 'M', 310), +(143984, 'Alvaro', 1990, 'M', 309), +(143985, 'Toby', 1990, 'M', 309), +(143986, 'Jakob', 1990, 'M', 306), +(143987, 'Thaddeus', 1990, 'M', 305), +(143988, 'Blair', 1990, 'M', 304), +(143989, 'Bradford', 1990, 'M', 304), +(143990, 'Reuben', 1990, 'M', 304), +(143991, 'Kwame', 1990, 'M', 299), +(143992, 'Leslie', 1990, 'M', 295), +(143993, 'Rico', 1990, 'M', 294), +(143994, 'Sammy', 1990, 'M', 293), +(143995, 'Vicente', 1990, 'M', 293), +(143996, 'Harley', 1990, 'M', 292), +(143997, 'Moses', 1990, 'M', 292), +(143998, 'Will', 1990, 'M', 289), +(143999, 'Stephon', 1990, 'M', 285), +(144000, 'Keaton', 1990, 'M', 283), +(144001, 'Chadwick', 1990, 'M', 282), +(144002, 'Stewart', 1990, 'M', 282), +(144003, 'Winston', 1990, 'M', 282), +(144004, 'Ignacio', 1990, 'M', 281), +(144005, 'Robin', 1990, 'M', 281), +(144006, 'Davis', 1990, 'M', 280), +(144007, 'Joaquin', 1990, 'M', 280), +(144008, 'Aron', 1990, 'M', 278), +(144009, 'Anton', 1990, 'M', 277), +(144010, 'Bo', 1990, 'M', 277), +(144011, 'Griffin', 1990, 'M', 277), +(144012, 'Mohammad', 1990, 'M', 277), +(144013, 'Issac', 1990, 'M', 275), +(144014, 'Liam', 1990, 'M', 275), +(144015, 'Rusty', 1990, 'M', 273), +(144016, 'Amir', 1990, 'M', 272), +(144017, 'Hakeem', 1990, 'M', 272), +(144018, 'Leland', 1990, 'M', 272), +(144019, 'Baby', 1990, 'M', 271), +(144020, 'Guadalupe', 1990, 'M', 271), +(144021, 'Irvin', 1990, 'M', 270), +(144022, 'German', 1990, 'M', 269), +(144023, 'Jasper', 1990, 'M', 269), +(144024, 'Deonte', 1990, 'M', 268), +(144025, 'Gene', 1990, 'M', 267), +(144026, 'Leonel', 1990, 'M', 267), +(144027, 'Colten', 1990, 'M', 266), +(144028, 'Conrad', 1990, 'M', 266), +(144029, 'Nico', 1990, 'M', 266), +(144030, 'Jovan', 1990, 'M', 265), +(144031, 'Kyler', 1990, 'M', 264), +(144032, 'Nestor', 1990, 'M', 264), +(144033, 'Ezekiel', 1990, 'M', 263), +(144034, 'Ryne', 1990, 'M', 263), +(144035, 'Agustin', 1990, 'M', 262), +(144036, 'Conner', 1990, 'M', 262), +(144037, 'Jackie', 1990, 'M', 262), +(144038, 'Loren', 1990, 'M', 261), +(144039, 'Lester', 1990, 'M', 260), +(144040, 'Darian', 1990, 'M', 259), +(144041, 'Lyle', 1990, 'M', 257), +(144042, 'Jarod', 1990, 'M', 256), +(144043, 'Bradly', 1990, 'M', 254), +(144044, 'Herman', 1990, 'M', 252), +(144045, 'Floyd', 1990, 'M', 251), +(144046, 'Garrick', 1990, 'M', 251), +(144047, 'Osvaldo', 1990, 'M', 251), +(144048, 'Rigoberto', 1990, 'M', 251), +(144049, 'Clyde', 1990, 'M', 250), +(144050, 'Ted', 1990, 'M', 250), +(144051, 'Dusty', 1990, 'M', 249), +(144052, 'Jeff', 1990, 'M', 249), +(144053, 'Addison', 1990, 'M', 247), +(144054, 'Vance', 1990, 'M', 246), +(144055, 'Dewayne', 1990, 'M', 245), +(144056, 'Adolfo', 1990, 'M', 244), +(144057, 'Khiry', 1990, 'M', 244), +(144058, 'Nathanial', 1990, 'M', 242), +(144059, 'Sonny', 1990, 'M', 240), +(144060, 'Ashley', 1990, 'M', 239), +(144061, 'Donnell', 1990, 'M', 239), +(144062, 'Jonah', 1990, 'M', 239), +(144063, 'Erin', 1990, 'M', 238), +(144064, 'Reed', 1990, 'M', 238), +(144065, 'Rocky', 1990, 'M', 235), +(144066, 'Kellen', 1990, 'M', 234), +(144067, 'Paris', 1990, 'M', 234), +(144068, 'Dan', 1990, 'M', 233), +(144069, 'Jameson', 1990, 'M', 233), +(144070, 'Jamison', 1990, 'M', 232), +(144071, 'Rex', 1990, 'M', 232), +(144072, 'Cecil', 1990, 'M', 231), +(144073, 'Lionel', 1990, 'M', 231), +(144074, 'Tory', 1990, 'M', 231), +(144075, 'Demario', 1990, 'M', 230), +(144076, 'Nick', 1990, 'M', 229), +(144077, 'Antwon', 1990, 'M', 228), +(144078, 'Grayson', 1990, 'M', 228), +(144079, 'Jamaal', 1990, 'M', 228), +(144080, 'Randolph', 1990, 'M', 227), +(144081, 'Arron', 1990, 'M', 226), +(144082, 'Chester', 1990, 'M', 226), +(144083, 'Bennett', 1990, 'M', 225), +(144084, 'Damion', 1990, 'M', 225), +(144085, 'Jairo', 1990, 'M', 223), +(144086, 'Mohammed', 1990, 'M', 223), +(144087, 'Myron', 1990, 'M', 222), +(144088, 'Wendell', 1990, 'M', 222), +(144089, 'Brooks', 1990, 'M', 221), +(144090, 'Heriberto', 1990, 'M', 221), +(144091, 'Shea', 1990, 'M', 221), +(144092, 'Irving', 1990, 'M', 220), +(144093, 'Spenser', 1990, 'M', 219), +(144094, 'Bronson', 1990, 'M', 218), +(144095, 'Jim', 1990, 'M', 217), +(144096, 'Solomon', 1990, 'M', 217), +(144097, 'Uriel', 1990, 'M', 217), +(144098, 'Jerrell', 1990, 'M', 216), +(144099, 'Elmer', 1990, 'M', 215), +(144100, 'Octavio', 1990, 'M', 215), +(144101, 'Tom', 1990, 'M', 215), +(144102, 'Jess', 1990, 'M', 214), +(144103, 'Jody', 1990, 'M', 214), +(144104, 'Aric', 1990, 'M', 213), +(144105, 'Barrett', 1990, 'M', 213), +(144106, 'Harvey', 1990, 'M', 213), +(144107, 'Otis', 1990, 'M', 213), +(144108, 'Josh', 1990, 'M', 211), +(144109, 'Male', 1990, 'M', 211), +(144110, 'Moshe', 1990, 'M', 211), +(144111, 'Royce', 1990, 'M', 211), +(144112, 'Austen', 1990, 'M', 210), +(144113, 'Alton', 1990, 'M', 209), +(144114, 'Cooper', 1990, 'M', 208), +(144115, 'Jefferson', 1990, 'M', 206), +(144116, 'Bryon', 1990, 'M', 205), +(144117, 'Daquan', 1990, 'M', 205), +(144118, 'Greg', 1990, 'M', 204), +(144119, 'Aubrey', 1990, 'M', 203), +(144120, 'Benny', 1990, 'M', 203), +(144121, 'Sylvester', 1990, 'M', 203), +(144122, 'Ahmed', 1990, 'M', 202), +(144123, 'Amos', 1990, 'M', 202), +(144124, 'Tyron', 1990, 'M', 202), +(144125, 'Braxton', 1990, 'M', 201), +(144126, 'Erich', 1990, 'M', 201), +(144127, 'Cruz', 1990, 'M', 200), +(144128, 'Elvis', 1990, 'M', 200), +(144129, 'Estevan', 1990, 'M', 200), +(144130, 'Randal', 1990, 'M', 199), +(144131, 'Rashawn', 1990, 'M', 199), +(144132, 'Tobias', 1990, 'M', 199), +(144133, 'Dominque', 1990, 'M', 198), +(144134, 'Justen', 1990, 'M', 197), +(144135, 'Kelsey', 1990, 'M', 197), +(144136, 'Scotty', 1990, 'M', 197), +(144137, 'Houston', 1990, 'M', 196), +(144138, 'Deven', 1990, 'M', 195), +(144139, 'Hassan', 1990, 'M', 195), +(144140, 'Dashawn', 1990, 'M', 194), +(144141, 'Derik', 1990, 'M', 194), +(144142, 'Westley', 1990, 'M', 194), +(144143, 'Dontae', 1990, 'M', 193), +(144144, 'Hugh', 1990, 'M', 193), +(144145, 'Mohamed', 1990, 'M', 192), +(144146, 'Ron', 1990, 'M', 191), +(144147, 'Unknown', 1990, 'M', 191), +(144148, 'Duncan', 1990, 'M', 190), +(144149, 'Cristopher', 1990, 'M', 189), +(144150, 'Jamil', 1990, 'M', 189), +(144151, 'Arsenio', 1990, 'M', 188), +(144152, 'Hans', 1990, 'M', 187), +(144153, 'Brandan', 1990, 'M', 186), +(144154, 'Dandre', 1990, 'M', 186), +(144155, 'Santos', 1990, 'M', 186), +(144156, 'Cordell', 1990, 'M', 184), +(144157, 'Ladarius', 1990, 'M', 184), +(144158, 'Robbie', 1990, 'M', 184), +(144159, 'Trever', 1990, 'M', 184), +(144160, 'Ulysses', 1990, 'M', 184), +(144161, 'Vaughn', 1990, 'M', 184), +(144162, 'Jaquan', 1990, 'M', 183), +(144163, 'Holden', 1990, 'M', 182), +(144164, 'Mikel', 1990, 'M', 182), +(144165, 'Ellis', 1990, 'M', 181), +(144166, 'Jessy', 1990, 'M', 180), +(144167, 'Wilfredo', 1990, 'M', 180), +(144168, 'Ezra', 1990, 'M', 178), +(144169, 'Morris', 1990, 'M', 178), +(144170, 'Bernardo', 1990, 'M', 177), +(144171, 'Camron', 1990, 'M', 177), +(144172, 'Jonas', 1990, 'M', 177), +(144173, 'Ezequiel', 1990, 'M', 176), +(144174, 'Galen', 1990, 'M', 176), +(144175, 'Luther', 1990, 'M', 176), +(144176, 'Colt', 1990, 'M', 174), +(144177, 'Efren', 1990, 'M', 174), +(144178, 'Garry', 1990, 'M', 174), +(144179, 'Gonzalo', 1990, 'M', 174), +(144180, 'Raheem', 1990, 'M', 174), +(144181, 'Brant', 1990, 'M', 173), +(144182, 'Darrel', 1990, 'M', 173), +(144183, 'Grady', 1990, 'M', 173), +(144184, 'Niko', 1990, 'M', 171), +(144185, 'Dereck', 1990, 'M', 170), +(144186, 'Edgardo', 1990, 'M', 170), +(144187, 'Maximilian', 1990, 'M', 170), +(144188, 'Jerod', 1990, 'M', 169), +(144189, 'Marty', 1990, 'M', 169), +(144190, 'Pete', 1990, 'M', 169), +(144191, 'Dario', 1990, 'M', 168), +(144192, 'Martez', 1990, 'M', 168), +(144193, 'Kirby', 1990, 'M', 167), +(144194, 'Coleman', 1990, 'M', 166), +(144195, 'Cullen', 1990, 'M', 166), +(144196, 'Gino', 1990, 'M', 166), +(144197, 'Dejuan', 1990, 'M', 165), +(144198, 'Josef', 1990, 'M', 165), +(144199, 'Reece', 1990, 'M', 165), +(144200, 'Aldo', 1990, 'M', 164), +(144201, 'Sherman', 1990, 'M', 164), +(144202, 'Teddy', 1990, 'M', 164), +(144203, 'Benito', 1990, 'M', 163), +(144204, 'Brody', 1990, 'M', 163), +(144205, 'Jacques', 1990, 'M', 162), +(144206, 'Ulises', 1990, 'M', 162), +(144207, 'Asa', 1990, 'M', 161), +(144208, 'Codey', 1990, 'M', 161), +(144209, 'Stevie', 1990, 'M', 161), +(144210, 'Demarco', 1990, 'M', 160), +(144211, 'Donavan', 1990, 'M', 159), +(144212, 'Ervin', 1990, 'M', 159), +(144213, 'Fidel', 1990, 'M', 159), +(144214, 'Gregorio', 1990, 'M', 159), +(144215, 'Virgil', 1990, 'M', 159), +(144216, 'Willis', 1990, 'M', 159), +(144217, 'Alphonso', 1990, 'M', 158), +(144218, 'Brandyn', 1990, 'M', 158), +(144219, 'Jerald', 1990, 'M', 158), +(144220, 'Alonso', 1990, 'M', 157), +(144221, 'Cary', 1990, 'M', 157), +(144222, 'Isaias', 1990, 'M', 157), +(144223, 'Jamarcus', 1990, 'M', 157), +(144224, 'Marques', 1990, 'M', 157), +(144225, 'Zechariah', 1990, 'M', 157), +(144226, 'Stacy', 1990, 'M', 156), +(144227, 'Kolby', 1990, 'M', 155), +(144228, 'Shelton', 1990, 'M', 155), +(144229, 'Darrick', 1990, 'M', 154), +(144230, 'Edmund', 1990, 'M', 154), +(144231, 'Keon', 1990, 'M', 154), +(144232, 'Domingo', 1990, 'M', 153), +(144233, 'Laquan', 1990, 'M', 153), +(144234, 'Mychal', 1990, 'M', 153), +(144235, 'Raymundo', 1990, 'M', 153), +(144236, 'Cedrick', 1990, 'M', 152), +(144237, 'Cyrus', 1990, 'M', 152), +(144238, 'Jade', 1990, 'M', 152), +(144239, 'Junior', 1990, 'M', 152), +(144240, 'Mickey', 1990, 'M', 152), +(144241, 'Alexandro', 1990, 'M', 151), +(144242, 'Antony', 1990, 'M', 151), +(144243, 'Carlo', 1990, 'M', 151), +(144244, 'Claude', 1990, 'M', 151), +(144245, 'Francesco', 1990, 'M', 151), +(144246, 'Ira', 1990, 'M', 151), +(144247, 'Rodrick', 1990, 'M', 151), +(144248, 'Rhett', 1990, 'M', 150), +(144249, 'Dangelo', 1990, 'M', 149), +(144250, 'Darien', 1990, 'M', 148), +(144251, 'Trevon', 1990, 'M', 148), +(144252, 'Walker', 1990, 'M', 147), +(144253, 'August', 1990, 'M', 146), +(144254, 'Louie', 1990, 'M', 146), +(144255, 'Rudolph', 1990, 'M', 146), +(144256, 'Daron', 1990, 'M', 145), +(144257, 'Earnest', 1990, 'M', 145), +(144258, 'Madison', 1990, 'M', 145), +(144259, 'Jerad', 1990, 'M', 144), +(144260, 'Khalil', 1990, 'M', 144), +(144261, 'Roosevelt', 1990, 'M', 144), +(144262, 'Travon', 1990, 'M', 144), +(144263, 'Kiefer', 1990, 'M', 143), +(144264, 'Lincoln', 1990, 'M', 143), +(144265, 'Bennie', 1990, 'M', 142), +(144266, 'Ken', 1990, 'M', 142), +(144267, 'Carey', 1990, 'M', 141), +(144268, 'Darion', 1990, 'M', 141), +(144269, 'Jerel', 1990, 'M', 141), +(144270, 'Quinten', 1990, 'M', 141), +(144271, 'Ari', 1990, 'M', 140), +(144272, 'Deron', 1990, 'M', 140), +(144273, 'Greggory', 1990, 'M', 140), +(144274, 'Ibrahim', 1990, 'M', 140), +(144275, 'Jessica', 1990, 'M', 140), +(144276, 'Jorden', 1990, 'M', 140), +(144277, 'Kenton', 1990, 'M', 139), +(144278, 'Laron', 1990, 'M', 139), +(144279, 'Marquez', 1990, 'M', 139), +(144280, 'Mykel', 1990, 'M', 139), +(144281, 'Rocco', 1990, 'M', 139), +(144282, 'Timmy', 1990, 'M', 139), +(144283, 'Malcom', 1990, 'M', 138), +(144284, 'Stacey', 1990, 'M', 138), +(144285, 'Titus', 1990, 'M', 138), +(144286, 'Van', 1990, 'M', 138), +(144287, 'Dayton', 1990, 'M', 137), +(144288, 'Kevon', 1990, 'M', 137), +(144289, 'Anderson', 1990, 'M', 136), +(144290, 'Jarret', 1990, 'M', 136), +(144291, 'Marion', 1990, 'M', 136), +(144292, 'Zakary', 1990, 'M', 136), +(144293, 'Cade', 1990, 'M', 135), +(144294, 'Daren', 1990, 'M', 135), +(144295, 'Kendal', 1990, 'M', 135), +(144296, 'Vince', 1990, 'M', 135), +(144297, 'Aidan', 1990, 'M', 134), +(144298, 'Broderick', 1990, 'M', 134), +(144299, 'Pierce', 1990, 'M', 134), +(144300, 'Tommie', 1990, 'M', 133), +(144301, 'Chaim', 1990, 'M', 132), +(144302, 'Michel', 1990, 'M', 132), +(144303, 'Payton', 1990, 'M', 132), +(144304, 'Reese', 1990, 'M', 132), +(144305, 'Wallace', 1990, 'M', 132), +(144306, 'Andreas', 1990, 'M', 131), +(144307, 'Axel', 1990, 'M', 131), +(144308, 'Brennen', 1990, 'M', 131), +(144309, 'Derrell', 1990, 'M', 131), +(144310, 'Valentin', 1990, 'M', 131), +(144311, 'Donta', 1990, 'M', 130), +(144312, 'Emerson', 1990, 'M', 130), +(144313, 'Monte', 1990, 'M', 130), +(144314, 'Nikko', 1990, 'M', 130), +(144315, 'Jabari', 1990, 'M', 129), +(144316, 'Jacoby', 1990, 'M', 129), +(144317, 'Kendell', 1990, 'M', 129), +(144318, 'Darwin', 1990, 'M', 128), +(144319, 'Giancarlo', 1990, 'M', 128), +(144320, 'Isidro', 1990, 'M', 128), +(144321, 'Garett', 1990, 'M', 127), +(144322, 'Jan', 1990, 'M', 126), +(144323, 'Kegan', 1990, 'M', 126), +(144324, 'Prince', 1990, 'M', 126), +(144325, 'Rashaad', 1990, 'M', 126), +(144326, 'Samson', 1990, 'M', 126), +(144327, 'Abram', 1990, 'M', 125), +(144328, 'Cale', 1990, 'M', 125), +(144329, 'Cassidy', 1990, 'M', 125), +(144330, 'Cristobal', 1990, 'M', 125), +(144331, 'Dave', 1990, 'M', 125), +(144332, 'Eddy', 1990, 'M', 125), +(144333, 'Gregg', 1990, 'M', 125), +(144334, 'Jered', 1990, 'M', 125), +(144335, 'Remington', 1990, 'M', 125), +(144336, 'Kai', 1990, 'M', 124), +(144337, 'Talon', 1990, 'M', 124), +(144338, 'Cortney', 1990, 'M', 123), +(144339, 'Kelby', 1990, 'M', 123), +(144340, 'Rasheed', 1990, 'M', 123), +(144341, 'Abdul', 1990, 'M', 122), +(144342, 'Codie', 1990, 'M', 122), +(144343, 'Elvin', 1990, 'M', 122), +(144344, 'Laurence', 1990, 'M', 122), +(144345, 'Antione', 1990, 'M', 121), +(144346, 'Britton', 1990, 'M', 121), +(144347, 'Hernan', 1990, 'M', 121), +(144348, 'Jeffry', 1990, 'M', 121), +(144349, 'Kalvin', 1990, 'M', 121), +(144350, 'Najee', 1990, 'M', 121), +(144351, 'Rakeem', 1990, 'M', 121), +(144352, 'Reggie', 1990, 'M', 121), +(144353, 'Samir', 1990, 'M', 121), +(144354, 'Alexandre', 1990, 'M', 120), +(144355, 'Peyton', 1990, 'M', 120), +(144356, 'Wilbert', 1990, 'M', 120), +(144357, 'Alden', 1990, 'M', 119), +(144358, 'Camden', 1990, 'M', 119), +(144359, 'Channing', 1990, 'M', 119), +(144360, 'Chauncey', 1990, 'M', 119), +(144361, 'Julien', 1990, 'M', 119), +(144362, 'Tremaine', 1990, 'M', 119), +(144363, 'Derrek', 1990, 'M', 118), +(144364, 'Elisha', 1990, 'M', 118), +(144365, 'Federico', 1990, 'M', 118), +(144366, 'Malachi', 1990, 'M', 118), +(144367, 'Mikhail', 1990, 'M', 118), +(144368, 'Shay', 1990, 'M', 118), +(144369, 'Tyrel', 1990, 'M', 118), +(144370, 'Cornell', 1990, 'M', 117), +(144371, 'Elton', 1990, 'M', 117), +(144372, 'Emmett', 1990, 'M', 117), +(144373, 'Garrison', 1990, 'M', 117), +(144374, 'Marlin', 1990, 'M', 117), +(144375, 'Martell', 1990, 'M', 117), +(144376, 'Silas', 1990, 'M', 117), +(144377, 'Davin', 1990, 'M', 116), +(144378, 'Dionte', 1990, 'M', 116), +(144379, 'Eliseo', 1990, 'M', 116), +(144380, 'Jedidiah', 1990, 'M', 116), +(144381, 'Justine', 1990, 'M', 116), +(144382, 'Kraig', 1990, 'M', 116), +(144383, 'Marcelo', 1990, 'M', 116), +(144384, 'Ronny', 1990, 'M', 116), +(144385, 'Torrey', 1990, 'M', 116), +(144386, 'Trace', 1990, 'M', 116), +(144387, 'Coby', 1990, 'M', 115), +(144388, 'Donny', 1990, 'M', 115), +(144389, 'Jarrell', 1990, 'M', 115), +(144390, 'Jeremey', 1990, 'M', 115), +(144391, 'Jeromy', 1990, 'M', 115), +(144392, 'Keven', 1990, 'M', 115), +(144393, 'Tavon', 1990, 'M', 115), +(144394, 'Deontae', 1990, 'M', 114), +(144395, 'Edwardo', 1990, 'M', 114), +(144396, 'Keenen', 1990, 'M', 114), +(144397, 'Lazaro', 1990, 'M', 114), +(144398, 'Torey', 1990, 'M', 114), +(144399, 'Bill', 1990, 'M', 113), +(144400, 'Bruno', 1990, 'M', 113), +(144401, 'Genaro', 1990, 'M', 113), +(144402, 'Waylon', 1990, 'M', 113), +(144403, 'Brittany', 1990, 'M', 112), +(144404, 'Eliezer', 1990, 'M', 112), +(144405, 'Jory', 1990, 'M', 112), +(144406, 'Misael', 1990, 'M', 112), +(144407, 'Tate', 1990, 'M', 112), +(144408, 'Deante', 1990, 'M', 111), +(144409, 'Kane', 1990, 'M', 111), +(144410, 'Kristoffer', 1990, 'M', 111), +(144411, 'Robby', 1990, 'M', 111), +(144412, 'Schuyler', 1990, 'M', 111), +(144413, 'Scottie', 1990, 'M', 111), +(144414, 'Adrien', 1990, 'M', 110), +(144415, 'Dedrick', 1990, 'M', 110), +(144416, 'Denis', 1990, 'M', 110), +(144417, 'Denver', 1990, 'M', 110), +(144418, 'Dontrell', 1990, 'M', 110), +(144419, 'Jeramy', 1990, 'M', 110), +(144420, 'Vincenzo', 1990, 'M', 110), +(144421, 'Brandt', 1990, 'M', 109), +(144422, 'Darron', 1990, 'M', 109), +(144423, 'Joseluis', 1990, 'M', 109), +(144424, 'Judson', 1990, 'M', 109), +(144425, 'Kieran', 1990, 'M', 109), +(144426, 'Theron', 1990, 'M', 109), +(144427, 'Archie', 1990, 'M', 108), +(144428, 'Kale', 1990, 'M', 108), +(144429, 'Mack', 1990, 'M', 108), +(144430, 'Storm', 1990, 'M', 108), +(144431, 'Jermey', 1990, 'M', 107), +(144432, 'Marcellus', 1990, 'M', 107), +(144433, 'Nathen', 1990, 'M', 107), +(144434, 'Armand', 1990, 'M', 106), +(144435, 'Codi', 1990, 'M', 106), +(144436, 'Deric', 1990, 'M', 106), +(144437, 'Domenic', 1990, 'M', 106), +(144438, 'Maximillian', 1990, 'M', 106), +(144439, 'Muhammad', 1990, 'M', 106), +(144440, 'Randell', 1990, 'M', 106), +(144441, 'Romeo', 1990, 'M', 106), +(144442, 'Adalberto', 1990, 'M', 105), +(144443, 'Horace', 1990, 'M', 105), +(144444, 'Nicholaus', 1990, 'M', 105), +(144445, 'Bilal', 1990, 'M', 104), +(144446, 'Brandin', 1990, 'M', 104), +(144447, 'Domonique', 1990, 'M', 104), +(144448, 'Kalen', 1990, 'M', 104), +(144449, 'Brayden', 1990, 'M', 103), +(144450, 'Curt', 1990, 'M', 103), +(144451, 'Cyle', 1990, 'M', 103), +(144452, 'Marcell', 1990, 'M', 103), +(144453, 'Maria', 1990, 'M', 103), +(144454, 'Rayshawn', 1990, 'M', 103), +(144455, 'Terell', 1990, 'M', 103), +(144456, 'Juston', 1990, 'M', 102), +(144457, 'Kelton', 1990, 'M', 102), +(144458, 'Percy', 1990, 'M', 102), +(144459, 'Quenton', 1990, 'M', 102), +(144460, 'Stephanie', 1990, 'M', 102), +(144461, 'Stetson', 1990, 'M', 102), +(144462, 'Brannon', 1990, 'M', 101), +(144463, 'Cordero', 1990, 'M', 101), +(144464, 'Davion', 1990, 'M', 101), +(144465, 'Montrell', 1990, 'M', 101), +(144466, 'Sage', 1990, 'M', 101), +(144467, 'Broc', 1990, 'M', 100), +(144468, 'Dayne', 1990, 'M', 100), +(144469, 'Dequan', 1990, 'M', 100), +(144470, 'Ernie', 1990, 'M', 100), +(144471, 'Lowell', 1990, 'M', 100), +(144472, 'Taurean', 1990, 'M', 100), +(144473, 'Ashley', 1991, 'F', 43482), +(144474, 'Jessica', 1991, 'F', 43395), +(144475, 'Brittany', 1991, 'F', 29089), +(144476, 'Amanda', 1991, 'F', 28887), +(144477, 'Samantha', 1991, 'F', 25646), +(144478, 'Sarah', 1991, 'F', 25229), +(144479, 'Stephanie', 1991, 'F', 22770), +(144480, 'Jennifer', 1991, 'F', 20669), +(144481, 'Elizabeth', 1991, 'F', 20391), +(144482, 'Emily', 1991, 'F', 20309), +(144483, 'Megan', 1991, 'F', 19275), +(144484, 'Kayla', 1991, 'F', 18542), +(144485, 'Lauren', 1991, 'F', 18409), +(144486, 'Rachel', 1991, 'F', 16340), +(144487, 'Nicole', 1991, 'F', 16045), +(144488, 'Amber', 1991, 'F', 14991), +(144489, 'Danielle', 1991, 'F', 13617), +(144490, 'Chelsea', 1991, 'F', 13510), +(144491, 'Courtney', 1991, 'F', 13442), +(144492, 'Melissa', 1991, 'F', 13342), +(144493, 'Rebecca', 1991, 'F', 13296), +(144494, 'Michelle', 1991, 'F', 12215), +(144495, 'Heather', 1991, 'F', 11699), +(144496, 'Jasmine', 1991, 'F', 11523), +(144497, 'Katherine', 1991, 'F', 11486), +(144498, 'Kelsey', 1991, 'F', 11430), +(144499, 'Tiffany', 1991, 'F', 11157), +(144500, 'Victoria', 1991, 'F', 10915), +(144501, 'Hannah', 1991, 'F', 10765), +(144502, 'Alyssa', 1991, 'F', 10675), +(144503, 'Christina', 1991, 'F', 10561), +(144504, 'Taylor', 1991, 'F', 10252), +(144505, 'Shelby', 1991, 'F', 10218), +(144506, 'Kimberly', 1991, 'F', 9800), +(144507, 'Laura', 1991, 'F', 9645), +(144508, 'Alexandra', 1991, 'F', 9454), +(144509, 'Sara', 1991, 'F', 8845), +(144510, 'Mary', 1991, 'F', 8756), +(144511, 'Andrea', 1991, 'F', 7994), +(144512, 'Erica', 1991, 'F', 7800), +(144513, 'Crystal', 1991, 'F', 7727), +(144514, 'Kelly', 1991, 'F', 7511), +(144515, 'Amy', 1991, 'F', 7275), +(144516, 'Erin', 1991, 'F', 7206), +(144517, 'Maria', 1991, 'F', 7125), +(144518, 'Anna', 1991, 'F', 7115), +(144519, 'Alexis', 1991, 'F', 7007), +(144520, 'Kristen', 1991, 'F', 6817), +(144521, 'Morgan', 1991, 'F', 6792), +(144522, 'Allison', 1991, 'F', 6771), +(144523, 'Brianna', 1991, 'F', 6558), +(144524, 'Lindsey', 1991, 'F', 6458), +(144525, 'Katie', 1991, 'F', 6412), +(144526, 'Cassandra', 1991, 'F', 6409), +(144527, 'Caitlin', 1991, 'F', 6382), +(144528, 'Vanessa', 1991, 'F', 5924), +(144529, 'Kathryn', 1991, 'F', 5835), +(144530, 'Brittney', 1991, 'F', 5826), +(144531, 'Angela', 1991, 'F', 5799), +(144532, 'Jamie', 1991, 'F', 5780), +(144533, 'Olivia', 1991, 'F', 5597), +(144534, 'Jordan', 1991, 'F', 5559), +(144535, 'Alicia', 1991, 'F', 5557), +(144536, 'Natalie', 1991, 'F', 5553), +(144537, 'Brooke', 1991, 'F', 5551), +(144538, 'Ariel', 1991, 'F', 5409), +(144539, 'Julia', 1991, 'F', 5362), +(144540, 'Whitney', 1991, 'F', 5241), +(144541, 'Mariah', 1991, 'F', 5190), +(144542, 'Jacqueline', 1991, 'F', 4984), +(144543, 'Shannon', 1991, 'F', 4845), +(144544, 'Catherine', 1991, 'F', 4815), +(144545, 'Christine', 1991, 'F', 4808), +(144546, 'Molly', 1991, 'F', 4651), +(144547, 'Katelyn', 1991, 'F', 4562), +(144548, 'Paige', 1991, 'F', 4516), +(144549, 'Lindsay', 1991, 'F', 4486), +(144550, 'Alexandria', 1991, 'F', 4468), +(144551, 'Haley', 1991, 'F', 4461), +(144552, 'Jenna', 1991, 'F', 4457), +(144553, 'Marissa', 1991, 'F', 4421), +(144554, 'Kaitlyn', 1991, 'F', 4409), +(144555, 'Lisa', 1991, 'F', 4397), +(144556, 'Erika', 1991, 'F', 4310), +(144557, 'Monica', 1991, 'F', 4155), +(144558, 'Kristin', 1991, 'F', 4087), +(144559, 'Kristina', 1991, 'F', 3873), +(144560, 'April', 1991, 'F', 3856), +(144561, 'Bianca', 1991, 'F', 3845), +(144562, 'Miranda', 1991, 'F', 3822), +(144563, 'Leah', 1991, 'F', 3812), +(144564, 'Abigail', 1991, 'F', 3797), +(144565, 'Cynthia', 1991, 'F', 3707), +(144566, 'Meghan', 1991, 'F', 3703), +(144567, 'Briana', 1991, 'F', 3687), +(144568, 'Gabrielle', 1991, 'F', 3576), +(144569, 'Melanie', 1991, 'F', 3576), +(144570, 'Julie', 1991, 'F', 3569), +(144571, 'Kaitlin', 1991, 'F', 3485), +(144572, 'Veronica', 1991, 'F', 3440), +(144573, 'Patricia', 1991, 'F', 3417), +(144574, 'Kathleen', 1991, 'F', 3371), +(144575, 'Diana', 1991, 'F', 3339), +(144576, 'Tara', 1991, 'F', 3326), +(144577, 'Holly', 1991, 'F', 3287), +(144578, 'Kara', 1991, 'F', 3279), +(144579, 'Breanna', 1991, 'F', 3233), +(144580, 'Margaret', 1991, 'F', 3194), +(144581, 'Bethany', 1991, 'F', 3113), +(144582, 'Brandi', 1991, 'F', 3089), +(144583, 'Casey', 1991, 'F', 3070), +(144584, 'Krystal', 1991, 'F', 2958), +(144585, 'Natasha', 1991, 'F', 2923), +(144586, 'Rachael', 1991, 'F', 2915), +(144587, 'Sabrina', 1991, 'F', 2901), +(144588, 'Caroline', 1991, 'F', 2843), +(144589, 'Angelica', 1991, 'F', 2819), +(144590, 'Kendra', 1991, 'F', 2705), +(144591, 'Ana', 1991, 'F', 2648), +(144592, 'Brenda', 1991, 'F', 2633), +(144593, 'Felicia', 1991, 'F', 2620), +(144594, 'Karen', 1991, 'F', 2602), +(144595, 'Emma', 1991, 'F', 2591), +(144596, 'Leslie', 1991, 'F', 2549), +(144597, 'Nancy', 1991, 'F', 2497), +(144598, 'Desiree', 1991, 'F', 2487), +(144599, 'Alexa', 1991, 'F', 2476), +(144600, 'Madison', 1991, 'F', 2468), +(144601, 'Chelsey', 1991, 'F', 2440), +(144602, 'Meagan', 1991, 'F', 2424), +(144603, 'Dana', 1991, 'F', 2417), +(144604, 'Dominique', 1991, 'F', 2406), +(144605, 'Grace', 1991, 'F', 2386), +(144606, 'Sydney', 1991, 'F', 2382), +(144607, 'Valerie', 1991, 'F', 2380), +(144608, 'Jillian', 1991, 'F', 2377), +(144609, 'Carly', 1991, 'F', 2338), +(144610, 'Sierra', 1991, 'F', 2302), +(144611, 'Adriana', 1991, 'F', 2241), +(144612, 'Katrina', 1991, 'F', 2224), +(144613, 'Monique', 1991, 'F', 2179), +(144614, 'Alison', 1991, 'F', 2154), +(144615, 'Sandra', 1991, 'F', 2140), +(144616, 'Ashlee', 1991, 'F', 2083), +(144617, 'Lacey', 1991, 'F', 2069), +(144618, 'Rebekah', 1991, 'F', 2063), +(144619, 'Brandy', 1991, 'F', 2062), +(144620, 'Gabriela', 1991, 'F', 2061), +(144621, 'Alisha', 1991, 'F', 2041), +(144622, 'Raven', 1991, 'F', 2026), +(144623, 'Madeline', 1991, 'F', 1980), +(144624, 'Joanna', 1991, 'F', 1951), +(144625, 'Candace', 1991, 'F', 1936), +(144626, 'Kirsten', 1991, 'F', 1931), +(144627, 'Krista', 1991, 'F', 1912), +(144628, 'Destiny', 1991, 'F', 1898), +(144629, 'Iesha', 1991, 'F', 1896), +(144630, 'Deanna', 1991, 'F', 1879), +(144631, 'Gina', 1991, 'F', 1835), +(144632, 'Angel', 1991, 'F', 1834), +(144633, 'Jaclyn', 1991, 'F', 1826), +(144634, 'Claire', 1991, 'F', 1818), +(144635, 'Mallory', 1991, 'F', 1804), +(144636, 'Mercedes', 1991, 'F', 1797), +(144637, 'Karina', 1991, 'F', 1795), +(144638, 'Hillary', 1991, 'F', 1789), +(144639, 'Britney', 1991, 'F', 1784), +(144640, 'Priscilla', 1991, 'F', 1779), +(144641, 'Audrey', 1991, 'F', 1758), +(144642, 'Hayley', 1991, 'F', 1754), +(144643, 'Autumn', 1991, 'F', 1747), +(144644, 'Candice', 1991, 'F', 1744), +(144645, 'Denise', 1991, 'F', 1744), +(144646, 'Kiara', 1991, 'F', 1734), +(144647, 'Ashleigh', 1991, 'F', 1716), +(144648, 'Cheyenne', 1991, 'F', 1715), +(144649, 'Cristina', 1991, 'F', 1700), +(144650, 'Anne', 1991, 'F', 1673), +(144651, 'Chloe', 1991, 'F', 1670), +(144652, 'Nichole', 1991, 'F', 1652), +(144653, 'Savannah', 1991, 'F', 1648), +(144654, 'Alejandra', 1991, 'F', 1640), +(144655, 'Arielle', 1991, 'F', 1630), +(144656, 'Cindy', 1991, 'F', 1613), +(144657, 'Caitlyn', 1991, 'F', 1609), +(144658, 'Daisy', 1991, 'F', 1608), +(144659, 'Linda', 1991, 'F', 1608), +(144660, 'Colleen', 1991, 'F', 1602), +(144661, 'Yesenia', 1991, 'F', 1576), +(144662, 'Tabitha', 1991, 'F', 1574), +(144663, 'Claudia', 1991, 'F', 1568), +(144664, 'Ariana', 1991, 'F', 1562), +(144665, 'Carolyn', 1991, 'F', 1559), +(144666, 'Amelia', 1991, 'F', 1535), +(144667, 'Ebony', 1991, 'F', 1524), +(144668, 'Hailey', 1991, 'F', 1506), +(144669, 'Kelli', 1991, 'F', 1497), +(144670, 'Mackenzie', 1991, 'F', 1495), +(144671, 'Kaylee', 1991, 'F', 1494), +(144672, 'Meredith', 1991, 'F', 1493), +(144673, 'Kylie', 1991, 'F', 1488), +(144674, 'Teresa', 1991, 'F', 1488), +(144675, 'Susan', 1991, 'F', 1477), +(144676, 'Carrie', 1991, 'F', 1465), +(144677, 'Mayra', 1991, 'F', 1460), +(144678, 'Theresa', 1991, 'F', 1460), +(144679, 'Bridget', 1991, 'F', 1448), +(144680, 'Bailey', 1991, 'F', 1435), +(144681, 'Ellen', 1991, 'F', 1428), +(144682, 'Jade', 1991, 'F', 1411), +(144683, 'Renee', 1991, 'F', 1410), +(144684, 'Stacy', 1991, 'F', 1409), +(144685, 'Stacey', 1991, 'F', 1405), +(144686, 'Lydia', 1991, 'F', 1378), +(144687, 'Jocelyn', 1991, 'F', 1355), +(144688, 'Wendy', 1991, 'F', 1343), +(144689, 'Justine', 1991, 'F', 1339), +(144690, 'Heidi', 1991, 'F', 1328), +(144691, 'Kasey', 1991, 'F', 1307), +(144692, 'Jasmin', 1991, 'F', 1273), +(144693, 'Raquel', 1991, 'F', 1271), +(144694, 'Evelyn', 1991, 'F', 1267), +(144695, 'Melinda', 1991, 'F', 1265), +(144696, 'Marie', 1991, 'F', 1263), +(144697, 'Jenny', 1991, 'F', 1262), +(144698, 'Tamara', 1991, 'F', 1262), +(144699, 'Cara', 1991, 'F', 1259), +(144700, 'Sophia', 1991, 'F', 1259), +(144701, 'Barbara', 1991, 'F', 1237), +(144702, 'Carmen', 1991, 'F', 1235), +(144703, 'Robin', 1991, 'F', 1234), +(144704, 'Jacquelyn', 1991, 'F', 1210), +(144705, 'Devon', 1991, 'F', 1205), +(144706, 'Gabriella', 1991, 'F', 1192), +(144707, 'Virginia', 1991, 'F', 1190), +(144708, 'Janet', 1991, 'F', 1186), +(144709, 'Abby', 1991, 'F', 1171), +(144710, 'Devin', 1991, 'F', 1163), +(144711, 'Marisa', 1991, 'F', 1153), +(144712, 'Tiara', 1991, 'F', 1151), +(144713, 'Rosa', 1991, 'F', 1149), +(144714, 'Tessa', 1991, 'F', 1149), +(144715, 'Hilary', 1991, 'F', 1148), +(144716, 'Kellie', 1991, 'F', 1143), +(144717, 'Allyson', 1991, 'F', 1140), +(144718, 'Martha', 1991, 'F', 1129), +(144719, 'Gloria', 1991, 'F', 1127), +(144720, 'Cassie', 1991, 'F', 1121), +(144721, 'Jessie', 1991, 'F', 1116), +(144722, 'Carissa', 1991, 'F', 1110), +(144723, 'Adrienne', 1991, 'F', 1108), +(144724, 'Tanya', 1991, 'F', 1108), +(144725, 'Jazmin', 1991, 'F', 1107), +(144726, 'Nina', 1991, 'F', 1100), +(144727, 'Asia', 1991, 'F', 1096), +(144728, 'Chelsie', 1991, 'F', 1090), +(144729, 'Janelle', 1991, 'F', 1088), +(144730, 'Karla', 1991, 'F', 1087), +(144731, 'Pamela', 1991, 'F', 1084), +(144732, 'Faith', 1991, 'F', 1074), +(144733, 'Tia', 1991, 'F', 1069), +(144734, 'Camille', 1991, 'F', 1055), +(144735, 'Jazmine', 1991, 'F', 1054), +(144736, 'Hope', 1991, 'F', 1052), +(144737, 'Jeanette', 1991, 'F', 1052), +(144738, 'Ciara', 1991, 'F', 1050), +(144739, 'Kelsie', 1991, 'F', 1038), +(144740, 'Ann', 1991, 'F', 1025), +(144741, 'Tina', 1991, 'F', 1025), +(144742, 'Toni', 1991, 'F', 1016), +(144743, 'Cierra', 1991, 'F', 1015), +(144744, 'Deborah', 1991, 'F', 1014), +(144745, 'Miriam', 1991, 'F', 1012), +(144746, 'Naomi', 1991, 'F', 1011), +(144747, 'Carla', 1991, 'F', 1008), +(144748, 'Michele', 1991, 'F', 1007), +(144749, 'Ruby', 1991, 'F', 1005), +(144750, 'Sasha', 1991, 'F', 1003), +(144751, 'Kristine', 1991, 'F', 996), +(144752, 'Tracy', 1991, 'F', 994), +(144753, 'Kristy', 1991, 'F', 989), +(144754, 'Shawna', 1991, 'F', 988), +(144755, 'Brittani', 1991, 'F', 987), +(144756, 'Sharon', 1991, 'F', 985), +(144757, 'Ruth', 1991, 'F', 984), +(144758, 'Summer', 1991, 'F', 982), +(144759, 'Kate', 1991, 'F', 979), +(144760, 'Charlotte', 1991, 'F', 976), +(144761, 'Kari', 1991, 'F', 975), +(144762, 'Elise', 1991, 'F', 970), +(144763, 'Cecilia', 1991, 'F', 964), +(144764, 'Alissa', 1991, 'F', 960), +(144765, 'Tasha', 1991, 'F', 960), +(144766, 'Aimee', 1991, 'F', 945), +(144767, 'Misty', 1991, 'F', 941), +(144768, 'Maggie', 1991, 'F', 937), +(144769, 'Christian', 1991, 'F', 936), +(144770, 'Adrianna', 1991, 'F', 933), +(144771, 'Esther', 1991, 'F', 933), +(144772, 'Angelina', 1991, 'F', 929), +(144773, 'Aubrey', 1991, 'F', 923), +(144774, 'Cortney', 1991, 'F', 922), +(144775, 'Kristi', 1991, 'F', 918), +(144776, 'Callie', 1991, 'F', 915), +(144777, 'Clarissa', 1991, 'F', 909), +(144778, 'Karissa', 1991, 'F', 901), +(144779, 'Kassandra', 1991, 'F', 888), +(144780, 'Hanna', 1991, 'F', 886), +(144781, 'Rose', 1991, 'F', 883), +(144782, 'Regina', 1991, 'F', 872), +(144783, 'Brianne', 1991, 'F', 869), +(144784, 'Katlyn', 1991, 'F', 865), +(144785, 'Shaniqua', 1991, 'F', 861), +(144786, 'Carolina', 1991, 'F', 859), +(144787, 'Guadalupe', 1991, 'F', 851), +(144788, 'Shayla', 1991, 'F', 851), +(144789, 'Sonia', 1991, 'F', 851), +(144790, 'Vivian', 1991, 'F', 851), +(144791, 'Melody', 1991, 'F', 850), +(144792, 'Paula', 1991, 'F', 848), +(144793, 'Nikki', 1991, 'F', 837), +(144794, 'Sylvia', 1991, 'F', 831), +(144795, 'Arianna', 1991, 'F', 826), +(144796, 'Diamond', 1991, 'F', 826), +(144797, 'Stefanie', 1991, 'F', 826), +(144798, 'Eva', 1991, 'F', 820), +(144799, 'Daniela', 1991, 'F', 811), +(144800, 'Latoya', 1991, 'F', 810), +(144801, 'Randi', 1991, 'F', 810), +(144802, 'Katelynn', 1991, 'F', 800), +(144803, 'Christy', 1991, 'F', 798), +(144804, 'Isabel', 1991, 'F', 798), +(144805, 'Tatiana', 1991, 'F', 795), +(144806, 'Robyn', 1991, 'F', 792), +(144807, 'Marina', 1991, 'F', 786), +(144808, 'Michaela', 1991, 'F', 782), +(144809, 'Yvette', 1991, 'F', 781), +(144810, 'Mia', 1991, 'F', 779), +(144811, 'Rachelle', 1991, 'F', 774), +(144812, 'Helen', 1991, 'F', 773), +(144813, 'Corinne', 1991, 'F', 772), +(144814, 'Lillian', 1991, 'F', 767), +(144815, 'Chasity', 1991, 'F', 755), +(144816, 'Liliana', 1991, 'F', 750), +(144817, 'Marlene', 1991, 'F', 749), +(144818, 'Lorena', 1991, 'F', 746), +(144819, 'Trisha', 1991, 'F', 746), +(144820, 'Elena', 1991, 'F', 742), +(144821, 'Jaime', 1991, 'F', 740), +(144822, 'Donna', 1991, 'F', 739), +(144823, 'Lori', 1991, 'F', 738), +(144824, 'Annie', 1991, 'F', 736), +(144825, 'Elisabeth', 1991, 'F', 734), +(144826, 'Tori', 1991, 'F', 729), +(144827, 'Alice', 1991, 'F', 723), +(144828, 'Zoe', 1991, 'F', 722), +(144829, 'Jill', 1991, 'F', 721), +(144830, 'Ashton', 1991, 'F', 718), +(144831, 'Tierra', 1991, 'F', 714), +(144832, 'Frances', 1991, 'F', 711), +(144833, 'Diane', 1991, 'F', 710), +(144834, 'Joy', 1991, 'F', 710), +(144835, 'Jane', 1991, 'F', 708), +(144836, 'Anastasia', 1991, 'F', 706), +(144837, 'Marisol', 1991, 'F', 706), +(144838, 'Ericka', 1991, 'F', 705), +(144839, 'Alana', 1991, 'F', 700), +(144840, 'Kelley', 1991, 'F', 700), +(144841, 'Kaila', 1991, 'F', 698), +(144842, 'Shana', 1991, 'F', 698), +(144843, 'Lacy', 1991, 'F', 695), +(144844, 'Simone', 1991, 'F', 691), +(144845, 'Johanna', 1991, 'F', 690), +(144846, 'Celeste', 1991, 'F', 687), +(144847, 'Katharine', 1991, 'F', 687), +(144848, 'Tanisha', 1991, 'F', 681), +(144849, 'Cristal', 1991, 'F', 679), +(144850, 'Meaghan', 1991, 'F', 679), +(144851, 'Chantel', 1991, 'F', 677), +(144852, 'Mckenzie', 1991, 'F', 677), +(144853, 'Shayna', 1991, 'F', 677), +(144854, 'Chanel', 1991, 'F', 676), +(144855, 'Christa', 1991, 'F', 674), +(144856, 'Carol', 1991, 'F', 671), +(144857, 'Dawn', 1991, 'F', 668), +(144858, 'Kendall', 1991, 'F', 667), +(144859, 'Alma', 1991, 'F', 666), +(144860, 'Nicolette', 1991, 'F', 663), +(144861, 'Brenna', 1991, 'F', 661), +(144862, 'Kayleigh', 1991, 'F', 658), +(144863, 'Larissa', 1991, 'F', 654), +(144864, 'Leticia', 1991, 'F', 651), +(144865, 'Irene', 1991, 'F', 650), +(144866, 'Yvonne', 1991, 'F', 649), +(144867, 'Tiana', 1991, 'F', 648), +(144868, 'Suzanne', 1991, 'F', 646), +(144869, 'Kyla', 1991, 'F', 645), +(144870, 'Iris', 1991, 'F', 640), +(144871, 'Juliana', 1991, 'F', 639), +(144872, 'Dakota', 1991, 'F', 636), +(144873, 'Roxanne', 1991, 'F', 635), +(144874, 'Blanca', 1991, 'F', 634), +(144875, 'Kirstie', 1991, 'F', 634), +(144876, 'Kristie', 1991, 'F', 634), +(144877, 'Sheila', 1991, 'F', 633), +(144878, 'Tyler', 1991, 'F', 633), +(144879, 'Keri', 1991, 'F', 629), +(144880, 'Sandy', 1991, 'F', 627), +(144881, 'Kelsi', 1991, 'F', 624), +(144882, 'Rochelle', 1991, 'F', 624), +(144883, 'Taryn', 1991, 'F', 622), +(144884, 'Elisa', 1991, 'F', 619), +(144885, 'Maritza', 1991, 'F', 619), +(144886, 'India', 1991, 'F', 614), +(144887, 'Kierra', 1991, 'F', 613), +(144888, 'Esmeralda', 1991, 'F', 611), +(144889, 'Shaina', 1991, 'F', 611), +(144890, 'Cassidy', 1991, 'F', 610), +(144891, 'Elaine', 1991, 'F', 610), +(144892, 'Julianne', 1991, 'F', 610), +(144893, 'Josephine', 1991, 'F', 606), +(144894, 'Yolanda', 1991, 'F', 606), +(144895, 'Kylee', 1991, 'F', 603), +(144896, 'Lyndsey', 1991, 'F', 601), +(144897, 'Maribel', 1991, 'F', 601), +(144898, 'Leanna', 1991, 'F', 598), +(144899, 'Jordyn', 1991, 'F', 596), +(144900, 'Antoinette', 1991, 'F', 593), +(144901, 'Keisha', 1991, 'F', 590), +(144902, 'Tonya', 1991, 'F', 590), +(144903, 'Shanna', 1991, 'F', 589), +(144904, 'Jalisa', 1991, 'F', 586), +(144905, 'Nadia', 1991, 'F', 585), +(144906, 'Genesis', 1991, 'F', 584), +(144907, 'Marilyn', 1991, 'F', 584), +(144908, 'Latasha', 1991, 'F', 582), +(144909, 'Noelle', 1991, 'F', 582), +(144910, 'Sadie', 1991, 'F', 582), +(144911, 'Anita', 1991, 'F', 580), +(144912, 'Brittni', 1991, 'F', 579), +(144913, 'Tania', 1991, 'F', 578), +(144914, 'Alyson', 1991, 'F', 577), +(144915, 'Bonnie', 1991, 'F', 573), +(144916, 'Maya', 1991, 'F', 573), +(144917, 'Nora', 1991, 'F', 573), +(144918, 'Precious', 1991, 'F', 573), +(144919, 'Margarita', 1991, 'F', 572), +(144920, 'Natalia', 1991, 'F', 572), +(144921, 'Alysha', 1991, 'F', 568), +(144922, 'Kourtney', 1991, 'F', 565), +(144923, 'Judith', 1991, 'F', 561), +(144924, 'Francesca', 1991, 'F', 560), +(144925, 'Kali', 1991, 'F', 560), +(144926, 'Shauna', 1991, 'F', 557), +(144927, 'Charity', 1991, 'F', 552), +(144928, 'Beth', 1991, 'F', 545), +(144929, 'Cheryl', 1991, 'F', 540), +(144930, 'Macy', 1991, 'F', 535), +(144931, 'Mollie', 1991, 'F', 535), +(144932, 'Charlene', 1991, 'F', 531), +(144933, 'Kira', 1991, 'F', 531), +(144934, 'Sally', 1991, 'F', 530), +(144935, 'Stephany', 1991, 'F', 527), +(144936, 'Tiffani', 1991, 'F', 527), +(144937, 'Ciera', 1991, 'F', 525), +(144938, 'Janae', 1991, 'F', 525), +(144939, 'Clara', 1991, 'F', 524), +(144940, 'Aisha', 1991, 'F', 523), +(144941, 'Alaina', 1991, 'F', 523), +(144942, 'Bridgette', 1991, 'F', 523), +(144943, 'Breanne', 1991, 'F', 518), +(144944, 'Lucy', 1991, 'F', 517), +(144945, 'Beatriz', 1991, 'F', 515), +(144946, 'Breana', 1991, 'F', 515), +(144947, 'Shelbi', 1991, 'F', 513), +(144948, 'Ashlyn', 1991, 'F', 511), +(144949, 'Casandra', 1991, 'F', 511), +(144950, 'Logan', 1991, 'F', 511), +(144951, 'Staci', 1991, 'F', 509), +(144952, 'Norma', 1991, 'F', 508), +(144953, 'Alisa', 1991, 'F', 507), +(144954, 'Kiera', 1991, 'F', 507), +(144955, 'Desirae', 1991, 'F', 500), +(144956, 'Carley', 1991, 'F', 498), +(144957, 'Dorothy', 1991, 'F', 498), +(144958, 'Serena', 1991, 'F', 498), +(144959, 'Tabatha', 1991, 'F', 496), +(144960, 'Ashlie', 1991, 'F', 489), +(144961, 'Araceli', 1991, 'F', 488), +(144962, 'Carina', 1991, 'F', 488), +(144963, 'Jacklyn', 1991, 'F', 486), +(144964, 'Janice', 1991, 'F', 485), +(144965, 'Kerri', 1991, 'F', 483), +(144966, 'Paris', 1991, 'F', 483), +(144967, 'Latisha', 1991, 'F', 480), +(144968, 'Kerry', 1991, 'F', 478), +(144969, 'Mindy', 1991, 'F', 478), +(144970, 'Debra', 1991, 'F', 477), +(144971, 'Alanna', 1991, 'F', 476), +(144972, 'Moriah', 1991, 'F', 476), +(144973, 'Madeleine', 1991, 'F', 473), +(144974, 'Kathy', 1991, 'F', 472), +(144975, 'Lily', 1991, 'F', 469), +(144976, 'Darlene', 1991, 'F', 468), +(144977, 'Mariana', 1991, 'F', 468), +(144978, 'Julianna', 1991, 'F', 467), +(144979, 'Tess', 1991, 'F', 465), +(144980, 'Alexia', 1991, 'F', 464), +(144981, 'Cayla', 1991, 'F', 463), +(144982, 'Kyra', 1991, 'F', 458), +(144983, 'Jaimie', 1991, 'F', 455), +(144984, 'Christie', 1991, 'F', 452), +(144985, 'Maranda', 1991, 'F', 452), +(144986, 'Abbey', 1991, 'F', 451), +(144987, 'Lena', 1991, 'F', 450), +(144988, 'Talia', 1991, 'F', 450), +(144989, 'Devan', 1991, 'F', 449), +(144990, 'Kacie', 1991, 'F', 449), +(144991, 'Annette', 1991, 'F', 448), +(144992, 'Sofia', 1991, 'F', 448), +(144993, 'Jami', 1991, 'F', 446), +(144994, 'Leanne', 1991, 'F', 446), +(144995, 'Rocio', 1991, 'F', 446), +(144996, 'Shirley', 1991, 'F', 446), +(144997, 'Joyce', 1991, 'F', 445), +(144998, 'Leigh', 1991, 'F', 445), +(144999, 'Edith', 1991, 'F', 444), +(145000, 'Tammy', 1991, 'F', 444), +(145001, 'Maureen', 1991, 'F', 441), +(145002, 'Tayler', 1991, 'F', 441), +(145003, 'Blair', 1991, 'F', 440), +(145004, 'Shantel', 1991, 'F', 439), +(145005, 'Kaleigh', 1991, 'F', 438), +(145006, 'Kaley', 1991, 'F', 438), +(145007, 'Stacie', 1991, 'F', 437), +(145008, 'Juanita', 1991, 'F', 436), +(145009, 'Angelique', 1991, 'F', 434), +(145010, 'Emilee', 1991, 'F', 434), +(145011, 'Beverly', 1991, 'F', 433), +(145012, 'Savanna', 1991, 'F', 433), +(145013, 'Ashly', 1991, 'F', 432), +(145014, 'Connie', 1991, 'F', 432), +(145015, 'Laurel', 1991, 'F', 432), +(145016, 'Shelly', 1991, 'F', 432), +(145017, 'Tracey', 1991, 'F', 432), +(145018, 'Jodi', 1991, 'F', 431), +(145019, 'Maegan', 1991, 'F', 431), +(145020, 'Ryan', 1991, 'F', 431), +(145021, 'Katy', 1991, 'F', 430), +(145022, 'Rosemary', 1991, 'F', 429), +(145023, 'Kala', 1991, 'F', 426), +(145024, 'Patrice', 1991, 'F', 424), +(145025, 'Rita', 1991, 'F', 423), +(145026, 'Eileen', 1991, 'F', 422), +(145027, 'Daniella', 1991, 'F', 421), +(145028, 'Alexandrea', 1991, 'F', 420), +(145029, 'Brandie', 1991, 'F', 420), +(145030, 'Genevieve', 1991, 'F', 420), +(145031, 'Sophie', 1991, 'F', 419), +(145032, 'Justina', 1991, 'F', 418), +(145033, 'Sheena', 1991, 'F', 417), +(145034, 'Mandy', 1991, 'F', 416), +(145035, 'Paulina', 1991, 'F', 414), +(145036, 'Britany', 1991, 'F', 412), +(145037, 'Elyse', 1991, 'F', 412), +(145038, 'Kailey', 1991, 'F', 412), +(145039, 'Allie', 1991, 'F', 410), +(145040, 'Bryanna', 1991, 'F', 409), +(145041, 'Katelin', 1991, 'F', 409), +(145042, 'Kirstin', 1991, 'F', 409), +(145043, 'Shanae', 1991, 'F', 409), +(145044, 'Ivette', 1991, 'F', 408), +(145045, 'Susana', 1991, 'F', 405), +(145046, 'Kiersten', 1991, 'F', 404), +(145047, 'Noemi', 1991, 'F', 404), +(145048, 'Shelbie', 1991, 'F', 403), +(145049, 'Kacey', 1991, 'F', 401), +(145050, 'Mara', 1991, 'F', 400), +(145051, 'Perla', 1991, 'F', 400), +(145052, 'Joanne', 1991, 'F', 398), +(145053, 'Loren', 1991, 'F', 398), +(145054, 'Lucia', 1991, 'F', 397), +(145055, 'Eleanor', 1991, 'F', 394), +(145056, 'Hollie', 1991, 'F', 394), +(145057, 'Sonya', 1991, 'F', 394), +(145058, 'Brittanie', 1991, 'F', 392), +(145059, 'Yasmin', 1991, 'F', 392), +(145060, 'Jackie', 1991, 'F', 389), +(145061, 'Lea', 1991, 'F', 389), +(145062, 'Octavia', 1991, 'F', 387), +(145063, 'Tricia', 1991, 'F', 386), +(145064, 'Eliza', 1991, 'F', 384), +(145065, 'Jana', 1991, 'F', 383), +(145066, 'Lara', 1991, 'F', 379), +(145067, 'Corina', 1991, 'F', 378), +(145068, 'Alycia', 1991, 'F', 377), +(145069, 'Gretchen', 1991, 'F', 377), +(145070, 'Jena', 1991, 'F', 377), +(145071, 'Kristyn', 1991, 'F', 377), +(145072, 'Constance', 1991, 'F', 375), +(145073, 'Maura', 1991, 'F', 374), +(145074, 'Viviana', 1991, 'F', 374), +(145075, 'Karly', 1991, 'F', 373), +(145076, 'Krystle', 1991, 'F', 373), +(145077, 'Lacie', 1991, 'F', 373), +(145078, 'Jennie', 1991, 'F', 372), +(145079, 'Nikita', 1991, 'F', 372), +(145080, 'Silvia', 1991, 'F', 372), +(145081, 'Lesley', 1991, 'F', 371), +(145082, 'Alex', 1991, 'F', 369), +(145083, 'Chantal', 1991, 'F', 369), +(145084, 'Janessa', 1991, 'F', 369), +(145085, 'Terri', 1991, 'F', 369), +(145086, 'Kelsea', 1991, 'F', 368), +(145087, 'Nia', 1991, 'F', 368), +(145088, 'Kenya', 1991, 'F', 366), +(145089, 'Valeria', 1991, 'F', 366), +(145090, 'Whitley', 1991, 'F', 365), +(145091, 'Kaitlynn', 1991, 'F', 364), +(145092, 'Skylar', 1991, 'F', 364), +(145093, 'Traci', 1991, 'F', 364), +(145094, 'Alina', 1991, 'F', 363), +(145095, 'Emilie', 1991, 'F', 363), +(145096, 'Bobbie', 1991, 'F', 361), +(145097, 'Luz', 1991, 'F', 361), +(145098, 'Jenifer', 1991, 'F', 358), +(145099, 'Lakeisha', 1991, 'F', 358), +(145100, 'Stevie', 1991, 'F', 358), +(145101, 'Yadira', 1991, 'F', 357), +(145102, 'Belinda', 1991, 'F', 356), +(145103, 'Jayme', 1991, 'F', 356), +(145104, 'Katlin', 1991, 'F', 355), +(145105, 'Sherry', 1991, 'F', 353), +(145106, 'Celia', 1991, 'F', 352), +(145107, 'Dulce', 1991, 'F', 352), +(145108, 'Lizette', 1991, 'F', 351), +(145109, 'Madelyn', 1991, 'F', 351), +(145110, 'Destinee', 1991, 'F', 349), +(145111, 'Josie', 1991, 'F', 349), +(145112, 'Carlie', 1991, 'F', 348), +(145113, 'Lizbeth', 1991, 'F', 347), +(145114, 'Betty', 1991, 'F', 345), +(145115, 'Mikayla', 1991, 'F', 345), +(145116, 'Audra', 1991, 'F', 344), +(145117, 'Melina', 1991, 'F', 344), +(145118, 'Christen', 1991, 'F', 342), +(145119, 'Kristian', 1991, 'F', 342), +(145120, 'Avery', 1991, 'F', 339), +(145121, 'Chelsi', 1991, 'F', 339), +(145122, 'Angie', 1991, 'F', 338), +(145123, 'Jesse', 1991, 'F', 338), +(145124, 'Racheal', 1991, 'F', 338), +(145125, 'Lynn', 1991, 'F', 337), +(145126, 'Hallie', 1991, 'F', 334), +(145127, 'Dayna', 1991, 'F', 333), +(145128, 'Demi', 1991, 'F', 333), +(145129, 'Dianna', 1991, 'F', 333), +(145130, 'Kiana', 1991, 'F', 333), +(145131, 'Arlene', 1991, 'F', 332), +(145132, 'Gladys', 1991, 'F', 332), +(145133, 'Kaci', 1991, 'F', 332), +(145134, 'Adrian', 1991, 'F', 329), +(145135, 'Maricela', 1991, 'F', 329), +(145136, 'Gianna', 1991, 'F', 327), +(145137, 'Karli', 1991, 'F', 327), +(145138, 'Tamika', 1991, 'F', 326), +(145139, 'Sidney', 1991, 'F', 325), +(145140, 'Clare', 1991, 'F', 323), +(145141, 'Fatima', 1991, 'F', 323), +(145142, 'Celina', 1991, 'F', 322), +(145143, 'Haleigh', 1991, 'F', 322), +(145144, 'Janie', 1991, 'F', 321), +(145145, 'Sade', 1991, 'F', 321), +(145146, 'Georgia', 1991, 'F', 320), +(145147, 'Janette', 1991, 'F', 320), +(145148, 'Kaylie', 1991, 'F', 319), +(145149, 'Ashely', 1991, 'F', 316), +(145150, 'Harley', 1991, 'F', 316), +(145151, 'Deja', 1991, 'F', 315), +(145152, 'Marisela', 1991, 'F', 315), +(145153, 'Roxana', 1991, 'F', 315), +(145154, 'Alysia', 1991, 'F', 314), +(145155, 'Gwendolyn', 1991, 'F', 314), +(145156, 'Laurie', 1991, 'F', 314), +(145157, 'Rhonda', 1991, 'F', 314), +(145158, 'Selena', 1991, 'F', 313), +(145159, 'Nathalie', 1991, 'F', 312), +(145160, 'Jessika', 1991, 'F', 311), +(145161, 'Selina', 1991, 'F', 311), +(145162, 'Tianna', 1991, 'F', 311), +(145163, 'Antonia', 1991, 'F', 309), +(145164, 'Christin', 1991, 'F', 308), +(145165, 'Iliana', 1991, 'F', 308), +(145166, 'Jeannette', 1991, 'F', 308), +(145167, 'Rebeca', 1991, 'F', 307), +(145168, 'Beatrice', 1991, 'F', 306), +(145169, 'Lorraine', 1991, 'F', 306), +(145170, 'Nadine', 1991, 'F', 306), +(145171, 'Isabella', 1991, 'F', 305), +(145172, 'Shanice', 1991, 'F', 304), +(145173, 'Terra', 1991, 'F', 304), +(145174, 'Skye', 1991, 'F', 303), +(145175, 'Cameron', 1991, 'F', 302), +(145176, 'Kaylin', 1991, 'F', 301), +(145177, 'Ali', 1991, 'F', 300), +(145178, 'Elissa', 1991, 'F', 300), +(145179, 'Domonique', 1991, 'F', 299), +(145180, 'Rhiannon', 1991, 'F', 299), +(145181, 'Kiley', 1991, 'F', 298), +(145182, 'Alesha', 1991, 'F', 297), +(145183, 'Elisha', 1991, 'F', 297), +(145184, 'Pauline', 1991, 'F', 297), +(145185, 'Judy', 1991, 'F', 296), +(145186, 'Kasandra', 1991, 'F', 296), +(145187, 'Corey', 1991, 'F', 295); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(145188, 'Brooklyn', 1991, 'F', 294), +(145189, 'Amie', 1991, 'F', 293), +(145190, 'Ieshia', 1991, 'F', 293), +(145191, 'Anjelica', 1991, 'F', 292), +(145192, 'Kimberley', 1991, 'F', 290), +(145193, 'Shanika', 1991, 'F', 289), +(145194, 'Eden', 1991, 'F', 288), +(145195, 'Imani', 1991, 'F', 287), +(145196, 'Kaylyn', 1991, 'F', 287), +(145197, 'Myra', 1991, 'F', 287), +(145198, 'Britni', 1991, 'F', 286), +(145199, 'Danica', 1991, 'F', 285), +(145200, 'Paola', 1991, 'F', 285), +(145201, 'Riley', 1991, 'F', 285), +(145202, 'Anabel', 1991, 'F', 284), +(145203, 'Irma', 1991, 'F', 284), +(145204, 'Makenzie', 1991, 'F', 284), +(145205, 'Shanequa', 1991, 'F', 284), +(145206, 'Deidre', 1991, 'F', 283), +(145207, 'Ayla', 1991, 'F', 282), +(145208, 'Janine', 1991, 'F', 282), +(145209, 'Julissa', 1991, 'F', 282), +(145210, 'Chantelle', 1991, 'F', 281), +(145211, 'Christiana', 1991, 'F', 281), +(145212, 'Isamar', 1991, 'F', 281), +(145213, 'Karlee', 1991, 'F', 281), +(145214, 'Kortney', 1991, 'F', 281), +(145215, 'Tyesha', 1991, 'F', 281), +(145216, 'Alecia', 1991, 'F', 280), +(145217, 'Joann', 1991, 'F', 280), +(145218, 'Eliana', 1991, 'F', 279), +(145219, 'Fabiola', 1991, 'F', 278), +(145220, 'Yessenia', 1991, 'F', 278), +(145221, 'Brittaney', 1991, 'F', 277), +(145222, 'Kori', 1991, 'F', 277), +(145223, 'Abbie', 1991, 'F', 276), +(145224, 'Makayla', 1991, 'F', 276), +(145225, 'Jean', 1991, 'F', 274), +(145226, 'Porsha', 1991, 'F', 274), +(145227, 'Kristal', 1991, 'F', 273), +(145228, 'Ashli', 1991, 'F', 272), +(145229, 'Jerrica', 1991, 'F', 272), +(145230, 'Krystina', 1991, 'F', 272), +(145231, 'Haylee', 1991, 'F', 271), +(145232, 'Maira', 1991, 'F', 271), +(145233, 'Symone', 1991, 'F', 271), +(145234, 'Griselda', 1991, 'F', 270), +(145235, 'Kalyn', 1991, 'F', 270), +(145236, 'Laci', 1991, 'F', 270), +(145237, 'Aurora', 1991, 'F', 269), +(145238, 'Cheyanne', 1991, 'F', 269), +(145239, 'Cori', 1991, 'F', 269), +(145240, 'Noel', 1991, 'F', 269), +(145241, 'Cassondra', 1991, 'F', 267), +(145242, 'Elaina', 1991, 'F', 267), +(145243, 'Kassie', 1991, 'F', 267), +(145244, 'Michael', 1991, 'F', 267), +(145245, 'Heaven', 1991, 'F', 266), +(145246, 'Lucero', 1991, 'F', 266), +(145247, 'Shea', 1991, 'F', 266), +(145248, 'Carli', 1991, 'F', 265), +(145249, 'Melisa', 1991, 'F', 265), +(145250, 'Athena', 1991, 'F', 264), +(145251, 'Bobbi', 1991, 'F', 264), +(145252, 'Krysta', 1991, 'F', 264), +(145253, 'Baby', 1991, 'F', 263), +(145254, 'Jaqueline', 1991, 'F', 263), +(145255, 'Janay', 1991, 'F', 262), +(145256, 'Chrystal', 1991, 'F', 261), +(145257, 'Lauryn', 1991, 'F', 261), +(145258, 'Lyndsay', 1991, 'F', 261), +(145259, 'Leann', 1991, 'F', 260), +(145260, 'Mariela', 1991, 'F', 260), +(145261, 'Breann', 1991, 'F', 259), +(145262, 'Darcy', 1991, 'F', 259), +(145263, 'Estefania', 1991, 'F', 259), +(145264, 'Felisha', 1991, 'F', 259), +(145265, 'Keely', 1991, 'F', 259), +(145266, 'Kaela', 1991, 'F', 258), +(145267, 'Reyna', 1991, 'F', 258), +(145268, 'Shakira', 1991, 'F', 257), +(145269, 'Shelley', 1991, 'F', 257), +(145270, 'Tanesha', 1991, 'F', 257), +(145271, 'Unknown', 1991, 'F', 257), +(145272, 'Charmaine', 1991, 'F', 256), +(145273, 'Joan', 1991, 'F', 256), +(145274, 'Shante', 1991, 'F', 256), +(145275, 'Cora', 1991, 'F', 255), +(145276, 'Aileen', 1991, 'F', 254), +(145277, 'Allyssa', 1991, 'F', 254), +(145278, 'Juana', 1991, 'F', 254), +(145279, 'Micaela', 1991, 'F', 254), +(145280, 'Eboni', 1991, 'F', 253), +(145281, 'Kia', 1991, 'F', 253), +(145282, 'Sarai', 1991, 'F', 253), +(145283, 'Betsy', 1991, 'F', 252), +(145284, 'Jaleesa', 1991, 'F', 252), +(145285, 'Keshia', 1991, 'F', 252), +(145286, 'Mariel', 1991, 'F', 252), +(145287, 'Micah', 1991, 'F', 252), +(145288, 'Mikaela', 1991, 'F', 252), +(145289, 'Tiffanie', 1991, 'F', 252), +(145290, 'Brittny', 1991, 'F', 251), +(145291, 'Monika', 1991, 'F', 251), +(145292, 'Princess', 1991, 'F', 251), +(145293, 'Tiera', 1991, 'F', 251), +(145294, 'Chandra', 1991, 'F', 250), +(145295, 'Adrianne', 1991, 'F', 249), +(145296, 'Demetria', 1991, 'F', 249), +(145297, 'Dina', 1991, 'F', 249), +(145298, 'Brittnee', 1991, 'F', 248), +(145299, 'Jerica', 1991, 'F', 248), +(145300, 'Joelle', 1991, 'F', 248), +(145301, 'Kaycee', 1991, 'F', 247), +(145302, 'Kimberlee', 1991, 'F', 247), +(145303, 'Marquita', 1991, 'F', 246), +(145304, 'Marcella', 1991, 'F', 245), +(145305, 'Halie', 1991, 'F', 244), +(145306, 'Liana', 1991, 'F', 244), +(145307, 'Chynna', 1991, 'F', 242), +(145308, 'Devyn', 1991, 'F', 242), +(145309, 'Ingrid', 1991, 'F', 242), +(145310, 'Stefani', 1991, 'F', 242), +(145311, 'Gabriel', 1991, 'F', 240), +(145312, 'Angelia', 1991, 'F', 239), +(145313, 'Kandace', 1991, 'F', 239), +(145314, 'Olga', 1991, 'F', 239), +(145315, 'Marlena', 1991, 'F', 238), +(145316, 'Bernadette', 1991, 'F', 237), +(145317, 'Chaya', 1991, 'F', 237), +(145318, 'Marla', 1991, 'F', 237), +(145319, 'Ava', 1991, 'F', 236), +(145320, 'Brook', 1991, 'F', 236), +(145321, 'Janel', 1991, 'F', 236), +(145322, 'Deidra', 1991, 'F', 235), +(145323, 'Kathrine', 1991, 'F', 235), +(145324, 'Leandra', 1991, 'F', 235), +(145325, 'Marjorie', 1991, 'F', 235), +(145326, 'Martina', 1991, 'F', 235), +(145327, 'Trista', 1991, 'F', 235), +(145328, 'Dara', 1991, 'F', 234), +(145329, 'Jolene', 1991, 'F', 234), +(145330, 'Lana', 1991, 'F', 234), +(145331, 'Phoebe', 1991, 'F', 233), +(145332, 'Karlie', 1991, 'F', 232), +(145333, 'Laken', 1991, 'F', 232), +(145334, 'Latrice', 1991, 'F', 232), +(145335, 'Marian', 1991, 'F', 232), +(145336, 'Stormy', 1991, 'F', 232), +(145337, 'Jodie', 1991, 'F', 231), +(145338, 'Krysten', 1991, 'F', 231), +(145339, 'Rikki', 1991, 'F', 231), +(145340, 'Aja', 1991, 'F', 230), +(145341, 'Cody', 1991, 'F', 230), +(145342, 'Delia', 1991, 'F', 230), +(145343, 'Hali', 1991, 'F', 230), +(145344, 'Debbie', 1991, 'F', 229), +(145345, 'Janna', 1991, 'F', 227), +(145346, 'Susanna', 1991, 'F', 227), +(145347, 'Ivy', 1991, 'F', 226), +(145348, 'Jamila', 1991, 'F', 226), +(145349, 'Laquita', 1991, 'F', 226), +(145350, 'Valencia', 1991, 'F', 226), +(145351, 'Chanelle', 1991, 'F', 225), +(145352, 'Delaney', 1991, 'F', 225), +(145353, 'Skyler', 1991, 'F', 224), +(145354, 'Catalina', 1991, 'F', 223), +(145355, 'Daphne', 1991, 'F', 223), +(145356, 'Liza', 1991, 'F', 223), +(145357, 'Carlee', 1991, 'F', 222), +(145358, 'Corrine', 1991, 'F', 222), +(145359, 'Nataly', 1991, 'F', 222), +(145360, 'Dominque', 1991, 'F', 221), +(145361, 'Jessi', 1991, 'F', 221), +(145362, 'Kailee', 1991, 'F', 221), +(145363, 'Mai', 1991, 'F', 221), +(145364, 'Elsa', 1991, 'F', 220), +(145365, 'Fiona', 1991, 'F', 220), +(145366, 'Chastity', 1991, 'F', 219), +(145367, 'Alayna', 1991, 'F', 218), +(145368, 'Richelle', 1991, 'F', 218), +(145369, 'Kandice', 1991, 'F', 217), +(145370, 'Leeann', 1991, 'F', 217), +(145371, 'Alyse', 1991, 'F', 216), +(145372, 'Andria', 1991, 'F', 216), +(145373, 'Graciela', 1991, 'F', 216), +(145374, 'Rubi', 1991, 'F', 216), +(145375, 'Alessandra', 1991, 'F', 215), +(145376, 'Ella', 1991, 'F', 215), +(145377, 'Jessenia', 1991, 'F', 215), +(145378, 'Kati', 1991, 'F', 215), +(145379, 'Doris', 1991, 'F', 214), +(145380, 'Giselle', 1991, 'F', 214), +(145381, 'Jaimee', 1991, 'F', 214), +(145382, 'Billie', 1991, 'F', 212), +(145383, 'Cecelia', 1991, 'F', 212), +(145384, 'Danae', 1991, 'F', 211), +(145385, 'Edna', 1991, 'F', 211), +(145386, 'Nikole', 1991, 'F', 211), +(145387, 'Geneva', 1991, 'F', 210), +(145388, 'Kasie', 1991, 'F', 210), +(145389, 'Annmarie', 1991, 'F', 209), +(145390, 'Cathy', 1991, 'F', 209), +(145391, 'Gillian', 1991, 'F', 209), +(145392, 'Kallie', 1991, 'F', 209), +(145393, 'Mckenna', 1991, 'F', 209), +(145394, 'Shaquana', 1991, 'F', 209), +(145395, 'Tracie', 1991, 'F', 209), +(145396, 'Ayana', 1991, 'F', 208), +(145397, 'Bridgett', 1991, 'F', 208), +(145398, 'Kalie', 1991, 'F', 208), +(145399, 'Tiesha', 1991, 'F', 208), +(145400, 'Katheryn', 1991, 'F', 207), +(145401, 'Kenisha', 1991, 'F', 207), +(145402, 'Maryann', 1991, 'F', 207), +(145403, 'Phylicia', 1991, 'F', 207), +(145404, 'Becky', 1991, 'F', 206), +(145405, 'Kim', 1991, 'F', 206), +(145406, 'Regan', 1991, 'F', 206), +(145407, 'Sonja', 1991, 'F', 206), +(145408, 'Brittnie', 1991, 'F', 205), +(145409, 'Lynette', 1991, 'F', 205), +(145410, 'Yasmine', 1991, 'F', 205), +(145411, 'Lora', 1991, 'F', 204), +(145412, 'Georgina', 1991, 'F', 203), +(145413, 'Marianne', 1991, 'F', 203), +(145414, 'Berenice', 1991, 'F', 202), +(145415, 'Brielle', 1991, 'F', 202), +(145416, 'Janell', 1991, 'F', 202), +(145417, 'Joana', 1991, 'F', 202), +(145418, 'Myranda', 1991, 'F', 202), +(145419, 'Marcela', 1991, 'F', 201), +(145420, 'Miriah', 1991, 'F', 201), +(145421, 'Lourdes', 1991, 'F', 200), +(145422, 'Maxine', 1991, 'F', 200), +(145423, 'Tiarra', 1991, 'F', 200), +(145424, 'Alexus', 1991, 'F', 199), +(145425, 'Jesica', 1991, 'F', 199), +(145426, 'Lissette', 1991, 'F', 199), +(145427, 'Lynsey', 1991, 'F', 199), +(145428, 'Salina', 1991, 'F', 199), +(145429, 'Blake', 1991, 'F', 198), +(145430, 'Kelcie', 1991, 'F', 198), +(145431, 'Leila', 1991, 'F', 198), +(145432, 'Asha', 1991, 'F', 197), +(145433, 'Emerald', 1991, 'F', 196), +(145434, 'Emilia', 1991, 'F', 196), +(145435, 'Eunice', 1991, 'F', 196), +(145436, 'Helena', 1991, 'F', 196), +(145437, 'Portia', 1991, 'F', 196), +(145438, 'Marcia', 1991, 'F', 195), +(145439, 'Alysa', 1991, 'F', 194), +(145440, 'Amberly', 1991, 'F', 194), +(145441, 'Dora', 1991, 'F', 194), +(145442, 'Shanell', 1991, 'F', 194), +(145443, 'Alexander', 1991, 'F', 193), +(145444, 'Bryana', 1991, 'F', 193), +(145445, 'Essence', 1991, 'F', 193), +(145446, 'Giovanna', 1991, 'F', 193), +(145447, 'Isabelle', 1991, 'F', 193), +(145448, 'Lashonda', 1991, 'F', 193), +(145449, 'China', 1991, 'F', 192), +(145450, 'Jada', 1991, 'F', 192), +(145451, 'Magdalena', 1991, 'F', 192), +(145452, 'Mariam', 1991, 'F', 192), +(145453, 'Catrina', 1991, 'F', 191), +(145454, 'Chiquita', 1991, 'F', 191), +(145455, 'Coral', 1991, 'F', 191), +(145456, 'Deana', 1991, 'F', 191), +(145457, 'Elyssa', 1991, 'F', 191), +(145458, 'Fallon', 1991, 'F', 191), +(145459, 'Latonya', 1991, 'F', 191), +(145460, 'Bria', 1991, 'F', 190), +(145461, 'Cecily', 1991, 'F', 190), +(145462, 'Roberta', 1991, 'F', 190), +(145463, 'Roxanna', 1991, 'F', 190), +(145464, 'Kanisha', 1991, 'F', 189), +(145465, 'Aracely', 1991, 'F', 188), +(145466, 'Aubree', 1991, 'F', 188), +(145467, 'Chelsy', 1991, 'F', 188), +(145468, 'Infant', 1991, 'F', 188), +(145469, 'Mattie', 1991, 'F', 188), +(145470, 'Bree', 1991, 'F', 187), +(145471, 'Louise', 1991, 'F', 187), +(145472, 'Miesha', 1991, 'F', 187), +(145473, 'Cinthia', 1991, 'F', 186), +(145474, 'Flor', 1991, 'F', 186), +(145475, 'Katarina', 1991, 'F', 186), +(145476, 'Rebeccah', 1991, 'F', 186), +(145477, 'Reina', 1991, 'F', 186), +(145478, 'Ivonne', 1991, 'F', 185), +(145479, 'Lia', 1991, 'F', 185), +(145480, 'Lisette', 1991, 'F', 185), +(145481, 'Hailee', 1991, 'F', 184), +(145482, 'Loretta', 1991, 'F', 184), +(145483, 'Cathryn', 1991, 'F', 183), +(145484, 'Cari', 1991, 'F', 182), +(145485, 'Shanelle', 1991, 'F', 182), +(145486, 'Trina', 1991, 'F', 182), +(145487, 'Danika', 1991, 'F', 181), +(145488, 'Ivana', 1991, 'F', 181), +(145489, 'Macey', 1991, 'F', 181), +(145490, 'Rosalinda', 1991, 'F', 181), +(145491, 'Sarina', 1991, 'F', 181), +(145492, 'Vicky', 1991, 'F', 181), +(145493, 'Anais', 1991, 'F', 180), +(145494, 'Kaylynn', 1991, 'F', 180), +(145495, 'Lidia', 1991, 'F', 180), +(145496, 'Luisa', 1991, 'F', 180), +(145497, 'Madalyn', 1991, 'F', 180), +(145498, 'Malia', 1991, 'F', 180), +(145499, 'Rosemarie', 1991, 'F', 180), +(145500, 'Shameka', 1991, 'F', 180), +(145501, 'Shantell', 1991, 'F', 180), +(145502, 'Stacia', 1991, 'F', 180), +(145503, 'Damaris', 1991, 'F', 179), +(145504, 'Jewel', 1991, 'F', 179), +(145505, 'Candy', 1991, 'F', 178), +(145506, 'Kacy', 1991, 'F', 178), +(145507, 'Leigha', 1991, 'F', 178), +(145508, 'Samatha', 1991, 'F', 178), +(145509, 'Adilene', 1991, 'F', 177), +(145510, 'Britny', 1991, 'F', 176), +(145511, 'Jeanne', 1991, 'F', 176), +(145512, 'Kayli', 1991, 'F', 176), +(145513, 'Laquisha', 1991, 'F', 176), +(145514, 'Mandi', 1991, 'F', 176), +(145515, 'Marsha', 1991, 'F', 176), +(145516, 'Anissa', 1991, 'F', 175), +(145517, 'Cherish', 1991, 'F', 175), +(145518, 'Jesenia', 1991, 'F', 175), +(145519, 'Magen', 1991, 'F', 175), +(145520, 'Santana', 1991, 'F', 175), +(145521, 'Eryn', 1991, 'F', 174), +(145522, 'Juliet', 1991, 'F', 174), +(145523, 'Danyelle', 1991, 'F', 173), +(145524, 'Krystin', 1991, 'F', 173), +(145525, 'Mari', 1991, 'F', 173), +(145526, 'Wanda', 1991, 'F', 173), +(145527, 'Annamarie', 1991, 'F', 172), +(145528, 'Casie', 1991, 'F', 172), +(145529, 'Hana', 1991, 'F', 172), +(145530, 'Jeannie', 1991, 'F', 172), +(145531, 'Marta', 1991, 'F', 172), +(145532, 'Ashlynn', 1991, 'F', 171), +(145533, 'Meranda', 1991, 'F', 171), +(145534, 'Shanique', 1991, 'F', 171), +(145535, 'Tameka', 1991, 'F', 171), +(145536, 'Breeanna', 1991, 'F', 170), +(145537, 'Kinsey', 1991, 'F', 170), +(145538, 'Lina', 1991, 'F', 170), +(145539, 'Renae', 1991, 'F', 170), +(145540, 'Tera', 1991, 'F', 170), +(145541, 'Teri', 1991, 'F', 170), +(145542, 'Jody', 1991, 'F', 169), +(145543, 'Kalee', 1991, 'F', 169), +(145544, 'Marlee', 1991, 'F', 169), +(145545, 'Nichelle', 1991, 'F', 169), +(145546, 'Yajaira', 1991, 'F', 169), +(145547, 'Ayanna', 1991, 'F', 168), +(145548, 'Denisha', 1991, 'F', 168), +(145549, 'Ellie', 1991, 'F', 168), +(145550, 'Holli', 1991, 'F', 168), +(145551, 'Jenelle', 1991, 'F', 168), +(145552, 'Shaquita', 1991, 'F', 168), +(145553, 'Shawn', 1991, 'F', 168), +(145554, 'Ada', 1991, 'F', 167), +(145555, 'Karley', 1991, 'F', 167), +(145556, 'Linsey', 1991, 'F', 167), +(145557, 'Sage', 1991, 'F', 167), +(145558, 'Sharonda', 1991, 'F', 167), +(145559, 'Daniel', 1991, 'F', 166), +(145560, 'Kimber', 1991, 'F', 166), +(145561, 'Kristan', 1991, 'F', 166), +(145562, 'Vanesa', 1991, 'F', 166), +(145563, 'Glenda', 1991, 'F', 165), +(145564, 'Jenae', 1991, 'F', 165), +(145565, 'Kanesha', 1991, 'F', 165), +(145566, 'Lizeth', 1991, 'F', 165), +(145567, 'Myesha', 1991, 'F', 165), +(145568, 'Niesha', 1991, 'F', 165), +(145569, 'Angeline', 1991, 'F', 164), +(145570, 'Hilda', 1991, 'F', 164), +(145571, 'Jalissa', 1991, 'F', 164), +(145572, 'Rosalie', 1991, 'F', 164), +(145573, 'Shari', 1991, 'F', 164), +(145574, 'Stephani', 1991, 'F', 164), +(145575, 'Esperanza', 1991, 'F', 163), +(145576, 'Kyle', 1991, 'F', 163), +(145577, 'Lilian', 1991, 'F', 163), +(145578, 'Cherie', 1991, 'F', 162), +(145579, 'Christal', 1991, 'F', 162), +(145580, 'Deirdre', 1991, 'F', 162), +(145581, 'Francis', 1991, 'F', 162), +(145582, 'Lee', 1991, 'F', 162), +(145583, 'Siobhan', 1991, 'F', 162), +(145584, 'Denisse', 1991, 'F', 161), +(145585, 'Geraldine', 1991, 'F', 161), +(145586, 'Macie', 1991, 'F', 161), +(145587, 'Tkeyah', 1991, 'F', 161), +(145588, 'Codi', 1991, 'F', 160), +(145589, 'Alix', 1991, 'F', 159), +(145590, 'Jazmyn', 1991, 'F', 159), +(145591, 'Paloma', 1991, 'F', 159), +(145592, 'Samara', 1991, 'F', 159), +(145593, 'Shamika', 1991, 'F', 159), +(145594, 'Christopher', 1991, 'F', 158), +(145595, 'Cory', 1991, 'F', 158), +(145596, 'Marion', 1991, 'F', 158), +(145597, 'Merissa', 1991, 'F', 158), +(145598, 'Patience', 1991, 'F', 158), +(145599, 'Alyssia', 1991, 'F', 157), +(145600, 'Antionette', 1991, 'F', 157), +(145601, 'Katlynn', 1991, 'F', 157), +(145602, 'Kayley', 1991, 'F', 157), +(145603, 'Monet', 1991, 'F', 157), +(145604, 'Rosario', 1991, 'F', 157), +(145605, 'Bertha', 1991, 'F', 156), +(145606, 'Breonna', 1991, 'F', 156), +(145607, 'Deandra', 1991, 'F', 156), +(145608, 'Dena', 1991, 'F', 156), +(145609, 'Jasmyne', 1991, 'F', 156), +(145610, 'Jenessa', 1991, 'F', 156), +(145611, 'Kelsy', 1991, 'F', 156), +(145612, 'Reanna', 1991, 'F', 156), +(145613, 'Reba', 1991, 'F', 156), +(145614, 'Susie', 1991, 'F', 156), +(145615, 'Chantell', 1991, 'F', 155), +(145616, 'Johnna', 1991, 'F', 155), +(145617, 'Keila', 1991, 'F', 155), +(145618, 'Leilani', 1991, 'F', 155), +(145619, 'Shawnee', 1991, 'F', 155), +(145620, 'Cady', 1991, 'F', 154), +(145621, 'Mona', 1991, 'F', 154), +(145622, 'Nakia', 1991, 'F', 154), +(145623, 'Thalia', 1991, 'F', 154), +(145624, 'Tyra', 1991, 'F', 154), +(145625, 'Elvia', 1991, 'F', 153), +(145626, 'Ginger', 1991, 'F', 153), +(145627, 'Malinda', 1991, 'F', 153), +(145628, 'Tosha', 1991, 'F', 153), +(145629, 'Annemarie', 1991, 'F', 152), +(145630, 'Shakiyla', 1991, 'F', 152), +(145631, 'Shaneka', 1991, 'F', 152), +(145632, 'Tarah', 1991, 'F', 152), +(145633, 'Chana', 1991, 'F', 151), +(145634, 'Delilah', 1991, 'F', 151), +(145635, 'Kenyatta', 1991, 'F', 151), +(145636, 'Rena', 1991, 'F', 151), +(145637, 'Scarlett', 1991, 'F', 151), +(145638, 'Stella', 1991, 'F', 151), +(145639, 'Tawny', 1991, 'F', 151), +(145640, 'Isis', 1991, 'F', 150), +(145641, 'Latifah', 1991, 'F', 150), +(145642, 'Nayeli', 1991, 'F', 150), +(145643, 'Selene', 1991, 'F', 150), +(145644, 'Viridiana', 1991, 'F', 150), +(145645, 'Aleshia', 1991, 'F', 149), +(145646, 'Female', 1991, 'F', 149), +(145647, 'Grecia', 1991, 'F', 149), +(145648, 'Jasmyn', 1991, 'F', 149), +(145649, 'Katerina', 1991, 'F', 149), +(145650, 'Kelcey', 1991, 'F', 149), +(145651, 'Ramona', 1991, 'F', 149), +(145652, 'Anika', 1991, 'F', 148), +(145653, 'Dalia', 1991, 'F', 148), +(145654, 'Sherri', 1991, 'F', 148), +(145655, 'Yessica', 1991, 'F', 148), +(145656, 'Desire', 1991, 'F', 147), +(145657, 'Jacquelin', 1991, 'F', 147), +(145658, 'Karin', 1991, 'F', 147), +(145659, 'Kenzie', 1991, 'F', 147), +(145660, 'Peggy', 1991, 'F', 147), +(145661, 'Xiomara', 1991, 'F', 147), +(145662, 'Ashlea', 1991, 'F', 146), +(145663, 'Astrid', 1991, 'F', 146), +(145664, 'Keara', 1991, 'F', 146), +(145665, 'Martika', 1991, 'F', 146), +(145666, 'Trinity', 1991, 'F', 146), +(145667, 'Amalia', 1991, 'F', 145), +(145668, 'Kami', 1991, 'F', 145), +(145669, 'Maci', 1991, 'F', 145), +(145670, 'Racquel', 1991, 'F', 145), +(145671, 'Stormie', 1991, 'F', 145), +(145672, 'Suzanna', 1991, 'F', 145), +(145673, 'Austin', 1991, 'F', 144), +(145674, 'Bernice', 1991, 'F', 144), +(145675, 'Brynn', 1991, 'F', 144), +(145676, 'Latia', 1991, 'F', 144), +(145677, 'Unique', 1991, 'F', 144), +(145678, 'Alannah', 1991, 'F', 143), +(145679, 'Ceara', 1991, 'F', 143), +(145680, 'Destini', 1991, 'F', 143), +(145681, 'Francine', 1991, 'F', 143), +(145682, 'Kirby', 1991, 'F', 143), +(145683, 'Nicollette', 1991, 'F', 143), +(145684, 'Sheri', 1991, 'F', 143), +(145685, 'Sinead', 1991, 'F', 143), +(145686, 'Christi', 1991, 'F', 142), +(145687, 'Evan', 1991, 'F', 142), +(145688, 'Joshua', 1991, 'F', 142), +(145689, 'Lakisha', 1991, 'F', 142), +(145690, 'Nicolle', 1991, 'F', 142), +(145691, 'Pearl', 1991, 'F', 142), +(145692, 'Susannah', 1991, 'F', 142), +(145693, 'Alena', 1991, 'F', 141), +(145694, 'Ayesha', 1991, 'F', 141), +(145695, 'Ileana', 1991, 'F', 141), +(145696, 'Jourdan', 1991, 'F', 140), +(145697, 'Kelci', 1991, 'F', 140), +(145698, 'Tierney', 1991, 'F', 140), +(145699, 'Franchesca', 1991, 'F', 139), +(145700, 'Janee', 1991, 'F', 139), +(145701, 'Joselyn', 1991, 'F', 139), +(145702, 'Kayleen', 1991, 'F', 139), +(145703, 'Lynda', 1991, 'F', 139), +(145704, 'Alivia', 1991, 'F', 138), +(145705, 'Colette', 1991, 'F', 138), +(145706, 'Francisca', 1991, 'F', 138), +(145707, 'Frankie', 1991, 'F', 138), +(145708, 'Jeanine', 1991, 'F', 138), +(145709, 'Lilia', 1991, 'F', 138), +(145710, 'Marcy', 1991, 'F', 138), +(145711, 'Shae', 1991, 'F', 138), +(145712, 'Alia', 1991, 'F', 137), +(145713, 'Cinnamon', 1991, 'F', 137), +(145714, 'Jamesha', 1991, 'F', 137), +(145715, 'Maricruz', 1991, 'F', 137), +(145716, 'Eve', 1991, 'F', 136), +(145717, 'Josefina', 1991, 'F', 136), +(145718, 'Juliette', 1991, 'F', 136), +(145719, 'Keira', 1991, 'F', 136), +(145720, 'Lucinda', 1991, 'F', 136), +(145721, 'Ariella', 1991, 'F', 135), +(145722, 'Brigette', 1991, 'F', 135), +(145723, 'Corrie', 1991, 'F', 135), +(145724, 'Dolores', 1991, 'F', 135), +(145725, 'Lakesha', 1991, 'F', 135), +(145726, 'Marley', 1991, 'F', 135), +(145727, 'Misha', 1991, 'F', 135), +(145728, 'Starr', 1991, 'F', 135), +(145729, 'Elsie', 1991, 'F', 134), +(145730, 'Marguerite', 1991, 'F', 134), +(145731, 'Marianna', 1991, 'F', 134), +(145732, 'Valarie', 1991, 'F', 134), +(145733, 'Chante', 1991, 'F', 133), +(145734, 'Jordon', 1991, 'F', 133), +(145735, 'Kyleigh', 1991, 'F', 133), +(145736, 'Lila', 1991, 'F', 133), +(145737, 'Mallorie', 1991, 'F', 133), +(145738, 'Mireya', 1991, 'F', 133), +(145739, 'Shanay', 1991, 'F', 133), +(145740, 'Tamra', 1991, 'F', 133), +(145741, 'Violet', 1991, 'F', 133), +(145742, 'Aerial', 1991, 'F', 132), +(145743, 'Aubrie', 1991, 'F', 132), +(145744, 'Bailee', 1991, 'F', 132), +(145745, 'Brionna', 1991, 'F', 132), +(145746, 'Myriah', 1991, 'F', 132), +(145747, 'Shani', 1991, 'F', 132), +(145748, 'Bethanie', 1991, 'F', 131), +(145749, 'Elana', 1991, 'F', 131), +(145750, 'Lexi', 1991, 'F', 131), +(145751, 'Magan', 1991, 'F', 131), +(145752, 'Rene', 1991, 'F', 131), +(145753, 'Spencer', 1991, 'F', 131), +(145754, 'Stefany', 1991, 'F', 131), +(145755, 'Sydnee', 1991, 'F', 131), +(145756, 'Tenisha', 1991, 'F', 131), +(145757, 'Alondra', 1991, 'F', 130), +(145758, 'Cassaundra', 1991, 'F', 130), +(145759, 'Charlie', 1991, 'F', 130), +(145760, 'Jayne', 1991, 'F', 130), +(145761, 'Amaris', 1991, 'F', 129), +(145762, 'Brigitte', 1991, 'F', 129), +(145763, 'Carson', 1991, 'F', 129), +(145764, 'Felecia', 1991, 'F', 129), +(145765, 'Jazmyne', 1991, 'F', 129), +(145766, 'Joni', 1991, 'F', 129), +(145767, 'Karisa', 1991, 'F', 129), +(145768, 'Malissa', 1991, 'F', 129), +(145769, 'Abril', 1991, 'F', 128), +(145770, 'Audrianna', 1991, 'F', 128), +(145771, 'Aundrea', 1991, 'F', 128), +(145772, 'Haylie', 1991, 'F', 128), +(145773, 'Kenia', 1991, 'F', 128), +(145774, 'Miracle', 1991, 'F', 128), +(145775, 'Natali', 1991, 'F', 128), +(145776, 'Shyla', 1991, 'F', 128), +(145777, 'Chelsee', 1991, 'F', 127), +(145778, 'Danelle', 1991, 'F', 127), +(145779, 'Hazel', 1991, 'F', 127), +(145780, 'Karyn', 1991, 'F', 127), +(145781, 'Lashay', 1991, 'F', 127), +(145782, 'London', 1991, 'F', 127), +(145783, 'Malorie', 1991, 'F', 127), +(145784, 'Priya', 1991, 'F', 127), +(145785, 'Shanita', 1991, 'F', 127), +(145786, 'Alishia', 1991, 'F', 126), +(145787, 'Fantasia', 1991, 'F', 126), +(145788, 'Joslyn', 1991, 'F', 126), +(145789, 'Kiah', 1991, 'F', 126), +(145790, 'Margo', 1991, 'F', 126), +(145791, 'Shakia', 1991, 'F', 126), +(145792, 'Tayla', 1991, 'F', 126), +(145793, 'Thea', 1991, 'F', 126), +(145794, 'Brittnay', 1991, 'F', 125), +(145795, 'Cathleen', 1991, 'F', 125), +(145796, 'Davina', 1991, 'F', 125), +(145797, 'Lashawn', 1991, 'F', 125), +(145798, 'Latesha', 1991, 'F', 125), +(145799, 'Siera', 1991, 'F', 125), +(145800, 'Colby', 1991, 'F', 124), +(145801, 'Corrina', 1991, 'F', 124), +(145802, 'Jeanna', 1991, 'F', 124), +(145803, 'Reagan', 1991, 'F', 124), +(145804, 'Savanah', 1991, 'F', 124), +(145805, 'Stephenie', 1991, 'F', 124), +(145806, 'Yazmin', 1991, 'F', 124), +(145807, 'Ashanti', 1991, 'F', 123), +(145808, 'Elvira', 1991, 'F', 123), +(145809, 'Keosha', 1991, 'F', 123), +(145810, 'Linnea', 1991, 'F', 123), +(145811, 'Marlen', 1991, 'F', 123), +(145812, 'Porsche', 1991, 'F', 123), +(145813, 'Rhianna', 1991, 'F', 123), +(145814, 'Britnee', 1991, 'F', 122), +(145815, 'Cali', 1991, 'F', 122), +(145816, 'Ciarra', 1991, 'F', 122), +(145817, 'Cydney', 1991, 'F', 122), +(145818, 'Estrella', 1991, 'F', 122), +(145819, 'Magali', 1991, 'F', 122), +(145820, 'Mildred', 1991, 'F', 122), +(145821, 'Shantelle', 1991, 'F', 122), +(145822, 'Tatyana', 1991, 'F', 122), +(145823, 'Tesla', 1991, 'F', 122), +(145824, 'Annika', 1991, 'F', 121), +(145825, 'Brea', 1991, 'F', 121), +(145826, 'Caryn', 1991, 'F', 121), +(145827, 'Corinna', 1991, 'F', 121), +(145828, 'Jacy', 1991, 'F', 121), +(145829, 'Jelisa', 1991, 'F', 121), +(145830, 'Kailyn', 1991, 'F', 121), +(145831, 'Sammantha', 1991, 'F', 121), +(145832, 'Becca', 1991, 'F', 120), +(145833, 'Carey', 1991, 'F', 120), +(145834, 'Cheri', 1991, 'F', 120), +(145835, 'Dixie', 1991, 'F', 120), +(145836, 'Farrah', 1991, 'F', 120), +(145837, 'Lillie', 1991, 'F', 120), +(145838, 'Lindy', 1991, 'F', 120), +(145839, 'Malika', 1991, 'F', 120), +(145840, 'Ryann', 1991, 'F', 120), +(145841, 'Brieanna', 1991, 'F', 119), +(145842, 'Markita', 1991, 'F', 119), +(145843, 'Camilla', 1991, 'F', 118), +(145844, 'Ieisha', 1991, 'F', 118), +(145845, 'Lacee', 1991, 'F', 118), +(145846, 'Sheree', 1991, 'F', 118), +(145847, 'Amira', 1991, 'F', 117), +(145848, 'Britta', 1991, 'F', 117), +(145849, 'Chyna', 1991, 'F', 117), +(145850, 'Gail', 1991, 'F', 117), +(145851, 'Jeri', 1991, 'F', 117), +(145852, 'Montana', 1991, 'F', 117), +(145853, 'Shay', 1991, 'F', 117), +(145854, 'Tatum', 1991, 'F', 117), +(145855, 'Yesica', 1991, 'F', 117), +(145856, 'Brandee', 1991, 'F', 116), +(145857, 'Destiney', 1991, 'F', 116), +(145858, 'Dylan', 1991, 'F', 116), +(145859, 'Ivory', 1991, 'F', 116), +(145860, 'Mercedez', 1991, 'F', 116), +(145861, 'Tristan', 1991, 'F', 116), +(145862, 'Valentina', 1991, 'F', 116), +(145863, 'Vicki', 1991, 'F', 116), +(145864, 'Whittney', 1991, 'F', 116), +(145865, 'Alesia', 1991, 'F', 115), +(145866, 'Ami', 1991, 'F', 115), +(145867, 'Arianne', 1991, 'F', 115), +(145868, 'Calli', 1991, 'F', 115), +(145869, 'Charissa', 1991, 'F', 115), +(145870, 'Jackeline', 1991, 'F', 115), +(145871, 'Jazzmine', 1991, 'F', 115), +(145872, 'Josette', 1991, 'F', 115), +(145873, 'Keyana', 1991, 'F', 115), +(145874, 'Lakendra', 1991, 'F', 115), +(145875, 'Rosie', 1991, 'F', 115), +(145876, 'Shanda', 1991, 'F', 115), +(145877, 'Tabetha', 1991, 'F', 115), +(145878, 'Aida', 1991, 'F', 114), +(145879, 'Chanell', 1991, 'F', 114), +(145880, 'Dianne', 1991, 'F', 114), +(145881, 'Ida', 1991, 'F', 114), +(145882, 'Jordin', 1991, 'F', 114), +(145883, 'Keona', 1991, 'F', 114), +(145884, 'Lakeshia', 1991, 'F', 114), +(145885, 'Leona', 1991, 'F', 114), +(145886, 'Pricilla', 1991, 'F', 114), +(145887, 'Raechel', 1991, 'F', 114), +(145888, 'Rayna', 1991, 'F', 114), +(145889, 'Darla', 1991, 'F', 113), +(145890, 'Jazzmin', 1991, 'F', 113), +(145891, 'Jeana', 1991, 'F', 113), +(145892, 'Kalli', 1991, 'F', 113), +(145893, 'Kayle', 1991, 'F', 113), +(145894, 'Marielle', 1991, 'F', 113), +(145895, 'Nakita', 1991, 'F', 113), +(145896, 'Natosha', 1991, 'F', 113), +(145897, 'Rosalyn', 1991, 'F', 113), +(145898, 'Therese', 1991, 'F', 113), +(145899, 'Harmony', 1991, 'F', 112), +(145900, 'Ilana', 1991, 'F', 112), +(145901, 'Johana', 1991, 'F', 112), +(145902, 'Kayce', 1991, 'F', 112), +(145903, 'Kianna', 1991, 'F', 112), +(145904, 'Meghann', 1991, 'F', 112), +(145905, 'Mika', 1991, 'F', 112), +(145906, 'Shanee', 1991, 'F', 112), +(145907, 'Sunny', 1991, 'F', 112), +(145908, 'Yanira', 1991, 'F', 112), +(145909, 'Corie', 1991, 'F', 111), +(145910, 'Elle', 1991, 'F', 111), +(145911, 'Gracie', 1991, 'F', 111), +(145912, 'Latosha', 1991, 'F', 111), +(145913, 'Shannen', 1991, 'F', 111), +(145914, 'Tanika', 1991, 'F', 111), +(145915, 'Cherelle', 1991, 'F', 110), +(145916, 'Greta', 1991, 'F', 110), +(145917, 'June', 1991, 'F', 110), +(145918, 'Lesly', 1991, 'F', 110), +(145919, 'Marah', 1991, 'F', 110), +(145920, 'Marcie', 1991, 'F', 110), +(145921, 'Paulette', 1991, 'F', 110), +(145922, 'Rebecka', 1991, 'F', 110), +(145923, 'Shalonda', 1991, 'F', 110), +(145924, 'Taneisha', 1991, 'F', 110), +(145925, 'Ariane', 1991, 'F', 109), +(145926, 'Audriana', 1991, 'F', 109), +(145927, 'Kindra', 1991, 'F', 109), +(145928, 'Layla', 1991, 'F', 109), +(145929, 'Lois', 1991, 'F', 109), +(145930, 'Maddison', 1991, 'F', 109), +(145931, 'Quanisha', 1991, 'F', 109), +(145932, 'Rhea', 1991, 'F', 109), +(145933, 'Sheryl', 1991, 'F', 109), +(145934, 'Allysa', 1991, 'F', 108), +(145935, 'Annalisa', 1991, 'F', 108), +(145936, 'Ansley', 1991, 'F', 108), +(145937, 'Arika', 1991, 'F', 108), +(145938, 'Belen', 1991, 'F', 108), +(145939, 'Florence', 1991, 'F', 108), +(145940, 'Jeniffer', 1991, 'F', 108), +(145941, 'Kasi', 1991, 'F', 108), +(145942, 'Kendal', 1991, 'F', 108), +(145943, 'Kerrie', 1991, 'F', 108), +(145944, 'Leeanna', 1991, 'F', 108), +(145945, 'Louisa', 1991, 'F', 108), +(145946, 'Tana', 1991, 'F', 108), +(145947, 'Yasmeen', 1991, 'F', 108), +(145948, 'Amara', 1991, 'F', 107), +(145949, 'Babygirl', 1991, 'F', 107), +(145950, 'Juliann', 1991, 'F', 107), +(145951, 'Justin', 1991, 'F', 107), +(145952, 'Kenna', 1991, 'F', 107), +(145953, 'Quinn', 1991, 'F', 107), +(145954, 'Randa', 1991, 'F', 107), +(145955, 'Rosanna', 1991, 'F', 107), +(145956, 'Shasta', 1991, 'F', 107), +(145957, 'Alexi', 1991, 'F', 106), +(145958, 'Annabel', 1991, 'F', 106), +(145959, 'Ashlei', 1991, 'F', 106), +(145960, 'Courtnie', 1991, 'F', 106), +(145961, 'Evelin', 1991, 'F', 106), +(145962, 'Kirsti', 1991, 'F', 106), +(145963, 'Adela', 1991, 'F', 105), +(145964, 'Aleah', 1991, 'F', 105), +(145965, 'Andreina', 1991, 'F', 105), +(145966, 'Jacinda', 1991, 'F', 105), +(145967, 'Janeth', 1991, 'F', 105), +(145968, 'Kierstin', 1991, 'F', 105), +(145969, 'Magaly', 1991, 'F', 105), +(145970, 'Melyssa', 1991, 'F', 105), +(145971, 'Sheridan', 1991, 'F', 105), +(145972, 'Tasia', 1991, 'F', 105), +(145973, 'Addison', 1991, 'F', 104), +(145974, 'Kassi', 1991, 'F', 104), +(145975, 'Kay', 1991, 'F', 104), +(145976, 'Aleisha', 1991, 'F', 103), +(145977, 'Consuelo', 1991, 'F', 103), +(145978, 'Dallas', 1991, 'F', 103), +(145979, 'Dani', 1991, 'F', 103), +(145980, 'Jannette', 1991, 'F', 103), +(145981, 'Keyanna', 1991, 'F', 103), +(145982, 'Ladonna', 1991, 'F', 103), +(145983, 'Patsy', 1991, 'F', 103), +(145984, 'Salena', 1991, 'F', 103), +(145985, 'Samira', 1991, 'F', 103), +(145986, 'Shaniece', 1991, 'F', 103), +(145987, 'Shatara', 1991, 'F', 103), +(145988, 'Sondra', 1991, 'F', 103), +(145989, 'Unnamed', 1991, 'F', 103), +(145990, 'Adria', 1991, 'F', 102), +(145991, 'Anisha', 1991, 'F', 102), +(145992, 'Blaire', 1991, 'F', 102), +(145993, 'Chassidy', 1991, 'F', 102), +(145994, 'Cherise', 1991, 'F', 102), +(145995, 'Ellyn', 1991, 'F', 102), +(145996, 'Erinn', 1991, 'F', 102), +(145997, 'Eugenia', 1991, 'F', 102), +(145998, 'Keeley', 1991, 'F', 102), +(145999, 'Lexus', 1991, 'F', 102), +(146000, 'Lilly', 1991, 'F', 102), +(146001, 'Matthew', 1991, 'F', 102), +(146002, 'Penny', 1991, 'F', 102), +(146003, 'Serina', 1991, 'F', 102), +(146004, 'Sydnie', 1991, 'F', 102), +(146005, 'Tisha', 1991, 'F', 102), +(146006, 'Vannessa', 1991, 'F', 102), +(146007, 'Aaron', 1991, 'F', 101), +(146008, 'Allegra', 1991, 'F', 101), +(146009, 'Anastacia', 1991, 'F', 101), +(146010, 'Aspen', 1991, 'F', 101), +(146011, 'Daisha', 1991, 'F', 101), +(146012, 'Danna', 1991, 'F', 101), +(146013, 'Jaymie', 1991, 'F', 101), +(146014, 'Jessa', 1991, 'F', 101), +(146015, 'Laila', 1991, 'F', 101), +(146016, 'Rae', 1991, 'F', 101), +(146017, 'Shaylee', 1991, 'F', 101), +(146018, 'Diandra', 1991, 'F', 100), +(146019, 'Jacquelynn', 1991, 'F', 100), +(146020, 'Marci', 1991, 'F', 100), +(146021, 'Porscha', 1991, 'F', 100), +(146022, 'Shanel', 1991, 'F', 100), +(146023, 'Shavon', 1991, 'F', 100), +(146024, 'Shyanne', 1991, 'F', 100), +(146025, 'Tonisha', 1991, 'F', 100), +(146026, 'Michael', 1991, 'M', 60781), +(146027, 'Christopher', 1991, 'M', 47099), +(146028, 'Matthew', 1991, 'M', 41633), +(146029, 'Joshua', 1991, 'M', 41217), +(146030, 'Andrew', 1991, 'M', 31524), +(146031, 'Daniel', 1991, 'M', 30909), +(146032, 'James', 1991, 'M', 30501), +(146033, 'David', 1991, 'M', 30414), +(146034, 'Joseph', 1991, 'M', 29835), +(146035, 'John', 1991, 'M', 27798), +(146036, 'Ryan', 1991, 'M', 27533), +(146037, 'Nicholas', 1991, 'M', 27357), +(146038, 'Robert', 1991, 'M', 26827), +(146039, 'Justin', 1991, 'M', 26781), +(146040, 'Brandon', 1991, 'M', 26016), +(146041, 'Tyler', 1991, 'M', 25205), +(146042, 'Jacob', 1991, 'M', 25186), +(146043, 'Anthony', 1991, 'M', 24441), +(146044, 'William', 1991, 'M', 23863), +(146045, 'Jonathan', 1991, 'M', 22971), +(146046, 'Kyle', 1991, 'M', 21611), +(146047, 'Zachary', 1991, 'M', 21382), +(146048, 'Kevin', 1991, 'M', 20258), +(146049, 'Cody', 1991, 'M', 18978), +(146050, 'Eric', 1991, 'M', 18045), +(146051, 'Alexander', 1991, 'M', 17635), +(146052, 'Steven', 1991, 'M', 16853), +(146053, 'Thomas', 1991, 'M', 16780), +(146054, 'Jordan', 1991, 'M', 16013), +(146055, 'Brian', 1991, 'M', 14908), +(146056, 'Aaron', 1991, 'M', 14241), +(146057, 'Timothy', 1991, 'M', 14149), +(146058, 'Benjamin', 1991, 'M', 13871), +(146059, 'Richard', 1991, 'M', 12550), +(146060, 'Patrick', 1991, 'M', 12412), +(146061, 'Adam', 1991, 'M', 12299), +(146062, 'Jose', 1991, 'M', 11718), +(146063, 'Charles', 1991, 'M', 11334), +(146064, 'Samuel', 1991, 'M', 11230), +(146065, 'Sean', 1991, 'M', 11175), +(146066, 'Stephen', 1991, 'M', 10525), +(146067, 'Nathan', 1991, 'M', 10491), +(146068, 'Jeremy', 1991, 'M', 10397), +(146069, 'Travis', 1991, 'M', 10134), +(146070, 'Jeffrey', 1991, 'M', 9895), +(146071, 'Dylan', 1991, 'M', 9761), +(146072, 'Mark', 1991, 'M', 9679), +(146073, 'Christian', 1991, 'M', 9440), +(146074, 'Jason', 1991, 'M', 9378), +(146075, 'Austin', 1991, 'M', 9056), +(146076, 'Jesse', 1991, 'M', 8365), +(146077, 'Taylor', 1991, 'M', 7968), +(146078, 'Paul', 1991, 'M', 7676), +(146079, 'Kenneth', 1991, 'M', 7575), +(146080, 'Gregory', 1991, 'M', 7547), +(146081, 'Dustin', 1991, 'M', 7387), +(146082, 'Scott', 1991, 'M', 7110), +(146083, 'Corey', 1991, 'M', 6925), +(146084, 'Derek', 1991, 'M', 6894), +(146085, 'Juan', 1991, 'M', 6834), +(146086, 'Bryan', 1991, 'M', 6756), +(146087, 'Cameron', 1991, 'M', 6693), +(146088, 'Alex', 1991, 'M', 6672), +(146089, 'Jared', 1991, 'M', 6212), +(146090, 'Ethan', 1991, 'M', 6126), +(146091, 'Luis', 1991, 'M', 5889), +(146092, 'Bradley', 1991, 'M', 5722), +(146093, 'Edward', 1991, 'M', 5571), +(146094, 'Trevor', 1991, 'M', 5528), +(146095, 'Evan', 1991, 'M', 5449), +(146096, 'Shawn', 1991, 'M', 5416), +(146097, 'Carlos', 1991, 'M', 5329), +(146098, 'Ian', 1991, 'M', 5318), +(146099, 'Cory', 1991, 'M', 5121), +(146100, 'Shane', 1991, 'M', 5104), +(146101, 'Marcus', 1991, 'M', 5067), +(146102, 'Peter', 1991, 'M', 4958), +(146103, 'Caleb', 1991, 'M', 4861), +(146104, 'Antonio', 1991, 'M', 4612), +(146105, 'Jesus', 1991, 'M', 4597), +(146106, 'Vincent', 1991, 'M', 4492), +(146107, 'Gabriel', 1991, 'M', 4413), +(146108, 'Devin', 1991, 'M', 4388), +(146109, 'Nathaniel', 1991, 'M', 4368), +(146110, 'Victor', 1991, 'M', 4329), +(146111, 'Blake', 1991, 'M', 4273), +(146112, 'George', 1991, 'M', 4176), +(146113, 'Brett', 1991, 'M', 4152), +(146114, 'Keith', 1991, 'M', 4124), +(146115, 'Casey', 1991, 'M', 4108), +(146116, 'Garrett', 1991, 'M', 4053), +(146117, 'Miguel', 1991, 'M', 3942), +(146118, 'Adrian', 1991, 'M', 3920), +(146119, 'Logan', 1991, 'M', 3891), +(146120, 'Erik', 1991, 'M', 3887), +(146121, 'Mitchell', 1991, 'M', 3880), +(146122, 'Raymond', 1991, 'M', 3861), +(146123, 'Phillip', 1991, 'M', 3848), +(146124, 'Seth', 1991, 'M', 3806), +(146125, 'Joel', 1991, 'M', 3759), +(146126, 'Ronald', 1991, 'M', 3670), +(146127, 'Donald', 1991, 'M', 3647), +(146128, 'Dillon', 1991, 'M', 3633), +(146129, 'Chad', 1991, 'M', 3583), +(146130, 'Spencer', 1991, 'M', 3560), +(146131, 'Wesley', 1991, 'M', 3267), +(146132, 'Lucas', 1991, 'M', 3236), +(146133, 'Chase', 1991, 'M', 3222), +(146134, 'Douglas', 1991, 'M', 3155), +(146135, 'Johnathan', 1991, 'M', 3119), +(146136, 'Derrick', 1991, 'M', 3095), +(146137, 'Jorge', 1991, 'M', 3044), +(146138, 'Luke', 1991, 'M', 3015), +(146139, 'Francisco', 1991, 'M', 2905), +(146140, 'Martin', 1991, 'M', 2893), +(146141, 'Frank', 1991, 'M', 2875), +(146142, 'Ricardo', 1991, 'M', 2848), +(146143, 'Alejandro', 1991, 'M', 2785), +(146144, 'Jake', 1991, 'M', 2770), +(146145, 'Philip', 1991, 'M', 2749), +(146146, 'Dakota', 1991, 'M', 2740), +(146147, 'Julian', 1991, 'M', 2689), +(146148, 'Angel', 1991, 'M', 2686), +(146149, 'Gary', 1991, 'M', 2677), +(146150, 'Jonathon', 1991, 'M', 2601), +(146151, 'Curtis', 1991, 'M', 2589), +(146152, 'Mario', 1991, 'M', 2575), +(146153, 'Alan', 1991, 'M', 2543), +(146154, 'Eduardo', 1991, 'M', 2521), +(146155, 'Isaac', 1991, 'M', 2499), +(146156, 'Manuel', 1991, 'M', 2496), +(146157, 'Devon', 1991, 'M', 2474), +(146158, 'Connor', 1991, 'M', 2461), +(146159, 'Oscar', 1991, 'M', 2444), +(146160, 'Craig', 1991, 'M', 2399), +(146161, 'Dalton', 1991, 'M', 2353), +(146162, 'Troy', 1991, 'M', 2336), +(146163, 'Dennis', 1991, 'M', 2313), +(146164, 'Colin', 1991, 'M', 2294), +(146165, 'Andre', 1991, 'M', 2284), +(146166, 'Tanner', 1991, 'M', 2270), +(146167, 'Edgar', 1991, 'M', 2263), +(146168, 'Henry', 1991, 'M', 2260), +(146169, 'Colton', 1991, 'M', 2246), +(146170, 'Johnny', 1991, 'M', 2246), +(146171, 'Brent', 1991, 'M', 2194), +(146172, 'Brendan', 1991, 'M', 2187), +(146173, 'Randy', 1991, 'M', 2160), +(146174, 'Omar', 1991, 'M', 2135), +(146175, 'Javier', 1991, 'M', 2132), +(146176, 'Jeffery', 1991, 'M', 2122), +(146177, 'Darius', 1991, 'M', 2118), +(146178, 'Roberto', 1991, 'M', 2116), +(146179, 'Allen', 1991, 'M', 2108), +(146180, 'Tony', 1991, 'M', 2099), +(146181, 'Jeremiah', 1991, 'M', 2094), +(146182, 'Larry', 1991, 'M', 2073), +(146183, 'Hector', 1991, 'M', 2037), +(146184, 'Mason', 1991, 'M', 2035), +(146185, 'Jerry', 1991, 'M', 2000), +(146186, 'Mathew', 1991, 'M', 1983), +(146187, 'Cole', 1991, 'M', 1978), +(146188, 'Dominic', 1991, 'M', 1965), +(146189, 'Edwin', 1991, 'M', 1965), +(146190, 'Sergio', 1991, 'M', 1949), +(146191, 'Jack', 1991, 'M', 1945), +(146192, 'Hunter', 1991, 'M', 1925), +(146193, 'Carl', 1991, 'M', 1921), +(146194, 'Fernando', 1991, 'M', 1897), +(146195, 'Dominique', 1991, 'M', 1867), +(146196, 'Ivan', 1991, 'M', 1863), +(146197, 'Clayton', 1991, 'M', 1846), +(146198, 'Danny', 1991, 'M', 1846), +(146199, 'Russell', 1991, 'M', 1833), +(146200, 'Max', 1991, 'M', 1826), +(146201, 'Xavier', 1991, 'M', 1810), +(146202, 'Drew', 1991, 'M', 1804), +(146203, 'Kristopher', 1991, 'M', 1781), +(146204, 'Todd', 1991, 'M', 1743), +(146205, 'Terry', 1991, 'M', 1740), +(146206, 'Grant', 1991, 'M', 1733), +(146207, 'Lawrence', 1991, 'M', 1732), +(146208, 'Ruben', 1991, 'M', 1732), +(146209, 'Bryce', 1991, 'M', 1731), +(146210, 'Jimmy', 1991, 'M', 1730), +(146211, 'Louis', 1991, 'M', 1725), +(146212, 'Levi', 1991, 'M', 1724), +(146213, 'Maxwell', 1991, 'M', 1721), +(146214, 'Calvin', 1991, 'M', 1708), +(146215, 'Albert', 1991, 'M', 1696), +(146216, 'Clinton', 1991, 'M', 1666), +(146217, 'Micheal', 1991, 'M', 1633), +(146218, 'Ricky', 1991, 'M', 1617), +(146219, 'Pedro', 1991, 'M', 1612), +(146220, 'Nicolas', 1991, 'M', 1587), +(146221, 'Marc', 1991, 'M', 1580), +(146222, 'Lance', 1991, 'M', 1573), +(146223, 'Rodney', 1991, 'M', 1560), +(146224, 'Walter', 1991, 'M', 1539), +(146225, 'Alec', 1991, 'M', 1538), +(146226, 'Andres', 1991, 'M', 1522), +(146227, 'Colby', 1991, 'M', 1515), +(146228, 'Marco', 1991, 'M', 1515), +(146229, 'Julio', 1991, 'M', 1512), +(146230, 'Bobby', 1991, 'M', 1508), +(146231, 'Cesar', 1991, 'M', 1508), +(146232, 'Erick', 1991, 'M', 1505), +(146233, 'Isaiah', 1991, 'M', 1491), +(146234, 'Collin', 1991, 'M', 1490), +(146235, 'Randall', 1991, 'M', 1481), +(146236, 'Rafael', 1991, 'M', 1480), +(146237, 'Arthur', 1991, 'M', 1475), +(146238, 'Joe', 1991, 'M', 1464), +(146239, 'Raul', 1991, 'M', 1458), +(146240, 'Ross', 1991, 'M', 1446), +(146241, 'Jaime', 1991, 'M', 1444), +(146242, 'Preston', 1991, 'M', 1425), +(146243, 'Alberto', 1991, 'M', 1418), +(146244, 'Emmanuel', 1991, 'M', 1384), +(146245, 'Billy', 1991, 'M', 1356), +(146246, 'Elijah', 1991, 'M', 1346), +(146247, 'Terrance', 1991, 'M', 1345), +(146248, 'Armando', 1991, 'M', 1336), +(146249, 'Willie', 1991, 'M', 1319), +(146250, 'Noah', 1991, 'M', 1313), +(146251, 'Darren', 1991, 'M', 1306), +(146252, 'Jon', 1991, 'M', 1305), +(146253, 'Maurice', 1991, 'M', 1301), +(146254, 'Lee', 1991, 'M', 1299), +(146255, 'Malcolm', 1991, 'M', 1299), +(146256, 'Roger', 1991, 'M', 1295), +(146257, 'Jamie', 1991, 'M', 1286), +(146258, 'Reginald', 1991, 'M', 1277), +(146259, 'Jay', 1991, 'M', 1266), +(146260, 'Gerald', 1991, 'M', 1258), +(146261, 'Zachery', 1991, 'M', 1248), +(146262, 'Marvin', 1991, 'M', 1193), +(146263, 'Shaun', 1991, 'M', 1187), +(146264, 'Gerardo', 1991, 'M', 1182), +(146265, 'Eddie', 1991, 'M', 1178), +(146266, 'Jackson', 1991, 'M', 1176), +(146267, 'Jessie', 1991, 'M', 1175), +(146268, 'Abraham', 1991, 'M', 1160), +(146269, 'Ramon', 1991, 'M', 1159), +(146270, 'Micah', 1991, 'M', 1137), +(146271, 'Frederick', 1991, 'M', 1134), +(146272, 'Roy', 1991, 'M', 1125), +(146273, 'Bryant', 1991, 'M', 1112), +(146274, 'Jamal', 1991, 'M', 1111), +(146275, 'Tevin', 1991, 'M', 1099), +(146276, 'Theodore', 1991, 'M', 1093), +(146277, 'Deandre', 1991, 'M', 1090), +(146278, 'Trenton', 1991, 'M', 1086), +(146279, 'Johnathon', 1991, 'M', 1068), +(146280, 'Enrique', 1991, 'M', 1065), +(146281, 'Donovan', 1991, 'M', 1058), +(146282, 'Nolan', 1991, 'M', 1055), +(146283, 'Terrence', 1991, 'M', 1053), +(146284, 'Demetrius', 1991, 'M', 1051), +(146285, 'Bruce', 1991, 'M', 1040), +(146286, 'Andy', 1991, 'M', 1039), +(146287, 'Sebastian', 1991, 'M', 1032), +(146288, 'Wayne', 1991, 'M', 1031), +(146289, 'Marcos', 1991, 'M', 1026), +(146290, 'Kaleb', 1991, 'M', 1023), +(146291, 'Darrell', 1991, 'M', 1019), +(146292, 'Branden', 1991, 'M', 1011), +(146293, 'Arturo', 1991, 'M', 1006), +(146294, 'Nickolas', 1991, 'M', 1002), +(146295, 'Darryl', 1991, 'M', 1001), +(146296, 'Harrison', 1991, 'M', 982), +(146297, 'Kody', 1991, 'M', 982), +(146298, 'Miles', 1991, 'M', 980), +(146299, 'Geoffrey', 1991, 'M', 972), +(146300, 'Josue', 1991, 'M', 966), +(146301, 'Marquis', 1991, 'M', 965), +(146302, 'Damian', 1991, 'M', 964), +(146303, 'Trent', 1991, 'M', 960), +(146304, 'Alfredo', 1991, 'M', 958), +(146305, 'Terrell', 1991, 'M', 949), +(146306, 'Tyrone', 1991, 'M', 942), +(146307, 'Hayden', 1991, 'M', 926), +(146308, 'Neil', 1991, 'M', 917), +(146309, 'Jerome', 1991, 'M', 915), +(146310, 'Landon', 1991, 'M', 912), +(146311, 'Ronnie', 1991, 'M', 911), +(146312, 'Byron', 1991, 'M', 907), +(146313, 'Morgan', 1991, 'M', 906), +(146314, 'Tommy', 1991, 'M', 903), +(146315, 'Steve', 1991, 'M', 892), +(146316, 'Damon', 1991, 'M', 888), +(146317, 'Salvador', 1991, 'M', 885), +(146318, 'Parker', 1991, 'M', 883), +(146319, 'Skyler', 1991, 'M', 881), +(146320, 'Diego', 1991, 'M', 876), +(146321, 'Brock', 1991, 'M', 867), +(146322, 'Riley', 1991, 'M', 864), +(146323, 'Franklin', 1991, 'M', 859), +(146324, 'Melvin', 1991, 'M', 853), +(146325, 'Ernest', 1991, 'M', 850), +(146326, 'Marshall', 1991, 'M', 850), +(146327, 'Gavin', 1991, 'M', 848), +(146328, 'Gustavo', 1991, 'M', 848), +(146329, 'Israel', 1991, 'M', 848), +(146330, 'Kendall', 1991, 'M', 843), +(146331, 'Glenn', 1991, 'M', 842), +(146332, 'Lorenzo', 1991, 'M', 839), +(146333, 'Desmond', 1991, 'M', 835), +(146334, 'Kelvin', 1991, 'M', 835), +(146335, 'Rene', 1991, 'M', 834), +(146336, 'Zachariah', 1991, 'M', 833), +(146337, 'Leonard', 1991, 'M', 832), +(146338, 'Francis', 1991, 'M', 824), +(146339, 'Ernesto', 1991, 'M', 821), +(146340, 'Dean', 1991, 'M', 820), +(146341, 'Damien', 1991, 'M', 812), +(146342, 'Karl', 1991, 'M', 810), +(146343, 'Gage', 1991, 'M', 809), +(146344, 'Nelson', 1991, 'M', 807), +(146345, 'Brady', 1991, 'M', 805), +(146346, 'Orlando', 1991, 'M', 787), +(146347, 'Giovanni', 1991, 'M', 780), +(146348, 'Dwayne', 1991, 'M', 779), +(146349, 'Eugene', 1991, 'M', 776), +(146350, 'Zackary', 1991, 'M', 776), +(146351, 'Stanley', 1991, 'M', 774), +(146352, 'Angelo', 1991, 'M', 773), +(146353, 'Chance', 1991, 'M', 767), +(146354, 'Kendrick', 1991, 'M', 763), +(146355, 'Dale', 1991, 'M', 758), +(146356, 'Alexis', 1991, 'M', 757), +(146357, 'Fabian', 1991, 'M', 755), +(146358, 'Kurt', 1991, 'M', 744), +(146359, 'Josiah', 1991, 'M', 737), +(146360, 'Quinton', 1991, 'M', 734), +(146361, 'Jermaine', 1991, 'M', 725), +(146362, 'Tristan', 1991, 'M', 723), +(146363, 'Denzel', 1991, 'M', 719), +(146364, 'Stefan', 1991, 'M', 719), +(146365, 'Jordon', 1991, 'M', 716), +(146366, 'Eli', 1991, 'M', 711), +(146367, 'Pablo', 1991, 'M', 708), +(146368, 'Elias', 1991, 'M', 707), +(146369, 'Wade', 1991, 'M', 702), +(146370, 'Conor', 1991, 'M', 701), +(146371, 'Brennan', 1991, 'M', 698), +(146372, 'Trey', 1991, 'M', 696), +(146373, 'Weston', 1991, 'M', 696), +(146374, 'Alvin', 1991, 'M', 693), +(146375, 'Beau', 1991, 'M', 693), +(146376, 'Dallas', 1991, 'M', 693), +(146377, 'Ray', 1991, 'M', 693), +(146378, 'Jarrod', 1991, 'M', 689), +(146379, 'Gilbert', 1991, 'M', 686), +(146380, 'Harold', 1991, 'M', 683), +(146381, 'Dante', 1991, 'M', 680), +(146382, 'Cristian', 1991, 'M', 670), +(146383, 'Ashton', 1991, 'M', 668), +(146384, 'Keenan', 1991, 'M', 667), +(146385, 'Stuart', 1991, 'M', 666), +(146386, 'Ariel', 1991, 'M', 665), +(146387, 'Joey', 1991, 'M', 652), +(146388, 'Clint', 1991, 'M', 651), +(146389, 'Quentin', 1991, 'M', 651), +(146390, 'Warren', 1991, 'M', 647), +(146391, 'Dominick', 1991, 'M', 644), +(146392, 'Kelly', 1991, 'M', 643), +(146393, 'Harry', 1991, 'M', 633), +(146394, 'Graham', 1991, 'M', 629), +(146395, 'Abel', 1991, 'M', 622), +(146396, 'Forrest', 1991, 'M', 620), +(146397, 'Simon', 1991, 'M', 619), +(146398, 'Ismael', 1991, 'M', 615), +(146399, 'Leonardo', 1991, 'M', 612), +(146400, 'Elliot', 1991, 'M', 608), +(146401, 'Rashad', 1991, 'M', 605), +(146402, 'Allan', 1991, 'M', 601), +(146403, 'Roman', 1991, 'M', 600), +(146404, 'Cedric', 1991, 'M', 598), +(146405, 'Brendon', 1991, 'M', 594), +(146406, 'Saul', 1991, 'M', 592), +(146407, 'Clarence', 1991, 'M', 591), +(146408, 'Emanuel', 1991, 'M', 591), +(146409, 'Sam', 1991, 'M', 590), +(146410, 'Ty', 1991, 'M', 588), +(146411, 'Barry', 1991, 'M', 587), +(146412, 'Clifford', 1991, 'M', 585), +(146413, 'Guillermo', 1991, 'M', 583), +(146414, 'Felix', 1991, 'M', 581), +(146415, 'Leon', 1991, 'M', 580), +(146416, 'Oliver', 1991, 'M', 580), +(146417, 'Dane', 1991, 'M', 579), +(146418, 'Alfred', 1991, 'M', 577), +(146419, 'Felipe', 1991, 'M', 575), +(146420, 'Lewis', 1991, 'M', 574), +(146421, 'Rodolfo', 1991, 'M', 574), +(146422, 'Alfonso', 1991, 'M', 572), +(146423, 'Elliott', 1991, 'M', 571), +(146424, 'Jarrett', 1991, 'M', 570), +(146425, 'Wyatt', 1991, 'M', 569), +(146426, 'Hugo', 1991, 'M', 567), +(146427, 'Brad', 1991, 'M', 566), +(146428, 'Kory', 1991, 'M', 565), +(146429, 'Darnell', 1991, 'M', 564), +(146430, 'Kirk', 1991, 'M', 562), +(146431, 'Ralph', 1991, 'M', 562), +(146432, 'Rudy', 1991, 'M', 561), +(146433, 'Bernard', 1991, 'M', 557), +(146434, 'Emilio', 1991, 'M', 557), +(146435, 'Coty', 1991, 'M', 556), +(146436, 'Corbin', 1991, 'M', 553), +(146437, 'Dexter', 1991, 'M', 553), +(146438, 'Lamar', 1991, 'M', 550), +(146439, 'Kurtis', 1991, 'M', 547), +(146440, 'Sheldon', 1991, 'M', 547), +(146441, 'Zackery', 1991, 'M', 545), +(146442, 'Esteban', 1991, 'M', 540), +(146443, 'Earl', 1991, 'M', 539), +(146444, 'Roderick', 1991, 'M', 539), +(146445, 'Tyrell', 1991, 'M', 539), +(146446, 'Carson', 1991, 'M', 537), +(146447, 'Noel', 1991, 'M', 536), +(146448, 'Courtney', 1991, 'M', 535), +(146449, 'Donte', 1991, 'M', 534), +(146450, 'Gilberto', 1991, 'M', 529), +(146451, 'Myles', 1991, 'M', 529), +(146452, 'Shelby', 1991, 'M', 524), +(146453, 'Jarvis', 1991, 'M', 523), +(146454, 'Norman', 1991, 'M', 519), +(146455, 'Charlie', 1991, 'M', 517), +(146456, 'Antoine', 1991, 'M', 516), +(146457, 'Blaine', 1991, 'M', 516), +(146458, 'Bret', 1991, 'M', 516), +(146459, 'Stephan', 1991, 'M', 516), +(146460, 'Shannon', 1991, 'M', 514), +(146461, 'Demarcus', 1991, 'M', 511), +(146462, 'Julius', 1991, 'M', 511), +(146463, 'Kameron', 1991, 'M', 511), +(146464, 'Chris', 1991, 'M', 509), +(146465, 'Devan', 1991, 'M', 509), +(146466, 'Leo', 1991, 'M', 506), +(146467, 'Moises', 1991, 'M', 501), +(146468, 'Zane', 1991, 'M', 499), +(146469, 'Howard', 1991, 'M', 494), +(146470, 'Tucker', 1991, 'M', 488), +(146471, 'Jarred', 1991, 'M', 486), +(146472, 'Daryl', 1991, 'M', 485), +(146473, 'Davon', 1991, 'M', 483), +(146474, 'Marlon', 1991, 'M', 481), +(146475, 'Jamar', 1991, 'M', 477), +(146476, 'Quinn', 1991, 'M', 476), +(146477, 'Ramiro', 1991, 'M', 476), +(146478, 'Deshawn', 1991, 'M', 474), +(146479, 'Rogelio', 1991, 'M', 474), +(146480, 'Carlton', 1991, 'M', 469), +(146481, 'Conner', 1991, 'M', 468), +(146482, 'Chandler', 1991, 'M', 467), +(146483, 'Dwight', 1991, 'M', 466), +(146484, 'Kasey', 1991, 'M', 466), +(146485, 'Clay', 1991, 'M', 464), +(146486, 'Tyson', 1991, 'M', 464), +(146487, 'Owen', 1991, 'M', 455), +(146488, 'Sterling', 1991, 'M', 454), +(146489, 'Deangelo', 1991, 'M', 453), +(146490, 'Brenden', 1991, 'M', 452), +(146491, 'Kenny', 1991, 'M', 452), +(146492, 'Isiah', 1991, 'M', 449), +(146493, 'Leroy', 1991, 'M', 449), +(146494, 'Chaz', 1991, 'M', 446), +(146495, 'Neal', 1991, 'M', 444), +(146496, 'Keegan', 1991, 'M', 442), +(146497, 'Braden', 1991, 'M', 439), +(146498, 'Wilson', 1991, 'M', 436), +(146499, 'Korey', 1991, 'M', 435), +(146500, 'Alonzo', 1991, 'M', 429), +(146501, 'Perry', 1991, 'M', 427), +(146502, 'Terence', 1991, 'M', 425), +(146503, 'Tomas', 1991, 'M', 425), +(146504, 'Drake', 1991, 'M', 424), +(146505, 'Ali', 1991, 'M', 422), +(146506, 'Derick', 1991, 'M', 420), +(146507, 'Akeem', 1991, 'M', 419), +(146508, 'Nikolas', 1991, 'M', 418), +(146509, 'Glen', 1991, 'M', 416), +(146510, 'Javon', 1991, 'M', 415), +(146511, 'Skylar', 1991, 'M', 415), +(146512, 'Gordon', 1991, 'M', 414), +(146513, 'Kerry', 1991, 'M', 414), +(146514, 'Fredrick', 1991, 'M', 413), +(146515, 'Clifton', 1991, 'M', 411), +(146516, 'Noe', 1991, 'M', 411), +(146517, 'Quincy', 1991, 'M', 409), +(146518, 'Irvin', 1991, 'M', 407), +(146519, 'Avery', 1991, 'M', 400), +(146520, 'Mackenzie', 1991, 'M', 398), +(146521, 'Jayson', 1991, 'M', 394), +(146522, 'Lonnie', 1991, 'M', 394), +(146523, 'Carter', 1991, 'M', 392), +(146524, 'Kadeem', 1991, 'M', 392), +(146525, 'Rolando', 1991, 'M', 392), +(146526, 'Darrin', 1991, 'M', 391), +(146527, 'Efrain', 1991, 'M', 391), +(146528, 'Heath', 1991, 'M', 390), +(146529, 'Nathanael', 1991, 'M', 384), +(146530, 'Tyree', 1991, 'M', 384), +(146531, 'Bryson', 1991, 'M', 383), +(146532, 'Sidney', 1991, 'M', 383), +(146533, 'Tylor', 1991, 'M', 383), +(146534, 'Vernon', 1991, 'M', 382), +(146535, 'Jaron', 1991, 'M', 378), +(146536, 'Kristian', 1991, 'M', 377), +(146537, 'Rodrigo', 1991, 'M', 376), +(146538, 'Lukas', 1991, 'M', 375), +(146539, 'Mike', 1991, 'M', 375), +(146540, 'Salvatore', 1991, 'M', 374), +(146541, 'Raphael', 1991, 'M', 370), +(146542, 'Brenton', 1991, 'M', 369), +(146543, 'Cornelius', 1991, 'M', 369), +(146544, 'Humberto', 1991, 'M', 369), +(146545, 'Marquise', 1991, 'M', 369), +(146546, 'Fred', 1991, 'M', 368), +(146547, 'Jakob', 1991, 'M', 368), +(146548, 'Malik', 1991, 'M', 367), +(146549, 'Reid', 1991, 'M', 367), +(146550, 'Pierre', 1991, 'M', 366), +(146551, 'Dorian', 1991, 'M', 365), +(146552, 'Kent', 1991, 'M', 365), +(146553, 'Frankie', 1991, 'M', 363), +(146554, 'Markus', 1991, 'M', 363), +(146555, 'Rickey', 1991, 'M', 363), +(146556, 'Santiago', 1991, 'M', 363), +(146557, 'Stephon', 1991, 'M', 361), +(146558, 'Adan', 1991, 'M', 359), +(146559, 'Roland', 1991, 'M', 359), +(146560, 'Garret', 1991, 'M', 358), +(146561, 'Tracy', 1991, 'M', 357), +(146562, 'Don', 1991, 'M', 354), +(146563, 'Freddy', 1991, 'M', 354), +(146564, 'Quintin', 1991, 'M', 353), +(146565, 'Ben', 1991, 'M', 351), +(146566, 'Alvaro', 1991, 'M', 350), +(146567, 'Harley', 1991, 'M', 350), +(146568, 'Shayne', 1991, 'M', 350), +(146569, 'Deonte', 1991, 'M', 349), +(146570, 'Darin', 1991, 'M', 346), +(146571, 'Rick', 1991, 'M', 346), +(146572, 'Jamel', 1991, 'M', 345), +(146573, 'Reynaldo', 1991, 'M', 345), +(146574, 'Deon', 1991, 'M', 342), +(146575, 'Lloyd', 1991, 'M', 341), +(146576, 'Antwan', 1991, 'M', 340), +(146577, 'Irving', 1991, 'M', 340), +(146578, 'Moses', 1991, 'M', 338), +(146579, 'Dana', 1991, 'M', 335), +(146580, 'Rory', 1991, 'M', 334), +(146581, 'Duane', 1991, 'M', 333), +(146582, 'Milton', 1991, 'M', 333), +(146583, 'Guy', 1991, 'M', 332), +(146584, 'Kareem', 1991, 'M', 332), +(146585, 'Jace', 1991, 'M', 331), +(146586, 'Mauricio', 1991, 'M', 327), +(146587, 'Mohammad', 1991, 'M', 324), +(146588, 'Cortez', 1991, 'M', 323), +(146589, 'Arnold', 1991, 'M', 322), +(146590, 'Kyler', 1991, 'M', 322), +(146591, 'Rico', 1991, 'M', 319), +(146592, 'Nigel', 1991, 'M', 317), +(146593, 'Kristofer', 1991, 'M', 316), +(146594, 'Lamont', 1991, 'M', 315), +(146595, 'Baby', 1991, 'M', 314), +(146596, 'Mitchel', 1991, 'M', 313), +(146597, 'Damion', 1991, 'M', 312), +(146598, 'Brice', 1991, 'M', 310), +(146599, 'Jimmie', 1991, 'M', 310), +(146600, 'Gerard', 1991, 'M', 308), +(146601, 'Leonel', 1991, 'M', 307), +(146602, 'Jean', 1991, 'M', 306), +(146603, 'Robin', 1991, 'M', 306), +(146604, 'Vicente', 1991, 'M', 306), +(146605, 'Gene', 1991, 'M', 305), +(146606, 'German', 1991, 'M', 304), +(146607, 'Clark', 1991, 'M', 303), +(146608, 'Darrius', 1991, 'M', 303), +(146609, 'Keaton', 1991, 'M', 303), +(146610, 'Colten', 1991, 'M', 302), +(146611, 'Daquan', 1991, 'M', 300), +(146612, 'Nestor', 1991, 'M', 300), +(146613, 'Unknown', 1991, 'M', 299), +(146614, 'Dion', 1991, 'M', 298), +(146615, 'Davis', 1991, 'M', 297), +(146616, 'Everett', 1991, 'M', 297), +(146617, 'Paris', 1991, 'M', 296), +(146618, 'Will', 1991, 'M', 295), +(146619, 'Ahmad', 1991, 'M', 293), +(146620, 'Johnnie', 1991, 'M', 293), +(146621, 'Jerrod', 1991, 'M', 292), +(146622, 'Marcel', 1991, 'M', 291), +(146623, 'Winston', 1991, 'M', 290), +(146624, 'Lane', 1991, 'M', 289), +(146625, 'Loren', 1991, 'M', 289), +(146626, 'Aron', 1991, 'M', 287), +(146627, 'Conrad', 1991, 'M', 287), +(146628, 'Lester', 1991, 'M', 286), +(146629, 'Herbert', 1991, 'M', 285), +(146630, 'Bo', 1991, 'M', 282), +(146631, 'Freddie', 1991, 'M', 282), +(146632, 'Jaquan', 1991, 'M', 281), +(146633, 'Jamison', 1991, 'M', 280), +(146634, 'Issac', 1991, 'M', 279), +(146635, 'Leslie', 1991, 'M', 279), +(146636, 'Dashawn', 1991, 'M', 278), +(146637, 'Ignacio', 1991, 'M', 278), +(146638, 'Bradford', 1991, 'M', 277), +(146639, 'Jameson', 1991, 'M', 277), +(146640, 'Reed', 1991, 'M', 276), +(146641, 'Stewart', 1991, 'M', 275), +(146642, 'Reuben', 1991, 'M', 274), +(146643, 'Thaddeus', 1991, 'M', 274), +(146644, 'Darian', 1991, 'M', 271), +(146645, 'Liam', 1991, 'M', 270); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(146646, 'Donnie', 1991, 'M', 269), +(146647, 'Guadalupe', 1991, 'M', 269), +(146648, 'Herman', 1991, 'M', 269), +(146649, 'Blair', 1991, 'M', 267), +(146650, 'Cooper', 1991, 'M', 267), +(146651, 'Leland', 1991, 'M', 267), +(146652, 'Dewayne', 1991, 'M', 265), +(146653, 'Rigoberto', 1991, 'M', 262), +(146654, 'Solomon', 1991, 'M', 261), +(146655, 'Agustin', 1991, 'M', 260), +(146656, 'Devonte', 1991, 'M', 260), +(146657, 'Jackie', 1991, 'M', 260), +(146658, 'Jovan', 1991, 'M', 260), +(146659, 'Nathanial', 1991, 'M', 260), +(146660, 'Griffin', 1991, 'M', 259), +(146661, 'Nico', 1991, 'M', 259), +(146662, 'Sage', 1991, 'M', 257), +(146663, 'Toby', 1991, 'M', 257), +(146664, 'Joaquin', 1991, 'M', 256), +(146665, 'Amir', 1991, 'M', 255), +(146666, 'Ezekiel', 1991, 'M', 255), +(146667, 'Jamaal', 1991, 'M', 255), +(146668, 'Jeff', 1991, 'M', 254), +(146669, 'Arron', 1991, 'M', 251), +(146670, 'Brandan', 1991, 'M', 251), +(146671, 'Jasper', 1991, 'M', 251), +(146672, 'Mohammed', 1991, 'M', 251), +(146673, 'Floyd', 1991, 'M', 247), +(146674, 'Jonah', 1991, 'M', 246), +(146675, 'Trevon', 1991, 'M', 244), +(146676, 'Addison', 1991, 'M', 243), +(146677, 'Chadwick', 1991, 'M', 243), +(146678, 'Sammy', 1991, 'M', 243), +(146679, 'Vance', 1991, 'M', 243), +(146680, 'Hakeem', 1991, 'M', 241), +(146681, 'Uriel', 1991, 'M', 239), +(146682, 'Grayson', 1991, 'M', 238), +(146683, 'Ryne', 1991, 'M', 238), +(146684, 'Heriberto', 1991, 'M', 237), +(146685, 'Sonny', 1991, 'M', 237), +(146686, 'Duncan', 1991, 'M', 234), +(146687, 'Holden', 1991, 'M', 234), +(146688, 'Anton', 1991, 'M', 232), +(146689, 'Bennett', 1991, 'M', 231), +(146690, 'Brody', 1991, 'M', 231), +(146691, 'Adolfo', 1991, 'M', 230), +(146692, 'Braxton', 1991, 'M', 230), +(146693, 'Osvaldo', 1991, 'M', 230), +(146694, 'Infant', 1991, 'M', 229), +(146695, 'Myron', 1991, 'M', 229), +(146696, 'Dan', 1991, 'M', 228), +(146697, 'Demario', 1991, 'M', 228), +(146698, 'Austen', 1991, 'M', 227), +(146699, 'Jarod', 1991, 'M', 227), +(146700, 'Dandre', 1991, 'M', 225), +(146701, 'Donavan', 1991, 'M', 224), +(146702, 'Jairo', 1991, 'M', 224), +(146703, 'Jefferson', 1991, 'M', 224), +(146704, 'Male', 1991, 'M', 223), +(146705, 'Randolph', 1991, 'M', 223), +(146706, 'Dillan', 1991, 'M', 222), +(146707, 'Alton', 1991, 'M', 221), +(146708, 'Dominque', 1991, 'M', 220), +(146709, 'Rex', 1991, 'M', 220), +(146710, 'Houston', 1991, 'M', 218), +(146711, 'Cecil', 1991, 'M', 217), +(146712, 'Deven', 1991, 'M', 217), +(146713, 'Raheem', 1991, 'M', 217), +(146714, 'Octavio', 1991, 'M', 215), +(146715, 'Santos', 1991, 'M', 215), +(146716, 'Jamil', 1991, 'M', 214), +(146717, 'Brooks', 1991, 'M', 213), +(146718, 'Bryon', 1991, 'M', 213), +(146719, 'Ladarius', 1991, 'M', 213), +(146720, 'Rusty', 1991, 'M', 212), +(146721, 'Travon', 1991, 'M', 212), +(146722, 'Jerrell', 1991, 'M', 211), +(146723, 'Rashawn', 1991, 'M', 211), +(146724, 'Elmer', 1991, 'M', 210), +(146725, 'Chester', 1991, 'M', 209), +(146726, 'Codie', 1991, 'M', 208), +(146727, 'Rocky', 1991, 'M', 208), +(146728, 'Brandyn', 1991, 'M', 207), +(146729, 'Donnell', 1991, 'M', 207), +(146730, 'Bradly', 1991, 'M', 206), +(146731, 'Codey', 1991, 'M', 206), +(146732, 'Gunnar', 1991, 'M', 206), +(146733, 'Kolby', 1991, 'M', 205), +(146734, 'Kiefer', 1991, 'M', 204), +(146735, 'Lionel', 1991, 'M', 204), +(146736, 'Trever', 1991, 'M', 204), +(146737, 'Jody', 1991, 'M', 202), +(146738, 'Laquan', 1991, 'M', 202), +(146739, 'Benny', 1991, 'M', 201), +(146740, 'Colt', 1991, 'M', 201), +(146741, 'Mohamed', 1991, 'M', 201), +(146742, 'Garth', 1991, 'M', 200), +(146743, 'Tory', 1991, 'M', 200), +(146744, 'Cullen', 1991, 'M', 198), +(146745, 'Shaquille', 1991, 'M', 198), +(146746, 'Edgardo', 1991, 'M', 197), +(146747, 'Kwame', 1991, 'M', 196), +(146748, 'Aric', 1991, 'M', 195), +(146749, 'Coleman', 1991, 'M', 195), +(146750, 'Ahmed', 1991, 'M', 194), +(146751, 'Amos', 1991, 'M', 194), +(146752, 'Dimitri', 1991, 'M', 194), +(146753, 'Royce', 1991, 'M', 194), +(146754, 'Bernardo', 1991, 'M', 193), +(146755, 'Elvis', 1991, 'M', 193), +(146756, 'Erich', 1991, 'M', 193), +(146757, 'Wendell', 1991, 'M', 193), +(146758, 'Maximilian', 1991, 'M', 192), +(146759, 'Nick', 1991, 'M', 192), +(146760, 'Tom', 1991, 'M', 192), +(146761, 'Moshe', 1991, 'M', 191), +(146762, 'Tobias', 1991, 'M', 191), +(146763, 'Aubrey', 1991, 'M', 190), +(146764, 'Estevan', 1991, 'M', 190), +(146765, 'Harvey', 1991, 'M', 190), +(146766, 'Ellis', 1991, 'M', 189), +(146767, 'Kellen', 1991, 'M', 189), +(146768, 'Cruz', 1991, 'M', 188), +(146769, 'Demarco', 1991, 'M', 188), +(146770, 'Clyde', 1991, 'M', 187), +(146771, 'Kelby', 1991, 'M', 187), +(146772, 'Dillion', 1991, 'M', 186), +(146773, 'Kelsey', 1991, 'M', 186), +(146774, 'Mikel', 1991, 'M', 186), +(146775, 'Gino', 1991, 'M', 185), +(146776, 'Ezra', 1991, 'M', 184), +(146777, 'Morris', 1991, 'M', 184), +(146778, 'Otis', 1991, 'M', 184), +(146779, 'Gonzalo', 1991, 'M', 183), +(146780, 'Jess', 1991, 'M', 183), +(146781, 'Jim', 1991, 'M', 183), +(146782, 'Sherman', 1991, 'M', 183), +(146783, 'Josh', 1991, 'M', 181), +(146784, 'Shea', 1991, 'M', 181), +(146785, 'Spenser', 1991, 'M', 181), +(146786, 'Vaughn', 1991, 'M', 181), +(146787, 'Ashley', 1991, 'M', 180), +(146788, 'Dario', 1991, 'M', 180), +(146789, 'Randal', 1991, 'M', 180), +(146790, 'Stevie', 1991, 'M', 179), +(146791, 'Barrett', 1991, 'M', 178), +(146792, 'Darien', 1991, 'M', 178), +(146793, 'Darrel', 1991, 'M', 178), +(146794, 'Keon', 1991, 'M', 178), +(146795, 'Lyle', 1991, 'M', 178), +(146796, 'Kirby', 1991, 'M', 177), +(146797, 'Greg', 1991, 'M', 176), +(146798, 'Hugh', 1991, 'M', 176), +(146799, 'Madison', 1991, 'M', 176), +(146800, 'Martez', 1991, 'M', 176), +(146801, 'Ted', 1991, 'M', 176), +(146802, 'Walker', 1991, 'M', 176), +(146803, 'Antwon', 1991, 'M', 175), +(146804, 'Zechariah', 1991, 'M', 175), +(146805, 'Erin', 1991, 'M', 174), +(146806, 'Darion', 1991, 'M', 173), +(146807, 'Efren', 1991, 'M', 173), +(146808, 'Benito', 1991, 'M', 171), +(146809, 'Derik', 1991, 'M', 171), +(146810, 'Hassan', 1991, 'M', 171), +(146811, 'Ulises', 1991, 'M', 171), +(146812, 'Dusty', 1991, 'M', 170), +(146813, 'Fidel', 1991, 'M', 170), +(146814, 'Niko', 1991, 'M', 170), +(146815, 'Aldo', 1991, 'M', 169), +(146816, 'Asa', 1991, 'M', 169), +(146817, 'Cristopher', 1991, 'M', 169), +(146818, 'Dylon', 1991, 'M', 169), +(146819, 'Bronson', 1991, 'M', 168), +(146820, 'Garrick', 1991, 'M', 168), +(146821, 'Gregorio', 1991, 'M', 168), +(146822, 'Aidan', 1991, 'M', 167), +(146823, 'Pete', 1991, 'M', 167), +(146824, 'Antony', 1991, 'M', 166), +(146825, 'Dontae', 1991, 'M', 166), +(146826, 'Reece', 1991, 'M', 166), +(146827, 'Rodrick', 1991, 'M', 166), +(146828, 'Isaias', 1991, 'M', 165), +(146829, 'Wilfredo', 1991, 'M', 165), +(146830, 'Cyrus', 1991, 'M', 164), +(146831, 'Jamarcus', 1991, 'M', 164), +(146832, 'Cordell', 1991, 'M', 163), +(146833, 'Ervin', 1991, 'M', 163), +(146834, 'Ezequiel', 1991, 'M', 163), +(146835, 'Garry', 1991, 'M', 163), +(146836, 'Payton', 1991, 'M', 163), +(146837, 'Tyron', 1991, 'M', 163), +(146838, 'Willis', 1991, 'M', 163), +(146839, 'Camron', 1991, 'M', 162), +(146840, 'Daron', 1991, 'M', 162), +(146841, 'Jonas', 1991, 'M', 162), +(146842, 'Hans', 1991, 'M', 161), +(146843, 'Shelton', 1991, 'M', 160), +(146844, 'Brennen', 1991, 'M', 159), +(146845, 'Julien', 1991, 'M', 159), +(146846, 'Justen', 1991, 'M', 159), +(146847, 'Marques', 1991, 'M', 159), +(146848, 'Ulysses', 1991, 'M', 159), +(146849, 'Junior', 1991, 'M', 158), +(146850, 'Rakeem', 1991, 'M', 158), +(146851, 'Jabari', 1991, 'M', 157), +(146852, 'Anderson', 1991, 'M', 156), +(146853, 'Ari', 1991, 'M', 156), +(146854, 'Galen', 1991, 'M', 156), +(146855, 'Kevon', 1991, 'M', 156), +(146856, 'Kai', 1991, 'M', 155), +(146857, 'Ron', 1991, 'M', 155), +(146858, 'Jacques', 1991, 'M', 154), +(146859, 'Josef', 1991, 'M', 154), +(146860, 'Kegan', 1991, 'M', 154), +(146861, 'Khalil', 1991, 'M', 154), +(146862, 'Shay', 1991, 'M', 154), +(146863, 'August', 1991, 'M', 153), +(146864, 'Carlo', 1991, 'M', 153), +(146865, 'Lincoln', 1991, 'M', 153), +(146866, 'Jessy', 1991, 'M', 152), +(146867, 'Kenton', 1991, 'M', 152), +(146868, 'Timmy', 1991, 'M', 152), +(146869, 'Westley', 1991, 'M', 152), +(146870, 'Alonso', 1991, 'M', 151), +(146871, 'Axel', 1991, 'M', 151), +(146872, 'Darrick', 1991, 'M', 151), +(146873, 'Jorden', 1991, 'M', 151), +(146874, 'Scotty', 1991, 'M', 151), +(146875, 'Stacy', 1991, 'M', 151), +(146876, 'Storm', 1991, 'M', 151), +(146877, 'Teddy', 1991, 'M', 151), +(146878, 'Domonique', 1991, 'M', 150), +(146879, 'Jacoby', 1991, 'M', 150), +(146880, 'Raymundo', 1991, 'M', 150), +(146881, 'Jade', 1991, 'M', 149), +(146882, 'Malachi', 1991, 'M', 149), +(146883, 'Marty', 1991, 'M', 149), +(146884, 'Najee', 1991, 'M', 149), +(146885, 'Robbie', 1991, 'M', 149), +(146886, 'Virgil', 1991, 'M', 149), +(146887, 'Alexandro', 1991, 'M', 148), +(146888, 'Cale', 1991, 'M', 148), +(146889, 'Codi', 1991, 'M', 148), +(146890, 'Ira', 1991, 'M', 148), +(146891, 'Nikko', 1991, 'M', 148), +(146892, 'Edmund', 1991, 'M', 147), +(146893, 'Garrison', 1991, 'M', 147), +(146894, 'Jerald', 1991, 'M', 147), +(146895, 'Claude', 1991, 'M', 146), +(146896, 'Hernan', 1991, 'M', 146), +(146897, 'Keven', 1991, 'M', 146), +(146898, 'Mickey', 1991, 'M', 146), +(146899, 'Augustus', 1991, 'M', 145), +(146900, 'Eddy', 1991, 'M', 144), +(146901, 'Garett', 1991, 'M', 144), +(146902, 'Jaleel', 1991, 'M', 144), +(146903, 'Louie', 1991, 'M', 144), +(146904, 'Luther', 1991, 'M', 144), +(146905, 'Marion', 1991, 'M', 144), +(146906, 'Tavon', 1991, 'M', 144), +(146907, 'Davion', 1991, 'M', 143), +(146908, 'Brayden', 1991, 'M', 142), +(146909, 'Cade', 1991, 'M', 142), +(146910, 'Cary', 1991, 'M', 142), +(146911, 'Darwin', 1991, 'M', 142), +(146912, 'Isidro', 1991, 'M', 142), +(146913, 'Torrey', 1991, 'M', 142), +(146914, 'Broderick', 1991, 'M', 141), +(146915, 'Donta', 1991, 'M', 141), +(146916, 'Pierce', 1991, 'M', 140), +(146917, 'Dejuan', 1991, 'M', 139), +(146918, 'Dereck', 1991, 'M', 139), +(146919, 'Elisha', 1991, 'M', 139), +(146920, 'Tommie', 1991, 'M', 139), +(146921, 'Trace', 1991, 'M', 139), +(146922, 'Francesco', 1991, 'M', 138), +(146923, 'Malcom', 1991, 'M', 138), +(146924, 'Rhett', 1991, 'M', 138), +(146925, 'Wallace', 1991, 'M', 138), +(146926, 'Federico', 1991, 'M', 137), +(146927, 'Stacey', 1991, 'M', 137), +(146928, 'Dionte', 1991, 'M', 136), +(146929, 'Davin', 1991, 'M', 135), +(146930, 'Prince', 1991, 'M', 135), +(146931, 'Sylvester', 1991, 'M', 135), +(146932, 'Keenen', 1991, 'M', 134), +(146933, 'Valentin', 1991, 'M', 134), +(146934, 'Abram', 1991, 'M', 133), +(146935, 'Britton', 1991, 'M', 133), +(146936, 'Dave', 1991, 'M', 133), +(146937, 'Denzell', 1991, 'M', 133), +(146938, 'Silas', 1991, 'M', 133), +(146939, 'Dijon', 1991, 'M', 132), +(146940, 'Jerod', 1991, 'M', 132), +(146941, 'Khiry', 1991, 'M', 132), +(146942, 'Roosevelt', 1991, 'M', 132), +(146943, 'Carey', 1991, 'M', 131), +(146944, 'Dangelo', 1991, 'M', 131), +(146945, 'Daren', 1991, 'M', 131), +(146946, 'Devante', 1991, 'M', 131), +(146947, 'Emmett', 1991, 'M', 131), +(146948, 'Forest', 1991, 'M', 131), +(146949, 'Keifer', 1991, 'M', 131), +(146950, 'Reese', 1991, 'M', 131), +(146951, 'Titus', 1991, 'M', 131), +(146952, 'Zakary', 1991, 'M', 131), +(146953, 'Andreas', 1991, 'M', 130), +(146954, 'Grady', 1991, 'M', 130), +(146955, 'Remington', 1991, 'M', 130), +(146956, 'Rudolph', 1991, 'M', 130), +(146957, 'Tariq', 1991, 'M', 130), +(146958, 'Tate', 1991, 'M', 130), +(146959, 'Marquez', 1991, 'M', 129), +(146960, 'Ramsey', 1991, 'M', 129), +(146961, 'Alexandre', 1991, 'M', 128), +(146962, 'Bill', 1991, 'M', 128), +(146963, 'Schuyler', 1991, 'M', 128), +(146964, 'Bennie', 1991, 'M', 127), +(146965, 'Chaim', 1991, 'M', 127), +(146966, 'Ken', 1991, 'M', 127), +(146967, 'Laron', 1991, 'M', 127), +(146968, 'Vince', 1991, 'M', 127), +(146969, 'Babyboy', 1991, 'M', 126), +(146970, 'Coby', 1991, 'M', 126), +(146971, 'Earnest', 1991, 'M', 126), +(146972, 'Edwardo', 1991, 'M', 126), +(146973, 'Erwin', 1991, 'M', 126), +(146974, 'Jerel', 1991, 'M', 126), +(146975, 'Octavius', 1991, 'M', 126), +(146976, 'Peyton', 1991, 'M', 126), +(146977, 'Sawyer', 1991, 'M', 126), +(146978, 'Waylon', 1991, 'M', 126), +(146979, 'Abdul', 1991, 'M', 125), +(146980, 'Domingo', 1991, 'M', 125), +(146981, 'Jeromy', 1991, 'M', 125), +(146982, 'Rayshawn', 1991, 'M', 125), +(146983, 'Desean', 1991, 'M', 124), +(146984, 'Giancarlo', 1991, 'M', 124), +(146985, 'Stetson', 1991, 'M', 124), +(146986, 'Talon', 1991, 'M', 124), +(146987, 'Tyrel', 1991, 'M', 123), +(146988, 'Brant', 1991, 'M', 122), +(146989, 'Camden', 1991, 'M', 122), +(146990, 'Denis', 1991, 'M', 122), +(146991, 'Deonta', 1991, 'M', 122), +(146992, 'Jory', 1991, 'M', 122), +(146993, 'Deron', 1991, 'M', 121), +(146994, 'Jessica', 1991, 'M', 121), +(146995, 'Kendal', 1991, 'M', 121), +(146996, 'Kolton', 1991, 'M', 121), +(146997, 'Cheyenne', 1991, 'M', 120), +(146998, 'Deontae', 1991, 'M', 120), +(146999, 'Deshaun', 1991, 'M', 120), +(147000, 'Eliseo', 1991, 'M', 120), +(147001, 'Ibrahim', 1991, 'M', 120), +(147002, 'Justyn', 1991, 'M', 120), +(147003, 'Unnamed', 1991, 'M', 120), +(147004, 'Cedrick', 1991, 'M', 119), +(147005, 'Channing', 1991, 'M', 119), +(147006, 'Dejon', 1991, 'M', 119), +(147007, 'Jarrell', 1991, 'M', 119), +(147008, 'Jerad', 1991, 'M', 119), +(147009, 'Reggie', 1991, 'M', 119), +(147010, 'Samir', 1991, 'M', 119), +(147011, 'Bilal', 1991, 'M', 118), +(147012, 'Cristobal', 1991, 'M', 118), +(147013, 'Denver', 1991, 'M', 118), +(147014, 'Montrell', 1991, 'M', 118), +(147015, 'Courtland', 1991, 'M', 117), +(147016, 'Deante', 1991, 'M', 117), +(147017, 'Jeffry', 1991, 'M', 117), +(147018, 'Kendell', 1991, 'M', 117), +(147019, 'Misael', 1991, 'M', 117), +(147020, 'Orion', 1991, 'M', 117), +(147021, 'Dequan', 1991, 'M', 116), +(147022, 'Laurence', 1991, 'M', 116), +(147023, 'Torey', 1991, 'M', 116), +(147024, 'Armand', 1991, 'M', 115), +(147025, 'Deric', 1991, 'M', 115), +(147026, 'Derrek', 1991, 'M', 115), +(147027, 'Jedidiah', 1991, 'M', 115), +(147028, 'Joseluis', 1991, 'M', 115), +(147029, 'Lazaro', 1991, 'M', 115), +(147030, 'Quinten', 1991, 'M', 115), +(147031, 'Tyshawn', 1991, 'M', 115), +(147032, 'Aurelio', 1991, 'M', 114), +(147033, 'Denny', 1991, 'M', 114), +(147034, 'Kristoffer', 1991, 'M', 114), +(147035, 'London', 1991, 'M', 114), +(147036, 'Marlin', 1991, 'M', 114), +(147037, 'Nathen', 1991, 'M', 114), +(147038, 'Cornell', 1991, 'M', 113), +(147039, 'Dayton', 1991, 'M', 113), +(147040, 'Syed', 1991, 'M', 113), +(147041, 'Derrell', 1991, 'M', 112), +(147042, 'Horace', 1991, 'M', 112), +(147043, 'Jaymes', 1991, 'M', 112), +(147044, 'Mack', 1991, 'M', 112), +(147045, 'Muhammad', 1991, 'M', 112), +(147046, 'Mychal', 1991, 'M', 112), +(147047, 'Patric', 1991, 'M', 112), +(147048, 'Rey', 1991, 'M', 112), +(147049, 'Adalberto', 1991, 'M', 111), +(147050, 'Brandin', 1991, 'M', 111), +(147051, 'Elvin', 1991, 'M', 111), +(147052, 'Monte', 1991, 'M', 111), +(147053, 'Rashaad', 1991, 'M', 111), +(147054, 'Van', 1991, 'M', 111), +(147055, 'Alphonso', 1991, 'M', 110), +(147056, 'Darron', 1991, 'M', 110), +(147057, 'Genaro', 1991, 'M', 110), +(147058, 'Harris', 1991, 'M', 110), +(147059, 'Jelani', 1991, 'M', 110), +(147060, 'Khalid', 1991, 'M', 110), +(147061, 'Montez', 1991, 'M', 110), +(147062, 'Tad', 1991, 'M', 110), +(147063, 'Augustine', 1991, 'M', 108), +(147064, 'Donavon', 1991, 'M', 108), +(147065, 'Samson', 1991, 'M', 108), +(147066, 'Scottie', 1991, 'M', 108), +(147067, 'Tre', 1991, 'M', 108), +(147068, 'Deanthony', 1991, 'M', 107), +(147069, 'Kalvin', 1991, 'M', 107), +(147070, 'Mariano', 1991, 'M', 107), +(147071, 'Robby', 1991, 'M', 107), +(147072, 'Adonis', 1991, 'M', 106), +(147073, 'Dallin', 1991, 'M', 106), +(147074, 'Emerson', 1991, 'M', 106), +(147075, 'Martell', 1991, 'M', 106), +(147076, 'Rocco', 1991, 'M', 106), +(147077, 'Trae', 1991, 'M', 106), +(147078, 'Tyquan', 1991, 'M', 106), +(147079, 'Asher', 1991, 'M', 105), +(147080, 'Giovanny', 1991, 'M', 105), +(147081, 'Gregg', 1991, 'M', 105), +(147082, 'Jarell', 1991, 'M', 105), +(147083, 'Kelton', 1991, 'M', 105), +(147084, 'Kieran', 1991, 'M', 105), +(147085, 'Marcell', 1991, 'M', 105), +(147086, 'Marcelo', 1991, 'M', 105), +(147087, 'Nicholaus', 1991, 'M', 105), +(147088, 'Vincenzo', 1991, 'M', 105), +(147089, 'Domenic', 1991, 'M', 104), +(147090, 'Eloy', 1991, 'M', 104), +(147091, 'Jayme', 1991, 'M', 104), +(147092, 'Jeramy', 1991, 'M', 104), +(147093, 'Marcellus', 1991, 'M', 104), +(147094, 'Tayler', 1991, 'M', 104), +(147095, 'Wilbert', 1991, 'M', 104), +(147096, 'Arnulfo', 1991, 'M', 103), +(147097, 'Everardo', 1991, 'M', 103), +(147098, 'Greggory', 1991, 'M', 103), +(147099, 'Jeremey', 1991, 'M', 103), +(147100, 'Justice', 1991, 'M', 103), +(147101, 'Nicklaus', 1991, 'M', 103), +(147102, 'Cassidy', 1991, 'M', 102), +(147103, 'Dedrick', 1991, 'M', 102), +(147104, 'Derrik', 1991, 'M', 102), +(147105, 'Jered', 1991, 'M', 102), +(147106, 'Kane', 1991, 'M', 102), +(147107, 'Terell', 1991, 'M', 102), +(147108, 'Tremaine', 1991, 'M', 102), +(147109, 'Cordero', 1991, 'M', 101), +(147110, 'Jan', 1991, 'M', 101), +(147111, 'Joesph', 1991, 'M', 101), +(147112, 'Bailey', 1991, 'M', 100), +(147113, 'Braulio', 1991, 'M', 100), +(147114, 'Jermey', 1991, 'M', 100), +(147115, 'Nevin', 1991, 'M', 100), +(147116, 'Rasheed', 1991, 'M', 100), +(147117, 'Sunny', 1991, 'M', 100), +(147118, 'Theron', 1991, 'M', 100), +(147119, 'Yosef', 1991, 'M', 100), +(147120, 'Ashley', 1992, 'F', 38453), +(147121, 'Jessica', 1992, 'F', 38351), +(147122, 'Amanda', 1992, 'F', 25034), +(147123, 'Brittany', 1992, 'F', 24976), +(147124, 'Sarah', 1992, 'F', 24632), +(147125, 'Samantha', 1992, 'F', 24402), +(147126, 'Emily', 1992, 'F', 21832), +(147127, 'Stephanie', 1992, 'F', 19669), +(147128, 'Elizabeth', 1992, 'F', 19028), +(147129, 'Megan', 1992, 'F', 17844), +(147130, 'Jennifer', 1992, 'F', 17817), +(147131, 'Lauren', 1992, 'F', 17214), +(147132, 'Kayla', 1992, 'F', 16515), +(147133, 'Nicole', 1992, 'F', 16320), +(147134, 'Chelsea', 1992, 'F', 16174), +(147135, 'Rachel', 1992, 'F', 15831), +(147136, 'Taylor', 1992, 'F', 14950), +(147137, 'Danielle', 1992, 'F', 14095), +(147138, 'Amber', 1992, 'F', 13914), +(147139, 'Rebecca', 1992, 'F', 13108), +(147140, 'Courtney', 1992, 'F', 12602), +(147141, 'Victoria', 1992, 'F', 11904), +(147142, 'Kelsey', 1992, 'F', 11715), +(147143, 'Melissa', 1992, 'F', 11709), +(147144, 'Michelle', 1992, 'F', 11507), +(147145, 'Hannah', 1992, 'F', 11493), +(147146, 'Katherine', 1992, 'F', 11149), +(147147, 'Jasmine', 1992, 'F', 10476), +(147148, 'Alexandra', 1992, 'F', 10219), +(147149, 'Alyssa', 1992, 'F', 10163), +(147150, 'Heather', 1992, 'F', 9723), +(147151, 'Tiffany', 1992, 'F', 9721), +(147152, 'Christina', 1992, 'F', 9440), +(147153, 'Shelby', 1992, 'F', 9397), +(147154, 'Kimberly', 1992, 'F', 8894), +(147155, 'Mary', 1992, 'F', 8452), +(147156, 'Sara', 1992, 'F', 8439), +(147157, 'Laura', 1992, 'F', 8307), +(147158, 'Andrea', 1992, 'F', 8021), +(147159, 'Alexis', 1992, 'F', 7948), +(147160, 'Morgan', 1992, 'F', 7787), +(147161, 'Kaitlyn', 1992, 'F', 7475), +(147162, 'Brianna', 1992, 'F', 7296), +(147163, 'Erica', 1992, 'F', 7134), +(147164, 'Maria', 1992, 'F', 7079), +(147165, 'Erin', 1992, 'F', 7057), +(147166, 'Kelly', 1992, 'F', 7010), +(147167, 'Allison', 1992, 'F', 6904), +(147168, 'Anna', 1992, 'F', 6844), +(147169, 'Crystal', 1992, 'F', 6599), +(147170, 'Amy', 1992, 'F', 6342), +(147171, 'Cassandra', 1992, 'F', 6311), +(147172, 'Kristen', 1992, 'F', 6252), +(147173, 'Katie', 1992, 'F', 6110), +(147174, 'Vanessa', 1992, 'F', 6078), +(147175, 'Haley', 1992, 'F', 6040), +(147176, 'Lindsey', 1992, 'F', 5895), +(147177, 'Olivia', 1992, 'F', 5802), +(147178, 'Brooke', 1992, 'F', 5771), +(147179, 'Kathryn', 1992, 'F', 5685), +(147180, 'Natalie', 1992, 'F', 5583), +(147181, 'Caitlin', 1992, 'F', 5392), +(147182, 'Jordan', 1992, 'F', 5367), +(147183, 'Paige', 1992, 'F', 5303), +(147184, 'Shannon', 1992, 'F', 5290), +(147185, 'Katelyn', 1992, 'F', 5287), +(147186, 'Jenna', 1992, 'F', 5090), +(147187, 'Brittney', 1992, 'F', 5086), +(147188, 'Angela', 1992, 'F', 5075), +(147189, 'Julia', 1992, 'F', 5021), +(147190, 'Alicia', 1992, 'F', 4908), +(147191, 'Marissa', 1992, 'F', 4871), +(147192, 'Alexandria', 1992, 'F', 4799), +(147193, 'Mariah', 1992, 'F', 4711), +(147194, 'Jamie', 1992, 'F', 4703), +(147195, 'Jacqueline', 1992, 'F', 4693), +(147196, 'Monica', 1992, 'F', 4586), +(147197, 'Catherine', 1992, 'F', 4533), +(147198, 'Briana', 1992, 'F', 4351), +(147199, 'Erika', 1992, 'F', 4335), +(147200, 'Lindsay', 1992, 'F', 4258), +(147201, 'Christine', 1992, 'F', 4148), +(147202, 'Molly', 1992, 'F', 4136), +(147203, 'Gabrielle', 1992, 'F', 4030), +(147204, 'Whitney', 1992, 'F', 4010), +(147205, 'Abigail', 1992, 'F', 3987), +(147206, 'Ariel', 1992, 'F', 3961), +(147207, 'Lisa', 1992, 'F', 3781), +(147208, 'Miranda', 1992, 'F', 3695), +(147209, 'Kristin', 1992, 'F', 3596), +(147210, 'Meghan', 1992, 'F', 3594), +(147211, 'Cynthia', 1992, 'F', 3549), +(147212, 'Kristina', 1992, 'F', 3466), +(147213, 'Breanna', 1992, 'F', 3451), +(147214, 'Veronica', 1992, 'F', 3440), +(147215, 'Leah', 1992, 'F', 3427), +(147216, 'Bianca', 1992, 'F', 3385), +(147217, 'Melanie', 1992, 'F', 3355), +(147218, 'Holly', 1992, 'F', 3348), +(147219, 'Angelica', 1992, 'F', 3323), +(147220, 'Diana', 1992, 'F', 3249), +(147221, 'Margaret', 1992, 'F', 3241), +(147222, 'April', 1992, 'F', 3229), +(147223, 'Emma', 1992, 'F', 3206), +(147224, 'Caroline', 1992, 'F', 3176), +(147225, 'Julie', 1992, 'F', 3167), +(147226, 'Madison', 1992, 'F', 3165), +(147227, 'Kathleen', 1992, 'F', 3135), +(147228, 'Casey', 1992, 'F', 3007), +(147229, 'Brandi', 1992, 'F', 2968), +(147230, 'Patricia', 1992, 'F', 2952), +(147231, 'Sabrina', 1992, 'F', 2948), +(147232, 'Kaitlin', 1992, 'F', 2942), +(147233, 'Kara', 1992, 'F', 2930), +(147234, 'Bethany', 1992, 'F', 2929), +(147235, 'Dominique', 1992, 'F', 2881), +(147236, 'Chelsey', 1992, 'F', 2878), +(147237, 'Tara', 1992, 'F', 2836), +(147238, 'Brenda', 1992, 'F', 2826), +(147239, 'Natasha', 1992, 'F', 2813), +(147240, 'Karen', 1992, 'F', 2763), +(147241, 'Desiree', 1992, 'F', 2760), +(147242, 'Rachael', 1992, 'F', 2745), +(147243, 'Sydney', 1992, 'F', 2709), +(147244, 'Mackenzie', 1992, 'F', 2672), +(147245, 'Kendra', 1992, 'F', 2671), +(147246, 'Grace', 1992, 'F', 2653), +(147247, 'Krystal', 1992, 'F', 2617), +(147248, 'Sierra', 1992, 'F', 2612), +(147249, 'Destiny', 1992, 'F', 2610), +(147250, 'Katrina', 1992, 'F', 2524), +(147251, 'Hillary', 1992, 'F', 2521), +(147252, 'Leslie', 1992, 'F', 2481), +(147253, 'Carly', 1992, 'F', 2467), +(147254, 'Hayley', 1992, 'F', 2438), +(147255, 'Valerie', 1992, 'F', 2347), +(147256, 'Ana', 1992, 'F', 2327), +(147257, 'Madeline', 1992, 'F', 2270), +(147258, 'Gabriela', 1992, 'F', 2268), +(147259, 'Alexa', 1992, 'F', 2234), +(147260, 'Adriana', 1992, 'F', 2203), +(147261, 'Nancy', 1992, 'F', 2183), +(147262, 'Savannah', 1992, 'F', 2183), +(147263, 'Dana', 1992, 'F', 2153), +(147264, 'Rebekah', 1992, 'F', 2105), +(147265, 'Felicia', 1992, 'F', 2091), +(147266, 'Alison', 1992, 'F', 2064), +(147267, 'Alejandra', 1992, 'F', 2041), +(147268, 'Jillian', 1992, 'F', 2041), +(147269, 'Krista', 1992, 'F', 2028), +(147270, 'Monique', 1992, 'F', 2016), +(147271, 'Raven', 1992, 'F', 2016), +(147272, 'Sandra', 1992, 'F', 2015), +(147273, 'Ashlee', 1992, 'F', 2011), +(147274, 'Deanna', 1992, 'F', 1975), +(147275, 'Caitlyn', 1992, 'F', 1969), +(147276, 'Meagan', 1992, 'F', 1957), +(147277, 'Karina', 1992, 'F', 1950), +(147278, 'Claire', 1992, 'F', 1948), +(147279, 'Hailey', 1992, 'F', 1912), +(147280, 'Chloe', 1992, 'F', 1893), +(147281, 'Shanice', 1992, 'F', 1858), +(147282, 'Alisha', 1992, 'F', 1855), +(147283, 'Jocelyn', 1992, 'F', 1842), +(147284, 'Gina', 1992, 'F', 1840), +(147285, 'Kirsten', 1992, 'F', 1831), +(147286, 'Joanna', 1992, 'F', 1822), +(147287, 'Brandy', 1992, 'F', 1815), +(147288, 'Cheyenne', 1992, 'F', 1796), +(147289, 'Autumn', 1992, 'F', 1783), +(147290, 'Jaclyn', 1992, 'F', 1775), +(147291, 'Mallory', 1992, 'F', 1758), +(147292, 'Lacey', 1992, 'F', 1755), +(147293, 'Kaylee', 1992, 'F', 1752), +(147294, 'Yesenia', 1992, 'F', 1743), +(147295, 'Audrey', 1992, 'F', 1742), +(147296, 'Mercedes', 1992, 'F', 1730), +(147297, 'Bailey', 1992, 'F', 1729), +(147298, 'Priscilla', 1992, 'F', 1726), +(147299, 'Angel', 1992, 'F', 1695), +(147300, 'Jade', 1992, 'F', 1688), +(147301, 'Anne', 1992, 'F', 1683), +(147302, 'Cindy', 1992, 'F', 1671), +(147303, 'Colleen', 1992, 'F', 1668), +(147304, 'Cristina', 1992, 'F', 1662), +(147305, 'Candace', 1992, 'F', 1661), +(147306, 'Daisy', 1992, 'F', 1654), +(147307, 'Denise', 1992, 'F', 1628), +(147308, 'Tabitha', 1992, 'F', 1606), +(147309, 'Claudia', 1992, 'F', 1595), +(147310, 'Nichole', 1992, 'F', 1582), +(147311, 'Linda', 1992, 'F', 1581), +(147312, 'Kiara', 1992, 'F', 1569), +(147313, 'Britney', 1992, 'F', 1566), +(147314, 'Kylie', 1992, 'F', 1554), +(147315, 'Carolyn', 1992, 'F', 1518), +(147316, 'Ashleigh', 1992, 'F', 1513), +(147317, 'Candice', 1992, 'F', 1487), +(147318, 'Meredith', 1992, 'F', 1462), +(147319, 'Mayra', 1992, 'F', 1438), +(147320, 'Bridget', 1992, 'F', 1413), +(147321, 'Evelyn', 1992, 'F', 1413), +(147322, 'Lydia', 1992, 'F', 1409), +(147323, 'Kasey', 1992, 'F', 1394), +(147324, 'Kassandra', 1992, 'F', 1394), +(147325, 'Teresa', 1992, 'F', 1372), +(147326, 'Ariana', 1992, 'F', 1371), +(147327, 'Susan', 1992, 'F', 1371), +(147328, 'Gabriella', 1992, 'F', 1370), +(147329, 'Ciara', 1992, 'F', 1369), +(147330, 'Sophia', 1992, 'F', 1353), +(147331, 'Jasmin', 1992, 'F', 1351), +(147332, 'Ebony', 1992, 'F', 1349), +(147333, 'Amelia', 1992, 'F', 1344), +(147334, 'Renee', 1992, 'F', 1340), +(147335, 'Ellen', 1992, 'F', 1336), +(147336, 'Kelli', 1992, 'F', 1336), +(147337, 'Tori', 1992, 'F', 1331), +(147338, 'Diamond', 1992, 'F', 1301), +(147339, 'Marisa', 1992, 'F', 1286), +(147340, 'Carrie', 1992, 'F', 1284), +(147341, 'Wendy', 1992, 'F', 1270), +(147342, 'Tamara', 1992, 'F', 1265), +(147343, 'Justine', 1992, 'F', 1255), +(147344, 'Heidi', 1992, 'F', 1242), +(147345, 'Theresa', 1992, 'F', 1237), +(147346, 'Chelsie', 1992, 'F', 1223), +(147347, 'Carmen', 1992, 'F', 1202), +(147348, 'Allyson', 1992, 'F', 1199), +(147349, 'Stacey', 1992, 'F', 1197), +(147350, 'Janet', 1992, 'F', 1196), +(147351, 'Stacy', 1992, 'F', 1189), +(147352, 'Hilary', 1992, 'F', 1171), +(147353, 'Rosa', 1992, 'F', 1170), +(147354, 'Cassie', 1992, 'F', 1168), +(147355, 'Marie', 1992, 'F', 1164), +(147356, 'Tessa', 1992, 'F', 1164), +(147357, 'Tiara', 1992, 'F', 1161), +(147358, 'Carissa', 1992, 'F', 1157), +(147359, 'Karla', 1992, 'F', 1157), +(147360, 'Raquel', 1992, 'F', 1147), +(147361, 'Jacquelyn', 1992, 'F', 1145), +(147362, 'Martha', 1992, 'F', 1142), +(147363, 'Clarissa', 1992, 'F', 1140), +(147364, 'Jenny', 1992, 'F', 1140), +(147365, 'Faith', 1992, 'F', 1138), +(147366, 'Cara', 1992, 'F', 1125), +(147367, 'Barbara', 1992, 'F', 1122), +(147368, 'Kelsie', 1992, 'F', 1116), +(147369, 'Naomi', 1992, 'F', 1115), +(147370, 'Gloria', 1992, 'F', 1113), +(147371, 'Asia', 1992, 'F', 1107), +(147372, 'Aubrey', 1992, 'F', 1107), +(147373, 'Summer', 1992, 'F', 1101), +(147374, 'Jazmin', 1992, 'F', 1098), +(147375, 'Jessie', 1992, 'F', 1096), +(147376, 'Virginia', 1992, 'F', 1089), +(147377, 'Camille', 1992, 'F', 1086), +(147378, 'Melinda', 1992, 'F', 1086), +(147379, 'Abby', 1992, 'F', 1082), +(147380, 'Janelle', 1992, 'F', 1069), +(147381, 'Kellie', 1992, 'F', 1069), +(147382, 'Miriam', 1992, 'F', 1056), +(147383, 'Robin', 1992, 'F', 1055), +(147384, 'Jazmine', 1992, 'F', 1054), +(147385, 'Tanya', 1992, 'F', 1054), +(147386, 'Isabel', 1992, 'F', 1053), +(147387, 'Cierra', 1992, 'F', 1052), +(147388, 'Nina', 1992, 'F', 1049), +(147389, 'Tatiana', 1992, 'F', 1044), +(147390, 'Maggie', 1992, 'F', 1040), +(147391, 'Ruby', 1992, 'F', 1039), +(147392, 'Alissa', 1992, 'F', 1035), +(147393, 'Devin', 1992, 'F', 1035), +(147394, 'Cecilia', 1992, 'F', 1017), +(147395, 'Carla', 1992, 'F', 1012), +(147396, 'Marina', 1992, 'F', 1007), +(147397, 'Tracy', 1992, 'F', 1000), +(147398, 'Adrienne', 1992, 'F', 999), +(147399, 'Christian', 1992, 'F', 986), +(147400, 'Zoe', 1992, 'F', 980), +(147401, 'Tyler', 1992, 'F', 978), +(147402, 'Arielle', 1992, 'F', 975), +(147403, 'Daniela', 1992, 'F', 967), +(147404, 'Angelina', 1992, 'F', 965), +(147405, 'Tia', 1992, 'F', 964), +(147406, 'Charlotte', 1992, 'F', 962), +(147407, 'Michaela', 1992, 'F', 958), +(147408, 'Adrianna', 1992, 'F', 957), +(147409, 'Mckenzie', 1992, 'F', 949), +(147410, 'Hanna', 1992, 'F', 948), +(147411, 'Guadalupe', 1992, 'F', 946), +(147412, 'Ann', 1992, 'F', 945), +(147413, 'Callie', 1992, 'F', 945), +(147414, 'Katlyn', 1992, 'F', 944), +(147415, 'Sasha', 1992, 'F', 944), +(147416, 'Esther', 1992, 'F', 942), +(147417, 'Elise', 1992, 'F', 939), +(147418, 'Sharon', 1992, 'F', 937), +(147419, 'Katelynn', 1992, 'F', 927), +(147420, 'Devon', 1992, 'F', 920), +(147421, 'Deborah', 1992, 'F', 919), +(147422, 'Pamela', 1992, 'F', 918), +(147423, 'Carolina', 1992, 'F', 916), +(147424, 'Kristi', 1992, 'F', 915), +(147425, 'Shawna', 1992, 'F', 910), +(147426, 'Vivian', 1992, 'F', 908), +(147427, 'Melody', 1992, 'F', 906), +(147428, 'Karissa', 1992, 'F', 898), +(147429, 'Hope', 1992, 'F', 892), +(147430, 'Nikki', 1992, 'F', 892), +(147431, 'Tina', 1992, 'F', 890), +(147432, 'Angelique', 1992, 'F', 885), +(147433, 'Aimee', 1992, 'F', 881), +(147434, 'Toni', 1992, 'F', 877), +(147435, 'Kristine', 1992, 'F', 874), +(147436, 'Shayla', 1992, 'F', 865), +(147437, 'Rose', 1992, 'F', 858), +(147438, 'Cortney', 1992, 'F', 854), +(147439, 'Ruth', 1992, 'F', 853), +(147440, 'Leticia', 1992, 'F', 849), +(147441, 'Brittani', 1992, 'F', 848), +(147442, 'Jeanette', 1992, 'F', 846), +(147443, 'Kristy', 1992, 'F', 838), +(147444, 'Kate', 1992, 'F', 837), +(147445, 'Helen', 1992, 'F', 827), +(147446, 'Michele', 1992, 'F', 823), +(147447, 'Kari', 1992, 'F', 822), +(147448, 'Mia', 1992, 'F', 821), +(147449, 'Regina', 1992, 'F', 814), +(147450, 'Sonia', 1992, 'F', 812), +(147451, 'Brianne', 1992, 'F', 806), +(147452, 'Tasha', 1992, 'F', 806), +(147453, 'Bria', 1992, 'F', 801), +(147454, 'Trisha', 1992, 'F', 799), +(147455, 'Tiana', 1992, 'F', 796), +(147456, 'Elena', 1992, 'F', 791), +(147457, 'Paula', 1992, 'F', 775), +(147458, 'Stefanie', 1992, 'F', 772), +(147459, 'Eva', 1992, 'F', 762), +(147460, 'Elisabeth', 1992, 'F', 760), +(147461, 'Yvette', 1992, 'F', 759), +(147462, 'Nicolette', 1992, 'F', 757), +(147463, 'Christa', 1992, 'F', 755), +(147464, 'Liliana', 1992, 'F', 754), +(147465, 'Dakota', 1992, 'F', 751), +(147466, 'Robyn', 1992, 'F', 750), +(147467, 'Lillian', 1992, 'F', 749), +(147468, 'Tierra', 1992, 'F', 747), +(147469, 'Kendall', 1992, 'F', 746), +(147470, 'Anastasia', 1992, 'F', 741), +(147471, 'Misty', 1992, 'F', 741), +(147472, 'Annie', 1992, 'F', 729), +(147473, 'Brenna', 1992, 'F', 725), +(147474, 'Cassidy', 1992, 'F', 725), +(147475, 'Ashton', 1992, 'F', 724), +(147476, 'Christy', 1992, 'F', 719), +(147477, 'Marlene', 1992, 'F', 716), +(147478, 'Lorena', 1992, 'F', 713), +(147479, 'Randi', 1992, 'F', 713), +(147480, 'Sylvia', 1992, 'F', 709), +(147481, 'Katharine', 1992, 'F', 708), +(147482, 'Chasity', 1992, 'F', 706), +(147483, 'Kelley', 1992, 'F', 703), +(147484, 'Kyla', 1992, 'F', 701), +(147485, 'Natalia', 1992, 'F', 701), +(147486, 'Alma', 1992, 'F', 699), +(147487, 'Rachelle', 1992, 'F', 696), +(147488, 'Maya', 1992, 'F', 695), +(147489, 'Taryn', 1992, 'F', 692), +(147490, 'Ashlyn', 1992, 'F', 688), +(147491, 'Alice', 1992, 'F', 686), +(147492, 'Genesis', 1992, 'F', 686), +(147493, 'Jordyn', 1992, 'F', 685), +(147494, 'Larissa', 1992, 'F', 685), +(147495, 'Jaime', 1992, 'F', 684), +(147496, 'Francesca', 1992, 'F', 683), +(147497, 'Donna', 1992, 'F', 680), +(147498, 'Kylee', 1992, 'F', 680), +(147499, 'Marilyn', 1992, 'F', 680), +(147500, 'Ericka', 1992, 'F', 678), +(147501, 'Yvonne', 1992, 'F', 676), +(147502, 'Marisol', 1992, 'F', 673), +(147503, 'Tania', 1992, 'F', 673), +(147504, 'Celeste', 1992, 'F', 671), +(147505, 'Alana', 1992, 'F', 670), +(147506, 'Tanisha', 1992, 'F', 668), +(147507, 'Frances', 1992, 'F', 667), +(147508, 'Valeria', 1992, 'F', 665), +(147509, 'India', 1992, 'F', 663), +(147510, 'Johanna', 1992, 'F', 662), +(147511, 'Shayna', 1992, 'F', 661), +(147512, 'Chanel', 1992, 'F', 658), +(147513, 'Corinne', 1992, 'F', 655), +(147514, 'Arianna', 1992, 'F', 651), +(147515, 'Jane', 1992, 'F', 651), +(147516, 'Jill', 1992, 'F', 647), +(147517, 'Kierra', 1992, 'F', 646), +(147518, 'Alyson', 1992, 'F', 643), +(147519, 'Lori', 1992, 'F', 642), +(147520, 'Sheila', 1992, 'F', 641), +(147521, 'Kiana', 1992, 'F', 633), +(147522, 'Esmeralda', 1992, 'F', 630), +(147523, 'Kali', 1992, 'F', 630), +(147524, 'Chantel', 1992, 'F', 629), +(147525, 'Meaghan', 1992, 'F', 628), +(147526, 'Kayleigh', 1992, 'F', 627), +(147527, 'Simone', 1992, 'F', 622), +(147528, 'Carley', 1992, 'F', 615), +(147529, 'Joy', 1992, 'F', 615), +(147530, 'Ciera', 1992, 'F', 613), +(147531, 'Dawn', 1992, 'F', 613), +(147532, 'Diane', 1992, 'F', 613), +(147533, 'Carol', 1992, 'F', 611), +(147534, 'Maribel', 1992, 'F', 610), +(147535, 'Sadie', 1992, 'F', 609), +(147536, 'Blanca', 1992, 'F', 607), +(147537, 'Tayler', 1992, 'F', 606), +(147538, 'Shaina', 1992, 'F', 604), +(147539, 'Shaniqua', 1992, 'F', 604), +(147540, 'Elaine', 1992, 'F', 603), +(147541, 'Shana', 1992, 'F', 596), +(147542, 'Yolanda', 1992, 'F', 596), +(147543, 'Lacy', 1992, 'F', 594), +(147544, 'Maritza', 1992, 'F', 593), +(147545, 'Irene', 1992, 'F', 592), +(147546, 'Nadia', 1992, 'F', 592), +(147547, 'Josephine', 1992, 'F', 591), +(147548, 'Kaila', 1992, 'F', 586), +(147549, 'Kira', 1992, 'F', 586), +(147550, 'Roxanne', 1992, 'F', 584), +(147551, 'Iesha', 1992, 'F', 581), +(147552, 'Macy', 1992, 'F', 581), +(147553, 'Latoya', 1992, 'F', 580), +(147554, 'Kaleigh', 1992, 'F', 576), +(147555, 'Alaina', 1992, 'F', 575), +(147556, 'Kelsi', 1992, 'F', 575), +(147557, 'Juliana', 1992, 'F', 574), +(147558, 'Kyra', 1992, 'F', 574), +(147559, 'Cristal', 1992, 'F', 571), +(147560, 'Logan', 1992, 'F', 571), +(147561, 'Kourtney', 1992, 'F', 570), +(147562, 'Precious', 1992, 'F', 570), +(147563, 'Breana', 1992, 'F', 568), +(147564, 'Rochelle', 1992, 'F', 568), +(147565, 'Suzanne', 1992, 'F', 568), +(147566, 'Tiffani', 1992, 'F', 565), +(147567, 'Iris', 1992, 'F', 563), +(147568, 'Bonnie', 1992, 'F', 555), +(147569, 'Julianne', 1992, 'F', 555), +(147570, 'Kaitlynn', 1992, 'F', 551), +(147571, 'Noelle', 1992, 'F', 550), +(147572, 'Stephany', 1992, 'F', 549), +(147573, 'Anita', 1992, 'F', 546), +(147574, 'Lyndsey', 1992, 'F', 545), +(147575, 'Tonya', 1992, 'F', 542), +(147576, 'Elisa', 1992, 'F', 541), +(147577, 'Shauna', 1992, 'F', 538), +(147578, 'Savanna', 1992, 'F', 537), +(147579, 'Clara', 1992, 'F', 536), +(147580, 'Kiera', 1992, 'F', 535), +(147581, 'Latasha', 1992, 'F', 533), +(147582, 'Margarita', 1992, 'F', 532), +(147583, 'Sandy', 1992, 'F', 531), +(147584, 'Kailey', 1992, 'F', 529), +(147585, 'Paris', 1992, 'F', 529), +(147586, 'Tess', 1992, 'F', 528), +(147587, 'Judith', 1992, 'F', 527), +(147588, 'Madeleine', 1992, 'F', 527), +(147589, 'Kaley', 1992, 'F', 524), +(147590, 'Lily', 1992, 'F', 523), +(147591, 'Mariela', 1992, 'F', 523), +(147592, 'Nora', 1992, 'F', 523), +(147593, 'Carina', 1992, 'F', 519), +(147594, 'Lucy', 1992, 'F', 519), +(147595, 'Bryanna', 1992, 'F', 518), +(147596, 'Desirae', 1992, 'F', 517), +(147597, 'Moriah', 1992, 'F', 517), +(147598, 'Antoinette', 1992, 'F', 515), +(147599, 'Shelbi', 1992, 'F', 515), +(147600, 'Kristie', 1992, 'F', 513), +(147601, 'Alysha', 1992, 'F', 512), +(147602, 'Sophie', 1992, 'F', 511), +(147603, 'Daniella', 1992, 'F', 510), +(147604, 'Leanna', 1992, 'F', 510), +(147605, 'Dorothy', 1992, 'F', 508), +(147606, 'Isabella', 1992, 'F', 508), +(147607, 'Beatriz', 1992, 'F', 507), +(147608, 'Breanne', 1992, 'F', 507), +(147609, 'Paola', 1992, 'F', 500), +(147610, 'Serena', 1992, 'F', 500), +(147611, 'Jalisa', 1992, 'F', 498), +(147612, 'Maranda', 1992, 'F', 498), +(147613, 'Talia', 1992, 'F', 498), +(147614, 'Sally', 1992, 'F', 495), +(147615, 'Janae', 1992, 'F', 488), +(147616, 'Kerri', 1992, 'F', 488), +(147617, 'Casandra', 1992, 'F', 487), +(147618, 'Mollie', 1992, 'F', 486), +(147619, 'Charity', 1992, 'F', 485), +(147620, 'Lena', 1992, 'F', 483), +(147621, 'Emilee', 1992, 'F', 482), +(147622, 'Alanna', 1992, 'F', 480), +(147623, 'Latisha', 1992, 'F', 479), +(147624, 'Kacie', 1992, 'F', 477), +(147625, 'Ashlie', 1992, 'F', 475), +(147626, 'Kathy', 1992, 'F', 474), +(147627, 'Charlene', 1992, 'F', 473), +(147628, 'Kenya', 1992, 'F', 473), +(147629, 'Alexandrea', 1992, 'F', 471), +(147630, 'Keri', 1992, 'F', 466), +(147631, 'Shanna', 1992, 'F', 466), +(147632, 'Alisa', 1992, 'F', 465), +(147633, 'Janice', 1992, 'F', 463), +(147634, 'Norma', 1992, 'F', 462), +(147635, 'Beth', 1992, 'F', 461), +(147636, 'Christie', 1992, 'F', 458), +(147637, 'Keisha', 1992, 'F', 458), +(147638, 'Blair', 1992, 'F', 457), +(147639, 'Katy', 1992, 'F', 457), +(147640, 'Kelsea', 1992, 'F', 457), +(147641, 'Alexia', 1992, 'F', 456), +(147642, 'Genevieve', 1992, 'F', 456), +(147643, 'Harley', 1992, 'F', 456), +(147644, 'Araceli', 1992, 'F', 455), +(147645, 'Sofia', 1992, 'F', 453), +(147646, 'Stacie', 1992, 'F', 451), +(147647, 'Rocio', 1992, 'F', 450), +(147648, 'Shelbie', 1992, 'F', 450), +(147649, 'Shirley', 1992, 'F', 449), +(147650, 'Jodi', 1992, 'F', 445), +(147651, 'Beverly', 1992, 'F', 444), +(147652, 'Tammy', 1992, 'F', 442), +(147653, 'Cheryl', 1992, 'F', 441), +(147654, 'Jacklyn', 1992, 'F', 440), +(147655, 'Joyce', 1992, 'F', 439), +(147656, 'Mariana', 1992, 'F', 439), +(147657, 'Staci', 1992, 'F', 439), +(147658, 'Kerry', 1992, 'F', 438), +(147659, 'Shantel', 1992, 'F', 438), +(147660, 'Chandler', 1992, 'F', 437), +(147661, 'Juanita', 1992, 'F', 434), +(147662, 'Viviana', 1992, 'F', 433), +(147663, 'Avery', 1992, 'F', 432), +(147664, 'Abbey', 1992, 'F', 430), +(147665, 'Annette', 1992, 'F', 430), +(147666, 'Jena', 1992, 'F', 429), +(147667, 'Susana', 1992, 'F', 429), +(147668, 'Paulina', 1992, 'F', 428), +(147669, 'Brittni', 1992, 'F', 427), +(147670, 'Imani', 1992, 'F', 427), +(147671, 'Brooklyn', 1992, 'F', 426), +(147672, 'Destinee', 1992, 'F', 426), +(147673, 'Edith', 1992, 'F', 426), +(147674, 'Riley', 1992, 'F', 425), +(147675, 'Haylee', 1992, 'F', 423), +(147676, 'Leigh', 1992, 'F', 423), +(147677, 'Karly', 1992, 'F', 421), +(147678, 'Kirstie', 1992, 'F', 421), +(147679, 'Lizbeth', 1992, 'F', 421), +(147680, 'Rosemary', 1992, 'F', 420), +(147681, 'Allie', 1992, 'F', 418), +(147682, 'Bridgette', 1992, 'F', 417), +(147683, 'Makayla', 1992, 'F', 415), +(147684, 'Mindy', 1992, 'F', 413), +(147685, 'Skylar', 1992, 'F', 413), +(147686, 'Mikayla', 1992, 'F', 412), +(147687, 'Cayla', 1992, 'F', 410), +(147688, 'Kiersten', 1992, 'F', 409), +(147689, 'Leanne', 1992, 'F', 409), +(147690, 'Perla', 1992, 'F', 408), +(147691, 'Aisha', 1992, 'F', 407), +(147692, 'Karli', 1992, 'F', 407), +(147693, 'Tianna', 1992, 'F', 407), +(147694, 'Connie', 1992, 'F', 405), +(147695, 'Katarina', 1992, 'F', 405), +(147696, 'Loren', 1992, 'F', 405), +(147697, 'Madelyn', 1992, 'F', 404), +(147698, 'Eileen', 1992, 'F', 403), +(147699, 'Kirstin', 1992, 'F', 402), +(147700, 'Lucia', 1992, 'F', 401), +(147701, 'Corina', 1992, 'F', 399), +(147702, 'Peyton', 1992, 'F', 398), +(147703, 'Julianna', 1992, 'F', 397), +(147704, 'Eleanor', 1992, 'F', 395), +(147705, 'Haleigh', 1992, 'F', 391), +(147706, 'Noemi', 1992, 'F', 391), +(147707, 'Rita', 1992, 'F', 391), +(147708, 'Mckenna', 1992, 'F', 390), +(147709, 'Emilie', 1992, 'F', 387), +(147710, 'Ashly', 1992, 'F', 386), +(147711, 'Sonya', 1992, 'F', 386), +(147712, 'Maureen', 1992, 'F', 385), +(147713, 'Tracey', 1992, 'F', 384), +(147714, 'Kaylyn', 1992, 'F', 383), +(147715, 'Octavia', 1992, 'F', 383), +(147716, 'Georgia', 1992, 'F', 382), +(147717, 'Hallie', 1992, 'F', 382), +(147718, 'Stevie', 1992, 'F', 380), +(147719, 'Tabatha', 1992, 'F', 379), +(147720, 'Brandie', 1992, 'F', 378), +(147721, 'Darlene', 1992, 'F', 378), +(147722, 'Ryan', 1992, 'F', 377), +(147723, 'Makenzie', 1992, 'F', 376), +(147724, 'Kaylie', 1992, 'F', 375), +(147725, 'Selena', 1992, 'F', 375), +(147726, 'Carlie', 1992, 'F', 374), +(147727, 'Karlee', 1992, 'F', 374), +(147728, 'Laurel', 1992, 'F', 374), +(147729, 'Brittanie', 1992, 'F', 372), +(147730, 'Silvia', 1992, 'F', 372), +(147731, 'Britany', 1992, 'F', 371), +(147732, 'Mara', 1992, 'F', 371), +(147733, 'Yasmin', 1992, 'F', 371), +(147734, 'Arlene', 1992, 'F', 369), +(147735, 'Celina', 1992, 'F', 369), +(147736, 'Alexus', 1992, 'F', 367), +(147737, 'Alex', 1992, 'F', 366), +(147738, 'Sidney', 1992, 'F', 366), +(147739, 'Gianna', 1992, 'F', 365), +(147740, 'Josie', 1992, 'F', 365), +(147741, 'Sheena', 1992, 'F', 365), +(147742, 'Jackie', 1992, 'F', 363), +(147743, 'Justina', 1992, 'F', 363), +(147744, 'Selina', 1992, 'F', 363), +(147745, 'Yadira', 1992, 'F', 362), +(147746, 'Fatima', 1992, 'F', 361), +(147747, 'Jaimie', 1992, 'F', 361), +(147748, 'Devan', 1992, 'F', 360), +(147749, 'Luz', 1992, 'F', 360), +(147750, 'Deidre', 1992, 'F', 357), +(147751, 'Lea', 1992, 'F', 357), +(147752, 'Jami', 1992, 'F', 356), +(147753, 'Demi', 1992, 'F', 354), +(147754, 'Kala', 1992, 'F', 354), +(147755, 'Katelin', 1992, 'F', 354), +(147756, 'Lesley', 1992, 'F', 354), +(147757, 'Alina', 1992, 'F', 353), +(147758, 'Debra', 1992, 'F', 353), +(147759, 'Jennie', 1992, 'F', 352), +(147760, 'Kristyn', 1992, 'F', 351), +(147761, 'Lara', 1992, 'F', 351), +(147762, 'Maegan', 1992, 'F', 351), +(147763, 'Mandy', 1992, 'F', 351), +(147764, 'Patrice', 1992, 'F', 351), +(147765, 'Dallas', 1992, 'F', 350), +(147766, 'Shelly', 1992, 'F', 350), +(147767, 'Ivette', 1992, 'F', 347), +(147768, 'Dulce', 1992, 'F', 345), +(147769, 'Nikita', 1992, 'F', 343), +(147770, 'Antonia', 1992, 'F', 342), +(147771, 'Celia', 1992, 'F', 342), +(147772, 'Constance', 1992, 'F', 342), +(147773, 'Sade', 1992, 'F', 342), +(147774, 'Angie', 1992, 'F', 341), +(147775, 'Tricia', 1992, 'F', 341), +(147776, 'Jana', 1992, 'F', 340), +(147777, 'Lacie', 1992, 'F', 340), +(147778, 'Eliza', 1992, 'F', 339), +(147779, 'Judy', 1992, 'F', 339), +(147780, 'Traci', 1992, 'F', 339), +(147781, 'Kacey', 1992, 'F', 337), +(147782, 'Shanae', 1992, 'F', 336), +(147783, 'Alysia', 1992, 'F', 335), +(147784, 'Hollie', 1992, 'F', 334), +(147785, 'Kori', 1992, 'F', 333), +(147786, 'Racheal', 1992, 'F', 333), +(147787, 'Nathalie', 1992, 'F', 332), +(147788, 'Elyse', 1992, 'F', 330), +(147789, 'Christen', 1992, 'F', 329), +(147790, 'Jenifer', 1992, 'F', 328), +(147791, 'Jessika', 1992, 'F', 327), +(147792, 'Joanne', 1992, 'F', 327), +(147793, 'Yasmine', 1992, 'F', 326), +(147794, 'Krysta', 1992, 'F', 325), +(147795, 'Rhiannon', 1992, 'F', 325), +(147796, 'Chelsi', 1992, 'F', 324), +(147797, 'Kaylin', 1992, 'F', 324), +(147798, 'Clare', 1992, 'F', 323), +(147799, 'Lizette', 1992, 'F', 322), +(147800, 'Aurora', 1992, 'F', 321), +(147801, 'Gretchen', 1992, 'F', 318), +(147802, 'Maricela', 1992, 'F', 318), +(147803, 'Gwendolyn', 1992, 'F', 317), +(147804, 'Alycia', 1992, 'F', 316), +(147805, 'Janette', 1992, 'F', 316), +(147806, 'Jayme', 1992, 'F', 315), +(147807, 'Cheyanne', 1992, 'F', 314), +(147808, 'Skyler', 1992, 'F', 314), +(147809, 'Marisela', 1992, 'F', 313), +(147810, 'Maura', 1992, 'F', 313), +(147811, 'Brook', 1992, 'F', 312), +(147812, 'Gladys', 1992, 'F', 312), +(147813, 'Jesse', 1992, 'F', 312), +(147814, 'Cori', 1992, 'F', 311), +(147815, 'Kasandra', 1992, 'F', 311), +(147816, 'Eden', 1992, 'F', 310), +(147817, 'Cameron', 1992, 'F', 309), +(147818, 'Kristian', 1992, 'F', 309), +(147819, 'Kiley', 1992, 'F', 308), +(147820, 'Lakeisha', 1992, 'F', 308), +(147821, 'Adrian', 1992, 'F', 307), +(147822, 'Delaney', 1992, 'F', 307), +(147823, 'Ingrid', 1992, 'F', 306), +(147824, 'Nia', 1992, 'F', 306), +(147825, 'Payton', 1992, 'F', 306), +(147826, 'Darian', 1992, 'F', 305), +(147827, 'Sherry', 1992, 'F', 305), +(147828, 'Terri', 1992, 'F', 305), +(147829, 'Janie', 1992, 'F', 304), +(147830, 'Rebeca', 1992, 'F', 301), +(147831, 'Audra', 1992, 'F', 300), +(147832, 'Yessenia', 1992, 'F', 300), +(147833, 'Carli', 1992, 'F', 299), +(147834, 'Domonique', 1992, 'F', 298), +(147835, 'Jada', 1992, 'F', 298), +(147836, 'Katlin', 1992, 'F', 298), +(147837, 'Carlee', 1992, 'F', 297), +(147838, 'Chantal', 1992, 'F', 297), +(147839, 'Estefania', 1992, 'F', 297), +(147840, 'Karlie', 1992, 'F', 297), +(147841, 'Betty', 1992, 'F', 296), +(147842, 'Elisha', 1992, 'F', 296), +(147843, 'Hali', 1992, 'F', 295), +(147844, 'Skye', 1992, 'F', 295), +(147845, 'Baby', 1992, 'F', 294), +(147846, 'Dianna', 1992, 'F', 292), +(147847, 'Elissa', 1992, 'F', 292), +(147848, 'Melina', 1992, 'F', 292), +(147849, 'Janessa', 1992, 'F', 291), +(147850, 'Christin', 1992, 'F', 290), +(147851, 'Maira', 1992, 'F', 290), +(147852, 'Janine', 1992, 'F', 289), +(147853, 'Anjelica', 1992, 'F', 288), +(147854, 'Belinda', 1992, 'F', 288), +(147855, 'Breann', 1992, 'F', 288), +(147856, 'Kaci', 1992, 'F', 288), +(147857, 'Keely', 1992, 'F', 288), +(147858, 'Beatrice', 1992, 'F', 286), +(147859, 'Ivy', 1992, 'F', 286), +(147860, 'Lynn', 1992, 'F', 286), +(147861, 'Deja', 1992, 'F', 285), +(147862, 'Shakira', 1992, 'F', 285), +(147863, 'Christiana', 1992, 'F', 284), +(147864, 'Infant', 1992, 'F', 284), +(147865, 'Reyna', 1992, 'F', 284), +(147866, 'Terra', 1992, 'F', 284), +(147867, 'Liana', 1992, 'F', 283), +(147868, 'Marcella', 1992, 'F', 280), +(147869, 'Lauryn', 1992, 'F', 279), +(147870, 'Lorraine', 1992, 'F', 279), +(147871, 'Thalia', 1992, 'F', 279), +(147872, 'Dayna', 1992, 'F', 278), +(147873, 'Halie', 1992, 'F', 278), +(147874, 'Alecia', 1992, 'F', 277), +(147875, 'Julissa', 1992, 'F', 277), +(147876, 'Roxana', 1992, 'F', 277), +(147877, 'Kalyn', 1992, 'F', 276), +(147878, 'Nadine', 1992, 'F', 276), +(147879, 'Devyn', 1992, 'F', 274), +(147880, 'Bobbie', 1992, 'F', 273), +(147881, 'Myra', 1992, 'F', 273), +(147882, 'Tiera', 1992, 'F', 273), +(147883, 'Allyssa', 1992, 'F', 272), +(147884, 'Fabiola', 1992, 'F', 272), +(147885, 'Shea', 1992, 'F', 272), +(147886, 'Elaina', 1992, 'F', 270), +(147887, 'Micah', 1992, 'F', 270), +(147888, 'Rhonda', 1992, 'F', 270), +(147889, 'Laurie', 1992, 'F', 269), +(147890, 'Ali', 1992, 'F', 268), +(147891, 'Mariel', 1992, 'F', 268), +(147892, 'Danica', 1992, 'F', 267), +(147893, 'Ashely', 1992, 'F', 266), +(147894, 'Melisa', 1992, 'F', 266), +(147895, 'Shelley', 1992, 'F', 266), +(147896, 'Brianda', 1992, 'F', 265), +(147897, 'Chantelle', 1992, 'F', 265), +(147898, 'Charmaine', 1992, 'F', 265), +(147899, 'Lyndsay', 1992, 'F', 265), +(147900, 'Lucero', 1992, 'F', 264), +(147901, 'Alesha', 1992, 'F', 261), +(147902, 'Ayla', 1992, 'F', 261), +(147903, 'Krystle', 1992, 'F', 261), +(147904, 'Abbie', 1992, 'F', 260), +(147905, 'Kathrine', 1992, 'F', 260), +(147906, 'Heaven', 1992, 'F', 259), +(147907, 'Tamika', 1992, 'F', 259), +(147908, 'Michael', 1992, 'F', 258), +(147909, 'Corey', 1992, 'F', 257), +(147910, 'Tiffanie', 1992, 'F', 256), +(147911, 'Hailee', 1992, 'F', 255), +(147912, 'Jaleesa', 1992, 'F', 255), +(147913, 'Aileen', 1992, 'F', 254), +(147914, 'Micaela', 1992, 'F', 254), +(147915, 'Rikki', 1992, 'F', 254), +(147916, 'Karley', 1992, 'F', 253), +(147917, 'Mikaela', 1992, 'F', 253), +(147918, 'Sarai', 1992, 'F', 253), +(147919, 'Stormy', 1992, 'F', 252), +(147920, 'Athena', 1992, 'F', 251), +(147921, 'Joan', 1992, 'F', 251), +(147922, 'Latifah', 1992, 'F', 251), +(147923, 'Jerrica', 1992, 'F', 250), +(147924, 'Shanika', 1992, 'F', 250), +(147925, 'Brielle', 1992, 'F', 249), +(147926, 'Cora', 1992, 'F', 249), +(147927, 'Dominque', 1992, 'F', 249), +(147928, 'Marlena', 1992, 'F', 249), +(147929, 'Alessandra', 1992, 'F', 248), +(147930, 'Janay', 1992, 'F', 248), +(147931, 'Jaqueline', 1992, 'F', 248), +(147932, 'Kia', 1992, 'F', 247), +(147933, 'Leann', 1992, 'F', 247), +(147934, 'Dina', 1992, 'F', 246), +(147935, 'China', 1992, 'F', 245), +(147936, 'Tyesha', 1992, 'F', 245), +(147937, 'Ashlynn', 1992, 'F', 244), +(147938, 'Deidra', 1992, 'F', 244), +(147939, 'Iliana', 1992, 'F', 244), +(147940, 'Lisette', 1992, 'F', 244), +(147941, 'Adrianne', 1992, 'F', 243), +(147942, 'Eboni', 1992, 'F', 243), +(147943, 'Jodie', 1992, 'F', 243), +(147944, 'Noel', 1992, 'F', 243), +(147945, 'Berenice', 1992, 'F', 242), +(147946, 'Felisha', 1992, 'F', 242), +(147947, 'Juana', 1992, 'F', 242), +(147948, 'Kaela', 1992, 'F', 242), +(147949, 'Olga', 1992, 'F', 241), +(147950, 'Bobbi', 1992, 'F', 240), +(147951, 'Giselle', 1992, 'F', 240), +(147952, 'Lynette', 1992, 'F', 240), +(147953, 'Ava', 1992, 'F', 239), +(147954, 'Griselda', 1992, 'F', 239), +(147955, 'Irma', 1992, 'F', 239), +(147956, 'Isabelle', 1992, 'F', 239), +(147957, 'Kortney', 1992, 'F', 239), +(147958, 'Betsy', 1992, 'F', 238), +(147959, 'Asha', 1992, 'F', 237), +(147960, 'Fallon', 1992, 'F', 237), +(147961, 'Lourdes', 1992, 'F', 236), +(147962, 'Macey', 1992, 'F', 236), +(147963, 'Whitley', 1992, 'F', 236), +(147964, 'Anais', 1992, 'F', 235), +(147965, 'Bernadette', 1992, 'F', 235), +(147966, 'Gabriel', 1992, 'F', 235), +(147967, 'Kallie', 1992, 'F', 235), +(147968, 'Marjorie', 1992, 'F', 235), +(147969, 'Porsha', 1992, 'F', 235), +(147970, 'Santana', 1992, 'F', 235), +(147971, 'Alayna', 1992, 'F', 234), +(147972, 'Kimberley', 1992, 'F', 234), +(147973, 'Anissa', 1992, 'F', 233), +(147974, 'Ellie', 1992, 'F', 233), +(147975, 'Shanequa', 1992, 'F', 232), +(147976, 'Aubree', 1992, 'F', 231), +(147977, 'Chrystal', 1992, 'F', 231), +(147978, 'Lana', 1992, 'F', 231), +(147979, 'Amie', 1992, 'F', 230), +(147980, 'Kristal', 1992, 'F', 230), +(147981, 'Elsa', 1992, 'F', 229), +(147982, 'Tatyana', 1992, 'F', 229), +(147983, 'Alysa', 1992, 'F', 228), +(147984, 'Ashli', 1992, 'F', 228), +(147985, 'Brittaney', 1992, 'F', 228), +(147986, 'Joann', 1992, 'F', 228), +(147987, 'Kimberlee', 1992, 'F', 228), +(147988, 'Leandra', 1992, 'F', 228), +(147989, 'Princess', 1992, 'F', 228), +(147990, 'Shawnee', 1992, 'F', 228), +(147991, 'Symone', 1992, 'F', 228), +(147992, 'Ella', 1992, 'F', 227), +(147993, 'Lora', 1992, 'F', 227), +(147994, 'Marquita', 1992, 'F', 227), +(147995, 'Brea', 1992, 'F', 226), +(147996, 'Essence', 1992, 'F', 226), +(147997, 'Britni', 1992, 'F', 225), +(147998, 'Cassondra', 1992, 'F', 225), +(147999, 'Chelsy', 1992, 'F', 225), +(148000, 'Doris', 1992, 'F', 225), +(148001, 'Ivana', 1992, 'F', 225), +(148002, 'Laci', 1992, 'F', 224), +(148003, 'Shante', 1992, 'F', 224), +(148004, 'Brittny', 1992, 'F', 223), +(148005, 'Demetria', 1992, 'F', 223), +(148006, 'Janel', 1992, 'F', 223), +(148007, 'Leeann', 1992, 'F', 223), +(148008, 'Pauline', 1992, 'F', 223), +(148009, 'Trista', 1992, 'F', 222), +(148010, 'Joselyn', 1992, 'F', 221), +(148011, 'Billie', 1992, 'F', 220), +(148012, 'Daphne', 1992, 'F', 220), +(148013, 'Dara', 1992, 'F', 220), +(148014, 'Regan', 1992, 'F', 220), +(148015, 'Catalina', 1992, 'F', 219), +(148016, 'Danyelle', 1992, 'F', 218), +(148017, 'Graciela', 1992, 'F', 218), +(148018, 'Magdalena', 1992, 'F', 218), +(148019, 'Martina', 1992, 'F', 218), +(148020, 'Eunice', 1992, 'F', 217), +(148021, 'Katerina', 1992, 'F', 217), +(148022, 'Myranda', 1992, 'F', 217), +(148023, 'Janell', 1992, 'F', 216), +(148024, 'Kailee', 1992, 'F', 216), +(148025, 'Marian', 1992, 'F', 216), +(148026, 'Marlee', 1992, 'F', 216), +(148027, 'Monika', 1992, 'F', 216), +(148028, 'Susanna', 1992, 'F', 216), +(148029, 'Ivonne', 1992, 'F', 215), +(148030, 'Jeannette', 1992, 'F', 215), +(148031, 'Kassie', 1992, 'F', 215), +(148032, 'Madalyn', 1992, 'F', 215), +(148033, 'Valencia', 1992, 'F', 215), +(148034, 'Joelle', 1992, 'F', 214), +(148035, 'Latrice', 1992, 'F', 214), +(148036, 'Eliana', 1992, 'F', 213), +(148037, 'Emerald', 1992, 'F', 213), +(148038, 'Stefani', 1992, 'F', 213), +(148039, 'Kandice', 1992, 'F', 212), +(148040, 'Ayana', 1992, 'F', 211), +(148041, 'Jamila', 1992, 'F', 211), +(148042, 'Jean', 1992, 'F', 211), +(148043, 'Kalie', 1992, 'F', 211), +(148044, 'Katheryn', 1992, 'F', 211), +(148045, 'Rubi', 1992, 'F', 211), +(148046, 'Alexander', 1992, 'F', 210), +(148047, 'Mariam', 1992, 'F', 210), +(148048, 'Nataly', 1992, 'F', 210), +(148049, 'Ayanna', 1992, 'F', 209), +(148050, 'Darcy', 1992, 'F', 209), +(148051, 'Nakia', 1992, 'F', 209), +(148052, 'Breonna', 1992, 'F', 208), +(148053, 'Emilia', 1992, 'F', 208), +(148054, 'Geneva', 1992, 'F', 208), +(148055, 'Jerica', 1992, 'F', 208), +(148056, 'Shaniece', 1992, 'F', 208), +(148057, 'Laken', 1992, 'F', 207), +(148058, 'Annmarie', 1992, 'F', 206), +(148059, 'Cecelia', 1992, 'F', 206), +(148060, 'Chynna', 1992, 'F', 206), +(148061, 'Flor', 1992, 'F', 206), +(148062, 'Kaylynn', 1992, 'F', 206), +(148063, 'Danika', 1992, 'F', 205), +(148064, 'Krystina', 1992, 'F', 205), +(148065, 'Nikole', 1992, 'F', 205), +(148066, 'Salina', 1992, 'F', 205), +(148067, 'Kandace', 1992, 'F', 204), +(148068, 'Scarlett', 1992, 'F', 204), +(148069, 'Carson', 1992, 'F', 202), +(148070, 'Chaya', 1992, 'F', 202), +(148071, 'Cody', 1992, 'F', 202), +(148072, 'Danae', 1992, 'F', 202), +(148073, 'Georgina', 1992, 'F', 202), +(148074, 'Kati', 1992, 'F', 201), +(148075, 'Kinsey', 1992, 'F', 201), +(148076, 'Lizeth', 1992, 'F', 201), +(148077, 'Mai', 1992, 'F', 201), +(148078, 'Shanelle', 1992, 'F', 201), +(148079, 'Aja', 1992, 'F', 200), +(148080, 'Janna', 1992, 'F', 200), +(148081, 'Kenia', 1992, 'F', 200), +(148082, 'Anika', 1992, 'F', 199), +(148083, 'Chandra', 1992, 'F', 199), +(148084, 'Destini', 1992, 'F', 199), +(148085, 'Jessenia', 1992, 'F', 199), +(148086, 'Jessi', 1992, 'F', 199), +(148087, 'Delia', 1992, 'F', 198), +(148088, 'Dora', 1992, 'F', 197), +(148089, 'Gillian', 1992, 'F', 197), +(148090, 'Kayley', 1992, 'F', 197), +(148091, 'Kelcie', 1992, 'F', 197), +(148092, 'Leila', 1992, 'F', 197), +(148093, 'Bree', 1992, 'F', 196), +(148094, 'Maxine', 1992, 'F', 196), +(148095, 'Sonja', 1992, 'F', 196), +(148096, 'Ada', 1992, 'F', 195), +(148097, 'Damaris', 1992, 'F', 195), +(148098, 'Giovanna', 1992, 'F', 195), +(148099, 'Kaycee', 1992, 'F', 195), +(148100, 'Maryann', 1992, 'F', 195); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(148101, 'Chanelle', 1992, 'F', 194), +(148102, 'Isamar', 1992, 'F', 194), +(148103, 'Marcela', 1992, 'F', 194), +(148104, 'Phoebe', 1992, 'F', 194), +(148105, 'Andria', 1992, 'F', 193), +(148106, 'Coral', 1992, 'F', 193), +(148107, 'Corrine', 1992, 'F', 193), +(148108, 'Lexus', 1992, 'F', 193), +(148109, 'Liza', 1992, 'F', 193), +(148110, 'Selene', 1992, 'F', 193), +(148111, 'Catrina', 1992, 'F', 192), +(148112, 'Chastity', 1992, 'F', 192), +(148113, 'Kasie', 1992, 'F', 192), +(148114, 'Becky', 1992, 'F', 191), +(148115, 'Kenisha', 1992, 'F', 191), +(148116, 'Blake', 1992, 'F', 190), +(148117, 'Malia', 1992, 'F', 190), +(148118, 'Stacia', 1992, 'F', 190), +(148119, 'Anabel', 1992, 'F', 189), +(148120, 'Bryana', 1992, 'F', 189), +(148121, 'Marianne', 1992, 'F', 189), +(148122, 'Marla', 1992, 'F', 189), +(148123, 'Joana', 1992, 'F', 188), +(148124, 'Luisa', 1992, 'F', 188), +(148125, 'Alyse', 1992, 'F', 187), +(148126, 'Cathy', 1992, 'F', 187), +(148127, 'Helena', 1992, 'F', 187), +(148128, 'Linsey', 1992, 'F', 187), +(148129, 'Sage', 1992, 'F', 187), +(148130, 'Deandra', 1992, 'F', 186), +(148131, 'Lina', 1992, 'F', 186), +(148132, 'Paloma', 1992, 'F', 186), +(148133, 'Sarina', 1992, 'F', 186), +(148134, 'Shameka', 1992, 'F', 186), +(148135, 'Bridgett', 1992, 'F', 185), +(148136, 'Krysten', 1992, 'F', 185), +(148137, 'Shanique', 1992, 'F', 185), +(148138, 'Trinity', 1992, 'F', 185), +(148139, 'Tyra', 1992, 'F', 185), +(148140, 'Debbie', 1992, 'F', 184), +(148141, 'Jesenia', 1992, 'F', 184), +(148142, 'Mari', 1992, 'F', 184), +(148143, 'Codi', 1992, 'F', 182), +(148144, 'Deana', 1992, 'F', 182), +(148145, 'Edna', 1992, 'F', 182), +(148146, 'Haylie', 1992, 'F', 182), +(148147, 'Kim', 1992, 'F', 182), +(148148, 'Montana', 1992, 'F', 182), +(148149, 'Destiney', 1992, 'F', 181), +(148150, 'Kianna', 1992, 'F', 181), +(148151, 'Macie', 1992, 'F', 181), +(148152, 'Nichelle', 1992, 'F', 181), +(148153, 'Casie', 1992, 'F', 180), +(148154, 'Fiona', 1992, 'F', 180), +(148155, 'Kacy', 1992, 'F', 180), +(148156, 'Glenda', 1992, 'F', 179), +(148157, 'Martika', 1992, 'F', 179), +(148158, 'Shannen', 1992, 'F', 179), +(148159, 'Tracie', 1992, 'F', 179), +(148160, 'Unique', 1992, 'F', 179), +(148161, 'Austin', 1992, 'F', 177), +(148162, 'Jaimee', 1992, 'F', 177), +(148163, 'Kenzie', 1992, 'F', 177), +(148164, 'Shantell', 1992, 'F', 177), +(148165, 'Tanesha', 1992, 'F', 177), +(148166, 'Jolene', 1992, 'F', 176), +(148167, 'Mireya', 1992, 'F', 176), +(148168, 'Patience', 1992, 'F', 176), +(148169, 'Brionna', 1992, 'F', 175), +(148170, 'Nayeli', 1992, 'F', 175), +(148171, 'Teri', 1992, 'F', 175), +(148172, 'Brittnee', 1992, 'F', 174), +(148173, 'Marion', 1992, 'F', 174), +(148174, 'Adilene', 1992, 'F', 173), +(148175, 'Eryn', 1992, 'F', 173), +(148176, 'Kyle', 1992, 'F', 173), +(148177, 'Alena', 1992, 'F', 172), +(148178, 'Annemarie', 1992, 'F', 172), +(148179, 'Ashanti', 1992, 'F', 172), +(148180, 'Holli', 1992, 'F', 172), +(148181, 'Bertha', 1992, 'F', 171), +(148182, 'Franchesca', 1992, 'F', 171), +(148183, 'Frankie', 1992, 'F', 171), +(148184, 'Lashonda', 1992, 'F', 171), +(148185, 'Samatha', 1992, 'F', 171), +(148186, 'Vicky', 1992, 'F', 171), +(148187, 'Chana', 1992, 'F', 170), +(148188, 'Cory', 1992, 'F', 170), +(148189, 'Lidia', 1992, 'F', 170), +(148190, 'Tasia', 1992, 'F', 170), +(148191, 'Brittnie', 1992, 'F', 169), +(148192, 'Keshia', 1992, 'F', 169), +(148193, 'Portia', 1992, 'F', 169), +(148194, 'Reba', 1992, 'F', 169), +(148195, 'Stella', 1992, 'F', 169), +(148196, 'Angelia', 1992, 'F', 168), +(148197, 'Cherish', 1992, 'F', 168), +(148198, 'Juliet', 1992, 'F', 168), +(148199, 'Christal', 1992, 'F', 167), +(148200, 'Kayli', 1992, 'F', 167), +(148201, 'Lia', 1992, 'F', 167), +(148202, 'Lynsey', 1992, 'F', 167), +(148203, 'Maddison', 1992, 'F', 167), +(148204, 'Reanna', 1992, 'F', 167), +(148205, 'Aracely', 1992, 'F', 166), +(148206, 'Britny', 1992, 'F', 166), +(148207, 'Layla', 1992, 'F', 166), +(148208, 'Mattie', 1992, 'F', 166), +(148209, 'Nicolle', 1992, 'F', 166), +(148210, 'Angelic', 1992, 'F', 165), +(148211, 'Angeline', 1992, 'F', 165), +(148212, 'Aundrea', 1992, 'F', 165), +(148213, 'Chelsee', 1992, 'F', 165), +(148214, 'Annamarie', 1992, 'F', 164), +(148215, 'Cherie', 1992, 'F', 164), +(148216, 'Kelsy', 1992, 'F', 164), +(148217, 'Marianna', 1992, 'F', 164), +(148218, 'Roberta', 1992, 'F', 164), +(148219, 'Brandee', 1992, 'F', 163), +(148220, 'Dylan', 1992, 'F', 163), +(148221, 'Elyssa', 1992, 'F', 163), +(148222, 'Jasmyne', 1992, 'F', 163), +(148223, 'Jazmyn', 1992, 'F', 163), +(148224, 'Lissette', 1992, 'F', 163), +(148225, 'Brigitte', 1992, 'F', 162), +(148226, 'Iman', 1992, 'F', 162), +(148227, 'Rosemarie', 1992, 'F', 162), +(148228, 'Jody', 1992, 'F', 161), +(148229, 'Karisa', 1992, 'F', 161), +(148230, 'Laquisha', 1992, 'F', 161), +(148231, 'Racquel', 1992, 'F', 161), +(148232, 'Kailyn', 1992, 'F', 160), +(148233, 'Reina', 1992, 'F', 160), +(148234, 'Richelle', 1992, 'F', 160), +(148235, 'Jasmyn', 1992, 'F', 159), +(148236, 'Jewel', 1992, 'F', 159), +(148237, 'Keara', 1992, 'F', 159), +(148238, 'Marcia', 1992, 'F', 159), +(148239, 'Renae', 1992, 'F', 159), +(148240, 'Shanell', 1992, 'F', 159), +(148241, 'Siobhan', 1992, 'F', 159), +(148242, 'Khadijah', 1992, 'F', 158), +(148243, 'Keila', 1992, 'F', 157), +(148244, 'Marta', 1992, 'F', 157), +(148245, 'Monet', 1992, 'F', 157), +(148246, 'Pearl', 1992, 'F', 157), +(148247, 'Savanah', 1992, 'F', 157), +(148248, 'Breeanna', 1992, 'F', 156), +(148249, 'Hana', 1992, 'F', 156), +(148250, 'Hilda', 1992, 'F', 156), +(148251, 'Jesica', 1992, 'F', 156), +(148252, 'Kelcey', 1992, 'F', 156), +(148253, 'Krystin', 1992, 'F', 156), +(148254, 'Latonya', 1992, 'F', 156), +(148255, 'Lee', 1992, 'F', 156), +(148256, 'Mandi', 1992, 'F', 156), +(148257, 'Trina', 1992, 'F', 156), +(148258, 'Cady', 1992, 'F', 155), +(148259, 'Colby', 1992, 'F', 155), +(148260, 'Ginger', 1992, 'F', 155), +(148261, 'Janee', 1992, 'F', 155), +(148262, 'Magen', 1992, 'F', 155), +(148263, 'Merissa', 1992, 'F', 155), +(148264, 'Viridiana', 1992, 'F', 155), +(148265, 'Cari', 1992, 'F', 154), +(148266, 'Leilani', 1992, 'F', 154), +(148267, 'Shamika', 1992, 'F', 154), +(148268, 'Geraldine', 1992, 'F', 153), +(148269, 'Marley', 1992, 'F', 153), +(148270, 'Meranda', 1992, 'F', 153), +(148271, 'Ramona', 1992, 'F', 153), +(148272, 'Shanay', 1992, 'F', 153), +(148273, 'Tayla', 1992, 'F', 153), +(148274, 'Alyssia', 1992, 'F', 152), +(148275, 'Amberly', 1992, 'F', 152), +(148276, 'Bailee', 1992, 'F', 152), +(148277, 'Cathryn', 1992, 'F', 152), +(148278, 'Elsie', 1992, 'F', 152), +(148279, 'Jacey', 1992, 'F', 152), +(148280, 'Stephani', 1992, 'F', 152), +(148281, 'Alix', 1992, 'F', 151), +(148282, 'Chyna', 1992, 'F', 151), +(148283, 'Fantasia', 1992, 'F', 151), +(148284, 'Kalee', 1992, 'F', 151), +(148285, 'Kami', 1992, 'F', 151), +(148286, 'Vanesa', 1992, 'F', 151), +(148287, 'Malinda', 1992, 'F', 150), +(148288, 'Shakiyla', 1992, 'F', 150), +(148289, 'Suzanna', 1992, 'F', 150), +(148290, 'Yessica', 1992, 'F', 150), +(148291, 'Alondra', 1992, 'F', 149), +(148292, 'Ashlea', 1992, 'F', 149), +(148293, 'Desire', 1992, 'F', 149), +(148294, 'Jacy', 1992, 'F', 149), +(148295, 'Jeannie', 1992, 'F', 149), +(148296, 'Jenelle', 1992, 'F', 149), +(148297, 'Kaylan', 1992, 'F', 149), +(148298, 'Malika', 1992, 'F', 149), +(148299, 'Rena', 1992, 'F', 149), +(148300, 'Rosalie', 1992, 'F', 149), +(148301, 'Tkeyah', 1992, 'F', 149), +(148302, 'Chiquita', 1992, 'F', 148), +(148303, 'Kirby', 1992, 'F', 148), +(148304, 'Kyleigh', 1992, 'F', 148), +(148305, 'Roxanna', 1992, 'F', 148), +(148306, 'Caitlynn', 1992, 'F', 147), +(148307, 'Christi', 1992, 'F', 147), +(148308, 'Francisca', 1992, 'F', 147), +(148309, 'Miriah', 1992, 'F', 147), +(148310, 'Tierney', 1992, 'F', 147), +(148311, 'Audrianna', 1992, 'F', 146), +(148312, 'Candy', 1992, 'F', 146), +(148313, 'Corinna', 1992, 'F', 146), +(148314, 'Daniel', 1992, 'F', 146), +(148315, 'Elana', 1992, 'F', 146), +(148316, 'Eleni', 1992, 'F', 146), +(148317, 'Felecia', 1992, 'F', 146), +(148318, 'Kelci', 1992, 'F', 146), +(148319, 'Yasmeen', 1992, 'F', 146), +(148320, 'Brieanna', 1992, 'F', 145), +(148321, 'Denisse', 1992, 'F', 145), +(148322, 'Louise', 1992, 'F', 145), +(148323, 'Samara', 1992, 'F', 145), +(148324, 'Tesla', 1992, 'F', 145), +(148325, 'Zoey', 1992, 'F', 145), +(148326, 'Alia', 1992, 'F', 144), +(148327, 'Dolores', 1992, 'F', 144), +(148328, 'Esperanza', 1992, 'F', 144), +(148329, 'Francis', 1992, 'F', 144), +(148330, 'Laquita', 1992, 'F', 144), +(148331, 'Shaquana', 1992, 'F', 144), +(148332, 'Shari', 1992, 'F', 144), +(148333, 'Tosha', 1992, 'F', 144), +(148334, 'Antionette', 1992, 'F', 143), +(148335, 'Brynn', 1992, 'F', 143), +(148336, 'Davina', 1992, 'F', 143), +(148337, 'Hazel', 1992, 'F', 143), +(148338, 'Kanisha', 1992, 'F', 143), +(148339, 'Maci', 1992, 'F', 143), +(148340, 'Myesha', 1992, 'F', 143), +(148341, 'Shawn', 1992, 'F', 143), +(148342, 'Chante', 1992, 'F', 142), +(148343, 'Cinthia', 1992, 'F', 142), +(148344, 'Dena', 1992, 'F', 142), +(148345, 'Elvia', 1992, 'F', 142), +(148346, 'Keira', 1992, 'F', 142), +(148347, 'Shani', 1992, 'F', 142), +(148348, 'Tawny', 1992, 'F', 142), +(148349, 'Violet', 1992, 'F', 142), +(148350, 'Belen', 1992, 'F', 141), +(148351, 'Dalia', 1992, 'F', 141), +(148352, 'Denisha', 1992, 'F', 141), +(148353, 'Jenae', 1992, 'F', 141), +(148354, 'Jourdan', 1992, 'F', 141), +(148355, 'Keyana', 1992, 'F', 141), +(148356, 'London', 1992, 'F', 141), +(148357, 'Loretta', 1992, 'F', 141), +(148358, 'Markita', 1992, 'F', 141), +(148359, 'Miracle', 1992, 'F', 141), +(148360, 'Tiarra', 1992, 'F', 141), +(148361, 'Lashay', 1992, 'F', 140), +(148362, 'Lexi', 1992, 'F', 140), +(148363, 'Shakia', 1992, 'F', 140), +(148364, 'Xiomara', 1992, 'F', 140), +(148365, 'Yaritza', 1992, 'F', 140), +(148366, 'Ceara', 1992, 'F', 139), +(148367, 'Jalissa', 1992, 'F', 139), +(148368, 'Marlen', 1992, 'F', 139), +(148369, 'Reagan', 1992, 'F', 139), +(148370, 'Rosario', 1992, 'F', 139), +(148371, 'Shanise', 1992, 'F', 139), +(148372, 'Tameka', 1992, 'F', 139), +(148373, 'Bernice', 1992, 'F', 138), +(148374, 'Juliette', 1992, 'F', 138), +(148375, 'Magan', 1992, 'F', 138), +(148376, 'Shaquita', 1992, 'F', 138), +(148377, 'Katlynn', 1992, 'F', 137), +(148378, 'Lilia', 1992, 'F', 137), +(148379, 'Johnna', 1992, 'F', 136), +(148380, 'Priya', 1992, 'F', 136), +(148381, 'Tiesha', 1992, 'F', 136), +(148382, 'Amaris', 1992, 'F', 135), +(148383, 'Cydney', 1992, 'F', 135), +(148384, 'Ida', 1992, 'F', 135), +(148385, 'Ilana', 1992, 'F', 135), +(148386, 'Joslyn', 1992, 'F', 135), +(148387, 'Kalli', 1992, 'F', 135), +(148388, 'Kimber', 1992, 'F', 135), +(148389, 'Kristan', 1992, 'F', 135), +(148390, 'Unknown', 1992, 'F', 135), +(148391, 'Cecily', 1992, 'F', 134), +(148392, 'Ciarra', 1992, 'F', 134), +(148393, 'Connor', 1992, 'F', 134), +(148394, 'Danisha', 1992, 'F', 134), +(148395, 'Deirdre', 1992, 'F', 134), +(148396, 'Eve', 1992, 'F', 134), +(148397, 'Margo', 1992, 'F', 134), +(148398, 'Marsha', 1992, 'F', 134), +(148399, 'Rene', 1992, 'F', 134), +(148400, 'Rhea', 1992, 'F', 134), +(148401, 'Tonisha', 1992, 'F', 134), +(148402, 'Yazmin', 1992, 'F', 134), +(148403, 'Leigha', 1992, 'F', 133), +(148404, 'Phylicia', 1992, 'F', 133), +(148405, 'Presley', 1992, 'F', 133), +(148406, 'Sheridan', 1992, 'F', 133), +(148407, 'Stormie', 1992, 'F', 133), +(148408, 'Tatianna', 1992, 'F', 133), +(148409, 'Isis', 1992, 'F', 132), +(148410, 'Kassidy', 1992, 'F', 132), +(148411, 'Kayle', 1992, 'F', 132), +(148412, 'Sherri', 1992, 'F', 132), +(148413, 'Alivia', 1992, 'F', 131), +(148414, 'Becca', 1992, 'F', 131), +(148415, 'Bronte', 1992, 'F', 131), +(148416, 'Christopher', 1992, 'F', 131), +(148417, 'Estrella', 1992, 'F', 131), +(148418, 'Ileana', 1992, 'F', 131), +(148419, 'Natali', 1992, 'F', 131), +(148420, 'Spencer', 1992, 'F', 131), +(148421, 'Kenyatta', 1992, 'F', 130), +(148422, 'Keyanna', 1992, 'F', 130), +(148423, 'Sydnee', 1992, 'F', 130), +(148424, 'Aubrie', 1992, 'F', 129), +(148425, 'Daisha', 1992, 'F', 129), +(148426, 'Lilian', 1992, 'F', 129), +(148427, 'Malissa', 1992, 'F', 129), +(148428, 'Mona', 1992, 'F', 129), +(148429, 'Yajaira', 1992, 'F', 129), +(148430, 'Amalia', 1992, 'F', 128), +(148431, 'Aspen', 1992, 'F', 128), +(148432, 'Delilah', 1992, 'F', 128), +(148433, 'Johana', 1992, 'F', 128), +(148434, 'Kaytlin', 1992, 'F', 128), +(148435, 'Kaytlyn', 1992, 'F', 128), +(148436, 'Keona', 1992, 'F', 128), +(148437, 'Nicollette', 1992, 'F', 128), +(148438, 'Shay', 1992, 'F', 128), +(148439, 'Tatum', 1992, 'F', 128), +(148440, 'Britnee', 1992, 'F', 127), +(148441, 'Cali', 1992, 'F', 127), +(148442, 'Camilla', 1992, 'F', 127), +(148443, 'Corrie', 1992, 'F', 127), +(148444, 'Danelle', 1992, 'F', 127), +(148445, 'Evan', 1992, 'F', 127), +(148446, 'Jazmyne', 1992, 'F', 127), +(148447, 'Rosalinda', 1992, 'F', 127), +(148448, 'Drew', 1992, 'F', 126), +(148449, 'Jazzmine', 1992, 'F', 126), +(148450, 'Keosha', 1992, 'F', 126), +(148451, 'Linnea', 1992, 'F', 126), +(148452, 'Markie', 1992, 'F', 126), +(148453, 'Nelly', 1992, 'F', 126), +(148454, 'Shyla', 1992, 'F', 126), +(148455, 'Tera', 1992, 'F', 126), +(148456, 'Bethanie', 1992, 'F', 125), +(148457, 'Calli', 1992, 'F', 125), +(148458, 'Colette', 1992, 'F', 125), +(148459, 'Francine', 1992, 'F', 125), +(148460, 'Tamra', 1992, 'F', 125), +(148461, 'Tarah', 1992, 'F', 125), +(148462, 'Vicki', 1992, 'F', 125), +(148463, 'Anisha', 1992, 'F', 124), +(148464, 'Jackeline', 1992, 'F', 124), +(148465, 'Josefina', 1992, 'F', 124), +(148466, 'Lakisha', 1992, 'F', 124), +(148467, 'Peggy', 1992, 'F', 124), +(148468, 'Shaneka', 1992, 'F', 124), +(148469, 'Cassaundra', 1992, 'F', 123), +(148470, 'Harmony', 1992, 'F', 123), +(148471, 'Jacquelin', 1992, 'F', 123), +(148472, 'Lindy', 1992, 'F', 123), +(148473, 'Porsche', 1992, 'F', 123), +(148474, 'Susannah', 1992, 'F', 123), +(148475, 'Allegra', 1992, 'F', 122), +(148476, 'Daria', 1992, 'F', 122), +(148477, 'Genna', 1992, 'F', 122), +(148478, 'Grecia', 1992, 'F', 122), +(148479, 'Jacquelynn', 1992, 'F', 122), +(148480, 'Jeanne', 1992, 'F', 122), +(148481, 'Joshua', 1992, 'F', 122), +(148482, 'Stefany', 1992, 'F', 122), +(148483, 'Susie', 1992, 'F', 122), +(148484, 'Uniqua', 1992, 'F', 122), +(148485, 'Valarie', 1992, 'F', 122), +(148486, 'Wanda', 1992, 'F', 122), +(148487, 'Celine', 1992, 'F', 121), +(148488, 'Charissa', 1992, 'F', 121), +(148489, 'Keeley', 1992, 'F', 121), +(148490, 'Lilly', 1992, 'F', 121), +(148491, 'Louisa', 1992, 'F', 121), +(148492, 'Mika', 1992, 'F', 121), +(148493, 'Sharonda', 1992, 'F', 121), +(148494, 'Therese', 1992, 'F', 121), +(148495, 'Rhianna', 1992, 'F', 120), +(148496, 'Rylee', 1992, 'F', 120), +(148497, 'Taelor', 1992, 'F', 120), +(148498, 'Tenisha', 1992, 'F', 120), +(148499, 'Valentina', 1992, 'F', 120), +(148500, 'Addison', 1992, 'F', 119), +(148501, 'Astrid', 1992, 'F', 119), +(148502, 'Greta', 1992, 'F', 119), +(148503, 'Hunter', 1992, 'F', 119), +(148504, 'Joni', 1992, 'F', 119), +(148505, 'Karyn', 1992, 'F', 119), +(148506, 'Kayleen', 1992, 'F', 119), +(148507, 'Latesha', 1992, 'F', 119), +(148508, 'Ronisha', 1992, 'F', 119), +(148509, 'Salena', 1992, 'F', 119), +(148510, 'Angelita', 1992, 'F', 118), +(148511, 'Ayesha', 1992, 'F', 118), +(148512, 'Brittnay', 1992, 'F', 118), +(148513, 'Halee', 1992, 'F', 118), +(148514, 'Kirstyn', 1992, 'F', 118), +(148515, 'Lillie', 1992, 'F', 118), +(148516, 'Rosalyn', 1992, 'F', 118), +(148517, 'Ryann', 1992, 'F', 118), +(148518, 'Serina', 1992, 'F', 118), +(148519, 'Shae', 1992, 'F', 118), +(148520, 'Allysa', 1992, 'F', 117), +(148521, 'David', 1992, 'F', 117), +(148522, 'Geena', 1992, 'F', 117), +(148523, 'Lacee', 1992, 'F', 117), +(148524, 'Magaly', 1992, 'F', 117), +(148525, 'Maia', 1992, 'F', 117), +(148526, 'Marielena', 1992, 'F', 117), +(148527, 'Nallely', 1992, 'F', 117), +(148528, 'Rosie', 1992, 'F', 117), +(148529, 'Chantell', 1992, 'F', 116), +(148530, 'Gracie', 1992, 'F', 116), +(148531, 'Sammantha', 1992, 'F', 116), +(148532, 'Shira', 1992, 'F', 116), +(148533, 'Sydni', 1992, 'F', 116), +(148534, 'Tristan', 1992, 'F', 116), +(148535, 'Arely', 1992, 'F', 115), +(148536, 'Baylee', 1992, 'F', 115), +(148537, 'Cathleen', 1992, 'F', 115), +(148538, 'Evelin', 1992, 'F', 115), +(148539, 'Jayde', 1992, 'F', 115), +(148540, 'Latia', 1992, 'F', 115), +(148541, 'Acacia', 1992, 'F', 114), +(148542, 'Amara', 1992, 'F', 114), +(148543, 'Brigette', 1992, 'F', 114), +(148544, 'Dania', 1992, 'F', 114), +(148545, 'Jacinda', 1992, 'F', 114), +(148546, 'Jazzmin', 1992, 'F', 114), +(148547, 'Mallorie', 1992, 'F', 114), +(148548, 'Amira', 1992, 'F', 113), +(148549, 'Keyonna', 1992, 'F', 113), +(148550, 'Rosanna', 1992, 'F', 113), +(148551, 'Sheri', 1992, 'F', 113), +(148552, 'Ansley', 1992, 'F', 112), +(148553, 'Dannielle', 1992, 'F', 112), +(148554, 'Estefany', 1992, 'F', 112), +(148555, 'Hayden', 1992, 'F', 112), +(148556, 'Jeri', 1992, 'F', 112), +(148557, 'Karin', 1992, 'F', 112), +(148558, 'Lesly', 1992, 'F', 112), +(148559, 'Shanee', 1992, 'F', 112), +(148560, 'Aliza', 1992, 'F', 111), +(148561, 'Annika', 1992, 'F', 111), +(148562, 'Chelcie', 1992, 'F', 111), +(148563, 'Halley', 1992, 'F', 111), +(148564, 'Ieshia', 1992, 'F', 111), +(148565, 'Sequoia', 1992, 'F', 111), +(148566, 'Tisha', 1992, 'F', 111), +(148567, 'Audriana', 1992, 'F', 110), +(148568, 'Kera', 1992, 'F', 110), +(148569, 'Magali', 1992, 'F', 110), +(148570, 'Mercedez', 1992, 'F', 110), +(148571, 'Breona', 1992, 'F', 109), +(148572, 'Dianne', 1992, 'F', 109), +(148573, 'Dionna', 1992, 'F', 109), +(148574, 'Farrah', 1992, 'F', 109), +(148575, 'Ivory', 1992, 'F', 109), +(148576, 'Jeana', 1992, 'F', 109), +(148577, 'Lila', 1992, 'F', 109), +(148578, 'Lucinda', 1992, 'F', 109), +(148579, 'Myriah', 1992, 'F', 109), +(148580, 'Quinn', 1992, 'F', 109), +(148581, 'Shoshana', 1992, 'F', 109), +(148582, 'Erinn', 1992, 'F', 108), +(148583, 'Kalynn', 1992, 'F', 108), +(148584, 'Kanesha', 1992, 'F', 108), +(148585, 'Kierstin', 1992, 'F', 108), +(148586, 'Marguerite', 1992, 'F', 108), +(148587, 'Raina', 1992, 'F', 108), +(148588, 'Rayna', 1992, 'F', 108), +(148589, 'Rebecka', 1992, 'F', 108), +(148590, 'Samira', 1992, 'F', 108), +(148591, 'Shaylee', 1992, 'F', 108), +(148592, 'Tory', 1992, 'F', 108), +(148593, 'Aida', 1992, 'F', 107), +(148594, 'Areli', 1992, 'F', 107), +(148595, 'Crysta', 1992, 'F', 107), +(148596, 'Jordon', 1992, 'F', 107), +(148597, 'Katia', 1992, 'F', 107), +(148598, 'Kaylah', 1992, 'F', 107), +(148599, 'Keyona', 1992, 'F', 107), +(148600, 'Lashawn', 1992, 'F', 107), +(148601, 'Lianna', 1992, 'F', 107), +(148602, 'Makenna', 1992, 'F', 107), +(148603, 'Marcy', 1992, 'F', 107), +(148604, 'Yanira', 1992, 'F', 107), +(148605, 'Annabelle', 1992, 'F', 106), +(148606, 'Annalisa', 1992, 'F', 106), +(148607, 'Elvira', 1992, 'F', 106), +(148608, 'Jeanna', 1992, 'F', 106), +(148609, 'Kaelyn', 1992, 'F', 106), +(148610, 'Katey', 1992, 'F', 106), +(148611, 'Kiah', 1992, 'F', 106), +(148612, 'Lakendra', 1992, 'F', 106), +(148613, 'Lashae', 1992, 'F', 106), +(148614, 'Lexie', 1992, 'F', 106), +(148615, 'Lupita', 1992, 'F', 106), +(148616, 'Shyanne', 1992, 'F', 106), +(148617, 'Stephenie', 1992, 'F', 106), +(148618, 'Tanika', 1992, 'F', 106), +(148619, 'Annalise', 1992, 'F', 105), +(148620, 'Ashia', 1992, 'F', 105), +(148621, 'Cherise', 1992, 'F', 105), +(148622, 'Juliann', 1992, 'F', 105), +(148623, 'Kendal', 1992, 'F', 105), +(148624, 'Meghann', 1992, 'F', 105), +(148625, 'Miesha', 1992, 'F', 105), +(148626, 'Ariella', 1992, 'F', 104), +(148627, 'Gena', 1992, 'F', 104), +(148628, 'Jelisa', 1992, 'F', 104), +(148629, 'June', 1992, 'F', 104), +(148630, 'Kay', 1992, 'F', 104), +(148631, 'Kayce', 1992, 'F', 104), +(148632, 'Kiarra', 1992, 'F', 104), +(148633, 'Kyrsten', 1992, 'F', 104), +(148634, 'Lakesha', 1992, 'F', 104), +(148635, 'Malorie', 1992, 'F', 104), +(148636, 'Margot', 1992, 'F', 104), +(148637, 'Maricruz', 1992, 'F', 104), +(148638, 'Misha', 1992, 'F', 104), +(148639, 'Pooja', 1992, 'F', 104), +(148640, 'Shasta', 1992, 'F', 104), +(148641, 'Zaira', 1992, 'F', 104), +(148642, 'Annelise', 1992, 'F', 103), +(148643, 'Brooklynn', 1992, 'F', 103), +(148644, 'Elle', 1992, 'F', 103), +(148645, 'Jamesha', 1992, 'F', 103), +(148646, 'Mirna', 1992, 'F', 103), +(148647, 'Pa', 1992, 'F', 103), +(148648, 'Aleshia', 1992, 'F', 102), +(148649, 'Aria', 1992, 'F', 102), +(148650, 'Chanell', 1992, 'F', 102), +(148651, 'Cherelle', 1992, 'F', 102), +(148652, 'Janeth', 1992, 'F', 102), +(148653, 'Latosha', 1992, 'F', 102), +(148654, 'Nakita', 1992, 'F', 102), +(148655, 'Paulette', 1992, 'F', 102), +(148656, 'Shakera', 1992, 'F', 102), +(148657, 'Aleah', 1992, 'F', 101), +(148658, 'Andrew', 1992, 'F', 101), +(148659, 'Cheri', 1992, 'F', 101), +(148660, 'Corrina', 1992, 'F', 101), +(148661, 'Courtnie', 1992, 'F', 101), +(148662, 'Emely', 1992, 'F', 101), +(148663, 'Kelsee', 1992, 'F', 101), +(148664, 'Kindra', 1992, 'F', 101), +(148665, 'Mildred', 1992, 'F', 101), +(148666, 'Nathaly', 1992, 'F', 101), +(148667, 'Terry', 1992, 'F', 101), +(148668, 'Adria', 1992, 'F', 100), +(148669, 'Annabel', 1992, 'F', 100), +(148670, 'Carey', 1992, 'F', 100), +(148671, 'Corie', 1992, 'F', 100), +(148672, 'Deandrea', 1992, 'F', 100), +(148673, 'Diandra', 1992, 'F', 100), +(148674, 'Dixie', 1992, 'F', 100), +(148675, 'Itzel', 1992, 'F', 100), +(148676, 'Jeanine', 1992, 'F', 100), +(148677, 'Keanna', 1992, 'F', 100), +(148678, 'Laila', 1992, 'F', 100), +(148679, 'Leona', 1992, 'F', 100), +(148680, 'Markeisha', 1992, 'F', 100), +(148681, 'Mckayla', 1992, 'F', 100), +(148682, 'Taylar', 1992, 'F', 100), +(148683, 'Michael', 1992, 'M', 54377), +(148684, 'Christopher', 1992, 'M', 42461), +(148685, 'Matthew', 1992, 'M', 37730), +(148686, 'Joshua', 1992, 'M', 36211), +(148687, 'Andrew', 1992, 'M', 30533), +(148688, 'Brandon', 1992, 'M', 29618), +(148689, 'Daniel', 1992, 'M', 29141), +(148690, 'Tyler', 1992, 'M', 28792), +(148691, 'James', 1992, 'M', 28502), +(148692, 'David', 1992, 'M', 28403), +(148693, 'Joseph', 1992, 'M', 27886), +(148694, 'Nicholas', 1992, 'M', 27751), +(148695, 'Ryan', 1992, 'M', 27006), +(148696, 'John', 1992, 'M', 26240), +(148697, 'Jacob', 1992, 'M', 25655), +(148698, 'Zachary', 1992, 'M', 24797), +(148699, 'Robert', 1992, 'M', 24086), +(148700, 'Justin', 1992, 'M', 23614), +(148701, 'Anthony', 1992, 'M', 23160), +(148702, 'William', 1992, 'M', 23060), +(148703, 'Jonathan', 1992, 'M', 21400), +(148704, 'Kyle', 1992, 'M', 20708), +(148705, 'Alexander', 1992, 'M', 20061), +(148706, 'Cody', 1992, 'M', 19873), +(148707, 'Kevin', 1992, 'M', 19634), +(148708, 'Eric', 1992, 'M', 16135), +(148709, 'Thomas', 1992, 'M', 15283), +(148710, 'Dylan', 1992, 'M', 15060), +(148711, 'Steven', 1992, 'M', 15039), +(148712, 'Aaron', 1992, 'M', 14502), +(148713, 'Brian', 1992, 'M', 14100), +(148714, 'Jordan', 1992, 'M', 14029), +(148715, 'Benjamin', 1992, 'M', 13447), +(148716, 'Timothy', 1992, 'M', 12857), +(148717, 'Christian', 1992, 'M', 11951), +(148718, 'Adam', 1992, 'M', 11902), +(148719, 'Jose', 1992, 'M', 11818), +(148720, 'Austin', 1992, 'M', 11452), +(148721, 'Patrick', 1992, 'M', 11404), +(148722, 'Samuel', 1992, 'M', 11333), +(148723, 'Richard', 1992, 'M', 11326), +(148724, 'Sean', 1992, 'M', 11065), +(148725, 'Charles', 1992, 'M', 10464), +(148726, 'Nathan', 1992, 'M', 10147), +(148727, 'Stephen', 1992, 'M', 9306), +(148728, 'Jason', 1992, 'M', 9239), +(148729, 'Jeremy', 1992, 'M', 9043), +(148730, 'Travis', 1992, 'M', 8887), +(148731, 'Mark', 1992, 'M', 8742), +(148732, 'Jesse', 1992, 'M', 8558), +(148733, 'Jeffrey', 1992, 'M', 8469), +(148734, 'Taylor', 1992, 'M', 8240), +(148735, 'Cameron', 1992, 'M', 7354), +(148736, 'Alex', 1992, 'M', 7348), +(148737, 'Paul', 1992, 'M', 6996), +(148738, 'Juan', 1992, 'M', 6945), +(148739, 'Bryan', 1992, 'M', 6834), +(148740, 'Dustin', 1992, 'M', 6798), +(148741, 'Kenneth', 1992, 'M', 6730), +(148742, 'Gregory', 1992, 'M', 6496), +(148743, 'Scott', 1992, 'M', 6447), +(148744, 'Derek', 1992, 'M', 6293), +(148745, 'Trevor', 1992, 'M', 6192), +(148746, 'Luis', 1992, 'M', 6162), +(148747, 'Corey', 1992, 'M', 6137), +(148748, 'Evan', 1992, 'M', 6047), +(148749, 'Jared', 1992, 'M', 5862), +(148750, 'Ian', 1992, 'M', 5534), +(148751, 'Carlos', 1992, 'M', 5334), +(148752, 'Edward', 1992, 'M', 5229), +(148753, 'Shawn', 1992, 'M', 5151), +(148754, 'Bradley', 1992, 'M', 5095), +(148755, 'Dillon', 1992, 'M', 5059), +(148756, 'Caleb', 1992, 'M', 5036), +(148757, 'Devin', 1992, 'M', 4970), +(148758, 'Ethan', 1992, 'M', 4905), +(148759, 'Shane', 1992, 'M', 4845), +(148760, 'Jesus', 1992, 'M', 4817), +(148761, 'Nathaniel', 1992, 'M', 4687), +(148762, 'Connor', 1992, 'M', 4604), +(148763, 'Peter', 1992, 'M', 4592), +(148764, 'Marcus', 1992, 'M', 4535), +(148765, 'Cory', 1992, 'M', 4435), +(148766, 'Blake', 1992, 'M', 4394), +(148767, 'Antonio', 1992, 'M', 4342), +(148768, 'Gabriel', 1992, 'M', 4334), +(148769, 'Victor', 1992, 'M', 4291), +(148770, 'Garrett', 1992, 'M', 4267), +(148771, 'Logan', 1992, 'M', 4223), +(148772, 'Miguel', 1992, 'M', 4166), +(148773, 'Mitchell', 1992, 'M', 4119), +(148774, 'Vincent', 1992, 'M', 4104), +(148775, 'Luke', 1992, 'M', 4064), +(148776, 'Seth', 1992, 'M', 3911), +(148777, 'George', 1992, 'M', 3892), +(148778, 'Adrian', 1992, 'M', 3859), +(148779, 'Brett', 1992, 'M', 3822), +(148780, 'Erik', 1992, 'M', 3817), +(148781, 'Spencer', 1992, 'M', 3693), +(148782, 'Joel', 1992, 'M', 3662), +(148783, 'Tanner', 1992, 'M', 3642), +(148784, 'Keith', 1992, 'M', 3630), +(148785, 'Dakota', 1992, 'M', 3613), +(148786, 'Raymond', 1992, 'M', 3586), +(148787, 'Casey', 1992, 'M', 3573), +(148788, 'Lucas', 1992, 'M', 3377), +(148789, 'Phillip', 1992, 'M', 3374), +(148790, 'Chad', 1992, 'M', 3356), +(148791, 'Jorge', 1992, 'M', 3299), +(148792, 'Donald', 1992, 'M', 3265), +(148793, 'Wesley', 1992, 'M', 3237), +(148794, 'Ronald', 1992, 'M', 3223), +(148795, 'Alejandro', 1992, 'M', 3174), +(148796, 'Angel', 1992, 'M', 3049), +(148797, 'Ricardo', 1992, 'M', 3022), +(148798, 'Chase', 1992, 'M', 3018), +(148799, 'Francisco', 1992, 'M', 2934), +(148800, 'Martin', 1992, 'M', 2931), +(148801, 'Jake', 1992, 'M', 2928), +(148802, 'Derrick', 1992, 'M', 2914), +(148803, 'Dalton', 1992, 'M', 2901), +(148804, 'Johnathan', 1992, 'M', 2895), +(148805, 'Devon', 1992, 'M', 2772), +(148806, 'Isaac', 1992, 'M', 2770), +(148807, 'Frank', 1992, 'M', 2755), +(148808, 'Douglas', 1992, 'M', 2629), +(148809, 'Colin', 1992, 'M', 2627), +(148810, 'Mario', 1992, 'M', 2623), +(148811, 'Alan', 1992, 'M', 2604), +(148812, 'Oscar', 1992, 'M', 2583), +(148813, 'Manuel', 1992, 'M', 2581), +(148814, 'Eduardo', 1992, 'M', 2561), +(148815, 'Colton', 1992, 'M', 2547), +(148816, 'Julian', 1992, 'M', 2544), +(148817, 'Hunter', 1992, 'M', 2540), +(148818, 'Jonathon', 1992, 'M', 2471), +(148819, 'Dominic', 1992, 'M', 2440), +(148820, 'Philip', 1992, 'M', 2432), +(148821, 'Gary', 1992, 'M', 2390), +(148822, 'Andre', 1992, 'M', 2389), +(148823, 'Henry', 1992, 'M', 2339), +(148824, 'Curtis', 1992, 'M', 2321), +(148825, 'Cole', 1992, 'M', 2310), +(148826, 'Omar', 1992, 'M', 2305), +(148827, 'Brendan', 1992, 'M', 2296), +(148828, 'Troy', 1992, 'M', 2288), +(148829, 'Xavier', 1992, 'M', 2243), +(148830, 'Edgar', 1992, 'M', 2203), +(148831, 'Mason', 1992, 'M', 2200), +(148832, 'Dennis', 1992, 'M', 2165), +(148833, 'Javier', 1992, 'M', 2132), +(148834, 'Ivan', 1992, 'M', 2131), +(148835, 'Johnny', 1992, 'M', 2094), +(148836, 'Craig', 1992, 'M', 2070), +(148837, 'Jack', 1992, 'M', 2067), +(148838, 'Hector', 1992, 'M', 2015), +(148839, 'Sergio', 1992, 'M', 2015), +(148840, 'Roberto', 1992, 'M', 2007), +(148841, 'Randy', 1992, 'M', 2006), +(148842, 'Brent', 1992, 'M', 1958), +(148843, 'Jeremiah', 1992, 'M', 1938), +(148844, 'Tevin', 1992, 'M', 1936), +(148845, 'Tony', 1992, 'M', 1925), +(148846, 'Darius', 1992, 'M', 1922), +(148847, 'Allen', 1992, 'M', 1918), +(148848, 'Levi', 1992, 'M', 1913), +(148849, 'Grant', 1992, 'M', 1911), +(148850, 'Clayton', 1992, 'M', 1908), +(148851, 'Fernando', 1992, 'M', 1877), +(148852, 'Max', 1992, 'M', 1876), +(148853, 'Maxwell', 1992, 'M', 1876), +(148854, 'Alec', 1992, 'M', 1867), +(148855, 'Larry', 1992, 'M', 1862), +(148856, 'Mathew', 1992, 'M', 1832), +(148857, 'Bryce', 1992, 'M', 1830), +(148858, 'Jeffery', 1992, 'M', 1821), +(148859, 'Edwin', 1992, 'M', 1809), +(148860, 'Ruben', 1992, 'M', 1806), +(148861, 'Nicolas', 1992, 'M', 1798), +(148862, 'Dominique', 1992, 'M', 1787), +(148863, 'Carl', 1992, 'M', 1779), +(148864, 'Drew', 1992, 'M', 1779), +(148865, 'Jerry', 1992, 'M', 1769), +(148866, 'Zachery', 1992, 'M', 1749), +(148867, 'Russell', 1992, 'M', 1710), +(148868, 'Andres', 1992, 'M', 1708), +(148869, 'Collin', 1992, 'M', 1672), +(148870, 'Pedro', 1992, 'M', 1667), +(148871, 'Kristopher', 1992, 'M', 1636), +(148872, 'Danny', 1992, 'M', 1623), +(148873, 'Ricky', 1992, 'M', 1620), +(148874, 'Louis', 1992, 'M', 1616), +(148875, 'Lawrence', 1992, 'M', 1615), +(148876, 'Calvin', 1992, 'M', 1613), +(148877, 'Cesar', 1992, 'M', 1600), +(148878, 'Terry', 1992, 'M', 1595), +(148879, 'Colby', 1992, 'M', 1574), +(148880, 'Marco', 1992, 'M', 1574), +(148881, 'Devante', 1992, 'M', 1565), +(148882, 'Jimmy', 1992, 'M', 1556), +(148883, 'Julio', 1992, 'M', 1542), +(148884, 'Preston', 1992, 'M', 1526), +(148885, 'Elijah', 1992, 'M', 1518), +(148886, 'Lance', 1992, 'M', 1507), +(148887, 'Albert', 1992, 'M', 1504), +(148888, 'Malcolm', 1992, 'M', 1495), +(148889, 'Raul', 1992, 'M', 1488), +(148890, 'Micheal', 1992, 'M', 1485), +(148891, 'Rafael', 1992, 'M', 1482), +(148892, 'Rodney', 1992, 'M', 1476), +(148893, 'Clinton', 1992, 'M', 1466), +(148894, 'Isaiah', 1992, 'M', 1449), +(148895, 'Marc', 1992, 'M', 1447), +(148896, 'Roger', 1992, 'M', 1438), +(148897, 'Jaime', 1992, 'M', 1429), +(148898, 'Todd', 1992, 'M', 1424), +(148899, 'Noah', 1992, 'M', 1423), +(148900, 'Walter', 1992, 'M', 1421), +(148901, 'Arthur', 1992, 'M', 1412), +(148902, 'Joe', 1992, 'M', 1392), +(148903, 'Bobby', 1992, 'M', 1387), +(148904, 'Erick', 1992, 'M', 1373), +(148905, 'Jackson', 1992, 'M', 1362), +(148906, 'Emmanuel', 1992, 'M', 1358), +(148907, 'Alberto', 1992, 'M', 1348), +(148908, 'Devonte', 1992, 'M', 1325), +(148909, 'Darren', 1992, 'M', 1323), +(148910, 'Gerardo', 1992, 'M', 1299), +(148911, 'Sebastian', 1992, 'M', 1292), +(148912, 'Billy', 1992, 'M', 1282), +(148913, 'Ross', 1992, 'M', 1277), +(148914, 'Terrance', 1992, 'M', 1275), +(148915, 'Armando', 1992, 'M', 1273), +(148916, 'Randall', 1992, 'M', 1231), +(148917, 'Reginald', 1992, 'M', 1230), +(148918, 'Jay', 1992, 'M', 1219), +(148919, 'Willie', 1992, 'M', 1211), +(148920, 'Brady', 1992, 'M', 1204), +(148921, 'Trenton', 1992, 'M', 1203), +(148922, 'Micah', 1992, 'M', 1196), +(148923, 'Jon', 1992, 'M', 1195), +(148924, 'Jamal', 1992, 'M', 1194), +(148925, 'Donovan', 1992, 'M', 1176), +(148926, 'Gerald', 1992, 'M', 1175), +(148927, 'Marvin', 1992, 'M', 1175), +(148928, 'Maurice', 1992, 'M', 1163), +(148929, 'Nolan', 1992, 'M', 1163), +(148930, 'Andy', 1992, 'M', 1161), +(148931, 'Hayden', 1992, 'M', 1159), +(148932, 'Jamie', 1992, 'M', 1158), +(148933, 'Ramon', 1992, 'M', 1157), +(148934, 'Branden', 1992, 'M', 1149), +(148935, 'Kody', 1992, 'M', 1144), +(148936, 'Abraham', 1992, 'M', 1143), +(148937, 'Lee', 1992, 'M', 1130), +(148938, 'Parker', 1992, 'M', 1117), +(148939, 'Trent', 1992, 'M', 1099), +(148940, 'Skyler', 1992, 'M', 1097), +(148941, 'Eddie', 1992, 'M', 1091), +(148942, 'Theodore', 1992, 'M', 1089), +(148943, 'Damian', 1992, 'M', 1087), +(148944, 'Bryant', 1992, 'M', 1084), +(148945, 'Marcos', 1992, 'M', 1077), +(148946, 'Desmond', 1992, 'M', 1067), +(148947, 'Nickolas', 1992, 'M', 1067), +(148948, 'Riley', 1992, 'M', 1067), +(148949, 'Gavin', 1992, 'M', 1066), +(148950, 'Arturo', 1992, 'M', 1064), +(148951, 'Trey', 1992, 'M', 1059), +(148952, 'Enrique', 1992, 'M', 1055), +(148953, 'Terrence', 1992, 'M', 1055), +(148954, 'Alfredo', 1992, 'M', 1048), +(148955, 'Jessie', 1992, 'M', 1048), +(148956, 'Cristian', 1992, 'M', 1046), +(148957, 'Deandre', 1992, 'M', 1037), +(148958, 'Frederick', 1992, 'M', 1036), +(148959, 'Landon', 1992, 'M', 1036), +(148960, 'Zackary', 1992, 'M', 1031), +(148961, 'Johnathon', 1992, 'M', 1023), +(148962, 'Demetrius', 1992, 'M', 1022), +(148963, 'Kaleb', 1992, 'M', 1022), +(148964, 'Harrison', 1992, 'M', 1019), +(148965, 'Miles', 1992, 'M', 1018), +(148966, 'Damon', 1992, 'M', 1005), +(148967, 'Josue', 1992, 'M', 991), +(148968, 'Roy', 1992, 'M', 991), +(148969, 'Morgan', 1992, 'M', 988), +(148970, 'Shaun', 1992, 'M', 988), +(148971, 'Tyrone', 1992, 'M', 975), +(148972, 'Conor', 1992, 'M', 924), +(148973, 'Bruce', 1992, 'M', 922), +(148974, 'Salvador', 1992, 'M', 921), +(148975, 'Darrell', 1992, 'M', 915), +(148976, 'Wayne', 1992, 'M', 915), +(148977, 'Marquis', 1992, 'M', 914), +(148978, 'Conner', 1992, 'M', 912), +(148979, 'Israel', 1992, 'M', 902), +(148980, 'Jerome', 1992, 'M', 899), +(148981, 'Dallas', 1992, 'M', 895), +(148982, 'Giovanni', 1992, 'M', 891), +(148983, 'Diego', 1992, 'M', 888), +(148984, 'Tommy', 1992, 'M', 883), +(148985, 'Steve', 1992, 'M', 882), +(148986, 'Marshall', 1992, 'M', 881), +(148987, 'Brock', 1992, 'M', 874), +(148988, 'Zachariah', 1992, 'M', 874), +(148989, 'Gustavo', 1992, 'M', 872), +(148990, 'Damien', 1992, 'M', 865), +(148991, 'Ronnie', 1992, 'M', 861), +(148992, 'Franklin', 1992, 'M', 849), +(148993, 'Terrell', 1992, 'M', 849), +(148994, 'Ernesto', 1992, 'M', 847), +(148995, 'Geoffrey', 1992, 'M', 845), +(148996, 'Byron', 1992, 'M', 842), +(148997, 'Dean', 1992, 'M', 835), +(148998, 'Forrest', 1992, 'M', 832), +(148999, 'Dominick', 1992, 'M', 821), +(149000, 'Francis', 1992, 'M', 802), +(149001, 'Nelson', 1992, 'M', 801), +(149002, 'Kelvin', 1992, 'M', 796), +(149003, 'Darryl', 1992, 'M', 795), +(149004, 'Neil', 1992, 'M', 791), +(149005, 'Kendall', 1992, 'M', 787), +(149006, 'Josiah', 1992, 'M', 783), +(149007, 'Melvin', 1992, 'M', 783), +(149008, 'Zackery', 1992, 'M', 777), +(149009, 'Leonard', 1992, 'M', 775), +(149010, 'Rene', 1992, 'M', 773), +(149011, 'Chance', 1992, 'M', 772), +(149012, 'Denzel', 1992, 'M', 768), +(149013, 'Alexis', 1992, 'M', 766), +(149014, 'Pablo', 1992, 'M', 765), +(149015, 'Lorenzo', 1992, 'M', 763), +(149016, 'Angelo', 1992, 'M', 761), +(149017, 'Gage', 1992, 'M', 756), +(149018, 'Karl', 1992, 'M', 738), +(149019, 'Ernest', 1992, 'M', 722), +(149020, 'Eugene', 1992, 'M', 714), +(149021, 'Fabian', 1992, 'M', 709), +(149022, 'Eli', 1992, 'M', 706), +(149023, 'Dale', 1992, 'M', 704), +(149024, 'Elias', 1992, 'M', 697), +(149025, 'Glenn', 1992, 'M', 696), +(149026, 'Stanley', 1992, 'M', 694), +(149027, 'Ty', 1992, 'M', 693), +(149028, 'Kurt', 1992, 'M', 691), +(149029, 'Felix', 1992, 'M', 689), +(149030, 'Simon', 1992, 'M', 687), +(149031, 'Wade', 1992, 'M', 686), +(149032, 'Jermaine', 1992, 'M', 681), +(149033, 'Kendrick', 1992, 'M', 677), +(149034, 'Dwayne', 1992, 'M', 676), +(149035, 'Quinton', 1992, 'M', 670), +(149036, 'Tyrell', 1992, 'M', 668), +(149037, 'Harold', 1992, 'M', 665), +(149038, 'Orlando', 1992, 'M', 663), +(149039, 'Oliver', 1992, 'M', 661), +(149040, 'Warren', 1992, 'M', 661), +(149041, 'Carson', 1992, 'M', 660), +(149042, 'Dante', 1992, 'M', 659), +(149043, 'Guillermo', 1992, 'M', 655), +(149044, 'Emanuel', 1992, 'M', 652), +(149045, 'Keenan', 1992, 'M', 650), +(149046, 'Brendon', 1992, 'M', 648), +(149047, 'Quentin', 1992, 'M', 647), +(149048, 'Harry', 1992, 'M', 644), +(149049, 'Wyatt', 1992, 'M', 643), +(149050, 'Brennan', 1992, 'M', 641), +(149051, 'Alvin', 1992, 'M', 633), +(149052, 'Abel', 1992, 'M', 631), +(149053, 'Roman', 1992, 'M', 626), +(149054, 'Tristan', 1992, 'M', 623), +(149055, 'Weston', 1992, 'M', 622), +(149056, 'Zane', 1992, 'M', 622), +(149057, 'Saul', 1992, 'M', 616), +(149058, 'Stefan', 1992, 'M', 613), +(149059, 'Hugo', 1992, 'M', 612), +(149060, 'Jalen', 1992, 'M', 612), +(149061, 'Gilbert', 1992, 'M', 611), +(149062, 'Sheldon', 1992, 'M', 608), +(149063, 'Leonardo', 1992, 'M', 602), +(149064, 'Ismael', 1992, 'M', 600), +(149065, 'Rudy', 1992, 'M', 597), +(149066, 'Allan', 1992, 'M', 595), +(149067, 'Emilio', 1992, 'M', 595), +(149068, 'Jarrod', 1992, 'M', 595), +(149069, 'Rodolfo', 1992, 'M', 593), +(149070, 'Leon', 1992, 'M', 591), +(149071, 'Esteban', 1992, 'M', 589), +(149072, 'Myles', 1992, 'M', 585), +(149073, 'Beau', 1992, 'M', 584), +(149074, 'Ashton', 1992, 'M', 582), +(149075, 'Corbin', 1992, 'M', 582), +(149076, 'Ray', 1992, 'M', 582), +(149077, 'Malik', 1992, 'M', 581), +(149078, 'Clint', 1992, 'M', 579), +(149079, 'Devan', 1992, 'M', 579), +(149080, 'Kameron', 1992, 'M', 578), +(149081, 'Elliott', 1992, 'M', 577), +(149082, 'Sam', 1992, 'M', 574), +(149083, 'Joey', 1992, 'M', 573), +(149084, 'Graham', 1992, 'M', 571), +(149085, 'Alfred', 1992, 'M', 570), +(149086, 'Elliot', 1992, 'M', 561), +(149087, 'Jordon', 1992, 'M', 561), +(149088, 'Coty', 1992, 'M', 558), +(149089, 'Harley', 1992, 'M', 556), +(149090, 'Cedric', 1992, 'M', 553), +(149091, 'Chandler', 1992, 'M', 553), +(149092, 'Dane', 1992, 'M', 552), +(149093, 'Mackenzie', 1992, 'M', 548), +(149094, 'Braden', 1992, 'M', 544), +(149095, 'Lewis', 1992, 'M', 544), +(149096, 'Felipe', 1992, 'M', 542), +(149097, 'Rashad', 1992, 'M', 540), +(149098, 'Clifford', 1992, 'M', 538), +(149099, 'Kelly', 1992, 'M', 534), +(149100, 'Darnell', 1992, 'M', 532), +(149101, 'Alfonso', 1992, 'M', 531), +(149102, 'Bernard', 1992, 'M', 531), +(149103, 'Tylor', 1992, 'M', 531), +(149104, 'Donte', 1992, 'M', 529), +(149105, 'Gilberto', 1992, 'M', 529), +(149106, 'Moises', 1992, 'M', 528), +(149107, 'Drake', 1992, 'M', 527), +(149108, 'Shaquille', 1992, 'M', 524), +(149109, 'Stuart', 1992, 'M', 519), +(149110, 'Tre', 1992, 'M', 518), +(149111, 'Clarence', 1992, 'M', 517), +(149112, 'Kirk', 1992, 'M', 515), +(149113, 'Roderick', 1992, 'M', 512), +(149114, 'Wilson', 1992, 'M', 511), +(149115, 'Noel', 1992, 'M', 510), +(149116, 'Rogelio', 1992, 'M', 510), +(149117, 'Brenden', 1992, 'M', 509), +(149118, 'Stephan', 1992, 'M', 508), +(149119, 'Kenny', 1992, 'M', 505), +(149120, 'Blaine', 1992, 'M', 503), +(149121, 'Jarred', 1992, 'M', 503), +(149122, 'Sterling', 1992, 'M', 503), +(149123, 'Garret', 1992, 'M', 498), +(149124, 'Ralph', 1992, 'M', 498), +(149125, 'Tucker', 1992, 'M', 498), +(149126, 'Lamar', 1992, 'M', 496), +(149127, 'Antoine', 1992, 'M', 495), +(149128, 'Jarrett', 1992, 'M', 495), +(149129, 'Deshawn', 1992, 'M', 494), +(149130, 'Kristian', 1992, 'M', 493), +(149131, 'Davon', 1992, 'M', 490), +(149132, 'Carter', 1992, 'M', 487), +(149133, 'Charlie', 1992, 'M', 486), +(149134, 'Quinn', 1992, 'M', 486), +(149135, 'Julius', 1992, 'M', 485), +(149136, 'Keegan', 1992, 'M', 485), +(149137, 'Reid', 1992, 'M', 482), +(149138, 'Ramiro', 1992, 'M', 480), +(149139, 'Lukas', 1992, 'M', 478), +(149140, 'Barry', 1992, 'M', 474), +(149141, 'Earl', 1992, 'M', 474), +(149142, 'Kurtis', 1992, 'M', 472), +(149143, 'Brad', 1992, 'M', 471), +(149144, 'Skylar', 1992, 'M', 469), +(149145, 'Avery', 1992, 'M', 468), +(149146, 'Leo', 1992, 'M', 468), +(149147, 'Shannon', 1992, 'M', 466), +(149148, 'Howard', 1992, 'M', 464), +(149149, 'Rodrigo', 1992, 'M', 464), +(149150, 'Bret', 1992, 'M', 463), +(149151, 'Chris', 1992, 'M', 460), +(149152, 'Demarcus', 1992, 'M', 460), +(149153, 'Kory', 1992, 'M', 459), +(149154, 'Ariel', 1992, 'M', 456), +(149155, 'Shelby', 1992, 'M', 454), +(149156, 'Owen', 1992, 'M', 453), +(149157, 'Marlon', 1992, 'M', 452), +(149158, 'Dexter', 1992, 'M', 451), +(149159, 'Ali', 1992, 'M', 446), +(149160, 'Nikolas', 1992, 'M', 443), +(149161, 'Tyree', 1992, 'M', 440), +(149162, 'Carlton', 1992, 'M', 437), +(149163, 'Terence', 1992, 'M', 437), +(149164, 'Jakob', 1992, 'M', 436), +(149165, 'Tomas', 1992, 'M', 435), +(149166, 'Clay', 1992, 'M', 433), +(149167, 'Derick', 1992, 'M', 428), +(149168, 'Jaron', 1992, 'M', 428), +(149169, 'Kyler', 1992, 'M', 427), +(149170, 'Daryl', 1992, 'M', 423), +(149171, 'Courtney', 1992, 'M', 419), +(149172, 'Jarvis', 1992, 'M', 419), +(149173, 'Davonte', 1992, 'M', 414), +(149174, 'Leroy', 1992, 'M', 413), +(149175, 'Jayson', 1992, 'M', 411), +(149176, 'Mauricio', 1992, 'M', 410), +(149177, 'Dwight', 1992, 'M', 409), +(149178, 'Jamar', 1992, 'M', 409), +(149179, 'Javon', 1992, 'M', 407), +(149180, 'Nathanael', 1992, 'M', 407), +(149181, 'Adan', 1992, 'M', 406), +(149182, 'Norman', 1992, 'M', 405), +(149183, 'Rolando', 1992, 'M', 403), +(149184, 'Dimitri', 1992, 'M', 401), +(149185, 'Kasey', 1992, 'M', 401), +(149186, 'Gordon', 1992, 'M', 399), +(149187, 'Quincy', 1992, 'M', 399), +(149188, 'Alonzo', 1992, 'M', 398), +(149189, 'Fredrick', 1992, 'M', 398), +(149190, 'Neal', 1992, 'M', 396), +(149191, 'Raheem', 1992, 'M', 395), +(149192, 'Bryson', 1992, 'M', 393), +(149193, 'Chaz', 1992, 'M', 393), +(149194, 'Isiah', 1992, 'M', 393), +(149195, 'Davis', 1992, 'M', 392), +(149196, 'Markus', 1992, 'M', 390), +(149197, 'Perry', 1992, 'M', 387), +(149198, 'Trevon', 1992, 'M', 387), +(149199, 'Santiago', 1992, 'M', 386), +(149200, 'Sidney', 1992, 'M', 386), +(149201, 'Nigel', 1992, 'M', 384), +(149202, 'Humberto', 1992, 'M', 382), +(149203, 'Efrain', 1992, 'M', 377), +(149204, 'Keaton', 1992, 'M', 373), +(149205, 'Deonte', 1992, 'M', 371), +(149206, 'Freddy', 1992, 'M', 371), +(149207, 'Dorian', 1992, 'M', 370), +(149208, 'Glen', 1992, 'M', 370), +(149209, 'Kent', 1992, 'M', 369), +(149210, 'Deon', 1992, 'M', 366), +(149211, 'Dion', 1992, 'M', 366), +(149212, 'Reed', 1992, 'M', 366), +(149213, 'Korey', 1992, 'M', 365), +(149214, 'Tyson', 1992, 'M', 365), +(149215, 'Jean', 1992, 'M', 363), +(149216, 'Deangelo', 1992, 'M', 360), +(149217, 'Roland', 1992, 'M', 358), +(149218, 'Ben', 1992, 'M', 357), +(149219, 'Clifton', 1992, 'M', 355), +(149220, 'Noe', 1992, 'M', 355), +(149221, 'Dillion', 1992, 'M', 354), +(149222, 'Lonnie', 1992, 'M', 354), +(149223, 'Brenton', 1992, 'M', 353), +(149224, 'Cornelius', 1992, 'M', 353), +(149225, 'Irvin', 1992, 'M', 352), +(149226, 'Mike', 1992, 'M', 351), +(149227, 'Heath', 1992, 'M', 350), +(149228, 'Cooper', 1992, 'M', 349), +(149229, 'Darian', 1992, 'M', 349), +(149230, 'Kareem', 1992, 'M', 347), +(149231, 'Jace', 1992, 'M', 343), +(149232, 'Lloyd', 1992, 'M', 343), +(149233, 'Marquise', 1992, 'M', 343), +(149234, 'Lamont', 1992, 'M', 342), +(149235, 'Dillan', 1992, 'M', 341), +(149236, 'Shayne', 1992, 'M', 341), +(149237, 'Aron', 1992, 'M', 337), +(149238, 'Frankie', 1992, 'M', 336), +(149239, 'Marcel', 1992, 'M', 336), +(149240, 'Salvatore', 1992, 'M', 336), +(149241, 'Baby', 1992, 'M', 333), +(149242, 'Milton', 1992, 'M', 330), +(149243, 'Griffin', 1992, 'M', 329), +(149244, 'Akeem', 1992, 'M', 325), +(149245, 'Duane', 1992, 'M', 325), +(149246, 'Infant', 1992, 'M', 324), +(149247, 'Rickey', 1992, 'M', 324), +(149248, 'Moses', 1992, 'M', 323), +(149249, 'Vernon', 1992, 'M', 323), +(149250, 'Darrin', 1992, 'M', 322), +(149251, 'Kristofer', 1992, 'M', 322), +(149252, 'Devonta', 1992, 'M', 320), +(149253, 'Leonel', 1992, 'M', 320), +(149254, 'Colten', 1992, 'M', 317), +(149255, 'Fred', 1992, 'M', 316), +(149256, 'Vicente', 1992, 'M', 315), +(149257, 'Alvaro', 1992, 'M', 313), +(149258, 'Rick', 1992, 'M', 312), +(149259, 'Arnold', 1992, 'M', 311), +(149260, 'Raphael', 1992, 'M', 311), +(149261, 'Ahmad', 1992, 'M', 309), +(149262, 'Damion', 1992, 'M', 309), +(149263, 'Kadeem', 1992, 'M', 309), +(149264, 'Mohammad', 1992, 'M', 309), +(149265, 'Quintin', 1992, 'M', 308), +(149266, 'Brice', 1992, 'M', 307), +(149267, 'Dashawn', 1992, 'M', 307), +(149268, 'Herbert', 1992, 'M', 307), +(149269, 'Jamel', 1992, 'M', 307), +(149270, 'Jaquan', 1992, 'M', 307), +(149271, 'Uriel', 1992, 'M', 306), +(149272, 'Darrius', 1992, 'M', 302), +(149273, 'Tracy', 1992, 'M', 302), +(149274, 'Cortez', 1992, 'M', 301), +(149275, 'Liam', 1992, 'M', 301), +(149276, 'Everett', 1992, 'M', 299), +(149277, 'Robin', 1992, 'M', 299), +(149278, 'Sawyer', 1992, 'M', 299), +(149279, 'Nestor', 1992, 'M', 297), +(149280, 'Lane', 1992, 'M', 296), +(149281, 'Rigoberto', 1992, 'M', 295), +(149282, 'Pierre', 1992, 'M', 294), +(149283, 'Cullen', 1992, 'M', 293), +(149284, 'Darin', 1992, 'M', 293), +(149285, 'Don', 1992, 'M', 293), +(149286, 'Reynaldo', 1992, 'M', 292), +(149287, 'Daquan', 1992, 'M', 291), +(149288, 'Deven', 1992, 'M', 291), +(149289, 'Mitchel', 1992, 'M', 289), +(149290, 'Toby', 1992, 'M', 289), +(149291, 'Kerry', 1992, 'M', 288), +(149292, 'Antwan', 1992, 'M', 285), +(149293, 'Brody', 1992, 'M', 283), +(149294, 'Ignacio', 1992, 'M', 283), +(149295, 'Nico', 1992, 'M', 283), +(149296, 'Guy', 1992, 'M', 282), +(149297, 'Darien', 1992, 'M', 281), +(149298, 'Freddie', 1992, 'M', 281), +(149299, 'Nathanial', 1992, 'M', 281), +(149300, 'Agustin', 1992, 'M', 279), +(149301, 'Grayson', 1992, 'M', 279), +(149302, 'Winston', 1992, 'M', 278), +(149303, 'Bo', 1992, 'M', 276), +(149304, 'Clark', 1992, 'M', 276), +(149305, 'Conrad', 1992, 'M', 276), +(149306, 'Paris', 1992, 'M', 275), +(149307, 'Rory', 1992, 'M', 272), +(149308, 'Dana', 1992, 'M', 271), +(149309, 'Bradford', 1992, 'M', 270), +(149310, 'Joaquin', 1992, 'M', 270), +(149311, 'Sammy', 1992, 'M', 270), +(149312, 'Aidan', 1992, 'M', 269), +(149313, 'Gerard', 1992, 'M', 269), +(149314, 'Johnnie', 1992, 'M', 269), +(149315, 'Addison', 1992, 'M', 263), +(149316, 'Ezekiel', 1992, 'M', 262), +(149317, 'Gino', 1992, 'M', 261), +(149318, 'Jimmie', 1992, 'M', 261), +(149319, 'Payton', 1992, 'M', 261), +(149320, 'Austen', 1992, 'M', 259), +(149321, 'Brandyn', 1992, 'M', 259), +(149322, 'Duncan', 1992, 'M', 259), +(149323, 'Donnie', 1992, 'M', 258), +(149324, 'Dylon', 1992, 'M', 258), +(149325, 'Jovan', 1992, 'M', 257), +(149326, 'Solomon', 1992, 'M', 256), +(149327, 'Loren', 1992, 'M', 255), +(149328, 'Coleman', 1992, 'M', 254), +(149329, 'Irving', 1992, 'M', 254), +(149330, 'Issac', 1992, 'M', 254), +(149331, 'Amir', 1992, 'M', 253), +(149332, 'Braxton', 1992, 'M', 253), +(149333, 'Blair', 1992, 'M', 252), +(149334, 'Gene', 1992, 'M', 252), +(149335, 'Will', 1992, 'M', 252), +(149336, 'Jamison', 1992, 'M', 251), +(149337, 'Osvaldo', 1992, 'M', 251), +(149338, 'Lester', 1992, 'M', 250), +(149339, 'Thaddeus', 1992, 'M', 250), +(149340, 'Garth', 1992, 'M', 249), +(149341, 'Khalil', 1992, 'M', 249), +(149342, 'Brandan', 1992, 'M', 248), +(149343, 'Guadalupe', 1992, 'M', 248), +(149344, 'Reuben', 1992, 'M', 248), +(149345, 'Dewayne', 1992, 'M', 247), +(149346, 'Stephon', 1992, 'M', 246), +(149347, 'German', 1992, 'M', 243), +(149348, 'Jasper', 1992, 'M', 243), +(149349, 'Ladarius', 1992, 'M', 243), +(149350, 'Travon', 1992, 'M', 242), +(149351, 'Arron', 1992, 'M', 241), +(149352, 'Bennett', 1992, 'M', 239), +(149353, 'Brooks', 1992, 'M', 239), +(149354, 'Mohammed', 1992, 'M', 238), +(149355, 'Dominque', 1992, 'M', 237), +(149356, 'Ryne', 1992, 'M', 236), +(149357, 'Vance', 1992, 'M', 236), +(149358, 'Adolfo', 1992, 'M', 235), +(149359, 'Elmer', 1992, 'M', 235), +(149360, 'Rico', 1992, 'M', 235), +(149361, 'Stewart', 1992, 'M', 233), +(149362, 'Dandre', 1992, 'M', 232), +(149363, 'Myron', 1992, 'M', 232), +(149364, 'Codey', 1992, 'M', 230), +(149365, 'Jamaal', 1992, 'M', 228), +(149366, 'Javonte', 1992, 'M', 228), +(149367, 'Estevan', 1992, 'M', 227), +(149368, 'Tate', 1992, 'M', 227), +(149369, 'Jerrod', 1992, 'M', 226), +(149370, 'Nick', 1992, 'M', 226), +(149371, 'Rashawn', 1992, 'M', 226), +(149372, 'Colt', 1992, 'M', 225), +(149373, 'Edgardo', 1992, 'M', 225), +(149374, 'Anton', 1992, 'M', 224), +(149375, 'Holden', 1992, 'M', 224), +(149376, 'Jonah', 1992, 'M', 224), +(149377, 'Jeff', 1992, 'M', 221), +(149378, 'Leland', 1992, 'M', 221), +(149379, 'Trever', 1992, 'M', 220), +(149380, 'Herman', 1992, 'M', 219), +(149381, 'Leslie', 1992, 'M', 216), +(149382, 'Reece', 1992, 'M', 216), +(149383, 'Zechariah', 1992, 'M', 216), +(149384, 'Jackie', 1992, 'M', 215), +(149385, 'Donavan', 1992, 'M', 214), +(149386, 'Chadwick', 1992, 'M', 213), +(149387, 'Bradly', 1992, 'M', 212), +(149388, 'Kolby', 1992, 'M', 212), +(149389, 'Devontae', 1992, 'M', 211), +(149390, 'Octavio', 1992, 'M', 211), +(149391, 'Aubrey', 1992, 'M', 209), +(149392, 'Codie', 1992, 'M', 209), +(149393, 'Dan', 1992, 'M', 209), +(149394, 'Jairo', 1992, 'M', 209), +(149395, 'Jefferson', 1992, 'M', 209), +(149396, 'Zakary', 1992, 'M', 209), +(149397, 'Tory', 1992, 'M', 208), +(149398, 'Ervin', 1992, 'M', 207), +(149399, 'Heriberto', 1992, 'M', 207), +(149400, 'Maximilian', 1992, 'M', 207), +(149401, 'Rex', 1992, 'M', 207), +(149402, 'Aric', 1992, 'M', 205), +(149403, 'Jaleel', 1992, 'M', 205), +(149404, 'Jameson', 1992, 'M', 205), +(149405, 'Benny', 1992, 'M', 204), +(149406, 'Ahmed', 1992, 'M', 203), +(149407, 'Chester', 1992, 'M', 203), +(149408, 'Donnell', 1992, 'M', 203), +(149409, 'Pierce', 1992, 'M', 202), +(149410, 'Antwon', 1992, 'M', 201), +(149411, 'Jacoby', 1992, 'M', 201), +(149412, 'Cyrus', 1992, 'M', 200), +(149413, 'Erich', 1992, 'M', 200), +(149414, 'Hakeem', 1992, 'M', 200), +(149415, 'Clyde', 1992, 'M', 199), +(149416, 'Gonzalo', 1992, 'M', 199), +(149417, 'Mohamed', 1992, 'M', 199), +(149418, 'Jabari', 1992, 'M', 197), +(149419, 'Royce', 1992, 'M', 197), +(149420, 'Walker', 1992, 'M', 197), +(149421, 'Benito', 1992, 'M', 195), +(149422, 'Floyd', 1992, 'M', 195), +(149423, 'Cecil', 1992, 'M', 194), +(149424, 'Jim', 1992, 'M', 194), +(149425, 'Kirby', 1992, 'M', 194), +(149426, 'Jamil', 1992, 'M', 193), +(149427, 'Sage', 1992, 'M', 193), +(149428, 'Gunnar', 1992, 'M', 191), +(149429, 'Lionel', 1992, 'M', 191), +(149430, 'Darion', 1992, 'M', 190), +(149431, 'Elvis', 1992, 'M', 190), +(149432, 'Houston', 1992, 'M', 190), +(149433, 'Deion', 1992, 'M', 189), +(149434, 'Lyle', 1992, 'M', 189), +(149435, 'Rocky', 1992, 'M', 189), +(149436, 'Santos', 1992, 'M', 189), +(149437, 'Sonny', 1992, 'M', 189), +(149438, 'Jarod', 1992, 'M', 188), +(149439, 'Jessy', 1992, 'M', 188), +(149440, 'Rhett', 1992, 'M', 188), +(149441, 'Ted', 1992, 'M', 188), +(149442, 'Ulises', 1992, 'M', 188), +(149443, 'Vaughn', 1992, 'M', 188), +(149444, 'Bronson', 1992, 'M', 187), +(149445, 'Peyton', 1992, 'M', 187), +(149446, 'Amos', 1992, 'M', 186), +(149447, 'Cristopher', 1992, 'M', 186), +(149448, 'Ellis', 1992, 'M', 186), +(149449, 'Malcom', 1992, 'M', 186), +(149450, 'Wendell', 1992, 'M', 186), +(149451, 'Scotty', 1992, 'M', 184), +(149452, 'Alton', 1992, 'M', 183), +(149453, 'Bryon', 1992, 'M', 183), +(149454, 'Jerrell', 1992, 'M', 183), +(149455, 'Rakeem', 1992, 'M', 183), +(149456, 'Keon', 1992, 'M', 182), +(149457, 'Demarco', 1992, 'M', 181), +(149458, 'Martez', 1992, 'M', 181), +(149459, 'Brennen', 1992, 'M', 180), +(149460, 'Jade', 1992, 'M', 180), +(149461, 'Josh', 1992, 'M', 180), +(149462, 'Junior', 1992, 'M', 179), +(149463, 'Madison', 1992, 'M', 179), +(149464, 'Demario', 1992, 'M', 178), +(149465, 'Demetri', 1992, 'M', 178), +(149466, 'Isaias', 1992, 'M', 178), +(149467, 'Malachi', 1992, 'M', 178), +(149468, 'Shea', 1992, 'M', 178), +(149469, 'Wilfredo', 1992, 'M', 178), +(149470, 'Ezequiel', 1992, 'M', 177), +(149471, 'Harvey', 1992, 'M', 177), +(149472, 'Randolph', 1992, 'M', 177), +(149473, 'Ezra', 1992, 'M', 176), +(149474, 'Jamarcus', 1992, 'M', 175), +(149475, 'Kegan', 1992, 'M', 175), +(149476, 'Sherman', 1992, 'M', 175), +(149477, 'Brayden', 1992, 'M', 173), +(149478, 'Erin', 1992, 'M', 172), +(149479, 'Greg', 1992, 'M', 172), +(149480, 'Kellen', 1992, 'M', 171), +(149481, 'Reese', 1992, 'M', 171), +(149482, 'Hans', 1992, 'M', 170), +(149483, 'Raymundo', 1992, 'M', 170), +(149484, 'Cruz', 1992, 'M', 169), +(149485, 'Davante', 1992, 'M', 169), +(149486, 'Emmett', 1992, 'M', 169), +(149487, 'Hernan', 1992, 'M', 169), +(149488, 'Kelsey', 1992, 'M', 169), +(149489, 'Ashley', 1992, 'M', 168), +(149490, 'Dyllan', 1992, 'M', 168), +(149491, 'Grady', 1992, 'M', 168), +(149492, 'Garry', 1992, 'M', 167), +(149493, 'Marquez', 1992, 'M', 167), +(149494, 'Misael', 1992, 'M', 167), +(149495, 'Moshe', 1992, 'M', 167), +(149496, 'August', 1992, 'M', 165), +(149497, 'Dontae', 1992, 'M', 165), +(149498, 'Eddy', 1992, 'M', 165), +(149499, 'Forest', 1992, 'M', 165), +(149500, 'Rusty', 1992, 'M', 165), +(149501, 'Silas', 1992, 'M', 165), +(149502, 'Camron', 1992, 'M', 164), +(149503, 'Justice', 1992, 'M', 164), +(149504, 'Trae', 1992, 'M', 164), +(149505, 'Cade', 1992, 'M', 163), +(149506, 'Dionte', 1992, 'M', 163), +(149507, 'Efren', 1992, 'M', 163), +(149508, 'Gregorio', 1992, 'M', 163), +(149509, 'Josef', 1992, 'M', 163), +(149510, 'Tobias', 1992, 'M', 163), +(149511, 'Bernardo', 1992, 'M', 162), +(149512, 'Alonso', 1992, 'M', 161), +(149513, 'Hugh', 1992, 'M', 161), +(149514, 'Spenser', 1992, 'M', 161), +(149515, 'Titus', 1992, 'M', 161), +(149516, 'Denzell', 1992, 'M', 160), +(149517, 'Mickey', 1992, 'M', 160), +(149518, 'Aldo', 1992, 'M', 159), +(149519, 'Kai', 1992, 'M', 159), +(149520, 'Kolton', 1992, 'M', 159), +(149521, 'Deonta', 1992, 'M', 158), +(149522, 'Fidel', 1992, 'M', 158), +(149523, 'Tyron', 1992, 'M', 158), +(149524, 'Talon', 1992, 'M', 157), +(149525, 'Anderson', 1992, 'M', 156), +(149526, 'Antony', 1992, 'M', 156), +(149527, 'Ari', 1992, 'M', 156), +(149528, 'Asa', 1992, 'M', 156), +(149529, 'Daron', 1992, 'M', 156), +(149530, 'Davin', 1992, 'M', 156), +(149531, 'Lincoln', 1992, 'M', 156), +(149532, 'Dondre', 1992, 'M', 155), +(149533, 'Mikel', 1992, 'M', 155), +(149534, 'Otis', 1992, 'M', 155), +(149535, 'Unknown', 1992, 'M', 155), +(149536, 'Davion', 1992, 'M', 154), +(149537, 'Kelby', 1992, 'M', 154), +(149538, 'Robbie', 1992, 'M', 154), +(149539, 'Codi', 1992, 'M', 153), +(149540, 'Hassan', 1992, 'M', 153), +(149541, 'Randal', 1992, 'M', 152), +(149542, 'Tayler', 1992, 'M', 151), +(149543, 'Tom', 1992, 'M', 151), +(149544, 'Ulysses', 1992, 'M', 151), +(149545, 'Cale', 1992, 'M', 150), +(149546, 'Jonas', 1992, 'M', 150), +(149547, 'Stevie', 1992, 'M', 150), +(149548, 'Rasheed', 1992, 'M', 149), +(149549, 'Galen', 1992, 'M', 148), +(149550, 'Jerald', 1992, 'M', 148), +(149551, 'Morris', 1992, 'M', 148), +(149552, 'Caden', 1992, 'M', 147), +(149553, 'Julien', 1992, 'M', 147), +(149554, 'Dequan', 1992, 'M', 146), +(149555, 'Jess', 1992, 'M', 146), +(149556, 'Stacy', 1992, 'M', 146), +(149557, 'Westley', 1992, 'M', 146), +(149558, 'Dario', 1992, 'M', 145), +(149559, 'Edmund', 1992, 'M', 145), +(149560, 'Shelton', 1992, 'M', 145); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(149561, 'Camden', 1992, 'M', 144), +(149562, 'Coby', 1992, 'M', 144), +(149563, 'Rodrick', 1992, 'M', 144), +(149564, 'Timmy', 1992, 'M', 144), +(149565, 'Alexandro', 1992, 'M', 143), +(149566, 'Dakotah', 1992, 'M', 143), +(149567, 'Dusty', 1992, 'M', 143), +(149568, 'Barrett', 1992, 'M', 142), +(149569, 'Channing', 1992, 'M', 142), +(149570, 'Claude', 1992, 'M', 142), +(149571, 'Keven', 1992, 'M', 142), +(149572, 'Nikko', 1992, 'M', 141), +(149573, 'Niko', 1992, 'M', 141), +(149574, 'Augustus', 1992, 'M', 140), +(149575, 'Garrison', 1992, 'M', 140), +(149576, 'Montel', 1992, 'M', 140), +(149577, 'Storm', 1992, 'M', 140), +(149578, 'Jacques', 1992, 'M', 139), +(149579, 'Jody', 1992, 'M', 139), +(149580, 'Wallace', 1992, 'M', 139), +(149581, 'Bill', 1992, 'M', 138), +(149582, 'Muhammad', 1992, 'M', 138), +(149583, 'Deante', 1992, 'M', 137), +(149584, 'Domonique', 1992, 'M', 137), +(149585, 'Elisha', 1992, 'M', 137), +(149586, 'Kevon', 1992, 'M', 137), +(149587, 'Broderick', 1992, 'M', 136), +(149588, 'Derik', 1992, 'M', 136), +(149589, 'Eliseo', 1992, 'M', 136), +(149590, 'Jevon', 1992, 'M', 136), +(149591, 'Luther', 1992, 'M', 136), +(149592, 'Axel', 1992, 'M', 135), +(149593, 'Earnest', 1992, 'M', 135), +(149594, 'Ron', 1992, 'M', 135), +(149595, 'Waylon', 1992, 'M', 135), +(149596, 'Andreas', 1992, 'M', 134), +(149597, 'Davonta', 1992, 'M', 134), +(149598, 'Kenton', 1992, 'M', 134), +(149599, 'Carlo', 1992, 'M', 133), +(149600, 'Cordell', 1992, 'M', 133), +(149601, 'Dereck', 1992, 'M', 133), +(149602, 'Garrick', 1992, 'M', 133), +(149603, 'Jerod', 1992, 'M', 133), +(149604, 'Marques', 1992, 'M', 133), +(149605, 'Dalvin', 1992, 'M', 132), +(149606, 'Domingo', 1992, 'M', 132), +(149607, 'Elvin', 1992, 'M', 132), +(149608, 'Isidro', 1992, 'M', 132), +(149609, 'Justen', 1992, 'M', 132), +(149610, 'Najee', 1992, 'M', 132), +(149611, 'Tariq', 1992, 'M', 132), +(149612, 'Tavon', 1992, 'M', 132), +(149613, 'Chaim', 1992, 'M', 131), +(149614, 'Garett', 1992, 'M', 131), +(149615, 'Justyn', 1992, 'M', 131), +(149616, 'Tyrel', 1992, 'M', 131), +(149617, 'Tyshawn', 1992, 'M', 131), +(149618, 'Brant', 1992, 'M', 130), +(149619, 'Dejuan', 1992, 'M', 130), +(149620, 'Kalen', 1992, 'M', 130), +(149621, 'Marion', 1992, 'M', 130), +(149622, 'Montrell', 1992, 'M', 130), +(149623, 'Rocco', 1992, 'M', 130), +(149624, 'Stetson', 1992, 'M', 130), +(149625, 'Britton', 1992, 'M', 129), +(149626, 'Darrel', 1992, 'M', 129), +(149627, 'Giancarlo', 1992, 'M', 129), +(149628, 'Ira', 1992, 'M', 129), +(149629, 'Jarrell', 1992, 'M', 129), +(149630, 'Kwame', 1992, 'M', 129), +(149631, 'Prince', 1992, 'M', 129), +(149632, 'Laquan', 1992, 'M', 128), +(149633, 'Pete', 1992, 'M', 128), +(149634, 'Deshaun', 1992, 'M', 127), +(149635, 'Remington', 1992, 'M', 127), +(149636, 'Teddy', 1992, 'M', 127), +(149637, 'Trace', 1992, 'M', 127), +(149638, 'Darwin', 1992, 'M', 126), +(149639, 'Jerel', 1992, 'M', 126), +(149640, 'Marty', 1992, 'M', 126), +(149641, 'Roosevelt', 1992, 'M', 126), +(149642, 'Willis', 1992, 'M', 126), +(149643, 'Asher', 1992, 'M', 125), +(149644, 'Carey', 1992, 'M', 125), +(149645, 'Juwan', 1992, 'M', 125), +(149646, 'Lazaro', 1992, 'M', 125), +(149647, 'Tyquan', 1992, 'M', 125), +(149648, 'Cary', 1992, 'M', 124), +(149649, 'Cedrick', 1992, 'M', 124), +(149650, 'Deron', 1992, 'M', 124), +(149651, 'Donta', 1992, 'M', 124), +(149652, 'Kieran', 1992, 'M', 124), +(149653, 'Laurence', 1992, 'M', 124), +(149654, 'Samir', 1992, 'M', 124), +(149655, 'Van', 1992, 'M', 124), +(149656, 'Vince', 1992, 'M', 124), +(149657, 'Dave', 1992, 'M', 123), +(149658, 'Dejon', 1992, 'M', 123), +(149659, 'Erwin', 1992, 'M', 123), +(149660, 'Laron', 1992, 'M', 123), +(149661, 'Abdul', 1992, 'M', 122), +(149662, 'Alphonso', 1992, 'M', 122), +(149663, 'Jered', 1992, 'M', 122), +(149664, 'Quinten', 1992, 'M', 122), +(149665, 'Dayton', 1992, 'M', 121), +(149666, 'Marcelo', 1992, 'M', 121), +(149667, 'Stacey', 1992, 'M', 121), +(149668, 'Alexandre', 1992, 'M', 120), +(149669, 'Armand', 1992, 'M', 119), +(149670, 'Arnulfo', 1992, 'M', 119), +(149671, 'Bailey', 1992, 'M', 119), +(149672, 'Brannon', 1992, 'M', 119), +(149673, 'Cassidy', 1992, 'M', 119), +(149674, 'Denver', 1992, 'M', 119), +(149675, 'Emerson', 1992, 'M', 119), +(149676, 'Rudolph', 1992, 'M', 119), +(149677, 'Samson', 1992, 'M', 119), +(149678, 'Theron', 1992, 'M', 119), +(149679, 'Colter', 1992, 'M', 118), +(149680, 'Coy', 1992, 'M', 118), +(149681, 'Domenic', 1992, 'M', 118), +(149682, 'Donavon', 1992, 'M', 118), +(149683, 'Kane', 1992, 'M', 118), +(149684, 'Montana', 1992, 'M', 118), +(149685, 'Patric', 1992, 'M', 118), +(149686, 'Adalberto', 1992, 'M', 117), +(149687, 'Federico', 1992, 'M', 117), +(149688, 'Jedidiah', 1992, 'M', 117), +(149689, 'Scottie', 1992, 'M', 117), +(149690, 'Taran', 1992, 'M', 117), +(149691, 'Tommie', 1992, 'M', 117), +(149692, 'Alden', 1992, 'M', 116), +(149693, 'Daren', 1992, 'M', 116), +(149694, 'Eliezer', 1992, 'M', 116), +(149695, 'Kelton', 1992, 'M', 116), +(149696, 'Nicholaus', 1992, 'M', 116), +(149697, 'Schuyler', 1992, 'M', 116), +(149698, 'Syed', 1992, 'M', 116), +(149699, 'Valentin', 1992, 'M', 116), +(149700, 'Cristobal', 1992, 'M', 115), +(149701, 'Edwardo', 1992, 'M', 115), +(149702, 'Hank', 1992, 'M', 115), +(149703, 'Kendal', 1992, 'M', 115), +(149704, 'Leighton', 1992, 'M', 115), +(149705, 'Maximillian', 1992, 'M', 115), +(149706, 'Sylvester', 1992, 'M', 115), +(149707, 'Devyn', 1992, 'M', 114), +(149708, 'Francesco', 1992, 'M', 114), +(149709, 'Kiefer', 1992, 'M', 114), +(149710, 'Demonte', 1992, 'M', 113), +(149711, 'Denis', 1992, 'M', 113), +(149712, 'Deontae', 1992, 'M', 113), +(149713, 'Ken', 1992, 'M', 113), +(149714, 'Khalid', 1992, 'M', 113), +(149715, 'Genaro', 1992, 'M', 112), +(149716, 'Ishmael', 1992, 'M', 112), +(149717, 'Rayshawn', 1992, 'M', 112), +(149718, 'Uriah', 1992, 'M', 112), +(149719, 'Virgil', 1992, 'M', 112), +(149720, 'Brandin', 1992, 'M', 111), +(149721, 'Dallin', 1992, 'M', 111), +(149722, 'Fredy', 1992, 'M', 111), +(149723, 'Ibrahim', 1992, 'M', 111), +(149724, 'Kade', 1992, 'M', 111), +(149725, 'Darrick', 1992, 'M', 110), +(149726, 'Desean', 1992, 'M', 110), +(149727, 'Edmond', 1992, 'M', 110), +(149728, 'Harris', 1992, 'M', 110), +(149729, 'Jovany', 1992, 'M', 110), +(149730, 'Mariano', 1992, 'M', 110), +(149731, 'Trevin', 1992, 'M', 110), +(149732, 'Abram', 1992, 'M', 109), +(149733, 'Deondre', 1992, 'M', 109), +(149734, 'Mack', 1992, 'M', 109), +(149735, 'Monte', 1992, 'M', 109), +(149736, 'Shay', 1992, 'M', 109), +(149737, 'Chauncey', 1992, 'M', 108), +(149738, 'Louie', 1992, 'M', 108), +(149739, 'Marlin', 1992, 'M', 108), +(149740, 'Bilal', 1992, 'M', 107), +(149741, 'Darron', 1992, 'M', 107), +(149742, 'Demond', 1992, 'M', 107), +(149743, 'Reggie', 1992, 'M', 107), +(149744, 'Ridge', 1992, 'M', 107), +(149745, 'Franco', 1992, 'M', 106), +(149746, 'Jorden', 1992, 'M', 106), +(149747, 'Jovanny', 1992, 'M', 106), +(149748, 'Ronny', 1992, 'M', 106), +(149749, 'Torey', 1992, 'M', 106), +(149750, 'Bennie', 1992, 'M', 105), +(149751, 'Greggory', 1992, 'M', 105), +(149752, 'Jeffry', 1992, 'M', 105), +(149753, 'Keanu', 1992, 'M', 105), +(149754, 'Kole', 1992, 'M', 105), +(149755, 'Menachem', 1992, 'M', 105), +(149756, 'Telvin', 1992, 'M', 105), +(149757, 'Terell', 1992, 'M', 105), +(149758, 'Tremaine', 1992, 'M', 105), +(149759, 'Eloy', 1992, 'M', 104), +(149760, 'Emil', 1992, 'M', 104), +(149761, 'Gregg', 1992, 'M', 104), +(149762, 'Kamron', 1992, 'M', 104), +(149763, 'Keyon', 1992, 'M', 104), +(149764, 'Male', 1992, 'M', 104), +(149765, 'Marcellus', 1992, 'M', 104), +(149766, 'Robby', 1992, 'M', 104), +(149767, 'Cyle', 1992, 'M', 103), +(149768, 'Kalvin', 1992, 'M', 103), +(149769, 'Marquel', 1992, 'M', 103), +(149770, 'Shaquan', 1992, 'M', 103), +(149771, 'Antione', 1992, 'M', 102), +(149772, 'Courtland', 1992, 'M', 102), +(149773, 'Jaden', 1992, 'M', 102), +(149774, 'Jerad', 1992, 'M', 102), +(149775, 'Jameel', 1992, 'M', 101), +(149776, 'Jaylen', 1992, 'M', 101), +(149777, 'Jessica', 1992, 'M', 101), +(149778, 'Vincenzo', 1992, 'M', 101), +(149779, 'Deric', 1992, 'M', 100), +(149780, 'Derrik', 1992, 'M', 100), +(149781, 'Dyllon', 1992, 'M', 100), +(149782, 'Jory', 1992, 'M', 100), +(149783, 'Jovani', 1992, 'M', 100), +(149784, 'Kaden', 1992, 'M', 100), +(149785, 'Kale', 1992, 'M', 100), +(149786, 'Jessica', 1993, 'F', 34984), +(149787, 'Ashley', 1993, 'F', 34846), +(149788, 'Sarah', 1993, 'F', 24244), +(149789, 'Samantha', 1993, 'F', 23665), +(149790, 'Emily', 1993, 'F', 23591), +(149791, 'Brittany', 1993, 'F', 21726), +(149792, 'Taylor', 1993, 'F', 21266), +(149793, 'Amanda', 1993, 'F', 20805), +(149794, 'Elizabeth', 1993, 'F', 17551), +(149795, 'Stephanie', 1993, 'F', 17183), +(149796, 'Megan', 1993, 'F', 16383), +(149797, 'Lauren', 1993, 'F', 16187), +(149798, 'Nicole', 1993, 'F', 16179), +(149799, 'Rachel', 1993, 'F', 15968), +(149800, 'Jennifer', 1993, 'F', 15748), +(149801, 'Kayla', 1993, 'F', 15447), +(149802, 'Amber', 1993, 'F', 14064), +(149803, 'Danielle', 1993, 'F', 12987), +(149804, 'Victoria', 1993, 'F', 12922), +(149805, 'Courtney', 1993, 'F', 12574), +(149806, 'Hannah', 1993, 'F', 12498), +(149807, 'Rebecca', 1993, 'F', 12312), +(149808, 'Jasmine', 1993, 'F', 12059), +(149809, 'Kelsey', 1993, 'F', 11375), +(149810, 'Chelsea', 1993, 'F', 11290), +(149811, 'Alyssa', 1993, 'F', 11030), +(149812, 'Alexis', 1993, 'F', 10830), +(149813, 'Alexandra', 1993, 'F', 10677), +(149814, 'Katherine', 1993, 'F', 10507), +(149815, 'Melissa', 1993, 'F', 10221), +(149816, 'Michelle', 1993, 'F', 10185), +(149817, 'Brianna', 1993, 'F', 8771), +(149818, 'Tiffany', 1993, 'F', 8583), +(149819, 'Morgan', 1993, 'F', 8569), +(149820, 'Christina', 1993, 'F', 8285), +(149821, 'Shelby', 1993, 'F', 8121), +(149822, 'Mary', 1993, 'F', 8110), +(149823, 'Heather', 1993, 'F', 8105), +(149824, 'Kimberly', 1993, 'F', 7966), +(149825, 'Sara', 1993, 'F', 7900), +(149826, 'Allison', 1993, 'F', 7726), +(149827, 'Haley', 1993, 'F', 7616), +(149828, 'Laura', 1993, 'F', 7255), +(149829, 'Andrea', 1993, 'F', 7235), +(149830, 'Maria', 1993, 'F', 6968), +(149831, 'Kaitlyn', 1993, 'F', 6955), +(149832, 'Anna', 1993, 'F', 6803), +(149833, 'Erin', 1993, 'F', 6716), +(149834, 'Erica', 1993, 'F', 6410), +(149835, 'Olivia', 1993, 'F', 6340), +(149836, 'Kelly', 1993, 'F', 6298), +(149837, 'Brooke', 1993, 'F', 6158), +(149838, 'Shannon', 1993, 'F', 6069), +(149839, 'Katelyn', 1993, 'F', 5975), +(149840, 'Vanessa', 1993, 'F', 5884), +(149841, 'Lindsey', 1993, 'F', 5842), +(149842, 'Crystal', 1993, 'F', 5826), +(149843, 'Jordan', 1993, 'F', 5824), +(149844, 'Marissa', 1993, 'F', 5626), +(149845, 'Paige', 1993, 'F', 5613), +(149846, 'Kristen', 1993, 'F', 5531), +(149847, 'Natalie', 1993, 'F', 5483), +(149848, 'Katie', 1993, 'F', 5450), +(149849, 'Caitlin', 1993, 'F', 5425), +(149850, 'Amy', 1993, 'F', 5421), +(149851, 'Cassandra', 1993, 'F', 5420), +(149852, 'Abigail', 1993, 'F', 5184), +(149853, 'Kathryn', 1993, 'F', 5089), +(149854, 'Alexandria', 1993, 'F', 5025), +(149855, 'Briana', 1993, 'F', 4879), +(149856, 'Jenna', 1993, 'F', 4879), +(149857, 'Julia', 1993, 'F', 4659), +(149858, 'Angela', 1993, 'F', 4569), +(149859, 'Jacqueline', 1993, 'F', 4515), +(149860, 'Catherine', 1993, 'F', 4473), +(149861, 'Alicia', 1993, 'F', 4431), +(149862, 'Brittney', 1993, 'F', 4420), +(149863, 'Madison', 1993, 'F', 4382), +(149864, 'Jamie', 1993, 'F', 4255), +(149865, 'Emma', 1993, 'F', 4099), +(149866, 'Mariah', 1993, 'F', 4090), +(149867, 'Whitney', 1993, 'F', 4077), +(149868, 'Breanna', 1993, 'F', 4026), +(149869, 'Gabrielle', 1993, 'F', 4014), +(149870, 'Erika', 1993, 'F', 4011), +(149871, 'Monica', 1993, 'F', 3901), +(149872, 'Molly', 1993, 'F', 3706), +(149873, 'Lindsay', 1993, 'F', 3664), +(149874, 'Miranda', 1993, 'F', 3579), +(149875, 'Christine', 1993, 'F', 3479), +(149876, 'Sierra', 1993, 'F', 3471), +(149877, 'Leah', 1993, 'F', 3414), +(149878, 'Meghan', 1993, 'F', 3400), +(149879, 'Diana', 1993, 'F', 3389), +(149880, 'Cynthia', 1993, 'F', 3382), +(149881, 'Savannah', 1993, 'F', 3342), +(149882, 'Sabrina', 1993, 'F', 3322), +(149883, 'Angelica', 1993, 'F', 3240), +(149884, 'Kaitlin', 1993, 'F', 3226), +(149885, 'Lisa', 1993, 'F', 3224), +(149886, 'Bianca', 1993, 'F', 3208), +(149887, 'Margaret', 1993, 'F', 3166), +(149888, 'Veronica', 1993, 'F', 3093), +(149889, 'Kristina', 1993, 'F', 3091), +(149890, 'Caroline', 1993, 'F', 3081), +(149891, 'Sydney', 1993, 'F', 3050), +(149892, 'Alexa', 1993, 'F', 3037), +(149893, 'Holly', 1993, 'F', 3031), +(149894, 'Kristin', 1993, 'F', 2990), +(149895, 'Melanie', 1993, 'F', 2986), +(149896, 'Destiny', 1993, 'F', 2941), +(149897, 'April', 1993, 'F', 2933), +(149898, 'Mackenzie', 1993, 'F', 2898), +(149899, 'Brenda', 1993, 'F', 2885), +(149900, 'Bethany', 1993, 'F', 2841), +(149901, 'Karen', 1993, 'F', 2805), +(149902, 'Rachael', 1993, 'F', 2745), +(149903, 'Kathleen', 1993, 'F', 2741), +(149904, 'Julie', 1993, 'F', 2737), +(149905, 'Kassandra', 1993, 'F', 2728), +(149906, 'Ariel', 1993, 'F', 2707), +(149907, 'Dominique', 1993, 'F', 2706), +(149908, 'Grace', 1993, 'F', 2701), +(149909, 'Brandi', 1993, 'F', 2692), +(149910, 'Patricia', 1993, 'F', 2660), +(149911, 'Hayley', 1993, 'F', 2616), +(149912, 'Madeline', 1993, 'F', 2608), +(149913, 'Kendra', 1993, 'F', 2605), +(149914, 'Casey', 1993, 'F', 2579), +(149915, 'Hailey', 1993, 'F', 2530), +(149916, 'Kara', 1993, 'F', 2527), +(149917, 'Tara', 1993, 'F', 2476), +(149918, 'Desiree', 1993, 'F', 2443), +(149919, 'Gabriela', 1993, 'F', 2408), +(149920, 'Cheyenne', 1993, 'F', 2372), +(149921, 'Carly', 1993, 'F', 2364), +(149922, 'Ana', 1993, 'F', 2363), +(149923, 'Leslie', 1993, 'F', 2295), +(149924, 'Raven', 1993, 'F', 2286), +(149925, 'Natasha', 1993, 'F', 2278), +(149926, 'Alison', 1993, 'F', 2239), +(149927, 'Krystal', 1993, 'F', 2212), +(149928, 'Karina', 1993, 'F', 2201), +(149929, 'Valerie', 1993, 'F', 2177), +(149930, 'Chelsey', 1993, 'F', 2156), +(149931, 'Bailey', 1993, 'F', 2135), +(149932, 'Alejandra', 1993, 'F', 2124), +(149933, 'Rebekah', 1993, 'F', 2108), +(149934, 'Autumn', 1993, 'F', 2086), +(149935, 'Jade', 1993, 'F', 2080), +(149936, 'Adriana', 1993, 'F', 2075), +(149937, 'Tori', 1993, 'F', 2057), +(149938, 'Caitlyn', 1993, 'F', 2044), +(149939, 'Katrina', 1993, 'F', 2036), +(149940, 'Dana', 1993, 'F', 1988), +(149941, 'Nancy', 1993, 'F', 1985), +(149942, 'Jillian', 1993, 'F', 1980), +(149943, 'Chloe', 1993, 'F', 1957), +(149944, 'Felicia', 1993, 'F', 1949), +(149945, 'Audrey', 1993, 'F', 1947), +(149946, 'Deanna', 1993, 'F', 1938), +(149947, 'Jocelyn', 1993, 'F', 1926), +(149948, 'Meagan', 1993, 'F', 1926), +(149949, 'Ashlee', 1993, 'F', 1911), +(149950, 'Krista', 1993, 'F', 1896), +(149951, 'Claire', 1993, 'F', 1894), +(149952, 'Kaylee', 1993, 'F', 1885), +(149953, 'Sandra', 1993, 'F', 1884), +(149954, 'Monique', 1993, 'F', 1851), +(149955, 'Michaela', 1993, 'F', 1850), +(149956, 'Mercedes', 1993, 'F', 1777), +(149957, 'Marisa', 1993, 'F', 1723), +(149958, 'Alisha', 1993, 'F', 1719), +(149959, 'Gina', 1993, 'F', 1713), +(149960, 'Bria', 1993, 'F', 1698), +(149961, 'Cindy', 1993, 'F', 1642), +(149962, 'Joanna', 1993, 'F', 1637), +(149963, 'Angel', 1993, 'F', 1632), +(149964, 'Bridget', 1993, 'F', 1629), +(149965, 'Summer', 1993, 'F', 1617), +(149966, 'Mallory', 1993, 'F', 1600), +(149967, 'Priscilla', 1993, 'F', 1595), +(149968, 'Claudia', 1993, 'F', 1591), +(149969, 'Colleen', 1993, 'F', 1583), +(149970, 'Daisy', 1993, 'F', 1579), +(149971, 'Jasmin', 1993, 'F', 1553), +(149972, 'Cristina', 1993, 'F', 1548), +(149973, 'Kirsten', 1993, 'F', 1547), +(149974, 'Ashleigh', 1993, 'F', 1546), +(149975, 'Ariana', 1993, 'F', 1533), +(149976, 'Yesenia', 1993, 'F', 1526), +(149977, 'Diamond', 1993, 'F', 1523), +(149978, 'Kiara', 1993, 'F', 1522), +(149979, 'Lacey', 1993, 'F', 1522), +(149980, 'Brandy', 1993, 'F', 1518), +(149981, 'Sophia', 1993, 'F', 1498), +(149982, 'Jaclyn', 1993, 'F', 1497), +(149983, 'Linda', 1993, 'F', 1486), +(149984, 'Anne', 1993, 'F', 1483), +(149985, 'Carolyn', 1993, 'F', 1477), +(149986, 'Denise', 1993, 'F', 1457), +(149987, 'Jazmin', 1993, 'F', 1457), +(149988, 'Tabitha', 1993, 'F', 1445), +(149989, 'Kylie', 1993, 'F', 1443), +(149990, 'Ciara', 1993, 'F', 1436), +(149991, 'Lydia', 1993, 'F', 1420), +(149992, 'Gabriella', 1993, 'F', 1405), +(149993, 'Cierra', 1993, 'F', 1403), +(149994, 'Nichole', 1993, 'F', 1395), +(149995, 'Jazmine', 1993, 'F', 1364), +(149996, 'Allyson', 1993, 'F', 1346), +(149997, 'Evelyn', 1993, 'F', 1346), +(149998, 'Shanice', 1993, 'F', 1346), +(149999, 'Mayra', 1993, 'F', 1335), +(150000, 'Candace', 1993, 'F', 1309), +(150001, 'Ellen', 1993, 'F', 1305), +(150002, 'Kendall', 1993, 'F', 1270), +(150003, 'Tessa', 1993, 'F', 1259), +(150004, 'Guadalupe', 1993, 'F', 1257), +(150005, 'Wendy', 1993, 'F', 1257), +(150006, 'Rosa', 1993, 'F', 1256), +(150007, 'Daniela', 1993, 'F', 1252), +(150008, 'Meredith', 1993, 'F', 1250), +(150009, 'Amelia', 1993, 'F', 1247), +(150010, 'Mckenzie', 1993, 'F', 1240), +(150011, 'Teresa', 1993, 'F', 1233), +(150012, 'Kelli', 1993, 'F', 1230), +(150013, 'Tiara', 1993, 'F', 1226), +(150014, 'Kelsie', 1993, 'F', 1222), +(150015, 'Raquel', 1993, 'F', 1221), +(150016, 'Justine', 1993, 'F', 1201), +(150017, 'Kasey', 1993, 'F', 1200), +(150018, 'Susan', 1993, 'F', 1200), +(150019, 'Karla', 1993, 'F', 1195), +(150020, 'Zoe', 1993, 'F', 1194), +(150021, 'Katelynn', 1993, 'F', 1192), +(150022, 'Marina', 1993, 'F', 1190), +(150023, 'Tyler', 1993, 'F', 1183), +(150024, 'Britney', 1993, 'F', 1177), +(150025, 'Abby', 1993, 'F', 1176), +(150026, 'Ebony', 1993, 'F', 1164), +(150027, 'Theresa', 1993, 'F', 1159), +(150028, 'Naomi', 1993, 'F', 1145), +(150029, 'Heidi', 1993, 'F', 1142), +(150030, 'Faith', 1993, 'F', 1133), +(150031, 'Renee', 1993, 'F', 1133), +(150032, 'Asia', 1993, 'F', 1121), +(150033, 'Tanya', 1993, 'F', 1117), +(150034, 'Carrie', 1993, 'F', 1115), +(150035, 'Jessie', 1993, 'F', 1108), +(150036, 'Cara', 1993, 'F', 1105), +(150037, 'Jacquelyn', 1993, 'F', 1103), +(150038, 'Candice', 1993, 'F', 1102), +(150039, 'Carmen', 1993, 'F', 1092), +(150040, 'Alissa', 1993, 'F', 1086), +(150041, 'Tatiana', 1993, 'F', 1078), +(150042, 'Isabel', 1993, 'F', 1075), +(150043, 'Clarissa', 1993, 'F', 1074), +(150044, 'Janet', 1993, 'F', 1069), +(150045, 'Katlyn', 1993, 'F', 1067), +(150046, 'Hillary', 1993, 'F', 1064), +(150047, 'Aubrey', 1993, 'F', 1058), +(150048, 'Martha', 1993, 'F', 1057), +(150049, 'Marie', 1993, 'F', 1052), +(150050, 'Virginia', 1993, 'F', 1040), +(150051, 'Ruby', 1993, 'F', 1032), +(150052, 'Cassidy', 1993, 'F', 1028), +(150053, 'Jenny', 1993, 'F', 1019), +(150054, 'Miriam', 1993, 'F', 1019), +(150055, 'Tamara', 1993, 'F', 1019), +(150056, 'Nina', 1993, 'F', 1016), +(150057, 'Camille', 1993, 'F', 1013), +(150058, 'Maya', 1993, 'F', 1012), +(150059, 'Gloria', 1993, 'F', 1005), +(150060, 'Hanna', 1993, 'F', 1005), +(150061, 'Stacey', 1993, 'F', 1002), +(150062, 'Chelsie', 1993, 'F', 999), +(150063, 'Cecilia', 1993, 'F', 997), +(150064, 'Nikki', 1993, 'F', 997), +(150065, 'Robin', 1993, 'F', 997), +(150066, 'Maggie', 1993, 'F', 984), +(150067, 'Janelle', 1993, 'F', 981), +(150068, 'Melinda', 1993, 'F', 980), +(150069, 'Elise', 1993, 'F', 977), +(150070, 'Carissa', 1993, 'F', 976), +(150071, 'Kellie', 1993, 'F', 958), +(150072, 'Stacy', 1993, 'F', 956), +(150073, 'Hope', 1993, 'F', 955), +(150074, 'Cassie', 1993, 'F', 952), +(150075, 'Tia', 1993, 'F', 952), +(150076, 'Carolina', 1993, 'F', 948), +(150077, 'Barbara', 1993, 'F', 944), +(150078, 'Charlotte', 1993, 'F', 944), +(150079, 'Adrienne', 1993, 'F', 940), +(150080, 'Vivian', 1993, 'F', 930), +(150081, 'Mikayla', 1993, 'F', 928), +(150082, 'Toni', 1993, 'F', 918), +(150083, 'Devon', 1993, 'F', 915), +(150084, 'Angelina', 1993, 'F', 904), +(150085, 'Esther', 1993, 'F', 899), +(150086, 'Jordyn', 1993, 'F', 894), +(150087, 'Valeria', 1993, 'F', 884), +(150088, 'Carla', 1993, 'F', 881), +(150089, 'Aimee', 1993, 'F', 879), +(150090, 'Christian', 1993, 'F', 877), +(150091, 'Tayler', 1993, 'F', 871), +(150092, 'Helen', 1993, 'F', 868), +(150093, 'Ashlyn', 1993, 'F', 857), +(150094, 'Devin', 1993, 'F', 857), +(150095, 'Callie', 1993, 'F', 855), +(150096, 'Karissa', 1993, 'F', 855), +(150097, 'Ruth', 1993, 'F', 855), +(150098, 'Sharon', 1993, 'F', 849), +(150099, 'Ann', 1993, 'F', 848), +(150100, 'Shawna', 1993, 'F', 848), +(150101, 'Tania', 1993, 'F', 846), +(150102, 'Sasha', 1993, 'F', 841), +(150103, 'Shayla', 1993, 'F', 831), +(150104, 'Isabella', 1993, 'F', 827), +(150105, 'Tierra', 1993, 'F', 826), +(150106, 'Tiana', 1993, 'F', 825), +(150107, 'Elena', 1993, 'F', 817), +(150108, 'Adrianna', 1993, 'F', 814), +(150109, 'Pamela', 1993, 'F', 806), +(150110, 'Tina', 1993, 'F', 806), +(150111, 'Sonia', 1993, 'F', 804), +(150112, 'Nicolette', 1993, 'F', 802), +(150113, 'Deborah', 1993, 'F', 797), +(150114, 'Kristine', 1993, 'F', 796), +(150115, 'Mia', 1993, 'F', 794), +(150116, 'Ashton', 1993, 'F', 792), +(150117, 'Liliana', 1993, 'F', 791), +(150118, 'Logan', 1993, 'F', 790), +(150119, 'Elisabeth', 1993, 'F', 786), +(150120, 'Kate', 1993, 'F', 785), +(150121, 'Savanna', 1993, 'F', 780), +(150122, 'Anastasia', 1993, 'F', 778), +(150123, 'Alana', 1993, 'F', 772), +(150124, 'Makayla', 1993, 'F', 761), +(150125, 'Annie', 1993, 'F', 760), +(150126, 'Cortney', 1993, 'F', 755), +(150127, 'Kierra', 1993, 'F', 745), +(150128, 'Rose', 1993, 'F', 744), +(150129, 'Regina', 1993, 'F', 743), +(150130, 'Brenna', 1993, 'F', 739), +(150131, 'Tracy', 1993, 'F', 737), +(150132, 'Lillian', 1993, 'F', 736), +(150133, 'Chandler', 1993, 'F', 733), +(150134, 'Eva', 1993, 'F', 733), +(150135, 'Brittani', 1993, 'F', 732), +(150136, 'Celeste', 1993, 'F', 732), +(150137, 'Arianna', 1993, 'F', 731), +(150138, 'Melody', 1993, 'F', 731), +(150139, 'Alexus', 1993, 'F', 726), +(150140, 'Dakota', 1993, 'F', 725), +(150141, 'Harley', 1993, 'F', 718), +(150142, 'Taryn', 1993, 'F', 713), +(150143, 'Kiana', 1993, 'F', 712), +(150144, 'Michele', 1993, 'F', 712), +(150145, 'Kari', 1993, 'F', 709), +(150146, 'Chasity', 1993, 'F', 706), +(150147, 'Brianne', 1993, 'F', 703), +(150148, 'Thalia', 1993, 'F', 700), +(150149, 'Alyson', 1993, 'F', 699), +(150150, 'Esmeralda', 1993, 'F', 698), +(150151, 'Kylee', 1993, 'F', 697), +(150152, 'Alexia', 1993, 'F', 691), +(150153, 'Trisha', 1993, 'F', 689), +(150154, 'Jane', 1993, 'F', 687), +(150155, 'Kristy', 1993, 'F', 687), +(150156, 'Tasha', 1993, 'F', 687), +(150157, 'Sylvia', 1993, 'F', 685), +(150158, 'Alice', 1993, 'F', 683), +(150159, 'Ciera', 1993, 'F', 682), +(150160, 'Kenya', 1993, 'F', 682), +(150161, 'Sadie', 1993, 'F', 681), +(150162, 'Jeanette', 1993, 'F', 679), +(150163, 'Marisol', 1993, 'F', 678), +(150164, 'Robyn', 1993, 'F', 677), +(150165, 'Leticia', 1993, 'F', 671), +(150166, 'Christa', 1993, 'F', 668), +(150167, 'Lorena', 1993, 'F', 668), +(150168, 'Angelique', 1993, 'F', 664), +(150169, 'Selena', 1993, 'F', 663), +(150170, 'Madeleine', 1993, 'F', 661), +(150171, 'India', 1993, 'F', 659), +(150172, 'Randi', 1993, 'F', 657), +(150173, 'Kira', 1993, 'F', 656), +(150174, 'Jaime', 1993, 'F', 654), +(150175, 'Katharine', 1993, 'F', 654), +(150176, 'Kristi', 1993, 'F', 652), +(150177, 'Kyra', 1993, 'F', 647), +(150178, 'Alma', 1993, 'F', 644), +(150179, 'Frances', 1993, 'F', 640), +(150180, 'Breana', 1993, 'F', 638), +(150181, 'Kyla', 1993, 'F', 638), +(150182, 'Rachelle', 1993, 'F', 634), +(150183, 'Francesca', 1993, 'F', 633), +(150184, 'Joy', 1993, 'F', 632), +(150185, 'Paula', 1993, 'F', 630), +(150186, 'Macy', 1993, 'F', 624), +(150187, 'Kayleigh', 1993, 'F', 621), +(150188, 'Arielle', 1993, 'F', 620), +(150189, 'Larissa', 1993, 'F', 617), +(150190, 'Peyton', 1993, 'F', 617), +(150191, 'Ericka', 1993, 'F', 615), +(150192, 'Marlene', 1993, 'F', 612), +(150193, 'Corinne', 1993, 'F', 611), +(150194, 'Christy', 1993, 'F', 609), +(150195, 'Tiffani', 1993, 'F', 608), +(150196, 'Alaina', 1993, 'F', 607), +(150197, 'Yvette', 1993, 'F', 605), +(150198, 'Shayna', 1993, 'F', 602), +(150199, 'Anissa', 1993, 'F', 601), +(150200, 'Marilyn', 1993, 'F', 599), +(150201, 'Misty', 1993, 'F', 598), +(150202, 'Emilee', 1993, 'F', 597), +(150203, 'Josephine', 1993, 'F', 595), +(150204, 'Kaitlynn', 1993, 'F', 595), +(150205, 'Kali', 1993, 'F', 595), +(150206, 'Chanel', 1993, 'F', 594), +(150207, 'Precious', 1993, 'F', 594), +(150208, 'Kaila', 1993, 'F', 593), +(150209, 'Clara', 1993, 'F', 592), +(150210, 'Chantel', 1993, 'F', 590), +(150211, 'Johanna', 1993, 'F', 590), +(150212, 'Carley', 1993, 'F', 589), +(150213, 'Daniella', 1993, 'F', 589), +(150214, 'Stefanie', 1993, 'F', 589), +(150215, 'Genesis', 1993, 'F', 582), +(150216, 'Giselle', 1993, 'F', 582), +(150217, 'Maritza', 1993, 'F', 582), +(150218, 'Donna', 1993, 'F', 581), +(150219, 'Tanisha', 1993, 'F', 579), +(150220, 'Yolanda', 1993, 'F', 578), +(150221, 'Kailey', 1993, 'F', 573), +(150222, 'Nadia', 1993, 'F', 572), +(150223, 'Kelley', 1993, 'F', 570), +(150224, 'Paris', 1993, 'F', 570), +(150225, 'Blanca', 1993, 'F', 567), +(150226, 'Juliana', 1993, 'F', 567), +(150227, 'Judith', 1993, 'F', 563), +(150228, 'Meaghan', 1993, 'F', 563), +(150229, 'Haylee', 1993, 'F', 561), +(150230, 'Elaine', 1993, 'F', 559), +(150231, 'Simone', 1993, 'F', 559), +(150232, 'Sofia', 1993, 'F', 558), +(150233, 'Yvonne', 1993, 'F', 558), +(150234, 'Carina', 1993, 'F', 557), +(150235, 'Lori', 1993, 'F', 556), +(150236, 'Elisa', 1993, 'F', 555), +(150237, 'Lily', 1993, 'F', 555), +(150238, 'Riley', 1993, 'F', 552), +(150239, 'Sophie', 1993, 'F', 551), +(150240, 'Kelsi', 1993, 'F', 548), +(150241, 'Jill', 1993, 'F', 546), +(150242, 'Kaley', 1993, 'F', 546), +(150243, 'Serena', 1993, 'F', 546), +(150244, 'Bryanna', 1993, 'F', 545), +(150245, 'Irene', 1993, 'F', 545), +(150246, 'Skylar', 1993, 'F', 545), +(150247, 'Diane', 1993, 'F', 543), +(150248, 'Noelle', 1993, 'F', 543), +(150249, 'Destinee', 1993, 'F', 542), +(150250, 'Kourtney', 1993, 'F', 542), +(150251, 'Sheila', 1993, 'F', 542), +(150252, 'Imani', 1993, 'F', 541), +(150253, 'Brooklyn', 1993, 'F', 540), +(150254, 'Desirae', 1993, 'F', 540), +(150255, 'Iris', 1993, 'F', 539), +(150256, 'Natalia', 1993, 'F', 539), +(150257, 'Makenzie', 1993, 'F', 538), +(150258, 'Susana', 1993, 'F', 538), +(150259, 'Bridgette', 1993, 'F', 536), +(150260, 'Sade', 1993, 'F', 536), +(150261, 'Lacy', 1993, 'F', 534), +(150262, 'Allie', 1993, 'F', 528), +(150263, 'Maribel', 1993, 'F', 526), +(150264, 'Nora', 1993, 'F', 525), +(150265, 'Lucy', 1993, 'F', 524), +(150266, 'Tess', 1993, 'F', 524), +(150267, 'Darian', 1993, 'F', 523), +(150268, 'Margarita', 1993, 'F', 523), +(150269, 'Hallie', 1993, 'F', 522), +(150270, 'Payton', 1993, 'F', 522), +(150271, 'Shana', 1993, 'F', 521), +(150272, 'Haleigh', 1993, 'F', 520), +(150273, 'Charity', 1993, 'F', 515), +(150274, 'Rochelle', 1993, 'F', 514), +(150275, 'Beatriz', 1993, 'F', 513), +(150276, 'Kiera', 1993, 'F', 512), +(150277, 'Yaritza', 1993, 'F', 509), +(150278, 'Moriah', 1993, 'F', 507), +(150279, 'Carol', 1993, 'F', 506), +(150280, 'Mariana', 1993, 'F', 505), +(150281, 'Abbey', 1993, 'F', 503), +(150282, 'Alanna', 1993, 'F', 499), +(150283, 'Dawn', 1993, 'F', 497), +(150284, 'Selina', 1993, 'F', 496), +(150285, 'Mollie', 1993, 'F', 495), +(150286, 'Stephany', 1993, 'F', 493), +(150287, 'Cristal', 1993, 'F', 491), +(150288, 'Lyndsey', 1993, 'F', 491), +(150289, 'Anita', 1993, 'F', 490), +(150290, 'Sandy', 1993, 'F', 489), +(150291, 'Shaina', 1993, 'F', 489), +(150292, 'Cheyanne', 1993, 'F', 488), +(150293, 'Celina', 1993, 'F', 486), +(150294, 'Talia', 1993, 'F', 485), +(150295, 'Alexandrea', 1993, 'F', 482), +(150296, 'Alysha', 1993, 'F', 481), +(150297, 'Julianne', 1993, 'F', 481), +(150298, 'Kiersten', 1993, 'F', 478), +(150299, 'Perla', 1993, 'F', 477), +(150300, 'Dorothy', 1993, 'F', 476), +(150301, 'Madelyn', 1993, 'F', 474), +(150302, 'Casandra', 1993, 'F', 472), +(150303, 'Yasmin', 1993, 'F', 472), +(150304, 'Hunter', 1993, 'F', 471), +(150305, 'Paulina', 1993, 'F', 470), +(150306, 'Suzanne', 1993, 'F', 470), +(150307, 'Nia', 1993, 'F', 466), +(150308, 'Latisha', 1993, 'F', 465), +(150309, 'Kaleigh', 1993, 'F', 464), +(150310, 'Viviana', 1993, 'F', 464), +(150311, 'Leanna', 1993, 'F', 460), +(150312, 'Roxanne', 1993, 'F', 459), +(150313, 'Emilie', 1993, 'F', 455), +(150314, 'Avery', 1993, 'F', 453), +(150315, 'Kelsea', 1993, 'F', 452), +(150316, 'Norma', 1993, 'F', 451), +(150317, 'Dallas', 1993, 'F', 450), +(150318, 'Janice', 1993, 'F', 450), +(150319, 'Janae', 1993, 'F', 449), +(150320, 'Antoinette', 1993, 'F', 447), +(150321, 'Breanne', 1993, 'F', 446), +(150322, 'Kathy', 1993, 'F', 445), +(150323, 'Sally', 1993, 'F', 445), +(150324, 'Eleanor', 1993, 'F', 444), +(150325, 'Katelin', 1993, 'F', 444), +(150326, 'Mikaela', 1993, 'F', 441), +(150327, 'Bonnie', 1993, 'F', 440), +(150328, 'Maranda', 1993, 'F', 440), +(150329, 'Jacklyn', 1993, 'F', 435), +(150330, 'Khadijah', 1993, 'F', 435), +(150331, 'Cayla', 1993, 'F', 433), +(150332, 'Keri', 1993, 'F', 433), +(150333, 'Shaniqua', 1993, 'F', 433), +(150334, 'Genevieve', 1993, 'F', 432), +(150335, 'Rocio', 1993, 'F', 432), +(150336, 'Tonya', 1993, 'F', 432), +(150337, 'Araceli', 1993, 'F', 431), +(150338, 'Gianna', 1993, 'F', 430), +(150339, 'Kacie', 1993, 'F', 429), +(150340, 'Lucia', 1993, 'F', 429), +(150341, 'Shauna', 1993, 'F', 429), +(150342, 'Shelbi', 1993, 'F', 429), +(150343, 'Charlene', 1993, 'F', 427), +(150344, 'Karly', 1993, 'F', 427), +(150345, 'Tianna', 1993, 'F', 427), +(150346, 'Laurel', 1993, 'F', 425), +(150347, 'Alex', 1993, 'F', 423), +(150348, 'Joyce', 1993, 'F', 423), +(150349, 'Ivy', 1993, 'F', 420), +(150350, 'Leanne', 1993, 'F', 420), +(150351, 'Fatima', 1993, 'F', 419), +(150352, 'Kaylin', 1993, 'F', 419), +(150353, 'Krysta', 1993, 'F', 419), +(150354, 'Sidney', 1993, 'F', 419), +(150355, 'Delaney', 1993, 'F', 418), +(150356, 'Alisa', 1993, 'F', 417), +(150357, 'Ashlie', 1993, 'F', 417), +(150358, 'Kristie', 1993, 'F', 416), +(150359, 'Carlie', 1993, 'F', 414), +(150360, 'Edith', 1993, 'F', 412), +(150361, 'Juanita', 1993, 'F', 412), +(150362, 'Lena', 1993, 'F', 412), +(150363, 'Stacie', 1993, 'F', 410), +(150364, 'Lizbeth', 1993, 'F', 406), +(150365, 'Beverly', 1993, 'F', 405), +(150366, 'Shirley', 1993, 'F', 405), +(150367, 'Shanna', 1993, 'F', 403), +(150368, 'Shantel', 1993, 'F', 403), +(150369, 'Lea', 1993, 'F', 402), +(150370, 'Paola', 1993, 'F', 402), +(150371, 'Skyler', 1993, 'F', 402), +(150372, 'Eileen', 1993, 'F', 401), +(150373, 'Eliza', 1993, 'F', 401), +(150374, 'Josie', 1993, 'F', 401), +(150375, 'Aisha', 1993, 'F', 398), +(150376, 'Kaylyn', 1993, 'F', 398), +(150377, 'Katy', 1993, 'F', 397), +(150378, 'Keisha', 1993, 'F', 396), +(150379, 'Connie', 1993, 'F', 395), +(150380, 'Rosemary', 1993, 'F', 394), +(150381, 'Yasmine', 1993, 'F', 393), +(150382, 'Kasandra', 1993, 'F', 391), +(150383, 'Katarina', 1993, 'F', 391), +(150384, 'Julianna', 1993, 'F', 390), +(150385, 'Latasha', 1993, 'F', 389), +(150386, 'Noemi', 1993, 'F', 389), +(150387, 'Jodi', 1993, 'F', 385), +(150388, 'Katlin', 1993, 'F', 385), +(150389, 'Iesha', 1993, 'F', 384), +(150390, 'Sonya', 1993, 'F', 380), +(150391, 'Yadira', 1993, 'F', 380), +(150392, 'Kerri', 1993, 'F', 378), +(150393, 'Latoya', 1993, 'F', 378), +(150394, 'Jena', 1993, 'F', 377), +(150395, 'Mckenna', 1993, 'F', 376), +(150396, 'Mara', 1993, 'F', 375), +(150397, 'Cheryl', 1993, 'F', 374), +(150398, 'Christie', 1993, 'F', 374), +(150399, 'Kerry', 1993, 'F', 372), +(150400, 'Leigh', 1993, 'F', 371), +(150401, 'Maegan', 1993, 'F', 371), +(150402, 'Darlene', 1993, 'F', 370), +(150403, 'Dulce', 1993, 'F', 369), +(150404, 'Octavia', 1993, 'F', 366), +(150405, 'Aurora', 1993, 'F', 365), +(150406, 'Georgia', 1993, 'F', 365), +(150407, 'Annette', 1993, 'F', 363), +(150408, 'Hollie', 1993, 'F', 363), +(150409, 'Demi', 1993, 'F', 362), +(150410, 'Loren', 1993, 'F', 362), +(150411, 'Alina', 1993, 'F', 361), +(150412, 'Blair', 1993, 'F', 360), +(150413, 'Brittni', 1993, 'F', 360), +(150414, 'Tammy', 1993, 'F', 358), +(150415, 'Debra', 1993, 'F', 357), +(150416, 'Nathalie', 1993, 'F', 357), +(150417, 'Luz', 1993, 'F', 355), +(150418, 'Kalyn', 1993, 'F', 354), +(150419, 'Mariela', 1993, 'F', 354), +(150420, 'Melina', 1993, 'F', 354), +(150421, 'Karli', 1993, 'F', 353), +(150422, 'Staci', 1993, 'F', 353), +(150423, 'Kala', 1993, 'F', 351), +(150424, 'Kaylie', 1993, 'F', 351), +(150425, 'Hailee', 1993, 'F', 350), +(150426, 'Jalisa', 1993, 'F', 350), +(150427, 'Ryan', 1993, 'F', 350), +(150428, 'Ashly', 1993, 'F', 348), +(150429, 'Jada', 1993, 'F', 347), +(150430, 'Beth', 1993, 'F', 346), +(150431, 'Micaela', 1993, 'F', 345), +(150432, 'Jaimie', 1993, 'F', 344), +(150433, 'Kia', 1993, 'F', 344), +(150434, 'Shelbie', 1993, 'F', 344), +(150435, 'Arlene', 1993, 'F', 343), +(150436, 'Celia', 1993, 'F', 343), +(150437, 'Hilary', 1993, 'F', 343), +(150438, 'Rita', 1993, 'F', 341), +(150439, 'Brandie', 1993, 'F', 340), +(150440, 'Karlee', 1993, 'F', 340), +(150441, 'Rebeca', 1993, 'F', 340), +(150442, 'Brook', 1993, 'F', 338), +(150443, 'Joanne', 1993, 'F', 338), +(150444, 'Mandy', 1993, 'F', 338), +(150445, 'Tabatha', 1993, 'F', 338), +(150446, 'Tracey', 1993, 'F', 338), +(150447, 'Jesse', 1993, 'F', 336), +(150448, 'Justina', 1993, 'F', 333), +(150449, 'Britany', 1993, 'F', 331), +(150450, 'Cameron', 1993, 'F', 329), +(150451, 'Karlie', 1993, 'F', 329), +(150452, 'Mindy', 1993, 'F', 329), +(150453, 'Clare', 1993, 'F', 328), +(150454, 'Silvia', 1993, 'F', 326), +(150455, 'Adrian', 1993, 'F', 325), +(150456, 'Domonique', 1993, 'F', 325), +(150457, 'Hali', 1993, 'F', 325), +(150458, 'Halie', 1993, 'F', 324), +(150459, 'Racheal', 1993, 'F', 324), +(150460, 'Chante', 1993, 'F', 323), +(150461, 'Kori', 1993, 'F', 323), +(150462, 'Maureen', 1993, 'F', 323), +(150463, 'Corina', 1993, 'F', 322), +(150464, 'Jennie', 1993, 'F', 322), +(150465, 'Jackie', 1993, 'F', 321), +(150466, 'Stevie', 1993, 'F', 321), +(150467, 'Gladys', 1993, 'F', 320), +(150468, 'Layla', 1993, 'F', 320), +(150469, 'Gretchen', 1993, 'F', 319), +(150470, 'Eden', 1993, 'F', 318), +(150471, 'Kiley', 1993, 'F', 318), +(150472, 'Sherry', 1993, 'F', 315), +(150473, 'Lesley', 1993, 'F', 314), +(150474, 'Yessenia', 1993, 'F', 314), +(150475, 'Bobbie', 1993, 'F', 313), +(150476, 'Kadijah', 1993, 'F', 313), +(150477, 'Lucero', 1993, 'F', 313), +(150478, 'Skye', 1993, 'F', 313), +(150479, 'Devan', 1993, 'F', 312), +(150480, 'Maura', 1993, 'F', 311), +(150481, 'Alycia', 1993, 'F', 310), +(150482, 'Griselda', 1993, 'F', 307), +(150483, 'Shelly', 1993, 'F', 307), +(150484, 'Angie', 1993, 'F', 306), +(150485, 'Constance', 1993, 'F', 306), +(150486, 'Reyna', 1993, 'F', 306), +(150487, 'Jana', 1993, 'F', 305), +(150488, 'Kacey', 1993, 'F', 305), +(150489, 'Jami', 1993, 'F', 304), +(150490, 'Antonia', 1993, 'F', 303), +(150491, 'Marlee', 1993, 'F', 303), +(150492, 'Fabiola', 1993, 'F', 302), +(150493, 'Rhiannon', 1993, 'F', 302), +(150494, 'Ali', 1993, 'F', 301), +(150495, 'Berenice', 1993, 'F', 300), +(150496, 'Carli', 1993, 'F', 300), +(150497, 'Janette', 1993, 'F', 300), +(150498, 'Kristyn', 1993, 'F', 299), +(150499, 'Brittanie', 1993, 'F', 298), +(150500, 'Deja', 1993, 'F', 298), +(150501, 'Kirstin', 1993, 'F', 298), +(150502, 'Cora', 1993, 'F', 297), +(150503, 'Lizette', 1993, 'F', 297), +(150504, 'Alayna', 1993, 'F', 296), +(150505, 'Baby', 1993, 'F', 296), +(150506, 'Danica', 1993, 'F', 296), +(150507, 'Patrice', 1993, 'F', 296), +(150508, 'Carlee', 1993, 'F', 294), +(150509, 'Kaci', 1993, 'F', 293), +(150510, 'Abbie', 1993, 'F', 292), +(150511, 'Alysia', 1993, 'F', 292), +(150512, 'Belinda', 1993, 'F', 292), +(150513, 'Betty', 1993, 'F', 292), +(150514, 'Ingrid', 1993, 'F', 290), +(150515, 'Jessika', 1993, 'F', 290), +(150516, 'Christen', 1993, 'F', 289), +(150517, 'Cori', 1993, 'F', 289), +(150518, 'Roxana', 1993, 'F', 287), +(150519, 'Tricia', 1993, 'F', 287), +(150520, 'Halle', 1993, 'F', 286), +(150521, 'Sarai', 1993, 'F', 286), +(150522, 'Lexus', 1993, 'F', 285), +(150523, 'Regan', 1993, 'F', 285), +(150524, 'Ava', 1993, 'F', 281), +(150525, 'Lacie', 1993, 'F', 281), +(150526, 'Tiera', 1993, 'F', 281), +(150527, 'Elaina', 1993, 'F', 280), +(150528, 'Dianna', 1993, 'F', 279), +(150529, 'Nadine', 1993, 'F', 279), +(150530, 'Isabelle', 1993, 'F', 278), +(150531, 'Lorraine', 1993, 'F', 278), +(150532, 'Micah', 1993, 'F', 278), +(150533, 'Terri', 1993, 'F', 278), +(150534, 'Ashlynn', 1993, 'F', 277), +(150535, 'Jayme', 1993, 'F', 277), +(150536, 'Aileen', 1993, 'F', 276), +(150537, 'Anjelica', 1993, 'F', 275), +(150538, 'Karley', 1993, 'F', 275), +(150539, 'Lara', 1993, 'F', 275), +(150540, 'Rikki', 1993, 'F', 275), +(150541, 'Kortney', 1993, 'F', 274), +(150542, 'Savanah', 1993, 'F', 274), +(150543, 'Audra', 1993, 'F', 273), +(150544, 'Breann', 1993, 'F', 273), +(150545, 'Elissa', 1993, 'F', 272), +(150546, 'Janessa', 1993, 'F', 271), +(150547, 'Janie', 1993, 'F', 270), +(150548, 'Judy', 1993, 'F', 270), +(150549, 'Athena', 1993, 'F', 269), +(150550, 'Chantal', 1993, 'F', 269), +(150551, 'Giovanna', 1993, 'F', 269), +(150552, 'Heaven', 1993, 'F', 269), +(150553, 'Magdalena', 1993, 'F', 269), +(150554, 'Maira', 1993, 'F', 269), +(150555, 'Traci', 1993, 'F', 269), +(150556, 'Brea', 1993, 'F', 268), +(150557, 'Tatyana', 1993, 'F', 268), +(150558, 'Chelsi', 1993, 'F', 267), +(150559, 'Gwendolyn', 1993, 'F', 267), +(150560, 'Beatrice', 1993, 'F', 266), +(150561, 'Breonna', 1993, 'F', 266), +(150562, 'Devyn', 1993, 'F', 266), +(150563, 'Ayana', 1993, 'F', 265), +(150564, 'Lynn', 1993, 'F', 264), +(150565, 'Nikita', 1993, 'F', 264), +(150566, 'Terra', 1993, 'F', 264), +(150567, 'Ella', 1993, 'F', 263), +(150568, 'Elyse', 1993, 'F', 263), +(150569, 'Jenifer', 1993, 'F', 262), +(150570, 'Corey', 1993, 'F', 261), +(150571, 'Elisha', 1993, 'F', 260), +(150572, 'Pauline', 1993, 'F', 260), +(150573, 'Shakira', 1993, 'F', 260), +(150574, 'Christiana', 1993, 'F', 259), +(150575, 'Dayna', 1993, 'F', 259), +(150576, 'Tyra', 1993, 'F', 258), +(150577, 'Kirstie', 1993, 'F', 257), +(150578, 'Alesha', 1993, 'F', 256), +(150579, 'Dylan', 1993, 'F', 256), +(150580, 'Christin', 1993, 'F', 255), +(150581, 'Ellie', 1993, 'F', 254), +(150582, 'Lauryn', 1993, 'F', 254), +(150583, 'Monika', 1993, 'F', 254), +(150584, 'Allyssa', 1993, 'F', 252), +(150585, 'Princess', 1993, 'F', 252), +(150586, 'Salina', 1993, 'F', 252), +(150587, 'Janine', 1993, 'F', 251), +(150588, 'Shante', 1993, 'F', 251), +(150589, 'Marlena', 1993, 'F', 250), +(150590, 'Scarlett', 1993, 'F', 250), +(150591, 'Bobbi', 1993, 'F', 249), +(150592, 'Brionna', 1993, 'F', 249), +(150593, 'Ayla', 1993, 'F', 248), +(150594, 'Iliana', 1993, 'F', 248), +(150595, 'Sheena', 1993, 'F', 248), +(150596, 'Marisela', 1993, 'F', 247), +(150597, 'Cecelia', 1993, 'F', 246), +(150598, 'Joselyn', 1993, 'F', 246), +(150599, 'Macey', 1993, 'F', 246), +(150600, 'Maricela', 1993, 'F', 246), +(150601, 'Essence', 1993, 'F', 245), +(150602, 'Myra', 1993, 'F', 245), +(150603, 'Rhonda', 1993, 'F', 245), +(150604, 'Jaqueline', 1993, 'F', 244), +(150605, 'Tiffanie', 1993, 'F', 244), +(150606, 'Shea', 1993, 'F', 243), +(150607, 'Madalyn', 1993, 'F', 241), +(150608, 'Olga', 1993, 'F', 241), +(150609, 'Bryana', 1993, 'F', 240), +(150610, 'Juana', 1993, 'F', 240), +(150611, 'Keely', 1993, 'F', 239), +(150612, 'Kimberlee', 1993, 'F', 239), +(150613, 'Kristian', 1993, 'F', 239), +(150614, 'Eboni', 1993, 'F', 238), +(150615, 'Jamila', 1993, 'F', 238), +(150616, 'Stefani', 1993, 'F', 238), +(150617, 'Destiney', 1993, 'F', 237), +(150618, 'Gabriel', 1993, 'F', 237), +(150619, 'Nikole', 1993, 'F', 237), +(150620, 'Leandra', 1993, 'F', 236), +(150621, 'Melisa', 1993, 'F', 236), +(150622, 'Bridgett', 1993, 'F', 235), +(150623, 'Jazmyn', 1993, 'F', 235), +(150624, 'Kaela', 1993, 'F', 235), +(150625, 'Ashely', 1993, 'F', 234), +(150626, 'Betsy', 1993, 'F', 233), +(150627, 'Brielle', 1993, 'F', 233), +(150628, 'Helena', 1993, 'F', 233), +(150629, 'Kaylynn', 1993, 'F', 232), +(150630, 'Kristal', 1993, 'F', 232), +(150631, 'Liana', 1993, 'F', 232), +(150632, 'Kaycee', 1993, 'F', 231), +(150633, 'Chaya', 1993, 'F', 229), +(150634, 'Katerina', 1993, 'F', 228), +(150635, 'Kelcie', 1993, 'F', 228), +(150636, 'Martina', 1993, 'F', 228), +(150637, 'Symone', 1993, 'F', 228), +(150638, 'Irma', 1993, 'F', 227), +(150639, 'Lakeisha', 1993, 'F', 227), +(150640, 'Yazmin', 1993, 'F', 227), +(150641, 'Delia', 1993, 'F', 226), +(150642, 'Dominque', 1993, 'F', 226), +(150643, 'Dina', 1993, 'F', 225), +(150644, 'Kendal', 1993, 'F', 225), +(150645, 'Kimberley', 1993, 'F', 225), +(150646, 'Montana', 1993, 'F', 225), +(150647, 'Amie', 1993, 'F', 224), +(150648, 'Ayanna', 1993, 'F', 224), +(150649, 'Chantelle', 1993, 'F', 224), +(150650, 'Itzel', 1993, 'F', 224), +(150651, 'Ivette', 1993, 'F', 224), +(150652, 'Joelle', 1993, 'F', 224), +(150653, 'Laken', 1993, 'F', 224), +(150654, 'Marcella', 1993, 'F', 224), +(150655, 'Shelley', 1993, 'F', 223), +(150656, 'China', 1993, 'F', 222), +(150657, 'Kassidy', 1993, 'F', 222), +(150658, 'Michael', 1993, 'F', 222), +(150659, 'Myranda', 1993, 'F', 222), +(150660, 'Coraima', 1993, 'F', 221), +(150661, 'Julissa', 1993, 'F', 221), +(150662, 'Noel', 1993, 'F', 221), +(150663, 'Graciela', 1993, 'F', 220), +(150664, 'Kalie', 1993, 'F', 220), +(150665, 'Tamika', 1993, 'F', 220), +(150666, 'Ashanti', 1993, 'F', 219), +(150667, 'Chastity', 1993, 'F', 219), +(150668, 'Fallon', 1993, 'F', 219), +(150669, 'Joann', 1993, 'F', 219), +(150670, 'Marquita', 1993, 'F', 219), +(150671, 'Catalina', 1993, 'F', 218), +(150672, 'Felisha', 1993, 'F', 218), +(150673, 'Jessenia', 1993, 'F', 218), +(150674, 'Billie', 1993, 'F', 217), +(150675, 'Kandace', 1993, 'F', 217), +(150676, 'Lana', 1993, 'F', 217), +(150677, 'Alecia', 1993, 'F', 216), +(150678, 'Alysa', 1993, 'F', 216), +(150679, 'Shannen', 1993, 'F', 216), +(150680, 'Bernadette', 1993, 'F', 215), +(150681, 'Darcy', 1993, 'F', 215), +(150682, 'Joan', 1993, 'F', 215), +(150683, 'Jodie', 1993, 'F', 215), +(150684, 'Kailee', 1993, 'F', 215), +(150685, 'Trinity', 1993, 'F', 215), +(150686, 'Jean', 1993, 'F', 214), +(150687, 'Jessi', 1993, 'F', 214), +(150688, 'Phoebe', 1993, 'F', 214), +(150689, 'Selene', 1993, 'F', 214), +(150690, 'Tyesha', 1993, 'F', 214), +(150691, 'Estefania', 1993, 'F', 213), +(150692, 'Ivonne', 1993, 'F', 213), +(150693, 'Kailyn', 1993, 'F', 212), +(150694, 'Lyndsay', 1993, 'F', 212), +(150695, 'Niki', 1993, 'F', 212), +(150696, 'Leeann', 1993, 'F', 211), +(150697, 'Sage', 1993, 'F', 211), +(150698, 'Brittaney', 1993, 'F', 210), +(150699, 'Daphne', 1993, 'F', 210), +(150700, 'Porsha', 1993, 'F', 210), +(150701, 'Geneva', 1993, 'F', 209), +(150702, 'Kathrine', 1993, 'F', 209), +(150703, 'Lizeth', 1993, 'F', 209), +(150704, 'Deidre', 1993, 'F', 208), +(150705, 'Aja', 1993, 'F', 207), +(150706, 'Ashli', 1993, 'F', 207), +(150707, 'Deidra', 1993, 'F', 207), +(150708, 'Jolene', 1993, 'F', 207), +(150709, 'Kassie', 1993, 'F', 207), +(150710, 'Krystina', 1993, 'F', 206), +(150711, 'Whitley', 1993, 'F', 206), +(150712, 'Katlynn', 1993, 'F', 205), +(150713, 'Lexi', 1993, 'F', 205), +(150714, 'Kalene', 1993, 'F', 204), +(150715, 'Asha', 1993, 'F', 203), +(150716, 'Janel', 1993, 'F', 203), +(150717, 'Jerrica', 1993, 'F', 203), +(150718, 'Leann', 1993, 'F', 203), +(150719, 'Eunice', 1993, 'F', 202), +(150720, 'Mariel', 1993, 'F', 202), +(150721, 'Susanna', 1993, 'F', 202), +(150722, 'Deyanira', 1993, 'F', 201), +(150723, 'Jerica', 1993, 'F', 201), +(150724, 'Lourdes', 1993, 'F', 201), +(150725, 'Mai', 1993, 'F', 201), +(150726, 'Nakia', 1993, 'F', 201), +(150727, 'Rubi', 1993, 'F', 201), +(150728, 'Destini', 1993, 'F', 200), +(150729, 'Emerald', 1993, 'F', 200), +(150730, 'Eryn', 1993, 'F', 200), +(150731, 'Kayley', 1993, 'F', 200), +(150732, 'Laurie', 1993, 'F', 200), +(150733, 'Maxine', 1993, 'F', 200), +(150734, 'Alessandra', 1993, 'F', 199), +(150735, 'Leila', 1993, 'F', 199), +(150736, 'Reagan', 1993, 'F', 199), +(150737, 'Yasmeen', 1993, 'F', 199), +(150738, 'Dara', 1993, 'F', 198), +(150739, 'Shyanne', 1993, 'F', 198), +(150740, 'Stormy', 1993, 'F', 198), +(150741, 'Viridiana', 1993, 'F', 198), +(150742, 'Damaris', 1993, 'F', 197), +(150743, 'Elsa', 1993, 'F', 197), +(150744, 'Kaylene', 1993, 'F', 197), +(150745, 'Maryann', 1993, 'F', 197), +(150746, 'Adrianne', 1993, 'F', 196), +(150747, 'Britni', 1993, 'F', 196), +(150748, 'Danyelle', 1993, 'F', 196), +(150749, 'Kallie', 1993, 'F', 196), +(150750, 'Krystle', 1993, 'F', 196), +(150751, 'Blake', 1993, 'F', 195), +(150752, 'Crysta', 1993, 'F', 195), +(150753, 'Fiona', 1993, 'F', 195), +(150754, 'Infant', 1993, 'F', 195), +(150755, 'Reina', 1993, 'F', 195), +(150756, 'Demetria', 1993, 'F', 194), +(150757, 'Alondra', 1993, 'F', 193), +(150758, 'Anais', 1993, 'F', 193), +(150759, 'Jeannette', 1993, 'F', 193), +(150760, 'Kayli', 1993, 'F', 192), +(150761, 'Latrice', 1993, 'F', 192), +(150762, 'Marjorie', 1993, 'F', 191), +(150763, 'Nataly', 1993, 'F', 191), +(150764, 'Brittnee', 1993, 'F', 190), +(150765, 'Emilia', 1993, 'F', 190), +(150766, 'Carson', 1993, 'F', 189), +(150767, 'Elyssa', 1993, 'F', 189), +(150768, 'Jasmyn', 1993, 'F', 188), +(150769, 'Kinsey', 1993, 'F', 188), +(150770, 'Marcia', 1993, 'F', 188), +(150771, 'Nayeli', 1993, 'F', 188), +(150772, 'Paloma', 1993, 'F', 188), +(150773, 'Aspen', 1993, 'F', 187), +(150774, 'Charmaine', 1993, 'F', 187), +(150775, 'Corrine', 1993, 'F', 187), +(150776, 'Deandra', 1993, 'F', 187), +(150777, 'Eliana', 1993, 'F', 187), +(150778, 'Jasmyne', 1993, 'F', 187), +(150779, 'Lynette', 1993, 'F', 187), +(150780, 'Alena', 1993, 'F', 186), +(150781, 'Austin', 1993, 'F', 186), +(150782, 'Leilani', 1993, 'F', 186), +(150783, 'Tanesha', 1993, 'F', 186), +(150784, 'Aubree', 1993, 'F', 185), +(150785, 'Hana', 1993, 'F', 185), +(150786, 'Janell', 1993, 'F', 185), +(150787, 'Kim', 1993, 'F', 185), +(150788, 'Unique', 1993, 'F', 185), +(150789, 'Valencia', 1993, 'F', 185), +(150790, 'Bailee', 1993, 'F', 184), +(150791, 'Brittny', 1993, 'F', 184), +(150792, 'Eleni', 1993, 'F', 184), +(150793, 'Haylie', 1993, 'F', 184), +(150794, 'Liza', 1993, 'F', 184), +(150795, 'Mariam', 1993, 'F', 184), +(150796, 'Cherish', 1993, 'F', 183), +(150797, 'Danika', 1993, 'F', 183), +(150798, 'Macie', 1993, 'F', 183), +(150799, 'Shaniece', 1993, 'F', 183), +(150800, 'Chandra', 1993, 'F', 182), +(150801, 'Chanelle', 1993, 'F', 182), +(150802, 'Chrystal', 1993, 'F', 182), +(150803, 'Isis', 1993, 'F', 182), +(150804, 'Joana', 1993, 'F', 182), +(150805, 'Valentina', 1993, 'F', 182), +(150806, 'Cody', 1993, 'F', 181), +(150807, 'Georgina', 1993, 'F', 181), +(150808, 'Ivana', 1993, 'F', 181), +(150809, 'Holli', 1993, 'F', 180), +(150810, 'Jazmyne', 1993, 'F', 180), +(150811, 'Luisa', 1993, 'F', 180), +(150812, 'Richelle', 1993, 'F', 180), +(150813, 'Doris', 1993, 'F', 179), +(150814, 'Flor', 1993, 'F', 179), +(150815, 'Jesenia', 1993, 'F', 179), +(150816, 'Kandice', 1993, 'F', 179), +(150817, 'Kenisha', 1993, 'F', 179), +(150818, 'Kianna', 1993, 'F', 179), +(150819, 'Alexander', 1993, 'F', 178), +(150820, 'Dalia', 1993, 'F', 178), +(150821, 'Debbie', 1993, 'F', 178), +(150822, 'Kalee', 1993, 'F', 178), +(150823, 'Lynsey', 1993, 'F', 178), +(150824, 'Malia', 1993, 'F', 178), +(150825, 'Marianne', 1993, 'F', 178), +(150826, 'Shanika', 1993, 'F', 178), +(150827, 'Maddison', 1993, 'F', 177), +(150828, 'Shae', 1993, 'F', 177), +(150829, 'Angeline', 1993, 'F', 176), +(150830, 'Esperanza', 1993, 'F', 176), +(150831, 'Gillian', 1993, 'F', 176), +(150832, 'Shawnee', 1993, 'F', 176), +(150833, 'Cassondra', 1993, 'F', 175), +(150834, 'Justice', 1993, 'F', 175), +(150835, 'Marley', 1993, 'F', 175), +(150836, 'Rosario', 1993, 'F', 175), +(150837, 'Tatianna', 1993, 'F', 175), +(150838, 'Coral', 1993, 'F', 174), +(150839, 'Halley', 1993, 'F', 174), +(150840, 'Katheryn', 1993, 'F', 174), +(150841, 'Roxanna', 1993, 'F', 174), +(150842, 'Rylee', 1993, 'F', 174), +(150843, 'Janay', 1993, 'F', 173), +(150844, 'Andria', 1993, 'F', 172), +(150845, 'Chelsy', 1993, 'F', 172), +(150846, 'Tatum', 1993, 'F', 172), +(150847, 'Tierney', 1993, 'F', 172), +(150848, 'Breeanna', 1993, 'F', 171), +(150849, 'Edna', 1993, 'F', 171), +(150850, 'Fernanda', 1993, 'F', 171), +(150851, 'Kenia', 1993, 'F', 171), +(150852, 'Samara', 1993, 'F', 171), +(150853, 'Trista', 1993, 'F', 171), +(150854, 'Addison', 1993, 'F', 170), +(150855, 'Aracely', 1993, 'F', 170), +(150856, 'Brooklynn', 1993, 'F', 170), +(150857, 'Laci', 1993, 'F', 170), +(150858, 'Lora', 1993, 'F', 170), +(150859, 'Marian', 1993, 'F', 170), +(150860, 'Marianna', 1993, 'F', 170), +(150861, 'Mckayla', 1993, 'F', 170), +(150862, 'Sonja', 1993, 'F', 170), +(150863, 'Tkeyah', 1993, 'F', 170), +(150864, 'Cari', 1993, 'F', 169), +(150865, 'Shanelle', 1993, 'F', 169), +(150866, 'Chana', 1993, 'F', 168), +(150867, 'Krysten', 1993, 'F', 168), +(150868, 'Lidia', 1993, 'F', 168), +(150869, 'Myesha', 1993, 'F', 168), +(150870, 'Merissa', 1993, 'F', 167), +(150871, 'Stacia', 1993, 'F', 167), +(150872, 'Stella', 1993, 'F', 167), +(150873, 'Deana', 1993, 'F', 166), +(150874, 'Dora', 1993, 'F', 166), +(150875, 'Drew', 1993, 'F', 166), +(150876, 'Juliet', 1993, 'F', 166), +(150877, 'Tiarra', 1993, 'F', 166), +(150878, 'Adilene', 1993, 'F', 165), +(150879, 'Anabel', 1993, 'F', 165), +(150880, 'Annmarie', 1993, 'F', 165), +(150881, 'Denisha', 1993, 'F', 165), +(150882, 'Janna', 1993, 'F', 165), +(150883, 'Lia', 1993, 'F', 165), +(150884, 'Denisse', 1993, 'F', 164), +(150885, 'Lisette', 1993, 'F', 164), +(150886, 'Maci', 1993, 'F', 164), +(150887, 'Vanesa', 1993, 'F', 164), +(150888, 'Yajaira', 1993, 'F', 164), +(150889, 'Alix', 1993, 'F', 163), +(150890, 'Frankie', 1993, 'F', 163), +(150891, 'Kayleen', 1993, 'F', 163), +(150892, 'Latonya', 1993, 'F', 163), +(150893, 'Patience', 1993, 'F', 163), +(150894, 'Sarina', 1993, 'F', 163), +(150895, 'Kyle', 1993, 'F', 162), +(150896, 'Lina', 1993, 'F', 162), +(150897, 'Mireya', 1993, 'F', 162), +(150898, 'Aundrea', 1993, 'F', 161), +(150899, 'Bertha', 1993, 'F', 161), +(150900, 'Brynn', 1993, 'F', 161), +(150901, 'Kati', 1993, 'F', 161), +(150902, 'Kelcey', 1993, 'F', 161), +(150903, 'Alivia', 1993, 'F', 160), +(150904, 'Becky', 1993, 'F', 160), +(150905, 'Iman', 1993, 'F', 160), +(150906, 'Johnna', 1993, 'F', 160), +(150907, 'Reanna', 1993, 'F', 160), +(150908, 'Santana', 1993, 'F', 160), +(150909, 'Dolores', 1993, 'F', 159), +(150910, 'Lee', 1993, 'F', 159), +(150911, 'Marcela', 1993, 'F', 159), +(150912, 'Marla', 1993, 'F', 159), +(150913, 'Mikala', 1993, 'F', 159), +(150914, 'Brieanna', 1993, 'F', 158), +(150915, 'Brigitte', 1993, 'F', 158), +(150916, 'Emely', 1993, 'F', 158), +(150917, 'Celine', 1993, 'F', 157), +(150918, 'Jesica', 1993, 'F', 157), +(150919, 'Kyleigh', 1993, 'F', 157), +(150920, 'Reba', 1993, 'F', 157), +(150921, 'Sydnee', 1993, 'F', 157), +(150922, 'Kaylan', 1993, 'F', 156), +(150923, 'Pearl', 1993, 'F', 156), +(150924, 'Presley', 1993, 'F', 156), +(150925, 'Tayla', 1993, 'F', 156), +(150926, 'Trina', 1993, 'F', 156), +(150927, 'Vicky', 1993, 'F', 156), +(150928, 'Elana', 1993, 'F', 155), +(150929, 'Isamar', 1993, 'F', 155), +(150930, 'Jaimee', 1993, 'F', 155), +(150931, 'Renae', 1993, 'F', 155), +(150932, 'Amberly', 1993, 'F', 154), +(150933, 'Catrina', 1993, 'F', 154), +(150934, 'Kelci', 1993, 'F', 154), +(150935, 'Lexie', 1993, 'F', 154), +(150936, 'Lilian', 1993, 'F', 154), +(150937, 'Linsey', 1993, 'F', 154), +(150938, 'Lissette', 1993, 'F', 154), +(150939, 'Malika', 1993, 'F', 154), +(150940, 'Salena', 1993, 'F', 154), +(150941, 'Xiomara', 1993, 'F', 154), +(150942, 'Alyse', 1993, 'F', 153), +(150943, 'Annamarie', 1993, 'F', 153), +(150944, 'Cathy', 1993, 'F', 153), +(150945, 'Shakia', 1993, 'F', 153), +(150946, 'Caitlynn', 1993, 'F', 152), +(150947, 'Cinthia', 1993, 'F', 152), +(150948, 'Hilda', 1993, 'F', 152), +(150949, 'Baylee', 1993, 'F', 151), +(150950, 'Danae', 1993, 'F', 151), +(150951, 'Jazzmine', 1993, 'F', 151), +(150952, 'Kenzie', 1993, 'F', 151), +(150953, 'Laquita', 1993, 'F', 151), +(150954, 'Miracle', 1993, 'F', 151), +(150955, 'Raina', 1993, 'F', 151), +(150956, 'Alyssia', 1993, 'F', 150), +(150957, 'Halee', 1993, 'F', 150), +(150958, 'Sheridan', 1993, 'F', 150), +(150959, 'Chelsee', 1993, 'F', 149), +(150960, 'Mari', 1993, 'F', 149), +(150961, 'Mercedez', 1993, 'F', 149), +(150962, 'Roberta', 1993, 'F', 149), +(150963, 'Shanequa', 1993, 'F', 148), +(150964, 'Amira', 1993, 'F', 147), +(150965, 'Hazel', 1993, 'F', 147), +(150966, 'Keyana', 1993, 'F', 147), +(150967, 'Shameka', 1993, 'F', 147), +(150968, 'Ashlea', 1993, 'F', 146), +(150969, 'Jacey', 1993, 'F', 146), +(150970, 'Jody', 1993, 'F', 146), +(150971, 'Kasie', 1993, 'F', 146), +(150972, 'Kaylen', 1993, 'F', 146), +(150973, 'Magen', 1993, 'F', 146), +(150974, 'Portia', 1993, 'F', 146), +(150975, 'Rosalinda', 1993, 'F', 146), +(150976, 'Tisha', 1993, 'F', 146), +(150977, 'Amaris', 1993, 'F', 145), +(150978, 'Breona', 1993, 'F', 145), +(150979, 'Camilla', 1993, 'F', 145), +(150980, 'Casie', 1993, 'F', 145), +(150981, 'Keara', 1993, 'F', 145), +(150982, 'Kelsy', 1993, 'F', 145), +(150983, 'Lesly', 1993, 'F', 145), +(150984, 'Tawny', 1993, 'F', 145), +(150985, 'Tracie', 1993, 'F', 145), +(150986, 'Annemarie', 1993, 'F', 144), +(150987, 'Christal', 1993, 'F', 144), +(150988, 'Codi', 1993, 'F', 144), +(150989, 'Cydney', 1993, 'F', 144), +(150990, 'Jewel', 1993, 'F', 144), +(150991, 'Jourdan', 1993, 'F', 144), +(150992, 'Shanell', 1993, 'F', 144), +(150993, 'Taylar', 1993, 'F', 144), +(150994, 'Anahi', 1993, 'F', 143), +(150995, 'Elsie', 1993, 'F', 143), +(150996, 'Estrella', 1993, 'F', 143), +(150997, 'Glenda', 1993, 'F', 143), +(150998, 'Jayde', 1993, 'F', 143), +(150999, 'Kaytlin', 1993, 'F', 143), +(151000, 'Kirby', 1993, 'F', 143), +(151001, 'Margo', 1993, 'F', 143), +(151002, 'Rosalie', 1993, 'F', 143), +(151003, 'Sommer', 1993, 'F', 143), +(151004, 'Spencer', 1993, 'F', 143), +(151005, 'Tera', 1993, 'F', 143), +(151006, 'Leigha', 1993, 'F', 142), +(151007, 'Magaly', 1993, 'F', 142), +(151008, 'Mattie', 1993, 'F', 142), +(151009, 'Ryann', 1993, 'F', 142), +(151010, 'Samatha', 1993, 'F', 142), +(151011, 'Tory', 1993, 'F', 142), +(151012, 'Violet', 1993, 'F', 142), +(151013, 'Anika', 1993, 'F', 141), +(151014, 'Becca', 1993, 'F', 141); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(151015, 'Cathryn', 1993, 'F', 141), +(151016, 'Celena', 1993, 'F', 141), +(151017, 'Grecia', 1993, 'F', 141), +(151018, 'Kami', 1993, 'F', 141), +(151019, 'Karin', 1993, 'F', 141), +(151020, 'Shaquita', 1993, 'F', 141), +(151021, 'Tasia', 1993, 'F', 141), +(151022, 'Aubrie', 1993, 'F', 140), +(151023, 'Darien', 1993, 'F', 140), +(151024, 'Deirdre', 1993, 'F', 140), +(151025, 'Jayla', 1993, 'F', 140), +(151026, 'Meranda', 1993, 'F', 140), +(151027, 'Amalia', 1993, 'F', 139), +(151028, 'Ciarra', 1993, 'F', 139), +(151029, 'Hayden', 1993, 'F', 139), +(151030, 'Karisa', 1993, 'F', 139), +(151031, 'Monet', 1993, 'F', 139), +(151032, 'Shantell', 1993, 'F', 139), +(151033, 'Torri', 1993, 'F', 139), +(151034, 'Ada', 1993, 'F', 138), +(151035, 'Delilah', 1993, 'F', 138), +(151036, 'Eve', 1993, 'F', 138), +(151037, 'Keyonna', 1993, 'F', 138), +(151038, 'Loretta', 1993, 'F', 138), +(151039, 'Tonisha', 1993, 'F', 138), +(151040, 'Francis', 1993, 'F', 137), +(151041, 'Torie', 1993, 'F', 137), +(151042, 'Zoey', 1993, 'F', 137), +(151043, 'Belen', 1993, 'F', 136), +(151044, 'Desire', 1993, 'F', 136), +(151045, 'Jovanna', 1993, 'F', 136), +(151046, 'Rhea', 1993, 'F', 136), +(151047, 'Stephani', 1993, 'F', 136), +(151048, 'Teri', 1993, 'F', 136), +(151049, 'Brianda', 1993, 'F', 135), +(151050, 'Cory', 1993, 'F', 135), +(151051, 'Harmony', 1993, 'F', 135), +(151052, 'Nicollette', 1993, 'F', 135), +(151053, 'Serina', 1993, 'F', 135), +(151054, 'Anisha', 1993, 'F', 134), +(151055, 'Brittnie', 1993, 'F', 134), +(151056, 'Candy', 1993, 'F', 134), +(151057, 'Cherie', 1993, 'F', 134), +(151058, 'Colby', 1993, 'F', 134), +(151059, 'Colette', 1993, 'F', 134), +(151060, 'Francisca', 1993, 'F', 134), +(151061, 'Joslyn', 1993, 'F', 134), +(151062, 'Kennedy', 1993, 'F', 134), +(151063, 'Louise', 1993, 'F', 134), +(151064, 'Mya', 1993, 'F', 134), +(151065, 'Franchesca', 1993, 'F', 133), +(151066, 'Mallorie', 1993, 'F', 133), +(151067, 'Rosemarie', 1993, 'F', 133), +(151068, 'Siobhan', 1993, 'F', 133), +(151069, 'Wanda', 1993, 'F', 133), +(151070, 'London', 1993, 'F', 132), +(151071, 'Nichelle', 1993, 'F', 132), +(151072, 'Shari', 1993, 'F', 132), +(151073, 'Ansley', 1993, 'F', 131), +(151074, 'Arely', 1993, 'F', 131), +(151075, 'Ileana', 1993, 'F', 131), +(151076, 'Ivory', 1993, 'F', 131), +(151077, 'Jacquelynn', 1993, 'F', 131), +(151078, 'Keanna', 1993, 'F', 131), +(151079, 'Malinda', 1993, 'F', 131), +(151080, 'Marta', 1993, 'F', 131), +(151081, 'Nicolle', 1993, 'F', 131), +(151082, 'Quinn', 1993, 'F', 131), +(151083, 'Shamika', 1993, 'F', 131), +(151084, 'Shaquana', 1993, 'F', 131), +(151085, 'Alia', 1993, 'F', 130), +(151086, 'Brandee', 1993, 'F', 130), +(151087, 'Bree', 1993, 'F', 130), +(151088, 'Daniel', 1993, 'F', 130), +(151089, 'Kaytlyn', 1993, 'F', 130), +(151090, 'Lashay', 1993, 'F', 130), +(151091, 'Makenna', 1993, 'F', 130), +(151092, 'Siera', 1993, 'F', 130), +(151093, 'Farrah', 1993, 'F', 129), +(151094, 'Juliette', 1993, 'F', 129), +(151095, 'Maia', 1993, 'F', 129), +(151096, 'Cali', 1993, 'F', 128), +(151097, 'Corinna', 1993, 'F', 128), +(151098, 'Jaleesa', 1993, 'F', 128), +(151099, 'Lynda', 1993, 'F', 128), +(151100, 'Racquel', 1993, 'F', 128), +(151101, 'Yessica', 1993, 'F', 128), +(151102, 'Dena', 1993, 'F', 127), +(151103, 'Jacy', 1993, 'F', 127), +(151104, 'Jamesha', 1993, 'F', 127), +(151105, 'Kacy', 1993, 'F', 127), +(151106, 'Lilly', 1993, 'F', 127), +(151107, 'Rena', 1993, 'F', 127), +(151108, 'Shay', 1993, 'F', 127), +(151109, 'Antionette', 1993, 'F', 126), +(151110, 'Bernice', 1993, 'F', 126), +(151111, 'Chyna', 1993, 'F', 126), +(151112, 'Darby', 1993, 'F', 126), +(151113, 'Francine', 1993, 'F', 126), +(151114, 'Ginger', 1993, 'F', 126), +(151115, 'Kanisha', 1993, 'F', 126), +(151116, 'Kristan', 1993, 'F', 126), +(151117, 'Shaquille', 1993, 'F', 126), +(151118, 'Tarah', 1993, 'F', 126), +(151119, 'Cady', 1993, 'F', 125), +(151120, 'Josefina', 1993, 'F', 125), +(151121, 'Khadija', 1993, 'F', 125), +(151122, 'Kierstin', 1993, 'F', 125), +(151123, 'Shyla', 1993, 'F', 125), +(151124, 'Angelia', 1993, 'F', 124), +(151125, 'Dayana', 1993, 'F', 124), +(151126, 'Mandi', 1993, 'F', 124), +(151127, 'Maricruz', 1993, 'F', 124), +(151128, 'Mona', 1993, 'F', 124), +(151129, 'Rayna', 1993, 'F', 124), +(151130, 'Shanique', 1993, 'F', 124), +(151131, 'Jacquelin', 1993, 'F', 123), +(151132, 'Jalissa', 1993, 'F', 123), +(151133, 'Keira', 1993, 'F', 123), +(151134, 'Kimber', 1993, 'F', 123), +(151135, 'Lashonda', 1993, 'F', 123), +(151136, 'Yanira', 1993, 'F', 123), +(151137, 'Anyssa', 1993, 'F', 122), +(151138, 'Briona', 1993, 'F', 122), +(151139, 'Connor', 1993, 'F', 122), +(151140, 'Estefani', 1993, 'F', 122), +(151141, 'Kaylah', 1993, 'F', 122), +(151142, 'Marlen', 1993, 'F', 122), +(151143, 'Aleah', 1993, 'F', 121), +(151144, 'Amani', 1993, 'F', 121), +(151145, 'Anisa', 1993, 'F', 121), +(151146, 'Annika', 1993, 'F', 121), +(151147, 'Chynna', 1993, 'F', 121), +(151148, 'Danisha', 1993, 'F', 121), +(151149, 'Geena', 1993, 'F', 121), +(151150, 'Gracie', 1993, 'F', 121), +(151151, 'Jackeline', 1993, 'F', 121), +(151152, 'Keosha', 1993, 'F', 121), +(151153, 'Kimberlyn', 1993, 'F', 121), +(151154, 'Krystin', 1993, 'F', 121), +(151155, 'Laquisha', 1993, 'F', 121), +(151156, 'Rebecka', 1993, 'F', 121), +(151157, 'Kenyatta', 1993, 'F', 120), +(151158, 'Calli', 1993, 'F', 119), +(151159, 'Charissa', 1993, 'F', 119), +(151160, 'Davina', 1993, 'F', 119), +(151161, 'Dionna', 1993, 'F', 119), +(151162, 'Kaelyn', 1993, 'F', 119), +(151163, 'Lilia', 1993, 'F', 119), +(151164, 'Markie', 1993, 'F', 119), +(151165, 'Miriah', 1993, 'F', 119), +(151166, 'Shyann', 1993, 'F', 119), +(151167, 'Susannah', 1993, 'F', 119), +(151168, 'Sydni', 1993, 'F', 119), +(151169, 'Destany', 1993, 'F', 118), +(151170, 'Geraldine', 1993, 'F', 118), +(151171, 'Keyanna', 1993, 'F', 118), +(151172, 'Linnea', 1993, 'F', 118), +(151173, 'Rosie', 1993, 'F', 118), +(151174, 'Allysa', 1993, 'F', 117), +(151175, 'Cecily', 1993, 'F', 117), +(151176, 'Dixie', 1993, 'F', 117), +(151177, 'Jamika', 1993, 'F', 117), +(151178, 'Jeanna', 1993, 'F', 117), +(151179, 'Jenae', 1993, 'F', 117), +(151180, 'Shianne', 1993, 'F', 117), +(151181, 'Valarie', 1993, 'F', 117), +(151182, 'America', 1993, 'F', 116), +(151183, 'Dani', 1993, 'F', 116), +(151184, 'Destinie', 1993, 'F', 116), +(151185, 'Fantasia', 1993, 'F', 116), +(151186, 'Keila', 1993, 'F', 116), +(151187, 'Lupita', 1993, 'F', 116), +(151188, 'Marion', 1993, 'F', 116), +(151189, 'Sammantha', 1993, 'F', 116), +(151190, 'Shawn', 1993, 'F', 116), +(151191, 'Sherri', 1993, 'F', 116), +(151192, 'Stormie', 1993, 'F', 116), +(151193, 'Addie', 1993, 'F', 115), +(151194, 'Aida', 1993, 'F', 115), +(151195, 'Akilah', 1993, 'F', 115), +(151196, 'Consuelo', 1993, 'F', 115), +(151197, 'Corrie', 1993, 'F', 115), +(151198, 'Felecia', 1993, 'F', 115), +(151199, 'Kady', 1993, 'F', 115), +(151200, 'Kayle', 1993, 'F', 115), +(151201, 'Malorie', 1993, 'F', 115), +(151202, 'Rosanna', 1993, 'F', 115), +(151203, 'Shanae', 1993, 'F', 115), +(151204, 'Acacia', 1993, 'F', 114), +(151205, 'Diandra', 1993, 'F', 114), +(151206, 'Joshua', 1993, 'F', 114), +(151207, 'Kalynn', 1993, 'F', 114), +(151208, 'Kiah', 1993, 'F', 114), +(151209, 'Peggy', 1993, 'F', 114), +(151210, 'Suzanna', 1993, 'F', 114), +(151211, 'Allegra', 1993, 'F', 113), +(151212, 'Daisha', 1993, 'F', 113), +(151213, 'Jazzmin', 1993, 'F', 113), +(151214, 'Keana', 1993, 'F', 113), +(151215, 'Kelsee', 1993, 'F', 113), +(151216, 'Lashawn', 1993, 'F', 113), +(151217, 'Lucille', 1993, 'F', 113), +(151218, 'Rhianna', 1993, 'F', 113), +(151219, 'Shavon', 1993, 'F', 113), +(151220, 'Thea', 1993, 'F', 113), +(151221, 'Therese', 1993, 'F', 113), +(151222, 'Tosha', 1993, 'F', 113), +(151223, 'Jalyn', 1993, 'F', 112), +(151224, 'Jovana', 1993, 'F', 112), +(151225, 'Malissa', 1993, 'F', 112), +(151226, 'Quanisha', 1993, 'F', 112), +(151227, 'Tameka', 1993, 'F', 112), +(151228, 'Abbigail', 1993, 'F', 111), +(151229, 'Camila', 1993, 'F', 111), +(151230, 'Christopher', 1993, 'F', 111), +(151231, 'Lakisha', 1993, 'F', 111), +(151232, 'Maryam', 1993, 'F', 111), +(151233, 'Savana', 1993, 'F', 111), +(151234, 'Shaylee', 1993, 'F', 111), +(151235, 'Alexi', 1993, 'F', 110), +(151236, 'Amina', 1993, 'F', 110), +(151237, 'Audrianna', 1993, 'F', 110), +(151238, 'Jenelle', 1993, 'F', 110), +(151239, 'Kalli', 1993, 'F', 110), +(151240, 'Keyona', 1993, 'F', 110), +(151241, 'Rene', 1993, 'F', 110), +(151242, 'Sequoia', 1993, 'F', 110), +(151243, 'Shanda', 1993, 'F', 110), +(151244, 'Annelise', 1993, 'F', 109), +(151245, 'Ayesha', 1993, 'F', 109), +(151246, 'Cathleen', 1993, 'F', 109), +(151247, 'Dania', 1993, 'F', 109), +(151248, 'Daria', 1993, 'F', 109), +(151249, 'Estefany', 1993, 'F', 109), +(151250, 'Magali', 1993, 'F', 109), +(151251, 'Samira', 1993, 'F', 109), +(151252, 'Susie', 1993, 'F', 109), +(151253, 'Sydnie', 1993, 'F', 109), +(151254, 'Taelor', 1993, 'F', 109), +(151255, 'Aaron', 1993, 'F', 108), +(151256, 'Areli', 1993, 'F', 108), +(151257, 'Britta', 1993, 'F', 108), +(151258, 'Elvia', 1993, 'F', 108), +(151259, 'Greta', 1993, 'F', 108), +(151260, 'Kaylea', 1993, 'F', 108), +(151261, 'Keshia', 1993, 'F', 108), +(151262, 'Kiarra', 1993, 'F', 108), +(151263, 'Larisa', 1993, 'F', 108), +(151264, 'Leeanna', 1993, 'F', 108), +(151265, 'Mina', 1993, 'F', 108), +(151266, 'Rivka', 1993, 'F', 108), +(151267, 'Tesla', 1993, 'F', 108), +(151268, 'Tristan', 1993, 'F', 108), +(151269, 'Annabel', 1993, 'F', 107), +(151270, 'Ariella', 1993, 'F', 107), +(151271, 'Arika', 1993, 'F', 107), +(151272, 'Evelin', 1993, 'F', 107), +(151273, 'Jeannie', 1993, 'F', 107), +(151274, 'Jessa', 1993, 'F', 107), +(151275, 'Marielle', 1993, 'F', 107), +(151276, 'Marsha', 1993, 'F', 107), +(151277, 'Yoselin', 1993, 'F', 107), +(151278, 'Cassaundra', 1993, 'F', 106), +(151279, 'Jeanne', 1993, 'F', 106), +(151280, 'Kendyl', 1993, 'F', 106), +(151281, 'Kirstyn', 1993, 'F', 106), +(151282, 'Leighann', 1993, 'F', 106), +(151283, 'Lila', 1993, 'F', 106), +(151284, 'Myriah', 1993, 'F', 106), +(151285, 'Priya', 1993, 'F', 106), +(151286, 'Ramona', 1993, 'F', 106), +(151287, 'Erinn', 1993, 'F', 105), +(151288, 'Ida', 1993, 'F', 105), +(151289, 'Jacinda', 1993, 'F', 105), +(151290, 'Janee', 1993, 'F', 105), +(151291, 'Lillie', 1993, 'F', 105), +(151292, 'Danelle', 1993, 'F', 104), +(151293, 'Deena', 1993, 'F', 104), +(151294, 'Felicity', 1993, 'F', 104), +(151295, 'Johana', 1993, 'F', 104), +(151296, 'Karyn', 1993, 'F', 104), +(151297, 'Kenna', 1993, 'F', 104), +(151298, 'Shanise', 1993, 'F', 104), +(151299, 'Tavia', 1993, 'F', 104), +(151300, 'Tenisha', 1993, 'F', 104), +(151301, 'Vera', 1993, 'F', 104), +(151302, 'Yesica', 1993, 'F', 104), +(151303, 'Amara', 1993, 'F', 103), +(151304, 'Annabelle', 1993, 'F', 103), +(151305, 'Annalisa', 1993, 'F', 103), +(151306, 'Bethanie', 1993, 'F', 103), +(151307, 'Charlie', 1993, 'F', 103), +(151308, 'Christi', 1993, 'F', 103), +(151309, 'Evan', 1993, 'F', 103), +(151310, 'Ilse', 1993, 'F', 103), +(151311, 'Joni', 1993, 'F', 103), +(151312, 'Lucinda', 1993, 'F', 103), +(151313, 'Starr', 1993, 'F', 103), +(151314, 'Ashia', 1993, 'F', 102), +(151315, 'Celene', 1993, 'F', 102), +(151316, 'Emmalee', 1993, 'F', 102), +(151317, 'Ilana', 1993, 'F', 102), +(151318, 'Jameka', 1993, 'F', 102), +(151319, 'Janeth', 1993, 'F', 102), +(151320, 'Lacee', 1993, 'F', 102), +(151321, 'Raechel', 1993, 'F', 102), +(151322, 'Shakera', 1993, 'F', 102), +(151323, 'Alannah', 1993, 'F', 101), +(151324, 'Andreina', 1993, 'F', 101), +(151325, 'Brandon', 1993, 'F', 101), +(151326, 'Bryn', 1993, 'F', 101), +(151327, 'Daniele', 1993, 'F', 101), +(151328, 'Farah', 1993, 'F', 101), +(151329, 'Jordin', 1993, 'F', 101), +(151330, 'Kadie', 1993, 'F', 101), +(151331, 'Keeley', 1993, 'F', 101), +(151332, 'Margot', 1993, 'F', 101), +(151333, 'Marielena', 1993, 'F', 101), +(151334, 'Meghann', 1993, 'F', 101), +(151335, 'Miya', 1993, 'F', 101), +(151336, 'Sienna', 1993, 'F', 101), +(151337, 'Tanner', 1993, 'F', 101), +(151338, 'Anastacia', 1993, 'F', 100), +(151339, 'Aryn', 1993, 'F', 100), +(151340, 'Kay', 1993, 'F', 100), +(151341, 'Keona', 1993, 'F', 100), +(151342, 'Latesha', 1993, 'F', 100), +(151343, 'Shantelle', 1993, 'F', 100), +(151344, 'Shaquilla', 1993, 'F', 100), +(151345, 'Sheri', 1993, 'F', 100), +(151346, 'Shira', 1993, 'F', 100), +(151347, 'Sky', 1993, 'F', 100), +(151348, 'Michael', 1993, 'M', 49553), +(151349, 'Christopher', 1993, 'M', 38228), +(151350, 'Matthew', 1993, 'M', 35770), +(151351, 'Joshua', 1993, 'M', 33575), +(151352, 'Tyler', 1993, 'M', 29796), +(151353, 'Brandon', 1993, 'M', 28734), +(151354, 'Daniel', 1993, 'M', 28670), +(151355, 'Nicholas', 1993, 'M', 28107), +(151356, 'Jacob', 1993, 'M', 27476), +(151357, 'Andrew', 1993, 'M', 27312), +(151358, 'David', 1993, 'M', 27017), +(151359, 'Joseph', 1993, 'M', 27004), +(151360, 'Ryan', 1993, 'M', 26716), +(151361, 'James', 1993, 'M', 26249), +(151362, 'Zachary', 1993, 'M', 25533), +(151363, 'John', 1993, 'M', 24989), +(151364, 'Robert', 1993, 'M', 22444), +(151365, 'William', 1993, 'M', 22208), +(151366, 'Anthony', 1993, 'M', 21786), +(151367, 'Justin', 1993, 'M', 21536), +(151368, 'Alexander', 1993, 'M', 20523), +(151369, 'Jonathan', 1993, 'M', 19941), +(151370, 'Kyle', 1993, 'M', 19450), +(151371, 'Cody', 1993, 'M', 19150), +(151372, 'Kevin', 1993, 'M', 19075), +(151373, 'Austin', 1993, 'M', 17577), +(151374, 'Thomas', 1993, 'M', 14859), +(151375, 'Jordan', 1993, 'M', 14753), +(151376, 'Eric', 1993, 'M', 14542), +(151377, 'Aaron', 1993, 'M', 13828), +(151378, 'Steven', 1993, 'M', 13464), +(151379, 'Dylan', 1993, 'M', 12686), +(151380, 'Benjamin', 1993, 'M', 12678), +(151381, 'Brian', 1993, 'M', 12543), +(151382, 'Christian', 1993, 'M', 11884), +(151383, 'Jose', 1993, 'M', 11837), +(151384, 'Samuel', 1993, 'M', 11701), +(151385, 'Timothy', 1993, 'M', 11635), +(151386, 'Adam', 1993, 'M', 11528), +(151387, 'Richard', 1993, 'M', 10227), +(151388, 'Nathan', 1993, 'M', 10190), +(151389, 'Sean', 1993, 'M', 10176), +(151390, 'Patrick', 1993, 'M', 9856), +(151391, 'Charles', 1993, 'M', 9855), +(151392, 'Jason', 1993, 'M', 8633), +(151393, 'Jeremy', 1993, 'M', 8570), +(151394, 'Stephen', 1993, 'M', 8366), +(151395, 'Jesse', 1993, 'M', 8261), +(151396, 'Mark', 1993, 'M', 8059), +(151397, 'Travis', 1993, 'M', 7937), +(151398, 'Taylor', 1993, 'M', 7688), +(151399, 'Alex', 1993, 'M', 7636), +(151400, 'Jeffrey', 1993, 'M', 7535), +(151401, 'Cameron', 1993, 'M', 7089), +(151402, 'Juan', 1993, 'M', 6893), +(151403, 'Paul', 1993, 'M', 6477), +(151404, 'Connor', 1993, 'M', 6451), +(151405, 'Luis', 1993, 'M', 6405), +(151406, 'Dustin', 1993, 'M', 6308), +(151407, 'Kenneth', 1993, 'M', 6275), +(151408, 'Bryan', 1993, 'M', 6157), +(151409, 'Evan', 1993, 'M', 6088), +(151410, 'Jared', 1993, 'M', 6060), +(151411, 'Trevor', 1993, 'M', 6008), +(151412, 'Gregory', 1993, 'M', 5806), +(151413, 'Caleb', 1993, 'M', 5782), +(151414, 'Derek', 1993, 'M', 5755), +(151415, 'Corey', 1993, 'M', 5676), +(151416, 'Scott', 1993, 'M', 5572), +(151417, 'Ian', 1993, 'M', 5398), +(151418, 'Devin', 1993, 'M', 5355), +(151419, 'Carlos', 1993, 'M', 5346), +(151420, 'Bradley', 1993, 'M', 5133), +(151421, 'Marcus', 1993, 'M', 5059), +(151422, 'Nathaniel', 1993, 'M', 4852), +(151423, 'Logan', 1993, 'M', 4843), +(151424, 'Shawn', 1993, 'M', 4814), +(151425, 'Edward', 1993, 'M', 4787), +(151426, 'Garrett', 1993, 'M', 4713), +(151427, 'Jesus', 1993, 'M', 4680), +(151428, 'Mitchell', 1993, 'M', 4582), +(151429, 'Peter', 1993, 'M', 4535), +(151430, 'Blake', 1993, 'M', 4505), +(151431, 'Shane', 1993, 'M', 4435), +(151432, 'Dakota', 1993, 'M', 4412), +(151433, 'Gabriel', 1993, 'M', 4373), +(151434, 'Luke', 1993, 'M', 4351), +(151435, 'Miguel', 1993, 'M', 4346), +(151436, 'Antonio', 1993, 'M', 4301), +(151437, 'Dillon', 1993, 'M', 4284), +(151438, 'Victor', 1993, 'M', 4205), +(151439, 'Ethan', 1993, 'M', 4159), +(151440, 'Seth', 1993, 'M', 4059), +(151441, 'Cory', 1993, 'M', 3996), +(151442, 'Lucas', 1993, 'M', 3919), +(151443, 'Spencer', 1993, 'M', 3884), +(151444, 'Hunter', 1993, 'M', 3792), +(151445, 'Tanner', 1993, 'M', 3767), +(151446, 'Adrian', 1993, 'M', 3751), +(151447, 'Vincent', 1993, 'M', 3685), +(151448, 'Joel', 1993, 'M', 3557), +(151449, 'Brett', 1993, 'M', 3544), +(151450, 'Alejandro', 1993, 'M', 3532), +(151451, 'George', 1993, 'M', 3511), +(151452, 'Erik', 1993, 'M', 3486), +(151453, 'Dalton', 1993, 'M', 3393), +(151454, 'Jorge', 1993, 'M', 3390), +(151455, 'Raymond', 1993, 'M', 3325), +(151456, 'Keith', 1993, 'M', 3264), +(151457, 'Isaac', 1993, 'M', 3214), +(151458, 'Jake', 1993, 'M', 3197), +(151459, 'Casey', 1993, 'M', 3181), +(151460, 'Wesley', 1993, 'M', 3171), +(151461, 'Chad', 1993, 'M', 3143), +(151462, 'Angel', 1993, 'M', 3036), +(151463, 'Chase', 1993, 'M', 3019), +(151464, 'Phillip', 1993, 'M', 3002), +(151465, 'Donald', 1993, 'M', 2996), +(151466, 'Francisco', 1993, 'M', 2964), +(151467, 'Ricardo', 1993, 'M', 2944), +(151468, 'Colin', 1993, 'M', 2895), +(151469, 'Ronald', 1993, 'M', 2880), +(151470, 'Oscar', 1993, 'M', 2849), +(151471, 'Martin', 1993, 'M', 2815), +(151472, 'Eduardo', 1993, 'M', 2794), +(151473, 'Colton', 1993, 'M', 2750), +(151474, 'Devon', 1993, 'M', 2726), +(151475, 'Johnathan', 1993, 'M', 2719), +(151476, 'Derrick', 1993, 'M', 2701), +(151477, 'Cole', 1993, 'M', 2659), +(151478, 'Troy', 1993, 'M', 2647), +(151479, 'Alan', 1993, 'M', 2561), +(151480, 'Dominic', 1993, 'M', 2532), +(151481, 'Frank', 1993, 'M', 2503), +(151482, 'Julian', 1993, 'M', 2487), +(151483, 'Henry', 1993, 'M', 2482), +(151484, 'Mario', 1993, 'M', 2470), +(151485, 'Mason', 1993, 'M', 2470), +(151486, 'Douglas', 1993, 'M', 2461), +(151487, 'Omar', 1993, 'M', 2449), +(151488, 'Xavier', 1993, 'M', 2446), +(151489, 'Manuel', 1993, 'M', 2432), +(151490, 'Jack', 1993, 'M', 2421), +(151491, 'Jonathon', 1993, 'M', 2316), +(151492, 'Brendan', 1993, 'M', 2301), +(151493, 'Andre', 1993, 'M', 2281), +(151494, 'Philip', 1993, 'M', 2269), +(151495, 'Edgar', 1993, 'M', 2262), +(151496, 'Collin', 1993, 'M', 2251), +(151497, 'Javier', 1993, 'M', 2178), +(151498, 'Grant', 1993, 'M', 2158), +(151499, 'Andres', 1993, 'M', 2104), +(151500, 'Curtis', 1993, 'M', 2097), +(151501, 'Alec', 1993, 'M', 2090), +(151502, 'Roberto', 1993, 'M', 2078), +(151503, 'Gary', 1993, 'M', 2064), +(151504, 'Ivan', 1993, 'M', 2047), +(151505, 'Hector', 1993, 'M', 2032), +(151506, 'Clayton', 1993, 'M', 2031), +(151507, 'Darius', 1993, 'M', 1984), +(151508, 'Sergio', 1993, 'M', 1984), +(151509, 'Levi', 1993, 'M', 1973), +(151510, 'Bryce', 1993, 'M', 1968), +(151511, 'Johnny', 1993, 'M', 1964), +(151512, 'Dennis', 1993, 'M', 1963), +(151513, 'Jeremiah', 1993, 'M', 1910), +(151514, 'Zachery', 1993, 'M', 1902), +(151515, 'Allen', 1993, 'M', 1898), +(151516, 'Max', 1993, 'M', 1885), +(151517, 'Elijah', 1993, 'M', 1880), +(151518, 'Tony', 1993, 'M', 1872), +(151519, 'Cesar', 1993, 'M', 1859), +(151520, 'Drew', 1993, 'M', 1852), +(151521, 'Brady', 1993, 'M', 1839), +(151522, 'Craig', 1993, 'M', 1837), +(151523, 'Edwin', 1993, 'M', 1823), +(151524, 'Nicolas', 1993, 'M', 1818), +(151525, 'Brent', 1993, 'M', 1800), +(151526, 'Fernando', 1993, 'M', 1798), +(151527, 'Cristian', 1993, 'M', 1787), +(151528, 'Shaquille', 1993, 'M', 1784), +(151529, 'Maxwell', 1993, 'M', 1781), +(151530, 'Larry', 1993, 'M', 1780), +(151531, 'Ruben', 1993, 'M', 1747), +(151532, 'Calvin', 1993, 'M', 1745), +(151533, 'Jerry', 1993, 'M', 1727), +(151534, 'Mathew', 1993, 'M', 1705), +(151535, 'Randy', 1993, 'M', 1702), +(151536, 'Pedro', 1993, 'M', 1666), +(151537, 'Marco', 1993, 'M', 1646), +(151538, 'Trey', 1993, 'M', 1629), +(151539, 'Jeffery', 1993, 'M', 1626), +(151540, 'Carl', 1993, 'M', 1585), +(151541, 'Louis', 1993, 'M', 1580), +(151542, 'Kristopher', 1993, 'M', 1564), +(151543, 'Lawrence', 1993, 'M', 1551), +(151544, 'Preston', 1993, 'M', 1545), +(151545, 'Jackson', 1993, 'M', 1537), +(151546, 'Jimmy', 1993, 'M', 1528), +(151547, 'Colby', 1993, 'M', 1518), +(151548, 'Russell', 1993, 'M', 1515), +(151549, 'Erick', 1993, 'M', 1503), +(151550, 'Noah', 1993, 'M', 1500), +(151551, 'Isaiah', 1993, 'M', 1496), +(151552, 'Raul', 1993, 'M', 1494), +(151553, 'Julio', 1993, 'M', 1454), +(151554, 'Dominique', 1993, 'M', 1449), +(151555, 'Ricky', 1993, 'M', 1441), +(151556, 'Albert', 1993, 'M', 1433), +(151557, 'Darren', 1993, 'M', 1432), +(151558, 'Rafael', 1993, 'M', 1428), +(151559, 'Jaime', 1993, 'M', 1427), +(151560, 'Terry', 1993, 'M', 1427), +(151561, 'Danny', 1993, 'M', 1421), +(151562, 'Marc', 1993, 'M', 1404), +(151563, 'Jalen', 1993, 'M', 1392), +(151564, 'Emmanuel', 1993, 'M', 1384), +(151565, 'Alberto', 1993, 'M', 1376), +(151566, 'Riley', 1993, 'M', 1376), +(151567, 'Gerardo', 1993, 'M', 1356), +(151568, 'Walter', 1993, 'M', 1356), +(151569, 'Billy', 1993, 'M', 1353), +(151570, 'Armando', 1993, 'M', 1340), +(151571, 'Hayden', 1993, 'M', 1324), +(151572, 'Rodney', 1993, 'M', 1310), +(151573, 'Micheal', 1993, 'M', 1307), +(151574, 'Sebastian', 1993, 'M', 1307), +(151575, 'Conner', 1993, 'M', 1292), +(151576, 'Trenton', 1993, 'M', 1277), +(151577, 'Lance', 1993, 'M', 1259), +(151578, 'Joe', 1993, 'M', 1252), +(151579, 'Conor', 1993, 'M', 1250), +(151580, 'Jamal', 1993, 'M', 1245), +(151581, 'Arthur', 1993, 'M', 1240), +(151582, 'Todd', 1993, 'M', 1240), +(151583, 'Kaleb', 1993, 'M', 1224), +(151584, 'Malcolm', 1993, 'M', 1224), +(151585, 'Bobby', 1993, 'M', 1221), +(151586, 'Zackary', 1993, 'M', 1213), +(151587, 'Micah', 1993, 'M', 1202), +(151588, 'Tevin', 1993, 'M', 1201), +(151589, 'Skyler', 1993, 'M', 1191), +(151590, 'Randall', 1993, 'M', 1187), +(151591, 'Kody', 1993, 'M', 1169), +(151592, 'Abraham', 1993, 'M', 1168), +(151593, 'Dallas', 1993, 'M', 1156), +(151594, 'Parker', 1993, 'M', 1156), +(151595, 'Andy', 1993, 'M', 1149), +(151596, 'Donovan', 1993, 'M', 1144), +(151597, 'Nolan', 1993, 'M', 1144), +(151598, 'Reginald', 1993, 'M', 1143), +(151599, 'Damian', 1993, 'M', 1133), +(151600, 'Roger', 1993, 'M', 1132), +(151601, 'Jon', 1993, 'M', 1131), +(151602, 'Landon', 1993, 'M', 1120), +(151603, 'Gerald', 1993, 'M', 1116), +(151604, 'Marcos', 1993, 'M', 1113), +(151605, 'Jamie', 1993, 'M', 1111), +(151606, 'Maurice', 1993, 'M', 1111), +(151607, 'Jay', 1993, 'M', 1102), +(151608, 'Alexis', 1993, 'M', 1099), +(151609, 'Ramon', 1993, 'M', 1094), +(151610, 'Devonte', 1993, 'M', 1093), +(151611, 'Nickolas', 1993, 'M', 1085), +(151612, 'Deandre', 1993, 'M', 1082), +(151613, 'Jessie', 1993, 'M', 1082), +(151614, 'Alfredo', 1993, 'M', 1080), +(151615, 'Marvin', 1993, 'M', 1080), +(151616, 'Miles', 1993, 'M', 1072), +(151617, 'Branden', 1993, 'M', 1070), +(151618, 'Enrique', 1993, 'M', 1067), +(151619, 'Willie', 1993, 'M', 1062), +(151620, 'Terrance', 1993, 'M', 1058), +(151621, 'Arturo', 1993, 'M', 1055), +(151622, 'Eddie', 1993, 'M', 1048), +(151623, 'Trent', 1993, 'M', 1040), +(151624, 'Theodore', 1993, 'M', 1035), +(151625, 'Bryant', 1993, 'M', 1032), +(151626, 'Harrison', 1993, 'M', 1029), +(151627, 'Gustavo', 1993, 'M', 1011), +(151628, 'Damon', 1993, 'M', 1000), +(151629, 'Marquis', 1993, 'M', 999), +(151630, 'Gage', 1993, 'M', 991), +(151631, 'Josue', 1993, 'M', 988), +(151632, 'Lee', 1993, 'M', 988), +(151633, 'Johnathon', 1993, 'M', 967), +(151634, 'Kendall', 1993, 'M', 965), +(151635, 'Giovanni', 1993, 'M', 962), +(151636, 'Devante', 1993, 'M', 961), +(151637, 'Frederick', 1993, 'M', 949), +(151638, 'Lorenzo', 1993, 'M', 949), +(151639, 'Forrest', 1993, 'M', 948), +(151640, 'Shaun', 1993, 'M', 947), +(151641, 'Gavin', 1993, 'M', 945), +(151642, 'Demetrius', 1993, 'M', 942), +(151643, 'Ross', 1993, 'M', 941), +(151644, 'Avery', 1993, 'M', 933), +(151645, 'Terrence', 1993, 'M', 914), +(151646, 'Diego', 1993, 'M', 912), +(151647, 'Israel', 1993, 'M', 912), +(151648, 'Chance', 1993, 'M', 909), +(151649, 'Dominick', 1993, 'M', 905), +(151650, 'Salvador', 1993, 'M', 905), +(151651, 'Damien', 1993, 'M', 904), +(151652, 'Tyrone', 1993, 'M', 900), +(151653, 'Roy', 1993, 'M', 895), +(151654, 'Josiah', 1993, 'M', 890), +(151655, 'Marshall', 1993, 'M', 883), +(151656, 'Darrell', 1993, 'M', 876), +(151657, 'Eli', 1993, 'M', 873), +(151658, 'Denzel', 1993, 'M', 863), +(151659, 'Morgan', 1993, 'M', 862), +(151660, 'Myles', 1993, 'M', 860), +(151661, 'Terrell', 1993, 'M', 847), +(151662, 'Zackery', 1993, 'M', 847), +(151663, 'Clinton', 1993, 'M', 838), +(151664, 'Dean', 1993, 'M', 835), +(151665, 'Wayne', 1993, 'M', 833), +(151666, 'Steve', 1993, 'M', 831), +(151667, 'Fabian', 1993, 'M', 828), +(151668, 'Bruce', 1993, 'M', 821), +(151669, 'Tommy', 1993, 'M', 819), +(151670, 'Ernesto', 1993, 'M', 814), +(151671, 'Zachariah', 1993, 'M', 809), +(151672, 'Jerome', 1993, 'M', 802), +(151673, 'Neil', 1993, 'M', 783), +(151674, 'Kelvin', 1993, 'M', 773), +(151675, 'Dante', 1993, 'M', 771), +(151676, 'Elias', 1993, 'M', 770), +(151677, 'Ty', 1993, 'M', 767), +(151678, 'Malik', 1993, 'M', 766), +(151679, 'Nelson', 1993, 'M', 761), +(151680, 'Brock', 1993, 'M', 760), +(151681, 'Ronnie', 1993, 'M', 758), +(151682, 'Desmond', 1993, 'M', 752), +(151683, 'Francis', 1993, 'M', 751), +(151684, 'Pablo', 1993, 'M', 749), +(151685, 'Angelo', 1993, 'M', 745), +(151686, 'Byron', 1993, 'M', 738), +(151687, 'Rene', 1993, 'M', 738), +(151688, 'Melvin', 1993, 'M', 729), +(151689, 'Harley', 1993, 'M', 727), +(151690, 'Ashton', 1993, 'M', 713), +(151691, 'Darryl', 1993, 'M', 704), +(151692, 'Franklin', 1993, 'M', 703), +(151693, 'Carson', 1993, 'M', 699), +(151694, 'Orlando', 1993, 'M', 691), +(151695, 'Zane', 1993, 'M', 691), +(151696, 'Drake', 1993, 'M', 682), +(151697, 'Geoffrey', 1993, 'M', 670), +(151698, 'Leonard', 1993, 'M', 670), +(151699, 'Graham', 1993, 'M', 668), +(151700, 'Emilio', 1993, 'M', 667), +(151701, 'Simon', 1993, 'M', 666), +(151702, 'Oliver', 1993, 'M', 665), +(151703, 'Brennan', 1993, 'M', 662), +(151704, 'Karl', 1993, 'M', 662), +(151705, 'Chandler', 1993, 'M', 661), +(151706, 'Roman', 1993, 'M', 657), +(151707, 'Guillermo', 1993, 'M', 655), +(151708, 'Glenn', 1993, 'M', 653), +(151709, 'Joey', 1993, 'M', 653), +(151710, 'Jermaine', 1993, 'M', 651), +(151711, 'Alvin', 1993, 'M', 647), +(151712, 'Quinton', 1993, 'M', 647), +(151713, 'Ernest', 1993, 'M', 644), +(151714, 'Dale', 1993, 'M', 642), +(151715, 'Eugene', 1993, 'M', 642), +(151716, 'Leonardo', 1993, 'M', 642), +(151717, 'Emanuel', 1993, 'M', 641), +(151718, 'Gilbert', 1993, 'M', 639), +(151719, 'Ismael', 1993, 'M', 637), +(151720, 'Stanley', 1993, 'M', 637), +(151721, 'Kendrick', 1993, 'M', 631), +(151722, 'Wyatt', 1993, 'M', 628), +(151723, 'Warren', 1993, 'M', 625), +(151724, 'Abel', 1993, 'M', 620), +(151725, 'Tyrell', 1993, 'M', 619), +(151726, 'Keenan', 1993, 'M', 614), +(151727, 'Felix', 1993, 'M', 607), +(151728, 'Harold', 1993, 'M', 602), +(151729, 'Jarrett', 1993, 'M', 601), +(151730, 'Tucker', 1993, 'M', 601), +(151731, 'Stefan', 1993, 'M', 600), +(151732, 'Esteban', 1993, 'M', 596), +(151733, 'Quentin', 1993, 'M', 595), +(151734, 'Felipe', 1993, 'M', 593), +(151735, 'Wade', 1993, 'M', 591), +(151736, 'Dwayne', 1993, 'M', 589), +(151737, 'Cedric', 1993, 'M', 588), +(151738, 'Moises', 1993, 'M', 588), +(151739, 'Kurt', 1993, 'M', 587), +(151740, 'Tre', 1993, 'M', 586), +(151741, 'Braden', 1993, 'M', 585), +(151742, 'Elliot', 1993, 'M', 585), +(151743, 'Hugo', 1993, 'M', 585), +(151744, 'Elliott', 1993, 'M', 583), +(151745, 'Brendon', 1993, 'M', 580), +(151746, 'Saul', 1993, 'M', 580), +(151747, 'Rodolfo', 1993, 'M', 579), +(151748, 'Kameron', 1993, 'M', 575), +(151749, 'Mackenzie', 1993, 'M', 575), +(151750, 'Skylar', 1993, 'M', 574), +(151751, 'Allan', 1993, 'M', 572), +(151752, 'Brenden', 1993, 'M', 571), +(151753, 'Kenny', 1993, 'M', 570), +(151754, 'Devan', 1993, 'M', 568), +(151755, 'Harry', 1993, 'M', 567), +(151756, 'Tristan', 1993, 'M', 567), +(151757, 'Darian', 1993, 'M', 565), +(151758, 'Weston', 1993, 'M', 564), +(151759, 'Jarred', 1993, 'M', 562), +(151760, 'Ray', 1993, 'M', 562), +(151761, 'Sam', 1993, 'M', 562), +(151762, 'Jordon', 1993, 'M', 561), +(151763, 'Gilberto', 1993, 'M', 559), +(151764, 'Raheem', 1993, 'M', 556), +(151765, 'Tylor', 1993, 'M', 556), +(151766, 'Carter', 1993, 'M', 550), +(151767, 'Quinn', 1993, 'M', 550), +(151768, 'Alfonso', 1993, 'M', 544), +(151769, 'Beau', 1993, 'M', 535), +(151770, 'Davon', 1993, 'M', 535), +(151771, 'Darien', 1993, 'M', 533), +(151772, 'Leon', 1993, 'M', 531), +(151773, 'Jarrod', 1993, 'M', 527), +(151774, 'Alfred', 1993, 'M', 524), +(151775, 'Kristian', 1993, 'M', 520), +(151776, 'Ralph', 1993, 'M', 520), +(151777, 'Dane', 1993, 'M', 516), +(151778, 'Keegan', 1993, 'M', 516), +(151779, 'Rudy', 1993, 'M', 512), +(151780, 'Kyler', 1993, 'M', 509), +(151781, 'Bernard', 1993, 'M', 507), +(151782, 'Corbin', 1993, 'M', 506), +(151783, 'Quincy', 1993, 'M', 505), +(151784, 'Sterling', 1993, 'M', 504), +(151785, 'Deshawn', 1993, 'M', 502), +(151786, 'Donte', 1993, 'M', 500), +(151787, 'Rogelio', 1993, 'M', 500), +(151788, 'Clarence', 1993, 'M', 498), +(151789, 'Javon', 1993, 'M', 497), +(151790, 'Clay', 1993, 'M', 494), +(151791, 'Clint', 1993, 'M', 494), +(151792, 'Noel', 1993, 'M', 493), +(151793, 'Roderick', 1993, 'M', 489), +(151794, 'Sheldon', 1993, 'M', 489), +(151795, 'Brody', 1993, 'M', 487), +(151796, 'Jakob', 1993, 'M', 486), +(151797, 'Trevon', 1993, 'M', 486), +(151798, 'Barry', 1993, 'M', 484), +(151799, 'Garret', 1993, 'M', 484), +(151800, 'Ramiro', 1993, 'M', 482), +(151801, 'Rashad', 1993, 'M', 479), +(151802, 'Clifford', 1993, 'M', 475), +(151803, 'Kelly', 1993, 'M', 475), +(151804, 'Lukas', 1993, 'M', 469), +(151805, 'Lewis', 1993, 'M', 458), +(151806, 'Nikolas', 1993, 'M', 458), +(151807, 'Davis', 1993, 'M', 457), +(151808, 'Leo', 1993, 'M', 457), +(151809, 'Owen', 1993, 'M', 457), +(151810, 'Blaine', 1993, 'M', 456), +(151811, 'Brad', 1993, 'M', 456), +(151812, 'Demarcus', 1993, 'M', 456), +(151813, 'Daquan', 1993, 'M', 453), +(151814, 'Jarvis', 1993, 'M', 451), +(151815, 'Stuart', 1993, 'M', 450), +(151816, 'Jonah', 1993, 'M', 449), +(151817, 'Earl', 1993, 'M', 448), +(151818, 'Dexter', 1993, 'M', 447), +(151819, 'Antoine', 1993, 'M', 446), +(151820, 'Chris', 1993, 'M', 445), +(151821, 'Kurtis', 1993, 'M', 444), +(151822, 'Bryson', 1993, 'M', 443), +(151823, 'Darnell', 1993, 'M', 443), +(151824, 'Ali', 1993, 'M', 442), +(151825, 'Charlie', 1993, 'M', 441), +(151826, 'Ariel', 1993, 'M', 440), +(151827, 'Reid', 1993, 'M', 439), +(151828, 'Reed', 1993, 'M', 437), +(151829, 'Marlon', 1993, 'M', 436), +(151830, 'Kory', 1993, 'M', 434), +(151831, 'Rodrigo', 1993, 'M', 434), +(151832, 'Wilson', 1993, 'M', 434), +(151833, 'Marquise', 1993, 'M', 433), +(151834, 'Griffin', 1993, 'M', 432), +(151835, 'Nigel', 1993, 'M', 432), +(151836, 'Jean', 1993, 'M', 428), +(151837, 'Nathanael', 1993, 'M', 428), +(151838, 'Coty', 1993, 'M', 426), +(151839, 'Cooper', 1993, 'M', 425), +(151840, 'Stephan', 1993, 'M', 425), +(151841, 'Alonzo', 1993, 'M', 421), +(151842, 'Tomas', 1993, 'M', 421), +(151843, 'Tyson', 1993, 'M', 419), +(151844, 'Kirk', 1993, 'M', 418), +(151845, 'Howard', 1993, 'M', 416), +(151846, 'Julius', 1993, 'M', 416), +(151847, 'Deon', 1993, 'M', 415), +(151848, 'Deonte', 1993, 'M', 415), +(151849, 'Colten', 1993, 'M', 413), +(151850, 'Daryl', 1993, 'M', 409), +(151851, 'Derick', 1993, 'M', 409), +(151852, 'Noe', 1993, 'M', 408), +(151853, 'Perry', 1993, 'M', 408), +(151854, 'Bret', 1993, 'M', 405), +(151855, 'Jaron', 1993, 'M', 405), +(151856, 'Efrain', 1993, 'M', 404), +(151857, 'Gordon', 1993, 'M', 404), +(151858, 'Lamar', 1993, 'M', 404), +(151859, 'Shelby', 1993, 'M', 403), +(151860, 'Sidney', 1993, 'M', 401), +(151861, 'Adan', 1993, 'M', 400), +(151862, 'Liam', 1993, 'M', 398), +(151863, 'Carlton', 1993, 'M', 396), +(151864, 'Norman', 1993, 'M', 393), +(151865, 'Rolando', 1993, 'M', 393), +(151866, 'Dion', 1993, 'M', 387), +(151867, 'Neal', 1993, 'M', 384), +(151868, 'Chaz', 1993, 'M', 382), +(151869, 'Humberto', 1993, 'M', 380), +(151870, 'Kasey', 1993, 'M', 378), +(151871, 'Keaton', 1993, 'M', 378), +(151872, 'Jamar', 1993, 'M', 377), +(151873, 'Korey', 1993, 'M', 377), +(151874, 'Shannon', 1993, 'M', 377), +(151875, 'Jayson', 1993, 'M', 375), +(151876, 'Markus', 1993, 'M', 375), +(151877, 'Mitchel', 1993, 'M', 375), +(151878, 'Santiago', 1993, 'M', 375), +(151879, 'Sawyer', 1993, 'M', 375), +(151880, 'Jaquan', 1993, 'M', 372), +(151881, 'Courtney', 1993, 'M', 370), +(151882, 'Mauricio', 1993, 'M', 368), +(151883, 'Vicente', 1993, 'M', 364), +(151884, 'Davonte', 1993, 'M', 363), +(151885, 'Heath', 1993, 'M', 363), +(151886, 'Dorian', 1993, 'M', 362), +(151887, 'Leroy', 1993, 'M', 362), +(151888, 'Dwight', 1993, 'M', 361), +(151889, 'Moses', 1993, 'M', 358), +(151890, 'Tyree', 1993, 'M', 358), +(151891, 'Terence', 1993, 'M', 357), +(151892, 'Fredrick', 1993, 'M', 354), +(151893, 'Freddy', 1993, 'M', 352), +(151894, 'Frankie', 1993, 'M', 345), +(151895, 'Ahmad', 1993, 'M', 341), +(151896, 'Damion', 1993, 'M', 339), +(151897, 'Cullen', 1993, 'M', 337), +(151898, 'Glen', 1993, 'M', 337), +(151899, 'Mohammad', 1993, 'M', 337), +(151900, 'Salvatore', 1993, 'M', 337), +(151901, 'Darrin', 1993, 'M', 336), +(151902, 'Jace', 1993, 'M', 333), +(151903, 'Roland', 1993, 'M', 332), +(151904, 'Aidan', 1993, 'M', 331), +(151905, 'Baby', 1993, 'M', 331), +(151906, 'Ben', 1993, 'M', 331), +(151907, 'Dashawn', 1993, 'M', 331), +(151908, 'Brenton', 1993, 'M', 330), +(151909, 'Kent', 1993, 'M', 330), +(151910, 'Alvaro', 1993, 'M', 329), +(151911, 'Austen', 1993, 'M', 328), +(151912, 'Arnold', 1993, 'M', 327), +(151913, 'Braxton', 1993, 'M', 327), +(151914, 'Duncan', 1993, 'M', 326), +(151915, 'Leonel', 1993, 'M', 325), +(151916, 'Isiah', 1993, 'M', 323), +(151917, 'Dimitri', 1993, 'M', 322), +(151918, 'Lamont', 1993, 'M', 322), +(151919, 'Guadalupe', 1993, 'M', 320), +(151920, 'Payton', 1993, 'M', 320), +(151921, 'Milton', 1993, 'M', 318), +(151922, 'Osvaldo', 1993, 'M', 318), +(151923, 'Kareem', 1993, 'M', 317), +(151924, 'Lonnie', 1993, 'M', 317), +(151925, 'Rick', 1993, 'M', 316), +(151926, 'Uriel', 1993, 'M', 315), +(151927, 'Aron', 1993, 'M', 313), +(151928, 'Fred', 1993, 'M', 313), +(151929, 'Kristofer', 1993, 'M', 313), +(151930, 'Cortez', 1993, 'M', 312), +(151931, 'Addison', 1993, 'M', 311), +(151932, 'Clifton', 1993, 'M', 311), +(151933, 'Rickey', 1993, 'M', 311), +(151934, 'Don', 1993, 'M', 308), +(151935, 'Devonta', 1993, 'M', 306), +(151936, 'Vernon', 1993, 'M', 306), +(151937, 'Cornelius', 1993, 'M', 305), +(151938, 'Deangelo', 1993, 'M', 304), +(151939, 'Everett', 1993, 'M', 302), +(151940, 'Joaquin', 1993, 'M', 299), +(151941, 'Lane', 1993, 'M', 299), +(151942, 'Thaddeus', 1993, 'M', 298), +(151943, 'Brice', 1993, 'M', 297), +(151944, 'Conrad', 1993, 'M', 297), +(151945, 'Reynaldo', 1993, 'M', 297), +(151946, 'Darion', 1993, 'M', 296), +(151947, 'Kerry', 1993, 'M', 296), +(151948, 'Tracy', 1993, 'M', 296), +(151949, 'Darrius', 1993, 'M', 295), +(151950, 'Dillan', 1993, 'M', 295), +(151951, 'Robin', 1993, 'M', 295), +(151952, 'Ezekiel', 1993, 'M', 294), +(151953, 'Grayson', 1993, 'M', 293), +(151954, 'Shayne', 1993, 'M', 292), +(151955, 'Solomon', 1993, 'M', 291), +(151956, 'Deven', 1993, 'M', 290), +(151957, 'Issac', 1993, 'M', 290), +(151958, 'Nestor', 1993, 'M', 290), +(151959, 'Lloyd', 1993, 'M', 289), +(151960, 'Mike', 1993, 'M', 288), +(151961, 'Rigoberto', 1993, 'M', 288), +(151962, 'Jamel', 1993, 'M', 287), +(151963, 'Khalil', 1993, 'M', 286), +(151964, 'Coleman', 1993, 'M', 284), +(151965, 'Toby', 1993, 'M', 284), +(151966, 'Agustin', 1993, 'M', 280), +(151967, 'Irvin', 1993, 'M', 276), +(151968, 'Dillion', 1993, 'M', 275), +(151969, 'Herbert', 1993, 'M', 273), +(151970, 'Stephon', 1993, 'M', 273), +(151971, 'Duane', 1993, 'M', 271), +(151972, 'Dandre', 1993, 'M', 270), +(151973, 'Raphael', 1993, 'M', 270), +(151974, 'Ignacio', 1993, 'M', 269), +(151975, 'Justice', 1993, 'M', 268), +(151976, 'Will', 1993, 'M', 268), +(151977, 'Bradford', 1993, 'M', 267), +(151978, 'Holden', 1993, 'M', 267), +(151979, 'Paris', 1993, 'M', 267), +(151980, 'Jefferson', 1993, 'M', 266), +(151981, 'Amir', 1993, 'M', 264), +(151982, 'Clark', 1993, 'M', 264), +(151983, 'Brandan', 1993, 'M', 263), +(151984, 'Johnnie', 1993, 'M', 263), +(151985, 'Freddie', 1993, 'M', 262), +(151986, 'Marcel', 1993, 'M', 262), +(151987, 'Nathanial', 1993, 'M', 262), +(151988, 'Ahmed', 1993, 'M', 259), +(151989, 'Darin', 1993, 'M', 259), +(151990, 'Guy', 1993, 'M', 259), +(151991, 'Adolfo', 1993, 'M', 258), +(151992, 'Jovan', 1993, 'M', 256), +(151993, 'Walker', 1993, 'M', 255), +(151994, 'Winston', 1993, 'M', 255), +(151995, 'Elvis', 1993, 'M', 252), +(151996, 'Quintin', 1993, 'M', 252), +(151997, 'Lester', 1993, 'M', 251), +(151998, 'Brayden', 1993, 'M', 250), +(151999, 'Gerard', 1993, 'M', 250), +(152000, 'Heriberto', 1993, 'M', 249), +(152001, 'Pierre', 1993, 'M', 249), +(152002, 'Malachi', 1993, 'M', 247), +(152003, 'Dana', 1993, 'M', 246), +(152004, 'Jamison', 1993, 'M', 245), +(152005, 'Gino', 1993, 'M', 243), +(152006, 'Rashawn', 1993, 'M', 243), +(152007, 'Akeem', 1993, 'M', 242), +(152008, 'Peyton', 1993, 'M', 242), +(152009, 'Zechariah', 1993, 'M', 242), +(152010, 'Deion', 1993, 'M', 241), +(152011, 'Dequan', 1993, 'M', 241), +(152012, 'Donnie', 1993, 'M', 240), +(152013, 'Reuben', 1993, 'M', 240), +(152014, 'German', 1993, 'M', 238), +(152015, 'Jaylen', 1993, 'M', 238), +(152016, 'Colt', 1993, 'M', 236), +(152017, 'Tate', 1993, 'M', 236), +(152018, 'Jameson', 1993, 'M', 235), +(152019, 'Mohammed', 1993, 'M', 234), +(152020, 'Brooks', 1993, 'M', 233), +(152021, 'Rico', 1993, 'M', 233), +(152022, 'Brandyn', 1993, 'M', 231), +(152023, 'Juwan', 1993, 'M', 230), +(152024, 'Bo', 1993, 'M', 229), +(152025, 'Codey', 1993, 'M', 229), +(152026, 'Garrison', 1993, 'M', 229), +(152027, 'Javonte', 1993, 'M', 229), +(152028, 'Jerrod', 1993, 'M', 229), +(152029, 'Jimmie', 1993, 'M', 228), +(152030, 'Ladarius', 1993, 'M', 228), +(152031, 'Rory', 1993, 'M', 228), +(152032, 'Stewart', 1993, 'M', 226), +(152033, 'Antwan', 1993, 'M', 225), +(152034, 'Dylon', 1993, 'M', 225), +(152035, 'Jasper', 1993, 'M', 225), +(152036, 'Floyd', 1993, 'M', 224), +(152037, 'Arron', 1993, 'M', 223), +(152038, 'Estevan', 1993, 'M', 223), +(152039, 'Loren', 1993, 'M', 223), +(152040, 'Madison', 1993, 'M', 223), +(152041, 'Ezra', 1993, 'M', 222), +(152042, 'Santos', 1993, 'M', 222), +(152043, 'Cade', 1993, 'M', 221), +(152044, 'Gene', 1993, 'M', 221), +(152045, 'Nico', 1993, 'M', 221), +(152046, 'Reece', 1993, 'M', 220), +(152047, 'Trever', 1993, 'M', 220), +(152048, 'Jabari', 1993, 'M', 219), +(152049, 'Bennett', 1993, 'M', 218), +(152050, 'Vance', 1993, 'M', 218), +(152051, 'Nick', 1993, 'M', 217), +(152052, 'Najee', 1993, 'M', 216), +(152053, 'Travon', 1993, 'M', 216), +(152054, 'Mohamed', 1993, 'M', 214), +(152055, 'Hassan', 1993, 'M', 213), +(152056, 'Jairo', 1993, 'M', 213), +(152057, 'Zakary', 1993, 'M', 213), +(152058, 'Codie', 1993, 'M', 211), +(152059, 'Houston', 1993, 'M', 211), +(152060, 'Amos', 1993, 'M', 210), +(152061, 'Dusty', 1993, 'M', 209), +(152062, 'Jeff', 1993, 'M', 209), +(152063, 'Dan', 1993, 'M', 208), +(152064, 'Jarod', 1993, 'M', 208), +(152065, 'Pierce', 1993, 'M', 208), +(152066, 'Benny', 1993, 'M', 207), +(152067, 'Cyrus', 1993, 'M', 207), +(152068, 'Forest', 1993, 'M', 207), +(152069, 'Herman', 1993, 'M', 207), +(152070, 'Royce', 1993, 'M', 206), +(152071, 'Elmer', 1993, 'M', 205), +(152072, 'Maximilian', 1993, 'M', 205), +(152073, 'Octavio', 1993, 'M', 205), +(152074, 'Grady', 1993, 'M', 204), +(152075, 'Leland', 1993, 'M', 204), +(152076, 'Lionel', 1993, 'M', 204), +(152077, 'Donavan', 1993, 'M', 203), +(152078, 'Jackie', 1993, 'M', 203), +(152079, 'Rocky', 1993, 'M', 203), +(152080, 'Bernardo', 1993, 'M', 202), +(152081, 'Infant', 1993, 'M', 202), +(152082, 'Kane', 1993, 'M', 201), +(152083, 'Trae', 1993, 'M', 201), +(152084, 'Leslie', 1993, 'M', 200), +(152085, 'Gonzalo', 1993, 'M', 199), +(152086, 'Keon', 1993, 'M', 199), +(152087, 'Alonso', 1993, 'M', 198), +(152088, 'Aubrey', 1993, 'M', 198), +(152089, 'Bradly', 1993, 'M', 197), +(152090, 'Edgardo', 1993, 'M', 197), +(152091, 'Myron', 1993, 'M', 197), +(152092, 'Tory', 1993, 'M', 197), +(152093, 'Cecil', 1993, 'M', 196), +(152094, 'Tobias', 1993, 'M', 196), +(152095, 'Donnell', 1993, 'M', 195), +(152096, 'Sammy', 1993, 'M', 195), +(152097, 'Anton', 1993, 'M', 194), +(152098, 'Devontae', 1993, 'M', 193), +(152099, 'Jamaal', 1993, 'M', 193), +(152100, 'Kieran', 1993, 'M', 193), +(152101, 'Moshe', 1993, 'M', 193), +(152102, 'Isaias', 1993, 'M', 192), +(152103, 'Kolby', 1993, 'M', 191), +(152104, 'Camden', 1993, 'M', 190), +(152105, 'Jacoby', 1993, 'M', 190), +(152106, 'Jamarcus', 1993, 'M', 190), +(152107, 'Sonny', 1993, 'M', 190), +(152108, 'Aric', 1993, 'M', 189), +(152109, 'Mikel', 1993, 'M', 189), +(152110, 'Ezequiel', 1993, 'M', 188), +(152111, 'Gunnar', 1993, 'M', 188), +(152112, 'Gregorio', 1993, 'M', 187), +(152113, 'Irving', 1993, 'M', 187), +(152114, 'Devyn', 1993, 'M', 186), +(152115, 'Wendell', 1993, 'M', 186), +(152116, 'Blair', 1993, 'M', 185), +(152117, 'Brennen', 1993, 'M', 185), +(152118, 'Erich', 1993, 'M', 185), +(152119, 'Marquez', 1993, 'M', 185), +(152120, 'Randolph', 1993, 'M', 185), +(152121, 'Ryne', 1993, 'M', 185), +(152122, 'Clyde', 1993, 'M', 184), +(152123, 'Dewayne', 1993, 'M', 184), +(152124, 'Josh', 1993, 'M', 184), +(152125, 'Kadeem', 1993, 'M', 184), +(152126, 'Kellen', 1993, 'M', 184), +(152127, 'Marques', 1993, 'M', 184), +(152128, 'Ulises', 1993, 'M', 184), +(152129, 'Jessy', 1993, 'M', 183), +(152130, 'Alton', 1993, 'M', 181), +(152131, 'Cruz', 1993, 'M', 181), +(152132, 'Jonas', 1993, 'M', 181), +(152133, 'Davion', 1993, 'M', 180), +(152134, 'Harvey', 1993, 'M', 180), +(152135, 'Kai', 1993, 'M', 180), +(152136, 'Dalvin', 1993, 'M', 179), +(152137, 'Jade', 1993, 'M', 179), +(152138, 'Reese', 1993, 'M', 179), +(152139, 'Savon', 1993, 'M', 179), +(152140, 'Ted', 1993, 'M', 179), +(152141, 'Lincoln', 1993, 'M', 178), +(152142, 'Rex', 1993, 'M', 178), +(152143, 'Benito', 1993, 'M', 176), +(152144, 'Cristopher', 1993, 'M', 176), +(152145, 'Fidel', 1993, 'M', 176), +(152146, 'Sage', 1993, 'M', 176), +(152147, 'Chadwick', 1993, 'M', 174), +(152148, 'Jamil', 1993, 'M', 174), +(152149, 'Kegan', 1993, 'M', 174), +(152150, 'Vaughn', 1993, 'M', 174), +(152151, 'Kirby', 1993, 'M', 173), +(152152, 'Kolton', 1993, 'M', 173), +(152153, 'Dionte', 1993, 'M', 172), +(152154, 'Camron', 1993, 'M', 171), +(152155, 'Rhett', 1993, 'M', 171), +(152156, 'Scotty', 1993, 'M', 171), +(152157, 'Josef', 1993, 'M', 170), +(152158, 'Shea', 1993, 'M', 170), +(152159, 'Deondre', 1993, 'M', 169), +(152160, 'Ervin', 1993, 'M', 169), +(152161, 'Junior', 1993, 'M', 169), +(152162, 'August', 1993, 'M', 168), +(152163, 'Erin', 1993, 'M', 168), +(152164, 'Aldo', 1993, 'M', 167), +(152165, 'Barrett', 1993, 'M', 167), +(152166, 'Ellis', 1993, 'M', 167), +(152167, 'Jim', 1993, 'M', 167), +(152168, 'Emmett', 1993, 'M', 166), +(152169, 'Hakeem', 1993, 'M', 166), +(152170, 'Darrian', 1993, 'M', 165), +(152171, 'Randal', 1993, 'M', 165), +(152172, 'Dallin', 1993, 'M', 163), +(152173, 'Wilfredo', 1993, 'M', 163), +(152174, 'Dontae', 1993, 'M', 162), +(152175, 'Jordy', 1993, 'M', 162), +(152176, 'Jorden', 1993, 'M', 161), +(152177, 'Kelsey', 1993, 'M', 161), +(152178, 'Misael', 1993, 'M', 161), +(152179, 'Raymundo', 1993, 'M', 161), +(152180, 'Dario', 1993, 'M', 160), +(152181, 'Eddy', 1993, 'M', 160), +(152182, 'Dakotah', 1993, 'M', 159), +(152183, 'Lyle', 1993, 'M', 159), +(152184, 'Maximillian', 1993, 'M', 159), +(152185, 'Stetson', 1993, 'M', 159), +(152186, 'Demarco', 1993, 'M', 158), +(152187, 'Dominque', 1993, 'M', 158), +(152188, 'Jaleel', 1993, 'M', 158), +(152189, 'Mikal', 1993, 'M', 158), +(152190, 'Shelton', 1993, 'M', 158), +(152191, 'Trace', 1993, 'M', 158), +(152192, 'Demetri', 1993, 'M', 157), +(152193, 'Deshaun', 1993, 'M', 157), +(152194, 'Adonis', 1993, 'M', 156), +(152195, 'Dayton', 1993, 'M', 156), +(152196, 'Efren', 1993, 'M', 156), +(152197, 'Ibrahim', 1993, 'M', 156), +(152198, 'Kade', 1993, 'M', 156), +(152199, 'Silas', 1993, 'M', 155), +(152200, 'Asa', 1993, 'M', 154), +(152201, 'Chester', 1993, 'M', 154), +(152202, 'Codi', 1993, 'M', 154), +(152203, 'Ari', 1993, 'M', 153), +(152204, 'Tayler', 1993, 'M', 153), +(152205, 'Galen', 1993, 'M', 152), +(152206, 'Antony', 1993, 'M', 151), +(152207, 'Deante', 1993, 'M', 151), +(152208, 'Dondre', 1993, 'M', 151), +(152209, 'Jacques', 1993, 'M', 151), +(152210, 'Kelby', 1993, 'M', 151), +(152211, 'Bronson', 1993, 'M', 150), +(152212, 'Demario', 1993, 'M', 150), +(152213, 'Jerrell', 1993, 'M', 150), +(152214, 'Robbie', 1993, 'M', 150), +(152215, 'Rusty', 1993, 'M', 150), +(152216, 'Talon', 1993, 'M', 150), +(152217, 'Carlo', 1993, 'M', 149), +(152218, 'Greg', 1993, 'M', 149), +(152219, 'Hans', 1993, 'M', 149), +(152220, 'Jess', 1993, 'M', 149), +(152221, 'Otis', 1993, 'M', 149), +(152222, 'Antwon', 1993, 'M', 148), +(152223, 'Brant', 1993, 'M', 148), +(152224, 'Chaim', 1993, 'M', 148), +(152225, 'Domenic', 1993, 'M', 148), +(152226, 'Morris', 1993, 'M', 148), +(152227, 'Luther', 1993, 'M', 147), +(152228, 'Hernan', 1993, 'M', 146), +(152229, 'Pete', 1993, 'M', 146), +(152230, 'Ulysses', 1993, 'M', 146), +(152231, 'Alexandro', 1993, 'M', 145), +(152232, 'Bill', 1993, 'M', 145), +(152233, 'Muhammad', 1993, 'M', 145), +(152234, 'Tom', 1993, 'M', 145), +(152235, 'Tyron', 1993, 'M', 145), +(152236, 'Darrel', 1993, 'M', 144), +(152237, 'Montel', 1993, 'M', 144), +(152238, 'Sherman', 1993, 'M', 144), +(152239, 'Anderson', 1993, 'M', 143), +(152240, 'Augustus', 1993, 'M', 143), +(152241, 'Broderick', 1993, 'M', 143), +(152242, 'Bryon', 1993, 'M', 143), +(152243, 'Claude', 1993, 'M', 143), +(152244, 'Julien', 1993, 'M', 143), +(152245, 'Rasheed', 1993, 'M', 143), +(152246, 'Sylvester', 1993, 'M', 143), +(152247, 'Alexandre', 1993, 'M', 142), +(152248, 'Andreas', 1993, 'M', 142), +(152249, 'Elisha', 1993, 'M', 142), +(152250, 'Hugh', 1993, 'M', 142), +(152251, 'Niko', 1993, 'M', 142), +(152252, 'Cristobal', 1993, 'M', 141), +(152253, 'Laquan', 1993, 'M', 141), +(152254, 'Ron', 1993, 'M', 141), +(152255, 'Shaquan', 1993, 'M', 141), +(152256, 'Eliseo', 1993, 'M', 140), +(152257, 'Garett', 1993, 'M', 140), +(152258, 'Kelton', 1993, 'M', 140), +(152259, 'Maximiliano', 1993, 'M', 140), +(152260, 'Tariq', 1993, 'M', 140), +(152261, 'Keven', 1993, 'M', 139), +(152262, 'Tyshawn', 1993, 'M', 139), +(152263, 'Cale', 1993, 'M', 138), +(152264, 'Mariano', 1993, 'M', 138), +(152265, 'Coby', 1993, 'M', 137), +(152266, 'Kendal', 1993, 'M', 137), +(152267, 'Martez', 1993, 'M', 137), +(152268, 'Darwin', 1993, 'M', 136), +(152269, 'Jody', 1993, 'M', 136), +(152270, 'Ashley', 1993, 'M', 135), +(152271, 'Davin', 1993, 'M', 135), +(152272, 'Devaughn', 1993, 'M', 135), +(152273, 'Francesco', 1993, 'M', 135), +(152274, 'Isidro', 1993, 'M', 135), +(152275, 'Tarik', 1993, 'M', 135), +(152276, 'Darrien', 1993, 'M', 134), +(152277, 'Deonta', 1993, 'M', 134), +(152278, 'Kevon', 1993, 'M', 134), +(152279, 'Rodrick', 1993, 'M', 134), +(152280, 'Kalen', 1993, 'M', 133), +(152281, 'Kenton', 1993, 'M', 133), +(152282, 'Storm', 1993, 'M', 133), +(152283, 'Austyn', 1993, 'M', 132), +(152284, 'Caden', 1993, 'M', 132), +(152285, 'Edmund', 1993, 'M', 132), +(152286, 'Kaden', 1993, 'M', 132), +(152287, 'Denzell', 1993, 'M', 131), +(152288, 'Rakeem', 1993, 'M', 131), +(152289, 'Dejuan', 1993, 'M', 130), +(152290, 'Tavon', 1993, 'M', 130), +(152291, 'Abram', 1993, 'M', 129), +(152292, 'Bailey', 1993, 'M', 129), +(152293, 'Darrion', 1993, 'M', 129), +(152294, 'Emerson', 1993, 'M', 129), +(152295, 'Lazaro', 1993, 'M', 129), +(152296, 'Schuyler', 1993, 'M', 129), +(152297, 'Asher', 1993, 'M', 128), +(152298, 'Jerod', 1993, 'M', 128), +(152299, 'Deontae', 1993, 'M', 127), +(152300, 'Domingo', 1993, 'M', 127), +(152301, 'Fredy', 1993, 'M', 127), +(152302, 'Montrell', 1993, 'M', 127), +(152303, 'Stacy', 1993, 'M', 127), +(152304, 'Willis', 1993, 'M', 127), +(152305, 'Dereck', 1993, 'M', 126), +(152306, 'Jevon', 1993, 'M', 126), +(152307, 'Male', 1993, 'M', 126), +(152308, 'Westley', 1993, 'M', 126), +(152309, 'Jedidiah', 1993, 'M', 125), +(152310, 'Montana', 1993, 'M', 125), +(152311, 'Roosevelt', 1993, 'M', 125), +(152312, 'Axel', 1993, 'M', 124), +(152313, 'Daron', 1993, 'M', 124), +(152314, 'Donavon', 1993, 'M', 124), +(152315, 'Dyllan', 1993, 'M', 124), +(152316, 'Garth', 1993, 'M', 124), +(152317, 'Kole', 1993, 'M', 124), +(152318, 'Malcom', 1993, 'M', 124), +(152319, 'Rocco', 1993, 'M', 124), +(152320, 'Stevie', 1993, 'M', 124), +(152321, 'Dave', 1993, 'M', 123), +(152322, 'Domonique', 1993, 'M', 123), +(152323, 'Samson', 1993, 'M', 123), +(152324, 'Syed', 1993, 'M', 123), +(152325, 'Valentin', 1993, 'M', 123), +(152326, 'Cedrick', 1993, 'M', 122), +(152327, 'Derik', 1993, 'M', 122), +(152328, 'Garrick', 1993, 'M', 122), +(152329, 'Remington', 1993, 'M', 122), +(152330, 'Demonte', 1993, 'M', 121), +(152331, 'Elvin', 1993, 'M', 121), +(152332, 'Louie', 1993, 'M', 121), +(152333, 'Marty', 1993, 'M', 121), +(152334, 'Teddy', 1993, 'M', 121), +(152335, 'Timmy', 1993, 'M', 121), +(152336, 'Titus', 1993, 'M', 121), +(152337, 'Torrey', 1993, 'M', 121), +(152338, 'Unknown', 1993, 'M', 121), +(152339, 'Wallace', 1993, 'M', 121), +(152340, 'Davante', 1993, 'M', 120), +(152341, 'Denver', 1993, 'M', 120), +(152342, 'Giancarlo', 1993, 'M', 120), +(152343, 'Kalvin', 1993, 'M', 120), +(152344, 'Mickey', 1993, 'M', 120), +(152345, 'Rayshawn', 1993, 'M', 120), +(152346, 'Dakoda', 1993, 'M', 119), +(152347, 'Genaro', 1993, 'M', 119), +(152348, 'Justen', 1993, 'M', 119), +(152349, 'Marlin', 1993, 'M', 119), +(152350, 'Nikko', 1993, 'M', 119), +(152351, 'Yosef', 1993, 'M', 119), +(152352, 'Adalberto', 1993, 'M', 118), +(152353, 'Aurelio', 1993, 'M', 118), +(152354, 'Courtland', 1993, 'M', 118), +(152355, 'Eloy', 1993, 'M', 118), +(152356, 'Jaden', 1993, 'M', 118), +(152357, 'Jerald', 1993, 'M', 118), +(152358, 'Laron', 1993, 'M', 118), +(152359, 'Nevin', 1993, 'M', 118), +(152360, 'Prince', 1993, 'M', 118), +(152361, 'Blaise', 1993, 'M', 117), +(152362, 'Brennon', 1993, 'M', 117), +(152363, 'Dawson', 1993, 'M', 117), +(152364, 'Ishmael', 1993, 'M', 117), +(152365, 'Jarrell', 1993, 'M', 117), +(152366, 'Jovani', 1993, 'M', 117), +(152367, 'Kodi', 1993, 'M', 117), +(152368, 'Marcellus', 1993, 'M', 117), +(152369, 'Daulton', 1993, 'M', 116), +(152370, 'Deron', 1993, 'M', 116), +(152371, 'Donta', 1993, 'M', 116), +(152372, 'Federico', 1993, 'M', 116), +(152373, 'Khalid', 1993, 'M', 116), +(152374, 'Tyrel', 1993, 'M', 116), +(152375, 'Dontrell', 1993, 'M', 115), +(152376, 'Everardo', 1993, 'M', 115), +(152377, 'Harris', 1993, 'M', 115), +(152378, 'Quinten', 1993, 'M', 115), +(152379, 'Shay', 1993, 'M', 115), +(152380, 'Deric', 1993, 'M', 114), +(152381, 'Desean', 1993, 'M', 114), +(152382, 'Dijon', 1993, 'M', 114), +(152383, 'Sydney', 1993, 'M', 114), +(152384, 'Virgil', 1993, 'M', 114), +(152385, 'Cary', 1993, 'M', 113), +(152386, 'Cornell', 1993, 'M', 113), +(152387, 'Justyn', 1993, 'M', 113), +(152388, 'Ridge', 1993, 'M', 113), +(152389, 'Britton', 1993, 'M', 112), +(152390, 'Eliezer', 1993, 'M', 112), +(152391, 'Kenyon', 1993, 'M', 112), +(152392, 'Samir', 1993, 'M', 112), +(152393, 'Tommie', 1993, 'M', 112), +(152394, 'Arnulfo', 1993, 'M', 111), +(152395, 'Brodie', 1993, 'M', 111), +(152396, 'Cheyenne', 1993, 'M', 111), +(152397, 'Dejon', 1993, 'M', 111), +(152398, 'Erwin', 1993, 'M', 111), +(152399, 'Garry', 1993, 'M', 111), +(152400, 'Jaren', 1993, 'M', 111), +(152401, 'Kwame', 1993, 'M', 111), +(152402, 'Alphonso', 1993, 'M', 110), +(152403, 'Cordell', 1993, 'M', 110), +(152404, 'Coy', 1993, 'M', 110), +(152405, 'Rashaad', 1993, 'M', 110), +(152406, 'Adrien', 1993, 'M', 109), +(152407, 'Bruno', 1993, 'M', 109), +(152408, 'Cassidy', 1993, 'M', 109), +(152409, 'Darrick', 1993, 'M', 109), +(152410, 'Davonta', 1993, 'M', 109), +(152411, 'Deanthony', 1993, 'M', 109), +(152412, 'Ira', 1993, 'M', 109), +(152413, 'Justus', 1993, 'M', 109), +(152414, 'Raven', 1993, 'M', 109), +(152415, 'Rey', 1993, 'M', 109), +(152416, 'Waylon', 1993, 'M', 109), +(152417, 'Brannon', 1993, 'M', 108), +(152418, 'Jarret', 1993, 'M', 108), +(152419, 'Kale', 1993, 'M', 108), +(152420, 'London', 1993, 'M', 108), +(152421, 'Mack', 1993, 'M', 108), +(152422, 'Orion', 1993, 'M', 108), +(152423, 'Rudolph', 1993, 'M', 108), +(152424, 'Spenser', 1993, 'M', 108), +(152425, 'Tremaine', 1993, 'M', 108), +(152426, 'Abdul', 1993, 'M', 107), +(152427, 'Brandin', 1993, 'M', 107), +(152428, 'Brandt', 1993, 'M', 107), +(152429, 'Mckenzie', 1993, 'M', 107), +(152430, 'Torey', 1993, 'M', 107), +(152431, 'Tyquan', 1993, 'M', 107), +(152432, 'Dustyn', 1993, 'M', 106), +(152433, 'Gideon', 1993, 'M', 106), +(152434, 'Jeromy', 1993, 'M', 106), +(152435, 'Johnson', 1993, 'M', 106), +(152436, 'Trevin', 1993, 'M', 106), +(152437, 'Daren', 1993, 'M', 105), +(152438, 'Demond', 1993, 'M', 105), +(152439, 'Dominik', 1993, 'M', 105), +(152440, 'Jagger', 1993, 'M', 105), +(152441, 'Jaylon', 1993, 'M', 105), +(152442, 'Rashaun', 1993, 'M', 105), +(152443, 'Auston', 1993, 'M', 104), +(152444, 'Bennie', 1993, 'M', 104), +(152445, 'Dedrick', 1993, 'M', 104), +(152446, 'Reggie', 1993, 'M', 104), +(152447, 'Taran', 1993, 'M', 104), +(152448, 'Abdullah', 1993, 'M', 103), +(152449, 'Colter', 1993, 'M', 103), +(152450, 'Dangelo', 1993, 'M', 103), +(152451, 'Edmond', 1993, 'M', 103), +(152452, 'Ken', 1993, 'M', 103), +(152453, 'Kendell', 1993, 'M', 103), +(152454, 'Rohan', 1993, 'M', 103), +(152455, 'Carey', 1993, 'M', 102), +(152456, 'Dajuan', 1993, 'M', 102), +(152457, 'Keanu', 1993, 'M', 102), +(152458, 'Nicholaus', 1993, 'M', 102), +(152459, 'Nicklaus', 1993, 'M', 102), +(152460, 'Octavius', 1993, 'M', 102), +(152461, 'Samual', 1993, 'M', 102), +(152462, 'Van', 1993, 'M', 102), +(152463, 'Vince', 1993, 'M', 102), +(152464, 'Vincenzo', 1993, 'M', 102), +(152465, 'Alek', 1993, 'M', 101), +(152466, 'Denis', 1993, 'M', 101), +(152467, 'Laurence', 1993, 'M', 101), +(152468, 'Mauro', 1993, 'M', 101), +(152469, 'Maverick', 1993, 'M', 101), +(152470, 'Simeon', 1993, 'M', 101), +(152471, 'Stacey', 1993, 'M', 101), +(152472, 'Terell', 1993, 'M', 101), +(152473, 'Theron', 1993, 'M', 101), +(152474, 'Alden', 1993, 'M', 100), +(152475, 'Giuseppe', 1993, 'M', 100); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(152476, 'Jerad', 1993, 'M', 100), +(152477, 'Jessica', 1993, 'M', 100), +(152478, 'Marion', 1993, 'M', 100), +(152479, 'Jessica', 1994, 'F', 32116), +(152480, 'Ashley', 1994, 'F', 30277), +(152481, 'Emily', 1994, 'F', 24148), +(152482, 'Samantha', 1994, 'F', 22819), +(152483, 'Sarah', 1994, 'F', 22275), +(152484, 'Taylor', 1994, 'F', 20731), +(152485, 'Brittany', 1994, 'F', 18899), +(152486, 'Amanda', 1994, 'F', 18711), +(152487, 'Elizabeth', 1994, 'F', 16776), +(152488, 'Megan', 1994, 'F', 16578), +(152489, 'Nicole', 1994, 'F', 16011), +(152490, 'Kayla', 1994, 'F', 15885), +(152491, 'Rachel', 1994, 'F', 15480), +(152492, 'Lauren', 1994, 'F', 15153), +(152493, 'Stephanie', 1994, 'F', 14749), +(152494, 'Hannah', 1994, 'F', 14494), +(152495, 'Jennifer', 1994, 'F', 13997), +(152496, 'Alexis', 1994, 'F', 13036), +(152497, 'Victoria', 1994, 'F', 12690), +(152498, 'Danielle', 1994, 'F', 12447), +(152499, 'Amber', 1994, 'F', 12344), +(152500, 'Courtney', 1994, 'F', 12019), +(152501, 'Jasmine', 1994, 'F', 11711), +(152502, 'Rebecca', 1994, 'F', 11279), +(152503, 'Morgan', 1994, 'F', 10657), +(152504, 'Alyssa', 1994, 'F', 10602), +(152505, 'Brianna', 1994, 'F', 10518), +(152506, 'Alexandra', 1994, 'F', 10226), +(152507, 'Kelsey', 1994, 'F', 9752), +(152508, 'Katherine', 1994, 'F', 9585), +(152509, 'Melissa', 1994, 'F', 8797), +(152510, 'Kimberly', 1994, 'F', 8745), +(152511, 'Michelle', 1994, 'F', 8638), +(152512, 'Allison', 1994, 'F', 8150), +(152513, 'Tiffany', 1994, 'F', 8096), +(152514, 'Haley', 1994, 'F', 7804), +(152515, 'Mary', 1994, 'F', 7746), +(152516, 'Chelsea', 1994, 'F', 7713), +(152517, 'Christina', 1994, 'F', 7670), +(152518, 'Shelby', 1994, 'F', 7546), +(152519, 'Anna', 1994, 'F', 7522), +(152520, 'Abigail', 1994, 'F', 7240), +(152521, 'Sara', 1994, 'F', 7217), +(152522, 'Heather', 1994, 'F', 7034), +(152523, 'Erin', 1994, 'F', 6908), +(152524, 'Laura', 1994, 'F', 6855), +(152525, 'Maria', 1994, 'F', 6752), +(152526, 'Kaitlyn', 1994, 'F', 6686), +(152527, 'Andrea', 1994, 'F', 6475), +(152528, 'Olivia', 1994, 'F', 6432), +(152529, 'Madison', 1994, 'F', 6260), +(152530, 'Jordan', 1994, 'F', 6257), +(152531, 'Marissa', 1994, 'F', 6245), +(152532, 'Brooke', 1994, 'F', 5975), +(152533, 'Kristen', 1994, 'F', 5870), +(152534, 'Natalie', 1994, 'F', 5836), +(152535, 'Erica', 1994, 'F', 5679), +(152536, 'Katelyn', 1994, 'F', 5670), +(152537, 'Vanessa', 1994, 'F', 5549), +(152538, 'Shannon', 1994, 'F', 5507), +(152539, 'Miranda', 1994, 'F', 5453), +(152540, 'Kelly', 1994, 'F', 5445), +(152541, 'Paige', 1994, 'F', 5208), +(152542, 'Crystal', 1994, 'F', 5198), +(152543, 'Jacqueline', 1994, 'F', 5184), +(152544, 'Cassandra', 1994, 'F', 5059), +(152545, 'Gabrielle', 1994, 'F', 5041), +(152546, 'Briana', 1994, 'F', 5000), +(152547, 'Lindsey', 1994, 'F', 4987), +(152548, 'Katie', 1994, 'F', 4974), +(152549, 'Sierra', 1994, 'F', 4853), +(152550, 'Julia', 1994, 'F', 4841), +(152551, 'Alexandria', 1994, 'F', 4840), +(152552, 'Emma', 1994, 'F', 4756), +(152553, 'Mariah', 1994, 'F', 4751), +(152554, 'Sydney', 1994, 'F', 4737), +(152555, 'Amy', 1994, 'F', 4690), +(152556, 'Caitlin', 1994, 'F', 4657), +(152557, 'Kathryn', 1994, 'F', 4613), +(152558, 'Jenna', 1994, 'F', 4593), +(152559, 'Angela', 1994, 'F', 4414), +(152560, 'Savannah', 1994, 'F', 4385), +(152561, 'Alicia', 1994, 'F', 4102), +(152562, 'Catherine', 1994, 'F', 4102), +(152563, 'Breanna', 1994, 'F', 4098), +(152564, 'Destiny', 1994, 'F', 4087), +(152565, 'Jamie', 1994, 'F', 3981), +(152566, 'Monica', 1994, 'F', 3912), +(152567, 'Brittney', 1994, 'F', 3875), +(152568, 'Erika', 1994, 'F', 3584), +(152569, 'Whitney', 1994, 'F', 3565), +(152570, 'Madeline', 1994, 'F', 3516), +(152571, 'Kaitlin', 1994, 'F', 3501), +(152572, 'Caroline', 1994, 'F', 3448), +(152573, 'Alexa', 1994, 'F', 3440), +(152574, 'Molly', 1994, 'F', 3440), +(152575, 'Sabrina', 1994, 'F', 3383), +(152576, 'Diana', 1994, 'F', 3365), +(152577, 'Cheyenne', 1994, 'F', 3305), +(152578, 'Meghan', 1994, 'F', 3228), +(152579, 'Leah', 1994, 'F', 3205), +(152580, 'Mackenzie', 1994, 'F', 3195), +(152581, 'Grace', 1994, 'F', 3171), +(152582, 'Christine', 1994, 'F', 3161), +(152583, 'Cynthia', 1994, 'F', 3158), +(152584, 'Margaret', 1994, 'F', 3104), +(152585, 'Lindsay', 1994, 'F', 3100), +(152586, 'Angelica', 1994, 'F', 3074), +(152587, 'Michaela', 1994, 'F', 3044), +(152588, 'Veronica', 1994, 'F', 2941), +(152589, 'Bianca', 1994, 'F', 2932), +(152590, 'Holly', 1994, 'F', 2924), +(152591, 'Kristina', 1994, 'F', 2875), +(152592, 'Kristin', 1994, 'F', 2840), +(152593, 'Gabriela', 1994, 'F', 2839), +(152594, 'Bethany', 1994, 'F', 2772), +(152595, 'Autumn', 1994, 'F', 2718), +(152596, 'Casey', 1994, 'F', 2691), +(152597, 'Hailey', 1994, 'F', 2686), +(152598, 'Melanie', 1994, 'F', 2680), +(152599, 'Brenda', 1994, 'F', 2651), +(152600, 'Brandi', 1994, 'F', 2635), +(152601, 'Lisa', 1994, 'F', 2565), +(152602, 'Rachael', 1994, 'F', 2553), +(152603, 'Desiree', 1994, 'F', 2546), +(152604, 'Kendra', 1994, 'F', 2534), +(152605, 'April', 1994, 'F', 2522), +(152606, 'Karen', 1994, 'F', 2488), +(152607, 'Julie', 1994, 'F', 2455), +(152608, 'Kathleen', 1994, 'F', 2430), +(152609, 'Leslie', 1994, 'F', 2396), +(152610, 'Dominique', 1994, 'F', 2389), +(152611, 'Natasha', 1994, 'F', 2380), +(152612, 'Kara', 1994, 'F', 2376), +(152613, 'Patricia', 1994, 'F', 2363), +(152614, 'Hayley', 1994, 'F', 2361), +(152615, 'Bailey', 1994, 'F', 2351), +(152616, 'Carly', 1994, 'F', 2323), +(152617, 'Cassidy', 1994, 'F', 2305), +(152618, 'Karina', 1994, 'F', 2262), +(152619, 'Summer', 1994, 'F', 2237), +(152620, 'Tori', 1994, 'F', 2222), +(152621, 'Ana', 1994, 'F', 2212), +(152622, 'Nancy', 1994, 'F', 2190), +(152623, 'Marisa', 1994, 'F', 2187), +(152624, 'Ariel', 1994, 'F', 2186), +(152625, 'Tara', 1994, 'F', 2186), +(152626, 'Alejandra', 1994, 'F', 2185), +(152627, 'Caitlyn', 1994, 'F', 2172), +(152628, 'Claire', 1994, 'F', 2172), +(152629, 'Adriana', 1994, 'F', 2167), +(152630, 'Rebekah', 1994, 'F', 2159), +(152631, 'Alison', 1994, 'F', 2122), +(152632, 'Kaylee', 1994, 'F', 2107), +(152633, 'Chloe', 1994, 'F', 2078), +(152634, 'Raven', 1994, 'F', 2075), +(152635, 'Jocelyn', 1994, 'F', 2058), +(152636, 'Kylie', 1994, 'F', 2043), +(152637, 'Valerie', 1994, 'F', 2008), +(152638, 'Gabriella', 1994, 'F', 1996), +(152639, 'Jade', 1994, 'F', 1944), +(152640, 'Audrey', 1994, 'F', 1929), +(152641, 'Katrina', 1994, 'F', 1925), +(152642, 'Krystal', 1994, 'F', 1890), +(152643, 'Ariana', 1994, 'F', 1873), +(152644, 'Deanna', 1994, 'F', 1873), +(152645, 'Dana', 1994, 'F', 1806), +(152646, 'Mikayla', 1994, 'F', 1793), +(152647, 'Meagan', 1994, 'F', 1788), +(152648, 'Diamond', 1994, 'F', 1785), +(152649, 'Sandra', 1994, 'F', 1770), +(152650, 'Kassandra', 1994, 'F', 1763), +(152651, 'Jasmin', 1994, 'F', 1757), +(152652, 'Bridget', 1994, 'F', 1696), +(152653, 'Monique', 1994, 'F', 1690), +(152654, 'Angel', 1994, 'F', 1675), +(152655, 'Daisy', 1994, 'F', 1667), +(152656, 'Chelsey', 1994, 'F', 1654), +(152657, 'Kendall', 1994, 'F', 1648), +(152658, 'Ashlee', 1994, 'F', 1644), +(152659, 'Felicia', 1994, 'F', 1631), +(152660, 'Krista', 1994, 'F', 1626), +(152661, 'Joanna', 1994, 'F', 1623), +(152662, 'Khadijah', 1994, 'F', 1615), +(152663, 'Sophia', 1994, 'F', 1613), +(152664, 'Yesenia', 1994, 'F', 1607), +(152665, 'Mallory', 1994, 'F', 1605), +(152666, 'Lydia', 1994, 'F', 1599), +(152667, 'Mercedes', 1994, 'F', 1571), +(152668, 'Jazmin', 1994, 'F', 1544), +(152669, 'Jillian', 1994, 'F', 1542), +(152670, 'Mckenzie', 1994, 'F', 1541), +(152671, 'Kirsten', 1994, 'F', 1537), +(152672, 'Gina', 1994, 'F', 1525), +(152673, 'Jazmine', 1994, 'F', 1520), +(152674, 'Cindy', 1994, 'F', 1507), +(152675, 'Priscilla', 1994, 'F', 1506), +(152676, 'Claudia', 1994, 'F', 1503), +(152677, 'Makayla', 1994, 'F', 1503), +(152678, 'Alisha', 1994, 'F', 1498), +(152679, 'Evelyn', 1994, 'F', 1452), +(152680, 'Aaliyah', 1994, 'F', 1451), +(152681, 'Kiara', 1994, 'F', 1445), +(152682, 'Anne', 1994, 'F', 1432), +(152683, 'Cierra', 1994, 'F', 1415), +(152684, 'Ashleigh', 1994, 'F', 1414), +(152685, 'Colleen', 1994, 'F', 1413), +(152686, 'Ciara', 1994, 'F', 1401), +(152687, 'Lacey', 1994, 'F', 1398), +(152688, 'Allyson', 1994, 'F', 1395), +(152689, 'Tabitha', 1994, 'F', 1391), +(152690, 'Denise', 1994, 'F', 1390), +(152691, 'Abby', 1994, 'F', 1372), +(152692, 'Brandy', 1994, 'F', 1350), +(152693, 'Zoe', 1994, 'F', 1333), +(152694, 'Guadalupe', 1994, 'F', 1332), +(152695, 'Ellen', 1994, 'F', 1318), +(152696, 'Marina', 1994, 'F', 1307), +(152697, 'Faith', 1994, 'F', 1305), +(152698, 'Cristina', 1994, 'F', 1286), +(152699, 'Linda', 1994, 'F', 1282), +(152700, 'Isabella', 1994, 'F', 1277), +(152701, 'Nichole', 1994, 'F', 1260), +(152702, 'Karla', 1994, 'F', 1258), +(152703, 'Jaclyn', 1994, 'F', 1256), +(152704, 'Jessie', 1994, 'F', 1255), +(152705, 'Amelia', 1994, 'F', 1253), +(152706, 'Rosa', 1994, 'F', 1253), +(152707, 'Mayra', 1994, 'F', 1245), +(152708, 'Meredith', 1994, 'F', 1230), +(152709, 'Carolyn', 1994, 'F', 1229), +(152710, 'Maggie', 1994, 'F', 1225), +(152711, 'Hope', 1994, 'F', 1224), +(152712, 'Asia', 1994, 'F', 1213), +(152713, 'Naomi', 1994, 'F', 1200), +(152714, 'Clarissa', 1994, 'F', 1186), +(152715, 'Hanna', 1994, 'F', 1186), +(152716, 'Daniela', 1994, 'F', 1175), +(152717, 'Carmen', 1994, 'F', 1165), +(152718, 'Justine', 1994, 'F', 1161), +(152719, 'Tessa', 1994, 'F', 1157), +(152720, 'Tatiana', 1994, 'F', 1154), +(152721, 'Wendy', 1994, 'F', 1133), +(152722, 'Isabel', 1994, 'F', 1132), +(152723, 'Katlyn', 1994, 'F', 1132), +(152724, 'Tamara', 1994, 'F', 1130), +(152725, 'Maya', 1994, 'F', 1129), +(152726, 'Kasey', 1994, 'F', 1127), +(152727, 'Kiana', 1994, 'F', 1117), +(152728, 'Alexus', 1994, 'F', 1110), +(152729, 'Raquel', 1994, 'F', 1105), +(152730, 'Aubrey', 1994, 'F', 1102), +(152731, 'Bria', 1994, 'F', 1102), +(152732, 'Candace', 1994, 'F', 1099), +(152733, 'Teresa', 1994, 'F', 1097), +(152734, 'Tiara', 1994, 'F', 1093), +(152735, 'Ashlyn', 1994, 'F', 1092), +(152736, 'Kelsie', 1994, 'F', 1089), +(152737, 'Celeste', 1994, 'F', 1080), +(152738, 'Alissa', 1994, 'F', 1078), +(152739, 'Britney', 1994, 'F', 1067), +(152740, 'Katelynn', 1994, 'F', 1066), +(152741, 'Theresa', 1994, 'F', 1064), +(152742, 'Kelli', 1994, 'F', 1062), +(152743, 'Nina', 1994, 'F', 1057), +(152744, 'Tyler', 1994, 'F', 1054), +(152745, 'Renee', 1994, 'F', 1050), +(152746, 'Carolina', 1994, 'F', 1046), +(152747, 'Jacquelyn', 1994, 'F', 1046), +(152748, 'Genesis', 1994, 'F', 1042), +(152749, 'Ruby', 1994, 'F', 1031), +(152750, 'Cara', 1994, 'F', 1025), +(152751, 'Susan', 1994, 'F', 1023), +(152752, 'Miriam', 1994, 'F', 1018), +(152753, 'Heidi', 1994, 'F', 1015), +(152754, 'Carrie', 1994, 'F', 1013), +(152755, 'Jordyn', 1994, 'F', 1008), +(152756, 'Janet', 1994, 'F', 1007), +(152757, 'Brenna', 1994, 'F', 1002), +(152758, 'Ebony', 1994, 'F', 994), +(152759, 'Jenny', 1994, 'F', 982), +(152760, 'Arianna', 1994, 'F', 981), +(152761, 'Gloria', 1994, 'F', 979), +(152762, 'Toni', 1994, 'F', 971), +(152763, 'Ashton', 1994, 'F', 970), +(152764, 'Cecilia', 1994, 'F', 968), +(152765, 'Esther', 1994, 'F', 958), +(152766, 'Camille', 1994, 'F', 954), +(152767, 'Martha', 1994, 'F', 952), +(152768, 'Tiana', 1994, 'F', 947), +(152769, 'Charlotte', 1994, 'F', 940), +(152770, 'Candice', 1994, 'F', 936), +(152771, 'Aimee', 1994, 'F', 923), +(152772, 'Madeleine', 1994, 'F', 923), +(152773, 'Virginia', 1994, 'F', 923), +(152774, 'Tia', 1994, 'F', 922), +(152775, 'Elena', 1994, 'F', 921), +(152776, 'Savanna', 1994, 'F', 921), +(152777, 'Marie', 1994, 'F', 919), +(152778, 'Vivian', 1994, 'F', 919), +(152779, 'Selena', 1994, 'F', 917), +(152780, 'Angelina', 1994, 'F', 914), +(152781, 'Imani', 1994, 'F', 905), +(152782, 'Carissa', 1994, 'F', 904), +(152783, 'Cassie', 1994, 'F', 895), +(152784, 'Dakota', 1994, 'F', 894), +(152785, 'Adrianna', 1994, 'F', 887), +(152786, 'Lillian', 1994, 'F', 881), +(152787, 'Alexia', 1994, 'F', 880), +(152788, 'Logan', 1994, 'F', 879), +(152789, 'Ruth', 1994, 'F', 878), +(152790, 'Barbara', 1994, 'F', 868), +(152791, 'Darian', 1994, 'F', 868), +(152792, 'Janelle', 1994, 'F', 867), +(152793, 'Mikaela', 1994, 'F', 862), +(152794, 'Mia', 1994, 'F', 859), +(152795, 'Harley', 1994, 'F', 858), +(152796, 'Sharon', 1994, 'F', 857), +(152797, 'Sadie', 1994, 'F', 851), +(152798, 'Stacy', 1994, 'F', 850), +(152799, 'Helen', 1994, 'F', 848), +(152800, 'Nikki', 1994, 'F', 842), +(152801, 'Kierra', 1994, 'F', 839), +(152802, 'Anastasia', 1994, 'F', 833), +(152803, 'Tayler', 1994, 'F', 830), +(152804, 'Kellie', 1994, 'F', 828), +(152805, 'Hunter', 1994, 'F', 821), +(152806, 'Nicolette', 1994, 'F', 821), +(152807, 'Stacey', 1994, 'F', 819), +(152808, 'Shayla', 1994, 'F', 811), +(152809, 'Tierra', 1994, 'F', 811), +(152810, 'Elise', 1994, 'F', 802), +(152811, 'Liliana', 1994, 'F', 799), +(152812, 'Robin', 1994, 'F', 799), +(152813, 'Alana', 1994, 'F', 798), +(152814, 'Carla', 1994, 'F', 798), +(152815, 'Annie', 1994, 'F', 797), +(152816, 'Shawna', 1994, 'F', 794), +(152817, 'Rose', 1994, 'F', 789), +(152818, 'Valeria', 1994, 'F', 788), +(152819, 'Ann', 1994, 'F', 785), +(152820, 'Shanice', 1994, 'F', 782), +(152821, 'Callie', 1994, 'F', 774), +(152822, 'Devin', 1994, 'F', 771), +(152823, 'Christian', 1994, 'F', 770), +(152824, 'Eva', 1994, 'F', 769), +(152825, 'Karissa', 1994, 'F', 769), +(152826, 'Melinda', 1994, 'F', 765), +(152827, 'Lorena', 1994, 'F', 755), +(152828, 'Riley', 1994, 'F', 755), +(152829, 'Pamela', 1994, 'F', 753), +(152830, 'Kate', 1994, 'F', 752), +(152831, 'Paola', 1994, 'F', 747), +(152832, 'Chelsie', 1994, 'F', 746), +(152833, 'Deborah', 1994, 'F', 740), +(152834, 'Brianne', 1994, 'F', 733), +(152835, 'Aliyah', 1994, 'F', 731), +(152836, 'Melody', 1994, 'F', 730), +(152837, 'Adrienne', 1994, 'F', 729), +(152838, 'Elisabeth', 1994, 'F', 728), +(152839, 'Tina', 1994, 'F', 720), +(152840, 'Justice', 1994, 'F', 719), +(152841, 'Larissa', 1994, 'F', 715), +(152842, 'Sonia', 1994, 'F', 712), +(152843, 'Kylee', 1994, 'F', 708), +(152844, 'Francesca', 1994, 'F', 707), +(152845, 'Marisol', 1994, 'F', 707), +(152846, 'Tanya', 1994, 'F', 707), +(152847, 'Jane', 1994, 'F', 706), +(152848, 'Chasity', 1994, 'F', 702), +(152849, 'Devon', 1994, 'F', 701), +(152850, 'Alyson', 1994, 'F', 699), +(152851, 'Tania', 1994, 'F', 696), +(152852, 'Sasha', 1994, 'F', 694), +(152853, 'Esmeralda', 1994, 'F', 689), +(152854, 'Natalia', 1994, 'F', 683), +(152855, 'Kenya', 1994, 'F', 680), +(152856, 'Breana', 1994, 'F', 678), +(152857, 'Kira', 1994, 'F', 676), +(152858, 'Macy', 1994, 'F', 667), +(152859, 'Regina', 1994, 'F', 666), +(152860, 'Alaina', 1994, 'F', 662), +(152861, 'Donna', 1994, 'F', 662), +(152862, 'Mckenna', 1994, 'F', 662), +(152863, 'Brooklyn', 1994, 'F', 658), +(152864, 'Kristine', 1994, 'F', 657), +(152865, 'Destinee', 1994, 'F', 655), +(152866, 'Kali', 1994, 'F', 650), +(152867, 'Leticia', 1994, 'F', 649), +(152868, 'Josephine', 1994, 'F', 648), +(152869, 'Lily', 1994, 'F', 647), +(152870, 'Bryanna', 1994, 'F', 646), +(152871, 'Randi', 1994, 'F', 644), +(152872, 'Juliana', 1994, 'F', 642), +(152873, 'Christy', 1994, 'F', 637), +(152874, 'Tracy', 1994, 'F', 635), +(152875, 'Meaghan', 1994, 'F', 634), +(152876, 'Kari', 1994, 'F', 633), +(152877, 'Precious', 1994, 'F', 631), +(152878, 'Makenzie', 1994, 'F', 629), +(152879, 'Kyla', 1994, 'F', 626), +(152880, 'Paula', 1994, 'F', 623), +(152881, 'Skylar', 1994, 'F', 621), +(152882, 'Serena', 1994, 'F', 620), +(152883, 'Kyra', 1994, 'F', 618), +(152884, 'India', 1994, 'F', 616), +(152885, 'Maranda', 1994, 'F', 616), +(152886, 'Rachelle', 1994, 'F', 614), +(152887, 'Selina', 1994, 'F', 614), +(152888, 'Taryn', 1994, 'F', 613), +(152889, 'Frances', 1994, 'F', 607), +(152890, 'Carley', 1994, 'F', 603), +(152891, 'Kaitlynn', 1994, 'F', 602), +(152892, 'Emilee', 1994, 'F', 601), +(152893, 'Sophie', 1994, 'F', 601), +(152894, 'Tiffani', 1994, 'F', 601), +(152895, 'Ciera', 1994, 'F', 599), +(152896, 'Arielle', 1994, 'F', 598), +(152897, 'Irene', 1994, 'F', 598), +(152898, 'Abbey', 1994, 'F', 597), +(152899, 'Shayna', 1994, 'F', 596), +(152900, 'Alice', 1994, 'F', 594), +(152901, 'Celina', 1994, 'F', 593), +(152902, 'Cortney', 1994, 'F', 593), +(152903, 'Kourtney', 1994, 'F', 593), +(152904, 'Sylvia', 1994, 'F', 592), +(152905, 'Joy', 1994, 'F', 590), +(152906, 'Kristy', 1994, 'F', 586), +(152907, 'Clara', 1994, 'F', 585), +(152908, 'Peyton', 1994, 'F', 585), +(152909, 'Brittani', 1994, 'F', 584), +(152910, 'Alma', 1994, 'F', 583), +(152911, 'Kailey', 1994, 'F', 583), +(152912, 'Daniella', 1994, 'F', 582), +(152913, 'Kaila', 1994, 'F', 579), +(152914, 'Cheyanne', 1994, 'F', 576), +(152915, 'Kayleigh', 1994, 'F', 576), +(152916, 'Jaime', 1994, 'F', 574), +(152917, 'Johanna', 1994, 'F', 574), +(152918, 'Josie', 1994, 'F', 573), +(152919, 'Mariana', 1994, 'F', 573), +(152920, 'Tanisha', 1994, 'F', 573), +(152921, 'Kristi', 1994, 'F', 571), +(152922, 'Chandler', 1994, 'F', 570), +(152923, 'Payton', 1994, 'F', 568), +(152924, 'Sidney', 1994, 'F', 568), +(152925, 'Elaine', 1994, 'F', 567), +(152926, 'Maritza', 1994, 'F', 567), +(152927, 'Allie', 1994, 'F', 566), +(152928, 'Robyn', 1994, 'F', 566), +(152929, 'Anissa', 1994, 'F', 563), +(152930, 'Carina', 1994, 'F', 563), +(152931, 'Michele', 1994, 'F', 563), +(152932, 'Christa', 1994, 'F', 562), +(152933, 'Madelyn', 1994, 'F', 562), +(152934, 'Marlene', 1994, 'F', 561), +(152935, 'Jeanette', 1994, 'F', 558), +(152936, 'Kiera', 1994, 'F', 558), +(152937, 'Angelique', 1994, 'F', 552), +(152938, 'Marilyn', 1994, 'F', 552), +(152939, 'Cristal', 1994, 'F', 550), +(152940, 'Nadia', 1994, 'F', 547), +(152941, 'Noelle', 1994, 'F', 547), +(152942, 'Janae', 1994, 'F', 545), +(152943, 'Haylee', 1994, 'F', 543), +(152944, 'Yvette', 1994, 'F', 543), +(152945, 'Katharine', 1994, 'F', 542), +(152946, 'Micaela', 1994, 'F', 540), +(152947, 'Tasha', 1994, 'F', 539), +(152948, 'Trisha', 1994, 'F', 537), +(152949, 'Ericka', 1994, 'F', 536), +(152950, 'Lucy', 1994, 'F', 536), +(152951, 'Talia', 1994, 'F', 536), +(152952, 'Nora', 1994, 'F', 529), +(152953, 'Lori', 1994, 'F', 525), +(152954, 'Elisa', 1994, 'F', 522), +(152955, 'Haleigh', 1994, 'F', 522), +(152956, 'Katarina', 1994, 'F', 522), +(152957, 'Chantel', 1994, 'F', 521), +(152958, 'Blanca', 1994, 'F', 520), +(152959, 'Kaleigh', 1994, 'F', 520), +(152960, 'Yvonne', 1994, 'F', 519), +(152961, 'Iris', 1994, 'F', 518), +(152962, 'Avery', 1994, 'F', 517), +(152963, 'Dalia', 1994, 'F', 515), +(152964, 'Simone', 1994, 'F', 512), +(152965, 'Margarita', 1994, 'F', 511), +(152966, 'Jada', 1994, 'F', 510), +(152967, 'Paris', 1994, 'F', 510), +(152968, 'Sofia', 1994, 'F', 510), +(152969, 'Viviana', 1994, 'F', 509), +(152970, 'Corinne', 1994, 'F', 507), +(152971, 'Edith', 1994, 'F', 507), +(152972, 'Lyndsey', 1994, 'F', 504), +(152973, 'Carol', 1994, 'F', 503), +(152974, 'Maribel', 1994, 'F', 500), +(152975, 'Moriah', 1994, 'F', 499), +(152976, 'Kelley', 1994, 'F', 498), +(152977, 'Stefanie', 1994, 'F', 498), +(152978, 'Desirae', 1994, 'F', 497), +(152979, 'Shaina', 1994, 'F', 497), +(152980, 'Alanna', 1994, 'F', 491), +(152981, 'Gianna', 1994, 'F', 491), +(152982, 'Susana', 1994, 'F', 491), +(152983, 'Stephany', 1994, 'F', 490), +(152984, 'Casandra', 1994, 'F', 489), +(152985, 'Judith', 1994, 'F', 489), +(152986, 'Tianna', 1994, 'F', 489), +(152987, 'Laurel', 1994, 'F', 488), +(152988, 'Misty', 1994, 'F', 488), +(152989, 'Itzel', 1994, 'F', 487), +(152990, 'Emilie', 1994, 'F', 486), +(152991, 'Kadijah', 1994, 'F', 486), +(152992, 'Sandy', 1994, 'F', 486), +(152993, 'Delaney', 1994, 'F', 484), +(152994, 'Charity', 1994, 'F', 483), +(152995, 'Perla', 1994, 'F', 482), +(152996, 'Ivy', 1994, 'F', 481), +(152997, 'Kaley', 1994, 'F', 481), +(152998, 'Kelsi', 1994, 'F', 481), +(152999, 'Kiersten', 1994, 'F', 481), +(153000, 'Tess', 1994, 'F', 477), +(153001, 'Bridgette', 1994, 'F', 475), +(153002, 'Kennedy', 1994, 'F', 472), +(153003, 'Lizbeth', 1994, 'F', 472), +(153004, 'Chanel', 1994, 'F', 468), +(153005, 'Dallas', 1994, 'F', 467), +(153006, 'Yolanda', 1994, 'F', 467), +(153007, 'Alexandrea', 1994, 'F', 466), +(153008, 'Hallie', 1994, 'F', 466), +(153009, 'Bonnie', 1994, 'F', 464), +(153010, 'Jill', 1994, 'F', 462), +(153011, 'Kaylin', 1994, 'F', 462), +(153012, 'Yasmin', 1994, 'F', 462), +(153013, 'Kassidy', 1994, 'F', 461), +(153014, 'Kaylyn', 1994, 'F', 459), +(153015, 'Julianna', 1994, 'F', 455), +(153016, 'Kathy', 1994, 'F', 454), +(153017, 'Mollie', 1994, 'F', 454), +(153018, 'Lena', 1994, 'F', 453), +(153019, 'Norma', 1994, 'F', 452), +(153020, 'Diane', 1994, 'F', 450), +(153021, 'Nia', 1994, 'F', 449), +(153022, 'Alisa', 1994, 'F', 448), +(153023, 'Rochelle', 1994, 'F', 447), +(153024, 'Julianne', 1994, 'F', 445), +(153025, 'Araceli', 1994, 'F', 444), +(153026, 'Isabelle', 1994, 'F', 443), +(153027, 'Dorothy', 1994, 'F', 442), +(153028, 'Leanna', 1994, 'F', 440), +(153029, 'Anita', 1994, 'F', 439), +(153030, 'Rocio', 1994, 'F', 439), +(153031, 'Breanne', 1994, 'F', 438), +(153032, 'Beatriz', 1994, 'F', 437), +(153033, 'Paulina', 1994, 'F', 437), +(153034, 'Genevieve', 1994, 'F', 432), +(153035, 'Carlie', 1994, 'F', 431), +(153036, 'Lacy', 1994, 'F', 431), +(153037, 'Karli', 1994, 'F', 425), +(153038, 'Suzanne', 1994, 'F', 424), +(153039, 'Alina', 1994, 'F', 420), +(153040, 'Janice', 1994, 'F', 420), +(153041, 'Sheila', 1994, 'F', 419), +(153042, 'Halie', 1994, 'F', 410), +(153043, 'Alysha', 1994, 'F', 409), +(153044, 'Hillary', 1994, 'F', 408), +(153045, 'Kelsea', 1994, 'F', 408), +(153046, 'Charlene', 1994, 'F', 407), +(153047, 'Keri', 1994, 'F', 407), +(153048, 'Kaylie', 1994, 'F', 405), +(153049, 'Rosemary', 1994, 'F', 402), +(153050, 'Antoinette', 1994, 'F', 401), +(153051, 'Cayla', 1994, 'F', 400), +(153052, 'Fatima', 1994, 'F', 400), +(153053, 'Katelin', 1994, 'F', 399), +(153054, 'Karly', 1994, 'F', 398), +(153055, 'Jacklyn', 1994, 'F', 396), +(153056, 'Sally', 1994, 'F', 396), +(153057, 'Ashlie', 1994, 'F', 395), +(153058, 'Shana', 1994, 'F', 395), +(153059, 'Alex', 1994, 'F', 393), +(153060, 'Corina', 1994, 'F', 391), +(153061, 'Dawn', 1994, 'F', 391), +(153062, 'Zhane', 1994, 'F', 391), +(153063, 'Eleanor', 1994, 'F', 390), +(153064, 'Rhiannon', 1994, 'F', 389), +(153065, 'Maegan', 1994, 'F', 387), +(153066, 'Noemi', 1994, 'F', 386), +(153067, 'Dulce', 1994, 'F', 384), +(153068, 'Ashlynn', 1994, 'F', 382), +(153069, 'Skyler', 1994, 'F', 382), +(153070, 'Lexus', 1994, 'F', 381), +(153071, 'Eliza', 1994, 'F', 379), +(153072, 'Shirley', 1994, 'F', 379), +(153073, 'Lea', 1994, 'F', 378), +(153074, 'Connie', 1994, 'F', 377), +(153075, 'Karlie', 1994, 'F', 377), +(153076, 'Lucia', 1994, 'F', 377), +(153077, 'Roxanne', 1994, 'F', 376), +(153078, 'Shelbi', 1994, 'F', 376), +(153079, 'Joyce', 1994, 'F', 374), +(153080, 'Sade', 1994, 'F', 374), +(153081, 'Tonya', 1994, 'F', 373), +(153082, 'Juanita', 1994, 'F', 372), +(153083, 'Savanah', 1994, 'F', 372), +(153084, 'Mara', 1994, 'F', 370), +(153085, 'Nathalie', 1994, 'F', 370), +(153086, 'Beverly', 1994, 'F', 368), +(153087, 'Eileen', 1994, 'F', 368), +(153088, 'Kasandra', 1994, 'F', 366), +(153089, 'Mckayla', 1994, 'F', 366), +(153090, 'Regan', 1994, 'F', 365), +(153091, 'Giselle', 1994, 'F', 362), +(153092, 'Rikki', 1994, 'F', 362), +(153093, 'Karlee', 1994, 'F', 361), +(153094, 'Keisha', 1994, 'F', 359), +(153095, 'Ryan', 1994, 'F', 359), +(153096, 'Elaina', 1994, 'F', 358), +(153097, 'Yadira', 1994, 'F', 358), +(153098, 'Heaven', 1994, 'F', 357), +(153099, 'Jesse', 1994, 'F', 357), +(153100, 'Shantel', 1994, 'F', 357), +(153101, 'Clare', 1994, 'F', 355), +(153102, 'Reyna', 1994, 'F', 355), +(153103, 'Aisha', 1994, 'F', 353), +(153104, 'Kacie', 1994, 'F', 353), +(153105, 'Abbie', 1994, 'F', 351), +(153106, 'Kalyn', 1994, 'F', 350), +(153107, 'Shanna', 1994, 'F', 350), +(153108, 'Katy', 1994, 'F', 349), +(153109, 'Bobbie', 1994, 'F', 347), +(153110, 'Cameron', 1994, 'F', 347), +(153111, 'Loren', 1994, 'F', 347), +(153112, 'Kerri', 1994, 'F', 346), +(153113, 'Brook', 1994, 'F', 345), +(153114, 'Darlene', 1994, 'F', 345), +(153115, 'Hailee', 1994, 'F', 343), +(153116, 'Kori', 1994, 'F', 342), +(153117, 'Georgia', 1994, 'F', 341), +(153118, 'Angie', 1994, 'F', 340), +(153119, 'Rebeca', 1994, 'F', 340), +(153120, 'Thalia', 1994, 'F', 340), +(153121, 'Kerry', 1994, 'F', 339), +(153122, 'Annette', 1994, 'F', 338), +(153123, 'Yasmine', 1994, 'F', 336), +(153124, 'Luz', 1994, 'F', 335), +(153125, 'Lucero', 1994, 'F', 334), +(153126, 'Blair', 1994, 'F', 332), +(153127, 'Latisha', 1994, 'F', 332), +(153128, 'Montana', 1994, 'F', 331), +(153129, 'Shauna', 1994, 'F', 331), +(153130, 'Mariela', 1994, 'F', 330), +(153131, 'Alayna', 1994, 'F', 329), +(153132, 'Cora', 1994, 'F', 328), +(153133, 'Tammy', 1994, 'F', 328), +(153134, 'Leanne', 1994, 'F', 327), +(153135, 'Tyra', 1994, 'F', 327), +(153136, 'Jena', 1994, 'F', 325), +(153137, 'Tabatha', 1994, 'F', 325), +(153138, 'Carli', 1994, 'F', 324), +(153139, 'Jodi', 1994, 'F', 324), +(153140, 'Katlin', 1994, 'F', 324), +(153141, 'Silvia', 1994, 'F', 324), +(153142, 'Brittni', 1994, 'F', 323), +(153143, 'Clarisa', 1994, 'F', 323), +(153144, 'Darby', 1994, 'F', 321), +(153145, 'Iesha', 1994, 'F', 321), +(153146, 'Justina', 1994, 'F', 321), +(153147, 'Antonia', 1994, 'F', 318), +(153148, 'Aurora', 1994, 'F', 318), +(153149, 'Rita', 1994, 'F', 317), +(153150, 'Stacie', 1994, 'F', 317), +(153151, 'Beth', 1994, 'F', 315), +(153152, 'Kala', 1994, 'F', 315), +(153153, 'Ali', 1994, 'F', 314), +(153154, 'Demi', 1994, 'F', 313), +(153155, 'Ayanna', 1994, 'F', 312), +(153156, 'Christie', 1994, 'F', 312), +(153157, 'Janessa', 1994, 'F', 312), +(153158, 'Ella', 1994, 'F', 311), +(153159, 'Christen', 1994, 'F', 310), +(153160, 'Bobbi', 1994, 'F', 308), +(153161, 'Cheryl', 1994, 'F', 308), +(153162, 'Debra', 1994, 'F', 308), +(153163, 'Skye', 1994, 'F', 308), +(153164, 'Kiley', 1994, 'F', 307), +(153165, 'Sonya', 1994, 'F', 307), +(153166, 'Stevie', 1994, 'F', 306), +(153167, 'Maureen', 1994, 'F', 305), +(153168, 'Myranda', 1994, 'F', 305), +(153169, 'Tatyana', 1994, 'F', 304), +(153170, 'Celia', 1994, 'F', 303), +(153171, 'Cori', 1994, 'F', 302), +(153172, 'Denisha', 1994, 'F', 302), +(153173, 'Octavia', 1994, 'F', 302), +(153174, 'Eden', 1994, 'F', 301), +(153175, 'Jaqueline', 1994, 'F', 301), +(153176, 'Madalyn', 1994, 'F', 301), +(153177, 'Baby', 1994, 'F', 299), +(153178, 'Jennie', 1994, 'F', 299), +(153179, 'Lauryn', 1994, 'F', 299), +(153180, 'Halle', 1994, 'F', 298), +(153181, 'Karley', 1994, 'F', 298), +(153182, 'Reagan', 1994, 'F', 298), +(153183, 'Arlene', 1994, 'F', 297), +(153184, 'Maura', 1994, 'F', 297), +(153185, 'Brandie', 1994, 'F', 296), +(153186, 'Aspen', 1994, 'F', 294), +(153187, 'Kristian', 1994, 'F', 294), +(153188, 'Latasha', 1994, 'F', 294), +(153189, 'Devan', 1994, 'F', 293), +(153190, 'Fabiola', 1994, 'F', 293), +(153191, 'Jayme', 1994, 'F', 293), +(153192, 'Melina', 1994, 'F', 292), +(153193, 'Racheal', 1994, 'F', 291), +(153194, 'Domonique', 1994, 'F', 289), +(153195, 'Gladys', 1994, 'F', 289), +(153196, 'Gwendolyn', 1994, 'F', 289), +(153197, 'Jenifer', 1994, 'F', 289), +(153198, 'Micah', 1994, 'F', 289), +(153199, 'Carlee', 1994, 'F', 288), +(153200, 'Destiney', 1994, 'F', 288), +(153201, 'Lesley', 1994, 'F', 288), +(153202, 'Helena', 1994, 'F', 287), +(153203, 'Lara', 1994, 'F', 287), +(153204, 'Leigh', 1994, 'F', 287), +(153205, 'Mikala', 1994, 'F', 287), +(153206, 'Shea', 1994, 'F', 287), +(153207, 'Joanne', 1994, 'F', 286), +(153208, 'Ashly', 1994, 'F', 285), +(153209, 'Christiana', 1994, 'F', 285), +(153210, 'Janie', 1994, 'F', 285), +(153211, 'Joselyn', 1994, 'F', 285), +(153212, 'Sarai', 1994, 'F', 285), +(153213, 'Shyanne', 1994, 'F', 284), +(153214, 'Kristyn', 1994, 'F', 282), +(153215, 'Yazmin', 1994, 'F', 282), +(153216, 'Brionna', 1994, 'F', 281), +(153217, 'Gretchen', 1994, 'F', 281), +(153218, 'Shelly', 1994, 'F', 281), +(153219, 'Daphne', 1994, 'F', 280), +(153220, 'Kacey', 1994, 'F', 280), +(153221, 'Shakira', 1994, 'F', 280), +(153222, 'Breonna', 1994, 'F', 279), +(153223, 'Destini', 1994, 'F', 279), +(153224, 'Brittanie', 1994, 'F', 278), +(153225, 'Hali', 1994, 'F', 277), +(153226, 'Hollie', 1994, 'F', 277), +(153227, 'Krysta', 1994, 'F', 277), +(153228, 'Yessenia', 1994, 'F', 277), +(153229, 'Audra', 1994, 'F', 276), +(153230, 'Ava', 1994, 'F', 276), +(153231, 'Ayana', 1994, 'F', 276), +(153232, 'Dayana', 1994, 'F', 276), +(153233, 'Elyse', 1994, 'F', 276), +(153234, 'Betty', 1994, 'F', 275), +(153235, 'Mandy', 1994, 'F', 275), +(153236, 'Dianna', 1994, 'F', 274), +(153237, 'Mindy', 1994, 'F', 274), +(153238, 'Ingrid', 1994, 'F', 273), +(153239, 'Kenia', 1994, 'F', 272), +(153240, 'Lizette', 1994, 'F', 272), +(153241, 'Kristie', 1994, 'F', 269), +(153242, 'Maddison', 1994, 'F', 269), +(153243, 'Shelbie', 1994, 'F', 269), +(153244, 'Berenice', 1994, 'F', 268), +(153245, 'Brielle', 1994, 'F', 268), +(153246, 'Emerald', 1994, 'F', 268), +(153247, 'Kendal', 1994, 'F', 268), +(153248, 'Kirstin', 1994, 'F', 268), +(153249, 'Kortney', 1994, 'F', 268), +(153250, 'Allyssa', 1994, 'F', 267), +(153251, 'Juana', 1994, 'F', 265), +(153252, 'Jackie', 1994, 'F', 263), +(153253, 'Danica', 1994, 'F', 262), +(153254, 'Essence', 1994, 'F', 262), +(153255, 'Jalisa', 1994, 'F', 262), +(153256, 'Kianna', 1994, 'F', 262), +(153257, 'Magdalena', 1994, 'F', 262), +(153258, 'Maricela', 1994, 'F', 262), +(153259, 'Roxana', 1994, 'F', 262), +(153260, 'Salina', 1994, 'F', 262), +(153261, 'Dayna', 1994, 'F', 261), +(153262, 'Janette', 1994, 'F', 261), +(153263, 'Jaimie', 1994, 'F', 260), +(153264, 'Jana', 1994, 'F', 260), +(153265, 'Lynn', 1994, 'F', 260), +(153266, 'Trinity', 1994, 'F', 260), +(153267, 'Gabriel', 1994, 'F', 259), +(153268, 'Shaniqua', 1994, 'F', 259), +(153269, 'Alesha', 1994, 'F', 258), +(153270, 'Jessika', 1994, 'F', 258), +(153271, 'Kaela', 1994, 'F', 258), +(153272, 'Liana', 1994, 'F', 258), +(153273, 'Joelle', 1994, 'F', 256), +(153274, 'Terri', 1994, 'F', 256), +(153275, 'Devyn', 1994, 'F', 255), +(153276, 'Sage', 1994, 'F', 254), +(153277, 'Staci', 1994, 'F', 254), +(153278, 'Addison', 1994, 'F', 253), +(153279, 'Terra', 1994, 'F', 253), +(153280, 'Ellie', 1994, 'F', 252), +(153281, 'Graciela', 1994, 'F', 252), +(153282, 'Macey', 1994, 'F', 251), +(153283, 'Zana', 1994, 'F', 251), +(153284, 'Bryana', 1994, 'F', 250), +(153285, 'Katerina', 1994, 'F', 250), +(153286, 'Tricia', 1994, 'F', 250), +(153287, 'Stormy', 1994, 'F', 249), +(153288, 'Aileen', 1994, 'F', 248), +(153289, 'Lacie', 1994, 'F', 248), +(153290, 'Patrice', 1994, 'F', 248), +(153291, 'Athena', 1994, 'F', 247), +(153292, 'Belinda', 1994, 'F', 247), +(153293, 'Celine', 1994, 'F', 247), +(153294, 'Elisha', 1994, 'F', 247), +(153295, 'Elissa', 1994, 'F', 247), +(153296, 'Kailyn', 1994, 'F', 247), +(153297, 'Phoebe', 1994, 'F', 247), +(153298, 'Ayla', 1994, 'F', 246), +(153299, 'Julissa', 1994, 'F', 246), +(153300, 'Kailee', 1994, 'F', 246), +(153301, 'Alysia', 1994, 'F', 245), +(153302, 'Deja', 1994, 'F', 245), +(153303, 'Nadine', 1994, 'F', 245), +(153304, 'Traci', 1994, 'F', 245), +(153305, 'Jessi', 1994, 'F', 244), +(153306, 'Judy', 1994, 'F', 244), +(153307, 'Maira', 1994, 'F', 244), +(153308, 'Sherry', 1994, 'F', 244), +(153309, 'Nataly', 1994, 'F', 243), +(153310, 'Myra', 1994, 'F', 242), +(153311, 'Olga', 1994, 'F', 242), +(153312, 'Adrian', 1994, 'F', 241), +(153313, 'Billie', 1994, 'F', 240), +(153314, 'Constance', 1994, 'F', 240), +(153315, 'Kalie', 1994, 'F', 240), +(153316, 'Alycia', 1994, 'F', 239), +(153317, 'Martina', 1994, 'F', 239), +(153318, 'Marlena', 1994, 'F', 238), +(153319, 'Catalina', 1994, 'F', 237), +(153320, 'Christin', 1994, 'F', 237), +(153321, 'Lexi', 1994, 'F', 237), +(153322, 'Britany', 1994, 'F', 236), +(153323, 'Griselda', 1994, 'F', 236), +(153324, 'Ivette', 1994, 'F', 236), +(153325, 'Marisela', 1994, 'F', 236), +(153326, 'Kaycee', 1994, 'F', 235), +(153327, 'Kayley', 1994, 'F', 235), +(153328, 'Scarlett', 1994, 'F', 235), +(153329, 'Kaci', 1994, 'F', 234), +(153330, 'Alessandra', 1994, 'F', 232), +(153331, 'Brea', 1994, 'F', 231), +(153332, 'Breann', 1994, 'F', 231), +(153333, 'Cecelia', 1994, 'F', 231), +(153334, 'Jazmyn', 1994, 'F', 231), +(153335, 'Irma', 1994, 'F', 230), +(153336, 'Jami', 1994, 'F', 229), +(153337, 'Kia', 1994, 'F', 229), +(153338, 'Alysa', 1994, 'F', 228), +(153339, 'Austin', 1994, 'F', 228), +(153340, 'Chantal', 1994, 'F', 228), +(153341, 'Asha', 1994, 'F', 227), +(153342, 'Elsa', 1994, 'F', 227), +(153343, 'Keely', 1994, 'F', 227), +(153344, 'Tracey', 1994, 'F', 227), +(153345, 'Kaylynn', 1994, 'F', 226), +(153346, 'Pauline', 1994, 'F', 226), +(153347, 'Ashanti', 1994, 'F', 225), +(153348, 'Corey', 1994, 'F', 225), +(153349, 'Kenzie', 1994, 'F', 225), +(153350, 'Beatrice', 1994, 'F', 224), +(153351, 'Bridgett', 1994, 'F', 224), +(153352, 'Layla', 1994, 'F', 224), +(153353, 'Noel', 1994, 'F', 224), +(153354, 'Alecia', 1994, 'F', 223), +(153355, 'Dina', 1994, 'F', 223), +(153356, 'Kimberlee', 1994, 'F', 223), +(153357, 'Iliana', 1994, 'F', 222), +(153358, 'Leandra', 1994, 'F', 222), +(153359, 'Sarina', 1994, 'F', 222), +(153360, 'Janay', 1994, 'F', 221), +(153361, 'Latoya', 1994, 'F', 220), +(153362, 'Marlee', 1994, 'F', 219), +(153363, 'Ashely', 1994, 'F', 217), +(153364, 'Bailee', 1994, 'F', 217), +(153365, 'Melisa', 1994, 'F', 217), +(153366, 'Aja', 1994, 'F', 216), +(153367, 'Anjelica', 1994, 'F', 216), +(153368, 'Hana', 1994, 'F', 216), +(153369, 'Katlynn', 1994, 'F', 216), +(153370, 'Kayli', 1994, 'F', 216), +(153371, 'Sydnee', 1994, 'F', 216), +(153372, 'Yaritza', 1994, 'F', 216), +(153373, 'Haylie', 1994, 'F', 215), +(153374, 'Nikole', 1994, 'F', 215), +(153375, 'Nohely', 1994, 'F', 215), +(153376, 'Eboni', 1994, 'F', 214), +(153377, 'Laken', 1994, 'F', 214), +(153378, 'Marley', 1994, 'F', 214), +(153379, 'Kimberley', 1994, 'F', 213), +(153380, 'Lorraine', 1994, 'F', 213), +(153381, 'Mai', 1994, 'F', 213), +(153382, 'Makenna', 1994, 'F', 212), +(153383, 'Emilia', 1994, 'F', 211), +(153384, 'Jamila', 1994, 'F', 211), +(153385, 'Tiffanie', 1994, 'F', 211), +(153386, 'Damaris', 1994, 'F', 210), +(153387, 'Fiona', 1994, 'F', 210), +(153388, 'Princess', 1994, 'F', 210), +(153389, 'Rylee', 1994, 'F', 210), +(153390, 'Macie', 1994, 'F', 209), +(153391, 'Marcella', 1994, 'F', 209), +(153392, 'Vanesa', 1994, 'F', 209), +(153393, 'Dylan', 1994, 'F', 207), +(153394, 'Nikita', 1994, 'F', 207), +(153395, 'Mariam', 1994, 'F', 206), +(153396, 'Maxine', 1994, 'F', 206), +(153397, 'Alena', 1994, 'F', 205), +(153398, 'Chaya', 1994, 'F', 205), +(153399, 'Jasmyn', 1994, 'F', 205), +(153400, 'Joana', 1994, 'F', 205), +(153401, 'Susanna', 1994, 'F', 205), +(153402, 'Tyesha', 1994, 'F', 205), +(153403, 'Carson', 1994, 'F', 204), +(153404, 'Lyndsay', 1994, 'F', 204), +(153405, 'Viridiana', 1994, 'F', 204), +(153406, 'Aubree', 1994, 'F', 203), +(153407, 'Eunice', 1994, 'F', 202), +(153408, 'Giovanna', 1994, 'F', 202), +(153409, 'Mattie', 1994, 'F', 202), +(153410, 'Monika', 1994, 'F', 202), +(153411, 'Patience', 1994, 'F', 202), +(153412, 'Katheryn', 1994, 'F', 200), +(153413, 'Lourdes', 1994, 'F', 200), +(153414, 'Tiarra', 1994, 'F', 200), +(153415, 'Yasmeen', 1994, 'F', 200), +(153416, 'Aleah', 1994, 'F', 199), +(153417, 'Chantelle', 1994, 'F', 199), +(153418, 'Kristal', 1994, 'F', 199), +(153419, 'Ricki', 1994, 'F', 198), +(153420, 'Cydney', 1994, 'F', 197), +(153421, 'Geneva', 1994, 'F', 197), +(153422, 'Joann', 1994, 'F', 197), +(153423, 'Lexie', 1994, 'F', 197), +(153424, 'Mariel', 1994, 'F', 197), +(153425, 'Amie', 1994, 'F', 196), +(153426, 'Dominque', 1994, 'F', 196), +(153427, 'Lissette', 1994, 'F', 196), +(153428, 'Tanesha', 1994, 'F', 196), +(153429, 'China', 1994, 'F', 195), +(153430, 'Denisse', 1994, 'F', 195), +(153431, 'Shyann', 1994, 'F', 195), +(153432, 'Valentina', 1994, 'F', 195), +(153433, 'Danyelle', 1994, 'F', 194), +(153434, 'Drew', 1994, 'F', 194), +(153435, 'Jerrica', 1994, 'F', 194), +(153436, 'Laurie', 1994, 'F', 194), +(153437, 'Leilani', 1994, 'F', 194), +(153438, 'Paloma', 1994, 'F', 194), +(153439, 'Janine', 1994, 'F', 193), +(153440, 'Leann', 1994, 'F', 193), +(153441, 'Lizeth', 1994, 'F', 193), +(153442, 'Reina', 1994, 'F', 193), +(153443, 'Rhonda', 1994, 'F', 193), +(153444, 'Blake', 1994, 'F', 192), +(153445, 'Kinsey', 1994, 'F', 192), +(153446, 'Kirstie', 1994, 'F', 192), +(153447, 'Leeann', 1994, 'F', 192), +(153448, 'Valencia', 1994, 'F', 192), +(153449, 'Janell', 1994, 'F', 191), +(153450, 'Lana', 1994, 'F', 191), +(153451, 'Malia', 1994, 'F', 191), +(153452, 'Michael', 1994, 'F', 191), +(153453, 'Porsha', 1994, 'F', 191), +(153454, 'Andria', 1994, 'F', 190), +(153455, 'Caitlynn', 1994, 'F', 189), +(153456, 'Danika', 1994, 'F', 189), +(153457, 'Elyssa', 1994, 'F', 189), +(153458, 'Janel', 1994, 'F', 189), +(153459, 'Jodie', 1994, 'F', 189), +(153460, 'London', 1994, 'F', 189), +(153461, 'Tatum', 1994, 'F', 189), +(153462, 'Tiera', 1994, 'F', 189), +(153463, 'Adilene', 1994, 'F', 188), +(153464, 'Annamarie', 1994, 'F', 188), +(153465, 'Darcy', 1994, 'F', 188), +(153466, 'Jean', 1994, 'F', 188), +(153467, 'Jessenia', 1994, 'F', 188), +(153468, 'Kathrine', 1994, 'F', 188), +(153469, 'Isis', 1994, 'F', 187), +(153470, 'Kallie', 1994, 'F', 187), +(153471, 'Marjorie', 1994, 'F', 187), +(153472, 'Tatianna', 1994, 'F', 187), +(153473, 'Betsy', 1994, 'F', 186), +(153474, 'Eliana', 1994, 'F', 186), +(153475, 'Fallon', 1994, 'F', 186), +(153476, 'Leila', 1994, 'F', 186), +(153477, 'Lidia', 1994, 'F', 186), +(153478, 'Lynette', 1994, 'F', 186), +(153479, 'Meranda', 1994, 'F', 186), +(153480, 'Nakia', 1994, 'F', 186), +(153481, 'Selene', 1994, 'F', 186), +(153482, 'Symone', 1994, 'F', 186), +(153483, 'Ajee', 1994, 'F', 185), +(153484, 'Alia', 1994, 'F', 185), +(153485, 'Kelcie', 1994, 'F', 185), +(153486, 'Mari', 1994, 'F', 185), +(153487, 'Marianna', 1994, 'F', 185), +(153488, 'Shianne', 1994, 'F', 185), +(153489, 'Bernadette', 1994, 'F', 184), +(153490, 'Ivonne', 1994, 'F', 184), +(153491, 'Lia', 1994, 'F', 184), +(153492, 'Flor', 1994, 'F', 183), +(153493, 'Janna', 1994, 'F', 183), +(153494, 'Liza', 1994, 'F', 183), +(153495, 'Lora', 1994, 'F', 183), +(153496, 'Chastity', 1994, 'F', 182), +(153497, 'Esperanza', 1994, 'F', 182), +(153498, 'Kassie', 1994, 'F', 182), +(153499, 'Sommer', 1994, 'F', 182), +(153500, 'Whitley', 1994, 'F', 182), +(153501, 'Marcela', 1994, 'F', 181), +(153502, 'Marian', 1994, 'F', 181), +(153503, 'Nayeli', 1994, 'F', 181), +(153504, 'Sheena', 1994, 'F', 181), +(153505, 'Brieanna', 1994, 'F', 180), +(153506, 'Coral', 1994, 'F', 180), +(153507, 'Eryn', 1994, 'F', 180), +(153508, 'Xiomara', 1994, 'F', 180), +(153509, 'Annmarie', 1994, 'F', 179), +(153510, 'Infant', 1994, 'F', 179), +(153511, 'Tamera', 1994, 'F', 179), +(153512, 'Kaylan', 1994, 'F', 178), +(153513, 'Yajaira', 1994, 'F', 178), +(153514, 'Cinthia', 1994, 'F', 177), +(153515, 'Luisa', 1994, 'F', 177), +(153516, 'Bree', 1994, 'F', 176), +(153517, 'Breeanna', 1994, 'F', 176), +(153518, 'Juliet', 1994, 'F', 176), +(153519, 'Juliette', 1994, 'F', 176), +(153520, 'Ashli', 1994, 'F', 175), +(153521, 'Corrine', 1994, 'F', 175), +(153522, 'Debbie', 1994, 'F', 175), +(153523, 'Kaelyn', 1994, 'F', 175), +(153524, 'Miracle', 1994, 'F', 175), +(153525, 'Sydnie', 1994, 'F', 175), +(153526, 'Chana', 1994, 'F', 174), +(153527, 'Lakeisha', 1994, 'F', 174), +(153528, 'Lisette', 1994, 'F', 174), +(153529, 'Baylee', 1994, 'F', 173), +(153530, 'Felisha', 1994, 'F', 173), +(153531, 'Regine', 1994, 'F', 173), +(153532, 'Samara', 1994, 'F', 173), +(153533, 'Danae', 1994, 'F', 172), +(153534, 'Delia', 1994, 'F', 172), +(153535, 'Joan', 1994, 'F', 172), +(153536, 'Sheridan', 1994, 'F', 172), +(153537, 'Tkeyah', 1994, 'F', 172), +(153538, 'Unique', 1994, 'F', 172), +(153539, 'Cari', 1994, 'F', 171), +(153540, 'Dara', 1994, 'F', 171), +(153541, 'Jerica', 1994, 'F', 171), +(153542, 'Maci', 1994, 'F', 171), +(153543, 'Raina', 1994, 'F', 171), +(153544, 'Anais', 1994, 'F', 170), +(153545, 'Chelsi', 1994, 'F', 170), +(153546, 'Georgina', 1994, 'F', 170), +(153547, 'Reanna', 1994, 'F', 170), +(153548, 'Doris', 1994, 'F', 169), +(153549, 'Maryann', 1994, 'F', 169), +(153550, 'Sonja', 1994, 'F', 169), +(153551, 'Adrianne', 1994, 'F', 168), +(153552, 'Alyssia', 1994, 'F', 168), +(153553, 'Brooklynn', 1994, 'F', 168), +(153554, 'Stefani', 1994, 'F', 168), +(153555, 'Annemarie', 1994, 'F', 167), +(153556, 'Breona', 1994, 'F', 167), +(153557, 'Keyana', 1994, 'F', 167), +(153558, 'Marla', 1994, 'F', 167), +(153559, 'Shanelle', 1994, 'F', 167), +(153560, 'Ansley', 1994, 'F', 166), +(153561, 'Aracely', 1994, 'F', 166), +(153562, 'Chante', 1994, 'F', 166), +(153563, 'Cody', 1994, 'F', 166), +(153564, 'Kalee', 1994, 'F', 166), +(153565, 'Mireya', 1994, 'F', 166), +(153566, 'Roxanna', 1994, 'F', 166), +(153567, 'Santana', 1994, 'F', 166), +(153568, 'Shae', 1994, 'F', 166), +(153569, 'Brittaney', 1994, 'F', 165), +(153570, 'Deidra', 1994, 'F', 165), +(153571, 'Jazmyne', 1994, 'F', 165), +(153572, 'Alexander', 1994, 'F', 164), +(153573, 'Anabel', 1994, 'F', 164), +(153574, 'Cathy', 1994, 'F', 164), +(153575, 'Darien', 1994, 'F', 164), +(153576, 'Estefania', 1994, 'F', 164), +(153577, 'Ivana', 1994, 'F', 164), +(153578, 'Brynn', 1994, 'F', 163), +(153579, 'Dionna', 1994, 'F', 163), +(153580, 'Fernanda', 1994, 'F', 163), +(153581, 'Geena', 1994, 'F', 163), +(153582, 'Shannen', 1994, 'F', 163), +(153583, 'Charmaine', 1994, 'F', 162), +(153584, 'Dora', 1994, 'F', 162), +(153585, 'Gillian', 1994, 'F', 162), +(153586, 'Jasmyne', 1994, 'F', 162), +(153587, 'Jolene', 1994, 'F', 162), +(153588, 'Kandace', 1994, 'F', 162), +(153589, 'Lina', 1994, 'F', 162), +(153590, 'Mina', 1994, 'F', 162), +(153591, 'Nicolle', 1994, 'F', 162), +(153592, 'Shelley', 1994, 'F', 162), +(153593, 'Sydni', 1994, 'F', 162), +(153594, 'Abbigail', 1994, 'F', 161), +(153595, 'Brandee', 1994, 'F', 161), +(153596, 'Jazzmin', 1994, 'F', 161), +(153597, 'Joslyn', 1994, 'F', 161), +(153598, 'Trista', 1994, 'F', 161), +(153599, 'Brittny', 1994, 'F', 160), +(153600, 'Kim', 1994, 'F', 160), +(153601, 'Krystina', 1994, 'F', 160), +(153602, 'Lesly', 1994, 'F', 160), +(153603, 'Tamika', 1994, 'F', 160), +(153604, 'Unknown', 1994, 'F', 160), +(153605, 'Amani', 1994, 'F', 159), +(153606, 'Brigitte', 1994, 'F', 159), +(153607, 'Quinn', 1994, 'F', 159), +(153608, 'Rosalinda', 1994, 'F', 159), +(153609, 'Violet', 1994, 'F', 159), +(153610, 'Yessica', 1994, 'F', 159), +(153611, 'Demetria', 1994, 'F', 158), +(153612, 'Holli', 1994, 'F', 158), +(153613, 'Jayla', 1994, 'F', 158), +(153614, 'Britni', 1994, 'F', 157), +(153615, 'Kandice', 1994, 'F', 157), +(153616, 'Kayleen', 1994, 'F', 157), +(153617, 'Krysten', 1994, 'F', 157), +(153618, 'Shay', 1994, 'F', 157), +(153619, 'Chelsy', 1994, 'F', 156), +(153620, 'Chrystal', 1994, 'F', 156), +(153621, 'Eleni', 1994, 'F', 156), +(153622, 'Jacey', 1994, 'F', 156), +(153623, 'Keara', 1994, 'F', 156), +(153624, 'Marianne', 1994, 'F', 156), +(153625, 'Deana', 1994, 'F', 155), +(153626, 'Jaimee', 1994, 'F', 155), +(153627, 'Kyle', 1994, 'F', 155), +(153628, 'Merissa', 1994, 'F', 155), +(153629, 'Amberly', 1994, 'F', 154), +(153630, 'Aubrie', 1994, 'F', 154), +(153631, 'Cassondra', 1994, 'F', 154), +(153632, 'Corrina', 1994, 'F', 154), +(153633, 'Danisha', 1994, 'F', 154), +(153634, 'Evelin', 1994, 'F', 154), +(153635, 'Keila', 1994, 'F', 154), +(153636, 'Linsey', 1994, 'F', 154), +(153637, 'Amira', 1994, 'F', 153), +(153638, 'Hayden', 1994, 'F', 153), +(153639, 'Jesenia', 1994, 'F', 153), +(153640, 'Kelsy', 1994, 'F', 153), +(153641, 'Keyanna', 1994, 'F', 153), +(153642, 'Myesha', 1994, 'F', 153), +(153643, 'Anika', 1994, 'F', 152), +(153644, 'Halley', 1994, 'F', 152), +(153645, 'Keanna', 1994, 'F', 152), +(153646, 'Kimber', 1994, 'F', 152), +(153647, 'Chandra', 1994, 'F', 151), +(153648, 'Ciarra', 1994, 'F', 151), +(153649, 'Jamesha', 1994, 'F', 151), +(153650, 'Laci', 1994, 'F', 151), +(153651, 'Richelle', 1994, 'F', 151), +(153652, 'Rosalie', 1994, 'F', 151), +(153653, 'Shante', 1994, 'F', 151), +(153654, 'Celena', 1994, 'F', 150), +(153655, 'Darrian', 1994, 'F', 150), +(153656, 'Deandra', 1994, 'F', 150), +(153657, 'Harmony', 1994, 'F', 150), +(153658, 'Jeannette', 1994, 'F', 150), +(153659, 'Johnna', 1994, 'F', 150), +(153660, 'Tory', 1994, 'F', 150), +(153661, 'Ada', 1994, 'F', 149), +(153662, 'Alondra', 1994, 'F', 149), +(153663, 'Elana', 1994, 'F', 149), +(153664, 'Elsie', 1994, 'F', 149), +(153665, 'Kanisha', 1994, 'F', 149), +(153666, 'Rayna', 1994, 'F', 149), +(153667, 'Reba', 1994, 'F', 149), +(153668, 'Alexi', 1994, 'F', 148), +(153669, 'Chanelle', 1994, 'F', 148), +(153670, 'Deidre', 1994, 'F', 148), +(153671, 'Hilda', 1994, 'F', 148), +(153672, 'Kaylah', 1994, 'F', 148), +(153673, 'Magaly', 1994, 'F', 148), +(153674, 'Marlen', 1994, 'F', 148), +(153675, 'Presley', 1994, 'F', 148), +(153676, 'Cathryn', 1994, 'F', 147), +(153677, 'Krystle', 1994, 'F', 147), +(153678, 'Lynsey', 1994, 'F', 147), +(153679, 'Niki', 1994, 'F', 147), +(153680, 'Rubi', 1994, 'F', 147), +(153681, 'Brittnee', 1994, 'F', 146), +(153682, 'Candy', 1994, 'F', 146), +(153683, 'Edna', 1994, 'F', 146), +(153684, 'Emely', 1994, 'F', 146), +(153685, 'Hazel', 1994, 'F', 146), +(153686, 'Khadija', 1994, 'F', 146), +(153687, 'Anisa', 1994, 'F', 145), +(153688, 'Hilary', 1994, 'F', 145), +(153689, 'Jewel', 1994, 'F', 145), +(153690, 'Malika', 1994, 'F', 145), +(153691, 'Quiana', 1994, 'F', 145), +(153692, 'Salena', 1994, 'F', 145), +(153693, 'Ashtyn', 1994, 'F', 144), +(153694, 'Harlie', 1994, 'F', 144), +(153695, 'Jesica', 1994, 'F', 144), +(153696, 'Kacy', 1994, 'F', 144), +(153697, 'Kaylene', 1994, 'F', 144), +(153698, 'Michala', 1994, 'F', 144), +(153699, 'Rhianna', 1994, 'F', 144), +(153700, 'Vicky', 1994, 'F', 144), +(153701, 'Annika', 1994, 'F', 143), +(153702, 'Brigette', 1994, 'F', 143), +(153703, 'Cherish', 1994, 'F', 143), +(153704, 'Lilian', 1994, 'F', 143), +(153705, 'Shantell', 1994, 'F', 143), +(153706, 'Sienna', 1994, 'F', 143), +(153707, 'Amalia', 1994, 'F', 142), +(153708, 'Colby', 1994, 'F', 142), +(153709, 'Shyla', 1994, 'F', 142), +(153710, 'Eve', 1994, 'F', 141), +(153711, 'Jazzmine', 1994, 'F', 141), +(153712, 'Kyleigh', 1994, 'F', 141), +(153713, 'Trina', 1994, 'F', 141), +(153714, 'Amaris', 1994, 'F', 140), +(153715, 'Angeline', 1994, 'F', 140), +(153716, 'Keyona', 1994, 'F', 140), +(153717, 'Arely', 1994, 'F', 139), +(153718, 'Courtnie', 1994, 'F', 139), +(153719, 'Kenisha', 1994, 'F', 139), +(153720, 'Lexis', 1994, 'F', 139), +(153721, 'Lila', 1994, 'F', 139), +(153722, 'Rosario', 1994, 'F', 139), +(153723, 'Spencer', 1994, 'F', 139), +(153724, 'Bryce', 1994, 'F', 138), +(153725, 'Marquita', 1994, 'F', 138), +(153726, 'Torri', 1994, 'F', 138), +(153727, 'Alivia', 1994, 'F', 137), +(153728, 'Becky', 1994, 'F', 137), +(153729, 'Bernice', 1994, 'F', 137), +(153730, 'Glenda', 1994, 'F', 137), +(153731, 'Keana', 1994, 'F', 137), +(153732, 'Kierstin', 1994, 'F', 137), +(153733, 'Quanisha', 1994, 'F', 137), +(153734, 'Siera', 1994, 'F', 137), +(153735, 'Tayla', 1994, 'F', 137), +(153736, 'Zoey', 1994, 'F', 137), +(153737, 'Anyssa', 1994, 'F', 136), +(153738, 'Kati', 1994, 'F', 136), +(153739, 'Kelcey', 1994, 'F', 136), +(153740, 'Kristan', 1994, 'F', 136), +(153741, 'Nichelle', 1994, 'F', 136), +(153742, 'Annalise', 1994, 'F', 135), +(153743, 'Lillie', 1994, 'F', 135), +(153744, 'Lilly', 1994, 'F', 135), +(153745, 'Loretta', 1994, 'F', 135), +(153746, 'Aundrea', 1994, 'F', 134), +(153747, 'Catrina', 1994, 'F', 134), +(153748, 'Colette', 1994, 'F', 134), +(153749, 'Francis', 1994, 'F', 134), +(153750, 'Frankie', 1994, 'F', 134), +(153751, 'Halee', 1994, 'F', 134), +(153752, 'Kadejah', 1994, 'F', 134), +(153753, 'Maia', 1994, 'F', 134), +(153754, 'Marguerite', 1994, 'F', 134), +(153755, 'Camila', 1994, 'F', 133), +(153756, 'Christal', 1994, 'F', 133), +(153757, 'Delilah', 1994, 'F', 133), +(153758, 'Haven', 1994, 'F', 133), +(153759, 'Keira', 1994, 'F', 133), +(153760, 'Renae', 1994, 'F', 133), +(153761, 'Tera', 1994, 'F', 133), +(153762, 'Tierney', 1994, 'F', 133), +(153763, 'Abagail', 1994, 'F', 132), +(153764, 'Alix', 1994, 'F', 132), +(153765, 'Anya', 1994, 'F', 132), +(153766, 'Camilla', 1994, 'F', 132), +(153767, 'Destany', 1994, 'F', 132), +(153768, 'Latrice', 1994, 'F', 132), +(153769, 'Lilia', 1994, 'F', 132), +(153770, 'Paxton', 1994, 'F', 132), +(153771, 'Anisha', 1994, 'F', 131), +(153772, 'Ashlea', 1994, 'F', 131), +(153773, 'Connor', 1994, 'F', 131), +(153774, 'Johana', 1994, 'F', 131), +(153775, 'Kami', 1994, 'F', 131), +(153776, 'Kaylen', 1994, 'F', 131), +(153777, 'Lucille', 1994, 'F', 131), +(153778, 'Marta', 1994, 'F', 131), +(153779, 'Stacia', 1994, 'F', 131), +(153780, 'Stella', 1994, 'F', 131), +(153781, 'Corinna', 1994, 'F', 130), +(153782, 'Daniel', 1994, 'F', 130), +(153783, 'Estefany', 1994, 'F', 130), +(153784, 'Harlee', 1994, 'F', 130), +(153785, 'Isamar', 1994, 'F', 130), +(153786, 'Leigha', 1994, 'F', 130), +(153787, 'Ryann', 1994, 'F', 130), +(153788, 'Serina', 1994, 'F', 130), +(153789, 'Tarah', 1994, 'F', 130), +(153790, 'Addie', 1994, 'F', 129), +(153791, 'Annabelle', 1994, 'F', 129), +(153792, 'Brittnie', 1994, 'F', 129), +(153793, 'Cailin', 1994, 'F', 129), +(153794, 'Danesha', 1994, 'F', 129), +(153795, 'Desire', 1994, 'F', 129), +(153796, 'Kaytlin', 1994, 'F', 129), +(153797, 'Kenna', 1994, 'F', 129), +(153798, 'Krystin', 1994, 'F', 129), +(153799, 'Taylar', 1994, 'F', 129), +(153800, 'Amina', 1994, 'F', 128), +(153801, 'Anahi', 1994, 'F', 128), +(153802, 'Astrid', 1994, 'F', 128), +(153803, 'Destinie', 1994, 'F', 128), +(153804, 'Kasie', 1994, 'F', 128), +(153805, 'Racquel', 1994, 'F', 128), +(153806, 'Susannah', 1994, 'F', 128), +(153807, 'Casie', 1994, 'F', 127), +(153808, 'Dolores', 1994, 'F', 127), +(153809, 'Estefani', 1994, 'F', 127), +(153810, 'Francisca', 1994, 'F', 127), +(153811, 'Jalyn', 1994, 'F', 127), +(153812, 'Margo', 1994, 'F', 127), +(153813, 'Rosemarie', 1994, 'F', 127), +(153814, 'Valarie', 1994, 'F', 127), +(153815, 'Gracie', 1994, 'F', 126), +(153816, 'Iman', 1994, 'F', 126), +(153817, 'Kayle', 1994, 'F', 126), +(153818, 'Elle', 1994, 'F', 125), +(153819, 'Kelci', 1994, 'F', 125), +(153820, 'Natalee', 1994, 'F', 125), +(153821, 'Shanell', 1994, 'F', 125), +(153822, 'Acacia', 1994, 'F', 124), +(153823, 'Bertha', 1994, 'F', 124), +(153824, 'Cherokee', 1994, 'F', 124), +(153825, 'Jayde', 1994, 'F', 124), +(153826, 'Keyonna', 1994, 'F', 124), +(153827, 'Lee', 1994, 'F', 124), +(153828, 'Ramona', 1994, 'F', 124), +(153829, 'Shawnee', 1994, 'F', 124), +(153830, 'Shaylee', 1994, 'F', 124), +(153831, 'Suzanna', 1994, 'F', 124), +(153832, 'Aime', 1994, 'F', 123), +(153833, 'Alexys', 1994, 'F', 123), +(153834, 'Hadley', 1994, 'F', 123), +(153835, 'Marcia', 1994, 'F', 123), +(153836, 'Marion', 1994, 'F', 123), +(153837, 'Michaella', 1994, 'F', 123), +(153838, 'Pearl', 1994, 'F', 123), +(153839, 'Raegan', 1994, 'F', 123), +(153840, 'Ileana', 1994, 'F', 122), +(153841, 'Jourdan', 1994, 'F', 122), +(153842, 'Kalli', 1994, 'F', 122), +(153843, 'Keosha', 1994, 'F', 122), +(153844, 'Winter', 1994, 'F', 122), +(153845, 'Alyse', 1994, 'F', 121), +(153846, 'Angelia', 1994, 'F', 121), +(153847, 'Elexis', 1994, 'F', 121), +(153848, 'Estrella', 1994, 'F', 121), +(153849, 'Josefina', 1994, 'F', 121), +(153850, 'Karin', 1994, 'F', 121), +(153851, 'Linnea', 1994, 'F', 121), +(153852, 'Madisen', 1994, 'F', 121), +(153853, 'Isela', 1994, 'F', 120), +(153854, 'Jayne', 1994, 'F', 120), +(153855, 'Rylie', 1994, 'F', 120), +(153856, 'Samatha', 1994, 'F', 120), +(153857, 'Becca', 1994, 'F', 119), +(153858, 'Briona', 1994, 'F', 119), +(153859, 'Codi', 1994, 'F', 119), +(153860, 'Jayna', 1994, 'F', 119), +(153861, 'Malinda', 1994, 'F', 119), +(153862, 'Mandi', 1994, 'F', 119), +(153863, 'Rene', 1994, 'F', 119), +(153864, 'Roberta', 1994, 'F', 119), +(153865, 'Shanika', 1994, 'F', 119), +(153866, 'America', 1994, 'F', 118), +(153867, 'Dani', 1994, 'F', 118), +(153868, 'Kimberlyn', 1994, 'F', 118), +(153869, 'Micayla', 1994, 'F', 118), +(153870, 'Teri', 1994, 'F', 118), +(153871, 'Cecily', 1994, 'F', 117), +(153872, 'Franchesca', 1994, 'F', 116), +(153873, 'Ginger', 1994, 'F', 116), +(153874, 'Ilana', 1994, 'F', 116), +(153875, 'Jody', 1994, 'F', 116), +(153876, 'Priya', 1994, 'F', 116), +(153877, 'Amara', 1994, 'F', 115), +(153878, 'Areli', 1994, 'F', 115), +(153879, 'Cathleen', 1994, 'F', 115), +(153880, 'Dena', 1994, 'F', 115), +(153881, 'Emmalee', 1994, 'F', 115), +(153882, 'Greta', 1994, 'F', 115), +(153883, 'Khadejah', 1994, 'F', 115), +(153884, 'Kirby', 1994, 'F', 115), +(153885, 'Makala', 1994, 'F', 115), +(153886, 'Farrah', 1994, 'F', 114), +(153887, 'Jackeline', 1994, 'F', 114), +(153888, 'Kendyl', 1994, 'F', 114), +(153889, 'Magali', 1994, 'F', 114), +(153890, 'Pricilla', 1994, 'F', 114), +(153891, 'Tasia', 1994, 'F', 114), +(153892, 'Annabel', 1994, 'F', 113), +(153893, 'Ashtin', 1994, 'F', 113), +(153894, 'Belen', 1994, 'F', 113), +(153895, 'Grecia', 1994, 'F', 113), +(153896, 'Jessa', 1994, 'F', 113), +(153897, 'June', 1994, 'F', 113), +(153898, 'Kalynn', 1994, 'F', 113), +(153899, 'Mallorie', 1994, 'F', 113), +(153900, 'Siobhan', 1994, 'F', 113), +(153901, 'Tawny', 1994, 'F', 113), +(153902, 'Annelise', 1994, 'F', 112), +(153903, 'Ayesha', 1994, 'F', 112), +(153904, 'Daisha', 1994, 'F', 112), +(153905, 'Deirdre', 1994, 'F', 112), +(153906, 'Jeannie', 1994, 'F', 112), +(153907, 'Kiarra', 1994, 'F', 112), +(153908, 'Magen', 1994, 'F', 112), +(153909, 'Nyasia', 1994, 'F', 112), +(153910, 'Annalisa', 1994, 'F', 111), +(153911, 'Cali', 1994, 'F', 111), +(153912, 'Charlie', 1994, 'F', 111), +(153913, 'Louise', 1994, 'F', 111), +(153914, 'Mercedez', 1994, 'F', 111), +(153915, 'Serenity', 1994, 'F', 111), +(153916, 'Shameka', 1994, 'F', 111), +(153917, 'Taelor', 1994, 'F', 111), +(153918, 'Tonisha', 1994, 'F', 111), +(153919, 'Torrie', 1994, 'F', 111), +(153920, 'Ivory', 1994, 'F', 110), +(153921, 'Jalissa', 1994, 'F', 110), +(153922, 'Jorden', 1994, 'F', 110), +(153923, 'Kady', 1994, 'F', 110), +(153924, 'Lashawn', 1994, 'F', 110), +(153925, 'Libby', 1994, 'F', 110), +(153926, 'Lynda', 1994, 'F', 110), +(153927, 'Monet', 1994, 'F', 110), +(153928, 'Rosie', 1994, 'F', 110), +(153929, 'Sky', 1994, 'F', 110); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(153930, 'Susie', 1994, 'F', 110), +(153931, 'Abigayle', 1994, 'F', 109), +(153932, 'Allysa', 1994, 'F', 109), +(153933, 'Cady', 1994, 'F', 109), +(153934, 'Caley', 1994, 'F', 109), +(153935, 'Christi', 1994, 'F', 109), +(153936, 'Daria', 1994, 'F', 109), +(153937, 'Jacquelynn', 1994, 'F', 109), +(153938, 'Jordin', 1994, 'F', 109), +(153939, 'Lashonda', 1994, 'F', 109), +(153940, 'Lupita', 1994, 'F', 109), +(153941, 'Madelaine', 1994, 'F', 109), +(153942, 'Shakia', 1994, 'F', 109), +(153943, 'Brett', 1994, 'F', 108), +(153944, 'Cory', 1994, 'F', 108), +(153945, 'Dannielle', 1994, 'F', 108), +(153946, 'Jeanne', 1994, 'F', 108), +(153947, 'Joi', 1994, 'F', 108), +(153948, 'Kadesha', 1994, 'F', 108), +(153949, 'Kaytlyn', 1994, 'F', 108), +(153950, 'Laquisha', 1994, 'F', 108), +(153951, 'Leeza', 1994, 'F', 108), +(153952, 'Shari', 1994, 'F', 108), +(153953, 'Adela', 1994, 'F', 107), +(153954, 'Aida', 1994, 'F', 107), +(153955, 'Aliya', 1994, 'F', 107), +(153956, 'Breeana', 1994, 'F', 107), +(153957, 'Corrie', 1994, 'F', 107), +(153958, 'Dianne', 1994, 'F', 107), +(153959, 'Maryam', 1994, 'F', 107), +(153960, 'Nelly', 1994, 'F', 107), +(153961, 'Therese', 1994, 'F', 107), +(153962, 'Torie', 1994, 'F', 107), +(153963, 'Deonna', 1994, 'F', 106), +(153964, 'Female', 1994, 'F', 106), +(153965, 'Jaden', 1994, 'F', 106), +(153966, 'Mika', 1994, 'F', 106), +(153967, 'Portia', 1994, 'F', 106), +(153968, 'Rebecka', 1994, 'F', 106), +(153969, 'Rivka', 1994, 'F', 106), +(153970, 'Savana', 1994, 'F', 106), +(153971, 'Shawn', 1994, 'F', 106), +(153972, 'Aaron', 1994, 'F', 105), +(153973, 'Aria', 1994, 'F', 105), +(153974, 'Ariella', 1994, 'F', 105), +(153975, 'Francine', 1994, 'F', 105), +(153976, 'Ida', 1994, 'F', 105), +(153977, 'Kenyatta', 1994, 'F', 105), +(153978, 'Maricruz', 1994, 'F', 105), +(153979, 'Mickayla', 1994, 'F', 105), +(153980, 'Rae', 1994, 'F', 105), +(153981, 'Shaquana', 1994, 'F', 105), +(153982, 'Sunny', 1994, 'F', 105), +(153983, 'Jocelyne', 1994, 'F', 104), +(153984, 'Karyn', 1994, 'F', 104), +(153985, 'Latia', 1994, 'F', 104), +(153986, 'Stephani', 1994, 'F', 104), +(153987, 'Ami', 1994, 'F', 103), +(153988, 'Anastacia', 1994, 'F', 103), +(153989, 'Christopher', 1994, 'F', 103), +(153990, 'Daniele', 1994, 'F', 103), +(153991, 'Elvia', 1994, 'F', 103), +(153992, 'Ilse', 1994, 'F', 103), +(153993, 'Jovanna', 1994, 'F', 103), +(153994, 'Larisa', 1994, 'F', 103), +(153995, 'Lashay', 1994, 'F', 103), +(153996, 'Marielle', 1994, 'F', 103), +(153997, 'Mya', 1994, 'F', 103), +(153998, 'Aliza', 1994, 'F', 102), +(153999, 'Amairani', 1994, 'F', 102), +(154000, 'Chassidy', 1994, 'F', 102), +(154001, 'Chyna', 1994, 'F', 102), +(154002, 'Felecia', 1994, 'F', 102), +(154003, 'Felicity', 1994, 'F', 102), +(154004, 'Geraldine', 1994, 'F', 102), +(154005, 'Gisela', 1994, 'F', 102), +(154006, 'Jeana', 1994, 'F', 102), +(154007, 'Keona', 1994, 'F', 102), +(154008, 'Maeve', 1994, 'F', 102), +(154009, 'Mona', 1994, 'F', 102), +(154010, 'Rena', 1994, 'F', 102), +(154011, 'Sabina', 1994, 'F', 102), +(154012, 'Samira', 1994, 'F', 102), +(154013, 'Sammantha', 1994, 'F', 102), +(154014, 'Shavon', 1994, 'F', 102), +(154015, 'Starr', 1994, 'F', 102), +(154016, 'Azucena', 1994, 'F', 101), +(154017, 'Jacquelin', 1994, 'F', 101), +(154018, 'Kanesha', 1994, 'F', 101), +(154019, 'Marimar', 1994, 'F', 101), +(154020, 'Shaniece', 1994, 'F', 101), +(154021, 'Tamra', 1994, 'F', 101), +(154022, 'Bethanie', 1994, 'F', 100), +(154023, 'Brigid', 1994, 'F', 100), +(154024, 'Cherie', 1994, 'F', 100), +(154025, 'Crysta', 1994, 'F', 100), +(154026, 'Jeanna', 1994, 'F', 100), +(154027, 'Jeniffer', 1994, 'F', 100), +(154028, 'Karolina', 1994, 'F', 100), +(154029, 'Kelsee', 1994, 'F', 100), +(154030, 'Pooja', 1994, 'F', 100), +(154031, 'Stormie', 1994, 'F', 100), +(154032, 'Tisha', 1994, 'F', 100), +(154033, 'Tyanna', 1994, 'F', 100), +(154034, 'Yesica', 1994, 'F', 100), +(154035, 'Michael', 1994, 'M', 44465), +(154036, 'Christopher', 1994, 'M', 34799), +(154037, 'Matthew', 1994, 'M', 33645), +(154038, 'Joshua', 1994, 'M', 31367), +(154039, 'Tyler', 1994, 'M', 30477), +(154040, 'Brandon', 1994, 'M', 29487), +(154041, 'Jacob', 1994, 'M', 29407), +(154042, 'Daniel', 1994, 'M', 28049), +(154043, 'Nicholas', 1994, 'M', 27761), +(154044, 'Andrew', 1994, 'M', 26004), +(154045, 'Joseph', 1994, 'M', 25723), +(154046, 'Zachary', 1994, 'M', 25132), +(154047, 'David', 1994, 'M', 24858), +(154048, 'James', 1994, 'M', 24764), +(154049, 'John', 1994, 'M', 24173), +(154050, 'Ryan', 1994, 'M', 24052), +(154051, 'Austin', 1994, 'M', 23192), +(154052, 'Anthony', 1994, 'M', 21598), +(154053, 'William', 1994, 'M', 21486), +(154054, 'Justin', 1994, 'M', 20930), +(154055, 'Robert', 1994, 'M', 20555), +(154056, 'Alexander', 1994, 'M', 20096), +(154057, 'Jonathan', 1994, 'M', 19060), +(154058, 'Kyle', 1994, 'M', 18394), +(154059, 'Cody', 1994, 'M', 17589), +(154060, 'Kevin', 1994, 'M', 17305), +(154061, 'Thomas', 1994, 'M', 14903), +(154062, 'Aaron', 1994, 'M', 14379), +(154063, 'Jordan', 1994, 'M', 14161), +(154064, 'Eric', 1994, 'M', 13309), +(154065, 'Benjamin', 1994, 'M', 12784), +(154066, 'Dylan', 1994, 'M', 12528), +(154067, 'Samuel', 1994, 'M', 12136), +(154068, 'Steven', 1994, 'M', 12087), +(154069, 'Christian', 1994, 'M', 11985), +(154070, 'Jose', 1994, 'M', 11722), +(154071, 'Brian', 1994, 'M', 11643), +(154072, 'Adam', 1994, 'M', 11016), +(154073, 'Timothy', 1994, 'M', 10767), +(154074, 'Nathan', 1994, 'M', 10382), +(154075, 'Richard', 1994, 'M', 9513), +(154076, 'Patrick', 1994, 'M', 9331), +(154077, 'Charles', 1994, 'M', 9015), +(154078, 'Sean', 1994, 'M', 8835), +(154079, 'Jesse', 1994, 'M', 8680), +(154080, 'Jason', 1994, 'M', 8547), +(154081, 'Jeremy', 1994, 'M', 8227), +(154082, 'Mark', 1994, 'M', 7485), +(154083, 'Stephen', 1994, 'M', 7477), +(154084, 'Alex', 1994, 'M', 7239), +(154085, 'Juan', 1994, 'M', 7204), +(154086, 'Cameron', 1994, 'M', 6835), +(154087, 'Travis', 1994, 'M', 6800), +(154088, 'Taylor', 1994, 'M', 6624), +(154089, 'Jeffrey', 1994, 'M', 6526), +(154090, 'Dustin', 1994, 'M', 6460), +(154091, 'Luis', 1994, 'M', 6361), +(154092, 'Trevor', 1994, 'M', 6359), +(154093, 'Connor', 1994, 'M', 6315), +(154094, 'Caleb', 1994, 'M', 6158), +(154095, 'Devin', 1994, 'M', 6064), +(154096, 'Evan', 1994, 'M', 5891), +(154097, 'Jared', 1994, 'M', 5874), +(154098, 'Paul', 1994, 'M', 5795), +(154099, 'Kenneth', 1994, 'M', 5676), +(154100, 'Bryan', 1994, 'M', 5600), +(154101, 'Hunter', 1994, 'M', 5584), +(154102, 'Gabriel', 1994, 'M', 5535), +(154103, 'Dakota', 1994, 'M', 5533), +(154104, 'Logan', 1994, 'M', 5452), +(154105, 'Mitchell', 1994, 'M', 5371), +(154106, 'Carlos', 1994, 'M', 5324), +(154107, 'Corey', 1994, 'M', 5279), +(154108, 'Ian', 1994, 'M', 5264), +(154109, 'Marcus', 1994, 'M', 5256), +(154110, 'Gregory', 1994, 'M', 5136), +(154111, 'Derek', 1994, 'M', 5082), +(154112, 'Nathaniel', 1994, 'M', 5028), +(154113, 'Scott', 1994, 'M', 4916), +(154114, 'Jesus', 1994, 'M', 4914), +(154115, 'Blake', 1994, 'M', 4876), +(154116, 'Garrett', 1994, 'M', 4758), +(154117, 'Bradley', 1994, 'M', 4674), +(154118, 'Edward', 1994, 'M', 4523), +(154119, 'Dalton', 1994, 'M', 4244), +(154120, 'Shawn', 1994, 'M', 4243), +(154121, 'Peter', 1994, 'M', 4221), +(154122, 'Antonio', 1994, 'M', 4174), +(154123, 'Ethan', 1994, 'M', 4165), +(154124, 'Seth', 1994, 'M', 4133), +(154125, 'Luke', 1994, 'M', 4094), +(154126, 'Shane', 1994, 'M', 4083), +(154127, 'Victor', 1994, 'M', 4053), +(154128, 'Miguel', 1994, 'M', 4034), +(154129, 'Lucas', 1994, 'M', 4010), +(154130, 'Tanner', 1994, 'M', 3922), +(154131, 'Adrian', 1994, 'M', 3813), +(154132, 'Spencer', 1994, 'M', 3811), +(154133, 'Erik', 1994, 'M', 3746), +(154134, 'Vincent', 1994, 'M', 3602), +(154135, 'Dillon', 1994, 'M', 3532), +(154136, 'Cory', 1994, 'M', 3528), +(154137, 'Isaac', 1994, 'M', 3491), +(154138, 'Angel', 1994, 'M', 3476), +(154139, 'Alejandro', 1994, 'M', 3466), +(154140, 'Jake', 1994, 'M', 3465), +(154141, 'Brett', 1994, 'M', 3434), +(154142, 'Joel', 1994, 'M', 3366), +(154143, 'Alec', 1994, 'M', 3320), +(154144, 'George', 1994, 'M', 3318), +(154145, 'Cole', 1994, 'M', 3302), +(154146, 'Jorge', 1994, 'M', 3292), +(154147, 'Eduardo', 1994, 'M', 3276), +(154148, 'Chase', 1994, 'M', 3226), +(154149, 'Raymond', 1994, 'M', 3137), +(154150, 'Casey', 1994, 'M', 3046), +(154151, 'Devon', 1994, 'M', 3033), +(154152, 'Wesley', 1994, 'M', 3031), +(154153, 'Ricardo', 1994, 'M', 2973), +(154154, 'Francisco', 1994, 'M', 2891), +(154155, 'Colton', 1994, 'M', 2852), +(154156, 'Oscar', 1994, 'M', 2842), +(154157, 'Troy', 1994, 'M', 2842), +(154158, 'Colin', 1994, 'M', 2815), +(154159, 'Mason', 1994, 'M', 2803), +(154160, 'Keith', 1994, 'M', 2783), +(154161, 'Jack', 1994, 'M', 2776), +(154162, 'Dominic', 1994, 'M', 2769), +(154163, 'Chad', 1994, 'M', 2730), +(154164, 'Brendan', 1994, 'M', 2729), +(154165, 'Phillip', 1994, 'M', 2675), +(154166, 'Donald', 1994, 'M', 2653), +(154167, 'Elijah', 1994, 'M', 2620), +(154168, 'Johnathan', 1994, 'M', 2611), +(154169, 'Martin', 1994, 'M', 2593), +(154170, 'Derrick', 1994, 'M', 2573), +(154171, 'Ronald', 1994, 'M', 2563), +(154172, 'Cristian', 1994, 'M', 2542), +(154173, 'Xavier', 1994, 'M', 2528), +(154174, 'Julian', 1994, 'M', 2500), +(154175, 'Frank', 1994, 'M', 2477), +(154176, 'Mario', 1994, 'M', 2466), +(154177, 'Manuel', 1994, 'M', 2465), +(154178, 'Alan', 1994, 'M', 2433), +(154179, 'Omar', 1994, 'M', 2418), +(154180, 'Henry', 1994, 'M', 2414), +(154181, 'Edgar', 1994, 'M', 2393), +(154182, 'Andre', 1994, 'M', 2379), +(154183, 'Clayton', 1994, 'M', 2369), +(154184, 'Bryce', 1994, 'M', 2342), +(154185, 'Grant', 1994, 'M', 2279), +(154186, 'Collin', 1994, 'M', 2277), +(154187, 'Javier', 1994, 'M', 2269), +(154188, 'Jonathon', 1994, 'M', 2197), +(154189, 'Darius', 1994, 'M', 2182), +(154190, 'Douglas', 1994, 'M', 2160), +(154191, 'Levi', 1994, 'M', 2098), +(154192, 'Jeremiah', 1994, 'M', 2080), +(154193, 'Noah', 1994, 'M', 2069), +(154194, 'Sergio', 1994, 'M', 2004), +(154195, 'Hector', 1994, 'M', 1972), +(154196, 'Roberto', 1994, 'M', 1969), +(154197, 'Andres', 1994, 'M', 1964), +(154198, 'Nicolas', 1994, 'M', 1954), +(154199, 'Johnny', 1994, 'M', 1945), +(154200, 'Jackson', 1994, 'M', 1934), +(154201, 'Gary', 1994, 'M', 1898), +(154202, 'Philip', 1994, 'M', 1896), +(154203, 'Isaiah', 1994, 'M', 1869), +(154204, 'Curtis', 1994, 'M', 1867), +(154205, 'Drew', 1994, 'M', 1856), +(154206, 'Ivan', 1994, 'M', 1854), +(154207, 'Brady', 1994, 'M', 1847), +(154208, 'Fernando', 1994, 'M', 1832), +(154209, 'Edwin', 1994, 'M', 1801), +(154210, 'Hayden', 1994, 'M', 1792), +(154211, 'Dennis', 1994, 'M', 1787), +(154212, 'Cesar', 1994, 'M', 1776), +(154213, 'Allen', 1994, 'M', 1747), +(154214, 'Zachery', 1994, 'M', 1729), +(154215, 'Ruben', 1994, 'M', 1722), +(154216, 'Maxwell', 1994, 'M', 1719), +(154217, 'Jalen', 1994, 'M', 1698), +(154218, 'Marco', 1994, 'M', 1688), +(154219, 'Erick', 1994, 'M', 1677), +(154220, 'Randy', 1994, 'M', 1645), +(154221, 'Mathew', 1994, 'M', 1634), +(154222, 'Brent', 1994, 'M', 1631), +(154223, 'Pedro', 1994, 'M', 1628), +(154224, 'Tony', 1994, 'M', 1626), +(154225, 'Max', 1994, 'M', 1624), +(154226, 'Jerry', 1994, 'M', 1612), +(154227, 'Preston', 1994, 'M', 1606), +(154228, 'Riley', 1994, 'M', 1587), +(154229, 'Calvin', 1994, 'M', 1565), +(154230, 'Larry', 1994, 'M', 1559), +(154231, 'Wyatt', 1994, 'M', 1543), +(154232, 'Craig', 1994, 'M', 1507), +(154233, 'Raul', 1994, 'M', 1452), +(154234, 'Colby', 1994, 'M', 1449), +(154235, 'Darren', 1994, 'M', 1444), +(154236, 'Rafael', 1994, 'M', 1430), +(154237, 'Carl', 1994, 'M', 1416), +(154238, 'Jeffery', 1994, 'M', 1416), +(154239, 'Ricky', 1994, 'M', 1413), +(154240, 'Louis', 1994, 'M', 1409), +(154241, 'Tevin', 1994, 'M', 1405), +(154242, 'Jaime', 1994, 'M', 1393), +(154243, 'Albert', 1994, 'M', 1384), +(154244, 'Jimmy', 1994, 'M', 1373), +(154245, 'Trey', 1994, 'M', 1367), +(154246, 'Kristopher', 1994, 'M', 1365), +(154247, 'Marc', 1994, 'M', 1356), +(154248, 'Skyler', 1994, 'M', 1355), +(154249, 'Damian', 1994, 'M', 1349), +(154250, 'Chance', 1994, 'M', 1347), +(154251, 'Forrest', 1994, 'M', 1343), +(154252, 'Harrison', 1994, 'M', 1331), +(154253, 'Kaleb', 1994, 'M', 1329), +(154254, 'Julio', 1994, 'M', 1316), +(154255, 'Alberto', 1994, 'M', 1312), +(154256, 'Dallas', 1994, 'M', 1303), +(154257, 'Sebastian', 1994, 'M', 1302), +(154258, 'Trenton', 1994, 'M', 1298), +(154259, 'Conner', 1994, 'M', 1292), +(154260, 'Armando', 1994, 'M', 1291), +(154261, 'Alexis', 1994, 'M', 1288), +(154262, 'Gerardo', 1994, 'M', 1286), +(154263, 'Emmanuel', 1994, 'M', 1285), +(154264, 'Gage', 1994, 'M', 1285), +(154265, 'Danny', 1994, 'M', 1278), +(154266, 'Zackary', 1994, 'M', 1274), +(154267, 'Micheal', 1994, 'M', 1273), +(154268, 'Shaquille', 1994, 'M', 1272), +(154269, 'Russell', 1994, 'M', 1271), +(154270, 'Lawrence', 1994, 'M', 1267), +(154271, 'Diego', 1994, 'M', 1258), +(154272, 'Parker', 1994, 'M', 1249), +(154273, 'Dominique', 1994, 'M', 1238), +(154274, 'Jamal', 1994, 'M', 1230), +(154275, 'Abraham', 1994, 'M', 1219), +(154276, 'Terry', 1994, 'M', 1217), +(154277, 'Joe', 1994, 'M', 1204), +(154278, 'Rodney', 1994, 'M', 1183), +(154279, 'Jonah', 1994, 'M', 1178), +(154280, 'Micah', 1994, 'M', 1170), +(154281, 'Kody', 1994, 'M', 1163), +(154282, 'Arthur', 1994, 'M', 1161), +(154283, 'Landon', 1994, 'M', 1155), +(154284, 'Walter', 1994, 'M', 1150), +(154285, 'Deandre', 1994, 'M', 1146), +(154286, 'Todd', 1994, 'M', 1141), +(154287, 'Marcos', 1994, 'M', 1139), +(154288, 'Bobby', 1994, 'M', 1136), +(154289, 'Andy', 1994, 'M', 1129), +(154290, 'Billy', 1994, 'M', 1124), +(154291, 'Gavin', 1994, 'M', 1121), +(154292, 'Lance', 1994, 'M', 1119), +(154293, 'Avery', 1994, 'M', 1116), +(154294, 'Nolan', 1994, 'M', 1112), +(154295, 'Donovan', 1994, 'M', 1108), +(154296, 'Jay', 1994, 'M', 1101), +(154297, 'Nickolas', 1994, 'M', 1079), +(154298, 'Roger', 1994, 'M', 1071), +(154299, 'Enrique', 1994, 'M', 1068), +(154300, 'Josue', 1994, 'M', 1068), +(154301, 'Randall', 1994, 'M', 1063), +(154302, 'Trent', 1994, 'M', 1060), +(154303, 'Ramon', 1994, 'M', 1043), +(154304, 'Branden', 1994, 'M', 1038), +(154305, 'Jon', 1994, 'M', 1032), +(154306, 'Morgan', 1994, 'M', 1023), +(154307, 'Arturo', 1994, 'M', 1013), +(154308, 'Alfredo', 1994, 'M', 997), +(154309, 'Terrance', 1994, 'M', 991), +(154310, 'Jessie', 1994, 'M', 984), +(154311, 'Malcolm', 1994, 'M', 979), +(154312, 'Devonte', 1994, 'M', 977), +(154313, 'Damien', 1994, 'M', 976), +(154314, 'Marvin', 1994, 'M', 975), +(154315, 'Gustavo', 1994, 'M', 967), +(154316, 'Israel', 1994, 'M', 959), +(154317, 'Marquis', 1994, 'M', 959), +(154318, 'Gerald', 1994, 'M', 954), +(154319, 'Jamie', 1994, 'M', 954), +(154320, 'Giovanni', 1994, 'M', 952), +(154321, 'Kendall', 1994, 'M', 949), +(154322, 'Johnathon', 1994, 'M', 948), +(154323, 'Miles', 1994, 'M', 948), +(154324, 'Eddie', 1994, 'M', 941), +(154325, 'Willie', 1994, 'M', 940), +(154326, 'Theodore', 1994, 'M', 937), +(154327, 'Damon', 1994, 'M', 934), +(154328, 'Maurice', 1994, 'M', 932), +(154329, 'Reginald', 1994, 'M', 929), +(154330, 'Lorenzo', 1994, 'M', 928), +(154331, 'Josiah', 1994, 'M', 917), +(154332, 'Lee', 1994, 'M', 916), +(154333, 'Frederick', 1994, 'M', 903), +(154334, 'Salvador', 1994, 'M', 896), +(154335, 'Demetrius', 1994, 'M', 894), +(154336, 'Dominick', 1994, 'M', 883), +(154337, 'Eli', 1994, 'M', 881), +(154338, 'Bryant', 1994, 'M', 874), +(154339, 'Conor', 1994, 'M', 866), +(154340, 'Roy', 1994, 'M', 861), +(154341, 'Zackery', 1994, 'M', 861), +(154342, 'Devante', 1994, 'M', 853), +(154343, 'Malik', 1994, 'M', 853), +(154344, 'Quinton', 1994, 'M', 842), +(154345, 'Ross', 1994, 'M', 838), +(154346, 'Tyrone', 1994, 'M', 834), +(154347, 'Marshall', 1994, 'M', 833), +(154348, 'Dean', 1994, 'M', 832), +(154349, 'Carson', 1994, 'M', 831), +(154350, 'Tommy', 1994, 'M', 831), +(154351, 'Ernesto', 1994, 'M', 817), +(154352, 'Ty', 1994, 'M', 813), +(154353, 'Elias', 1994, 'M', 812), +(154354, 'Zachariah', 1994, 'M', 810), +(154355, 'Terrence', 1994, 'M', 801), +(154356, 'Harley', 1994, 'M', 789), +(154357, 'Dante', 1994, 'M', 786), +(154358, 'Shaun', 1994, 'M', 779), +(154359, 'Zane', 1994, 'M', 778), +(154360, 'Fabian', 1994, 'M', 772), +(154361, 'Pablo', 1994, 'M', 765), +(154362, 'Brock', 1994, 'M', 763), +(154363, 'Brennan', 1994, 'M', 757), +(154364, 'Kelvin', 1994, 'M', 749), +(154365, 'Bruce', 1994, 'M', 747), +(154366, 'Darrell', 1994, 'M', 746), +(154367, 'Wayne', 1994, 'M', 746), +(154368, 'Rene', 1994, 'M', 744), +(154369, 'Denzel', 1994, 'M', 736), +(154370, 'Terrell', 1994, 'M', 734), +(154371, 'Brenden', 1994, 'M', 731), +(154372, 'Jerome', 1994, 'M', 728), +(154373, 'Francis', 1994, 'M', 726), +(154374, 'Drake', 1994, 'M', 724), +(154375, 'Braden', 1994, 'M', 721), +(154376, 'Brendon', 1994, 'M', 719), +(154377, 'Nelson', 1994, 'M', 719), +(154378, 'Quentin', 1994, 'M', 718), +(154379, 'Steve', 1994, 'M', 714), +(154380, 'Angelo', 1994, 'M', 712), +(154381, 'Myles', 1994, 'M', 712), +(154382, 'Chandler', 1994, 'M', 704), +(154383, 'Franklin', 1994, 'M', 702), +(154384, 'Neil', 1994, 'M', 702), +(154385, 'Melvin', 1994, 'M', 699), +(154386, 'Tucker', 1994, 'M', 694), +(154387, 'Clay', 1994, 'M', 689), +(154388, 'Lane', 1994, 'M', 689), +(154389, 'Ashton', 1994, 'M', 682), +(154390, 'Simon', 1994, 'M', 679), +(154391, 'Darian', 1994, 'M', 674), +(154392, 'Guillermo', 1994, 'M', 674), +(154393, 'Desmond', 1994, 'M', 670), +(154394, 'Liam', 1994, 'M', 667), +(154395, 'Ronnie', 1994, 'M', 667), +(154396, 'Orlando', 1994, 'M', 660), +(154397, 'Trevon', 1994, 'M', 658), +(154398, 'Weston', 1994, 'M', 654), +(154399, 'Dale', 1994, 'M', 650), +(154400, 'Mackenzie', 1994, 'M', 648), +(154401, 'Devan', 1994, 'M', 646), +(154402, 'Byron', 1994, 'M', 645), +(154403, 'Leonard', 1994, 'M', 644), +(154404, 'Oliver', 1994, 'M', 643), +(154405, 'Ismael', 1994, 'M', 642), +(154406, 'Eugene', 1994, 'M', 636), +(154407, 'Darryl', 1994, 'M', 633), +(154408, 'Daquan', 1994, 'M', 626), +(154409, 'Kendrick', 1994, 'M', 623), +(154410, 'Roman', 1994, 'M', 622), +(154411, 'Leonardo', 1994, 'M', 621), +(154412, 'Emanuel', 1994, 'M', 620), +(154413, 'Esteban', 1994, 'M', 619), +(154414, 'Emilio', 1994, 'M', 616), +(154415, 'Karl', 1994, 'M', 612), +(154416, 'Geoffrey', 1994, 'M', 611), +(154417, 'Darien', 1994, 'M', 607), +(154418, 'Keegan', 1994, 'M', 606), +(154419, 'Stanley', 1994, 'M', 606), +(154420, 'Warren', 1994, 'M', 604), +(154421, 'Kenny', 1994, 'M', 602), +(154422, 'Rodolfo', 1994, 'M', 600), +(154423, 'Saul', 1994, 'M', 599), +(154424, 'Felix', 1994, 'M', 592), +(154425, 'Quinn', 1994, 'M', 592), +(154426, 'Ernest', 1994, 'M', 591), +(154427, 'Keenan', 1994, 'M', 590), +(154428, 'Graham', 1994, 'M', 589), +(154429, 'Beau', 1994, 'M', 587), +(154430, 'Stefan', 1994, 'M', 587), +(154431, 'Clinton', 1994, 'M', 586), +(154432, 'Skylar', 1994, 'M', 585), +(154433, 'Abel', 1994, 'M', 584), +(154434, 'Corbin', 1994, 'M', 582), +(154435, 'Moises', 1994, 'M', 579), +(154436, 'Sterling', 1994, 'M', 573), +(154437, 'Davon', 1994, 'M', 567), +(154438, 'Griffin', 1994, 'M', 566), +(154439, 'Ray', 1994, 'M', 564), +(154440, 'Kyler', 1994, 'M', 563), +(154441, 'Jarrett', 1994, 'M', 562), +(154442, 'Deshawn', 1994, 'M', 560), +(154443, 'Dwayne', 1994, 'M', 556), +(154444, 'Alvin', 1994, 'M', 555), +(154445, 'Joey', 1994, 'M', 554), +(154446, 'Kurt', 1994, 'M', 554), +(154447, 'Wade', 1994, 'M', 554), +(154448, 'Glenn', 1994, 'M', 553), +(154449, 'Kameron', 1994, 'M', 553), +(154450, 'Sam', 1994, 'M', 553), +(154451, 'Harry', 1994, 'M', 550), +(154452, 'Cedric', 1994, 'M', 548), +(154453, 'Hugo', 1994, 'M', 548), +(154454, 'Felipe', 1994, 'M', 545), +(154455, 'Leon', 1994, 'M', 544), +(154456, 'Tylor', 1994, 'M', 544), +(154457, 'Carter', 1994, 'M', 543), +(154458, 'Davis', 1994, 'M', 541), +(154459, 'Gilberto', 1994, 'M', 541), +(154460, 'Jaquan', 1994, 'M', 536), +(154461, 'Jermaine', 1994, 'M', 534), +(154462, 'Allan', 1994, 'M', 531), +(154463, 'Rashad', 1994, 'M', 531), +(154464, 'Jakob', 1994, 'M', 530), +(154465, 'Reid', 1994, 'M', 530), +(154466, 'Alfonso', 1994, 'M', 528), +(154467, 'Jordon', 1994, 'M', 526), +(154468, 'Lukas', 1994, 'M', 526), +(154469, 'Elliot', 1994, 'M', 525), +(154470, 'Dane', 1994, 'M', 521), +(154471, 'Sheldon', 1994, 'M', 520), +(154472, 'Cooper', 1994, 'M', 518), +(154473, 'Rudy', 1994, 'M', 518), +(154474, 'Harold', 1994, 'M', 517), +(154475, 'Aidan', 1994, 'M', 516), +(154476, 'Kristian', 1994, 'M', 509), +(154477, 'Reed', 1994, 'M', 509), +(154478, 'Braxton', 1994, 'M', 507), +(154479, 'Jarred', 1994, 'M', 506), +(154480, 'Gilbert', 1994, 'M', 505), +(154481, 'Noel', 1994, 'M', 503), +(154482, 'Marquise', 1994, 'M', 502), +(154483, 'Javon', 1994, 'M', 500), +(154484, 'Tyrell', 1994, 'M', 500), +(154485, 'Nikolas', 1994, 'M', 491), +(154486, 'Tristan', 1994, 'M', 491), +(154487, 'Demarcus', 1994, 'M', 488), +(154488, 'Owen', 1994, 'M', 488), +(154489, 'Jarvis', 1994, 'M', 482), +(154490, 'Clarence', 1994, 'M', 481), +(154491, 'Ramiro', 1994, 'M', 479), +(154492, 'Rogelio', 1994, 'M', 479), +(154493, 'Stephan', 1994, 'M', 478), +(154494, 'Elliott', 1994, 'M', 477), +(154495, 'Ali', 1994, 'M', 475), +(154496, 'Leo', 1994, 'M', 474), +(154497, 'Stuart', 1994, 'M', 474), +(154498, 'Rolando', 1994, 'M', 473), +(154499, 'Darnell', 1994, 'M', 469), +(154500, 'Justice', 1994, 'M', 469), +(154501, 'Alonzo', 1994, 'M', 468), +(154502, 'Bryson', 1994, 'M', 467), +(154503, 'Sawyer', 1994, 'M', 462), +(154504, 'Tomas', 1994, 'M', 462), +(154505, 'Quincy', 1994, 'M', 459), +(154506, 'Brody', 1994, 'M', 456), +(154507, 'Deon', 1994, 'M', 456), +(154508, 'Jarrod', 1994, 'M', 454), +(154509, 'Alfred', 1994, 'M', 453), +(154510, 'Donte', 1994, 'M', 452), +(154511, 'Charlie', 1994, 'M', 447), +(154512, 'Nigel', 1994, 'M', 447), +(154513, 'Marlon', 1994, 'M', 445), +(154514, 'Ariel', 1994, 'M', 444), +(154515, 'Keaton', 1994, 'M', 444), +(154516, 'Deonte', 1994, 'M', 443), +(154517, 'Chris', 1994, 'M', 442), +(154518, 'Kurtis', 1994, 'M', 442), +(154519, 'Noe', 1994, 'M', 439), +(154520, 'Roderick', 1994, 'M', 437), +(154521, 'Lewis', 1994, 'M', 431), +(154522, 'Clint', 1994, 'M', 425), +(154523, 'Ralph', 1994, 'M', 422), +(154524, 'Rodrigo', 1994, 'M', 421), +(154525, 'Tre', 1994, 'M', 421), +(154526, 'Jayson', 1994, 'M', 418), +(154527, 'Garret', 1994, 'M', 416), +(154528, 'Bret', 1994, 'M', 414), +(154529, 'Bernard', 1994, 'M', 413), +(154530, 'Damion', 1994, 'M', 413), +(154531, 'Barry', 1994, 'M', 408), +(154532, 'Derick', 1994, 'M', 407), +(154533, 'Mitchel', 1994, 'M', 407), +(154534, 'Nathanael', 1994, 'M', 404), +(154535, 'Tyson', 1994, 'M', 404), +(154536, 'Austen', 1994, 'M', 403), +(154537, 'Blaine', 1994, 'M', 403), +(154538, 'Kory', 1994, 'M', 403), +(154539, 'Shannon', 1994, 'M', 403), +(154540, 'Clifford', 1994, 'M', 402), +(154541, 'Payton', 1994, 'M', 402), +(154542, 'Markus', 1994, 'M', 396), +(154543, 'Sidney', 1994, 'M', 394), +(154544, 'Santiago', 1994, 'M', 391), +(154545, 'Julius', 1994, 'M', 390), +(154546, 'Duncan', 1994, 'M', 388), +(154547, 'Grayson', 1994, 'M', 385), +(154548, 'Kelly', 1994, 'M', 385), +(154549, 'Brad', 1994, 'M', 383), +(154550, 'Efrain', 1994, 'M', 383), +(154551, 'Raheem', 1994, 'M', 383), +(154552, 'Earl', 1994, 'M', 381), +(154553, 'Mauricio', 1994, 'M', 380), +(154554, 'Kirk', 1994, 'M', 379), +(154555, 'Dequan', 1994, 'M', 377), +(154556, 'Vicente', 1994, 'M', 376), +(154557, 'Howard', 1994, 'M', 374), +(154558, 'Baby', 1994, 'M', 373), +(154559, 'Darion', 1994, 'M', 373), +(154560, 'Dashawn', 1994, 'M', 373), +(154561, 'Heath', 1994, 'M', 372), +(154562, 'Khalil', 1994, 'M', 372), +(154563, 'Lamar', 1994, 'M', 372), +(154564, 'Dorian', 1994, 'M', 370), +(154565, 'Stephon', 1994, 'M', 370), +(154566, 'Perry', 1994, 'M', 369), +(154567, 'Walker', 1994, 'M', 368), +(154568, 'Wilson', 1994, 'M', 368), +(154569, 'Ahmad', 1994, 'M', 364), +(154570, 'Shelby', 1994, 'M', 362), +(154571, 'Dwight', 1994, 'M', 361), +(154572, 'Humberto', 1994, 'M', 361), +(154573, 'Adan', 1994, 'M', 360), +(154574, 'Isiah', 1994, 'M', 359), +(154575, 'Tyree', 1994, 'M', 359), +(154576, 'Dion', 1994, 'M', 357), +(154577, 'Jaylen', 1994, 'M', 357), +(154578, 'Kareem', 1994, 'M', 357), +(154579, 'Peyton', 1994, 'M', 357), +(154580, 'Carlton', 1994, 'M', 356), +(154581, 'Dexter', 1994, 'M', 356), +(154582, 'Daryl', 1994, 'M', 354), +(154583, 'Antoine', 1994, 'M', 352), +(154584, 'Osvaldo', 1994, 'M', 352), +(154585, 'Gordon', 1994, 'M', 347), +(154586, 'Moses', 1994, 'M', 346), +(154587, 'Terence', 1994, 'M', 343), +(154588, 'Addison', 1994, 'M', 342), +(154589, 'Gunnar', 1994, 'M', 342), +(154590, 'Jaron', 1994, 'M', 341), +(154591, 'Colten', 1994, 'M', 339), +(154592, 'Kasey', 1994, 'M', 339), +(154593, 'Leroy', 1994, 'M', 337), +(154594, 'Alvaro', 1994, 'M', 335), +(154595, 'Uriel', 1994, 'M', 335), +(154596, 'Juwan', 1994, 'M', 332), +(154597, 'Chaz', 1994, 'M', 331), +(154598, 'Amir', 1994, 'M', 330), +(154599, 'Korey', 1994, 'M', 330), +(154600, 'Norman', 1994, 'M', 327), +(154601, 'Courtney', 1994, 'M', 326), +(154602, 'Jace', 1994, 'M', 326), +(154603, 'Jamar', 1994, 'M', 326), +(154604, 'Shayne', 1994, 'M', 326), +(154605, 'Roland', 1994, 'M', 324), +(154606, 'Salvatore', 1994, 'M', 323), +(154607, 'Brice', 1994, 'M', 321), +(154608, 'Glen', 1994, 'M', 321), +(154609, 'Lonnie', 1994, 'M', 321), +(154610, 'Brenton', 1994, 'M', 320), +(154611, 'Leonel', 1994, 'M', 320), +(154612, 'Darrius', 1994, 'M', 318), +(154613, 'Davonte', 1994, 'M', 318), +(154614, 'Deion', 1994, 'M', 318), +(154615, 'Anton', 1994, 'M', 317), +(154616, 'Fredrick', 1994, 'M', 317), +(154617, 'Mohammad', 1994, 'M', 317), +(154618, 'Freddy', 1994, 'M', 315), +(154619, 'Travon', 1994, 'M', 311), +(154620, 'Brayden', 1994, 'M', 310), +(154621, 'Adolfo', 1994, 'M', 309), +(154622, 'Issac', 1994, 'M', 309), +(154623, 'Toby', 1994, 'M', 307), +(154624, 'Darrin', 1994, 'M', 305), +(154625, 'Cade', 1994, 'M', 303), +(154626, 'Coleman', 1994, 'M', 303), +(154627, 'Dimitri', 1994, 'M', 303), +(154628, 'Deven', 1994, 'M', 302), +(154629, 'Quintin', 1994, 'M', 302), +(154630, 'Solomon', 1994, 'M', 302), +(154631, 'Cullen', 1994, 'M', 301), +(154632, 'Jamel', 1994, 'M', 301), +(154633, 'Kent', 1994, 'M', 301), +(154634, 'Dillan', 1994, 'M', 300), +(154635, 'Agustin', 1994, 'M', 299), +(154636, 'Frankie', 1994, 'M', 298), +(154637, 'Holden', 1994, 'M', 298), +(154638, 'Kristofer', 1994, 'M', 298), +(154639, 'Coty', 1994, 'M', 297), +(154640, 'Joaquin', 1994, 'M', 297), +(154641, 'Jean', 1994, 'M', 296), +(154642, 'Reynaldo', 1994, 'M', 296), +(154643, 'Conrad', 1994, 'M', 295), +(154644, 'Devonta', 1994, 'M', 294), +(154645, 'Mohammed', 1994, 'M', 294), +(154646, 'Neal', 1994, 'M', 293), +(154647, 'Ben', 1994, 'M', 292), +(154648, 'Ezekiel', 1994, 'M', 290), +(154649, 'Lloyd', 1994, 'M', 290), +(154650, 'Mike', 1994, 'M', 288), +(154651, 'Nathanial', 1994, 'M', 286), +(154652, 'Everett', 1994, 'M', 285), +(154653, 'Lamont', 1994, 'M', 285), +(154654, 'Guadalupe', 1994, 'M', 282), +(154655, 'Milton', 1994, 'M', 282), +(154656, 'Aron', 1994, 'M', 280), +(154657, 'Cortez', 1994, 'M', 280), +(154658, 'Dandre', 1994, 'M', 280), +(154659, 'Rigoberto', 1994, 'M', 280), +(154660, 'Tracy', 1994, 'M', 279), +(154661, 'Kane', 1994, 'M', 276), +(154662, 'Vernon', 1994, 'M', 276), +(154663, 'Cornelius', 1994, 'M', 272), +(154664, 'Jaden', 1994, 'M', 271), +(154665, 'Nestor', 1994, 'M', 271), +(154666, 'Houston', 1994, 'M', 270), +(154667, 'Malachi', 1994, 'M', 270), +(154668, 'Clark', 1994, 'M', 268), +(154669, 'Clifton', 1994, 'M', 267), +(154670, 'Rick', 1994, 'M', 266), +(154671, 'Arnold', 1994, 'M', 265), +(154672, 'Marcel', 1994, 'M', 265), +(154673, 'Hakeem', 1994, 'M', 264), +(154674, 'Ignacio', 1994, 'M', 264), +(154675, 'Ahmed', 1994, 'M', 263), +(154676, 'Irvin', 1994, 'M', 262), +(154677, 'Tate', 1994, 'M', 260), +(154678, 'Brooks', 1994, 'M', 259), +(154679, 'Dusty', 1994, 'M', 259), +(154680, 'Darin', 1994, 'M', 258), +(154681, 'Deangelo', 1994, 'M', 258), +(154682, 'Duane', 1994, 'M', 258), +(154683, 'Gerard', 1994, 'M', 258), +(154684, 'Raphael', 1994, 'M', 258), +(154685, 'Fred', 1994, 'M', 255), +(154686, 'Jaleel', 1994, 'M', 255), +(154687, 'Colt', 1994, 'M', 253), +(154688, 'Rickey', 1994, 'M', 253), +(154689, 'Forest', 1994, 'M', 252), +(154690, 'German', 1994, 'M', 252), +(154691, 'Maximilian', 1994, 'M', 252), +(154692, 'Reece', 1994, 'M', 252), +(154693, 'Trever', 1994, 'M', 248), +(154694, 'Will', 1994, 'M', 247), +(154695, 'Reuben', 1994, 'M', 245), +(154696, 'Bennett', 1994, 'M', 244), +(154697, 'Shaquan', 1994, 'M', 244), +(154698, 'Winston', 1994, 'M', 244), +(154699, 'Bradford', 1994, 'M', 243), +(154700, 'Gino', 1994, 'M', 243), +(154701, 'Ladarius', 1994, 'M', 243), +(154702, 'Brennen', 1994, 'M', 242), +(154703, 'Jairo', 1994, 'M', 242), +(154704, 'Jamison', 1994, 'M', 241), +(154705, 'Mohamed', 1994, 'M', 237), +(154706, 'Bernardo', 1994, 'M', 236), +(154707, 'Ezequiel', 1994, 'M', 236), +(154708, 'Herbert', 1994, 'M', 235), +(154709, 'Jimmie', 1994, 'M', 235), +(154710, 'Kerry', 1994, 'M', 235), +(154711, 'Madison', 1994, 'M', 235), +(154712, 'Raymundo', 1994, 'M', 234), +(154713, 'Brandyn', 1994, 'M', 232), +(154714, 'Estevan', 1994, 'M', 232), +(154715, 'Kieran', 1994, 'M', 232), +(154716, 'Don', 1994, 'M', 231), +(154717, 'Aubrey', 1994, 'M', 230), +(154718, 'Jonas', 1994, 'M', 230), +(154719, 'Keon', 1994, 'M', 230), +(154720, 'Robin', 1994, 'M', 230), +(154721, 'Heriberto', 1994, 'M', 229), +(154722, 'Jameson', 1994, 'M', 229), +(154723, 'Kade', 1994, 'M', 229), +(154724, 'Zechariah', 1994, 'M', 229), +(154725, 'Jovan', 1994, 'M', 228), +(154726, 'Thaddeus', 1994, 'M', 228), +(154727, 'Ezra', 1994, 'M', 226), +(154728, 'Antwan', 1994, 'M', 225), +(154729, 'Jefferson', 1994, 'M', 225), +(154730, 'Dillion', 1994, 'M', 224), +(154731, 'Rory', 1994, 'M', 223), +(154732, 'Akeem', 1994, 'M', 222), +(154733, 'Pierce', 1994, 'M', 222), +(154734, 'Codey', 1994, 'M', 221), +(154735, 'Loren', 1994, 'M', 221), +(154736, 'Darrion', 1994, 'M', 220), +(154737, 'Freddie', 1994, 'M', 219), +(154738, 'Paris', 1994, 'M', 219), +(154739, 'Sammy', 1994, 'M', 219), +(154740, 'Ulises', 1994, 'M', 219), +(154741, 'Arron', 1994, 'M', 217), +(154742, 'Dylon', 1994, 'M', 217), +(154743, 'Hassan', 1994, 'M', 217), +(154744, 'Johnnie', 1994, 'M', 216), +(154745, 'Cordell', 1994, 'M', 215), +(154746, 'Kaden', 1994, 'M', 215), +(154747, 'Kolby', 1994, 'M', 215), +(154748, 'Moshe', 1994, 'M', 215), +(154749, 'Kai', 1994, 'M', 214), +(154750, 'Brandan', 1994, 'M', 213), +(154751, 'Jeff', 1994, 'M', 213), +(154752, 'Rashawn', 1994, 'M', 213), +(154753, 'Vaughn', 1994, 'M', 213), +(154754, 'Khalid', 1994, 'M', 212), +(154755, 'Irving', 1994, 'M', 211), +(154756, 'Gene', 1994, 'M', 209), +(154757, 'Santos', 1994, 'M', 209), +(154758, 'Cruz', 1994, 'M', 208), +(154759, 'Davion', 1994, 'M', 208), +(154760, 'Javonte', 1994, 'M', 208), +(154761, 'Dakotah', 1994, 'M', 207), +(154762, 'Gonzalo', 1994, 'M', 207), +(154763, 'Jasper', 1994, 'M', 207), +(154764, 'Leslie', 1994, 'M', 207), +(154765, 'Caden', 1994, 'M', 206), +(154766, 'Kolton', 1994, 'M', 206), +(154767, 'Lester', 1994, 'M', 206), +(154768, 'Donavan', 1994, 'M', 205), +(154769, 'Stewart', 1994, 'M', 205), +(154770, 'Jamarcus', 1994, 'M', 203), +(154771, 'Nico', 1994, 'M', 203), +(154772, 'Pierre', 1994, 'M', 203), +(154773, 'Guy', 1994, 'M', 202), +(154774, 'Sage', 1994, 'M', 202), +(154775, 'Zakary', 1994, 'M', 201), +(154776, 'Grady', 1994, 'M', 199), +(154777, 'Jackie', 1994, 'M', 199), +(154778, 'Jamil', 1994, 'M', 199), +(154779, 'Dana', 1994, 'M', 197), +(154780, 'Donnell', 1994, 'M', 197), +(154781, 'Donnie', 1994, 'M', 197), +(154782, 'Shea', 1994, 'M', 197), +(154783, 'August', 1994, 'M', 196), +(154784, 'Royce', 1994, 'M', 196), +(154785, 'Dayton', 1994, 'M', 195), +(154786, 'Infant', 1994, 'M', 195), +(154787, 'Isaias', 1994, 'M', 195), +(154788, 'Jerrod', 1994, 'M', 195), +(154789, 'Keanu', 1994, 'M', 195), +(154790, 'Nick', 1994, 'M', 195), +(154791, 'Benito', 1994, 'M', 193), +(154792, 'Bo', 1994, 'M', 193), +(154793, 'Camron', 1994, 'M', 193), +(154794, 'Jade', 1994, 'M', 193), +(154795, 'Jaylon', 1994, 'M', 193), +(154796, 'Myron', 1994, 'M', 192), +(154797, 'Herman', 1994, 'M', 191), +(154798, 'Bradly', 1994, 'M', 190), +(154799, 'Cyrus', 1994, 'M', 190), +(154800, 'Darrian', 1994, 'M', 190), +(154801, 'Erich', 1994, 'M', 189), +(154802, 'Jabari', 1994, 'M', 188), +(154803, 'Bailey', 1994, 'M', 187), +(154804, 'Keven', 1994, 'M', 187), +(154805, 'Lincoln', 1994, 'M', 187), +(154806, 'Rhett', 1994, 'M', 187), +(154807, 'Codie', 1994, 'M', 186), +(154808, 'Garrison', 1994, 'M', 186), +(154809, 'Jarod', 1994, 'M', 186), +(154810, 'Tobias', 1994, 'M', 186), +(154811, 'Vance', 1994, 'M', 186), +(154812, 'Deondre', 1994, 'M', 185), +(154813, 'Elvis', 1994, 'M', 185), +(154814, 'Montana', 1994, 'M', 185), +(154815, 'Reese', 1994, 'M', 185), +(154816, 'Devyn', 1994, 'M', 184), +(154817, 'Elmer', 1994, 'M', 184), +(154818, 'Floyd', 1994, 'M', 184), +(154819, 'Octavio', 1994, 'M', 184), +(154820, 'Junior', 1994, 'M', 182), +(154821, 'Gregorio', 1994, 'M', 181), +(154822, 'Fidel', 1994, 'M', 180), +(154823, 'Quinten', 1994, 'M', 180), +(154824, 'Alexandro', 1994, 'M', 179), +(154825, 'Josef', 1994, 'M', 179), +(154826, 'Aric', 1994, 'M', 178), +(154827, 'Daulton', 1994, 'M', 178), +(154828, 'Elisha', 1994, 'M', 178), +(154829, 'Savon', 1994, 'M', 178), +(154830, 'Adonis', 1994, 'M', 177), +(154831, 'Dan', 1994, 'M', 177), +(154832, 'Dewayne', 1994, 'M', 177), +(154833, 'Jamaal', 1994, 'M', 177), +(154834, 'Rico', 1994, 'M', 177), +(154835, 'Asa', 1994, 'M', 176), +(154836, 'Bronson', 1994, 'M', 174), +(154837, 'Camden', 1994, 'M', 174), +(154838, 'Rocky', 1994, 'M', 174), +(154839, 'Amos', 1994, 'M', 172), +(154840, 'Dario', 1994, 'M', 171), +(154841, 'Tayler', 1994, 'M', 171), +(154842, 'Trace', 1994, 'M', 171), +(154843, 'Anderson', 1994, 'M', 170), +(154844, 'Ari', 1994, 'M', 170), +(154845, 'Cristopher', 1994, 'M', 170), +(154846, 'Jim', 1994, 'M', 170), +(154847, 'Erin', 1994, 'M', 169), +(154848, 'Josh', 1994, 'M', 169), +(154849, 'Tory', 1994, 'M', 169), +(154850, 'Harvey', 1994, 'M', 168), +(154851, 'Hugh', 1994, 'M', 168), +(154852, 'Jessy', 1994, 'M', 168), +(154853, 'Shyheim', 1994, 'M', 168), +(154854, 'Stetson', 1994, 'M', 168), +(154855, 'Tyron', 1994, 'M', 168), +(154856, 'Austyn', 1994, 'M', 167), +(154857, 'Deshaun', 1994, 'M', 167), +(154858, 'Dondre', 1994, 'M', 167), +(154859, 'Jacoby', 1994, 'M', 167), +(154860, 'Rex', 1994, 'M', 167), +(154861, 'Kelsey', 1994, 'M', 166), +(154862, 'Emmett', 1994, 'M', 165), +(154863, 'Leland', 1994, 'M', 165), +(154864, 'Justyn', 1994, 'M', 164), +(154865, 'Kadeem', 1994, 'M', 164), +(154866, 'Kellen', 1994, 'M', 164), +(154867, 'Markell', 1994, 'M', 164), +(154868, 'Menachem', 1994, 'M', 164), +(154869, 'Efren', 1994, 'M', 163), +(154870, 'Marquez', 1994, 'M', 163), +(154871, 'Misael', 1994, 'M', 163), +(154872, 'Ted', 1994, 'M', 163), +(154873, 'Unknown', 1994, 'M', 163), +(154874, 'Cecil', 1994, 'M', 162), +(154875, 'Justus', 1994, 'M', 162), +(154876, 'Markel', 1994, 'M', 162), +(154877, 'Rasheed', 1994, 'M', 162), +(154878, 'Alton', 1994, 'M', 161), +(154879, 'Blair', 1994, 'M', 161), +(154880, 'Abram', 1994, 'M', 160), +(154881, 'Ellis', 1994, 'M', 160), +(154882, 'Lionel', 1994, 'M', 160), +(154883, 'Edgardo', 1994, 'M', 159), +(154884, 'Jayden', 1994, 'M', 159), +(154885, 'Jevon', 1994, 'M', 159), +(154886, 'Khari', 1994, 'M', 159), +(154887, 'Dallin', 1994, 'M', 158), +(154888, 'Dawson', 1994, 'M', 158), +(154889, 'Denver', 1994, 'M', 158), +(154890, 'Tyquan', 1994, 'M', 158), +(154891, 'Rusty', 1994, 'M', 157), +(154892, 'Niko', 1994, 'M', 156), +(154893, 'Sonny', 1994, 'M', 156), +(154894, 'Trayvon', 1994, 'M', 156), +(154895, 'Alonso', 1994, 'M', 154), +(154896, 'Benny', 1994, 'M', 154), +(154897, 'Davin', 1994, 'M', 154), +(154898, 'Hernan', 1994, 'M', 154), +(154899, 'Muhammad', 1994, 'M', 154), +(154900, 'Remington', 1994, 'M', 154), +(154901, 'Augustus', 1994, 'M', 153), +(154902, 'Mikel', 1994, 'M', 153), +(154903, 'Silas', 1994, 'M', 153), +(154904, 'Valentin', 1994, 'M', 153), +(154905, 'Wendell', 1994, 'M', 153), +(154906, 'Antony', 1994, 'M', 152), +(154907, 'Barrett', 1994, 'M', 152), +(154908, 'Clyde', 1994, 'M', 152), +(154909, 'Daron', 1994, 'M', 152), +(154910, 'Gunner', 1994, 'M', 152), +(154911, 'Ibrahim', 1994, 'M', 152), +(154912, 'Kelby', 1994, 'M', 152), +(154913, 'Kevon', 1994, 'M', 152), +(154914, 'Talon', 1994, 'M', 152), +(154915, 'Galen', 1994, 'M', 151), +(154916, 'Najee', 1994, 'M', 151), +(154917, 'Asher', 1994, 'M', 150), +(154918, 'Jess', 1994, 'M', 150), +(154919, 'Jody', 1994, 'M', 150), +(154920, 'Jorden', 1994, 'M', 150), +(154921, 'Chester', 1994, 'M', 149), +(154922, 'Demetri', 1994, 'M', 149), +(154923, 'Devontae', 1994, 'M', 149), +(154924, 'Lyle', 1994, 'M', 149), +(154925, 'Maximillian', 1994, 'M', 149), +(154926, 'Auston', 1994, 'M', 148), +(154927, 'Coby', 1994, 'M', 148), +(154928, 'Marques', 1994, 'M', 148), +(154929, 'Orion', 1994, 'M', 148), +(154930, 'Sherman', 1994, 'M', 148), +(154931, 'Alexandre', 1994, 'M', 147), +(154932, 'Bryon', 1994, 'M', 147), +(154933, 'Ryne', 1994, 'M', 147), +(154934, 'Storm', 1994, 'M', 147), +(154935, 'Turner', 1994, 'M', 147), +(154936, 'Cain', 1994, 'M', 146), +(154937, 'Dionte', 1994, 'M', 146), +(154938, 'Kegan', 1994, 'M', 146), +(154939, 'Aldo', 1994, 'M', 145), +(154940, 'Andreas', 1994, 'M', 145), +(154941, 'Isidro', 1994, 'M', 145), +(154942, 'Jaylin', 1994, 'M', 145), +(154943, 'Titus', 1994, 'M', 145), +(154944, 'Cristobal', 1994, 'M', 144), +(154945, 'Giancarlo', 1994, 'M', 144), +(154946, 'Dalvin', 1994, 'M', 143), +(154947, 'Edmund', 1994, 'M', 143), +(154948, 'Kelton', 1994, 'M', 143), +(154949, 'Randolph', 1994, 'M', 143), +(154950, 'Trae', 1994, 'M', 143), +(154951, 'Brant', 1994, 'M', 142), +(154952, 'Broderick', 1994, 'M', 142), +(154953, 'Chadwick', 1994, 'M', 142), +(154954, 'Chaim', 1994, 'M', 142), +(154955, 'Darrien', 1994, 'M', 142), +(154956, 'Jerrell', 1994, 'M', 142), +(154957, 'Kennedy', 1994, 'M', 142), +(154958, 'Carlo', 1994, 'M', 141), +(154959, 'Hans', 1994, 'M', 141), +(154960, 'Layne', 1994, 'M', 141), +(154961, 'River', 1994, 'M', 141), +(154962, 'Domenic', 1994, 'M', 140), +(154963, 'Kendal', 1994, 'M', 140), +(154964, 'Kenton', 1994, 'M', 140), +(154965, 'Tavon', 1994, 'M', 140), +(154966, 'Codi', 1994, 'M', 139), +(154967, 'Julien', 1994, 'M', 139), +(154968, 'Ulysses', 1994, 'M', 139), +(154969, 'Alek', 1994, 'M', 138), +(154970, 'Destin', 1994, 'M', 138), +(154971, 'Eliseo', 1994, 'M', 138), +(154972, 'Kole', 1994, 'M', 138), +(154973, 'Marty', 1994, 'M', 138), +(154974, 'Otis', 1994, 'M', 138), +(154975, 'Rodrick', 1994, 'M', 138), +(154976, 'Tyrin', 1994, 'M', 138), +(154977, 'Darwin', 1994, 'M', 137), +(154978, 'Justen', 1994, 'M', 137), +(154979, 'Shelton', 1994, 'M', 137), +(154980, 'Kirby', 1994, 'M', 136), +(154981, 'Randal', 1994, 'M', 136), +(154982, 'Tariq', 1994, 'M', 136), +(154983, 'Ervin', 1994, 'M', 135), +(154984, 'Jacques', 1994, 'M', 135), +(154985, 'Ryder', 1994, 'M', 135), +(154986, 'Dakoda', 1994, 'M', 134), +(154987, 'Demarco', 1994, 'M', 134), +(154988, 'Axel', 1994, 'M', 133), +(154989, 'Greg', 1994, 'M', 133), +(154990, 'Tyshawn', 1994, 'M', 133), +(154991, 'Wilfredo', 1994, 'M', 133), +(154992, 'Ashley', 1994, 'M', 132), +(154993, 'Cale', 1994, 'M', 132), +(154994, 'Demonte', 1994, 'M', 132), +(154995, 'Mikal', 1994, 'M', 132), +(154996, 'Syed', 1994, 'M', 132), +(154997, 'Sylvester', 1994, 'M', 132), +(154998, 'Eliezer', 1994, 'M', 131), +(154999, 'Male', 1994, 'M', 131), +(155000, 'Samson', 1994, 'M', 131), +(155001, 'Nicklaus', 1994, 'M', 130), +(155002, 'Pete', 1994, 'M', 130), +(155003, 'Shay', 1994, 'M', 130), +(155004, 'Waylon', 1994, 'M', 130), +(155005, 'Westley', 1994, 'M', 130), +(155006, 'Darrick', 1994, 'M', 129), +(155007, 'Garry', 1994, 'M', 129), +(155008, 'Armani', 1994, 'M', 128), +(155009, 'Dejuan', 1994, 'M', 128), +(155010, 'Eddy', 1994, 'M', 128), +(155011, 'Genaro', 1994, 'M', 128), +(155012, 'Maverick', 1994, 'M', 128), +(155013, 'Morris', 1994, 'M', 128), +(155014, 'Samir', 1994, 'M', 128), +(155015, 'Schuyler', 1994, 'M', 128), +(155016, 'Demario', 1994, 'M', 127), +(155017, 'Desean', 1994, 'M', 127), +(155018, 'Garett', 1994, 'M', 127), +(155019, 'Kahlil', 1994, 'M', 127), +(155020, 'Maximiliano', 1994, 'M', 127), +(155021, 'Spenser', 1994, 'M', 127), +(155022, 'Bryton', 1994, 'M', 126), +(155023, 'Dontae', 1994, 'M', 126), +(155024, 'Jerald', 1994, 'M', 126), +(155025, 'Jonatan', 1994, 'M', 126), +(155026, 'Lazaro', 1994, 'M', 126), +(155027, 'Luther', 1994, 'M', 126), +(155028, 'Nikko', 1994, 'M', 126), +(155029, 'Abdul', 1994, 'M', 125), +(155030, 'Brannon', 1994, 'M', 125), +(155031, 'Francesco', 1994, 'M', 125), +(155032, 'Dominque', 1994, 'M', 124), +(155033, 'Kenyon', 1994, 'M', 124), +(155034, 'Mickey', 1994, 'M', 124), +(155035, 'Blaise', 1994, 'M', 123), +(155036, 'Kwame', 1994, 'M', 123), +(155037, 'Rocco', 1994, 'M', 123), +(155038, 'Scotty', 1994, 'M', 123), +(155039, 'Derik', 1994, 'M', 122), +(155040, 'Ishmael', 1994, 'M', 122), +(155041, 'Phoenix', 1994, 'M', 122), +(155042, 'Rayshawn', 1994, 'M', 122), +(155043, 'Kalen', 1994, 'M', 121), +(155044, 'Reno', 1994, 'M', 121), +(155045, 'Stacy', 1994, 'M', 121), +(155046, 'Timmy', 1994, 'M', 121), +(155047, 'Easton', 1994, 'M', 120), +(155048, 'Rashaad', 1994, 'M', 120), +(155049, 'Teddy', 1994, 'M', 120), +(155050, 'Yosef', 1994, 'M', 120), +(155051, 'Claude', 1994, 'M', 119), +(155052, 'Ridge', 1994, 'M', 119), +(155053, 'Ron', 1994, 'M', 119), +(155054, 'Britton', 1994, 'M', 118), +(155055, 'Deonta', 1994, 'M', 118), +(155056, 'Jedidiah', 1994, 'M', 118), +(155057, 'Nevin', 1994, 'M', 118), +(155058, 'Willis', 1994, 'M', 118), +(155059, 'Brennon', 1994, 'M', 117), +(155060, 'Denzell', 1994, 'M', 117), +(155061, 'Devaughn', 1994, 'M', 117), +(155062, 'Mack', 1994, 'M', 117), +(155063, 'Vincenzo', 1994, 'M', 117), +(155064, 'Alden', 1994, 'M', 116), +(155065, 'Antwon', 1994, 'M', 116), +(155066, 'Domingo', 1994, 'M', 116), +(155067, 'Earnest', 1994, 'M', 116), +(155068, 'Fredy', 1994, 'M', 116), +(155069, 'Jerod', 1994, 'M', 116), +(155070, 'Tom', 1994, 'M', 116), +(155071, 'Treyvon', 1994, 'M', 116), +(155072, 'Damarcus', 1994, 'M', 115), +(155073, 'Dave', 1994, 'M', 115), +(155074, 'Trevin', 1994, 'M', 115), +(155075, 'Cassidy', 1994, 'M', 114), +(155076, 'Cheyenne', 1994, 'M', 114), +(155077, 'Donavon', 1994, 'M', 114), +(155078, 'Isai', 1994, 'M', 114), +(155079, 'Kodi', 1994, 'M', 114), +(155080, 'Malcom', 1994, 'M', 114), +(155081, 'Scottie', 1994, 'M', 114), +(155082, 'Deanthony', 1994, 'M', 113), +(155083, 'Dyllan', 1994, 'M', 113), +(155084, 'Mariano', 1994, 'M', 113), +(155085, 'Tarik', 1994, 'M', 113), +(155086, 'Theron', 1994, 'M', 113), +(155087, 'Chauncey', 1994, 'M', 112), +(155088, 'Emerson', 1994, 'M', 112), +(155089, 'Ken', 1994, 'M', 112), +(155090, 'Marlin', 1994, 'M', 112), +(155091, 'Rakeem', 1994, 'M', 112), +(155092, 'Ramsey', 1994, 'M', 112), +(155093, 'Deontae', 1994, 'M', 111), +(155094, 'Dustyn', 1994, 'M', 111), +(155095, 'Robbie', 1994, 'M', 111), +(155096, 'Seamus', 1994, 'M', 111), +(155097, 'Alessandro', 1994, 'M', 110), +(155098, 'Bennie', 1994, 'M', 110), +(155099, 'Bill', 1994, 'M', 110), +(155100, 'Federico', 1994, 'M', 110), +(155101, 'Marcellus', 1994, 'M', 110), +(155102, 'Marquel', 1994, 'M', 110), +(155103, 'Martez', 1994, 'M', 110), +(155104, 'Brodie', 1994, 'M', 109), +(155105, 'Cedrick', 1994, 'M', 109), +(155106, 'Dejon', 1994, 'M', 109), +(155107, 'Ira', 1994, 'M', 109), +(155108, 'Torrey', 1994, 'M', 109), +(155109, 'Braeden', 1994, 'M', 108), +(155110, 'Daren', 1994, 'M', 108), +(155111, 'Omari', 1994, 'M', 108), +(155112, 'Adrien', 1994, 'M', 107), +(155113, 'Breon', 1994, 'M', 107), +(155114, 'Dereck', 1994, 'M', 107), +(155115, 'Dontrell', 1994, 'M', 107), +(155116, 'Kale', 1994, 'M', 107), +(155117, 'Kalvin', 1994, 'M', 107), +(155118, 'Kyree', 1994, 'M', 107), +(155119, 'Marcelo', 1994, 'M', 107), +(155120, 'Mustafa', 1994, 'M', 107), +(155121, 'Diquan', 1994, 'M', 106), +(155122, 'Jaren', 1994, 'M', 106), +(155123, 'Jarret', 1994, 'M', 106), +(155124, 'Juancarlos', 1994, 'M', 106), +(155125, 'Keyon', 1994, 'M', 106), +(155126, 'Laquan', 1994, 'M', 106), +(155127, 'London', 1994, 'M', 106), +(155128, 'Nathen', 1994, 'M', 106), +(155129, 'Rudolph', 1994, 'M', 106), +(155130, 'Terell', 1994, 'M', 106), +(155131, 'Cary', 1994, 'M', 105), +(155132, 'Hudson', 1994, 'M', 105), +(155133, 'Jan', 1994, 'M', 105), +(155134, 'Jessica', 1994, 'M', 105), +(155135, 'Jovani', 1994, 'M', 105), +(155136, 'Jovanny', 1994, 'M', 105), +(155137, 'Marcelino', 1994, 'M', 105), +(155138, 'Rohan', 1994, 'M', 105), +(155139, 'Arnulfo', 1994, 'M', 104), +(155140, 'Deante', 1994, 'M', 104), +(155141, 'Dedrick', 1994, 'M', 104), +(155142, 'Elvin', 1994, 'M', 104), +(155143, 'Jered', 1994, 'M', 104), +(155144, 'Paxton', 1994, 'M', 104), +(155145, 'Raven', 1994, 'M', 104), +(155146, 'Van', 1994, 'M', 104), +(155147, 'Harris', 1994, 'M', 103), +(155148, 'Luciano', 1994, 'M', 103), +(155149, 'Mckenzie', 1994, 'M', 103), +(155150, 'Monte', 1994, 'M', 103), +(155151, 'Sunny', 1994, 'M', 103), +(155152, 'Eloy', 1994, 'M', 102), +(155153, 'Jelani', 1994, 'M', 102), +(155154, 'Latrell', 1994, 'M', 102), +(155155, 'Laurence', 1994, 'M', 102), +(155156, 'Miguelangel', 1994, 'M', 102), +(155157, 'Nicholaus', 1994, 'M', 102), +(155158, 'Romario', 1994, 'M', 102), +(155159, 'Roosevelt', 1994, 'M', 102), +(155160, 'Rylan', 1994, 'M', 102), +(155161, 'Davante', 1994, 'M', 101), +(155162, 'Demond', 1994, 'M', 101), +(155163, 'Diamond', 1994, 'M', 101), +(155164, 'Domonique', 1994, 'M', 101), +(155165, 'Rey', 1994, 'M', 101), +(155166, 'Tommie', 1994, 'M', 101), +(155167, 'Zack', 1994, 'M', 101), +(155168, 'Bishop', 1994, 'M', 100), +(155169, 'Edmond', 1994, 'M', 100), +(155170, 'Stone', 1994, 'M', 100), +(155171, 'Vince', 1994, 'M', 100), +(155172, 'Jessica', 1995, 'F', 27938), +(155173, 'Ashley', 1995, 'F', 26603), +(155174, 'Emily', 1995, 'F', 24377), +(155175, 'Samantha', 1995, 'F', 21646), +(155176, 'Sarah', 1995, 'F', 21365), +(155177, 'Taylor', 1995, 'F', 20424), +(155178, 'Hannah', 1995, 'F', 17012), +(155179, 'Brittany', 1995, 'F', 16477), +(155180, 'Amanda', 1995, 'F', 16344), +(155181, 'Elizabeth', 1995, 'F', 16183), +(155182, 'Kayla', 1995, 'F', 16083), +(155183, 'Rachel', 1995, 'F', 16041), +(155184, 'Megan', 1995, 'F', 15529), +(155185, 'Alexis', 1995, 'F', 14330), +(155186, 'Lauren', 1995, 'F', 13444), +(155187, 'Stephanie', 1995, 'F', 12979), +(155188, 'Courtney', 1995, 'F', 12771), +(155189, 'Jennifer', 1995, 'F', 12685), +(155190, 'Nicole', 1995, 'F', 12276), +(155191, 'Victoria', 1995, 'F', 12250), +(155192, 'Brianna', 1995, 'F', 11879), +(155193, 'Amber', 1995, 'F', 10963), +(155194, 'Morgan', 1995, 'F', 10875), +(155195, 'Danielle', 1995, 'F', 10649), +(155196, 'Jasmine', 1995, 'F', 10279), +(155197, 'Alexandra', 1995, 'F', 10160), +(155198, 'Alyssa', 1995, 'F', 10099), +(155199, 'Rebecca', 1995, 'F', 9902), +(155200, 'Madison', 1995, 'F', 9775), +(155201, 'Katherine', 1995, 'F', 8986), +(155202, 'Anna', 1995, 'F', 8556), +(155203, 'Haley', 1995, 'F', 8205), +(155204, 'Kelsey', 1995, 'F', 8182), +(155205, 'Allison', 1995, 'F', 8126), +(155206, 'Melissa', 1995, 'F', 7876), +(155207, 'Abigail', 1995, 'F', 7821), +(155208, 'Kimberly', 1995, 'F', 7742), +(155209, 'Shelby', 1995, 'F', 7631), +(155210, 'Olivia', 1995, 'F', 7624), +(155211, 'Mary', 1995, 'F', 7433), +(155212, 'Michelle', 1995, 'F', 7391), +(155213, 'Kaitlyn', 1995, 'F', 7387), +(155214, 'Sydney', 1995, 'F', 7357), +(155215, 'Maria', 1995, 'F', 6995), +(155216, 'Christina', 1995, 'F', 6951), +(155217, 'Tiffany', 1995, 'F', 6934), +(155218, 'Chelsea', 1995, 'F', 6760), +(155219, 'Sara', 1995, 'F', 6691), +(155220, 'Erin', 1995, 'F', 6564), +(155221, 'Jordan', 1995, 'F', 6480), +(155222, 'Natalie', 1995, 'F', 6424), +(155223, 'Brooke', 1995, 'F', 6374), +(155224, 'Marissa', 1995, 'F', 6081), +(155225, 'Heather', 1995, 'F', 6031), +(155226, 'Andrea', 1995, 'F', 6006), +(155227, 'Laura', 1995, 'F', 6005), +(155228, 'Miranda', 1995, 'F', 5980), +(155229, 'Paige', 1995, 'F', 5733), +(155230, 'Katelyn', 1995, 'F', 5573), +(155231, 'Sierra', 1995, 'F', 5494), +(155232, 'Gabrielle', 1995, 'F', 5448), +(155233, 'Julia', 1995, 'F', 5410), +(155234, 'Vanessa', 1995, 'F', 5404), +(155235, 'Kelly', 1995, 'F', 5398), +(155236, 'Kristen', 1995, 'F', 5398), +(155237, 'Destiny', 1995, 'F', 5380), +(155238, 'Emma', 1995, 'F', 5039), +(155239, 'Savannah', 1995, 'F', 4903), +(155240, 'Erica', 1995, 'F', 4893), +(155241, 'Jacqueline', 1995, 'F', 4789), +(155242, 'Mariah', 1995, 'F', 4774), +(155243, 'Alexandria', 1995, 'F', 4772), +(155244, 'Shannon', 1995, 'F', 4734), +(155245, 'Briana', 1995, 'F', 4612), +(155246, 'Breanna', 1995, 'F', 4530), +(155247, 'Amy', 1995, 'F', 4527), +(155248, 'Katie', 1995, 'F', 4465), +(155249, 'Cassandra', 1995, 'F', 4452), +(155250, 'Madeline', 1995, 'F', 4431), +(155251, 'Crystal', 1995, 'F', 4391), +(155252, 'Caitlin', 1995, 'F', 4382), +(155253, 'Lindsey', 1995, 'F', 4377), +(155254, 'Kathryn', 1995, 'F', 4328), +(155255, 'Jenna', 1995, 'F', 4252), +(155256, 'Angela', 1995, 'F', 4118), +(155257, 'Cheyenne', 1995, 'F', 4089), +(155258, 'Monica', 1995, 'F', 3968), +(155259, 'Mackenzie', 1995, 'F', 3962), +(155260, 'Alicia', 1995, 'F', 3906), +(155261, 'Catherine', 1995, 'F', 3857), +(155262, 'Selena', 1995, 'F', 3824), +(155263, 'Caroline', 1995, 'F', 3797), +(155264, 'Jamie', 1995, 'F', 3769), +(155265, 'Kaitlin', 1995, 'F', 3602), +(155266, 'Sabrina', 1995, 'F', 3534), +(155267, 'Bailey', 1995, 'F', 3488), +(155268, 'Grace', 1995, 'F', 3471), +(155269, 'Molly', 1995, 'F', 3382), +(155270, 'Brittney', 1995, 'F', 3380), +(155271, 'Alexa', 1995, 'F', 3359), +(155272, 'Angelica', 1995, 'F', 3354), +(155273, 'Erika', 1995, 'F', 3287), +(155274, 'Leah', 1995, 'F', 3274), +(155275, 'Margaret', 1995, 'F', 3220), +(155276, 'Diana', 1995, 'F', 3165), +(155277, 'Kylie', 1995, 'F', 3152), +(155278, 'Michaela', 1995, 'F', 3083), +(155279, 'Cassidy', 1995, 'F', 3043), +(155280, 'Karina', 1995, 'F', 2985), +(155281, 'Autumn', 1995, 'F', 2980), +(155282, 'Hailey', 1995, 'F', 2964), +(155283, 'Meghan', 1995, 'F', 2962), +(155284, 'Cynthia', 1995, 'F', 2960), +(155285, 'Christine', 1995, 'F', 2812), +(155286, 'Whitney', 1995, 'F', 2779), +(155287, 'Bethany', 1995, 'F', 2742), +(155288, 'Melanie', 1995, 'F', 2645), +(155289, 'Casey', 1995, 'F', 2638), +(155290, 'Brenda', 1995, 'F', 2611), +(155291, 'Rachael', 1995, 'F', 2605), +(155292, 'Veronica', 1995, 'F', 2599), +(155293, 'Carly', 1995, 'F', 2583), +(155294, 'Gabriela', 1995, 'F', 2576), +(155295, 'Brandi', 1995, 'F', 2570), +(155296, 'Lindsay', 1995, 'F', 2562), +(155297, 'Holly', 1995, 'F', 2544), +(155298, 'Kaylee', 1995, 'F', 2517), +(155299, 'Bianca', 1995, 'F', 2503), +(155300, 'Claire', 1995, 'F', 2473), +(155301, 'Kristina', 1995, 'F', 2437), +(155302, 'Kristin', 1995, 'F', 2419), +(155303, 'Desiree', 1995, 'F', 2401), +(155304, 'Kendra', 1995, 'F', 2372), +(155305, 'Hayley', 1995, 'F', 2359), +(155306, 'Ana', 1995, 'F', 2358), +(155307, 'Chloe', 1995, 'F', 2332), +(155308, 'Leslie', 1995, 'F', 2311), +(155309, 'Caitlyn', 1995, 'F', 2300), +(155310, 'Kathleen', 1995, 'F', 2281), +(155311, 'Dominique', 1995, 'F', 2276), +(155312, 'Julie', 1995, 'F', 2276), +(155313, 'Karen', 1995, 'F', 2269), +(155314, 'Gabriella', 1995, 'F', 2244), +(155315, 'Lisa', 1995, 'F', 2237), +(155316, 'Daisy', 1995, 'F', 2224), +(155317, 'Mikayla', 1995, 'F', 2221), +(155318, 'Marisa', 1995, 'F', 2198), +(155319, 'Jocelyn', 1995, 'F', 2191), +(155320, 'Valerie', 1995, 'F', 2184), +(155321, 'Patricia', 1995, 'F', 2161), +(155322, 'Ariel', 1995, 'F', 2150), +(155323, 'Kara', 1995, 'F', 2148), +(155324, 'Summer', 1995, 'F', 2125), +(155325, 'Natasha', 1995, 'F', 2103), +(155326, 'April', 1995, 'F', 2075), +(155327, 'Rebekah', 1995, 'F', 2069), +(155328, 'Adriana', 1995, 'F', 2066), +(155329, 'Tara', 1995, 'F', 2023), +(155330, 'Nancy', 1995, 'F', 2001), +(155331, 'Alejandra', 1995, 'F', 2000), +(155332, 'Tori', 1995, 'F', 1991), +(155333, 'Alison', 1995, 'F', 1952), +(155334, 'Ariana', 1995, 'F', 1950), +(155335, 'Makayla', 1995, 'F', 1911), +(155336, 'Mckenzie', 1995, 'F', 1807), +(155337, 'Jade', 1995, 'F', 1783), +(155338, 'Audrey', 1995, 'F', 1770), +(155339, 'Sophia', 1995, 'F', 1763), +(155340, 'Dana', 1995, 'F', 1756), +(155341, 'Raven', 1995, 'F', 1756), +(155342, 'Lydia', 1995, 'F', 1751), +(155343, 'Claudia', 1995, 'F', 1749), +(155344, 'Faith', 1995, 'F', 1746), +(155345, 'Isabella', 1995, 'F', 1738), +(155346, 'Angel', 1995, 'F', 1733), +(155347, 'Zoe', 1995, 'F', 1726), +(155348, 'Sandra', 1995, 'F', 1706), +(155349, 'Mallory', 1995, 'F', 1695), +(155350, 'Diamond', 1995, 'F', 1682), +(155351, 'Kirsten', 1995, 'F', 1681), +(155352, 'Monique', 1995, 'F', 1667), +(155353, 'Katrina', 1995, 'F', 1666), +(155354, 'Kassandra', 1995, 'F', 1608), +(155355, 'Jasmin', 1995, 'F', 1605), +(155356, 'Cierra', 1995, 'F', 1596), +(155357, 'Joanna', 1995, 'F', 1595), +(155358, 'Deanna', 1995, 'F', 1586), +(155359, 'Ciara', 1995, 'F', 1585), +(155360, 'Krystal', 1995, 'F', 1564), +(155361, 'Kendall', 1995, 'F', 1545), +(155362, 'Mercedes', 1995, 'F', 1544), +(155363, 'Kiana', 1995, 'F', 1534), +(155364, 'Hope', 1995, 'F', 1527), +(155365, 'Jazmin', 1995, 'F', 1516), +(155366, 'Brandy', 1995, 'F', 1508), +(155367, 'Evelyn', 1995, 'F', 1506), +(155368, 'Jillian', 1995, 'F', 1503), +(155369, 'Cindy', 1995, 'F', 1498), +(155370, 'Ashlee', 1995, 'F', 1497), +(155371, 'Yesenia', 1995, 'F', 1495), +(155372, 'Bridget', 1995, 'F', 1469), +(155373, 'Krista', 1995, 'F', 1468), +(155374, 'Meagan', 1995, 'F', 1462), +(155375, 'Kiara', 1995, 'F', 1451), +(155376, 'Deja', 1995, 'F', 1420), +(155377, 'Chelsey', 1995, 'F', 1408), +(155378, 'Gina', 1995, 'F', 1400), +(155379, 'Anne', 1995, 'F', 1385), +(155380, 'Abby', 1995, 'F', 1378), +(155381, 'Hanna', 1995, 'F', 1378), +(155382, 'Felicia', 1995, 'F', 1351); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(155383, 'Jazmine', 1995, 'F', 1343), +(155384, 'Naomi', 1995, 'F', 1313), +(155385, 'Ellen', 1995, 'F', 1312), +(155386, 'Priscilla', 1995, 'F', 1307), +(155387, 'Denise', 1995, 'F', 1301), +(155388, 'Isabel', 1995, 'F', 1297), +(155389, 'Allyson', 1995, 'F', 1291), +(155390, 'Asia', 1995, 'F', 1290), +(155391, 'Tabitha', 1995, 'F', 1290), +(155392, 'Alisha', 1995, 'F', 1278), +(155393, 'Tiara', 1995, 'F', 1278), +(155394, 'Katlyn', 1995, 'F', 1260), +(155395, 'Colleen', 1995, 'F', 1255), +(155396, 'Aaliyah', 1995, 'F', 1254), +(155397, 'Meredith', 1995, 'F', 1244), +(155398, 'Maya', 1995, 'F', 1240), +(155399, 'Katelynn', 1995, 'F', 1238), +(155400, 'Kennedy', 1995, 'F', 1235), +(155401, 'Cristina', 1995, 'F', 1233), +(155402, 'Linda', 1995, 'F', 1233), +(155403, 'Guadalupe', 1995, 'F', 1228), +(155404, 'Ashlyn', 1995, 'F', 1215), +(155405, 'Alexus', 1995, 'F', 1214), +(155406, 'Brenna', 1995, 'F', 1212), +(155407, 'Lacey', 1995, 'F', 1209), +(155408, 'Amelia', 1995, 'F', 1206), +(155409, 'Alondra', 1995, 'F', 1205), +(155410, 'Clarissa', 1995, 'F', 1201), +(155411, 'Ashleigh', 1995, 'F', 1191), +(155412, 'Karla', 1995, 'F', 1182), +(155413, 'Carolyn', 1995, 'F', 1174), +(155414, 'Tatiana', 1995, 'F', 1170), +(155415, 'Arianna', 1995, 'F', 1158), +(155416, 'Kasey', 1995, 'F', 1154), +(155417, 'Jada', 1995, 'F', 1152), +(155418, 'Jordyn', 1995, 'F', 1148), +(155419, 'Celeste', 1995, 'F', 1147), +(155420, 'Jessie', 1995, 'F', 1138), +(155421, 'Maggie', 1995, 'F', 1136), +(155422, 'Cecilia', 1995, 'F', 1128), +(155423, 'Dakota', 1995, 'F', 1125), +(155424, 'Tessa', 1995, 'F', 1120), +(155425, 'Marina', 1995, 'F', 1102), +(155426, 'Mia', 1995, 'F', 1101), +(155427, 'Jaclyn', 1995, 'F', 1090), +(155428, 'Raquel', 1995, 'F', 1074), +(155429, 'Tamara', 1995, 'F', 1070), +(155430, 'Mckenna', 1995, 'F', 1066), +(155431, 'Ruby', 1995, 'F', 1052), +(155432, 'Justice', 1995, 'F', 1046), +(155433, 'Aubrey', 1995, 'F', 1044), +(155434, 'Teresa', 1995, 'F', 1044), +(155435, 'Logan', 1995, 'F', 1041), +(155436, 'Wendy', 1995, 'F', 1039), +(155437, 'Imani', 1995, 'F', 1034), +(155438, 'Tiana', 1995, 'F', 1025), +(155439, 'Daniela', 1995, 'F', 1022), +(155440, 'Mayra', 1995, 'F', 1020), +(155441, 'Tia', 1995, 'F', 1014), +(155442, 'Carmen', 1995, 'F', 1005), +(155443, 'Rosa', 1995, 'F', 1003), +(155444, 'Savanna', 1995, 'F', 1001), +(155445, 'Kelsie', 1995, 'F', 1000), +(155446, 'Alissa', 1995, 'F', 999), +(155447, 'Camille', 1995, 'F', 998), +(155448, 'Charlotte', 1995, 'F', 997), +(155449, 'Jacquelyn', 1995, 'F', 997), +(155450, 'Carolina', 1995, 'F', 988), +(155451, 'Nina', 1995, 'F', 987), +(155452, 'Madeleine', 1995, 'F', 986), +(155453, 'Renee', 1995, 'F', 986), +(155454, 'Adrianna', 1995, 'F', 984), +(155455, 'Jenny', 1995, 'F', 979), +(155456, 'Sadie', 1995, 'F', 971), +(155457, 'Miriam', 1995, 'F', 969), +(155458, 'Riley', 1995, 'F', 969), +(155459, 'Candace', 1995, 'F', 967), +(155460, 'Heidi', 1995, 'F', 961), +(155461, 'Justine', 1995, 'F', 957), +(155462, 'Callie', 1995, 'F', 953), +(155463, 'Theresa', 1995, 'F', 948), +(155464, 'Elena', 1995, 'F', 947), +(155465, 'Lillian', 1995, 'F', 942), +(155466, 'Nichole', 1995, 'F', 936), +(155467, 'Ashton', 1995, 'F', 931), +(155468, 'Janet', 1995, 'F', 928), +(155469, 'Annie', 1995, 'F', 925), +(155470, 'Kelli', 1995, 'F', 923), +(155471, 'Paola', 1995, 'F', 921), +(155472, 'Esther', 1995, 'F', 918), +(155473, 'Martha', 1995, 'F', 918), +(155474, 'Tyler', 1995, 'F', 917), +(155475, 'Alexia', 1995, 'F', 913), +(155476, 'Angelina', 1995, 'F', 907), +(155477, 'Ebony', 1995, 'F', 907), +(155478, 'Virginia', 1995, 'F', 905), +(155479, 'Alana', 1995, 'F', 900), +(155480, 'Cara', 1995, 'F', 900), +(155481, 'Carrie', 1995, 'F', 896), +(155482, 'Gloria', 1995, 'F', 895), +(155483, 'Kylee', 1995, 'F', 888), +(155484, 'Susan', 1995, 'F', 888), +(155485, 'Devon', 1995, 'F', 887), +(155486, 'Sidney', 1995, 'F', 883), +(155487, 'Kierra', 1995, 'F', 878), +(155488, 'Vivian', 1995, 'F', 866), +(155489, 'Valeria', 1995, 'F', 865), +(155490, 'Marie', 1995, 'F', 853), +(155491, 'Lily', 1995, 'F', 852), +(155492, 'Destinee', 1995, 'F', 849), +(155493, 'Ruth', 1995, 'F', 849), +(155494, 'Shayla', 1995, 'F', 846), +(155495, 'Mikaela', 1995, 'F', 838), +(155496, 'Helen', 1995, 'F', 837), +(155497, 'Serena', 1995, 'F', 830), +(155498, 'Toni', 1995, 'F', 823), +(155499, 'Delaney', 1995, 'F', 819), +(155500, 'Carissa', 1995, 'F', 818), +(155501, 'Sharon', 1995, 'F', 812), +(155502, 'Aimee', 1995, 'F', 806), +(155503, 'Liliana', 1995, 'F', 801), +(155504, 'Genesis', 1995, 'F', 796), +(155505, 'Britney', 1995, 'F', 791), +(155506, 'Elise', 1995, 'F', 788), +(155507, 'Kellie', 1995, 'F', 788), +(155508, 'Rose', 1995, 'F', 787), +(155509, 'Aliyah', 1995, 'F', 785), +(155510, 'Janelle', 1995, 'F', 779), +(155511, 'Hunter', 1995, 'F', 775), +(155512, 'Bria', 1995, 'F', 774), +(155513, 'Brooklyn', 1995, 'F', 774), +(155514, 'Macy', 1995, 'F', 770), +(155515, 'Carla', 1995, 'F', 764), +(155516, 'Anastasia', 1995, 'F', 758), +(155517, 'Natalia', 1995, 'F', 757), +(155518, 'Kali', 1995, 'F', 756), +(155519, 'Harley', 1995, 'F', 752), +(155520, 'Barbara', 1995, 'F', 751), +(155521, 'Eva', 1995, 'F', 751), +(155522, 'Tierra', 1995, 'F', 750), +(155523, 'Devin', 1995, 'F', 745), +(155524, 'Chandler', 1995, 'F', 744), +(155525, 'Ann', 1995, 'F', 743), +(155526, 'Cheyanne', 1995, 'F', 743), +(155527, 'Christian', 1995, 'F', 737), +(155528, 'Tayler', 1995, 'F', 737), +(155529, 'Makenzie', 1995, 'F', 728), +(155530, 'Cassie', 1995, 'F', 727), +(155531, 'Robin', 1995, 'F', 727), +(155532, 'Josie', 1995, 'F', 726), +(155533, 'Francesca', 1995, 'F', 725), +(155534, 'Karissa', 1995, 'F', 721), +(155535, 'Kate', 1995, 'F', 717), +(155536, 'Madelyn', 1995, 'F', 716), +(155537, 'Sasha', 1995, 'F', 715), +(155538, 'Emilee', 1995, 'F', 713), +(155539, 'Sonia', 1995, 'F', 711), +(155540, 'Melody', 1995, 'F', 708), +(155541, 'Juliana', 1995, 'F', 706), +(155542, 'Marisol', 1995, 'F', 704), +(155543, 'Selina', 1995, 'F', 704), +(155544, 'Tatyana', 1995, 'F', 703), +(155545, 'Bryanna', 1995, 'F', 700), +(155546, 'Elisabeth', 1995, 'F', 700), +(155547, 'Josephine', 1995, 'F', 700), +(155548, 'Stacey', 1995, 'F', 700), +(155549, 'Kaitlynn', 1995, 'F', 698), +(155550, 'Baylee', 1995, 'F', 696), +(155551, 'Sophie', 1995, 'F', 694), +(155552, 'Nikki', 1995, 'F', 692), +(155553, 'Arielle', 1995, 'F', 689), +(155554, 'Carina', 1995, 'F', 689), +(155555, 'Pamela', 1995, 'F', 687), +(155556, 'Candice', 1995, 'F', 686), +(155557, 'Skylar', 1995, 'F', 685), +(155558, 'Stacy', 1995, 'F', 683), +(155559, 'Kira', 1995, 'F', 682), +(155560, 'Darian', 1995, 'F', 681), +(155561, 'Nadia', 1995, 'F', 680), +(155562, 'Kailey', 1995, 'F', 676), +(155563, 'Nicolette', 1995, 'F', 676), +(155564, 'Kyra', 1995, 'F', 675), +(155565, 'Kenya', 1995, 'F', 674), +(155566, 'Alaina', 1995, 'F', 665), +(155567, 'Alyson', 1995, 'F', 662), +(155568, 'Deborah', 1995, 'F', 660), +(155569, 'Lorena', 1995, 'F', 658), +(155570, 'Clara', 1995, 'F', 656), +(155571, 'Breana', 1995, 'F', 655), +(155572, 'Esmeralda', 1995, 'F', 655), +(155573, 'Brianne', 1995, 'F', 651), +(155574, 'Regina', 1995, 'F', 650), +(155575, 'Haylee', 1995, 'F', 647), +(155576, 'Adrienne', 1995, 'F', 646), +(155577, 'Larissa', 1995, 'F', 645), +(155578, 'Julianna', 1995, 'F', 641), +(155579, 'Payton', 1995, 'F', 638), +(155580, 'Melinda', 1995, 'F', 633), +(155581, 'Kaila', 1995, 'F', 632), +(155582, 'Kyla', 1995, 'F', 625), +(155583, 'Tina', 1995, 'F', 625), +(155584, 'Tanya', 1995, 'F', 621), +(155585, 'Cortney', 1995, 'F', 620), +(155586, 'Mariana', 1995, 'F', 619), +(155587, 'Precious', 1995, 'F', 619), +(155588, 'Taryn', 1995, 'F', 619), +(155589, 'Carley', 1995, 'F', 618), +(155590, 'Jane', 1995, 'F', 618), +(155591, 'Gianna', 1995, 'F', 616), +(155592, 'Tiffani', 1995, 'F', 615), +(155593, 'Daniella', 1995, 'F', 614), +(155594, 'Ivy', 1995, 'F', 614), +(155595, 'Maranda', 1995, 'F', 614), +(155596, 'Shawna', 1995, 'F', 612), +(155597, 'Kassidy', 1995, 'F', 608), +(155598, 'Chasity', 1995, 'F', 607), +(155599, 'Irene', 1995, 'F', 607), +(155600, 'Sofia', 1995, 'F', 607), +(155601, 'Jaime', 1995, 'F', 602), +(155602, 'India', 1995, 'F', 598), +(155603, 'Kayleigh', 1995, 'F', 598), +(155604, 'Chelsie', 1995, 'F', 594), +(155605, 'Joy', 1995, 'F', 592), +(155606, 'Tianna', 1995, 'F', 592), +(155607, 'Sylvia', 1995, 'F', 589), +(155608, 'Peyton', 1995, 'F', 588), +(155609, 'Leticia', 1995, 'F', 587), +(155610, 'Micaela', 1995, 'F', 585), +(155611, 'Alma', 1995, 'F', 583), +(155612, 'Johanna', 1995, 'F', 582), +(155613, 'Alice', 1995, 'F', 579), +(155614, 'Marlene', 1995, 'F', 577), +(155615, 'Edith', 1995, 'F', 576), +(155616, 'Lucy', 1995, 'F', 576), +(155617, 'Shania', 1995, 'F', 576), +(155618, 'Ciera', 1995, 'F', 575), +(155619, 'Marilyn', 1995, 'F', 574), +(155620, 'Christy', 1995, 'F', 573), +(155621, 'Frances', 1995, 'F', 570), +(155622, 'Allie', 1995, 'F', 569), +(155623, 'Noelle', 1995, 'F', 567), +(155624, 'Randi', 1995, 'F', 563), +(155625, 'Shayna', 1995, 'F', 560), +(155626, 'Kourtney', 1995, 'F', 559), +(155627, 'Tracy', 1995, 'F', 557), +(155628, 'Celina', 1995, 'F', 555), +(155629, 'Paula', 1995, 'F', 553), +(155630, 'Haleigh', 1995, 'F', 552), +(155631, 'Abbey', 1995, 'F', 549), +(155632, 'Elisa', 1995, 'F', 547), +(155633, 'Kiersten', 1995, 'F', 547), +(155634, 'Nora', 1995, 'F', 545), +(155635, 'Simone', 1995, 'F', 544), +(155636, 'Avery', 1995, 'F', 542), +(155637, 'Tania', 1995, 'F', 542), +(155638, 'Elaine', 1995, 'F', 540), +(155639, 'Kaylin', 1995, 'F', 540), +(155640, 'Angelique', 1995, 'F', 536), +(155641, 'Kiera', 1995, 'F', 536), +(155642, 'Brittani', 1995, 'F', 526), +(155643, 'Mckayla', 1995, 'F', 523), +(155644, 'Christa', 1995, 'F', 521), +(155645, 'Cristal', 1995, 'F', 520), +(155646, 'Meaghan', 1995, 'F', 520), +(155647, 'Talia', 1995, 'F', 519), +(155648, 'Alexandrea', 1995, 'F', 518), +(155649, 'Kristine', 1995, 'F', 517), +(155650, 'Maritza', 1995, 'F', 517), +(155651, 'Moriah', 1995, 'F', 516), +(155652, 'Kaleigh', 1995, 'F', 515), +(155653, 'Yvette', 1995, 'F', 515), +(155654, 'Viviana', 1995, 'F', 514), +(155655, 'Kristy', 1995, 'F', 513), +(155656, 'Maribel', 1995, 'F', 513), +(155657, 'Blanca', 1995, 'F', 511), +(155658, 'Isabelle', 1995, 'F', 508), +(155659, 'Eliza', 1995, 'F', 506), +(155660, 'Chantel', 1995, 'F', 503), +(155661, 'Essence', 1995, 'F', 502), +(155662, 'Perla', 1995, 'F', 502), +(155663, 'Kelsi', 1995, 'F', 501), +(155664, 'Robyn', 1995, 'F', 501), +(155665, 'Thalia', 1995, 'F', 499), +(155666, 'Charity', 1995, 'F', 495), +(155667, 'Nia', 1995, 'F', 495), +(155668, 'Donna', 1995, 'F', 493), +(155669, 'Lizbeth', 1995, 'F', 493), +(155670, 'Darby', 1995, 'F', 491), +(155671, 'Ericka', 1995, 'F', 490), +(155672, 'Iris', 1995, 'F', 490), +(155673, 'Kari', 1995, 'F', 489), +(155674, 'Alina', 1995, 'F', 488), +(155675, 'Judith', 1995, 'F', 486), +(155676, 'Yasmin', 1995, 'F', 486), +(155677, 'Emilie', 1995, 'F', 482), +(155678, 'Kaylie', 1995, 'F', 482), +(155679, 'Alanna', 1995, 'F', 481), +(155680, 'Shanice', 1995, 'F', 481), +(155681, 'Rachelle', 1995, 'F', 480), +(155682, 'Kaley', 1995, 'F', 479), +(155683, 'Jeanette', 1995, 'F', 478), +(155684, 'Dalia', 1995, 'F', 476), +(155685, 'Paris', 1995, 'F', 474), +(155686, 'Michele', 1995, 'F', 472), +(155687, 'Janae', 1995, 'F', 471), +(155688, 'Julianne', 1995, 'F', 468), +(155689, 'Desirae', 1995, 'F', 466), +(155690, 'Sandy', 1995, 'F', 466), +(155691, 'Katharine', 1995, 'F', 465), +(155692, 'Hallie', 1995, 'F', 464), +(155693, 'Tasha', 1995, 'F', 463), +(155694, 'Corinne', 1995, 'F', 462), +(155695, 'Genevieve', 1995, 'F', 462), +(155696, 'Carol', 1995, 'F', 460), +(155697, 'Margarita', 1995, 'F', 457), +(155698, 'Cayla', 1995, 'F', 456), +(155699, 'Yvonne', 1995, 'F', 455), +(155700, 'Norma', 1995, 'F', 454), +(155701, 'Tyra', 1995, 'F', 454), +(155702, 'Carlie', 1995, 'F', 453), +(155703, 'Lexus', 1995, 'F', 450), +(155704, 'Dallas', 1995, 'F', 447), +(155705, 'Tanisha', 1995, 'F', 447), +(155706, 'Katarina', 1995, 'F', 446), +(155707, 'Breanne', 1995, 'F', 445), +(155708, 'Kristi', 1995, 'F', 442), +(155709, 'Skyler', 1995, 'F', 441), +(155710, 'Alex', 1995, 'F', 440), +(155711, 'Diane', 1995, 'F', 440), +(155712, 'Khadijah', 1995, 'F', 438), +(155713, 'Mollie', 1995, 'F', 438), +(155714, 'Antonia', 1995, 'F', 437), +(155715, 'Eleanor', 1995, 'F', 437), +(155716, 'Katelin', 1995, 'F', 437), +(155717, 'Kaylyn', 1995, 'F', 436), +(155718, 'Tess', 1995, 'F', 435), +(155719, 'Araceli', 1995, 'F', 434), +(155720, 'Paulina', 1995, 'F', 428), +(155721, 'Savanah', 1995, 'F', 428), +(155722, 'Bridgette', 1995, 'F', 427), +(155723, 'Leanna', 1995, 'F', 427), +(155724, 'Casandra', 1995, 'F', 426), +(155725, 'Beatriz', 1995, 'F', 421), +(155726, 'Aisha', 1995, 'F', 420), +(155727, 'Kelley', 1995, 'F', 420), +(155728, 'Alisa', 1995, 'F', 419), +(155729, 'Heaven', 1995, 'F', 417), +(155730, 'Yolanda', 1995, 'F', 416), +(155731, 'Trisha', 1995, 'F', 415), +(155732, 'Lyndsey', 1995, 'F', 413), +(155733, 'Misty', 1995, 'F', 412), +(155734, 'Kathy', 1995, 'F', 409), +(155735, 'Stephany', 1995, 'F', 409), +(155736, 'Jill', 1995, 'F', 408), +(155737, 'Noemi', 1995, 'F', 408), +(155738, 'Laurel', 1995, 'F', 407), +(155739, 'Susana', 1995, 'F', 407), +(155740, 'Ashlynn', 1995, 'F', 403), +(155741, 'Cameron', 1995, 'F', 403), +(155742, 'Rosemary', 1995, 'F', 403), +(155743, 'Stefanie', 1995, 'F', 403), +(155744, 'Anita', 1995, 'F', 400), +(155745, 'Lena', 1995, 'F', 399), +(155746, 'Madalyn', 1995, 'F', 399), +(155747, 'Reagan', 1995, 'F', 399), +(155748, 'Reyna', 1995, 'F', 398), +(155749, 'Regan', 1995, 'F', 397), +(155750, 'Hailee', 1995, 'F', 396), +(155751, 'Lori', 1995, 'F', 396), +(155752, 'Phoebe', 1995, 'F', 396), +(155753, 'Yasmine', 1995, 'F', 396), +(155754, 'Sheila', 1995, 'F', 395), +(155755, 'Bailee', 1995, 'F', 394), +(155756, 'Yadira', 1995, 'F', 392), +(155757, 'Sally', 1995, 'F', 389), +(155758, 'Bonnie', 1995, 'F', 387), +(155759, 'Clare', 1995, 'F', 387), +(155760, 'Alysha', 1995, 'F', 386), +(155761, 'Giselle', 1995, 'F', 386), +(155762, 'Destini', 1995, 'F', 384), +(155763, 'Fatima', 1995, 'F', 384), +(155764, 'Maddison', 1995, 'F', 383), +(155765, 'Lucia', 1995, 'F', 382), +(155766, 'Karli', 1995, 'F', 380), +(155767, 'Karly', 1995, 'F', 378), +(155768, 'Anissa', 1995, 'F', 376), +(155769, 'Dorothy', 1995, 'F', 376), +(155770, 'Kianna', 1995, 'F', 376), +(155771, 'Halie', 1995, 'F', 375), +(155772, 'Sade', 1995, 'F', 374), +(155773, 'Shaina', 1995, 'F', 374), +(155774, 'Eileen', 1995, 'F', 373), +(155775, 'Destiney', 1995, 'F', 372), +(155776, 'Joyce', 1995, 'F', 371), +(155777, 'Kacie', 1995, 'F', 370), +(155778, 'Jesse', 1995, 'F', 367), +(155779, 'Katlin', 1995, 'F', 367), +(155780, 'Shana', 1995, 'F', 367), +(155781, 'Georgia', 1995, 'F', 366), +(155782, 'Antoinette', 1995, 'F', 364), +(155783, 'Demi', 1995, 'F', 364), +(155784, 'Janice', 1995, 'F', 362), +(155785, 'Karlee', 1995, 'F', 362), +(155786, 'Kiley', 1995, 'F', 360), +(155787, 'Rocio', 1995, 'F', 360), +(155788, 'Ellie', 1995, 'F', 359), +(155789, 'Chanel', 1995, 'F', 358), +(155790, 'Nathalie', 1995, 'F', 357), +(155791, 'Rochelle', 1995, 'F', 356), +(155792, 'Ryan', 1995, 'F', 356), +(155793, 'Abbie', 1995, 'F', 351), +(155794, 'Jocelyne', 1995, 'F', 351), +(155795, 'Jacklyn', 1995, 'F', 350), +(155796, 'Mara', 1995, 'F', 350), +(155797, 'Myranda', 1995, 'F', 350), +(155798, 'Rhiannon', 1995, 'F', 350), +(155799, 'Skye', 1995, 'F', 349), +(155800, 'Micah', 1995, 'F', 348), +(155801, 'Karlie', 1995, 'F', 346), +(155802, 'Sarai', 1995, 'F', 346), +(155803, 'Suzanne', 1995, 'F', 345), +(155804, 'Lyric', 1995, 'F', 344), +(155805, 'Itzel', 1995, 'F', 343), +(155806, 'Kasandra', 1995, 'F', 343), +(155807, 'Shirley', 1995, 'F', 342), +(155808, 'Elaina', 1995, 'F', 341), +(155809, 'Montana', 1995, 'F', 341), +(155810, 'Helena', 1995, 'F', 340), +(155811, 'Roxanne', 1995, 'F', 339), +(155812, 'Blair', 1995, 'F', 338), +(155813, 'Kelsea', 1995, 'F', 337), +(155814, 'Shantel', 1995, 'F', 337), +(155815, 'Shelbi', 1995, 'F', 337), +(155816, 'Ashlie', 1995, 'F', 335), +(155817, 'Keri', 1995, 'F', 335), +(155818, 'Annette', 1995, 'F', 334), +(155819, 'Keisha', 1995, 'F', 333), +(155820, 'Lea', 1995, 'F', 332), +(155821, 'Alayna', 1995, 'F', 331), +(155822, 'Lacy', 1995, 'F', 331), +(155823, 'Brook', 1995, 'F', 330), +(155824, 'Luz', 1995, 'F', 329), +(155825, 'Katy', 1995, 'F', 328), +(155826, 'Melina', 1995, 'F', 328), +(155827, 'Berenice', 1995, 'F', 326), +(155828, 'Eden', 1995, 'F', 325), +(155829, 'Jaqueline', 1995, 'F', 325), +(155830, 'Aurora', 1995, 'F', 324), +(155831, 'Carli', 1995, 'F', 324), +(155832, 'Mikala', 1995, 'F', 324), +(155833, 'Aspen', 1995, 'F', 322), +(155834, 'Trinity', 1995, 'F', 322), +(155835, 'Jodi', 1995, 'F', 321), +(155836, 'Shauna', 1995, 'F', 321), +(155837, 'Bobbie', 1995, 'F', 320), +(155838, 'Dawn', 1995, 'F', 320), +(155839, 'Fabiola', 1995, 'F', 320), +(155840, 'Celia', 1995, 'F', 318), +(155841, 'Lizette', 1995, 'F', 318), +(155842, 'Iesha', 1995, 'F', 317), +(155843, 'Juanita', 1995, 'F', 317), +(155844, 'Ayanna', 1995, 'F', 316), +(155845, 'Corina', 1995, 'F', 315), +(155846, 'Kerri', 1995, 'F', 315), +(155847, 'Sydnee', 1995, 'F', 315), +(155848, 'Addison', 1995, 'F', 314), +(155849, 'Maegan', 1995, 'F', 314), +(155850, 'Daisha', 1995, 'F', 313), +(155851, 'Leanne', 1995, 'F', 313), +(155852, 'Cora', 1995, 'F', 312), +(155853, 'Kaelyn', 1995, 'F', 312), +(155854, 'Makenna', 1995, 'F', 312), +(155855, 'Rebeca', 1995, 'F', 311), +(155856, 'Shyanne', 1995, 'F', 311), +(155857, 'Hillary', 1995, 'F', 310), +(155858, 'Rylee', 1995, 'F', 309), +(155859, 'Sonya', 1995, 'F', 309), +(155860, 'Angie', 1995, 'F', 308), +(155861, 'Baby', 1995, 'F', 308), +(155862, 'Charlene', 1995, 'F', 308), +(155863, 'Kala', 1995, 'F', 308), +(155864, 'Jayla', 1995, 'F', 307), +(155865, 'Halle', 1995, 'F', 306), +(155866, 'Silvia', 1995, 'F', 304), +(155867, 'Chelsi', 1995, 'F', 303), +(155868, 'Ella', 1995, 'F', 303), +(155869, 'Maura', 1995, 'F', 303), +(155870, 'Carlee', 1995, 'F', 302), +(155871, 'Connie', 1995, 'F', 301), +(155872, 'Dulce', 1995, 'F', 300), +(155873, 'Jena', 1995, 'F', 299), +(155874, 'Kaela', 1995, 'F', 299), +(155875, 'Kori', 1995, 'F', 299), +(155876, 'Arlene', 1995, 'F', 297), +(155877, 'Kerry', 1995, 'F', 297), +(155878, 'Athena', 1995, 'F', 296), +(155879, 'Christiana', 1995, 'F', 296), +(155880, 'Rita', 1995, 'F', 296), +(155881, 'Devan', 1995, 'F', 295), +(155882, 'Lexi', 1995, 'F', 293), +(155883, 'Ali', 1995, 'F', 291), +(155884, 'Jenifer', 1995, 'F', 291), +(155885, 'Elissa', 1995, 'F', 290), +(155886, 'Mariela', 1995, 'F', 289), +(155887, 'Beverly', 1995, 'F', 288), +(155888, 'Justina', 1995, 'F', 288), +(155889, 'Sage', 1995, 'F', 288), +(155890, 'Kailee', 1995, 'F', 286), +(155891, 'Ashly', 1995, 'F', 284), +(155892, 'Tristan', 1995, 'F', 284), +(155893, 'Gladys', 1995, 'F', 283), +(155894, 'Graciela', 1995, 'F', 283), +(155895, 'Gretchen', 1995, 'F', 283), +(155896, 'Beth', 1995, 'F', 282), +(155897, 'Breann', 1995, 'F', 282), +(155898, 'Lucero', 1995, 'F', 282), +(155899, 'Shanna', 1995, 'F', 281), +(155900, 'Chantal', 1995, 'F', 280), +(155901, 'Drew', 1995, 'F', 280), +(155902, 'Kacey', 1995, 'F', 280), +(155903, 'Kirstin', 1995, 'F', 280), +(155904, 'Shelbie', 1995, 'F', 280), +(155905, 'Yessenia', 1995, 'F', 280), +(155906, 'Ava', 1995, 'F', 279), +(155907, 'Breonna', 1995, 'F', 279), +(155908, 'Macey', 1995, 'F', 279), +(155909, 'Ayana', 1995, 'F', 278), +(155910, 'Kristyn', 1995, 'F', 277), +(155911, 'Jessika', 1995, 'F', 276), +(155912, 'Lesley', 1995, 'F', 276), +(155913, 'Stevie', 1995, 'F', 275), +(155914, 'Brielle', 1995, 'F', 274), +(155915, 'Brionna', 1995, 'F', 274), +(155916, 'Joanne', 1995, 'F', 274), +(155917, 'Tonya', 1995, 'F', 274), +(155918, 'Brandie', 1995, 'F', 273), +(155919, 'Constance', 1995, 'F', 273), +(155920, 'Cori', 1995, 'F', 273), +(155921, 'Tammy', 1995, 'F', 273), +(155922, 'Darlene', 1995, 'F', 272), +(155923, 'Scarlett', 1995, 'F', 272), +(155924, 'Jana', 1995, 'F', 271), +(155925, 'Kalyn', 1995, 'F', 270), +(155926, 'Rikki', 1995, 'F', 270), +(155927, 'Tamera', 1995, 'F', 270), +(155928, 'Octavia', 1995, 'F', 268), +(155929, 'Bobbi', 1995, 'F', 267), +(155930, 'Dayna', 1995, 'F', 267), +(155931, 'Nadine', 1995, 'F', 267), +(155932, 'Hollie', 1995, 'F', 266), +(155933, 'Krysta', 1995, 'F', 266), +(155934, 'Macie', 1995, 'F', 266), +(155935, 'Racheal', 1995, 'F', 266), +(155936, 'Dasia', 1995, 'F', 264), +(155937, 'Janessa', 1995, 'F', 264), +(155938, 'Jennie', 1995, 'F', 264), +(155939, 'Magdalena', 1995, 'F', 263), +(155940, 'Shakira', 1995, 'F', 263), +(155941, 'Judy', 1995, 'F', 262), +(155942, 'Loren', 1995, 'F', 262), +(155943, 'Tabatha', 1995, 'F', 262), +(155944, 'Lara', 1995, 'F', 260), +(155945, 'Shea', 1995, 'F', 259), +(155946, 'Allyssa', 1995, 'F', 258), +(155947, 'Debra', 1995, 'F', 258), +(155948, 'Maureen', 1995, 'F', 257), +(155949, 'Aleah', 1995, 'F', 256), +(155950, 'Cheryl', 1995, 'F', 256), +(155951, 'Emely', 1995, 'F', 256), +(155952, 'Christie', 1995, 'F', 255), +(155953, 'Aubree', 1995, 'F', 254), +(155954, 'Jayme', 1995, 'F', 254), +(155955, 'Julissa', 1995, 'F', 254), +(155956, 'Kristian', 1995, 'F', 254), +(155957, 'Nataly', 1995, 'F', 254), +(155958, 'Devyn', 1995, 'F', 253), +(155959, 'Juana', 1995, 'F', 253), +(155960, 'Ashli', 1995, 'F', 252), +(155961, 'Fiona', 1995, 'F', 252), +(155962, 'Alessandra', 1995, 'F', 251), +(155963, 'Brittni', 1995, 'F', 251), +(155964, 'Mandy', 1995, 'F', 251), +(155965, 'Bryana', 1995, 'F', 250), +(155966, 'Christen', 1995, 'F', 250), +(155967, 'Kallie', 1995, 'F', 250), +(155968, 'Elyse', 1995, 'F', 249), +(155969, 'Kortney', 1995, 'F', 249), +(155970, 'Liana', 1995, 'F', 249), +(155971, 'Cecelia', 1995, 'F', 248), +(155972, 'Janie', 1995, 'F', 248), +(155973, 'Kaylynn', 1995, 'F', 248), +(155974, 'Roxana', 1995, 'F', 248), +(155975, 'Lexie', 1995, 'F', 247), +(155976, 'Stacie', 1995, 'F', 247), +(155977, 'Alena', 1995, 'F', 246), +(155978, 'Kailyn', 1995, 'F', 246), +(155979, 'Dianna', 1995, 'F', 245), +(155980, 'Janay', 1995, 'F', 245), +(155981, 'Joelle', 1995, 'F', 245), +(155982, 'Latasha', 1995, 'F', 245), +(155983, 'Eboni', 1995, 'F', 244), +(155984, 'Kenia', 1995, 'F', 243), +(155985, 'Ashanti', 1995, 'F', 242), +(155986, 'Sydni', 1995, 'F', 242), +(155987, 'Ayla', 1995, 'F', 241), +(155988, 'Kristie', 1995, 'F', 241), +(155989, 'Lauryn', 1995, 'F', 241), +(155990, 'Denisha', 1995, 'F', 240), +(155991, 'Joselyn', 1995, 'F', 240), +(155992, 'Shelly', 1995, 'F', 240), +(155993, 'Griselda', 1995, 'F', 239), +(155994, 'Ingrid', 1995, 'F', 239), +(155995, 'Mindy', 1995, 'F', 239), +(155996, 'Yasmeen', 1995, 'F', 239), +(155997, 'Katlynn', 1995, 'F', 238), +(155998, 'Monika', 1995, 'F', 238), +(155999, 'Jackie', 1995, 'F', 237), +(156000, 'Kayli', 1995, 'F', 237), +(156001, 'Kaycee', 1995, 'F', 236), +(156002, 'Aileen', 1995, 'F', 235), +(156003, 'Alycia', 1995, 'F', 235), +(156004, 'Jalisa', 1995, 'F', 235), +(156005, 'Latisha', 1995, 'F', 235), +(156006, 'Betty', 1995, 'F', 234), +(156007, 'Danica', 1995, 'F', 234), +(156008, 'Layla', 1995, 'F', 234), +(156009, 'Alysia', 1995, 'F', 233), +(156010, 'Salina', 1995, 'F', 233), +(156011, 'Terra', 1995, 'F', 233), +(156012, 'Viridiana', 1995, 'F', 233), +(156013, 'Abbigail', 1995, 'F', 232), +(156014, 'Aja', 1995, 'F', 232), +(156015, 'Kendal', 1995, 'F', 232), +(156016, 'Audra', 1995, 'F', 231), +(156017, 'Celine', 1995, 'F', 231), +(156018, 'Damaris', 1995, 'F', 231), +(156019, 'Lacie', 1995, 'F', 231), +(156020, 'Sarina', 1995, 'F', 231), +(156021, 'Eryn', 1995, 'F', 230), +(156022, 'Gabriel', 1995, 'F', 230), +(156023, 'Leigh', 1995, 'F', 230), +(156024, 'Adrian', 1995, 'F', 229), +(156025, 'Billie', 1995, 'F', 229), +(156026, 'Emerald', 1995, 'F', 229), +(156027, 'Gwendolyn', 1995, 'F', 228), +(156028, 'Brittanie', 1995, 'F', 227), +(156029, 'Malia', 1995, 'F', 227), +(156030, 'Hali', 1995, 'F', 226), +(156031, 'Karley', 1995, 'F', 226), +(156032, 'Myra', 1995, 'F', 226), +(156033, 'Noel', 1995, 'F', 226), +(156034, 'Daphne', 1995, 'F', 225), +(156035, 'Miracle', 1995, 'F', 225), +(156036, 'Anjelica', 1995, 'F', 223), +(156037, 'Unknown', 1995, 'F', 223), +(156038, 'Elsa', 1995, 'F', 222), +(156039, 'Infant', 1995, 'F', 222), +(156040, 'Elisha', 1995, 'F', 221), +(156041, 'Gillian', 1995, 'F', 221), +(156042, 'Jazmyn', 1995, 'F', 221), +(156043, 'Kaci', 1995, 'F', 220), +(156044, 'Jessi', 1995, 'F', 219), +(156045, 'Mattie', 1995, 'F', 219), +(156046, 'Zoey', 1995, 'F', 219), +(156047, 'Maricela', 1995, 'F', 218), +(156048, 'Chaya', 1995, 'F', 217), +(156049, 'Christin', 1995, 'F', 217), +(156050, 'Delia', 1995, 'F', 217), +(156051, 'Leila', 1995, 'F', 216), +(156052, 'Princess', 1995, 'F', 216), +(156053, 'Asha', 1995, 'F', 215), +(156054, 'Kalie', 1995, 'F', 215), +(156055, 'Lorraine', 1995, 'F', 215), +(156056, 'Unique', 1995, 'F', 215), +(156057, 'Alysa', 1995, 'F', 214), +(156058, 'Iridian', 1995, 'F', 214), +(156059, 'Terri', 1995, 'F', 214), +(156060, 'Emilia', 1995, 'F', 213), +(156061, 'Esperanza', 1995, 'F', 213), +(156062, 'Giovanna', 1995, 'F', 213), +(156063, 'Haylie', 1995, 'F', 213), +(156064, 'Laken', 1995, 'F', 213), +(156065, 'Eunice', 1995, 'F', 212), +(156066, 'Janette', 1995, 'F', 212), +(156067, 'Martina', 1995, 'F', 212), +(156068, 'Alecia', 1995, 'F', 211), +(156069, 'Kia', 1995, 'F', 211), +(156070, 'Lynn', 1995, 'F', 211), +(156071, 'Pauline', 1995, 'F', 211), +(156072, 'Stormy', 1995, 'F', 211), +(156073, 'Jami', 1995, 'F', 210), +(156074, 'Marley', 1995, 'F', 210), +(156075, 'Sommer', 1995, 'F', 210), +(156076, 'Brooklynn', 1995, 'F', 209), +(156077, 'Ivette', 1995, 'F', 209), +(156078, 'Alia', 1995, 'F', 208), +(156079, 'Patience', 1995, 'F', 208), +(156080, 'Tristen', 1995, 'F', 208), +(156081, 'Alesha', 1995, 'F', 207), +(156082, 'Alivia', 1995, 'F', 207), +(156083, 'Keanna', 1995, 'F', 207), +(156084, 'Lilly', 1995, 'F', 207), +(156085, 'Britany', 1995, 'F', 206), +(156086, 'Corey', 1995, 'F', 206), +(156087, 'Kayley', 1995, 'F', 206), +(156088, 'Tiera', 1995, 'F', 206), +(156089, 'Anika', 1995, 'F', 205), +(156090, 'Domonique', 1995, 'F', 205), +(156091, 'Iliana', 1995, 'F', 205), +(156092, 'Keely', 1995, 'F', 205), +(156093, 'Kristal', 1995, 'F', 205), +(156094, 'Lana', 1995, 'F', 205), +(156095, 'Maira', 1995, 'F', 205), +(156096, 'Carson', 1995, 'F', 204), +(156097, 'Blake', 1995, 'F', 203), +(156098, 'Cydney', 1995, 'F', 203), +(156099, 'Daija', 1995, 'F', 203), +(156100, 'Fallon', 1995, 'F', 203), +(156101, 'Hana', 1995, 'F', 203), +(156102, 'Jodie', 1995, 'F', 203), +(156103, 'Sherry', 1995, 'F', 203), +(156104, 'Zhane', 1995, 'F', 203), +(156105, 'Celena', 1995, 'F', 202), +(156106, 'Katerina', 1995, 'F', 202), +(156107, 'Lia', 1995, 'F', 202), +(156108, 'Reina', 1995, 'F', 202), +(156109, 'Susanna', 1995, 'F', 202), +(156110, 'Sydnie', 1995, 'F', 202), +(156111, 'Flor', 1995, 'F', 201), +(156112, 'Patrice', 1995, 'F', 201), +(156113, 'Yazmin', 1995, 'F', 201), +(156114, 'Quinn', 1995, 'F', 200), +(156115, 'Catalina', 1995, 'F', 199), +(156116, 'Isis', 1995, 'F', 199), +(156117, 'Leandra', 1995, 'F', 199), +(156118, 'Marisela', 1995, 'F', 199), +(156119, 'Tracey', 1995, 'F', 199), +(156120, 'Beatrice', 1995, 'F', 198), +(156121, 'Fernanda', 1995, 'F', 198), +(156122, 'Mariam', 1995, 'F', 198), +(156123, 'Maryann', 1995, 'F', 198), +(156124, 'Irma', 1995, 'F', 197), +(156125, 'Kinsey', 1995, 'F', 197), +(156126, 'Lizeth', 1995, 'F', 197), +(156127, 'Marcella', 1995, 'F', 197), +(156128, 'Marianna', 1995, 'F', 197), +(156129, 'Melisa', 1995, 'F', 197), +(156130, 'Salena', 1995, 'F', 197), +(156131, 'Shyann', 1995, 'F', 197), +(156132, 'Staci', 1995, 'F', 197), +(156133, 'Tatianna', 1995, 'F', 197), +(156134, 'Tiffanie', 1995, 'F', 197), +(156135, 'Juliette', 1995, 'F', 196), +(156136, 'Ricki', 1995, 'F', 196), +(156137, 'Selene', 1995, 'F', 196), +(156138, 'Chantelle', 1995, 'F', 195), +(156139, 'Daja', 1995, 'F', 195), +(156140, 'Lesly', 1995, 'F', 195), +(156141, 'Annabelle', 1995, 'F', 194), +(156142, 'Annika', 1995, 'F', 194), +(156143, 'Kyleigh', 1995, 'F', 194), +(156144, 'Nayeli', 1995, 'F', 194), +(156145, 'Sienna', 1995, 'F', 194), +(156146, 'Valentina', 1995, 'F', 194), +(156147, 'Annamarie', 1995, 'F', 193), +(156148, 'Ciarra', 1995, 'F', 193), +(156149, 'Jerrica', 1995, 'F', 193), +(156150, 'Dina', 1995, 'F', 192), +(156151, 'Jaimie', 1995, 'F', 192), +(156152, 'Jamila', 1995, 'F', 192), +(156153, 'Maci', 1995, 'F', 192), +(156154, 'Belinda', 1995, 'F', 191), +(156155, 'Kenzie', 1995, 'F', 191), +(156156, 'Kimberlee', 1995, 'F', 191), +(156157, 'Corrina', 1995, 'F', 190), +(156158, 'Katheryn', 1995, 'F', 190), +(156159, 'Nikita', 1995, 'F', 190), +(156160, 'Yajaira', 1995, 'F', 190), +(156161, 'Amie', 1995, 'F', 189), +(156162, 'Ashely', 1995, 'F', 189), +(156163, 'Destany', 1995, 'F', 189), +(156164, 'Geneva', 1995, 'F', 189), +(156165, 'Kathrine', 1995, 'F', 189), +(156166, 'Luisa', 1995, 'F', 189), +(156167, 'Tiarra', 1995, 'F', 189), +(156168, 'Astrid', 1995, 'F', 188), +(156169, 'Danyelle', 1995, 'F', 188), +(156170, 'Lourdes', 1995, 'F', 188), +(156171, 'Mari', 1995, 'F', 188), +(156172, 'Marlena', 1995, 'F', 188), +(156173, 'Amani', 1995, 'F', 187), +(156174, 'Tayla', 1995, 'F', 187), +(156175, 'China', 1995, 'F', 186), +(156176, 'Elyssa', 1995, 'F', 186), +(156177, 'Kimberley', 1995, 'F', 185), +(156178, 'Demetria', 1995, 'F', 184), +(156179, 'Joann', 1995, 'F', 184), +(156180, 'Lakeisha', 1995, 'F', 184), +(156181, 'Paloma', 1995, 'F', 184), +(156182, 'Shaniqua', 1995, 'F', 184), +(156183, 'Tatum', 1995, 'F', 184), +(156184, 'Tricia', 1995, 'F', 184), +(156185, 'Marlee', 1995, 'F', 183), +(156186, 'Vanesa', 1995, 'F', 183), +(156187, 'Lissette', 1995, 'F', 182), +(156188, 'Leeann', 1995, 'F', 181), +(156189, 'Marjorie', 1995, 'F', 181), +(156190, 'Maxine', 1995, 'F', 181), +(156191, 'Tyesha', 1995, 'F', 180), +(156192, 'Denisse', 1995, 'F', 179), +(156193, 'Samara', 1995, 'F', 179), +(156194, 'Brynn', 1995, 'F', 178), +(156195, 'Janine', 1995, 'F', 178), +(156196, 'Lidia', 1995, 'F', 178), +(156197, 'Maia', 1995, 'F', 178), +(156198, 'Marcela', 1995, 'F', 178), +(156199, 'Meranda', 1995, 'F', 178), +(156200, 'Shae', 1995, 'F', 178), +(156201, 'Traci', 1995, 'F', 178), +(156202, 'Brea', 1995, 'F', 177), +(156203, 'Joana', 1995, 'F', 177), +(156204, 'Keana', 1995, 'F', 177), +(156205, 'Reanna', 1995, 'F', 177), +(156206, 'Kassie', 1995, 'F', 176), +(156207, 'Olga', 1995, 'F', 176), +(156208, 'Darien', 1995, 'F', 175), +(156209, 'Yessica', 1995, 'F', 175), +(156210, 'Bernadette', 1995, 'F', 174), +(156211, 'Dylan', 1995, 'F', 174), +(156212, 'Georgina', 1995, 'F', 174), +(156213, 'Chana', 1995, 'F', 173), +(156214, 'Kaylah', 1995, 'F', 173), +(156215, 'Xiomara', 1995, 'F', 173), +(156216, 'Austin', 1995, 'F', 172), +(156217, 'Makala', 1995, 'F', 172), +(156218, 'Merissa', 1995, 'F', 172), +(156219, 'Trista', 1995, 'F', 172), +(156220, 'Bridgett', 1995, 'F', 171), +(156221, 'Eliana', 1995, 'F', 171), +(156222, 'Juliet', 1995, 'F', 171), +(156223, 'Roxanna', 1995, 'F', 171), +(156224, 'Ryann', 1995, 'F', 171), +(156225, 'Sheridan', 1995, 'F', 171), +(156226, 'Betsy', 1995, 'F', 170), +(156227, 'Breeanna', 1995, 'F', 170), +(156228, 'Courteney', 1995, 'F', 170), +(156229, 'Liza', 1995, 'F', 170), +(156230, 'Madyson', 1995, 'F', 170), +(156231, 'Lisette', 1995, 'F', 169), +(156232, 'Stefani', 1995, 'F', 169), +(156233, 'Elana', 1995, 'F', 168), +(156234, 'Leann', 1995, 'F', 168), +(156235, 'Lynette', 1995, 'F', 168), +(156236, 'Serina', 1995, 'F', 168), +(156237, 'Adilene', 1995, 'F', 167), +(156238, 'Elsie', 1995, 'F', 167), +(156239, 'Ivana', 1995, 'F', 167), +(156240, 'Keyana', 1995, 'F', 167), +(156241, 'Keyanna', 1995, 'F', 167), +(156242, 'Lexis', 1995, 'F', 167), +(156243, 'Michael', 1995, 'F', 167), +(156244, 'Ansley', 1995, 'F', 166), +(156245, 'Colette', 1995, 'F', 166), +(156246, 'Dominque', 1995, 'F', 166), +(156247, 'Dora', 1995, 'F', 166), +(156248, 'Laurie', 1995, 'F', 166), +(156249, 'Shianne', 1995, 'F', 166), +(156250, 'Corrine', 1995, 'F', 165), +(156251, 'Kaylan', 1995, 'F', 165), +(156252, 'Latoya', 1995, 'F', 165), +(156253, 'Leilani', 1995, 'F', 165), +(156254, 'Lynsey', 1995, 'F', 165), +(156255, 'Mai', 1995, 'F', 165), +(156256, 'Nikole', 1995, 'F', 165), +(156257, 'Raina', 1995, 'F', 165), +(156258, 'Annmarie', 1995, 'F', 164), +(156259, 'Brittnee', 1995, 'F', 164), +(156260, 'Katia', 1995, 'F', 164), +(156261, 'Coral', 1995, 'F', 163), +(156262, 'Danae', 1995, 'F', 163), +(156263, 'Dara', 1995, 'F', 163), +(156264, 'Lina', 1995, 'F', 163), +(156265, 'Lyndsay', 1995, 'F', 163), +(156266, 'Cherish', 1995, 'F', 162), +(156267, 'Halley', 1995, 'F', 162), +(156268, 'Hazel', 1995, 'F', 162), +(156269, 'Janel', 1995, 'F', 162), +(156270, 'Joan', 1995, 'F', 162), +(156271, 'Violet', 1995, 'F', 162), +(156272, 'Bree', 1995, 'F', 161), +(156273, 'Evelin', 1995, 'F', 161), +(156274, 'Francis', 1995, 'F', 161), +(156275, 'Keila', 1995, 'F', 161), +(156276, 'Myesha', 1995, 'F', 161), +(156277, 'Caitlynn', 1995, 'F', 160), +(156278, 'Dajah', 1995, 'F', 160), +(156279, 'Gisela', 1995, 'F', 160), +(156280, 'Jesenia', 1995, 'F', 160), +(156281, 'Quanisha', 1995, 'F', 160), +(156282, 'Shay', 1995, 'F', 160), +(156283, 'Dejah', 1995, 'F', 159), +(156284, 'Jasmyne', 1995, 'F', 159), +(156285, 'Jessenia', 1995, 'F', 159), +(156286, 'Jolene', 1995, 'F', 159), +(156287, 'Kaelin', 1995, 'F', 159), +(156288, 'Nakia', 1995, 'F', 159), +(156289, 'Cinthia', 1995, 'F', 158), +(156290, 'Estefany', 1995, 'F', 158), +(156291, 'Hayden', 1995, 'F', 158), +(156292, 'Jayde', 1995, 'F', 158), +(156293, 'Jazmyne', 1995, 'F', 158), +(156294, 'Jean', 1995, 'F', 158), +(156295, 'Pearl', 1995, 'F', 158), +(156296, 'Raegan', 1995, 'F', 158), +(156297, 'Chastity', 1995, 'F', 157), +(156298, 'Estefani', 1995, 'F', 157), +(156299, 'Adrianne', 1995, 'F', 156), +(156300, 'Mariel', 1995, 'F', 156), +(156301, 'Yaritza', 1995, 'F', 156), +(156302, 'Darcy', 1995, 'F', 155), +(156303, 'Delilah', 1995, 'F', 155), +(156304, 'Harmony', 1995, 'F', 155), +(156305, 'Jasmyn', 1995, 'F', 155), +(156306, 'Keara', 1995, 'F', 155), +(156307, 'Keyonna', 1995, 'F', 155), +(156308, 'Shelley', 1995, 'F', 155), +(156309, 'Abagail', 1995, 'F', 154), +(156310, 'Camilla', 1995, 'F', 154), +(156311, 'Deana', 1995, 'F', 154), +(156312, 'Jewel', 1995, 'F', 154), +(156313, 'Lora', 1995, 'F', 154), +(156314, 'Symone', 1995, 'F', 154), +(156315, 'Brieanna', 1995, 'F', 153), +(156316, 'Danika', 1995, 'F', 153), +(156317, 'Kalee', 1995, 'F', 153), +(156318, 'London', 1995, 'F', 153), +(156319, 'Marian', 1995, 'F', 153), +(156320, 'Presley', 1995, 'F', 153), +(156321, 'Savana', 1995, 'F', 153), +(156322, 'Marianne', 1995, 'F', 152), +(156323, 'Rubi', 1995, 'F', 152), +(156324, 'Aria', 1995, 'F', 151), +(156325, 'Ashtyn', 1995, 'F', 151), +(156326, 'Lilian', 1995, 'F', 151), +(156327, 'Shyla', 1995, 'F', 151), +(156328, 'Belen', 1995, 'F', 150), +(156329, 'Janna', 1995, 'F', 150), +(156330, 'Mireya', 1995, 'F', 150), +(156331, 'Rosemarie', 1995, 'F', 150), +(156332, 'Alyssia', 1995, 'F', 149), +(156333, 'Annemarie', 1995, 'F', 149), +(156334, 'Halee', 1995, 'F', 149), +(156335, 'Ivonne', 1995, 'F', 149), +(156336, 'Malika', 1995, 'F', 149), +(156337, 'Deandra', 1995, 'F', 148), +(156338, 'Kaytlyn', 1995, 'F', 148), +(156339, 'Alliyah', 1995, 'F', 147), +(156340, 'Amira', 1995, 'F', 147), +(156341, 'Daijah', 1995, 'F', 147), +(156342, 'Felisha', 1995, 'F', 147), +(156343, 'Janell', 1995, 'F', 147), +(156344, 'Kayleen', 1995, 'F', 147), +(156345, 'Suzanna', 1995, 'F', 147), +(156346, 'Tamika', 1995, 'F', 147), +(156347, 'Jeannette', 1995, 'F', 146), +(156348, 'Jesica', 1995, 'F', 146), +(156349, 'Kaytlin', 1995, 'F', 146), +(156350, 'Kelcie', 1995, 'F', 146), +(156351, 'Madisen', 1995, 'F', 146), +(156352, 'Rhianna', 1995, 'F', 146), +(156353, 'Andria', 1995, 'F', 145), +(156354, 'Desire', 1995, 'F', 145), +(156355, 'Doris', 1995, 'F', 145), +(156356, 'Micayla', 1995, 'F', 145), +(156357, 'Allegra', 1995, 'F', 144), +(156358, 'Amalia', 1995, 'F', 144), +(156359, 'Anais', 1995, 'F', 144), +(156360, 'Brittaney', 1995, 'F', 144), +(156361, 'Bryce', 1995, 'F', 144), +(156362, 'Cathryn', 1995, 'F', 144), +(156363, 'Darrian', 1995, 'F', 144), +(156364, 'Iman', 1995, 'F', 144), +(156365, 'Johnna', 1995, 'F', 144), +(156366, 'Tristin', 1995, 'F', 144), +(156367, 'Alexander', 1995, 'F', 143), +(156368, 'Alize', 1995, 'F', 143), +(156369, 'Alyse', 1995, 'F', 143), +(156370, 'Anabel', 1995, 'F', 143), +(156371, 'Brandee', 1995, 'F', 143), +(156372, 'Cathy', 1995, 'F', 143), +(156373, 'Cecily', 1995, 'F', 143), +(156374, 'Destinie', 1995, 'F', 143), +(156375, 'Emmalee', 1995, 'F', 143), +(156376, 'Jaden', 1995, 'F', 143), +(156377, 'Joslyn', 1995, 'F', 143), +(156378, 'Marla', 1995, 'F', 143), +(156379, 'Priya', 1995, 'F', 143), +(156380, 'Bertha', 1995, 'F', 142), +(156381, 'Debbie', 1995, 'F', 142), +(156382, 'Eleni', 1995, 'F', 142), +(156383, 'Leigha', 1995, 'F', 142), +(156384, 'Rayna', 1995, 'F', 142), +(156385, 'Abigale', 1995, 'F', 141), +(156386, 'Ada', 1995, 'F', 141), +(156387, 'Amina', 1995, 'F', 141), +(156388, 'Cali', 1995, 'F', 141), +(156389, 'Cody', 1995, 'F', 141), +(156390, 'Kacy', 1995, 'F', 141), +(156391, 'Kierstin', 1995, 'F', 141), +(156392, 'Libby', 1995, 'F', 141), +(156393, 'Monet', 1995, 'F', 141), +(156394, 'Rhonda', 1995, 'F', 141), +(156395, 'Shanelle', 1995, 'F', 141), +(156396, 'Sheena', 1995, 'F', 141), +(156397, 'Anya', 1995, 'F', 140), +(156398, 'Kenna', 1995, 'F', 140), +(156399, 'Whitley', 1995, 'F', 140), +(156400, 'Addie', 1995, 'F', 139), +(156401, 'Amara', 1995, 'F', 139), +(156402, 'Chante', 1995, 'F', 139), +(156403, 'Jazzmine', 1995, 'F', 139), +(156404, 'Kandace', 1995, 'F', 139), +(156405, 'Shante', 1995, 'F', 139), +(156406, 'Catrina', 1995, 'F', 138), +(156407, 'Elexis', 1995, 'F', 138), +(156408, 'Estrella', 1995, 'F', 138), +(156409, 'Hilda', 1995, 'F', 138), +(156410, 'Marlen', 1995, 'F', 138), +(156411, 'Marta', 1995, 'F', 138), +(156412, 'Michaella', 1995, 'F', 138), +(156413, 'Rosario', 1995, 'F', 138), +(156414, 'Susannah', 1995, 'F', 138), +(156415, 'Valencia', 1995, 'F', 138), +(156416, 'Aubrie', 1995, 'F', 137), +(156417, 'Chandra', 1995, 'F', 137), +(156418, 'Eve', 1995, 'F', 137), +(156419, 'Kelsy', 1995, 'F', 137), +(156420, 'Lillie', 1995, 'F', 137), +(156421, 'Trina', 1995, 'F', 137), +(156422, 'Aracely', 1995, 'F', 136), +(156423, 'Deidra', 1995, 'F', 136), +(156424, 'Sirena', 1995, 'F', 136), +(156425, 'Dasha', 1995, 'F', 135), +(156426, 'Glenda', 1995, 'F', 135), +(156427, 'Kalynn', 1995, 'F', 135), +(156428, 'Kim', 1995, 'F', 135), +(156429, 'Rosalinda', 1995, 'F', 135), +(156430, 'Winter', 1995, 'F', 135), +(156431, 'Areli', 1995, 'F', 134), +(156432, 'Cherokee', 1995, 'F', 134), +(156433, 'Jacey', 1995, 'F', 134), +(156434, 'Kalli', 1995, 'F', 134), +(156435, 'Abigayle', 1995, 'F', 133), +(156436, 'Alexi', 1995, 'F', 133), +(156437, 'Britni', 1995, 'F', 133), +(156438, 'Dayana', 1995, 'F', 133), +(156439, 'Jamesha', 1995, 'F', 133), +(156440, 'Kanisha', 1995, 'F', 133), +(156441, 'Maeve', 1995, 'F', 133), +(156442, 'Mya', 1995, 'F', 133), +(156443, 'Renae', 1995, 'F', 133), +(156444, 'Ariella', 1995, 'F', 132), +(156445, 'Clarisa', 1995, 'F', 132), +(156446, 'Greta', 1995, 'F', 132), +(156447, 'Holli', 1995, 'F', 132), +(156448, 'Jackeline', 1995, 'F', 132), +(156449, 'Jazzmin', 1995, 'F', 132), +(156450, 'Santana', 1995, 'F', 132), +(156451, 'Alix', 1995, 'F', 131), +(156452, 'Brigitte', 1995, 'F', 131), +(156453, 'Deidre', 1995, 'F', 131), +(156454, 'Edna', 1995, 'F', 131), +(156455, 'Kiarra', 1995, 'F', 131), +(156456, 'Rosie', 1995, 'F', 131), +(156457, 'Annabel', 1995, 'F', 130), +(156458, 'Elle', 1995, 'F', 130), +(156459, 'Krysten', 1995, 'F', 130), +(156460, 'Porsha', 1995, 'F', 130), +(156461, 'Rylie', 1995, 'F', 130), +(156462, 'Shaylee', 1995, 'F', 130), +(156463, 'Shivani', 1995, 'F', 130), +(156464, 'Yamilex', 1995, 'F', 130), +(156465, 'Jacquelin', 1995, 'F', 129), +(156466, 'Jalyn', 1995, 'F', 129), +(156467, 'Josefina', 1995, 'F', 129), +(156468, 'Niki', 1995, 'F', 129), +(156469, 'Shantell', 1995, 'F', 129), +(156470, 'Suzette', 1995, 'F', 129), +(156471, 'Adina', 1995, 'F', 128), +(156472, 'Annalise', 1995, 'F', 128), +(156473, 'Chelsy', 1995, 'F', 128), +(156474, 'Lilia', 1995, 'F', 128), +(156475, 'Richelle', 1995, 'F', 128), +(156476, 'Sky', 1995, 'F', 128), +(156477, 'Aundrea', 1995, 'F', 127), +(156478, 'Cailin', 1995, 'F', 127), +(156479, 'Dania', 1995, 'F', 127), +(156480, 'Daria', 1995, 'F', 127), +(156481, 'Daysha', 1995, 'F', 127), +(156482, 'Dena', 1995, 'F', 127), +(156483, 'Gracie', 1995, 'F', 127), +(156484, 'Kayle', 1995, 'F', 127), +(156485, 'Kristan', 1995, 'F', 127), +(156486, 'Magaly', 1995, 'F', 127), +(156487, 'Serenity', 1995, 'F', 127), +(156488, 'Valarie', 1995, 'F', 127), +(156489, 'Aliza', 1995, 'F', 126), +(156490, 'Kaylen', 1995, 'F', 126), +(156491, 'Samira', 1995, 'F', 126), +(156492, 'Anisha', 1995, 'F', 125), +(156493, 'Chrystal', 1995, 'F', 125), +(156494, 'Codi', 1995, 'F', 125), +(156495, 'Estefania', 1995, 'F', 125), +(156496, 'Grecia', 1995, 'F', 125), +(156497, 'Hilary', 1995, 'F', 125), +(156498, 'Mina', 1995, 'F', 125), +(156499, 'Stella', 1995, 'F', 125), +(156500, 'Vicky', 1995, 'F', 125), +(156501, 'Andie', 1995, 'F', 124), +(156502, 'Dolores', 1995, 'F', 124), +(156503, 'Kyle', 1995, 'F', 124), +(156504, 'Lila', 1995, 'F', 124), +(156505, 'Moira', 1995, 'F', 124), +(156506, 'Regine', 1995, 'F', 124), +(156507, 'Amberly', 1995, 'F', 123), +(156508, 'Anyssa', 1995, 'F', 123), +(156509, 'Chynna', 1995, 'F', 123), +(156510, 'Connor', 1995, 'F', 123), +(156511, 'Dionna', 1995, 'F', 123), +(156512, 'Franchesca', 1995, 'F', 123), +(156513, 'Jaimee', 1995, 'F', 123), +(156514, 'Loretta', 1995, 'F', 123), +(156515, 'Reba', 1995, 'F', 123), +(156516, 'Spencer', 1995, 'F', 123), +(156517, 'Breona', 1995, 'F', 122), +(156518, 'Camila', 1995, 'F', 122), +(156519, 'Chanelle', 1995, 'F', 122), +(156520, 'Jensen', 1995, 'F', 122), +(156521, 'Laci', 1995, 'F', 122), +(156522, 'Madelynn', 1995, 'F', 122), +(156523, 'Maryam', 1995, 'F', 122), +(156524, 'Mercedez', 1995, 'F', 122), +(156525, 'Taylar', 1995, 'F', 122), +(156526, 'Aliya', 1995, 'F', 121), +(156527, 'Anisa', 1995, 'F', 121), +(156528, 'Baylie', 1995, 'F', 121), +(156529, 'Calli', 1995, 'F', 121), +(156530, 'Charmaine', 1995, 'F', 121), +(156531, 'Felicity', 1995, 'F', 121), +(156532, 'Isela', 1995, 'F', 121), +(156533, 'Jacinda', 1995, 'F', 121), +(156534, 'Jerica', 1995, 'F', 121), +(156535, 'Jody', 1995, 'F', 121), +(156536, 'Kami', 1995, 'F', 121), +(156537, 'Kelci', 1995, 'F', 121), +(156538, 'Kirstie', 1995, 'F', 121), +(156539, 'Sonja', 1995, 'F', 121), +(156540, 'Stormie', 1995, 'F', 121), +(156541, 'Tanesha', 1995, 'F', 121), +(156542, 'Angeline', 1995, 'F', 120), +(156543, 'Darla', 1995, 'F', 120), +(156544, 'Joi', 1995, 'F', 120), +(156545, 'Linsey', 1995, 'F', 120), +(156546, 'Marguerite', 1995, 'F', 120), +(156547, 'Marielle', 1995, 'F', 120), +(156548, 'Mikaila', 1995, 'F', 120), +(156549, 'Rosalie', 1995, 'F', 120), +(156550, 'Yesica', 1995, 'F', 120), +(156551, 'Angelia', 1995, 'F', 119), +(156552, 'Ilana', 1995, 'F', 119), +(156553, 'Kadijah', 1995, 'F', 119), +(156554, 'Kasie', 1995, 'F', 119), +(156555, 'Michala', 1995, 'F', 119), +(156556, 'Page', 1995, 'F', 119), +(156557, 'Shawnee', 1995, 'F', 119), +(156558, 'Siobhan', 1995, 'F', 119), +(156559, 'Taelor', 1995, 'F', 119), +(156560, 'Treasure', 1995, 'F', 119), +(156561, 'Arely', 1995, 'F', 118), +(156562, 'Dani', 1995, 'F', 118), +(156563, 'Frankie', 1995, 'F', 118), +(156564, 'Grayson', 1995, 'F', 118), +(156565, 'Johana', 1995, 'F', 118), +(156566, 'Jordin', 1995, 'F', 118), +(156567, 'Kennedi', 1995, 'F', 118), +(156568, 'Nathaly', 1995, 'F', 118), +(156569, 'Yahaira', 1995, 'F', 118), +(156570, 'Brett', 1995, 'F', 117), +(156571, 'Brittny', 1995, 'F', 117), +(156572, 'Casie', 1995, 'F', 117), +(156573, 'Charlie', 1995, 'F', 117), +(156574, 'Farrah', 1995, 'F', 117), +(156575, 'Francisca', 1995, 'F', 117), +(156576, 'Jourdan', 1995, 'F', 117), +(156577, 'Krystina', 1995, 'F', 117), +(156578, 'Marcia', 1995, 'F', 117), +(156579, 'Skyla', 1995, 'F', 117), +(156580, 'Cassondra', 1995, 'F', 116), +(156581, 'Geena', 1995, 'F', 116), +(156582, 'Kaylea', 1995, 'F', 116), +(156583, 'Kyana', 1995, 'F', 116), +(156584, 'Margo', 1995, 'F', 116), +(156585, 'Nichelle', 1995, 'F', 116), +(156586, 'Rivka', 1995, 'F', 116), +(156587, 'Tasia', 1995, 'F', 116), +(156588, 'Allysa', 1995, 'F', 115), +(156589, 'America', 1995, 'F', 115), +(156590, 'Geraldine', 1995, 'F', 115), +(156591, 'Haven', 1995, 'F', 115), +(156592, 'Keona', 1995, 'F', 115), +(156593, 'Lucille', 1995, 'F', 115), +(156594, 'Malinda', 1995, 'F', 115), +(156595, 'Mika', 1995, 'F', 115), +(156596, 'Rena', 1995, 'F', 115), +(156597, 'Briona', 1995, 'F', 114), +(156598, 'Chyna', 1995, 'F', 114), +(156599, 'Deirdre', 1995, 'F', 114), +(156600, 'Jazlyn', 1995, 'F', 114), +(156601, 'Shoshana', 1995, 'F', 114), +(156602, 'Siera', 1995, 'F', 114), +(156603, 'Alea', 1995, 'F', 113), +(156604, 'Alexys', 1995, 'F', 113), +(156605, 'Annalisa', 1995, 'F', 113), +(156606, 'Haily', 1995, 'F', 113), +(156607, 'Liberty', 1995, 'F', 113), +(156608, 'Lisbeth', 1995, 'F', 113), +(156609, 'Louise', 1995, 'F', 113), +(156610, 'Amaris', 1995, 'F', 112), +(156611, 'Carleigh', 1995, 'F', 112), +(156612, 'Elexus', 1995, 'F', 112), +(156613, 'Kady', 1995, 'F', 112), +(156614, 'Kenisha', 1995, 'F', 112), +(156615, 'Keyona', 1995, 'F', 112), +(156616, 'Latrice', 1995, 'F', 112), +(156617, 'Linnea', 1995, 'F', 112), +(156618, 'Mona', 1995, 'F', 112), +(156619, 'Rhea', 1995, 'F', 112), +(156620, 'Jorden', 1995, 'F', 111), +(156621, 'Kati', 1995, 'F', 111), +(156622, 'Lianna', 1995, 'F', 111), +(156623, 'Natalee', 1995, 'F', 111), +(156624, 'Rebecka', 1995, 'F', 111), +(156625, 'Tera', 1995, 'F', 111), +(156626, 'Zoie', 1995, 'F', 111), +(156627, 'Bethanie', 1995, 'F', 110), +(156628, 'Kaylene', 1995, 'F', 110), +(156629, 'Laila', 1995, 'F', 110), +(156630, 'Maiya', 1995, 'F', 110), +(156631, 'Nyasia', 1995, 'F', 110), +(156632, 'Racquel', 1995, 'F', 110), +(156633, 'Ramona', 1995, 'F', 110), +(156634, 'Tanner', 1995, 'F', 110), +(156635, 'Xochitl', 1995, 'F', 110), +(156636, 'Ayesha', 1995, 'F', 109), +(156637, 'Bernice', 1995, 'F', 109), +(156638, 'Corinna', 1995, 'F', 109), +(156639, 'Harlie', 1995, 'F', 109), +(156640, 'Kendyl', 1995, 'F', 109), +(156641, 'Makaela', 1995, 'F', 109), +(156642, 'Becky', 1995, 'F', 108), +(156643, 'Bryn', 1995, 'F', 108), +(156644, 'Christal', 1995, 'F', 108), +(156645, 'Colby', 1995, 'F', 108), +(156646, 'Deena', 1995, 'F', 108), +(156647, 'Delanie', 1995, 'F', 108), +(156648, 'Madelaine', 1995, 'F', 108), +(156649, 'Marion', 1995, 'F', 108), +(156650, 'Natali', 1995, 'F', 108), +(156651, 'Therese', 1995, 'F', 108), +(156652, 'Adeline', 1995, 'F', 107), +(156653, 'Brittnie', 1995, 'F', 107), +(156654, 'Caleigh', 1995, 'F', 107), +(156655, 'Keira', 1995, 'F', 107), +(156656, 'Korina', 1995, 'F', 107), +(156657, 'Madilyn', 1995, 'F', 107), +(156658, 'Meg', 1995, 'F', 107), +(156659, 'Nicolle', 1995, 'F', 107), +(156660, 'Roberta', 1995, 'F', 107), +(156661, 'Tracie', 1995, 'F', 107), +(156662, 'Acacia', 1995, 'F', 106), +(156663, 'Cady', 1995, 'F', 106), +(156664, 'Deonna', 1995, 'F', 106), +(156665, 'Female', 1995, 'F', 106), +(156666, 'Harlee', 1995, 'F', 106), +(156667, 'Ileana', 1995, 'F', 106), +(156668, 'Kimber', 1995, 'F', 106), +(156669, 'Rowan', 1995, 'F', 106), +(156670, 'Sequoia', 1995, 'F', 106), +(156671, 'Bella', 1995, 'F', 105), +(156672, 'Daniel', 1995, 'F', 105), +(156673, 'Deasia', 1995, 'F', 105), +(156674, 'Jaelyn', 1995, 'F', 105), +(156675, 'Makaila', 1995, 'F', 105), +(156676, 'Rae', 1995, 'F', 105), +(156677, 'Shanika', 1995, 'F', 105), +(156678, 'Tyanna', 1995, 'F', 105), +(156679, 'Becca', 1995, 'F', 104), +(156680, 'Cari', 1995, 'F', 104), +(156681, 'Chiara', 1995, 'F', 104), +(156682, 'Christopher', 1995, 'F', 104), +(156683, 'Lynda', 1995, 'F', 104), +(156684, 'Samatha', 1995, 'F', 104), +(156685, 'Autum', 1995, 'F', 103), +(156686, 'Courtnie', 1995, 'F', 103), +(156687, 'Jessa', 1995, 'F', 103), +(156688, 'Keyla', 1995, 'F', 103), +(156689, 'Kiah', 1995, 'F', 103), +(156690, 'Kimberlyn', 1995, 'F', 103), +(156691, 'Kirstyn', 1995, 'F', 103), +(156692, 'Lee', 1995, 'F', 103), +(156693, 'Teri', 1995, 'F', 103), +(156694, 'Chase', 1995, 'F', 102), +(156695, 'Hadley', 1995, 'F', 102), +(156696, 'Jeanne', 1995, 'F', 102), +(156697, 'Jeannie', 1995, 'F', 102), +(156698, 'Kristiana', 1995, 'F', 102), +(156699, 'Torie', 1995, 'F', 102), +(156700, 'Kandice', 1995, 'F', 101), +(156701, 'Mickayla', 1995, 'F', 101), +(156702, 'Bayley', 1995, 'F', 100), +(156703, 'Cory', 1995, 'F', 100), +(156704, 'Ginger', 1995, 'F', 100), +(156705, 'Janee', 1995, 'F', 100), +(156706, 'Jayne', 1995, 'F', 100), +(156707, 'Kenyatta', 1995, 'F', 100), +(156708, 'Mallorie', 1995, 'F', 100), +(156709, 'Shannen', 1995, 'F', 100), +(156710, 'Tatyanna', 1995, 'F', 100), +(156711, 'Tory', 1995, 'F', 100), +(156712, 'Michael', 1995, 'M', 41403), +(156713, 'Matthew', 1995, 'M', 32874), +(156714, 'Christopher', 1995, 'M', 32668), +(156715, 'Jacob', 1995, 'M', 31122), +(156716, 'Joshua', 1995, 'M', 30715), +(156717, 'Nicholas', 1995, 'M', 29156), +(156718, 'Tyler', 1995, 'M', 29153), +(156719, 'Brandon', 1995, 'M', 26901), +(156720, 'Daniel', 1995, 'M', 26702), +(156721, 'Austin', 1995, 'M', 25906), +(156722, 'Andrew', 1995, 'M', 25842), +(156723, 'Joseph', 1995, 'M', 25337), +(156724, 'John', 1995, 'M', 23230), +(156725, 'Zachary', 1995, 'M', 23128), +(156726, 'Ryan', 1995, 'M', 23089), +(156727, 'David', 1995, 'M', 23029), +(156728, 'James', 1995, 'M', 22727), +(156729, 'Justin', 1995, 'M', 21579), +(156730, 'Anthony', 1995, 'M', 20480), +(156731, 'William', 1995, 'M', 20153), +(156732, 'Alexander', 1995, 'M', 19446), +(156733, 'Robert', 1995, 'M', 18583), +(156734, 'Jonathan', 1995, 'M', 18147), +(156735, 'Kyle', 1995, 'M', 16757), +(156736, 'Kevin', 1995, 'M', 15852), +(156737, 'Cody', 1995, 'M', 15564), +(156738, 'Thomas', 1995, 'M', 14159), +(156739, 'Christian', 1995, 'M', 13807), +(156740, 'Jordan', 1995, 'M', 13567), +(156741, 'Aaron', 1995, 'M', 13283), +(156742, 'Benjamin', 1995, 'M', 12709), +(156743, 'Eric', 1995, 'M', 12478), +(156744, 'Samuel', 1995, 'M', 12425), +(156745, 'Dylan', 1995, 'M', 12087), +(156746, 'Jose', 1995, 'M', 11779), +(156747, 'Brian', 1995, 'M', 10987), +(156748, 'Steven', 1995, 'M', 10660), +(156749, 'Adam', 1995, 'M', 10482), +(156750, 'Nathan', 1995, 'M', 10304), +(156751, 'Timothy', 1995, 'M', 9786), +(156752, 'Jason', 1995, 'M', 9001), +(156753, 'Richard', 1995, 'M', 8782), +(156754, 'Patrick', 1995, 'M', 8672), +(156755, 'Charles', 1995, 'M', 8474), +(156756, 'Sean', 1995, 'M', 8165), +(156757, 'Jesse', 1995, 'M', 7488), +(156758, 'Alex', 1995, 'M', 7422), +(156759, 'Jeremy', 1995, 'M', 7085), +(156760, 'Cameron', 1995, 'M', 7029), +(156761, 'Juan', 1995, 'M', 6981), +(156762, 'Logan', 1995, 'M', 6952), +(156763, 'Mark', 1995, 'M', 6886), +(156764, 'Hunter', 1995, 'M', 6713), +(156765, 'Caleb', 1995, 'M', 6651), +(156766, 'Connor', 1995, 'M', 6616), +(156767, 'Dakota', 1995, 'M', 6575), +(156768, 'Stephen', 1995, 'M', 6557), +(156769, 'Devin', 1995, 'M', 6187), +(156770, 'Luis', 1995, 'M', 6172), +(156771, 'Evan', 1995, 'M', 6088), +(156772, 'Trevor', 1995, 'M', 6007), +(156773, 'Dustin', 1995, 'M', 5921), +(156774, 'Jared', 1995, 'M', 5883), +(156775, 'Jeffrey', 1995, 'M', 5729), +(156776, 'Gabriel', 1995, 'M', 5713), +(156777, 'Travis', 1995, 'M', 5603), +(156778, 'Ian', 1995, 'M', 5596), +(156779, 'Carlos', 1995, 'M', 5544), +(156780, 'Taylor', 1995, 'M', 5519), +(156781, 'Bryan', 1995, 'M', 5441), +(156782, 'Paul', 1995, 'M', 5411), +(156783, 'Kenneth', 1995, 'M', 5226), +(156784, 'Nathaniel', 1995, 'M', 5202), +(156785, 'Corey', 1995, 'M', 4975), +(156786, 'Ethan', 1995, 'M', 4931), +(156787, 'Jesus', 1995, 'M', 4906), +(156788, 'Blake', 1995, 'M', 4818), +(156789, 'Bradley', 1995, 'M', 4765), +(156790, 'Mitchell', 1995, 'M', 4737), +(156791, 'Garrett', 1995, 'M', 4710), +(156792, 'Marcus', 1995, 'M', 4645), +(156793, 'Luke', 1995, 'M', 4627), +(156794, 'Derek', 1995, 'M', 4452), +(156795, 'Gregory', 1995, 'M', 4442), +(156796, 'Antonio', 1995, 'M', 4337), +(156797, 'Tanner', 1995, 'M', 4319), +(156798, 'Dalton', 1995, 'M', 4190), +(156799, 'Edward', 1995, 'M', 4140), +(156800, 'Peter', 1995, 'M', 4110), +(156801, 'Victor', 1995, 'M', 4094), +(156802, 'Lucas', 1995, 'M', 4083), +(156803, 'Scott', 1995, 'M', 4083), +(156804, 'Elijah', 1995, 'M', 3978), +(156805, 'Miguel', 1995, 'M', 3950), +(156806, 'Chase', 1995, 'M', 3917), +(156807, 'Seth', 1995, 'M', 3912), +(156808, 'Adrian', 1995, 'M', 3910), +(156809, 'Isaac', 1995, 'M', 3878), +(156810, 'Noah', 1995, 'M', 3821), +(156811, 'Shawn', 1995, 'M', 3821), +(156812, 'Angel', 1995, 'M', 3735), +(156813, 'Mason', 1995, 'M', 3630), +(156814, 'Shane', 1995, 'M', 3630), +(156815, 'Spencer', 1995, 'M', 3618), +(156816, 'Colton', 1995, 'M', 3586), +(156817, 'Brett', 1995, 'M', 3567), +(156818, 'Alejandro', 1995, 'M', 3527), +(156819, 'Jake', 1995, 'M', 3507), +(156820, 'Isaiah', 1995, 'M', 3473), +(156821, 'Jack', 1995, 'M', 3445), +(156822, 'Erik', 1995, 'M', 3432), +(156823, 'Alec', 1995, 'M', 3421), +(156824, 'Vincent', 1995, 'M', 3319), +(156825, 'Jorge', 1995, 'M', 3302), +(156826, 'George', 1995, 'M', 3286), +(156827, 'Grant', 1995, 'M', 3206), +(156828, 'Eduardo', 1995, 'M', 3152), +(156829, 'Cole', 1995, 'M', 3145), +(156830, 'Devon', 1995, 'M', 3113), +(156831, 'Joel', 1995, 'M', 3101), +(156832, 'Tristan', 1995, 'M', 3088), +(156833, 'Dillon', 1995, 'M', 3033), +(156834, 'Cory', 1995, 'M', 3010), +(156835, 'Raymond', 1995, 'M', 2918), +(156836, 'Francisco', 1995, 'M', 2886), +(156837, 'Ricardo', 1995, 'M', 2870), +(156838, 'Cristian', 1995, 'M', 2847), +(156839, 'Wyatt', 1995, 'M', 2825), +(156840, 'Wesley', 1995, 'M', 2797), +(156841, 'Oscar', 1995, 'M', 2726); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(156842, 'Malik', 1995, 'M', 2706), +(156843, 'Julian', 1995, 'M', 2702), +(156844, 'Brendan', 1995, 'M', 2691), +(156845, 'Casey', 1995, 'M', 2629), +(156846, 'Colin', 1995, 'M', 2629), +(156847, 'Henry', 1995, 'M', 2531), +(156848, 'Phillip', 1995, 'M', 2512), +(156849, 'Dominic', 1995, 'M', 2506), +(156850, 'Omar', 1995, 'M', 2505), +(156851, 'Troy', 1995, 'M', 2470), +(156852, 'Collin', 1995, 'M', 2468), +(156853, 'Keith', 1995, 'M', 2457), +(156854, 'Johnathan', 1995, 'M', 2445), +(156855, 'Chad', 1995, 'M', 2433), +(156856, 'Bryce', 1995, 'M', 2421), +(156857, 'Ronald', 1995, 'M', 2399), +(156858, 'Martin', 1995, 'M', 2395), +(156859, 'Xavier', 1995, 'M', 2394), +(156860, 'Mario', 1995, 'M', 2391), +(156861, 'Manuel', 1995, 'M', 2363), +(156862, 'Clayton', 1995, 'M', 2360), +(156863, 'Edgar', 1995, 'M', 2320), +(156864, 'Alan', 1995, 'M', 2291), +(156865, 'Levi', 1995, 'M', 2257), +(156866, 'Donald', 1995, 'M', 2253), +(156867, 'Frank', 1995, 'M', 2246), +(156868, 'Javier', 1995, 'M', 2246), +(156869, 'Sergio', 1995, 'M', 2244), +(156870, 'Derrick', 1995, 'M', 2188), +(156871, 'Drew', 1995, 'M', 2178), +(156872, 'Jackson', 1995, 'M', 2161), +(156873, 'Andre', 1995, 'M', 2145), +(156874, 'Jeremiah', 1995, 'M', 2054), +(156875, 'Nicolas', 1995, 'M', 2004), +(156876, 'Roberto', 1995, 'M', 2004), +(156877, 'Jonathon', 1995, 'M', 1972), +(156878, 'Ivan', 1995, 'M', 1947), +(156879, 'Douglas', 1995, 'M', 1946), +(156880, 'Darius', 1995, 'M', 1932), +(156881, 'Riley', 1995, 'M', 1918), +(156882, 'Andres', 1995, 'M', 1915), +(156883, 'Hayden', 1995, 'M', 1894), +(156884, 'Cesar', 1995, 'M', 1882), +(156885, 'Alexis', 1995, 'M', 1880), +(156886, 'Hector', 1995, 'M', 1877), +(156887, 'Fernando', 1995, 'M', 1872), +(156888, 'Chandler', 1995, 'M', 1856), +(156889, 'Maxwell', 1995, 'M', 1837), +(156890, 'Marco', 1995, 'M', 1764), +(156891, 'Philip', 1995, 'M', 1756), +(156892, 'Calvin', 1995, 'M', 1720), +(156893, 'Preston', 1995, 'M', 1713), +(156894, 'Curtis', 1995, 'M', 1709), +(156895, 'Ruben', 1995, 'M', 1696), +(156896, 'Dennis', 1995, 'M', 1686), +(156897, 'Edwin', 1995, 'M', 1686), +(156898, 'Johnny', 1995, 'M', 1683), +(156899, 'Brady', 1995, 'M', 1679), +(156900, 'Chance', 1995, 'M', 1631), +(156901, 'Gary', 1995, 'M', 1625), +(156902, 'Erick', 1995, 'M', 1610), +(156903, 'Mathew', 1995, 'M', 1599), +(156904, 'Brent', 1995, 'M', 1586), +(156905, 'Pedro', 1995, 'M', 1585), +(156906, 'Max', 1995, 'M', 1564), +(156907, 'Tony', 1995, 'M', 1555), +(156908, 'Allen', 1995, 'M', 1546), +(156909, 'Zachery', 1995, 'M', 1533), +(156910, 'Trenton', 1995, 'M', 1529), +(156911, 'Jerry', 1995, 'M', 1514), +(156912, 'Raul', 1995, 'M', 1512), +(156913, 'Randy', 1995, 'M', 1508), +(156914, 'Gage', 1995, 'M', 1499), +(156915, 'Conner', 1995, 'M', 1460), +(156916, 'Rafael', 1995, 'M', 1459), +(156917, 'Kaleb', 1995, 'M', 1435), +(156918, 'Sebastian', 1995, 'M', 1431), +(156919, 'Armando', 1995, 'M', 1422), +(156920, 'Colby', 1995, 'M', 1411), +(156921, 'Larry', 1995, 'M', 1401), +(156922, 'Jalen', 1995, 'M', 1396), +(156923, 'Micah', 1995, 'M', 1389), +(156924, 'Carl', 1995, 'M', 1380), +(156925, 'Dallas', 1995, 'M', 1374), +(156926, 'Jonah', 1995, 'M', 1370), +(156927, 'Parker', 1995, 'M', 1368), +(156928, 'Harrison', 1995, 'M', 1360), +(156929, 'Louis', 1995, 'M', 1360), +(156930, 'Craig', 1995, 'M', 1355), +(156931, 'Jimmy', 1995, 'M', 1355), +(156932, 'Damian', 1995, 'M', 1350), +(156933, 'Marc', 1995, 'M', 1335), +(156934, 'Skyler', 1995, 'M', 1335), +(156935, 'Emmanuel', 1995, 'M', 1332), +(156936, 'Albert', 1995, 'M', 1326), +(156937, 'Gerardo', 1995, 'M', 1324), +(156938, 'Jaime', 1995, 'M', 1299), +(156939, 'Diego', 1995, 'M', 1298), +(156940, 'Alberto', 1995, 'M', 1293), +(156941, 'Darren', 1995, 'M', 1290), +(156942, 'Trey', 1995, 'M', 1288), +(156943, 'Abraham', 1995, 'M', 1287), +(156944, 'Julio', 1995, 'M', 1284), +(156945, 'Jeffery', 1995, 'M', 1273), +(156946, 'Danny', 1995, 'M', 1258), +(156947, 'Morgan', 1995, 'M', 1257), +(156948, 'Ricky', 1995, 'M', 1227), +(156949, 'Landon', 1995, 'M', 1225), +(156950, 'Russell', 1995, 'M', 1205), +(156951, 'Liam', 1995, 'M', 1204), +(156952, 'Avery', 1995, 'M', 1195), +(156953, 'Gavin', 1995, 'M', 1193), +(156954, 'Zackary', 1995, 'M', 1192), +(156955, 'Kristopher', 1995, 'M', 1186), +(156956, 'Terry', 1995, 'M', 1175), +(156957, 'Lane', 1995, 'M', 1168), +(156958, 'Micheal', 1995, 'M', 1157), +(156959, 'Lawrence', 1995, 'M', 1149), +(156960, 'Marcos', 1995, 'M', 1144), +(156961, 'Deandre', 1995, 'M', 1141), +(156962, 'Khalil', 1995, 'M', 1118), +(156963, 'Trent', 1995, 'M', 1117), +(156964, 'Giovanni', 1995, 'M', 1115), +(156965, 'Arthur', 1995, 'M', 1111), +(156966, 'Andy', 1995, 'M', 1102), +(156967, 'Rodney', 1995, 'M', 1099), +(156968, 'Lance', 1995, 'M', 1094), +(156969, 'Kody', 1995, 'M', 1092), +(156970, 'Josue', 1995, 'M', 1088), +(156971, 'Donovan', 1995, 'M', 1076), +(156972, 'Joe', 1995, 'M', 1073), +(156973, 'Enrique', 1995, 'M', 1067), +(156974, 'Nolan', 1995, 'M', 1066), +(156975, 'Billy', 1995, 'M', 1063), +(156976, 'Walter', 1995, 'M', 1062), +(156977, 'Jamal', 1995, 'M', 1058), +(156978, 'Nickolas', 1995, 'M', 1053), +(156979, 'Bobby', 1995, 'M', 1046), +(156980, 'Ross', 1995, 'M', 1045), +(156981, 'Alfredo', 1995, 'M', 1041), +(156982, 'Ramon', 1995, 'M', 1027), +(156983, 'Todd', 1995, 'M', 1027), +(156984, 'Josiah', 1995, 'M', 1017), +(156985, 'Arturo', 1995, 'M', 1016), +(156986, 'Jon', 1995, 'M', 1011), +(156987, 'Bailey', 1995, 'M', 1010), +(156988, 'Jay', 1995, 'M', 1010), +(156989, 'Roger', 1995, 'M', 1001), +(156990, 'Ty', 1995, 'M', 985), +(156991, 'Lorenzo', 1995, 'M', 982), +(156992, 'Israel', 1995, 'M', 974), +(156993, 'Aidan', 1995, 'M', 973), +(156994, 'Damon', 1995, 'M', 957), +(156995, 'Theodore', 1995, 'M', 954), +(156996, 'Damien', 1995, 'M', 953), +(156997, 'Carter', 1995, 'M', 919), +(156998, 'Dominique', 1995, 'M', 918), +(156999, 'Brennan', 1995, 'M', 916), +(157000, 'Marquis', 1995, 'M', 913), +(157001, 'Gustavo', 1995, 'M', 911), +(157002, 'Branden', 1995, 'M', 910), +(157003, 'Eddie', 1995, 'M', 910), +(157004, 'Bryant', 1995, 'M', 906), +(157005, 'Jessie', 1995, 'M', 903), +(157006, 'Quentin', 1995, 'M', 900), +(157007, 'Randall', 1995, 'M', 898), +(157008, 'Carson', 1995, 'M', 893), +(157009, 'Gerald', 1995, 'M', 890), +(157010, 'Elias', 1995, 'M', 889), +(157011, 'Malcolm', 1995, 'M', 888), +(157012, 'Maurice', 1995, 'M', 888), +(157013, 'Dominick', 1995, 'M', 883), +(157014, 'Devonte', 1995, 'M', 872), +(157015, 'Reginald', 1995, 'M', 863), +(157016, 'Salvador', 1995, 'M', 862), +(157017, 'Quinton', 1995, 'M', 860), +(157018, 'Johnathon', 1995, 'M', 859), +(157019, 'Forrest', 1995, 'M', 858), +(157020, 'Demetrius', 1995, 'M', 855), +(157021, 'Tommy', 1995, 'M', 852), +(157022, 'Brock', 1995, 'M', 851), +(157023, 'Conor', 1995, 'M', 850), +(157024, 'Eli', 1995, 'M', 849), +(157025, 'Terrance', 1995, 'M', 840), +(157026, 'Marvin', 1995, 'M', 838), +(157027, 'Frederick', 1995, 'M', 830), +(157028, 'Marshall', 1995, 'M', 825), +(157029, 'Kyler', 1995, 'M', 824), +(157030, 'Willie', 1995, 'M', 824), +(157031, 'Zackery', 1995, 'M', 821), +(157032, 'Dante', 1995, 'M', 818), +(157033, 'Braden', 1995, 'M', 817), +(157034, 'Trevon', 1995, 'M', 811), +(157035, 'Ashton', 1995, 'M', 808), +(157036, 'Pablo', 1995, 'M', 800), +(157037, 'Drake', 1995, 'M', 795), +(157038, 'Jamie', 1995, 'M', 792), +(157039, 'Miles', 1995, 'M', 792), +(157040, 'Ernesto', 1995, 'M', 777), +(157041, 'Lee', 1995, 'M', 774), +(157042, 'Zane', 1995, 'M', 774), +(157043, 'Zachariah', 1995, 'M', 772), +(157044, 'Dean', 1995, 'M', 768), +(157045, 'Steve', 1995, 'M', 753), +(157046, 'Tevin', 1995, 'M', 752), +(157047, 'Roy', 1995, 'M', 731), +(157048, 'Devante', 1995, 'M', 721), +(157049, 'Kendall', 1995, 'M', 720), +(157050, 'Fabian', 1995, 'M', 719), +(157051, 'Abel', 1995, 'M', 717), +(157052, 'Tyrone', 1995, 'M', 717), +(157053, 'Ismael', 1995, 'M', 716), +(157054, 'Angelo', 1995, 'M', 714), +(157055, 'Clay', 1995, 'M', 714), +(157056, 'Saul', 1995, 'M', 714), +(157057, 'Kelvin', 1995, 'M', 711), +(157058, 'Shaun', 1995, 'M', 710), +(157059, 'Tucker', 1995, 'M', 709), +(157060, 'Brenden', 1995, 'M', 705), +(157061, 'Owen', 1995, 'M', 699), +(157062, 'Rene', 1995, 'M', 699), +(157063, 'Francis', 1995, 'M', 697), +(157064, 'Terrell', 1995, 'M', 696), +(157065, 'Esteban', 1995, 'M', 692), +(157066, 'Griffin', 1995, 'M', 689), +(157067, 'Nelson', 1995, 'M', 681), +(157068, 'Neil', 1995, 'M', 678), +(157069, 'Wayne', 1995, 'M', 674), +(157070, 'Keegan', 1995, 'M', 670), +(157071, 'Ronnie', 1995, 'M', 668), +(157072, 'Desmond', 1995, 'M', 667), +(157073, 'Bruce', 1995, 'M', 665), +(157074, 'Franklin', 1995, 'M', 662), +(157075, 'Orlando', 1995, 'M', 658), +(157076, 'Harley', 1995, 'M', 652), +(157077, 'Melvin', 1995, 'M', 652), +(157078, 'Terrence', 1995, 'M', 652), +(157079, 'Roman', 1995, 'M', 646), +(157080, 'Marquise', 1995, 'M', 644), +(157081, 'Emilio', 1995, 'M', 643), +(157082, 'Jerome', 1995, 'M', 642), +(157083, 'Simon', 1995, 'M', 640), +(157084, 'Myles', 1995, 'M', 638), +(157085, 'Graham', 1995, 'M', 633), +(157086, 'Cooper', 1995, 'M', 632), +(157087, 'Kameron', 1995, 'M', 630), +(157088, 'Darrell', 1995, 'M', 628), +(157089, 'Emanuel', 1995, 'M', 627), +(157090, 'Brendon', 1995, 'M', 624), +(157091, 'Felix', 1995, 'M', 623), +(157092, 'Keenan', 1995, 'M', 623), +(157093, 'Guillermo', 1995, 'M', 621), +(157094, 'Tristen', 1995, 'M', 618), +(157095, 'Reid', 1995, 'M', 614), +(157096, 'Quinn', 1995, 'M', 605), +(157097, 'Rodrigo', 1995, 'M', 605), +(157098, 'Daquan', 1995, 'M', 601), +(157099, 'Weston', 1995, 'M', 601), +(157100, 'Justice', 1995, 'M', 600), +(157101, 'Devan', 1995, 'M', 599), +(157102, 'Byron', 1995, 'M', 598), +(157103, 'Karl', 1995, 'M', 598), +(157104, 'Oliver', 1995, 'M', 595), +(157105, 'Darian', 1995, 'M', 594), +(157106, 'Brody', 1995, 'M', 589), +(157107, 'Moises', 1995, 'M', 585), +(157108, 'Kristian', 1995, 'M', 582), +(157109, 'Mackenzie', 1995, 'M', 579), +(157110, 'Kenny', 1995, 'M', 574), +(157111, 'Cedric', 1995, 'M', 573), +(157112, 'Dale', 1995, 'M', 570), +(157113, 'Leonardo', 1995, 'M', 570), +(157114, 'Warren', 1995, 'M', 570), +(157115, 'Sam', 1995, 'M', 569), +(157116, 'Kendrick', 1995, 'M', 566), +(157117, 'Stanley', 1995, 'M', 562), +(157118, 'Jakob', 1995, 'M', 561), +(157119, 'Skylar', 1995, 'M', 561), +(157120, 'Davis', 1995, 'M', 560), +(157121, 'Jarrett', 1995, 'M', 559), +(157122, 'Deion', 1995, 'M', 558), +(157123, 'Corbin', 1995, 'M', 555), +(157124, 'Felipe', 1995, 'M', 554), +(157125, 'Reed', 1995, 'M', 550), +(157126, 'Denzel', 1995, 'M', 547), +(157127, 'Javon', 1995, 'M', 544), +(157128, 'Alvin', 1995, 'M', 543), +(157129, 'Bryson', 1995, 'M', 543), +(157130, 'Jermaine', 1995, 'M', 541), +(157131, 'Austen', 1995, 'M', 540), +(157132, 'Rodolfo', 1995, 'M', 540), +(157133, 'Allan', 1995, 'M', 539), +(157134, 'Darryl', 1995, 'M', 539), +(157135, 'Kurt', 1995, 'M', 537), +(157136, 'Geoffrey', 1995, 'M', 536), +(157137, 'Tyrell', 1995, 'M', 535), +(157138, 'Lukas', 1995, 'M', 534), +(157139, 'Grayson', 1995, 'M', 531), +(157140, 'Eugene', 1995, 'M', 529), +(157141, 'Glenn', 1995, 'M', 529), +(157142, 'Stefan', 1995, 'M', 529), +(157143, 'Hugo', 1995, 'M', 528), +(157144, 'Leonard', 1995, 'M', 528), +(157145, 'Braxton', 1995, 'M', 527), +(157146, 'Wade', 1995, 'M', 527), +(157147, 'Jordon', 1995, 'M', 525), +(157148, 'Elliot', 1995, 'M', 521), +(157149, 'Noel', 1995, 'M', 521), +(157150, 'Beau', 1995, 'M', 520), +(157151, 'Harold', 1995, 'M', 520), +(157152, 'Tylor', 1995, 'M', 520), +(157153, 'Dane', 1995, 'M', 517), +(157154, 'Deshawn', 1995, 'M', 517), +(157155, 'Keaton', 1995, 'M', 515), +(157156, 'Ali', 1995, 'M', 514), +(157157, 'Charlie', 1995, 'M', 510), +(157158, 'Sterling', 1995, 'M', 510), +(157159, 'Dwayne', 1995, 'M', 508), +(157160, 'Harry', 1995, 'M', 507), +(157161, 'Joey', 1995, 'M', 507), +(157162, 'Jaquan', 1995, 'M', 504), +(157163, 'Leon', 1995, 'M', 502), +(157164, 'Gilbert', 1995, 'M', 501), +(157165, 'Gilberto', 1995, 'M', 495), +(157166, 'Ray', 1995, 'M', 495), +(157167, 'Alfonso', 1995, 'M', 493), +(157168, 'Jarred', 1995, 'M', 493), +(157169, 'Shaquille', 1995, 'M', 493), +(157170, 'Sheldon', 1995, 'M', 493), +(157171, 'Ernest', 1995, 'M', 490), +(157172, 'Isiah', 1995, 'M', 488), +(157173, 'Nikolas', 1995, 'M', 488), +(157174, 'Rudy', 1995, 'M', 488), +(157175, 'Chris', 1995, 'M', 487), +(157176, 'Ramiro', 1995, 'M', 480), +(157177, 'Clinton', 1995, 'M', 477), +(157178, 'Nathanael', 1995, 'M', 476), +(157179, 'Rogelio', 1995, 'M', 474), +(157180, 'Rashad', 1995, 'M', 469), +(157181, 'Stephan', 1995, 'M', 467), +(157182, 'Tyson', 1995, 'M', 465), +(157183, 'Tomas', 1995, 'M', 464), +(157184, 'Duncan', 1995, 'M', 456), +(157185, 'Mauricio', 1995, 'M', 455), +(157186, 'Quincy', 1995, 'M', 455), +(157187, 'Damion', 1995, 'M', 454), +(157188, 'Alonzo', 1995, 'M', 453), +(157189, 'Donte', 1995, 'M', 453), +(157190, 'Peyton', 1995, 'M', 453), +(157191, 'Brayden', 1995, 'M', 450), +(157192, 'Walker', 1995, 'M', 450), +(157193, 'Alfred', 1995, 'M', 449), +(157194, 'Deon', 1995, 'M', 448), +(157195, 'Ariel', 1995, 'M', 447), +(157196, 'Jayson', 1995, 'M', 446), +(157197, 'Leo', 1995, 'M', 446), +(157198, 'Deonte', 1995, 'M', 444), +(157199, 'Marlon', 1995, 'M', 443), +(157200, 'Rolando', 1995, 'M', 441), +(157201, 'Davon', 1995, 'M', 440), +(157202, 'Garret', 1995, 'M', 438), +(157203, 'Sawyer', 1995, 'M', 438), +(157204, 'Kurtis', 1995, 'M', 435), +(157205, 'Blaine', 1995, 'M', 434), +(157206, 'Elliott', 1995, 'M', 433), +(157207, 'Bernard', 1995, 'M', 431), +(157208, 'Demarcus', 1995, 'M', 428), +(157209, 'Santiago', 1995, 'M', 426), +(157210, 'Clarence', 1995, 'M', 425), +(157211, 'Darien', 1995, 'M', 424), +(157212, 'Tyree', 1995, 'M', 424), +(157213, 'Ralph', 1995, 'M', 413), +(157214, 'Sidney', 1995, 'M', 411), +(157215, 'Wilson', 1995, 'M', 410), +(157216, 'Julius', 1995, 'M', 409), +(157217, 'Dorian', 1995, 'M', 408), +(157218, 'Nigel', 1995, 'M', 405), +(157219, 'Adan', 1995, 'M', 404), +(157220, 'Cullen', 1995, 'M', 400), +(157221, 'Jarrod', 1995, 'M', 400), +(157222, 'Payton', 1995, 'M', 400), +(157223, 'Brad', 1995, 'M', 398), +(157224, 'Roderick', 1995, 'M', 398), +(157225, 'Stuart', 1995, 'M', 396), +(157226, 'Darnell', 1995, 'M', 395), +(157227, 'Cade', 1995, 'M', 393), +(157228, 'Noe', 1995, 'M', 390), +(157229, 'Quintin', 1995, 'M', 389), +(157230, 'Bret', 1995, 'M', 388), +(157231, 'Jaylen', 1995, 'M', 385), +(157232, 'Lewis', 1995, 'M', 378), +(157233, 'Colten', 1995, 'M', 377), +(157234, 'Jace', 1995, 'M', 376), +(157235, 'Shannon', 1995, 'M', 375), +(157236, 'Efrain', 1995, 'M', 374), +(157237, 'Triston', 1995, 'M', 372), +(157238, 'Travon', 1995, 'M', 368), +(157239, 'Mitchel', 1995, 'M', 366), +(157240, 'Kory', 1995, 'M', 365), +(157241, 'Humberto', 1995, 'M', 364), +(157242, 'Malachi', 1995, 'M', 359), +(157243, 'Clifford', 1995, 'M', 357), +(157244, 'Howard', 1995, 'M', 357), +(157245, 'Kai', 1995, 'M', 357), +(157246, 'Kelly', 1995, 'M', 357), +(157247, 'Uriel', 1995, 'M', 357), +(157248, 'Keanu', 1995, 'M', 356), +(157249, 'Stephon', 1995, 'M', 355), +(157250, 'Barry', 1995, 'M', 354), +(157251, 'Fredrick', 1995, 'M', 354), +(157252, 'Gordon', 1995, 'M', 353), +(157253, 'Deven', 1995, 'M', 351), +(157254, 'Addison', 1995, 'M', 350), +(157255, 'Markus', 1995, 'M', 350), +(157256, 'Mohammad', 1995, 'M', 349), +(157257, 'Ahmad', 1995, 'M', 347), +(157258, 'Alvaro', 1995, 'M', 343), +(157259, 'Tre', 1995, 'M', 342), +(157260, 'Coleman', 1995, 'M', 340), +(157261, 'Leroy', 1995, 'M', 340), +(157262, 'Perry', 1995, 'M', 340), +(157263, 'Amir', 1995, 'M', 338), +(157264, 'Jaden', 1995, 'M', 338), +(157265, 'Dexter', 1995, 'M', 336), +(157266, 'Dion', 1995, 'M', 335), +(157267, 'Shelby', 1995, 'M', 335), +(157268, 'Baby', 1995, 'M', 334), +(157269, 'Freddy', 1995, 'M', 334), +(157270, 'Korey', 1995, 'M', 334), +(157271, 'Derick', 1995, 'M', 333), +(157272, 'Ezekiel', 1995, 'M', 333), +(157273, 'Anton', 1995, 'M', 332), +(157274, 'Mike', 1995, 'M', 332), +(157275, 'Chaz', 1995, 'M', 329), +(157276, 'Clint', 1995, 'M', 329), +(157277, 'Carlton', 1995, 'M', 328), +(157278, 'Vicente', 1995, 'M', 324), +(157279, 'Solomon', 1995, 'M', 323), +(157280, 'Ben', 1995, 'M', 322), +(157281, 'Earl', 1995, 'M', 321), +(157282, 'Raheem', 1995, 'M', 321), +(157283, 'Issac', 1995, 'M', 320), +(157284, 'Brice', 1995, 'M', 318), +(157285, 'Gunnar', 1995, 'M', 317), +(157286, 'Aron', 1995, 'M', 316), +(157287, 'Toby', 1995, 'M', 316), +(157288, 'Adonis', 1995, 'M', 315), +(157289, 'Kirk', 1995, 'M', 315), +(157290, 'Salvatore', 1995, 'M', 313), +(157291, 'Dashawn', 1995, 'M', 312), +(157292, 'Nathanial', 1995, 'M', 311), +(157293, 'Daryl', 1995, 'M', 310), +(157294, 'Joaquin', 1995, 'M', 310), +(157295, 'Antoine', 1995, 'M', 306), +(157296, 'Lamar', 1995, 'M', 306), +(157297, 'Jaron', 1995, 'M', 305), +(157298, 'Dwight', 1995, 'M', 303), +(157299, 'Moses', 1995, 'M', 303), +(157300, 'Raekwon', 1995, 'M', 303), +(157301, 'Darion', 1995, 'M', 302), +(157302, 'Glen', 1995, 'M', 302), +(157303, 'Jarvis', 1995, 'M', 300), +(157304, 'Leonel', 1995, 'M', 300), +(157305, 'Osvaldo', 1995, 'M', 300), +(157306, 'Brenton', 1995, 'M', 299), +(157307, 'Don', 1995, 'M', 299), +(157308, 'Holden', 1995, 'M', 299), +(157309, 'Mohammed', 1995, 'M', 298), +(157310, 'Irvin', 1995, 'M', 294), +(157311, 'Heath', 1995, 'M', 293), +(157312, 'Kareem', 1995, 'M', 292), +(157313, 'Jean', 1995, 'M', 291), +(157314, 'Terence', 1995, 'M', 289), +(157315, 'Tristin', 1995, 'M', 288), +(157316, 'Ezequiel', 1995, 'M', 286), +(157317, 'Roland', 1995, 'M', 286), +(157318, 'Clark', 1995, 'M', 285), +(157319, 'Kasey', 1995, 'M', 285), +(157320, 'Frankie', 1995, 'M', 284), +(157321, 'Darrin', 1995, 'M', 282), +(157322, 'Kade', 1995, 'M', 282), +(157323, 'Kolton', 1995, 'M', 281), +(157324, 'Conrad', 1995, 'M', 280), +(157325, 'Dandre', 1995, 'M', 279), +(157326, 'Maximilian', 1995, 'M', 279), +(157327, 'Mohamed', 1995, 'M', 279), +(157328, 'Rigoberto', 1995, 'M', 279), +(157329, 'Norman', 1995, 'M', 278), +(157330, 'River', 1995, 'M', 278), +(157331, 'Deangelo', 1995, 'M', 276), +(157332, 'Courtney', 1995, 'M', 275), +(157333, 'Reynaldo', 1995, 'M', 273), +(157334, 'Tracy', 1995, 'M', 273), +(157335, 'Lamont', 1995, 'M', 272), +(157336, 'Dillan', 1995, 'M', 270), +(157337, 'Milton', 1995, 'M', 270), +(157338, 'Agustin', 1995, 'M', 269), +(157339, 'Madison', 1995, 'M', 269), +(157340, 'Darrius', 1995, 'M', 268), +(157341, 'Kaden', 1995, 'M', 268), +(157342, 'Kahlil', 1995, 'M', 268), +(157343, 'Cordell', 1995, 'M', 267), +(157344, 'Jamar', 1995, 'M', 267), +(157345, 'Kolby', 1995, 'M', 267), +(157346, 'Devyn', 1995, 'M', 266), +(157347, 'Shayne', 1995, 'M', 266), +(157348, 'Will', 1995, 'M', 266), +(157349, 'Kieran', 1995, 'M', 265), +(157350, 'Lonnie', 1995, 'M', 265), +(157351, 'Houston', 1995, 'M', 264), +(157352, 'Bennett', 1995, 'M', 262), +(157353, 'Cornelius', 1995, 'M', 261), +(157354, 'Adolfo', 1995, 'M', 260), +(157355, 'Ladarius', 1995, 'M', 260), +(157356, 'Reece', 1995, 'M', 260), +(157357, 'Kane', 1995, 'M', 259), +(157358, 'Everett', 1995, 'M', 258), +(157359, 'Johnnie', 1995, 'M', 258), +(157360, 'Neal', 1995, 'M', 258), +(157361, 'Dimitri', 1995, 'M', 257), +(157362, 'Ezra', 1995, 'M', 257), +(157363, 'Brooks', 1995, 'M', 255), +(157364, 'Lloyd', 1995, 'M', 254), +(157365, 'Sage', 1995, 'M', 254), +(157366, 'Marcel', 1995, 'M', 253), +(157367, 'Nestor', 1995, 'M', 253), +(157368, 'Duane', 1995, 'M', 252), +(157369, 'Jonas', 1995, 'M', 252), +(157370, 'Raphael', 1995, 'M', 251), +(157371, 'Rickey', 1995, 'M', 251), +(157372, 'Brennen', 1995, 'M', 250), +(157373, 'Ignacio', 1995, 'M', 250), +(157374, 'Clifton', 1995, 'M', 249), +(157375, 'August', 1995, 'M', 248), +(157376, 'Rashawn', 1995, 'M', 248), +(157377, 'Unknown', 1995, 'M', 248), +(157378, 'Dequan', 1995, 'M', 247), +(157379, 'Hakeem', 1995, 'M', 247), +(157380, 'Anfernee', 1995, 'M', 246), +(157381, 'German', 1995, 'M', 246), +(157382, 'Tate', 1995, 'M', 246), +(157383, 'Coty', 1995, 'M', 245), +(157384, 'Davonte', 1995, 'M', 244), +(157385, 'Fred', 1995, 'M', 244), +(157386, 'Guadalupe', 1995, 'M', 244), +(157387, 'Infant', 1995, 'M', 244), +(157388, 'Devonta', 1995, 'M', 243), +(157389, 'Jairo', 1995, 'M', 243), +(157390, 'Jameson', 1995, 'M', 243), +(157391, 'Winston', 1995, 'M', 243), +(157392, 'Ahmed', 1995, 'M', 241), +(157393, 'Jefferson', 1995, 'M', 241), +(157394, 'Bernardo', 1995, 'M', 240), +(157395, 'Juwan', 1995, 'M', 240), +(157396, 'Rhett', 1995, 'M', 240), +(157397, 'Jayden', 1995, 'M', 239), +(157398, 'Jasper', 1995, 'M', 238), +(157399, 'Isaias', 1995, 'M', 237), +(157400, 'Jaleel', 1995, 'M', 237), +(157401, 'Jaylon', 1995, 'M', 237), +(157402, 'Arnold', 1995, 'M', 236), +(157403, 'Colt', 1995, 'M', 236), +(157404, 'Vernon', 1995, 'M', 236), +(157405, 'Aldo', 1995, 'M', 235), +(157406, 'Cortez', 1995, 'M', 235), +(157407, 'Santos', 1995, 'M', 233), +(157408, 'Jovan', 1995, 'M', 231), +(157409, 'Arron', 1995, 'M', 229), +(157410, 'Kristofer', 1995, 'M', 229), +(157411, 'Brandan', 1995, 'M', 228), +(157412, 'Darin', 1995, 'M', 228), +(157413, 'Kellen', 1995, 'M', 228), +(157414, 'Cruz', 1995, 'M', 227), +(157415, 'Jamel', 1995, 'M', 227), +(157416, 'Kent', 1995, 'M', 227), +(157417, 'Jamison', 1995, 'M', 225), +(157418, 'Robin', 1995, 'M', 225), +(157419, 'Dayton', 1995, 'M', 224), +(157420, 'Marques', 1995, 'M', 224), +(157421, 'Quinten', 1995, 'M', 224), +(157422, 'Austyn', 1995, 'M', 223), +(157423, 'Dusty', 1995, 'M', 223), +(157424, 'Pierce', 1995, 'M', 223), +(157425, 'Reuben', 1995, 'M', 223), +(157426, 'Alonso', 1995, 'M', 222), +(157427, 'Junior', 1995, 'M', 222), +(157428, 'Layne', 1995, 'M', 221), +(157429, 'Elvis', 1995, 'M', 220), +(157430, 'Rasheed', 1995, 'M', 220), +(157431, 'Tobias', 1995, 'M', 220), +(157432, 'Davion', 1995, 'M', 219), +(157433, 'Octavio', 1995, 'M', 219), +(157434, 'Justus', 1995, 'M', 218), +(157435, 'Keon', 1995, 'M', 218), +(157436, 'Herbert', 1995, 'M', 217), +(157437, 'Bradford', 1995, 'M', 216), +(157438, 'Brandyn', 1995, 'M', 216), +(157439, 'Caden', 1995, 'M', 215), +(157440, 'Camden', 1995, 'M', 215), +(157441, 'Gino', 1995, 'M', 215), +(157442, 'Rick', 1995, 'M', 215), +(157443, 'Trever', 1995, 'M', 215), +(157444, 'Darrion', 1995, 'M', 214), +(157445, 'Nick', 1995, 'M', 214), +(157446, 'Reese', 1995, 'M', 214), +(157447, 'Gerard', 1995, 'M', 213), +(157448, 'Khalid', 1995, 'M', 213), +(157449, 'Elmer', 1995, 'M', 212), +(157450, 'Estevan', 1995, 'M', 212), +(157451, 'Cristopher', 1995, 'M', 211), +(157452, 'Dangelo', 1995, 'M', 211), +(157453, 'Erin', 1995, 'M', 211), +(157454, 'Aubrey', 1995, 'M', 209), +(157455, 'Ulises', 1995, 'M', 209), +(157456, 'Guy', 1995, 'M', 208), +(157457, 'Hassan', 1995, 'M', 207), +(157458, 'Moshe', 1995, 'M', 207), +(157459, 'Kerry', 1995, 'M', 206), +(157460, 'Forest', 1995, 'M', 205), +(157461, 'Dakotah', 1995, 'M', 204), +(157462, 'Heriberto', 1995, 'M', 204), +(157463, 'Marquez', 1995, 'M', 204), +(157464, 'Paris', 1995, 'M', 204), +(157465, 'Rory', 1995, 'M', 204), +(157466, 'Silas', 1995, 'M', 204), +(157467, 'Elisha', 1995, 'M', 203), +(157468, 'Gunner', 1995, 'M', 203), +(157469, 'Raymundo', 1995, 'M', 203), +(157470, 'Thaddeus', 1995, 'M', 203), +(157471, 'Deondre', 1995, 'M', 202), +(157472, 'Freddie', 1995, 'M', 202), +(157473, 'Zechariah', 1995, 'M', 200), +(157474, 'Dylon', 1995, 'M', 199), +(157475, 'Codey', 1995, 'M', 198), +(157476, 'Dewayne', 1995, 'M', 198), +(157477, 'Trayvon', 1995, 'M', 197), +(157478, 'Grady', 1995, 'M', 196), +(157479, 'Javonte', 1995, 'M', 196), +(157480, 'Antwan', 1995, 'M', 194), +(157481, 'Jimmie', 1995, 'M', 194), +(157482, 'Montana', 1995, 'M', 194), +(157483, 'Aric', 1995, 'M', 193), +(157484, 'Nico', 1995, 'M', 193), +(157485, 'Zakary', 1995, 'M', 193), +(157486, 'Royce', 1995, 'M', 192), +(157487, 'Destin', 1995, 'M', 191), +(157488, 'Lincoln', 1995, 'M', 191), +(157489, 'Benito', 1995, 'M', 190), +(157490, 'Fidel', 1995, 'M', 190), +(157491, 'Muhammad', 1995, 'M', 190), +(157492, 'Bradly', 1995, 'M', 189), +(157493, 'Rocky', 1995, 'M', 189), +(157494, 'Shea', 1995, 'M', 187), +(157495, 'Dana', 1995, 'M', 186), +(157496, 'Gonzalo', 1995, 'M', 186), +(157497, 'Hernan', 1995, 'M', 186), +(157498, 'Leslie', 1995, 'M', 186), +(157499, 'Tavon', 1995, 'M', 186), +(157500, 'Broderick', 1995, 'M', 185), +(157501, 'Bronson', 1995, 'M', 185), +(157502, 'Sonny', 1995, 'M', 185), +(157503, 'Jade', 1995, 'M', 184), +(157504, 'Benny', 1995, 'M', 183), +(157505, 'Jaylin', 1995, 'M', 183), +(157506, 'Josh', 1995, 'M', 183), +(157507, 'Loren', 1995, 'M', 183), +(157508, 'Draven', 1995, 'M', 182), +(157509, 'Jamarcus', 1995, 'M', 182), +(157510, 'Asa', 1995, 'M', 180), +(157511, 'Donnie', 1995, 'M', 180), +(157512, 'Sammy', 1995, 'M', 179), +(157513, 'Dillion', 1995, 'M', 178), +(157514, 'Jerrod', 1995, 'M', 178), +(157515, 'Cyrus', 1995, 'M', 177), +(157516, 'Auston', 1995, 'M', 176), +(157517, 'Hugh', 1995, 'M', 176), +(157518, 'Lester', 1995, 'M', 176), +(157519, 'Leland', 1995, 'M', 175), +(157520, 'Akeem', 1995, 'M', 174), +(157521, 'Coby', 1995, 'M', 174), +(157522, 'Gene', 1995, 'M', 174), +(157523, 'Bo', 1995, 'M', 173), +(157524, 'Emmett', 1995, 'M', 173), +(157525, 'Herman', 1995, 'M', 173), +(157526, 'Shaquan', 1995, 'M', 173), +(157527, 'Garrison', 1995, 'M', 172), +(157528, 'Julien', 1995, 'M', 172), +(157529, 'Misael', 1995, 'M', 172), +(157530, 'Donavan', 1995, 'M', 171), +(157531, 'Donnell', 1995, 'M', 171), +(157532, 'Talon', 1995, 'M', 171), +(157533, 'Spenser', 1995, 'M', 170), +(157534, 'Lionel', 1995, 'M', 169), +(157535, 'Stewart', 1995, 'M', 169), +(157536, 'Tyron', 1995, 'M', 169), +(157537, 'Clyde', 1995, 'M', 168), +(157538, 'Dan', 1995, 'M', 168), +(157539, 'Deshaun', 1995, 'M', 168), +(157540, 'Efren', 1995, 'M', 168), +(157541, 'Josef', 1995, 'M', 168), +(157542, 'Orion', 1995, 'M', 168), +(157543, 'Markel', 1995, 'M', 167), +(157544, 'Ari', 1995, 'M', 166), +(157545, 'Ellis', 1995, 'M', 166), +(157546, 'Niko', 1995, 'M', 166), +(157547, 'Camron', 1995, 'M', 165), +(157548, 'Irving', 1995, 'M', 165), +(157549, 'Jabari', 1995, 'M', 165), +(157550, 'Markell', 1995, 'M', 165), +(157551, 'Storm', 1995, 'M', 165), +(157552, 'Romello', 1995, 'M', 164), +(157553, 'Stone', 1995, 'M', 164), +(157554, 'Kelton', 1995, 'M', 163), +(157555, 'Pierre', 1995, 'M', 163), +(157556, 'Tyquan', 1995, 'M', 163), +(157557, 'Jackie', 1995, 'M', 162), +(157558, 'Jarod', 1995, 'M', 162), +(157559, 'Montel', 1995, 'M', 162), +(157560, 'Randolph', 1995, 'M', 162), +(157561, 'Tayler', 1995, 'M', 162), +(157562, 'Vance', 1995, 'M', 162), +(157563, 'Abram', 1995, 'M', 161), +(157564, 'Amos', 1995, 'M', 161), +(157565, 'Dallin', 1995, 'M', 161), +(157566, 'Jamil', 1995, 'M', 161), +(157567, 'Trace', 1995, 'M', 161), +(157568, 'Anderson', 1995, 'M', 160), +(157569, 'Kole', 1995, 'M', 160), +(157570, 'Wendell', 1995, 'M', 160), +(157571, 'Kennedy', 1995, 'M', 159), +(157572, 'Jim', 1995, 'M', 158), +(157573, 'Rex', 1995, 'M', 158), +(157574, 'Augustus', 1995, 'M', 157), +(157575, 'Barrett', 1995, 'M', 157), +(157576, 'Chadwick', 1995, 'M', 157), +(157577, 'Codie', 1995, 'M', 157), +(157578, 'Denver', 1995, 'M', 157), +(157579, 'Ibrahim', 1995, 'M', 157), +(157580, 'Rico', 1995, 'M', 157), +(157581, 'Syed', 1995, 'M', 157), +(157582, 'Tristian', 1995, 'M', 157), +(157583, 'Dario', 1995, 'M', 156), +(157584, 'Demarco', 1995, 'M', 156), +(157585, 'Kelsey', 1995, 'M', 156), +(157586, 'Kenton', 1995, 'M', 156), +(157587, 'Erich', 1995, 'M', 155), +(157588, 'Trae', 1995, 'M', 155), +(157589, 'Devontae', 1995, 'M', 154), +(157590, 'Eliseo', 1995, 'M', 154), +(157591, 'Jeff', 1995, 'M', 154), +(157592, 'Jorden', 1995, 'M', 154), +(157593, 'Alexandro', 1995, 'M', 153), +(157594, 'Andreas', 1995, 'M', 153), +(157595, 'Antony', 1995, 'M', 153), +(157596, 'Keven', 1995, 'M', 153), +(157597, 'Myron', 1995, 'M', 153), +(157598, 'Alton', 1995, 'M', 152), +(157599, 'Galen', 1995, 'M', 152), +(157600, 'Hans', 1995, 'M', 152), +(157601, 'Jacoby', 1995, 'M', 152), +(157602, 'Stetson', 1995, 'M', 152), +(157603, 'Darrien', 1995, 'M', 151), +(157604, 'Floyd', 1995, 'M', 150), +(157605, 'Jessy', 1995, 'M', 150), +(157606, 'Ted', 1995, 'M', 150), +(157607, 'Carlo', 1995, 'M', 149), +(157608, 'Dawson', 1995, 'M', 149), +(157609, 'Edgardo', 1995, 'M', 149), +(157610, 'Garett', 1995, 'M', 149), +(157611, 'Jacques', 1995, 'M', 149), +(157612, 'Jonatan', 1995, 'M', 149), +(157613, 'Mikel', 1995, 'M', 149), +(157614, 'Bryon', 1995, 'M', 148), +(157615, 'Darrian', 1995, 'M', 148), +(157616, 'Davin', 1995, 'M', 148), +(157617, 'Dionte', 1995, 'M', 148), +(157618, 'Domenic', 1995, 'M', 148), +(157619, 'Genaro', 1995, 'M', 148), +(157620, 'Kevon', 1995, 'M', 148), +(157621, 'Maverick', 1995, 'M', 148), +(157622, 'Tory', 1995, 'M', 148), +(157623, 'Cristobal', 1995, 'M', 147), +(157624, 'Justen', 1995, 'M', 147), +(157625, 'Titus', 1995, 'M', 147), +(157626, 'Turner', 1995, 'M', 147), +(157627, 'Cecil', 1995, 'M', 146), +(157628, 'Axel', 1995, 'M', 145), +(157629, 'Gregorio', 1995, 'M', 145), +(157630, 'Chester', 1995, 'M', 144), +(157631, 'Dakoda', 1995, 'M', 144), +(157632, 'Easton', 1995, 'M', 144), +(157633, 'Jamaal', 1995, 'M', 144), +(157634, 'Justyn', 1995, 'M', 144), +(157635, 'Armani', 1995, 'M', 143), +(157636, 'Lyle', 1995, 'M', 143), +(157637, 'Ryder', 1995, 'M', 143), +(157638, 'Treyvon', 1995, 'M', 143), +(157639, 'Vaughn', 1995, 'M', 143), +(157640, 'Alden', 1995, 'M', 142), +(157641, 'Asher', 1995, 'M', 142), +(157642, 'Najee', 1995, 'M', 142), +(157643, 'Daron', 1995, 'M', 141), +(157644, 'Ervin', 1995, 'M', 141), +(157645, 'Kalen', 1995, 'M', 141), +(157646, 'Menachem', 1995, 'M', 141), +(157647, 'Aiden', 1995, 'M', 140), +(157648, 'Maximillian', 1995, 'M', 140), +(157649, 'Rashaad', 1995, 'M', 140), +(157650, 'Rashaan', 1995, 'M', 140), +(157651, 'Remington', 1995, 'M', 140), +(157652, 'Ulysses', 1995, 'M', 140), +(157653, 'Emerson', 1995, 'M', 139), +(157654, 'Francesco', 1995, 'M', 139), +(157655, 'Tyshawn', 1995, 'M', 139), +(157656, 'Armand', 1995, 'M', 138), +(157657, 'Harvey', 1995, 'M', 138), +(157658, 'Kelby', 1995, 'M', 138), +(157659, 'Marcelo', 1995, 'M', 138), +(157660, 'Blair', 1995, 'M', 137), +(157661, 'Kegan', 1995, 'M', 137), +(157662, 'Tariq', 1995, 'M', 137), +(157663, 'Alexandre', 1995, 'M', 136), +(157664, 'Jess', 1995, 'M', 136), +(157665, 'Rohan', 1995, 'M', 136), +(157666, 'Brannon', 1995, 'M', 135), +(157667, 'Gideon', 1995, 'M', 135), +(157668, 'Killian', 1995, 'M', 135), +(157669, 'Valentin', 1995, 'M', 135), +(157670, 'Dondre', 1995, 'M', 134), +(157671, 'Dontae', 1995, 'M', 134), +(157672, 'Jevon', 1995, 'M', 134), +(157673, 'Phoenix', 1995, 'M', 134), +(157674, 'Tom', 1995, 'M', 134), +(157675, 'Greyson', 1995, 'M', 133), +(157676, 'Mikal', 1995, 'M', 133), +(157677, 'Latrell', 1995, 'M', 132), +(157678, 'Savon', 1995, 'M', 132), +(157679, 'Alek', 1995, 'M', 131), +(157680, 'Trevin', 1995, 'M', 131), +(157681, 'Brennon', 1995, 'M', 130), +(157682, 'Bryton', 1995, 'M', 130), +(157683, 'Chaim', 1995, 'M', 130), +(157684, 'Derik', 1995, 'M', 130), +(157685, 'Nicklaus', 1995, 'M', 130), +(157686, 'Rakeem', 1995, 'M', 130), +(157687, 'Rocco', 1995, 'M', 130), +(157688, 'Seamus', 1995, 'M', 130), +(157689, 'Greg', 1995, 'M', 129), +(157690, 'Kirby', 1995, 'M', 129), +(157691, 'Rayshawn', 1995, 'M', 129), +(157692, 'Shay', 1995, 'M', 129), +(157693, 'Isai', 1995, 'M', 128), +(157694, 'Antwon', 1995, 'M', 127), +(157695, 'Kadeem', 1995, 'M', 127), +(157696, 'Ron', 1995, 'M', 127), +(157697, 'Rusty', 1995, 'M', 127), +(157698, 'Abdul', 1995, 'M', 126), +(157699, 'Branson', 1995, 'M', 126), +(157700, 'Ishmael', 1995, 'M', 126), +(157701, 'Isidro', 1995, 'M', 126), +(157702, 'Jody', 1995, 'M', 126), +(157703, 'Ken', 1995, 'M', 126), +(157704, 'Ramsey', 1995, 'M', 126), +(157705, 'Damarcus', 1995, 'M', 125), +(157706, 'Eddy', 1995, 'M', 125), +(157707, 'Laurence', 1995, 'M', 125), +(157708, 'Mateo', 1995, 'M', 125), +(157709, 'Hudson', 1995, 'M', 124), +(157710, 'Dejuan', 1995, 'M', 123), +(157711, 'Desean', 1995, 'M', 123), +(157712, 'Dustyn', 1995, 'M', 123), +(157713, 'Mariano', 1995, 'M', 123), +(157714, 'Schuyler', 1995, 'M', 123), +(157715, 'Shelton', 1995, 'M', 123), +(157716, 'Braydon', 1995, 'M', 122), +(157717, 'Britton', 1995, 'M', 122), +(157718, 'Cheyenne', 1995, 'M', 122), +(157719, 'Federico', 1995, 'M', 122), +(157720, 'Samson', 1995, 'M', 122), +(157721, 'Kaelin', 1995, 'M', 121), +(157722, 'Kendal', 1995, 'M', 121), +(157723, 'Marquel', 1995, 'M', 121), +(157724, 'Sylvester', 1995, 'M', 121), +(157725, 'Darwin', 1995, 'M', 120), +(157726, 'Reagan', 1995, 'M', 120), +(157727, 'Cale', 1995, 'M', 119), +(157728, 'Cedrick', 1995, 'M', 119), +(157729, 'Jovany', 1995, 'M', 119), +(157730, 'Kenyon', 1995, 'M', 119), +(157731, 'Keyon', 1995, 'M', 119), +(157732, 'Khari', 1995, 'M', 119), +(157733, 'Samir', 1995, 'M', 119), +(157734, 'Codi', 1995, 'M', 118), +(157735, 'Dominik', 1995, 'M', 118), +(157736, 'Harris', 1995, 'M', 118), +(157737, 'Pete', 1995, 'M', 118), +(157738, 'Robbie', 1995, 'M', 118), +(157739, 'Demario', 1995, 'M', 117), +(157740, 'Luciano', 1995, 'M', 117), +(157741, 'Raquan', 1995, 'M', 117), +(157742, 'Reno', 1995, 'M', 117), +(157743, 'Scotty', 1995, 'M', 117), +(157744, 'Deanthony', 1995, 'M', 116), +(157745, 'Edmund', 1995, 'M', 116), +(157746, 'Eloy', 1995, 'M', 116), +(157747, 'Fredy', 1995, 'M', 116), +(157748, 'Mickey', 1995, 'M', 116), +(157749, 'Reggie', 1995, 'M', 116), +(157750, 'Simeon', 1995, 'M', 116), +(157751, 'Deonta', 1995, 'M', 115), +(157752, 'Otis', 1995, 'M', 115), +(157753, 'Vincenzo', 1995, 'M', 115), +(157754, 'Willis', 1995, 'M', 115), +(157755, 'Blaze', 1995, 'M', 114), +(157756, 'Braulio', 1995, 'M', 114), +(157757, 'Daulton', 1995, 'M', 114), +(157758, 'Keshawn', 1995, 'M', 114), +(157759, 'Marlin', 1995, 'M', 114), +(157760, 'Nathen', 1995, 'M', 114), +(157761, 'Sherman', 1995, 'M', 114), +(157762, 'Tyrin', 1995, 'M', 114), +(157763, 'Cain', 1995, 'M', 113), +(157764, 'Chauncey', 1995, 'M', 113), +(157765, 'Claude', 1995, 'M', 113), +(157766, 'Dave', 1995, 'M', 113), +(157767, 'Deontae', 1995, 'M', 113), +(157768, 'Mckenzie', 1995, 'M', 113), +(157769, 'Nehemiah', 1995, 'M', 113), +(157770, 'Randal', 1995, 'M', 113), +(157771, 'Rey', 1995, 'M', 113), +(157772, 'Ashley', 1995, 'M', 112), +(157773, 'Brayan', 1995, 'M', 112), +(157774, 'Ira', 1995, 'M', 112), +(157775, 'Jelani', 1995, 'M', 112), +(157776, 'Morris', 1995, 'M', 112), +(157777, 'Dereck', 1995, 'M', 111), +(157778, 'Deric', 1995, 'M', 111), +(157779, 'Tye', 1995, 'M', 111), +(157780, 'Adrien', 1995, 'M', 110), +(157781, 'Blaise', 1995, 'M', 110), +(157782, 'Braeden', 1995, 'M', 110), +(157783, 'Elvin', 1995, 'M', 110), +(157784, 'Giovanny', 1995, 'M', 110), +(157785, 'Jamari', 1995, 'M', 110), +(157786, 'Jedidiah', 1995, 'M', 110), +(157787, 'Jovani', 1995, 'M', 110), +(157788, 'Kalvin', 1995, 'M', 110), +(157789, 'Kendell', 1995, 'M', 110), +(157790, 'Shamar', 1995, 'M', 110), +(157791, 'Wilfredo', 1995, 'M', 110), +(157792, 'Brandt', 1995, 'M', 109), +(157793, 'Foster', 1995, 'M', 109), +(157794, 'Jaren', 1995, 'M', 109), +(157795, 'Lazaro', 1995, 'M', 109), +(157796, 'Maximiliano', 1995, 'M', 109), +(157797, 'Tavaris', 1995, 'M', 109), +(157798, 'Timmy', 1995, 'M', 109), +(157799, 'Waylon', 1995, 'M', 109), +(157800, 'Westley', 1995, 'M', 109), +(157801, 'Benton', 1995, 'M', 108), +(157802, 'Brant', 1995, 'M', 108), +(157803, 'Davante', 1995, 'M', 108), +(157804, 'Jovanny', 1995, 'M', 108), +(157805, 'Montrell', 1995, 'M', 108), +(157806, 'Ridge', 1995, 'M', 108), +(157807, 'Uriah', 1995, 'M', 108), +(157808, 'Augustine', 1995, 'M', 107), +(157809, 'Garry', 1995, 'M', 107), +(157810, 'Giancarlo', 1995, 'M', 107), +(157811, 'Jan', 1995, 'M', 107), +(157812, 'Adalberto', 1995, 'M', 106), +(157813, 'Briar', 1995, 'M', 106), +(157814, 'Deante', 1995, 'M', 106), +(157815, 'Edmond', 1995, 'M', 106), +(157816, 'Kodi', 1995, 'M', 106), +(157817, 'Theron', 1995, 'M', 106), +(157818, 'Yehuda', 1995, 'M', 106), +(157819, 'Bruno', 1995, 'M', 105), +(157820, 'Colter', 1995, 'M', 105), +(157821, 'Denis', 1995, 'M', 105), +(157822, 'Donavon', 1995, 'M', 105), +(157823, 'Dyllan', 1995, 'M', 105), +(157824, 'Eleazar', 1995, 'M', 105), +(157825, 'Everardo', 1995, 'M', 105), +(157826, 'Luther', 1995, 'M', 105), +(157827, 'Male', 1995, 'M', 105), +(157828, 'Prince', 1995, 'M', 105), +(157829, 'Rashaun', 1995, 'M', 105), +(157830, 'Rodrick', 1995, 'M', 105), +(157831, 'Rudolph', 1995, 'M', 105), +(157832, 'Vince', 1995, 'M', 105), +(157833, 'Judah', 1995, 'M', 104), +(157834, 'Nicholaus', 1995, 'M', 104), +(157835, 'Stacy', 1995, 'M', 104), +(157836, 'Stevie', 1995, 'M', 104), +(157837, 'Bilal', 1995, 'M', 103), +(157838, 'Dedrick', 1995, 'M', 103), +(157839, 'Domingo', 1995, 'M', 103), +(157840, 'Keagan', 1995, 'M', 103), +(157841, 'Romeo', 1995, 'M', 103), +(157842, 'Sydney', 1995, 'M', 103), +(157843, 'Tyrus', 1995, 'M', 103), +(157844, 'Anders', 1995, 'M', 102), +(157845, 'Brodie', 1995, 'M', 102), +(157846, 'Demetri', 1995, 'M', 102), +(157847, 'Johnpaul', 1995, 'M', 102), +(157848, 'Bill', 1995, 'M', 101), +(157849, 'Dominque', 1995, 'M', 101), +(157850, 'Jayce', 1995, 'M', 101), +(157851, 'Kirkland', 1995, 'M', 101), +(157852, 'Marcelino', 1995, 'M', 101), +(157853, 'Vladimir', 1995, 'M', 101), +(157854, 'Coy', 1995, 'M', 100), +(157855, 'Dejon', 1995, 'M', 100), +(157856, 'Demonte', 1995, 'M', 100), +(157857, 'Eliezer', 1995, 'M', 100), +(157858, 'Jajuan', 1995, 'M', 100), +(157859, 'Jaylan', 1995, 'M', 100), +(157860, 'Nikhil', 1995, 'M', 100), +(157861, 'Emily', 1996, 'F', 25149), +(157862, 'Jessica', 1996, 'F', 24191), +(157863, 'Ashley', 1996, 'F', 23675), +(157864, 'Sarah', 1996, 'F', 21025), +(157865, 'Samantha', 1996, 'F', 20545), +(157866, 'Taylor', 1996, 'F', 19151), +(157867, 'Hannah', 1996, 'F', 18593), +(157868, 'Alexis', 1996, 'F', 16587), +(157869, 'Rachel', 1996, 'F', 16109), +(157870, 'Elizabeth', 1996, 'F', 15990), +(157871, 'Kayla', 1996, 'F', 15270), +(157872, 'Megan', 1996, 'F', 14767), +(157873, 'Amanda', 1996, 'F', 13969), +(157874, 'Brittany', 1996, 'F', 13796), +(157875, 'Madison', 1996, 'F', 13410), +(157876, 'Lauren', 1996, 'F', 12596), +(157877, 'Brianna', 1996, 'F', 11923), +(157878, 'Victoria', 1996, 'F', 11856), +(157879, 'Jennifer', 1996, 'F', 11728), +(157880, 'Stephanie', 1996, 'F', 11639), +(157881, 'Courtney', 1996, 'F', 11343), +(157882, 'Nicole', 1996, 'F', 11132), +(157883, 'Alyssa', 1996, 'F', 11021), +(157884, 'Rebecca', 1996, 'F', 10620), +(157885, 'Morgan', 1996, 'F', 10291), +(157886, 'Alexandra', 1996, 'F', 10021), +(157887, 'Amber', 1996, 'F', 9770), +(157888, 'Jasmine', 1996, 'F', 9706), +(157889, 'Danielle', 1996, 'F', 9284), +(157890, 'Haley', 1996, 'F', 9040), +(157891, 'Katherine', 1996, 'F', 8873), +(157892, 'Abigail', 1996, 'F', 8598), +(157893, 'Anna', 1996, 'F', 8552), +(157894, 'Olivia', 1996, 'F', 8122), +(157895, 'Shelby', 1996, 'F', 7949), +(157896, 'Kelsey', 1996, 'F', 7655), +(157897, 'Maria', 1996, 'F', 7593), +(157898, 'Allison', 1996, 'F', 7453), +(157899, 'Sydney', 1996, 'F', 7258), +(157900, 'Kaitlyn', 1996, 'F', 7240), +(157901, 'Kimberly', 1996, 'F', 7177), +(157902, 'Melissa', 1996, 'F', 7168), +(157903, 'Savannah', 1996, 'F', 6997), +(157904, 'Mary', 1996, 'F', 6942), +(157905, 'Brooke', 1996, 'F', 6724), +(157906, 'Natalie', 1996, 'F', 6691), +(157907, 'Michelle', 1996, 'F', 6597), +(157908, 'Julia', 1996, 'F', 6312), +(157909, 'Jordan', 1996, 'F', 6296), +(157910, 'Sara', 1996, 'F', 6287), +(157911, 'Erin', 1996, 'F', 6256), +(157912, 'Tiffany', 1996, 'F', 6156), +(157913, 'Emma', 1996, 'F', 6133), +(157914, 'Gabrielle', 1996, 'F', 5885), +(157915, 'Chelsea', 1996, 'F', 5865), +(157916, 'Destiny', 1996, 'F', 5856), +(157917, 'Christina', 1996, 'F', 5801), +(157918, 'Sabrina', 1996, 'F', 5774), +(157919, 'Marissa', 1996, 'F', 5753), +(157920, 'Vanessa', 1996, 'F', 5744), +(157921, 'Andrea', 1996, 'F', 5670), +(157922, 'Sierra', 1996, 'F', 5488), +(157923, 'Mariah', 1996, 'F', 5445), +(157924, 'Katelyn', 1996, 'F', 5421), +(157925, 'Paige', 1996, 'F', 5342), +(157926, 'Laura', 1996, 'F', 5222), +(157927, 'Madeline', 1996, 'F', 4911), +(157928, 'Cheyenne', 1996, 'F', 4866), +(157929, 'Jacqueline', 1996, 'F', 4863), +(157930, 'Kristen', 1996, 'F', 4851), +(157931, 'Heather', 1996, 'F', 4758), +(157932, 'Briana', 1996, 'F', 4735), +(157933, 'Kelly', 1996, 'F', 4734), +(157934, 'Breanna', 1996, 'F', 4700), +(157935, 'Mackenzie', 1996, 'F', 4596), +(157936, 'Miranda', 1996, 'F', 4568), +(157937, 'Alexandria', 1996, 'F', 4562), +(157938, 'Caroline', 1996, 'F', 4464), +(157939, 'Erica', 1996, 'F', 4459), +(157940, 'Shannon', 1996, 'F', 4338), +(157941, 'Monica', 1996, 'F', 4325), +(157942, 'Katie', 1996, 'F', 4312), +(157943, 'Jenna', 1996, 'F', 4287), +(157944, 'Caitlin', 1996, 'F', 4270), +(157945, 'Bailey', 1996, 'F', 4191), +(157946, 'Lindsey', 1996, 'F', 4112), +(157947, 'Kathryn', 1996, 'F', 4099), +(157948, 'Amy', 1996, 'F', 4069), +(157949, 'Cassandra', 1996, 'F', 4015), +(157950, 'Angela', 1996, 'F', 3864), +(157951, 'Alicia', 1996, 'F', 3860), +(157952, 'Crystal', 1996, 'F', 3786), +(157953, 'Hailey', 1996, 'F', 3762), +(157954, 'Grace', 1996, 'F', 3742), +(157955, 'Catherine', 1996, 'F', 3736), +(157956, 'Jamie', 1996, 'F', 3600), +(157957, 'Angelica', 1996, 'F', 3405), +(157958, 'Leah', 1996, 'F', 3319), +(157959, 'Molly', 1996, 'F', 3311), +(157960, 'Alexa', 1996, 'F', 3260), +(157961, 'Cynthia', 1996, 'F', 3189), +(157962, 'Michaela', 1996, 'F', 3176), +(157963, 'Kaitlin', 1996, 'F', 3135), +(157964, 'Autumn', 1996, 'F', 3109), +(157965, 'Margaret', 1996, 'F', 3104), +(157966, 'Erika', 1996, 'F', 3078), +(157967, 'Diana', 1996, 'F', 2951), +(157968, 'Karina', 1996, 'F', 2867), +(157969, 'Cassidy', 1996, 'F', 2844), +(157970, 'Kaylee', 1996, 'F', 2804), +(157971, 'Kylie', 1996, 'F', 2798), +(157972, 'Chloe', 1996, 'F', 2781), +(157973, 'Meghan', 1996, 'F', 2773), +(157974, 'Veronica', 1996, 'F', 2744), +(157975, 'Brittney', 1996, 'F', 2741), +(157976, 'Claire', 1996, 'F', 2737), +(157977, 'Bethany', 1996, 'F', 2698), +(157978, 'Leslie', 1996, 'F', 2664), +(157979, 'Melanie', 1996, 'F', 2664), +(157980, 'Hayley', 1996, 'F', 2577), +(157981, 'Casey', 1996, 'F', 2550), +(157982, 'Dominique', 1996, 'F', 2547), +(157983, 'Bianca', 1996, 'F', 2523), +(157984, 'Daisy', 1996, 'F', 2514), +(157985, 'Sophia', 1996, 'F', 2513), +(157986, 'Carly', 1996, 'F', 2511), +(157987, 'Jocelyn', 1996, 'F', 2509), +(157988, 'Rachael', 1996, 'F', 2485), +(157989, 'Makayla', 1996, 'F', 2462), +(157990, 'Holly', 1996, 'F', 2438), +(157991, 'Brenda', 1996, 'F', 2413), +(157992, 'Gabriela', 1996, 'F', 2411), +(157993, 'Karen', 1996, 'F', 2400), +(157994, 'Lindsay', 1996, 'F', 2397), +(157995, 'Christine', 1996, 'F', 2371), +(157996, 'Kendra', 1996, 'F', 2366), +(157997, 'Summer', 1996, 'F', 2345), +(157998, 'Caitlyn', 1996, 'F', 2332), +(157999, 'Gabriella', 1996, 'F', 2323), +(158000, 'Whitney', 1996, 'F', 2310), +(158001, 'Ana', 1996, 'F', 2307), +(158002, 'Selena', 1996, 'F', 2291), +(158003, 'Mikayla', 1996, 'F', 2284), +(158004, 'Desiree', 1996, 'F', 2276), +(158005, 'Jade', 1996, 'F', 2236), +(158006, 'Rebekah', 1996, 'F', 2221), +(158007, 'Kristin', 1996, 'F', 2194), +(158008, 'Kristina', 1996, 'F', 2180), +(158009, 'Faith', 1996, 'F', 2158), +(158010, 'Julie', 1996, 'F', 2138), +(158011, 'Isabella', 1996, 'F', 2109), +(158012, 'Kathleen', 1996, 'F', 2108), +(158013, 'Adriana', 1996, 'F', 2102), +(158014, 'Valerie', 1996, 'F', 2081), +(158015, 'Zoe', 1996, 'F', 2064), +(158016, 'Ariana', 1996, 'F', 2043), +(158017, 'Alondra', 1996, 'F', 2020), +(158018, 'Mckenzie', 1996, 'F', 1978), +(158019, 'Patricia', 1996, 'F', 1970), +(158020, 'Alejandra', 1996, 'F', 1954), +(158021, 'Brandi', 1996, 'F', 1953), +(158022, 'Angel', 1996, 'F', 1938), +(158023, 'Ariel', 1996, 'F', 1923), +(158024, 'Audrey', 1996, 'F', 1915), +(158025, 'Kara', 1996, 'F', 1909), +(158026, 'Alison', 1996, 'F', 1901), +(158027, 'Tara', 1996, 'F', 1899), +(158028, 'Lisa', 1996, 'F', 1865), +(158029, 'Marisa', 1996, 'F', 1857), +(158030, 'Natasha', 1996, 'F', 1844), +(158031, 'Shania', 1996, 'F', 1835), +(158032, 'Nancy', 1996, 'F', 1824), +(158033, 'Claudia', 1996, 'F', 1807), +(158034, 'Dana', 1996, 'F', 1800), +(158035, 'Lydia', 1996, 'F', 1798), +(158036, 'Kirsten', 1996, 'F', 1773), +(158037, 'April', 1996, 'F', 1761), +(158038, 'Alexus', 1996, 'F', 1702), +(158039, 'Diamond', 1996, 'F', 1697), +(158040, 'Mia', 1996, 'F', 1689), +(158041, 'Sandra', 1996, 'F', 1659), +(158042, 'Deja', 1996, 'F', 1638), +(158043, 'Mallory', 1996, 'F', 1628), +(158044, 'Raven', 1996, 'F', 1622), +(158045, 'Tori', 1996, 'F', 1614), +(158046, 'Hope', 1996, 'F', 1610), +(158047, 'Cierra', 1996, 'F', 1596), +(158048, 'Evelyn', 1996, 'F', 1594), +(158049, 'Jasmin', 1996, 'F', 1587), +(158050, 'Kiana', 1996, 'F', 1584), +(158051, 'Katrina', 1996, 'F', 1542), +(158052, 'Bridget', 1996, 'F', 1530), +(158053, 'Meagan', 1996, 'F', 1503), +(158054, 'Yesenia', 1996, 'F', 1502), +(158055, 'Cindy', 1996, 'F', 1495), +(158056, 'Monique', 1996, 'F', 1491), +(158057, 'Isabel', 1996, 'F', 1469), +(158058, 'Kendall', 1996, 'F', 1468), +(158059, 'Jillian', 1996, 'F', 1462), +(158060, 'Asia', 1996, 'F', 1447), +(158061, 'Maya', 1996, 'F', 1443), +(158062, 'Ashlee', 1996, 'F', 1438), +(158063, 'Kassandra', 1996, 'F', 1436), +(158064, 'Karla', 1996, 'F', 1434), +(158065, 'Ciara', 1996, 'F', 1430), +(158066, 'Hanna', 1996, 'F', 1421), +(158067, 'Kennedy', 1996, 'F', 1418), +(158068, 'Abby', 1996, 'F', 1416), +(158069, 'Joanna', 1996, 'F', 1404), +(158070, 'Deanna', 1996, 'F', 1390), +(158071, 'Mercedes', 1996, 'F', 1390), +(158072, 'Kiara', 1996, 'F', 1389), +(158073, 'Naomi', 1996, 'F', 1386), +(158074, 'Arianna', 1996, 'F', 1369), +(158075, 'Brandy', 1996, 'F', 1364), +(158076, 'Jazmin', 1996, 'F', 1344), +(158077, 'Krystal', 1996, 'F', 1337), +(158078, 'Guadalupe', 1996, 'F', 1328), +(158079, 'Anne', 1996, 'F', 1324), +(158080, 'Tatiana', 1996, 'F', 1317), +(158081, 'Krista', 1996, 'F', 1312), +(158082, 'Amelia', 1996, 'F', 1289), +(158083, 'Chelsey', 1996, 'F', 1285), +(158084, 'Katelynn', 1996, 'F', 1284), +(158085, 'Jada', 1996, 'F', 1257), +(158086, 'Tessa', 1996, 'F', 1254), +(158087, 'Ashlyn', 1996, 'F', 1242), +(158088, 'Jazmine', 1996, 'F', 1242), +(158089, 'Mckenna', 1996, 'F', 1230), +(158090, 'Denise', 1996, 'F', 1229), +(158091, 'Tabitha', 1996, 'F', 1228), +(158092, 'Allyson', 1996, 'F', 1222), +(158093, 'Carolyn', 1996, 'F', 1208), +(158094, 'Gina', 1996, 'F', 1190), +(158095, 'Marisol', 1996, 'F', 1190), +(158096, 'Katlyn', 1996, 'F', 1186), +(158097, 'Meredith', 1996, 'F', 1180), +(158098, 'Ashleigh', 1996, 'F', 1179), +(158099, 'Imani', 1996, 'F', 1171), +(158100, 'Alisha', 1996, 'F', 1165), +(158101, 'Celeste', 1996, 'F', 1157), +(158102, 'Clarissa', 1996, 'F', 1157), +(158103, 'Nina', 1996, 'F', 1157), +(158104, 'Alana', 1996, 'F', 1155), +(158105, 'Ellen', 1996, 'F', 1153), +(158106, 'Cristina', 1996, 'F', 1150), +(158107, 'Brenna', 1996, 'F', 1149), +(158108, 'Riley', 1996, 'F', 1148), +(158109, 'Tiara', 1996, 'F', 1141), +(158110, 'Savanna', 1996, 'F', 1135), +(158111, 'Lillian', 1996, 'F', 1127), +(158112, 'Kasey', 1996, 'F', 1123), +(158113, 'Daniela', 1996, 'F', 1121), +(158114, 'Jordyn', 1996, 'F', 1116), +(158115, 'Peyton', 1996, 'F', 1104), +(158116, 'Maggie', 1996, 'F', 1103), +(158117, 'Logan', 1996, 'F', 1097), +(158118, 'Aubrey', 1996, 'F', 1095), +(158119, 'Priscilla', 1996, 'F', 1093), +(158120, 'Justine', 1996, 'F', 1092), +(158121, 'Lily', 1996, 'F', 1092), +(158122, 'Madeleine', 1996, 'F', 1085), +(158123, 'Kyra', 1996, 'F', 1083), +(158124, 'Felicia', 1996, 'F', 1082), +(158125, 'Delaney', 1996, 'F', 1080), +(158126, 'Alexia', 1996, 'F', 1076), +(158127, 'Alissa', 1996, 'F', 1073), +(158128, 'Marina', 1996, 'F', 1073), +(158129, 'Cecilia', 1996, 'F', 1071), +(158130, 'Teresa', 1996, 'F', 1070), +(158131, 'Tia', 1996, 'F', 1065), +(158132, 'Colleen', 1996, 'F', 1059), +(158133, 'Dakota', 1996, 'F', 1055), +(158134, 'Carolina', 1996, 'F', 1054), +(158135, 'Shayla', 1996, 'F', 1054), +(158136, 'Lacey', 1996, 'F', 1053), +(158137, 'Sadie', 1996, 'F', 1053), +(158138, 'Adrianna', 1996, 'F', 1048), +(158139, 'Raquel', 1996, 'F', 1042), +(158140, 'Mikaela', 1996, 'F', 1040), +(158141, 'Kylee', 1996, 'F', 1034), +(158142, 'Genesis', 1996, 'F', 1028), +(158143, 'Kelsie', 1996, 'F', 1024), +(158144, 'Payton', 1996, 'F', 1018), +(158145, 'Jenny', 1996, 'F', 1012), +(158146, 'Brooklyn', 1996, 'F', 1009), +(158147, 'Tamara', 1996, 'F', 1004), +(158148, 'Miriam', 1996, 'F', 999), +(158149, 'Kyla', 1996, 'F', 997), +(158150, 'Annie', 1996, 'F', 993), +(158151, 'Heidi', 1996, 'F', 992), +(158152, 'Rosa', 1996, 'F', 991), +(158153, 'Virginia', 1996, 'F', 986), +(158154, 'Linda', 1996, 'F', 985), +(158155, 'Ruby', 1996, 'F', 985), +(158156, 'Jessie', 1996, 'F', 979), +(158157, 'Wendy', 1996, 'F', 969), +(158158, 'Susan', 1996, 'F', 958), +(158159, 'Renee', 1996, 'F', 956), +(158160, 'Camille', 1996, 'F', 950), +(158161, 'Elena', 1996, 'F', 947), +(158162, 'Charlotte', 1996, 'F', 944), +(158163, 'Jaclyn', 1996, 'F', 939), +(158164, 'Tiana', 1996, 'F', 938), +(158165, 'Elise', 1996, 'F', 934), +(158166, 'Makenzie', 1996, 'F', 931), +(158167, 'Cheyanne', 1996, 'F', 928), +(158168, 'Gloria', 1996, 'F', 928), +(158169, 'Serena', 1996, 'F', 925), +(158170, 'Angelina', 1996, 'F', 919), +(158171, 'Jacquelyn', 1996, 'F', 907), +(158172, 'Helen', 1996, 'F', 900), +(158173, 'Destinee', 1996, 'F', 899), +(158174, 'Vivian', 1996, 'F', 896), +(158175, 'Ashton', 1996, 'F', 895), +(158176, 'Mayra', 1996, 'F', 893), +(158177, 'Esther', 1996, 'F', 884), +(158178, 'Theresa', 1996, 'F', 882), +(158179, 'Callie', 1996, 'F', 877), +(158180, 'Carrie', 1996, 'F', 876), +(158181, 'Martha', 1996, 'F', 873), +(158182, 'Carmen', 1996, 'F', 869), +(158183, 'Madelyn', 1996, 'F', 865), +(158184, 'Sharon', 1996, 'F', 862), +(158185, 'Cara', 1996, 'F', 861), +(158186, 'Justice', 1996, 'F', 861), +(158187, 'Anastasia', 1996, 'F', 858), +(158188, 'Skylar', 1996, 'F', 855), +(158189, 'Valeria', 1996, 'F', 855), +(158190, 'Sophie', 1996, 'F', 854), +(158191, 'Baylee', 1996, 'F', 853), +(158192, 'Kali', 1996, 'F', 850), +(158193, 'Tyler', 1996, 'F', 849), +(158194, 'Julianna', 1996, 'F', 832), +(158195, 'Aaliyah', 1996, 'F', 831), +(158196, 'Natalia', 1996, 'F', 829), +(158197, 'Sidney', 1996, 'F', 828), +(158198, 'Janet', 1996, 'F', 825), +(158199, 'Juliana', 1996, 'F', 824), +(158200, 'Josie', 1996, 'F', 820), +(158201, 'Pamela', 1996, 'F', 814), +(158202, 'Toni', 1996, 'F', 814), +(158203, 'Kate', 1996, 'F', 811), +(158204, 'Liliana', 1996, 'F', 811), +(158205, 'Marie', 1996, 'F', 811), +(158206, 'Ebony', 1996, 'F', 801), +(158207, 'Lorena', 1996, 'F', 800), +(158208, 'Ruth', 1996, 'F', 800), +(158209, 'Eva', 1996, 'F', 794), +(158210, 'Kelli', 1996, 'F', 792), +(158211, 'Emilee', 1996, 'F', 791), +(158212, 'Kierra', 1996, 'F', 788), +(158213, 'Francesca', 1996, 'F', 785), +(158214, 'Hunter', 1996, 'F', 782), +(158215, 'Nichole', 1996, 'F', 782), +(158216, 'Nadia', 1996, 'F', 778), +(158217, 'Tatyana', 1996, 'F', 774), +(158218, 'Haylee', 1996, 'F', 772), +(158219, 'Carla', 1996, 'F', 768), +(158220, 'Esmeralda', 1996, 'F', 768), +(158221, 'Sofia', 1996, 'F', 766), +(158222, 'Candace', 1996, 'F', 760), +(158223, 'Bryanna', 1996, 'F', 750), +(158224, 'Tierra', 1996, 'F', 747), +(158225, 'Kaitlynn', 1996, 'F', 745), +(158226, 'Elisabeth', 1996, 'F', 739), +(158227, 'Macy', 1996, 'F', 738), +(158228, 'Harley', 1996, 'F', 730), +(158229, 'Kailey', 1996, 'F', 730), +(158230, 'Isabelle', 1996, 'F', 726), +(158231, 'Josephine', 1996, 'F', 725), +(158232, 'Kira', 1996, 'F', 725), +(158233, 'Carissa', 1996, 'F', 724), +(158234, 'Christian', 1996, 'F', 720), +(158235, 'Robin', 1996, 'F', 719), +(158236, 'Carley', 1996, 'F', 703), +(158237, 'Precious', 1996, 'F', 703), +(158238, 'Rose', 1996, 'F', 701), +(158239, 'Paola', 1996, 'F', 700), +(158240, 'Britney', 1996, 'F', 699), +(158241, 'Sasha', 1996, 'F', 699), +(158242, 'Breana', 1996, 'F', 697), +(158243, 'Tayler', 1996, 'F', 696), +(158244, 'Alaina', 1996, 'F', 692), +(158245, 'Nikki', 1996, 'F', 691), +(158246, 'Janelle', 1996, 'F', 687), +(158247, 'Kellie', 1996, 'F', 685), +(158248, 'Haleigh', 1996, 'F', 680), +(158249, 'Bria', 1996, 'F', 678), +(158250, 'Aimee', 1996, 'F', 675), +(158251, 'Aliyah', 1996, 'F', 675), +(158252, 'Barbara', 1996, 'F', 674), +(158253, 'Taryn', 1996, 'F', 674), +(158254, 'Devin', 1996, 'F', 672), +(158255, 'Antonia', 1996, 'F', 669), +(158256, 'Alyson', 1996, 'F', 668), +(158257, 'India', 1996, 'F', 668), +(158258, 'Ann', 1996, 'F', 664), +(158259, 'Melody', 1996, 'F', 664), +(158260, 'Brianne', 1996, 'F', 663), +(158261, 'Clara', 1996, 'F', 661), +(158262, 'Gianna', 1996, 'F', 656), +(158263, 'Cassie', 1996, 'F', 652), +(158264, 'Devon', 1996, 'F', 650), +(158265, 'Lucy', 1996, 'F', 647), +(158266, 'Ivy', 1996, 'F', 646), +(158267, 'Larissa', 1996, 'F', 639), +(158268, 'Jane', 1996, 'F', 638), +(158269, 'Sonia', 1996, 'F', 638), +(158270, 'Deborah', 1996, 'F', 633), +(158271, 'Kayleigh', 1996, 'F', 632), +(158272, 'Regina', 1996, 'F', 626), +(158273, 'Noelle', 1996, 'F', 625), +(158274, 'Mariana', 1996, 'F', 623), +(158275, 'Marilyn', 1996, 'F', 612), +(158276, 'Irene', 1996, 'F', 611), +(158277, 'Candice', 1996, 'F', 609), +(158278, 'Carina', 1996, 'F', 607), +(158279, 'Arielle', 1996, 'F', 605), +(158280, 'Stacy', 1996, 'F', 605), +(158281, 'Tyra', 1996, 'F', 604), +(158282, 'Karissa', 1996, 'F', 603), +(158283, 'Nicolette', 1996, 'F', 603), +(158284, 'Kiersten', 1996, 'F', 602), +(158285, 'Kenya', 1996, 'F', 599), +(158286, 'Tania', 1996, 'F', 599), +(158287, 'Kaila', 1996, 'F', 597), +(158288, 'Yasmine', 1996, 'F', 596), +(158289, 'Kourtney', 1996, 'F', 594), +(158290, 'Alice', 1996, 'F', 592), +(158291, 'Lesley', 1996, 'F', 590), +(158292, 'Shayna', 1996, 'F', 588), +(158293, 'Johanna', 1996, 'F', 587), +(158294, 'Joy', 1996, 'F', 587), +(158295, 'Daniella', 1996, 'F', 586); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(158296, 'Kassidy', 1996, 'F', 586), +(158297, 'Stacey', 1996, 'F', 582), +(158298, 'Allie', 1996, 'F', 581), +(158299, 'Adrienne', 1996, 'F', 578), +(158300, 'Tina', 1996, 'F', 578), +(158301, 'Elisa', 1996, 'F', 576), +(158302, 'Tiffani', 1996, 'F', 576), +(158303, 'Simone', 1996, 'F', 571), +(158304, 'Tanya', 1996, 'F', 571), +(158305, 'Yasmin', 1996, 'F', 571), +(158306, 'Reagan', 1996, 'F', 567), +(158307, 'Nia', 1996, 'F', 565), +(158308, 'Alma', 1996, 'F', 564), +(158309, 'Lexus', 1996, 'F', 556), +(158310, 'Micaela', 1996, 'F', 555), +(158311, 'Nora', 1996, 'F', 555), +(158312, 'Abbey', 1996, 'F', 552), +(158313, 'Mckayla', 1996, 'F', 552), +(158314, 'Paula', 1996, 'F', 552), +(158315, 'Sylvia', 1996, 'F', 551), +(158316, 'Angelique', 1996, 'F', 549), +(158317, 'Talia', 1996, 'F', 549), +(158318, 'Leticia', 1996, 'F', 547), +(158319, 'Chasity', 1996, 'F', 544), +(158320, 'Frances', 1996, 'F', 544), +(158321, 'Alanna', 1996, 'F', 543), +(158322, 'Christy', 1996, 'F', 543), +(158323, 'Cristal', 1996, 'F', 541), +(158324, 'Kari', 1996, 'F', 540), +(158325, 'Melinda', 1996, 'F', 540), +(158326, 'Eliza', 1996, 'F', 539), +(158327, 'Ciera', 1996, 'F', 537), +(158328, 'Shawna', 1996, 'F', 536), +(158329, 'Skyler', 1996, 'F', 536), +(158330, 'Elaine', 1996, 'F', 531), +(158331, 'Tianna', 1996, 'F', 530), +(158332, 'Maritza', 1996, 'F', 525), +(158333, 'Chelsie', 1996, 'F', 520), +(158334, 'Kelsi', 1996, 'F', 520), +(158335, 'Emilie', 1996, 'F', 519), +(158336, 'Marlene', 1996, 'F', 518), +(158337, 'Robyn', 1996, 'F', 516), +(158338, 'Hailee', 1996, 'F', 507), +(158339, 'Bailee', 1996, 'F', 504), +(158340, 'Kaley', 1996, 'F', 502), +(158341, 'Jaime', 1996, 'F', 500), +(158342, 'Kaleigh', 1996, 'F', 499), +(158343, 'Kaylin', 1996, 'F', 496), +(158344, 'Viviana', 1996, 'F', 495), +(158345, 'Chandler', 1996, 'F', 493), +(158346, 'Avery', 1996, 'F', 492), +(158347, 'Charity', 1996, 'F', 489), +(158348, 'Moriah', 1996, 'F', 488), +(158349, 'Thalia', 1996, 'F', 488), +(158350, 'Regan', 1996, 'F', 487), +(158351, 'Carlie', 1996, 'F', 486), +(158352, 'Eleanor', 1996, 'F', 486), +(158353, 'Kaylie', 1996, 'F', 485), +(158354, 'Kristy', 1996, 'F', 485), +(158355, 'Perla', 1996, 'F', 485), +(158356, 'Kiera', 1996, 'F', 484), +(158357, 'Tamia', 1996, 'F', 483), +(158358, 'Darian', 1996, 'F', 482), +(158359, 'Hallie', 1996, 'F', 480), +(158360, 'Kristine', 1996, 'F', 479), +(158361, 'Randi', 1996, 'F', 478), +(158362, 'Maribel', 1996, 'F', 477), +(158363, 'Christa', 1996, 'F', 476), +(158364, 'Yvette', 1996, 'F', 476), +(158365, 'Janae', 1996, 'F', 474), +(158366, 'Chantel', 1996, 'F', 473), +(158367, 'Shaina', 1996, 'F', 473), +(158368, 'Judith', 1996, 'F', 470), +(158369, 'Cortney', 1996, 'F', 467), +(158370, 'Shyanne', 1996, 'F', 467), +(158371, 'Margarita', 1996, 'F', 465), +(158372, 'Paulina', 1996, 'F', 463), +(158373, 'Jocelyne', 1996, 'F', 461), +(158374, 'Ashlynn', 1996, 'F', 460), +(158375, 'Genevieve', 1996, 'F', 460), +(158376, 'Tracy', 1996, 'F', 457), +(158377, 'Cameron', 1996, 'F', 456), +(158378, 'Keely', 1996, 'F', 454), +(158379, 'Iris', 1996, 'F', 453), +(158380, 'Jeanette', 1996, 'F', 453), +(158381, 'Blanca', 1996, 'F', 452), +(158382, 'Leanna', 1996, 'F', 452), +(158383, 'Meaghan', 1996, 'F', 452), +(158384, 'Desirae', 1996, 'F', 451), +(158385, 'Lizbeth', 1996, 'F', 451), +(158386, 'Clare', 1996, 'F', 450), +(158387, 'Halie', 1996, 'F', 448), +(158388, 'Yvonne', 1996, 'F', 447), +(158389, 'Kathy', 1996, 'F', 446), +(158390, 'Maddison', 1996, 'F', 446), +(158391, 'Makenna', 1996, 'F', 445), +(158392, 'Madalyn', 1996, 'F', 444), +(158393, 'Stephany', 1996, 'F', 442), +(158394, 'Rachelle', 1996, 'F', 441), +(158395, 'Cayla', 1996, 'F', 438), +(158396, 'Dallas', 1996, 'F', 438), +(158397, 'Julianne', 1996, 'F', 437), +(158398, 'Brittani', 1996, 'F', 436), +(158399, 'Ericka', 1996, 'F', 433), +(158400, 'Paris', 1996, 'F', 433), +(158401, 'Katharine', 1996, 'F', 432), +(158402, 'Phoebe', 1996, 'F', 432), +(158403, 'Darby', 1996, 'F', 431), +(158404, 'Essence', 1996, 'F', 431), +(158405, 'Katelin', 1996, 'F', 429), +(158406, 'Addison', 1996, 'F', 428), +(158407, 'Alexandrea', 1996, 'F', 426), +(158408, 'Moesha', 1996, 'F', 426), +(158409, 'Lyric', 1996, 'F', 425), +(158410, 'Maranda', 1996, 'F', 424), +(158411, 'Fatima', 1996, 'F', 422), +(158412, 'Mollie', 1996, 'F', 422), +(158413, 'Jayla', 1996, 'F', 421), +(158414, 'Tanisha', 1996, 'F', 421), +(158415, 'Donna', 1996, 'F', 420), +(158416, 'Lena', 1996, 'F', 420), +(158417, 'Rosemary', 1996, 'F', 420), +(158418, 'Kaylyn', 1996, 'F', 419), +(158419, 'Susana', 1996, 'F', 418), +(158420, 'Alina', 1996, 'F', 417), +(158421, 'Chanel', 1996, 'F', 416), +(158422, 'Alisa', 1996, 'F', 415), +(158423, 'Savanah', 1996, 'F', 415), +(158424, 'Aisha', 1996, 'F', 413), +(158425, 'Carol', 1996, 'F', 411), +(158426, 'Kacie', 1996, 'F', 409), +(158427, 'Tess', 1996, 'F', 409), +(158428, 'Edith', 1996, 'F', 408), +(158429, 'Lea', 1996, 'F', 408), +(158430, 'Lexi', 1996, 'F', 408), +(158431, 'Breanne', 1996, 'F', 406), +(158432, 'Casandra', 1996, 'F', 405), +(158433, 'Sandy', 1996, 'F', 405), +(158434, 'Kristi', 1996, 'F', 404), +(158435, 'Kiley', 1996, 'F', 400), +(158436, 'Lucia', 1996, 'F', 400), +(158437, 'Bridgette', 1996, 'F', 398), +(158438, 'Shantel', 1996, 'F', 398), +(158439, 'Michele', 1996, 'F', 397), +(158440, 'Skye', 1996, 'F', 396), +(158441, 'Georgia', 1996, 'F', 395), +(158442, 'Anita', 1996, 'F', 394), +(158443, 'Jaqueline', 1996, 'F', 394), +(158444, 'Mara', 1996, 'F', 393), +(158445, 'Diane', 1996, 'F', 391), +(158446, 'Corinne', 1996, 'F', 389), +(158447, 'Heaven', 1996, 'F', 389), +(158448, 'Noemi', 1996, 'F', 388), +(158449, 'Sarai', 1996, 'F', 387), +(158450, 'Bonnie', 1996, 'F', 386), +(158451, 'Estefania', 1996, 'F', 386), +(158452, 'Tristan', 1996, 'F', 386), +(158453, 'Lyndsey', 1996, 'F', 385), +(158454, 'Reyna', 1996, 'F', 385), +(158455, 'Araceli', 1996, 'F', 383), +(158456, 'Karly', 1996, 'F', 383), +(158457, 'Beatriz', 1996, 'F', 382), +(158458, 'Ella', 1996, 'F', 382), +(158459, 'Nathalie', 1996, 'F', 382), +(158460, 'Ryan', 1996, 'F', 382), +(158461, 'Jacklyn', 1996, 'F', 380), +(158462, 'Stefanie', 1996, 'F', 380), +(158463, 'Gillian', 1996, 'F', 379), +(158464, 'Rylee', 1996, 'F', 379), +(158465, 'Halle', 1996, 'F', 378), +(158466, 'Sheila', 1996, 'F', 378), +(158467, 'Yolanda', 1996, 'F', 378), +(158468, 'Selina', 1996, 'F', 376), +(158469, 'Fiona', 1996, 'F', 375), +(158470, 'Laurel', 1996, 'F', 375), +(158471, 'Ellie', 1996, 'F', 374), +(158472, 'Karli', 1996, 'F', 374), +(158473, 'Montana', 1996, 'F', 374), +(158474, 'Eileen', 1996, 'F', 373), +(158475, 'Brielle', 1996, 'F', 372), +(158476, 'Destiney', 1996, 'F', 370), +(158477, 'Karlee', 1996, 'F', 370), +(158478, 'Katarina', 1996, 'F', 370), +(158479, 'Misty', 1996, 'F', 369), +(158480, 'Karlie', 1996, 'F', 368), +(158481, 'Kianna', 1996, 'F', 366), +(158482, 'Carli', 1996, 'F', 365), +(158483, 'Sally', 1996, 'F', 365), +(158484, 'Giselle', 1996, 'F', 363), +(158485, 'Keisha', 1996, 'F', 360), +(158486, 'Kailee', 1996, 'F', 359), +(158487, 'Micah', 1996, 'F', 359), +(158488, 'Alysha', 1996, 'F', 358), +(158489, 'Aspen', 1996, 'F', 357), +(158490, 'Celina', 1996, 'F', 356), +(158491, 'Alayna', 1996, 'F', 355), +(158492, 'Aurora', 1996, 'F', 355), +(158493, 'Emely', 1996, 'F', 355), +(158494, 'Lexie', 1996, 'F', 355), +(158495, 'Eden', 1996, 'F', 353), +(158496, 'Elaina', 1996, 'F', 353), +(158497, 'Shauna', 1996, 'F', 352), +(158498, 'Alex', 1996, 'F', 351), +(158499, 'Kelley', 1996, 'F', 351), +(158500, 'Dorothy', 1996, 'F', 350), +(158501, 'Yadira', 1996, 'F', 350), +(158502, 'Abbie', 1996, 'F', 349), +(158503, 'Antoinette', 1996, 'F', 349), +(158504, 'Angie', 1996, 'F', 348), +(158505, 'Helena', 1996, 'F', 348), +(158506, 'Demi', 1996, 'F', 347), +(158507, 'Shakira', 1996, 'F', 347), +(158508, 'Kaela', 1996, 'F', 345), +(158509, 'Lori', 1996, 'F', 345), +(158510, 'Jill', 1996, 'F', 344), +(158511, 'Joyce', 1996, 'F', 342), +(158512, 'Kelsea', 1996, 'F', 342), +(158513, 'Shana', 1996, 'F', 342), +(158514, 'Katlin', 1996, 'F', 339), +(158515, 'Shirley', 1996, 'F', 339), +(158516, 'Zoey', 1996, 'F', 339), +(158517, 'Destini', 1996, 'F', 338), +(158518, 'Janice', 1996, 'F', 338), +(158519, 'Lauryn', 1996, 'F', 338), +(158520, 'Ayanna', 1996, 'F', 337), +(158521, 'Sage', 1996, 'F', 337), +(158522, 'Celia', 1996, 'F', 336), +(158523, 'Tasha', 1996, 'F', 336), +(158524, 'Shelbie', 1996, 'F', 335), +(158525, 'Blair', 1996, 'F', 334), +(158526, 'Suzanne', 1996, 'F', 334), +(158527, 'Annika', 1996, 'F', 333), +(158528, 'Norma', 1996, 'F', 332), +(158529, 'Trisha', 1996, 'F', 332), +(158530, 'Trinity', 1996, 'F', 331), +(158531, 'Lesly', 1996, 'F', 330), +(158532, 'Roxanne', 1996, 'F', 330), +(158533, 'Cora', 1996, 'F', 327), +(158534, 'Rocio', 1996, 'F', 327), +(158535, 'Carlee', 1996, 'F', 326), +(158536, 'Ali', 1996, 'F', 325), +(158537, 'Kasandra', 1996, 'F', 325), +(158538, 'Ashlie', 1996, 'F', 322), +(158539, 'Luz', 1996, 'F', 322), +(158540, 'Odalys', 1996, 'F', 322), +(158541, 'Dulce', 1996, 'F', 321), +(158542, 'Fabiola', 1996, 'F', 320), +(158543, 'Shelbi', 1996, 'F', 320), +(158544, 'Joselyn', 1996, 'F', 319), +(158545, 'Rochelle', 1996, 'F', 319), +(158546, 'Shanice', 1996, 'F', 319), +(158547, 'Athena', 1996, 'F', 317), +(158548, 'Dalia', 1996, 'F', 317), +(158549, 'Yessenia', 1996, 'F', 315), +(158550, 'Juanita', 1996, 'F', 314), +(158551, 'Kerri', 1996, 'F', 314), +(158552, 'Ashanti', 1996, 'F', 313), +(158553, 'Hillary', 1996, 'F', 312), +(158554, 'Brook', 1996, 'F', 311), +(158555, 'Keri', 1996, 'F', 311), +(158556, 'Loren', 1996, 'F', 311), +(158557, 'Daisha', 1996, 'F', 310), +(158558, 'Maura', 1996, 'F', 310), +(158559, 'Christiana', 1996, 'F', 309), +(158560, 'Kirstin', 1996, 'F', 308), +(158561, 'Itzel', 1996, 'F', 307), +(158562, 'Janessa', 1996, 'F', 307), +(158563, 'Aileen', 1996, 'F', 303), +(158564, 'Rita', 1996, 'F', 303), +(158565, 'Arlene', 1996, 'F', 302), +(158566, 'Jena', 1996, 'F', 302), +(158567, 'Yamilex', 1996, 'F', 301), +(158568, 'Aleah', 1996, 'F', 299), +(158569, 'Breann', 1996, 'F', 299), +(158570, 'Kacey', 1996, 'F', 298), +(158571, 'Kaelyn', 1996, 'F', 298), +(158572, 'Rhiannon', 1996, 'F', 297), +(158573, 'Anissa', 1996, 'F', 296), +(158574, 'Sarina', 1996, 'F', 296), +(158575, 'Kailyn', 1996, 'F', 295), +(158576, 'Rebeca', 1996, 'F', 295), +(158577, 'Annette', 1996, 'F', 294), +(158578, 'Mariela', 1996, 'F', 294), +(158579, 'Silvia', 1996, 'F', 294), +(158580, 'Kori', 1996, 'F', 291), +(158581, 'Charlene', 1996, 'F', 290), +(158582, 'Gretchen', 1996, 'F', 290), +(158583, 'Tristen', 1996, 'F', 290), +(158584, 'Esperanza', 1996, 'F', 289), +(158585, 'Jesse', 1996, 'F', 289), +(158586, 'Kerry', 1996, 'F', 289), +(158587, 'Maegan', 1996, 'F', 289), +(158588, 'Zaria', 1996, 'F', 289), +(158589, 'Allyssa', 1996, 'F', 288), +(158590, 'Melina', 1996, 'F', 288), +(158591, 'Mikala', 1996, 'F', 288), +(158592, 'Shanna', 1996, 'F', 288), +(158593, 'Sonya', 1996, 'F', 288), +(158594, 'Drew', 1996, 'F', 287), +(158595, 'Miracle', 1996, 'F', 287), +(158596, 'Justina', 1996, 'F', 286), +(158597, 'Shea', 1996, 'F', 286), +(158598, 'Sydnee', 1996, 'F', 286), +(158599, 'Tamera', 1996, 'F', 286), +(158600, 'Ava', 1996, 'F', 285), +(158601, 'Brionna', 1996, 'F', 285), +(158602, 'Karley', 1996, 'F', 285), +(158603, 'Cecelia', 1996, 'F', 284), +(158604, 'Macey', 1996, 'F', 284), +(158605, 'Alysia', 1996, 'F', 283), +(158606, 'Darlene', 1996, 'F', 283), +(158607, 'Mireya', 1996, 'F', 283), +(158608, 'Sade', 1996, 'F', 283), +(158609, 'Alize', 1996, 'F', 282), +(158610, 'Gwendolyn', 1996, 'F', 282), +(158611, 'Jodi', 1996, 'F', 282), +(158612, 'Myranda', 1996, 'F', 282), +(158613, 'Berenice', 1996, 'F', 281), +(158614, 'Bobbie', 1996, 'F', 281), +(158615, 'Alycia', 1996, 'F', 280), +(158616, 'Ashly', 1996, 'F', 280), +(158617, 'Iesha', 1996, 'F', 279), +(158618, 'Kristian', 1996, 'F', 279), +(158619, 'Xena', 1996, 'F', 279), +(158620, 'Abbigail', 1996, 'F', 278), +(158621, 'Corina', 1996, 'F', 278), +(158622, 'Lucero', 1996, 'F', 278), +(158623, 'Macie', 1996, 'F', 278), +(158624, 'Dania', 1996, 'F', 277), +(158625, 'Dasia', 1996, 'F', 277), +(158626, 'Gladys', 1996, 'F', 277), +(158627, 'Lacy', 1996, 'F', 276), +(158628, 'Ashli', 1996, 'F', 274), +(158629, 'Brooklynn', 1996, 'F', 274), +(158630, 'Graciela', 1996, 'F', 274), +(158631, 'Katy', 1996, 'F', 274), +(158632, 'Katia', 1996, 'F', 273), +(158633, 'Breonna', 1996, 'F', 272), +(158634, 'Celine', 1996, 'F', 271), +(158635, 'Kalyn', 1996, 'F', 271), +(158636, 'Shyann', 1996, 'F', 271), +(158637, 'Lara', 1996, 'F', 270), +(158638, 'Lizette', 1996, 'F', 270), +(158639, 'Elissa', 1996, 'F', 269), +(158640, 'Malia', 1996, 'F', 268), +(158641, 'Nataly', 1996, 'F', 268), +(158642, 'Beverly', 1996, 'F', 266), +(158643, 'Jackie', 1996, 'F', 265), +(158644, 'Julissa', 1996, 'F', 265), +(158645, 'Yasmeen', 1996, 'F', 265), +(158646, 'Alessandra', 1996, 'F', 264), +(158647, 'Jayme', 1996, 'F', 264), +(158648, 'Unique', 1996, 'F', 264), +(158649, 'Joanne', 1996, 'F', 263), +(158650, 'Kaci', 1996, 'F', 263), +(158651, 'Mandy', 1996, 'F', 263), +(158652, 'Christen', 1996, 'F', 261), +(158653, 'Kayli', 1996, 'F', 261), +(158654, 'Dawn', 1996, 'F', 260), +(158655, 'Khadijah', 1996, 'F', 260), +(158656, 'Bryana', 1996, 'F', 259), +(158657, 'Kristyn', 1996, 'F', 259), +(158658, 'Leanne', 1996, 'F', 259), +(158659, 'Alena', 1996, 'F', 258), +(158660, 'Connie', 1996, 'F', 257), +(158661, 'Monika', 1996, 'F', 257), +(158662, 'Ingrid', 1996, 'F', 256), +(158663, 'Kayley', 1996, 'F', 256), +(158664, 'Devyn', 1996, 'F', 255), +(158665, 'Patience', 1996, 'F', 255), +(158666, 'Roxana', 1996, 'F', 255), +(158667, 'Devan', 1996, 'F', 254), +(158668, 'Daija', 1996, 'F', 253), +(158669, 'Kaylynn', 1996, 'F', 253), +(158670, 'Anika', 1996, 'F', 251), +(158671, 'Carson', 1996, 'F', 251), +(158672, 'Cheryl', 1996, 'F', 251), +(158673, 'Mindy', 1996, 'F', 251), +(158674, 'Magdalena', 1996, 'F', 250), +(158675, 'Dianna', 1996, 'F', 249), +(158676, 'Hollie', 1996, 'F', 249), +(158677, 'Maricela', 1996, 'F', 249), +(158678, 'Scarlett', 1996, 'F', 249), +(158679, 'Sienna', 1996, 'F', 249), +(158680, 'Ayana', 1996, 'F', 247), +(158681, 'Mariam', 1996, 'F', 247), +(158682, 'Aja', 1996, 'F', 246), +(158683, 'Maia', 1996, 'F', 245), +(158684, 'Chantal', 1996, 'F', 244), +(158685, 'Juliet', 1996, 'F', 244), +(158686, 'Kenzie', 1996, 'F', 244), +(158687, 'Jennie', 1996, 'F', 243), +(158688, 'Amani', 1996, 'F', 242), +(158689, 'Jenifer', 1996, 'F', 242), +(158690, 'Noel', 1996, 'F', 242), +(158691, 'Daja', 1996, 'F', 241), +(158692, 'Daphne', 1996, 'F', 241), +(158693, 'Kortney', 1996, 'F', 241), +(158694, 'Chynna', 1996, 'F', 240), +(158695, 'Beth', 1996, 'F', 239), +(158696, 'Bobbi', 1996, 'F', 239), +(158697, 'Racheal', 1996, 'F', 239), +(158698, 'Haylie', 1996, 'F', 238), +(158699, 'Octavia', 1996, 'F', 238), +(158700, 'Alysa', 1996, 'F', 237), +(158701, 'Constance', 1996, 'F', 237), +(158702, 'Vanesa', 1996, 'F', 237), +(158703, 'Brandie', 1996, 'F', 236), +(158704, 'Emerald', 1996, 'F', 236), +(158705, 'Judy', 1996, 'F', 236), +(158706, 'Myra', 1996, 'F', 236), +(158707, 'Ayla', 1996, 'F', 235), +(158708, 'Joelle', 1996, 'F', 235), +(158709, 'Kalie', 1996, 'F', 235), +(158710, 'Sydni', 1996, 'F', 235), +(158711, 'Sydnie', 1996, 'F', 235), +(158712, 'Jana', 1996, 'F', 234), +(158713, 'Kala', 1996, 'F', 234), +(158714, 'Lilly', 1996, 'F', 234), +(158715, 'Maureen', 1996, 'F', 234), +(158716, 'Marley', 1996, 'F', 233), +(158717, 'Stevie', 1996, 'F', 233), +(158718, 'Catalina', 1996, 'F', 232), +(158719, 'Elyssa', 1996, 'F', 232), +(158720, 'Tatianna', 1996, 'F', 232), +(158721, 'Janie', 1996, 'F', 231), +(158722, 'Trista', 1996, 'F', 231), +(158723, 'Janette', 1996, 'F', 230), +(158724, 'Nadine', 1996, 'F', 230), +(158725, 'Alecia', 1996, 'F', 229), +(158726, 'Marianna', 1996, 'F', 229), +(158727, 'Mattie', 1996, 'F', 229), +(158728, 'Terri', 1996, 'F', 229), +(158729, 'Cori', 1996, 'F', 228), +(158730, 'Elsa', 1996, 'F', 228), +(158731, 'Gabriel', 1996, 'F', 228), +(158732, 'Nayeli', 1996, 'F', 228), +(158733, 'Hali', 1996, 'F', 227), +(158734, 'Shianne', 1996, 'F', 227), +(158735, 'Debra', 1996, 'F', 226), +(158736, 'Kia', 1996, 'F', 226), +(158737, 'Tammy', 1996, 'F', 225), +(158738, 'Damaris', 1996, 'F', 224), +(158739, 'Dayna', 1996, 'F', 224), +(158740, 'Elisha', 1996, 'F', 224), +(158741, 'Emilia', 1996, 'F', 224), +(158742, 'Stacie', 1996, 'F', 224), +(158743, 'Susanna', 1996, 'F', 224), +(158744, 'Tabatha', 1996, 'F', 224), +(158745, 'Chase', 1996, 'F', 223), +(158746, 'Eliana', 1996, 'F', 223), +(158747, 'Jessika', 1996, 'F', 223), +(158748, 'Martina', 1996, 'F', 223), +(158749, 'Amari', 1996, 'F', 222), +(158750, 'Annamarie', 1996, 'F', 222), +(158751, 'Juliette', 1996, 'F', 222), +(158752, 'Asha', 1996, 'F', 221), +(158753, 'Hana', 1996, 'F', 221), +(158754, 'Audra', 1996, 'F', 220), +(158755, 'Juana', 1996, 'F', 220), +(158756, 'Kallie', 1996, 'F', 220), +(158757, 'Tonya', 1996, 'F', 220), +(158758, 'Baby', 1996, 'F', 219), +(158759, 'Leigh', 1996, 'F', 219), +(158760, 'Reina', 1996, 'F', 219), +(158761, 'Domonique', 1996, 'F', 218), +(158762, 'Isis', 1996, 'F', 218), +(158763, 'Marisela', 1996, 'F', 218), +(158764, 'Christie', 1996, 'F', 217), +(158765, 'Madisen', 1996, 'F', 217), +(158766, 'Shelly', 1996, 'F', 217), +(158767, 'Betty', 1996, 'F', 216), +(158768, 'Elyse', 1996, 'F', 216), +(158769, 'Katlynn', 1996, 'F', 216), +(158770, 'Kaycee', 1996, 'F', 216), +(158771, 'Kinsey', 1996, 'F', 216), +(158772, 'Odalis', 1996, 'F', 216), +(158773, 'Adrian', 1996, 'F', 215), +(158774, 'Beatrice', 1996, 'F', 215), +(158775, 'Brittni', 1996, 'F', 214), +(158776, 'Kendal', 1996, 'F', 214), +(158777, 'Layla', 1996, 'F', 214), +(158778, 'Stormy', 1996, 'F', 214), +(158779, 'Aubree', 1996, 'F', 213), +(158780, 'Jazmyn', 1996, 'F', 213), +(158781, 'Kenia', 1996, 'F', 213), +(158782, 'Yajaira', 1996, 'F', 213), +(158783, 'Cydney', 1996, 'F', 212), +(158784, 'Kaylah', 1996, 'F', 212), +(158785, 'Princess', 1996, 'F', 212), +(158786, 'Annabelle', 1996, 'F', 211), +(158787, 'Marlena', 1996, 'F', 211), +(158788, 'Chaya', 1996, 'F', 210), +(158789, 'Krysta', 1996, 'F', 210), +(158790, 'Sarahi', 1996, 'F', 210), +(158791, 'Dina', 1996, 'F', 209), +(158792, 'Leilani', 1996, 'F', 209), +(158793, 'Lynn', 1996, 'F', 209), +(158794, 'Alia', 1996, 'F', 208), +(158795, 'Denisse', 1996, 'F', 208), +(158796, 'Jalisa', 1996, 'F', 208), +(158797, 'Jami', 1996, 'F', 207), +(158798, 'Marlee', 1996, 'F', 207), +(158799, 'Haven', 1996, 'F', 206), +(158800, 'Katerina', 1996, 'F', 206), +(158801, 'Liana', 1996, 'F', 206), +(158802, 'Cinthia', 1996, 'F', 205), +(158803, 'Jazlyn', 1996, 'F', 204), +(158804, 'Terra', 1996, 'F', 204), +(158805, 'Viridiana', 1996, 'F', 204), +(158806, 'Jailene', 1996, 'F', 203), +(158807, 'Kyleigh', 1996, 'F', 203), +(158808, 'Tatum', 1996, 'F', 203), +(158809, 'Valentina', 1996, 'F', 203), +(158810, 'Alyssia', 1996, 'F', 202), +(158811, 'Anjelica', 1996, 'F', 202), +(158812, 'Billie', 1996, 'F', 202), +(158813, 'Chyna', 1996, 'F', 202), +(158814, 'Estefany', 1996, 'F', 202), +(158815, 'Ivette', 1996, 'F', 202), +(158816, 'Sheridan', 1996, 'F', 202), +(158817, 'Alesha', 1996, 'F', 201), +(158818, 'Ansley', 1996, 'F', 201), +(158819, 'Madyson', 1996, 'F', 201), +(158820, 'Paloma', 1996, 'F', 201), +(158821, 'Rikki', 1996, 'F', 201), +(158822, 'Eboni', 1996, 'F', 200), +(158823, 'Jaycie', 1996, 'F', 200), +(158824, 'Giovanna', 1996, 'F', 199), +(158825, 'Jacey', 1996, 'F', 199), +(158826, 'Lexis', 1996, 'F', 199), +(158827, 'Lacie', 1996, 'F', 198), +(158828, 'Olga', 1996, 'F', 198), +(158829, 'Tyesha', 1996, 'F', 198), +(158830, 'Belinda', 1996, 'F', 197), +(158831, 'Tracey', 1996, 'F', 197), +(158832, 'Yazmin', 1996, 'F', 197), +(158833, 'Astrid', 1996, 'F', 196), +(158834, 'Eryn', 1996, 'F', 196), +(158835, 'Caitlynn', 1996, 'F', 195), +(158836, 'Daijah', 1996, 'F', 195), +(158837, 'Jasmyn', 1996, 'F', 195), +(158838, 'Infant', 1996, 'F', 194), +(158839, 'Joslyn', 1996, 'F', 194), +(158840, 'Quinn', 1996, 'F', 194), +(158841, 'Christin', 1996, 'F', 193), +(158842, 'Dejah', 1996, 'F', 193), +(158843, 'Fernanda', 1996, 'F', 193), +(158844, 'Maxine', 1996, 'F', 193), +(158845, 'Janay', 1996, 'F', 192), +(158846, 'Pauline', 1996, 'F', 192), +(158847, 'Yaritza', 1996, 'F', 192), +(158848, 'Jessi', 1996, 'F', 191), +(158849, 'Leeann', 1996, 'F', 191), +(158850, 'Blake', 1996, 'F', 190), +(158851, 'China', 1996, 'F', 190), +(158852, 'Kimberley', 1996, 'F', 190), +(158853, 'Melisa', 1996, 'F', 190), +(158854, 'Rayna', 1996, 'F', 190), +(158855, 'Alivia', 1996, 'F', 189), +(158856, 'Leann', 1996, 'F', 189), +(158857, 'Luisa', 1996, 'F', 189), +(158858, 'Brittanie', 1996, 'F', 188), +(158859, 'Griselda', 1996, 'F', 188), +(158860, 'Jaden', 1996, 'F', 188), +(158861, 'Kimberlee', 1996, 'F', 188), +(158862, 'Suzette', 1996, 'F', 188), +(158863, 'Breeanna', 1996, 'F', 187), +(158864, 'Delia', 1996, 'F', 187), +(158865, 'Demetria', 1996, 'F', 187), +(158866, 'Gracie', 1996, 'F', 187), +(158867, 'Irma', 1996, 'F', 187), +(158868, 'Katheryn', 1996, 'F', 187), +(158869, 'Lisette', 1996, 'F', 187), +(158870, 'Brea', 1996, 'F', 186), +(158871, 'Lilian', 1996, 'F', 186), +(158872, 'Maira', 1996, 'F', 186), +(158873, 'Geneva', 1996, 'F', 185), +(158874, 'Lorraine', 1996, 'F', 185), +(158875, 'Madisyn', 1996, 'F', 185), +(158876, 'Denisha', 1996, 'F', 184), +(158877, 'Liza', 1996, 'F', 184), +(158878, 'Marcella', 1996, 'F', 184), +(158879, 'Shae', 1996, 'F', 184), +(158880, 'Annmarie', 1996, 'F', 183), +(158881, 'Destany', 1996, 'F', 183), +(158882, 'Flor', 1996, 'F', 183), +(158883, 'Hayden', 1996, 'F', 183), +(158884, 'Iliana', 1996, 'F', 183), +(158885, 'London', 1996, 'F', 183), +(158886, 'Malika', 1996, 'F', 183), +(158887, 'Keanna', 1996, 'F', 182), +(158888, 'Lana', 1996, 'F', 182), +(158889, 'Lia', 1996, 'F', 182), +(158890, 'Estefani', 1996, 'F', 181), +(158891, 'Lillie', 1996, 'F', 181), +(158892, 'Maci', 1996, 'F', 181), +(158893, 'Marcela', 1996, 'F', 181), +(158894, 'Raegan', 1996, 'F', 181), +(158895, 'Tiarra', 1996, 'F', 181), +(158896, 'Chelsi', 1996, 'F', 180), +(158897, 'Eunice', 1996, 'F', 180), +(158898, 'Ryann', 1996, 'F', 180), +(158899, 'Daria', 1996, 'F', 179), +(158900, 'Jodie', 1996, 'F', 179), +(158901, 'Leila', 1996, 'F', 179), +(158902, 'Iman', 1996, 'F', 178), +(158903, 'Jessenia', 1996, 'F', 178), +(158904, 'Savana', 1996, 'F', 178), +(158905, 'Coral', 1996, 'F', 177), +(158906, 'Danica', 1996, 'F', 177), +(158907, 'Lina', 1996, 'F', 177), +(158908, 'Shaylee', 1996, 'F', 177), +(158909, 'Adilene', 1996, 'F', 176), +(158910, 'Elexis', 1996, 'F', 176), +(158911, 'Fallon', 1996, 'F', 176), +(158912, 'Lidia', 1996, 'F', 176), +(158913, 'Lizeth', 1996, 'F', 176), +(158914, 'Makala', 1996, 'F', 176), +(158915, 'Brynn', 1996, 'F', 175), +(158916, 'Chantelle', 1996, 'F', 175), +(158917, 'Harmony', 1996, 'F', 175), +(158918, 'Kristal', 1996, 'F', 175), +(158919, 'Latasha', 1996, 'F', 175), +(158920, 'Lissette', 1996, 'F', 175), +(158921, 'Pearl', 1996, 'F', 175), +(158922, 'Staci', 1996, 'F', 175), +(158923, 'Ciarra', 1996, 'F', 174), +(158924, 'Danika', 1996, 'F', 174), +(158925, 'Jackeline', 1996, 'F', 174), +(158926, 'Latisha', 1996, 'F', 174), +(158927, 'Leandra', 1996, 'F', 174), +(158928, 'Mariel', 1996, 'F', 174), +(158929, 'Rylie', 1996, 'F', 174), +(158930, 'Shyla', 1996, 'F', 174), +(158931, 'Anais', 1996, 'F', 173), +(158932, 'Mari', 1996, 'F', 173), +(158933, 'Reanna', 1996, 'F', 173), +(158934, 'Reilly', 1996, 'F', 173), +(158935, 'Tiffanie', 1996, 'F', 173), +(158936, 'Winter', 1996, 'F', 173), +(158937, 'Alanis', 1996, 'F', 172), +(158938, 'Britany', 1996, 'F', 171), +(158939, 'Cali', 1996, 'F', 171), +(158940, 'Jayde', 1996, 'F', 171), +(158941, 'Jensen', 1996, 'F', 171), +(158942, 'Salena', 1996, 'F', 171), +(158943, 'Tiera', 1996, 'F', 171), +(158944, 'Annalise', 1996, 'F', 170), +(158945, 'Bernadette', 1996, 'F', 170), +(158946, 'Dora', 1996, 'F', 170), +(158947, 'Hazel', 1996, 'F', 170), +(158948, 'Janine', 1996, 'F', 170), +(158949, 'Joann', 1996, 'F', 170), +(158950, 'Kaylan', 1996, 'F', 170), +(158951, 'Samara', 1996, 'F', 170), +(158952, 'Shaniya', 1996, 'F', 170), +(158953, 'Jacinda', 1996, 'F', 169), +(158954, 'Kassie', 1996, 'F', 169), +(158955, 'Kristie', 1996, 'F', 169), +(158956, 'Armani', 1996, 'F', 168), +(158957, 'Janna', 1996, 'F', 168), +(158958, 'Jewel', 1996, 'F', 168), +(158959, 'Symone', 1996, 'F', 168), +(158960, 'Aracely', 1996, 'F', 167), +(158961, 'Joana', 1996, 'F', 167), +(158962, 'Lakeisha', 1996, 'F', 167), +(158963, 'Kaytlin', 1996, 'F', 165), +(158964, 'Serina', 1996, 'F', 165), +(158965, 'Starr', 1996, 'F', 165), +(158966, 'Annemarie', 1996, 'F', 164), +(158967, 'Ashely', 1996, 'F', 164), +(158968, 'Chana', 1996, 'F', 164), +(158969, 'Jasmyne', 1996, 'F', 164), +(158970, 'Laken', 1996, 'F', 164), +(158971, 'Nakia', 1996, 'F', 164), +(158972, 'Ivana', 1996, 'F', 163), +(158973, 'Kathrine', 1996, 'F', 163), +(158974, 'Keyana', 1996, 'F', 163), +(158975, 'Lourdes', 1996, 'F', 163), +(158976, 'Monet', 1996, 'F', 163), +(158977, 'Stefani', 1996, 'F', 163), +(158978, 'Teagan', 1996, 'F', 163), +(158979, 'Brieanna', 1996, 'F', 162), +(158980, 'Keila', 1996, 'F', 162), +(158981, 'Presley', 1996, 'F', 162), +(158982, 'Roxanna', 1996, 'F', 162), +(158983, 'Sommer', 1996, 'F', 162), +(158984, 'Alexys', 1996, 'F', 161), +(158985, 'Jesenia', 1996, 'F', 161), +(158986, 'Keana', 1996, 'F', 161), +(158987, 'Myesha', 1996, 'F', 161), +(158988, 'Nikita', 1996, 'F', 161), +(158989, 'Nikole', 1996, 'F', 161), +(158990, 'Rosario', 1996, 'F', 161), +(158991, 'Sherry', 1996, 'F', 161), +(158992, 'Violet', 1996, 'F', 161), +(158993, 'Amira', 1996, 'F', 160), +(158994, 'Corrina', 1996, 'F', 160), +(158995, 'Eve', 1996, 'F', 160), +(158996, 'Janel', 1996, 'F', 160), +(158997, 'Priya', 1996, 'F', 160), +(158998, 'Sky', 1996, 'F', 160), +(158999, 'Areli', 1996, 'F', 159), +(159000, 'Chyanne', 1996, 'F', 159), +(159001, 'Colette', 1996, 'F', 159), +(159002, 'Elana', 1996, 'F', 159), +(159003, 'Greta', 1996, 'F', 159), +(159004, 'Jamila', 1996, 'F', 159), +(159005, 'Marian', 1996, 'F', 159), +(159006, 'Micayla', 1996, 'F', 159), +(159007, 'Raina', 1996, 'F', 159), +(159008, 'Abigayle', 1996, 'F', 158), +(159009, 'Betsy', 1996, 'F', 158), +(159010, 'Delilah', 1996, 'F', 158), +(159011, 'Dominque', 1996, 'F', 158), +(159012, 'Keeley', 1996, 'F', 158), +(159013, 'Meranda', 1996, 'F', 158), +(159014, 'Shay', 1996, 'F', 158), +(159015, 'Anabel', 1996, 'F', 157), +(159016, 'Dylan', 1996, 'F', 157), +(159017, 'Georgina', 1996, 'F', 157), +(159018, 'Ivonne', 1996, 'F', 157), +(159019, 'Jaycee', 1996, 'F', 157), +(159020, 'Marlen', 1996, 'F', 157), +(159021, 'Michael', 1996, 'F', 157), +(159022, 'Tristin', 1996, 'F', 157), +(159023, 'Austin', 1996, 'F', 156), +(159024, 'Belen', 1996, 'F', 156), +(159025, 'Cherish', 1996, 'F', 156), +(159026, 'Dajah', 1996, 'F', 156), +(159027, 'Daysha', 1996, 'F', 156), +(159028, 'Deasia', 1996, 'F', 156), +(159029, 'Jaimie', 1996, 'F', 156), +(159030, 'Kenna', 1996, 'F', 156), +(159031, 'Patrice', 1996, 'F', 156), +(159032, 'Cathryn', 1996, 'F', 155), +(159033, 'Danae', 1996, 'F', 155), +(159034, 'Tricia', 1996, 'F', 155), +(159035, 'Ashtyn', 1996, 'F', 154), +(159036, 'Bree', 1996, 'F', 154), +(159037, 'Dena', 1996, 'F', 154), +(159038, 'Jolene', 1996, 'F', 154), +(159039, 'Kalee', 1996, 'F', 154), +(159040, 'Kelcie', 1996, 'F', 154), +(159041, 'Zhane', 1996, 'F', 154), +(159042, 'Adrianne', 1996, 'F', 153), +(159043, 'Estrella', 1996, 'F', 153), +(159044, 'Evelin', 1996, 'F', 153), +(159045, 'Jerrica', 1996, 'F', 153), +(159046, 'Aliza', 1996, 'F', 152), +(159047, 'Amina', 1996, 'F', 152), +(159048, 'Celena', 1996, 'F', 152), +(159049, 'Chastity', 1996, 'F', 152), +(159050, 'Dara', 1996, 'F', 152), +(159051, 'Serenity', 1996, 'F', 152), +(159052, 'Amaris', 1996, 'F', 151), +(159053, 'Andria', 1996, 'F', 151), +(159054, 'Arely', 1996, 'F', 151), +(159055, 'Bridgett', 1996, 'F', 151), +(159056, 'Camila', 1996, 'F', 151), +(159057, 'Darcy', 1996, 'F', 151), +(159058, 'Keara', 1996, 'F', 151), +(159059, 'Mona', 1996, 'F', 151), +(159060, 'Mya', 1996, 'F', 151), +(159061, 'Alexi', 1996, 'F', 150), +(159062, 'Deandra', 1996, 'F', 150), +(159063, 'Tayla', 1996, 'F', 150), +(159064, 'Lilia', 1996, 'F', 149), +(159065, 'Siera', 1996, 'F', 149), +(159066, 'Suzanna', 1996, 'F', 149), +(159067, 'Aliya', 1996, 'F', 148), +(159068, 'Halee', 1996, 'F', 148), +(159069, 'Jazmyne', 1996, 'F', 148), +(159070, 'Johnna', 1996, 'F', 148), +(159071, 'Stella', 1996, 'F', 148), +(159072, 'Delanie', 1996, 'F', 147), +(159073, 'Vicky', 1996, 'F', 147), +(159074, 'Zoie', 1996, 'F', 147), +(159075, 'Amara', 1996, 'F', 146), +(159076, 'Deana', 1996, 'F', 146), +(159077, 'Jamesha', 1996, 'F', 146), +(159078, 'Rowan', 1996, 'F', 146), +(159079, 'Janell', 1996, 'F', 145), +(159080, 'Maryann', 1996, 'F', 145), +(159081, 'Piper', 1996, 'F', 145), +(159082, 'Xiomara', 1996, 'F', 145), +(159083, 'Corey', 1996, 'F', 144), +(159084, 'Kaytlyn', 1996, 'F', 144), +(159085, 'Amie', 1996, 'F', 143), +(159086, 'Aria', 1996, 'F', 143), +(159087, 'Harlie', 1996, 'F', 143), +(159088, 'Linsey', 1996, 'F', 143), +(159089, 'Renae', 1996, 'F', 143), +(159090, 'Ricki', 1996, 'F', 143), +(159091, 'Star', 1996, 'F', 143), +(159092, 'Catrina', 1996, 'F', 142), +(159093, 'Kelsy', 1996, 'F', 142), +(159094, 'Kennedi', 1996, 'F', 142), +(159095, 'Makaila', 1996, 'F', 142), +(159096, 'Salina', 1996, 'F', 142), +(159097, 'Shaniah', 1996, 'F', 142), +(159098, 'Traci', 1996, 'F', 142), +(159099, 'Camilla', 1996, 'F', 141), +(159100, 'Corrine', 1996, 'F', 141), +(159101, 'Kacy', 1996, 'F', 141), +(159102, 'Maeve', 1996, 'F', 141), +(159103, 'Sonja', 1996, 'F', 141), +(159104, 'Yessica', 1996, 'F', 141), +(159105, 'Breona', 1996, 'F', 140), +(159106, 'Elle', 1996, 'F', 140), +(159107, 'Emmalee', 1996, 'F', 140), +(159108, 'Jayda', 1996, 'F', 140), +(159109, 'Jean', 1996, 'F', 140), +(159110, 'Lynette', 1996, 'F', 140), +(159111, 'Marta', 1996, 'F', 140), +(159112, 'Mina', 1996, 'F', 140), +(159113, 'Tasia', 1996, 'F', 140), +(159114, 'Abagail', 1996, 'F', 139), +(159115, 'Aubrie', 1996, 'F', 139), +(159116, 'Destinie', 1996, 'F', 139), +(159117, 'Keyanna', 1996, 'F', 139), +(159118, 'Susannah', 1996, 'F', 139), +(159119, 'Amalia', 1996, 'F', 138), +(159120, 'Amberly', 1996, 'F', 138), +(159121, 'Idalis', 1996, 'F', 138), +(159122, 'Libby', 1996, 'F', 138), +(159123, 'Lora', 1996, 'F', 138), +(159124, 'Loretta', 1996, 'F', 138), +(159125, 'Madilyn', 1996, 'F', 138), +(159126, 'Siobhan', 1996, 'F', 138), +(159127, 'Anahi', 1996, 'F', 137), +(159128, 'Charlie', 1996, 'F', 137), +(159129, 'Francisca', 1996, 'F', 137), +(159130, 'Krysten', 1996, 'F', 137), +(159131, 'Rubi', 1996, 'F', 137), +(159132, 'Valencia', 1996, 'F', 137), +(159133, 'Francis', 1996, 'F', 136), +(159134, 'Lyndsay', 1996, 'F', 136), +(159135, 'Marjorie', 1996, 'F', 136), +(159136, 'Nautica', 1996, 'F', 136), +(159137, 'Ada', 1996, 'F', 135), +(159138, 'Cherokee', 1996, 'F', 135), +(159139, 'Dasha', 1996, 'F', 135), +(159140, 'Laurie', 1996, 'F', 135), +(159141, 'Madelynn', 1996, 'F', 135), +(159142, 'Nyasia', 1996, 'F', 135), +(159143, 'Rena', 1996, 'F', 135), +(159144, 'Santana', 1996, 'F', 135), +(159145, 'America', 1996, 'F', 134), +(159146, 'Dayana', 1996, 'F', 134), +(159147, 'Halley', 1996, 'F', 134), +(159148, 'Jacquelin', 1996, 'F', 134), +(159149, 'Jerica', 1996, 'F', 134), +(159150, 'Joan', 1996, 'F', 134), +(159151, 'Latoya', 1996, 'F', 134), +(159152, 'Richelle', 1996, 'F', 134), +(159153, 'Shawnee', 1996, 'F', 134), +(159154, 'Yahaira', 1996, 'F', 134), +(159155, 'Abigale', 1996, 'F', 133), +(159156, 'Caylee', 1996, 'F', 133), +(159157, 'Dolores', 1996, 'F', 133), +(159158, 'Felisha', 1996, 'F', 133), +(159159, 'Jalyn', 1996, 'F', 133), +(159160, 'Johana', 1996, 'F', 133), +(159161, 'Kalynn', 1996, 'F', 133), +(159162, 'Kaylen', 1996, 'F', 133), +(159163, 'Lynsey', 1996, 'F', 133), +(159164, 'Marla', 1996, 'F', 133), +(159165, 'Caleigh', 1996, 'F', 132), +(159166, 'Cecily', 1996, 'F', 132), +(159167, 'Edna', 1996, 'F', 132), +(159168, 'Kiarra', 1996, 'F', 132), +(159169, 'Mai', 1996, 'F', 132), +(159170, 'Shaniqua', 1996, 'F', 132), +(159171, 'Debbie', 1996, 'F', 131), +(159172, 'Kalli', 1996, 'F', 131), +(159173, 'Lila', 1996, 'F', 131), +(159174, 'Bethanie', 1996, 'F', 130), +(159175, 'Kim', 1996, 'F', 130), +(159176, 'Valarie', 1996, 'F', 130), +(159177, 'Allegra', 1996, 'F', 129), +(159178, 'Bertha', 1996, 'F', 129), +(159179, 'Danyelle', 1996, 'F', 129), +(159180, 'Jaelyn', 1996, 'F', 129), +(159181, 'Jazzmine', 1996, 'F', 129), +(159182, 'Keira', 1996, 'F', 129), +(159183, 'Louisa', 1996, 'F', 129), +(159184, 'Malorie', 1996, 'F', 129), +(159185, 'Samira', 1996, 'F', 129), +(159186, 'Angeline', 1996, 'F', 128), +(159187, 'Annabel', 1996, 'F', 128), +(159188, 'Cathy', 1996, 'F', 128), +(159189, 'Caylin', 1996, 'F', 128), +(159190, 'Codi', 1996, 'F', 128), +(159191, 'Courteney', 1996, 'F', 128), +(159192, 'Darien', 1996, 'F', 128), +(159193, 'Doris', 1996, 'F', 128), +(159194, 'Elsie', 1996, 'F', 128), +(159195, 'Magaly', 1996, 'F', 128), +(159196, 'Rosie', 1996, 'F', 128), +(159197, 'Adeline', 1996, 'F', 127), +(159198, 'Bryn', 1996, 'F', 127), +(159199, 'Franchesca', 1996, 'F', 127), +(159200, 'Noor', 1996, 'F', 127), +(159201, 'Whitley', 1996, 'F', 127), +(159202, 'Zena', 1996, 'F', 127), +(159203, 'Addie', 1996, 'F', 126), +(159204, 'Connor', 1996, 'F', 126), +(159205, 'Jamia', 1996, 'F', 126), +(159206, 'Josefina', 1996, 'F', 126), +(159207, 'Maiya', 1996, 'F', 126), +(159208, 'Alea', 1996, 'F', 125), +(159209, 'Chandra', 1996, 'F', 125), +(159210, 'Consuelo', 1996, 'F', 125), +(159211, 'Emani', 1996, 'F', 125), +(159212, 'Ilana', 1996, 'F', 125), +(159213, 'Kelci', 1996, 'F', 125), +(159214, 'Mika', 1996, 'F', 125), +(159215, 'Rhianna', 1996, 'F', 125), +(159216, 'Skyla', 1996, 'F', 125), +(159217, 'Willow', 1996, 'F', 125), +(159218, 'Deidra', 1996, 'F', 124), +(159219, 'Eleni', 1996, 'F', 124), +(159220, 'Felicity', 1996, 'F', 124), +(159221, 'Glenda', 1996, 'F', 124), +(159222, 'Hilda', 1996, 'F', 124), +(159223, 'Kayle', 1996, 'F', 124), +(159224, 'Kaylea', 1996, 'F', 124), +(159225, 'Kayleen', 1996, 'F', 124), +(159226, 'Malaysia', 1996, 'F', 124), +(159227, 'Mikaila', 1996, 'F', 124), +(159228, 'Trina', 1996, 'F', 124), +(159229, 'Annalisa', 1996, 'F', 123), +(159230, 'Cailin', 1996, 'F', 123), +(159231, 'Hilary', 1996, 'F', 123), +(159232, 'Keyonna', 1996, 'F', 123), +(159233, 'Kristan', 1996, 'F', 123), +(159234, 'Linnea', 1996, 'F', 123), +(159235, 'Anya', 1996, 'F', 122), +(159236, 'Brigitte', 1996, 'F', 122), +(159237, 'Farrah', 1996, 'F', 122), +(159238, 'Michala', 1996, 'F', 122), +(159239, 'Racquel', 1996, 'F', 122), +(159240, 'Rosalinda', 1996, 'F', 122), +(159241, 'Saige', 1996, 'F', 122), +(159242, 'Shiann', 1996, 'F', 122), +(159243, 'Acacia', 1996, 'F', 121), +(159244, 'Aylin', 1996, 'F', 121), +(159245, 'Davina', 1996, 'F', 121), +(159246, 'Kasie', 1996, 'F', 121), +(159247, 'Kierstin', 1996, 'F', 121), +(159248, 'Alliyah', 1996, 'F', 120), +(159249, 'Marianne', 1996, 'F', 120), +(159250, 'Mason', 1996, 'F', 120), +(159251, 'Merissa', 1996, 'F', 120), +(159252, 'Shivani', 1996, 'F', 120), +(159253, 'Allysa', 1996, 'F', 119), +(159254, 'Hadley', 1996, 'F', 119), +(159255, 'Kaelin', 1996, 'F', 119), +(159256, 'Lucille', 1996, 'F', 119), +(159257, 'Rivka', 1996, 'F', 119), +(159258, 'Rosalie', 1996, 'F', 119), +(159259, 'Anisa', 1996, 'F', 118), +(159260, 'Annelise', 1996, 'F', 118), +(159261, 'Cassondra', 1996, 'F', 118), +(159262, 'Jaquelin', 1996, 'F', 118), +(159263, 'Mykayla', 1996, 'F', 118), +(159264, 'Natalya', 1996, 'F', 118), +(159265, 'Selene', 1996, 'F', 118), +(159266, 'Stefany', 1996, 'F', 118), +(159267, 'Tatyanna', 1996, 'F', 118), +(159268, 'Treasure', 1996, 'F', 118), +(159269, 'Tyanna', 1996, 'F', 118), +(159270, 'Xochitl', 1996, 'F', 118), +(159271, 'Baylie', 1996, 'F', 117), +(159272, 'Becca', 1996, 'F', 117), +(159273, 'Becky', 1996, 'F', 117), +(159274, 'Calli', 1996, 'F', 117), +(159275, 'Desire', 1996, 'F', 117), +(159276, 'Holli', 1996, 'F', 117), +(159277, 'Joceline', 1996, 'F', 117), +(159278, 'Mallorie', 1996, 'F', 117), +(159279, 'Stacia', 1996, 'F', 117), +(159280, 'Yoselin', 1996, 'F', 117), +(159281, 'Adina', 1996, 'F', 116), +(159282, 'Bernice', 1996, 'F', 116), +(159283, 'Brittnee', 1996, 'F', 116), +(159284, 'Bryce', 1996, 'F', 116), +(159285, 'Chanelle', 1996, 'F', 116), +(159286, 'Ivory', 1996, 'F', 116), +(159287, 'Maren', 1996, 'F', 116), +(159288, 'Natalee', 1996, 'F', 116), +(159289, 'Elexus', 1996, 'F', 115), +(159290, 'Katya', 1996, 'F', 115), +(159291, 'Kirby', 1996, 'F', 115), +(159292, 'Marion', 1996, 'F', 115), +(159293, 'Porsha', 1996, 'F', 115), +(159294, 'Rosemarie', 1996, 'F', 115), +(159295, 'Shantell', 1996, 'F', 115), +(159296, 'Tamika', 1996, 'F', 115), +(159297, 'Akilah', 1996, 'F', 114), +(159298, 'Britni', 1996, 'F', 114), +(159299, 'Jacy', 1996, 'F', 114), +(159300, 'Jordon', 1996, 'F', 114), +(159301, 'Mercedez', 1996, 'F', 114), +(159302, 'Sheena', 1996, 'F', 114), +(159303, 'Spencer', 1996, 'F', 114), +(159304, 'Susie', 1996, 'F', 114), +(159305, 'Alannah', 1996, 'F', 113), +(159306, 'Andie', 1996, 'F', 113), +(159307, 'Ariella', 1996, 'F', 113), +(159308, 'Brigid', 1996, 'F', 113), +(159309, 'Candy', 1996, 'F', 113), +(159310, 'Chante', 1996, 'F', 113), +(159311, 'Christal', 1996, 'F', 113), +(159312, 'Chyenne', 1996, 'F', 113), +(159313, 'Dani', 1996, 'F', 113), +(159314, 'Jaida', 1996, 'F', 113), +(159315, 'Joseline', 1996, 'F', 113), +(159316, 'Kaya', 1996, 'F', 113), +(159317, 'Kirstyn', 1996, 'F', 113), +(159318, 'Leigha', 1996, 'F', 113), +(159319, 'Lilibeth', 1996, 'F', 113), +(159320, 'Madelaine', 1996, 'F', 113), +(159321, 'Nathaly', 1996, 'F', 113), +(159322, 'Pooja', 1996, 'F', 113), +(159323, 'Quanisha', 1996, 'F', 113), +(159324, 'Taylar', 1996, 'F', 113), +(159325, 'Tory', 1996, 'F', 113), +(159326, 'Alexius', 1996, 'F', 112), +(159327, 'Bailie', 1996, 'F', 112), +(159328, 'Corinna', 1996, 'F', 112), +(159329, 'Frankie', 1996, 'F', 112), +(159330, 'Kylah', 1996, 'F', 112), +(159331, 'Laci', 1996, 'F', 112), +(159332, 'Layne', 1996, 'F', 112), +(159333, 'Marguerite', 1996, 'F', 112), +(159334, 'Nicolle', 1996, 'F', 112), +(159335, 'Shanelle', 1996, 'F', 112), +(159336, 'Shaye', 1996, 'F', 112), +(159337, 'Shelley', 1996, 'F', 112), +(159338, 'Autum', 1996, 'F', 111), +(159339, 'Chrystal', 1996, 'F', 111), +(159340, 'Krystina', 1996, 'F', 111), +(159341, 'Laila', 1996, 'F', 111), +(159342, 'Michaella', 1996, 'F', 111), +(159343, 'Monae', 1996, 'F', 111), +(159344, 'Sariah', 1996, 'F', 111), +(159345, 'Brandee', 1996, 'F', 110), +(159346, 'Grayson', 1996, 'F', 110), +(159347, 'Kameron', 1996, 'F', 110), +(159348, 'Mickayla', 1996, 'F', 110), +(159349, 'Moira', 1996, 'F', 110), +(159350, 'Tanesha', 1996, 'F', 110), +(159351, 'Aiyana', 1996, 'F', 109), +(159352, 'Aundrea', 1996, 'F', 109), +(159353, 'Deirdre', 1996, 'F', 109), +(159354, 'Isela', 1996, 'F', 109), +(159355, 'Maryam', 1996, 'F', 109), +(159356, 'Niya', 1996, 'F', 109), +(159357, 'Rhonda', 1996, 'F', 109), +(159358, 'Dixie', 1996, 'F', 108), +(159359, 'Keyona', 1996, 'F', 108), +(159360, 'Margo', 1996, 'F', 108), +(159361, 'Reba', 1996, 'F', 108), +(159362, 'Roberta', 1996, 'F', 108), +(159363, 'Anisha', 1996, 'F', 107), +(159364, 'Casie', 1996, 'F', 107), +(159365, 'Harper', 1996, 'F', 107), +(159366, 'Hattie', 1996, 'F', 107), +(159367, 'Marielle', 1996, 'F', 107), +(159368, 'Shaelyn', 1996, 'F', 107), +(159369, 'Tyana', 1996, 'F', 107), +(159370, 'Tyla', 1996, 'F', 107), +(159371, 'Angelia', 1996, 'F', 106), +(159372, 'Chelsy', 1996, 'F', 106), +(159373, 'Danisha', 1996, 'F', 106), +(159374, 'Deonna', 1996, 'F', 106), +(159375, 'Haily', 1996, 'F', 106), +(159376, 'Kendyl', 1996, 'F', 106), +(159377, 'Zulema', 1996, 'F', 106), +(159378, 'Cailey', 1996, 'F', 105), +(159379, 'Carleigh', 1996, 'F', 105), +(159380, 'Dahlia', 1996, 'F', 105), +(159381, 'Heidy', 1996, 'F', 105), +(159382, 'Jocelynn', 1996, 'F', 105), +(159383, 'Jourdan', 1996, 'F', 105), +(159384, 'Kandace', 1996, 'F', 105), +(159385, 'Kyle', 1996, 'F', 105), +(159386, 'Margot', 1996, 'F', 105), +(159387, 'Natali', 1996, 'F', 105), +(159388, 'Shoshana', 1996, 'F', 105), +(159389, 'Stormie', 1996, 'F', 105), +(159390, 'Tanner', 1996, 'F', 105), +(159391, 'Darla', 1996, 'F', 104), +(159392, 'Gisselle', 1996, 'F', 104), +(159393, 'Jeannie', 1996, 'F', 104), +(159394, 'Jody', 1996, 'F', 104), +(159395, 'Mira', 1996, 'F', 104), +(159396, 'Miya', 1996, 'F', 104), +(159397, 'Nelly', 1996, 'F', 104), +(159398, 'Alix', 1996, 'F', 103), +(159399, 'Cheyanna', 1996, 'F', 103), +(159400, 'Courtnie', 1996, 'F', 103), +(159401, 'Harlee', 1996, 'F', 103), +(159402, 'Jaimee', 1996, 'F', 103), +(159403, 'Jaylin', 1996, 'F', 103), +(159404, 'Jazzmin', 1996, 'F', 103), +(159405, 'Jeannette', 1996, 'F', 103), +(159406, 'Jeniffer', 1996, 'F', 103), +(159407, 'Jessa', 1996, 'F', 103), +(159408, 'Macayla', 1996, 'F', 103), +(159409, 'Mahogany', 1996, 'F', 103), +(159410, 'Clarisa', 1996, 'F', 102), +(159411, 'Colby', 1996, 'F', 102), +(159412, 'Ileana', 1996, 'F', 102), +(159413, 'Jackelyn', 1996, 'F', 102), +(159414, 'Kerrigan', 1996, 'F', 102), +(159415, 'Kirstie', 1996, 'F', 102), +(159416, 'Magali', 1996, 'F', 102), +(159417, 'Marcia', 1996, 'F', 102), +(159418, 'Meg', 1996, 'F', 102), +(159419, 'Teanna', 1996, 'F', 102), +(159420, 'Teri', 1996, 'F', 102), +(159421, 'Tierney', 1996, 'F', 102), +(159422, 'Aleena', 1996, 'F', 101), +(159423, 'Deisy', 1996, 'F', 101), +(159424, 'Izabella', 1996, 'F', 101), +(159425, 'Latrice', 1996, 'F', 101), +(159426, 'Micheala', 1996, 'F', 101), +(159427, 'Rosanna', 1996, 'F', 101), +(159428, 'Salma', 1996, 'F', 101), +(159429, 'Taelor', 1996, 'F', 101), +(159430, 'Aide', 1996, 'F', 100), +(159431, 'Jeanne', 1996, 'F', 100), +(159432, 'Kelsee', 1996, 'F', 100), +(159433, 'Nyla', 1996, 'F', 100), +(159434, 'Ramona', 1996, 'F', 100), +(159435, 'Tarah', 1996, 'F', 100), +(159436, 'Michael', 1996, 'M', 38364), +(159437, 'Matthew', 1996, 'M', 32072), +(159438, 'Jacob', 1996, 'M', 31912), +(159439, 'Christopher', 1996, 'M', 30900), +(159440, 'Joshua', 1996, 'M', 29167), +(159441, 'Nicholas', 1996, 'M', 27719), +(159442, 'Tyler', 1996, 'M', 26953), +(159443, 'Brandon', 1996, 'M', 25847), +(159444, 'Austin', 1996, 'M', 25658), +(159445, 'Andrew', 1996, 'M', 25228), +(159446, 'Daniel', 1996, 'M', 25095), +(159447, 'Joseph', 1996, 'M', 24744), +(159448, 'David', 1996, 'M', 22993), +(159449, 'Zachary', 1996, 'M', 22366), +(159450, 'John', 1996, 'M', 22164), +(159451, 'Ryan', 1996, 'M', 21806), +(159452, 'James', 1996, 'M', 21152), +(159453, 'William', 1996, 'M', 20538), +(159454, 'Anthony', 1996, 'M', 20499), +(159455, 'Justin', 1996, 'M', 20008), +(159456, 'Jonathan', 1996, 'M', 18590), +(159457, 'Alexander', 1996, 'M', 17959), +(159458, 'Robert', 1996, 'M', 17669), +(159459, 'Christian', 1996, 'M', 15824), +(159460, 'Kyle', 1996, 'M', 15596), +(159461, 'Kevin', 1996, 'M', 14578), +(159462, 'Jordan', 1996, 'M', 13852), +(159463, 'Thomas', 1996, 'M', 13797), +(159464, 'Benjamin', 1996, 'M', 13776), +(159465, 'Samuel', 1996, 'M', 13614), +(159466, 'Cody', 1996, 'M', 12951), +(159467, 'Jose', 1996, 'M', 12154), +(159468, 'Dylan', 1996, 'M', 12031), +(159469, 'Aaron', 1996, 'M', 11967), +(159470, 'Eric', 1996, 'M', 11605), +(159471, 'Brian', 1996, 'M', 10471), +(159472, 'Nathan', 1996, 'M', 10281), +(159473, 'Steven', 1996, 'M', 9648), +(159474, 'Adam', 1996, 'M', 9553), +(159475, 'Timothy', 1996, 'M', 8918), +(159476, 'Jason', 1996, 'M', 8694), +(159477, 'Logan', 1996, 'M', 8374), +(159478, 'Charles', 1996, 'M', 8247), +(159479, 'Patrick', 1996, 'M', 8194), +(159480, 'Richard', 1996, 'M', 8179), +(159481, 'Sean', 1996, 'M', 7895), +(159482, 'Hunter', 1996, 'M', 7602), +(159483, 'Caleb', 1996, 'M', 7545), +(159484, 'Cameron', 1996, 'M', 7389), +(159485, 'Noah', 1996, 'M', 7182), +(159486, 'Jesse', 1996, 'M', 7072), +(159487, 'Juan', 1996, 'M', 7009), +(159488, 'Alex', 1996, 'M', 6911), +(159489, 'Connor', 1996, 'M', 6911), +(159490, 'Mark', 1996, 'M', 6596), +(159491, 'Jeremy', 1996, 'M', 6410), +(159492, 'Luis', 1996, 'M', 6403), +(159493, 'Dakota', 1996, 'M', 6066), +(159494, 'Stephen', 1996, 'M', 6005), +(159495, 'Devin', 1996, 'M', 6001), +(159496, 'Gabriel', 1996, 'M', 5897), +(159497, 'Ethan', 1996, 'M', 5852), +(159498, 'Trevor', 1996, 'M', 5842), +(159499, 'Jared', 1996, 'M', 5819), +(159500, 'Evan', 1996, 'M', 5579), +(159501, 'Bryan', 1996, 'M', 5559), +(159502, 'Carlos', 1996, 'M', 5464), +(159503, 'Tristan', 1996, 'M', 5459), +(159504, 'Nathaniel', 1996, 'M', 5419), +(159505, 'Ian', 1996, 'M', 5410), +(159506, 'Isaiah', 1996, 'M', 5323), +(159507, 'Jeffrey', 1996, 'M', 5262), +(159508, 'Travis', 1996, 'M', 5157), +(159509, 'Jesus', 1996, 'M', 5113), +(159510, 'Luke', 1996, 'M', 5015), +(159511, 'Chase', 1996, 'M', 4990), +(159512, 'Kenneth', 1996, 'M', 4973), +(159513, 'Paul', 1996, 'M', 4878), +(159514, 'Dustin', 1996, 'M', 4873), +(159515, 'Antonio', 1996, 'M', 4864), +(159516, 'Elijah', 1996, 'M', 4814), +(159517, 'Taylor', 1996, 'M', 4796), +(159518, 'Bradley', 1996, 'M', 4756), +(159519, 'Blake', 1996, 'M', 4748), +(159520, 'Garrett', 1996, 'M', 4652), +(159521, 'Isaac', 1996, 'M', 4560), +(159522, 'Marcus', 1996, 'M', 4545), +(159523, 'Mitchell', 1996, 'M', 4390), +(159524, 'Jack', 1996, 'M', 4244), +(159525, 'Tanner', 1996, 'M', 4181), +(159526, 'Miguel', 1996, 'M', 4160), +(159527, 'Adrian', 1996, 'M', 4107), +(159528, 'Lucas', 1996, 'M', 4103), +(159529, 'Corey', 1996, 'M', 4085), +(159530, 'Peter', 1996, 'M', 4076), +(159531, 'Edward', 1996, 'M', 4072), +(159532, 'Malik', 1996, 'M', 4023), +(159533, 'Gregory', 1996, 'M', 3991), +(159534, 'Dalton', 1996, 'M', 3979), +(159535, 'Victor', 1996, 'M', 3925), +(159536, 'Derek', 1996, 'M', 3920), +(159537, 'Angel', 1996, 'M', 3910), +(159538, 'Seth', 1996, 'M', 3886), +(159539, 'Mason', 1996, 'M', 3880), +(159540, 'Colton', 1996, 'M', 3787), +(159541, 'Cole', 1996, 'M', 3739), +(159542, 'Alejandro', 1996, 'M', 3676), +(159543, 'Scott', 1996, 'M', 3671), +(159544, 'Spencer', 1996, 'M', 3609), +(159545, 'Brett', 1996, 'M', 3577), +(159546, 'Shawn', 1996, 'M', 3503), +(159547, 'Shane', 1996, 'M', 3488), +(159548, 'Jorge', 1996, 'M', 3463), +(159549, 'Jake', 1996, 'M', 3446), +(159550, 'Collin', 1996, 'M', 3358), +(159551, 'Vincent', 1996, 'M', 3341), +(159552, 'Alec', 1996, 'M', 3308), +(159553, 'George', 1996, 'M', 3226), +(159554, 'Grant', 1996, 'M', 3205), +(159555, 'Bryce', 1996, 'M', 3090), +(159556, 'Dillon', 1996, 'M', 3023), +(159557, 'Erik', 1996, 'M', 3020), +(159558, 'Eduardo', 1996, 'M', 3016), +(159559, 'Joel', 1996, 'M', 3003), +(159560, 'Oscar', 1996, 'M', 2998), +(159561, 'Colin', 1996, 'M', 2953), +(159562, 'Devon', 1996, 'M', 2906), +(159563, 'Ricardo', 1996, 'M', 2883), +(159564, 'Julian', 1996, 'M', 2855), +(159565, 'Cristian', 1996, 'M', 2846), +(159566, 'Brendan', 1996, 'M', 2812), +(159567, 'Francisco', 1996, 'M', 2809), +(159568, 'Raymond', 1996, 'M', 2803), +(159569, 'Wyatt', 1996, 'M', 2789), +(159570, 'Dominic', 1996, 'M', 2669), +(159571, 'Jackson', 1996, 'M', 2643), +(159572, 'Wesley', 1996, 'M', 2617), +(159573, 'Johnathan', 1996, 'M', 2563), +(159574, 'Henry', 1996, 'M', 2550), +(159575, 'Omar', 1996, 'M', 2516), +(159576, 'Xavier', 1996, 'M', 2506), +(159577, 'Casey', 1996, 'M', 2463), +(159578, 'Alan', 1996, 'M', 2445), +(159579, 'Cory', 1996, 'M', 2445), +(159580, 'Manuel', 1996, 'M', 2409), +(159581, 'Riley', 1996, 'M', 2393), +(159582, 'Mario', 1996, 'M', 2378), +(159583, 'Edgar', 1996, 'M', 2357), +(159584, 'Clayton', 1996, 'M', 2338), +(159585, 'Phillip', 1996, 'M', 2309), +(159586, 'Nicolas', 1996, 'M', 2293), +(159587, 'Martin', 1996, 'M', 2282), +(159588, 'Javier', 1996, 'M', 2245), +(159589, 'Chance', 1996, 'M', 2243), +(159590, 'Troy', 1996, 'M', 2238), +(159591, 'Ronald', 1996, 'M', 2230), +(159592, 'Donald', 1996, 'M', 2186), +(159593, 'Chandler', 1996, 'M', 2185), +(159594, 'Keith', 1996, 'M', 2183), +(159595, 'Andres', 1996, 'M', 2167), +(159596, 'Chad', 1996, 'M', 2167), +(159597, 'Frank', 1996, 'M', 2146), +(159598, 'Levi', 1996, 'M', 2110), +(159599, 'Drew', 1996, 'M', 2100), +(159600, 'Jeremiah', 1996, 'M', 2100), +(159601, 'Ivan', 1996, 'M', 2091), +(159602, 'Sergio', 1996, 'M', 2047), +(159603, 'Hayden', 1996, 'M', 2015), +(159604, 'Derrick', 1996, 'M', 1993), +(159605, 'Cesar', 1996, 'M', 1986), +(159606, 'Jonathon', 1996, 'M', 1972), +(159607, 'Andre', 1996, 'M', 1964), +(159608, 'Hector', 1996, 'M', 1964), +(159609, 'Marco', 1996, 'M', 1923), +(159610, 'Roberto', 1996, 'M', 1919), +(159611, 'Brady', 1996, 'M', 1915), +(159612, 'Maxwell', 1996, 'M', 1901), +(159613, 'Fernando', 1996, 'M', 1876), +(159614, 'Parker', 1996, 'M', 1796), +(159615, 'Alexis', 1996, 'M', 1795), +(159616, 'Douglas', 1996, 'M', 1791), +(159617, 'Darius', 1996, 'M', 1768), +(159618, 'Calvin', 1996, 'M', 1756), +(159619, 'Liam', 1996, 'M', 1747), +(159620, 'Philip', 1996, 'M', 1725), +(159621, 'Kaleb', 1996, 'M', 1717), +(159622, 'Trenton', 1996, 'M', 1707), +(159623, 'Erick', 1996, 'M', 1705), +(159624, 'Preston', 1996, 'M', 1667), +(159625, 'Ruben', 1996, 'M', 1661), +(159626, 'Curtis', 1996, 'M', 1642), +(159627, 'Gavin', 1996, 'M', 1633), +(159628, 'Johnny', 1996, 'M', 1610), +(159629, 'Jerry', 1996, 'M', 1605), +(159630, 'Sebastian', 1996, 'M', 1588), +(159631, 'Edwin', 1996, 'M', 1586), +(159632, 'Jonah', 1996, 'M', 1568), +(159633, 'Pedro', 1996, 'M', 1566), +(159634, 'Conner', 1996, 'M', 1560), +(159635, 'Bailey', 1996, 'M', 1550), +(159636, 'Gary', 1996, 'M', 1542), +(159637, 'Dennis', 1996, 'M', 1541), +(159638, 'Gage', 1996, 'M', 1541), +(159639, 'Mathew', 1996, 'M', 1514), +(159640, 'Randy', 1996, 'M', 1510), +(159641, 'Gerardo', 1996, 'M', 1509), +(159642, 'Raul', 1996, 'M', 1491), +(159643, 'Max', 1996, 'M', 1486), +(159644, 'Harrison', 1996, 'M', 1478), +(159645, 'Micah', 1996, 'M', 1478), +(159646, 'Emmanuel', 1996, 'M', 1471), +(159647, 'Allen', 1996, 'M', 1465), +(159648, 'Julio', 1996, 'M', 1448), +(159649, 'Damian', 1996, 'M', 1408), +(159650, 'Rafael', 1996, 'M', 1399), +(159651, 'Landon', 1996, 'M', 1395), +(159652, 'Skyler', 1996, 'M', 1392), +(159653, 'Diego', 1996, 'M', 1378), +(159654, 'Zachery', 1996, 'M', 1373), +(159655, 'Larry', 1996, 'M', 1371), +(159656, 'Armando', 1996, 'M', 1368), +(159657, 'Jalen', 1996, 'M', 1367), +(159658, 'Jimmy', 1996, 'M', 1361), +(159659, 'Marcos', 1996, 'M', 1350), +(159660, 'Colby', 1996, 'M', 1344), +(159661, 'Brent', 1996, 'M', 1336), +(159662, 'Abraham', 1996, 'M', 1334), +(159663, 'Enrique', 1996, 'M', 1326), +(159664, 'Tony', 1996, 'M', 1315), +(159665, 'Jaime', 1996, 'M', 1312), +(159666, 'Albert', 1996, 'M', 1301), +(159667, 'Marc', 1996, 'M', 1292), +(159668, 'Dallas', 1996, 'M', 1289), +(159669, 'Andy', 1996, 'M', 1284), +(159670, 'Louis', 1996, 'M', 1283), +(159671, 'Alberto', 1996, 'M', 1247), +(159672, 'Trey', 1996, 'M', 1247), +(159673, 'Giovanni', 1996, 'M', 1245), +(159674, 'Josiah', 1996, 'M', 1242), +(159675, 'Kristopher', 1996, 'M', 1238), +(159676, 'Zackary', 1996, 'M', 1238), +(159677, 'Ty', 1996, 'M', 1219), +(159678, 'Carter', 1996, 'M', 1216), +(159679, 'Morgan', 1996, 'M', 1216), +(159680, 'Danny', 1996, 'M', 1206), +(159681, 'Donovan', 1996, 'M', 1203), +(159682, 'Craig', 1996, 'M', 1198), +(159683, 'Ricky', 1996, 'M', 1197), +(159684, 'Tristen', 1996, 'M', 1188), +(159685, 'Carl', 1996, 'M', 1183), +(159686, 'Avery', 1996, 'M', 1178), +(159687, 'Trent', 1996, 'M', 1174), +(159688, 'Darren', 1996, 'M', 1138), +(159689, 'Josue', 1996, 'M', 1133), +(159690, 'Jeffery', 1996, 'M', 1119), +(159691, 'Lawrence', 1996, 'M', 1115), +(159692, 'Nolan', 1996, 'M', 1106), +(159693, 'Terry', 1996, 'M', 1094), +(159694, 'Aidan', 1996, 'M', 1093), +(159695, 'Russell', 1996, 'M', 1085), +(159696, 'Lane', 1996, 'M', 1070), +(159697, 'Micheal', 1996, 'M', 1068), +(159698, 'Nickolas', 1996, 'M', 1066), +(159699, 'Israel', 1996, 'M', 1064), +(159700, 'Arturo', 1996, 'M', 1058), +(159701, 'Joe', 1996, 'M', 1054), +(159702, 'Rodney', 1996, 'M', 1054), +(159703, 'Lance', 1996, 'M', 1048), +(159704, 'Deandre', 1996, 'M', 1047), +(159705, 'Kody', 1996, 'M', 1042), +(159706, 'Ross', 1996, 'M', 1041), +(159707, 'Walter', 1996, 'M', 1035), +(159708, 'Alfredo', 1996, 'M', 1034), +(159709, 'Lorenzo', 1996, 'M', 1020), +(159710, 'Carson', 1996, 'M', 1009), +(159711, 'Arthur', 1996, 'M', 1008), +(159712, 'Owen', 1996, 'M', 1005), +(159713, 'Braden', 1996, 'M', 1004), +(159714, 'Damon', 1996, 'M', 1001), +(159715, 'Ramon', 1996, 'M', 994), +(159716, 'Griffin', 1996, 'M', 991), +(159717, 'Jamal', 1996, 'M', 987), +(159718, 'Dante', 1996, 'M', 978), +(159719, 'Quentin', 1996, 'M', 965), +(159720, 'Roger', 1996, 'M', 957), +(159721, 'Billy', 1996, 'M', 948), +(159722, 'Jay', 1996, 'M', 943), +(159723, 'Branden', 1996, 'M', 938), +(159724, 'Bobby', 1996, 'M', 933), +(159725, 'Dominick', 1996, 'M', 933), +(159726, 'Zane', 1996, 'M', 919), +(159727, 'Elias', 1996, 'M', 918), +(159728, 'Brenden', 1996, 'M', 907), +(159729, 'Theodore', 1996, 'M', 905), +(159730, 'Gustavo', 1996, 'M', 899), +(159731, 'Marquis', 1996, 'M', 897), +(159732, 'Brennan', 1996, 'M', 895), +(159733, 'Todd', 1996, 'M', 890), +(159734, 'Brock', 1996, 'M', 887), +(159735, 'Jessie', 1996, 'M', 874), +(159736, 'Eli', 1996, 'M', 871), +(159737, 'Johnathon', 1996, 'M', 871), +(159738, 'Quinton', 1996, 'M', 871), +(159739, 'Salvador', 1996, 'M', 871), +(159740, 'Saul', 1996, 'M', 869), +(159741, 'Drake', 1996, 'M', 867), +(159742, 'Marvin', 1996, 'M', 867), +(159743, 'Tommy', 1996, 'M', 863), +(159744, 'Bryant', 1996, 'M', 859), +(159745, 'Marshall', 1996, 'M', 854), +(159746, 'Kyler', 1996, 'M', 847), +(159747, 'Dean', 1996, 'M', 843), +(159748, 'Malcolm', 1996, 'M', 841), +(159749, 'Damien', 1996, 'M', 840), +(159750, 'Jon', 1996, 'M', 838), +(159751, 'Zackery', 1996, 'M', 833), +(159752, 'Miles', 1996, 'M', 830), +(159753, 'Conor', 1996, 'M', 829), +(159754, 'Eddie', 1996, 'M', 829); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(159755, 'Justice', 1996, 'M', 827), +(159756, 'Randall', 1996, 'M', 825), +(159757, 'Gerald', 1996, 'M', 822), +(159758, 'Reginald', 1996, 'M', 817), +(159759, 'Maurice', 1996, 'M', 810), +(159760, 'Frederick', 1996, 'M', 809), +(159761, 'Tucker', 1996, 'M', 803), +(159762, 'Ashton', 1996, 'M', 800), +(159763, 'Willie', 1996, 'M', 800), +(159764, 'Fabian', 1996, 'M', 799), +(159765, 'Keegan', 1996, 'M', 797), +(159766, 'Pablo', 1996, 'M', 794), +(159767, 'Quinn', 1996, 'M', 790), +(159768, 'Angelo', 1996, 'M', 776), +(159769, 'Ernesto', 1996, 'M', 774), +(159770, 'Ismael', 1996, 'M', 772), +(159771, 'Peyton', 1996, 'M', 772), +(159772, 'Emilio', 1996, 'M', 767), +(159773, 'Demetrius', 1996, 'M', 759), +(159774, 'Esteban', 1996, 'M', 735), +(159775, 'Terrance', 1996, 'M', 730), +(159776, 'Simon', 1996, 'M', 726), +(159777, 'Triston', 1996, 'M', 726), +(159778, 'Lee', 1996, 'M', 721), +(159779, 'Kameron', 1996, 'M', 719), +(159780, 'Dominique', 1996, 'M', 718), +(159781, 'Roy', 1996, 'M', 718), +(159782, 'Zachariah', 1996, 'M', 716), +(159783, 'Khalil', 1996, 'M', 714), +(159784, 'Brendon', 1996, 'M', 703), +(159785, 'Franklin', 1996, 'M', 694), +(159786, 'Emanuel', 1996, 'M', 693), +(159787, 'Guillermo', 1996, 'M', 691), +(159788, 'Bryson', 1996, 'M', 689), +(159789, 'Jamie', 1996, 'M', 686), +(159790, 'Devonte', 1996, 'M', 681), +(159791, 'Tyrone', 1996, 'M', 681), +(159792, 'Devante', 1996, 'M', 677), +(159793, 'Kelvin', 1996, 'M', 677), +(159794, 'Kendall', 1996, 'M', 676), +(159795, 'Trevon', 1996, 'M', 675), +(159796, 'Roman', 1996, 'M', 670), +(159797, 'Terrell', 1996, 'M', 669), +(159798, 'Cooper', 1996, 'M', 667), +(159799, 'Bruce', 1996, 'M', 663), +(159800, 'Isiah', 1996, 'M', 658), +(159801, 'Myles', 1996, 'M', 652), +(159802, 'Rene', 1996, 'M', 650), +(159803, 'Orlando', 1996, 'M', 649), +(159804, 'Steve', 1996, 'M', 649), +(159805, 'Clay', 1996, 'M', 648), +(159806, 'Shaun', 1996, 'M', 646), +(159807, 'Jarrett', 1996, 'M', 636), +(159808, 'Skylar', 1996, 'M', 636), +(159809, 'Tristin', 1996, 'M', 629), +(159810, 'Desmond', 1996, 'M', 626), +(159811, 'Terrence', 1996, 'M', 623), +(159812, 'Nelson', 1996, 'M', 621), +(159813, 'Rodrigo', 1996, 'M', 616), +(159814, 'Weston', 1996, 'M', 614), +(159815, 'Felix', 1996, 'M', 612), +(159816, 'Jakob', 1996, 'M', 611), +(159817, 'Lukas', 1996, 'M', 611), +(159818, 'Darrell', 1996, 'M', 609), +(159819, 'Francis', 1996, 'M', 607), +(159820, 'Kristian', 1996, 'M', 607), +(159821, 'Abel', 1996, 'M', 606), +(159822, 'Oliver', 1996, 'M', 606), +(159823, 'Brayden', 1996, 'M', 604), +(159824, 'Dangelo', 1996, 'M', 604), +(159825, 'Wayne', 1996, 'M', 604), +(159826, 'Harley', 1996, 'M', 603), +(159827, 'Ronnie', 1996, 'M', 602), +(159828, 'Jerome', 1996, 'M', 599), +(159829, 'Nikolas', 1996, 'M', 599), +(159830, 'Brody', 1996, 'M', 598), +(159831, 'Keenan', 1996, 'M', 595), +(159832, 'Braxton', 1996, 'M', 593), +(159833, 'Wade', 1996, 'M', 593), +(159834, 'Cedric', 1996, 'M', 592), +(159835, 'Melvin', 1996, 'M', 590), +(159836, 'Leonardo', 1996, 'M', 583), +(159837, 'Grayson', 1996, 'M', 582), +(159838, 'Moises', 1996, 'M', 580), +(159839, 'Neil', 1996, 'M', 578), +(159840, 'Graham', 1996, 'M', 577), +(159841, 'Payton', 1996, 'M', 576), +(159842, 'Kendrick', 1996, 'M', 569), +(159843, 'Kenny', 1996, 'M', 569), +(159844, 'Davis', 1996, 'M', 567), +(159845, 'Deion', 1996, 'M', 567), +(159846, 'Byron', 1996, 'M', 566), +(159847, 'Dale', 1996, 'M', 554), +(159848, 'Tyrell', 1996, 'M', 553), +(159849, 'Chris', 1996, 'M', 549), +(159850, 'Leonard', 1996, 'M', 547), +(159851, 'Rodolfo', 1996, 'M', 546), +(159852, 'Marquise', 1996, 'M', 543), +(159853, 'Corbin', 1996, 'M', 542), +(159854, 'Javon', 1996, 'M', 542), +(159855, 'Darian', 1996, 'M', 537), +(159856, 'Devan', 1996, 'M', 533), +(159857, 'Reed', 1996, 'M', 532), +(159858, 'Austen', 1996, 'M', 531), +(159859, 'Stanley', 1996, 'M', 531), +(159860, 'Ali', 1996, 'M', 529), +(159861, 'Beau', 1996, 'M', 528), +(159862, 'Jermaine', 1996, 'M', 528), +(159863, 'Sam', 1996, 'M', 526), +(159864, 'Keaton', 1996, 'M', 525), +(159865, 'Warren', 1996, 'M', 525), +(159866, 'Darryl', 1996, 'M', 522), +(159867, 'Hugo', 1996, 'M', 519), +(159868, 'Jordon', 1996, 'M', 519), +(159869, 'Tevin', 1996, 'M', 519), +(159870, 'Dane', 1996, 'M', 517), +(159871, 'Donte', 1996, 'M', 517), +(159872, 'Noel', 1996, 'M', 517), +(159873, 'Ernest', 1996, 'M', 516), +(159874, 'Tomas', 1996, 'M', 510), +(159875, 'Alfonso', 1996, 'M', 508), +(159876, 'Daquan', 1996, 'M', 508), +(159877, 'Harold', 1996, 'M', 507), +(159878, 'Reid', 1996, 'M', 507), +(159879, 'Duncan', 1996, 'M', 505), +(159880, 'Tyson', 1996, 'M', 504), +(159881, 'Walker', 1996, 'M', 504), +(159882, 'Felipe', 1996, 'M', 503), +(159883, 'Jaquan', 1996, 'M', 503), +(159884, 'Karl', 1996, 'M', 503), +(159885, 'Alvin', 1996, 'M', 496), +(159886, 'Eugene', 1996, 'M', 496), +(159887, 'Deshawn', 1996, 'M', 485), +(159888, 'Ramiro', 1996, 'M', 485), +(159889, 'Jayson', 1996, 'M', 484), +(159890, 'Glenn', 1996, 'M', 483), +(159891, 'Harry', 1996, 'M', 482), +(159892, 'Kurt', 1996, 'M', 482), +(159893, 'Leon', 1996, 'M', 473), +(159894, 'Dwayne', 1996, 'M', 470), +(159895, 'Gilberto', 1996, 'M', 470), +(159896, 'Joey', 1996, 'M', 470), +(159897, 'Ariel', 1996, 'M', 469), +(159898, 'Sterling', 1996, 'M', 469), +(159899, 'Davon', 1996, 'M', 468), +(159900, 'Gilbert', 1996, 'M', 468), +(159901, 'Jace', 1996, 'M', 468), +(159902, 'Tylor', 1996, 'M', 468), +(159903, 'Jarred', 1996, 'M', 467), +(159904, 'Mackenzie', 1996, 'M', 465), +(159905, 'Marlon', 1996, 'M', 465), +(159906, 'Nathanael', 1996, 'M', 465), +(159907, 'Rogelio', 1996, 'M', 465), +(159908, 'Denzel', 1996, 'M', 464), +(159909, 'Tyree', 1996, 'M', 463), +(159910, 'Rudy', 1996, 'M', 462), +(159911, 'Charlie', 1996, 'M', 458), +(159912, 'Elliot', 1996, 'M', 458), +(159913, 'Sheldon', 1996, 'M', 458), +(159914, 'Garret', 1996, 'M', 455), +(159915, 'Stefan', 1996, 'M', 455), +(159916, 'Allan', 1996, 'M', 449), +(159917, 'Leo', 1996, 'M', 447), +(159918, 'Raekwon', 1996, 'M', 445), +(159919, 'Ray', 1996, 'M', 444), +(159920, 'Noe', 1996, 'M', 443), +(159921, 'Damion', 1996, 'M', 440), +(159922, 'Quincy', 1996, 'M', 437), +(159923, 'Mauricio', 1996, 'M', 432), +(159924, 'Forrest', 1996, 'M', 431), +(159925, 'Juwan', 1996, 'M', 431), +(159926, 'Deangelo', 1996, 'M', 430), +(159927, 'Deonte', 1996, 'M', 430), +(159928, 'Cade', 1996, 'M', 428), +(159929, 'Lewis', 1996, 'M', 428), +(159930, 'Jaylen', 1996, 'M', 426), +(159931, 'Alfred', 1996, 'M', 423), +(159932, 'Brad', 1996, 'M', 419), +(159933, 'Osvaldo', 1996, 'M', 419), +(159934, 'Colten', 1996, 'M', 417), +(159935, 'Elliott', 1996, 'M', 417), +(159936, 'Rashad', 1996, 'M', 417), +(159937, 'Geoffrey', 1996, 'M', 416), +(159938, 'Ralph', 1996, 'M', 415), +(159939, 'Malachi', 1996, 'M', 414), +(159940, 'Blaine', 1996, 'M', 413), +(159941, 'Darnell', 1996, 'M', 412), +(159942, 'Alonzo', 1996, 'M', 407), +(159943, 'Santiago', 1996, 'M', 407), +(159944, 'Julius', 1996, 'M', 405), +(159945, 'Demarcus', 1996, 'M', 402), +(159946, 'Adan', 1996, 'M', 397), +(159947, 'Deon', 1996, 'M', 397), +(159948, 'Mohammad', 1996, 'M', 397), +(159949, 'Uriel', 1996, 'M', 396), +(159950, 'Clinton', 1996, 'M', 395), +(159951, 'Dorian', 1996, 'M', 395), +(159952, 'Cullen', 1996, 'M', 392), +(159953, 'Jaden', 1996, 'M', 392), +(159954, 'Ahmad', 1996, 'M', 389), +(159955, 'Ezekiel', 1996, 'M', 386), +(159956, 'Issac', 1996, 'M', 384), +(159957, 'Rolando', 1996, 'M', 384), +(159958, 'Nigel', 1996, 'M', 383), +(159959, 'Sawyer', 1996, 'M', 380), +(159960, 'Wilson', 1996, 'M', 380), +(159961, 'Efrain', 1996, 'M', 379), +(159962, 'Clarence', 1996, 'M', 376), +(159963, 'Sidney', 1996, 'M', 375), +(159964, 'Kaden', 1996, 'M', 373), +(159965, 'Jarrod', 1996, 'M', 371), +(159966, 'Stephan', 1996, 'M', 371), +(159967, 'Moses', 1996, 'M', 366), +(159968, 'Mike', 1996, 'M', 362), +(159969, 'Solomon', 1996, 'M', 361), +(159970, 'Roderick', 1996, 'M', 360), +(159971, 'Amir', 1996, 'M', 359), +(159972, 'Dandre', 1996, 'M', 359), +(159973, 'Clifford', 1996, 'M', 356), +(159974, 'Kurtis', 1996, 'M', 356), +(159975, 'Deven', 1996, 'M', 355), +(159976, 'Quintin', 1996, 'M', 355), +(159977, 'Humberto', 1996, 'M', 354), +(159978, 'Addison', 1996, 'M', 350), +(159979, 'Bret', 1996, 'M', 350), +(159980, 'Stephon', 1996, 'M', 348), +(159981, 'Coleman', 1996, 'M', 344), +(159982, 'Gordon', 1996, 'M', 343), +(159983, 'Darien', 1996, 'M', 342), +(159984, 'Toby', 1996, 'M', 342), +(159985, 'Barry', 1996, 'M', 339), +(159986, 'Kelly', 1996, 'M', 339), +(159987, 'Gunnar', 1996, 'M', 337), +(159988, 'Ezra', 1996, 'M', 336), +(159989, 'Kade', 1996, 'M', 336), +(159990, 'Kolton', 1996, 'M', 334), +(159991, 'Antoine', 1996, 'M', 333), +(159992, 'Kory', 1996, 'M', 331), +(159993, 'Kasey', 1996, 'M', 330), +(159994, 'Dion', 1996, 'M', 329), +(159995, 'Ezequiel', 1996, 'M', 329), +(159996, 'Jonas', 1996, 'M', 326), +(159997, 'Leonel', 1996, 'M', 326), +(159998, 'Derick', 1996, 'M', 325), +(159999, 'Stuart', 1996, 'M', 324), +(160000, 'Bennett', 1996, 'M', 323), +(160001, 'Bernard', 1996, 'M', 323), +(160002, 'Holden', 1996, 'M', 323), +(160003, 'Mitchel', 1996, 'M', 323), +(160004, 'Freddy', 1996, 'M', 322), +(160005, 'Earl', 1996, 'M', 319), +(160006, 'Ahmed', 1996, 'M', 318), +(160007, 'Brenton', 1996, 'M', 318), +(160008, 'Dashawn', 1996, 'M', 318), +(160009, 'Aron', 1996, 'M', 317), +(160010, 'Alvaro', 1996, 'M', 316), +(160011, 'Shannon', 1996, 'M', 316), +(160012, 'Roland', 1996, 'M', 315), +(160013, 'Ben', 1996, 'M', 314), +(160014, 'Perry', 1996, 'M', 314), +(160015, 'Vicente', 1996, 'M', 314), +(160016, 'Sage', 1996, 'M', 311), +(160017, 'Mohammed', 1996, 'M', 309), +(160018, 'Pierce', 1996, 'M', 309), +(160019, 'Fredrick', 1996, 'M', 308), +(160020, 'Dexter', 1996, 'M', 307), +(160021, 'Leroy', 1996, 'M', 307), +(160022, 'Tate', 1996, 'M', 307), +(160023, 'Markus', 1996, 'M', 306), +(160024, 'Howard', 1996, 'M', 305), +(160025, 'Shelby', 1996, 'M', 305), +(160026, 'Joaquin', 1996, 'M', 304), +(160027, 'Tristian', 1996, 'M', 304), +(160028, 'Jarvis', 1996, 'M', 303), +(160029, 'Kirk', 1996, 'M', 303), +(160030, 'Cordell', 1996, 'M', 302), +(160031, 'Kareem', 1996, 'M', 301), +(160032, 'Anfernee', 1996, 'M', 300), +(160033, 'Kai', 1996, 'M', 297), +(160034, 'Brice', 1996, 'M', 296), +(160035, 'Chaz', 1996, 'M', 296), +(160036, 'Lamar', 1996, 'M', 296), +(160037, 'Salvatore', 1996, 'M', 296), +(160038, 'Jaylon', 1996, 'M', 295), +(160039, 'Korey', 1996, 'M', 295), +(160040, 'Jayden', 1996, 'M', 294), +(160041, 'Shayne', 1996, 'M', 294), +(160042, 'Daryl', 1996, 'M', 291), +(160043, 'Irvin', 1996, 'M', 291), +(160044, 'Rhett', 1996, 'M', 290), +(160045, 'Agustin', 1996, 'M', 288), +(160046, 'Clint', 1996, 'M', 288), +(160047, 'Isaias', 1996, 'M', 288), +(160048, 'Maximilian', 1996, 'M', 285), +(160049, 'Mohamed', 1996, 'M', 285), +(160050, 'Carlton', 1996, 'M', 284), +(160051, 'Devyn', 1996, 'M', 284), +(160052, 'Darion', 1996, 'M', 282), +(160053, 'Everett', 1996, 'M', 281), +(160054, 'Keanu', 1996, 'M', 280), +(160055, 'Milton', 1996, 'M', 280), +(160056, 'Travon', 1996, 'M', 280), +(160057, 'Will', 1996, 'M', 280), +(160058, 'Dayton', 1996, 'M', 278), +(160059, 'Kieran', 1996, 'M', 278), +(160060, 'Raheem', 1996, 'M', 278), +(160061, 'Frankie', 1996, 'M', 276), +(160062, 'Marcel', 1996, 'M', 276), +(160063, 'Nathanial', 1996, 'M', 275), +(160064, 'Austyn', 1996, 'M', 274), +(160065, 'Tre', 1996, 'M', 273), +(160066, 'Guadalupe', 1996, 'M', 270), +(160067, 'River', 1996, 'M', 269), +(160068, 'Caden', 1996, 'M', 268), +(160069, 'Moshe', 1996, 'M', 268), +(160070, 'Houston', 1996, 'M', 267), +(160071, 'Dwight', 1996, 'M', 266), +(160072, 'Baby', 1996, 'M', 264), +(160073, 'Madison', 1996, 'M', 263), +(160074, 'Jaron', 1996, 'M', 262), +(160075, 'Neal', 1996, 'M', 262), +(160076, 'Norman', 1996, 'M', 262), +(160077, 'Clark', 1996, 'M', 261), +(160078, 'Heath', 1996, 'M', 261), +(160079, 'Ulises', 1996, 'M', 261), +(160080, 'Adolfo', 1996, 'M', 260), +(160081, 'Glen', 1996, 'M', 259), +(160082, 'Octavio', 1996, 'M', 259), +(160083, 'Darrius', 1996, 'M', 258), +(160084, 'German', 1996, 'M', 258), +(160085, 'Hudson', 1996, 'M', 257), +(160086, 'Kent', 1996, 'M', 257), +(160087, 'Reece', 1996, 'M', 256), +(160088, 'Rigoberto', 1996, 'M', 256), +(160089, 'Fred', 1996, 'M', 255), +(160090, 'Brennen', 1996, 'M', 254), +(160091, 'Raphael', 1996, 'M', 254), +(160092, 'Courtney', 1996, 'M', 253), +(160093, 'Kane', 1996, 'M', 253), +(160094, 'Ignacio', 1996, 'M', 252), +(160095, 'Jasper', 1996, 'M', 252), +(160096, 'Vernon', 1996, 'M', 251), +(160097, 'Jaylin', 1996, 'M', 250), +(160098, 'Shaquille', 1996, 'M', 250), +(160099, 'Brooks', 1996, 'M', 249), +(160100, 'Jamar', 1996, 'M', 249), +(160101, 'Justus', 1996, 'M', 248), +(160102, 'Jamel', 1996, 'M', 247), +(160103, 'Terence', 1996, 'M', 247), +(160104, 'Winston', 1996, 'M', 247), +(160105, 'Colt', 1996, 'M', 246), +(160106, 'Darrin', 1996, 'M', 245), +(160107, 'Lonnie', 1996, 'M', 245), +(160108, 'Conrad', 1996, 'M', 244), +(160109, 'Cornelius', 1996, 'M', 244), +(160110, 'Kolby', 1996, 'M', 244), +(160111, 'Quinten', 1996, 'M', 242), +(160112, 'Rory', 1996, 'M', 242), +(160113, 'Davonte', 1996, 'M', 241), +(160114, 'Hakeem', 1996, 'M', 241), +(160115, 'Reynaldo', 1996, 'M', 241), +(160116, 'Jean', 1996, 'M', 240), +(160117, 'Arnold', 1996, 'M', 239), +(160118, 'Dequan', 1996, 'M', 239), +(160119, 'Camden', 1996, 'M', 237), +(160120, 'Nestor', 1996, 'M', 237), +(160121, 'Darin', 1996, 'M', 236), +(160122, 'Davion', 1996, 'M', 236), +(160123, 'Dillan', 1996, 'M', 236), +(160124, 'Duane', 1996, 'M', 236), +(160125, 'Estevan', 1996, 'M', 236), +(160126, 'Jefferson', 1996, 'M', 236), +(160127, 'Marques', 1996, 'M', 236), +(160128, 'Zechariah', 1996, 'M', 235), +(160129, 'Don', 1996, 'M', 233), +(160130, 'Clifton', 1996, 'M', 232), +(160131, 'Mateo', 1996, 'M', 232), +(160132, 'Jairo', 1996, 'M', 231), +(160133, 'Elisha', 1996, 'M', 230), +(160134, 'Stone', 1996, 'M', 228), +(160135, 'Brandan', 1996, 'M', 227), +(160136, 'Devonta', 1996, 'M', 227), +(160137, 'Tracy', 1996, 'M', 227), +(160138, 'Marquez', 1996, 'M', 226), +(160139, 'Ladarius', 1996, 'M', 225), +(160140, 'Keshawn', 1996, 'M', 224), +(160141, 'Layne', 1996, 'M', 224), +(160142, 'Raymundo', 1996, 'M', 224), +(160143, 'Trever', 1996, 'M', 224), +(160144, 'August', 1996, 'M', 223), +(160145, 'Elmer', 1996, 'M', 222), +(160146, 'Jameson', 1996, 'M', 222), +(160147, 'Lamont', 1996, 'M', 222), +(160148, 'Reuben', 1996, 'M', 221), +(160149, 'Santos', 1996, 'M', 221), +(160150, 'Aldo', 1996, 'M', 220), +(160151, 'Keon', 1996, 'M', 220), +(160152, 'Cruz', 1996, 'M', 219), +(160153, 'Dontae', 1996, 'M', 219), +(160154, 'Jamison', 1996, 'M', 219), +(160155, 'Talon', 1996, 'M', 219), +(160156, 'Kristofer', 1996, 'M', 218), +(160157, 'Anton', 1996, 'M', 217), +(160158, 'Jarod', 1996, 'M', 216), +(160159, 'Thaddeus', 1996, 'M', 216), +(160160, 'Rick', 1996, 'M', 214), +(160161, 'Bernardo', 1996, 'M', 212), +(160162, 'Antwan', 1996, 'M', 211), +(160163, 'Bradford', 1996, 'M', 211), +(160164, 'Rickey', 1996, 'M', 211), +(160165, 'Coby', 1996, 'M', 210), +(160166, 'Lloyd', 1996, 'M', 210), +(160167, 'Cortez', 1996, 'M', 209), +(160168, 'Cyrus', 1996, 'M', 209), +(160169, 'Junior', 1996, 'M', 209), +(160170, 'Kahlil', 1996, 'M', 209), +(160171, 'Reese', 1996, 'M', 209), +(160172, 'Hassan', 1996, 'M', 208), +(160173, 'Armani', 1996, 'M', 207), +(160174, 'Kellen', 1996, 'M', 207), +(160175, 'Silas', 1996, 'M', 207), +(160176, 'Aubrey', 1996, 'M', 206), +(160177, 'Jimmie', 1996, 'M', 206), +(160178, 'Ibrahim', 1996, 'M', 205), +(160179, 'Herbert', 1996, 'M', 204), +(160180, 'Jaleel', 1996, 'M', 204), +(160181, 'Paris', 1996, 'M', 202), +(160182, 'Tobias', 1996, 'M', 202), +(160183, 'Trace', 1996, 'M', 202), +(160184, 'Johnnie', 1996, 'M', 201), +(160185, 'Infant', 1996, 'M', 200), +(160186, 'Julien', 1996, 'M', 200), +(160187, 'Garrison', 1996, 'M', 199), +(160188, 'Gino', 1996, 'M', 199), +(160189, 'Benito', 1996, 'M', 198), +(160190, 'Cristopher', 1996, 'M', 198), +(160191, 'Freddie', 1996, 'M', 196), +(160192, 'Brandyn', 1996, 'M', 195), +(160193, 'Darrion', 1996, 'M', 195), +(160194, 'Dawson', 1996, 'M', 195), +(160195, 'Gerard', 1996, 'M', 195), +(160196, 'Heriberto', 1996, 'M', 195), +(160197, 'Dusty', 1996, 'M', 194), +(160198, 'Donavan', 1996, 'M', 193), +(160199, 'Hugh', 1996, 'M', 193), +(160200, 'Alonso', 1996, 'M', 192), +(160201, 'Dimitri', 1996, 'M', 192), +(160202, 'Guy', 1996, 'M', 192), +(160203, 'Jovan', 1996, 'M', 192), +(160204, 'Bo', 1996, 'M', 191), +(160205, 'Misael', 1996, 'M', 191), +(160206, 'Rashawn', 1996, 'M', 191), +(160207, 'Arron', 1996, 'M', 190), +(160208, 'Javonte', 1996, 'M', 190), +(160209, 'Muhammad', 1996, 'M', 190), +(160210, 'Antony', 1996, 'M', 188), +(160211, 'Asher', 1996, 'M', 188), +(160212, 'Elvis', 1996, 'M', 188), +(160213, 'Montana', 1996, 'M', 188), +(160214, 'Tavon', 1996, 'M', 188), +(160215, 'Coty', 1996, 'M', 187), +(160216, 'Dallin', 1996, 'M', 187), +(160217, 'Ellis', 1996, 'M', 187), +(160218, 'Keyshawn', 1996, 'M', 187), +(160219, 'Zakary', 1996, 'M', 187), +(160220, 'Jackie', 1996, 'M', 186), +(160221, 'Camron', 1996, 'M', 185), +(160222, 'Gonzalo', 1996, 'M', 185), +(160223, 'Orion', 1996, 'M', 185), +(160224, 'Ari', 1996, 'M', 184), +(160225, 'Codey', 1996, 'M', 184), +(160226, 'Efren', 1996, 'M', 184), +(160227, 'Justyn', 1996, 'M', 184), +(160228, 'Sammy', 1996, 'M', 183), +(160229, 'Destin', 1996, 'M', 182), +(160230, 'Herman', 1996, 'M', 182), +(160231, 'Trystan', 1996, 'M', 182), +(160232, 'Tyron', 1996, 'M', 182), +(160233, 'Kerry', 1996, 'M', 181), +(160234, 'Kelton', 1996, 'M', 180), +(160235, 'Rasheed', 1996, 'M', 180), +(160236, 'Tariq', 1996, 'M', 180), +(160237, 'Benny', 1996, 'M', 179), +(160238, 'Deondre', 1996, 'M', 179), +(160239, 'Deshaun', 1996, 'M', 179), +(160240, 'Donnie', 1996, 'M', 179), +(160241, 'Kevon', 1996, 'M', 179), +(160242, 'Royce', 1996, 'M', 179), +(160243, 'Anderson', 1996, 'M', 178), +(160244, 'Robin', 1996, 'M', 178), +(160245, 'Ulysses', 1996, 'M', 178), +(160246, 'Dylon', 1996, 'M', 177), +(160247, 'Greyson', 1996, 'M', 177), +(160248, 'Gunner', 1996, 'M', 177), +(160249, 'Hernan', 1996, 'M', 177), +(160250, 'Jamarcus', 1996, 'M', 177), +(160251, 'Jerrod', 1996, 'M', 177), +(160252, 'Dillion', 1996, 'M', 176), +(160253, 'Fidel', 1996, 'M', 176), +(160254, 'Tyquan', 1996, 'M', 176), +(160255, 'Aric', 1996, 'M', 175), +(160256, 'Broderick', 1996, 'M', 175), +(160257, 'Josef', 1996, 'M', 175), +(160258, 'Leslie', 1996, 'M', 175), +(160259, 'Aiden', 1996, 'M', 174), +(160260, 'Dan', 1996, 'M', 174), +(160261, 'Jabari', 1996, 'M', 174), +(160262, 'Alexandro', 1996, 'M', 173), +(160263, 'Braeden', 1996, 'M', 173), +(160264, 'Khalid', 1996, 'M', 173), +(160265, 'Nick', 1996, 'M', 173), +(160266, 'Adonis', 1996, 'M', 172), +(160267, 'Grady', 1996, 'M', 172), +(160268, 'Stewart', 1996, 'M', 172), +(160269, 'Turner', 1996, 'M', 172), +(160270, 'Dakotah', 1996, 'M', 171), +(160271, 'Jade', 1996, 'M', 171), +(160272, 'Gene', 1996, 'M', 170), +(160273, 'Mikel', 1996, 'M', 170), +(160274, 'Kennedy', 1996, 'M', 169), +(160275, 'Lester', 1996, 'M', 169), +(160276, 'Bradly', 1996, 'M', 168), +(160277, 'Easton', 1996, 'M', 168), +(160278, 'Maverick', 1996, 'M', 167), +(160279, 'Brayan', 1996, 'M', 166), +(160280, 'Asa', 1996, 'M', 165), +(160281, 'Bronson', 1996, 'M', 165), +(160282, 'Donnell', 1996, 'M', 165), +(160283, 'Josh', 1996, 'M', 165), +(160284, 'Garett', 1996, 'M', 164), +(160285, 'Myron', 1996, 'M', 164), +(160286, 'Pierre', 1996, 'M', 164), +(160287, 'Tarik', 1996, 'M', 164), +(160288, 'Draven', 1996, 'M', 163), +(160289, 'Maximillian', 1996, 'M', 163), +(160290, 'Remington', 1996, 'M', 163), +(160291, 'Erich', 1996, 'M', 162), +(160292, 'Gregorio', 1996, 'M', 162), +(160293, 'Vance', 1996, 'M', 162), +(160294, 'Axel', 1996, 'M', 161), +(160295, 'Chaim', 1996, 'M', 161), +(160296, 'Dana', 1996, 'M', 161), +(160297, 'Demarco', 1996, 'M', 161), +(160298, 'Emmett', 1996, 'M', 161), +(160299, 'Mickey', 1996, 'M', 161), +(160300, 'Shamar', 1996, 'M', 161), +(160301, 'Tyshawn', 1996, 'M', 161), +(160302, 'Jorden', 1996, 'M', 160), +(160303, 'Jacoby', 1996, 'M', 159), +(160304, 'Jamil', 1996, 'M', 159), +(160305, 'Keion', 1996, 'M', 159), +(160306, 'Keven', 1996, 'M', 158), +(160307, 'Nico', 1996, 'M', 158), +(160308, 'Titus', 1996, 'M', 158), +(160309, 'Dewayne', 1996, 'M', 157), +(160310, 'Jim', 1996, 'M', 157), +(160311, 'Marcelo', 1996, 'M', 157), +(160312, 'Raquan', 1996, 'M', 157), +(160313, 'Seamus', 1996, 'M', 157), +(160314, 'Abram', 1996, 'M', 156), +(160315, 'Jeff', 1996, 'M', 156), +(160316, 'Rohan', 1996, 'M', 156), +(160317, 'Kole', 1996, 'M', 155), +(160318, 'Shea', 1996, 'M', 155), +(160319, 'Cecil', 1996, 'M', 154), +(160320, 'Carlo', 1996, 'M', 153), +(160321, 'Codie', 1996, 'M', 153), +(160322, 'Jair', 1996, 'M', 153), +(160323, 'Sonny', 1996, 'M', 153), +(160324, 'Irving', 1996, 'M', 152), +(160325, 'Loren', 1996, 'M', 152), +(160326, 'Ryne', 1996, 'M', 152), +(160327, 'Braydon', 1996, 'M', 151), +(160328, 'Davin', 1996, 'M', 151), +(160329, 'Auston', 1996, 'M', 150), +(160330, 'Darrian', 1996, 'M', 150), +(160331, 'Isai', 1996, 'M', 149), +(160332, 'Jessy', 1996, 'M', 149), +(160333, 'Lincoln', 1996, 'M', 149), +(160334, 'Simeon', 1996, 'M', 149), +(160335, 'Tayler', 1996, 'M', 149), +(160336, 'Akeem', 1996, 'M', 146), +(160337, 'Denver', 1996, 'M', 146), +(160338, 'Ervin', 1996, 'M', 146), +(160339, 'Luciano', 1996, 'M', 146), +(160340, 'Niko', 1996, 'M', 146), +(160341, 'Shemar', 1996, 'M', 146), +(160342, 'Valentin', 1996, 'M', 146), +(160343, 'Andreas', 1996, 'M', 145), +(160344, 'Barrett', 1996, 'M', 145), +(160345, 'Eliseo', 1996, 'M', 145), +(160346, 'Killian', 1996, 'M', 145), +(160347, 'Jess', 1996, 'M', 144), +(160348, 'Leland', 1996, 'M', 144), +(160349, 'Alden', 1996, 'M', 143), +(160350, 'Cale', 1996, 'M', 143), +(160351, 'Erin', 1996, 'M', 143), +(160352, 'Galen', 1996, 'M', 143), +(160353, 'Jonatan', 1996, 'M', 143), +(160354, 'Najee', 1996, 'M', 143), +(160355, 'Reilly', 1996, 'M', 143), +(160356, 'Cedrick', 1996, 'M', 142), +(160357, 'Rocky', 1996, 'M', 142), +(160358, 'Romello', 1996, 'M', 142), +(160359, 'Brennon', 1996, 'M', 141), +(160360, 'Dejuan', 1996, 'M', 141), +(160361, 'Domenic', 1996, 'M', 141), +(160362, 'Ishmael', 1996, 'M', 141), +(160363, 'Jayce', 1996, 'M', 141), +(160364, 'Devontae', 1996, 'M', 140), +(160365, 'Kelsey', 1996, 'M', 140), +(160366, 'Reagan', 1996, 'M', 140), +(160367, 'Vaughn', 1996, 'M', 140), +(160368, 'Dakoda', 1996, 'M', 139), +(160369, 'Dionte', 1996, 'M', 139), +(160370, 'Jude', 1996, 'M', 139), +(160371, 'Kenton', 1996, 'M', 139), +(160372, 'Markel', 1996, 'M', 139), +(160373, 'Rex', 1996, 'M', 139), +(160374, 'Eddy', 1996, 'M', 138), +(160375, 'Edgardo', 1996, 'M', 138), +(160376, 'Jacques', 1996, 'M', 138), +(160377, 'Menachem', 1996, 'M', 138), +(160378, 'Augustus', 1996, 'M', 137), +(160379, 'Eliezer', 1996, 'M', 137), +(160380, 'Rico', 1996, 'M', 137), +(160381, 'Spenser', 1996, 'M', 137), +(160382, 'Abdul', 1996, 'M', 136), +(160383, 'Alton', 1996, 'M', 136), +(160384, 'Amos', 1996, 'M', 136), +(160385, 'Armand', 1996, 'M', 136), +(160386, 'Cristobal', 1996, 'M', 136), +(160387, 'Harvey', 1996, 'M', 136), +(160388, 'Shaquan', 1996, 'M', 136), +(160389, 'Storm', 1996, 'M', 136), +(160390, 'Alek', 1996, 'M', 135), +(160391, 'Jamaal', 1996, 'M', 135), +(160392, 'Justen', 1996, 'M', 135), +(160393, 'Maximiliano', 1996, 'M', 135), +(160394, 'Ted', 1996, 'M', 135), +(160395, 'Brant', 1996, 'M', 134), +(160396, 'Cain', 1996, 'M', 133), +(160397, 'Clyde', 1996, 'M', 133), +(160398, 'Dario', 1996, 'M', 133), +(160399, 'Floyd', 1996, 'M', 133), +(160400, 'Jaylan', 1996, 'M', 133), +(160401, 'Nasir', 1996, 'M', 133), +(160402, 'Syed', 1996, 'M', 133), +(160403, 'Trayvon', 1996, 'M', 132), +(160404, 'Alexandre', 1996, 'M', 131), +(160405, 'Francesco', 1996, 'M', 131), +(160406, 'Kirby', 1996, 'M', 131), +(160407, 'Shelton', 1996, 'M', 131), +(160408, 'Bryon', 1996, 'M', 130), +(160409, 'Lionel', 1996, 'M', 130), +(160410, 'Romeo', 1996, 'M', 130), +(160411, 'Abdullah', 1996, 'M', 129), +(160412, 'Dalvin', 1996, 'M', 129), +(160413, 'Teddy', 1996, 'M', 129), +(160414, 'Blaise', 1996, 'M', 128), +(160415, 'Dyllan', 1996, 'M', 128), +(160416, 'Edmund', 1996, 'M', 128), +(160417, 'Jody', 1996, 'M', 128), +(160418, 'Lazaro', 1996, 'M', 128), +(160419, 'Chadwick', 1996, 'M', 127), +(160420, 'Daron', 1996, 'M', 127), +(160421, 'Dominik', 1996, 'M', 127), +(160422, 'Emerson', 1996, 'M', 127), +(160423, 'Randolph', 1996, 'M', 127), +(160424, 'Sydney', 1996, 'M', 127), +(160425, 'Giancarlo', 1996, 'M', 126), +(160426, 'Keagan', 1996, 'M', 126), +(160427, 'Kendal', 1996, 'M', 126), +(160428, 'Kordell', 1996, 'M', 126), +(160429, 'Montel', 1996, 'M', 126), +(160430, 'Pete', 1996, 'M', 126), +(160431, 'Rodrick', 1996, 'M', 126), +(160432, 'Waylon', 1996, 'M', 126), +(160433, 'Branson', 1996, 'M', 125), +(160434, 'Bruno', 1996, 'M', 125), +(160435, 'Deonta', 1996, 'M', 125), +(160436, 'Hans', 1996, 'M', 125), +(160437, 'Jovany', 1996, 'M', 125), +(160438, 'Keyon', 1996, 'M', 125), +(160439, 'Ryder', 1996, 'M', 125), +(160440, 'Tom', 1996, 'M', 125), +(160441, 'Deontae', 1996, 'M', 124), +(160442, 'Isidro', 1996, 'M', 124), +(160443, 'Ryley', 1996, 'M', 124), +(160444, 'Vincenzo', 1996, 'M', 124), +(160445, 'Chester', 1996, 'M', 123), +(160446, 'Genaro', 1996, 'M', 123), +(160447, 'Ira', 1996, 'M', 123), +(160448, 'Kalvin', 1996, 'M', 123), +(160449, 'Landen', 1996, 'M', 123), +(160450, 'Malique', 1996, 'M', 123), +(160451, 'Ron', 1996, 'M', 123), +(160452, 'Samir', 1996, 'M', 123), +(160453, 'Stetson', 1996, 'M', 123), +(160454, 'Trae', 1996, 'M', 123), +(160455, 'Treyvon', 1996, 'M', 123), +(160456, 'Anders', 1996, 'M', 122), +(160457, 'Nehemiah', 1996, 'M', 122), +(160458, 'Nikhil', 1996, 'M', 122), +(160459, 'Reno', 1996, 'M', 122), +(160460, 'Jovani', 1996, 'M', 120), +(160461, 'Mckenzie', 1996, 'M', 120), +(160462, 'Nicklaus', 1996, 'M', 120), +(160463, 'Wendell', 1996, 'M', 120), +(160464, 'Coleton', 1996, 'M', 119), +(160465, 'Courtland', 1996, 'M', 119), +(160466, 'Donavon', 1996, 'M', 119), +(160467, 'Emiliano', 1996, 'M', 119), +(160468, 'Jamari', 1996, 'M', 119), +(160469, 'Ken', 1996, 'M', 119), +(160470, 'Rey', 1996, 'M', 119), +(160471, 'Blair', 1996, 'M', 118), +(160472, 'Brodie', 1996, 'M', 118), +(160473, 'Federico', 1996, 'M', 118), +(160474, 'London', 1996, 'M', 118), +(160475, 'Timmy', 1996, 'M', 118), +(160476, 'Cornell', 1996, 'M', 117), +(160477, 'Daulton', 1996, 'M', 117), +(160478, 'Lyle', 1996, 'M', 117), +(160479, 'Marion', 1996, 'M', 117), +(160480, 'Mustafa', 1996, 'M', 117), +(160481, 'Robbie', 1996, 'M', 117), +(160482, 'Rusty', 1996, 'M', 117), +(160483, 'Wilfredo', 1996, 'M', 117), +(160484, 'Chauncey', 1996, 'M', 116), +(160485, 'Claudio', 1996, 'M', 116), +(160486, 'Deanthony', 1996, 'M', 116), +(160487, 'Fredy', 1996, 'M', 116), +(160488, 'Koby', 1996, 'M', 116), +(160489, 'Phoenix', 1996, 'M', 116), +(160490, 'Samson', 1996, 'M', 116), +(160491, 'Shay', 1996, 'M', 116), +(160492, 'Sherman', 1996, 'M', 116), +(160493, 'Tory', 1996, 'M', 116), +(160494, 'Bill', 1996, 'M', 115), +(160495, 'Forest', 1996, 'M', 115), +(160496, 'Kenyon', 1996, 'M', 115), +(160497, 'Marcelino', 1996, 'M', 115), +(160498, 'Otis', 1996, 'M', 115), +(160499, 'Rocco', 1996, 'M', 115), +(160500, 'Rylan', 1996, 'M', 115), +(160501, 'Brannon', 1996, 'M', 114), +(160502, 'Britton', 1996, 'M', 114), +(160503, 'Demario', 1996, 'M', 114), +(160504, 'Jedidiah', 1996, 'M', 114), +(160505, 'Raven', 1996, 'M', 114), +(160506, 'Giovani', 1996, 'M', 113), +(160507, 'Giovanny', 1996, 'M', 113), +(160508, 'Jaren', 1996, 'M', 113), +(160509, 'Jaxon', 1996, 'M', 113), +(160510, 'Jelani', 1996, 'M', 113), +(160511, 'Willis', 1996, 'M', 113), +(160512, 'Alessandro', 1996, 'M', 112), +(160513, 'Braulio', 1996, 'M', 112), +(160514, 'Cal', 1996, 'M', 112), +(160515, 'Desean', 1996, 'M', 112), +(160516, 'Greg', 1996, 'M', 112), +(160517, 'Jacky', 1996, 'M', 112), +(160518, 'Kegan', 1996, 'M', 112), +(160519, 'Markell', 1996, 'M', 112), +(160520, 'Mohamad', 1996, 'M', 112), +(160521, 'Oswaldo', 1996, 'M', 112), +(160522, 'Adrien', 1996, 'M', 111), +(160523, 'Gideon', 1996, 'M', 111), +(160524, 'Kolten', 1996, 'M', 111), +(160525, 'Leighton', 1996, 'M', 111), +(160526, 'Ridge', 1996, 'M', 111), +(160527, 'Trevin', 1996, 'M', 111), +(160528, 'Demond', 1996, 'M', 110), +(160529, 'Gianni', 1996, 'M', 110), +(160530, 'Kalen', 1996, 'M', 110), +(160531, 'Martez', 1996, 'M', 110), +(160532, 'Nash', 1996, 'M', 110), +(160533, 'Nathen', 1996, 'M', 110), +(160534, 'Shyheim', 1996, 'M', 110), +(160535, 'Yosef', 1996, 'M', 110), +(160536, 'Cheyenne', 1996, 'M', 109), +(160537, 'Deante', 1996, 'M', 109), +(160538, 'Kirkland', 1996, 'M', 109), +(160539, 'Laurence', 1996, 'M', 109), +(160540, 'Rudolph', 1996, 'M', 109), +(160541, 'Schuyler', 1996, 'M', 109), +(160542, 'Ashley', 1996, 'M', 108), +(160543, 'Claude', 1996, 'M', 108), +(160544, 'Marquel', 1996, 'M', 108), +(160545, 'Rashaad', 1996, 'M', 108), +(160546, 'Santino', 1996, 'M', 108), +(160547, 'Brandt', 1996, 'M', 107), +(160548, 'Dustyn', 1996, 'M', 107), +(160549, 'Jerald', 1996, 'M', 107), +(160550, 'Jerod', 1996, 'M', 107), +(160551, 'Jovanni', 1996, 'M', 107), +(160552, 'Kodi', 1996, 'M', 107), +(160553, 'Marty', 1996, 'M', 107), +(160554, 'Omari', 1996, 'M', 107), +(160555, 'Angus', 1996, 'M', 106), +(160556, 'Chace', 1996, 'M', 106), +(160557, 'Coy', 1996, 'M', 106), +(160558, 'Everardo', 1996, 'M', 106), +(160559, 'Reggie', 1996, 'M', 106), +(160560, 'Truman', 1996, 'M', 106), +(160561, 'Tyreek', 1996, 'M', 106), +(160562, 'Arnulfo', 1996, 'M', 105), +(160563, 'Benton', 1996, 'M', 105), +(160564, 'Dajuan', 1996, 'M', 105), +(160565, 'Damarcus', 1996, 'M', 105), +(160566, 'Darwin', 1996, 'M', 105), +(160567, 'Declan', 1996, 'M', 105), +(160568, 'Garry', 1996, 'M', 105), +(160569, 'Jadon', 1996, 'M', 105), +(160570, 'Jovanny', 1996, 'M', 105), +(160571, 'Kyree', 1996, 'M', 105), +(160572, 'Montrell', 1996, 'M', 105), +(160573, 'Tye', 1996, 'M', 105), +(160574, 'Yehuda', 1996, 'M', 105), +(160575, 'Yisroel', 1996, 'M', 105), +(160576, 'Arjun', 1996, 'M', 104), +(160577, 'Deric', 1996, 'M', 104), +(160578, 'Domingo', 1996, 'M', 104), +(160579, 'Haden', 1996, 'M', 104), +(160580, 'Jalon', 1996, 'M', 104), +(160581, 'Kian', 1996, 'M', 104), +(160582, 'Richie', 1996, 'M', 104), +(160583, 'Tyrus', 1996, 'M', 104), +(160584, 'Daylon', 1996, 'M', 103), +(160585, 'Demonte', 1996, 'M', 103), +(160586, 'Juancarlos', 1996, 'M', 103), +(160587, 'Louie', 1996, 'M', 103), +(160588, 'Sami', 1996, 'M', 103), +(160589, 'Semaj', 1996, 'M', 103), +(160590, 'Davante', 1996, 'M', 102), +(160591, 'Denis', 1996, 'M', 102), +(160592, 'Harris', 1996, 'M', 102), +(160593, 'Johnson', 1996, 'M', 102), +(160594, 'Luther', 1996, 'M', 102), +(160595, 'Mikal', 1996, 'M', 102), +(160596, 'Ronny', 1996, 'M', 102), +(160597, 'Jan', 1996, 'M', 101), +(160598, 'Jerrell', 1996, 'M', 101), +(160599, 'Marcellus', 1996, 'M', 101), +(160600, 'Uriah', 1996, 'M', 101), +(160601, 'Blade', 1996, 'M', 100), +(160602, 'Bradlee', 1996, 'M', 100), +(160603, 'Kamron', 1996, 'M', 100), +(160604, 'Marlin', 1996, 'M', 100), +(160605, 'Osbaldo', 1996, 'M', 100), +(160606, 'Rayshawn', 1996, 'M', 100), +(160607, 'Samual', 1996, 'M', 100), +(160608, 'Trevion', 1996, 'M', 100), +(160609, 'Emily', 1997, 'F', 25731), +(160610, 'Jessica', 1997, 'F', 21043), +(160611, 'Ashley', 1997, 'F', 20894), +(160612, 'Sarah', 1997, 'F', 20690), +(160613, 'Hannah', 1997, 'F', 20586), +(160614, 'Samantha', 1997, 'F', 20169), +(160615, 'Taylor', 1997, 'F', 19503), +(160616, 'Alexis', 1997, 'F', 17172), +(160617, 'Elizabeth', 1997, 'F', 15411), +(160618, 'Madison', 1997, 'F', 15187), +(160619, 'Megan', 1997, 'F', 14242), +(160620, 'Kayla', 1997, 'F', 13884), +(160621, 'Rachel', 1997, 'F', 13781), +(160622, 'Lauren', 1997, 'F', 13244), +(160623, 'Alyssa', 1997, 'F', 12646), +(160624, 'Amanda', 1997, 'F', 12238), +(160625, 'Brianna', 1997, 'F', 12007), +(160626, 'Jennifer', 1997, 'F', 11837), +(160627, 'Victoria', 1997, 'F', 11790), +(160628, 'Brittany', 1997, 'F', 11527), +(160629, 'Nicole', 1997, 'F', 10743), +(160630, 'Morgan', 1997, 'F', 10341), +(160631, 'Stephanie', 1997, 'F', 9777), +(160632, 'Jasmine', 1997, 'F', 9678), +(160633, 'Abigail', 1997, 'F', 9627), +(160634, 'Rebecca', 1997, 'F', 9618), +(160635, 'Olivia', 1997, 'F', 9476), +(160636, 'Courtney', 1997, 'F', 9036), +(160637, 'Amber', 1997, 'F', 8912), +(160638, 'Alexandra', 1997, 'F', 8750), +(160639, 'Haley', 1997, 'F', 8682), +(160640, 'Katherine', 1997, 'F', 8516), +(160641, 'Anna', 1997, 'F', 8333), +(160642, 'Danielle', 1997, 'F', 8033), +(160643, 'Sydney', 1997, 'F', 8031), +(160644, 'Emma', 1997, 'F', 7731), +(160645, 'Julia', 1997, 'F', 7339), +(160646, 'Maria', 1997, 'F', 7311), +(160647, 'Allison', 1997, 'F', 7274), +(160648, 'Jordan', 1997, 'F', 7166), +(160649, 'Kaitlyn', 1997, 'F', 7005), +(160650, 'Destiny', 1997, 'F', 6726), +(160651, 'Shelby', 1997, 'F', 6701), +(160652, 'Melissa', 1997, 'F', 6677), +(160653, 'Brooke', 1997, 'F', 6671), +(160654, 'Mary', 1997, 'F', 6626), +(160655, 'Savannah', 1997, 'F', 6578), +(160656, 'Natalie', 1997, 'F', 6539), +(160657, 'Kimberly', 1997, 'F', 6179), +(160658, 'Sara', 1997, 'F', 6155), +(160659, 'Gabrielle', 1997, 'F', 5943), +(160660, 'Erin', 1997, 'F', 5937), +(160661, 'Sabrina', 1997, 'F', 5816), +(160662, 'Vanessa', 1997, 'F', 5795), +(160663, 'Michelle', 1997, 'F', 5694), +(160664, 'Sierra', 1997, 'F', 5687), +(160665, 'Kelsey', 1997, 'F', 5572), +(160666, 'Andrea', 1997, 'F', 5405), +(160667, 'Madeline', 1997, 'F', 5313), +(160668, 'Marissa', 1997, 'F', 5296), +(160669, 'Tiffany', 1997, 'F', 5221), +(160670, 'Christina', 1997, 'F', 5179), +(160671, 'Katelyn', 1997, 'F', 5156), +(160672, 'Paige', 1997, 'F', 5030), +(160673, 'Bailey', 1997, 'F', 5023), +(160674, 'Laura', 1997, 'F', 4847), +(160675, 'Mariah', 1997, 'F', 4802), +(160676, 'Cheyenne', 1997, 'F', 4763), +(160677, 'Grace', 1997, 'F', 4638), +(160678, 'Miranda', 1997, 'F', 4590), +(160679, 'Mackenzie', 1997, 'F', 4491), +(160680, 'Briana', 1997, 'F', 4475), +(160681, 'Chelsea', 1997, 'F', 4460), +(160682, 'Breanna', 1997, 'F', 4444), +(160683, 'Caroline', 1997, 'F', 4439), +(160684, 'Jenna', 1997, 'F', 4421), +(160685, 'Jacqueline', 1997, 'F', 4276), +(160686, 'Alexandria', 1997, 'F', 4233), +(160687, 'Monica', 1997, 'F', 4223), +(160688, 'Hailey', 1997, 'F', 4144), +(160689, 'Cassandra', 1997, 'F', 4097), +(160690, 'Kristen', 1997, 'F', 4085), +(160691, 'Kelly', 1997, 'F', 4063), +(160692, 'Erica', 1997, 'F', 3991), +(160693, 'Shannon', 1997, 'F', 3914), +(160694, 'Kathryn', 1997, 'F', 3871), +(160695, 'Caitlin', 1997, 'F', 3861), +(160696, 'Katie', 1997, 'F', 3840), +(160697, 'Alicia', 1997, 'F', 3783), +(160698, 'Heather', 1997, 'F', 3768), +(160699, 'Autumn', 1997, 'F', 3739), +(160700, 'Amy', 1997, 'F', 3690), +(160701, 'Angela', 1997, 'F', 3650), +(160702, 'Sophia', 1997, 'F', 3639), +(160703, 'Lindsey', 1997, 'F', 3637), +(160704, 'Catherine', 1997, 'F', 3593), +(160705, 'Diana', 1997, 'F', 3583), +(160706, 'Molly', 1997, 'F', 3447), +(160707, 'Crystal', 1997, 'F', 3434), +(160708, 'Michaela', 1997, 'F', 3398), +(160709, 'Angelica', 1997, 'F', 3380), +(160710, 'Makayla', 1997, 'F', 3344), +(160711, 'Jamie', 1997, 'F', 3241), +(160712, 'Leah', 1997, 'F', 3203), +(160713, 'Cassidy', 1997, 'F', 3142), +(160714, 'Alexa', 1997, 'F', 3090), +(160715, 'Kaylee', 1997, 'F', 3055), +(160716, 'Claire', 1997, 'F', 3039), +(160717, 'Chloe', 1997, 'F', 3015), +(160718, 'Margaret', 1997, 'F', 2963), +(160719, 'Erika', 1997, 'F', 2898), +(160720, 'Mikayla', 1997, 'F', 2873), +(160721, 'Meghan', 1997, 'F', 2868), +(160722, 'Isabella', 1997, 'F', 2861), +(160723, 'Leslie', 1997, 'F', 2821), +(160724, 'Kylie', 1997, 'F', 2745), +(160725, 'Cynthia', 1997, 'F', 2713), +(160726, 'Dominique', 1997, 'F', 2669), +(160727, 'Kaitlin', 1997, 'F', 2668), +(160728, 'Gabriela', 1997, 'F', 2629), +(160729, 'Bethany', 1997, 'F', 2622), +(160730, 'Jocelyn', 1997, 'F', 2619), +(160731, 'Gabriella', 1997, 'F', 2613), +(160732, 'Faith', 1997, 'F', 2575), +(160733, 'Adriana', 1997, 'F', 2551), +(160734, 'Veronica', 1997, 'F', 2543), +(160735, 'Melanie', 1997, 'F', 2522), +(160736, 'Mia', 1997, 'F', 2493), +(160737, 'Jade', 1997, 'F', 2492), +(160738, 'Brittney', 1997, 'F', 2483), +(160739, 'Summer', 1997, 'F', 2480), +(160740, 'Karina', 1997, 'F', 2373), +(160741, 'Caitlyn', 1997, 'F', 2365), +(160742, 'Bianca', 1997, 'F', 2362), +(160743, 'Zoe', 1997, 'F', 2361), +(160744, 'Hayley', 1997, 'F', 2352), +(160745, 'Carly', 1997, 'F', 2335), +(160746, 'Ariana', 1997, 'F', 2319), +(160747, 'Ana', 1997, 'F', 2317), +(160748, 'Daisy', 1997, 'F', 2303), +(160749, 'Isabel', 1997, 'F', 2258), +(160750, 'Valerie', 1997, 'F', 2224), +(160751, 'Karen', 1997, 'F', 2222), +(160752, 'Angel', 1997, 'F', 2212), +(160753, 'Ariel', 1997, 'F', 2212), +(160754, 'Casey', 1997, 'F', 2194), +(160755, 'Desiree', 1997, 'F', 2186), +(160756, 'Brenda', 1997, 'F', 2158), +(160757, 'Lindsay', 1997, 'F', 2086), +(160758, 'Mckenzie', 1997, 'F', 2068), +(160759, 'Holly', 1997, 'F', 2056), +(160760, 'Rebekah', 1997, 'F', 2055), +(160761, 'Kendra', 1997, 'F', 2052), +(160762, 'Rachael', 1997, 'F', 2038), +(160763, 'Adrianna', 1997, 'F', 2007), +(160764, 'Audrey', 1997, 'F', 2007), +(160765, 'Selena', 1997, 'F', 1997), +(160766, 'Whitney', 1997, 'F', 1961), +(160767, 'Christine', 1997, 'F', 1940), +(160768, 'Lydia', 1997, 'F', 1930), +(160769, 'Kara', 1997, 'F', 1907), +(160770, 'Alejandra', 1997, 'F', 1904), +(160771, 'Kristina', 1997, 'F', 1865), +(160772, 'Julie', 1997, 'F', 1863), +(160773, 'Jada', 1997, 'F', 1856), +(160774, 'Jillian', 1997, 'F', 1849), +(160775, 'Alondra', 1997, 'F', 1837), +(160776, 'Claudia', 1997, 'F', 1837), +(160777, 'Patricia', 1997, 'F', 1781), +(160778, 'Raven', 1997, 'F', 1781), +(160779, 'Hope', 1997, 'F', 1769), +(160780, 'Tara', 1997, 'F', 1767), +(160781, 'Alison', 1997, 'F', 1763), +(160782, 'Kristin', 1997, 'F', 1752), +(160783, 'Kathleen', 1997, 'F', 1741), +(160784, 'Aaliyah', 1997, 'F', 1738), +(160785, 'Arianna', 1997, 'F', 1705), +(160786, 'Hanna', 1997, 'F', 1698), +(160787, 'Dana', 1997, 'F', 1683), +(160788, 'Cierra', 1997, 'F', 1677), +(160789, 'Diamond', 1997, 'F', 1676), +(160790, 'Alexus', 1997, 'F', 1675), +(160791, 'Maya', 1997, 'F', 1674), +(160792, 'Riley', 1997, 'F', 1669), +(160793, 'Kirsten', 1997, 'F', 1633), +(160794, 'Kennedy', 1997, 'F', 1624), +(160795, 'Jasmin', 1997, 'F', 1605), +(160796, 'April', 1997, 'F', 1602), +(160797, 'Natasha', 1997, 'F', 1592), +(160798, 'Mallory', 1997, 'F', 1589), +(160799, 'Evelyn', 1997, 'F', 1571), +(160800, 'Abby', 1997, 'F', 1564), +(160801, 'Kendall', 1997, 'F', 1559), +(160802, 'Lisa', 1997, 'F', 1545), +(160803, 'Asia', 1997, 'F', 1532), +(160804, 'Nancy', 1997, 'F', 1524), +(160805, 'Naomi', 1997, 'F', 1521), +(160806, 'Kiana', 1997, 'F', 1507), +(160807, 'Brandi', 1997, 'F', 1484), +(160808, 'Marisa', 1997, 'F', 1477), +(160809, 'Karla', 1997, 'F', 1469), +(160810, 'Sandra', 1997, 'F', 1449), +(160811, 'Kyra', 1997, 'F', 1444), +(160812, 'Jordyn', 1997, 'F', 1437), +(160813, 'Jazmin', 1997, 'F', 1429), +(160814, 'Cindy', 1997, 'F', 1420), +(160815, 'Katrina', 1997, 'F', 1411), +(160816, 'Joanna', 1997, 'F', 1409), +(160817, 'Tori', 1997, 'F', 1409), +(160818, 'Guadalupe', 1997, 'F', 1405), +(160819, 'Ciara', 1997, 'F', 1401), +(160820, 'Kassandra', 1997, 'F', 1398), +(160821, 'Jazmine', 1997, 'F', 1395), +(160822, 'Esmeralda', 1997, 'F', 1393), +(160823, 'Lillian', 1997, 'F', 1393), +(160824, 'Deja', 1997, 'F', 1391), +(160825, 'Ashlyn', 1997, 'F', 1367), +(160826, 'Tessa', 1997, 'F', 1358), +(160827, 'Julissa', 1997, 'F', 1355), +(160828, 'Lily', 1997, 'F', 1355), +(160829, 'Anne', 1997, 'F', 1344), +(160830, 'Deanna', 1997, 'F', 1344), +(160831, 'Daniela', 1997, 'F', 1340), +(160832, 'Allyson', 1997, 'F', 1335), +(160833, 'Payton', 1997, 'F', 1335), +(160834, 'Mckenna', 1997, 'F', 1330), +(160835, 'Brooklyn', 1997, 'F', 1328), +(160836, 'Amelia', 1997, 'F', 1316), +(160837, 'Yesenia', 1997, 'F', 1306), +(160838, 'Peyton', 1997, 'F', 1303), +(160839, 'Madeleine', 1997, 'F', 1300), +(160840, 'Ashlee', 1997, 'F', 1288), +(160841, 'Meagan', 1997, 'F', 1286), +(160842, 'Nina', 1997, 'F', 1283), +(160843, 'Bridget', 1997, 'F', 1281), +(160844, 'Katelynn', 1997, 'F', 1281), +(160845, 'Monique', 1997, 'F', 1272), +(160846, 'Kiara', 1997, 'F', 1263), +(160847, 'Celeste', 1997, 'F', 1251), +(160848, 'Tatiana', 1997, 'F', 1246), +(160849, 'Mercedes', 1997, 'F', 1244), +(160850, 'Katlyn', 1997, 'F', 1232), +(160851, 'Alissa', 1997, 'F', 1223), +(160852, 'Tabitha', 1997, 'F', 1217), +(160853, 'Serena', 1997, 'F', 1205), +(160854, 'Savanna', 1997, 'F', 1196), +(160855, 'Krystal', 1997, 'F', 1188), +(160856, 'Imani', 1997, 'F', 1185), +(160857, 'Sofia', 1997, 'F', 1183), +(160858, 'Dakota', 1997, 'F', 1175), +(160859, 'Isabelle', 1997, 'F', 1163), +(160860, 'Madelyn', 1997, 'F', 1160), +(160861, 'Priscilla', 1997, 'F', 1156), +(160862, 'Kylee', 1997, 'F', 1155), +(160863, 'Gina', 1997, 'F', 1150), +(160864, 'Genesis', 1997, 'F', 1148), +(160865, 'Aubrey', 1997, 'F', 1134), +(160866, 'Delaney', 1997, 'F', 1120), +(160867, 'Alexia', 1997, 'F', 1118), +(160868, 'Kyla', 1997, 'F', 1116), +(160869, 'Brandy', 1997, 'F', 1112), +(160870, 'Meredith', 1997, 'F', 1107), +(160871, 'Chelsey', 1997, 'F', 1099), +(160872, 'Ashleigh', 1997, 'F', 1097), +(160873, 'Linda', 1997, 'F', 1094), +(160874, 'Clarissa', 1997, 'F', 1090), +(160875, 'Sophie', 1997, 'F', 1081), +(160876, 'Angelina', 1997, 'F', 1078), +(160877, 'Krista', 1997, 'F', 1078), +(160878, 'Teresa', 1997, 'F', 1078), +(160879, 'Denise', 1997, 'F', 1074), +(160880, 'Carolina', 1997, 'F', 1073), +(160881, 'Mikaela', 1997, 'F', 1071), +(160882, 'Logan', 1997, 'F', 1067), +(160883, 'Sadie', 1997, 'F', 1067), +(160884, 'Carolyn', 1997, 'F', 1061), +(160885, 'Maggie', 1997, 'F', 1054), +(160886, 'Elise', 1997, 'F', 1045), +(160887, 'Shayla', 1997, 'F', 1041), +(160888, 'Alana', 1997, 'F', 1038), +(160889, 'Ruby', 1997, 'F', 1037), +(160890, 'Brenna', 1997, 'F', 1035), +(160891, 'Raquel', 1997, 'F', 1024), +(160892, 'Carmen', 1997, 'F', 1012), +(160893, 'Sidney', 1997, 'F', 1008), +(160894, 'Camille', 1997, 'F', 1005), +(160895, 'Colleen', 1997, 'F', 1003), +(160896, 'Makenzie', 1997, 'F', 994), +(160897, 'Alisha', 1997, 'F', 990), +(160898, 'Lacey', 1997, 'F', 988), +(160899, 'Tia', 1997, 'F', 984), +(160900, 'Justine', 1997, 'F', 982), +(160901, 'Marina', 1997, 'F', 980), +(160902, 'Ashton', 1997, 'F', 978), +(160903, 'Elena', 1997, 'F', 970), +(160904, 'Baylee', 1997, 'F', 968), +(160905, 'Valeria', 1997, 'F', 967), +(160906, 'Rosa', 1997, 'F', 966), +(160907, 'Julianna', 1997, 'F', 964), +(160908, 'Cecilia', 1997, 'F', 961), +(160909, 'Charlotte', 1997, 'F', 954), +(160910, 'Skylar', 1997, 'F', 953), +(160911, 'Tiara', 1997, 'F', 952), +(160912, 'Anastasia', 1997, 'F', 947), +(160913, 'Cristina', 1997, 'F', 946), +(160914, 'Destinee', 1997, 'F', 945), +(160915, 'Natalia', 1997, 'F', 945), +(160916, 'Kasey', 1997, 'F', 944), +(160917, 'Renee', 1997, 'F', 944), +(160918, 'Juliana', 1997, 'F', 941), +(160919, 'Avery', 1997, 'F', 937), +(160920, 'Giselle', 1997, 'F', 937), +(160921, 'Tiana', 1997, 'F', 937), +(160922, 'Miriam', 1997, 'F', 935), +(160923, 'Tamara', 1997, 'F', 933), +(160924, 'Callie', 1997, 'F', 926), +(160925, 'Cheyanne', 1997, 'F', 925), +(160926, 'Annie', 1997, 'F', 924), +(160927, 'Esther', 1997, 'F', 917), +(160928, 'Vivian', 1997, 'F', 907), +(160929, 'Wendy', 1997, 'F', 907), +(160930, 'Aliyah', 1997, 'F', 896), +(160931, 'Kate', 1997, 'F', 893), +(160932, 'Kira', 1997, 'F', 892), +(160933, 'Bryanna', 1997, 'F', 885), +(160934, 'Heidi', 1997, 'F', 885), +(160935, 'Jenny', 1997, 'F', 874), +(160936, 'Elisabeth', 1997, 'F', 864), +(160937, 'Gloria', 1997, 'F', 864), +(160938, 'Shania', 1997, 'F', 861), +(160939, 'Kelsie', 1997, 'F', 860), +(160940, 'Nadia', 1997, 'F', 857), +(160941, 'Ruth', 1997, 'F', 854), +(160942, 'Jacquelyn', 1997, 'F', 852), +(160943, 'Theresa', 1997, 'F', 852), +(160944, 'Cameron', 1997, 'F', 850), +(160945, 'Martha', 1997, 'F', 850), +(160946, 'Jessie', 1997, 'F', 846), +(160947, 'Emilee', 1997, 'F', 839), +(160948, 'Tyra', 1997, 'F', 837), +(160949, 'Kierra', 1997, 'F', 826), +(160950, 'Liliana', 1997, 'F', 820), +(160951, 'Cara', 1997, 'F', 817), +(160952, 'Helen', 1997, 'F', 813), +(160953, 'Marisol', 1997, 'F', 813), +(160954, 'Ellen', 1997, 'F', 810), +(160955, 'Felicia', 1997, 'F', 800), +(160956, 'Kali', 1997, 'F', 800), +(160957, 'Susan', 1997, 'F', 798), +(160958, 'Marie', 1997, 'F', 790), +(160959, 'Kailey', 1997, 'F', 789), +(160960, 'Mayra', 1997, 'F', 788), +(160961, 'Josephine', 1997, 'F', 783), +(160962, 'Macy', 1997, 'F', 780), +(160963, 'Haylee', 1997, 'F', 779), +(160964, 'Virginia', 1997, 'F', 776), +(160965, 'Jaclyn', 1997, 'F', 772), +(160966, 'Francesca', 1997, 'F', 771), +(160967, 'Gianna', 1997, 'F', 771), +(160968, 'Pamela', 1997, 'F', 768), +(160969, 'Eva', 1997, 'F', 765), +(160970, 'Kassidy', 1997, 'F', 765), +(160971, 'Tyler', 1997, 'F', 759), +(160972, 'Janet', 1997, 'F', 757), +(160973, 'Sharon', 1997, 'F', 756), +(160974, 'Kaitlynn', 1997, 'F', 754), +(160975, 'Josie', 1997, 'F', 752), +(160976, 'Carrie', 1997, 'F', 744), +(160977, 'Cassie', 1997, 'F', 738), +(160978, 'Melody', 1997, 'F', 736), +(160979, 'Hunter', 1997, 'F', 728), +(160980, 'Carla', 1997, 'F', 725), +(160981, 'Toni', 1997, 'F', 725), +(160982, 'Noelle', 1997, 'F', 723), +(160983, 'Ebony', 1997, 'F', 722), +(160984, 'Nia', 1997, 'F', 717), +(160985, 'Nichole', 1997, 'F', 714), +(160986, 'Harley', 1997, 'F', 700), +(160987, 'Lucy', 1997, 'F', 699), +(160988, 'Reagan', 1997, 'F', 695), +(160989, 'Carley', 1997, 'F', 694), +(160990, 'Kayleigh', 1997, 'F', 690), +(160991, 'Ivy', 1997, 'F', 687), +(160992, 'Yasmine', 1997, 'F', 684), +(160993, 'Barbara', 1997, 'F', 680), +(160994, 'Justice', 1997, 'F', 680), +(160995, 'Kelli', 1997, 'F', 670), +(160996, 'Arielle', 1997, 'F', 669), +(160997, 'Tierra', 1997, 'F', 669), +(160998, 'Tayler', 1997, 'F', 668), +(160999, 'Lorena', 1997, 'F', 666), +(161000, 'Rose', 1997, 'F', 666), +(161001, 'Mckayla', 1997, 'F', 665), +(161002, 'Allie', 1997, 'F', 664), +(161003, 'Carissa', 1997, 'F', 659), +(161004, 'Gillian', 1997, 'F', 659), +(161005, 'Talia', 1997, 'F', 659), +(161006, 'Paola', 1997, 'F', 655), +(161007, 'Janelle', 1997, 'F', 654), +(161008, 'Larissa', 1997, 'F', 654), +(161009, 'Taryn', 1997, 'F', 653), +(161010, 'Mariana', 1997, 'F', 650), +(161011, 'Jane', 1997, 'F', 648), +(161012, 'Sonia', 1997, 'F', 647), +(161013, 'Abbey', 1997, 'F', 645), +(161014, 'Clara', 1997, 'F', 643), +(161015, 'Bailee', 1997, 'F', 642), +(161016, 'Alaina', 1997, 'F', 640), +(161017, 'Aimee', 1997, 'F', 639), +(161018, 'Precious', 1997, 'F', 639), +(161019, 'Deborah', 1997, 'F', 637), +(161020, 'Daniella', 1997, 'F', 636), +(161021, 'Skyler', 1997, 'F', 634), +(161022, 'Alyson', 1997, 'F', 632), +(161023, 'Ann', 1997, 'F', 626), +(161024, 'Lesley', 1997, 'F', 626), +(161025, 'Breana', 1997, 'F', 625), +(161026, 'Candace', 1997, 'F', 625), +(161027, 'Rylee', 1997, 'F', 625), +(161028, 'Sasha', 1997, 'F', 624), +(161029, 'Christian', 1997, 'F', 623), +(161030, 'Britney', 1997, 'F', 621), +(161031, 'Johanna', 1997, 'F', 612), +(161032, 'Yulissa', 1997, 'F', 612), +(161033, 'Devin', 1997, 'F', 605), +(161034, 'India', 1997, 'F', 602), +(161035, 'Yasmin', 1997, 'F', 602), +(161036, 'Angelique', 1997, 'F', 601), +(161037, 'Makenna', 1997, 'F', 600), +(161038, 'Robin', 1997, 'F', 596), +(161039, 'Irene', 1997, 'F', 593), +(161040, 'Kaylin', 1997, 'F', 593), +(161041, 'Karissa', 1997, 'F', 588), +(161042, 'Kellie', 1997, 'F', 586), +(161043, 'Tatyana', 1997, 'F', 585), +(161044, 'Kiera', 1997, 'F', 584), +(161045, 'Devon', 1997, 'F', 583), +(161046, 'Kaila', 1997, 'F', 580), +(161047, 'Joy', 1997, 'F', 579), +(161048, 'Tamia', 1997, 'F', 579), +(161049, 'Alice', 1997, 'F', 578), +(161050, 'Haleigh', 1997, 'F', 576), +(161051, 'Regina', 1997, 'F', 576), +(161052, 'Darian', 1997, 'F', 572), +(161053, 'Bria', 1997, 'F', 571), +(161054, 'Eliza', 1997, 'F', 570), +(161055, 'Mireya', 1997, 'F', 567), +(161056, 'Marilyn', 1997, 'F', 566), +(161057, 'Nikki', 1997, 'F', 564), +(161058, 'Regan', 1997, 'F', 564), +(161059, 'Nora', 1997, 'F', 563), +(161060, 'Elisa', 1997, 'F', 562), +(161061, 'Madalyn', 1997, 'F', 562), +(161062, 'Skye', 1997, 'F', 557), +(161063, 'Keely', 1997, 'F', 555), +(161064, 'Shayna', 1997, 'F', 551), +(161065, 'Kiersten', 1997, 'F', 550), +(161066, 'Simone', 1997, 'F', 550), +(161067, 'Adrienne', 1997, 'F', 549), +(161068, 'Kourtney', 1997, 'F', 549), +(161069, 'Jayla', 1997, 'F', 544), +(161070, 'Leticia', 1997, 'F', 543), +(161071, 'Micaela', 1997, 'F', 542), +(161072, 'Kaleigh', 1997, 'F', 538), +(161073, 'Eleanor', 1997, 'F', 537), +(161074, 'Tianna', 1997, 'F', 536), +(161075, 'Janae', 1997, 'F', 535), +(161076, 'Ciera', 1997, 'F', 534), +(161077, 'Lexus', 1997, 'F', 534), +(161078, 'Alma', 1997, 'F', 533), +(161079, 'Brianne', 1997, 'F', 533), +(161080, 'Chasity', 1997, 'F', 532), +(161081, 'Stacy', 1997, 'F', 532), +(161082, 'Heaven', 1997, 'F', 531), +(161083, 'Addison', 1997, 'F', 530), +(161084, 'Frances', 1997, 'F', 530), +(161085, 'Alina', 1997, 'F', 528), +(161086, 'Emilie', 1997, 'F', 525), +(161087, 'Tania', 1997, 'F', 524), +(161088, 'Nicolette', 1997, 'F', 523), +(161089, 'Kaylie', 1997, 'F', 521), +(161090, 'Shyanne', 1997, 'F', 520), +(161091, 'Paulina', 1997, 'F', 519), +(161092, 'Sylvia', 1997, 'F', 516), +(161093, 'Ayanna', 1997, 'F', 515), +(161094, 'Antonia', 1997, 'F', 513), +(161095, 'Stacey', 1997, 'F', 510), +(161096, 'Kaley', 1997, 'F', 508), +(161097, 'Paula', 1997, 'F', 504), +(161098, 'Moriah', 1997, 'F', 503), +(161099, 'Maribel', 1997, 'F', 502), +(161100, 'Annika', 1997, 'F', 501), +(161101, 'Tina', 1997, 'F', 501), +(161102, 'Kelsi', 1997, 'F', 500), +(161103, 'Alanna', 1997, 'F', 499), +(161104, 'Maddison', 1997, 'F', 499), +(161105, 'Lauryn', 1997, 'F', 498), +(161106, 'Robyn', 1997, 'F', 498), +(161107, 'Savanah', 1997, 'F', 498), +(161108, 'Ella', 1997, 'F', 496), +(161109, 'Fatima', 1997, 'F', 494), +(161110, 'Carlie', 1997, 'F', 491), +(161111, 'Paris', 1997, 'F', 491), +(161112, 'Judith', 1997, 'F', 489), +(161113, 'Cristal', 1997, 'F', 484), +(161114, 'Iris', 1997, 'F', 481), +(161115, 'Perla', 1997, 'F', 480), +(161116, 'Hailee', 1997, 'F', 479), +(161117, 'Luz', 1997, 'F', 479), +(161118, 'Laurel', 1997, 'F', 474), +(161119, 'Ashlynn', 1997, 'F', 472), +(161120, 'Tanya', 1997, 'F', 472), +(161121, 'Maritza', 1997, 'F', 469), +(161122, 'Margarita', 1997, 'F', 468), +(161123, 'Charity', 1997, 'F', 464), +(161124, 'Shawna', 1997, 'F', 463), +(161125, 'Julianne', 1997, 'F', 462), +(161126, 'Kaylyn', 1997, 'F', 462), +(161127, 'Mariela', 1997, 'F', 462), +(161128, 'Melinda', 1997, 'F', 461), +(161129, 'Sage', 1997, 'F', 460), +(161130, 'Fiona', 1997, 'F', 459), +(161131, 'Montana', 1997, 'F', 458), +(161132, 'Leanna', 1997, 'F', 456), +(161133, 'Lizbeth', 1997, 'F', 454), +(161134, 'Kenya', 1997, 'F', 452), +(161135, 'Elaine', 1997, 'F', 451), +(161136, 'Carina', 1997, 'F', 449), +(161137, 'Georgia', 1997, 'F', 449), +(161138, 'Marlene', 1997, 'F', 448), +(161139, 'Tess', 1997, 'F', 448), +(161140, 'Meaghan', 1997, 'F', 447), +(161141, 'Blanca', 1997, 'F', 446), +(161142, 'Clare', 1997, 'F', 446), +(161143, 'Hallie', 1997, 'F', 445), +(161144, 'Celine', 1997, 'F', 443), +(161145, 'Lena', 1997, 'F', 443), +(161146, 'Tiffani', 1997, 'F', 442), +(161147, 'Aileen', 1997, 'F', 441), +(161148, 'Halie', 1997, 'F', 441), +(161149, 'Thalia', 1997, 'F', 441), +(161150, 'Essence', 1997, 'F', 440), +(161151, 'Casandra', 1997, 'F', 436), +(161152, 'Trinity', 1997, 'F', 436), +(161153, 'Candice', 1997, 'F', 431), +(161154, 'Tatum', 1997, 'F', 430), +(161155, 'Aurora', 1997, 'F', 429), +(161156, 'Ellie', 1997, 'F', 429), +(161157, 'Edith', 1997, 'F', 428), +(161158, 'Noemi', 1997, 'F', 428), +(161159, 'Viviana', 1997, 'F', 428), +(161160, 'Alexandrea', 1997, 'F', 424), +(161161, 'Donna', 1997, 'F', 422), +(161162, 'Jaime', 1997, 'F', 422), +(161163, 'Cayla', 1997, 'F', 420), +(161164, 'Miracle', 1997, 'F', 420), +(161165, 'Chantel', 1997, 'F', 419), +(161166, 'Genevieve', 1997, 'F', 419), +(161167, 'Phoebe', 1997, 'F', 419), +(161168, 'Mollie', 1997, 'F', 418), +(161169, 'Christa', 1997, 'F', 417), +(161170, 'Kiley', 1997, 'F', 417), +(161171, 'Lyndsey', 1997, 'F', 417), +(161172, 'Maranda', 1997, 'F', 417), +(161173, 'Chandler', 1997, 'F', 416), +(161174, 'Karli', 1997, 'F', 416), +(161175, 'Reyna', 1997, 'F', 413), +(161176, 'Mara', 1997, 'F', 412), +(161177, 'Randi', 1997, 'F', 412), +(161178, 'Kari', 1997, 'F', 408), +(161179, 'Katharine', 1997, 'F', 407), +(161180, 'Zoey', 1997, 'F', 407), +(161181, 'Anita', 1997, 'F', 406), +(161182, 'Katelin', 1997, 'F', 405), +(161183, 'Christy', 1997, 'F', 403), +(161184, 'Ericka', 1997, 'F', 403), +(161185, 'Shaina', 1997, 'F', 403), +(161186, 'Kailee', 1997, 'F', 401), +(161187, 'Lesly', 1997, 'F', 401), +(161188, 'Cortney', 1997, 'F', 400), +(161189, 'Darby', 1997, 'F', 400), +(161190, 'Desirae', 1997, 'F', 400), +(161191, 'Nikita', 1997, 'F', 398), +(161192, 'Yvette', 1997, 'F', 398), +(161193, 'Chelsie', 1997, 'F', 397), +(161194, 'Jailene', 1997, 'F', 397), +(161195, 'Aspen', 1997, 'F', 396), +(161196, 'Kacie', 1997, 'F', 391), +(161197, 'Karlee', 1997, 'F', 391), +(161198, 'Jeanette', 1997, 'F', 389), +(161199, 'Kathy', 1997, 'F', 389), +(161200, 'Alisa', 1997, 'F', 387), +(161201, 'Abbie', 1997, 'F', 386), +(161202, 'Jocelyne', 1997, 'F', 386), +(161203, 'Brooklynn', 1997, 'F', 384), +(161204, 'Shakira', 1997, 'F', 382), +(161205, 'Chanel', 1997, 'F', 378), +(161206, 'Destiney', 1997, 'F', 378), +(161207, 'Lucia', 1997, 'F', 378), +(161208, 'Carlee', 1997, 'F', 377), +(161209, 'Eileen', 1997, 'F', 377), +(161210, 'Lyric', 1997, 'F', 377), +(161211, 'Sarai', 1997, 'F', 377); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(161212, 'Anahi', 1997, 'F', 375), +(161213, 'Tracy', 1997, 'F', 375), +(161214, 'Araceli', 1997, 'F', 374), +(161215, 'Carol', 1997, 'F', 374), +(161216, 'Diane', 1997, 'F', 373), +(161217, 'Kristine', 1997, 'F', 373), +(161218, 'Halle', 1997, 'F', 372), +(161219, 'Katarina', 1997, 'F', 371), +(161220, 'Lexi', 1997, 'F', 371), +(161221, 'Micah', 1997, 'F', 370), +(161222, 'Destini', 1997, 'F', 368), +(161223, 'Lea', 1997, 'F', 367), +(161224, 'Kianna', 1997, 'F', 366), +(161225, 'Juliet', 1997, 'F', 365), +(161226, 'Ava', 1997, 'F', 362), +(161227, 'Sandy', 1997, 'F', 361), +(161228, 'Beatriz', 1997, 'F', 360), +(161229, 'Celia', 1997, 'F', 360), +(161230, 'Maura', 1997, 'F', 360), +(161231, 'Reilly', 1997, 'F', 360), +(161232, 'Ryan', 1997, 'F', 360), +(161233, 'Karlie', 1997, 'F', 359), +(161234, 'Brittani', 1997, 'F', 358), +(161235, 'Susana', 1997, 'F', 358), +(161236, 'Yvonne', 1997, 'F', 358), +(161237, 'Selina', 1997, 'F', 357), +(161238, 'Karly', 1997, 'F', 355), +(161239, 'Norma', 1997, 'F', 355), +(161240, 'Stephany', 1997, 'F', 355), +(161241, 'Celina', 1997, 'F', 354), +(161242, 'Yolanda', 1997, 'F', 354), +(161243, 'Aisha', 1997, 'F', 353), +(161244, 'Angie', 1997, 'F', 352), +(161245, 'Eden', 1997, 'F', 351), +(161246, 'Trisha', 1997, 'F', 351), +(161247, 'Corinne', 1997, 'F', 348), +(161248, 'Aylin', 1997, 'F', 347), +(161249, 'Yadira', 1997, 'F', 347), +(161250, 'Bonnie', 1997, 'F', 346), +(161251, 'Kasandra', 1997, 'F', 346), +(161252, 'Rhiannon', 1997, 'F', 346), +(161253, 'Sydnee', 1997, 'F', 346), +(161254, 'Dallas', 1997, 'F', 343), +(161255, 'Alayna', 1997, 'F', 342), +(161256, 'Zaria', 1997, 'F', 341), +(161257, 'Brielle', 1997, 'F', 340), +(161258, 'Jaqueline', 1997, 'F', 340), +(161259, 'Sienna', 1997, 'F', 339), +(161260, 'Kristy', 1997, 'F', 338), +(161261, 'Rachelle', 1997, 'F', 338), +(161262, 'Anissa', 1997, 'F', 337), +(161263, 'Rosemary', 1997, 'F', 337), +(161264, 'Sally', 1997, 'F', 337), +(161265, 'Kaela', 1997, 'F', 334), +(161266, 'Loren', 1997, 'F', 334), +(161267, 'Nathalie', 1997, 'F', 334), +(161268, 'Maegan', 1997, 'F', 333), +(161269, 'Shirley', 1997, 'F', 333), +(161270, 'Emely', 1997, 'F', 331), +(161271, 'Joyce', 1997, 'F', 331), +(161272, 'Lilly', 1997, 'F', 331), +(161273, 'Jewel', 1997, 'F', 330), +(161274, 'Stefanie', 1997, 'F', 328), +(161275, 'Maia', 1997, 'F', 327), +(161276, 'Dulce', 1997, 'F', 326), +(161277, 'Cora', 1997, 'F', 325), +(161278, 'Misty', 1997, 'F', 325), +(161279, 'Carli', 1997, 'F', 324), +(161280, 'Michele', 1997, 'F', 324), +(161281, 'Rocio', 1997, 'F', 323), +(161282, 'Alex', 1997, 'F', 322), +(161283, 'Amari', 1997, 'F', 322), +(161284, 'Breanne', 1997, 'F', 320), +(161285, 'Juliette', 1997, 'F', 320), +(161286, 'Kristi', 1997, 'F', 320), +(161287, 'Antoinette', 1997, 'F', 318), +(161288, 'Arlene', 1997, 'F', 318), +(161289, 'Dawn', 1997, 'F', 318), +(161290, 'Athena', 1997, 'F', 316), +(161291, 'Esperanza', 1997, 'F', 316), +(161292, 'Kaelyn', 1997, 'F', 316), +(161293, 'Dasia', 1997, 'F', 315), +(161294, 'Jill', 1997, 'F', 315), +(161295, 'Juanita', 1997, 'F', 315), +(161296, 'Leann', 1997, 'F', 315), +(161297, 'Bridgette', 1997, 'F', 314), +(161298, 'Dorothy', 1997, 'F', 313), +(161299, 'Gwendolyn', 1997, 'F', 311), +(161300, 'Janice', 1997, 'F', 311), +(161301, 'Abbigail', 1997, 'F', 310), +(161302, 'Helena', 1997, 'F', 310), +(161303, 'Katlin', 1997, 'F', 310), +(161304, 'Macey', 1997, 'F', 310), +(161305, 'Macie', 1997, 'F', 310), +(161306, 'Shea', 1997, 'F', 309), +(161307, 'Sheila', 1997, 'F', 309), +(161308, 'Aleah', 1997, 'F', 308), +(161309, 'Malia', 1997, 'F', 308), +(161310, 'Charlene', 1997, 'F', 307), +(161311, 'Jazlyn', 1997, 'F', 307), +(161312, 'Kailyn', 1997, 'F', 306), +(161313, 'Blair', 1997, 'F', 304), +(161314, 'Janessa', 1997, 'F', 304), +(161315, 'Lori', 1997, 'F', 304), +(161316, 'Ali', 1997, 'F', 303), +(161317, 'Elaina', 1997, 'F', 303), +(161318, 'Isis', 1997, 'F', 303), +(161319, 'Jacklyn', 1997, 'F', 303), +(161320, 'Myranda', 1997, 'F', 303), +(161321, 'Shyann', 1997, 'F', 303), +(161322, 'Starr', 1997, 'F', 302), +(161323, 'Itzel', 1997, 'F', 301), +(161324, 'Mikala', 1997, 'F', 301), +(161325, 'Elissa', 1997, 'F', 300), +(161326, 'Lexie', 1997, 'F', 300), +(161327, 'Madyson', 1997, 'F', 300), +(161328, 'Jenifer', 1997, 'F', 299), +(161329, 'Hana', 1997, 'F', 297), +(161330, 'Sonya', 1997, 'F', 297), +(161331, 'Kelley', 1997, 'F', 296), +(161332, 'Yasmeen', 1997, 'F', 296), +(161333, 'Hillary', 1997, 'F', 294), +(161334, 'Allyssa', 1997, 'F', 293), +(161335, 'Shelbie', 1997, 'F', 293), +(161336, 'Bryana', 1997, 'F', 292), +(161337, 'Jazmyn', 1997, 'F', 292), +(161338, 'Julisa', 1997, 'F', 292), +(161339, 'Kelsea', 1997, 'F', 292), +(161340, 'Leanne', 1997, 'F', 292), +(161341, 'Tanisha', 1997, 'F', 292), +(161342, 'Salma', 1997, 'F', 291), +(161343, 'Annette', 1997, 'F', 290), +(161344, 'Kaylynn', 1997, 'F', 290), +(161345, 'Demi', 1997, 'F', 289), +(161346, 'Lizette', 1997, 'F', 289), +(161347, 'Shauna', 1997, 'F', 289), +(161348, 'Chyna', 1997, 'F', 288), +(161349, 'Dalia', 1997, 'F', 288), +(161350, 'Magdalena', 1997, 'F', 288), +(161351, 'Rebeca', 1997, 'F', 288), +(161352, 'Brook', 1997, 'F', 287), +(161353, 'Graciela', 1997, 'F', 287), +(161354, 'Christiana', 1997, 'F', 286), +(161355, 'Lisette', 1997, 'F', 286), +(161356, 'Nataly', 1997, 'F', 285), +(161357, 'Sydnie', 1997, 'F', 285), +(161358, 'Alycia', 1997, 'F', 284), +(161359, 'Madisyn', 1997, 'F', 284), +(161360, 'Gretchen', 1997, 'F', 283), +(161361, 'Kerri', 1997, 'F', 283), +(161362, 'Yessenia', 1997, 'F', 283), +(161363, 'Kori', 1997, 'F', 281), +(161364, 'Shianne', 1997, 'F', 280), +(161365, 'Erykah', 1997, 'F', 279), +(161366, 'Katy', 1997, 'F', 279), +(161367, 'Anika', 1997, 'F', 278), +(161368, 'Devyn', 1997, 'F', 278), +(161369, 'Gisselle', 1997, 'F', 278), +(161370, 'Lacy', 1997, 'F', 277), +(161371, 'Shana', 1997, 'F', 277), +(161372, 'Shelbi', 1997, 'F', 276), +(161373, 'Leilani', 1997, 'F', 275), +(161374, 'Xena', 1997, 'F', 275), +(161375, 'Alize', 1997, 'F', 274), +(161376, 'Alysa', 1997, 'F', 274), +(161377, 'Alessandra', 1997, 'F', 273), +(161378, 'Kallie', 1997, 'F', 273), +(161379, 'Tasha', 1997, 'F', 273), +(161380, 'Kerry', 1997, 'F', 272), +(161381, 'Kacey', 1997, 'F', 271), +(161382, 'Suzanne', 1997, 'F', 271), +(161383, 'Jena', 1997, 'F', 270), +(161384, 'Alysha', 1997, 'F', 268), +(161385, 'Brionna', 1997, 'F', 268), +(161386, 'Fabiola', 1997, 'F', 268), +(161387, 'Joselyn', 1997, 'F', 268), +(161388, 'Alysia', 1997, 'F', 267), +(161389, 'Ashanti', 1997, 'F', 267), +(161390, 'Eliana', 1997, 'F', 267), +(161391, 'Roxanne', 1997, 'F', 266), +(161392, 'Sarina', 1997, 'F', 266), +(161393, 'Kalyn', 1997, 'F', 265), +(161394, 'Keri', 1997, 'F', 265), +(161395, 'Bobbie', 1997, 'F', 264), +(161396, 'Gabriel', 1997, 'F', 264), +(161397, 'Kyleigh', 1997, 'F', 264), +(161398, 'Noel', 1997, 'F', 264), +(161399, 'Rochelle', 1997, 'F', 264), +(161400, 'Jesse', 1997, 'F', 263), +(161401, 'Giovanna', 1997, 'F', 262), +(161402, 'Raegan', 1997, 'F', 262), +(161403, 'Marianna', 1997, 'F', 261), +(161404, 'Tea', 1997, 'F', 261), +(161405, 'Alena', 1997, 'F', 260), +(161406, 'Alivia', 1997, 'F', 260), +(161407, 'Ashlie', 1997, 'F', 260), +(161408, 'Breonna', 1997, 'F', 260), +(161409, 'Silvia', 1997, 'F', 260), +(161410, 'Kayley', 1997, 'F', 259), +(161411, 'Keisha', 1997, 'F', 259), +(161412, 'Daija', 1997, 'F', 258), +(161413, 'Daisha', 1997, 'F', 258), +(161414, 'Jodi', 1997, 'F', 258), +(161415, 'Melina', 1997, 'F', 258), +(161416, 'Estrella', 1997, 'F', 257), +(161417, 'Karley', 1997, 'F', 257), +(161418, 'Jayda', 1997, 'F', 256), +(161419, 'Mariam', 1997, 'F', 256), +(161420, 'Kaci', 1997, 'F', 255), +(161421, 'Nadine', 1997, 'F', 255), +(161422, 'Haylie', 1997, 'F', 254), +(161423, 'Kenzie', 1997, 'F', 254), +(161424, 'Kirstin', 1997, 'F', 254), +(161425, 'Corina', 1997, 'F', 253), +(161426, 'Sydni', 1997, 'F', 253), +(161427, 'Unique', 1997, 'F', 253), +(161428, 'Amani', 1997, 'F', 252), +(161429, 'Joelle', 1997, 'F', 252), +(161430, 'Shanice', 1997, 'F', 252), +(161431, 'Tamera', 1997, 'F', 252), +(161432, 'Ayana', 1997, 'F', 251), +(161433, 'Carson', 1997, 'F', 251), +(161434, 'Madisen', 1997, 'F', 251), +(161435, 'Tristan', 1997, 'F', 251), +(161436, 'Dayna', 1997, 'F', 250), +(161437, 'Drew', 1997, 'F', 250), +(161438, 'Darlene', 1997, 'F', 249), +(161439, 'Gladys', 1997, 'F', 249), +(161440, 'Liana', 1997, 'F', 249), +(161441, 'Octavia', 1997, 'F', 249), +(161442, 'Beverly', 1997, 'F', 248), +(161443, 'Elyse', 1997, 'F', 248), +(161444, 'Christen', 1997, 'F', 247), +(161445, 'Dianna', 1997, 'F', 247), +(161446, 'Joanne', 1997, 'F', 247), +(161447, 'Katlynn', 1997, 'F', 246), +(161448, 'Monika', 1997, 'F', 246), +(161449, 'Rylie', 1997, 'F', 246), +(161450, 'Vanesa', 1997, 'F', 246), +(161451, 'Daphne', 1997, 'F', 244), +(161452, 'Elyssa', 1997, 'F', 244), +(161453, 'Ashly', 1997, 'F', 243), +(161454, 'Domonique', 1997, 'F', 242), +(161455, 'Lara', 1997, 'F', 242), +(161456, 'Annabelle', 1997, 'F', 241), +(161457, 'Breann', 1997, 'F', 240), +(161458, 'Camryn', 1997, 'F', 240), +(161459, 'Makala', 1997, 'F', 240), +(161460, 'Mandy', 1997, 'F', 240), +(161461, 'Rita', 1997, 'F', 240), +(161462, 'Princess', 1997, 'F', 239), +(161463, 'Sade', 1997, 'F', 239), +(161464, 'Taya', 1997, 'F', 239), +(161465, 'Beth', 1997, 'F', 238), +(161466, 'Janie', 1997, 'F', 238), +(161467, 'Shanna', 1997, 'F', 238), +(161468, 'Shantel', 1997, 'F', 237), +(161469, 'Tammy', 1997, 'F', 237), +(161470, 'Berenice', 1997, 'F', 236), +(161471, 'Emilia', 1997, 'F', 236), +(161472, 'Ingrid', 1997, 'F', 236), +(161473, 'Kaylah', 1997, 'F', 236), +(161474, 'Lucero', 1997, 'F', 236), +(161475, 'Baby', 1997, 'F', 235), +(161476, 'Eryn', 1997, 'F', 235), +(161477, 'Kaycee', 1997, 'F', 235), +(161478, 'Nayeli', 1997, 'F', 235), +(161479, 'Ansley', 1997, 'F', 234), +(161480, 'Kayli', 1997, 'F', 234), +(161481, 'Damaris', 1997, 'F', 233), +(161482, 'Cecelia', 1997, 'F', 232), +(161483, 'Delia', 1997, 'F', 232), +(161484, 'Camila', 1997, 'F', 231), +(161485, 'Kaylan', 1997, 'F', 231), +(161486, 'Melisa', 1997, 'F', 231), +(161487, 'Valentina', 1997, 'F', 231), +(161488, 'Adrian', 1997, 'F', 230), +(161489, 'Hollie', 1997, 'F', 230), +(161490, 'Jana', 1997, 'F', 230), +(161491, 'Justina', 1997, 'F', 230), +(161492, 'Chase', 1997, 'F', 229), +(161493, 'Scarlett', 1997, 'F', 229), +(161494, 'Tristen', 1997, 'F', 229), +(161495, 'Caitlynn', 1997, 'F', 228), +(161496, 'Mattie', 1997, 'F', 228), +(161497, 'Catalina', 1997, 'F', 227), +(161498, 'Estefania', 1997, 'F', 227), +(161499, 'Aubree', 1997, 'F', 226), +(161500, 'Bobbi', 1997, 'F', 226), +(161501, 'Marley', 1997, 'F', 226), +(161502, 'Annalise', 1997, 'F', 225), +(161503, 'Delilah', 1997, 'F', 225), +(161504, 'Jacey', 1997, 'F', 225), +(161505, 'Jessika', 1997, 'F', 225), +(161506, 'China', 1997, 'F', 224), +(161507, 'Odalis', 1997, 'F', 224), +(161508, 'Patience', 1997, 'F', 224), +(161509, 'Alia', 1997, 'F', 223), +(161510, 'Jazmyne', 1997, 'F', 223), +(161511, 'Keeley', 1997, 'F', 223), +(161512, 'Marcella', 1997, 'F', 223), +(161513, 'Christie', 1997, 'F', 222), +(161514, 'Tonya', 1997, 'F', 222), +(161515, 'Annamarie', 1997, 'F', 221), +(161516, 'Chaya', 1997, 'F', 221), +(161517, 'Gracie', 1997, 'F', 221), +(161518, 'Star', 1997, 'F', 221), +(161519, 'Chantal', 1997, 'F', 220), +(161520, 'Constance', 1997, 'F', 220), +(161521, 'Janette', 1997, 'F', 220), +(161522, 'Jayme', 1997, 'F', 219), +(161523, 'Cydney', 1997, 'F', 218), +(161524, 'Harmony', 1997, 'F', 218), +(161525, 'Lia', 1997, 'F', 218), +(161526, 'Martina', 1997, 'F', 218), +(161527, 'Sheridan', 1997, 'F', 218), +(161528, 'Jennie', 1997, 'F', 217), +(161529, 'Mindy', 1997, 'F', 216), +(161530, 'Paloma', 1997, 'F', 216), +(161531, 'Shaylee', 1997, 'F', 216), +(161532, 'Savana', 1997, 'F', 215), +(161533, 'Stevie', 1997, 'F', 215), +(161534, 'Armani', 1997, 'F', 214), +(161535, 'Daria', 1997, 'F', 214), +(161536, 'Judy', 1997, 'F', 214), +(161537, 'Kristian', 1997, 'F', 214), +(161538, 'Billie', 1997, 'F', 213), +(161539, 'Connie', 1997, 'F', 213), +(161540, 'Debra', 1997, 'F', 213), +(161541, 'Emerald', 1997, 'F', 213), +(161542, 'Kenia', 1997, 'F', 213), +(161543, 'Kortney', 1997, 'F', 213), +(161544, 'Leila', 1997, 'F', 213), +(161545, 'Lilian', 1997, 'F', 213), +(161546, 'Maureen', 1997, 'F', 213), +(161547, 'Reina', 1997, 'F', 213), +(161548, 'Chana', 1997, 'F', 212), +(161549, 'Iliana', 1997, 'F', 212), +(161550, 'Moesha', 1997, 'F', 212), +(161551, 'Annmarie', 1997, 'F', 211), +(161552, 'Lourdes', 1997, 'F', 211), +(161553, 'Madelynn', 1997, 'F', 211), +(161554, 'Audra', 1997, 'F', 210), +(161555, 'Kendal', 1997, 'F', 210), +(161556, 'Kala', 1997, 'F', 209), +(161557, 'Maricela', 1997, 'F', 209), +(161558, 'Tatianna', 1997, 'F', 209), +(161559, 'Micayla', 1997, 'F', 208), +(161560, 'Blake', 1997, 'F', 207), +(161561, 'Ivana', 1997, 'F', 207), +(161562, 'Jami', 1997, 'F', 207), +(161563, 'Maeve', 1997, 'F', 207), +(161564, 'Aja', 1997, 'F', 206), +(161565, 'Ciarra', 1997, 'F', 206), +(161566, 'Jasmyn', 1997, 'F', 206), +(161567, 'Juana', 1997, 'F', 206), +(161568, 'Kalie', 1997, 'F', 206), +(161569, 'Lacie', 1997, 'F', 206), +(161570, 'Nautica', 1997, 'F', 206), +(161571, 'Quinn', 1997, 'F', 206), +(161572, 'Asha', 1997, 'F', 205), +(161573, 'Destany', 1997, 'F', 205), +(161574, 'Ryann', 1997, 'F', 205), +(161575, 'Dayana', 1997, 'F', 204), +(161576, 'Hali', 1997, 'F', 204), +(161577, 'Janay', 1997, 'F', 204), +(161578, 'Tabatha', 1997, 'F', 202), +(161579, 'Cali', 1997, 'F', 201), +(161580, 'Jaden', 1997, 'F', 201), +(161581, 'Marlena', 1997, 'F', 201), +(161582, 'Myra', 1997, 'F', 201), +(161583, 'Pauline', 1997, 'F', 201), +(161584, 'Devan', 1997, 'F', 200), +(161585, 'Dina', 1997, 'F', 200), +(161586, 'Katerina', 1997, 'F', 200), +(161587, 'Serenity', 1997, 'F', 200), +(161588, 'Terri', 1997, 'F', 200), +(161589, 'Ayla', 1997, 'F', 199), +(161590, 'Elisha', 1997, 'F', 199), +(161591, 'Lexis', 1997, 'F', 199), +(161592, 'Susanna', 1997, 'F', 199), +(161593, 'Alyssia', 1997, 'F', 198), +(161594, 'Khadijah', 1997, 'F', 198), +(161595, 'Yazmin', 1997, 'F', 198), +(161596, 'Yulisa', 1997, 'F', 198), +(161597, 'Baylie', 1997, 'F', 197), +(161598, 'Cheryl', 1997, 'F', 197), +(161599, 'Racheal', 1997, 'F', 197), +(161600, 'Samara', 1997, 'F', 197), +(161601, 'Elsa', 1997, 'F', 196), +(161602, 'Marisela', 1997, 'F', 196), +(161603, 'Mya', 1997, 'F', 196), +(161604, 'Odalys', 1997, 'F', 196), +(161605, 'Krysta', 1997, 'F', 195), +(161606, 'Leandra', 1997, 'F', 195), +(161607, 'Stormy', 1997, 'F', 195), +(161608, 'Alecia', 1997, 'F', 194), +(161609, 'Cori', 1997, 'F', 194), +(161610, 'Denisse', 1997, 'F', 194), +(161611, 'Kamryn', 1997, 'F', 194), +(161612, 'Jackie', 1997, 'F', 193), +(161613, 'Katia', 1997, 'F', 193), +(161614, 'Kia', 1997, 'F', 193), +(161615, 'Hazel', 1997, 'F', 192), +(161616, 'Astrid', 1997, 'F', 191), +(161617, 'Daja', 1997, 'F', 191), +(161618, 'Leigh', 1997, 'F', 191), +(161619, 'Maci', 1997, 'F', 191), +(161620, 'Yajaira', 1997, 'F', 191), +(161621, 'Lilia', 1997, 'F', 190), +(161622, 'Reanna', 1997, 'F', 190), +(161623, 'Shae', 1997, 'F', 190), +(161624, 'Stella', 1997, 'F', 190), +(161625, 'Ashli', 1997, 'F', 189), +(161626, 'Betty', 1997, 'F', 189), +(161627, 'Layla', 1997, 'F', 189), +(161628, 'Lina', 1997, 'F', 189), +(161629, 'Tayla', 1997, 'F', 189), +(161630, 'Fallon', 1997, 'F', 188), +(161631, 'Jensen', 1997, 'F', 188), +(161632, 'Kristyn', 1997, 'F', 188), +(161633, 'London', 1997, 'F', 188), +(161634, 'Zhane', 1997, 'F', 188), +(161635, 'Ivette', 1997, 'F', 187), +(161636, 'Lillie', 1997, 'F', 187), +(161637, 'Shyla', 1997, 'F', 187), +(161638, 'Alexys', 1997, 'F', 186), +(161639, 'Emani', 1997, 'F', 186), +(161640, 'Jaycee', 1997, 'F', 186), +(161641, 'Keara', 1997, 'F', 186), +(161642, 'Roxana', 1997, 'F', 186), +(161643, 'Jessenia', 1997, 'F', 185), +(161644, 'Abigayle', 1997, 'F', 184), +(161645, 'Ally', 1997, 'F', 184), +(161646, 'Kristie', 1997, 'F', 184), +(161647, 'Amira', 1997, 'F', 183), +(161648, 'Belen', 1997, 'F', 183), +(161649, 'Brittanie', 1997, 'F', 183), +(161650, 'Dylan', 1997, 'F', 183), +(161651, 'Emmalee', 1997, 'F', 183), +(161652, 'Flor', 1997, 'F', 183), +(161653, 'Geneva', 1997, 'F', 183), +(161654, 'Keanna', 1997, 'F', 183), +(161655, 'Raina', 1997, 'F', 183), +(161656, 'Violet', 1997, 'F', 183), +(161657, 'Beatrice', 1997, 'F', 182), +(161658, 'Brandie', 1997, 'F', 182), +(161659, 'Hayden', 1997, 'F', 182), +(161660, 'Maxine', 1997, 'F', 182), +(161661, 'Abagail', 1997, 'F', 181), +(161662, 'Kinsey', 1997, 'F', 181), +(161663, 'Lynn', 1997, 'F', 181), +(161664, 'Nakia', 1997, 'F', 181), +(161665, 'Tiarra', 1997, 'F', 181), +(161666, 'Aubrie', 1997, 'F', 180), +(161667, 'Griselda', 1997, 'F', 180), +(161668, 'Cherish', 1997, 'F', 179), +(161669, 'Jayden', 1997, 'F', 179), +(161670, 'Lana', 1997, 'F', 179), +(161671, 'Patrice', 1997, 'F', 179), +(161672, 'Piper', 1997, 'F', 179), +(161673, 'Eunice', 1997, 'F', 178), +(161674, 'Jackeline', 1997, 'F', 178), +(161675, 'Joslyn', 1997, 'F', 178), +(161676, 'Laken', 1997, 'F', 178), +(161677, 'Madilyn', 1997, 'F', 178), +(161678, 'Rayna', 1997, 'F', 178), +(161679, 'Mina', 1997, 'F', 177), +(161680, 'Sky', 1997, 'F', 177), +(161681, 'Winter', 1997, 'F', 177), +(161682, 'Jasmyne', 1997, 'F', 175), +(161683, 'Kaytlin', 1997, 'F', 175), +(161684, 'Monet', 1997, 'F', 175), +(161685, 'Symone', 1997, 'F', 175), +(161686, 'Terra', 1997, 'F', 175), +(161687, 'Cinthia', 1997, 'F', 174), +(161688, 'Danica', 1997, 'F', 174), +(161689, 'Jessi', 1997, 'F', 174), +(161690, 'Kameron', 1997, 'F', 174), +(161691, 'Leeann', 1997, 'F', 174), +(161692, 'Marlee', 1997, 'F', 174), +(161693, 'Sommer', 1997, 'F', 174), +(161694, 'Amina', 1997, 'F', 173), +(161695, 'Belinda', 1997, 'F', 173), +(161696, 'Coral', 1997, 'F', 173), +(161697, 'Nyasia', 1997, 'F', 173), +(161698, 'Presley', 1997, 'F', 173), +(161699, 'Arely', 1997, 'F', 172), +(161700, 'Dejah', 1997, 'F', 172), +(161701, 'Denisha', 1997, 'F', 172), +(161702, 'Irma', 1997, 'F', 172), +(161703, 'Joann', 1997, 'F', 172), +(161704, 'Alesha', 1997, 'F', 171), +(161705, 'Annemarie', 1997, 'F', 171), +(161706, 'Betsy', 1997, 'F', 171), +(161707, 'Eboni', 1997, 'F', 171), +(161708, 'Jaida', 1997, 'F', 171), +(161709, 'Jayde', 1997, 'F', 171), +(161710, 'Kathrine', 1997, 'F', 171), +(161711, 'Kenna', 1997, 'F', 171), +(161712, 'Nikole', 1997, 'F', 171), +(161713, 'Amaris', 1997, 'F', 170), +(161714, 'Deasia', 1997, 'F', 170), +(161715, 'Tyanna', 1997, 'F', 170), +(161716, 'Abigale', 1997, 'F', 169), +(161717, 'Amara', 1997, 'F', 169), +(161718, 'Dania', 1997, 'F', 169), +(161719, 'Deana', 1997, 'F', 169), +(161720, 'Deandra', 1997, 'F', 169), +(161721, 'Dora', 1997, 'F', 169), +(161722, 'Infant', 1997, 'F', 169), +(161723, 'Luisa', 1997, 'F', 169), +(161724, 'Willow', 1997, 'F', 169), +(161725, 'Anais', 1997, 'F', 168), +(161726, 'Joana', 1997, 'F', 168), +(161727, 'Mari', 1997, 'F', 168), +(161728, 'Brynn', 1997, 'F', 167), +(161729, 'Christin', 1997, 'F', 167), +(161730, 'Elexis', 1997, 'F', 167), +(161731, 'Estefany', 1997, 'F', 167), +(161732, 'Haven', 1997, 'F', 167), +(161733, 'Iesha', 1997, 'F', 167), +(161734, 'Jalisa', 1997, 'F', 167), +(161735, 'Kassie', 1997, 'F', 167), +(161736, 'Rowan', 1997, 'F', 167), +(161737, 'Tyesha', 1997, 'F', 167), +(161738, 'Kristal', 1997, 'F', 166), +(161739, 'Sherry', 1997, 'F', 166), +(161740, 'Brieanna', 1997, 'F', 165), +(161741, 'Camilla', 1997, 'F', 165), +(161742, 'Fernanda', 1997, 'F', 165), +(161743, 'Rosario', 1997, 'F', 165), +(161744, 'Shelly', 1997, 'F', 165), +(161745, 'Stacie', 1997, 'F', 165), +(161746, 'Trista', 1997, 'F', 165), +(161747, 'Anabel', 1997, 'F', 164), +(161748, 'Jaelyn', 1997, 'F', 164), +(161749, 'Katheryn', 1997, 'F', 164), +(161750, 'Keira', 1997, 'F', 164), +(161751, 'Lissette', 1997, 'F', 164), +(161752, 'Lizeth', 1997, 'F', 164), +(161753, 'Kimberley', 1997, 'F', 163), +(161754, 'Mirella', 1997, 'F', 163), +(161755, 'Olga', 1997, 'F', 163), +(161756, 'Aliya', 1997, 'F', 162), +(161757, 'Tasia', 1997, 'F', 162), +(161758, 'Adeline', 1997, 'F', 161), +(161759, 'Eve', 1997, 'F', 161), +(161760, 'Greta', 1997, 'F', 161), +(161761, 'Jaycie', 1997, 'F', 161), +(161762, 'Kalee', 1997, 'F', 161), +(161763, 'Amie', 1997, 'F', 160), +(161764, 'Anjelica', 1997, 'F', 160), +(161765, 'Jolene', 1997, 'F', 160), +(161766, 'Kennedi', 1997, 'F', 160), +(161767, 'Marian', 1997, 'F', 160), +(161768, 'Sarahi', 1997, 'F', 160), +(161769, 'Serina', 1997, 'F', 160), +(161770, 'Tracey', 1997, 'F', 160), +(161771, 'Keila', 1997, 'F', 159), +(161772, 'Mariel', 1997, 'F', 159), +(161773, 'Bernadette', 1997, 'F', 158), +(161774, 'Lorraine', 1997, 'F', 158), +(161775, 'Rikki', 1997, 'F', 158), +(161776, 'Danae', 1997, 'F', 157), +(161777, 'Georgina', 1997, 'F', 157), +(161778, 'Hadley', 1997, 'F', 157), +(161779, 'Johnna', 1997, 'F', 157), +(161780, 'Shay', 1997, 'F', 157), +(161781, 'Teagan', 1997, 'F', 157), +(161782, 'Xiomara', 1997, 'F', 157), +(161783, 'Adilene', 1997, 'F', 156), +(161784, 'Breeanna', 1997, 'F', 156), +(161785, 'Kimberlee', 1997, 'F', 156), +(161786, 'Latisha', 1997, 'F', 156), +(161787, 'Stefani', 1997, 'F', 156), +(161788, 'Brea', 1997, 'F', 155), +(161789, 'Keana', 1997, 'F', 155), +(161790, 'Lila', 1997, 'F', 155), +(161791, 'Mason', 1997, 'F', 155), +(161792, 'Zoie', 1997, 'F', 155), +(161793, 'Darcy', 1997, 'F', 154), +(161794, 'Iman', 1997, 'F', 154), +(161795, 'Alliyah', 1997, 'F', 153), +(161796, 'Caleigh', 1997, 'F', 153), +(161797, 'Grecia', 1997, 'F', 153), +(161798, 'Kaytlyn', 1997, 'F', 153), +(161799, 'Lynette', 1997, 'F', 153), +(161800, 'Allegra', 1997, 'F', 152), +(161801, 'Anya', 1997, 'F', 152), +(161802, 'Janna', 1997, 'F', 152), +(161803, 'Johana', 1997, 'F', 152), +(161804, 'Lidia', 1997, 'F', 152), +(161805, 'Marianne', 1997, 'F', 152), +(161806, 'Mickayla', 1997, 'F', 152), +(161807, 'Bridgett', 1997, 'F', 151), +(161808, 'Destinie', 1997, 'F', 151), +(161809, 'Kalli', 1997, 'F', 151), +(161810, 'Maryam', 1997, 'F', 151), +(161811, 'Sonja', 1997, 'F', 151), +(161812, 'Bayley', 1997, 'F', 150), +(161813, 'Evelin', 1997, 'F', 150), +(161814, 'Annabel', 1997, 'F', 149), +(161815, 'Kaylen', 1997, 'F', 149), +(161816, 'Keyla', 1997, 'F', 149), +(161817, 'Ryleigh', 1997, 'F', 149), +(161818, 'Valencia', 1997, 'F', 149), +(161819, 'Alanis', 1997, 'F', 148), +(161820, 'Alyse', 1997, 'F', 148), +(161821, 'Annelise', 1997, 'F', 148), +(161822, 'Caylee', 1997, 'F', 148), +(161823, 'Makaila', 1997, 'F', 148), +(161824, 'Aliza', 1997, 'F', 147), +(161825, 'Angeline', 1997, 'F', 147), +(161826, 'Dominque', 1997, 'F', 147), +(161827, 'Felicity', 1997, 'F', 147), +(161828, 'Janell', 1997, 'F', 147), +(161829, 'Libby', 1997, 'F', 147), +(161830, 'Rosie', 1997, 'F', 147), +(161831, 'Viridiana', 1997, 'F', 147), +(161832, 'Chyanne', 1997, 'F', 146), +(161833, 'Jaylene', 1997, 'F', 146), +(161834, 'Kayle', 1997, 'F', 146), +(161835, 'Laurie', 1997, 'F', 146), +(161836, 'Maira', 1997, 'F', 146), +(161837, 'Marcela', 1997, 'F', 146), +(161838, 'Salena', 1997, 'F', 146), +(161839, 'Adreanna', 1997, 'F', 145), +(161840, 'Adrianne', 1997, 'F', 145), +(161841, 'Anisa', 1997, 'F', 145), +(161842, 'Dara', 1997, 'F', 145), +(161843, 'Lyndsay', 1997, 'F', 145), +(161844, 'Maryann', 1997, 'F', 145), +(161845, 'Mika', 1997, 'F', 145), +(161846, 'Traci', 1997, 'F', 145), +(161847, 'Danyelle', 1997, 'F', 144), +(161848, 'Joan', 1997, 'F', 144), +(161849, 'Kayleen', 1997, 'F', 144), +(161850, 'Akira', 1997, 'F', 143), +(161851, 'Cailin', 1997, 'F', 143), +(161852, 'Danika', 1997, 'F', 143), +(161853, 'Jodie', 1997, 'F', 143), +(161854, 'Tiera', 1997, 'F', 143), +(161855, 'Aracely', 1997, 'F', 142), +(161856, 'Brittni', 1997, 'F', 142), +(161857, 'Cailey', 1997, 'F', 142), +(161858, 'Colette', 1997, 'F', 142), +(161859, 'Elle', 1997, 'F', 142), +(161860, 'Estefani', 1997, 'F', 142), +(161861, 'Ivonne', 1997, 'F', 142), +(161862, 'Kierstin', 1997, 'F', 142), +(161863, 'Liza', 1997, 'F', 142), +(161864, 'Michael', 1997, 'F', 142), +(161865, 'Mira', 1997, 'F', 142), +(161866, 'Priya', 1997, 'F', 142), +(161867, 'Saige', 1997, 'F', 142), +(161868, 'Shoshana', 1997, 'F', 142), +(161869, 'Franchesca', 1997, 'F', 141), +(161870, 'Michaella', 1997, 'F', 141), +(161871, 'Yaritza', 1997, 'F', 141), +(161872, 'Alexi', 1997, 'F', 140), +(161873, 'Ashtyn', 1997, 'F', 140), +(161874, 'Jalyn', 1997, 'F', 140), +(161875, 'Kaylea', 1997, 'F', 140), +(161876, 'Jacinda', 1997, 'F', 139), +(161877, 'Miya', 1997, 'F', 139), +(161878, 'Santana', 1997, 'F', 139), +(161879, 'Siobhan', 1997, 'F', 139), +(161880, 'Amalia', 1997, 'F', 138), +(161881, 'Janine', 1997, 'F', 138), +(161882, 'Kelsy', 1997, 'F', 138), +(161883, 'Mahogany', 1997, 'F', 138), +(161884, 'Michala', 1997, 'F', 138), +(161885, 'Skyla', 1997, 'F', 138), +(161886, 'Addie', 1997, 'F', 137), +(161887, 'Andria', 1997, 'F', 137), +(161888, 'Ashely', 1997, 'F', 137), +(161889, 'Jean', 1997, 'F', 137), +(161890, 'Keyana', 1997, 'F', 137), +(161891, 'Pearl', 1997, 'F', 137), +(161892, 'Rosalie', 1997, 'F', 137), +(161893, 'Elsie', 1997, 'F', 136), +(161894, 'Jerrica', 1997, 'F', 136), +(161895, 'Makaela', 1997, 'F', 136), +(161896, 'Tiffanie', 1997, 'F', 136), +(161897, 'Carleigh', 1997, 'F', 135), +(161898, 'Cathryn', 1997, 'F', 135), +(161899, 'Chantelle', 1997, 'F', 135), +(161900, 'Charlie', 1997, 'F', 135), +(161901, 'Chynna', 1997, 'F', 135), +(161902, 'Jacquelin', 1997, 'F', 135), +(161903, 'Suzanna', 1997, 'F', 135), +(161904, 'America', 1997, 'F', 134), +(161905, 'Halley', 1997, 'F', 134), +(161906, 'Jesenia', 1997, 'F', 134), +(161907, 'Latasha', 1997, 'F', 134), +(161908, 'Nyla', 1997, 'F', 134), +(161909, 'Amberly', 1997, 'F', 133), +(161910, 'Aria', 1997, 'F', 133), +(161911, 'Cathy', 1997, 'F', 133), +(161912, 'Connor', 1997, 'F', 133), +(161913, 'Dajah', 1997, 'F', 133), +(161914, 'Elana', 1997, 'F', 133), +(161915, 'Halee', 1997, 'F', 133), +(161916, 'Kaya', 1997, 'F', 133), +(161917, 'Moira', 1997, 'F', 133), +(161918, 'Ada', 1997, 'F', 132), +(161919, 'Calli', 1997, 'F', 132), +(161920, 'Corey', 1997, 'F', 132), +(161921, 'Farrah', 1997, 'F', 132), +(161922, 'Lucille', 1997, 'F', 132), +(161923, 'Mikaila', 1997, 'F', 132), +(161924, 'Parker', 1997, 'F', 132), +(161925, 'Siera', 1997, 'F', 132), +(161926, 'Allissa', 1997, 'F', 131), +(161927, 'Bayleigh', 1997, 'F', 131), +(161928, 'Ilana', 1997, 'F', 131), +(161929, 'Lora', 1997, 'F', 131), +(161930, 'Malika', 1997, 'F', 131), +(161931, 'Shivani', 1997, 'F', 131), +(161932, 'Areli', 1997, 'F', 130), +(161933, 'Demetria', 1997, 'F', 130), +(161934, 'Jaimie', 1997, 'F', 130), +(161935, 'Kelcie', 1997, 'F', 130), +(161936, 'Maren', 1997, 'F', 130), +(161937, 'Rhea', 1997, 'F', 130), +(161938, 'Ricki', 1997, 'F', 130), +(161939, 'Salina', 1997, 'F', 130), +(161940, 'Simran', 1997, 'F', 130), +(161941, 'Becky', 1997, 'F', 129), +(161942, 'Bree', 1997, 'F', 129), +(161943, 'Cailyn', 1997, 'F', 129), +(161944, 'Corrine', 1997, 'F', 129), +(161945, 'Myah', 1997, 'F', 129), +(161946, 'Shiann', 1997, 'F', 129), +(161947, 'Yessica', 1997, 'F', 129), +(161948, 'Zakiya', 1997, 'F', 129), +(161949, 'Acacia', 1997, 'F', 128), +(161950, 'Allysa', 1997, 'F', 128), +(161951, 'Austin', 1997, 'F', 128), +(161952, 'Caylin', 1997, 'F', 128), +(161953, 'Dasha', 1997, 'F', 128), +(161954, 'Elexus', 1997, 'F', 128), +(161955, 'Kai', 1997, 'F', 128), +(161956, 'Marion', 1997, 'F', 128), +(161957, 'Milan', 1997, 'F', 128), +(161958, 'Cecily', 1997, 'F', 127), +(161959, 'Celena', 1997, 'F', 127), +(161960, 'Daijah', 1997, 'F', 127), +(161961, 'Darien', 1997, 'F', 127), +(161962, 'Izabella', 1997, 'F', 127), +(161963, 'Jakayla', 1997, 'F', 127), +(161964, 'Krysten', 1997, 'F', 127), +(161965, 'Myesha', 1997, 'F', 127), +(161966, 'Rivka', 1997, 'F', 127), +(161967, 'Susannah', 1997, 'F', 127), +(161968, 'Tristin', 1997, 'F', 127), +(161969, 'Chastity', 1997, 'F', 126), +(161970, 'Cherokee', 1997, 'F', 126), +(161971, 'Daysha', 1997, 'F', 126), +(161972, 'Jourdan', 1997, 'F', 126), +(161973, 'Marjorie', 1997, 'F', 126), +(161974, 'Aiyana', 1997, 'F', 125), +(161975, 'Alea', 1997, 'F', 125), +(161976, 'Debbie', 1997, 'F', 125), +(161977, 'Jamesha', 1997, 'F', 125), +(161978, 'Keyanna', 1997, 'F', 125), +(161979, 'Kiah', 1997, 'F', 125), +(161980, 'Leigha', 1997, 'F', 125), +(161981, 'Lynsey', 1997, 'F', 125), +(161982, 'Malaysia', 1997, 'F', 125), +(161983, 'Marlen', 1997, 'F', 125), +(161984, 'Dahlia', 1997, 'F', 124), +(161985, 'Desire', 1997, 'F', 124), +(161986, 'Edna', 1997, 'F', 124), +(161987, 'Isela', 1997, 'F', 124), +(161988, 'Mallorie', 1997, 'F', 124), +(161989, 'Rhonda', 1997, 'F', 124), +(161990, 'Rosemarie', 1997, 'F', 124), +(161991, 'Taylar', 1997, 'F', 124), +(161992, 'Treasure', 1997, 'F', 124), +(161993, 'Bertha', 1997, 'F', 123), +(161994, 'Makena', 1997, 'F', 123), +(161995, 'Marla', 1997, 'F', 123), +(161996, 'Taelor', 1997, 'F', 123), +(161997, 'Ariella', 1997, 'F', 122), +(161998, 'Ayleen', 1997, 'F', 122), +(161999, 'Kiarra', 1997, 'F', 122), +(162000, 'Laci', 1997, 'F', 122), +(162001, 'Magaly', 1997, 'F', 122), +(162002, 'Mercedez', 1997, 'F', 122), +(162003, 'Bailie', 1997, 'F', 121), +(162004, 'Ileana', 1997, 'F', 121), +(162005, 'Rubi', 1997, 'F', 121), +(162006, 'Tricia', 1997, 'F', 121), +(162007, 'Valarie', 1997, 'F', 121), +(162008, 'Bryce', 1997, 'F', 120), +(162009, 'Christal', 1997, 'F', 120), +(162010, 'Frankie', 1997, 'F', 120), +(162011, 'Kaelin', 1997, 'F', 120), +(162012, 'Tehya', 1997, 'F', 120), +(162013, 'Yahaira', 1997, 'F', 120), +(162014, 'Alexius', 1997, 'F', 119), +(162015, 'August', 1997, 'F', 119), +(162016, 'Corrina', 1997, 'F', 119), +(162017, 'Lakeisha', 1997, 'F', 119), +(162018, 'Marta', 1997, 'F', 119), +(162019, 'Sabina', 1997, 'F', 119), +(162020, 'Alannah', 1997, 'F', 118), +(162021, 'Doris', 1997, 'F', 118), +(162022, 'Glenda', 1997, 'F', 118), +(162023, 'Meranda', 1997, 'F', 118), +(162024, 'Natalee', 1997, 'F', 118), +(162025, 'Noor', 1997, 'F', 118), +(162026, 'Tatiyana', 1997, 'F', 118), +(162027, 'Jamila', 1997, 'F', 117), +(162028, 'Jesica', 1997, 'F', 117), +(162029, 'Karah', 1997, 'F', 117), +(162030, 'Linnea', 1997, 'F', 117), +(162031, 'Marielle', 1997, 'F', 117), +(162032, 'Nicolle', 1997, 'F', 117), +(162033, 'Oriana', 1997, 'F', 117), +(162034, 'Pooja', 1997, 'F', 117), +(162035, 'Renae', 1997, 'F', 117), +(162036, 'Rhianna', 1997, 'F', 117), +(162037, 'Rosalinda', 1997, 'F', 117), +(162038, 'Tanesha', 1997, 'F', 117), +(162039, 'Tanner', 1997, 'F', 117), +(162040, 'Xochitl', 1997, 'F', 117), +(162041, 'Anisha', 1997, 'F', 116), +(162042, 'Bethanie', 1997, 'F', 116), +(162043, 'Chrystal', 1997, 'F', 116), +(162044, 'Jackelyn', 1997, 'F', 116), +(162045, 'Laila', 1997, 'F', 116), +(162046, 'Mykayla', 1997, 'F', 116), +(162047, 'Samira', 1997, 'F', 116), +(162048, 'Shawnee', 1997, 'F', 116), +(162049, 'Staci', 1997, 'F', 116), +(162050, 'Davina', 1997, 'F', 115), +(162051, 'Jamia', 1997, 'F', 115), +(162052, 'Kyle', 1997, 'F', 115), +(162053, 'Micheala', 1997, 'F', 115), +(162054, 'Selene', 1997, 'F', 115), +(162055, 'Spencer', 1997, 'F', 115), +(162056, 'Britany', 1997, 'F', 114), +(162057, 'Hayleigh', 1997, 'F', 114), +(162058, 'Isabela', 1997, 'F', 114), +(162059, 'Janel', 1997, 'F', 114), +(162060, 'Josefina', 1997, 'F', 114), +(162061, 'Kendyl', 1997, 'F', 114), +(162062, 'Malorie', 1997, 'F', 114), +(162063, 'Melany', 1997, 'F', 114), +(162064, 'Miah', 1997, 'F', 114), +(162065, 'Alli', 1997, 'F', 113), +(162066, 'Autum', 1997, 'F', 113), +(162067, 'Harlie', 1997, 'F', 113), +(162068, 'Kalynn', 1997, 'F', 113), +(162069, 'Mona', 1997, 'F', 113), +(162070, 'Roxanna', 1997, 'F', 113), +(162071, 'Analisa', 1997, 'F', 112), +(162072, 'Audrianna', 1997, 'F', 112), +(162073, 'Brigitte', 1997, 'F', 112), +(162074, 'Francis', 1997, 'F', 112), +(162075, 'Hilda', 1997, 'F', 112), +(162076, 'Jazzmine', 1997, 'F', 112), +(162077, 'Louisa', 1997, 'F', 112), +(162078, 'Lucinda', 1997, 'F', 112), +(162079, 'Natalya', 1997, 'F', 112), +(162080, 'Shaelyn', 1997, 'F', 112), +(162081, 'Trina', 1997, 'F', 112), +(162082, 'Ayesha', 1997, 'F', 111), +(162083, 'Bernice', 1997, 'F', 111), +(162084, 'Chelsi', 1997, 'F', 111), +(162085, 'Dani', 1997, 'F', 111), +(162086, 'Kami', 1997, 'F', 111), +(162087, 'Kasie', 1997, 'F', 111), +(162088, 'Kelci', 1997, 'F', 111), +(162089, 'Latoya', 1997, 'F', 111), +(162090, 'Macayla', 1997, 'F', 111), +(162091, 'Maiya', 1997, 'F', 111), +(162092, 'Rayven', 1997, 'F', 111), +(162093, 'Rianna', 1997, 'F', 111), +(162094, 'Suzette', 1997, 'F', 111), +(162095, 'Chanelle', 1997, 'F', 110), +(162096, 'Deidra', 1997, 'F', 110), +(162097, 'Janeth', 1997, 'F', 110), +(162098, 'Jaylin', 1997, 'F', 110), +(162099, 'Kim', 1997, 'F', 110), +(162100, 'Louise', 1997, 'F', 110), +(162101, 'Marguerite', 1997, 'F', 110), +(162102, 'Niya', 1997, 'F', 110), +(162103, 'Adina', 1997, 'F', 109), +(162104, 'Becca', 1997, 'F', 109), +(162105, 'Jaimee', 1997, 'F', 109), +(162106, 'Jordin', 1997, 'F', 109), +(162107, 'Kandace', 1997, 'F', 109), +(162108, 'Merissa', 1997, 'F', 109), +(162109, 'Ceara', 1997, 'F', 108), +(162110, 'Danna', 1997, 'F', 108), +(162111, 'Deonna', 1997, 'F', 108), +(162112, 'Jaci', 1997, 'F', 108), +(162113, 'Kaliyah', 1997, 'F', 108), +(162114, 'Karolina', 1997, 'F', 108), +(162115, 'Loretta', 1997, 'F', 108), +(162116, 'Madelaine', 1997, 'F', 108), +(162117, 'Margo', 1997, 'F', 108), +(162118, 'Marin', 1997, 'F', 108), +(162119, 'Tarah', 1997, 'F', 108), +(162120, 'Vicky', 1997, 'F', 108), +(162121, 'Adela', 1997, 'F', 107), +(162122, 'Aniya', 1997, 'F', 107), +(162123, 'Brigid', 1997, 'F', 107), +(162124, 'Chelsy', 1997, 'F', 107), +(162125, 'Giana', 1997, 'F', 107), +(162126, 'Harlee', 1997, 'F', 107), +(162127, 'Hilary', 1997, 'F', 107), +(162128, 'Jacie', 1997, 'F', 107), +(162129, 'Joseline', 1997, 'F', 107), +(162130, 'Phoenix', 1997, 'F', 107), +(162131, 'Tamika', 1997, 'F', 107), +(162132, 'Aislinn', 1997, 'F', 106), +(162133, 'Joi', 1997, 'F', 106), +(162134, 'Shiloh', 1997, 'F', 106), +(162135, 'Abrianna', 1997, 'F', 105), +(162136, 'Annalisa', 1997, 'F', 105), +(162137, 'Aryana', 1997, 'F', 105), +(162138, 'Breona', 1997, 'F', 105), +(162139, 'Briona', 1997, 'F', 105), +(162140, 'Brittnee', 1997, 'F', 105), +(162141, 'Chandra', 1997, 'F', 105), +(162142, 'Dionna', 1997, 'F', 105), +(162143, 'Holli', 1997, 'F', 105), +(162144, 'Idalis', 1997, 'F', 105), +(162145, 'Jeanne', 1997, 'F', 105), +(162146, 'Jerica', 1997, 'F', 105), +(162147, 'Jorden', 1997, 'F', 105), +(162148, 'Jordon', 1997, 'F', 105), +(162149, 'Keyona', 1997, 'F', 105), +(162150, 'Kylah', 1997, 'F', 105), +(162151, 'Leia', 1997, 'F', 105), +(162152, 'Priscila', 1997, 'F', 105), +(162153, 'Ravyn', 1997, 'F', 105), +(162154, 'Shaniqua', 1997, 'F', 105), +(162155, 'Shaniya', 1997, 'F', 105), +(162156, 'Shelley', 1997, 'F', 105), +(162157, 'Whitley', 1997, 'F', 105), +(162158, 'Alix', 1997, 'F', 104), +(162159, 'Brittaney', 1997, 'F', 104), +(162160, 'Chyenne', 1997, 'F', 104), +(162161, 'Dolores', 1997, 'F', 104), +(162162, 'Eleni', 1997, 'F', 104), +(162163, 'Francisca', 1997, 'F', 104), +(162164, 'Kenisha', 1997, 'F', 104), +(162165, 'Kristiana', 1997, 'F', 104), +(162166, 'Laney', 1997, 'F', 104), +(162167, 'Sariah', 1997, 'F', 104), +(162168, 'Zena', 1997, 'F', 104), +(162169, 'Amethyst', 1997, 'F', 103), +(162170, 'Andie', 1997, 'F', 103), +(162171, 'Britni', 1997, 'F', 103), +(162172, 'Deidre', 1997, 'F', 103), +(162173, 'Layne', 1997, 'F', 103), +(162174, 'Malinda', 1997, 'F', 103), +(162175, 'Rene', 1997, 'F', 103), +(162176, 'Sheyenne', 1997, 'F', 103), +(162177, 'Stefany', 1997, 'F', 103), +(162178, 'Tera', 1997, 'F', 103), +(162179, 'Tierney', 1997, 'F', 103), +(162180, 'Ginger', 1997, 'F', 102), +(162181, 'Jenae', 1997, 'F', 102), +(162182, 'Jeniffer', 1997, 'F', 102), +(162183, 'Kirstyn', 1997, 'F', 102), +(162184, 'Klarissa', 1997, 'F', 102), +(162185, 'Kyana', 1997, 'F', 102), +(162186, 'Liberty', 1997, 'F', 102), +(162187, 'Mercy', 1997, 'F', 102), +(162188, 'Michayla', 1997, 'F', 102), +(162189, 'Nathaly', 1997, 'F', 102), +(162190, 'Raeann', 1997, 'F', 102), +(162191, 'Tyana', 1997, 'F', 102), +(162192, 'Yoselin', 1997, 'F', 102), +(162193, 'Aleena', 1997, 'F', 101), +(162194, 'Alora', 1997, 'F', 101), +(162195, 'Amirah', 1997, 'F', 101), +(162196, 'Deisy', 1997, 'F', 101), +(162197, 'Janai', 1997, 'F', 101), +(162198, 'Leona', 1997, 'F', 101), +(162199, 'Siena', 1997, 'F', 101), +(162200, 'Sunny', 1997, 'F', 101), +(162201, 'Zahra', 1997, 'F', 101), +(162202, 'Analise', 1997, 'F', 100), +(162203, 'Bryn', 1997, 'F', 100), +(162204, 'Chiara', 1997, 'F', 100), +(162205, 'Darrian', 1997, 'F', 100), +(162206, 'Lashay', 1997, 'F', 100), +(162207, 'Racquel', 1997, 'F', 100), +(162208, 'Raelyn', 1997, 'F', 100), +(162209, 'Taja', 1997, 'F', 100), +(162210, 'Taliyah', 1997, 'F', 100), +(162211, 'Michael', 1997, 'M', 37543), +(162212, 'Jacob', 1997, 'M', 34141), +(162213, 'Matthew', 1997, 'M', 31511), +(162214, 'Christopher', 1997, 'M', 29099), +(162215, 'Joshua', 1997, 'M', 28279), +(162216, 'Nicholas', 1997, 'M', 27255), +(162217, 'Brandon', 1997, 'M', 25190), +(162218, 'Andrew', 1997, 'M', 25185), +(162219, 'Austin', 1997, 'M', 25117), +(162220, 'Tyler', 1997, 'M', 24878), +(162221, 'Daniel', 1997, 'M', 23924), +(162222, 'Joseph', 1997, 'M', 23581), +(162223, 'Zachary', 1997, 'M', 21926), +(162224, 'David', 1997, 'M', 21869), +(162225, 'John', 1997, 'M', 21369), +(162226, 'Ryan', 1997, 'M', 20526), +(162227, 'James', 1997, 'M', 20399), +(162228, 'Anthony', 1997, 'M', 20026), +(162229, 'William', 1997, 'M', 20006), +(162230, 'Justin', 1997, 'M', 18743), +(162231, 'Jonathan', 1997, 'M', 18531), +(162232, 'Alexander', 1997, 'M', 17110), +(162233, 'Robert', 1997, 'M', 16301), +(162234, 'Kyle', 1997, 'M', 15915), +(162235, 'Christian', 1997, 'M', 15055), +(162236, 'Jordan', 1997, 'M', 14759), +(162237, 'Samuel', 1997, 'M', 14217), +(162238, 'Kevin', 1997, 'M', 13291), +(162239, 'Benjamin', 1997, 'M', 13260), +(162240, 'Dylan', 1997, 'M', 12968), +(162241, 'Thomas', 1997, 'M', 12894), +(162242, 'Jose', 1997, 'M', 11922), +(162243, 'Aaron', 1997, 'M', 11163), +(162244, 'Nathan', 1997, 'M', 10437), +(162245, 'Eric', 1997, 'M', 10318), +(162246, 'Cody', 1997, 'M', 10292), +(162247, 'Brian', 1997, 'M', 9732), +(162248, 'Noah', 1997, 'M', 9263), +(162249, 'Adam', 1997, 'M', 8802), +(162250, 'Steven', 1997, 'M', 8764), +(162251, 'Jason', 1997, 'M', 8745), +(162252, 'Logan', 1997, 'M', 8617), +(162253, 'Timothy', 1997, 'M', 8503), +(162254, 'Hunter', 1997, 'M', 8405), +(162255, 'Cameron', 1997, 'M', 8215), +(162256, 'Ethan', 1997, 'M', 7806), +(162257, 'Caleb', 1997, 'M', 7771), +(162258, 'Sean', 1997, 'M', 7743), +(162259, 'Charles', 1997, 'M', 7655), +(162260, 'Patrick', 1997, 'M', 7486), +(162261, 'Richard', 1997, 'M', 7241), +(162262, 'Connor', 1997, 'M', 7141), +(162263, 'Luis', 1997, 'M', 7126), +(162264, 'Juan', 1997, 'M', 7113), +(162265, 'Alex', 1997, 'M', 6855), +(162266, 'Jared', 1997, 'M', 6681), +(162267, 'Gabriel', 1997, 'M', 6402), +(162268, 'Mark', 1997, 'M', 6168), +(162269, 'Devin', 1997, 'M', 6043), +(162270, 'Isaiah', 1997, 'M', 6003), +(162271, 'Evan', 1997, 'M', 6002), +(162272, 'Trevor', 1997, 'M', 6000), +(162273, 'Jesse', 1997, 'M', 5915), +(162274, 'Jeremy', 1997, 'M', 5802), +(162275, 'Nathaniel', 1997, 'M', 5773), +(162276, 'Dakota', 1997, 'M', 5664), +(162277, 'Carlos', 1997, 'M', 5461), +(162278, 'Stephen', 1997, 'M', 5411), +(162279, 'Bryan', 1997, 'M', 5251), +(162280, 'Ian', 1997, 'M', 5207), +(162281, 'Jesus', 1997, 'M', 5162), +(162282, 'Cole', 1997, 'M', 5158), +(162283, 'Isaac', 1997, 'M', 5142), +(162284, 'Elijah', 1997, 'M', 5085), +(162285, 'Antonio', 1997, 'M', 5068), +(162286, 'Jack', 1997, 'M', 4983), +(162287, 'Chase', 1997, 'M', 4963), +(162288, 'Luke', 1997, 'M', 4951), +(162289, 'Paul', 1997, 'M', 4747), +(162290, 'Blake', 1997, 'M', 4728), +(162291, 'Travis', 1997, 'M', 4683), +(162292, 'Tanner', 1997, 'M', 4676), +(162293, 'Kenneth', 1997, 'M', 4658), +(162294, 'Jeffrey', 1997, 'M', 4583), +(162295, 'Garrett', 1997, 'M', 4544), +(162296, 'Angel', 1997, 'M', 4515), +(162297, 'Taylor', 1997, 'M', 4332), +(162298, 'Dustin', 1997, 'M', 4277), +(162299, 'Mason', 1997, 'M', 4267), +(162300, 'Dalton', 1997, 'M', 4237), +(162301, 'Miguel', 1997, 'M', 4233), +(162302, 'Tristan', 1997, 'M', 4193), +(162303, 'Marcus', 1997, 'M', 4182), +(162304, 'Bradley', 1997, 'M', 4123), +(162305, 'Adrian', 1997, 'M', 4114), +(162306, 'Mitchell', 1997, 'M', 4067), +(162307, 'Seth', 1997, 'M', 4041), +(162308, 'Lucas', 1997, 'M', 4031), +(162309, 'Alejandro', 1997, 'M', 3997), +(162310, 'Edward', 1997, 'M', 3912), +(162311, 'Jake', 1997, 'M', 3838), +(162312, 'Peter', 1997, 'M', 3825), +(162313, 'Gregory', 1997, 'M', 3802), +(162314, 'Spencer', 1997, 'M', 3766), +(162315, 'Victor', 1997, 'M', 3702), +(162316, 'Derek', 1997, 'M', 3670), +(162317, 'Brendan', 1997, 'M', 3621), +(162318, 'Colton', 1997, 'M', 3600), +(162319, 'Shawn', 1997, 'M', 3446), +(162320, 'Corey', 1997, 'M', 3417), +(162321, 'Malik', 1997, 'M', 3380), +(162322, 'Bryce', 1997, 'M', 3352), +(162323, 'Scott', 1997, 'M', 3342), +(162324, 'Shane', 1997, 'M', 3317), +(162325, 'Grant', 1997, 'M', 3314), +(162326, 'Brett', 1997, 'M', 3268), +(162327, 'Jorge', 1997, 'M', 3231), +(162328, 'Vincent', 1997, 'M', 3193), +(162329, 'Devon', 1997, 'M', 3189), +(162330, 'Alexis', 1997, 'M', 3182), +(162331, 'George', 1997, 'M', 3175), +(162332, 'Collin', 1997, 'M', 3157), +(162333, 'Alec', 1997, 'M', 3137), +(162334, 'Jackson', 1997, 'M', 3126), +(162335, 'Colin', 1997, 'M', 3098), +(162336, 'Joel', 1997, 'M', 2987), +(162337, 'Oscar', 1997, 'M', 2969), +(162338, 'Dominic', 1997, 'M', 2928), +(162339, 'Jeremiah', 1997, 'M', 2927), +(162340, 'Ricardo', 1997, 'M', 2924), +(162341, 'Julian', 1997, 'M', 2909), +(162342, 'Dillon', 1997, 'M', 2888), +(162343, 'Francisco', 1997, 'M', 2865), +(162344, 'Erik', 1997, 'M', 2858), +(162345, 'Riley', 1997, 'M', 2833), +(162346, 'Gavin', 1997, 'M', 2758), +(162347, 'Wyatt', 1997, 'M', 2747), +(162348, 'Raymond', 1997, 'M', 2693), +(162349, 'Henry', 1997, 'M', 2641), +(162350, 'Eduardo', 1997, 'M', 2623), +(162351, 'Xavier', 1997, 'M', 2589), +(162352, 'Johnathan', 1997, 'M', 2547), +(162353, 'Nicolas', 1997, 'M', 2430), +(162354, 'Wesley', 1997, 'M', 2358), +(162355, 'Cristian', 1997, 'M', 2331), +(162356, 'Manuel', 1997, 'M', 2322), +(162357, 'Clayton', 1997, 'M', 2319), +(162358, 'Maxwell', 1997, 'M', 2317), +(162359, 'Fernando', 1997, 'M', 2315), +(162360, 'Parker', 1997, 'M', 2297), +(162361, 'Bailey', 1997, 'M', 2294), +(162362, 'Mario', 1997, 'M', 2294), +(162363, 'Javier', 1997, 'M', 2290), +(162364, 'Omar', 1997, 'M', 2287), +(162365, 'Martin', 1997, 'M', 2229), +(162366, 'Levi', 1997, 'M', 2207), +(162367, 'Andres', 1997, 'M', 2201), +(162368, 'Alan', 1997, 'M', 2177), +(162369, 'Brady', 1997, 'M', 2162), +(162370, 'Ivan', 1997, 'M', 2157), +(162371, 'Edgar', 1997, 'M', 2114), +(162372, 'Liam', 1997, 'M', 2110), +(162373, 'Casey', 1997, 'M', 2097), +(162374, 'Ronald', 1997, 'M', 2096), +(162375, 'Phillip', 1997, 'M', 2085), +(162376, 'Cory', 1997, 'M', 2083), +(162377, 'Hayden', 1997, 'M', 2068), +(162378, 'Frank', 1997, 'M', 2022), +(162379, 'Keith', 1997, 'M', 2000), +(162380, 'Troy', 1997, 'M', 1998), +(162381, 'Drew', 1997, 'M', 1991), +(162382, 'Sergio', 1997, 'M', 1984), +(162383, 'Donald', 1997, 'M', 1970), +(162384, 'Chad', 1997, 'M', 1952), +(162385, 'Roberto', 1997, 'M', 1944), +(162386, 'Marco', 1997, 'M', 1923), +(162387, 'Darius', 1997, 'M', 1889), +(162388, 'Preston', 1997, 'M', 1889), +(162389, 'Hector', 1997, 'M', 1871), +(162390, 'Jonathon', 1997, 'M', 1844), +(162391, 'Harrison', 1997, 'M', 1824), +(162392, 'Trenton', 1997, 'M', 1808), +(162393, 'Andre', 1997, 'M', 1800), +(162394, 'Chandler', 1997, 'M', 1796), +(162395, 'Kaleb', 1997, 'M', 1793), +(162396, 'Diego', 1997, 'M', 1784), +(162397, 'Derrick', 1997, 'M', 1783), +(162398, 'Cesar', 1997, 'M', 1782), +(162399, 'Sebastian', 1997, 'M', 1767), +(162400, 'Conner', 1997, 'M', 1727), +(162401, 'Chance', 1997, 'M', 1713), +(162402, 'Calvin', 1997, 'M', 1705), +(162403, 'Gage', 1997, 'M', 1701), +(162404, 'Max', 1997, 'M', 1698), +(162405, 'Philip', 1997, 'M', 1661), +(162406, 'Jonah', 1997, 'M', 1620), +(162407, 'Erick', 1997, 'M', 1614), +(162408, 'Edwin', 1997, 'M', 1605), +(162409, 'Ruben', 1997, 'M', 1595), +(162410, 'Dante', 1997, 'M', 1589), +(162411, 'Douglas', 1997, 'M', 1585), +(162412, 'Micah', 1997, 'M', 1570), +(162413, 'Landon', 1997, 'M', 1545), +(162414, 'Carter', 1997, 'M', 1540), +(162415, 'Armando', 1997, 'M', 1512), +(162416, 'Damian', 1997, 'M', 1507), +(162417, 'Pedro', 1997, 'M', 1498), +(162418, 'Curtis', 1997, 'M', 1496), +(162419, 'Dennis', 1997, 'M', 1487), +(162420, 'Emmanuel', 1997, 'M', 1474), +(162421, 'Johnny', 1997, 'M', 1462), +(162422, 'Jerry', 1997, 'M', 1456), +(162423, 'Donovan', 1997, 'M', 1448), +(162424, 'Mathew', 1997, 'M', 1433), +(162425, 'Gerardo', 1997, 'M', 1431), +(162426, 'Abraham', 1997, 'M', 1427), +(162427, 'Andy', 1997, 'M', 1420), +(162428, 'Raul', 1997, 'M', 1404), +(162429, 'Allen', 1997, 'M', 1403), +(162430, 'Jakob', 1997, 'M', 1387), +(162431, 'Skyler', 1997, 'M', 1387), +(162432, 'Aidan', 1997, 'M', 1381), +(162433, 'Josiah', 1997, 'M', 1379), +(162434, 'Owen', 1997, 'M', 1365), +(162435, 'Griffin', 1997, 'M', 1364), +(162436, 'Randy', 1997, 'M', 1362), +(162437, 'Rafael', 1997, 'M', 1360), +(162438, 'Ty', 1997, 'M', 1359), +(162439, 'Colby', 1997, 'M', 1357), +(162440, 'Enrique', 1997, 'M', 1349), +(162441, 'Marc', 1997, 'M', 1336), +(162442, 'Gary', 1997, 'M', 1326), +(162443, 'Marcos', 1997, 'M', 1321), +(162444, 'Zachery', 1997, 'M', 1321), +(162445, 'Nolan', 1997, 'M', 1311), +(162446, 'Louis', 1997, 'M', 1309), +(162447, 'Trey', 1997, 'M', 1291), +(162448, 'Julio', 1997, 'M', 1288), +(162449, 'Giovanni', 1997, 'M', 1281), +(162450, 'Alberto', 1997, 'M', 1272), +(162451, 'Brent', 1997, 'M', 1253), +(162452, 'Tony', 1997, 'M', 1248), +(162453, 'Larry', 1997, 'M', 1238), +(162454, 'Jimmy', 1997, 'M', 1228), +(162455, 'Trent', 1997, 'M', 1228), +(162456, 'Jaime', 1997, 'M', 1211), +(162457, 'Zackary', 1997, 'M', 1203), +(162458, 'Dallas', 1997, 'M', 1182), +(162459, 'Albert', 1997, 'M', 1176), +(162460, 'Avery', 1997, 'M', 1171), +(162461, 'Israel', 1997, 'M', 1167), +(162462, 'Josue', 1997, 'M', 1154), +(162463, 'Danny', 1997, 'M', 1139), +(162464, 'Peyton', 1997, 'M', 1121), +(162465, 'Brenden', 1997, 'M', 1109), +(162466, 'Russell', 1997, 'M', 1100), +(162467, 'Craig', 1997, 'M', 1098), +(162468, 'Kristopher', 1997, 'M', 1097), +(162469, 'Dominick', 1997, 'M', 1096), +(162470, 'Carl', 1997, 'M', 1093), +(162471, 'Nickolas', 1997, 'M', 1083), +(162472, 'Jeffery', 1997, 'M', 1080), +(162473, 'Tristen', 1997, 'M', 1078), +(162474, 'Ricky', 1997, 'M', 1076), +(162475, 'Micheal', 1997, 'M', 1068), +(162476, 'Morgan', 1997, 'M', 1062), +(162477, 'Braden', 1997, 'M', 1050), +(162478, 'Carson', 1997, 'M', 1047), +(162479, 'Terry', 1997, 'M', 1045), +(162480, 'Saul', 1997, 'M', 1043), +(162481, 'Zane', 1997, 'M', 1040), +(162482, 'Elias', 1997, 'M', 1034), +(162483, 'Walter', 1997, 'M', 1026), +(162484, 'Darren', 1997, 'M', 1020), +(162485, 'Deandre', 1997, 'M', 1018), +(162486, 'Jalen', 1997, 'M', 1012), +(162487, 'Joe', 1997, 'M', 1012), +(162488, 'Arturo', 1997, 'M', 1004), +(162489, 'Alfredo', 1997, 'M', 998), +(162490, 'Tommy', 1997, 'M', 995), +(162491, 'Rodney', 1997, 'M', 994), +(162492, 'Quentin', 1997, 'M', 992), +(162493, 'Kody', 1997, 'M', 987), +(162494, 'Damon', 1997, 'M', 986), +(162495, 'Lawrence', 1997, 'M', 985), +(162496, 'Drake', 1997, 'M', 974), +(162497, 'Arthur', 1997, 'M', 973), +(162498, 'Brennan', 1997, 'M', 967), +(162499, 'Lane', 1997, 'M', 967), +(162500, 'Ashton', 1997, 'M', 964), +(162501, 'Theodore', 1997, 'M', 956), +(162502, 'Jay', 1997, 'M', 946), +(162503, 'Brock', 1997, 'M', 945), +(162504, 'Ramon', 1997, 'M', 945), +(162505, 'Lorenzo', 1997, 'M', 944), +(162506, 'Miles', 1997, 'M', 943), +(162507, 'Lance', 1997, 'M', 918), +(162508, 'Gustavo', 1997, 'M', 917), +(162509, 'Bobby', 1997, 'M', 913), +(162510, 'Quinn', 1997, 'M', 909), +(162511, 'Damien', 1997, 'M', 907), +(162512, 'Tucker', 1997, 'M', 902), +(162513, 'Bryant', 1997, 'M', 896), +(162514, 'Pablo', 1997, 'M', 890), +(162515, 'Jarrett', 1997, 'M', 889), +(162516, 'Branden', 1997, 'M', 888), +(162517, 'Angelo', 1997, 'M', 886), +(162518, 'Desmond', 1997, 'M', 885), +(162519, 'Fabian', 1997, 'M', 859), +(162520, 'Kyler', 1997, 'M', 855), +(162521, 'Marvin', 1997, 'M', 855), +(162522, 'Eli', 1997, 'M', 851), +(162523, 'Trevon', 1997, 'M', 849), +(162524, 'Todd', 1997, 'M', 842), +(162525, 'Cooper', 1997, 'M', 839), +(162526, 'Quinton', 1997, 'M', 839), +(162527, 'Jamal', 1997, 'M', 834), +(162528, 'Eddie', 1997, 'M', 829), +(162529, 'Jon', 1997, 'M', 829), +(162530, 'Maurice', 1997, 'M', 827), +(162531, 'Conor', 1997, 'M', 826), +(162532, 'Emilio', 1997, 'M', 815), +(162533, 'Billy', 1997, 'M', 814), +(162534, 'Salvador', 1997, 'M', 814), +(162535, 'Keegan', 1997, 'M', 804), +(162536, 'Roger', 1997, 'M', 804), +(162537, 'Dean', 1997, 'M', 803), +(162538, 'Justice', 1997, 'M', 802), +(162539, 'Marquis', 1997, 'M', 801), +(162540, 'Ernesto', 1997, 'M', 797), +(162541, 'Ross', 1997, 'M', 795), +(162542, 'Brendon', 1997, 'M', 788), +(162543, 'Braxton', 1997, 'M', 783), +(162544, 'Simon', 1997, 'M', 779), +(162545, 'Gerald', 1997, 'M', 773), +(162546, 'Willie', 1997, 'M', 773), +(162547, 'Kameron', 1997, 'M', 772), +(162548, 'Malcolm', 1997, 'M', 766), +(162549, 'Randall', 1997, 'M', 763), +(162550, 'Reginald', 1997, 'M', 763), +(162551, 'Zackery', 1997, 'M', 761), +(162552, 'Jessie', 1997, 'M', 752), +(162553, 'Myles', 1997, 'M', 752), +(162554, 'Roy', 1997, 'M', 747), +(162555, 'Bryson', 1997, 'M', 741), +(162556, 'Isiah', 1997, 'M', 741), +(162557, 'Jarod', 1997, 'M', 738), +(162558, 'Marshall', 1997, 'M', 738), +(162559, 'Roman', 1997, 'M', 737), +(162560, 'Johnathon', 1997, 'M', 736), +(162561, 'Brayden', 1997, 'M', 724), +(162562, 'Nikolas', 1997, 'M', 718), +(162563, 'Abel', 1997, 'M', 717), +(162564, 'Keenan', 1997, 'M', 717), +(162565, 'Terrance', 1997, 'M', 713), +(162566, 'Frederick', 1997, 'M', 711), +(162567, 'Leonardo', 1997, 'M', 707), +(162568, 'Zachariah', 1997, 'M', 706), +(162569, 'Kendall', 1997, 'M', 703), +(162570, 'Esteban', 1997, 'M', 699), +(162571, 'Terrell', 1997, 'M', 688), +(162572, 'Brody', 1997, 'M', 684), +(162573, 'Payton', 1997, 'M', 684), +(162574, 'Demetrius', 1997, 'M', 679), +(162575, 'Tyrone', 1997, 'M', 679), +(162576, 'Keaton', 1997, 'M', 675), +(162577, 'Oliver', 1997, 'M', 668), +(162578, 'Triston', 1997, 'M', 666), +(162579, 'Grayson', 1997, 'M', 658), +(162580, 'Ismael', 1997, 'M', 658), +(162581, 'Skylar', 1997, 'M', 657), +(162582, 'Jamie', 1997, 'M', 655), +(162583, 'Emanuel', 1997, 'M', 654), +(162584, 'Dominique', 1997, 'M', 652), +(162585, 'Davis', 1997, 'M', 645), +(162586, 'Felix', 1997, 'M', 645), +(162587, 'Duncan', 1997, 'M', 644), +(162588, 'Orlando', 1997, 'M', 644), +(162589, 'Clay', 1997, 'M', 642), +(162590, 'Juwan', 1997, 'M', 641), +(162591, 'Rene', 1997, 'M', 640), +(162592, 'Guillermo', 1997, 'M', 632), +(162593, 'Bruce', 1997, 'M', 630), +(162594, 'Shaun', 1997, 'M', 630), +(162595, 'Francis', 1997, 'M', 627), +(162596, 'Steve', 1997, 'M', 627), +(162597, 'Nelson', 1997, 'M', 618), +(162598, 'Kristian', 1997, 'M', 614), +(162599, 'Lee', 1997, 'M', 614), +(162600, 'Moises', 1997, 'M', 614), +(162601, 'Byron', 1997, 'M', 607), +(162602, 'Lukas', 1997, 'M', 606), +(162603, 'Kelvin', 1997, 'M', 598), +(162604, 'Darian', 1997, 'M', 596), +(162605, 'Tyrell', 1997, 'M', 594), +(162606, 'Javon', 1997, 'M', 592), +(162607, 'Ali', 1997, 'M', 589), +(162608, 'Donte', 1997, 'M', 589), +(162609, 'Franklin', 1997, 'M', 588), +(162610, 'Weston', 1997, 'M', 584), +(162611, 'Melvin', 1997, 'M', 582), +(162612, 'Terrence', 1997, 'M', 581), +(162613, 'Khalil', 1997, 'M', 577), +(162614, 'Marquise', 1997, 'M', 574), +(162615, 'Cedric', 1997, 'M', 573), +(162616, 'Jace', 1997, 'M', 568), +(162617, 'Devan', 1997, 'M', 566), +(162618, 'Harley', 1997, 'M', 566), +(162619, 'Warren', 1997, 'M', 565), +(162620, 'Jordon', 1997, 'M', 564), +(162621, 'Deshawn', 1997, 'M', 563), +(162622, 'Kendrick', 1997, 'M', 563), +(162623, 'Devonte', 1997, 'M', 561), +(162624, 'Jayson', 1997, 'M', 559), +(162625, 'Darrell', 1997, 'M', 556), +(162626, 'Tyson', 1997, 'M', 556), +(162627, 'Kenny', 1997, 'M', 555), +(162628, 'Graham', 1997, 'M', 554), +(162629, 'Wade', 1997, 'M', 554), +(162630, 'Ronnie', 1997, 'M', 549), +(162631, 'Tristin', 1997, 'M', 548), +(162632, 'Corbin', 1997, 'M', 547), +(162633, 'Noel', 1997, 'M', 543), +(162634, 'Alvin', 1997, 'M', 537), +(162635, 'Jarrod', 1997, 'M', 537), +(162636, 'Walker', 1997, 'M', 536), +(162637, 'Jerome', 1997, 'M', 534), +(162638, 'Chris', 1997, 'M', 531), +(162639, 'Hugo', 1997, 'M', 529), +(162640, 'Neil', 1997, 'M', 526), +(162641, 'Stanley', 1997, 'M', 525), +(162642, 'Jaquan', 1997, 'M', 524), +(162643, 'Nathanael', 1997, 'M', 523), +(162644, 'Felipe', 1997, 'M', 522), +(162645, 'Daquan', 1997, 'M', 516), +(162646, 'Rodrigo', 1997, 'M', 514), +(162647, 'Wayne', 1997, 'M', 514), +(162648, 'Eugene', 1997, 'M', 512), +(162649, 'Rodolfo', 1997, 'M', 508), +(162650, 'Jermaine', 1997, 'M', 507), +(162651, 'Alfonso', 1997, 'M', 505), +(162652, 'Dane', 1997, 'M', 505), +(162653, 'Tyree', 1997, 'M', 505), +(162654, 'Malachi', 1997, 'M', 504), +(162655, 'Reed', 1997, 'M', 504), +(162656, 'Dale', 1997, 'M', 503), +(162657, 'Stefan', 1997, 'M', 503), +(162658, 'Santiago', 1997, 'M', 498), +(162659, 'Jarred', 1997, 'M', 489), +(162660, 'Austen', 1997, 'M', 488), +(162661, 'Darryl', 1997, 'M', 487), +(162662, 'Reid', 1997, 'M', 486), +(162663, 'Allan', 1997, 'M', 485), +(162664, 'Blaine', 1997, 'M', 484), +(162665, 'Devante', 1997, 'M', 484), +(162666, 'Jaden', 1997, 'M', 484), +(162667, 'Sam', 1997, 'M', 483), +(162668, 'Karl', 1997, 'M', 482), +(162669, 'Cade', 1997, 'M', 480), +(162670, 'Ernest', 1997, 'M', 479), +(162671, 'Marlon', 1997, 'M', 479); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(162672, 'Garret', 1997, 'M', 477), +(162673, 'Rudy', 1997, 'M', 476), +(162674, 'Rogelio', 1997, 'M', 473), +(162675, 'Charlie', 1997, 'M', 469), +(162676, 'Beau', 1997, 'M', 467), +(162677, 'Ezekiel', 1997, 'M', 467), +(162678, 'Colten', 1997, 'M', 464), +(162679, 'Elliot', 1997, 'M', 464), +(162680, 'Glenn', 1997, 'M', 459), +(162681, 'Ramiro', 1997, 'M', 458), +(162682, 'Leo', 1997, 'M', 456), +(162683, 'Tomas', 1997, 'M', 456), +(162684, 'Leonard', 1997, 'M', 454), +(162685, 'Sheldon', 1997, 'M', 454), +(162686, 'Gilberto', 1997, 'M', 452), +(162687, 'Holden', 1997, 'M', 451), +(162688, 'Jaylen', 1997, 'M', 451), +(162689, 'Alonzo', 1997, 'M', 450), +(162690, 'Harry', 1997, 'M', 449), +(162691, 'Gilbert', 1997, 'M', 448), +(162692, 'Damion', 1997, 'M', 447), +(162693, 'Ray', 1997, 'M', 443), +(162694, 'Ariel', 1997, 'M', 442), +(162695, 'Julius', 1997, 'M', 442), +(162696, 'Joey', 1997, 'M', 441), +(162697, 'Kurt', 1997, 'M', 439), +(162698, 'Tylor', 1997, 'M', 437), +(162699, 'Leon', 1997, 'M', 434), +(162700, 'Harold', 1997, 'M', 433), +(162701, 'Noe', 1997, 'M', 433), +(162702, 'Davon', 1997, 'M', 431), +(162703, 'Mauricio', 1997, 'M', 428), +(162704, 'Sterling', 1997, 'M', 428), +(162705, 'Clinton', 1997, 'M', 421), +(162706, 'Coleman', 1997, 'M', 421), +(162707, 'Trace', 1997, 'M', 421), +(162708, 'Dwayne', 1997, 'M', 418), +(162709, 'Sage', 1997, 'M', 417), +(162710, 'Issac', 1997, 'M', 416), +(162711, 'Solomon', 1997, 'M', 415), +(162712, 'Amir', 1997, 'M', 413), +(162713, 'Tevin', 1997, 'M', 408), +(162714, 'Stephon', 1997, 'M', 406), +(162715, 'Cullen', 1997, 'M', 405), +(162716, 'Quintin', 1997, 'M', 405), +(162717, 'Adan', 1997, 'M', 404), +(162718, 'Elliott', 1997, 'M', 404), +(162719, 'Rolando', 1997, 'M', 404), +(162720, 'Stephan', 1997, 'M', 401), +(162721, 'Mohammad', 1997, 'M', 397), +(162722, 'Kaden', 1997, 'M', 393), +(162723, 'Moses', 1997, 'M', 393), +(162724, 'Bennett', 1997, 'M', 392), +(162725, 'Dorian', 1997, 'M', 392), +(162726, 'Deven', 1997, 'M', 391), +(162727, 'Osvaldo', 1997, 'M', 391), +(162728, 'Deonte', 1997, 'M', 389), +(162729, 'River', 1997, 'M', 389), +(162730, 'Sawyer', 1997, 'M', 389), +(162731, 'Brad', 1997, 'M', 388), +(162732, 'Jayden', 1997, 'M', 387), +(162733, 'Sidney', 1997, 'M', 383), +(162734, 'Denzel', 1997, 'M', 382), +(162735, 'Quincy', 1997, 'M', 381), +(162736, 'Mackenzie', 1997, 'M', 380), +(162737, 'Wilson', 1997, 'M', 380), +(162738, 'Uriel', 1997, 'M', 379), +(162739, 'Alfred', 1997, 'M', 378), +(162740, 'Humberto', 1997, 'M', 377), +(162741, 'Ahmad', 1997, 'M', 375), +(162742, 'Brice', 1997, 'M', 375), +(162743, 'Geoffrey', 1997, 'M', 375), +(162744, 'Deangelo', 1997, 'M', 372), +(162745, 'Nigel', 1997, 'M', 372), +(162746, 'Ben', 1997, 'M', 370), +(162747, 'Forrest', 1997, 'M', 370), +(162748, 'Lewis', 1997, 'M', 370), +(162749, 'Demarcus', 1997, 'M', 366), +(162750, 'Efrain', 1997, 'M', 366), +(162751, 'Mohammed', 1997, 'M', 366), +(162752, 'Rashad', 1997, 'M', 366), +(162753, 'Vicente', 1997, 'M', 366), +(162754, 'Ralph', 1997, 'M', 364), +(162755, 'Antoine', 1997, 'M', 363), +(162756, 'Clarence', 1997, 'M', 360), +(162757, 'Addison', 1997, 'M', 359), +(162758, 'Dangelo', 1997, 'M', 359), +(162759, 'Roderick', 1997, 'M', 357), +(162760, 'Darnell', 1997, 'M', 354), +(162761, 'Jonas', 1997, 'M', 352), +(162762, 'Ezra', 1997, 'M', 351), +(162763, 'Kobe', 1997, 'M', 350), +(162764, 'Jaylon', 1997, 'M', 349), +(162765, 'Gunnar', 1997, 'M', 347), +(162766, 'Mohamed', 1997, 'M', 346), +(162767, 'Tate', 1997, 'M', 345), +(162768, 'Darien', 1997, 'M', 344), +(162769, 'Toby', 1997, 'M', 344), +(162770, 'Mateo', 1997, 'M', 340), +(162771, 'Nathanial', 1997, 'M', 339), +(162772, 'Alvaro', 1997, 'M', 336), +(162773, 'Dashawn', 1997, 'M', 335), +(162774, 'Mike', 1997, 'M', 334), +(162775, 'Derick', 1997, 'M', 332), +(162776, 'Ezequiel', 1997, 'M', 332), +(162777, 'Maximilian', 1997, 'M', 331), +(162778, 'Markus', 1997, 'M', 330), +(162779, 'Kade', 1997, 'M', 329), +(162780, 'Jaron', 1997, 'M', 327), +(162781, 'Caden', 1997, 'M', 326), +(162782, 'Howard', 1997, 'M', 324), +(162783, 'Clifford', 1997, 'M', 323), +(162784, 'Lamar', 1997, 'M', 323), +(162785, 'Brennen', 1997, 'M', 322), +(162786, 'Kai', 1997, 'M', 322), +(162787, 'Deon', 1997, 'M', 321), +(162788, 'Kurtis', 1997, 'M', 321), +(162789, 'Bernard', 1997, 'M', 319), +(162790, 'Cordell', 1997, 'M', 318), +(162791, 'Kirk', 1997, 'M', 317), +(162792, 'Barry', 1997, 'M', 316), +(162793, 'Perry', 1997, 'M', 315), +(162794, 'Joaquin', 1997, 'M', 312), +(162795, 'Kory', 1997, 'M', 311), +(162796, 'Dandre', 1997, 'M', 310), +(162797, 'Pierce', 1997, 'M', 308), +(162798, 'Leroy', 1997, 'M', 306), +(162799, 'Stuart', 1997, 'M', 305), +(162800, 'Deion', 1997, 'M', 303), +(162801, 'Leonel', 1997, 'M', 303), +(162802, 'Aron', 1997, 'M', 302), +(162803, 'Kolton', 1997, 'M', 299), +(162804, 'Mitchel', 1997, 'M', 299), +(162805, 'Everett', 1997, 'M', 297), +(162806, 'Irvin', 1997, 'M', 297), +(162807, 'Travon', 1997, 'M', 297), +(162808, 'Shannon', 1997, 'M', 296), +(162809, 'Agustin', 1997, 'M', 295), +(162810, 'Kareem', 1997, 'M', 295), +(162811, 'Daryl', 1997, 'M', 293), +(162812, 'Freddy', 1997, 'M', 293), +(162813, 'Norman', 1997, 'M', 293), +(162814, 'Reece', 1997, 'M', 293), +(162815, 'Camden', 1997, 'M', 292), +(162816, 'Dexter', 1997, 'M', 292), +(162817, 'Rhett', 1997, 'M', 292), +(162818, 'Ahmed', 1997, 'M', 290), +(162819, 'Aldo', 1997, 'M', 290), +(162820, 'Darion', 1997, 'M', 289), +(162821, 'Gordon', 1997, 'M', 288), +(162822, 'Dillan', 1997, 'M', 287), +(162823, 'Tristian', 1997, 'M', 287), +(162824, 'Bret', 1997, 'M', 285), +(162825, 'Dion', 1997, 'M', 285), +(162826, 'Kelly', 1997, 'M', 284), +(162827, 'Kasey', 1997, 'M', 283), +(162828, 'Raekwon', 1997, 'M', 282), +(162829, 'Adolfo', 1997, 'M', 280), +(162830, 'Conrad', 1997, 'M', 280), +(162831, 'Dayton', 1997, 'M', 279), +(162832, 'Earl', 1997, 'M', 278), +(162833, 'Stone', 1997, 'M', 277), +(162834, 'Brenton', 1997, 'M', 276), +(162835, 'Cyrus', 1997, 'M', 276), +(162836, 'Devyn', 1997, 'M', 276), +(162837, 'Fredrick', 1997, 'M', 276), +(162838, 'Jasper', 1997, 'M', 274), +(162839, 'Kolby', 1997, 'M', 274), +(162840, 'Salvatore', 1997, 'M', 274), +(162841, 'Carlton', 1997, 'M', 269), +(162842, 'Frankie', 1997, 'M', 268), +(162843, 'Madison', 1997, 'M', 268), +(162844, 'Will', 1997, 'M', 268), +(162845, 'Jarvis', 1997, 'M', 266), +(162846, 'Moshe', 1997, 'M', 265), +(162847, 'Romeo', 1997, 'M', 265), +(162848, 'Aiden', 1997, 'M', 264), +(162849, 'Tobias', 1997, 'M', 261), +(162850, 'Armani', 1997, 'M', 260), +(162851, 'Heath', 1997, 'M', 259), +(162852, 'Kane', 1997, 'M', 259), +(162853, 'Kieran', 1997, 'M', 259), +(162854, 'Raphael', 1997, 'M', 259), +(162855, 'Jamar', 1997, 'M', 258), +(162856, 'August', 1997, 'M', 257), +(162857, 'Hassan', 1997, 'M', 256), +(162858, 'Roland', 1997, 'M', 254), +(162859, 'Isaias', 1997, 'M', 253), +(162860, 'Brooks', 1997, 'M', 252), +(162861, 'Shayne', 1997, 'M', 252), +(162862, 'Tre', 1997, 'M', 252), +(162863, 'Houston', 1997, 'M', 251), +(162864, 'Rigoberto', 1997, 'M', 251), +(162865, 'Davion', 1997, 'M', 250), +(162866, 'German', 1997, 'M', 250), +(162867, 'Guadalupe', 1997, 'M', 250), +(162868, 'Jaylin', 1997, 'M', 250), +(162869, 'Marcel', 1997, 'M', 250), +(162870, 'Jean', 1997, 'M', 249), +(162871, 'Keshawn', 1997, 'M', 248), +(162872, 'Milton', 1997, 'M', 248), +(162873, 'Chaz', 1997, 'M', 247), +(162874, 'Dimitri', 1997, 'M', 247), +(162875, 'Arnold', 1997, 'M', 245), +(162876, 'Clark', 1997, 'M', 245), +(162877, 'Jamison', 1997, 'M', 245), +(162878, 'Neal', 1997, 'M', 245), +(162879, 'Courtney', 1997, 'M', 244), +(162880, 'Dwight', 1997, 'M', 244), +(162881, 'Austyn', 1997, 'M', 243), +(162882, 'Darrius', 1997, 'M', 243), +(162883, 'Colt', 1997, 'M', 242), +(162884, 'Jameson', 1997, 'M', 242), +(162885, 'Cristopher', 1997, 'M', 241), +(162886, 'Reese', 1997, 'M', 241), +(162887, 'Baby', 1997, 'M', 240), +(162888, 'Gianni', 1997, 'M', 240), +(162889, 'Rory', 1997, 'M', 240), +(162890, 'Kent', 1997, 'M', 239), +(162891, 'Donavan', 1997, 'M', 238), +(162892, 'Darin', 1997, 'M', 236), +(162893, 'Glen', 1997, 'M', 236), +(162894, 'Jefferson', 1997, 'M', 236), +(162895, 'Justus', 1997, 'M', 236), +(162896, 'Clint', 1997, 'M', 235), +(162897, 'Darrin', 1997, 'M', 234), +(162898, 'Ignacio', 1997, 'M', 234), +(162899, 'Reynaldo', 1997, 'M', 234), +(162900, 'Elisha', 1997, 'M', 233), +(162901, 'Tracy', 1997, 'M', 233), +(162902, 'Vernon', 1997, 'M', 231), +(162903, 'Layne', 1997, 'M', 230), +(162904, 'Ulises', 1997, 'M', 230), +(162905, 'Cruz', 1997, 'M', 229), +(162906, 'Gino', 1997, 'M', 229), +(162907, 'Silas', 1997, 'M', 229), +(162908, 'Talon', 1997, 'M', 229), +(162909, 'Estevan', 1997, 'M', 228), +(162910, 'Jovan', 1997, 'M', 228), +(162911, 'Braeden', 1997, 'M', 227), +(162912, 'Lloyd', 1997, 'M', 227), +(162913, 'Hakeem', 1997, 'M', 226), +(162914, 'Lamont', 1997, 'M', 226), +(162915, 'Quinten', 1997, 'M', 225), +(162916, 'Rickey', 1997, 'M', 224), +(162917, 'Hudson', 1997, 'M', 223), +(162918, 'Jairo', 1997, 'M', 223), +(162919, 'Raheem', 1997, 'M', 223), +(162920, 'Cornelius', 1997, 'M', 222), +(162921, 'Elmer', 1997, 'M', 222), +(162922, 'Korey', 1997, 'M', 222), +(162923, 'Lonnie', 1997, 'M', 222), +(162924, 'Misael', 1997, 'M', 222), +(162925, 'Clifton', 1997, 'M', 221), +(162926, 'Fred', 1997, 'M', 221), +(162927, 'Anton', 1997, 'M', 220), +(162928, 'Coby', 1997, 'M', 219), +(162929, 'Marquez', 1997, 'M', 218), +(162930, 'Muhammad', 1997, 'M', 217), +(162931, 'Santos', 1997, 'M', 217), +(162932, 'Dylon', 1997, 'M', 216), +(162933, 'Thaddeus', 1997, 'M', 216), +(162934, 'Trever', 1997, 'M', 215), +(162935, 'Elvis', 1997, 'M', 214), +(162936, 'Jaret', 1997, 'M', 214), +(162937, 'Kristofer', 1997, 'M', 214), +(162938, 'Asher', 1997, 'M', 213), +(162939, 'Cortez', 1997, 'M', 213), +(162940, 'Junior', 1997, 'M', 213), +(162941, 'Tariq', 1997, 'M', 213), +(162942, 'Gunner', 1997, 'M', 210), +(162943, 'Keon', 1997, 'M', 210), +(162944, 'Dawson', 1997, 'M', 209), +(162945, 'Antwan', 1997, 'M', 208), +(162946, 'Infant', 1997, 'M', 208), +(162947, 'Camron', 1997, 'M', 207), +(162948, 'Winston', 1997, 'M', 206), +(162949, 'Jaleel', 1997, 'M', 205), +(162950, 'Bradly', 1997, 'M', 203), +(162951, 'Duane', 1997, 'M', 203), +(162952, 'Gonzalo', 1997, 'M', 202), +(162953, 'Hugh', 1997, 'M', 202), +(162954, 'Kole', 1997, 'M', 202), +(162955, 'Ladarius', 1997, 'M', 202), +(162956, 'Davonte', 1997, 'M', 201), +(162957, 'Freddie', 1997, 'M', 201), +(162958, 'Jamel', 1997, 'M', 201), +(162959, 'Nestor', 1997, 'M', 201), +(162960, 'Shelby', 1997, 'M', 199), +(162961, 'Emmett', 1997, 'M', 198), +(162962, 'Octavio', 1997, 'M', 198), +(162963, 'Remington', 1997, 'M', 198), +(162964, 'Asa', 1997, 'M', 197), +(162965, 'Darrion', 1997, 'M', 197), +(162966, 'Johnnie', 1997, 'M', 197), +(162967, 'Aubrey', 1997, 'M', 196), +(162968, 'Ellis', 1997, 'M', 196), +(162969, 'Koby', 1997, 'M', 196), +(162970, 'Nash', 1997, 'M', 196), +(162971, 'Herbert', 1997, 'M', 195), +(162972, 'Jackie', 1997, 'M', 195), +(162973, 'Orion', 1997, 'M', 195), +(162974, 'Sammy', 1997, 'M', 195), +(162975, 'Zakary', 1997, 'M', 195), +(162976, 'Alonso', 1997, 'M', 194), +(162977, 'Don', 1997, 'M', 194), +(162978, 'Easton', 1997, 'M', 194), +(162979, 'Keanu', 1997, 'M', 194), +(162980, 'Keyshawn', 1997, 'M', 194), +(162981, 'Rashawn', 1997, 'M', 194), +(162982, 'Tyquan', 1997, 'M', 194), +(162983, 'Zechariah', 1997, 'M', 194), +(162984, 'Jimmie', 1997, 'M', 193), +(162985, 'Bernardo', 1997, 'M', 192), +(162986, 'Garrison', 1997, 'M', 192), +(162987, 'Reuben', 1997, 'M', 192), +(162988, 'Gerard', 1997, 'M', 190), +(162989, 'Ibrahim', 1997, 'M', 190), +(162990, 'Kellen', 1997, 'M', 190), +(162991, 'Raymundo', 1997, 'M', 190), +(162992, 'Rick', 1997, 'M', 190), +(162993, 'Antony', 1997, 'M', 189), +(162994, 'Brandan', 1997, 'M', 189), +(162995, 'Josh', 1997, 'M', 189), +(162996, 'Maverick', 1997, 'M', 189), +(162997, 'Nasir', 1997, 'M', 189), +(162998, 'Adonis', 1997, 'M', 188), +(162999, 'Julien', 1997, 'M', 188), +(163000, 'Kerry', 1997, 'M', 188), +(163001, 'Dontae', 1997, 'M', 187), +(163002, 'Guy', 1997, 'M', 187), +(163003, 'Dallin', 1997, 'M', 186), +(163004, 'Jabari', 1997, 'M', 186), +(163005, 'Kelton', 1997, 'M', 185), +(163006, 'Kennedy', 1997, 'M', 185), +(163007, 'Destin', 1997, 'M', 184), +(163008, 'Dillion', 1997, 'M', 184), +(163009, 'Alexandro', 1997, 'M', 183), +(163010, 'Brayan', 1997, 'M', 183), +(163011, 'Dequan', 1997, 'M', 183), +(163012, 'Donnie', 1997, 'M', 183), +(163013, 'Josef', 1997, 'M', 183), +(163014, 'Pierre', 1997, 'M', 183), +(163015, 'Shamar', 1997, 'M', 183), +(163016, 'Domenic', 1997, 'M', 182), +(163017, 'Jorden', 1997, 'M', 182), +(163018, 'Marques', 1997, 'M', 182), +(163019, 'Reilly', 1997, 'M', 182), +(163020, 'Ari', 1997, 'M', 181), +(163021, 'Fidel', 1997, 'M', 181), +(163022, 'Montana', 1997, 'M', 181), +(163023, 'Ryder', 1997, 'M', 181), +(163024, 'Myron', 1997, 'M', 180), +(163025, 'Shea', 1997, 'M', 180), +(163026, 'Anderson', 1997, 'M', 179), +(163027, 'Justyn', 1997, 'M', 179), +(163028, 'Davin', 1997, 'M', 178), +(163029, 'Dusty', 1997, 'M', 178), +(163030, 'Trystan', 1997, 'M', 178), +(163031, 'Bradford', 1997, 'M', 177), +(163032, 'Paris', 1997, 'M', 177), +(163033, 'Auston', 1997, 'M', 176), +(163034, 'Benito', 1997, 'M', 176), +(163035, 'Heriberto', 1997, 'M', 176), +(163036, 'Javonte', 1997, 'M', 176), +(163037, 'Brandyn', 1997, 'M', 175), +(163038, 'Deshaun', 1997, 'M', 175), +(163039, 'Garett', 1997, 'M', 175), +(163040, 'Robin', 1997, 'M', 175), +(163041, 'Vance', 1997, 'M', 175), +(163042, 'Braydon', 1997, 'M', 174), +(163043, 'Jamarcus', 1997, 'M', 174), +(163044, 'Rohan', 1997, 'M', 174), +(163045, 'Chaim', 1997, 'M', 173), +(163046, 'Dewayne', 1997, 'M', 173), +(163047, 'Terence', 1997, 'M', 172), +(163048, 'Anfernee', 1997, 'M', 171), +(163049, 'Greyson', 1997, 'M', 171), +(163050, 'Axel', 1997, 'M', 170), +(163051, 'Demarco', 1997, 'M', 170), +(163052, 'Turner', 1997, 'M', 170), +(163053, 'Aric', 1997, 'M', 169), +(163054, 'Rylan', 1997, 'M', 169), +(163055, 'Deondre', 1997, 'M', 168), +(163056, 'Jaylan', 1997, 'M', 168), +(163057, 'Kevon', 1997, 'M', 167), +(163058, 'Leland', 1997, 'M', 167), +(163059, 'Loren', 1997, 'M', 167), +(163060, 'Valentin', 1997, 'M', 167), +(163061, 'Benny', 1997, 'M', 166), +(163062, 'Jerrod', 1997, 'M', 166), +(163063, 'Keven', 1997, 'M', 166), +(163064, 'Maximillian', 1997, 'M', 166), +(163065, 'Reagan', 1997, 'M', 166), +(163066, 'Dominik', 1997, 'M', 165), +(163067, 'Lester', 1997, 'M', 165), +(163068, 'Dan', 1997, 'M', 164), +(163069, 'Gene', 1997, 'M', 164), +(163070, 'Hernan', 1997, 'M', 164), +(163071, 'Jaxon', 1997, 'M', 164), +(163072, 'Seamus', 1997, 'M', 164), +(163073, 'Bronson', 1997, 'M', 163), +(163074, 'Abram', 1997, 'M', 162), +(163075, 'Carlo', 1997, 'M', 162), +(163076, 'Deontae', 1997, 'M', 162), +(163077, 'Herman', 1997, 'M', 162), +(163078, 'Denver', 1997, 'M', 161), +(163079, 'Dejuan', 1997, 'M', 160), +(163080, 'Efren', 1997, 'M', 160), +(163081, 'Branson', 1997, 'M', 159), +(163082, 'Donnell', 1997, 'M', 159), +(163083, 'Edgardo', 1997, 'M', 159), +(163084, 'Giovanny', 1997, 'M', 159), +(163085, 'Mikel', 1997, 'M', 159), +(163086, 'Titus', 1997, 'M', 159), +(163087, 'Andreas', 1997, 'M', 158), +(163088, 'Armand', 1997, 'M', 158), +(163089, 'Draven', 1997, 'M', 158), +(163090, 'Leslie', 1997, 'M', 158), +(163091, 'Nico', 1997, 'M', 158), +(163092, 'Tyron', 1997, 'M', 158), +(163093, 'Tyshawn', 1997, 'M', 158), +(163094, 'Ronaldo', 1997, 'M', 157), +(163095, 'Devonta', 1997, 'M', 156), +(163096, 'Grady', 1997, 'M', 156), +(163097, 'Jacques', 1997, 'M', 156), +(163098, 'Lincoln', 1997, 'M', 156), +(163099, 'Markel', 1997, 'M', 156), +(163100, 'Nicklaus', 1997, 'M', 156), +(163101, 'Sonny', 1997, 'M', 156), +(163102, 'Dario', 1997, 'M', 155), +(163103, 'Deante', 1997, 'M', 155), +(163104, 'Jerod', 1997, 'M', 155), +(163105, 'Syed', 1997, 'M', 155), +(163106, 'Ulysses', 1997, 'M', 155), +(163107, 'Abdul', 1997, 'M', 154), +(163108, 'Arron', 1997, 'M', 154), +(163109, 'Eliseo', 1997, 'M', 154), +(163110, 'Bo', 1997, 'M', 153), +(163111, 'Dakotah', 1997, 'M', 153), +(163112, 'Amos', 1997, 'M', 152), +(163113, 'Ishmael', 1997, 'M', 152), +(163114, 'Rex', 1997, 'M', 152), +(163115, 'Dana', 1997, 'M', 151), +(163116, 'Harvey', 1997, 'M', 151), +(163117, 'Jamil', 1997, 'M', 151), +(163118, 'Tayler', 1997, 'M', 151), +(163119, 'Brennon', 1997, 'M', 150), +(163120, 'Coleton', 1997, 'M', 150), +(163121, 'Gregorio', 1997, 'M', 150), +(163122, 'Khalid', 1997, 'M', 150), +(163123, 'Tarik', 1997, 'M', 150), +(163124, 'Amari', 1997, 'M', 149), +(163125, 'Jarett', 1997, 'M', 149), +(163126, 'Phoenix', 1997, 'M', 149), +(163127, 'Vaughn', 1997, 'M', 149), +(163128, 'Broderick', 1997, 'M', 148), +(163129, 'Coty', 1997, 'M', 148), +(163130, 'Rasheed', 1997, 'M', 148), +(163131, 'Alton', 1997, 'M', 147), +(163132, 'Chauncey', 1997, 'M', 147), +(163133, 'Cristobal', 1997, 'M', 147), +(163134, 'Edmund', 1997, 'M', 147), +(163135, 'Erich', 1997, 'M', 147), +(163136, 'Keyon', 1997, 'M', 147), +(163137, 'Niko', 1997, 'M', 147), +(163138, 'Barrett', 1997, 'M', 146), +(163139, 'Eddy', 1997, 'M', 146), +(163140, 'Samir', 1997, 'M', 146), +(163141, 'Isidro', 1997, 'M', 145), +(163142, 'Kahlil', 1997, 'M', 145), +(163143, 'Kenton', 1997, 'M', 145), +(163144, 'Killian', 1997, 'M', 145), +(163145, 'Nick', 1997, 'M', 145), +(163146, 'Brant', 1997, 'M', 144), +(163147, 'Floyd', 1997, 'M', 144), +(163148, 'Paxton', 1997, 'M', 144), +(163149, 'Alden', 1997, 'M', 143), +(163150, 'Coy', 1997, 'M', 143), +(163151, 'Jade', 1997, 'M', 143), +(163152, 'Landen', 1997, 'M', 143), +(163153, 'Menachem', 1997, 'M', 143), +(163154, 'Rico', 1997, 'M', 143), +(163155, 'Shaquan', 1997, 'M', 143), +(163156, 'Simeon', 1997, 'M', 143), +(163157, 'Codey', 1997, 'M', 142), +(163158, 'Raven', 1997, 'M', 142), +(163159, 'Rocky', 1997, 'M', 142), +(163160, 'Cain', 1997, 'M', 141), +(163161, 'Darrian', 1997, 'M', 141), +(163162, 'Hans', 1997, 'M', 141), +(163163, 'Isai', 1997, 'M', 141), +(163164, 'Jacoby', 1997, 'M', 141), +(163165, 'Jamari', 1997, 'M', 140), +(163166, 'Jovani', 1997, 'M', 139), +(163167, 'Jovanny', 1997, 'M', 139), +(163168, 'Keandre', 1997, 'M', 139), +(163169, 'Darrien', 1997, 'M', 138), +(163170, 'Storm', 1997, 'M', 138), +(163171, 'Augustus', 1997, 'M', 137), +(163172, 'Jessy', 1997, 'M', 137), +(163173, 'Kalvin', 1997, 'M', 137), +(163174, 'Blaise', 1997, 'M', 136), +(163175, 'Clyde', 1997, 'M', 136), +(163176, 'Darwin', 1997, 'M', 136), +(163177, 'Devontae', 1997, 'M', 136), +(163178, 'Ervin', 1997, 'M', 136), +(163179, 'Kenan', 1997, 'M', 136), +(163180, 'Markell', 1997, 'M', 136), +(163181, 'Mickey', 1997, 'M', 136), +(163182, 'Cecil', 1997, 'M', 135), +(163183, 'Kenyon', 1997, 'M', 135), +(163184, 'Marcelo', 1997, 'M', 135), +(163185, 'Samson', 1997, 'M', 135), +(163186, 'Ramsey', 1997, 'M', 134), +(163187, 'Waylon', 1997, 'M', 134), +(163188, 'Bryon', 1997, 'M', 133), +(163189, 'Jeff', 1997, 'M', 133), +(163190, 'Kordell', 1997, 'M', 133), +(163191, 'Cale', 1997, 'M', 132), +(163192, 'Donavon', 1997, 'M', 132), +(163193, 'Jajuan', 1997, 'M', 132), +(163194, 'Jayce', 1997, 'M', 132), +(163195, 'Omari', 1997, 'M', 132), +(163196, 'Royce', 1997, 'M', 132), +(163197, 'Eliezer', 1997, 'M', 131), +(163198, 'Irving', 1997, 'M', 131), +(163199, 'Jaren', 1997, 'M', 131), +(163200, 'Marion', 1997, 'M', 131), +(163201, 'Treyvon', 1997, 'M', 131), +(163202, 'Uriah', 1997, 'M', 131), +(163203, 'Emiliano', 1997, 'M', 130), +(163204, 'Giancarlo', 1997, 'M', 130), +(163205, 'Jim', 1997, 'M', 130), +(163206, 'Ryley', 1997, 'M', 130), +(163207, 'Trae', 1997, 'M', 130), +(163208, 'Daulton', 1997, 'M', 129), +(163209, 'Nikhil', 1997, 'M', 129), +(163210, 'Judah', 1997, 'M', 128), +(163211, 'Jude', 1997, 'M', 128), +(163212, 'Maximiliano', 1997, 'M', 128), +(163213, 'Mikal', 1997, 'M', 128), +(163214, 'Rayshawn', 1997, 'M', 128), +(163215, 'Zaire', 1997, 'M', 128), +(163216, 'Bilal', 1997, 'M', 127), +(163217, 'Daron', 1997, 'M', 127), +(163218, 'Dionte', 1997, 'M', 127), +(163219, 'Jacquez', 1997, 'M', 127), +(163220, 'Samual', 1997, 'M', 127), +(163221, 'Ted', 1997, 'M', 127), +(163222, 'Trevin', 1997, 'M', 127), +(163223, 'Dakoda', 1997, 'M', 126), +(163224, 'Dyllan', 1997, 'M', 126), +(163225, 'Nehemiah', 1997, 'M', 126), +(163226, 'Abdullah', 1997, 'M', 125), +(163227, 'Adrien', 1997, 'M', 125), +(163228, 'Brandt', 1997, 'M', 125), +(163229, 'Ken', 1997, 'M', 125), +(163230, 'Mariano', 1997, 'M', 125), +(163231, 'Mohamad', 1997, 'M', 125), +(163232, 'Savon', 1997, 'M', 125), +(163233, 'Schuyler', 1997, 'M', 125), +(163234, 'Tom', 1997, 'M', 125), +(163235, 'Alexandre', 1997, 'M', 124), +(163236, 'Arman', 1997, 'M', 124), +(163237, 'Brodie', 1997, 'M', 124), +(163238, 'Chadwick', 1997, 'M', 124), +(163239, 'Daren', 1997, 'M', 124), +(163240, 'Declan', 1997, 'M', 124), +(163241, 'Erin', 1997, 'M', 124), +(163242, 'Genaro', 1997, 'M', 124), +(163243, 'Jadon', 1997, 'M', 124), +(163244, 'Keagan', 1997, 'M', 124), +(163245, 'Nathen', 1997, 'M', 124), +(163246, 'Shelton', 1997, 'M', 124), +(163247, 'Sherman', 1997, 'M', 124), +(163248, 'Vincenzo', 1997, 'M', 124), +(163249, 'Federico', 1997, 'M', 123), +(163250, 'Konner', 1997, 'M', 123), +(163251, 'London', 1997, 'M', 123), +(163252, 'Prince', 1997, 'M', 123), +(163253, 'Rahul', 1997, 'M', 123), +(163254, 'Chester', 1997, 'M', 122), +(163255, 'Kirkland', 1997, 'M', 122), +(163256, 'Randolph', 1997, 'M', 122), +(163257, 'Ridge', 1997, 'M', 122), +(163258, 'Stetson', 1997, 'M', 122), +(163259, 'Vladimir', 1997, 'M', 122), +(163260, 'Hasan', 1997, 'M', 121), +(163261, 'Jelani', 1997, 'M', 121), +(163262, 'Lionel', 1997, 'M', 121), +(163263, 'Lyle', 1997, 'M', 121), +(163264, 'Pete', 1997, 'M', 121), +(163265, 'Stewart', 1997, 'M', 121), +(163266, 'Tahj', 1997, 'M', 121), +(163267, 'Tavon', 1997, 'M', 121), +(163268, 'Jovany', 1997, 'M', 120), +(163269, 'Rey', 1997, 'M', 120), +(163270, 'Romello', 1997, 'M', 120), +(163271, 'Santino', 1997, 'M', 120), +(163272, 'Tyreek', 1997, 'M', 120), +(163273, 'Tyrus', 1997, 'M', 120), +(163274, 'Dezmond', 1997, 'M', 119), +(163275, 'Emerson', 1997, 'M', 119), +(163276, 'Jawan', 1997, 'M', 119), +(163277, 'Keenen', 1997, 'M', 119), +(163278, 'Keion', 1997, 'M', 119), +(163279, 'Malique', 1997, 'M', 119), +(163280, 'Milan', 1997, 'M', 119), +(163281, 'Mustafa', 1997, 'M', 119), +(163282, 'Shemar', 1997, 'M', 119), +(163283, 'Bruno', 1997, 'M', 118), +(163284, 'Brycen', 1997, 'M', 118), +(163285, 'Courtland', 1997, 'M', 118), +(163286, 'Francesco', 1997, 'M', 118), +(163287, 'Giovani', 1997, 'M', 118), +(163288, 'Luciano', 1997, 'M', 118), +(163289, 'Shakur', 1997, 'M', 118), +(163290, 'Trayvon', 1997, 'M', 118), +(163291, 'Domingo', 1997, 'M', 117), +(163292, 'Gideon', 1997, 'M', 117), +(163293, 'Johan', 1997, 'M', 117), +(163294, 'Justen', 1997, 'M', 117), +(163295, 'Ron', 1997, 'M', 117), +(163296, 'Sydney', 1997, 'M', 117), +(163297, 'Xzavier', 1997, 'M', 117), +(163298, 'Akeem', 1997, 'M', 116), +(163299, 'Dajuan', 1997, 'M', 116), +(163300, 'Jonatan', 1997, 'M', 116), +(163301, 'Marlin', 1997, 'M', 116), +(163302, 'Rashaad', 1997, 'M', 116), +(163303, 'Teddy', 1997, 'M', 116), +(163304, 'Tyrek', 1997, 'M', 116), +(163305, 'Wendell', 1997, 'M', 116), +(163306, 'Antwon', 1997, 'M', 115), +(163307, 'Babyboy', 1997, 'M', 115), +(163308, 'Blair', 1997, 'M', 115), +(163309, 'Bridger', 1997, 'M', 115), +(163310, 'Demario', 1997, 'M', 115), +(163311, 'Dondre', 1997, 'M', 115), +(163312, 'Harris', 1997, 'M', 115), +(163313, 'Jess', 1997, 'M', 115), +(163314, 'Karim', 1997, 'M', 115), +(163315, 'Kegan', 1997, 'M', 115), +(163316, 'Khari', 1997, 'M', 115), +(163317, 'Kirby', 1997, 'M', 115), +(163318, 'Marquel', 1997, 'M', 115), +(163319, 'Augustine', 1997, 'M', 114), +(163320, 'Britton', 1997, 'M', 114), +(163321, 'Dustyn', 1997, 'M', 114), +(163322, 'Galen', 1997, 'M', 114), +(163323, 'Tye', 1997, 'M', 114), +(163324, 'Alek', 1997, 'M', 113), +(163325, 'Brannon', 1997, 'M', 113), +(163326, 'Cedrick', 1997, 'M', 113), +(163327, 'Desean', 1997, 'M', 113), +(163328, 'Izaiah', 1997, 'M', 113), +(163329, 'Jalon', 1997, 'M', 113), +(163330, 'Jedidiah', 1997, 'M', 113), +(163331, 'Joan', 1997, 'M', 113), +(163332, 'Kylan', 1997, 'M', 113), +(163333, 'Kyree', 1997, 'M', 113), +(163334, 'Mordechai', 1997, 'M', 113), +(163335, 'Demonte', 1997, 'M', 112), +(163336, 'Foster', 1997, 'M', 112), +(163337, 'Jamaal', 1997, 'M', 112), +(163338, 'Reno', 1997, 'M', 112), +(163339, 'Wilfredo', 1997, 'M', 112), +(163340, 'Deanthony', 1997, 'M', 111), +(163341, 'Gaige', 1997, 'M', 111), +(163342, 'Otis', 1997, 'M', 111), +(163343, 'Taj', 1997, 'M', 111), +(163344, 'Caelan', 1997, 'M', 110), +(163345, 'Dejon', 1997, 'M', 110), +(163346, 'Elvin', 1997, 'M', 110), +(163347, 'Kelby', 1997, 'M', 110), +(163348, 'Spenser', 1997, 'M', 110), +(163349, 'Kalen', 1997, 'M', 109), +(163350, 'Marcellus', 1997, 'M', 109), +(163351, 'Raquan', 1997, 'M', 109), +(163352, 'Rowan', 1997, 'M', 109), +(163353, 'Alessandro', 1997, 'M', 108), +(163354, 'Demond', 1997, 'M', 108), +(163355, 'Ira', 1997, 'M', 108), +(163356, 'Layton', 1997, 'M', 108), +(163357, 'Najee', 1997, 'M', 108), +(163358, 'Osbaldo', 1997, 'M', 108), +(163359, 'Randal', 1997, 'M', 108), +(163360, 'Immanuel', 1997, 'M', 107), +(163361, 'Tylar', 1997, 'M', 107), +(163362, 'Yisroel', 1997, 'M', 107), +(163363, 'Dashaun', 1997, 'M', 106), +(163364, 'Dereck', 1997, 'M', 106), +(163365, 'Isaak', 1997, 'M', 106), +(163366, 'Jarret', 1997, 'M', 106), +(163367, 'Jody', 1997, 'M', 106), +(163368, 'Matteo', 1997, 'M', 106), +(163369, 'Oswaldo', 1997, 'M', 106), +(163370, 'Sami', 1997, 'M', 106), +(163371, 'Denis', 1997, 'M', 105), +(163372, 'Fredy', 1997, 'M', 105), +(163373, 'Juancarlos', 1997, 'M', 105), +(163374, 'Louie', 1997, 'M', 105), +(163375, 'Tory', 1997, 'M', 105), +(163376, 'Eleazar', 1997, 'M', 104), +(163377, 'Forest', 1997, 'M', 104), +(163378, 'Yosef', 1997, 'M', 104), +(163379, 'Bill', 1997, 'M', 103), +(163380, 'Dajour', 1997, 'M', 103), +(163381, 'Daylon', 1997, 'M', 103), +(163382, 'Jordy', 1997, 'M', 103), +(163383, 'Kale', 1997, 'M', 103), +(163384, 'Luc', 1997, 'M', 103), +(163385, 'Rodrick', 1997, 'M', 103), +(163386, 'Stevie', 1997, 'M', 103), +(163387, 'Sylvester', 1997, 'M', 103), +(163388, 'Alexzander', 1997, 'M', 102), +(163389, 'Demetri', 1997, 'M', 102), +(163390, 'Sahil', 1997, 'M', 102), +(163391, 'Shyheim', 1997, 'M', 102), +(163392, 'Chace', 1997, 'M', 101), +(163393, 'Jett', 1997, 'M', 101), +(163394, 'Kendell', 1997, 'M', 101), +(163395, 'Luther', 1997, 'M', 101), +(163396, 'Malcom', 1997, 'M', 101), +(163397, 'Monte', 1997, 'M', 101), +(163398, 'Rusty', 1997, 'M', 101), +(163399, 'Shay', 1997, 'M', 101), +(163400, 'Blaze', 1997, 'M', 100), +(163401, 'Cayden', 1997, 'M', 100), +(163402, 'Claudio', 1997, 'M', 100), +(163403, 'Garry', 1997, 'M', 100), +(163404, 'Jordyn', 1997, 'M', 100), +(163405, 'Joseluis', 1997, 'M', 100), +(163406, 'Kolten', 1997, 'M', 100), +(163407, 'Ryne', 1997, 'M', 100), +(163408, 'Emily', 1998, 'F', 26179), +(163409, 'Hannah', 1998, 'F', 21371), +(163410, 'Samantha', 1998, 'F', 20191), +(163411, 'Sarah', 1998, 'F', 19870), +(163412, 'Ashley', 1998, 'F', 19869), +(163413, 'Alexis', 1998, 'F', 19777), +(163414, 'Taylor', 1998, 'F', 18572), +(163415, 'Jessica', 1998, 'F', 18231), +(163416, 'Madison', 1998, 'F', 17786), +(163417, 'Elizabeth', 1998, 'F', 15178), +(163418, 'Alyssa', 1998, 'F', 13709), +(163419, 'Kayla', 1998, 'F', 13422), +(163420, 'Megan', 1998, 'F', 13254), +(163421, 'Lauren', 1998, 'F', 12907), +(163422, 'Rachel', 1998, 'F', 12194), +(163423, 'Victoria', 1998, 'F', 12144), +(163424, 'Brianna', 1998, 'F', 12046), +(163425, 'Abigail', 1998, 'F', 11095), +(163426, 'Amanda', 1998, 'F', 10906), +(163427, 'Jennifer', 1998, 'F', 10687), +(163428, 'Olivia', 1998, 'F', 10610), +(163429, 'Emma', 1998, 'F', 10431), +(163430, 'Morgan', 1998, 'F', 10214), +(163431, 'Nicole', 1998, 'F', 9911), +(163432, 'Brittany', 1998, 'F', 9843), +(163433, 'Jasmine', 1998, 'F', 9479), +(163434, 'Alexandra', 1998, 'F', 8604), +(163435, 'Sydney', 1998, 'F', 8549), +(163436, 'Stephanie', 1998, 'F', 8487), +(163437, 'Rebecca', 1998, 'F', 8418), +(163438, 'Anna', 1998, 'F', 8371), +(163439, 'Julia', 1998, 'F', 8326), +(163440, 'Katherine', 1998, 'F', 8203), +(163441, 'Destiny', 1998, 'F', 8149), +(163442, 'Haley', 1998, 'F', 7935), +(163443, 'Kaitlyn', 1998, 'F', 7934), +(163444, 'Amber', 1998, 'F', 7929), +(163445, 'Allison', 1998, 'F', 7861), +(163446, 'Courtney', 1998, 'F', 7554), +(163447, 'Natalie', 1998, 'F', 7545), +(163448, 'Danielle', 1998, 'F', 7367), +(163449, 'Jordan', 1998, 'F', 7111), +(163450, 'Maria', 1998, 'F', 6812), +(163451, 'Savannah', 1998, 'F', 6461), +(163452, 'Mary', 1998, 'F', 6429), +(163453, 'Brooke', 1998, 'F', 6344), +(163454, 'Gabrielle', 1998, 'F', 6200), +(163455, 'Sara', 1998, 'F', 6007), +(163456, 'Shelby', 1998, 'F', 5893), +(163457, 'Madeline', 1998, 'F', 5868), +(163458, 'Sierra', 1998, 'F', 5840), +(163459, 'Vanessa', 1998, 'F', 5829), +(163460, 'Kimberly', 1998, 'F', 5719), +(163461, 'Grace', 1998, 'F', 5717), +(163462, 'Michelle', 1998, 'F', 5558), +(163463, 'Kelsey', 1998, 'F', 5550), +(163464, 'Erin', 1998, 'F', 5473), +(163465, 'Katelyn', 1998, 'F', 5366), +(163466, 'Melissa', 1998, 'F', 5355), +(163467, 'Bailey', 1998, 'F', 5195), +(163468, 'Andrea', 1998, 'F', 5131), +(163469, 'Mariah', 1998, 'F', 5085), +(163470, 'Paige', 1998, 'F', 4975), +(163471, 'Mackenzie', 1998, 'F', 4890), +(163472, 'Jenna', 1998, 'F', 4864), +(163473, 'Marissa', 1998, 'F', 4720), +(163474, 'Tiffany', 1998, 'F', 4612), +(163475, 'Sabrina', 1998, 'F', 4605), +(163476, 'Christina', 1998, 'F', 4529), +(163477, 'Hailey', 1998, 'F', 4472), +(163478, 'Makayla', 1998, 'F', 4364), +(163479, 'Cheyenne', 1998, 'F', 4325), +(163480, 'Sophia', 1998, 'F', 4304), +(163481, 'Laura', 1998, 'F', 4286), +(163482, 'Caroline', 1998, 'F', 4274), +(163483, 'Breanna', 1998, 'F', 4250), +(163484, 'Autumn', 1998, 'F', 4207), +(163485, 'Caitlin', 1998, 'F', 4175), +(163486, 'Briana', 1998, 'F', 4153), +(163487, 'Miranda', 1998, 'F', 4142), +(163488, 'Alexandria', 1998, 'F', 4009), +(163489, 'Mikayla', 1998, 'F', 3858), +(163490, 'Diana', 1998, 'F', 3854), +(163491, 'Isabella', 1998, 'F', 3849), +(163492, 'Cassandra', 1998, 'F', 3814), +(163493, 'Kaylee', 1998, 'F', 3806), +(163494, 'Chloe', 1998, 'F', 3793), +(163495, 'Katie', 1998, 'F', 3722), +(163496, 'Kelly', 1998, 'F', 3702), +(163497, 'Kathryn', 1998, 'F', 3699), +(163498, 'Claire', 1998, 'F', 3641), +(163499, 'Erica', 1998, 'F', 3624), +(163500, 'Alexa', 1998, 'F', 3622), +(163501, 'Chelsea', 1998, 'F', 3518), +(163502, 'Jacqueline', 1998, 'F', 3500), +(163503, 'Amy', 1998, 'F', 3485), +(163504, 'Lindsey', 1998, 'F', 3465), +(163505, 'Alicia', 1998, 'F', 3407), +(163506, 'Heather', 1998, 'F', 3395), +(163507, 'Angela', 1998, 'F', 3369), +(163508, 'Catherine', 1998, 'F', 3347), +(163509, 'Kristen', 1998, 'F', 3347), +(163510, 'Michaela', 1998, 'F', 3340), +(163511, 'Shannon', 1998, 'F', 3277), +(163512, 'Monica', 1998, 'F', 3227), +(163513, 'Faith', 1998, 'F', 3216), +(163514, 'Leah', 1998, 'F', 3215), +(163515, 'Molly', 1998, 'F', 3190), +(163516, 'Angelica', 1998, 'F', 3182), +(163517, 'Crystal', 1998, 'F', 3174), +(163518, 'Leslie', 1998, 'F', 3078), +(163519, 'Jamie', 1998, 'F', 3064), +(163520, 'Cassidy', 1998, 'F', 3045), +(163521, 'Margaret', 1998, 'F', 2962), +(163522, 'Caitlyn', 1998, 'F', 2937), +(163523, 'Gabriella', 1998, 'F', 2922), +(163524, 'Kylie', 1998, 'F', 2879), +(163525, 'Isabel', 1998, 'F', 2826), +(163526, 'Jada', 1998, 'F', 2711), +(163527, 'Kaitlin', 1998, 'F', 2701), +(163528, 'Meghan', 1998, 'F', 2696), +(163529, 'Zoe', 1998, 'F', 2692), +(163530, 'Maya', 1998, 'F', 2684), +(163531, 'Erika', 1998, 'F', 2671), +(163532, 'Jade', 1998, 'F', 2656), +(163533, 'Cynthia', 1998, 'F', 2632), +(163534, 'Veronica', 1998, 'F', 2631), +(163535, 'Jocelyn', 1998, 'F', 2582), +(163536, 'Gabriela', 1998, 'F', 2576), +(163537, 'Mia', 1998, 'F', 2566), +(163538, 'Summer', 1998, 'F', 2558), +(163539, 'Bethany', 1998, 'F', 2490), +(163540, 'Esmeralda', 1998, 'F', 2476), +(163541, 'Adriana', 1998, 'F', 2475), +(163542, 'Melanie', 1998, 'F', 2459), +(163543, 'Daisy', 1998, 'F', 2448), +(163544, 'Ariana', 1998, 'F', 2423), +(163545, 'Angel', 1998, 'F', 2384), +(163546, 'Selena', 1998, 'F', 2278), +(163547, 'Carly', 1998, 'F', 2262), +(163548, 'Ana', 1998, 'F', 2258), +(163549, 'Mckenzie', 1998, 'F', 2243), +(163550, 'Brittney', 1998, 'F', 2239), +(163551, 'Karina', 1998, 'F', 2235), +(163552, 'Audrey', 1998, 'F', 2201), +(163553, 'Dominique', 1998, 'F', 2159), +(163554, 'Ariel', 1998, 'F', 2149), +(163555, 'Valerie', 1998, 'F', 2142), +(163556, 'Brenda', 1998, 'F', 2133), +(163557, 'Casey', 1998, 'F', 2103), +(163558, 'Hayley', 1998, 'F', 2084), +(163559, 'Karen', 1998, 'F', 2072), +(163560, 'Lydia', 1998, 'F', 2060), +(163561, 'Kendra', 1998, 'F', 2035), +(163562, 'Rebekah', 1998, 'F', 2028), +(163563, 'Alejandra', 1998, 'F', 2019), +(163564, 'Bianca', 1998, 'F', 2019), +(163565, 'Jillian', 1998, 'F', 2014), +(163566, 'Desiree', 1998, 'F', 1998), +(163567, 'Hope', 1998, 'F', 1951), +(163568, 'Lindsay', 1998, 'F', 1938), +(163569, 'Madelyn', 1998, 'F', 1928), +(163570, 'Holly', 1998, 'F', 1920), +(163571, 'Diamond', 1998, 'F', 1918), +(163572, 'Hanna', 1998, 'F', 1897), +(163573, 'Riley', 1998, 'F', 1877), +(163574, 'Arianna', 1998, 'F', 1841), +(163575, 'Julie', 1998, 'F', 1805), +(163576, 'Lily', 1998, 'F', 1751), +(163577, 'Rachael', 1998, 'F', 1743), +(163578, 'Kathleen', 1998, 'F', 1737), +(163579, 'Kiara', 1998, 'F', 1734), +(163580, 'Skylar', 1998, 'F', 1731), +(163581, 'Lillian', 1998, 'F', 1716), +(163582, 'Christine', 1998, 'F', 1715), +(163583, 'Kara', 1998, 'F', 1712), +(163584, 'Jasmin', 1998, 'F', 1710), +(163585, 'Evelyn', 1998, 'F', 1707), +(163586, 'Claudia', 1998, 'F', 1706), +(163587, 'Patricia', 1998, 'F', 1704), +(163588, 'Cierra', 1998, 'F', 1687), +(163589, 'April', 1998, 'F', 1662), +(163590, 'Kennedy', 1998, 'F', 1658), +(163591, 'Alexus', 1998, 'F', 1653), +(163592, 'Raven', 1998, 'F', 1651), +(163593, 'Allyson', 1998, 'F', 1650), +(163594, 'Kendall', 1998, 'F', 1644), +(163595, 'Alison', 1998, 'F', 1641), +(163596, 'Tara', 1998, 'F', 1637), +(163597, 'Naomi', 1998, 'F', 1626), +(163598, 'Adrianna', 1998, 'F', 1614), +(163599, 'Kristina', 1998, 'F', 1611), +(163600, 'Whitney', 1998, 'F', 1611), +(163601, 'Abby', 1998, 'F', 1607), +(163602, 'Daniela', 1998, 'F', 1595), +(163603, 'Isabelle', 1998, 'F', 1590), +(163604, 'Jordyn', 1998, 'F', 1581), +(163605, 'Cameron', 1998, 'F', 1565), +(163606, 'Kyra', 1998, 'F', 1564), +(163607, 'Brooklyn', 1998, 'F', 1558), +(163608, 'Ashlyn', 1998, 'F', 1548), +(163609, 'Kirsten', 1998, 'F', 1547), +(163610, 'Alondra', 1998, 'F', 1535), +(163611, 'Mallory', 1998, 'F', 1525), +(163612, 'Natasha', 1998, 'F', 1520), +(163613, 'Asia', 1998, 'F', 1509), +(163614, 'Jazmin', 1998, 'F', 1479), +(163615, 'Nancy', 1998, 'F', 1478), +(163616, 'Karla', 1998, 'F', 1472), +(163617, 'Katelynn', 1998, 'F', 1457), +(163618, 'Kristin', 1998, 'F', 1447), +(163619, 'Mckenna', 1998, 'F', 1439), +(163620, 'Marisa', 1998, 'F', 1433), +(163621, 'Tatiana', 1998, 'F', 1428), +(163622, 'Dana', 1998, 'F', 1424), +(163623, 'Madeleine', 1998, 'F', 1423), +(163624, 'Amelia', 1998, 'F', 1422), +(163625, 'Peyton', 1998, 'F', 1417), +(163626, 'Jazmine', 1998, 'F', 1402), +(163627, 'Delaney', 1998, 'F', 1400), +(163628, 'Serena', 1998, 'F', 1400), +(163629, 'Aaliyah', 1998, 'F', 1399), +(163630, 'Guadalupe', 1998, 'F', 1382), +(163631, 'Mercedes', 1998, 'F', 1376), +(163632, 'Tessa', 1998, 'F', 1376), +(163633, 'Kiana', 1998, 'F', 1371), +(163634, 'Payton', 1998, 'F', 1368), +(163635, 'Sandra', 1998, 'F', 1366), +(163636, 'Alexia', 1998, 'F', 1365), +(163637, 'Lisa', 1998, 'F', 1363), +(163638, 'Nina', 1998, 'F', 1348), +(163639, 'Sofia', 1998, 'F', 1346), +(163640, 'Tori', 1998, 'F', 1331), +(163641, 'Kylee', 1998, 'F', 1307), +(163642, 'Katrina', 1998, 'F', 1296), +(163643, 'Cindy', 1998, 'F', 1293), +(163644, 'Bridget', 1998, 'F', 1287), +(163645, 'Mya', 1998, 'F', 1284), +(163646, 'Priscilla', 1998, 'F', 1283), +(163647, 'Joanna', 1998, 'F', 1281), +(163648, 'Savanna', 1998, 'F', 1277), +(163649, 'Giselle', 1998, 'F', 1255), +(163650, 'Aubrey', 1998, 'F', 1251), +(163651, 'Deanna', 1998, 'F', 1246), +(163652, 'Deja', 1998, 'F', 1244), +(163653, 'Avery', 1998, 'F', 1242), +(163654, 'Dakota', 1998, 'F', 1242), +(163655, 'Kassandra', 1998, 'F', 1237), +(163656, 'Maggie', 1998, 'F', 1236), +(163657, 'Alissa', 1998, 'F', 1231), +(163658, 'Ciara', 1998, 'F', 1230), +(163659, 'Celeste', 1998, 'F', 1228), +(163660, 'Imani', 1998, 'F', 1221), +(163661, 'Alana', 1998, 'F', 1218), +(163662, 'Sophie', 1998, 'F', 1216), +(163663, 'Ruby', 1998, 'F', 1206), +(163664, 'Brandi', 1998, 'F', 1202), +(163665, 'Monique', 1998, 'F', 1198), +(163666, 'Julianna', 1998, 'F', 1191), +(163667, 'Genesis', 1998, 'F', 1184), +(163668, 'Yesenia', 1998, 'F', 1184), +(163669, 'Katlyn', 1998, 'F', 1182), +(163670, 'Meagan', 1998, 'F', 1179), +(163671, 'Kyla', 1998, 'F', 1177), +(163672, 'Anastasia', 1998, 'F', 1176), +(163673, 'Gianna', 1998, 'F', 1175), +(163674, 'Ashlee', 1998, 'F', 1172), +(163675, 'Angelina', 1998, 'F', 1166), +(163676, 'Makenzie', 1998, 'F', 1158), +(163677, 'Natalia', 1998, 'F', 1157), +(163678, 'Sidney', 1998, 'F', 1141), +(163679, 'Kate', 1998, 'F', 1139), +(163680, 'Elena', 1998, 'F', 1137), +(163681, 'Anne', 1998, 'F', 1135), +(163682, 'Kira', 1998, 'F', 1135), +(163683, 'Sadie', 1998, 'F', 1123), +(163684, 'Rosa', 1998, 'F', 1121), +(163685, 'Carmen', 1998, 'F', 1120), +(163686, 'Kailey', 1998, 'F', 1114), +(163687, 'Meredith', 1998, 'F', 1111), +(163688, 'Tabitha', 1998, 'F', 1110), +(163689, 'Krystal', 1998, 'F', 1093), +(163690, 'Camille', 1998, 'F', 1071), +(163691, 'Brandy', 1998, 'F', 1059), +(163692, 'Cecilia', 1998, 'F', 1053), +(163693, 'Shania', 1998, 'F', 1049), +(163694, 'Brenna', 1998, 'F', 1047), +(163695, 'Ashleigh', 1998, 'F', 1040), +(163696, 'Juliana', 1998, 'F', 1037), +(163697, 'Valeria', 1998, 'F', 1031), +(163698, 'Tiana', 1998, 'F', 1028), +(163699, 'Bryanna', 1998, 'F', 1027), +(163700, 'Elise', 1998, 'F', 1026), +(163701, 'Logan', 1998, 'F', 1026), +(163702, 'Skyler', 1998, 'F', 1022), +(163703, 'Mikaela', 1998, 'F', 1021), +(163704, 'Rose', 1998, 'F', 1018), +(163705, 'Gina', 1998, 'F', 1015), +(163706, 'Carolina', 1998, 'F', 1010), +(163707, 'Callie', 1998, 'F', 1009), +(163708, 'Clarissa', 1998, 'F', 1005), +(163709, 'Kasey', 1998, 'F', 1004), +(163710, 'Denise', 1998, 'F', 999), +(163711, 'Hunter', 1998, 'F', 997), +(163712, 'Charlotte', 1998, 'F', 996), +(163713, 'Shayla', 1998, 'F', 993), +(163714, 'Miriam', 1998, 'F', 985), +(163715, 'Destinee', 1998, 'F', 983), +(163716, 'Teresa', 1998, 'F', 981), +(163717, 'Cassie', 1998, 'F', 979), +(163718, 'Tatyana', 1998, 'F', 977), +(163719, 'Allie', 1998, 'F', 972), +(163720, 'Linda', 1998, 'F', 970), +(163721, 'Tia', 1998, 'F', 956), +(163722, 'Cristina', 1998, 'F', 950), +(163723, 'Ashton', 1998, 'F', 945), +(163724, 'Baylee', 1998, 'F', 944), +(163725, 'Krista', 1998, 'F', 943), +(163726, 'Nadia', 1998, 'F', 943), +(163727, 'Tyra', 1998, 'F', 943), +(163728, 'Lacey', 1998, 'F', 941), +(163729, 'Marina', 1998, 'F', 937), +(163730, 'Esther', 1998, 'F', 928), +(163731, 'Annie', 1998, 'F', 917), +(163732, 'Vivian', 1998, 'F', 911), +(163733, 'Raquel', 1998, 'F', 910), +(163734, 'Carolyn', 1998, 'F', 901), +(163735, 'Tiara', 1998, 'F', 899), +(163736, 'Cheyanne', 1998, 'F', 894), +(163737, 'Gillian', 1998, 'F', 890), +(163738, 'Nia', 1998, 'F', 890), +(163739, 'Julissa', 1998, 'F', 889), +(163740, 'Reagan', 1998, 'F', 888), +(163741, 'Gloria', 1998, 'F', 885), +(163742, 'Aliyah', 1998, 'F', 879), +(163743, 'Tamara', 1998, 'F', 877), +(163744, 'Macy', 1998, 'F', 872), +(163745, 'Renee', 1998, 'F', 870), +(163746, 'Wendy', 1998, 'F', 867), +(163747, 'Mariana', 1998, 'F', 864), +(163748, 'Alisha', 1998, 'F', 857), +(163749, 'Heidi', 1998, 'F', 848), +(163750, 'Liliana', 1998, 'F', 847), +(163751, 'Ruth', 1998, 'F', 846), +(163752, 'Eva', 1998, 'F', 844), +(163753, 'Colleen', 1998, 'F', 843), +(163754, 'Josephine', 1998, 'F', 840), +(163755, 'Chelsey', 1998, 'F', 832), +(163756, 'Helen', 1998, 'F', 831), +(163757, 'Ava', 1998, 'F', 829), +(163758, 'Kelsie', 1998, 'F', 828), +(163759, 'Harley', 1998, 'F', 825), +(163760, 'Emilee', 1998, 'F', 816), +(163761, 'Paola', 1998, 'F', 812), +(163762, 'Tyler', 1998, 'F', 810), +(163763, 'Kaitlynn', 1998, 'F', 809), +(163764, 'Haylee', 1998, 'F', 808), +(163765, 'Heaven', 1998, 'F', 808), +(163766, 'Cara', 1998, 'F', 807), +(163767, 'Josie', 1998, 'F', 800), +(163768, 'Mayra', 1998, 'F', 797), +(163769, 'Virginia', 1998, 'F', 797), +(163770, 'Kayleigh', 1998, 'F', 793), +(163771, 'Marie', 1998, 'F', 790), +(163772, 'Theresa', 1998, 'F', 787), +(163773, 'Kassidy', 1998, 'F', 783), +(163774, 'Camryn', 1998, 'F', 782), +(163775, 'Jenny', 1998, 'F', 777), +(163776, 'Martha', 1998, 'F', 769), +(163777, 'Mckayla', 1998, 'F', 769), +(163778, 'Clara', 1998, 'F', 759), +(163779, 'Jacquelyn', 1998, 'F', 759), +(163780, 'Janet', 1998, 'F', 759), +(163781, 'Francesca', 1998, 'F', 755), +(163782, 'Kierra', 1998, 'F', 755), +(163783, 'Justine', 1998, 'F', 754), +(163784, 'Felicia', 1998, 'F', 749), +(163785, 'Susan', 1998, 'F', 749), +(163786, 'Jessie', 1998, 'F', 744), +(163787, 'Tamia', 1998, 'F', 742), +(163788, 'Precious', 1998, 'F', 741), +(163789, 'Elisabeth', 1998, 'F', 740), +(163790, 'Ivy', 1998, 'F', 728), +(163791, 'Rylee', 1998, 'F', 724), +(163792, 'Marisol', 1998, 'F', 723), +(163793, 'Eleanor', 1998, 'F', 718), +(163794, 'Jayla', 1998, 'F', 715), +(163795, 'Pamela', 1998, 'F', 714), +(163796, 'Carley', 1998, 'F', 712), +(163797, 'Melody', 1998, 'F', 708), +(163798, 'Jaclyn', 1998, 'F', 703), +(163799, 'Lucy', 1998, 'F', 699), +(163800, 'Talia', 1998, 'F', 697), +(163801, 'Lesley', 1998, 'F', 695), +(163802, 'Daniella', 1998, 'F', 692), +(163803, 'Larissa', 1998, 'F', 692), +(163804, 'Sharon', 1998, 'F', 691), +(163805, 'Tatum', 1998, 'F', 690), +(163806, 'Alaina', 1998, 'F', 689), +(163807, 'Carissa', 1998, 'F', 686), +(163808, 'Kali', 1998, 'F', 686), +(163809, 'Madalyn', 1998, 'F', 682), +(163810, 'Addison', 1998, 'F', 679), +(163811, 'Noelle', 1998, 'F', 678), +(163812, 'Kaylie', 1998, 'F', 673), +(163813, 'Carla', 1998, 'F', 668), +(163814, 'Lexi', 1998, 'F', 665), +(163815, 'Abbey', 1998, 'F', 661), +(163816, 'Alyson', 1998, 'F', 658), +(163817, 'Julianne', 1998, 'F', 657), +(163818, 'Ella', 1998, 'F', 651), +(163819, 'Janelle', 1998, 'F', 647), +(163820, 'Yasmine', 1998, 'F', 647), +(163821, 'Bailee', 1998, 'F', 640), +(163822, 'Jane', 1998, 'F', 638), +(163823, 'Toni', 1998, 'F', 637), +(163824, 'Ally', 1998, 'F', 636), +(163825, 'Sonia', 1998, 'F', 635), +(163826, 'Lizbeth', 1998, 'F', 633), +(163827, 'Carrie', 1998, 'F', 629), +(163828, 'Lauryn', 1998, 'F', 628), +(163829, 'Makenna', 1998, 'F', 627), +(163830, 'Kaleigh', 1998, 'F', 625), +(163831, 'Tayler', 1998, 'F', 623), +(163832, 'Tierra', 1998, 'F', 623), +(163833, 'Ellen', 1998, 'F', 620), +(163834, 'Nichole', 1998, 'F', 620), +(163835, 'Georgia', 1998, 'F', 619), +(163836, 'Karissa', 1998, 'F', 619), +(163837, 'Haleigh', 1998, 'F', 617), +(163838, 'Regan', 1998, 'F', 615), +(163839, 'Sasha', 1998, 'F', 615), +(163840, 'Ebony', 1998, 'F', 614), +(163841, 'Arielle', 1998, 'F', 612), +(163842, 'Justice', 1998, 'F', 608), +(163843, 'Taryn', 1998, 'F', 606), +(163844, 'Ellie', 1998, 'F', 602), +(163845, 'Yasmin', 1998, 'F', 597), +(163846, 'Alice', 1998, 'F', 593), +(163847, 'Adrienne', 1998, 'F', 589), +(163848, 'Kaylin', 1998, 'F', 586), +(163849, 'Joy', 1998, 'F', 583), +(163850, 'Kiera', 1998, 'F', 582), +(163851, 'Tania', 1998, 'F', 582), +(163852, 'Lorena', 1998, 'F', 581), +(163853, 'Nathalie', 1998, 'F', 581), +(163854, 'Ayanna', 1998, 'F', 574), +(163855, 'Ashlynn', 1998, 'F', 572), +(163856, 'Eliza', 1998, 'F', 572), +(163857, 'Kelli', 1998, 'F', 572), +(163858, 'Britney', 1998, 'F', 571), +(163859, 'Simone', 1998, 'F', 571), +(163860, 'Iris', 1998, 'F', 570), +(163861, 'Chasity', 1998, 'F', 569), +(163862, 'Barbara', 1998, 'F', 566), +(163863, 'Celine', 1998, 'F', 565), +(163864, 'Essence', 1998, 'F', 565), +(163865, 'Paris', 1998, 'F', 565), +(163866, 'Kiersten', 1998, 'F', 562), +(163867, 'Breana', 1998, 'F', 559), +(163868, 'Devin', 1998, 'F', 559), +(163869, 'Maddison', 1998, 'F', 559), +(163870, 'Micaela', 1998, 'F', 557), +(163871, 'Ann', 1998, 'F', 554), +(163872, 'Kaila', 1998, 'F', 554), +(163873, 'Rhiannon', 1998, 'F', 554), +(163874, 'Deborah', 1998, 'F', 553), +(163875, 'Sylvia', 1998, 'F', 550), +(163876, 'Carlie', 1998, 'F', 549), +(163877, 'Angelique', 1998, 'F', 548), +(163878, 'Elisa', 1998, 'F', 547), +(163879, 'Frances', 1998, 'F', 547), +(163880, 'Annika', 1998, 'F', 544), +(163881, 'Leticia', 1998, 'F', 541), +(163882, 'Aimee', 1998, 'F', 540), +(163883, 'Nora', 1998, 'F', 540), +(163884, 'Tianna', 1998, 'F', 540), +(163885, 'Viviana', 1998, 'F', 540), +(163886, 'Janae', 1998, 'F', 536), +(163887, 'Candace', 1998, 'F', 535), +(163888, 'Hallie', 1998, 'F', 534), +(163889, 'Nikki', 1998, 'F', 529), +(163890, 'Christian', 1998, 'F', 528), +(163891, 'Robyn', 1998, 'F', 526), +(163892, 'Aileen', 1998, 'F', 525), +(163893, 'Alma', 1998, 'F', 523), +(163894, 'Perla', 1998, 'F', 522), +(163895, 'Shayna', 1998, 'F', 519), +(163896, 'Irene', 1998, 'F', 517), +(163897, 'Marilyn', 1998, 'F', 517), +(163898, 'Hailee', 1998, 'F', 516), +(163899, 'Lesly', 1998, 'F', 516), +(163900, 'Skye', 1998, 'F', 516), +(163901, 'India', 1998, 'F', 514), +(163902, 'Alina', 1998, 'F', 512), +(163903, 'Kacie', 1998, 'F', 512), +(163904, 'Savanah', 1998, 'F', 512), +(163905, 'Fatima', 1998, 'F', 511), +(163906, 'Clare', 1998, 'F', 510), +(163907, 'Johanna', 1998, 'F', 510), +(163908, 'Kaley', 1998, 'F', 510), +(163909, 'Luz', 1998, 'F', 510), +(163910, 'Regina', 1998, 'F', 508), +(163911, 'Aurora', 1998, 'F', 503), +(163912, 'Devon', 1998, 'F', 503), +(163913, 'Brianne', 1998, 'F', 501), +(163914, 'Alanna', 1998, 'F', 497), +(163915, 'Ciera', 1998, 'F', 497), +(163916, 'Laurel', 1998, 'F', 497), +(163917, 'Kailee', 1998, 'F', 496), +(163918, 'Montana', 1998, 'F', 496), +(163919, 'Robin', 1998, 'F', 496), +(163920, 'Amari', 1998, 'F', 495), +(163921, 'Shyanne', 1998, 'F', 492), +(163922, 'Anahi', 1998, 'F', 490), +(163923, 'Jewel', 1998, 'F', 490), +(163924, 'Stacy', 1998, 'F', 490), +(163925, 'Lexus', 1998, 'F', 489), +(163926, 'Emilie', 1998, 'F', 486), +(163927, 'Fiona', 1998, 'F', 485), +(163928, 'Kelsi', 1998, 'F', 483), +(163929, 'Lexie', 1998, 'F', 481), +(163930, 'Trinity', 1998, 'F', 481), +(163931, 'Cristal', 1998, 'F', 480), +(163932, 'Elaine', 1998, 'F', 480), +(163933, 'Lena', 1998, 'F', 480), +(163934, 'Zaria', 1998, 'F', 479), +(163935, 'Zoey', 1998, 'F', 478), +(163936, 'Ryan', 1998, 'F', 477), +(163937, 'Sienna', 1998, 'F', 477), +(163938, 'Charity', 1998, 'F', 476), +(163939, 'Bria', 1998, 'F', 475), +(163940, 'Paulina', 1998, 'F', 475), +(163941, 'Genevieve', 1998, 'F', 471), +(163942, 'Kenya', 1998, 'F', 471), +(163943, 'Cora', 1998, 'F', 468), +(163944, 'Kiley', 1998, 'F', 466), +(163945, 'Maia', 1998, 'F', 466), +(163946, 'Antonia', 1998, 'F', 465), +(163947, 'Keely', 1998, 'F', 465), +(163948, 'Kellie', 1998, 'F', 465), +(163949, 'Brooklynn', 1998, 'F', 462), +(163950, 'Darian', 1998, 'F', 462), +(163951, 'Jailene', 1998, 'F', 460), +(163952, 'Moriah', 1998, 'F', 457), +(163953, 'Paula', 1998, 'F', 457), +(163954, 'Judith', 1998, 'F', 454), +(163955, 'Ericka', 1998, 'F', 452), +(163956, 'Katharine', 1998, 'F', 452), +(163957, 'Athena', 1998, 'F', 451), +(163958, 'Maritza', 1998, 'F', 451), +(163959, 'Eileen', 1998, 'F', 449), +(163960, 'Carina', 1998, 'F', 448), +(163961, 'Kamryn', 1998, 'F', 448), +(163962, 'Kayley', 1998, 'F', 446), +(163963, 'Shawna', 1998, 'F', 445), +(163964, 'Mollie', 1998, 'F', 442), +(163965, 'Cayla', 1998, 'F', 439), +(163966, 'Destiney', 1998, 'F', 439), +(163967, 'Stacey', 1998, 'F', 439), +(163968, 'Mireya', 1998, 'F', 438), +(163969, 'Noemi', 1998, 'F', 438), +(163970, 'Kaylyn', 1998, 'F', 437), +(163971, 'Eden', 1998, 'F', 435), +(163972, 'Mariela', 1998, 'F', 435), +(163973, 'Jaime', 1998, 'F', 434), +(163974, 'Donna', 1998, 'F', 433), +(163975, 'Alayna', 1998, 'F', 431), +(163976, 'Tina', 1998, 'F', 431), +(163977, 'Halle', 1998, 'F', 430), +(163978, 'Salma', 1998, 'F', 430), +(163979, 'Tess', 1998, 'F', 429), +(163980, 'Marlene', 1998, 'F', 428), +(163981, 'Graciela', 1998, 'F', 427), +(163982, 'Leanna', 1998, 'F', 427), +(163983, 'Kourtney', 1998, 'F', 426), +(163984, 'Maribel', 1998, 'F', 424), +(163985, 'Madisyn', 1998, 'F', 422), +(163986, 'Nicolette', 1998, 'F', 419), +(163987, 'Alisa', 1998, 'F', 418), +(163988, 'Blanca', 1998, 'F', 416), +(163989, 'Micah', 1998, 'F', 415), +(163990, 'Meaghan', 1998, 'F', 414), +(163991, 'Melinda', 1998, 'F', 414), +(163992, 'Lilly', 1998, 'F', 413), +(163993, 'Chandler', 1998, 'F', 412), +(163994, 'Emely', 1998, 'F', 412), +(163995, 'Katelin', 1998, 'F', 412), +(163996, 'Edith', 1998, 'F', 411), +(163997, 'Mara', 1998, 'F', 411), +(163998, 'Aspen', 1998, 'F', 409), +(163999, 'Karlee', 1998, 'F', 408), +(164000, 'Araceli', 1998, 'F', 407), +(164001, 'Candice', 1998, 'F', 407), +(164002, 'Destini', 1998, 'F', 407), +(164003, 'Karli', 1998, 'F', 406), +(164004, 'Angie', 1998, 'F', 404), +(164005, 'Chyna', 1998, 'F', 404), +(164006, 'Casandra', 1998, 'F', 400), +(164007, 'Corinne', 1998, 'F', 400), +(164008, 'Karlie', 1998, 'F', 400), +(164009, 'Tanya', 1998, 'F', 399), +(164010, 'Abbie', 1998, 'F', 398), +(164011, 'Aisha', 1998, 'F', 398), +(164012, 'Juliet', 1998, 'F', 397), +(164013, 'Phoebe', 1998, 'F', 397), +(164014, 'Katarina', 1998, 'F', 396), +(164015, 'Macey', 1998, 'F', 395), +(164016, 'Margarita', 1998, 'F', 394), +(164017, 'Reyna', 1998, 'F', 393), +(164018, 'Sage', 1998, 'F', 393), +(164019, 'Abbigail', 1998, 'F', 392), +(164020, 'Carlee', 1998, 'F', 392), +(164021, 'Christy', 1998, 'F', 392), +(164022, 'Rosemary', 1998, 'F', 392), +(164023, 'Desirae', 1998, 'F', 391), +(164024, 'Sarai', 1998, 'F', 391), +(164025, 'Kathy', 1998, 'F', 386), +(164026, 'Celia', 1998, 'F', 384), +(164027, 'Gracie', 1998, 'F', 382), +(164028, 'Yvette', 1998, 'F', 382), +(164029, 'Leann', 1998, 'F', 381), +(164030, 'Reilly', 1998, 'F', 379), +(164031, 'Thalia', 1998, 'F', 377), +(164032, 'Isis', 1998, 'F', 376), +(164033, 'Sydnee', 1998, 'F', 376), +(164034, 'Lyndsey', 1998, 'F', 372), +(164035, 'Madyson', 1998, 'F', 371), +(164036, 'Karly', 1998, 'F', 370), +(164037, 'Lucia', 1998, 'F', 370), +(164038, 'Madelynn', 1998, 'F', 370), +(164039, 'Gisselle', 1998, 'F', 368), +(164040, 'Christa', 1998, 'F', 366), +(164041, 'Miracle', 1998, 'F', 366), +(164042, 'Jazmyn', 1998, 'F', 365), +(164043, 'Kristine', 1998, 'F', 365), +(164044, 'Lea', 1998, 'F', 365), +(164045, 'Taya', 1998, 'F', 364), +(164046, 'Lyric', 1998, 'F', 360), +(164047, 'Sandy', 1998, 'F', 360), +(164048, 'Annabelle', 1998, 'F', 359), +(164049, 'Maranda', 1998, 'F', 359), +(164050, 'Nikita', 1998, 'F', 359), +(164051, 'Beatriz', 1998, 'F', 358), +(164052, 'Diane', 1998, 'F', 358), +(164053, 'Cortney', 1998, 'F', 357), +(164054, 'Kacey', 1998, 'F', 357), +(164055, 'Maegan', 1998, 'F', 357), +(164056, 'Carli', 1998, 'F', 355), +(164057, 'Chelsie', 1998, 'F', 355), +(164058, 'Kailyn', 1998, 'F', 355), +(164059, 'Elaina', 1998, 'F', 354), +(164060, 'Kianna', 1998, 'F', 353), +(164061, 'Malia', 1998, 'F', 353), +(164062, 'Randi', 1998, 'F', 353), +(164063, 'Rylie', 1998, 'F', 352), +(164064, 'Carol', 1998, 'F', 351), +(164065, 'Anita', 1998, 'F', 350), +(164066, 'Alivia', 1998, 'F', 349), +(164067, 'Allyssa', 1998, 'F', 349), +(164068, 'Kari', 1998, 'F', 349), +(164069, 'Estrella', 1998, 'F', 348), +(164070, 'Sheila', 1998, 'F', 348), +(164071, 'Celina', 1998, 'F', 347), +(164072, 'Kyleigh', 1998, 'F', 347), +(164073, 'Bridgette', 1998, 'F', 346), +(164074, 'Halie', 1998, 'F', 346), +(164075, 'Tracy', 1998, 'F', 346), +(164076, 'Anissa', 1998, 'F', 345), +(164077, 'Juliette', 1998, 'F', 345), +(164078, 'Alexandrea', 1998, 'F', 344), +(164079, 'Shaina', 1998, 'F', 344), +(164080, 'Rocio', 1998, 'F', 343), +(164081, 'Tiffani', 1998, 'F', 343), +(164082, 'Brook', 1998, 'F', 342), +(164083, 'Brielle', 1998, 'F', 341), +(164084, 'Aleah', 1998, 'F', 339), +(164085, 'Helena', 1998, 'F', 339), +(164086, 'Stephany', 1998, 'F', 339), +(164087, 'Chantel', 1998, 'F', 336), +(164088, 'Selina', 1998, 'F', 336), +(164089, 'Jayda', 1998, 'F', 335), +(164090, 'Maura', 1998, 'F', 335), +(164091, 'Lizette', 1998, 'F', 334), +(164092, 'Joyce', 1998, 'F', 332), +(164093, 'Darby', 1998, 'F', 330), +(164094, 'Jazlyn', 1998, 'F', 330), +(164095, 'Susana', 1998, 'F', 330), +(164096, 'Rachelle', 1998, 'F', 329), +(164097, 'Yvonne', 1998, 'F', 329), +(164098, 'Yadira', 1998, 'F', 328), +(164099, 'Dulce', 1998, 'F', 327), +(164100, 'Sally', 1998, 'F', 327), +(164101, 'Chanel', 1998, 'F', 325), +(164102, 'Jaqueline', 1998, 'F', 325), +(164103, 'Kasandra', 1998, 'F', 324), +(164104, 'Calista', 1998, 'F', 323), +(164105, 'Madisen', 1998, 'F', 322), +(164106, 'Janessa', 1998, 'F', 319), +(164107, 'Esperanza', 1998, 'F', 316), +(164108, 'Macie', 1998, 'F', 316), +(164109, 'Gwendolyn', 1998, 'F', 315), +(164110, 'Shea', 1998, 'F', 315), +(164111, 'Damaris', 1998, 'F', 314), +(164112, 'Kenzie', 1998, 'F', 314), +(164113, 'Loren', 1998, 'F', 314), +(164114, 'Eliana', 1998, 'F', 313), +(164115, 'Rebeca', 1998, 'F', 313), +(164116, 'Stefanie', 1998, 'F', 313), +(164117, 'Dorothy', 1998, 'F', 312), +(164118, 'Alize', 1998, 'F', 311), +(164119, 'Janice', 1998, 'F', 311), +(164120, 'Karley', 1998, 'F', 311), +(164121, 'Elissa', 1998, 'F', 309), +(164122, 'Jeanette', 1998, 'F', 309), +(164123, 'Katlin', 1998, 'F', 309), +(164124, 'Bonnie', 1998, 'F', 308), +(164125, 'Lori', 1998, 'F', 308), +(164126, 'Misty', 1998, 'F', 307), +(164127, 'Norma', 1998, 'F', 307), +(164128, 'Brynn', 1998, 'F', 306), +(164129, 'Ayana', 1998, 'F', 305); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(164130, 'Kallie', 1998, 'F', 305), +(164131, 'Kayli', 1998, 'F', 305), +(164132, 'Kristy', 1998, 'F', 305), +(164133, 'Arlene', 1998, 'F', 304), +(164134, 'Brittani', 1998, 'F', 303), +(164135, 'Kaela', 1998, 'F', 303), +(164136, 'Anika', 1998, 'F', 299), +(164137, 'Carson', 1998, 'F', 299), +(164138, 'Juanita', 1998, 'F', 299), +(164139, 'Amani', 1998, 'F', 298), +(164140, 'Michele', 1998, 'F', 298), +(164141, 'Caitlynn', 1998, 'F', 297), +(164142, 'Leila', 1998, 'F', 297), +(164143, 'Aylin', 1998, 'F', 296), +(164144, 'Hana', 1998, 'F', 296), +(164145, 'Leilani', 1998, 'F', 296), +(164146, 'Mikala', 1998, 'F', 296), +(164147, 'Christiana', 1998, 'F', 295), +(164148, 'Daria', 1998, 'F', 295), +(164149, 'Shirley', 1998, 'F', 293), +(164150, 'Shyann', 1998, 'F', 293), +(164151, 'Kaelyn', 1998, 'F', 292), +(164152, 'Nataly', 1998, 'F', 291), +(164153, 'Gretchen', 1998, 'F', 290), +(164154, 'Itzel', 1998, 'F', 290), +(164155, 'Mariam', 1998, 'F', 290), +(164156, 'Tea', 1998, 'F', 290), +(164157, 'Ansley', 1998, 'F', 289), +(164158, 'Devyn', 1998, 'F', 287), +(164159, 'Marley', 1998, 'F', 287), +(164160, 'Kori', 1998, 'F', 286), +(164161, 'Yolanda', 1998, 'F', 286), +(164162, 'Antoinette', 1998, 'F', 285), +(164163, 'Dallas', 1998, 'F', 285), +(164164, 'Daphne', 1998, 'F', 284), +(164165, 'Giovanna', 1998, 'F', 284), +(164166, 'Raegan', 1998, 'F', 284), +(164167, 'Alessandra', 1998, 'F', 283), +(164168, 'Elyse', 1998, 'F', 283), +(164169, 'Berenice', 1998, 'F', 282), +(164170, 'Jaden', 1998, 'F', 282), +(164171, 'Quinn', 1998, 'F', 282), +(164172, 'Annette', 1998, 'F', 281), +(164173, 'Kaci', 1998, 'F', 281), +(164174, 'Kaylynn', 1998, 'F', 281), +(164175, 'Yasmeen', 1998, 'F', 281), +(164176, 'Alena', 1998, 'F', 280), +(164177, 'Dasia', 1998, 'F', 280), +(164178, 'Alex', 1998, 'F', 279), +(164179, 'Fabiola', 1998, 'F', 279), +(164180, 'Jenifer', 1998, 'F', 279), +(164181, 'Alysa', 1998, 'F', 277), +(164182, 'Jacklyn', 1998, 'F', 277), +(164183, 'Joselyn', 1998, 'F', 277), +(164184, 'Makala', 1998, 'F', 277), +(164185, 'Shelbie', 1998, 'F', 277), +(164186, 'Drew', 1998, 'F', 276), +(164187, 'Erykah', 1998, 'F', 276), +(164188, 'Leanne', 1998, 'F', 276), +(164189, 'Kelley', 1998, 'F', 275), +(164190, 'Sonya', 1998, 'F', 275), +(164191, 'Dejah', 1998, 'F', 274), +(164192, 'Yessenia', 1998, 'F', 274), +(164193, 'Dalia', 1998, 'F', 273), +(164194, 'Myah', 1998, 'F', 273), +(164195, 'Reanna', 1998, 'F', 273), +(164196, 'Breanne', 1998, 'F', 272), +(164197, 'Trisha', 1998, 'F', 272), +(164198, 'Alysha', 1998, 'F', 271), +(164199, 'Jesse', 1998, 'F', 271), +(164200, 'Liana', 1998, 'F', 270), +(164201, 'Melina', 1998, 'F', 270), +(164202, 'Princess', 1998, 'F', 270), +(164203, 'Ali', 1998, 'F', 269), +(164204, 'Nadine', 1998, 'F', 269), +(164205, 'Nayeli', 1998, 'F', 269), +(164206, 'Silvia', 1998, 'F', 266), +(164207, 'Elyssa', 1998, 'F', 265), +(164208, 'Kalie', 1998, 'F', 265), +(164209, 'Katlynn', 1998, 'F', 265), +(164210, 'Madilyn', 1998, 'F', 265), +(164211, 'Tasia', 1998, 'F', 265), +(164212, 'Cecelia', 1998, 'F', 264), +(164213, 'Dawn', 1998, 'F', 264), +(164214, 'Lilian', 1998, 'F', 264), +(164215, 'Bryana', 1998, 'F', 263), +(164216, 'Jill', 1998, 'F', 263), +(164217, 'Kaycee', 1998, 'F', 263), +(164218, 'Emerald', 1998, 'F', 262), +(164219, 'Kalyn', 1998, 'F', 262), +(164220, 'Magdalena', 1998, 'F', 262), +(164221, 'Shaylee', 1998, 'F', 262), +(164222, 'Camila', 1998, 'F', 261), +(164223, 'Kaylah', 1998, 'F', 261), +(164224, 'Tatianna', 1998, 'F', 261), +(164225, 'Felicity', 1998, 'F', 260), +(164226, 'Ireland', 1998, 'F', 260), +(164227, 'Sarina', 1998, 'F', 260), +(164228, 'Tamera', 1998, 'F', 260), +(164229, 'Myranda', 1998, 'F', 259), +(164230, 'Starr', 1998, 'F', 259), +(164231, 'Katerina', 1998, 'F', 258), +(164232, 'Kristi', 1998, 'F', 258), +(164233, 'Lara', 1998, 'F', 258), +(164234, 'Blair', 1998, 'F', 257), +(164235, 'Gabriel', 1998, 'F', 257), +(164236, 'Haylie', 1998, 'F', 257), +(164237, 'Katy', 1998, 'F', 257), +(164238, 'Ashanti', 1998, 'F', 256), +(164239, 'Darlene', 1998, 'F', 256), +(164240, 'Valentina', 1998, 'F', 256), +(164241, 'Kinsey', 1998, 'F', 255), +(164242, 'Suzanne', 1998, 'F', 255), +(164243, 'Hayden', 1998, 'F', 254), +(164244, 'Joelle', 1998, 'F', 254), +(164245, 'Roxanne', 1998, 'F', 254), +(164246, 'Scarlett', 1998, 'F', 254), +(164247, 'Shana', 1998, 'F', 254), +(164248, 'Tammy', 1998, 'F', 254), +(164249, 'Demi', 1998, 'F', 253), +(164250, 'Serenity', 1998, 'F', 253), +(164251, 'Skyla', 1998, 'F', 253), +(164252, 'Anya', 1998, 'F', 252), +(164253, 'Daija', 1998, 'F', 252), +(164254, 'Dianna', 1998, 'F', 252), +(164255, 'Sydnie', 1998, 'F', 252), +(164256, 'Charlene', 1998, 'F', 251), +(164257, 'Patience', 1998, 'F', 251), +(164258, 'Tristan', 1998, 'F', 251), +(164259, 'Aubree', 1998, 'F', 250), +(164260, 'Keri', 1998, 'F', 250), +(164261, 'Willow', 1998, 'F', 250), +(164262, 'Asha', 1998, 'F', 249), +(164263, 'Tanisha', 1998, 'F', 249), +(164264, 'Emilia', 1998, 'F', 248), +(164265, 'Jana', 1998, 'F', 248), +(164266, 'Jasmyn', 1998, 'F', 247), +(164267, 'Layla', 1998, 'F', 247), +(164268, 'Shakira', 1998, 'F', 247), +(164269, 'Adrian', 1998, 'F', 246), +(164270, 'Delia', 1998, 'F', 246), +(164271, 'Rita', 1998, 'F', 246), +(164272, 'Unique', 1998, 'F', 245), +(164273, 'Ashly', 1998, 'F', 243), +(164274, 'Connie', 1998, 'F', 243), +(164275, 'Hillary', 1998, 'F', 243), +(164276, 'Lucero', 1998, 'F', 243), +(164277, 'Noel', 1998, 'F', 243), +(164278, 'Shauna', 1998, 'F', 243), +(164279, 'Jacey', 1998, 'F', 242), +(164280, 'Lillie', 1998, 'F', 242), +(164281, 'Rochelle', 1998, 'F', 242), +(164282, 'Delilah', 1998, 'F', 241), +(164283, 'Jaida', 1998, 'F', 241), +(164284, 'Octavia', 1998, 'F', 241), +(164285, 'Daisha', 1998, 'F', 240), +(164286, 'Jena', 1998, 'F', 240), +(164287, 'Kendal', 1998, 'F', 240), +(164288, 'Maeve', 1998, 'F', 240), +(164289, 'Marianna', 1998, 'F', 240), +(164290, 'Sydni', 1998, 'F', 240), +(164291, 'Alysia', 1998, 'F', 239), +(164292, 'Jocelyne', 1998, 'F', 239), +(164293, 'Jayden', 1998, 'F', 238), +(164294, 'Savana', 1998, 'F', 238), +(164295, 'Iliana', 1998, 'F', 237), +(164296, 'Lourdes', 1998, 'F', 237), +(164297, 'Odalis', 1998, 'F', 237), +(164298, 'Reina', 1998, 'F', 237), +(164299, 'Ingrid', 1998, 'F', 236), +(164300, 'Joanne', 1998, 'F', 236), +(164301, 'Kirstin', 1998, 'F', 236), +(164302, 'Marcella', 1998, 'F', 236), +(164303, 'Ashlie', 1998, 'F', 235), +(164304, 'Cali', 1998, 'F', 235), +(164305, 'Shelbi', 1998, 'F', 235), +(164306, 'Abigayle', 1998, 'F', 234), +(164307, 'Baby', 1998, 'F', 234), +(164308, 'Jaelyn', 1998, 'F', 234), +(164309, 'Odalys', 1998, 'F', 234), +(164310, 'Stevie', 1998, 'F', 234), +(164311, 'Violet', 1998, 'F', 234), +(164312, 'Kelsea', 1998, 'F', 233), +(164313, 'Rhianna', 1998, 'F', 233), +(164314, 'Shianne', 1998, 'F', 233), +(164315, 'Stella', 1998, 'F', 233), +(164316, 'Ayla', 1998, 'F', 231), +(164317, 'Jodi', 1998, 'F', 231), +(164318, 'Lacy', 1998, 'F', 231), +(164319, 'Sade', 1998, 'F', 231), +(164320, 'America', 1998, 'F', 230), +(164321, 'Maci', 1998, 'F', 230), +(164322, 'Amira', 1998, 'F', 229), +(164323, 'Jazmyne', 1998, 'F', 229), +(164324, 'Justina', 1998, 'F', 229), +(164325, 'Maricela', 1998, 'F', 228), +(164326, 'Myra', 1998, 'F', 228), +(164327, 'Cydney', 1998, 'F', 227), +(164328, 'Shae', 1998, 'F', 227), +(164329, 'Alycia', 1998, 'F', 226), +(164330, 'Armani', 1998, 'F', 226), +(164331, 'Eryn', 1998, 'F', 226), +(164332, 'Haven', 1998, 'F', 226), +(164333, 'Martina', 1998, 'F', 226), +(164334, 'Vanesa', 1998, 'F', 225), +(164335, 'Zoie', 1998, 'F', 225), +(164336, 'Lila', 1998, 'F', 224), +(164337, 'Mattie', 1998, 'F', 224), +(164338, 'Monika', 1998, 'F', 224), +(164339, 'Alia', 1998, 'F', 223), +(164340, 'Eve', 1998, 'F', 223), +(164341, 'Breonna', 1998, 'F', 222), +(164342, 'Beatrice', 1998, 'F', 220), +(164343, 'Beverly', 1998, 'F', 220), +(164344, 'Catalina', 1998, 'F', 220), +(164345, 'Constance', 1998, 'F', 220), +(164346, 'Harmony', 1998, 'F', 220), +(164347, 'Katia', 1998, 'F', 220), +(164348, 'Elisha', 1998, 'F', 219), +(164349, 'Hazel', 1998, 'F', 219), +(164350, 'Kortney', 1998, 'F', 219), +(164351, 'Marlee', 1998, 'F', 219), +(164352, 'Marlena', 1998, 'F', 219), +(164353, 'Brionna', 1998, 'F', 218), +(164354, 'Corina', 1998, 'F', 218), +(164355, 'Lexis', 1998, 'F', 217), +(164356, 'Nautica', 1998, 'F', 217), +(164357, 'Chase', 1998, 'F', 216), +(164358, 'Destany', 1998, 'F', 216), +(164359, 'Kameron', 1998, 'F', 216), +(164360, 'Alyssia', 1998, 'F', 215), +(164361, 'Breann', 1998, 'F', 215), +(164362, 'Caleigh', 1998, 'F', 215), +(164363, 'Deasia', 1998, 'F', 215), +(164364, 'Yazmin', 1998, 'F', 215), +(164365, 'Abril', 1998, 'F', 214), +(164366, 'Janette', 1998, 'F', 214), +(164367, 'Melisa', 1998, 'F', 214), +(164368, 'Serina', 1998, 'F', 214), +(164369, 'Shanice', 1998, 'F', 214), +(164370, 'Chaya', 1998, 'F', 213), +(164371, 'Jessika', 1998, 'F', 213), +(164372, 'Fernanda', 1998, 'F', 212), +(164373, 'Hadley', 1998, 'F', 212), +(164374, 'Yajaira', 1998, 'F', 212), +(164375, 'Kaylan', 1998, 'F', 211), +(164376, 'Lia', 1998, 'F', 211), +(164377, 'Lizeth', 1998, 'F', 211), +(164378, 'Janie', 1998, 'F', 210), +(164379, 'Kia', 1998, 'F', 209), +(164380, 'Star', 1998, 'F', 209), +(164381, 'Kerri', 1998, 'F', 208), +(164382, 'Audra', 1998, 'F', 207), +(164383, 'Ivana', 1998, 'F', 207), +(164384, 'Jayme', 1998, 'F', 207), +(164385, 'Kenia', 1998, 'F', 207), +(164386, 'Paloma', 1998, 'F', 207), +(164387, 'Ryann', 1998, 'F', 207), +(164388, 'Bobbi', 1998, 'F', 206), +(164389, 'Debra', 1998, 'F', 206), +(164390, 'Leeann', 1998, 'F', 206), +(164391, 'Shantel', 1998, 'F', 206), +(164392, 'Tayla', 1998, 'F', 206), +(164393, 'Cori', 1998, 'F', 205), +(164394, 'Kaylen', 1998, 'F', 205), +(164395, 'Jensen', 1998, 'F', 204), +(164396, 'Judy', 1998, 'F', 204), +(164397, 'Presley', 1998, 'F', 204), +(164398, 'Samara', 1998, 'F', 204), +(164399, 'Alexys', 1998, 'F', 203), +(164400, 'Eboni', 1998, 'F', 203), +(164401, 'Jaycee', 1998, 'F', 203), +(164402, 'Jayde', 1998, 'F', 203), +(164403, 'Kennedi', 1998, 'F', 203), +(164404, 'Raina', 1998, 'F', 201), +(164405, 'Dina', 1998, 'F', 200), +(164406, 'Elsa', 1998, 'F', 200), +(164407, 'Hollie', 1998, 'F', 200), +(164408, 'Keisha', 1998, 'F', 200), +(164409, 'Kristian', 1998, 'F', 200), +(164410, 'Tristen', 1998, 'F', 200), +(164411, 'Kerry', 1998, 'F', 199), +(164412, 'Maureen', 1998, 'F', 199), +(164413, 'Anais', 1998, 'F', 198), +(164414, 'Billie', 1998, 'F', 198), +(164415, 'Bobbie', 1998, 'F', 198), +(164416, 'Dayna', 1998, 'F', 198), +(164417, 'Annalise', 1998, 'F', 197), +(164418, 'Jalyn', 1998, 'F', 197), +(164419, 'Rayna', 1998, 'F', 197), +(164420, 'Yulissa', 1998, 'F', 197), +(164421, 'Arely', 1998, 'F', 196), +(164422, 'Chana', 1998, 'F', 196), +(164423, 'Isela', 1998, 'F', 196), +(164424, 'Ivette', 1998, 'F', 195), +(164425, 'Keeley', 1998, 'F', 195), +(164426, 'Lisette', 1998, 'F', 195), +(164427, 'Luisa', 1998, 'F', 195), +(164428, 'Miya', 1998, 'F', 195), +(164429, 'Shanna', 1998, 'F', 195), +(164430, 'Cailey', 1998, 'F', 194), +(164431, 'China', 1998, 'F', 194), +(164432, 'Annamarie', 1998, 'F', 193), +(164433, 'Beth', 1998, 'F', 193), +(164434, 'Eunice', 1998, 'F', 193), +(164435, 'Julisa', 1998, 'F', 193), +(164436, 'Kassie', 1998, 'F', 193), +(164437, 'Tasha', 1998, 'F', 193), +(164438, 'Aja', 1998, 'F', 192), +(164439, 'Betty', 1998, 'F', 192), +(164440, 'Gladys', 1998, 'F', 192), +(164441, 'Keara', 1998, 'F', 192), +(164442, 'London', 1998, 'F', 192), +(164443, 'Christen', 1998, 'F', 191), +(164444, 'Daja', 1998, 'F', 191), +(164445, 'Denisse', 1998, 'F', 191), +(164446, 'Lacie', 1998, 'F', 191), +(164447, 'Juana', 1998, 'F', 190), +(164448, 'Kala', 1998, 'F', 190), +(164449, 'Nyla', 1998, 'F', 190), +(164450, 'Destinie', 1998, 'F', 189), +(164451, 'Joslyn', 1998, 'F', 189), +(164452, 'Winter', 1998, 'F', 189), +(164453, 'Aliya', 1998, 'F', 188), +(164454, 'Khadijah', 1998, 'F', 188), +(164455, 'Sheridan', 1998, 'F', 188), +(164456, 'Sky', 1998, 'F', 188), +(164457, 'Abigale', 1998, 'F', 187), +(164458, 'Christie', 1998, 'F', 187), +(164459, 'Emani', 1998, 'F', 187), +(164460, 'Kenna', 1998, 'F', 187), +(164461, 'Maxine', 1998, 'F', 187), +(164462, 'Fallon', 1998, 'F', 186), +(164463, 'Krysta', 1998, 'F', 186), +(164464, 'Mindy', 1998, 'F', 186), +(164465, 'Alexi', 1998, 'F', 185), +(164466, 'Aniya', 1998, 'F', 185), +(164467, 'Domonique', 1998, 'F', 185), +(164468, 'Lana', 1998, 'F', 185), +(164469, 'Belen', 1998, 'F', 184), +(164470, 'Jaylene', 1998, 'F', 184), +(164471, 'Abagail', 1998, 'F', 183), +(164472, 'Akira', 1998, 'F', 183), +(164473, 'Emmalee', 1998, 'F', 183), +(164474, 'Estefany', 1998, 'F', 183), +(164475, 'Susanna', 1998, 'F', 183), +(164476, 'Alecia', 1998, 'F', 182), +(164477, 'Annabel', 1998, 'F', 182), +(164478, 'Greta', 1998, 'F', 182), +(164479, 'Mira', 1998, 'F', 182), +(164480, 'Adeline', 1998, 'F', 181), +(164481, 'Estefania', 1998, 'F', 181), +(164482, 'Kaytlin', 1998, 'F', 181), +(164483, 'Makaila', 1998, 'F', 181), +(164484, 'Teagan', 1998, 'F', 181), +(164485, 'Baylie', 1998, 'F', 180), +(164486, 'Geneva', 1998, 'F', 180), +(164487, 'Amara', 1998, 'F', 179), +(164488, 'Keila', 1998, 'F', 179), +(164489, 'Laken', 1998, 'F', 179), +(164490, 'Marcela', 1998, 'F', 179), +(164491, 'Nakia', 1998, 'F', 179), +(164492, 'Nyasia', 1998, 'F', 179), +(164493, 'Parker', 1998, 'F', 179), +(164494, 'Roxana', 1998, 'F', 179), +(164495, 'Amina', 1998, 'F', 178), +(164496, 'Aria', 1998, 'F', 178), +(164497, 'Shyla', 1998, 'F', 178), +(164498, 'Sommer', 1998, 'F', 178), +(164499, 'Tyanna', 1998, 'F', 178), +(164500, 'Jennie', 1998, 'F', 177), +(164501, 'Annmarie', 1998, 'F', 176), +(164502, 'Caylee', 1998, 'F', 176), +(164503, 'Elexis', 1998, 'F', 176), +(164504, 'Saige', 1998, 'F', 176), +(164505, 'Terri', 1998, 'F', 176), +(164506, 'Dylan', 1998, 'F', 175), +(164507, 'Keanna', 1998, 'F', 175), +(164508, 'Keira', 1998, 'F', 175), +(164509, 'Lidia', 1998, 'F', 175), +(164510, 'Marisela', 1998, 'F', 175), +(164511, 'Terra', 1998, 'F', 175), +(164512, 'Annemarie', 1998, 'F', 174), +(164513, 'Bernadette', 1998, 'F', 174), +(164514, 'Chantal', 1998, 'F', 174), +(164515, 'Gia', 1998, 'F', 174), +(164516, 'Katheryn', 1998, 'F', 174), +(164517, 'Stacie', 1998, 'F', 174), +(164518, 'Ashtyn', 1998, 'F', 173), +(164519, 'Betsy', 1998, 'F', 173), +(164520, 'Blake', 1998, 'F', 173), +(164521, 'Jackie', 1998, 'F', 173), +(164522, 'Lissette', 1998, 'F', 173), +(164523, 'Symone', 1998, 'F', 173), +(164524, 'Xena', 1998, 'F', 173), +(164525, 'Aubrie', 1998, 'F', 172), +(164526, 'Brieanna', 1998, 'F', 172), +(164527, 'Griselda', 1998, 'F', 172), +(164528, 'Jaylin', 1998, 'F', 172), +(164529, 'Flor', 1998, 'F', 171), +(164530, 'Kayle', 1998, 'F', 171), +(164531, 'Tabatha', 1998, 'F', 171), +(164532, 'Irma', 1998, 'F', 170), +(164533, 'Mari', 1998, 'F', 170), +(164534, 'Aracely', 1998, 'F', 169), +(164535, 'Kalee', 1998, 'F', 169), +(164536, 'Ciarra', 1998, 'F', 168), +(164537, 'Lynn', 1998, 'F', 168), +(164538, 'Sarahi', 1998, 'F', 168), +(164539, 'Shelly', 1998, 'F', 168), +(164540, 'Anisa', 1998, 'F', 167), +(164541, 'Chyanne', 1998, 'F', 167), +(164542, 'Coral', 1998, 'F', 167), +(164543, 'Danica', 1998, 'F', 167), +(164544, 'Infant', 1998, 'F', 167), +(164545, 'Jasmyne', 1998, 'F', 167), +(164546, 'Kristyn', 1998, 'F', 167), +(164547, 'Leandra', 1998, 'F', 167), +(164548, 'Lilia', 1998, 'F', 167), +(164549, 'Camilla', 1998, 'F', 166), +(164550, 'Izabella', 1998, 'F', 166), +(164551, 'Ryleigh', 1998, 'F', 166), +(164552, 'Cheryl', 1998, 'F', 165), +(164553, 'Georgina', 1998, 'F', 165), +(164554, 'Pearl', 1998, 'F', 165), +(164555, 'Tatiyana', 1998, 'F', 165), +(164556, 'Tatyanna', 1998, 'F', 165), +(164557, 'Trista', 1998, 'F', 165), +(164558, 'Dania', 1998, 'F', 164), +(164559, 'Joann', 1998, 'F', 164), +(164560, 'Lilliana', 1998, 'F', 164), +(164561, 'Micayla', 1998, 'F', 164), +(164562, 'Tehya', 1998, 'F', 164), +(164563, 'Anjelica', 1998, 'F', 163), +(164564, 'Bryce', 1998, 'F', 163), +(164565, 'Chastity', 1998, 'F', 163), +(164566, 'Hali', 1998, 'F', 163), +(164567, 'Stormy', 1998, 'F', 163), +(164568, 'Cailin', 1998, 'F', 162), +(164569, 'Dara', 1998, 'F', 162), +(164570, 'Demetria', 1998, 'F', 162), +(164571, 'Kaya', 1998, 'F', 162), +(164572, 'Libby', 1998, 'F', 162), +(164573, 'Monet', 1998, 'F', 162), +(164574, 'Dayana', 1998, 'F', 161), +(164575, 'Devan', 1998, 'F', 161), +(164576, 'Jessenia', 1998, 'F', 161), +(164577, 'Maryam', 1998, 'F', 161), +(164578, 'Spencer', 1998, 'F', 161), +(164579, 'Anabel', 1998, 'F', 160), +(164580, 'Ashli', 1998, 'F', 160), +(164581, 'Lina', 1998, 'F', 160), +(164582, 'Samira', 1998, 'F', 160), +(164583, 'Mandy', 1998, 'F', 159), +(164584, 'Piper', 1998, 'F', 159), +(164585, 'Shaelyn', 1998, 'F', 159), +(164586, 'Sonja', 1998, 'F', 159), +(164587, 'Deana', 1998, 'F', 158), +(164588, 'Kaytlyn', 1998, 'F', 158), +(164589, 'Addie', 1998, 'F', 157), +(164590, 'Cailyn', 1998, 'F', 157), +(164591, 'Isabela', 1998, 'F', 157), +(164592, 'Liza', 1998, 'F', 157), +(164593, 'Miah', 1998, 'F', 157), +(164594, 'Olga', 1998, 'F', 157), +(164595, 'Racheal', 1998, 'F', 157), +(164596, 'Adilene', 1998, 'F', 156), +(164597, 'Angeles', 1998, 'F', 156), +(164598, 'Bella', 1998, 'F', 156), +(164599, 'Breeanna', 1998, 'F', 156), +(164600, 'Mykayla', 1998, 'F', 156), +(164601, 'Tiarra', 1998, 'F', 156), +(164602, 'Astrid', 1998, 'F', 155), +(164603, 'Cherish', 1998, 'F', 155), +(164604, 'Darcy', 1998, 'F', 155), +(164605, 'Estefani', 1998, 'F', 155), +(164606, 'Jami', 1998, 'F', 155), +(164607, 'Priscila', 1998, 'F', 155), +(164608, 'Christin', 1998, 'F', 154), +(164609, 'Jalisa', 1998, 'F', 154), +(164610, 'Pauline', 1998, 'F', 154), +(164611, 'Priya', 1998, 'F', 154), +(164612, 'Alesha', 1998, 'F', 153), +(164613, 'Brea', 1998, 'F', 153), +(164614, 'Elana', 1998, 'F', 153), +(164615, 'Jackeline', 1998, 'F', 153), +(164616, 'Kelcie', 1998, 'F', 153), +(164617, 'Keyana', 1998, 'F', 153), +(164618, 'Natalya', 1998, 'F', 153), +(164619, 'Adela', 1998, 'F', 152), +(164620, 'Belinda', 1998, 'F', 151), +(164621, 'Carleigh', 1998, 'F', 151), +(164622, 'Evelin', 1998, 'F', 151), +(164623, 'Franchesca', 1998, 'F', 151), +(164624, 'Jean', 1998, 'F', 151), +(164625, 'Aiyana', 1998, 'F', 150), +(164626, 'Allysa', 1998, 'F', 150), +(164627, 'Keyla', 1998, 'F', 150), +(164628, 'Naja', 1998, 'F', 150), +(164629, 'Sariah', 1998, 'F', 150), +(164630, 'Siera', 1998, 'F', 150), +(164631, 'Iman', 1998, 'F', 149), +(164632, 'Janell', 1998, 'F', 149), +(164633, 'Marlen', 1998, 'F', 149), +(164634, 'Brandie', 1998, 'F', 148), +(164635, 'Dajah', 1998, 'F', 148), +(164636, 'Elsie', 1998, 'F', 148), +(164637, 'Marjorie', 1998, 'F', 148), +(164638, 'Mina', 1998, 'F', 148), +(164639, 'Shay', 1998, 'F', 148), +(164640, 'Taylar', 1998, 'F', 148), +(164641, 'Angeline', 1998, 'F', 147), +(164642, 'Corrina', 1998, 'F', 147), +(164643, 'Danika', 1998, 'F', 147), +(164644, 'Jolene', 1998, 'F', 147), +(164645, 'Yessica', 1998, 'F', 147), +(164646, 'Aliza', 1998, 'F', 146), +(164647, 'Amaris', 1998, 'F', 146), +(164648, 'Chynna', 1998, 'F', 146), +(164649, 'Emerson', 1998, 'F', 146), +(164650, 'Ivory', 1998, 'F', 146), +(164651, 'Kiarra', 1998, 'F', 146), +(164652, 'Leigh', 1998, 'F', 146), +(164653, 'Lynsey', 1998, 'F', 146), +(164654, 'Mickayla', 1998, 'F', 146), +(164655, 'Rowan', 1998, 'F', 146), +(164656, 'Autum', 1998, 'F', 145), +(164657, 'Elle', 1998, 'F', 145), +(164658, 'Johnna', 1998, 'F', 145), +(164659, 'Kristal', 1998, 'F', 145), +(164660, 'Makaela', 1998, 'F', 145), +(164661, 'Taliyah', 1998, 'F', 145), +(164662, 'Ashely', 1998, 'F', 144), +(164663, 'Dahlia', 1998, 'F', 144), +(164664, 'Danae', 1998, 'F', 144), +(164665, 'Giana', 1998, 'F', 144), +(164666, 'Maiya', 1998, 'F', 144), +(164667, 'Maryann', 1998, 'F', 144), +(164668, 'Rosie', 1998, 'F', 144), +(164669, 'Cherokee', 1998, 'F', 143), +(164670, 'Dora', 1998, 'F', 143), +(164671, 'Janay', 1998, 'F', 143), +(164672, 'Lorraine', 1998, 'F', 143), +(164673, 'Maira', 1998, 'F', 143), +(164674, 'Malaysia', 1998, 'F', 143), +(164675, 'Mason', 1998, 'F', 143), +(164676, 'Rosario', 1998, 'F', 143), +(164677, 'Allissa', 1998, 'F', 142), +(164678, 'Daijah', 1998, 'F', 142), +(164679, 'Jamia', 1998, 'F', 142), +(164680, 'Kayleen', 1998, 'F', 142), +(164681, 'Lucille', 1998, 'F', 142), +(164682, 'Milan', 1998, 'F', 142), +(164683, 'Sherry', 1998, 'F', 142), +(164684, 'Tricia', 1998, 'F', 142), +(164685, 'Yaritza', 1998, 'F', 142), +(164686, 'Allegra', 1998, 'F', 141), +(164687, 'Cinthia', 1998, 'F', 141), +(164688, 'Kelsy', 1998, 'F', 141), +(164689, 'Stefani', 1998, 'F', 141), +(164690, 'Tonya', 1998, 'F', 141), +(164691, 'Bryn', 1998, 'F', 140), +(164692, 'Janna', 1998, 'F', 140), +(164693, 'Kimberlee', 1998, 'F', 140), +(164694, 'Kristie', 1998, 'F', 140), +(164695, 'Adrianne', 1998, 'F', 139), +(164696, 'Denisha', 1998, 'F', 139), +(164697, 'Halee', 1998, 'F', 139), +(164698, 'Liberty', 1998, 'F', 139), +(164699, 'Makena', 1998, 'F', 139), +(164700, 'Shaniya', 1998, 'F', 139), +(164701, 'Ada', 1998, 'F', 138), +(164702, 'Alliyah', 1998, 'F', 138), +(164703, 'Frida', 1998, 'F', 138), +(164704, 'Jailyn', 1998, 'F', 138), +(164705, 'Kathrine', 1998, 'F', 138), +(164706, 'Viridiana', 1998, 'F', 138), +(164707, 'Corrine', 1998, 'F', 137), +(164708, 'Jadyn', 1998, 'F', 137), +(164709, 'Laurie', 1998, 'F', 137), +(164710, 'Madalynn', 1998, 'F', 137), +(164711, 'Salena', 1998, 'F', 137), +(164712, 'Alli', 1998, 'F', 136), +(164713, 'Brittanie', 1998, 'F', 136), +(164714, 'Danyelle', 1998, 'F', 136), +(164715, 'Kalli', 1998, 'F', 136), +(164716, 'Nathaly', 1998, 'F', 136), +(164717, 'Santana', 1998, 'F', 136), +(164718, 'Tiera', 1998, 'F', 136), +(164719, 'Acacia', 1998, 'F', 135), +(164720, 'Aniyah', 1998, 'F', 135), +(164721, 'Ariella', 1998, 'F', 135), +(164722, 'Jaiden', 1998, 'F', 135), +(164723, 'Jakayla', 1998, 'F', 135), +(164724, 'Joana', 1998, 'F', 135), +(164725, 'Mariel', 1998, 'F', 135), +(164726, 'Shiann', 1998, 'F', 135), +(164727, 'Simran', 1998, 'F', 135), +(164728, 'Tiffanie', 1998, 'F', 135), +(164729, 'Deandra', 1998, 'F', 134), +(164730, 'Macayla', 1998, 'F', 134), +(164731, 'Alea', 1998, 'F', 133), +(164732, 'Aryana', 1998, 'F', 133), +(164733, 'Catrina', 1998, 'F', 133), +(164734, 'Tyesha', 1998, 'F', 133), +(164735, 'Zhane', 1998, 'F', 133), +(164736, 'Annelise', 1998, 'F', 132), +(164737, 'Charlie', 1998, 'F', 132), +(164738, 'Gwyneth', 1998, 'F', 132), +(164739, 'Kimberley', 1998, 'F', 132), +(164740, 'Maren', 1998, 'F', 132), +(164741, 'Michala', 1998, 'F', 132), +(164742, 'Mikaila', 1998, 'F', 132), +(164743, 'Oriana', 1998, 'F', 132), +(164744, 'Selene', 1998, 'F', 132), +(164745, 'Shivani', 1998, 'F', 132), +(164746, 'Xochitl', 1998, 'F', 132), +(164747, 'Bayleigh', 1998, 'F', 131), +(164748, 'Delanie', 1998, 'F', 131), +(164749, 'Jacinda', 1998, 'F', 131), +(164750, 'Jessi', 1998, 'F', 131), +(164751, 'Laila', 1998, 'F', 131), +(164752, 'Mirella', 1998, 'F', 131), +(164753, 'Naya', 1998, 'F', 131), +(164754, 'Neida', 1998, 'F', 131), +(164755, 'Nikole', 1998, 'F', 131), +(164756, 'Alyse', 1998, 'F', 130), +(164757, 'Bridgett', 1998, 'F', 130), +(164758, 'Janel', 1998, 'F', 130), +(164759, 'Siena', 1998, 'F', 130), +(164760, 'Treasure', 1998, 'F', 130), +(164761, 'Caylin', 1998, 'F', 129), +(164762, 'Joan', 1998, 'F', 129), +(164763, 'Mercedez', 1998, 'F', 129), +(164764, 'Tyana', 1998, 'F', 129), +(164765, 'Halley', 1998, 'F', 128), +(164766, 'Michael', 1998, 'F', 128), +(164767, 'Shaye', 1998, 'F', 128), +(164768, 'Valencia', 1998, 'F', 128), +(164769, 'Kierstin', 1998, 'F', 127), +(164770, 'Linnea', 1998, 'F', 127), +(164771, 'Nya', 1998, 'F', 127), +(164772, 'Aryanna', 1998, 'F', 126), +(164773, 'Jacie', 1998, 'F', 126), +(164774, 'Jamila', 1998, 'F', 126), +(164775, 'Marianne', 1998, 'F', 126), +(164776, 'Natalee', 1998, 'F', 126), +(164777, 'Samaria', 1998, 'F', 126), +(164778, 'Amie', 1998, 'F', 125), +(164779, 'Desire', 1998, 'F', 125), +(164780, 'Elexus', 1998, 'F', 125), +(164781, 'Kai', 1998, 'F', 125), +(164782, 'Lyndsay', 1998, 'F', 125), +(164783, 'Mahogany', 1998, 'F', 125), +(164784, 'Rayven', 1998, 'F', 125), +(164785, 'Rikki', 1998, 'F', 125), +(164786, 'Rubi', 1998, 'F', 125), +(164787, 'Cathy', 1998, 'F', 124), +(164788, 'Grecia', 1998, 'F', 124), +(164789, 'Janine', 1998, 'F', 124), +(164790, 'Jerrica', 1998, 'F', 124), +(164791, 'Marian', 1998, 'F', 124), +(164792, 'Marion', 1998, 'F', 124), +(164793, 'Neha', 1998, 'F', 124), +(164794, 'Rivka', 1998, 'F', 124), +(164795, 'Yulisa', 1998, 'F', 124), +(164796, 'Aislinn', 1998, 'F', 123), +(164797, 'Bethanie', 1998, 'F', 123), +(164798, 'Britany', 1998, 'F', 123), +(164799, 'Christal', 1998, 'F', 123), +(164800, 'Davina', 1998, 'F', 123), +(164801, 'Dominque', 1998, 'F', 123), +(164802, 'Jesenia', 1998, 'F', 123), +(164803, 'Juliann', 1998, 'F', 123), +(164804, 'Kalynn', 1998, 'F', 123), +(164805, 'Louisa', 1998, 'F', 123), +(164806, 'Maryjane', 1998, 'F', 123), +(164807, 'Moira', 1998, 'F', 123), +(164808, 'Myia', 1998, 'F', 123), +(164809, 'Noor', 1998, 'F', 123), +(164810, 'Tanner', 1998, 'F', 123), +(164811, 'Chantelle', 1998, 'F', 122), +(164812, 'Ginger', 1998, 'F', 122), +(164813, 'Hayleigh', 1998, 'F', 122), +(164814, 'Iyana', 1998, 'F', 122), +(164815, 'Johana', 1998, 'F', 122), +(164816, 'Josefina', 1998, 'F', 122), +(164817, 'Keana', 1998, 'F', 122), +(164818, 'Shawnee', 1998, 'F', 122), +(164819, 'Alexius', 1998, 'F', 121), +(164820, 'Andria', 1998, 'F', 121), +(164821, 'Colette', 1998, 'F', 121), +(164822, 'Doris', 1998, 'F', 121), +(164823, 'Edna', 1998, 'F', 121), +(164824, 'Farrah', 1998, 'F', 121), +(164825, 'Francis', 1998, 'F', 121), +(164826, 'Jaci', 1998, 'F', 121), +(164827, 'Jalynn', 1998, 'F', 121), +(164828, 'Klarissa', 1998, 'F', 121), +(164829, 'Kylah', 1998, 'F', 121), +(164830, 'Linsey', 1998, 'F', 121), +(164831, 'Makenzi', 1998, 'F', 121), +(164832, 'Moesha', 1998, 'F', 121), +(164833, 'Rosalie', 1998, 'F', 121), +(164834, 'Suzanna', 1998, 'F', 121), +(164835, 'Taelor', 1998, 'F', 121), +(164836, 'Zakiya', 1998, 'F', 121), +(164837, 'Bree', 1998, 'F', 120), +(164838, 'Brittni', 1998, 'F', 120), +(164839, 'Calli', 1998, 'F', 120), +(164840, 'Jordin', 1998, 'F', 120), +(164841, 'Kaylea', 1998, 'F', 120), +(164842, 'Mariyah', 1998, 'F', 120), +(164843, 'Natali', 1998, 'F', 120), +(164844, 'Xiomara', 1998, 'F', 120), +(164845, 'Dasha', 1998, 'F', 119), +(164846, 'Dymond', 1998, 'F', 119), +(164847, 'Jaycie', 1998, 'F', 119), +(164848, 'Madelaine', 1998, 'F', 119), +(164849, 'Mckinley', 1998, 'F', 119), +(164850, 'Siobhan', 1998, 'F', 119), +(164851, 'Aleena', 1998, 'F', 118), +(164852, 'Chandra', 1998, 'F', 118), +(164853, 'Grayson', 1998, 'F', 118), +(164854, 'Harlee', 1998, 'F', 118), +(164855, 'Ileana', 1998, 'F', 118), +(164856, 'Jacquelin', 1998, 'F', 118), +(164857, 'Lexy', 1998, 'F', 118), +(164858, 'Marla', 1998, 'F', 118), +(164859, 'Mekayla', 1998, 'F', 118), +(164860, 'Michaella', 1998, 'F', 118), +(164861, 'Mika', 1998, 'F', 118), +(164862, 'Shreya', 1998, 'F', 118), +(164863, 'Valarie', 1998, 'F', 118), +(164864, 'Zariah', 1998, 'F', 118), +(164865, 'Amberly', 1998, 'F', 117), +(164866, 'Areli', 1998, 'F', 117), +(164867, 'Cameryn', 1998, 'F', 117), +(164868, 'Isabell', 1998, 'F', 117), +(164869, 'Jocelynn', 1998, 'F', 117), +(164870, 'Jorden', 1998, 'F', 117), +(164871, 'Kasie', 1998, 'F', 117), +(164872, 'Salina', 1998, 'F', 117), +(164873, 'Sapphire', 1998, 'F', 117), +(164874, 'Tracey', 1998, 'F', 117), +(164875, 'Tytiana', 1998, 'F', 117), +(164876, 'Yahaira', 1998, 'F', 117), +(164877, 'Adia', 1998, 'F', 116), +(164878, 'Amaya', 1998, 'F', 116), +(164879, 'Brigid', 1998, 'F', 116), +(164880, 'Darien', 1998, 'F', 116), +(164881, 'Ilana', 1998, 'F', 116), +(164882, 'Jourdan', 1998, 'F', 116), +(164883, 'Latasha', 1998, 'F', 116), +(164884, 'Latavia', 1998, 'F', 116), +(164885, 'Penelope', 1998, 'F', 116), +(164886, 'Renae', 1998, 'F', 116), +(164887, 'Zainab', 1998, 'F', 116), +(164888, 'Harlie', 1998, 'F', 115), +(164889, 'Heidy', 1998, 'F', 115), +(164890, 'Iesha', 1998, 'F', 115), +(164891, 'Jazzmin', 1998, 'F', 115), +(164892, 'Katya', 1998, 'F', 115), +(164893, 'Kendyl', 1998, 'F', 115), +(164894, 'Lynette', 1998, 'F', 115), +(164895, 'Mallorie', 1998, 'F', 115), +(164896, 'Niya', 1998, 'F', 115), +(164897, 'Patrice', 1998, 'F', 115), +(164898, 'Sunny', 1998, 'F', 115), +(164899, 'Amalia', 1998, 'F', 114), +(164900, 'August', 1998, 'F', 114), +(164901, 'Austin', 1998, 'F', 114), +(164902, 'Bailie', 1998, 'F', 114), +(164903, 'Breona', 1998, 'F', 114), +(164904, 'Danna', 1998, 'F', 114), +(164905, 'Jodie', 1998, 'F', 114), +(164906, 'Keyanna', 1998, 'F', 114), +(164907, 'Marguerite', 1998, 'F', 114), +(164908, 'Azaria', 1998, 'F', 113), +(164909, 'Catera', 1998, 'F', 113), +(164910, 'Daysha', 1998, 'F', 113), +(164911, 'Kami', 1998, 'F', 113), +(164912, 'Monae', 1998, 'F', 113), +(164913, 'Ravyn', 1998, 'F', 113), +(164914, 'Rosemarie', 1998, 'F', 113), +(164915, 'Ainsley', 1998, 'F', 112), +(164916, 'Cecily', 1998, 'F', 112), +(164917, 'Iyanna', 1998, 'F', 112), +(164918, 'Jala', 1998, 'F', 112), +(164919, 'Krysten', 1998, 'F', 112), +(164920, 'Latisha', 1998, 'F', 112), +(164921, 'Micheala', 1998, 'F', 112), +(164922, 'Roxanna', 1998, 'F', 112), +(164923, 'Adina', 1998, 'F', 111), +(164924, 'Bayley', 1998, 'F', 111), +(164925, 'Gemma', 1998, 'F', 111), +(164926, 'Glenda', 1998, 'F', 111), +(164927, 'Joseline', 1998, 'F', 111), +(164928, 'Malorie', 1998, 'F', 111), +(164929, 'Mona', 1998, 'F', 111), +(164930, 'Myesha', 1998, 'F', 111), +(164931, 'Rhea', 1998, 'F', 111), +(164932, 'Rianna', 1998, 'F', 111), +(164933, 'Alora', 1998, 'F', 110), +(164934, 'Jaylynn', 1998, 'F', 110), +(164935, 'Jazzmine', 1998, 'F', 110), +(164936, 'Kyndal', 1998, 'F', 110), +(164937, 'Phoenix', 1998, 'F', 110), +(164938, 'Rena', 1998, 'F', 110), +(164939, 'Whitley', 1998, 'F', 110), +(164940, 'Aida', 1998, 'F', 109), +(164941, 'Celena', 1998, 'F', 109), +(164942, 'Frankie', 1998, 'F', 109), +(164943, 'Jolie', 1998, 'F', 109), +(164944, 'Leigha', 1998, 'F', 109), +(164945, 'Madelyne', 1998, 'F', 109), +(164946, 'Malika', 1998, 'F', 109), +(164947, 'Nallely', 1998, 'F', 109), +(164948, 'Traci', 1998, 'F', 109), +(164949, 'Yareli', 1998, 'F', 109), +(164950, 'Destanie', 1998, 'F', 108), +(164951, 'Imari', 1998, 'F', 108), +(164952, 'Jayna', 1998, 'F', 108), +(164953, 'Margo', 1998, 'F', 108), +(164954, 'Merissa', 1998, 'F', 108), +(164955, 'Abriana', 1998, 'F', 107), +(164956, 'Alanis', 1998, 'F', 107), +(164957, 'Bertha', 1998, 'F', 107), +(164958, 'Cathryn', 1998, 'F', 107), +(164959, 'Jaimie', 1998, 'F', 107), +(164960, 'Malka', 1998, 'F', 107), +(164961, 'Margot', 1998, 'F', 107), +(164962, 'Marta', 1998, 'F', 107), +(164963, 'Raeann', 1998, 'F', 107), +(164964, 'Adelaide', 1998, 'F', 106), +(164965, 'Alannah', 1998, 'F', 106), +(164966, 'Holli', 1998, 'F', 106), +(164967, 'Jaylyn', 1998, 'F', 106), +(164968, 'Journey', 1998, 'F', 106), +(164969, 'Lisbeth', 1998, 'F', 106), +(164970, 'Madysen', 1998, 'F', 106), +(164971, 'Magaly', 1998, 'F', 106), +(164972, 'Rosalinda', 1998, 'F', 106), +(164973, 'Yazmine', 1998, 'F', 106), +(164974, 'Ayesha', 1998, 'F', 105), +(164975, 'Callista', 1998, 'F', 105), +(164976, 'Chrystal', 1998, 'F', 105), +(164977, 'Dolores', 1998, 'F', 105), +(164978, 'Ivonne', 1998, 'F', 105), +(164979, 'Joi', 1998, 'F', 105), +(164980, 'Kaeli', 1998, 'F', 105), +(164981, 'Lianna', 1998, 'F', 105), +(164982, 'Mackenna', 1998, 'F', 105), +(164983, 'Marin', 1998, 'F', 105), +(164984, 'Mattison', 1998, 'F', 105), +(164985, 'Alisia', 1998, 'F', 104), +(164986, 'Anaya', 1998, 'F', 104), +(164987, 'Anisha', 1998, 'F', 104), +(164988, 'Gisel', 1998, 'F', 104), +(164989, 'Kirstyn', 1998, 'F', 104), +(164990, 'Mykala', 1998, 'F', 104), +(164991, 'Raelynn', 1998, 'F', 104), +(164992, 'Sana', 1998, 'F', 104), +(164993, 'Vicky', 1998, 'F', 104), +(164994, 'Dorian', 1998, 'F', 103), +(164995, 'Gisela', 1998, 'F', 103), +(164996, 'Hattie', 1998, 'F', 103), +(164997, 'Hilda', 1998, 'F', 103), +(164998, 'Kiah', 1998, 'F', 103), +(164999, 'Luna', 1998, 'F', 103), +(165000, 'Nicolle', 1998, 'F', 103), +(165001, 'Sheyenne', 1998, 'F', 103), +(165002, 'Shiloh', 1998, 'F', 103), +(165003, 'Shoshana', 1998, 'F', 103), +(165004, 'Adelina', 1998, 'F', 102), +(165005, 'Cami', 1998, 'F', 102), +(165006, 'Chanelle', 1998, 'F', 102), +(165007, 'Gissel', 1998, 'F', 102), +(165008, 'Haily', 1998, 'F', 102), +(165009, 'Kim', 1998, 'F', 102), +(165010, 'Loretta', 1998, 'F', 102), +(165011, 'Marielle', 1998, 'F', 102), +(165012, 'Andie', 1998, 'F', 101), +(165013, 'Annalisa', 1998, 'F', 101), +(165014, 'Cheyanna', 1998, 'F', 101), +(165015, 'Destine', 1998, 'F', 101), +(165016, 'Katilyn', 1998, 'F', 101), +(165017, 'Krystina', 1998, 'F', 101), +(165018, 'Kyndall', 1998, 'F', 101), +(165019, 'Melany', 1998, 'F', 101), +(165020, 'Ryanne', 1998, 'F', 101), +(165021, 'Saira', 1998, 'F', 101), +(165022, 'Tyla', 1998, 'F', 101), +(165023, 'Ayleen', 1998, 'F', 100), +(165024, 'Bernice', 1998, 'F', 100), +(165025, 'Brookelyn', 1998, 'F', 100), +(165026, 'Charisma', 1998, 'F', 100), +(165027, 'Cheyann', 1998, 'F', 100), +(165028, 'Dena', 1998, 'F', 100), +(165029, 'Dionna', 1998, 'F', 100), +(165030, 'Elvira', 1998, 'F', 100), +(165031, 'Jalen', 1998, 'F', 100), +(165032, 'Jamesha', 1998, 'F', 100), +(165033, 'Kayce', 1998, 'F', 100), +(165034, 'Laci', 1998, 'F', 100), +(165035, 'Staci', 1998, 'F', 100), +(165036, 'Stefany', 1998, 'F', 100), +(165037, 'Tamika', 1998, 'F', 100), +(165038, 'Teanna', 1998, 'F', 100), +(165039, 'Tristin', 1998, 'F', 100), +(165040, 'Vera', 1998, 'F', 100), +(165041, 'Yoselin', 1998, 'F', 100), +(165042, 'Michael', 1998, 'M', 36613), +(165043, 'Jacob', 1998, 'M', 36001), +(165044, 'Matthew', 1998, 'M', 31137), +(165045, 'Joshua', 1998, 'M', 28086), +(165046, 'Christopher', 1998, 'M', 26998), +(165047, 'Nicholas', 1998, 'M', 26630), +(165048, 'Brandon', 1998, 'M', 23828), +(165049, 'Tyler', 1998, 'M', 23710), +(165050, 'Andrew', 1998, 'M', 23646), +(165051, 'Austin', 1998, 'M', 23477), +(165052, 'Joseph', 1998, 'M', 23170), +(165053, 'Daniel', 1998, 'M', 23135), +(165054, 'David', 1998, 'M', 20869), +(165055, 'William', 1998, 'M', 20825), +(165056, 'John', 1998, 'M', 20612), +(165057, 'Zachary', 1998, 'M', 20576), +(165058, 'Ryan', 1998, 'M', 20194), +(165059, 'James', 1998, 'M', 19682), +(165060, 'Anthony', 1998, 'M', 19625), +(165061, 'Justin', 1998, 'M', 17969), +(165062, 'Jonathan', 1998, 'M', 17642), +(165063, 'Alexander', 1998, 'M', 17463), +(165064, 'Robert', 1998, 'M', 15524), +(165065, 'Kyle', 1998, 'M', 15275), +(165066, 'Dylan', 1998, 'M', 14538), +(165067, 'Christian', 1998, 'M', 14505), +(165068, 'Jordan', 1998, 'M', 14409), +(165069, 'Samuel', 1998, 'M', 13892), +(165070, 'Noah', 1998, 'M', 13407), +(165071, 'Benjamin', 1998, 'M', 13053), +(165072, 'Thomas', 1998, 'M', 12883), +(165073, 'Kevin', 1998, 'M', 12507), +(165074, 'Jose', 1998, 'M', 12367), +(165075, 'Nathan', 1998, 'M', 11583), +(165076, 'Cameron', 1998, 'M', 11418), +(165077, 'Hunter', 1998, 'M', 11076), +(165078, 'Aaron', 1998, 'M', 10544), +(165079, 'Ethan', 1998, 'M', 10532), +(165080, 'Eric', 1998, 'M', 9962), +(165081, 'Jason', 1998, 'M', 9393), +(165082, 'Brian', 1998, 'M', 9143), +(165083, 'Caleb', 1998, 'M', 9026), +(165084, 'Cody', 1998, 'M', 8812), +(165085, 'Logan', 1998, 'M', 8639), +(165086, 'Adam', 1998, 'M', 8354), +(165087, 'Steven', 1998, 'M', 8111), +(165088, 'Connor', 1998, 'M', 7904), +(165089, 'Charles', 1998, 'M', 7846), +(165090, 'Timothy', 1998, 'M', 7841), +(165091, 'Sean', 1998, 'M', 7712), +(165092, 'Jared', 1998, 'M', 7460), +(165093, 'Juan', 1998, 'M', 7360), +(165094, 'Luis', 1998, 'M', 7198), +(165095, 'Gabriel', 1998, 'M', 7067), +(165096, 'Richard', 1998, 'M', 6952), +(165097, 'Alex', 1998, 'M', 6951), +(165098, 'Patrick', 1998, 'M', 6732), +(165099, 'Trevor', 1998, 'M', 6598), +(165100, 'Isaiah', 1998, 'M', 6488), +(165101, 'Nathaniel', 1998, 'M', 6426), +(165102, 'Jack', 1998, 'M', 6374), +(165103, 'Devin', 1998, 'M', 6217), +(165104, 'Evan', 1998, 'M', 6083), +(165105, 'Mark', 1998, 'M', 5890), +(165106, 'Isaac', 1998, 'M', 5855), +(165107, 'Elijah', 1998, 'M', 5661), +(165108, 'Chase', 1998, 'M', 5562), +(165109, 'Jeremy', 1998, 'M', 5540), +(165110, 'Carlos', 1998, 'M', 5475), +(165111, 'Jesse', 1998, 'M', 5439), +(165112, 'Adrian', 1998, 'M', 5428), +(165113, 'Dakota', 1998, 'M', 5402), +(165114, 'Ian', 1998, 'M', 5351), +(165115, 'Bryan', 1998, 'M', 5307), +(165116, 'Luke', 1998, 'M', 5282), +(165117, 'Jesus', 1998, 'M', 5214), +(165118, 'Cole', 1998, 'M', 5148), +(165119, 'Stephen', 1998, 'M', 5008), +(165120, 'Antonio', 1998, 'M', 4943), +(165121, 'Garrett', 1998, 'M', 4788), +(165122, 'Angel', 1998, 'M', 4769), +(165123, 'Tanner', 1998, 'M', 4702), +(165124, 'Mason', 1998, 'M', 4657), +(165125, 'Spencer', 1998, 'M', 4619), +(165126, 'Blake', 1998, 'M', 4606), +(165127, 'Kenneth', 1998, 'M', 4587), +(165128, 'Seth', 1998, 'M', 4585), +(165129, 'Dalton', 1998, 'M', 4563), +(165130, 'Paul', 1998, 'M', 4319), +(165131, 'Miguel', 1998, 'M', 4254), +(165132, 'Jeffrey', 1998, 'M', 4187), +(165133, 'Tristan', 1998, 'M', 4169), +(165134, 'Lucas', 1998, 'M', 4089), +(165135, 'Bryce', 1998, 'M', 4052), +(165136, 'Alejandro', 1998, 'M', 4043), +(165137, 'Marcus', 1998, 'M', 4011), +(165138, 'Victor', 1998, 'M', 3993), +(165139, 'Travis', 1998, 'M', 3924), +(165140, 'Brendan', 1998, 'M', 3877), +(165141, 'Jackson', 1998, 'M', 3859), +(165142, 'Bradley', 1998, 'M', 3794), +(165143, 'Jake', 1998, 'M', 3785), +(165144, 'Mitchell', 1998, 'M', 3623), +(165145, 'Taylor', 1998, 'M', 3581), +(165146, 'Colton', 1998, 'M', 3573), +(165147, 'Edward', 1998, 'M', 3573), +(165148, 'Jorge', 1998, 'M', 3461), +(165149, 'Dustin', 1998, 'M', 3443), +(165150, 'Gregory', 1998, 'M', 3429), +(165151, 'Derek', 1998, 'M', 3410), +(165152, 'Peter', 1998, 'M', 3384), +(165153, 'Alec', 1998, 'M', 3355), +(165154, 'Shawn', 1998, 'M', 3255), +(165155, 'Jeremiah', 1998, 'M', 3221), +(165156, 'Corey', 1998, 'M', 3201), +(165157, 'Gavin', 1998, 'M', 3192), +(165158, 'Joel', 1998, 'M', 3170), +(165159, 'Shane', 1998, 'M', 3166), +(165160, 'Devon', 1998, 'M', 3146), +(165161, 'Dominic', 1998, 'M', 3098), +(165162, 'Vincent', 1998, 'M', 3098), +(165163, 'Colin', 1998, 'M', 3075), +(165164, 'Scott', 1998, 'M', 3062), +(165165, 'Julian', 1998, 'M', 3052), +(165166, 'Ricardo', 1998, 'M', 3045), +(165167, 'George', 1998, 'M', 3044), +(165168, 'Grant', 1998, 'M', 3014), +(165169, 'Riley', 1998, 'M', 3013), +(165170, 'Oscar', 1998, 'M', 3006), +(165171, 'Collin', 1998, 'M', 2987), +(165172, 'Xavier', 1998, 'M', 2931), +(165173, 'Nicolas', 1998, 'M', 2916), +(165174, 'Brett', 1998, 'M', 2885), +(165175, 'Dillon', 1998, 'M', 2838), +(165176, 'Maxwell', 1998, 'M', 2790), +(165177, 'Henry', 1998, 'M', 2786), +(165178, 'Wyatt', 1998, 'M', 2722), +(165179, 'Malik', 1998, 'M', 2694), +(165180, 'Francisco', 1998, 'M', 2692), +(165181, 'Erik', 1998, 'M', 2676), +(165182, 'Raymond', 1998, 'M', 2637), +(165183, 'Parker', 1998, 'M', 2630), +(165184, 'Johnathan', 1998, 'M', 2591), +(165185, 'Cristian', 1998, 'M', 2565), +(165186, 'Eduardo', 1998, 'M', 2485), +(165187, 'Omar', 1998, 'M', 2450), +(165188, 'Manuel', 1998, 'M', 2350), +(165189, 'Alexis', 1998, 'M', 2316), +(165190, 'Javier', 1998, 'M', 2308), +(165191, 'Clayton', 1998, 'M', 2265), +(165192, 'Mario', 1998, 'M', 2261), +(165193, 'Wesley', 1998, 'M', 2242), +(165194, 'Bailey', 1998, 'M', 2240), +(165195, 'Ivan', 1998, 'M', 2239), +(165196, 'Liam', 1998, 'M', 2210), +(165197, 'Kaleb', 1998, 'M', 2194), +(165198, 'Andres', 1998, 'M', 2177), +(165199, 'Max', 1998, 'M', 2156), +(165200, 'Levi', 1998, 'M', 2152), +(165201, 'Hayden', 1998, 'M', 2141), +(165202, 'Alan', 1998, 'M', 2137), +(165203, 'Darius', 1998, 'M', 2131), +(165204, 'Brady', 1998, 'M', 2095), +(165205, 'Cory', 1998, 'M', 2075), +(165206, 'Martin', 1998, 'M', 2066), +(165207, 'Fernando', 1998, 'M', 2056), +(165208, 'Edgar', 1998, 'M', 2045), +(165209, 'Cesar', 1998, 'M', 2000), +(165210, 'Gage', 1998, 'M', 1998), +(165211, 'Casey', 1998, 'M', 1974), +(165212, 'Sergio', 1998, 'M', 1965), +(165213, 'Roberto', 1998, 'M', 1959), +(165214, 'Chandler', 1998, 'M', 1952), +(165215, 'Harrison', 1998, 'M', 1903), +(165216, 'Dawson', 1998, 'M', 1895), +(165217, 'Preston', 1998, 'M', 1891), +(165218, 'Phillip', 1998, 'M', 1887), +(165219, 'Frank', 1998, 'M', 1884), +(165220, 'Owen', 1998, 'M', 1870), +(165221, 'Donald', 1998, 'M', 1861), +(165222, 'Marco', 1998, 'M', 1853), +(165223, 'Ronald', 1998, 'M', 1846), +(165224, 'Trenton', 1998, 'M', 1830), +(165225, 'Troy', 1998, 'M', 1821), +(165226, 'Hector', 1998, 'M', 1814), +(165227, 'Chad', 1998, 'M', 1808), +(165228, 'Diego', 1998, 'M', 1807), +(165229, 'Drew', 1998, 'M', 1803), +(165230, 'Carter', 1998, 'M', 1800), +(165231, 'Jakob', 1998, 'M', 1784), +(165232, 'Keith', 1998, 'M', 1784), +(165233, 'Conner', 1998, 'M', 1776), +(165234, 'Andre', 1998, 'M', 1766), +(165235, 'Derrick', 1998, 'M', 1756), +(165236, 'Jonathon', 1998, 'M', 1737), +(165237, 'Aidan', 1998, 'M', 1703), +(165238, 'Edwin', 1998, 'M', 1700), +(165239, 'Sebastian', 1998, 'M', 1696), +(165240, 'Micah', 1998, 'M', 1690), +(165241, 'Pedro', 1998, 'M', 1672), +(165242, 'Dante', 1998, 'M', 1670), +(165243, 'Landon', 1998, 'M', 1643), +(165244, 'Calvin', 1998, 'M', 1637), +(165245, 'Jalen', 1998, 'M', 1587), +(165246, 'Ruben', 1998, 'M', 1582), +(165247, 'Erick', 1998, 'M', 1577), +(165248, 'Damian', 1998, 'M', 1567), +(165249, 'Chance', 1998, 'M', 1543), +(165250, 'Donovan', 1998, 'M', 1541), +(165251, 'Abraham', 1998, 'M', 1540), +(165252, 'Trey', 1998, 'M', 1537), +(165253, 'Josiah', 1998, 'M', 1523), +(165254, 'Emmanuel', 1998, 'M', 1502), +(165255, 'Philip', 1998, 'M', 1498), +(165256, 'Griffin', 1998, 'M', 1491), +(165257, 'Johnny', 1998, 'M', 1478), +(165258, 'Gerardo', 1998, 'M', 1473), +(165259, 'Carson', 1998, 'M', 1471), +(165260, 'Jonah', 1998, 'M', 1465), +(165261, 'Colby', 1998, 'M', 1456), +(165262, 'Peyton', 1998, 'M', 1452), +(165263, 'Mathew', 1998, 'M', 1449), +(165264, 'Andy', 1998, 'M', 1432), +(165265, 'Armando', 1998, 'M', 1426), +(165266, 'Giovanni', 1998, 'M', 1418), +(165267, 'Curtis', 1998, 'M', 1408), +(165268, 'Douglas', 1998, 'M', 1402), +(165269, 'Jerry', 1998, 'M', 1397), +(165270, 'Rafael', 1998, 'M', 1387), +(165271, 'Skyler', 1998, 'M', 1384), +(165272, 'Trent', 1998, 'M', 1375), +(165273, 'Raul', 1998, 'M', 1373), +(165274, 'Nolan', 1998, 'M', 1364), +(165275, 'Gary', 1998, 'M', 1345), +(165276, 'Zackary', 1998, 'M', 1345), +(165277, 'Marcos', 1998, 'M', 1341), +(165278, 'Enrique', 1998, 'M', 1323), +(165279, 'Dennis', 1998, 'M', 1316), +(165280, 'Allen', 1998, 'M', 1311), +(165281, 'Jaime', 1998, 'M', 1294), +(165282, 'Zachery', 1998, 'M', 1291), +(165283, 'Marc', 1998, 'M', 1289), +(165284, 'Israel', 1998, 'M', 1278), +(165285, 'Randy', 1998, 'M', 1275), +(165286, 'Brenden', 1998, 'M', 1267), +(165287, 'Alberto', 1998, 'M', 1238), +(165288, 'Avery', 1998, 'M', 1237), +(165289, 'Larry', 1998, 'M', 1208), +(165290, 'Brent', 1998, 'M', 1202), +(165291, 'Julio', 1998, 'M', 1192), +(165292, 'Braden', 1998, 'M', 1190), +(165293, 'Miles', 1998, 'M', 1181), +(165294, 'Louis', 1998, 'M', 1180), +(165295, 'Cooper', 1998, 'M', 1177), +(165296, 'Tony', 1998, 'M', 1177), +(165297, 'Josue', 1998, 'M', 1175), +(165298, 'Leonardo', 1998, 'M', 1160), +(165299, 'Nickolas', 1998, 'M', 1156), +(165300, 'Albert', 1998, 'M', 1153), +(165301, 'Carl', 1998, 'M', 1146), +(165302, 'Elias', 1998, 'M', 1140), +(165303, 'Ty', 1998, 'M', 1137), +(165304, 'Kobe', 1998, 'M', 1104), +(165305, 'Dominick', 1998, 'M', 1096), +(165306, 'Jimmy', 1998, 'M', 1088), +(165307, 'Zane', 1998, 'M', 1074), +(165308, 'Kristopher', 1998, 'M', 1073), +(165309, 'Kameron', 1998, 'M', 1072), +(165310, 'Drake', 1998, 'M', 1057), +(165311, 'Danny', 1998, 'M', 1055), +(165312, 'Micheal', 1998, 'M', 1053), +(165313, 'Damon', 1998, 'M', 1052), +(165314, 'Quentin', 1998, 'M', 1052), +(165315, 'Brennan', 1998, 'M', 1051), +(165316, 'Jarod', 1998, 'M', 1045), +(165317, 'Tristen', 1998, 'M', 1041), +(165318, 'Lawrence', 1998, 'M', 1040), +(165319, 'Ashton', 1998, 'M', 1028), +(165320, 'Brock', 1998, 'M', 1027), +(165321, 'Darren', 1998, 'M', 1027), +(165322, 'Ramon', 1998, 'M', 1022), +(165323, 'Jarrett', 1998, 'M', 1019), +(165324, 'Brayden', 1998, 'M', 1015), +(165325, 'Dallas', 1998, 'M', 1007), +(165326, 'Nikolas', 1998, 'M', 1007), +(165327, 'Joe', 1998, 'M', 1004), +(165328, 'Eli', 1998, 'M', 995), +(165329, 'Deandre', 1998, 'M', 994), +(165330, 'Arturo', 1998, 'M', 983), +(165331, 'Theodore', 1998, 'M', 983), +(165332, 'Arthur', 1998, 'M', 982), +(165333, 'Ricky', 1998, 'M', 970), +(165334, 'Jeffery', 1998, 'M', 965), +(165335, 'Alfredo', 1998, 'M', 955), +(165336, 'Lorenzo', 1998, 'M', 955), +(165337, 'Lane', 1998, 'M', 954), +(165338, 'Morgan', 1998, 'M', 951), +(165339, 'Russell', 1998, 'M', 951), +(165340, 'Tommy', 1998, 'M', 951), +(165341, 'Damien', 1998, 'M', 950), +(165342, 'Simon', 1998, 'M', 946), +(165343, 'Terry', 1998, 'M', 945), +(165344, 'Angelo', 1998, 'M', 944), +(165345, 'Myles', 1998, 'M', 931), +(165346, 'Keegan', 1998, 'M', 928), +(165347, 'Tucker', 1998, 'M', 920), +(165348, 'Saul', 1998, 'M', 916), +(165349, 'Payton', 1998, 'M', 914), +(165350, 'Branden', 1998, 'M', 910), +(165351, 'Pablo', 1998, 'M', 902), +(165352, 'Bryant', 1998, 'M', 896), +(165353, 'Gustavo', 1998, 'M', 896), +(165354, 'Walter', 1998, 'M', 896), +(165355, 'Kyler', 1998, 'M', 885), +(165356, 'Craig', 1998, 'M', 880), +(165357, 'Lance', 1998, 'M', 880), +(165358, 'Fabian', 1998, 'M', 871), +(165359, 'Brendon', 1998, 'M', 868), +(165360, 'Rodney', 1998, 'M', 865), +(165361, 'Terrell', 1998, 'M', 861), +(165362, 'Bryson', 1998, 'M', 860), +(165363, 'Corbin', 1998, 'M', 847), +(165364, 'Marvin', 1998, 'M', 838), +(165365, 'Braxton', 1998, 'M', 837), +(165366, 'Bobby', 1998, 'M', 835), +(165367, 'Jay', 1998, 'M', 833), +(165368, 'Maurice', 1998, 'M', 831), +(165369, 'Jaden', 1998, 'M', 827), +(165370, 'Jon', 1998, 'M', 827), +(165371, 'Quinn', 1998, 'M', 815), +(165372, 'Salvador', 1998, 'M', 814), +(165373, 'Billy', 1998, 'M', 813), +(165374, 'Conor', 1998, 'M', 811), +(165375, 'Kody', 1998, 'M', 811), +(165376, 'Ernesto', 1998, 'M', 807), +(165377, 'Cade', 1998, 'M', 806), +(165378, 'Quinton', 1998, 'M', 804), +(165379, 'Roman', 1998, 'M', 803), +(165380, 'Eddie', 1998, 'M', 794), +(165381, 'Emilio', 1998, 'M', 789), +(165382, 'Ross', 1998, 'M', 789), +(165383, 'Justice', 1998, 'M', 785), +(165384, 'Johnathon', 1998, 'M', 783), +(165385, 'Trevon', 1998, 'M', 779), +(165386, 'Zackery', 1998, 'M', 775), +(165387, 'Dean', 1998, 'M', 771), +(165388, 'Isiah', 1998, 'M', 768), +(165389, 'Roger', 1998, 'M', 768), +(165390, 'Jaylen', 1998, 'M', 758), +(165391, 'Brody', 1998, 'M', 751), +(165392, 'Ismael', 1998, 'M', 744), +(165393, 'Desmond', 1998, 'M', 741), +(165394, 'Marshall', 1998, 'M', 740), +(165395, 'Willie', 1998, 'M', 739), +(165396, 'Reginald', 1998, 'M', 736), +(165397, 'Oliver', 1998, 'M', 734), +(165398, 'Marquis', 1998, 'M', 732), +(165399, 'Skylar', 1998, 'M', 730), +(165400, 'Grayson', 1998, 'M', 725), +(165401, 'Jayson', 1998, 'M', 725), +(165402, 'Frederick', 1998, 'M', 720), +(165403, 'Emanuel', 1998, 'M', 718), +(165404, 'Esteban', 1998, 'M', 717), +(165405, 'Keaton', 1998, 'M', 717), +(165406, 'Todd', 1998, 'M', 703), +(165407, 'Malcolm', 1998, 'M', 702), +(165408, 'Kelvin', 1998, 'M', 698), +(165409, 'Kendall', 1998, 'M', 696), +(165410, 'Guillermo', 1998, 'M', 693), +(165411, 'Shaun', 1998, 'M', 692), +(165412, 'Moises', 1998, 'M', 691), +(165413, 'Jamal', 1998, 'M', 689), +(165414, 'Zachariah', 1998, 'M', 687), +(165415, 'Terrance', 1998, 'M', 680), +(165416, 'Davis', 1998, 'M', 676), +(165417, 'Gerald', 1998, 'M', 671), +(165418, 'Demetrius', 1998, 'M', 670), +(165419, 'Abel', 1998, 'M', 668), +(165420, 'Jace', 1998, 'M', 667), +(165421, 'Triston', 1998, 'M', 656), +(165422, 'Tyson', 1998, 'M', 654), +(165423, 'Roy', 1998, 'M', 653), +(165424, 'Bruce', 1998, 'M', 651), +(165425, 'Randall', 1998, 'M', 651), +(165426, 'Jessie', 1998, 'M', 642), +(165427, 'Duncan', 1998, 'M', 641), +(165428, 'Darian', 1998, 'M', 639), +(165429, 'Felix', 1998, 'M', 636), +(165430, 'Franklin', 1998, 'M', 636), +(165431, 'Steve', 1998, 'M', 635), +(165432, 'Lukas', 1998, 'M', 629), +(165433, 'Orlando', 1998, 'M', 629), +(165434, 'Ali', 1998, 'M', 622), +(165435, 'Clay', 1998, 'M', 622), +(165436, 'Jayden', 1998, 'M', 620), +(165437, 'Jarrod', 1998, 'M', 618), +(165438, 'Nelson', 1998, 'M', 614), +(165439, 'Rene', 1998, 'M', 613), +(165440, 'Tyrone', 1998, 'M', 613), +(165441, 'Khalil', 1998, 'M', 611), +(165442, 'Kristian', 1998, 'M', 609), +(165443, 'Ahmad', 1998, 'M', 608), +(165444, 'Lee', 1998, 'M', 607), +(165445, 'Jamie', 1998, 'M', 606), +(165446, 'Graham', 1998, 'M', 600), +(165447, 'Nathanael', 1998, 'M', 600), +(165448, 'Tyree', 1998, 'M', 600), +(165449, 'Chris', 1998, 'M', 599), +(165450, 'Devan', 1998, 'M', 592), +(165451, 'Francis', 1998, 'M', 580), +(165452, 'Rodolfo', 1998, 'M', 579), +(165453, 'Jerome', 1998, 'M', 577), +(165454, 'Malachi', 1998, 'M', 577), +(165455, 'Weston', 1998, 'M', 577), +(165456, 'Hugo', 1998, 'M', 570), +(165457, 'Melvin', 1998, 'M', 566), +(165458, 'Holden', 1998, 'M', 562), +(165459, 'Kendrick', 1998, 'M', 562), +(165460, 'Cedric', 1998, 'M', 552), +(165461, 'Javon', 1998, 'M', 552), +(165462, 'Tristin', 1998, 'M', 551), +(165463, 'Byron', 1998, 'M', 549), +(165464, 'Reid', 1998, 'M', 548), +(165465, 'Warren', 1998, 'M', 546), +(165466, 'Jaquan', 1998, 'M', 544), +(165467, 'Deshawn', 1998, 'M', 543), +(165468, 'Jarred', 1998, 'M', 542), +(165469, 'Walker', 1998, 'M', 542), +(165470, 'Harley', 1998, 'M', 539), +(165471, 'Jordon', 1998, 'M', 539), +(165472, 'Jermaine', 1998, 'M', 537), +(165473, 'Darrell', 1998, 'M', 533), +(165474, 'Kaden', 1998, 'M', 532), +(165475, 'Leo', 1998, 'M', 527), +(165476, 'Damion', 1998, 'M', 526), +(165477, 'Wayne', 1998, 'M', 525), +(165478, 'Reed', 1998, 'M', 524), +(165479, 'Ronnie', 1998, 'M', 524), +(165480, 'Trace', 1998, 'M', 524), +(165481, 'Devonte', 1998, 'M', 519), +(165482, 'Amir', 1998, 'M', 516), +(165483, 'Marquise', 1998, 'M', 516), +(165484, 'Alvin', 1998, 'M', 515), +(165485, 'Tariq', 1998, 'M', 514), +(165486, 'Rodrigo', 1998, 'M', 511), +(165487, 'Santiago', 1998, 'M', 507), +(165488, 'Wade', 1998, 'M', 507), +(165489, 'Beau', 1998, 'M', 499), +(165490, 'Ezekiel', 1998, 'M', 499), +(165491, 'Gilberto', 1998, 'M', 498), +(165492, 'Tyrell', 1998, 'M', 498), +(165493, 'Allan', 1998, 'M', 497), +(165494, 'Charlie', 1998, 'M', 495), +(165495, 'Noel', 1998, 'M', 495), +(165496, 'Felipe', 1998, 'M', 494), +(165497, 'Tomas', 1998, 'M', 494), +(165498, 'Keenan', 1998, 'M', 492), +(165499, 'Terrence', 1998, 'M', 491), +(165500, 'Neil', 1998, 'M', 489), +(165501, 'Sam', 1998, 'M', 489), +(165502, 'Camron', 1998, 'M', 487), +(165503, 'Eugene', 1998, 'M', 487), +(165504, 'Caden', 1998, 'M', 486), +(165505, 'Alfonso', 1998, 'M', 485), +(165506, 'Reece', 1998, 'M', 485), +(165507, 'Dale', 1998, 'M', 483), +(165508, 'Elliot', 1998, 'M', 482), +(165509, 'Harry', 1998, 'M', 479), +(165510, 'Stanley', 1998, 'M', 473), +(165511, 'Donte', 1998, 'M', 472), +(165512, 'Leonard', 1998, 'M', 471), +(165513, 'Mauricio', 1998, 'M', 471), +(165514, 'Noe', 1998, 'M', 468), +(165515, 'Ariel', 1998, 'M', 467), +(165516, 'Issac', 1998, 'M', 462), +(165517, 'Leon', 1998, 'M', 459), +(165518, 'Garret', 1998, 'M', 458), +(165519, 'Kenny', 1998, 'M', 458), +(165520, 'Dominique', 1998, 'M', 457), +(165521, 'Davon', 1998, 'M', 456), +(165522, 'Dane', 1998, 'M', 455), +(165523, 'Karl', 1998, 'M', 455), +(165524, 'Rogelio', 1998, 'M', 451), +(165525, 'Ernest', 1998, 'M', 450), +(165526, 'Mohammad', 1998, 'M', 450), +(165527, 'Bennett', 1998, 'M', 449), +(165528, 'Julius', 1998, 'M', 449), +(165529, 'Ezra', 1998, 'M', 448), +(165530, 'Jaylon', 1998, 'M', 445), +(165531, 'Ray', 1998, 'M', 445), +(165532, 'Deven', 1998, 'M', 444), +(165533, 'Colten', 1998, 'M', 442), +(165534, 'Marlon', 1998, 'M', 442), +(165535, 'Ramiro', 1998, 'M', 442), +(165536, 'Glenn', 1998, 'M', 440), +(165537, 'River', 1998, 'M', 435), +(165538, 'Rolando', 1998, 'M', 435), +(165539, 'Blaine', 1998, 'M', 434), +(165540, 'Elliott', 1998, 'M', 430), +(165541, 'Solomon', 1998, 'M', 430), +(165542, 'Mohamed', 1998, 'M', 429), +(165543, 'Sawyer', 1998, 'M', 429), +(165544, 'Tylor', 1998, 'M', 425), +(165545, 'Sterling', 1998, 'M', 424), +(165546, 'Dorian', 1998, 'M', 421), +(165547, 'Moses', 1998, 'M', 421), +(165548, 'Darryl', 1998, 'M', 420), +(165549, 'Gilbert', 1998, 'M', 420), +(165550, 'Dwayne', 1998, 'M', 419), +(165551, 'Gunnar', 1998, 'M', 412), +(165552, 'Tate', 1998, 'M', 411), +(165553, 'Mateo', 1998, 'M', 409), +(165554, 'Harold', 1998, 'M', 407), +(165555, 'Jonas', 1998, 'M', 407), +(165556, 'Osvaldo', 1998, 'M', 406), +(165557, 'Uriel', 1998, 'M', 405), +(165558, 'Joey', 1998, 'M', 403), +(165559, 'Daquan', 1998, 'M', 402), +(165560, 'Maximilian', 1998, 'M', 401), +(165561, 'Sheldon', 1998, 'M', 401), +(165562, 'Wilson', 1998, 'M', 400), +(165563, 'Rudy', 1998, 'M', 397), +(165564, 'Camden', 1998, 'M', 396), +(165565, 'Juwan', 1998, 'M', 395), +(165566, 'Alonzo', 1998, 'M', 394), +(165567, 'Mohammed', 1998, 'M', 394), +(165568, 'Brice', 1998, 'M', 391), +(165569, 'Coleman', 1998, 'M', 391), +(165570, 'Kade', 1998, 'M', 391), +(165571, 'Stefan', 1998, 'M', 390), +(165572, 'Cordell', 1998, 'M', 387), +(165573, 'Austen', 1998, 'M', 384), +(165574, 'Adan', 1998, 'M', 383), +(165575, 'Brennen', 1998, 'M', 378), +(165576, 'Cullen', 1998, 'M', 374), +(165577, 'Sidney', 1998, 'M', 374), +(165578, 'Nigel', 1998, 'M', 373), +(165579, 'Orion', 1998, 'M', 372), +(165580, 'Alfred', 1998, 'M', 371), +(165581, 'Deonte', 1998, 'M', 371), +(165582, 'Efrain', 1998, 'M', 371), +(165583, 'Quintin', 1998, 'M', 370), +(165584, 'Nathanial', 1998, 'M', 369), +(165585, 'Kurt', 1998, 'M', 368), +(165586, 'Aiden', 1998, 'M', 367), +(165587, 'Geoffrey', 1998, 'M', 367), +(165588, 'Reese', 1998, 'M', 365), +(165589, 'Kai', 1998, 'M', 363); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(165590, 'Addison', 1998, 'M', 362), +(165591, 'Kolby', 1998, 'M', 361), +(165592, 'Sage', 1998, 'M', 360), +(165593, 'Ronaldo', 1998, 'M', 359), +(165594, 'Cyrus', 1998, 'M', 357), +(165595, 'Antoine', 1998, 'M', 356), +(165596, 'Darnell', 1998, 'M', 354), +(165597, 'Jaret', 1998, 'M', 354), +(165598, 'Joaquin', 1998, 'M', 354), +(165599, 'Dayton', 1998, 'M', 353), +(165600, 'Lewis', 1998, 'M', 352), +(165601, 'Gianni', 1998, 'M', 351), +(165602, 'Leonel', 1998, 'M', 351), +(165603, 'Kane', 1998, 'M', 350), +(165604, 'Ben', 1998, 'M', 349), +(165605, 'Clarence', 1998, 'M', 349), +(165606, 'Ulises', 1998, 'M', 349), +(165607, 'Vicente', 1998, 'M', 349), +(165608, 'Davion', 1998, 'M', 344), +(165609, 'Derick', 1998, 'M', 344), +(165610, 'Alvaro', 1998, 'M', 343), +(165611, 'Rashad', 1998, 'M', 343), +(165612, 'Devante', 1998, 'M', 342), +(165613, 'Darien', 1998, 'M', 341), +(165614, 'Dashawn', 1998, 'M', 341), +(165615, 'Quincy', 1998, 'M', 341), +(165616, 'Coby', 1998, 'M', 340), +(165617, 'Humberto', 1998, 'M', 340), +(165618, 'Toby', 1998, 'M', 339), +(165619, 'Will', 1998, 'M', 339), +(165620, 'Brad', 1998, 'M', 338), +(165621, 'Demarcus', 1998, 'M', 338), +(165622, 'Isaias', 1998, 'M', 338), +(165623, 'Dandre', 1998, 'M', 333), +(165624, 'Everett', 1998, 'M', 333), +(165625, 'Ralph', 1998, 'M', 332), +(165626, 'Tevin', 1998, 'M', 331), +(165627, 'Howard', 1998, 'M', 329), +(165628, 'Stephon', 1998, 'M', 328), +(165629, 'Jaylin', 1998, 'M', 326), +(165630, 'Clinton', 1998, 'M', 322), +(165631, 'Ezequiel', 1998, 'M', 321), +(165632, 'Jaron', 1998, 'M', 320), +(165633, 'Koby', 1998, 'M', 320), +(165634, 'Tobias', 1998, 'M', 315), +(165635, 'Ahmed', 1998, 'M', 313), +(165636, 'Kareem', 1998, 'M', 313), +(165637, 'Dillan', 1998, 'M', 312), +(165638, 'Pierce', 1998, 'M', 312), +(165639, 'August', 1998, 'M', 311), +(165640, 'Stephan', 1998, 'M', 310), +(165641, 'Earl', 1998, 'M', 309), +(165642, 'Jamison', 1998, 'M', 309), +(165643, 'Aron', 1998, 'M', 307), +(165644, 'Romeo', 1998, 'M', 307), +(165645, 'Adolfo', 1998, 'M', 305), +(165646, 'Bret', 1998, 'M', 305), +(165647, 'Kurtis', 1998, 'M', 305), +(165648, 'Salvatore', 1998, 'M', 303), +(165649, 'Kolton', 1998, 'M', 302), +(165650, 'Rory', 1998, 'M', 302), +(165651, 'Barry', 1998, 'M', 301), +(165652, 'Jasper', 1998, 'M', 301), +(165653, 'Tyrese', 1998, 'M', 300), +(165654, 'Conrad', 1998, 'M', 298), +(165655, 'Darion', 1998, 'M', 298), +(165656, 'Deon', 1998, 'M', 298), +(165657, 'Bernard', 1998, 'M', 297), +(165658, 'Devyn', 1998, 'M', 296), +(165659, 'Dexter', 1998, 'M', 296), +(165660, 'Forrest', 1998, 'M', 296), +(165661, 'Denzel', 1998, 'M', 295), +(165662, 'Fredrick', 1998, 'M', 295), +(165663, 'Kory', 1998, 'M', 295), +(165664, 'Dangelo', 1998, 'M', 294), +(165665, 'Perry', 1998, 'M', 294), +(165666, 'Kieran', 1998, 'M', 292), +(165667, 'Mackenzie', 1998, 'M', 292), +(165668, 'Roderick', 1998, 'M', 290), +(165669, 'Kasey', 1998, 'M', 289), +(165670, 'Mike', 1998, 'M', 289), +(165671, 'Braydon', 1998, 'M', 288), +(165672, 'Markus', 1998, 'M', 286), +(165673, 'Stone', 1998, 'M', 285), +(165674, 'Darrius', 1998, 'M', 284), +(165675, 'Deangelo', 1998, 'M', 283), +(165676, 'Agustin', 1998, 'M', 281), +(165677, 'Braeden', 1998, 'M', 280), +(165678, 'Rhett', 1998, 'M', 279), +(165679, 'Ignacio', 1998, 'M', 277), +(165680, 'Freddy', 1998, 'M', 276), +(165681, 'Gordon', 1998, 'M', 275), +(165682, 'Irvin', 1998, 'M', 274), +(165683, 'Leroy', 1998, 'M', 274), +(165684, 'Mitchel', 1998, 'M', 274), +(165685, 'Travon', 1998, 'M', 272), +(165686, 'Shannon', 1998, 'M', 271), +(165687, 'Tre', 1998, 'M', 271), +(165688, 'Jovan', 1998, 'M', 270), +(165689, 'Keon', 1998, 'M', 270), +(165690, 'Norman', 1998, 'M', 270), +(165691, 'Rigoberto', 1998, 'M', 270), +(165692, 'Aldo', 1998, 'M', 268), +(165693, 'Garrison', 1998, 'M', 268), +(165694, 'Heath', 1998, 'M', 268), +(165695, 'Clifford', 1998, 'M', 267), +(165696, 'Moshe', 1998, 'M', 267), +(165697, 'Austyn', 1998, 'M', 265), +(165698, 'Jamar', 1998, 'M', 265), +(165699, 'Armani', 1998, 'M', 262), +(165700, 'Keshawn', 1998, 'M', 262), +(165701, 'Cruz', 1998, 'M', 261), +(165702, 'Marcel', 1998, 'M', 259), +(165703, 'Rylan', 1998, 'M', 259), +(165704, 'Stuart', 1998, 'M', 259), +(165705, 'Marquez', 1998, 'M', 258), +(165706, 'Dion', 1998, 'M', 257), +(165707, 'Gunner', 1998, 'M', 256), +(165708, 'Hudson', 1998, 'M', 256), +(165709, 'Raphael', 1998, 'M', 256), +(165710, 'Dwight', 1998, 'M', 255), +(165711, 'Easton', 1998, 'M', 254), +(165712, 'Tristian', 1998, 'M', 254), +(165713, 'Anton', 1998, 'M', 253), +(165714, 'Dimitri', 1998, 'M', 253), +(165715, 'Elisha', 1998, 'M', 253), +(165716, 'Hassan', 1998, 'M', 253), +(165717, 'Quinten', 1998, 'M', 253), +(165718, 'Brenton', 1998, 'M', 252), +(165719, 'Roland', 1998, 'M', 252), +(165720, 'Amari', 1998, 'M', 251), +(165721, 'Lamar', 1998, 'M', 251), +(165722, 'Silas', 1998, 'M', 251), +(165723, 'Frankie', 1998, 'M', 250), +(165724, 'Raekwon', 1998, 'M', 249), +(165725, 'Estevan', 1998, 'M', 248), +(165726, 'Sammy', 1998, 'M', 248), +(165727, 'Asher', 1998, 'M', 247), +(165728, 'Carlton', 1998, 'M', 246), +(165729, 'Brayan', 1998, 'M', 244), +(165730, 'Donavan', 1998, 'M', 244), +(165731, 'Jarvis', 1998, 'M', 244), +(165732, 'Jaxon', 1998, 'M', 244), +(165733, 'Davonte', 1998, 'M', 243), +(165734, 'Tyrek', 1998, 'M', 243), +(165735, 'Daryl', 1998, 'M', 242), +(165736, 'Zion', 1998, 'M', 242), +(165737, 'Clifton', 1998, 'M', 240), +(165738, 'Jorden', 1998, 'M', 240), +(165739, 'Zechariah', 1998, 'M', 240), +(165740, 'Jameson', 1998, 'M', 239), +(165741, 'Kelly', 1998, 'M', 239), +(165742, 'Shamar', 1998, 'M', 238), +(165743, 'Cornelius', 1998, 'M', 237), +(165744, 'Elvis', 1998, 'M', 237), +(165745, 'Korey', 1998, 'M', 237), +(165746, 'Talon', 1998, 'M', 237), +(165747, 'Chaz', 1998, 'M', 236), +(165748, 'Justyn', 1998, 'M', 236), +(165749, 'Guadalupe', 1998, 'M', 235), +(165750, 'Rashawn', 1998, 'M', 235), +(165751, 'Arnold', 1998, 'M', 234), +(165752, 'Courtney', 1998, 'M', 234), +(165753, 'Declan', 1998, 'M', 234), +(165754, 'Dylon', 1998, 'M', 234), +(165755, 'Shayne', 1998, 'M', 233), +(165756, 'Trever', 1998, 'M', 232), +(165757, 'Cristopher', 1998, 'M', 231), +(165758, 'Justus', 1998, 'M', 231), +(165759, 'Kirk', 1998, 'M', 231), +(165760, 'Reynaldo', 1998, 'M', 230), +(165761, 'Antwan', 1998, 'M', 228), +(165762, 'Kent', 1998, 'M', 228), +(165763, 'Reuben', 1998, 'M', 228), +(165764, 'Jefferson', 1998, 'M', 227), +(165765, 'Maximillian', 1998, 'M', 227), +(165766, 'Santos', 1998, 'M', 227), +(165767, 'Houston', 1998, 'M', 226), +(165768, 'Muhammad', 1998, 'M', 226), +(165769, 'Nestor', 1998, 'M', 226), +(165770, 'Remington', 1998, 'M', 225), +(165771, 'Savion', 1998, 'M', 225), +(165772, 'Baby', 1998, 'M', 224), +(165773, 'Brooks', 1998, 'M', 224), +(165774, 'Deondre', 1998, 'M', 223), +(165775, 'Lamont', 1998, 'M', 223), +(165776, 'Clark', 1998, 'M', 222), +(165777, 'Layne', 1998, 'M', 221), +(165778, 'Raheem', 1998, 'M', 221), +(165779, 'Alonso', 1998, 'M', 220), +(165780, 'Jairo', 1998, 'M', 220), +(165781, 'Darrin', 1998, 'M', 218), +(165782, 'Glen', 1998, 'M', 218), +(165783, 'Misael', 1998, 'M', 218), +(165784, 'Jarett', 1998, 'M', 217), +(165785, 'Kamron', 1998, 'M', 217), +(165786, 'Dallin', 1998, 'M', 216), +(165787, 'Fred', 1998, 'M', 216), +(165788, 'Milton', 1998, 'M', 216), +(165789, 'Kole', 1998, 'M', 215), +(165790, 'Jamel', 1998, 'M', 214), +(165791, 'Ulysses', 1998, 'M', 214), +(165792, 'Junior', 1998, 'M', 213), +(165793, 'Madison', 1998, 'M', 213), +(165794, 'Vernon', 1998, 'M', 213), +(165795, 'Jadon', 1998, 'M', 212), +(165796, 'Ladarius', 1998, 'M', 212), +(165797, 'Tyrique', 1998, 'M', 212), +(165798, 'Elmer', 1998, 'M', 211), +(165799, 'Josef', 1998, 'M', 211), +(165800, 'Brandan', 1998, 'M', 210), +(165801, 'Colt', 1998, 'M', 210), +(165802, 'German', 1998, 'M', 210), +(165803, 'Winston', 1998, 'M', 210), +(165804, 'Cortez', 1998, 'M', 209), +(165805, 'Jacoby', 1998, 'M', 209), +(165806, 'Guy', 1998, 'M', 208), +(165807, 'Don', 1998, 'M', 207), +(165808, 'Neal', 1998, 'M', 207), +(165809, 'Zakary', 1998, 'M', 207), +(165810, 'Duane', 1998, 'M', 205), +(165811, 'Dequan', 1998, 'M', 204), +(165812, 'Nash', 1998, 'M', 204), +(165813, 'Tahj', 1998, 'M', 204), +(165814, 'Terence', 1998, 'M', 204), +(165815, 'Hugh', 1998, 'M', 203), +(165816, 'Paris', 1998, 'M', 203), +(165817, 'Tyriq', 1998, 'M', 202), +(165818, 'Bradly', 1998, 'M', 201), +(165819, 'Clint', 1998, 'M', 201), +(165820, 'Darin', 1998, 'M', 201), +(165821, 'Jackie', 1998, 'M', 201), +(165822, 'Julien', 1998, 'M', 200), +(165823, 'Tracy', 1998, 'M', 200), +(165824, 'Alden', 1998, 'M', 196), +(165825, 'Denver', 1998, 'M', 196), +(165826, 'Titus', 1998, 'M', 196), +(165827, 'Rohan', 1998, 'M', 195), +(165828, 'Demarco', 1998, 'M', 194), +(165829, 'Hakeem', 1998, 'M', 194), +(165830, 'Lonnie', 1998, 'M', 194), +(165831, 'Adonis', 1998, 'M', 193), +(165832, 'Bernardo', 1998, 'M', 193), +(165833, 'Brandyn', 1998, 'M', 193), +(165834, 'Herbert', 1998, 'M', 193), +(165835, 'Asa', 1998, 'M', 192), +(165836, 'Axel', 1998, 'M', 192), +(165837, 'Gino', 1998, 'M', 192), +(165838, 'Greyson', 1998, 'M', 192), +(165839, 'Kellen', 1998, 'M', 192), +(165840, 'Keyshawn', 1998, 'M', 192), +(165841, 'Octavio', 1998, 'M', 192), +(165842, 'Chaim', 1998, 'M', 191), +(165843, 'Destin', 1998, 'M', 191), +(165844, 'Jordy', 1998, 'M', 191), +(165845, 'Maverick', 1998, 'M', 191), +(165846, 'Pierre', 1998, 'M', 191), +(165847, 'Jean', 1998, 'M', 190), +(165848, 'Deshaun', 1998, 'M', 188), +(165849, 'Myron', 1998, 'M', 188), +(165850, 'Khalid', 1998, 'M', 187), +(165851, 'Thaddeus', 1998, 'M', 187), +(165852, 'Deion', 1998, 'M', 186), +(165853, 'Donnie', 1998, 'M', 185), +(165854, 'Javonte', 1998, 'M', 185), +(165855, 'Keven', 1998, 'M', 185), +(165856, 'Kristofer', 1998, 'M', 185), +(165857, 'Raymundo', 1998, 'M', 185), +(165858, 'Ellis', 1998, 'M', 183), +(165859, 'Jaleel', 1998, 'M', 183), +(165860, 'Kevon', 1998, 'M', 183), +(165861, 'Turner', 1998, 'M', 183), +(165862, 'Montana', 1998, 'M', 182), +(165863, 'Tyreek', 1998, 'M', 182), +(165864, 'Dontae', 1998, 'M', 180), +(165865, 'Efren', 1998, 'M', 180), +(165866, 'Grady', 1998, 'M', 180), +(165867, 'Jamari', 1998, 'M', 180), +(165868, 'Nick', 1998, 'M', 179), +(165869, 'Aubrey', 1998, 'M', 178), +(165870, 'Nehemiah', 1998, 'M', 178), +(165871, 'Freddie', 1998, 'M', 177), +(165872, 'Ibrahim', 1998, 'M', 177), +(165873, 'Marques', 1998, 'M', 177), +(165874, 'Antony', 1998, 'M', 176), +(165875, 'Bo', 1998, 'M', 176), +(165876, 'Bradford', 1998, 'M', 176), +(165877, 'Davin', 1998, 'M', 176), +(165878, 'Aric', 1998, 'M', 175), +(165879, 'Gerard', 1998, 'M', 175), +(165880, 'Landen', 1998, 'M', 175), +(165881, 'Simeon', 1998, 'M', 175), +(165882, 'Kordell', 1998, 'M', 174), +(165883, 'Tyquan', 1998, 'M', 174), +(165884, 'Dakotah', 1998, 'M', 173), +(165885, 'Darrion', 1998, 'M', 173), +(165886, 'Dillion', 1998, 'M', 173), +(165887, 'Marcelo', 1998, 'M', 173), +(165888, 'Emmett', 1998, 'M', 172), +(165889, 'Heriberto', 1998, 'M', 172), +(165890, 'Kelton', 1998, 'M', 172), +(165891, 'Omari', 1998, 'M', 172), +(165892, 'Prince', 1998, 'M', 172), +(165893, 'Benny', 1998, 'M', 171), +(165894, 'Izaiah', 1998, 'M', 171), +(165895, 'Jamarcus', 1998, 'M', 171), +(165896, 'Alexandro', 1998, 'M', 170), +(165897, 'Cale', 1998, 'M', 170), +(165898, 'Trystan', 1998, 'M', 170), +(165899, 'Jaren', 1998, 'M', 169), +(165900, 'Kalen', 1998, 'M', 169), +(165901, 'Mikel', 1998, 'M', 169), +(165902, 'Raven', 1998, 'M', 169), +(165903, 'Tavian', 1998, 'M', 169), +(165904, 'Arron', 1998, 'M', 168), +(165905, 'Dewayne', 1998, 'M', 168), +(165906, 'Jacquez', 1998, 'M', 168), +(165907, 'Tyron', 1998, 'M', 168), +(165908, 'Dominik', 1998, 'M', 167), +(165909, 'Emerson', 1998, 'M', 167), +(165910, 'Samir', 1998, 'M', 167), +(165911, 'Vaughn', 1998, 'M', 167), +(165912, 'Anderson', 1998, 'M', 166), +(165913, 'Ari', 1998, 'M', 166), +(165914, 'Benito', 1998, 'M', 166), +(165915, 'Bronson', 1998, 'M', 166), +(165916, 'Garett', 1998, 'M', 166), +(165917, 'Josh', 1998, 'M', 166), +(165918, 'Sonny', 1998, 'M', 166), +(165919, 'Auston', 1998, 'M', 165), +(165920, 'Brant', 1998, 'M', 165), +(165921, 'Jayce', 1998, 'M', 165), +(165922, 'Jimmie', 1998, 'M', 165), +(165923, 'Lincoln', 1998, 'M', 165), +(165924, 'Lloyd', 1998, 'M', 165), +(165925, 'Nasir', 1998, 'M', 165), +(165926, 'Rick', 1998, 'M', 165), +(165927, 'Shelby', 1998, 'M', 165), +(165928, 'Alton', 1998, 'M', 164), +(165929, 'Kyree', 1998, 'M', 164), +(165930, 'Nico', 1998, 'M', 164), +(165931, 'Seamus', 1998, 'M', 164), +(165932, 'Tyshawn', 1998, 'M', 164), +(165933, 'Alessandro', 1998, 'M', 163), +(165934, 'Fidel', 1998, 'M', 163), +(165935, 'Draven', 1998, 'M', 162), +(165936, 'Tyrik', 1998, 'M', 162), +(165937, 'Brennon', 1998, 'M', 161), +(165938, 'Markel', 1998, 'M', 161), +(165939, 'Abdullah', 1998, 'M', 160), +(165940, 'Andreas', 1998, 'M', 160), +(165941, 'Blaise', 1998, 'M', 160), +(165942, 'Gonzalo', 1998, 'M', 160), +(165943, 'Jaylan', 1998, 'M', 160), +(165944, 'Johnnie', 1998, 'M', 160), +(165945, 'Jordi', 1998, 'M', 160), +(165946, 'Rickey', 1998, 'M', 160), +(165947, 'Markell', 1998, 'M', 159), +(165948, 'Phoenix', 1998, 'M', 159), +(165949, 'Reilly', 1998, 'M', 159), +(165950, 'Brannon', 1998, 'M', 158), +(165951, 'Dario', 1998, 'M', 158), +(165952, 'Jerrod', 1998, 'M', 158), +(165953, 'Robin', 1998, 'M', 158), +(165954, 'Giancarlo', 1998, 'M', 157), +(165955, 'Jacques', 1998, 'M', 157), +(165956, 'Lionel', 1998, 'M', 157), +(165957, 'Jabari', 1998, 'M', 156), +(165958, 'Paxton', 1998, 'M', 156), +(165959, 'Jalon', 1998, 'M', 155), +(165960, 'Royce', 1998, 'M', 155), +(165961, 'Ryder', 1998, 'M', 155), +(165962, 'Alexandre', 1998, 'M', 154), +(165963, 'Clyde', 1998, 'M', 154), +(165964, 'Hernan', 1998, 'M', 154), +(165965, 'Mekhi', 1998, 'M', 154), +(165966, 'Augustus', 1998, 'M', 153), +(165967, 'Reagan', 1998, 'M', 153), +(165968, 'Devonta', 1998, 'M', 152), +(165969, 'Gregorio', 1998, 'M', 152), +(165970, 'Kennedy', 1998, 'M', 152), +(165971, 'Shemar', 1998, 'M', 152), +(165972, 'Branson', 1998, 'M', 151), +(165973, 'Jelani', 1998, 'M', 151), +(165974, 'Jerod', 1998, 'M', 151), +(165975, 'Matteo', 1998, 'M', 151), +(165976, 'Abram', 1998, 'M', 150), +(165977, 'Darrian', 1998, 'M', 150), +(165978, 'Domenic', 1998, 'M', 150), +(165979, 'Giovanny', 1998, 'M', 150), +(165980, 'Hans', 1998, 'M', 150), +(165981, 'Herman', 1998, 'M', 150), +(165982, 'Johan', 1998, 'M', 150), +(165983, 'Kerry', 1998, 'M', 150), +(165984, 'Rex', 1998, 'M', 150), +(165985, 'Hamza', 1998, 'M', 149), +(165986, 'Infant', 1998, 'M', 149), +(165987, 'Dan', 1998, 'M', 148), +(165988, 'Najee', 1998, 'M', 148), +(165989, 'Nathen', 1998, 'M', 148), +(165990, 'Niko', 1998, 'M', 148), +(165991, 'Chauncey', 1998, 'M', 147), +(165992, 'Keagan', 1998, 'M', 147), +(165993, 'Ishmael', 1998, 'M', 146), +(165994, 'Jamil', 1998, 'M', 146), +(165995, 'Nikhil', 1998, 'M', 146), +(165996, 'Rico', 1998, 'M', 146), +(165997, 'Taj', 1998, 'M', 146), +(165998, 'Brycen', 1998, 'M', 145), +(165999, 'Isidro', 1998, 'M', 145), +(166000, 'Luciano', 1998, 'M', 145), +(166001, 'Vincenzo', 1998, 'M', 145), +(166002, 'Amos', 1998, 'M', 144), +(166003, 'Bishop', 1998, 'M', 144), +(166004, 'Isai', 1998, 'M', 144), +(166005, 'Jovani', 1998, 'M', 144), +(166006, 'Jovany', 1998, 'M', 144), +(166007, 'Rasheed', 1998, 'M', 144), +(166008, 'Dejuan', 1998, 'M', 143), +(166009, 'Jensen', 1998, 'M', 143), +(166010, 'Nicklaus', 1998, 'M', 143), +(166011, 'Broderick', 1998, 'M', 142), +(166012, 'Deontae', 1998, 'M', 142), +(166013, 'Keanu', 1998, 'M', 142), +(166014, 'Kenton', 1998, 'M', 142), +(166015, 'Loren', 1998, 'M', 142), +(166016, 'Rahul', 1998, 'M', 142), +(166017, 'Abdul', 1998, 'M', 141), +(166018, 'Babyboy', 1998, 'M', 141), +(166019, 'Floyd', 1998, 'M', 141), +(166020, 'Tarik', 1998, 'M', 141), +(166021, 'Valentin', 1998, 'M', 141), +(166022, 'Darrien', 1998, 'M', 140), +(166023, 'Genaro', 1998, 'M', 140), +(166024, 'Kenyon', 1998, 'M', 140), +(166025, 'Keyon', 1998, 'M', 140), +(166026, 'Leland', 1998, 'M', 140), +(166027, 'Miguelangel', 1998, 'M', 140), +(166028, 'Rocky', 1998, 'M', 140), +(166029, 'Syed', 1998, 'M', 140), +(166030, 'Christion', 1998, 'M', 139), +(166031, 'Francesco', 1998, 'M', 139), +(166032, 'Judah', 1998, 'M', 139), +(166033, 'Stewart', 1998, 'M', 139), +(166034, 'Trevin', 1998, 'M', 139), +(166035, 'Barrett', 1998, 'M', 138), +(166036, 'Carlo', 1998, 'M', 138), +(166037, 'Mariano', 1998, 'M', 138), +(166038, 'Samson', 1998, 'M', 138), +(166039, 'Kale', 1998, 'M', 137), +(166040, 'Killian', 1998, 'M', 137), +(166041, 'Konnor', 1998, 'M', 137), +(166042, 'Kylan', 1998, 'M', 137), +(166043, 'Rey', 1998, 'M', 137), +(166044, 'Shea', 1998, 'M', 137), +(166045, 'Cayden', 1998, 'M', 136), +(166046, 'Gene', 1998, 'M', 136), +(166047, 'Mustafa', 1998, 'M', 136), +(166048, 'Brandt', 1998, 'M', 135), +(166049, 'Jeff', 1998, 'M', 135), +(166050, 'Jevon', 1998, 'M', 135), +(166051, 'Kalvin', 1998, 'M', 135), +(166052, 'Vance', 1998, 'M', 135), +(166053, 'Kelby', 1998, 'M', 134), +(166054, 'Trevion', 1998, 'M', 134), +(166055, 'Treyvon', 1998, 'M', 134), +(166056, 'Alek', 1998, 'M', 133), +(166057, 'Galen', 1998, 'M', 133), +(166058, 'Malique', 1998, 'M', 133), +(166059, 'Armand', 1998, 'M', 132), +(166060, 'Cecil', 1998, 'M', 132), +(166061, 'Dyllan', 1998, 'M', 132), +(166062, 'Harris', 1998, 'M', 132), +(166063, 'Lazaro', 1998, 'M', 132), +(166064, 'Marion', 1998, 'M', 132), +(166065, 'Tavon', 1998, 'M', 132), +(166066, 'Tom', 1998, 'M', 132), +(166067, 'Trae', 1998, 'M', 132), +(166068, 'Trayvon', 1998, 'M', 132), +(166069, 'Arjun', 1998, 'M', 131), +(166070, 'Darwin', 1998, 'M', 131), +(166071, 'Donnell', 1998, 'M', 131), +(166072, 'Eliseo', 1998, 'M', 131), +(166073, 'Harvey', 1998, 'M', 131), +(166074, 'Jade', 1998, 'M', 131), +(166075, 'Jude', 1998, 'M', 131), +(166076, 'Justen', 1998, 'M', 131), +(166077, 'Storm', 1998, 'M', 131), +(166078, 'Yosef', 1998, 'M', 131), +(166079, 'Britton', 1998, 'M', 130), +(166080, 'Ean', 1998, 'M', 130), +(166081, 'Edgardo', 1998, 'M', 130), +(166082, 'Khari', 1998, 'M', 130), +(166083, 'Lester', 1998, 'M', 130), +(166084, 'Zain', 1998, 'M', 130), +(166085, 'Brodie', 1998, 'M', 129), +(166086, 'Cristobal', 1998, 'M', 129), +(166087, 'Eliezer', 1998, 'M', 129), +(166088, 'Jaiden', 1998, 'M', 129), +(166089, 'Korbin', 1998, 'M', 129), +(166090, 'Vladimir', 1998, 'M', 129), +(166091, 'Blair', 1998, 'M', 128), +(166092, 'Braulio', 1998, 'M', 128), +(166093, 'Cain', 1998, 'M', 128), +(166094, 'Deante', 1998, 'M', 128), +(166095, 'Donavon', 1998, 'M', 128), +(166096, 'Dusty', 1998, 'M', 128), +(166097, 'Emiliano', 1998, 'M', 128), +(166098, 'Irving', 1998, 'M', 127), +(166099, 'Jarret', 1998, 'M', 127), +(166100, 'Konner', 1998, 'M', 127), +(166101, 'Keandre', 1998, 'M', 126), +(166102, 'Kegan', 1998, 'M', 126), +(166103, 'Kahlil', 1998, 'M', 125), +(166104, 'Sahil', 1998, 'M', 125), +(166105, 'Arman', 1998, 'M', 124), +(166106, 'Bryon', 1998, 'M', 124), +(166107, 'Daron', 1998, 'M', 124), +(166108, 'Immanuel', 1998, 'M', 124), +(166109, 'Jett', 1998, 'M', 123), +(166110, 'Jim', 1998, 'M', 123), +(166111, 'Leslie', 1998, 'M', 123), +(166112, 'Erich', 1998, 'M', 122), +(166113, 'Ryley', 1998, 'M', 122), +(166114, 'Semaj', 1998, 'M', 122), +(166115, 'Yehuda', 1998, 'M', 122), +(166116, 'Gideon', 1998, 'M', 121), +(166117, 'Louie', 1998, 'M', 121), +(166118, 'Pete', 1998, 'M', 121), +(166119, 'Santino', 1998, 'M', 121), +(166120, 'Xzavier', 1998, 'M', 121), +(166121, 'Armon', 1998, 'M', 120), +(166122, 'Ayden', 1998, 'M', 120), +(166123, 'Coy', 1998, 'M', 120), +(166124, 'Jordyn', 1998, 'M', 120), +(166125, 'Tyreke', 1998, 'M', 120), +(166126, 'Cedrick', 1998, 'M', 119), +(166127, 'Dejon', 1998, 'M', 119), +(166128, 'Domingo', 1998, 'M', 119), +(166129, 'Edmund', 1998, 'M', 119), +(166130, 'Giovani', 1998, 'M', 119), +(166131, 'Juancarlos', 1998, 'M', 119), +(166132, 'Dajuan', 1998, 'M', 118), +(166133, 'Gannon', 1998, 'M', 118), +(166134, 'Marquel', 1998, 'M', 118), +(166135, 'Milan', 1998, 'M', 118), +(166136, 'Ramsey', 1998, 'M', 118), +(166137, 'Coleton', 1998, 'M', 117), +(166138, 'Dana', 1998, 'M', 117), +(166139, 'Dashaun', 1998, 'M', 117), +(166140, 'Devontae', 1998, 'M', 117), +(166141, 'Rashaun', 1998, 'M', 117), +(166142, 'Savon', 1998, 'M', 117), +(166143, 'Schuyler', 1998, 'M', 117), +(166144, 'Wilfredo', 1998, 'M', 117), +(166145, 'Camren', 1998, 'M', 116), +(166146, 'Chester', 1998, 'M', 116), +(166147, 'Jamaal', 1998, 'M', 116), +(166148, 'Jovanny', 1998, 'M', 116), +(166149, 'Layton', 1998, 'M', 116), +(166150, 'Rayshawn', 1998, 'M', 116), +(166151, 'Samual', 1998, 'M', 116), +(166152, 'Shaquan', 1998, 'M', 116), +(166153, 'Sydney', 1998, 'M', 116), +(166154, 'Zaire', 1998, 'M', 116), +(166155, 'Brevin', 1998, 'M', 115), +(166156, 'Federico', 1998, 'M', 115), +(166157, 'Jonatan', 1998, 'M', 115), +(166158, 'Luca', 1998, 'M', 115), +(166159, 'Martez', 1998, 'M', 115), +(166160, 'Maximiliano', 1998, 'M', 115), +(166161, 'Menachem', 1998, 'M', 115), +(166162, 'Truman', 1998, 'M', 115), +(166163, 'Erin', 1998, 'M', 114), +(166164, 'Jalin', 1998, 'M', 114), +(166165, 'Tavion', 1998, 'M', 114), +(166166, 'Desean', 1998, 'M', 113), +(166167, 'Jedidiah', 1998, 'M', 113), +(166168, 'Oswaldo', 1998, 'M', 113), +(166169, 'Reggie', 1998, 'M', 113), +(166170, 'Bruno', 1998, 'M', 112), +(166171, 'Shelton', 1998, 'M', 112), +(166172, 'Mordechai', 1998, 'M', 111), +(166173, 'Demario', 1998, 'M', 110), +(166174, 'Denis', 1998, 'M', 110), +(166175, 'Forest', 1998, 'M', 110), +(166176, 'Haden', 1998, 'M', 110), +(166177, 'Jody', 1998, 'M', 110), +(166178, 'Joseluis', 1998, 'M', 110), +(166179, 'Kirkland', 1998, 'M', 110), +(166180, 'London', 1998, 'M', 110), +(166181, 'Mack', 1998, 'M', 110), +(166182, 'Nicklas', 1998, 'M', 110), +(166183, 'Rylee', 1998, 'M', 110), +(166184, 'Waylon', 1998, 'M', 110), +(166185, 'Yousef', 1998, 'M', 110), +(166186, 'Adrien', 1998, 'M', 109), +(166187, 'Alexzander', 1998, 'M', 109), +(166188, 'Benton', 1998, 'M', 109), +(166189, 'Codey', 1998, 'M', 109), +(166190, 'Demetri', 1998, 'M', 109), +(166191, 'Elvin', 1998, 'M', 109), +(166192, 'Ervin', 1998, 'M', 109), +(166193, 'Gaige', 1998, 'M', 109), +(166194, 'Jajuan', 1998, 'M', 109), +(166195, 'Jovanni', 1998, 'M', 109), +(166196, 'Kobie', 1998, 'M', 109), +(166197, 'Lars', 1998, 'M', 109), +(166198, 'Ridge', 1998, 'M', 109), +(166199, 'Stetson', 1998, 'M', 109), +(166200, 'Antwon', 1998, 'M', 108), +(166201, 'Augustine', 1998, 'M', 108), +(166202, 'Bridger', 1998, 'M', 108), +(166203, 'Chace', 1998, 'M', 108), +(166204, 'Dakoda', 1998, 'M', 108), +(166205, 'Dezmond', 1998, 'M', 108), +(166206, 'Eddy', 1998, 'M', 108), +(166207, 'Greg', 1998, 'M', 108), +(166208, 'Randolph', 1998, 'M', 108), +(166209, 'Tayler', 1998, 'M', 108), +(166210, 'Uriah', 1998, 'M', 108), +(166211, 'Leighton', 1998, 'M', 107), +(166212, 'Luther', 1998, 'M', 107), +(166213, 'Foster', 1998, 'M', 106), +(166214, 'Gaven', 1998, 'M', 106), +(166215, 'Jaydon', 1998, 'M', 106), +(166216, 'Ted', 1998, 'M', 106), +(166217, 'Daulton', 1998, 'M', 105), +(166218, 'Demond', 1998, 'M', 105), +(166219, 'Demonte', 1998, 'M', 105), +(166220, 'Luiz', 1998, 'M', 105), +(166221, 'Montrell', 1998, 'M', 105), +(166222, 'Morris', 1998, 'M', 105), +(166223, 'Raquan', 1998, 'M', 105), +(166224, 'Timmy', 1998, 'M', 105), +(166225, 'Wallace', 1998, 'M', 105), +(166226, 'Willis', 1998, 'M', 105), +(166227, 'Yisroel', 1998, 'M', 105), +(166228, 'Zavier', 1998, 'M', 105), +(166229, 'Alijah', 1998, 'M', 104), +(166230, 'Bilal', 1998, 'M', 104), +(166231, 'Caelan', 1998, 'M', 104), +(166232, 'Codie', 1998, 'M', 104), +(166233, 'Ken', 1998, 'M', 104), +(166234, 'Matthias', 1998, 'M', 104), +(166235, 'Otis', 1998, 'M', 104), +(166236, 'Takoda', 1998, 'M', 104), +(166237, 'Wendell', 1998, 'M', 104), +(166238, 'Dionte', 1998, 'M', 103), +(166239, 'Hasan', 1998, 'M', 103), +(166240, 'Kenan', 1998, 'M', 103), +(166241, 'Matias', 1998, 'M', 103), +(166242, 'Porter', 1998, 'M', 103), +(166243, 'Ron', 1998, 'M', 103), +(166244, 'Rowan', 1998, 'M', 103), +(166245, 'Sherman', 1998, 'M', 103), +(166246, 'Aldair', 1998, 'M', 102), +(166247, 'Anfernee', 1998, 'M', 102), +(166248, 'Eloy', 1998, 'M', 102), +(166249, 'Fletcher', 1998, 'M', 102), +(166250, 'Jayvon', 1998, 'M', 102), +(166251, 'Kayden', 1998, 'M', 102), +(166252, 'Luc', 1998, 'M', 102), +(166253, 'Tommie', 1998, 'M', 102), +(166254, 'Van', 1998, 'M', 102), +(166255, 'Virgil', 1998, 'M', 102), +(166256, 'Blaze', 1998, 'M', 101), +(166257, 'Bowen', 1998, 'M', 101), +(166258, 'Claudio', 1998, 'M', 101), +(166259, 'Isaak', 1998, 'M', 101), +(166260, 'Karson', 1998, 'M', 101), +(166261, 'Keion', 1998, 'M', 101), +(166262, 'Rocco', 1998, 'M', 101), +(166263, 'Theron', 1998, 'M', 101), +(166264, 'Trenten', 1998, 'M', 101), +(166265, 'Bill', 1998, 'M', 100), +(166266, 'Daylon', 1998, 'M', 100), +(166267, 'Kentrell', 1998, 'M', 100), +(166268, 'Kirby', 1998, 'M', 100), +(166269, 'Lawson', 1998, 'M', 100), +(166270, 'Ryker', 1998, 'M', 100), +(166271, 'Emily', 1999, 'F', 26537), +(166272, 'Hannah', 1999, 'F', 21667), +(166273, 'Alexis', 1999, 'F', 19232), +(166274, 'Sarah', 1999, 'F', 19084), +(166275, 'Samantha', 1999, 'F', 19033), +(166276, 'Ashley', 1999, 'F', 18131), +(166277, 'Madison', 1999, 'F', 18051), +(166278, 'Taylor', 1999, 'F', 16905), +(166279, 'Jessica', 1999, 'F', 16345), +(166280, 'Elizabeth', 1999, 'F', 15331), +(166281, 'Alyssa', 1999, 'F', 14035), +(166282, 'Lauren', 1999, 'F', 13912), +(166283, 'Kayla', 1999, 'F', 13289), +(166284, 'Brianna', 1999, 'F', 12410), +(166285, 'Megan', 1999, 'F', 12223), +(166286, 'Victoria', 1999, 'F', 11864), +(166287, 'Emma', 1999, 'F', 11720), +(166288, 'Abigail', 1999, 'F', 11678), +(166289, 'Rachel', 1999, 'F', 11618), +(166290, 'Olivia', 1999, 'F', 11253), +(166291, 'Jennifer', 1999, 'F', 10610), +(166292, 'Amanda', 1999, 'F', 9739), +(166293, 'Sydney', 1999, 'F', 9648), +(166294, 'Morgan', 1999, 'F', 9606), +(166295, 'Nicole', 1999, 'F', 9513), +(166296, 'Jasmine', 1999, 'F', 9351), +(166297, 'Grace', 1999, 'F', 9178), +(166298, 'Destiny', 1999, 'F', 9172), +(166299, 'Anna', 1999, 'F', 9088), +(166300, 'Julia', 1999, 'F', 8748), +(166301, 'Haley', 1999, 'F', 8201), +(166302, 'Alexandra', 1999, 'F', 8164), +(166303, 'Kaitlyn', 1999, 'F', 8156), +(166304, 'Natalie', 1999, 'F', 8079), +(166305, 'Brittany', 1999, 'F', 7942), +(166306, 'Katherine', 1999, 'F', 7931), +(166307, 'Stephanie', 1999, 'F', 7687), +(166308, 'Rebecca', 1999, 'F', 7424), +(166309, 'Maria', 1999, 'F', 7028), +(166310, 'Allison', 1999, 'F', 7023), +(166311, 'Amber', 1999, 'F', 6840), +(166312, 'Savannah', 1999, 'F', 6803), +(166313, 'Danielle', 1999, 'F', 6751), +(166314, 'Courtney', 1999, 'F', 6557), +(166315, 'Mary', 1999, 'F', 6359), +(166316, 'Gabrielle', 1999, 'F', 6129), +(166317, 'Brooke', 1999, 'F', 6067), +(166318, 'Jordan', 1999, 'F', 5728), +(166319, 'Sierra', 1999, 'F', 5711), +(166320, 'Sara', 1999, 'F', 5619), +(166321, 'Kimberly', 1999, 'F', 5455), +(166322, 'Mackenzie', 1999, 'F', 5424), +(166323, 'Sophia', 1999, 'F', 5422), +(166324, 'Hailey', 1999, 'F', 5368), +(166325, 'Katelyn', 1999, 'F', 5309), +(166326, 'Michelle', 1999, 'F', 5302), +(166327, 'Vanessa', 1999, 'F', 5287), +(166328, 'Erin', 1999, 'F', 5223), +(166329, 'Andrea', 1999, 'F', 5066), +(166330, 'Isabella', 1999, 'F', 5057), +(166331, 'Jenna', 1999, 'F', 5042), +(166332, 'Shelby', 1999, 'F', 5017), +(166333, 'Chloe', 1999, 'F', 4964), +(166334, 'Melissa', 1999, 'F', 4829), +(166335, 'Bailey', 1999, 'F', 4808), +(166336, 'Makayla', 1999, 'F', 4789), +(166337, 'Paige', 1999, 'F', 4716), +(166338, 'Mariah', 1999, 'F', 4643), +(166339, 'Kaylee', 1999, 'F', 4578), +(166340, 'Madeline', 1999, 'F', 4571), +(166341, 'Caroline', 1999, 'F', 4472), +(166342, 'Kelsey', 1999, 'F', 4400), +(166343, 'Marissa', 1999, 'F', 4390), +(166344, 'Breanna', 1999, 'F', 4341), +(166345, 'Christina', 1999, 'F', 4295), +(166346, 'Faith', 1999, 'F', 4230), +(166347, 'Autumn', 1999, 'F', 4127), +(166348, 'Kiara', 1999, 'F', 4024), +(166349, 'Jacqueline', 1999, 'F', 3901), +(166350, 'Tiffany', 1999, 'F', 3887), +(166351, 'Laura', 1999, 'F', 3871), +(166352, 'Briana', 1999, 'F', 3837), +(166353, 'Alexandria', 1999, 'F', 3789), +(166354, 'Cheyenne', 1999, 'F', 3779), +(166355, 'Mikayla', 1999, 'F', 3733), +(166356, 'Claire', 1999, 'F', 3732), +(166357, 'Cassandra', 1999, 'F', 3728), +(166358, 'Sabrina', 1999, 'F', 3650), +(166359, 'Alexa', 1999, 'F', 3644), +(166360, 'Angela', 1999, 'F', 3629), +(166361, 'Kathryn', 1999, 'F', 3581), +(166362, 'Katie', 1999, 'F', 3526), +(166363, 'Caitlin', 1999, 'F', 3459), +(166364, 'Miranda', 1999, 'F', 3433), +(166365, 'Kelly', 1999, 'F', 3417), +(166366, 'Lindsey', 1999, 'F', 3416), +(166367, 'Isabel', 1999, 'F', 3404), +(166368, 'Catherine', 1999, 'F', 3398), +(166369, 'Cassidy', 1999, 'F', 3395), +(166370, 'Leslie', 1999, 'F', 3341), +(166371, 'Diana', 1999, 'F', 3327), +(166372, 'Molly', 1999, 'F', 3323), +(166373, 'Leah', 1999, 'F', 3283), +(166374, 'Zoe', 1999, 'F', 3237), +(166375, 'Amy', 1999, 'F', 3203), +(166376, 'Erica', 1999, 'F', 3161), +(166377, 'Gabriella', 1999, 'F', 3150), +(166378, 'Alicia', 1999, 'F', 3013), +(166379, 'Kylie', 1999, 'F', 3012), +(166380, 'Margaret', 1999, 'F', 2957), +(166381, 'Jada', 1999, 'F', 2917), +(166382, 'Heather', 1999, 'F', 2888), +(166383, 'Maya', 1999, 'F', 2853), +(166384, 'Kristen', 1999, 'F', 2844), +(166385, 'Veronica', 1999, 'F', 2829), +(166386, 'Angelica', 1999, 'F', 2819), +(166387, 'Jade', 1999, 'F', 2788), +(166388, 'Shannon', 1999, 'F', 2748), +(166389, 'Crystal', 1999, 'F', 2739), +(166390, 'Mia', 1999, 'F', 2736), +(166391, 'Angel', 1999, 'F', 2730), +(166392, 'Chelsea', 1999, 'F', 2725), +(166393, 'Gabriela', 1999, 'F', 2705), +(166394, 'Caitlyn', 1999, 'F', 2673), +(166395, 'Michaela', 1999, 'F', 2656), +(166396, 'Melanie', 1999, 'F', 2649), +(166397, 'Meghan', 1999, 'F', 2578), +(166398, 'Brittney', 1999, 'F', 2550), +(166399, 'Jamie', 1999, 'F', 2538), +(166400, 'Ariana', 1999, 'F', 2527), +(166401, 'Skylar', 1999, 'F', 2511), +(166402, 'Jocelyn', 1999, 'F', 2476), +(166403, 'Daisy', 1999, 'F', 2470), +(166404, 'Audrey', 1999, 'F', 2456), +(166405, 'Karina', 1999, 'F', 2377), +(166406, 'Summer', 1999, 'F', 2335), +(166407, 'Erika', 1999, 'F', 2323), +(166408, 'Riley', 1999, 'F', 2312), +(166409, 'Adriana', 1999, 'F', 2303), +(166410, 'Bethany', 1999, 'F', 2302), +(166411, 'Mckenzie', 1999, 'F', 2284), +(166412, 'Jillian', 1999, 'F', 2280), +(166413, 'Hayley', 1999, 'F', 2261), +(166414, 'Hope', 1999, 'F', 2261), +(166415, 'Cynthia', 1999, 'F', 2224), +(166416, 'Daniela', 1999, 'F', 2192), +(166417, 'Lillian', 1999, 'F', 2190), +(166418, 'Karen', 1999, 'F', 2171), +(166419, 'Lydia', 1999, 'F', 2168), +(166420, 'Diamond', 1999, 'F', 2158), +(166421, 'Monica', 1999, 'F', 2133), +(166422, 'Lily', 1999, 'F', 2123), +(166423, 'Selena', 1999, 'F', 2117), +(166424, 'Ana', 1999, 'F', 2110), +(166425, 'Kaitlin', 1999, 'F', 2085), +(166426, 'Rebekah', 1999, 'F', 2065), +(166427, 'Arianna', 1999, 'F', 2063), +(166428, 'Camryn', 1999, 'F', 2048), +(166429, 'Valerie', 1999, 'F', 2037), +(166430, 'Brenda', 1999, 'F', 1978), +(166431, 'Evelyn', 1999, 'F', 1963), +(166432, 'Isabelle', 1999, 'F', 1953), +(166433, 'Bianca', 1999, 'F', 1946), +(166434, 'Madelyn', 1999, 'F', 1894), +(166435, 'Kennedy', 1999, 'F', 1892), +(166436, 'Mya', 1999, 'F', 1885), +(166437, 'Lauryn', 1999, 'F', 1883), +(166438, 'Hanna', 1999, 'F', 1878), +(166439, 'Lindsay', 1999, 'F', 1848), +(166440, 'Kendra', 1999, 'F', 1839), +(166441, 'Ariel', 1999, 'F', 1834), +(166442, 'Carly', 1999, 'F', 1827), +(166443, 'Desiree', 1999, 'F', 1819), +(166444, 'Abby', 1999, 'F', 1809), +(166445, 'Casey', 1999, 'F', 1802), +(166446, 'Cameron', 1999, 'F', 1781), +(166447, 'Esmeralda', 1999, 'F', 1763), +(166448, 'Julie', 1999, 'F', 1757), +(166449, 'Alejandra', 1999, 'F', 1753), +(166450, 'Holly', 1999, 'F', 1749), +(166451, 'Alondra', 1999, 'F', 1725), +(166452, 'Brooklyn', 1999, 'F', 1687), +(166453, 'Kara', 1999, 'F', 1686), +(166454, 'Sophie', 1999, 'F', 1685), +(166455, 'Dominique', 1999, 'F', 1664), +(166456, 'Claudia', 1999, 'F', 1656), +(166457, 'Rachael', 1999, 'F', 1654), +(166458, 'Alexia', 1999, 'F', 1650), +(166459, 'Naomi', 1999, 'F', 1639), +(166460, 'Shania', 1999, 'F', 1639), +(166461, 'Ashlyn', 1999, 'F', 1638), +(166462, 'Kathleen', 1999, 'F', 1630), +(166463, 'Jordyn', 1999, 'F', 1613), +(166464, 'Karla', 1999, 'F', 1608), +(166465, 'Sofia', 1999, 'F', 1603), +(166466, 'Cierra', 1999, 'F', 1573), +(166467, 'Jasmin', 1999, 'F', 1573), +(166468, 'Mckenna', 1999, 'F', 1569), +(166469, 'April', 1999, 'F', 1554), +(166470, 'Kirsten', 1999, 'F', 1533), +(166471, 'Patricia', 1999, 'F', 1532), +(166472, 'Alison', 1999, 'F', 1527), +(166473, 'Raven', 1999, 'F', 1527), +(166474, 'Christine', 1999, 'F', 1498), +(166475, 'Britney', 1999, 'F', 1495), +(166476, 'Avery', 1999, 'F', 1492), +(166477, 'Allyson', 1999, 'F', 1483), +(166478, 'Mallory', 1999, 'F', 1483), +(166479, 'Trinity', 1999, 'F', 1479), +(166480, 'Kyra', 1999, 'F', 1470), +(166481, 'Adrianna', 1999, 'F', 1469), +(166482, 'Elena', 1999, 'F', 1467), +(166483, 'Tatiana', 1999, 'F', 1465), +(166484, 'Delaney', 1999, 'F', 1459), +(166485, 'Kristina', 1999, 'F', 1453), +(166486, 'Kylee', 1999, 'F', 1453), +(166487, 'Kendall', 1999, 'F', 1442), +(166488, 'Serena', 1999, 'F', 1440), +(166489, 'Nina', 1999, 'F', 1437), +(166490, 'Jazmin', 1999, 'F', 1435), +(166491, 'Giselle', 1999, 'F', 1434), +(166492, 'Whitney', 1999, 'F', 1426), +(166493, 'Makenzie', 1999, 'F', 1425), +(166494, 'Maggie', 1999, 'F', 1423), +(166495, 'Amelia', 1999, 'F', 1419), +(166496, 'Asia', 1999, 'F', 1417), +(166497, 'Nancy', 1999, 'F', 1414), +(166498, 'Alexus', 1999, 'F', 1402), +(166499, 'Kate', 1999, 'F', 1400), +(166500, 'Payton', 1999, 'F', 1393), +(166501, 'Tara', 1999, 'F', 1392), +(166502, 'Savanna', 1999, 'F', 1389), +(166503, 'Jazmine', 1999, 'F', 1378), +(166504, 'Katelynn', 1999, 'F', 1363), +(166505, 'Peyton', 1999, 'F', 1355), +(166506, 'Cindy', 1999, 'F', 1332), +(166507, 'Angelina', 1999, 'F', 1326), +(166508, 'Joanna', 1999, 'F', 1324), +(166509, 'Dana', 1999, 'F', 1321), +(166510, 'Tori', 1999, 'F', 1319), +(166511, 'Gianna', 1999, 'F', 1306), +(166512, 'Yesenia', 1999, 'F', 1306), +(166513, 'Guadalupe', 1999, 'F', 1301), +(166514, 'Kiana', 1999, 'F', 1293), +(166515, 'Katrina', 1999, 'F', 1292), +(166516, 'Bridget', 1999, 'F', 1290), +(166517, 'Priscilla', 1999, 'F', 1289), +(166518, 'Sandra', 1999, 'F', 1286), +(166519, 'Natalia', 1999, 'F', 1272), +(166520, 'Aubrey', 1999, 'F', 1252), +(166521, 'Tessa', 1999, 'F', 1247), +(166522, 'Alana', 1999, 'F', 1246), +(166523, 'Kyla', 1999, 'F', 1245), +(166524, 'Natasha', 1999, 'F', 1244), +(166525, 'Genesis', 1999, 'F', 1243), +(166526, 'Skyler', 1999, 'F', 1219), +(166527, 'Ciara', 1999, 'F', 1218), +(166528, 'Sidney', 1999, 'F', 1218), +(166529, 'Ava', 1999, 'F', 1215), +(166530, 'Julianna', 1999, 'F', 1209), +(166531, 'Ruby', 1999, 'F', 1208), +(166532, 'Mercedes', 1999, 'F', 1207), +(166533, 'Celeste', 1999, 'F', 1205), +(166534, 'Kassandra', 1999, 'F', 1202), +(166535, 'Callie', 1999, 'F', 1200), +(166536, 'Kristin', 1999, 'F', 1194), +(166537, 'Shayla', 1999, 'F', 1187), +(166538, 'Juliana', 1999, 'F', 1186), +(166539, 'Dakota', 1999, 'F', 1166), +(166540, 'Tatyana', 1999, 'F', 1161), +(166541, 'Elise', 1999, 'F', 1157), +(166542, 'Deja', 1999, 'F', 1156), +(166543, 'Camille', 1999, 'F', 1150), +(166544, 'Madeleine', 1999, 'F', 1141), +(166545, 'Carmen', 1999, 'F', 1139), +(166546, 'Meredith', 1999, 'F', 1139), +(166547, 'Deanna', 1999, 'F', 1132), +(166548, 'Rose', 1999, 'F', 1132), +(166549, 'Alissa', 1999, 'F', 1121), +(166550, 'Makenna', 1999, 'F', 1114), +(166551, 'Vivian', 1999, 'F', 1114), +(166552, 'Lisa', 1999, 'F', 1112), +(166553, 'Marisa', 1999, 'F', 1110), +(166554, 'Kira', 1999, 'F', 1106), +(166555, 'Cecilia', 1999, 'F', 1102), +(166556, 'Aaliyah', 1999, 'F', 1088), +(166557, 'Anne', 1999, 'F', 1083), +(166558, 'Sadie', 1999, 'F', 1083), +(166559, 'Logan', 1999, 'F', 1073), +(166560, 'Katlyn', 1999, 'F', 1071), +(166561, 'Tabitha', 1999, 'F', 1060), +(166562, 'Valeria', 1999, 'F', 1058), +(166563, 'Meagan', 1999, 'F', 1050), +(166564, 'Kailey', 1999, 'F', 1047), +(166565, 'Monique', 1999, 'F', 1038), +(166566, 'Imani', 1999, 'F', 1036), +(166567, 'Carolina', 1999, 'F', 1034), +(166568, 'Carolyn', 1999, 'F', 1034), +(166569, 'Miriam', 1999, 'F', 1032), +(166570, 'Brenna', 1999, 'F', 1027), +(166571, 'Paola', 1999, 'F', 1027), +(166572, 'Brandi', 1999, 'F', 1023), +(166573, 'Gillian', 1999, 'F', 1022), +(166574, 'Bryanna', 1999, 'F', 1011), +(166575, 'Anastasia', 1999, 'F', 1005), +(166576, 'Liliana', 1999, 'F', 1005), +(166577, 'Charlotte', 1999, 'F', 1002), +(166578, 'Destinee', 1999, 'F', 1002), +(166579, 'Gina', 1999, 'F', 1001), +(166580, 'Ashlee', 1999, 'F', 991), +(166581, 'Josephine', 1999, 'F', 989), +(166582, 'Macy', 1999, 'F', 983), +(166583, 'Jayla', 1999, 'F', 982), +(166584, 'Annie', 1999, 'F', 981), +(166585, 'Esther', 1999, 'F', 980), +(166586, 'Rosa', 1999, 'F', 979), +(166587, 'Clarissa', 1999, 'F', 975), +(166588, 'Eva', 1999, 'F', 975), +(166589, 'Teresa', 1999, 'F', 975), +(166590, 'Raquel', 1999, 'F', 970), +(166591, 'Haylee', 1999, 'F', 967), +(166592, 'Denise', 1999, 'F', 964), +(166593, 'Cassie', 1999, 'F', 960), +(166594, 'Kassidy', 1999, 'F', 948), +(166595, 'Lizbeth', 1999, 'F', 944), +(166596, 'Tiana', 1999, 'F', 938), +(166597, 'Marina', 1999, 'F', 934), +(166598, 'Cheyanne', 1999, 'F', 930), +(166599, 'Krystal', 1999, 'F', 929), +(166600, 'Nadia', 1999, 'F', 916), +(166601, 'Heidi', 1999, 'F', 913), +(166602, 'Emilee', 1999, 'F', 908), +(166603, 'Rylee', 1999, 'F', 905), +(166604, 'Ashton', 1999, 'F', 904), +(166605, 'Kamryn', 1999, 'F', 902), +(166606, 'Wendy', 1999, 'F', 899), +(166607, 'Linda', 1999, 'F', 898), +(166608, 'Mariana', 1999, 'F', 897), +(166609, 'Gracie', 1999, 'F', 894), +(166610, 'Josie', 1999, 'F', 889), +(166611, 'Alaina', 1999, 'F', 877), +(166612, 'Cristina', 1999, 'F', 876), +(166613, 'Ashleigh', 1999, 'F', 874), +(166614, 'Aliyah', 1999, 'F', 867), +(166615, 'Lacey', 1999, 'F', 867), +(166616, 'Tia', 1999, 'F', 866), +(166617, 'Reagan', 1999, 'F', 865), +(166618, 'Ruth', 1999, 'F', 864), +(166619, 'Mikaela', 1999, 'F', 861), +(166620, 'Georgia', 1999, 'F', 858), +(166621, 'Brandy', 1999, 'F', 853), +(166622, 'Hallie', 1999, 'F', 850), +(166623, 'Allie', 1999, 'F', 845), +(166624, 'Baylee', 1999, 'F', 844), +(166625, 'Hunter', 1999, 'F', 844), +(166626, 'Helen', 1999, 'F', 841), +(166627, 'Tiara', 1999, 'F', 831), +(166628, 'Virginia', 1999, 'F', 824), +(166629, 'Kasey', 1999, 'F', 823), +(166630, 'Marie', 1999, 'F', 823), +(166631, 'Kaitlynn', 1999, 'F', 822), +(166632, 'Renee', 1999, 'F', 819), +(166633, 'Kayleigh', 1999, 'F', 818), +(166634, 'Lucy', 1999, 'F', 812), +(166635, 'Gloria', 1999, 'F', 808), +(166636, 'Krista', 1999, 'F', 806), +(166637, 'Kierra', 1999, 'F', 797), +(166638, 'Nia', 1999, 'F', 797), +(166639, 'Addison', 1999, 'F', 795), +(166640, 'Tyler', 1999, 'F', 788), +(166641, 'Daniella', 1999, 'F', 787), +(166642, 'Clara', 1999, 'F', 782), +(166643, 'Ella', 1999, 'F', 768), +(166644, 'Alisha', 1999, 'F', 765), +(166645, 'Kali', 1999, 'F', 763), +(166646, 'Talia', 1999, 'F', 763), +(166647, 'Ivy', 1999, 'F', 759), +(166648, 'Jenny', 1999, 'F', 758), +(166649, 'Julissa', 1999, 'F', 757), +(166650, 'Francesca', 1999, 'F', 755), +(166651, 'Harley', 1999, 'F', 754), +(166652, 'Fatima', 1999, 'F', 750), +(166653, 'Tamara', 1999, 'F', 750), +(166654, 'Jessie', 1999, 'F', 739), +(166655, 'Martha', 1999, 'F', 731), +(166656, 'Cara', 1999, 'F', 728), +(166657, 'Tyra', 1999, 'F', 726), +(166658, 'Marisol', 1999, 'F', 721), +(166659, 'Heaven', 1999, 'F', 720), +(166660, 'Felicity', 1999, 'F', 717), +(166661, 'Kaylie', 1999, 'F', 715), +(166662, 'Abbey', 1999, 'F', 710), +(166663, 'Jacquelyn', 1999, 'F', 709), +(166664, 'Ellie', 1999, 'F', 708), +(166665, 'Viviana', 1999, 'F', 706), +(166666, 'Tamia', 1999, 'F', 705), +(166667, 'Amaya', 1999, 'F', 703), +(166668, 'Lexi', 1999, 'F', 703), +(166669, 'Theresa', 1999, 'F', 701), +(166670, 'Yasmine', 1999, 'F', 700), +(166671, 'Susan', 1999, 'F', 699), +(166672, 'Elisabeth', 1999, 'F', 693), +(166673, 'Colleen', 1999, 'F', 690), +(166674, 'Eleanor', 1999, 'F', 688), +(166675, 'Jaqueline', 1999, 'F', 688), +(166676, 'Precious', 1999, 'F', 687), +(166677, 'Sharon', 1999, 'F', 684), +(166678, 'Lesley', 1999, 'F', 682), +(166679, 'Carissa', 1999, 'F', 680), +(166680, 'Carla', 1999, 'F', 678), +(166681, 'India', 1999, 'F', 677), +(166682, 'Kelsie', 1999, 'F', 677), +(166683, 'Ellen', 1999, 'F', 674), +(166684, 'Iris', 1999, 'F', 674), +(166685, 'Lesly', 1999, 'F', 672), +(166686, 'Kiera', 1999, 'F', 671), +(166687, 'Felicia', 1999, 'F', 664), +(166688, 'Mayra', 1999, 'F', 664), +(166689, 'Mckayla', 1999, 'F', 664), +(166690, 'Ayanna', 1999, 'F', 656), +(166691, 'Yasmin', 1999, 'F', 655), +(166692, 'Pamela', 1999, 'F', 654), +(166693, 'Rhiannon', 1999, 'F', 651), +(166694, 'Alice', 1999, 'F', 650), +(166695, 'Ashlynn', 1999, 'F', 649), +(166696, 'Haleigh', 1999, 'F', 649), +(166697, 'Kaleigh', 1999, 'F', 647), +(166698, 'Jaclyn', 1999, 'F', 646), +(166699, 'Janet', 1999, 'F', 646), +(166700, 'Tatum', 1999, 'F', 646), +(166701, 'Bailee', 1999, 'F', 642), +(166702, 'Chelsey', 1999, 'F', 638), +(166703, 'Alyson', 1999, 'F', 635), +(166704, 'Noelle', 1999, 'F', 635), +(166705, 'Eliza', 1999, 'F', 631), +(166706, 'Melody', 1999, 'F', 627), +(166707, 'Karissa', 1999, 'F', 622), +(166708, 'Jane', 1999, 'F', 618), +(166709, 'Madalyn', 1999, 'F', 615), +(166710, 'Regan', 1999, 'F', 611), +(166711, 'Tayler', 1999, 'F', 610), +(166712, 'Janelle', 1999, 'F', 608), +(166713, 'Chasity', 1999, 'F', 606), +(166714, 'Carley', 1999, 'F', 602), +(166715, 'Kaylin', 1999, 'F', 602), +(166716, 'Gisselle', 1999, 'F', 600), +(166717, 'Justine', 1999, 'F', 599), +(166718, 'Joy', 1999, 'F', 596), +(166719, 'Larissa', 1999, 'F', 596), +(166720, 'Nichole', 1999, 'F', 596), +(166721, 'Tianna', 1999, 'F', 591), +(166722, 'Kiley', 1999, 'F', 590), +(166723, 'Paulina', 1999, 'F', 588), +(166724, 'Halle', 1999, 'F', 584), +(166725, 'Ann', 1999, 'F', 583), +(166726, 'Carrie', 1999, 'F', 582), +(166727, 'Nora', 1999, 'F', 582), +(166728, 'Jaden', 1999, 'F', 579), +(166729, 'Alayna', 1999, 'F', 578), +(166730, 'Tania', 1999, 'F', 577), +(166731, 'Taryn', 1999, 'F', 576), +(166732, 'Sonia', 1999, 'F', 574), +(166733, 'Chyna', 1999, 'F', 573), +(166734, 'Luz', 1999, 'F', 573), +(166735, 'Paris', 1999, 'F', 570), +(166736, 'Hailee', 1999, 'F', 567), +(166737, 'Sasha', 1999, 'F', 566), +(166738, 'Zoey', 1999, 'F', 562), +(166739, 'Maddison', 1999, 'F', 561), +(166740, 'Annika', 1999, 'F', 558), +(166741, 'Breana', 1999, 'F', 556), +(166742, 'Emilie', 1999, 'F', 555), +(166743, 'Irene', 1999, 'F', 554), +(166744, 'Lorena', 1999, 'F', 554), +(166745, 'Fiona', 1999, 'F', 552), +(166746, 'Kelli', 1999, 'F', 549), +(166747, 'Barbara', 1999, 'F', 548), +(166748, 'Alanna', 1999, 'F', 544), +(166749, 'Kaila', 1999, 'F', 544), +(166750, 'Ally', 1999, 'F', 540), +(166751, 'Kaley', 1999, 'F', 540), +(166752, 'Johanna', 1999, 'F', 538), +(166753, 'Sylvia', 1999, 'F', 536), +(166754, 'Angelique', 1999, 'F', 535), +(166755, 'Alina', 1999, 'F', 534), +(166756, 'Kailee', 1999, 'F', 534), +(166757, 'Kiersten', 1999, 'F', 532), +(166758, 'Tierra', 1999, 'F', 531), +(166759, 'Ebony', 1999, 'F', 530), +(166760, 'Essence', 1999, 'F', 529), +(166761, 'Alma', 1999, 'F', 528), +(166762, 'Cora', 1999, 'F', 528), +(166763, 'Arielle', 1999, 'F', 527), +(166764, 'Phoebe', 1999, 'F', 527), +(166765, 'Shyanne', 1999, 'F', 525), +(166766, 'Deborah', 1999, 'F', 524), +(166767, 'Serenity', 1999, 'F', 524), +(166768, 'Aimee', 1999, 'F', 523), +(166769, 'Annabelle', 1999, 'F', 521), +(166770, 'Justice', 1999, 'F', 521), +(166771, 'Sage', 1999, 'F', 521), +(166772, 'Toni', 1999, 'F', 521), +(166773, 'Aurora', 1999, 'F', 519), +(166774, 'Emely', 1999, 'F', 518), +(166775, 'Janae', 1999, 'F', 516), +(166776, 'Jailene', 1999, 'F', 513), +(166777, 'Genevieve', 1999, 'F', 510), +(166778, 'Devin', 1999, 'F', 509), +(166779, 'Clare', 1999, 'F', 507), +(166780, 'Skye', 1999, 'F', 507), +(166781, 'Lizette', 1999, 'F', 506), +(166782, 'Carlie', 1999, 'F', 501), +(166783, 'Elisa', 1999, 'F', 497), +(166784, 'Brooklynn', 1999, 'F', 495), +(166785, 'Julianne', 1999, 'F', 495), +(166786, 'Eden', 1999, 'F', 494), +(166787, 'Aileen', 1999, 'F', 492), +(166788, 'Athena', 1999, 'F', 492), +(166789, 'Calista', 1999, 'F', 490), +(166790, 'Adrienne', 1999, 'F', 488), +(166791, 'Lilly', 1999, 'F', 488), +(166792, 'Frances', 1999, 'F', 486), +(166793, 'Judith', 1999, 'F', 485), +(166794, 'Ciera', 1999, 'F', 483), +(166795, 'Charity', 1999, 'F', 482), +(166796, 'Micaela', 1999, 'F', 482), +(166797, 'Angie', 1999, 'F', 480), +(166798, 'Marilyn', 1999, 'F', 480), +(166799, 'Nicolette', 1999, 'F', 479), +(166800, 'Christian', 1999, 'F', 478), +(166801, 'Kellie', 1999, 'F', 477), +(166802, 'Leticia', 1999, 'F', 475), +(166803, 'Macey', 1999, 'F', 474), +(166804, 'Madisyn', 1999, 'F', 474), +(166805, 'Aspen', 1999, 'F', 473), +(166806, 'Perla', 1999, 'F', 471), +(166807, 'Cayla', 1999, 'F', 469), +(166808, 'Destini', 1999, 'F', 469), +(166809, 'Sydnee', 1999, 'F', 469), +(166810, 'Lena', 1999, 'F', 468), +(166811, 'Lexie', 1999, 'F', 468), +(166812, 'Candace', 1999, 'F', 463), +(166813, 'Noemi', 1999, 'F', 463), +(166814, 'Nathalie', 1999, 'F', 462), +(166815, 'Robin', 1999, 'F', 462), +(166816, 'Elaine', 1999, 'F', 461), +(166817, 'Kayley', 1999, 'F', 461), +(166818, 'Montana', 1999, 'F', 461), +(166819, 'Regina', 1999, 'F', 461), +(166820, 'Carina', 1999, 'F', 459), +(166821, 'Kacie', 1999, 'F', 458), +(166822, 'Kenya', 1999, 'F', 456), +(166823, 'Destiney', 1999, 'F', 455), +(166824, 'Stacy', 1999, 'F', 455), +(166825, 'Elaina', 1999, 'F', 454), +(166826, 'Ryan', 1999, 'F', 454), +(166827, 'Jewel', 1999, 'F', 453), +(166828, 'Brynn', 1999, 'F', 452), +(166829, 'Shayna', 1999, 'F', 452), +(166830, 'Brianne', 1999, 'F', 447), +(166831, 'Carson', 1999, 'F', 447), +(166832, 'Chandler', 1999, 'F', 447), +(166833, 'Devon', 1999, 'F', 447), +(166834, 'Paula', 1999, 'F', 446), +(166835, 'Sarai', 1999, 'F', 446), +(166836, 'Laurel', 1999, 'F', 444), +(166837, 'Simone', 1999, 'F', 444), +(166838, 'Kaylyn', 1999, 'F', 443), +(166839, 'Salma', 1999, 'F', 442), +(166840, 'Cristal', 1999, 'F', 441), +(166841, 'Mollie', 1999, 'F', 441), +(166842, 'Macie', 1999, 'F', 440), +(166843, 'Tess', 1999, 'F', 437), +(166844, 'Lucia', 1999, 'F', 433), +(166845, 'Tina', 1999, 'F', 433), +(166846, 'Antonia', 1999, 'F', 432), +(166847, 'Marlene', 1999, 'F', 432), +(166848, 'Savanah', 1999, 'F', 431), +(166849, 'Abbie', 1999, 'F', 430), +(166850, 'Miracle', 1999, 'F', 429), +(166851, 'Lizeth', 1999, 'F', 426), +(166852, 'Edith', 1999, 'F', 425), +(166853, 'Melina', 1999, 'F', 425), +(166854, 'Malia', 1999, 'F', 423), +(166855, 'Anahi', 1999, 'F', 422), +(166856, 'Maia', 1999, 'F', 420), +(166857, 'Micah', 1999, 'F', 420), +(166858, 'Madyson', 1999, 'F', 419), +(166859, 'Corinne', 1999, 'F', 418), +(166860, 'Helena', 1999, 'F', 415), +(166861, 'Sienna', 1999, 'F', 415), +(166862, 'Alisa', 1999, 'F', 414), +(166863, 'Eileen', 1999, 'F', 414), +(166864, 'Isis', 1999, 'F', 414), +(166865, 'Jayda', 1999, 'F', 413), +(166866, 'Reyna', 1999, 'F', 413), +(166867, 'Celia', 1999, 'F', 409), +(166868, 'Katelin', 1999, 'F', 408), +(166869, 'Nikki', 1999, 'F', 407), +(166870, 'Maritza', 1999, 'F', 406), +(166871, 'Amari', 1999, 'F', 405), +(166872, 'Rylie', 1999, 'F', 404), +(166873, 'Kourtney', 1999, 'F', 403), +(166874, 'Tanya', 1999, 'F', 403), +(166875, 'Esperanza', 1999, 'F', 402), +(166876, 'Melinda', 1999, 'F', 401), +(166877, 'Kianna', 1999, 'F', 399), +(166878, 'Jayden', 1999, 'F', 398), +(166879, 'Karlee', 1999, 'F', 398), +(166880, 'Sydni', 1999, 'F', 397), +(166881, 'Juliet', 1999, 'F', 396), +(166882, 'Moriah', 1999, 'F', 396), +(166883, 'Robyn', 1999, 'F', 396), +(166884, 'Abbigail', 1999, 'F', 395), +(166885, 'Drew', 1999, 'F', 395), +(166886, 'Lisette', 1999, 'F', 395), +(166887, 'Celine', 1999, 'F', 394), +(166888, 'Alivia', 1999, 'F', 391), +(166889, 'Kailyn', 1999, 'F', 389), +(166890, 'Shawna', 1999, 'F', 386), +(166891, 'Halie', 1999, 'F', 385), +(166892, 'Keely', 1999, 'F', 382), +(166893, 'Maribel', 1999, 'F', 382), +(166894, 'Eliana', 1999, 'F', 381), +(166895, 'Jaime', 1999, 'F', 380), +(166896, 'Lexus', 1999, 'F', 380), +(166897, 'Thalia', 1999, 'F', 380), +(166898, 'Bria', 1999, 'F', 376), +(166899, 'Beatriz', 1999, 'F', 375), +(166900, 'Leilani', 1999, 'F', 375), +(166901, 'Rosemary', 1999, 'F', 374), +(166902, 'Donna', 1999, 'F', 373), +(166903, 'Karli', 1999, 'F', 372), +(166904, 'Kyleigh', 1999, 'F', 372), +(166905, 'Ericka', 1999, 'F', 371), +(166906, 'Leanna', 1999, 'F', 370), +(166907, 'Lyndsey', 1999, 'F', 370), +(166908, 'Mariela', 1999, 'F', 370), +(166909, 'Brielle', 1999, 'F', 369), +(166910, 'Juliette', 1999, 'F', 368), +(166911, 'Blanca', 1999, 'F', 367), +(166912, 'Margarita', 1999, 'F', 367), +(166913, 'Meaghan', 1999, 'F', 364), +(166914, 'Lea', 1999, 'F', 363), +(166915, 'Mara', 1999, 'F', 363), +(166916, 'Carlee', 1999, 'F', 361), +(166917, 'Kathy', 1999, 'F', 361), +(166918, 'Delilah', 1999, 'F', 355), +(166919, 'Jenifer', 1999, 'F', 355), +(166920, 'Jesse', 1999, 'F', 355), +(166921, 'Stacey', 1999, 'F', 355), +(166922, 'Madelynn', 1999, 'F', 354), +(166923, 'Sheila', 1999, 'F', 353), +(166924, 'Aleah', 1999, 'F', 351), +(166925, 'Alexandrea', 1999, 'F', 351), +(166926, 'Layla', 1999, 'F', 351), +(166927, 'Zaria', 1999, 'F', 351), +(166928, 'Infant', 1999, 'F', 350), +(166929, 'Camila', 1999, 'F', 349), +(166930, 'Gwendolyn', 1999, 'F', 347), +(166931, 'Selina', 1999, 'F', 347), +(166932, 'Jazmyn', 1999, 'F', 346), +(166933, 'Stephany', 1999, 'F', 346), +(166934, 'Candice', 1999, 'F', 345), +(166935, 'Karlie', 1999, 'F', 345), +(166936, 'Karly', 1999, 'F', 344), +(166937, 'Desirae', 1999, 'F', 343), +(166938, 'Kaelyn', 1999, 'F', 343), +(166939, 'Maeve', 1999, 'F', 343), +(166940, 'Susana', 1999, 'F', 342), +(166941, 'Dejah', 1999, 'F', 341), +(166942, 'Sydnie', 1999, 'F', 341), +(166943, 'Hana', 1999, 'F', 339), +(166944, 'Casandra', 1999, 'F', 338), +(166945, 'Araceli', 1999, 'F', 337), +(166946, 'Joyce', 1999, 'F', 337), +(166947, 'Damaris', 1999, 'F', 336), +(166948, 'Christy', 1999, 'F', 335), +(166949, 'Dorothy', 1999, 'F', 335), +(166950, 'Madisen', 1999, 'F', 334), +(166951, 'Quinn', 1999, 'F', 334), +(166952, 'Lyric', 1999, 'F', 333), +(166953, 'Kallie', 1999, 'F', 332), +(166954, 'Yvette', 1999, 'F', 332), +(166955, 'Mireya', 1999, 'F', 331), +(166956, 'Allyssa', 1999, 'F', 330), +(166957, 'Kelsi', 1999, 'F', 330), +(166958, 'Sandy', 1999, 'F', 329), +(166959, 'Celina', 1999, 'F', 328), +(166960, 'Sally', 1999, 'F', 327), +(166961, 'Anya', 1999, 'F', 326), +(166962, 'Christa', 1999, 'F', 326), +(166963, 'Katarina', 1999, 'F', 326), +(166964, 'Aisha', 1999, 'F', 325), +(166965, 'Shyann', 1999, 'F', 325), +(166966, 'Reilly', 1999, 'F', 324), +(166967, 'Daphne', 1999, 'F', 323), +(166968, 'Kaela', 1999, 'F', 323), +(166969, 'Kenzie', 1999, 'F', 323), +(166970, 'Loren', 1999, 'F', 323), +(166971, 'Piper', 1999, 'F', 323), +(166972, 'Aniya', 1999, 'F', 322), +(166973, 'Caleigh', 1999, 'F', 322), +(166974, 'Eve', 1999, 'F', 322), +(166975, 'Itzel', 1999, 'F', 322), +(166976, 'Anita', 1999, 'F', 321), +(166977, 'Janessa', 1999, 'F', 321), +(166978, 'Katharine', 1999, 'F', 321), +(166979, 'Anissa', 1999, 'F', 320), +(166980, 'Devyn', 1999, 'F', 320), +(166981, 'Nikita', 1999, 'F', 320), +(166982, 'Rebeca', 1999, 'F', 320), +(166983, 'Kayli', 1999, 'F', 319), +(166984, 'Jaelyn', 1999, 'F', 317), +(166985, 'Kasandra', 1999, 'F', 317), +(166986, 'Raegan', 1999, 'F', 317), +(166987, 'Dulce', 1999, 'F', 316), +(166988, 'Marley', 1999, 'F', 316), +(166989, 'Estefania', 1999, 'F', 314), +(166990, 'Noelia', 1999, 'F', 314), +(166991, 'Tracy', 1999, 'F', 314), +(166992, 'Arlene', 1999, 'F', 313), +(166993, 'Lila', 1999, 'F', 312), +(166994, 'Stella', 1999, 'F', 312), +(166995, 'Alessandra', 1999, 'F', 311), +(166996, 'Kaylah', 1999, 'F', 311), +(166997, 'Carli', 1999, 'F', 310), +(166998, 'Maura', 1999, 'F', 310), +(166999, 'Shanice', 1999, 'F', 309), +(167000, 'Darian', 1999, 'F', 308), +(167001, 'Willow', 1999, 'F', 308), +(167002, 'Alize', 1999, 'F', 307), +(167003, 'Graciela', 1999, 'F', 307), +(167004, 'Leila', 1999, 'F', 306), +(167005, 'Randi', 1999, 'F', 306), +(167006, 'Elissa', 1999, 'F', 305), +(167007, 'Diane', 1999, 'F', 304), +(167008, 'Maegan', 1999, 'F', 304), +(167009, 'Carol', 1999, 'F', 303), +(167010, 'Estrella', 1999, 'F', 303), +(167011, 'Anika', 1999, 'F', 302), +(167012, 'Maranda', 1999, 'F', 302), +(167013, 'Nayeli', 1999, 'F', 302), +(167014, 'Dasia', 1999, 'F', 301), +(167015, 'Gretchen', 1999, 'F', 301), +(167016, 'Mariam', 1999, 'F', 301), +(167017, 'Jacklyn', 1999, 'F', 300), +(167018, 'Rocio', 1999, 'F', 300), +(167019, 'Skyla', 1999, 'F', 300), +(167020, 'Ayana', 1999, 'F', 298), +(167021, 'Darby', 1999, 'F', 298), +(167022, 'Haylie', 1999, 'F', 298), +(167023, 'Janice', 1999, 'F', 298), +(167024, 'Taya', 1999, 'F', 298), +(167025, 'Cortney', 1999, 'F', 296), +(167026, 'Jeanette', 1999, 'F', 295), +(167027, 'Rachelle', 1999, 'F', 294), +(167028, 'Abigayle', 1999, 'F', 292), +(167029, 'Emilia', 1999, 'F', 292), +(167030, 'Norma', 1999, 'F', 292), +(167031, 'Cecelia', 1999, 'F', 291), +(167032, 'Haven', 1999, 'F', 291), +(167033, 'Kiarra', 1999, 'F', 291), +(167034, 'Alena', 1999, 'F', 290), +(167035, 'Christiana', 1999, 'F', 290), +(167036, 'Karley', 1999, 'F', 290), +(167037, 'Nataly', 1999, 'F', 290), +(167038, 'Chantel', 1999, 'F', 289), +(167039, 'Kaylynn', 1999, 'F', 288), +(167040, 'Shaina', 1999, 'F', 288), +(167041, 'Annette', 1999, 'F', 286), +(167042, 'Kacey', 1999, 'F', 286), +(167043, 'Fernanda', 1999, 'F', 285), +(167044, 'Joselyn', 1999, 'F', 285), +(167045, 'Aylin', 1999, 'F', 284), +(167046, 'Kristine', 1999, 'F', 284); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(167047, 'Bridgette', 1999, 'F', 283), +(167048, 'Brook', 1999, 'F', 283), +(167049, 'Jacey', 1999, 'F', 283), +(167050, 'Kari', 1999, 'F', 283), +(167051, 'Lori', 1999, 'F', 283), +(167052, 'Yadira', 1999, 'F', 283), +(167053, 'Madilyn', 1999, 'F', 282), +(167054, 'Gabriel', 1999, 'F', 281), +(167055, 'Shea', 1999, 'F', 281), +(167056, 'Alex', 1999, 'F', 278), +(167057, 'Juanita', 1999, 'F', 278), +(167058, 'Lara', 1999, 'F', 278), +(167059, 'Sarina', 1999, 'F', 278), +(167060, 'Sonya', 1999, 'F', 278), +(167061, 'Amani', 1999, 'F', 277), +(167062, 'Jadyn', 1999, 'F', 277), +(167063, 'Shaniya', 1999, 'F', 276), +(167064, 'Stefanie', 1999, 'F', 276), +(167065, 'Chanel', 1999, 'F', 275), +(167066, 'Myah', 1999, 'F', 275), +(167067, 'Savana', 1999, 'F', 274), +(167068, 'Yvonne', 1999, 'F', 274), +(167069, 'Odalys', 1999, 'F', 273), +(167070, 'Tatianna', 1999, 'F', 273), +(167071, 'Yolanda', 1999, 'F', 273), +(167072, 'Kennedi', 1999, 'F', 272), +(167073, 'Trisha', 1999, 'F', 272), +(167074, 'Ashly', 1999, 'F', 271), +(167075, 'Lillie', 1999, 'F', 271), +(167076, 'Elyse', 1999, 'F', 270), +(167077, 'Fabiola', 1999, 'F', 270), +(167078, 'Maci', 1999, 'F', 270), +(167079, 'Jazlyn', 1999, 'F', 269), +(167080, 'Valentina', 1999, 'F', 269), +(167081, 'Harmony', 1999, 'F', 268), +(167082, 'Hayden', 1999, 'F', 268), +(167083, 'Katlynn', 1999, 'F', 268), +(167084, 'Katlin', 1999, 'F', 267), +(167085, 'Cali', 1999, 'F', 266), +(167086, 'Marianna', 1999, 'F', 266), +(167087, 'Teagan', 1999, 'F', 266), +(167088, 'Bonnie', 1999, 'F', 265), +(167089, 'Jena', 1999, 'F', 265), +(167090, 'Lilian', 1999, 'F', 265), +(167091, 'Alexys', 1999, 'F', 264), +(167092, 'Kristy', 1999, 'F', 264), +(167093, 'Yessenia', 1999, 'F', 264), +(167094, 'Ansley', 1999, 'F', 263), +(167095, 'Berenice', 1999, 'F', 263), +(167096, 'Daria', 1999, 'F', 262), +(167097, 'Antoinette', 1999, 'F', 261), +(167098, 'Dalia', 1999, 'F', 261), +(167099, 'Princess', 1999, 'F', 261), +(167100, 'Ryann', 1999, 'F', 260), +(167101, 'Alysa', 1999, 'F', 259), +(167102, 'Chaya', 1999, 'F', 259), +(167103, 'Chelsie', 1999, 'F', 259), +(167104, 'Jasmyn', 1999, 'F', 259), +(167105, 'Keara', 1999, 'F', 259), +(167106, 'Unique', 1999, 'F', 259), +(167107, 'Yasmeen', 1999, 'F', 259), +(167108, 'Jaida', 1999, 'F', 258), +(167109, 'Kalyn', 1999, 'F', 258), +(167110, 'Leann', 1999, 'F', 258), +(167111, 'Catalina', 1999, 'F', 257), +(167112, 'Dianna', 1999, 'F', 257), +(167113, 'Tiffani', 1999, 'F', 257), +(167114, 'Zoie', 1999, 'F', 257), +(167115, 'Michele', 1999, 'F', 256), +(167116, 'Shakira', 1999, 'F', 256), +(167117, 'Alycia', 1999, 'F', 255), +(167118, 'Kaci', 1999, 'F', 255), +(167119, 'Reanna', 1999, 'F', 255), +(167120, 'Violet', 1999, 'F', 255), +(167121, 'Armani', 1999, 'F', 254), +(167122, 'Caitlynn', 1999, 'F', 254), +(167123, 'Hillary', 1999, 'F', 254), +(167124, 'Alia', 1999, 'F', 253), +(167125, 'Aubree', 1999, 'F', 253), +(167126, 'Greta', 1999, 'F', 253), +(167127, 'Ingrid', 1999, 'F', 252), +(167128, 'Joelle', 1999, 'F', 252), +(167129, 'Bryana', 1999, 'F', 251), +(167130, 'Nadine', 1999, 'F', 251), +(167131, 'Giovanna', 1999, 'F', 250), +(167132, 'Jazmyne', 1999, 'F', 250), +(167133, 'Shaylee', 1999, 'F', 250), +(167134, 'Liana', 1999, 'F', 249), +(167135, 'Ali', 1999, 'F', 248), +(167136, 'Breanne', 1999, 'F', 248), +(167137, 'Jaycee', 1999, 'F', 248), +(167138, 'Luisa', 1999, 'F', 248), +(167139, 'America', 1999, 'F', 247), +(167140, 'Ayla', 1999, 'F', 247), +(167141, 'Jana', 1999, 'F', 247), +(167142, 'Parker', 1999, 'F', 247), +(167143, 'Daija', 1999, 'F', 246), +(167144, 'Elyssa', 1999, 'F', 246), +(167145, 'Nautica', 1999, 'F', 246), +(167146, 'Emmalee', 1999, 'F', 245), +(167147, 'Scarlett', 1999, 'F', 245), +(167148, 'Ashanti', 1999, 'F', 243), +(167149, 'Katy', 1999, 'F', 243), +(167150, 'Keri', 1999, 'F', 243), +(167151, 'Leanne', 1999, 'F', 243), +(167152, 'Silvia', 1999, 'F', 243), +(167153, 'Kinsey', 1999, 'F', 242), +(167154, 'Blair', 1999, 'F', 241), +(167155, 'Magdalena', 1999, 'F', 241), +(167156, 'Misty', 1999, 'F', 241), +(167157, 'Aiyana', 1999, 'F', 240), +(167158, 'Jocelyne', 1999, 'F', 240), +(167159, 'Kirstin', 1999, 'F', 240), +(167160, 'Lourdes', 1999, 'F', 240), +(167161, 'Mattie', 1999, 'F', 240), +(167162, 'Baby', 1999, 'F', 239), +(167163, 'Miya', 1999, 'F', 239), +(167164, 'Shianne', 1999, 'F', 239), +(167165, 'Yazmin', 1999, 'F', 239), +(167166, 'Roxanne', 1999, 'F', 237), +(167167, 'Dallas', 1999, 'F', 236), +(167168, 'Delia', 1999, 'F', 236), +(167169, 'Elsa', 1999, 'F', 236), +(167170, 'Marcella', 1999, 'F', 236), +(167171, 'Rayna', 1999, 'F', 236), +(167172, 'Kelley', 1999, 'F', 235), +(167173, 'Shauna', 1999, 'F', 235), +(167174, 'Myra', 1999, 'F', 234), +(167175, 'Alysha', 1999, 'F', 233), +(167176, 'Emerald', 1999, 'F', 233), +(167177, 'Jalyn', 1999, 'F', 233), +(167178, 'Lia', 1999, 'F', 233), +(167179, 'Nyasia', 1999, 'F', 233), +(167180, 'Kori', 1999, 'F', 232), +(167181, 'Mikala', 1999, 'F', 232), +(167182, 'Raina', 1999, 'F', 232), +(167183, 'Tamera', 1999, 'F', 232), +(167184, 'Aniyah', 1999, 'F', 231), +(167185, 'Hazel', 1999, 'F', 231), +(167186, 'Lacy', 1999, 'F', 231), +(167187, 'Shirley', 1999, 'F', 231), +(167188, 'Dawn', 1999, 'F', 230), +(167189, 'London', 1999, 'F', 230), +(167190, 'Patience', 1999, 'F', 230), +(167191, 'Alysia', 1999, 'F', 229), +(167192, 'Chantal', 1999, 'F', 229), +(167193, 'Jaylene', 1999, 'F', 229), +(167194, 'Adeline', 1999, 'F', 228), +(167195, 'Kyara', 1999, 'F', 228), +(167196, 'Odalis', 1999, 'F', 228), +(167197, 'Rita', 1999, 'F', 228), +(167198, 'Destany', 1999, 'F', 227), +(167199, 'Janette', 1999, 'F', 227), +(167200, 'Makala', 1999, 'F', 227), +(167201, 'Citlalli', 1999, 'F', 226), +(167202, 'Iliana', 1999, 'F', 226), +(167203, 'Juana', 1999, 'F', 226), +(167204, 'Martina', 1999, 'F', 226), +(167205, 'Abigale', 1999, 'F', 225), +(167206, 'Asha', 1999, 'F', 224), +(167207, 'Darlene', 1999, 'F', 224), +(167208, 'Reina', 1999, 'F', 224), +(167209, 'Daisha', 1999, 'F', 223), +(167210, 'Isabela', 1999, 'F', 223), +(167211, 'Samara', 1999, 'F', 223), +(167212, 'Mandy', 1999, 'F', 222), +(167213, 'Maricela', 1999, 'F', 222), +(167214, 'Amira', 1999, 'F', 221), +(167215, 'Jodi', 1999, 'F', 221), +(167216, 'Dayna', 1999, 'F', 220), +(167217, 'Marlee', 1999, 'F', 220), +(167218, 'Beverly', 1999, 'F', 219), +(167219, 'Kameron', 1999, 'F', 219), +(167220, 'Suzanne', 1999, 'F', 219), +(167221, 'Rochelle', 1999, 'F', 218), +(167222, 'Tatyanna', 1999, 'F', 218), +(167223, 'Journey', 1999, 'F', 217), +(167224, 'Kassie', 1999, 'F', 217), +(167225, 'Presley', 1999, 'F', 217), +(167226, 'Ryleigh', 1999, 'F', 217), +(167227, 'Brittani', 1999, 'F', 216), +(167228, 'Kaycee', 1999, 'F', 216), +(167229, 'Lissette', 1999, 'F', 216), +(167230, 'Aliya', 1999, 'F', 215), +(167231, 'Annamarie', 1999, 'F', 215), +(167232, 'Eryn', 1999, 'F', 215), +(167233, 'Kalie', 1999, 'F', 215), +(167234, 'Katia', 1999, 'F', 215), +(167235, 'Sky', 1999, 'F', 215), +(167236, 'Audra', 1999, 'F', 214), +(167237, 'Gladys', 1999, 'F', 214), +(167238, 'Jaiden', 1999, 'F', 214), +(167239, 'Kenia', 1999, 'F', 214), +(167240, 'Shelbi', 1999, 'F', 214), +(167241, 'Abril', 1999, 'F', 213), +(167242, 'Jill', 1999, 'F', 213), +(167243, 'Shyla', 1999, 'F', 213), +(167244, 'Vanesa', 1999, 'F', 213), +(167245, 'Brionna', 1999, 'F', 212), +(167246, 'Bryn', 1999, 'F', 212), +(167247, 'Justina', 1999, 'F', 212), +(167248, 'Abagail', 1999, 'F', 211), +(167249, 'Breonna', 1999, 'F', 211), +(167250, 'Joanne', 1999, 'F', 211), +(167251, 'Keeley', 1999, 'F', 211), +(167252, 'Shana', 1999, 'F', 211), +(167253, 'Annalise', 1999, 'F', 210), +(167254, 'Marcela', 1999, 'F', 210), +(167255, 'Shelbie', 1999, 'F', 210), +(167256, 'Ashlie', 1999, 'F', 209), +(167257, 'Chana', 1999, 'F', 209), +(167258, 'Deasia', 1999, 'F', 209), +(167259, 'Starr', 1999, 'F', 209), +(167260, 'Charlene', 1999, 'F', 208), +(167261, 'Izabella', 1999, 'F', 207), +(167262, 'Janie', 1999, 'F', 207), +(167263, 'Kendal', 1999, 'F', 207), +(167264, 'Nya', 1999, 'F', 207), +(167265, 'Saige', 1999, 'F', 207), +(167266, 'Breann', 1999, 'F', 206), +(167267, 'Ivana', 1999, 'F', 206), +(167268, 'Jakayla', 1999, 'F', 206), +(167269, 'Lana', 1999, 'F', 206), +(167270, 'Constance', 1999, 'F', 205), +(167271, 'Jaylin', 1999, 'F', 205), +(167272, 'Kenna', 1999, 'F', 205), +(167273, 'Octavia', 1999, 'F', 205), +(167274, 'Tammy', 1999, 'F', 205), +(167275, 'Tyanna', 1999, 'F', 205), +(167276, 'Alyssia', 1999, 'F', 204), +(167277, 'Ashtyn', 1999, 'F', 204), +(167278, 'Rhianna', 1999, 'F', 204), +(167279, 'Aliza', 1999, 'F', 203), +(167280, 'Shae', 1999, 'F', 203), +(167281, 'Anais', 1999, 'F', 202), +(167282, 'Anjali', 1999, 'F', 202), +(167283, 'Aria', 1999, 'F', 202), +(167284, 'Eunice', 1999, 'F', 202), +(167285, 'Katerina', 1999, 'F', 202), +(167286, 'Paloma', 1999, 'F', 202), +(167287, 'Emani', 1999, 'F', 201), +(167288, 'Hollie', 1999, 'F', 201), +(167289, 'Kaytlin', 1999, 'F', 201), +(167290, 'Yajaira', 1999, 'F', 201), +(167291, 'Cydney', 1999, 'F', 200), +(167292, 'Kerry', 1999, 'F', 200), +(167293, 'Arely', 1999, 'F', 199), +(167294, 'Galilea', 1999, 'F', 199), +(167295, 'Gia', 1999, 'F', 199), +(167296, 'Noel', 1999, 'F', 199), +(167297, 'Sheridan', 1999, 'F', 199), +(167298, 'Cailey', 1999, 'F', 198), +(167299, 'Corina', 1999, 'F', 198), +(167300, 'Dina', 1999, 'F', 198), +(167301, 'Hadley', 1999, 'F', 198), +(167302, 'Amara', 1999, 'F', 197), +(167303, 'Lina', 1999, 'F', 197), +(167304, 'Olga', 1999, 'F', 197), +(167305, 'Beatrice', 1999, 'F', 196), +(167306, 'Cameryn', 1999, 'F', 196), +(167307, 'Evelin', 1999, 'F', 196), +(167308, 'Jayde', 1999, 'F', 196), +(167309, 'Jennie', 1999, 'F', 196), +(167310, 'Keira', 1999, 'F', 196), +(167311, 'Melisa', 1999, 'F', 196), +(167312, 'Roxana', 1999, 'F', 196), +(167313, 'Aubrie', 1999, 'F', 195), +(167314, 'Connie', 1999, 'F', 195), +(167315, 'Judy', 1999, 'F', 195), +(167316, 'Aja', 1999, 'F', 194), +(167317, 'Annabel', 1999, 'F', 194), +(167318, 'Coral', 1999, 'F', 194), +(167319, 'Flor', 1999, 'F', 194), +(167320, 'Miah', 1999, 'F', 194), +(167321, 'Tayla', 1999, 'F', 194), +(167322, 'Tristan', 1999, 'F', 194), +(167323, 'Kaylan', 1999, 'F', 193), +(167324, 'Kaya', 1999, 'F', 192), +(167325, 'Keila', 1999, 'F', 192), +(167326, 'Lucero', 1999, 'F', 192), +(167327, 'Mykayla', 1999, 'F', 192), +(167328, 'Jayme', 1999, 'F', 191), +(167329, 'Lacie', 1999, 'F', 191), +(167330, 'Tasha', 1999, 'F', 191), +(167331, 'Jasmyne', 1999, 'F', 190), +(167332, 'Myranda', 1999, 'F', 190), +(167333, 'Serina', 1999, 'F', 190), +(167334, 'Terra', 1999, 'F', 190), +(167335, 'Elisha', 1999, 'F', 189), +(167336, 'Irma', 1999, 'F', 189), +(167337, 'Kalee', 1999, 'F', 189), +(167338, 'Nyla', 1999, 'F', 189), +(167339, 'Racheal', 1999, 'F', 189), +(167340, 'Mindy', 1999, 'F', 188), +(167341, 'Anaya', 1999, 'F', 187), +(167342, 'Caylee', 1999, 'F', 187), +(167343, 'Debra', 1999, 'F', 187), +(167344, 'Makaila', 1999, 'F', 187), +(167345, 'Shanna', 1999, 'F', 187), +(167346, 'Tabatha', 1999, 'F', 187), +(167347, 'Kortney', 1999, 'F', 186), +(167348, 'Kristi', 1999, 'F', 186), +(167349, 'Laney', 1999, 'F', 186), +(167350, 'Priscila', 1999, 'F', 186), +(167351, 'Sade', 1999, 'F', 186), +(167352, 'Star', 1999, 'F', 186), +(167353, 'Tristen', 1999, 'F', 186), +(167354, 'Alexi', 1999, 'F', 185), +(167355, 'Bella', 1999, 'F', 183), +(167356, 'Bobbie', 1999, 'F', 183), +(167357, 'Chastity', 1999, 'F', 183), +(167358, 'Daja', 1999, 'F', 183), +(167359, 'Kalli', 1999, 'F', 183), +(167360, 'Amina', 1999, 'F', 182), +(167361, 'Aracely', 1999, 'F', 182), +(167362, 'Betty', 1999, 'F', 182), +(167363, 'Jackie', 1999, 'F', 182), +(167364, 'Kalista', 1999, 'F', 182), +(167365, 'Noor', 1999, 'F', 182), +(167366, 'Astrid', 1999, 'F', 181), +(167367, 'Chyanne', 1999, 'F', 181), +(167368, 'Dajah', 1999, 'F', 181), +(167369, 'Griselda', 1999, 'F', 181), +(167370, 'Lilia', 1999, 'F', 181), +(167371, 'Geneva', 1999, 'F', 180), +(167372, 'Joslyn', 1999, 'F', 180), +(167373, 'Lexis', 1999, 'F', 180), +(167374, 'Stormy', 1999, 'F', 180), +(167375, 'Tanisha', 1999, 'F', 180), +(167376, 'Akira', 1999, 'F', 179), +(167377, 'Annmarie', 1999, 'F', 179), +(167378, 'Colette', 1999, 'F', 179), +(167379, 'Dayana', 1999, 'F', 179), +(167380, 'Kayle', 1999, 'F', 179), +(167381, 'Marlena', 1999, 'F', 179), +(167382, 'Bobbi', 1999, 'F', 178), +(167383, 'Fallon', 1999, 'F', 178), +(167384, 'Gwyneth', 1999, 'F', 178), +(167385, 'Leeann', 1999, 'F', 178), +(167386, 'Micayla', 1999, 'F', 178), +(167387, 'Niya', 1999, 'F', 178), +(167388, 'Terri', 1999, 'F', 178), +(167389, 'Christen', 1999, 'F', 177), +(167390, 'Kerri', 1999, 'F', 177), +(167391, 'Maryann', 1999, 'F', 177), +(167392, 'Stevie', 1999, 'F', 177), +(167393, 'Adrian', 1999, 'F', 176), +(167394, 'Cinthia', 1999, 'F', 176), +(167395, 'Iyana', 1999, 'F', 176), +(167396, 'Liberty', 1999, 'F', 176), +(167397, 'Beth', 1999, 'F', 175), +(167398, 'Natalee', 1999, 'F', 175), +(167399, 'Ada', 1999, 'F', 174), +(167400, 'Aryanna', 1999, 'F', 174), +(167401, 'Billie', 1999, 'F', 174), +(167402, 'Isabell', 1999, 'F', 174), +(167403, 'Cheryl', 1999, 'F', 173), +(167404, 'Giana', 1999, 'F', 173), +(167405, 'Maureen', 1999, 'F', 173), +(167406, 'Shantel', 1999, 'F', 173), +(167407, 'Tatiyana', 1999, 'F', 173), +(167408, 'Blake', 1999, 'F', 172), +(167409, 'Demi', 1999, 'F', 172), +(167410, 'Jackeline', 1999, 'F', 172), +(167411, 'Jensen', 1999, 'F', 172), +(167412, 'Belen', 1999, 'F', 171), +(167413, 'Cori', 1999, 'F', 171), +(167414, 'Halley', 1999, 'F', 171), +(167415, 'Jamia', 1999, 'F', 171), +(167416, 'Jessika', 1999, 'F', 171), +(167417, 'Kala', 1999, 'F', 171), +(167418, 'Kelsea', 1999, 'F', 171), +(167419, 'Marian', 1999, 'F', 171), +(167420, 'Reese', 1999, 'F', 171), +(167421, 'Alecia', 1999, 'F', 170), +(167422, 'Elle', 1999, 'F', 170), +(167423, 'Marisela', 1999, 'F', 170), +(167424, 'Ireland', 1999, 'F', 169), +(167425, 'Keanna', 1999, 'F', 169), +(167426, 'Keisha', 1999, 'F', 169), +(167427, 'Kristian', 1999, 'F', 169), +(167428, 'Winter', 1999, 'F', 169), +(167429, 'Amya', 1999, 'F', 168), +(167430, 'Anabel', 1999, 'F', 168), +(167431, 'Danica', 1999, 'F', 168), +(167432, 'Kaylen', 1999, 'F', 168), +(167433, 'Baylie', 1999, 'F', 167), +(167434, 'Laila', 1999, 'F', 167), +(167435, 'Rosario', 1999, 'F', 167), +(167436, 'Shay', 1999, 'F', 167), +(167437, 'Tea', 1999, 'F', 167), +(167438, 'Zion', 1999, 'F', 167), +(167439, 'Angeline', 1999, 'F', 166), +(167440, 'Carrington', 1999, 'F', 166), +(167441, 'Nakia', 1999, 'F', 166), +(167442, 'Natalya', 1999, 'F', 166), +(167443, 'Destinie', 1999, 'F', 165), +(167444, 'Elana', 1999, 'F', 165), +(167445, 'Jailyn', 1999, 'F', 165), +(167446, 'Julisa', 1999, 'F', 165), +(167447, 'Lilliana', 1999, 'F', 165), +(167448, 'Lizet', 1999, 'F', 165), +(167449, 'Mari', 1999, 'F', 165), +(167450, 'Maxine', 1999, 'F', 165), +(167451, 'Mira', 1999, 'F', 165), +(167452, 'Xiomara', 1999, 'F', 165), +(167453, 'Lynn', 1999, 'F', 164), +(167454, 'Makena', 1999, 'F', 164), +(167455, 'Viridiana', 1999, 'F', 164), +(167456, 'Dora', 1999, 'F', 163), +(167457, 'Eboni', 1999, 'F', 163), +(167458, 'Jalynn', 1999, 'F', 163), +(167459, 'Jamya', 1999, 'F', 163), +(167460, 'Lucille', 1999, 'F', 163), +(167461, 'Elexis', 1999, 'F', 162), +(167462, 'Mina', 1999, 'F', 162), +(167463, 'Neha', 1999, 'F', 162), +(167464, 'Pearl', 1999, 'F', 162), +(167465, 'Priya', 1999, 'F', 162), +(167466, 'Britany', 1999, 'F', 161), +(167467, 'Calli', 1999, 'F', 161), +(167468, 'Dania', 1999, 'F', 160), +(167469, 'Ivette', 1999, 'F', 160), +(167470, 'Krysta', 1999, 'F', 160), +(167471, 'Maryam', 1999, 'F', 160), +(167472, 'Mickayla', 1999, 'F', 160), +(167473, 'Sommer', 1999, 'F', 160), +(167474, 'Cherish', 1999, 'F', 159), +(167475, 'Tehya', 1999, 'F', 159), +(167476, 'Areli', 1999, 'F', 158), +(167477, 'Jessenia', 1999, 'F', 158), +(167478, 'Kaylea', 1999, 'F', 158), +(167479, 'Kimberlee', 1999, 'F', 158), +(167480, 'Shelly', 1999, 'F', 158), +(167481, 'Joana', 1999, 'F', 157), +(167482, 'Lidia', 1999, 'F', 157), +(167483, 'Lisbeth', 1999, 'F', 157), +(167484, 'Annemarie', 1999, 'F', 156), +(167485, 'China', 1999, 'F', 156), +(167486, 'Ciarra', 1999, 'F', 156), +(167487, 'Estefany', 1999, 'F', 156), +(167488, 'Kaytlyn', 1999, 'F', 156), +(167489, 'Keyla', 1999, 'F', 156), +(167490, 'Tasia', 1999, 'F', 156), +(167491, 'Adia', 1999, 'F', 155), +(167492, 'Deandra', 1999, 'F', 155), +(167493, 'Domonique', 1999, 'F', 155), +(167494, 'Janna', 1999, 'F', 155), +(167495, 'Kristal', 1999, 'F', 155), +(167496, 'Laken', 1999, 'F', 155), +(167497, 'Shaelyn', 1999, 'F', 155), +(167498, 'Susanna', 1999, 'F', 155), +(167499, 'Alea', 1999, 'F', 154), +(167500, 'Brea', 1999, 'F', 154), +(167501, 'Betsy', 1999, 'F', 153), +(167502, 'Danae', 1999, 'F', 153), +(167503, 'Kia', 1999, 'F', 153), +(167504, 'Melany', 1999, 'F', 153), +(167505, 'Monet', 1999, 'F', 153), +(167506, 'Yulissa', 1999, 'F', 153), +(167507, 'Alliyah', 1999, 'F', 152), +(167508, 'Amaris', 1999, 'F', 152), +(167509, 'Camilla', 1999, 'F', 152), +(167510, 'Jala', 1999, 'F', 152), +(167511, 'Jolie', 1999, 'F', 152), +(167512, 'Malaysia', 1999, 'F', 152), +(167513, 'Alanis', 1999, 'F', 151), +(167514, 'Bernadette', 1999, 'F', 151), +(167515, 'Cailyn', 1999, 'F', 151), +(167516, 'Halee', 1999, 'F', 151), +(167517, 'Lorraine', 1999, 'F', 151), +(167518, 'Sarahi', 1999, 'F', 151), +(167519, 'Christie', 1999, 'F', 150), +(167520, 'Leigh', 1999, 'F', 150), +(167521, 'Libby', 1999, 'F', 150), +(167522, 'Maiya', 1999, 'F', 150), +(167523, 'Brieanna', 1999, 'F', 149), +(167524, 'Jaci', 1999, 'F', 149), +(167525, 'Iman', 1999, 'F', 148), +(167526, 'Leandra', 1999, 'F', 148), +(167527, 'Rosalinda', 1999, 'F', 148), +(167528, 'Alyse', 1999, 'F', 147), +(167529, 'Annabella', 1999, 'F', 147), +(167530, 'Denisse', 1999, 'F', 147), +(167531, 'Desire', 1999, 'F', 147), +(167532, 'Hali', 1999, 'F', 147), +(167533, 'Jaylyn', 1999, 'F', 147), +(167534, 'Jaylynn', 1999, 'F', 147), +(167535, 'Mika', 1999, 'F', 147), +(167536, 'Pauline', 1999, 'F', 147), +(167537, 'Rianna', 1999, 'F', 147), +(167538, 'Stacie', 1999, 'F', 147), +(167539, 'Tonya', 1999, 'F', 147), +(167540, 'Delanie', 1999, 'F', 146), +(167541, 'Elsie', 1999, 'F', 146), +(167542, 'Kaia', 1999, 'F', 146), +(167543, 'Sonja', 1999, 'F', 146), +(167544, 'Daijah', 1999, 'F', 145), +(167545, 'Darcy', 1999, 'F', 145), +(167546, 'Hayleigh', 1999, 'F', 145), +(167547, 'Kai', 1999, 'F', 145), +(167548, 'Leigha', 1999, 'F', 145), +(167549, 'Liza', 1999, 'F', 145), +(167550, 'Georgina', 1999, 'F', 144), +(167551, 'Mahogany', 1999, 'F', 144), +(167552, 'Tyana', 1999, 'F', 144), +(167553, 'Autum', 1999, 'F', 143), +(167554, 'Breeanna', 1999, 'F', 143), +(167555, 'Bryce', 1999, 'F', 143), +(167556, 'Dara', 1999, 'F', 143), +(167557, 'Emerson', 1999, 'F', 143), +(167558, 'Gissel', 1999, 'F', 143), +(167559, 'Jaquelin', 1999, 'F', 143), +(167560, 'Rivka', 1999, 'F', 143), +(167561, 'Sariah', 1999, 'F', 143), +(167562, 'Tiarra', 1999, 'F', 143), +(167563, 'Addie', 1999, 'F', 142), +(167564, 'Ivory', 1999, 'F', 142), +(167565, 'Katheryn', 1999, 'F', 142), +(167566, 'Naya', 1999, 'F', 142), +(167567, 'Rosalie', 1999, 'F', 142), +(167568, 'Corrina', 1999, 'F', 140), +(167569, 'Estefani', 1999, 'F', 140), +(167570, 'Gemma', 1999, 'F', 140), +(167571, 'Harlee', 1999, 'F', 140), +(167572, 'Rowan', 1999, 'F', 140), +(167573, 'Yaritza', 1999, 'F', 140), +(167574, 'Carleigh', 1999, 'F', 139), +(167575, 'Danika', 1999, 'F', 139), +(167576, 'Kierstin', 1999, 'F', 139), +(167577, 'Rhea', 1999, 'F', 139), +(167578, 'Xochitl', 1999, 'F', 139), +(167579, 'Bayleigh', 1999, 'F', 138), +(167580, 'Chase', 1999, 'F', 138), +(167581, 'Colby', 1999, 'F', 138), +(167582, 'Jami', 1999, 'F', 138), +(167583, 'Selene', 1999, 'F', 138), +(167584, 'Valencia', 1999, 'F', 138), +(167585, 'Adrianne', 1999, 'F', 137), +(167586, 'Callista', 1999, 'F', 137), +(167587, 'Demetria', 1999, 'F', 137), +(167588, 'Maira', 1999, 'F', 137), +(167589, 'Mckinley', 1999, 'F', 137), +(167590, 'Yessica', 1999, 'F', 137), +(167591, 'Charlie', 1999, 'F', 136), +(167592, 'Devan', 1999, 'F', 136), +(167593, 'Iyanna', 1999, 'F', 136), +(167594, 'Jesenia', 1999, 'F', 136), +(167595, 'Kathrine', 1999, 'F', 136), +(167596, 'Kristie', 1999, 'F', 136), +(167597, 'Madalynn', 1999, 'F', 136), +(167598, 'Rosemarie', 1999, 'F', 136), +(167599, 'Aidan', 1999, 'F', 135), +(167600, 'Amalia', 1999, 'F', 135), +(167601, 'Bridgett', 1999, 'F', 135), +(167602, 'Jodie', 1999, 'F', 134), +(167603, 'Lucinda', 1999, 'F', 134), +(167604, 'Samira', 1999, 'F', 134), +(167605, 'Siena', 1999, 'F', 134), +(167606, 'Adilene', 1999, 'F', 133), +(167607, 'Jacie', 1999, 'F', 133), +(167608, 'Kim', 1999, 'F', 133), +(167609, 'Mason', 1999, 'F', 133), +(167610, 'Monika', 1999, 'F', 133), +(167611, 'Acacia', 1999, 'F', 132), +(167612, 'Ariella', 1999, 'F', 132), +(167613, 'Christin', 1999, 'F', 132), +(167614, 'Isela', 1999, 'F', 132), +(167615, 'Joann', 1999, 'F', 132), +(167616, 'Lynette', 1999, 'F', 132), +(167617, 'Symone', 1999, 'F', 132), +(167618, 'Anisa', 1999, 'F', 131), +(167619, 'Annalisa', 1999, 'F', 131), +(167620, 'Bree', 1999, 'F', 131), +(167621, 'Cailin', 1999, 'F', 131), +(167622, 'Ivonne', 1999, 'F', 131), +(167623, 'Maren', 1999, 'F', 131), +(167624, 'Moira', 1999, 'F', 131), +(167625, 'Nikole', 1999, 'F', 131), +(167626, 'Shamya', 1999, 'F', 131), +(167627, 'Taelor', 1999, 'F', 131), +(167628, 'Aislinn', 1999, 'F', 130), +(167629, 'Aryana', 1999, 'F', 130), +(167630, 'Cathryn', 1999, 'F', 130), +(167631, 'Erykah', 1999, 'F', 130), +(167632, 'Ilana', 1999, 'F', 130), +(167633, 'Jacquelin', 1999, 'F', 130), +(167634, 'Jaycie', 1999, 'F', 130), +(167635, 'Keyana', 1999, 'F', 130), +(167636, 'Kristyn', 1999, 'F', 130), +(167637, 'Mariel', 1999, 'F', 130), +(167638, 'Santana', 1999, 'F', 130), +(167639, 'Shanya', 1999, 'F', 130), +(167640, 'Shreya', 1999, 'F', 130), +(167641, 'Brandie', 1999, 'F', 129), +(167642, 'Dylan', 1999, 'F', 129), +(167643, 'Jolene', 1999, 'F', 129), +(167644, 'Makaela', 1999, 'F', 129), +(167645, 'Salena', 1999, 'F', 129), +(167646, 'Yahaira', 1999, 'F', 129), +(167647, 'Alannah', 1999, 'F', 128), +(167648, 'Alaysia', 1999, 'F', 128), +(167649, 'Amberly', 1999, 'F', 128), +(167650, 'Dahlia', 1999, 'F', 128), +(167651, 'Daysha', 1999, 'F', 128), +(167652, 'Harlie', 1999, 'F', 128), +(167653, 'Jaimie', 1999, 'F', 128), +(167654, 'Janiya', 1999, 'F', 128), +(167655, 'Keyanna', 1999, 'F', 128), +(167656, 'Kimberley', 1999, 'F', 128), +(167657, 'Shivani', 1999, 'F', 128), +(167658, 'Taniya', 1999, 'F', 128), +(167659, 'Trista', 1999, 'F', 128), +(167660, 'Danyelle', 1999, 'F', 127), +(167661, 'Dymond', 1999, 'F', 127), +(167662, 'Eleni', 1999, 'F', 127), +(167663, 'Johana', 1999, 'F', 127), +(167664, 'Jurnee', 1999, 'F', 127), +(167665, 'Khadijah', 1999, 'F', 127), +(167666, 'Tamya', 1999, 'F', 127), +(167667, 'Tyla', 1999, 'F', 127), +(167668, 'Ashely', 1999, 'F', 126), +(167669, 'Chynna', 1999, 'F', 126), +(167670, 'Davina', 1999, 'F', 126), +(167671, 'Emalee', 1999, 'F', 126), +(167672, 'Franchesca', 1999, 'F', 126), +(167673, 'Frida', 1999, 'F', 126), +(167674, 'Grayson', 1999, 'F', 126), +(167675, 'Jessalyn', 1999, 'F', 126), +(167676, 'Jessi', 1999, 'F', 126), +(167677, 'Stefani', 1999, 'F', 126), +(167678, 'Andie', 1999, 'F', 125), +(167679, 'Deana', 1999, 'F', 125), +(167680, 'Jacinda', 1999, 'F', 125), +(167681, 'Joan', 1999, 'F', 125), +(167682, 'Nathalia', 1999, 'F', 125), +(167683, 'Rena', 1999, 'F', 125), +(167684, 'Shiann', 1999, 'F', 125), +(167685, 'Simran', 1999, 'F', 125), +(167686, 'Kami', 1999, 'F', 124), +(167687, 'Kelsy', 1999, 'F', 124), +(167688, 'Nathaly', 1999, 'F', 124), +(167689, 'Ryley', 1999, 'F', 124), +(167690, 'Sana', 1999, 'F', 124), +(167691, 'Zhane', 1999, 'F', 124), +(167692, 'Alora', 1999, 'F', 123), +(167693, 'Ashli', 1999, 'F', 123), +(167694, 'Catrina', 1999, 'F', 123), +(167695, 'Corrine', 1999, 'F', 123), +(167696, 'Janell', 1999, 'F', 123), +(167697, 'Jayna', 1999, 'F', 123), +(167698, 'Michael', 1999, 'F', 123), +(167699, 'Tionna', 1999, 'F', 123), +(167700, 'Vicky', 1999, 'F', 123), +(167701, 'Bernice', 1999, 'F', 122), +(167702, 'Brittanie', 1999, 'F', 122), +(167703, 'Cherokee', 1999, 'F', 122), +(167704, 'Janay', 1999, 'F', 122), +(167705, 'Janine', 1999, 'F', 122), +(167706, 'Jaylen', 1999, 'F', 122), +(167707, 'Kayleen', 1999, 'F', 122), +(167708, 'Kinley', 1999, 'F', 122), +(167709, 'Lynsey', 1999, 'F', 122), +(167710, 'Roxanna', 1999, 'F', 122), +(167711, 'Alesha', 1999, 'F', 121), +(167712, 'Bailie', 1999, 'F', 121), +(167713, 'Chiara', 1999, 'F', 121), +(167714, 'Ileana', 1999, 'F', 121), +(167715, 'Jalen', 1999, 'F', 121), +(167716, 'Keana', 1999, 'F', 121), +(167717, 'Makenzi', 1999, 'F', 121), +(167718, 'Marlen', 1999, 'F', 121), +(167719, 'Tanner', 1999, 'F', 121), +(167720, 'Taylar', 1999, 'F', 121), +(167721, 'Belinda', 1999, 'F', 120), +(167722, 'Charisma', 1999, 'F', 120), +(167723, 'Jocelynn', 1999, 'F', 120), +(167724, 'Johnna', 1999, 'F', 120), +(167725, 'Keyonna', 1999, 'F', 120), +(167726, 'Latavia', 1999, 'F', 120), +(167727, 'Tytiana', 1999, 'F', 120), +(167728, 'Brigid', 1999, 'F', 119), +(167729, 'Madysen', 1999, 'F', 119), +(167730, 'Tiera', 1999, 'F', 119), +(167731, 'Alli', 1999, 'F', 118), +(167732, 'Anyssa', 1999, 'F', 118), +(167733, 'Jackelyn', 1999, 'F', 118), +(167734, 'Jamila', 1999, 'F', 118), +(167735, 'Jeniffer', 1999, 'F', 118), +(167736, 'Jennah', 1999, 'F', 118), +(167737, 'Joseline', 1999, 'F', 118), +(167738, 'Katya', 1999, 'F', 118), +(167739, 'Klarissa', 1999, 'F', 118), +(167740, 'Lyndsay', 1999, 'F', 118), +(167741, 'Macayla', 1999, 'F', 118), +(167742, 'Mallorie', 1999, 'F', 118), +(167743, 'Natali', 1999, 'F', 118), +(167744, 'Zainab', 1999, 'F', 118), +(167745, 'Abrianna', 1999, 'F', 117), +(167746, 'Francis', 1999, 'F', 117), +(167747, 'Josefina', 1999, 'F', 117), +(167748, 'Laurie', 1999, 'F', 117), +(167749, 'Linnea', 1999, 'F', 117), +(167750, 'Linsey', 1999, 'F', 117), +(167751, 'Louise', 1999, 'F', 117), +(167752, 'Cathy', 1999, 'F', 116), +(167753, 'Doris', 1999, 'F', 116), +(167754, 'Frankie', 1999, 'F', 116), +(167755, 'Hailie', 1999, 'F', 116), +(167756, 'Mackenna', 1999, 'F', 116), +(167757, 'Magaly', 1999, 'F', 116), +(167758, 'Maryjane', 1999, 'F', 116), +(167759, 'Siera', 1999, 'F', 116), +(167760, 'Taliyah', 1999, 'F', 116), +(167761, 'Adelaide', 1999, 'F', 115), +(167762, 'Angeles', 1999, 'F', 115), +(167763, 'Grecia', 1999, 'F', 115), +(167764, 'Heidy', 1999, 'F', 115), +(167765, 'Lesli', 1999, 'F', 115), +(167766, 'Marjorie', 1999, 'F', 115), +(167767, 'Mercedez', 1999, 'F', 115), +(167768, 'Raelynn', 1999, 'F', 115), +(167769, 'Spencer', 1999, 'F', 115), +(167770, 'Treasure', 1999, 'F', 115), +(167771, 'Allysa', 1999, 'F', 114), +(167772, 'Anjelica', 1999, 'F', 114), +(167773, 'Cheyann', 1999, 'F', 114), +(167774, 'Gisel', 1999, 'F', 114), +(167775, 'Jamesha', 1999, 'F', 114), +(167776, 'Janaya', 1999, 'F', 114), +(167777, 'Karah', 1999, 'F', 114), +(167778, 'Laci', 1999, 'F', 114), +(167779, 'Lianna', 1999, 'F', 114), +(167780, 'Pooja', 1999, 'F', 114), +(167781, 'Shaniah', 1999, 'F', 114), +(167782, 'Sherry', 1999, 'F', 114), +(167783, 'Anabelle', 1999, 'F', 113), +(167784, 'Celena', 1999, 'F', 113), +(167785, 'Dalila', 1999, 'F', 113), +(167786, 'Farrah', 1999, 'F', 113), +(167787, 'Janeth', 1999, 'F', 113), +(167788, 'Kaeli', 1999, 'F', 113), +(167789, 'Kylah', 1999, 'F', 113), +(167790, 'Lora', 1999, 'F', 113), +(167791, 'Samaria', 1999, 'F', 113), +(167792, 'Yulisa', 1999, 'F', 113), +(167793, 'Adela', 1999, 'F', 112), +(167794, 'Bayley', 1999, 'F', 112), +(167795, 'Harper', 1999, 'F', 112), +(167796, 'Lexy', 1999, 'F', 112), +(167797, 'Nadya', 1999, 'F', 112), +(167798, 'Phoenix', 1999, 'F', 112), +(167799, 'Ravyn', 1999, 'F', 112), +(167800, 'Suzanna', 1999, 'F', 112), +(167801, 'Edna', 1999, 'F', 111), +(167802, 'Jaelynn', 1999, 'F', 111), +(167803, 'Jalisa', 1999, 'F', 111), +(167804, 'Malika', 1999, 'F', 111), +(167805, 'Marianne', 1999, 'F', 111), +(167806, 'Marin', 1999, 'F', 111), +(167807, 'Tyesha', 1999, 'F', 111), +(167808, 'Zara', 1999, 'F', 111), +(167809, 'Aleena', 1999, 'F', 110), +(167810, 'Cambria', 1999, 'F', 110), +(167811, 'Karis', 1999, 'F', 110), +(167812, 'Marta', 1999, 'F', 110), +(167813, 'Sahara', 1999, 'F', 110), +(167814, 'Shira', 1999, 'F', 110), +(167815, 'Tristin', 1999, 'F', 110), +(167816, 'Valarie', 1999, 'F', 110), +(167817, 'Zariah', 1999, 'F', 110), +(167818, 'Ainsley', 1999, 'F', 109), +(167819, 'Brittni', 1999, 'F', 109), +(167820, 'Emery', 1999, 'F', 109), +(167821, 'Jean', 1999, 'F', 109), +(167822, 'Kya', 1999, 'F', 109), +(167823, 'Kyndall', 1999, 'F', 109), +(167824, 'Luna', 1999, 'F', 109), +(167825, 'Maleah', 1999, 'F', 109), +(167826, 'Patrice', 1999, 'F', 109), +(167827, 'Salina', 1999, 'F', 109), +(167828, 'Shanelle', 1999, 'F', 109), +(167829, 'Aliah', 1999, 'F', 108), +(167830, 'Citlali', 1999, 'F', 108), +(167831, 'Destanie', 1999, 'F', 108), +(167832, 'Ginger', 1999, 'F', 108), +(167833, 'Hanah', 1999, 'F', 108), +(167834, 'Kaiya', 1999, 'F', 108), +(167835, 'Karsyn', 1999, 'F', 108), +(167836, 'Layne', 1999, 'F', 108), +(167837, 'Lupita', 1999, 'F', 108), +(167838, 'Pilar', 1999, 'F', 108), +(167839, 'Rhonda', 1999, 'F', 108), +(167840, 'Rikki', 1999, 'F', 108), +(167841, 'Valery', 1999, 'F', 108), +(167842, 'Alexius', 1999, 'F', 107), +(167843, 'Ayleen', 1999, 'F', 107), +(167844, 'Cecily', 1999, 'F', 107), +(167845, 'Dasha', 1999, 'F', 107), +(167846, 'Keyona', 1999, 'F', 107), +(167847, 'Livia', 1999, 'F', 107), +(167848, 'Rosie', 1999, 'F', 107), +(167849, 'Siobhan', 1999, 'F', 107), +(167850, 'Adelina', 1999, 'F', 106), +(167851, 'Chante', 1999, 'F', 106), +(167852, 'Dionna', 1999, 'F', 106), +(167853, 'Gema', 1999, 'F', 106), +(167854, 'Hilda', 1999, 'F', 106), +(167855, 'Janel', 1999, 'F', 106), +(167856, 'Jayleen', 1999, 'F', 106), +(167857, 'Keyara', 1999, 'F', 106), +(167858, 'Kiya', 1999, 'F', 106), +(167859, 'Louisa', 1999, 'F', 106), +(167860, 'Madelyne', 1999, 'F', 106), +(167861, 'Marguerite', 1999, 'F', 106), +(167862, 'Mekayla', 1999, 'F', 106), +(167863, 'Sapphire', 1999, 'F', 106), +(167864, 'Stormie', 1999, 'F', 106), +(167865, 'Traci', 1999, 'F', 106), +(167866, 'Amie', 1999, 'F', 105), +(167867, 'Annelise', 1999, 'F', 105), +(167868, 'Brisa', 1999, 'F', 105), +(167869, 'Brookelyn', 1999, 'F', 105), +(167870, 'Danna', 1999, 'F', 105), +(167871, 'Dominque', 1999, 'F', 105), +(167872, 'Farah', 1999, 'F', 105), +(167873, 'Haily', 1999, 'F', 105), +(167874, 'Jacy', 1999, 'F', 105), +(167875, 'Karson', 1999, 'F', 105), +(167876, 'Malorie', 1999, 'F', 105), +(167877, 'Meranda', 1999, 'F', 105), +(167878, 'Mona', 1999, 'F', 105), +(167879, 'Rayven', 1999, 'F', 105), +(167880, 'Ricki', 1999, 'F', 105), +(167881, 'Tierney', 1999, 'F', 105), +(167882, 'Andria', 1999, 'F', 104), +(167883, 'Jamiya', 1999, 'F', 104), +(167884, 'Kalei', 1999, 'F', 104), +(167885, 'Kalynn', 1999, 'F', 104), +(167886, 'Kirstyn', 1999, 'F', 104), +(167887, 'Whitley', 1999, 'F', 104), +(167888, 'Xena', 1999, 'F', 104), +(167889, 'Yareli', 1999, 'F', 104), +(167890, 'Adina', 1999, 'F', 103), +(167891, 'Averi', 1999, 'F', 103), +(167892, 'Bertha', 1999, 'F', 103), +(167893, 'Cami', 1999, 'F', 103), +(167894, 'Jazzmine', 1999, 'F', 103), +(167895, 'Karolina', 1999, 'F', 103), +(167896, 'Leia', 1999, 'F', 103), +(167897, 'Mikaila', 1999, 'F', 103), +(167898, 'Myia', 1999, 'F', 103), +(167899, 'Oriana', 1999, 'F', 103), +(167900, 'Ryanne', 1999, 'F', 103), +(167901, 'Sheyenne', 1999, 'F', 103), +(167902, 'Sloane', 1999, 'F', 103), +(167903, 'Tamar', 1999, 'F', 103), +(167904, 'Therese', 1999, 'F', 103), +(167905, 'Amethyst', 1999, 'F', 102), +(167906, 'Aysia', 1999, 'F', 102), +(167907, 'Brynna', 1999, 'F', 102), +(167908, 'Giavanna', 1999, 'F', 102), +(167909, 'Loretta', 1999, 'F', 102), +(167910, 'Marion', 1999, 'F', 102), +(167911, 'Nohely', 1999, 'F', 102), +(167912, 'Penelope', 1999, 'F', 102), +(167913, 'Racquel', 1999, 'F', 102), +(167914, 'Rileigh', 1999, 'F', 102), +(167915, 'Tayah', 1999, 'F', 102), +(167916, 'Tricia', 1999, 'F', 102), +(167917, 'Ashlin', 1999, 'F', 101), +(167918, 'Holland', 1999, 'F', 101), +(167919, 'Jorden', 1999, 'F', 101), +(167920, 'Lainey', 1999, 'F', 101), +(167921, 'Najah', 1999, 'F', 101), +(167922, 'Rubi', 1999, 'F', 101), +(167923, 'Yazmine', 1999, 'F', 101), +(167924, 'Bethanie', 1999, 'F', 100), +(167925, 'Brynne', 1999, 'F', 100), +(167926, 'Chantelle', 1999, 'F', 100), +(167927, 'Jazzmin', 1999, 'F', 100), +(167928, 'Jewell', 1999, 'F', 100), +(167929, 'Juliann', 1999, 'F', 100), +(167930, 'Kendyl', 1999, 'F', 100), +(167931, 'Kiah', 1999, 'F', 100), +(167932, 'Kyanna', 1999, 'F', 100), +(167933, 'Raelyn', 1999, 'F', 100), +(167934, 'Renae', 1999, 'F', 100), +(167935, 'Selah', 1999, 'F', 100), +(167936, 'Tracey', 1999, 'F', 100), +(167937, 'Jacob', 1999, 'M', 35344), +(167938, 'Michael', 1999, 'M', 33905), +(167939, 'Matthew', 1999, 'M', 30414), +(167940, 'Joshua', 1999, 'M', 27251), +(167941, 'Nicholas', 1999, 'M', 25635), +(167942, 'Christopher', 1999, 'M', 25601), +(167943, 'Andrew', 1999, 'M', 23847), +(167944, 'Joseph', 1999, 'M', 23203), +(167945, 'Daniel', 1999, 'M', 22671), +(167946, 'Tyler', 1999, 'M', 22663), +(167947, 'Brandon', 1999, 'M', 21598), +(167948, 'Ryan', 1999, 'M', 21008), +(167949, 'Austin', 1999, 'M', 20766), +(167950, 'William', 1999, 'M', 20708), +(167951, 'John', 1999, 'M', 20338), +(167952, 'David', 1999, 'M', 20318), +(167953, 'Zachary', 1999, 'M', 19979), +(167954, 'Anthony', 1999, 'M', 19469), +(167955, 'James', 1999, 'M', 18550), +(167956, 'Justin', 1999, 'M', 18273), +(167957, 'Alexander', 1999, 'M', 17412), +(167958, 'Jonathan', 1999, 'M', 17055), +(167959, 'Dylan', 1999, 'M', 15975), +(167960, 'Noah', 1999, 'M', 14915), +(167961, 'Christian', 1999, 'M', 14776), +(167962, 'Robert', 1999, 'M', 14535), +(167963, 'Samuel', 1999, 'M', 14021), +(167964, 'Kyle', 1999, 'M', 13768), +(167965, 'Benjamin', 1999, 'M', 13657), +(167966, 'Jordan', 1999, 'M', 13048), +(167967, 'Thomas', 1999, 'M', 12790), +(167968, 'Nathan', 1999, 'M', 12532), +(167969, 'Cameron', 1999, 'M', 12433), +(167970, 'Kevin', 1999, 'M', 12251), +(167971, 'Jose', 1999, 'M', 12146), +(167972, 'Hunter', 1999, 'M', 11485), +(167973, 'Ethan', 1999, 'M', 11439), +(167974, 'Aaron', 1999, 'M', 9851), +(167975, 'Eric', 1999, 'M', 9378), +(167976, 'Jason', 1999, 'M', 9362), +(167977, 'Caleb', 1999, 'M', 9277), +(167978, 'Logan', 1999, 'M', 9135), +(167979, 'Brian', 1999, 'M', 8805), +(167980, 'Adam', 1999, 'M', 8219), +(167981, 'Cody', 1999, 'M', 7860), +(167982, 'Juan', 1999, 'M', 7796), +(167983, 'Steven', 1999, 'M', 7687), +(167984, 'Connor', 1999, 'M', 7596), +(167985, 'Timothy', 1999, 'M', 7589), +(167986, 'Charles', 1999, 'M', 7524), +(167987, 'Isaiah', 1999, 'M', 7498), +(167988, 'Jack', 1999, 'M', 7383), +(167989, 'Gabriel', 1999, 'M', 7368), +(167990, 'Jared', 1999, 'M', 7275), +(167991, 'Luis', 1999, 'M', 7205), +(167992, 'Sean', 1999, 'M', 7203), +(167993, 'Evan', 1999, 'M', 6849), +(167994, 'Alex', 1999, 'M', 6826), +(167995, 'Carlos', 1999, 'M', 6661), +(167996, 'Elijah', 1999, 'M', 6594), +(167997, 'Richard', 1999, 'M', 6499), +(167998, 'Nathaniel', 1999, 'M', 6462), +(167999, 'Patrick', 1999, 'M', 6444), +(168000, 'Isaac', 1999, 'M', 6400), +(168001, 'Seth', 1999, 'M', 6302), +(168002, 'Trevor', 1999, 'M', 6253), +(168003, 'Luke', 1999, 'M', 6131), +(168004, 'Devin', 1999, 'M', 5968), +(168005, 'Mark', 1999, 'M', 5605), +(168006, 'Jesus', 1999, 'M', 5565), +(168007, 'Ian', 1999, 'M', 5451), +(168008, 'Mason', 1999, 'M', 5451), +(168009, 'Angel', 1999, 'M', 5400), +(168010, 'Bryan', 1999, 'M', 5391), +(168011, 'Cole', 1999, 'M', 5315), +(168012, 'Chase', 1999, 'M', 5221), +(168013, 'Dakota', 1999, 'M', 5092), +(168014, 'Garrett', 1999, 'M', 5075), +(168015, 'Adrian', 1999, 'M', 5066), +(168016, 'Antonio', 1999, 'M', 5027), +(168017, 'Jeremy', 1999, 'M', 5012), +(168018, 'Jesse', 1999, 'M', 5000), +(168019, 'Jackson', 1999, 'M', 4994), +(168020, 'Blake', 1999, 'M', 4808), +(168021, 'Dalton', 1999, 'M', 4541), +(168022, 'Stephen', 1999, 'M', 4537), +(168023, 'Tanner', 1999, 'M', 4521), +(168024, 'Alejandro', 1999, 'M', 4318), +(168025, 'Kenneth', 1999, 'M', 4285), +(168026, 'Lucas', 1999, 'M', 4219), +(168027, 'Miguel', 1999, 'M', 4202), +(168028, 'Spencer', 1999, 'M', 4192), +(168029, 'Bryce', 1999, 'M', 4148), +(168030, 'Victor', 1999, 'M', 4015), +(168031, 'Paul', 1999, 'M', 4014), +(168032, 'Brendan', 1999, 'M', 3994), +(168033, 'Jake', 1999, 'M', 3931), +(168034, 'Marcus', 1999, 'M', 3865), +(168035, 'Tristan', 1999, 'M', 3841), +(168036, 'Jeffrey', 1999, 'M', 3814), +(168037, 'Gavin', 1999, 'M', 3658), +(168038, 'Travis', 1999, 'M', 3608), +(168039, 'Edward', 1999, 'M', 3590), +(168040, 'Bradley', 1999, 'M', 3575), +(168041, 'Peter', 1999, 'M', 3434), +(168042, 'Maxwell', 1999, 'M', 3338), +(168043, 'Jorge', 1999, 'M', 3307), +(168044, 'Jeremiah', 1999, 'M', 3303), +(168045, 'Colton', 1999, 'M', 3287), +(168046, 'Shane', 1999, 'M', 3246), +(168047, 'Mitchell', 1999, 'M', 3216), +(168048, 'Julian', 1999, 'M', 3215), +(168049, 'Xavier', 1999, 'M', 3189), +(168050, 'Derek', 1999, 'M', 3188), +(168051, 'Joel', 1999, 'M', 3185), +(168052, 'Oscar', 1999, 'M', 3125), +(168053, 'Shawn', 1999, 'M', 3098), +(168054, 'Dominic', 1999, 'M', 3097), +(168055, 'Colin', 1999, 'M', 3081), +(168056, 'Taylor', 1999, 'M', 3070), +(168057, 'Vincent', 1999, 'M', 3066), +(168058, 'Gregory', 1999, 'M', 3044), +(168059, 'George', 1999, 'M', 3041), +(168060, 'Parker', 1999, 'M', 3011), +(168061, 'Devon', 1999, 'M', 2999), +(168062, 'Ricardo', 1999, 'M', 2986), +(168063, 'Riley', 1999, 'M', 2970), +(168064, 'Grant', 1999, 'M', 2938), +(168065, 'Collin', 1999, 'M', 2918), +(168066, 'Henry', 1999, 'M', 2913), +(168067, 'Wyatt', 1999, 'M', 2894), +(168068, 'Alec', 1999, 'M', 2891), +(168069, 'Dustin', 1999, 'M', 2843), +(168070, 'Francisco', 1999, 'M', 2831), +(168071, 'Corey', 1999, 'M', 2827), +(168072, 'Dawson', 1999, 'M', 2802), +(168073, 'Brett', 1999, 'M', 2773), +(168074, 'Nicolas', 1999, 'M', 2761), +(168075, 'Erik', 1999, 'M', 2722), +(168076, 'Scott', 1999, 'M', 2720), +(168077, 'Liam', 1999, 'M', 2707), +(168078, 'Dillon', 1999, 'M', 2682), +(168079, 'Omar', 1999, 'M', 2670), +(168080, 'Raymond', 1999, 'M', 2639), +(168081, 'Eduardo', 1999, 'M', 2628), +(168082, 'Johnathan', 1999, 'M', 2519), +(168083, 'Alexis', 1999, 'M', 2434), +(168084, 'Ivan', 1999, 'M', 2417), +(168085, 'Diego', 1999, 'M', 2416), +(168086, 'Hayden', 1999, 'M', 2414), +(168087, 'Chandler', 1999, 'M', 2394), +(168088, 'Sebastian', 1999, 'M', 2376), +(168089, 'Owen', 1999, 'M', 2372), +(168090, 'Andres', 1999, 'M', 2370), +(168091, 'Manuel', 1999, 'M', 2352), +(168092, 'Carson', 1999, 'M', 2347), +(168093, 'Clayton', 1999, 'M', 2343), +(168094, 'Cristian', 1999, 'M', 2340), +(168095, 'Kaleb', 1999, 'M', 2332), +(168096, 'Javier', 1999, 'M', 2316), +(168097, 'Max', 1999, 'M', 2298), +(168098, 'Preston', 1999, 'M', 2288), +(168099, 'Mario', 1999, 'M', 2287), +(168100, 'Alan', 1999, 'M', 2248), +(168101, 'Malik', 1999, 'M', 2245), +(168102, 'Aidan', 1999, 'M', 2213), +(168103, 'Bailey', 1999, 'M', 2208), +(168104, 'Wesley', 1999, 'M', 2207), +(168105, 'Fernando', 1999, 'M', 2175), +(168106, 'Levi', 1999, 'M', 2154), +(168107, 'Casey', 1999, 'M', 2043), +(168108, 'Jalen', 1999, 'M', 2037), +(168109, 'Edgar', 1999, 'M', 2036), +(168110, 'Martin', 1999, 'M', 2036), +(168111, 'Drew', 1999, 'M', 2009), +(168112, 'Sergio', 1999, 'M', 1985), +(168113, 'Roberto', 1999, 'M', 1958), +(168114, 'Gage', 1999, 'M', 1955), +(168115, 'Carter', 1999, 'M', 1943), +(168116, 'Trenton', 1999, 'M', 1943), +(168117, 'Cesar', 1999, 'M', 1933), +(168118, 'Harrison', 1999, 'M', 1925), +(168119, 'Hector', 1999, 'M', 1913), +(168120, 'Brady', 1999, 'M', 1887), +(168121, 'Conner', 1999, 'M', 1882), +(168122, 'Ronald', 1999, 'M', 1870), +(168123, 'Frank', 1999, 'M', 1854), +(168124, 'Phillip', 1999, 'M', 1817), +(168125, 'Trey', 1999, 'M', 1798), +(168126, 'Andre', 1999, 'M', 1781), +(168127, 'Marco', 1999, 'M', 1770), +(168128, 'Donald', 1999, 'M', 1747), +(168129, 'Erick', 1999, 'M', 1741), +(168130, 'Josiah', 1999, 'M', 1740), +(168131, 'Micah', 1999, 'M', 1739), +(168132, 'Landon', 1999, 'M', 1715), +(168133, 'Jonah', 1999, 'M', 1709), +(168134, 'Darius', 1999, 'M', 1703), +(168135, 'Cory', 1999, 'M', 1702), +(168136, 'Jakob', 1999, 'M', 1691), +(168137, 'Tyrese', 1999, 'M', 1691), +(168138, 'Pedro', 1999, 'M', 1690), +(168139, 'Jaden', 1999, 'M', 1688), +(168140, 'Edwin', 1999, 'M', 1675), +(168141, 'Troy', 1999, 'M', 1672), +(168142, 'Keith', 1999, 'M', 1662), +(168143, 'Jonathon', 1999, 'M', 1646), +(168144, 'Braden', 1999, 'M', 1643), +(168145, 'Ruben', 1999, 'M', 1637), +(168146, 'Donovan', 1999, 'M', 1632), +(168147, 'Nolan', 1999, 'M', 1623), +(168148, 'Calvin', 1999, 'M', 1619), +(168149, 'Derrick', 1999, 'M', 1612), +(168150, 'Abraham', 1999, 'M', 1586), +(168151, 'Chad', 1999, 'M', 1584), +(168152, 'Emmanuel', 1999, 'M', 1581), +(168153, 'Gerardo', 1999, 'M', 1568), +(168154, 'Andy', 1999, 'M', 1562), +(168155, 'Griffin', 1999, 'M', 1545), +(168156, 'Damian', 1999, 'M', 1540), +(168157, 'Giovanni', 1999, 'M', 1531), +(168158, 'Brayden', 1999, 'M', 1523), +(168159, 'Chance', 1999, 'M', 1510), +(168160, 'Colby', 1999, 'M', 1507), +(168161, 'Cade', 1999, 'M', 1498), +(168162, 'Johnny', 1999, 'M', 1489), +(168163, 'Mathew', 1999, 'M', 1471), +(168164, 'Raul', 1999, 'M', 1469), +(168165, 'Rafael', 1999, 'M', 1438), +(168166, 'Enrique', 1999, 'M', 1436), +(168167, 'Skyler', 1999, 'M', 1427), +(168168, 'Dante', 1999, 'M', 1415), +(168169, 'Armando', 1999, 'M', 1413), +(168170, 'Peyton', 1999, 'M', 1381), +(168171, 'Marc', 1999, 'M', 1370), +(168172, 'Avery', 1999, 'M', 1368), +(168173, 'Trent', 1999, 'M', 1367), +(168174, 'Zackary', 1999, 'M', 1359), +(168175, 'Dennis', 1999, 'M', 1336), +(168176, 'Philip', 1999, 'M', 1325), +(168177, 'Jaime', 1999, 'M', 1322), +(168178, 'Brenden', 1999, 'M', 1316), +(168179, 'Marcos', 1999, 'M', 1316), +(168180, 'Allen', 1999, 'M', 1311), +(168181, 'Josue', 1999, 'M', 1310), +(168182, 'Jerry', 1999, 'M', 1299), +(168183, 'Douglas', 1999, 'M', 1288), +(168184, 'Curtis', 1999, 'M', 1269), +(168185, 'Israel', 1999, 'M', 1268), +(168186, 'Larry', 1999, 'M', 1255), +(168187, 'Gary', 1999, 'M', 1252), +(168188, 'Julio', 1999, 'M', 1242), +(168189, 'Zane', 1999, 'M', 1241), +(168190, 'Jayden', 1999, 'M', 1231), +(168191, 'Leonardo', 1999, 'M', 1231), +(168192, 'Ty', 1999, 'M', 1223), +(168193, 'Elias', 1999, 'M', 1219), +(168194, 'Zachery', 1999, 'M', 1217), +(168195, 'Kameron', 1999, 'M', 1205), +(168196, 'Alberto', 1999, 'M', 1198), +(168197, 'Cooper', 1999, 'M', 1190), +(168198, 'Louis', 1999, 'M', 1141), +(168199, 'Randy', 1999, 'M', 1139), +(168200, 'Nickolas', 1999, 'M', 1137), +(168201, 'Dominick', 1999, 'M', 1133), +(168202, 'Tony', 1999, 'M', 1133), +(168203, 'Simon', 1999, 'M', 1122), +(168204, 'Damien', 1999, 'M', 1119), +(168205, 'Albert', 1999, 'M', 1115), +(168206, 'Brennan', 1999, 'M', 1106), +(168207, 'Ricky', 1999, 'M', 1098), +(168208, 'Jimmy', 1999, 'M', 1097), +(168209, 'Brock', 1999, 'M', 1092), +(168210, 'Zion', 1999, 'M', 1070), +(168211, 'Danny', 1999, 'M', 1068), +(168212, 'Bryson', 1999, 'M', 1066), +(168213, 'Ashton', 1999, 'M', 1065), +(168214, 'Brent', 1999, 'M', 1055), +(168215, 'Micheal', 1999, 'M', 1055), +(168216, 'Miles', 1999, 'M', 1053), +(168217, 'Drake', 1999, 'M', 1049), +(168218, 'Eli', 1999, 'M', 1049), +(168219, 'Darren', 1999, 'M', 1029), +(168220, 'Alfredo', 1999, 'M', 1025), +(168221, 'Damon', 1999, 'M', 1020), +(168222, 'Arturo', 1999, 'M', 1015), +(168223, 'Lance', 1999, 'M', 1003), +(168224, 'Caden', 1999, 'M', 1002), +(168225, 'Fabian', 1999, 'M', 998), +(168226, 'Carl', 1999, 'M', 996), +(168227, 'Quinn', 1999, 'M', 990), +(168228, 'Corbin', 1999, 'M', 981), +(168229, 'Jaylen', 1999, 'M', 979), +(168230, 'Kristopher', 1999, 'M', 975), +(168231, 'Tucker', 1999, 'M', 971), +(168232, 'Lane', 1999, 'M', 968), +(168233, 'Joe', 1999, 'M', 967), +(168234, 'Kyler', 1999, 'M', 959), +(168235, 'Tommy', 1999, 'M', 959), +(168236, 'Jarrett', 1999, 'M', 956), +(168237, 'Keegan', 1999, 'M', 956), +(168238, 'Ramon', 1999, 'M', 954), +(168239, 'Dallas', 1999, 'M', 950), +(168240, 'Lorenzo', 1999, 'M', 946), +(168241, 'Payton', 1999, 'M', 945), +(168242, 'Angelo', 1999, 'M', 937), +(168243, 'Pablo', 1999, 'M', 937), +(168244, 'Gustavo', 1999, 'M', 935), +(168245, 'Jeffery', 1999, 'M', 922), +(168246, 'Branden', 1999, 'M', 918), +(168247, 'Walter', 1999, 'M', 918), +(168248, 'Lawrence', 1999, 'M', 917), +(168249, 'Myles', 1999, 'M', 916), +(168250, 'Theodore', 1999, 'M', 912), +(168251, 'Terry', 1999, 'M', 905), +(168252, 'Kaden', 1999, 'M', 898), +(168253, 'Morgan', 1999, 'M', 897), +(168254, 'Saul', 1999, 'M', 891), +(168255, 'Nikolas', 1999, 'M', 885), +(168256, 'Arthur', 1999, 'M', 873), +(168257, 'Rodney', 1999, 'M', 868), +(168258, 'Quentin', 1999, 'M', 864), +(168259, 'Kobe', 1999, 'M', 860), +(168260, 'Deandre', 1999, 'M', 858), +(168261, 'Jay', 1999, 'M', 854), +(168262, 'Russell', 1999, 'M', 854), +(168263, 'Craig', 1999, 'M', 853), +(168264, 'Ernesto', 1999, 'M', 835), +(168265, 'Brendon', 1999, 'M', 823), +(168266, 'Emanuel', 1999, 'M', 822), +(168267, 'Braxton', 1999, 'M', 820), +(168268, 'Bryant', 1999, 'M', 817), +(168269, 'Grayson', 1999, 'M', 811), +(168270, 'Tristen', 1999, 'M', 804), +(168271, 'Jamal', 1999, 'M', 797), +(168272, 'Jace', 1999, 'M', 788), +(168273, 'Ismael', 1999, 'M', 785), +(168274, 'Roman', 1999, 'M', 784), +(168275, 'Eddie', 1999, 'M', 782), +(168276, 'Oliver', 1999, 'M', 782), +(168277, 'Isiah', 1999, 'M', 781), +(168278, 'Trevon', 1999, 'M', 781), +(168279, 'Moises', 1999, 'M', 779), +(168280, 'Jarod', 1999, 'M', 778), +(168281, 'Jon', 1999, 'M', 770), +(168282, 'Emilio', 1999, 'M', 769), +(168283, 'Salvador', 1999, 'M', 769), +(168284, 'Brody', 1999, 'M', 763), +(168285, 'Marvin', 1999, 'M', 761), +(168286, 'Billy', 1999, 'M', 748), +(168287, 'Desmond', 1999, 'M', 742), +(168288, 'Zackery', 1999, 'M', 742), +(168289, 'Marshall', 1999, 'M', 738), +(168290, 'Keaton', 1999, 'M', 737), +(168291, 'Tyson', 1999, 'M', 736), +(168292, 'Maurice', 1999, 'M', 734), +(168293, 'Kody', 1999, 'M', 732), +(168294, 'Roger', 1999, 'M', 730), +(168295, 'Johnathon', 1999, 'M', 729), +(168296, 'Bobby', 1999, 'M', 728), +(168297, 'Rodrigo', 1999, 'M', 723), +(168298, 'Lukas', 1999, 'M', 721), +(168299, 'Jayson', 1999, 'M', 719), +(168300, 'Conor', 1999, 'M', 718), +(168301, 'Dean', 1999, 'M', 716), +(168302, 'Malcolm', 1999, 'M', 712), +(168303, 'Abel', 1999, 'M', 711), +(168304, 'Esteban', 1999, 'M', 710), +(168305, 'Terrell', 1999, 'M', 705), +(168306, 'Davis', 1999, 'M', 704), +(168307, 'Malachi', 1999, 'M', 704), +(168308, 'Khalil', 1999, 'M', 700), +(168309, 'Quinton', 1999, 'M', 695), +(168310, 'Skylar', 1999, 'M', 694), +(168311, 'Ezekiel', 1999, 'M', 689), +(168312, 'Terrance', 1999, 'M', 688), +(168313, 'Kelvin', 1999, 'M', 687), +(168314, 'Shaun', 1999, 'M', 687), +(168315, 'Gerald', 1999, 'M', 684), +(168316, 'Camron', 1999, 'M', 683), +(168317, 'Reginald', 1999, 'M', 682), +(168318, 'Orlando', 1999, 'M', 679), +(168319, 'Zachariah', 1999, 'M', 674), +(168320, 'Frederick', 1999, 'M', 671), +(168321, 'Willie', 1999, 'M', 668), +(168322, 'Ross', 1999, 'M', 667), +(168323, 'Felix', 1999, 'M', 664), +(168324, 'Guillermo', 1999, 'M', 664), +(168325, 'Justice', 1999, 'M', 663), +(168326, 'Steve', 1999, 'M', 660), +(168327, 'Demetrius', 1999, 'M', 649), +(168328, 'Ali', 1999, 'M', 648), +(168329, 'Roy', 1999, 'M', 637), +(168330, 'Todd', 1999, 'M', 628), +(168331, 'Kendall', 1999, 'M', 626), +(168332, 'Chris', 1999, 'M', 622), +(168333, 'Randall', 1999, 'M', 619), +(168334, 'Marquis', 1999, 'M', 616), +(168335, 'Weston', 1999, 'M', 614), +(168336, 'Rene', 1999, 'M', 610), +(168337, 'Amir', 1999, 'M', 608), +(168338, 'Clay', 1999, 'M', 603), +(168339, 'Santiago', 1999, 'M', 600), +(168340, 'Nelson', 1999, 'M', 599), +(168341, 'Graham', 1999, 'M', 598), +(168342, 'Hugo', 1999, 'M', 597), +(168343, 'Bruce', 1999, 'M', 588), +(168344, 'Jessie', 1999, 'M', 581), +(168345, 'Mateo', 1999, 'M', 577), +(168346, 'Duncan', 1999, 'M', 576), +(168347, 'Franklin', 1999, 'M', 573), +(168348, 'Javon', 1999, 'M', 571), +(168349, 'Rodolfo', 1999, 'M', 571), +(168350, 'Jaquan', 1999, 'M', 567), +(168351, 'Kristian', 1999, 'M', 566), +(168352, 'Darian', 1999, 'M', 564), +(168353, 'Nathanael', 1999, 'M', 564), +(168354, 'Reece', 1999, 'M', 564), +(168355, 'Ahmad', 1999, 'M', 562), +(168356, 'Byron', 1999, 'M', 562), +(168357, 'Noel', 1999, 'M', 562), +(168358, 'Jarred', 1999, 'M', 561), +(168359, 'Reed', 1999, 'M', 558), +(168360, 'Tyrone', 1999, 'M', 556), +(168361, 'Kendrick', 1999, 'M', 554), +(168362, 'Charlie', 1999, 'M', 548), +(168363, 'Melvin', 1999, 'M', 547), +(168364, 'Dane', 1999, 'M', 545), +(168365, 'Darrell', 1999, 'M', 545), +(168366, 'Francis', 1999, 'M', 542), +(168367, 'Holden', 1999, 'M', 542), +(168368, 'Kade', 1999, 'M', 542), +(168369, 'Jermaine', 1999, 'M', 537), +(168370, 'Walker', 1999, 'M', 534), +(168371, 'Tyree', 1999, 'M', 531), +(168372, 'Jarrod', 1999, 'M', 528), +(168373, 'Garret', 1999, 'M', 527), +(168374, 'Camden', 1999, 'M', 526), +(168375, 'Jordon', 1999, 'M', 525), +(168376, 'Devan', 1999, 'M', 524), +(168377, 'Leo', 1999, 'M', 523), +(168378, 'Solomon', 1999, 'M', 520), +(168379, 'Jamie', 1999, 'M', 519), +(168380, 'Allan', 1999, 'M', 513), +(168381, 'Alvin', 1999, 'M', 513), +(168382, 'Jerome', 1999, 'M', 513), +(168383, 'Kenny', 1999, 'M', 513), +(168384, 'Reid', 1999, 'M', 513), +(168385, 'Lee', 1999, 'M', 510), +(168386, 'Damion', 1999, 'M', 509), +(168387, 'Stanley', 1999, 'M', 508), +(168388, 'Tyrell', 1999, 'M', 508), +(168389, 'Issac', 1999, 'M', 506), +(168390, 'Jaylon', 1999, 'M', 505), +(168391, 'Wayne', 1999, 'M', 505), +(168392, 'Felipe', 1999, 'M', 501), +(168393, 'Triston', 1999, 'M', 501), +(168394, 'Reese', 1999, 'M', 500), +(168395, 'Sam', 1999, 'M', 497), +(168396, 'Terrence', 1999, 'M', 497), +(168397, 'Harley', 1999, 'M', 494), +(168398, 'Wade', 1999, 'M', 494), +(168399, 'Tate', 1999, 'M', 492), +(168400, 'Alfonso', 1999, 'M', 490), +(168401, 'Davion', 1999, 'M', 489), +(168402, 'Neil', 1999, 'M', 488), +(168403, 'Ronnie', 1999, 'M', 486), +(168404, 'Warren', 1999, 'M', 486), +(168405, 'Devonte', 1999, 'M', 485), +(168406, 'Gilberto', 1999, 'M', 485), +(168407, 'Mauricio', 1999, 'M', 485), +(168408, 'Eugene', 1999, 'M', 483), +(168409, 'Aiden', 1999, 'M', 479), +(168410, 'Leonard', 1999, 'M', 478), +(168411, 'Ramiro', 1999, 'M', 477), +(168412, 'Cedric', 1999, 'M', 476), +(168413, 'Beau', 1999, 'M', 469), +(168414, 'Deven', 1999, 'M', 464), +(168415, 'Kai', 1999, 'M', 464), +(168416, 'Sawyer', 1999, 'M', 463), +(168417, 'Leon', 1999, 'M', 461), +(168418, 'Harry', 1999, 'M', 460), +(168419, 'Uriel', 1999, 'M', 459), +(168420, 'Davon', 1999, 'M', 457), +(168421, 'Ezra', 1999, 'M', 455), +(168422, 'Moses', 1999, 'M', 455), +(168423, 'Adan', 1999, 'M', 454), +(168424, 'Noe', 1999, 'M', 454), +(168425, 'Tomas', 1999, 'M', 452), +(168426, 'Joey', 1999, 'M', 449), +(168427, 'Keenan', 1999, 'M', 446), +(168428, 'Deshawn', 1999, 'M', 445), +(168429, 'Mohammed', 1999, 'M', 445), +(168430, 'Rogelio', 1999, 'M', 445), +(168431, 'Dale', 1999, 'M', 441), +(168432, 'Marlon', 1999, 'M', 437), +(168433, 'Bennett', 1999, 'M', 436), +(168434, 'Maximilian', 1999, 'M', 433), +(168435, 'Julius', 1999, 'M', 431), +(168436, 'Mohamed', 1999, 'M', 431), +(168437, 'Elliot', 1999, 'M', 428), +(168438, 'Ulises', 1999, 'M', 427), +(168439, 'Mohammad', 1999, 'M', 426), +(168440, 'Ariel', 1999, 'M', 422), +(168441, 'Will', 1999, 'M', 422), +(168442, 'Dorian', 1999, 'M', 420), +(168443, 'Jonas', 1999, 'M', 420), +(168444, 'Gilbert', 1999, 'M', 419), +(168445, 'Quincy', 1999, 'M', 419), +(168446, 'Addison', 1999, 'M', 418), +(168447, 'Jaylin', 1999, 'M', 417), +(168448, 'Tristin', 1999, 'M', 417), +(168449, 'Ray', 1999, 'M', 414), +(168450, 'Harold', 1999, 'M', 413), +(168451, 'Lewis', 1999, 'M', 412), +(168452, 'Marquise', 1999, 'M', 412), +(168453, 'Donte', 1999, 'M', 411), +(168454, 'Alonzo', 1999, 'M', 410), +(168455, 'Dominique', 1999, 'M', 409), +(168456, 'Kolby', 1999, 'M', 407), +(168457, 'Rudy', 1999, 'M', 407), +(168458, 'Braeden', 1999, 'M', 406), +(168459, 'Wilson', 1999, 'M', 405), +(168460, 'Ahmed', 1999, 'M', 403), +(168461, 'Blaine', 1999, 'M', 401), +(168462, 'Colten', 1999, 'M', 399), +(168463, 'Glenn', 1999, 'M', 397), +(168464, 'Brice', 1999, 'M', 392), +(168465, 'Efrain', 1999, 'M', 392), +(168466, 'Sage', 1999, 'M', 392), +(168467, 'Sterling', 1999, 'M', 392), +(168468, 'Darryl', 1999, 'M', 391), +(168469, 'Karl', 1999, 'M', 389), +(168470, 'Trace', 1999, 'M', 389), +(168471, 'Ernest', 1999, 'M', 387), +(168472, 'Darien', 1999, 'M', 385), +(168473, 'Ben', 1999, 'M', 384), +(168474, 'Elliott', 1999, 'M', 382), +(168475, 'Alvaro', 1999, 'M', 378), +(168476, 'Joaquin', 1999, 'M', 377), +(168477, 'Orion', 1999, 'M', 377), +(168478, 'Osvaldo', 1999, 'M', 375), +(168479, 'Tylor', 1999, 'M', 374), +(168480, 'Leonel', 1999, 'M', 373), +(168481, 'Jaxon', 1999, 'M', 371), +(168482, 'Nathanial', 1999, 'M', 371), +(168483, 'Gunnar', 1999, 'M', 370), +(168484, 'Adolfo', 1999, 'M', 366), +(168485, 'Daquan', 1999, 'M', 366), +(168486, 'Rolando', 1999, 'M', 365), +(168487, 'Dwayne', 1999, 'M', 364), +(168488, 'Cyrus', 1999, 'M', 363), +(168489, 'Sheldon', 1999, 'M', 363), +(168490, 'Stefan', 1999, 'M', 362), +(168491, 'Elvis', 1999, 'M', 361), +(168492, 'Nigel', 1999, 'M', 361), +(168493, 'Humberto', 1999, 'M', 360), +(168494, 'Infant', 1999, 'M', 359), +(168495, 'Koby', 1999, 'M', 358), +(168496, 'River', 1999, 'M', 358), +(168497, 'Dayton', 1999, 'M', 356), +(168498, 'Ezequiel', 1999, 'M', 356), +(168499, 'Quintin', 1999, 'M', 355), +(168500, 'Coleman', 1999, 'M', 354), +(168501, 'Cullen', 1999, 'M', 353), +(168502, 'Garrison', 1999, 'M', 353), +(168503, 'Sidney', 1999, 'M', 353), +(168504, 'Antoine', 1999, 'M', 351), +(168505, 'Declan', 1999, 'M', 351), +(168506, 'Cordell', 1999, 'M', 343), +(168507, 'Nasir', 1999, 'M', 343); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(168508, 'Ralph', 1999, 'M', 343), +(168509, 'Vicente', 1999, 'M', 342), +(168510, 'Brennen', 1999, 'M', 341), +(168511, 'Austen', 1999, 'M', 340), +(168512, 'Alfred', 1999, 'M', 338), +(168513, 'Pierce', 1999, 'M', 338), +(168514, 'Braydon', 1999, 'M', 337), +(168515, 'Everett', 1999, 'M', 336), +(168516, 'Bret', 1999, 'M', 335), +(168517, 'Dashawn', 1999, 'M', 335), +(168518, 'Kolton', 1999, 'M', 334), +(168519, 'Kurt', 1999, 'M', 334), +(168520, 'Tariq', 1999, 'M', 334), +(168521, 'Devyn', 1999, 'M', 333), +(168522, 'Isaias', 1999, 'M', 332), +(168523, 'Toby', 1999, 'M', 332), +(168524, 'Roderick', 1999, 'M', 331), +(168525, 'Coby', 1999, 'M', 330), +(168526, 'Deonte', 1999, 'M', 330), +(168527, 'Jaron', 1999, 'M', 328), +(168528, 'Tobias', 1999, 'M', 326), +(168529, 'Kane', 1999, 'M', 323), +(168530, 'Keyshawn', 1999, 'M', 323), +(168531, 'Jadon', 1999, 'M', 321), +(168532, 'Kieran', 1999, 'M', 319), +(168533, 'Keshawn', 1999, 'M', 318), +(168534, 'Clarence', 1999, 'M', 317), +(168535, 'Dangelo', 1999, 'M', 315), +(168536, 'Darnell', 1999, 'M', 313), +(168537, 'Asher', 1999, 'M', 312), +(168538, 'Shannon', 1999, 'M', 308), +(168539, 'Brad', 1999, 'M', 307), +(168540, 'Markus', 1999, 'M', 305), +(168541, 'Derick', 1999, 'M', 303), +(168542, 'Demarcus', 1999, 'M', 302), +(168543, 'Agustin', 1999, 'M', 301), +(168544, 'Dillan', 1999, 'M', 301), +(168545, 'Freddy', 1999, 'M', 300), +(168546, 'Kareem', 1999, 'M', 300), +(168547, 'Aron', 1999, 'M', 299), +(168548, 'Rylan', 1999, 'M', 297), +(168549, 'Deon', 1999, 'M', 296), +(168550, 'Ignacio', 1999, 'M', 296), +(168551, 'Jaren', 1999, 'M', 296), +(168552, 'Salvatore', 1999, 'M', 296), +(168553, 'Conrad', 1999, 'M', 295), +(168554, 'Shamar', 1999, 'M', 295), +(168555, 'Stephan', 1999, 'M', 294), +(168556, 'Clifford', 1999, 'M', 293), +(168557, 'Dandre', 1999, 'M', 293), +(168558, 'Deangelo', 1999, 'M', 293), +(168559, 'Stephon', 1999, 'M', 292), +(168560, 'Brayan', 1999, 'M', 289), +(168561, 'Rohan', 1999, 'M', 289), +(168562, 'Silas', 1999, 'M', 288), +(168563, 'Stone', 1999, 'M', 288), +(168564, 'Jefferson', 1999, 'M', 287), +(168565, 'Rory', 1999, 'M', 286), +(168566, 'Mackenzie', 1999, 'M', 285), +(168567, 'Elisha', 1999, 'M', 284), +(168568, 'Mike', 1999, 'M', 284), +(168569, 'August', 1999, 'M', 283), +(168570, 'Geoffrey', 1999, 'M', 280), +(168571, 'Jasper', 1999, 'M', 280), +(168572, 'Latrell', 1999, 'M', 278), +(168573, 'Dion', 1999, 'M', 277), +(168574, 'Howard', 1999, 'M', 277), +(168575, 'Darion', 1999, 'M', 275), +(168576, 'Tre', 1999, 'M', 275), +(168577, 'Marcel', 1999, 'M', 273), +(168578, 'Ulysses', 1999, 'M', 272), +(168579, 'Earl', 1999, 'M', 269), +(168580, 'Easton', 1999, 'M', 269), +(168581, 'Baby', 1999, 'M', 267), +(168582, 'Barry', 1999, 'M', 267), +(168583, 'Raphael', 1999, 'M', 267), +(168584, 'Tevin', 1999, 'M', 267), +(168585, 'Austyn', 1999, 'M', 266), +(168586, 'Bernard', 1999, 'M', 266), +(168587, 'Jamison', 1999, 'M', 266), +(168588, 'Frankie', 1999, 'M', 265), +(168589, 'Gordon', 1999, 'M', 265), +(168590, 'Irvin', 1999, 'M', 265), +(168591, 'Jamar', 1999, 'M', 265), +(168592, 'Jovan', 1999, 'M', 265), +(168593, 'Rashad', 1999, 'M', 265), +(168594, 'Winston', 1999, 'M', 264), +(168595, 'Donavan', 1999, 'M', 262), +(168596, 'Forrest', 1999, 'M', 262), +(168597, 'Moshe', 1999, 'M', 262), +(168598, 'Brenton', 1999, 'M', 261), +(168599, 'Perry', 1999, 'M', 261), +(168600, 'Clinton', 1999, 'M', 259), +(168601, 'Justus', 1999, 'M', 257), +(168602, 'Lamar', 1999, 'M', 256), +(168603, 'Rigoberto', 1999, 'M', 256), +(168604, 'Kole', 1999, 'M', 255), +(168605, 'Roland', 1999, 'M', 255), +(168606, 'Ronaldo', 1999, 'M', 253), +(168607, 'Anton', 1999, 'M', 252), +(168608, 'Kamron', 1999, 'M', 252), +(168609, 'Keon', 1999, 'M', 252), +(168610, 'Octavio', 1999, 'M', 250), +(168611, 'Talon', 1999, 'M', 250), +(168612, 'Dimitri', 1999, 'M', 249), +(168613, 'Kasey', 1999, 'M', 249), +(168614, 'Maximillian', 1999, 'M', 249), +(168615, 'Travon', 1999, 'M', 249), +(168616, 'Fredrick', 1999, 'M', 248), +(168617, 'Nestor', 1999, 'M', 247), +(168618, 'Romeo', 1999, 'M', 247), +(168619, 'Armani', 1999, 'M', 246), +(168620, 'Jean', 1999, 'M', 246), +(168621, 'Leroy', 1999, 'M', 246), +(168622, 'Mitchel', 1999, 'M', 246), +(168623, 'Asa', 1999, 'M', 245), +(168624, 'Devante', 1999, 'M', 245), +(168625, 'Kory', 1999, 'M', 245), +(168626, 'Kurtis', 1999, 'M', 244), +(168627, 'Cruz', 1999, 'M', 243), +(168628, 'Dwight', 1999, 'M', 243), +(168629, 'Heriberto', 1999, 'M', 243), +(168630, 'Jaiden', 1999, 'M', 243), +(168631, 'Hudson', 1999, 'M', 242), +(168632, 'Darin', 1999, 'M', 241), +(168633, 'Stuart', 1999, 'M', 241), +(168634, 'Cortez', 1999, 'M', 240), +(168635, 'Titus', 1999, 'M', 240), +(168636, 'Tyrek', 1999, 'M', 240), +(168637, 'Jarvis', 1999, 'M', 239), +(168638, 'Korey', 1999, 'M', 238), +(168639, 'Muhammad', 1999, 'M', 238), +(168640, 'Santos', 1999, 'M', 238), +(168641, 'Jamel', 1999, 'M', 237), +(168642, 'Rhett', 1999, 'M', 237), +(168643, 'Destin', 1999, 'M', 236), +(168644, 'Misael', 1999, 'M', 235), +(168645, 'Norman', 1999, 'M', 235), +(168646, 'Alonso', 1999, 'M', 233), +(168647, 'Estevan', 1999, 'M', 233), +(168648, 'Zechariah', 1999, 'M', 232), +(168649, 'Marquez', 1999, 'M', 231), +(168650, 'Amari', 1999, 'M', 230), +(168651, 'Cornelius', 1999, 'M', 230), +(168652, 'Brooks', 1999, 'M', 229), +(168653, 'Guadalupe', 1999, 'M', 229), +(168654, 'Ibrahim', 1999, 'M', 229), +(168655, 'Reynaldo', 1999, 'M', 229), +(168656, 'Lamont', 1999, 'M', 228), +(168657, 'Milton', 1999, 'M', 228), +(168658, 'Dylon', 1999, 'M', 227), +(168659, 'Clark', 1999, 'M', 226), +(168660, 'Gianni', 1999, 'M', 226), +(168661, 'Greyson', 1999, 'M', 226), +(168662, 'Tristian', 1999, 'M', 226), +(168663, 'Dallin', 1999, 'M', 225), +(168664, 'Carlton', 1999, 'M', 224), +(168665, 'Jairo', 1999, 'M', 224), +(168666, 'Jameson', 1999, 'M', 223), +(168667, 'Remington', 1999, 'M', 223), +(168668, 'Terence', 1999, 'M', 223), +(168669, 'Kellen', 1999, 'M', 222), +(168670, 'Reuben', 1999, 'M', 222), +(168671, 'Kirk', 1999, 'M', 221), +(168672, 'Savion', 1999, 'M', 221), +(168673, 'Josef', 1999, 'M', 220), +(168674, 'Aldo', 1999, 'M', 219), +(168675, 'Cristopher', 1999, 'M', 219), +(168676, 'Gunner', 1999, 'M', 219), +(168677, 'Tyreke', 1999, 'M', 219), +(168678, 'Antwan', 1999, 'M', 218), +(168679, 'German', 1999, 'M', 217), +(168680, 'Jordi', 1999, 'M', 217), +(168681, 'Landen', 1999, 'M', 217), +(168682, 'Shayne', 1999, 'M', 216), +(168683, 'Clifton', 1999, 'M', 215), +(168684, 'Lincoln', 1999, 'M', 214), +(168685, 'Nash', 1999, 'M', 214), +(168686, 'Chaz', 1999, 'M', 213), +(168687, 'Hassan', 1999, 'M', 213), +(168688, 'Jordy', 1999, 'M', 213), +(168689, 'Brandan', 1999, 'M', 212), +(168690, 'Darrius', 1999, 'M', 212), +(168691, 'Deion', 1999, 'M', 212), +(168692, 'Daryl', 1999, 'M', 211), +(168693, 'Dexter', 1999, 'M', 211), +(168694, 'Layne', 1999, 'M', 211), +(168695, 'Trever', 1999, 'M', 211), +(168696, 'Vernon', 1999, 'M', 211), +(168697, 'Draven', 1999, 'M', 210), +(168698, 'Cayden', 1999, 'M', 209), +(168699, 'Denver', 1999, 'M', 209), +(168700, 'Houston', 1999, 'M', 209), +(168701, 'Jayce', 1999, 'M', 209), +(168702, 'Sammy', 1999, 'M', 209), +(168703, 'Anderson', 1999, 'M', 208), +(168704, 'Tyrique', 1999, 'M', 208), +(168705, 'Zakary', 1999, 'M', 207), +(168706, 'Heath', 1999, 'M', 206), +(168707, 'Izaiah', 1999, 'M', 206), +(168708, 'Julien', 1999, 'M', 206), +(168709, 'Junior', 1999, 'M', 206), +(168710, 'Quinten', 1999, 'M', 206), +(168711, 'Grady', 1999, 'M', 205), +(168712, 'Lonnie', 1999, 'M', 205), +(168713, 'Nick', 1999, 'M', 204), +(168714, 'Abdullah', 1999, 'M', 203), +(168715, 'Nico', 1999, 'M', 202), +(168716, 'Glen', 1999, 'M', 201), +(168717, 'Fred', 1999, 'M', 200), +(168718, 'Dominik', 1999, 'M', 199), +(168719, 'Raymundo', 1999, 'M', 197), +(168720, 'Jaylan', 1999, 'M', 196), +(168721, 'Marques', 1999, 'M', 196), +(168722, 'Alexandro', 1999, 'M', 195), +(168723, 'Davin', 1999, 'M', 195), +(168724, 'Kelly', 1999, 'M', 195), +(168725, 'Adonis', 1999, 'M', 194), +(168726, 'Colt', 1999, 'M', 194), +(168727, 'Dequan', 1999, 'M', 194), +(168728, 'Josh', 1999, 'M', 194), +(168729, 'Kevon', 1999, 'M', 194), +(168730, 'Ari', 1999, 'M', 193), +(168731, 'Jett', 1999, 'M', 193), +(168732, 'Mekhi', 1999, 'M', 193), +(168733, 'Turner', 1999, 'M', 193), +(168734, 'Darrin', 1999, 'M', 192), +(168735, 'Axel', 1999, 'M', 191), +(168736, 'Courtney', 1999, 'M', 191), +(168737, 'Jorden', 1999, 'M', 191), +(168738, 'Justyn', 1999, 'M', 191), +(168739, 'Kent', 1999, 'M', 191), +(168740, 'Seamus', 1999, 'M', 191), +(168741, 'Guy', 1999, 'M', 190), +(168742, 'Reagan', 1999, 'M', 190), +(168743, 'Jackie', 1999, 'M', 189), +(168744, 'Tracy', 1999, 'M', 189), +(168745, 'Arnold', 1999, 'M', 188), +(168746, 'Emmett', 1999, 'M', 188), +(168747, 'Luciano', 1999, 'M', 188), +(168748, 'Maverick', 1999, 'M', 188), +(168749, 'Raven', 1999, 'M', 188), +(168750, 'Rickey', 1999, 'M', 188), +(168751, 'Don', 1999, 'M', 187), +(168752, 'Lloyd', 1999, 'M', 187), +(168753, 'Mikel', 1999, 'M', 187), +(168754, 'Nikhil', 1999, 'M', 187), +(168755, 'Efren', 1999, 'M', 186), +(168756, 'Giancarlo', 1999, 'M', 186), +(168757, 'Keagan', 1999, 'M', 186), +(168758, 'Keven', 1999, 'M', 186), +(168759, 'Marcelo', 1999, 'M', 186), +(168760, 'Bo', 1999, 'M', 185), +(168761, 'Hamza', 1999, 'M', 184), +(168762, 'Neal', 1999, 'M', 184), +(168763, 'Thaddeus', 1999, 'M', 184), +(168764, 'Abram', 1999, 'M', 183), +(168765, 'Aubrey', 1999, 'M', 183), +(168766, 'Raheem', 1999, 'M', 183), +(168767, 'Brandyn', 1999, 'M', 182), +(168768, 'Denzel', 1999, 'M', 182), +(168769, 'Tyreek', 1999, 'M', 182), +(168770, 'Dario', 1999, 'M', 181), +(168771, 'Dyllan', 1999, 'M', 181), +(168772, 'Ellis', 1999, 'M', 180), +(168773, 'Johan', 1999, 'M', 180), +(168774, 'Juwan', 1999, 'M', 180), +(168775, 'Keanu', 1999, 'M', 180), +(168776, 'Mariano', 1999, 'M', 180), +(168777, 'Raekwon', 1999, 'M', 180), +(168778, 'Zaire', 1999, 'M', 180), +(168779, 'Brant', 1999, 'M', 179), +(168780, 'Chaim', 1999, 'M', 179), +(168781, 'Isai', 1999, 'M', 179), +(168782, 'Jabari', 1999, 'M', 179), +(168783, 'Johnnie', 1999, 'M', 179), +(168784, 'Shemar', 1999, 'M', 179), +(168785, 'Antony', 1999, 'M', 178), +(168786, 'Davonte', 1999, 'M', 178), +(168787, 'Garett', 1999, 'M', 178), +(168788, 'Gonzalo', 1999, 'M', 178), +(168789, 'Hugh', 1999, 'M', 178), +(168790, 'Benito', 1999, 'M', 177), +(168791, 'Freddie', 1999, 'M', 177), +(168792, 'Jamari', 1999, 'M', 177), +(168793, 'Yosef', 1999, 'M', 177), +(168794, 'Deontae', 1999, 'M', 176), +(168795, 'Kristofer', 1999, 'M', 176), +(168796, 'Porter', 1999, 'M', 176), +(168797, 'Duane', 1999, 'M', 175), +(168798, 'Jacoby', 1999, 'M', 175), +(168799, 'Jimmie', 1999, 'M', 175), +(168800, 'Tahj', 1999, 'M', 175), +(168801, 'Clint', 1999, 'M', 174), +(168802, 'Deshaun', 1999, 'M', 174), +(168803, 'Gerard', 1999, 'M', 174), +(168804, 'Gino', 1999, 'M', 174), +(168805, 'Nehemiah', 1999, 'M', 174), +(168806, 'Reilly', 1999, 'M', 174), +(168807, 'Brennon', 1999, 'M', 173), +(168808, 'Emiliano', 1999, 'M', 173), +(168809, 'Jaydon', 1999, 'M', 173), +(168810, 'Korbin', 1999, 'M', 173), +(168811, 'Madison', 1999, 'M', 173), +(168812, 'Nathen', 1999, 'M', 173), +(168813, 'Paris', 1999, 'M', 173), +(168814, 'Dillion', 1999, 'M', 172), +(168815, 'Khalid', 1999, 'M', 172), +(168816, 'Ladarius', 1999, 'M', 172), +(168817, 'Markel', 1999, 'M', 172), +(168818, 'Barrett', 1999, 'M', 171), +(168819, 'Deondre', 1999, 'M', 171), +(168820, 'Shelby', 1999, 'M', 171), +(168821, 'Tyron', 1999, 'M', 171), +(168822, 'Demarco', 1999, 'M', 170), +(168823, 'Elmer', 1999, 'M', 170), +(168824, 'Alessandro', 1999, 'M', 169), +(168825, 'Andreas', 1999, 'M', 169), +(168826, 'Bernardo', 1999, 'M', 169), +(168827, 'Blaise', 1999, 'M', 169), +(168828, 'Dewayne', 1999, 'M', 169), +(168829, 'Tyreese', 1999, 'M', 169), +(168830, 'Dontae', 1999, 'M', 168), +(168831, 'Emerson', 1999, 'M', 168), +(168832, 'Lester', 1999, 'M', 168), +(168833, 'Paxton', 1999, 'M', 168), +(168834, 'Rahul', 1999, 'M', 168), +(168835, 'Rashawn', 1999, 'M', 168), +(168836, 'Braedon', 1999, 'M', 167), +(168837, 'Tyshawn', 1999, 'M', 167), +(168838, 'Valentin', 1999, 'M', 167), +(168839, 'Cale', 1999, 'M', 166), +(168840, 'Donnie', 1999, 'M', 165), +(168841, 'Jeff', 1999, 'M', 165), +(168842, 'Judah', 1999, 'M', 165), +(168843, 'Kennedy', 1999, 'M', 165), +(168844, 'Keyon', 1999, 'M', 165), +(168845, 'Myron', 1999, 'M', 165), +(168846, 'Rick', 1999, 'M', 165), +(168847, 'Sonny', 1999, 'M', 165), +(168848, 'Vance', 1999, 'M', 165), +(168849, 'Domenic', 1999, 'M', 164), +(168850, 'Phoenix', 1999, 'M', 164), +(168851, 'Samir', 1999, 'M', 164), +(168852, 'Fidel', 1999, 'M', 162), +(168853, 'Jaleel', 1999, 'M', 162), +(168854, 'Kelton', 1999, 'M', 162), +(168855, 'Ryder', 1999, 'M', 162), +(168856, 'Vaughn', 1999, 'M', 162), +(168857, 'Treyvon', 1999, 'M', 161), +(168858, 'Bradly', 1999, 'M', 160), +(168859, 'Gene', 1999, 'M', 160), +(168860, 'Jaxson', 1999, 'M', 159), +(168861, 'Xander', 1999, 'M', 159), +(168862, 'Benny', 1999, 'M', 158), +(168863, 'Pierre', 1999, 'M', 158), +(168864, 'Robin', 1999, 'M', 158), +(168865, 'Royce', 1999, 'M', 158), +(168866, 'Tyquan', 1999, 'M', 158), +(168867, 'Auston', 1999, 'M', 157), +(168868, 'Branson', 1999, 'M', 157), +(168869, 'Darrion', 1999, 'M', 157), +(168870, 'Syed', 1999, 'M', 157), +(168871, 'Augustus', 1999, 'M', 156), +(168872, 'Camren', 1999, 'M', 156), +(168873, 'Jaret', 1999, 'M', 156), +(168874, 'Semaj', 1999, 'M', 156), +(168875, 'Simeon', 1999, 'M', 156), +(168876, 'Jovani', 1999, 'M', 155), +(168877, 'Matteo', 1999, 'M', 155), +(168878, 'Omari', 1999, 'M', 155), +(168879, 'Samson', 1999, 'M', 155), +(168880, 'Alek', 1999, 'M', 154), +(168881, 'Ean', 1999, 'M', 154), +(168882, 'Jalon', 1999, 'M', 154), +(168883, 'Trae', 1999, 'M', 154), +(168884, 'Jude', 1999, 'M', 153), +(168885, 'Gaven', 1999, 'M', 152), +(168886, 'Giovanny', 1999, 'M', 152), +(168887, 'Hans', 1999, 'M', 152), +(168888, 'Hernan', 1999, 'M', 152), +(168889, 'Prince', 1999, 'M', 152), +(168890, 'Shea', 1999, 'M', 152), +(168891, 'Bradford', 1999, 'M', 151), +(168892, 'Brycen', 1999, 'M', 151), +(168893, 'Herbert', 1999, 'M', 151), +(168894, 'Genaro', 1999, 'M', 150), +(168895, 'Jade', 1999, 'M', 150), +(168896, 'Jovany', 1999, 'M', 150), +(168897, 'Karson', 1999, 'M', 150), +(168898, 'Kerry', 1999, 'M', 150), +(168899, 'Markell', 1999, 'M', 150), +(168900, 'Trevion', 1999, 'M', 150), +(168901, 'Ayden', 1999, 'M', 149), +(168902, 'Darrian', 1999, 'M', 149), +(168903, 'Elvin', 1999, 'M', 149), +(168904, 'Jamarcus', 1999, 'M', 149), +(168905, 'Jamil', 1999, 'M', 149), +(168906, 'Rey', 1999, 'M', 149), +(168907, 'Tyriq', 1999, 'M', 149), +(168908, 'Amos', 1999, 'M', 148), +(168909, 'Bronson', 1999, 'M', 148), +(168910, 'Tavion', 1999, 'M', 148), +(168911, 'Braiden', 1999, 'M', 147), +(168912, 'Dakotah', 1999, 'M', 147), +(168913, 'Kadin', 1999, 'M', 147), +(168914, 'Cristobal', 1999, 'M', 146), +(168915, 'Donavon', 1999, 'M', 146), +(168916, 'Herman', 1999, 'M', 146), +(168917, 'Arman', 1999, 'M', 145), +(168918, 'Eliseo', 1999, 'M', 145), +(168919, 'Francesco', 1999, 'M', 145), +(168920, 'Kenyon', 1999, 'M', 145), +(168921, 'Alden', 1999, 'M', 144), +(168922, 'Broderick', 1999, 'M', 144), +(168923, 'Carlo', 1999, 'M', 144), +(168924, 'Aditya', 1999, 'M', 143), +(168925, 'Aric', 1999, 'M', 143), +(168926, 'Jerrod', 1999, 'M', 143), +(168927, 'Rowan', 1999, 'M', 143), +(168928, 'Bridger', 1999, 'M', 142), +(168929, 'Darrien', 1999, 'M', 142), +(168930, 'Kylan', 1999, 'M', 142), +(168931, 'Adrien', 1999, 'M', 141), +(168932, 'Alexandre', 1999, 'M', 141), +(168933, 'Dejuan', 1999, 'M', 141), +(168934, 'Irving', 1999, 'M', 141), +(168935, 'Kayden', 1999, 'M', 141), +(168936, 'Montana', 1999, 'M', 141), +(168937, 'Trajan', 1999, 'M', 141), +(168938, 'Abdul', 1999, 'M', 140), +(168939, 'Coy', 1999, 'M', 140), +(168940, 'Rasheed', 1999, 'M', 140), +(168941, 'Arjun', 1999, 'M', 139), +(168942, 'Armand', 1999, 'M', 139), +(168943, 'Arron', 1999, 'M', 139), +(168944, 'Dan', 1999, 'M', 139), +(168945, 'Lawson', 1999, 'M', 139), +(168946, 'Xzavier', 1999, 'M', 139), +(168947, 'Zain', 1999, 'M', 139), +(168948, 'Devonta', 1999, 'M', 138), +(168949, 'Javonte', 1999, 'M', 138), +(168950, 'Harvey', 1999, 'M', 137), +(168951, 'Isidro', 1999, 'M', 137), +(168952, 'Rex', 1999, 'M', 137), +(168953, 'Trevin', 1999, 'M', 137), +(168954, 'Cain', 1999, 'M', 136), +(168955, 'Dakoda', 1999, 'M', 136), +(168956, 'Jovanny', 1999, 'M', 136), +(168957, 'Kyree', 1999, 'M', 136), +(168958, 'Lionel', 1999, 'M', 136), +(168959, 'Ryley', 1999, 'M', 136), +(168960, 'Tavon', 1999, 'M', 136), +(168961, 'Uriah', 1999, 'M', 136), +(168962, 'Zack', 1999, 'M', 136), +(168963, 'Donnell', 1999, 'M', 135), +(168964, 'Jamir', 1999, 'M', 135), +(168965, 'Oswaldo', 1999, 'M', 135), +(168966, 'Yehuda', 1999, 'M', 135), +(168967, 'Gregorio', 1999, 'M', 134), +(168968, 'Haden', 1999, 'M', 134), +(168969, 'Hakeem', 1999, 'M', 134), +(168970, 'Harris', 1999, 'M', 134), +(168971, 'Jerod', 1999, 'M', 134), +(168972, 'Alijah', 1999, 'M', 133), +(168973, 'Bishop', 1999, 'M', 133), +(168974, 'Blaze', 1999, 'M', 133), +(168975, 'Cecil', 1999, 'M', 133), +(168976, 'Ishmael', 1999, 'M', 133), +(168977, 'Jarett', 1999, 'M', 133), +(168978, 'Jevon', 1999, 'M', 133), +(168979, 'Kaiden', 1999, 'M', 133), +(168980, 'Sahil', 1999, 'M', 133), +(168981, 'Tavian', 1999, 'M', 133), +(168982, 'Trystan', 1999, 'M', 133), +(168983, 'Kenton', 1999, 'M', 132), +(168984, 'Coleton', 1999, 'M', 131), +(168985, 'Dusty', 1999, 'M', 131), +(168986, 'Gideon', 1999, 'M', 131), +(168987, 'Immanuel', 1999, 'M', 131), +(168988, 'Jaquez', 1999, 'M', 131), +(168989, 'Maximiliano', 1999, 'M', 131), +(168990, 'Rocky', 1999, 'M', 131), +(168991, 'Kahlil', 1999, 'M', 130), +(168992, 'Miguelangel', 1999, 'M', 130), +(168993, 'Rico', 1999, 'M', 130), +(168994, 'Jarret', 1999, 'M', 129), +(168995, 'Leland', 1999, 'M', 129), +(168996, 'Tyrik', 1999, 'M', 129), +(168997, 'Zavier', 1999, 'M', 129), +(168998, 'Alton', 1999, 'M', 128), +(168999, 'Darwin', 1999, 'M', 128), +(169000, 'Jensen', 1999, 'M', 128), +(169001, 'Kale', 1999, 'M', 128), +(169002, 'Luca', 1999, 'M', 128), +(169003, 'Taj', 1999, 'M', 128), +(169004, 'Alexzander', 1999, 'M', 127), +(169005, 'Edmund', 1999, 'M', 127), +(169006, 'Rayshawn', 1999, 'M', 127), +(169007, 'Sincere', 1999, 'M', 127), +(169008, 'Jase', 1999, 'M', 126), +(169009, 'Javion', 1999, 'M', 126), +(169010, 'Mohamad', 1999, 'M', 126), +(169011, 'Tarik', 1999, 'M', 126), +(169012, 'Eliezer', 1999, 'M', 125), +(169013, 'Jacquez', 1999, 'M', 125), +(169014, 'Kalvin', 1999, 'M', 125), +(169015, 'Vincenzo', 1999, 'M', 125), +(169016, 'Finn', 1999, 'M', 124), +(169017, 'Johnpaul', 1999, 'M', 124), +(169018, 'Jordyn', 1999, 'M', 124), +(169019, 'Keandre', 1999, 'M', 124), +(169020, 'Kian', 1999, 'M', 124), +(169021, 'Anders', 1999, 'M', 123), +(169022, 'Clyde', 1999, 'M', 123), +(169023, 'Fletcher', 1999, 'M', 123), +(169024, 'Jacques', 1999, 'M', 123), +(169025, 'Konnor', 1999, 'M', 123), +(169026, 'Loren', 1999, 'M', 123), +(169027, 'Menachem', 1999, 'M', 123), +(169028, 'Nicklaus', 1999, 'M', 123), +(169029, 'Niko', 1999, 'M', 123), +(169030, 'Ronan', 1999, 'M', 123), +(169031, 'Bryon', 1999, 'M', 122), +(169032, 'Eddy', 1999, 'M', 122), +(169033, 'Galen', 1999, 'M', 122), +(169034, 'Jamaal', 1999, 'M', 122), +(169035, 'London', 1999, 'M', 122), +(169036, 'Daylon', 1999, 'M', 121), +(169037, 'Erin', 1999, 'M', 121), +(169038, 'Kalen', 1999, 'M', 121), +(169039, 'Konner', 1999, 'M', 121), +(169040, 'Mustafa', 1999, 'M', 121), +(169041, 'Dajuan', 1999, 'M', 120), +(169042, 'Dejon', 1999, 'M', 120), +(169043, 'Jajuan', 1999, 'M', 120), +(169044, 'Layton', 1999, 'M', 120), +(169045, 'Leslie', 1999, 'M', 120), +(169046, 'Mikal', 1999, 'M', 120), +(169047, 'Rylee', 1999, 'M', 120), +(169048, 'Trenten', 1999, 'M', 120), +(169049, 'Bruno', 1999, 'M', 119), +(169050, 'Erich', 1999, 'M', 119), +(169051, 'Hasan', 1999, 'M', 119), +(169052, 'Ken', 1999, 'M', 119), +(169053, 'Brannon', 1999, 'M', 118), +(169054, 'Cedrick', 1999, 'M', 118), +(169055, 'Deante', 1999, 'M', 118), +(169056, 'Jalin', 1999, 'M', 118), +(169057, 'Kelby', 1999, 'M', 118), +(169058, 'Santino', 1999, 'M', 118), +(169059, 'Truman', 1999, 'M', 118), +(169060, 'Augustine', 1999, 'M', 117), +(169061, 'Everardo', 1999, 'M', 117), +(169062, 'Floyd', 1999, 'M', 117), +(169063, 'Jessy', 1999, 'M', 117), +(169064, 'Aden', 1999, 'M', 116), +(169065, 'Bilal', 1999, 'M', 116), +(169066, 'Brandt', 1999, 'M', 116), +(169067, 'Britton', 1999, 'M', 116), +(169068, 'Brodie', 1999, 'M', 116), +(169069, 'Camryn', 1999, 'M', 116), +(169070, 'Dashaun', 1999, 'M', 116), +(169071, 'Demond', 1999, 'M', 116), +(169072, 'Jayvon', 1999, 'M', 116), +(169073, 'Jelani', 1999, 'M', 116), +(169074, 'Kamren', 1999, 'M', 116), +(169075, 'Rhys', 1999, 'M', 116), +(169076, 'Tom', 1999, 'M', 116), +(169077, 'Daron', 1999, 'M', 115), +(169078, 'Edgardo', 1999, 'M', 115), +(169079, 'Joseluis', 1999, 'M', 115), +(169080, 'Kenan', 1999, 'M', 115), +(169081, 'Najee', 1999, 'M', 115), +(169082, 'Wilfredo', 1999, 'M', 115), +(169083, 'Adriel', 1999, 'M', 114), +(169084, 'Anakin', 1999, 'M', 114), +(169085, 'Benton', 1999, 'M', 114), +(169086, 'Campbell', 1999, 'M', 114), +(169087, 'Giovani', 1999, 'M', 114), +(169088, 'Leif', 1999, 'M', 114), +(169089, 'Waylon', 1999, 'M', 114), +(169090, 'Wendell', 1999, 'M', 114), +(169091, 'Zayne', 1999, 'M', 114), +(169092, 'Dana', 1999, 'M', 113), +(169093, 'Foster', 1999, 'M', 113), +(169094, 'Killian', 1999, 'M', 113), +(169095, 'Lazaro', 1999, 'M', 113), +(169096, 'Braulio', 1999, 'M', 112), +(169097, 'Devontae', 1999, 'M', 112), +(169098, 'Federico', 1999, 'M', 112), +(169099, 'Gaige', 1999, 'M', 112), +(169100, 'Leandro', 1999, 'M', 112), +(169101, 'Mauro', 1999, 'M', 112), +(169102, 'Morris', 1999, 'M', 112), +(169103, 'Ryland', 1999, 'M', 112), +(169104, 'Shelton', 1999, 'M', 112), +(169105, 'Ted', 1999, 'M', 112), +(169106, 'Armon', 1999, 'M', 111), +(169107, 'Claudio', 1999, 'M', 111), +(169108, 'Ervin', 1999, 'M', 111), +(169109, 'Jonatan', 1999, 'M', 111), +(169110, 'Griffen', 1999, 'M', 110), +(169111, 'Jaeden', 1999, 'M', 110), +(169112, 'Jovanni', 1999, 'M', 110), +(169113, 'Kendell', 1999, 'M', 110), +(169114, 'Marcelino', 1999, 'M', 110), +(169115, 'Pete', 1999, 'M', 110), +(169116, 'Stewart', 1999, 'M', 110), +(169117, 'Dustyn', 1999, 'M', 109), +(169118, 'Justen', 1999, 'M', 109), +(169119, 'Luc', 1999, 'M', 109), +(169120, 'Maxim', 1999, 'M', 109), +(169121, 'Sydney', 1999, 'M', 109), +(169122, 'Zander', 1999, 'M', 109), +(169123, 'Cason', 1999, 'M', 108), +(169124, 'Ethen', 1999, 'M', 108), +(169125, 'Luiz', 1999, 'M', 108), +(169126, 'Tyrus', 1999, 'M', 108), +(169127, 'Chauncey', 1999, 'M', 107), +(169128, 'Fredy', 1999, 'M', 107), +(169129, 'Gannon', 1999, 'M', 107), +(169130, 'Gavyn', 1999, 'M', 107), +(169131, 'Jan', 1999, 'M', 107), +(169132, 'Jedidiah', 1999, 'M', 107), +(169133, 'Keshaun', 1999, 'M', 107), +(169134, 'Marion', 1999, 'M', 107), +(169135, 'Quinlan', 1999, 'M', 107), +(169136, 'Stetson', 1999, 'M', 107), +(169137, 'Varun', 1999, 'M', 107), +(169138, 'Isaak', 1999, 'M', 106), +(169139, 'Jody', 1999, 'M', 106), +(169140, 'Khari', 1999, 'M', 106), +(169141, 'Kordell', 1999, 'M', 106), +(169142, 'Leighton', 1999, 'M', 106), +(169143, 'Ron', 1999, 'M', 106), +(169144, 'Yaakov', 1999, 'M', 106), +(169145, 'Desean', 1999, 'M', 105), +(169146, 'Mordechai', 1999, 'M', 105), +(169147, 'Tayler', 1999, 'M', 105), +(169148, 'Yusuf', 1999, 'M', 105), +(169149, 'Ajay', 1999, 'M', 104), +(169150, 'Ameer', 1999, 'M', 104), +(169151, 'Caelan', 1999, 'M', 104), +(169152, 'Domingo', 1999, 'M', 104), +(169153, 'Jair', 1999, 'M', 104), +(169154, 'Jim', 1999, 'M', 104), +(169155, 'Kavon', 1999, 'M', 104), +(169156, 'Mikael', 1999, 'M', 104), +(169157, 'Samual', 1999, 'M', 104), +(169158, 'Santana', 1999, 'M', 104), +(169159, 'Dave', 1999, 'M', 103), +(169160, 'Lars', 1999, 'M', 103), +(169161, 'Treyton', 1999, 'M', 103), +(169162, 'Willis', 1999, 'M', 103), +(169163, 'Antwon', 1999, 'M', 102), +(169164, 'Bowen', 1999, 'M', 102), +(169165, 'Codey', 1999, 'M', 102), +(169166, 'Dionte', 1999, 'M', 102), +(169167, 'Eloy', 1999, 'M', 102), +(169168, 'Kamari', 1999, 'M', 102), +(169169, 'Trayvon', 1999, 'M', 102), +(169170, 'Bill', 1999, 'M', 101), +(169171, 'Chadwick', 1999, 'M', 101), +(169172, 'Dayne', 1999, 'M', 101), +(169173, 'Demonte', 1999, 'M', 101), +(169174, 'Nicklas', 1999, 'M', 101), +(169175, 'Reyes', 1999, 'M', 101), +(169176, 'Valentino', 1999, 'M', 101), +(169177, 'Yousef', 1999, 'M', 101), +(169178, 'Babyboy', 1999, 'M', 100), +(169179, 'Blayne', 1999, 'M', 100), +(169180, 'Jalil', 1999, 'M', 100), +(169181, 'Louie', 1999, 'M', 100), +(169182, 'Yisroel', 1999, 'M', 100), +(169183, 'Emily', 2000, 'F', 25952), +(169184, 'Hannah', 2000, 'F', 23073), +(169185, 'Madison', 2000, 'F', 19967), +(169186, 'Ashley', 2000, 'F', 17995), +(169187, 'Sarah', 2000, 'F', 17687), +(169188, 'Alexis', 2000, 'F', 17627), +(169189, 'Samantha', 2000, 'F', 17264), +(169190, 'Jessica', 2000, 'F', 15704), +(169191, 'Elizabeth', 2000, 'F', 15088), +(169192, 'Taylor', 2000, 'F', 15078), +(169193, 'Lauren', 2000, 'F', 14172), +(169194, 'Alyssa', 2000, 'F', 13552), +(169195, 'Kayla', 2000, 'F', 13310), +(169196, 'Abigail', 2000, 'F', 13087), +(169197, 'Brianna', 2000, 'F', 12873), +(169198, 'Olivia', 2000, 'F', 12852), +(169199, 'Emma', 2000, 'F', 12540), +(169200, 'Megan', 2000, 'F', 11433), +(169201, 'Grace', 2000, 'F', 11283), +(169202, 'Victoria', 2000, 'F', 10922), +(169203, 'Rachel', 2000, 'F', 10665), +(169204, 'Anna', 2000, 'F', 10580), +(169205, 'Sydney', 2000, 'F', 10242), +(169206, 'Destiny', 2000, 'F', 9844), +(169207, 'Morgan', 2000, 'F', 9502), +(169208, 'Jennifer', 2000, 'F', 9385), +(169209, 'Jasmine', 2000, 'F', 9092), +(169210, 'Haley', 2000, 'F', 9068), +(169211, 'Julia', 2000, 'F', 8764), +(169212, 'Kaitlyn', 2000, 'F', 8757), +(169213, 'Nicole', 2000, 'F', 8559), +(169214, 'Amanda', 2000, 'F', 8549), +(169215, 'Katherine', 2000, 'F', 8106), +(169216, 'Natalie', 2000, 'F', 8094), +(169217, 'Hailey', 2000, 'F', 7827), +(169218, 'Alexandra', 2000, 'F', 7545), +(169219, 'Savannah', 2000, 'F', 7099), +(169220, 'Chloe', 2000, 'F', 7094), +(169221, 'Rebecca', 2000, 'F', 7055), +(169222, 'Stephanie', 2000, 'F', 7027), +(169223, 'Maria', 2000, 'F', 6851), +(169224, 'Sophia', 2000, 'F', 6562), +(169225, 'Mackenzie', 2000, 'F', 6348), +(169226, 'Allison', 2000, 'F', 6314), +(169227, 'Isabella', 2000, 'F', 6242), +(169228, 'Mary', 2000, 'F', 6182), +(169229, 'Amber', 2000, 'F', 6181), +(169230, 'Danielle', 2000, 'F', 6087), +(169231, 'Gabrielle', 2000, 'F', 5868), +(169232, 'Jordan', 2000, 'F', 5808), +(169233, 'Brooke', 2000, 'F', 5640), +(169234, 'Michelle', 2000, 'F', 5543), +(169235, 'Sierra', 2000, 'F', 5520), +(169236, 'Katelyn', 2000, 'F', 5501), +(169237, 'Andrea', 2000, 'F', 5475), +(169238, 'Madeline', 2000, 'F', 5370), +(169239, 'Sara', 2000, 'F', 5315), +(169240, 'Kimberly', 2000, 'F', 5240), +(169241, 'Courtney', 2000, 'F', 5239), +(169242, 'Erin', 2000, 'F', 5183), +(169243, 'Brittany', 2000, 'F', 5182), +(169244, 'Vanessa', 2000, 'F', 5133), +(169245, 'Jenna', 2000, 'F', 5045), +(169246, 'Jacqueline', 2000, 'F', 5035), +(169247, 'Caroline', 2000, 'F', 5021), +(169248, 'Faith', 2000, 'F', 4998), +(169249, 'Makayla', 2000, 'F', 4916), +(169250, 'Bailey', 2000, 'F', 4647), +(169251, 'Paige', 2000, 'F', 4609), +(169252, 'Shelby', 2000, 'F', 4558), +(169253, 'Melissa', 2000, 'F', 4528), +(169254, 'Kaylee', 2000, 'F', 4492), +(169255, 'Christina', 2000, 'F', 4321), +(169256, 'Trinity', 2000, 'F', 4284), +(169257, 'Mariah', 2000, 'F', 4103), +(169258, 'Caitlin', 2000, 'F', 4102), +(169259, 'Autumn', 2000, 'F', 4024), +(169260, 'Marissa', 2000, 'F', 4023), +(169261, 'Breanna', 2000, 'F', 3823), +(169262, 'Angela', 2000, 'F', 3822), +(169263, 'Catherine', 2000, 'F', 3800), +(169264, 'Zoe', 2000, 'F', 3785), +(169265, 'Briana', 2000, 'F', 3754), +(169266, 'Jada', 2000, 'F', 3747), +(169267, 'Laura', 2000, 'F', 3732), +(169268, 'Claire', 2000, 'F', 3710), +(169269, 'Alexa', 2000, 'F', 3674), +(169270, 'Kelsey', 2000, 'F', 3669), +(169271, 'Kathryn', 2000, 'F', 3641), +(169272, 'Leslie', 2000, 'F', 3620), +(169273, 'Alexandria', 2000, 'F', 3547), +(169274, 'Sabrina', 2000, 'F', 3465), +(169275, 'Mia', 2000, 'F', 3449), +(169276, 'Isabel', 2000, 'F', 3446), +(169277, 'Molly', 2000, 'F', 3399), +(169278, 'Leah', 2000, 'F', 3395), +(169279, 'Katie', 2000, 'F', 3391), +(169280, 'Gabriella', 2000, 'F', 3367), +(169281, 'Cheyenne', 2000, 'F', 3366), +(169282, 'Cassandra', 2000, 'F', 3304), +(169283, 'Tiffany', 2000, 'F', 3303), +(169284, 'Erica', 2000, 'F', 3220), +(169285, 'Lindsey', 2000, 'F', 3211), +(169286, 'Kylie', 2000, 'F', 3205), +(169287, 'Amy', 2000, 'F', 3171), +(169288, 'Diana', 2000, 'F', 3165), +(169289, 'Cassidy', 2000, 'F', 3162), +(169290, 'Mikayla', 2000, 'F', 3159), +(169291, 'Ariana', 2000, 'F', 3153), +(169292, 'Margaret', 2000, 'F', 3119), +(169293, 'Kelly', 2000, 'F', 3075), +(169294, 'Miranda', 2000, 'F', 3041), +(169295, 'Maya', 2000, 'F', 3017), +(169296, 'Melanie', 2000, 'F', 2967), +(169297, 'Audrey', 2000, 'F', 2871), +(169298, 'Jade', 2000, 'F', 2862), +(169299, 'Gabriela', 2000, 'F', 2844), +(169300, 'Caitlyn', 2000, 'F', 2835), +(169301, 'Angel', 2000, 'F', 2832), +(169302, 'Jillian', 2000, 'F', 2778), +(169303, 'Alicia', 2000, 'F', 2760), +(169304, 'Jocelyn', 2000, 'F', 2744), +(169305, 'Erika', 2000, 'F', 2733), +(169306, 'Lily', 2000, 'F', 2731), +(169307, 'Heather', 2000, 'F', 2684), +(169308, 'Madelyn', 2000, 'F', 2684), +(169309, 'Adriana', 2000, 'F', 2680), +(169310, 'Arianna', 2000, 'F', 2658), +(169311, 'Lillian', 2000, 'F', 2597), +(169312, 'Kiara', 2000, 'F', 2559), +(169313, 'Riley', 2000, 'F', 2552), +(169314, 'Crystal', 2000, 'F', 2549), +(169315, 'Mckenzie', 2000, 'F', 2526), +(169316, 'Meghan', 2000, 'F', 2515), +(169317, 'Skylar', 2000, 'F', 2502), +(169318, 'Ana', 2000, 'F', 2422), +(169319, 'Britney', 2000, 'F', 2403), +(169320, 'Angelica', 2000, 'F', 2393), +(169321, 'Kennedy', 2000, 'F', 2390), +(169322, 'Chelsea', 2000, 'F', 2380), +(169323, 'Daisy', 2000, 'F', 2366), +(169324, 'Kristen', 2000, 'F', 2356), +(169325, 'Veronica', 2000, 'F', 2355), +(169326, 'Isabelle', 2000, 'F', 2339), +(169327, 'Summer', 2000, 'F', 2336), +(169328, 'Hope', 2000, 'F', 2321), +(169329, 'Brittney', 2000, 'F', 2315), +(169330, 'Lydia', 2000, 'F', 2305), +(169331, 'Hayley', 2000, 'F', 2299), +(169332, 'Evelyn', 2000, 'F', 2222), +(169333, 'Bethany', 2000, 'F', 2190), +(169334, 'Shannon', 2000, 'F', 2179), +(169335, 'Karen', 2000, 'F', 2171), +(169336, 'Michaela', 2000, 'F', 2171), +(169337, 'Jamie', 2000, 'F', 2155), +(169338, 'Daniela', 2000, 'F', 2150), +(169339, 'Angelina', 2000, 'F', 2139), +(169340, 'Kaitlin', 2000, 'F', 2135), +(169341, 'Karina', 2000, 'F', 2133), +(169342, 'Sophie', 2000, 'F', 2102), +(169343, 'Sofia', 2000, 'F', 2093), +(169344, 'Diamond', 2000, 'F', 2080), +(169345, 'Payton', 2000, 'F', 2058), +(169346, 'Cynthia', 2000, 'F', 2038), +(169347, 'Alexia', 2000, 'F', 2018), +(169348, 'Valerie', 2000, 'F', 2015), +(169349, 'Monica', 2000, 'F', 1990), +(169350, 'Peyton', 2000, 'F', 1967), +(169351, 'Carly', 2000, 'F', 1961), +(169352, 'Bianca', 2000, 'F', 1956), +(169353, 'Hanna', 2000, 'F', 1911), +(169354, 'Brenda', 2000, 'F', 1897), +(169355, 'Rebekah', 2000, 'F', 1894), +(169356, 'Alejandra', 2000, 'F', 1860), +(169357, 'Mya', 2000, 'F', 1839), +(169358, 'Avery', 2000, 'F', 1832), +(169359, 'Brooklyn', 2000, 'F', 1827), +(169360, 'Ashlyn', 2000, 'F', 1822), +(169361, 'Lindsay', 2000, 'F', 1799), +(169362, 'Ava', 2000, 'F', 1796), +(169363, 'Desiree', 2000, 'F', 1789), +(169364, 'Alondra', 2000, 'F', 1762), +(169365, 'Camryn', 2000, 'F', 1753), +(169366, 'Ariel', 2000, 'F', 1752), +(169367, 'Naomi', 2000, 'F', 1749), +(169368, 'Jordyn', 2000, 'F', 1730), +(169369, 'Kendra', 2000, 'F', 1730), +(169370, 'Mckenna', 2000, 'F', 1703), +(169371, 'Holly', 2000, 'F', 1690), +(169372, 'Julie', 2000, 'F', 1677), +(169373, 'Kendall', 2000, 'F', 1650), +(169374, 'Kara', 2000, 'F', 1648), +(169375, 'Jasmin', 2000, 'F', 1644), +(169376, 'Selena', 2000, 'F', 1642), +(169377, 'Esmeralda', 2000, 'F', 1641), +(169378, 'Amaya', 2000, 'F', 1632), +(169379, 'Kylee', 2000, 'F', 1628), +(169380, 'Maggie', 2000, 'F', 1614), +(169381, 'Makenzie', 2000, 'F', 1613), +(169382, 'Claudia', 2000, 'F', 1608), +(169383, 'Kyra', 2000, 'F', 1597), +(169384, 'Cameron', 2000, 'F', 1596), +(169385, 'Karla', 2000, 'F', 1586), +(169386, 'Kathleen', 2000, 'F', 1583), +(169387, 'Abby', 2000, 'F', 1565), +(169388, 'Delaney', 2000, 'F', 1538), +(169389, 'Amelia', 2000, 'F', 1530), +(169390, 'Casey', 2000, 'F', 1517), +(169391, 'Serena', 2000, 'F', 1503), +(169392, 'Savanna', 2000, 'F', 1500), +(169393, 'Aaliyah', 2000, 'F', 1494), +(169394, 'Giselle', 2000, 'F', 1486), +(169395, 'Mallory', 2000, 'F', 1466), +(169396, 'April', 2000, 'F', 1450), +(169397, 'Raven', 2000, 'F', 1446), +(169398, 'Adrianna', 2000, 'F', 1445), +(169399, 'Christine', 2000, 'F', 1440), +(169400, 'Kristina', 2000, 'F', 1433), +(169401, 'Nina', 2000, 'F', 1426), +(169402, 'Asia', 2000, 'F', 1423), +(169403, 'Natalia', 2000, 'F', 1423), +(169404, 'Valeria', 2000, 'F', 1422), +(169405, 'Aubrey', 2000, 'F', 1408), +(169406, 'Lauryn', 2000, 'F', 1408), +(169407, 'Kate', 2000, 'F', 1396), +(169408, 'Patricia', 2000, 'F', 1392), +(169409, 'Jazmin', 2000, 'F', 1390), +(169410, 'Rachael', 2000, 'F', 1389), +(169411, 'Katelynn', 2000, 'F', 1388), +(169412, 'Cierra', 2000, 'F', 1383), +(169413, 'Alison', 2000, 'F', 1382), +(169414, 'Macy', 2000, 'F', 1374), +(169415, 'Nancy', 2000, 'F', 1374), +(169416, 'Elena', 2000, 'F', 1365), +(169417, 'Kyla', 2000, 'F', 1363), +(169418, 'Katrina', 2000, 'F', 1355), +(169419, 'Jazmine', 2000, 'F', 1353), +(169420, 'Joanna', 2000, 'F', 1350), +(169421, 'Tara', 2000, 'F', 1336), +(169422, 'Gianna', 2000, 'F', 1330), +(169423, 'Juliana', 2000, 'F', 1320), +(169424, 'Fatima', 2000, 'F', 1315), +(169425, 'Allyson', 2000, 'F', 1312), +(169426, 'Gracie', 2000, 'F', 1311), +(169427, 'Sadie', 2000, 'F', 1311), +(169428, 'Guadalupe', 2000, 'F', 1308), +(169429, 'Genesis', 2000, 'F', 1303), +(169430, 'Yesenia', 2000, 'F', 1294), +(169431, 'Julianna', 2000, 'F', 1287), +(169432, 'Skyler', 2000, 'F', 1284), +(169433, 'Tatiana', 2000, 'F', 1283), +(169434, 'Alexus', 2000, 'F', 1281), +(169435, 'Alana', 2000, 'F', 1278), +(169436, 'Elise', 2000, 'F', 1278), +(169437, 'Kirsten', 2000, 'F', 1273), +(169438, 'Nadia', 2000, 'F', 1271), +(169439, 'Sandra', 2000, 'F', 1268), +(169440, 'Dominique', 2000, 'F', 1263), +(169441, 'Ruby', 2000, 'F', 1262), +(169442, 'Haylee', 2000, 'F', 1260), +(169443, 'Jayla', 2000, 'F', 1259), +(169444, 'Tori', 2000, 'F', 1245), +(169445, 'Cindy', 2000, 'F', 1244), +(169446, 'Sidney', 2000, 'F', 1221), +(169447, 'Ella', 2000, 'F', 1218), +(169448, 'Tessa', 2000, 'F', 1210), +(169449, 'Carolina', 2000, 'F', 1204), +(169450, 'Jaqueline', 2000, 'F', 1199), +(169451, 'Camille', 2000, 'F', 1198), +(169452, 'Whitney', 2000, 'F', 1194), +(169453, 'Carmen', 2000, 'F', 1193), +(169454, 'Vivian', 2000, 'F', 1174), +(169455, 'Priscilla', 2000, 'F', 1169), +(169456, 'Bridget', 2000, 'F', 1168), +(169457, 'Celeste', 2000, 'F', 1167), +(169458, 'Kiana', 2000, 'F', 1165), +(169459, 'Makenna', 2000, 'F', 1163), +(169460, 'Alissa', 2000, 'F', 1153), +(169461, 'Madeleine', 2000, 'F', 1153), +(169462, 'Miriam', 2000, 'F', 1151), +(169463, 'Natasha', 2000, 'F', 1145), +(169464, 'Ciara', 2000, 'F', 1139), +(169465, 'Cecilia', 2000, 'F', 1135), +(169466, 'Mercedes', 2000, 'F', 1135), +(169467, 'Kassandra', 2000, 'F', 1134), +(169468, 'Reagan', 2000, 'F', 1131), +(169469, 'Aliyah', 2000, 'F', 1115), +(169470, 'Josephine', 2000, 'F', 1113), +(169471, 'Charlotte', 2000, 'F', 1104), +(169472, 'Rylee', 2000, 'F', 1102), +(169473, 'Shania', 2000, 'F', 1097), +(169474, 'Kira', 2000, 'F', 1092), +(169475, 'Meredith', 2000, 'F', 1092), +(169476, 'Eva', 2000, 'F', 1088), +(169477, 'Lisa', 2000, 'F', 1088), +(169478, 'Dakota', 2000, 'F', 1086), +(169479, 'Hallie', 2000, 'F', 1082), +(169480, 'Anne', 2000, 'F', 1081), +(169481, 'Rose', 2000, 'F', 1079), +(169482, 'Liliana', 2000, 'F', 1064), +(169483, 'Kristin', 2000, 'F', 1056), +(169484, 'Deanna', 2000, 'F', 1051), +(169485, 'Imani', 2000, 'F', 1051), +(169486, 'Marisa', 2000, 'F', 1051), +(169487, 'Kailey', 2000, 'F', 1050), +(169488, 'Annie', 2000, 'F', 1038), +(169489, 'Nia', 2000, 'F', 1033), +(169490, 'Carolyn', 2000, 'F', 1029), +(169491, 'Anastasia', 2000, 'F', 1027), +(169492, 'Brenna', 2000, 'F', 1023), +(169493, 'Dana', 2000, 'F', 1015), +(169494, 'Shayla', 2000, 'F', 1009), +(169495, 'Ashlee', 2000, 'F', 1008), +(169496, 'Kassidy', 2000, 'F', 1007), +(169497, 'Alaina', 2000, 'F', 1003), +(169498, 'Rosa', 2000, 'F', 1003), +(169499, 'Wendy', 2000, 'F', 1003), +(169500, 'Logan', 2000, 'F', 998), +(169501, 'Tabitha', 2000, 'F', 992), +(169502, 'Paola', 2000, 'F', 991), +(169503, 'Callie', 2000, 'F', 988), +(169504, 'Addison', 2000, 'F', 983), +(169505, 'Lucy', 2000, 'F', 979), +(169506, 'Gillian', 2000, 'F', 976), +(169507, 'Clarissa', 2000, 'F', 974), +(169508, 'Destinee', 2000, 'F', 973), +(169509, 'Josie', 2000, 'F', 969), +(169510, 'Esther', 2000, 'F', 967), +(169511, 'Denise', 2000, 'F', 963), +(169512, 'Katlyn', 2000, 'F', 963), +(169513, 'Mariana', 2000, 'F', 944), +(169514, 'Bryanna', 2000, 'F', 943), +(169515, 'Emilee', 2000, 'F', 931), +(169516, 'Georgia', 2000, 'F', 929), +(169517, 'Deja', 2000, 'F', 921), +(169518, 'Kamryn', 2000, 'F', 921), +(169519, 'Ashleigh', 2000, 'F', 916), +(169520, 'Cristina', 2000, 'F', 912), +(169521, 'Baylee', 2000, 'F', 905), +(169522, 'Heaven', 2000, 'F', 903), +(169523, 'Ruth', 2000, 'F', 901), +(169524, 'Raquel', 2000, 'F', 900), +(169525, 'Monique', 2000, 'F', 899), +(169526, 'Teresa', 2000, 'F', 898), +(169527, 'Helen', 2000, 'F', 890), +(169528, 'Krystal', 2000, 'F', 889), +(169529, 'Tiana', 2000, 'F', 887), +(169530, 'Cassie', 2000, 'F', 886), +(169531, 'Kayleigh', 2000, 'F', 885), +(169532, 'Marina', 2000, 'F', 884), +(169533, 'Heidi', 2000, 'F', 879), +(169534, 'Ivy', 2000, 'F', 879), +(169535, 'Ashton', 2000, 'F', 868), +(169536, 'Clara', 2000, 'F', 868), +(169537, 'Meagan', 2000, 'F', 858), +(169538, 'Gina', 2000, 'F', 855), +(169539, 'Linda', 2000, 'F', 848), +(169540, 'Gloria', 2000, 'F', 842), +(169541, 'Jacquelyn', 2000, 'F', 831), +(169542, 'Ellie', 2000, 'F', 829), +(169543, 'Jenny', 2000, 'F', 826), +(169544, 'Renee', 2000, 'F', 825), +(169545, 'Daniella', 2000, 'F', 818), +(169546, 'Lizbeth', 2000, 'F', 817), +(169547, 'Anahi', 2000, 'F', 814), +(169548, 'Virginia', 2000, 'F', 811), +(169549, 'Gisselle', 2000, 'F', 810), +(169550, 'Kaitlynn', 2000, 'F', 802), +(169551, 'Julissa', 2000, 'F', 798), +(169552, 'Cheyanne', 2000, 'F', 796), +(169553, 'Lacey', 2000, 'F', 791), +(169554, 'Haleigh', 2000, 'F', 789), +(169555, 'Marie', 2000, 'F', 785), +(169556, 'Martha', 2000, 'F', 776), +(169557, 'Eleanor', 2000, 'F', 771), +(169558, 'Kierra', 2000, 'F', 764), +(169559, 'Tiara', 2000, 'F', 764), +(169560, 'Talia', 2000, 'F', 762), +(169561, 'Eliza', 2000, 'F', 759), +(169562, 'Kaylie', 2000, 'F', 759), +(169563, 'Mikaela', 2000, 'F', 759), +(169564, 'Harley', 2000, 'F', 756), +(169565, 'Jaden', 2000, 'F', 752), +(169566, 'Hailee', 2000, 'F', 751), +(169567, 'Madalyn', 2000, 'F', 751), +(169568, 'Kasey', 2000, 'F', 750), +(169569, 'Ashlynn', 2000, 'F', 749), +(169570, 'Brandi', 2000, 'F', 744), +(169571, 'Lesly', 2000, 'F', 742), +(169572, 'Elisabeth', 2000, 'F', 735), +(169573, 'Allie', 2000, 'F', 734), +(169574, 'Viviana', 2000, 'F', 733), +(169575, 'Cara', 2000, 'F', 732), +(169576, 'Marisol', 2000, 'F', 727), +(169577, 'India', 2000, 'F', 722), +(169578, 'Litzy', 2000, 'F', 721), +(169579, 'Tatyana', 2000, 'F', 721), +(169580, 'Melody', 2000, 'F', 720), +(169581, 'Jessie', 2000, 'F', 719), +(169582, 'Brandy', 2000, 'F', 718), +(169583, 'Alisha', 2000, 'F', 715), +(169584, 'Hunter', 2000, 'F', 714), +(169585, 'Noelle', 2000, 'F', 710), +(169586, 'Carla', 2000, 'F', 706), +(169587, 'Francesca', 2000, 'F', 702), +(169588, 'Tia', 2000, 'F', 701), +(169589, 'Layla', 2000, 'F', 697), +(169590, 'Krista', 2000, 'F', 695), +(169591, 'Zoey', 2000, 'F', 691), +(169592, 'Carley', 2000, 'F', 687), +(169593, 'Janet', 2000, 'F', 686), +(169594, 'Carissa', 2000, 'F', 685), +(169595, 'Iris', 2000, 'F', 685), +(169596, 'Kaleigh', 2000, 'F', 684), +(169597, 'Tyler', 2000, 'F', 683), +(169598, 'Susan', 2000, 'F', 680), +(169599, 'Tamara', 2000, 'F', 680), +(169600, 'Theresa', 2000, 'F', 679), +(169601, 'Yasmine', 2000, 'F', 676), +(169602, 'Tatum', 2000, 'F', 675), +(169603, 'Sharon', 2000, 'F', 670), +(169604, 'Alice', 2000, 'F', 668), +(169605, 'Yasmin', 2000, 'F', 668), +(169606, 'Tamia', 2000, 'F', 663), +(169607, 'Abbey', 2000, 'F', 660), +(169608, 'Alayna', 2000, 'F', 660), +(169609, 'Kali', 2000, 'F', 660), +(169610, 'Lilly', 2000, 'F', 659), +(169611, 'Bailee', 2000, 'F', 658), +(169612, 'Lesley', 2000, 'F', 658), +(169613, 'Mckayla', 2000, 'F', 658), +(169614, 'Ayanna', 2000, 'F', 656), +(169615, 'Serenity', 2000, 'F', 654), +(169616, 'Karissa', 2000, 'F', 649), +(169617, 'Precious', 2000, 'F', 648), +(169618, 'Jane', 2000, 'F', 647), +(169619, 'Maddison', 2000, 'F', 647), +(169620, 'Jayda', 2000, 'F', 645), +(169621, 'Lexi', 2000, 'F', 642), +(169622, 'Kelsie', 2000, 'F', 641), +(169623, 'Phoebe', 2000, 'F', 641), +(169624, 'Halle', 2000, 'F', 639), +(169625, 'Kiersten', 2000, 'F', 638), +(169626, 'Kiera', 2000, 'F', 636), +(169627, 'Tyra', 2000, 'F', 635), +(169628, 'Annika', 2000, 'F', 634), +(169629, 'Felicity', 2000, 'F', 634), +(169630, 'Taryn', 2000, 'F', 633), +(169631, 'Kaylin', 2000, 'F', 632), +(169632, 'Ellen', 2000, 'F', 631), +(169633, 'Kiley', 2000, 'F', 628), +(169634, 'Jaclyn', 2000, 'F', 614), +(169635, 'Rhiannon', 2000, 'F', 612), +(169636, 'Madisyn', 2000, 'F', 610), +(169637, 'Colleen', 2000, 'F', 609), +(169638, 'Joy', 2000, 'F', 607), +(169639, 'Charity', 2000, 'F', 606), +(169640, 'Pamela', 2000, 'F', 606), +(169641, 'Tania', 2000, 'F', 604), +(169642, 'Fiona', 2000, 'F', 603), +(169643, 'Kaila', 2000, 'F', 599), +(169644, 'Alyson', 2000, 'F', 598), +(169645, 'Annabelle', 2000, 'F', 597), +(169646, 'Emely', 2000, 'F', 597), +(169647, 'Irene', 2000, 'F', 596), +(169648, 'Angelique', 2000, 'F', 595), +(169649, 'Alina', 2000, 'F', 594), +(169650, 'Johanna', 2000, 'F', 594), +(169651, 'Regan', 2000, 'F', 592), +(169652, 'Janelle', 2000, 'F', 590), +(169653, 'Janae', 2000, 'F', 589), +(169654, 'Madyson', 2000, 'F', 588), +(169655, 'Paris', 2000, 'F', 585), +(169656, 'Justine', 2000, 'F', 583), +(169657, 'Chelsey', 2000, 'F', 579), +(169658, 'Sasha', 2000, 'F', 579), +(169659, 'Paulina', 2000, 'F', 574), +(169660, 'Mayra', 2000, 'F', 570), +(169661, 'Zaria', 2000, 'F', 568), +(169662, 'Skye', 2000, 'F', 566), +(169663, 'Cora', 2000, 'F', 564), +(169664, 'Brisa', 2000, 'F', 562), +(169665, 'Emilie', 2000, 'F', 562), +(169666, 'Felicia', 2000, 'F', 562), +(169667, 'Larissa', 2000, 'F', 561), +(169668, 'Macie', 2000, 'F', 561), +(169669, 'Tianna', 2000, 'F', 561), +(169670, 'Aurora', 2000, 'F', 557), +(169671, 'Sage', 2000, 'F', 556), +(169672, 'Lucia', 2000, 'F', 552), +(169673, 'Alma', 2000, 'F', 547), +(169674, 'Chasity', 2000, 'F', 547), +(169675, 'Ann', 2000, 'F', 545), +(169676, 'Deborah', 2000, 'F', 545), +(169677, 'Nichole', 2000, 'F', 545), +(169678, 'Jayden', 2000, 'F', 542), +(169679, 'Alanna', 2000, 'F', 541), +(169680, 'Malia', 2000, 'F', 541), +(169681, 'Carlie', 2000, 'F', 540), +(169682, 'Angie', 2000, 'F', 539), +(169683, 'Nora', 2000, 'F', 539), +(169684, 'Sylvia', 2000, 'F', 537), +(169685, 'Kailee', 2000, 'F', 536), +(169686, 'Carrie', 2000, 'F', 534), +(169687, 'Elaina', 2000, 'F', 534), +(169688, 'Sonia', 2000, 'F', 532), +(169689, 'Kenya', 2000, 'F', 524), +(169690, 'Genevieve', 2000, 'F', 523), +(169691, 'Piper', 2000, 'F', 522), +(169692, 'Marilyn', 2000, 'F', 520), +(169693, 'Amari', 2000, 'F', 519), +(169694, 'Macey', 2000, 'F', 518), +(169695, 'Marlene', 2000, 'F', 518), +(169696, 'Barbara', 2000, 'F', 517), +(169697, 'Tayler', 2000, 'F', 512), +(169698, 'Julianne', 2000, 'F', 511), +(169699, 'Brooklynn', 2000, 'F', 510), +(169700, 'Lorena', 2000, 'F', 510), +(169701, 'Perla', 2000, 'F', 510), +(169702, 'Elisa', 2000, 'F', 508), +(169703, 'Kaley', 2000, 'F', 505), +(169704, 'Leilani', 2000, 'F', 505), +(169705, 'Eden', 2000, 'F', 504), +(169706, 'Miracle', 2000, 'F', 503), +(169707, 'Devin', 2000, 'F', 502), +(169708, 'Aileen', 2000, 'F', 501), +(169709, 'Chyna', 2000, 'F', 500), +(169710, 'Athena', 2000, 'F', 497), +(169711, 'Esperanza', 2000, 'F', 497), +(169712, 'Regina', 2000, 'F', 497), +(169713, 'Adrienne', 2000, 'F', 495), +(169714, 'Shyanne', 2000, 'F', 491), +(169715, 'Luz', 2000, 'F', 489), +(169716, 'Tierra', 2000, 'F', 488), +(169717, 'Clare', 2000, 'F', 484), +(169718, 'Cristal', 2000, 'F', 484), +(169719, 'Eliana', 2000, 'F', 483), +(169720, 'Kelli', 2000, 'F', 483), +(169721, 'Eve', 2000, 'F', 482), +(169722, 'Sydnee', 2000, 'F', 482), +(169723, 'Madelynn', 2000, 'F', 481), +(169724, 'Breana', 2000, 'F', 480), +(169725, 'Melina', 2000, 'F', 480), +(169726, 'Arielle', 2000, 'F', 479), +(169727, 'Justice', 2000, 'F', 477), +(169728, 'Toni', 2000, 'F', 477), +(169729, 'Corinne', 2000, 'F', 476), +(169730, 'Maia', 2000, 'F', 475), +(169731, 'Tess', 2000, 'F', 475), +(169732, 'Abbigail', 2000, 'F', 474), +(169733, 'Ciera', 2000, 'F', 474), +(169734, 'Ebony', 2000, 'F', 474), +(169735, 'Maritza', 2000, 'F', 474), +(169736, 'Lena', 2000, 'F', 473), +(169737, 'Lexie', 2000, 'F', 471), +(169738, 'Isis', 2000, 'F', 469), +(169739, 'Aimee', 2000, 'F', 468), +(169740, 'Leticia', 2000, 'F', 468), +(169741, 'Sydni', 2000, 'F', 468), +(169742, 'Sarai', 2000, 'F', 465), +(169743, 'Halie', 2000, 'F', 464), +(169744, 'Alivia', 2000, 'F', 463), +(169745, 'Destiney', 2000, 'F', 463), +(169746, 'Laurel', 2000, 'F', 463), +(169747, 'Edith', 2000, 'F', 461), +(169748, 'Carina', 2000, 'F', 460), +(169749, 'Fernanda', 2000, 'F', 460), +(169750, 'Amya', 2000, 'F', 458), +(169751, 'Destini', 2000, 'F', 458), +(169752, 'Aspen', 2000, 'F', 455), +(169753, 'Nathalie', 2000, 'F', 454), +(169754, 'Paula', 2000, 'F', 454), +(169755, 'Tanya', 2000, 'F', 454), +(169756, 'Frances', 2000, 'F', 453), +(169757, 'Tina', 2000, 'F', 453), +(169758, 'Christian', 2000, 'F', 452), +(169759, 'Elaine', 2000, 'F', 452), +(169760, 'Shayna', 2000, 'F', 449), +(169761, 'Aniya', 2000, 'F', 448), +(169762, 'Mollie', 2000, 'F', 448), +(169763, 'Ryan', 2000, 'F', 448), +(169764, 'Essence', 2000, 'F', 447), +(169765, 'Simone', 2000, 'F', 447), +(169766, 'Kyleigh', 2000, 'F', 443), +(169767, 'Nikki', 2000, 'F', 442), +(169768, 'Anya', 2000, 'F', 439), +(169769, 'Reyna', 2000, 'F', 438), +(169770, 'Kaylyn', 2000, 'F', 437), +(169771, 'Nicolette', 2000, 'F', 437), +(169772, 'Savanah', 2000, 'F', 437), +(169773, 'Abbie', 2000, 'F', 432), +(169774, 'Montana', 2000, 'F', 432), +(169775, 'Kailyn', 2000, 'F', 431), +(169776, 'Itzel', 2000, 'F', 429), +(169777, 'Leila', 2000, 'F', 427), +(169778, 'Cayla', 2000, 'F', 425), +(169779, 'Stacy', 2000, 'F', 425), +(169780, 'Araceli', 2000, 'F', 422), +(169781, 'Robin', 2000, 'F', 422), +(169782, 'Dulce', 2000, 'F', 421), +(169783, 'Candace', 2000, 'F', 420), +(169784, 'Noemi', 2000, 'F', 420), +(169785, 'Jewel', 2000, 'F', 419), +(169786, 'Aleah', 2000, 'F', 418), +(169787, 'Ally', 2000, 'F', 418), +(169788, 'Mara', 2000, 'F', 418), +(169789, 'Nayeli', 2000, 'F', 418), +(169790, 'Karlee', 2000, 'F', 417), +(169791, 'Keely', 2000, 'F', 416), +(169792, 'Alisa', 2000, 'F', 415), +(169793, 'Micaela', 2000, 'F', 415), +(169794, 'Desirae', 2000, 'F', 414), +(169795, 'Leanna', 2000, 'F', 414), +(169796, 'Antonia', 2000, 'F', 413), +(169797, 'Brynn', 2000, 'F', 412), +(169798, 'Jaelyn', 2000, 'F', 412), +(169799, 'Judith', 2000, 'F', 412), +(169800, 'Raegan', 2000, 'F', 410), +(169801, 'Katelin', 2000, 'F', 409), +(169802, 'Sienna', 2000, 'F', 409), +(169803, 'Celia', 2000, 'F', 408), +(169804, 'Yvette', 2000, 'F', 407), +(169805, 'Juliet', 2000, 'F', 405), +(169806, 'Anika', 2000, 'F', 402), +(169807, 'Emilia', 2000, 'F', 402), +(169808, 'Calista', 2000, 'F', 401), +(169809, 'Carlee', 2000, 'F', 401), +(169810, 'Eileen', 2000, 'F', 401), +(169811, 'Kianna', 2000, 'F', 401), +(169812, 'Thalia', 2000, 'F', 398), +(169813, 'Rylie', 2000, 'F', 397), +(169814, 'Daphne', 2000, 'F', 396), +(169815, 'Kacie', 2000, 'F', 395), +(169816, 'Karli', 2000, 'F', 394), +(169817, 'Rosemary', 2000, 'F', 394), +(169818, 'Ericka', 2000, 'F', 392), +(169819, 'Jadyn', 2000, 'F', 392), +(169820, 'Lyndsey', 2000, 'F', 392), +(169821, 'Micah', 2000, 'F', 392), +(169822, 'Hana', 2000, 'F', 391), +(169823, 'Haylie', 2000, 'F', 391), +(169824, 'Madilyn', 2000, 'F', 391), +(169825, 'Laila', 2000, 'F', 389), +(169826, 'Blanca', 2000, 'F', 388), +(169827, 'Kayley', 2000, 'F', 388), +(169828, 'Katarina', 2000, 'F', 387), +(169829, 'Kellie', 2000, 'F', 386), +(169830, 'Maribel', 2000, 'F', 384), +(169831, 'Sandy', 2000, 'F', 384), +(169832, 'Joselyn', 2000, 'F', 381), +(169833, 'Kaelyn', 2000, 'F', 379), +(169834, 'Madisen', 2000, 'F', 378), +(169835, 'Carson', 2000, 'F', 377), +(169836, 'Kathy', 2000, 'F', 377), +(169837, 'Margarita', 2000, 'F', 377), +(169838, 'Stella', 2000, 'F', 376), +(169839, 'Juliette', 2000, 'F', 373), +(169840, 'Devon', 2000, 'F', 371), +(169841, 'Camila', 2000, 'F', 370), +(169842, 'Bria', 2000, 'F', 369), +(169843, 'Donna', 2000, 'F', 369), +(169844, 'Helena', 2000, 'F', 367), +(169845, 'Lea', 2000, 'F', 367), +(169846, 'Jazlyn', 2000, 'F', 366), +(169847, 'Jazmyn', 2000, 'F', 365), +(169848, 'Skyla', 2000, 'F', 364), +(169849, 'Christy', 2000, 'F', 362), +(169850, 'Katharine', 2000, 'F', 362), +(169851, 'Joyce', 2000, 'F', 361), +(169852, 'Karlie', 2000, 'F', 361), +(169853, 'Lexus', 2000, 'F', 360), +(169854, 'Alessandra', 2000, 'F', 359), +(169855, 'Salma', 2000, 'F', 359), +(169856, 'Delilah', 2000, 'F', 358), +(169857, 'Moriah', 2000, 'F', 358), +(169858, 'Celine', 2000, 'F', 357), +(169859, 'Lizeth', 2000, 'F', 357), +(169860, 'Beatriz', 2000, 'F', 356), +(169861, 'Brianne', 2000, 'F', 355), +(169862, 'Kourtney', 2000, 'F', 353), +(169863, 'Sydnie', 2000, 'F', 352), +(169864, 'Stacey', 2000, 'F', 350), +(169865, 'Mariam', 2000, 'F', 349), +(169866, 'Robyn', 2000, 'F', 349), +(169867, 'Hayden', 2000, 'F', 348), +(169868, 'Janessa', 2000, 'F', 346), +(169869, 'Kenzie', 2000, 'F', 345), +(169870, 'Jalyn', 2000, 'F', 343), +(169871, 'Sheila', 2000, 'F', 343), +(169872, 'Meaghan', 2000, 'F', 342), +(169873, 'Aisha', 2000, 'F', 341), +(169874, 'Jaida', 2000, 'F', 340), +(169875, 'Shawna', 2000, 'F', 340), +(169876, 'Estrella', 2000, 'F', 339), +(169877, 'Marley', 2000, 'F', 337), +(169878, 'Melinda', 2000, 'F', 337), +(169879, 'Ayana', 2000, 'F', 336), +(169880, 'Karly', 2000, 'F', 336), +(169881, 'Devyn', 2000, 'F', 335), +(169882, 'Nataly', 2000, 'F', 335), +(169883, 'Loren', 2000, 'F', 334), +(169884, 'Rosalinda', 2000, 'F', 334), +(169885, 'Brielle', 2000, 'F', 332), +(169886, 'Laney', 2000, 'F', 332), +(169887, 'Lizette', 2000, 'F', 329), +(169888, 'Sally', 2000, 'F', 329), +(169889, 'Tracy', 2000, 'F', 329), +(169890, 'Lilian', 2000, 'F', 328), +(169891, 'Rebeca', 2000, 'F', 328), +(169892, 'Chandler', 2000, 'F', 326), +(169893, 'Jenifer', 2000, 'F', 326), +(169894, 'Valentina', 2000, 'F', 325), +(169895, 'America', 2000, 'F', 324), +(169896, 'Candice', 2000, 'F', 324), +(169897, 'Diane', 2000, 'F', 324), +(169898, 'Abigayle', 2000, 'F', 323), +(169899, 'Susana', 2000, 'F', 323), +(169900, 'Aliya', 2000, 'F', 322), +(169901, 'Casandra', 2000, 'F', 322), +(169902, 'Harmony', 2000, 'F', 322), +(169903, 'Jacey', 2000, 'F', 322), +(169904, 'Alena', 2000, 'F', 321), +(169905, 'Aylin', 2000, 'F', 321), +(169906, 'Carol', 2000, 'F', 321), +(169907, 'Shea', 2000, 'F', 321), +(169908, 'Stephany', 2000, 'F', 321), +(169909, 'Aniyah', 2000, 'F', 320), +(169910, 'Zoie', 2000, 'F', 320), +(169911, 'Jackeline', 2000, 'F', 319), +(169912, 'Alia', 2000, 'F', 318), +(169913, 'Savana', 2000, 'F', 317), +(169914, 'Damaris', 2000, 'F', 316), +(169915, 'Gwendolyn', 2000, 'F', 316), +(169916, 'Violet', 2000, 'F', 316), +(169917, 'Marian', 2000, 'F', 315), +(169918, 'Anita', 2000, 'F', 314), +(169919, 'Jaime', 2000, 'F', 314), +(169920, 'Alexandrea', 2000, 'F', 313), +(169921, 'Jaiden', 2000, 'F', 313), +(169922, 'Kristine', 2000, 'F', 312), +(169923, 'Carli', 2000, 'F', 311), +(169924, 'Dorothy', 2000, 'F', 311), +(169925, 'Gretchen', 2000, 'F', 310), +(169926, 'Janice', 2000, 'F', 310), +(169927, 'Annette', 2000, 'F', 309), +(169928, 'Mariela', 2000, 'F', 309), +(169929, 'Amani', 2000, 'F', 308), +(169930, 'Maura', 2000, 'F', 308), +(169931, 'Bella', 2000, 'F', 307), +(169932, 'Kaylynn', 2000, 'F', 307), +(169933, 'Lila', 2000, 'F', 306), +(169934, 'Armani', 2000, 'F', 305), +(169935, 'Anissa', 2000, 'F', 304), +(169936, 'Aubree', 2000, 'F', 304), +(169937, 'Kelsi', 2000, 'F', 304), +(169938, 'Greta', 2000, 'F', 301), +(169939, 'Kaya', 2000, 'F', 301), +(169940, 'Kayli', 2000, 'F', 301), +(169941, 'Lillie', 2000, 'F', 301), +(169942, 'Willow', 2000, 'F', 301), +(169943, 'Ansley', 2000, 'F', 300), +(169944, 'Catalina', 2000, 'F', 300), +(169945, 'Lia', 2000, 'F', 300), +(169946, 'Maci', 2000, 'F', 299), +(169947, 'Celina', 2000, 'F', 298), +(169948, 'Shyann', 2000, 'F', 298), +(169949, 'Alysa', 2000, 'F', 297), +(169950, 'Jaquelin', 2000, 'F', 297), +(169951, 'Kasandra', 2000, 'F', 297), +(169952, 'Quinn', 2000, 'F', 297), +(169953, 'Cecelia', 2000, 'F', 296), +(169954, 'Mattie', 2000, 'F', 296), +(169955, 'Chaya', 2000, 'F', 295), +(169956, 'Hailie', 2000, 'F', 295), +(169957, 'Haven', 2000, 'F', 295), +(169958, 'Kallie', 2000, 'F', 295), +(169959, 'Maegan', 2000, 'F', 295), +(169960, 'Maeve', 2000, 'F', 295), +(169961, 'Rocio', 2000, 'F', 295), +(169962, 'Yolanda', 2000, 'F', 295), +(169963, 'Christa', 2000, 'F', 294), +(169964, 'Gabriel', 2000, 'F', 293), +(169965, 'Kari', 2000, 'F', 293); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(169966, 'Noelia', 2000, 'F', 293), +(169967, 'Jeanette', 2000, 'F', 292), +(169968, 'Kaylah', 2000, 'F', 292), +(169969, 'Marianna', 2000, 'F', 292), +(169970, 'Nya', 2000, 'F', 292), +(169971, 'Kennedi', 2000, 'F', 291), +(169972, 'Presley', 2000, 'F', 291), +(169973, 'Yadira', 2000, 'F', 291), +(169974, 'Elissa', 2000, 'F', 290), +(169975, 'Nyah', 2000, 'F', 290), +(169976, 'Reilly', 2000, 'F', 290), +(169977, 'Shaina', 2000, 'F', 290), +(169978, 'Alize', 2000, 'F', 286), +(169979, 'Amara', 2000, 'F', 286), +(169980, 'Arlene', 2000, 'F', 286), +(169981, 'Izabella', 2000, 'F', 285), +(169982, 'Lyric', 2000, 'F', 285), +(169983, 'Aiyana', 2000, 'F', 284), +(169984, 'Allyssa', 2000, 'F', 283), +(169985, 'Drew', 2000, 'F', 283), +(169986, 'Rachelle', 2000, 'F', 283), +(169987, 'Adeline', 2000, 'F', 282), +(169988, 'Jacklyn', 2000, 'F', 282), +(169989, 'Jesse', 2000, 'F', 282), +(169990, 'Citlalli', 2000, 'F', 281), +(169991, 'Liana', 2000, 'F', 281), +(169992, 'Giovanna', 2000, 'F', 280), +(169993, 'Graciela', 2000, 'F', 279), +(169994, 'Princess', 2000, 'F', 279), +(169995, 'Selina', 2000, 'F', 279), +(169996, 'Brook', 2000, 'F', 278), +(169997, 'Elyse', 2000, 'F', 278), +(169998, 'Cali', 2000, 'F', 277), +(169999, 'Chanel', 2000, 'F', 277), +(170000, 'Berenice', 2000, 'F', 276), +(170001, 'Iliana', 2000, 'F', 276), +(170002, 'Jolie', 2000, 'F', 275), +(170003, 'Caitlynn', 2000, 'F', 274), +(170004, 'Christiana', 2000, 'F', 274), +(170005, 'Annalise', 2000, 'F', 273), +(170006, 'Cortney', 2000, 'F', 273), +(170007, 'Darlene', 2000, 'F', 273), +(170008, 'Sarina', 2000, 'F', 273), +(170009, 'Dasia', 2000, 'F', 272), +(170010, 'London', 2000, 'F', 271), +(170011, 'Yvonne', 2000, 'F', 271), +(170012, 'Karley', 2000, 'F', 270), +(170013, 'Shaylee', 2000, 'F', 270), +(170014, 'Myah', 2000, 'F', 269), +(170015, 'Ryleigh', 2000, 'F', 269), +(170016, 'Amira', 2000, 'F', 268), +(170017, 'Juanita', 2000, 'F', 268), +(170018, 'Kristy', 2000, 'F', 268), +(170019, 'Dariana', 2000, 'F', 267), +(170020, 'Teagan', 2000, 'F', 266), +(170021, 'Kiarra', 2000, 'F', 265), +(170022, 'Ryann', 2000, 'F', 265), +(170023, 'Yamilet', 2000, 'F', 265), +(170024, 'Alexys', 2000, 'F', 263), +(170025, 'Kacey', 2000, 'F', 263), +(170026, 'Shakira', 2000, 'F', 263), +(170027, 'Sheridan', 2000, 'F', 263), +(170028, 'Baby', 2000, 'F', 262), +(170029, 'Dianna', 2000, 'F', 262), +(170030, 'Lara', 2000, 'F', 261), +(170031, 'Isabela', 2000, 'F', 259), +(170032, 'Reina', 2000, 'F', 259), +(170033, 'Shirley', 2000, 'F', 259), +(170034, 'Jaycee', 2000, 'F', 258), +(170035, 'Silvia', 2000, 'F', 258), +(170036, 'Tatianna', 2000, 'F', 258), +(170037, 'Eryn', 2000, 'F', 257), +(170038, 'Ingrid', 2000, 'F', 257), +(170039, 'Keara', 2000, 'F', 257), +(170040, 'Randi', 2000, 'F', 257), +(170041, 'Reanna', 2000, 'F', 257), +(170042, 'Kalyn', 2000, 'F', 256), +(170043, 'Lisette', 2000, 'F', 256), +(170044, 'Monserrat', 2000, 'F', 256), +(170045, 'Ivana', 2000, 'F', 255), +(170046, 'Lori', 2000, 'F', 255), +(170047, 'Abril', 2000, 'F', 254), +(170048, 'Kaela', 2000, 'F', 254), +(170049, 'Maranda', 2000, 'F', 254), +(170050, 'Parker', 2000, 'F', 254), +(170051, 'Darby', 2000, 'F', 253), +(170052, 'Darian', 2000, 'F', 253), +(170053, 'Jasmyn', 2000, 'F', 253), +(170054, 'Jaylin', 2000, 'F', 253), +(170055, 'Katia', 2000, 'F', 253), +(170056, 'Ayla', 2000, 'F', 252), +(170057, 'Bridgette', 2000, 'F', 252), +(170058, 'Hillary', 2000, 'F', 252), +(170059, 'Kinsey', 2000, 'F', 252), +(170060, 'Yazmin', 2000, 'F', 252), +(170061, 'Caleigh', 2000, 'F', 251), +(170062, 'Elyssa', 2000, 'F', 251), +(170063, 'Rita', 2000, 'F', 251), +(170064, 'Asha', 2000, 'F', 250), +(170065, 'Dayana', 2000, 'F', 250), +(170066, 'Nikita', 2000, 'F', 250), +(170067, 'Reese', 2000, 'F', 249), +(170068, 'Stefanie', 2000, 'F', 249), +(170069, 'Chantel', 2000, 'F', 248), +(170070, 'Nadine', 2000, 'F', 248), +(170071, 'Samara', 2000, 'F', 248), +(170072, 'Unique', 2000, 'F', 248), +(170073, 'Michele', 2000, 'F', 247), +(170074, 'Sonya', 2000, 'F', 247), +(170075, 'Hazel', 2000, 'F', 246), +(170076, 'Patience', 2000, 'F', 246), +(170077, 'Cielo', 2000, 'F', 245), +(170078, 'Mireya', 2000, 'F', 245), +(170079, 'Paloma', 2000, 'F', 245), +(170080, 'Aryanna', 2000, 'F', 244), +(170081, 'Magdalena', 2000, 'F', 244), +(170082, 'Anaya', 2000, 'F', 243), +(170083, 'Dallas', 2000, 'F', 243), +(170084, 'Arely', 2000, 'F', 242), +(170085, 'Joelle', 2000, 'F', 242), +(170086, 'Kaia', 2000, 'F', 242), +(170087, 'Misty', 2000, 'F', 242), +(170088, 'Norma', 2000, 'F', 242), +(170089, 'Taya', 2000, 'F', 242), +(170090, 'Deasia', 2000, 'F', 241), +(170091, 'Trisha', 2000, 'F', 241), +(170092, 'Elsa', 2000, 'F', 240), +(170093, 'Joana', 2000, 'F', 240), +(170094, 'Alysha', 2000, 'F', 239), +(170095, 'Aracely', 2000, 'F', 239), +(170096, 'Bryana', 2000, 'F', 239), +(170097, 'Dawn', 2000, 'F', 239), +(170098, 'Brionna', 2000, 'F', 238), +(170099, 'Alex', 2000, 'F', 237), +(170100, 'Katerina', 2000, 'F', 236), +(170101, 'Ali', 2000, 'F', 235), +(170102, 'Bonnie', 2000, 'F', 235), +(170103, 'Hadley', 2000, 'F', 235), +(170104, 'Martina', 2000, 'F', 235), +(170105, 'Maryam', 2000, 'F', 235), +(170106, 'Jazmyne', 2000, 'F', 234), +(170107, 'Shaniya', 2000, 'F', 234), +(170108, 'Alycia', 2000, 'F', 233), +(170109, 'Dejah', 2000, 'F', 232), +(170110, 'Emmalee', 2000, 'F', 232), +(170111, 'Estefania', 2000, 'F', 232), +(170112, 'Jakayla', 2000, 'F', 231), +(170113, 'Lilliana', 2000, 'F', 231), +(170114, 'Nyasia', 2000, 'F', 231), +(170115, 'Anjali', 2000, 'F', 230), +(170116, 'Daisha', 2000, 'F', 230), +(170117, 'Myra', 2000, 'F', 230), +(170118, 'Amiya', 2000, 'F', 229), +(170119, 'Belen', 2000, 'F', 229), +(170120, 'Jana', 2000, 'F', 229), +(170121, 'Saige', 2000, 'F', 228), +(170122, 'Aja', 2000, 'F', 227), +(170123, 'Annabel', 2000, 'F', 227), +(170124, 'Scarlett', 2000, 'F', 227), +(170125, 'Joanne', 2000, 'F', 226), +(170126, 'Aliza', 2000, 'F', 225), +(170127, 'Ashly', 2000, 'F', 225), +(170128, 'Cydney', 2000, 'F', 225), +(170129, 'Destany', 2000, 'F', 225), +(170130, 'Fabiola', 2000, 'F', 225), +(170131, 'Gia', 2000, 'F', 225), +(170132, 'Keira', 2000, 'F', 225), +(170133, 'Roxanne', 2000, 'F', 225), +(170134, 'Kaci', 2000, 'F', 224), +(170135, 'Abigale', 2000, 'F', 223), +(170136, 'Abagail', 2000, 'F', 222), +(170137, 'Janiya', 2000, 'F', 222), +(170138, 'Odalys', 2000, 'F', 222), +(170139, 'Aria', 2000, 'F', 221), +(170140, 'Daija', 2000, 'F', 221), +(170141, 'Delia', 2000, 'F', 221), +(170142, 'Kameron', 2000, 'F', 221), +(170143, 'Ashtyn', 2000, 'F', 220), +(170144, 'Dayna', 2000, 'F', 220), +(170145, 'Katy', 2000, 'F', 220), +(170146, 'Lourdes', 2000, 'F', 220), +(170147, 'Raina', 2000, 'F', 220), +(170148, 'Emerald', 2000, 'F', 219), +(170149, 'Kirstin', 2000, 'F', 219), +(170150, 'Marlee', 2000, 'F', 219), +(170151, 'Neha', 2000, 'F', 219), +(170152, 'Beatrice', 2000, 'F', 218), +(170153, 'Blair', 2000, 'F', 218), +(170154, 'Kori', 2000, 'F', 218), +(170155, 'Luisa', 2000, 'F', 218), +(170156, 'Annamarie', 2000, 'F', 217), +(170157, 'Breonna', 2000, 'F', 217), +(170158, 'Jena', 2000, 'F', 217), +(170159, 'Leann', 2000, 'F', 217), +(170160, 'Rhianna', 2000, 'F', 217), +(170161, 'Yasmeen', 2000, 'F', 217), +(170162, 'Yessenia', 2000, 'F', 217), +(170163, 'Breanne', 2000, 'F', 216), +(170164, 'Laisha', 2000, 'F', 216), +(170165, 'Mandy', 2000, 'F', 216), +(170166, 'Amina', 2000, 'F', 215), +(170167, 'Jailyn', 2000, 'F', 215), +(170168, 'Jayde', 2000, 'F', 215), +(170169, 'Jill', 2000, 'F', 215), +(170170, 'Katlynn', 2000, 'F', 215), +(170171, 'Kaylan', 2000, 'F', 215), +(170172, 'Kenna', 2000, 'F', 215), +(170173, 'Antoinette', 2000, 'F', 214), +(170174, 'Rayna', 2000, 'F', 214), +(170175, 'Iyana', 2000, 'F', 213), +(170176, 'Keeley', 2000, 'F', 213), +(170177, 'Kenia', 2000, 'F', 213), +(170178, 'Maiya', 2000, 'F', 213), +(170179, 'Melisa', 2000, 'F', 213), +(170180, 'Sky', 2000, 'F', 213), +(170181, 'Adrian', 2000, 'F', 212), +(170182, 'Marlen', 2000, 'F', 212), +(170183, 'Shianne', 2000, 'F', 212), +(170184, 'Alysia', 2000, 'F', 211), +(170185, 'Audra', 2000, 'F', 211), +(170186, 'Jacquelin', 2000, 'F', 211), +(170187, 'Malaysia', 2000, 'F', 211), +(170188, 'Aubrie', 2000, 'F', 210), +(170189, 'Infant', 2000, 'F', 210), +(170190, 'Kaycee', 2000, 'F', 210), +(170191, 'Kendal', 2000, 'F', 210), +(170192, 'Shelbie', 2000, 'F', 210), +(170193, 'Chana', 2000, 'F', 209), +(170194, 'Kalie', 2000, 'F', 209), +(170195, 'Chelsie', 2000, 'F', 208), +(170196, 'Evelin', 2000, 'F', 208), +(170197, 'Janie', 2000, 'F', 208), +(170198, 'Lana', 2000, 'F', 208), +(170199, 'Leanne', 2000, 'F', 208), +(170200, 'Ashlie', 2000, 'F', 207), +(170201, 'Dalia', 2000, 'F', 207), +(170202, 'Suzanne', 2000, 'F', 207), +(170203, 'Ashanti', 2000, 'F', 206), +(170204, 'Juana', 2000, 'F', 206), +(170205, 'Kelley', 2000, 'F', 206), +(170206, 'Marcella', 2000, 'F', 206), +(170207, 'Tristan', 2000, 'F', 206), +(170208, 'Johana', 2000, 'F', 205), +(170209, 'Lacy', 2000, 'F', 205), +(170210, 'Noel', 2000, 'F', 205), +(170211, 'Bryn', 2000, 'F', 204), +(170212, 'Ivette', 2000, 'F', 204), +(170213, 'Jamya', 2000, 'F', 204), +(170214, 'Mikala', 2000, 'F', 204), +(170215, 'Nyla', 2000, 'F', 204), +(170216, 'Yamile', 2000, 'F', 204), +(170217, 'Jailene', 2000, 'F', 203), +(170218, 'Katlin', 2000, 'F', 203), +(170219, 'Keri', 2000, 'F', 203), +(170220, 'Sarahi', 2000, 'F', 203), +(170221, 'Shauna', 2000, 'F', 203), +(170222, 'Tyanna', 2000, 'F', 203), +(170223, 'Noor', 2000, 'F', 202), +(170224, 'Flor', 2000, 'F', 201), +(170225, 'Makena', 2000, 'F', 201), +(170226, 'Miya', 2000, 'F', 201), +(170227, 'Sade', 2000, 'F', 201), +(170228, 'Natalee', 2000, 'F', 200), +(170229, 'Pearl', 2000, 'F', 200), +(170230, 'Corina', 2000, 'F', 199), +(170231, 'Starr', 2000, 'F', 199), +(170232, 'Hayleigh', 2000, 'F', 198), +(170233, 'Niya', 2000, 'F', 198), +(170234, 'Star', 2000, 'F', 198), +(170235, 'Baylie', 2000, 'F', 197), +(170236, 'Beyonce', 2000, 'F', 197), +(170237, 'Carrington', 2000, 'F', 197), +(170238, 'Rochelle', 2000, 'F', 197), +(170239, 'Roxana', 2000, 'F', 197), +(170240, 'Vanesa', 2000, 'F', 197), +(170241, 'Charisma', 2000, 'F', 196), +(170242, 'Santana', 2000, 'F', 196), +(170243, 'Frida', 2000, 'F', 195), +(170244, 'Melany', 2000, 'F', 195), +(170245, 'Octavia', 2000, 'F', 195), +(170246, 'Cameryn', 2000, 'F', 194), +(170247, 'Jasmyne', 2000, 'F', 194), +(170248, 'Keyla', 2000, 'F', 194), +(170249, 'Lilia', 2000, 'F', 194), +(170250, 'Lucero', 2000, 'F', 194), +(170251, 'Madalynn', 2000, 'F', 194), +(170252, 'Jackelyn', 2000, 'F', 193), +(170253, 'Libby', 2000, 'F', 193), +(170254, 'Makala', 2000, 'F', 193), +(170255, 'Danica', 2000, 'F', 192), +(170256, 'Halee', 2000, 'F', 192), +(170257, 'Stevie', 2000, 'F', 192), +(170258, 'Cailey', 2000, 'F', 191), +(170259, 'Charlene', 2000, 'F', 191), +(170260, 'Dania', 2000, 'F', 191), +(170261, 'Denisse', 2000, 'F', 191), +(170262, 'Iyanna', 2000, 'F', 191), +(170263, 'Liberty', 2000, 'F', 191), +(170264, 'Shana', 2000, 'F', 191), +(170265, 'Tammy', 2000, 'F', 191), +(170266, 'Tayla', 2000, 'F', 191), +(170267, 'Elisha', 2000, 'F', 190), +(170268, 'Kayle', 2000, 'F', 190), +(170269, 'Shyla', 2000, 'F', 190), +(170270, 'Dina', 2000, 'F', 189), +(170271, 'Eunice', 2000, 'F', 189), +(170272, 'Judy', 2000, 'F', 189), +(170273, 'Priscila', 2000, 'F', 189), +(170274, 'Ada', 2000, 'F', 188), +(170275, 'Carleigh', 2000, 'F', 188), +(170276, 'Janette', 2000, 'F', 188), +(170277, 'Jaylene', 2000, 'F', 188), +(170278, 'Latavia', 2000, 'F', 188), +(170279, 'Xiomara', 2000, 'F', 188), +(170280, 'Caylee', 2000, 'F', 187), +(170281, 'Constance', 2000, 'F', 187), +(170282, 'Gwyneth', 2000, 'F', 187), +(170283, 'Lexis', 2000, 'F', 187), +(170284, 'Yajaira', 2000, 'F', 187), +(170285, 'Kaytlin', 2000, 'F', 186), +(170286, 'Aryana', 2000, 'F', 185), +(170287, 'Jocelyne', 2000, 'F', 185), +(170288, 'Myranda', 2000, 'F', 185), +(170289, 'Tiffani', 2000, 'F', 185), +(170290, 'Gladys', 2000, 'F', 184), +(170291, 'Kassie', 2000, 'F', 184), +(170292, 'Kaylen', 2000, 'F', 184), +(170293, 'Mykayla', 2000, 'F', 184), +(170294, 'Anabel', 2000, 'F', 183), +(170295, 'Beverly', 2000, 'F', 183), +(170296, 'Blake', 2000, 'F', 183), +(170297, 'Demi', 2000, 'F', 183), +(170298, 'Emani', 2000, 'F', 183), +(170299, 'Justina', 2000, 'F', 183), +(170300, 'Keila', 2000, 'F', 183), +(170301, 'Makaila', 2000, 'F', 183), +(170302, 'Colette', 2000, 'F', 182), +(170303, 'Estefany', 2000, 'F', 182), +(170304, 'Jalynn', 2000, 'F', 182), +(170305, 'Joslyn', 2000, 'F', 182), +(170306, 'Kerry', 2000, 'F', 182), +(170307, 'Marisela', 2000, 'F', 182), +(170308, 'Miah', 2000, 'F', 182), +(170309, 'Anais', 2000, 'F', 181), +(170310, 'Cherish', 2000, 'F', 181), +(170311, 'Destinie', 2000, 'F', 181), +(170312, 'Elle', 2000, 'F', 181), +(170313, 'Jennie', 2000, 'F', 181), +(170314, 'Lacie', 2000, 'F', 181), +(170315, 'Odalis', 2000, 'F', 181), +(170316, 'Stormy', 2000, 'F', 181), +(170317, 'Daria', 2000, 'F', 180), +(170318, 'Halley', 2000, 'F', 180), +(170319, 'Lina', 2000, 'F', 180), +(170320, 'Tabatha', 2000, 'F', 180), +(170321, 'Angeline', 2000, 'F', 179), +(170322, 'Hollie', 2000, 'F', 179), +(170323, 'Jayme', 2000, 'F', 179), +(170324, 'Estefani', 2000, 'F', 178), +(170325, 'Jaylynn', 2000, 'F', 178), +(170326, 'Maricela', 2000, 'F', 178), +(170327, 'Maxine', 2000, 'F', 178), +(170328, 'Mina', 2000, 'F', 178), +(170329, 'Shaelyn', 2000, 'F', 177), +(170330, 'Maryann', 2000, 'F', 176), +(170331, 'Mckinley', 2000, 'F', 176), +(170332, 'Alaysia', 2000, 'F', 175), +(170333, 'Betty', 2000, 'F', 175), +(170334, 'Jessika', 2000, 'F', 175), +(170335, 'Lidia', 2000, 'F', 175), +(170336, 'Samira', 2000, 'F', 175), +(170337, 'Shelbi', 2000, 'F', 175), +(170338, 'Susanna', 2000, 'F', 175), +(170339, 'Connie', 2000, 'F', 174), +(170340, 'Iman', 2000, 'F', 174), +(170341, 'Mira', 2000, 'F', 174), +(170342, 'Sariah', 2000, 'F', 174), +(170343, 'Shanice', 2000, 'F', 174), +(170344, 'Jaylyn', 2000, 'F', 173), +(170345, 'Kristi', 2000, 'F', 173), +(170346, 'Serina', 2000, 'F', 173), +(170347, 'Shae', 2000, 'F', 173), +(170348, 'Taniya', 2000, 'F', 173), +(170349, 'Winter', 2000, 'F', 173), +(170350, 'Mindy', 2000, 'F', 172), +(170351, 'Rhea', 2000, 'F', 172), +(170352, 'Tristen', 2000, 'F', 172), +(170353, 'Danae', 2000, 'F', 171), +(170354, 'Jamia', 2000, 'F', 171), +(170355, 'Natalya', 2000, 'F', 171), +(170356, 'Siena', 2000, 'F', 171), +(170357, 'Areli', 2000, 'F', 170), +(170358, 'Daja', 2000, 'F', 170), +(170359, 'Jodi', 2000, 'F', 170), +(170360, 'Leeann', 2000, 'F', 170), +(170361, 'Rianna', 2000, 'F', 170), +(170362, 'Yulissa', 2000, 'F', 170), +(170363, 'Alyssia', 2000, 'F', 169), +(170364, 'Ciarra', 2000, 'F', 169), +(170365, 'Delanie', 2000, 'F', 169), +(170366, 'Nautica', 2000, 'F', 169), +(170367, 'Tamera', 2000, 'F', 169), +(170368, 'Tionna', 2000, 'F', 169), +(170369, 'Alecia', 2000, 'F', 168), +(170370, 'Astrid', 2000, 'F', 168), +(170371, 'Breann', 2000, 'F', 168), +(170372, 'Journey', 2000, 'F', 168), +(170373, 'Kaiya', 2000, 'F', 168), +(170374, 'Lynn', 2000, 'F', 168), +(170375, 'Zariah', 2000, 'F', 168), +(170376, 'Adilene', 2000, 'F', 167), +(170377, 'Annalisa', 2000, 'F', 167), +(170378, 'Chyanne', 2000, 'F', 167), +(170379, 'Jalen', 2000, 'F', 167), +(170380, 'Kyara', 2000, 'F', 167), +(170381, 'Camilla', 2000, 'F', 166), +(170382, 'Monet', 2000, 'F', 166), +(170383, 'Priya', 2000, 'F', 166), +(170384, 'Akira', 2000, 'F', 165), +(170385, 'Cori', 2000, 'F', 165), +(170386, 'Fallon', 2000, 'F', 165), +(170387, 'Giana', 2000, 'F', 165), +(170388, 'Naya', 2000, 'F', 165), +(170389, 'Shreya', 2000, 'F', 165), +(170390, 'Tanisha', 2000, 'F', 165), +(170391, 'Debra', 2000, 'F', 164), +(170392, 'Irma', 2000, 'F', 164), +(170393, 'Lissette', 2000, 'F', 164), +(170394, 'Lorraine', 2000, 'F', 164), +(170395, 'Magaly', 2000, 'F', 164), +(170396, 'Mahogany', 2000, 'F', 164), +(170397, 'Marcela', 2000, 'F', 164), +(170398, 'Abrianna', 2000, 'F', 163), +(170399, 'Alexi', 2000, 'F', 163), +(170400, 'Amaris', 2000, 'F', 163), +(170401, 'Cailyn', 2000, 'F', 163), +(170402, 'Hali', 2000, 'F', 163), +(170403, 'Joan', 2000, 'F', 163), +(170404, 'Kelsea', 2000, 'F', 163), +(170405, 'Lainey', 2000, 'F', 163), +(170406, 'Viridiana', 2000, 'F', 163), +(170407, 'Chastity', 2000, 'F', 162), +(170408, 'Isabell', 2000, 'F', 162), +(170409, 'Maleah', 2000, 'F', 162), +(170410, 'Tasha', 2000, 'F', 162), +(170411, 'Terra', 2000, 'F', 162), +(170412, 'Beth', 2000, 'F', 161), +(170413, 'Elana', 2000, 'F', 161), +(170414, 'Ivanna', 2000, 'F', 161), +(170415, 'Mariel', 2000, 'F', 161), +(170416, 'Maureen', 2000, 'F', 161), +(170417, 'Shantel', 2000, 'F', 161), +(170418, 'Coral', 2000, 'F', 160), +(170419, 'Grayson', 2000, 'F', 160), +(170420, 'Katheryn', 2000, 'F', 160), +(170421, 'Olga', 2000, 'F', 160), +(170422, 'Addie', 2000, 'F', 159), +(170423, 'Bayleigh', 2000, 'F', 158), +(170424, 'Rowan', 2000, 'F', 158), +(170425, 'Taliyah', 2000, 'F', 158), +(170426, 'Yareli', 2000, 'F', 158), +(170427, 'Betsy', 2000, 'F', 157), +(170428, 'Geneva', 2000, 'F', 157), +(170429, 'Grecia', 2000, 'F', 157), +(170430, 'Kristian', 2000, 'F', 157), +(170431, 'Kya', 2000, 'F', 157), +(170432, 'Leigha', 2000, 'F', 157), +(170433, 'Racheal', 2000, 'F', 157), +(170434, 'Tamya', 2000, 'F', 157), +(170435, 'Yoselin', 2000, 'F', 157), +(170436, 'Alea', 2000, 'F', 156), +(170437, 'Annemarie', 2000, 'F', 156), +(170438, 'Breeanna', 2000, 'F', 156), +(170439, 'Harlee', 2000, 'F', 156), +(170440, 'Marlena', 2000, 'F', 156), +(170441, 'Shay', 2000, 'F', 156), +(170442, 'Zion', 2000, 'F', 156), +(170443, 'Citlali', 2000, 'F', 155), +(170444, 'Colby', 2000, 'F', 155), +(170445, 'Julisa', 2000, 'F', 155), +(170446, 'Simran', 2000, 'F', 155), +(170447, 'Yaritza', 2000, 'F', 155), +(170448, 'Cathryn', 2000, 'F', 154), +(170449, 'Griselda', 2000, 'F', 154), +(170450, 'Jessenia', 2000, 'F', 154), +(170451, 'Lucille', 2000, 'F', 154), +(170452, 'Annabella', 2000, 'F', 153), +(170453, 'Dara', 2000, 'F', 153), +(170454, 'Kala', 2000, 'F', 153), +(170455, 'Madysen', 2000, 'F', 153), +(170456, 'Micayla', 2000, 'F', 153), +(170457, 'Sommer', 2000, 'F', 153), +(170458, 'Haily', 2000, 'F', 152), +(170459, 'Karyme', 2000, 'F', 152), +(170460, 'Lisbeth', 2000, 'F', 152), +(170461, 'Shanna', 2000, 'F', 152), +(170462, 'Brittani', 2000, 'F', 151), +(170463, 'China', 2000, 'F', 151), +(170464, 'Daijah', 2000, 'F', 151), +(170465, 'Danika', 2000, 'F', 151), +(170466, 'Kerri', 2000, 'F', 151), +(170467, 'Keyanna', 2000, 'F', 151), +(170468, 'Monika', 2000, 'F', 151), +(170469, 'Triniti', 2000, 'F', 151), +(170470, 'Cailin', 2000, 'F', 150), +(170471, 'Isela', 2000, 'F', 150), +(170472, 'Kalli', 2000, 'F', 150), +(170473, 'Amalia', 2000, 'F', 149), +(170474, 'Brea', 2000, 'F', 149), +(170475, 'Dajah', 2000, 'F', 149), +(170476, 'Jolene', 2000, 'F', 149), +(170477, 'Kaylea', 2000, 'F', 149), +(170478, 'Mason', 2000, 'F', 149), +(170479, 'Rivka', 2000, 'F', 149), +(170480, 'Yessica', 2000, 'F', 149), +(170481, 'Bobbie', 2000, 'F', 148), +(170482, 'Tyana', 2000, 'F', 148), +(170483, 'Shelly', 2000, 'F', 147), +(170484, 'Billie', 2000, 'F', 146), +(170485, 'Chantal', 2000, 'F', 146), +(170486, 'Elsie', 2000, 'F', 146), +(170487, 'Jami', 2000, 'F', 146), +(170488, 'Kaytlyn', 2000, 'F', 146), +(170489, 'Nathaly', 2000, 'F', 146), +(170490, 'Pauline', 2000, 'F', 146), +(170491, 'Aidan', 2000, 'F', 145), +(170492, 'Aleena', 2000, 'F', 145), +(170493, 'Danyelle', 2000, 'F', 145), +(170494, 'Jaylen', 2000, 'F', 145), +(170495, 'Katya', 2000, 'F', 145), +(170496, 'Kendyl', 2000, 'F', 145), +(170497, 'Lesli', 2000, 'F', 145), +(170498, 'Mari', 2000, 'F', 145), +(170499, 'Analisa', 2000, 'F', 144), +(170500, 'Kalista', 2000, 'F', 144), +(170501, 'Kayleen', 2000, 'F', 144), +(170502, 'Kortney', 2000, 'F', 144), +(170503, 'Kristyn', 2000, 'F', 144), +(170504, 'Lola', 2000, 'F', 144), +(170505, 'Luna', 2000, 'F', 144), +(170506, 'Brieanna', 2000, 'F', 143), +(170507, 'Corrine', 2000, 'F', 143), +(170508, 'Harlie', 2000, 'F', 143), +(170509, 'Cloe', 2000, 'F', 142), +(170510, 'Jackie', 2000, 'F', 142), +(170511, 'Kalee', 2000, 'F', 142), +(170512, 'Leandra', 2000, 'F', 142), +(170513, 'Magali', 2000, 'F', 142), +(170514, 'Shamya', 2000, 'F', 142), +(170515, 'Tatiyana', 2000, 'F', 142), +(170516, 'Zainab', 2000, 'F', 142), +(170517, 'Aliah', 2000, 'F', 141), +(170518, 'Alliyah', 2000, 'F', 141), +(170519, 'Anisa', 2000, 'F', 141), +(170520, 'Elexis', 2000, 'F', 141), +(170521, 'Ireland', 2000, 'F', 141), +(170522, 'Jala', 2000, 'F', 141), +(170523, 'Kylah', 2000, 'F', 141), +(170524, 'Marion', 2000, 'F', 141), +(170525, 'Mercedez', 2000, 'F', 141), +(170526, 'Alyse', 2000, 'F', 140), +(170527, 'Annmarie', 2000, 'F', 140), +(170528, 'Azaria', 2000, 'F', 140), +(170529, 'Gissel', 2000, 'F', 140), +(170530, 'Jacy', 2000, 'F', 140), +(170531, 'Joann', 2000, 'F', 140), +(170532, 'Kiya', 2000, 'F', 140), +(170533, 'Liza', 2000, 'F', 140), +(170534, 'Macayla', 2000, 'F', 140), +(170535, 'Britany', 2000, 'F', 139), +(170536, 'Kristal', 2000, 'F', 139), +(170537, 'Maren', 2000, 'F', 139), +(170538, 'Acacia', 2000, 'F', 138), +(170539, 'Alli', 2000, 'F', 138), +(170540, 'Christen', 2000, 'F', 138), +(170541, 'Deana', 2000, 'F', 138), +(170542, 'Makaela', 2000, 'F', 138), +(170543, 'Makenzi', 2000, 'F', 138), +(170544, 'Tonya', 2000, 'F', 138), +(170545, 'Dahlia', 2000, 'F', 137), +(170546, 'Keyana', 2000, 'F', 137), +(170547, 'Krysta', 2000, 'F', 137), +(170548, 'Nallely', 2000, 'F', 137), +(170549, 'Phoenix', 2000, 'F', 137), +(170550, 'Rosemarie', 2000, 'F', 137), +(170551, 'Emerson', 2000, 'F', 136), +(170552, 'Jaci', 2000, 'F', 136), +(170553, 'Jacie', 2000, 'F', 136), +(170554, 'Jalisa', 2000, 'F', 136), +(170555, 'Joseline', 2000, 'F', 136), +(170556, 'Karsyn', 2000, 'F', 136), +(170557, 'Keisha', 2000, 'F', 136), +(170558, 'Marianne', 2000, 'F', 136), +(170559, 'Maryjane', 2000, 'F', 136), +(170560, 'Terri', 2000, 'F', 136), +(170561, 'Tyasia', 2000, 'F', 136), +(170562, 'Yamileth', 2000, 'F', 136), +(170563, 'Amiyah', 2000, 'F', 135), +(170564, 'Darcy', 2000, 'F', 135), +(170565, 'Galilea', 2000, 'F', 135), +(170566, 'Georgina', 2000, 'F', 135), +(170567, 'Harper', 2000, 'F', 135), +(170568, 'Tasia', 2000, 'F', 135), +(170569, 'Adia', 2000, 'F', 134), +(170570, 'Bree', 2000, 'F', 134), +(170571, 'Ivory', 2000, 'F', 134), +(170572, 'Kierstin', 2000, 'F', 134), +(170573, 'Meadow', 2000, 'F', 134), +(170574, 'Nathalia', 2000, 'F', 134), +(170575, 'Xochitl', 2000, 'F', 134), +(170576, 'Adelaide', 2000, 'F', 133), +(170577, 'Amberly', 2000, 'F', 133), +(170578, 'Calli', 2000, 'F', 133), +(170579, 'Deandra', 2000, 'F', 133), +(170580, 'Desire', 2000, 'F', 133), +(170581, 'Kimberlee', 2000, 'F', 133), +(170582, 'Mackenna', 2000, 'F', 133), +(170583, 'Mallorie', 2000, 'F', 133), +(170584, 'Anisha', 2000, 'F', 132), +(170585, 'Brigid', 2000, 'F', 132), +(170586, 'Franchesca', 2000, 'F', 132), +(170587, 'Janna', 2000, 'F', 132), +(170588, 'Jocelynn', 2000, 'F', 132), +(170589, 'Keanna', 2000, 'F', 132), +(170590, 'Kia', 2000, 'F', 132), +(170591, 'Mae', 2000, 'F', 132), +(170592, 'Makiya', 2000, 'F', 132), +(170593, 'Yahaira', 2000, 'F', 132), +(170594, 'Adamaris', 2000, 'F', 131), +(170595, 'Ania', 2000, 'F', 131), +(170596, 'Ivonne', 2000, 'F', 131), +(170597, 'Janaya', 2000, 'F', 131), +(170598, 'Kai', 2000, 'F', 131), +(170599, 'Karah', 2000, 'F', 131), +(170600, 'Marin', 2000, 'F', 131), +(170601, 'Rosalie', 2000, 'F', 131), +(170602, 'Aleigha', 2000, 'F', 130), +(170603, 'Ashli', 2000, 'F', 130), +(170604, 'Mika', 2000, 'F', 130), +(170605, 'Penelope', 2000, 'F', 130), +(170606, 'Rosario', 2000, 'F', 130), +(170607, 'Aislinn', 2000, 'F', 129), +(170608, 'Amirah', 2000, 'F', 129), +(170609, 'Charlie', 2000, 'F', 129), +(170610, 'Jaelynn', 2000, 'F', 129), +(170611, 'Madelyne', 2000, 'F', 129), +(170612, 'Renae', 2000, 'F', 129), +(170613, 'Aiyanna', 2000, 'F', 128), +(170614, 'Anabelle', 2000, 'F', 128), +(170615, 'Cinthia', 2000, 'F', 128), +(170616, 'Dylan', 2000, 'F', 128), +(170617, 'Eboni', 2000, 'F', 128), +(170618, 'Janeth', 2000, 'F', 128), +(170619, 'Jayna', 2000, 'F', 128), +(170620, 'Kinley', 2000, 'F', 128), +(170621, 'Laken', 2000, 'F', 128), +(170622, 'Lyndsay', 2000, 'F', 128), +(170623, 'Mikaila', 2000, 'F', 128), +(170624, 'Moira', 2000, 'F', 128), +(170625, 'Nikole', 2000, 'F', 128), +(170626, 'Vicky', 2000, 'F', 128), +(170627, 'Amie', 2000, 'F', 127), +(170628, 'Belinda', 2000, 'F', 127), +(170629, 'Cheryl', 2000, 'F', 127), +(170630, 'Chynna', 2000, 'F', 127), +(170631, 'Dora', 2000, 'F', 127), +(170632, 'Jaquelyn', 2000, 'F', 127), +(170633, 'Nakia', 2000, 'F', 127), +(170634, 'Tehya', 2000, 'F', 127), +(170635, 'Treasure', 2000, 'F', 127), +(170636, 'Valencia', 2000, 'F', 127), +(170637, 'Adela', 2000, 'F', 126), +(170638, 'Aliana', 2000, 'F', 126), +(170639, 'Alora', 2000, 'F', 126), +(170640, 'Ashely', 2000, 'F', 126), +(170641, 'Averi', 2000, 'F', 126), +(170642, 'Eleni', 2000, 'F', 126), +(170643, 'Janell', 2000, 'F', 126), +(170644, 'Kalynn', 2000, 'F', 126), +(170645, 'Livia', 2000, 'F', 126), +(170646, 'Mona', 2000, 'F', 126), +(170647, 'Rena', 2000, 'F', 126), +(170648, 'Riya', 2000, 'F', 126), +(170649, 'Sherry', 2000, 'F', 126), +(170650, 'Tionne', 2000, 'F', 126), +(170651, 'Annelise', 2000, 'F', 125), +(170652, 'Brissa', 2000, 'F', 125), +(170653, 'Jania', 2000, 'F', 125), +(170654, 'Jensen', 2000, 'F', 125), +(170655, 'Lora', 2000, 'F', 125), +(170656, 'Lynette', 2000, 'F', 125), +(170657, 'Samaria', 2000, 'F', 125), +(170658, 'Shanya', 2000, 'F', 125), +(170659, 'Ximena', 2000, 'F', 125), +(170660, 'Adrianne', 2000, 'F', 124), +(170661, 'Ainsley', 2000, 'F', 124), +(170662, 'Bobbi', 2000, 'F', 124), +(170663, 'Heidy', 2000, 'F', 124), +(170664, 'Jaidyn', 2000, 'F', 124), +(170665, 'Linnea', 2000, 'F', 124), +(170666, 'Malorie', 2000, 'F', 124), +(170667, 'Melia', 2000, 'F', 124), +(170668, 'Mickayla', 2000, 'F', 124), +(170669, 'Riana', 2000, 'F', 124), +(170670, 'Roxanna', 2000, 'F', 124), +(170671, 'Tiarra', 2000, 'F', 124), +(170672, 'Christie', 2000, 'F', 123), +(170673, 'Domonique', 2000, 'F', 123), +(170674, 'Dymond', 2000, 'F', 123), +(170675, 'Kathrine', 2000, 'F', 123), +(170676, 'Keyonna', 2000, 'F', 123), +(170677, 'Kiah', 2000, 'F', 123), +(170678, 'Kyndall', 2000, 'F', 123), +(170679, 'Leia', 2000, 'F', 123), +(170680, 'Leigh', 2000, 'F', 123), +(170681, 'Maliyah', 2000, 'F', 123), +(170682, 'Montserrat', 2000, 'F', 123), +(170683, 'Sonja', 2000, 'F', 123), +(170684, 'Symone', 2000, 'F', 123), +(170685, 'Allysa', 2000, 'F', 122), +(170686, 'Anyssa', 2000, 'F', 122), +(170687, 'Ariella', 2000, 'F', 122), +(170688, 'Johnna', 2000, 'F', 122), +(170689, 'Keegan', 2000, 'F', 122), +(170690, 'Natali', 2000, 'F', 122), +(170691, 'Yulisa', 2000, 'F', 122), +(170692, 'Alesha', 2000, 'F', 121), +(170693, 'Demetria', 2000, 'F', 121), +(170694, 'Keana', 2000, 'F', 121), +(170695, 'Lynsey', 2000, 'F', 121), +(170696, 'Siera', 2000, 'F', 121), +(170697, 'Tatyanna', 2000, 'F', 121), +(170698, 'Zara', 2000, 'F', 121), +(170699, 'Annaliese', 2000, 'F', 120), +(170700, 'Chiara', 2000, 'F', 120), +(170701, 'Emalee', 2000, 'F', 120), +(170702, 'Giavanna', 2000, 'F', 120), +(170703, 'Hattie', 2000, 'F', 120), +(170704, 'Kimberley', 2000, 'F', 120), +(170705, 'Amiah', 2000, 'F', 119), +(170706, 'Autum', 2000, 'F', 119), +(170707, 'Briley', 2000, 'F', 119), +(170708, 'Cathy', 2000, 'F', 119), +(170709, 'Christin', 2000, 'F', 119), +(170710, 'Jazlynn', 2000, 'F', 119), +(170711, 'Bryce', 2000, 'F', 118), +(170712, 'Chase', 2000, 'F', 118), +(170713, 'Cherokee', 2000, 'F', 118), +(170714, 'Devan', 2000, 'F', 118), +(170715, 'Ilana', 2000, 'F', 118), +(170716, 'Jean', 2000, 'F', 118), +(170717, 'Jesenia', 2000, 'F', 118), +(170718, 'Lela', 2000, 'F', 118), +(170719, 'Lianna', 2000, 'F', 118), +(170720, 'Rubi', 2000, 'F', 118), +(170721, 'Trista', 2000, 'F', 117), +(170722, 'Amaiya', 2000, 'F', 116), +(170723, 'Farrah', 2000, 'F', 116), +(170724, 'Francis', 2000, 'F', 116), +(170725, 'Imari', 2000, 'F', 116), +(170726, 'Kim', 2000, 'F', 116), +(170727, 'Pilar', 2000, 'F', 116), +(170728, 'Rileigh', 2000, 'F', 116), +(170729, 'Selah', 2000, 'F', 116), +(170730, 'Selene', 2000, 'F', 116), +(170731, 'Susannah', 2000, 'F', 116), +(170732, 'Alannah', 2000, 'F', 115), +(170733, 'Ananda', 2000, 'F', 115), +(170734, 'Madelin', 2000, 'F', 115), +(170735, 'Madilynn', 2000, 'F', 115), +(170736, 'Nicolle', 2000, 'F', 115), +(170737, 'Sana', 2000, 'F', 115), +(170738, 'Valery', 2000, 'F', 115), +(170739, 'Alani', 2000, 'F', 114), +(170740, 'Edna', 2000, 'F', 114), +(170741, 'Emelia', 2000, 'F', 114), +(170742, 'Hayli', 2000, 'F', 114), +(170743, 'Janay', 2000, 'F', 114), +(170744, 'Jeniffer', 2000, 'F', 114), +(170745, 'Joselin', 2000, 'F', 114), +(170746, 'June', 2000, 'F', 114), +(170747, 'Marla', 2000, 'F', 114), +(170748, 'Michael', 2000, 'F', 114), +(170749, 'Noa', 2000, 'F', 114), +(170750, 'Shira', 2000, 'F', 114), +(170751, 'Ayesha', 2000, 'F', 113), +(170752, 'Dixie', 2000, 'F', 113), +(170753, 'Hanah', 2000, 'F', 113), +(170754, 'Jaycie', 2000, 'F', 113), +(170755, 'Juliann', 2000, 'F', 113), +(170756, 'Maddie', 2000, 'F', 113), +(170757, 'Nelly', 2000, 'F', 113), +(170758, 'Zahra', 2000, 'F', 113), +(170759, 'Jadah', 2000, 'F', 112), +(170760, 'Jaela', 2000, 'F', 112), +(170761, 'Karolina', 2000, 'F', 112), +(170762, 'Laci', 2000, 'F', 112), +(170763, 'Lanie', 2000, 'F', 112), +(170764, 'Malka', 2000, 'F', 112), +(170765, 'Marguerite', 2000, 'F', 112), +(170766, 'Mercy', 2000, 'F', 112), +(170767, 'Milena', 2000, 'F', 112), +(170768, 'Tyla', 2000, 'F', 112), +(170769, 'Bayley', 2000, 'F', 111), +(170770, 'Callista', 2000, 'F', 111), +(170771, 'Candy', 2000, 'F', 111), +(170772, 'Caylin', 2000, 'F', 111), +(170773, 'Jessi', 2000, 'F', 111), +(170774, 'Julieta', 2000, 'F', 111), +(170775, 'Karleigh', 2000, 'F', 111), +(170776, 'Kyndal', 2000, 'F', 111), +(170777, 'Lizet', 2000, 'F', 111), +(170778, 'Louise', 2000, 'F', 111), +(170779, 'Sanjana', 2000, 'F', 111), +(170780, 'Sheyla', 2000, 'F', 111), +(170781, 'Shivani', 2000, 'F', 111), +(170782, 'Thea', 2000, 'F', 111), +(170783, 'Tracey', 2000, 'F', 111), +(170784, 'Aya', 2000, 'F', 110), +(170785, 'Bernadette', 2000, 'F', 110), +(170786, 'Bethanie', 2000, 'F', 110), +(170787, 'Danna', 2000, 'F', 110), +(170788, 'Daysha', 2000, 'F', 110), +(170789, 'Jayleen', 2000, 'F', 110), +(170790, 'Kaeli', 2000, 'F', 110), +(170791, 'Kaliyah', 2000, 'F', 110), +(170792, 'Karime', 2000, 'F', 110), +(170793, 'Kinsley', 2000, 'F', 110), +(170794, 'Linsey', 2000, 'F', 110), +(170795, 'Lucinda', 2000, 'F', 110), +(170796, 'Maira', 2000, 'F', 110), +(170797, 'Tierney', 2000, 'F', 110), +(170798, 'Angeles', 2000, 'F', 109), +(170799, 'Anjelica', 2000, 'F', 109), +(170800, 'Aysha', 2000, 'F', 109), +(170801, 'Bridgett', 2000, 'F', 109), +(170802, 'Brookelyn', 2000, 'F', 109), +(170803, 'Divya', 2000, 'F', 109), +(170804, 'Ginger', 2000, 'F', 109), +(170805, 'Jamila', 2000, 'F', 109), +(170806, 'Kaili', 2000, 'F', 109), +(170807, 'Klarissa', 2000, 'F', 109), +(170808, 'Makaylah', 2000, 'F', 109), +(170809, 'Meg', 2000, 'F', 109), +(170810, 'Raelynn', 2000, 'F', 109), +(170811, 'Salena', 2000, 'F', 109), +(170812, 'Sequoia', 2000, 'F', 109), +(170813, 'Amia', 2000, 'F', 108), +(170814, 'Ashlin', 2000, 'F', 108), +(170815, 'Dayanara', 2000, 'F', 108), +(170816, 'Isha', 2000, 'F', 108), +(170817, 'Jordin', 2000, 'F', 108), +(170818, 'Kelis', 2000, 'F', 108), +(170819, 'Krysten', 2000, 'F', 108), +(170820, 'Leona', 2000, 'F', 108), +(170821, 'Lexy', 2000, 'F', 108), +(170822, 'Notnamed', 2000, 'F', 108), +(170823, 'Raelyn', 2000, 'F', 108), +(170824, 'Sabina', 2000, 'F', 108), +(170825, 'Sahara', 2000, 'F', 108), +(170826, 'Shekinah', 2000, 'F', 108), +(170827, 'Siobhan', 2000, 'F', 108), +(170828, 'Tiera', 2000, 'F', 108), +(170829, 'Yaquelin', 2000, 'F', 108), +(170830, 'Alanis', 2000, 'F', 107), +(170831, 'Ambria', 2000, 'F', 107), +(170832, 'Anai', 2000, 'F', 107), +(170833, 'Caley', 2000, 'F', 107), +(170834, 'Catrina', 2000, 'F', 107), +(170835, 'Gemma', 2000, 'F', 107), +(170836, 'Jodie', 2000, 'F', 107), +(170837, 'Malika', 2000, 'F', 107), +(170838, 'Marjorie', 2000, 'F', 107), +(170839, 'Sunny', 2000, 'F', 107), +(170840, 'Abriana', 2000, 'F', 106), +(170841, 'Alexcia', 2000, 'F', 106), +(170842, 'Ayleen', 2000, 'F', 106), +(170843, 'Brynne', 2000, 'F', 106), +(170844, 'Dalila', 2000, 'F', 106), +(170845, 'Erykah', 2000, 'F', 106), +(170846, 'Ileana', 2000, 'F', 106), +(170847, 'Jaila', 2000, 'F', 106), +(170848, 'Jessalyn', 2000, 'F', 106), +(170849, 'Kirstyn', 2000, 'F', 106), +(170850, 'Margo', 2000, 'F', 106), +(170851, 'Myia', 2000, 'F', 106), +(170852, 'Mykala', 2000, 'F', 106), +(170853, 'Stacie', 2000, 'F', 106), +(170854, 'Tristin', 2000, 'F', 106), +(170855, 'Analise', 2000, 'F', 105), +(170856, 'Andie', 2000, 'F', 105), +(170857, 'Arden', 2000, 'F', 105), +(170858, 'Averie', 2000, 'F', 105), +(170859, 'Aysia', 2000, 'F', 105), +(170860, 'Brylee', 2000, 'F', 105), +(170861, 'Doris', 2000, 'F', 105), +(170862, 'Janine', 2000, 'F', 105), +(170863, 'Jennah', 2000, 'F', 105), +(170864, 'Keona', 2000, 'F', 105), +(170865, 'Leyla', 2000, 'F', 105), +(170866, 'Shakayla', 2000, 'F', 105), +(170867, 'Taylar', 2000, 'F', 105), +(170868, 'Tea', 2000, 'F', 105), +(170869, 'Verania', 2000, 'F', 105), +(170870, 'Allissa', 2000, 'F', 104), +(170871, 'Arleth', 2000, 'F', 104), +(170872, 'Babygirl', 2000, 'F', 104), +(170873, 'Christianna', 2000, 'F', 104), +(170874, 'Corrina', 2000, 'F', 104), +(170875, 'Holland', 2000, 'F', 104), +(170876, 'Josefina', 2000, 'F', 104), +(170877, 'Julian', 2000, 'F', 104), +(170878, 'Keyara', 2000, 'F', 104), +(170879, 'Rayne', 2000, 'F', 104), +(170880, 'Rayven', 2000, 'F', 104), +(170881, 'Shiann', 2000, 'F', 104), +(170882, 'Stefani', 2000, 'F', 104), +(170883, 'Stefany', 2000, 'F', 104), +(170884, 'Whitley', 2000, 'F', 104), +(170885, 'Annalee', 2000, 'F', 103), +(170886, 'Asya', 2000, 'F', 103), +(170887, 'Charlize', 2000, 'F', 103), +(170888, 'Chassidy', 2000, 'F', 103), +(170889, 'Deisy', 2000, 'F', 103), +(170890, 'Emery', 2000, 'F', 103), +(170891, 'Francisca', 2000, 'F', 103), +(170892, 'Gissell', 2000, 'F', 103), +(170893, 'Kami', 2000, 'F', 103), +(170894, 'Khadijah', 2000, 'F', 103), +(170895, 'Rhonda', 2000, 'F', 103), +(170896, 'Vera', 2000, 'F', 103), +(170897, 'Yazmine', 2000, 'F', 103), +(170898, 'Zaira', 2000, 'F', 103), +(170899, 'Ciana', 2000, 'F', 102), +(170900, 'Ester', 2000, 'F', 102), +(170901, 'Gisel', 2000, 'F', 102), +(170902, 'Gracelyn', 2000, 'F', 102), +(170903, 'Jorden', 2000, 'F', 102), +(170904, 'Kelsy', 2000, 'F', 102), +(170905, 'Mackenzi', 2000, 'F', 102), +(170906, 'Oriana', 2000, 'F', 102), +(170907, 'Reece', 2000, 'F', 102), +(170908, 'Saira', 2000, 'F', 102), +(170909, 'Tanner', 2000, 'F', 102), +(170910, 'Yesica', 2000, 'F', 102), +(170911, 'Anastacia', 2000, 'F', 101), +(170912, 'Briza', 2000, 'F', 101), +(170913, 'Jacinda', 2000, 'F', 101), +(170914, 'Jaliyah', 2000, 'F', 101), +(170915, 'Jaya', 2000, 'F', 101), +(170916, 'Kalia', 2000, 'F', 101), +(170917, 'Kameryn', 2000, 'F', 101), +(170918, 'Kearra', 2000, 'F', 101), +(170919, 'Kerrigan', 2000, 'F', 101), +(170920, 'Lilianna', 2000, 'F', 101), +(170921, 'Nayely', 2000, 'F', 101), +(170922, 'Tricia', 2000, 'F', 101), +(170923, 'Dasha', 2000, 'F', 100), +(170924, 'Emmaline', 2000, 'F', 100), +(170925, 'Izabel', 2000, 'F', 100), +(170926, 'Jaimie', 2000, 'F', 100), +(170927, 'Jaylah', 2000, 'F', 100), +(170928, 'Jazzmine', 2000, 'F', 100), +(170929, 'Keasia', 2000, 'F', 100), +(170930, 'Leena', 2000, 'F', 100), +(170931, 'Malina', 2000, 'F', 100), +(170932, 'Pricilla', 2000, 'F', 100), +(170933, 'Ryanne', 2000, 'F', 100), +(170934, 'Scarlet', 2000, 'F', 100), +(170935, 'Tamar', 2000, 'F', 100), +(170936, 'Jacob', 2000, 'M', 34465), +(170937, 'Michael', 2000, 'M', 32025), +(170938, 'Matthew', 2000, 'M', 28569), +(170939, 'Joshua', 2000, 'M', 27531), +(170940, 'Christopher', 2000, 'M', 24928), +(170941, 'Nicholas', 2000, 'M', 24650), +(170942, 'Andrew', 2000, 'M', 23632), +(170943, 'Joseph', 2000, 'M', 22818), +(170944, 'Daniel', 2000, 'M', 22307), +(170945, 'Tyler', 2000, 'M', 21500), +(170946, 'William', 2000, 'M', 20650), +(170947, 'Brandon', 2000, 'M', 20334), +(170948, 'Ryan', 2000, 'M', 20263), +(170949, 'John', 2000, 'M', 20081), +(170950, 'Zachary', 2000, 'M', 19848), +(170951, 'David', 2000, 'M', 19749), +(170952, 'Anthony', 2000, 'M', 19646), +(170953, 'James', 2000, 'M', 17974), +(170954, 'Justin', 2000, 'M', 17774), +(170955, 'Alexander', 2000, 'M', 17279), +(170956, 'Jonathan', 2000, 'M', 16878), +(170957, 'Christian', 2000, 'M', 16053), +(170958, 'Austin', 2000, 'M', 15942), +(170959, 'Dylan', 2000, 'M', 15398), +(170960, 'Ethan', 2000, 'M', 15221), +(170961, 'Benjamin', 2000, 'M', 14838), +(170962, 'Noah', 2000, 'M', 14263), +(170963, 'Samuel', 2000, 'M', 14164), +(170964, 'Robert', 2000, 'M', 13733), +(170965, 'Nathan', 2000, 'M', 13031), +(170966, 'Cameron', 2000, 'M', 12761), +(170967, 'Kevin', 2000, 'M', 12666), +(170968, 'Thomas', 2000, 'M', 12638), +(170969, 'Jose', 2000, 'M', 12581), +(170970, 'Hunter', 2000, 'M', 12534), +(170971, 'Jordan', 2000, 'M', 12164), +(170972, 'Kyle', 2000, 'M', 11964), +(170973, 'Caleb', 2000, 'M', 9860), +(170974, 'Jason', 2000, 'M', 9769), +(170975, 'Logan', 2000, 'M', 9737), +(170976, 'Aaron', 2000, 'M', 9551), +(170977, 'Eric', 2000, 'M', 9153), +(170978, 'Brian', 2000, 'M', 8954), +(170979, 'Gabriel', 2000, 'M', 8676), +(170980, 'Adam', 2000, 'M', 8133), +(170981, 'Jack', 2000, 'M', 8121), +(170982, 'Isaiah', 2000, 'M', 8027), +(170983, 'Juan', 2000, 'M', 7707), +(170984, 'Luis', 2000, 'M', 7657), +(170985, 'Connor', 2000, 'M', 7528), +(170986, 'Charles', 2000, 'M', 7524), +(170987, 'Elijah', 2000, 'M', 7464), +(170988, 'Isaac', 2000, 'M', 7430), +(170989, 'Steven', 2000, 'M', 7351), +(170990, 'Evan', 2000, 'M', 7330), +(170991, 'Jared', 2000, 'M', 7321), +(170992, 'Sean', 2000, 'M', 7316), +(170993, 'Timothy', 2000, 'M', 7258), +(170994, 'Luke', 2000, 'M', 7144), +(170995, 'Cody', 2000, 'M', 7132), +(170996, 'Nathaniel', 2000, 'M', 6798), +(170997, 'Alex', 2000, 'M', 6744), +(170998, 'Seth', 2000, 'M', 6715), +(170999, 'Mason', 2000, 'M', 6516), +(171000, 'Richard', 2000, 'M', 6351), +(171001, 'Carlos', 2000, 'M', 6315), +(171002, 'Angel', 2000, 'M', 6304), +(171003, 'Patrick', 2000, 'M', 6293), +(171004, 'Devin', 2000, 'M', 6152), +(171005, 'Bryan', 2000, 'M', 6137), +(171006, 'Cole', 2000, 'M', 5925), +(171007, 'Jackson', 2000, 'M', 5903), +(171008, 'Ian', 2000, 'M', 5886), +(171009, 'Garrett', 2000, 'M', 5840), +(171010, 'Trevor', 2000, 'M', 5744), +(171011, 'Jesus', 2000, 'M', 5677), +(171012, 'Chase', 2000, 'M', 5440), +(171013, 'Adrian', 2000, 'M', 5337), +(171014, 'Mark', 2000, 'M', 5223), +(171015, 'Blake', 2000, 'M', 5142), +(171016, 'Sebastian', 2000, 'M', 5027), +(171017, 'Antonio', 2000, 'M', 4888), +(171018, 'Lucas', 2000, 'M', 4818), +(171019, 'Jeremy', 2000, 'M', 4735), +(171020, 'Gavin', 2000, 'M', 4684), +(171021, 'Miguel', 2000, 'M', 4668), +(171022, 'Julian', 2000, 'M', 4589), +(171023, 'Dakota', 2000, 'M', 4553), +(171024, 'Alejandro', 2000, 'M', 4509), +(171025, 'Jesse', 2000, 'M', 4480), +(171026, 'Dalton', 2000, 'M', 4445), +(171027, 'Bryce', 2000, 'M', 4318), +(171028, 'Tanner', 2000, 'M', 4234), +(171029, 'Kenneth', 2000, 'M', 4148), +(171030, 'Stephen', 2000, 'M', 4131), +(171031, 'Jake', 2000, 'M', 4086), +(171032, 'Victor', 2000, 'M', 4050), +(171033, 'Spencer', 2000, 'M', 4043), +(171034, 'Marcus', 2000, 'M', 3794), +(171035, 'Paul', 2000, 'M', 3788), +(171036, 'Brendan', 2000, 'M', 3656), +(171037, 'Jeremiah', 2000, 'M', 3641), +(171038, 'Xavier', 2000, 'M', 3639), +(171039, 'Jeffrey', 2000, 'M', 3563), +(171040, 'Tristan', 2000, 'M', 3530), +(171041, 'Jalen', 2000, 'M', 3513), +(171042, 'Jorge', 2000, 'M', 3494), +(171043, 'Edward', 2000, 'M', 3480), +(171044, 'Riley', 2000, 'M', 3420), +(171045, 'Wyatt', 2000, 'M', 3409), +(171046, 'Colton', 2000, 'M', 3408), +(171047, 'Joel', 2000, 'M', 3377), +(171048, 'Maxwell', 2000, 'M', 3364), +(171049, 'Aidan', 2000, 'M', 3295), +(171050, 'Travis', 2000, 'M', 3289), +(171051, 'Shane', 2000, 'M', 3272), +(171052, 'Colin', 2000, 'M', 3255), +(171053, 'Dominic', 2000, 'M', 3245), +(171054, 'Carson', 2000, 'M', 3239), +(171055, 'Vincent', 2000, 'M', 3233), +(171056, 'Derek', 2000, 'M', 3211), +(171057, 'Oscar', 2000, 'M', 3178), +(171058, 'Grant', 2000, 'M', 3173), +(171059, 'Eduardo', 2000, 'M', 3156), +(171060, 'Peter', 2000, 'M', 3146), +(171061, 'Henry', 2000, 'M', 3117), +(171062, 'Parker', 2000, 'M', 3099), +(171063, 'Collin', 2000, 'M', 3045), +(171064, 'Hayden', 2000, 'M', 3044), +(171065, 'George', 2000, 'M', 3034), +(171066, 'Bradley', 2000, 'M', 3014), +(171067, 'Mitchell', 2000, 'M', 2984), +(171068, 'Devon', 2000, 'M', 2969), +(171069, 'Ricardo', 2000, 'M', 2917), +(171070, 'Shawn', 2000, 'M', 2891), +(171071, 'Taylor', 2000, 'M', 2853), +(171072, 'Nicolas', 2000, 'M', 2846), +(171073, 'Gregory', 2000, 'M', 2836), +(171074, 'Francisco', 2000, 'M', 2835), +(171075, 'Liam', 2000, 'M', 2780), +(171076, 'Kaleb', 2000, 'M', 2745), +(171077, 'Preston', 2000, 'M', 2744), +(171078, 'Erik', 2000, 'M', 2722), +(171079, 'Alexis', 2000, 'M', 2714), +(171080, 'Owen', 2000, 'M', 2714), +(171081, 'Omar', 2000, 'M', 2686), +(171082, 'Diego', 2000, 'M', 2683), +(171083, 'Dustin', 2000, 'M', 2619), +(171084, 'Corey', 2000, 'M', 2608), +(171085, 'Fernando', 2000, 'M', 2601), +(171086, 'Clayton', 2000, 'M', 2564), +(171087, 'Carter', 2000, 'M', 2549), +(171088, 'Ivan', 2000, 'M', 2527), +(171089, 'Jaden', 2000, 'M', 2520), +(171090, 'Javier', 2000, 'M', 2489), +(171091, 'Alec', 2000, 'M', 2479), +(171092, 'Johnathan', 2000, 'M', 2468), +(171093, 'Scott', 2000, 'M', 2457), +(171094, 'Manuel', 2000, 'M', 2424), +(171095, 'Cristian', 2000, 'M', 2422), +(171096, 'Alan', 2000, 'M', 2413), +(171097, 'Raymond', 2000, 'M', 2397), +(171098, 'Brett', 2000, 'M', 2382), +(171099, 'Max', 2000, 'M', 2355), +(171100, 'Andres', 2000, 'M', 2353), +(171101, 'Gage', 2000, 'M', 2348), +(171102, 'Mario', 2000, 'M', 2333), +(171103, 'Dawson', 2000, 'M', 2311), +(171104, 'Dillon', 2000, 'M', 2263), +(171105, 'Cesar', 2000, 'M', 2258), +(171106, 'Wesley', 2000, 'M', 2216), +(171107, 'Levi', 2000, 'M', 2186), +(171108, 'Jakob', 2000, 'M', 2161), +(171109, 'Chandler', 2000, 'M', 2130), +(171110, 'Martin', 2000, 'M', 2107), +(171111, 'Malik', 2000, 'M', 2083), +(171112, 'Edgar', 2000, 'M', 2071), +(171113, 'Trenton', 2000, 'M', 2063), +(171114, 'Sergio', 2000, 'M', 2062), +(171115, 'Josiah', 2000, 'M', 2027), +(171116, 'Nolan', 2000, 'M', 2027), +(171117, 'Marco', 2000, 'M', 2022), +(171118, 'Peyton', 2000, 'M', 2001), +(171119, 'Harrison', 2000, 'M', 1981), +(171120, 'Hector', 2000, 'M', 1979), +(171121, 'Micah', 2000, 'M', 1975), +(171122, 'Roberto', 2000, 'M', 1956), +(171123, 'Drew', 2000, 'M', 1948), +(171124, 'Brady', 2000, 'M', 1883), +(171125, 'Erick', 2000, 'M', 1883), +(171126, 'Conner', 2000, 'M', 1879), +(171127, 'Jonah', 2000, 'M', 1833), +(171128, 'Casey', 2000, 'M', 1822), +(171129, 'Jayden', 2000, 'M', 1821), +(171130, 'Emmanuel', 2000, 'M', 1800), +(171131, 'Edwin', 2000, 'M', 1799), +(171132, 'Andre', 2000, 'M', 1795), +(171133, 'Phillip', 2000, 'M', 1774), +(171134, 'Brayden', 2000, 'M', 1760), +(171135, 'Landon', 2000, 'M', 1758), +(171136, 'Giovanni', 2000, 'M', 1757), +(171137, 'Bailey', 2000, 'M', 1755), +(171138, 'Ronald', 2000, 'M', 1750), +(171139, 'Braden', 2000, 'M', 1733), +(171140, 'Damian', 2000, 'M', 1720), +(171141, 'Donovan', 2000, 'M', 1717), +(171142, 'Ruben', 2000, 'M', 1716), +(171143, 'Frank', 2000, 'M', 1708), +(171144, 'Gerardo', 2000, 'M', 1701), +(171145, 'Pedro', 2000, 'M', 1701), +(171146, 'Andy', 2000, 'M', 1694), +(171147, 'Chance', 2000, 'M', 1693), +(171148, 'Abraham', 2000, 'M', 1680), +(171149, 'Calvin', 2000, 'M', 1677), +(171150, 'Trey', 2000, 'M', 1652), +(171151, 'Cade', 2000, 'M', 1646), +(171152, 'Donald', 2000, 'M', 1610), +(171153, 'Derrick', 2000, 'M', 1596), +(171154, 'Payton', 2000, 'M', 1581), +(171155, 'Darius', 2000, 'M', 1564), +(171156, 'Enrique', 2000, 'M', 1535), +(171157, 'Keith', 2000, 'M', 1524), +(171158, 'Raul', 2000, 'M', 1517), +(171159, 'Jaylen', 2000, 'M', 1514), +(171160, 'Troy', 2000, 'M', 1512), +(171161, 'Jonathon', 2000, 'M', 1497), +(171162, 'Cory', 2000, 'M', 1495), +(171163, 'Marc', 2000, 'M', 1484), +(171164, 'Skyler', 2000, 'M', 1472), +(171165, 'Rafael', 2000, 'M', 1471), +(171166, 'Trent', 2000, 'M', 1469), +(171167, 'Griffin', 2000, 'M', 1468), +(171168, 'Colby', 2000, 'M', 1464), +(171169, 'Eli', 2000, 'M', 1459), +(171170, 'Johnny', 2000, 'M', 1459), +(171171, 'Chad', 2000, 'M', 1452), +(171172, 'Armando', 2000, 'M', 1443), +(171173, 'Kobe', 2000, 'M', 1432), +(171174, 'Caden', 2000, 'M', 1406), +(171175, 'Marcos', 2000, 'M', 1406), +(171176, 'Cooper', 2000, 'M', 1405), +(171177, 'Elias', 2000, 'M', 1403), +(171178, 'Brenden', 2000, 'M', 1394), +(171179, 'Israel', 2000, 'M', 1384), +(171180, 'Avery', 2000, 'M', 1370), +(171181, 'Zane', 2000, 'M', 1368), +(171182, 'Dante', 2000, 'M', 1352), +(171183, 'Josue', 2000, 'M', 1351), +(171184, 'Zackary', 2000, 'M', 1350), +(171185, 'Allen', 2000, 'M', 1346), +(171186, 'Mathew', 2000, 'M', 1343), +(171187, 'Dennis', 2000, 'M', 1338), +(171188, 'Leonardo', 2000, 'M', 1330), +(171189, 'Ashton', 2000, 'M', 1314), +(171190, 'Philip', 2000, 'M', 1311), +(171191, 'Julio', 2000, 'M', 1306), +(171192, 'Miles', 2000, 'M', 1304), +(171193, 'Damien', 2000, 'M', 1302), +(171194, 'Ty', 2000, 'M', 1296), +(171195, 'Gustavo', 2000, 'M', 1290), +(171196, 'Drake', 2000, 'M', 1269), +(171197, 'Jaime', 2000, 'M', 1262), +(171198, 'Simon', 2000, 'M', 1249), +(171199, 'Jerry', 2000, 'M', 1245), +(171200, 'Curtis', 2000, 'M', 1240), +(171201, 'Kameron', 2000, 'M', 1225), +(171202, 'Lance', 2000, 'M', 1221), +(171203, 'Brock', 2000, 'M', 1219), +(171204, 'Bryson', 2000, 'M', 1206), +(171205, 'Alberto', 2000, 'M', 1199), +(171206, 'Dominick', 2000, 'M', 1190), +(171207, 'Jimmy', 2000, 'M', 1189), +(171208, 'Kaden', 2000, 'M', 1187), +(171209, 'Douglas', 2000, 'M', 1173), +(171210, 'Gary', 2000, 'M', 1167), +(171211, 'Brennan', 2000, 'M', 1158), +(171212, 'Zachery', 2000, 'M', 1150), +(171213, 'Randy', 2000, 'M', 1136), +(171214, 'Louis', 2000, 'M', 1134), +(171215, 'Larry', 2000, 'M', 1117), +(171216, 'Nickolas', 2000, 'M', 1089), +(171217, 'Tony', 2000, 'M', 1086), +(171218, 'Albert', 2000, 'M', 1084), +(171219, 'Fabian', 2000, 'M', 1081), +(171220, 'Keegan', 2000, 'M', 1080), +(171221, 'Saul', 2000, 'M', 1058), +(171222, 'Danny', 2000, 'M', 1056), +(171223, 'Tucker', 2000, 'M', 1046), +(171224, 'Myles', 2000, 'M', 1044), +(171225, 'Damon', 2000, 'M', 1043), +(171226, 'Arturo', 2000, 'M', 1038), +(171227, 'Corbin', 2000, 'M', 1034), +(171228, 'Deandre', 2000, 'M', 1032), +(171229, 'Ricky', 2000, 'M', 1023), +(171230, 'Kristopher', 2000, 'M', 1021), +(171231, 'Lane', 2000, 'M', 1015), +(171232, 'Pablo', 2000, 'M', 1009), +(171233, 'Darren', 2000, 'M', 1006), +(171234, 'Jarrett', 2000, 'M', 1004), +(171235, 'Zion', 2000, 'M', 1004), +(171236, 'Alfredo', 2000, 'M', 998), +(171237, 'Micheal', 2000, 'M', 993), +(171238, 'Angelo', 2000, 'M', 990), +(171239, 'Carl', 2000, 'M', 988), +(171240, 'Oliver', 2000, 'M', 977), +(171241, 'Kyler', 2000, 'M', 963), +(171242, 'Tommy', 2000, 'M', 958), +(171243, 'Walter', 2000, 'M', 949), +(171244, 'Dallas', 2000, 'M', 943), +(171245, 'Jace', 2000, 'M', 937), +(171246, 'Quinn', 2000, 'M', 937), +(171247, 'Theodore', 2000, 'M', 934), +(171248, 'Grayson', 2000, 'M', 927), +(171249, 'Lorenzo', 2000, 'M', 922), +(171250, 'Joe', 2000, 'M', 917), +(171251, 'Arthur', 2000, 'M', 915), +(171252, 'Bryant', 2000, 'M', 902), +(171253, 'Brent', 2000, 'M', 900), +(171254, 'Roman', 2000, 'M', 897), +(171255, 'Russell', 2000, 'M', 893), +(171256, 'Ramon', 2000, 'M', 892), +(171257, 'Lawrence', 2000, 'M', 888), +(171258, 'Moises', 2000, 'M', 888), +(171259, 'Aiden', 2000, 'M', 881), +(171260, 'Quentin', 2000, 'M', 871), +(171261, 'Tyrese', 2000, 'M', 867), +(171262, 'Jay', 2000, 'M', 866), +(171263, 'Tristen', 2000, 'M', 864), +(171264, 'Emanuel', 2000, 'M', 857), +(171265, 'Salvador', 2000, 'M', 852), +(171266, 'Terry', 2000, 'M', 847), +(171267, 'Morgan', 2000, 'M', 838), +(171268, 'Jeffery', 2000, 'M', 837), +(171269, 'Esteban', 2000, 'M', 822), +(171270, 'Tyson', 2000, 'M', 818), +(171271, 'Braxton', 2000, 'M', 814), +(171272, 'Branden', 2000, 'M', 810), +(171273, 'Marvin', 2000, 'M', 810), +(171274, 'Brody', 2000, 'M', 808), +(171275, 'Craig', 2000, 'M', 807), +(171276, 'Ismael', 2000, 'M', 803), +(171277, 'Rodney', 2000, 'M', 799), +(171278, 'Isiah', 2000, 'M', 797), +(171279, 'Maurice', 2000, 'M', 795), +(171280, 'Marshall', 2000, 'M', 794), +(171281, 'Ernesto', 2000, 'M', 792), +(171282, 'Emilio', 2000, 'M', 790), +(171283, 'Brendon', 2000, 'M', 787), +(171284, 'Kody', 2000, 'M', 782), +(171285, 'Eddie', 2000, 'M', 780), +(171286, 'Malachi', 2000, 'M', 768), +(171287, 'Abel', 2000, 'M', 763), +(171288, 'Keaton', 2000, 'M', 761), +(171289, 'Jon', 2000, 'M', 752), +(171290, 'Shaun', 2000, 'M', 751), +(171291, 'Skylar', 2000, 'M', 748), +(171292, 'Nikolas', 2000, 'M', 739), +(171293, 'Ezekiel', 2000, 'M', 738), +(171294, 'Santiago', 2000, 'M', 737), +(171295, 'Kendall', 2000, 'M', 733), +(171296, 'Axel', 2000, 'M', 732), +(171297, 'Camden', 2000, 'M', 731), +(171298, 'Trevon', 2000, 'M', 731), +(171299, 'Bobby', 2000, 'M', 730), +(171300, 'Conor', 2000, 'M', 726), +(171301, 'Jamal', 2000, 'M', 725), +(171302, 'Lukas', 2000, 'M', 723), +(171303, 'Malcolm', 2000, 'M', 715), +(171304, 'Zackery', 2000, 'M', 710), +(171305, 'Jayson', 2000, 'M', 709), +(171306, 'Javon', 2000, 'M', 705), +(171307, 'Reginald', 2000, 'M', 700), +(171308, 'Zachariah', 2000, 'M', 700), +(171309, 'Roger', 2000, 'M', 699), +(171310, 'Desmond', 2000, 'M', 698), +(171311, 'Felix', 2000, 'M', 696), +(171312, 'Dean', 2000, 'M', 695), +(171313, 'Johnathon', 2000, 'M', 695), +(171314, 'Quinton', 2000, 'M', 688), +(171315, 'Ali', 2000, 'M', 681), +(171316, 'Davis', 2000, 'M', 681), +(171317, 'Gerald', 2000, 'M', 680), +(171318, 'Rodrigo', 2000, 'M', 680), +(171319, 'Demetrius', 2000, 'M', 679), +(171320, 'Billy', 2000, 'M', 670), +(171321, 'Rene', 2000, 'M', 661), +(171322, 'Reece', 2000, 'M', 660), +(171323, 'Kelvin', 2000, 'M', 657), +(171324, 'Leo', 2000, 'M', 657), +(171325, 'Justice', 2000, 'M', 656), +(171326, 'Guillermo', 2000, 'M', 651), +(171327, 'Chris', 2000, 'M', 650), +(171328, 'Kevon', 2000, 'M', 649), +(171329, 'Steve', 2000, 'M', 649), +(171330, 'Frederick', 2000, 'M', 647), +(171331, 'Clay', 2000, 'M', 641), +(171332, 'Weston', 2000, 'M', 640), +(171333, 'Dorian', 2000, 'M', 639), +(171334, 'Hugo', 2000, 'M', 636), +(171335, 'Orlando', 2000, 'M', 634), +(171336, 'Roy', 2000, 'M', 634), +(171337, 'Terrance', 2000, 'M', 628), +(171338, 'Kai', 2000, 'M', 621), +(171339, 'Khalil', 2000, 'M', 619), +(171340, 'Graham', 2000, 'M', 618), +(171341, 'Noel', 2000, 'M', 616), +(171342, 'Nathanael', 2000, 'M', 609), +(171343, 'Willie', 2000, 'M', 609), +(171344, 'Terrell', 2000, 'M', 608), +(171345, 'Tyrone', 2000, 'M', 607), +(171346, 'Camron', 2000, 'M', 606), +(171347, 'Mauricio', 2000, 'M', 605), +(171348, 'Amir', 2000, 'M', 602), +(171349, 'Darian', 2000, 'M', 599), +(171350, 'Jarod', 2000, 'M', 599), +(171351, 'Nelson', 2000, 'M', 599), +(171352, 'Kade', 2000, 'M', 593), +(171353, 'Reese', 2000, 'M', 592), +(171354, 'Kristian', 2000, 'M', 591), +(171355, 'Garret', 2000, 'M', 590), +(171356, 'Marquis', 2000, 'M', 586), +(171357, 'Rodolfo', 2000, 'M', 586), +(171358, 'Dane', 2000, 'M', 583), +(171359, 'Felipe', 2000, 'M', 583), +(171360, 'Todd', 2000, 'M', 582), +(171361, 'Elian', 2000, 'M', 578), +(171362, 'Walker', 2000, 'M', 578), +(171363, 'Mateo', 2000, 'M', 572), +(171364, 'Jaylon', 2000, 'M', 568), +(171365, 'Kenny', 2000, 'M', 566), +(171366, 'Bruce', 2000, 'M', 563), +(171367, 'Ezra', 2000, 'M', 562), +(171368, 'Damion', 2000, 'M', 561), +(171369, 'Ross', 2000, 'M', 561), +(171370, 'Francis', 2000, 'M', 559), +(171371, 'Tate', 2000, 'M', 546), +(171372, 'Byron', 2000, 'M', 544), +(171373, 'Reid', 2000, 'M', 544), +(171374, 'Warren', 2000, 'M', 544), +(171375, 'Randall', 2000, 'M', 543), +(171376, 'Bennett', 2000, 'M', 542), +(171377, 'Jermaine', 2000, 'M', 539), +(171378, 'Triston', 2000, 'M', 539), +(171379, 'Jaquan', 2000, 'M', 535), +(171380, 'Harley', 2000, 'M', 534), +(171381, 'Jessie', 2000, 'M', 533), +(171382, 'Franklin', 2000, 'M', 530), +(171383, 'Duncan', 2000, 'M', 529), +(171384, 'Charlie', 2000, 'M', 528), +(171385, 'Reed', 2000, 'M', 528), +(171386, 'Blaine', 2000, 'M', 527), +(171387, 'Braeden', 2000, 'M', 527), +(171388, 'Holden', 2000, 'M', 527), +(171389, 'Ahmad', 2000, 'M', 526), +(171390, 'Issac', 2000, 'M', 520), +(171391, 'Kendrick', 2000, 'M', 518), +(171392, 'Melvin', 2000, 'M', 517), +(171393, 'Sawyer', 2000, 'M', 517), +(171394, 'Moses', 2000, 'M', 515), +(171395, 'Solomon', 2000, 'M', 515), +(171396, 'Sam', 2000, 'M', 513), +(171397, 'Jaylin', 2000, 'M', 512), +(171398, 'Cedric', 2000, 'M', 510), +(171399, 'Mohammad', 2000, 'M', 508), +(171400, 'Alvin', 2000, 'M', 507), +(171401, 'Beau', 2000, 'M', 507), +(171402, 'Jordon', 2000, 'M', 506), +(171403, 'Elliot', 2000, 'M', 503), +(171404, 'Lee', 2000, 'M', 501), +(171405, 'Darrell', 2000, 'M', 499), +(171406, 'Jarred', 2000, 'M', 498), +(171407, 'Mohamed', 2000, 'M', 498), +(171408, 'Davion', 2000, 'M', 496), +(171409, 'Wade', 2000, 'M', 496), +(171410, 'Tomas', 2000, 'M', 494), +(171411, 'Uriel', 2000, 'M', 493), +(171412, 'Jaxon', 2000, 'M', 492), +(171413, 'Deven', 2000, 'M', 491), +(171414, 'Maximilian', 2000, 'M', 491), +(171415, 'Rogelio', 2000, 'M', 490), +(171416, 'Gilberto', 2000, 'M', 489), +(171417, 'Ronnie', 2000, 'M', 487), +(171418, 'Julius', 2000, 'M', 484), +(171419, 'Allan', 2000, 'M', 483), +(171420, 'Brayan', 2000, 'M', 480), +(171421, 'Deshawn', 2000, 'M', 480), +(171422, 'Joey', 2000, 'M', 480), +(171423, 'Terrence', 2000, 'M', 480), +(171424, 'Noe', 2000, 'M', 477), +(171425, 'Alfonso', 2000, 'M', 476); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(171426, 'Ahmed', 2000, 'M', 475), +(171427, 'Tyree', 2000, 'M', 466), +(171428, 'Tyrell', 2000, 'M', 464), +(171429, 'Jerome', 2000, 'M', 461), +(171430, 'Devan', 2000, 'M', 460), +(171431, 'Neil', 2000, 'M', 460), +(171432, 'Ramiro', 2000, 'M', 459), +(171433, 'Pierce', 2000, 'M', 458), +(171434, 'Davon', 2000, 'M', 457), +(171435, 'Devonte', 2000, 'M', 456), +(171436, 'Leon', 2000, 'M', 456), +(171437, 'Jamie', 2000, 'M', 455), +(171438, 'Adan', 2000, 'M', 454), +(171439, 'Eugene', 2000, 'M', 453), +(171440, 'Stanley', 2000, 'M', 453), +(171441, 'Marlon', 2000, 'M', 452), +(171442, 'Quincy', 2000, 'M', 451), +(171443, 'Leonard', 2000, 'M', 450), +(171444, 'Wayne', 2000, 'M', 449), +(171445, 'Will', 2000, 'M', 447), +(171446, 'Alvaro', 2000, 'M', 440), +(171447, 'Ernest', 2000, 'M', 439), +(171448, 'Harry', 2000, 'M', 438), +(171449, 'Addison', 2000, 'M', 436), +(171450, 'Ray', 2000, 'M', 435), +(171451, 'Alonzo', 2000, 'M', 434), +(171452, 'Jadon', 2000, 'M', 434), +(171453, 'Jonas', 2000, 'M', 431), +(171454, 'Keyshawn', 2000, 'M', 430), +(171455, 'Rolando', 2000, 'M', 430), +(171456, 'Mohammed', 2000, 'M', 428), +(171457, 'Tristin', 2000, 'M', 427), +(171458, 'Donte', 2000, 'M', 426), +(171459, 'Dominique', 2000, 'M', 422), +(171460, 'Leonel', 2000, 'M', 422), +(171461, 'Wilson', 2000, 'M', 421), +(171462, 'Gilbert', 2000, 'M', 419), +(171463, 'Coby', 2000, 'M', 415), +(171464, 'Dangelo', 2000, 'M', 415), +(171465, 'Kieran', 2000, 'M', 415), +(171466, 'Colten', 2000, 'M', 411), +(171467, 'Keenan', 2000, 'M', 411), +(171468, 'Koby', 2000, 'M', 411), +(171469, 'Jarrod', 2000, 'M', 410), +(171470, 'Toby', 2000, 'M', 407), +(171471, 'Dale', 2000, 'M', 406), +(171472, 'Dwayne', 2000, 'M', 406), +(171473, 'Harold', 2000, 'M', 406), +(171474, 'Elliott', 2000, 'M', 405), +(171475, 'Osvaldo', 2000, 'M', 399), +(171476, 'Cyrus', 2000, 'M', 397), +(171477, 'Kolby', 2000, 'M', 396), +(171478, 'Sage', 2000, 'M', 392), +(171479, 'Coleman', 2000, 'M', 388), +(171480, 'Declan', 2000, 'M', 388), +(171481, 'Adolfo', 2000, 'M', 386), +(171482, 'Ariel', 2000, 'M', 384), +(171483, 'Brennen', 2000, 'M', 384), +(171484, 'Darryl', 2000, 'M', 384), +(171485, 'Trace', 2000, 'M', 384), +(171486, 'Orion', 2000, 'M', 382), +(171487, 'Shamar', 2000, 'M', 382), +(171488, 'Efrain', 2000, 'M', 381), +(171489, 'Keshawn', 2000, 'M', 380), +(171490, 'Rudy', 2000, 'M', 380), +(171491, 'Ulises', 2000, 'M', 379), +(171492, 'Darien', 2000, 'M', 378), +(171493, 'Braydon', 2000, 'M', 377), +(171494, 'Ben', 2000, 'M', 375), +(171495, 'Vicente', 2000, 'M', 375), +(171496, 'Nasir', 2000, 'M', 373), +(171497, 'Dayton', 2000, 'M', 371), +(171498, 'Joaquin', 2000, 'M', 367), +(171499, 'Karl', 2000, 'M', 366), +(171500, 'Dandre', 2000, 'M', 364), +(171501, 'Isaias', 2000, 'M', 364), +(171502, 'Rylan', 2000, 'M', 363), +(171503, 'Sterling', 2000, 'M', 363), +(171504, 'Cullen', 2000, 'M', 362), +(171505, 'Quintin', 2000, 'M', 361), +(171506, 'Stefan', 2000, 'M', 360), +(171507, 'Brice', 2000, 'M', 357), +(171508, 'Lewis', 2000, 'M', 354), +(171509, 'Gunnar', 2000, 'M', 352), +(171510, 'Humberto', 2000, 'M', 352), +(171511, 'Nigel', 2000, 'M', 349), +(171512, 'Alfred', 2000, 'M', 348), +(171513, 'Agustin', 2000, 'M', 345), +(171514, 'Asher', 2000, 'M', 345), +(171515, 'Daquan', 2000, 'M', 344), +(171516, 'Easton', 2000, 'M', 344), +(171517, 'Salvatore', 2000, 'M', 344), +(171518, 'Jaron', 2000, 'M', 342), +(171519, 'Nathanial', 2000, 'M', 341), +(171520, 'Ralph', 2000, 'M', 341), +(171521, 'Everett', 2000, 'M', 340), +(171522, 'Hudson', 2000, 'M', 338), +(171523, 'Tobias', 2000, 'M', 337), +(171524, 'Marquise', 2000, 'M', 336), +(171525, 'Glenn', 2000, 'M', 335), +(171526, 'Antoine', 2000, 'M', 334), +(171527, 'Jasper', 2000, 'M', 334), +(171528, 'Elvis', 2000, 'M', 333), +(171529, 'Kane', 2000, 'M', 333), +(171530, 'Sidney', 2000, 'M', 333), +(171531, 'Ezequiel', 2000, 'M', 331), +(171532, 'Tylor', 2000, 'M', 331), +(171533, 'Aron', 2000, 'M', 330), +(171534, 'Dashawn', 2000, 'M', 329), +(171535, 'Devyn', 2000, 'M', 329), +(171536, 'Mike', 2000, 'M', 329), +(171537, 'Silas', 2000, 'M', 328), +(171538, 'Jaiden', 2000, 'M', 327), +(171539, 'Jayce', 2000, 'M', 321), +(171540, 'Deonte', 2000, 'M', 320), +(171541, 'Romeo', 2000, 'M', 318), +(171542, 'Deon', 2000, 'M', 317), +(171543, 'Cristopher', 2000, 'M', 315), +(171544, 'Freddy', 2000, 'M', 315), +(171545, 'Kurt', 2000, 'M', 315), +(171546, 'Kolton', 2000, 'M', 314), +(171547, 'River', 2000, 'M', 314), +(171548, 'August', 2000, 'M', 310), +(171549, 'Roderick', 2000, 'M', 310), +(171550, 'Clarence', 2000, 'M', 309), +(171551, 'Derick', 2000, 'M', 309), +(171552, 'Jamar', 2000, 'M', 304), +(171553, 'Raphael', 2000, 'M', 304), +(171554, 'Rohan', 2000, 'M', 304), +(171555, 'Kareem', 2000, 'M', 303), +(171556, 'Muhammad', 2000, 'M', 303), +(171557, 'Demarcus', 2000, 'M', 302), +(171558, 'Sheldon', 2000, 'M', 301), +(171559, 'Cayden', 2000, 'M', 300), +(171560, 'Markus', 2000, 'M', 300), +(171561, 'Luca', 2000, 'M', 297), +(171562, 'Tre', 2000, 'M', 294), +(171563, 'Jamison', 2000, 'M', 291), +(171564, 'Jean', 2000, 'M', 291), +(171565, 'Rory', 2000, 'M', 290), +(171566, 'Titus', 2000, 'M', 290), +(171567, 'Brad', 2000, 'M', 289), +(171568, 'Clinton', 2000, 'M', 289), +(171569, 'Jaylan', 2000, 'M', 289), +(171570, 'Emiliano', 2000, 'M', 288), +(171571, 'Jevon', 2000, 'M', 288), +(171572, 'Julien', 2000, 'M', 287), +(171573, 'Lamar', 2000, 'M', 286), +(171574, 'Alonso', 2000, 'M', 285), +(171575, 'Cordell', 2000, 'M', 284), +(171576, 'Gordon', 2000, 'M', 284), +(171577, 'Ignacio', 2000, 'M', 283), +(171578, 'Jett', 2000, 'M', 282), +(171579, 'Keon', 2000, 'M', 282), +(171580, 'Baby', 2000, 'M', 281), +(171581, 'Cruz', 2000, 'M', 281), +(171582, 'Rashad', 2000, 'M', 281), +(171583, 'Tariq', 2000, 'M', 281), +(171584, 'Armani', 2000, 'M', 280), +(171585, 'Deangelo', 2000, 'M', 279), +(171586, 'Milton', 2000, 'M', 279), +(171587, 'Geoffrey', 2000, 'M', 278), +(171588, 'Elisha', 2000, 'M', 277), +(171589, 'Moshe', 2000, 'M', 276), +(171590, 'Bernard', 2000, 'M', 275), +(171591, 'Asa', 2000, 'M', 274), +(171592, 'Bret', 2000, 'M', 274), +(171593, 'Darion', 2000, 'M', 274), +(171594, 'Darnell', 2000, 'M', 274), +(171595, 'Izaiah', 2000, 'M', 274), +(171596, 'Irvin', 2000, 'M', 272), +(171597, 'Jairo', 2000, 'M', 271), +(171598, 'Howard', 2000, 'M', 270), +(171599, 'Aldo', 2000, 'M', 269), +(171600, 'Zechariah', 2000, 'M', 269), +(171601, 'Ayden', 2000, 'M', 268), +(171602, 'Garrison', 2000, 'M', 268), +(171603, 'Norman', 2000, 'M', 268), +(171604, 'Stuart', 2000, 'M', 268), +(171605, 'Kellen', 2000, 'M', 267), +(171606, 'Travon', 2000, 'M', 267), +(171607, 'Shemar', 2000, 'M', 266), +(171608, 'Dillan', 2000, 'M', 265), +(171609, 'Junior', 2000, 'M', 265), +(171610, 'Darrius', 2000, 'M', 264), +(171611, 'Rhett', 2000, 'M', 264), +(171612, 'Barry', 2000, 'M', 263), +(171613, 'Kamron', 2000, 'M', 263), +(171614, 'Jude', 2000, 'M', 262), +(171615, 'Rigoberto', 2000, 'M', 262), +(171616, 'Amari', 2000, 'M', 260), +(171617, 'Jovan', 2000, 'M', 260), +(171618, 'Octavio', 2000, 'M', 259), +(171619, 'Perry', 2000, 'M', 259), +(171620, 'Kole', 2000, 'M', 258), +(171621, 'Misael', 2000, 'M', 258), +(171622, 'Hassan', 2000, 'M', 257), +(171623, 'Jaren', 2000, 'M', 257), +(171624, 'Latrell', 2000, 'M', 257), +(171625, 'Roland', 2000, 'M', 257), +(171626, 'Quinten', 2000, 'M', 256), +(171627, 'Ibrahim', 2000, 'M', 255), +(171628, 'Justus', 2000, 'M', 255), +(171629, 'German', 2000, 'M', 254), +(171630, 'Gonzalo', 2000, 'M', 254), +(171631, 'Nehemiah', 2000, 'M', 254), +(171632, 'Forrest', 2000, 'M', 252), +(171633, 'Mackenzie', 2000, 'M', 252), +(171634, 'Anton', 2000, 'M', 251), +(171635, 'Chaz', 2000, 'M', 251), +(171636, 'Talon', 2000, 'M', 251), +(171637, 'Guadalupe', 2000, 'M', 249), +(171638, 'Antwan', 2000, 'M', 248), +(171639, 'Austen', 2000, 'M', 248), +(171640, 'Brooks', 2000, 'M', 248), +(171641, 'Conrad', 2000, 'M', 248), +(171642, 'Greyson', 2000, 'M', 248), +(171643, 'Winston', 2000, 'M', 248), +(171644, 'Dion', 2000, 'M', 247), +(171645, 'Leroy', 2000, 'M', 247), +(171646, 'Lincoln', 2000, 'M', 247), +(171647, 'Earl', 2000, 'M', 245), +(171648, 'Jaydon', 2000, 'M', 245), +(171649, 'Landen', 2000, 'M', 245), +(171650, 'Gunner', 2000, 'M', 244), +(171651, 'Brenton', 2000, 'M', 243), +(171652, 'Jefferson', 2000, 'M', 243), +(171653, 'Fredrick', 2000, 'M', 242), +(171654, 'Kurtis', 2000, 'M', 242), +(171655, 'Maximillian', 2000, 'M', 242), +(171656, 'Stephan', 2000, 'M', 242), +(171657, 'Stone', 2000, 'M', 242), +(171658, 'Shannon', 2000, 'M', 241), +(171659, 'Shayne', 2000, 'M', 239), +(171660, 'Stephon', 2000, 'M', 239), +(171661, 'Karson', 2000, 'M', 238), +(171662, 'Nestor', 2000, 'M', 236), +(171663, 'Frankie', 2000, 'M', 235), +(171664, 'Gianni', 2000, 'M', 235), +(171665, 'Keagan', 2000, 'M', 235), +(171666, 'Tristian', 2000, 'M', 235), +(171667, 'Dimitri', 2000, 'M', 234), +(171668, 'Kory', 2000, 'M', 234), +(171669, 'Zakary', 2000, 'M', 234), +(171670, 'Donavan', 2000, 'M', 233), +(171671, 'Draven', 2000, 'M', 233), +(171672, 'Jameson', 2000, 'M', 233), +(171673, 'Clifton', 2000, 'M', 232), +(171674, 'Daryl', 2000, 'M', 232), +(171675, 'Emmett', 2000, 'M', 231), +(171676, 'Cortez', 2000, 'M', 230), +(171677, 'Destin', 2000, 'M', 230), +(171678, 'Jamari', 2000, 'M', 230), +(171679, 'Dallin', 2000, 'M', 229), +(171680, 'Estevan', 2000, 'M', 229), +(171681, 'Grady', 2000, 'M', 229), +(171682, 'Davin', 2000, 'M', 227), +(171683, 'Santos', 2000, 'M', 227), +(171684, 'Marcel', 2000, 'M', 226), +(171685, 'Carlton', 2000, 'M', 225), +(171686, 'Dylon', 2000, 'M', 225), +(171687, 'Mitchel', 2000, 'M', 225), +(171688, 'Clifford', 2000, 'M', 224), +(171689, 'Syed', 2000, 'M', 223), +(171690, 'Adonis', 2000, 'M', 222), +(171691, 'Dexter', 2000, 'M', 222), +(171692, 'Keyon', 2000, 'M', 221), +(171693, 'Reynaldo', 2000, 'M', 221), +(171694, 'Devante', 2000, 'M', 219), +(171695, 'Arnold', 2000, 'M', 218), +(171696, 'Clark', 2000, 'M', 218), +(171697, 'Kasey', 2000, 'M', 218), +(171698, 'Sammy', 2000, 'M', 218), +(171699, 'Thaddeus', 2000, 'M', 218), +(171700, 'Glen', 2000, 'M', 217), +(171701, 'Jarvis', 2000, 'M', 217), +(171702, 'Nick', 2000, 'M', 217), +(171703, 'Garett', 2000, 'M', 216), +(171704, 'Infant', 2000, 'M', 216), +(171705, 'Keanu', 2000, 'M', 216), +(171706, 'Kenyon', 2000, 'M', 216), +(171707, 'Ulysses', 2000, 'M', 216), +(171708, 'Dwight', 2000, 'M', 215), +(171709, 'Kent', 2000, 'M', 215), +(171710, 'Denzel', 2000, 'M', 214), +(171711, 'Lamont', 2000, 'M', 214), +(171712, 'Houston', 2000, 'M', 213), +(171713, 'Layne', 2000, 'M', 213), +(171714, 'Darin', 2000, 'M', 212), +(171715, 'Jorden', 2000, 'M', 212), +(171716, 'Anderson', 2000, 'M', 211), +(171717, 'Kayden', 2000, 'M', 211), +(171718, 'Khalid', 2000, 'M', 210), +(171719, 'Antony', 2000, 'M', 209), +(171720, 'Deondre', 2000, 'M', 209), +(171721, 'Ellis', 2000, 'M', 209), +(171722, 'Marquez', 2000, 'M', 209), +(171723, 'Ari', 2000, 'M', 207), +(171724, 'Cornelius', 2000, 'M', 207), +(171725, 'Austyn', 2000, 'M', 206), +(171726, 'Brycen', 2000, 'M', 206), +(171727, 'Abram', 2000, 'M', 205), +(171728, 'Remington', 2000, 'M', 205), +(171729, 'Braedon', 2000, 'M', 204), +(171730, 'Reuben', 2000, 'M', 204), +(171731, 'Hamza', 2000, 'M', 203), +(171732, 'Ryder', 2000, 'M', 203), +(171733, 'Zaire', 2000, 'M', 203), +(171734, 'Terence', 2000, 'M', 202), +(171735, 'Guy', 2000, 'M', 201), +(171736, 'Jamel', 2000, 'M', 201), +(171737, 'Kelly', 2000, 'M', 201), +(171738, 'Tevin', 2000, 'M', 201), +(171739, 'Alexandro', 2000, 'M', 200), +(171740, 'Jordy', 2000, 'M', 200), +(171741, 'Porter', 2000, 'M', 200), +(171742, 'Trever', 2000, 'M', 200), +(171743, 'Dario', 2000, 'M', 199), +(171744, 'Jackie', 2000, 'M', 199), +(171745, 'Judah', 2000, 'M', 199), +(171746, 'Keven', 2000, 'M', 199), +(171747, 'Raymundo', 2000, 'M', 199), +(171748, 'Cristobal', 2000, 'M', 198), +(171749, 'Josef', 2000, 'M', 198), +(171750, 'Paris', 2000, 'M', 198), +(171751, 'Colt', 2000, 'M', 197), +(171752, 'Giancarlo', 2000, 'M', 197), +(171753, 'Rahul', 2000, 'M', 196), +(171754, 'Savion', 2000, 'M', 196), +(171755, 'Deshaun', 2000, 'M', 195), +(171756, 'Josh', 2000, 'M', 195), +(171757, 'Korey', 2000, 'M', 195), +(171758, 'Gerard', 2000, 'M', 194), +(171759, 'Jacoby', 2000, 'M', 194), +(171760, 'Lonnie', 2000, 'M', 194), +(171761, 'Reilly', 2000, 'M', 194), +(171762, 'Seamus', 2000, 'M', 194), +(171763, 'Don', 2000, 'M', 193), +(171764, 'Giovanny', 2000, 'M', 193), +(171765, 'Jamil', 2000, 'M', 193), +(171766, 'Kristofer', 2000, 'M', 193), +(171767, 'Samir', 2000, 'M', 193), +(171768, 'Benny', 2000, 'M', 192), +(171769, 'Dominik', 2000, 'M', 192), +(171770, 'Finn', 2000, 'M', 192), +(171771, 'Jan', 2000, 'M', 192), +(171772, 'Cale', 2000, 'M', 191), +(171773, 'Irving', 2000, 'M', 191), +(171774, 'Jaxson', 2000, 'M', 191), +(171775, 'Kaiden', 2000, 'M', 191), +(171776, 'Marcelo', 2000, 'M', 190), +(171777, 'Nico', 2000, 'M', 190), +(171778, 'Rashawn', 2000, 'M', 190), +(171779, 'Vernon', 2000, 'M', 190), +(171780, 'Aubrey', 2000, 'M', 189), +(171781, 'Gaven', 2000, 'M', 189), +(171782, 'Jabari', 2000, 'M', 189), +(171783, 'Sincere', 2000, 'M', 189), +(171784, 'Kirk', 2000, 'M', 188), +(171785, 'Maximus', 2000, 'M', 188), +(171786, 'Mikel', 2000, 'M', 188), +(171787, 'Davonte', 2000, 'M', 187), +(171788, 'Heath', 2000, 'M', 187), +(171789, 'Justyn', 2000, 'M', 187), +(171790, 'Kadin', 2000, 'M', 187), +(171791, 'Alden', 2000, 'M', 186), +(171792, 'Kelton', 2000, 'M', 186), +(171793, 'Brandan', 2000, 'M', 185), +(171794, 'Courtney', 2000, 'M', 185), +(171795, 'Camren', 2000, 'M', 184), +(171796, 'Dewayne', 2000, 'M', 184), +(171797, 'Elmer', 2000, 'M', 184), +(171798, 'Darrin', 2000, 'M', 183), +(171799, 'Darrion', 2000, 'M', 183), +(171800, 'Duane', 2000, 'M', 183), +(171801, 'Maverick', 2000, 'M', 183), +(171802, 'Nikhil', 2000, 'M', 183), +(171803, 'Sonny', 2000, 'M', 183), +(171804, 'Abdullah', 2000, 'M', 182), +(171805, 'Chaim', 2000, 'M', 182), +(171806, 'Nathen', 2000, 'M', 182), +(171807, 'Xzavier', 2000, 'M', 182), +(171808, 'Bronson', 2000, 'M', 181), +(171809, 'Efren', 2000, 'M', 180), +(171810, 'Jovani', 2000, 'M', 180), +(171811, 'Phoenix', 2000, 'M', 180), +(171812, 'Reagan', 2000, 'M', 180), +(171813, 'Blaze', 2000, 'M', 179), +(171814, 'Luciano', 2000, 'M', 179), +(171815, 'Royce', 2000, 'M', 179), +(171816, 'Tyrek', 2000, 'M', 179), +(171817, 'Tyshawn', 2000, 'M', 179), +(171818, 'Deontae', 2000, 'M', 178), +(171819, 'Fidel', 2000, 'M', 178), +(171820, 'Gaige', 2000, 'M', 178), +(171821, 'Gideon', 2000, 'M', 178), +(171822, 'Aden', 2000, 'M', 177), +(171823, 'Neal', 2000, 'M', 177), +(171824, 'Ronaldo', 2000, 'M', 177), +(171825, 'Prince', 2000, 'M', 176), +(171826, 'Rickey', 2000, 'M', 176), +(171827, 'Deion', 2000, 'M', 175), +(171828, 'Denver', 2000, 'M', 175), +(171829, 'Matteo', 2000, 'M', 175), +(171830, 'Benito', 2000, 'M', 174), +(171831, 'London', 2000, 'M', 174), +(171832, 'Samson', 2000, 'M', 174), +(171833, 'Bernardo', 2000, 'M', 173), +(171834, 'Raven', 2000, 'M', 173), +(171835, 'Simeon', 2000, 'M', 173), +(171836, 'Turner', 2000, 'M', 173), +(171837, 'Carlo', 2000, 'M', 172), +(171838, 'Gino', 2000, 'M', 172), +(171839, 'Johan', 2000, 'M', 172), +(171840, 'Rocky', 2000, 'M', 172), +(171841, 'Ryley', 2000, 'M', 172), +(171842, 'Domenic', 2000, 'M', 171), +(171843, 'Hugh', 2000, 'M', 171), +(171844, 'Trystan', 2000, 'M', 171), +(171845, 'Emerson', 2000, 'M', 170), +(171846, 'Trevion', 2000, 'M', 170), +(171847, 'Heriberto', 2000, 'M', 169), +(171848, 'Joan', 2000, 'M', 169), +(171849, 'Marques', 2000, 'M', 169), +(171850, 'Raheem', 2000, 'M', 169), +(171851, 'Tyreek', 2000, 'M', 169), +(171852, 'Vaughn', 2000, 'M', 169), +(171853, 'Clint', 2000, 'M', 168), +(171854, 'Nash', 2000, 'M', 168), +(171855, 'Mariano', 2000, 'M', 167), +(171856, 'Myron', 2000, 'M', 167), +(171857, 'Ladarius', 2000, 'M', 166), +(171858, 'Lloyd', 2000, 'M', 166), +(171859, 'Omari', 2000, 'M', 166), +(171860, 'Keshaun', 2000, 'M', 165), +(171861, 'Pierre', 2000, 'M', 165), +(171862, 'Rick', 2000, 'M', 165), +(171863, 'Xander', 2000, 'M', 165), +(171864, 'Eliseo', 2000, 'M', 164), +(171865, 'Jeff', 2000, 'M', 164), +(171866, 'Bradly', 2000, 'M', 163), +(171867, 'Freddie', 2000, 'M', 163), +(171868, 'Kavon', 2000, 'M', 163), +(171869, 'Mekhi', 2000, 'M', 163), +(171870, 'Sabastian', 2000, 'M', 163), +(171871, 'Shea', 2000, 'M', 163), +(171872, 'Dan', 2000, 'M', 162), +(171873, 'Adrien', 2000, 'M', 161), +(171874, 'Alessandro', 2000, 'M', 161), +(171875, 'Isai', 2000, 'M', 161), +(171876, 'Kian', 2000, 'M', 161), +(171877, 'Maximiliano', 2000, 'M', 161), +(171878, 'Paxton', 2000, 'M', 161), +(171879, 'Rasheed', 2000, 'M', 161), +(171880, 'Amos', 2000, 'M', 160), +(171881, 'Blaise', 2000, 'M', 160), +(171882, 'Brodie', 2000, 'M', 160), +(171883, 'Donnie', 2000, 'M', 160), +(171884, 'Isidro', 2000, 'M', 160), +(171885, 'Jaeden', 2000, 'M', 160), +(171886, 'Javion', 2000, 'M', 160), +(171887, 'Jimmie', 2000, 'M', 160), +(171888, 'Johnnie', 2000, 'M', 160), +(171889, 'Kennedy', 2000, 'M', 160), +(171890, 'Tyrique', 2000, 'M', 160), +(171891, 'Andreas', 2000, 'M', 159), +(171892, 'Augustus', 2000, 'M', 159), +(171893, 'Jalon', 2000, 'M', 159), +(171894, 'Jamir', 2000, 'M', 159), +(171895, 'Valentin', 2000, 'M', 159), +(171896, 'Korbin', 2000, 'M', 158), +(171897, 'Lawson', 2000, 'M', 158), +(171898, 'Maxim', 2000, 'M', 158), +(171899, 'Fred', 2000, 'M', 157), +(171900, 'Herbert', 2000, 'M', 157), +(171901, 'Bruno', 2000, 'M', 156), +(171902, 'Donavon', 2000, 'M', 156), +(171903, 'Javonte', 2000, 'M', 156), +(171904, 'Ean', 2000, 'M', 155), +(171905, 'Kamren', 2000, 'M', 155), +(171906, 'Rowan', 2000, 'M', 155), +(171907, 'Alek', 2000, 'M', 154), +(171908, 'Brandyn', 2000, 'M', 154), +(171909, 'Demarco', 2000, 'M', 154), +(171910, 'Hernan', 2000, 'M', 153), +(171911, 'Alexzander', 2000, 'M', 152), +(171912, 'Bo', 2000, 'M', 152), +(171913, 'Branson', 2000, 'M', 152), +(171914, 'Brennon', 2000, 'M', 152), +(171915, 'Genaro', 2000, 'M', 152), +(171916, 'Jamarcus', 2000, 'M', 152), +(171917, 'Aric', 2000, 'M', 151), +(171918, 'Barrett', 2000, 'M', 151), +(171919, 'Rey', 2000, 'M', 151), +(171920, 'Braiden', 2000, 'M', 150), +(171921, 'Brant', 2000, 'M', 150), +(171922, 'Dontae', 2000, 'M', 150), +(171923, 'Harvey', 2000, 'M', 150), +(171924, 'Jovany', 2000, 'M', 150), +(171925, 'Kale', 2000, 'M', 150), +(171926, 'Nicklaus', 2000, 'M', 150), +(171927, 'Zander', 2000, 'M', 150), +(171928, 'Dillion', 2000, 'M', 149), +(171929, 'Donnell', 2000, 'M', 149), +(171930, 'Kylan', 2000, 'M', 149), +(171931, 'Treyvon', 2000, 'M', 149), +(171932, 'Vincenzo', 2000, 'M', 149), +(171933, 'Dayne', 2000, 'M', 148), +(171934, 'Francesco', 2000, 'M', 148), +(171935, 'Isaak', 2000, 'M', 148), +(171936, 'Jaleel', 2000, 'M', 148), +(171937, 'Lionel', 2000, 'M', 148), +(171938, 'Tracy', 2000, 'M', 148), +(171939, 'Giovani', 2000, 'M', 147), +(171940, 'Tavian', 2000, 'M', 147), +(171941, 'Alexandre', 2000, 'M', 146), +(171942, 'Darwin', 2000, 'M', 146), +(171943, 'Tyron', 2000, 'M', 146), +(171944, 'Dequan', 2000, 'M', 145), +(171945, 'Ishmael', 2000, 'M', 145), +(171946, 'Juwan', 2000, 'M', 145), +(171947, 'Mustafa', 2000, 'M', 145), +(171948, 'Raekwon', 2000, 'M', 145), +(171949, 'Ronan', 2000, 'M', 145), +(171950, 'Truman', 2000, 'M', 145), +(171951, 'Jensen', 2000, 'M', 144), +(171952, 'Yousef', 2000, 'M', 144), +(171953, 'Bridger', 2000, 'M', 143), +(171954, 'Jelani', 2000, 'M', 143), +(171955, 'Markel', 2000, 'M', 143), +(171956, 'Zack', 2000, 'M', 143), +(171957, 'Zavier', 2000, 'M', 143), +(171958, 'Alijah', 2000, 'M', 142), +(171959, 'Clyde', 2000, 'M', 142), +(171960, 'Devonta', 2000, 'M', 142), +(171961, 'Jarett', 2000, 'M', 142), +(171962, 'Joseluis', 2000, 'M', 142), +(171963, 'Keandre', 2000, 'M', 142), +(171964, 'Kenton', 2000, 'M', 142), +(171965, 'Santino', 2000, 'M', 142), +(171966, 'Semaj', 2000, 'M', 142), +(171967, 'Montana', 2000, 'M', 141), +(171968, 'Tyreke', 2000, 'M', 141), +(171969, 'Vance', 2000, 'M', 141), +(171970, 'Yosef', 2000, 'M', 141), +(171971, 'Niko', 2000, 'M', 140), +(171972, 'Trae', 2000, 'M', 140), +(171973, 'Uriah', 2000, 'M', 140), +(171974, 'Floyd', 2000, 'M', 139), +(171975, 'Gavyn', 2000, 'M', 139), +(171976, 'Haden', 2000, 'M', 139), +(171977, 'Killian', 2000, 'M', 138), +(171978, 'Lester', 2000, 'M', 138), +(171979, 'Loren', 2000, 'M', 138), +(171980, 'Madison', 2000, 'M', 138), +(171981, 'Tyquan', 2000, 'M', 138), +(171982, 'Tyreese', 2000, 'M', 138), +(171983, 'Cain', 2000, 'M', 137), +(171984, 'Gregorio', 2000, 'M', 137), +(171985, 'Leslie', 2000, 'M', 137), +(171986, 'Luc', 2000, 'M', 137), +(171987, 'Marcanthony', 2000, 'M', 137), +(171988, 'Alton', 2000, 'M', 136), +(171989, 'Braulio', 2000, 'M', 136), +(171990, 'Jakobe', 2000, 'M', 136), +(171991, 'Lazaro', 2000, 'M', 136), +(171992, 'Leland', 2000, 'M', 136), +(171993, 'Robin', 2000, 'M', 136), +(171994, 'Tye', 2000, 'M', 136), +(171995, 'Vladimir', 2000, 'M', 136), +(171996, 'Abdul', 2000, 'M', 135), +(171997, 'Immanuel', 2000, 'M', 135), +(171998, 'Kerry', 2000, 'M', 135), +(171999, 'Markell', 2000, 'M', 135), +(172000, 'Zain', 2000, 'M', 135), +(172001, 'Adriel', 2000, 'M', 134), +(172002, 'Rhys', 2000, 'M', 134), +(172003, 'Rylee', 2000, 'M', 134), +(172004, 'Anders', 2000, 'M', 133), +(172005, 'Bilal', 2000, 'M', 133), +(172006, 'Fletcher', 2000, 'M', 133), +(172007, 'Jacquez', 2000, 'M', 133), +(172008, 'Jade', 2000, 'M', 133), +(172009, 'Treyton', 2000, 'M', 133), +(172010, 'Blayne', 2000, 'M', 132), +(172011, 'Coleton', 2000, 'M', 132), +(172012, 'Hakeem', 2000, 'M', 132), +(172013, 'Harris', 2000, 'M', 132), +(172014, 'Daron', 2000, 'M', 131), +(172015, 'Elvin', 2000, 'M', 131), +(172016, 'Hans', 2000, 'M', 131), +(172017, 'Waylon', 2000, 'M', 131), +(172018, 'Cecil', 2000, 'M', 130), +(172019, 'Jair', 2000, 'M', 130), +(172020, 'Jovanny', 2000, 'M', 130), +(172021, 'Trenten', 2000, 'M', 130), +(172022, 'Britton', 2000, 'M', 129), +(172023, 'Broderick', 2000, 'M', 129), +(172024, 'Cristofer', 2000, 'M', 129), +(172025, 'Dyllan', 2000, 'M', 129), +(172026, 'Jacques', 2000, 'M', 129), +(172027, 'Jordyn', 2000, 'M', 129), +(172028, 'Shelby', 2000, 'M', 129), +(172029, 'Brandt', 2000, 'M', 128), +(172030, 'Campbell', 2000, 'M', 128), +(172031, 'Dajuan', 2000, 'M', 128), +(172032, 'Eliezer', 2000, 'M', 128), +(172033, 'Gannon', 2000, 'M', 128), +(172034, 'Jonatan', 2000, 'M', 128), +(172035, 'Konnor', 2000, 'M', 128), +(172036, 'Mauro', 2000, 'M', 128), +(172037, 'Tavon', 2000, 'M', 128), +(172038, 'Trevin', 2000, 'M', 128), +(172039, 'Coy', 2000, 'M', 127), +(172040, 'Darrian', 2000, 'M', 127), +(172041, 'Dionte', 2000, 'M', 127), +(172042, 'Herman', 2000, 'M', 127), +(172043, 'Hezekiah', 2000, 'M', 127), +(172044, 'Jovanni', 2000, 'M', 127), +(172045, 'Juancarlos', 2000, 'M', 127), +(172046, 'Lars', 2000, 'M', 127), +(172047, 'Oswaldo', 2000, 'M', 127), +(172048, 'Trayvon', 2000, 'M', 127), +(172049, 'Jayvon', 2000, 'M', 126), +(172050, 'Kyree', 2000, 'M', 126), +(172051, 'Leif', 2000, 'M', 126), +(172052, 'Milo', 2000, 'M', 126), +(172053, 'Rico', 2000, 'M', 126), +(172054, 'Daveon', 2000, 'M', 125), +(172055, 'Erich', 2000, 'M', 125), +(172056, 'Layton', 2000, 'M', 125), +(172057, 'Menachem', 2000, 'M', 125), +(172058, 'Sydney', 2000, 'M', 125), +(172059, 'Johnpaul', 2000, 'M', 124), +(172060, 'Miguelangel', 2000, 'M', 124), +(172061, 'Santana', 2000, 'M', 124), +(172062, 'Arjun', 2000, 'M', 123), +(172063, 'Arman', 2000, 'M', 123), +(172064, 'Bradford', 2000, 'M', 123), +(172065, 'Dakotah', 2000, 'M', 123), +(172066, 'Kalob', 2000, 'M', 123), +(172067, 'Ken', 2000, 'M', 123), +(172068, 'Tavion', 2000, 'M', 123), +(172069, 'Zayne', 2000, 'M', 123), +(172070, 'Demond', 2000, 'M', 122), +(172071, 'Edmund', 2000, 'M', 122), +(172072, 'Gene', 2000, 'M', 122), +(172073, 'Jarret', 2000, 'M', 122), +(172074, 'Tahj', 2000, 'M', 122), +(172075, 'Taj', 2000, 'M', 122), +(172076, 'Arron', 2000, 'M', 121), +(172077, 'Bishop', 2000, 'M', 121), +(172078, 'Daylon', 2000, 'M', 121), +(172079, 'Ervin', 2000, 'M', 121), +(172080, 'Ethen', 2000, 'M', 121), +(172081, 'Jedidiah', 2000, 'M', 121), +(172082, 'Konner', 2000, 'M', 121), +(172083, 'Payne', 2000, 'M', 121), +(172084, 'Sahil', 2000, 'M', 121), +(172085, 'Yusuf', 2000, 'M', 121), +(172086, 'Ameer', 2000, 'M', 120), +(172087, 'Jaquez', 2000, 'M', 120), +(172088, 'Jase', 2000, 'M', 120), +(172089, 'Javen', 2000, 'M', 120), +(172090, 'Jaycob', 2000, 'M', 120), +(172091, 'Kahlil', 2000, 'M', 120), +(172092, 'Kalen', 2000, 'M', 120), +(172093, 'Rayshawn', 2000, 'M', 120), +(172094, 'Tyriq', 2000, 'M', 120), +(172095, 'Aditya', 2000, 'M', 119), +(172096, 'Cannon', 2000, 'M', 119), +(172097, 'Eddy', 2000, 'M', 119), +(172098, 'Everardo', 2000, 'M', 119), +(172099, 'Jim', 2000, 'M', 119), +(172100, 'Dashaun', 2000, 'M', 118), +(172101, 'Devontae', 2000, 'M', 118), +(172102, 'Dusty', 2000, 'M', 118), +(172103, 'Hasan', 2000, 'M', 118), +(172104, 'Jericho', 2000, 'M', 118), +(172105, 'Kalvin', 2000, 'M', 118), +(172106, 'Rocco', 2000, 'M', 118), +(172107, 'Dejuan', 2000, 'M', 117), +(172108, 'Jerrod', 2000, 'M', 117), +(172109, 'Stewart', 2000, 'M', 117), +(172110, 'Augustine', 2000, 'M', 116), +(172111, 'Brannon', 2000, 'M', 116), +(172112, 'Galen', 2000, 'M', 116), +(172113, 'Geovanni', 2000, 'M', 116), +(172114, 'Jalin', 2000, 'M', 116), +(172115, 'Jaret', 2000, 'M', 116), +(172116, 'Milan', 2000, 'M', 116), +(172117, 'Neo', 2000, 'M', 116), +(172118, 'Slade', 2000, 'M', 116), +(172119, 'Bowen', 2000, 'M', 115), +(172120, 'Caiden', 2000, 'M', 115), +(172121, 'Franco', 2000, 'M', 115), +(172122, 'Mordechai', 2000, 'M', 115), +(172123, 'Armand', 2000, 'M', 114), +(172124, 'Bill', 2000, 'M', 114), +(172125, 'Dejon', 2000, 'M', 114), +(172126, 'Fredy', 2000, 'M', 114), +(172127, 'Kolten', 2000, 'M', 114), +(172128, 'Marcellus', 2000, 'M', 114), +(172129, 'Sebastien', 2000, 'M', 114), +(172130, 'Wilfredo', 2000, 'M', 114), +(172131, 'Benton', 2000, 'M', 113), +(172132, 'Chancellor', 2000, 'M', 113), +(172133, 'Dana', 2000, 'M', 113), +(172134, 'Edgardo', 2000, 'M', 113), +(172135, 'Jajuan', 2000, 'M', 113), +(172136, 'Jalil', 2000, 'M', 113), +(172137, 'Jalyn', 2000, 'M', 113), +(172138, 'Jerod', 2000, 'M', 113), +(172139, 'Keelan', 2000, 'M', 113), +(172140, 'Yisroel', 2000, 'M', 113), +(172141, 'Abner', 2000, 'M', 112), +(172142, 'Demonte', 2000, 'M', 112), +(172143, 'Enzo', 2000, 'M', 112), +(172144, 'Kyron', 2000, 'M', 112), +(172145, 'Luiz', 2000, 'M', 112), +(172146, 'Rex', 2000, 'M', 112), +(172147, 'Varun', 2000, 'M', 112), +(172148, 'Darrien', 2000, 'M', 111), +(172149, 'Johnson', 2000, 'M', 111), +(172150, 'Kegan', 2000, 'M', 111), +(172151, 'Marcello', 2000, 'M', 111), +(172152, 'Mckinley', 2000, 'M', 111), +(172153, 'Obed', 2000, 'M', 111), +(172154, 'Denis', 2000, 'M', 110), +(172155, 'Eleazar', 2000, 'M', 110), +(172156, 'Federico', 2000, 'M', 110), +(172157, 'Jamaal', 2000, 'M', 110), +(172158, 'Kobie', 2000, 'M', 110), +(172159, 'Matthias', 2000, 'M', 110), +(172160, 'Quinlan', 2000, 'M', 110), +(172161, 'Ramsey', 2000, 'M', 110), +(172162, 'Deante', 2000, 'M', 109), +(172163, 'Dustyn', 2000, 'M', 109), +(172164, 'Messiah', 2000, 'M', 109), +(172165, 'Notnamed', 2000, 'M', 109), +(172166, 'Randolph', 2000, 'M', 109), +(172167, 'Baylor', 2000, 'M', 108), +(172168, 'Dameon', 2000, 'M', 108), +(172169, 'Enoch', 2000, 'M', 108), +(172170, 'Louie', 2000, 'M', 108), +(172171, 'Sherman', 2000, 'M', 108), +(172172, 'Theron', 2000, 'M', 108), +(172173, 'Ammon', 2000, 'M', 107), +(172174, 'Blair', 2000, 'M', 107), +(172175, 'Chauncey', 2000, 'M', 107), +(172176, 'Codey', 2000, 'M', 107), +(172177, 'Daren', 2000, 'M', 107), +(172178, 'Jordi', 2000, 'M', 107), +(172179, 'Willis', 2000, 'M', 107), +(172180, 'Ajay', 2000, 'M', 106), +(172181, 'Cedrick', 2000, 'M', 106), +(172182, 'Jerimiah', 2000, 'M', 106), +(172183, 'Keshon', 2000, 'M', 106), +(172184, 'Shelton', 2000, 'M', 106), +(172185, 'Auston', 2000, 'M', 105), +(172186, 'Camryn', 2000, 'M', 105), +(172187, 'Kain', 2000, 'M', 105), +(172188, 'Kenan', 2000, 'M', 105), +(172189, 'Presley', 2000, 'M', 105), +(172190, 'Shlomo', 2000, 'M', 105), +(172191, 'Stetson', 2000, 'M', 105), +(172192, 'Tayler', 2000, 'M', 105), +(172193, 'Aman', 2000, 'M', 104), +(172194, 'Desean', 2000, 'M', 104), +(172195, 'Dezmond', 2000, 'M', 104), +(172196, 'Kentrell', 2000, 'M', 104), +(172197, 'Nevin', 2000, 'M', 104), +(172198, 'Ryland', 2000, 'M', 104), +(172199, 'Timmy', 2000, 'M', 104), +(172200, 'Yehuda', 2000, 'M', 104), +(172201, 'Dorien', 2000, 'M', 103), +(172202, 'Morris', 2000, 'M', 103), +(172203, 'Bryon', 2000, 'M', 102), +(172204, 'Caelan', 2000, 'M', 102), +(172205, 'Chester', 2000, 'M', 102), +(172206, 'Christion', 2000, 'M', 102), +(172207, 'Dakoda', 2000, 'M', 102), +(172208, 'Kendell', 2000, 'M', 102), +(172209, 'Kobi', 2000, 'M', 102), +(172210, 'Leighton', 2000, 'M', 102), +(172211, 'Luther', 2000, 'M', 102), +(172212, 'Marion', 2000, 'M', 102), +(172213, 'Pranav', 2000, 'M', 102), +(172214, 'Travion', 2000, 'M', 102), +(172215, 'Trinity', 2000, 'M', 102), +(172216, 'Briar', 2000, 'M', 101), +(172217, 'Claudio', 2000, 'M', 101), +(172218, 'Devlin', 2000, 'M', 101), +(172219, 'Ira', 2000, 'M', 101), +(172220, 'Jadyn', 2000, 'M', 101), +(172221, 'Long', 2000, 'M', 101), +(172222, 'Lyle', 2000, 'M', 101), +(172223, 'Mikael', 2000, 'M', 101), +(172224, 'Tai', 2000, 'M', 101), +(172225, 'Theo', 2000, 'M', 101), +(172226, 'Canyon', 2000, 'M', 100), +(172227, 'Chace', 2000, 'M', 100), +(172228, 'Demetri', 2000, 'M', 100), +(172229, 'Deric', 2000, 'M', 100), +(172230, 'Justen', 2000, 'M', 100), +(172231, 'Naseem', 2000, 'M', 100), +(172232, 'Robbie', 2000, 'M', 100), +(172233, 'Tyrus', 2000, 'M', 100), +(172234, 'Wendell', 2000, 'M', 100), +(172235, 'Yash', 2000, 'M', 100), +(172236, 'Emily', 2001, 'F', 25052), +(172237, 'Madison', 2001, 'F', 22158), +(172238, 'Hannah', 2001, 'F', 20707), +(172239, 'Ashley', 2001, 'F', 16524), +(172240, 'Alexis', 2001, 'F', 16396), +(172241, 'Sarah', 2001, 'F', 15890), +(172242, 'Samantha', 2001, 'F', 15859), +(172243, 'Abigail', 2001, 'F', 14803), +(172244, 'Elizabeth', 2001, 'F', 14780), +(172245, 'Olivia', 2001, 'F', 13974), +(172246, 'Jessica', 2001, 'F', 13916), +(172247, 'Taylor', 2001, 'F', 13687), +(172248, 'Emma', 2001, 'F', 13304), +(172249, 'Alyssa', 2001, 'F', 13265), +(172250, 'Lauren', 2001, 'F', 12778), +(172251, 'Grace', 2001, 'F', 12084), +(172252, 'Kayla', 2001, 'F', 11889), +(172253, 'Brianna', 2001, 'F', 11774), +(172254, 'Anna', 2001, 'F', 10570), +(172255, 'Megan', 2001, 'F', 10296), +(172256, 'Victoria', 2001, 'F', 10177), +(172257, 'Destiny', 2001, 'F', 9744), +(172258, 'Sydney', 2001, 'F', 9636), +(172259, 'Rachel', 2001, 'F', 9529), +(172260, 'Jasmine', 2001, 'F', 8954), +(172261, 'Jennifer', 2001, 'F', 8920), +(172262, 'Julia', 2001, 'F', 8835), +(172263, 'Isabella', 2001, 'F', 8830), +(172264, 'Morgan', 2001, 'F', 8734), +(172265, 'Chloe', 2001, 'F', 8174), +(172266, 'Kaitlyn', 2001, 'F', 8160), +(172267, 'Natalie', 2001, 'F', 8047), +(172268, 'Hailey', 2001, 'F', 8028), +(172269, 'Haley', 2001, 'F', 8009), +(172270, 'Katherine', 2001, 'F', 7877), +(172271, 'Nicole', 2001, 'F', 7813), +(172272, 'Sophia', 2001, 'F', 7158), +(172273, 'Alexandra', 2001, 'F', 7041), +(172274, 'Amanda', 2001, 'F', 6963), +(172275, 'Mackenzie', 2001, 'F', 6934), +(172276, 'Maria', 2001, 'F', 6837), +(172277, 'Savannah', 2001, 'F', 6733), +(172278, 'Stephanie', 2001, 'F', 6605), +(172279, 'Allison', 2001, 'F', 6209), +(172280, 'Jenna', 2001, 'F', 6142), +(172281, 'Rebecca', 2001, 'F', 5878), +(172282, 'Jordan', 2001, 'F', 5802), +(172283, 'Andrea', 2001, 'F', 5744), +(172284, 'Mary', 2001, 'F', 5724), +(172285, 'Gabrielle', 2001, 'F', 5603), +(172286, 'Amber', 2001, 'F', 5572), +(172287, 'Katelyn', 2001, 'F', 5439), +(172288, 'Faith', 2001, 'F', 5408), +(172289, 'Makayla', 2001, 'F', 5315), +(172290, 'Sierra', 2001, 'F', 5236), +(172291, 'Madeline', 2001, 'F', 5220), +(172292, 'Brooke', 2001, 'F', 5211), +(172293, 'Sara', 2001, 'F', 5150), +(172294, 'Michelle', 2001, 'F', 5028), +(172295, 'Erin', 2001, 'F', 4957), +(172296, 'Kimberly', 2001, 'F', 4879), +(172297, 'Caroline', 2001, 'F', 4862), +(172298, 'Danielle', 2001, 'F', 4788), +(172299, 'Vanessa', 2001, 'F', 4670), +(172300, 'Zoe', 2001, 'F', 4644), +(172301, 'Kaylee', 2001, 'F', 4617), +(172302, 'Trinity', 2001, 'F', 4478), +(172303, 'Shelby', 2001, 'F', 4366), +(172304, 'Bailey', 2001, 'F', 4339), +(172305, 'Jacqueline', 2001, 'F', 4298), +(172306, 'Paige', 2001, 'F', 4272), +(172307, 'Autumn', 2001, 'F', 4191), +(172308, 'Courtney', 2001, 'F', 4173), +(172309, 'Melissa', 2001, 'F', 4145), +(172310, 'Jada', 2001, 'F', 3983), +(172311, 'Mia', 2001, 'F', 3916), +(172312, 'Angela', 2001, 'F', 3912), +(172313, 'Alexa', 2001, 'F', 3898), +(172314, 'Marissa', 2001, 'F', 3852), +(172315, 'Christina', 2001, 'F', 3739), +(172316, 'Catherine', 2001, 'F', 3727), +(172317, 'Claire', 2001, 'F', 3641), +(172318, 'Leslie', 2001, 'F', 3611), +(172319, 'Gabriella', 2001, 'F', 3610), +(172320, 'Mariah', 2001, 'F', 3582), +(172321, 'Laura', 2001, 'F', 3554), +(172322, 'Leah', 2001, 'F', 3516), +(172323, 'Isabel', 2001, 'F', 3489), +(172324, 'Caitlin', 2001, 'F', 3455), +(172325, 'Molly', 2001, 'F', 3413), +(172326, 'Alexandria', 2001, 'F', 3404), +(172327, 'Ariana', 2001, 'F', 3376), +(172328, 'Angelina', 2001, 'F', 3368), +(172329, 'Breanna', 2001, 'F', 3367), +(172330, 'Aaliyah', 2001, 'F', 3352), +(172331, 'Kylie', 2001, 'F', 3352), +(172332, 'Kathryn', 2001, 'F', 3329), +(172333, 'Jade', 2001, 'F', 3279), +(172334, 'Kelsey', 2001, 'F', 3266), +(172335, 'Katie', 2001, 'F', 3262), +(172336, 'Briana', 2001, 'F', 3235), +(172337, 'Diana', 2001, 'F', 3195), +(172338, 'Lily', 2001, 'F', 3192), +(172339, 'Angel', 2001, 'F', 3079), +(172340, 'Lindsey', 2001, 'F', 3050), +(172341, 'Riley', 2001, 'F', 3044), +(172342, 'Cassidy', 2001, 'F', 3029), +(172343, 'Arianna', 2001, 'F', 3015), +(172344, 'Mikayla', 2001, 'F', 3013), +(172345, 'Maya', 2001, 'F', 3010), +(172346, 'Lillian', 2001, 'F', 2949), +(172347, 'Audrey', 2001, 'F', 2948), +(172348, 'Isabelle', 2001, 'F', 2943), +(172349, 'Amy', 2001, 'F', 2935), +(172350, 'Brittany', 2001, 'F', 2929), +(172351, 'Sabrina', 2001, 'F', 2921), +(172352, 'Melanie', 2001, 'F', 2911), +(172353, 'Margaret', 2001, 'F', 2895), +(172354, 'Cheyenne', 2001, 'F', 2873), +(172355, 'Jillian', 2001, 'F', 2844), +(172356, 'Madelyn', 2001, 'F', 2844), +(172357, 'Cassandra', 2001, 'F', 2834), +(172358, 'Jocelyn', 2001, 'F', 2827), +(172359, 'Kelly', 2001, 'F', 2814), +(172360, 'Gabriela', 2001, 'F', 2732), +(172361, 'Evelyn', 2001, 'F', 2692), +(172362, 'Tiffany', 2001, 'F', 2688), +(172363, 'Miranda', 2001, 'F', 2681), +(172364, 'Erica', 2001, 'F', 2668), +(172365, 'Alicia', 2001, 'F', 2657), +(172366, 'Adriana', 2001, 'F', 2640), +(172367, 'Ava', 2001, 'F', 2539), +(172368, 'Caitlyn', 2001, 'F', 2536), +(172369, 'Ana', 2001, 'F', 2515), +(172370, 'Mckenzie', 2001, 'F', 2471), +(172371, 'Angelica', 2001, 'F', 2436), +(172372, 'Crystal', 2001, 'F', 2426), +(172373, 'Kennedy', 2001, 'F', 2406), +(172374, 'Daisy', 2001, 'F', 2371), +(172375, 'Lydia', 2001, 'F', 2353), +(172376, 'Skylar', 2001, 'F', 2341), +(172377, 'Summer', 2001, 'F', 2313), +(172378, 'Alexia', 2001, 'F', 2293), +(172379, 'Kiara', 2001, 'F', 2289), +(172380, 'Sofia', 2001, 'F', 2287), +(172381, 'Heather', 2001, 'F', 2272), +(172382, 'Erika', 2001, 'F', 2229), +(172383, 'Karen', 2001, 'F', 2193), +(172384, 'Mya', 2001, 'F', 2189), +(172385, 'Hope', 2001, 'F', 2179), +(172386, 'Sophie', 2001, 'F', 2172), +(172387, 'Avery', 2001, 'F', 2132), +(172388, 'Chelsea', 2001, 'F', 2116), +(172389, 'Veronica', 2001, 'F', 2085), +(172390, 'Juliana', 2001, 'F', 2073), +(172391, 'Bianca', 2001, 'F', 2070), +(172392, 'Ashlyn', 2001, 'F', 2030), +(172393, 'Bethany', 2001, 'F', 2028), +(172394, 'Meghan', 2001, 'F', 2024), +(172395, 'Daniela', 2001, 'F', 2018), +(172396, 'Natalia', 2001, 'F', 2004), +(172397, 'Kristen', 2001, 'F', 1991), +(172398, 'Abby', 2001, 'F', 1985), +(172399, 'Payton', 2001, 'F', 1984), +(172400, 'Valerie', 2001, 'F', 1980), +(172401, 'Karina', 2001, 'F', 1962), +(172402, 'Jamie', 2001, 'F', 1945), +(172403, 'Diamond', 2001, 'F', 1943), +(172404, 'Cynthia', 2001, 'F', 1921), +(172405, 'Gracie', 2001, 'F', 1911), +(172406, 'Shannon', 2001, 'F', 1906), +(172407, 'Brooklyn', 2001, 'F', 1905), +(172408, 'Jordyn', 2001, 'F', 1884), +(172409, 'Peyton', 2001, 'F', 1883), +(172410, 'Nayeli', 2001, 'F', 1845), +(172411, 'Carly', 2001, 'F', 1833), +(172412, 'Alondra', 2001, 'F', 1829), +(172413, 'Michaela', 2001, 'F', 1826), +(172414, 'Kaitlin', 2001, 'F', 1820), +(172415, 'Maggie', 2001, 'F', 1819), +(172416, 'Naomi', 2001, 'F', 1818), +(172417, 'Monica', 2001, 'F', 1792), +(172418, 'Hayley', 2001, 'F', 1787), +(172419, 'Julianna', 2001, 'F', 1776), +(172420, 'Gianna', 2001, 'F', 1765), +(172421, 'Hanna', 2001, 'F', 1757), +(172422, 'Jasmin', 2001, 'F', 1756), +(172423, 'Rebekah', 2001, 'F', 1736), +(172424, 'Brenda', 2001, 'F', 1734), +(172425, 'Desiree', 2001, 'F', 1720), +(172426, 'Ella', 2001, 'F', 1718), +(172427, 'Alejandra', 2001, 'F', 1716), +(172428, 'Karla', 2001, 'F', 1698), +(172429, 'Mckenna', 2001, 'F', 1693), +(172430, 'Kylee', 2001, 'F', 1675), +(172431, 'Makenzie', 2001, 'F', 1660), +(172432, 'Ariel', 2001, 'F', 1653), +(172433, 'Britney', 2001, 'F', 1639), +(172434, 'Amelia', 2001, 'F', 1634), +(172435, 'Kate', 2001, 'F', 1625), +(172436, 'Esmeralda', 2001, 'F', 1621), +(172437, 'Camryn', 2001, 'F', 1596), +(172438, 'Valeria', 2001, 'F', 1589), +(172439, 'Jazmin', 2001, 'F', 1583), +(172440, 'Delaney', 2001, 'F', 1582), +(172441, 'Joanna', 2001, 'F', 1554), +(172442, 'Kyra', 2001, 'F', 1532), +(172443, 'Kendall', 2001, 'F', 1524), +(172444, 'Aubrey', 2001, 'F', 1505), +(172445, 'Lindsay', 2001, 'F', 1502), +(172446, 'Claudia', 2001, 'F', 1495), +(172447, 'Kendra', 2001, 'F', 1495), +(172448, 'Adrianna', 2001, 'F', 1490), +(172449, 'Selena', 2001, 'F', 1481), +(172450, 'Sadie', 2001, 'F', 1479), +(172451, 'Kara', 2001, 'F', 1474), +(172452, 'Jazmine', 2001, 'F', 1466), +(172453, 'Holly', 2001, 'F', 1461), +(172454, 'Giselle', 2001, 'F', 1460), +(172455, 'Reagan', 2001, 'F', 1447), +(172456, 'Brittney', 2001, 'F', 1442), +(172457, 'Jayla', 2001, 'F', 1422), +(172458, 'Genesis', 2001, 'F', 1417), +(172459, 'Nancy', 2001, 'F', 1417), +(172460, 'Julie', 2001, 'F', 1414), +(172461, 'Aliyah', 2001, 'F', 1411), +(172462, 'Fatima', 2001, 'F', 1404), +(172463, 'Elena', 2001, 'F', 1392), +(172464, 'Savanna', 2001, 'F', 1379), +(172465, 'Charlotte', 2001, 'F', 1378), +(172466, 'Cierra', 2001, 'F', 1371), +(172467, 'Ruby', 2001, 'F', 1362), +(172468, 'Alison', 2001, 'F', 1359), +(172469, 'Raven', 2001, 'F', 1355), +(172470, 'Guadalupe', 2001, 'F', 1342), +(172471, 'Elise', 2001, 'F', 1336), +(172472, 'Kathleen', 2001, 'F', 1336), +(172473, 'Mallory', 2001, 'F', 1336), +(172474, 'Nadia', 2001, 'F', 1331), +(172475, 'Rylee', 2001, 'F', 1329), +(172476, 'Cameron', 2001, 'F', 1318), +(172477, 'Macy', 2001, 'F', 1313), +(172478, 'Nina', 2001, 'F', 1304), +(172479, 'Rachael', 2001, 'F', 1301), +(172480, 'April', 2001, 'F', 1298), +(172481, 'Serena', 2001, 'F', 1295), +(172482, 'Katelynn', 2001, 'F', 1293), +(172483, 'Kyla', 2001, 'F', 1293), +(172484, 'Casey', 2001, 'F', 1283), +(172485, 'Kristina', 2001, 'F', 1281), +(172486, 'Katrina', 2001, 'F', 1274), +(172487, 'Asia', 2001, 'F', 1268), +(172488, 'Wendy', 2001, 'F', 1254), +(172489, 'Tatiana', 2001, 'F', 1251), +(172490, 'Christine', 2001, 'F', 1245), +(172491, 'Haylee', 2001, 'F', 1237), +(172492, 'Alana', 2001, 'F', 1233), +(172493, 'Cindy', 2001, 'F', 1231), +(172494, 'Camille', 2001, 'F', 1226), +(172495, 'Kirsten', 2001, 'F', 1224), +(172496, 'Patricia', 2001, 'F', 1222), +(172497, 'Allyson', 2001, 'F', 1220), +(172498, 'Makenna', 2001, 'F', 1215), +(172499, 'Sandra', 2001, 'F', 1206), +(172500, 'Carolina', 2001, 'F', 1204), +(172501, 'Nevaeh', 2001, 'F', 1198), +(172502, 'Carmen', 2001, 'F', 1173), +(172503, 'Yesenia', 2001, 'F', 1172), +(172504, 'Cecilia', 2001, 'F', 1164), +(172505, 'Addison', 2001, 'F', 1162), +(172506, 'Mariana', 2001, 'F', 1161), +(172507, 'Tara', 2001, 'F', 1158), +(172508, 'Eva', 2001, 'F', 1157), +(172509, 'Bridget', 2001, 'F', 1155), +(172510, 'Josephine', 2001, 'F', 1153), +(172511, 'Skyler', 2001, 'F', 1144), +(172512, 'Liliana', 2001, 'F', 1141), +(172513, 'Tori', 2001, 'F', 1131), +(172514, 'Priscilla', 2001, 'F', 1127), +(172515, 'Alexus', 2001, 'F', 1118), +(172516, 'Madeleine', 2001, 'F', 1118), +(172517, 'Josie', 2001, 'F', 1101), +(172518, 'Mercedes', 2001, 'F', 1097), +(172519, 'Alissa', 2001, 'F', 1096), +(172520, 'Celeste', 2001, 'F', 1093), +(172521, 'Elisabeth', 2001, 'F', 1091), +(172522, 'Kira', 2001, 'F', 1091), +(172523, 'Kailey', 2001, 'F', 1090), +(172524, 'Lauryn', 2001, 'F', 1083), +(172525, 'Melody', 2001, 'F', 1079), +(172526, 'Natasha', 2001, 'F', 1079), +(172527, 'Miriam', 2001, 'F', 1068), +(172528, 'Heaven', 2001, 'F', 1063), +(172529, 'Amaya', 2001, 'F', 1055), +(172530, 'Sidney', 2001, 'F', 1053), +(172531, 'Shayla', 2001, 'F', 1052), +(172532, 'Esther', 2001, 'F', 1051), +(172533, 'India', 2001, 'F', 1049), +(172534, 'Denise', 2001, 'F', 1048), +(172535, 'Imani', 2001, 'F', 1047), +(172536, 'Kassandra', 2001, 'F', 1046), +(172537, 'Tessa', 2001, 'F', 1046), +(172538, 'Jaden', 2001, 'F', 1045), +(172539, 'Dominique', 2001, 'F', 1043), +(172540, 'Logan', 2001, 'F', 1041), +(172541, 'Lucy', 2001, 'F', 1040), +(172542, 'Paola', 2001, 'F', 1039), +(172543, 'Rose', 2001, 'F', 1029), +(172544, 'Anastasia', 2001, 'F', 1028), +(172545, 'Nia', 2001, 'F', 1025), +(172546, 'Anne', 2001, 'F', 1023), +(172547, 'Vivian', 2001, 'F', 1018), +(172548, 'Anahi', 2001, 'F', 1017), +(172549, 'Alaina', 2001, 'F', 1005), +(172550, 'Ciara', 2001, 'F', 1005), +(172551, 'Kamryn', 2001, 'F', 996), +(172552, 'Bryanna', 2001, 'F', 982), +(172553, 'Marisa', 2001, 'F', 982), +(172554, 'Annie', 2001, 'F', 977), +(172555, 'Kristin', 2001, 'F', 962), +(172556, 'Kayleigh', 2001, 'F', 961), +(172557, 'Brenna', 2001, 'F', 960), +(172558, 'Meredith', 2001, 'F', 955), +(172559, 'Clara', 2001, 'F', 951), +(172560, 'Clarissa', 2001, 'F', 951), +(172561, 'Kiana', 2001, 'F', 948), +(172562, 'Layla', 2001, 'F', 947), +(172563, 'Dana', 2001, 'F', 944), +(172564, 'Dakota', 2001, 'F', 942), +(172565, 'Ruth', 2001, 'F', 937), +(172566, 'Rosa', 2001, 'F', 932), +(172567, 'Kassidy', 2001, 'F', 929), +(172568, 'Callie', 2001, 'F', 919), +(172569, 'Emilee', 2001, 'F', 916), +(172570, 'Marina', 2001, 'F', 913), +(172571, 'Lisa', 2001, 'F', 908), +(172572, 'Ashleigh', 2001, 'F', 907), +(172573, 'Cristina', 2001, 'F', 907), +(172574, 'Julissa', 2001, 'F', 906), +(172575, 'Ellie', 2001, 'F', 905), +(172576, 'Tabitha', 2001, 'F', 902), +(172577, 'Whitney', 2001, 'F', 899), +(172578, 'Hallie', 2001, 'F', 892), +(172579, 'Helen', 2001, 'F', 884), +(172580, 'Ashlee', 2001, 'F', 880), +(172581, 'Carolyn', 2001, 'F', 868), +(172582, 'Tiana', 2001, 'F', 865), +(172583, 'Gillian', 2001, 'F', 863), +(172584, 'Annabelle', 2001, 'F', 861), +(172585, 'Deja', 2001, 'F', 852), +(172586, 'Raquel', 2001, 'F', 850), +(172587, 'Katlyn', 2001, 'F', 848), +(172588, 'Deanna', 2001, 'F', 842), +(172589, 'Linda', 2001, 'F', 837), +(172590, 'Ivy', 2001, 'F', 836), +(172591, 'Heidi', 2001, 'F', 830), +(172592, 'Teresa', 2001, 'F', 830), +(172593, 'Tamia', 2001, 'F', 828), +(172594, 'Eleanor', 2001, 'F', 826), +(172595, 'Ashlynn', 2001, 'F', 824), +(172596, 'Ashton', 2001, 'F', 823), +(172597, 'Destinee', 2001, 'F', 823), +(172598, 'Zoey', 2001, 'F', 822), +(172599, 'Annika', 2001, 'F', 821), +(172600, 'Harley', 2001, 'F', 820), +(172601, 'Jayden', 2001, 'F', 810), +(172602, 'Jenny', 2001, 'F', 810), +(172603, 'Kaitlynn', 2001, 'F', 808), +(172604, 'Jaqueline', 2001, 'F', 807), +(172605, 'Eliza', 2001, 'F', 805), +(172606, 'Lesly', 2001, 'F', 801), +(172607, 'Monique', 2001, 'F', 800), +(172608, 'Krystal', 2001, 'F', 795), +(172609, 'Lizbeth', 2001, 'F', 795), +(172610, 'Baylee', 2001, 'F', 792), +(172611, 'Madalyn', 2001, 'F', 785), +(172612, 'Daniella', 2001, 'F', 783), +(172613, 'Talia', 2001, 'F', 783), +(172614, 'Lilly', 2001, 'F', 782), +(172615, 'Serenity', 2001, 'F', 782), +(172616, 'Gisselle', 2001, 'F', 780), +(172617, 'Allie', 2001, 'F', 777), +(172618, 'Shania', 2001, 'F', 762), +(172619, 'Hailee', 2001, 'F', 758), +(172620, 'Renee', 2001, 'F', 754), +(172621, 'Virginia', 2001, 'F', 753), +(172622, 'Yasmin', 2001, 'F', 753), +(172623, 'Phoebe', 2001, 'F', 752), +(172624, 'Gina', 2001, 'F', 747), +(172625, 'Regan', 2001, 'F', 747), +(172626, 'Precious', 2001, 'F', 746), +(172627, 'Martha', 2001, 'F', 745), +(172628, 'Georgia', 2001, 'F', 741), +(172629, 'Eden', 2001, 'F', 739), +(172630, 'Haleigh', 2001, 'F', 739), +(172631, 'Angie', 2001, 'F', 733), +(172632, 'Iris', 2001, 'F', 733), +(172633, 'Kaylie', 2001, 'F', 733), +(172634, 'Kaleigh', 2001, 'F', 728), +(172635, 'Ayanna', 2001, 'F', 726), +(172636, 'Francesca', 2001, 'F', 723), +(172637, 'Marie', 2001, 'F', 722), +(172638, 'Alayna', 2001, 'F', 720), +(172639, 'Cheyanne', 2001, 'F', 716), +(172640, 'Gloria', 2001, 'F', 715), +(172641, 'Meagan', 2001, 'F', 712), +(172642, 'Jayda', 2001, 'F', 711), +(172643, 'Marisol', 2001, 'F', 710), +(172644, 'Emely', 2001, 'F', 709), +(172645, 'Carissa', 2001, 'F', 706), +(172646, 'Piper', 2001, 'F', 705), +(172647, 'Janet', 2001, 'F', 696), +(172648, 'Tatum', 2001, 'F', 696), +(172649, 'Fiona', 2001, 'F', 694), +(172650, 'Lacey', 2001, 'F', 694), +(172651, 'Abbey', 2001, 'F', 687), +(172652, 'Alisha', 2001, 'F', 684), +(172653, 'Aurora', 2001, 'F', 683), +(172654, 'Johanna', 2001, 'F', 676), +(172655, 'Yasmine', 2001, 'F', 676), +(172656, 'Carla', 2001, 'F', 673), +(172657, 'Tia', 2001, 'F', 672), +(172658, 'Jane', 2001, 'F', 670), +(172659, 'Sasha', 2001, 'F', 662), +(172660, 'Jacquelyn', 2001, 'F', 661), +(172661, 'Dulce', 2001, 'F', 659), +(172662, 'Madisyn', 2001, 'F', 658), +(172663, 'Paulina', 2001, 'F', 648), +(172664, 'Kiley', 2001, 'F', 643), +(172665, 'Lexi', 2001, 'F', 642), +(172666, 'Mckayla', 2001, 'F', 642), +(172667, 'Tania', 2001, 'F', 642), +(172668, 'Kierra', 2001, 'F', 640), +(172669, 'Mikaela', 2001, 'F', 639), +(172670, 'Noelle', 2001, 'F', 639), +(172671, 'Halle', 2001, 'F', 638), +(172672, 'Viviana', 2001, 'F', 637), +(172673, 'Colleen', 2001, 'F', 636), +(172674, 'Alice', 2001, 'F', 631), +(172675, 'Hunter', 2001, 'F', 628), +(172676, 'Susan', 2001, 'F', 628), +(172677, 'Madyson', 2001, 'F', 627), +(172678, 'Taryn', 2001, 'F', 627), +(172679, 'Emilie', 2001, 'F', 625), +(172680, 'Kaylin', 2001, 'F', 625), +(172681, 'Justice', 2001, 'F', 623), +(172682, 'Tamara', 2001, 'F', 623), +(172683, 'Krista', 2001, 'F', 621), +(172684, 'Cassie', 2001, 'F', 619), +(172685, 'Nora', 2001, 'F', 619), +(172686, 'Kasey', 2001, 'F', 617), +(172687, 'Macie', 2001, 'F', 617), +(172688, 'Laila', 2001, 'F', 611), +(172689, 'Jessie', 2001, 'F', 610), +(172690, 'Ellen', 2001, 'F', 608), +(172691, 'Alyson', 2001, 'F', 607), +(172692, 'Carley', 2001, 'F', 607), +(172693, 'Cara', 2001, 'F', 604), +(172694, 'Brandi', 2001, 'F', 603), +(172695, 'Cora', 2001, 'F', 603), +(172696, 'Skye', 2001, 'F', 602), +(172697, 'Theresa', 2001, 'F', 601), +(172698, 'Amari', 2001, 'F', 599), +(172699, 'Kiera', 2001, 'F', 599), +(172700, 'Daphne', 2001, 'F', 597), +(172701, 'Jadyn', 2001, 'F', 597), +(172702, 'Tiara', 2001, 'F', 597), +(172703, 'Leilani', 2001, 'F', 593), +(172704, 'Kali', 2001, 'F', 592), +(172705, 'Bailee', 2001, 'F', 591), +(172706, 'Angelique', 2001, 'F', 588), +(172707, 'Janelle', 2001, 'F', 588), +(172708, 'Sage', 2001, 'F', 588), +(172709, 'Sharon', 2001, 'F', 587), +(172710, 'Brandy', 2001, 'F', 586), +(172711, 'Malia', 2001, 'F', 585), +(172712, 'Alivia', 2001, 'F', 583), +(172713, 'Genevieve', 2001, 'F', 582), +(172714, 'Maddison', 2001, 'F', 581), +(172715, 'Jaclyn', 2001, 'F', 579), +(172716, 'Joy', 2001, 'F', 579), +(172717, 'Ainsley', 2001, 'F', 578), +(172718, 'Pamela', 2001, 'F', 578), +(172719, 'Itzel', 2001, 'F', 577), +(172720, 'Alina', 2001, 'F', 574), +(172721, 'Charity', 2001, 'F', 574), +(172722, 'Kiersten', 2001, 'F', 572), +(172723, 'Mayra', 2001, 'F', 570), +(172724, 'Melina', 2001, 'F', 569), +(172725, 'Tyler', 2001, 'F', 569), +(172726, 'Irene', 2001, 'F', 567), +(172727, 'Leila', 2001, 'F', 565), +(172728, 'Eliana', 2001, 'F', 563), +(172729, 'Macey', 2001, 'F', 561), +(172730, 'Elisa', 2001, 'F', 557), +(172731, 'Rhiannon', 2001, 'F', 553), +(172732, 'Aniya', 2001, 'F', 552), +(172733, 'Marilyn', 2001, 'F', 552), +(172734, 'Athena', 2001, 'F', 551), +(172735, 'Aileen', 2001, 'F', 550), +(172736, 'Karissa', 2001, 'F', 550), +(172737, 'Lucia', 2001, 'F', 550), +(172738, 'Felicity', 2001, 'F', 548), +(172739, 'Nyah', 2001, 'F', 547), +(172740, 'Abbigail', 2001, 'F', 544), +(172741, 'Alanna', 2001, 'F', 543), +(172742, 'Sonia', 2001, 'F', 542), +(172743, 'Paris', 2001, 'F', 541), +(172744, 'Larissa', 2001, 'F', 533), +(172745, 'Perla', 2001, 'F', 533), +(172746, 'Elaina', 2001, 'F', 529), +(172747, 'Abbie', 2001, 'F', 526), +(172748, 'Brisa', 2001, 'F', 524), +(172749, 'Kelsie', 2001, 'F', 524), +(172750, 'Miracle', 2001, 'F', 524), +(172751, 'Alma', 2001, 'F', 522), +(172752, 'Luz', 2001, 'F', 517), +(172753, 'Brooklynn', 2001, 'F', 515), +(172754, 'Carlie', 2001, 'F', 515), +(172755, 'America', 2001, 'F', 512), +(172756, 'Sylvia', 2001, 'F', 512), +(172757, 'Zaria', 2001, 'F', 512), +(172758, 'Kyleigh', 2001, 'F', 509), +(172759, 'Lesley', 2001, 'F', 509), +(172760, 'Anya', 2001, 'F', 508), +(172761, 'Chasity', 2001, 'F', 508), +(172762, 'Kaila', 2001, 'F', 508), +(172763, 'Kaley', 2001, 'F', 507), +(172764, 'Simone', 2001, 'F', 506), +(172765, 'Ann', 2001, 'F', 505), +(172766, 'Maritza', 2001, 'F', 504), +(172767, 'Kailee', 2001, 'F', 503), +(172768, 'Eve', 2001, 'F', 500), +(172769, 'Rylie', 2001, 'F', 499), +(172770, 'Tatyana', 2001, 'F', 499), +(172771, 'Madelynn', 2001, 'F', 498), +(172772, 'Nathalie', 2001, 'F', 497), +(172773, 'Izabella', 2001, 'F', 495), +(172774, 'Janae', 2001, 'F', 495), +(172775, 'Aniyah', 2001, 'F', 491), +(172776, 'Chelsey', 2001, 'F', 491), +(172777, 'Deborah', 2001, 'F', 488), +(172778, 'Barbara', 2001, 'F', 487), +(172779, 'Marlene', 2001, 'F', 487), +(172780, 'Isis', 2001, 'F', 485), +(172781, 'Justine', 2001, 'F', 482), +(172782, 'Sarai', 2001, 'F', 480), +(172783, 'Araceli', 2001, 'F', 479), +(172784, 'Lexie', 2001, 'F', 479), +(172785, 'Raegan', 2001, 'F', 478), +(172786, 'Tianna', 2001, 'F', 478), +(172787, 'Cristal', 2001, 'F', 477), +(172788, 'Noemi', 2001, 'F', 475), +(172789, 'Felicia', 2001, 'F', 474), +(172790, 'Nichole', 2001, 'F', 470), +(172791, 'Aspen', 2001, 'F', 467), +(172792, 'Julianne', 2001, 'F', 467), +(172793, 'Kenya', 2001, 'F', 466), +(172794, 'Lena', 2001, 'F', 466), +(172795, 'Ryan', 2001, 'F', 465), +(172796, 'Clare', 2001, 'F', 461), +(172797, 'Leticia', 2001, 'F', 461), +(172798, 'Jaelyn', 2001, 'F', 460), +(172799, 'Juliet', 2001, 'F', 460), +(172800, 'Lorena', 2001, 'F', 460), +(172801, 'Shyanne', 2001, 'F', 460), +(172802, 'Anika', 2001, 'F', 456), +(172803, 'Esperanza', 2001, 'F', 454), +(172804, 'Regina', 2001, 'F', 454), +(172805, 'Arielle', 2001, 'F', 452), +(172806, 'Jaiden', 2001, 'F', 451), +(172807, 'Aimee', 2001, 'F', 449), +(172808, 'Kelli', 2001, 'F', 448), +(172809, 'Judith', 2001, 'F', 446), +(172810, 'Madilyn', 2001, 'F', 445), +(172811, 'Jaida', 2001, 'F', 443), +(172812, 'Camila', 2001, 'F', 441), +(172813, 'Sydnee', 2001, 'F', 441), +(172814, 'Reyna', 2001, 'F', 440), +(172815, 'Tyra', 2001, 'F', 440), +(172816, 'Ciera', 2001, 'F', 439), +(172817, 'Zoie', 2001, 'F', 439), +(172818, 'Destiney', 2001, 'F', 438), +(172819, 'Tayler', 2001, 'F', 438), +(172820, 'Corinne', 2001, 'F', 434), +(172821, 'Jazlyn', 2001, 'F', 433), +(172822, 'Toni', 2001, 'F', 432), +(172823, 'Carrie', 2001, 'F', 430), +(172824, 'Nataly', 2001, 'F', 430), +(172825, 'Frances', 2001, 'F', 428), +(172826, 'Juliette', 2001, 'F', 428), +(172827, 'Amya', 2001, 'F', 426), +(172828, 'Edith', 2001, 'F', 426), +(172829, 'Celia', 2001, 'F', 424), +(172830, 'Litzy', 2001, 'F', 424), +(172831, 'Marley', 2001, 'F', 423), +(172832, 'Mollie', 2001, 'F', 423), +(172833, 'Stella', 2001, 'F', 422), +(172834, 'Cayla', 2001, 'F', 420), +(172835, 'Fernanda', 2001, 'F', 418), +(172836, 'Paula', 2001, 'F', 418), +(172837, 'Jewel', 2001, 'F', 417), +(172838, 'Maia', 2001, 'F', 417), +(172839, 'Stacy', 2001, 'F', 417), +(172840, 'Tanya', 2001, 'F', 416), +(172841, 'Carina', 2001, 'F', 415), +(172842, 'Helena', 2001, 'F', 415), +(172843, 'Antonia', 2001, 'F', 414), +(172844, 'Citlalli', 2001, 'F', 413), +(172845, 'Bella', 2001, 'F', 412), +(172846, 'Joselyn', 2001, 'F', 412), +(172847, 'Devin', 2001, 'F', 410), +(172848, 'Kaya', 2001, 'F', 410), +(172849, 'Breana', 2001, 'F', 408), +(172850, 'Elaine', 2001, 'F', 408), +(172851, 'Laney', 2001, 'F', 408), +(172852, 'Nya', 2001, 'F', 408), +(172853, 'Emilia', 2001, 'F', 407), +(172854, 'Eileen', 2001, 'F', 406), +(172855, 'Skyla', 2001, 'F', 406), +(172856, 'Karlee', 2001, 'F', 405), +(172857, 'Mara', 2001, 'F', 404), +(172858, 'Blanca', 2001, 'F', 403), +(172859, 'Christian', 2001, 'F', 400), +(172860, 'Laurel', 2001, 'F', 399), +(172861, 'Leanna', 2001, 'F', 399), +(172862, 'Micah', 2001, 'F', 399), +(172863, 'Sydni', 2001, 'F', 399), +(172864, 'Valentina', 2001, 'F', 399), +(172865, 'Destini', 2001, 'F', 398), +(172866, 'Kailyn', 2001, 'F', 398), +(172867, 'Keely', 2001, 'F', 398), +(172868, 'Mariela', 2001, 'F', 398), +(172869, 'Savanah', 2001, 'F', 397), +(172870, 'Adrienne', 2001, 'F', 396), +(172871, 'Giovanna', 2001, 'F', 396), +(172872, 'Rosemary', 2001, 'F', 396), +(172873, 'Halie', 2001, 'F', 395), +(172874, 'Chyna', 2001, 'F', 394), +(172875, 'Lila', 2001, 'F', 394), +(172876, 'Tess', 2001, 'F', 393), +(172877, 'Tina', 2001, 'F', 393), +(172878, 'Yvette', 2001, 'F', 393), +(172879, 'Kaylyn', 2001, 'F', 392), +(172880, 'Aleah', 2001, 'F', 391), +(172881, 'Haven', 2001, 'F', 391), +(172882, 'Maci', 2001, 'F', 391), +(172883, 'Tierra', 2001, 'F', 391); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(172884, 'Nicolette', 2001, 'F', 390), +(172885, 'Hana', 2001, 'F', 388), +(172886, 'Desirae', 2001, 'F', 387), +(172887, 'Brynn', 2001, 'F', 386), +(172888, 'Thalia', 2001, 'F', 386), +(172889, 'Ayana', 2001, 'F', 385), +(172890, 'Jolie', 2001, 'F', 385), +(172891, 'Alisa', 2001, 'F', 384), +(172892, 'Ally', 2001, 'F', 383), +(172893, 'Sheila', 2001, 'F', 382), +(172894, 'Stephany', 2001, 'F', 382), +(172895, 'Ebony', 2001, 'F', 381), +(172896, 'Violet', 2001, 'F', 381), +(172897, 'Aracely', 2001, 'F', 380), +(172898, 'Kaelyn', 2001, 'F', 380), +(172899, 'Delilah', 2001, 'F', 379), +(172900, 'Willow', 2001, 'F', 379), +(172901, 'Damaris', 2001, 'F', 378), +(172902, 'Kianna', 2001, 'F', 378), +(172903, 'Katelin', 2001, 'F', 376), +(172904, 'Kayley', 2001, 'F', 375), +(172905, 'Brielle', 2001, 'F', 374), +(172906, 'Estefania', 2001, 'F', 374), +(172907, 'Montana', 2001, 'F', 374), +(172908, 'Gwendolyn', 2001, 'F', 373), +(172909, 'Maura', 2001, 'F', 372), +(172910, 'Micaela', 2001, 'F', 370), +(172911, 'Aisha', 2001, 'F', 369), +(172912, 'Ryleigh', 2001, 'F', 369), +(172913, 'Joyce', 2001, 'F', 368), +(172914, 'Karlie', 2001, 'F', 367), +(172915, 'Mariam', 2001, 'F', 367), +(172916, 'Harmony', 2001, 'F', 365), +(172917, 'Hayden', 2001, 'F', 365), +(172918, 'Kasandra', 2001, 'F', 364), +(172919, 'Salma', 2001, 'F', 364), +(172920, 'Lea', 2001, 'F', 363), +(172921, 'Shayna', 2001, 'F', 363), +(172922, 'Shyann', 2001, 'F', 363), +(172923, 'Carlee', 2001, 'F', 362), +(172924, 'Katarina', 2001, 'F', 361), +(172925, 'Margarita', 2001, 'F', 360), +(172926, 'Yuliana', 2001, 'F', 360), +(172927, 'Jazmyn', 2001, 'F', 359), +(172928, 'Karli', 2001, 'F', 359), +(172929, 'Lilian', 2001, 'F', 359), +(172930, 'Madisen', 2001, 'F', 359), +(172931, 'Robin', 2001, 'F', 359), +(172932, 'Calista', 2001, 'F', 358), +(172933, 'Joana', 2001, 'F', 357), +(172934, 'Donna', 2001, 'F', 355), +(172935, 'Beyonce', 2001, 'F', 353), +(172936, 'Monserrat', 2001, 'F', 353), +(172937, 'Annette', 2001, 'F', 352), +(172938, 'Bria', 2001, 'F', 352), +(172939, 'Carson', 2001, 'F', 352), +(172940, 'Janessa', 2001, 'F', 352), +(172941, 'Sienna', 2001, 'F', 350), +(172942, 'Estrella', 2001, 'F', 349), +(172943, 'Mattie', 2001, 'F', 347), +(172944, 'Alena', 2001, 'F', 346), +(172945, 'Alessandra', 2001, 'F', 346), +(172946, 'Yadira', 2001, 'F', 346), +(172947, 'Abigayle', 2001, 'F', 345), +(172948, 'Haylie', 2001, 'F', 345), +(172949, 'Stacey', 2001, 'F', 344), +(172950, 'Aliya', 2001, 'F', 343), +(172951, 'Casandra', 2001, 'F', 342), +(172952, 'Lyndsey', 2001, 'F', 340), +(172953, 'Amani', 2001, 'F', 339), +(172954, 'Janiya', 2001, 'F', 339), +(172955, 'Kathy', 2001, 'F', 339), +(172956, 'Candace', 2001, 'F', 338), +(172957, 'Beatriz', 2001, 'F', 337), +(172958, 'Nikki', 2001, 'F', 337), +(172959, 'Brianne', 2001, 'F', 336), +(172960, 'Lara', 2001, 'F', 336), +(172961, 'Lizette', 2001, 'F', 335), +(172962, 'Maribel', 2001, 'F', 335), +(172963, 'Katharine', 2001, 'F', 334), +(172964, 'Noelia', 2001, 'F', 333), +(172965, 'Kacie', 2001, 'F', 332), +(172966, 'Nayely', 2001, 'F', 331), +(172967, 'Anaya', 2001, 'F', 328), +(172968, 'Ingrid', 2001, 'F', 328), +(172969, 'Shea', 2001, 'F', 327), +(172970, 'Ericka', 2001, 'F', 326), +(172971, 'Alysa', 2001, 'F', 325), +(172972, 'Ansley', 2001, 'F', 324), +(172973, 'Lillie', 2001, 'F', 324), +(172974, 'Reilly', 2001, 'F', 324), +(172975, 'Karly', 2001, 'F', 323), +(172976, 'Essence', 2001, 'F', 322), +(172977, 'Isabela', 2001, 'F', 322), +(172978, 'Kennedi', 2001, 'F', 322), +(172979, 'Sandy', 2001, 'F', 322), +(172980, 'Adeline', 2001, 'F', 321), +(172981, 'Aria', 2001, 'F', 321), +(172982, 'Teagan', 2001, 'F', 321), +(172983, 'Johana', 2001, 'F', 320), +(172984, 'Aubree', 2001, 'F', 319), +(172985, 'Hazel', 2001, 'F', 319), +(172986, 'Kaylynn', 2001, 'F', 319), +(172987, 'Kourtney', 2001, 'F', 319), +(172988, 'Gia', 2001, 'F', 318), +(172989, 'Liberty', 2001, 'F', 318), +(172990, 'Aylin', 2001, 'F', 317), +(172991, 'Dorothy', 2001, 'F', 317), +(172992, 'Maeve', 2001, 'F', 317), +(172993, 'Jalyn', 2001, 'F', 316), +(172994, 'Parker', 2001, 'F', 316), +(172995, 'Hailie', 2001, 'F', 315), +(172996, 'Alexandrea', 2001, 'F', 314), +(172997, 'Moriah', 2001, 'F', 314), +(172998, 'Cecelia', 2001, 'F', 313), +(172999, 'Lia', 2001, 'F', 313), +(173000, 'Shawna', 2001, 'F', 313), +(173001, 'Gretchen', 2001, 'F', 312), +(173002, 'Jenifer', 2001, 'F', 311), +(173003, 'Kenzie', 2001, 'F', 311), +(173004, 'Catalina', 2001, 'F', 310), +(173005, 'Berenice', 2001, 'F', 308), +(173006, 'Lexus', 2001, 'F', 308), +(173007, 'Devyn', 2001, 'F', 306), +(173008, 'Nallely', 2001, 'F', 306), +(173009, 'Quinn', 2001, 'F', 306), +(173010, 'Shaniya', 2001, 'F', 306), +(173011, 'Yazmin', 2001, 'F', 306), +(173012, 'Sheridan', 2001, 'F', 305), +(173013, 'Shirley', 2001, 'F', 305), +(173014, 'Sydnie', 2001, 'F', 305), +(173015, 'Annalise', 2001, 'F', 304), +(173016, 'Armani', 2001, 'F', 303), +(173017, 'Reese', 2001, 'F', 303), +(173018, 'Elissa', 2001, 'F', 302), +(173019, 'Melinda', 2001, 'F', 302), +(173020, 'Ayla', 2001, 'F', 301), +(173021, 'Christy', 2001, 'F', 301), +(173022, 'Sade', 2001, 'F', 300), +(173023, 'Anissa', 2001, 'F', 299), +(173024, 'Candice', 2001, 'F', 299), +(173025, 'Kaylah', 2001, 'F', 299), +(173026, 'Sally', 2001, 'F', 299), +(173027, 'Carli', 2001, 'F', 298), +(173028, 'Rachelle', 2001, 'F', 298), +(173029, 'Susana', 2001, 'F', 298), +(173030, 'Anita', 2001, 'F', 297), +(173031, 'Tracy', 2001, 'F', 297), +(173032, 'Jaime', 2001, 'F', 296), +(173033, 'Myah', 2001, 'F', 296), +(173034, 'Kaiya', 2001, 'F', 295), +(173035, 'Alize', 2001, 'F', 294), +(173036, 'Devon', 2001, 'F', 294), +(173037, 'Kellie', 2001, 'F', 294), +(173038, 'Robyn', 2001, 'F', 294), +(173039, 'Aiyana', 2001, 'F', 293), +(173040, 'Arely', 2001, 'F', 293), +(173041, 'Meadow', 2001, 'F', 293), +(173042, 'Meaghan', 2001, 'F', 293), +(173043, 'Elyse', 2001, 'F', 292), +(173044, 'Presley', 2001, 'F', 292), +(173045, 'Chaya', 2001, 'F', 290), +(173046, 'Dasia', 2001, 'F', 290), +(173047, 'Kelsi', 2001, 'F', 290), +(173048, 'Jacey', 2001, 'F', 289), +(173049, 'Shaylee', 2001, 'F', 289), +(173050, 'Savana', 2001, 'F', 288), +(173051, 'Nyasia', 2001, 'F', 287), +(173052, 'Rebeca', 2001, 'F', 287), +(173053, 'Amira', 2001, 'F', 286), +(173054, 'Makaila', 2001, 'F', 284), +(173055, 'Dayana', 2001, 'F', 283), +(173056, 'Lizeth', 2001, 'F', 283), +(173057, 'Reina', 2001, 'F', 283), +(173058, 'Celine', 2001, 'F', 282), +(173059, 'Kenia', 2001, 'F', 282), +(173060, 'Ashanti', 2001, 'F', 281), +(173061, 'Dalia', 2001, 'F', 281), +(173062, 'Lyric', 2001, 'F', 280), +(173063, 'Arlene', 2001, 'F', 279), +(173064, 'Greta', 2001, 'F', 279), +(173065, 'Loren', 2001, 'F', 279), +(173066, 'Sarina', 2001, 'F', 278), +(173067, 'Carol', 2001, 'F', 277), +(173068, 'Jasmyn', 2001, 'F', 277), +(173069, 'Graciela', 2001, 'F', 275), +(173070, 'Jeanette', 2001, 'F', 275), +(173071, 'Christa', 2001, 'F', 274), +(173072, 'Alexys', 2001, 'F', 273), +(173073, 'Iyana', 2001, 'F', 273), +(173074, 'Raina', 2001, 'F', 273), +(173075, 'Janice', 2001, 'F', 272), +(173076, 'Paloma', 2001, 'F', 272), +(173077, 'Unique', 2001, 'F', 272), +(173078, 'Alia', 2001, 'F', 271), +(173079, 'Allyssa', 2001, 'F', 271), +(173080, 'Aryanna', 2001, 'F', 270), +(173081, 'Kya', 2001, 'F', 270), +(173082, 'London', 2001, 'F', 270), +(173083, 'Rita', 2001, 'F', 270), +(173084, 'Jaycee', 2001, 'F', 269), +(173085, 'Shakira', 2001, 'F', 269), +(173086, 'Kallie', 2001, 'F', 268), +(173087, 'Magdalena', 2001, 'F', 268), +(173088, 'Jacklyn', 2001, 'F', 267), +(173089, 'Jakayla', 2001, 'F', 267), +(173090, 'Aliza', 2001, 'F', 266), +(173091, 'Annabel', 2001, 'F', 266), +(173092, 'Hadley', 2001, 'F', 266), +(173093, 'Darlene', 2001, 'F', 265), +(173094, 'Dianna', 2001, 'F', 265), +(173095, 'Karley', 2001, 'F', 265), +(173096, 'Michele', 2001, 'F', 265), +(173097, 'Norma', 2001, 'F', 265), +(173098, 'Drew', 2001, 'F', 264), +(173099, 'Iliana', 2001, 'F', 264), +(173100, 'Jaylin', 2001, 'F', 264), +(173101, 'Kaela', 2001, 'F', 264), +(173102, 'Kayli', 2001, 'F', 264), +(173103, 'Kinsey', 2001, 'F', 264), +(173104, 'Nyla', 2001, 'F', 264), +(173105, 'Amara', 2001, 'F', 263), +(173106, 'Princess', 2001, 'F', 263), +(173107, 'Ximena', 2001, 'F', 263), +(173108, 'Christiana', 2001, 'F', 262), +(173109, 'Lourdes', 2001, 'F', 262), +(173110, 'Mireya', 2001, 'F', 262), +(173111, 'Selina', 2001, 'F', 262), +(173112, 'Silvia', 2001, 'F', 262), +(173113, 'Jimena', 2001, 'F', 261), +(173114, 'Katia', 2001, 'F', 261), +(173115, 'Kristine', 2001, 'F', 261), +(173116, 'Maegan', 2001, 'F', 261), +(173117, 'Samara', 2001, 'F', 261), +(173118, 'Abril', 2001, 'F', 260), +(173119, 'Diane', 2001, 'F', 260), +(173120, 'Daisha', 2001, 'F', 259), +(173121, 'Hillary', 2001, 'F', 259), +(173122, 'Cielo', 2001, 'F', 258), +(173123, 'Juanita', 2001, 'F', 258), +(173124, 'Rayna', 2001, 'F', 258), +(173125, 'Cali', 2001, 'F', 257), +(173126, 'Kacey', 2001, 'F', 257), +(173127, 'Kaia', 2001, 'F', 256), +(173128, 'Reanna', 2001, 'F', 256), +(173129, 'Fabiola', 2001, 'F', 255), +(173130, 'Melany', 2001, 'F', 255), +(173131, 'Bonnie', 2001, 'F', 254), +(173132, 'Kari', 2001, 'F', 253), +(173133, 'Liana', 2001, 'F', 253), +(173134, 'Yessenia', 2001, 'F', 253), +(173135, 'Brook', 2001, 'F', 252), +(173136, 'Jena', 2001, 'F', 252), +(173137, 'Baby', 2001, 'F', 251), +(173138, 'Stefanie', 2001, 'F', 251), +(173139, 'Ashtyn', 2001, 'F', 250), +(173140, 'Bryana', 2001, 'F', 250), +(173141, 'Emmalee', 2001, 'F', 250), +(173142, 'Ireland', 2001, 'F', 250), +(173143, 'Jackeline', 2001, 'F', 250), +(173144, 'Jamya', 2001, 'F', 250), +(173145, 'Marianna', 2001, 'F', 249), +(173146, 'Eryn', 2001, 'F', 248), +(173147, 'Roxana', 2001, 'F', 248), +(173148, 'Taina', 2001, 'F', 248), +(173149, 'Aubrie', 2001, 'F', 247), +(173150, 'Frida', 2001, 'F', 247), +(173151, 'Lilliana', 2001, 'F', 247), +(173152, 'Abigale', 2001, 'F', 246), +(173153, 'Elsa', 2001, 'F', 246), +(173154, 'Yolanda', 2001, 'F', 245), +(173155, 'Abagail', 2001, 'F', 244), +(173156, 'Elyssa', 2001, 'F', 244), +(173157, 'Kaliyah', 2001, 'F', 244), +(173158, 'Caitlynn', 2001, 'F', 242), +(173159, 'Patience', 2001, 'F', 242), +(173160, 'Chandler', 2001, 'F', 240), +(173161, 'Kalyn', 2001, 'F', 240), +(173162, 'Maranda', 2001, 'F', 240), +(173163, 'Ashly', 2001, 'F', 239), +(173164, 'Chantel', 2001, 'F', 239), +(173165, 'Deasia', 2001, 'F', 239), +(173166, 'Kenna', 2001, 'F', 239), +(173167, 'Chanel', 2001, 'F', 238), +(173168, 'Gabriel', 2001, 'F', 238), +(173169, 'Jaquelin', 2001, 'F', 238), +(173170, 'Mikaila', 2001, 'F', 238), +(173171, 'Caleigh', 2001, 'F', 237), +(173172, 'Ryann', 2001, 'F', 237), +(173173, 'Saige', 2001, 'F', 236), +(173174, 'Scarlett', 2001, 'F', 236), +(173175, 'Journey', 2001, 'F', 235), +(173176, 'Taliyah', 2001, 'F', 235), +(173177, 'Taniya', 2001, 'F', 235), +(173178, 'Jana', 2001, 'F', 234), +(173179, 'Lana', 2001, 'F', 234), +(173180, 'Odalys', 2001, 'F', 234), +(173181, 'Penelope', 2001, 'F', 234), +(173182, 'Bridgette', 2001, 'F', 233), +(173183, 'Jazmyne', 2001, 'F', 233), +(173184, 'Joelle', 2001, 'F', 233), +(173185, 'Lori', 2001, 'F', 233), +(173186, 'Mandy', 2001, 'F', 233), +(173187, 'Myra', 2001, 'F', 233), +(173188, 'Celina', 2001, 'F', 232), +(173189, 'Rocio', 2001, 'F', 232), +(173190, 'Ivette', 2001, 'F', 231), +(173191, 'Citlali', 2001, 'F', 230), +(173192, 'Marlee', 2001, 'F', 230), +(173193, 'Kaci', 2001, 'F', 229), +(173194, 'Lisette', 2001, 'F', 229), +(173195, 'Chana', 2001, 'F', 227), +(173196, 'Camilla', 2001, 'F', 226), +(173197, 'Emerald', 2001, 'F', 226), +(173198, 'Jailyn', 2001, 'F', 226), +(173199, 'Taya', 2001, 'F', 226), +(173200, 'Yajaira', 2001, 'F', 226), +(173201, 'Annabella', 2001, 'F', 225), +(173202, 'Alycia', 2001, 'F', 224), +(173203, 'Dafne', 2001, 'F', 224), +(173204, 'Mira', 2001, 'F', 224), +(173205, 'Anjali', 2001, 'F', 222), +(173206, 'Hayleigh', 2001, 'F', 222), +(173207, 'Sky', 2001, 'F', 222), +(173208, 'Priscila', 2001, 'F', 221), +(173209, 'Sarahi', 2001, 'F', 221), +(173210, 'Yoselin', 2001, 'F', 221), +(173211, 'Areli', 2001, 'F', 220), +(173212, 'Jayde', 2001, 'F', 220), +(173213, 'Keara', 2001, 'F', 220), +(173214, 'Madalynn', 2001, 'F', 220), +(173215, 'Nadine', 2001, 'F', 220), +(173216, 'Alex', 2001, 'F', 219), +(173217, 'Miah', 2001, 'F', 219), +(173218, 'Tatianna', 2001, 'F', 219), +(173219, 'Audra', 2001, 'F', 218), +(173220, 'Beatrice', 2001, 'F', 218), +(173221, 'Katy', 2001, 'F', 218), +(173222, 'Natalya', 2001, 'F', 218), +(173223, 'Brionna', 2001, 'F', 217), +(173224, 'Darby', 2001, 'F', 217), +(173225, 'Jaidyn', 2001, 'F', 217), +(173226, 'Keila', 2001, 'F', 217), +(173227, 'Vanesa', 2001, 'F', 217), +(173228, 'Jaylynn', 2001, 'F', 216), +(173229, 'Keira', 2001, 'F', 216), +(173230, 'Melisa', 2001, 'F', 216), +(173231, 'Randi', 2001, 'F', 216), +(173232, 'Miya', 2001, 'F', 215), +(173233, 'Rianna', 2001, 'F', 215), +(173234, 'Sheyla', 2001, 'F', 215), +(173235, 'Aryana', 2001, 'F', 214), +(173236, 'Belen', 2001, 'F', 214), +(173237, 'Darian', 2001, 'F', 214), +(173238, 'Janie', 2001, 'F', 214), +(173239, 'Juana', 2001, 'F', 214), +(173240, 'Lina', 2001, 'F', 214), +(173241, 'Maleah', 2001, 'F', 214), +(173242, 'Nathaly', 2001, 'F', 214), +(173243, 'Nikita', 2001, 'F', 214), +(173244, 'Shaina', 2001, 'F', 214), +(173245, 'Sanaa', 2001, 'F', 213), +(173246, 'Danae', 2001, 'F', 212), +(173247, 'Iyanna', 2001, 'F', 212), +(173248, 'Libby', 2001, 'F', 212), +(173249, 'Chelsie', 2001, 'F', 211), +(173250, 'Evelin', 2001, 'F', 211), +(173251, 'Kendal', 2001, 'F', 211), +(173252, 'Kiya', 2001, 'F', 211), +(173253, 'Lacy', 2001, 'F', 211), +(173254, 'Luisa', 2001, 'F', 211), +(173255, 'Niya', 2001, 'F', 211), +(173256, 'Rosalinda', 2001, 'F', 211), +(173257, 'Yvonne', 2001, 'F', 211), +(173258, 'Asha', 2001, 'F', 210), +(173259, 'Estefany', 2001, 'F', 210), +(173260, 'Joslyn', 2001, 'F', 210), +(173261, 'Katlynn', 2001, 'F', 210), +(173262, 'Kiarra', 2001, 'F', 210), +(173263, 'Leann', 2001, 'F', 210), +(173264, 'Noel', 2001, 'F', 210), +(173265, 'Sonya', 2001, 'F', 210), +(173266, 'Tristen', 2001, 'F', 210), +(173267, 'Noor', 2001, 'F', 209), +(173268, 'Shreya', 2001, 'F', 209), +(173269, 'Dallas', 2001, 'F', 208), +(173270, 'Martina', 2001, 'F', 208), +(173271, 'Pearl', 2001, 'F', 208), +(173272, 'Jalynn', 2001, 'F', 207), +(173273, 'Kristy', 2001, 'F', 207), +(173274, 'Katerina', 2001, 'F', 206), +(173275, 'Keyla', 2001, 'F', 206), +(173276, 'Maryam', 2001, 'F', 206), +(173277, 'Maxine', 2001, 'F', 206), +(173278, 'Winter', 2001, 'F', 206), +(173279, 'Alysia', 2001, 'F', 205), +(173280, 'Daija', 2001, 'F', 205), +(173281, 'Delia', 2001, 'F', 205), +(173282, 'Leanne', 2001, 'F', 205), +(173283, 'Marian', 2001, 'F', 205), +(173284, 'Treasure', 2001, 'F', 205), +(173285, 'Annamarie', 2001, 'F', 204), +(173286, 'Antoinette', 2001, 'F', 204), +(173287, 'Jovanna', 2001, 'F', 204), +(173288, 'Aja', 2001, 'F', 203), +(173289, 'Jaylene', 2001, 'F', 203), +(173290, 'Suzanne', 2001, 'F', 203), +(173291, 'Ali', 2001, 'F', 202), +(173292, 'Yasmeen', 2001, 'F', 202), +(173293, 'Akira', 2001, 'F', 201), +(173294, 'Destany', 2001, 'F', 201), +(173295, 'Kameron', 2001, 'F', 201), +(173296, 'Shyla', 2001, 'F', 201), +(173297, 'Angeline', 2001, 'F', 200), +(173298, 'Breonna', 2001, 'F', 200), +(173299, 'Janette', 2001, 'F', 200), +(173300, 'Marcella', 2001, 'F', 200), +(173301, 'Amina', 2001, 'F', 199), +(173302, 'Corina', 2001, 'F', 199), +(173303, 'Dylan', 2001, 'F', 199), +(173304, 'Gwyneth', 2001, 'F', 199), +(173305, 'Misty', 2001, 'F', 199), +(173306, 'Neha', 2001, 'F', 199), +(173307, 'Trisha', 2001, 'F', 199), +(173308, 'Estefani', 2001, 'F', 198), +(173309, 'Kaycee', 2001, 'F', 198), +(173310, 'Marcela', 2001, 'F', 198), +(173311, 'Alyssia', 2001, 'F', 197), +(173312, 'Astrid', 2001, 'F', 197), +(173313, 'Dayna', 2001, 'F', 197), +(173314, 'Giana', 2001, 'F', 197), +(173315, 'Makena', 2001, 'F', 197), +(173316, 'Natalee', 2001, 'F', 197), +(173317, 'Tristan', 2001, 'F', 197), +(173318, 'Cailey', 2001, 'F', 196), +(173319, 'Cherish', 2001, 'F', 196), +(173320, 'Elle', 2001, 'F', 196), +(173321, 'Alaysia', 2001, 'F', 195), +(173322, 'Rhianna', 2001, 'F', 195), +(173323, 'Yulissa', 2001, 'F', 195), +(173324, 'Aidan', 2001, 'F', 194), +(173325, 'Azucena', 2001, 'F', 194), +(173326, 'Charlize', 2001, 'F', 194), +(173327, 'Dejah', 2001, 'F', 194), +(173328, 'Denisse', 2001, 'F', 194), +(173329, 'Jesse', 2001, 'F', 194), +(173330, 'Malaysia', 2001, 'F', 194), +(173331, 'Amiya', 2001, 'F', 193), +(173332, 'Isabell', 2001, 'F', 193), +(173333, 'Isha', 2001, 'F', 193), +(173334, 'Lilia', 2001, 'F', 193), +(173335, 'Shauna', 2001, 'F', 193), +(173336, 'Adamaris', 2001, 'F', 192), +(173337, 'Emani', 2001, 'F', 192), +(173338, 'Jayme', 2001, 'F', 192), +(173339, 'Lucille', 2001, 'F', 192), +(173340, 'Priya', 2001, 'F', 192), +(173341, 'Hollie', 2001, 'F', 191), +(173342, 'Laisha', 2001, 'F', 191), +(173343, 'Tammy', 2001, 'F', 191), +(173344, 'Addie', 2001, 'F', 190), +(173345, 'Alysha', 2001, 'F', 190), +(173346, 'Grayson', 2001, 'F', 190), +(173347, 'Maliyah', 2001, 'F', 190), +(173348, 'Mina', 2001, 'F', 190), +(173349, 'Sariah', 2001, 'F', 190), +(173350, 'Adrian', 2001, 'F', 189), +(173351, 'Dina', 2001, 'F', 189), +(173352, 'Kaylen', 2001, 'F', 189), +(173353, 'Lexis', 2001, 'F', 189), +(173354, 'Nathalia', 2001, 'F', 189), +(173355, 'Anayeli', 2001, 'F', 188), +(173356, 'Beverly', 2001, 'F', 188), +(173357, 'Jacquelin', 2001, 'F', 188), +(173358, 'Lidia', 2001, 'F', 188), +(173359, 'Joanne', 2001, 'F', 187), +(173360, 'Keeley', 2001, 'F', 187), +(173361, 'Ada', 2001, 'F', 186), +(173362, 'Jaliyah', 2001, 'F', 186), +(173363, 'Jill', 2001, 'F', 186), +(173364, 'Lucero', 2001, 'F', 186), +(173365, 'Roxanne', 2001, 'F', 186), +(173366, 'Star', 2001, 'F', 186), +(173367, 'Jaelynn', 2001, 'F', 185), +(173368, 'Jovana', 2001, 'F', 185), +(173369, 'Kirstin', 2001, 'F', 185), +(173370, 'Yamilet', 2001, 'F', 185), +(173371, 'Gladys', 2001, 'F', 184), +(173372, 'Katlin', 2001, 'F', 184), +(173373, 'Marlen', 2001, 'F', 184), +(173374, 'Yaire', 2001, 'F', 184), +(173375, 'Emerson', 2001, 'F', 183), +(173376, 'Joseline', 2001, 'F', 183), +(173377, 'Kalie', 2001, 'F', 183), +(173378, 'Octavia', 2001, 'F', 183), +(173379, 'Odalis', 2001, 'F', 183), +(173380, 'Yahaira', 2001, 'F', 183), +(173381, 'Eunice', 2001, 'F', 182), +(173382, 'Jasmyne', 2001, 'F', 182), +(173383, 'Kori', 2001, 'F', 182), +(173384, 'Lola', 2001, 'F', 182), +(173385, 'Susanna', 2001, 'F', 182), +(173386, 'Breann', 2001, 'F', 181), +(173387, 'Colette', 2001, 'F', 181), +(173388, 'Julisa', 2001, 'F', 181), +(173389, 'Mikala', 2001, 'F', 181), +(173390, 'Shianne', 2001, 'F', 181), +(173391, 'Anabel', 2001, 'F', 180), +(173392, 'Breanne', 2001, 'F', 180), +(173393, 'Justina', 2001, 'F', 180), +(173394, 'Caylee', 2001, 'F', 179), +(173395, 'Connie', 2001, 'F', 179), +(173396, 'Dawn', 2001, 'F', 179), +(173397, 'Jaylyn', 2001, 'F', 179), +(173398, 'Tayla', 2001, 'F', 179), +(173399, 'Yaritza', 2001, 'F', 179), +(173400, 'Zariah', 2001, 'F', 179), +(173401, 'Dania', 2001, 'F', 178), +(173402, 'Olga', 2001, 'F', 178), +(173403, 'Starr', 2001, 'F', 178), +(173404, 'Citlaly', 2001, 'F', 177), +(173405, 'Delanie', 2001, 'F', 176), +(173406, 'Flor', 2001, 'F', 176), +(173407, 'Harper', 2001, 'F', 176), +(173408, 'Ivana', 2001, 'F', 176), +(173409, 'Rhea', 2001, 'F', 176), +(173410, 'Shelbie', 2001, 'F', 175), +(173411, 'Amaris', 2001, 'F', 174), +(173412, 'Anisa', 2001, 'F', 174), +(173413, 'Coral', 2001, 'F', 174), +(173414, 'Elisha', 2001, 'F', 174), +(173415, 'Rowan', 2001, 'F', 174), +(173416, 'Alannah', 2001, 'F', 173), +(173417, 'Charisma', 2001, 'F', 173), +(173418, 'Lainey', 2001, 'F', 173), +(173419, 'Makala', 2001, 'F', 173), +(173420, 'Stevie', 2001, 'F', 173), +(173421, 'Tyanna', 2001, 'F', 173), +(173422, 'Elana', 2001, 'F', 172), +(173423, 'Jala', 2001, 'F', 172), +(173424, 'Jamia', 2001, 'F', 172), +(173425, 'Mckinley', 2001, 'F', 172), +(173426, 'Monet', 2001, 'F', 172), +(173427, 'Anais', 2001, 'F', 171), +(173428, 'Aya', 2001, 'F', 171), +(173429, 'Bryn', 2001, 'F', 171), +(173430, 'Cortney', 2001, 'F', 171), +(173431, 'Danna', 2001, 'F', 171), +(173432, 'Fallon', 2001, 'F', 171), +(173433, 'Kaytlin', 2001, 'F', 171), +(173434, 'Mindy', 2001, 'F', 171), +(173435, 'Harlie', 2001, 'F', 170), +(173436, 'Jessenia', 2001, 'F', 170), +(173437, 'Madysen', 2001, 'F', 170), +(173438, 'Maricela', 2001, 'F', 170), +(173439, 'Stormy', 2001, 'F', 170), +(173440, 'Darcy', 2001, 'F', 169), +(173441, 'Grecia', 2001, 'F', 169), +(173442, 'Jolene', 2001, 'F', 169), +(173443, 'Luna', 2001, 'F', 169), +(173444, 'Magaly', 2001, 'F', 169), +(173445, 'Maren', 2001, 'F', 169), +(173446, 'Shelbi', 2001, 'F', 169), +(173447, 'Charlene', 2001, 'F', 168), +(173448, 'Adilene', 2001, 'F', 167), +(173449, 'Dayanara', 2001, 'F', 167), +(173450, 'Kaylan', 2001, 'F', 167), +(173451, 'Yareli', 2001, 'F', 167), +(173452, 'Adelaide', 2001, 'F', 166), +(173453, 'Anabelle', 2001, 'F', 166), +(173454, 'Jennie', 2001, 'F', 166), +(173455, 'Leeann', 2001, 'F', 166), +(173456, 'Lesli', 2001, 'F', 166), +(173457, 'Nautica', 2001, 'F', 166), +(173458, 'Shanna', 2001, 'F', 166), +(173459, 'Alexi', 2001, 'F', 165), +(173460, 'Demi', 2001, 'F', 165), +(173461, 'Samira', 2001, 'F', 165), +(173462, 'Tanisha', 2001, 'F', 165), +(173463, 'Constance', 2001, 'F', 164), +(173464, 'Dora', 2001, 'F', 164), +(173465, 'Geneva', 2001, 'F', 164), +(173466, 'Tiffani', 2001, 'F', 164), +(173467, 'Viridiana', 2001, 'F', 164), +(173468, 'Zainab', 2001, 'F', 164), +(173469, 'Halee', 2001, 'F', 163), +(173470, 'Jaylen', 2001, 'F', 163), +(173471, 'Franchesca', 2001, 'F', 162), +(173472, 'Iman', 2001, 'F', 162), +(173473, 'Kinley', 2001, 'F', 162), +(173474, 'Mari', 2001, 'F', 162), +(173475, 'Maryann', 2001, 'F', 162), +(173476, 'Dynasty', 2001, 'F', 161), +(173477, 'Jayna', 2001, 'F', 161), +(173478, 'Serina', 2001, 'F', 161), +(173479, 'Jodi', 2001, 'F', 160), +(173480, 'Xiomara', 2001, 'F', 160), +(173481, 'Cydney', 2001, 'F', 159), +(173482, 'Rochelle', 2001, 'F', 159), +(173483, 'Sommer', 2001, 'F', 159), +(173484, 'Simran', 2001, 'F', 158), +(173485, 'Xochitl', 2001, 'F', 158), +(173486, 'Alecia', 2001, 'F', 157), +(173487, 'Ashlie', 2001, 'F', 157), +(173488, 'Jayleen', 2001, 'F', 157), +(173489, 'Judy', 2001, 'F', 157), +(173490, 'Riya', 2001, 'F', 157), +(173491, 'Aleena', 2001, 'F', 156), +(173492, 'Beth', 2001, 'F', 156), +(173493, 'Danika', 2001, 'F', 156), +(173494, 'Janiah', 2001, 'F', 156), +(173495, 'Karsyn', 2001, 'F', 156), +(173496, 'Katheryn', 2001, 'F', 156), +(173497, 'Liza', 2001, 'F', 156), +(173498, 'Naya', 2001, 'F', 156), +(173499, 'Yessica', 2001, 'F', 156), +(173500, 'Alliyah', 2001, 'F', 155), +(173501, 'Amalia', 2001, 'F', 155), +(173502, 'Carleigh', 2001, 'F', 155), +(173503, 'Dara', 2001, 'F', 155), +(173504, 'Emalee', 2001, 'F', 155), +(173505, 'Gemma', 2001, 'F', 155), +(173506, 'Honesty', 2001, 'F', 155), +(173507, 'Kelley', 2001, 'F', 155), +(173508, 'Kyara', 2001, 'F', 155), +(173509, 'Myranda', 2001, 'F', 155), +(173510, 'Phoenix', 2001, 'F', 155), +(173511, 'Roxanna', 2001, 'F', 155), +(173512, 'Blair', 2001, 'F', 154), +(173513, 'Chantal', 2001, 'F', 154), +(173514, 'Lacie', 2001, 'F', 154), +(173515, 'Leigha', 2001, 'F', 154), +(173516, 'Amie', 2001, 'F', 153), +(173517, 'Betty', 2001, 'F', 153), +(173518, 'Lynn', 2001, 'F', 153), +(173519, 'Montserrat', 2001, 'F', 153), +(173520, 'Irma', 2001, 'F', 152), +(173521, 'Ciarra', 2001, 'F', 151), +(173522, 'Daijah', 2001, 'F', 151), +(173523, 'Marisela', 2001, 'F', 151), +(173524, 'Tionna', 2001, 'F', 151), +(173525, 'Kyndall', 2001, 'F', 150), +(173526, 'Shae', 2001, 'F', 150), +(173527, 'Janiyah', 2001, 'F', 149), +(173528, 'Mason', 2001, 'F', 149), +(173529, 'Natali', 2001, 'F', 149), +(173530, 'Azaria', 2001, 'F', 148), +(173531, 'Brissa', 2001, 'F', 148), +(173532, 'Dixie', 2001, 'F', 148), +(173533, 'Elsie', 2001, 'F', 148), +(173534, 'Janaya', 2001, 'F', 148), +(173535, 'Kerry', 2001, 'F', 148), +(173536, 'Shaniah', 2001, 'F', 148), +(173537, 'Galilea', 2001, 'F', 147), +(173538, 'Ivory', 2001, 'F', 147), +(173539, 'Jaci', 2001, 'F', 147), +(173540, 'Janna', 2001, 'F', 147), +(173541, 'Kassie', 2001, 'F', 147), +(173542, 'Keri', 2001, 'F', 147), +(173543, 'Nakiya', 2001, 'F', 147), +(173544, 'Abrianna', 2001, 'F', 146), +(173545, 'Amiyah', 2001, 'F', 146), +(173546, 'Annalisa', 2001, 'F', 146), +(173547, 'Annmarie', 2001, 'F', 146), +(173548, 'Cailin', 2001, 'F', 146), +(173549, 'Gissel', 2001, 'F', 146), +(173550, 'Halley', 2001, 'F', 146), +(173551, 'Jailene', 2001, 'F', 146), +(173552, 'Kalli', 2001, 'F', 146), +(173553, 'Katya', 2001, 'F', 146), +(173554, 'Mykayla', 2001, 'F', 146), +(173555, 'Trista', 2001, 'F', 146), +(173556, 'Bree', 2001, 'F', 145), +(173557, 'Cloe', 2001, 'F', 145), +(173558, 'Jackelyn', 2001, 'F', 145), +(173559, 'Jaya', 2001, 'F', 145), +(173560, 'Karime', 2001, 'F', 145), +(173561, 'Kayle', 2001, 'F', 145), +(173562, 'Kelsea', 2001, 'F', 145), +(173563, 'Samaria', 2001, 'F', 145), +(173564, 'Shana', 2001, 'F', 145), +(173565, 'Annelise', 2001, 'F', 144), +(173566, 'Bobbie', 2001, 'F', 144), +(173567, 'Brieanna', 2001, 'F', 144), +(173568, 'Cameryn', 2001, 'F', 144), +(173569, 'Chase', 2001, 'F', 144), +(173570, 'Kiah', 2001, 'F', 144), +(173571, 'Shamya', 2001, 'F', 144), +(173572, 'Baylie', 2001, 'F', 143), +(173573, 'Billie', 2001, 'F', 143), +(173574, 'Blake', 2001, 'F', 143), +(173575, 'Cheryl', 2001, 'F', 143), +(173576, 'Debra', 2001, 'F', 143), +(173577, 'Georgina', 2001, 'F', 143), +(173578, 'Haily', 2001, 'F', 143), +(173579, 'Heidy', 2001, 'F', 143), +(173580, 'Izabelle', 2001, 'F', 143), +(173581, 'Zion', 2001, 'F', 143), +(173582, 'Corrine', 2001, 'F', 142), +(173583, 'Danica', 2001, 'F', 142), +(173584, 'Daria', 2001, 'F', 142), +(173585, 'Makiya', 2001, 'F', 142), +(173586, 'Milagros', 2001, 'F', 142), +(173587, 'Rory', 2001, 'F', 142), +(173588, 'Chyanne', 2001, 'F', 141), +(173589, 'Jaylee', 2001, 'F', 141), +(173590, 'Joan', 2001, 'F', 141), +(173591, 'Kristal', 2001, 'F', 141), +(173592, 'Maiya', 2001, 'F', 141), +(173593, 'Zara', 2001, 'F', 141), +(173594, 'Amia', 2001, 'F', 140), +(173595, 'Carrington', 2001, 'F', 140), +(173596, 'Jazlynn', 2001, 'F', 140), +(173597, 'Kortney', 2001, 'F', 140), +(173598, 'Lilianna', 2001, 'F', 140), +(173599, 'Makaela', 2001, 'F', 140), +(173600, 'Tamya', 2001, 'F', 140), +(173601, 'Triniti', 2001, 'F', 140), +(173602, 'Annemarie', 2001, 'F', 139), +(173603, 'Brea', 2001, 'F', 139), +(173604, 'Chiara', 2001, 'F', 139), +(173605, 'Kayleen', 2001, 'F', 139), +(173606, 'Kylah', 2001, 'F', 139), +(173607, 'Mackenna', 2001, 'F', 139), +(173608, 'Marlena', 2001, 'F', 139), +(173609, 'Rileigh', 2001, 'F', 139), +(173610, 'Rubi', 2001, 'F', 139), +(173611, 'Anai', 2001, 'F', 138), +(173612, 'Charlie', 2001, 'F', 138), +(173613, 'Keyanna', 2001, 'F', 138), +(173614, 'Krysta', 2001, 'F', 138), +(173615, 'Rivka', 2001, 'F', 138), +(173616, 'Shaelyn', 2001, 'F', 138), +(173617, 'Tea', 2001, 'F', 138), +(173618, 'Aislinn', 2001, 'F', 137), +(173619, 'Alyse', 2001, 'F', 137), +(173620, 'Autum', 2001, 'F', 137), +(173621, 'Desire', 2001, 'F', 137), +(173622, 'Giavanna', 2001, 'F', 137), +(173623, 'Jadah', 2001, 'F', 137), +(173624, 'Joselin', 2001, 'F', 137), +(173625, 'Kaytlyn', 2001, 'F', 137), +(173626, 'Kristyn', 2001, 'F', 137), +(173627, 'Macayla', 2001, 'F', 137), +(173628, 'Shanice', 2001, 'F', 137), +(173629, 'Averi', 2001, 'F', 136), +(173630, 'Farrah', 2001, 'F', 136), +(173631, 'Jaela', 2001, 'F', 136), +(173632, 'Jaylah', 2001, 'F', 136), +(173633, 'Kala', 2001, 'F', 136), +(173634, 'Latavia', 2001, 'F', 136), +(173635, 'Nakia', 2001, 'F', 136), +(173636, 'Ariella', 2001, 'F', 135), +(173637, 'Campbell', 2001, 'F', 135), +(173638, 'Harlee', 2001, 'F', 135), +(173639, 'Jaedyn', 2001, 'F', 135), +(173640, 'Jania', 2001, 'F', 135), +(173641, 'Lanie', 2001, 'F', 135), +(173642, 'Livia', 2001, 'F', 135), +(173643, 'Sequoia', 2001, 'F', 135), +(173644, 'Dajah', 2001, 'F', 134), +(173645, 'Gracelyn', 2001, 'F', 134), +(173646, 'Jackie', 2001, 'F', 134), +(173647, 'Jaycie', 2001, 'F', 134), +(173648, 'Kristi', 2001, 'F', 134), +(173649, 'Kyah', 2001, 'F', 134), +(173650, 'Mahogany', 2001, 'F', 134), +(173651, 'Marianne', 2001, 'F', 134), +(173652, 'Niyah', 2001, 'F', 134), +(173653, 'Shanya', 2001, 'F', 134), +(173654, 'Shira', 2001, 'F', 134), +(173655, 'Elexis', 2001, 'F', 133), +(173656, 'Keisha', 2001, 'F', 133), +(173657, 'Laken', 2001, 'F', 133), +(173658, 'Maureen', 2001, 'F', 133), +(173659, 'Rosalie', 2001, 'F', 133), +(173660, 'Ayah', 2001, 'F', 132), +(173661, 'Bayleigh', 2001, 'F', 132), +(173662, 'Destinie', 2001, 'F', 132), +(173663, 'Jalen', 2001, 'F', 132), +(173664, 'Jessalyn', 2001, 'F', 132), +(173665, 'Kaylea', 2001, 'F', 132), +(173666, 'Leyla', 2001, 'F', 132), +(173667, 'Marin', 2001, 'F', 132), +(173668, 'Maryjane', 2001, 'F', 132), +(173669, 'Yulisa', 2001, 'F', 132), +(173670, 'Analisa', 2001, 'F', 131), +(173671, 'Dahlia', 2001, 'F', 131), +(173672, 'Janeth', 2001, 'F', 131), +(173673, 'Joann', 2001, 'F', 131), +(173674, 'Julieta', 2001, 'F', 131), +(173675, 'Mercy', 2001, 'F', 131), +(173676, 'Neida', 2001, 'F', 131), +(173677, 'Rena', 2001, 'F', 131), +(173678, 'Adamari', 2001, 'F', 130), +(173679, 'Alea', 2001, 'F', 130), +(173680, 'Aleigha', 2001, 'F', 130), +(173681, 'Annaliese', 2001, 'F', 130), +(173682, 'Austin', 2001, 'F', 130), +(173683, 'Breeanna', 2001, 'F', 130), +(173684, 'Britany', 2001, 'F', 130), +(173685, 'Dasha', 2001, 'F', 130), +(173686, 'Devan', 2001, 'F', 130), +(173687, 'Edna', 2001, 'F', 130), +(173688, 'Kalee', 2001, 'F', 130), +(173689, 'Kinsley', 2001, 'F', 130), +(173690, 'Lynette', 2001, 'F', 130), +(173691, 'Monika', 2001, 'F', 130), +(173692, 'Valencia', 2001, 'F', 130), +(173693, 'Angelia', 2001, 'F', 129), +(173694, 'Brigid', 2001, 'F', 129), +(173695, 'Briley', 2001, 'F', 129), +(173696, 'Kerri', 2001, 'F', 129), +(173697, 'Lluvia', 2001, 'F', 129), +(173698, 'Sana', 2001, 'F', 129), +(173699, 'Siena', 2001, 'F', 129), +(173700, 'Terri', 2001, 'F', 129), +(173701, 'Tyana', 2001, 'F', 129), +(173702, 'Deandra', 2001, 'F', 128), +(173703, 'Hattie', 2001, 'F', 128), +(173704, 'Isela', 2001, 'F', 128), +(173705, 'Kai', 2001, 'F', 128), +(173706, 'Nikole', 2001, 'F', 128), +(173707, 'Pauline', 2001, 'F', 128), +(173708, 'Racheal', 2001, 'F', 128), +(173709, 'Ryley', 2001, 'F', 128), +(173710, 'Sanjana', 2001, 'F', 128), +(173711, 'Alaya', 2001, 'F', 127), +(173712, 'Cailyn', 2001, 'F', 127), +(173713, 'Charlee', 2001, 'F', 127), +(173714, 'Chastity', 2001, 'F', 127), +(173715, 'Jami', 2001, 'F', 127), +(173716, 'Jessika', 2001, 'F', 127), +(173717, 'Karleigh', 2001, 'F', 127), +(173718, 'Keanna', 2001, 'F', 127), +(173719, 'Keyonna', 2001, 'F', 127), +(173720, 'Makenzi', 2001, 'F', 127), +(173721, 'Melia', 2001, 'F', 127), +(173722, 'Myla', 2001, 'F', 127), +(173723, 'Saylor', 2001, 'F', 127), +(173724, 'Aliah', 2001, 'F', 126), +(173725, 'Christen', 2001, 'F', 126), +(173726, 'Jalisa', 2001, 'F', 126), +(173727, 'Leandra', 2001, 'F', 126), +(173728, 'Madelyne', 2001, 'F', 126), +(173729, 'Marta', 2001, 'F', 126), +(173730, 'Raelynn', 2001, 'F', 126), +(173731, 'Valery', 2001, 'F', 126), +(173732, 'Bernadette', 2001, 'F', 125), +(173733, 'Griselda', 2001, 'F', 125), +(173734, 'Indya', 2001, 'F', 125), +(173735, 'Leia', 2001, 'F', 125), +(173736, 'Lorraine', 2001, 'F', 125), +(173737, 'Ria', 2001, 'F', 125), +(173738, 'Sabina', 2001, 'F', 125), +(173739, 'Shay', 2001, 'F', 125), +(173740, 'Shelly', 2001, 'F', 125), +(173741, 'Acacia', 2001, 'F', 124), +(173742, 'Belinda', 2001, 'F', 124), +(173743, 'Betsy', 2001, 'F', 124), +(173744, 'Bryce', 2001, 'F', 124), +(173745, 'Cathryn', 2001, 'F', 124), +(173746, 'Hali', 2001, 'F', 124), +(173747, 'Kathrine', 2001, 'F', 124), +(173748, 'Selah', 2001, 'F', 124), +(173749, 'Thea', 2001, 'F', 124), +(173750, 'Vianey', 2001, 'F', 124), +(173751, 'Alani', 2001, 'F', 123), +(173752, 'Daja', 2001, 'F', 123), +(173753, 'Jensen', 2001, 'F', 123), +(173754, 'Keana', 2001, 'F', 123), +(173755, 'Lissette', 2001, 'F', 123), +(173756, 'Shiann', 2001, 'F', 123), +(173757, 'Arden', 2001, 'F', 122), +(173758, 'Arlette', 2001, 'F', 122), +(173759, 'Cori', 2001, 'F', 122), +(173760, 'Gracey', 2001, 'F', 122), +(173761, 'Heavenly', 2001, 'F', 122), +(173762, 'Ivanna', 2001, 'F', 122), +(173763, 'Jaila', 2001, 'F', 122), +(173764, 'Janay', 2001, 'F', 122), +(173765, 'Maira', 2001, 'F', 122), +(173766, 'Milena', 2001, 'F', 122), +(173767, 'Tamera', 2001, 'F', 122), +(173768, 'Abbygail', 2001, 'F', 121), +(173769, 'Cambria', 2001, 'F', 121), +(173770, 'Dymond', 2001, 'F', 121), +(173771, 'Karizma', 2001, 'F', 121), +(173772, 'Maddie', 2001, 'F', 121), +(173773, 'Mika', 2001, 'F', 121), +(173774, 'Stefany', 2001, 'F', 121), +(173775, 'Adrianne', 2001, 'F', 120), +(173776, 'Angeles', 2001, 'F', 120), +(173777, 'Anisha', 2001, 'F', 120), +(173778, 'Brookelyn', 2001, 'F', 120), +(173779, 'Camden', 2001, 'F', 120), +(173780, 'Cathy', 2001, 'F', 120), +(173781, 'Colby', 2001, 'F', 120), +(173782, 'Imari', 2001, 'F', 120), +(173783, 'Jacie', 2001, 'F', 120), +(173784, 'Johnna', 2001, 'F', 120), +(173785, 'Khloe', 2001, 'F', 120), +(173786, 'Kierstin', 2001, 'F', 120), +(173787, 'Lexy', 2001, 'F', 120), +(173788, 'Marion', 2001, 'F', 120), +(173789, 'Rosario', 2001, 'F', 120), +(173790, 'Rosemarie', 2001, 'F', 120), +(173791, 'Symone', 2001, 'F', 120), +(173792, 'Tasha', 2001, 'F', 120), +(173793, 'Adela', 2001, 'F', 119), +(173794, 'Adia', 2001, 'F', 119), +(173795, 'Aiyanna', 2001, 'F', 119), +(173796, 'Alanis', 2001, 'F', 119), +(173797, 'Amberly', 2001, 'F', 119), +(173798, 'Joi', 2001, 'F', 119), +(173799, 'Kaniya', 2001, 'F', 119), +(173800, 'Karmen', 2001, 'F', 119), +(173801, 'Malena', 2001, 'F', 119), +(173802, 'Malka', 2001, 'F', 119), +(173803, 'Nelly', 2001, 'F', 119), +(173804, 'Rayne', 2001, 'F', 119), +(173805, 'Amirah', 2001, 'F', 118), +(173806, 'Bobbi', 2001, 'F', 118), +(173807, 'Cinthia', 2001, 'F', 118), +(173808, 'Giuliana', 2001, 'F', 118), +(173809, 'Hanah', 2001, 'F', 118), +(173810, 'Kalista', 2001, 'F', 118), +(173811, 'Kendyl', 2001, 'F', 118), +(173812, 'Linsey', 2001, 'F', 118), +(173813, 'Lisbeth', 2001, 'F', 118), +(173814, 'Lyla', 2001, 'F', 118), +(173815, 'Rayven', 2001, 'F', 118), +(173816, 'Shivani', 2001, 'F', 118), +(173817, 'Stormie', 2001, 'F', 118), +(173818, 'Terra', 2001, 'F', 118), +(173819, 'Therese', 2001, 'F', 118), +(173820, 'Abbigale', 2001, 'F', 117), +(173821, 'Analise', 2001, 'F', 117), +(173822, 'Asya', 2001, 'F', 117), +(173823, 'Emmaline', 2001, 'F', 117), +(173824, 'Ginger', 2001, 'F', 117), +(173825, 'Jacy', 2001, 'F', 117), +(173826, 'Keyana', 2001, 'F', 117), +(173827, 'Kimberlee', 2001, 'F', 117), +(173828, 'Saira', 2001, 'F', 117), +(173829, 'Vicky', 2001, 'F', 117), +(173830, 'Clarice', 2001, 'F', 116), +(173831, 'Jesenia', 2001, 'F', 116), +(173832, 'Karolina', 2001, 'F', 116), +(173833, 'Kristian', 2001, 'F', 116), +(173834, 'Leigh', 2001, 'F', 116), +(173835, 'Arleth', 2001, 'F', 115), +(173836, 'Eleni', 2001, 'F', 115), +(173837, 'Emelia', 2001, 'F', 115), +(173838, 'Jocelynn', 2001, 'F', 115), +(173839, 'Magali', 2001, 'F', 115), +(173840, 'Mariel', 2001, 'F', 115), +(173841, 'Nayelli', 2001, 'F', 115), +(173842, 'Tyasia', 2001, 'F', 115), +(173843, 'Wynter', 2001, 'F', 115), +(173844, 'Yazmine', 2001, 'F', 115), +(173845, 'Alesha', 2001, 'F', 114), +(173846, 'Alora', 2001, 'F', 114), +(173847, 'Christie', 2001, 'F', 114), +(173848, 'Kalia', 2001, 'F', 114), +(173849, 'Micayla', 2001, 'F', 114), +(173850, 'Scarlet', 2001, 'F', 114), +(173851, 'Sherry', 2001, 'F', 114), +(173852, 'Siera', 2001, 'F', 114), +(173853, 'Yesica', 2001, 'F', 114), +(173854, 'Adina', 2001, 'F', 113), +(173855, 'Divya', 2001, 'F', 113), +(173856, 'Flora', 2001, 'F', 113), +(173857, 'Jennah', 2001, 'F', 113), +(173858, 'Kerrigan', 2001, 'F', 113), +(173859, 'Madilynn', 2001, 'F', 113), +(173860, 'Malorie', 2001, 'F', 113), +(173861, 'Shantel', 2001, 'F', 113), +(173862, 'Ashlin', 2001, 'F', 112), +(173863, 'Candy', 2001, 'F', 112), +(173864, 'Carsyn', 2001, 'F', 112), +(173865, 'Cloey', 2001, 'F', 112), +(173866, 'Eboni', 2001, 'F', 112), +(173867, 'Elysia', 2001, 'F', 112), +(173868, 'Jean', 2001, 'F', 112), +(173869, 'Keegan', 2001, 'F', 112), +(173870, 'Mae', 2001, 'F', 112), +(173871, 'Marla', 2001, 'F', 112), +(173872, 'Mattison', 2001, 'F', 112), +(173873, 'Raelyn', 2001, 'F', 112), +(173874, 'Alyvia', 2001, 'F', 111), +(173875, 'Anastacia', 2001, 'F', 111), +(173876, 'Keasia', 2001, 'F', 111), +(173877, 'Layne', 2001, 'F', 111), +(173878, 'Lucinda', 2001, 'F', 111), +(173879, 'Meg', 2001, 'F', 111), +(173880, 'Mercedez', 2001, 'F', 111), +(173881, 'Moira', 2001, 'F', 111), +(173882, 'Selene', 2001, 'F', 111), +(173883, 'Taelor', 2001, 'F', 111), +(173884, 'Taniyah', 2001, 'F', 111), +(173885, 'Tasia', 2001, 'F', 111), +(173886, 'Zaira', 2001, 'F', 111), +(173887, 'Deana', 2001, 'F', 110), +(173888, 'Infant', 2001, 'F', 110), +(173889, 'Jodie', 2001, 'F', 110), +(173890, 'Karis', 2001, 'F', 110), +(173891, 'Lela', 2001, 'F', 110), +(173892, 'Saniya', 2001, 'F', 110), +(173893, 'Suzanna', 2001, 'F', 110), +(173894, 'Abriana', 2001, 'F', 109), +(173895, 'Alaysha', 2001, 'F', 109), +(173896, 'Ananda', 2001, 'F', 109), +(173897, 'Averie', 2001, 'F', 109), +(173898, 'Catrina', 2001, 'F', 109), +(173899, 'Jaeda', 2001, 'F', 109), +(173900, 'Kaelin', 2001, 'F', 109), +(173901, 'Kami', 2001, 'F', 109), +(173902, 'Tabatha', 2001, 'F', 109), +(173903, 'Tegan', 2001, 'F', 109), +(173904, 'Anjelica', 2001, 'F', 108), +(173905, 'Anneliese', 2001, 'F', 108), +(173906, 'Belle', 2001, 'F', 108), +(173907, 'Citlally', 2001, 'F', 108), +(173908, 'Doris', 2001, 'F', 108), +(173909, 'Evangeline', 2001, 'F', 108), +(173910, 'Ilana', 2001, 'F', 108), +(173911, 'Lianna', 2001, 'F', 108), +(173912, 'Louise', 2001, 'F', 108), +(173913, 'Malina', 2001, 'F', 108), +(173914, 'Mallorie', 2001, 'F', 108), +(173915, 'Marielle', 2001, 'F', 108), +(173916, 'Stefani', 2001, 'F', 108), +(173917, 'Zahra', 2001, 'F', 108), +(173918, 'Addyson', 2001, 'F', 107), +(173919, 'Babygirl', 2001, 'F', 107), +(173920, 'Brylee', 2001, 'F', 107), +(173921, 'Dalila', 2001, 'F', 107), +(173922, 'Jessi', 2001, 'F', 107), +(173923, 'Keyara', 2001, 'F', 107), +(173924, 'Lupita', 2001, 'F', 107), +(173925, 'Maile', 2001, 'F', 107), +(173926, 'Malika', 2001, 'F', 107), +(173927, 'Marguerite', 2001, 'F', 107), +(173928, 'Milan', 2001, 'F', 107), +(173929, 'Ravyn', 2001, 'F', 107), +(173930, 'Riana', 2001, 'F', 107), +(173931, 'Tatyanna', 2001, 'F', 107), +(173932, 'Tiarra', 2001, 'F', 107), +(173933, 'Aditi', 2001, 'F', 106), +(173934, 'Braelyn', 2001, 'F', 106), +(173935, 'Calli', 2001, 'F', 106), +(173936, 'Darla', 2001, 'F', 106), +(173937, 'Destanie', 2001, 'F', 106), +(173938, 'Emery', 2001, 'F', 106), +(173939, 'Harleigh', 2001, 'F', 106), +(173940, 'Kia', 2001, 'F', 106), +(173941, 'Lilah', 2001, 'F', 106), +(173942, 'Linnea', 2001, 'F', 106), +(173943, 'Lynsey', 2001, 'F', 106), +(173944, 'Sonja', 2001, 'F', 106), +(173945, 'Andria', 2001, 'F', 105), +(173946, 'Ania', 2001, 'F', 105), +(173947, 'Annalee', 2001, 'F', 105), +(173948, 'Ariyana', 2001, 'F', 105), +(173949, 'Bernice', 2001, 'F', 105), +(173950, 'Davina', 2001, 'F', 105), +(173951, 'Domonique', 2001, 'F', 105), +(173952, 'Jorden', 2001, 'F', 105), +(173953, 'Juliann', 2001, 'F', 105), +(173954, 'Jurnee', 2001, 'F', 105), +(173955, 'Kimberley', 2001, 'F', 105), +(173956, 'Klarissa', 2001, 'F', 105), +(173957, 'Rosie', 2001, 'F', 105), +(173958, 'Taylar', 2001, 'F', 105), +(173959, 'Yamileth', 2001, 'F', 105), +(173960, 'Alli', 2001, 'F', 104), +(173961, 'Angelita', 2001, 'F', 104), +(173962, 'Ashely', 2001, 'F', 104), +(173963, 'Emme', 2001, 'F', 104), +(173964, 'Geraldine', 2001, 'F', 104), +(173965, 'Ivonne', 2001, 'F', 104), +(173966, 'Jordin', 2001, 'F', 104), +(173967, 'Kyndal', 2001, 'F', 104), +(173968, 'Reece', 2001, 'F', 104), +(173969, 'Renae', 2001, 'F', 104), +(173970, 'Sloane', 2001, 'F', 104), +(173971, 'Allysa', 2001, 'F', 103), +(173972, 'Deisy', 2001, 'F', 103), +(173973, 'Elianna', 2001, 'F', 103), +(173974, 'Jocelyne', 2001, 'F', 103), +(173975, 'Kalea', 2001, 'F', 103), +(173976, 'Louisa', 2001, 'F', 103), +(173977, 'Madelin', 2001, 'F', 103), +(173978, 'Mirna', 2001, 'F', 103), +(173979, 'Oriana', 2001, 'F', 103), +(173980, 'Shoshana', 2001, 'F', 103), +(173981, 'Tonya', 2001, 'F', 103), +(173982, 'Yaneli', 2001, 'F', 103), +(173983, 'Yaquelin', 2001, 'F', 103), +(173984, 'Adele', 2001, 'F', 102), +(173985, 'Aysha', 2001, 'F', 102), +(173986, 'Christal', 2001, 'F', 102), +(173987, 'Dariana', 2001, 'F', 102), +(173988, 'Demetria', 2001, 'F', 102), +(173989, 'Janell', 2001, 'F', 102), +(173990, 'Kameryn', 2001, 'F', 102), +(173991, 'Kamila', 2001, 'F', 102), +(173992, 'Kamille', 2001, 'F', 102), +(173993, 'Mariyah', 2001, 'F', 102), +(173994, 'Salena', 2001, 'F', 102), +(173995, 'Trina', 2001, 'F', 102), +(173996, 'Tristin', 2001, 'F', 102), +(173997, 'Yarely', 2001, 'F', 102), +(173998, 'Amiah', 2001, 'F', 101), +(173999, 'Aminah', 2001, 'F', 101), +(174000, 'Devorah', 2001, 'F', 101), +(174001, 'Izabel', 2001, 'F', 101), +(174002, 'Janel', 2001, 'F', 101), +(174003, 'Janine', 2001, 'F', 101), +(174004, 'Jocelin', 2001, 'F', 101), +(174005, 'Kaili', 2001, 'F', 101), +(174006, 'Lora', 2001, 'F', 101), +(174007, 'Maisie', 2001, 'F', 101), +(174008, 'Mekayla', 2001, 'F', 101), +(174009, 'Noa', 2001, 'F', 101), +(174010, 'Shakayla', 2001, 'F', 101), +(174011, 'Aida', 2001, 'F', 100), +(174012, 'Ariadna', 2001, 'F', 100), +(174013, 'Aubrianna', 2001, 'F', 100), +(174014, 'Ayleen', 2001, 'F', 100), +(174015, 'Brittani', 2001, 'F', 100), +(174016, 'Christin', 2001, 'F', 100), +(174017, 'Daysha', 2001, 'F', 100), +(174018, 'Jaslyn', 2001, 'F', 100), +(174019, 'Jesica', 2001, 'F', 100), +(174020, 'Kalei', 2001, 'F', 100), +(174021, 'Kim', 2001, 'F', 100), +(174022, 'Mackenzi', 2001, 'F', 100), +(174023, 'Matilda', 2001, 'F', 100), +(174024, 'Paisley', 2001, 'F', 100), +(174025, 'Pilar', 2001, 'F', 100), +(174026, 'Portia', 2001, 'F', 100), +(174027, 'Soraya', 2001, 'F', 100), +(174028, 'Jacob', 2001, 'M', 32527), +(174029, 'Michael', 2001, 'M', 29675), +(174030, 'Matthew', 2001, 'M', 26799), +(174031, 'Joshua', 2001, 'M', 26006), +(174032, 'Christopher', 2001, 'M', 23117), +(174033, 'Nicholas', 2001, 'M', 22839), +(174034, 'Andrew', 2001, 'M', 22402), +(174035, 'Joseph', 2001, 'M', 21994), +(174036, 'Daniel', 2001, 'M', 20972), +(174037, 'William', 2001, 'M', 20094), +(174038, 'Anthony', 2001, 'M', 19728), +(174039, 'David', 2001, 'M', 19330), +(174040, 'Tyler', 2001, 'M', 19269), +(174041, 'John', 2001, 'M', 18878), +(174042, 'Ryan', 2001, 'M', 18286), +(174043, 'Zachary', 2001, 'M', 18183), +(174044, 'Ethan', 2001, 'M', 17959), +(174045, 'Brandon', 2001, 'M', 17889), +(174046, 'James', 2001, 'M', 17066), +(174047, 'Alexander', 2001, 'M', 16713), +(174048, 'Dylan', 2001, 'M', 16491), +(174049, 'Justin', 2001, 'M', 16227), +(174050, 'Jonathan', 2001, 'M', 16136), +(174051, 'Christian', 2001, 'M', 15446), +(174052, 'Austin', 2001, 'M', 14953), +(174053, 'Samuel', 2001, 'M', 14786), +(174054, 'Benjamin', 2001, 'M', 14326), +(174055, 'Noah', 2001, 'M', 13475), +(174056, 'Logan', 2001, 'M', 12710), +(174057, 'Robert', 2001, 'M', 12659), +(174058, 'Nathan', 2001, 'M', 12640), +(174059, 'Kevin', 2001, 'M', 12591), +(174060, 'Thomas', 2001, 'M', 12147), +(174061, 'Jose', 2001, 'M', 12136), +(174062, 'Cameron', 2001, 'M', 11582), +(174063, 'Hunter', 2001, 'M', 11333), +(174064, 'Caleb', 2001, 'M', 11171), +(174065, 'Gabriel', 2001, 'M', 10912), +(174066, 'Jordan', 2001, 'M', 10812), +(174067, 'Kyle', 2001, 'M', 10567), +(174068, 'Jason', 2001, 'M', 10163), +(174069, 'Aaron', 2001, 'M', 9531), +(174070, 'Isaiah', 2001, 'M', 8579), +(174071, 'Eric', 2001, 'M', 8559), +(174072, 'Elijah', 2001, 'M', 8334), +(174073, 'Brian', 2001, 'M', 8296), +(174074, 'Isaac', 2001, 'M', 8194), +(174075, 'Jack', 2001, 'M', 8148), +(174076, 'Connor', 2001, 'M', 8081), +(174077, 'Luke', 2001, 'M', 8004), +(174078, 'Adam', 2001, 'M', 7749), +(174079, 'Luis', 2001, 'M', 7486), +(174080, 'Mason', 2001, 'M', 7446), +(174081, 'Juan', 2001, 'M', 7442), +(174082, 'Charles', 2001, 'M', 7282), +(174083, 'Evan', 2001, 'M', 7257), +(174084, 'Sean', 2001, 'M', 7221), +(174085, 'Angel', 2001, 'M', 6974), +(174086, 'Carlos', 2001, 'M', 6839), +(174087, 'Jackson', 2001, 'M', 6832), +(174088, 'Nathaniel', 2001, 'M', 6642), +(174089, 'Alex', 2001, 'M', 6613), +(174090, 'Steven', 2001, 'M', 6585), +(174091, 'Cody', 2001, 'M', 6573), +(174092, 'Jared', 2001, 'M', 6433), +(174093, 'Jesus', 2001, 'M', 6424), +(174094, 'Timothy', 2001, 'M', 6416), +(174095, 'Seth', 2001, 'M', 6222), +(174096, 'Bryan', 2001, 'M', 6123), +(174097, 'Ian', 2001, 'M', 6082), +(174098, 'Devin', 2001, 'M', 6037), +(174099, 'Patrick', 2001, 'M', 5785), +(174100, 'Richard', 2001, 'M', 5767), +(174101, 'Cole', 2001, 'M', 5740), +(174102, 'Adrian', 2001, 'M', 5424), +(174103, 'Trevor', 2001, 'M', 5395), +(174104, 'Blake', 2001, 'M', 5354), +(174105, 'Gavin', 2001, 'M', 5260), +(174106, 'Chase', 2001, 'M', 5199), +(174107, 'Garrett', 2001, 'M', 5061), +(174108, 'Sebastian', 2001, 'M', 4976), +(174109, 'Julian', 2001, 'M', 4941), +(174110, 'Lucas', 2001, 'M', 4898), +(174111, 'Mark', 2001, 'M', 4751), +(174112, 'Antonio', 2001, 'M', 4734), +(174113, 'Aidan', 2001, 'M', 4632), +(174114, 'Alejandro', 2001, 'M', 4554), +(174115, 'Miguel', 2001, 'M', 4554), +(174116, 'Jeremy', 2001, 'M', 4268), +(174117, 'Jeremiah', 2001, 'M', 4219), +(174118, 'Jesse', 2001, 'M', 4217), +(174119, 'Bryce', 2001, 'M', 4150), +(174120, 'Dakota', 2001, 'M', 3979), +(174121, 'Xavier', 2001, 'M', 3977), +(174122, 'Carson', 2001, 'M', 3941), +(174123, 'Victor', 2001, 'M', 3918), +(174124, 'Kenneth', 2001, 'M', 3907), +(174125, 'Dalton', 2001, 'M', 3894), +(174126, 'Colby', 2001, 'M', 3859), +(174127, 'Jake', 2001, 'M', 3837), +(174128, 'Tanner', 2001, 'M', 3832), +(174129, 'Stephen', 2001, 'M', 3736), +(174130, 'Spencer', 2001, 'M', 3729), +(174131, 'Marcus', 2001, 'M', 3692), +(174132, 'Riley', 2001, 'M', 3650), +(174133, 'Dominic', 2001, 'M', 3633), +(174134, 'Wyatt', 2001, 'M', 3598), +(174135, 'Tristan', 2001, 'M', 3575), +(174136, 'Paul', 2001, 'M', 3508), +(174137, 'Jorge', 2001, 'M', 3443), +(174138, 'Carter', 2001, 'M', 3434), +(174139, 'Eduardo', 2001, 'M', 3417), +(174140, 'Edward', 2001, 'M', 3372), +(174141, 'Jaden', 2001, 'M', 3350), +(174142, 'Brendan', 2001, 'M', 3343), +(174143, 'Kaleb', 2001, 'M', 3333), +(174144, 'Hayden', 2001, 'M', 3262), +(174145, 'Colton', 2001, 'M', 3245), +(174146, 'Jeffrey', 2001, 'M', 3207), +(174147, 'Vincent', 2001, 'M', 3201), +(174148, 'Oscar', 2001, 'M', 3192), +(174149, 'Henry', 2001, 'M', 3190), +(174150, 'Parker', 2001, 'M', 3187), +(174151, 'Maxwell', 2001, 'M', 3183), +(174152, 'Colin', 2001, 'M', 3170), +(174153, 'Joel', 2001, 'M', 3165), +(174154, 'Jalen', 2001, 'M', 3120), +(174155, 'Shane', 2001, 'M', 3116), +(174156, 'George', 2001, 'M', 3084), +(174157, 'Owen', 2001, 'M', 3029), +(174158, 'Liam', 2001, 'M', 3027), +(174159, 'Derek', 2001, 'M', 3008), +(174160, 'Peter', 2001, 'M', 2947), +(174161, 'Travis', 2001, 'M', 2942), +(174162, 'Grant', 2001, 'M', 2922), +(174163, 'Collin', 2001, 'M', 2896), +(174164, 'Francisco', 2001, 'M', 2856), +(174165, 'Ricardo', 2001, 'M', 2851), +(174166, 'Jayden', 2001, 'M', 2833), +(174167, 'Diego', 2001, 'M', 2832), +(174168, 'Nicolas', 2001, 'M', 2822), +(174169, 'Ivan', 2001, 'M', 2821), +(174170, 'Alexis', 2001, 'M', 2768), +(174171, 'Gage', 2001, 'M', 2759), +(174172, 'Bradley', 2001, 'M', 2729), +(174173, 'Devon', 2001, 'M', 2722), +(174174, 'Omar', 2001, 'M', 2722), +(174175, 'Alan', 2001, 'M', 2644), +(174176, 'Javier', 2001, 'M', 2635), +(174177, 'Cristian', 2001, 'M', 2630), +(174178, 'Shawn', 2001, 'M', 2627), +(174179, 'Preston', 2001, 'M', 2617), +(174180, 'Andres', 2001, 'M', 2601), +(174181, 'Fernando', 2001, 'M', 2600), +(174182, 'Erik', 2001, 'M', 2574), +(174183, 'Mitchell', 2001, 'M', 2567), +(174184, 'Gregory', 2001, 'M', 2474), +(174185, 'Dustin', 2001, 'M', 2423), +(174186, 'Max', 2001, 'M', 2403), +(174187, 'Cesar', 2001, 'M', 2374), +(174188, 'Edgar', 2001, 'M', 2374), +(174189, 'Clayton', 2001, 'M', 2351), +(174190, 'Raymond', 2001, 'M', 2333), +(174191, 'Manuel', 2001, 'M', 2313), +(174192, 'Taylor', 2001, 'M', 2309), +(174193, 'Johnathan', 2001, 'M', 2304), +(174194, 'Scott', 2001, 'M', 2292), +(174195, 'Corey', 2001, 'M', 2241), +(174196, 'Josiah', 2001, 'M', 2234), +(174197, 'Mario', 2001, 'M', 2217), +(174198, 'Jakob', 2001, 'M', 2192), +(174199, 'Levi', 2001, 'M', 2170), +(174200, 'Alec', 2001, 'M', 2155), +(174201, 'Brady', 2001, 'M', 2153), +(174202, 'Dillon', 2001, 'M', 2141), +(174203, 'Brayden', 2001, 'M', 2127), +(174204, 'Peyton', 2001, 'M', 2114), +(174205, 'Micah', 2001, 'M', 2112), +(174206, 'Marco', 2001, 'M', 2107), +(174207, 'Nolan', 2001, 'M', 2092), +(174208, 'Trenton', 2001, 'M', 2082), +(174209, 'Martin', 2001, 'M', 2059), +(174210, 'Dawson', 2001, 'M', 2030), +(174211, 'Wesley', 2001, 'M', 2027), +(174212, 'Sergio', 2001, 'M', 2023), +(174213, 'Edwin', 2001, 'M', 1982), +(174214, 'Jonah', 2001, 'M', 1982), +(174215, 'Brett', 2001, 'M', 1963), +(174216, 'Damian', 2001, 'M', 1962), +(174217, 'Roberto', 2001, 'M', 1955), +(174218, 'Braden', 2001, 'M', 1924), +(174219, 'Erick', 2001, 'M', 1919), +(174220, 'Hector', 2001, 'M', 1903), +(174221, 'Landon', 2001, 'M', 1880), +(174222, 'Caden', 2001, 'M', 1877), +(174223, 'Giovanni', 2001, 'M', 1873), +(174224, 'Malik', 2001, 'M', 1863), +(174225, 'Emmanuel', 2001, 'M', 1856), +(174226, 'Conner', 2001, 'M', 1832), +(174227, 'Abraham', 2001, 'M', 1817), +(174228, 'Cade', 2001, 'M', 1812), +(174229, 'Cooper', 2001, 'M', 1802), +(174230, 'Harrison', 2001, 'M', 1798), +(174231, 'Chandler', 2001, 'M', 1792), +(174232, 'Andy', 2001, 'M', 1784), +(174233, 'Andre', 2001, 'M', 1740), +(174234, 'Ruben', 2001, 'M', 1733), +(174235, 'Trent', 2001, 'M', 1719), +(174236, 'Phillip', 2001, 'M', 1710), +(174237, 'Pedro', 2001, 'M', 1695), +(174238, 'Donovan', 2001, 'M', 1658), +(174239, 'Ronald', 2001, 'M', 1652), +(174240, 'Frank', 2001, 'M', 1633), +(174241, 'Eli', 2001, 'M', 1621), +(174242, 'Calvin', 2001, 'M', 1612), +(174243, 'Ashton', 2001, 'M', 1597), +(174244, 'Aiden', 2001, 'M', 1586), +(174245, 'Darius', 2001, 'M', 1566), +(174246, 'Drew', 2001, 'M', 1565), +(174247, 'Josue', 2001, 'M', 1562), +(174248, 'Casey', 2001, 'M', 1556), +(174249, 'Kobe', 2001, 'M', 1552), +(174250, 'Kaden', 2001, 'M', 1548), +(174251, 'Chance', 2001, 'M', 1540), +(174252, 'Trey', 2001, 'M', 1538), +(174253, 'Johnny', 2001, 'M', 1533), +(174254, 'Gerardo', 2001, 'M', 1520), +(174255, 'Elias', 2001, 'M', 1517), +(174256, 'Skyler', 2001, 'M', 1507), +(174257, 'Armando', 2001, 'M', 1475), +(174258, 'Donald', 2001, 'M', 1469), +(174259, 'Derrick', 2001, 'M', 1455), +(174260, 'Rafael', 2001, 'M', 1455), +(174261, 'Leonardo', 2001, 'M', 1453), +(174262, 'Raul', 2001, 'M', 1439), +(174263, 'Enrique', 2001, 'M', 1438), +(174264, 'Keith', 2001, 'M', 1432), +(174265, 'Jaylen', 2001, 'M', 1426), +(174266, 'Griffin', 2001, 'M', 1418), +(174267, 'Marcos', 2001, 'M', 1413), +(174268, 'Damien', 2001, 'M', 1402), +(174269, 'Avery', 2001, 'M', 1401), +(174270, 'Zackary', 2001, 'M', 1386), +(174271, 'Allen', 2001, 'M', 1384), +(174272, 'Miles', 2001, 'M', 1384), +(174273, 'Bryson', 2001, 'M', 1356), +(174274, 'Dante', 2001, 'M', 1354), +(174275, 'Troy', 2001, 'M', 1354), +(174276, 'Israel', 2001, 'M', 1340), +(174277, 'Jaime', 2001, 'M', 1339), +(174278, 'Zane', 2001, 'M', 1329), +(174279, 'Jonathon', 2001, 'M', 1324), +(174280, 'Malachi', 2001, 'M', 1322), +(174281, 'Julio', 2001, 'M', 1319), +(174282, 'Payton', 2001, 'M', 1313), +(174283, 'Lance', 2001, 'M', 1285), +(174284, 'Axel', 2001, 'M', 1272), +(174285, 'Mathew', 2001, 'M', 1272), +(174286, 'Simon', 2001, 'M', 1268), +(174287, 'Cory', 2001, 'M', 1263), +(174288, 'Jerry', 2001, 'M', 1249), +(174289, 'Drake', 2001, 'M', 1245), +(174290, 'Marc', 2001, 'M', 1243), +(174291, 'Alberto', 2001, 'M', 1240), +(174292, 'Kameron', 2001, 'M', 1237), +(174293, 'Bailey', 2001, 'M', 1234), +(174294, 'Brenden', 2001, 'M', 1221), +(174295, 'Philip', 2001, 'M', 1221), +(174296, 'Ty', 2001, 'M', 1218), +(174297, 'Dennis', 2001, 'M', 1177), +(174298, 'Keegan', 2001, 'M', 1158), +(174299, 'Gustavo', 2001, 'M', 1139), +(174300, 'Curtis', 2001, 'M', 1123), +(174301, 'Brennan', 2001, 'M', 1121), +(174302, 'Fabian', 2001, 'M', 1111), +(174303, 'Dominick', 2001, 'M', 1109), +(174304, 'Jimmy', 2001, 'M', 1105), +(174305, 'Saul', 2001, 'M', 1102), +(174306, 'Louis', 2001, 'M', 1096), +(174307, 'Albert', 2001, 'M', 1091), +(174308, 'Brock', 2001, 'M', 1091), +(174309, 'Douglas', 2001, 'M', 1081), +(174310, 'Chad', 2001, 'M', 1079), +(174311, 'Arturo', 2001, 'M', 1057), +(174312, 'Randy', 2001, 'M', 1053), +(174313, 'Angelo', 2001, 'M', 1046), +(174314, 'Tucker', 2001, 'M', 1041), +(174315, 'Damon', 2001, 'M', 1038), +(174316, 'Pablo', 2001, 'M', 1037), +(174317, 'Larry', 2001, 'M', 1029), +(174318, 'Tony', 2001, 'M', 1023), +(174319, 'Kyler', 2001, 'M', 1020), +(174320, 'Danny', 2001, 'M', 1017), +(174321, 'Gary', 2001, 'M', 1013), +(174322, 'Myles', 2001, 'M', 1002), +(174323, 'Corbin', 2001, 'M', 992), +(174324, 'Roman', 2001, 'M', 982), +(174325, 'Alfredo', 2001, 'M', 978), +(174326, 'Oliver', 2001, 'M', 978), +(174327, 'Jace', 2001, 'M', 976), +(174328, 'Nickolas', 2001, 'M', 970), +(174329, 'Joe', 2001, 'M', 958), +(174330, 'Bryant', 2001, 'M', 956), +(174331, 'Darren', 2001, 'M', 949), +(174332, 'Quinn', 2001, 'M', 937), +(174333, 'Theodore', 2001, 'M', 935), +(174334, 'Russell', 2001, 'M', 925), +(174335, 'Moises', 2001, 'M', 912), +(174336, 'Zachery', 2001, 'M', 895), +(174337, 'Lane', 2001, 'M', 894), +(174338, 'Maximus', 2001, 'M', 892), +(174339, 'Camden', 2001, 'M', 889), +(174340, 'Lorenzo', 2001, 'M', 888), +(174341, 'Jay', 2001, 'M', 887), +(174342, 'Tristen', 2001, 'M', 886); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(174343, 'Ramon', 2001, 'M', 885), +(174344, 'Kristopher', 2001, 'M', 883), +(174345, 'Carl', 2001, 'M', 880), +(174346, 'Arthur', 2001, 'M', 879), +(174347, 'Dallas', 2001, 'M', 877), +(174348, 'Grayson', 2001, 'M', 874), +(174349, 'Micheal', 2001, 'M', 873), +(174350, 'Emanuel', 2001, 'M', 870), +(174351, 'Zion', 2001, 'M', 867), +(174352, 'Ismael', 2001, 'M', 866), +(174353, 'Ricky', 2001, 'M', 856), +(174354, 'Brody', 2001, 'M', 848), +(174355, 'Ernesto', 2001, 'M', 848), +(174356, 'Brent', 2001, 'M', 847), +(174357, 'Salvador', 2001, 'M', 846), +(174358, 'Tommy', 2001, 'M', 841), +(174359, 'Deandre', 2001, 'M', 833), +(174360, 'Tyson', 2001, 'M', 832), +(174361, 'Esteban', 2001, 'M', 826), +(174362, 'Walter', 2001, 'M', 826), +(174363, 'Isiah', 2001, 'M', 822), +(174364, 'Jarrett', 2001, 'M', 820), +(174365, 'Lukas', 2001, 'M', 817), +(174366, 'Branden', 2001, 'M', 811), +(174367, 'Lawrence', 2001, 'M', 810), +(174368, 'Terry', 2001, 'M', 802), +(174369, 'Santiago', 2001, 'M', 801), +(174370, 'Marvin', 2001, 'M', 798), +(174371, 'Reece', 2001, 'M', 797), +(174372, 'Braxton', 2001, 'M', 794), +(174373, 'Marshall', 2001, 'M', 786), +(174374, 'Trevon', 2001, 'M', 786), +(174375, 'Jamal', 2001, 'M', 785), +(174376, 'Morgan', 2001, 'M', 782), +(174377, 'Jeffery', 2001, 'M', 778), +(174378, 'Quentin', 2001, 'M', 764), +(174379, 'Jayson', 2001, 'M', 759), +(174380, 'Emilio', 2001, 'M', 756), +(174381, 'Mauricio', 2001, 'M', 755), +(174382, 'Nikolas', 2001, 'M', 747), +(174383, 'Dean', 2001, 'M', 744), +(174384, 'Javon', 2001, 'M', 741), +(174385, 'Rodney', 2001, 'M', 740), +(174386, 'Kolby', 2001, 'M', 739), +(174387, 'Leo', 2001, 'M', 735), +(174388, 'Skylar', 2001, 'M', 734), +(174389, 'Abel', 2001, 'M', 733), +(174390, 'Davis', 2001, 'M', 733), +(174391, 'Orlando', 2001, 'M', 731), +(174392, 'Ezekiel', 2001, 'M', 729), +(174393, 'Jon', 2001, 'M', 729), +(174394, 'Mateo', 2001, 'M', 726), +(174395, 'Kody', 2001, 'M', 721), +(174396, 'Roger', 2001, 'M', 719), +(174397, 'Kai', 2001, 'M', 718), +(174398, 'Maurice', 2001, 'M', 717), +(174399, 'Ali', 2001, 'M', 715), +(174400, 'Justice', 2001, 'M', 715), +(174401, 'Tyrese', 2001, 'M', 703), +(174402, 'Conor', 2001, 'M', 701), +(174403, 'Zackery', 2001, 'M', 696), +(174404, 'Chris', 2001, 'M', 695), +(174405, 'Rodrigo', 2001, 'M', 693), +(174406, 'Felix', 2001, 'M', 684), +(174407, 'Craig', 2001, 'M', 682), +(174408, 'Kade', 2001, 'M', 682), +(174409, 'Keaton', 2001, 'M', 682), +(174410, 'Eddie', 2001, 'M', 679), +(174411, 'Billy', 2001, 'M', 676), +(174412, 'Demetrius', 2001, 'M', 672), +(174413, 'Ahmad', 2001, 'M', 661), +(174414, 'Zachariah', 2001, 'M', 658), +(174415, 'Jarod', 2001, 'M', 655), +(174416, 'Bobby', 2001, 'M', 654), +(174417, 'Shaun', 2001, 'M', 654), +(174418, 'Amir', 2001, 'M', 649), +(174419, 'Quinton', 2001, 'M', 647), +(174420, 'Reese', 2001, 'M', 646), +(174421, 'Brendon', 2001, 'M', 640), +(174422, 'Jaxon', 2001, 'M', 639), +(174423, 'Hugo', 2001, 'M', 637), +(174424, 'Desmond', 2001, 'M', 636), +(174425, 'Graham', 2001, 'M', 631), +(174426, 'Walker', 2001, 'M', 629), +(174427, 'Khalil', 2001, 'M', 626), +(174428, 'Steve', 2001, 'M', 623), +(174429, 'Guillermo', 2001, 'M', 620), +(174430, 'Issac', 2001, 'M', 618), +(174431, 'Kelvin', 2001, 'M', 618), +(174432, 'Blaine', 2001, 'M', 617), +(174433, 'Johnathon', 2001, 'M', 616), +(174434, 'Nelson', 2001, 'M', 615), +(174435, 'Malcolm', 2001, 'M', 614), +(174436, 'Dale', 2001, 'M', 613), +(174437, 'Frederick', 2001, 'M', 613), +(174438, 'Gerald', 2001, 'M', 609), +(174439, 'Weston', 2001, 'M', 608), +(174440, 'Willie', 2001, 'M', 608), +(174441, 'Julius', 2001, 'M', 606), +(174442, 'Braeden', 2001, 'M', 605), +(174443, 'Dorian', 2001, 'M', 602), +(174444, 'Felipe', 2001, 'M', 602), +(174445, 'Jaylon', 2001, 'M', 599), +(174446, 'Jessie', 2001, 'M', 593), +(174447, 'Rene', 2001, 'M', 591), +(174448, 'Kristian', 2001, 'M', 587), +(174449, 'Noel', 2001, 'M', 583), +(174450, 'Terrance', 2001, 'M', 580), +(174451, 'Bruce', 2001, 'M', 579), +(174452, 'Kendall', 2001, 'M', 577), +(174453, 'Clay', 2001, 'M', 573), +(174454, 'Roy', 2001, 'M', 571), +(174455, 'Ezra', 2001, 'M', 570), +(174456, 'Reginald', 2001, 'M', 566), +(174457, 'Camron', 2001, 'M', 565), +(174458, 'Tate', 2001, 'M', 563), +(174459, 'Quincy', 2001, 'M', 562), +(174460, 'Darian', 2001, 'M', 561), +(174461, 'Solomon', 2001, 'M', 558), +(174462, 'Noe', 2001, 'M', 557), +(174463, 'Jermaine', 2001, 'M', 556), +(174464, 'Jaheim', 2001, 'M', 554), +(174465, 'Charlie', 2001, 'M', 553), +(174466, 'Sam', 2001, 'M', 553), +(174467, 'Jaron', 2001, 'M', 551), +(174468, 'Dane', 2001, 'M', 548), +(174469, 'Damion', 2001, 'M', 547), +(174470, 'Holden', 2001, 'M', 547), +(174471, 'Francis', 2001, 'M', 544), +(174472, 'Nathanael', 2001, 'M', 542), +(174473, 'Brayan', 2001, 'M', 541), +(174474, 'Mohamed', 2001, 'M', 540), +(174475, 'Elliot', 2001, 'M', 539), +(174476, 'Reid', 2001, 'M', 537), +(174477, 'Moses', 2001, 'M', 535), +(174478, 'Franklin', 2001, 'M', 533), +(174479, 'Marquis', 2001, 'M', 531), +(174480, 'Terrell', 2001, 'M', 531), +(174481, 'Declan', 2001, 'M', 530), +(174482, 'Todd', 2001, 'M', 530), +(174483, 'Alvin', 2001, 'M', 528), +(174484, 'Harley', 2001, 'M', 527), +(174485, 'Ramiro', 2001, 'M', 527), +(174486, 'Melvin', 2001, 'M', 526), +(174487, 'Tyrone', 2001, 'M', 525), +(174488, 'Cedric', 2001, 'M', 520), +(174489, 'Coby', 2001, 'M', 516), +(174490, 'Jaquan', 2001, 'M', 514), +(174491, 'Lee', 2001, 'M', 513), +(174492, 'Kenny', 2001, 'M', 511), +(174493, 'Jadon', 2001, 'M', 509), +(174494, 'Uriel', 2001, 'M', 509), +(174495, 'Randall', 2001, 'M', 508), +(174496, 'Triston', 2001, 'M', 508), +(174497, 'Bennett', 2001, 'M', 503), +(174498, 'Ross', 2001, 'M', 503), +(174499, 'Devan', 2001, 'M', 501), +(174500, 'Reed', 2001, 'M', 501), +(174501, 'Duncan', 2001, 'M', 500), +(174502, 'Jaiden', 2001, 'M', 494), +(174503, 'Rodolfo', 2001, 'M', 494), +(174504, 'Adan', 2001, 'M', 493), +(174505, 'Maximilian', 2001, 'M', 493), +(174506, 'Tomas', 2001, 'M', 492), +(174507, 'Byron', 2001, 'M', 491), +(174508, 'Mohammed', 2001, 'M', 491), +(174509, 'Osvaldo', 2001, 'M', 491), +(174510, 'Allan', 2001, 'M', 489), +(174511, 'Gilberto', 2001, 'M', 479), +(174512, 'Jaylin', 2001, 'M', 472), +(174513, 'Kendrick', 2001, 'M', 471), +(174514, 'Sawyer', 2001, 'M', 471), +(174515, 'Jerome', 2001, 'M', 470), +(174516, 'Mohammad', 2001, 'M', 470), +(174517, 'Garret', 2001, 'M', 468), +(174518, 'Leon', 2001, 'M', 466), +(174519, 'Rogelio', 2001, 'M', 466), +(174520, 'Ahmed', 2001, 'M', 465), +(174521, 'Deven', 2001, 'M', 465), +(174522, 'Wade', 2001, 'M', 464), +(174523, 'Jamie', 2001, 'M', 462), +(174524, 'Wilson', 2001, 'M', 462), +(174525, 'Ronnie', 2001, 'M', 460), +(174526, 'Rylan', 2001, 'M', 458), +(174527, 'Davion', 2001, 'M', 455), +(174528, 'Harry', 2001, 'M', 454), +(174529, 'Marlon', 2001, 'M', 454), +(174530, 'Beau', 2001, 'M', 453), +(174531, 'Darrell', 2001, 'M', 453), +(174532, 'Dayton', 2001, 'M', 452), +(174533, 'Joaquin', 2001, 'M', 452), +(174534, 'Ayden', 2001, 'M', 451), +(174535, 'Rolando', 2001, 'M', 446), +(174536, 'Romeo', 2001, 'M', 444), +(174537, 'Deshawn', 2001, 'M', 443), +(174538, 'Neil', 2001, 'M', 443), +(174539, 'Stanley', 2001, 'M', 443), +(174540, 'Tristin', 2001, 'M', 443), +(174541, 'Warren', 2001, 'M', 440), +(174542, 'Jonas', 2001, 'M', 439), +(174543, 'Hudson', 2001, 'M', 438), +(174544, 'Isaias', 2001, 'M', 435), +(174545, 'Joey', 2001, 'M', 435), +(174546, 'Leonard', 2001, 'M', 434), +(174547, 'Terrence', 2001, 'M', 431), +(174548, 'Alfonso', 2001, 'M', 428), +(174549, 'Cyrus', 2001, 'M', 428), +(174550, 'Jordon', 2001, 'M', 427), +(174551, 'Addison', 2001, 'M', 424), +(174552, 'Tyree', 2001, 'M', 422), +(174553, 'Eugene', 2001, 'M', 421), +(174554, 'Wayne', 2001, 'M', 421), +(174555, 'Emiliano', 2001, 'M', 417), +(174556, 'Asher', 2001, 'M', 414), +(174557, 'Tyrell', 2001, 'M', 414), +(174558, 'Toby', 2001, 'M', 413), +(174559, 'Davon', 2001, 'M', 411), +(174560, 'Kieran', 2001, 'M', 410), +(174561, 'Leonel', 2001, 'M', 410), +(174562, 'Rudy', 2001, 'M', 409), +(174563, 'Gilbert', 2001, 'M', 407), +(174564, 'Koby', 2001, 'M', 406), +(174565, 'Ulises', 2001, 'M', 405), +(174566, 'Ariel', 2001, 'M', 404), +(174567, 'Orion', 2001, 'M', 403), +(174568, 'Colten', 2001, 'M', 399), +(174569, 'Pierce', 2001, 'M', 399), +(174570, 'Cayden', 2001, 'M', 398), +(174571, 'Alvaro', 2001, 'M', 395), +(174572, 'Sterling', 2001, 'M', 394), +(174573, 'Johan', 2001, 'M', 393), +(174574, 'Elliott', 2001, 'M', 391), +(174575, 'Ben', 2001, 'M', 390), +(174576, 'Jasper', 2001, 'M', 390), +(174577, 'Will', 2001, 'M', 388), +(174578, 'Vicente', 2001, 'M', 387), +(174579, 'Sage', 2001, 'M', 383), +(174580, 'Adolfo', 2001, 'M', 380), +(174581, 'Efrain', 2001, 'M', 378), +(174582, 'Harold', 2001, 'M', 377), +(174583, 'Keenan', 2001, 'M', 377), +(174584, 'Jaydon', 2001, 'M', 376), +(174585, 'Alonzo', 2001, 'M', 375), +(174586, 'Jarred', 2001, 'M', 375), +(174587, 'Silas', 2001, 'M', 375), +(174588, 'Agustin', 2001, 'M', 372), +(174589, 'Coleman', 2001, 'M', 369), +(174590, 'Devonte', 2001, 'M', 369), +(174591, 'Trace', 2001, 'M', 369), +(174592, 'Humberto', 2001, 'M', 368), +(174593, 'Keshawn', 2001, 'M', 368), +(174594, 'Dominique', 2001, 'M', 367), +(174595, 'Donte', 2001, 'M', 366), +(174596, 'Shamar', 2001, 'M', 363), +(174597, 'Tobias', 2001, 'M', 363), +(174598, 'Brennen', 2001, 'M', 362), +(174599, 'Brice', 2001, 'M', 361), +(174600, 'Ray', 2001, 'M', 360), +(174601, 'Ezequiel', 2001, 'M', 359), +(174602, 'Gunnar', 2001, 'M', 357), +(174603, 'Jamar', 2001, 'M', 357), +(174604, 'Ernest', 2001, 'M', 356), +(174605, 'Easton', 2001, 'M', 355), +(174606, 'Kevon', 2001, 'M', 353), +(174607, 'Karl', 2001, 'M', 350), +(174608, 'Jarrod', 2001, 'M', 349), +(174609, 'Darryl', 2001, 'M', 346), +(174610, 'Alfred', 2001, 'M', 345), +(174611, 'Quintin', 2001, 'M', 345), +(174612, 'Jude', 2001, 'M', 342), +(174613, 'Luca', 2001, 'M', 342), +(174614, 'Antoine', 2001, 'M', 339), +(174615, 'Dwayne', 2001, 'M', 339), +(174616, 'Muhammad', 2001, 'M', 339), +(174617, 'Titus', 2001, 'M', 339), +(174618, 'Braydon', 2001, 'M', 338), +(174619, 'Lewis', 2001, 'M', 337), +(174620, 'Cullen', 2001, 'M', 336), +(174621, 'Shemar', 2001, 'M', 335), +(174622, 'Izaiah', 2001, 'M', 334), +(174623, 'Cruz', 2001, 'M', 333), +(174624, 'Dashawn', 2001, 'M', 333), +(174625, 'Darien', 2001, 'M', 330), +(174626, 'Everett', 2001, 'M', 330), +(174627, 'Sheldon', 2001, 'M', 329), +(174628, 'Daquan', 2001, 'M', 326), +(174629, 'Devyn', 2001, 'M', 326), +(174630, 'Nasir', 2001, 'M', 326), +(174631, 'Jamison', 2001, 'M', 324), +(174632, 'Kareem', 2001, 'M', 324), +(174633, 'Freddy', 2001, 'M', 323), +(174634, 'River', 2001, 'M', 323), +(174635, 'Aden', 2001, 'M', 322), +(174636, 'Kane', 2001, 'M', 322), +(174637, 'Ralph', 2001, 'M', 320), +(174638, 'Dandre', 2001, 'M', 317), +(174639, 'Jamari', 2001, 'M', 315), +(174640, 'Kolton', 2001, 'M', 315), +(174641, 'Mike', 2001, 'M', 315), +(174642, 'Sidney', 2001, 'M', 315), +(174643, 'Lincoln', 2001, 'M', 309), +(174644, 'Jayce', 2001, 'M', 308), +(174645, 'Jairo', 2001, 'M', 307), +(174646, 'Keyshawn', 2001, 'M', 307), +(174647, 'Jordy', 2001, 'M', 306), +(174648, 'Ignacio', 2001, 'M', 305), +(174649, 'Jameson', 2001, 'M', 305), +(174650, 'Nigel', 2001, 'M', 305), +(174651, 'Rohan', 2001, 'M', 304), +(174652, 'Stefan', 2001, 'M', 304), +(174653, 'Mekhi', 2001, 'M', 303), +(174654, 'Glenn', 2001, 'M', 302), +(174655, 'Phoenix', 2001, 'M', 302), +(174656, 'Clarence', 2001, 'M', 301), +(174657, 'Rashad', 2001, 'M', 301), +(174658, 'Elisha', 2001, 'M', 300), +(174659, 'Amari', 2001, 'M', 299), +(174660, 'Rigoberto', 2001, 'M', 297), +(174661, 'Marquise', 2001, 'M', 296), +(174662, 'Aldo', 2001, 'M', 295), +(174663, 'Zechariah', 2001, 'M', 295), +(174664, 'Aron', 2001, 'M', 294), +(174665, 'Jaylan', 2001, 'M', 292), +(174666, 'Julien', 2001, 'M', 292), +(174667, 'Nathanial', 2001, 'M', 292), +(174668, 'Talon', 2001, 'M', 292), +(174669, 'Armani', 2001, 'M', 291), +(174670, 'Jett', 2001, 'M', 291), +(174671, 'August', 2001, 'M', 290), +(174672, 'Cristopher', 2001, 'M', 289), +(174673, 'Howard', 2001, 'M', 289), +(174674, 'Kole', 2001, 'M', 289), +(174675, 'Lamar', 2001, 'M', 288), +(174676, 'Darion', 2001, 'M', 287), +(174677, 'Derick', 2001, 'M', 287), +(174678, 'Roderick', 2001, 'M', 287), +(174679, 'Asa', 2001, 'M', 286), +(174680, 'Jean', 2001, 'M', 286), +(174681, 'Kaiden', 2001, 'M', 285), +(174682, 'Keon', 2001, 'M', 283), +(174683, 'Irvin', 2001, 'M', 282), +(174684, 'Jaren', 2001, 'M', 281), +(174685, 'Elvis', 2001, 'M', 278), +(174686, 'Kayden', 2001, 'M', 278), +(174687, 'Travon', 2001, 'M', 278), +(174688, 'Jagger', 2001, 'M', 277), +(174689, 'Markus', 2001, 'M', 277), +(174690, 'Moshe', 2001, 'M', 276), +(174691, 'German', 2001, 'M', 274), +(174692, 'Zander', 2001, 'M', 274), +(174693, 'Kurt', 2001, 'M', 273), +(174694, 'Reynaldo', 2001, 'M', 273), +(174695, 'Greyson', 2001, 'M', 272), +(174696, 'Gunner', 2001, 'M', 272), +(174697, 'Elian', 2001, 'M', 271), +(174698, 'Jovan', 2001, 'M', 270), +(174699, 'Tylor', 2001, 'M', 270), +(174700, 'Dangelo', 2001, 'M', 269), +(174701, 'Geoffrey', 2001, 'M', 269), +(174702, 'Junior', 2001, 'M', 269), +(174703, 'Keanu', 2001, 'M', 269), +(174704, 'Baby', 2001, 'M', 268), +(174705, 'Ibrahim', 2001, 'M', 268), +(174706, 'Donavan', 2001, 'M', 267), +(174707, 'Landen', 2001, 'M', 267), +(174708, 'Raphael', 2001, 'M', 266), +(174709, 'Conrad', 2001, 'M', 265), +(174710, 'Darnell', 2001, 'M', 264), +(174711, 'Brad', 2001, 'M', 263), +(174712, 'Deonte', 2001, 'M', 263), +(174713, 'Milton', 2001, 'M', 263), +(174714, 'Nehemiah', 2001, 'M', 263), +(174715, 'Salvatore', 2001, 'M', 263), +(174716, 'Bernard', 2001, 'M', 261), +(174717, 'Justus', 2001, 'M', 261), +(174718, 'Tariq', 2001, 'M', 261), +(174719, 'Davin', 2001, 'M', 260), +(174720, 'Dillan', 2001, 'M', 260), +(174721, 'Stone', 2001, 'M', 260), +(174722, 'Anton', 2001, 'M', 258), +(174723, 'Jaxson', 2001, 'M', 258), +(174724, 'Savion', 2001, 'M', 258), +(174725, 'Clinton', 2001, 'M', 257), +(174726, 'Korey', 2001, 'M', 256), +(174727, 'Emmett', 2001, 'M', 255), +(174728, 'Gideon', 2001, 'M', 255), +(174729, 'Keagan', 2001, 'M', 255), +(174730, 'Garrison', 2001, 'M', 254), +(174731, 'Karson', 2001, 'M', 254), +(174732, 'Demarcus', 2001, 'M', 253), +(174733, 'Kadin', 2001, 'M', 252), +(174734, 'Chaz', 2001, 'M', 250), +(174735, 'Cristobal', 2001, 'M', 249), +(174736, 'Gordon', 2001, 'M', 249), +(174737, 'Grady', 2001, 'M', 249), +(174738, 'Ari', 2001, 'M', 248), +(174739, 'Misael', 2001, 'M', 247), +(174740, 'Bret', 2001, 'M', 246), +(174741, 'Hamza', 2001, 'M', 246), +(174742, 'Josh', 2001, 'M', 246), +(174743, 'Khalid', 2001, 'M', 246), +(174744, 'Santos', 2001, 'M', 246), +(174745, 'Semaj', 2001, 'M', 246), +(174746, 'Cordell', 2001, 'M', 244), +(174747, 'Tre', 2001, 'M', 244), +(174748, 'Alonso', 2001, 'M', 243), +(174749, 'Dominik', 2001, 'M', 242), +(174750, 'Kellen', 2001, 'M', 242), +(174751, 'Roland', 2001, 'M', 242), +(174752, 'Stuart', 2001, 'M', 242), +(174753, 'Destin', 2001, 'M', 240), +(174754, 'Rhett', 2001, 'M', 239), +(174755, 'Brycen', 2001, 'M', 238), +(174756, 'Clifford', 2001, 'M', 238), +(174757, 'Judah', 2001, 'M', 238), +(174758, 'Rocco', 2001, 'M', 238), +(174759, 'Stephan', 2001, 'M', 238), +(174760, 'Brooks', 2001, 'M', 237), +(174761, 'Jacoby', 2001, 'M', 237), +(174762, 'Jair', 2001, 'M', 237), +(174763, 'Perry', 2001, 'M', 237), +(174764, 'Quinten', 2001, 'M', 237), +(174765, 'Jovani', 2001, 'M', 236), +(174766, 'Maximiliano', 2001, 'M', 236), +(174767, 'Rory', 2001, 'M', 236), +(174768, 'Reagan', 2001, 'M', 235), +(174769, 'Deon', 2001, 'M', 234), +(174770, 'Guadalupe', 2001, 'M', 234), +(174771, 'Kamron', 2001, 'M', 234), +(174772, 'Sammy', 2001, 'M', 234), +(174773, 'Draven', 2001, 'M', 233), +(174774, 'Dimitri', 2001, 'M', 232), +(174775, 'Estevan', 2001, 'M', 231), +(174776, 'Kurtis', 2001, 'M', 231), +(174777, 'Earl', 2001, 'M', 230), +(174778, 'Anderson', 2001, 'M', 229), +(174779, 'Dexter', 2001, 'M', 229), +(174780, 'Maverick', 2001, 'M', 229), +(174781, 'Elmer', 2001, 'M', 228), +(174782, 'Xander', 2001, 'M', 228), +(174783, 'Dallin', 2001, 'M', 227), +(174784, 'Darrius', 2001, 'M', 227), +(174785, 'Antony', 2001, 'M', 226), +(174786, 'Ulysses', 2001, 'M', 226), +(174787, 'Zakary', 2001, 'M', 226), +(174788, 'Jefferson', 2001, 'M', 225), +(174789, 'Norman', 2001, 'M', 225), +(174790, 'Octavio', 2001, 'M', 225), +(174791, 'Porter', 2001, 'M', 225), +(174792, 'Alexandro', 2001, 'M', 224), +(174793, 'Blaze', 2001, 'M', 224), +(174794, 'Emerson', 2001, 'M', 224), +(174795, 'Frankie', 2001, 'M', 224), +(174796, 'Fredrick', 2001, 'M', 224), +(174797, 'Jevon', 2001, 'M', 224), +(174798, 'Jorden', 2001, 'M', 224), +(174799, 'Antwan', 2001, 'M', 223), +(174800, 'Dion', 2001, 'M', 221), +(174801, 'Latrell', 2001, 'M', 220), +(174802, 'Darin', 2001, 'M', 219), +(174803, 'Arnold', 2001, 'M', 218), +(174804, 'Hassan', 2001, 'M', 218), +(174805, 'Nestor', 2001, 'M', 218), +(174806, 'Camren', 2001, 'M', 217), +(174807, 'Sincere', 2001, 'M', 217), +(174808, 'Heath', 2001, 'M', 216), +(174809, 'Abdullah', 2001, 'M', 215), +(174810, 'Giancarlo', 2001, 'M', 215), +(174811, 'Jabari', 2001, 'M', 215), +(174812, 'Abram', 2001, 'M', 214), +(174813, 'Austen', 2001, 'M', 214), +(174814, 'Gianni', 2001, 'M', 214), +(174815, 'Jan', 2001, 'M', 214), +(174816, 'Leroy', 2001, 'M', 214), +(174817, 'Marcel', 2001, 'M', 214), +(174818, 'Thaddeus', 2001, 'M', 214), +(174819, 'Tristian', 2001, 'M', 214), +(174820, 'Gonzalo', 2001, 'M', 213), +(174821, 'Winston', 2001, 'M', 213), +(174822, 'Brenton', 2001, 'M', 211), +(174823, 'Josef', 2001, 'M', 211), +(174824, 'Lamont', 2001, 'M', 211), +(174825, 'Barry', 2001, 'M', 210), +(174826, 'Isaak', 2001, 'M', 210), +(174827, 'Finn', 2001, 'M', 209), +(174828, 'Guy', 2001, 'M', 209), +(174829, 'Maximillian', 2001, 'M', 209), +(174830, 'Reuben', 2001, 'M', 209), +(174831, 'Shannon', 2001, 'M', 209), +(174832, 'Blaise', 2001, 'M', 208), +(174833, 'Carlton', 2001, 'M', 208), +(174834, 'Shayne', 2001, 'M', 208), +(174835, 'Dylon', 2001, 'M', 207), +(174836, 'Forrest', 2001, 'M', 207), +(174837, 'Keyon', 2001, 'M', 207), +(174838, 'Kory', 2001, 'M', 207), +(174839, 'Isai', 2001, 'M', 206), +(174840, 'Cortez', 2001, 'M', 205), +(174841, 'Jarvis', 2001, 'M', 205), +(174842, 'Luciano', 2001, 'M', 205), +(174843, 'Sabastian', 2001, 'M', 205), +(174844, 'Reilly', 2001, 'M', 202), +(174845, 'Clifton', 2001, 'M', 201), +(174846, 'Giovanny', 2001, 'M', 201), +(174847, 'Samir', 2001, 'M', 201), +(174848, 'Clark', 2001, 'M', 200), +(174849, 'Jaeden', 2001, 'M', 200), +(174850, 'Heriberto', 2001, 'M', 199), +(174851, 'Layne', 2001, 'M', 199), +(174852, 'Daryl', 2001, 'M', 198), +(174853, 'Marcelo', 2001, 'M', 198), +(174854, 'Nick', 2001, 'M', 198), +(174855, 'Rowan', 2001, 'M', 197), +(174856, 'Dario', 2001, 'M', 196), +(174857, 'Denzel', 2001, 'M', 196), +(174858, 'Nathen', 2001, 'M', 196), +(174859, 'Fidel', 2001, 'M', 195), +(174860, 'Gaven', 2001, 'M', 195), +(174861, 'Houston', 2001, 'M', 195), +(174862, 'Kelton', 2001, 'M', 195), +(174863, 'Sonny', 2001, 'M', 195), +(174864, 'Cale', 2001, 'M', 194), +(174865, 'Glen', 2001, 'M', 194), +(174866, 'Turner', 2001, 'M', 194), +(174867, 'Efren', 2001, 'M', 193), +(174868, 'Nico', 2001, 'M', 193), +(174869, 'Nikhil', 2001, 'M', 193), +(174870, 'Braiden', 2001, 'M', 192), +(174871, 'Remington', 2001, 'M', 192), +(174872, 'Jamel', 2001, 'M', 191), +(174873, 'Oswaldo', 2001, 'M', 191), +(174874, 'Colt', 2001, 'M', 190), +(174875, 'Deshaun', 2001, 'M', 190), +(174876, 'Bernardo', 2001, 'M', 189), +(174877, 'Jovany', 2001, 'M', 189), +(174878, 'Stephon', 2001, 'M', 189), +(174879, 'Devante', 2001, 'M', 188), +(174880, 'Eliseo', 2001, 'M', 188), +(174881, 'Keven', 2001, 'M', 188), +(174882, 'Raymundo', 2001, 'M', 188), +(174883, 'Seamus', 2001, 'M', 188), +(174884, 'Gino', 2001, 'M', 187), +(174885, 'Hugh', 2001, 'M', 187), +(174886, 'Justyn', 2001, 'M', 187), +(174887, 'Rahul', 2001, 'M', 187), +(174888, 'Ronan', 2001, 'M', 187), +(174889, 'Shea', 2001, 'M', 187), +(174890, 'Dwight', 2001, 'M', 186), +(174891, 'Jamil', 2001, 'M', 186), +(174892, 'Joan', 2001, 'M', 186), +(174893, 'Marquez', 2001, 'M', 186), +(174894, 'Austyn', 2001, 'M', 185), +(174895, 'Cornelius', 2001, 'M', 185), +(174896, 'Kennedy', 2001, 'M', 185), +(174897, 'London', 2001, 'M', 185), +(174898, 'Garett', 2001, 'M', 184), +(174899, 'Don', 2001, 'M', 183), +(174900, 'Jalon', 2001, 'M', 183), +(174901, 'Fred', 2001, 'M', 182), +(174902, 'Rashawn', 2001, 'M', 181), +(174903, 'Darwin', 2001, 'M', 180), +(174904, 'Mikel', 2001, 'M', 180), +(174905, 'Adonis', 2001, 'M', 179), +(174906, 'Braedon', 2001, 'M', 179), +(174907, 'Deangelo', 2001, 'M', 179), +(174908, 'Lonnie', 2001, 'M', 179), +(174909, 'Vernon', 2001, 'M', 179), +(174910, 'Augustus', 2001, 'M', 178), +(174911, 'Barrett', 2001, 'M', 178), +(174912, 'Deondre', 2001, 'M', 178), +(174913, 'Jackie', 2001, 'M', 178), +(174914, 'Kirk', 2001, 'M', 178), +(174915, 'Kylan', 2001, 'M', 178), +(174916, 'Tyshawn', 2001, 'M', 178), +(174917, 'Haden', 2001, 'M', 177), +(174918, 'Jadyn', 2001, 'M', 177), +(174919, 'Kent', 2001, 'M', 177), +(174920, 'Raven', 2001, 'M', 177), +(174921, 'Immanuel', 2001, 'M', 176), +(174922, 'Xzavier', 2001, 'M', 176), +(174923, 'Darrin', 2001, 'M', 175), +(174924, 'Duane', 2001, 'M', 175), +(174925, 'Korbin', 2001, 'M', 175), +(174926, 'Matteo', 2001, 'M', 175), +(174927, 'Trever', 2001, 'M', 175), +(174928, 'Courtney', 2001, 'M', 174), +(174929, 'Kelly', 2001, 'M', 174), +(174930, 'Lloyd', 2001, 'M', 174), +(174931, 'Ryder', 2001, 'M', 174), +(174932, 'Tyron', 2001, 'M', 174), +(174933, 'Chaim', 2001, 'M', 173), +(174934, 'Alijah', 2001, 'M', 172), +(174935, 'Jakobe', 2001, 'M', 172), +(174936, 'Samson', 2001, 'M', 172), +(174937, 'Alexzander', 2001, 'M', 171), +(174938, 'Jeff', 2001, 'M', 171), +(174939, 'Kasey', 2001, 'M', 171), +(174940, 'Kian', 2001, 'M', 171), +(174941, 'Mackenzie', 2001, 'M', 171), +(174942, 'Neal', 2001, 'M', 171), +(174943, 'Ryley', 2001, 'M', 171), +(174944, 'Mitchel', 2001, 'M', 170), +(174945, 'Nash', 2001, 'M', 170), +(174946, 'Vance', 2001, 'M', 170), +(174947, 'Imanol', 2001, 'M', 169), +(174948, 'Jordyn', 2001, 'M', 169), +(174949, 'Tyquan', 2001, 'M', 169), +(174950, 'Zain', 2001, 'M', 168), +(174951, 'Brodie', 2001, 'M', 167), +(174952, 'Ellis', 2001, 'M', 167), +(174953, 'Freddie', 2001, 'M', 167), +(174954, 'Kristofer', 2001, 'M', 167), +(174955, 'Layton', 2001, 'M', 167), +(174956, 'Mariano', 2001, 'M', 167), +(174957, 'Maxim', 2001, 'M', 167), +(174958, 'Rickey', 2001, 'M', 167), +(174959, 'Ronaldo', 2001, 'M', 167), +(174960, 'Syed', 2001, 'M', 167), +(174961, 'Adrien', 2001, 'M', 166), +(174962, 'Domenic', 2001, 'M', 166), +(174963, 'Keshaun', 2001, 'M', 166), +(174964, 'Niko', 2001, 'M', 166), +(174965, 'Omari', 2001, 'M', 166), +(174966, 'Yosef', 2001, 'M', 166), +(174967, 'Aubrey', 2001, 'M', 165), +(174968, 'Benny', 2001, 'M', 165), +(174969, 'Jovanny', 2001, 'M', 165), +(174970, 'Andreas', 2001, 'M', 164), +(174971, 'Denver', 2001, 'M', 164), +(174972, 'Markel', 2001, 'M', 164), +(174973, 'Prince', 2001, 'M', 164), +(174974, 'Terence', 2001, 'M', 164), +(174975, 'Gaige', 2001, 'M', 163), +(174976, 'Brant', 2001, 'M', 162), +(174977, 'Davonte', 2001, 'M', 162), +(174978, 'Paxton', 2001, 'M', 162), +(174979, 'Trevion', 2001, 'M', 162), +(174980, 'Yusuf', 2001, 'M', 162), +(174981, 'Gavyn', 2001, 'M', 161), +(174982, 'Jamarcus', 2001, 'M', 161), +(174983, 'Vaughn', 2001, 'M', 161), +(174984, 'Bo', 2001, 'M', 160), +(174985, 'Bronson', 2001, 'M', 160), +(174986, 'Carlo', 2001, 'M', 160), +(174987, 'Jade', 2001, 'M', 160), +(174988, 'Pranav', 2001, 'M', 160), +(174989, 'Treyvon', 2001, 'M', 160), +(174990, 'Yehuda', 2001, 'M', 160), +(174991, 'Alden', 2001, 'M', 159), +(174992, 'Alessandro', 2001, 'M', 159), +(174993, 'Bruno', 2001, 'M', 159), +(174994, 'Daunte', 2001, 'M', 159), +(174995, 'Irving', 2001, 'M', 159), +(174996, 'Johnnie', 2001, 'M', 159), +(174997, 'Pierre', 2001, 'M', 159), +(174998, 'Rocky', 2001, 'M', 159), +(174999, 'Amos', 2001, 'M', 158), +(175000, 'Brennon', 2001, 'M', 158), +(175001, 'Hernan', 2001, 'M', 158), +(175002, 'Kale', 2001, 'M', 158), +(175003, 'Kavon', 2001, 'M', 158), +(175004, 'Kyree', 2001, 'M', 158), +(175005, 'Caiden', 2001, 'M', 157), +(175006, 'Javion', 2001, 'M', 157), +(175007, 'Arjun', 2001, 'M', 156), +(175008, 'Darrion', 2001, 'M', 156), +(175009, 'Dyllan', 2001, 'M', 156), +(175010, 'Lawson', 2001, 'M', 156), +(175011, 'Milo', 2001, 'M', 156), +(175012, 'Brandan', 2001, 'M', 155), +(175013, 'Donnell', 2001, 'M', 155), +(175014, 'Jahiem', 2001, 'M', 155), +(175015, 'Menachem', 2001, 'M', 155), +(175016, 'Rey', 2001, 'M', 155), +(175017, 'Simeon', 2001, 'M', 155), +(175018, 'Zavier', 2001, 'M', 155), +(175019, 'Jimmie', 2001, 'M', 154), +(175020, 'Lionel', 2001, 'M', 154), +(175021, 'Mustafa', 2001, 'M', 154), +(175022, 'Rylee', 2001, 'M', 154), +(175023, 'Aric', 2001, 'M', 153), +(175024, 'Bridger', 2001, 'M', 153), +(175025, 'Dewayne', 2001, 'M', 153), +(175026, 'Valentin', 2001, 'M', 153), +(175027, 'Benito', 2001, 'M', 152), +(175028, 'Giovani', 2001, 'M', 152), +(175029, 'Jovanni', 2001, 'M', 152), +(175030, 'Kenyon', 2001, 'M', 152), +(175031, 'Branson', 2001, 'M', 151), +(175032, 'Isidro', 2001, 'M', 151), +(175033, 'Tevin', 2001, 'M', 151), +(175034, 'Myron', 2001, 'M', 150), +(175035, 'Cason', 2001, 'M', 149), +(175036, 'Clint', 2001, 'M', 149), +(175037, 'Alek', 2001, 'M', 148), +(175038, 'Herbert', 2001, 'M', 148), +(175039, 'Jalin', 2001, 'M', 148), +(175040, 'Trystan', 2001, 'M', 148), +(175041, 'Donavon', 2001, 'M', 147), +(175042, 'Luc', 2001, 'M', 147), +(175043, 'Santino', 2001, 'M', 147), +(175044, 'Gerard', 2001, 'M', 146), +(175045, 'Markell', 2001, 'M', 146), +(175046, 'Trenten', 2001, 'M', 146), +(175047, 'Ean', 2001, 'M', 145), +(175048, 'Ladarius', 2001, 'M', 145), +(175049, 'Rhys', 2001, 'M', 145), +(175050, 'Donnie', 2001, 'M', 144), +(175051, 'Rick', 2001, 'M', 144), +(175052, 'Sahil', 2001, 'M', 144), +(175053, 'Sebastien', 2001, 'M', 144), +(175054, 'Ajay', 2001, 'M', 143), +(175055, 'Arron', 2001, 'M', 143), +(175056, 'Brandyn', 2001, 'M', 143), +(175057, 'Dan', 2001, 'M', 143), +(175058, 'Montana', 2001, 'M', 143), +(175059, 'Paris', 2001, 'M', 143), +(175060, 'Raheem', 2001, 'M', 143), +(175061, 'Rasheed', 2001, 'M', 143), +(175062, 'Campbell', 2001, 'M', 142), +(175063, 'Ishmael', 2001, 'M', 142), +(175064, 'Kerry', 2001, 'M', 142), +(175065, 'Marques', 2001, 'M', 142), +(175066, 'Aditya', 2001, 'M', 141), +(175067, 'Dontae', 2001, 'M', 141), +(175068, 'Ethen', 2001, 'M', 141), +(175069, 'Genaro', 2001, 'M', 141), +(175070, 'Tracy', 2001, 'M', 141), +(175071, 'Jerimiah', 2001, 'M', 140), +(175072, 'Lazaro', 2001, 'M', 140), +(175073, 'Treyton', 2001, 'M', 140), +(175074, 'Zaire', 2001, 'M', 140), +(175075, 'Bradly', 2001, 'M', 139), +(175076, 'Broderick', 2001, 'M', 139), +(175077, 'Francesco', 2001, 'M', 139), +(175078, 'Coleton', 2001, 'M', 138), +(175079, 'Abdul', 2001, 'M', 137), +(175080, 'Adriel', 2001, 'M', 137), +(175081, 'Cain', 2001, 'M', 137), +(175082, 'Hezekiah', 2001, 'M', 137), +(175083, 'Jonatan', 2001, 'M', 137), +(175084, 'Lester', 2001, 'M', 137), +(175085, 'Babyboy', 2001, 'M', 136), +(175086, 'Bilal', 2001, 'M', 136), +(175087, 'Dajuan', 2001, 'M', 136), +(175088, 'Dillion', 2001, 'M', 136), +(175089, 'Elvin', 2001, 'M', 136), +(175090, 'Gregorio', 2001, 'M', 136), +(175091, 'Jordi', 2001, 'M', 136), +(175092, 'Matias', 2001, 'M', 136), +(175093, 'Nevin', 2001, 'M', 136), +(175094, 'Caelan', 2001, 'M', 135), +(175095, 'Eliezer', 2001, 'M', 135), +(175096, 'Harris', 2001, 'M', 135), +(175097, 'Jayvon', 2001, 'M', 135), +(175098, 'Juwan', 2001, 'M', 135), +(175099, 'Demarco', 2001, 'M', 134), +(175100, 'Deontae', 2001, 'M', 134), +(175101, 'Javonte', 2001, 'M', 134), +(175102, 'Joseluis', 2001, 'M', 134), +(175103, 'Keandre', 2001, 'M', 134), +(175104, 'Arman', 2001, 'M', 133), +(175105, 'Camryn', 2001, 'M', 133), +(175106, 'Kalen', 2001, 'M', 133), +(175107, 'Tyrek', 2001, 'M', 133), +(175108, 'Vincenzo', 2001, 'M', 133), +(175109, 'Augustine', 2001, 'M', 132), +(175110, 'Braulio', 2001, 'M', 132), +(175111, 'Jaquez', 2001, 'M', 132), +(175112, 'Robin', 2001, 'M', 132), +(175113, 'Zack', 2001, 'M', 132), +(175114, 'Chancellor', 2001, 'M', 131), +(175115, 'Fletcher', 2001, 'M', 131), +(175116, 'Jacques', 2001, 'M', 131), +(175117, 'Jaheem', 2001, 'M', 131), +(175118, 'Jamir', 2001, 'M', 131), +(175119, 'Tahj', 2001, 'M', 131), +(175120, 'Coy', 2001, 'M', 130), +(175121, 'Jacquez', 2001, 'M', 130), +(175122, 'Juancarlos', 2001, 'M', 130), +(175123, 'Royce', 2001, 'M', 130), +(175124, 'Truman', 2001, 'M', 130), +(175125, 'Cristofer', 2001, 'M', 129), +(175126, 'Eddy', 2001, 'M', 129), +(175127, 'Gannon', 2001, 'M', 129), +(175128, 'Gene', 2001, 'M', 129), +(175129, 'Harvey', 2001, 'M', 129), +(175130, 'Kamari', 2001, 'M', 129), +(175131, 'Kamren', 2001, 'M', 129), +(175132, 'Mordechai', 2001, 'M', 129), +(175133, 'Trayvon', 2001, 'M', 129), +(175134, 'Yousef', 2001, 'M', 129), +(175135, 'Dequan', 2001, 'M', 128), +(175136, 'Ervin', 2001, 'M', 128), +(175137, 'Javen', 2001, 'M', 128), +(175138, 'Kahlil', 2001, 'M', 128), +(175139, 'Killian', 2001, 'M', 128), +(175140, 'Taj', 2001, 'M', 128), +(175141, 'Hans', 2001, 'M', 127), +(175142, 'Jaedon', 2001, 'M', 127), +(175143, 'Zayne', 2001, 'M', 127), +(175144, 'Cannon', 2001, 'M', 126), +(175145, 'Deacon', 2001, 'M', 126), +(175146, 'Jajuan', 2001, 'M', 126), +(175147, 'Konnor', 2001, 'M', 126), +(175148, 'Madison', 2001, 'M', 126), +(175149, 'Sami', 2001, 'M', 126), +(175150, 'Dayne', 2001, 'M', 125), +(175151, 'Jericho', 2001, 'M', 125), +(175152, 'Kyron', 2001, 'M', 125), +(175153, 'Leslie', 2001, 'M', 125), +(175154, 'Mohamad', 2001, 'M', 125), +(175155, 'Tavion', 2001, 'M', 125), +(175156, 'Auston', 2001, 'M', 124), +(175157, 'Dejuan', 2001, 'M', 124), +(175158, 'Jelani', 2001, 'M', 124), +(175159, 'Ken', 2001, 'M', 124), +(175160, 'Sullivan', 2001, 'M', 124), +(175161, 'Tylan', 2001, 'M', 124), +(175162, 'Mauro', 2001, 'M', 123), +(175163, 'Sameer', 2001, 'M', 123), +(175164, 'Desean', 2001, 'M', 122), +(175165, 'Jalyn', 2001, 'M', 122), +(175166, 'Jarett', 2001, 'M', 122), +(175167, 'Jaycob', 2001, 'M', 122), +(175168, 'Konner', 2001, 'M', 122), +(175169, 'Trevin', 2001, 'M', 122), +(175170, 'Britton', 2001, 'M', 121), +(175171, 'Carsen', 2001, 'M', 121), +(175172, 'Cecil', 2001, 'M', 121), +(175173, 'Fredy', 2001, 'M', 121), +(175174, 'Jakub', 2001, 'M', 121), +(175175, 'Trae', 2001, 'M', 121), +(175176, 'Floyd', 2001, 'M', 120), +(175177, 'Isac', 2001, 'M', 120), +(175178, 'Jai', 2001, 'M', 120), +(175179, 'Jedidiah', 2001, 'M', 120), +(175180, 'Jeramiah', 2001, 'M', 120), +(175181, 'Leif', 2001, 'M', 120), +(175182, 'Matthias', 2001, 'M', 120), +(175183, 'Osbaldo', 2001, 'M', 120), +(175184, 'Slade', 2001, 'M', 120), +(175185, 'Angus', 2001, 'M', 119), +(175186, 'Coltin', 2001, 'M', 119), +(175187, 'Enzo', 2001, 'M', 119), +(175188, 'Everardo', 2001, 'M', 119), +(175189, 'Geovanni', 2001, 'M', 119), +(175190, 'Herman', 2001, 'M', 119), +(175191, 'Loren', 2001, 'M', 119), +(175192, 'Marcelino', 2001, 'M', 119), +(175193, 'Uriah', 2001, 'M', 119), +(175194, 'Alexandre', 2001, 'M', 118), +(175195, 'Blayne', 2001, 'M', 118), +(175196, 'Devontae', 2001, 'M', 118), +(175197, 'Ryker', 2001, 'M', 118), +(175198, 'Bishop', 2001, 'M', 117), +(175199, 'Clyde', 2001, 'M', 117), +(175200, 'Daron', 2001, 'M', 117), +(175201, 'Darrian', 2001, 'M', 117), +(175202, 'Luka', 2001, 'M', 117), +(175203, 'Marcellus', 2001, 'M', 117), +(175204, 'Ameer', 2001, 'M', 116), +(175205, 'Federico', 2001, 'M', 116), +(175206, 'Franco', 2001, 'M', 116), +(175207, 'Kalvin', 2001, 'M', 116), +(175208, 'Kentrell', 2001, 'M', 116), +(175209, 'Kolten', 2001, 'M', 116), +(175210, 'Rayshawn', 2001, 'M', 116), +(175211, 'Rex', 2001, 'M', 116), +(175212, 'Dameon', 2001, 'M', 115), +(175213, 'Edmund', 2001, 'M', 115), +(175214, 'Hakeem', 2001, 'M', 115), +(175215, 'Hasan', 2001, 'M', 115), +(175216, 'Otis', 2001, 'M', 115), +(175217, 'Vladimir', 2001, 'M', 115), +(175218, 'Aryan', 2001, 'M', 114), +(175219, 'Denis', 2001, 'M', 114), +(175220, 'Jaret', 2001, 'M', 114), +(175221, 'Karim', 2001, 'M', 114), +(175222, 'Kenton', 2001, 'M', 114), +(175223, 'Kyjuan', 2001, 'M', 114), +(175224, 'Lars', 2001, 'M', 114), +(175225, 'Montrell', 2001, 'M', 114), +(175226, 'Presley', 2001, 'M', 114), +(175227, 'Memphis', 2001, 'M', 113), +(175228, 'Teagan', 2001, 'M', 113), +(175229, 'Wilmer', 2001, 'M', 113), +(175230, 'Daveon', 2001, 'M', 112), +(175231, 'Jase', 2001, 'M', 112), +(175232, 'Luiz', 2001, 'M', 112), +(175233, 'Alton', 2001, 'M', 111), +(175234, 'Anish', 2001, 'M', 111), +(175235, 'Eleazar', 2001, 'M', 111), +(175236, 'Gerson', 2001, 'M', 111), +(175237, 'Malakai', 2001, 'M', 111), +(175238, 'Maximo', 2001, 'M', 111), +(175239, 'Neo', 2001, 'M', 111), +(175240, 'Tye', 2001, 'M', 111), +(175241, 'Amar', 2001, 'M', 110), +(175242, 'Ammon', 2001, 'M', 110), +(175243, 'Camilo', 2001, 'M', 110), +(175244, 'Darrien', 2001, 'M', 110), +(175245, 'Leighton', 2001, 'M', 110), +(175246, 'Stewart', 2001, 'M', 110), +(175247, 'Wilfredo', 2001, 'M', 110), +(175248, 'Anders', 2001, 'M', 109), +(175249, 'Infant', 2001, 'M', 109), +(175250, 'Jensen', 2001, 'M', 109), +(175251, 'Mathias', 2001, 'M', 109), +(175252, 'Miguelangel', 2001, 'M', 109), +(175253, 'Rohit', 2001, 'M', 109), +(175254, 'Sydney', 2001, 'M', 109), +(175255, 'Tavon', 2001, 'M', 109), +(175256, 'Aman', 2001, 'M', 108), +(175257, 'Canaan', 2001, 'M', 108), +(175258, 'Dashaun', 2001, 'M', 108), +(175259, 'Daylon', 2001, 'M', 108), +(175260, 'Emil', 2001, 'M', 108), +(175261, 'Erin', 2001, 'M', 108), +(175262, 'Jashawn', 2001, 'M', 108), +(175263, 'Javan', 2001, 'M', 108), +(175264, 'Kelby', 2001, 'M', 108), +(175265, 'Milan', 2001, 'M', 108), +(175266, 'Nikolai', 2001, 'M', 108), +(175267, 'Raekwon', 2001, 'M', 108), +(175268, 'Tyreese', 2001, 'M', 108), +(175269, 'Antwon', 2001, 'M', 107), +(175270, 'Briar', 2001, 'M', 107), +(175271, 'Claudio', 2001, 'M', 107), +(175272, 'Devion', 2001, 'M', 107), +(175273, 'Fisher', 2001, 'M', 107), +(175274, 'Jacobi', 2001, 'M', 107), +(175275, 'Jaleel', 2001, 'M', 107), +(175276, 'Karsten', 2001, 'M', 107), +(175277, 'Leland', 2001, 'M', 107), +(175278, 'Notnamed', 2001, 'M', 107), +(175279, 'Randolph', 2001, 'M', 107), +(175280, 'Timmy', 2001, 'M', 107), +(175281, 'Brannon', 2001, 'M', 106), +(175282, 'Demond', 2001, 'M', 106), +(175283, 'Edison', 2001, 'M', 106), +(175284, 'Enoch', 2001, 'M', 106), +(175285, 'Giuseppe', 2001, 'M', 106), +(175286, 'Horacio', 2001, 'M', 106), +(175287, 'Malique', 2001, 'M', 106), +(175288, 'Marion', 2001, 'M', 106), +(175289, 'Trinity', 2001, 'M', 106), +(175290, 'Arian', 2001, 'M', 105), +(175291, 'Bowen', 2001, 'M', 105), +(175292, 'Brandt', 2001, 'M', 105), +(175293, 'Davian', 2001, 'M', 105), +(175294, 'Eloy', 2001, 'M', 105), +(175295, 'Gabe', 2001, 'M', 105), +(175296, 'Jayquan', 2001, 'M', 105), +(175297, 'Jim', 2001, 'M', 105), +(175298, 'Keion', 2001, 'M', 105), +(175299, 'Waylon', 2001, 'M', 105), +(175300, 'Abner', 2001, 'M', 104), +(175301, 'Deante', 2001, 'M', 104), +(175302, 'Edgardo', 2001, 'M', 104), +(175303, 'Jalil', 2001, 'M', 104), +(175304, 'Johnpaul', 2001, 'M', 104), +(175305, 'Micaiah', 2001, 'M', 104), +(175306, 'Nicklaus', 2001, 'M', 104), +(175307, 'Samual', 2001, 'M', 104), +(175308, 'Santana', 2001, 'M', 104), +(175309, 'Yaakov', 2001, 'M', 104), +(175310, 'Blade', 2001, 'M', 103), +(175311, 'Bradford', 2001, 'M', 103), +(175312, 'Rico', 2001, 'M', 103), +(175313, 'Soren', 2001, 'M', 103), +(175314, 'Chauncey', 2001, 'M', 102), +(175315, 'Chayton', 2001, 'M', 102), +(175316, 'Demetri', 2001, 'M', 102), +(175317, 'Dusty', 2001, 'M', 102), +(175318, 'Eamon', 2001, 'M', 102), +(175319, 'Ever', 2001, 'M', 102), +(175320, 'Gauge', 2001, 'M', 102), +(175321, 'Jarren', 2001, 'M', 102), +(175322, 'Karter', 2001, 'M', 102), +(175323, 'Kolbe', 2001, 'M', 102), +(175324, 'Anson', 2001, 'M', 101), +(175325, 'Benton', 2001, 'M', 101), +(175326, 'Favian', 2001, 'M', 101), +(175327, 'Jamaal', 2001, 'M', 101), +(175328, 'Kalob', 2001, 'M', 101), +(175329, 'Lucio', 2001, 'M', 101), +(175330, 'Rashaun', 2001, 'M', 101), +(175331, 'Shelby', 2001, 'M', 101), +(175332, 'Shimon', 2001, 'M', 101), +(175333, 'Tavian', 2001, 'M', 101), +(175334, 'Bill', 2001, 'M', 100), +(175335, 'Eliot', 2001, 'M', 100), +(175336, 'Jadin', 2001, 'M', 100), +(175337, 'Kason', 2001, 'M', 100), +(175338, 'Kegan', 2001, 'M', 100), +(175339, 'Lyle', 2001, 'M', 100), +(175340, 'Mack', 2001, 'M', 100), +(175341, 'Quinlan', 2001, 'M', 100), +(175342, 'Vince', 2001, 'M', 100), +(175343, 'Emily', 2002, 'F', 24457), +(175344, 'Madison', 2002, 'F', 21772), +(175345, 'Hannah', 2002, 'F', 18814), +(175346, 'Emma', 2002, 'F', 16530), +(175347, 'Alexis', 2002, 'F', 15633), +(175348, 'Ashley', 2002, 'F', 15337), +(175349, 'Abigail', 2002, 'F', 15293), +(175350, 'Sarah', 2002, 'F', 14751), +(175351, 'Samantha', 2002, 'F', 14658), +(175352, 'Olivia', 2002, 'F', 14628), +(175353, 'Elizabeth', 2002, 'F', 14592), +(175354, 'Alyssa', 2002, 'F', 12842), +(175355, 'Lauren', 2002, 'F', 12322), +(175356, 'Isabella', 2002, 'F', 12165), +(175357, 'Grace', 2002, 'F', 12052), +(175358, 'Jessica', 2002, 'F', 11912), +(175359, 'Brianna', 2002, 'F', 11516), +(175360, 'Taylor', 2002, 'F', 11465), +(175361, 'Kayla', 2002, 'F', 11307), +(175362, 'Anna', 2002, 'F', 10381), +(175363, 'Victoria', 2002, 'F', 9778), +(175364, 'Megan', 2002, 'F', 9209), +(175365, 'Sydney', 2002, 'F', 9032), +(175366, 'Rachel', 2002, 'F', 8920), +(175367, 'Chloe', 2002, 'F', 8898), +(175368, 'Jasmine', 2002, 'F', 8862), +(175369, 'Sophia', 2002, 'F', 8663), +(175370, 'Jennifer', 2002, 'F', 8536), +(175371, 'Morgan', 2002, 'F', 8431), +(175372, 'Natalie', 2002, 'F', 8349), +(175373, 'Hailey', 2002, 'F', 7986), +(175374, 'Kaitlyn', 2002, 'F', 7979), +(175375, 'Julia', 2002, 'F', 7963), +(175376, 'Destiny', 2002, 'F', 7794), +(175377, 'Haley', 2002, 'F', 7449), +(175378, 'Katherine', 2002, 'F', 7212), +(175379, 'Nicole', 2002, 'F', 6972), +(175380, 'Alexandra', 2002, 'F', 6934), +(175381, 'Savannah', 2002, 'F', 6578), +(175382, 'Maria', 2002, 'F', 6381), +(175383, 'Mackenzie', 2002, 'F', 6266), +(175384, 'Stephanie', 2002, 'F', 6265), +(175385, 'Mia', 2002, 'F', 6256), +(175386, 'Allison', 2002, 'F', 6237), +(175387, 'Jordan', 2002, 'F', 6149), +(175388, 'Amanda', 2002, 'F', 6132), +(175389, 'Jenna', 2002, 'F', 5663), +(175390, 'Faith', 2002, 'F', 5522), +(175391, 'Makayla', 2002, 'F', 5476), +(175392, 'Paige', 2002, 'F', 5466), +(175393, 'Mary', 2002, 'F', 5450), +(175394, 'Brooke', 2002, 'F', 5336), +(175395, 'Katelyn', 2002, 'F', 5265), +(175396, 'Rebecca', 2002, 'F', 5210), +(175397, 'Andrea', 2002, 'F', 5117), +(175398, 'Madeline', 2002, 'F', 5113), +(175399, 'Kaylee', 2002, 'F', 4980), +(175400, 'Michelle', 2002, 'F', 4947), +(175401, 'Sara', 2002, 'F', 4936), +(175402, 'Zoe', 2002, 'F', 4883), +(175403, 'Kylie', 2002, 'F', 4831), +(175404, 'Sierra', 2002, 'F', 4801), +(175405, 'Kimberly', 2002, 'F', 4789), +(175406, 'Aaliyah', 2002, 'F', 4778), +(175407, 'Amber', 2002, 'F', 4723), +(175408, 'Gabrielle', 2002, 'F', 4668), +(175409, 'Caroline', 2002, 'F', 4655), +(175410, 'Vanessa', 2002, 'F', 4452), +(175411, 'Alexa', 2002, 'F', 4401), +(175412, 'Trinity', 2002, 'F', 4383), +(175413, 'Danielle', 2002, 'F', 4204), +(175414, 'Erin', 2002, 'F', 4144), +(175415, 'Autumn', 2002, 'F', 4103), +(175416, 'Angelina', 2002, 'F', 3975), +(175417, 'Shelby', 2002, 'F', 3959), +(175418, 'Gabriella', 2002, 'F', 3909), +(175419, 'Riley', 2002, 'F', 3904), +(175420, 'Jada', 2002, 'F', 3896), +(175421, 'Lily', 2002, 'F', 3834), +(175422, 'Melissa', 2002, 'F', 3766), +(175423, 'Jacqueline', 2002, 'F', 3751), +(175424, 'Ava', 2002, 'F', 3749), +(175425, 'Angela', 2002, 'F', 3710), +(175426, 'Bailey', 2002, 'F', 3660), +(175427, 'Isabel', 2002, 'F', 3650), +(175428, 'Jade', 2002, 'F', 3630), +(175429, 'Leah', 2002, 'F', 3600), +(175430, 'Courtney', 2002, 'F', 3579), +(175431, 'Ella', 2002, 'F', 3557), +(175432, 'Maya', 2002, 'F', 3542), +(175433, 'Jocelyn', 2002, 'F', 3521), +(175434, 'Leslie', 2002, 'F', 3519), +(175435, 'Ariana', 2002, 'F', 3490), +(175436, 'Melanie', 2002, 'F', 3482), +(175437, 'Claire', 2002, 'F', 3404), +(175438, 'Lillian', 2002, 'F', 3396), +(175439, 'Christina', 2002, 'F', 3385), +(175440, 'Evelyn', 2002, 'F', 3369), +(175441, 'Marissa', 2002, 'F', 3318), +(175442, 'Audrey', 2002, 'F', 3306), +(175443, 'Catherine', 2002, 'F', 3288), +(175444, 'Briana', 2002, 'F', 3260), +(175445, 'Katie', 2002, 'F', 3222), +(175446, 'Breanna', 2002, 'F', 3197), +(175447, 'Alexandria', 2002, 'F', 3144), +(175448, 'Laura', 2002, 'F', 3140), +(175449, 'Molly', 2002, 'F', 3119), +(175450, 'Kathryn', 2002, 'F', 3103), +(175451, 'Amy', 2002, 'F', 3095), +(175452, 'Angel', 2002, 'F', 3095), +(175453, 'Isabelle', 2002, 'F', 3063), +(175454, 'Sofia', 2002, 'F', 3058), +(175455, 'Daniela', 2002, 'F', 3025), +(175456, 'Arianna', 2002, 'F', 2963), +(175457, 'Ashanti', 2002, 'F', 2944), +(175458, 'Gabriela', 2002, 'F', 2915), +(175459, 'Diana', 2002, 'F', 2905), +(175460, 'Kelsey', 2002, 'F', 2881), +(175461, 'Kelly', 2002, 'F', 2850), +(175462, 'Madelyn', 2002, 'F', 2850), +(175463, 'Alicia', 2002, 'F', 2816), +(175464, 'Lindsey', 2002, 'F', 2814), +(175465, 'Caitlin', 2002, 'F', 2741), +(175466, 'Mikayla', 2002, 'F', 2736), +(175467, 'Jillian', 2002, 'F', 2734), +(175468, 'Cassandra', 2002, 'F', 2730), +(175469, 'Cheyenne', 2002, 'F', 2707), +(175470, 'Alexia', 2002, 'F', 2691), +(175471, 'Margaret', 2002, 'F', 2675), +(175472, 'Mariah', 2002, 'F', 2670), +(175473, 'Cassidy', 2002, 'F', 2633), +(175474, 'Avery', 2002, 'F', 2587), +(175475, 'Lizbeth', 2002, 'F', 2569), +(175476, 'Ana', 2002, 'F', 2532), +(175477, 'Sabrina', 2002, 'F', 2530), +(175478, 'Kennedy', 2002, 'F', 2511), +(175479, 'Lydia', 2002, 'F', 2498), +(175480, 'Daisy', 2002, 'F', 2456), +(175481, 'Amelia', 2002, 'F', 2439), +(175482, 'Tiffany', 2002, 'F', 2395), +(175483, 'Skylar', 2002, 'F', 2390), +(175484, 'Adriana', 2002, 'F', 2383), +(175485, 'Mckenzie', 2002, 'F', 2340), +(175486, 'Erica', 2002, 'F', 2302), +(175487, 'Mya', 2002, 'F', 2281), +(175488, 'Angelica', 2002, 'F', 2271), +(175489, 'Miranda', 2002, 'F', 2271), +(175490, 'Caitlyn', 2002, 'F', 2265), +(175491, 'Sophie', 2002, 'F', 2245), +(175492, 'Karen', 2002, 'F', 2220), +(175493, 'Summer', 2002, 'F', 2213), +(175494, 'Brooklyn', 2002, 'F', 2206), +(175495, 'Gracie', 2002, 'F', 2155), +(175496, 'Crystal', 2002, 'F', 2143), +(175497, 'Kiara', 2002, 'F', 2103), +(175498, 'Valerie', 2002, 'F', 2103), +(175499, 'Jordyn', 2002, 'F', 2098), +(175500, 'Ashlyn', 2002, 'F', 2077), +(175501, 'Heather', 2002, 'F', 2065), +(175502, 'Hope', 2002, 'F', 2053), +(175503, 'Kylee', 2002, 'F', 2009), +(175504, 'Alondra', 2002, 'F', 1996), +(175505, 'Gianna', 2002, 'F', 1984), +(175506, 'Jamie', 2002, 'F', 1967), +(175507, 'Abby', 2002, 'F', 1961), +(175508, 'Erika', 2002, 'F', 1958), +(175509, 'Karina', 2002, 'F', 1958), +(175510, 'Naomi', 2002, 'F', 1955), +(175511, 'Bianca', 2002, 'F', 1954), +(175512, 'Brittany', 2002, 'F', 1934), +(175513, 'Juliana', 2002, 'F', 1926), +(175514, 'Veronica', 2002, 'F', 1906), +(175515, 'Natalia', 2002, 'F', 1881), +(175516, 'Meghan', 2002, 'F', 1861), +(175517, 'Karla', 2002, 'F', 1839), +(175518, 'Cynthia', 2002, 'F', 1830), +(175519, 'Mckenna', 2002, 'F', 1795), +(175520, 'Bethany', 2002, 'F', 1792), +(175521, 'Chelsea', 2002, 'F', 1783), +(175522, 'Monica', 2002, 'F', 1778), +(175523, 'Delaney', 2002, 'F', 1765), +(175524, 'Payton', 2002, 'F', 1758), +(175525, 'Jasmin', 2002, 'F', 1757), +(175526, 'Shannon', 2002, 'F', 1757), +(175527, 'Julianna', 2002, 'F', 1748), +(175528, 'Kristen', 2002, 'F', 1714), +(175529, 'Kyla', 2002, 'F', 1705), +(175530, 'Peyton', 2002, 'F', 1702), +(175531, 'Nevaeh', 2002, 'F', 1698), +(175532, 'Maggie', 2002, 'F', 1697), +(175533, 'Alejandra', 2002, 'F', 1692), +(175534, 'Hayley', 2002, 'F', 1669), +(175535, 'Kate', 2002, 'F', 1668), +(175536, 'Hanna', 2002, 'F', 1651), +(175537, 'Kendall', 2002, 'F', 1642), +(175538, 'Aubrey', 2002, 'F', 1640), +(175539, 'Valeria', 2002, 'F', 1636), +(175540, 'Makenzie', 2002, 'F', 1624), +(175541, 'Reagan', 2002, 'F', 1622), +(175542, 'Ellie', 2002, 'F', 1619), +(175543, 'Rylee', 2002, 'F', 1616), +(175544, 'Michaela', 2002, 'F', 1613), +(175545, 'Aliyah', 2002, 'F', 1605), +(175546, 'Charlotte', 2002, 'F', 1602), +(175547, 'Esmeralda', 2002, 'F', 1598), +(175548, 'Carly', 2002, 'F', 1590), +(175549, 'Diamond', 2002, 'F', 1579), +(175550, 'Ruby', 2002, 'F', 1578), +(175551, 'Jazmin', 2002, 'F', 1573), +(175552, 'Jayla', 2002, 'F', 1570), +(175553, 'Rebekah', 2002, 'F', 1570), +(175554, 'Sadie', 2002, 'F', 1560), +(175555, 'Brenda', 2002, 'F', 1550), +(175556, 'Desiree', 2002, 'F', 1549), +(175557, 'Ariel', 2002, 'F', 1547), +(175558, 'Nadia', 2002, 'F', 1498), +(175559, 'Giselle', 2002, 'F', 1478), +(175560, 'Julie', 2002, 'F', 1467), +(175561, 'Kaitlin', 2002, 'F', 1456), +(175562, 'Addison', 2002, 'F', 1455), +(175563, 'Macy', 2002, 'F', 1446), +(175564, 'Adrianna', 2002, 'F', 1443), +(175565, 'Kara', 2002, 'F', 1401), +(175566, 'Claudia', 2002, 'F', 1396), +(175567, 'Alana', 2002, 'F', 1391), +(175568, 'Kyra', 2002, 'F', 1388), +(175569, 'Kendra', 2002, 'F', 1385), +(175570, 'Genesis', 2002, 'F', 1371), +(175571, 'Jazmine', 2002, 'F', 1364), +(175572, 'Holly', 2002, 'F', 1362), +(175573, 'Alison', 2002, 'F', 1360), +(175574, 'Nancy', 2002, 'F', 1360), +(175575, 'Elena', 2002, 'F', 1357), +(175576, 'Allyson', 2002, 'F', 1347), +(175577, 'Savanna', 2002, 'F', 1345), +(175578, 'Britney', 2002, 'F', 1344), +(175579, 'Raven', 2002, 'F', 1339), +(175580, 'Elise', 2002, 'F', 1335), +(175581, 'Eva', 2002, 'F', 1333), +(175582, 'Joanna', 2002, 'F', 1333), +(175583, 'Jaden', 2002, 'F', 1324), +(175584, 'Makenna', 2002, 'F', 1323), +(175585, 'Nina', 2002, 'F', 1319), +(175586, 'Serena', 2002, 'F', 1305), +(175587, 'Guadalupe', 2002, 'F', 1296), +(175588, 'Fatima', 2002, 'F', 1288), +(175589, 'Selena', 2002, 'F', 1288), +(175590, 'Haylee', 2002, 'F', 1280), +(175591, 'Vivian', 2002, 'F', 1275), +(175592, 'Katelynn', 2002, 'F', 1271), +(175593, 'Camryn', 2002, 'F', 1269), +(175594, 'Cierra', 2002, 'F', 1269), +(175595, 'Mallory', 2002, 'F', 1259), +(175596, 'April', 2002, 'F', 1251), +(175597, 'Mariana', 2002, 'F', 1241), +(175598, 'Lindsay', 2002, 'F', 1240), +(175599, 'Cameron', 2002, 'F', 1236), +(175600, 'Cindy', 2002, 'F', 1219), +(175601, 'Liliana', 2002, 'F', 1210), +(175602, 'Lucy', 2002, 'F', 1209), +(175603, 'Kathleen', 2002, 'F', 1208), +(175604, 'Wendy', 2002, 'F', 1207), +(175605, 'Nayeli', 2002, 'F', 1206), +(175606, 'Josephine', 2002, 'F', 1198), +(175607, 'Anastasia', 2002, 'F', 1192), +(175608, 'Asia', 2002, 'F', 1190), +(175609, 'Camille', 2002, 'F', 1187), +(175610, 'Zoey', 2002, 'F', 1182), +(175611, 'Cecilia', 2002, 'F', 1170), +(175612, 'Kassandra', 2002, 'F', 1161), +(175613, 'Skyler', 2002, 'F', 1160), +(175614, 'Yesenia', 2002, 'F', 1160), +(175615, 'Kristina', 2002, 'F', 1158), +(175616, 'Sandra', 2002, 'F', 1139), +(175617, 'Ashleigh', 2002, 'F', 1138), +(175618, 'Heaven', 2002, 'F', 1133), +(175619, 'Kira', 2002, 'F', 1126), +(175620, 'Kirsten', 2002, 'F', 1126), +(175621, 'Katrina', 2002, 'F', 1113), +(175622, 'Patricia', 2002, 'F', 1113), +(175623, 'Josie', 2002, 'F', 1108), +(175624, 'Amaya', 2002, 'F', 1099), +(175625, 'Miriam', 2002, 'F', 1098), +(175626, 'Kailey', 2002, 'F', 1092), +(175627, 'Priscilla', 2002, 'F', 1088), +(175628, 'Tori', 2002, 'F', 1085), +(175629, 'Tatiana', 2002, 'F', 1078), +(175630, 'Bridget', 2002, 'F', 1074), +(175631, 'Carolina', 2002, 'F', 1072), +(175632, 'Layla', 2002, 'F', 1072), +(175633, 'Serenity', 2002, 'F', 1072), +(175634, 'Madeleine', 2002, 'F', 1069), +(175635, 'Mercedes', 2002, 'F', 1068), +(175636, 'Tessa', 2002, 'F', 1062), +(175637, 'Tara', 2002, 'F', 1061), +(175638, 'Melody', 2002, 'F', 1045), +(175639, 'Jayden', 2002, 'F', 1044), +(175640, 'Kiana', 2002, 'F', 1042), +(175641, 'Esther', 2002, 'F', 1041), +(175642, 'Rachael', 2002, 'F', 1041), +(175643, 'Alissa', 2002, 'F', 1034), +(175644, 'Casey', 2002, 'F', 1031), +(175645, 'Christine', 2002, 'F', 1025), +(175646, 'Natasha', 2002, 'F', 1024), +(175647, 'Clara', 2002, 'F', 1022), +(175648, 'Carmen', 2002, 'F', 1020), +(175649, 'Lauryn', 2002, 'F', 1013), +(175650, 'Celeste', 2002, 'F', 1010), +(175651, 'Alaina', 2002, 'F', 1002), +(175652, 'Paola', 2002, 'F', 1000), +(175653, 'Bryanna', 2002, 'F', 979), +(175654, 'India', 2002, 'F', 978), +(175655, 'Annie', 2002, 'F', 974), +(175656, 'Shayla', 2002, 'F', 974), +(175657, 'Brittney', 2002, 'F', 972), +(175658, 'Halle', 2002, 'F', 971), +(175659, 'Alexus', 2002, 'F', 968), +(175660, 'Imani', 2002, 'F', 966), +(175661, 'Eleanor', 2002, 'F', 961), +(175662, 'Nia', 2002, 'F', 961), +(175663, 'Denise', 2002, 'F', 956), +(175664, 'Heidi', 2002, 'F', 954), +(175665, 'Dakota', 2002, 'F', 950), +(175666, 'Kayleigh', 2002, 'F', 945), +(175667, 'Anne', 2002, 'F', 940), +(175668, 'Sidney', 2002, 'F', 939), +(175669, 'Marisa', 2002, 'F', 933), +(175670, 'Brenna', 2002, 'F', 924), +(175671, 'Rose', 2002, 'F', 922), +(175672, 'Logan', 2002, 'F', 921), +(175673, 'Annabelle', 2002, 'F', 917), +(175674, 'Emilee', 2002, 'F', 912), +(175675, 'Lilly', 2002, 'F', 910), +(175676, 'Ciara', 2002, 'F', 904), +(175677, 'Daniella', 2002, 'F', 903), +(175678, 'Callie', 2002, 'F', 902), +(175679, 'Ruth', 2002, 'F', 899), +(175680, 'Dana', 2002, 'F', 892), +(175681, 'Kassidy', 2002, 'F', 887), +(175682, 'Helen', 2002, 'F', 875), +(175683, 'Rosa', 2002, 'F', 872), +(175684, 'Clarissa', 2002, 'F', 870), +(175685, 'Harley', 2002, 'F', 870), +(175686, 'Cristina', 2002, 'F', 868), +(175687, 'Kamryn', 2002, 'F', 867), +(175688, 'Annika', 2002, 'F', 858), +(175689, 'Fiona', 2002, 'F', 858), +(175690, 'Deanna', 2002, 'F', 854), +(175691, 'Ashlynn', 2002, 'F', 851), +(175692, 'Whitney', 2002, 'F', 851), +(175693, 'Jadyn', 2002, 'F', 848), +(175694, 'Yasmin', 2002, 'F', 843), +(175695, 'Ashlee', 2002, 'F', 841), +(175696, 'Jenny', 2002, 'F', 840), +(175697, 'Hallie', 2002, 'F', 836), +(175698, 'Meredith', 2002, 'F', 833), +(175699, 'Madalyn', 2002, 'F', 832), +(175700, 'Anahi', 2002, 'F', 830), +(175701, 'Eliza', 2002, 'F', 830), +(175702, 'Kristin', 2002, 'F', 830), +(175703, 'Lisa', 2002, 'F', 830), +(175704, 'Dominique', 2002, 'F', 829), +(175705, 'Elisabeth', 2002, 'F', 824), +(175706, 'Eden', 2002, 'F', 822), +(175707, 'Carolyn', 2002, 'F', 820), +(175708, 'Paulina', 2002, 'F', 820), +(175709, 'Talia', 2002, 'F', 810), +(175710, 'Sasha', 2002, 'F', 809), +(175711, 'Hailee', 2002, 'F', 801), +(175712, 'Virginia', 2002, 'F', 801), +(175713, 'Laila', 2002, 'F', 800), +(175714, 'Allie', 2002, 'F', 799), +(175715, 'Julissa', 2002, 'F', 797), +(175716, 'Tamara', 2002, 'F', 796), +(175717, 'Kaylie', 2002, 'F', 791), +(175718, 'Teresa', 2002, 'F', 787), +(175719, 'Tiana', 2002, 'F', 784), +(175720, 'Georgia', 2002, 'F', 782), +(175721, 'Ashton', 2002, 'F', 781), +(175722, 'Alayna', 2002, 'F', 779), +(175723, 'Gloria', 2002, 'F', 777), +(175724, 'Iris', 2002, 'F', 772), +(175725, 'Linda', 2002, 'F', 769), +(175726, 'Marina', 2002, 'F', 768), +(175727, 'Angie', 2002, 'F', 767), +(175728, 'Aniya', 2002, 'F', 763), +(175729, 'Carla', 2002, 'F', 763), +(175730, 'Gillian', 2002, 'F', 761), +(175731, 'Jayda', 2002, 'F', 754), +(175732, 'Raquel', 2002, 'F', 753), +(175733, 'Tabitha', 2002, 'F', 753), +(175734, 'Tatum', 2002, 'F', 752), +(175735, 'Emely', 2002, 'F', 745), +(175736, 'Eliana', 2002, 'F', 744), +(175737, 'Krystal', 2002, 'F', 742), +(175738, 'Marisol', 2002, 'F', 739), +(175739, 'Genevieve', 2002, 'F', 737), +(175740, 'Regan', 2002, 'F', 737), +(175741, 'Kaitlynn', 2002, 'F', 731), +(175742, 'Kiley', 2002, 'F', 730), +(175743, 'Noelle', 2002, 'F', 727), +(175744, 'Justice', 2002, 'F', 725), +(175745, 'Lexi', 2002, 'F', 722), +(175746, 'Ivy', 2002, 'F', 721), +(175747, 'Lesly', 2002, 'F', 717), +(175748, 'Baylee', 2002, 'F', 716), +(175749, 'Francesca', 2002, 'F', 715), +(175750, 'Alisha', 2002, 'F', 710), +(175751, 'Monique', 2002, 'F', 709), +(175752, 'America', 2002, 'F', 704), +(175753, 'Tania', 2002, 'F', 702), +(175754, 'Aniyah', 2002, 'F', 700), +(175755, 'Izabella', 2002, 'F', 700), +(175756, 'Perla', 2002, 'F', 700), +(175757, 'Gina', 2002, 'F', 699), +(175758, 'Jane', 2002, 'F', 696), +(175759, 'Martha', 2002, 'F', 696), +(175760, 'Katlyn', 2002, 'F', 694), +(175761, 'Renee', 2002, 'F', 694), +(175762, 'Carissa', 2002, 'F', 691), +(175763, 'Haleigh', 2002, 'F', 691), +(175764, 'Madisyn', 2002, 'F', 691), +(175765, 'Precious', 2002, 'F', 688), +(175766, 'Deja', 2002, 'F', 686), +(175767, 'Marie', 2002, 'F', 684), +(175768, 'Sage', 2002, 'F', 683), +(175769, 'Bella', 2002, 'F', 682), +(175770, 'Malia', 2002, 'F', 682), +(175771, 'Cheyanne', 2002, 'F', 681), +(175772, 'Alivia', 2002, 'F', 677), +(175773, 'Amari', 2002, 'F', 676), +(175774, 'Jessie', 2002, 'F', 675), +(175775, 'Alina', 2002, 'F', 670), +(175776, 'Kaleigh', 2002, 'F', 670), +(175777, 'Phoebe', 2002, 'F', 665), +(175778, 'Tia', 2002, 'F', 665), +(175779, 'Aurora', 2002, 'F', 664), +(175780, 'Jaqueline', 2002, 'F', 664), +(175781, 'Kyleigh', 2002, 'F', 662), +(175782, 'Leilani', 2002, 'F', 660), +(175783, 'Rylie', 2002, 'F', 660), +(175784, 'Itzel', 2002, 'F', 659), +(175785, 'Madyson', 2002, 'F', 659), +(175786, 'Alice', 2002, 'F', 654), +(175787, 'Skye', 2002, 'F', 648), +(175788, 'Alyson', 2002, 'F', 647), +(175789, 'Viviana', 2002, 'F', 647), +(175790, 'Piper', 2002, 'F', 643), +(175791, 'Gisselle', 2002, 'F', 638), +(175792, 'Leila', 2002, 'F', 638), +(175793, 'Mckayla', 2002, 'F', 638), +(175794, 'Meagan', 2002, 'F', 638), +(175795, 'Nyla', 2002, 'F', 637), +(175796, 'Ainsley', 2002, 'F', 636), +(175797, 'Camila', 2002, 'F', 636), +(175798, 'Fernanda', 2002, 'F', 630), +(175799, 'Janet', 2002, 'F', 629), +(175800, 'Emilie', 2002, 'F', 624); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(175801, 'Jacquelyn', 2002, 'F', 621), +(175802, 'Karissa', 2002, 'F', 621), +(175803, 'Yasmine', 2002, 'F', 620), +(175804, 'Brooklynn', 2002, 'F', 618), +(175805, 'Paris', 2002, 'F', 617), +(175806, 'Reese', 2002, 'F', 614), +(175807, 'Johanna', 2002, 'F', 612), +(175808, 'Cora', 2002, 'F', 606), +(175809, 'Taryn', 2002, 'F', 605), +(175810, 'Shania', 2002, 'F', 604), +(175811, 'Lacey', 2002, 'F', 602), +(175812, 'Susan', 2002, 'F', 601), +(175813, 'Abbey', 2002, 'F', 600), +(175814, 'Nora', 2002, 'F', 600), +(175815, 'Ayanna', 2002, 'F', 596), +(175816, 'Krista', 2002, 'F', 595), +(175817, 'Macie', 2002, 'F', 594), +(175818, 'Joy', 2002, 'F', 590), +(175819, 'Ellen', 2002, 'F', 589), +(175820, 'Kaylin', 2002, 'F', 587), +(175821, 'Kiersten', 2002, 'F', 586), +(175822, 'Cara', 2002, 'F', 584), +(175823, 'Janelle', 2002, 'F', 584), +(175824, 'Kiera', 2002, 'F', 583), +(175825, 'Liberty', 2002, 'F', 583), +(175826, 'Abbigail', 2002, 'F', 578), +(175827, 'Anya', 2002, 'F', 578), +(175828, 'Tamia', 2002, 'F', 578), +(175829, 'Araceli', 2002, 'F', 573), +(175830, 'Carley', 2002, 'F', 572), +(175831, 'Destinee', 2002, 'F', 571), +(175832, 'Mikaela', 2002, 'F', 571), +(175833, 'Kasey', 2002, 'F', 566), +(175834, 'Alanna', 2002, 'F', 565), +(175835, 'Dulce', 2002, 'F', 564), +(175836, 'Kierra', 2002, 'F', 564), +(175837, 'Ryleigh', 2002, 'F', 560), +(175838, 'Brandy', 2002, 'F', 559), +(175839, 'Elisa', 2002, 'F', 559), +(175840, 'Angelique', 2002, 'F', 557), +(175841, 'Stella', 2002, 'F', 556), +(175842, 'Maddison', 2002, 'F', 554), +(175843, 'Litzy', 2002, 'F', 551), +(175844, 'Mayra', 2002, 'F', 551), +(175845, 'Athena', 2002, 'F', 548), +(175846, 'Willow', 2002, 'F', 545), +(175847, 'Charity', 2002, 'F', 543), +(175848, 'Kaley', 2002, 'F', 543), +(175849, 'Jaiden', 2002, 'F', 541), +(175850, 'Anika', 2002, 'F', 538), +(175851, 'Lorena', 2002, 'F', 538), +(175852, 'Sharon', 2002, 'F', 536), +(175853, 'Larissa', 2002, 'F', 535), +(175854, 'Kailee', 2002, 'F', 534), +(175855, 'Irene', 2002, 'F', 533), +(175856, 'Sylvia', 2002, 'F', 532), +(175857, 'Theresa', 2002, 'F', 532), +(175858, 'Tiara', 2002, 'F', 532), +(175859, 'Pamela', 2002, 'F', 530), +(175860, 'Sarai', 2002, 'F', 528), +(175861, 'Madelynn', 2002, 'F', 527), +(175862, 'Miracle', 2002, 'F', 527), +(175863, 'Ann', 2002, 'F', 525), +(175864, 'Janae', 2002, 'F', 524), +(175865, 'Raegan', 2002, 'F', 524), +(175866, 'Lucia', 2002, 'F', 523), +(175867, 'Tyler', 2002, 'F', 523), +(175868, 'Elaina', 2002, 'F', 522), +(175869, 'Bailee', 2002, 'F', 521), +(175870, 'Brandi', 2002, 'F', 521), +(175871, 'Jaclyn', 2002, 'F', 521), +(175872, 'Ryan', 2002, 'F', 518), +(175873, 'Sonia', 2002, 'F', 518), +(175874, 'Abbie', 2002, 'F', 514), +(175875, 'Maia', 2002, 'F', 512), +(175876, 'Rhiannon', 2002, 'F', 511), +(175877, 'Shakira', 2002, 'F', 511), +(175878, 'Jaelyn', 2002, 'F', 510), +(175879, 'Kelsie', 2002, 'F', 510), +(175880, 'Marlene', 2002, 'F', 509), +(175881, 'Cassie', 2002, 'F', 508), +(175882, 'Lena', 2002, 'F', 507), +(175883, 'Alma', 2002, 'F', 506), +(175884, 'Marilyn', 2002, 'F', 506), +(175885, 'Aileen', 2002, 'F', 505), +(175886, 'Emilia', 2002, 'F', 505), +(175887, 'Joselyn', 2002, 'F', 505), +(175888, 'Simone', 2002, 'F', 503), +(175889, 'Colleen', 2002, 'F', 499), +(175890, 'Felicity', 2002, 'F', 498), +(175891, 'Kaya', 2002, 'F', 498), +(175892, 'Jimena', 2002, 'F', 497), +(175893, 'Kali', 2002, 'F', 495), +(175894, 'Kenya', 2002, 'F', 494), +(175895, 'Kaila', 2002, 'F', 491), +(175896, 'Melina', 2002, 'F', 488), +(175897, 'Lexie', 2002, 'F', 487), +(175898, 'Barbara', 2002, 'F', 486), +(175899, 'Aspen', 2002, 'F', 482), +(175900, 'Eve', 2002, 'F', 478), +(175901, 'Deborah', 2002, 'F', 474), +(175902, 'Nataly', 2002, 'F', 474), +(175903, 'Hunter', 2002, 'F', 472), +(175904, 'Carlie', 2002, 'F', 471), +(175905, 'Lesley', 2002, 'F', 471), +(175906, 'Isis', 2002, 'F', 470), +(175907, 'Aimee', 2002, 'F', 469), +(175908, 'Maritza', 2002, 'F', 468), +(175909, 'Chasity', 2002, 'F', 466), +(175910, 'Madilyn', 2002, 'F', 466), +(175911, 'Daphne', 2002, 'F', 465), +(175912, 'Tanya', 2002, 'F', 464), +(175913, 'Edith', 2002, 'F', 459), +(175914, 'Hailie', 2002, 'F', 456), +(175915, 'Adrienne', 2002, 'F', 455), +(175916, 'Julianne', 2002, 'F', 455), +(175917, 'Macey', 2002, 'F', 454), +(175918, 'Gwendolyn', 2002, 'F', 453), +(175919, 'Arielle', 2002, 'F', 452), +(175920, 'Justine', 2002, 'F', 452), +(175921, 'Felicia', 2002, 'F', 451), +(175922, 'Shyanne', 2002, 'F', 448), +(175923, 'Reyna', 2002, 'F', 445), +(175924, 'Ally', 2002, 'F', 444), +(175925, 'Kaia', 2002, 'F', 444), +(175926, 'Brynn', 2002, 'F', 443), +(175927, 'Haylie', 2002, 'F', 443), +(175928, 'Judith', 2002, 'F', 440), +(175929, 'Zaria', 2002, 'F', 440), +(175930, 'Lilian', 2002, 'F', 439), +(175931, 'Kailyn', 2002, 'F', 438), +(175932, 'Zoie', 2002, 'F', 438), +(175933, 'Luz', 2002, 'F', 437), +(175934, 'Nathalie', 2002, 'F', 437), +(175935, 'Juliette', 2002, 'F', 435), +(175936, 'Noemi', 2002, 'F', 435), +(175937, 'Tianna', 2002, 'F', 434), +(175938, 'Clare', 2002, 'F', 433), +(175939, 'Janiya', 2002, 'F', 433), +(175940, 'Annette', 2002, 'F', 432), +(175941, 'Helena', 2002, 'F', 432), +(175942, 'Kaylyn', 2002, 'F', 430), +(175943, 'Savanah', 2002, 'F', 429), +(175944, 'Juliet', 2002, 'F', 428), +(175945, 'Valentina', 2002, 'F', 426), +(175946, 'Chelsey', 2002, 'F', 423), +(175947, 'Esperanza', 2002, 'F', 423), +(175948, 'Thalia', 2002, 'F', 423), +(175949, 'Ximena', 2002, 'F', 423), +(175950, 'Mara', 2002, 'F', 421), +(175951, 'Tatyana', 2002, 'F', 420), +(175952, 'Hayden', 2002, 'F', 418), +(175953, 'Skyla', 2002, 'F', 418), +(175954, 'Violet', 2002, 'F', 418), +(175955, 'Tess', 2002, 'F', 417), +(175956, 'Elle', 2002, 'F', 416), +(175957, 'Nyah', 2002, 'F', 416), +(175958, 'Lila', 2002, 'F', 414), +(175959, 'Paula', 2002, 'F', 414), +(175960, 'Frances', 2002, 'F', 413), +(175961, 'Breana', 2002, 'F', 412), +(175962, 'Jolie', 2002, 'F', 412), +(175963, 'Hana', 2002, 'F', 411), +(175964, 'Jazlyn', 2002, 'F', 411), +(175965, 'Teagan', 2002, 'F', 410), +(175966, 'Lisbeth', 2002, 'F', 409), +(175967, 'Cristal', 2002, 'F', 408), +(175968, 'Laney', 2002, 'F', 407), +(175969, 'Regina', 2002, 'F', 407), +(175970, 'Aisha', 2002, 'F', 406), +(175971, 'Jaida', 2002, 'F', 405), +(175972, 'Alisa', 2002, 'F', 404), +(175973, 'Marley', 2002, 'F', 404), +(175974, 'Amya', 2002, 'F', 403), +(175975, 'Isabela', 2002, 'F', 402), +(175976, 'Lara', 2002, 'F', 402), +(175977, 'Rosemary', 2002, 'F', 402), +(175978, 'Haven', 2002, 'F', 401), +(175979, 'Antonia', 2002, 'F', 399), +(175980, 'Elaine', 2002, 'F', 399), +(175981, 'Karli', 2002, 'F', 398), +(175982, 'Keely', 2002, 'F', 397), +(175983, 'Micah', 2002, 'F', 397), +(175984, 'Nya', 2002, 'F', 397), +(175985, 'Alessandra', 2002, 'F', 393), +(175986, 'Yadira', 2002, 'F', 393), +(175987, 'Carlee', 2002, 'F', 392), +(175988, 'Leticia', 2002, 'F', 391), +(175989, 'Janessa', 2002, 'F', 390), +(175990, 'Toni', 2002, 'F', 390), +(175991, 'Kaelyn', 2002, 'F', 389), +(175992, 'Nichole', 2002, 'F', 389), +(175993, 'Celia', 2002, 'F', 388), +(175994, 'Kaiya', 2002, 'F', 388), +(175995, 'Lillie', 2002, 'F', 388), +(175996, 'Carina', 2002, 'F', 386), +(175997, 'Kenzie', 2002, 'F', 386), +(175998, 'Mollie', 2002, 'F', 386), +(175999, 'Stacy', 2002, 'F', 386), +(176000, 'Sydnee', 2002, 'F', 386), +(176001, 'Aracely', 2002, 'F', 385), +(176002, 'Cayla', 2002, 'F', 385), +(176003, 'Corinne', 2002, 'F', 385), +(176004, 'Halie', 2002, 'F', 385), +(176005, 'Sienna', 2002, 'F', 385), +(176006, 'Karlee', 2002, 'F', 383), +(176007, 'Lea', 2002, 'F', 382), +(176008, 'Eileen', 2002, 'F', 380), +(176009, 'Tina', 2002, 'F', 380), +(176010, 'Anaya', 2002, 'F', 379), +(176011, 'Harmony', 2002, 'F', 379), +(176012, 'Lana', 2002, 'F', 379), +(176013, 'Mariam', 2002, 'F', 377), +(176014, 'Stephany', 2002, 'F', 376), +(176015, 'Donna', 2002, 'F', 375), +(176016, 'Laurel', 2002, 'F', 375), +(176017, 'Amani', 2002, 'F', 372), +(176018, 'Tyra', 2002, 'F', 372), +(176019, 'Ebony', 2002, 'F', 371), +(176020, 'Leanna', 2002, 'F', 371), +(176021, 'Mariela', 2002, 'F', 371), +(176022, 'Ansley', 2002, 'F', 370), +(176023, 'Jewel', 2002, 'F', 369), +(176024, 'Kelli', 2002, 'F', 368), +(176025, 'Ayana', 2002, 'F', 366), +(176026, 'Montana', 2002, 'F', 366), +(176027, 'Taliyah', 2002, 'F', 366), +(176028, 'Lizeth', 2002, 'F', 365), +(176029, 'Melany', 2002, 'F', 365), +(176030, 'Monserrat', 2002, 'F', 365), +(176031, 'Tayler', 2002, 'F', 365), +(176032, 'Adeline', 2002, 'F', 364), +(176033, 'Giovanna', 2002, 'F', 364), +(176034, 'Jazmyn', 2002, 'F', 364), +(176035, 'Brisa', 2002, 'F', 362), +(176036, 'Kathy', 2002, 'F', 362), +(176037, 'Kianna', 2002, 'F', 362), +(176038, 'Presley', 2002, 'F', 362), +(176039, 'Desirae', 2002, 'F', 359), +(176040, 'Estefania', 2002, 'F', 359), +(176041, 'Arely', 2002, 'F', 358), +(176042, 'Chaya', 2002, 'F', 357), +(176043, 'Bria', 2002, 'F', 356), +(176044, 'Joyce', 2002, 'F', 356), +(176045, 'Karlie', 2002, 'F', 356), +(176046, 'Estrella', 2002, 'F', 355), +(176047, 'Kennedi', 2002, 'F', 355), +(176048, 'Delilah', 2002, 'F', 354), +(176049, 'Jenifer', 2002, 'F', 354), +(176050, 'Shayna', 2002, 'F', 354), +(176051, 'Aubree', 2002, 'F', 352), +(176052, 'Maeve', 2002, 'F', 350), +(176053, 'Brielle', 2002, 'F', 349), +(176054, 'Ciera', 2002, 'F', 348), +(176055, 'Tierra', 2002, 'F', 348), +(176056, 'Annabella', 2002, 'F', 347), +(176057, 'Blanca', 2002, 'F', 347), +(176058, 'Lia', 2002, 'F', 346), +(176059, 'Penelope', 2002, 'F', 346), +(176060, 'Destiney', 2002, 'F', 344), +(176061, 'Yvette', 2002, 'F', 344), +(176062, 'Myah', 2002, 'F', 342), +(176063, 'Ingrid', 2002, 'F', 340), +(176064, 'Shyann', 2002, 'F', 340), +(176065, 'Sheila', 2002, 'F', 339), +(176066, 'Casandra', 2002, 'F', 338), +(176067, 'Damaris', 2002, 'F', 336), +(176068, 'Quinn', 2002, 'F', 336), +(176069, 'Aleah', 2002, 'F', 335), +(176070, 'Katarina', 2002, 'F', 335), +(176071, 'Maci', 2002, 'F', 334), +(176072, 'Maribel', 2002, 'F', 334), +(176073, 'Alena', 2002, 'F', 333), +(176074, 'Annalise', 2002, 'F', 333), +(176075, 'Margarita', 2002, 'F', 333), +(176076, 'Kayley', 2002, 'F', 332), +(176077, 'Shaniya', 2002, 'F', 332), +(176078, 'Aria', 2002, 'F', 331), +(176079, 'Sydni', 2002, 'F', 331), +(176080, 'Kasandra', 2002, 'F', 330), +(176081, 'Candace', 2002, 'F', 328), +(176082, 'Cecelia', 2002, 'F', 328), +(176083, 'Lyric', 2002, 'F', 328), +(176084, 'Nikki', 2002, 'F', 328), +(176085, 'Aliya', 2002, 'F', 327), +(176086, 'Gia', 2002, 'F', 326), +(176087, 'Abigayle', 2002, 'F', 325), +(176088, 'Alize', 2002, 'F', 325), +(176089, 'Janice', 2002, 'F', 325), +(176090, 'Katelin', 2002, 'F', 324), +(176091, 'Marianna', 2002, 'F', 323), +(176092, 'Micaela', 2002, 'F', 322), +(176093, 'Iyana', 2002, 'F', 321), +(176094, 'Lola', 2002, 'F', 321), +(176095, 'Yazmin', 2002, 'F', 321), +(176096, 'Carrie', 2002, 'F', 320), +(176097, 'Greta', 2002, 'F', 319), +(176098, 'Nicolette', 2002, 'F', 319), +(176099, 'Susana', 2002, 'F', 319), +(176100, 'Frida', 2002, 'F', 318), +(176101, 'Salma', 2002, 'F', 318), +(176102, 'Amira', 2002, 'F', 317), +(176103, 'Sandy', 2002, 'F', 317), +(176104, 'Arlene', 2002, 'F', 316), +(176105, 'Evelin', 2002, 'F', 316), +(176106, 'Dayana', 2002, 'F', 315), +(176107, 'Parker', 2002, 'F', 315), +(176108, 'Elyse', 2002, 'F', 314), +(176109, 'Hazel', 2002, 'F', 314), +(176110, 'Stacey', 2002, 'F', 314), +(176111, 'Lexus', 2002, 'F', 313), +(176112, 'Mattie', 2002, 'F', 313), +(176113, 'Liana', 2002, 'F', 312), +(176114, 'Devin', 2002, 'F', 311), +(176115, 'Christian', 2002, 'F', 310), +(176116, 'Calista', 2002, 'F', 305), +(176117, 'Makena', 2002, 'F', 305), +(176118, 'Reilly', 2002, 'F', 305), +(176119, 'Kellie', 2002, 'F', 303), +(176120, 'Celine', 2002, 'F', 302), +(176121, 'Anissa', 2002, 'F', 301), +(176122, 'Kaliyah', 2002, 'F', 301), +(176123, 'Kayli', 2002, 'F', 301), +(176124, 'Shaylee', 2002, 'F', 301), +(176125, 'Destini', 2002, 'F', 300), +(176126, 'Kaylynn', 2002, 'F', 300), +(176127, 'Maura', 2002, 'F', 300), +(176128, 'Aiyana', 2002, 'F', 299), +(176129, 'Elissa', 2002, 'F', 299), +(176130, 'Kacie', 2002, 'F', 299), +(176131, 'Lilliana', 2002, 'F', 299), +(176132, 'Amara', 2002, 'F', 297), +(176133, 'Ayla', 2002, 'F', 297), +(176134, 'Jaylin', 2002, 'F', 297), +(176135, 'Karly', 2002, 'F', 297), +(176136, 'Dasia', 2002, 'F', 296), +(176137, 'Kendal', 2002, 'F', 295), +(176138, 'Catalina', 2002, 'F', 294), +(176139, 'Iliana', 2002, 'F', 294), +(176140, 'Joslyn', 2002, 'F', 294), +(176141, 'Shea', 2002, 'F', 294), +(176142, 'Carson', 2002, 'F', 293), +(176143, 'Taniya', 2002, 'F', 293), +(176144, 'Belen', 2002, 'F', 292), +(176145, 'Jacey', 2002, 'F', 292), +(176146, 'Lizette', 2002, 'F', 291), +(176147, 'Rocio', 2002, 'F', 291), +(176148, 'Scarlett', 2002, 'F', 290), +(176149, 'Fabiola', 2002, 'F', 288), +(176150, 'Alysa', 2002, 'F', 286), +(176151, 'Jamya', 2002, 'F', 286), +(176152, 'Katharine', 2002, 'F', 286), +(176153, 'Kenna', 2002, 'F', 286), +(176154, 'Rayna', 2002, 'F', 286), +(176155, 'Aryanna', 2002, 'F', 285), +(176156, 'Gretchen', 2002, 'F', 285), +(176157, 'Aliza', 2002, 'F', 284), +(176158, 'Annabel', 2002, 'F', 284), +(176159, 'Cali', 2002, 'F', 284), +(176160, 'Celina', 2002, 'F', 284), +(176161, 'Christy', 2002, 'F', 284), +(176162, 'Jaliyah', 2002, 'F', 284), +(176163, 'Raina', 2002, 'F', 284), +(176164, 'Ashly', 2002, 'F', 283), +(176165, 'Elsa', 2002, 'F', 283), +(176166, 'Ericka', 2002, 'F', 283), +(176167, 'Jalyn', 2002, 'F', 283), +(176168, 'Jaycee', 2002, 'F', 283), +(176169, 'Tracy', 2002, 'F', 283), +(176170, 'Diane', 2002, 'F', 282), +(176171, 'Robyn', 2002, 'F', 282), +(176172, 'Emmalee', 2002, 'F', 281), +(176173, 'Kenia', 2002, 'F', 281), +(176174, 'Devon', 2002, 'F', 280), +(176175, 'Emerson', 2002, 'F', 280), +(176176, 'Miah', 2002, 'F', 280), +(176177, 'Denisse', 2002, 'F', 278), +(176178, 'Jasmyn', 2002, 'F', 278), +(176179, 'London', 2002, 'F', 278), +(176180, 'Savana', 2002, 'F', 278), +(176181, 'Danna', 2002, 'F', 277), +(176182, 'Abigale', 2002, 'F', 276), +(176183, 'Jaidyn', 2002, 'F', 275), +(176184, 'Madisen', 2002, 'F', 275), +(176185, 'Berenice', 2002, 'F', 274), +(176186, 'Bryana', 2002, 'F', 274), +(176187, 'Carol', 2002, 'F', 273), +(176188, 'Essence', 2002, 'F', 273), +(176189, 'Kaylah', 2002, 'F', 272), +(176190, 'Kourtney', 2002, 'F', 272), +(176191, 'Moriah', 2002, 'F', 271), +(176192, 'Rianna', 2002, 'F', 271), +(176193, 'Robin', 2002, 'F', 271), +(176194, 'Vanesa', 2002, 'F', 271), +(176195, 'Christa', 2002, 'F', 270), +(176196, 'Jaime', 2002, 'F', 270), +(176197, 'Makaila', 2002, 'F', 270), +(176198, 'Alia', 2002, 'F', 269), +(176199, 'Christiana', 2002, 'F', 269), +(176200, 'Keyla', 2002, 'F', 269), +(176201, 'Meadow', 2002, 'F', 269), +(176202, 'Princess', 2002, 'F', 268), +(176203, 'Roxana', 2002, 'F', 268), +(176204, 'Mireya', 2002, 'F', 267), +(176205, 'Anita', 2002, 'F', 266), +(176206, 'Brianne', 2002, 'F', 265), +(176207, 'Giana', 2002, 'F', 265), +(176208, 'Jaylynn', 2002, 'F', 264), +(176209, 'Beatriz', 2002, 'F', 263), +(176210, 'Dorothy', 2002, 'F', 263), +(176211, 'Joana', 2002, 'F', 263), +(176212, 'Patience', 2002, 'F', 263), +(176213, 'Tristan', 2002, 'F', 263), +(176214, 'Sally', 2002, 'F', 262), +(176215, 'Selina', 2002, 'F', 262), +(176216, 'Carli', 2002, 'F', 261), +(176217, 'Hadley', 2002, 'F', 261), +(176218, 'Rebeca', 2002, 'F', 261), +(176219, 'Sarahi', 2002, 'F', 261), +(176220, 'Shirley', 2002, 'F', 259), +(176221, 'Jailyn', 2002, 'F', 258), +(176222, 'Noelia', 2002, 'F', 257), +(176223, 'Priscila', 2002, 'F', 257), +(176224, 'Abagail', 2002, 'F', 256), +(176225, 'Dylan', 2002, 'F', 256), +(176226, 'Maleah', 2002, 'F', 256), +(176227, 'Alexandrea', 2002, 'F', 255), +(176228, 'Shreya', 2002, 'F', 255), +(176229, 'Jana', 2002, 'F', 254), +(176230, 'Kallie', 2002, 'F', 254), +(176231, 'Elyssa', 2002, 'F', 253), +(176232, 'Sarina', 2002, 'F', 253), +(176233, 'Ashtyn', 2002, 'F', 252), +(176234, 'Lyndsey', 2002, 'F', 252), +(176235, 'Sky', 2002, 'F', 252), +(176236, 'Kya', 2002, 'F', 251), +(176237, 'Dalia', 2002, 'F', 250), +(176238, 'Darlene', 2002, 'F', 250), +(176239, 'Shawna', 2002, 'F', 250), +(176240, 'Jakayla', 2002, 'F', 249), +(176241, 'Jayde', 2002, 'F', 249), +(176242, 'Madalynn', 2002, 'F', 249), +(176243, 'Maliyah', 2002, 'F', 249), +(176244, 'Saige', 2002, 'F', 249), +(176245, 'Yuliana', 2002, 'F', 249), +(176246, 'Armani', 2002, 'F', 248), +(176247, 'Maegan', 2002, 'F', 248), +(176248, 'Reanna', 2002, 'F', 248), +(176249, 'Sonya', 2002, 'F', 248), +(176250, 'Samira', 2002, 'F', 247), +(176251, 'Alexys', 2002, 'F', 245), +(176252, 'Devyn', 2002, 'F', 245), +(176253, 'Jalynn', 2002, 'F', 245), +(176254, 'Kelsi', 2002, 'F', 245), +(176255, 'Sade', 2002, 'F', 245), +(176256, 'Sydnie', 2002, 'F', 245), +(176257, 'Marlee', 2002, 'F', 244), +(176258, 'Myra', 2002, 'F', 244), +(176259, 'Isabell', 2002, 'F', 243), +(176260, 'Joelle', 2002, 'F', 243), +(176261, 'Rachelle', 2002, 'F', 243), +(176262, 'Rita', 2002, 'F', 243), +(176263, 'Yessenia', 2002, 'F', 243), +(176264, 'Akira', 2002, 'F', 242), +(176265, 'Kalyn', 2002, 'F', 242), +(176266, 'Meaghan', 2002, 'F', 242), +(176267, 'Norma', 2002, 'F', 242), +(176268, 'Samara', 2002, 'F', 242), +(176269, 'Taya', 2002, 'F', 242), +(176270, 'Unique', 2002, 'F', 242), +(176271, 'Candice', 2002, 'F', 241), +(176272, 'Graciela', 2002, 'F', 241), +(176273, 'Melinda', 2002, 'F', 241), +(176274, 'Paloma', 2002, 'F', 241), +(176275, 'Galilea', 2002, 'F', 240), +(176276, 'Kaela', 2002, 'F', 240), +(176277, 'Journey', 2002, 'F', 239), +(176278, 'Katy', 2002, 'F', 239), +(176279, 'Yvonne', 2002, 'F', 239), +(176280, 'Anjali', 2002, 'F', 238), +(176281, 'Aylin', 2002, 'F', 238), +(176282, 'Breonna', 2002, 'F', 238), +(176283, 'Keira', 2002, 'F', 238), +(176284, 'Mandy', 2002, 'F', 238), +(176285, 'Ryann', 2002, 'F', 238), +(176286, 'Amina', 2002, 'F', 237), +(176287, 'Baby', 2002, 'F', 237), +(176288, 'Janie', 2002, 'F', 237), +(176289, 'Jaylene', 2002, 'F', 237), +(176290, 'Luisa', 2002, 'F', 236), +(176291, 'Mina', 2002, 'F', 236), +(176292, 'Miya', 2002, 'F', 236), +(176293, 'Dania', 2002, 'F', 235), +(176294, 'Darby', 2002, 'F', 235), +(176295, 'Odalys', 2002, 'F', 235), +(176296, 'Deasia', 2002, 'F', 234), +(176297, 'Riya', 2002, 'F', 234), +(176298, 'Iyanna', 2002, 'F', 233), +(176299, 'Karley', 2002, 'F', 233), +(176300, 'Cadence', 2002, 'F', 232), +(176301, 'Estefany', 2002, 'F', 232), +(176302, 'Alysha', 2002, 'F', 231), +(176303, 'Chana', 2002, 'F', 231), +(176304, 'Citlali', 2002, 'F', 231), +(176305, 'Kiya', 2002, 'F', 231), +(176306, 'Allyssa', 2002, 'F', 230), +(176307, 'Ireland', 2002, 'F', 230), +(176308, 'Marcella', 2002, 'F', 230), +(176309, 'Alycia', 2002, 'F', 229), +(176310, 'Jaylyn', 2002, 'F', 229), +(176311, 'Trista', 2002, 'F', 229), +(176312, 'Dianna', 2002, 'F', 228), +(176313, 'Jena', 2002, 'F', 228), +(176314, 'Nyasia', 2002, 'F', 228), +(176315, 'Aja', 2002, 'F', 227), +(176316, 'Jaquelin', 2002, 'F', 227), +(176317, 'Kari', 2002, 'F', 227), +(176318, 'Yolanda', 2002, 'F', 227), +(176319, 'Alex', 2002, 'F', 226), +(176320, 'Aubrie', 2002, 'F', 226), +(176321, 'Libby', 2002, 'F', 226), +(176322, 'Abril', 2002, 'F', 225), +(176323, 'Brionna', 2002, 'F', 225), +(176324, 'Magdalena', 2002, 'F', 225), +(176325, 'Sheridan', 2002, 'F', 225), +(176326, 'Lina', 2002, 'F', 224), +(176327, 'Loren', 2002, 'F', 224), +(176328, 'Chandler', 2002, 'F', 223), +(176329, 'Estefani', 2002, 'F', 223), +(176330, 'Keeley', 2002, 'F', 223), +(176331, 'Maryam', 2002, 'F', 223), +(176332, 'Jackeline', 2002, 'F', 222), +(176333, 'Jazmyne', 2002, 'F', 222), +(176334, 'Jeanette', 2002, 'F', 222), +(176335, 'Yareli', 2002, 'F', 222), +(176336, 'Emerald', 2002, 'F', 221), +(176337, 'Johana', 2002, 'F', 221), +(176338, 'Juana', 2002, 'F', 221), +(176339, 'Katerina', 2002, 'F', 221), +(176340, 'Kristine', 2002, 'F', 221), +(176341, 'Amiya', 2002, 'F', 220), +(176342, 'Angeline', 2002, 'F', 220), +(176343, 'Juanita', 2002, 'F', 220), +(176344, 'Anabel', 2002, 'F', 219), +(176345, 'Bonnie', 2002, 'F', 219), +(176346, 'Caitlynn', 2002, 'F', 219), +(176347, 'Keila', 2002, 'F', 218), +(176348, 'Natalya', 2002, 'F', 218), +(176349, 'Reina', 2002, 'F', 218), +(176350, 'Bridgette', 2002, 'F', 217), +(176351, 'Lilia', 2002, 'F', 217), +(176352, 'Rhea', 2002, 'F', 217), +(176353, 'Tatianna', 2002, 'F', 217), +(176354, 'Kristy', 2002, 'F', 215), +(176355, 'Neha', 2002, 'F', 215), +(176356, 'Caleigh', 2002, 'F', 214), +(176357, 'Drew', 2002, 'F', 214), +(176358, 'Kinsey', 2002, 'F', 214), +(176359, 'Lisette', 2002, 'F', 214), +(176360, 'Treasure', 2002, 'F', 214), +(176361, 'Lourdes', 2002, 'F', 213), +(176362, 'Nathaly', 2002, 'F', 213), +(176363, 'Areli', 2002, 'F', 212), +(176364, 'Camilla', 2002, 'F', 212), +(176365, 'Chyna', 2002, 'F', 212), +(176366, 'Eryn', 2002, 'F', 212), +(176367, 'Hayleigh', 2002, 'F', 212), +(176368, 'Anisa', 2002, 'F', 211), +(176369, 'Kacey', 2002, 'F', 211), +(176370, 'Xiomara', 2002, 'F', 211), +(176371, 'Gabriel', 2002, 'F', 210), +(176372, 'Katia', 2002, 'F', 210), +(176373, 'Niya', 2002, 'F', 210), +(176374, 'Silvia', 2002, 'F', 210), +(176375, 'Chanel', 2002, 'F', 209), +(176376, 'Dallas', 2002, 'F', 209), +(176377, 'Lucero', 2002, 'F', 209), +(176378, 'Gwyneth', 2002, 'F', 208), +(176379, 'Kaycee', 2002, 'F', 208), +(176380, 'Aryana', 2002, 'F', 207), +(176381, 'Michele', 2002, 'F', 207), +(176382, 'Sanaa', 2002, 'F', 207), +(176383, 'Yasmeen', 2002, 'F', 207), +(176384, 'Anais', 2002, 'F', 206), +(176385, 'Asha', 2002, 'F', 206), +(176386, 'Kaci', 2002, 'F', 206), +(176387, 'Nikita', 2002, 'F', 206), +(176388, 'Rowan', 2002, 'F', 206), +(176389, 'Heidy', 2002, 'F', 205), +(176390, 'Sariah', 2002, 'F', 205), +(176391, 'Winter', 2002, 'F', 205), +(176392, 'Ada', 2002, 'F', 204), +(176393, 'Milagros', 2002, 'F', 204), +(176394, 'Shaina', 2002, 'F', 204), +(176395, 'Sheyla', 2002, 'F', 204), +(176396, 'Chiara', 2002, 'F', 203), +(176397, 'Noor', 2002, 'F', 203), +(176398, 'Lorelei', 2002, 'F', 202), +(176399, 'Trisha', 2002, 'F', 202), +(176400, 'Alysia', 2002, 'F', 201), +(176401, 'Austin', 2002, 'F', 201), +(176402, 'Caylee', 2002, 'F', 201), +(176403, 'Danae', 2002, 'F', 201), +(176404, 'Janiyah', 2002, 'F', 201), +(176405, 'Aleena', 2002, 'F', 200), +(176406, 'Dayna', 2002, 'F', 200), +(176407, 'Jocelynn', 2002, 'F', 200), +(176408, 'Marlen', 2002, 'F', 200), +(176409, 'Melisa', 2002, 'F', 200), +(176410, 'Amaris', 2002, 'F', 199), +(176411, 'Astrid', 2002, 'F', 199), +(176412, 'Lucille', 2002, 'F', 199), +(176413, 'Tea', 2002, 'F', 199), +(176414, 'Delia', 2002, 'F', 198), +(176415, 'Gladys', 2002, 'F', 198), +(176416, 'Mira', 2002, 'F', 198), +(176417, 'Pearl', 2002, 'F', 198), +(176418, 'Campbell', 2002, 'F', 197), +(176419, 'Hillary', 2002, 'F', 197), +(176420, 'Kaylen', 2002, 'F', 197), +(176421, 'Kirstin', 2002, 'F', 197), +(176422, 'Marian', 2002, 'F', 197), +(176423, 'Roxanne', 2002, 'F', 197), +(176424, 'Adrian', 2002, 'F', 196), +(176425, 'Alexi', 2002, 'F', 196), +(176426, 'Dawn', 2002, 'F', 196), +(176427, 'Isha', 2002, 'F', 196), +(176428, 'Jazlynn', 2002, 'F', 196), +(176429, 'Stefanie', 2002, 'F', 196), +(176430, 'Anabelle', 2002, 'F', 195), +(176431, 'Jamia', 2002, 'F', 195), +(176432, 'Natalee', 2002, 'F', 195), +(176433, 'Octavia', 2002, 'F', 195), +(176434, 'Annamarie', 2002, 'F', 194), +(176435, 'Brook', 2002, 'F', 194), +(176436, 'Georgina', 2002, 'F', 194), +(176437, 'Laisha', 2002, 'F', 194), +(176438, 'Tammy', 2002, 'F', 194), +(176439, 'Ali', 2002, 'F', 193), +(176440, 'Madysen', 2002, 'F', 193), +(176441, 'Starr', 2002, 'F', 193), +(176442, 'Bryn', 2002, 'F', 192), +(176443, 'Noel', 2002, 'F', 192), +(176444, 'Rhianna', 2002, 'F', 192), +(176445, 'Tristen', 2002, 'F', 192), +(176446, 'Aidan', 2002, 'F', 191), +(176447, 'Livia', 2002, 'F', 191), +(176448, 'Beatrice', 2002, 'F', 190), +(176449, 'Jesse', 2002, 'F', 190), +(176450, 'Keara', 2002, 'F', 190), +(176451, 'Janiah', 2002, 'F', 189), +(176452, 'Maranda', 2002, 'F', 189), +(176453, 'Cherish', 2002, 'F', 188), +(176454, 'Jacklyn', 2002, 'F', 188), +(176455, 'Makala', 2002, 'F', 188), +(176456, 'Daisha', 2002, 'F', 187), +(176457, 'Jaedyn', 2002, 'F', 187), +(176458, 'Lluvia', 2002, 'F', 187), +(176459, 'Rory', 2002, 'F', 187), +(176460, 'Alaysia', 2002, 'F', 186), +(176461, 'Amelie', 2002, 'F', 186), +(176462, 'Lacy', 2002, 'F', 186), +(176463, 'Malaysia', 2002, 'F', 186), +(176464, 'Rosalinda', 2002, 'F', 186), +(176465, 'Emani', 2002, 'F', 185), +(176466, 'Flor', 2002, 'F', 185), +(176467, 'Lidia', 2002, 'F', 185), +(176468, 'Nadine', 2002, 'F', 185), +(176469, 'Beverly', 2002, 'F', 184), +(176470, 'Constance', 2002, 'F', 184), +(176471, 'Esha', 2002, 'F', 184), +(176472, 'Ivette', 2002, 'F', 184), +(176473, 'Kameron', 2002, 'F', 184), +(176474, 'Leann', 2002, 'F', 184), +(176475, 'Dayanara', 2002, 'F', 183), +(176476, 'Jaylee', 2002, 'F', 183), +(176477, 'Lainey', 2002, 'F', 183), +(176478, 'Lori', 2002, 'F', 183), +(176479, 'Maxine', 2002, 'F', 183), +(176480, 'Susanna', 2002, 'F', 183), +(176481, 'Tyanna', 2002, 'F', 183), +(176482, 'Eunice', 2002, 'F', 182), +(176483, 'Karis', 2002, 'F', 182), +(176484, 'Maryann', 2002, 'F', 182), +(176485, 'Maryjane', 2002, 'F', 182), +(176486, 'Chantel', 2002, 'F', 181), +(176487, 'Citlaly', 2002, 'F', 181), +(176488, 'Jolene', 2002, 'F', 181), +(176489, 'Cloe', 2002, 'F', 180), +(176490, 'Darian', 2002, 'F', 180), +(176491, 'Julisa', 2002, 'F', 180), +(176492, 'Martina', 2002, 'F', 180), +(176493, 'Randi', 2002, 'F', 180), +(176494, 'Sequoia', 2002, 'F', 180), +(176495, 'Yoselin', 2002, 'F', 180), +(176496, 'Nayely', 2002, 'F', 179), +(176497, 'Shyla', 2002, 'F', 179), +(176498, 'Addie', 2002, 'F', 178), +(176499, 'Audra', 2002, 'F', 178), +(176500, 'Marcela', 2002, 'F', 178), +(176501, 'Adamaris', 2002, 'F', 177), +(176502, 'Aya', 2002, 'F', 177), +(176503, 'Cydney', 2002, 'F', 177), +(176504, 'Luna', 2002, 'F', 177), +(176505, 'Rivka', 2002, 'F', 177), +(176506, 'Shianne', 2002, 'F', 177), +(176507, 'Charlize', 2002, 'F', 176), +(176508, 'Daija', 2002, 'F', 176), +(176509, 'Janaya', 2002, 'F', 176), +(176510, 'Nathalia', 2002, 'F', 176), +(176511, 'Yahaira', 2002, 'F', 176), +(176512, 'Yaritza', 2002, 'F', 176), +(176513, 'Dina', 2002, 'F', 175), +(176514, 'Gemma', 2002, 'F', 175), +(176515, 'Jaelynn', 2002, 'F', 175), +(176516, 'Kalie', 2002, 'F', 175), +(176517, 'Khloe', 2002, 'F', 175), +(176518, 'Suzanne', 2002, 'F', 175), +(176519, 'Adelaide', 2002, 'F', 174), +(176520, 'Ashlie', 2002, 'F', 174), +(176521, 'Janette', 2002, 'F', 174), +(176522, 'Kylah', 2002, 'F', 174), +(176523, 'Alliyah', 2002, 'F', 173), +(176524, 'Chantal', 2002, 'F', 173), +(176525, 'Cielo', 2002, 'F', 173), +(176526, 'Danica', 2002, 'F', 173), +(176527, 'Elsie', 2002, 'F', 173), +(176528, 'Joanne', 2002, 'F', 173), +(176529, 'Star', 2002, 'F', 173), +(176530, 'Tayla', 2002, 'F', 173), +(176531, 'Cailyn', 2002, 'F', 172), +(176532, 'Coral', 2002, 'F', 172), +(176533, 'Shauna', 2002, 'F', 172), +(176534, 'Shelbie', 2002, 'F', 172), +(176535, 'Arlette', 2002, 'F', 171), +(176536, 'Kiarra', 2002, 'F', 171), +(176537, 'Monet', 2002, 'F', 171), +(176538, 'Azucena', 2002, 'F', 170), +(176539, 'Charlie', 2002, 'F', 170), +(176540, 'Janeth', 2002, 'F', 170), +(176541, 'Kelley', 2002, 'F', 170), +(176542, 'Rileigh', 2002, 'F', 170), +(176543, 'Charlene', 2002, 'F', 169), +(176544, 'Joseline', 2002, 'F', 169), +(176545, 'Mckinley', 2002, 'F', 169), +(176546, 'Rochelle', 2002, 'F', 169), +(176547, 'Adamari', 2002, 'F', 168), +(176548, 'Jaylen', 2002, 'F', 168), +(176549, 'Kori', 2002, 'F', 168), +(176550, 'Taina', 2002, 'F', 168), +(176551, 'Jaylah', 2002, 'F', 167), +(176552, 'Katlynn', 2002, 'F', 167), +(176553, 'Lizbet', 2002, 'F', 167), +(176554, 'Priya', 2002, 'F', 167), +(176555, 'Blair', 2002, 'F', 166), +(176556, 'Charisma', 2002, 'F', 166), +(176557, 'Elisha', 2002, 'F', 166), +(176558, 'Misty', 2002, 'F', 166), +(176559, 'Carleigh', 2002, 'F', 165), +(176560, 'Dejah', 2002, 'F', 165), +(176561, 'Geneva', 2002, 'F', 165), +(176562, 'Haily', 2002, 'F', 165), +(176563, 'Kyah', 2002, 'F', 165), +(176564, 'Lanie', 2002, 'F', 165), +(176565, 'Scarlet', 2002, 'F', 165), +(176566, 'Harper', 2002, 'F', 164), +(176567, 'Jackie', 2002, 'F', 164), +(176568, 'Stevie', 2002, 'F', 164), +(176569, 'Aislinn', 2002, 'F', 163), +(176570, 'Dora', 2002, 'F', 163), +(176571, 'Halee', 2002, 'F', 163), +(176572, 'Harlee', 2002, 'F', 163), +(176573, 'Jacquelin', 2002, 'F', 163), +(176574, 'Judy', 2002, 'F', 163), +(176575, 'Kinley', 2002, 'F', 163), +(176576, 'Lexis', 2002, 'F', 163), +(176577, 'Amalia', 2002, 'F', 162), +(176578, 'Azaria', 2002, 'F', 162), +(176579, 'Daria', 2002, 'F', 162), +(176580, 'Emelia', 2002, 'F', 162), +(176581, 'Irma', 2002, 'F', 161), +(176582, 'Jodi', 2002, 'F', 161), +(176583, 'Maren', 2002, 'F', 161), +(176584, 'Montserrat', 2002, 'F', 161), +(176585, 'Dahlia', 2002, 'F', 160), +(176586, 'Danika', 2002, 'F', 160), +(176587, 'Justina', 2002, 'F', 160), +(176588, 'Kalli', 2002, 'F', 160), +(176589, 'Maricela', 2002, 'F', 160), +(176590, 'Amiyah', 2002, 'F', 159), +(176591, 'Aneesa', 2002, 'F', 159), +(176592, 'Joselin', 2002, 'F', 159), +(176593, 'Leanne', 2002, 'F', 159), +(176594, 'Arleth', 2002, 'F', 158), +(176595, 'Delanie', 2002, 'F', 158), +(176596, 'Jasmyne', 2002, 'F', 158), +(176597, 'Madilynn', 2002, 'F', 158), +(176598, 'Yajaira', 2002, 'F', 158), +(176599, 'Ashante', 2002, 'F', 157), +(176600, 'Iman', 2002, 'F', 157), +(176601, 'Kai', 2002, 'F', 157), +(176602, 'Kayleen', 2002, 'F', 157), +(176603, 'Mari', 2002, 'F', 157), +(176604, 'Mattison', 2002, 'F', 157), +(176605, 'Shae', 2002, 'F', 157), +(176606, 'Grayson', 2002, 'F', 156), +(176607, 'Ivana', 2002, 'F', 156), +(176608, 'Jaci', 2002, 'F', 156), +(176609, 'Kyndall', 2002, 'F', 156), +(176610, 'Abrianna', 2002, 'F', 155), +(176611, 'Destany', 2002, 'F', 155), +(176612, 'Jacie', 2002, 'F', 155), +(176613, 'Keri', 2002, 'F', 155), +(176614, 'Siena', 2002, 'F', 155), +(176615, 'Elliana', 2002, 'F', 154), +(176616, 'Grecia', 2002, 'F', 154), +(176617, 'Griselda', 2002, 'F', 154), +(176618, 'Kyara', 2002, 'F', 154), +(176619, 'Leigha', 2002, 'F', 154), +(176620, 'Lilianna', 2002, 'F', 154), +(176621, 'Selah', 2002, 'F', 154), +(176622, 'Annelise', 2002, 'F', 153), +(176623, 'Beyonce', 2002, 'F', 153), +(176624, 'Bree', 2002, 'F', 153), +(176625, 'Cailin', 2002, 'F', 153), +(176626, 'Jaila', 2002, 'F', 153), +(176627, 'Mikala', 2002, 'F', 153), +(176628, 'Olga', 2002, 'F', 153), +(176629, 'Yamilet', 2002, 'F', 153), +(176630, 'Abbygail', 2002, 'F', 152), +(176631, 'Aleigha', 2002, 'F', 152), +(176632, 'Breanne', 2002, 'F', 152), +(176633, 'Cinthia', 2002, 'F', 152), +(176634, 'Elysia', 2002, 'F', 152), +(176635, 'Karsyn', 2002, 'F', 152), +(176636, 'Leia', 2002, 'F', 152), +(176637, 'Makiya', 2002, 'F', 152), +(176638, 'Reece', 2002, 'F', 152), +(176639, 'Ananya', 2002, 'F', 151), +(176640, 'Cailey', 2002, 'F', 151), +(176641, 'Colette', 2002, 'F', 151), +(176642, 'Elana', 2002, 'F', 151), +(176643, 'Hollie', 2002, 'F', 151), +(176644, 'Leeann', 2002, 'F', 151), +(176645, 'Kayden', 2002, 'F', 150), +(176646, 'Kaytlin', 2002, 'F', 150), +(176647, 'Kinsley', 2002, 'F', 150), +(176648, 'Stefany', 2002, 'F', 150), +(176649, 'Angeles', 2002, 'F', 149), +(176650, 'Bayleigh', 2002, 'F', 149), +(176651, 'Gissel', 2002, 'F', 149), +(176652, 'Katlin', 2002, 'F', 149), +(176653, 'Mason', 2002, 'F', 149), +(176654, 'Phoenix', 2002, 'F', 149), +(176655, 'Tasha', 2002, 'F', 149), +(176656, 'Zariah', 2002, 'F', 149), +(176657, 'Adilene', 2002, 'F', 148), +(176658, 'Connie', 2002, 'F', 148), +(176659, 'Jayleen', 2002, 'F', 148), +(176660, 'Kaylan', 2002, 'F', 148), +(176661, 'Kiah', 2002, 'F', 148), +(176662, 'Natali', 2002, 'F', 148), +(176663, 'Triniti', 2002, 'F', 148), +(176664, 'Yulissa', 2002, 'F', 148), +(176665, 'Alyse', 2002, 'F', 147), +(176666, 'Averi', 2002, 'F', 147), +(176667, 'Chyanne', 2002, 'F', 147), +(176668, 'Emalee', 2002, 'F', 147), +(176669, 'Lesli', 2002, 'F', 147), +(176670, 'Alecia', 2002, 'F', 146), +(176671, 'Antoinette', 2002, 'F', 146), +(176672, 'Briley', 2002, 'F', 146), +(176673, 'Cameryn', 2002, 'F', 146), +(176674, 'Jania', 2002, 'F', 146), +(176675, 'Jayme', 2002, 'F', 146), +(176676, 'Myla', 2002, 'F', 146), +(176677, 'Saniya', 2002, 'F', 146), +(176678, 'Shaelyn', 2002, 'F', 146), +(176679, 'Zainab', 2002, 'F', 146), +(176680, 'Annalisa', 2002, 'F', 145), +(176681, 'Darcy', 2002, 'F', 145), +(176682, 'Lucinda', 2002, 'F', 145), +(176683, 'Rubi', 2002, 'F', 145), +(176684, 'Zara', 2002, 'F', 145), +(176685, 'Alora', 2002, 'F', 144), +(176686, 'Anisha', 2002, 'F', 144), +(176687, 'Katheryn', 2002, 'F', 144), +(176688, 'Kelsea', 2002, 'F', 144), +(176689, 'Lacie', 2002, 'F', 144), +(176690, 'Nelly', 2002, 'F', 144), +(176691, 'Pauline', 2002, 'F', 144), +(176692, 'Terri', 2002, 'F', 144), +(176693, 'Acacia', 2002, 'F', 143), +(176694, 'Arden', 2002, 'F', 143), +(176695, 'Eleni', 2002, 'F', 143), +(176696, 'Fallon', 2002, 'F', 143), +(176697, 'Jadah', 2002, 'F', 143), +(176698, 'Janna', 2002, 'F', 143), +(176699, 'Jayna', 2002, 'F', 143), +(176700, 'Jennie', 2002, 'F', 143), +(176701, 'Marisela', 2002, 'F', 143), +(176702, 'Rosalie', 2002, 'F', 143), +(176703, 'Sanjana', 2002, 'F', 143), +(176704, 'Simran', 2002, 'F', 143), +(176705, 'Amirah', 2002, 'F', 142), +(176706, 'Jessenia', 2002, 'F', 142), +(176707, 'Leyla', 2002, 'F', 142), +(176708, 'Tanisha', 2002, 'F', 142), +(176709, 'Tionna', 2002, 'F', 142), +(176710, 'Yessica', 2002, 'F', 142), +(176711, 'Alannah', 2002, 'F', 141), +(176712, 'Anastacia', 2002, 'F', 141), +(176713, 'Cortney', 2002, 'F', 141), +(176714, 'Kerry', 2002, 'F', 141), +(176715, 'Mindy', 2002, 'F', 141), +(176716, 'Nautica', 2002, 'F', 141), +(176717, 'Rayne', 2002, 'F', 141), +(176718, 'Aiyanna', 2002, 'F', 140), +(176719, 'Aliah', 2002, 'F', 140), +(176720, 'Corina', 2002, 'F', 140), +(176721, 'Debra', 2002, 'F', 140), +(176722, 'Izabel', 2002, 'F', 140), +(176723, 'Mae', 2002, 'F', 140), +(176724, 'Marlena', 2002, 'F', 140), +(176725, 'Shay', 2002, 'F', 140), +(176726, 'Xochitl', 2002, 'F', 140), +(176727, 'Giavanna', 2002, 'F', 139), +(176728, 'Izabelle', 2002, 'F', 139), +(176729, 'Jala', 2002, 'F', 139), +(176730, 'Jill', 2002, 'F', 139), +(176731, 'Kayle', 2002, 'F', 139), +(176732, 'Lyla', 2002, 'F', 139), +(176733, 'Malena', 2002, 'F', 139), +(176734, 'Stormy', 2002, 'F', 139), +(176735, 'Tamya', 2002, 'F', 139), +(176736, 'Tristin', 2002, 'F', 139), +(176737, 'Amia', 2002, 'F', 138), +(176738, 'Ariella', 2002, 'F', 138), +(176739, 'Brylee', 2002, 'F', 138), +(176740, 'Gracey', 2002, 'F', 138), +(176741, 'Jacy', 2002, 'F', 138), +(176742, 'Kierstin', 2002, 'F', 138), +(176743, 'Lynn', 2002, 'F', 138), +(176744, 'Alani', 2002, 'F', 137), +(176745, 'Alyssia', 2002, 'F', 137), +(176746, 'Arabella', 2002, 'F', 137), +(176747, 'Chelsie', 2002, 'F', 137), +(176748, 'Mackenna', 2002, 'F', 137), +(176749, 'Shana', 2002, 'F', 137), +(176750, 'Terra', 2002, 'F', 137), +(176751, 'Tiffani', 2002, 'F', 137), +(176752, 'Tyana', 2002, 'F', 137), +(176753, 'Annmarie', 2002, 'F', 136), +(176754, 'Jaya', 2002, 'F', 136), +(176755, 'Kalista', 2002, 'F', 136), +(176756, 'Krysta', 2002, 'F', 136), +(176757, 'Roxanna', 2002, 'F', 136), +(176758, 'Valery', 2002, 'F', 136), +(176759, 'Adela', 2002, 'F', 135), +(176760, 'Brinley', 2002, 'F', 135), +(176761, 'Jennah', 2002, 'F', 135), +(176762, 'Kassie', 2002, 'F', 135), +(176763, 'Yazmine', 2002, 'F', 135), +(176764, 'Yulisa', 2002, 'F', 135), +(176765, 'Aniah', 2002, 'F', 134), +(176766, 'Austyn', 2002, 'F', 134), +(176767, 'Belinda', 2002, 'F', 134), +(176768, 'Gwen', 2002, 'F', 134), +(176769, 'Karleigh', 2002, 'F', 134), +(176770, 'Ria', 2002, 'F', 134), +(176771, 'Rosario', 2002, 'F', 134), +(176772, 'Shanya', 2002, 'F', 134), +(176773, 'Anabella', 2002, 'F', 133), +(176774, 'Analise', 2002, 'F', 133), +(176775, 'Emery', 2002, 'F', 133), +(176776, 'Kaytlyn', 2002, 'F', 133), +(176777, 'Kristal', 2002, 'F', 133), +(176778, 'Lilah', 2002, 'F', 133), +(176779, 'Liza', 2002, 'F', 133), +(176780, 'Mariel', 2002, 'F', 133), +(176781, 'Ravyn', 2002, 'F', 133), +(176782, 'Tamera', 2002, 'F', 133), +(176783, 'Aliana', 2002, 'F', 132), +(176784, 'Averie', 2002, 'F', 132), +(176785, 'Desire', 2002, 'F', 132), +(176786, 'Ginger', 2002, 'F', 132), +(176787, 'Jovanna', 2002, 'F', 132), +(176788, 'Kalia', 2002, 'F', 132), +(176789, 'Lisbet', 2002, 'F', 132), +(176790, 'Nylah', 2002, 'F', 132), +(176791, 'Odalis', 2002, 'F', 132), +(176792, 'Raelyn', 2002, 'F', 132), +(176793, 'Sana', 2002, 'F', 132), +(176794, 'Shanna', 2002, 'F', 132), +(176795, 'Tasia', 2002, 'F', 132), +(176796, 'Viridiana', 2002, 'F', 132), +(176797, 'Breann', 2002, 'F', 131), +(176798, 'Emmaline', 2002, 'F', 131), +(176799, 'Janya', 2002, 'F', 131), +(176800, 'Julieta', 2002, 'F', 131), +(176801, 'Micayla', 2002, 'F', 131), +(176802, 'Mila', 2002, 'F', 131), +(176803, 'Mykayla', 2002, 'F', 131), +(176804, 'Niyah', 2002, 'F', 131), +(176805, 'Ryley', 2002, 'F', 131), +(176806, 'Selene', 2002, 'F', 131), +(176807, 'Shantel', 2002, 'F', 131), +(176808, 'Adia', 2002, 'F', 130), +(176809, 'Blake', 2002, 'F', 130), +(176810, 'Demi', 2002, 'F', 130), +(176811, 'Farah', 2002, 'F', 130), +(176812, 'Jesenia', 2002, 'F', 130), +(176813, 'Kyndal', 2002, 'F', 130), +(176814, 'Lani', 2002, 'F', 130), +(176815, 'Lili', 2002, 'F', 130), +(176816, 'Marianne', 2002, 'F', 130), +(176817, 'Marion', 2002, 'F', 130), +(176818, 'Melia', 2002, 'F', 130), +(176819, 'Mikaila', 2002, 'F', 130), +(176820, 'Milan', 2002, 'F', 130), +(176821, 'Autum', 2002, 'F', 129), +(176822, 'Magaly', 2002, 'F', 129), +(176823, 'Myranda', 2002, 'F', 129), +(176824, 'Alli', 2002, 'F', 128), +(176825, 'Ananda', 2002, 'F', 128), +(176826, 'Gracelyn', 2002, 'F', 128), +(176827, 'Jessi', 2002, 'F', 128), +(176828, 'Laken', 2002, 'F', 128), +(176829, 'Maiya', 2002, 'F', 128), +(176830, 'Mariyah', 2002, 'F', 128), +(176831, 'Naya', 2002, 'F', 128), +(176832, 'Serina', 2002, 'F', 128), +(176833, 'Soleil', 2002, 'F', 128), +(176834, 'Ania', 2002, 'F', 127), +(176835, 'Ayah', 2002, 'F', 127), +(176836, 'Betty', 2002, 'F', 127), +(176837, 'Jessika', 2002, 'F', 127), +(176838, 'Raelynn', 2002, 'F', 127), +(176839, 'Sabina', 2002, 'F', 127), +(176840, 'Vianey', 2002, 'F', 127), +(176841, 'Wynter', 2002, 'F', 127), +(176842, 'Adelina', 2002, 'F', 126), +(176843, 'Elianna', 2002, 'F', 126), +(176844, 'Keanna', 2002, 'F', 126), +(176845, 'Keyanna', 2002, 'F', 126), +(176846, 'Linnea', 2002, 'F', 126), +(176847, 'Racheal', 2002, 'F', 126), +(176848, 'Sherry', 2002, 'F', 126), +(176849, 'Valencia', 2002, 'F', 126), +(176850, 'Camden', 2002, 'F', 125), +(176851, 'Daijah', 2002, 'F', 125), +(176852, 'Franchesca', 2002, 'F', 125), +(176853, 'Hattie', 2002, 'F', 125), +(176854, 'Karolina', 2002, 'F', 125), +(176855, 'Keisha', 2002, 'F', 125), +(176856, 'Markayla', 2002, 'F', 125), +(176857, 'Shamya', 2002, 'F', 125), +(176858, 'Zion', 2002, 'F', 125), +(176859, 'Baylie', 2002, 'F', 124), +(176860, 'Destinie', 2002, 'F', 124), +(176861, 'Dixie', 2002, 'F', 124), +(176862, 'Elayna', 2002, 'F', 124), +(176863, 'Farrah', 2002, 'F', 124), +(176864, 'Ivory', 2002, 'F', 124), +(176865, 'Janay', 2002, 'F', 124), +(176866, 'Jaycie', 2002, 'F', 124), +(176867, 'Lissette', 2002, 'F', 124), +(176868, 'Makaela', 2002, 'F', 124), +(176869, 'Makyla', 2002, 'F', 124), +(176870, 'Nallely', 2002, 'F', 124), +(176871, 'Shelbi', 2002, 'F', 124), +(176872, 'Thea', 2002, 'F', 124), +(176873, 'Vicky', 2002, 'F', 124), +(176874, 'Violeta', 2002, 'F', 124), +(176875, 'Angelia', 2002, 'F', 123), +(176876, 'Betsy', 2002, 'F', 123), +(176877, 'Brookelyn', 2002, 'F', 123), +(176878, 'Harleigh', 2002, 'F', 123), +(176879, 'Karime', 2002, 'F', 123), +(176880, 'Kristi', 2002, 'F', 123), +(176881, 'Maureen', 2002, 'F', 123), +(176882, 'Samya', 2002, 'F', 123), +(176883, 'Shanice', 2002, 'F', 123), +(176884, 'Shelly', 2002, 'F', 123), +(176885, 'Addyson', 2002, 'F', 122), +(176886, 'Annaliese', 2002, 'F', 122), +(176887, 'Halley', 2002, 'F', 122), +(176888, 'Harlie', 2002, 'F', 122), +(176889, 'Jackelyn', 2002, 'F', 122), +(176890, 'Kamille', 2002, 'F', 122), +(176891, 'Kerri', 2002, 'F', 122), +(176892, 'Monika', 2002, 'F', 122), +(176893, 'Rosie', 2002, 'F', 122), +(176894, 'Taniyah', 2002, 'F', 122), +(176895, 'Britany', 2002, 'F', 121), +(176896, 'Honesty', 2002, 'F', 121), +(176897, 'Magali', 2002, 'F', 121), +(176898, 'Maira', 2002, 'F', 121), +(176899, 'Chase', 2002, 'F', 120), +(176900, 'Elexis', 2002, 'F', 120), +(176901, 'Hilda', 2002, 'F', 120), +(176902, 'Jessalyn', 2002, 'F', 120), +(176903, 'Kendyl', 2002, 'F', 120), +(176904, 'Stefani', 2002, 'F', 120), +(176905, 'Anessa', 2002, 'F', 119), +(176906, 'Colby', 2002, 'F', 119), +(176907, 'Evelynn', 2002, 'F', 119), +(176908, 'Indya', 2002, 'F', 119), +(176909, 'Macayla', 2002, 'F', 119), +(176910, 'Mallorie', 2002, 'F', 119), +(176911, 'Nakia', 2002, 'F', 119), +(176912, 'Shira', 2002, 'F', 119), +(176913, 'Shivani', 2002, 'F', 119), +(176914, 'Ayesha', 2002, 'F', 118), +(176915, 'Gwenyth', 2002, 'F', 118), +(176916, 'Heavenly', 2002, 'F', 118), +(176917, 'Ivanna', 2002, 'F', 118), +(176918, 'Kala', 2002, 'F', 118), +(176919, 'Kristyn', 2002, 'F', 118), +(176920, 'Lorraine', 2002, 'F', 118), +(176921, 'Louisa', 2002, 'F', 118), +(176922, 'Mika', 2002, 'F', 118), +(176923, 'Zahra', 2002, 'F', 118), +(176924, 'Annemarie', 2002, 'F', 117), +(176925, 'Anyssa', 2002, 'F', 117), +(176926, 'Aysha', 2002, 'F', 117), +(176927, 'Corrine', 2002, 'F', 117), +(176928, 'Dafne', 2002, 'F', 117), +(176929, 'Edna', 2002, 'F', 117), +(176930, 'Emmy', 2002, 'F', 117), +(176931, 'Joann', 2002, 'F', 117), +(176932, 'Katya', 2002, 'F', 117), +(176933, 'Kaylea', 2002, 'F', 117), +(176934, 'Noa', 2002, 'F', 117), +(176935, 'Rosemarie', 2002, 'F', 117), +(176936, 'Alyvia', 2002, 'F', 116), +(176937, 'Arionna', 2002, 'F', 116), +(176938, 'Billie', 2002, 'F', 116), +(176939, 'Dajah', 2002, 'F', 116), +(176940, 'Giuliana', 2002, 'F', 116), +(176941, 'Joi', 2002, 'F', 116), +(176942, 'Moira', 2002, 'F', 116), +(176943, 'Rena', 2002, 'F', 116), +(176944, 'Samaria', 2002, 'F', 116), +(176945, 'Symone', 2002, 'F', 116), +(176946, 'Aida', 2002, 'F', 115), +(176947, 'Alanis', 2002, 'F', 115), +(176948, 'Anai', 2002, 'F', 115), +(176949, 'Ashlin', 2002, 'F', 115), +(176950, 'Cordelia', 2002, 'F', 115), +(176951, 'Deisy', 2002, 'F', 115), +(176952, 'Haileigh', 2002, 'F', 115), +(176953, 'Jalen', 2002, 'F', 115), +(176954, 'Kaniya', 2002, 'F', 115), +(176955, 'Keegan', 2002, 'F', 115), +(176956, 'Kloe', 2002, 'F', 115), +(176957, 'Mahogany', 2002, 'F', 115), +(176958, 'Makenzi', 2002, 'F', 115), +(176959, 'Malaya', 2002, 'F', 115), +(176960, 'Margot', 2002, 'F', 115), +(176961, 'Saira', 2002, 'F', 115), +(176962, 'Shaniah', 2002, 'F', 115), +(176963, 'Sommer', 2002, 'F', 115), +(176964, 'Yaire', 2002, 'F', 115), +(176965, 'Anneliese', 2002, 'F', 114), +(176966, 'Brigid', 2002, 'F', 114), +(176967, 'Cambria', 2002, 'F', 114), +(176968, 'Daja', 2002, 'F', 114), +(176969, 'Dalila', 2002, 'F', 114), +(176970, 'Johnna', 2002, 'F', 114), +(176971, 'Kaili', 2002, 'F', 114), +(176972, 'Kristian', 2002, 'F', 114), +(176973, 'Leandra', 2002, 'F', 114), +(176974, 'Alea', 2002, 'F', 113), +(176975, 'Belle', 2002, 'F', 113), +(176976, 'Bobbie', 2002, 'F', 113), +(176977, 'Emme', 2002, 'F', 113), +(176978, 'Kalee', 2002, 'F', 113), +(176979, 'Rayven', 2002, 'F', 113), +(176980, 'Shaniyah', 2002, 'F', 113), +(176981, 'Abbigale', 2002, 'F', 112), +(176982, 'Ayleen', 2002, 'F', 112), +(176983, 'Brea', 2002, 'F', 112), +(176984, 'Christen', 2002, 'F', 112), +(176985, 'Dani', 2002, 'F', 112), +(176986, 'Dara', 2002, 'F', 112), +(176987, 'Hali', 2002, 'F', 112), +(176988, 'Ivonne', 2002, 'F', 112), +(176989, 'Jocelyne', 2002, 'F', 112), +(176990, 'Kalea', 2002, 'F', 112), +(176991, 'Kamila', 2002, 'F', 112), +(176992, 'Kathrine', 2002, 'F', 112), +(176993, 'Tristyn', 2002, 'F', 112), +(176994, 'Anaiya', 2002, 'F', 111), +(176995, 'Andie', 2002, 'F', 111), +(176996, 'Dynasty', 2002, 'F', 111), +(176997, 'Jamila', 2002, 'F', 111), +(176998, 'Janell', 2002, 'F', 111), +(176999, 'Joan', 2002, 'F', 111), +(177000, 'Jodie', 2002, 'F', 111), +(177001, 'Keziah', 2002, 'F', 111), +(177002, 'Kim', 2002, 'F', 111), +(177003, 'Kiyah', 2002, 'F', 111), +(177004, 'Leena', 2002, 'F', 111), +(177005, 'Lilyana', 2002, 'F', 111), +(177006, 'Makiah', 2002, 'F', 111), +(177007, 'Matilda', 2002, 'F', 111), +(177008, 'Neida', 2002, 'F', 111), +(177009, 'Rilee', 2002, 'F', 111), +(177010, 'Valarie', 2002, 'F', 111), +(177011, 'Brieanna', 2002, 'F', 110), +(177012, 'Deandra', 2002, 'F', 110), +(177013, 'Evie', 2002, 'F', 110), +(177014, 'Jersey', 2002, 'F', 110), +(177015, 'Jorden', 2002, 'F', 110), +(177016, 'Louise', 2002, 'F', 110), +(177017, 'Madelyne', 2002, 'F', 110), +(177018, 'Marin', 2002, 'F', 110), +(177019, 'Mercy', 2002, 'F', 110), +(177020, 'Nailea', 2002, 'F', 110), +(177021, 'Pilar', 2002, 'F', 110), +(177022, 'Siera', 2002, 'F', 110), +(177023, 'Sonja', 2002, 'F', 110), +(177024, 'Tatiyana', 2002, 'F', 110), +(177025, 'Anette', 2002, 'F', 109), +(177026, 'Cianna', 2002, 'F', 109), +(177027, 'Dasha', 2002, 'F', 109), +(177028, 'Keyonna', 2002, 'F', 109), +(177029, 'Layne', 2002, 'F', 109), +(177030, 'Lynette', 2002, 'F', 109), +(177031, 'Meg', 2002, 'F', 109), +(177032, 'Paisley', 2002, 'F', 109), +(177033, 'Suzanna', 2002, 'F', 109), +(177034, 'Zakiya', 2002, 'F', 109), +(177035, 'Abriana', 2002, 'F', 108), +(177036, 'Alexsandra', 2002, 'F', 108), +(177037, 'Ambria', 2002, 'F', 108), +(177038, 'Anja', 2002, 'F', 108), +(177039, 'Calli', 2002, 'F', 108), +(177040, 'Infant', 2002, 'F', 108), +(177041, 'Jaquelyn', 2002, 'F', 108), +(177042, 'Kerrigan', 2002, 'F', 108), +(177043, 'Keyana', 2002, 'F', 108), +(177044, 'Kortney', 2002, 'F', 108), +(177045, 'Lashanti', 2002, 'F', 108), +(177046, 'Nakiya', 2002, 'F', 108), +(177047, 'Santana', 2002, 'F', 108), +(177048, 'Azariah', 2002, 'F', 107), +(177049, 'Beth', 2002, 'F', 107), +(177050, 'Cami', 2002, 'F', 107), +(177051, 'Ciarra', 2002, 'F', 107), +(177052, 'Cloey', 2002, 'F', 107), +(177053, 'Deana', 2002, 'F', 107), +(177054, 'Jacinda', 2002, 'F', 107), +(177055, 'Jalisa', 2002, 'F', 107), +(177056, 'Jamiya', 2002, 'F', 107), +(177057, 'June', 2002, 'F', 107), +(177058, 'Laniya', 2002, 'F', 107), +(177059, 'Marta', 2002, 'F', 107), +(177060, 'Rosalyn', 2002, 'F', 107), +(177061, 'Amberly', 2002, 'F', 106), +(177062, 'Christie', 2002, 'F', 106), +(177063, 'Laine', 2002, 'F', 106), +(177064, 'Lela', 2002, 'F', 106), +(177065, 'Lilli', 2002, 'F', 106), +(177066, 'Lupita', 2002, 'F', 106), +(177067, 'Malorie', 2002, 'F', 106), +(177068, 'Mercedez', 2002, 'F', 106), +(177069, 'Susannah', 2002, 'F', 106), +(177070, 'Xitlali', 2002, 'F', 106), +(177071, 'Adina', 2002, 'F', 105), +(177072, 'Annalee', 2002, 'F', 105), +(177073, 'Ariyana', 2002, 'F', 105), +(177074, 'Brissa', 2002, 'F', 105), +(177075, 'Dasani', 2002, 'F', 105), +(177076, 'Gisel', 2002, 'F', 105), +(177077, 'Hanah', 2002, 'F', 105), +(177078, 'Kaylene', 2002, 'F', 105), +(177079, 'Lexy', 2002, 'F', 105), +(177080, 'Maddie', 2002, 'F', 105), +(177081, 'Makiyah', 2002, 'F', 105), +(177082, 'Amiah', 2002, 'F', 104), +(177083, 'Cheryl', 2002, 'F', 104), +(177084, 'Dayanna', 2002, 'F', 104), +(177085, 'Dymond', 2002, 'F', 104), +(177086, 'Jeniffer', 2002, 'F', 104), +(177087, 'Leona', 2002, 'F', 104), +(177088, 'Soraya', 2002, 'F', 104), +(177089, 'Adrianne', 2002, 'F', 103), +(177090, 'Ashely', 2002, 'F', 103), +(177091, 'Aysia', 2002, 'F', 103), +(177092, 'Brynna', 2002, 'F', 103), +(177093, 'Cathryn', 2002, 'F', 103), +(177094, 'Charlee', 2002, 'F', 103), +(177095, 'Citlalli', 2002, 'F', 103), +(177096, 'Cori', 2002, 'F', 103), +(177097, 'Dariana', 2002, 'F', 103), +(177098, 'Divya', 2002, 'F', 103), +(177099, 'Holland', 2002, 'F', 103), +(177100, 'Imari', 2002, 'F', 103), +(177101, 'Jadelyn', 2002, 'F', 103), +(177102, 'Kami', 2002, 'F', 103), +(177103, 'Latavia', 2002, 'F', 103), +(177104, 'Lianna', 2002, 'F', 103), +(177105, 'Lilith', 2002, 'F', 103), +(177106, 'Makaylah', 2002, 'F', 103), +(177107, 'Nikole', 2002, 'F', 103), +(177108, 'Olyvia', 2002, 'F', 103), +(177109, 'Tamar', 2002, 'F', 103), +(177110, 'Tyasia', 2002, 'F', 103), +(177111, 'Vera', 2002, 'F', 103), +(177112, 'Alanah', 2002, 'F', 102), +(177113, 'Breeanna', 2002, 'F', 102), +(177114, 'Evan', 2002, 'F', 102), +(177115, 'Faye', 2002, 'F', 102), +(177116, 'Jocelin', 2002, 'F', 102), +(177117, 'Keona', 2002, 'F', 102), +(177118, 'Marla', 2002, 'F', 102), +(177119, 'Sloane', 2002, 'F', 102), +(177120, 'Adison', 2002, 'F', 101), +(177121, 'Aditi', 2002, 'F', 101), +(177122, 'Bernadette', 2002, 'F', 101), +(177123, 'Brigitte', 2002, 'F', 101), +(177124, 'Candy', 2002, 'F', 101), +(177125, 'Elly', 2002, 'F', 101), +(177126, 'Ilana', 2002, 'F', 101), +(177127, 'Kaileigh', 2002, 'F', 101), +(177128, 'Kalina', 2002, 'F', 101), +(177129, 'Marguerite', 2002, 'F', 101), +(177130, 'Remi', 2002, 'F', 101), +(177131, 'Tabatha', 2002, 'F', 101), +(177132, 'Analisa', 2002, 'F', 100), +(177133, 'Bobbi', 2002, 'F', 100), +(177134, 'Chastity', 2002, 'F', 100), +(177135, 'Jaela', 2002, 'F', 100), +(177136, 'Jaimie', 2002, 'F', 100), +(177137, 'Jakiya', 2002, 'F', 100), +(177138, 'Kaeli', 2002, 'F', 100), +(177139, 'Karah', 2002, 'F', 100), +(177140, 'Kirstyn', 2002, 'F', 100), +(177141, 'Kora', 2002, 'F', 100), +(177142, 'Tierney', 2002, 'F', 100), +(177143, 'Tyla', 2002, 'F', 100), +(177144, 'Ysabella', 2002, 'F', 100), +(177145, 'Jacob', 2002, 'M', 30556), +(177146, 'Michael', 2002, 'M', 28242), +(177147, 'Joshua', 2002, 'M', 25978), +(177148, 'Matthew', 2002, 'M', 25148), +(177149, 'Ethan', 2002, 'M', 22105), +(177150, 'Andrew', 2002, 'M', 22012), +(177151, 'Joseph', 2002, 'M', 21887), +(177152, 'Christopher', 2002, 'M', 21673), +(177153, 'Nicholas', 2002, 'M', 21386), +(177154, 'Daniel', 2002, 'M', 21303), +(177155, 'William', 2002, 'M', 20117), +(177156, 'Anthony', 2002, 'M', 19578), +(177157, 'David', 2002, 'M', 18662), +(177158, 'Tyler', 2002, 'M', 18260), +(177159, 'Alexander', 2002, 'M', 17706), +(177160, 'Ryan', 2002, 'M', 17656), +(177161, 'John', 2002, 'M', 17437), +(177162, 'James', 2002, 'M', 16951), +(177163, 'Zachary', 2002, 'M', 16622), +(177164, 'Brandon', 2002, 'M', 16271), +(177165, 'Jonathan', 2002, 'M', 15505), +(177166, 'Justin', 2002, 'M', 14900), +(177167, 'Dylan', 2002, 'M', 14816), +(177168, 'Christian', 2002, 'M', 14587), +(177169, 'Samuel', 2002, 'M', 14552), +(177170, 'Austin', 2002, 'M', 14535), +(177171, 'Benjamin', 2002, 'M', 13475), +(177172, 'Nathan', 2002, 'M', 13221), +(177173, 'Logan', 2002, 'M', 12969), +(177174, 'Jose', 2002, 'M', 12858), +(177175, 'Noah', 2002, 'M', 12064), +(177176, 'Gabriel', 2002, 'M', 12052), +(177177, 'Kevin', 2002, 'M', 12043), +(177178, 'Robert', 2002, 'M', 12023), +(177179, 'Caleb', 2002, 'M', 11655), +(177180, 'Thomas', 2002, 'M', 11291), +(177181, 'Jordan', 2002, 'M', 11145), +(177182, 'Hunter', 2002, 'M', 11083), +(177183, 'Cameron', 2002, 'M', 10336), +(177184, 'Kyle', 2002, 'M', 10059), +(177185, 'Elijah', 2002, 'M', 10049), +(177186, 'Jason', 2002, 'M', 9953), +(177187, 'Aaron', 2002, 'M', 8997), +(177188, 'Jack', 2002, 'M', 8996), +(177189, 'Isaiah', 2002, 'M', 8958), +(177190, 'Luke', 2002, 'M', 8692), +(177191, 'Connor', 2002, 'M', 8409), +(177192, 'Isaac', 2002, 'M', 8303), +(177193, 'Angel', 2002, 'M', 8184), +(177194, 'Jackson', 2002, 'M', 8150), +(177195, 'Brian', 2002, 'M', 8081), +(177196, 'Eric', 2002, 'M', 7926), +(177197, 'Mason', 2002, 'M', 7878), +(177198, 'Juan', 2002, 'M', 7817), +(177199, 'Adam', 2002, 'M', 7749), +(177200, 'Evan', 2002, 'M', 7385), +(177201, 'Luis', 2002, 'M', 7376), +(177202, 'Charles', 2002, 'M', 7203), +(177203, 'Sean', 2002, 'M', 7029), +(177204, 'Aidan', 2002, 'M', 6952), +(177205, 'Gavin', 2002, 'M', 6949), +(177206, 'Nathaniel', 2002, 'M', 6807), +(177207, 'Alex', 2002, 'M', 6805), +(177208, 'Bryan', 2002, 'M', 6614), +(177209, 'Carlos', 2002, 'M', 6586), +(177210, 'Jesus', 2002, 'M', 6366), +(177211, 'Ian', 2002, 'M', 6359), +(177212, 'Steven', 2002, 'M', 6216), +(177213, 'Cole', 2002, 'M', 6035), +(177214, 'Timothy', 2002, 'M', 6011), +(177215, 'Cody', 2002, 'M', 5934), +(177216, 'Seth', 2002, 'M', 5736), +(177217, 'Adrian', 2002, 'M', 5679), +(177218, 'Devin', 2002, 'M', 5433), +(177219, 'Lucas', 2002, 'M', 5378), +(177220, 'Blake', 2002, 'M', 5357), +(177221, 'Richard', 2002, 'M', 5317), +(177222, 'Julian', 2002, 'M', 5223), +(177223, 'Patrick', 2002, 'M', 5152), +(177224, 'Sebastian', 2002, 'M', 5134), +(177225, 'Trevor', 2002, 'M', 5060), +(177226, 'Chase', 2002, 'M', 4857), +(177227, 'Dominic', 2002, 'M', 4851), +(177228, 'Jared', 2002, 'M', 4835), +(177229, 'Antonio', 2002, 'M', 4724), +(177230, 'Jeremiah', 2002, 'M', 4714), +(177231, 'Xavier', 2002, 'M', 4647), +(177232, 'Jaden', 2002, 'M', 4645), +(177233, 'Miguel', 2002, 'M', 4642), +(177234, 'Jesse', 2002, 'M', 4428), +(177235, 'Garrett', 2002, 'M', 4356), +(177236, 'Alejandro', 2002, 'M', 4354), +(177237, 'Mark', 2002, 'M', 4221), +(177238, 'Owen', 2002, 'M', 4188), +(177239, 'Jeremy', 2002, 'M', 4164), +(177240, 'Hayden', 2002, 'M', 4140), +(177241, 'Bryce', 2002, 'M', 4067), +(177242, 'Diego', 2002, 'M', 3977), +(177243, 'Riley', 2002, 'M', 3958), +(177244, 'Victor', 2002, 'M', 3932), +(177245, 'Jayden', 2002, 'M', 3853), +(177246, 'Jake', 2002, 'M', 3790), +(177247, 'Tristan', 2002, 'M', 3723), +(177248, 'Kenneth', 2002, 'M', 3663), +(177249, 'Carson', 2002, 'M', 3598), +(177250, 'Marcus', 2002, 'M', 3542), +(177251, 'Dakota', 2002, 'M', 3484), +(177252, 'Carter', 2002, 'M', 3480), +(177253, 'Jorge', 2002, 'M', 3456), +(177254, 'Spencer', 2002, 'M', 3448), +(177255, 'Tanner', 2002, 'M', 3446), +(177256, 'Kaleb', 2002, 'M', 3445), +(177257, 'Liam', 2002, 'M', 3381), +(177258, 'Stephen', 2002, 'M', 3344), +(177259, 'Henry', 2002, 'M', 3326), +(177260, 'Colin', 2002, 'M', 3313), +(177261, 'Dalton', 2002, 'M', 3282), +(177262, 'Paul', 2002, 'M', 3256), +(177263, 'Edward', 2002, 'M', 3239), +(177264, 'Oscar', 2002, 'M', 3232); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(177265, 'Wyatt', 2002, 'M', 3232), +(177266, 'Vincent', 2002, 'M', 3185), +(177267, 'Joel', 2002, 'M', 3184), +(177268, 'Brendan', 2002, 'M', 3141), +(177269, 'Colby', 2002, 'M', 3118), +(177270, 'Parker', 2002, 'M', 3097), +(177271, 'Grant', 2002, 'M', 3075), +(177272, 'Colton', 2002, 'M', 3047), +(177273, 'Maxwell', 2002, 'M', 3036), +(177274, 'Shane', 2002, 'M', 3029), +(177275, 'George', 2002, 'M', 3013), +(177276, 'Jeffrey', 2002, 'M', 2999), +(177277, 'Eduardo', 2002, 'M', 2957), +(177278, 'Peter', 2002, 'M', 2865), +(177279, 'Aiden', 2002, 'M', 2831), +(177280, 'Ivan', 2002, 'M', 2811), +(177281, 'Nicolas', 2002, 'M', 2809), +(177282, 'Brayden', 2002, 'M', 2807), +(177283, 'Derek', 2002, 'M', 2786), +(177284, 'Gage', 2002, 'M', 2746), +(177285, 'Francisco', 2002, 'M', 2738), +(177286, 'Landon', 2002, 'M', 2723), +(177287, 'Ricardo', 2002, 'M', 2708), +(177288, 'Travis', 2002, 'M', 2700), +(177289, 'Cristian', 2002, 'M', 2685), +(177290, 'Jalen', 2002, 'M', 2685), +(177291, 'Brady', 2002, 'M', 2658), +(177292, 'Collin', 2002, 'M', 2655), +(177293, 'Bradley', 2002, 'M', 2644), +(177294, 'Alan', 2002, 'M', 2622), +(177295, 'Omar', 2002, 'M', 2621), +(177296, 'Shawn', 2002, 'M', 2615), +(177297, 'Caden', 2002, 'M', 2601), +(177298, 'Josiah', 2002, 'M', 2566), +(177299, 'Preston', 2002, 'M', 2515), +(177300, 'Erik', 2002, 'M', 2460), +(177301, 'Andres', 2002, 'M', 2438), +(177302, 'Javier', 2002, 'M', 2434), +(177303, 'Fernando', 2002, 'M', 2423), +(177304, 'Devon', 2002, 'M', 2394), +(177305, 'Alexis', 2002, 'M', 2379), +(177306, 'Cesar', 2002, 'M', 2365), +(177307, 'Damian', 2002, 'M', 2344), +(177308, 'Manuel', 2002, 'M', 2324), +(177309, 'Max', 2002, 'M', 2318), +(177310, 'Jonah', 2002, 'M', 2312), +(177311, 'Levi', 2002, 'M', 2308), +(177312, 'Braden', 2002, 'M', 2291), +(177313, 'Gregory', 2002, 'M', 2277), +(177314, 'Johnathan', 2002, 'M', 2262), +(177315, 'Mario', 2002, 'M', 2261), +(177316, 'Nolan', 2002, 'M', 2232), +(177317, 'Micah', 2002, 'M', 2223), +(177318, 'Kaden', 2002, 'M', 2220), +(177319, 'Edgar', 2002, 'M', 2196), +(177320, 'Raymond', 2002, 'M', 2175), +(177321, 'Mitchell', 2002, 'M', 2172), +(177322, 'Clayton', 2002, 'M', 2160), +(177323, 'Edwin', 2002, 'M', 2145), +(177324, 'Trenton', 2002, 'M', 2118), +(177325, 'Corey', 2002, 'M', 2105), +(177326, 'Erick', 2002, 'M', 2052), +(177327, 'Wesley', 2002, 'M', 2049), +(177328, 'Emmanuel', 2002, 'M', 2030), +(177329, 'Scott', 2002, 'M', 2026), +(177330, 'Marco', 2002, 'M', 2025), +(177331, 'Sergio', 2002, 'M', 2019), +(177332, 'Roberto', 2002, 'M', 1993), +(177333, 'Dustin', 2002, 'M', 1981), +(177334, 'Taylor', 2002, 'M', 1964), +(177335, 'Donovan', 2002, 'M', 1963), +(177336, 'Martin', 2002, 'M', 1959), +(177337, 'Dawson', 2002, 'M', 1953), +(177338, 'Hector', 2002, 'M', 1941), +(177339, 'Cooper', 2002, 'M', 1931), +(177340, 'Conner', 2002, 'M', 1926), +(177341, 'Eli', 2002, 'M', 1924), +(177342, 'Brett', 2002, 'M', 1867), +(177343, 'Harrison', 2002, 'M', 1866), +(177344, 'Ashton', 2002, 'M', 1853), +(177345, 'Dillon', 2002, 'M', 1847), +(177346, 'Giovanni', 2002, 'M', 1841), +(177347, 'Jakob', 2002, 'M', 1836), +(177348, 'Abraham', 2002, 'M', 1796), +(177349, 'Peyton', 2002, 'M', 1763), +(177350, 'Alec', 2002, 'M', 1748), +(177351, 'Andy', 2002, 'M', 1715), +(177352, 'Cade', 2002, 'M', 1715), +(177353, 'Andre', 2002, 'M', 1698), +(177354, 'Malachi', 2002, 'M', 1672), +(177355, 'Malik', 2002, 'M', 1659), +(177356, 'Damien', 2002, 'M', 1652), +(177357, 'Trey', 2002, 'M', 1610), +(177358, 'Ty', 2002, 'M', 1608), +(177359, 'Jaylen', 2002, 'M', 1598), +(177360, 'Frank', 2002, 'M', 1588), +(177361, 'Drew', 2002, 'M', 1575), +(177362, 'Elias', 2002, 'M', 1574), +(177363, 'Ruben', 2002, 'M', 1571), +(177364, 'Josue', 2002, 'M', 1566), +(177365, 'Calvin', 2002, 'M', 1560), +(177366, 'Skyler', 2002, 'M', 1558), +(177367, 'Zane', 2002, 'M', 1557), +(177368, 'Dominick', 2002, 'M', 1555), +(177369, 'Pedro', 2002, 'M', 1554), +(177370, 'Phillip', 2002, 'M', 1549), +(177371, 'Ronald', 2002, 'M', 1519), +(177372, 'Griffin', 2002, 'M', 1472), +(177373, 'Bryson', 2002, 'M', 1469), +(177374, 'Leonardo', 2002, 'M', 1460), +(177375, 'Trent', 2002, 'M', 1453), +(177376, 'Rafael', 2002, 'M', 1452), +(177377, 'Chance', 2002, 'M', 1448), +(177378, 'Gerardo', 2002, 'M', 1443), +(177379, 'Derrick', 2002, 'M', 1437), +(177380, 'Johnny', 2002, 'M', 1434), +(177381, 'Darius', 2002, 'M', 1421), +(177382, 'Chandler', 2002, 'M', 1417), +(177383, 'Miles', 2002, 'M', 1416), +(177384, 'Raul', 2002, 'M', 1406), +(177385, 'Casey', 2002, 'M', 1398), +(177386, 'Simon', 2002, 'M', 1397), +(177387, 'Armando', 2002, 'M', 1393), +(177388, 'Kobe', 2002, 'M', 1392), +(177389, 'Avery', 2002, 'M', 1387), +(177390, 'Allen', 2002, 'M', 1377), +(177391, 'Marcos', 2002, 'M', 1327), +(177392, 'Keith', 2002, 'M', 1324), +(177393, 'Troy', 2002, 'M', 1300), +(177394, 'Enrique', 2002, 'M', 1299), +(177395, 'Israel', 2002, 'M', 1297), +(177396, 'Donald', 2002, 'M', 1288), +(177397, 'Keegan', 2002, 'M', 1284), +(177398, 'Zackary', 2002, 'M', 1275), +(177399, 'Julio', 2002, 'M', 1273), +(177400, 'Payton', 2002, 'M', 1273), +(177401, 'Dante', 2002, 'M', 1267), +(177402, 'Jaime', 2002, 'M', 1262), +(177403, 'Brenden', 2002, 'M', 1240), +(177404, 'Kameron', 2002, 'M', 1233), +(177405, 'Lance', 2002, 'M', 1232), +(177406, 'Alberto', 2002, 'M', 1229), +(177407, 'Philip', 2002, 'M', 1200), +(177408, 'Brock', 2002, 'M', 1190), +(177409, 'Gustavo', 2002, 'M', 1176), +(177410, 'Drake', 2002, 'M', 1169), +(177411, 'Jimmy', 2002, 'M', 1169), +(177412, 'Oliver', 2002, 'M', 1165), +(177413, 'Jonathon', 2002, 'M', 1161), +(177414, 'Danny', 2002, 'M', 1157), +(177415, 'Fabian', 2002, 'M', 1150), +(177416, 'Louis', 2002, 'M', 1142), +(177417, 'Mathew', 2002, 'M', 1122), +(177418, 'Brennan', 2002, 'M', 1121), +(177419, 'Cory', 2002, 'M', 1118), +(177420, 'Kai', 2002, 'M', 1107), +(177421, 'Kyler', 2002, 'M', 1106), +(177422, 'Angelo', 2002, 'M', 1085), +(177423, 'Brody', 2002, 'M', 1083), +(177424, 'Dennis', 2002, 'M', 1081), +(177425, 'Jace', 2002, 'M', 1070), +(177426, 'Tony', 2002, 'M', 1070), +(177427, 'Marc', 2002, 'M', 1068), +(177428, 'Gary', 2002, 'M', 1042), +(177429, 'Roman', 2002, 'M', 1040), +(177430, 'Camden', 2002, 'M', 1039), +(177431, 'Jerry', 2002, 'M', 1038), +(177432, 'Arturo', 2002, 'M', 1032), +(177433, 'Saul', 2002, 'M', 1028), +(177434, 'Damon', 2002, 'M', 1027), +(177435, 'Curtis', 2002, 'M', 1024), +(177436, 'Corbin', 2002, 'M', 1020), +(177437, 'Randy', 2002, 'M', 1017), +(177438, 'Emanuel', 2002, 'M', 1014), +(177439, 'Pablo', 2002, 'M', 1011), +(177440, 'Tucker', 2002, 'M', 999), +(177441, 'Lorenzo', 2002, 'M', 987), +(177442, 'Albert', 2002, 'M', 983), +(177443, 'Lane', 2002, 'M', 981), +(177444, 'Theodore', 2002, 'M', 975), +(177445, 'Myles', 2002, 'M', 970), +(177446, 'Darren', 2002, 'M', 969), +(177447, 'Alfredo', 2002, 'M', 958), +(177448, 'Bryant', 2002, 'M', 952), +(177449, 'Douglas', 2002, 'M', 952), +(177450, 'Larry', 2002, 'M', 952), +(177451, 'Tyson', 2002, 'M', 932), +(177452, 'Grayson', 2002, 'M', 929), +(177453, 'Chad', 2002, 'M', 928), +(177454, 'Jaxon', 2002, 'M', 920), +(177455, 'Joe', 2002, 'M', 917), +(177456, 'Quinn', 2002, 'M', 914), +(177457, 'Maximus', 2002, 'M', 912), +(177458, 'Axel', 2002, 'M', 910), +(177459, 'Melvin', 2002, 'M', 903), +(177460, 'Tristen', 2002, 'M', 902), +(177461, 'Nickolas', 2002, 'M', 891), +(177462, 'Lukas', 2002, 'M', 889), +(177463, 'Ali', 2002, 'M', 869), +(177464, 'Ramon', 2002, 'M', 868), +(177465, 'Santiago', 2002, 'M', 863), +(177466, 'Ayden', 2002, 'M', 861), +(177467, 'Zachery', 2002, 'M', 854), +(177468, 'Ernesto', 2002, 'M', 853), +(177469, 'Bailey', 2002, 'M', 851), +(177470, 'Arthur', 2002, 'M', 844), +(177471, 'Russell', 2002, 'M', 838), +(177472, 'Braxton', 2002, 'M', 836), +(177473, 'Kristopher', 2002, 'M', 836), +(177474, 'Jayson', 2002, 'M', 833), +(177475, 'Walter', 2002, 'M', 833), +(177476, 'Justice', 2002, 'M', 831), +(177477, 'Zion', 2002, 'M', 828), +(177478, 'Jay', 2002, 'M', 823), +(177479, 'Esteban', 2002, 'M', 817), +(177480, 'Moises', 2002, 'M', 817), +(177481, 'Emilio', 2002, 'M', 815), +(177482, 'Ismael', 2002, 'M', 809), +(177483, 'Leo', 2002, 'M', 809), +(177484, 'Dallas', 2002, 'M', 804), +(177485, 'Ricky', 2002, 'M', 801), +(177486, 'Tommy', 2002, 'M', 801), +(177487, 'Salvador', 2002, 'M', 798), +(177488, 'Marvin', 2002, 'M', 796), +(177489, 'Lawrence', 2002, 'M', 793), +(177490, 'Ezekiel', 2002, 'M', 791), +(177491, 'Micheal', 2002, 'M', 791), +(177492, 'Camron', 2002, 'M', 785), +(177493, 'Carl', 2002, 'M', 784), +(177494, 'Reece', 2002, 'M', 780), +(177495, 'Quentin', 2002, 'M', 777), +(177496, 'Mauricio', 2002, 'M', 775), +(177497, 'Abel', 2002, 'M', 774), +(177498, 'Mateo', 2002, 'M', 764), +(177499, 'Brayan', 2002, 'M', 761), +(177500, 'Jaheim', 2002, 'M', 752), +(177501, 'Isiah', 2002, 'M', 746), +(177502, 'Nikolas', 2002, 'M', 744), +(177503, 'Amir', 2002, 'M', 743), +(177504, 'Braeden', 2002, 'M', 741), +(177505, 'Jeffery', 2002, 'M', 733), +(177506, 'Brent', 2002, 'M', 727), +(177507, 'Jamal', 2002, 'M', 726), +(177508, 'Deandre', 2002, 'M', 724), +(177509, 'Jon', 2002, 'M', 722), +(177510, 'Kade', 2002, 'M', 717), +(177511, 'Marshall', 2002, 'M', 717), +(177512, 'Branden', 2002, 'M', 714), +(177513, 'Rodney', 2002, 'M', 714), +(177514, 'Hugo', 2002, 'M', 713), +(177515, 'Dean', 2002, 'M', 711), +(177516, 'Orlando', 2002, 'M', 708), +(177517, 'Morgan', 2002, 'M', 707), +(177518, 'Jaiden', 2002, 'M', 703), +(177519, 'Cayden', 2002, 'M', 699), +(177520, 'Jarrett', 2002, 'M', 699), +(177521, 'Maurice', 2002, 'M', 697), +(177522, 'Craig', 2002, 'M', 688), +(177523, 'Terry', 2002, 'M', 686), +(177524, 'Weston', 2002, 'M', 685), +(177525, 'Chris', 2002, 'M', 684), +(177526, 'Eddie', 2002, 'M', 680), +(177527, 'Skylar', 2002, 'M', 680), +(177528, 'Kolby', 2002, 'M', 676), +(177529, 'Roger', 2002, 'M', 676), +(177530, 'Conor', 2002, 'M', 675), +(177531, 'Jaylin', 2002, 'M', 675), +(177532, 'Reese', 2002, 'M', 675), +(177533, 'Keaton', 2002, 'M', 670), +(177534, 'Davis', 2002, 'M', 666), +(177535, 'Kody', 2002, 'M', 664), +(177536, 'Rodrigo', 2002, 'M', 664), +(177537, 'Trevon', 2002, 'M', 663), +(177538, 'Felix', 2002, 'M', 661), +(177539, 'Kelvin', 2002, 'M', 659), +(177540, 'Zachariah', 2002, 'M', 658), +(177541, 'Jessie', 2002, 'M', 652), +(177542, 'Jaylon', 2002, 'M', 646), +(177543, 'Bobby', 2002, 'M', 644), +(177544, 'Brendon', 2002, 'M', 643), +(177545, 'Shaun', 2002, 'M', 635), +(177546, 'Javon', 2002, 'M', 627), +(177547, 'Julius', 2002, 'M', 627), +(177548, 'Ahmad', 2002, 'M', 626), +(177549, 'Guillermo', 2002, 'M', 626), +(177550, 'Walker', 2002, 'M', 622), +(177551, 'Quinton', 2002, 'M', 620), +(177552, 'Aldo', 2002, 'M', 618), +(177553, 'Nelson', 2002, 'M', 618), +(177554, 'Zackery', 2002, 'M', 618), +(177555, 'Graham', 2002, 'M', 617), +(177556, 'Holden', 2002, 'M', 614), +(177557, 'Issac', 2002, 'M', 614), +(177558, 'Johnathon', 2002, 'M', 609), +(177559, 'Jadon', 2002, 'M', 604), +(177560, 'Charlie', 2002, 'M', 599), +(177561, 'Clay', 2002, 'M', 596), +(177562, 'Osvaldo', 2002, 'M', 594), +(177563, 'Dorian', 2002, 'M', 586), +(177564, 'Rene', 2002, 'M', 586), +(177565, 'Demetrius', 2002, 'M', 584), +(177566, 'Khalil', 2002, 'M', 583), +(177567, 'Billy', 2002, 'M', 582), +(177568, 'Desmond', 2002, 'M', 582), +(177569, 'Reginald', 2002, 'M', 582), +(177570, 'Malcolm', 2002, 'M', 581), +(177571, 'Frederick', 2002, 'M', 580), +(177572, 'Damion', 2002, 'M', 579), +(177573, 'Nasir', 2002, 'M', 579), +(177574, 'Quincy', 2002, 'M', 579), +(177575, 'Silas', 2002, 'M', 579), +(177576, 'Blaine', 2002, 'M', 576), +(177577, 'Harley', 2002, 'M', 576), +(177578, 'Davion', 2002, 'M', 572), +(177579, 'Jonas', 2002, 'M', 571), +(177580, 'Elliot', 2002, 'M', 570), +(177581, 'Willie', 2002, 'M', 569), +(177582, 'Ezra', 2002, 'M', 564), +(177583, 'Roy', 2002, 'M', 564), +(177584, 'Declan', 2002, 'M', 562), +(177585, 'Terrance', 2002, 'M', 561), +(177586, 'Sam', 2002, 'M', 558), +(177587, 'Adan', 2002, 'M', 556), +(177588, 'Gerald', 2002, 'M', 556), +(177589, 'Bennett', 2002, 'M', 555), +(177590, 'Reid', 2002, 'M', 551), +(177591, 'Jermaine', 2002, 'M', 550), +(177592, 'Kenny', 2002, 'M', 550), +(177593, 'Noel', 2002, 'M', 548), +(177594, 'Uriel', 2002, 'M', 548), +(177595, 'Felipe', 2002, 'M', 544), +(177596, 'Steve', 2002, 'M', 543), +(177597, 'Tyrese', 2002, 'M', 543), +(177598, 'Nathanael', 2002, 'M', 538), +(177599, 'Tate', 2002, 'M', 535), +(177600, 'Dane', 2002, 'M', 534), +(177601, 'Kristian', 2002, 'M', 533), +(177602, 'Alvin', 2002, 'M', 528), +(177603, 'Emiliano', 2002, 'M', 528), +(177604, 'Solomon', 2002, 'M', 526), +(177605, 'Kendall', 2002, 'M', 524), +(177606, 'Tomas', 2002, 'M', 523), +(177607, 'Noe', 2002, 'M', 517), +(177608, 'Triston', 2002, 'M', 516), +(177609, 'Aden', 2002, 'M', 513), +(177610, 'Bruce', 2002, 'M', 510), +(177611, 'Wilson', 2002, 'M', 509), +(177612, 'Todd', 2002, 'M', 508), +(177613, 'Franklin', 2002, 'M', 507), +(177614, 'Moses', 2002, 'M', 507), +(177615, 'Cyrus', 2002, 'M', 506), +(177616, 'Amari', 2002, 'M', 505), +(177617, 'Terrell', 2002, 'M', 503), +(177618, 'Rylan', 2002, 'M', 500), +(177619, 'Toby', 2002, 'M', 500), +(177620, 'Landen', 2002, 'M', 497), +(177621, 'Allan', 2002, 'M', 495), +(177622, 'Darian', 2002, 'M', 487), +(177623, 'Rogelio', 2002, 'M', 487), +(177624, 'Hudson', 2002, 'M', 483), +(177625, 'Cedric', 2002, 'M', 481), +(177626, 'Maximilian', 2002, 'M', 481), +(177627, 'Jasper', 2002, 'M', 478), +(177628, 'Asher', 2002, 'M', 477), +(177629, 'Jaquan', 2002, 'M', 476), +(177630, 'Byron', 2002, 'M', 473), +(177631, 'Duncan', 2002, 'M', 472), +(177632, 'Jerome', 2002, 'M', 472), +(177633, 'Stanley', 2002, 'M', 472), +(177634, 'Tristin', 2002, 'M', 472), +(177635, 'Leon', 2002, 'M', 470), +(177636, 'Kendrick', 2002, 'M', 469), +(177637, 'Alfonso', 2002, 'M', 468), +(177638, 'Reed', 2002, 'M', 468), +(177639, 'Dale', 2002, 'M', 466), +(177640, 'Joaquin', 2002, 'M', 466), +(177641, 'Francis', 2002, 'M', 464), +(177642, 'Dayton', 2002, 'M', 463), +(177643, 'Sawyer', 2002, 'M', 463), +(177644, 'Coby', 2002, 'M', 462), +(177645, 'Marquis', 2002, 'M', 456), +(177646, 'Kayden', 2002, 'M', 454), +(177647, 'Beau', 2002, 'M', 452), +(177648, 'Mohamed', 2002, 'M', 452), +(177649, 'Rodolfo', 2002, 'M', 452), +(177650, 'Ramiro', 2002, 'M', 451), +(177651, 'Tyrone', 2002, 'M', 451), +(177652, 'Ahmed', 2002, 'M', 448), +(177653, 'Joey', 2002, 'M', 448), +(177654, 'Deven', 2002, 'M', 447), +(177655, 'Johan', 2002, 'M', 447), +(177656, 'Marlon', 2002, 'M', 447), +(177657, 'Randall', 2002, 'M', 443), +(177658, 'Ariel', 2002, 'M', 441), +(177659, 'Devan', 2002, 'M', 441), +(177660, 'Braydon', 2002, 'M', 439), +(177661, 'Lee', 2002, 'M', 439), +(177662, 'Pierce', 2002, 'M', 438), +(177663, 'Harry', 2002, 'M', 437), +(177664, 'Rohan', 2002, 'M', 437), +(177665, 'Trace', 2002, 'M', 437), +(177666, 'Gilberto', 2002, 'M', 434), +(177667, 'Alonzo', 2002, 'M', 433), +(177668, 'Jaydon', 2002, 'M', 430), +(177669, 'Luca', 2002, 'M', 430), +(177670, 'Kaiden', 2002, 'M', 428), +(177671, 'Warren', 2002, 'M', 427), +(177672, 'Jamie', 2002, 'M', 425), +(177673, 'Ross', 2002, 'M', 424), +(177674, 'Tobias', 2002, 'M', 424), +(177675, 'Jude', 2002, 'M', 423), +(177676, 'Mohammad', 2002, 'M', 422), +(177677, 'Zander', 2002, 'M', 420), +(177678, 'Omarion', 2002, 'M', 418), +(177679, 'Tyrell', 2002, 'M', 418), +(177680, 'Elliott', 2002, 'M', 417), +(177681, 'Rolando', 2002, 'M', 417), +(177682, 'Wayne', 2002, 'M', 416), +(177683, 'Wade', 2002, 'M', 414), +(177684, 'Easton', 2002, 'M', 412), +(177685, 'Jayce', 2002, 'M', 409), +(177686, 'Leonel', 2002, 'M', 407), +(177687, 'Ulises', 2002, 'M', 407), +(177688, 'Xander', 2002, 'M', 407), +(177689, 'Mekhi', 2002, 'M', 406), +(177690, 'Ben', 2002, 'M', 405), +(177691, 'Darrell', 2002, 'M', 405), +(177692, 'Eugene', 2002, 'M', 405), +(177693, 'Will', 2002, 'M', 403), +(177694, 'Addison', 2002, 'M', 401), +(177695, 'Ronnie', 2002, 'M', 401), +(177696, 'Isaias', 2002, 'M', 400), +(177697, 'Jordon', 2002, 'M', 400), +(177698, 'Coleman', 2002, 'M', 399), +(177699, 'Jarod', 2002, 'M', 399), +(177700, 'Kieran', 2002, 'M', 399), +(177701, 'Vicente', 2002, 'M', 399), +(177702, 'Gunnar', 2002, 'M', 398), +(177703, 'Ezequiel', 2002, 'M', 397), +(177704, 'Terrence', 2002, 'M', 397), +(177705, 'Deshawn', 2002, 'M', 396), +(177706, 'Colten', 2002, 'M', 395), +(177707, 'Leonard', 2002, 'M', 395), +(177708, 'Izaiah', 2002, 'M', 394), +(177709, 'Rudy', 2002, 'M', 392), +(177710, 'Jamari', 2002, 'M', 388), +(177711, 'Romeo', 2002, 'M', 388), +(177712, 'Adolfo', 2002, 'M', 386), +(177713, 'Savion', 2002, 'M', 386), +(177714, 'Kolton', 2002, 'M', 385), +(177715, 'Mohammed', 2002, 'M', 385), +(177716, 'Garret', 2002, 'M', 383), +(177717, 'Tyree', 2002, 'M', 382), +(177718, 'Neil', 2002, 'M', 381), +(177719, 'Sage', 2002, 'M', 380), +(177720, 'Alvaro', 2002, 'M', 378), +(177721, 'Dominique', 2002, 'M', 378), +(177722, 'Dominik', 2002, 'M', 377), +(177723, 'Koby', 2002, 'M', 377), +(177724, 'Ray', 2002, 'M', 376), +(177725, 'Jaxson', 2002, 'M', 373), +(177726, 'Efrain', 2002, 'M', 372), +(177727, 'Brennen', 2002, 'M', 367), +(177728, 'Orion', 2002, 'M', 367), +(177729, 'Jaron', 2002, 'M', 365), +(177730, 'Maximiliano', 2002, 'M', 365), +(177731, 'Keenan', 2002, 'M', 364), +(177732, 'Harold', 2002, 'M', 363), +(177733, 'Sterling', 2002, 'M', 357), +(177734, 'Everett', 2002, 'M', 354), +(177735, 'Ernest', 2002, 'M', 352), +(177736, 'Gilbert', 2002, 'M', 351), +(177737, 'Davon', 2002, 'M', 350), +(177738, 'Lewis', 2002, 'M', 349), +(177739, 'Humberto', 2002, 'M', 348), +(177740, 'Mike', 2002, 'M', 342), +(177741, 'Salvatore', 2002, 'M', 342), +(177742, 'Rashad', 2002, 'M', 341), +(177743, 'Agustin', 2002, 'M', 339), +(177744, 'Titus', 2002, 'M', 339), +(177745, 'Donte', 2002, 'M', 337), +(177746, 'Elisha', 2002, 'M', 336), +(177747, 'Jett', 2002, 'M', 335), +(177748, 'Yahir', 2002, 'M', 334), +(177749, 'Brice', 2002, 'M', 333), +(177750, 'Darryl', 2002, 'M', 332), +(177751, 'Dashawn', 2002, 'M', 331), +(177752, 'Julien', 2002, 'M', 330), +(177753, 'Karl', 2002, 'M', 330), +(177754, 'Lincoln', 2002, 'M', 329), +(177755, 'River', 2002, 'M', 328), +(177756, 'Darien', 2002, 'M', 327), +(177757, 'Kole', 2002, 'M', 327), +(177758, 'Grady', 2002, 'M', 325), +(177759, 'Dwayne', 2002, 'M', 323), +(177760, 'Phoenix', 2002, 'M', 321), +(177761, 'Glenn', 2002, 'M', 320), +(177762, 'Jamar', 2002, 'M', 320), +(177763, 'Cullen', 2002, 'M', 318), +(177764, 'Jameson', 2002, 'M', 318), +(177765, 'Kadin', 2002, 'M', 318), +(177766, 'Alonso', 2002, 'M', 316), +(177767, 'Jairo', 2002, 'M', 316), +(177768, 'Kareem', 2002, 'M', 316), +(177769, 'Keon', 2002, 'M', 316), +(177770, 'Antoine', 2002, 'M', 315), +(177771, 'Jair', 2002, 'M', 315), +(177772, 'Elvis', 2002, 'M', 314), +(177773, 'Quintin', 2002, 'M', 314), +(177774, 'Ralph', 2002, 'M', 312), +(177775, 'Moshe', 2002, 'M', 311), +(177776, 'Davin', 2002, 'M', 310), +(177777, 'Devonte', 2002, 'M', 310), +(177778, 'Junior', 2002, 'M', 310), +(177779, 'Nathanial', 2002, 'M', 307), +(177780, 'Cristopher', 2002, 'M', 306), +(177781, 'Gunner', 2002, 'M', 305), +(177782, 'Ignacio', 2002, 'M', 305), +(177783, 'Roderick', 2002, 'M', 305), +(177784, 'Kane', 2002, 'M', 304), +(177785, 'Cruz', 2002, 'M', 302), +(177786, 'Freddy', 2002, 'M', 302), +(177787, 'Aron', 2002, 'M', 301), +(177788, 'Keshawn', 2002, 'M', 301), +(177789, 'Jamison', 2002, 'M', 298), +(177790, 'Irvin', 2002, 'M', 297), +(177791, 'Justus', 2002, 'M', 297), +(177792, 'Judah', 2002, 'M', 295), +(177793, 'Talon', 2002, 'M', 295), +(177794, 'Shamar', 2002, 'M', 292), +(177795, 'Anton', 2002, 'M', 290), +(177796, 'Jagger', 2002, 'M', 288), +(177797, 'Nehemiah', 2002, 'M', 288), +(177798, 'Markus', 2002, 'M', 287), +(177799, 'Kamron', 2002, 'M', 286), +(177800, 'Zechariah', 2002, 'M', 285), +(177801, 'Alfred', 2002, 'M', 284), +(177802, 'Derick', 2002, 'M', 284), +(177803, 'Ibrahim', 2002, 'M', 284), +(177804, 'Muhammad', 2002, 'M', 284), +(177805, 'Garrison', 2002, 'M', 283), +(177806, 'Marquise', 2002, 'M', 282), +(177807, 'Stefan', 2002, 'M', 282), +(177808, 'Anderson', 2002, 'M', 281), +(177809, 'August', 2002, 'M', 281), +(177810, 'Devyn', 2002, 'M', 281), +(177811, 'Nigel', 2002, 'M', 280), +(177812, 'Daquan', 2002, 'M', 279), +(177813, 'Rhett', 2002, 'M', 279), +(177814, 'Kurt', 2002, 'M', 278), +(177815, 'Asa', 2002, 'M', 277), +(177816, 'Reynaldo', 2002, 'M', 276), +(177817, 'Heath', 2002, 'M', 275), +(177818, 'Keyshawn', 2002, 'M', 275), +(177819, 'Gordon', 2002, 'M', 274), +(177820, 'Josh', 2002, 'M', 274), +(177821, 'Sidney', 2002, 'M', 274), +(177822, 'Donavan', 2002, 'M', 270), +(177823, 'Karson', 2002, 'M', 270), +(177824, 'Caiden', 2002, 'M', 269), +(177825, 'Kellen', 2002, 'M', 269), +(177826, 'Raphael', 2002, 'M', 269), +(177827, 'Jarred', 2002, 'M', 267), +(177828, 'Alijah', 2002, 'M', 266), +(177829, 'Zakary', 2002, 'M', 266), +(177830, 'Howard', 2002, 'M', 265), +(177831, 'Porter', 2002, 'M', 265), +(177832, 'Sheldon', 2002, 'M', 265), +(177833, 'Octavio', 2002, 'M', 264), +(177834, 'Rigoberto', 2002, 'M', 264), +(177835, 'Layne', 2002, 'M', 263), +(177836, 'Clarence', 2002, 'M', 262), +(177837, 'Darnell', 2002, 'M', 262), +(177838, 'Deon', 2002, 'M', 262), +(177839, 'Jean', 2002, 'M', 261), +(177840, 'Milton', 2002, 'M', 259), +(177841, 'Misael', 2002, 'M', 258), +(177842, 'Rory', 2002, 'M', 258), +(177843, 'Omari', 2002, 'M', 256), +(177844, 'Dillan', 2002, 'M', 255), +(177845, 'Emmett', 2002, 'M', 255), +(177846, 'Jaylan', 2002, 'M', 255), +(177847, 'Brodie', 2002, 'M', 254), +(177848, 'Demarcus', 2002, 'M', 254), +(177849, 'Jabari', 2002, 'M', 254), +(177850, 'Greyson', 2002, 'M', 253), +(177851, 'Jefferson', 2002, 'M', 253), +(177852, 'Kenyon', 2002, 'M', 253), +(177853, 'Denzel', 2002, 'M', 252), +(177854, 'Darion', 2002, 'M', 249), +(177855, 'Gianni', 2002, 'M', 249), +(177856, 'Alessandro', 2002, 'M', 248), +(177857, 'Ari', 2002, 'M', 248), +(177858, 'Jaeden', 2002, 'M', 248), +(177859, 'Kevon', 2002, 'M', 248), +(177860, 'Keyon', 2002, 'M', 248), +(177861, 'Nico', 2002, 'M', 248), +(177862, 'Dandre', 2002, 'M', 247), +(177863, 'Alexandro', 2002, 'M', 246), +(177864, 'Amarion', 2002, 'M', 246), +(177865, 'Draven', 2002, 'M', 246), +(177866, 'Gael', 2002, 'M', 246), +(177867, 'Ryder', 2002, 'M', 246), +(177868, 'Clinton', 2002, 'M', 245), +(177869, 'Isai', 2002, 'M', 245), +(177870, 'Keagan', 2002, 'M', 245), +(177871, 'Santos', 2002, 'M', 245), +(177872, 'Gaven', 2002, 'M', 243), +(177873, 'Gonzalo', 2002, 'M', 242), +(177874, 'Lamar', 2002, 'M', 242), +(177875, 'Camren', 2002, 'M', 241), +(177876, 'Geoffrey', 2002, 'M', 240), +(177877, 'Jarrod', 2002, 'M', 240), +(177878, 'Korey', 2002, 'M', 239), +(177879, 'Brycen', 2002, 'M', 238), +(177880, 'Roland', 2002, 'M', 238), +(177881, 'Dallin', 2002, 'M', 237), +(177882, 'Brooks', 2002, 'M', 236), +(177883, 'Tariq', 2002, 'M', 236), +(177884, 'Jahiem', 2002, 'M', 235), +(177885, 'Dangelo', 2002, 'M', 234), +(177886, 'Maximillian', 2002, 'M', 234), +(177887, 'Shannon', 2002, 'M', 234), +(177888, 'Thaddeus', 2002, 'M', 233), +(177889, 'Conrad', 2002, 'M', 232), +(177890, 'Frankie', 2002, 'M', 232), +(177891, 'Brad', 2002, 'M', 231), +(177892, 'Cale', 2002, 'M', 231), +(177893, 'Quinten', 2002, 'M', 231), +(177894, 'Xzavier', 2002, 'M', 231), +(177895, 'Abdullah', 2002, 'M', 230), +(177896, 'Braiden', 2002, 'M', 230), +(177897, 'Semaj', 2002, 'M', 230), +(177898, 'Austyn', 2002, 'M', 228), +(177899, 'Stephan', 2002, 'M', 228), +(177900, 'Waylon', 2002, 'M', 228), +(177901, 'Baby', 2002, 'M', 227), +(177902, 'Perry', 2002, 'M', 227), +(177903, 'Bernard', 2002, 'M', 226), +(177904, 'German', 2002, 'M', 226), +(177905, 'Hamza', 2002, 'M', 226), +(177906, 'Kelton', 2002, 'M', 226), +(177907, 'Alexzander', 2002, 'M', 225), +(177908, 'Hassan', 2002, 'M', 225), +(177909, 'Rocco', 2002, 'M', 225), +(177910, 'Sincere', 2002, 'M', 225), +(177911, 'Giancarlo', 2002, 'M', 224), +(177912, 'Jacoby', 2002, 'M', 224), +(177913, 'Ronaldo', 2002, 'M', 224), +(177914, 'Travon', 2002, 'M', 224), +(177915, 'Elmer', 2002, 'M', 223), +(177916, 'Emerson', 2002, 'M', 223), +(177917, 'Guadalupe', 2002, 'M', 223), +(177918, 'Reagan', 2002, 'M', 223), +(177919, 'Reuben', 2002, 'M', 223), +(177920, 'Armani', 2002, 'M', 222), +(177921, 'Cael', 2002, 'M', 222), +(177922, 'Jovan', 2002, 'M', 222), +(177923, 'Gideon', 2002, 'M', 221), +(177924, 'Jaren', 2002, 'M', 221), +(177925, 'Joan', 2002, 'M', 221), +(177926, 'Khalid', 2002, 'M', 221), +(177927, 'Shea', 2002, 'M', 221), +(177928, 'Antony', 2002, 'M', 220), +(177929, 'Bruno', 2002, 'M', 220), +(177930, 'Darin', 2002, 'M', 220), +(177931, 'Darrius', 2002, 'M', 219), +(177932, 'Dimitri', 2002, 'M', 219), +(177933, 'Tristian', 2002, 'M', 219), +(177934, 'Deonte', 2002, 'M', 218), +(177935, 'Jamel', 2002, 'M', 218), +(177936, 'Jorden', 2002, 'M', 218), +(177937, 'Winston', 2002, 'M', 218), +(177938, 'Blaze', 2002, 'M', 217), +(177939, 'Javion', 2002, 'M', 217), +(177940, 'Matteo', 2002, 'M', 217), +(177941, 'Estevan', 2002, 'M', 216), +(177942, 'Jovani', 2002, 'M', 216), +(177943, 'Maverick', 2002, 'M', 216), +(177944, 'Tre', 2002, 'M', 216), +(177945, 'Seamus', 2002, 'M', 215), +(177946, 'Blaise', 2002, 'M', 214), +(177947, 'Finn', 2002, 'M', 213), +(177948, 'Heriberto', 2002, 'M', 213), +(177949, 'Isaak', 2002, 'M', 213), +(177950, 'Keanu', 2002, 'M', 212), +(177951, 'Leroy', 2002, 'M', 212), +(177952, 'Clark', 2002, 'M', 211), +(177953, 'Milo', 2002, 'M', 210), +(177954, 'Destin', 2002, 'M', 209), +(177955, 'Jordy', 2002, 'M', 209), +(177956, 'Sonny', 2002, 'M', 209), +(177957, 'Chaz', 2002, 'M', 208), +(177958, 'Norman', 2002, 'M', 208), +(177959, 'Ulysses', 2002, 'M', 207), +(177960, 'Elian', 2002, 'M', 206), +(177961, 'Korbin', 2002, 'M', 206), +(177962, 'Austen', 2002, 'M', 205), +(177963, 'Deangelo', 2002, 'M', 205), +(177964, 'Dexter', 2002, 'M', 205), +(177965, 'Rowan', 2002, 'M', 205), +(177966, 'Braedon', 2002, 'M', 204), +(177967, 'Reilly', 2002, 'M', 204), +(177968, 'Ronan', 2002, 'M', 203), +(177969, 'Trevion', 2002, 'M', 203), +(177970, 'Justyn', 2002, 'M', 202), +(177971, 'Treyton', 2002, 'M', 202), +(177972, 'Earl', 2002, 'M', 201), +(177973, 'Stone', 2002, 'M', 201), +(177974, 'Yosef', 2002, 'M', 201), +(177975, 'Adrien', 2002, 'M', 200), +(177976, 'Dion', 2002, 'M', 200), +(177977, 'Fredrick', 2002, 'M', 200), +(177978, 'Nick', 2002, 'M', 200), +(177979, 'Sammy', 2002, 'M', 200), +(177980, 'Tylor', 2002, 'M', 200), +(177981, 'Brenton', 2002, 'M', 199), +(177982, 'Kurtis', 2002, 'M', 199), +(177983, 'Keven', 2002, 'M', 198), +(177984, 'Samir', 2002, 'M', 198), +(177985, 'Abram', 2002, 'M', 197), +(177986, 'Augustus', 2002, 'M', 197), +(177987, 'Clifford', 2002, 'M', 197), +(177988, 'Lawson', 2002, 'M', 197), +(177989, 'Paxton', 2002, 'M', 197), +(177990, 'Vance', 2002, 'M', 197), +(177991, 'Nestor', 2002, 'M', 196), +(177992, 'Bernardo', 2002, 'M', 195), +(177993, 'Dario', 2002, 'M', 195), +(177994, 'Jakobe', 2002, 'M', 195), +(177995, 'Josef', 2002, 'M', 195), +(177996, 'Kennedy', 2002, 'M', 195), +(177997, 'Marcel', 2002, 'M', 195), +(177998, 'Colt', 2002, 'M', 194), +(177999, 'Deshaun', 2002, 'M', 194), +(178000, 'Forrest', 2002, 'M', 194), +(178001, 'Nathen', 2002, 'M', 194), +(178002, 'Tavion', 2002, 'M', 194), +(178003, 'Barry', 2002, 'M', 193), +(178004, 'Kian', 2002, 'M', 193), +(178005, 'Benny', 2002, 'M', 192), +(178006, 'Domenic', 2002, 'M', 192), +(178007, 'Gavyn', 2002, 'M', 192), +(178008, 'Shayne', 2002, 'M', 192), +(178009, 'Cornelius', 2002, 'M', 191), +(178010, 'Hugh', 2002, 'M', 191), +(178011, 'Aditya', 2002, 'M', 190), +(178012, 'Adonis', 2002, 'M', 189), +(178013, 'Bret', 2002, 'M', 189), +(178014, 'Cordell', 2002, 'M', 189), +(178015, 'Stuart', 2002, 'M', 189), +(178016, 'Aryan', 2002, 'M', 188), +(178017, 'Jadyn', 2002, 'M', 188), +(178018, 'Irving', 2002, 'M', 187), +(178019, 'Kylan', 2002, 'M', 187), +(178020, 'Lamont', 2002, 'M', 187), +(178021, 'London', 2002, 'M', 187), +(178022, 'Marcelo', 2002, 'M', 187), +(178023, 'Nash', 2002, 'M', 187), +(178024, 'Trever', 2002, 'M', 187), +(178025, 'Fred', 2002, 'M', 186), +(178026, 'Houston', 2002, 'M', 186), +(178027, 'Latrell', 2002, 'M', 186), +(178028, 'Kelly', 2002, 'M', 185), +(178029, 'Remington', 2002, 'M', 185), +(178030, 'Oswaldo', 2002, 'M', 184), +(178031, 'Tyshawn', 2002, 'M', 184), +(178032, 'Chaim', 2002, 'M', 183), +(178033, 'Efren', 2002, 'M', 183), +(178034, 'Samson', 2002, 'M', 183), +(178035, 'Jaheem', 2002, 'M', 182), +(178036, 'Nikhil', 2002, 'M', 182), +(178037, 'Zaire', 2002, 'M', 182), +(178038, 'Daryl', 2002, 'M', 181), +(178039, 'Glen', 2002, 'M', 181), +(178040, 'Layton', 2002, 'M', 181), +(178041, 'Pranav', 2002, 'M', 181), +(178042, 'Arnold', 2002, 'M', 180), +(178043, 'Malakai', 2002, 'M', 180), +(178044, 'Darwin', 2002, 'M', 179), +(178045, 'Fidel', 2002, 'M', 179), +(178046, 'Javen', 2002, 'M', 179), +(178047, 'Kale', 2002, 'M', 179), +(178048, 'Lisandro', 2002, 'M', 179), +(178049, 'Alden', 2002, 'M', 178), +(178050, 'Santino', 2002, 'M', 178), +(178051, 'Stephon', 2002, 'M', 178), +(178052, 'Dylon', 2002, 'M', 177), +(178053, 'Ellis', 2002, 'M', 177), +(178054, 'Lonnie', 2002, 'M', 177), +(178055, 'Adriel', 2002, 'M', 176), +(178056, 'Duane', 2002, 'M', 176), +(178057, 'Ethen', 2002, 'M', 176), +(178058, 'Raymundo', 2002, 'M', 176), +(178059, 'Carlton', 2002, 'M', 175), +(178060, 'Gino', 2002, 'M', 175), +(178061, 'Giovanny', 2002, 'M', 175), +(178062, 'Jan', 2002, 'M', 175), +(178063, 'Rey', 2002, 'M', 175), +(178064, 'Haden', 2002, 'M', 174), +(178065, 'Marquez', 2002, 'M', 174), +(178066, 'Vernon', 2002, 'M', 174), +(178067, 'Zain', 2002, 'M', 174), +(178068, 'Barrett', 2002, 'M', 173), +(178069, 'Luciano', 2002, 'M', 173), +(178070, 'Mitchel', 2002, 'M', 173), +(178071, 'Turner', 2002, 'M', 173), +(178072, 'Zavier', 2002, 'M', 173), +(178073, 'Aubrey', 2002, 'M', 172), +(178074, 'Gaige', 2002, 'M', 172), +(178075, 'Guy', 2002, 'M', 172), +(178076, 'Kasey', 2002, 'M', 172), +(178077, 'Luc', 2002, 'M', 172), +(178078, 'Maximo', 2002, 'M', 172), +(178079, 'Rickey', 2002, 'M', 172), +(178080, 'Rylee', 2002, 'M', 172), +(178081, 'Vaughn', 2002, 'M', 172), +(178082, 'Antwan', 2002, 'M', 171), +(178083, 'Cason', 2002, 'M', 171), +(178084, 'Eliseo', 2002, 'M', 171), +(178085, 'Jamil', 2002, 'M', 171), +(178086, 'Rahul', 2002, 'M', 171), +(178087, 'Darrin', 2002, 'M', 170), +(178088, 'Darrion', 2002, 'M', 170), +(178089, 'Mustafa', 2002, 'M', 170), +(178090, 'Jamir', 2002, 'M', 169), +(178091, 'Jevon', 2002, 'M', 169), +(178092, 'Mikel', 2002, 'M', 169), +(178093, 'Pierre', 2002, 'M', 169), +(178094, 'Trystan', 2002, 'M', 169), +(178095, 'Bilal', 2002, 'M', 168), +(178096, 'Kent', 2002, 'M', 168), +(178097, 'Kyree', 2002, 'M', 168), +(178098, 'Maxim', 2002, 'M', 168), +(178099, 'Neal', 2002, 'M', 168), +(178100, 'Sabastian', 2002, 'M', 168), +(178101, 'Syed', 2002, 'M', 168), +(178102, 'Eddy', 2002, 'M', 167), +(178103, 'Gannon', 2002, 'M', 167), +(178104, 'Jaquez', 2002, 'M', 167), +(178105, 'Arjun', 2002, 'M', 166), +(178106, 'Jarvis', 2002, 'M', 166), +(178107, 'Jovany', 2002, 'M', 166), +(178108, 'Bradyn', 2002, 'M', 165), +(178109, 'Carlo', 2002, 'M', 165), +(178110, 'Dontae', 2002, 'M', 165), +(178111, 'Jase', 2002, 'M', 165), +(178112, 'Zayne', 2002, 'M', 164), +(178113, 'Clifton', 2002, 'M', 163), +(178114, 'Cortez', 2002, 'M', 163), +(178115, 'Shemar', 2002, 'M', 163), +(178116, 'Amos', 2002, 'M', 162), +(178117, 'Dwight', 2002, 'M', 162), +(178118, 'Kory', 2002, 'M', 162), +(178119, 'Devante', 2002, 'M', 161), +(178120, 'Herbert', 2002, 'M', 161), +(178121, 'Immanuel', 2002, 'M', 161), +(178122, 'Jeff', 2002, 'M', 161), +(178123, 'Kirk', 2002, 'M', 161), +(178124, 'Osbaldo', 2002, 'M', 161), +(178125, 'Prince', 2002, 'M', 161), +(178126, 'Trevin', 2002, 'M', 161), +(178127, 'Zack', 2002, 'M', 161), +(178128, 'Freddie', 2002, 'M', 160), +(178129, 'Garett', 2002, 'M', 160), +(178130, 'Kristofer', 2002, 'M', 160), +(178131, 'Ryley', 2002, 'M', 160), +(178132, 'Bo', 2002, 'M', 159), +(178133, 'Cristobal', 2002, 'M', 159), +(178134, 'Eliezer', 2002, 'M', 159), +(178135, 'Giovani', 2002, 'M', 159), +(178136, 'Sullivan', 2002, 'M', 159), +(178137, 'Lloyd', 2002, 'M', 158), +(178138, 'Niko', 2002, 'M', 158), +(178139, 'Raven', 2002, 'M', 158), +(178140, 'Ean', 2002, 'M', 157), +(178141, 'Jovanni', 2002, 'M', 157), +(178142, 'Alton', 2002, 'M', 156), +(178143, 'Gerard', 2002, 'M', 156), +(178144, 'Keandre', 2002, 'M', 156), +(178145, 'Mariano', 2002, 'M', 156), +(178146, 'Yousef', 2002, 'M', 156), +(178147, 'Don', 2002, 'M', 155), +(178148, 'Fletcher', 2002, 'M', 155), +(178149, 'Menachem', 2002, 'M', 155), +(178150, 'Alexandre', 2002, 'M', 154), +(178151, 'Jonatan', 2002, 'M', 154), +(178152, 'Kamari', 2002, 'M', 154), +(178153, 'Rex', 2002, 'M', 154), +(178154, 'Yash', 2002, 'M', 154), +(178155, 'Daylon', 2002, 'M', 153), +(178156, 'Jovanny', 2002, 'M', 153), +(178157, 'Matias', 2002, 'M', 153), +(178158, 'Vincenzo', 2002, 'M', 153), +(178159, 'Ajay', 2002, 'M', 152), +(178160, 'Dan', 2002, 'M', 152), +(178161, 'Memphis', 2002, 'M', 152), +(178162, 'Branson', 2002, 'M', 151), +(178163, 'Braulio', 2002, 'M', 151), +(178164, 'Teagan', 2002, 'M', 151), +(178165, 'Tevin', 2002, 'M', 151), +(178166, 'Cain', 2002, 'M', 150), +(178167, 'Cristofer', 2002, 'M', 150), +(178168, 'Dyllan', 2002, 'M', 150), +(178169, 'Rishi', 2002, 'M', 150), +(178170, 'Bridger', 2002, 'M', 149), +(178171, 'Bronson', 2002, 'M', 149), +(178172, 'Dewayne', 2002, 'M', 149), +(178173, 'Donavon', 2002, 'M', 149), +(178174, 'Marques', 2002, 'M', 149), +(178175, 'Valentin', 2002, 'M', 149), +(178176, 'Daron', 2002, 'M', 148), +(178177, 'Hezekiah', 2002, 'M', 148), +(178178, 'Jackie', 2002, 'M', 148), +(178179, 'Jamarcus', 2002, 'M', 148), +(178180, 'Jordyn', 2002, 'M', 148), +(178181, 'Kaeden', 2002, 'M', 148), +(178182, 'Rocky', 2002, 'M', 148), +(178183, 'Simeon', 2002, 'M', 148), +(178184, 'Terence', 2002, 'M', 148), +(178185, 'Andreas', 2002, 'M', 147), +(178186, 'Benito', 2002, 'M', 147), +(178187, 'Francesco', 2002, 'M', 147), +(178188, 'Hernan', 2002, 'M', 147), +(178189, 'Johnnie', 2002, 'M', 147), +(178190, 'Raheem', 2002, 'M', 147), +(178191, 'Treyvon', 2002, 'M', 147), +(178192, 'Denver', 2002, 'M', 146), +(178193, 'Gregorio', 2002, 'M', 146), +(178194, 'Rick', 2002, 'M', 146), +(178195, 'Yusuf', 2002, 'M', 146), +(178196, 'Abdul', 2002, 'M', 145), +(178197, 'Broderick', 2002, 'M', 145), +(178198, 'Enzo', 2002, 'M', 145), +(178199, 'Kegan', 2002, 'M', 145), +(178200, 'Konner', 2002, 'M', 145), +(178201, 'Davonte', 2002, 'M', 144), +(178202, 'Jadin', 2002, 'M', 144), +(178203, 'Rhys', 2002, 'M', 144), +(178204, 'Brennon', 2002, 'M', 143), +(178205, 'Campbell', 2002, 'M', 143), +(178206, 'Courtney', 2002, 'M', 143), +(178207, 'Harris', 2002, 'M', 143), +(178208, 'Clint', 2002, 'M', 142), +(178209, 'Deacon', 2002, 'M', 142), +(178210, 'Donnie', 2002, 'M', 142), +(178211, 'Keshaun', 2002, 'M', 142), +(178212, 'Konnor', 2002, 'M', 142), +(178213, 'Ryker', 2002, 'M', 142), +(178214, 'Sebastien', 2002, 'M', 142), +(178215, 'Tyron', 2002, 'M', 142), +(178216, 'Deondre', 2002, 'M', 141), +(178217, 'Elvin', 2002, 'M', 141), +(178218, 'Trenten', 2002, 'M', 141), +(178219, 'Truman', 2002, 'M', 140), +(178220, 'Isidro', 2002, 'M', 139), +(178221, 'Rasheed', 2002, 'M', 139), +(178222, 'Tom', 2002, 'M', 139), +(178223, 'Anish', 2002, 'M', 138), +(178224, 'Enoch', 2002, 'M', 138), +(178225, 'Mackenzie', 2002, 'M', 138), +(178226, 'Miguelangel', 2002, 'M', 138), +(178227, 'Myron', 2002, 'M', 138), +(178228, 'Ira', 2002, 'M', 137), +(178229, 'Kalvin', 2002, 'M', 137), +(178230, 'Case', 2002, 'M', 136), +(178231, 'Mathias', 2002, 'M', 136), +(178232, 'Tyquan', 2002, 'M', 136), +(178233, 'Jayvon', 2002, 'M', 135), +(178234, 'Kamden', 2002, 'M', 135), +(178235, 'Jamarion', 2002, 'M', 134), +(178236, 'Ken', 2002, 'M', 134), +(178237, 'Yehuda', 2002, 'M', 134), +(178238, 'Bradly', 2002, 'M', 133), +(178239, 'Jamaal', 2002, 'M', 133), +(178240, 'Jelani', 2002, 'M', 133), +(178241, 'Jerimiah', 2002, 'M', 133), +(178242, 'Leland', 2002, 'M', 133), +(178243, 'Lester', 2002, 'M', 133), +(178244, 'Malaki', 2002, 'M', 133), +(178245, 'Royce', 2002, 'M', 133), +(178246, 'Sahil', 2002, 'M', 133), +(178247, 'Coleton', 2002, 'M', 132), +(178248, 'Deion', 2002, 'M', 132), +(178249, 'Ervin', 2002, 'M', 132), +(178250, 'Gauge', 2002, 'M', 132), +(178251, 'Jaedon', 2002, 'M', 132), +(178252, 'Presley', 2002, 'M', 132), +(178253, 'Tahj', 2002, 'M', 132), +(178254, 'Bode', 2002, 'M', 131), +(178255, 'Cash', 2002, 'M', 131), +(178256, 'Leandro', 2002, 'M', 131), +(178257, 'Cannon', 2002, 'M', 130), +(178258, 'Genaro', 2002, 'M', 130), +(178259, 'Kerry', 2002, 'M', 130), +(178260, 'Matthias', 2002, 'M', 130), +(178261, 'Ammon', 2002, 'M', 129), +(178262, 'Javonte', 2002, 'M', 129), +(178263, 'Kavon', 2002, 'M', 129), +(178264, 'Rashawn', 2002, 'M', 129), +(178265, 'Antwon', 2002, 'M', 128), +(178266, 'Demarco', 2002, 'M', 128), +(178267, 'Leighton', 2002, 'M', 128), +(178268, 'Paris', 2002, 'M', 128), +(178269, 'Ryland', 2002, 'M', 128), +(178270, 'Arman', 2002, 'M', 127), +(178271, 'Caeden', 2002, 'M', 127), +(178272, 'Lars', 2002, 'M', 127), +(178273, 'Camryn', 2002, 'M', 126), +(178274, 'Coy', 2002, 'M', 126), +(178275, 'Everardo', 2002, 'M', 126), +(178276, 'Gian', 2002, 'M', 126), +(178277, 'Harvey', 2002, 'M', 126), +(178278, 'Javan', 2002, 'M', 126), +(178279, 'Ladarius', 2002, 'M', 126), +(178280, 'Taj', 2002, 'M', 126), +(178281, 'Xavion', 2002, 'M', 126), +(178282, 'Alek', 2002, 'M', 125), +(178283, 'Bradford', 2002, 'M', 125), +(178284, 'Brant', 2002, 'M', 125), +(178285, 'Infant', 2002, 'M', 125), +(178286, 'Jacobi', 2002, 'M', 125), +(178287, 'Jakub', 2002, 'M', 125), +(178288, 'Lazaro', 2002, 'M', 125), +(178289, 'Loren', 2002, 'M', 125), +(178290, 'Markell', 2002, 'M', 125), +(178291, 'Daveon', 2002, 'M', 124), +(178292, 'Jacques', 2002, 'M', 124), +(178293, 'Joseluis', 2002, 'M', 124), +(178294, 'Montana', 2002, 'M', 124), +(178295, 'Mordechai', 2002, 'M', 124), +(178296, 'Sami', 2002, 'M', 124), +(178297, 'Uriah', 2002, 'M', 124), +(178298, 'Aydan', 2002, 'M', 123), +(178299, 'Donnell', 2002, 'M', 123), +(178300, 'Edison', 2002, 'M', 123), +(178301, 'Jajuan', 2002, 'M', 123), +(178302, 'Varun', 2002, 'M', 123), +(178303, 'Adin', 2002, 'M', 122), +(178304, 'Aric', 2002, 'M', 122), +(178305, 'Federico', 2002, 'M', 122), +(178306, 'Karim', 2002, 'M', 122), +(178307, 'Lionel', 2002, 'M', 122), +(178308, 'Makai', 2002, 'M', 122), +(178309, 'Robin', 2002, 'M', 122), +(178310, 'Vladimir', 2002, 'M', 122), +(178311, 'Brandan', 2002, 'M', 121), +(178312, 'Damarion', 2002, 'M', 121), +(178313, 'Davian', 2002, 'M', 121), +(178314, 'Dillion', 2002, 'M', 121), +(178315, 'Jai', 2002, 'M', 121), +(178316, 'Juancarlos', 2002, 'M', 121), +(178317, 'Rico', 2002, 'M', 121), +(178318, 'Kamren', 2002, 'M', 120), +(178319, 'Marion', 2002, 'M', 120), +(178320, 'Soren', 2002, 'M', 120), +(178321, 'Caelan', 2002, 'M', 119), +(178322, 'Dayne', 2002, 'M', 119), +(178323, 'Izayah', 2002, 'M', 119), +(178324, 'Jeramiah', 2002, 'M', 119), +(178325, 'Luka', 2002, 'M', 119), +(178326, 'Said', 2002, 'M', 119), +(178327, 'Slade', 2002, 'M', 119), +(178328, 'Anders', 2002, 'M', 118), +(178329, 'Blayne', 2002, 'M', 118), +(178330, 'Braylon', 2002, 'M', 118), +(178331, 'Ishmael', 2002, 'M', 118), +(178332, 'Jalon', 2002, 'M', 118), +(178333, 'Markel', 2002, 'M', 118), +(178334, 'Tracy', 2002, 'M', 118), +(178335, 'Akash', 2002, 'M', 117), +(178336, 'Ameer', 2002, 'M', 117), +(178337, 'Augustine', 2002, 'M', 117), +(178338, 'Coltin', 2002, 'M', 117), +(178339, 'Denis', 2002, 'M', 117), +(178340, 'Donavin', 2002, 'M', 117), +(178341, 'Jim', 2002, 'M', 117), +(178342, 'Kael', 2002, 'M', 117), +(178343, 'Killian', 2002, 'M', 117), +(178344, 'Babyboy', 2002, 'M', 116), +(178345, 'Boston', 2002, 'M', 116), +(178346, 'Kyron', 2002, 'M', 116), +(178347, 'Nikolai', 2002, 'M', 116), +(178348, 'Franco', 2002, 'M', 115), +(178349, 'Jacquez', 2002, 'M', 115), +(178350, 'Jalin', 2002, 'M', 115), +(178351, 'Kalen', 2002, 'M', 115), +(178352, 'Amar', 2002, 'M', 114), +(178353, 'Dejuan', 2002, 'M', 114), +(178354, 'Demetri', 2002, 'M', 114), +(178355, 'Kenan', 2002, 'M', 114), +(178356, 'Shlomo', 2002, 'M', 114), +(178357, 'Abner', 2002, 'M', 113), +(178358, 'Deontae', 2002, 'M', 113), +(178359, 'Edmund', 2002, 'M', 113), +(178360, 'Geovanni', 2002, 'M', 113), +(178361, 'Herman', 2002, 'M', 113), +(178362, 'Iain', 2002, 'M', 113), +(178363, 'Kentrell', 2002, 'M', 113), +(178364, 'Samual', 2002, 'M', 113), +(178365, 'Blade', 2002, 'M', 112), +(178366, 'Brandyn', 2002, 'M', 112), +(178367, 'Clyde', 2002, 'M', 112), +(178368, 'Darrien', 2002, 'M', 112), +(178369, 'Jaycob', 2002, 'M', 112), +(178370, 'Johann', 2002, 'M', 112), +(178371, 'Zaid', 2002, 'M', 112), +(178372, 'Auston', 2002, 'M', 111), +(178373, 'Dajuan', 2002, 'M', 111), +(178374, 'Fredy', 2002, 'M', 111), +(178375, 'Jimmie', 2002, 'M', 111), +(178376, 'Kason', 2002, 'M', 111), +(178377, 'Nicklas', 2002, 'M', 111), +(178378, 'Tye', 2002, 'M', 111), +(178379, 'Arath', 2002, 'M', 110), +(178380, 'Claudio', 2002, 'M', 110), +(178381, 'Daylen', 2002, 'M', 110), +(178382, 'Edson', 2002, 'M', 110), +(178383, 'Kolten', 2002, 'M', 110), +(178384, 'Stewart', 2002, 'M', 110), +(178385, 'Van', 2002, 'M', 110), +(178386, 'Yair', 2002, 'M', 110), +(178387, 'Bishop', 2002, 'M', 109), +(178388, 'Dave', 2002, 'M', 109), +(178389, 'Jericho', 2002, 'M', 109), +(178390, 'Kahlil', 2002, 'M', 109), +(178391, 'Kenton', 2002, 'M', 109), +(178392, 'Kye', 2002, 'M', 109), +(178393, 'Mauro', 2002, 'M', 109), +(178394, 'Nevin', 2002, 'M', 109), +(178395, 'Ramsey', 2002, 'M', 109), +(178396, 'Shelton', 2002, 'M', 109), +(178397, 'Trae', 2002, 'M', 109), +(178398, 'Willem', 2002, 'M', 109), +(178399, 'Yitzchok', 2002, 'M', 109), +(178400, 'Zavion', 2002, 'M', 109), +(178401, 'Bodie', 2002, 'M', 108), +(178402, 'Esai', 2002, 'M', 108), +(178403, 'Favian', 2002, 'M', 108), +(178404, 'Fisher', 2002, 'M', 108), +(178405, 'Floyd', 2002, 'M', 108), +(178406, 'Jalil', 2002, 'M', 108), +(178407, 'Jarett', 2002, 'M', 108), +(178408, 'Sameer', 2002, 'M', 108), +(178409, 'Shelby', 2002, 'M', 108), +(178410, 'Zeke', 2002, 'M', 108), +(178411, 'Arnav', 2002, 'M', 107), +(178412, 'Brannon', 2002, 'M', 107), +(178413, 'Britton', 2002, 'M', 107), +(178414, 'Chancellor', 2002, 'M', 107), +(178415, 'Dameon', 2002, 'M', 107), +(178416, 'Daylan', 2002, 'M', 107), +(178417, 'Foster', 2002, 'M', 107), +(178418, 'Jullian', 2002, 'M', 107), +(178419, 'Lyle', 2002, 'M', 107), +(178420, 'Valentino', 2002, 'M', 107), +(178421, 'Wendell', 2002, 'M', 107), +(178422, 'Wilfredo', 2002, 'M', 107), +(178423, 'Yaakov', 2002, 'M', 107), +(178424, 'Atticus', 2002, 'M', 106), +(178425, 'Cecil', 2002, 'M', 106), +(178426, 'Darrian', 2002, 'M', 106), +(178427, 'Domingo', 2002, 'M', 106), +(178428, 'Eliot', 2002, 'M', 106), +(178429, 'Juwan', 2002, 'M', 106), +(178430, 'Siddharth', 2002, 'M', 106), +(178431, 'Vince', 2002, 'M', 106), +(178432, 'Dashaun', 2002, 'M', 105), +(178433, 'Dhruv', 2002, 'M', 105), +(178434, 'Jalyn', 2002, 'M', 105), +(178435, 'Jaret', 2002, 'M', 105), +(178436, 'Marcello', 2002, 'M', 105), +(178437, 'Messiah', 2002, 'M', 105), +(178438, 'Remy', 2002, 'M', 105), +(178439, 'Aleksander', 2002, 'M', 104), +(178440, 'Jashawn', 2002, 'M', 104), +(178441, 'Jedidiah', 2002, 'M', 104), +(178442, 'Judson', 2002, 'M', 104), +(178443, 'Madison', 2002, 'M', 104), +(178444, 'Quinlan', 2002, 'M', 104), +(178445, 'Randolph', 2002, 'M', 104), +(178446, 'Galen', 2002, 'M', 103), +(178447, 'Jade', 2002, 'M', 103), +(178448, 'Jaydin', 2002, 'M', 103), +(178449, 'Rohit', 2002, 'M', 103), +(178450, 'Aedan', 2002, 'M', 102), +(178451, 'Benson', 2002, 'M', 102), +(178452, 'Desean', 2002, 'M', 102), +(178453, 'Devlin', 2002, 'M', 102), +(178454, 'Dusty', 2002, 'M', 102), +(178455, 'Haven', 2002, 'M', 102), +(178456, 'Jabez', 2002, 'M', 102), +(178457, 'Arron', 2002, 'M', 101), +(178458, 'Avraham', 2002, 'M', 101), +(178459, 'Briar', 2002, 'M', 101), +(178460, 'Canyon', 2002, 'M', 101), +(178461, 'Colter', 2002, 'M', 101), +(178462, 'Gerson', 2002, 'M', 101), +(178463, 'Karter', 2002, 'M', 101), +(178464, 'Leif', 2002, 'M', 101), +(178465, 'Paolo', 2002, 'M', 101), +(178466, 'Rami', 2002, 'M', 101), +(178467, 'Theron', 2002, 'M', 101), +(178468, 'Bowen', 2002, 'M', 100), +(178469, 'Brogan', 2002, 'M', 100), +(178470, 'Dax', 2002, 'M', 100), +(178471, 'Edgardo', 2002, 'M', 100), +(178472, 'Imanol', 2002, 'M', 100), +(178473, 'Jensen', 2002, 'M', 100), +(178474, 'Travion', 2002, 'M', 100), +(178475, 'Wilmer', 2002, 'M', 100), +(178476, 'Emily', 2003, 'F', 25685), +(178477, 'Emma', 2003, 'F', 22701), +(178478, 'Madison', 2003, 'F', 20197), +(178479, 'Hannah', 2003, 'F', 17628), +(178480, 'Olivia', 2003, 'F', 16142), +(178481, 'Abigail', 2003, 'F', 15918), +(178482, 'Alexis', 2003, 'F', 14857), +(178483, 'Ashley', 2003, 'F', 14512), +(178484, 'Elizabeth', 2003, 'F', 14094), +(178485, 'Samantha', 2003, 'F', 13862), +(178486, 'Isabella', 2003, 'F', 13770), +(178487, 'Sarah', 2003, 'F', 13753), +(178488, 'Grace', 2003, 'F', 12770), +(178489, 'Alyssa', 2003, 'F', 12743), +(178490, 'Lauren', 2003, 'F', 11046), +(178491, 'Kayla', 2003, 'F', 10949), +(178492, 'Brianna', 2003, 'F', 10580), +(178493, 'Jessica', 2003, 'F', 10445), +(178494, 'Taylor', 2003, 'F', 10304), +(178495, 'Sophia', 2003, 'F', 9682), +(178496, 'Anna', 2003, 'F', 9438), +(178497, 'Victoria', 2003, 'F', 9242), +(178498, 'Natalie', 2003, 'F', 9144), +(178499, 'Chloe', 2003, 'F', 9076), +(178500, 'Sydney', 2003, 'F', 8910), +(178501, 'Hailey', 2003, 'F', 8790), +(178502, 'Jasmine', 2003, 'F', 8058), +(178503, 'Rachel', 2003, 'F', 7975), +(178504, 'Morgan', 2003, 'F', 7926), +(178505, 'Megan', 2003, 'F', 7796), +(178506, 'Jennifer', 2003, 'F', 7564), +(178507, 'Kaitlyn', 2003, 'F', 7546), +(178508, 'Julia', 2003, 'F', 7434), +(178509, 'Haley', 2003, 'F', 7194), +(178510, 'Katherine', 2003, 'F', 7123), +(178511, 'Mia', 2003, 'F', 7080), +(178512, 'Destiny', 2003, 'F', 6967), +(178513, 'Alexandra', 2003, 'F', 6544), +(178514, 'Ava', 2003, 'F', 6279), +(178515, 'Nicole', 2003, 'F', 6227), +(178516, 'Savannah', 2003, 'F', 6151), +(178517, 'Maria', 2003, 'F', 6086), +(178518, 'Brooke', 2003, 'F', 5966), +(178519, 'Ella', 2003, 'F', 5900), +(178520, 'Mackenzie', 2003, 'F', 5863), +(178521, 'Allison', 2003, 'F', 5850), +(178522, 'Paige', 2003, 'F', 5756), +(178523, 'Jordan', 2003, 'F', 5648), +(178524, 'Stephanie', 2003, 'F', 5601), +(178525, 'Faith', 2003, 'F', 5592), +(178526, 'Makayla', 2003, 'F', 5579), +(178527, 'Kylie', 2003, 'F', 5558), +(178528, 'Kaylee', 2003, 'F', 5450), +(178529, 'Jenna', 2003, 'F', 5351), +(178530, 'Amanda', 2003, 'F', 5339), +(178531, 'Trinity', 2003, 'F', 5123), +(178532, 'Zoe', 2003, 'F', 5084), +(178533, 'Katelyn', 2003, 'F', 5050), +(178534, 'Mary', 2003, 'F', 5009), +(178535, 'Andrea', 2003, 'F', 4975), +(178536, 'Madeline', 2003, 'F', 4974), +(178537, 'Michelle', 2003, 'F', 4868), +(178538, 'Rebecca', 2003, 'F', 4857), +(178539, 'Kimberly', 2003, 'F', 4824), +(178540, 'Sara', 2003, 'F', 4758), +(178541, 'Gabrielle', 2003, 'F', 4598), +(178542, 'Alexa', 2003, 'F', 4596), +(178543, 'Caroline', 2003, 'F', 4583), +(178544, 'Lily', 2003, 'F', 4434), +(178545, 'Vanessa', 2003, 'F', 4351), +(178546, 'Angelina', 2003, 'F', 4269), +(178547, 'Riley', 2003, 'F', 4242), +(178548, 'Sierra', 2003, 'F', 4238), +(178549, 'Amber', 2003, 'F', 4120), +(178550, 'Autumn', 2003, 'F', 4055), +(178551, 'Lillian', 2003, 'F', 4029), +(178552, 'Gabriella', 2003, 'F', 4019), +(178553, 'Audrey', 2003, 'F', 3997), +(178554, 'Jada', 2003, 'F', 3986), +(178555, 'Erin', 2003, 'F', 3924), +(178556, 'Leah', 2003, 'F', 3917), +(178557, 'Danielle', 2003, 'F', 3863), +(178558, 'Isabel', 2003, 'F', 3850), +(178559, 'Maya', 2003, 'F', 3848), +(178560, 'Ariana', 2003, 'F', 3829), +(178561, 'Arianna', 2003, 'F', 3794), +(178562, 'Jocelyn', 2003, 'F', 3716), +(178563, 'Evelyn', 2003, 'F', 3700), +(178564, 'Avery', 2003, 'F', 3687), +(178565, 'Aaliyah', 2003, 'F', 3671), +(178566, 'Leslie', 2003, 'F', 3637), +(178567, 'Claire', 2003, 'F', 3570), +(178568, 'Melanie', 2003, 'F', 3547), +(178569, 'Shelby', 2003, 'F', 3533), +(178570, 'Marissa', 2003, 'F', 3513), +(178571, 'Melissa', 2003, 'F', 3501), +(178572, 'Sofia', 2003, 'F', 3485), +(178573, 'Bailey', 2003, 'F', 3464), +(178574, 'Molly', 2003, 'F', 3403), +(178575, 'Jacqueline', 2003, 'F', 3399), +(178576, 'Jade', 2003, 'F', 3392), +(178577, 'Gabriela', 2003, 'F', 3360), +(178578, 'Courtney', 2003, 'F', 3344), +(178579, 'Angela', 2003, 'F', 3317), +(178580, 'Breanna', 2003, 'F', 3268), +(178581, 'Catherine', 2003, 'F', 3230), +(178582, 'Katie', 2003, 'F', 3187), +(178583, 'Diana', 2003, 'F', 3148), +(178584, 'Christina', 2003, 'F', 3108), +(178585, 'Isabelle', 2003, 'F', 3108), +(178586, 'Amelia', 2003, 'F', 3092), +(178587, 'Daniela', 2003, 'F', 3075), +(178588, 'Mariah', 2003, 'F', 3073), +(178589, 'Briana', 2003, 'F', 3057), +(178590, 'Madelyn', 2003, 'F', 2984), +(178591, 'Mya', 2003, 'F', 2950), +(178592, 'Kathryn', 2003, 'F', 2944), +(178593, 'Brooklyn', 2003, 'F', 2923), +(178594, 'Angel', 2003, 'F', 2885), +(178595, 'Amy', 2003, 'F', 2878), +(178596, 'Adriana', 2003, 'F', 2838), +(178597, 'Kennedy', 2003, 'F', 2774), +(178598, 'Alexandria', 2003, 'F', 2750), +(178599, 'Laura', 2003, 'F', 2740), +(178600, 'Kelly', 2003, 'F', 2735), +(178601, 'Gracie', 2003, 'F', 2723), +(178602, 'Lydia', 2003, 'F', 2626), +(178603, 'Margaret', 2003, 'F', 2623), +(178604, 'Ana', 2003, 'F', 2591), +(178605, 'Kelsey', 2003, 'F', 2569), +(178606, 'Alicia', 2003, 'F', 2541), +(178607, 'Lindsey', 2003, 'F', 2541), +(178608, 'Alexia', 2003, 'F', 2495), +(178609, 'Cheyenne', 2003, 'F', 2474), +(178610, 'Jillian', 2003, 'F', 2425), +(178611, 'Daisy', 2003, 'F', 2407), +(178612, 'Mikayla', 2003, 'F', 2393), +(178613, 'Sabrina', 2003, 'F', 2393), +(178614, 'Ashlyn', 2003, 'F', 2368), +(178615, 'Cassandra', 2003, 'F', 2334), +(178616, 'Karen', 2003, 'F', 2331), +(178617, 'Caitlin', 2003, 'F', 2311), +(178618, 'Gianna', 2003, 'F', 2311), +(178619, 'Skylar', 2003, 'F', 2305), +(178620, 'Nevaeh', 2003, 'F', 2297), +(178621, 'Lizbeth', 2003, 'F', 2275), +(178622, 'Natalia', 2003, 'F', 2256), +(178623, 'Tiffany', 2003, 'F', 2256), +(178624, 'Mckenzie', 2003, 'F', 2250), +(178625, 'Cassidy', 2003, 'F', 2234), +(178626, 'Sophie', 2003, 'F', 2231), +(178627, 'Angelica', 2003, 'F', 2209), +(178628, 'Summer', 2003, 'F', 2209), +(178629, 'Kylee', 2003, 'F', 2197), +(178630, 'Jordyn', 2003, 'F', 2189), +(178631, 'Kendall', 2003, 'F', 2182), +(178632, 'Juliana', 2003, 'F', 2129), +(178633, 'Miranda', 2003, 'F', 2117), +(178634, 'Erica', 2003, 'F', 2091), +(178635, 'Caitlyn', 2003, 'F', 2077), +(178636, 'Kate', 2003, 'F', 2054), +(178637, 'Bianca', 2003, 'F', 2053), +(178638, 'Abby', 2003, 'F', 2048), +(178639, 'Naomi', 2003, 'F', 2043), +(178640, 'Kyla', 2003, 'F', 2023), +(178641, 'Crystal', 2003, 'F', 2017), +(178642, 'Rylee', 2003, 'F', 2017), +(178643, 'Alondra', 2003, 'F', 1996), +(178644, 'Karina', 2003, 'F', 1975), +(178645, 'Jamie', 2003, 'F', 1924), +(178646, 'Valerie', 2003, 'F', 1910), +(178647, 'Hope', 2003, 'F', 1897), +(178648, 'Kiara', 2003, 'F', 1873), +(178649, 'Hayley', 2003, 'F', 1864), +(178650, 'Delaney', 2003, 'F', 1855), +(178651, 'Chelsea', 2003, 'F', 1837), +(178652, 'Veronica', 2003, 'F', 1834), +(178653, 'Erika', 2003, 'F', 1816), +(178654, 'Karla', 2003, 'F', 1778), +(178655, 'Giselle', 2003, 'F', 1771), +(178656, 'Amaya', 2003, 'F', 1768), +(178657, 'Charlotte', 2003, 'F', 1763), +(178658, 'Carly', 2003, 'F', 1762), +(178659, 'Aubrey', 2003, 'F', 1757), +(178660, 'Valeria', 2003, 'F', 1736), +(178661, 'Julianna', 2003, 'F', 1734), +(178662, 'Ellie', 2003, 'F', 1728), +(178663, 'Maggie', 2003, 'F', 1718), +(178664, 'Sadie', 2003, 'F', 1706), +(178665, 'Addison', 2003, 'F', 1704), +(178666, 'Ruby', 2003, 'F', 1703), +(178667, 'Peyton', 2003, 'F', 1700), +(178668, 'Mckenna', 2003, 'F', 1695), +(178669, 'Meghan', 2003, 'F', 1695), +(178670, 'Layla', 2003, 'F', 1687), +(178671, 'Jazmin', 2003, 'F', 1674), +(178672, 'Alejandra', 2003, 'F', 1665), +(178673, 'Cynthia', 2003, 'F', 1661), +(178674, 'Jasmin', 2003, 'F', 1661), +(178675, 'Jayla', 2003, 'F', 1661), +(178676, 'Reagan', 2003, 'F', 1657), +(178677, 'Esmeralda', 2003, 'F', 1652), +(178678, 'Alana', 2003, 'F', 1619), +(178679, 'Payton', 2003, 'F', 1619), +(178680, 'Bethany', 2003, 'F', 1617), +(178681, 'Heather', 2003, 'F', 1617), +(178682, 'Monica', 2003, 'F', 1612), +(178683, 'Nadia', 2003, 'F', 1580), +(178684, 'Brittany', 2003, 'F', 1578), +(178685, 'Makenzie', 2003, 'F', 1578), +(178686, 'Adrianna', 2003, 'F', 1553), +(178687, 'Ariel', 2003, 'F', 1547), +(178688, 'Hanna', 2003, 'F', 1546), +(178689, 'Eva', 2003, 'F', 1515), +(178690, 'Desiree', 2003, 'F', 1504), +(178691, 'Haylee', 2003, 'F', 1502), +(178692, 'Rebekah', 2003, 'F', 1500), +(178693, 'Genesis', 2003, 'F', 1493), +(178694, 'Macy', 2003, 'F', 1483), +(178695, 'Lucy', 2003, 'F', 1472), +(178696, 'Zoey', 2003, 'F', 1469), +(178697, 'Elena', 2003, 'F', 1465), +(178698, 'Kyra', 2003, 'F', 1459), +(178699, 'Vivian', 2003, 'F', 1453), +(178700, 'Makenna', 2003, 'F', 1451), +(178701, 'Shannon', 2003, 'F', 1447), +(178702, 'Jaden', 2003, 'F', 1446), +(178703, 'Brenda', 2003, 'F', 1442), +(178704, 'Kristen', 2003, 'F', 1437), +(178705, 'Mallory', 2003, 'F', 1428), +(178706, 'Raven', 2003, 'F', 1427), +(178707, 'Elise', 2003, 'F', 1419), +(178708, 'Alison', 2003, 'F', 1413), +(178709, 'Serenity', 2003, 'F', 1412), +(178710, 'Diamond', 2003, 'F', 1398), +(178711, 'Aliyah', 2003, 'F', 1390), +(178712, 'Michaela', 2003, 'F', 1379), +(178713, 'Asia', 2003, 'F', 1369), +(178714, 'Kara', 2003, 'F', 1357), +(178715, 'Nina', 2003, 'F', 1356), +(178716, 'Fatima', 2003, 'F', 1354), +(178717, 'Julie', 2003, 'F', 1350), +(178718, 'Jayden', 2003, 'F', 1346), +(178719, 'Liliana', 2003, 'F', 1346), +(178720, 'Kailey', 2003, 'F', 1331), +(178721, 'Guadalupe', 2003, 'F', 1329), +(178722, 'Savanna', 2003, 'F', 1318); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(178723, 'Jazmine', 2003, 'F', 1313), +(178724, 'Allyson', 2003, 'F', 1306), +(178725, 'Laila', 2003, 'F', 1306), +(178726, 'Claudia', 2003, 'F', 1303), +(178727, 'Joanna', 2003, 'F', 1302), +(178728, 'Mariana', 2003, 'F', 1296), +(178729, 'Carmen', 2003, 'F', 1289), +(178730, 'Camille', 2003, 'F', 1275), +(178731, 'Serena', 2003, 'F', 1275), +(178732, 'Katelynn', 2003, 'F', 1270), +(178733, 'Josephine', 2003, 'F', 1256), +(178734, 'Kendra', 2003, 'F', 1235), +(178735, 'Lindsay', 2003, 'F', 1229), +(178736, 'Holly', 2003, 'F', 1225), +(178737, 'Carolina', 2003, 'F', 1215), +(178738, 'Kaitlin', 2003, 'F', 1191), +(178739, 'Heaven', 2003, 'F', 1190), +(178740, 'Lilly', 2003, 'F', 1187), +(178741, 'Sandra', 2003, 'F', 1180), +(178742, 'Jadyn', 2003, 'F', 1179), +(178743, 'Nancy', 2003, 'F', 1177), +(178744, 'Selena', 2003, 'F', 1177), +(178745, 'Anastasia', 2003, 'F', 1173), +(178746, 'Cecilia', 2003, 'F', 1161), +(178747, 'Cindy', 2003, 'F', 1160), +(178748, 'Paris', 2003, 'F', 1157), +(178749, 'Katrina', 2003, 'F', 1141), +(178750, 'Tatiana', 2003, 'F', 1135), +(178751, 'Skyler', 2003, 'F', 1132), +(178752, 'Alaina', 2003, 'F', 1126), +(178753, 'April', 2003, 'F', 1116), +(178754, 'Kirsten', 2003, 'F', 1116), +(178755, 'Tessa', 2003, 'F', 1113), +(178756, 'Perla', 2003, 'F', 1108), +(178757, 'Miriam', 2003, 'F', 1102), +(178758, 'Kathleen', 2003, 'F', 1096), +(178759, 'Annika', 2003, 'F', 1089), +(178760, 'Wendy', 2003, 'F', 1086), +(178761, 'Kira', 2003, 'F', 1083), +(178762, 'Esther', 2003, 'F', 1080), +(178763, 'Priscilla', 2003, 'F', 1078), +(178764, 'Cierra', 2003, 'F', 1074), +(178765, 'Kayleigh', 2003, 'F', 1071), +(178766, 'Brynn', 2003, 'F', 1067), +(178767, 'Alissa', 2003, 'F', 1061), +(178768, 'Annabelle', 2003, 'F', 1060), +(178769, 'Clara', 2003, 'F', 1049), +(178770, 'Cameron', 2003, 'F', 1041), +(178771, 'Brenna', 2003, 'F', 1036), +(178772, 'Tori', 2003, 'F', 1035), +(178773, 'Celeste', 2003, 'F', 1034), +(178774, 'Camila', 2003, 'F', 1033), +(178775, 'Kristina', 2003, 'F', 1033), +(178776, 'Bridget', 2003, 'F', 1028), +(178777, 'Yesenia', 2003, 'F', 1026), +(178778, 'Melody', 2003, 'F', 1022), +(178779, 'Emilee', 2003, 'F', 1020), +(178780, 'Josie', 2003, 'F', 1017), +(178781, 'Kassandra', 2003, 'F', 1016), +(178782, 'Patricia', 2003, 'F', 1011), +(178783, 'Eleanor', 2003, 'F', 1005), +(178784, 'Camryn', 2003, 'F', 998), +(178785, 'Shayla', 2003, 'F', 998), +(178786, 'Reese', 2003, 'F', 996), +(178787, 'Harley', 2003, 'F', 993), +(178788, 'Casey', 2003, 'F', 987), +(178789, 'Ashlynn', 2003, 'F', 979), +(178790, 'Heidi', 2003, 'F', 977), +(178791, 'Aniya', 2003, 'F', 976), +(178792, 'Bryanna', 2003, 'F', 972), +(178793, 'Allie', 2003, 'F', 971), +(178794, 'Bella', 2003, 'F', 971), +(178795, 'Natasha', 2003, 'F', 970), +(178796, 'Rachael', 2003, 'F', 970), +(178797, 'Daniella', 2003, 'F', 968), +(178798, 'Britney', 2003, 'F', 967), +(178799, 'Madeleine', 2003, 'F', 963), +(178800, 'Ashanti', 2003, 'F', 961), +(178801, 'Denise', 2003, 'F', 956), +(178802, 'Shania', 2003, 'F', 955), +(178803, 'Imani', 2003, 'F', 953), +(178804, 'Paola', 2003, 'F', 953), +(178805, 'Sidney', 2003, 'F', 951), +(178806, 'Kiana', 2003, 'F', 948), +(178807, 'Mercedes', 2003, 'F', 947), +(178808, 'Marisa', 2003, 'F', 945), +(178809, 'Eliza', 2003, 'F', 942), +(178810, 'Christine', 2003, 'F', 941), +(178811, 'Tara', 2003, 'F', 925), +(178812, 'Halle', 2003, 'F', 919), +(178813, 'Annie', 2003, 'F', 918), +(178814, 'Callie', 2003, 'F', 918), +(178815, 'Dakota', 2003, 'F', 915), +(178816, 'Alayna', 2003, 'F', 910), +(178817, 'Eden', 2003, 'F', 903), +(178818, 'Piper', 2003, 'F', 902), +(178819, 'Leila', 2003, 'F', 893), +(178820, 'Nia', 2003, 'F', 891), +(178821, 'Eliana', 2003, 'F', 890), +(178822, 'Alivia', 2003, 'F', 888), +(178823, 'Kaylie', 2003, 'F', 888), +(178824, 'Aniyah', 2003, 'F', 885), +(178825, 'Fiona', 2003, 'F', 885), +(178826, 'Ruth', 2003, 'F', 885), +(178827, 'Logan', 2003, 'F', 884), +(178828, 'Leilani', 2003, 'F', 882), +(178829, 'Yasmin', 2003, 'F', 872), +(178830, 'Talia', 2003, 'F', 869), +(178831, 'Julissa', 2003, 'F', 865), +(178832, 'Emely', 2003, 'F', 855), +(178833, 'Ashleigh', 2003, 'F', 852), +(178834, 'Hailee', 2003, 'F', 850), +(178835, 'Kiley', 2003, 'F', 850), +(178836, 'Rose', 2003, 'F', 849), +(178837, 'Ayanna', 2003, 'F', 846), +(178838, 'Meredith', 2003, 'F', 841), +(178839, 'Lesly', 2003, 'F', 838), +(178840, 'Cristina', 2003, 'F', 835), +(178841, 'Lauryn', 2003, 'F', 834), +(178842, 'Nora', 2003, 'F', 830), +(178843, 'Sasha', 2003, 'F', 827), +(178844, 'Jayda', 2003, 'F', 826), +(178845, 'Alexus', 2003, 'F', 813), +(178846, 'Lacey', 2003, 'F', 812), +(178847, 'Lisa', 2003, 'F', 811), +(178848, 'Aurora', 2003, 'F', 810), +(178849, 'Georgia', 2003, 'F', 810), +(178850, 'Rylie', 2003, 'F', 809), +(178851, 'Clarissa', 2003, 'F', 807), +(178852, 'Madalyn', 2003, 'F', 806), +(178853, 'Angie', 2003, 'F', 803), +(178854, 'Dana', 2003, 'F', 800), +(178855, 'Stella', 2003, 'F', 797), +(178856, 'Anne', 2003, 'F', 796), +(178857, 'Ashlee', 2003, 'F', 793), +(178858, 'Ciara', 2003, 'F', 791), +(178859, 'Tatum', 2003, 'F', 788), +(178860, 'Genevieve', 2003, 'F', 787), +(178861, 'Kyleigh', 2003, 'F', 787), +(178862, 'Iris', 2003, 'F', 786), +(178863, 'Lexi', 2003, 'F', 786), +(178864, 'Rosa', 2003, 'F', 786), +(178865, 'Amari', 2003, 'F', 784), +(178866, 'Helen', 2003, 'F', 783), +(178867, 'Marisol', 2003, 'F', 783), +(178868, 'Izabella', 2003, 'F', 779), +(178869, 'Haleigh', 2003, 'F', 770), +(178870, 'Raquel', 2003, 'F', 770), +(178871, 'Alina', 2003, 'F', 768), +(178872, 'Kassidy', 2003, 'F', 768), +(178873, 'Kamryn', 2003, 'F', 762), +(178874, 'Brittney', 2003, 'F', 758), +(178875, 'Tiana', 2003, 'F', 757), +(178876, 'Tabitha', 2003, 'F', 755), +(178877, 'Marina', 2003, 'F', 752), +(178878, 'Noelle', 2003, 'F', 750), +(178879, 'Brooklynn', 2003, 'F', 748), +(178880, 'Ivy', 2003, 'F', 748), +(178881, 'Viviana', 2003, 'F', 748), +(178882, 'Sage', 2003, 'F', 747), +(178883, 'Virginia', 2003, 'F', 742), +(178884, 'India', 2003, 'F', 741), +(178885, 'Hallie', 2003, 'F', 739), +(178886, 'Linda', 2003, 'F', 739), +(178887, 'Krystal', 2003, 'F', 736), +(178888, 'Madisyn', 2003, 'F', 728), +(178889, 'Anahi', 2003, 'F', 726), +(178890, 'Jaiden', 2003, 'F', 726), +(178891, 'Skye', 2003, 'F', 726), +(178892, 'Paulina', 2003, 'F', 725), +(178893, 'Tania', 2003, 'F', 716), +(178894, 'Kristin', 2003, 'F', 715), +(178895, 'Deanna', 2003, 'F', 714), +(178896, 'Francesca', 2003, 'F', 714), +(178897, 'Gloria', 2003, 'F', 712), +(178898, 'Jenny', 2003, 'F', 709), +(178899, 'Elisabeth', 2003, 'F', 708), +(178900, 'Amya', 2003, 'F', 706), +(178901, 'Malia', 2003, 'F', 705), +(178902, 'Jane', 2003, 'F', 704), +(178903, 'Madyson', 2003, 'F', 703), +(178904, 'Teresa', 2003, 'F', 703), +(178905, 'Carolyn', 2003, 'F', 700), +(178906, 'Alice', 2003, 'F', 699), +(178907, 'Nayeli', 2003, 'F', 697), +(178908, 'Baylee', 2003, 'F', 694), +(178909, 'Cora', 2003, 'F', 694), +(178910, 'Itzel', 2003, 'F', 694), +(178911, 'Phoebe', 2003, 'F', 688), +(178912, 'Ainsley', 2003, 'F', 686), +(178913, 'Laci', 2003, 'F', 685), +(178914, 'Alisha', 2003, 'F', 684), +(178915, 'Kaitlynn', 2003, 'F', 680), +(178916, 'Krista', 2003, 'F', 679), +(178917, 'Kaylin', 2003, 'F', 677), +(178918, 'Kiera', 2003, 'F', 676), +(178919, 'Alyson', 2003, 'F', 675), +(178920, 'Whitney', 2003, 'F', 674), +(178921, 'Dominique', 2003, 'F', 673), +(178922, 'Pamela', 2003, 'F', 673), +(178923, 'Regan', 2003, 'F', 669), +(178924, 'Ellen', 2003, 'F', 667), +(178925, 'Kaleigh', 2003, 'F', 667), +(178926, 'Justice', 2003, 'F', 665), +(178927, 'Renee', 2003, 'F', 665), +(178928, 'Taryn', 2003, 'F', 662), +(178929, 'Emilie', 2003, 'F', 660), +(178930, 'Karissa', 2003, 'F', 660), +(178931, 'Samara', 2003, 'F', 656), +(178932, 'Monique', 2003, 'F', 654), +(178933, 'Tamia', 2003, 'F', 654), +(178934, 'Valentina', 2003, 'F', 654), +(178935, 'Elaina', 2003, 'F', 650), +(178936, 'Carissa', 2003, 'F', 647), +(178937, 'Carla', 2003, 'F', 647), +(178938, 'Sarai', 2003, 'F', 642), +(178939, 'Cheyanne', 2003, 'F', 641), +(178940, 'Gina', 2003, 'F', 641), +(178941, 'Gillian', 2003, 'F', 638), +(178942, 'Macie', 2003, 'F', 637), +(178943, 'Jaqueline', 2003, 'F', 636), +(178944, 'Mckayla', 2003, 'F', 636), +(178945, 'Destinee', 2003, 'F', 634), +(178946, 'Ashton', 2003, 'F', 628), +(178947, 'Martha', 2003, 'F', 626), +(178948, 'Abbey', 2003, 'F', 625), +(178949, 'Joselyn', 2003, 'F', 625), +(178950, 'Lucia', 2003, 'F', 625), +(178951, 'Cadence', 2003, 'F', 620), +(178952, 'Jessie', 2003, 'F', 617), +(178953, 'Nyla', 2003, 'F', 615), +(178954, 'Ryleigh', 2003, 'F', 615), +(178955, 'Yasmine', 2003, 'F', 615), +(178956, 'Anika', 2003, 'F', 612), +(178957, 'Tia', 2003, 'F', 612), +(178958, 'Isabela', 2003, 'F', 609), +(178959, 'Janelle', 2003, 'F', 606), +(178960, 'Kiersten', 2003, 'F', 602), +(178961, 'Miracle', 2003, 'F', 599), +(178962, 'Ryan', 2003, 'F', 598), +(178963, 'Anya', 2003, 'F', 596), +(178964, 'Hailie', 2003, 'F', 594), +(178965, 'Dulce', 2003, 'F', 591), +(178966, 'Meagan', 2003, 'F', 589), +(178967, 'Alanna', 2003, 'F', 587), +(178968, 'Kailee', 2003, 'F', 584), +(178969, 'Joy', 2003, 'F', 581), +(178970, 'Kaley', 2003, 'F', 578), +(178971, 'Liberty', 2003, 'F', 577), +(178972, 'Fernanda', 2003, 'F', 576), +(178973, 'Tamara', 2003, 'F', 575), +(178974, 'Dylan', 2003, 'F', 572), +(178975, 'Lana', 2003, 'F', 572), +(178976, 'Cara', 2003, 'F', 568), +(178977, 'Marie', 2003, 'F', 567), +(178978, 'Katlyn', 2003, 'F', 566), +(178979, 'Susan', 2003, 'F', 566), +(178980, 'Trista', 2003, 'F', 566), +(178981, 'Deja', 2003, 'F', 564), +(178982, 'Janet', 2003, 'F', 564), +(178983, 'Ximena', 2003, 'F', 564), +(178984, 'America', 2003, 'F', 563), +(178985, 'Lena', 2003, 'F', 563), +(178986, 'Gisselle', 2003, 'F', 562), +(178987, 'Maddison', 2003, 'F', 559), +(178988, 'Marlene', 2003, 'F', 558), +(178989, 'Emilia', 2003, 'F', 556), +(178990, 'Abbigail', 2003, 'F', 555), +(178991, 'Precious', 2003, 'F', 553), +(178992, 'Elisa', 2003, 'F', 550), +(178993, 'Larissa', 2003, 'F', 549), +(178994, 'Johanna', 2003, 'F', 544), +(178995, 'Jimena', 2003, 'F', 542), +(178996, 'Helena', 2003, 'F', 541), +(178997, 'Mayra', 2003, 'F', 541), +(178998, 'Athena', 2003, 'F', 538), +(178999, 'Sharon', 2003, 'F', 538), +(179000, 'Carley', 2003, 'F', 537), +(179001, 'Abbie', 2003, 'F', 536), +(179002, 'Nataly', 2003, 'F', 536), +(179003, 'Willow', 2003, 'F', 536), +(179004, 'Charity', 2003, 'F', 534), +(179005, 'Estrella', 2003, 'F', 533), +(179006, 'Jacquelyn', 2003, 'F', 533), +(179007, 'Kasey', 2003, 'F', 531), +(179008, 'Madilyn', 2003, 'F', 530), +(179009, 'Kierra', 2003, 'F', 529), +(179010, 'Jaelyn', 2003, 'F', 528), +(179011, 'Aileen', 2003, 'F', 526), +(179012, 'Araceli', 2003, 'F', 525), +(179013, 'Angelique', 2003, 'F', 520), +(179014, 'Anaya', 2003, 'F', 519), +(179015, 'Kaya', 2003, 'F', 519), +(179016, 'Madelynn', 2003, 'F', 515), +(179017, 'Simone', 2003, 'F', 515), +(179018, 'Julianne', 2003, 'F', 514), +(179019, 'Marilyn', 2003, 'F', 514), +(179020, 'Raegan', 2003, 'F', 514), +(179021, 'Mikaela', 2003, 'F', 513), +(179022, 'Cassie', 2003, 'F', 509), +(179023, 'Janiya', 2003, 'F', 506), +(179024, 'Sydnee', 2003, 'F', 506), +(179025, 'Sylvia', 2003, 'F', 502), +(179026, 'Maci', 2003, 'F', 501), +(179027, 'Kailyn', 2003, 'F', 499), +(179028, 'Eve', 2003, 'F', 498), +(179029, 'Sonia', 2003, 'F', 498), +(179030, 'Ann', 2003, 'F', 497), +(179031, 'Elle', 2003, 'F', 497), +(179032, 'Lilian', 2003, 'F', 496), +(179033, 'Carlie', 2003, 'F', 495), +(179034, 'Laney', 2003, 'F', 495), +(179035, 'Macey', 2003, 'F', 495), +(179036, 'Maritza', 2003, 'F', 495), +(179037, 'Janae', 2003, 'F', 494), +(179038, 'Kali', 2003, 'F', 494), +(179039, 'Maia', 2003, 'F', 494), +(179040, 'Tess', 2003, 'F', 494), +(179041, 'Aspen', 2003, 'F', 493), +(179042, 'Theresa', 2003, 'F', 493), +(179043, 'Hayden', 2003, 'F', 490), +(179044, 'Lila', 2003, 'F', 490), +(179045, 'Reyna', 2003, 'F', 490), +(179046, 'Lorena', 2003, 'F', 489), +(179047, 'Kaila', 2003, 'F', 487), +(179048, 'Lexie', 2003, 'F', 487), +(179049, 'Marley', 2003, 'F', 486), +(179050, 'Aracely', 2003, 'F', 482), +(179051, 'Melany', 2003, 'F', 482), +(179052, 'Aimee', 2003, 'F', 480), +(179053, 'Luz', 2003, 'F', 478), +(179054, 'Arielle', 2003, 'F', 475), +(179055, 'Kenya', 2003, 'F', 475), +(179056, 'Rhiannon', 2003, 'F', 475), +(179057, 'Nathalie', 2003, 'F', 473), +(179058, 'Irene', 2003, 'F', 472), +(179059, 'Haylie', 2003, 'F', 469), +(179060, 'Jazlyn', 2003, 'F', 468), +(179061, 'Harmony', 2003, 'F', 467), +(179062, 'Isis', 2003, 'F', 467), +(179063, 'Violet', 2003, 'F', 467), +(179064, 'Jaclyn', 2003, 'F', 466), +(179065, 'Janessa', 2003, 'F', 464), +(179066, 'Justine', 2003, 'F', 464), +(179067, 'Brielle', 2003, 'F', 463), +(179068, 'Daphne', 2003, 'F', 460), +(179069, 'Kelsie', 2003, 'F', 460), +(179070, 'Alessandra', 2003, 'F', 459), +(179071, 'Haven', 2003, 'F', 459), +(179072, 'Gwendolyn', 2003, 'F', 458), +(179073, 'Arely', 2003, 'F', 457), +(179074, 'Tyler', 2003, 'F', 456), +(179075, 'Brandy', 2003, 'F', 454), +(179076, 'Yadira', 2003, 'F', 454), +(179077, 'Juliet', 2003, 'F', 452), +(179078, 'Lesley', 2003, 'F', 451), +(179079, 'Tanya', 2003, 'F', 451), +(179080, 'Tiara', 2003, 'F', 450), +(179081, 'Brandi', 2003, 'F', 449), +(179082, 'Frances', 2003, 'F', 448), +(179083, 'Zoie', 2003, 'F', 448), +(179084, 'Melina', 2003, 'F', 441), +(179085, 'Jaida', 2003, 'F', 439), +(179086, 'Bailee', 2003, 'F', 437), +(179087, 'Delilah', 2003, 'F', 437), +(179088, 'Kaelyn', 2003, 'F', 437), +(179089, 'Lola', 2003, 'F', 436), +(179090, 'Tianna', 2003, 'F', 436), +(179091, 'Mariela', 2003, 'F', 435), +(179092, 'Noemi', 2003, 'F', 435), +(179093, 'Kaia', 2003, 'F', 434), +(179094, 'Colleen', 2003, 'F', 432), +(179095, 'Keira', 2003, 'F', 432), +(179096, 'Shyanne', 2003, 'F', 432), +(179097, 'Thalia', 2003, 'F', 431), +(179098, 'Felicity', 2003, 'F', 430), +(179099, 'Teagan', 2003, 'F', 429), +(179100, 'Skyla', 2003, 'F', 428), +(179101, 'Yazmin', 2003, 'F', 428), +(179102, 'Judith', 2003, 'F', 427), +(179103, 'Barbara', 2003, 'F', 426), +(179104, 'Elaine', 2003, 'F', 426), +(179105, 'Regina', 2003, 'F', 425), +(179106, 'Aisha', 2003, 'F', 424), +(179107, 'Lillie', 2003, 'F', 422), +(179108, 'Rebeca', 2003, 'F', 422), +(179109, 'Adrienne', 2003, 'F', 421), +(179110, 'Deborah', 2003, 'F', 421), +(179111, 'Savanah', 2003, 'F', 419), +(179112, 'Alma', 2003, 'F', 417), +(179113, 'Clare', 2003, 'F', 417), +(179114, 'Aubree', 2003, 'F', 415), +(179115, 'Mara', 2003, 'F', 415), +(179116, 'Sienna', 2003, 'F', 415), +(179117, 'Kennedi', 2003, 'F', 414), +(179118, 'Karlee', 2003, 'F', 413), +(179119, 'Maeve', 2003, 'F', 413), +(179120, 'Jaylin', 2003, 'F', 411), +(179121, 'Mollie', 2003, 'F', 410), +(179122, 'Zaria', 2003, 'F', 410), +(179123, 'Halie', 2003, 'F', 409), +(179124, 'Kaylyn', 2003, 'F', 408), +(179125, 'Frida', 2003, 'F', 407), +(179126, 'Mariam', 2003, 'F', 407), +(179127, 'Amara', 2003, 'F', 406), +(179128, 'Celia', 2003, 'F', 406), +(179129, 'Tatyana', 2003, 'F', 406), +(179130, 'Cristal', 2003, 'F', 405), +(179131, 'Laurel', 2003, 'F', 404), +(179132, 'Presley', 2003, 'F', 404), +(179133, 'Adeline', 2003, 'F', 403), +(179134, 'Jamya', 2003, 'F', 403), +(179135, 'Aria', 2003, 'F', 402), +(179136, 'Kenzie', 2003, 'F', 402), +(179137, 'Carina', 2003, 'F', 401), +(179138, 'Stacy', 2003, 'F', 400), +(179139, 'Alena', 2003, 'F', 399), +(179140, 'Rosemary', 2003, 'F', 399), +(179141, 'Lia', 2003, 'F', 397), +(179142, 'Shaniya', 2003, 'F', 397), +(179143, 'Esperanza', 2003, 'F', 395), +(179144, 'Lea', 2003, 'F', 395), +(179145, 'Quinn', 2003, 'F', 394), +(179146, 'Taliyah', 2003, 'F', 394), +(179147, 'Ally', 2003, 'F', 393), +(179148, 'Emmalee', 2003, 'F', 393), +(179149, 'Dayana', 2003, 'F', 392), +(179150, 'Hana', 2003, 'F', 391), +(179151, 'Corinne', 2003, 'F', 390), +(179152, 'Edith', 2003, 'F', 389), +(179153, 'Lyric', 2003, 'F', 389), +(179154, 'Eileen', 2003, 'F', 388), +(179155, 'Carlee', 2003, 'F', 385), +(179156, 'Hazel', 2003, 'F', 385), +(179157, 'Stephany', 2003, 'F', 385), +(179158, 'Jazmyn', 2003, 'F', 384), +(179159, 'Ansley', 2003, 'F', 383), +(179160, 'Princess', 2003, 'F', 383), +(179161, 'Taniya', 2003, 'F', 383), +(179162, 'Chelsey', 2003, 'F', 380), +(179163, 'Breana', 2003, 'F', 379), +(179164, 'Felicia', 2003, 'F', 379), +(179165, 'Tina', 2003, 'F', 378), +(179166, 'Jolie', 2003, 'F', 377), +(179167, 'Kayley', 2003, 'F', 377), +(179168, 'Salma', 2003, 'F', 377), +(179169, 'Greta', 2003, 'F', 376), +(179170, 'Karlie', 2003, 'F', 376), +(179171, 'Leticia', 2003, 'F', 376), +(179172, 'Katharine', 2003, 'F', 375), +(179173, 'Nya', 2003, 'F', 375), +(179174, 'Amira', 2003, 'F', 374), +(179175, 'Ingrid', 2003, 'F', 374), +(179176, 'Alisa', 2003, 'F', 373), +(179177, 'Hadley', 2003, 'F', 373), +(179178, 'Juliette', 2003, 'F', 373), +(179179, 'Kendal', 2003, 'F', 372), +(179180, 'Tyra', 2003, 'F', 372), +(179181, 'Micah', 2003, 'F', 371), +(179182, 'Ayana', 2003, 'F', 369), +(179183, 'Blanca', 2003, 'F', 369), +(179184, 'Amani', 2003, 'F', 368), +(179185, 'Keely', 2003, 'F', 368), +(179186, 'Annabella', 2003, 'F', 367), +(179187, 'Penelope', 2003, 'F', 367), +(179188, 'Dayanara', 2003, 'F', 365), +(179189, 'Leanna', 2003, 'F', 365), +(179190, 'Lizeth', 2003, 'F', 362), +(179191, 'Myah', 2003, 'F', 361), +(179192, 'Annalise', 2003, 'F', 356), +(179193, 'Paula', 2003, 'F', 356), +(179194, 'Giovanna', 2003, 'F', 355), +(179195, 'Jalyn', 2003, 'F', 355), +(179196, 'Janiyah', 2003, 'F', 355), +(179197, 'Tayler', 2003, 'F', 354), +(179198, 'Toni', 2003, 'F', 354), +(179199, 'Jenifer', 2003, 'F', 353), +(179200, 'Mattie', 2003, 'F', 353), +(179201, 'Brisa', 2003, 'F', 352), +(179202, 'Chasity', 2003, 'F', 351), +(179203, 'Jewel', 2003, 'F', 351), +(179204, 'Abigayle', 2003, 'F', 350), +(179205, 'Cayla', 2003, 'F', 350), +(179206, 'Liana', 2003, 'F', 350), +(179207, 'Elsa', 2003, 'F', 349), +(179208, 'Elyse', 2003, 'F', 349), +(179209, 'Kaylynn', 2003, 'F', 349), +(179210, 'Lara', 2003, 'F', 349), +(179211, 'Aiyana', 2003, 'F', 348), +(179212, 'Antonia', 2003, 'F', 345), +(179213, 'Carrie', 2003, 'F', 345), +(179214, 'Joyce', 2003, 'F', 345), +(179215, 'Anissa', 2003, 'F', 344), +(179216, 'Aryanna', 2003, 'F', 344), +(179217, 'Evelin', 2003, 'F', 343), +(179218, 'Lisbeth', 2003, 'F', 343), +(179219, 'Micaela', 2003, 'F', 343), +(179220, 'Candace', 2003, 'F', 341), +(179221, 'Cecelia', 2003, 'F', 341), +(179222, 'Shakira', 2003, 'F', 337), +(179223, 'Nichole', 2003, 'F', 336), +(179224, 'Ebony', 2003, 'F', 333), +(179225, 'Essence', 2003, 'F', 333), +(179226, 'Kayli', 2003, 'F', 332), +(179227, 'Dalia', 2003, 'F', 331), +(179228, 'Gia', 2003, 'F', 330), +(179229, 'Annette', 2003, 'F', 329), +(179230, 'Marianna', 2003, 'F', 329), +(179231, 'Stacey', 2003, 'F', 329), +(179232, 'Catalina', 2003, 'F', 328), +(179233, 'Joana', 2003, 'F', 327), +(179234, 'Shaylee', 2003, 'F', 327), +(179235, 'Scarlett', 2003, 'F', 326), +(179236, 'Taniyah', 2003, 'F', 326), +(179237, 'Lilliana', 2003, 'F', 325), +(179238, 'Meadow', 2003, 'F', 325), +(179239, 'Alize', 2003, 'F', 324), +(179240, 'Devon', 2003, 'F', 324), +(179241, 'Emerson', 2003, 'F', 324), +(179242, 'Hunter', 2003, 'F', 324), +(179243, 'Karli', 2003, 'F', 324), +(179244, 'Aliya', 2003, 'F', 323), +(179245, 'Donna', 2003, 'F', 323), +(179246, 'Chaya', 2003, 'F', 321), +(179247, 'Yvette', 2003, 'F', 321), +(179248, 'Desirae', 2003, 'F', 320), +(179249, 'Jakayla', 2003, 'F', 320), +(179250, 'Kaliyah', 2003, 'F', 320), +(179251, 'Kelli', 2003, 'F', 320), +(179252, 'Aleah', 2003, 'F', 319), +(179253, 'Shea', 2003, 'F', 318), +(179254, 'Cali', 2003, 'F', 317), +(179255, 'Joslyn', 2003, 'F', 317), +(179256, 'Gretchen', 2003, 'F', 316), +(179257, 'Maura', 2003, 'F', 316), +(179258, 'Shayna', 2003, 'F', 315), +(179259, 'Iliana', 2003, 'F', 314), +(179260, 'London', 2003, 'F', 314), +(179261, 'Shreya', 2003, 'F', 314), +(179262, 'Sydni', 2003, 'F', 314), +(179263, 'Ericka', 2003, 'F', 313), +(179264, 'Jaylynn', 2003, 'F', 313), +(179265, 'Noelia', 2003, 'F', 313), +(179266, 'Ryann', 2003, 'F', 313), +(179267, 'Samira', 2003, 'F', 313), +(179268, 'Shirley', 2003, 'F', 313), +(179269, 'Devin', 2003, 'F', 312), +(179270, 'Ayla', 2003, 'F', 311), +(179271, 'Kenia', 2003, 'F', 311), +(179272, 'Abigale', 2003, 'F', 310), +(179273, 'Parker', 2003, 'F', 310), +(179274, 'Sanaa', 2003, 'F', 310), +(179275, 'Celine', 2003, 'F', 309), +(179276, 'Danna', 2003, 'F', 309), +(179277, 'Galilea', 2003, 'F', 309), +(179278, 'Kaylah', 2003, 'F', 308), +(179279, 'Casandra', 2003, 'F', 307), +(179280, 'Shyann', 2003, 'F', 307), +(179281, 'Kaiya', 2003, 'F', 306), +(179282, 'Kathy', 2003, 'F', 306), +(179283, 'Raina', 2003, 'F', 306), +(179284, 'Moriah', 2003, 'F', 305), +(179285, 'Lacie', 2003, 'F', 304), +(179286, 'Montana', 2003, 'F', 304), +(179287, 'Nyah', 2003, 'F', 304), +(179288, 'Yuliana', 2003, 'F', 304), +(179289, 'Amiya', 2003, 'F', 303), +(179290, 'Karly', 2003, 'F', 303), +(179291, 'Kianna', 2003, 'F', 303), +(179292, 'Norah', 2003, 'F', 303), +(179293, 'Sheila', 2003, 'F', 303), +(179294, 'Tracy', 2003, 'F', 303), +(179295, 'Nikki', 2003, 'F', 302), +(179296, 'Kenna', 2003, 'F', 301), +(179297, 'Christian', 2003, 'F', 299), +(179298, 'Kya', 2003, 'F', 299), +(179299, 'Makena', 2003, 'F', 298), +(179300, 'Lacy', 2003, 'F', 297), +(179301, 'Johana', 2003, 'F', 296), +(179302, 'Maliyah', 2003, 'F', 296), +(179303, 'Sandy', 2003, 'F', 296), +(179304, 'Monserrat', 2003, 'F', 294), +(179305, 'Savana', 2003, 'F', 294), +(179306, 'Kacie', 2003, 'F', 293), +(179307, 'Kasandra', 2003, 'F', 293), +(179308, 'Rayna', 2003, 'F', 293), +(179309, 'Katarina', 2003, 'F', 292), +(179310, 'Litzy', 2003, 'F', 292), +(179311, 'Lizette', 2003, 'F', 292), +(179312, 'Yahaira', 2003, 'F', 292), +(179313, 'Damaris', 2003, 'F', 291), +(179314, 'Dorothy', 2003, 'F', 291), +(179315, 'Karley', 2003, 'F', 291), +(179316, 'Maribel', 2003, 'F', 291), +(179317, 'Aliza', 2003, 'F', 290), +(179318, 'Areli', 2003, 'F', 289), +(179319, 'Margarita', 2003, 'F', 289), +(179320, 'Jacey', 2003, 'F', 288), +(179321, 'Jaidyn', 2003, 'F', 288), +(179322, 'Jasmyn', 2003, 'F', 288), +(179323, 'Madisen', 2003, 'F', 287), +(179324, 'Arlene', 2003, 'F', 285), +(179325, 'Aubrie', 2003, 'F', 285), +(179326, 'Alysa', 2003, 'F', 284), +(179327, 'Elissa', 2003, 'F', 284), +(179328, 'Bria', 2003, 'F', 283), +(179329, 'Marlee', 2003, 'F', 283), +(179330, 'Carli', 2003, 'F', 282), +(179331, 'Devyn', 2003, 'F', 282), +(179332, 'Berenice', 2003, 'F', 281), +(179333, 'Jaycee', 2003, 'F', 281), +(179334, 'Jaylene', 2003, 'F', 281), +(179335, 'Paloma', 2003, 'F', 281), +(179336, 'Annabel', 2003, 'F', 280), +(179337, 'Carson', 2003, 'F', 280), +(179338, 'Ciera', 2003, 'F', 280), +(179339, 'Miah', 2003, 'F', 280), +(179340, 'Ashly', 2003, 'F', 279), +(179341, 'Amina', 2003, 'F', 277), +(179342, 'Estefania', 2003, 'F', 277), +(179343, 'Patience', 2003, 'F', 277), +(179344, 'Abagail', 2003, 'F', 276), +(179345, 'Brianne', 2003, 'F', 276), +(179346, 'Giana', 2003, 'F', 276), +(179347, 'Madalynn', 2003, 'F', 276), +(179348, 'Reilly', 2003, 'F', 276), +(179349, 'Susana', 2003, 'F', 276), +(179350, 'Alia', 2003, 'F', 275), +(179351, 'Carol', 2003, 'F', 275), +(179352, 'Kadence', 2003, 'F', 275), +(179353, 'Mireya', 2003, 'F', 275), +(179354, 'Amelie', 2003, 'F', 274), +(179355, 'Destiney', 2003, 'F', 274), +(179356, 'Graciela', 2003, 'F', 274), +(179357, 'Jaliyah', 2003, 'F', 274), +(179358, 'Lexus', 2003, 'F', 274), +(179359, 'Sky', 2003, 'F', 273), +(179360, 'Yoselin', 2003, 'F', 273), +(179361, 'Ashtyn', 2003, 'F', 272), +(179362, 'Calista', 2003, 'F', 271), +(179363, 'Camilla', 2003, 'F', 271), +(179364, 'Luna', 2003, 'F', 271), +(179365, 'Rocio', 2003, 'F', 271), +(179366, 'Destini', 2003, 'F', 270), +(179367, 'Yareli', 2003, 'F', 268), +(179368, 'Belen', 2003, 'F', 267), +(179369, 'Nicolette', 2003, 'F', 267), +(179370, 'Sydnie', 2003, 'F', 266), +(179371, 'Tierra', 2003, 'F', 266), +(179372, 'Christa', 2003, 'F', 265), +(179373, 'Jaime', 2003, 'F', 265), +(179374, 'Jalynn', 2003, 'F', 265), +(179375, 'Rachelle', 2003, 'F', 265), +(179376, 'Reina', 2003, 'F', 265), +(179377, 'Joelle', 2003, 'F', 264), +(179378, 'Katelin', 2003, 'F', 264), +(179379, 'Lyndsey', 2003, 'F', 264), +(179380, 'Journey', 2003, 'F', 263), +(179381, 'Kallie', 2003, 'F', 263), +(179382, 'Robyn', 2003, 'F', 263), +(179383, 'Amiyah', 2003, 'F', 262), +(179384, 'Tamya', 2003, 'F', 262), +(179385, 'Christiana', 2003, 'F', 261), +(179386, 'Magdalena', 2003, 'F', 261), +(179387, 'Sherlyn', 2003, 'F', 261), +(179388, 'Campbell', 2003, 'F', 260), +(179389, 'Isabell', 2003, 'F', 260), +(179390, 'Jackeline', 2003, 'F', 260), +(179391, 'Sarahi', 2003, 'F', 260), +(179392, 'Marlen', 2003, 'F', 259), +(179393, 'Natalee', 2003, 'F', 259), +(179394, 'Saige', 2003, 'F', 259), +(179395, 'Candice', 2003, 'F', 258), +(179396, 'Elyssa', 2003, 'F', 257), +(179397, 'Armani', 2003, 'F', 255), +(179398, 'Libby', 2003, 'F', 255), +(179399, 'Robin', 2003, 'F', 255), +(179400, 'Jailyn', 2003, 'F', 254), +(179401, 'Kourtney', 2003, 'F', 254), +(179402, 'Lainey', 2003, 'F', 254), +(179403, 'Nyasia', 2003, 'F', 254), +(179404, 'Angeles', 2003, 'F', 253), +(179405, 'Kayden', 2003, 'F', 253), +(179406, 'Kellie', 2003, 'F', 253), +(179407, 'Makaila', 2003, 'F', 253), +(179408, 'Aryana', 2003, 'F', 252), +(179409, 'Beatriz', 2003, 'F', 252), +(179410, 'Dasia', 2003, 'F', 252), +(179411, 'Diane', 2003, 'F', 252), +(179412, 'Lucille', 2003, 'F', 252), +(179413, 'Bridgette', 2003, 'F', 251), +(179414, 'Karyme', 2003, 'F', 251), +(179415, 'Lina', 2003, 'F', 251), +(179416, 'Hayleigh', 2003, 'F', 250), +(179417, 'Shawna', 2003, 'F', 250), +(179418, 'Taya', 2003, 'F', 250), +(179419, 'Myra', 2003, 'F', 249), +(179420, 'Bonnie', 2003, 'F', 248), +(179421, 'Delia', 2003, 'F', 248), +(179422, 'Denisse', 2003, 'F', 248), +(179423, 'Natalya', 2003, 'F', 248), +(179424, 'Abril', 2003, 'F', 246), +(179425, 'Arly', 2003, 'F', 246), +(179426, 'Fabiola', 2003, 'F', 246), +(179427, 'Mandy', 2003, 'F', 246), +(179428, 'Anita', 2003, 'F', 245), +(179429, 'Baby', 2003, 'F', 245), +(179430, 'Jaylyn', 2003, 'F', 245), +(179431, 'Rowan', 2003, 'F', 245), +(179432, 'Janice', 2003, 'F', 244), +(179433, 'Alexys', 2003, 'F', 243), +(179434, 'Brionna', 2003, 'F', 243), +(179435, 'Brook', 2003, 'F', 243), +(179436, 'Keyla', 2003, 'F', 243), +(179437, 'Sariah', 2003, 'F', 243), +(179438, 'Tristen', 2003, 'F', 243), +(179439, 'Christy', 2003, 'F', 242), +(179440, 'Trisha', 2003, 'F', 242), +(179441, 'Saniya', 2003, 'F', 241), +(179442, 'Citlali', 2003, 'F', 240), +(179443, 'Kaci', 2003, 'F', 240), +(179444, 'Roselyn', 2003, 'F', 240), +(179445, 'Vanesa', 2003, 'F', 240), +(179446, 'Loren', 2003, 'F', 239), +(179447, 'Silvia', 2003, 'F', 239), +(179448, 'Breonna', 2003, 'F', 238), +(179449, 'Miya', 2003, 'F', 238), +(179450, 'Selina', 2003, 'F', 238), +(179451, 'Sonya', 2003, 'F', 238), +(179452, 'Yaritza', 2003, 'F', 238), +(179453, 'Asha', 2003, 'F', 237), +(179454, 'Iyanna', 2003, 'F', 237), +(179455, 'Mira', 2003, 'F', 237), +(179456, 'Phoenix', 2003, 'F', 237), +(179457, 'Laisha', 2003, 'F', 236), +(179458, 'Bryana', 2003, 'F', 235), +(179459, 'Alani', 2003, 'F', 234), +(179460, 'Kaydence', 2003, 'F', 234), +(179461, 'Kinsey', 2003, 'F', 234), +(179462, 'Rory', 2003, 'F', 234), +(179463, 'Amaris', 2003, 'F', 233), +(179464, 'Anais', 2003, 'F', 233), +(179465, 'Jacklyn', 2003, 'F', 233), +(179466, 'Kacey', 2003, 'F', 233), +(179467, 'Katerina', 2003, 'F', 233), +(179468, 'Katy', 2003, 'F', 233), +(179469, 'Kaylen', 2003, 'F', 233), +(179470, 'Priscila', 2003, 'F', 233), +(179471, 'Reanna', 2003, 'F', 233), +(179472, 'Alexandrea', 2003, 'F', 232), +(179473, 'Caleigh', 2003, 'F', 232), +(179474, 'Anjali', 2003, 'F', 231), +(179475, 'Iyana', 2003, 'F', 231), +(179476, 'Angeline', 2003, 'F', 230), +(179477, 'Gracelyn', 2003, 'F', 230), +(179478, 'Jazmyne', 2003, 'F', 230), +(179479, 'Livia', 2003, 'F', 230), +(179480, 'Yessenia', 2003, 'F', 230), +(179481, 'Aidan', 2003, 'F', 229), +(179482, 'Celina', 2003, 'F', 229), +(179483, 'Chanel', 2003, 'F', 229), +(179484, 'Eryn', 2003, 'F', 229), +(179485, 'Kalyn', 2003, 'F', 229), +(179486, 'Yvonne', 2003, 'F', 229), +(179487, 'Deasia', 2003, 'F', 228), +(179488, 'Estefany', 2003, 'F', 228), +(179489, 'Sarina', 2003, 'F', 228), +(179490, 'Tristan', 2003, 'F', 228), +(179491, 'Anabelle', 2003, 'F', 227), +(179492, 'Charlize', 2003, 'F', 227), +(179493, 'Melisa', 2003, 'F', 227), +(179494, 'Estefani', 2003, 'F', 226), +(179495, 'Kaela', 2003, 'F', 226), +(179496, 'Lorelei', 2003, 'F', 226), +(179497, 'Maryjane', 2003, 'F', 226), +(179498, 'Sally', 2003, 'F', 226), +(179499, 'Tatianna', 2003, 'F', 226), +(179500, 'Maegan', 2003, 'F', 225), +(179501, 'Hillary', 2003, 'F', 224), +(179502, 'Lilia', 2003, 'F', 224), +(179503, 'Yolanda', 2003, 'F', 224), +(179504, 'Aleena', 2003, 'F', 223), +(179505, 'Jaquelin', 2003, 'F', 223), +(179506, 'Luisa', 2003, 'F', 223), +(179507, 'Janiah', 2003, 'F', 222), +(179508, 'Nathaly', 2003, 'F', 222), +(179509, 'Zara', 2003, 'F', 222), +(179510, 'Jamia', 2003, 'F', 221), +(179511, 'Unique', 2003, 'F', 221), +(179512, 'Alex', 2003, 'F', 220), +(179513, 'Arissa', 2003, 'F', 220), +(179514, 'Caitlynn', 2003, 'F', 220), +(179515, 'Jeanette', 2003, 'F', 220), +(179516, 'Allyssa', 2003, 'F', 219), +(179517, 'Kylah', 2003, 'F', 219), +(179518, 'Maleah', 2003, 'F', 219), +(179519, 'Myla', 2003, 'F', 219), +(179520, 'Treasure', 2003, 'F', 219), +(179521, 'Zariah', 2003, 'F', 219), +(179522, 'Chana', 2003, 'F', 218), +(179523, 'Jana', 2003, 'F', 218), +(179524, 'Mina', 2003, 'F', 218), +(179525, 'Amirah', 2003, 'F', 217), +(179526, 'Anisa', 2003, 'F', 216), +(179527, 'Lourdes', 2003, 'F', 216), +(179528, 'Darby', 2003, 'F', 215), +(179529, 'Gwyneth', 2003, 'F', 214), +(179530, 'Keara', 2003, 'F', 214), +(179531, 'Akira', 2003, 'F', 213), +(179532, 'Michele', 2003, 'F', 213), +(179533, 'Rianna', 2003, 'F', 213), +(179534, 'Ada', 2003, 'F', 212), +(179535, 'Bryn', 2003, 'F', 212), +(179536, 'Noor', 2003, 'F', 212), +(179537, 'Ireland', 2003, 'F', 211), +(179538, 'Jaedyn', 2003, 'F', 211), +(179539, 'Karis', 2003, 'F', 211), +(179540, 'Beatrice', 2003, 'F', 210), +(179541, 'Keila', 2003, 'F', 210), +(179542, 'Aja', 2003, 'F', 209), +(179543, 'Jaelynn', 2003, 'F', 209), +(179544, 'Lanie', 2003, 'F', 209), +(179545, 'Aylin', 2003, 'F', 207), +(179546, 'Kayleen', 2003, 'F', 207), +(179547, 'Melinda', 2003, 'F', 207), +(179548, 'Beyonce', 2003, 'F', 206), +(179549, 'Lori', 2003, 'F', 206), +(179550, 'Riya', 2003, 'F', 206), +(179551, 'Sade', 2003, 'F', 206), +(179552, 'Sheridan', 2003, 'F', 206), +(179553, 'Shyla', 2003, 'F', 206), +(179554, 'Delanie', 2003, 'F', 205), +(179555, 'Emalee', 2003, 'F', 205), +(179556, 'Joselin', 2003, 'F', 205), +(179557, 'Kelsi', 2003, 'F', 205), +(179558, 'Grecia', 2003, 'F', 204), +(179559, 'Dania', 2003, 'F', 203), +(179560, 'Darlene', 2003, 'F', 203), +(179561, 'Emani', 2003, 'F', 203), +(179562, 'Jayde', 2003, 'F', 203), +(179563, 'Kinley', 2003, 'F', 203), +(179564, 'Meaghan', 2003, 'F', 203), +(179565, 'Pearl', 2003, 'F', 203), +(179566, 'Cloe', 2003, 'F', 202), +(179567, 'Stefanie', 2003, 'F', 202), +(179568, 'Audra', 2003, 'F', 201), +(179569, 'Azaria', 2003, 'F', 201), +(179570, 'Jocelynn', 2003, 'F', 201), +(179571, 'Kiya', 2003, 'F', 201), +(179572, 'Kyndall', 2003, 'F', 201), +(179573, 'Marcela', 2003, 'F', 201), +(179574, 'Norma', 2003, 'F', 201), +(179575, 'Cherish', 2003, 'F', 200), +(179576, 'Dawn', 2003, 'F', 200), +(179577, 'Drew', 2003, 'F', 200), +(179578, 'Harper', 2003, 'F', 200), +(179579, 'Malaysia', 2003, 'F', 200), +(179580, 'Alysia', 2003, 'F', 199), +(179581, 'Averie', 2003, 'F', 199), +(179582, 'Jaylee', 2003, 'F', 199), +(179583, 'Neha', 2003, 'F', 199), +(179584, 'Rileigh', 2003, 'F', 199), +(179585, 'Rita', 2003, 'F', 199), +(179586, 'Susanna', 2003, 'F', 199), +(179587, 'Abrianna', 2003, 'F', 198), +(179588, 'Alycia', 2003, 'F', 198), +(179589, 'Heidy', 2003, 'F', 198), +(179590, 'Nathalia', 2003, 'F', 198), +(179591, 'Roxana', 2003, 'F', 198), +(179592, 'Dianna', 2003, 'F', 197), +(179593, 'Kristine', 2003, 'F', 197), +(179594, 'Marcella', 2003, 'F', 197), +(179595, 'Maryam', 2003, 'F', 197), +(179596, 'Nadine', 2003, 'F', 197), +(179597, 'Averi', 2003, 'F', 196), +(179598, 'Danae', 2003, 'F', 196), +(179599, 'Lilianna', 2003, 'F', 196), +(179600, 'Lyla', 2003, 'F', 196), +(179601, 'Jazlynn', 2003, 'F', 195), +(179602, 'Jena', 2003, 'F', 195), +(179603, 'Lucero', 2003, 'F', 195), +(179604, 'Rhea', 2003, 'F', 195), +(179605, 'Janie', 2003, 'F', 194), +(179606, 'Niya', 2003, 'F', 194), +(179607, 'Martina', 2003, 'F', 193), +(179608, 'Amalia', 2003, 'F', 192), +(179609, 'Daisha', 2003, 'F', 192), +(179610, 'Juanita', 2003, 'F', 192), +(179611, 'Julisa', 2003, 'F', 192), +(179612, 'Carleigh', 2003, 'F', 191), +(179613, 'Kristy', 2003, 'F', 191), +(179614, 'Coral', 2003, 'F', 190), +(179615, 'Gladys', 2003, 'F', 190), +(179616, 'Katia', 2003, 'F', 190), +(179617, 'Leanne', 2003, 'F', 190), +(179618, 'Marian', 2003, 'F', 190), +(179619, 'Alannah', 2003, 'F', 189), +(179620, 'Emelia', 2003, 'F', 189), +(179621, 'Khloe', 2003, 'F', 189), +(179622, 'Roxanne', 2003, 'F', 189), +(179623, 'Ali', 2003, 'F', 188), +(179624, 'Dayna', 2003, 'F', 188), +(179625, 'Dina', 2003, 'F', 188), +(179626, 'Jaylen', 2003, 'F', 188), +(179627, 'Juana', 2003, 'F', 188), +(179628, 'Priya', 2003, 'F', 188), +(179629, 'Dallas', 2003, 'F', 187), +(179630, 'Haily', 2003, 'F', 187), +(179631, 'Kyndal', 2003, 'F', 187), +(179632, 'Leann', 2003, 'F', 187), +(179633, 'Madilynn', 2003, 'F', 187), +(179634, 'Anabel', 2003, 'F', 186), +(179635, 'Cailyn', 2003, 'F', 186), +(179636, 'Chiara', 2003, 'F', 186), +(179637, 'Elana', 2003, 'F', 186), +(179638, 'Emerald', 2003, 'F', 186), +(179639, 'Keeley', 2003, 'F', 186), +(179640, 'Xiomara', 2003, 'F', 186), +(179641, 'Yasmeen', 2003, 'F', 186), +(179642, 'Caylee', 2003, 'F', 185), +(179643, 'Jolene', 2003, 'F', 185), +(179644, 'Noel', 2003, 'F', 185), +(179645, 'Rhianna', 2003, 'F', 185), +(179646, 'Anastacia', 2003, 'F', 184), +(179647, 'Ashlie', 2003, 'F', 184), +(179648, 'Astrid', 2003, 'F', 184), +(179649, 'Jacquelin', 2003, 'F', 184), +(179650, 'Joseline', 2003, 'F', 184), +(179651, 'Mckinley', 2003, 'F', 184), +(179652, 'Alaysia', 2003, 'F', 183), +(179653, 'Citlaly', 2003, 'F', 183), +(179654, 'Constance', 2003, 'F', 183), +(179655, 'Addie', 2003, 'F', 182), +(179656, 'Gabriel', 2003, 'F', 182), +(179657, 'Shanya', 2003, 'F', 182), +(179658, 'Winter', 2003, 'F', 182), +(179659, 'Yajaira', 2003, 'F', 182), +(179660, 'Elsie', 2003, 'F', 181), +(179661, 'Jasmyne', 2003, 'F', 181), +(179662, 'Stevie', 2003, 'F', 181), +(179663, 'Tammy', 2003, 'F', 181), +(179664, 'Demi', 2003, 'F', 180), +(179665, 'Jania', 2003, 'F', 180), +(179666, 'Mila', 2003, 'F', 180), +(179667, 'Reece', 2003, 'F', 180), +(179668, 'Shaina', 2003, 'F', 180), +(179669, 'Star', 2003, 'F', 180), +(179670, 'Arlette', 2003, 'F', 179), +(179671, 'Kaycee', 2003, 'F', 179), +(179672, 'Kori', 2003, 'F', 179), +(179673, 'Flor', 2003, 'F', 178), +(179674, 'Kalie', 2003, 'F', 178), +(179675, 'Khushi', 2003, 'F', 178), +(179676, 'Selah', 2003, 'F', 178), +(179677, 'Adilene', 2003, 'F', 177), +(179678, 'Dahlia', 2003, 'F', 177), +(179679, 'Jayleen', 2003, 'F', 177), +(179680, 'Kiarra', 2003, 'F', 177), +(179681, 'Lisette', 2003, 'F', 177), +(179682, 'Rayne', 2003, 'F', 177), +(179683, 'Cailey', 2003, 'F', 176), +(179684, 'Eunice', 2003, 'F', 176), +(179685, 'Joanne', 2003, 'F', 176), +(179686, 'Rivka', 2003, 'F', 176), +(179687, 'Beverly', 2003, 'F', 175), +(179688, 'Charlie', 2003, 'F', 175), +(179689, 'Daija', 2003, 'F', 175), +(179690, 'Janeth', 2003, 'F', 175), +(179691, 'Maren', 2003, 'F', 175), +(179692, 'Samaria', 2003, 'F', 175), +(179693, 'Annamarie', 2003, 'F', 174), +(179694, 'Makiya', 2003, 'F', 174), +(179695, 'Randi', 2003, 'F', 174), +(179696, 'Ria', 2003, 'F', 174), +(179697, 'Ryley', 2003, 'F', 174), +(179698, 'Addyson', 2003, 'F', 173), +(179699, 'Alexi', 2003, 'F', 173), +(179700, 'Harlie', 2003, 'F', 173), +(179701, 'Millie', 2003, 'F', 173), +(179702, 'Chandler', 2003, 'F', 172), +(179703, 'Danica', 2003, 'F', 172), +(179704, 'Jaci', 2003, 'F', 172), +(179705, 'Jesse', 2003, 'F', 172), +(179706, 'Sheyla', 2003, 'F', 172), +(179707, 'Adrian', 2003, 'F', 171), +(179708, 'Alora', 2003, 'F', 171), +(179709, 'Brylee', 2003, 'F', 171), +(179710, 'Anabella', 2003, 'F', 170), +(179711, 'Jayme', 2003, 'F', 170), +(179712, 'Kimora', 2003, 'F', 170), +(179713, 'Kinsley', 2003, 'F', 170), +(179714, 'Leyla', 2003, 'F', 170), +(179715, 'Shauna', 2003, 'F', 170), +(179716, 'Xochitl', 2003, 'F', 170), +(179717, 'Annelise', 2003, 'F', 169), +(179718, 'Elianna', 2003, 'F', 169), +(179719, 'Elisha', 2003, 'F', 169), +(179720, 'Iman', 2003, 'F', 169), +(179721, 'Lexis', 2003, 'F', 169), +(179722, 'Scarlet', 2003, 'F', 169), +(179723, 'Abbygail', 2003, 'F', 168), +(179724, 'Janette', 2003, 'F', 168), +(179725, 'Sanjana', 2003, 'F', 168), +(179726, 'Adelaide', 2003, 'F', 167), +(179727, 'Aislinn', 2003, 'F', 167), +(179728, 'Alysha', 2003, 'F', 167), +(179729, 'Dora', 2003, 'F', 167), +(179730, 'Isha', 2003, 'F', 167), +(179731, 'Alyssia', 2003, 'F', 166), +(179732, 'Analise', 2003, 'F', 166), +(179733, 'Cydney', 2003, 'F', 166), +(179734, 'Giavanna', 2003, 'F', 166), +(179735, 'Gracey', 2003, 'F', 166), +(179736, 'Harlee', 2003, 'F', 166), +(179737, 'Milagros', 2003, 'F', 166), +(179738, 'Natali', 2003, 'F', 166), +(179739, 'Tayla', 2003, 'F', 166), +(179740, 'Arabella', 2003, 'F', 165), +(179741, 'Charlene', 2003, 'F', 165), +(179742, 'Lidia', 2003, 'F', 165), +(179743, 'Octavia', 2003, 'F', 165), +(179744, 'Shamya', 2003, 'F', 165), +(179745, 'Suzanne', 2003, 'F', 165), +(179746, 'Amia', 2003, 'F', 164), +(179747, 'Ariella', 2003, 'F', 164), +(179748, 'Cailin', 2003, 'F', 164), +(179749, 'Jamiah', 2003, 'F', 164), +(179750, 'Janya', 2003, 'F', 164), +(179751, 'Kaili', 2003, 'F', 164), +(179752, 'Maxine', 2003, 'F', 164), +(179753, 'Misty', 2003, 'F', 164), +(179754, 'Corina', 2003, 'F', 163), +(179755, 'Ivette', 2003, 'F', 163), +(179756, 'Maranda', 2003, 'F', 163), +(179757, 'Serina', 2003, 'F', 163), +(179758, 'Bree', 2003, 'F', 162), +(179759, 'Elliana', 2003, 'F', 162), +(179760, 'Griselda', 2003, 'F', 162), +(179761, 'Kendyl', 2003, 'F', 162), +(179762, 'Lilah', 2003, 'F', 162), +(179763, 'Rosalinda', 2003, 'F', 162), +(179764, 'Triniti', 2003, 'F', 162), +(179765, 'Aya', 2003, 'F', 161), +(179766, 'Azeneth', 2003, 'F', 161), +(179767, 'Giuliana', 2003, 'F', 161), +(179768, 'Jacie', 2003, 'F', 161), +(179769, 'Nariah', 2003, 'F', 161), +(179770, 'Saniyah', 2003, 'F', 161), +(179771, 'Shianne', 2003, 'F', 161), +(179772, 'Breanne', 2003, 'F', 160), +(179773, 'Chyna', 2003, 'F', 160), +(179774, 'Georgina', 2003, 'F', 160), +(179775, 'Jaya', 2003, 'F', 160), +(179776, 'Melia', 2003, 'F', 160), +(179777, 'Shaelyn', 2003, 'F', 160), +(179778, 'Starr', 2003, 'F', 160), +(179779, 'Annmarie', 2003, 'F', 159), +(179780, 'Jayna', 2003, 'F', 159), +(179781, 'Judy', 2003, 'F', 159), +(179782, 'Nelly', 2003, 'F', 159), +(179783, 'Arden', 2003, 'F', 158), +(179784, 'Fallon', 2003, 'F', 158), +(179785, 'Karsyn', 2003, 'F', 158), +(179786, 'Yulissa', 2003, 'F', 158), +(179787, 'Chantel', 2003, 'F', 157), +(179788, 'Cielo', 2003, 'F', 157), +(179789, 'Halee', 2003, 'F', 157), +(179790, 'Naydelin', 2003, 'F', 157), +(179791, 'Yessica', 2003, 'F', 157), +(179792, 'Adia', 2003, 'F', 156), +(179793, 'Brynna', 2003, 'F', 156), +(179794, 'Chase', 2003, 'F', 156), +(179795, 'Cortney', 2003, 'F', 156), +(179796, 'Irma', 2003, 'F', 156), +(179797, 'Kirstin', 2003, 'F', 156), +(179798, 'Maryann', 2003, 'F', 156), +(179799, 'Emery', 2003, 'F', 155), +(179800, 'Ivana', 2003, 'F', 155), +(179801, 'Connie', 2003, 'F', 154), +(179802, 'Gemma', 2003, 'F', 154), +(179803, 'Jaycie', 2003, 'F', 154), +(179804, 'Vianey', 2003, 'F', 154), +(179805, 'Zainab', 2003, 'F', 154), +(179806, 'Ananya', 2003, 'F', 153), +(179807, 'Austin', 2003, 'F', 153), +(179808, 'Geneva', 2003, 'F', 153), +(179809, 'Izabelle', 2003, 'F', 153), +(179810, 'Jill', 2003, 'F', 153), +(179811, 'Kloe', 2003, 'F', 153), +(179812, 'Mercy', 2003, 'F', 153), +(179813, 'Nikita', 2003, 'F', 153), +(179814, 'Alyvia', 2003, 'F', 152), +(179815, 'Kyara', 2003, 'F', 152), +(179816, 'Simran', 2003, 'F', 152), +(179817, 'Aiyanna', 2003, 'F', 151), +(179818, 'Breann', 2003, 'F', 151), +(179819, 'Karime', 2003, 'F', 151), +(179820, 'Karleigh', 2003, 'F', 151), +(179821, 'Magaly', 2003, 'F', 151), +(179822, 'Makala', 2003, 'F', 151), +(179823, 'Aniah', 2003, 'F', 150), +(179824, 'Azucena', 2003, 'F', 150), +(179825, 'Cordelia', 2003, 'F', 150), +(179826, 'Danika', 2003, 'F', 150), +(179827, 'Janaya', 2003, 'F', 150), +(179828, 'Kelsea', 2003, 'F', 150), +(179829, 'Lillianna', 2003, 'F', 150), +(179830, 'Oriana', 2003, 'F', 150), +(179831, 'Pauline', 2003, 'F', 150), +(179832, 'Roxanna', 2003, 'F', 150), +(179833, 'Gwen', 2003, 'F', 149), +(179834, 'Jamaya', 2003, 'F', 149), +(179835, 'Jamiya', 2003, 'F', 149), +(179836, 'Makenzi', 2003, 'F', 149), +(179837, 'Thea', 2003, 'F', 149), +(179838, 'Blair', 2003, 'F', 148), +(179839, 'Kayle', 2003, 'F', 148), +(179840, 'Leigha', 2003, 'F', 148), +(179841, 'Maile', 2003, 'F', 148), +(179842, 'Mari', 2003, 'F', 148), +(179843, 'Raelyn', 2003, 'F', 148), +(179844, 'Stormy', 2003, 'F', 148), +(179845, 'Ariyana', 2003, 'F', 147), +(179846, 'Hollie', 2003, 'F', 147), +(179847, 'Kai', 2003, 'F', 147), +(179848, 'Kaniya', 2003, 'F', 147), +(179849, 'Chelsie', 2003, 'F', 146), +(179850, 'Ivory', 2003, 'F', 146), +(179851, 'Kalli', 2003, 'F', 146), +(179852, 'Kari', 2003, 'F', 146), +(179853, 'Maricela', 2003, 'F', 146), +(179854, 'Siena', 2003, 'F', 146), +(179855, 'Farrah', 2003, 'F', 145), +(179856, 'Gissel', 2003, 'F', 145), +(179857, 'Liza', 2003, 'F', 145), +(179858, 'Marin', 2003, 'F', 145), +(179859, 'Shae', 2003, 'F', 145), +(179860, 'Daria', 2003, 'F', 144), +(179861, 'Noa', 2003, 'F', 144), +(179862, 'Shana', 2003, 'F', 144), +(179863, 'Valery', 2003, 'F', 144), +(179864, 'Katheryn', 2003, 'F', 143), +(179865, 'Katlynn', 2003, 'F', 143), +(179866, 'Linnea', 2003, 'F', 143), +(179867, 'Madysen', 2003, 'F', 143), +(179868, 'Tyanna', 2003, 'F', 143), +(179869, 'Anisha', 2003, 'F', 142), +(179870, 'Bayleigh', 2003, 'F', 142), +(179871, 'Betty', 2003, 'F', 142), +(179872, 'Darcy', 2003, 'F', 142), +(179873, 'Darian', 2003, 'F', 142), +(179874, 'Halley', 2003, 'F', 142), +(179875, 'Janna', 2003, 'F', 142), +(179876, 'Kaelin', 2003, 'F', 142), +(179877, 'Kalei', 2003, 'F', 142), +(179878, 'Leia', 2003, 'F', 142), +(179879, 'Lynn', 2003, 'F', 142), +(179880, 'Mariyah', 2003, 'F', 142), +(179881, 'Mindy', 2003, 'F', 142), +(179882, 'Neida', 2003, 'F', 142), +(179883, 'Soleil', 2003, 'F', 142), +(179884, 'Adamaris', 2003, 'F', 141), +(179885, 'Emmaline', 2003, 'F', 141), +(179886, 'Jaylah', 2003, 'F', 141), +(179887, 'Justina', 2003, 'F', 141), +(179888, 'Mason', 2003, 'F', 141), +(179889, 'Sequoia', 2003, 'F', 141), +(179890, 'Vicky', 2003, 'F', 141), +(179891, 'Charlee', 2003, 'F', 140), +(179892, 'Cinthia', 2003, 'F', 140), +(179893, 'Diya', 2003, 'F', 140), +(179894, 'Esha', 2003, 'F', 140), +(179895, 'Kaylan', 2003, 'F', 140), +(179896, 'Tea', 2003, 'F', 140), +(179897, 'Amaria', 2003, 'F', 139), +(179898, 'Amiah', 2003, 'F', 139), +(179899, 'Arleth', 2003, 'F', 139), +(179900, 'Brookelyn', 2003, 'F', 139), +(179901, 'Charisma', 2003, 'F', 139), +(179902, 'Emmy', 2003, 'F', 139), +(179903, 'Izabel', 2003, 'F', 139), +(179904, 'Jaila', 2003, 'F', 139), +(179905, 'Lili', 2003, 'F', 139), +(179906, 'Milan', 2003, 'F', 139), +(179907, 'Zahra', 2003, 'F', 139), +(179908, 'Aliana', 2003, 'F', 138), +(179909, 'Annaliese', 2003, 'F', 138), +(179910, 'Grayson', 2003, 'F', 138), +(179911, 'Odalys', 2003, 'F', 138), +(179912, 'Shaniyah', 2003, 'F', 138), +(179913, 'Aida', 2003, 'F', 137), +(179914, 'Alliyah', 2003, 'F', 137), +(179915, 'Alyse', 2003, 'F', 137), +(179916, 'Karolina', 2003, 'F', 137), +(179917, 'Neveah', 2003, 'F', 137), +(179918, 'Olga', 2003, 'F', 137), +(179919, 'Tegan', 2003, 'F', 137), +(179920, 'Zion', 2003, 'F', 137), +(179921, 'Brinley', 2003, 'F', 136), +(179922, 'Dixie', 2003, 'F', 136), +(179923, 'Mackenna', 2003, 'F', 136), +(179924, 'Marisela', 2003, 'F', 136), +(179925, 'Naya', 2003, 'F', 136), +(179926, 'Niyah', 2003, 'F', 136), +(179927, 'Rosalie', 2003, 'F', 136), +(179928, 'Chantal', 2003, 'F', 135), +(179929, 'Colette', 2003, 'F', 135), +(179930, 'Jackie', 2003, 'F', 135), +(179931, 'Jessenia', 2003, 'F', 135), +(179932, 'Rochelle', 2003, 'F', 135), +(179933, 'Soraya', 2003, 'F', 135), +(179934, 'Tanisha', 2003, 'F', 135), +(179935, 'Tiffani', 2003, 'F', 135), +(179936, 'Yazmine', 2003, 'F', 135), +(179937, 'Ginger', 2003, 'F', 134), +(179938, 'Jodi', 2003, 'F', 134), +(179939, 'Lesli', 2003, 'F', 134), +(179940, 'Lilli', 2003, 'F', 134), +(179941, 'Alli', 2003, 'F', 133), +(179942, 'Betsy', 2003, 'F', 133), +(179943, 'Isyss', 2003, 'F', 133), +(179944, 'Jennie', 2003, 'F', 133), +(179945, 'Kalista', 2003, 'F', 133), +(179946, 'Kassie', 2003, 'F', 133), +(179947, 'Mykayla', 2003, 'F', 133), +(179948, 'Tehya', 2003, 'F', 133), +(179949, 'Yamilet', 2003, 'F', 133), +(179950, 'Yamileth', 2003, 'F', 133), +(179951, 'Akasha', 2003, 'F', 132), +(179952, 'Deisy', 2003, 'F', 132), +(179953, 'Jala', 2003, 'F', 132), +(179954, 'Joey', 2003, 'F', 132), +(179955, 'Kalea', 2003, 'F', 132), +(179956, 'Maddie', 2003, 'F', 132), +(179957, 'Maiya', 2003, 'F', 132), +(179958, 'Moira', 2003, 'F', 132), +(179959, 'Shanice', 2003, 'F', 132), +(179960, 'Symone', 2003, 'F', 132), +(179961, 'Belinda', 2003, 'F', 131), +(179962, 'Chyanne', 2003, 'F', 131), +(179963, 'Dejah', 2003, 'F', 131), +(179964, 'Jackelyn', 2003, 'F', 131), +(179965, 'Kierstin', 2003, 'F', 131), +(179966, 'Lynette', 2003, 'F', 131), +(179967, 'Rena', 2003, 'F', 131), +(179968, 'Shay', 2003, 'F', 131), +(179969, 'Terri', 2003, 'F', 131), +(179970, 'Tionna', 2003, 'F', 131), +(179971, 'Tristin', 2003, 'F', 131), +(179972, 'Alecia', 2003, 'F', 130), +(179973, 'Aliah', 2003, 'F', 130), +(179974, 'Amyah', 2003, 'F', 130), +(179975, 'Kameron', 2003, 'F', 130), +(179976, 'Krysta', 2003, 'F', 130), +(179977, 'Lailah', 2003, 'F', 130), +(179978, 'Lluvia', 2003, 'F', 130), +(179979, 'Lorraine', 2003, 'F', 130), +(179980, 'Raelynn', 2003, 'F', 130), +(179981, 'Taina', 2003, 'F', 130), +(179982, 'Terra', 2003, 'F', 130), +(179983, 'Antoinette', 2003, 'F', 129), +(179984, 'Avril', 2003, 'F', 129), +(179985, 'Baylie', 2003, 'F', 129), +(179986, 'Destany', 2003, 'F', 129), +(179987, 'Kelley', 2003, 'F', 129), +(179988, 'Laniya', 2003, 'F', 129), +(179989, 'Mattison', 2003, 'F', 129), +(179990, 'Meg', 2003, 'F', 129), +(179991, 'Rilee', 2003, 'F', 129), +(179992, 'Sanai', 2003, 'F', 129), +(179993, 'Shantel', 2003, 'F', 129), +(179994, 'Zaniya', 2003, 'F', 129), +(179995, 'Ania', 2003, 'F', 128), +(179996, 'Billie', 2003, 'F', 128), +(179997, 'Farah', 2003, 'F', 128), +(179998, 'Ilana', 2003, 'F', 128), +(179999, 'Montserrat', 2003, 'F', 128), +(180000, 'Ember', 2003, 'F', 127), +(180001, 'Geraldine', 2003, 'F', 127), +(180002, 'Hali', 2003, 'F', 127), +(180003, 'Kaylea', 2003, 'F', 127), +(180004, 'Keanna', 2003, 'F', 127), +(180005, 'Lucinda', 2003, 'F', 127), +(180006, 'Tamera', 2003, 'F', 127), +(180007, 'Adelyn', 2003, 'F', 126), +(180008, 'Gwenyth', 2003, 'F', 126), +(180009, 'Kalia', 2003, 'F', 126), +(180010, 'Kaytlin', 2003, 'F', 126), +(180011, 'Makaela', 2003, 'F', 126), +(180012, 'Malaya', 2003, 'F', 126), +(180013, 'Margot', 2003, 'F', 126), +(180014, 'Maureen', 2003, 'F', 126), +(180015, 'Aleigha', 2003, 'F', 125), +(180016, 'Ariadna', 2003, 'F', 125), +(180017, 'Ariah', 2003, 'F', 125), +(180018, 'Dalila', 2003, 'F', 125), +(180019, 'Ema', 2003, 'F', 125), +(180020, 'Joann', 2003, 'F', 125), +(180021, 'Keyana', 2003, 'F', 125), +(180022, 'Lilyana', 2003, 'F', 125), +(180023, 'Viridiana', 2003, 'F', 125), +(180024, 'Adison', 2003, 'F', 124), +(180025, 'Annalisa', 2003, 'F', 124), +(180026, 'Hattie', 2003, 'F', 124), +(180027, 'Imari', 2003, 'F', 124), +(180028, 'Ivonne', 2003, 'F', 124), +(180029, 'Kami', 2003, 'F', 124), +(180030, 'Kamila', 2003, 'F', 124), +(180031, 'Laine', 2003, 'F', 124), +(180032, 'Makiah', 2003, 'F', 124), +(180033, 'Rain', 2003, 'F', 124), +(180034, 'Rayven', 2003, 'F', 124), +(180035, 'Acacia', 2003, 'F', 123), +(180036, 'Ashlin', 2003, 'F', 123), +(180037, 'Ayden', 2003, 'F', 123), +(180038, 'Brigid', 2003, 'F', 123), +(180039, 'Debra', 2003, 'F', 123), +(180040, 'Heavenly', 2003, 'F', 123), +(180041, 'Jersey', 2003, 'F', 123), +(180042, 'Jesenia', 2003, 'F', 123), +(180043, 'Jocelin', 2003, 'F', 123), +(180044, 'Kerri', 2003, 'F', 123), +(180045, 'Kyah', 2003, 'F', 123), +(180046, 'Leandra', 2003, 'F', 123), +(180047, 'Madelyne', 2003, 'F', 123), +(180048, 'Mariel', 2003, 'F', 123), +(180049, 'Marjorie', 2003, 'F', 123), +(180050, 'Mikala', 2003, 'F', 123), +(180051, 'Nalani', 2003, 'F', 123), +(180052, 'Rubi', 2003, 'F', 123), +(180053, 'Angelia', 2003, 'F', 122), +(180054, 'Annalee', 2003, 'F', 122), +(180055, 'Charley', 2003, 'F', 122), +(180056, 'Keri', 2003, 'F', 122), +(180057, 'Kristal', 2003, 'F', 122), +(180058, 'Lela', 2003, 'F', 122), +(180059, 'Shelbi', 2003, 'F', 122), +(180060, 'Shelbie', 2003, 'F', 122), +(180061, 'Tamyra', 2003, 'F', 122), +(180062, 'Adelina', 2003, 'F', 121), +(180063, 'Anyssa', 2003, 'F', 121), +(180064, 'Ariyanna', 2003, 'F', 121), +(180065, 'Ayah', 2003, 'F', 121), +(180066, 'Aysia', 2003, 'F', 121), +(180067, 'Azariah', 2003, 'F', 121), +(180068, 'Briley', 2003, 'F', 121), +(180069, 'Karah', 2003, 'F', 121), +(180070, 'Karmen', 2003, 'F', 121), +(180071, 'Laken', 2003, 'F', 121), +(180072, 'Markayla', 2003, 'F', 121), +(180073, 'Mika', 2003, 'F', 121), +(180074, 'Saira', 2003, 'F', 121), +(180075, 'Sania', 2003, 'F', 121), +(180076, 'Shanna', 2003, 'F', 121), +(180077, 'Valencia', 2003, 'F', 121), +(180078, 'Amberly', 2003, 'F', 120), +(180079, 'Corrine', 2003, 'F', 120), +(180080, 'Edna', 2003, 'F', 120), +(180081, 'Graci', 2003, 'F', 120), +(180082, 'Kamya', 2003, 'F', 120), +(180083, 'Layne', 2003, 'F', 120), +(180084, 'Racheal', 2003, 'F', 120), +(180085, 'Sabina', 2003, 'F', 120), +(180086, 'Adela', 2003, 'F', 119), +(180087, 'Amarie', 2003, 'F', 119), +(180088, 'Aneesa', 2003, 'F', 119), +(180089, 'Annemarie', 2003, 'F', 119), +(180090, 'Calli', 2003, 'F', 119), +(180091, 'Desire', 2003, 'F', 119), +(180092, 'Elayna', 2003, 'F', 119), +(180093, 'Jianna', 2003, 'F', 119), +(180094, 'Kathrine', 2003, 'F', 119), +(180095, 'Keren', 2003, 'F', 119), +(180096, 'Mae', 2003, 'F', 119), +(180097, 'Marion', 2003, 'F', 119), +(180098, 'Sana', 2003, 'F', 119), +(180099, 'Alaya', 2003, 'F', 118), +(180100, 'Cambria', 2003, 'F', 118), +(180101, 'Camden', 2003, 'F', 118), +(180102, 'Eleni', 2003, 'F', 118), +(180103, 'Elexis', 2003, 'F', 118), +(180104, 'Evangelina', 2003, 'F', 118), +(180105, 'Gisela', 2003, 'F', 118), +(180106, 'Jalen', 2003, 'F', 118), +(180107, 'Jamiyah', 2003, 'F', 118), +(180108, 'Janay', 2003, 'F', 118), +(180109, 'Jorja', 2003, 'F', 118), +(180110, 'Lani', 2003, 'F', 118), +(180111, 'Leeann', 2003, 'F', 118), +(180112, 'Leena', 2003, 'F', 118), +(180113, 'Lexy', 2003, 'F', 118), +(180114, 'Makyla', 2003, 'F', 118), +(180115, 'Abbigale', 2003, 'F', 117), +(180116, 'Aditi', 2003, 'F', 117), +(180117, 'Arwen', 2003, 'F', 117), +(180118, 'Brynne', 2003, 'F', 117), +(180119, 'Charli', 2003, 'F', 117), +(180120, 'Dani', 2003, 'F', 117), +(180121, 'Isela', 2003, 'F', 117), +(180122, 'Lizbet', 2003, 'F', 117), +(180123, 'Monet', 2003, 'F', 117), +(180124, 'Samia', 2003, 'F', 117), +(180125, 'Zora', 2003, 'F', 117), +(180126, 'Adele', 2003, 'F', 116), +(180127, 'Anai', 2003, 'F', 116), +(180128, 'Callista', 2003, 'F', 116), +(180129, 'Cameryn', 2003, 'F', 116), +(180130, 'Cori', 2003, 'F', 116), +(180131, 'Evelynn', 2003, 'F', 116), +(180132, 'Holland', 2003, 'F', 116), +(180133, 'Julieta', 2003, 'F', 116), +(180134, 'Kaileigh', 2003, 'F', 116), +(180135, 'Keyonna', 2003, 'F', 116), +(180136, 'Lianna', 2003, 'F', 116), +(180137, 'Lilith', 2003, 'F', 116), +(180138, 'Malka', 2003, 'F', 116), +(180139, 'Melani', 2003, 'F', 116), +(180140, 'Noelani', 2003, 'F', 116), +(180141, 'Rosario', 2003, 'F', 116), +(180142, 'Cheryl', 2003, 'F', 115), +(180143, 'Dara', 2003, 'F', 115), +(180144, 'Kaytlyn', 2003, 'F', 115), +(180145, 'Kora', 2003, 'F', 115), +(180146, 'Nylah', 2003, 'F', 115), +(180147, 'Violeta', 2003, 'F', 115), +(180148, 'Xitlali', 2003, 'F', 115), +(180149, 'Yulisa', 2003, 'F', 115), +(180150, 'Andie', 2003, 'F', 114), +(180151, 'Britany', 2003, 'F', 114), +(180152, 'Cloey', 2003, 'F', 114), +(180153, 'Emme', 2003, 'F', 114), +(180154, 'Franchesca', 2003, 'F', 114), +(180155, 'Grayce', 2003, 'F', 114), +(180156, 'Harleigh', 2003, 'F', 114), +(180157, 'Samiyah', 2003, 'F', 114), +(180158, 'Samya', 2003, 'F', 114), +(180159, 'Sonja', 2003, 'F', 114), +(180160, 'Anette', 2003, 'F', 113), +(180161, 'Daijah', 2003, 'F', 113), +(180162, 'Divya', 2003, 'F', 113), +(180163, 'Estella', 2003, 'F', 113), +(180164, 'Gracen', 2003, 'F', 113), +(180165, 'Jessi', 2003, 'F', 113), +(180166, 'Josefina', 2003, 'F', 113), +(180167, 'Kailynn', 2003, 'F', 113), +(180168, 'Kalee', 2003, 'F', 113), +(180169, 'Kortney', 2003, 'F', 113), +(180170, 'Mallorie', 2003, 'F', 113), +(180171, 'Marianne', 2003, 'F', 113), +(180172, 'Myriam', 2003, 'F', 113), +(180173, 'Shelly', 2003, 'F', 113), +(180174, 'Sherry', 2003, 'F', 113), +(180175, 'Wynter', 2003, 'F', 113), +(180176, 'Elia', 2003, 'F', 112), +(180177, 'Gracyn', 2003, 'F', 112), +(180178, 'Honesty', 2003, 'F', 112), +(180179, 'Kalina', 2003, 'F', 112), +(180180, 'Louise', 2003, 'F', 112), +(180181, 'Nayely', 2003, 'F', 112), +(180182, 'Tasia', 2003, 'F', 112), +(180183, 'Vivianna', 2003, 'F', 112), +(180184, 'Alea', 2003, 'F', 111), +(180185, 'Amerie', 2003, 'F', 111), +(180186, 'Ashely', 2003, 'F', 111), +(180187, 'Breeanna', 2003, 'F', 111), +(180188, 'Gisel', 2003, 'F', 111), +(180189, 'Kaeli', 2003, 'F', 111); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(180190, 'Kamille', 2003, 'F', 111), +(180191, 'Saylor', 2003, 'F', 111), +(180192, 'Shira', 2003, 'F', 111), +(180193, 'Tyana', 2003, 'F', 111), +(180194, 'Zaira', 2003, 'F', 111), +(180195, 'Adrianne', 2003, 'F', 110), +(180196, 'Ani', 2003, 'F', 110), +(180197, 'Hilary', 2003, 'F', 110), +(180198, 'Jadah', 2003, 'F', 110), +(180199, 'Kalynn', 2003, 'F', 110), +(180200, 'Keziah', 2003, 'F', 110), +(180201, 'Lilyanna', 2003, 'F', 110), +(180202, 'Lissette', 2003, 'F', 110), +(180203, 'Nallely', 2003, 'F', 110), +(180204, 'Ravyn', 2003, 'F', 110), +(180205, 'Tyla', 2003, 'F', 110), +(180206, 'Abriana', 2003, 'F', 109), +(180207, 'Ciarra', 2003, 'F', 109), +(180208, 'Dayanna', 2003, 'F', 109), +(180209, 'Kacy', 2003, 'F', 109), +(180210, 'Nyssa', 2003, 'F', 109), +(180211, 'Pilar', 2003, 'F', 109), +(180212, 'Shoshana', 2003, 'F', 109), +(180213, 'Stefany', 2003, 'F', 109), +(180214, 'Vivienne', 2003, 'F', 109), +(180215, 'Xitlaly', 2003, 'F', 109), +(180216, 'Analisa', 2003, 'F', 108), +(180217, 'Blake', 2003, 'F', 108), +(180218, 'Bobbie', 2003, 'F', 108), +(180219, 'Christie', 2003, 'F', 108), +(180220, 'Jennah', 2003, 'F', 108), +(180221, 'Kristi', 2003, 'F', 108), +(180222, 'Madelin', 2003, 'F', 108), +(180223, 'Makiyah', 2003, 'F', 108), +(180224, 'Mercedez', 2003, 'F', 108), +(180225, 'Siobhan', 2003, 'F', 108), +(180226, 'Tamar', 2003, 'F', 108), +(180227, 'Abygail', 2003, 'F', 107), +(180228, 'Amie', 2003, 'F', 107), +(180229, 'Arionna', 2003, 'F', 107), +(180230, 'Belle', 2003, 'F', 107), +(180231, 'Brissa', 2003, 'F', 107), +(180232, 'Elysia', 2003, 'F', 107), +(180233, 'Jacy', 2003, 'F', 107), +(180234, 'Jessalyn', 2003, 'F', 107), +(180235, 'Jorden', 2003, 'F', 107), +(180236, 'Kalani', 2003, 'F', 107), +(180237, 'Keegan', 2003, 'F', 107), +(180238, 'Khadijah', 2003, 'F', 107), +(180239, 'Lucie', 2003, 'F', 107), +(180240, 'Malena', 2003, 'F', 107), +(180241, 'Selene', 2003, 'F', 107), +(180242, 'Aiden', 2003, 'F', 106), +(180243, 'Angelena', 2003, 'F', 106), +(180244, 'Anneliese', 2003, 'F', 106), +(180245, 'Brea', 2003, 'F', 106), +(180246, 'Brieanna', 2003, 'F', 106), +(180247, 'Carsyn', 2003, 'F', 106), +(180248, 'Carys', 2003, 'F', 106), +(180249, 'Daja', 2003, 'F', 106), +(180250, 'Dajah', 2003, 'F', 106), +(180251, 'Jaslyn', 2003, 'F', 106), +(180252, 'Macayla', 2003, 'F', 106), +(180253, 'Magali', 2003, 'F', 106), +(180254, 'Marguerite', 2003, 'F', 106), +(180255, 'Nakayla', 2003, 'F', 106), +(180256, 'Nautica', 2003, 'F', 106), +(180257, 'Rosemarie', 2003, 'F', 106), +(180258, 'Rosie', 2003, 'F', 106), +(180259, 'Caley', 2003, 'F', 105), +(180260, 'Dafne', 2003, 'F', 105), +(180261, 'Darla', 2003, 'F', 105), +(180262, 'Dasha', 2003, 'F', 105), +(180263, 'Demetria', 2003, 'F', 105), +(180264, 'Elora', 2003, 'F', 105), +(180265, 'Haileigh', 2003, 'F', 105), +(180266, 'Janai', 2003, 'F', 105), +(180267, 'Khadija', 2003, 'F', 105), +(180268, 'Kimberlee', 2003, 'F', 105), +(180269, 'Mackenzi', 2003, 'F', 105), +(180270, 'Malorie', 2003, 'F', 105), +(180271, 'Matilda', 2003, 'F', 105), +(180272, 'Raya', 2003, 'F', 105), +(180273, 'Shaniah', 2003, 'F', 105), +(180274, 'Amethyst', 2003, 'F', 104), +(180275, 'Destinie', 2003, 'F', 104), +(180276, 'Evangeline', 2003, 'F', 104), +(180277, 'Ivanna', 2003, 'F', 104), +(180278, 'Jadelyn', 2003, 'F', 104), +(180279, 'Joan', 2003, 'F', 104), +(180280, 'Joi', 2003, 'F', 104), +(180281, 'Kaylei', 2003, 'F', 104), +(180282, 'Keona', 2003, 'F', 104), +(180283, 'Kiah', 2003, 'F', 104), +(180284, 'Marlena', 2003, 'F', 104), +(180285, 'Olyvia', 2003, 'F', 104), +(180286, 'Ayesha', 2003, 'F', 103), +(180287, 'Beth', 2003, 'F', 103), +(180288, 'Brigitte', 2003, 'F', 103), +(180289, 'Cathy', 2003, 'F', 103), +(180290, 'Dynasty', 2003, 'F', 103), +(180291, 'Eloise', 2003, 'F', 103), +(180292, 'Jaela', 2003, 'F', 103), +(180293, 'Jenessa', 2003, 'F', 103), +(180294, 'Leona', 2003, 'F', 103), +(180295, 'Lisbet', 2003, 'F', 103), +(180296, 'Trina', 2003, 'F', 103), +(180297, 'Cathryn', 2003, 'F', 102), +(180298, 'Evie', 2003, 'F', 102), +(180299, 'Helene', 2003, 'F', 102), +(180300, 'Landry', 2003, 'F', 102), +(180301, 'Mahogany', 2003, 'F', 102), +(180302, 'Makaylah', 2003, 'F', 102), +(180303, 'Valarie', 2003, 'F', 102), +(180304, 'Yarely', 2003, 'F', 102), +(180305, 'Adina', 2003, 'F', 101), +(180306, 'Carter', 2003, 'F', 101), +(180307, 'Deana', 2003, 'F', 101), +(180308, 'Hadassah', 2003, 'F', 101), +(180309, 'Jaeda', 2003, 'F', 101), +(180310, 'Kamari', 2003, 'F', 101), +(180311, 'Katya', 2003, 'F', 101), +(180312, 'Lilyan', 2003, 'F', 101), +(180313, 'Milena', 2003, 'F', 101), +(180314, 'Najah', 2003, 'F', 101), +(180315, 'Shiloh', 2003, 'F', 101), +(180316, 'Tahlia', 2003, 'F', 101), +(180317, 'Zaniyah', 2003, 'F', 101), +(180318, 'Abbi', 2003, 'F', 100), +(180319, 'Adria', 2003, 'F', 100), +(180320, 'Aubrianna', 2003, 'F', 100), +(180321, 'Cecily', 2003, 'F', 100), +(180322, 'Elly', 2003, 'F', 100), +(180323, 'Katlin', 2003, 'F', 100), +(180324, 'Kerry', 2003, 'F', 100), +(180325, 'Mirian', 2003, 'F', 100), +(180326, 'Shivani', 2003, 'F', 100), +(180327, 'Sunny', 2003, 'F', 100), +(180328, 'Tonya', 2003, 'F', 100), +(180329, 'Vera', 2003, 'F', 100), +(180330, 'Jacob', 2003, 'M', 29615), +(180331, 'Michael', 2003, 'M', 27107), +(180332, 'Joshua', 2003, 'M', 25087), +(180333, 'Matthew', 2003, 'M', 23990), +(180334, 'Andrew', 2003, 'M', 22144), +(180335, 'Ethan', 2003, 'M', 21353), +(180336, 'Joseph', 2003, 'M', 21349), +(180337, 'Daniel', 2003, 'M', 21030), +(180338, 'Christopher', 2003, 'M', 20740), +(180339, 'Anthony', 2003, 'M', 20140), +(180340, 'William', 2003, 'M', 19987), +(180341, 'Nicholas', 2003, 'M', 19688), +(180342, 'Ryan', 2003, 'M', 19570), +(180343, 'David', 2003, 'M', 18602), +(180344, 'Tyler', 2003, 'M', 18173), +(180345, 'Alexander', 2003, 'M', 17705), +(180346, 'John', 2003, 'M', 17221), +(180347, 'James', 2003, 'M', 16888), +(180348, 'Dylan', 2003, 'M', 15696), +(180349, 'Zachary', 2003, 'M', 15537), +(180350, 'Brandon', 2003, 'M', 15233), +(180351, 'Jonathan', 2003, 'M', 14978), +(180352, 'Samuel', 2003, 'M', 14652), +(180353, 'Benjamin', 2003, 'M', 14069), +(180354, 'Christian', 2003, 'M', 13892), +(180355, 'Nathan', 2003, 'M', 13656), +(180356, 'Justin', 2003, 'M', 13651), +(180357, 'Logan', 2003, 'M', 13182), +(180358, 'Gabriel', 2003, 'M', 12514), +(180359, 'Jose', 2003, 'M', 12389), +(180360, 'Noah', 2003, 'M', 11832), +(180361, 'Kevin', 2003, 'M', 11727), +(180362, 'Austin', 2003, 'M', 11685), +(180363, 'Caleb', 2003, 'M', 11636), +(180364, 'Robert', 2003, 'M', 11386), +(180365, 'Thomas', 2003, 'M', 10930), +(180366, 'Elijah', 2003, 'M', 10658), +(180367, 'Jordan', 2003, 'M', 10325), +(180368, 'Aidan', 2003, 'M', 10061), +(180369, 'Cameron', 2003, 'M', 9960), +(180370, 'Hunter', 2003, 'M', 9899), +(180371, 'Jason', 2003, 'M', 9817), +(180372, 'Connor', 2003, 'M', 9670), +(180373, 'Evan', 2003, 'M', 9441), +(180374, 'Jack', 2003, 'M', 9316), +(180375, 'Luke', 2003, 'M', 9296), +(180376, 'Angel', 2003, 'M', 9151), +(180377, 'Isaac', 2003, 'M', 8931), +(180378, 'Isaiah', 2003, 'M', 8884), +(180379, 'Aaron', 2003, 'M', 8859), +(180380, 'Gavin', 2003, 'M', 8759), +(180381, 'Jackson', 2003, 'M', 8710), +(180382, 'Kyle', 2003, 'M', 8649), +(180383, 'Mason', 2003, 'M', 7895), +(180384, 'Juan', 2003, 'M', 7827), +(180385, 'Eric', 2003, 'M', 7785), +(180386, 'Charles', 2003, 'M', 7692), +(180387, 'Adam', 2003, 'M', 7684), +(180388, 'Brian', 2003, 'M', 7667), +(180389, 'Luis', 2003, 'M', 7579), +(180390, 'Sean', 2003, 'M', 7101), +(180391, 'Alex', 2003, 'M', 6791), +(180392, 'Nathaniel', 2003, 'M', 6664), +(180393, 'Bryan', 2003, 'M', 6616), +(180394, 'Ian', 2003, 'M', 6463), +(180395, 'Carlos', 2003, 'M', 6215), +(180396, 'Jesus', 2003, 'M', 6157), +(180397, 'Adrian', 2003, 'M', 6108), +(180398, 'Cole', 2003, 'M', 5899), +(180399, 'Steven', 2003, 'M', 5853), +(180400, 'Lucas', 2003, 'M', 5752), +(180401, 'Owen', 2003, 'M', 5696), +(180402, 'Aiden', 2003, 'M', 5683), +(180403, 'Devin', 2003, 'M', 5644), +(180404, 'Jayden', 2003, 'M', 5542), +(180405, 'Timothy', 2003, 'M', 5477), +(180406, 'Julian', 2003, 'M', 5407), +(180407, 'Cody', 2003, 'M', 5395), +(180408, 'Blake', 2003, 'M', 5273), +(180409, 'Seth', 2003, 'M', 5254), +(180410, 'Dominic', 2003, 'M', 5215), +(180411, 'Jaden', 2003, 'M', 5182), +(180412, 'Diego', 2003, 'M', 5118), +(180413, 'Hayden', 2003, 'M', 5100), +(180414, 'Xavier', 2003, 'M', 5063), +(180415, 'Richard', 2003, 'M', 5052), +(180416, 'Chase', 2003, 'M', 5012), +(180417, 'Colin', 2003, 'M', 4874), +(180418, 'Carson', 2003, 'M', 4860), +(180419, 'Jeremiah', 2003, 'M', 4848), +(180420, 'Patrick', 2003, 'M', 4789), +(180421, 'Antonio', 2003, 'M', 4715), +(180422, 'Sebastian', 2003, 'M', 4646), +(180423, 'Jesse', 2003, 'M', 4596), +(180424, 'Miguel', 2003, 'M', 4588), +(180425, 'Victor', 2003, 'M', 4434), +(180426, 'Landon', 2003, 'M', 4410), +(180427, 'Jake', 2003, 'M', 4401), +(180428, 'Trevor', 2003, 'M', 4385), +(180429, 'Alejandro', 2003, 'M', 4315), +(180430, 'Ashton', 2003, 'M', 4215), +(180431, 'Carter', 2003, 'M', 4171), +(180432, 'Bryce', 2003, 'M', 4127), +(180433, 'Riley', 2003, 'M', 4076), +(180434, 'Mark', 2003, 'M', 4026), +(180435, 'Garrett', 2003, 'M', 3976), +(180436, 'Jared', 2003, 'M', 3940), +(180437, 'Jeremy', 2003, 'M', 3889), +(180438, 'Wyatt', 2003, 'M', 3699), +(180439, 'Brayden', 2003, 'M', 3671), +(180440, 'Kenneth', 2003, 'M', 3641), +(180441, 'Tristan', 2003, 'M', 3633), +(180442, 'Caden', 2003, 'M', 3629), +(180443, 'Liam', 2003, 'M', 3565), +(180444, 'Jorge', 2003, 'M', 3483), +(180445, 'Henry', 2003, 'M', 3461), +(180446, 'Vincent', 2003, 'M', 3418), +(180447, 'Kaleb', 2003, 'M', 3401), +(180448, 'Tanner', 2003, 'M', 3390), +(180449, 'Marcus', 2003, 'M', 3388), +(180450, 'Kaden', 2003, 'M', 3336), +(180451, 'Oscar', 2003, 'M', 3298), +(180452, 'Paul', 2003, 'M', 3246), +(180453, 'Joel', 2003, 'M', 3242), +(180454, 'Parker', 2003, 'M', 3184), +(180455, 'Dakota', 2003, 'M', 3155), +(180456, 'Stephen', 2003, 'M', 3140), +(180457, 'Ivan', 2003, 'M', 3136), +(180458, 'Eduardo', 2003, 'M', 3117), +(180459, 'Edward', 2003, 'M', 3107), +(180460, 'Alan', 2003, 'M', 3096), +(180461, 'Maxwell', 2003, 'M', 3086), +(180462, 'Collin', 2003, 'M', 3004), +(180463, 'Nicolas', 2003, 'M', 3001), +(180464, 'Colton', 2003, 'M', 2951), +(180465, 'Gage', 2003, 'M', 2937), +(180466, 'Grant', 2003, 'M', 2916), +(180467, 'George', 2003, 'M', 2909), +(180468, 'Spencer', 2003, 'M', 2906), +(180469, 'Jeffrey', 2003, 'M', 2883), +(180470, 'Brendan', 2003, 'M', 2866), +(180471, 'Brady', 2003, 'M', 2865), +(180472, 'Dalton', 2003, 'M', 2857), +(180473, 'Shane', 2003, 'M', 2813), +(180474, 'Cristian', 2003, 'M', 2802), +(180475, 'Peter', 2003, 'M', 2802), +(180476, 'Francisco', 2003, 'M', 2765), +(180477, 'Ricardo', 2003, 'M', 2761), +(180478, 'Derek', 2003, 'M', 2753), +(180479, 'Alexis', 2003, 'M', 2720), +(180480, 'Omar', 2003, 'M', 2700), +(180481, 'Josiah', 2003, 'M', 2682), +(180482, 'Conner', 2003, 'M', 2677), +(180483, 'Preston', 2003, 'M', 2637), +(180484, 'Jalen', 2003, 'M', 2620), +(180485, 'Shawn', 2003, 'M', 2571), +(180486, 'Fernando', 2003, 'M', 2551), +(180487, 'Erik', 2003, 'M', 2550), +(180488, 'Travis', 2003, 'M', 2539), +(180489, 'Devon', 2003, 'M', 2524), +(180490, 'Javier', 2003, 'M', 2502), +(180491, 'Max', 2003, 'M', 2459), +(180492, 'Damian', 2003, 'M', 2452), +(180493, 'Jonah', 2003, 'M', 2430), +(180494, 'Bradley', 2003, 'M', 2391), +(180495, 'Cooper', 2003, 'M', 2368), +(180496, 'Mario', 2003, 'M', 2358), +(180497, 'Cesar', 2003, 'M', 2357), +(180498, 'Braden', 2003, 'M', 2352), +(180499, 'Levi', 2003, 'M', 2342), +(180500, 'Andres', 2003, 'M', 2327), +(180501, 'Edgar', 2003, 'M', 2319), +(180502, 'Micah', 2003, 'M', 2285), +(180503, 'Manuel', 2003, 'M', 2246), +(180504, 'Nolan', 2003, 'M', 2216), +(180505, 'Donovan', 2003, 'M', 2210), +(180506, 'Giovanni', 2003, 'M', 2199), +(180507, 'Johnathan', 2003, 'M', 2192), +(180508, 'Trenton', 2003, 'M', 2181), +(180509, 'Colby', 2003, 'M', 2170), +(180510, 'Edwin', 2003, 'M', 2167), +(180511, 'Clayton', 2003, 'M', 2127), +(180512, 'Emmanuel', 2003, 'M', 2126), +(180513, 'Wesley', 2003, 'M', 2121), +(180514, 'Gregory', 2003, 'M', 2104), +(180515, 'Erick', 2003, 'M', 2094), +(180516, 'Raymond', 2003, 'M', 2044), +(180517, 'Dillon', 2003, 'M', 2008), +(180518, 'Hector', 2003, 'M', 1997), +(180519, 'Sergio', 2003, 'M', 1984), +(180520, 'Eli', 2003, 'M', 1973), +(180521, 'Marco', 2003, 'M', 1959), +(180522, 'Ty', 2003, 'M', 1936), +(180523, 'Malachi', 2003, 'M', 1916), +(180524, 'Abraham', 2003, 'M', 1894), +(180525, 'Mitchell', 2003, 'M', 1890), +(180526, 'Martin', 2003, 'M', 1887), +(180527, 'Corey', 2003, 'M', 1886), +(180528, 'Damien', 2003, 'M', 1886), +(180529, 'Roberto', 2003, 'M', 1873), +(180530, 'Ayden', 2003, 'M', 1828), +(180531, 'Taylor', 2003, 'M', 1828), +(180532, 'Jaylen', 2003, 'M', 1814), +(180533, 'Dawson', 2003, 'M', 1805), +(180534, 'Dominick', 2003, 'M', 1778), +(180535, 'Scott', 2003, 'M', 1769), +(180536, 'Peyton', 2003, 'M', 1768), +(180537, 'Dustin', 2003, 'M', 1767), +(180538, 'Andre', 2003, 'M', 1750), +(180539, 'Elias', 2003, 'M', 1711), +(180540, 'Leonardo', 2003, 'M', 1705), +(180541, 'Harrison', 2003, 'M', 1697), +(180542, 'Josue', 2003, 'M', 1674), +(180543, 'Bryson', 2003, 'M', 1658), +(180544, 'Ruben', 2003, 'M', 1655), +(180545, 'Andy', 2003, 'M', 1626), +(180546, 'Brett', 2003, 'M', 1614), +(180547, 'Jakob', 2003, 'M', 1604), +(180548, 'Avery', 2003, 'M', 1595), +(180549, 'Zane', 2003, 'M', 1589), +(180550, 'Cade', 2003, 'M', 1576), +(180551, 'Drew', 2003, 'M', 1573), +(180552, 'Calvin', 2003, 'M', 1563), +(180553, 'Pedro', 2003, 'M', 1558), +(180554, 'Griffin', 2003, 'M', 1535), +(180555, 'Alec', 2003, 'M', 1525), +(180556, 'Trey', 2003, 'M', 1515), +(180557, 'Miles', 2003, 'M', 1511), +(180558, 'Malik', 2003, 'M', 1505), +(180559, 'Frank', 2003, 'M', 1499), +(180560, 'Skyler', 2003, 'M', 1486), +(180561, 'Brody', 2003, 'M', 1462), +(180562, 'Phillip', 2003, 'M', 1453), +(180563, 'Xander', 2003, 'M', 1424), +(180564, 'Simon', 2003, 'M', 1420), +(180565, 'Rafael', 2003, 'M', 1409), +(180566, 'Ronald', 2003, 'M', 1403), +(180567, 'Raul', 2003, 'M', 1400), +(180568, 'Gerardo', 2003, 'M', 1399), +(180569, 'Chance', 2003, 'M', 1391), +(180570, 'Trent', 2003, 'M', 1379), +(180571, 'Marcos', 2003, 'M', 1378), +(180572, 'Derrick', 2003, 'M', 1377), +(180573, 'Brock', 2003, 'M', 1376), +(180574, 'Oliver', 2003, 'M', 1373), +(180575, 'Israel', 2003, 'M', 1366), +(180576, 'Johnny', 2003, 'M', 1365), +(180577, 'Enrique', 2003, 'M', 1355), +(180578, 'Jace', 2003, 'M', 1328), +(180579, 'Allen', 2003, 'M', 1314), +(180580, 'Keith', 2003, 'M', 1313), +(180581, 'Dante', 2003, 'M', 1310), +(180582, 'Donald', 2003, 'M', 1307), +(180583, 'Camden', 2003, 'M', 1294), +(180584, 'Darius', 2003, 'M', 1289), +(180585, 'Troy', 2003, 'M', 1284), +(180586, 'Armando', 2003, 'M', 1277), +(180587, 'Yahir', 2003, 'M', 1274), +(180588, 'Keegan', 2003, 'M', 1271), +(180589, 'Chandler', 2003, 'M', 1270), +(180590, 'Payton', 2003, 'M', 1268), +(180591, 'Jaime', 2003, 'M', 1261), +(180592, 'Casey', 2003, 'M', 1253), +(180593, 'Kai', 2003, 'M', 1215), +(180594, 'Kobe', 2003, 'M', 1212), +(180595, 'Brenden', 2003, 'M', 1184), +(180596, 'Gustavo', 2003, 'M', 1169), +(180597, 'Zackary', 2003, 'M', 1169), +(180598, 'Lance', 2003, 'M', 1166), +(180599, 'Angelo', 2003, 'M', 1158), +(180600, 'Julio', 2003, 'M', 1156), +(180601, 'Fabian', 2003, 'M', 1147), +(180602, 'Drake', 2003, 'M', 1129), +(180603, 'Lane', 2003, 'M', 1129), +(180604, 'Myles', 2003, 'M', 1127), +(180605, 'Alberto', 2003, 'M', 1126), +(180606, 'Brennan', 2003, 'M', 1126), +(180607, 'Jimmy', 2003, 'M', 1125), +(180608, 'Mathew', 2003, 'M', 1124), +(180609, 'Corbin', 2003, 'M', 1112), +(180610, 'Kameron', 2003, 'M', 1110), +(180611, 'Dennis', 2003, 'M', 1106), +(180612, 'Louis', 2003, 'M', 1101), +(180613, 'Jaxon', 2003, 'M', 1097), +(180614, 'Leo', 2003, 'M', 1095), +(180615, 'Jerry', 2003, 'M', 1086), +(180616, 'Kyler', 2003, 'M', 1086), +(180617, 'Danny', 2003, 'M', 1082), +(180618, 'Philip', 2003, 'M', 1073), +(180619, 'Quinn', 2003, 'M', 1072), +(180620, 'Saul', 2003, 'M', 1071), +(180621, 'Jonathon', 2003, 'M', 1068), +(180622, 'Emanuel', 2003, 'M', 1046), +(180623, 'Roman', 2003, 'M', 1041), +(180624, 'Tucker', 2003, 'M', 1040), +(180625, 'Tyson', 2003, 'M', 1039), +(180626, 'Grayson', 2003, 'M', 1024), +(180627, 'Damon', 2003, 'M', 1022), +(180628, 'Pablo', 2003, 'M', 1021), +(180629, 'Cayden', 2003, 'M', 1012), +(180630, 'Braxton', 2003, 'M', 1003), +(180631, 'Tony', 2003, 'M', 999), +(180632, 'Arturo', 2003, 'M', 986), +(180633, 'Landen', 2003, 'M', 979), +(180634, 'Bryant', 2003, 'M', 977), +(180635, 'Darren', 2003, 'M', 977), +(180636, 'Douglas', 2003, 'M', 976), +(180637, 'Jaiden', 2003, 'M', 973), +(180638, 'Theodore', 2003, 'M', 964), +(180639, 'Lukas', 2003, 'M', 961), +(180640, 'Lorenzo', 2003, 'M', 960), +(180641, 'Zander', 2003, 'M', 957), +(180642, 'Emilio', 2003, 'M', 956), +(180643, 'Albert', 2003, 'M', 951), +(180644, 'Larry', 2003, 'M', 949), +(180645, 'Camron', 2003, 'M', 943), +(180646, 'Randy', 2003, 'M', 935), +(180647, 'Alfredo', 2003, 'M', 932), +(180648, 'Santiago', 2003, 'M', 928), +(180649, 'Cory', 2003, 'M', 924), +(180650, 'Marc', 2003, 'M', 919), +(180651, 'Aden', 2003, 'M', 916), +(180652, 'Gary', 2003, 'M', 911), +(180653, 'Nickolas', 2003, 'M', 911), +(180654, 'Ezekiel', 2003, 'M', 910), +(180655, 'Curtis', 2003, 'M', 904), +(180656, 'Joe', 2003, 'M', 898), +(180657, 'Jayson', 2003, 'M', 893), +(180658, 'Zion', 2003, 'M', 878), +(180659, 'Braeden', 2003, 'M', 876), +(180660, 'Mateo', 2003, 'M', 875), +(180661, 'Ismael', 2003, 'M', 871), +(180662, 'Marvin', 2003, 'M', 863), +(180663, 'Chad', 2003, 'M', 860), +(180664, 'Ernesto', 2003, 'M', 853), +(180665, 'Salvador', 2003, 'M', 853), +(180666, 'Tristen', 2003, 'M', 850), +(180667, 'Esteban', 2003, 'M', 842), +(180668, 'Quentin', 2003, 'M', 835), +(180669, 'Amir', 2003, 'M', 818), +(180670, 'Lawrence', 2003, 'M', 817), +(180671, 'Ramon', 2003, 'M', 814), +(180672, 'Russell', 2003, 'M', 811), +(180673, 'Ali', 2003, 'M', 809), +(180674, 'Jay', 2003, 'M', 809), +(180675, 'Axel', 2003, 'M', 806), +(180676, 'Brayan', 2003, 'M', 805), +(180677, 'Marshall', 2003, 'M', 799), +(180678, 'Ricky', 2003, 'M', 798), +(180679, 'Moises', 2003, 'M', 797), +(180680, 'Arthur', 2003, 'M', 795), +(180681, 'Nikolas', 2003, 'M', 795), +(180682, 'Kristopher', 2003, 'M', 784), +(180683, 'Carl', 2003, 'M', 774), +(180684, 'Walter', 2003, 'M', 774), +(180685, 'Micheal', 2003, 'M', 768), +(180686, 'Bailey', 2003, 'M', 760), +(180687, 'Maurice', 2003, 'M', 757), +(180688, 'Reece', 2003, 'M', 757), +(180689, 'Abel', 2003, 'M', 754), +(180690, 'Morgan', 2003, 'M', 748), +(180691, 'Rodrigo', 2003, 'M', 736), +(180692, 'Keaton', 2003, 'M', 735), +(180693, 'Isiah', 2003, 'M', 734), +(180694, 'Hugo', 2003, 'M', 727), +(180695, 'Kayden', 2003, 'M', 725), +(180696, 'Kaiden', 2003, 'M', 711), +(180697, 'Reese', 2003, 'M', 709), +(180698, 'Charlie', 2003, 'M', 708), +(180699, 'Davis', 2003, 'M', 704), +(180700, 'Maximus', 2003, 'M', 704), +(180701, 'Jadon', 2003, 'M', 701), +(180702, 'Orlando', 2003, 'M', 701), +(180703, 'Jeffery', 2003, 'M', 697), +(180704, 'Jon', 2003, 'M', 692), +(180705, 'Felix', 2003, 'M', 690), +(180706, 'Kade', 2003, 'M', 690), +(180707, 'Mekhi', 2003, 'M', 688), +(180708, 'Zachariah', 2003, 'M', 688), +(180709, 'Rodney', 2003, 'M', 687), +(180710, 'Shaun', 2003, 'M', 687), +(180711, 'Brent', 2003, 'M', 685), +(180712, 'Dean', 2003, 'M', 685), +(180713, 'Mauricio', 2003, 'M', 684), +(180714, 'Dallas', 2003, 'M', 683), +(180715, 'Zachery', 2003, 'M', 681), +(180716, 'Chris', 2003, 'M', 678), +(180717, 'Julius', 2003, 'M', 678), +(180718, 'Eddie', 2003, 'M', 671), +(180719, 'Tommy', 2003, 'M', 670), +(180720, 'Hudson', 2003, 'M', 669), +(180721, 'Terry', 2003, 'M', 667), +(180722, 'Justice', 2003, 'M', 665), +(180723, 'Roger', 2003, 'M', 663), +(180724, 'Branden', 2003, 'M', 662), +(180725, 'Graham', 2003, 'M', 662), +(180726, 'Jamal', 2003, 'M', 654), +(180727, 'Issac', 2003, 'M', 652), +(180728, 'Ezra', 2003, 'M', 650), +(180729, 'Conor', 2003, 'M', 648), +(180730, 'Quinton', 2003, 'M', 645), +(180731, 'Kelvin', 2003, 'M', 644), +(180732, 'Melvin', 2003, 'M', 644), +(180733, 'Tate', 2003, 'M', 644), +(180734, 'Deandre', 2003, 'M', 641), +(180735, 'Jaylin', 2003, 'M', 637), +(180736, 'Weston', 2003, 'M', 635), +(180737, 'Skylar', 2003, 'M', 632), +(180738, 'Adan', 2003, 'M', 629), +(180739, 'Jessie', 2003, 'M', 627), +(180740, 'Asher', 2003, 'M', 625), +(180741, 'Walker', 2003, 'M', 625), +(180742, 'Allan', 2003, 'M', 624), +(180743, 'Kody', 2003, 'M', 623), +(180744, 'Holden', 2003, 'M', 619), +(180745, 'Jarrett', 2003, 'M', 616), +(180746, 'Tyrese', 2003, 'M', 615), +(180747, 'Amari', 2003, 'M', 613), +(180748, 'Beau', 2003, 'M', 612), +(180749, 'Harley', 2003, 'M', 612), +(180750, 'Declan', 2003, 'M', 611), +(180751, 'Nelson', 2003, 'M', 611), +(180752, 'Elliot', 2003, 'M', 610), +(180753, 'Craig', 2003, 'M', 606), +(180754, 'Rylan', 2003, 'M', 603), +(180755, 'Jaylon', 2003, 'M', 601), +(180756, 'Billy', 2003, 'M', 600), +(180757, 'Guillermo', 2003, 'M', 595), +(180758, 'Bennett', 2003, 'M', 594), +(180759, 'Brendon', 2003, 'M', 591), +(180760, 'Emiliano', 2003, 'M', 590), +(180761, 'Frederick', 2003, 'M', 587), +(180762, 'Toby', 2003, 'M', 581), +(180763, 'Nasir', 2003, 'M', 580), +(180764, 'Uriel', 2003, 'M', 580), +(180765, 'Sam', 2003, 'M', 578), +(180766, 'Dane', 2003, 'M', 574), +(180767, 'Kristian', 2003, 'M', 573), +(180768, 'Jermaine', 2003, 'M', 572), +(180769, 'Sawyer', 2003, 'M', 570), +(180770, 'Zackery', 2003, 'M', 570), +(180771, 'Roy', 2003, 'M', 568), +(180772, 'Jude', 2003, 'M', 563), +(180773, 'Rene', 2003, 'M', 563), +(180774, 'Felipe', 2003, 'M', 562), +(180775, 'Steve', 2003, 'M', 562), +(180776, 'Javon', 2003, 'M', 560), +(180777, 'Trevon', 2003, 'M', 560), +(180778, 'Bobby', 2003, 'M', 559), +(180779, 'Dorian', 2003, 'M', 559), +(180780, 'Joaquin', 2003, 'M', 559), +(180781, 'Silas', 2003, 'M', 559), +(180782, 'Willie', 2003, 'M', 557), +(180783, 'Desmond', 2003, 'M', 556), +(180784, 'Demetrius', 2003, 'M', 554), +(180785, 'Jaheim', 2003, 'M', 552), +(180786, 'Terrance', 2003, 'M', 552), +(180787, 'Reid', 2003, 'M', 550), +(180788, 'Quincy', 2003, 'M', 548), +(180789, 'Khalil', 2003, 'M', 546), +(180790, 'Osvaldo', 2003, 'M', 546), +(180791, 'Luca', 2003, 'M', 544), +(180792, 'Kolby', 2003, 'M', 543), +(180793, 'Ahmad', 2003, 'M', 542), +(180794, 'Jonas', 2003, 'M', 541), +(180795, 'Franklin', 2003, 'M', 539), +(180796, 'Tomas', 2003, 'M', 537), +(180797, 'Nathanael', 2003, 'M', 536), +(180798, 'Marquis', 2003, 'M', 534), +(180799, 'Noe', 2003, 'M', 534), +(180800, 'Johnathon', 2003, 'M', 533), +(180801, 'Reginald', 2003, 'M', 531), +(180802, 'Damion', 2003, 'M', 530), +(180803, 'Gerald', 2003, 'M', 529), +(180804, 'Jaydon', 2003, 'M', 527), +(180805, 'Kendrick', 2003, 'M', 527), +(180806, 'Kenny', 2003, 'M', 526), +(180807, 'Blaine', 2003, 'M', 519), +(180808, 'Clay', 2003, 'M', 519), +(180809, 'Devan', 2003, 'M', 519), +(180810, 'Jamari', 2003, 'M', 519), +(180811, 'Terrell', 2003, 'M', 516), +(180812, 'Noel', 2003, 'M', 514), +(180813, 'Pierce', 2003, 'M', 512), +(180814, 'Bruce', 2003, 'M', 508), +(180815, 'Cyrus', 2003, 'M', 508), +(180816, 'Malcolm', 2003, 'M', 507), +(180817, 'Adolfo', 2003, 'M', 505), +(180818, 'Rogelio', 2003, 'M', 505), +(180819, 'Easton', 2003, 'M', 504), +(180820, 'Byron', 2003, 'M', 502), +(180821, 'Warren', 2003, 'M', 500), +(180822, 'Moses', 2003, 'M', 499), +(180823, 'Solomon', 2003, 'M', 496), +(180824, 'Trace', 2003, 'M', 496), +(180825, 'Joey', 2003, 'M', 494), +(180826, 'Kendall', 2003, 'M', 493), +(180827, 'Leon', 2003, 'M', 493), +(180828, 'Rodolfo', 2003, 'M', 493), +(180829, 'Gilberto', 2003, 'M', 491), +(180830, 'Tobias', 2003, 'M', 491), +(180831, 'Maximilian', 2003, 'M', 486), +(180832, 'Rohan', 2003, 'M', 486), +(180833, 'Dayton', 2003, 'M', 485), +(180834, 'Davion', 2003, 'M', 483), +(180835, 'Jair', 2003, 'M', 480), +(180836, 'Mohamed', 2003, 'M', 480), +(180837, 'Reed', 2003, 'M', 478), +(180838, 'Deven', 2003, 'M', 477), +(180839, 'Elliott', 2003, 'M', 477), +(180840, 'Caiden', 2003, 'M', 471), +(180841, 'Alvin', 2003, 'M', 468), +(180842, 'Braydon', 2003, 'M', 467), +(180843, 'Wilson', 2003, 'M', 467), +(180844, 'Deshawn', 2003, 'M', 465), +(180845, 'Francis', 2003, 'M', 465), +(180846, 'Jasper', 2003, 'M', 465), +(180847, 'Todd', 2003, 'M', 465), +(180848, 'Kadin', 2003, 'M', 461), +(180849, 'Marlon', 2003, 'M', 461), +(180850, 'Alfonso', 2003, 'M', 455), +(180851, 'Triston', 2003, 'M', 455), +(180852, 'Darian', 2003, 'M', 448), +(180853, 'Leonel', 2003, 'M', 447), +(180854, 'Harry', 2003, 'M', 446), +(180855, 'Gael', 2003, 'M', 443), +(180856, 'Randall', 2003, 'M', 443), +(180857, 'Omarion', 2003, 'M', 440), +(180858, 'Terrence', 2003, 'M', 440), +(180859, 'Ben', 2003, 'M', 439), +(180860, 'Jaxson', 2003, 'M', 437), +(180861, 'Octavio', 2003, 'M', 437), +(180862, 'Alonzo', 2003, 'M', 436), +(180863, 'Tristin', 2003, 'M', 435), +(180864, 'Will', 2003, 'M', 433), +(180865, 'Jayce', 2003, 'M', 431), +(180866, 'Kieran', 2003, 'M', 429), +(180867, 'Addison', 2003, 'M', 428), +(180868, 'Ahmed', 2003, 'M', 428), +(180869, 'Ramiro', 2003, 'M', 427), +(180870, 'Cedric', 2003, 'M', 425), +(180871, 'Izaiah', 2003, 'M', 425), +(180872, 'Duncan', 2003, 'M', 421), +(180873, 'Ronnie', 2003, 'M', 419), +(180874, 'Tyrone', 2003, 'M', 413), +(180875, 'Alvaro', 2003, 'M', 410), +(180876, 'Jamie', 2003, 'M', 410), +(180877, 'Jerome', 2003, 'M', 410), +(180878, 'Lincoln', 2003, 'M', 410), +(180879, 'Dale', 2003, 'M', 408), +(180880, 'Tyrell', 2003, 'M', 408), +(180881, 'Rolando', 2003, 'M', 405), +(180882, 'Tyree', 2003, 'M', 405), +(180883, 'Amarion', 2003, 'M', 404), +(180884, 'Stanley', 2003, 'M', 404), +(180885, 'Jameson', 2003, 'M', 403), +(180886, 'Lee', 2003, 'M', 403), +(180887, 'Wade', 2003, 'M', 403), +(180888, 'Leonard', 2003, 'M', 401), +(180889, 'Brennen', 2003, 'M', 400), +(180890, 'Darrell', 2003, 'M', 400), +(180891, 'Orion', 2003, 'M', 398), +(180892, 'Phoenix', 2003, 'M', 398), +(180893, 'Jordon', 2003, 'M', 396), +(180894, 'Mohammad', 2003, 'M', 395), +(180895, 'Coby', 2003, 'M', 393), +(180896, 'Ezequiel', 2003, 'M', 392), +(180897, 'Aldo', 2003, 'M', 390), +(180898, 'Johan', 2003, 'M', 388), +(180899, 'River', 2003, 'M', 388), +(180900, 'Ariel', 2003, 'M', 387), +(180901, 'Everett', 2003, 'M', 387), +(180902, 'Kellen', 2003, 'M', 387), +(180903, 'Eugene', 2003, 'M', 383), +(180904, 'Neil', 2003, 'M', 383), +(180905, 'Rudy', 2003, 'M', 383), +(180906, 'Efrain', 2003, 'M', 382), +(180907, 'Isaias', 2003, 'M', 382), +(180908, 'Wayne', 2003, 'M', 382), +(180909, 'Keenan', 2003, 'M', 381), +(180910, 'Jaquan', 2003, 'M', 380), +(180911, 'Maddox', 2003, 'M', 377), +(180912, 'Ross', 2003, 'M', 377), +(180913, 'Davin', 2003, 'M', 375), +(180914, 'Jamison', 2003, 'M', 375), +(180915, 'Cristopher', 2003, 'M', 373), +(180916, 'Gunnar', 2003, 'M', 373), +(180917, 'Maximiliano', 2003, 'M', 370), +(180918, 'Coleman', 2003, 'M', 368), +(180919, 'Davon', 2003, 'M', 368), +(180920, 'Vicente', 2003, 'M', 366), +(180921, 'Grady', 2003, 'M', 364), +(180922, 'Jairo', 2003, 'M', 364), +(180923, 'Colten', 2003, 'M', 363), +(180924, 'Donte', 2003, 'M', 362), +(180925, 'Gilbert', 2003, 'M', 361), +(180926, 'Cruz', 2003, 'M', 359), +(180927, 'Ernest', 2003, 'M', 359), +(180928, 'Moshe', 2003, 'M', 359), +(180929, 'Nehemiah', 2003, 'M', 355), +(180930, 'Camren', 2003, 'M', 351), +(180931, 'Sage', 2003, 'M', 351), +(180932, 'Keshawn', 2003, 'M', 349), +(180933, 'Mohammed', 2003, 'M', 349), +(180934, 'Dominik', 2003, 'M', 345), +(180935, 'Freddy', 2003, 'M', 344), +(180936, 'Quintin', 2003, 'M', 344), +(180937, 'Titus', 2003, 'M', 344), +(180938, 'Dwayne', 2003, 'M', 343), +(180939, 'Garret', 2003, 'M', 343), +(180940, 'Harold', 2003, 'M', 343), +(180941, 'Ibrahim', 2003, 'M', 341), +(180942, 'Anderson', 2003, 'M', 340), +(180943, 'Brice', 2003, 'M', 339), +(180944, 'Kolton', 2003, 'M', 339), +(180945, 'Elisha', 2003, 'M', 337), +(180946, 'Karson', 2003, 'M', 336), +(180947, 'Ray', 2003, 'M', 336), +(180948, 'Layne', 2003, 'M', 335), +(180949, 'Jabari', 2003, 'M', 333), +(180950, 'Jett', 2003, 'M', 333), +(180951, 'Omari', 2003, 'M', 332), +(180952, 'Koby', 2003, 'M', 329), +(180953, 'Dominique', 2003, 'M', 328), +(180954, 'Humberto', 2003, 'M', 328), +(180955, 'Kamron', 2003, 'M', 327), +(180956, 'Nathanial', 2003, 'M', 327), +(180957, 'Darien', 2003, 'M', 326), +(180958, 'Rowan', 2003, 'M', 326), +(180959, 'Devyn', 2003, 'M', 325), +(180960, 'Gunner', 2003, 'M', 325), +(180961, 'Sterling', 2003, 'M', 325), +(180962, 'Irvin', 2003, 'M', 323), +(180963, 'Jaron', 2003, 'M', 323), +(180964, 'Keagan', 2003, 'M', 323), +(180965, 'Keon', 2003, 'M', 323), +(180966, 'Kole', 2003, 'M', 323), +(180967, 'Julien', 2003, 'M', 322), +(180968, 'Romeo', 2003, 'M', 322), +(180969, 'Lewis', 2003, 'M', 321), +(180970, 'Mike', 2003, 'M', 321), +(180971, 'Ulises', 2003, 'M', 320), +(180972, 'Antoine', 2003, 'M', 318), +(180973, 'Rory', 2003, 'M', 316), +(180974, 'Jamarion', 2003, 'M', 315), +(180975, 'Porter', 2003, 'M', 314), +(180976, 'Agustin', 2003, 'M', 311), +(180977, 'Junior', 2003, 'M', 310), +(180978, 'Judah', 2003, 'M', 306), +(180979, 'Muhammad', 2003, 'M', 306), +(180980, 'Ryder', 2003, 'M', 305), +(180981, 'Aron', 2003, 'M', 304), +(180982, 'August', 2003, 'M', 304), +(180983, 'Gianni', 2003, 'M', 302), +(180984, 'Asa', 2003, 'M', 301), +(180985, 'Markus', 2003, 'M', 301), +(180986, 'Alijah', 2003, 'M', 300), +(180987, 'Ralph', 2003, 'M', 300), +(180988, 'Dashawn', 2003, 'M', 299), +(180989, 'Elmer', 2003, 'M', 299), +(180990, 'Finn', 2003, 'M', 299), +(180991, 'Jaeden', 2003, 'M', 299), +(180992, 'Karl', 2003, 'M', 299), +(180993, 'Ari', 2003, 'M', 298), +(180994, 'Giancarlo', 2003, 'M', 298), +(180995, 'Rocco', 2003, 'M', 298), +(180996, 'Kareem', 2003, 'M', 297), +(180997, 'Alonso', 2003, 'M', 296), +(180998, 'Dillan', 2003, 'M', 296), +(180999, 'Glenn', 2003, 'M', 296), +(181000, 'Rashad', 2003, 'M', 296), +(181001, 'Darnell', 2003, 'M', 291), +(181002, 'Devonte', 2003, 'M', 291), +(181003, 'Greyson', 2003, 'M', 290), +(181004, 'Alexzander', 2003, 'M', 289), +(181005, 'Brodie', 2003, 'M', 287), +(181006, 'Emmett', 2003, 'M', 286), +(181007, 'Garrison', 2003, 'M', 286), +(181008, 'Gideon', 2003, 'M', 285), +(181009, 'Keyshawn', 2003, 'M', 285), +(181010, 'Sidney', 2003, 'M', 285), +(181011, 'Cullen', 2003, 'M', 284), +(181012, 'Ignacio', 2003, 'M', 284), +(181013, 'Gannon', 2003, 'M', 283), +(181014, 'Estevan', 2003, 'M', 282), +(181015, 'Gaven', 2003, 'M', 282), +(181016, 'Jamar', 2003, 'M', 282), +(181017, 'Rhett', 2003, 'M', 282), +(181018, 'Darryl', 2003, 'M', 281), +(181019, 'Draven', 2003, 'M', 280), +(181020, 'Marquise', 2003, 'M', 280), +(181021, 'Zechariah', 2003, 'M', 279), +(181022, 'Santos', 2003, 'M', 277), +(181023, 'Elvis', 2003, 'M', 275), +(181024, 'Kane', 2003, 'M', 275), +(181025, 'Alfred', 2003, 'M', 274), +(181026, 'Josh', 2003, 'M', 273), +(181027, 'Stefan', 2003, 'M', 273), +(181028, 'Rigoberto', 2003, 'M', 272), +(181029, 'Derick', 2003, 'M', 271), +(181030, 'Salvatore', 2003, 'M', 270), +(181031, 'Xzavier', 2003, 'M', 269), +(181032, 'Armani', 2003, 'M', 268), +(181033, 'Brooks', 2003, 'M', 268), +(181034, 'Jean', 2003, 'M', 267), +(181035, 'Donavan', 2003, 'M', 266), +(181036, 'German', 2003, 'M', 266), +(181037, 'Emerson', 2003, 'M', 265), +(181038, 'Nigel', 2003, 'M', 265), +(181039, 'Alessandro', 2003, 'M', 263), +(181040, 'Conrad', 2003, 'M', 263), +(181041, 'Abram', 2003, 'M', 261), +(181042, 'Kenyon', 2003, 'M', 261), +(181043, 'Misael', 2003, 'M', 261), +(181044, 'Gavyn', 2003, 'M', 260), +(181045, 'Clarence', 2003, 'M', 259), +(181046, 'Yair', 2003, 'M', 259), +(181047, 'Howard', 2003, 'M', 258), +(181048, 'Sincere', 2003, 'M', 258), +(181049, 'Giovanny', 2003, 'M', 256), +(181050, 'Deon', 2003, 'M', 255), +(181051, 'Heath', 2003, 'M', 255), +(181052, 'Aditya', 2003, 'M', 254), +(181053, 'Daquan', 2003, 'M', 253), +(181054, 'Blaze', 2003, 'M', 252), +(181055, 'Clinton', 2003, 'M', 252), +(181056, 'Alden', 2003, 'M', 251), +(181057, 'Anton', 2003, 'M', 251), +(181058, 'Raphael', 2003, 'M', 251), +(181059, 'Jaylan', 2003, 'M', 249), +(181060, 'Jefferson', 2003, 'M', 249), +(181061, 'Maverick', 2003, 'M', 249), +(181062, 'Antony', 2003, 'M', 248), +(181063, 'Roland', 2003, 'M', 248), +(181064, 'Seamus', 2003, 'M', 248), +(181065, 'Hamza', 2003, 'M', 246), +(181066, 'Baby', 2003, 'M', 245), +(181067, 'Kurt', 2003, 'M', 244), +(181068, 'Talon', 2003, 'M', 244), +(181069, 'Aydan', 2003, 'M', 243), +(181070, 'Isai', 2003, 'M', 243), +(181071, 'Matteo', 2003, 'M', 243), +(181072, 'Milton', 2003, 'M', 242), +(181073, 'Vance', 2003, 'M', 241), +(181074, 'Aryan', 2003, 'M', 240), +(181075, 'Jorden', 2003, 'M', 240), +(181076, 'Oswaldo', 2003, 'M', 240), +(181077, 'Roderick', 2003, 'M', 240), +(181078, 'Adrien', 2003, 'M', 239), +(181079, 'Demarcus', 2003, 'M', 239), +(181080, 'Zakary', 2003, 'M', 239), +(181081, 'Cale', 2003, 'M', 237), +(181082, 'Lamar', 2003, 'M', 237), +(181083, 'Nico', 2003, 'M', 237), +(181084, 'Geoffrey', 2003, 'M', 236), +(181085, 'Ronaldo', 2003, 'M', 236), +(181086, 'Gordon', 2003, 'M', 235), +(181087, 'Jarod', 2003, 'M', 234), +(181088, 'Braiden', 2003, 'M', 233), +(181089, 'Jacoby', 2003, 'M', 233), +(181090, 'Darion', 2003, 'M', 232), +(181091, 'Ronan', 2003, 'M', 232), +(181092, 'Darin', 2003, 'M', 231), +(181093, 'Keyon', 2003, 'M', 231), +(181094, 'Jovan', 2003, 'M', 230), +(181095, 'Semaj', 2003, 'M', 230), +(181096, 'Sheldon', 2003, 'M', 230), +(181097, 'Jagger', 2003, 'M', 229), +(181098, 'Sonny', 2003, 'M', 229), +(181099, 'Haden', 2003, 'M', 228), +(181100, 'Reuben', 2003, 'M', 228), +(181101, 'Arjun', 2003, 'M', 227), +(181102, 'Marcel', 2003, 'M', 227), +(181103, 'Pranav', 2003, 'M', 226), +(181104, 'Brycen', 2003, 'M', 225), +(181105, 'Justus', 2003, 'M', 225), +(181106, 'Keven', 2003, 'M', 225), +(181107, 'Korbin', 2003, 'M', 225), +(181108, 'Korey', 2003, 'M', 225), +(181109, 'Bruno', 2003, 'M', 224), +(181110, 'Dandre', 2003, 'M', 224), +(181111, 'Guadalupe', 2003, 'M', 224), +(181112, 'Jovani', 2003, 'M', 224), +(181113, 'Quinten', 2003, 'M', 224), +(181114, 'Tariq', 2003, 'M', 224), +(181115, 'Travon', 2003, 'M', 224), +(181116, 'Shamar', 2003, 'M', 223), +(181117, 'Cornelius', 2003, 'M', 222), +(181118, 'Konner', 2003, 'M', 222), +(181119, 'Bernard', 2003, 'M', 221), +(181120, 'Chaz', 2003, 'M', 220), +(181121, 'Clark', 2003, 'M', 220), +(181122, 'Dallin', 2003, 'M', 220), +(181123, 'Milo', 2003, 'M', 220), +(181124, 'Domenic', 2003, 'M', 219), +(181125, 'Jordy', 2003, 'M', 219), +(181126, 'Leroy', 2003, 'M', 219), +(181127, 'Norman', 2003, 'M', 219), +(181128, 'Vaughn', 2003, 'M', 219), +(181129, 'Samir', 2003, 'M', 217), +(181130, 'Alexandro', 2003, 'M', 216), +(181131, 'Blaise', 2003, 'M', 216), +(181132, 'Ean', 2003, 'M', 216), +(181133, 'Javion', 2003, 'M', 216), +(181134, 'Maximillian', 2003, 'M', 216), +(181135, 'Sammy', 2003, 'M', 216), +(181136, 'Brad', 2003, 'M', 215), +(181137, 'Braedon', 2003, 'M', 215), +(181138, 'Damarion', 2003, 'M', 215), +(181139, 'Jahir', 2003, 'M', 215), +(181140, 'Lawson', 2003, 'M', 215), +(181141, 'Reynaldo', 2003, 'M', 215), +(181142, 'Stephan', 2003, 'M', 215), +(181143, 'Frankie', 2003, 'M', 214), +(181144, 'Irving', 2003, 'M', 214), +(181145, 'Jakobe', 2003, 'M', 214), +(181146, 'Jovany', 2003, 'M', 214), +(181147, 'Lamont', 2003, 'M', 214), +(181148, 'Remington', 2003, 'M', 214), +(181149, 'Arnold', 2003, 'M', 213), +(181150, 'Chaim', 2003, 'M', 213), +(181151, 'Darrius', 2003, 'M', 213), +(181152, 'Hassan', 2003, 'M', 213), +(181153, 'Tristian', 2003, 'M', 213), +(181154, 'Adriel', 2003, 'M', 212), +(181155, 'Adonis', 2003, 'M', 211), +(181156, 'Tylor', 2003, 'M', 211), +(181157, 'Andreas', 2003, 'M', 210), +(181158, 'Ellis', 2003, 'M', 210), +(181159, 'Fredrick', 2003, 'M', 210), +(181160, 'Denzel', 2003, 'M', 209), +(181161, 'Houston', 2003, 'M', 209), +(181162, 'Perry', 2003, 'M', 209), +(181163, 'Simeon', 2003, 'M', 209), +(181164, 'Brenton', 2003, 'M', 208), +(181165, 'Dario', 2003, 'M', 208), +(181166, 'Dimitri', 2003, 'M', 208), +(181167, 'Jarrod', 2003, 'M', 208), +(181168, 'Keanu', 2003, 'M', 208), +(181169, 'Gonzalo', 2003, 'M', 207), +(181170, 'Tyshawn', 2003, 'M', 207), +(181171, 'Waylon', 2003, 'M', 207), +(181172, 'Kevon', 2003, 'M', 206), +(181173, 'Barrett', 2003, 'M', 205), +(181174, 'Rylee', 2003, 'M', 205), +(181175, 'Shannon', 2003, 'M', 205), +(181176, 'Shea', 2003, 'M', 205), +(181177, 'Zaire', 2003, 'M', 205), +(181178, 'Gaige', 2003, 'M', 204), +(181179, 'Jarred', 2003, 'M', 204), +(181180, 'Maxim', 2003, 'M', 204), +(181181, 'Kelton', 2003, 'M', 203), +(181182, 'Nick', 2003, 'M', 203), +(181183, 'Augustus', 2003, 'M', 202), +(181184, 'Marques', 2003, 'M', 202), +(181185, 'Prince', 2003, 'M', 202), +(181186, 'Dexter', 2003, 'M', 201), +(181187, 'Dion', 2003, 'M', 201), +(181188, 'Nikhil', 2003, 'M', 201), +(181189, 'Santino', 2003, 'M', 201), +(181190, 'Antwan', 2003, 'M', 200), +(181191, 'Dangelo', 2003, 'M', 200), +(181192, 'Gino', 2003, 'M', 200), +(181193, 'Raymundo', 2003, 'M', 200), +(181194, 'Reagan', 2003, 'M', 200), +(181195, 'Earl', 2003, 'M', 199), +(181196, 'Jamel', 2003, 'M', 199), +(181197, 'Kian', 2003, 'M', 199), +(181198, 'Barry', 2003, 'M', 198), +(181199, 'Konnor', 2003, 'M', 198), +(181200, 'Darwin', 2003, 'M', 197), +(181201, 'Enzo', 2003, 'M', 197), +(181202, 'Jahiem', 2003, 'M', 196), +(181203, 'Jaren', 2003, 'M', 196), +(181204, 'Reilly', 2003, 'M', 196), +(181205, 'Winston', 2003, 'M', 196), +(181206, 'Cortez', 2003, 'M', 195), +(181207, 'Forrest', 2003, 'M', 195), +(181208, 'Deonte', 2003, 'M', 194), +(181209, 'Hugh', 2003, 'M', 194), +(181210, 'Kylan', 2003, 'M', 193), +(181211, 'Kent', 2003, 'M', 192), +(181212, 'Luciano', 2003, 'M', 192), +(181213, 'Cannon', 2003, 'M', 191), +(181214, 'Jan', 2003, 'M', 191), +(181215, 'London', 2003, 'M', 191), +(181216, 'Malakai', 2003, 'M', 191), +(181217, 'Abdullah', 2003, 'M', 190), +(181218, 'Jarvis', 2003, 'M', 190), +(181219, 'Nathen', 2003, 'M', 190), +(181220, 'Nestor', 2003, 'M', 189), +(181221, 'Zain', 2003, 'M', 189), +(181222, 'Dylon', 2003, 'M', 188), +(181223, 'Josef', 2003, 'M', 188), +(181224, 'Layton', 2003, 'M', 188), +(181225, 'Shayne', 2003, 'M', 188), +(181226, 'Ethen', 2003, 'M', 187), +(181227, 'Jadyn', 2003, 'M', 187), +(181228, 'Kamari', 2003, 'M', 187), +(181229, 'Heriberto', 2003, 'M', 186), +(181230, 'Kaeden', 2003, 'M', 186), +(181231, 'Marcelo', 2003, 'M', 185), +(181232, 'Marquez', 2003, 'M', 185), +(181233, 'Savion', 2003, 'M', 185), +(181234, 'Carlo', 2003, 'M', 184), +(181235, 'Kale', 2003, 'M', 184), +(181236, 'Treyton', 2003, 'M', 184), +(181237, 'Bo', 2003, 'M', 183), +(181238, 'Darrion', 2003, 'M', 183), +(181239, 'Efren', 2003, 'M', 183), +(181240, 'Zack', 2003, 'M', 183), +(181241, 'Bradyn', 2003, 'M', 182), +(181242, 'Deangelo', 2003, 'M', 182), +(181243, 'Rex', 2003, 'M', 182), +(181244, 'Stone', 2003, 'M', 182), +(181245, 'Thaddeus', 2003, 'M', 182), +(181246, 'Jovanni', 2003, 'M', 181), +(181247, 'Jovanny', 2003, 'M', 181), +(181248, 'Trever', 2003, 'M', 180), +(181249, 'Valentin', 2003, 'M', 180), +(181250, 'Isaak', 2003, 'M', 179), +(181251, 'Yosef', 2003, 'M', 179), +(181252, 'Elian', 2003, 'M', 178), +(181253, 'Jamir', 2003, 'M', 177), +(181254, 'Javen', 2003, 'M', 177), +(181255, 'Niko', 2003, 'M', 177), +(181256, 'Syed', 2003, 'M', 177), +(181257, 'Terence', 2003, 'M', 177), +(181258, 'Tre', 2003, 'M', 177), +(181259, 'Cael', 2003, 'M', 176), +(181260, 'Cristobal', 2003, 'M', 176), +(181261, 'Darrin', 2003, 'M', 176), +(181262, 'Dwight', 2003, 'M', 176), +(181263, 'Broderick', 2003, 'M', 175), +(181264, 'Cason', 2003, 'M', 175), +(181265, 'Clifford', 2003, 'M', 175), +(181266, 'Daryl', 2003, 'M', 175), +(181267, 'Giovani', 2003, 'M', 175), +(181268, 'Pierre', 2003, 'M', 175), +(181269, 'Ryker', 2003, 'M', 175), +(181270, 'Austen', 2003, 'M', 174), +(181271, 'Paxton', 2003, 'M', 174), +(181272, 'Alexandre', 2003, 'M', 173), +(181273, 'Cordell', 2003, 'M', 173), +(181274, 'Guy', 2003, 'M', 173), +(181275, 'Rey', 2003, 'M', 173), +(181276, 'Clifton', 2003, 'M', 172), +(181277, 'Khalid', 2003, 'M', 172), +(181278, 'Latrell', 2003, 'M', 172), +(181279, 'Mathias', 2003, 'M', 172), +(181280, 'Sabastian', 2003, 'M', 172), +(181281, 'Bret', 2003, 'M', 171), +(181282, 'Destin', 2003, 'M', 171), +(181283, 'Stephon', 2003, 'M', 171), +(181284, 'Sullivan', 2003, 'M', 171), +(181285, 'Eliezer', 2003, 'M', 170), +(181286, 'Kennedy', 2003, 'M', 170), +(181287, 'Soren', 2003, 'M', 170), +(181288, 'Dontae', 2003, 'M', 169), +(181289, 'Kory', 2003, 'M', 169), +(181290, 'Kurtis', 2003, 'M', 169), +(181291, 'Mordechai', 2003, 'M', 169), +(181292, 'Stuart', 2003, 'M', 169), +(181293, 'Vernon', 2003, 'M', 169), +(181294, 'Fidel', 2003, 'M', 168), +(181295, 'Zavier', 2003, 'M', 167), +(181296, 'Cash', 2003, 'M', 166), +(181297, 'Glen', 2003, 'M', 166), +(181298, 'Mikel', 2003, 'M', 166), +(181299, 'Cristofer', 2003, 'M', 165), +(181300, 'Jase', 2003, 'M', 165), +(181301, 'Menachem', 2003, 'M', 165), +(181302, 'Amos', 2003, 'M', 164), +(181303, 'Bernardo', 2003, 'M', 164), +(181304, 'Campbell', 2003, 'M', 164), +(181305, 'Jamil', 2003, 'M', 164), +(181306, 'Deshaun', 2003, 'M', 163), +(181307, 'Freddie', 2003, 'M', 163), +(181308, 'Trystan', 2003, 'M', 163), +(181309, 'Nash', 2003, 'M', 162), +(181310, 'Rahul', 2003, 'M', 162), +(181311, 'Benito', 2003, 'M', 161), +(181312, 'Benny', 2003, 'M', 161), +(181313, 'Bridger', 2003, 'M', 161), +(181314, 'Elvin', 2003, 'M', 161), +(181315, 'Ervin', 2003, 'M', 161), +(181316, 'Justyn', 2003, 'M', 161), +(181317, 'Kasey', 2003, 'M', 161), +(181318, 'Ryland', 2003, 'M', 161), +(181319, 'Yusuf', 2003, 'M', 161), +(181320, 'Coy', 2003, 'M', 160), +(181321, 'Fletcher', 2003, 'M', 160), +(181322, 'Kyree', 2003, 'M', 160), +(181323, 'Matthias', 2003, 'M', 160), +(181324, 'Rocky', 2003, 'M', 160), +(181325, 'Trevion', 2003, 'M', 160), +(181326, 'Yehuda', 2003, 'M', 159), +(181327, 'Zaid', 2003, 'M', 159), +(181328, 'Zayne', 2003, 'M', 159), +(181329, 'Arnav', 2003, 'M', 158), +(181330, 'Canyon', 2003, 'M', 158), +(181331, 'Kirk', 2003, 'M', 158), +(181332, 'Marion', 2003, 'M', 158), +(181333, 'Samson', 2003, 'M', 158), +(181334, 'Truman', 2003, 'M', 158), +(181335, 'Ajay', 2003, 'M', 157), +(181336, 'Denver', 2003, 'M', 157), +(181337, 'Jordyn', 2003, 'M', 157), +(181338, 'Tavion', 2003, 'M', 157), +(181339, 'Vincenzo', 2003, 'M', 157), +(181340, 'Alton', 2003, 'M', 156), +(181341, 'Braylon', 2003, 'M', 156), +(181342, 'Colt', 2003, 'M', 156), +(181343, 'Jeff', 2003, 'M', 156), +(181344, 'Tyron', 2003, 'M', 156), +(181345, 'Adin', 2003, 'M', 155), +(181346, 'Branson', 2003, 'M', 155), +(181347, 'Davonte', 2003, 'M', 155), +(181348, 'Don', 2003, 'M', 155), +(181349, 'Jaedon', 2003, 'M', 155), +(181350, 'Kason', 2003, 'M', 155), +(181351, 'Turner', 2003, 'M', 155), +(181352, 'Amare', 2003, 'M', 154), +(181353, 'Carlton', 2003, 'M', 154), +(181354, 'Duane', 2003, 'M', 154), +(181355, 'Fredy', 2003, 'M', 154), +(181356, 'Jonatan', 2003, 'M', 154), +(181357, 'Anders', 2003, 'M', 153), +(181358, 'Austyn', 2003, 'M', 153), +(181359, 'Bronson', 2003, 'M', 153), +(181360, 'Demarion', 2003, 'M', 153), +(181361, 'Donnie', 2003, 'M', 153), +(181362, 'Keshaun', 2003, 'M', 153), +(181363, 'Luc', 2003, 'M', 153), +(181364, 'Trenten', 2003, 'M', 153), +(181365, 'Rhys', 2003, 'M', 152), +(181366, 'Abdul', 2003, 'M', 151), +(181367, 'Jevon', 2003, 'M', 151), +(181368, 'Fred', 2003, 'M', 150), +(181369, 'Mariano', 2003, 'M', 150), +(181370, 'Mitchel', 2003, 'M', 150), +(181371, 'Mustafa', 2003, 'M', 150), +(181372, 'Sebastien', 2003, 'M', 150), +(181373, 'Taj', 2003, 'M', 150), +(181374, 'Brant', 2003, 'M', 149), +(181375, 'Eliseo', 2003, 'M', 149), +(181376, 'Haiden', 2003, 'M', 149), +(181377, 'Kamren', 2003, 'M', 149), +(181378, 'Brennon', 2003, 'M', 148), +(181379, 'Isidro', 2003, 'M', 148), +(181380, 'Jaydin', 2003, 'M', 148), +(181381, 'Lonnie', 2003, 'M', 148), +(181382, 'Dewayne', 2003, 'M', 147), +(181383, 'Gregorio', 2003, 'M', 147), +(181384, 'Hezekiah', 2003, 'M', 147), +(181385, 'Jackie', 2003, 'M', 147), +(181386, 'Jedidiah', 2003, 'M', 147), +(181387, 'Kamden', 2003, 'M', 147), +(181388, 'Bilal', 2003, 'M', 146), +(181389, 'Donavin', 2003, 'M', 146), +(181390, 'Dyllan', 2003, 'M', 146), +(181391, 'Eddy', 2003, 'M', 146), +(181392, 'Enoch', 2003, 'M', 146), +(181393, 'Jamarcus', 2003, 'M', 146), +(181394, 'Kelly', 2003, 'M', 146), +(181395, 'Edison', 2003, 'M', 145), +(181396, 'Landyn', 2003, 'M', 145), +(181397, 'Luka', 2003, 'M', 145), +(181398, 'Ryley', 2003, 'M', 145), +(181399, 'Siddharth', 2003, 'M', 145), +(181400, 'Tracy', 2003, 'M', 145), +(181401, 'Ulysses', 2003, 'M', 145), +(181402, 'Yisroel', 2003, 'M', 145), +(181403, 'Denis', 2003, 'M', 144), +(181404, 'Donavon', 2003, 'M', 144), +(181405, 'Javonte', 2003, 'M', 144), +(181406, 'Kalen', 2003, 'M', 144), +(181407, 'Yash', 2003, 'M', 144), +(181408, 'Camryn', 2003, 'M', 143), +(181409, 'Dameon', 2003, 'M', 143), +(181410, 'Dan', 2003, 'M', 143), +(181411, 'Daylon', 2003, 'M', 143), +(181412, 'Jimmie', 2003, 'M', 143), +(181413, 'Teagan', 2003, 'M', 143), +(181414, 'Treyvon', 2003, 'M', 143), +(181415, 'Van', 2003, 'M', 143), +(181416, 'Finnegan', 2003, 'M', 142), +(181417, 'Francesco', 2003, 'M', 142), +(181418, 'Johnnie', 2003, 'M', 142), +(181419, 'Kael', 2003, 'M', 142), +(181420, 'Osbaldo', 2003, 'M', 142), +(181421, 'Aydin', 2003, 'M', 141), +(181422, 'Jaleel', 2003, 'M', 141), +(181423, 'Malaki', 2003, 'M', 141), +(181424, 'Rickey', 2003, 'M', 141), +(181425, 'Tyquan', 2003, 'M', 141), +(181426, 'Dhruv', 2003, 'M', 140), +(181427, 'Jai', 2003, 'M', 140), +(181428, 'Jaquez', 2003, 'M', 140), +(181429, 'Lester', 2003, 'M', 140), +(181430, 'Maximo', 2003, 'M', 140), +(181431, 'Slade', 2003, 'M', 140), +(181432, 'Clint', 2003, 'M', 139), +(181433, 'Joan', 2003, 'M', 139), +(181434, 'Karter', 2003, 'M', 139), +(181435, 'Miguelangel', 2003, 'M', 139), +(181436, 'Tahj', 2003, 'M', 139), +(181437, 'Trevin', 2003, 'M', 139), +(181438, 'Amar', 2003, 'M', 138), +(181439, 'Andon', 2003, 'M', 138), +(181440, 'Augustine', 2003, 'M', 138), +(181441, 'Dilan', 2003, 'M', 138), +(181442, 'Harris', 2003, 'M', 138), +(181443, 'Jalon', 2003, 'M', 138), +(181444, 'Leif', 2003, 'M', 138), +(181445, 'Matias', 2003, 'M', 138), +(181446, 'Tye', 2003, 'M', 138), +(181447, 'Aubrey', 2003, 'M', 137), +(181448, 'Ladarius', 2003, 'M', 137), +(181449, 'Raven', 2003, 'M', 137), +(181450, 'Bishop', 2003, 'M', 136), +(181451, 'Markel', 2003, 'M', 136), +(181452, 'Royce', 2003, 'M', 136), +(181453, 'Arman', 2003, 'M', 135), +(181454, 'Hernan', 2003, 'M', 135), +(181455, 'Jalin', 2003, 'M', 135), +(181456, 'Jayvon', 2003, 'M', 135), +(181457, 'Memphis', 2003, 'M', 135), +(181458, 'Courtney', 2003, 'M', 134), +(181459, 'Genaro', 2003, 'M', 134), +(181460, 'Harvey', 2003, 'M', 134), +(181461, 'Ilan', 2003, 'M', 134), +(181462, 'Carsen', 2003, 'M', 133), +(181463, 'Deondre', 2003, 'M', 133), +(181464, 'Devante', 2003, 'M', 133), +(181465, 'Gerard', 2003, 'M', 133), +(181466, 'Immanuel', 2003, 'M', 133), +(181467, 'Kenton', 2003, 'M', 133), +(181468, 'Kristofer', 2003, 'M', 133), +(181469, 'Lloyd', 2003, 'M', 133), +(181470, 'Briar', 2003, 'M', 132), +(181471, 'Deion', 2003, 'M', 132), +(181472, 'Kyron', 2003, 'M', 132), +(181473, 'Lazaro', 2003, 'M', 132), +(181474, 'Raiden', 2003, 'M', 132), +(181475, 'Santana', 2003, 'M', 132), +(181476, 'Alek', 2003, 'M', 131), +(181477, 'Devlin', 2003, 'M', 131), +(181478, 'Federico', 2003, 'M', 131), +(181479, 'Franco', 2003, 'M', 131), +(181480, 'Gauge', 2003, 'M', 131), +(181481, 'Jeramiah', 2003, 'M', 131), +(181482, 'Tai', 2003, 'M', 131), +(181483, 'Tom', 2003, 'M', 131), +(181484, 'Boston', 2003, 'M', 130), +(181485, 'Jelani', 2003, 'M', 130), +(181486, 'Rashawn', 2003, 'M', 130), +(181487, 'Rick', 2003, 'M', 130), +(181488, 'Anish', 2003, 'M', 129), +(181489, 'Bowen', 2003, 'M', 129), +(181490, 'Brogan', 2003, 'M', 129), +(181491, 'Garett', 2003, 'M', 129), +(181492, 'Karim', 2003, 'M', 129), +(181493, 'Kejuan', 2003, 'M', 129), +(181494, 'Leland', 2003, 'M', 129), +(181495, 'Neal', 2003, 'M', 129), +(181496, 'Daveon', 2003, 'M', 128), +(181497, 'Hans', 2003, 'M', 128), +(181498, 'Johnpaul', 2003, 'M', 128), +(181499, 'Lionel', 2003, 'M', 128), +(181500, 'Makai', 2003, 'M', 128), +(181501, 'Rishi', 2003, 'M', 128), +(181502, 'Baylor', 2003, 'M', 127), +(181503, 'Blayne', 2003, 'M', 127), +(181504, 'Brandyn', 2003, 'M', 127), +(181505, 'Cain', 2003, 'M', 127), +(181506, 'Deacon', 2003, 'M', 127), +(181507, 'Isac', 2003, 'M', 127), +(181508, 'Jaycob', 2003, 'M', 127), +(181509, 'Joseluis', 2003, 'M', 127), +(181510, 'Atticus', 2003, 'M', 126), +(181511, 'Iain', 2003, 'M', 126), +(181512, 'Leandro', 2003, 'M', 126), +(181513, 'Markell', 2003, 'M', 126), +(181514, 'Rian', 2003, 'M', 126), +(181515, 'Tevin', 2003, 'M', 126), +(181516, 'Juancarlos', 2003, 'M', 125), +(181517, 'Presley', 2003, 'M', 125), +(181518, 'Bradly', 2003, 'M', 124), +(181519, 'Davian', 2003, 'M', 124), +(181520, 'Dillion', 2003, 'M', 124), +(181521, 'Myron', 2003, 'M', 124), +(181522, 'Nikolai', 2003, 'M', 124), +(181523, 'Om', 2003, 'M', 124), +(181524, 'Sahil', 2003, 'M', 124), +(181525, 'Ameer', 2003, 'M', 123), +(181526, 'Brandt', 2003, 'M', 123), +(181527, 'Braulio', 2003, 'M', 123), +(181528, 'Everardo', 2003, 'M', 123), +(181529, 'Jerimiah', 2003, 'M', 123), +(181530, 'Kentrell', 2003, 'M', 123), +(181531, 'Sami', 2003, 'M', 123), +(181532, 'Uriah', 2003, 'M', 123), +(181533, 'Britton', 2003, 'M', 122), +(181534, 'Emery', 2003, 'M', 122), +(181535, 'Fisher', 2003, 'M', 122), +(181536, 'Jakub', 2003, 'M', 122), +(181537, 'Willem', 2003, 'M', 122), +(181538, 'Deontae', 2003, 'M', 121), +(181539, 'Jacobi', 2003, 'M', 121), +(181540, 'Jadin', 2003, 'M', 121), +(181541, 'Kadyn', 2003, 'M', 121), +(181542, 'Kolten', 2003, 'M', 121), +(181543, 'Krish', 2003, 'M', 121), +(181544, 'Raheem', 2003, 'M', 121), +(181545, 'Varun', 2003, 'M', 121), +(181546, 'Yousef', 2003, 'M', 121), +(181547, 'Gian', 2003, 'M', 120), +(181548, 'Hasan', 2003, 'M', 120), +(181549, 'Herbert', 2003, 'M', 120), +(181550, 'Jordi', 2003, 'M', 120), +(181551, 'Landin', 2003, 'M', 120), +(181552, 'Shlomo', 2003, 'M', 120), +(181553, 'Canaan', 2003, 'M', 119), +(181554, 'Daylan', 2003, 'M', 119), +(181555, 'Demarco', 2003, 'M', 119), +(181556, 'Eliot', 2003, 'M', 119), +(181557, 'Izayah', 2003, 'M', 119), +(181558, 'Kamryn', 2003, 'M', 119), +(181559, 'Leighton', 2003, 'M', 118), +(181560, 'Tavon', 2003, 'M', 118), +(181561, 'Case', 2003, 'M', 117), +(181562, 'Daylen', 2003, 'M', 117), +(181563, 'Edmund', 2003, 'M', 117), +(181564, 'Ever', 2003, 'M', 117), +(181565, 'Jamaal', 2003, 'M', 117), +(181566, 'Javin', 2003, 'M', 117), +(181567, 'Kannon', 2003, 'M', 117), +(181568, 'Killian', 2003, 'M', 117), +(181569, 'Lars', 2003, 'M', 117), +(181570, 'Lyle', 2003, 'M', 117), +(181571, 'Messiah', 2003, 'M', 117), +(181572, 'Paris', 2003, 'M', 117), +(181573, 'Ramsey', 2003, 'M', 117), +(181574, 'Vince', 2003, 'M', 117), +(181575, 'Herman', 2003, 'M', 116), +(181576, 'Jax', 2003, 'M', 116), +(181577, 'Mack', 2003, 'M', 116), +(181578, 'Nazir', 2003, 'M', 116), +(181579, 'Said', 2003, 'M', 116), +(181580, 'Abner', 2003, 'M', 115), +(181581, 'Akash', 2003, 'M', 115), +(181582, 'Brandan', 2003, 'M', 115), +(181583, 'Clyde', 2003, 'M', 115), +(181584, 'Dave', 2003, 'M', 115), +(181585, 'Gerson', 2003, 'M', 115), +(181586, 'Jaheem', 2003, 'M', 115), +(181587, 'Johann', 2003, 'M', 115), +(181588, 'Kahlil', 2003, 'M', 115), +(181589, 'Lathan', 2003, 'M', 115), +(181590, 'Jasiah', 2003, 'M', 114), +(181591, 'Makhi', 2003, 'M', 114), +(181592, 'Marcellus', 2003, 'M', 114), +(181593, 'Rico', 2003, 'M', 114), +(181594, 'Camilo', 2003, 'M', 113), +(181595, 'Ephraim', 2003, 'M', 113), +(181596, 'Gabe', 2003, 'M', 113), +(181597, 'Wilfredo', 2003, 'M', 113), +(181598, 'Callum', 2003, 'M', 112), +(181599, 'Damari', 2003, 'M', 112), +(181600, 'Eden', 2003, 'M', 112), +(181601, 'Haven', 2003, 'M', 112), +(181602, 'Kerry', 2003, 'M', 112), +(181603, 'Morris', 2003, 'M', 112), +(181604, 'Robin', 2003, 'M', 112), +(181605, 'Yaakov', 2003, 'M', 112), +(181606, 'Anson', 2003, 'M', 111), +(181607, 'Coleton', 2003, 'M', 111), +(181608, 'Dev', 2003, 'M', 111), +(181609, 'Edgardo', 2003, 'M', 111), +(181610, 'Aedan', 2003, 'M', 110), +(181611, 'Arian', 2003, 'M', 110), +(181612, 'Arron', 2003, 'M', 110), +(181613, 'Evin', 2003, 'M', 110), +(181614, 'Jacques', 2003, 'M', 110), +(181615, 'Ken', 2003, 'M', 110), +(181616, 'Tylan', 2003, 'M', 110), +(181617, 'Yael', 2003, 'M', 110), +(181618, 'Angus', 2003, 'M', 109), +(181619, 'Kalvin', 2003, 'M', 109), +(181620, 'Kelby', 2003, 'M', 109), +(181621, 'Milan', 2003, 'M', 109), +(181622, 'Theo', 2003, 'M', 109), +(181623, 'Tyrek', 2003, 'M', 109), +(181624, 'Benicio', 2003, 'M', 108), +(181625, 'Dejuan', 2003, 'M', 108), +(181626, 'Eamon', 2003, 'M', 108), +(181627, 'Jalyn', 2003, 'M', 108), +(181628, 'Jessy', 2003, 'M', 108), +(181629, 'Kain', 2003, 'M', 108), +(181630, 'Quinlan', 2003, 'M', 108), +(181631, 'Shelton', 2003, 'M', 108), +(181632, 'Vladimir', 2003, 'M', 108), +(181633, 'Aric', 2003, 'M', 107), +(181634, 'Donnell', 2003, 'M', 107), +(181635, 'Favian', 2003, 'M', 107), +(181636, 'Geovanny', 2003, 'M', 107), +(181637, 'Jericho', 2003, 'M', 107), +(181638, 'Gene', 2003, 'M', 106), +(181639, 'Ishmael', 2003, 'M', 106), +(181640, 'Jashawn', 2003, 'M', 106), +(181641, 'Kavon', 2003, 'M', 106), +(181642, 'Marcello', 2003, 'M', 106), +(181643, 'Rayan', 2003, 'M', 106), +(181644, 'Sameer', 2003, 'M', 106), +(181645, 'Torin', 2003, 'M', 106), +(181646, 'Ammon', 2003, 'M', 105), +(181647, 'Geovanni', 2003, 'M', 105), +(181648, 'Kegan', 2003, 'M', 105), +(181649, 'Kye', 2003, 'M', 105), +(181650, 'Remy', 2003, 'M', 105), +(181651, 'Antwon', 2003, 'M', 104), +(181652, 'Dashaun', 2003, 'M', 104), +(181653, 'Demario', 2003, 'M', 104); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(181654, 'Dontrell', 2003, 'M', 104), +(181655, 'Esai', 2003, 'M', 104), +(181656, 'Haydn', 2003, 'M', 104), +(181657, 'Jensen', 2003, 'M', 104), +(181658, 'Kasen', 2003, 'M', 104), +(181659, 'Rayshawn', 2003, 'M', 104), +(181660, 'Travion', 2003, 'M', 104), +(181661, 'Antwone', 2003, 'M', 103), +(181662, 'Auston', 2003, 'M', 103), +(181663, 'Cian', 2003, 'M', 103), +(181664, 'Colter', 2003, 'M', 103), +(181665, 'Dajuan', 2003, 'M', 103), +(181666, 'Ira', 2003, 'M', 103), +(181667, 'Keandre', 2003, 'M', 103), +(181668, 'Zeke', 2003, 'M', 103), +(181669, 'Ajani', 2003, 'M', 102), +(181670, 'Aman', 2003, 'M', 102), +(181671, 'Benson', 2003, 'M', 102), +(181672, 'Bradford', 2003, 'M', 102), +(181673, 'Daron', 2003, 'M', 102), +(181674, 'Floyd', 2003, 'M', 102), +(181675, 'Rasheed', 2003, 'M', 102), +(181676, 'Caeden', 2003, 'M', 101), +(181677, 'Carmelo', 2003, 'M', 101), +(181678, 'Cecil', 2003, 'M', 101), +(181679, 'Demetri', 2003, 'M', 101), +(181680, 'Jim', 2003, 'M', 101), +(181681, 'Kellan', 2003, 'M', 101), +(181682, 'Leslie', 2003, 'M', 101), +(181683, 'Mikhail', 2003, 'M', 101), +(181684, 'Shay', 2003, 'M', 101), +(181685, 'Jaydan', 2003, 'M', 100), +(181686, 'Jody', 2003, 'M', 100), +(181687, 'Loren', 2003, 'M', 100), +(181688, 'Marcelino', 2003, 'M', 100), +(181689, 'Odin', 2003, 'M', 100), +(181690, 'Stewart', 2003, 'M', 100), +(181691, 'Tyreke', 2003, 'M', 100), +(181692, 'Wilmer', 2003, 'M', 100), +(181693, 'Emily', 2004, 'F', 25025), +(181694, 'Emma', 2004, 'F', 21599), +(181695, 'Madison', 2004, 'F', 20614), +(181696, 'Olivia', 2004, 'F', 16101), +(181697, 'Hannah', 2004, 'F', 15598), +(181698, 'Abigail', 2004, 'F', 15423), +(181699, 'Isabella', 2004, 'F', 15014), +(181700, 'Ashley', 2004, 'F', 14369), +(181701, 'Samantha', 2004, 'F', 13775), +(181702, 'Elizabeth', 2004, 'F', 13550), +(181703, 'Alexis', 2004, 'F', 13465), +(181704, 'Sarah', 2004, 'F', 12729), +(181705, 'Grace', 2004, 'F', 12525), +(181706, 'Alyssa', 2004, 'F', 12102), +(181707, 'Sophia', 2004, 'F', 10915), +(181708, 'Lauren', 2004, 'F', 9981), +(181709, 'Brianna', 2004, 'F', 9797), +(181710, 'Kayla', 2004, 'F', 9764), +(181711, 'Natalie', 2004, 'F', 9687), +(181712, 'Anna', 2004, 'F', 9513), +(181713, 'Jessica', 2004, 'F', 9469), +(181714, 'Taylor', 2004, 'F', 9300), +(181715, 'Chloe', 2004, 'F', 8724), +(181716, 'Hailey', 2004, 'F', 8678), +(181717, 'Ava', 2004, 'F', 8644), +(181718, 'Jasmine', 2004, 'F', 8481), +(181719, 'Sydney', 2004, 'F', 8364), +(181720, 'Victoria', 2004, 'F', 8269), +(181721, 'Ella', 2004, 'F', 8236), +(181722, 'Mia', 2004, 'F', 7394), +(181723, 'Morgan', 2004, 'F', 7293), +(181724, 'Julia', 2004, 'F', 7142), +(181725, 'Kaitlyn', 2004, 'F', 6984), +(181726, 'Rachel', 2004, 'F', 6907), +(181727, 'Katherine', 2004, 'F', 6738), +(181728, 'Megan', 2004, 'F', 6685), +(181729, 'Alexandra', 2004, 'F', 6621), +(181730, 'Jennifer', 2004, 'F', 6541), +(181731, 'Destiny', 2004, 'F', 6538), +(181732, 'Allison', 2004, 'F', 5871), +(181733, 'Savannah', 2004, 'F', 5810), +(181734, 'Maria', 2004, 'F', 5750), +(181735, 'Nicole', 2004, 'F', 5739), +(181736, 'Mackenzie', 2004, 'F', 5723), +(181737, 'Haley', 2004, 'F', 5722), +(181738, 'Brooke', 2004, 'F', 5707), +(181739, 'Makayla', 2004, 'F', 5661), +(181740, 'Trinity', 2004, 'F', 5630), +(181741, 'Kylie', 2004, 'F', 5554), +(181742, 'Kaylee', 2004, 'F', 5438), +(181743, 'Paige', 2004, 'F', 5435), +(181744, 'Faith', 2004, 'F', 5413), +(181745, 'Lily', 2004, 'F', 5400), +(181746, 'Zoe', 2004, 'F', 5361), +(181747, 'Stephanie', 2004, 'F', 5181), +(181748, 'Jenna', 2004, 'F', 5174), +(181749, 'Andrea', 2004, 'F', 5053), +(181750, 'Riley', 2004, 'F', 4981), +(181751, 'Katelyn', 2004, 'F', 4947), +(181752, 'Angelina', 2004, 'F', 4907), +(181753, 'Kimberly', 2004, 'F', 4842), +(181754, 'Mary', 2004, 'F', 4803), +(181755, 'Madeline', 2004, 'F', 4764), +(181756, 'Leah', 2004, 'F', 4742), +(181757, 'Lillian', 2004, 'F', 4730), +(181758, 'Michelle', 2004, 'F', 4715), +(181759, 'Amanda', 2004, 'F', 4677), +(181760, 'Sara', 2004, 'F', 4501), +(181761, 'Sofia', 2004, 'F', 4473), +(181762, 'Rebecca', 2004, 'F', 4453), +(181763, 'Jordan', 2004, 'F', 4442), +(181764, 'Alexa', 2004, 'F', 4437), +(181765, 'Gabrielle', 2004, 'F', 4418), +(181766, 'Caroline', 2004, 'F', 4374), +(181767, 'Vanessa', 2004, 'F', 4345), +(181768, 'Gabriella', 2004, 'F', 4251), +(181769, 'Avery', 2004, 'F', 4041), +(181770, 'Marissa', 2004, 'F', 4004), +(181771, 'Ariana', 2004, 'F', 3993), +(181772, 'Audrey', 2004, 'F', 3899), +(181773, 'Jada', 2004, 'F', 3889), +(181774, 'Autumn', 2004, 'F', 3859), +(181775, 'Maya', 2004, 'F', 3765), +(181776, 'Evelyn', 2004, 'F', 3762), +(181777, 'Jocelyn', 2004, 'F', 3742), +(181778, 'Arianna', 2004, 'F', 3681), +(181779, 'Isabel', 2004, 'F', 3636), +(181780, 'Amber', 2004, 'F', 3635), +(181781, 'Melanie', 2004, 'F', 3579), +(181782, 'Diana', 2004, 'F', 3553), +(181783, 'Danielle', 2004, 'F', 3526), +(181784, 'Sierra', 2004, 'F', 3518), +(181785, 'Leslie', 2004, 'F', 3499), +(181786, 'Aaliyah', 2004, 'F', 3485), +(181787, 'Erin', 2004, 'F', 3366), +(181788, 'Amelia', 2004, 'F', 3350), +(181789, 'Molly', 2004, 'F', 3342), +(181790, 'Claire', 2004, 'F', 3333), +(181791, 'Melissa', 2004, 'F', 3331), +(181792, 'Bailey', 2004, 'F', 3306), +(181793, 'Brooklyn', 2004, 'F', 3263), +(181794, 'Katie', 2004, 'F', 3198), +(181795, 'Catherine', 2004, 'F', 3180), +(181796, 'Nevaeh', 2004, 'F', 3179), +(181797, 'Angela', 2004, 'F', 3157), +(181798, 'Amy', 2004, 'F', 3114), +(181799, 'Isabelle', 2004, 'F', 3098), +(181800, 'Jacqueline', 2004, 'F', 3064), +(181801, 'Jade', 2004, 'F', 3049), +(181802, 'Gabriela', 2004, 'F', 3019), +(181803, 'Madelyn', 2004, 'F', 3003), +(181804, 'Shelby', 2004, 'F', 2987), +(181805, 'Mariah', 2004, 'F', 2974), +(181806, 'Gracie', 2004, 'F', 2940), +(181807, 'Mya', 2004, 'F', 2893), +(181808, 'Breanna', 2004, 'F', 2892), +(181809, 'Kennedy', 2004, 'F', 2886), +(181810, 'Daniela', 2004, 'F', 2839), +(181811, 'Adriana', 2004, 'F', 2829), +(181812, 'Briana', 2004, 'F', 2824), +(181813, 'Courtney', 2004, 'F', 2762), +(181814, 'Kathryn', 2004, 'F', 2751), +(181815, 'Christina', 2004, 'F', 2732), +(181816, 'Gianna', 2004, 'F', 2725), +(181817, 'Alexandria', 2004, 'F', 2647), +(181818, 'Lydia', 2004, 'F', 2617), +(181819, 'Angel', 2004, 'F', 2613), +(181820, 'Miranda', 2004, 'F', 2609), +(181821, 'Laura', 2004, 'F', 2550), +(181822, 'Alicia', 2004, 'F', 2514), +(181823, 'Ashlyn', 2004, 'F', 2454), +(181824, 'Alexia', 2004, 'F', 2447), +(181825, 'Margaret', 2004, 'F', 2435), +(181826, 'Peyton', 2004, 'F', 2390), +(181827, 'Sophie', 2004, 'F', 2386), +(181828, 'Rylee', 2004, 'F', 2374), +(181829, 'Kendall', 2004, 'F', 2359), +(181830, 'Kelly', 2004, 'F', 2356), +(181831, 'Ana', 2004, 'F', 2346), +(181832, 'Summer', 2004, 'F', 2332), +(181833, 'Kylee', 2004, 'F', 2294), +(181834, 'Natalia', 2004, 'F', 2291), +(181835, 'Daisy', 2004, 'F', 2270), +(181836, 'Reagan', 2004, 'F', 2268), +(181837, 'Naomi', 2004, 'F', 2267), +(181838, 'Lindsey', 2004, 'F', 2253), +(181839, 'Kate', 2004, 'F', 2218), +(181840, 'Kelsey', 2004, 'F', 2198), +(181841, 'Sabrina', 2004, 'F', 2188), +(181842, 'Cheyenne', 2004, 'F', 2184), +(181843, 'Mckenzie', 2004, 'F', 2183), +(181844, 'Jillian', 2004, 'F', 2179), +(181845, 'Alondra', 2004, 'F', 2178), +(181846, 'Skylar', 2004, 'F', 2172), +(181847, 'Karen', 2004, 'F', 2165), +(181848, 'Mikayla', 2004, 'F', 2154), +(181849, 'Paris', 2004, 'F', 2150), +(181850, 'Ruby', 2004, 'F', 2118), +(181851, 'Payton', 2004, 'F', 2077), +(181852, 'Addison', 2004, 'F', 2054), +(181853, 'Caitlin', 2004, 'F', 2049), +(181854, 'Kyla', 2004, 'F', 2037), +(181855, 'Crystal', 2004, 'F', 2033), +(181856, 'Juliana', 2004, 'F', 2030), +(181857, 'Caitlyn', 2004, 'F', 2029), +(181858, 'Abby', 2004, 'F', 2023), +(181859, 'Layla', 2004, 'F', 2011), +(181860, 'Cassidy', 2004, 'F', 2005), +(181861, 'Delaney', 2004, 'F', 2000), +(181862, 'Charlotte', 2004, 'F', 1993), +(181863, 'Mariana', 2004, 'F', 1989), +(181864, 'Bianca', 2004, 'F', 1986), +(181865, 'Cassandra', 2004, 'F', 1973), +(181866, 'Valeria', 2004, 'F', 1956), +(181867, 'Tiffany', 2004, 'F', 1955), +(181868, 'Angelica', 2004, 'F', 1938), +(181869, 'Carly', 2004, 'F', 1925), +(181870, 'Alana', 2004, 'F', 1912), +(181871, 'Hope', 2004, 'F', 1911), +(181872, 'Valerie', 2004, 'F', 1903), +(181873, 'Jasmin', 2004, 'F', 1885), +(181874, 'Giselle', 2004, 'F', 1884), +(181875, 'Erica', 2004, 'F', 1872), +(181876, 'Genesis', 2004, 'F', 1858), +(181877, 'Jazmin', 2004, 'F', 1856), +(181878, 'Jordyn', 2004, 'F', 1833), +(181879, 'Mallory', 2004, 'F', 1828), +(181880, 'Kiara', 2004, 'F', 1827), +(181881, 'Ellie', 2004, 'F', 1817), +(181882, 'Aubrey', 2004, 'F', 1812), +(181883, 'Serenity', 2004, 'F', 1780), +(181884, 'Erika', 2004, 'F', 1770), +(181885, 'Veronica', 2004, 'F', 1767), +(181886, 'Chelsea', 2004, 'F', 1752), +(181887, 'Karla', 2004, 'F', 1749), +(181888, 'Sadie', 2004, 'F', 1747), +(181889, 'Karina', 2004, 'F', 1733), +(181890, 'Eva', 2004, 'F', 1726), +(181891, 'Jamie', 2004, 'F', 1724), +(181892, 'Julianna', 2004, 'F', 1682), +(181893, 'Brenda', 2004, 'F', 1658), +(181894, 'Mckenna', 2004, 'F', 1656), +(181895, 'Lucy', 2004, 'F', 1637), +(181896, 'Celeste', 2004, 'F', 1634), +(181897, 'Bethany', 2004, 'F', 1629), +(181898, 'Maggie', 2004, 'F', 1629), +(181899, 'Alejandra', 2004, 'F', 1628), +(181900, 'Zoey', 2004, 'F', 1622), +(181901, 'Amaya', 2004, 'F', 1618), +(181902, 'Adrianna', 2004, 'F', 1615), +(181903, 'Esmeralda', 2004, 'F', 1613), +(181904, 'Lilly', 2004, 'F', 1613), +(181905, 'Makenzie', 2004, 'F', 1603), +(181906, 'Nadia', 2004, 'F', 1584), +(181907, 'Elena', 2004, 'F', 1582), +(181908, 'Jayla', 2004, 'F', 1560), +(181909, 'Meghan', 2004, 'F', 1557), +(181910, 'Cadence', 2004, 'F', 1552), +(181911, 'Ariel', 2004, 'F', 1543), +(181912, 'Kyra', 2004, 'F', 1542), +(181913, 'Aliyah', 2004, 'F', 1525), +(181914, 'Cynthia', 2004, 'F', 1519), +(181915, 'Liliana', 2004, 'F', 1517), +(181916, 'Camryn', 2004, 'F', 1514), +(181917, 'Monica', 2004, 'F', 1512), +(181918, 'Elise', 2004, 'F', 1510), +(181919, 'Makenna', 2004, 'F', 1463), +(181920, 'Kailey', 2004, 'F', 1438), +(181921, 'Alison', 2004, 'F', 1432), +(181922, 'Hanna', 2004, 'F', 1426), +(181923, 'Vivian', 2004, 'F', 1424), +(181924, 'Lizbeth', 2004, 'F', 1422), +(181925, 'Macy', 2004, 'F', 1415), +(181926, 'Desiree', 2004, 'F', 1394), +(181927, 'Rebekah', 2004, 'F', 1384), +(181928, 'Jayden', 2004, 'F', 1383), +(181929, 'Allyson', 2004, 'F', 1367), +(181930, 'Haylee', 2004, 'F', 1366), +(181931, 'Carmen', 2004, 'F', 1363), +(181932, 'Brittany', 2004, 'F', 1355), +(181933, 'Lindsay', 2004, 'F', 1354), +(181934, 'Josephine', 2004, 'F', 1337), +(181935, 'Nina', 2004, 'F', 1322), +(181936, 'Heather', 2004, 'F', 1303), +(181937, 'Jazmine', 2004, 'F', 1298), +(181938, 'Hayley', 2004, 'F', 1297), +(181939, 'Asia', 2004, 'F', 1295), +(181940, 'Jaden', 2004, 'F', 1283), +(181941, 'Kara', 2004, 'F', 1283), +(181942, 'Laila', 2004, 'F', 1282), +(181943, 'Cameron', 2004, 'F', 1276), +(181944, 'Camille', 2004, 'F', 1276), +(181945, 'Joanna', 2004, 'F', 1276), +(181946, 'Carolina', 2004, 'F', 1268), +(181947, 'Katelynn', 2004, 'F', 1266), +(181948, 'Shannon', 2004, 'F', 1255), +(181949, 'Keira', 2004, 'F', 1244), +(181950, 'Reese', 2004, 'F', 1241), +(181951, 'Selena', 2004, 'F', 1241), +(181952, 'Bella', 2004, 'F', 1240), +(181953, 'Julie', 2004, 'F', 1238), +(181954, 'Aniya', 2004, 'F', 1231), +(181955, 'Diamond', 2004, 'F', 1222), +(181956, 'Kristen', 2004, 'F', 1220), +(181957, 'Raven', 2004, 'F', 1218), +(181958, 'Piper', 2004, 'F', 1214), +(181959, 'Guadalupe', 2004, 'F', 1213), +(181960, 'Heaven', 2004, 'F', 1208), +(181961, 'Alaina', 2004, 'F', 1207), +(181962, 'Claudia', 2004, 'F', 1201), +(181963, 'Kendra', 2004, 'F', 1199), +(181964, 'Fatima', 2004, 'F', 1198), +(181965, 'Savanna', 2004, 'F', 1196), +(181966, 'Miriam', 2004, 'F', 1193), +(181967, 'Kira', 2004, 'F', 1183), +(181968, 'Tessa', 2004, 'F', 1182), +(181969, 'April', 2004, 'F', 1179), +(181970, 'Dakota', 2004, 'F', 1179), +(181971, 'Cecilia', 2004, 'F', 1177), +(181972, 'Sandra', 2004, 'F', 1175), +(181973, 'Katrina', 2004, 'F', 1171), +(181974, 'Michaela', 2004, 'F', 1165), +(181975, 'Ashlee', 2004, 'F', 1163), +(181976, 'Clara', 2004, 'F', 1162), +(181977, 'Kayleigh', 2004, 'F', 1161), +(181978, 'Anastasia', 2004, 'F', 1153), +(181979, 'Ashlynn', 2004, 'F', 1153), +(181980, 'Camila', 2004, 'F', 1152), +(181981, 'Nancy', 2004, 'F', 1143), +(181982, 'Tatiana', 2004, 'F', 1127), +(181983, 'Stella', 2004, 'F', 1123), +(181984, 'Jadyn', 2004, 'F', 1120), +(181985, 'Holly', 2004, 'F', 1118), +(181986, 'Allie', 2004, 'F', 1104), +(181987, 'Kaitlin', 2004, 'F', 1100), +(181988, 'Aniyah', 2004, 'F', 1099), +(181989, 'Esther', 2004, 'F', 1097), +(181990, 'Kirsten', 2004, 'F', 1089), +(181991, 'Kamryn', 2004, 'F', 1076), +(181992, 'Annabelle', 2004, 'F', 1067), +(181993, 'Eleanor', 2004, 'F', 1063), +(181994, 'Serena', 2004, 'F', 1063), +(181995, 'Alayna', 2004, 'F', 1062), +(181996, 'Natasha', 2004, 'F', 1059), +(181997, 'Cindy', 2004, 'F', 1053), +(181998, 'Nora', 2004, 'F', 1043), +(181999, 'Wendy', 2004, 'F', 1039), +(182000, 'Kaylie', 2004, 'F', 1036), +(182001, 'Bridget', 2004, 'F', 1034), +(182002, 'Skyler', 2004, 'F', 1031), +(182003, 'Julissa', 2004, 'F', 1018), +(182004, 'Melody', 2004, 'F', 1018), +(182005, 'Emilee', 2004, 'F', 1015), +(182006, 'Eliana', 2004, 'F', 1012), +(182007, 'Emely', 2004, 'F', 1006), +(182008, 'Kathleen', 2004, 'F', 1001), +(182009, 'Patricia', 2004, 'F', 997), +(182010, 'Rylie', 2004, 'F', 994), +(182011, 'Lexi', 2004, 'F', 993), +(182012, 'Eliza', 2004, 'F', 991), +(182013, 'Aurora', 2004, 'F', 986), +(182014, 'Ciara', 2004, 'F', 977), +(182015, 'Tara', 2004, 'F', 977), +(182016, 'Josie', 2004, 'F', 975), +(182017, 'Kristina', 2004, 'F', 972), +(182018, 'Daniella', 2004, 'F', 971), +(182019, 'Fiona', 2004, 'F', 970), +(182020, 'Annika', 2004, 'F', 969), +(182021, 'Jayda', 2004, 'F', 967), +(182022, 'Brenna', 2004, 'F', 966), +(182023, 'Alivia', 2004, 'F', 960), +(182024, 'Madeleine', 2004, 'F', 959), +(182025, 'Alissa', 2004, 'F', 954), +(182026, 'Talia', 2004, 'F', 954), +(182027, 'Meredith', 2004, 'F', 953), +(182028, 'Marisa', 2004, 'F', 952), +(182029, 'Mercedes', 2004, 'F', 952), +(182030, 'Yasmin', 2004, 'F', 950), +(182031, 'Yesenia', 2004, 'F', 950), +(182032, 'Eden', 2004, 'F', 941), +(182033, 'Leilani', 2004, 'F', 936), +(182034, 'Heidi', 2004, 'F', 933), +(182035, 'Paola', 2004, 'F', 933), +(182036, 'Kassandra', 2004, 'F', 929), +(182037, 'Callie', 2004, 'F', 925), +(182038, 'Brooklynn', 2004, 'F', 920), +(182039, 'Priscilla', 2004, 'F', 919), +(182040, 'Shayla', 2004, 'F', 919), +(182041, 'Cierra', 2004, 'F', 914), +(182042, 'Britney', 2004, 'F', 910), +(182043, 'Ruth', 2004, 'F', 905), +(182044, 'Logan', 2004, 'F', 900), +(182045, 'Denise', 2004, 'F', 893), +(182046, 'Leila', 2004, 'F', 893), +(182047, 'Rose', 2004, 'F', 890), +(182048, 'Nia', 2004, 'F', 889), +(182049, 'Marina', 2004, 'F', 886), +(182050, 'Brynn', 2004, 'F', 879), +(182051, 'Sage', 2004, 'F', 879), +(182052, 'Itzel', 2004, 'F', 878), +(182053, 'Perla', 2004, 'F', 877), +(182054, 'Harley', 2004, 'F', 876), +(182055, 'Kiana', 2004, 'F', 871), +(182056, 'Helen', 2004, 'F', 860), +(182057, 'Samara', 2004, 'F', 856), +(182058, 'Georgia', 2004, 'F', 854), +(182059, 'Clarissa', 2004, 'F', 852), +(182060, 'Sasha', 2004, 'F', 849), +(182061, 'Christine', 2004, 'F', 844), +(182062, 'Rachael', 2004, 'F', 844), +(182063, 'Janiya', 2004, 'F', 843), +(182064, 'Tori', 2004, 'F', 841), +(182065, 'Kiley', 2004, 'F', 840), +(182066, 'Sidney', 2004, 'F', 836), +(182067, 'Tamia', 2004, 'F', 833), +(182068, 'Iris', 2004, 'F', 831), +(182069, 'Kaydence', 2004, 'F', 830), +(182070, 'Angie', 2004, 'F', 829), +(182071, 'Kiera', 2004, 'F', 827), +(182072, 'Kyleigh', 2004, 'F', 818), +(182073, 'Anahi', 2004, 'F', 817), +(182074, 'Casey', 2004, 'F', 817), +(182075, 'Annie', 2004, 'F', 813), +(182076, 'Tatum', 2004, 'F', 813), +(182077, 'Shania', 2004, 'F', 810), +(182078, 'Ivy', 2004, 'F', 802), +(182079, 'Halle', 2004, 'F', 801), +(182080, 'Imani', 2004, 'F', 800), +(182081, 'Lauryn', 2004, 'F', 798), +(182082, 'Kadence', 2004, 'F', 797), +(182083, 'Hailee', 2004, 'F', 790), +(182084, 'Nayeli', 2004, 'F', 790), +(182085, 'Alina', 2004, 'F', 789), +(182086, 'Bryanna', 2004, 'F', 789), +(182087, 'Izabella', 2004, 'F', 779), +(182088, 'Marisol', 2004, 'F', 775), +(182089, 'Ximena', 2004, 'F', 770), +(182090, 'Anne', 2004, 'F', 765), +(182091, 'Ainsley', 2004, 'F', 764), +(182092, 'Skye', 2004, 'F', 760), +(182093, 'Madalyn', 2004, 'F', 758), +(182094, 'Kassidy', 2004, 'F', 756), +(182095, 'Alice', 2004, 'F', 755), +(182096, 'Genevieve', 2004, 'F', 754), +(182097, 'Phoebe', 2004, 'F', 751), +(182098, 'Lesly', 2004, 'F', 747), +(182099, 'Liberty', 2004, 'F', 747), +(182100, 'Madisyn', 2004, 'F', 746), +(182101, 'Teresa', 2004, 'F', 746), +(182102, 'Nyla', 2004, 'F', 745), +(182103, 'Ryleigh', 2004, 'F', 743), +(182104, 'Joselyn', 2004, 'F', 741), +(182105, 'Lucia', 2004, 'F', 741), +(182106, 'Paulina', 2004, 'F', 737), +(182107, 'Maritza', 2004, 'F', 735), +(182108, 'Rosa', 2004, 'F', 733), +(182109, 'Ashleigh', 2004, 'F', 731), +(182110, 'Carolyn', 2004, 'F', 729), +(182111, 'Linda', 2004, 'F', 727), +(182112, 'Regan', 2004, 'F', 726), +(182113, 'Taryn', 2004, 'F', 725), +(182114, 'Gloria', 2004, 'F', 723), +(182115, 'Amya', 2004, 'F', 715), +(182116, 'Lacey', 2004, 'F', 714), +(182117, 'Alexus', 2004, 'F', 712), +(182118, 'Francesca', 2004, 'F', 711), +(182119, 'Dayanara', 2004, 'F', 709), +(182120, 'Lisa', 2004, 'F', 709), +(182121, 'Jaiden', 2004, 'F', 704), +(182122, 'Dana', 2004, 'F', 703), +(182123, 'Krystal', 2004, 'F', 702), +(182124, 'Viviana', 2004, 'F', 702), +(182125, 'Tiana', 2004, 'F', 701), +(182126, 'Elisabeth', 2004, 'F', 700), +(182127, 'Ryan', 2004, 'F', 700), +(182128, 'Kaylin', 2004, 'F', 699), +(182129, 'Cora', 2004, 'F', 698), +(182130, 'Hallie', 2004, 'F', 698), +(182131, 'Cristina', 2004, 'F', 697), +(182132, 'Amari', 2004, 'F', 696), +(182133, 'Virginia', 2004, 'F', 696), +(182134, 'Isabela', 2004, 'F', 694), +(182135, 'Raquel', 2004, 'F', 688), +(182136, 'Noelle', 2004, 'F', 686), +(182137, 'Tabitha', 2004, 'F', 686), +(182138, 'Jenny', 2004, 'F', 685), +(182139, 'Alisha', 2004, 'F', 684), +(182140, 'Larissa', 2004, 'F', 682), +(182141, 'Malia', 2004, 'F', 681), +(182142, 'Whitney', 2004, 'F', 676), +(182143, 'Deanna', 2004, 'F', 674), +(182144, 'Janet', 2004, 'F', 672), +(182145, 'Kaitlynn', 2004, 'F', 669), +(182146, 'Madyson', 2004, 'F', 663), +(182147, 'Kiersten', 2004, 'F', 660), +(182148, 'Elaina', 2004, 'F', 658), +(182149, 'Emilie', 2004, 'F', 658), +(182150, 'Alyson', 2004, 'F', 657), +(182151, 'Jane', 2004, 'F', 657), +(182152, 'Dulce', 2004, 'F', 650), +(182153, 'Nataly', 2004, 'F', 644), +(182154, 'Monique', 2004, 'F', 643), +(182155, 'Kaleigh', 2004, 'F', 641), +(182156, 'Jimena', 2004, 'F', 640), +(182157, 'Lana', 2004, 'F', 640), +(182158, 'Tania', 2004, 'F', 636), +(182159, 'Ayanna', 2004, 'F', 634), +(182160, 'Anya', 2004, 'F', 631), +(182161, 'Emilia', 2004, 'F', 630), +(182162, 'Carla', 2004, 'F', 629), +(182163, 'Carissa', 2004, 'F', 625), +(182164, 'Alanna', 2004, 'F', 623), +(182165, 'Sarai', 2004, 'F', 622), +(182166, 'Macie', 2004, 'F', 620), +(182167, 'Dylan', 2004, 'F', 619), +(182168, 'Renee', 2004, 'F', 619), +(182169, 'Simone', 2004, 'F', 616), +(182170, 'Anika', 2004, 'F', 614), +(182171, 'India', 2004, 'F', 614), +(182172, 'America', 2004, 'F', 612), +(182173, 'Joy', 2004, 'F', 612), +(182174, 'Valentina', 2004, 'F', 611), +(182175, 'Miracle', 2004, 'F', 610), +(182176, 'Jessie', 2004, 'F', 607), +(182177, 'Marlene', 2004, 'F', 605), +(182178, 'Athena', 2004, 'F', 599), +(182179, 'Brielle', 2004, 'F', 599), +(182180, 'Brittney', 2004, 'F', 599), +(182181, 'Lila', 2004, 'F', 599), +(182182, 'Marie', 2004, 'F', 599), +(182183, 'Raegan', 2004, 'F', 597), +(182184, 'Elle', 2004, 'F', 596), +(182185, 'Haleigh', 2004, 'F', 596), +(182186, 'Elisa', 2004, 'F', 593), +(182187, 'Ellen', 2004, 'F', 592), +(182188, 'Justice', 2004, 'F', 592), +(182189, 'Fernanda', 2004, 'F', 591), +(182190, 'Baylee', 2004, 'F', 590), +(182191, 'Laci', 2004, 'F', 588), +(182192, 'Martha', 2004, 'F', 588), +(182193, 'Dominique', 2004, 'F', 587), +(182194, 'Carlie', 2004, 'F', 585), +(182195, 'Johanna', 2004, 'F', 585), +(182196, 'Madilyn', 2004, 'F', 584), +(182197, 'Jaelyn', 2004, 'F', 575), +(182198, 'Tia', 2004, 'F', 575), +(182199, 'Yasmine', 2004, 'F', 572), +(182200, 'Cara', 2004, 'F', 570), +(182201, 'Alessandra', 2004, 'F', 568), +(182202, 'Aileen', 2004, 'F', 567), +(182203, 'Anaya', 2004, 'F', 567), +(182204, 'Carley', 2004, 'F', 567), +(182205, 'Kendal', 2004, 'F', 565), +(182206, 'Maddison', 2004, 'F', 564), +(182207, 'Jaqueline', 2004, 'F', 556), +(182208, 'Marley', 2004, 'F', 556), +(182209, 'Lola', 2004, 'F', 555), +(182210, 'Kristin', 2004, 'F', 554), +(182211, 'Abbigail', 2004, 'F', 553), +(182212, 'Kaley', 2004, 'F', 553), +(182213, 'Lena', 2004, 'F', 553), +(182214, 'Destinee', 2004, 'F', 549), +(182215, 'Teagan', 2004, 'F', 548), +(182216, 'Janessa', 2004, 'F', 544), +(182217, 'Litzy', 2004, 'F', 543), +(182218, 'Lilian', 2004, 'F', 541), +(182219, 'Pamela', 2004, 'F', 538), +(182220, 'Scarlett', 2004, 'F', 538), +(182221, 'Kailee', 2004, 'F', 536), +(182222, 'Trista', 2004, 'F', 535), +(182223, 'Kierra', 2004, 'F', 533), +(182224, 'Ashanti', 2004, 'F', 532), +(182225, 'Kailyn', 2004, 'F', 532), +(182226, 'Isis', 2004, 'F', 531), +(182227, 'Mckayla', 2004, 'F', 531), +(182228, 'Lexie', 2004, 'F', 530), +(182229, 'Haylie', 2004, 'F', 529), +(182230, 'Judith', 2004, 'F', 529), +(182231, 'Irene', 2004, 'F', 528), +(182232, 'Kaya', 2004, 'F', 528), +(182233, 'Kali', 2004, 'F', 527), +(182234, 'Laney', 2004, 'F', 527), +(182235, 'Krista', 2004, 'F', 526), +(182236, 'Janelle', 2004, 'F', 525), +(182237, 'Karissa', 2004, 'F', 522), +(182238, 'Susan', 2004, 'F', 522), +(182239, 'Madelynn', 2004, 'F', 520), +(182240, 'Araceli', 2004, 'F', 519), +(182241, 'Willow', 2004, 'F', 518), +(182242, 'Aspen', 2004, 'F', 516), +(182243, 'Katlyn', 2004, 'F', 515), +(182244, 'Sharon', 2004, 'F', 515), +(182245, 'Zoie', 2004, 'F', 515), +(182246, 'Sonia', 2004, 'F', 514), +(182247, 'Gillian', 2004, 'F', 513), +(182248, 'Maci', 2004, 'F', 512), +(182249, 'Mikaela', 2004, 'F', 512), +(182250, 'Precious', 2004, 'F', 512), +(182251, 'Sylvia', 2004, 'F', 512), +(182252, 'Helena', 2004, 'F', 511), +(182253, 'Cristal', 2004, 'F', 510), +(182254, 'Maia', 2004, 'F', 510), +(182255, 'Yadira', 2004, 'F', 510), +(182256, 'Cheyanne', 2004, 'F', 507), +(182257, 'Presley', 2004, 'F', 507), +(182258, 'Abbey', 2004, 'F', 504), +(182259, 'Charity', 2004, 'F', 504), +(182260, 'Kaelyn', 2004, 'F', 502), +(182261, 'Tamara', 2004, 'F', 502), +(182262, 'Janiyah', 2004, 'F', 501), +(182263, 'Abbie', 2004, 'F', 500), +(182264, 'Lillie', 2004, 'F', 497), +(182265, 'Marilyn', 2004, 'F', 496), +(182266, 'Thalia', 2004, 'F', 494), +(182267, 'Harmony', 2004, 'F', 492), +(182268, 'Gina', 2004, 'F', 491), +(182269, 'Tyler', 2004, 'F', 491), +(182270, 'Janae', 2004, 'F', 490), +(182271, 'Kasey', 2004, 'F', 487), +(182272, 'Sherlyn', 2004, 'F', 487), +(182273, 'Arely', 2004, 'F', 484), +(182274, 'Hayden', 2004, 'F', 483), +(182275, 'Karlee', 2004, 'F', 482), +(182276, 'Mariela', 2004, 'F', 481), +(182277, 'Melany', 2004, 'F', 481), +(182278, 'Skyla', 2004, 'F', 481), +(182279, 'Violet', 2004, 'F', 481), +(182280, 'Adeline', 2004, 'F', 479), +(182281, 'Daphne', 2004, 'F', 476), +(182282, 'Norah', 2004, 'F', 476), +(182283, 'Gwendolyn', 2004, 'F', 475), +(182284, 'Deja', 2004, 'F', 474), +(182285, 'Gisselle', 2004, 'F', 474), +(182286, 'Ally', 2004, 'F', 473), +(182287, 'Delilah', 2004, 'F', 473), +(182288, 'Meagan', 2004, 'F', 473), +(182289, 'Amani', 2004, 'F', 468), +(182290, 'Shaniya', 2004, 'F', 468), +(182291, 'Jaida', 2004, 'F', 467), +(182292, 'Lorena', 2004, 'F', 467), +(182293, 'Luz', 2004, 'F', 466), +(182294, 'Mayra', 2004, 'F', 465), +(182295, 'Angelique', 2004, 'F', 461), +(182296, 'Noemi', 2004, 'F', 461), +(182297, 'Macey', 2004, 'F', 458), +(182298, 'Estrella', 2004, 'F', 457), +(182299, 'Amara', 2004, 'F', 456), +(182300, 'Alma', 2004, 'F', 452), +(182301, 'Sienna', 2004, 'F', 452), +(182302, 'Lesley', 2004, 'F', 451), +(182303, 'Eve', 2004, 'F', 450), +(182304, 'Roselyn', 2004, 'F', 449), +(182305, 'Rubi', 2004, 'F', 448), +(182306, 'Saniya', 2004, 'F', 448), +(182307, 'Lia', 2004, 'F', 447), +(182308, 'Karlie', 2004, 'F', 445), +(182309, 'Lea', 2004, 'F', 445), +(182310, 'Bailee', 2004, 'F', 442), +(182311, 'Ingrid', 2004, 'F', 442), +(182312, 'Jacquelyn', 2004, 'F', 442), +(182313, 'Jolie', 2004, 'F', 440), +(182314, 'Nathalie', 2004, 'F', 438), +(182315, 'Rhiannon', 2004, 'F', 438), +(182316, 'Charlize', 2004, 'F', 436), +(182317, 'Lizeth', 2004, 'F', 435), +(182318, 'Melina', 2004, 'F', 434), +(182319, 'Dayana', 2004, 'F', 433), +(182320, 'Reyna', 2004, 'F', 433), +(182321, 'Carlee', 2004, 'F', 432), +(182322, 'Kenya', 2004, 'F', 432), +(182323, 'Tiara', 2004, 'F', 432), +(182324, 'Stacy', 2004, 'F', 431), +(182325, 'Tanya', 2004, 'F', 430), +(182326, 'Julianne', 2004, 'F', 429), +(182327, 'Kaila', 2004, 'F', 429), +(182328, 'Kennedi', 2004, 'F', 429), +(182329, 'Deborah', 2004, 'F', 427), +(182330, 'Frances', 2004, 'F', 427), +(182331, 'Kelsie', 2004, 'F', 427), +(182332, 'Mara', 2004, 'F', 427), +(182333, 'Danna', 2004, 'F', 426), +(182334, 'Arielle', 2004, 'F', 424), +(182335, 'Kenzie', 2004, 'F', 424), +(182336, 'Tess', 2004, 'F', 424), +(182337, 'Emmalee', 2004, 'F', 423), +(182338, 'Jamya', 2004, 'F', 423), +(182339, 'Penelope', 2004, 'F', 423), +(182340, 'Regina', 2004, 'F', 423), +(182341, 'Barbara', 2004, 'F', 422), +(182342, 'Juliet', 2004, 'F', 422), +(182343, 'Amira', 2004, 'F', 419), +(182344, 'Clare', 2004, 'F', 419), +(182345, 'Jazlyn', 2004, 'F', 419), +(182346, 'Paula', 2004, 'F', 419), +(182347, 'Jazmyn', 2004, 'F', 418), +(182348, 'Kaylynn', 2004, 'F', 417), +(182349, 'Brandy', 2004, 'F', 416), +(182350, 'Aisha', 2004, 'F', 415), +(182351, 'Aimee', 2004, 'F', 414), +(182352, 'Lilliana', 2004, 'F', 414), +(182353, 'Parker', 2004, 'F', 414), +(182354, 'Elaine', 2004, 'F', 413), +(182355, 'Ansley', 2004, 'F', 412), +(182356, 'Cassie', 2004, 'F', 412), +(182357, 'Ashton', 2004, 'F', 411), +(182358, 'Haven', 2004, 'F', 411), +(182359, 'Jaylin', 2004, 'F', 411), +(182360, 'London', 2004, 'F', 411), +(182361, 'Brandi', 2004, 'F', 410), +(182362, 'Kayley', 2004, 'F', 410), +(182363, 'Theresa', 2004, 'F', 410), +(182364, 'Zaria', 2004, 'F', 408), +(182365, 'Jaclyn', 2004, 'F', 407), +(182366, 'Justine', 2004, 'F', 407), +(182367, 'Alena', 2004, 'F', 406), +(182368, 'Celia', 2004, 'F', 406), +(182369, 'Juliette', 2004, 'F', 406), +(182370, 'Sanaa', 2004, 'F', 406), +(182371, 'Taliyah', 2004, 'F', 406), +(182372, 'Sydnee', 2004, 'F', 405), +(182373, 'Hazel', 2004, 'F', 404), +(182374, 'Mariam', 2004, 'F', 404), +(182375, 'Ann', 2004, 'F', 402), +(182376, 'Aria', 2004, 'F', 402), +(182377, 'Edith', 2004, 'F', 402), +(182378, 'Giovanna', 2004, 'F', 401), +(182379, 'Quinn', 2004, 'F', 401), +(182380, 'Aiyana', 2004, 'F', 398), +(182381, 'Kaylyn', 2004, 'F', 396), +(182382, 'Marianna', 2004, 'F', 395), +(182383, 'Hana', 2004, 'F', 393), +(182384, 'Hadley', 2004, 'F', 392), +(182385, 'Karli', 2004, 'F', 390), +(182386, 'Shyanne', 2004, 'F', 390), +(182387, 'Annette', 2004, 'F', 389), +(182388, 'Aleah', 2004, 'F', 387), +(182389, 'Cecelia', 2004, 'F', 386), +(182390, 'Taniya', 2004, 'F', 385), +(182391, 'Kaia', 2004, 'F', 384), +(182392, 'Savanah', 2004, 'F', 383), +(182393, 'Alisa', 2004, 'F', 382), +(182394, 'Colleen', 2004, 'F', 382), +(182395, 'Monserrat', 2004, 'F', 382), +(182396, 'Tyra', 2004, 'F', 382), +(182397, 'Yazmin', 2004, 'F', 382), +(182398, 'Kya', 2004, 'F', 380), +(182399, 'Felicity', 2004, 'F', 379), +(182400, 'Greta', 2004, 'F', 379), +(182401, 'Rowan', 2004, 'F', 379), +(182402, 'Maeve', 2004, 'F', 378), +(182403, 'Tatyana', 2004, 'F', 377), +(182404, 'Tianna', 2004, 'F', 375), +(182405, 'Rosemary', 2004, 'F', 374), +(182406, 'Ayla', 2004, 'F', 372), +(182407, 'Jaidyn', 2004, 'F', 372), +(182408, 'Damaris', 2004, 'F', 371), +(182409, 'Lyric', 2004, 'F', 371), +(182410, 'Aracely', 2004, 'F', 370), +(182411, 'Breana', 2004, 'F', 370), +(182412, 'Hailie', 2004, 'F', 370), +(182413, 'Liana', 2004, 'F', 370), +(182414, 'Ryann', 2004, 'F', 370), +(182415, 'Adrienne', 2004, 'F', 369), +(182416, 'Luna', 2004, 'F', 369), +(182417, 'Elyse', 2004, 'F', 368), +(182418, 'Chasity', 2004, 'F', 367), +(182419, 'Annabella', 2004, 'F', 366), +(182420, 'Aubree', 2004, 'F', 366), +(182421, 'Frida', 2004, 'F', 366), +(182422, 'Ayana', 2004, 'F', 364), +(182423, 'Carina', 2004, 'F', 363), +(182424, 'Kaliyah', 2004, 'F', 361), +(182425, 'Amiya', 2004, 'F', 360), +(182426, 'Saige', 2004, 'F', 360), +(182427, 'Lara', 2004, 'F', 359), +(182428, 'Rebeca', 2004, 'F', 359), +(182429, 'Eileen', 2004, 'F', 358), +(182430, 'Maura', 2004, 'F', 357), +(182431, 'Chelsey', 2004, 'F', 356), +(182432, 'Laurel', 2004, 'F', 355), +(182433, 'Nya', 2004, 'F', 355), +(182434, 'Kayden', 2004, 'F', 354), +(182435, 'Hunter', 2004, 'F', 353), +(182436, 'Leticia', 2004, 'F', 353), +(182437, 'Princess', 2004, 'F', 352), +(182438, 'Corinne', 2004, 'F', 351), +(182439, 'Tina', 2004, 'F', 351), +(182440, 'Annalise', 2004, 'F', 350), +(182441, 'Stephany', 2004, 'F', 350), +(182442, 'Esperanza', 2004, 'F', 349), +(182443, 'Brisa', 2004, 'F', 348), +(182444, 'Chaya', 2004, 'F', 348), +(182445, 'Gia', 2004, 'F', 348), +(182446, 'Cali', 2004, 'F', 346), +(182447, 'Toni', 2004, 'F', 346), +(182448, 'Yareli', 2004, 'F', 346), +(182449, 'Joyce', 2004, 'F', 344), +(182450, 'Leanna', 2004, 'F', 344), +(182451, 'Micah', 2004, 'F', 344), +(182452, 'Jakayla', 2004, 'F', 343), +(182453, 'Aliya', 2004, 'F', 342), +(182454, 'Jaylynn', 2004, 'F', 342), +(182455, 'Devin', 2004, 'F', 341), +(182456, 'Karly', 2004, 'F', 341), +(182457, 'Catalina', 2004, 'F', 340), +(182458, 'Maribel', 2004, 'F', 339), +(182459, 'Meadow', 2004, 'F', 339), +(182460, 'Abigayle', 2004, 'F', 337), +(182461, 'Jewel', 2004, 'F', 337), +(182462, 'Jaylene', 2004, 'F', 335), +(182463, 'Keely', 2004, 'F', 335), +(182464, 'Nichole', 2004, 'F', 335), +(182465, 'Evelin', 2004, 'F', 334), +(182466, 'Shaylee', 2004, 'F', 334), +(182467, 'Kayli', 2004, 'F', 333), +(182468, 'Aliza', 2004, 'F', 332), +(182469, 'Aryanna', 2004, 'F', 332), +(182470, 'Lizette', 2004, 'F', 332), +(182471, 'Mollie', 2004, 'F', 332), +(182472, 'Rayna', 2004, 'F', 332), +(182473, 'Cayla', 2004, 'F', 331), +(182474, 'Donna', 2004, 'F', 331), +(182475, 'Antonia', 2004, 'F', 329), +(182476, 'Shea', 2004, 'F', 329), +(182477, 'Kianna', 2004, 'F', 328), +(182478, 'Myah', 2004, 'F', 326), +(182479, 'Yvette', 2004, 'F', 324), +(182480, 'Joslyn', 2004, 'F', 323), +(182481, 'Katharine', 2004, 'F', 323), +(182482, 'Laisha', 2004, 'F', 323), +(182483, 'Shyann', 2004, 'F', 323), +(182484, 'Jaliyah', 2004, 'F', 322), +(182485, 'Mattie', 2004, 'F', 321), +(182486, 'Tayler', 2004, 'F', 321), +(182487, 'Lainey', 2004, 'F', 320), +(182488, 'Campbell', 2004, 'F', 318), +(182489, 'Kenna', 2004, 'F', 318), +(182490, 'Raina', 2004, 'F', 318), +(182491, 'Celine', 2004, 'F', 317), +(182492, 'Sandy', 2004, 'F', 317), +(182493, 'Shayna', 2004, 'F', 317), +(182494, 'Jacey', 2004, 'F', 315), +(182495, 'Sheila', 2004, 'F', 315), +(182496, 'Iliana', 2004, 'F', 313), +(182497, 'Kimora', 2004, 'F', 312), +(182498, 'Magdalena', 2004, 'F', 312), +(182499, 'Yoselin', 2004, 'F', 312), +(182500, 'Taniyah', 2004, 'F', 311), +(182501, 'Carrie', 2004, 'F', 310), +(182502, 'Hillary', 2004, 'F', 310), +(182503, 'Micaela', 2004, 'F', 310), +(182504, 'Salma', 2004, 'F', 309), +(182505, 'Elsa', 2004, 'F', 308), +(182506, 'Essence', 2004, 'F', 308), +(182507, 'Jenifer', 2004, 'F', 308), +(182508, 'Amiyah', 2004, 'F', 307), +(182509, 'Candace', 2004, 'F', 307), +(182510, 'Ebony', 2004, 'F', 307), +(182511, 'Jalyn', 2004, 'F', 307), +(182512, 'Marlee', 2004, 'F', 305), +(182513, 'Christian', 2004, 'F', 304), +(182514, 'Alysa', 2004, 'F', 302), +(182515, 'Amaris', 2004, 'F', 301), +(182516, 'Halie', 2004, 'F', 301), +(182517, 'Libby', 2004, 'F', 301), +(182518, 'Madalynn', 2004, 'F', 301), +(182519, 'Alia', 2004, 'F', 300), +(182520, 'Dalia', 2004, 'F', 300), +(182521, 'Ciera', 2004, 'F', 298), +(182522, 'Makena', 2004, 'F', 297), +(182523, 'Galilea', 2004, 'F', 296), +(182524, 'Stacey', 2004, 'F', 296), +(182525, 'Xiomara', 2004, 'F', 296), +(182526, 'Desirae', 2004, 'F', 295), +(182527, 'Marin', 2004, 'F', 295), +(182528, 'Destiney', 2004, 'F', 294), +(182529, 'Reina', 2004, 'F', 294), +(182530, 'Abril', 2004, 'F', 293), +(182531, 'Amelie', 2004, 'F', 292), +(182532, 'Ashly', 2004, 'F', 292), +(182533, 'Jasmyn', 2004, 'F', 292), +(182534, 'Moriah', 2004, 'F', 292), +(182535, 'Patience', 2004, 'F', 292), +(182536, 'Ada', 2004, 'F', 291), +(182537, 'Joana', 2004, 'F', 291), +(182538, 'Mandy', 2004, 'F', 291), +(182539, 'Susana', 2004, 'F', 291), +(182540, 'Devon', 2004, 'F', 290), +(182541, 'Annabel', 2004, 'F', 289), +(182542, 'Carol', 2004, 'F', 289), +(182543, 'Paloma', 2004, 'F', 289), +(182544, 'Dorothy', 2004, 'F', 288), +(182545, 'Giana', 2004, 'F', 288), +(182546, 'Katarina', 2004, 'F', 287), +(182547, 'Nicolette', 2004, 'F', 287), +(182548, 'Shreya', 2004, 'F', 287), +(182549, 'Areli', 2004, 'F', 286), +(182550, 'Graciela', 2004, 'F', 286), +(182551, 'Aubrie', 2004, 'F', 285), +(182552, 'Isabell', 2004, 'F', 285), +(182553, 'Nikki', 2004, 'F', 285), +(182554, 'Rocio', 2004, 'F', 285), +(182555, 'Blanca', 2004, 'F', 284), +(182556, 'Iyanna', 2004, 'F', 284), +(182557, 'Janice', 2004, 'F', 284), +(182558, 'Karley', 2004, 'F', 284), +(182559, 'Lucille', 2004, 'F', 284), +(182560, 'Ali', 2004, 'F', 282), +(182561, 'Calista', 2004, 'F', 282), +(182562, 'Fabiola', 2004, 'F', 282), +(182563, 'Kaiya', 2004, 'F', 282), +(182564, 'Kathy', 2004, 'F', 282), +(182565, 'Diya', 2004, 'F', 281), +(182566, 'Katelin', 2004, 'F', 281), +(182567, 'Lacie', 2004, 'F', 281), +(182568, 'Madisen', 2004, 'F', 281), +(182569, 'Yuliana', 2004, 'F', 281), +(182570, 'Felicia', 2004, 'F', 280), +(182571, 'Elissa', 2004, 'F', 279), +(182572, 'Kaylah', 2004, 'F', 279), +(182573, 'Phoenix', 2004, 'F', 279), +(182574, 'Abigale', 2004, 'F', 278), +(182575, 'Aryana', 2004, 'F', 277), +(182576, 'Belen', 2004, 'F', 276), +(182577, 'Mina', 2004, 'F', 276), +(182578, 'Gretchen', 2004, 'F', 275), +(182579, 'Harper', 2004, 'F', 274), +(182580, 'Lina', 2004, 'F', 274), +(182581, 'Treasure', 2004, 'F', 274), +(182582, 'Aleena', 2004, 'F', 273), +(182583, 'Elyssa', 2004, 'F', 273), +(182584, 'Lacy', 2004, 'F', 273), +(182585, 'Saniyah', 2004, 'F', 273), +(182586, 'Sarahi', 2004, 'F', 273), +(182587, 'Iyana', 2004, 'F', 272), +(182588, 'Savana', 2004, 'F', 271), +(182589, 'Addyson', 2004, 'F', 270), +(182590, 'Jaycee', 2004, 'F', 270), +(182591, 'Amina', 2004, 'F', 269), +(182592, 'Devyn', 2004, 'F', 269), +(182593, 'Diane', 2004, 'F', 269), +(182594, 'Noelia', 2004, 'F', 269), +(182595, 'Anissa', 2004, 'F', 268), +(182596, 'Emerson', 2004, 'F', 268), +(182597, 'Kasandra', 2004, 'F', 268), +(182598, 'Mira', 2004, 'F', 268), +(182599, 'Reilly', 2004, 'F', 268), +(182600, 'Anita', 2004, 'F', 266), +(182601, 'Keyla', 2004, 'F', 266), +(182602, 'Maleah', 2004, 'F', 266), +(182603, 'Rhea', 2004, 'F', 266), +(182604, 'Bryn', 2004, 'F', 265), +(182605, 'Camilla', 2004, 'F', 265), +(182606, 'Jaylyn', 2004, 'F', 265), +(182607, 'Karis', 2004, 'F', 265), +(182608, 'Natalee', 2004, 'F', 265), +(182609, 'Aylin', 2004, 'F', 264), +(182610, 'Sally', 2004, 'F', 264), +(182611, 'Gracelyn', 2004, 'F', 263), +(182612, 'Kenia', 2004, 'F', 263), +(182613, 'Alize', 2004, 'F', 262), +(182614, 'Brianne', 2004, 'F', 262), +(182615, 'Chana', 2004, 'F', 261), +(182616, 'Chanel', 2004, 'F', 261), +(182617, 'Jaylee', 2004, 'F', 261), +(182618, 'Destini', 2004, 'F', 260), +(182619, 'Lyndsey', 2004, 'F', 260), +(182620, 'Maliyah', 2004, 'F', 260), +(182621, 'Journey', 2004, 'F', 259), +(182622, 'Margarita', 2004, 'F', 259), +(182623, 'Nathaly', 2004, 'F', 259), +(182624, 'Abagail', 2004, 'F', 258), +(182625, 'Beatriz', 2004, 'F', 258), +(182626, 'Kelli', 2004, 'F', 258), +(182627, 'Christiana', 2004, 'F', 257), +(182628, 'Joelle', 2004, 'F', 257), +(182629, 'Jailyn', 2004, 'F', 256), +(182630, 'Kallie', 2004, 'F', 256), +(182631, 'Lilia', 2004, 'F', 256), +(182632, 'Nyasia', 2004, 'F', 256), +(182633, 'Astrid', 2004, 'F', 255), +(182634, 'Jackeline', 2004, 'F', 255), +(182635, 'Jaime', 2004, 'F', 255), +(182636, 'Maren', 2004, 'F', 255), +(182637, 'Maryam', 2004, 'F', 255), +(182638, 'Miah', 2004, 'F', 255), +(182639, 'Bria', 2004, 'F', 254), +(182640, 'Jayleen', 2004, 'F', 254), +(182641, 'Livia', 2004, 'F', 254), +(182642, 'Mireya', 2004, 'F', 254), +(182643, 'Tracy', 2004, 'F', 254), +(182644, 'Janiah', 2004, 'F', 253), +(182645, 'Sydnie', 2004, 'F', 253), +(182646, 'Melisa', 2004, 'F', 252), +(182647, 'Robin', 2004, 'F', 252), +(182648, 'Ashtyn', 2004, 'F', 251), +(182649, 'Gwyneth', 2004, 'F', 251), +(182650, 'Citlali', 2004, 'F', 250), +(182651, 'Jaylen', 2004, 'F', 250), +(182652, 'Jana', 2004, 'F', 249), +(182653, 'Jazmyne', 2004, 'F', 249), +(182654, 'Robyn', 2004, 'F', 249), +(182655, 'Tamya', 2004, 'F', 249), +(182656, 'Taya', 2004, 'F', 249), +(182657, 'Anabel', 2004, 'F', 248), +(182658, 'Kourtney', 2004, 'F', 248), +(182659, 'Lorelei', 2004, 'F', 248), +(182660, 'Riya', 2004, 'F', 248), +(182661, 'Delia', 2004, 'F', 247), +(182662, 'Sydni', 2004, 'F', 247), +(182663, 'Zariah', 2004, 'F', 247), +(182664, 'Lexus', 2004, 'F', 246), +(182665, 'Angeles', 2004, 'F', 245), +(182666, 'Dasia', 2004, 'F', 244), +(182667, 'Arlene', 2004, 'F', 243), +(182668, 'Dania', 2004, 'F', 243), +(182669, 'Dianna', 2004, 'F', 243), +(182670, 'Ericka', 2004, 'F', 243), +(182671, 'Kaci', 2004, 'F', 243), +(182672, 'Roxana', 2004, 'F', 243), +(182673, 'Kalyn', 2004, 'F', 242), +(182674, 'Yaritza', 2004, 'F', 242), +(182675, 'Alex', 2004, 'F', 241), +(182676, 'Averie', 2004, 'F', 241), +(182677, 'Carli', 2004, 'F', 241), +(182678, 'Christa', 2004, 'F', 241), +(182679, 'Drew', 2004, 'F', 240), +(182680, 'Selina', 2004, 'F', 240), +(182681, 'Shirley', 2004, 'F', 240), +(182682, 'Katy', 2004, 'F', 239), +(182683, 'Yessenia', 2004, 'F', 239), +(182684, 'Jalynn', 2004, 'F', 238), +(182685, 'Samira', 2004, 'F', 238), +(182686, 'Makaila', 2004, 'F', 237), +(182687, 'Montana', 2004, 'F', 237), +(182688, 'Carson', 2004, 'F', 236), +(182689, 'Casandra', 2004, 'F', 236), +(182690, 'Darlene', 2004, 'F', 236), +(182691, 'Estefania', 2004, 'F', 236), +(182692, 'Heidy', 2004, 'F', 236), +(182693, 'Miya', 2004, 'F', 236), +(182694, 'Natalya', 2004, 'F', 236), +(182695, 'Chase', 2004, 'F', 235), +(182696, 'Kaylen', 2004, 'F', 235), +(182697, 'Silvia', 2004, 'F', 235), +(182698, 'Trisha', 2004, 'F', 235), +(182699, 'Beatrice', 2004, 'F', 234), +(182700, 'Gabriel', 2004, 'F', 234), +(182701, 'Johana', 2004, 'F', 234), +(182702, 'Lisette', 2004, 'F', 234), +(182703, 'Luisa', 2004, 'F', 234), +(182704, 'Unique', 2004, 'F', 234), +(182705, 'Janya', 2004, 'F', 233), +(182706, 'Alexandrea', 2004, 'F', 232), +(182707, 'Bryana', 2004, 'F', 232), +(182708, 'Deasia', 2004, 'F', 232), +(182709, 'Kinley', 2004, 'F', 232), +(182710, 'Angeline', 2004, 'F', 231), +(182711, 'Berenice', 2004, 'F', 231), +(182712, 'Cherish', 2004, 'F', 231), +(182713, 'Ireland', 2004, 'F', 231), +(182714, 'Maryjane', 2004, 'F', 230), +(182715, 'Christy', 2004, 'F', 228), +(182716, 'Kinsey', 2004, 'F', 228), +(182717, 'Alani', 2004, 'F', 227), +(182718, 'Armani', 2004, 'F', 227), +(182719, 'Caleigh', 2004, 'F', 227), +(182720, 'Denisse', 2004, 'F', 227), +(182721, 'Celina', 2004, 'F', 226), +(182722, 'Myra', 2004, 'F', 226), +(182723, 'Anabelle', 2004, 'F', 225), +(182724, 'Hayleigh', 2004, 'F', 225), +(182725, 'Kacie', 2004, 'F', 225), +(182726, 'Coral', 2004, 'F', 224), +(182727, 'Jaelynn', 2004, 'F', 224), +(182728, 'Sariah', 2004, 'F', 224), +(182729, 'Sky', 2004, 'F', 224), +(182730, 'Neha', 2004, 'F', 223), +(182731, 'Nyah', 2004, 'F', 223), +(182732, 'Yajaira', 2004, 'F', 223), +(182733, 'Charlie', 2004, 'F', 222), +(182734, 'Eryn', 2004, 'F', 222), +(182735, 'Janie', 2004, 'F', 222), +(182736, 'Jolene', 2004, 'F', 222), +(182737, 'Lourdes', 2004, 'F', 222), +(182738, 'Yahaira', 2004, 'F', 222), +(182739, 'Roxanne', 2004, 'F', 221), +(182740, 'Sarina', 2004, 'F', 221), +(182741, 'Sonya', 2004, 'F', 221), +(182742, 'Belinda', 2004, 'F', 220), +(182743, 'Emelia', 2004, 'F', 220), +(182744, 'Jazlynn', 2004, 'F', 220), +(182745, 'Kellie', 2004, 'F', 220), +(182746, 'Rachelle', 2004, 'F', 220), +(182747, 'Triniti', 2004, 'F', 220), +(182748, 'Vanesa', 2004, 'F', 220), +(182749, 'Keila', 2004, 'F', 219), +(182750, 'Mckinley', 2004, 'F', 219), +(182751, 'Myla', 2004, 'F', 219), +(182752, 'Reece', 2004, 'F', 219), +(182753, 'Asha', 2004, 'F', 218), +(182754, 'Averi', 2004, 'F', 218), +(182755, 'Karime', 2004, 'F', 218), +(182756, 'Melinda', 2004, 'F', 218), +(182757, 'Estefani', 2004, 'F', 217), +(182758, 'Alannah', 2004, 'F', 216), +(182759, 'Briley', 2004, 'F', 216), +(182760, 'Jacklyn', 2004, 'F', 216), +(182761, 'Loren', 2004, 'F', 216), +(182762, 'Marlen', 2004, 'F', 216), +(182763, 'Shyla', 2004, 'F', 216), +(182764, 'Tristen', 2004, 'F', 216), +(182765, 'Arabella', 2004, 'F', 215), +(182766, 'Rita', 2004, 'F', 215), +(182767, 'Tierra', 2004, 'F', 215), +(182768, 'Elana', 2004, 'F', 214), +(182769, 'Randi', 2004, 'F', 214), +(182770, 'Candice', 2004, 'F', 213), +(182771, 'Cloe', 2004, 'F', 213), +(182772, 'Kacey', 2004, 'F', 213), +(182773, 'Sade', 2004, 'F', 213), +(182774, 'Eunice', 2004, 'F', 212), +(182775, 'Kendyl', 2004, 'F', 212), +(182776, 'Kristine', 2004, 'F', 212), +(182777, 'Zion', 2004, 'F', 212), +(182778, 'Adelaide', 2004, 'F', 211), +(182779, 'Jena', 2004, 'F', 211), +(182780, 'Yolanda', 2004, 'F', 211), +(182781, 'Anjali', 2004, 'F', 210), +(182782, 'Baby', 2004, 'F', 210), +(182783, 'Jaci', 2004, 'F', 210), +(182784, 'Yvonne', 2004, 'F', 210), +(182785, 'Laniya', 2004, 'F', 209), +(182786, 'Leyla', 2004, 'F', 209), +(182787, 'Nathalia', 2004, 'F', 209), +(182788, 'Norma', 2004, 'F', 209), +(182789, 'Tristan', 2004, 'F', 209), +(182790, 'Elsie', 2004, 'F', 208), +(182791, 'Joseline', 2004, 'F', 208), +(182792, 'Lyla', 2004, 'F', 208), +(182793, 'Marian', 2004, 'F', 208), +(182794, 'Anisa', 2004, 'F', 207), +(182795, 'Bridgette', 2004, 'F', 207), +(182796, 'Emery', 2004, 'F', 207), +(182797, 'Lilianna', 2004, 'F', 207), +(182798, 'Rileigh', 2004, 'F', 207), +(182799, 'Karyme', 2004, 'F', 206), +(182800, 'Katerina', 2004, 'F', 206), +(182801, 'Lisbeth', 2004, 'F', 206), +(182802, 'Makiya', 2004, 'F', 206), +(182803, 'Marcela', 2004, 'F', 206), +(182804, 'Amirah', 2004, 'F', 205), +(182805, 'Cailyn', 2004, 'F', 205), +(182806, 'Caitlynn', 2004, 'F', 205), +(182807, 'Juanita', 2004, 'F', 205), +(182808, 'Tatianna', 2004, 'F', 205), +(182809, 'Danica', 2004, 'F', 204), +(182810, 'Estella', 2004, 'F', 204), +(182811, 'Jayde', 2004, 'F', 204), +(182812, 'Winter', 2004, 'F', 204), +(182813, 'Alexys', 2004, 'F', 203), +(182814, 'Alysha', 2004, 'F', 203), +(182815, 'Carleigh', 2004, 'F', 203), +(182816, 'Elliana', 2004, 'F', 203), +(182817, 'Estefany', 2004, 'F', 203), +(182818, 'Samaria', 2004, 'F', 203), +(182819, 'Alaysia', 2004, 'F', 202), +(182820, 'Charlene', 2004, 'F', 202), +(182821, 'Grecia', 2004, 'F', 202), +(182822, 'Jocelynn', 2004, 'F', 202), +(182823, 'Khloe', 2004, 'F', 202), +(182824, 'Noor', 2004, 'F', 202), +(182825, 'Bonnie', 2004, 'F', 201), +(182826, 'Chiara', 2004, 'F', 201), +(182827, 'Constance', 2004, 'F', 201), +(182828, 'Elisha', 2004, 'F', 201), +(182829, 'Kamila', 2004, 'F', 201), +(182830, 'Rory', 2004, 'F', 201), +(182831, 'Aidan', 2004, 'F', 200), +(182832, 'Danae', 2004, 'F', 200), +(182833, 'Akira', 2004, 'F', 199), +(182834, 'Anabella', 2004, 'F', 199), +(182835, 'Audra', 2004, 'F', 199), +(182836, 'Breonna', 2004, 'F', 199), +(182837, 'Kiya', 2004, 'F', 199), +(182838, 'Lanie', 2004, 'F', 199), +(182839, 'Lidia', 2004, 'F', 199), +(182840, 'Nadine', 2004, 'F', 199), +(182841, 'Azaria', 2004, 'F', 198), +(182842, 'Kylah', 2004, 'F', 198), +(182843, 'Dina', 2004, 'F', 197), +(182844, 'Amalia', 2004, 'F', 196), +(182845, 'Brionna', 2004, 'F', 196), +(182846, 'Giavanna', 2004, 'F', 196), +(182847, 'Hilary', 2004, 'F', 196), +(182848, 'Kaela', 2004, 'F', 196), +(182849, 'Katia', 2004, 'F', 196), +(182850, 'Michele', 2004, 'F', 196), +(182851, 'Pearl', 2004, 'F', 196), +(182852, 'Allyssa', 2004, 'F', 195), +(182853, 'Flor', 2004, 'F', 195), +(182854, 'Kyndall', 2004, 'F', 195), +(182855, 'Rivka', 2004, 'F', 195), +(182856, 'Shaniyah', 2004, 'F', 195), +(182857, 'Aja', 2004, 'F', 194), +(182858, 'Marcella', 2004, 'F', 194), +(182859, 'Joselin', 2004, 'F', 193), +(182860, 'Maegan', 2004, 'F', 193), +(182861, 'Beverly', 2004, 'F', 192), +(182862, 'Mila', 2004, 'F', 192), +(182863, 'Sheridan', 2004, 'F', 192), +(182864, 'Alycia', 2004, 'F', 191), +(182865, 'Charlee', 2004, 'F', 191), +(182866, 'Kayleen', 2004, 'F', 191), +(182867, 'Kelis', 2004, 'F', 191), +(182868, 'Milan', 2004, 'F', 191), +(182869, 'Susanna', 2004, 'F', 191), +(182870, 'Xochitl', 2004, 'F', 191), +(182871, 'Caylee', 2004, 'F', 190), +(182872, 'Harlee', 2004, 'F', 190), +(182873, 'Juana', 2004, 'F', 190), +(182874, 'Ria', 2004, 'F', 190), +(182875, 'Shakira', 2004, 'F', 190), +(182876, 'Shawna', 2004, 'F', 190), +(182877, 'Arlette', 2004, 'F', 189), +(182878, 'Jeanette', 2004, 'F', 189), +(182879, 'Julisa', 2004, 'F', 189), +(182880, 'Lilyana', 2004, 'F', 189), +(182881, 'Lori', 2004, 'F', 189), +(182882, 'Daisha', 2004, 'F', 188), +(182883, 'Dallas', 2004, 'F', 188), +(182884, 'Darby', 2004, 'F', 188), +(182885, 'Sanai', 2004, 'F', 188), +(182886, 'Stefanie', 2004, 'F', 188), +(182887, 'Addie', 2004, 'F', 187), +(182888, 'Cailey', 2004, 'F', 187), +(182889, 'Cameran', 2004, 'F', 187), +(182890, 'Jaquelin', 2004, 'F', 187), +(182891, 'Kalea', 2004, 'F', 187), +(182892, 'Madilynn', 2004, 'F', 187), +(182893, 'Emalee', 2004, 'F', 186), +(182894, 'Gladys', 2004, 'F', 186), +(182895, 'Janaya', 2004, 'F', 186), +(182896, 'Kaniya', 2004, 'F', 186), +(182897, 'Kinsley', 2004, 'F', 186), +(182898, 'Selene', 2004, 'F', 186), +(182899, 'Aida', 2004, 'F', 185), +(182900, 'Delanie', 2004, 'F', 185), +(182901, 'Geraldine', 2004, 'F', 185), +(182902, 'Karsyn', 2004, 'F', 185), +(182903, 'Citlaly', 2004, 'F', 184), +(182904, 'Joanne', 2004, 'F', 184), +(182905, 'Luciana', 2004, 'F', 184), +(182906, 'Niya', 2004, 'F', 184), +(182907, 'Priscila', 2004, 'F', 184), +(182908, 'Brook', 2004, 'F', 183), +(182909, 'Keara', 2004, 'F', 183), +(182910, 'Paisley', 2004, 'F', 183), +(182911, 'Yulissa', 2004, 'F', 183), +(182912, 'Anneliese', 2004, 'F', 182), +(182913, 'Leigha', 2004, 'F', 182), +(182914, 'Siena', 2004, 'F', 182), +(182915, 'Annamarie', 2004, 'F', 181), +(182916, 'Danika', 2004, 'F', 181), +(182917, 'Elianna', 2004, 'F', 181), +(182918, 'Jesse', 2004, 'F', 181), +(182919, 'Xitlali', 2004, 'F', 181), +(182920, 'Jamia', 2004, 'F', 180), +(182921, 'Selah', 2004, 'F', 179), +(182922, 'Zara', 2004, 'F', 179), +(182923, 'Brylee', 2004, 'F', 178), +(182924, 'Carys', 2004, 'F', 178), +(182925, 'Ivette', 2004, 'F', 178), +(182926, 'Abrianna', 2004, 'F', 177), +(182927, 'Jaedyn', 2004, 'F', 177), +(182928, 'Lexis', 2004, 'F', 177), +(182929, 'Shae', 2004, 'F', 177), +(182930, 'Adamaris', 2004, 'F', 176), +(182931, 'Aya', 2004, 'F', 176), +(182932, 'Malaysia', 2004, 'F', 176), +(182933, 'Martina', 2004, 'F', 176), +(182934, 'Ananya', 2004, 'F', 175), +(182935, 'Beyonce', 2004, 'F', 175), +(182936, 'Madysen', 2004, 'F', 175), +(182937, 'Melia', 2004, 'F', 175), +(182938, 'Rosalinda', 2004, 'F', 175), +(182939, 'Tayla', 2004, 'F', 175), +(182940, 'Alyssia', 2004, 'F', 174), +(182941, 'Emerald', 2004, 'F', 174), +(182942, 'Valery', 2004, 'F', 174), +(182943, 'Dayna', 2004, 'F', 173), +(182944, 'Demi', 2004, 'F', 173), +(182945, 'Iman', 2004, 'F', 173), +(182946, 'Jania', 2004, 'F', 173), +(182947, 'Kori', 2004, 'F', 173), +(182948, 'Lucero', 2004, 'F', 173), +(182949, 'Stevie', 2004, 'F', 173), +(182950, 'Alora', 2004, 'F', 172), +(182951, 'Jamiya', 2004, 'F', 172), +(182952, 'Kelsi', 2004, 'F', 172), +(182953, 'Emani', 2004, 'F', 171), +(182954, 'Jacob', 2004, 'F', 171), +(182955, 'Adrian', 2004, 'F', 170), +(182956, 'Caydence', 2004, 'F', 170), +(182957, 'Dahlia', 2004, 'F', 170), +(182958, 'Elayna', 2004, 'F', 170), +(182959, 'Janeth', 2004, 'F', 170), +(182960, 'Reanna', 2004, 'F', 170), +(182961, 'Shamya', 2004, 'F', 170), +(182962, 'Malaya', 2004, 'F', 169), +(182963, 'Zainab', 2004, 'F', 169), +(182964, 'Ania', 2004, 'F', 168), +(182965, 'Charley', 2004, 'F', 168), +(182966, 'Finley', 2004, 'F', 168), +(182967, 'Kalie', 2004, 'F', 168), +(182968, 'Noel', 2004, 'F', 168), +(182969, 'Star', 2004, 'F', 168), +(182970, 'Alli', 2004, 'F', 167), +(182971, 'Anastacia', 2004, 'F', 167), +(182972, 'Fantasia', 2004, 'F', 167), +(182973, 'Gracyn', 2004, 'F', 167), +(182974, 'Kameron', 2004, 'F', 167), +(182975, 'Kristy', 2004, 'F', 167), +(182976, 'Lilah', 2004, 'F', 167), +(182977, 'Maranda', 2004, 'F', 167), +(182978, 'Mari', 2004, 'F', 167), +(182979, 'Samya', 2004, 'F', 167), +(182980, 'Yamilet', 2004, 'F', 167), +(182981, 'Arwen', 2004, 'F', 166), +(182982, 'Milagros', 2004, 'F', 166), +(182983, 'Amiah', 2004, 'F', 165), +(182984, 'Annaliese', 2004, 'F', 165), +(182985, 'Annelise', 2004, 'F', 165), +(182986, 'Arionna', 2004, 'F', 165), +(182987, 'Braelyn', 2004, 'F', 165), +(182988, 'Jayme', 2004, 'F', 165), +(182989, 'Kamya', 2004, 'F', 165), +(182990, 'Ryley', 2004, 'F', 165), +(182991, 'Adilene', 2004, 'F', 164), +(182992, 'Dora', 2004, 'F', 164), +(182993, 'Jacie', 2004, 'F', 164), +(182994, 'Jaylah', 2004, 'F', 164), +(182995, 'Judy', 2004, 'F', 164), +(182996, 'Kai', 2004, 'F', 164), +(182997, 'Kaycee', 2004, 'F', 164), +(182998, 'Tammy', 2004, 'F', 164), +(182999, 'Aniah', 2004, 'F', 163), +(183000, 'Briseyda', 2004, 'F', 163), +(183001, 'Georgina', 2004, 'F', 163), +(183002, 'Jersey', 2004, 'F', 163), +(183003, 'Magaly', 2004, 'F', 163), +(183004, 'Aliah', 2004, 'F', 162), +(183005, 'Alysia', 2004, 'F', 162), +(183006, 'Arleth', 2004, 'F', 162), +(183007, 'Bree', 2004, 'F', 162), +(183008, 'Isha', 2004, 'F', 162), +(183009, 'Karolina', 2004, 'F', 162), +(183010, 'Kyndal', 2004, 'F', 162), +(183011, 'Leann', 2004, 'F', 162), +(183012, 'Mason', 2004, 'F', 162), +(183013, 'Montserrat', 2004, 'F', 162), +(183014, 'Nylah', 2004, 'F', 162), +(183015, 'Priya', 2004, 'F', 162), +(183016, 'Bayleigh', 2004, 'F', 161), +(183017, 'Kaytlin', 2004, 'F', 161), +(183018, 'Keeley', 2004, 'F', 161), +(183019, 'Kiarra', 2004, 'F', 161), +(183020, 'Rayne', 2004, 'F', 161), +(183021, 'Abbygail', 2004, 'F', 160), +(183022, 'Amyah', 2004, 'F', 160), +(183023, 'Betzaida', 2004, 'F', 160), +(183024, 'Camden', 2004, 'F', 160), +(183025, 'Janette', 2004, 'F', 160), +(183026, 'Leanne', 2004, 'F', 160), +(183027, 'Leia', 2004, 'F', 160), +(183028, 'Maricela', 2004, 'F', 160), +(183029, 'Rhianna', 2004, 'F', 160), +(183030, 'Arden', 2004, 'F', 159), +(183031, 'Fallon', 2004, 'F', 159), +(183032, 'Grayson', 2004, 'F', 159), +(183033, 'Lillianna', 2004, 'F', 159), +(183034, 'Yasmeen', 2004, 'F', 159), +(183035, 'Aliana', 2004, 'F', 158), +(183036, 'Amaria', 2004, 'F', 158), +(183037, 'Amia', 2004, 'F', 158), +(183038, 'Neveah', 2004, 'F', 158), +(183039, 'Scarlet', 2004, 'F', 158), +(183040, 'Shanya', 2004, 'F', 158), +(183041, 'Viridiana', 2004, 'F', 158), +(183042, 'Yarely', 2004, 'F', 158), +(183043, 'Brinley', 2004, 'F', 157), +(183044, 'Ashlie', 2004, 'F', 156), +(183045, 'Dawn', 2004, 'F', 156), +(183046, 'Destany', 2004, 'F', 156), +(183047, 'Emmy', 2004, 'F', 156), +(183048, 'Nelly', 2004, 'F', 156), +(183049, 'Alliyah', 2004, 'F', 155), +(183050, 'Alyse', 2004, 'F', 155), +(183051, 'Geneva', 2004, 'F', 155), +(183052, 'Giuliana', 2004, 'F', 155), +(183053, 'Karmen', 2004, 'F', 155), +(183054, 'Meaghan', 2004, 'F', 155), +(183055, 'Xitlaly', 2004, 'F', 155), +(183056, 'Colette', 2004, 'F', 154), +(183057, 'Ivana', 2004, 'F', 154), +(183058, 'Jasmyne', 2004, 'F', 154), +(183059, 'Kaili', 2004, 'F', 154), +(183060, 'Betsy', 2004, 'F', 153), +(183061, 'Karleigh', 2004, 'F', 153), +(183062, 'Kayle', 2004, 'F', 153), +(183063, 'Austin', 2004, 'F', 152), +(183064, 'Blair', 2004, 'F', 152), +(183065, 'Gissel', 2004, 'F', 152), +(183066, 'Jacquelin', 2004, 'F', 152), +(183067, 'Jayna', 2004, 'F', 152), +(183068, 'Makala', 2004, 'F', 152), +(183069, 'Maryann', 2004, 'F', 152), +(183070, 'Chyna', 2004, 'F', 151), +(183071, 'Corina', 2004, 'F', 151), +(183072, 'Irma', 2004, 'F', 151), +(183073, 'Lesli', 2004, 'F', 151), +(183074, 'Mae', 2004, 'F', 151), +(183075, 'Roxanna', 2004, 'F', 151), +(183076, 'Shauna', 2004, 'F', 151), +(183077, 'Vianey', 2004, 'F', 151), +(183078, 'Annmarie', 2004, 'F', 150), +(183079, 'Gracey', 2004, 'F', 150), +(183080, 'Kamille', 2004, 'F', 150), +(183081, 'Lailah', 2004, 'F', 150), +(183082, 'Mariyah', 2004, 'F', 150), +(183083, 'Maxine', 2004, 'F', 150), +(183084, 'Sanjana', 2004, 'F', 150), +(183085, 'Sheyla', 2004, 'F', 150), +(183086, 'Thea', 2004, 'F', 150), +(183087, 'Dalila', 2004, 'F', 149), +(183088, 'Harleigh', 2004, 'F', 149), +(183089, 'Harlie', 2004, 'F', 149), +(183090, 'Kyara', 2004, 'F', 149), +(183091, 'Mercy', 2004, 'F', 149), +(183092, 'Nikita', 2004, 'F', 149), +(183093, 'Zaniya', 2004, 'F', 149), +(183094, 'Aiyanna', 2004, 'F', 148), +(183095, 'Anais', 2004, 'F', 148), +(183096, 'Eloise', 2004, 'F', 148), +(183097, 'Jackie', 2004, 'F', 148), +(183098, 'Landry', 2004, 'F', 148), +(183099, 'Makiyah', 2004, 'F', 148), +(183100, 'Mallorie', 2004, 'F', 148), +(183101, 'Michael', 2004, 'F', 148), +(183102, 'Natali', 2004, 'F', 148), +(183103, 'Sloane', 2004, 'F', 148), +(183104, 'Yessica', 2004, 'F', 148), +(183105, 'Aleigha', 2004, 'F', 147), +(183106, 'Ariella', 2004, 'F', 147), +(183107, 'Belle', 2004, 'F', 147), +(183108, 'Cailin', 2004, 'F', 147), +(183109, 'Daria', 2004, 'F', 147), +(183110, 'Gemma', 2004, 'F', 147); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(183111, 'Haily', 2004, 'F', 147), +(183112, 'Justina', 2004, 'F', 147), +(183113, 'Shaina', 2004, 'F', 147), +(183114, 'Kalli', 2004, 'F', 146), +(183115, 'Malena', 2004, 'F', 146), +(183116, 'Raelynn', 2004, 'F', 146), +(183117, 'Adison', 2004, 'F', 145), +(183118, 'Annalisa', 2004, 'F', 145), +(183119, 'Antoinette', 2004, 'F', 145), +(183120, 'Cameryn', 2004, 'F', 145), +(183121, 'Chelsie', 2004, 'F', 145), +(183122, 'Arissa', 2004, 'F', 144), +(183123, 'Cydney', 2004, 'F', 144), +(183124, 'Kalia', 2004, 'F', 144), +(183125, 'Rochelle', 2004, 'F', 144), +(183126, 'Soraya', 2004, 'F', 144), +(183127, 'Ember', 2004, 'F', 143), +(183128, 'Kalani', 2004, 'F', 143), +(183129, 'Kari', 2004, 'F', 143), +(183130, 'Katlynn', 2004, 'F', 143), +(183131, 'Makyla', 2004, 'F', 143), +(183132, 'Simran', 2004, 'F', 143), +(183133, 'Suzanne', 2004, 'F', 143), +(183134, 'Tyanna', 2004, 'F', 143), +(183135, 'Yulisa', 2004, 'F', 143), +(183136, 'Analise', 2004, 'F', 142), +(183137, 'Brookelyn', 2004, 'F', 142), +(183138, 'Raelyn', 2004, 'F', 142), +(183139, 'Kloe', 2004, 'F', 141), +(183140, 'Leeann', 2004, 'F', 141), +(183141, 'Millie', 2004, 'F', 141), +(183142, 'Shay', 2004, 'F', 141), +(183143, 'Starr', 2004, 'F', 141), +(183144, 'Katheryn', 2004, 'F', 140), +(183145, 'Lluvia', 2004, 'F', 140), +(183146, 'Maddie', 2004, 'F', 140), +(183147, 'Tehya', 2004, 'F', 140), +(183148, 'Cambria', 2004, 'F', 139), +(183149, 'Chantel', 2004, 'F', 139), +(183150, 'Kaylea', 2004, 'F', 139), +(183151, 'Marjorie', 2004, 'F', 139), +(183152, 'Octavia', 2004, 'F', 139), +(183153, 'Olga', 2004, 'F', 139), +(183154, 'Alanah', 2004, 'F', 138), +(183155, 'Breanne', 2004, 'F', 138), +(183156, 'Hollie', 2004, 'F', 138), +(183157, 'Jaslyn', 2004, 'F', 138), +(183158, 'Kaidence', 2004, 'F', 138), +(183159, 'Tegan', 2004, 'F', 138), +(183160, 'Alyvia', 2004, 'F', 137), +(183161, 'Daija', 2004, 'F', 137), +(183162, 'Jaycie', 2004, 'F', 137), +(183163, 'Jessenia', 2004, 'F', 137), +(183164, 'Makenzi', 2004, 'F', 137), +(183165, 'Nailah', 2004, 'F', 137), +(183166, 'Shira', 2004, 'F', 137), +(183167, 'Adelyn', 2004, 'F', 136), +(183168, 'Betty', 2004, 'F', 136), +(183169, 'Chandler', 2004, 'F', 136), +(183170, 'Cinthia', 2004, 'F', 136), +(183171, 'Connie', 2004, 'F', 136), +(183172, 'Heavenly', 2004, 'F', 136), +(183173, 'Mykayla', 2004, 'F', 136), +(183174, 'Rilee', 2004, 'F', 136), +(183175, 'Shaelyn', 2004, 'F', 136), +(183176, 'Tanisha', 2004, 'F', 136), +(183177, 'Aislinn', 2004, 'F', 135), +(183178, 'Brynna', 2004, 'F', 135), +(183179, 'Emmaline', 2004, 'F', 135), +(183180, 'Ivanna', 2004, 'F', 135), +(183181, 'Jamiyah', 2004, 'F', 135), +(183182, 'Keona', 2004, 'F', 135), +(183183, 'Laken', 2004, 'F', 135), +(183184, 'Rosalie', 2004, 'F', 135), +(183185, 'Serina', 2004, 'F', 135), +(183186, 'Stormy', 2004, 'F', 135), +(183187, 'Vicky', 2004, 'F', 135), +(183188, 'Alexi', 2004, 'F', 134), +(183189, 'Charisma', 2004, 'F', 134), +(183190, 'Ema', 2004, 'F', 134), +(183191, 'Evan', 2004, 'F', 134), +(183192, 'Jamaya', 2004, 'F', 134), +(183193, 'Kristal', 2004, 'F', 134), +(183194, 'Kyah', 2004, 'F', 134), +(183195, 'Lela', 2004, 'F', 134), +(183196, 'Lexy', 2004, 'F', 134), +(183197, 'Lilli', 2004, 'F', 134), +(183198, 'Mackenna', 2004, 'F', 134), +(183199, 'Marisela', 2004, 'F', 134), +(183200, 'Nalani', 2004, 'F', 134), +(183201, 'Shanna', 2004, 'F', 134), +(183202, 'Annemarie', 2004, 'F', 133), +(183203, 'Izabelle', 2004, 'F', 133), +(183204, 'Jamiah', 2004, 'F', 133), +(183205, 'Julieta', 2004, 'F', 133), +(183206, 'Kierstin', 2004, 'F', 133), +(183207, 'Leona', 2004, 'F', 133), +(183208, 'Sequoia', 2004, 'F', 133), +(183209, 'Sonja', 2004, 'F', 133), +(183210, 'Debra', 2004, 'F', 132), +(183211, 'Halee', 2004, 'F', 132), +(183212, 'Khushi', 2004, 'F', 132), +(183213, 'Kierstyn', 2004, 'F', 132), +(183214, 'Lani', 2004, 'F', 132), +(183215, 'Lianna', 2004, 'F', 132), +(183216, 'Rianna', 2004, 'F', 132), +(183217, 'Zaira', 2004, 'F', 132), +(183218, 'Adelina', 2004, 'F', 131), +(183219, 'Cielo', 2004, 'F', 131), +(183220, 'Ginger', 2004, 'F', 131), +(183221, 'Kirstin', 2004, 'F', 131), +(183222, 'Maile', 2004, 'F', 131), +(183223, 'Tristin', 2004, 'F', 131), +(183224, 'Anisha', 2004, 'F', 130), +(183225, 'Ariadna', 2004, 'F', 130), +(183226, 'Cianna', 2004, 'F', 130), +(183227, 'Graci', 2004, 'F', 130), +(183228, 'Kaelin', 2004, 'F', 130), +(183229, 'Kami', 2004, 'F', 130), +(183230, 'Linnea', 2004, 'F', 130), +(183231, 'Maylin', 2004, 'F', 130), +(183232, 'Rayven', 2004, 'F', 130), +(183233, 'Saylor', 2004, 'F', 129), +(183234, 'Yadhira', 2004, 'F', 129), +(183235, 'Ayden', 2004, 'F', 128), +(183236, 'Azariah', 2004, 'F', 128), +(183237, 'Cordelia', 2004, 'F', 128), +(183238, 'Farrah', 2004, 'F', 128), +(183239, 'Janna', 2004, 'F', 128), +(183240, 'Jennie', 2004, 'F', 128), +(183241, 'Kailani', 2004, 'F', 128), +(183242, 'Lorraine', 2004, 'F', 128), +(183243, 'Misty', 2004, 'F', 128), +(183244, 'Pilar', 2004, 'F', 128), +(183245, 'Abygail', 2004, 'F', 127), +(183246, 'Carsyn', 2004, 'F', 127), +(183247, 'Charli', 2004, 'F', 127), +(183248, 'Ilana', 2004, 'F', 127), +(183249, 'Jaya', 2004, 'F', 127), +(183250, 'Samiya', 2004, 'F', 127), +(183251, 'Vivianna', 2004, 'F', 127), +(183252, 'Elysia', 2004, 'F', 126), +(183253, 'Ethan', 2004, 'F', 126), +(183254, 'Gwenyth', 2004, 'F', 126), +(183255, 'Honesty', 2004, 'F', 126), +(183256, 'Kelsea', 2004, 'F', 126), +(183257, 'Lynn', 2004, 'F', 126), +(183258, 'Malak', 2004, 'F', 126), +(183259, 'Markayla', 2004, 'F', 126), +(183260, 'Mindy', 2004, 'F', 126), +(183261, 'Nayely', 2004, 'F', 126), +(183262, 'Amberly', 2004, 'F', 125), +(183263, 'Amie', 2004, 'F', 125), +(183264, 'Andie', 2004, 'F', 125), +(183265, 'Annalee', 2004, 'F', 125), +(183266, 'Ashlin', 2004, 'F', 125), +(183267, 'Avril', 2004, 'F', 125), +(183268, 'Ayleen', 2004, 'F', 125), +(183269, 'Cortney', 2004, 'F', 125), +(183270, 'Izabel', 2004, 'F', 125), +(183271, 'Kailynn', 2004, 'F', 125), +(183272, 'Lynette', 2004, 'F', 125), +(183273, 'Mika', 2004, 'F', 125), +(183274, 'Mikala', 2004, 'F', 125), +(183275, 'Tru', 2004, 'F', 125), +(183276, 'Chantal', 2004, 'F', 124), +(183277, 'Edna', 2004, 'F', 124), +(183278, 'Kaileigh', 2004, 'F', 124), +(183279, 'Malina', 2004, 'F', 124), +(183280, 'Malorie', 2004, 'F', 124), +(183281, 'Moira', 2004, 'F', 124), +(183282, 'Saniah', 2004, 'F', 124), +(183283, 'Vera', 2004, 'F', 124), +(183284, 'Aiden', 2004, 'F', 123), +(183285, 'Ayah', 2004, 'F', 123), +(183286, 'Gwen', 2004, 'F', 123), +(183287, 'Jaila', 2004, 'F', 123), +(183288, 'Malka', 2004, 'F', 123), +(183289, 'Sabina', 2004, 'F', 123), +(183290, 'Zaniyah', 2004, 'F', 123), +(183291, 'Acacia', 2004, 'F', 122), +(183292, 'Eleni', 2004, 'F', 122), +(183293, 'Elly', 2004, 'F', 122), +(183294, 'Evelynn', 2004, 'F', 122), +(183295, 'Lilyan', 2004, 'F', 122), +(183296, 'Milena', 2004, 'F', 122), +(183297, 'Noelani', 2004, 'F', 122), +(183298, 'Sania', 2004, 'F', 122), +(183299, 'Zahra', 2004, 'F', 122), +(183300, 'Dayanna', 2004, 'F', 121), +(183301, 'Joey', 2004, 'F', 121), +(183302, 'Kameryn', 2004, 'F', 121), +(183303, 'Krysta', 2004, 'F', 121), +(183304, 'Lissette', 2004, 'F', 121), +(183305, 'Sofie', 2004, 'F', 121), +(183306, 'Adela', 2004, 'F', 120), +(183307, 'Angelia', 2004, 'F', 120), +(183308, 'Ariyana', 2004, 'F', 120), +(183309, 'Arya', 2004, 'F', 120), +(183310, 'Dafne', 2004, 'F', 120), +(183311, 'Dani', 2004, 'F', 120), +(183312, 'Jadah', 2004, 'F', 120), +(183313, 'Janell', 2004, 'F', 120), +(183314, 'Jill', 2004, 'F', 120), +(183315, 'Joshua', 2004, 'F', 120), +(183316, 'Keanna', 2004, 'F', 120), +(183317, 'Myranda', 2004, 'F', 120), +(183318, 'Sana', 2004, 'F', 120), +(183319, 'Shanice', 2004, 'F', 120), +(183320, 'Ariah', 2004, 'F', 119), +(183321, 'Brissa', 2004, 'F', 119), +(183322, 'Deisy', 2004, 'F', 119), +(183323, 'Emory', 2004, 'F', 119), +(183324, 'Jesenia', 2004, 'F', 119), +(183325, 'Kaleah', 2004, 'F', 119), +(183326, 'Kaydance', 2004, 'F', 119), +(183327, 'Louisa', 2004, 'F', 119), +(183328, 'Niyah', 2004, 'F', 119), +(183329, 'Rian', 2004, 'F', 119), +(183330, 'Soleil', 2004, 'F', 119), +(183331, 'Vianney', 2004, 'F', 119), +(183332, 'Yamileth', 2004, 'F', 119), +(183333, 'Yazmine', 2004, 'F', 119), +(183334, 'Aditi', 2004, 'F', 118), +(183335, 'Angelena', 2004, 'F', 118), +(183336, 'Brigid', 2004, 'F', 118), +(183337, 'Cori', 2004, 'F', 118), +(183338, 'Franchesca', 2004, 'F', 118), +(183339, 'Isela', 2004, 'F', 118), +(183340, 'Keegan', 2004, 'F', 118), +(183341, 'Nakayla', 2004, 'F', 118), +(183342, 'Selma', 2004, 'F', 118), +(183343, 'Shelbie', 2004, 'F', 118), +(183344, 'Addisyn', 2004, 'F', 117), +(183345, 'Alaya', 2004, 'F', 117), +(183346, 'Alexsandra', 2004, 'F', 117), +(183347, 'Azucena', 2004, 'F', 117), +(183348, 'Baylie', 2004, 'F', 117), +(183349, 'Cloey', 2004, 'F', 117), +(183350, 'Farah', 2004, 'F', 117), +(183351, 'Jessi', 2004, 'F', 117), +(183352, 'Makiah', 2004, 'F', 117), +(183353, 'Maryn', 2004, 'F', 117), +(183354, 'Rosalyn', 2004, 'F', 117), +(183355, 'Samiyah', 2004, 'F', 117), +(183356, 'Briseida', 2004, 'F', 116), +(183357, 'Carmella', 2004, 'F', 116), +(183358, 'Cheryl', 2004, 'F', 116), +(183359, 'Griselda', 2004, 'F', 116), +(183360, 'Jessa', 2004, 'F', 116), +(183361, 'Joann', 2004, 'F', 116), +(183362, 'Jorja', 2004, 'F', 116), +(183363, 'Keyana', 2004, 'F', 116), +(183364, 'Leena', 2004, 'F', 116), +(183365, 'Lizet', 2004, 'F', 116), +(183366, 'Lucinda', 2004, 'F', 116), +(183367, 'Marah', 2004, 'F', 116), +(183368, 'Mariel', 2004, 'F', 116), +(183369, 'Monika', 2004, 'F', 116), +(183370, 'Noa', 2004, 'F', 116), +(183371, 'Rosario', 2004, 'F', 116), +(183372, 'Symone', 2004, 'F', 116), +(183373, 'Tasia', 2004, 'F', 116), +(183374, 'Wynter', 2004, 'F', 116), +(183375, 'Alecia', 2004, 'F', 115), +(183376, 'Alexander', 2004, 'F', 115), +(183377, 'Ani', 2004, 'F', 115), +(183378, 'Aysia', 2004, 'F', 115), +(183379, 'Breann', 2004, 'F', 115), +(183380, 'Chyanne', 2004, 'F', 115), +(183381, 'Dixie', 2004, 'F', 115), +(183382, 'Gisela', 2004, 'F', 115), +(183383, 'Ivonne', 2004, 'F', 115), +(183384, 'Katya', 2004, 'F', 115), +(183385, 'Khalia', 2004, 'F', 115), +(183386, 'Lilith', 2004, 'F', 115), +(183387, 'Madelyne', 2004, 'F', 115), +(183388, 'Maiya', 2004, 'F', 115), +(183389, 'Makaela', 2004, 'F', 115), +(183390, 'Analisa', 2004, 'F', 114), +(183391, 'Blake', 2004, 'F', 114), +(183392, 'Brea', 2004, 'F', 114), +(183393, 'Carter', 2004, 'F', 114), +(183394, 'Chesney', 2004, 'F', 114), +(183395, 'Gizelle', 2004, 'F', 114), +(183396, 'Joslynn', 2004, 'F', 114), +(183397, 'Liyah', 2004, 'F', 114), +(183398, 'Liza', 2004, 'F', 114), +(183399, 'Marianne', 2004, 'F', 114), +(183400, 'Melani', 2004, 'F', 114), +(183401, 'Mercedez', 2004, 'F', 114), +(183402, 'Nova', 2004, 'F', 114), +(183403, 'Payten', 2004, 'F', 114), +(183404, 'Shana', 2004, 'F', 114), +(183405, 'Shianne', 2004, 'F', 114), +(183406, 'Aminah', 2004, 'F', 113), +(183407, 'Calli', 2004, 'F', 113), +(183408, 'Charis', 2004, 'F', 113), +(183409, 'Desire', 2004, 'F', 113), +(183410, 'Evangelina', 2004, 'F', 113), +(183411, 'Fayth', 2004, 'F', 113), +(183412, 'Halley', 2004, 'F', 113), +(183413, 'Jacy', 2004, 'F', 113), +(183414, 'Leandra', 2004, 'F', 113), +(183415, 'Neida', 2004, 'F', 113), +(183416, 'Tamyra', 2004, 'F', 113), +(183417, 'Tyla', 2004, 'F', 113), +(183418, 'Adele', 2004, 'F', 112), +(183419, 'Alea', 2004, 'F', 112), +(183420, 'June', 2004, 'F', 112), +(183421, 'Kalynn', 2004, 'F', 112), +(183422, 'Lili', 2004, 'F', 112), +(183423, 'Liv', 2004, 'F', 112), +(183424, 'Marion', 2004, 'F', 112), +(183425, 'Tyana', 2004, 'F', 112), +(183426, 'Abriana', 2004, 'F', 111), +(183427, 'Cate', 2004, 'F', 111), +(183428, 'Darian', 2004, 'F', 111), +(183429, 'Elora', 2004, 'F', 111), +(183430, 'Emmaleigh', 2004, 'F', 111), +(183431, 'Faye', 2004, 'F', 111), +(183432, 'Josselyn', 2004, 'F', 111), +(183433, 'Kalina', 2004, 'F', 111), +(183434, 'William', 2004, 'F', 111), +(183435, 'Yaneli', 2004, 'F', 111), +(183436, 'Alanis', 2004, 'F', 110), +(183437, 'Ariyanna', 2004, 'F', 110), +(183438, 'Bryce', 2004, 'F', 110), +(183439, 'Brynlee', 2004, 'F', 110), +(183440, 'Carmela', 2004, 'F', 110), +(183441, 'Dariana', 2004, 'F', 110), +(183442, 'Gisel', 2004, 'F', 110), +(183443, 'Jodi', 2004, 'F', 110), +(183444, 'Makaylah', 2004, 'F', 110), +(183445, 'Nallely', 2004, 'F', 110), +(183446, 'Shoshana', 2004, 'F', 110), +(183447, 'Alessia', 2004, 'F', 109), +(183448, 'Anai', 2004, 'F', 109), +(183449, 'Ciarra', 2004, 'F', 109), +(183450, 'Dara', 2004, 'F', 109), +(183451, 'Darla', 2004, 'F', 109), +(183452, 'Elli', 2004, 'F', 109), +(183453, 'Evie', 2004, 'F', 109), +(183454, 'Frankie', 2004, 'F', 109), +(183455, 'Hattie', 2004, 'F', 109), +(183456, 'Jenessa', 2004, 'F', 109), +(183457, 'Layne', 2004, 'F', 109), +(183458, 'Lilyanna', 2004, 'F', 109), +(183459, 'Magali', 2004, 'F', 109), +(183460, 'Olyvia', 2004, 'F', 109), +(183461, 'Anyah', 2004, 'F', 108), +(183462, 'Autum', 2004, 'F', 108), +(183463, 'Brookelynn', 2004, 'F', 108), +(183464, 'Cadance', 2004, 'F', 108), +(183465, 'Jocelin', 2004, 'F', 108), +(183466, 'Kamari', 2004, 'F', 108), +(183467, 'Kaytlyn', 2004, 'F', 108), +(183468, 'Kiah', 2004, 'F', 108), +(183469, 'Laniyah', 2004, 'F', 108), +(183470, 'Nakia', 2004, 'F', 108), +(183471, 'Anessa', 2004, 'F', 107), +(183472, 'Cathryn', 2004, 'F', 107), +(183473, 'Darcy', 2004, 'F', 107), +(183474, 'Jianna', 2004, 'F', 107), +(183475, 'Kalista', 2004, 'F', 107), +(183476, 'Keziah', 2004, 'F', 107), +(183477, 'Margot', 2004, 'F', 107), +(183478, 'Mattison', 2004, 'F', 107), +(183479, 'Odalys', 2004, 'F', 107), +(183480, 'Paityn', 2004, 'F', 107), +(183481, 'Promise', 2004, 'F', 107), +(183482, 'Shelbi', 2004, 'F', 107), +(183483, 'Sommer', 2004, 'F', 107), +(183484, 'Taleah', 2004, 'F', 107), +(183485, 'Adrianne', 2004, 'F', 106), +(183486, 'Anyssa', 2004, 'F', 106), +(183487, 'Aviana', 2004, 'F', 106), +(183488, 'Candy', 2004, 'F', 106), +(183489, 'Evangeline', 2004, 'F', 106), +(183490, 'Ivory', 2004, 'F', 106), +(183491, 'Jolee', 2004, 'F', 106), +(183492, 'Karah', 2004, 'F', 106), +(183493, 'Kassie', 2004, 'F', 106), +(183494, 'Kelley', 2004, 'F', 106), +(183495, 'Londyn', 2004, 'F', 106), +(183496, 'Maisie', 2004, 'F', 106), +(183497, 'Malayna', 2004, 'F', 106), +(183498, 'Ramiyah', 2004, 'F', 106), +(183499, 'Samia', 2004, 'F', 106), +(183500, 'Shaniah', 2004, 'F', 106), +(183501, 'Valencia', 2004, 'F', 106), +(183502, 'Alayah', 2004, 'F', 105), +(183503, 'Anaiya', 2004, 'F', 105), +(183504, 'Avalon', 2004, 'F', 105), +(183505, 'Kairi', 2004, 'F', 105), +(183506, 'Keren', 2004, 'F', 105), +(183507, 'Matthew', 2004, 'F', 105), +(183508, 'Maureen', 2004, 'F', 105), +(183509, 'Pauline', 2004, 'F', 105), +(183510, 'Stefany', 2004, 'F', 105), +(183511, 'Adyson', 2004, 'F', 104), +(183512, 'Ashely', 2004, 'F', 104), +(183513, 'Aysha', 2004, 'F', 104), +(183514, 'Cathy', 2004, 'F', 104), +(183515, 'Cayden', 2004, 'F', 104), +(183516, 'Daijah', 2004, 'F', 104), +(183517, 'Jalen', 2004, 'F', 104), +(183518, 'Jalissa', 2004, 'F', 104), +(183519, 'Kalee', 2004, 'F', 104), +(183520, 'Kimberley', 2004, 'F', 104), +(183521, 'Lisset', 2004, 'F', 104), +(183522, 'Monet', 2004, 'F', 104), +(183523, 'Sherry', 2004, 'F', 104), +(183524, 'Beth', 2004, 'F', 103), +(183525, 'Blessing', 2004, 'F', 103), +(183526, 'Estelle', 2004, 'F', 103), +(183527, 'Gisele', 2004, 'F', 103), +(183528, 'Jala', 2004, 'F', 103), +(183529, 'Jaleah', 2004, 'F', 103), +(183530, 'Jalisa', 2004, 'F', 103), +(183531, 'Jazzlyn', 2004, 'F', 103), +(183532, 'Joseph', 2004, 'F', 103), +(183533, 'Keyonna', 2004, 'F', 103), +(183534, 'Lora', 2004, 'F', 103), +(183535, 'Mahogany', 2004, 'F', 103), +(183536, 'Marguerite', 2004, 'F', 103), +(183537, 'Naya', 2004, 'F', 103), +(183538, 'Saira', 2004, 'F', 103), +(183539, 'Samarah', 2004, 'F', 103), +(183540, 'Sawyer', 2004, 'F', 103), +(183541, 'Shiloh', 2004, 'F', 103), +(183542, 'Tamiya', 2004, 'F', 103), +(183543, 'Trina', 2004, 'F', 103), +(183544, 'Daysha', 2004, 'F', 102), +(183545, 'Elexis', 2004, 'F', 102), +(183546, 'Elia', 2004, 'F', 102), +(183547, 'Gracee', 2004, 'F', 102), +(183548, 'Haileigh', 2004, 'F', 102), +(183549, 'Janine', 2004, 'F', 102), +(183550, 'Joi', 2004, 'F', 102), +(183551, 'Kaniyah', 2004, 'F', 102), +(183552, 'Kaylan', 2004, 'F', 102), +(183553, 'Kenley', 2004, 'F', 102), +(183554, 'Rosie', 2004, 'F', 102), +(183555, 'Taina', 2004, 'F', 102), +(183556, 'Tatyanna', 2004, 'F', 102), +(183557, 'Tionna', 2004, 'F', 102), +(183558, 'Zora', 2004, 'F', 102), +(183559, 'Andrew', 2004, 'F', 101), +(183560, 'Catrina', 2004, 'F', 101), +(183561, 'Doris', 2004, 'F', 101), +(183562, 'Esha', 2004, 'F', 101), +(183563, 'Hadassah', 2004, 'F', 101), +(183564, 'Jadelyn', 2004, 'F', 101), +(183565, 'Janay', 2004, 'F', 101), +(183566, 'Katalina', 2004, 'F', 101), +(183567, 'Kilee', 2004, 'F', 101), +(183568, 'Kyli', 2004, 'F', 101), +(183569, 'Macayla', 2004, 'F', 101), +(183570, 'Oriana', 2004, 'F', 101), +(183571, 'Sahara', 2004, 'F', 101), +(183572, 'Terra', 2004, 'F', 101), +(183573, 'Violeta', 2004, 'F', 101), +(183574, 'Alianna', 2004, 'F', 100), +(183575, 'Arriana', 2004, 'F', 100), +(183576, 'Aubrianna', 2004, 'F', 100), +(183577, 'Catelyn', 2004, 'F', 100), +(183578, 'Deandra', 2004, 'F', 100), +(183579, 'Gracelynn', 2004, 'F', 100), +(183580, 'Imari', 2004, 'F', 100), +(183581, 'Lamya', 2004, 'F', 100), +(183582, 'River', 2004, 'F', 100), +(183583, 'Shelly', 2004, 'F', 100), +(183584, 'Suzanna', 2004, 'F', 100), +(183585, 'Tierney', 2004, 'F', 100), +(183586, 'Tyasia', 2004, 'F', 100), +(183587, 'Jacob', 2004, 'M', 27871), +(183588, 'Michael', 2004, 'M', 25438), +(183589, 'Joshua', 2004, 'M', 24183), +(183590, 'Matthew', 2004, 'M', 22868), +(183591, 'Ethan', 2004, 'M', 22203), +(183592, 'Andrew', 2004, 'M', 21694), +(183593, 'Daniel', 2004, 'M', 20971), +(183594, 'William', 2004, 'M', 20221), +(183595, 'Joseph', 2004, 'M', 20113), +(183596, 'Christopher', 2004, 'M', 19617), +(183597, 'Anthony', 2004, 'M', 19594), +(183598, 'Ryan', 2004, 'M', 19486), +(183599, 'Nicholas', 2004, 'M', 18507), +(183600, 'David', 2004, 'M', 18372), +(183601, 'Alexander', 2004, 'M', 17915), +(183602, 'Tyler', 2004, 'M', 17437), +(183603, 'James', 2004, 'M', 16451), +(183604, 'John', 2004, 'M', 16436), +(183605, 'Dylan', 2004, 'M', 14842), +(183606, 'Nathan', 2004, 'M', 14621), +(183607, 'Jonathan', 2004, 'M', 14357), +(183608, 'Brandon', 2004, 'M', 14125), +(183609, 'Samuel', 2004, 'M', 14100), +(183610, 'Christian', 2004, 'M', 13909), +(183611, 'Benjamin', 2004, 'M', 13810), +(183612, 'Zachary', 2004, 'M', 13707), +(183613, 'Logan', 2004, 'M', 13136), +(183614, 'Jose', 2004, 'M', 12175), +(183615, 'Noah', 2004, 'M', 11899), +(183616, 'Justin', 2004, 'M', 11870), +(183617, 'Elijah', 2004, 'M', 11700), +(183618, 'Gabriel', 2004, 'M', 11549), +(183619, 'Caleb', 2004, 'M', 11295), +(183620, 'Kevin', 2004, 'M', 11212), +(183621, 'Austin', 2004, 'M', 10740), +(183622, 'Robert', 2004, 'M', 10672), +(183623, 'Thomas', 2004, 'M', 10495), +(183624, 'Connor', 2004, 'M', 10047), +(183625, 'Evan', 2004, 'M', 9975), +(183626, 'Aidan', 2004, 'M', 9817), +(183627, 'Luke', 2004, 'M', 9591), +(183628, 'Jack', 2004, 'M', 9578), +(183629, 'Jordan', 2004, 'M', 9548), +(183630, 'Angel', 2004, 'M', 9508), +(183631, 'Isaiah', 2004, 'M', 9250), +(183632, 'Isaac', 2004, 'M', 9171), +(183633, 'Jason', 2004, 'M', 9056), +(183634, 'Jackson', 2004, 'M', 8976), +(183635, 'Hunter', 2004, 'M', 8898), +(183636, 'Cameron', 2004, 'M', 8881), +(183637, 'Mason', 2004, 'M', 8616), +(183638, 'Gavin', 2004, 'M', 8605), +(183639, 'Aaron', 2004, 'M', 8386), +(183640, 'Juan', 2004, 'M', 8125), +(183641, 'Kyle', 2004, 'M', 7820), +(183642, 'Charles', 2004, 'M', 7648), +(183643, 'Luis', 2004, 'M', 7491), +(183644, 'Adam', 2004, 'M', 7468), +(183645, 'Brian', 2004, 'M', 7325), +(183646, 'Aiden', 2004, 'M', 7157), +(183647, 'Eric', 2004, 'M', 7132), +(183648, 'Jayden', 2004, 'M', 6922), +(183649, 'Alex', 2004, 'M', 6803), +(183650, 'Sean', 2004, 'M', 6768), +(183651, 'Bryan', 2004, 'M', 6730), +(183652, 'Lucas', 2004, 'M', 6708), +(183653, 'Owen', 2004, 'M', 6704), +(183654, 'Nathaniel', 2004, 'M', 6665), +(183655, 'Ian', 2004, 'M', 6503), +(183656, 'Jesus', 2004, 'M', 6462), +(183657, 'Carlos', 2004, 'M', 6253), +(183658, 'Adrian', 2004, 'M', 6136), +(183659, 'Diego', 2004, 'M', 5873), +(183660, 'Julian', 2004, 'M', 5667), +(183661, 'Cole', 2004, 'M', 5643), +(183662, 'Ashton', 2004, 'M', 5429), +(183663, 'Jeremiah', 2004, 'M', 5374), +(183664, 'Steven', 2004, 'M', 5350), +(183665, 'Timothy', 2004, 'M', 5225), +(183666, 'Seth', 2004, 'M', 5184), +(183667, 'Devin', 2004, 'M', 5162), +(183668, 'Chase', 2004, 'M', 5159), +(183669, 'Jaden', 2004, 'M', 5148), +(183670, 'Cody', 2004, 'M', 5123), +(183671, 'Colin', 2004, 'M', 5122), +(183672, 'Landon', 2004, 'M', 5035), +(183673, 'Hayden', 2004, 'M', 5018), +(183674, 'Xavier', 2004, 'M', 5011), +(183675, 'Carter', 2004, 'M', 5009), +(183676, 'Wyatt', 2004, 'M', 4972), +(183677, 'Dominic', 2004, 'M', 4877), +(183678, 'Richard', 2004, 'M', 4843), +(183679, 'Antonio', 2004, 'M', 4835), +(183680, 'Jesse', 2004, 'M', 4758), +(183681, 'Blake', 2004, 'M', 4690), +(183682, 'Miguel', 2004, 'M', 4521), +(183683, 'Sebastian', 2004, 'M', 4518), +(183684, 'Jake', 2004, 'M', 4469), +(183685, 'Alejandro', 2004, 'M', 4450), +(183686, 'Patrick', 2004, 'M', 4439), +(183687, 'Carson', 2004, 'M', 4379), +(183688, 'Victor', 2004, 'M', 4288), +(183689, 'Alexis', 2004, 'M', 4175), +(183690, 'Caden', 2004, 'M', 4156), +(183691, 'Kaden', 2004, 'M', 4136), +(183692, 'Riley', 2004, 'M', 4109), +(183693, 'Brayden', 2004, 'M', 4065), +(183694, 'Bryce', 2004, 'M', 4023), +(183695, 'Henry', 2004, 'M', 3906), +(183696, 'Trevor', 2004, 'M', 3896), +(183697, 'Jeremy', 2004, 'M', 3860), +(183698, 'Liam', 2004, 'M', 3827), +(183699, 'Mark', 2004, 'M', 3767), +(183700, 'Garrett', 2004, 'M', 3689), +(183701, 'Tristan', 2004, 'M', 3477), +(183702, 'Marcus', 2004, 'M', 3473), +(183703, 'Ivan', 2004, 'M', 3457), +(183704, 'Jorge', 2004, 'M', 3439), +(183705, 'Kaleb', 2004, 'M', 3421), +(183706, 'Kenneth', 2004, 'M', 3421), +(183707, 'Vincent', 2004, 'M', 3417), +(183708, 'Brady', 2004, 'M', 3368), +(183709, 'Oscar', 2004, 'M', 3344), +(183710, 'Joel', 2004, 'M', 3231), +(183711, 'Tanner', 2004, 'M', 3230), +(183712, 'Eduardo', 2004, 'M', 3201), +(183713, 'Paul', 2004, 'M', 3180), +(183714, 'Jared', 2004, 'M', 3171), +(183715, 'Edward', 2004, 'M', 3146), +(183716, 'Collin', 2004, 'M', 3107), +(183717, 'Parker', 2004, 'M', 3063), +(183718, 'Alan', 2004, 'M', 3062), +(183719, 'Cooper', 2004, 'M', 3045), +(183720, 'Conner', 2004, 'M', 3004), +(183721, 'Colton', 2004, 'M', 2951), +(183722, 'Maxwell', 2004, 'M', 2927), +(183723, 'Dakota', 2004, 'M', 2916), +(183724, 'Nicolas', 2004, 'M', 2871), +(183725, 'Cristian', 2004, 'M', 2855), +(183726, 'Stephen', 2004, 'M', 2846), +(183727, 'Grant', 2004, 'M', 2815), +(183728, 'Josiah', 2004, 'M', 2792), +(183729, 'Peter', 2004, 'M', 2786), +(183730, 'Ricardo', 2004, 'M', 2780), +(183731, 'Gage', 2004, 'M', 2751), +(183732, 'George', 2004, 'M', 2734), +(183733, 'Francisco', 2004, 'M', 2726), +(183734, 'Omar', 2004, 'M', 2723), +(183735, 'Jeffrey', 2004, 'M', 2721), +(183736, 'Brendan', 2004, 'M', 2719), +(183737, 'Spencer', 2004, 'M', 2661), +(183738, 'Preston', 2004, 'M', 2645), +(183739, 'Braden', 2004, 'M', 2619), +(183740, 'Levi', 2004, 'M', 2593), +(183741, 'Fernando', 2004, 'M', 2576), +(183742, 'Derek', 2004, 'M', 2542), +(183743, 'Cesar', 2004, 'M', 2536), +(183744, 'Javier', 2004, 'M', 2534), +(183745, 'Damian', 2004, 'M', 2524), +(183746, 'Eli', 2004, 'M', 2518), +(183747, 'Nolan', 2004, 'M', 2488), +(183748, 'Micah', 2004, 'M', 2486), +(183749, 'Max', 2004, 'M', 2481), +(183750, 'Peyton', 2004, 'M', 2481), +(183751, 'Shane', 2004, 'M', 2474), +(183752, 'Travis', 2004, 'M', 2457), +(183753, 'Dalton', 2004, 'M', 2451), +(183754, 'Manuel', 2004, 'M', 2408), +(183755, 'Shawn', 2004, 'M', 2408), +(183756, 'Andres', 2004, 'M', 2392), +(183757, 'Edgar', 2004, 'M', 2385), +(183758, 'Erik', 2004, 'M', 2364), +(183759, 'Edwin', 2004, 'M', 2352), +(183760, 'Emmanuel', 2004, 'M', 2346), +(183761, 'Devon', 2004, 'M', 2325), +(183762, 'Bradley', 2004, 'M', 2306), +(183763, 'Jonah', 2004, 'M', 2295), +(183764, 'Mario', 2004, 'M', 2258), +(183765, 'Malachi', 2004, 'M', 2242), +(183766, 'Erick', 2004, 'M', 2231), +(183767, 'Ty', 2004, 'M', 2198), +(183768, 'Ayden', 2004, 'M', 2183), +(183769, 'Johnathan', 2004, 'M', 2175), +(183770, 'Wesley', 2004, 'M', 2105), +(183771, 'Colby', 2004, 'M', 2064), +(183772, 'Trenton', 2004, 'M', 2053), +(183773, 'Donovan', 2004, 'M', 2052), +(183774, 'Raymond', 2004, 'M', 2050), +(183775, 'Giovanni', 2004, 'M', 2032), +(183776, 'Jalen', 2004, 'M', 2022), +(183777, 'Marco', 2004, 'M', 2009), +(183778, 'Hector', 2004, 'M', 2001), +(183779, 'Abraham', 2004, 'M', 1985), +(183780, 'Gregory', 2004, 'M', 1968), +(183781, 'Leonardo', 2004, 'M', 1961), +(183782, 'Damien', 2004, 'M', 1955), +(183783, 'Dillon', 2004, 'M', 1951), +(183784, 'Clayton', 2004, 'M', 1920), +(183785, 'Andre', 2004, 'M', 1916), +(183786, 'Bryson', 2004, 'M', 1913), +(183787, 'Sergio', 2004, 'M', 1913), +(183788, 'Roberto', 2004, 'M', 1874), +(183789, 'Martin', 2004, 'M', 1858), +(183790, 'Jaylen', 2004, 'M', 1791), +(183791, 'Andy', 2004, 'M', 1784), +(183792, 'Dawson', 2004, 'M', 1763), +(183793, 'Elias', 2004, 'M', 1759), +(183794, 'Josue', 2004, 'M', 1746), +(183795, 'Harrison', 2004, 'M', 1728), +(183796, 'Brody', 2004, 'M', 1725), +(183797, 'Corey', 2004, 'M', 1671), +(183798, 'Drew', 2004, 'M', 1666), +(183799, 'Mitchell', 2004, 'M', 1646), +(183800, 'Scott', 2004, 'M', 1640), +(183801, 'Israel', 2004, 'M', 1633), +(183802, 'Taylor', 2004, 'M', 1612), +(183803, 'Dominick', 2004, 'M', 1603), +(183804, 'Ruben', 2004, 'M', 1601), +(183805, 'Calvin', 2004, 'M', 1594), +(183806, 'Miles', 2004, 'M', 1581), +(183807, 'Braxton', 2004, 'M', 1580), +(183808, 'Brett', 2004, 'M', 1565), +(183809, 'Dustin', 2004, 'M', 1550), +(183810, 'Rafael', 2004, 'M', 1544), +(183811, 'Avery', 2004, 'M', 1520), +(183812, 'Pedro', 2004, 'M', 1517), +(183813, 'Troy', 2004, 'M', 1500), +(183814, 'Oliver', 2004, 'M', 1488), +(183815, 'Jace', 2004, 'M', 1487), +(183816, 'Frank', 2004, 'M', 1464), +(183817, 'Zane', 2004, 'M', 1455), +(183818, 'Ronald', 2004, 'M', 1451), +(183819, 'Camden', 2004, 'M', 1446), +(183820, 'Skyler', 2004, 'M', 1422), +(183821, 'Jakob', 2004, 'M', 1415), +(183822, 'Gerardo', 2004, 'M', 1413), +(183823, 'Trey', 2004, 'M', 1402), +(183824, 'Payton', 2004, 'M', 1396), +(183825, 'Roman', 2004, 'M', 1395), +(183826, 'Armando', 2004, 'M', 1386), +(183827, 'Griffin', 2004, 'M', 1384), +(183828, 'Raul', 2004, 'M', 1381), +(183829, 'Malik', 2004, 'M', 1376), +(183830, 'Marcos', 2004, 'M', 1368), +(183831, 'Brock', 2004, 'M', 1349), +(183832, 'Alec', 2004, 'M', 1333), +(183833, 'Kai', 2004, 'M', 1324), +(183834, 'Phillip', 2004, 'M', 1323), +(183835, 'Derrick', 2004, 'M', 1322), +(183836, 'Chance', 2004, 'M', 1320), +(183837, 'Johnny', 2004, 'M', 1314), +(183838, 'Keith', 2004, 'M', 1313), +(183839, 'Cade', 2004, 'M', 1309), +(183840, 'Simon', 2004, 'M', 1304), +(183841, 'Enrique', 2004, 'M', 1295), +(183842, 'Allen', 2004, 'M', 1294), +(183843, 'Keegan', 2004, 'M', 1289), +(183844, 'Trent', 2004, 'M', 1280), +(183845, 'Xander', 2004, 'M', 1273), +(183846, 'Jaiden', 2004, 'M', 1272), +(183847, 'Casey', 2004, 'M', 1269), +(183848, 'Drake', 2004, 'M', 1267), +(183849, 'Donald', 2004, 'M', 1249), +(183850, 'Cayden', 2004, 'M', 1241), +(183851, 'Leo', 2004, 'M', 1238), +(183852, 'Fabian', 2004, 'M', 1224), +(183853, 'Jaxon', 2004, 'M', 1224), +(183854, 'Julio', 2004, 'M', 1222), +(183855, 'Angelo', 2004, 'M', 1215), +(183856, 'Corbin', 2004, 'M', 1212), +(183857, 'Dante', 2004, 'M', 1209), +(183858, 'Grayson', 2004, 'M', 1196), +(183859, 'Jaime', 2004, 'M', 1194), +(183860, 'Kyler', 2004, 'M', 1175), +(183861, 'Lance', 2004, 'M', 1161), +(183862, 'Kameron', 2004, 'M', 1153), +(183863, 'Emanuel', 2004, 'M', 1147), +(183864, 'Brenden', 2004, 'M', 1145), +(183865, 'Zander', 2004, 'M', 1140), +(183866, 'Jimmy', 2004, 'M', 1133), +(183867, 'Landen', 2004, 'M', 1131), +(183868, 'Chandler', 2004, 'M', 1129), +(183869, 'Alberto', 2004, 'M', 1124), +(183870, 'Tyson', 2004, 'M', 1116), +(183871, 'Darius', 2004, 'M', 1115), +(183872, 'Adan', 2004, 'M', 1113), +(183873, 'Tucker', 2004, 'M', 1107), +(183874, 'Zackary', 2004, 'M', 1105), +(183875, 'Saul', 2004, 'M', 1103), +(183876, 'Gustavo', 2004, 'M', 1101), +(183877, 'Mathew', 2004, 'M', 1091), +(183878, 'Santiago', 2004, 'M', 1088), +(183879, 'Jerry', 2004, 'M', 1086), +(183880, 'Lukas', 2004, 'M', 1080), +(183881, 'Lorenzo', 2004, 'M', 1075), +(183882, 'Myles', 2004, 'M', 1075), +(183883, 'Emilio', 2004, 'M', 1069), +(183884, 'Nickolas', 2004, 'M', 1068), +(183885, 'Lane', 2004, 'M', 1067), +(183886, 'Brennan', 2004, 'M', 1061), +(183887, 'Nikolas', 2004, 'M', 1060), +(183888, 'Louis', 2004, 'M', 1050), +(183889, 'Pablo', 2004, 'M', 1045), +(183890, 'Danny', 2004, 'M', 1038), +(183891, 'Aden', 2004, 'M', 1034), +(183892, 'Quinn', 2004, 'M', 1034), +(183893, 'Philip', 2004, 'M', 1017), +(183894, 'Arturo', 2004, 'M', 1014), +(183895, 'Morgan', 2004, 'M', 1008), +(183896, 'Dennis', 2004, 'M', 1007), +(183897, 'Kaiden', 2004, 'M', 1007), +(183898, 'Zion', 2004, 'M', 1007), +(183899, 'Theodore', 2004, 'M', 1005), +(183900, 'Damon', 2004, 'M', 991), +(183901, 'Ezekiel', 2004, 'M', 984), +(183902, 'Randy', 2004, 'M', 977), +(183903, 'Bryant', 2004, 'M', 972), +(183904, 'Kayden', 2004, 'M', 972), +(183905, 'Jayson', 2004, 'M', 963), +(183906, 'Mateo', 2004, 'M', 960), +(183907, 'Tony', 2004, 'M', 957), +(183908, 'Curtis', 2004, 'M', 949), +(183909, 'Yahir', 2004, 'M', 947), +(183910, 'Braeden', 2004, 'M', 941), +(183911, 'Axel', 2004, 'M', 938), +(183912, 'Gary', 2004, 'M', 924), +(183913, 'Jonathon', 2004, 'M', 922), +(183914, 'Alfredo', 2004, 'M', 921), +(183915, 'Hudson', 2004, 'M', 915), +(183916, 'Quentin', 2004, 'M', 912), +(183917, 'Tristen', 2004, 'M', 911), +(183918, 'Ismael', 2004, 'M', 905), +(183919, 'Larry', 2004, 'M', 897), +(183920, 'Marc', 2004, 'M', 897), +(183921, 'Asher', 2004, 'M', 894), +(183922, 'Brayan', 2004, 'M', 891), +(183923, 'Darren', 2004, 'M', 890), +(183924, 'Albert', 2004, 'M', 864), +(183925, 'Camron', 2004, 'M', 859), +(183926, 'Amir', 2004, 'M', 843), +(183927, 'Ryder', 2004, 'M', 831), +(183928, 'Salvador', 2004, 'M', 830), +(183929, 'Chad', 2004, 'M', 828), +(183930, 'Mekhi', 2004, 'M', 825), +(183931, 'Ramon', 2004, 'M', 824), +(183932, 'Joe', 2004, 'M', 819), +(183933, 'Cory', 2004, 'M', 818), +(183934, 'Ernesto', 2004, 'M', 818), +(183935, 'Jay', 2004, 'M', 818), +(183936, 'Charlie', 2004, 'M', 812), +(183937, 'Esteban', 2004, 'M', 810), +(183938, 'Douglas', 2004, 'M', 798), +(183939, 'Marvin', 2004, 'M', 796), +(183940, 'Keaton', 2004, 'M', 793), +(183941, 'Arthur', 2004, 'M', 792), +(183942, 'Abel', 2004, 'M', 791), +(183943, 'Dallas', 2004, 'M', 788), +(183944, 'Ricky', 2004, 'M', 783), +(183945, 'Moises', 2004, 'M', 781), +(183946, 'Orlando', 2004, 'M', 779), +(183947, 'Eddie', 2004, 'M', 771), +(183948, 'Lawrence', 2004, 'M', 768), +(183949, 'Russell', 2004, 'M', 768), +(183950, 'Emiliano', 2004, 'M', 767), +(183951, 'Walter', 2004, 'M', 765), +(183952, 'Hugo', 2004, 'M', 759), +(183953, 'Jude', 2004, 'M', 755), +(183954, 'Mauricio', 2004, 'M', 755), +(183955, 'Carl', 2004, 'M', 750), +(183956, 'Gael', 2004, 'M', 749), +(183957, 'Holden', 2004, 'M', 747), +(183958, 'Dean', 2004, 'M', 746), +(183959, 'Rylan', 2004, 'M', 746), +(183960, 'Davis', 2004, 'M', 743), +(183961, 'Kristopher', 2004, 'M', 743), +(183962, 'Marshall', 2004, 'M', 740), +(183963, 'Maddox', 2004, 'M', 728), +(183964, 'Ali', 2004, 'M', 725), +(183965, 'Ezra', 2004, 'M', 725), +(183966, 'Weston', 2004, 'M', 722), +(183967, 'Walker', 2004, 'M', 721), +(183968, 'Julius', 2004, 'M', 712), +(183969, 'Maurice', 2004, 'M', 712), +(183970, 'Isiah', 2004, 'M', 711), +(183971, 'Joaquin', 2004, 'M', 711), +(183972, 'Kade', 2004, 'M', 701), +(183973, 'Rodrigo', 2004, 'M', 700), +(183974, 'Tate', 2004, 'M', 700), +(183975, 'Reese', 2004, 'M', 698), +(183976, 'Reece', 2004, 'M', 695), +(183977, 'Micheal', 2004, 'M', 694), +(183978, 'Felix', 2004, 'M', 691), +(183979, 'Luca', 2004, 'M', 685), +(183980, 'Tommy', 2004, 'M', 685), +(183981, 'Chris', 2004, 'M', 673), +(183982, 'Issac', 2004, 'M', 666), +(183983, 'Elliot', 2004, 'M', 665), +(183984, 'Shaun', 2004, 'M', 660), +(183985, 'Caiden', 2004, 'M', 657), +(183986, 'Terry', 2004, 'M', 655), +(183987, 'Justice', 2004, 'M', 651), +(183988, 'Beau', 2004, 'M', 649), +(183989, 'Javon', 2004, 'M', 647), +(183990, 'Bennett', 2004, 'M', 646), +(183991, 'Brent', 2004, 'M', 645), +(183992, 'Guillermo', 2004, 'M', 639), +(183993, 'Amari', 2004, 'M', 637), +(183994, 'Kody', 2004, 'M', 637), +(183995, 'Jon', 2004, 'M', 635), +(183996, 'Osvaldo', 2004, 'M', 634), +(183997, 'Jaylin', 2004, 'M', 632), +(183998, 'Kelvin', 2004, 'M', 631), +(183999, 'Roger', 2004, 'M', 629), +(184000, 'Braydon', 2004, 'M', 628), +(184001, 'Deandre', 2004, 'M', 625), +(184002, 'Kobe', 2004, 'M', 625), +(184003, 'Jeffery', 2004, 'M', 623), +(184004, 'Khalil', 2004, 'M', 620), +(184005, 'Easton', 2004, 'M', 619), +(184006, 'Zachariah', 2004, 'M', 619), +(184007, 'Branden', 2004, 'M', 618), +(184008, 'Zachery', 2004, 'M', 617), +(184009, 'Graham', 2004, 'M', 616), +(184010, 'Jamari', 2004, 'M', 614), +(184011, 'Jadon', 2004, 'M', 613), +(184012, 'Jaylon', 2004, 'M', 613), +(184013, 'Maximus', 2004, 'M', 613), +(184014, 'Toby', 2004, 'M', 612), +(184015, 'Silas', 2004, 'M', 611), +(184016, 'Declan', 2004, 'M', 606), +(184017, 'Melvin', 2004, 'M', 606), +(184018, 'Rodney', 2004, 'M', 602), +(184019, 'Bailey', 2004, 'M', 599), +(184020, 'Davion', 2004, 'M', 596), +(184021, 'Dorian', 2004, 'M', 594), +(184022, 'Nathanael', 2004, 'M', 593), +(184023, 'Sam', 2004, 'M', 593), +(184024, 'Demetrius', 2004, 'M', 592), +(184025, 'Sawyer', 2004, 'M', 592), +(184026, 'Noe', 2004, 'M', 590), +(184027, 'Felipe', 2004, 'M', 589), +(184028, 'Reid', 2004, 'M', 589), +(184029, 'Allan', 2004, 'M', 588), +(184030, 'Jamal', 2004, 'M', 588), +(184031, 'Uriel', 2004, 'M', 586), +(184032, 'Marquis', 2004, 'M', 583), +(184033, 'Frederick', 2004, 'M', 581), +(184034, 'Omarion', 2004, 'M', 581), +(184035, 'Bobby', 2004, 'M', 573), +(184036, 'Rene', 2004, 'M', 573), +(184037, 'Trevon', 2004, 'M', 573), +(184038, 'Noel', 2004, 'M', 572), +(184039, 'Conor', 2004, 'M', 571), +(184040, 'Nelson', 2004, 'M', 571), +(184041, 'Jessie', 2004, 'M', 570), +(184042, 'Jonas', 2004, 'M', 567), +(184043, 'Billy', 2004, 'M', 565), +(184044, 'Elliott', 2004, 'M', 565), +(184045, 'Brendon', 2004, 'M', 563), +(184046, 'Jermaine', 2004, 'M', 561), +(184047, 'Harley', 2004, 'M', 558), +(184048, 'Jaxson', 2004, 'M', 554), +(184049, 'Gerald', 2004, 'M', 552), +(184050, 'Damion', 2004, 'M', 549), +(184051, 'Wilson', 2004, 'M', 547), +(184052, 'Desmond', 2004, 'M', 542), +(184053, 'Roy', 2004, 'M', 542), +(184054, 'Quincy', 2004, 'M', 538), +(184055, 'Dane', 2004, 'M', 537), +(184056, 'Skylar', 2004, 'M', 536), +(184057, 'Leonel', 2004, 'M', 535), +(184058, 'Terrance', 2004, 'M', 535), +(184059, 'Rogelio', 2004, 'M', 532), +(184060, 'Bruce', 2004, 'M', 531), +(184061, 'Quinton', 2004, 'M', 529), +(184062, 'Rowan', 2004, 'M', 529), +(184063, 'Solomon', 2004, 'M', 528), +(184064, 'Nasir', 2004, 'M', 524), +(184065, 'Craig', 2004, 'M', 523), +(184066, 'Rohan', 2004, 'M', 522), +(184067, 'Kenny', 2004, 'M', 519), +(184068, 'Tomas', 2004, 'M', 515), +(184069, 'Reed', 2004, 'M', 514), +(184070, 'Kristian', 2004, 'M', 512), +(184071, 'Terrell', 2004, 'M', 511), +(184072, 'Ahmad', 2004, 'M', 508), +(184073, 'Franklin', 2004, 'M', 507), +(184074, 'Joey', 2004, 'M', 507), +(184075, 'Kanye', 2004, 'M', 507), +(184076, 'Amarion', 2004, 'M', 504), +(184077, 'Reginald', 2004, 'M', 502), +(184078, 'Jaydon', 2004, 'M', 498), +(184079, 'Kolby', 2004, 'M', 497), +(184080, 'Jaquan', 2004, 'M', 495), +(184081, 'Triston', 2004, 'M', 492), +(184082, 'Willie', 2004, 'M', 491), +(184083, 'Moses', 2004, 'M', 490), +(184084, 'Rodolfo', 2004, 'M', 490), +(184085, 'Kadin', 2004, 'M', 489), +(184086, 'Tobias', 2004, 'M', 489), +(184087, 'Zackery', 2004, 'M', 488), +(184088, 'Devan', 2004, 'M', 486), +(184089, 'Isaias', 2004, 'M', 485), +(184090, 'Kendall', 2004, 'M', 485), +(184091, 'Mohamed', 2004, 'M', 484), +(184092, 'Steve', 2004, 'M', 484), +(184093, 'Dayton', 2004, 'M', 483), +(184094, 'Johnathon', 2004, 'M', 481), +(184095, 'Byron', 2004, 'M', 480), +(184096, 'Deven', 2004, 'M', 479), +(184097, 'Pierce', 2004, 'M', 478), +(184098, 'Alvin', 2004, 'M', 477), +(184099, 'Kellen', 2004, 'M', 475), +(184100, 'Maximilian', 2004, 'M', 474), +(184101, 'Cyrus', 2004, 'M', 473), +(184102, 'Jameson', 2004, 'M', 465), +(184103, 'Jarrett', 2004, 'M', 464), +(184104, 'Kendrick', 2004, 'M', 463), +(184105, 'Wade', 2004, 'M', 463), +(184106, 'Leon', 2004, 'M', 462), +(184107, 'Marlon', 2004, 'M', 460), +(184108, 'Jayce', 2004, 'M', 459), +(184109, 'Alfonso', 2004, 'M', 458), +(184110, 'Francis', 2004, 'M', 455), +(184111, 'Ahmed', 2004, 'M', 454), +(184112, 'Rolando', 2004, 'M', 453), +(184113, 'Will', 2004, 'M', 452), +(184114, 'Warren', 2004, 'M', 451), +(184115, 'Ben', 2004, 'M', 450), +(184116, 'Trace', 2004, 'M', 447), +(184117, 'Harry', 2004, 'M', 446), +(184118, 'Ramiro', 2004, 'M', 445), +(184119, 'Malcolm', 2004, 'M', 444), +(184120, 'Jamie', 2004, 'M', 443), +(184121, 'Everett', 2004, 'M', 440), +(184122, 'Gilberto', 2004, 'M', 439), +(184123, 'Rocco', 2004, 'M', 439), +(184124, 'Todd', 2004, 'M', 439), +(184125, 'Ronnie', 2004, 'M', 438), +(184126, 'Izaiah', 2004, 'M', 437), +(184127, 'Jamarion', 2004, 'M', 437), +(184128, 'Addison', 2004, 'M', 430), +(184129, 'Adolfo', 2004, 'M', 426), +(184130, 'Kieran', 2004, 'M', 425), +(184131, 'Grady', 2004, 'M', 424), +(184132, 'Deshawn', 2004, 'M', 422), +(184133, 'Darian', 2004, 'M', 421), +(184134, 'Alonzo', 2004, 'M', 420), +(184135, 'River', 2004, 'M', 419), +(184136, 'Orion', 2004, 'M', 418), +(184137, 'Ariel', 2004, 'M', 416), +(184138, 'Phoenix', 2004, 'M', 416), +(184139, 'Jerome', 2004, 'M', 414), +(184140, 'Lincoln', 2004, 'M', 413), +(184141, 'Lee', 2004, 'M', 412), +(184142, 'Stanley', 2004, 'M', 412), +(184143, 'Darrell', 2004, 'M', 410), +(184144, 'Judah', 2004, 'M', 410), +(184145, 'Rudy', 2004, 'M', 410), +(184146, 'Gilbert', 2004, 'M', 407), +(184147, 'Cruz', 2004, 'M', 406), +(184148, 'Tyrone', 2004, 'M', 406), +(184149, 'Vicente', 2004, 'M', 404), +(184150, 'Ezequiel', 2004, 'M', 403), +(184151, 'Tristin', 2004, 'M', 403), +(184152, 'Blaine', 2004, 'M', 402), +(184153, 'Duncan', 2004, 'M', 402), +(184154, 'Quintin', 2004, 'M', 401), +(184155, 'Finn', 2004, 'M', 399), +(184156, 'Omari', 2004, 'M', 399), +(184157, 'Randall', 2004, 'M', 399), +(184158, 'Titus', 2004, 'M', 396), +(184159, 'Johan', 2004, 'M', 395), +(184160, 'Gunnar', 2004, 'M', 394), +(184161, 'Jamison', 2004, 'M', 392), +(184162, 'Colten', 2004, 'M', 391), +(184163, 'Jasper', 2004, 'M', 391), +(184164, 'Ray', 2004, 'M', 391), +(184165, 'Leonard', 2004, 'M', 385), +(184166, 'Nehemiah', 2004, 'M', 385), +(184167, 'Cedric', 2004, 'M', 384), +(184168, 'Clay', 2004, 'M', 383), +(184169, 'Keenan', 2004, 'M', 382), +(184170, 'Eugene', 2004, 'M', 381), +(184171, 'Efrain', 2004, 'M', 380), +(184172, 'Cristopher', 2004, 'M', 379), +(184173, 'Ibrahim', 2004, 'M', 379), +(184174, 'Kyan', 2004, 'M', 379), +(184175, 'Abram', 2004, 'M', 377), +(184176, 'Alvaro', 2004, 'M', 374), +(184177, 'Ulises', 2004, 'M', 374), +(184178, 'Davin', 2004, 'M', 373), +(184179, 'Tyrese', 2004, 'M', 371), +(184180, 'Anderson', 2004, 'M', 370), +(184181, 'Ernest', 2004, 'M', 367), +(184182, 'Reagan', 2004, 'M', 366), +(184183, 'Gunner', 2004, 'M', 364), +(184184, 'Wayne', 2004, 'M', 363), +(184185, 'Elisha', 2004, 'M', 359), +(184186, 'Tyrell', 2004, 'M', 359), +(184187, 'Maximiliano', 2004, 'M', 358), +(184188, 'Romeo', 2004, 'M', 356), +(184189, 'Jordon', 2004, 'M', 354), +(184190, 'Karson', 2004, 'M', 354), +(184191, 'Terrence', 2004, 'M', 354), +(184192, 'Dale', 2004, 'M', 353), +(184193, 'Jair', 2004, 'M', 353), +(184194, 'Jett', 2004, 'M', 353), +(184195, 'Moshe', 2004, 'M', 353), +(184196, 'Aldo', 2004, 'M', 352), +(184197, 'Camren', 2004, 'M', 350), +(184198, 'Harold', 2004, 'M', 350), +(184199, 'Jairo', 2004, 'M', 350), +(184200, 'Ross', 2004, 'M', 350), +(184201, 'Mohammed', 2004, 'M', 349), +(184202, 'Tyree', 2004, 'M', 349), +(184203, 'Brodie', 2004, 'M', 347), +(184204, 'Jabari', 2004, 'M', 346), +(184205, 'Kareem', 2004, 'M', 345), +(184206, 'Jase', 2004, 'M', 344), +(184207, 'Davon', 2004, 'M', 343), +(184208, 'Emmett', 2004, 'M', 341), +(184209, 'Mohammad', 2004, 'M', 340), +(184210, 'Mike', 2004, 'M', 338), +(184211, 'Neil', 2004, 'M', 338), +(184212, 'Gianni', 2004, 'M', 336), +(184213, 'Julien', 2004, 'M', 336), +(184214, 'Porter', 2004, 'M', 336), +(184215, 'Antoine', 2004, 'M', 335), +(184216, 'Brennen', 2004, 'M', 335), +(184217, 'Kole', 2004, 'M', 335), +(184218, 'Lewis', 2004, 'M', 334), +(184219, 'Alijah', 2004, 'M', 333), +(184220, 'Brooks', 2004, 'M', 332), +(184221, 'Keshawn', 2004, 'M', 332), +(184222, 'Markus', 2004, 'M', 332), +(184223, 'Coleman', 2004, 'M', 331), +(184224, 'Jamar', 2004, 'M', 330), +(184225, 'Kolton', 2004, 'M', 328), +(184226, 'Aron', 2004, 'M', 326), +(184227, 'Dominik', 2004, 'M', 326), +(184228, 'Freddy', 2004, 'M', 324), +(184229, 'Ronan', 2004, 'M', 322), +(184230, 'Aryan', 2004, 'M', 321), +(184231, 'Alexzander', 2004, 'M', 320), +(184232, 'Layne', 2004, 'M', 320), +(184233, 'Brice', 2004, 'M', 318), +(184234, 'Donte', 2004, 'M', 318), +(184235, 'Junior', 2004, 'M', 316), +(184236, 'Misael', 2004, 'M', 316), +(184237, 'Cohen', 2004, 'M', 315), +(184238, 'Dashawn', 2004, 'M', 315), +(184239, 'Agustin', 2004, 'M', 314), +(184240, 'Octavio', 2004, 'M', 313), +(184241, 'Dominique', 2004, 'M', 311), +(184242, 'Devyn', 2004, 'M', 310), +(184243, 'Greyson', 2004, 'M', 310), +(184244, 'Jaron', 2004, 'M', 310), +(184245, 'Jefferson', 2004, 'M', 310), +(184246, 'Sage', 2004, 'M', 310), +(184247, 'Brycen', 2004, 'M', 309), +(184248, 'Josh', 2004, 'M', 308), +(184249, 'Zechariah', 2004, 'M', 308), +(184250, 'Irvin', 2004, 'M', 307), +(184251, 'Salvatore', 2004, 'M', 307), +(184252, 'Aydan', 2004, 'M', 306), +(184253, 'Dillan', 2004, 'M', 306), +(184254, 'Kamron', 2004, 'M', 306), +(184255, 'Raphael', 2004, 'M', 304), +(184256, 'Braiden', 2004, 'M', 303), +(184257, 'Ignacio', 2004, 'M', 303), +(184258, 'Asa', 2004, 'M', 301), +(184259, 'August', 2004, 'M', 301), +(184260, 'Garret', 2004, 'M', 301), +(184261, 'Sterling', 2004, 'M', 300), +(184262, 'Alessandro', 2004, 'M', 299), +(184263, 'Alonso', 2004, 'M', 297), +(184264, 'Ari', 2004, 'M', 297), +(184265, 'Giancarlo', 2004, 'M', 297), +(184266, 'Glenn', 2004, 'M', 296), +(184267, 'Muhammad', 2004, 'M', 296), +(184268, 'Draven', 2004, 'M', 294), +(184269, 'Dwayne', 2004, 'M', 294), +(184270, 'Humberto', 2004, 'M', 294), +(184271, 'Jaeden', 2004, 'M', 294), +(184272, 'Jean', 2004, 'M', 294), +(184273, 'Nathanial', 2004, 'M', 293), +(184274, 'Waylon', 2004, 'M', 290), +(184275, 'Rigoberto', 2004, 'M', 288), +(184276, 'Damarion', 2004, 'M', 287), +(184277, 'Heath', 2004, 'M', 287), +(184278, 'Gideon', 2004, 'M', 286), +(184279, 'Keagan', 2004, 'M', 286), +(184280, 'Nico', 2004, 'M', 282), +(184281, 'Karl', 2004, 'M', 281), +(184282, 'Elvis', 2004, 'M', 280), +(184283, 'Jaylan', 2004, 'M', 277), +(184284, 'Coby', 2004, 'M', 276), +(184285, 'Darryl', 2004, 'M', 276), +(184286, 'Kane', 2004, 'M', 276), +(184287, 'Matteo', 2004, 'M', 276), +(184288, 'Isai', 2004, 'M', 275), +(184289, 'Reynaldo', 2004, 'M', 275), +(184290, 'Derick', 2004, 'M', 273), +(184291, 'Braylon', 2004, 'M', 272), +(184292, 'Darnell', 2004, 'M', 271), +(184293, 'Javion', 2004, 'M', 271), +(184294, 'Kasey', 2004, 'M', 271), +(184295, 'Korbin', 2004, 'M', 271), +(184296, 'Cullen', 2004, 'M', 270), +(184297, 'Keon', 2004, 'M', 270), +(184298, 'Ralph', 2004, 'M', 270), +(184299, 'Braedon', 2004, 'M', 269), +(184300, 'Oswaldo', 2004, 'M', 269), +(184301, 'Rhett', 2004, 'M', 269), +(184302, 'Xzavier', 2004, 'M', 268), +(184303, 'Alfred', 2004, 'M', 267), +(184304, 'Emerson', 2004, 'M', 267), +(184305, 'Sidney', 2004, 'M', 267), +(184306, 'Gaven', 2004, 'M', 265), +(184307, 'Roderick', 2004, 'M', 265), +(184308, 'Kian', 2004, 'M', 264), +(184309, 'Rashad', 2004, 'M', 264), +(184310, 'Rory', 2004, 'M', 264), +(184311, 'Lawson', 2004, 'M', 262), +(184312, 'Clark', 2004, 'M', 261), +(184313, 'Lamar', 2004, 'M', 261), +(184314, 'Marquise', 2004, 'M', 261), +(184315, 'Alexandro', 2004, 'M', 260), +(184316, 'Armani', 2004, 'M', 260), +(184317, 'Clinton', 2004, 'M', 258), +(184318, 'Donavan', 2004, 'M', 258), +(184319, 'Hamza', 2004, 'M', 258), +(184320, 'Alden', 2004, 'M', 257), +(184321, 'Justus', 2004, 'M', 257), +(184322, 'Sincere', 2004, 'M', 256), +(184323, 'Semaj', 2004, 'M', 254), +(184324, 'Conrad', 2004, 'M', 253), +(184325, 'Garrison', 2004, 'M', 253), +(184326, 'Jaheim', 2004, 'M', 253), +(184327, 'Mathias', 2004, 'M', 252), +(184328, 'Yair', 2004, 'M', 252), +(184329, 'Arjun', 2004, 'M', 250), +(184330, 'Clarence', 2004, 'M', 250), +(184331, 'Darien', 2004, 'M', 250), +(184332, 'Frankie', 2004, 'M', 250), +(184333, 'Konner', 2004, 'M', 249), +(184334, 'Denzel', 2004, 'M', 248), +(184335, 'Gavyn', 2004, 'M', 248), +(184336, 'Jovan', 2004, 'M', 247), +(184337, 'Aditya', 2004, 'M', 246), +(184338, 'Dangelo', 2004, 'M', 246), +(184339, 'Gordon', 2004, 'M', 246), +(184340, 'Anton', 2004, 'M', 244), +(184341, 'Milton', 2004, 'M', 244), +(184342, 'Luciano', 2004, 'M', 243), +(184343, 'Jovani', 2004, 'M', 242), +(184344, 'Keyshawn', 2004, 'M', 242), +(184345, 'Ronaldo', 2004, 'M', 240), +(184346, 'Santino', 2004, 'M', 239), +(184347, 'Sheldon', 2004, 'M', 239), +(184348, 'Antony', 2004, 'M', 238), +(184349, 'Estevan', 2004, 'M', 238), +(184350, 'Talon', 2004, 'M', 238), +(184351, 'Bernard', 2004, 'M', 237), +(184352, 'Malakai', 2004, 'M', 236), +(184353, 'Maverick', 2004, 'M', 236), +(184354, 'Milo', 2004, 'M', 236), +(184355, 'Nigel', 2004, 'M', 236), +(184356, 'Pranav', 2004, 'M', 236), +(184357, 'Santos', 2004, 'M', 236), +(184358, 'Adrien', 2004, 'M', 235), +(184359, 'Howard', 2004, 'M', 235), +(184360, 'Jan', 2004, 'M', 235), +(184361, 'Nathen', 2004, 'M', 235), +(184362, 'Roland', 2004, 'M', 235), +(184363, 'Demarcus', 2004, 'M', 234), +(184364, 'Barrett', 2004, 'M', 233), +(184365, 'Cale', 2004, 'M', 233), +(184366, 'Rylee', 2004, 'M', 233), +(184367, 'Seamus', 2004, 'M', 233), +(184368, 'Adonis', 2004, 'M', 232), +(184369, 'Devonte', 2004, 'M', 232), +(184370, 'Vance', 2004, 'M', 231), +(184371, 'Kurt', 2004, 'M', 230), +(184372, 'Ryker', 2004, 'M', 230), +(184373, 'Vaughn', 2004, 'M', 230), +(184374, 'Bruno', 2004, 'M', 229), +(184375, 'Tristian', 2004, 'M', 229), +(184376, 'Bradyn', 2004, 'M', 228), +(184377, 'Kylan', 2004, 'M', 228), +(184378, 'Marques', 2004, 'M', 228), +(184379, 'Cash', 2004, 'M', 227), +(184380, 'Fredrick', 2004, 'M', 227), +(184381, 'Prince', 2004, 'M', 227), +(184382, 'Stefan', 2004, 'M', 227), +(184383, 'Baby', 2004, 'M', 226), +(184384, 'Dexter', 2004, 'M', 226), +(184385, 'Jorden', 2004, 'M', 226), +(184386, 'Enzo', 2004, 'M', 225), +(184387, 'Kale', 2004, 'M', 225), +(184388, 'Jadyn', 2004, 'M', 224), +(184389, 'Adriel', 2004, 'M', 223), +(184390, 'Hassan', 2004, 'M', 223), +(184391, 'Kamari', 2004, 'M', 223), +(184392, 'Keyon', 2004, 'M', 223), +(184393, 'Perry', 2004, 'M', 223), +(184394, 'Cason', 2004, 'M', 222), +(184395, 'Matthias', 2004, 'M', 222), +(184396, 'Samir', 2004, 'M', 222), +(184397, 'Dandre', 2004, 'M', 221), +(184398, 'Davian', 2004, 'M', 221), +(184399, 'Leroy', 2004, 'M', 221), +(184400, 'Remington', 2004, 'M', 221), +(184401, 'Deon', 2004, 'M', 220), +(184402, 'Ean', 2004, 'M', 220), +(184403, 'Jaidyn', 2004, 'M', 220), +(184404, 'Blaze', 2004, 'M', 219), +(184405, 'Darwin', 2004, 'M', 217), +(184406, 'Demarion', 2004, 'M', 217), +(184407, 'Kelton', 2004, 'M', 217), +(184408, 'Daquan', 2004, 'M', 216), +(184409, 'Jacoby', 2004, 'M', 216), +(184410, 'Sammy', 2004, 'M', 216), +(184411, 'Clifford', 2004, 'M', 215), +(184412, 'German', 2004, 'M', 215), +(184413, 'Houston', 2004, 'M', 215), +(184414, 'Quinten', 2004, 'M', 215), +(184415, 'Winston', 2004, 'M', 215), +(184416, 'Zain', 2004, 'M', 215), +(184417, 'Dylon', 2004, 'M', 214), +(184418, 'Reuben', 2004, 'M', 214), +(184419, 'Cannon', 2004, 'M', 213), +(184420, 'Chaim', 2004, 'M', 213), +(184421, 'Giovanny', 2004, 'M', 213), +(184422, 'Brad', 2004, 'M', 212), +(184423, 'Ellis', 2004, 'M', 212), +(184424, 'Marcel', 2004, 'M', 212), +(184425, 'Sonny', 2004, 'M', 212), +(184426, 'Yosef', 2004, 'M', 212), +(184427, 'Augustus', 2004, 'M', 211), +(184428, 'Kaeden', 2004, 'M', 211), +(184429, 'Konnor', 2004, 'M', 211), +(184430, 'Jakobe', 2004, 'M', 210), +(184431, 'Landyn', 2004, 'M', 210), +(184432, 'Zakary', 2004, 'M', 210), +(184433, 'Dion', 2004, 'M', 209), +(184434, 'Geoffrey', 2004, 'M', 209), +(184435, 'Luka', 2004, 'M', 209), +(184436, 'Norman', 2004, 'M', 209), +(184437, 'Simeon', 2004, 'M', 209), +(184438, 'Braulio', 2004, 'M', 208), +(184439, 'Dario', 2004, 'M', 208), +(184440, 'Nick', 2004, 'M', 208), +(184441, 'Soren', 2004, 'M', 208), +(184442, 'Elian', 2004, 'M', 207), +(184443, 'Madison', 2004, 'M', 207), +(184444, 'Elmer', 2004, 'M', 206), +(184445, 'Gonzalo', 2004, 'M', 206), +(184446, 'Kenyon', 2004, 'M', 206), +(184447, 'Stephan', 2004, 'M', 205), +(184448, 'Bo', 2004, 'M', 204), +(184449, 'Darion', 2004, 'M', 204), +(184450, 'Nikhil', 2004, 'M', 204), +(184451, 'Andon', 2004, 'M', 203), +(184452, 'Gannon', 2004, 'M', 202), +(184453, 'Jordy', 2004, 'M', 202), +(184454, 'Jovany', 2004, 'M', 202), +(184455, 'London', 2004, 'M', 202), +(184456, 'Keanu', 2004, 'M', 201), +(184457, 'Mikel', 2004, 'M', 201), +(184458, 'Shannon', 2004, 'M', 201), +(184459, 'Tariq', 2004, 'M', 201), +(184460, 'Jaren', 2004, 'M', 200), +(184461, 'Maximillian', 2004, 'M', 200), +(184462, 'Shamar', 2004, 'M', 199), +(184463, 'Brenton', 2004, 'M', 198), +(184464, 'Aydin', 2004, 'M', 197), +(184465, 'Bernardo', 2004, 'M', 197), +(184466, 'Deangelo', 2004, 'M', 197), +(184467, 'Koby', 2004, 'M', 197), +(184468, 'Nestor', 2004, 'M', 197), +(184469, 'Paxton', 2004, 'M', 197), +(184470, 'Domenic', 2004, 'M', 196), +(184471, 'Ethen', 2004, 'M', 196), +(184472, 'Guadalupe', 2004, 'M', 196), +(184473, 'Blaise', 2004, 'M', 195), +(184474, 'Dwight', 2004, 'M', 195), +(184475, 'Heriberto', 2004, 'M', 195), +(184476, 'Jovanni', 2004, 'M', 195), +(184477, 'Matias', 2004, 'M', 195), +(184478, 'Shea', 2004, 'M', 195), +(184479, 'Arnav', 2004, 'M', 194), +(184480, 'Franco', 2004, 'M', 194), +(184481, 'Jaydin', 2004, 'M', 194), +(184482, 'Maxim', 2004, 'M', 194), +(184483, 'Haden', 2004, 'M', 193), +(184484, 'Maximo', 2004, 'M', 193), +(184485, 'Abdullah', 2004, 'M', 192), +(184486, 'Deacon', 2004, 'M', 192), +(184487, 'Arnold', 2004, 'M', 191), +(184488, 'Savion', 2004, 'M', 191), +(184489, 'Gino', 2004, 'M', 189), +(184490, 'Isaak', 2004, 'M', 189), +(184491, 'Ryland', 2004, 'M', 189), +(184492, 'Teagan', 2004, 'M', 189), +(184493, 'Thaddeus', 2004, 'M', 189), +(184494, 'Travon', 2004, 'M', 189), +(184495, 'Boston', 2004, 'M', 188), +(184496, 'Dallin', 2004, 'M', 188), +(184497, 'Stephon', 2004, 'M', 188), +(184498, 'Turner', 2004, 'M', 188), +(184499, 'Jovanny', 2004, 'M', 187), +(184500, 'Carmelo', 2004, 'M', 186), +(184501, 'Eddy', 2004, 'M', 186), +(184502, 'Jamir', 2004, 'M', 186), +(184503, 'Antwan', 2004, 'M', 185), +(184504, 'Chaz', 2004, 'M', 185), +(184505, 'Cortez', 2004, 'M', 185), +(184506, 'Josef', 2004, 'M', 185), +(184507, 'Kamden', 2004, 'M', 185), +(184508, 'Hugh', 2004, 'M', 184), +(184509, 'Lamont', 2004, 'M', 184), +(184510, 'Zack', 2004, 'M', 184), +(184511, 'Irving', 2004, 'M', 183), +(184512, 'Kennedy', 2004, 'M', 183), +(184513, 'Malaki', 2004, 'M', 183), +(184514, 'Marcelo', 2004, 'M', 183), +(184515, 'Stone', 2004, 'M', 183), +(184516, 'Jamel', 2004, 'M', 182), +(184517, 'Jordyn', 2004, 'M', 182), +(184518, 'Rex', 2004, 'M', 182), +(184519, 'Darrius', 2004, 'M', 181), +(184520, 'Keven', 2004, 'M', 181), +(184521, 'Koda', 2004, 'M', 181), +(184522, 'Tyshawn', 2004, 'M', 181), +(184523, 'Atticus', 2004, 'M', 180), +(184524, 'Deshaun', 2004, 'M', 180), +(184525, 'Javen', 2004, 'M', 180), +(184526, 'Rhys', 2004, 'M', 180), +(184527, 'Shayne', 2004, 'M', 180), +(184528, 'Vincenzo', 2004, 'M', 180), +(184529, 'Zavier', 2004, 'M', 180), +(184530, 'Benny', 2004, 'M', 179), +(184531, 'Earl', 2004, 'M', 178), +(184532, 'Jaleel', 2004, 'M', 178), +(184533, 'Kamren', 2004, 'M', 178), +(184534, 'Branson', 2004, 'M', 177), +(184535, 'Carlo', 2004, 'M', 177), +(184536, 'Kevon', 2004, 'M', 177), +(184537, 'Korey', 2004, 'M', 177), +(184538, 'Layton', 2004, 'M', 177), +(184539, 'Sullivan', 2004, 'M', 177), +(184540, 'Marquez', 2004, 'M', 176), +(184541, 'Samson', 2004, 'M', 176), +(184542, 'Cael', 2004, 'M', 175), +(184543, 'Elvin', 2004, 'M', 175), +(184544, 'Haiden', 2004, 'M', 175), +(184545, 'Niko', 2004, 'M', 175), +(184546, 'Truman', 2004, 'M', 175), +(184547, 'Fletcher', 2004, 'M', 174), +(184548, 'Tayshaun', 2004, 'M', 174), +(184549, 'Barry', 2004, 'M', 173), +(184550, 'Dimitri', 2004, 'M', 173), +(184551, 'Raymundo', 2004, 'M', 173), +(184552, 'Yusuf', 2004, 'M', 173), +(184553, 'Zaid', 2004, 'M', 173), +(184554, 'Zaire', 2004, 'M', 173), +(184555, 'Andreas', 2004, 'M', 172), +(184556, 'Cornelius', 2004, 'M', 172), +(184557, 'Efren', 2004, 'M', 172), +(184558, 'Jayvon', 2004, 'M', 172), +(184559, 'Kerry', 2004, 'M', 172), +(184560, 'Tre', 2004, 'M', 172), +(184561, 'Trenten', 2004, 'M', 172), +(184562, 'Trever', 2004, 'M', 172), +(184563, 'Darin', 2004, 'M', 171), +(184564, 'Jeramiah', 2004, 'M', 171), +(184565, 'Rishi', 2004, 'M', 171), +(184566, 'Immanuel', 2004, 'M', 170), +(184567, 'Jarvis', 2004, 'M', 170), +(184568, 'Kason', 2004, 'M', 170), +(184569, 'Rey', 2004, 'M', 170), +(184570, 'Broderick', 2004, 'M', 169), +(184571, 'Trevion', 2004, 'M', 169), +(184572, 'Darrin', 2004, 'M', 168); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(184573, 'Guy', 2004, 'M', 168), +(184574, 'Jarod', 2004, 'M', 168), +(184575, 'Reilly', 2004, 'M', 168), +(184576, 'Cordell', 2004, 'M', 167), +(184577, 'Nash', 2004, 'M', 167), +(184578, 'Trevin', 2004, 'M', 167), +(184579, 'Cristofer', 2004, 'M', 166), +(184580, 'Destin', 2004, 'M', 166), +(184581, 'Eliezer', 2004, 'M', 166), +(184582, 'Fisher', 2004, 'M', 166), +(184583, 'Menachem', 2004, 'M', 166), +(184584, 'Rahul', 2004, 'M', 166), +(184585, 'Hezekiah', 2004, 'M', 165), +(184586, 'Jagger', 2004, 'M', 165), +(184587, 'Jamarcus', 2004, 'M', 165), +(184588, 'Treyton', 2004, 'M', 165), +(184589, 'Tylor', 2004, 'M', 165), +(184590, 'Bronson', 2004, 'M', 164), +(184591, 'Campbell', 2004, 'M', 164), +(184592, 'Fidel', 2004, 'M', 164), +(184593, 'Gaige', 2004, 'M', 164), +(184594, 'Jamil', 2004, 'M', 164), +(184595, 'Ryley', 2004, 'M', 163), +(184596, 'Valentin', 2004, 'M', 163), +(184597, 'Amos', 2004, 'M', 162), +(184598, 'Cristobal', 2004, 'M', 162), +(184599, 'Jax', 2004, 'M', 162), +(184600, 'Jeff', 2004, 'M', 162), +(184601, 'Arman', 2004, 'M', 161), +(184602, 'Coy', 2004, 'M', 161), +(184603, 'Daryl', 2004, 'M', 161), +(184604, 'Fred', 2004, 'M', 161), +(184605, 'Gauge', 2004, 'M', 161), +(184606, 'Joan', 2004, 'M', 161), +(184607, 'Clifton', 2004, 'M', 160), +(184608, 'Darrion', 2004, 'M', 160), +(184609, 'Deonte', 2004, 'M', 160), +(184610, 'Duane', 2004, 'M', 160), +(184611, 'Eliseo', 2004, 'M', 160), +(184612, 'Kelly', 2004, 'M', 160), +(184613, 'Leandro', 2004, 'M', 160), +(184614, 'Tye', 2004, 'M', 160), +(184615, 'Bret', 2004, 'M', 159), +(184616, 'Dhruv', 2004, 'M', 159), +(184617, 'Edison', 2004, 'M', 159), +(184618, 'Kent', 2004, 'M', 159), +(184619, 'Rocky', 2004, 'M', 159), +(184620, 'Brant', 2004, 'M', 158), +(184621, 'Bridger', 2004, 'M', 158), +(184622, 'Camilo', 2004, 'M', 158), +(184623, 'Forrest', 2004, 'M', 158), +(184624, 'Stuart', 2004, 'M', 158), +(184625, 'Jai', 2004, 'M', 157), +(184626, 'Jarrod', 2004, 'M', 157), +(184627, 'Kurtis', 2004, 'M', 157), +(184628, 'Austen', 2004, 'M', 156), +(184629, 'Benito', 2004, 'M', 156), +(184630, 'Brogan', 2004, 'M', 156), +(184631, 'Canyon', 2004, 'M', 155), +(184632, 'Latrell', 2004, 'M', 155), +(184633, 'Ulysses', 2004, 'M', 155), +(184634, 'Juancarlos', 2004, 'M', 154), +(184635, 'Luc', 2004, 'M', 154), +(184636, 'Dakoda', 2004, 'M', 153), +(184637, 'Dewayne', 2004, 'M', 153), +(184638, 'Ken', 2004, 'M', 153), +(184639, 'Lonnie', 2004, 'M', 153), +(184640, 'Mordechai', 2004, 'M', 153), +(184641, 'Sebastien', 2004, 'M', 153), +(184642, 'Trystan', 2004, 'M', 153), +(184643, 'Van', 2004, 'M', 153), +(184644, 'Davonte', 2004, 'M', 152), +(184645, 'Jaedon', 2004, 'M', 151), +(184646, 'Jakub', 2004, 'M', 151), +(184647, 'Kadyn', 2004, 'M', 151), +(184648, 'Killian', 2004, 'M', 151), +(184649, 'Yousef', 2004, 'M', 151), +(184650, 'Anish', 2004, 'M', 150), +(184651, 'Jarred', 2004, 'M', 150), +(184652, 'Jeshua', 2004, 'M', 150), +(184653, 'Memphis', 2004, 'M', 150), +(184654, 'Pierre', 2004, 'M', 150), +(184655, 'Rico', 2004, 'M', 150), +(184656, 'Bilal', 2004, 'M', 149), +(184657, 'Jaycob', 2004, 'M', 149), +(184658, 'Markel', 2004, 'M', 149), +(184659, 'Adin', 2004, 'M', 148), +(184660, 'Armaan', 2004, 'M', 148), +(184661, 'Garett', 2004, 'M', 148), +(184662, 'Gregorio', 2004, 'M', 148), +(184663, 'Royce', 2004, 'M', 148), +(184664, 'Yehuda', 2004, 'M', 148), +(184665, 'Alton', 2004, 'M', 147), +(184666, 'Austyn', 2004, 'M', 147), +(184667, 'Glen', 2004, 'M', 147), +(184668, 'Harvey', 2004, 'M', 147), +(184669, 'Tavion', 2004, 'M', 147), +(184670, 'Denis', 2004, 'M', 146), +(184671, 'Mariano', 2004, 'M', 146), +(184672, 'Mustafa', 2004, 'M', 146), +(184673, 'Raiden', 2004, 'M', 146), +(184674, 'Ashtin', 2004, 'M', 145), +(184675, 'Aubrey', 2004, 'M', 145), +(184676, 'Kael', 2004, 'M', 145), +(184677, 'Kyron', 2004, 'M', 145), +(184678, 'Makhi', 2004, 'M', 145), +(184679, 'Varun', 2004, 'M', 145), +(184680, 'Camryn', 2004, 'M', 144), +(184681, 'Dontae', 2004, 'M', 144), +(184682, 'Finnegan', 2004, 'M', 144), +(184683, 'Keandre', 2004, 'M', 144), +(184684, 'Keshaun', 2004, 'M', 144), +(184685, 'Koen', 2004, 'M', 144), +(184686, 'Vernon', 2004, 'M', 144), +(184687, 'Alexandre', 2004, 'M', 143), +(184688, 'Colt', 2004, 'M', 143), +(184689, 'Courtney', 2004, 'M', 143), +(184690, 'Ely', 2004, 'M', 143), +(184691, 'Francesco', 2004, 'M', 143), +(184692, 'Giovani', 2004, 'M', 143), +(184693, 'Karter', 2004, 'M', 143), +(184694, 'Kory', 2004, 'M', 143), +(184695, 'Kyree', 2004, 'M', 143), +(184696, 'Lazaro', 2004, 'M', 143), +(184697, 'Makai', 2004, 'M', 143), +(184698, 'Rickey', 2004, 'M', 143), +(184699, 'Augustine', 2004, 'M', 142), +(184700, 'Gian', 2004, 'M', 142), +(184701, 'Javan', 2004, 'M', 142), +(184702, 'Jonatan', 2004, 'M', 142), +(184703, 'Kristofer', 2004, 'M', 142), +(184704, 'Landin', 2004, 'M', 142), +(184705, 'Lucian', 2004, 'M', 142), +(184706, 'Rasheed', 2004, 'M', 142), +(184707, 'Treyvon', 2004, 'M', 142), +(184708, 'Ephraim', 2004, 'M', 141), +(184709, 'Justyn', 2004, 'M', 141), +(184710, 'Myron', 2004, 'M', 141), +(184711, 'Nikolai', 2004, 'M', 141), +(184712, 'Sahil', 2004, 'M', 141), +(184713, 'Syed', 2004, 'M', 141), +(184714, 'Don', 2004, 'M', 140), +(184715, 'Dyllan', 2004, 'M', 140), +(184716, 'Eden', 2004, 'M', 140), +(184717, 'Kirk', 2004, 'M', 140), +(184718, 'Anders', 2004, 'M', 139), +(184719, 'Case', 2004, 'M', 139), +(184720, 'Fredy', 2004, 'M', 139), +(184721, 'Jahir', 2004, 'M', 139), +(184722, 'Markell', 2004, 'M', 139), +(184723, 'Torin', 2004, 'M', 139), +(184724, 'Yael', 2004, 'M', 139), +(184725, 'Johnnie', 2004, 'M', 138), +(184726, 'Khalid', 2004, 'M', 138), +(184727, 'Sami', 2004, 'M', 138), +(184728, 'Anson', 2004, 'M', 137), +(184729, 'Carlton', 2004, 'M', 137), +(184730, 'Clyde', 2004, 'M', 137), +(184731, 'Marion', 2004, 'M', 137), +(184732, 'Tyron', 2004, 'M', 137), +(184733, 'Zavion', 2004, 'M', 137), +(184734, 'Ajay', 2004, 'M', 136), +(184735, 'Dameon', 2004, 'M', 136), +(184736, 'Eliot', 2004, 'M', 136), +(184737, 'Messiah', 2004, 'M', 136), +(184738, 'Terence', 2004, 'M', 136), +(184739, 'Yash', 2004, 'M', 136), +(184740, 'Yisroel', 2004, 'M', 136), +(184741, 'Alek', 2004, 'M', 135), +(184742, 'Amar', 2004, 'M', 135), +(184743, 'Amare', 2004, 'M', 135), +(184744, 'Dan', 2004, 'M', 135), +(184745, 'Infant', 2004, 'M', 135), +(184746, 'Jasiah', 2004, 'M', 135), +(184747, 'Lloyd', 2004, 'M', 135), +(184748, 'Beckett', 2004, 'M', 134), +(184749, 'Denver', 2004, 'M', 134), +(184750, 'Deondre', 2004, 'M', 134), +(184751, 'Donnell', 2004, 'M', 134), +(184752, 'Hank', 2004, 'M', 134), +(184753, 'Jadin', 2004, 'M', 134), +(184754, 'Joseluis', 2004, 'M', 134), +(184755, 'Zayne', 2004, 'M', 134), +(184756, 'Damari', 2004, 'M', 133), +(184757, 'Daylon', 2004, 'M', 133), +(184758, 'Eleazar', 2004, 'M', 133), +(184759, 'Enoch', 2004, 'M', 133), +(184760, 'Lester', 2004, 'M', 133), +(184761, 'Tai', 2004, 'M', 133), +(184762, 'Theo', 2004, 'M', 133), +(184763, 'Abner', 2004, 'M', 132), +(184764, 'Demario', 2004, 'M', 132), +(184765, 'Devlin', 2004, 'M', 132), +(184766, 'Harris', 2004, 'M', 132), +(184767, 'Nevin', 2004, 'M', 132), +(184768, 'Robin', 2004, 'M', 132), +(184769, 'Donnie', 2004, 'M', 131), +(184770, 'Everardo', 2004, 'M', 131), +(184771, 'Jevon', 2004, 'M', 131), +(184772, 'Karim', 2004, 'M', 131), +(184773, 'Kenton', 2004, 'M', 131), +(184774, 'Om', 2004, 'M', 131), +(184775, 'Tyquan', 2004, 'M', 131), +(184776, 'Benson', 2004, 'M', 130), +(184777, 'Aedan', 2004, 'M', 129), +(184778, 'Demarco', 2004, 'M', 129), +(184779, 'Freddie', 2004, 'M', 129), +(184780, 'Kentrell', 2004, 'M', 129), +(184781, 'Taj', 2004, 'M', 129), +(184782, 'Dashaun', 2004, 'M', 128), +(184783, 'Donavin', 2004, 'M', 128), +(184784, 'Jelani', 2004, 'M', 128), +(184785, 'Jimmie', 2004, 'M', 128), +(184786, 'Kolten', 2004, 'M', 128), +(184787, 'Ameer', 2004, 'M', 127), +(184788, 'Jedidiah', 2004, 'M', 127), +(184789, 'Kellan', 2004, 'M', 127), +(184790, 'Krish', 2004, 'M', 127), +(184791, 'Merrick', 2004, 'M', 127), +(184792, 'Brennon', 2004, 'M', 126), +(184793, 'Cain', 2004, 'M', 126), +(184794, 'Daveon', 2004, 'M', 126), +(184795, 'Ever', 2004, 'M', 126), +(184796, 'Isac', 2004, 'M', 126), +(184797, 'Marcello', 2004, 'M', 126), +(184798, 'Miguelangel', 2004, 'M', 126), +(184799, 'Presley', 2004, 'M', 126), +(184800, 'Ayush', 2004, 'M', 125), +(184801, 'Blayne', 2004, 'M', 125), +(184802, 'Briar', 2004, 'M', 125), +(184803, 'Devante', 2004, 'M', 125), +(184804, 'Jensen', 2004, 'M', 125), +(184805, 'Jerimiah', 2004, 'M', 125), +(184806, 'Kasen', 2004, 'M', 125), +(184807, 'Sabastian', 2004, 'M', 125), +(184808, 'Tevin', 2004, 'M', 125), +(184809, 'Gerard', 2004, 'M', 124), +(184810, 'Iain', 2004, 'M', 124), +(184811, 'Ishmael', 2004, 'M', 124), +(184812, 'Javin', 2004, 'M', 124), +(184813, 'Jaydan', 2004, 'M', 124), +(184814, 'Johann', 2004, 'M', 124), +(184815, 'Mitchel', 2004, 'M', 124), +(184816, 'Uriah', 2004, 'M', 124), +(184817, 'Chauncey', 2004, 'M', 123), +(184818, 'Federico', 2004, 'M', 123), +(184819, 'Jakari', 2004, 'M', 123), +(184820, 'Rashawn', 2004, 'M', 123), +(184821, 'Ayaan', 2004, 'M', 122), +(184822, 'Daron', 2004, 'M', 122), +(184823, 'Dilan', 2004, 'M', 122), +(184824, 'Evin', 2004, 'M', 122), +(184825, 'Kalen', 2004, 'M', 122), +(184826, 'Keller', 2004, 'M', 122), +(184827, 'Lionel', 2004, 'M', 122), +(184828, 'Said', 2004, 'M', 122), +(184829, 'Aman', 2004, 'M', 121), +(184830, 'Carsen', 2004, 'M', 121), +(184831, 'Finley', 2004, 'M', 121), +(184832, 'Jaquez', 2004, 'M', 121), +(184833, 'Khamani', 2004, 'M', 121), +(184834, 'Mauro', 2004, 'M', 121), +(184835, 'Milan', 2004, 'M', 121), +(184836, 'Antwone', 2004, 'M', 120), +(184837, 'Bowen', 2004, 'M', 120), +(184838, 'Caeden', 2004, 'M', 120), +(184839, 'Dax', 2004, 'M', 120), +(184840, 'Donavon', 2004, 'M', 120), +(184841, 'Emory', 2004, 'M', 120), +(184842, 'Gabe', 2004, 'M', 120), +(184843, 'Genaro', 2004, 'M', 120), +(184844, 'Jameer', 2004, 'M', 120), +(184845, 'Johnpaul', 2004, 'M', 120), +(184846, 'Kegan', 2004, 'M', 120), +(184847, 'Rick', 2004, 'M', 120), +(184848, 'Emily', 2004, 'M', 119), +(184849, 'Gerson', 2004, 'M', 119), +(184850, 'Herman', 2004, 'M', 119), +(184851, 'Jackie', 2004, 'M', 119), +(184852, 'Sameer', 2004, 'M', 119), +(184853, 'Valentino', 2004, 'M', 119), +(184854, 'Westin', 2004, 'M', 119), +(184855, 'Abdiel', 2004, 'M', 118), +(184856, 'Baylor', 2004, 'M', 118), +(184857, 'Edgardo', 2004, 'M', 118), +(184858, 'Edmund', 2004, 'M', 118), +(184859, 'Emery', 2004, 'M', 118), +(184860, 'Geovanni', 2004, 'M', 118), +(184861, 'Izaak', 2004, 'M', 118), +(184862, 'Tavon', 2004, 'M', 118), +(184863, 'Ace', 2004, 'M', 117), +(184864, 'Canaan', 2004, 'M', 117), +(184865, 'Cian', 2004, 'M', 117), +(184866, 'Dev', 2004, 'M', 117), +(184867, 'Haven', 2004, 'M', 117), +(184868, 'Javonte', 2004, 'M', 117), +(184869, 'Kalvin', 2004, 'M', 117), +(184870, 'Kavon', 2004, 'M', 117), +(184871, 'Vladimir', 2004, 'M', 117), +(184872, 'Giuseppe', 2004, 'M', 116), +(184873, 'Mykel', 2004, 'M', 116), +(184874, 'Nate', 2004, 'M', 116), +(184875, 'Akash', 2004, 'M', 115), +(184876, 'Aleksander', 2004, 'M', 115), +(184877, 'Beck', 2004, 'M', 115), +(184878, 'Brandt', 2004, 'M', 115), +(184879, 'Coleton', 2004, 'M', 115), +(184880, 'Dillion', 2004, 'M', 115), +(184881, 'Eamon', 2004, 'M', 115), +(184882, 'Hernan', 2004, 'M', 115), +(184883, 'Isidro', 2004, 'M', 115), +(184884, 'Jarell', 2004, 'M', 115), +(184885, 'Karsten', 2004, 'M', 115), +(184886, 'Otto', 2004, 'M', 115), +(184887, 'Wilmer', 2004, 'M', 115), +(184888, 'Corban', 2004, 'M', 114), +(184889, 'Daxton', 2004, 'M', 114), +(184890, 'Izayah', 2004, 'M', 114), +(184891, 'Leif', 2004, 'M', 114), +(184892, 'Amani', 2004, 'M', 113), +(184893, 'Bradly', 2004, 'M', 113), +(184894, 'Brandan', 2004, 'M', 113), +(184895, 'Jermiah', 2004, 'M', 113), +(184896, 'Kamryn', 2004, 'M', 113), +(184897, 'Ladarius', 2004, 'M', 113), +(184898, 'Paolo', 2004, 'M', 113), +(184899, 'Santana', 2004, 'M', 113), +(184900, 'Abdul', 2004, 'M', 112), +(184901, 'Antwon', 2004, 'M', 112), +(184902, 'Bishop', 2004, 'M', 112), +(184903, 'Britton', 2004, 'M', 112), +(184904, 'Dejuan', 2004, 'M', 112), +(184905, 'Floyd', 2004, 'M', 112), +(184906, 'Geovanny', 2004, 'M', 112), +(184907, 'Tahj', 2004, 'M', 112), +(184908, 'Theron', 2004, 'M', 112), +(184909, 'Willem', 2004, 'M', 112), +(184910, 'Zayden', 2004, 'M', 112), +(184911, 'Ervin', 2004, 'M', 111), +(184912, 'Foster', 2004, 'M', 111), +(184913, 'Hans', 2004, 'M', 111), +(184914, 'Jamaal', 2004, 'M', 111), +(184915, 'Lars', 2004, 'M', 111), +(184916, 'Neal', 2004, 'M', 111), +(184917, 'Yitzchok', 2004, 'M', 111), +(184918, 'Aric', 2004, 'M', 110), +(184919, 'Clint', 2004, 'M', 110), +(184920, 'Desean', 2004, 'M', 110), +(184921, 'Gibson', 2004, 'M', 110), +(184922, 'Jahiem', 2004, 'M', 110), +(184923, 'Jashawn', 2004, 'M', 110), +(184924, 'Judson', 2004, 'M', 110), +(184925, 'Kelby', 2004, 'M', 110), +(184926, 'Remy', 2004, 'M', 110), +(184927, 'Yaakov', 2004, 'M', 110), +(184928, 'Ajani', 2004, 'M', 109), +(184929, 'Colter', 2004, 'M', 109), +(184930, 'Herbert', 2004, 'M', 109), +(184931, 'Kahlil', 2004, 'M', 109), +(184932, 'Leland', 2004, 'M', 109), +(184933, 'Shlomo', 2004, 'M', 109), +(184934, 'Gene', 2004, 'M', 108), +(184935, 'Jacobi', 2004, 'M', 108), +(184936, 'Jalil', 2004, 'M', 108), +(184937, 'Lathan', 2004, 'M', 108), +(184938, 'Neo', 2004, 'M', 108), +(184939, 'Osbaldo', 2004, 'M', 108), +(184940, 'Shimon', 2004, 'M', 108), +(184941, 'Shmuel', 2004, 'M', 108), +(184942, 'Siddharth', 2004, 'M', 108), +(184943, 'Tracy', 2004, 'M', 108), +(184944, 'Vince', 2004, 'M', 108), +(184945, 'Braylen', 2004, 'M', 107), +(184946, 'Ira', 2004, 'M', 107), +(184947, 'Marcelino', 2004, 'M', 107), +(184948, 'Odin', 2004, 'M', 107), +(184949, 'Tom', 2004, 'M', 107), +(184950, 'Trayvon', 2004, 'M', 107), +(184951, 'Alexavier', 2004, 'M', 106), +(184952, 'Avi', 2004, 'M', 106), +(184953, 'Gianluca', 2004, 'M', 106), +(184954, 'Jalin', 2004, 'M', 106), +(184955, 'Loren', 2004, 'M', 106), +(184956, 'Mack', 2004, 'M', 106), +(184957, 'Mackenzie', 2004, 'M', 106), +(184958, 'Ronin', 2004, 'M', 106), +(184959, 'Trae', 2004, 'M', 106), +(184960, 'Broc', 2004, 'M', 105), +(184961, 'Callum', 2004, 'M', 105), +(184962, 'Keion', 2004, 'M', 105), +(184963, 'Travion', 2004, 'M', 105), +(184964, 'Tylan', 2004, 'M', 105), +(184965, 'Eloy', 2004, 'M', 104), +(184966, 'Landan', 2004, 'M', 104), +(184967, 'Maddux', 2004, 'M', 104), +(184968, 'Rian', 2004, 'M', 104), +(184969, 'Zyon', 2004, 'M', 104), +(184970, 'Benton', 2004, 'M', 103), +(184971, 'Bryton', 2004, 'M', 103), +(184972, 'Deontae', 2004, 'M', 103), +(184973, 'Hannah', 2004, 'M', 103), +(184974, 'Ishan', 2004, 'M', 103), +(184975, 'Jericho', 2004, 'M', 103), +(184976, 'Jody', 2004, 'M', 103), +(184977, 'Shelton', 2004, 'M', 103), +(184978, 'Angus', 2004, 'M', 102), +(184979, 'Dereck', 2004, 'M', 102), +(184980, 'Emma', 2004, 'M', 102), +(184981, 'Favian', 2004, 'M', 102), +(184982, 'Hyrum', 2004, 'M', 102), +(184983, 'Jade', 2004, 'M', 102), +(184984, 'Jim', 2004, 'M', 102), +(184985, 'Jordi', 2004, 'M', 102), +(184986, 'Montana', 2004, 'M', 102), +(184987, 'Ramsey', 2004, 'M', 102), +(184988, 'Raven', 2004, 'M', 102), +(184989, 'Stewart', 2004, 'M', 102), +(184990, 'Bentley', 2004, 'M', 101), +(184991, 'Deion', 2004, 'M', 101), +(184992, 'Dorien', 2004, 'M', 101), +(184993, 'Erwin', 2004, 'M', 101), +(184994, 'Hiram', 2004, 'M', 101), +(184995, 'Izaac', 2004, 'M', 101), +(184996, 'Raheem', 2004, 'M', 101), +(184997, 'Sydney', 2004, 'M', 101), +(184998, 'Tyrus', 2004, 'M', 101), +(184999, 'Aidyn', 2004, 'M', 100), +(185000, 'Cecil', 2004, 'M', 100), +(185001, 'Claudio', 2004, 'M', 100), +(185002, 'Dakotah', 2004, 'M', 100), +(185003, 'Dave', 2004, 'M', 100), +(185004, 'Dayne', 2004, 'M', 100), +(185005, 'Haydn', 2004, 'M', 100), +(185006, 'Jerrell', 2004, 'M', 100), +(185007, 'Jkwon', 2004, 'M', 100), +(185008, 'Marek', 2004, 'M', 100), +(185009, 'Marko', 2004, 'M', 100), +(185010, 'Mikael', 2004, 'M', 100), +(185011, 'Emily', 2005, 'F', 23928), +(185012, 'Emma', 2005, 'F', 20334), +(185013, 'Madison', 2005, 'F', 19561), +(185014, 'Abigail', 2005, 'F', 15747), +(185015, 'Olivia', 2005, 'F', 15690), +(185016, 'Isabella', 2005, 'F', 15172), +(185017, 'Hannah', 2005, 'F', 14842), +(185018, 'Samantha', 2005, 'F', 13632), +(185019, 'Ava', 2005, 'F', 13603), +(185020, 'Ashley', 2005, 'F', 13270), +(185021, 'Elizabeth', 2005, 'F', 12719), +(185022, 'Sophia', 2005, 'F', 12667), +(185023, 'Alexis', 2005, 'F', 11962), +(185024, 'Grace', 2005, 'F', 11859), +(185025, 'Sarah', 2005, 'F', 11526), +(185026, 'Alyssa', 2005, 'F', 10882), +(185027, 'Mia', 2005, 'F', 10840), +(185028, 'Natalie', 2005, 'F', 10729), +(185029, 'Chloe', 2005, 'F', 9584), +(185030, 'Brianna', 2005, 'F', 9354), +(185031, 'Lauren', 2005, 'F', 9244), +(185032, 'Anna', 2005, 'F', 9097), +(185033, 'Ella', 2005, 'F', 9062), +(185034, 'Taylor', 2005, 'F', 8669), +(185035, 'Kayla', 2005, 'F', 8613), +(185036, 'Hailey', 2005, 'F', 8586), +(185037, 'Jessica', 2005, 'F', 8107), +(185038, 'Victoria', 2005, 'F', 7952), +(185039, 'Jasmine', 2005, 'F', 7862), +(185040, 'Sydney', 2005, 'F', 7374), +(185041, 'Julia', 2005, 'F', 7082), +(185042, 'Destiny', 2005, 'F', 6876), +(185043, 'Morgan', 2005, 'F', 6747), +(185044, 'Kaitlyn', 2005, 'F', 6515), +(185045, 'Savannah', 2005, 'F', 6475), +(185046, 'Katherine', 2005, 'F', 6388), +(185047, 'Alexandra', 2005, 'F', 6317), +(185048, 'Rachel', 2005, 'F', 6207), +(185049, 'Lily', 2005, 'F', 6087), +(185050, 'Kaylee', 2005, 'F', 5862), +(185051, 'Megan', 2005, 'F', 5853), +(185052, 'Jennifer', 2005, 'F', 5832), +(185053, 'Angelina', 2005, 'F', 5807), +(185054, 'Makayla', 2005, 'F', 5722), +(185055, 'Allison', 2005, 'F', 5631), +(185056, 'Maria', 2005, 'F', 5591), +(185057, 'Brooke', 2005, 'F', 5565), +(185058, 'Trinity', 2005, 'F', 5446), +(185059, 'Faith', 2005, 'F', 5242), +(185060, 'Lillian', 2005, 'F', 5210), +(185061, 'Mackenzie', 2005, 'F', 5192), +(185062, 'Sofia', 2005, 'F', 5161), +(185063, 'Riley', 2005, 'F', 5122), +(185064, 'Haley', 2005, 'F', 5120), +(185065, 'Gabrielle', 2005, 'F', 5016), +(185066, 'Nicole', 2005, 'F', 4983), +(185067, 'Kylie', 2005, 'F', 4965), +(185068, 'Zoe', 2005, 'F', 4956), +(185069, 'Katelyn', 2005, 'F', 4926), +(185070, 'Paige', 2005, 'F', 4903), +(185071, 'Gabriella', 2005, 'F', 4817), +(185072, 'Jenna', 2005, 'F', 4793), +(185073, 'Kimberly', 2005, 'F', 4750), +(185074, 'Stephanie', 2005, 'F', 4700), +(185075, 'Andrea', 2005, 'F', 4666), +(185076, 'Alexa', 2005, 'F', 4662), +(185077, 'Avery', 2005, 'F', 4652), +(185078, 'Leah', 2005, 'F', 4594), +(185079, 'Nevaeh', 2005, 'F', 4550), +(185080, 'Madeline', 2005, 'F', 4528), +(185081, 'Evelyn', 2005, 'F', 4485), +(185082, 'Mary', 2005, 'F', 4447), +(185083, 'Maya', 2005, 'F', 4427), +(185084, 'Michelle', 2005, 'F', 4307), +(185085, 'Sara', 2005, 'F', 4275), +(185086, 'Jada', 2005, 'F', 4261), +(185087, 'Audrey', 2005, 'F', 4133), +(185088, 'Brooklyn', 2005, 'F', 4126), +(185089, 'Vanessa', 2005, 'F', 4091), +(185090, 'Amanda', 2005, 'F', 4085), +(185091, 'Rebecca', 2005, 'F', 3998), +(185092, 'Ariana', 2005, 'F', 3976), +(185093, 'Caroline', 2005, 'F', 3973), +(185094, 'Amelia', 2005, 'F', 3906), +(185095, 'Mariah', 2005, 'F', 3839), +(185096, 'Jordan', 2005, 'F', 3690), +(185097, 'Jocelyn', 2005, 'F', 3678), +(185098, 'Arianna', 2005, 'F', 3671), +(185099, 'Isabel', 2005, 'F', 3608), +(185100, 'Autumn', 2005, 'F', 3595), +(185101, 'Marissa', 2005, 'F', 3591), +(185102, 'Melanie', 2005, 'F', 3495), +(185103, 'Aaliyah', 2005, 'F', 3455), +(185104, 'Gracie', 2005, 'F', 3369), +(185105, 'Claire', 2005, 'F', 3291), +(185106, 'Isabelle', 2005, 'F', 3279), +(185107, 'Molly', 2005, 'F', 3214), +(185108, 'Mya', 2005, 'F', 3203), +(185109, 'Katie', 2005, 'F', 3162), +(185110, 'Diana', 2005, 'F', 3156), +(185111, 'Amber', 2005, 'F', 3137), +(185112, 'Danielle', 2005, 'F', 3133), +(185113, 'Leslie', 2005, 'F', 3121), +(185114, 'Melissa', 2005, 'F', 3080), +(185115, 'Sierra', 2005, 'F', 3046), +(185116, 'Addison', 2005, 'F', 3021), +(185117, 'Madelyn', 2005, 'F', 3019), +(185118, 'Bailey', 2005, 'F', 2988), +(185119, 'Catherine', 2005, 'F', 2982), +(185120, 'Gianna', 2005, 'F', 2962), +(185121, 'Amy', 2005, 'F', 2950), +(185122, 'Erin', 2005, 'F', 2906), +(185123, 'Jade', 2005, 'F', 2896), +(185124, 'Angela', 2005, 'F', 2893), +(185125, 'Gabriela', 2005, 'F', 2864), +(185126, 'Jacqueline', 2005, 'F', 2849), +(185127, 'Shelby', 2005, 'F', 2838), +(185128, 'Kennedy', 2005, 'F', 2824), +(185129, 'Lydia', 2005, 'F', 2768), +(185130, 'Alondra', 2005, 'F', 2720), +(185131, 'Adriana', 2005, 'F', 2704), +(185132, 'Daniela', 2005, 'F', 2651), +(185133, 'Natalia', 2005, 'F', 2650), +(185134, 'Breanna', 2005, 'F', 2637), +(185135, 'Kathryn', 2005, 'F', 2570), +(185136, 'Briana', 2005, 'F', 2540), +(185137, 'Ashlyn', 2005, 'F', 2539), +(185138, 'Rylee', 2005, 'F', 2520), +(185139, 'Eva', 2005, 'F', 2473), +(185140, 'Ruby', 2005, 'F', 2466), +(185141, 'Peyton', 2005, 'F', 2462), +(185142, 'Kendall', 2005, 'F', 2456), +(185143, 'Alexandria', 2005, 'F', 2450), +(185144, 'Christina', 2005, 'F', 2449), +(185145, 'Charlotte', 2005, 'F', 2441), +(185146, 'Sophie', 2005, 'F', 2439), +(185147, 'Valeria', 2005, 'F', 2429), +(185148, 'Reagan', 2005, 'F', 2425), +(185149, 'Naomi', 2005, 'F', 2415), +(185150, 'Summer', 2005, 'F', 2407), +(185151, 'Kate', 2005, 'F', 2404), +(185152, 'Mikayla', 2005, 'F', 2393), +(185153, 'Angel', 2005, 'F', 2383), +(185154, 'Layla', 2005, 'F', 2383), +(185155, 'Miranda', 2005, 'F', 2357), +(185156, 'Ana', 2005, 'F', 2353), +(185157, 'Laura', 2005, 'F', 2347), +(185158, 'Alicia', 2005, 'F', 2337), +(185159, 'Daisy', 2005, 'F', 2321), +(185160, 'Ciara', 2005, 'F', 2320), +(185161, 'Margaret', 2005, 'F', 2311), +(185162, 'Zoey', 2005, 'F', 2270), +(185163, 'Aubrey', 2005, 'F', 2263), +(185164, 'Skylar', 2005, 'F', 2239), +(185165, 'Genesis', 2005, 'F', 2223), +(185166, 'Kylee', 2005, 'F', 2196), +(185167, 'Courtney', 2005, 'F', 2195), +(185168, 'Payton', 2005, 'F', 2183), +(185169, 'Kiara', 2005, 'F', 2149), +(185170, 'Alexia', 2005, 'F', 2124), +(185171, 'Jillian', 2005, 'F', 2121), +(185172, 'Lindsey', 2005, 'F', 2094), +(185173, 'Mckenzie', 2005, 'F', 2077), +(185174, 'Karen', 2005, 'F', 2063), +(185175, 'Mariana', 2005, 'F', 2059), +(185176, 'Giselle', 2005, 'F', 2057), +(185177, 'Valerie', 2005, 'F', 2033), +(185178, 'Serenity', 2005, 'F', 1985), +(185179, 'Sabrina', 2005, 'F', 1977), +(185180, 'Alana', 2005, 'F', 1972), +(185181, 'Cheyenne', 2005, 'F', 1965), +(185182, 'Lucy', 2005, 'F', 1961), +(185183, 'Kelsey', 2005, 'F', 1960), +(185184, 'Kelly', 2005, 'F', 1951), +(185185, 'Sadie', 2005, 'F', 1951), +(185186, 'Juliana', 2005, 'F', 1947), +(185187, 'Bianca', 2005, 'F', 1923), +(185188, 'Nadia', 2005, 'F', 1920), +(185189, 'Kyra', 2005, 'F', 1912), +(185190, 'Jasmin', 2005, 'F', 1905), +(185191, 'Lilly', 2005, 'F', 1904), +(185192, 'Caitlyn', 2005, 'F', 1896), +(185193, 'Ellie', 2005, 'F', 1888), +(185194, 'Hope', 2005, 'F', 1887), +(185195, 'Cassandra', 2005, 'F', 1866), +(185196, 'Jazmin', 2005, 'F', 1864), +(185197, 'Crystal', 2005, 'F', 1854), +(185198, 'Jordyn', 2005, 'F', 1843), +(185199, 'Cassidy', 2005, 'F', 1833), +(185200, 'Delaney', 2005, 'F', 1828), +(185201, 'Liliana', 2005, 'F', 1795), +(185202, 'Angelica', 2005, 'F', 1788), +(185203, 'Caitlin', 2005, 'F', 1774), +(185204, 'Kyla', 2005, 'F', 1768), +(185205, 'Adrianna', 2005, 'F', 1767), +(185206, 'Tiffany', 2005, 'F', 1765), +(185207, 'Jayla', 2005, 'F', 1762), +(185208, 'Abby', 2005, 'F', 1753), +(185209, 'Carly', 2005, 'F', 1747), +(185210, 'Chelsea', 2005, 'F', 1734), +(185211, 'Erica', 2005, 'F', 1717), +(185212, 'Camila', 2005, 'F', 1716), +(185213, 'Karla', 2005, 'F', 1713), +(185214, 'Makenzie', 2005, 'F', 1711), +(185215, 'Paris', 2005, 'F', 1692), +(185216, 'Veronica', 2005, 'F', 1678), +(185217, 'Cadence', 2005, 'F', 1668), +(185218, 'Bella', 2005, 'F', 1659), +(185219, 'Brenda', 2005, 'F', 1659), +(185220, 'Mckenna', 2005, 'F', 1657), +(185221, 'Maggie', 2005, 'F', 1656), +(185222, 'Karina', 2005, 'F', 1630), +(185223, 'Julianna', 2005, 'F', 1617), +(185224, 'Makenna', 2005, 'F', 1617), +(185225, 'Erika', 2005, 'F', 1616), +(185226, 'Esmeralda', 2005, 'F', 1615), +(185227, 'Elena', 2005, 'F', 1602), +(185228, 'Jamie', 2005, 'F', 1599), +(185229, 'Mallory', 2005, 'F', 1585), +(185230, 'Alejandra', 2005, 'F', 1583), +(185231, 'Cynthia', 2005, 'F', 1571), +(185232, 'Ariel', 2005, 'F', 1566), +(185233, 'Vivian', 2005, 'F', 1558), +(185234, 'Jayden', 2005, 'F', 1518), +(185235, 'Amaya', 2005, 'F', 1513), +(185236, 'Dakota', 2005, 'F', 1511), +(185237, 'Bethany', 2005, 'F', 1502), +(185238, 'Elise', 2005, 'F', 1494), +(185239, 'Josephine', 2005, 'F', 1488), +(185240, 'Haylee', 2005, 'F', 1481), +(185241, 'Aniyah', 2005, 'F', 1480), +(185242, 'Keira', 2005, 'F', 1467), +(185243, 'Aliyah', 2005, 'F', 1458), +(185244, 'Laila', 2005, 'F', 1452), +(185245, 'Camryn', 2005, 'F', 1442), +(185246, 'Fatima', 2005, 'F', 1422), +(185247, 'Reese', 2005, 'F', 1413), +(185248, 'Monica', 2005, 'F', 1409), +(185249, 'Annabelle', 2005, 'F', 1403), +(185250, 'Lindsay', 2005, 'F', 1398), +(185251, 'Kira', 2005, 'F', 1387), +(185252, 'Selena', 2005, 'F', 1374), +(185253, 'Macy', 2005, 'F', 1368), +(185254, 'Hanna', 2005, 'F', 1342), +(185255, 'Heaven', 2005, 'F', 1331), +(185256, 'Katrina', 2005, 'F', 1326), +(185257, 'Clara', 2005, 'F', 1322), +(185258, 'Jadyn', 2005, 'F', 1312), +(185259, 'Jazmine', 2005, 'F', 1311), +(185260, 'Stella', 2005, 'F', 1308), +(185261, 'Kailey', 2005, 'F', 1298), +(185262, 'Nina', 2005, 'F', 1287), +(185263, 'Alaina', 2005, 'F', 1281), +(185264, 'Allie', 2005, 'F', 1280), +(185265, 'Rebekah', 2005, 'F', 1280), +(185266, 'Guadalupe', 2005, 'F', 1272), +(185267, 'Allyson', 2005, 'F', 1271), +(185268, 'Savanna', 2005, 'F', 1269), +(185269, 'Piper', 2005, 'F', 1258), +(185270, 'Alison', 2005, 'F', 1256), +(185271, 'Aniya', 2005, 'F', 1246), +(185272, 'Kendra', 2005, 'F', 1241), +(185273, 'Cameron', 2005, 'F', 1240), +(185274, 'Eleanor', 2005, 'F', 1237), +(185275, 'Hayley', 2005, 'F', 1234), +(185276, 'Kayleigh', 2005, 'F', 1233), +(185277, 'Carmen', 2005, 'F', 1227), +(185278, 'Kara', 2005, 'F', 1225), +(185279, 'Tessa', 2005, 'F', 1222), +(185280, 'Ashlee', 2005, 'F', 1218), +(185281, 'Meghan', 2005, 'F', 1218), +(185282, 'Celeste', 2005, 'F', 1202), +(185283, 'Kamryn', 2005, 'F', 1199), +(185284, 'Brooklynn', 2005, 'F', 1197), +(185285, 'Nora', 2005, 'F', 1197), +(185286, 'Brittany', 2005, 'F', 1193), +(185287, 'Lizbeth', 2005, 'F', 1192), +(185288, 'Julissa', 2005, 'F', 1190), +(185289, 'Cecilia', 2005, 'F', 1187), +(185290, 'Esther', 2005, 'F', 1187), +(185291, 'Jaden', 2005, 'F', 1187), +(185292, 'Miriam', 2005, 'F', 1182), +(185293, 'Julie', 2005, 'F', 1181), +(185294, 'Joanna', 2005, 'F', 1166), +(185295, 'Desiree', 2005, 'F', 1160), +(185296, 'Asia', 2005, 'F', 1159), +(185297, 'Michaela', 2005, 'F', 1152), +(185298, 'Alayna', 2005, 'F', 1148), +(185299, 'Alivia', 2005, 'F', 1141), +(185300, 'Camille', 2005, 'F', 1139), +(185301, 'Carolina', 2005, 'F', 1132), +(185302, 'Anastasia', 2005, 'F', 1125), +(185303, 'Tatiana', 2005, 'F', 1124), +(185304, 'Katelynn', 2005, 'F', 1112), +(185305, 'Ashlynn', 2005, 'F', 1107), +(185306, 'Estrella', 2005, 'F', 1104), +(185307, 'Kaylie', 2005, 'F', 1100), +(185308, 'Emely', 2005, 'F', 1079), +(185309, 'Sienna', 2005, 'F', 1075), +(185310, 'Heather', 2005, 'F', 1066), +(185311, 'Diamond', 2005, 'F', 1057), +(185312, 'April', 2005, 'F', 1053), +(185313, 'Shannon', 2005, 'F', 1052), +(185314, 'Eliana', 2005, 'F', 1050), +(185315, 'Jayda', 2005, 'F', 1045), +(185316, 'Eliza', 2005, 'F', 1044), +(185317, 'Ivy', 2005, 'F', 1044), +(185318, 'Leila', 2005, 'F', 1041), +(185319, 'Holly', 2005, 'F', 1040), +(185320, 'Paola', 2005, 'F', 1040), +(185321, 'Melody', 2005, 'F', 1037), +(185322, 'Natasha', 2005, 'F', 1028), +(185323, 'Claudia', 2005, 'F', 1021), +(185324, 'Daniella', 2005, 'F', 1021), +(185325, 'Skyler', 2005, 'F', 1018), +(185326, 'Josie', 2005, 'F', 1017), +(185327, 'Sandra', 2005, 'F', 1017), +(185328, 'Nancy', 2005, 'F', 1013), +(185329, 'Georgia', 2005, 'F', 1007), +(185330, 'Callie', 2005, 'F', 1004), +(185331, 'Kirsten', 2005, 'F', 1002), +(185332, 'Eden', 2005, 'F', 1000), +(185333, 'Kaitlin', 2005, 'F', 1000), +(185334, 'Heidi', 2005, 'F', 992), +(185335, 'Cindy', 2005, 'F', 985), +(185336, 'Kristen', 2005, 'F', 983), +(185337, 'Annika', 2005, 'F', 979), +(185338, 'Itzel', 2005, 'F', 975), +(185339, 'Bridget', 2005, 'F', 971), +(185340, 'Madeleine', 2005, 'F', 968), +(185341, 'Rose', 2005, 'F', 964), +(185342, 'Yasmin', 2005, 'F', 963), +(185343, 'Helen', 2005, 'F', 960), +(185344, 'Emilee', 2005, 'F', 954), +(185345, 'Leilani', 2005, 'F', 953), +(185346, 'Aurora', 2005, 'F', 949), +(185347, 'Kiera', 2005, 'F', 942), +(185348, 'Rylie', 2005, 'F', 940), +(185349, 'Kathleen', 2005, 'F', 933), +(185350, 'Marisol', 2005, 'F', 928), +(185351, 'Tara', 2005, 'F', 925), +(185352, 'Denise', 2005, 'F', 917), +(185353, 'Tatum', 2005, 'F', 915), +(185354, 'Kadence', 2005, 'F', 910), +(185355, 'Dayanara', 2005, 'F', 909), +(185356, 'Priscilla', 2005, 'F', 906), +(185357, 'Ruth', 2005, 'F', 906), +(185358, 'Kristina', 2005, 'F', 902), +(185359, 'Raven', 2005, 'F', 900), +(185360, 'Ryleigh', 2005, 'F', 899), +(185361, 'Wendy', 2005, 'F', 899), +(185362, 'Anahi', 2005, 'F', 893), +(185363, 'Ximena', 2005, 'F', 889), +(185364, 'Talia', 2005, 'F', 886), +(185365, 'Brenna', 2005, 'F', 883), +(185366, 'Patricia', 2005, 'F', 877), +(185367, 'Iris', 2005, 'F', 876), +(185368, 'Madalyn', 2005, 'F', 875), +(185369, 'Kaydence', 2005, 'F', 873), +(185370, 'Kassandra', 2005, 'F', 869), +(185371, 'Nyla', 2005, 'F', 867), +(185372, 'Sage', 2005, 'F', 867), +(185373, 'Lexi', 2005, 'F', 866), +(185374, 'Perla', 2005, 'F', 865), +(185375, 'Serena', 2005, 'F', 865), +(185376, 'Lucia', 2005, 'F', 852), +(185377, 'Meredith', 2005, 'F', 852), +(185378, 'Alissa', 2005, 'F', 849), +(185379, 'Violet', 2005, 'F', 846), +(185380, 'Janiya', 2005, 'F', 844), +(185381, 'Nayeli', 2005, 'F', 844), +(185382, 'Lola', 2005, 'F', 843), +(185383, 'Sasha', 2005, 'F', 843), +(185384, 'Fiona', 2005, 'F', 842), +(185385, 'Harley', 2005, 'F', 841), +(185386, 'Angie', 2005, 'F', 836), +(185387, 'Annie', 2005, 'F', 835), +(185388, 'Sidney', 2005, 'F', 834), +(185389, 'Izabella', 2005, 'F', 829), +(185390, 'Samara', 2005, 'F', 823), +(185391, 'Madisyn', 2005, 'F', 819), +(185392, 'Kiana', 2005, 'F', 817), +(185393, 'Mercedes', 2005, 'F', 816), +(185394, 'Dulce', 2005, 'F', 815), +(185395, 'Kiley', 2005, 'F', 814), +(185396, 'Shayla', 2005, 'F', 814), +(185397, 'Jimena', 2005, 'F', 811), +(185398, 'Litzy', 2005, 'F', 810), +(185399, 'Alina', 2005, 'F', 808), +(185400, 'Kyleigh', 2005, 'F', 808), +(185401, 'Marisa', 2005, 'F', 800), +(185402, 'Rachael', 2005, 'F', 797), +(185403, 'Fernanda', 2005, 'F', 794), +(185404, 'Genevieve', 2005, 'F', 794), +(185405, 'Tori', 2005, 'F', 793), +(185406, 'Christine', 2005, 'F', 792), +(185407, 'Dana', 2005, 'F', 790), +(185408, 'Harmony', 2005, 'F', 788), +(185409, 'Paulina', 2005, 'F', 788), +(185410, 'Yesenia', 2005, 'F', 786), +(185411, 'Lesly', 2005, 'F', 783), +(185412, 'Nia', 2005, 'F', 781), +(185413, 'Maritza', 2005, 'F', 780), +(185414, 'Hailee', 2005, 'F', 778), +(185415, 'Lauryn', 2005, 'F', 777), +(185416, 'Johanna', 2005, 'F', 776), +(185417, 'Rosa', 2005, 'F', 775), +(185418, 'Casey', 2005, 'F', 769), +(185419, 'Joselyn', 2005, 'F', 761), +(185420, 'Marina', 2005, 'F', 758), +(185421, 'Imani', 2005, 'F', 757), +(185422, 'Logan', 2005, 'F', 757), +(185423, 'Cierra', 2005, 'F', 756), +(185424, 'Alice', 2005, 'F', 753), +(185425, 'Kaylin', 2005, 'F', 750), +(185426, 'Hayden', 2005, 'F', 746), +(185427, 'Linda', 2005, 'F', 745), +(185428, 'Malia', 2005, 'F', 741), +(185429, 'Clarissa', 2005, 'F', 737), +(185430, 'Halle', 2005, 'F', 735), +(185431, 'Brynn', 2005, 'F', 734), +(185432, 'Kassidy', 2005, 'F', 733), +(185433, 'Scarlett', 2005, 'F', 733), +(185434, 'Skye', 2005, 'F', 733), +(185435, 'Phoebe', 2005, 'F', 730), +(185436, 'Viviana', 2005, 'F', 721), +(185437, 'America', 2005, 'F', 719), +(185438, 'Krystal', 2005, 'F', 719), +(185439, 'Britney', 2005, 'F', 717), +(185440, 'Gloria', 2005, 'F', 715), +(185441, 'Francesca', 2005, 'F', 714), +(185442, 'Rubi', 2005, 'F', 714), +(185443, 'Amya', 2005, 'F', 712), +(185444, 'Emilia', 2005, 'F', 710), +(185445, 'Anne', 2005, 'F', 709), +(185446, 'Shania', 2005, 'F', 707), +(185447, 'Lana', 2005, 'F', 705), +(185448, 'Lacey', 2005, 'F', 696), +(185449, 'Elaina', 2005, 'F', 693), +(185450, 'Ainsley', 2005, 'F', 691), +(185451, 'Haylie', 2005, 'F', 686), +(185452, 'Emerson', 2005, 'F', 683), +(185453, 'Madyson', 2005, 'F', 683), +(185454, 'Elisabeth', 2005, 'F', 682), +(185455, 'Virginia', 2005, 'F', 681), +(185456, 'Anya', 2005, 'F', 680), +(185457, 'Bryanna', 2005, 'F', 680), +(185458, 'Lila', 2005, 'F', 679), +(185459, 'Maddison', 2005, 'F', 679), +(185460, 'Ryan', 2005, 'F', 676), +(185461, 'Kaleigh', 2005, 'F', 675), +(185462, 'Cora', 2005, 'F', 672), +(185463, 'Teresa', 2005, 'F', 671), +(185464, 'Tiana', 2005, 'F', 668), +(185465, 'Nataly', 2005, 'F', 666), +(185466, 'Taryn', 2005, 'F', 666), +(185467, 'Macie', 2005, 'F', 664), +(185468, 'Alessandra', 2005, 'F', 662), +(185469, 'Miracle', 2005, 'F', 662), +(185470, 'Kiersten', 2005, 'F', 661), +(185471, 'Athena', 2005, 'F', 659), +(185472, 'Valentina', 2005, 'F', 656), +(185473, 'Brielle', 2005, 'F', 655), +(185474, 'Sarai', 2005, 'F', 655), +(185475, 'Hallie', 2005, 'F', 654), +(185476, 'Jaiden', 2005, 'F', 653), +(185477, 'Regan', 2005, 'F', 653), +(185478, 'Alyson', 2005, 'F', 652), +(185479, 'Noelle', 2005, 'F', 652), +(185480, 'Whitney', 2005, 'F', 652), +(185481, 'Marley', 2005, 'F', 651), +(185482, 'Jane', 2005, 'F', 650), +(185483, 'Lena', 2005, 'F', 650), +(185484, 'Lilian', 2005, 'F', 650), +(185485, 'Raquel', 2005, 'F', 648), +(185486, 'Kaitlynn', 2005, 'F', 645), +(185487, 'Tania', 2005, 'F', 645), +(185488, 'Deanna', 2005, 'F', 639), +(185489, 'Janiyah', 2005, 'F', 639), +(185490, 'Laney', 2005, 'F', 635), +(185491, 'Teagan', 2005, 'F', 635), +(185492, 'Amari', 2005, 'F', 633), +(185493, 'Anaya', 2005, 'F', 633), +(185494, 'Aileen', 2005, 'F', 632), +(185495, 'Tabitha', 2005, 'F', 630), +(185496, 'Carley', 2005, 'F', 627), +(185497, 'Cristina', 2005, 'F', 627), +(185498, 'Ayanna', 2005, 'F', 626), +(185499, 'Carolyn', 2005, 'F', 625), +(185500, 'Emilie', 2005, 'F', 623), +(185501, 'Alisha', 2005, 'F', 622), +(185502, 'Liberty', 2005, 'F', 622), +(185503, 'Raegan', 2005, 'F', 619), +(185504, 'Alanna', 2005, 'F', 618), +(185505, 'Lisa', 2005, 'F', 618), +(185506, 'India', 2005, 'F', 612), +(185507, 'Anika', 2005, 'F', 611), +(185508, 'Jenny', 2005, 'F', 611), +(185509, 'Madilyn', 2005, 'F', 610), +(185510, 'Baylee', 2005, 'F', 606), +(185511, 'Jaelyn', 2005, 'F', 606), +(185512, 'Abbigail', 2005, 'F', 601), +(185513, 'Lillie', 2005, 'F', 598), +(185514, 'Elle', 2005, 'F', 594), +(185515, 'Yadira', 2005, 'F', 593), +(185516, 'Martha', 2005, 'F', 592), +(185517, 'Marie', 2005, 'F', 590), +(185518, 'Natalee', 2005, 'F', 590), +(185519, 'Carla', 2005, 'F', 584), +(185520, 'Joy', 2005, 'F', 582), +(185521, 'Kailyn', 2005, 'F', 582), +(185522, 'Presley', 2005, 'F', 581), +(185523, 'Tamia', 2005, 'F', 581), +(185524, 'Laci', 2005, 'F', 576), +(185525, 'Mckayla', 2005, 'F', 575), +(185526, 'Hazel', 2005, 'F', 574), +(185527, 'Janelle', 2005, 'F', 571), +(185528, 'Destinee', 2005, 'F', 566), +(185529, 'Ashleigh', 2005, 'F', 564), +(185530, 'Haleigh', 2005, 'F', 562), +(185531, 'Kaelyn', 2005, 'F', 562), +(185532, 'Isis', 2005, 'F', 561), +(185533, 'Maia', 2005, 'F', 558), +(185534, 'Norah', 2005, 'F', 557), +(185535, 'Jaqueline', 2005, 'F', 556), +(185536, 'Kali', 2005, 'F', 552), +(185537, 'Danna', 2005, 'F', 548), +(185538, 'Sylvia', 2005, 'F', 546), +(185539, 'Alexus', 2005, 'F', 545), +(185540, 'Larissa', 2005, 'F', 544), +(185541, 'Dominique', 2005, 'F', 542), +(185542, 'Willow', 2005, 'F', 542), +(185543, 'Elisa', 2005, 'F', 541), +(185544, 'Isabela', 2005, 'F', 538), +(185545, 'Kristin', 2005, 'F', 538), +(185546, 'London', 2005, 'F', 538), +(185547, 'Melany', 2005, 'F', 537), +(185548, 'Justice', 2005, 'F', 536), +(185549, 'Macey', 2005, 'F', 536), +(185550, 'Marlene', 2005, 'F', 536), +(185551, 'Carlie', 2005, 'F', 532), +(185552, 'Helena', 2005, 'F', 529), +(185553, 'Renee', 2005, 'F', 529), +(185554, 'Precious', 2005, 'F', 528), +(185555, 'Yasmine', 2005, 'F', 527), +(185556, 'Aspen', 2005, 'F', 525), +(185557, 'Judith', 2005, 'F', 525), +(185558, 'Madelynn', 2005, 'F', 524), +(185559, 'Brittney', 2005, 'F', 523), +(185560, 'Cara', 2005, 'F', 521), +(185561, 'Simone', 2005, 'F', 521), +(185562, 'Adeline', 2005, 'F', 520), +(185563, 'Tia', 2005, 'F', 520), +(185564, 'Daphne', 2005, 'F', 519), +(185565, 'Ellen', 2005, 'F', 516), +(185566, 'Lia', 2005, 'F', 516), +(185567, 'Monique', 2005, 'F', 515), +(185568, 'Kaley', 2005, 'F', 513), +(185569, 'Penelope', 2005, 'F', 513), +(185570, 'Dayana', 2005, 'F', 512), +(185571, 'Janet', 2005, 'F', 512), +(185572, 'Marilyn', 2005, 'F', 511), +(185573, 'Melina', 2005, 'F', 510), +(185574, 'Kierra', 2005, 'F', 508), +(185575, 'Skyla', 2005, 'F', 508), +(185576, 'Gwendolyn', 2005, 'F', 507), +(185577, 'Jessie', 2005, 'F', 507), +(185578, 'Mikaela', 2005, 'F', 507), +(185579, 'Nathalie', 2005, 'F', 503), +(185580, 'Zoie', 2005, 'F', 502), +(185581, 'Amara', 2005, 'F', 500), +(185582, 'Aubree', 2005, 'F', 499), +(185583, 'Kailee', 2005, 'F', 499), +(185584, 'Maci', 2005, 'F', 499), +(185585, 'Sharon', 2005, 'F', 499), +(185586, 'Jaida', 2005, 'F', 498), +(185587, 'Kenzie', 2005, 'F', 498), +(185588, 'Carissa', 2005, 'F', 497), +(185589, 'Lilliana', 2005, 'F', 495), +(185590, 'Irene', 2005, 'F', 489), +(185591, 'Lexie', 2005, 'F', 489), +(185592, 'Lorena', 2005, 'F', 488), +(185593, 'Sonia', 2005, 'F', 488), +(185594, 'Janessa', 2005, 'F', 487), +(185595, 'Tiara', 2005, 'F', 487), +(185596, 'Araceli', 2005, 'F', 486), +(185597, 'Delilah', 2005, 'F', 486), +(185598, 'Juliet', 2005, 'F', 484), +(185599, 'Kimora', 2005, 'F', 481), +(185600, 'Krista', 2005, 'F', 481), +(185601, 'Amira', 2005, 'F', 479), +(185602, 'Susan', 2005, 'F', 479), +(185603, 'Alma', 2005, 'F', 477), +(185604, 'Luna', 2005, 'F', 477), +(185605, 'Regina', 2005, 'F', 476), +(185606, 'Gina', 2005, 'F', 475), +(185607, 'Jazmyn', 2005, 'F', 475), +(185608, 'Karissa', 2005, 'F', 474), +(185609, 'Maribel', 2005, 'F', 474), +(185610, 'Kasey', 2005, 'F', 473), +(185611, 'Lea', 2005, 'F', 473), +(185612, 'Patience', 2005, 'F', 472), +(185613, 'Reyna', 2005, 'F', 472), +(185614, 'Luz', 2005, 'F', 471), +(185615, 'Shaniya', 2005, 'F', 470), +(185616, 'Elaine', 2005, 'F', 469), +(185617, 'Saniya', 2005, 'F', 469), +(185618, 'Dylan', 2005, 'F', 468), +(185619, 'Jaidyn', 2005, 'F', 467), +(185620, 'Kenya', 2005, 'F', 465), +(185621, 'Danica', 2005, 'F', 464), +(185622, 'Arely', 2005, 'F', 461), +(185623, 'Tess', 2005, 'F', 461), +(185624, 'Carlee', 2005, 'F', 459), +(185625, 'Cristal', 2005, 'F', 459), +(185626, 'Mariam', 2005, 'F', 459), +(185627, 'Janae', 2005, 'F', 458), +(185628, 'Jolie', 2005, 'F', 457), +(185629, 'Katlyn', 2005, 'F', 457), +(185630, 'Pamela', 2005, 'F', 455), +(185631, 'Abbey', 2005, 'F', 452), +(185632, 'Arielle', 2005, 'F', 451), +(185633, 'Cali', 2005, 'F', 450), +(185634, 'Hadley', 2005, 'F', 450), +(185635, 'Haven', 2005, 'F', 450), +(185636, 'Kayden', 2005, 'F', 450), +(185637, 'Abbie', 2005, 'F', 445), +(185638, 'Edith', 2005, 'F', 445), +(185639, 'Karlee', 2005, 'F', 444), +(185640, 'Kennedi', 2005, 'F', 444), +(185641, 'Juliette', 2005, 'F', 443), +(185642, 'Mayra', 2005, 'F', 443), +(185643, 'Noemi', 2005, 'F', 443), +(185644, 'Monserrat', 2005, 'F', 441), +(185645, 'Cheyanne', 2005, 'F', 440), +(185646, 'Emmalee', 2005, 'F', 439), +(185647, 'Theresa', 2005, 'F', 439), +(185648, 'Kayley', 2005, 'F', 437), +(185649, 'Tamara', 2005, 'F', 437), +(185650, 'Jamya', 2005, 'F', 435), +(185651, 'Kaya', 2005, 'F', 434), +(185652, 'Ann', 2005, 'F', 433), +(185653, 'Jazlyn', 2005, 'F', 432), +(185654, 'Amani', 2005, 'F', 430), +(185655, 'Damaris', 2005, 'F', 429), +(185656, 'Ingrid', 2005, 'F', 429), +(185657, 'Tyra', 2005, 'F', 428), +(185658, 'Yazmin', 2005, 'F', 428), +(185659, 'Bailee', 2005, 'F', 427), +(185660, 'Jaylin', 2005, 'F', 426), +(185661, 'Stacy', 2005, 'F', 426), +(185662, 'Deborah', 2005, 'F', 425), +(185663, 'Jacquelyn', 2005, 'F', 425), +(185664, 'Ally', 2005, 'F', 424), +(185665, 'Ansley', 2005, 'F', 421), +(185666, 'Charity', 2005, 'F', 421), +(185667, 'Gisselle', 2005, 'F', 421), +(185668, 'Annalise', 2005, 'F', 420), +(185669, 'Catalina', 2005, 'F', 420), +(185670, 'Cecelia', 2005, 'F', 420), +(185671, 'Gillian', 2005, 'F', 420), +(185672, 'Kaylyn', 2005, 'F', 419), +(185673, 'Meagan', 2005, 'F', 418), +(185674, 'Eve', 2005, 'F', 417), +(185675, 'Kendal', 2005, 'F', 417), +(185676, 'Angelique', 2005, 'F', 416), +(185677, 'Ayla', 2005, 'F', 416), +(185678, 'Hana', 2005, 'F', 416), +(185679, 'Paula', 2005, 'F', 416), +(185680, 'Lizeth', 2005, 'F', 415), +(185681, 'Mariela', 2005, 'F', 415), +(185682, 'Mara', 2005, 'F', 414), +(185683, 'Thalia', 2005, 'F', 412), +(185684, 'Clare', 2005, 'F', 411), +(185685, 'Jaylynn', 2005, 'F', 411), +(185686, 'Kaylynn', 2005, 'F', 411), +(185687, 'Celia', 2005, 'F', 410), +(185688, 'Lainey', 2005, 'F', 410), +(185689, 'Taniya', 2005, 'F', 409), +(185690, 'Giovanna', 2005, 'F', 408), +(185691, 'Savanah', 2005, 'F', 407), +(185692, 'Brisa', 2005, 'F', 406), +(185693, 'Quinn', 2005, 'F', 406), +(185694, 'Greta', 2005, 'F', 405), +(185695, 'Lyric', 2005, 'F', 404), +(185696, 'Aimee', 2005, 'F', 403), +(185697, 'Annabella', 2005, 'F', 403), +(185698, 'Felicity', 2005, 'F', 402), +(185699, 'Alena', 2005, 'F', 401), +(185700, 'Kaia', 2005, 'F', 401), +(185701, 'Karlie', 2005, 'F', 400), +(185702, 'Tanya', 2005, 'F', 400), +(185703, 'Karli', 2005, 'F', 398), +(185704, 'Barbara', 2005, 'F', 397), +(185705, 'Maeve', 2005, 'F', 397), +(185706, 'Aliya', 2005, 'F', 396), +(185707, 'Ashanti', 2005, 'F', 396), +(185708, 'Evelin', 2005, 'F', 396), +(185709, 'Ashly', 2005, 'F', 395), +(185710, 'Iliana', 2005, 'F', 393), +(185711, 'Jaclyn', 2005, 'F', 393), +(185712, 'Roselyn', 2005, 'F', 392), +(185713, 'Campbell', 2005, 'F', 389), +(185714, 'Marianna', 2005, 'F', 388), +(185715, 'Jakayla', 2005, 'F', 387), +(185716, 'Aryanna', 2005, 'F', 386), +(185717, 'Elyse', 2005, 'F', 386), +(185718, 'Aylin', 2005, 'F', 385), +(185719, 'Stephany', 2005, 'F', 385), +(185720, 'Amiyah', 2005, 'F', 384), +(185721, 'Parker', 2005, 'F', 384), +(185722, 'Aria', 2005, 'F', 383), +(185723, 'Liana', 2005, 'F', 383), +(185724, 'Cassie', 2005, 'F', 382), +(185725, 'Lesley', 2005, 'F', 382), +(185726, 'Ayana', 2005, 'F', 381), +(185727, 'Ryann', 2005, 'F', 381), +(185728, 'Eileen', 2005, 'F', 380), +(185729, 'Makena', 2005, 'F', 380), +(185730, 'Sydnee', 2005, 'F', 379), +(185731, 'Brandy', 2005, 'F', 378), +(185732, 'Kaila', 2005, 'F', 378), +(185733, 'Zaria', 2005, 'F', 378), +(185734, 'Sherlyn', 2005, 'F', 377), +(185735, 'Tianna', 2005, 'F', 377), +(185736, 'Chaya', 2005, 'F', 373), +(185737, 'Gia', 2005, 'F', 372), +(185738, 'Adrienne', 2005, 'F', 371), +(185739, 'Aisha', 2005, 'F', 371), +(185740, 'Joslyn', 2005, 'F', 371), +(185741, 'Princess', 2005, 'F', 371), +(185742, 'Myah', 2005, 'F', 370), +(185743, 'Belinda', 2005, 'F', 369), +(185744, 'Giana', 2005, 'F', 368), +(185745, 'Aubrie', 2005, 'F', 367), +(185746, 'Aleah', 2005, 'F', 366), +(185747, 'Aracely', 2005, 'F', 366), +(185748, 'Taliyah', 2005, 'F', 366), +(185749, 'Aiyana', 2005, 'F', 365), +(185750, 'Mollie', 2005, 'F', 365), +(185751, 'Carina', 2005, 'F', 363), +(185752, 'Rhiannon', 2005, 'F', 362), +(185753, 'Trista', 2005, 'F', 362), +(185754, 'Esperanza', 2005, 'F', 361), +(185755, 'Harper', 2005, 'F', 361), +(185756, 'Saige', 2005, 'F', 361), +(185757, 'Rosemary', 2005, 'F', 360), +(185758, 'Deja', 2005, 'F', 358), +(185759, 'Salma', 2005, 'F', 358), +(185760, 'Tyler', 2005, 'F', 357), +(185761, 'Alisa', 2005, 'F', 356), +(185762, 'Leanna', 2005, 'F', 356), +(185763, 'Frances', 2005, 'F', 355), +(185764, 'Addyson', 2005, 'F', 354), +(185765, 'Tatyana', 2005, 'F', 354), +(185766, 'Abigayle', 2005, 'F', 353), +(185767, 'Frida', 2005, 'F', 352), +(185768, 'Carol', 2005, 'F', 351), +(185769, 'Julianne', 2005, 'F', 351), +(185770, 'Kelsie', 2005, 'F', 351), +(185771, 'Elsa', 2005, 'F', 350), +(185772, 'Gretchen', 2005, 'F', 348), +(185773, 'Hailie', 2005, 'F', 348), +(185774, 'Shea', 2005, 'F', 348), +(185775, 'Miah', 2005, 'F', 347), +(185776, 'Rowan', 2005, 'F', 347), +(185777, 'Kaiya', 2005, 'F', 346), +(185778, 'Aliza', 2005, 'F', 345), +(185779, 'Amiya', 2005, 'F', 345), +(185780, 'Shyanne', 2005, 'F', 345), +(185781, 'Xiomara', 2005, 'F', 344), +(185782, 'Mattie', 2005, 'F', 341), +(185783, 'Annette', 2005, 'F', 340), +(185784, 'Journey', 2005, 'F', 340), +(185785, 'Colleen', 2005, 'F', 339), +(185786, 'Annabel', 2005, 'F', 338), +(185787, 'Yareli', 2005, 'F', 337), +(185788, 'Ashton', 2005, 'F', 334), +(185789, 'Brandi', 2005, 'F', 333), +(185790, 'Gracelyn', 2005, 'F', 333), +(185791, 'Desirae', 2005, 'F', 332), +(185792, 'Laurel', 2005, 'F', 332), +(185793, 'Libby', 2005, 'F', 332), +(185794, 'Leticia', 2005, 'F', 331), +(185795, 'Marlee', 2005, 'F', 331), +(185796, 'Tina', 2005, 'F', 331), +(185797, 'Destini', 2005, 'F', 330), +(185798, 'Jacey', 2005, 'F', 329), +(185799, 'Johana', 2005, 'F', 329), +(185800, 'Karly', 2005, 'F', 329), +(185801, 'Corinne', 2005, 'F', 328), +(185802, 'Jaycee', 2005, 'F', 327), +(185803, 'Jaylene', 2005, 'F', 327), +(185804, 'Saniyah', 2005, 'F', 327), +(185805, 'Ada', 2005, 'F', 326), +(185806, 'Arabella', 2005, 'F', 326), +(185807, 'Rebeca', 2005, 'F', 326), +(185808, 'Chelsey', 2005, 'F', 325), +(185809, 'Joyce', 2005, 'F', 324), +(185810, 'Jaliyah', 2005, 'F', 323), +(185811, 'Sarahi', 2005, 'F', 323), +(185812, 'Justine', 2005, 'F', 322), +(185813, 'Lucille', 2005, 'F', 322), +(185814, 'Abril', 2005, 'F', 321), +(185815, 'Mikalah', 2005, 'F', 321), +(185816, 'Ciera', 2005, 'F', 320), +(185817, 'Kayli', 2005, 'F', 320), +(185818, 'Lorelei', 2005, 'F', 320), +(185819, 'Chasity', 2005, 'F', 319), +(185820, 'Lara', 2005, 'F', 319), +(185821, 'Magdalena', 2005, 'F', 319), +(185822, 'Dalia', 2005, 'F', 318), +(185823, 'Emery', 2005, 'F', 318), +(185824, 'Keely', 2005, 'F', 318), +(185825, 'Madalynn', 2005, 'F', 318), +(185826, 'Maura', 2005, 'F', 318), +(185827, 'Karley', 2005, 'F', 316), +(185828, 'Karol', 2005, 'F', 316), +(185829, 'Raina', 2005, 'F', 316), +(185830, 'Arleth', 2005, 'F', 314), +(185831, 'Blanca', 2005, 'F', 313), +(185832, 'Sanaa', 2005, 'F', 312), +(185833, 'Toni', 2005, 'F', 312), +(185834, 'Alize', 2005, 'F', 311), +(185835, 'Yahaira', 2005, 'F', 311), +(185836, 'Amelie', 2005, 'F', 309), +(185837, 'Jewel', 2005, 'F', 309), +(185838, 'Kaylah', 2005, 'F', 309), +(185839, 'Kaylen', 2005, 'F', 308), +(185840, 'Jaylee', 2005, 'F', 307), +(185841, 'Antonia', 2005, 'F', 306), +(185842, 'Cayla', 2005, 'F', 306), +(185843, 'Arlene', 2005, 'F', 305), +(185844, 'Donna', 2005, 'F', 305), +(185845, 'Makaila', 2005, 'F', 304), +(185846, 'Kaliyah', 2005, 'F', 303), +(185847, 'Yvette', 2005, 'F', 303), +(185848, 'Alysa', 2005, 'F', 302), +(185849, 'Carrie', 2005, 'F', 302), +(185850, 'Paloma', 2005, 'F', 302), +(185851, 'Katharine', 2005, 'F', 301), +(185852, 'Moriah', 2005, 'F', 301), +(185853, 'Shayna', 2005, 'F', 301), +(185854, 'Kianna', 2005, 'F', 300), +(185855, 'Lacie', 2005, 'F', 299), +(185856, 'Shaylee', 2005, 'F', 299), +(185857, 'Breana', 2005, 'F', 298), +(185858, 'Danika', 2005, 'F', 298), +(185859, 'Jenifer', 2005, 'F', 298), +(185860, 'Karma', 2005, 'F', 298), +(185861, 'Micaela', 2005, 'F', 297), +(185862, 'Bria', 2005, 'F', 296), +(185863, 'Kenia', 2005, 'F', 296), +(185864, 'Yaritza', 2005, 'F', 296), +(185865, 'Meadow', 2005, 'F', 295), +(185866, 'Micah', 2005, 'F', 295), +(185867, 'Rayna', 2005, 'F', 295), +(185868, 'Abigale', 2005, 'F', 294), +(185869, 'Aleena', 2005, 'F', 294), +(185870, 'Maliyah', 2005, 'F', 294), +(185871, 'Selina', 2005, 'F', 294), +(185872, 'Stacey', 2005, 'F', 294), +(185873, 'Jaelynn', 2005, 'F', 293), +(185874, 'Kenna', 2005, 'F', 293), +(185875, 'Lyla', 2005, 'F', 293), +(185876, 'Siena', 2005, 'F', 293), +(185877, 'Susana', 2005, 'F', 293), +(185878, 'Nicolette', 2005, 'F', 292), +(185879, 'Sandy', 2005, 'F', 292), +(185880, 'Yoselin', 2005, 'F', 292), +(185881, 'Riya', 2005, 'F', 291), +(185882, 'Savana', 2005, 'F', 291), +(185883, 'Camilla', 2005, 'F', 290), +(185884, 'Devyn', 2005, 'F', 290), +(185885, 'Halie', 2005, 'F', 290), +(185886, 'Lizette', 2005, 'F', 290), +(185887, 'Aryana', 2005, 'F', 289), +(185888, 'Galilea', 2005, 'F', 289), +(185889, 'Iyana', 2005, 'F', 289), +(185890, 'Sariah', 2005, 'F', 288), +(185891, 'Abagail', 2005, 'F', 287), +(185892, 'Amina', 2005, 'F', 286), +(185893, 'Hillary', 2005, 'F', 285), +(185894, 'Kallie', 2005, 'F', 285), +(185895, 'Phoenix', 2005, 'F', 285), +(185896, 'Janiah', 2005, 'F', 284), +(185897, 'Kathy', 2005, 'F', 284), +(185898, 'Kya', 2005, 'F', 284), +(185899, 'Shirley', 2005, 'F', 284), +(185900, 'Anabelle', 2005, 'F', 283), +(185901, 'Keyla', 2005, 'F', 283), +(185902, 'Naima', 2005, 'F', 283), +(185903, 'Isabell', 2005, 'F', 281), +(185904, 'Mina', 2005, 'F', 281), +(185905, 'Nichole', 2005, 'F', 281), +(185906, 'Nyasia', 2005, 'F', 281), +(185907, 'Miya', 2005, 'F', 280), +(185908, 'Tayler', 2005, 'F', 280), +(185909, 'Charlize', 2005, 'F', 279), +(185910, 'Joana', 2005, 'F', 279), +(185911, 'Adelaide', 2005, 'F', 278), +(185912, 'Graciela', 2005, 'F', 278), +(185913, 'Jaylyn', 2005, 'F', 278), +(185914, 'Shyann', 2005, 'F', 278), +(185915, 'Devin', 2005, 'F', 277), +(185916, 'Jalyn', 2005, 'F', 277), +(185917, 'Flor', 2005, 'F', 276), +(185918, 'Mira', 2005, 'F', 276), +(185919, 'Nya', 2005, 'F', 275), +(185920, 'Jasmyn', 2005, 'F', 274), +(185921, 'Elissa', 2005, 'F', 273), +(185922, 'Mireya', 2005, 'F', 273), +(185923, 'Anneliese', 2005, 'F', 272), +(185924, 'Chanel', 2005, 'F', 272), +(185925, 'Citlali', 2005, 'F', 272), +(185926, 'Taniyah', 2005, 'F', 272), +(185927, 'Destiney', 2005, 'F', 271), +(185928, 'Yuliana', 2005, 'F', 271), +(185929, 'Alani', 2005, 'F', 270), +(185930, 'Zara', 2005, 'F', 270), +(185931, 'Angeline', 2005, 'F', 269), +(185932, 'Candace', 2005, 'F', 269), +(185933, 'Elliana', 2005, 'F', 269), +(185934, 'Elsie', 2005, 'F', 269), +(185935, 'Estefania', 2005, 'F', 269), +(185936, 'Mandy', 2005, 'F', 269), +(185937, 'Margarita', 2005, 'F', 269), +(185938, 'Unique', 2005, 'F', 268), +(185939, 'Essence', 2005, 'F', 267), +(185940, 'Maleah', 2005, 'F', 267), +(185941, 'Livia', 2005, 'F', 266), +(185942, 'Maren', 2005, 'F', 266), +(185943, 'Reina', 2005, 'F', 266), +(185944, 'Jailyn', 2005, 'F', 265), +(185945, 'Jalynn', 2005, 'F', 265), +(185946, 'Areli', 2005, 'F', 264), +(185947, 'Astrid', 2005, 'F', 264), +(185948, 'Nathaly', 2005, 'F', 264), +(185949, 'Zariah', 2005, 'F', 264), +(185950, 'Celine', 2005, 'F', 263), +(185951, 'Cloe', 2005, 'F', 263), +(185952, 'Anais', 2005, 'F', 262), +(185953, 'Selah', 2005, 'F', 262), +(185954, 'Kasandra', 2005, 'F', 261), +(185955, 'Kinsley', 2005, 'F', 261), +(185956, 'Shreya', 2005, 'F', 261), +(185957, 'Delia', 2005, 'F', 260), +(185958, 'Fabiola', 2005, 'F', 260), +(185959, 'Katarina', 2005, 'F', 260), +(185960, 'Lacy', 2005, 'F', 260), +(185961, 'Sky', 2005, 'F', 260), +(185962, 'Chana', 2005, 'F', 259), +(185963, 'Karis', 2005, 'F', 259), +(185964, 'Brylee', 2005, 'F', 258), +(185965, 'Jolette', 2005, 'F', 258), +(185966, 'Natalya', 2005, 'F', 258), +(185967, 'Armani', 2005, 'F', 257), +(185968, 'Charlie', 2005, 'F', 257), +(185969, 'Diya', 2005, 'F', 257), +(185970, 'Ebony', 2005, 'F', 257), +(185971, 'Jayleen', 2005, 'F', 257), +(185972, 'Tatianna', 2005, 'F', 257), +(185973, 'Myla', 2005, 'F', 256), +(185974, 'Anjali', 2005, 'F', 255), +(185975, 'Devon', 2005, 'F', 255), +(185976, 'Marin', 2005, 'F', 255), +(185977, 'Lucero', 2005, 'F', 254), +(185978, 'Yuridia', 2005, 'F', 254), +(185979, 'Alia', 2005, 'F', 252), +(185980, 'Jana', 2005, 'F', 252), +(185981, 'Samira', 2005, 'F', 252), +(185982, 'Addie', 2005, 'F', 251), +(185983, 'Dania', 2005, 'F', 251), +(185984, 'Drew', 2005, 'F', 251), +(185985, 'Hayleigh', 2005, 'F', 251), +(185986, 'Nikki', 2005, 'F', 251), +(185987, 'Roxana', 2005, 'F', 251), +(185988, 'Valery', 2005, 'F', 251), +(185989, 'Denisse', 2005, 'F', 250), +(185990, 'Kinsey', 2005, 'F', 250), +(185991, 'Lina', 2005, 'F', 250), +(185992, 'Amaris', 2005, 'F', 249), +(185993, 'Katelin', 2005, 'F', 249), +(185994, 'Averie', 2005, 'F', 248), +(185995, 'Celina', 2005, 'F', 248), +(185996, 'Finley', 2005, 'F', 248), +(185997, 'Belen', 2005, 'F', 247), +(185998, 'Felicia', 2005, 'F', 247), +(185999, 'Maryjane', 2005, 'F', 247), +(186000, 'Silvia', 2005, 'F', 247), +(186001, 'Zion', 2005, 'F', 247), +(186002, 'Elyssa', 2005, 'F', 246), +(186003, 'Lilianna', 2005, 'F', 246), +(186004, 'Brianne', 2005, 'F', 245), +(186005, 'Christiana', 2005, 'F', 245), +(186006, 'Iyanna', 2005, 'F', 245), +(186007, 'Kaci', 2005, 'F', 245), +(186008, 'Leyla', 2005, 'F', 245), +(186009, 'Azaria', 2005, 'F', 244), +(186010, 'Estefani', 2005, 'F', 244), +(186011, 'Ireland', 2005, 'F', 244), +(186012, 'Juana', 2005, 'F', 244), +(186013, 'Sally', 2005, 'F', 244), +(186014, 'Aida', 2005, 'F', 243), +(186015, 'Casandra', 2005, 'F', 243), +(186016, 'Khloe', 2005, 'F', 243), +(186017, 'Rocio', 2005, 'F', 243), +(186018, 'Carli', 2005, 'F', 242), +(186019, 'Nathalia', 2005, 'F', 242), +(186020, 'Sydnie', 2005, 'F', 242), +(186021, 'Diane', 2005, 'F', 241), +(186022, 'Kinley', 2005, 'F', 241), +(186023, 'Reilly', 2005, 'F', 241), +(186024, 'Lyndsey', 2005, 'F', 240), +(186025, 'Myra', 2005, 'F', 240), +(186026, 'Bryana', 2005, 'F', 239), +(186027, 'Caleigh', 2005, 'F', 239), +(186028, 'Lilyana', 2005, 'F', 239), +(186029, 'Sheila', 2005, 'F', 239), +(186030, 'Ali', 2005, 'F', 238), +(186031, 'Janice', 2005, 'F', 238), +(186032, 'Madisen', 2005, 'F', 238); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(186033, 'Mila', 2005, 'F', 238), +(186034, 'Kyndall', 2005, 'F', 237), +(186035, 'Priscila', 2005, 'F', 237), +(186036, 'Hunter', 2005, 'F', 236), +(186037, 'Mariyah', 2005, 'F', 236), +(186038, 'Berenice', 2005, 'F', 235), +(186039, 'Montserrat', 2005, 'F', 235), +(186040, 'Dorothy', 2005, 'F', 234), +(186041, 'Kalyn', 2005, 'F', 234), +(186042, 'Malaysia', 2005, 'F', 234), +(186043, 'Beatriz', 2005, 'F', 233), +(186044, 'Emalee', 2005, 'F', 233), +(186045, 'Anabel', 2005, 'F', 231), +(186046, 'Bree', 2005, 'F', 231), +(186047, 'Keila', 2005, 'F', 231), +(186048, 'Noelia', 2005, 'F', 231), +(186049, 'Shyla', 2005, 'F', 231), +(186050, 'Marlen', 2005, 'F', 230), +(186051, 'Yajaira', 2005, 'F', 230), +(186052, 'Adilene', 2005, 'F', 229), +(186053, 'Alex', 2005, 'F', 229), +(186054, 'Maryam', 2005, 'F', 229), +(186055, 'Anissa', 2005, 'F', 228), +(186056, 'Dasia', 2005, 'F', 228), +(186057, 'Lilia', 2005, 'F', 228), +(186058, 'Paisley', 2005, 'F', 228), +(186059, 'Akira', 2005, 'F', 227), +(186060, 'Jazlynn', 2005, 'F', 227), +(186061, 'Jazmyne', 2005, 'F', 227), +(186062, 'Mckinley', 2005, 'F', 227), +(186063, 'Neveah', 2005, 'F', 227), +(186064, 'Gwyneth', 2005, 'F', 226), +(186065, 'Heidy', 2005, 'F', 226), +(186066, 'Janie', 2005, 'F', 226), +(186067, 'Katy', 2005, 'F', 226), +(186068, 'Luisa', 2005, 'F', 226), +(186069, 'Montana', 2005, 'F', 226), +(186070, 'Darlene', 2005, 'F', 225), +(186071, 'Kamila', 2005, 'F', 225), +(186072, 'Roxanne', 2005, 'F', 225), +(186073, 'Yessenia', 2005, 'F', 225), +(186074, 'Caylee', 2005, 'F', 224), +(186075, 'Jorja', 2005, 'F', 224), +(186076, 'Lori', 2005, 'F', 224), +(186077, 'Anita', 2005, 'F', 223), +(186078, 'Calista', 2005, 'F', 223), +(186079, 'Christy', 2005, 'F', 223), +(186080, 'Estefany', 2005, 'F', 223), +(186081, 'Lilah', 2005, 'F', 223), +(186082, 'Tracy', 2005, 'F', 222), +(186083, 'Alexandrea', 2005, 'F', 221), +(186084, 'Anisa', 2005, 'F', 221), +(186085, 'Jaci', 2005, 'F', 221), +(186086, 'Tamya', 2005, 'F', 221), +(186087, 'Trisha', 2005, 'F', 221), +(186088, 'Annaliese', 2005, 'F', 220), +(186089, 'Candice', 2005, 'F', 220), +(186090, 'Ericka', 2005, 'F', 220), +(186091, 'Joelle', 2005, 'F', 220), +(186092, 'Shakira', 2005, 'F', 220), +(186093, 'Allyssa', 2005, 'F', 219), +(186094, 'Averi', 2005, 'F', 219), +(186095, 'Briley', 2005, 'F', 219), +(186096, 'Dianna', 2005, 'F', 219), +(186097, 'Hilary', 2005, 'F', 219), +(186098, 'Jackeline', 2005, 'F', 219), +(186099, 'Natali', 2005, 'F', 219), +(186100, 'Rita', 2005, 'F', 219), +(186101, 'Tierra', 2005, 'F', 219), +(186102, 'Charlee', 2005, 'F', 218), +(186103, 'Christian', 2005, 'F', 218), +(186104, 'Reece', 2005, 'F', 218), +(186105, 'Addisyn', 2005, 'F', 217), +(186106, 'Annelise', 2005, 'F', 217), +(186107, 'Jaylen', 2005, 'F', 217), +(186108, 'Kylah', 2005, 'F', 217), +(186109, 'Amirah', 2005, 'F', 216), +(186110, 'Citlaly', 2005, 'F', 216), +(186111, 'Harlee', 2005, 'F', 216), +(186112, 'Melinda', 2005, 'F', 216), +(186113, 'Julisa', 2005, 'F', 215), +(186114, 'Nylah', 2005, 'F', 215), +(186115, 'Carson', 2005, 'F', 214), +(186116, 'Deasia', 2005, 'F', 214), +(186117, 'Robin', 2005, 'F', 214), +(186118, 'Scarlet', 2005, 'F', 214), +(186119, 'Sonya', 2005, 'F', 214), +(186120, 'Beatrice', 2005, 'F', 213), +(186121, 'Bryn', 2005, 'F', 213), +(186122, 'Taya', 2005, 'F', 213), +(186123, 'Yolanda', 2005, 'F', 213), +(186124, 'Alexys', 2005, 'F', 212), +(186125, 'Jacie', 2005, 'F', 212), +(186126, 'Lanie', 2005, 'F', 212), +(186127, 'Malaya', 2005, 'F', 212), +(186128, 'Rayne', 2005, 'F', 212), +(186129, 'Yamilet', 2005, 'F', 212), +(186130, 'Milan', 2005, 'F', 211), +(186131, 'Bridgette', 2005, 'F', 210), +(186132, 'Emelia', 2005, 'F', 210), +(186133, 'Jersey', 2005, 'F', 210), +(186134, 'Cailyn', 2005, 'F', 209), +(186135, 'Coral', 2005, 'F', 209), +(186136, 'Jocelynn', 2005, 'F', 209), +(186137, 'Vanesa', 2005, 'F', 209), +(186138, 'Jacklyn', 2005, 'F', 208), +(186139, 'Kalia', 2005, 'F', 208), +(186140, 'Katerina', 2005, 'F', 208), +(186141, 'Lexus', 2005, 'F', 208), +(186142, 'Alyvia', 2005, 'F', 207), +(186143, 'Kaniya', 2005, 'F', 207), +(186144, 'Aliana', 2005, 'F', 206), +(186145, 'Cherish', 2005, 'F', 206), +(186146, 'Gizelle', 2005, 'F', 206), +(186147, 'Leia', 2005, 'F', 206), +(186148, 'Joselin', 2005, 'F', 205), +(186149, 'Kacie', 2005, 'F', 205), +(186150, 'Yvonne', 2005, 'F', 205), +(186151, 'Madilynn', 2005, 'F', 204), +(186152, 'Marian', 2005, 'F', 204), +(186153, 'Samaria', 2005, 'F', 204), +(186154, 'Treasure', 2005, 'F', 204), +(186155, 'Loren', 2005, 'F', 203), +(186156, 'Noor', 2005, 'F', 203), +(186157, 'Gladys', 2005, 'F', 202), +(186158, 'Grecia', 2005, 'F', 202), +(186159, 'Laisha', 2005, 'F', 202), +(186160, 'Ria', 2005, 'F', 202), +(186161, 'Sarina', 2005, 'F', 202), +(186162, 'Tayla', 2005, 'F', 202), +(186163, 'Gemma', 2005, 'F', 201), +(186164, 'Kayleen', 2005, 'F', 201), +(186165, 'Lourdes', 2005, 'F', 201), +(186166, 'Makaylah', 2005, 'F', 201), +(186167, 'Giavanna', 2005, 'F', 200), +(186168, 'Robyn', 2005, 'F', 200), +(186169, 'Sydni', 2005, 'F', 200), +(186170, 'Briseida', 2005, 'F', 199), +(186171, 'Jayde', 2005, 'F', 199), +(186172, 'Shaniyah', 2005, 'F', 199), +(186173, 'Brinley', 2005, 'F', 198), +(186174, 'Kiarra', 2005, 'F', 198), +(186175, 'Kori', 2005, 'F', 198), +(186176, 'Rory', 2005, 'F', 198), +(186177, 'Sahara', 2005, 'F', 198), +(186178, 'Alannah', 2005, 'F', 197), +(186179, 'Darby', 2005, 'F', 197), +(186180, 'Jaime', 2005, 'F', 197), +(186181, 'Kendyl', 2005, 'F', 197), +(186182, 'Nyah', 2005, 'F', 197), +(186183, 'Asha', 2005, 'F', 196), +(186184, 'Estella', 2005, 'F', 196), +(186185, 'Janya', 2005, 'F', 196), +(186186, 'Kaelin', 2005, 'F', 196), +(186187, 'Kyndal', 2005, 'F', 196), +(186188, 'Makiya', 2005, 'F', 196), +(186189, 'Rileigh', 2005, 'F', 196), +(186190, 'Anabella', 2005, 'F', 195), +(186191, 'Analise', 2005, 'F', 195), +(186192, 'Ariella', 2005, 'F', 195), +(186193, 'Kacey', 2005, 'F', 195), +(186194, 'Neha', 2005, 'F', 195), +(186195, 'Emmy', 2005, 'F', 194), +(186196, 'Jania', 2005, 'F', 194), +(186197, 'Kelli', 2005, 'F', 194), +(186198, 'Jolene', 2005, 'F', 193), +(186199, 'Lidia', 2005, 'F', 193), +(186200, 'Norma', 2005, 'F', 193), +(186201, 'Braelyn', 2005, 'F', 192), +(186202, 'Charley', 2005, 'F', 192), +(186203, 'Delanie', 2005, 'F', 192), +(186204, 'Kamya', 2005, 'F', 192), +(186205, 'Ananya', 2005, 'F', 191), +(186206, 'Carleigh', 2005, 'F', 191), +(186207, 'Dahlia', 2005, 'F', 191), +(186208, 'Dina', 2005, 'F', 191), +(186209, 'Keara', 2005, 'F', 191), +(186210, 'Luciana', 2005, 'F', 191), +(186211, 'Adamaris', 2005, 'F', 190), +(186212, 'Bonnie', 2005, 'F', 190), +(186213, 'Jaquelin', 2005, 'F', 190), +(186214, 'Kourtney', 2005, 'F', 190), +(186215, 'Pearl', 2005, 'F', 190), +(186216, 'Rhianna', 2005, 'F', 190), +(186217, 'Winter', 2005, 'F', 190), +(186218, 'Evangeline', 2005, 'F', 189), +(186219, 'Janaya', 2005, 'F', 189), +(186220, 'Kameron', 2005, 'F', 189), +(186221, 'Karsyn', 2005, 'F', 189), +(186222, 'Rivka', 2005, 'F', 189), +(186223, 'Isela', 2005, 'F', 188), +(186224, 'Melisa', 2005, 'F', 188), +(186225, 'Alycia', 2005, 'F', 187), +(186226, 'Amalia', 2005, 'F', 187), +(186227, 'Audra', 2005, 'F', 187), +(186228, 'Azariah', 2005, 'F', 187), +(186229, 'Christa', 2005, 'F', 187), +(186230, 'Lorelai', 2005, 'F', 187), +(186231, 'Caitlynn', 2005, 'F', 186), +(186232, 'Joseline', 2005, 'F', 186), +(186233, 'Kristine', 2005, 'F', 186), +(186234, 'Rachelle', 2005, 'F', 186), +(186235, 'Star', 2005, 'F', 186), +(186236, 'Tristan', 2005, 'F', 186), +(186237, 'Annamarie', 2005, 'F', 185), +(186238, 'Breonna', 2005, 'F', 185), +(186239, 'Brook', 2005, 'F', 185), +(186240, 'Constance', 2005, 'F', 185), +(186241, 'Julieta', 2005, 'F', 185), +(186242, 'Raelyn', 2005, 'F', 185), +(186243, 'Sade', 2005, 'F', 185), +(186244, 'Eryn', 2005, 'F', 184), +(186245, 'Kai', 2005, 'F', 184), +(186246, 'Katia', 2005, 'F', 184), +(186247, 'Martina', 2005, 'F', 184), +(186248, 'Triniti', 2005, 'F', 184), +(186249, 'Chiara', 2005, 'F', 183), +(186250, 'Elianna', 2005, 'F', 183), +(186251, 'Gracey', 2005, 'F', 183), +(186252, 'Kelsi', 2005, 'F', 183), +(186253, 'Lisette', 2005, 'F', 183), +(186254, 'Abrianna', 2005, 'F', 182), +(186255, 'Cailey', 2005, 'F', 182), +(186256, 'Emani', 2005, 'F', 182), +(186257, 'Jaylah', 2005, 'F', 182), +(186258, 'Noel', 2005, 'F', 182), +(186259, 'Randi', 2005, 'F', 182), +(186260, 'Sanai', 2005, 'F', 182), +(186261, 'Brookelyn', 2005, 'F', 181), +(186262, 'Danae', 2005, 'F', 181), +(186263, 'Angeles', 2005, 'F', 180), +(186264, 'Aniah', 2005, 'F', 180), +(186265, 'Samya', 2005, 'F', 180), +(186266, 'Yamileth', 2005, 'F', 180), +(186267, 'Aya', 2005, 'F', 179), +(186268, 'Elana', 2005, 'F', 179), +(186269, 'Madysen', 2005, 'F', 179), +(186270, 'Marcela', 2005, 'F', 179), +(186271, 'Charlene', 2005, 'F', 178), +(186272, 'Dallas', 2005, 'F', 178), +(186273, 'Makiyah', 2005, 'F', 178), +(186274, 'Susanna', 2005, 'F', 178), +(186275, 'Amiah', 2005, 'F', 177), +(186276, 'Ariah', 2005, 'F', 177), +(186277, 'Gabriel', 2005, 'F', 177), +(186278, 'Shawna', 2005, 'F', 177), +(186279, 'Yasmeen', 2005, 'F', 177), +(186280, 'Adelyn', 2005, 'F', 176), +(186281, 'Adison', 2005, 'F', 176), +(186282, 'Adyson', 2005, 'F', 176), +(186283, 'Amia', 2005, 'F', 176), +(186284, 'Emerald', 2005, 'F', 176), +(186285, 'Lillianna', 2005, 'F', 176), +(186286, 'Ryley', 2005, 'F', 176), +(186287, 'Jayna', 2005, 'F', 175), +(186288, 'Mae', 2005, 'F', 175), +(186289, 'Izabelle', 2005, 'F', 174), +(186290, 'Juanita', 2005, 'F', 174), +(186291, 'Kierstin', 2005, 'F', 174), +(186292, 'Laniya', 2005, 'F', 174), +(186293, 'Leigha', 2005, 'F', 174), +(186294, 'Marcella', 2005, 'F', 174), +(186295, 'Nadine', 2005, 'F', 174), +(186296, 'Shamya', 2005, 'F', 174), +(186297, 'Zaniya', 2005, 'F', 174), +(186298, 'Zaniyah', 2005, 'F', 174), +(186299, 'Aiyanna', 2005, 'F', 173), +(186300, 'Ashtyn', 2005, 'F', 173), +(186301, 'Caydence', 2005, 'F', 173), +(186302, 'Ciarra', 2005, 'F', 173), +(186303, 'Jena', 2005, 'F', 173), +(186304, 'Jesse', 2005, 'F', 173), +(186305, 'Annmarie', 2005, 'F', 172), +(186306, 'Jamia', 2005, 'F', 172), +(186307, 'Kaela', 2005, 'F', 172), +(186308, 'Lailah', 2005, 'F', 172), +(186309, 'Soraya', 2005, 'F', 172), +(186310, 'Zahra', 2005, 'F', 172), +(186311, 'Amyah', 2005, 'F', 171), +(186312, 'Jamiya', 2005, 'F', 171), +(186313, 'Janeth', 2005, 'F', 171), +(186314, 'Priya', 2005, 'F', 171), +(186315, 'Rhea', 2005, 'F', 170), +(186316, 'Xochitl', 2005, 'F', 170), +(186317, 'Heavenly', 2005, 'F', 169), +(186318, 'Kalie', 2005, 'F', 169), +(186319, 'Adrian', 2005, 'F', 168), +(186320, 'Alli', 2005, 'F', 168), +(186321, 'Annalisa', 2005, 'F', 168), +(186322, 'Karmen', 2005, 'F', 168), +(186323, 'Reanna', 2005, 'F', 168), +(186324, 'Selene', 2005, 'F', 168), +(186325, 'Stevie', 2005, 'F', 168), +(186326, 'Zainab', 2005, 'F', 168), +(186327, 'Dayna', 2005, 'F', 167), +(186328, 'Jaycie', 2005, 'F', 167), +(186329, 'Jeanette', 2005, 'F', 167), +(186330, 'Kalea', 2005, 'F', 167), +(186331, 'Maiya', 2005, 'F', 167), +(186332, 'Ayleen', 2005, 'F', 166), +(186333, 'Briseyda', 2005, 'F', 166), +(186334, 'Keeley', 2005, 'F', 166), +(186335, 'Maryann', 2005, 'F', 166), +(186336, 'Niya', 2005, 'F', 166), +(186337, 'Shanya', 2005, 'F', 166), +(186338, 'Alaysia', 2005, 'F', 165), +(186339, 'Brionna', 2005, 'F', 165), +(186340, 'Eloise', 2005, 'F', 165), +(186341, 'Geraldine', 2005, 'F', 165), +(186342, 'Melia', 2005, 'F', 165), +(186343, 'Alanah', 2005, 'F', 164), +(186344, 'Aliah', 2005, 'F', 164), +(186345, 'Blair', 2005, 'F', 164), +(186346, 'Jaedyn', 2005, 'F', 164), +(186347, 'Kaycee', 2005, 'F', 164), +(186348, 'Leann', 2005, 'F', 164), +(186349, 'Arissa', 2005, 'F', 163), +(186350, 'Ivana', 2005, 'F', 163), +(186351, 'Kiya', 2005, 'F', 163), +(186352, 'Lisbeth', 2005, 'F', 163), +(186353, 'Alysha', 2005, 'F', 162), +(186354, 'Amerie', 2005, 'F', 162), +(186355, 'Gracyn', 2005, 'F', 162), +(186356, 'Grayson', 2005, 'F', 162), +(186357, 'Kristy', 2005, 'F', 162), +(186358, 'Vianey', 2005, 'F', 162), +(186359, 'Alora', 2005, 'F', 161), +(186360, 'Milagros', 2005, 'F', 161), +(186361, 'Octavia', 2005, 'F', 161), +(186362, 'Tristen', 2005, 'F', 161), +(186363, 'Vicky', 2005, 'F', 161), +(186364, 'Cameryn', 2005, 'F', 160), +(186365, 'Ember', 2005, 'F', 160), +(186366, 'Evelynn', 2005, 'F', 160), +(186367, 'Jaila', 2005, 'F', 160), +(186368, 'Karleigh', 2005, 'F', 160), +(186369, 'Makyla', 2005, 'F', 160), +(186370, 'Alaya', 2005, 'F', 159), +(186371, 'Kari', 2005, 'F', 159), +(186372, 'Kellie', 2005, 'F', 159), +(186373, 'Mercy', 2005, 'F', 159), +(186374, 'Rylan', 2005, 'F', 159), +(186375, 'Viridiana', 2005, 'F', 159), +(186376, 'Abbygail', 2005, 'F', 158), +(186377, 'Dalila', 2005, 'F', 158), +(186378, 'Demi', 2005, 'F', 158), +(186379, 'Elisha', 2005, 'F', 158), +(186380, 'Isha', 2005, 'F', 158), +(186381, 'Saylor', 2005, 'F', 158), +(186382, 'Yulissa', 2005, 'F', 158), +(186383, 'Aja', 2005, 'F', 157), +(186384, 'Cinthia', 2005, 'F', 157), +(186385, 'Corina', 2005, 'F', 157), +(186386, 'Stefanie', 2005, 'F', 157), +(186387, 'Aidan', 2005, 'F', 156), +(186388, 'Chase', 2005, 'F', 156), +(186389, 'Egypt', 2005, 'F', 156), +(186390, 'Gwen', 2005, 'F', 156), +(186391, 'Karolina', 2005, 'F', 156), +(186392, 'Maranda', 2005, 'F', 156), +(186393, 'Mikaylah', 2005, 'F', 156), +(186394, 'Rianna', 2005, 'F', 156), +(186395, 'Rilee', 2005, 'F', 156), +(186396, 'Yadhira', 2005, 'F', 156), +(186397, 'Alyse', 2005, 'F', 155), +(186398, 'Ayden', 2005, 'F', 155), +(186399, 'Chandler', 2005, 'F', 155), +(186400, 'Georgina', 2005, 'F', 155), +(186401, 'Ariyana', 2005, 'F', 154), +(186402, 'Betzaida', 2005, 'F', 154), +(186403, 'Beverly', 2005, 'F', 154), +(186404, 'Dora', 2005, 'F', 154), +(186405, 'Ginger', 2005, 'F', 154), +(186406, 'Haily', 2005, 'F', 154), +(186407, 'Vera', 2005, 'F', 154), +(186408, 'Aditi', 2005, 'F', 153), +(186409, 'Destany', 2005, 'F', 153), +(186410, 'Fallon', 2005, 'F', 153), +(186411, 'Giuliana', 2005, 'F', 153), +(186412, 'Yarely', 2005, 'F', 153), +(186413, 'Belle', 2005, 'F', 152), +(186414, 'Brookelynn', 2005, 'F', 152), +(186415, 'Cianna', 2005, 'F', 152), +(186416, 'Jamiyah', 2005, 'F', 152), +(186417, 'Lesli', 2005, 'F', 152), +(186418, 'Mackenna', 2005, 'F', 152), +(186419, 'Malka', 2005, 'F', 152), +(186420, 'Mason', 2005, 'F', 152), +(186421, 'Raelynn', 2005, 'F', 152), +(186422, 'Samiyah', 2005, 'F', 152), +(186423, 'Sheridan', 2005, 'F', 152), +(186424, 'Sheyla', 2005, 'F', 152), +(186425, 'Tammy', 2005, 'F', 152), +(186426, 'Chantal', 2005, 'F', 151), +(186427, 'Dixie', 2005, 'F', 151), +(186428, 'Geneva', 2005, 'F', 151), +(186429, 'Harlie', 2005, 'F', 151), +(186430, 'Leanne', 2005, 'F', 151), +(186431, 'Andie', 2005, 'F', 150), +(186432, 'Antoinette', 2005, 'F', 150), +(186433, 'Arlette', 2005, 'F', 150), +(186434, 'Cloey', 2005, 'F', 150), +(186435, 'Colette', 2005, 'F', 150), +(186436, 'Ivanna', 2005, 'F', 150), +(186437, 'Ivette', 2005, 'F', 150), +(186438, 'Lynn', 2005, 'F', 150), +(186439, 'Mari', 2005, 'F', 150), +(186440, 'Nelly', 2005, 'F', 150), +(186441, 'Adela', 2005, 'F', 149), +(186442, 'Arwen', 2005, 'F', 149), +(186443, 'Cordelia', 2005, 'F', 149), +(186444, 'Kloe', 2005, 'F', 149), +(186445, 'Lupita', 2005, 'F', 149), +(186446, 'Makala', 2005, 'F', 149), +(186447, 'Evangelina', 2005, 'F', 148), +(186448, 'Kyara', 2005, 'F', 148), +(186449, 'Maegan', 2005, 'F', 148), +(186450, 'Mika', 2005, 'F', 148), +(186451, 'Adelina', 2005, 'F', 147), +(186452, 'Arden', 2005, 'F', 147), +(186453, 'Charli', 2005, 'F', 147), +(186454, 'Ivory', 2005, 'F', 147), +(186455, 'Joanne', 2005, 'F', 147), +(186456, 'Laylah', 2005, 'F', 147), +(186457, 'Samiya', 2005, 'F', 147), +(186458, 'Alyssia', 2005, 'F', 146), +(186459, 'Amaria', 2005, 'F', 146), +(186460, 'Izabel', 2005, 'F', 146), +(186461, 'Jamaya', 2005, 'F', 146), +(186462, 'Jamiah', 2005, 'F', 146), +(186463, 'Jaya', 2005, 'F', 146), +(186464, 'Joey', 2005, 'F', 146), +(186465, 'Judy', 2005, 'F', 146), +(186466, 'Kamille', 2005, 'F', 146), +(186467, 'Maddie', 2005, 'F', 146), +(186468, 'Michele', 2005, 'F', 146), +(186469, 'Mindy', 2005, 'F', 146), +(186470, 'Shaelyn', 2005, 'F', 146), +(186471, 'Chelsie', 2005, 'F', 145), +(186472, 'Lilyanna', 2005, 'F', 145), +(186473, 'Makenzi', 2005, 'F', 145), +(186474, 'Rosalie', 2005, 'F', 145), +(186475, 'Tegan', 2005, 'F', 145), +(186476, 'Analisa', 2005, 'F', 144), +(186477, 'Cailin', 2005, 'F', 144), +(186478, 'Jacquelin', 2005, 'F', 144), +(186479, 'Jessenia', 2005, 'F', 144), +(186480, 'Kayle', 2005, 'F', 144), +(186481, 'Adia', 2005, 'F', 143), +(186482, 'Jaslyn', 2005, 'F', 143), +(186483, 'Payten', 2005, 'F', 143), +(186484, 'Sofie', 2005, 'F', 143), +(186485, 'Ania', 2005, 'F', 142), +(186486, 'Ashlie', 2005, 'F', 142), +(186487, 'Daria', 2005, 'F', 142), +(186488, 'Elayna', 2005, 'F', 142), +(186489, 'Gisele', 2005, 'F', 142), +(186490, 'Hadassah', 2005, 'F', 142), +(186491, 'Katlynn', 2005, 'F', 142), +(186492, 'Kelis', 2005, 'F', 142), +(186493, 'Lani', 2005, 'F', 142), +(186494, 'Lela', 2005, 'F', 142), +(186495, 'Maricela', 2005, 'F', 142), +(186496, 'Noa', 2005, 'F', 142), +(186497, 'Angelia', 2005, 'F', 141), +(186498, 'Brea', 2005, 'F', 141), +(186499, 'Farrah', 2005, 'F', 141), +(186500, 'Londyn', 2005, 'F', 141), +(186501, 'Nayely', 2005, 'F', 141), +(186502, 'Tanisha', 2005, 'F', 141), +(186503, 'Alexi', 2005, 'F', 140), +(186504, 'Amarie', 2005, 'F', 140), +(186505, 'Anastacia', 2005, 'F', 140), +(186506, 'Charisma', 2005, 'F', 140), +(186507, 'Laniyah', 2005, 'F', 140), +(186508, 'Meaghan', 2005, 'F', 140), +(186509, 'Sabina', 2005, 'F', 140), +(186510, 'Anai', 2005, 'F', 139), +(186511, 'Kamari', 2005, 'F', 139), +(186512, 'Leona', 2005, 'F', 139), +(186513, 'Shira', 2005, 'F', 139), +(186514, 'Yaneli', 2005, 'F', 139), +(186515, 'Alayah', 2005, 'F', 138), +(186516, 'Janette', 2005, 'F', 138), +(186517, 'Landry', 2005, 'F', 138), +(186518, 'Magaly', 2005, 'F', 138), +(186519, 'Maxine', 2005, 'F', 138), +(186520, 'Noelani', 2005, 'F', 138), +(186521, 'Eunice', 2005, 'F', 137), +(186522, 'Kaytlin', 2005, 'F', 137), +(186523, 'Linnea', 2005, 'F', 137), +(186524, 'Lluvia', 2005, 'F', 137), +(186525, 'Pilar', 2005, 'F', 137), +(186526, 'Tyanna', 2005, 'F', 137), +(186527, 'Adamari', 2005, 'F', 136), +(186528, 'Azalea', 2005, 'F', 136), +(186529, 'Cienna', 2005, 'F', 136), +(186530, 'Lexy', 2005, 'F', 136), +(186531, 'Misty', 2005, 'F', 136), +(186532, 'Rosalinda', 2005, 'F', 136), +(186533, 'Zaira', 2005, 'F', 136), +(186534, 'Ayah', 2005, 'F', 135), +(186535, 'Cydney', 2005, 'F', 135), +(186536, 'Evie', 2005, 'F', 135), +(186537, 'Honesty', 2005, 'F', 135), +(186538, 'Iman', 2005, 'F', 135), +(186539, 'Yessica', 2005, 'F', 135), +(186540, 'Camdyn', 2005, 'F', 134), +(186541, 'Faye', 2005, 'F', 134), +(186542, 'Nailah', 2005, 'F', 134), +(186543, 'Rochelle', 2005, 'F', 134), +(186544, 'Shae', 2005, 'F', 134), +(186545, 'Starr', 2005, 'F', 134), +(186546, 'Alysia', 2005, 'F', 133), +(186547, 'Camden', 2005, 'F', 133), +(186548, 'Ema', 2005, 'F', 133), +(186549, 'Kalli', 2005, 'F', 133), +(186550, 'Katheryn', 2005, 'F', 133), +(186551, 'Rosario', 2005, 'F', 133), +(186552, 'Roxanna', 2005, 'F', 133), +(186553, 'Samia', 2005, 'F', 133), +(186554, 'Sunny', 2005, 'F', 133), +(186555, 'Betty', 2005, 'F', 132), +(186556, 'Gracelynn', 2005, 'F', 132), +(186557, 'Jayme', 2005, 'F', 132), +(186558, 'Kailynn', 2005, 'F', 132), +(186559, 'Karime', 2005, 'F', 132), +(186560, 'Kirstin', 2005, 'F', 132), +(186561, 'Lynette', 2005, 'F', 132), +(186562, 'Ariadna', 2005, 'F', 131), +(186563, 'Brynlee', 2005, 'F', 131), +(186564, 'Chesney', 2005, 'F', 131), +(186565, 'Janna', 2005, 'F', 131), +(186566, 'Kaelynn', 2005, 'F', 131), +(186567, 'Kaylan', 2005, 'F', 131), +(186568, 'Olga', 2005, 'F', 131), +(186569, 'Sanjana', 2005, 'F', 131), +(186570, 'Carys', 2005, 'F', 130), +(186571, 'Dariana', 2005, 'F', 130), +(186572, 'Deisy', 2005, 'F', 130), +(186573, 'Ellery', 2005, 'F', 130), +(186574, 'Fantasia', 2005, 'F', 130), +(186575, 'Kaidence', 2005, 'F', 130), +(186576, 'Lilith', 2005, 'F', 130), +(186577, 'Lilli', 2005, 'F', 130), +(186578, 'Marisela', 2005, 'F', 130), +(186579, 'Nalani', 2005, 'F', 130), +(186580, 'Thea', 2005, 'F', 130), +(186581, 'Aiden', 2005, 'F', 129), +(186582, 'Alea', 2005, 'F', 129), +(186583, 'Anisha', 2005, 'F', 129), +(186584, 'Bayleigh', 2005, 'F', 129), +(186585, 'Calli', 2005, 'F', 129), +(186586, 'Carmella', 2005, 'F', 129), +(186587, 'Connie', 2005, 'F', 129), +(186588, 'Desire', 2005, 'F', 129), +(186589, 'Karyme', 2005, 'F', 129), +(186590, 'Mallorie', 2005, 'F', 129), +(186591, 'Marjorie', 2005, 'F', 129), +(186592, 'Millie', 2005, 'F', 129), +(186593, 'Nariah', 2005, 'F', 129), +(186594, 'Rian', 2005, 'F', 129), +(186595, 'Shanna', 2005, 'F', 129), +(186596, 'Aislinn', 2005, 'F', 128), +(186597, 'Annalee', 2005, 'F', 128), +(186598, 'Baby', 2005, 'F', 128), +(186599, 'Catrina', 2005, 'F', 128), +(186600, 'Gissel', 2005, 'F', 128), +(186601, 'Jackie', 2005, 'F', 128), +(186602, 'Janay', 2005, 'F', 128), +(186603, 'Kaylea', 2005, 'F', 128), +(186604, 'Lucinda', 2005, 'F', 128), +(186605, 'Makiah', 2005, 'F', 128), +(186606, 'Moira', 2005, 'F', 128), +(186607, 'Terra', 2005, 'F', 128), +(186608, 'Abygail', 2005, 'F', 127), +(186609, 'Cambria', 2005, 'F', 127), +(186610, 'Jackelyn', 2005, 'F', 127), +(186611, 'Leena', 2005, 'F', 127), +(186612, 'Lianna', 2005, 'F', 127), +(186613, 'Lilyan', 2005, 'F', 127), +(186614, 'Mykayla', 2005, 'F', 127), +(186615, 'Rosalyn', 2005, 'F', 127), +(186616, 'Stefany', 2005, 'F', 127), +(186617, 'Aleigha', 2005, 'F', 126), +(186618, 'Daisha', 2005, 'F', 126), +(186619, 'Eleni', 2005, 'F', 126), +(186620, 'Graci', 2005, 'F', 126), +(186621, 'Melani', 2005, 'F', 126), +(186622, 'Sania', 2005, 'F', 126), +(186623, 'Sonja', 2005, 'F', 126), +(186624, 'Arionna', 2005, 'F', 125), +(186625, 'Dawn', 2005, 'F', 125), +(186626, 'Jocelyne', 2005, 'F', 125), +(186627, 'Justina', 2005, 'F', 125), +(186628, 'Kaden', 2005, 'F', 125), +(186629, 'Kamora', 2005, 'F', 125), +(186630, 'Maile', 2005, 'F', 125), +(186631, 'Abbigale', 2005, 'F', 124), +(186632, 'Carmela', 2005, 'F', 124), +(186633, 'Kaili', 2005, 'F', 124), +(186634, 'Malak', 2005, 'F', 124), +(186635, 'Matilda', 2005, 'F', 124), +(186636, 'Melania', 2005, 'F', 124), +(186637, 'Milena', 2005, 'F', 124), +(186638, 'Shoshana', 2005, 'F', 124), +(186639, 'Suzette', 2005, 'F', 124), +(186640, 'Dani', 2005, 'F', 123), +(186641, 'Gwenyth', 2005, 'F', 123), +(186642, 'Jaeda', 2005, 'F', 123), +(186643, 'Kailani', 2005, 'F', 123), +(186644, 'Abriana', 2005, 'F', 122), +(186645, 'Baylie', 2005, 'F', 122), +(186646, 'Kaniyah', 2005, 'F', 122), +(186647, 'Keziah', 2005, 'F', 122), +(186648, 'Lili', 2005, 'F', 122), +(186649, 'Marlena', 2005, 'F', 122), +(186650, 'Petra', 2005, 'F', 122), +(186651, 'Shay', 2005, 'F', 122), +(186652, 'Ashlin', 2005, 'F', 121), +(186653, 'Breanne', 2005, 'F', 121), +(186654, 'Brynna', 2005, 'F', 121), +(186655, 'Cielo', 2005, 'F', 121), +(186656, 'Harleigh', 2005, 'F', 121), +(186657, 'Hattie', 2005, 'F', 121), +(186658, 'Jasmyne', 2005, 'F', 121), +(186659, 'Jazzlyn', 2005, 'F', 121), +(186660, 'Jessalyn', 2005, 'F', 121), +(186661, 'Kalynn', 2005, 'F', 121), +(186662, 'Willa', 2005, 'F', 121), +(186663, 'Carter', 2005, 'F', 120), +(186664, 'Darcy', 2005, 'F', 120), +(186665, 'Jennie', 2005, 'F', 120), +(186666, 'Kaileigh', 2005, 'F', 120), +(186667, 'Kami', 2005, 'F', 120), +(186668, 'Kelsea', 2005, 'F', 120), +(186669, 'Keyonna', 2005, 'F', 120), +(186670, 'Laken', 2005, 'F', 120), +(186671, 'Liyah', 2005, 'F', 120), +(186672, 'Ryanne', 2005, 'F', 120), +(186673, 'Shauna', 2005, 'F', 120), +(186674, 'Sloane', 2005, 'F', 120), +(186675, 'Vivienne', 2005, 'F', 120), +(186676, 'Adrianne', 2005, 'F', 119), +(186677, 'Amie', 2005, 'F', 119), +(186678, 'Angelena', 2005, 'F', 119), +(186679, 'Avril', 2005, 'F', 119), +(186680, 'Betsy', 2005, 'F', 119), +(186681, 'Griselda', 2005, 'F', 119), +(186682, 'Ilana', 2005, 'F', 119), +(186683, 'Irma', 2005, 'F', 119), +(186684, 'Mayah', 2005, 'F', 119), +(186685, 'Suzanne', 2005, 'F', 119), +(186686, 'Violeta', 2005, 'F', 119), +(186687, 'Xitlali', 2005, 'F', 119), +(186688, 'Xitlaly', 2005, 'F', 119), +(186689, 'Edna', 2005, 'F', 118), +(186690, 'Emmaleigh', 2005, 'F', 118), +(186691, 'Estelle', 2005, 'F', 118), +(186692, 'Ester', 2005, 'F', 118), +(186693, 'Josselyn', 2005, 'F', 118), +(186694, 'Kenley', 2005, 'F', 118), +(186695, 'Kristal', 2005, 'F', 118), +(186696, 'Lexis', 2005, 'F', 118), +(186697, 'Mariel', 2005, 'F', 118), +(186698, 'Yulisa', 2005, 'F', 118), +(186699, 'Alliyah', 2005, 'F', 117), +(186700, 'Annemarie', 2005, 'F', 117), +(186701, 'Cate', 2005, 'F', 117), +(186702, 'Cayden', 2005, 'F', 117), +(186703, 'Ellison', 2005, 'F', 117), +(186704, 'Flora', 2005, 'F', 117), +(186705, 'Jolee', 2005, 'F', 117), +(186706, 'Kameryn', 2005, 'F', 117), +(186707, 'Kaylei', 2005, 'F', 117), +(186708, 'Kierstyn', 2005, 'F', 117), +(186709, 'Maisie', 2005, 'F', 117), +(186710, 'Malena', 2005, 'F', 117), +(186711, 'Niyah', 2005, 'F', 117), +(186712, 'Selma', 2005, 'F', 117), +(186713, 'Simran', 2005, 'F', 117), +(186714, 'Abrielle', 2005, 'F', 116), +(186715, 'Adele', 2005, 'F', 116), +(186716, 'Alecia', 2005, 'F', 116), +(186717, 'Ani', 2005, 'F', 116), +(186718, 'Azucena', 2005, 'F', 116), +(186719, 'Ivonne', 2005, 'F', 116), +(186720, 'Jalissa', 2005, 'F', 116), +(186721, 'Liza', 2005, 'F', 116), +(186722, 'Louisa', 2005, 'F', 116), +(186723, 'Markayla', 2005, 'F', 116), +(186724, 'Saniah', 2005, 'F', 116), +(186725, 'Shaina', 2005, 'F', 116), +(186726, 'Ailyn', 2005, 'F', 115), +(186727, 'Ariyanna', 2005, 'F', 115), +(186728, 'Aviana', 2005, 'F', 115), +(186729, 'Emmaline', 2005, 'F', 115), +(186730, 'Jenessa', 2005, 'F', 115), +(186731, 'Josefina', 2005, 'F', 115), +(186732, 'June', 2005, 'F', 115), +(186733, 'Magdalene', 2005, 'F', 115), +(186734, 'Nallely', 2005, 'F', 115), +(186735, 'Nikita', 2005, 'F', 115), +(186736, 'Promise', 2005, 'F', 115), +(186737, 'Shana', 2005, 'F', 115), +(186738, 'Dafne', 2005, 'F', 114), +(186739, 'Elly', 2005, 'F', 114), +(186740, 'Gisela', 2005, 'F', 114), +(186741, 'Journee', 2005, 'F', 114), +(186742, 'Mikala', 2005, 'F', 114), +(186743, 'Serina', 2005, 'F', 114), +(186744, 'Tea', 2005, 'F', 114), +(186745, 'Tyasia', 2005, 'F', 114), +(186746, 'Wynter', 2005, 'F', 114), +(186747, 'Adalyn', 2005, 'F', 113), +(186748, 'Amariah', 2005, 'F', 113), +(186749, 'Arya', 2005, 'F', 113), +(186750, 'Cathryn', 2005, 'F', 113), +(186751, 'Dalilah', 2005, 'F', 113), +(186752, 'Gisel', 2005, 'F', 113), +(186753, 'Jill', 2005, 'F', 113), +(186754, 'Jodi', 2005, 'F', 113), +(186755, 'Kalani', 2005, 'F', 113), +(186756, 'Kassie', 2005, 'F', 113), +(186757, 'Kyah', 2005, 'F', 113), +(186758, 'Malina', 2005, 'F', 113), +(186759, 'Naydelin', 2005, 'F', 113), +(186760, 'Pauline', 2005, 'F', 113), +(186761, 'Rayven', 2005, 'F', 113), +(186762, 'Adria', 2005, 'F', 112), +(186763, 'Aurelia', 2005, 'F', 112), +(186764, 'Caelyn', 2005, 'F', 112), +(186765, 'Jeslyn', 2005, 'F', 112), +(186766, 'Jocelin', 2005, 'F', 112), +(186767, 'Kalina', 2005, 'F', 112), +(186768, 'Kirra', 2005, 'F', 112), +(186769, 'Lamya', 2005, 'F', 112), +(186770, 'Mea', 2005, 'F', 112), +(186771, 'Rosie', 2005, 'F', 112), +(186772, 'Sommer', 2005, 'F', 112), +(186773, 'Zakiya', 2005, 'F', 112), +(186774, 'Anaiya', 2005, 'F', 111), +(186775, 'Annabell', 2005, 'F', 111), +(186776, 'Anyah', 2005, 'F', 111), +(186777, 'Aubrianna', 2005, 'F', 111), +(186778, 'Chyna', 2005, 'F', 111), +(186779, 'Dynasty', 2005, 'F', 111), +(186780, 'Farah', 2005, 'F', 111), +(186781, 'Kaleah', 2005, 'F', 111), +(186782, 'Kaydance', 2005, 'F', 111), +(186783, 'Leeann', 2005, 'F', 111), +(186784, 'Mariella', 2005, 'F', 111), +(186785, 'Monet', 2005, 'F', 111), +(186786, 'Nadya', 2005, 'F', 111), +(186787, 'Vianney', 2005, 'F', 111), +(186788, 'Alexsandra', 2005, 'F', 110), +(186789, 'Chyanne', 2005, 'F', 110), +(186790, 'Elina', 2005, 'F', 110), +(186791, 'Franchesca', 2005, 'F', 110), +(186792, 'Jesenia', 2005, 'F', 110), +(186793, 'Joslynn', 2005, 'F', 110), +(186794, 'Milana', 2005, 'F', 110), +(186795, 'Nakayla', 2005, 'F', 110), +(186796, 'Shaniah', 2005, 'F', 110), +(186797, 'Taliah', 2005, 'F', 110), +(186798, 'Breann', 2005, 'F', 109), +(186799, 'Brigid', 2005, 'F', 109), +(186800, 'Bryleigh', 2005, 'F', 109), +(186801, 'Carsyn', 2005, 'F', 109), +(186802, 'Elora', 2005, 'F', 109), +(186803, 'Evan', 2005, 'F', 109), +(186804, 'Honey', 2005, 'F', 109), +(186805, 'Kalista', 2005, 'F', 109), +(186806, 'Keegan', 2005, 'F', 109), +(186807, 'Keily', 2005, 'F', 109), +(186808, 'Mattison', 2005, 'F', 109), +(186809, 'Shianne', 2005, 'F', 109), +(186810, 'Vivianna', 2005, 'F', 109), +(186811, 'Analiese', 2005, 'F', 108), +(186812, 'Araya', 2005, 'F', 108), +(186813, 'Chantel', 2005, 'F', 108), +(186814, 'Charis', 2005, 'F', 108), +(186815, 'Jordynn', 2005, 'F', 108), +(186816, 'Keasia', 2005, 'F', 108), +(186817, 'Kortney', 2005, 'F', 108), +(186818, 'Mylah', 2005, 'F', 108), +(186819, 'Odalys', 2005, 'F', 108), +(186820, 'Raya', 2005, 'F', 108), +(186821, 'Rena', 2005, 'F', 108), +(186822, 'Saira', 2005, 'F', 108), +(186823, 'Shelly', 2005, 'F', 108), +(186824, 'Sunshine', 2005, 'F', 108), +(186825, 'Tyla', 2005, 'F', 108), +(186826, 'Yaretzi', 2005, 'F', 108), +(186827, 'Ayesha', 2005, 'F', 107), +(186828, 'Britany', 2005, 'F', 107), +(186829, 'Elia', 2005, 'F', 107), +(186830, 'Gracee', 2005, 'F', 107), +(186831, 'Jaleah', 2005, 'F', 107), +(186832, 'Jalisa', 2005, 'F', 107), +(186833, 'Kyrah', 2005, 'F', 107), +(186834, 'Leandra', 2005, 'F', 107), +(186835, 'Lillyan', 2005, 'F', 107), +(186836, 'Madelin', 2005, 'F', 107), +(186837, 'Makalah', 2005, 'F', 107), +(186838, 'Marianne', 2005, 'F', 107), +(186839, 'Mariya', 2005, 'F', 107), +(186840, 'Monika', 2005, 'F', 107), +(186841, 'Myranda', 2005, 'F', 107), +(186842, 'Sariyah', 2005, 'F', 107), +(186843, 'Tehya', 2005, 'F', 107), +(186844, 'Valencia', 2005, 'F', 107), +(186845, 'Zaida', 2005, 'F', 107), +(186846, 'Ailani', 2005, 'F', 106), +(186847, 'Avah', 2005, 'F', 106), +(186848, 'Beyonce', 2005, 'F', 106), +(186849, 'Emili', 2005, 'F', 106), +(186850, 'Frankie', 2005, 'F', 106), +(186851, 'Giulia', 2005, 'F', 106), +(186852, 'Krysta', 2005, 'F', 106), +(186853, 'Lucie', 2005, 'F', 106), +(186854, 'Mabel', 2005, 'F', 106), +(186855, 'Paityn', 2005, 'F', 106), +(186856, 'Samaya', 2005, 'F', 106), +(186857, 'Seanna', 2005, 'F', 106), +(186858, 'Audrie', 2005, 'F', 105), +(186859, 'Elysia', 2005, 'F', 105), +(186860, 'Jiselle', 2005, 'F', 105), +(186861, 'Maryn', 2005, 'F', 105), +(186862, 'Meah', 2005, 'F', 105), +(186863, 'Trina', 2005, 'F', 105), +(186864, 'Brooklin', 2005, 'F', 104), +(186865, 'Bryce', 2005, 'F', 104), +(186866, 'Candy', 2005, 'F', 104), +(186867, 'Daijah', 2005, 'F', 104), +(186868, 'Darla', 2005, 'F', 104), +(186869, 'Emmie', 2005, 'F', 104), +(186870, 'Holland', 2005, 'F', 104), +(186871, 'Jadah', 2005, 'F', 104), +(186872, 'Jamison', 2005, 'F', 104), +(186873, 'Jessi', 2005, 'F', 104), +(186874, 'Joan', 2005, 'F', 104), +(186875, 'Kairi', 2005, 'F', 104), +(186876, 'Kiah', 2005, 'F', 104), +(186877, 'Layne', 2005, 'F', 104), +(186878, 'Lizet', 2005, 'F', 104), +(186879, 'Mona', 2005, 'F', 104), +(186880, 'Nola', 2005, 'F', 104), +(186881, 'Renata', 2005, 'F', 104), +(186882, 'Samarah', 2005, 'F', 104), +(186883, 'Sequoia', 2005, 'F', 104), +(186884, 'Shelbie', 2005, 'F', 104), +(186885, 'Tristin', 2005, 'F', 104), +(186886, 'Adina', 2005, 'F', 103), +(186887, 'Anijah', 2005, 'F', 103), +(186888, 'Cheryl', 2005, 'F', 103), +(186889, 'Debra', 2005, 'F', 103), +(186890, 'Iyonna', 2005, 'F', 103), +(186891, 'Jessika', 2005, 'F', 103), +(186892, 'Kalee', 2005, 'F', 103), +(186893, 'Kamiya', 2005, 'F', 103), +(186894, 'Keyanna', 2005, 'F', 103), +(186895, 'Kloey', 2005, 'F', 103), +(186896, 'Marion', 2005, 'F', 103), +(186897, 'Nova', 2005, 'F', 103), +(186898, 'Sana', 2005, 'F', 103), +(186899, 'Tanaya', 2005, 'F', 103), +(186900, 'Tatiyana', 2005, 'F', 103), +(186901, 'Alessia', 2005, 'F', 102), +(186902, 'Alona', 2005, 'F', 102), +(186903, 'Amberly', 2005, 'F', 102), +(186904, 'Gisell', 2005, 'F', 102), +(186905, 'Janai', 2005, 'F', 102), +(186906, 'Katalina', 2005, 'F', 102), +(186907, 'Keren', 2005, 'F', 102), +(186908, 'Kimber', 2005, 'F', 102), +(186909, 'Lissette', 2005, 'F', 102), +(186910, 'Loretta', 2005, 'F', 102), +(186911, 'Micayla', 2005, 'F', 102), +(186912, 'Olyvia', 2005, 'F', 102), +(186913, 'Sawyer', 2005, 'F', 102), +(186914, 'Soleil', 2005, 'F', 102), +(186915, 'Stormy', 2005, 'F', 102), +(186916, 'Symone', 2005, 'F', 102), +(186917, 'Tamera', 2005, 'F', 102), +(186918, 'Valarie', 2005, 'F', 102), +(186919, 'Aleksandra', 2005, 'F', 101), +(186920, 'Autum', 2005, 'F', 101), +(186921, 'Catelyn', 2005, 'F', 101), +(186922, 'Cecily', 2005, 'F', 101), +(186923, 'Dayanna', 2005, 'F', 101), +(186924, 'Jaela', 2005, 'F', 101), +(186925, 'Keanna', 2005, 'F', 101), +(186926, 'Kora', 2005, 'F', 101), +(186927, 'Mikaila', 2005, 'F', 101), +(186928, 'Miyah', 2005, 'F', 101), +(186929, 'Odalis', 2005, 'F', 101), +(186930, 'Rhyan', 2005, 'F', 101), +(186931, 'Saray', 2005, 'F', 101), +(186932, 'Suzanna', 2005, 'F', 101), +(186933, 'Anayeli', 2005, 'F', 100), +(186934, 'Braylee', 2005, 'F', 100), +(186935, 'Daija', 2005, 'F', 100), +(186936, 'Elliot', 2005, 'F', 100), +(186937, 'Halee', 2005, 'F', 100), +(186938, 'Kamilah', 2005, 'F', 100), +(186939, 'Keyara', 2005, 'F', 100), +(186940, 'Meg', 2005, 'F', 100), +(186941, 'Vivien', 2005, 'F', 100), +(186942, 'Jacob', 2005, 'M', 25814), +(186943, 'Michael', 2005, 'M', 23795), +(186944, 'Joshua', 2005, 'M', 23237), +(186945, 'Matthew', 2005, 'M', 21456), +(186946, 'Ethan', 2005, 'M', 21303), +(186947, 'Andrew', 2005, 'M', 20719), +(186948, 'Daniel', 2005, 'M', 20201), +(186949, 'Anthony', 2005, 'M', 19362), +(186950, 'Joseph', 2005, 'M', 19195), +(186951, 'Christopher', 2005, 'M', 19157), +(186952, 'William', 2005, 'M', 19041), +(186953, 'Alexander', 2005, 'M', 18108), +(186954, 'David', 2005, 'M', 18097), +(186955, 'Ryan', 2005, 'M', 17978), +(186956, 'Nicholas', 2005, 'M', 17065), +(186957, 'Tyler', 2005, 'M', 16980), +(186958, 'James', 2005, 'M', 16120), +(186959, 'John', 2005, 'M', 15758), +(186960, 'Jonathan', 2005, 'M', 14430), +(186961, 'Nathan', 2005, 'M', 14347), +(186962, 'Samuel', 2005, 'M', 14245), +(186963, 'Christian', 2005, 'M', 14194), +(186964, 'Noah', 2005, 'M', 13887), +(186965, 'Dylan', 2005, 'M', 13770), +(186966, 'Benjamin', 2005, 'M', 13563), +(186967, 'Logan', 2005, 'M', 13463), +(186968, 'Brandon', 2005, 'M', 12940), +(186969, 'Gabriel', 2005, 'M', 12749), +(186970, 'Zachary', 2005, 'M', 12278), +(186971, 'Jose', 2005, 'M', 12058), +(186972, 'Elijah', 2005, 'M', 11597), +(186973, 'Angel', 2005, 'M', 10981), +(186974, 'Kevin', 2005, 'M', 10904), +(186975, 'Jack', 2005, 'M', 10902), +(186976, 'Caleb', 2005, 'M', 10885), +(186977, 'Justin', 2005, 'M', 10504), +(186978, 'Robert', 2005, 'M', 10147), +(186979, 'Austin', 2005, 'M', 10108), +(186980, 'Evan', 2005, 'M', 10101), +(186981, 'Thomas', 2005, 'M', 10033), +(186982, 'Luke', 2005, 'M', 10002), +(186983, 'Mason', 2005, 'M', 9762), +(186984, 'Aidan', 2005, 'M', 9756), +(186985, 'Jackson', 2005, 'M', 9578), +(186986, 'Isaiah', 2005, 'M', 9514), +(186987, 'Jordan', 2005, 'M', 9389), +(186988, 'Gavin', 2005, 'M', 9333), +(186989, 'Connor', 2005, 'M', 9318), +(186990, 'Isaac', 2005, 'M', 9112), +(186991, 'Aiden', 2005, 'M', 9080), +(186992, 'Jason', 2005, 'M', 8607), +(186993, 'Cameron', 2005, 'M', 8567), +(186994, 'Hunter', 2005, 'M', 8505), +(186995, 'Jayden', 2005, 'M', 8250), +(186996, 'Juan', 2005, 'M', 8225), +(186997, 'Charles', 2005, 'M', 7924), +(186998, 'Aaron', 2005, 'M', 7799), +(186999, 'Lucas', 2005, 'M', 7572), +(187000, 'Luis', 2005, 'M', 7461), +(187001, 'Owen', 2005, 'M', 7165), +(187002, 'Landon', 2005, 'M', 7105), +(187003, 'Diego', 2005, 'M', 6934), +(187004, 'Brian', 2005, 'M', 6914), +(187005, 'Adam', 2005, 'M', 6836), +(187006, 'Adrian', 2005, 'M', 6715), +(187007, 'Eric', 2005, 'M', 6692), +(187008, 'Kyle', 2005, 'M', 6682), +(187009, 'Ian', 2005, 'M', 6681), +(187010, 'Nathaniel', 2005, 'M', 6677), +(187011, 'Carlos', 2005, 'M', 6557), +(187012, 'Alex', 2005, 'M', 6479), +(187013, 'Bryan', 2005, 'M', 6453), +(187014, 'Jesus', 2005, 'M', 6375), +(187015, 'Julian', 2005, 'M', 6110), +(187016, 'Sean', 2005, 'M', 5992), +(187017, 'Hayden', 2005, 'M', 5916), +(187018, 'Carter', 2005, 'M', 5897), +(187019, 'Jeremiah', 2005, 'M', 5836), +(187020, 'Cole', 2005, 'M', 5586), +(187021, 'Brayden', 2005, 'M', 5506), +(187022, 'Wyatt', 2005, 'M', 5351), +(187023, 'Chase', 2005, 'M', 5195), +(187024, 'Steven', 2005, 'M', 5072), +(187025, 'Timothy', 2005, 'M', 5022), +(187026, 'Dominic', 2005, 'M', 4988), +(187027, 'Sebastian', 2005, 'M', 4952), +(187028, 'Xavier', 2005, 'M', 4871), +(187029, 'Jaden', 2005, 'M', 4847), +(187030, 'Jesse', 2005, 'M', 4742), +(187031, 'Devin', 2005, 'M', 4710), +(187032, 'Seth', 2005, 'M', 4709), +(187033, 'Antonio', 2005, 'M', 4688), +(187034, 'Miguel', 2005, 'M', 4674), +(187035, 'Richard', 2005, 'M', 4662), +(187036, 'Colin', 2005, 'M', 4531), +(187037, 'Cody', 2005, 'M', 4524), +(187038, 'Alejandro', 2005, 'M', 4478), +(187039, 'Caden', 2005, 'M', 4438), +(187040, 'Blake', 2005, 'M', 4415), +(187041, 'Kaden', 2005, 'M', 4362), +(187042, 'Carson', 2005, 'M', 4352), +(187043, 'Henry', 2005, 'M', 4172), +(187044, 'Jake', 2005, 'M', 4152), +(187045, 'Liam', 2005, 'M', 4149), +(187046, 'Victor', 2005, 'M', 4136), +(187047, 'Riley', 2005, 'M', 4110), +(187048, 'Ashton', 2005, 'M', 4062), +(187049, 'Patrick', 2005, 'M', 4040), +(187050, 'Bryce', 2005, 'M', 3903), +(187051, 'Brady', 2005, 'M', 3781), +(187052, 'Vincent', 2005, 'M', 3744), +(187053, 'Trevor', 2005, 'M', 3679), +(187054, 'Tristan', 2005, 'M', 3587), +(187055, 'Mark', 2005, 'M', 3527), +(187056, 'Jeremy', 2005, 'M', 3482), +(187057, 'Marcus', 2005, 'M', 3467), +(187058, 'Oscar', 2005, 'M', 3459), +(187059, 'Jorge', 2005, 'M', 3438), +(187060, 'Parker', 2005, 'M', 3403), +(187061, 'Cooper', 2005, 'M', 3392), +(187062, 'Kaleb', 2005, 'M', 3389), +(187063, 'Kenneth', 2005, 'M', 3367), +(187064, 'Joel', 2005, 'M', 3270), +(187065, 'Garrett', 2005, 'M', 3262), +(187066, 'Josiah', 2005, 'M', 3252), +(187067, 'Ivan', 2005, 'M', 3235), +(187068, 'Alan', 2005, 'M', 3204), +(187069, 'Conner', 2005, 'M', 3203), +(187070, 'Eduardo', 2005, 'M', 3177), +(187071, 'Paul', 2005, 'M', 3140), +(187072, 'Tanner', 2005, 'M', 3072), +(187073, 'Alexis', 2005, 'M', 3049), +(187074, 'Braden', 2005, 'M', 3046), +(187075, 'Edward', 2005, 'M', 2970), +(187076, 'Omar', 2005, 'M', 2966), +(187077, 'Nicolas', 2005, 'M', 2962), +(187078, 'Jared', 2005, 'M', 2922), +(187079, 'Peyton', 2005, 'M', 2841), +(187080, 'George', 2005, 'M', 2822), +(187081, 'Maxwell', 2005, 'M', 2809), +(187082, 'Cristian', 2005, 'M', 2743), +(187083, 'Stephen', 2005, 'M', 2741), +(187084, 'Francisco', 2005, 'M', 2740), +(187085, 'Levi', 2005, 'M', 2737), +(187086, 'Collin', 2005, 'M', 2731), +(187087, 'Preston', 2005, 'M', 2725), +(187088, 'Ayden', 2005, 'M', 2720), +(187089, 'Nolan', 2005, 'M', 2717), +(187090, 'Dakota', 2005, 'M', 2715), +(187091, 'Micah', 2005, 'M', 2709), +(187092, 'Gage', 2005, 'M', 2699), +(187093, 'Eli', 2005, 'M', 2682), +(187094, 'Manuel', 2005, 'M', 2661), +(187095, 'Grant', 2005, 'M', 2657), +(187096, 'Colton', 2005, 'M', 2655), +(187097, 'Damian', 2005, 'M', 2627), +(187098, 'Ricardo', 2005, 'M', 2624), +(187099, 'Giovanni', 2005, 'M', 2598), +(187100, 'Andres', 2005, 'M', 2571), +(187101, 'Emmanuel', 2005, 'M', 2571), +(187102, 'Peter', 2005, 'M', 2551), +(187103, 'Malachi', 2005, 'M', 2549), +(187104, 'Cesar', 2005, 'M', 2519), +(187105, 'Javier', 2005, 'M', 2499), +(187106, 'Max', 2005, 'M', 2491), +(187107, 'Hector', 2005, 'M', 2458), +(187108, 'Shane', 2005, 'M', 2457), +(187109, 'Edgar', 2005, 'M', 2452), +(187110, 'Ty', 2005, 'M', 2448), +(187111, 'Fernando', 2005, 'M', 2439), +(187112, 'Jeffrey', 2005, 'M', 2424), +(187113, 'Derek', 2005, 'M', 2417), +(187114, 'Bradley', 2005, 'M', 2407), +(187115, 'Shawn', 2005, 'M', 2366), +(187116, 'Travis', 2005, 'M', 2364), +(187117, 'Brendan', 2005, 'M', 2360), +(187118, 'Spencer', 2005, 'M', 2313), +(187119, 'Edwin', 2005, 'M', 2303), +(187120, 'Mario', 2005, 'M', 2297), +(187121, 'Dalton', 2005, 'M', 2254), +(187122, 'Erick', 2005, 'M', 2243), +(187123, 'Johnathan', 2005, 'M', 2241), +(187124, 'Erik', 2005, 'M', 2226), +(187125, 'Jonah', 2005, 'M', 2221), +(187126, 'Donovan', 2005, 'M', 2181), +(187127, 'Leonardo', 2005, 'M', 2144), +(187128, 'Elias', 2005, 'M', 2116), +(187129, 'Marco', 2005, 'M', 2114), +(187130, 'Wesley', 2005, 'M', 2110), +(187131, 'Trenton', 2005, 'M', 2101), +(187132, 'Devon', 2005, 'M', 2094), +(187133, 'Abraham', 2005, 'M', 2045), +(187134, 'Brody', 2005, 'M', 2034), +(187135, 'Jaylen', 2005, 'M', 1996), +(187136, 'Bryson', 2005, 'M', 1977), +(187137, 'Raymond', 2005, 'M', 1958), +(187138, 'Josue', 2005, 'M', 1951), +(187139, 'Drew', 2005, 'M', 1949), +(187140, 'Sergio', 2005, 'M', 1948), +(187141, 'Damien', 2005, 'M', 1936), +(187142, 'Andy', 2005, 'M', 1918), +(187143, 'Gregory', 2005, 'M', 1900), +(187144, 'Dillon', 2005, 'M', 1895), +(187145, 'Roberto', 2005, 'M', 1877), +(187146, 'Roman', 2005, 'M', 1860), +(187147, 'Martin', 2005, 'M', 1834), +(187148, 'Andre', 2005, 'M', 1825), +(187149, 'Jace', 2005, 'M', 1796), +(187150, 'Oliver', 2005, 'M', 1792), +(187151, 'Miles', 2005, 'M', 1755), +(187152, 'Harrison', 2005, 'M', 1717), +(187153, 'Jalen', 2005, 'M', 1707), +(187154, 'Corey', 2005, 'M', 1703), +(187155, 'Dominick', 2005, 'M', 1688), +(187156, 'Avery', 2005, 'M', 1661), +(187157, 'Clayton', 2005, 'M', 1660), +(187158, 'Israel', 2005, 'M', 1654), +(187159, 'Pedro', 2005, 'M', 1645), +(187160, 'Calvin', 2005, 'M', 1617), +(187161, 'Colby', 2005, 'M', 1602), +(187162, 'Dawson', 2005, 'M', 1598), +(187163, 'Taylor', 2005, 'M', 1576), +(187164, 'Cayden', 2005, 'M', 1572), +(187165, 'Jaiden', 2005, 'M', 1564), +(187166, 'Landen', 2005, 'M', 1536), +(187167, 'Troy', 2005, 'M', 1525), +(187168, 'Julio', 2005, 'M', 1515), +(187169, 'Rafael', 2005, 'M', 1490), +(187170, 'Trey', 2005, 'M', 1490), +(187171, 'Jaxon', 2005, 'M', 1488), +(187172, 'Frank', 2005, 'M', 1478), +(187173, 'Dustin', 2005, 'M', 1474), +(187174, 'Scott', 2005, 'M', 1473), +(187175, 'Ruben', 2005, 'M', 1464), +(187176, 'Camden', 2005, 'M', 1463), +(187177, 'Mitchell', 2005, 'M', 1446), +(187178, 'Zane', 2005, 'M', 1433), +(187179, 'Payton', 2005, 'M', 1428), +(187180, 'Kai', 2005, 'M', 1409), +(187181, 'Skyler', 2005, 'M', 1401), +(187182, 'Johnny', 2005, 'M', 1392), +(187183, 'Keegan', 2005, 'M', 1390), +(187184, 'Brett', 2005, 'M', 1389), +(187185, 'Griffin', 2005, 'M', 1374), +(187186, 'Derrick', 2005, 'M', 1372), +(187187, 'Marcos', 2005, 'M', 1360), +(187188, 'Drake', 2005, 'M', 1336), +(187189, 'Raul', 2005, 'M', 1332), +(187190, 'Braxton', 2005, 'M', 1315), +(187191, 'Kaiden', 2005, 'M', 1314), +(187192, 'Gerardo', 2005, 'M', 1312), +(187193, 'Simon', 2005, 'M', 1311), +(187194, 'Armando', 2005, 'M', 1309), +(187195, 'Grayson', 2005, 'M', 1306), +(187196, 'Ronald', 2005, 'M', 1298), +(187197, 'Kayden', 2005, 'M', 1297), +(187198, 'Angelo', 2005, 'M', 1293), +(187199, 'Chance', 2005, 'M', 1273), +(187200, 'Leo', 2005, 'M', 1272), +(187201, 'Brock', 2005, 'M', 1259), +(187202, 'Enrique', 2005, 'M', 1257), +(187203, 'Lukas', 2005, 'M', 1257), +(187204, 'Jaime', 2005, 'M', 1255), +(187205, 'Lance', 2005, 'M', 1253), +(187206, 'Malik', 2005, 'M', 1249), +(187207, 'Dante', 2005, 'M', 1240), +(187208, 'Tyson', 2005, 'M', 1235), +(187209, 'Phillip', 2005, 'M', 1233), +(187210, 'Fabian', 2005, 'M', 1229), +(187211, 'Emanuel', 2005, 'M', 1227), +(187212, 'Trent', 2005, 'M', 1224), +(187213, 'Allen', 2005, 'M', 1223), +(187214, 'Tucker', 2005, 'M', 1222), +(187215, 'Emilio', 2005, 'M', 1214), +(187216, 'Jakob', 2005, 'M', 1214), +(187217, 'Hudson', 2005, 'M', 1209), +(187218, 'Maddox', 2005, 'M', 1206), +(187219, 'Santiago', 2005, 'M', 1203), +(187220, 'Xander', 2005, 'M', 1200), +(187221, 'Aden', 2005, 'M', 1196), +(187222, 'Rylan', 2005, 'M', 1180), +(187223, 'Kameron', 2005, 'M', 1175), +(187224, 'Kyler', 2005, 'M', 1175), +(187225, 'Pablo', 2005, 'M', 1168), +(187226, 'Keith', 2005, 'M', 1165), +(187227, 'Cade', 2005, 'M', 1162), +(187228, 'Adan', 2005, 'M', 1154), +(187229, 'Asher', 2005, 'M', 1153), +(187230, 'Donald', 2005, 'M', 1150), +(187231, 'Alberto', 2005, 'M', 1137), +(187232, 'Darius', 2005, 'M', 1132), +(187233, 'Alec', 2005, 'M', 1127), +(187234, 'Zion', 2005, 'M', 1117), +(187235, 'Gustavo', 2005, 'M', 1113), +(187236, 'Saul', 2005, 'M', 1112), +(187237, 'Ryder', 2005, 'M', 1107), +(187238, 'Casey', 2005, 'M', 1101), +(187239, 'Gael', 2005, 'M', 1100), +(187240, 'Theodore', 2005, 'M', 1095), +(187241, 'Arturo', 2005, 'M', 1093), +(187242, 'Mathew', 2005, 'M', 1090), +(187243, 'Mateo', 2005, 'M', 1087), +(187244, 'Jimmy', 2005, 'M', 1085), +(187245, 'Jude', 2005, 'M', 1083), +(187246, 'Quinn', 2005, 'M', 1083), +(187247, 'Randy', 2005, 'M', 1082), +(187248, 'Sawyer', 2005, 'M', 1069), +(187249, 'Ezekiel', 2005, 'M', 1066), +(187250, 'Zackary', 2005, 'M', 1066), +(187251, 'Corbin', 2005, 'M', 1065), +(187252, 'Myles', 2005, 'M', 1063), +(187253, 'Brennan', 2005, 'M', 1054), +(187254, 'Danny', 2005, 'M', 1049), +(187255, 'Axel', 2005, 'M', 1046), +(187256, 'Jerry', 2005, 'M', 1040), +(187257, 'Lane', 2005, 'M', 1038), +(187258, 'Dennis', 2005, 'M', 1034), +(187259, 'Lorenzo', 2005, 'M', 1028), +(187260, 'Tony', 2005, 'M', 1028), +(187261, 'Esteban', 2005, 'M', 1022), +(187262, 'Damon', 2005, 'M', 1007), +(187263, 'Braeden', 2005, 'M', 1003), +(187264, 'Brenden', 2005, 'M', 1002), +(187265, 'Louis', 2005, 'M', 1001), +(187266, 'Philip', 2005, 'M', 993), +(187267, 'Brayan', 2005, 'M', 978), +(187268, 'Curtis', 2005, 'M', 959), +(187269, 'Nickolas', 2005, 'M', 938), +(187270, 'Charlie', 2005, 'M', 932), +(187271, 'Jayson', 2005, 'M', 923), +(187272, 'Jonathon', 2005, 'M', 919), +(187273, 'Quentin', 2005, 'M', 912), +(187274, 'Zander', 2005, 'M', 910), +(187275, 'Morgan', 2005, 'M', 900), +(187276, 'Ismael', 2005, 'M', 898), +(187277, 'Nikolas', 2005, 'M', 897), +(187278, 'Emiliano', 2005, 'M', 885), +(187279, 'Gary', 2005, 'M', 878), +(187280, 'Amir', 2005, 'M', 872), +(187281, 'Chandler', 2005, 'M', 870), +(187282, 'Tristen', 2005, 'M', 869), +(187283, 'Albert', 2005, 'M', 866), +(187284, 'Darren', 2005, 'M', 864), +(187285, 'Mekhi', 2005, 'M', 861), +(187286, 'Salvador', 2005, 'M', 861), +(187287, 'Abel', 2005, 'M', 855), +(187288, 'Caiden', 2005, 'M', 849), +(187289, 'Ezra', 2005, 'M', 848), +(187290, 'Jay', 2005, 'M', 848), +(187291, 'Joaquin', 2005, 'M', 846), +(187292, 'Alfredo', 2005, 'M', 844), +(187293, 'Declan', 2005, 'M', 842), +(187294, 'Julius', 2005, 'M', 841), +(187295, 'Camron', 2005, 'M', 839), +(187296, 'Moises', 2005, 'M', 835), +(187297, 'Holden', 2005, 'M', 830), +(187298, 'Arthur', 2005, 'M', 829), +(187299, 'Larry', 2005, 'M', 827), +(187300, 'Douglas', 2005, 'M', 821), +(187301, 'Braylon', 2005, 'M', 816), +(187302, 'Bryant', 2005, 'M', 814), +(187303, 'Dallas', 2005, 'M', 814), +(187304, 'Orlando', 2005, 'M', 813), +(187305, 'Ramon', 2005, 'M', 812), +(187306, 'Keaton', 2005, 'M', 807), +(187307, 'Marvin', 2005, 'M', 806), +(187308, 'Mauricio', 2005, 'M', 806), +(187309, 'Ernesto', 2005, 'M', 804), +(187310, 'Walker', 2005, 'M', 803), +(187311, 'Hugo', 2005, 'M', 795), +(187312, 'Joe', 2005, 'M', 794), +(187313, 'Reece', 2005, 'M', 779), +(187314, 'Cory', 2005, 'M', 772), +(187315, 'Walter', 2005, 'M', 769), +(187316, 'Felix', 2005, 'M', 768), +(187317, 'Ricky', 2005, 'M', 767), +(187318, 'Chad', 2005, 'M', 766), +(187319, 'Maximus', 2005, 'M', 766), +(187320, 'Yahir', 2005, 'M', 762), +(187321, 'Marc', 2005, 'M', 760), +(187322, 'Tate', 2005, 'M', 759), +(187323, 'Ali', 2005, 'M', 758), +(187324, 'Dean', 2005, 'M', 754), +(187325, 'Jonas', 2005, 'M', 753), +(187326, 'Braydon', 2005, 'M', 751), +(187327, 'Elliot', 2005, 'M', 750), +(187328, 'Weston', 2005, 'M', 742), +(187329, 'Isiah', 2005, 'M', 741), +(187330, 'Jaxson', 2005, 'M', 738), +(187331, 'Easton', 2005, 'M', 734), +(187332, 'Bennett', 2005, 'M', 733), +(187333, 'Davis', 2005, 'M', 730), +(187334, 'Rodrigo', 2005, 'M', 730), +(187335, 'Russell', 2005, 'M', 730), +(187336, 'Lawrence', 2005, 'M', 725), +(187337, 'Shaun', 2005, 'M', 722), +(187338, 'Chris', 2005, 'M', 720), +(187339, 'Nasir', 2005, 'M', 713), +(187340, 'Eddie', 2005, 'M', 706), +(187341, 'Luca', 2005, 'M', 706), +(187342, 'Uriel', 2005, 'M', 706), +(187343, 'Kristopher', 2005, 'M', 704), +(187344, 'Javon', 2005, 'M', 703), +(187345, 'Reese', 2005, 'M', 699), +(187346, 'Issac', 2005, 'M', 697), +(187347, 'Terry', 2005, 'M', 692), +(187348, 'Micheal', 2005, 'M', 684), +(187349, 'Graham', 2005, 'M', 670), +(187350, 'Amari', 2005, 'M', 666), +(187351, 'Zachariah', 2005, 'M', 665), +(187352, 'Maurice', 2005, 'M', 661), +(187353, 'Silas', 2005, 'M', 659), +(187354, 'Elliott', 2005, 'M', 658), +(187355, 'Kade', 2005, 'M', 656), +(187356, 'Carl', 2005, 'M', 651), +(187357, 'Beau', 2005, 'M', 645), +(187358, 'Roger', 2005, 'M', 644), +(187359, 'Jamarion', 2005, 'M', 640), +(187360, 'Marshall', 2005, 'M', 640), +(187361, 'Omarion', 2005, 'M', 639), +(187362, 'Jadon', 2005, 'M', 637), +(187363, 'Leonel', 2005, 'M', 632), +(187364, 'Jamari', 2005, 'M', 631), +(187365, 'Reid', 2005, 'M', 627), +(187366, 'Tommy', 2005, 'M', 625), +(187367, 'Zachery', 2005, 'M', 624), +(187368, 'Davion', 2005, 'M', 621), +(187369, 'Dorian', 2005, 'M', 621), +(187370, 'Melvin', 2005, 'M', 621), +(187371, 'Jon', 2005, 'M', 619), +(187372, 'Noe', 2005, 'M', 619), +(187373, 'Cohen', 2005, 'M', 617), +(187374, 'Kelvin', 2005, 'M', 616), +(187375, 'Guillermo', 2005, 'M', 615), +(187376, 'Jaylin', 2005, 'M', 608), +(187377, 'Jeffery', 2005, 'M', 606), +(187378, 'Rowan', 2005, 'M', 602), +(187379, 'Jaydon', 2005, 'M', 600), +(187380, 'Deandre', 2005, 'M', 599), +(187381, 'Justice', 2005, 'M', 598), +(187382, 'Nelson', 2005, 'M', 593), +(187383, 'Jessie', 2005, 'M', 590), +(187384, 'Noel', 2005, 'M', 590), +(187385, 'Branden', 2005, 'M', 588), +(187386, 'Felipe', 2005, 'M', 582), +(187387, 'Kristian', 2005, 'M', 580), +(187388, 'Rodney', 2005, 'M', 577), +(187389, 'Nathanael', 2005, 'M', 575), +(187390, 'Jermaine', 2005, 'M', 572), +(187391, 'Frederick', 2005, 'M', 569), +(187392, 'Franklin', 2005, 'M', 567), +(187393, 'Khalil', 2005, 'M', 566), +(187394, 'Skylar', 2005, 'M', 563), +(187395, 'Brent', 2005, 'M', 562), +(187396, 'Terrance', 2005, 'M', 562), +(187397, 'Billy', 2005, 'M', 560), +(187398, 'Dane', 2005, 'M', 560), +(187399, 'Jayce', 2005, 'M', 559), +(187400, 'Quinton', 2005, 'M', 558), +(187401, 'Kenny', 2005, 'M', 555), +(187402, 'Sam', 2005, 'M', 555), +(187403, 'Allan', 2005, 'M', 554), +(187404, 'Jamal', 2005, 'M', 553), +(187405, 'Rogelio', 2005, 'M', 548), +(187406, 'Quincy', 2005, 'M', 547), +(187407, 'Nehemiah', 2005, 'M', 543), +(187408, 'Ahmad', 2005, 'M', 542), +(187409, 'Izaiah', 2005, 'M', 534), +(187410, 'Solomon', 2005, 'M', 534), +(187411, 'Brendon', 2005, 'M', 531), +(187412, 'Desmond', 2005, 'M', 530), +(187413, 'Reed', 2005, 'M', 529), +(187414, 'Roy', 2005, 'M', 529), +(187415, 'Jaylon', 2005, 'M', 528), +(187416, 'Kody', 2005, 'M', 526), +(187417, 'Phoenix', 2005, 'M', 526), +(187418, 'Toby', 2005, 'M', 525), +(187419, 'Rene', 2005, 'M', 524), +(187420, 'Mohamed', 2005, 'M', 523), +(187421, 'Osvaldo', 2005, 'M', 522), +(187422, 'Terrell', 2005, 'M', 518), +(187423, 'Tobias', 2005, 'M', 516), +(187424, 'Wilson', 2005, 'M', 516), +(187425, 'Conor', 2005, 'M', 514), +(187426, 'Alvin', 2005, 'M', 512), +(187427, 'Jameson', 2005, 'M', 512), +(187428, 'Cyrus', 2005, 'M', 508), +(187429, 'Tomas', 2005, 'M', 508), +(187430, 'Triston', 2005, 'M', 508), +(187431, 'Bobby', 2005, 'M', 504), +(187432, 'Byron', 2005, 'M', 503), +(187433, 'Will', 2005, 'M', 503), +(187434, 'Craig', 2005, 'M', 502), +(187435, 'Pierce', 2005, 'M', 502), +(187436, 'Trevon', 2005, 'M', 502), +(187437, 'Lincoln', 2005, 'M', 501), +(187438, 'Maximilian', 2005, 'M', 497), +(187439, 'Demetrius', 2005, 'M', 496), +(187440, 'Rodolfo', 2005, 'M', 496), +(187441, 'Anderson', 2005, 'M', 495), +(187442, 'Reginald', 2005, 'M', 494), +(187443, 'Zackery', 2005, 'M', 493), +(187444, 'Rohan', 2005, 'M', 492), +(187445, 'Bruce', 2005, 'M', 489), +(187446, 'Jett', 2005, 'M', 486), +(187447, 'Wade', 2005, 'M', 486), +(187448, 'Damion', 2005, 'M', 484), +(187449, 'Harley', 2005, 'M', 484), +(187450, 'Adolfo', 2005, 'M', 483), +(187451, 'Joey', 2005, 'M', 482), +(187452, 'Willie', 2005, 'M', 481), +(187453, 'Judah', 2005, 'M', 480), +(187454, 'Marlon', 2005, 'M', 478), +(187455, 'Cruz', 2005, 'M', 477), +(187456, 'Bailey', 2005, 'M', 476), +(187457, 'River', 2005, 'M', 476), +(187458, 'Steve', 2005, 'M', 475), +(187459, 'Isaias', 2005, 'M', 474), +(187460, 'Moses', 2005, 'M', 473), +(187461, 'Gerald', 2005, 'M', 472), +(187462, 'Kellen', 2005, 'M', 471), +(187463, 'Marquis', 2005, 'M', 471), +(187464, 'Kendall', 2005, 'M', 470), +(187465, 'Leon', 2005, 'M', 468), +(187466, 'Blaine', 2005, 'M', 467), +(187467, 'Francis', 2005, 'M', 463), +(187468, 'Grady', 2005, 'M', 462), +(187469, 'Harry', 2005, 'M', 459), +(187470, 'Finn', 2005, 'M', 458), +(187471, 'Gilberto', 2005, 'M', 457), +(187472, 'Dayton', 2005, 'M', 456), +(187473, 'Deven', 2005, 'M', 456), +(187474, 'Johnathon', 2005, 'M', 456), +(187475, 'Everett', 2005, 'M', 455), +(187476, 'Alfonso', 2005, 'M', 454), +(187477, 'Alonzo', 2005, 'M', 452), +(187478, 'Titus', 2005, 'M', 452), +(187479, 'Jasper', 2005, 'M', 451), +(187480, 'Gunnar', 2005, 'M', 450), +(187481, 'Malcolm', 2005, 'M', 447), +(187482, 'Talan', 2005, 'M', 446), +(187483, 'Trace', 2005, 'M', 445), +(187484, 'Ben', 2005, 'M', 444), +(187485, 'Kobe', 2005, 'M', 443), +(187486, 'Rocco', 2005, 'M', 442), +(187487, 'Johan', 2005, 'M', 439), +(187488, 'Ariel', 2005, 'M', 438), +(187489, 'Ulises', 2005, 'M', 438), +(187490, 'Ezequiel', 2005, 'M', 437), +(187491, 'Jamie', 2005, 'M', 435); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(187492, 'Warren', 2005, 'M', 434), +(187493, 'Kendrick', 2005, 'M', 433), +(187494, 'Jamison', 2005, 'M', 432), +(187495, 'Abram', 2005, 'M', 431), +(187496, 'Rolando', 2005, 'M', 431), +(187497, 'Jerome', 2005, 'M', 429), +(187498, 'Tristin', 2005, 'M', 429), +(187499, 'Orion', 2005, 'M', 427), +(187500, 'Jairo', 2005, 'M', 425), +(187501, 'Ahmed', 2005, 'M', 424), +(187502, 'Devan', 2005, 'M', 423), +(187503, 'Damarion', 2005, 'M', 422), +(187504, 'Ray', 2005, 'M', 420), +(187505, 'Vicente', 2005, 'M', 420), +(187506, 'Gianni', 2005, 'M', 418), +(187507, 'Greyson', 2005, 'M', 418), +(187508, 'Kadin', 2005, 'M', 413), +(187509, 'Ronnie', 2005, 'M', 412), +(187510, 'Stanley', 2005, 'M', 410), +(187511, 'Jase', 2005, 'M', 409), +(187512, 'Kieran', 2005, 'M', 408), +(187513, 'Ramiro', 2005, 'M', 408), +(187514, 'Brodie', 2005, 'M', 407), +(187515, 'Porter', 2005, 'M', 405), +(187516, 'Tyrone', 2005, 'M', 404), +(187517, 'Colten', 2005, 'M', 403), +(187518, 'Terrence', 2005, 'M', 403), +(187519, 'Darrell', 2005, 'M', 401), +(187520, 'Jarrett', 2005, 'M', 398), +(187521, 'Alvaro', 2005, 'M', 395), +(187522, 'Addison', 2005, 'M', 393), +(187523, 'Braiden', 2005, 'M', 391), +(187524, 'Todd', 2005, 'M', 390), +(187525, 'Emerson', 2005, 'M', 387), +(187526, 'Kolby', 2005, 'M', 387), +(187527, 'Ibrahim', 2005, 'M', 385), +(187528, 'Lee', 2005, 'M', 384), +(187529, 'Leonard', 2005, 'M', 384), +(187530, 'Rudy', 2005, 'M', 384), +(187531, 'Davin', 2005, 'M', 383), +(187532, 'Cedric', 2005, 'M', 381), +(187533, 'Deshawn', 2005, 'M', 381), +(187534, 'Keenan', 2005, 'M', 381), +(187535, 'Emmett', 2005, 'M', 380), +(187536, 'Neil', 2005, 'M', 379), +(187537, 'Quintin', 2005, 'M', 379), +(187538, 'Alijah', 2005, 'M', 378), +(187539, 'Gilbert', 2005, 'M', 378), +(187540, 'Karson', 2005, 'M', 378), +(187541, 'Elisha', 2005, 'M', 376), +(187542, 'Kole', 2005, 'M', 376), +(187543, 'Randall', 2005, 'M', 374), +(187544, 'Aldo', 2005, 'M', 373), +(187545, 'Darian', 2005, 'M', 373), +(187546, 'Davon', 2005, 'M', 372), +(187547, 'Ronan', 2005, 'M', 372), +(187548, 'Cristopher', 2005, 'M', 371), +(187549, 'Leland', 2005, 'M', 370), +(187550, 'Junior', 2005, 'M', 369), +(187551, 'Romeo', 2005, 'M', 369), +(187552, 'Antoine', 2005, 'M', 367), +(187553, 'Efrain', 2005, 'M', 366), +(187554, 'Jaquan', 2005, 'M', 365), +(187555, 'Waylon', 2005, 'M', 365), +(187556, 'Irvin', 2005, 'M', 364), +(187557, 'Coleman', 2005, 'M', 363), +(187558, 'Camren', 2005, 'M', 359), +(187559, 'Duncan', 2005, 'M', 359), +(187560, 'Dominik', 2005, 'M', 358), +(187561, 'Gunner', 2005, 'M', 358), +(187562, 'Aron', 2005, 'M', 356), +(187563, 'Jabari', 2005, 'M', 355), +(187564, 'Talon', 2005, 'M', 355), +(187565, 'Kolton', 2005, 'M', 354), +(187566, 'Mohammed', 2005, 'M', 354), +(187567, 'Alexzander', 2005, 'M', 353), +(187568, 'Harold', 2005, 'M', 349), +(187569, 'Amarion', 2005, 'M', 348), +(187570, 'Asa', 2005, 'M', 348), +(187571, 'Jefferson', 2005, 'M', 348), +(187572, 'Amare', 2005, 'M', 347), +(187573, 'Brice', 2005, 'M', 347), +(187574, 'Misael', 2005, 'M', 346), +(187575, 'Kasey', 2005, 'M', 344), +(187576, 'Mohammad', 2005, 'M', 344), +(187577, 'August', 2005, 'M', 343), +(187578, 'Julien', 2005, 'M', 341), +(187579, 'Brycen', 2005, 'M', 340), +(187580, 'Kamron', 2005, 'M', 340), +(187581, 'Maximiliano', 2005, 'M', 340), +(187582, 'Draven', 2005, 'M', 339), +(187583, 'Dwayne', 2005, 'M', 339), +(187584, 'Eugene', 2005, 'M', 339), +(187585, 'Brooks', 2005, 'M', 338), +(187586, 'Sage', 2005, 'M', 338), +(187587, 'Zechariah', 2005, 'M', 338), +(187588, 'Dashawn', 2005, 'M', 337), +(187589, 'Moshe', 2005, 'M', 337), +(187590, 'Tyrell', 2005, 'M', 334), +(187591, 'Ernest', 2005, 'M', 333), +(187592, 'Freddy', 2005, 'M', 333), +(187593, 'Aydan', 2005, 'M', 331), +(187594, 'Maverick', 2005, 'M', 331), +(187595, 'Clay', 2005, 'M', 330), +(187596, 'Alonso', 2005, 'M', 329), +(187597, 'Donte', 2005, 'M', 328), +(187598, 'Keagan', 2005, 'M', 327), +(187599, 'Lewis', 2005, 'M', 327), +(187600, 'Brennen', 2005, 'M', 326), +(187601, 'Sincere', 2005, 'M', 325), +(187602, 'Layne', 2005, 'M', 324), +(187603, 'Dale', 2005, 'M', 323), +(187604, 'Kenyon', 2005, 'M', 322), +(187605, 'Omari', 2005, 'M', 322), +(187606, 'Octavio', 2005, 'M', 321), +(187607, 'Tyree', 2005, 'M', 320), +(187608, 'Raphael', 2005, 'M', 316), +(187609, 'Wayne', 2005, 'M', 316), +(187610, 'Demarion', 2005, 'M', 315), +(187611, 'Alessandro', 2005, 'M', 314), +(187612, 'Jair', 2005, 'M', 314), +(187613, 'Ross', 2005, 'M', 313), +(187614, 'Ignacio', 2005, 'M', 312), +(187615, 'Oswaldo', 2005, 'M', 312), +(187616, 'Bradyn', 2005, 'M', 311), +(187617, 'Agustin', 2005, 'M', 310), +(187618, 'Davian', 2005, 'M', 309), +(187619, 'Jordon', 2005, 'M', 309), +(187620, 'Cash', 2005, 'M', 308), +(187621, 'Xzavier', 2005, 'M', 308), +(187622, 'Aryan', 2005, 'M', 307), +(187623, 'Dominique', 2005, 'M', 304), +(187624, 'Gideon', 2005, 'M', 304), +(187625, 'London', 2005, 'M', 304), +(187626, 'Matteo', 2005, 'M', 304), +(187627, 'Lamar', 2005, 'M', 303), +(187628, 'Boston', 2005, 'M', 302), +(187629, 'Humberto', 2005, 'M', 301), +(187630, 'Mike', 2005, 'M', 300), +(187631, 'Garret', 2005, 'M', 299), +(187632, 'Muhammad', 2005, 'M', 299), +(187633, 'Reagan', 2005, 'M', 299), +(187634, 'Rhett', 2005, 'M', 298), +(187635, 'Jadyn', 2005, 'M', 297), +(187636, 'Adrien', 2005, 'M', 296), +(187637, 'Lawson', 2005, 'M', 296), +(187638, 'Tyrese', 2005, 'M', 296), +(187639, 'Clarence', 2005, 'M', 295), +(187640, 'Salvatore', 2005, 'M', 295), +(187641, 'Kareem', 2005, 'M', 294), +(187642, 'Kyan', 2005, 'M', 293), +(187643, 'Semaj', 2005, 'M', 293), +(187644, 'Javion', 2005, 'M', 292), +(187645, 'Ryland', 2005, 'M', 292), +(187646, 'Derick', 2005, 'M', 291), +(187647, 'Gavyn', 2005, 'M', 289), +(187648, 'Jamar', 2005, 'M', 289), +(187649, 'Markus', 2005, 'M', 289), +(187650, 'Darnell', 2005, 'M', 288), +(187651, 'Kian', 2005, 'M', 288), +(187652, 'Arjun', 2005, 'M', 287), +(187653, 'Barrett', 2005, 'M', 286), +(187654, 'Jaron', 2005, 'M', 286), +(187655, 'Nathanial', 2005, 'M', 286), +(187656, 'Ari', 2005, 'M', 285), +(187657, 'Landyn', 2005, 'M', 285), +(187658, 'Rory', 2005, 'M', 283), +(187659, 'Ryker', 2005, 'M', 283), +(187660, 'Armani', 2005, 'M', 282), +(187661, 'Frankie', 2005, 'M', 282), +(187662, 'Giancarlo', 2005, 'M', 282), +(187663, 'Kane', 2005, 'M', 282), +(187664, 'Malakai', 2005, 'M', 282), +(187665, 'Milo', 2005, 'M', 282), +(187666, 'Alfred', 2005, 'M', 280), +(187667, 'Clinton', 2005, 'M', 279), +(187668, 'Hamza', 2005, 'M', 279), +(187669, 'Cullen', 2005, 'M', 278), +(187670, 'Jaylan', 2005, 'M', 277), +(187671, 'Aditya', 2005, 'M', 276), +(187672, 'Jovani', 2005, 'M', 276), +(187673, 'Justus', 2005, 'M', 276), +(187674, 'Kamari', 2005, 'M', 276), +(187675, 'Nigel', 2005, 'M', 276), +(187676, 'Roland', 2005, 'M', 276), +(187677, 'Keshawn', 2005, 'M', 275), +(187678, 'Devyn', 2005, 'M', 274), +(187679, 'Isai', 2005, 'M', 274), +(187680, 'Johnpaul', 2005, 'M', 273), +(187681, 'Rigoberto', 2005, 'M', 273), +(187682, 'Dillan', 2005, 'M', 272), +(187683, 'Nico', 2005, 'M', 272), +(187684, 'Sterling', 2005, 'M', 272), +(187685, 'Marques', 2005, 'M', 271), +(187686, 'Jorden', 2005, 'M', 270), +(187687, 'Keon', 2005, 'M', 270), +(187688, 'Donavan', 2005, 'M', 269), +(187689, 'Giovanny', 2005, 'M', 269), +(187690, 'Anton', 2005, 'M', 268), +(187691, 'Enzo', 2005, 'M', 267), +(187692, 'Josh', 2005, 'M', 265), +(187693, 'Konner', 2005, 'M', 265), +(187694, 'Kale', 2005, 'M', 264), +(187695, 'Karl', 2005, 'M', 264), +(187696, 'Demarcus', 2005, 'M', 263), +(187697, 'Jaeden', 2005, 'M', 263), +(187698, 'Cale', 2005, 'M', 262), +(187699, 'Estevan', 2005, 'M', 262), +(187700, 'Yair', 2005, 'M', 262), +(187701, 'Braedon', 2005, 'M', 261), +(187702, 'Glenn', 2005, 'M', 261), +(187703, 'Vance', 2005, 'M', 261), +(187704, 'Darryl', 2005, 'M', 260), +(187705, 'Bo', 2005, 'M', 259), +(187706, 'Darien', 2005, 'M', 259), +(187707, 'Rylee', 2005, 'M', 259), +(187708, 'Santos', 2005, 'M', 259), +(187709, 'Alden', 2005, 'M', 258), +(187710, 'Hassan', 2005, 'M', 258), +(187711, 'Cannon', 2005, 'M', 257), +(187712, 'Gaven', 2005, 'M', 257), +(187713, 'Ralph', 2005, 'M', 257), +(187714, 'Coby', 2005, 'M', 256), +(187715, 'Augustus', 2005, 'M', 255), +(187716, 'Sheldon', 2005, 'M', 255), +(187717, 'Seamus', 2005, 'M', 254), +(187718, 'Vaughn', 2005, 'M', 254), +(187719, 'Nathen', 2005, 'M', 253), +(187720, 'Yosef', 2005, 'M', 253), +(187721, 'German', 2005, 'M', 251), +(187722, 'Layton', 2005, 'M', 251), +(187723, 'Luciano', 2005, 'M', 250), +(187724, 'Roderick', 2005, 'M', 249), +(187725, 'Antony', 2005, 'M', 248), +(187726, 'Braulio', 2005, 'M', 248), +(187727, 'Elvis', 2005, 'M', 247), +(187728, 'Jovanni', 2005, 'M', 247), +(187729, 'Samir', 2005, 'M', 247), +(187730, 'Ellis', 2005, 'M', 246), +(187731, 'Clark', 2005, 'M', 245), +(187732, 'Deangelo', 2005, 'M', 245), +(187733, 'Malaki', 2005, 'M', 245), +(187734, 'Atticus', 2005, 'M', 244), +(187735, 'Winston', 2005, 'M', 244), +(187736, 'Jamir', 2005, 'M', 243), +(187737, 'Adriel', 2005, 'M', 242), +(187738, 'Heath', 2005, 'M', 242), +(187739, 'Jean', 2005, 'M', 242), +(187740, 'Sonny', 2005, 'M', 241), +(187741, 'Stefan', 2005, 'M', 241), +(187742, 'Deacon', 2005, 'M', 240), +(187743, 'Bruno', 2005, 'M', 239), +(187744, 'Chaim', 2005, 'M', 239), +(187745, 'Korbin', 2005, 'M', 239), +(187746, 'Alexandro', 2005, 'M', 238), +(187747, 'Marcel', 2005, 'M', 238), +(187748, 'Marquise', 2005, 'M', 238), +(187749, 'Rex', 2005, 'M', 237), +(187750, 'Shamar', 2005, 'M', 235), +(187751, 'Santino', 2005, 'M', 234), +(187752, 'Kylan', 2005, 'M', 233), +(187753, 'Mathias', 2005, 'M', 233), +(187754, 'Cason', 2005, 'M', 232), +(187755, 'Nick', 2005, 'M', 232), +(187756, 'Reynaldo', 2005, 'M', 232), +(187757, 'Jovanny', 2005, 'M', 231), +(187758, 'Prince', 2005, 'M', 231), +(187759, 'Quinten', 2005, 'M', 231), +(187760, 'Makai', 2005, 'M', 230), +(187761, 'Milton', 2005, 'M', 230), +(187762, 'Adonis', 2005, 'M', 229), +(187763, 'Garrison', 2005, 'M', 229), +(187764, 'Howard', 2005, 'M', 229), +(187765, 'Brad', 2005, 'M', 228), +(187766, 'Remington', 2005, 'M', 228), +(187767, 'Konnor', 2005, 'M', 227), +(187768, 'Jovany', 2005, 'M', 226), +(187769, 'Nestor', 2005, 'M', 226), +(187770, 'Deon', 2005, 'M', 224), +(187771, 'Kaeden', 2005, 'M', 224), +(187772, 'Bernard', 2005, 'M', 223), +(187773, 'Cortez', 2005, 'M', 223), +(187774, 'Elmer', 2005, 'M', 223), +(187775, 'Braylen', 2005, 'M', 222), +(187776, 'Carlo', 2005, 'M', 222), +(187777, 'Conrad', 2005, 'M', 222), +(187778, 'Savion', 2005, 'M', 221), +(187779, 'Sidney', 2005, 'M', 221), +(187780, 'Devonte', 2005, 'M', 220), +(187781, 'Ean', 2005, 'M', 220), +(187782, 'Jordy', 2005, 'M', 219), +(187783, 'Rashad', 2005, 'M', 219), +(187784, 'Dangelo', 2005, 'M', 218), +(187785, 'Houston', 2005, 'M', 218), +(187786, 'Josef', 2005, 'M', 218), +(187787, 'Lucian', 2005, 'M', 217), +(187788, 'Pranav', 2005, 'M', 217), +(187789, 'Antwan', 2005, 'M', 216), +(187790, 'Aydin', 2005, 'M', 216), +(187791, 'Gonzalo', 2005, 'M', 216), +(187792, 'Keyon', 2005, 'M', 216), +(187793, 'Cael', 2005, 'M', 215), +(187794, 'Dario', 2005, 'M', 215), +(187795, 'Marcelo', 2005, 'M', 215), +(187796, 'Simeon', 2005, 'M', 215), +(187797, 'Tristian', 2005, 'M', 215), +(187798, 'Zain', 2005, 'M', 215), +(187799, 'Blaze', 2005, 'M', 214), +(187800, 'Jan', 2005, 'M', 214), +(187801, 'Kadyn', 2005, 'M', 214), +(187802, 'Sammy', 2005, 'M', 214), +(187803, 'Domenic', 2005, 'M', 213), +(187804, 'Elian', 2005, 'M', 213), +(187805, 'Kamden', 2005, 'M', 213), +(187806, 'Reuben', 2005, 'M', 213), +(187807, 'Darwin', 2005, 'M', 212), +(187808, 'Haden', 2005, 'M', 212), +(187809, 'Luka', 2005, 'M', 212), +(187810, 'Matias', 2005, 'M', 212), +(187811, 'Leandro', 2005, 'M', 211), +(187812, 'Paxton', 2005, 'M', 211), +(187813, 'Zaire', 2005, 'M', 211), +(187814, 'Dexter', 2005, 'M', 210), +(187815, 'Giovani', 2005, 'M', 210), +(187816, 'Jovan', 2005, 'M', 209), +(187817, 'Nikhil', 2005, 'M', 209), +(187818, 'Gordon', 2005, 'M', 208), +(187819, 'Teagan', 2005, 'M', 208), +(187820, 'Bronson', 2005, 'M', 207), +(187821, 'Franco', 2005, 'M', 207), +(187822, 'Jamel', 2005, 'M', 207), +(187823, 'Korey', 2005, 'M', 207), +(187824, 'Aedan', 2005, 'M', 206), +(187825, 'Abdullah', 2005, 'M', 205), +(187826, 'Andreas', 2005, 'M', 205), +(187827, 'Carmine', 2005, 'M', 205), +(187828, 'Matthias', 2005, 'M', 205), +(187829, 'Finnegan', 2005, 'M', 204), +(187830, 'Kason', 2005, 'M', 203), +(187831, 'Soren', 2005, 'M', 203), +(187832, 'Travon', 2005, 'M', 203), +(187833, 'Jacoby', 2005, 'M', 202), +(187834, 'Kanye', 2005, 'M', 202), +(187835, 'Karter', 2005, 'M', 202), +(187836, 'Zakary', 2005, 'M', 202), +(187837, 'Chaz', 2005, 'M', 201), +(187838, 'Denzel', 2005, 'M', 201), +(187839, 'Ronaldo', 2005, 'M', 201), +(187840, 'Vincenzo', 2005, 'M', 201), +(187841, 'Damari', 2005, 'M', 200), +(187842, 'Darrius', 2005, 'M', 199), +(187843, 'Rey', 2005, 'M', 199), +(187844, 'Carmelo', 2005, 'M', 198), +(187845, 'Messiah', 2005, 'M', 198), +(187846, 'Stephan', 2005, 'M', 198), +(187847, 'Zavier', 2005, 'M', 197), +(187848, 'Broderick', 2005, 'M', 196), +(187849, 'Gaige', 2005, 'M', 195), +(187850, 'Tyshawn', 2005, 'M', 195), +(187851, 'Norman', 2005, 'M', 194), +(187852, 'Royce', 2005, 'M', 194), +(187853, 'Shannon', 2005, 'M', 194), +(187854, 'Maximo', 2005, 'M', 193), +(187855, 'Yehuda', 2005, 'M', 193), +(187856, 'Gannon', 2005, 'M', 192), +(187857, 'Jeramiah', 2005, 'M', 192), +(187858, 'Thaddeus', 2005, 'M', 192), +(187859, 'Ethen', 2005, 'M', 191), +(187860, 'Fredrick', 2005, 'M', 191), +(187861, 'Immanuel', 2005, 'M', 191), +(187862, 'Maximillian', 2005, 'M', 191), +(187863, 'Perry', 2005, 'M', 191), +(187864, 'Clifford', 2005, 'M', 190), +(187865, 'Fredy', 2005, 'M', 190), +(187866, 'Keven', 2005, 'M', 190), +(187867, 'Makhi', 2005, 'M', 190), +(187868, 'Sullivan', 2005, 'M', 190), +(187869, 'Cristofer', 2005, 'M', 189), +(187870, 'Kamren', 2005, 'M', 188), +(187871, 'Nash', 2005, 'M', 188), +(187872, 'Zack', 2005, 'M', 188), +(187873, 'Brenton', 2005, 'M', 187), +(187874, 'Darin', 2005, 'M', 187), +(187875, 'Destin', 2005, 'M', 187), +(187876, 'Jordyn', 2005, 'M', 187), +(187877, 'Campbell', 2005, 'M', 186), +(187878, 'Dandre', 2005, 'M', 186), +(187879, 'Deshaun', 2005, 'M', 186), +(187880, 'Dimitri', 2005, 'M', 186), +(187881, 'Jarvis', 2005, 'M', 186), +(187882, 'Tayshaun', 2005, 'M', 186), +(187883, 'Baby', 2005, 'M', 185), +(187884, 'Colt', 2005, 'M', 185), +(187885, 'Daryl', 2005, 'M', 185), +(187886, 'Jaidyn', 2005, 'M', 185), +(187887, 'Stone', 2005, 'M', 185), +(187888, 'Austen', 2005, 'M', 184), +(187889, 'Darion', 2005, 'M', 184), +(187890, 'Leroy', 2005, 'M', 184), +(187891, 'Marquez', 2005, 'M', 184), +(187892, 'Rishi', 2005, 'M', 184), +(187893, 'Valentin', 2005, 'M', 184), +(187894, 'Earl', 2005, 'M', 183), +(187895, 'Guadalupe', 2005, 'M', 183), +(187896, 'Jaydin', 2005, 'M', 183), +(187897, 'Shea', 2005, 'M', 183), +(187898, 'Yusuf', 2005, 'M', 183), +(187899, 'Bernardo', 2005, 'M', 182), +(187900, 'Elvin', 2005, 'M', 182), +(187901, 'Hugh', 2005, 'M', 182), +(187902, 'Kurt', 2005, 'M', 182), +(187903, 'Mariano', 2005, 'M', 182), +(187904, 'Gauge', 2005, 'M', 181), +(187905, 'Kelton', 2005, 'M', 181), +(187906, 'Menachem', 2005, 'M', 181), +(187907, 'Branson', 2005, 'M', 180), +(187908, 'Camryn', 2005, 'M', 180), +(187909, 'Carlton', 2005, 'M', 180), +(187910, 'Dion', 2005, 'M', 180), +(187911, 'Arnav', 2005, 'M', 179), +(187912, 'Dallin', 2005, 'M', 179), +(187913, 'Fidel', 2005, 'M', 179), +(187914, 'Keanu', 2005, 'M', 179), +(187915, 'Mikel', 2005, 'M', 179), +(187916, 'Rocky', 2005, 'M', 179), +(187917, 'Efren', 2005, 'M', 178), +(187918, 'Jaren', 2005, 'M', 178), +(187919, 'Reilly', 2005, 'M', 178), +(187920, 'Shayne', 2005, 'M', 178), +(187921, 'Dylon', 2005, 'M', 177), +(187922, 'Maxim', 2005, 'M', 177), +(187923, 'Rhys', 2005, 'M', 177), +(187924, 'Ulysses', 2005, 'M', 177), +(187925, 'Irving', 2005, 'M', 176), +(187926, 'Keyshawn', 2005, 'M', 176), +(187927, 'Markell', 2005, 'M', 176), +(187928, 'Cornelius', 2005, 'M', 175), +(187929, 'Cristobal', 2005, 'M', 175), +(187930, 'Daquan', 2005, 'M', 175), +(187931, 'Geoffrey', 2005, 'M', 174), +(187932, 'Jax', 2005, 'M', 174), +(187933, 'Van', 2005, 'M', 174), +(187934, 'Eliseo', 2005, 'M', 173), +(187935, 'Isaak', 2005, 'M', 173), +(187936, 'Joan', 2005, 'M', 173), +(187937, 'Kennedy', 2005, 'M', 173), +(187938, 'Adin', 2005, 'M', 172), +(187939, 'Blaise', 2005, 'M', 172), +(187940, 'Fisher', 2005, 'M', 172), +(187941, 'Jaheim', 2005, 'M', 172), +(187942, 'Edison', 2005, 'M', 171), +(187943, 'Tariq', 2005, 'M', 171), +(187944, 'Eliezer', 2005, 'M', 170), +(187945, 'Taj', 2005, 'M', 169), +(187946, 'Tye', 2005, 'M', 169), +(187947, 'Yisroel', 2005, 'M', 169), +(187948, 'Bridger', 2005, 'M', 168), +(187949, 'Markel', 2005, 'M', 168), +(187950, 'Zayne', 2005, 'M', 168), +(187951, 'Benny', 2005, 'M', 167), +(187952, 'Emery', 2005, 'M', 167), +(187953, 'Haiden', 2005, 'M', 167), +(187954, 'Kyree', 2005, 'M', 167), +(187955, 'Truman', 2005, 'M', 167), +(187956, 'Darrin', 2005, 'M', 166), +(187957, 'Krish', 2005, 'M', 166), +(187958, 'Marion', 2005, 'M', 166), +(187959, 'Tylor', 2005, 'M', 166), +(187960, 'Alexandre', 2005, 'M', 165), +(187961, 'Gino', 2005, 'M', 165), +(187962, 'Heriberto', 2005, 'M', 165), +(187963, 'Lamont', 2005, 'M', 165), +(187964, 'Lonnie', 2005, 'M', 165), +(187965, 'Treyton', 2005, 'M', 165), +(187966, 'Eddy', 2005, 'M', 164), +(187967, 'Jaedon', 2005, 'M', 164), +(187968, 'Jayvon', 2005, 'M', 164), +(187969, 'Jerimiah', 2005, 'M', 164), +(187970, 'Nazir', 2005, 'M', 164), +(187971, 'Zaid', 2005, 'M', 164), +(187972, 'Brogan', 2005, 'M', 163), +(187973, 'Kael', 2005, 'M', 163), +(187974, 'Killian', 2005, 'M', 162), +(187975, 'Koby', 2005, 'M', 162), +(187976, 'Niko', 2005, 'M', 162), +(187977, 'Nikolai', 2005, 'M', 162), +(187978, 'Pierre', 2005, 'M', 162), +(187979, 'Javen', 2005, 'M', 161), +(187980, 'Amos', 2005, 'M', 160), +(187981, 'Francesco', 2005, 'M', 160), +(187982, 'Izayah', 2005, 'M', 160), +(187983, 'Ryley', 2005, 'M', 160), +(187984, 'Daxton', 2005, 'M', 159), +(187985, 'Fletcher', 2005, 'M', 159), +(187986, 'Stephon', 2005, 'M', 159), +(187987, 'Yael', 2005, 'M', 159), +(187988, 'Deonte', 2005, 'M', 158), +(187989, 'Jagger', 2005, 'M', 158), +(187990, 'Jeshua', 2005, 'M', 158), +(187991, 'Raymundo', 2005, 'M', 158), +(187992, 'Barry', 2005, 'M', 157), +(187993, 'Benedict', 2005, 'M', 157), +(187994, 'Hezekiah', 2005, 'M', 157), +(187995, 'Jamil', 2005, 'M', 157), +(187996, 'Jevon', 2005, 'M', 157), +(187997, 'Latrell', 2005, 'M', 157), +(187998, 'Stuart', 2005, 'M', 157), +(187999, 'Tavion', 2005, 'M', 157), +(188000, 'Austyn', 2005, 'M', 156), +(188001, 'Clifton', 2005, 'M', 156), +(188002, 'Coen', 2005, 'M', 156), +(188003, 'Harvey', 2005, 'M', 156), +(188004, 'Kevon', 2005, 'M', 156), +(188005, 'Kurtis', 2005, 'M', 156), +(188006, 'Sebastien', 2005, 'M', 156), +(188007, 'Vladimir', 2005, 'M', 156), +(188008, 'Dan', 2005, 'M', 155), +(188009, 'Darrion', 2005, 'M', 155), +(188010, 'Kory', 2005, 'M', 155), +(188011, 'Treyvon', 2005, 'M', 155), +(188012, 'Turner', 2005, 'M', 155), +(188013, 'Corban', 2005, 'M', 154), +(188014, 'Jedidiah', 2005, 'M', 154), +(188015, 'Kent', 2005, 'M', 154), +(188016, 'Koen', 2005, 'M', 154), +(188017, 'Jamarcus', 2005, 'M', 153), +(188018, 'Jomar', 2005, 'M', 153), +(188019, 'Reyli', 2005, 'M', 153), +(188020, 'Yousef', 2005, 'M', 153), +(188021, 'Ajay', 2005, 'M', 152), +(188022, 'Arnold', 2005, 'M', 152), +(188023, 'Benito', 2005, 'M', 152), +(188024, 'Dax', 2005, 'M', 152), +(188025, 'Dwight', 2005, 'M', 152), +(188026, 'Ely', 2005, 'M', 152), +(188027, 'Guy', 2005, 'M', 152), +(188028, 'Leif', 2005, 'M', 152), +(188029, 'Luc', 2005, 'M', 152), +(188030, 'Memphis', 2005, 'M', 152), +(188031, 'Mustafa', 2005, 'M', 152), +(188032, 'Rick', 2005, 'M', 152), +(188033, 'Bishop', 2005, 'M', 151), +(188034, 'Bret', 2005, 'M', 151), +(188035, 'Denver', 2005, 'M', 151), +(188036, 'Dewayne', 2005, 'M', 151), +(188037, 'Forrest', 2005, 'M', 151), +(188038, 'Tre', 2005, 'M', 151), +(188039, 'Camilo', 2005, 'M', 150), +(188040, 'Jensen', 2005, 'M', 150), +(188041, 'Jonatan', 2005, 'M', 150), +(188042, 'Landin', 2005, 'M', 150), +(188043, 'Samson', 2005, 'M', 150), +(188044, 'Trever', 2005, 'M', 150), +(188045, 'Jasiah', 2005, 'M', 149), +(188046, 'Rashawn', 2005, 'M', 149), +(188047, 'Rickey', 2005, 'M', 149), +(188048, 'Trenten', 2005, 'M', 149), +(188049, 'Yash', 2005, 'M', 149), +(188050, 'Aubrey', 2005, 'M', 148), +(188051, 'Donavin', 2005, 'M', 148), +(188052, 'Dontae', 2005, 'M', 148), +(188053, 'Ever', 2005, 'M', 148), +(188054, 'King', 2005, 'M', 148), +(188055, 'Amar', 2005, 'M', 147), +(188056, 'Case', 2005, 'M', 147), +(188057, 'Duane', 2005, 'M', 147), +(188058, 'Dyllan', 2005, 'M', 147), +(188059, 'Enoch', 2005, 'M', 147), +(188060, 'Fred', 2005, 'M', 147), +(188061, 'Trevion', 2005, 'M', 147), +(188062, 'Beckett', 2005, 'M', 146), +(188063, 'Johnnie', 2005, 'M', 146), +(188064, 'Keller', 2005, 'M', 146), +(188065, 'Mordechai', 2005, 'M', 146), +(188066, 'Raiden', 2005, 'M', 146), +(188067, 'Sabastian', 2005, 'M', 146), +(188068, 'Eliel', 2005, 'M', 145), +(188069, 'Jai', 2005, 'M', 145), +(188070, 'Trevin', 2005, 'M', 145), +(188071, 'Armaan', 2005, 'M', 144), +(188072, 'Bowen', 2005, 'M', 144), +(188073, 'Canyon', 2005, 'M', 144), +(188074, 'Geovanni', 2005, 'M', 144), +(188075, 'Lionel', 2005, 'M', 144), +(188076, 'Miguelangel', 2005, 'M', 144), +(188077, 'Ephraim', 2005, 'M', 143), +(188078, 'Gerson', 2005, 'M', 143), +(188079, 'Khalid', 2005, 'M', 143), +(188080, 'Bilal', 2005, 'M', 142), +(188081, 'Isac', 2005, 'M', 142), +(188082, 'Lloyd', 2005, 'M', 142), +(188083, 'Antwon', 2005, 'M', 141), +(188084, 'Courtney', 2005, 'M', 141), +(188085, 'Denis', 2005, 'M', 141), +(188086, 'Hank', 2005, 'M', 141), +(188087, 'Kirk', 2005, 'M', 141), +(188088, 'Lazaro', 2005, 'M', 141), +(188089, 'Nate', 2005, 'M', 141), +(188090, 'Varun', 2005, 'M', 140), +(188091, 'Anish', 2005, 'M', 139), +(188092, 'Cain', 2005, 'M', 139), +(188093, 'Harper', 2005, 'M', 139), +(188094, 'Theo', 2005, 'M', 139), +(188095, 'Augustine', 2005, 'M', 138), +(188096, 'Davonte', 2005, 'M', 138), +(188097, 'Don', 2005, 'M', 138), +(188098, 'Kamryn', 2005, 'M', 138), +(188099, 'Shlomo', 2005, 'M', 138), +(188100, 'Ace', 2005, 'M', 137), +(188101, 'Arman', 2005, 'M', 137), +(188102, 'Evin', 2005, 'M', 137), +(188103, 'Freddie', 2005, 'M', 137), +(188104, 'Genaro', 2005, 'M', 137), +(188105, 'Jakari', 2005, 'M', 137), +(188106, 'Jarod', 2005, 'M', 137), +(188107, 'Judson', 2005, 'M', 137), +(188108, 'Obed', 2005, 'M', 137), +(188109, 'Trystan', 2005, 'M', 137), +(188110, 'Anson', 2005, 'M', 136), +(188111, 'Dhruv', 2005, 'M', 136), +(188112, 'Finley', 2005, 'M', 136), +(188113, 'Garett', 2005, 'M', 136), +(188114, 'Jaydan', 2005, 'M', 136), +(188115, 'Kasen', 2005, 'M', 136), +(188116, 'Merrick', 2005, 'M', 136), +(188117, 'Sameer', 2005, 'M', 136), +(188118, 'Tegan', 2005, 'M', 136), +(188119, 'Wilmer', 2005, 'M', 136), +(188120, 'Abdiel', 2005, 'M', 135), +(188121, 'Haven', 2005, 'M', 135), +(188122, 'Jakub', 2005, 'M', 135), +(188123, 'Jarrod', 2005, 'M', 135), +(188124, 'Juanpablo', 2005, 'M', 135), +(188125, 'Sahil', 2005, 'M', 135), +(188126, 'Santana', 2005, 'M', 135), +(188127, 'Syed', 2005, 'M', 135), +(188128, 'Alton', 2005, 'M', 134), +(188129, 'Benson', 2005, 'M', 134), +(188130, 'Eden', 2005, 'M', 134), +(188131, 'Izaac', 2005, 'M', 134), +(188132, 'Jahir', 2005, 'M', 134), +(188133, 'Kellan', 2005, 'M', 134), +(188134, 'Rayan', 2005, 'M', 134), +(188135, 'Achilles', 2005, 'M', 133), +(188136, 'Anakin', 2005, 'M', 133), +(188137, 'Dilan', 2005, 'M', 133), +(188138, 'Jaleel', 2005, 'M', 133), +(188139, 'Kyron', 2005, 'M', 133), +(188140, 'Vernon', 2005, 'M', 133), +(188141, 'Ayush', 2005, 'M', 132), +(188142, 'Beck', 2005, 'M', 132), +(188143, 'Dereck', 2005, 'M', 132), +(188144, 'Isidro', 2005, 'M', 132), +(188145, 'Karol', 2005, 'M', 132), +(188146, 'Marcello', 2005, 'M', 132), +(188147, 'Sami', 2005, 'M', 132), +(188148, 'Demario', 2005, 'M', 131), +(188149, 'Eamon', 2005, 'M', 131), +(188150, 'Hernan', 2005, 'M', 131), +(188151, 'Javonte', 2005, 'M', 131), +(188152, 'Maddux', 2005, 'M', 131), +(188153, 'Tylan', 2005, 'M', 131), +(188154, 'Abner', 2005, 'M', 130), +(188155, 'Aidyn', 2005, 'M', 130), +(188156, 'Ameer', 2005, 'M', 130), +(188157, 'Bentley', 2005, 'M', 130), +(188158, 'Donnie', 2005, 'M', 130), +(188159, 'Jeff', 2005, 'M', 130), +(188160, 'Justyn', 2005, 'M', 130), +(188161, 'Robin', 2005, 'M', 130), +(188162, 'Tavon', 2005, 'M', 130), +(188163, 'Valentino', 2005, 'M', 130), +(188164, 'Dakoda', 2005, 'M', 129), +(188165, 'Eliot', 2005, 'M', 129), +(188166, 'Hans', 2005, 'M', 129), +(188167, 'Jakobe', 2005, 'M', 129), +(188168, 'Neal', 2005, 'M', 129), +(188169, 'Ramses', 2005, 'M', 129), +(188170, 'Tevin', 2005, 'M', 129), +(188171, 'Zayden', 2005, 'M', 129), +(188172, 'Britton', 2005, 'M', 128), +(188173, 'Bryton', 2005, 'M', 128), +(188174, 'Ervin', 2005, 'M', 128), +(188175, 'Jarred', 2005, 'M', 128), +(188176, 'Jermiah', 2005, 'M', 128), +(188177, 'Juancarlos', 2005, 'M', 128), +(188178, 'Leighton', 2005, 'M', 128), +(188179, 'Rahul', 2005, 'M', 128), +(188180, 'Siddharth', 2005, 'M', 128), +(188181, 'Tyquan', 2005, 'M', 128), +(188182, 'Uriah', 2005, 'M', 128), +(188183, 'Xavion', 2005, 'M', 128), +(188184, 'Anders', 2005, 'M', 127), +(188185, 'Cordell', 2005, 'M', 127), +(188186, 'Jaycob', 2005, 'M', 127), +(188187, 'Johann', 2005, 'M', 127), +(188188, 'Kalvin', 2005, 'M', 127), +(188189, 'Kelly', 2005, 'M', 127), +(188190, 'Kye', 2005, 'M', 127), +(188191, 'Otto', 2005, 'M', 127), +(188192, 'Glen', 2005, 'M', 126), +(188193, 'Tyron', 2005, 'M', 126), +(188194, 'Bradly', 2005, 'M', 125), +(188195, 'Canaan', 2005, 'M', 125), +(188196, 'Coy', 2005, 'M', 125), +(188197, 'Gabe', 2005, 'M', 125), +(188198, 'Nevin', 2005, 'M', 125), +(188199, 'Tom', 2005, 'M', 125), +(188200, 'Carsen', 2005, 'M', 124), +(188201, 'Clyde', 2005, 'M', 124), +(188202, 'Gian', 2005, 'M', 124), +(188203, 'Ishmael', 2005, 'M', 124), +(188204, 'Kolten', 2005, 'M', 124), +(188205, 'Lester', 2005, 'M', 124), +(188206, 'Mykel', 2005, 'M', 124), +(188207, 'Abdul', 2005, 'M', 123), +(188208, 'Donavon', 2005, 'M', 123), +(188209, 'Mack', 2005, 'M', 123), +(188210, 'Ramsey', 2005, 'M', 123), +(188211, 'Yandel', 2005, 'M', 123), +(188212, 'Chauncey', 2005, 'M', 122), +(188213, 'Federico', 2005, 'M', 122), +(188214, 'Kenton', 2005, 'M', 122), +(188215, 'Slade', 2005, 'M', 122), +(188216, 'Terence', 2005, 'M', 122), +(188217, 'Westin', 2005, 'M', 122), +(188218, 'Zeke', 2005, 'M', 122), +(188219, 'Dashaun', 2005, 'M', 121), +(188220, 'Jadin', 2005, 'M', 121), +(188221, 'Nikko', 2005, 'M', 121), +(188222, 'Paulo', 2005, 'M', 121), +(188223, 'Blayne', 2005, 'M', 120), +(188224, 'Cian', 2005, 'M', 120), +(188225, 'Deion', 2005, 'M', 120), +(188226, 'Kalen', 2005, 'M', 120), +(188227, 'Karim', 2005, 'M', 120), +(188228, 'Kerry', 2005, 'M', 120), +(188229, 'Yaakov', 2005, 'M', 120), +(188230, 'Alek', 2005, 'M', 119), +(188231, 'Coleton', 2005, 'M', 119), +(188232, 'Daveon', 2005, 'M', 119), +(188233, 'Devlin', 2005, 'M', 119), +(188234, 'Gibson', 2005, 'M', 119), +(188235, 'Koda', 2005, 'M', 119), +(188236, 'Vince', 2005, 'M', 119), +(188237, 'Auston', 2005, 'M', 118), +(188238, 'Herbert', 2005, 'M', 118), +(188239, 'Jet', 2005, 'M', 118), +(188240, 'Karon', 2005, 'M', 118), +(188241, 'Milan', 2005, 'M', 118), +(188242, 'Shimon', 2005, 'M', 118), +(188243, 'Braedyn', 2005, 'M', 117), +(188244, 'Briar', 2005, 'M', 117), +(188245, 'Jamaal', 2005, 'M', 117), +(188246, 'Ken', 2005, 'M', 117), +(188247, 'Mitchel', 2005, 'M', 117), +(188248, 'Avraham', 2005, 'M', 116), +(188249, 'Brant', 2005, 'M', 116), +(188250, 'Gianluca', 2005, 'M', 116), +(188251, 'Harris', 2005, 'M', 116), +(188252, 'Keshaun', 2005, 'M', 116), +(188253, 'Lars', 2005, 'M', 116), +(188254, 'Myron', 2005, 'M', 116), +(188255, 'Rico', 2005, 'M', 116), +(188256, 'Alexavier', 2005, 'M', 115), +(188257, 'Izaak', 2005, 'M', 115), +(188258, 'Jackie', 2005, 'M', 115), +(188259, 'Javian', 2005, 'M', 115), +(188260, 'Karsten', 2005, 'M', 115), +(188261, 'Marko', 2005, 'M', 115), +(188262, 'Ronin', 2005, 'M', 115), +(188263, 'Yovani', 2005, 'M', 115), +(188264, 'Baylor', 2005, 'M', 114), +(188265, 'Brennon', 2005, 'M', 114), +(188266, 'Emory', 2005, 'M', 114), +(188267, 'Gregorio', 2005, 'M', 114), +(188268, 'Kollin', 2005, 'M', 114), +(188269, 'Leyton', 2005, 'M', 114), +(188270, 'Lucio', 2005, 'M', 114), +(188271, 'Osiel', 2005, 'M', 114), +(188272, 'Trae', 2005, 'M', 114), +(188273, 'Brighton', 2005, 'M', 113), +(188274, 'Christofer', 2005, 'M', 113), +(188275, 'Gerard', 2005, 'M', 113), +(188276, 'Jael', 2005, 'M', 113), +(188277, 'Kohen', 2005, 'M', 113), +(188278, 'Lucien', 2005, 'M', 113), +(188279, 'Magnus', 2005, 'M', 113), +(188280, 'Om', 2005, 'M', 113), +(188281, 'Said', 2005, 'M', 113), +(188282, 'Theron', 2005, 'M', 113), +(188283, 'Aric', 2005, 'M', 112), +(188284, 'Clint', 2005, 'M', 112), +(188285, 'Domingo', 2005, 'M', 112), +(188286, 'Javin', 2005, 'M', 112), +(188287, 'Kentrell', 2005, 'M', 112), +(188288, 'Miller', 2005, 'M', 112), +(188289, 'Quinlan', 2005, 'M', 112), +(188290, 'Ridge', 2005, 'M', 112), +(188291, 'Tayshawn', 2005, 'M', 112), +(188292, 'Ammon', 2005, 'M', 111), +(188293, 'Everardo', 2005, 'M', 111), +(188294, 'Jalil', 2005, 'M', 111), +(188295, 'Langston', 2005, 'M', 111), +(188296, 'Lathan', 2005, 'M', 111), +(188297, 'Loren', 2005, 'M', 111), +(188298, 'Mauro', 2005, 'M', 111), +(188299, 'Osmar', 2005, 'M', 111), +(188300, 'Zavion', 2005, 'M', 111), +(188301, 'Brandt', 2005, 'M', 110), +(188302, 'Daylen', 2005, 'M', 110), +(188303, 'Deegan', 2005, 'M', 110), +(188304, 'Desean', 2005, 'M', 110), +(188305, 'Donnell', 2005, 'M', 110), +(188306, 'Eder', 2005, 'M', 110), +(188307, 'Ewan', 2005, 'M', 110), +(188308, 'Finnian', 2005, 'M', 110), +(188309, 'Javan', 2005, 'M', 110), +(188310, 'Lamarion', 2005, 'M', 110), +(188311, 'Remy', 2005, 'M', 110), +(188312, 'Tobin', 2005, 'M', 110), +(188313, 'Caeden', 2005, 'M', 109), +(188314, 'Demarco', 2005, 'M', 109), +(188315, 'Erwin', 2005, 'M', 109), +(188316, 'Favian', 2005, 'M', 109), +(188317, 'Lucius', 2005, 'M', 109), +(188318, 'Torin', 2005, 'M', 109), +(188319, 'Yitzchok', 2005, 'M', 109), +(188320, 'Avi', 2005, 'M', 108), +(188321, 'Cecil', 2005, 'M', 108), +(188322, 'Daunte', 2005, 'M', 108), +(188323, 'Eleazar', 2005, 'M', 108), +(188324, 'Hayes', 2005, 'M', 108), +(188325, 'Jalyn', 2005, 'M', 108), +(188326, 'Lucca', 2005, 'M', 108), +(188327, 'Mikah', 2005, 'M', 108), +(188328, 'Shmuel', 2005, 'M', 108), +(188329, 'Abhinav', 2005, 'M', 107), +(188330, 'Adyn', 2005, 'M', 107), +(188331, 'Herman', 2005, 'M', 107), +(188332, 'Isreal', 2005, 'M', 107), +(188333, 'Jayvion', 2005, 'M', 107), +(188334, 'Jordi', 2005, 'M', 107), +(188335, 'Kenan', 2005, 'M', 107), +(188336, 'Lachlan', 2005, 'M', 107), +(188337, 'Landan', 2005, 'M', 107), +(188338, 'Odin', 2005, 'M', 107), +(188339, 'Pierson', 2005, 'M', 107), +(188340, 'Roan', 2005, 'M', 107), +(188341, 'Tai', 2005, 'M', 107), +(188342, 'Willem', 2005, 'M', 107), +(188343, 'Bodie', 2005, 'M', 106), +(188344, 'Cy', 2005, 'M', 106), +(188345, 'Iain', 2005, 'M', 106), +(188346, 'Kavon', 2005, 'M', 106), +(188347, 'Marcellus', 2005, 'M', 106), +(188348, 'Wallace', 2005, 'M', 106), +(188349, 'Dusty', 2005, 'M', 105), +(188350, 'Kahlil', 2005, 'M', 105), +(188351, 'Archer', 2005, 'M', 104), +(188352, 'Arian', 2005, 'M', 104), +(188353, 'Bradon', 2005, 'M', 104), +(188354, 'Brando', 2005, 'M', 104), +(188355, 'Callum', 2005, 'M', 104), +(188356, 'Dajuan', 2005, 'M', 104), +(188357, 'Damarcus', 2005, 'M', 104), +(188358, 'Dameon', 2005, 'M', 104), +(188359, 'Daron', 2005, 'M', 104), +(188360, 'Daylan', 2005, 'M', 104), +(188361, 'Hasan', 2005, 'M', 104), +(188362, 'Ishaan', 2005, 'M', 104), +(188363, 'Jashawn', 2005, 'M', 104), +(188364, 'Keandre', 2005, 'M', 104), +(188365, 'Laron', 2005, 'M', 104), +(188366, 'Lennon', 2005, 'M', 104), +(188367, 'Marcelino', 2005, 'M', 104), +(188368, 'Otis', 2005, 'M', 104), +(188369, 'Yasir', 2005, 'M', 104), +(188370, 'Benton', 2005, 'M', 103), +(188371, 'Edmund', 2005, 'M', 103), +(188372, 'Eian', 2005, 'M', 103), +(188373, 'Ishan', 2005, 'M', 103), +(188374, 'Jacques', 2005, 'M', 103), +(188375, 'Jelani', 2005, 'M', 103), +(188376, 'Kristofer', 2005, 'M', 103), +(188377, 'Marek', 2005, 'M', 103), +(188378, 'Masen', 2005, 'M', 103), +(188379, 'Presley', 2005, 'M', 103), +(188380, 'Aleksander', 2005, 'M', 102), +(188381, 'Cassius', 2005, 'M', 102), +(188382, 'Colter', 2005, 'M', 102), +(188383, 'Dejuan', 2005, 'M', 102), +(188384, 'Hyrum', 2005, 'M', 102), +(188385, 'Isael', 2005, 'M', 102), +(188386, 'Izak', 2005, 'M', 102), +(188387, 'Jacobi', 2005, 'M', 102), +(188388, 'Juelz', 2005, 'M', 102), +(188389, 'Leslie', 2005, 'M', 102), +(188390, 'Maison', 2005, 'M', 102), +(188391, 'Paolo', 2005, 'M', 102), +(188392, 'Rayden', 2005, 'M', 102), +(188393, 'Zyon', 2005, 'M', 102), +(188394, 'Dev', 2005, 'M', 101), +(188395, 'Jacorey', 2005, 'M', 101), +(188396, 'Jarell', 2005, 'M', 101), +(188397, 'Jericho', 2005, 'M', 101), +(188398, 'Keion', 2005, 'M', 101), +(188399, 'Raheem', 2005, 'M', 101), +(188400, 'Adalberto', 2005, 'M', 100), +(188401, 'Brandan', 2005, 'M', 100), +(188402, 'Chace', 2005, 'M', 100), +(188403, 'Dave', 2005, 'M', 100), +(188404, 'Demari', 2005, 'M', 100), +(188405, 'Deontae', 2005, 'M', 100), +(188406, 'Jimmie', 2005, 'M', 100), +(188407, 'Joseluis', 2005, 'M', 100), +(188408, 'Marlin', 2005, 'M', 100), +(188409, 'Martez', 2005, 'M', 100), +(188410, 'Yonatan', 2005, 'M', 100), +(188411, 'Emily', 2006, 'F', 21389), +(188412, 'Emma', 2006, 'F', 19107), +(188413, 'Madison', 2006, 'F', 18612), +(188414, 'Isabella', 2006, 'F', 18213), +(188415, 'Ava', 2006, 'F', 16937), +(188416, 'Abigail', 2006, 'F', 15623), +(188417, 'Olivia', 2006, 'F', 15489), +(188418, 'Hannah', 2006, 'F', 14535), +(188419, 'Sophia', 2006, 'F', 13495), +(188420, 'Samantha', 2006, 'F', 12454), +(188421, 'Elizabeth', 2006, 'F', 12415), +(188422, 'Ashley', 2006, 'F', 12339), +(188423, 'Mia', 2006, 'F', 12018), +(188424, 'Alexis', 2006, 'F', 11219), +(188425, 'Sarah', 2006, 'F', 11141), +(188426, 'Grace', 2006, 'F', 10962), +(188427, 'Natalie', 2006, 'F', 10942), +(188428, 'Chloe', 2006, 'F', 10396), +(188429, 'Alyssa', 2006, 'F', 10169), +(188430, 'Brianna', 2006, 'F', 9361), +(188431, 'Ella', 2006, 'F', 9202), +(188432, 'Anna', 2006, 'F', 8598), +(188433, 'Taylor', 2006, 'F', 8553), +(188434, 'Lauren', 2006, 'F', 8492), +(188435, 'Hailey', 2006, 'F', 8418), +(188436, 'Kayla', 2006, 'F', 8223), +(188437, 'Victoria', 2006, 'F', 7644), +(188438, 'Addison', 2006, 'F', 7617), +(188439, 'Jasmine', 2006, 'F', 7515), +(188440, 'Savannah', 2006, 'F', 7079), +(188441, 'Julia', 2006, 'F', 6882), +(188442, 'Jessica', 2006, 'F', 6809), +(188443, 'Lily', 2006, 'F', 6764), +(188444, 'Sydney', 2006, 'F', 6512), +(188445, 'Morgan', 2006, 'F', 6489), +(188446, 'Destiny', 2006, 'F', 6301), +(188447, 'Katherine', 2006, 'F', 6293), +(188448, 'Lillian', 2006, 'F', 6228), +(188449, 'Alexa', 2006, 'F', 6110), +(188450, 'Alexandra', 2006, 'F', 6097), +(188451, 'Kaitlyn', 2006, 'F', 6070), +(188452, 'Kaylee', 2006, 'F', 5987), +(188453, 'Nevaeh', 2006, 'F', 5931), +(188454, 'Brooke', 2006, 'F', 5745), +(188455, 'Makayla', 2006, 'F', 5642), +(188456, 'Maria', 2006, 'F', 5593), +(188457, 'Allison', 2006, 'F', 5560), +(188458, 'Rachel', 2006, 'F', 5523), +(188459, 'Angelina', 2006, 'F', 5514), +(188460, 'Gabriella', 2006, 'F', 5368), +(188461, 'Jennifer', 2006, 'F', 5265), +(188462, 'Avery', 2006, 'F', 5247), +(188463, 'Mackenzie', 2006, 'F', 5202), +(188464, 'Zoe', 2006, 'F', 5152), +(188465, 'Sofia', 2006, 'F', 5077), +(188466, 'Riley', 2006, 'F', 5052), +(188467, 'Maya', 2006, 'F', 5044), +(188468, 'Kimberly', 2006, 'F', 5006), +(188469, 'Andrea', 2006, 'F', 5002), +(188470, 'Megan', 2006, 'F', 4939), +(188471, 'Katelyn', 2006, 'F', 4878), +(188472, 'Faith', 2006, 'F', 4855), +(188473, 'Gabrielle', 2006, 'F', 4836), +(188474, 'Trinity', 2006, 'F', 4833), +(188475, 'Evelyn', 2006, 'F', 4748), +(188476, 'Kylie', 2006, 'F', 4714), +(188477, 'Brooklyn', 2006, 'F', 4709), +(188478, 'Leah', 2006, 'F', 4649), +(188479, 'Audrey', 2006, 'F', 4647), +(188480, 'Stephanie', 2006, 'F', 4506), +(188481, 'Madeline', 2006, 'F', 4476), +(188482, 'Sara', 2006, 'F', 4400), +(188483, 'Jocelyn', 2006, 'F', 4367), +(188484, 'Nicole', 2006, 'F', 4317), +(188485, 'Haley', 2006, 'F', 4291), +(188486, 'Arianna', 2006, 'F', 4281), +(188487, 'Paige', 2006, 'F', 4262), +(188488, 'Ariana', 2006, 'F', 4230), +(188489, 'Vanessa', 2006, 'F', 4163), +(188490, 'Michelle', 2006, 'F', 4084), +(188491, 'Mary', 2006, 'F', 4081), +(188492, 'Mariah', 2006, 'F', 4068), +(188493, 'Amelia', 2006, 'F', 4061), +(188494, 'Isabelle', 2006, 'F', 4038), +(188495, 'Melanie', 2006, 'F', 4032), +(188496, 'Claire', 2006, 'F', 4012), +(188497, 'Isabel', 2006, 'F', 4008), +(188498, 'Jenna', 2006, 'F', 3936), +(188499, 'Caroline', 2006, 'F', 3787), +(188500, 'Aaliyah', 2006, 'F', 3739), +(188501, 'Valeria', 2006, 'F', 3729), +(188502, 'Jada', 2006, 'F', 3671), +(188503, 'Aubrey', 2006, 'F', 3653), +(188504, 'Natalia', 2006, 'F', 3583), +(188505, 'Autumn', 2006, 'F', 3578), +(188506, 'Rebecca', 2006, 'F', 3556), +(188507, 'Jordan', 2006, 'F', 3539), +(188508, 'Gianna', 2006, 'F', 3449), +(188509, 'Jayla', 2006, 'F', 3408), +(188510, 'Amanda', 2006, 'F', 3354), +(188511, 'Layla', 2006, 'F', 3354), +(188512, 'Mya', 2006, 'F', 3354), +(188513, 'Gracie', 2006, 'F', 3292), +(188514, 'Marissa', 2006, 'F', 3161), +(188515, 'Molly', 2006, 'F', 3124), +(188516, 'Adriana', 2006, 'F', 3095), +(188517, 'Katie', 2006, 'F', 3084), +(188518, 'Leslie', 2006, 'F', 3036), +(188519, 'Keira', 2006, 'F', 3022), +(188520, 'Gabriela', 2006, 'F', 3021), +(188521, 'Jade', 2006, 'F', 2993), +(188522, 'Bailey', 2006, 'F', 2976), +(188523, 'Madelyn', 2006, 'F', 2948), +(188524, 'Angela', 2006, 'F', 2922), +(188525, 'Kennedy', 2006, 'F', 2903), +(188526, 'Danielle', 2006, 'F', 2896), +(188527, 'Melissa', 2006, 'F', 2891), +(188528, 'Jacqueline', 2006, 'F', 2857), +(188529, 'Zoey', 2006, 'F', 2847), +(188530, 'Diana', 2006, 'F', 2840), +(188531, 'Catherine', 2006, 'F', 2788), +(188532, 'Eva', 2006, 'F', 2787), +(188533, 'Briana', 2006, 'F', 2783), +(188534, 'Sophie', 2006, 'F', 2783), +(188535, 'Charlotte', 2006, 'F', 2778), +(188536, 'Breanna', 2006, 'F', 2761), +(188537, 'Valerie', 2006, 'F', 2745), +(188538, 'Amy', 2006, 'F', 2744), +(188539, 'Naomi', 2006, 'F', 2699), +(188540, 'Lydia', 2006, 'F', 2661), +(188541, 'Erin', 2006, 'F', 2642), +(188542, 'Daniela', 2006, 'F', 2629), +(188543, 'Shelby', 2006, 'F', 2615), +(188544, 'Rylee', 2006, 'F', 2600), +(188545, 'Serenity', 2006, 'F', 2594), +(188546, 'Amber', 2006, 'F', 2586), +(188547, 'Ruby', 2006, 'F', 2579), +(188548, 'Peyton', 2006, 'F', 2534), +(188549, 'Miranda', 2006, 'F', 2496), +(188550, 'Sierra', 2006, 'F', 2456), +(188551, 'Ashlyn', 2006, 'F', 2454), +(188552, 'Kate', 2006, 'F', 2441), +(188553, 'Kathryn', 2006, 'F', 2416), +(188554, 'Ana', 2006, 'F', 2411), +(188555, 'Skylar', 2006, 'F', 2347), +(188556, 'Kylee', 2006, 'F', 2339), +(188557, 'Alexandria', 2006, 'F', 2327), +(188558, 'Kendall', 2006, 'F', 2322), +(188559, 'Daisy', 2006, 'F', 2294), +(188560, 'Lilly', 2006, 'F', 2276), +(188561, 'Liliana', 2006, 'F', 2267), +(188562, 'Summer', 2006, 'F', 2258), +(188563, 'Lucy', 2006, 'F', 2256), +(188564, 'Mikayla', 2006, 'F', 2250), +(188565, 'Jazmin', 2006, 'F', 2240), +(188566, 'Reagan', 2006, 'F', 2237), +(188567, 'Christina', 2006, 'F', 2226), +(188568, 'Sadie', 2006, 'F', 2226), +(188569, 'Angel', 2006, 'F', 2222), +(188570, 'Margaret', 2006, 'F', 2188), +(188571, 'Reese', 2006, 'F', 2187), +(188572, 'Juliana', 2006, 'F', 2183), +(188573, 'Payton', 2006, 'F', 2156), +(188574, 'Alexia', 2006, 'F', 2130), +(188575, 'Alicia', 2006, 'F', 2128), +(188576, 'Mckenzie', 2006, 'F', 2126), +(188577, 'Alana', 2006, 'F', 2117), +(188578, 'Giselle', 2006, 'F', 2089), +(188579, 'Genesis', 2006, 'F', 2086), +(188580, 'Cheyenne', 2006, 'F', 2072), +(188581, 'Alondra', 2006, 'F', 2068), +(188582, 'Laura', 2006, 'F', 2060), +(188583, 'Karen', 2006, 'F', 2028), +(188584, 'Jillian', 2006, 'F', 2002), +(188585, 'Ellie', 2006, 'F', 1991), +(188586, 'Mariana', 2006, 'F', 1990), +(188587, 'Sienna', 2006, 'F', 1986), +(188588, 'Jordyn', 2006, 'F', 1963), +(188589, 'Camila', 2006, 'F', 1962), +(188590, 'Adrianna', 2006, 'F', 1958), +(188591, 'Bella', 2006, 'F', 1953), +(188592, 'Jasmin', 2006, 'F', 1942), +(188593, 'Bianca', 2006, 'F', 1941), +(188594, 'Kiara', 2006, 'F', 1900), +(188595, 'Kelsey', 2006, 'F', 1895), +(188596, 'Lindsey', 2006, 'F', 1882), +(188597, 'Elena', 2006, 'F', 1872), +(188598, 'Nadia', 2006, 'F', 1867), +(188599, 'Maggie', 2006, 'F', 1853), +(188600, 'Dakota', 2006, 'F', 1838), +(188601, 'Courtney', 2006, 'F', 1832), +(188602, 'Chelsea', 2006, 'F', 1824), +(188603, 'Delaney', 2006, 'F', 1812), +(188604, 'Julianna', 2006, 'F', 1811), +(188605, 'Kyra', 2006, 'F', 1795), +(188606, 'Sabrina', 2006, 'F', 1793), +(188607, 'Makenzie', 2006, 'F', 1779), +(188608, 'Hope', 2006, 'F', 1771), +(188609, 'Cassidy', 2006, 'F', 1770), +(188610, 'Caitlyn', 2006, 'F', 1753), +(188611, 'Crystal', 2006, 'F', 1741), +(188612, 'Ariel', 2006, 'F', 1729), +(188613, 'Jayden', 2006, 'F', 1692), +(188614, 'Kyla', 2006, 'F', 1692), +(188615, 'Abby', 2006, 'F', 1683), +(188616, 'Angelica', 2006, 'F', 1667), +(188617, 'Annabelle', 2006, 'F', 1665), +(188618, 'Karla', 2006, 'F', 1656), +(188619, 'Caitlin', 2006, 'F', 1652), +(188620, 'Tiffany', 2006, 'F', 1642), +(188621, 'Veronica', 2006, 'F', 1623), +(188622, 'Kelly', 2006, 'F', 1610), +(188623, 'Ciara', 2006, 'F', 1605), +(188624, 'Cadence', 2006, 'F', 1598), +(188625, 'Amaya', 2006, 'F', 1592), +(188626, 'Camryn', 2006, 'F', 1581), +(188627, 'Mckenna', 2006, 'F', 1570), +(188628, 'Elise', 2006, 'F', 1565), +(188629, 'Cassandra', 2006, 'F', 1557), +(188630, 'Josephine', 2006, 'F', 1548), +(188631, 'Erica', 2006, 'F', 1547), +(188632, 'Aniyah', 2006, 'F', 1546), +(188633, 'Esmeralda', 2006, 'F', 1537), +(188634, 'Vivian', 2006, 'F', 1536), +(188635, 'Julissa', 2006, 'F', 1530), +(188636, 'Karina', 2006, 'F', 1530), +(188637, 'Jazmine', 2006, 'F', 1525), +(188638, 'Fatima', 2006, 'F', 1515), +(188639, 'Allie', 2006, 'F', 1507), +(188640, 'Savanna', 2006, 'F', 1500), +(188641, 'Clara', 2006, 'F', 1493), +(188642, 'Makenna', 2006, 'F', 1492), +(188643, 'Alejandra', 2006, 'F', 1487), +(188644, 'Mallory', 2006, 'F', 1469), +(188645, 'Aliyah', 2006, 'F', 1446), +(188646, 'Laila', 2006, 'F', 1445), +(188647, 'Brooklynn', 2006, 'F', 1434), +(188648, 'Erika', 2006, 'F', 1430), +(188649, 'Cynthia', 2006, 'F', 1419), +(188650, 'Brenda', 2006, 'F', 1416), +(188651, 'Jamie', 2006, 'F', 1411), +(188652, 'Stella', 2006, 'F', 1411), +(188653, 'Kendra', 2006, 'F', 1402), +(188654, 'Bethany', 2006, 'F', 1401), +(188655, 'Nora', 2006, 'F', 1384), +(188656, 'Piper', 2006, 'F', 1382), +(188657, 'Haylee', 2006, 'F', 1374), +(188658, 'Alaina', 2006, 'F', 1360), +(188659, 'Kira', 2006, 'F', 1360), +(188660, 'Monica', 2006, 'F', 1358), +(188661, 'Carly', 2006, 'F', 1350), +(188662, 'Tessa', 2006, 'F', 1350), +(188663, 'Heaven', 2006, 'F', 1343), +(188664, 'Alivia', 2006, 'F', 1321), +(188665, 'Guadalupe', 2006, 'F', 1305), +(188666, 'Joanna', 2006, 'F', 1288), +(188667, 'Carmen', 2006, 'F', 1282), +(188668, 'Kailey', 2006, 'F', 1274), +(188669, 'Allyson', 2006, 'F', 1271), +(188670, 'Violet', 2006, 'F', 1265), +(188671, 'Aniya', 2006, 'F', 1262), +(188672, 'Paris', 2006, 'F', 1260), +(188673, 'Lindsay', 2006, 'F', 1248), +(188674, 'Cecilia', 2006, 'F', 1243), +(188675, 'Ayla', 2006, 'F', 1231), +(188676, 'Kayleigh', 2006, 'F', 1226), +(188677, 'Rebekah', 2006, 'F', 1224), +(188678, 'Hanna', 2006, 'F', 1221), +(188679, 'Eleanor', 2006, 'F', 1220), +(188680, 'Dulce', 2006, 'F', 1218), +(188681, 'Alayna', 2006, 'F', 1216), +(188682, 'Alison', 2006, 'F', 1216), +(188683, 'Katelynn', 2006, 'F', 1215), +(188684, 'Georgia', 2006, 'F', 1214), +(188685, 'Macy', 2006, 'F', 1213), +(188686, 'Nina', 2006, 'F', 1211), +(188687, 'Kamryn', 2006, 'F', 1205), +(188688, 'Eliana', 2006, 'F', 1198), +(188689, 'Carolina', 2006, 'F', 1196), +(188690, 'Lola', 2006, 'F', 1196), +(188691, 'Kaylie', 2006, 'F', 1195), +(188692, 'Kara', 2006, 'F', 1191), +(188693, 'Tatiana', 2006, 'F', 1185), +(188694, 'Leila', 2006, 'F', 1161), +(188695, 'Selena', 2006, 'F', 1158), +(188696, 'Jadyn', 2006, 'F', 1149), +(188697, 'Miriam', 2006, 'F', 1149), +(188698, 'Esther', 2006, 'F', 1147), +(188699, 'Anastasia', 2006, 'F', 1146), +(188700, 'Anahi', 2006, 'F', 1142), +(188701, 'Cameron', 2006, 'F', 1133), +(188702, 'Ashlynn', 2006, 'F', 1126), +(188703, 'Izabella', 2006, 'F', 1125), +(188704, 'Josie', 2006, 'F', 1124), +(188705, 'Heidi', 2006, 'F', 1123), +(188706, 'Jayda', 2006, 'F', 1120), +(188707, 'Scarlett', 2006, 'F', 1116), +(188708, 'Julie', 2006, 'F', 1110), +(188709, 'Melody', 2006, 'F', 1104), +(188710, 'Desiree', 2006, 'F', 1100), +(188711, 'Kiera', 2006, 'F', 1093), +(188712, 'Paola', 2006, 'F', 1088), +(188713, 'Callie', 2006, 'F', 1085), +(188714, 'Jaden', 2006, 'F', 1084), +(188715, 'Hayley', 2006, 'F', 1074), +(188716, 'Camille', 2006, 'F', 1072), +(188717, 'Emely', 2006, 'F', 1068), +(188718, 'Emerson', 2006, 'F', 1068), +(188719, 'Aurora', 2006, 'F', 1067), +(188720, 'Daniella', 2006, 'F', 1066), +(188721, 'Leilani', 2006, 'F', 1066), +(188722, 'Meredith', 2006, 'F', 1064), +(188723, 'Estrella', 2006, 'F', 1056), +(188724, 'Joselyn', 2006, 'F', 1054), +(188725, 'Diamond', 2006, 'F', 1049), +(188726, 'Skyler', 2006, 'F', 1037), +(188727, 'April', 2006, 'F', 1031), +(188728, 'Eden', 2006, 'F', 1028), +(188729, 'Rylie', 2006, 'F', 1027), +(188730, 'Brittany', 2006, 'F', 1025), +(188731, 'Marisol', 2006, 'F', 1021), +(188732, 'Meghan', 2006, 'F', 1021), +(188733, 'Lizbeth', 2006, 'F', 1018), +(188734, 'Yasmin', 2006, 'F', 1015), +(188735, 'Eliza', 2006, 'F', 1014), +(188736, 'Nancy', 2006, 'F', 1014), +(188737, 'Celeste', 2006, 'F', 1013), +(188738, 'Ryleigh', 2006, 'F', 1007), +(188739, 'Lila', 2006, 'F', 1006), +(188740, 'Shayla', 2006, 'F', 1003), +(188741, 'Asia', 2006, 'F', 1002), +(188742, 'Michaela', 2006, 'F', 1000), +(188743, 'Fiona', 2006, 'F', 990), +(188744, 'Annika', 2006, 'F', 985), +(188745, 'Ivy', 2006, 'F', 985), +(188746, 'Sasha', 2006, 'F', 981), +(188747, 'Madeleine', 2006, 'F', 979), +(188748, 'Lucia', 2006, 'F', 976), +(188749, 'Heather', 2006, 'F', 973), +(188750, 'Ashlee', 2006, 'F', 969), +(188751, 'Harmony', 2006, 'F', 969), +(188752, 'Claudia', 2006, 'F', 966), +(188753, 'Kaitlin', 2006, 'F', 956), +(188754, 'Rose', 2006, 'F', 956), +(188755, 'Holly', 2006, 'F', 955), +(188756, 'Lexi', 2006, 'F', 954), +(188757, 'Helen', 2006, 'F', 948), +(188758, 'Tatum', 2006, 'F', 947), +(188759, 'Bridget', 2006, 'F', 945), +(188760, 'Samara', 2006, 'F', 945), +(188761, 'London', 2006, 'F', 942), +(188762, 'Presley', 2006, 'F', 939), +(188763, 'Danica', 2006, 'F', 934), +(188764, 'Alina', 2006, 'F', 932), +(188765, 'Wendy', 2006, 'F', 930), +(188766, 'Natasha', 2006, 'F', 919), +(188767, 'Shannon', 2006, 'F', 918), +(188768, 'Madalyn', 2006, 'F', 914), +(188769, 'Kaydence', 2006, 'F', 913), +(188770, 'Kyleigh', 2006, 'F', 912), +(188771, 'Alessandra', 2006, 'F', 896), +(188772, 'Talia', 2006, 'F', 893), +(188773, 'Phoebe', 2006, 'F', 890), +(188774, 'Sandra', 2006, 'F', 890), +(188775, 'Genevieve', 2006, 'F', 888), +(188776, 'Ruth', 2006, 'F', 888), +(188777, 'Sherlyn', 2006, 'F', 887), +(188778, 'Cindy', 2006, 'F', 881), +(188779, 'Iris', 2006, 'F', 879), +(188780, 'Kaelyn', 2006, 'F', 879), +(188781, 'Kathleen', 2006, 'F', 876), +(188782, 'Kristen', 2006, 'F', 875), +(188783, 'Addyson', 2006, 'F', 873), +(188784, 'Priscilla', 2006, 'F', 873), +(188785, 'Emilee', 2006, 'F', 860), +(188786, 'Alissa', 2006, 'F', 859), +(188787, 'Itzel', 2006, 'F', 857), +(188788, 'Johanna', 2006, 'F', 857), +(188789, 'Katrina', 2006, 'F', 853), +(188790, 'Nia', 2006, 'F', 852), +(188791, 'Denise', 2006, 'F', 851), +(188792, 'Brenna', 2006, 'F', 845), +(188793, 'Cora', 2006, 'F', 844), +(188794, 'Alice', 2006, 'F', 843), +(188795, 'Perla', 2006, 'F', 842), +(188796, 'Janiya', 2006, 'F', 838), +(188797, 'Angie', 2006, 'F', 836), +(188798, 'Nyla', 2006, 'F', 835), +(188799, 'Harley', 2006, 'F', 834), +(188800, 'Janelle', 2006, 'F', 822), +(188801, 'Kadence', 2006, 'F', 813), +(188802, 'Rachael', 2006, 'F', 813), +(188803, 'Ximena', 2006, 'F', 811), +(188804, 'Dana', 2006, 'F', 809), +(188805, 'Nayeli', 2006, 'F', 809), +(188806, 'Nataly', 2006, 'F', 808), +(188807, 'Rosa', 2006, 'F', 808), +(188808, 'Serena', 2006, 'F', 808), +(188809, 'Annie', 2006, 'F', 806), +(188810, 'Kiana', 2006, 'F', 800), +(188811, 'Brynn', 2006, 'F', 799), +(188812, 'Kaylin', 2006, 'F', 797), +(188813, 'Kristina', 2006, 'F', 794), +(188814, 'Maddison', 2006, 'F', 786), +(188815, 'Imani', 2006, 'F', 782), +(188816, 'Malia', 2006, 'F', 782), +(188817, 'Kirsten', 2006, 'F', 781), +(188818, 'Madyson', 2006, 'F', 780), +(188819, 'Marina', 2006, 'F', 780), +(188820, 'Anya', 2006, 'F', 777), +(188821, 'Patricia', 2006, 'F', 775), +(188822, 'Lana', 2006, 'F', 771), +(188823, 'Casey', 2006, 'F', 770), +(188824, 'Madisyn', 2006, 'F', 766), +(188825, 'Marley', 2006, 'F', 766), +(188826, 'Sage', 2006, 'F', 766), +(188827, 'Kassandra', 2006, 'F', 762), +(188828, 'Hayden', 2006, 'F', 761), +(188829, 'Lesly', 2006, 'F', 761), +(188830, 'Emilia', 2006, 'F', 758), +(188831, 'Yesenia', 2006, 'F', 757), +(188832, 'Francesca', 2006, 'F', 747), +(188833, 'Bryanna', 2006, 'F', 746), +(188834, 'Kimora', 2006, 'F', 745), +(188835, 'Sidney', 2006, 'F', 745), +(188836, 'Aubree', 2006, 'F', 744), +(188837, 'Kiley', 2006, 'F', 742), +(188838, 'Haylie', 2006, 'F', 741), +(188839, 'Lauryn', 2006, 'F', 741), +(188840, 'Teagan', 2006, 'F', 741), +(188841, 'Skye', 2006, 'F', 740), +(188842, 'Fernanda', 2006, 'F', 738), +(188843, 'Logan', 2006, 'F', 737), +(188844, 'Raven', 2006, 'F', 732), +(188845, 'Madilyn', 2006, 'F', 731), +(188846, 'Christine', 2006, 'F', 728), +(188847, 'Raegan', 2006, 'F', 727), +(188848, 'Dayanara', 2006, 'F', 726), +(188849, 'Mercedes', 2006, 'F', 725), +(188850, 'Valentina', 2006, 'F', 724), +(188851, 'Lilian', 2006, 'F', 723), +(188852, 'Jaelyn', 2006, 'F', 722), +(188853, 'Sarai', 2006, 'F', 720), +(188854, 'Tania', 2006, 'F', 718), +(188855, 'Elaina', 2006, 'F', 716), +(188856, 'Taryn', 2006, 'F', 716), +(188857, 'Lilliana', 2006, 'F', 713), +(188858, 'Lacey', 2006, 'F', 711), +(188859, 'Viviana', 2006, 'F', 708), +(188860, 'Gloria', 2006, 'F', 701), +(188861, 'Linda', 2006, 'F', 698), +(188862, 'Tori', 2006, 'F', 697), +(188863, 'Hallie', 2006, 'F', 694), +(188864, 'Noelle', 2006, 'F', 694), +(188865, 'Ainsley', 2006, 'F', 693), +(188866, 'Kassidy', 2006, 'F', 692), +(188867, 'Anne', 2006, 'F', 689), +(188868, 'Hailee', 2006, 'F', 689), +(188869, 'Ryan', 2006, 'F', 689), +(188870, 'America', 2006, 'F', 687), +(188871, 'Brielle', 2006, 'F', 687), +(188872, 'Janiyah', 2006, 'F', 686), +(188873, 'Tara', 2006, 'F', 685), +(188874, 'Melany', 2006, 'F', 684), +(188875, 'Jaiden', 2006, 'F', 682), +(188876, 'Hazel', 2006, 'F', 680), +(188877, 'Adeline', 2006, 'F', 676), +(188878, 'Isabela', 2006, 'F', 675), +(188879, 'Clarissa', 2006, 'F', 673), +(188880, 'Baylee', 2006, 'F', 670), +(188881, 'Jimena', 2006, 'F', 669), +(188882, 'Alyson', 2006, 'F', 668), +(188883, 'Britney', 2006, 'F', 668), +(188884, 'Alanna', 2006, 'F', 667), +(188885, 'Jenny', 2006, 'F', 666), +(188886, 'Amya', 2006, 'F', 665), +(188887, 'Jane', 2006, 'F', 664), +(188888, 'Tiana', 2006, 'F', 662), +(188889, 'Macie', 2006, 'F', 658), +(188890, 'Miracle', 2006, 'F', 657), +(188891, 'Elle', 2006, 'F', 652), +(188892, 'Penelope', 2006, 'F', 648), +(188893, 'Lena', 2006, 'F', 643), +(188894, 'Anika', 2006, 'F', 641), +(188895, 'Anaya', 2006, 'F', 640), +(188896, 'Laney', 2006, 'F', 639), +(188897, 'Shania', 2006, 'F', 639), +(188898, 'Lillie', 2006, 'F', 637), +(188899, 'Kaleigh', 2006, 'F', 636), +(188900, 'Abbigail', 2006, 'F', 630), +(188901, 'Emilie', 2006, 'F', 630), +(188902, 'Halle', 2006, 'F', 626), +(188903, 'Kailyn', 2006, 'F', 626), +(188904, 'Hadley', 2006, 'F', 620), +(188905, 'Cristina', 2006, 'F', 615), +(188906, 'Maritza', 2006, 'F', 615), +(188907, 'Elisabeth', 2006, 'F', 612), +(188908, 'Marisa', 2006, 'F', 611), +(188909, 'Carla', 2006, 'F', 610), +(188910, 'Athena', 2006, 'F', 607), +(188911, 'Joy', 2006, 'F', 607), +(188912, 'Lisa', 2006, 'F', 607), +(188913, 'Paulina', 2006, 'F', 607), +(188914, 'Raquel', 2006, 'F', 604), +(188915, 'Krystal', 2006, 'F', 603), +(188916, 'Virginia', 2006, 'F', 603), +(188917, 'Natalee', 2006, 'F', 602), +(188918, 'Harper', 2006, 'F', 597), +(188919, 'Maia', 2006, 'F', 597), +(188920, 'Marilyn', 2006, 'F', 597), +(188921, 'Helena', 2006, 'F', 595), +(188922, 'Luna', 2006, 'F', 592), +(188923, 'Jaqueline', 2006, 'F', 591), +(188924, 'Kiersten', 2006, 'F', 591), +(188925, 'Marlene', 2006, 'F', 591), +(188926, 'Norah', 2006, 'F', 591), +(188927, 'Carolyn', 2006, 'F', 585), +(188928, 'Amari', 2006, 'F', 583), +(188929, 'Sylvia', 2006, 'F', 581), +(188930, 'Danna', 2006, 'F', 579), +(188931, 'Lia', 2006, 'F', 579), +(188932, 'Martha', 2006, 'F', 579), +(188933, 'Saniya', 2006, 'F', 578), +(188934, 'Willow', 2006, 'F', 577), +(188935, 'Kenya', 2006, 'F', 576), +(188936, 'Lexie', 2006, 'F', 575), +(188937, 'Kaitlynn', 2006, 'F', 574), +(188938, 'Ayanna', 2006, 'F', 573), +(188939, 'Rihanna', 2006, 'F', 571), +(188940, 'Tabitha', 2006, 'F', 570), +(188941, 'Deanna', 2006, 'F', 568), +(188942, 'Pamela', 2006, 'F', 566), +(188943, 'Jazlyn', 2006, 'F', 565), +(188944, 'Teresa', 2006, 'F', 565), +(188945, 'Whitney', 2006, 'F', 564), +(188946, 'Yazmin', 2006, 'F', 561), +(188947, 'Aileen', 2006, 'F', 558), +(188948, 'Liberty', 2006, 'F', 551), +(188949, 'Nathalie', 2006, 'F', 549), +(188950, 'Kali', 2006, 'F', 548), +(188951, 'Justice', 2006, 'F', 545); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(188952, 'Quinn', 2006, 'F', 545), +(188953, 'Ellen', 2006, 'F', 544), +(188954, 'Yadira', 2006, 'F', 543), +(188955, 'Elisa', 2006, 'F', 542), +(188956, 'Barbara', 2006, 'F', 540), +(188957, 'Delilah', 2006, 'F', 538), +(188958, 'Alexus', 2006, 'F', 537), +(188959, 'Melina', 2006, 'F', 536), +(188960, 'Madelynn', 2006, 'F', 534), +(188961, 'Precious', 2006, 'F', 534), +(188962, 'Carley', 2006, 'F', 533), +(188963, 'Tiara', 2006, 'F', 532), +(188964, 'Zoie', 2006, 'F', 531), +(188965, 'Kenzie', 2006, 'F', 530), +(188966, 'Cara', 2006, 'F', 529), +(188967, 'Dayana', 2006, 'F', 529), +(188968, 'Jessie', 2006, 'F', 529), +(188969, 'Destinee', 2006, 'F', 527), +(188970, 'Simone', 2006, 'F', 527), +(188971, 'Annabella', 2006, 'F', 523), +(188972, 'Janet', 2006, 'F', 523), +(188973, 'Cierra', 2006, 'F', 522), +(188974, 'India', 2006, 'F', 522), +(188975, 'Jaida', 2006, 'F', 521), +(188976, 'Isis', 2006, 'F', 518), +(188977, 'Regan', 2006, 'F', 518), +(188978, 'Araceli', 2006, 'F', 517), +(188979, 'Kasey', 2006, 'F', 516), +(188980, 'Marie', 2006, 'F', 516), +(188981, 'Amira', 2006, 'F', 513), +(188982, 'Amara', 2006, 'F', 511), +(188983, 'Tamia', 2006, 'F', 511), +(188984, 'Aspen', 2006, 'F', 510), +(188985, 'Kristin', 2006, 'F', 510), +(188986, 'Danika', 2006, 'F', 509), +(188987, 'Arely', 2006, 'F', 508), +(188988, 'Patience', 2006, 'F', 507), +(188989, 'Judith', 2006, 'F', 505), +(188990, 'Mckayla', 2006, 'F', 504), +(188991, 'Renee', 2006, 'F', 504), +(188992, 'Juliet', 2006, 'F', 503), +(188993, 'Alisha', 2006, 'F', 500), +(188994, 'Arielle', 2006, 'F', 500), +(188995, 'Carissa', 2006, 'F', 500), +(188996, 'Jaidyn', 2006, 'F', 496), +(188997, 'Kailee', 2006, 'F', 496), +(188998, 'Luz', 2006, 'F', 496), +(188999, 'Yasmine', 2006, 'F', 496), +(189000, 'Annalise', 2006, 'F', 492), +(189001, 'Irene', 2006, 'F', 492), +(189002, 'Eve', 2006, 'F', 491), +(189003, 'Regina', 2006, 'F', 489), +(189004, 'Janessa', 2006, 'F', 488), +(189005, 'Carlie', 2006, 'F', 487), +(189006, 'Skyla', 2006, 'F', 487), +(189007, 'Susan', 2006, 'F', 487), +(189008, 'Reyna', 2006, 'F', 485), +(189009, 'Evangeline', 2006, 'F', 484), +(189010, 'Yoselin', 2006, 'F', 484), +(189011, 'Aubrie', 2006, 'F', 483), +(189012, 'Kierra', 2006, 'F', 483), +(189013, 'Tia', 2006, 'F', 483), +(189014, 'Damaris', 2006, 'F', 482), +(189015, 'Sanaa', 2006, 'F', 482), +(189016, 'Sonia', 2006, 'F', 481), +(189017, 'Brisa', 2006, 'F', 480), +(189018, 'Cali', 2006, 'F', 480), +(189019, 'Lea', 2006, 'F', 480), +(189020, 'Haleigh', 2006, 'F', 479), +(189021, 'Daphne', 2006, 'F', 478), +(189022, 'Haven', 2006, 'F', 478), +(189023, 'Jolie', 2006, 'F', 477), +(189024, 'Alma', 2006, 'F', 473), +(189025, 'Rubi', 2006, 'F', 471), +(189026, 'Sharon', 2006, 'F', 471), +(189027, 'Addisyn', 2006, 'F', 470), +(189028, 'Ingrid', 2006, 'F', 470), +(189029, 'Jazmyn', 2006, 'F', 469), +(189030, 'Karissa', 2006, 'F', 469), +(189031, 'Felicity', 2006, 'F', 467), +(189032, 'Kennedi', 2006, 'F', 467), +(189033, 'Kayden', 2006, 'F', 466), +(189034, 'Kaylynn', 2006, 'F', 464), +(189035, 'Savanah', 2006, 'F', 463), +(189036, 'Brittney', 2006, 'F', 462), +(189037, 'Jaylin', 2006, 'F', 459), +(189038, 'Gwendolyn', 2006, 'F', 457), +(189039, 'Ally', 2006, 'F', 455), +(189040, 'Siena', 2006, 'F', 455), +(189041, 'Yareli', 2006, 'F', 455), +(189042, 'Dominique', 2006, 'F', 454), +(189043, 'Gia', 2006, 'F', 454), +(189044, 'Larissa', 2006, 'F', 454), +(189045, 'Noemi', 2006, 'F', 454), +(189046, 'Macey', 2006, 'F', 453), +(189047, 'Parker', 2006, 'F', 453), +(189048, 'Amiyah', 2006, 'F', 451), +(189049, 'Jaylynn', 2006, 'F', 451), +(189050, 'Rowan', 2006, 'F', 451), +(189051, 'Lyla', 2006, 'F', 449), +(189052, 'Mikaela', 2006, 'F', 448), +(189053, 'Arabella', 2006, 'F', 447), +(189054, 'Kaya', 2006, 'F', 447), +(189055, 'Lyric', 2006, 'F', 447), +(189056, 'Maeve', 2006, 'F', 447), +(189057, 'Karlee', 2006, 'F', 446), +(189058, 'Myah', 2006, 'F', 446), +(189059, 'Bailee', 2006, 'F', 445), +(189060, 'Edith', 2006, 'F', 445), +(189061, 'Aria', 2006, 'F', 444), +(189062, 'Shaniya', 2006, 'F', 444), +(189063, 'Aryanna', 2006, 'F', 443), +(189064, 'Juliette', 2006, 'F', 443), +(189065, 'Carlee', 2006, 'F', 442), +(189066, 'Abbie', 2006, 'F', 440), +(189067, 'Monique', 2006, 'F', 440), +(189068, 'Cheyanne', 2006, 'F', 438), +(189069, 'Clare', 2006, 'F', 438), +(189070, 'Tyra', 2006, 'F', 438), +(189071, 'Mayra', 2006, 'F', 437), +(189072, 'Cristal', 2006, 'F', 436), +(189073, 'Campbell', 2006, 'F', 435), +(189074, 'Taniya', 2006, 'F', 433), +(189075, 'Charity', 2006, 'F', 432), +(189076, 'Maci', 2006, 'F', 431), +(189077, 'Alena', 2006, 'F', 430), +(189078, 'Paula', 2006, 'F', 430), +(189079, 'Jacquelyn', 2006, 'F', 429), +(189080, 'Aleah', 2006, 'F', 428), +(189081, 'Kaley', 2006, 'F', 428), +(189082, 'Cecelia', 2006, 'F', 423), +(189083, 'Deborah', 2006, 'F', 423), +(189084, 'Evelin', 2006, 'F', 422), +(189085, 'Stacy', 2006, 'F', 422), +(189086, 'Janae', 2006, 'F', 421), +(189087, 'Esperanza', 2006, 'F', 420), +(189088, 'Elyse', 2006, 'F', 418), +(189089, 'Marianna', 2006, 'F', 417), +(189090, 'Gisselle', 2006, 'F', 416), +(189091, 'Tamara', 2006, 'F', 416), +(189092, 'Mara', 2006, 'F', 415), +(189093, 'Angelique', 2006, 'F', 414), +(189094, 'Aisha', 2006, 'F', 413), +(189095, 'Laci', 2006, 'F', 412), +(189096, 'Amani', 2006, 'F', 411), +(189097, 'Greta', 2006, 'F', 411), +(189098, 'Ashleigh', 2006, 'F', 410), +(189099, 'Mariam', 2006, 'F', 410), +(189100, 'Catalina', 2006, 'F', 409), +(189101, 'Kaylyn', 2006, 'F', 409), +(189102, 'Tianna', 2006, 'F', 409), +(189103, 'Emmalee', 2006, 'F', 408), +(189104, 'Kaia', 2006, 'F', 408), +(189105, 'Krista', 2006, 'F', 408), +(189106, 'Rosemary', 2006, 'F', 408), +(189107, 'Ryann', 2006, 'F', 408), +(189108, 'Keely', 2006, 'F', 407), +(189109, 'Celia', 2006, 'F', 406), +(189110, 'Ayana', 2006, 'F', 405), +(189111, 'Lizeth', 2006, 'F', 405), +(189112, 'Abbey', 2006, 'F', 404), +(189113, 'Lorena', 2006, 'F', 404), +(189114, 'Monserrat', 2006, 'F', 404), +(189115, 'Akeelah', 2006, 'F', 403), +(189116, 'Aliya', 2006, 'F', 403), +(189117, 'Ansley', 2006, 'F', 403), +(189118, 'Gina', 2006, 'F', 402), +(189119, 'Roselyn', 2006, 'F', 402), +(189120, 'Giana', 2006, 'F', 401), +(189121, 'Princess', 2006, 'F', 400), +(189122, 'Micah', 2006, 'F', 399), +(189123, 'Ada', 2006, 'F', 397), +(189124, 'Joslyn', 2006, 'F', 397), +(189125, 'Saniyah', 2006, 'F', 396), +(189126, 'Valery', 2006, 'F', 395), +(189127, 'Theresa', 2006, 'F', 394), +(189128, 'Zaria', 2006, 'F', 393), +(189129, 'Elaine', 2006, 'F', 392), +(189130, 'Hana', 2006, 'F', 391), +(189131, 'Liana', 2006, 'F', 390), +(189132, 'Giovanna', 2006, 'F', 389), +(189133, 'Isabell', 2006, 'F', 388), +(189134, 'Lainey', 2006, 'F', 388), +(189135, 'Aracely', 2006, 'F', 387), +(189136, 'Ann', 2006, 'F', 386), +(189137, 'Cassie', 2006, 'F', 386), +(189138, 'Lucille', 2006, 'F', 385), +(189139, 'Shyanne', 2006, 'F', 385), +(189140, 'Tess', 2006, 'F', 385), +(189141, 'Jakayla', 2006, 'F', 384), +(189142, 'Kayley', 2006, 'F', 383), +(189143, 'Iliana', 2006, 'F', 382), +(189144, 'Dylan', 2006, 'F', 380), +(189145, 'Aiyana', 2006, 'F', 379), +(189146, 'Taliyah', 2006, 'F', 379), +(189147, 'Tyler', 2006, 'F', 379), +(189148, 'Jamya', 2006, 'F', 378), +(189149, 'Lorelei', 2006, 'F', 378), +(189150, 'Rhiannon', 2006, 'F', 378), +(189151, 'Adrienne', 2006, 'F', 377), +(189152, 'Amiya', 2006, 'F', 374), +(189153, 'Meagan', 2006, 'F', 371), +(189154, 'Mila', 2006, 'F', 371), +(189155, 'Betsy', 2006, 'F', 370), +(189156, 'Chasity', 2006, 'F', 370), +(189157, 'Lesley', 2006, 'F', 370), +(189158, 'Jacey', 2006, 'F', 369), +(189159, 'Tanya', 2006, 'F', 369), +(189160, 'Chaya', 2006, 'F', 368), +(189161, 'Cherish', 2006, 'F', 368), +(189162, 'Leanna', 2006, 'F', 368), +(189163, 'Charlize', 2006, 'F', 365), +(189164, 'Kaliyah', 2006, 'F', 365), +(189165, 'Gracelyn', 2006, 'F', 364), +(189166, 'Anabelle', 2006, 'F', 363), +(189167, 'Mollie', 2006, 'F', 363), +(189168, 'Deja', 2006, 'F', 362), +(189169, 'Gillian', 2006, 'F', 362), +(189170, 'Salma', 2006, 'F', 362), +(189171, 'Amelie', 2006, 'F', 360), +(189172, 'Hailie', 2006, 'F', 360), +(189173, 'Kelsie', 2006, 'F', 360), +(189174, 'Frances', 2006, 'F', 359), +(189175, 'Karlie', 2006, 'F', 359), +(189176, 'Adison', 2006, 'F', 358), +(189177, 'Aimee', 2006, 'F', 358), +(189178, 'Jaliyah', 2006, 'F', 358), +(189179, 'Marlee', 2006, 'F', 358), +(189180, 'Miah', 2006, 'F', 358), +(189181, 'Aylin', 2006, 'F', 357), +(189182, 'Thalia', 2006, 'F', 357), +(189183, 'Jaycee', 2006, 'F', 356), +(189184, 'Kaila', 2006, 'F', 356), +(189185, 'Kianna', 2006, 'F', 356), +(189186, 'Sydnee', 2006, 'F', 356), +(189187, 'Charlie', 2006, 'F', 355), +(189188, 'Eileen', 2006, 'F', 355), +(189189, 'Gretchen', 2006, 'F', 355), +(189190, 'Emery', 2006, 'F', 352), +(189191, 'Shakira', 2006, 'F', 352), +(189192, 'Abigayle', 2006, 'F', 351), +(189193, 'Ashly', 2006, 'F', 351), +(189194, 'Lilyana', 2006, 'F', 351), +(189195, 'Elsa', 2006, 'F', 349), +(189196, 'Zariah', 2006, 'F', 349), +(189197, 'Katlyn', 2006, 'F', 348), +(189198, 'Rhianna', 2006, 'F', 348), +(189199, 'Libby', 2006, 'F', 347), +(189200, 'Nathalia', 2006, 'F', 346), +(189201, 'Nathaly', 2006, 'F', 346), +(189202, 'Shaylee', 2006, 'F', 346), +(189203, 'Jaylyn', 2006, 'F', 345), +(189204, 'Nyasia', 2006, 'F', 344), +(189205, 'Jaelynn', 2006, 'F', 343), +(189206, 'Shayna', 2006, 'F', 343), +(189207, 'Brandy', 2006, 'F', 342), +(189208, 'Chelsey', 2006, 'F', 342), +(189209, 'Leticia', 2006, 'F', 342), +(189210, 'Madalynn', 2006, 'F', 342), +(189211, 'Mariela', 2006, 'F', 342), +(189212, 'Meadow', 2006, 'F', 341), +(189213, 'Blanca', 2006, 'F', 340), +(189214, 'Makena', 2006, 'F', 340), +(189215, 'Maribel', 2006, 'F', 340), +(189216, 'Noelia', 2006, 'F', 340), +(189217, 'Saige', 2006, 'F', 340), +(189218, 'Stephany', 2006, 'F', 340), +(189219, 'Xiomara', 2006, 'F', 340), +(189220, 'Belinda', 2006, 'F', 339), +(189221, 'Zion', 2006, 'F', 337), +(189222, 'Rayna', 2006, 'F', 336), +(189223, 'Sariah', 2006, 'F', 336), +(189224, 'Lilianna', 2006, 'F', 335), +(189225, 'Phoenix', 2006, 'F', 335), +(189226, 'Trista', 2006, 'F', 334), +(189227, 'Tatyana', 2006, 'F', 333), +(189228, 'Aryana', 2006, 'F', 332), +(189229, 'Jaylee', 2006, 'F', 332), +(189230, 'Kendal', 2006, 'F', 332), +(189231, 'Journey', 2006, 'F', 331), +(189232, 'Toni', 2006, 'F', 331), +(189233, 'Camilla', 2006, 'F', 329), +(189234, 'Natalya', 2006, 'F', 327), +(189235, 'Corinne', 2006, 'F', 326), +(189236, 'Kallie', 2006, 'F', 326), +(189237, 'Donna', 2006, 'F', 325), +(189238, 'Janiah', 2006, 'F', 325), +(189239, 'Joyce', 2006, 'F', 325), +(189240, 'Mattie', 2006, 'F', 325), +(189241, 'Paisley', 2006, 'F', 325), +(189242, 'Aleena', 2006, 'F', 323), +(189243, 'Litzy', 2006, 'F', 322), +(189244, 'Selah', 2006, 'F', 322), +(189245, 'Galilea', 2006, 'F', 321), +(189246, 'Lara', 2006, 'F', 321), +(189247, 'Essence', 2006, 'F', 320), +(189248, 'Frida', 2006, 'F', 320), +(189249, 'Keyla', 2006, 'F', 320), +(189250, 'Maleah', 2006, 'F', 320), +(189251, 'Yaretzi', 2006, 'F', 320), +(189252, 'Jayleen', 2006, 'F', 319), +(189253, 'Annabel', 2006, 'F', 318), +(189254, 'Breana', 2006, 'F', 318), +(189255, 'Jewel', 2006, 'F', 318), +(189256, 'Scarlet', 2006, 'F', 318), +(189257, 'Paloma', 2006, 'F', 317), +(189258, 'Sarahi', 2006, 'F', 317), +(189259, 'Abril', 2006, 'F', 316), +(189260, 'Laurel', 2006, 'F', 316), +(189261, 'Dalia', 2006, 'F', 315), +(189262, 'Jaclyn', 2006, 'F', 315), +(189263, 'Rebeca', 2006, 'F', 315), +(189264, 'Aliza', 2006, 'F', 314), +(189265, 'Karma', 2006, 'F', 313), +(189266, 'Kaiya', 2006, 'F', 312), +(189267, 'Zara', 2006, 'F', 312), +(189268, 'Angeline', 2006, 'F', 311), +(189269, 'Braelyn', 2006, 'F', 311), +(189270, 'Johana', 2006, 'F', 311), +(189271, 'Karli', 2006, 'F', 311), +(189272, 'Elliana', 2006, 'F', 309), +(189273, 'Sheyla', 2006, 'F', 309), +(189274, 'Carina', 2006, 'F', 308), +(189275, 'Carrie', 2006, 'F', 308), +(189276, 'Kamila', 2006, 'F', 308), +(189277, 'Lilah', 2006, 'F', 308), +(189278, 'Cailyn', 2006, 'F', 306), +(189279, 'Kaylen', 2006, 'F', 306), +(189280, 'Maliyah', 2006, 'F', 306), +(189281, 'Montana', 2006, 'F', 306), +(189282, 'Anais', 2006, 'F', 305), +(189283, 'Elsie', 2006, 'F', 305), +(189284, 'Annette', 2006, 'F', 304), +(189285, 'Bria', 2006, 'F', 303), +(189286, 'Taniyah', 2006, 'F', 303), +(189287, 'Ashanti', 2006, 'F', 302), +(189288, 'Iyana', 2006, 'F', 302), +(189289, 'Bethzy', 2006, 'F', 301), +(189290, 'Brylee', 2006, 'F', 301), +(189291, 'Desirae', 2006, 'F', 301), +(189292, 'Kenia', 2006, 'F', 301), +(189293, 'Kinsley', 2006, 'F', 301), +(189294, 'Susana', 2006, 'F', 301), +(189295, 'Adyson', 2006, 'F', 300), +(189296, 'Alisa', 2006, 'F', 300), +(189297, 'Cayla', 2006, 'F', 300), +(189298, 'Julianne', 2006, 'F', 299), +(189299, 'Naima', 2006, 'F', 299), +(189300, 'Abagail', 2006, 'F', 298), +(189301, 'Abigale', 2006, 'F', 298), +(189302, 'Joselin', 2006, 'F', 298), +(189303, 'Kayli', 2006, 'F', 298), +(189304, 'Moriah', 2006, 'F', 297), +(189305, 'Yaritza', 2006, 'F', 297), +(189306, 'Yuridia', 2006, 'F', 296), +(189307, 'Colleen', 2006, 'F', 295), +(189308, 'Magdalena', 2006, 'F', 295), +(189309, 'Mariyah', 2006, 'F', 295), +(189310, 'Selina', 2006, 'F', 295), +(189311, 'Shea', 2006, 'F', 295), +(189312, 'Kinsey', 2006, 'F', 294), +(189313, 'Yvette', 2006, 'F', 294), +(189314, 'Jaylah', 2006, 'F', 293), +(189315, 'Katharine', 2006, 'F', 293), +(189316, 'Kathy', 2006, 'F', 293), +(189317, 'Averie', 2006, 'F', 292), +(189318, 'Kinley', 2006, 'F', 292), +(189319, 'Myla', 2006, 'F', 291), +(189320, 'Amaris', 2006, 'F', 290), +(189321, 'Jaylene', 2006, 'F', 290), +(189322, 'Tayler', 2006, 'F', 290), +(189323, 'Estefani', 2006, 'F', 289), +(189324, 'Finley', 2006, 'F', 289), +(189325, 'Kenna', 2006, 'F', 289), +(189326, 'Maura', 2006, 'F', 289), +(189327, 'Belen', 2006, 'F', 288), +(189328, 'Charlee', 2006, 'F', 288), +(189329, 'Karley', 2006, 'F', 288), +(189330, 'Shyla', 2006, 'F', 288), +(189331, 'Adamaris', 2006, 'F', 287), +(189332, 'Alia', 2006, 'F', 287), +(189333, 'Chanel', 2006, 'F', 287), +(189334, 'Adelaide', 2006, 'F', 285), +(189335, 'Mira', 2006, 'F', 285), +(189336, 'Raina', 2006, 'F', 285), +(189337, 'Tayla', 2006, 'F', 285), +(189338, 'Luciana', 2006, 'F', 284), +(189339, 'Armani', 2006, 'F', 283), +(189340, 'Jasmyn', 2006, 'F', 283), +(189341, 'Tina', 2006, 'F', 283), +(189342, 'Destini', 2006, 'F', 282), +(189343, 'Lilia', 2006, 'F', 281), +(189344, 'Chana', 2006, 'F', 280), +(189345, 'Halie', 2006, 'F', 280), +(189346, 'Kya', 2006, 'F', 280), +(189347, 'Makaila', 2006, 'F', 280), +(189348, 'Bree', 2006, 'F', 279), +(189349, 'Jalyn', 2006, 'F', 279), +(189350, 'Savana', 2006, 'F', 279), +(189351, 'Alani', 2006, 'F', 278), +(189352, 'Karis', 2006, 'F', 278), +(189353, 'Reina', 2006, 'F', 278), +(189354, 'Sheila', 2006, 'F', 278), +(189355, 'Jalynn', 2006, 'F', 277), +(189356, 'Cloe', 2006, 'F', 276), +(189357, 'Margarita', 2006, 'F', 276), +(189358, 'Marin', 2006, 'F', 276), +(189359, 'Yuliana', 2006, 'F', 275), +(189360, 'Khloe', 2006, 'F', 274), +(189361, 'Malaya', 2006, 'F', 274), +(189362, 'Riya', 2006, 'F', 274), +(189363, 'Rocio', 2006, 'F', 274), +(189364, 'Alize', 2006, 'F', 273), +(189365, 'Justine', 2006, 'F', 273), +(189366, 'Maryam', 2006, 'F', 273), +(189367, 'Mckinley', 2006, 'F', 273), +(189368, 'Micaela', 2006, 'F', 273), +(189369, 'Nichole', 2006, 'F', 273), +(189370, 'Citlali', 2006, 'F', 272), +(189371, 'Kaylah', 2006, 'F', 272), +(189372, 'Nya', 2006, 'F', 272), +(189373, 'Shyann', 2006, 'F', 272), +(189374, 'Tatianna', 2006, 'F', 272), +(189375, 'Beatrice', 2006, 'F', 271), +(189376, 'Destiney', 2006, 'F', 271), +(189377, 'Lacie', 2006, 'F', 271), +(189378, 'Leia', 2006, 'F', 271), +(189379, 'Miya', 2006, 'F', 271), +(189380, 'Akira', 2006, 'F', 270), +(189381, 'Amirah', 2006, 'F', 270), +(189382, 'Carol', 2006, 'F', 269), +(189383, 'Brandi', 2006, 'F', 268), +(189384, 'Briley', 2006, 'F', 268), +(189385, 'Lucero', 2006, 'F', 268), +(189386, 'Areli', 2006, 'F', 267), +(189387, 'Jorja', 2006, 'F', 267), +(189388, 'Stacey', 2006, 'F', 267), +(189389, 'Amina', 2006, 'F', 265), +(189390, 'Dania', 2006, 'F', 265), +(189391, 'Hillary', 2006, 'F', 265), +(189392, 'Rayne', 2006, 'F', 265), +(189393, 'Dorothy', 2006, 'F', 264), +(189394, 'Flor', 2006, 'F', 264), +(189395, 'Lina', 2006, 'F', 264), +(189396, 'Sanai', 2006, 'F', 264), +(189397, 'Selene', 2006, 'F', 264), +(189398, 'Dahlia', 2006, 'F', 263), +(189399, 'Iyanna', 2006, 'F', 263), +(189400, 'Leyla', 2006, 'F', 263), +(189401, 'Ericka', 2006, 'F', 262), +(189402, 'Fabiola', 2006, 'F', 262), +(189403, 'Lorelai', 2006, 'F', 262), +(189404, 'Mireya', 2006, 'F', 262), +(189405, 'Neveah', 2006, 'F', 262), +(189406, 'Janice', 2006, 'F', 260), +(189407, 'Joana', 2006, 'F', 260), +(189408, 'Luisa', 2006, 'F', 260), +(189409, 'Mina', 2006, 'F', 260), +(189410, 'Nicolette', 2006, 'F', 260), +(189411, 'Izabelle', 2006, 'F', 258), +(189412, 'Jenifer', 2006, 'F', 258), +(189413, 'Kamya', 2006, 'F', 258), +(189414, 'Antonia', 2006, 'F', 257), +(189415, 'Christiana', 2006, 'F', 257), +(189416, 'Giuliana', 2006, 'F', 256), +(189417, 'Jazmyne', 2006, 'F', 255), +(189418, 'Madilynn', 2006, 'F', 255), +(189419, 'Sonya', 2006, 'F', 255), +(189420, 'Jackeline', 2006, 'F', 254), +(189421, 'Jazlynn', 2006, 'F', 254), +(189422, 'Jocelynn', 2006, 'F', 254), +(189423, 'Myra', 2006, 'F', 254), +(189424, 'Nikki', 2006, 'F', 253), +(189425, 'Berenice', 2006, 'F', 252), +(189426, 'Maren', 2006, 'F', 252), +(189427, 'Melinda', 2006, 'F', 252), +(189428, 'Anjali', 2006, 'F', 251), +(189429, 'Hayleigh', 2006, 'F', 251), +(189430, 'Jailyn', 2006, 'F', 251), +(189431, 'Rianna', 2006, 'F', 251), +(189432, 'Sky', 2006, 'F', 251), +(189433, 'Abrianna', 2006, 'F', 250), +(189434, 'Candice', 2006, 'F', 250), +(189435, 'Ashton', 2006, 'F', 249), +(189436, 'Candace', 2006, 'F', 249), +(189437, 'Ireland', 2006, 'F', 249), +(189438, 'Karly', 2006, 'F', 249), +(189439, 'Mayte', 2006, 'F', 249), +(189440, 'Sandy', 2006, 'F', 249), +(189441, 'Elissa', 2006, 'F', 248), +(189442, 'Sahara', 2006, 'F', 248), +(189443, 'Shirley', 2006, 'F', 248), +(189444, 'Anabel', 2006, 'F', 247), +(189445, 'Ariella', 2006, 'F', 247), +(189446, 'Averi', 2006, 'F', 247), +(189447, 'Elyssa', 2006, 'F', 247), +(189448, 'Emelia', 2006, 'F', 247), +(189449, 'Jaylen', 2006, 'F', 247), +(189450, 'Yahaira', 2006, 'F', 247), +(189451, 'Lacy', 2006, 'F', 246), +(189452, 'Maryjane', 2006, 'F', 246), +(189453, 'Zaniyah', 2006, 'F', 246), +(189454, 'Adelyn', 2006, 'F', 245), +(189455, 'Anneliese', 2006, 'F', 245), +(189456, 'Alysa', 2006, 'F', 244), +(189457, 'Devyn', 2006, 'F', 244), +(189458, 'Hunter', 2006, 'F', 244), +(189459, 'Jana', 2006, 'F', 244), +(189460, 'Silvia', 2006, 'F', 244), +(189461, 'Brookelyn', 2006, 'F', 243), +(189462, 'Pearl', 2006, 'F', 243), +(189463, 'Roxana', 2006, 'F', 243), +(189464, 'Celina', 2006, 'F', 242), +(189465, 'Darlene', 2006, 'F', 242), +(189466, 'Sally', 2006, 'F', 242), +(189467, 'Arlene', 2006, 'F', 241), +(189468, 'Azaria', 2006, 'F', 241), +(189469, 'Celine', 2006, 'F', 241), +(189470, 'Deasia', 2006, 'F', 241), +(189471, 'Mandy', 2006, 'F', 241), +(189472, 'Ali', 2006, 'F', 240), +(189473, 'Caylee', 2006, 'F', 240), +(189474, 'Christian', 2006, 'F', 240), +(189475, 'Lillianna', 2006, 'F', 240), +(189476, 'Unique', 2006, 'F', 239), +(189477, 'Carleigh', 2006, 'F', 238), +(189478, 'Estefany', 2006, 'F', 238), +(189479, 'Keila', 2006, 'F', 238), +(189480, 'Madisen', 2006, 'F', 238), +(189481, 'Yamilet', 2006, 'F', 238), +(189482, 'Alannah', 2006, 'F', 237), +(189483, 'Delia', 2006, 'F', 237), +(189484, 'Graciela', 2006, 'F', 237), +(189485, 'Lizette', 2006, 'F', 237), +(189486, 'Samira', 2006, 'F', 236), +(189487, 'Soraya', 2006, 'F', 236), +(189488, 'Ciera', 2006, 'F', 235), +(189489, 'Felicia', 2006, 'F', 235), +(189490, 'Kacey', 2006, 'F', 235), +(189491, 'Kelis', 2006, 'F', 235), +(189492, 'Alex', 2006, 'F', 234), +(189493, 'Aliana', 2006, 'F', 234), +(189494, 'Shreya', 2006, 'F', 234), +(189495, 'Bryana', 2006, 'F', 233), +(189496, 'Joelle', 2006, 'F', 233), +(189497, 'Kaci', 2006, 'F', 233), +(189498, 'Yolanda', 2006, 'F', 233), +(189499, 'Devin', 2006, 'F', 232), +(189500, 'Diya', 2006, 'F', 232), +(189501, 'Katelin', 2006, 'F', 232), +(189502, 'Yadhira', 2006, 'F', 232), +(189503, 'Calista', 2006, 'F', 231), +(189504, 'Rory', 2006, 'F', 231), +(189505, 'Aniah', 2006, 'F', 230), +(189506, 'Londyn', 2006, 'F', 230), +(189507, 'Arleth', 2006, 'F', 229), +(189508, 'Betzy', 2006, 'F', 229), +(189509, 'Elianna', 2006, 'F', 229), +(189510, 'Livia', 2006, 'F', 229), +(189511, 'Kyndall', 2006, 'F', 228), +(189512, 'Carli', 2006, 'F', 227), +(189513, 'Ebony', 2006, 'F', 227), +(189514, 'Kylah', 2006, 'F', 227), +(189515, 'Noor', 2006, 'F', 227), +(189516, 'Reece', 2006, 'F', 227), +(189517, 'Beatriz', 2006, 'F', 226), +(189518, 'Adilene', 2006, 'F', 225), +(189519, 'Amalia', 2006, 'F', 225), +(189520, 'Anabella', 2006, 'F', 225), +(189521, 'Jersey', 2006, 'F', 225), +(189522, 'Joseline', 2006, 'F', 225), +(189523, 'Lanie', 2006, 'F', 225), +(189524, 'Treasure', 2006, 'F', 225), +(189525, 'Charley', 2006, 'F', 224), +(189526, 'Denisse', 2006, 'F', 224), +(189527, 'Katarina', 2006, 'F', 224), +(189528, 'Marlen', 2006, 'F', 224), +(189529, 'Robin', 2006, 'F', 224), +(189530, 'Kalyn', 2006, 'F', 223), +(189531, 'Brinley', 2006, 'F', 222), +(189532, 'Citlaly', 2006, 'F', 222), +(189533, 'Gwyneth', 2006, 'F', 222), +(189534, 'Juana', 2006, 'F', 221), +(189535, 'Alexys', 2006, 'F', 220), +(189536, 'Heidy', 2006, 'F', 220), +(189537, 'Kasandra', 2006, 'F', 220), +(189538, 'Natali', 2006, 'F', 220), +(189539, 'Vanesa', 2006, 'F', 220), +(189540, 'Elana', 2006, 'F', 219), +(189541, 'Keara', 2006, 'F', 219), +(189542, 'Brianne', 2006, 'F', 218), +(189543, 'Hilary', 2006, 'F', 218), +(189544, 'Rylan', 2006, 'F', 218), +(189545, 'Tierra', 2006, 'F', 218), +(189546, 'Bridgette', 2006, 'F', 217), +(189547, 'Estefania', 2006, 'F', 216), +(189548, 'Grecia', 2006, 'F', 216), +(189549, 'Katia', 2006, 'F', 215), +(189550, 'Lidia', 2006, 'F', 215), +(189551, 'Samiya', 2006, 'F', 215), +(189552, 'Addie', 2006, 'F', 214), +(189553, 'Alyvia', 2006, 'F', 214), +(189554, 'Evie', 2006, 'F', 214), +(189555, 'Giavanna', 2006, 'F', 214), +(189556, 'Jaquelin', 2006, 'F', 214), +(189557, 'Kayleen', 2006, 'F', 214), +(189558, 'Lyndsey', 2006, 'F', 214), +(189559, 'Alexandrea', 2006, 'F', 212), +(189560, 'Anita', 2006, 'F', 212), +(189561, 'Carson', 2006, 'F', 212), +(189562, 'Emani', 2006, 'F', 212), +(189563, 'Taya', 2006, 'F', 212), +(189564, 'Breonna', 2006, 'F', 211), +(189565, 'Coral', 2006, 'F', 211), +(189566, 'Milan', 2006, 'F', 211), +(189567, 'Annaliese', 2006, 'F', 210), +(189568, 'Gemma', 2006, 'F', 210), +(189569, 'Katy', 2006, 'F', 210), +(189570, 'Astrid', 2006, 'F', 209), +(189571, 'Diane', 2006, 'F', 209), +(189572, 'Evelynn', 2006, 'F', 209), +(189573, 'Rachelle', 2006, 'F', 209), +(189574, 'Samaria', 2006, 'F', 209), +(189575, 'Samiyah', 2006, 'F', 209), +(189576, 'Allyssa', 2006, 'F', 208), +(189577, 'Ananya', 2006, 'F', 208), +(189578, 'Caleigh', 2006, 'F', 208), +(189579, 'Lexus', 2006, 'F', 208), +(189580, 'Rhea', 2006, 'F', 208), +(189581, 'Tamya', 2006, 'F', 208), +(189582, 'Constance', 2006, 'F', 207), +(189583, 'Dallas', 2006, 'F', 207), +(189584, 'Gladys', 2006, 'F', 207), +(189585, 'Jaime', 2006, 'F', 207), +(189586, 'Mae', 2006, 'F', 207), +(189587, 'Mylee', 2006, 'F', 207), +(189588, 'Nylah', 2006, 'F', 207), +(189589, 'Rita', 2006, 'F', 207), +(189590, 'Malaysia', 2006, 'F', 206), +(189591, 'Roxanne', 2006, 'F', 206), +(189592, 'Winter', 2006, 'F', 206), +(189593, 'Amia', 2006, 'F', 205), +(189594, 'Kori', 2006, 'F', 205), +(189595, 'Norma', 2006, 'F', 205), +(189596, 'Yamileth', 2006, 'F', 205), +(189597, 'Annelise', 2006, 'F', 204), +(189598, 'Dianna', 2006, 'F', 204), +(189599, 'Jolene', 2006, 'F', 204), +(189600, 'Kamora', 2006, 'F', 204), +(189601, 'Stevie', 2006, 'F', 204), +(189602, 'Sydnie', 2006, 'F', 204), +(189603, 'Charli', 2006, 'F', 203), +(189604, 'Kamari', 2006, 'F', 203), +(189605, 'Laylah', 2006, 'F', 203), +(189606, 'Trisha', 2006, 'F', 203), +(189607, 'Cianna', 2006, 'F', 202), +(189608, 'Kacie', 2006, 'F', 202), +(189609, 'Kairi', 2006, 'F', 202), +(189610, 'Karsyn', 2006, 'F', 202), +(189611, 'Laniya', 2006, 'F', 202), +(189612, 'Marian', 2006, 'F', 202), +(189613, 'Nola', 2006, 'F', 202), +(189614, 'Analise', 2006, 'F', 201), +(189615, 'Keeley', 2006, 'F', 201), +(189616, 'Sarina', 2006, 'F', 201), +(189617, 'Dasia', 2006, 'F', 200), +(189618, 'Yaretzy', 2006, 'F', 200), +(189619, 'Azariah', 2006, 'F', 199), +(189620, 'Jacklyn', 2006, 'F', 199), +(189621, 'June', 2006, 'F', 199), +(189622, 'Alaya', 2006, 'F', 198), +(189623, 'Emmy', 2006, 'F', 198), +(189624, 'Giada', 2006, 'F', 198), +(189625, 'Jaci', 2006, 'F', 198), +(189626, 'Jamiya', 2006, 'F', 198), +(189627, 'Janaya', 2006, 'F', 198), +(189628, 'Jayde', 2006, 'F', 198), +(189629, 'Melia', 2006, 'F', 198), +(189630, 'Asha', 2006, 'F', 197), +(189631, 'Drew', 2006, 'F', 197), +(189632, 'Harlee', 2006, 'F', 197), +(189633, 'Jaeda', 2006, 'F', 197), +(189634, 'Kendyl', 2006, 'F', 197), +(189635, 'Miley', 2006, 'F', 197), +(189636, 'Samya', 2006, 'F', 197), +(189637, 'Carys', 2006, 'F', 196), +(189638, 'Janya', 2006, 'F', 196), +(189639, 'Kaycee', 2006, 'F', 196), +(189640, 'Makiya', 2006, 'F', 196), +(189641, 'Makiyah', 2006, 'F', 196), +(189642, 'Nyah', 2006, 'F', 196), +(189643, 'Zaniya', 2006, 'F', 196), +(189644, 'Amiah', 2006, 'F', 195), +(189645, 'Raelyn', 2006, 'F', 195), +(189646, 'Rosalinda', 2006, 'F', 195), +(189647, 'Tracy', 2006, 'F', 195), +(189648, 'Brook', 2006, 'F', 194), +(189649, 'Casandra', 2006, 'F', 194), +(189650, 'Cienna', 2006, 'F', 194), +(189651, 'Kaelynn', 2006, 'F', 194), +(189652, 'Kalia', 2006, 'F', 194), +(189653, 'Kaniya', 2006, 'F', 194), +(189654, 'Kloe', 2006, 'F', 194), +(189655, 'Marcella', 2006, 'F', 194), +(189656, 'Rivka', 2006, 'F', 194), +(189657, 'Brookelynn', 2006, 'F', 193), +(189658, 'Julieta', 2006, 'F', 193), +(189659, 'Lailah', 2006, 'F', 193), +(189660, 'Tristan', 2006, 'F', 193), +(189661, 'Alaysia', 2006, 'F', 192), +(189662, 'Bryn', 2006, 'F', 192), +(189663, 'Loren', 2006, 'F', 192), +(189664, 'Makaylah', 2006, 'F', 192), +(189665, 'Star', 2006, 'F', 192), +(189666, 'Yessenia', 2006, 'F', 192), +(189667, 'Alyse', 2006, 'F', 191), +(189668, 'Jacie', 2006, 'F', 191), +(189669, 'Ashtyn', 2006, 'F', 190), +(189670, 'Charlene', 2006, 'F', 190), +(189671, 'Christa', 2006, 'F', 190), +(189672, 'Gracyn', 2006, 'F', 190), +(189673, 'Jania', 2006, 'F', 190), +(189674, 'Kelsi', 2006, 'F', 190), +(189675, 'Lourdes', 2006, 'F', 190), +(189676, 'Noa', 2006, 'F', 190), +(189677, 'Yulissa', 2006, 'F', 190), +(189678, 'Christy', 2006, 'F', 189), +(189679, 'Devon', 2006, 'F', 189), +(189680, 'Jaila', 2006, 'F', 189), +(189681, 'Melisa', 2006, 'F', 189), +(189682, 'Priscila', 2006, 'F', 189), +(189683, 'Alora', 2006, 'F', 188), +(189684, 'Anissa', 2006, 'F', 188), +(189685, 'Aundrea', 2006, 'F', 188), +(189686, 'Brynlee', 2006, 'F', 188), +(189687, 'Leigha', 2006, 'F', 188), +(189688, 'Emalee', 2006, 'F', 187), +(189689, 'Aiyanna', 2006, 'F', 186), +(189690, 'Bonnie', 2006, 'F', 186), +(189691, 'Fallon', 2006, 'F', 186), +(189692, 'Janie', 2006, 'F', 186), +(189693, 'Shaniyah', 2006, 'F', 186), +(189694, 'Susanna', 2006, 'F', 186), +(189695, 'Angeles', 2006, 'F', 185), +(189696, 'Farrah', 2006, 'F', 185), +(189697, 'Anisa', 2006, 'F', 184), +(189698, 'Reanna', 2006, 'F', 184), +(189699, 'Suri', 2006, 'F', 184), +(189700, 'Robyn', 2006, 'F', 183), +(189701, 'Shiloh', 2006, 'F', 183), +(189702, 'Beverly', 2006, 'F', 182), +(189703, 'Danae', 2006, 'F', 182), +(189704, 'Jamaya', 2006, 'F', 182), +(189705, 'Brionna', 2006, 'F', 181), +(189706, 'Jaedyn', 2006, 'F', 181), +(189707, 'River', 2006, 'F', 181), +(189708, 'Ania', 2006, 'F', 180), +(189709, 'Annamarie', 2006, 'F', 180), +(189710, 'Dalila', 2006, 'F', 180), +(189711, 'Kai', 2006, 'F', 180), +(189712, 'Kourtney', 2006, 'F', 180), +(189713, 'Noel', 2006, 'F', 180), +(189714, 'Priya', 2006, 'F', 180), +(189715, 'Rileigh', 2006, 'F', 180), +(189716, 'Adrian', 2006, 'F', 179), +(189717, 'Eloise', 2006, 'F', 179), +(189718, 'Gisele', 2006, 'F', 179), +(189719, 'Jaya', 2006, 'F', 179), +(189720, 'Jayna', 2006, 'F', 179), +(189721, 'Matilda', 2006, 'F', 179), +(189722, 'Melani', 2006, 'F', 179), +(189723, 'Abbygail', 2006, 'F', 178), +(189724, 'Aliah', 2006, 'F', 178), +(189725, 'Estella', 2006, 'F', 178), +(189726, 'Eunice', 2006, 'F', 178), +(189727, 'Ivana', 2006, 'F', 178), +(189728, 'Jamia', 2006, 'F', 178), +(189729, 'Kalea', 2006, 'F', 178), +(189730, 'Reilly', 2006, 'F', 178), +(189731, 'Yajaira', 2006, 'F', 178), +(189732, 'Zainab', 2006, 'F', 178), +(189733, 'Adalyn', 2006, 'F', 177), +(189734, 'Yvonne', 2006, 'F', 177), +(189735, 'Aleigha', 2006, 'F', 176), +(189736, 'Ariah', 2006, 'F', 176), +(189737, 'Aya', 2006, 'F', 176), +(189738, 'Ember', 2006, 'F', 176), +(189739, 'Sydni', 2006, 'F', 176), +(189740, 'Audra', 2006, 'F', 175), +(189741, 'Jaela', 2006, 'F', 175), +(189742, 'Laniyah', 2006, 'F', 175), +(189743, 'Maegan', 2006, 'F', 175), +(189744, 'Adelina', 2006, 'F', 174), +(189745, 'Chase', 2006, 'F', 174), +(189746, 'Emerald', 2006, 'F', 174), +(189747, 'Kellie', 2006, 'F', 174), +(189748, 'Lilli', 2006, 'F', 174), +(189749, 'Marcela', 2006, 'F', 174), +(189750, 'Ivette', 2006, 'F', 173), +(189751, 'Jamiyah', 2006, 'F', 173), +(189752, 'Jeanette', 2006, 'F', 173), +(189753, 'Katerina', 2006, 'F', 173), +(189754, 'Kristine', 2006, 'F', 173), +(189755, 'Maricela', 2006, 'F', 173), +(189756, 'Neha', 2006, 'F', 173), +(189757, 'Raelynn', 2006, 'F', 173), +(189758, 'Zahara', 2006, 'F', 173), +(189759, 'Chiara', 2006, 'F', 172), +(189760, 'Gabriel', 2006, 'F', 172), +(189761, 'Josselyn', 2006, 'F', 172), +(189762, 'Mackenna', 2006, 'F', 172), +(189763, 'Alanah', 2006, 'F', 171), +(189764, 'Eryn', 2006, 'F', 171), +(189765, 'Kiarra', 2006, 'F', 171), +(189766, 'Nadine', 2006, 'F', 171), +(189767, 'Yarely', 2006, 'F', 171), +(189768, 'Avah', 2006, 'F', 170), +(189769, 'Caydence', 2006, 'F', 170), +(189770, 'Jalissa', 2006, 'F', 170), +(189771, 'Janeth', 2006, 'F', 170), +(189772, 'Lilyanna', 2006, 'F', 170), +(189773, 'Aidan', 2006, 'F', 169), +(189774, 'Izabel', 2006, 'F', 169), +(189775, 'Samaya', 2006, 'F', 169), +(189776, 'Alyssia', 2006, 'F', 168), +(189777, 'Briseida', 2006, 'F', 168), +(189778, 'Caitlynn', 2006, 'F', 168), +(189779, 'Jocelin', 2006, 'F', 168), +(189780, 'Renata', 2006, 'F', 167), +(189781, 'Vianey', 2006, 'F', 167), +(189782, 'Elisha', 2006, 'F', 166), +(189783, 'Kiya', 2006, 'F', 166), +(189784, 'Leann', 2006, 'F', 166), +(189785, 'Violeta', 2006, 'F', 166), +(189786, 'Xochitl', 2006, 'F', 166), +(189787, 'Annmarie', 2006, 'F', 165), +(189788, 'Kaela', 2006, 'F', 165), +(189789, 'Kari', 2006, 'F', 165), +(189790, 'Karolina', 2006, 'F', 165), +(189791, 'Kyndal', 2006, 'F', 165), +(189792, 'Milana', 2006, 'F', 165), +(189793, 'Ria', 2006, 'F', 165), +(189794, 'Abygail', 2006, 'F', 164), +(189795, 'Amyah', 2006, 'F', 164), +(189796, 'Harlie', 2006, 'F', 164), +(189797, 'Kirra', 2006, 'F', 164), +(189798, 'Kyara', 2006, 'F', 164), +(189799, 'Martina', 2006, 'F', 164), +(189800, 'Aubrianna', 2006, 'F', 163), +(189801, 'Evangelina', 2006, 'F', 163), +(189802, 'Gracey', 2006, 'F', 163), +(189803, 'Jena', 2006, 'F', 163), +(189804, 'Julisa', 2006, 'F', 163), +(189805, 'Mercy', 2006, 'F', 163), +(189806, 'Sania', 2006, 'F', 163), +(189807, 'Sloane', 2006, 'F', 163), +(189808, 'Dina', 2006, 'F', 162), +(189809, 'Juanita', 2006, 'F', 162), +(189810, 'Lesli', 2006, 'F', 162), +(189811, 'Makenzi', 2006, 'F', 162), +(189812, 'Alli', 2006, 'F', 161), +(189813, 'Alysia', 2006, 'F', 161), +(189814, 'Colette', 2006, 'F', 161), +(189815, 'Geneva', 2006, 'F', 161), +(189816, 'Karleigh', 2006, 'F', 161), +(189817, 'Mari', 2006, 'F', 161), +(189818, 'Rosalie', 2006, 'F', 161), +(189819, 'Shaelyn', 2006, 'F', 161), +(189820, 'Triniti', 2006, 'F', 161), +(189821, 'Vera', 2006, 'F', 161), +(189822, 'Zaira', 2006, 'F', 161), +(189823, 'Cloey', 2006, 'F', 160), +(189824, 'Delanie', 2006, 'F', 160), +(189825, 'Elayna', 2006, 'F', 160), +(189826, 'Gwen', 2006, 'F', 160), +(189827, 'Kalli', 2006, 'F', 160), +(189828, 'Linnea', 2006, 'F', 160), +(189829, 'Niya', 2006, 'F', 160), +(189830, 'Zuri', 2006, 'F', 160), +(189831, 'Arya', 2006, 'F', 159), +(189832, 'Camden', 2006, 'F', 159), +(189833, 'Dani', 2006, 'F', 159), +(189834, 'Ellery', 2006, 'F', 159), +(189835, 'Kameron', 2006, 'F', 159), +(189836, 'Kimber', 2006, 'F', 159), +(189837, 'Mika', 2006, 'F', 159), +(189838, 'Ellison', 2006, 'F', 158), +(189839, 'Jacquelin', 2006, 'F', 158), +(189840, 'Jaycie', 2006, 'F', 158), +(189841, 'Karmen', 2006, 'F', 158), +(189842, 'Nelly', 2006, 'F', 158), +(189843, 'Rilee', 2006, 'F', 158), +(189844, 'Blair', 2006, 'F', 157), +(189845, 'Demi', 2006, 'F', 157), +(189846, 'Kaelin', 2006, 'F', 157), +(189847, 'Magaly', 2006, 'F', 157), +(189848, 'Alexsandra', 2006, 'F', 156), +(189849, 'Darby', 2006, 'F', 156), +(189850, 'Iman', 2006, 'F', 156), +(189851, 'Maryann', 2006, 'F', 156), +(189852, 'Sade', 2006, 'F', 156), +(189853, 'Chelsie', 2006, 'F', 155), +(189854, 'Honesty', 2006, 'F', 155), +(189855, 'Nailah', 2006, 'F', 155), +(189856, 'Sanjana', 2006, 'F', 155), +(189857, 'Yasmeen', 2006, 'F', 155), +(189858, 'Adamari', 2006, 'F', 154), +(189859, 'Alycia', 2006, 'F', 154), +(189860, 'Cailey', 2006, 'F', 154), +(189861, 'Cambria', 2006, 'F', 154), +(189862, 'Gracelynn', 2006, 'F', 154), +(189863, 'Soleil', 2006, 'F', 154), +(189864, 'Alayah', 2006, 'F', 153), +(189865, 'Baylie', 2006, 'F', 153), +(189866, 'Ivanna', 2006, 'F', 153), +(189867, 'Lisette', 2006, 'F', 153), +(189868, 'Montserrat', 2006, 'F', 153), +(189869, 'Rosalyn', 2006, 'F', 153), +(189870, 'Sofie', 2006, 'F', 153), +(189871, 'Aja', 2006, 'F', 152), +(189872, 'Ema', 2006, 'F', 152), +(189873, 'Kelli', 2006, 'F', 152), +(189874, 'Lela', 2006, 'F', 152), +(189875, 'Lupita', 2006, 'F', 152), +(189876, 'Tristen', 2006, 'F', 152), +(189877, 'Zahra', 2006, 'F', 152), +(189878, 'Heavenly', 2006, 'F', 151), +(189879, 'Maite', 2006, 'F', 151), +(189880, 'Aida', 2006, 'F', 150), +(189881, 'Arlette', 2006, 'F', 150), +(189882, 'Charisma', 2006, 'F', 150), +(189883, 'Milena', 2006, 'F', 150), +(189884, 'Odalis', 2006, 'F', 150), +(189885, 'Shae', 2006, 'F', 150), +(189886, 'Shamya', 2006, 'F', 150), +(189887, 'Alexi', 2006, 'F', 149), +(189888, 'Anastacia', 2006, 'F', 149), +(189889, 'Georgina', 2006, 'F', 149), +(189890, 'Hadassah', 2006, 'F', 149), +(189891, 'Kailynn', 2006, 'F', 149), +(189892, 'Kami', 2006, 'F', 149), +(189893, 'Kristy', 2006, 'F', 149), +(189894, 'Michele', 2006, 'F', 149), +(189895, 'Promise', 2006, 'F', 149), +(189896, 'Rian', 2006, 'F', 149), +(189897, 'Arden', 2006, 'F', 148), +(189898, 'Ayden', 2006, 'F', 148), +(189899, 'Jaslyn', 2006, 'F', 148), +(189900, 'Kalie', 2006, 'F', 148), +(189901, 'Karyme', 2006, 'F', 148), +(189902, 'Randi', 2006, 'F', 148), +(189903, 'Tammy', 2006, 'F', 148), +(189904, 'Ariyana', 2006, 'F', 147), +(189905, 'Ayleen', 2006, 'F', 147), +(189906, 'Dayna', 2006, 'F', 147), +(189907, 'Dixie', 2006, 'F', 147), +(189908, 'Elina', 2006, 'F', 147), +(189909, 'Lilyan', 2006, 'F', 147), +(189910, 'Maddie', 2006, 'F', 147), +(189911, 'Sawyer', 2006, 'F', 147), +(189912, 'Stefanie', 2006, 'F', 147), +(189913, 'Symone', 2006, 'F', 147), +(189914, 'Belle', 2006, 'F', 146), +(189915, 'Brea', 2006, 'F', 146), +(189916, 'Emersyn', 2006, 'F', 146), +(189917, 'Gizelle', 2006, 'F', 146), +(189918, 'Isela', 2006, 'F', 146), +(189919, 'Jayme', 2006, 'F', 146), +(189920, 'Keily', 2006, 'F', 146), +(189921, 'Maiya', 2006, 'F', 146), +(189922, 'Annalisa', 2006, 'F', 145), +(189923, 'Breanne', 2006, 'F', 145), +(189924, 'Cameryn', 2006, 'F', 145), +(189925, 'Madysen', 2006, 'F', 145), +(189926, 'Makyla', 2006, 'F', 145), +(189927, 'Noelani', 2006, 'F', 145), +(189928, 'Roxanna', 2006, 'F', 145), +(189929, 'Tegan', 2006, 'F', 145), +(189930, 'Geraldine', 2006, 'F', 144), +(189931, 'Jackelyn', 2006, 'F', 144), +(189932, 'Kamiyah', 2006, 'F', 144), +(189933, 'Kaylan', 2006, 'F', 144), +(189934, 'Leena', 2006, 'F', 144), +(189935, 'Maile', 2006, 'F', 144), +(189936, 'Ariyanna', 2006, 'F', 143), +(189937, 'Briseyda', 2006, 'F', 143), +(189938, 'Carmella', 2006, 'F', 143), +(189939, 'Daria', 2006, 'F', 143), +(189940, 'Grayson', 2006, 'F', 143), +(189941, 'Jasmyne', 2006, 'F', 143), +(189942, 'Kaili', 2006, 'F', 143), +(189943, 'Karime', 2006, 'F', 143), +(189944, 'Landry', 2006, 'F', 143), +(189945, 'Leanne', 2006, 'F', 143), +(189946, 'Leona', 2006, 'F', 143), +(189947, 'Amarie', 2006, 'F', 142), +(189948, 'Cinthia', 2006, 'F', 142), +(189949, 'Jill', 2006, 'F', 142), +(189950, 'Kailani', 2006, 'F', 142), +(189951, 'Lluvia', 2006, 'F', 142), +(189952, 'Makiah', 2006, 'F', 142), +(189953, 'Zariyah', 2006, 'F', 142), +(189954, 'Adela', 2006, 'F', 141), +(189955, 'Alanis', 2006, 'F', 141), +(189956, 'Ayva', 2006, 'F', 141), +(189957, 'Eleni', 2006, 'F', 141), +(189958, 'Ryley', 2006, 'F', 141), +(189959, 'Aiden', 2006, 'F', 140), +(189960, 'Daisha', 2006, 'F', 140), +(189961, 'Destany', 2006, 'F', 140), +(189962, 'Joanne', 2006, 'F', 140), +(189963, 'Kaniyah', 2006, 'F', 140), +(189964, 'Mykayla', 2006, 'F', 140), +(189965, 'Nariah', 2006, 'F', 140), +(189966, 'Samia', 2006, 'F', 140), +(189967, 'Alessia', 2006, 'F', 139), +(189968, 'Ariadna', 2006, 'F', 139), +(189969, 'Carsyn', 2006, 'F', 139), +(189970, 'Kayle', 2006, 'F', 139), +(189971, 'Laken', 2006, 'F', 139), +(189972, 'Shaina', 2006, 'F', 139), +(189973, 'Shawna', 2006, 'F', 139), +(189974, 'Shira', 2006, 'F', 139), +(189975, 'Bryleigh', 2006, 'F', 138), +(189976, 'Dora', 2006, 'F', 138), +(189977, 'Ginger', 2006, 'F', 138), +(189978, 'Jessa', 2006, 'F', 138), +(189979, 'Malina', 2006, 'F', 138), +(189980, 'Shanna', 2006, 'F', 138), +(189981, 'Shanya', 2006, 'F', 138), +(189982, 'Ailyn', 2006, 'F', 137), +(189983, 'Bayleigh', 2006, 'F', 137), +(189984, 'Deisy', 2006, 'F', 137), +(189985, 'Haily', 2006, 'F', 137), +(189986, 'Lucinda', 2006, 'F', 137), +(189987, 'Makala', 2006, 'F', 137), +(189988, 'Saylor', 2006, 'F', 137), +(189989, 'Alysha', 2006, 'F', 136), +(189990, 'Jamiah', 2006, 'F', 136), +(189991, 'Jessenia', 2006, 'F', 136), +(189992, 'Karol', 2006, 'F', 136), +(189993, 'Leeann', 2006, 'F', 136), +(189994, 'Malak', 2006, 'F', 136), +(189995, 'Milagros', 2006, 'F', 136), +(189996, 'Nalani', 2006, 'F', 136), +(189997, 'Tanisha', 2006, 'F', 136), +(189998, 'Aaralyn', 2006, 'F', 135), +(189999, 'Avalon', 2006, 'F', 135), +(190000, 'Betty', 2006, 'F', 135), +(190001, 'Emory', 2006, 'F', 135), +(190002, 'Viridiana', 2006, 'F', 135), +(190003, 'Caelyn', 2006, 'F', 134), +(190004, 'Corina', 2006, 'F', 134), +(190005, 'Holland', 2006, 'F', 134), +(190006, 'Jianna', 2006, 'F', 134), +(190007, 'Kalani', 2006, 'F', 134), +(190008, 'Lianna', 2006, 'F', 134), +(190009, 'Lilith', 2006, 'F', 134), +(190010, 'Lori', 2006, 'F', 134), +(190011, 'Mindy', 2006, 'F', 134), +(190012, 'Sabina', 2006, 'F', 134), +(190013, 'Desire', 2006, 'F', 133), +(190014, 'Janette', 2006, 'F', 133), +(190015, 'Lexis', 2006, 'F', 133), +(190016, 'Lisbeth', 2006, 'F', 133), +(190017, 'Millie', 2006, 'F', 133), +(190018, 'Moira', 2006, 'F', 133), +(190019, 'Payten', 2006, 'F', 133), +(190020, 'Shaila', 2006, 'F', 133), +(190021, 'Stormy', 2006, 'F', 133), +(190022, 'Thea', 2006, 'F', 133), +(190023, 'Yessica', 2006, 'F', 133), +(190024, 'Alea', 2006, 'F', 132), +(190025, 'Arionna', 2006, 'F', 132), +(190026, 'Aviana', 2006, 'F', 132), +(190027, 'Cailin', 2006, 'F', 132), +(190028, 'Chandler', 2006, 'F', 132), +(190029, 'Isadora', 2006, 'F', 132), +(190030, 'Jocelyne', 2006, 'F', 132), +(190031, 'Kaidence', 2006, 'F', 132), +(190032, 'Lillyan', 2006, 'F', 132), +(190033, 'Vicky', 2006, 'F', 132), +(190034, 'Aditi', 2006, 'F', 131), +(190035, 'Mylie', 2006, 'F', 131), +(190036, 'Starr', 2006, 'F', 131), +(190037, 'Anaiya', 2006, 'F', 130), +(190038, 'Analisa', 2006, 'F', 130), +(190039, 'Ciana', 2006, 'F', 130), +(190040, 'Elly', 2006, 'F', 130), +(190041, 'Farah', 2006, 'F', 130), +(190042, 'Ivory', 2006, 'F', 130), +(190043, 'Kierstin', 2006, 'F', 130), +(190044, 'Lillyana', 2006, 'F', 130), +(190045, 'Malena', 2006, 'F', 130), +(190046, 'Amaria', 2006, 'F', 129), +(190047, 'Anai', 2006, 'F', 129), +(190048, 'Cordelia', 2006, 'F', 129), +(190049, 'Dawn', 2006, 'F', 129), +(190050, 'Hollie', 2006, 'F', 129), +(190051, 'Ilana', 2006, 'F', 129), +(190052, 'Irma', 2006, 'F', 129), +(190053, 'Jadah', 2006, 'F', 129), +(190054, 'Jaleah', 2006, 'F', 129), +(190055, 'Jolee', 2006, 'F', 129), +(190056, 'Maxine', 2006, 'F', 129), +(190057, 'Octavia', 2006, 'F', 129), +(190058, 'Saniah', 2006, 'F', 129), +(190059, 'Sheridan', 2006, 'F', 129), +(190060, 'Abrielle', 2006, 'F', 128), +(190061, 'Adia', 2006, 'F', 128), +(190062, 'Amariah', 2006, 'F', 128), +(190063, 'Ciarra', 2006, 'F', 128), +(190064, 'Gwenyth', 2006, 'F', 128), +(190065, 'Hattie', 2006, 'F', 128), +(190066, 'Kamaria', 2006, 'F', 128), +(190067, 'Mason', 2006, 'F', 128), +(190068, 'Melania', 2006, 'F', 128), +(190069, 'Rania', 2006, 'F', 128), +(190070, 'Sana', 2006, 'F', 128), +(190071, 'Sonja', 2006, 'F', 128), +(190072, 'Yazmine', 2006, 'F', 128), +(190073, 'Charis', 2006, 'F', 127), +(190074, 'Cielo', 2006, 'F', 127), +(190075, 'Joey', 2006, 'F', 127), +(190076, 'Judy', 2006, 'F', 127), +(190077, 'Kalina', 2006, 'F', 127), +(190078, 'Lani', 2006, 'F', 127), +(190079, 'Liz', 2006, 'F', 127), +(190080, 'Lucie', 2006, 'F', 127), +(190081, 'Tatiyana', 2006, 'F', 127), +(190082, 'Kaylei', 2006, 'F', 126), +(190083, 'Kenley', 2006, 'F', 126), +(190084, 'Laisha', 2006, 'F', 126), +(190085, 'Leilany', 2006, 'F', 126), +(190086, 'Lexy', 2006, 'F', 126), +(190087, 'Markayla', 2006, 'F', 126), +(190088, 'Valencia', 2006, 'F', 126), +(190089, 'Yaneli', 2006, 'F', 126), +(190090, 'Ashlin', 2006, 'F', 125), +(190091, 'Aurelia', 2006, 'F', 125), +(190092, 'Calli', 2006, 'F', 125), +(190093, 'Kaylea', 2006, 'F', 125), +(190094, 'Keegan', 2006, 'F', 125), +(190095, 'Leilah', 2006, 'F', 125), +(190096, 'Marisela', 2006, 'F', 125), +(190097, 'Raya', 2006, 'F', 125), +(190098, 'Seanna', 2006, 'F', 125), +(190099, 'Tyla', 2006, 'F', 125), +(190100, 'Adrianne', 2006, 'F', 124), +(190101, 'Berkley', 2006, 'F', 124), +(190102, 'Carmela', 2006, 'F', 124), +(190103, 'Keren', 2006, 'F', 124), +(190104, 'Kyah', 2006, 'F', 124), +(190105, 'Malka', 2006, 'F', 124), +(190106, 'Mariel', 2006, 'F', 124), +(190107, 'Suzanne', 2006, 'F', 124), +(190108, 'Yara', 2006, 'F', 124), +(190109, 'Ailani', 2006, 'F', 123), +(190110, 'Ayah', 2006, 'F', 123), +(190111, 'Carter', 2006, 'F', 123), +(190112, 'Graci', 2006, 'F', 123), +(190113, 'Leela', 2006, 'F', 123), +(190114, 'Raylee', 2006, 'F', 123), +(190115, 'Rosie', 2006, 'F', 123), +(190116, 'Vianney', 2006, 'F', 123), +(190117, 'Yoselyn', 2006, 'F', 123), +(190118, 'Anessa', 2006, 'F', 122), +(190119, 'Anja', 2006, 'F', 122), +(190120, 'Janna', 2006, 'F', 122), +(190121, 'Jesse', 2006, 'F', 122), +(190122, 'Karah', 2006, 'F', 122), +(190123, 'Katlynn', 2006, 'F', 122), +(190124, 'Layne', 2006, 'F', 122), +(190125, 'Mariella', 2006, 'F', 122), +(190126, 'Meah', 2006, 'F', 122), +(190127, 'Nikita', 2006, 'F', 122), +(190128, 'Abriana', 2006, 'F', 121), +(190129, 'Antoinette', 2006, 'F', 121), +(190130, 'Audrianna', 2006, 'F', 121), +(190131, 'Camdyn', 2006, 'F', 121), +(190132, 'Isha', 2006, 'F', 121), +(190133, 'Kierstyn', 2006, 'F', 121), +(190134, 'Kora', 2006, 'F', 121), +(190135, 'Maranda', 2006, 'F', 121), +(190136, 'Miyah', 2006, 'F', 121), +(190137, 'Olga', 2006, 'F', 121), +(190138, 'Sariyah', 2006, 'F', 121), +(190139, 'Shay', 2006, 'F', 121), +(190140, 'Sherlin', 2006, 'F', 121), +(190141, 'Abbigale', 2006, 'F', 120), +(190142, 'Andie', 2006, 'F', 120), +(190143, 'Azalea', 2006, 'F', 120), +(190144, 'Candy', 2006, 'F', 120), +(190145, 'Kalynn', 2006, 'F', 120), +(190146, 'Kassie', 2006, 'F', 120), +(190147, 'Keyonna', 2006, 'F', 120), +(190148, 'Marianne', 2006, 'F', 120), +(190149, 'Remi', 2006, 'F', 120), +(190150, 'Samarah', 2006, 'F', 120), +(190151, 'Angelia', 2006, 'F', 119), +(190152, 'Araya', 2006, 'F', 119), +(190153, 'Cecily', 2006, 'F', 119), +(190154, 'Dayanna', 2006, 'F', 119), +(190155, 'Elora', 2006, 'F', 119), +(190156, 'Italia', 2006, 'F', 119), +(190157, 'Jazzlyn', 2006, 'F', 119), +(190158, 'Kaleah', 2006, 'F', 119), +(190159, 'Kamille', 2006, 'F', 119), +(190160, 'Katheryn', 2006, 'F', 119), +(190161, 'Lamya', 2006, 'F', 119), +(190162, 'Louisa', 2006, 'F', 119), +(190163, 'Lynn', 2006, 'F', 119), +(190164, 'Maisie', 2006, 'F', 119), +(190165, 'Mallorie', 2006, 'F', 119), +(190166, 'Marjorie', 2006, 'F', 119), +(190167, 'Rhyan', 2006, 'F', 119), +(190168, 'Shianne', 2006, 'F', 119), +(190169, 'Sunny', 2006, 'F', 119), +(190170, 'Syriana', 2006, 'F', 119), +(190171, 'Amayah', 2006, 'F', 118), +(190172, 'Debra', 2006, 'F', 118), +(190173, 'Elysia', 2006, 'F', 118), +(190174, 'Emmie', 2006, 'F', 118), +(190175, 'Jackie', 2006, 'F', 118), +(190176, 'Jessalyn', 2006, 'F', 118), +(190177, 'Kamiya', 2006, 'F', 118), +(190178, 'Kyndra', 2006, 'F', 118), +(190179, 'Aleksandra', 2006, 'F', 117), +(190180, 'Alliyah', 2006, 'F', 117), +(190181, 'Azucena', 2006, 'F', 117), +(190182, 'Britany', 2006, 'F', 117), +(190183, 'Harleigh', 2006, 'F', 117), +(190184, 'Jailynn', 2006, 'F', 117), +(190185, 'Janell', 2006, 'F', 117), +(190186, 'Kaydance', 2006, 'F', 117), +(190187, 'Kirstin', 2006, 'F', 117), +(190188, 'Leyna', 2006, 'F', 117), +(190189, 'Maryn', 2006, 'F', 117), +(190190, 'Mercedez', 2006, 'F', 117), +(190191, 'Milla', 2006, 'F', 117), +(190192, 'Monika', 2006, 'F', 117), +(190193, 'Odalys', 2006, 'F', 117), +(190194, 'Olyvia', 2006, 'F', 117), +(190195, 'Tea', 2006, 'F', 117), +(190196, 'Acacia', 2006, 'F', 116), +(190197, 'Adelynn', 2006, 'F', 116), +(190198, 'Annabell', 2006, 'F', 116), +(190199, 'Gissel', 2006, 'F', 116), +(190200, 'Laina', 2006, 'F', 116), +(190201, 'Mabel', 2006, 'F', 116), +(190202, 'Mayah', 2006, 'F', 116), +(190203, 'Olive', 2006, 'F', 116), +(190204, 'Rosario', 2006, 'F', 116), +(190205, 'Simran', 2006, 'F', 116), +(190206, 'Willa', 2006, 'F', 116), +(190207, 'Xitlali', 2006, 'F', 116), +(190208, 'Bryce', 2006, 'F', 115), +(190209, 'Dariana', 2006, 'F', 115), +(190210, 'Franchesca', 2006, 'F', 115), +(190211, 'Jiselle', 2006, 'F', 115), +(190212, 'Larkin', 2006, 'F', 115), +(190213, 'Lili', 2006, 'F', 115), +(190214, 'Nadya', 2006, 'F', 115), +(190215, 'Taleah', 2006, 'F', 115), +(190216, 'Harmonie', 2006, 'F', 114), +(190217, 'Jalisa', 2006, 'F', 114), +(190218, 'Preslee', 2006, 'F', 114), +(190219, 'Dalilah', 2006, 'F', 113), +(190220, 'Ivonne', 2006, 'F', 113), +(190221, 'Janai', 2006, 'F', 113), +(190222, 'Jordynn', 2006, 'F', 113), +(190223, 'Kaiden', 2006, 'F', 113), +(190224, 'Kaytlin', 2006, 'F', 113), +(190225, 'Kelsea', 2006, 'F', 113), +(190226, 'Keziah', 2006, 'F', 113), +(190227, 'Lynette', 2006, 'F', 113), +(190228, 'Magdalene', 2006, 'F', 113), +(190229, 'Marlena', 2006, 'F', 113), +(190230, 'Rena', 2006, 'F', 113), +(190231, 'Vivien', 2006, 'F', 113), +(190232, 'Aislinn', 2006, 'F', 112), +(190233, 'Brooklynne', 2006, 'F', 112), +(190234, 'Emili', 2006, 'F', 112), +(190235, 'Jessi', 2006, 'F', 112), +(190236, 'Kadyn', 2006, 'F', 112), +(190237, 'Loretta', 2006, 'F', 112), +(190238, 'Makaela', 2006, 'F', 112), +(190239, 'Maureen', 2006, 'F', 112), +(190240, 'Rayanna', 2006, 'F', 112), +(190241, 'Vivianna', 2006, 'F', 112), +(190242, 'Adina', 2006, 'F', 111), +(190243, 'Daniya', 2006, 'F', 111), +(190244, 'Faye', 2006, 'F', 111), +(190245, 'Jennie', 2006, 'F', 111), +(190246, 'Keyanna', 2006, 'F', 111), +(190247, 'Madelyne', 2006, 'F', 111), +(190248, 'Margot', 2006, 'F', 111), +(190249, 'Meaghan', 2006, 'F', 111), +(190250, 'Misty', 2006, 'F', 111), +(190251, 'Shana', 2006, 'F', 111), +(190252, 'Tamiya', 2006, 'F', 111), +(190253, 'Vivienne', 2006, 'F', 111), +(190254, 'Adele', 2006, 'F', 110), +(190255, 'Amerie', 2006, 'F', 110), +(190256, 'Analiese', 2006, 'F', 110), +(190257, 'Anisha', 2006, 'F', 110), +(190258, 'Brissa', 2006, 'F', 110), +(190259, 'Chantel', 2006, 'F', 110), +(190260, 'Chesney', 2006, 'F', 110), +(190261, 'Desteny', 2006, 'F', 110), +(190262, 'Griselda', 2006, 'F', 110), +(190263, 'Lorraine', 2006, 'F', 110), +(190264, 'Marlie', 2006, 'F', 110), +(190265, 'Niyah', 2006, 'F', 110), +(190266, 'Tristin', 2006, 'F', 110), +(190267, 'Tyanna', 2006, 'F', 110), +(190268, 'Xitlaly', 2006, 'F', 110), +(190269, 'Zakiya', 2006, 'F', 110), +(190270, 'Annalee', 2006, 'F', 109), +(190271, 'Annemarie', 2006, 'F', 109), +(190272, 'Aubry', 2006, 'F', 109), +(190273, 'Chantal', 2006, 'F', 109), +(190274, 'Emmerson', 2006, 'F', 109), +(190275, 'Jacelyn', 2006, 'F', 109), +(190276, 'Justina', 2006, 'F', 109), +(190277, 'Katya', 2006, 'F', 109), +(190278, 'Layna', 2006, 'F', 109), +(190279, 'Lillyanna', 2006, 'F', 109), +(190280, 'Marleigh', 2006, 'F', 109), +(190281, 'Rayven', 2006, 'F', 109), +(190282, 'Serina', 2006, 'F', 109), +(190283, 'Shauna', 2006, 'F', 109), +(190284, 'Tasia', 2006, 'F', 109), +(190285, 'Tehya', 2006, 'F', 109), +(190286, 'Amaiya', 2006, 'F', 108), +(190287, 'Anyah', 2006, 'F', 108), +(190288, 'Catelyn', 2006, 'F', 108), +(190289, 'Cayden', 2006, 'F', 108), +(190290, 'Darcy', 2006, 'F', 108), +(190291, 'Divya', 2006, 'F', 108), +(190292, 'Evalyn', 2006, 'F', 108), +(190293, 'Jadelyn', 2006, 'F', 108), +(190294, 'Jazelle', 2006, 'F', 108), +(190295, 'Kaileigh', 2006, 'F', 108), +(190296, 'Magali', 2006, 'F', 108), +(190297, 'Mahogany', 2006, 'F', 108), +(190298, 'Mattea', 2006, 'F', 108), +(190299, 'Zuleyka', 2006, 'F', 108), +(190300, 'Alyna', 2006, 'F', 107), +(190301, 'Ani', 2006, 'F', 107), +(190302, 'Ashely', 2006, 'F', 107), +(190303, 'Ashlie', 2006, 'F', 107), +(190304, 'Devorah', 2006, 'F', 107), +(190305, 'Dynasty', 2006, 'F', 107), +(190306, 'Gisel', 2006, 'F', 107), +(190307, 'Ileana', 2006, 'F', 107), +(190308, 'Khadija', 2006, 'F', 107), +(190309, 'Monet', 2006, 'F', 107), +(190310, 'Paityn', 2006, 'F', 107), +(190311, 'Saira', 2006, 'F', 107), +(190312, 'Alecia', 2006, 'F', 106), +(190313, 'Ariyah', 2006, 'F', 106), +(190314, 'Beyonce', 2006, 'F', 106), +(190315, 'Brigid', 2006, 'F', 106), +(190316, 'Brigitte', 2006, 'F', 106), +(190317, 'Dafne', 2006, 'F', 106), +(190318, 'Emmaleigh', 2006, 'F', 106), +(190319, 'Emmaline', 2006, 'F', 106), +(190320, 'Jenesis', 2006, 'F', 106), +(190321, 'Jeslyn', 2006, 'F', 106), +(190322, 'Joslynn', 2006, 'F', 106), +(190323, 'Kaydee', 2006, 'F', 106), +(190324, 'Mea', 2006, 'F', 106), +(190325, 'Veronika', 2006, 'F', 106), +(190326, 'Alonna', 2006, 'F', 105), +(190327, 'Aubriana', 2006, 'F', 105), +(190328, 'Breann', 2006, 'F', 105), +(190329, 'Cadance', 2006, 'F', 105), +(190330, 'Frankie', 2006, 'F', 105), +(190331, 'Jael', 2006, 'F', 105), +(190332, 'Jennah', 2006, 'F', 105), +(190333, 'Josefina', 2006, 'F', 105), +(190334, 'Kamilah', 2006, 'F', 105), +(190335, 'Liyah', 2006, 'F', 105), +(190336, 'Mikaylah', 2006, 'F', 105), +(190337, 'Nova', 2006, 'F', 105), +(190338, 'Riana', 2006, 'F', 105), +(190339, 'Saray', 2006, 'F', 105), +(190340, 'Akayla', 2006, 'F', 104), +(190341, 'Carrington', 2006, 'F', 104), +(190342, 'Gracee', 2006, 'F', 104), +(190343, 'Harmoni', 2006, 'F', 104), +(190344, 'Shaniah', 2006, 'F', 104), +(190345, 'Siri', 2006, 'F', 104), +(190346, 'Tyasia', 2006, 'F', 104), +(190347, 'Aaniyah', 2006, 'F', 103), +(190348, 'Addisen', 2006, 'F', 103), +(190349, 'Alona', 2006, 'F', 103), +(190350, 'Amberly', 2006, 'F', 103), +(190351, 'Andi', 2006, 'F', 103), +(190352, 'Austin', 2006, 'F', 103), +(190353, 'Daira', 2006, 'F', 103), +(190354, 'Dayra', 2006, 'F', 103), +(190355, 'Esme', 2006, 'F', 103), +(190356, 'Kaden', 2006, 'F', 103), +(190357, 'Kaylani', 2006, 'F', 103), +(190358, 'Keisha', 2006, 'F', 103), +(190359, 'Kenadie', 2006, 'F', 103), +(190360, 'Leandra', 2006, 'F', 103), +(190361, 'Liza', 2006, 'F', 103), +(190362, 'Rosemarie', 2006, 'F', 103), +(190363, 'Selma', 2006, 'F', 103), +(190364, 'Sequoia', 2006, 'F', 103), +(190365, 'Shelbie', 2006, 'F', 103), +(190366, 'Stefany', 2006, 'F', 103), +(190367, 'Tahlia', 2006, 'F', 103), +(190368, 'Tanvi', 2006, 'F', 103), +(190369, 'Ayesha', 2006, 'F', 102), +(190370, 'Braylee', 2006, 'F', 102), +(190371, 'Connie', 2006, 'F', 102), +(190372, 'Gisela', 2006, 'F', 102), +(190373, 'Giulia', 2006, 'F', 102), +(190374, 'Kadance', 2006, 'F', 102), +(190375, 'Kathrine', 2006, 'F', 102), +(190376, 'Kaytlyn', 2006, 'F', 102), +(190377, 'Kloey', 2006, 'F', 102), +(190378, 'Micayla', 2006, 'F', 102), +(190379, 'Nala', 2006, 'F', 102), +(190380, 'Saanvi', 2006, 'F', 102), +(190381, 'Tristyn', 2006, 'F', 102), +(190382, 'Zaniah', 2006, 'F', 102), +(190383, 'Chloee', 2006, 'F', 101), +(190384, 'Dasha', 2006, 'F', 101), +(190385, 'Kalee', 2006, 'F', 101), +(190386, 'Katalina', 2006, 'F', 101), +(190387, 'Keanna', 2006, 'F', 101), +(190388, 'Maliah', 2006, 'F', 101), +(190389, 'Nallely', 2006, 'F', 101), +(190390, 'Petra', 2006, 'F', 101), +(190391, 'Rain', 2006, 'F', 101), +(190392, 'Scout', 2006, 'F', 101), +(190393, 'Taliah', 2006, 'F', 101), +(190394, 'Ameera', 2006, 'F', 100), +(190395, 'Amie', 2006, 'F', 100), +(190396, 'Angelika', 2006, 'F', 100), +(190397, 'Avril', 2006, 'F', 100), +(190398, 'Briseis', 2006, 'F', 100), +(190399, 'Edna', 2006, 'F', 100), +(190400, 'Elliot', 2006, 'F', 100), +(190401, 'Ellis', 2006, 'F', 100), +(190402, 'Jaquelyn', 2006, 'F', 100), +(190403, 'Jodi', 2006, 'F', 100), +(190404, 'Klarissa', 2006, 'F', 100), +(190405, 'Magnolia', 2006, 'F', 100), +(190406, 'Nakiya', 2006, 'F', 100), +(190407, 'Romina', 2006, 'F', 100), +(190408, 'Wren', 2006, 'F', 100), +(190409, 'Jacob', 2006, 'M', 24830), +(190410, 'Michael', 2006, 'M', 22625), +(190411, 'Joshua', 2006, 'M', 22302), +(190412, 'Ethan', 2006, 'M', 20500), +(190413, 'Matthew', 2006, 'M', 20316), +(190414, 'Daniel', 2006, 'M', 20048), +(190415, 'Andrew', 2006, 'M', 19703), +(190416, 'Christopher', 2006, 'M', 19663); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(190417, 'Anthony', 2006, 'M', 19391), +(190418, 'William', 2006, 'M', 18941), +(190419, 'Joseph', 2006, 'M', 18427), +(190420, 'Alexander', 2006, 'M', 18213), +(190421, 'David', 2006, 'M', 17610), +(190422, 'Ryan', 2006, 'M', 16424), +(190423, 'Noah', 2006, 'M', 16321), +(190424, 'James', 2006, 'M', 16226), +(190425, 'Nicholas', 2006, 'M', 15664), +(190426, 'Tyler', 2006, 'M', 15530), +(190427, 'John', 2006, 'M', 15153), +(190428, 'Logan', 2006, 'M', 15137), +(190429, 'Christian', 2006, 'M', 14467), +(190430, 'Jonathan', 2006, 'M', 14364), +(190431, 'Nathan', 2006, 'M', 14268), +(190432, 'Benjamin', 2006, 'M', 13747), +(190433, 'Samuel', 2006, 'M', 13621), +(190434, 'Dylan', 2006, 'M', 13161), +(190435, 'Brandon', 2006, 'M', 12671), +(190436, 'Gabriel', 2006, 'M', 12529), +(190437, 'Elijah', 2006, 'M', 12036), +(190438, 'Jose', 2006, 'M', 11595), +(190439, 'Angel', 2006, 'M', 11592), +(190440, 'Aiden', 2006, 'M', 11577), +(190441, 'Zachary', 2006, 'M', 11001), +(190442, 'Caleb', 2006, 'M', 10987), +(190443, 'Jackson', 2006, 'M', 10889), +(190444, 'Jack', 2006, 'M', 10836), +(190445, 'Kevin', 2006, 'M', 10774), +(190446, 'Gavin', 2006, 'M', 10472), +(190447, 'Isaiah', 2006, 'M', 10438), +(190448, 'Mason', 2006, 'M', 10406), +(190449, 'Austin', 2006, 'M', 10278), +(190450, 'Evan', 2006, 'M', 10127), +(190451, 'Luke', 2006, 'M', 10080), +(190452, 'Aidan', 2006, 'M', 10030), +(190453, 'Justin', 2006, 'M', 9963), +(190454, 'Jordan', 2006, 'M', 9917), +(190455, 'Robert', 2006, 'M', 9891), +(190456, 'Isaac', 2006, 'M', 9668), +(190457, 'Jayden', 2006, 'M', 9618), +(190458, 'Landon', 2006, 'M', 9565), +(190459, 'Thomas', 2006, 'M', 9504), +(190460, 'Cameron', 2006, 'M', 8847), +(190461, 'Connor', 2006, 'M', 8666), +(190462, 'Hunter', 2006, 'M', 8564), +(190463, 'Jason', 2006, 'M', 8439), +(190464, 'Diego', 2006, 'M', 8397), +(190465, 'Aaron', 2006, 'M', 8290), +(190466, 'Owen', 2006, 'M', 8170), +(190467, 'Lucas', 2006, 'M', 8133), +(190468, 'Charles', 2006, 'M', 8005), +(190469, 'Juan', 2006, 'M', 7933), +(190470, 'Luis', 2006, 'M', 7918), +(190471, 'Adrian', 2006, 'M', 7378), +(190472, 'Adam', 2006, 'M', 6789), +(190473, 'Julian', 2006, 'M', 6787), +(190474, 'Bryan', 2006, 'M', 6693), +(190475, 'Alex', 2006, 'M', 6666), +(190476, 'Sean', 2006, 'M', 6634), +(190477, 'Nathaniel', 2006, 'M', 6617), +(190478, 'Carlos', 2006, 'M', 6538), +(190479, 'Jeremiah', 2006, 'M', 6534), +(190480, 'Brian', 2006, 'M', 6503), +(190481, 'Hayden', 2006, 'M', 6463), +(190482, 'Jesus', 2006, 'M', 6455), +(190483, 'Carter', 2006, 'M', 6430), +(190484, 'Sebastian', 2006, 'M', 6277), +(190485, 'Eric', 2006, 'M', 6226), +(190486, 'Xavier', 2006, 'M', 6172), +(190487, 'Brayden', 2006, 'M', 6151), +(190488, 'Ian', 2006, 'M', 6151), +(190489, 'Kyle', 2006, 'M', 6147), +(190490, 'Wyatt', 2006, 'M', 5833), +(190491, 'Chase', 2006, 'M', 5737), +(190492, 'Cole', 2006, 'M', 5637), +(190493, 'Dominic', 2006, 'M', 5569), +(190494, 'Tristan', 2006, 'M', 5405), +(190495, 'Carson', 2006, 'M', 5011), +(190496, 'Jaden', 2006, 'M', 4944), +(190497, 'Miguel', 2006, 'M', 4897), +(190498, 'Steven', 2006, 'M', 4814), +(190499, 'Caden', 2006, 'M', 4773), +(190500, 'Kaden', 2006, 'M', 4740), +(190501, 'Timothy', 2006, 'M', 4698), +(190502, 'Antonio', 2006, 'M', 4690), +(190503, 'Henry', 2006, 'M', 4664), +(190504, 'Alejandro', 2006, 'M', 4547), +(190505, 'Blake', 2006, 'M', 4528), +(190506, 'Liam', 2006, 'M', 4511), +(190507, 'Richard', 2006, 'M', 4466), +(190508, 'Devin', 2006, 'M', 4440), +(190509, 'Riley', 2006, 'M', 4390), +(190510, 'Jesse', 2006, 'M', 4362), +(190511, 'Seth', 2006, 'M', 4324), +(190512, 'Victor', 2006, 'M', 4305), +(190513, 'Cody', 2006, 'M', 4097), +(190514, 'Brady', 2006, 'M', 4082), +(190515, 'Vincent', 2006, 'M', 4027), +(190516, 'Jake', 2006, 'M', 4026), +(190517, 'Bryce', 2006, 'M', 3972), +(190518, 'Patrick', 2006, 'M', 3943), +(190519, 'Colin', 2006, 'M', 3857), +(190520, 'Marcus', 2006, 'M', 3801), +(190521, 'Cooper', 2006, 'M', 3747), +(190522, 'Preston', 2006, 'M', 3714), +(190523, 'Kaleb', 2006, 'M', 3696), +(190524, 'Parker', 2006, 'M', 3666), +(190525, 'Josiah', 2006, 'M', 3642), +(190526, 'Oscar', 2006, 'M', 3599), +(190527, 'Ayden', 2006, 'M', 3595), +(190528, 'Jorge', 2006, 'M', 3516), +(190529, 'Ashton', 2006, 'M', 3488), +(190530, 'Alan', 2006, 'M', 3470), +(190531, 'Joel', 2006, 'M', 3451), +(190532, 'Jeremy', 2006, 'M', 3441), +(190533, 'Trevor', 2006, 'M', 3328), +(190534, 'Eduardo', 2006, 'M', 3316), +(190535, 'Ivan', 2006, 'M', 3308), +(190536, 'Mark', 2006, 'M', 3240), +(190537, 'Kenneth', 2006, 'M', 3238), +(190538, 'Alexis', 2006, 'M', 3200), +(190539, 'Omar', 2006, 'M', 3104), +(190540, 'Cristian', 2006, 'M', 3023), +(190541, 'Paul', 2006, 'M', 3019), +(190542, 'Levi', 2006, 'M', 3016), +(190543, 'Colton', 2006, 'M', 3000), +(190544, 'Eli', 2006, 'M', 2981), +(190545, 'Jared', 2006, 'M', 2976), +(190546, 'Damian', 2006, 'M', 2969), +(190547, 'Garrett', 2006, 'M', 2964), +(190548, 'Nicolas', 2006, 'M', 2937), +(190549, 'Edward', 2006, 'M', 2867), +(190550, 'Tanner', 2006, 'M', 2866), +(190551, 'Braden', 2006, 'M', 2856), +(190552, 'Conner', 2006, 'M', 2847), +(190553, 'Nolan', 2006, 'M', 2838), +(190554, 'Micah', 2006, 'M', 2836), +(190555, 'Giovanni', 2006, 'M', 2827), +(190556, 'Brody', 2006, 'M', 2818), +(190557, 'Maxwell', 2006, 'M', 2790), +(190558, 'Malachi', 2006, 'M', 2770), +(190559, 'Fernando', 2006, 'M', 2756), +(190560, 'Ricardo', 2006, 'M', 2700), +(190561, 'George', 2006, 'M', 2699), +(190562, 'Grant', 2006, 'M', 2688), +(190563, 'Francisco', 2006, 'M', 2685), +(190564, 'Gage', 2006, 'M', 2685), +(190565, 'Peyton', 2006, 'M', 2685), +(190566, 'Edwin', 2006, 'M', 2670), +(190567, 'Derek', 2006, 'M', 2647), +(190568, 'Max', 2006, 'M', 2640), +(190569, 'Andres', 2006, 'M', 2597), +(190570, 'Travis', 2006, 'M', 2595), +(190571, 'Javier', 2006, 'M', 2590), +(190572, 'Stephen', 2006, 'M', 2548), +(190573, 'Manuel', 2006, 'M', 2543), +(190574, 'Emmanuel', 2006, 'M', 2484), +(190575, 'Peter', 2006, 'M', 2477), +(190576, 'Cesar', 2006, 'M', 2471), +(190577, 'Shawn', 2006, 'M', 2470), +(190578, 'Jonah', 2006, 'M', 2409), +(190579, 'Edgar', 2006, 'M', 2390), +(190580, 'Dakota', 2006, 'M', 2361), +(190581, 'Oliver', 2006, 'M', 2349), +(190582, 'Erick', 2006, 'M', 2344), +(190583, 'Hector', 2006, 'M', 2327), +(190584, 'Bryson', 2006, 'M', 2312), +(190585, 'Johnathan', 2006, 'M', 2302), +(190586, 'Mario', 2006, 'M', 2295), +(190587, 'Shane', 2006, 'M', 2272), +(190588, 'Jeffrey', 2006, 'M', 2266), +(190589, 'Collin', 2006, 'M', 2221), +(190590, 'Abraham', 2006, 'M', 2203), +(190591, 'Leonardo', 2006, 'M', 2185), +(190592, 'Spencer', 2006, 'M', 2185), +(190593, 'Brendan', 2006, 'M', 2170), +(190594, 'Elias', 2006, 'M', 2160), +(190595, 'Jace', 2006, 'M', 2139), +(190596, 'Bradley', 2006, 'M', 2132), +(190597, 'Erik', 2006, 'M', 2127), +(190598, 'Wesley', 2006, 'M', 2101), +(190599, 'Jaylen', 2006, 'M', 2075), +(190600, 'Trenton', 2006, 'M', 2068), +(190601, 'Josue', 2006, 'M', 2051), +(190602, 'Raymond', 2006, 'M', 2036), +(190603, 'Damien', 2006, 'M', 1989), +(190604, 'Sergio', 2006, 'M', 1986), +(190605, 'Devon', 2006, 'M', 1980), +(190606, 'Donovan', 2006, 'M', 1966), +(190607, 'Dalton', 2006, 'M', 1938), +(190608, 'Miles', 2006, 'M', 1937), +(190609, 'Martin', 2006, 'M', 1936), +(190610, 'Israel', 2006, 'M', 1923), +(190611, 'Landen', 2006, 'M', 1911), +(190612, 'Andy', 2006, 'M', 1899), +(190613, 'Andre', 2006, 'M', 1871), +(190614, 'Marco', 2006, 'M', 1864), +(190615, 'Drew', 2006, 'M', 1859), +(190616, 'Gregory', 2006, 'M', 1833), +(190617, 'Roman', 2006, 'M', 1814), +(190618, 'Ty', 2006, 'M', 1798), +(190619, 'Avery', 2006, 'M', 1791), +(190620, 'Jaxon', 2006, 'M', 1785), +(190621, 'Cayden', 2006, 'M', 1752), +(190622, 'Jaiden', 2006, 'M', 1735), +(190623, 'Dominick', 2006, 'M', 1730), +(190624, 'Roberto', 2006, 'M', 1728), +(190625, 'Rafael', 2006, 'M', 1700), +(190626, 'Grayson', 2006, 'M', 1679), +(190627, 'Calvin', 2006, 'M', 1648), +(190628, 'Pedro', 2006, 'M', 1648), +(190629, 'Taylor', 2006, 'M', 1628), +(190630, 'Camden', 2006, 'M', 1620), +(190631, 'Dillon', 2006, 'M', 1608), +(190632, 'Braxton', 2006, 'M', 1602), +(190633, 'Clayton', 2006, 'M', 1594), +(190634, 'Keegan', 2006, 'M', 1594), +(190635, 'Jalen', 2006, 'M', 1591), +(190636, 'Ruben', 2006, 'M', 1591), +(190637, 'Troy', 2006, 'M', 1581), +(190638, 'Kayden', 2006, 'M', 1567), +(190639, 'Harrison', 2006, 'M', 1557), +(190640, 'Santiago', 2006, 'M', 1551), +(190641, 'Dawson', 2006, 'M', 1550), +(190642, 'Corey', 2006, 'M', 1529), +(190643, 'Leo', 2006, 'M', 1500), +(190644, 'Maddox', 2006, 'M', 1500), +(190645, 'Johnny', 2006, 'M', 1455), +(190646, 'Kai', 2006, 'M', 1449), +(190647, 'Simon', 2006, 'M', 1415), +(190648, 'Julio', 2006, 'M', 1414), +(190649, 'Zane', 2006, 'M', 1410), +(190650, 'Drake', 2006, 'M', 1407), +(190651, 'Kaiden', 2006, 'M', 1407), +(190652, 'Lukas', 2006, 'M', 1406), +(190653, 'Aden', 2006, 'M', 1404), +(190654, 'Frank', 2006, 'M', 1400), +(190655, 'Sawyer', 2006, 'M', 1389), +(190656, 'Marcos', 2006, 'M', 1386), +(190657, 'Ronald', 2006, 'M', 1373), +(190658, 'Trey', 2006, 'M', 1371), +(190659, 'Hudson', 2006, 'M', 1370), +(190660, 'Asher', 2006, 'M', 1367), +(190661, 'Scott', 2006, 'M', 1362), +(190662, 'Derrick', 2006, 'M', 1361), +(190663, 'Raul', 2006, 'M', 1353), +(190664, 'Griffin', 2006, 'M', 1352), +(190665, 'Ryder', 2006, 'M', 1342), +(190666, 'Dustin', 2006, 'M', 1334), +(190667, 'Rylan', 2006, 'M', 1327), +(190668, 'Angelo', 2006, 'M', 1312), +(190669, 'Brock', 2006, 'M', 1311), +(190670, 'Tucker', 2006, 'M', 1311), +(190671, 'Emanuel', 2006, 'M', 1310), +(190672, 'Armando', 2006, 'M', 1303), +(190673, 'Zion', 2006, 'M', 1299), +(190674, 'Kyler', 2006, 'M', 1297), +(190675, 'Gerardo', 2006, 'M', 1291), +(190676, 'Payton', 2006, 'M', 1291), +(190677, 'Ezekiel', 2006, 'M', 1287), +(190678, 'Skyler', 2006, 'M', 1280), +(190679, 'Fabian', 2006, 'M', 1271), +(190680, 'Colby', 2006, 'M', 1270), +(190681, 'Chance', 2006, 'M', 1268), +(190682, 'Mateo', 2006, 'M', 1268), +(190683, 'Mitchell', 2006, 'M', 1253), +(190684, 'Keith', 2006, 'M', 1249), +(190685, 'Tyson', 2006, 'M', 1247), +(190686, 'Darius', 2006, 'M', 1240), +(190687, 'Jaime', 2006, 'M', 1240), +(190688, 'Xander', 2006, 'M', 1236), +(190689, 'Enrique', 2006, 'M', 1234), +(190690, 'Quinn', 2006, 'M', 1232), +(190691, 'Allen', 2006, 'M', 1224), +(190692, 'Joaquin', 2006, 'M', 1224), +(190693, 'Kameron', 2006, 'M', 1223), +(190694, 'Phillip', 2006, 'M', 1219), +(190695, 'Cade', 2006, 'M', 1215), +(190696, 'Trent', 2006, 'M', 1209), +(190697, 'Malik', 2006, 'M', 1191), +(190698, 'Dante', 2006, 'M', 1182), +(190699, 'Corbin', 2006, 'M', 1180), +(190700, 'Pablo', 2006, 'M', 1173), +(190701, 'Jakob', 2006, 'M', 1156), +(190702, 'Brayan', 2006, 'M', 1149), +(190703, 'Axel', 2006, 'M', 1132), +(190704, 'Theodore', 2006, 'M', 1132), +(190705, 'Emilio', 2006, 'M', 1122), +(190706, 'Saul', 2006, 'M', 1120), +(190707, 'Brennan', 2006, 'M', 1113), +(190708, 'Lincoln', 2006, 'M', 1109), +(190709, 'Lorenzo', 2006, 'M', 1108), +(190710, 'Adan', 2006, 'M', 1098), +(190711, 'Donald', 2006, 'M', 1097), +(190712, 'Brett', 2006, 'M', 1081), +(190713, 'Gustavo', 2006, 'M', 1080), +(190714, 'Zander', 2006, 'M', 1080), +(190715, 'Danny', 2006, 'M', 1073), +(190716, 'Casey', 2006, 'M', 1070), +(190717, 'Talan', 2006, 'M', 1058), +(190718, 'Myles', 2006, 'M', 1050), +(190719, 'Randy', 2006, 'M', 1050), +(190720, 'Caiden', 2006, 'M', 1031), +(190721, 'Gael', 2006, 'M', 1026), +(190722, 'Dennis', 2006, 'M', 1024), +(190723, 'Alberto', 2006, 'M', 1014), +(190724, 'Brenden', 2006, 'M', 1010), +(190725, 'Mathew', 2006, 'M', 1009), +(190726, 'Jerry', 2006, 'M', 1006), +(190727, 'Lance', 2006, 'M', 1001), +(190728, 'Louis', 2006, 'M', 1001), +(190729, 'Zackary', 2006, 'M', 998), +(190730, 'Julius', 2006, 'M', 993), +(190731, 'Arturo', 2006, 'M', 991), +(190732, 'Ismael', 2006, 'M', 987), +(190733, 'Amir', 2006, 'M', 986), +(190734, 'Jimmy', 2006, 'M', 986), +(190735, 'Lane', 2006, 'M', 984), +(190736, 'Alec', 2006, 'M', 982), +(190737, 'Tony', 2006, 'M', 982), +(190738, 'Jude', 2006, 'M', 979), +(190739, 'Emiliano', 2006, 'M', 971), +(190740, 'Esteban', 2006, 'M', 971), +(190741, 'Braeden', 2006, 'M', 966), +(190742, 'Alfredo', 2006, 'M', 938), +(190743, 'Tristen', 2006, 'M', 937), +(190744, 'Nickolas', 2006, 'M', 936), +(190745, 'Charlie', 2006, 'M', 931), +(190746, 'Abel', 2006, 'M', 922), +(190747, 'Curtis', 2006, 'M', 915), +(190748, 'Ezra', 2006, 'M', 909), +(190749, 'Philip', 2006, 'M', 907), +(190750, 'Shaun', 2006, 'M', 904), +(190751, 'Leland', 2006, 'M', 900), +(190752, 'Moises', 2006, 'M', 896), +(190753, 'Marvin', 2006, 'M', 890), +(190754, 'Camron', 2006, 'M', 889), +(190755, 'Quentin', 2006, 'M', 880), +(190756, 'Luca', 2006, 'M', 872), +(190757, 'Gary', 2006, 'M', 868), +(190758, 'Jay', 2006, 'M', 867), +(190759, 'Dallas', 2006, 'M', 863), +(190760, 'Jayson', 2006, 'M', 862), +(190761, 'Albert', 2006, 'M', 858), +(190762, 'Jonas', 2006, 'M', 854), +(190763, 'Orlando', 2006, 'M', 852), +(190764, 'Walter', 2006, 'M', 850), +(190765, 'Easton', 2006, 'M', 844), +(190766, 'Chris', 2006, 'M', 840), +(190767, 'Ali', 2006, 'M', 827), +(190768, 'Nehemiah', 2006, 'M', 825), +(190769, 'Darren', 2006, 'M', 824), +(190770, 'Rodrigo', 2006, 'M', 823), +(190771, 'Douglas', 2006, 'M', 822), +(190772, 'Ramon', 2006, 'M', 822), +(190773, 'Morgan', 2006, 'M', 821), +(190774, 'Bennett', 2006, 'M', 817), +(190775, 'Declan', 2006, 'M', 817), +(190776, 'Elliot', 2006, 'M', 812), +(190777, 'Hugo', 2006, 'M', 811), +(190778, 'Mauricio', 2006, 'M', 809), +(190779, 'Joe', 2006, 'M', 806), +(190780, 'Silas', 2006, 'M', 799), +(190781, 'Chad', 2006, 'M', 798), +(190782, 'Jonathon', 2006, 'M', 798), +(190783, 'Maximus', 2006, 'M', 794), +(190784, 'Weston', 2006, 'M', 793), +(190785, 'Arthur', 2006, 'M', 792), +(190786, 'Ernesto', 2006, 'M', 790), +(190787, 'Larry', 2006, 'M', 790), +(190788, 'Cash', 2006, 'M', 787), +(190789, 'Damon', 2006, 'M', 781), +(190790, 'Keaton', 2006, 'M', 781), +(190791, 'Nikolas', 2006, 'M', 780), +(190792, 'Dean', 2006, 'M', 778), +(190793, 'Holden', 2006, 'M', 776), +(190794, 'Yahir', 2006, 'M', 775), +(190795, 'Elliott', 2006, 'M', 773), +(190796, 'Bryant', 2006, 'M', 771), +(190797, 'Jaxson', 2006, 'M', 767), +(190798, 'Salvador', 2006, 'M', 766), +(190799, 'Eddie', 2006, 'M', 763), +(190800, 'Dane', 2006, 'M', 762), +(190801, 'Felix', 2006, 'M', 760), +(190802, 'Maurice', 2006, 'M', 760), +(190803, 'Ricky', 2006, 'M', 759), +(190804, 'Braydon', 2006, 'M', 758), +(190805, 'Kristopher', 2006, 'M', 758), +(190806, 'Jadon', 2006, 'M', 756), +(190807, 'Anderson', 2006, 'M', 754), +(190808, 'Chandler', 2006, 'M', 753), +(190809, 'Braylon', 2006, 'M', 752), +(190810, 'Uriel', 2006, 'M', 751), +(190811, 'Russell', 2006, 'M', 740), +(190812, 'Davis', 2006, 'M', 732), +(190813, 'Isiah', 2006, 'M', 728), +(190814, 'Lawrence', 2006, 'M', 728), +(190815, 'Marc', 2006, 'M', 727), +(190816, 'Issac', 2006, 'M', 721), +(190817, 'Justice', 2006, 'M', 721), +(190818, 'Javon', 2006, 'M', 714), +(190819, 'Tate', 2006, 'M', 710), +(190820, 'Reece', 2006, 'M', 697), +(190821, 'Walker', 2006, 'M', 695), +(190822, 'Cohen', 2006, 'M', 690), +(190823, 'Jaydon', 2006, 'M', 690), +(190824, 'Zachariah', 2006, 'M', 690), +(190825, 'Micheal', 2006, 'M', 689), +(190826, 'Marshall', 2006, 'M', 688), +(190827, 'Amari', 2006, 'M', 683), +(190828, 'Reid', 2006, 'M', 683), +(190829, 'Nasir', 2006, 'M', 680), +(190830, 'Phoenix', 2006, 'M', 673), +(190831, 'Rowan', 2006, 'M', 672), +(190832, 'Jameson', 2006, 'M', 668), +(190833, 'Melvin', 2006, 'M', 667), +(190834, 'Talon', 2006, 'M', 659), +(190835, 'Carl', 2006, 'M', 657), +(190836, 'Jayce', 2006, 'M', 656), +(190837, 'Cory', 2006, 'M', 652), +(190838, 'Graham', 2006, 'M', 649), +(190839, 'Jeffery', 2006, 'M', 643), +(190840, 'Reese', 2006, 'M', 643), +(190841, 'Kade', 2006, 'M', 635), +(190842, 'Kelvin', 2006, 'M', 632), +(190843, 'Skylar', 2006, 'M', 630), +(190844, 'Demetrius', 2006, 'M', 628), +(190845, 'Beau', 2006, 'M', 623), +(190846, 'Franklin', 2006, 'M', 621), +(190847, 'Guillermo', 2006, 'M', 620), +(190848, 'Jaylin', 2006, 'M', 618), +(190849, 'Jamari', 2006, 'M', 616), +(190850, 'Mekhi', 2006, 'M', 616), +(190851, 'Moses', 2006, 'M', 614), +(190852, 'Brodie', 2006, 'M', 613), +(190853, 'Terry', 2006, 'M', 613), +(190854, 'Noel', 2006, 'M', 606), +(190855, 'Nelson', 2006, 'M', 604), +(190856, 'Rodney', 2006, 'M', 604), +(190857, 'Everett', 2006, 'M', 600), +(190858, 'Deandre', 2006, 'M', 598), +(190859, 'Noe', 2006, 'M', 598), +(190860, 'Khalil', 2006, 'M', 597), +(190861, 'Jon', 2006, 'M', 595), +(190862, 'Roy', 2006, 'M', 595), +(190863, 'Roger', 2006, 'M', 594), +(190864, 'Finn', 2006, 'M', 592), +(190865, 'Nathanael', 2006, 'M', 592), +(190866, 'Jamarion', 2006, 'M', 591), +(190867, 'Felipe', 2006, 'M', 590), +(190868, 'Izaiah', 2006, 'M', 589), +(190869, 'Tommy', 2006, 'M', 586), +(190870, 'Sam', 2006, 'M', 585), +(190871, 'Desmond', 2006, 'M', 582), +(190872, 'Terrance', 2006, 'M', 582), +(190873, 'Dorian', 2006, 'M', 578), +(190874, 'Kristian', 2006, 'M', 578), +(190875, 'Leonel', 2006, 'M', 578), +(190876, 'Ariel', 2006, 'M', 573), +(190877, 'Mohamed', 2006, 'M', 573), +(190878, 'Reed', 2006, 'M', 567), +(190879, 'Branden', 2006, 'M', 566), +(190880, 'Billy', 2006, 'M', 565), +(190881, 'Solomon', 2006, 'M', 560), +(190882, 'Grady', 2006, 'M', 557), +(190883, 'Davion', 2006, 'M', 556), +(190884, 'Jermaine', 2006, 'M', 556), +(190885, 'Frederick', 2006, 'M', 555), +(190886, 'Quinton', 2006, 'M', 554), +(190887, 'Porter', 2006, 'M', 553), +(190888, 'Tobias', 2006, 'M', 551), +(190889, 'Bruce', 2006, 'M', 549), +(190890, 'Jaylon', 2006, 'M', 547), +(190891, 'Bobby', 2006, 'M', 546), +(190892, 'Jessie', 2006, 'M', 545), +(190893, 'Brent', 2006, 'M', 544), +(190894, 'Triston', 2006, 'M', 537), +(190895, 'Tomas', 2006, 'M', 533), +(190896, 'Quincy', 2006, 'M', 530), +(190897, 'Rocco', 2006, 'M', 530), +(190898, 'Judah', 2006, 'M', 529), +(190899, 'Osvaldo', 2006, 'M', 529), +(190900, 'Kody', 2006, 'M', 525), +(190901, 'Damion', 2006, 'M', 524), +(190902, 'Zachery', 2006, 'M', 524), +(190903, 'Cruz', 2006, 'M', 523), +(190904, 'Rene', 2006, 'M', 523), +(190905, 'Kenny', 2006, 'M', 521), +(190906, 'Conor', 2006, 'M', 519), +(190907, 'Cristopher', 2006, 'M', 519), +(190908, 'Warren', 2006, 'M', 519), +(190909, 'Greyson', 2006, 'M', 517), +(190910, 'Leon', 2006, 'M', 515), +(190911, 'Jamal', 2006, 'M', 514), +(190912, 'Allan', 2006, 'M', 513), +(190913, 'Brendon', 2006, 'M', 513), +(190914, 'Gunnar', 2006, 'M', 512), +(190915, 'Alvin', 2006, 'M', 511), +(190916, 'Deshawn', 2006, 'M', 510), +(190917, 'Marlon', 2006, 'M', 507), +(190918, 'Toby', 2006, 'M', 507), +(190919, 'Wilson', 2006, 'M', 507), +(190920, 'River', 2006, 'M', 505), +(190921, 'Willie', 2006, 'M', 505), +(190922, 'Colten', 2006, 'M', 504), +(190923, 'Cyrus', 2006, 'M', 500), +(190924, 'Reginald', 2006, 'M', 500), +(190925, 'Terrell', 2006, 'M', 500), +(190926, 'Maximilian', 2006, 'M', 497), +(190927, 'Rogelio', 2006, 'M', 497), +(190928, 'Rodolfo', 2006, 'M', 495), +(190929, 'Byron', 2006, 'M', 493), +(190930, 'Harley', 2006, 'M', 493), +(190931, 'Rohan', 2006, 'M', 492), +(190932, 'Ahmad', 2006, 'M', 487), +(190933, 'Ulises', 2006, 'M', 487), +(190934, 'Kellen', 2006, 'M', 486), +(190935, 'Orion', 2006, 'M', 485), +(190936, 'Kendrick', 2006, 'M', 481), +(190937, 'Trevon', 2006, 'M', 481), +(190938, 'Isaias', 2006, 'M', 479), +(190939, 'Johan', 2006, 'M', 476), +(190940, 'Jamison', 2006, 'M', 473), +(190941, 'Joey', 2006, 'M', 473), +(190942, 'Will', 2006, 'M', 473), +(190943, 'Jett', 2006, 'M', 471), +(190944, 'Steve', 2006, 'M', 470), +(190945, 'Trace', 2006, 'M', 470), +(190946, 'Emerson', 2006, 'M', 469), +(190947, 'Dayton', 2006, 'M', 468), +(190948, 'Kobe', 2006, 'M', 468), +(190949, 'Malcolm', 2006, 'M', 468), +(190950, 'Johnathon', 2006, 'M', 467), +(190951, 'Terrence', 2006, 'M', 467), +(190952, 'Ezequiel', 2006, 'M', 464), +(190953, 'Gerald', 2006, 'M', 464), +(190954, 'Craig', 2006, 'M', 463), +(190955, 'Waylon', 2006, 'M', 463), +(190956, 'Titus', 2006, 'M', 462), +(190957, 'Oswaldo', 2006, 'M', 460), +(190958, 'Alfonso', 2006, 'M', 457), +(190959, 'Marquis', 2006, 'M', 455), +(190960, 'Ben', 2006, 'M', 454), +(190961, 'Gilberto', 2006, 'M', 454), +(190962, 'Pierce', 2006, 'M', 453), +(190963, 'Wade', 2006, 'M', 453), +(190964, 'Alonzo', 2006, 'M', 450), +(190965, 'Francis', 2006, 'M', 450), +(190966, 'Karson', 2006, 'M', 450), +(190967, 'Tristin', 2006, 'M', 450), +(190968, 'Ray', 2006, 'M', 449), +(190969, 'Jairo', 2006, 'M', 446), +(190970, 'Addison', 2006, 'M', 445), +(190971, 'Kieran', 2006, 'M', 445), +(190972, 'Jase', 2006, 'M', 444), +(190973, 'Ahmed', 2006, 'M', 443), +(190974, 'Ronnie', 2006, 'M', 443), +(190975, 'Jasper', 2006, 'M', 442), +(190976, 'Ramiro', 2006, 'M', 442), +(190977, 'Kendall', 2006, 'M', 441), +(190978, 'Emmett', 2006, 'M', 439), +(190979, 'Rolando', 2006, 'M', 437), +(190980, 'Blaine', 2006, 'M', 436), +(190981, 'Romeo', 2006, 'M', 435), +(190982, 'Alvaro', 2006, 'M', 432), +(190983, 'Tyrone', 2006, 'M', 432), +(190984, 'Gideon', 2006, 'M', 430), +(190985, 'Aydan', 2006, 'M', 429), +(190986, 'Jerome', 2006, 'M', 429), +(190987, 'Gunner', 2006, 'M', 426), +(190988, 'Landyn', 2006, 'M', 426), +(190989, 'Camren', 2006, 'M', 424), +(190990, 'Zackery', 2006, 'M', 421), +(190991, 'Jamie', 2006, 'M', 420), +(190992, 'Adolfo', 2006, 'M', 419), +(190993, 'Alijah', 2006, 'M', 418), +(190994, 'Devan', 2006, 'M', 418), +(190995, 'Moshe', 2006, 'M', 418), +(190996, 'Ibrahim', 2006, 'M', 417), +(190997, 'Aldo', 2006, 'M', 416), +(190998, 'Cedric', 2006, 'M', 415), +(190999, 'Julien', 2006, 'M', 415), +(191000, 'Abram', 2006, 'M', 414), +(191001, 'Brycen', 2006, 'M', 414), +(191002, 'Darrell', 2006, 'M', 414), +(191003, 'Harry', 2006, 'M', 414), +(191004, 'Brooks', 2006, 'M', 412), +(191005, 'Darian', 2006, 'M', 412), +(191006, 'Mohammad', 2006, 'M', 412), +(191007, 'Ronan', 2006, 'M', 411), +(191008, 'Stanley', 2006, 'M', 404), +(191009, 'Vicente', 2006, 'M', 404), +(191010, 'Davin', 2006, 'M', 403), +(191011, 'Braiden', 2006, 'M', 399), +(191012, 'Davon', 2006, 'M', 398), +(191013, 'Neil', 2006, 'M', 396), +(191014, 'Keenan', 2006, 'M', 394), +(191015, 'Deven', 2006, 'M', 393), +(191016, 'Maverick', 2006, 'M', 393), +(191017, 'Jabari', 2006, 'M', 392), +(191018, 'Gianni', 2006, 'M', 390), +(191019, 'Lee', 2006, 'M', 390), +(191020, 'Alexzander', 2006, 'M', 389), +(191021, 'Dominik', 2006, 'M', 387), +(191022, 'Dwayne', 2006, 'M', 387), +(191023, 'Tyrese', 2006, 'M', 387), +(191024, 'Alessandro', 2006, 'M', 385), +(191025, 'Misael', 2006, 'M', 385), +(191026, 'August', 2006, 'M', 384), +(191027, 'Keagan', 2006, 'M', 383), +(191028, 'Leonard', 2006, 'M', 383), +(191029, 'Xzavier', 2006, 'M', 383), +(191030, 'Matteo', 2006, 'M', 381), +(191031, 'Asa', 2006, 'M', 380), +(191032, 'Randall', 2006, 'M', 380), +(191033, 'Junior', 2006, 'M', 378), +(191034, 'Aron', 2006, 'M', 377), +(191035, 'Elisha', 2006, 'M', 376), +(191036, 'Ryker', 2006, 'M', 376), +(191037, 'Ari', 2006, 'M', 374), +(191038, 'Boston', 2006, 'M', 374), +(191039, 'Rudy', 2006, 'M', 373), +(191040, 'Antoine', 2006, 'M', 371), +(191041, 'Krish', 2006, 'M', 371), +(191042, 'Mohammed', 2006, 'M', 370), +(191043, 'Markus', 2006, 'M', 369), +(191044, 'Maximiliano', 2006, 'M', 369), +(191045, 'London', 2006, 'M', 366), +(191046, 'Muhammad', 2006, 'M', 366), +(191047, 'Bailey', 2006, 'M', 365), +(191048, 'Kolton', 2006, 'M', 365), +(191049, 'Kadin', 2006, 'M', 363), +(191050, 'Sincere', 2006, 'M', 363), +(191051, 'Freddy', 2006, 'M', 361), +(191052, 'Alonso', 2006, 'M', 360), +(191053, 'Jefferson', 2006, 'M', 359), +(191054, 'Jamar', 2006, 'M', 358), +(191055, 'Javion', 2006, 'M', 358), +(191056, 'Wayne', 2006, 'M', 358), +(191057, 'Damarion', 2006, 'M', 357), +(191058, 'Harold', 2006, 'M', 356), +(191059, 'Quintin', 2006, 'M', 356), +(191060, 'Frankie', 2006, 'M', 354), +(191061, 'Eugene', 2006, 'M', 352), +(191062, 'Kole', 2006, 'M', 352), +(191063, 'Todd', 2006, 'M', 352), +(191064, 'Duncan', 2006, 'M', 351), +(191065, 'Tyrell', 2006, 'M', 350), +(191066, 'Jaquan', 2006, 'M', 349), +(191067, 'Agustin', 2006, 'M', 348), +(191068, 'Rashad', 2006, 'M', 348), +(191069, 'Coleman', 2006, 'M', 347), +(191070, 'Gilbert', 2006, 'M', 347), +(191071, 'Jarrett', 2006, 'M', 345), +(191072, 'Kamari', 2006, 'M', 345), +(191073, 'Kamron', 2006, 'M', 342), +(191074, 'Nico', 2006, 'M', 342), +(191075, 'Efrain', 2006, 'M', 341), +(191076, 'Kolby', 2006, 'M', 341), +(191077, 'Octavio', 2006, 'M', 341), +(191078, 'Irvin', 2006, 'M', 339), +(191079, 'Lamar', 2006, 'M', 339), +(191080, 'Jaeden', 2006, 'M', 338), +(191081, 'Kasey', 2006, 'M', 337), +(191082, 'Zechariah', 2006, 'M', 337), +(191083, 'Lawson', 2006, 'M', 336), +(191084, 'Milo', 2006, 'M', 336), +(191085, 'Yandel', 2006, 'M', 336), +(191086, 'Bradyn', 2006, 'M', 333), +(191087, 'Jordy', 2006, 'M', 332), +(191088, 'Lewis', 2006, 'M', 331), +(191089, 'Raphael', 2006, 'M', 331), +(191090, 'Rhett', 2006, 'M', 330), +(191091, 'Ryland', 2006, 'M', 330), +(191092, 'Sage', 2006, 'M', 330), +(191093, 'Davian', 2006, 'M', 329), +(191094, 'Mike', 2006, 'M', 329), +(191095, 'Santino', 2006, 'M', 328), +(191096, 'Aryan', 2006, 'M', 326), +(191097, 'Deacon', 2006, 'M', 325), +(191098, 'Draven', 2006, 'M', 325), +(191099, 'Dashawn', 2006, 'M', 324), +(191100, 'Clark', 2006, 'M', 323), +(191101, 'Jaylan', 2006, 'M', 321), +(191102, 'Layne', 2006, 'M', 320), +(191103, 'Semaj', 2006, 'M', 319), +(191104, 'Armani', 2006, 'M', 318), +(191105, 'Brice', 2006, 'M', 318), +(191106, 'Jovani', 2006, 'M', 318), +(191107, 'Tyree', 2006, 'M', 318), +(191108, 'Luciano', 2006, 'M', 315), +(191109, 'Kenyon', 2006, 'M', 314), +(191110, 'Giovanny', 2006, 'M', 313), +(191111, 'Humberto', 2006, 'M', 313), +(191112, 'Ignacio', 2006, 'M', 313), +(191113, 'Yair', 2006, 'M', 311), +(191114, 'Kane', 2006, 'M', 310), +(191115, 'Kian', 2006, 'M', 309), +(191116, 'Nigel', 2006, 'M', 309), +(191117, 'Gavyn', 2006, 'M', 308), +(191118, 'Adriel', 2006, 'M', 307), +(191119, 'Clay', 2006, 'M', 307), +(191120, 'Darnell', 2006, 'M', 305), +(191121, 'Isai', 2006, 'M', 305), +(191122, 'Kareem', 2006, 'M', 302), +(191123, 'Omari', 2006, 'M', 302), +(191124, 'Santos', 2006, 'M', 302), +(191125, 'Josh', 2006, 'M', 301), +(191126, 'Anton', 2006, 'M', 300), +(191127, 'Layton', 2006, 'M', 300), +(191128, 'Donte', 2006, 'M', 299), +(191129, 'Giancarlo', 2006, 'M', 299), +(191130, 'Jean', 2006, 'M', 299), +(191131, 'Arjun', 2006, 'M', 298), +(191132, 'Tristian', 2006, 'M', 298), +(191133, 'Vance', 2006, 'M', 298), +(191134, 'Ernest', 2006, 'M', 296), +(191135, 'Jair', 2006, 'M', 296), +(191136, 'Malakai', 2006, 'M', 296), +(191137, 'Nathanial', 2006, 'M', 296), +(191138, 'Omarion', 2006, 'M', 295), +(191139, 'Justus', 2006, 'M', 293), +(191140, 'Brennen', 2006, 'M', 292), +(191141, 'Roderick', 2006, 'M', 292), +(191142, 'Demarcus', 2006, 'M', 291), +(191143, 'Derick', 2006, 'M', 290), +(191144, 'Aydin', 2006, 'M', 289), +(191145, 'Dale', 2006, 'M', 289), +(191146, 'Enzo', 2006, 'M', 289), +(191147, 'Jordon', 2006, 'M', 289), +(191148, 'Vaughn', 2006, 'M', 289), +(191149, 'Cale', 2006, 'M', 288), +(191150, 'Hamza', 2006, 'M', 288), +(191151, 'Nash', 2006, 'M', 288), +(191152, 'Mathias', 2006, 'M', 285), +(191153, 'Braedon', 2006, 'M', 284), +(191154, 'Demarion', 2006, 'M', 284), +(191155, 'Kylan', 2006, 'M', 284), +(191156, 'Ross', 2006, 'M', 283), +(191157, 'Cason', 2006, 'M', 282), +(191158, 'Alfred', 2006, 'M', 281), +(191159, 'Beckett', 2006, 'M', 281), +(191160, 'Devyn', 2006, 'M', 281), +(191161, 'Kason', 2006, 'M', 281), +(191162, 'Adrien', 2006, 'M', 280), +(191163, 'Hassan', 2006, 'M', 280), +(191164, 'Jadyn', 2006, 'M', 280), +(191165, 'Kaeden', 2006, 'M', 280), +(191166, 'Jan', 2006, 'M', 279), +(191167, 'Aedan', 2006, 'M', 278), +(191168, 'Garret', 2006, 'M', 277), +(191169, 'Jorden', 2006, 'M', 277), +(191170, 'Ralph', 2006, 'M', 277), +(191171, 'Braylen', 2006, 'M', 276), +(191172, 'Dominique', 2006, 'M', 274), +(191173, 'Barrett', 2006, 'M', 273), +(191174, 'Elvis', 2006, 'M', 273), +(191175, 'Kale', 2006, 'M', 272), +(191176, 'Atticus', 2006, 'M', 270), +(191177, 'Darryl', 2006, 'M', 270), +(191178, 'Jamir', 2006, 'M', 270), +(191179, 'Karl', 2006, 'M', 270), +(191180, 'Dillan', 2006, 'M', 269), +(191181, 'Keon', 2006, 'M', 269), +(191182, 'Sterling', 2006, 'M', 269), +(191183, 'Bo', 2006, 'M', 267), +(191184, 'Ellis', 2006, 'M', 267), +(191185, 'Heath', 2006, 'M', 267), +(191186, 'Paxton', 2006, 'M', 267), +(191187, 'Darwin', 2006, 'M', 266), +(191188, 'Ean', 2006, 'M', 266), +(191189, 'Jovanni', 2006, 'M', 266), +(191190, 'Roland', 2006, 'M', 265), +(191191, 'Finnegan', 2006, 'M', 264), +(191192, 'Remington', 2006, 'M', 264), +(191193, 'Ronaldo', 2006, 'M', 264), +(191194, 'Cannon', 2006, 'M', 263), +(191195, 'Conrad', 2006, 'M', 263), +(191196, 'Jordyn', 2006, 'M', 263), +(191197, 'Amare', 2006, 'M', 262), +(191198, 'Rigoberto', 2006, 'M', 262), +(191199, 'Carmine', 2006, 'M', 261), +(191200, 'Cullen', 2006, 'M', 260), +(191201, 'Reagan', 2006, 'M', 260), +(191202, 'Deangelo', 2006, 'M', 259), +(191203, 'Giovani', 2006, 'M', 259), +(191204, 'Bruno', 2006, 'M', 258), +(191205, 'Kamden', 2006, 'M', 258), +(191206, 'Rylee', 2006, 'M', 258), +(191207, 'Korbin', 2006, 'M', 256), +(191208, 'Messiah', 2006, 'M', 256), +(191209, 'Marques', 2006, 'M', 255), +(191210, 'Nathen', 2006, 'M', 255), +(191211, 'Sidney', 2006, 'M', 255), +(191212, 'Matthias', 2006, 'M', 254), +(191213, 'Shamar', 2006, 'M', 254), +(191214, 'Jovanny', 2006, 'M', 253), +(191215, 'Malaki', 2006, 'M', 253), +(191216, 'Soren', 2006, 'M', 252), +(191217, 'Adonis', 2006, 'M', 251), +(191218, 'Donavan', 2006, 'M', 251), +(191219, 'Luka', 2006, 'M', 251), +(191220, 'Rex', 2006, 'M', 251), +(191221, 'Salvatore', 2006, 'M', 251), +(191222, 'Cristofer', 2006, 'M', 250), +(191223, 'Nick', 2006, 'M', 250), +(191224, 'Alden', 2006, 'M', 249), +(191225, 'Clarence', 2006, 'M', 249), +(191226, 'Lucian', 2006, 'M', 249), +(191227, 'Jaron', 2006, 'M', 248), +(191228, 'Zavier', 2006, 'M', 248), +(191229, 'Aditya', 2006, 'M', 247), +(191230, 'Antony', 2006, 'M', 247), +(191231, 'Augustus', 2006, 'M', 247), +(191232, 'Keshawn', 2006, 'M', 247), +(191233, 'Prince', 2006, 'M', 247), +(191234, 'Zaire', 2006, 'M', 247), +(191235, 'Antwan', 2006, 'M', 246), +(191236, 'Coby', 2006, 'M', 246), +(191237, 'Matias', 2006, 'M', 246), +(191238, 'Rory', 2006, 'M', 246), +(191239, 'Konnor', 2006, 'M', 244), +(191240, 'Samir', 2006, 'M', 244), +(191241, 'Seamus', 2006, 'M', 244), +(191242, 'Darien', 2006, 'M', 243), +(191243, 'Devonte', 2006, 'M', 243), +(191244, 'Houston', 2006, 'M', 243), +(191245, 'Howard', 2006, 'M', 243), +(191246, 'Jovany', 2006, 'M', 243), +(191247, 'Reynaldo', 2006, 'M', 243), +(191248, 'Teagan', 2006, 'M', 243), +(191249, 'Sheldon', 2006, 'M', 241), +(191250, 'Ace', 2006, 'M', 240), +(191251, 'Clinton', 2006, 'M', 240), +(191252, 'Jovan', 2006, 'M', 239), +(191253, 'Chaim', 2006, 'M', 237), +(191254, 'Deon', 2006, 'M', 237), +(191255, 'German', 2006, 'M', 237), +(191256, 'Karter', 2006, 'M', 237), +(191257, 'Milton', 2006, 'M', 237), +(191258, 'Estevan', 2006, 'M', 236), +(191259, 'Glenn', 2006, 'M', 236), +(191260, 'Kael', 2006, 'M', 236), +(191261, 'Maxim', 2006, 'M', 236), +(191262, 'Rey', 2006, 'M', 236), +(191263, 'Bode', 2006, 'M', 235), +(191264, 'Yosef', 2006, 'M', 234), +(191265, 'Dangelo', 2006, 'M', 233), +(191266, 'Deshaun', 2006, 'M', 233), +(191267, 'Koen', 2006, 'M', 233), +(191268, 'Marquise', 2006, 'M', 233), +(191269, 'Alexandro', 2006, 'M', 232), +(191270, 'Makai', 2006, 'M', 232), +(191271, 'Vincenzo', 2006, 'M', 232), +(191272, 'Leandro', 2006, 'M', 231), +(191273, 'Quinten', 2006, 'M', 231), +(191274, 'Eddy', 2006, 'M', 230), +(191275, 'Haden', 2006, 'M', 230), +(191276, 'Reuben', 2006, 'M', 230), +(191277, 'Savion', 2006, 'M', 230), +(191278, 'Darion', 2006, 'M', 229), +(191279, 'Blaze', 2006, 'M', 228), +(191280, 'Zain', 2006, 'M', 228), +(191281, 'Branson', 2006, 'M', 227), +(191282, 'Haiden', 2006, 'M', 227), +(191283, 'Carmelo', 2006, 'M', 226), +(191284, 'Hezekiah', 2006, 'M', 225), +(191285, 'Konner', 2006, 'M', 225), +(191286, 'Winston', 2006, 'M', 225), +(191287, 'Santana', 2006, 'M', 224), +(191288, 'Sonny', 2006, 'M', 224), +(191289, 'Zayden', 2006, 'M', 224), +(191290, 'Broderick', 2006, 'M', 223), +(191291, 'Dario', 2006, 'M', 223), +(191292, 'Gauge', 2006, 'M', 223), +(191293, 'Keyon', 2006, 'M', 223), +(191294, 'Nikhil', 2006, 'M', 223), +(191295, 'Stefan', 2006, 'M', 223), +(191296, 'Zakary', 2006, 'M', 222), +(191297, 'Andreas', 2006, 'M', 221), +(191298, 'Finley', 2006, 'M', 220), +(191299, 'Samson', 2006, 'M', 220), +(191300, 'Abdullah', 2006, 'M', 219), +(191301, 'Gannon', 2006, 'M', 217), +(191302, 'Garrison', 2006, 'M', 217), +(191303, 'King', 2006, 'M', 217), +(191304, 'Landin', 2006, 'M', 217), +(191305, 'Marcelo', 2006, 'M', 217), +(191306, 'Tyshawn', 2006, 'M', 217), +(191307, 'Elmer', 2006, 'M', 216), +(191308, 'Kyan', 2006, 'M', 216), +(191309, 'Pranav', 2006, 'M', 216), +(191310, 'Royce', 2006, 'M', 216), +(191311, 'Talen', 2006, 'M', 216), +(191312, 'Fredrick', 2006, 'M', 215), +(191313, 'Gordon', 2006, 'M', 215), +(191314, 'Brad', 2006, 'M', 214), +(191315, 'Van', 2006, 'M', 214), +(191316, 'Chaz', 2006, 'M', 213), +(191317, 'Kasen', 2006, 'M', 213), +(191318, 'Colt', 2006, 'M', 212), +(191319, 'Valentin', 2006, 'M', 212), +(191320, 'Yusuf', 2006, 'M', 211), +(191321, 'Aidyn', 2006, 'M', 210), +(191322, 'Jacoby', 2006, 'M', 210), +(191323, 'Keven', 2006, 'M', 210), +(191324, 'Dexter', 2006, 'M', 209), +(191325, 'Gonzalo', 2006, 'M', 207), +(191326, 'Jamarcus', 2006, 'M', 206), +(191327, 'Jeramiah', 2006, 'M', 206), +(191328, 'Kadyn', 2006, 'M', 206), +(191329, 'Cael', 2006, 'M', 205), +(191330, 'Guadalupe', 2006, 'M', 205), +(191331, 'Maximo', 2006, 'M', 205), +(191332, 'Rhys', 2006, 'M', 205), +(191333, 'Gaige', 2006, 'M', 204), +(191334, 'Jerimiah', 2006, 'M', 204), +(191335, 'Cornelius', 2006, 'M', 203), +(191336, 'Franco', 2006, 'M', 203), +(191337, 'Kingston', 2006, 'M', 203), +(191338, 'Sullivan', 2006, 'M', 203), +(191339, 'Austen', 2006, 'M', 202), +(191340, 'Carlo', 2006, 'M', 202), +(191341, 'Leroy', 2006, 'M', 202), +(191342, 'Memphis', 2006, 'M', 201), +(191343, 'Nestor', 2006, 'M', 201), +(191344, 'Treyvon', 2006, 'M', 201), +(191345, 'Cortez', 2006, 'M', 200), +(191346, 'Jasiah', 2006, 'M', 200), +(191347, 'Travon', 2006, 'M', 200), +(191348, 'Arnav', 2006, 'M', 199), +(191349, 'Camryn', 2006, 'M', 199), +(191350, 'Darrius', 2006, 'M', 199), +(191351, 'Destin', 2006, 'M', 198), +(191352, 'Marcel', 2006, 'M', 198), +(191353, 'Sammy', 2006, 'M', 198), +(191354, 'Zack', 2006, 'M', 198), +(191355, 'Landan', 2006, 'M', 197), +(191356, 'Brenton', 2006, 'M', 196), +(191357, 'Case', 2006, 'M', 196), +(191358, 'Denzel', 2006, 'M', 196), +(191359, 'Gaven', 2006, 'M', 196), +(191360, 'Simeon', 2006, 'M', 196), +(191361, 'Zayne', 2006, 'M', 196), +(191362, 'Edison', 2006, 'M', 195), +(191363, 'Harper', 2006, 'M', 195), +(191364, 'Keyshawn', 2006, 'M', 195), +(191365, 'Bernard', 2006, 'M', 194), +(191366, 'Ethen', 2006, 'M', 194), +(191367, 'Jamel', 2006, 'M', 194), +(191368, 'Truman', 2006, 'M', 194), +(191369, 'Braulio', 2006, 'M', 193), +(191370, 'Coen', 2006, 'M', 193), +(191371, 'Javen', 2006, 'M', 193), +(191372, 'Johnpaul', 2006, 'M', 193), +(191373, 'Stephan', 2006, 'M', 193), +(191374, 'Valentino', 2006, 'M', 193), +(191375, 'Yehuda', 2006, 'M', 193), +(191376, 'Benny', 2006, 'M', 192), +(191377, 'Domenic', 2006, 'M', 192), +(191378, 'Menachem', 2006, 'M', 192), +(191379, 'Perry', 2006, 'M', 192), +(191380, 'Stone', 2006, 'M', 192), +(191381, 'Trystan', 2006, 'M', 192), +(191382, 'Josef', 2006, 'M', 191), +(191383, 'Thaddeus', 2006, 'M', 191), +(191384, 'Lamont', 2006, 'M', 190), +(191385, 'Niko', 2006, 'M', 190), +(191386, 'Shannon', 2006, 'M', 190), +(191387, 'Efren', 2006, 'M', 189), +(191388, 'Kamren', 2006, 'M', 189), +(191389, 'Rocky', 2006, 'M', 189), +(191390, 'Shea', 2006, 'M', 189), +(191391, 'Bernardo', 2006, 'M', 188), +(191392, 'Blaise', 2006, 'M', 188), +(191393, 'Imanol', 2006, 'M', 188), +(191394, 'Izayah', 2006, 'M', 188), +(191395, 'Jaydin', 2006, 'M', 188), +(191396, 'Joan', 2006, 'M', 188), +(191397, 'Austyn', 2006, 'M', 187), +(191398, 'Jaheim', 2006, 'M', 187), +(191399, 'Korey', 2006, 'M', 187), +(191400, 'Mikel', 2006, 'M', 187), +(191401, 'Anders', 2006, 'M', 186), +(191402, 'Earl', 2006, 'M', 186), +(191403, 'Guy', 2006, 'M', 186), +(191404, 'Dandre', 2006, 'M', 185), +(191405, 'Dion', 2006, 'M', 185), +(191406, 'Pierre', 2006, 'M', 185), +(191407, 'Elian', 2006, 'M', 184), +(191408, 'Hugh', 2006, 'M', 184), +(191409, 'Immanuel', 2006, 'M', 184), +(191410, 'Brogan', 2006, 'M', 183), +(191411, 'Cristobal', 2006, 'M', 183), +(191412, 'Jarvis', 2006, 'M', 183), +(191413, 'Jax', 2006, 'M', 183), +(191414, 'Ronin', 2006, 'M', 183), +(191415, 'Benito', 2006, 'M', 182), +(191416, 'Bodie', 2006, 'M', 182), +(191417, 'Eliseo', 2006, 'M', 182), +(191418, 'Juelz', 2006, 'M', 182), +(191419, 'Kelton', 2006, 'M', 182), +(191420, 'Kurt', 2006, 'M', 182), +(191421, 'Rayan', 2006, 'M', 182), +(191422, 'Irving', 2006, 'M', 181), +(191423, 'Jayvon', 2006, 'M', 181), +(191424, 'Turner', 2006, 'M', 181), +(191425, 'Zaid', 2006, 'M', 181), +(191426, 'Emery', 2006, 'M', 180), +(191427, 'Fisher', 2006, 'M', 180), +(191428, 'Madden', 2006, 'M', 180), +(191429, 'Yael', 2006, 'M', 180), +(191430, 'Bronson', 2006, 'M', 179), +(191431, 'Gino', 2006, 'M', 179), +(191432, 'Kennedy', 2006, 'M', 179), +(191433, 'Mariano', 2006, 'M', 179), +(191434, 'Raiden', 2006, 'M', 179), +(191435, 'Damari', 2006, 'M', 178), +(191436, 'Heriberto', 2006, 'M', 178), +(191437, 'Trenten', 2006, 'M', 178), +(191438, 'Ulysses', 2006, 'M', 178), +(191439, 'Campbell', 2006, 'M', 177), +(191440, 'Daryl', 2006, 'M', 177), +(191441, 'Jaydan', 2006, 'M', 177), +(191442, 'Keanu', 2006, 'M', 177), +(191443, 'Norman', 2006, 'M', 177), +(191444, 'Latrell', 2006, 'M', 176), +(191445, 'Dallin', 2006, 'M', 175), +(191446, 'Fredy', 2006, 'M', 175), +(191447, 'Killian', 2006, 'M', 175), +(191448, 'Stephon', 2006, 'M', 175), +(191449, 'Vince', 2006, 'M', 175), +(191450, 'Adin', 2006, 'M', 174), +(191451, 'Eliezer', 2006, 'M', 174), +(191452, 'Fletcher', 2006, 'M', 174), +(191453, 'Tariq', 2006, 'M', 174), +(191454, 'Fred', 2006, 'M', 173), +(191455, 'Reilly', 2006, 'M', 173), +(191456, 'Dylon', 2006, 'M', 171), +(191457, 'Sebastien', 2006, 'M', 171), +(191458, 'Tayshaun', 2006, 'M', 171), +(191459, 'Trevin', 2006, 'M', 171), +(191460, 'Bentley', 2006, 'M', 170), +(191461, 'Eden', 2006, 'M', 170), +(191462, 'Geoffrey', 2006, 'M', 170), +(191463, 'Rishi', 2006, 'M', 170), +(191464, 'Barry', 2006, 'M', 169), +(191465, 'Cassius', 2006, 'M', 169), +(191466, 'Courtney', 2006, 'M', 169), +(191467, 'Daquan', 2006, 'M', 169), +(191468, 'Don', 2006, 'M', 169), +(191469, 'Elvin', 2006, 'M', 169), +(191470, 'Jaren', 2006, 'M', 169), +(191471, 'Miguelangel', 2006, 'M', 169), +(191472, 'Rashawn', 2006, 'M', 169), +(191473, 'Tye', 2006, 'M', 169), +(191474, 'Clifford', 2006, 'M', 168), +(191475, 'Jakub', 2006, 'M', 168), +(191476, 'Kamryn', 2006, 'M', 168), +(191477, 'Amarion', 2006, 'M', 167), +(191478, 'Bridger', 2006, 'M', 167), +(191479, 'Jordi', 2006, 'M', 166), +(191480, 'Lonnie', 2006, 'M', 166), +(191481, 'Shayne', 2006, 'M', 166), +(191482, 'Uriah', 2006, 'M', 166), +(191483, 'Francesco', 2006, 'M', 165), +(191484, 'Isaak', 2006, 'M', 165), +(191485, 'Koby', 2006, 'M', 165), +(191486, 'Rickey', 2006, 'M', 165), +(191487, 'Alexavier', 2006, 'M', 164), +(191488, 'Dontae', 2006, 'M', 163), +(191489, 'Makhi', 2006, 'M', 163), +(191490, 'Marcello', 2006, 'M', 163), +(191491, 'Nikolai', 2006, 'M', 163), +(191492, 'Coy', 2006, 'M', 162), +(191493, 'Dax', 2006, 'M', 162), +(191494, 'Lloyd', 2006, 'M', 162), +(191495, 'Thatcher', 2006, 'M', 162), +(191496, 'Treyton', 2006, 'M', 162), +(191497, 'Canaan', 2006, 'M', 161), +(191498, 'Corban', 2006, 'M', 161), +(191499, 'Darin', 2006, 'M', 161), +(191500, 'Dwight', 2006, 'M', 161), +(191501, 'Kalel', 2006, 'M', 161), +(191502, 'Trever', 2006, 'M', 161), +(191503, 'Achilles', 2006, 'M', 160), +(191504, 'Benson', 2006, 'M', 160), +(191505, 'Keller', 2006, 'M', 160), +(191506, 'Markell', 2006, 'M', 160), +(191507, 'Mauro', 2006, 'M', 160), +(191508, 'Stuart', 2006, 'M', 160), +(191509, 'Camilo', 2006, 'M', 159), +(191510, 'Jonatan', 2006, 'M', 159), +(191511, 'Merrick', 2006, 'M', 159), +(191512, 'Bishop', 2006, 'M', 158), +(191513, 'Denis', 2006, 'M', 158), +(191514, 'Eliel', 2006, 'M', 158), +(191515, 'Jaidyn', 2006, 'M', 158), +(191516, 'Jedidiah', 2006, 'M', 158), +(191517, 'Maximillian', 2006, 'M', 158), +(191518, 'Boden', 2006, 'M', 157), +(191519, 'Jagger', 2006, 'M', 157), +(191520, 'Marquez', 2006, 'M', 157), +(191521, 'Mustafa', 2006, 'M', 157), +(191522, 'Ajay', 2006, 'M', 156), +(191523, 'Canyon', 2006, 'M', 156), +(191524, 'Ryley', 2006, 'M', 156), +(191525, 'Theo', 2006, 'M', 156), +(191526, 'Dimitri', 2006, 'M', 155), +(191527, 'Fidel', 2006, 'M', 155), +(191528, 'Marion', 2006, 'M', 155), +(191529, 'Abner', 2006, 'M', 154), +(191530, 'Bryton', 2006, 'M', 154), +(191531, 'Geovanni', 2006, 'M', 154), +(191532, 'Jai', 2006, 'M', 154), +(191533, 'Kyree', 2006, 'M', 153), +(191534, 'Lyric', 2006, 'M', 153), +(191535, 'Miller', 2006, 'M', 153), +(191536, 'Myron', 2006, 'M', 153), +(191537, 'Alek', 2006, 'M', 152), +(191538, 'Anish', 2006, 'M', 151), +(191539, 'Britton', 2006, 'M', 151), +(191540, 'Dilan', 2006, 'M', 151), +(191541, 'Shlomo', 2006, 'M', 151), +(191542, 'Vladimir', 2006, 'M', 151), +(191543, 'Duane', 2006, 'M', 150), +(191544, 'Ephraim', 2006, 'M', 150), +(191545, 'Lucien', 2006, 'M', 150), +(191546, 'Nate', 2006, 'M', 150), +(191547, 'Taj', 2006, 'M', 150), +(191548, 'Ameer', 2006, 'M', 149), +(191549, 'Amos', 2006, 'M', 149), +(191550, 'Khalid', 2006, 'M', 149), +(191551, 'Ever', 2006, 'M', 148), +(191552, 'Ewan', 2006, 'M', 148), +(191553, 'Isac', 2006, 'M', 148), +(191554, 'Kevon', 2006, 'M', 148), +(191555, 'Tavion', 2006, 'M', 148), +(191556, 'Alton', 2006, 'M', 147), +(191557, 'Daylen', 2006, 'M', 147), +(191558, 'Forrest', 2006, 'M', 147), +(191559, 'Juancarlos', 2006, 'M', 147), +(191560, 'Tylor', 2006, 'M', 147), +(191561, 'Clifton', 2006, 'M', 146), +(191562, 'Denver', 2006, 'M', 146), +(191563, 'Dewayne', 2006, 'M', 146), +(191564, 'Leighton', 2006, 'M', 146), +(191565, 'Sabastian', 2006, 'M', 146), +(191566, 'Wilmer', 2006, 'M', 146), +(191567, 'Yisroel', 2006, 'M', 146), +(191568, 'Eleazar', 2006, 'M', 145), +(191569, 'Gian', 2006, 'M', 145), +(191570, 'Jermiah', 2006, 'M', 145), +(191571, 'Kurtis', 2006, 'M', 145), +(191572, 'Raymundo', 2006, 'M', 145), +(191573, 'Siddharth', 2006, 'M', 145), +(191574, 'Slade', 2006, 'M', 145), +(191575, 'Tegan', 2006, 'M', 145), +(191576, 'Westin', 2006, 'M', 145), +(191577, 'Aarav', 2006, 'M', 144), +(191578, 'Abdiel', 2006, 'M', 144), +(191579, 'Daveon', 2006, 'M', 144), +(191580, 'Quinlan', 2006, 'M', 144), +(191581, 'Rico', 2006, 'M', 144), +(191582, 'Carlton', 2006, 'M', 143), +(191583, 'Darrion', 2006, 'M', 143), +(191584, 'Jaycob', 2006, 'M', 143), +(191585, 'Jeshua', 2006, 'M', 143), +(191586, 'Kyron', 2006, 'M', 143), +(191587, 'Aubrey', 2006, 'M', 142), +(191588, 'Callum', 2006, 'M', 142), +(191589, 'Ely', 2006, 'M', 142), +(191590, 'Gregorio', 2006, 'M', 142), +(191591, 'Jakobe', 2006, 'M', 142), +(191592, 'Kolten', 2006, 'M', 142), +(191593, 'Lester', 2006, 'M', 142), +(191594, 'Zavion', 2006, 'M', 142), +(191595, 'Alexandre', 2006, 'M', 141), +(191596, 'Jamil', 2006, 'M', 141), +(191597, 'Lazaro', 2006, 'M', 141), +(191598, 'Syed', 2006, 'M', 141), +(191599, 'Vernon', 2006, 'M', 141), +(191600, 'Brennon', 2006, 'M', 140), +(191601, 'Cian', 2006, 'M', 140), +(191602, 'Freddie', 2006, 'M', 140), +(191603, 'Jeff', 2006, 'M', 140), +(191604, 'Jevon', 2006, 'M', 140), +(191605, 'Kash', 2006, 'M', 140), +(191606, 'Maddux', 2006, 'M', 140), +(191607, 'Adyn', 2006, 'M', 139), +(191608, 'Arman', 2006, 'M', 139), +(191609, 'Davonte', 2006, 'M', 139), +(191610, 'Deonte', 2006, 'M', 139), +(191611, 'Donnell', 2006, 'M', 139), +(191612, 'Emory', 2006, 'M', 139), +(191613, 'Jahir', 2006, 'M', 139), +(191614, 'Kelly', 2006, 'M', 139), +(191615, 'Kent', 2006, 'M', 139), +(191616, 'Kenton', 2006, 'M', 139), +(191617, 'Kory', 2006, 'M', 139), +(191618, 'Amar', 2006, 'M', 138), +(191619, 'Antwon', 2006, 'M', 138), +(191620, 'Bowen', 2006, 'M', 138), +(191621, 'Dhruv', 2006, 'M', 138), +(191622, 'Harvey', 2006, 'M', 138), +(191623, 'Javian', 2006, 'M', 138), +(191624, 'Jensen', 2006, 'M', 138), +(191625, 'Markel', 2006, 'M', 138), +(191626, 'Marko', 2006, 'M', 138), +(191627, 'Nazir', 2006, 'M', 138), +(191628, 'Neal', 2006, 'M', 138), +(191629, 'Terence', 2006, 'M', 138), +(191630, 'Carsen', 2006, 'M', 137), +(191631, 'Cordell', 2006, 'M', 137), +(191632, 'Gerson', 2006, 'M', 137), +(191633, 'Lionel', 2006, 'M', 137), +(191634, 'Luc', 2006, 'M', 137), +(191635, 'Trevion', 2006, 'M', 137), +(191636, 'Ervin', 2006, 'M', 136), +(191637, 'Gianluca', 2006, 'M', 136), +(191638, 'Harris', 2006, 'M', 136), +(191639, 'Javin', 2006, 'M', 136), +(191640, 'Lucius', 2006, 'M', 136), +(191641, 'Mordechai', 2006, 'M', 136), +(191642, 'Torin', 2006, 'M', 136), +(191643, 'Trae', 2006, 'M', 136), +(191644, 'Xavion', 2006, 'M', 136), +(191645, 'Braedyn', 2006, 'M', 135), +(191646, 'Cain', 2006, 'M', 135), +(191647, 'Hagen', 2006, 'M', 135), +(191648, 'Hank', 2006, 'M', 135), +(191649, 'Haven', 2006, 'M', 135), +(191650, 'Johann', 2006, 'M', 135), +(191651, 'Ken', 2006, 'M', 135), +(191652, 'Leif', 2006, 'M', 135), +(191653, 'Reyli', 2006, 'M', 135), +(191654, 'Sami', 2006, 'M', 135), +(191655, 'Yaakov', 2006, 'M', 135), +(191656, 'Dan', 2006, 'M', 134), +(191657, 'Hayes', 2006, 'M', 134), +(191658, 'Kegan', 2006, 'M', 134), +(191659, 'Otto', 2006, 'M', 134), +(191660, 'Theron', 2006, 'M', 134), +(191661, 'Arnold', 2006, 'M', 133), +(191662, 'Darrin', 2006, 'M', 133), +(191663, 'Dashaun', 2006, 'M', 133), +(191664, 'Donnie', 2006, 'M', 133), +(191665, 'Marley', 2006, 'M', 133), +(191666, 'Rick', 2006, 'M', 133), +(191667, 'Anson', 2006, 'M', 132), +(191668, 'Briar', 2006, 'M', 132), +(191669, 'Coleton', 2006, 'M', 132), +(191670, 'Kalvin', 2006, 'M', 132), +(191671, 'Keshaun', 2006, 'M', 132), +(191672, 'Kristofer', 2006, 'M', 132), +(191673, 'Lennon', 2006, 'M', 132), +(191674, 'Mack', 2006, 'M', 132), +(191675, 'Massimo', 2006, 'M', 132), +(191676, 'Nevin', 2006, 'M', 132), +(191677, 'Rayshawn', 2006, 'M', 132), +(191678, 'Tylan', 2006, 'M', 132), +(191679, 'Beck', 2006, 'M', 131), +(191680, 'Dakoda', 2006, 'M', 131), +(191681, 'Damarcus', 2006, 'M', 131), +(191682, 'Daxton', 2006, 'M', 131), +(191683, 'Geovanny', 2006, 'M', 131), +(191684, 'Isidro', 2006, 'M', 131), +(191685, 'Johnnie', 2006, 'M', 131), +(191686, 'Karim', 2006, 'M', 131), +(191687, 'Karsten', 2006, 'M', 131), +(191688, 'Montrell', 2006, 'M', 131), +(191689, 'Tre', 2006, 'M', 131), +(191690, 'Beckham', 2006, 'M', 130), +(191691, 'Benedict', 2006, 'M', 130), +(191692, 'Ishaan', 2006, 'M', 130), +(191693, 'Jashawn', 2006, 'M', 130), +(191694, 'Marcelino', 2006, 'M', 130), +(191695, 'Odin', 2006, 'M', 130), +(191696, 'Bradly', 2006, 'M', 129), +(191697, 'Caeden', 2006, 'M', 129), +(191698, 'Clyde', 2006, 'M', 129), +(191699, 'Shimon', 2006, 'M', 129), +(191700, 'Zyon', 2006, 'M', 129), +(191701, 'Eliot', 2006, 'M', 128), +(191702, 'Jakari', 2006, 'M', 128), +(191703, 'Jericho', 2006, 'M', 128), +(191704, 'Kellan', 2006, 'M', 128), +(191705, 'Tayshawn', 2006, 'M', 128), +(191706, 'Devlin', 2006, 'M', 127), +(191707, 'Jadin', 2006, 'M', 127), +(191708, 'Javonte', 2006, 'M', 127), +(191709, 'Jayvion', 2006, 'M', 127), +(191710, 'Jimmie', 2006, 'M', 127), +(191711, 'Sameer', 2006, 'M', 127), +(191712, 'Shmuel', 2006, 'M', 127), +(191713, 'Yash', 2006, 'M', 127), +(191714, 'Amani', 2006, 'M', 126), +(191715, 'Angus', 2006, 'M', 126), +(191716, 'Augustine', 2006, 'M', 126), +(191717, 'Avi', 2006, 'M', 126), +(191718, 'Jaedon', 2006, 'M', 126), +(191719, 'Leyton', 2006, 'M', 126), +(191720, 'Magnus', 2006, 'M', 126), +(191721, 'Sahil', 2006, 'M', 126), +(191722, 'Evin', 2006, 'M', 125), +(191723, 'Jamaal', 2006, 'M', 125), +(191724, 'Jarred', 2006, 'M', 125), +(191725, 'Joseluis', 2006, 'M', 125), +(191726, 'Lachlan', 2006, 'M', 125), +(191727, 'Yasir', 2006, 'M', 125), +(191728, 'Bilal', 2006, 'M', 124), +(191729, 'Demarco', 2006, 'M', 124), +(191730, 'Eamon', 2006, 'M', 124), +(191731, 'Genaro', 2006, 'M', 124), +(191732, 'Glen', 2006, 'M', 124), +(191733, 'Hernan', 2006, 'M', 124), +(191734, 'Jacobi', 2006, 'M', 124), +(191735, 'Kentrell', 2006, 'M', 124), +(191736, 'Aleksander', 2006, 'M', 123), +(191737, 'Casen', 2006, 'M', 123), +(191738, 'Daylan', 2006, 'M', 123), +(191739, 'Enoch', 2006, 'M', 123), +(191740, 'Finnian', 2006, 'M', 123), +(191741, 'Juanpablo', 2006, 'M', 123), +(191742, 'Kahlil', 2006, 'M', 123), +(191743, 'Kamarion', 2006, 'M', 123), +(191744, 'Kohen', 2006, 'M', 123), +(191745, 'Mikael', 2006, 'M', 123), +(191746, 'Aric', 2006, 'M', 122), +(191747, 'Ayaan', 2006, 'M', 122), +(191748, 'Hasan', 2006, 'M', 122), +(191749, 'Jarrod', 2006, 'M', 122), +(191750, 'Marek', 2006, 'M', 122), +(191751, 'Paulo', 2006, 'M', 122), +(191752, 'Abdul', 2006, 'M', 121), +(191753, 'Gibson', 2006, 'M', 121), +(191754, 'Isreal', 2006, 'M', 121), +(191755, 'Kirk', 2006, 'M', 121), +(191756, 'Tai', 2006, 'M', 121), +(191757, 'Tyron', 2006, 'M', 121), +(191758, 'Anakin', 2006, 'M', 120), +(191759, 'Arian', 2006, 'M', 120), +(191760, 'Brighton', 2006, 'M', 120), +(191761, 'Demario', 2006, 'M', 120), +(191762, 'Jomar', 2006, 'M', 120), +(191763, 'Rian', 2006, 'M', 120), +(191764, 'Robin', 2006, 'M', 120), +(191765, 'Andrei', 2006, 'M', 119), +(191766, 'Colter', 2006, 'M', 119), +(191767, 'Hans', 2006, 'M', 119), +(191768, 'Jackie', 2006, 'M', 119), +(191769, 'Presley', 2006, 'M', 119), +(191770, 'Ramses', 2006, 'M', 119), +(191771, 'Tavon', 2006, 'M', 119), +(191772, 'Yousef', 2006, 'M', 119), +(191773, 'Adriano', 2006, 'M', 118), +(191774, 'Armaan', 2006, 'M', 118), +(191775, 'Brandt', 2006, 'M', 118), +(191776, 'Christofer', 2006, 'M', 118), +(191777, 'Gabe', 2006, 'M', 118), +(191778, 'Jaedyn', 2006, 'M', 118), +(191779, 'Milan', 2006, 'M', 118), +(191780, 'Raheem', 2006, 'M', 118), +(191781, 'Brant', 2006, 'M', 117), +(191782, 'Donavin', 2006, 'M', 117), +(191783, 'Donavon', 2006, 'M', 117), +(191784, 'Gerard', 2006, 'M', 117), +(191785, 'Kalen', 2006, 'M', 117), +(191786, 'Yitzchok', 2006, 'M', 117), +(191787, 'Chace', 2006, 'M', 116), +(191788, 'Dayne', 2006, 'M', 116), +(191789, 'Deion', 2006, 'M', 116), +(191790, 'Emir', 2006, 'M', 116), +(191791, 'Karon', 2006, 'M', 116), +(191792, 'Kyson', 2006, 'M', 116), +(191793, 'Osbaldo', 2006, 'M', 116), +(191794, 'Varun', 2006, 'M', 116), +(191795, 'Baylor', 2006, 'M', 115), +(191796, 'Blayne', 2006, 'M', 115), +(191797, 'Kelan', 2006, 'M', 115), +(191798, 'Zev', 2006, 'M', 115), +(191799, 'Deegan', 2006, 'M', 114), +(191800, 'Everardo', 2006, 'M', 114), +(191801, 'Jarod', 2006, 'M', 114), +(191802, 'Javan', 2006, 'M', 114), +(191803, 'Jelani', 2006, 'M', 114), +(191804, 'Lathan', 2006, 'M', 114), +(191805, 'Obed', 2006, 'M', 114), +(191806, 'Said', 2006, 'M', 114), +(191807, 'Daylon', 2006, 'M', 113), +(191808, 'Favian', 2006, 'M', 113), +(191809, 'Garett', 2006, 'M', 113), +(191810, 'Herbert', 2006, 'M', 113), +(191811, 'Ishmael', 2006, 'M', 113), +(191812, 'Oskar', 2006, 'M', 113), +(191813, 'Ramsey', 2006, 'M', 113), +(191814, 'Tripp', 2006, 'M', 113), +(191815, 'Abhinav', 2006, 'M', 112), +(191816, 'Dashiell', 2006, 'M', 112), +(191817, 'Eder', 2006, 'M', 112), +(191818, 'Jesiah', 2006, 'M', 112), +(191819, 'Claudio', 2006, 'M', 111), +(191820, 'Dameon', 2006, 'M', 111), +(191821, 'Dev', 2006, 'M', 111), +(191822, 'Edson', 2006, 'M', 111), +(191823, 'Izaak', 2006, 'M', 111), +(191824, 'Ridge', 2006, 'M', 111), +(191825, 'Benton', 2006, 'M', 110), +(191826, 'Darrian', 2006, 'M', 110), +(191827, 'Deanthony', 2006, 'M', 110), +(191828, 'Kylen', 2006, 'M', 110), +(191829, 'Lucio', 2006, 'M', 110), +(191830, 'Masen', 2006, 'M', 110), +(191831, 'Tyquan', 2006, 'M', 110), +(191832, 'Tzvi', 2006, 'M', 110), +(191833, 'Chauncey', 2006, 'M', 109), +(191834, 'Dejuan', 2006, 'M', 109), +(191835, 'Deontae', 2006, 'M', 109), +(191836, 'Dyllan', 2006, 'M', 109), +(191837, 'Hyrum', 2006, 'M', 109), +(191838, 'Jullian', 2006, 'M', 109), +(191839, 'Mikah', 2006, 'M', 109), +(191840, 'Rayden', 2006, 'M', 109), +(191841, 'Tevin', 2006, 'M', 109), +(191842, 'Tyshaun', 2006, 'M', 109), +(191843, 'Brandyn', 2006, 'M', 108), +(191844, 'Dereck', 2006, 'M', 108), +(191845, 'Gus', 2006, 'M', 108), +(191846, 'Kye', 2006, 'M', 108), +(191847, 'Ladarius', 2006, 'M', 108), +(191848, 'Louie', 2006, 'M', 108), +(191849, 'Tatum', 2006, 'M', 108), +(191850, 'Tom', 2006, 'M', 108), +(191851, 'Zahir', 2006, 'M', 108), +(191852, 'Cecil', 2006, 'M', 107), +(191853, 'Clint', 2006, 'M', 107), +(191854, 'Daron', 2006, 'M', 107), +(191855, 'Justyn', 2006, 'M', 107), +(191856, 'Kavon', 2006, 'M', 107), +(191857, 'Otis', 2006, 'M', 107), +(191858, 'Rowdy', 2006, 'M', 107), +(191859, 'Tobin', 2006, 'M', 107), +(191860, 'Tristyn', 2006, 'M', 107), +(191861, 'Arya', 2006, 'M', 106), +(191862, 'Ayush', 2006, 'M', 106), +(191863, 'Jacari', 2006, 'M', 106), +(191864, 'Jaylyn', 2006, 'M', 106), +(191865, 'Roan', 2006, 'M', 106), +(191866, 'Rowen', 2006, 'M', 106), +(191867, 'Ammon', 2006, 'M', 105), +(191868, 'Bodhi', 2006, 'M', 105), +(191869, 'Cy', 2006, 'M', 105), +(191870, 'Desean', 2006, 'M', 105), +(191871, 'Javien', 2006, 'M', 105), +(191872, 'Karsen', 2006, 'M', 105), +(191873, 'Khamari', 2006, 'M', 105), +(191874, 'Rahul', 2006, 'M', 105), +(191875, 'Archer', 2006, 'M', 104), +(191876, 'Baron', 2006, 'M', 104), +(191877, 'Canon', 2006, 'M', 104), +(191878, 'Domingo', 2006, 'M', 104), +(191879, 'Kenan', 2006, 'M', 104), +(191880, 'Lenny', 2006, 'M', 104), +(191881, 'Lucca', 2006, 'M', 104), +(191882, 'Lyle', 2006, 'M', 104); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(191883, 'Om', 2006, 'M', 104), +(191884, 'Paolo', 2006, 'M', 104), +(191885, 'Ajani', 2006, 'M', 103), +(191886, 'Federico', 2006, 'M', 103), +(191887, 'Ismail', 2006, 'M', 103), +(191888, 'Jacorey', 2006, 'M', 103), +(191889, 'Jael', 2006, 'M', 103), +(191890, 'Jaxen', 2006, 'M', 103), +(191891, 'Mitchel', 2006, 'M', 103), +(191892, 'Mykel', 2006, 'M', 103), +(191893, 'Neo', 2006, 'M', 103), +(191894, 'Osman', 2006, 'M', 103), +(191895, 'Remy', 2006, 'M', 103), +(191896, 'Shiloh', 2006, 'M', 103), +(191897, 'Willem', 2006, 'M', 103), +(191898, 'Zeke', 2006, 'M', 103), +(191899, 'Demarius', 2006, 'M', 102), +(191900, 'Deondre', 2006, 'M', 102), +(191901, 'Jacques', 2006, 'M', 102), +(191902, 'Kayson', 2006, 'M', 102), +(191903, 'Musa', 2006, 'M', 102), +(191904, 'Osmar', 2006, 'M', 102), +(191905, 'Wilfredo', 2006, 'M', 102), +(191906, 'Yovani', 2006, 'M', 102), +(191907, 'Demetri', 2006, 'M', 101), +(191908, 'Emil', 2006, 'M', 101), +(191909, 'Giuseppe', 2006, 'M', 101), +(191910, 'Herman', 2006, 'M', 101), +(191911, 'Kanye', 2006, 'M', 101), +(191912, 'Lars', 2006, 'M', 101), +(191913, 'Mikhail', 2006, 'M', 101), +(191914, 'Travion', 2006, 'M', 101), +(191915, 'Wiley', 2006, 'M', 101), +(191916, 'Dakotah', 2006, 'M', 100), +(191917, 'Hadi', 2006, 'M', 100), +(191918, 'Ira', 2006, 'M', 100), +(191919, 'Izaac', 2006, 'M', 100), +(191920, 'Judson', 2006, 'M', 100), +(191921, 'Keelan', 2006, 'M', 100), +(191922, 'Laron', 2006, 'M', 100), +(191923, 'Lebron', 2006, 'M', 100), +(191924, 'Trayvon', 2006, 'M', 100), +(191925, 'Tyrus', 2006, 'M', 100), +(191926, 'Youssef', 2006, 'M', 100), +(191927, 'Emily', 2007, 'F', 19345), +(191928, 'Isabella', 2007, 'F', 19128), +(191929, 'Emma', 2007, 'F', 18361), +(191930, 'Ava', 2007, 'F', 18040), +(191931, 'Madison', 2007, 'F', 17947), +(191932, 'Sophia', 2007, 'F', 17014), +(191933, 'Olivia', 2007, 'F', 16570), +(191934, 'Abigail', 2007, 'F', 15461), +(191935, 'Hannah', 2007, 'F', 13293), +(191936, 'Elizabeth', 2007, 'F', 13035), +(191937, 'Addison', 2007, 'F', 11943), +(191938, 'Samantha', 2007, 'F', 11870), +(191939, 'Ashley', 2007, 'F', 11422), +(191940, 'Alyssa', 2007, 'F', 11257), +(191941, 'Mia', 2007, 'F', 10907), +(191942, 'Chloe', 2007, 'F', 10741), +(191943, 'Natalie', 2007, 'F', 10431), +(191944, 'Sarah', 2007, 'F', 9984), +(191945, 'Alexis', 2007, 'F', 9901), +(191946, 'Grace', 2007, 'F', 9760), +(191947, 'Ella', 2007, 'F', 9537), +(191948, 'Brianna', 2007, 'F', 8845), +(191949, 'Hailey', 2007, 'F', 8425), +(191950, 'Taylor', 2007, 'F', 7954), +(191951, 'Anna', 2007, 'F', 7878), +(191952, 'Kayla', 2007, 'F', 7572), +(191953, 'Lily', 2007, 'F', 7495), +(191954, 'Lauren', 2007, 'F', 7434), +(191955, 'Victoria', 2007, 'F', 7425), +(191956, 'Savannah', 2007, 'F', 7041), +(191957, 'Nevaeh', 2007, 'F', 6795), +(191958, 'Jasmine', 2007, 'F', 6761), +(191959, 'Lillian', 2007, 'F', 6544), +(191960, 'Julia', 2007, 'F', 6130), +(191961, 'Sofia', 2007, 'F', 6044), +(191962, 'Kaylee', 2007, 'F', 6040), +(191963, 'Sydney', 2007, 'F', 6028), +(191964, 'Gabriella', 2007, 'F', 5833), +(191965, 'Katherine', 2007, 'F', 5810), +(191966, 'Alexa', 2007, 'F', 5781), +(191967, 'Destiny', 2007, 'F', 5724), +(191968, 'Jessica', 2007, 'F', 5701), +(191969, 'Morgan', 2007, 'F', 5662), +(191970, 'Kaitlyn', 2007, 'F', 5546), +(191971, 'Brooke', 2007, 'F', 5507), +(191972, 'Allison', 2007, 'F', 5450), +(191973, 'Makayla', 2007, 'F', 5420), +(191974, 'Avery', 2007, 'F', 5380), +(191975, 'Alexandra', 2007, 'F', 5350), +(191976, 'Jocelyn', 2007, 'F', 5289), +(191977, 'Audrey', 2007, 'F', 5248), +(191978, 'Riley', 2007, 'F', 5207), +(191979, 'Maria', 2007, 'F', 5116), +(191980, 'Kimberly', 2007, 'F', 5098), +(191981, 'Evelyn', 2007, 'F', 5050), +(191982, 'Zoe', 2007, 'F', 4931), +(191983, 'Brooklyn', 2007, 'F', 4882), +(191984, 'Angelina', 2007, 'F', 4848), +(191985, 'Rachel', 2007, 'F', 4818), +(191986, 'Andrea', 2007, 'F', 4796), +(191987, 'Madeline', 2007, 'F', 4701), +(191988, 'Maya', 2007, 'F', 4699), +(191989, 'Kylie', 2007, 'F', 4655), +(191990, 'Jennifer', 2007, 'F', 4648), +(191991, 'Mackenzie', 2007, 'F', 4621), +(191992, 'Claire', 2007, 'F', 4611), +(191993, 'Leah', 2007, 'F', 4544), +(191994, 'Gabrielle', 2007, 'F', 4542), +(191995, 'Aubrey', 2007, 'F', 4504), +(191996, 'Arianna', 2007, 'F', 4477), +(191997, 'Vanessa', 2007, 'F', 4440), +(191998, 'Trinity', 2007, 'F', 4368), +(191999, 'Ariana', 2007, 'F', 4322), +(192000, 'Faith', 2007, 'F', 4296), +(192001, 'Katelyn', 2007, 'F', 4250), +(192002, 'Haley', 2007, 'F', 4195), +(192003, 'Amelia', 2007, 'F', 4191), +(192004, 'Megan', 2007, 'F', 4121), +(192005, 'Isabelle', 2007, 'F', 4102), +(192006, 'Sara', 2007, 'F', 4016), +(192007, 'Melanie', 2007, 'F', 3995), +(192008, 'Sophie', 2007, 'F', 3985), +(192009, 'Aaliyah', 2007, 'F', 3951), +(192010, 'Bailey', 2007, 'F', 3928), +(192011, 'Layla', 2007, 'F', 3900), +(192012, 'Nicole', 2007, 'F', 3863), +(192013, 'Isabel', 2007, 'F', 3861), +(192014, 'Stephanie', 2007, 'F', 3804), +(192015, 'Paige', 2007, 'F', 3790), +(192016, 'Gianna', 2007, 'F', 3712), +(192017, 'Autumn', 2007, 'F', 3710), +(192018, 'Mariah', 2007, 'F', 3701), +(192019, 'Mary', 2007, 'F', 3673), +(192020, 'Michelle', 2007, 'F', 3592), +(192021, 'Jada', 2007, 'F', 3569), +(192022, 'Gracie', 2007, 'F', 3474), +(192023, 'Molly', 2007, 'F', 3413), +(192024, 'Valeria', 2007, 'F', 3410), +(192025, 'Caroline', 2007, 'F', 3404), +(192026, 'Charlotte', 2007, 'F', 3326), +(192027, 'Jordan', 2007, 'F', 3326), +(192028, 'Mya', 2007, 'F', 3320), +(192029, 'Jenna', 2007, 'F', 3301), +(192030, 'Madelyn', 2007, 'F', 3214), +(192031, 'Rebecca', 2007, 'F', 3212), +(192032, 'Diana', 2007, 'F', 3181), +(192033, 'Sadie', 2007, 'F', 3174), +(192034, 'Daniela', 2007, 'F', 3075), +(192035, 'Natalia', 2007, 'F', 3069), +(192036, 'Kennedy', 2007, 'F', 3052), +(192037, 'Amanda', 2007, 'F', 3038), +(192038, 'Zoey', 2007, 'F', 3031), +(192039, 'Jade', 2007, 'F', 3029), +(192040, 'Katie', 2007, 'F', 2986), +(192041, 'Adriana', 2007, 'F', 2924), +(192042, 'Eva', 2007, 'F', 2893), +(192043, 'Ruby', 2007, 'F', 2893), +(192044, 'Gabriela', 2007, 'F', 2857), +(192045, 'Amy', 2007, 'F', 2827), +(192046, 'Briana', 2007, 'F', 2823), +(192047, 'Naomi', 2007, 'F', 2779), +(192048, 'Peyton', 2007, 'F', 2774), +(192049, 'Danielle', 2007, 'F', 2772), +(192050, 'Lydia', 2007, 'F', 2764), +(192051, 'Angela', 2007, 'F', 2749), +(192052, 'Serenity', 2007, 'F', 2731), +(192053, 'Leslie', 2007, 'F', 2690), +(192054, 'Keira', 2007, 'F', 2674), +(192055, 'Camila', 2007, 'F', 2660), +(192056, 'Rylee', 2007, 'F', 2625), +(192057, 'Jayla', 2007, 'F', 2624), +(192058, 'Jacqueline', 2007, 'F', 2620), +(192059, 'Marissa', 2007, 'F', 2618), +(192060, 'Giselle', 2007, 'F', 2596), +(192061, 'Lucy', 2007, 'F', 2568), +(192062, 'Kate', 2007, 'F', 2550), +(192063, 'Melissa', 2007, 'F', 2500), +(192064, 'Breanna', 2007, 'F', 2487), +(192065, 'Genesis', 2007, 'F', 2485), +(192066, 'Jordyn', 2007, 'F', 2485), +(192067, 'Erin', 2007, 'F', 2474), +(192068, 'Catherine', 2007, 'F', 2468), +(192069, 'Alana', 2007, 'F', 2456), +(192070, 'Valerie', 2007, 'F', 2423), +(192071, 'Amber', 2007, 'F', 2402), +(192072, 'Lilly', 2007, 'F', 2399), +(192073, 'Cheyenne', 2007, 'F', 2364), +(192074, 'Laila', 2007, 'F', 2363), +(192075, 'Shelby', 2007, 'F', 2350), +(192076, 'Reese', 2007, 'F', 2345), +(192077, 'Liliana', 2007, 'F', 2317), +(192078, 'Angel', 2007, 'F', 2292), +(192079, 'Payton', 2007, 'F', 2280), +(192080, 'Miranda', 2007, 'F', 2269), +(192081, 'Ashlyn', 2007, 'F', 2260), +(192082, 'Reagan', 2007, 'F', 2259), +(192083, 'Kylee', 2007, 'F', 2253), +(192084, 'Bella', 2007, 'F', 2249), +(192085, 'Summer', 2007, 'F', 2249), +(192086, 'Mckenzie', 2007, 'F', 2225), +(192087, 'Juliana', 2007, 'F', 2223), +(192088, 'Ana', 2007, 'F', 2221), +(192089, 'Kathryn', 2007, 'F', 2208), +(192090, 'Alexandria', 2007, 'F', 2196), +(192091, 'Karen', 2007, 'F', 2171), +(192092, 'Kendall', 2007, 'F', 2163), +(192093, 'Daisy', 2007, 'F', 2157), +(192094, 'Sierra', 2007, 'F', 2107), +(192095, 'Adrianna', 2007, 'F', 2075), +(192096, 'Sienna', 2007, 'F', 2075), +(192097, 'Skylar', 2007, 'F', 2054), +(192098, 'Jayden', 2007, 'F', 2039), +(192099, 'Margaret', 2007, 'F', 2024), +(192100, 'Christina', 2007, 'F', 2018), +(192101, 'Ellie', 2007, 'F', 2010), +(192102, 'Bianca', 2007, 'F', 1975), +(192103, 'Mariana', 2007, 'F', 1974), +(192104, 'Alicia', 2007, 'F', 1947), +(192105, 'Alexia', 2007, 'F', 1941), +(192106, 'Makenzie', 2007, 'F', 1938), +(192107, 'Maggie', 2007, 'F', 1870), +(192108, 'Mikayla', 2007, 'F', 1851), +(192109, 'Laura', 2007, 'F', 1838), +(192110, 'Alondra', 2007, 'F', 1836), +(192111, 'Jazmin', 2007, 'F', 1831), +(192112, 'Jillian', 2007, 'F', 1786), +(192113, 'Julianna', 2007, 'F', 1784), +(192114, 'Ariel', 2007, 'F', 1777), +(192115, 'Kyra', 2007, 'F', 1758), +(192116, 'Tessa', 2007, 'F', 1752), +(192117, 'Esmeralda', 2007, 'F', 1742), +(192118, 'Elena', 2007, 'F', 1741), +(192119, 'Alina', 2007, 'F', 1735), +(192120, 'Brooklynn', 2007, 'F', 1735), +(192121, 'Hayden', 2007, 'F', 1734), +(192122, 'Annabelle', 2007, 'F', 1726), +(192123, 'Sabrina', 2007, 'F', 1725), +(192124, 'Nadia', 2007, 'F', 1719), +(192125, 'Cadence', 2007, 'F', 1707), +(192126, 'Kelsey', 2007, 'F', 1698), +(192127, 'Kendra', 2007, 'F', 1698), +(192128, 'Amaya', 2007, 'F', 1696), +(192129, 'Delaney', 2007, 'F', 1688), +(192130, 'Aniyah', 2007, 'F', 1685), +(192131, 'Jasmin', 2007, 'F', 1685), +(192132, 'Hope', 2007, 'F', 1681), +(192133, 'Cassidy', 2007, 'F', 1652), +(192134, 'Alivia', 2007, 'F', 1646), +(192135, 'Chelsea', 2007, 'F', 1640), +(192136, 'Vivian', 2007, 'F', 1639), +(192137, 'Tiffany', 2007, 'F', 1619), +(192138, 'Kiara', 2007, 'F', 1618), +(192139, 'Caitlyn', 2007, 'F', 1610), +(192140, 'Aliyah', 2007, 'F', 1609), +(192141, 'Camryn', 2007, 'F', 1595), +(192142, 'Crystal', 2007, 'F', 1594), +(192143, 'Karina', 2007, 'F', 1588), +(192144, 'Scarlett', 2007, 'F', 1581), +(192145, 'Karla', 2007, 'F', 1580), +(192146, 'Joselyn', 2007, 'F', 1577), +(192147, 'Abby', 2007, 'F', 1576), +(192148, 'Kelly', 2007, 'F', 1568), +(192149, 'Josephine', 2007, 'F', 1562), +(192150, 'Elise', 2007, 'F', 1557), +(192151, 'Lindsey', 2007, 'F', 1553), +(192152, 'Mckenna', 2007, 'F', 1553), +(192153, 'Clara', 2007, 'F', 1545), +(192154, 'Alaina', 2007, 'F', 1538), +(192155, 'Violet', 2007, 'F', 1535), +(192156, 'Caitlin', 2007, 'F', 1527), +(192157, 'Kyla', 2007, 'F', 1527), +(192158, 'Courtney', 2007, 'F', 1514), +(192159, 'Angelica', 2007, 'F', 1512), +(192160, 'Fatima', 2007, 'F', 1512), +(192161, 'Julissa', 2007, 'F', 1500), +(192162, 'Izabella', 2007, 'F', 1494), +(192163, 'Haylee', 2007, 'F', 1492), +(192164, 'Allie', 2007, 'F', 1486), +(192165, 'Dakota', 2007, 'F', 1484), +(192166, 'Piper', 2007, 'F', 1480), +(192167, 'Veronica', 2007, 'F', 1476), +(192168, 'Nora', 2007, 'F', 1473), +(192169, 'Stella', 2007, 'F', 1461), +(192170, 'Makenna', 2007, 'F', 1459), +(192171, 'Jazmine', 2007, 'F', 1430), +(192172, 'Savanna', 2007, 'F', 1412), +(192173, 'Mallory', 2007, 'F', 1405), +(192174, 'Eliana', 2007, 'F', 1399), +(192175, 'Kayleigh', 2007, 'F', 1394), +(192176, 'Jamie', 2007, 'F', 1391), +(192177, 'Leila', 2007, 'F', 1390), +(192178, 'Joanna', 2007, 'F', 1389), +(192179, 'Addyson', 2007, 'F', 1381), +(192180, 'Alejandra', 2007, 'F', 1373), +(192181, 'Erica', 2007, 'F', 1364), +(192182, 'Eden', 2007, 'F', 1363), +(192183, 'Ciara', 2007, 'F', 1361), +(192184, 'Callie', 2007, 'F', 1357), +(192185, 'Lila', 2007, 'F', 1356), +(192186, 'Cassandra', 2007, 'F', 1326), +(192187, 'Carly', 2007, 'F', 1321), +(192188, 'Jayda', 2007, 'F', 1301), +(192189, 'Heaven', 2007, 'F', 1296), +(192190, 'Dulce', 2007, 'F', 1283), +(192191, 'Erika', 2007, 'F', 1278), +(192192, 'Nina', 2007, 'F', 1270), +(192193, 'Aniya', 2007, 'F', 1269), +(192194, 'Eleanor', 2007, 'F', 1268), +(192195, 'Kira', 2007, 'F', 1266), +(192196, 'Allyson', 2007, 'F', 1261), +(192197, 'Lola', 2007, 'F', 1261), +(192198, 'Ashlynn', 2007, 'F', 1247), +(192199, 'Esther', 2007, 'F', 1247), +(192200, 'Alayna', 2007, 'F', 1245), +(192201, 'Cecilia', 2007, 'F', 1242), +(192202, 'Carmen', 2007, 'F', 1241), +(192203, 'Kamryn', 2007, 'F', 1236), +(192204, 'Miley', 2007, 'F', 1232), +(192205, 'Cynthia', 2007, 'F', 1231), +(192206, 'Brenda', 2007, 'F', 1230), +(192207, 'Macy', 2007, 'F', 1223), +(192208, 'Guadalupe', 2007, 'F', 1220), +(192209, 'Katelynn', 2007, 'F', 1204), +(192210, 'London', 2007, 'F', 1194), +(192211, 'Leilani', 2007, 'F', 1187), +(192212, 'Monica', 2007, 'F', 1185), +(192213, 'Kailey', 2007, 'F', 1178), +(192214, 'Kara', 2007, 'F', 1170), +(192215, 'Alison', 2007, 'F', 1169), +(192216, 'Daniella', 2007, 'F', 1168), +(192217, 'Bethany', 2007, 'F', 1164), +(192218, 'Madeleine', 2007, 'F', 1162), +(192219, 'Kiera', 2007, 'F', 1147), +(192220, 'Melody', 2007, 'F', 1143), +(192221, 'Miriam', 2007, 'F', 1143), +(192222, 'Georgia', 2007, 'F', 1141), +(192223, 'Delilah', 2007, 'F', 1135), +(192224, 'Lizbeth', 2007, 'F', 1132), +(192225, 'Josie', 2007, 'F', 1129), +(192226, 'Kaylie', 2007, 'F', 1128), +(192227, 'Ivy', 2007, 'F', 1126), +(192228, 'Ryleigh', 2007, 'F', 1123), +(192229, 'Heidi', 2007, 'F', 1120), +(192230, 'Camille', 2007, 'F', 1118), +(192231, 'Julie', 2007, 'F', 1118), +(192232, 'Danica', 2007, 'F', 1107), +(192233, 'Hayley', 2007, 'F', 1107), +(192234, 'Cameron', 2007, 'F', 1101), +(192235, 'Rebekah', 2007, 'F', 1101), +(192236, 'April', 2007, 'F', 1091), +(192237, 'Lucia', 2007, 'F', 1089), +(192238, 'Emerson', 2007, 'F', 1079), +(192239, 'Harmony', 2007, 'F', 1074), +(192240, 'Anastasia', 2007, 'F', 1072), +(192241, 'Aurora', 2007, 'F', 1066), +(192242, 'Iris', 2007, 'F', 1066), +(192243, 'Lindsay', 2007, 'F', 1066), +(192244, 'Jadyn', 2007, 'F', 1063), +(192245, 'Aubree', 2007, 'F', 1056), +(192246, 'Selena', 2007, 'F', 1053), +(192247, 'Tatiana', 2007, 'F', 1043), +(192248, 'Hanna', 2007, 'F', 1034), +(192249, 'Asia', 2007, 'F', 1028), +(192250, 'Emely', 2007, 'F', 1025), +(192251, 'Kaydence', 2007, 'F', 1023), +(192252, 'Shayla', 2007, 'F', 1022), +(192253, 'Paola', 2007, 'F', 1020), +(192254, 'Carolina', 2007, 'F', 1018), +(192255, 'Desiree', 2007, 'F', 1018), +(192256, 'Anahi', 2007, 'F', 1017), +(192257, 'Angie', 2007, 'F', 1013), +(192258, 'Alissa', 2007, 'F', 1011), +(192259, 'Eliza', 2007, 'F', 1007), +(192260, 'Lexi', 2007, 'F', 998), +(192261, 'Jaden', 2007, 'F', 993), +(192262, 'Tatum', 2007, 'F', 989), +(192263, 'Phoebe', 2007, 'F', 988), +(192264, 'Kaelyn', 2007, 'F', 986), +(192265, 'Holly', 2007, 'F', 976), +(192266, 'Presley', 2007, 'F', 970), +(192267, 'Michaela', 2007, 'F', 969), +(192268, 'Rylie', 2007, 'F', 968), +(192269, 'Kyleigh', 2007, 'F', 965), +(192270, 'Genevieve', 2007, 'F', 962), +(192271, 'Ruth', 2007, 'F', 956), +(192272, 'Meredith', 2007, 'F', 952), +(192273, 'Alice', 2007, 'F', 949), +(192274, 'Rose', 2007, 'F', 938), +(192275, 'Helen', 2007, 'F', 931), +(192276, 'Brynn', 2007, 'F', 925), +(192277, 'Sasha', 2007, 'F', 924), +(192278, 'Fiona', 2007, 'F', 918), +(192279, 'Cora', 2007, 'F', 917), +(192280, 'Brittany', 2007, 'F', 913), +(192281, 'Celeste', 2007, 'F', 912), +(192282, 'Diamond', 2007, 'F', 911), +(192283, 'Bridget', 2007, 'F', 908), +(192284, 'Hazel', 2007, 'F', 906), +(192285, 'Yasmin', 2007, 'F', 905), +(192286, 'Jaelyn', 2007, 'F', 904), +(192287, 'Madyson', 2007, 'F', 902), +(192288, 'Nancy', 2007, 'F', 900), +(192289, 'Kimora', 2007, 'F', 898), +(192290, 'Anya', 2007, 'F', 895), +(192291, 'Itzel', 2007, 'F', 892), +(192292, 'Janiya', 2007, 'F', 888), +(192293, 'Lyla', 2007, 'F', 887), +(192294, 'Brenna', 2007, 'F', 885), +(192295, 'Kiley', 2007, 'F', 885), +(192296, 'Ximena', 2007, 'F', 884), +(192297, 'Denise', 2007, 'F', 881), +(192298, 'Madalyn', 2007, 'F', 880), +(192299, 'Meghan', 2007, 'F', 875), +(192300, 'Priscilla', 2007, 'F', 875), +(192301, 'Annika', 2007, 'F', 873), +(192302, 'Skyler', 2007, 'F', 873), +(192303, 'Maddison', 2007, 'F', 870), +(192304, 'Nayeli', 2007, 'F', 868), +(192305, 'Kaylin', 2007, 'F', 866), +(192306, 'Wendy', 2007, 'F', 864), +(192307, 'Paris', 2007, 'F', 863), +(192308, 'Ayla', 2007, 'F', 862), +(192309, 'Madilyn', 2007, 'F', 859), +(192310, 'Alessandra', 2007, 'F', 857), +(192311, 'Kadence', 2007, 'F', 855), +(192312, 'Madisyn', 2007, 'F', 849), +(192313, 'Natasha', 2007, 'F', 847), +(192314, 'Imani', 2007, 'F', 843), +(192315, 'Adeline', 2007, 'F', 839), +(192316, 'Marley', 2007, 'F', 839), +(192317, 'Talia', 2007, 'F', 839), +(192318, 'Lacey', 2007, 'F', 835), +(192319, 'Rachael', 2007, 'F', 834), +(192320, 'Valentina', 2007, 'F', 828), +(192321, 'Baylee', 2007, 'F', 827), +(192322, 'Estrella', 2007, 'F', 821), +(192323, 'Cindy', 2007, 'F', 819), +(192324, 'Sarai', 2007, 'F', 818), +(192325, 'Janelle', 2007, 'F', 817), +(192326, 'Malia', 2007, 'F', 816), +(192327, 'Nia', 2007, 'F', 816), +(192328, 'Raegan', 2007, 'F', 816), +(192329, 'Claudia', 2007, 'F', 812), +(192330, 'Lana', 2007, 'F', 812), +(192331, 'Serena', 2007, 'F', 809), +(192332, 'Perla', 2007, 'F', 803), +(192333, 'Sandra', 2007, 'F', 799), +(192334, 'Teagan', 2007, 'F', 796), +(192335, 'Penelope', 2007, 'F', 794), +(192336, 'Heather', 2007, 'F', 793), +(192337, 'Marisol', 2007, 'F', 792), +(192338, 'Brielle', 2007, 'F', 791), +(192339, 'Emilee', 2007, 'F', 791), +(192340, 'Nataly', 2007, 'F', 789), +(192341, 'Rihanna', 2007, 'F', 788), +(192342, 'Johanna', 2007, 'F', 785), +(192343, 'Lilliana', 2007, 'F', 785), +(192344, 'Lilian', 2007, 'F', 784), +(192345, 'Emilia', 2007, 'F', 780), +(192346, 'Annie', 2007, 'F', 779), +(192347, 'Kaitlin', 2007, 'F', 779), +(192348, 'Kathleen', 2007, 'F', 779), +(192349, 'Melany', 2007, 'F', 776), +(192350, 'Jane', 2007, 'F', 774), +(192351, 'Angelique', 2007, 'F', 769), +(192352, 'Haylie', 2007, 'F', 769), +(192353, 'Kristen', 2007, 'F', 768), +(192354, 'Lesly', 2007, 'F', 766), +(192355, 'Willow', 2007, 'F', 766), +(192356, 'Elaina', 2007, 'F', 761), +(192357, 'Jaiden', 2007, 'F', 759), +(192358, 'Janiyah', 2007, 'F', 756), +(192359, 'Jazlyn', 2007, 'F', 755), +(192360, 'Ashlee', 2007, 'F', 747), +(192361, 'Kiana', 2007, 'F', 742), +(192362, 'Rosa', 2007, 'F', 741), +(192363, 'Shannon', 2007, 'F', 741), +(192364, 'Abril', 2007, 'F', 737), +(192365, 'Athena', 2007, 'F', 727), +(192366, 'Harper', 2007, 'F', 727), +(192367, 'Dana', 2007, 'F', 726), +(192368, 'Hailee', 2007, 'F', 726), +(192369, 'Kirsten', 2007, 'F', 726), +(192370, 'Patricia', 2007, 'F', 725), +(192371, 'Kristina', 2007, 'F', 723), +(192372, 'Nyla', 2007, 'F', 718), +(192373, 'Macie', 2007, 'F', 716), +(192374, 'Miracle', 2007, 'F', 715), +(192375, 'Bryanna', 2007, 'F', 714), +(192376, 'Gloria', 2007, 'F', 713), +(192377, 'Lena', 2007, 'F', 713), +(192378, 'Rowan', 2007, 'F', 710), +(192379, 'Danika', 2007, 'F', 709), +(192380, 'Luna', 2007, 'F', 709), +(192381, 'Logan', 2007, 'F', 707), +(192382, 'Samara', 2007, 'F', 706), +(192383, 'Ryan', 2007, 'F', 705), +(192384, 'Ainsley', 2007, 'F', 703), +(192385, 'America', 2007, 'F', 700), +(192386, 'Evangeline', 2007, 'F', 700), +(192387, 'Fernanda', 2007, 'F', 699), +(192388, 'Marina', 2007, 'F', 698), +(192389, 'Casey', 2007, 'F', 696), +(192390, 'Anaya', 2007, 'F', 693), +(192391, 'Taryn', 2007, 'F', 693), +(192392, 'Alanna', 2007, 'F', 691), +(192393, 'Dayanara', 2007, 'F', 690), +(192394, 'Hadley', 2007, 'F', 687), +(192395, 'Norah', 2007, 'F', 687), +(192396, 'Sage', 2007, 'F', 682), +(192397, 'Francesca', 2007, 'F', 680), +(192398, 'Madelynn', 2007, 'F', 680), +(192399, 'Yesenia', 2007, 'F', 679), +(192400, 'Skye', 2007, 'F', 677), +(192401, 'Yoselin', 2007, 'F', 677), +(192402, 'Elle', 2007, 'F', 676), +(192403, 'Lauryn', 2007, 'F', 674), +(192404, 'Melina', 2007, 'F', 674), +(192405, 'Amari', 2007, 'F', 673), +(192406, 'Tori', 2007, 'F', 673), +(192407, 'Kassidy', 2007, 'F', 672), +(192408, 'Amya', 2007, 'F', 670), +(192409, 'Cheyanne', 2007, 'F', 670), +(192410, 'Lillie', 2007, 'F', 669), +(192411, 'Harley', 2007, 'F', 668), +(192412, 'Sidney', 2007, 'F', 668), +(192413, 'Viviana', 2007, 'F', 668), +(192414, 'Kali', 2007, 'F', 667), +(192415, 'Kailyn', 2007, 'F', 663), +(192416, 'Cali', 2007, 'F', 662), +(192417, 'Mercedes', 2007, 'F', 661), +(192418, 'Linda', 2007, 'F', 659), +(192419, 'Paulina', 2007, 'F', 657), +(192420, 'Saniya', 2007, 'F', 654), +(192421, 'Abbigail', 2007, 'F', 652), +(192422, 'Kenzie', 2007, 'F', 651), +(192423, 'Kaitlynn', 2007, 'F', 649), +(192424, 'Raquel', 2007, 'F', 649), +(192425, 'Noelle', 2007, 'F', 648), +(192426, 'Aileen', 2007, 'F', 645), +(192427, 'Clarissa', 2007, 'F', 644), +(192428, 'Kassandra', 2007, 'F', 644), +(192429, 'Lexie', 2007, 'F', 637), +(192430, 'Isabela', 2007, 'F', 634), +(192431, 'Aubrie', 2007, 'F', 632), +(192432, 'Raven', 2007, 'F', 631), +(192433, 'Bailee', 2007, 'F', 630), +(192434, 'Kayden', 2007, 'F', 627), +(192435, 'Jaqueline', 2007, 'F', 626), +(192436, 'Elisabeth', 2007, 'F', 623), +(192437, 'Halle', 2007, 'F', 617), +(192438, 'Christine', 2007, 'F', 616), +(192439, 'Jenny', 2007, 'F', 616), +(192440, 'Krystal', 2007, 'F', 615), +(192441, 'Anika', 2007, 'F', 614), +(192442, 'Marisa', 2007, 'F', 612), +(192443, 'Tania', 2007, 'F', 609), +(192444, 'Anne', 2007, 'F', 608), +(192445, 'Juliet', 2007, 'F', 608), +(192446, 'Amira', 2007, 'F', 603), +(192447, 'Joy', 2007, 'F', 602), +(192448, 'Marilyn', 2007, 'F', 598), +(192449, 'Hallie', 2007, 'F', 597), +(192450, 'Alyson', 2007, 'F', 595), +(192451, 'Jimena', 2007, 'F', 595), +(192452, 'Simone', 2007, 'F', 592), +(192453, 'Tamia', 2007, 'F', 591), +(192454, 'Maritza', 2007, 'F', 590), +(192455, 'Marlene', 2007, 'F', 590), +(192456, 'Ayanna', 2007, 'F', 589), +(192457, 'Laney', 2007, 'F', 588), +(192458, 'Lia', 2007, 'F', 588), +(192459, 'Sylvia', 2007, 'F', 587), +(192460, 'Kenya', 2007, 'F', 585), +(192461, 'Helena', 2007, 'F', 584), +(192462, 'Jaida', 2007, 'F', 583), +(192463, 'Cristina', 2007, 'F', 582), +(192464, 'Tara', 2007, 'F', 580), +(192465, 'Cara', 2007, 'F', 579), +(192466, 'Carla', 2007, 'F', 579), +(192467, 'Dayana', 2007, 'F', 575), +(192468, 'Virginia', 2007, 'F', 571), +(192469, 'Kaleigh', 2007, 'F', 570), +(192470, 'Jaylynn', 2007, 'F', 569), +(192471, 'Amiyah', 2007, 'F', 568), +(192472, 'Teresa', 2007, 'F', 563), +(192473, 'Carley', 2007, 'F', 561), +(192474, 'Regan', 2007, 'F', 558), +(192475, 'Deanna', 2007, 'F', 556), +(192476, 'Lyric', 2007, 'F', 555), +(192477, 'Elisa', 2007, 'F', 553), +(192478, 'Isis', 2007, 'F', 553), +(192479, 'Alisha', 2007, 'F', 552), +(192480, 'Arely', 2007, 'F', 552), +(192481, 'Tabitha', 2007, 'F', 550), +(192482, 'Marie', 2007, 'F', 549), +(192483, 'Janessa', 2007, 'F', 547), +(192484, 'Kennedi', 2007, 'F', 545), +(192485, 'Mylee', 2007, 'F', 542), +(192486, 'Tiana', 2007, 'F', 541), +(192487, 'Jaylin', 2007, 'F', 539), +(192488, 'Jaidyn', 2007, 'F', 538), +(192489, 'Whitney', 2007, 'F', 533), +(192490, 'Annabella', 2007, 'F', 531), +(192491, 'Britney', 2007, 'F', 531), +(192492, 'Aria', 2007, 'F', 529), +(192493, 'Saniyah', 2007, 'F', 527), +(192494, 'Zoie', 2007, 'F', 527), +(192495, 'Shania', 2007, 'F', 526), +(192496, 'Justice', 2007, 'F', 525), +(192497, 'Lilah', 2007, 'F', 525), +(192498, 'Nathalie', 2007, 'F', 525), +(192499, 'Lisa', 2007, 'F', 524), +(192500, 'Zion', 2007, 'F', 524), +(192501, 'Quinn', 2007, 'F', 523), +(192502, 'Amara', 2007, 'F', 521), +(192503, 'Martha', 2007, 'F', 521), +(192504, 'Emery', 2007, 'F', 520), +(192505, 'Regina', 2007, 'F', 520), +(192506, 'Jolie', 2007, 'F', 518), +(192507, 'Haven', 2007, 'F', 514), +(192508, 'Pamela', 2007, 'F', 514), +(192509, 'Daphne', 2007, 'F', 512), +(192510, 'Ellen', 2007, 'F', 512), +(192511, 'Kailee', 2007, 'F', 512), +(192512, 'Jordin', 2007, 'F', 511), +(192513, 'Emilie', 2007, 'F', 509), +(192514, 'Juliette', 2007, 'F', 508), +(192515, 'Kiersten', 2007, 'F', 506), +(192516, 'Larissa', 2007, 'F', 506), +(192517, 'Parker', 2007, 'F', 505), +(192518, 'Yazmin', 2007, 'F', 505), +(192519, 'Aylin', 2007, 'F', 504), +(192520, 'Katrina', 2007, 'F', 504), +(192521, 'Yareli', 2007, 'F', 504), +(192522, 'Yadira', 2007, 'F', 503), +(192523, 'Jaelynn', 2007, 'F', 502), +(192524, 'Reyna', 2007, 'F', 502), +(192525, 'Jaslene', 2007, 'F', 501), +(192526, 'Kaylynn', 2007, 'F', 500), +(192527, 'Precious', 2007, 'F', 500), +(192528, 'Angeline', 2007, 'F', 498), +(192529, 'Luz', 2007, 'F', 497), +(192530, 'Carolyn', 2007, 'F', 495), +(192531, 'Jessie', 2007, 'F', 495), +(192532, 'Rhianna', 2007, 'F', 495), +(192533, 'Zariah', 2007, 'F', 495), +(192534, 'Kasey', 2007, 'F', 493), +(192535, 'Arielle', 2007, 'F', 492), +(192536, 'Aspen', 2007, 'F', 492), +(192537, 'Maia', 2007, 'F', 492), +(192538, 'Addisyn', 2007, 'F', 491), +(192539, 'Paisley', 2007, 'F', 490), +(192540, 'Myah', 2007, 'F', 488), +(192541, 'Aryanna', 2007, 'F', 487), +(192542, 'Aleena', 2007, 'F', 485), +(192543, 'Eve', 2007, 'F', 483), +(192544, 'Carlie', 2007, 'F', 482), +(192545, 'Maeve', 2007, 'F', 480), +(192546, 'Natalee', 2007, 'F', 480), +(192547, 'Mckayla', 2007, 'F', 478), +(192548, 'Shyanne', 2007, 'F', 478), +(192549, 'Carissa', 2007, 'F', 477), +(192550, 'Haleigh', 2007, 'F', 477), +(192551, 'Ingrid', 2007, 'F', 477), +(192552, 'Barbara', 2007, 'F', 475), +(192553, 'Sherlyn', 2007, 'F', 475), +(192554, 'Alexus', 2007, 'F', 474), +(192555, 'Clare', 2007, 'F', 473), +(192556, 'Skyla', 2007, 'F', 473), +(192557, 'Belinda', 2007, 'F', 472), +(192558, 'Destinee', 2007, 'F', 471), +(192559, 'Liberty', 2007, 'F', 469), +(192560, 'Abbie', 2007, 'F', 468), +(192561, 'Aiyana', 2007, 'F', 467), +(192562, 'Irene', 2007, 'F', 467), +(192563, 'Kaia', 2007, 'F', 465), +(192564, 'Giana', 2007, 'F', 463), +(192565, 'Aleah', 2007, 'F', 462), +(192566, 'Cherish', 2007, 'F', 461), +(192567, 'Kaylyn', 2007, 'F', 461), +(192568, 'Noemi', 2007, 'F', 461), +(192569, 'Ada', 2007, 'F', 460), +(192570, 'Karlee', 2007, 'F', 460), +(192571, 'Sonia', 2007, 'F', 460), +(192572, 'Susan', 2007, 'F', 460), +(192573, 'Danna', 2007, 'F', 458), +(192574, 'Adyson', 2007, 'F', 457), +(192575, 'Amani', 2007, 'F', 456), +(192576, 'Arabella', 2007, 'F', 456), +(192577, 'Gwendolyn', 2007, 'F', 455), +(192578, 'Paula', 2007, 'F', 455), +(192579, 'Judith', 2007, 'F', 453), +(192580, 'Macey', 2007, 'F', 453), +(192581, 'Patience', 2007, 'F', 453), +(192582, 'Iliana', 2007, 'F', 452), +(192583, 'Siena', 2007, 'F', 452), +(192584, 'Gia', 2007, 'F', 449), +(192585, 'Gisselle', 2007, 'F', 449), +(192586, 'Janet', 2007, 'F', 449), +(192587, 'Brylee', 2007, 'F', 448), +(192588, 'Karissa', 2007, 'F', 447), +(192589, 'Khloe', 2007, 'F', 446), +(192590, 'Mikaela', 2007, 'F', 446), +(192591, 'Kierra', 2007, 'F', 445), +(192592, 'Carlee', 2007, 'F', 444), +(192593, 'Jazmyn', 2007, 'F', 442), +(192594, 'Madalynn', 2007, 'F', 442), +(192595, 'Lainey', 2007, 'F', 440), +(192596, 'Sanaa', 2007, 'F', 438), +(192597, 'Araceli', 2007, 'F', 437), +(192598, 'Charity', 2007, 'F', 436), +(192599, 'Jacquelyn', 2007, 'F', 435), +(192600, 'Annalise', 2007, 'F', 434), +(192601, 'Greta', 2007, 'F', 434), +(192602, 'Janae', 2007, 'F', 434), +(192603, 'Corinne', 2007, 'F', 433), +(192604, 'Alena', 2007, 'F', 432), +(192605, 'Deja', 2007, 'F', 432), +(192606, 'Damaris', 2007, 'F', 431), +(192607, 'Lea', 2007, 'F', 431), +(192608, 'Lorelei', 2007, 'F', 430), +(192609, 'India', 2007, 'F', 427), +(192610, 'Shaniya', 2007, 'F', 427), +(192611, 'Kaya', 2007, 'F', 426), +(192612, 'Liana', 2007, 'F', 426), +(192613, 'Yasmine', 2007, 'F', 426), +(192614, 'Cristal', 2007, 'F', 425), +(192615, 'Journey', 2007, 'F', 422), +(192616, 'Mariam', 2007, 'F', 422), +(192617, 'Kaliyah', 2007, 'F', 421), +(192618, 'Stacy', 2007, 'F', 421), +(192619, 'Dylan', 2007, 'F', 420), +(192620, 'Joslyn', 2007, 'F', 419), +(192621, 'Kallie', 2007, 'F', 419), +(192622, 'Aisha', 2007, 'F', 417), +(192623, 'Maci', 2007, 'F', 417), +(192624, 'Savanah', 2007, 'F', 417), +(192625, 'Ally', 2007, 'F', 416), +(192626, 'Tamara', 2007, 'F', 416), +(192627, 'Brisa', 2007, 'F', 415), +(192628, 'Jakayla', 2007, 'F', 415), +(192629, 'Ansley', 2007, 'F', 414), +(192630, 'Mayra', 2007, 'F', 414), +(192631, 'Sharon', 2007, 'F', 414), +(192632, 'Zaria', 2007, 'F', 414), +(192633, 'Alma', 2007, 'F', 413), +(192634, 'Kaley', 2007, 'F', 413), +(192635, 'Audrina', 2007, 'F', 412), +(192636, 'Felicity', 2007, 'F', 412), +(192637, 'Adelaide', 2007, 'F', 410), +(192638, 'Catalina', 2007, 'F', 410), +(192639, 'Renee', 2007, 'F', 409), +(192640, 'Rubi', 2007, 'F', 409), +(192641, 'Chaya', 2007, 'F', 408), +(192642, 'Phoenix', 2007, 'F', 408), +(192643, 'Zara', 2007, 'F', 408), +(192644, 'Elliana', 2007, 'F', 407), +(192645, 'Cierra', 2007, 'F', 406), +(192646, 'Elaine', 2007, 'F', 406), +(192647, 'Azul', 2007, 'F', 405), +(192648, 'Rosemary', 2007, 'F', 403), +(192649, 'Scarlet', 2007, 'F', 403), +(192650, 'Evelin', 2007, 'F', 401), +(192651, 'Jaliyah', 2007, 'F', 401), +(192652, 'Lilyana', 2007, 'F', 401), +(192653, 'Adison', 2007, 'F', 400), +(192654, 'Edith', 2007, 'F', 400), +(192655, 'Taliyah', 2007, 'F', 400), +(192656, 'Camilla', 2007, 'F', 399), +(192657, 'Keely', 2007, 'F', 399), +(192658, 'Jamya', 2007, 'F', 397), +(192659, 'Kelsie', 2007, 'F', 397), +(192660, 'Sariah', 2007, 'F', 396), +(192661, 'Aliya', 2007, 'F', 395), +(192662, 'Anabelle', 2007, 'F', 395), +(192663, 'Eileen', 2007, 'F', 395), +(192664, 'Laci', 2007, 'F', 394), +(192665, 'Tia', 2007, 'F', 393), +(192666, 'Campbell', 2007, 'F', 392), +(192667, 'Elsa', 2007, 'F', 392), +(192668, 'Giovanna', 2007, 'F', 392), +(192669, 'Kaila', 2007, 'F', 392), +(192670, 'Kamila', 2007, 'F', 392), +(192671, 'Tiara', 2007, 'F', 392), +(192672, 'Leanna', 2007, 'F', 391), +(192673, 'Marely', 2007, 'F', 391), +(192674, 'Amiya', 2007, 'F', 389), +(192675, 'Ashleigh', 2007, 'F', 389), +(192676, 'Elyse', 2007, 'F', 389), +(192677, 'Mara', 2007, 'F', 389), +(192678, 'Marianna', 2007, 'F', 389), +(192679, 'Adrienne', 2007, 'F', 388), +(192680, 'Jaylene', 2007, 'F', 388), +(192681, 'Joselin', 2007, 'F', 387), +(192682, 'Kinsley', 2007, 'F', 386), +(192683, 'Tianna', 2007, 'F', 386), +(192684, 'Dominique', 2007, 'F', 385), +(192685, 'Lorena', 2007, 'F', 385), +(192686, 'Mila', 2007, 'F', 385), +(192687, 'Amelie', 2007, 'F', 384), +(192688, 'Maliyah', 2007, 'F', 384), +(192689, 'Jaycee', 2007, 'F', 382), +(192690, 'Lucille', 2007, 'F', 380), +(192691, 'Meadow', 2007, 'F', 380), +(192692, 'Aryana', 2007, 'F', 379), +(192693, 'Ashly', 2007, 'F', 378), +(192694, 'Karlie', 2007, 'F', 378), +(192695, 'Micah', 2007, 'F', 377), +(192696, 'Theresa', 2007, 'F', 377), +(192697, 'Jaylyn', 2007, 'F', 376), +(192698, 'Maleah', 2007, 'F', 374), +(192699, 'Monique', 2007, 'F', 374), +(192700, 'Jayleen', 2007, 'F', 373), +(192701, 'Mollie', 2007, 'F', 373), +(192702, 'Monserrat', 2007, 'F', 373), +(192703, 'Emmalee', 2007, 'F', 372), +(192704, 'Deborah', 2007, 'F', 371), +(192705, 'Celia', 2007, 'F', 370), +(192706, 'Mariela', 2007, 'F', 370), +(192707, 'Hana', 2007, 'F', 369), +(192708, 'Ann', 2007, 'F', 368), +(192709, 'Cecelia', 2007, 'F', 367), +(192710, 'Charlie', 2007, 'F', 367), +(192711, 'Taniya', 2007, 'F', 367), +(192712, 'Gillian', 2007, 'F', 366), +(192713, 'Leyla', 2007, 'F', 366), +(192714, 'Shiloh', 2007, 'F', 366), +(192715, 'Cassie', 2007, 'F', 365), +(192716, 'Yuliana', 2007, 'F', 365), +(192717, 'Jewel', 2007, 'F', 364), +(192718, 'Marlee', 2007, 'F', 364), +(192719, 'Isabell', 2007, 'F', 363), +(192720, 'Mattie', 2007, 'F', 363), +(192721, 'Ryann', 2007, 'F', 362), +(192722, 'Stephany', 2007, 'F', 361), +(192723, 'Annabel', 2007, 'F', 360), +(192724, 'Ayana', 2007, 'F', 359), +(192725, 'Miah', 2007, 'F', 359), +(192726, 'Nathaly', 2007, 'F', 359), +(192727, 'Amina', 2007, 'F', 357), +(192728, 'Brittney', 2007, 'F', 356), +(192729, 'Dahlia', 2007, 'F', 356), +(192730, 'Litzy', 2007, 'F', 356), +(192731, 'Madilynn', 2007, 'F', 356), +(192732, 'Evie', 2007, 'F', 355), +(192733, 'Gracelyn', 2007, 'F', 355), +(192734, 'Krista', 2007, 'F', 355), +(192735, 'Gina', 2007, 'F', 354), +(192736, 'Shaylee', 2007, 'F', 354), +(192737, 'Tanya', 2007, 'F', 354), +(192738, 'Kaiya', 2007, 'F', 353), +(192739, 'Kristin', 2007, 'F', 353), +(192740, 'Braelyn', 2007, 'F', 352), +(192741, 'Finley', 2007, 'F', 352), +(192742, 'Lesley', 2007, 'F', 352), +(192743, 'Jaylee', 2007, 'F', 351), +(192744, 'Thalia', 2007, 'F', 351), +(192745, 'Abbey', 2007, 'F', 349), +(192746, 'Esperanza', 2007, 'F', 349), +(192747, 'Salma', 2007, 'F', 349), +(192748, 'Shyla', 2007, 'F', 349), +(192749, 'Hailie', 2007, 'F', 348), +(192750, 'Saige', 2007, 'F', 348), +(192751, 'Averie', 2007, 'F', 347), +(192752, 'Chelsey', 2007, 'F', 347), +(192753, 'Frances', 2007, 'F', 347), +(192754, 'Frida', 2007, 'F', 347), +(192755, 'Luciana', 2007, 'F', 347), +(192756, 'Princess', 2007, 'F', 347), +(192757, 'Jaeda', 2007, 'F', 346), +(192758, 'Aracely', 2007, 'F', 345), +(192759, 'Selah', 2007, 'F', 344), +(192760, 'Aimee', 2007, 'F', 343), +(192761, 'Aliza', 2007, 'F', 343), +(192762, 'Kenna', 2007, 'F', 343), +(192763, 'Valery', 2007, 'F', 343), +(192764, 'Joyce', 2007, 'F', 341), +(192765, 'Xiomara', 2007, 'F', 341), +(192766, 'Jazlynn', 2007, 'F', 338), +(192767, 'Londyn', 2007, 'F', 338), +(192768, 'Julianne', 2007, 'F', 337), +(192769, 'Kayley', 2007, 'F', 337), +(192770, 'Akira', 2007, 'F', 336), +(192771, 'Giada', 2007, 'F', 336), +(192772, 'Shyann', 2007, 'F', 336), +(192773, 'Adelyn', 2007, 'F', 335), +(192774, 'Kaylen', 2007, 'F', 335), +(192775, 'Meagan', 2007, 'F', 335), +(192776, 'Carina', 2007, 'F', 334), +(192777, 'Jocelynn', 2007, 'F', 333), +(192778, 'Belen', 2007, 'F', 331), +(192779, 'Sydnee', 2007, 'F', 331), +(192780, 'Jacey', 2007, 'F', 330), +(192781, 'Lilianna', 2007, 'F', 330), +(192782, 'Rayna', 2007, 'F', 330), +(192783, 'Paloma', 2007, 'F', 329), +(192784, 'Shayna', 2007, 'F', 328), +(192785, 'Mylie', 2007, 'F', 327), +(192786, 'Keyla', 2007, 'F', 326), +(192787, 'Lizeth', 2007, 'F', 326), +(192788, 'Kinley', 2007, 'F', 325), +(192789, 'Karma', 2007, 'F', 324), +(192790, 'Magdalena', 2007, 'F', 324), +(192791, 'Marin', 2007, 'F', 324), +(192792, 'Libby', 2007, 'F', 323), +(192793, 'Myla', 2007, 'F', 322), +(192794, 'Lorelai', 2007, 'F', 321), +(192795, 'Alisa', 2007, 'F', 320), +(192796, 'Annette', 2007, 'F', 320), +(192797, 'Chasity', 2007, 'F', 320), +(192798, 'Jaylen', 2007, 'F', 320), +(192799, 'Alani', 2007, 'F', 319), +(192800, 'Ireland', 2007, 'F', 319), +(192801, 'Tyler', 2007, 'F', 319), +(192802, 'Kianna', 2007, 'F', 318), +(192803, 'Miya', 2007, 'F', 318), +(192804, 'Moriah', 2007, 'F', 318), +(192805, 'Noelia', 2007, 'F', 318), +(192806, 'Chanel', 2007, 'F', 317), +(192807, 'Adalyn', 2007, 'F', 316), +(192808, 'Gretchen', 2007, 'F', 316), +(192809, 'Briley', 2007, 'F', 315), +(192810, 'Elsie', 2007, 'F', 315), +(192811, 'Abigayle', 2007, 'F', 314), +(192812, 'Abagail', 2007, 'F', 313), +(192813, 'Taniyah', 2007, 'F', 313), +(192814, 'Brandy', 2007, 'F', 312), +(192815, 'Charlize', 2007, 'F', 312), +(192816, 'Dania', 2007, 'F', 312), +(192817, 'Janiah', 2007, 'F', 311), +(192818, 'Tess', 2007, 'F', 311), +(192819, 'Bria', 2007, 'F', 309), +(192820, 'Makaila', 2007, 'F', 309), +(192821, 'Beatrice', 2007, 'F', 308), +(192822, 'Breana', 2007, 'F', 308), +(192823, 'Neveah', 2007, 'F', 308), +(192824, 'Sarahi', 2007, 'F', 308), +(192825, 'Aliana', 2007, 'F', 307), +(192826, 'Lilia', 2007, 'F', 307), +(192827, 'Galilea', 2007, 'F', 305), +(192828, 'Giuliana', 2007, 'F', 305), +(192829, 'Karley', 2007, 'F', 305), +(192830, 'Naima', 2007, 'F', 305), +(192831, 'Anais', 2007, 'F', 303), +(192832, 'Makena', 2007, 'F', 303), +(192833, 'Maribel', 2007, 'F', 303), +(192834, 'Nyasia', 2007, 'F', 303), +(192835, 'Dalia', 2007, 'F', 302), +(192836, 'Jalynn', 2007, 'F', 302), +(192837, 'Kendal', 2007, 'F', 298), +(192838, 'Mariyah', 2007, 'F', 298), +(192839, 'Ashanti', 2007, 'F', 297), +(192840, 'Destini', 2007, 'F', 297), +(192841, 'Azaria', 2007, 'F', 296), +(192842, 'Johana', 2007, 'F', 296), +(192843, 'Areli', 2007, 'F', 295), +(192844, 'Dixie', 2007, 'F', 295), +(192845, 'Yaretzi', 2007, 'F', 295), +(192846, 'Maryam', 2007, 'F', 294), +(192847, 'Natalya', 2007, 'F', 294), +(192848, 'Kathy', 2007, 'F', 293), +(192849, 'Roselyn', 2007, 'F', 293), +(192850, 'Shea', 2007, 'F', 293), +(192851, 'Desirae', 2007, 'F', 292), +(192852, 'Justine', 2007, 'F', 292), +(192853, 'Tatyana', 2007, 'F', 292), +(192854, 'Maryjane', 2007, 'F', 291), +(192855, 'Zaniyah', 2007, 'F', 291), +(192856, 'Toni', 2007, 'F', 290), +(192857, 'Karli', 2007, 'F', 289), +(192858, 'Lara', 2007, 'F', 289), +(192859, 'Montana', 2007, 'F', 289), +(192860, 'Selina', 2007, 'F', 289), +(192861, 'Yuridia', 2007, 'F', 289), +(192862, 'Devyn', 2007, 'F', 288), +(192863, 'Laurel', 2007, 'F', 288), +(192864, 'Leia', 2007, 'F', 288), +(192865, 'Raina', 2007, 'F', 288), +(192866, 'Reina', 2007, 'F', 288), +(192867, 'Rhiannon', 2007, 'F', 288), +(192868, 'Essence', 2007, 'F', 287), +(192869, 'Kaylah', 2007, 'F', 287), +(192870, 'Kenia', 2007, 'F', 287), +(192871, 'Mina', 2007, 'F', 287), +(192872, 'Shirley', 2007, 'F', 287), +(192873, 'Jaclyn', 2007, 'F', 286), +(192874, 'Janice', 2007, 'F', 286), +(192875, 'Rayne', 2007, 'F', 286), +(192876, 'Tyra', 2007, 'F', 286), +(192877, 'Abigale', 2007, 'F', 285), +(192878, 'Adamaris', 2007, 'F', 285), +(192879, 'Anabel', 2007, 'F', 285), +(192880, 'Kinsey', 2007, 'F', 285), +(192881, 'Blanca', 2007, 'F', 284), +(192882, 'Jasmyn', 2007, 'F', 284), +(192883, 'Lucero', 2007, 'F', 284), +(192884, 'Rebeca', 2007, 'F', 284), +(192885, 'Emmy', 2007, 'F', 283), +(192886, 'Jaylah', 2007, 'F', 283), +(192887, 'Hillary', 2007, 'F', 282), +(192888, 'Yamilet', 2007, 'F', 280), +(192889, 'Yaritza', 2007, 'F', 280), +(192890, 'Amaris', 2007, 'F', 279), +(192891, 'Lina', 2007, 'F', 279), +(192892, 'Alyvia', 2007, 'F', 278), +(192893, 'Jailyn', 2007, 'F', 278), +(192894, 'Iyana', 2007, 'F', 277), +(192895, 'Joseline', 2007, 'F', 277), +(192896, 'Kelis', 2007, 'F', 277), +(192897, 'Lillianna', 2007, 'F', 277), +(192898, 'Cloe', 2007, 'F', 276), +(192899, 'Flor', 2007, 'F', 276), +(192900, 'Maren', 2007, 'F', 276), +(192901, 'Armani', 2007, 'F', 275), +(192902, 'Cailyn', 2007, 'F', 275), +(192903, 'Graciela', 2007, 'F', 275), +(192904, 'Joana', 2007, 'F', 274), +(192905, 'Katlyn', 2007, 'F', 274), +(192906, 'Mira', 2007, 'F', 274), +(192907, 'Alannah', 2007, 'F', 272), +(192908, 'Antonia', 2007, 'F', 272), +(192909, 'Brandi', 2007, 'F', 272), +(192910, 'Charlee', 2007, 'F', 272), +(192911, 'Hayleigh', 2007, 'F', 272), +(192912, 'Allyssa', 2007, 'F', 271), +(192913, 'Sheila', 2007, 'F', 271), +(192914, 'Sky', 2007, 'F', 271), +(192915, 'Delia', 2007, 'F', 270), +(192916, 'Olive', 2007, 'F', 270), +(192917, 'Diya', 2007, 'F', 269), +(192918, 'Leticia', 2007, 'F', 269), +(192919, 'Pearl', 2007, 'F', 269), +(192920, 'Izabelle', 2007, 'F', 268), +(192921, 'Kylah', 2007, 'F', 268), +(192922, 'Carrie', 2007, 'F', 267), +(192923, 'Celine', 2007, 'F', 267), +(192924, 'Hadassah', 2007, 'F', 267), +(192925, 'Susana', 2007, 'F', 267), +(192926, 'Kya', 2007, 'F', 265), +(192927, 'Alia', 2007, 'F', 264), +(192928, 'Calista', 2007, 'F', 263), +(192929, 'Kayli', 2007, 'F', 263), +(192930, 'Lacy', 2007, 'F', 263), +(192931, 'Marlen', 2007, 'F', 263), +(192932, 'Nathalia', 2007, 'F', 263), +(192933, 'Bree', 2007, 'F', 262), +(192934, 'Dorothy', 2007, 'F', 262), +(192935, 'Elianna', 2007, 'F', 262), +(192936, 'Karly', 2007, 'F', 262), +(192937, 'Micaela', 2007, 'F', 262), +(192938, 'Zaniya', 2007, 'F', 262), +(192939, 'Anabella', 2007, 'F', 261), +(192940, 'Heidy', 2007, 'F', 261), +(192941, 'Riya', 2007, 'F', 261), +(192942, 'Amirah', 2007, 'F', 260), +(192943, 'Malaya', 2007, 'F', 260), +(192944, 'Destiney', 2007, 'F', 259), +(192945, 'Donna', 2007, 'F', 259), +(192946, 'Joelle', 2007, 'F', 259), +(192947, 'Mckinley', 2007, 'F', 259), +(192948, 'Caylee', 2007, 'F', 258), +(192949, 'Kalli', 2007, 'F', 258), +(192950, 'Trista', 2007, 'F', 258), +(192951, 'Caleigh', 2007, 'F', 257), +(192952, 'Chana', 2007, 'F', 257), +(192953, 'Josselyn', 2007, 'F', 257), +(192954, 'Milan', 2007, 'F', 257), +(192955, 'Denisse', 2007, 'F', 256), +(192956, 'Fabiola', 2007, 'F', 256), +(192957, 'Katharine', 2007, 'F', 256), +(192958, 'Kenadie', 2007, 'F', 256), +(192959, 'Nola', 2007, 'F', 256), +(192960, 'Sandy', 2007, 'F', 256), +(192961, 'Lailah', 2007, 'F', 255), +(192962, 'Yara', 2007, 'F', 255), +(192963, 'Alysa', 2007, 'F', 254), +(192964, 'Izabel', 2007, 'F', 254), +(192965, 'Tina', 2007, 'F', 254), +(192966, 'Candace', 2007, 'F', 253), +(192967, 'Keeley', 2007, 'F', 253), +(192968, 'Reece', 2007, 'F', 253), +(192969, 'Sally', 2007, 'F', 252), +(192970, 'Iyanna', 2007, 'F', 251), +(192971, 'Melinda', 2007, 'F', 251), +(192972, 'Samiyah', 2007, 'F', 251), +(192973, 'Sanai', 2007, 'F', 251), +(192974, 'Carol', 2007, 'F', 250), +(192975, 'Jenifer', 2007, 'F', 250), +(192976, 'Livia', 2007, 'F', 250), +(192977, 'Mireya', 2007, 'F', 250), +(192978, 'Sarina', 2007, 'F', 250), +(192979, 'Sheyla', 2007, 'F', 250), +(192980, 'Akeelah', 2007, 'F', 249), +(192981, 'Jamiyah', 2007, 'F', 249), +(192982, 'Raelynn', 2007, 'F', 249), +(192983, 'Nya', 2007, 'F', 248), +(192984, 'Betsy', 2007, 'F', 247), +(192985, 'Jana', 2007, 'F', 247), +(192986, 'Sahara', 2007, 'F', 247), +(192987, 'Ariella', 2007, 'F', 246), +(192988, 'Candice', 2007, 'F', 246), +(192989, 'Citlali', 2007, 'F', 246), +(192990, 'Jorja', 2007, 'F', 246), +(192991, 'Kamari', 2007, 'F', 246), +(192992, 'Nikki', 2007, 'F', 246), +(192993, 'Deasia', 2007, 'F', 245), +(192994, 'Devin', 2007, 'F', 245), +(192995, 'Elyssa', 2007, 'F', 245), +(192996, 'Stacey', 2007, 'F', 245), +(192997, 'Alize', 2007, 'F', 244), +(192998, 'Brookelyn', 2007, 'F', 244), +(192999, 'Christiana', 2007, 'F', 244), +(193000, 'Colleen', 2007, 'F', 244), +(193001, 'Kairi', 2007, 'F', 244), +(193002, 'Margarita', 2007, 'F', 244), +(193003, 'Rory', 2007, 'F', 244), +(193004, 'Shakira', 2007, 'F', 244), +(193005, 'Yvette', 2007, 'F', 244), +(193006, 'Ali', 2007, 'F', 243), +(193007, 'Carleigh', 2007, 'F', 243), +(193008, 'Samira', 2007, 'F', 243), +(193009, 'Samaria', 2007, 'F', 241), +(193010, 'Tayler', 2007, 'F', 241), +(193011, 'Estefani', 2007, 'F', 240), +(193012, 'Laniya', 2007, 'F', 240), +(193013, 'Silvia', 2007, 'F', 240), +(193014, 'Brookelynn', 2007, 'F', 239), +(193015, 'Charley', 2007, 'F', 239), +(193016, 'Ivana', 2007, 'F', 239), +(193017, 'Anjali', 2007, 'F', 238), +(193018, 'Dasia', 2007, 'F', 238), +(193019, 'Nyah', 2007, 'F', 238), +(193020, 'Yahaira', 2007, 'F', 238), +(193021, 'Jaslyn', 2007, 'F', 237), +(193022, 'Jazmyne', 2007, 'F', 237), +(193023, 'June', 2007, 'F', 237), +(193024, 'Laylah', 2007, 'F', 237), +(193025, 'Estefany', 2007, 'F', 236), +(193026, 'Soraya', 2007, 'F', 236), +(193027, 'Averi', 2007, 'F', 235), +(193028, 'Jaquelin', 2007, 'F', 235), +(193029, 'Vanesa', 2007, 'F', 235), +(193030, 'Addie', 2007, 'F', 234), +(193031, 'Baylie', 2007, 'F', 234), +(193032, 'Cayla', 2007, 'F', 234), +(193033, 'Bryana', 2007, 'F', 233), +(193034, 'Evelynn', 2007, 'F', 233), +(193035, 'Halie', 2007, 'F', 233), +(193036, 'Jayde', 2007, 'F', 233), +(193037, 'Samiya', 2007, 'F', 233), +(193038, 'Avah', 2007, 'F', 232), +(193039, 'Azariah', 2007, 'F', 232), +(193040, 'Jackeline', 2007, 'F', 232), +(193041, 'Kamya', 2007, 'F', 232), +(193042, 'Karis', 2007, 'F', 232), +(193043, 'Nichole', 2007, 'F', 232), +(193044, 'Raelyn', 2007, 'F', 232), +(193045, 'Samya', 2007, 'F', 232), +(193046, 'Kori', 2007, 'F', 231), +(193047, 'Kyndall', 2007, 'F', 231), +(193048, 'Maura', 2007, 'F', 231), +(193049, 'Myra', 2007, 'F', 231), +(193050, 'Ashton', 2007, 'F', 230), +(193051, 'Keila', 2007, 'F', 230), +(193052, 'Luisa', 2007, 'F', 230), +(193053, 'Yamileth', 2007, 'F', 230), +(193054, 'Abbygail', 2007, 'F', 229), +(193055, 'Brinley', 2007, 'F', 229), +(193056, 'River', 2007, 'F', 229), +(193057, 'Kalia', 2007, 'F', 228), +(193058, 'Shreya', 2007, 'F', 228), +(193059, 'Aiyanna', 2007, 'F', 227), +(193060, 'Mandy', 2007, 'F', 227), +(193061, 'Mayte', 2007, 'F', 227), +(193062, 'Nylah', 2007, 'F', 227), +(193063, 'Diane', 2007, 'F', 226), +(193064, 'Rylan', 2007, 'F', 226), +(193065, 'Arlene', 2007, 'F', 225), +(193066, 'Jalyn', 2007, 'F', 225), +(193067, 'Selene', 2007, 'F', 225), +(193068, 'Tatianna', 2007, 'F', 225), +(193069, 'Unique', 2007, 'F', 225), +(193070, 'Brynlee', 2007, 'F', 224), +(193071, 'Elissa', 2007, 'F', 224), +(193072, 'Darlene', 2007, 'F', 223), +(193073, 'Rhea', 2007, 'F', 223), +(193074, 'Savana', 2007, 'F', 223), +(193075, 'Abrianna', 2007, 'F', 222), +(193076, 'Ayleen', 2007, 'F', 222), +(193077, 'Ember', 2007, 'F', 222), +(193078, 'Emelia', 2007, 'F', 222), +(193079, 'Shaniyah', 2007, 'F', 222), +(193080, 'Sonya', 2007, 'F', 222), +(193081, 'Aniah', 2007, 'F', 221), +(193082, 'Kamora', 2007, 'F', 221), +(193083, 'Madisen', 2007, 'F', 221), +(193084, 'Roxana', 2007, 'F', 221), +(193085, 'Samaya', 2007, 'F', 221), +(193086, 'Tracy', 2007, 'F', 221), +(193087, 'Alaysia', 2007, 'F', 220), +(193088, 'Amalia', 2007, 'F', 220), +(193089, 'Jacklyn', 2007, 'F', 220), +(193090, 'Jaedyn', 2007, 'F', 220), +(193091, 'Emani', 2007, 'F', 218), +(193092, 'Gemma', 2007, 'F', 218), +(193093, 'Jersey', 2007, 'F', 218), +(193094, 'Kacie', 2007, 'F', 218), +(193095, 'Renata', 2007, 'F', 218), +(193096, 'Beatriz', 2007, 'F', 217), +(193097, 'Christian', 2007, 'F', 217), +(193098, 'Ericka', 2007, 'F', 217), +(193099, 'Fallon', 2007, 'F', 217), +(193100, 'Jamiya', 2007, 'F', 217), +(193101, 'Lacie', 2007, 'F', 217), +(193102, 'Nicolette', 2007, 'F', 217), +(193103, 'Sloane', 2007, 'F', 217), +(193104, 'Katy', 2007, 'F', 216), +(193105, 'Makiyah', 2007, 'F', 216), +(193106, 'Adalynn', 2007, 'F', 215), +(193107, 'Adelina', 2007, 'F', 215), +(193108, 'Brissia', 2007, 'F', 215), +(193109, 'Giavanna', 2007, 'F', 215), +(193110, 'Grecia', 2007, 'F', 215), +(193111, 'Kayleen', 2007, 'F', 215), +(193112, 'Rocio', 2007, 'F', 215), +(193113, 'Asha', 2007, 'F', 214), +(193114, 'Annelise', 2007, 'F', 213), +(193115, 'Gwyneth', 2007, 'F', 213), +(193116, 'Kalyn', 2007, 'F', 213), +(193117, 'Robin', 2007, 'F', 213), +(193118, 'Zuri', 2007, 'F', 213), +(193119, 'Brook', 2007, 'F', 212), +(193120, 'Dani', 2007, 'F', 212), +(193121, 'Hunter', 2007, 'F', 211), +(193122, 'Rianna', 2007, 'F', 211), +(193123, 'Anita', 2007, 'F', 210), +(193124, 'Drew', 2007, 'F', 210), +(193125, 'Lidia', 2007, 'F', 210), +(193126, 'Gisele', 2007, 'F', 209), +(193127, 'Kai', 2007, 'F', 209), +(193128, 'Rita', 2007, 'F', 209), +(193129, 'Roxanne', 2007, 'F', 209), +(193130, 'Charli', 2007, 'F', 208), +(193131, 'Ebony', 2007, 'F', 208), +(193132, 'Gracyn', 2007, 'F', 208), +(193133, 'Kailynn', 2007, 'F', 208), +(193134, 'Mae', 2007, 'F', 208), +(193135, 'Nelly', 2007, 'F', 208), +(193136, 'Zahra', 2007, 'F', 208), +(193137, 'Lanie', 2007, 'F', 207), +(193138, 'Rivka', 2007, 'F', 207), +(193139, 'Treasure', 2007, 'F', 207), +(193140, 'Aya', 2007, 'F', 206), +(193141, 'Kaelynn', 2007, 'F', 206), +(193142, 'Alanah', 2007, 'F', 205), +(193143, 'Lluvia', 2007, 'F', 205), +(193144, 'Noor', 2007, 'F', 205), +(193145, 'Vera', 2007, 'F', 205), +(193146, 'Berenice', 2007, 'F', 204), +(193147, 'Carli', 2007, 'F', 204), +(193148, 'Caydence', 2007, 'F', 204), +(193149, 'Harlee', 2007, 'F', 204), +(193150, 'Katarina', 2007, 'F', 204), +(193151, 'Kelsi', 2007, 'F', 204), +(193152, 'Nadine', 2007, 'F', 204), +(193153, 'Yarely', 2007, 'F', 204), +(193154, 'Citlaly', 2007, 'F', 203), +(193155, 'Makaylah', 2007, 'F', 203), +(193156, 'Alayah', 2007, 'F', 202), +(193157, 'Cambria', 2007, 'F', 202), +(193158, 'Natali', 2007, 'F', 202), +(193159, 'Eryn', 2007, 'F', 201), +(193160, 'Estella', 2007, 'F', 201), +(193161, 'Shaila', 2007, 'F', 201), +(193162, 'Sofie', 2007, 'F', 201), +(193163, 'Willa', 2007, 'F', 201), +(193164, 'Amiah', 2007, 'F', 200), +(193165, 'Carson', 2007, 'F', 200), +(193166, 'Celina', 2007, 'F', 200), +(193167, 'Matilda', 2007, 'F', 200), +(193168, 'Arya', 2007, 'F', 199), +(193169, 'Karleigh', 2007, 'F', 199), +(193170, 'Reilly', 2007, 'F', 199), +(193171, 'Star', 2007, 'F', 199), +(193172, 'Suri', 2007, 'F', 199), +(193173, 'Yolanda', 2007, 'F', 199), +(193174, 'Dallas', 2007, 'F', 198), +(193175, 'Tierra', 2007, 'F', 198), +(193176, 'Analise', 2007, 'F', 197), +(193177, 'Ananya', 2007, 'F', 197), +(193178, 'Dianna', 2007, 'F', 197), +(193179, 'Felicia', 2007, 'F', 197), +(193180, 'Keara', 2007, 'F', 197), +(193181, 'Taya', 2007, 'F', 197), +(193182, 'Tayla', 2007, 'F', 197), +(193183, 'Breonna', 2007, 'F', 196), +(193184, 'Janaya', 2007, 'F', 196), +(193185, 'Noa', 2007, 'F', 196), +(193186, 'Gracelynn', 2007, 'F', 195), +(193187, 'Kasandra', 2007, 'F', 195), +(193188, 'Kimber', 2007, 'F', 195), +(193189, 'Lourdes', 2007, 'F', 195), +(193190, 'Rileigh', 2007, 'F', 195), +(193191, 'Soleil', 2007, 'F', 195), +(193192, 'Yvonne', 2007, 'F', 195), +(193193, 'Janya', 2007, 'F', 194), +(193194, 'Lilyan', 2007, 'F', 194), +(193195, 'Maiya', 2007, 'F', 194), +(193196, 'Susanna', 2007, 'F', 194), +(193197, 'Tristan', 2007, 'F', 194), +(193198, 'Ashtyn', 2007, 'F', 193), +(193199, 'Noel', 2007, 'F', 193), +(193200, 'Stevie', 2007, 'F', 193), +(193201, 'Yessenia', 2007, 'F', 193), +(193202, 'Anneliese', 2007, 'F', 192), +(193203, 'Audra', 2007, 'F', 192), +(193204, 'Jolene', 2007, 'F', 192), +(193205, 'Lizette', 2007, 'F', 192), +(193206, 'Yulissa', 2007, 'F', 192), +(193207, 'Alex', 2007, 'F', 191), +(193208, 'Eloise', 2007, 'F', 191), +(193209, 'Grayson', 2007, 'F', 191), +(193210, 'Laniyah', 2007, 'F', 191), +(193211, 'Lilyanna', 2007, 'F', 191), +(193212, 'Reanna', 2007, 'F', 191), +(193213, 'Robyn', 2007, 'F', 191), +(193214, 'Aubrianna', 2007, 'F', 190), +(193215, 'Karolina', 2007, 'F', 190), +(193216, 'Karsyn', 2007, 'F', 190), +(193217, 'Makiya', 2007, 'F', 190), +(193218, 'Adelynn', 2007, 'F', 189), +(193219, 'Darby', 2007, 'F', 189), +(193220, 'Sydnie', 2007, 'F', 189), +(193221, 'Constance', 2007, 'F', 188), +(193222, 'Devon', 2007, 'F', 188), +(193223, 'Elisha', 2007, 'F', 188), +(193224, 'Ivanna', 2007, 'F', 188), +(193225, 'Katerina', 2007, 'F', 188), +(193226, 'Kaycee', 2007, 'F', 188), +(193227, 'Amia', 2007, 'F', 187), +(193228, 'Blair', 2007, 'F', 187), +(193229, 'Brianne', 2007, 'F', 187), +(193230, 'Bridgette', 2007, 'F', 187), +(193231, 'Loren', 2007, 'F', 187), +(193232, 'Milena', 2007, 'F', 187), +(193233, 'Zariyah', 2007, 'F', 187), +(193234, 'Astrid', 2007, 'F', 186), +(193235, 'Gwen', 2007, 'F', 186), +(193236, 'Katelin', 2007, 'F', 186), +(193237, 'Kyndal', 2007, 'F', 186), +(193238, 'Ryley', 2007, 'F', 186), +(193239, 'Yoselyn', 2007, 'F', 186), +(193240, 'Alaya', 2007, 'F', 185), +(193241, 'Beyonce', 2007, 'F', 185), +(193242, 'Bryn', 2007, 'F', 185), +(193243, 'Christa', 2007, 'F', 185), +(193244, 'Leigha', 2007, 'F', 185), +(193245, 'Violeta', 2007, 'F', 185), +(193246, 'Alexandrea', 2007, 'F', 184), +(193247, 'Ariyana', 2007, 'F', 184), +(193248, 'Kendyl', 2007, 'F', 184), +(193249, 'Marcella', 2007, 'F', 184), +(193250, 'Elana', 2007, 'F', 183), +(193251, 'Estefania', 2007, 'F', 183), +(193252, 'Jaci', 2007, 'F', 183), +(193253, 'Jaya', 2007, 'F', 183), +(193254, 'Jazelle', 2007, 'F', 183), +(193255, 'Kacey', 2007, 'F', 183), +(193256, 'Nalani', 2007, 'F', 183), +(193257, 'Xochitl', 2007, 'F', 183), +(193258, 'Alexys', 2007, 'F', 182), +(193259, 'Charlene', 2007, 'F', 182), +(193260, 'Evangelina', 2007, 'F', 182), +(193261, 'Jaela', 2007, 'F', 182), +(193262, 'Adrian', 2007, 'F', 181), +(193263, 'Anissa', 2007, 'F', 181), +(193264, 'Caitlynn', 2007, 'F', 181), +(193265, 'Calleigh', 2007, 'F', 181), +(193266, 'Dalilah', 2007, 'F', 181), +(193267, 'Jaime', 2007, 'F', 181), +(193268, 'Juana', 2007, 'F', 181), +(193269, 'Kaci', 2007, 'F', 181), +(193270, 'Keegan', 2007, 'F', 181), +(193271, 'Marian', 2007, 'F', 181), +(193272, 'Melia', 2007, 'F', 181), +(193273, 'Anisa', 2007, 'F', 180), +(193274, 'Jocelin', 2007, 'F', 180), +(193275, 'Juanita', 2007, 'F', 180), +(193276, 'Saanvi', 2007, 'F', 180), +(193277, 'Sariyah', 2007, 'F', 180), +(193278, 'Tamya', 2007, 'F', 180), +(193279, 'Ailyn', 2007, 'F', 179), +(193280, 'Brionna', 2007, 'F', 179), +(193281, 'Alyna', 2007, 'F', 178), +(193282, 'Coral', 2007, 'F', 178), +(193283, 'Emory', 2007, 'F', 178), +(193284, 'Isla', 2007, 'F', 178), +(193285, 'Jania', 2007, 'F', 178), +(193286, 'Lori', 2007, 'F', 178), +(193287, 'Promise', 2007, 'F', 178), +(193288, 'Triniti', 2007, 'F', 178), +(193289, 'Winter', 2007, 'F', 178), +(193290, 'Adilene', 2007, 'F', 177), +(193291, 'Kalea', 2007, 'F', 177), +(193292, 'Kristine', 2007, 'F', 177), +(193293, 'Malaysia', 2007, 'F', 177), +(193294, 'Trisha', 2007, 'F', 177), +(193295, 'Annaliese', 2007, 'F', 176), +(193296, 'Ayden', 2007, 'F', 176), +(193297, 'Bayleigh', 2007, 'F', 176), +(193298, 'Chiara', 2007, 'F', 176), +(193299, 'Cianna', 2007, 'F', 176), +(193300, 'Elia', 2007, 'F', 176), +(193301, 'Lela', 2007, 'F', 176), +(193302, 'Mercy', 2007, 'F', 176), +(193303, 'Priya', 2007, 'F', 176), +(193304, 'Aiden', 2007, 'F', 175), +(193305, 'Aliah', 2007, 'F', 175), +(193306, 'Ariah', 2007, 'F', 175), +(193307, 'Casandra', 2007, 'F', 175), +(193308, 'Jael', 2007, 'F', 175), +(193309, 'Maegan', 2007, 'F', 175), +(193310, 'Ginger', 2007, 'F', 174), +(193311, 'Jacie', 2007, 'F', 174), +(193312, 'Milana', 2007, 'F', 174), +(193313, 'Abygail', 2007, 'F', 173), +(193314, 'Aviana', 2007, 'F', 173), +(193315, 'Cienna', 2007, 'F', 173), +(193316, 'Dalila', 2007, 'F', 173), +(193317, 'Tegan', 2007, 'F', 173), +(193318, 'Kaniya', 2007, 'F', 172), +(193319, 'Paityn', 2007, 'F', 172), +(193320, 'Gizelle', 2007, 'F', 171), +(193321, 'Kiya', 2007, 'F', 171), +(193322, 'Lexus', 2007, 'F', 171), +(193323, 'Zainab', 2007, 'F', 171), +(193324, 'Amyah', 2007, 'F', 170), +(193325, 'Geneva', 2007, 'F', 170), +(193326, 'Janie', 2007, 'F', 170), +(193327, 'Kamiya', 2007, 'F', 170), +(193328, 'Kirra', 2007, 'F', 170), +(193329, 'Makiah', 2007, 'F', 170), +(193330, 'Priscila', 2007, 'F', 170), +(193331, 'Vianey', 2007, 'F', 170), +(193332, 'Yajaira', 2007, 'F', 170), +(193333, 'Brea', 2007, 'F', 169), +(193334, 'Jaila', 2007, 'F', 169), +(193335, 'Jazlene', 2007, 'F', 169), +(193336, 'Karyme', 2007, 'F', 169), +(193337, 'Leena', 2007, 'F', 169), +(193338, 'Bonnie', 2007, 'F', 168), +(193339, 'Emersyn', 2007, 'F', 168); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(193340, 'Kaela', 2007, 'F', 168), +(193341, 'Kameron', 2007, 'F', 168), +(193342, 'Rachelle', 2007, 'F', 168), +(193343, 'Amberly', 2007, 'F', 167), +(193344, 'Arden', 2007, 'F', 167), +(193345, 'Jamaya', 2007, 'F', 167), +(193346, 'Mackenna', 2007, 'F', 167), +(193347, 'Madysen', 2007, 'F', 167), +(193348, 'Maryann', 2007, 'F', 167), +(193349, 'Aida', 2007, 'F', 166), +(193350, 'Eunice', 2007, 'F', 166), +(193351, 'Harlie', 2007, 'F', 166), +(193352, 'Jocelyne', 2007, 'F', 166), +(193353, 'Mika', 2007, 'F', 166), +(193354, 'Neha', 2007, 'F', 166), +(193355, 'Rosalinda', 2007, 'F', 166), +(193356, 'Angely', 2007, 'F', 165), +(193357, 'Dariana', 2007, 'F', 165), +(193358, 'Keily', 2007, 'F', 165), +(193359, 'Lianna', 2007, 'F', 165), +(193360, 'Lucinda', 2007, 'F', 165), +(193361, 'Miyah', 2007, 'F', 165), +(193362, 'Gabriel', 2007, 'F', 164), +(193363, 'Hilary', 2007, 'F', 164), +(193364, 'Jalissa', 2007, 'F', 164), +(193365, 'Jamia', 2007, 'F', 164), +(193366, 'Jayna', 2007, 'F', 164), +(193367, 'Landry', 2007, 'F', 164), +(193368, 'Lillyanna', 2007, 'F', 164), +(193369, 'Maddie', 2007, 'F', 164), +(193370, 'Alli', 2007, 'F', 163), +(193371, 'Jaycie', 2007, 'F', 163), +(193372, 'Kyndra', 2007, 'F', 163), +(193373, 'Maite', 2007, 'F', 163), +(193374, 'Marcela', 2007, 'F', 163), +(193375, 'Melani', 2007, 'F', 163), +(193376, 'Melisa', 2007, 'F', 163), +(193377, 'Lamya', 2007, 'F', 162), +(193378, 'Alora', 2007, 'F', 161), +(193379, 'Alysia', 2007, 'F', 161), +(193380, 'Delanie', 2007, 'F', 161), +(193381, 'Farrah', 2007, 'F', 161), +(193382, 'Jayme', 2007, 'F', 161), +(193383, 'Alessia', 2007, 'F', 160), +(193384, 'Ciera', 2007, 'F', 160), +(193385, 'Danae', 2007, 'F', 160), +(193386, 'Gladys', 2007, 'F', 160), +(193387, 'Kamille', 2007, 'F', 160), +(193388, 'Kloe', 2007, 'F', 160), +(193389, 'Leilah', 2007, 'F', 160), +(193390, 'Lilith', 2007, 'F', 160), +(193391, 'Malka', 2007, 'F', 160), +(193392, 'Rilee', 2007, 'F', 160), +(193393, 'Aja', 2007, 'F', 159), +(193394, 'Alyse', 2007, 'F', 159), +(193395, 'Kalie', 2007, 'F', 159), +(193396, 'Kamiyah', 2007, 'F', 159), +(193397, 'Kourtney', 2007, 'F', 159), +(193398, 'Lyndsey', 2007, 'F', 159), +(193399, 'Shaelyn', 2007, 'F', 159), +(193400, 'Elayna', 2007, 'F', 158), +(193401, 'Kristy', 2007, 'F', 158), +(193402, 'Kyara', 2007, 'F', 158), +(193403, 'Lupita', 2007, 'F', 158), +(193404, 'Annamarie', 2007, 'F', 157), +(193405, 'Beverly', 2007, 'F', 157), +(193406, 'Camden', 2007, 'F', 157), +(193407, 'Julieta', 2007, 'F', 157), +(193408, 'Lorraine', 2007, 'F', 157), +(193409, 'Maricela', 2007, 'F', 157), +(193410, 'Amariah', 2007, 'F', 156), +(193411, 'Jailynn', 2007, 'F', 156), +(193412, 'Julisa', 2007, 'F', 156), +(193413, 'Zaira', 2007, 'F', 156), +(193414, 'Arleth', 2007, 'F', 155), +(193415, 'Audrianna', 2007, 'F', 155), +(193416, 'Brissa', 2007, 'F', 155), +(193417, 'Calli', 2007, 'F', 155), +(193418, 'Emalee', 2007, 'F', 155), +(193419, 'Emerald', 2007, 'F', 155), +(193420, 'Payten', 2007, 'F', 155), +(193421, 'Raylee', 2007, 'F', 155), +(193422, 'Sania', 2007, 'F', 155), +(193423, 'Aditi', 2007, 'F', 154), +(193424, 'Alyssia', 2007, 'F', 154), +(193425, 'Anastacia', 2007, 'F', 154), +(193426, 'Avril', 2007, 'F', 154), +(193427, 'Briseida', 2007, 'F', 154), +(193428, 'Dayanna', 2007, 'F', 154), +(193429, 'Demi', 2007, 'F', 154), +(193430, 'Dina', 2007, 'F', 154), +(193431, 'Jazzlyn', 2007, 'F', 154), +(193432, 'Jordynn', 2007, 'F', 154), +(193433, 'Maile', 2007, 'F', 154), +(193434, 'Makyla', 2007, 'F', 154), +(193435, 'Elina', 2007, 'F', 153), +(193436, 'Elliot', 2007, 'F', 153), +(193437, 'Honesty', 2007, 'F', 153), +(193438, 'Ivette', 2007, 'F', 153), +(193439, 'Kaelin', 2007, 'F', 153), +(193440, 'Lylah', 2007, 'F', 153), +(193441, 'Magaly', 2007, 'F', 153), +(193442, 'Vania', 2007, 'F', 153), +(193443, 'Cloey', 2007, 'F', 152), +(193444, 'Colette', 2007, 'F', 152), +(193445, 'Jamiah', 2007, 'F', 152), +(193446, 'Kailani', 2007, 'F', 152), +(193447, 'Kenley', 2007, 'F', 152), +(193448, 'Montserrat', 2007, 'F', 152), +(193449, 'Vivienne', 2007, 'F', 152), +(193450, 'Ellery', 2007, 'F', 151), +(193451, 'Jackelyn', 2007, 'F', 151), +(193452, 'Leona', 2007, 'F', 151), +(193453, 'Maryn', 2007, 'F', 151), +(193454, 'Millie', 2007, 'F', 151), +(193455, 'Ellison', 2007, 'F', 150), +(193456, 'Heavenly', 2007, 'F', 150), +(193457, 'Joslynn', 2007, 'F', 150), +(193458, 'Kari', 2007, 'F', 150), +(193459, 'Karmen', 2007, 'F', 150), +(193460, 'Mareli', 2007, 'F', 150), +(193461, 'Martina', 2007, 'F', 150), +(193462, 'Norma', 2007, 'F', 150), +(193463, 'Addisen', 2007, 'F', 149), +(193464, 'Antonella', 2007, 'F', 149), +(193465, 'Janeth', 2007, 'F', 149), +(193466, 'Karime', 2007, 'F', 149), +(193467, 'Cailey', 2007, 'F', 148), +(193468, 'Christy', 2007, 'F', 148), +(193469, 'Haily', 2007, 'F', 148), +(193470, 'Joanne', 2007, 'F', 148), +(193471, 'Karol', 2007, 'F', 148), +(193472, 'Lilli', 2007, 'F', 148), +(193473, 'Saniah', 2007, 'F', 148), +(193474, 'Adele', 2007, 'F', 147), +(193475, 'Andie', 2007, 'F', 147), +(193476, 'Chase', 2007, 'F', 147), +(193477, 'Katia', 2007, 'F', 147), +(193478, 'Liz', 2007, 'F', 147), +(193479, 'Gracey', 2007, 'F', 146), +(193480, 'Ria', 2007, 'F', 146), +(193481, 'Roxanna', 2007, 'F', 146), +(193482, 'Sade', 2007, 'F', 146), +(193483, 'Aleigha', 2007, 'F', 145), +(193484, 'Aundrea', 2007, 'F', 145), +(193485, 'Carys', 2007, 'F', 145), +(193486, 'Jessa', 2007, 'F', 145), +(193487, 'Laken', 2007, 'F', 145), +(193488, 'Leann', 2007, 'F', 145), +(193489, 'Lilyann', 2007, 'F', 145), +(193490, 'Nova', 2007, 'F', 145), +(193491, 'Shianne', 2007, 'F', 145), +(193492, 'Aubri', 2007, 'F', 144), +(193493, 'Brylie', 2007, 'F', 144), +(193494, 'Daisha', 2007, 'F', 144), +(193495, 'Isela', 2007, 'F', 144), +(193496, 'Jackie', 2007, 'F', 144), +(193497, 'Judy', 2007, 'F', 144), +(193498, 'Kaydance', 2007, 'F', 144), +(193499, 'Kyah', 2007, 'F', 144), +(193500, 'Kyrie', 2007, 'F', 144), +(193501, 'Lillyan', 2007, 'F', 144), +(193502, 'Niya', 2007, 'F', 144), +(193503, 'Adela', 2007, 'F', 143), +(193504, 'Ania', 2007, 'F', 143), +(193505, 'Antoinette', 2007, 'F', 143), +(193506, 'Belle', 2007, 'F', 143), +(193507, 'Braylee', 2007, 'F', 143), +(193508, 'Keziah', 2007, 'F', 143), +(193509, 'Linnea', 2007, 'F', 143), +(193510, 'Maliah', 2007, 'F', 143), +(193511, 'Mari', 2007, 'F', 143), +(193512, 'Milagros', 2007, 'F', 143), +(193513, 'Saylor', 2007, 'F', 143), +(193514, 'Abrielle', 2007, 'F', 142), +(193515, 'Adia', 2007, 'F', 142), +(193516, 'Aubriana', 2007, 'F', 142), +(193517, 'Hattie', 2007, 'F', 142), +(193518, 'Jacquelin', 2007, 'F', 142), +(193519, 'Vianney', 2007, 'F', 142), +(193520, 'Annalisa', 2007, 'F', 141), +(193521, 'Audriana', 2007, 'F', 141), +(193522, 'Daria', 2007, 'F', 141), +(193523, 'Marlie', 2007, 'F', 141), +(193524, 'Alexi', 2007, 'F', 140), +(193525, 'Arlette', 2007, 'F', 140), +(193526, 'Alycia', 2007, 'F', 139), +(193527, 'Angeles', 2007, 'F', 139), +(193528, 'Ayva', 2007, 'F', 139), +(193529, 'Brynna', 2007, 'F', 139), +(193530, 'Carmella', 2007, 'F', 139), +(193531, 'Carsyn', 2007, 'F', 139), +(193532, 'Cielo', 2007, 'F', 139), +(193533, 'Dayna', 2007, 'F', 139), +(193534, 'Kellie', 2007, 'F', 139), +(193535, 'Laisha', 2007, 'F', 139), +(193536, 'Randi', 2007, 'F', 139), +(193537, 'Sabina', 2007, 'F', 139), +(193538, 'Sunny', 2007, 'F', 139), +(193539, 'Bryleigh', 2007, 'F', 138), +(193540, 'Cayden', 2007, 'F', 138), +(193541, 'Jianna', 2007, 'F', 138), +(193542, 'Leanne', 2007, 'F', 138), +(193543, 'Lucie', 2007, 'F', 138), +(193544, 'Malena', 2007, 'F', 138), +(193545, 'Maxine', 2007, 'F', 138), +(193546, 'Yaneli', 2007, 'F', 138), +(193547, 'Alianna', 2007, 'F', 137), +(193548, 'Cailin', 2007, 'F', 137), +(193549, 'Eleni', 2007, 'F', 137), +(193550, 'Geraldine', 2007, 'F', 137), +(193551, 'Gissel', 2007, 'F', 137), +(193552, 'Isadora', 2007, 'F', 137), +(193553, 'Isha', 2007, 'F', 137), +(193554, 'Kaleah', 2007, 'F', 137), +(193555, 'Lynn', 2007, 'F', 137), +(193556, 'Mariella', 2007, 'F', 137), +(193557, 'Simran', 2007, 'F', 137), +(193558, 'Adamari', 2007, 'F', 136), +(193559, 'Amayah', 2007, 'F', 136), +(193560, 'Annabell', 2007, 'F', 136), +(193561, 'Aubry', 2007, 'F', 136), +(193562, 'Ema', 2007, 'F', 136), +(193563, 'Jessenia', 2007, 'F', 136), +(193564, 'Lillyana', 2007, 'F', 136), +(193565, 'Makenzi', 2007, 'F', 136), +(193566, 'Nailah', 2007, 'F', 136), +(193567, 'Shamya', 2007, 'F', 136), +(193568, 'Shawna', 2007, 'F', 136), +(193569, 'Starr', 2007, 'F', 136), +(193570, 'Ariyanna', 2007, 'F', 135), +(193571, 'Brooklin', 2007, 'F', 135), +(193572, 'Chandler', 2007, 'F', 135), +(193573, 'Kayle', 2007, 'F', 135), +(193574, 'Kierstyn', 2007, 'F', 135), +(193575, 'Lesli', 2007, 'F', 135), +(193576, 'Nallely', 2007, 'F', 135), +(193577, 'Sawyer', 2007, 'F', 135), +(193578, 'Berkley', 2007, 'F', 134), +(193579, 'Betty', 2007, 'F', 134), +(193580, 'Josslyn', 2007, 'F', 134), +(193581, 'Malak', 2007, 'F', 134), +(193582, 'Nariah', 2007, 'F', 134), +(193583, 'Nevaeha', 2007, 'F', 134), +(193584, 'Samia', 2007, 'F', 134), +(193585, 'Shae', 2007, 'F', 134), +(193586, 'Azucena', 2007, 'F', 133), +(193587, 'Edna', 2007, 'F', 133), +(193588, 'Elly', 2007, 'F', 133), +(193589, 'Jasmyne', 2007, 'F', 133), +(193590, 'Joey', 2007, 'F', 133), +(193591, 'Kaniyah', 2007, 'F', 133), +(193592, 'Stefany', 2007, 'F', 133), +(193593, 'Zahara', 2007, 'F', 133), +(193594, 'Amerie', 2007, 'F', 132), +(193595, 'Braelynn', 2007, 'F', 132), +(193596, 'Evalyn', 2007, 'F', 132), +(193597, 'Janette', 2007, 'F', 132), +(193598, 'Kalynn', 2007, 'F', 132), +(193599, 'Kamaria', 2007, 'F', 132), +(193600, 'Kami', 2007, 'F', 132), +(193601, 'Lexy', 2007, 'F', 132), +(193602, 'Margot', 2007, 'F', 132), +(193603, 'Rosalie', 2007, 'F', 132), +(193604, 'Thea', 2007, 'F', 132), +(193605, 'Annmarie', 2007, 'F', 131), +(193606, 'Ashlin', 2007, 'F', 131), +(193607, 'Avalon', 2007, 'F', 131), +(193608, 'Cydney', 2007, 'F', 131), +(193609, 'Frankie', 2007, 'F', 131), +(193610, 'Italia', 2007, 'F', 131), +(193611, 'Kensley', 2007, 'F', 131), +(193612, 'Maisie', 2007, 'F', 131), +(193613, 'Tristen', 2007, 'F', 131), +(193614, 'Araya', 2007, 'F', 130), +(193615, 'Ciana', 2007, 'F', 130), +(193616, 'Noelani', 2007, 'F', 130), +(193617, 'Saphira', 2007, 'F', 130), +(193618, 'Tanisha', 2007, 'F', 130), +(193619, 'Ivory', 2007, 'F', 129), +(193620, 'Jaleah', 2007, 'F', 129), +(193621, 'Jeanette', 2007, 'F', 129), +(193622, 'Kalina', 2007, 'F', 129), +(193623, 'Kelli', 2007, 'F', 129), +(193624, 'Leilany', 2007, 'F', 129), +(193625, 'Mykayla', 2007, 'F', 129), +(193626, 'Sydni', 2007, 'F', 129), +(193627, 'Abbigale', 2007, 'F', 128), +(193628, 'Annalee', 2007, 'F', 128), +(193629, 'Corina', 2007, 'F', 128), +(193630, 'Darcy', 2007, 'F', 128), +(193631, 'Gwenyth', 2007, 'F', 128), +(193632, 'Kaylei', 2007, 'F', 128), +(193633, 'Rian', 2007, 'F', 128), +(193634, 'Rosie', 2007, 'F', 128), +(193635, 'Sahana', 2007, 'F', 128), +(193636, 'Sylvie', 2007, 'F', 128), +(193637, 'Yasmeen', 2007, 'F', 128), +(193638, 'Aidan', 2007, 'F', 127), +(193639, 'Ayah', 2007, 'F', 127), +(193640, 'Azalea', 2007, 'F', 127), +(193641, 'Camdyn', 2007, 'F', 127), +(193642, 'Kiarra', 2007, 'F', 127), +(193643, 'Mabel', 2007, 'F', 127), +(193644, 'Nayely', 2007, 'F', 127), +(193645, 'Shay', 2007, 'F', 127), +(193646, 'Shriya', 2007, 'F', 127), +(193647, 'Vicky', 2007, 'F', 127), +(193648, 'Viridiana', 2007, 'F', 127), +(193649, 'Yazmine', 2007, 'F', 127), +(193650, 'Anessa', 2007, 'F', 126), +(193651, 'Avianna', 2007, 'F', 126), +(193652, 'Chyanne', 2007, 'F', 126), +(193653, 'Danya', 2007, 'F', 126), +(193654, 'Emmaline', 2007, 'F', 126), +(193655, 'Leela', 2007, 'F', 126), +(193656, 'Louisa', 2007, 'F', 126), +(193657, 'Rain', 2007, 'F', 126), +(193658, 'Raya', 2007, 'F', 126), +(193659, 'Aanya', 2007, 'F', 125), +(193660, 'Addysen', 2007, 'F', 125), +(193661, 'Aleksandra', 2007, 'F', 125), +(193662, 'Caelyn', 2007, 'F', 125), +(193663, 'Cameryn', 2007, 'F', 125), +(193664, 'Desire', 2007, 'F', 125), +(193665, 'Destany', 2007, 'F', 125), +(193666, 'Jaydin', 2007, 'F', 125), +(193667, 'Kaylani', 2007, 'F', 125), +(193668, 'Rania', 2007, 'F', 125), +(193669, 'Shaina', 2007, 'F', 125), +(193670, 'Aurelia', 2007, 'F', 124), +(193671, 'Emmaleigh', 2007, 'F', 124), +(193672, 'Ilana', 2007, 'F', 124), +(193673, 'Petra', 2007, 'F', 124), +(193674, 'Tanvi', 2007, 'F', 124), +(193675, 'Yadhira', 2007, 'F', 124), +(193676, 'Alea', 2007, 'F', 123), +(193677, 'Ariadna', 2007, 'F', 123), +(193678, 'Dafne', 2007, 'F', 123), +(193679, 'Deisy', 2007, 'F', 123), +(193680, 'Georgina', 2007, 'F', 123), +(193681, 'Kora', 2007, 'F', 123), +(193682, 'Mariel', 2007, 'F', 123), +(193683, 'Raniyah', 2007, 'F', 123), +(193684, 'Adrianne', 2007, 'F', 122), +(193685, 'Ani', 2007, 'F', 122), +(193686, 'Chelsie', 2007, 'F', 122), +(193687, 'Dawn', 2007, 'F', 122), +(193688, 'Ellianna', 2007, 'F', 122), +(193689, 'Lisbeth', 2007, 'F', 122), +(193690, 'Markayla', 2007, 'F', 122), +(193691, 'Mindy', 2007, 'F', 122), +(193692, 'Myleigh', 2007, 'F', 122), +(193693, 'Aislinn', 2007, 'F', 121), +(193694, 'Anaiah', 2007, 'F', 121), +(193695, 'Analisa', 2007, 'F', 121), +(193696, 'Andi', 2007, 'F', 121), +(193697, 'Faye', 2007, 'F', 121), +(193698, 'Kaylea', 2007, 'F', 121), +(193699, 'Lisette', 2007, 'F', 121), +(193700, 'Malina', 2007, 'F', 121), +(193701, 'Remi', 2007, 'F', 121), +(193702, 'Saray', 2007, 'F', 121), +(193703, 'Shira', 2007, 'F', 121), +(193704, 'Suzanne', 2007, 'F', 121), +(193705, 'Tammy', 2007, 'F', 121), +(193706, 'Xitlaly', 2007, 'F', 121), +(193707, 'Alessa', 2007, 'F', 120), +(193708, 'Anaiya', 2007, 'F', 120), +(193709, 'Anayah', 2007, 'F', 120), +(193710, 'Debra', 2007, 'F', 120), +(193711, 'Kalani', 2007, 'F', 120), +(193712, 'Keilani', 2007, 'F', 120), +(193713, 'Keren', 2007, 'F', 120), +(193714, 'Lani', 2007, 'F', 120), +(193715, 'Stormy', 2007, 'F', 120), +(193716, 'Tyasia', 2007, 'F', 120), +(193717, 'Candy', 2007, 'F', 119), +(193718, 'Carmela', 2007, 'F', 119), +(193719, 'Daniya', 2007, 'F', 119), +(193720, 'Janell', 2007, 'F', 119), +(193721, 'Kaidence', 2007, 'F', 119), +(193722, 'Kamilah', 2007, 'F', 119), +(193723, 'Maranda', 2007, 'F', 119), +(193724, 'Mischa', 2007, 'F', 119), +(193725, 'Preslee', 2007, 'F', 119), +(193726, 'Sheridan', 2007, 'F', 119), +(193727, 'Wynter', 2007, 'F', 119), +(193728, 'Ailani', 2007, 'F', 118), +(193729, 'Alisson', 2007, 'F', 118), +(193730, 'Angelie', 2007, 'F', 118), +(193731, 'Ayesha', 2007, 'F', 118), +(193732, 'Cate', 2007, 'F', 118), +(193733, 'Farah', 2007, 'F', 118), +(193734, 'Hollie', 2007, 'F', 118), +(193735, 'Leeann', 2007, 'F', 118), +(193736, 'Makaela', 2007, 'F', 118), +(193737, 'Nellie', 2007, 'F', 118), +(193738, 'Sanjana', 2007, 'F', 118), +(193739, 'Shauna', 2007, 'F', 118), +(193740, 'Veronika', 2007, 'F', 118), +(193741, 'Amarie', 2007, 'F', 117), +(193742, 'Iman', 2007, 'F', 117), +(193743, 'Jesse', 2007, 'F', 117), +(193744, 'Joscelyn', 2007, 'F', 117), +(193745, 'Klarissa', 2007, 'F', 117), +(193746, 'Leyna', 2007, 'F', 117), +(193747, 'Mallorie', 2007, 'F', 117), +(193748, 'Nakayla', 2007, 'F', 117), +(193749, 'Symone', 2007, 'F', 117), +(193750, 'Taliah', 2007, 'F', 117), +(193751, 'Yocelin', 2007, 'F', 117), +(193752, 'Arionna', 2007, 'F', 116), +(193753, 'Charleigh', 2007, 'F', 116), +(193754, 'Elliott', 2007, 'F', 116), +(193755, 'Jaslynn', 2007, 'F', 116), +(193756, 'Jiselle', 2007, 'F', 116), +(193757, 'Sana', 2007, 'F', 116), +(193758, 'Valencia', 2007, 'F', 116), +(193759, 'Zuleyka', 2007, 'F', 116), +(193760, 'Audrie', 2007, 'F', 115), +(193761, 'Bryce', 2007, 'F', 115), +(193762, 'Charisma', 2007, 'F', 115), +(193763, 'Evan', 2007, 'F', 115), +(193764, 'Jaquelyn', 2007, 'F', 115), +(193765, 'Joceline', 2007, 'F', 115), +(193766, 'Jolee', 2007, 'F', 115), +(193767, 'Keyana', 2007, 'F', 115), +(193768, 'Magnolia', 2007, 'F', 115), +(193769, 'Rayanna', 2007, 'F', 115), +(193770, 'Sloan', 2007, 'F', 115), +(193771, 'Alysha', 2007, 'F', 114), +(193772, 'Baileigh', 2007, 'F', 114), +(193773, 'Dayra', 2007, 'F', 114), +(193774, 'Gracee', 2007, 'F', 114), +(193775, 'Harmoni', 2007, 'F', 114), +(193776, 'Janna', 2007, 'F', 114), +(193777, 'Jena', 2007, 'F', 114), +(193778, 'Marjorie', 2007, 'F', 114), +(193779, 'Shaniah', 2007, 'F', 114), +(193780, 'Shanna', 2007, 'F', 114), +(193781, 'Shanya', 2007, 'F', 114), +(193782, 'Shylah', 2007, 'F', 114), +(193783, 'Amie', 2007, 'F', 113), +(193784, 'Breanne', 2007, 'F', 113), +(193785, 'Haileigh', 2007, 'F', 113), +(193786, 'Katlynn', 2007, 'F', 113), +(193787, 'Kaylan', 2007, 'F', 113), +(193788, 'Keasia', 2007, 'F', 113), +(193789, 'Marion', 2007, 'F', 113), +(193790, 'Rhyan', 2007, 'F', 113), +(193791, 'Rosalyn', 2007, 'F', 113), +(193792, 'Tatiyana', 2007, 'F', 113), +(193793, 'Yessica', 2007, 'F', 113), +(193794, 'Anai', 2007, 'F', 112), +(193795, 'Ariyah', 2007, 'F', 112), +(193796, 'Austyn', 2007, 'F', 112), +(193797, 'Avary', 2007, 'F', 112), +(193798, 'Brooklynne', 2007, 'F', 112), +(193799, 'Giulia', 2007, 'F', 112), +(193800, 'Journee', 2007, 'F', 112), +(193801, 'Moira', 2007, 'F', 112), +(193802, 'Semaj', 2007, 'F', 112), +(193803, 'Amaria', 2007, 'F', 111), +(193804, 'Cordelia', 2007, 'F', 111), +(193805, 'Ellis', 2007, 'F', 111), +(193806, 'Elora', 2007, 'F', 111), +(193807, 'Kameryn', 2007, 'F', 111), +(193808, 'Kloey', 2007, 'F', 111), +(193809, 'Malorie', 2007, 'F', 111), +(193810, 'Olga', 2007, 'F', 111), +(193811, 'Zaida', 2007, 'F', 111), +(193812, 'Flora', 2007, 'F', 110), +(193813, 'Isobel', 2007, 'F', 110), +(193814, 'Kenadi', 2007, 'F', 110), +(193815, 'Meaghan', 2007, 'F', 110), +(193816, 'Ysabella', 2007, 'F', 110), +(193817, 'Alecia', 2007, 'F', 109), +(193818, 'Audree', 2007, 'F', 109), +(193819, 'Cinthia', 2007, 'F', 109), +(193820, 'Connie', 2007, 'F', 109), +(193821, 'Freya', 2007, 'F', 109), +(193822, 'Gianni', 2007, 'F', 109), +(193823, 'Graci', 2007, 'F', 109), +(193824, 'Jessalyn', 2007, 'F', 109), +(193825, 'Kyrah', 2007, 'F', 109), +(193826, 'Lexis', 2007, 'F', 109), +(193827, 'Lillyann', 2007, 'F', 109), +(193828, 'Makala', 2007, 'F', 109), +(193829, 'Marisela', 2007, 'F', 109), +(193830, 'Scarlette', 2007, 'F', 109), +(193831, 'Serina', 2007, 'F', 109), +(193832, 'Abriana', 2007, 'F', 108), +(193833, 'Alexsandra', 2007, 'F', 108), +(193834, 'Alliyah', 2007, 'F', 108), +(193835, 'Betzy', 2007, 'F', 108), +(193836, 'Cami', 2007, 'F', 108), +(193837, 'Daira', 2007, 'F', 108), +(193838, 'Harleigh', 2007, 'F', 108), +(193839, 'Jadah', 2007, 'F', 108), +(193840, 'Katalina', 2007, 'F', 108), +(193841, 'Keanna', 2007, 'F', 108), +(193842, 'Kennady', 2007, 'F', 108), +(193843, 'Mariya', 2007, 'F', 108), +(193844, 'Nikita', 2007, 'F', 108), +(193845, 'Roxy', 2007, 'F', 108), +(193846, 'Sabine', 2007, 'F', 108), +(193847, 'Samarah', 2007, 'F', 108), +(193848, 'Sanya', 2007, 'F', 108), +(193849, 'Scout', 2007, 'F', 108), +(193850, 'Siri', 2007, 'F', 108), +(193851, 'Stefanie', 2007, 'F', 108), +(193852, 'Angelia', 2007, 'F', 107), +(193853, 'Kadyn', 2007, 'F', 107), +(193854, 'Laina', 2007, 'F', 107), +(193855, 'Louise', 2007, 'F', 107), +(193856, 'Lynette', 2007, 'F', 107), +(193857, 'Mariska', 2007, 'F', 107), +(193858, 'Michele', 2007, 'F', 107), +(193859, 'Raniya', 2007, 'F', 107), +(193860, 'Rena', 2007, 'F', 107), +(193861, 'Sapphire', 2007, 'F', 107), +(193862, 'Vienna', 2007, 'F', 107), +(193863, 'Vivianna', 2007, 'F', 107), +(193864, 'Anyah', 2007, 'F', 106), +(193865, 'Elysia', 2007, 'F', 106), +(193866, 'Emmerson', 2007, 'F', 106), +(193867, 'Esme', 2007, 'F', 106), +(193868, 'Estelle', 2007, 'F', 106), +(193869, 'Ileana', 2007, 'F', 106), +(193870, 'Irma', 2007, 'F', 106), +(193871, 'Kristal', 2007, 'F', 106), +(193872, 'Leandra', 2007, 'F', 106), +(193873, 'Magali', 2007, 'F', 106), +(193874, 'Marianne', 2007, 'F', 106), +(193875, 'Mayah', 2007, 'F', 106), +(193876, 'Monika', 2007, 'F', 106), +(193877, 'Niyah', 2007, 'F', 106), +(193878, 'Sayuri', 2007, 'F', 106), +(193879, 'Tahlia', 2007, 'F', 106), +(193880, 'Xitlali', 2007, 'F', 106), +(193881, 'Zoya', 2007, 'F', 106), +(193882, 'Akayla', 2007, 'F', 105), +(193883, 'Arissa', 2007, 'F', 105), +(193884, 'Billie', 2007, 'F', 105), +(193885, 'Darla', 2007, 'F', 105), +(193886, 'Gisel', 2007, 'F', 105), +(193887, 'Jalyssa', 2007, 'F', 105), +(193888, 'Kenadee', 2007, 'F', 105), +(193889, 'Madelin', 2007, 'F', 105), +(193890, 'Milani', 2007, 'F', 105), +(193891, 'Remy', 2007, 'F', 105), +(193892, 'Sonja', 2007, 'F', 105), +(193893, 'Taleah', 2007, 'F', 105), +(193894, 'Chanelle', 2007, 'F', 104), +(193895, 'Devorah', 2007, 'F', 104), +(193896, 'Franchesca', 2007, 'F', 104), +(193897, 'Josefina', 2007, 'F', 104), +(193898, 'Keagan', 2007, 'F', 104), +(193899, 'Kim', 2007, 'F', 104), +(193900, 'Liza', 2007, 'F', 104), +(193901, 'Loretta', 2007, 'F', 104), +(193902, 'Mattison', 2007, 'F', 104), +(193903, 'Maycee', 2007, 'F', 104), +(193904, 'Meah', 2007, 'F', 104), +(193905, 'Olyvia', 2007, 'F', 104), +(193906, 'Romina', 2007, 'F', 104), +(193907, 'Vivien', 2007, 'F', 104), +(193908, 'Ari', 2007, 'F', 103), +(193909, 'Avani', 2007, 'F', 103), +(193910, 'Bianka', 2007, 'F', 103), +(193911, 'Blessing', 2007, 'F', 103), +(193912, 'Britany', 2007, 'F', 103), +(193913, 'Ciarra', 2007, 'F', 103), +(193914, 'Dynasty', 2007, 'F', 103), +(193915, 'Ester', 2007, 'F', 103), +(193916, 'Haidyn', 2007, 'F', 103), +(193917, 'Justina', 2007, 'F', 103), +(193918, 'Kaileigh', 2007, 'F', 103), +(193919, 'Kennadi', 2007, 'F', 103), +(193920, 'Kierstin', 2007, 'F', 103), +(193921, 'Liv', 2007, 'F', 103), +(193922, 'Mercedez', 2007, 'F', 103), +(193923, 'Naomy', 2007, 'F', 103), +(193924, 'Neela', 2007, 'F', 103), +(193925, 'Preslie', 2007, 'F', 103), +(193926, 'Quincy', 2007, 'F', 103), +(193927, 'Zora', 2007, 'F', 103), +(193928, 'Arriana', 2007, 'F', 102), +(193929, 'Carter', 2007, 'F', 102), +(193930, 'Cori', 2007, 'F', 102), +(193931, 'Emmie', 2007, 'F', 102), +(193932, 'Jenesis', 2007, 'F', 102), +(193933, 'Jesenia', 2007, 'F', 102), +(193934, 'Joann', 2007, 'F', 102), +(193935, 'Kaili', 2007, 'F', 102), +(193936, 'Kaytlin', 2007, 'F', 102), +(193937, 'Mikaylah', 2007, 'F', 102), +(193938, 'Naya', 2007, 'F', 102), +(193939, 'Sequoia', 2007, 'F', 102), +(193940, 'Acacia', 2007, 'F', 101), +(193941, 'Alonna', 2007, 'F', 101), +(193942, 'Analicia', 2007, 'F', 101), +(193943, 'Anushka', 2007, 'F', 101), +(193944, 'Autum', 2007, 'F', 101), +(193945, 'Daija', 2007, 'F', 101), +(193946, 'Daijah', 2007, 'F', 101), +(193947, 'Davina', 2007, 'F', 101), +(193948, 'Dejah', 2007, 'F', 101), +(193949, 'Griselda', 2007, 'F', 101), +(193950, 'Honey', 2007, 'F', 101), +(193951, 'Josalyn', 2007, 'F', 101), +(193952, 'Joselyne', 2007, 'F', 101), +(193953, 'Lili', 2007, 'F', 101), +(193954, 'Mattea', 2007, 'F', 101), +(193955, 'Oriana', 2007, 'F', 101), +(193956, 'Addilyn', 2007, 'F', 100), +(193957, 'Adisyn', 2007, 'F', 100), +(193958, 'Aleyah', 2007, 'F', 100), +(193959, 'Ameera', 2007, 'F', 100), +(193960, 'Ashlie', 2007, 'F', 100), +(193961, 'Brennan', 2007, 'F', 100), +(193962, 'Catelyn', 2007, 'F', 100), +(193963, 'Christianna', 2007, 'F', 100), +(193964, 'Cooper', 2007, 'F', 100), +(193965, 'Dasha', 2007, 'F', 100), +(193966, 'Jessi', 2007, 'F', 100), +(193967, 'Kalista', 2007, 'F', 100), +(193968, 'Kaydee', 2007, 'F', 100), +(193969, 'Laela', 2007, 'F', 100), +(193970, 'Lindy', 2007, 'F', 100), +(193971, 'Madelyne', 2007, 'F', 100), +(193972, 'Maylin', 2007, 'F', 100), +(193973, 'Pyper', 2007, 'F', 100), +(193974, 'Rosario', 2007, 'F', 100), +(193975, 'Selma', 2007, 'F', 100), +(193976, 'Sinai', 2007, 'F', 100), +(193977, 'Tamiya', 2007, 'F', 100), +(193978, 'Tyanna', 2007, 'F', 100), +(193979, 'Valarie', 2007, 'F', 100), +(193980, 'Viola', 2007, 'F', 100), +(193981, 'Winnie', 2007, 'F', 100), +(193982, 'Jacob', 2007, 'M', 24252), +(193983, 'Michael', 2007, 'M', 21964), +(193984, 'Ethan', 2007, 'M', 21015), +(193985, 'Joshua', 2007, 'M', 20639), +(193986, 'Daniel', 2007, 'M', 20231), +(193987, 'Christopher', 2007, 'M', 19998), +(193988, 'Anthony', 2007, 'M', 19609), +(193989, 'William', 2007, 'M', 18869), +(193990, 'Matthew', 2007, 'M', 18722), +(193991, 'Andrew', 2007, 'M', 18439), +(193992, 'Alexander', 2007, 'M', 18128), +(193993, 'David', 2007, 'M', 17515), +(193994, 'Joseph', 2007, 'M', 17314), +(193995, 'Noah', 2007, 'M', 16584), +(193996, 'James', 2007, 'M', 15941), +(193997, 'Ryan', 2007, 'M', 15700), +(193998, 'Logan', 2007, 'M', 15311), +(193999, 'Jayden', 2007, 'M', 15224), +(194000, 'John', 2007, 'M', 14423), +(194001, 'Nicholas', 2007, 'M', 14350), +(194002, 'Tyler', 2007, 'M', 14080), +(194003, 'Christian', 2007, 'M', 14046), +(194004, 'Jonathan', 2007, 'M', 13783), +(194005, 'Nathan', 2007, 'M', 13582), +(194006, 'Samuel', 2007, 'M', 13345), +(194007, 'Benjamin', 2007, 'M', 13263), +(194008, 'Aiden', 2007, 'M', 13093), +(194009, 'Gabriel', 2007, 'M', 12894), +(194010, 'Dylan', 2007, 'M', 12804), +(194011, 'Elijah', 2007, 'M', 12392), +(194012, 'Brandon', 2007, 'M', 12130), +(194013, 'Gavin', 2007, 'M', 11851), +(194014, 'Jackson', 2007, 'M', 11656), +(194015, 'Angel', 2007, 'M', 11362), +(194016, 'Jose', 2007, 'M', 11244), +(194017, 'Caleb', 2007, 'M', 10935), +(194018, 'Mason', 2007, 'M', 10761), +(194019, 'Jack', 2007, 'M', 10666), +(194020, 'Kevin', 2007, 'M', 10529), +(194021, 'Evan', 2007, 'M', 10287), +(194022, 'Isaac', 2007, 'M', 10251), +(194023, 'Zachary', 2007, 'M', 10210), +(194024, 'Isaiah', 2007, 'M', 10101), +(194025, 'Justin', 2007, 'M', 10038), +(194026, 'Jordan', 2007, 'M', 10034), +(194027, 'Luke', 2007, 'M', 9601), +(194028, 'Robert', 2007, 'M', 9366), +(194029, 'Austin', 2007, 'M', 9184), +(194030, 'Landon', 2007, 'M', 9093), +(194031, 'Cameron', 2007, 'M', 8973), +(194032, 'Aaron', 2007, 'M', 8932), +(194033, 'Thomas', 2007, 'M', 8921), +(194034, 'Lucas', 2007, 'M', 8749), +(194035, 'Aidan', 2007, 'M', 8418), +(194036, 'Connor', 2007, 'M', 8320), +(194037, 'Owen', 2007, 'M', 8243), +(194038, 'Diego', 2007, 'M', 8211), +(194039, 'Hunter', 2007, 'M', 8197), +(194040, 'Jason', 2007, 'M', 8108), +(194041, 'Luis', 2007, 'M', 8045), +(194042, 'Adrian', 2007, 'M', 7730), +(194043, 'Charles', 2007, 'M', 7448), +(194044, 'Juan', 2007, 'M', 7413), +(194045, 'Brayden', 2007, 'M', 7219), +(194046, 'Adam', 2007, 'M', 6779), +(194047, 'Julian', 2007, 'M', 6774), +(194048, 'Jeremiah', 2007, 'M', 6614), +(194049, 'Xavier', 2007, 'M', 6551), +(194050, 'Wyatt', 2007, 'M', 6520), +(194051, 'Carlos', 2007, 'M', 6408), +(194052, 'Sebastian', 2007, 'M', 6270), +(194053, 'Hayden', 2007, 'M', 6269), +(194054, 'Alex', 2007, 'M', 6267), +(194055, 'Jaden', 2007, 'M', 6249), +(194056, 'Ian', 2007, 'M', 6247), +(194057, 'Sean', 2007, 'M', 6236), +(194058, 'Jesus', 2007, 'M', 6216), +(194059, 'Bryan', 2007, 'M', 6174), +(194060, 'Chase', 2007, 'M', 6149), +(194061, 'Carter', 2007, 'M', 6099), +(194062, 'Brian', 2007, 'M', 6073), +(194063, 'Nathaniel', 2007, 'M', 6054), +(194064, 'Eric', 2007, 'M', 5951), +(194065, 'Cole', 2007, 'M', 5700), +(194066, 'Dominic', 2007, 'M', 5411), +(194067, 'Kyle', 2007, 'M', 5353), +(194068, 'Tristan', 2007, 'M', 5330), +(194069, 'Blake', 2007, 'M', 5269), +(194070, 'Liam', 2007, 'M', 5134), +(194071, 'Carson', 2007, 'M', 5119), +(194072, 'Henry', 2007, 'M', 5110), +(194073, 'Caden', 2007, 'M', 5043), +(194074, 'Brady', 2007, 'M', 4950), +(194075, 'Miguel', 2007, 'M', 4898), +(194076, 'Antonio', 2007, 'M', 4630), +(194077, 'Cooper', 2007, 'M', 4618), +(194078, 'Steven', 2007, 'M', 4546), +(194079, 'Kaden', 2007, 'M', 4518), +(194080, 'Timothy', 2007, 'M', 4430), +(194081, 'Richard', 2007, 'M', 4416), +(194082, 'Devin', 2007, 'M', 4408), +(194083, 'Ayden', 2007, 'M', 4318), +(194084, 'Alejandro', 2007, 'M', 4277), +(194085, 'Victor', 2007, 'M', 4266), +(194086, 'Brody', 2007, 'M', 4219), +(194087, 'Josiah', 2007, 'M', 4218), +(194088, 'Jesse', 2007, 'M', 4122), +(194089, 'Parker', 2007, 'M', 4070), +(194090, 'Riley', 2007, 'M', 3969), +(194091, 'Vincent', 2007, 'M', 3956), +(194092, 'Bryce', 2007, 'M', 3935), +(194093, 'Jake', 2007, 'M', 3877), +(194094, 'Kaleb', 2007, 'M', 3812), +(194095, 'Preston', 2007, 'M', 3788), +(194096, 'Seth', 2007, 'M', 3763), +(194097, 'Patrick', 2007, 'M', 3731), +(194098, 'Marcus', 2007, 'M', 3662), +(194099, 'Colton', 2007, 'M', 3656), +(194100, 'Colin', 2007, 'M', 3608), +(194101, 'Cody', 2007, 'M', 3554), +(194102, 'Oscar', 2007, 'M', 3546), +(194103, 'Jeremy', 2007, 'M', 3425), +(194104, 'Joel', 2007, 'M', 3418), +(194105, 'Ashton', 2007, 'M', 3377), +(194106, 'Peyton', 2007, 'M', 3371), +(194107, 'Micah', 2007, 'M', 3305), +(194108, 'Ivan', 2007, 'M', 3271), +(194109, 'Jorge', 2007, 'M', 3267), +(194110, 'Alan', 2007, 'M', 3245), +(194111, 'Eli', 2007, 'M', 3233), +(194112, 'Omar', 2007, 'M', 3213), +(194113, 'Levi', 2007, 'M', 3198), +(194114, 'Nolan', 2007, 'M', 3170), +(194115, 'Giovanni', 2007, 'M', 3108), +(194116, 'Kenneth', 2007, 'M', 3102), +(194117, 'Trevor', 2007, 'M', 3058), +(194118, 'Damian', 2007, 'M', 2984), +(194119, 'Mark', 2007, 'M', 2967), +(194120, 'Cristian', 2007, 'M', 2916), +(194121, 'Oliver', 2007, 'M', 2907), +(194122, 'Max', 2007, 'M', 2879), +(194123, 'Derek', 2007, 'M', 2852), +(194124, 'Eduardo', 2007, 'M', 2844), +(194125, 'Nicolas', 2007, 'M', 2832), +(194126, 'Edward', 2007, 'M', 2820), +(194127, 'Ricardo', 2007, 'M', 2779), +(194128, 'Paul', 2007, 'M', 2761), +(194129, 'George', 2007, 'M', 2757), +(194130, 'Gage', 2007, 'M', 2730), +(194131, 'Tanner', 2007, 'M', 2727), +(194132, 'Francisco', 2007, 'M', 2725), +(194133, 'Andres', 2007, 'M', 2718), +(194134, 'Maxwell', 2007, 'M', 2713), +(194135, 'Emmanuel', 2007, 'M', 2708), +(194136, 'Malachi', 2007, 'M', 2704), +(194137, 'Braden', 2007, 'M', 2687), +(194138, 'Fernando', 2007, 'M', 2686), +(194139, 'Alexis', 2007, 'M', 2653), +(194140, 'Conner', 2007, 'M', 2627), +(194141, 'Jared', 2007, 'M', 2599), +(194142, 'Grant', 2007, 'M', 2568), +(194143, 'Garrett', 2007, 'M', 2559), +(194144, 'Javier', 2007, 'M', 2546), +(194145, 'Leonardo', 2007, 'M', 2525), +(194146, 'Jonah', 2007, 'M', 2509), +(194147, 'Erick', 2007, 'M', 2432), +(194148, 'Cesar', 2007, 'M', 2425), +(194149, 'Edgar', 2007, 'M', 2419), +(194150, 'Manuel', 2007, 'M', 2412), +(194151, 'Travis', 2007, 'M', 2402), +(194152, 'Edwin', 2007, 'M', 2393), +(194153, 'Stephen', 2007, 'M', 2369), +(194154, 'Spencer', 2007, 'M', 2365), +(194155, 'Elias', 2007, 'M', 2360), +(194156, 'Shawn', 2007, 'M', 2346), +(194157, 'Cayden', 2007, 'M', 2336), +(194158, 'Peter', 2007, 'M', 2335), +(194159, 'Trenton', 2007, 'M', 2333), +(194160, 'Bryson', 2007, 'M', 2320), +(194161, 'Mario', 2007, 'M', 2285), +(194162, 'Josue', 2007, 'M', 2272), +(194163, 'Damien', 2007, 'M', 2255), +(194164, 'Hector', 2007, 'M', 2237), +(194165, 'Shane', 2007, 'M', 2235), +(194166, 'Collin', 2007, 'M', 2224), +(194167, 'Kayden', 2007, 'M', 2195), +(194168, 'Johnathan', 2007, 'M', 2147), +(194169, 'Abraham', 2007, 'M', 2140), +(194170, 'Miles', 2007, 'M', 2132), +(194171, 'Jaxon', 2007, 'M', 2129), +(194172, 'Jeffrey', 2007, 'M', 2124), +(194173, 'Jaiden', 2007, 'M', 2119), +(194174, 'Jaylen', 2007, 'M', 2084), +(194175, 'Bradley', 2007, 'M', 2074), +(194176, 'Wesley', 2007, 'M', 2059), +(194177, 'Sergio', 2007, 'M', 2042), +(194178, 'Donovan', 2007, 'M', 2038), +(194179, 'Jace', 2007, 'M', 2030), +(194180, 'Erik', 2007, 'M', 2027), +(194181, 'Santiago', 2007, 'M', 1966), +(194182, 'Dakota', 2007, 'M', 1953), +(194183, 'Raymond', 2007, 'M', 1952), +(194184, 'Landen', 2007, 'M', 1950), +(194185, 'Israel', 2007, 'M', 1934), +(194186, 'Brendan', 2007, 'M', 1926), +(194187, 'Hudson', 2007, 'M', 1895), +(194188, 'Roman', 2007, 'M', 1885), +(194189, 'Martin', 2007, 'M', 1877), +(194190, 'Marco', 2007, 'M', 1866), +(194191, 'Devon', 2007, 'M', 1857), +(194192, 'Grayson', 2007, 'M', 1850), +(194193, 'Dalton', 2007, 'M', 1832), +(194194, 'Drew', 2007, 'M', 1830), +(194195, 'Andre', 2007, 'M', 1828), +(194196, 'Andy', 2007, 'M', 1827), +(194197, 'Braxton', 2007, 'M', 1772), +(194198, 'Ryder', 2007, 'M', 1753), +(194199, 'Camden', 2007, 'M', 1747), +(194200, 'Roberto', 2007, 'M', 1747), +(194201, 'Kaiden', 2007, 'M', 1745), +(194202, 'Avery', 2007, 'M', 1741), +(194203, 'Keegan', 2007, 'M', 1706), +(194204, 'Gregory', 2007, 'M', 1678), +(194205, 'Lincoln', 2007, 'M', 1655), +(194206, 'Harrison', 2007, 'M', 1653), +(194207, 'Dominick', 2007, 'M', 1629), +(194208, 'Maddox', 2007, 'M', 1628), +(194209, 'Rafael', 2007, 'M', 1621), +(194210, 'Calvin', 2007, 'M', 1614), +(194211, 'Pedro', 2007, 'M', 1609), +(194212, 'Troy', 2007, 'M', 1602), +(194213, 'Zane', 2007, 'M', 1596), +(194214, 'Asher', 2007, 'M', 1576), +(194215, 'Dillon', 2007, 'M', 1548), +(194216, 'Zion', 2007, 'M', 1548), +(194217, 'Lukas', 2007, 'M', 1547), +(194218, 'Ty', 2007, 'M', 1532), +(194219, 'Leo', 2007, 'M', 1527), +(194220, 'Drake', 2007, 'M', 1520), +(194221, 'Sawyer', 2007, 'M', 1510), +(194222, 'Johnny', 2007, 'M', 1502), +(194223, 'Griffin', 2007, 'M', 1485), +(194224, 'Ruben', 2007, 'M', 1475), +(194225, 'Chance', 2007, 'M', 1471), +(194226, 'Tucker', 2007, 'M', 1464), +(194227, 'Corbin', 2007, 'M', 1462), +(194228, 'Clayton', 2007, 'M', 1443), +(194229, 'Ezekiel', 2007, 'M', 1437), +(194230, 'Taylor', 2007, 'M', 1430), +(194231, 'Dawson', 2007, 'M', 1407), +(194232, 'Corey', 2007, 'M', 1401), +(194233, 'Kai', 2007, 'M', 1397), +(194234, 'Fabian', 2007, 'M', 1396), +(194235, 'Marcos', 2007, 'M', 1388), +(194236, 'Raul', 2007, 'M', 1387), +(194237, 'Emanuel', 2007, 'M', 1381), +(194238, 'Rylan', 2007, 'M', 1374), +(194239, 'Simon', 2007, 'M', 1349), +(194240, 'Angelo', 2007, 'M', 1336), +(194241, 'Kameron', 2007, 'M', 1335), +(194242, 'Gerardo', 2007, 'M', 1334), +(194243, 'Frank', 2007, 'M', 1327), +(194244, 'Brock', 2007, 'M', 1326), +(194245, 'Quinn', 2007, 'M', 1320), +(194246, 'Aden', 2007, 'M', 1313), +(194247, 'Julio', 2007, 'M', 1305), +(194248, 'Derrick', 2007, 'M', 1293), +(194249, 'Jalen', 2007, 'M', 1280), +(194250, 'Tyson', 2007, 'M', 1269), +(194251, 'Dante', 2007, 'M', 1267), +(194252, 'Skyler', 2007, 'M', 1260), +(194253, 'Dustin', 2007, 'M', 1259), +(194254, 'Malik', 2007, 'M', 1254), +(194255, 'Emilio', 2007, 'M', 1246), +(194256, 'Scott', 2007, 'M', 1246), +(194257, 'Armando', 2007, 'M', 1244), +(194258, 'Enrique', 2007, 'M', 1241), +(194259, 'Kyler', 2007, 'M', 1232), +(194260, 'Payton', 2007, 'M', 1230), +(194261, 'Xander', 2007, 'M', 1227), +(194262, 'Jaime', 2007, 'M', 1226), +(194263, 'Mateo', 2007, 'M', 1225), +(194264, 'Colby', 2007, 'M', 1219), +(194265, 'Caiden', 2007, 'M', 1213), +(194266, 'Trey', 2007, 'M', 1210), +(194267, 'Brennan', 2007, 'M', 1207), +(194268, 'Axel', 2007, 'M', 1195), +(194269, 'Allen', 2007, 'M', 1190), +(194270, 'Trent', 2007, 'M', 1181), +(194271, 'Joaquin', 2007, 'M', 1180), +(194272, 'Rodrigo', 2007, 'M', 1177), +(194273, 'Phillip', 2007, 'M', 1174), +(194274, 'Ronald', 2007, 'M', 1172), +(194275, 'Cade', 2007, 'M', 1171), +(194276, 'Lorenzo', 2007, 'M', 1171), +(194277, 'Gael', 2007, 'M', 1166), +(194278, 'Jude', 2007, 'M', 1159), +(194279, 'Keith', 2007, 'M', 1154), +(194280, 'Myles', 2007, 'M', 1139), +(194281, 'Gustavo', 2007, 'M', 1136), +(194282, 'Theodore', 2007, 'M', 1135), +(194283, 'Julius', 2007, 'M', 1120), +(194284, 'Jakob', 2007, 'M', 1108), +(194285, 'Mitchell', 2007, 'M', 1106), +(194286, 'Pablo', 2007, 'M', 1095), +(194287, 'Darius', 2007, 'M', 1086), +(194288, 'Adan', 2007, 'M', 1080), +(194289, 'Saul', 2007, 'M', 1069), +(194290, 'Danny', 2007, 'M', 1063), +(194291, 'Brayan', 2007, 'M', 1059), +(194292, 'Luca', 2007, 'M', 1056), +(194293, 'Jaxson', 2007, 'M', 1055), +(194294, 'Zander', 2007, 'M', 1053), +(194295, 'Alberto', 2007, 'M', 1040), +(194296, 'Leland', 2007, 'M', 1025), +(194297, 'Lane', 2007, 'M', 1015), +(194298, 'Amir', 2007, 'M', 1010), +(194299, 'Randy', 2007, 'M', 1002), +(194300, 'Brenden', 2007, 'M', 1001), +(194301, 'Tony', 2007, 'M', 1000), +(194302, 'Donald', 2007, 'M', 996), +(194303, 'Maximus', 2007, 'M', 995), +(194304, 'Jerry', 2007, 'M', 991), +(194305, 'Casey', 2007, 'M', 985), +(194306, 'Braeden', 2007, 'M', 979), +(194307, 'Ismael', 2007, 'M', 977), +(194308, 'Arturo', 2007, 'M', 972), +(194309, 'Jonas', 2007, 'M', 971), +(194310, 'Cash', 2007, 'M', 968), +(194311, 'Dennis', 2007, 'M', 962), +(194312, 'Larry', 2007, 'M', 962), +(194313, 'Jimmy', 2007, 'M', 959), +(194314, 'Brett', 2007, 'M', 958), +(194315, 'Charlie', 2007, 'M', 952), +(194316, 'Curtis', 2007, 'M', 950), +(194317, 'Dane', 2007, 'M', 949), +(194318, 'Emiliano', 2007, 'M', 949), +(194319, 'Zackary', 2007, 'M', 949), +(194320, 'Dallas', 2007, 'M', 947), +(194321, 'Ezra', 2007, 'M', 947), +(194322, 'Grady', 2007, 'M', 944), +(194323, 'Tristen', 2007, 'M', 941), +(194324, 'Abel', 2007, 'M', 940), +(194325, 'Silas', 2007, 'M', 937), +(194326, 'Louis', 2007, 'M', 936), +(194327, 'Anderson', 2007, 'M', 926), +(194328, 'Mathew', 2007, 'M', 925), +(194329, 'Declan', 2007, 'M', 923), +(194330, 'Alfredo', 2007, 'M', 908), +(194331, 'Chris', 2007, 'M', 904), +(194332, 'Dean', 2007, 'M', 904), +(194333, 'Easton', 2007, 'M', 903), +(194334, 'Jayson', 2007, 'M', 895), +(194335, 'Kingston', 2007, 'M', 893), +(194336, 'Esteban', 2007, 'M', 892), +(194337, 'Elliot', 2007, 'M', 881), +(194338, 'Keaton', 2007, 'M', 880), +(194339, 'Marvin', 2007, 'M', 880), +(194340, 'Philip', 2007, 'M', 879), +(194341, 'Amari', 2007, 'M', 877), +(194342, 'Darren', 2007, 'M', 875), +(194343, 'Nehemiah', 2007, 'M', 873), +(194344, 'Alec', 2007, 'M', 872), +(194345, 'Braydon', 2007, 'M', 870), +(194346, 'Rowan', 2007, 'M', 869), +(194347, 'Moises', 2007, 'M', 861), +(194348, 'Orlando', 2007, 'M', 859), +(194349, 'Weston', 2007, 'M', 852), +(194350, 'Nickolas', 2007, 'M', 841), +(194351, 'Albert', 2007, 'M', 830), +(194352, 'Bennett', 2007, 'M', 826), +(194353, 'Lance', 2007, 'M', 826), +(194354, 'Ricky', 2007, 'M', 821), +(194355, 'Arthur', 2007, 'M', 818), +(194356, 'Braylon', 2007, 'M', 818), +(194357, 'Quentin', 2007, 'M', 816), +(194358, 'Holden', 2007, 'M', 811), +(194359, 'Ramon', 2007, 'M', 811), +(194360, 'Walter', 2007, 'M', 810), +(194361, 'Felix', 2007, 'M', 809), +(194362, 'Everett', 2007, 'M', 804), +(194363, 'Graham', 2007, 'M', 797), +(194364, 'Elliott', 2007, 'M', 793), +(194365, 'Issac', 2007, 'M', 792), +(194366, 'Mauricio', 2007, 'M', 792), +(194367, 'Finn', 2007, 'M', 783), +(194368, 'Ali', 2007, 'M', 780), +(194369, 'Gary', 2007, 'M', 778), +(194370, 'Jameson', 2007, 'M', 777), +(194371, 'Cohen', 2007, 'M', 774), +(194372, 'Camron', 2007, 'M', 771), +(194373, 'Lawrence', 2007, 'M', 771), +(194374, 'Shaun', 2007, 'M', 769), +(194375, 'Davis', 2007, 'M', 756), +(194376, 'Douglas', 2007, 'M', 755), +(194377, 'Jay', 2007, 'M', 749), +(194378, 'Justice', 2007, 'M', 741), +(194379, 'Nikolas', 2007, 'M', 741), +(194380, 'Uriel', 2007, 'M', 741), +(194381, 'Hugo', 2007, 'M', 739), +(194382, 'Yahir', 2007, 'M', 738), +(194383, 'Joe', 2007, 'M', 731), +(194384, 'Ernesto', 2007, 'M', 729), +(194385, 'Morgan', 2007, 'M', 728), +(194386, 'Salvador', 2007, 'M', 718), +(194387, 'Javon', 2007, 'M', 713), +(194388, 'Bryant', 2007, 'M', 712), +(194389, 'Jonathon', 2007, 'M', 712), +(194390, 'Russell', 2007, 'M', 712), +(194391, 'Jayce', 2007, 'M', 711), +(194392, 'Tate', 2007, 'M', 711), +(194393, 'Marshall', 2007, 'M', 710), +(194394, 'Maurice', 2007, 'M', 707), +(194395, 'Cory', 2007, 'M', 706), +(194396, 'Jaydon', 2007, 'M', 706), +(194397, 'Eddie', 2007, 'M', 703), +(194398, 'Greyson', 2007, 'M', 702), +(194399, 'Jamari', 2007, 'M', 695), +(194400, 'Kristopher', 2007, 'M', 693), +(194401, 'Phoenix', 2007, 'M', 693), +(194402, 'Judah', 2007, 'M', 691), +(194403, 'Beau', 2007, 'M', 690), +(194404, 'Jadon', 2007, 'M', 683), +(194405, 'Reid', 2007, 'M', 679), +(194406, 'Desmond', 2007, 'M', 676), +(194407, 'Reece', 2007, 'M', 676), +(194408, 'Chandler', 2007, 'M', 674), +(194409, 'Damon', 2007, 'M', 674), +(194410, 'Cruz', 2007, 'M', 672), +(194411, 'Aldo', 2007, 'M', 666), +(194412, 'Chad', 2007, 'M', 657), +(194413, 'Kade', 2007, 'M', 656), +(194414, 'Nasir', 2007, 'M', 656), +(194415, 'Micheal', 2007, 'M', 647), +(194416, 'Davion', 2007, 'M', 646), +(194417, 'Talon', 2007, 'M', 639), +(194418, 'Zachariah', 2007, 'M', 639), +(194419, 'Rodney', 2007, 'M', 637), +(194420, 'Bruce', 2007, 'M', 636), +(194421, 'Noel', 2007, 'M', 635), +(194422, 'Izaiah', 2007, 'M', 634), +(194423, 'Noe', 2007, 'M', 634), +(194424, 'Marc', 2007, 'M', 630), +(194425, 'Melvin', 2007, 'M', 627), +(194426, 'Rocco', 2007, 'M', 626), +(194427, 'Carl', 2007, 'M', 625), +(194428, 'Isiah', 2007, 'M', 625), +(194429, 'Kelvin', 2007, 'M', 623), +(194430, 'Mekhi', 2007, 'M', 621), +(194431, 'Reed', 2007, 'M', 616), +(194432, 'Jamarion', 2007, 'M', 615), +(194433, 'Solomon', 2007, 'M', 614), +(194434, 'Sam', 2007, 'M', 612), +(194435, 'Guillermo', 2007, 'M', 608), +(194436, 'Terry', 2007, 'M', 608), +(194437, 'Moses', 2007, 'M', 605), +(194438, 'Deandre', 2007, 'M', 603), +(194439, 'Brodie', 2007, 'M', 602), +(194440, 'Reese', 2007, 'M', 602), +(194441, 'Jaylin', 2007, 'M', 600), +(194442, 'Walker', 2007, 'M', 600), +(194443, 'Nathanael', 2007, 'M', 596), +(194444, 'Mohamed', 2007, 'M', 590), +(194445, 'Cyrus', 2007, 'M', 586), +(194446, 'Jasper', 2007, 'M', 585), +(194447, 'Colten', 2007, 'M', 584), +(194448, 'Roger', 2007, 'M', 582), +(194449, 'Nelson', 2007, 'M', 579), +(194450, 'Franklin', 2007, 'M', 578), +(194451, 'Cristopher', 2007, 'M', 576), +(194452, 'Kobe', 2007, 'M', 572), +(194453, 'Tobias', 2007, 'M', 569), +(194454, 'Terrance', 2007, 'M', 568), +(194455, 'Porter', 2007, 'M', 566), +(194456, 'Kristian', 2007, 'M', 565), +(194457, 'Felipe', 2007, 'M', 564), +(194458, 'Skylar', 2007, 'M', 562), +(194459, 'Jermaine', 2007, 'M', 561), +(194460, 'Quinton', 2007, 'M', 559), +(194461, 'Landyn', 2007, 'M', 556), +(194462, 'Branden', 2007, 'M', 555), +(194463, 'Khalil', 2007, 'M', 555), +(194464, 'Leonel', 2007, 'M', 554), +(194465, 'Jeffery', 2007, 'M', 552), +(194466, 'Osvaldo', 2007, 'M', 551), +(194467, 'Billy', 2007, 'M', 546), +(194468, 'Pierce', 2007, 'M', 544), +(194469, 'Tommy', 2007, 'M', 543), +(194470, 'Demetrius', 2007, 'M', 541), +(194471, 'Dorian', 2007, 'M', 541), +(194472, 'Leon', 2007, 'M', 541), +(194473, 'Emerson', 2007, 'M', 537), +(194474, 'Jon', 2007, 'M', 537), +(194475, 'Quincy', 2007, 'M', 535), +(194476, 'Titus', 2007, 'M', 535), +(194477, 'Roy', 2007, 'M', 534), +(194478, 'Jessie', 2007, 'M', 532), +(194479, 'Johan', 2007, 'M', 529), +(194480, 'Romeo', 2007, 'M', 528), +(194481, 'Conor', 2007, 'M', 527), +(194482, 'Gunner', 2007, 'M', 524), +(194483, 'Maximiliano', 2007, 'M', 524), +(194484, 'Jamison', 2007, 'M', 523), +(194485, 'Kenny', 2007, 'M', 522), +(194486, 'Ariel', 2007, 'M', 521), +(194487, 'Bobby', 2007, 'M', 521), +(194488, 'Brent', 2007, 'M', 520), +(194489, 'Terrell', 2007, 'M', 520), +(194490, 'Isaias', 2007, 'M', 519), +(194491, 'Kellen', 2007, 'M', 519), +(194492, 'Alvin', 2007, 'M', 515), +(194493, 'Dayton', 2007, 'M', 514), +(194494, 'Warren', 2007, 'M', 513), +(194495, 'Maximilian', 2007, 'M', 511), +(194496, 'Rohan', 2007, 'M', 511), +(194497, 'Allan', 2007, 'M', 506), +(194498, 'Kody', 2007, 'M', 506), +(194499, 'Rene', 2007, 'M', 506), +(194500, 'Rogelio', 2007, 'M', 506), +(194501, 'Waylon', 2007, 'M', 501), +(194502, 'Alfonso', 2007, 'M', 499), +(194503, 'Byron', 2007, 'M', 496), +(194504, 'Trevon', 2007, 'M', 494), +(194505, 'Reginald', 2007, 'M', 493), +(194506, 'Keagan', 2007, 'M', 492), +(194507, 'Tomas', 2007, 'M', 489), +(194508, 'Ezequiel', 2007, 'M', 487), +(194509, 'Wade', 2007, 'M', 486), +(194510, 'Gideon', 2007, 'M', 485), +(194511, 'Brendon', 2007, 'M', 484), +(194512, 'Frederick', 2007, 'M', 484), +(194513, 'Jamal', 2007, 'M', 482), +(194514, 'Triston', 2007, 'M', 481), +(194515, 'Braiden', 2007, 'M', 480), +(194516, 'Brooks', 2007, 'M', 479), +(194517, 'Jett', 2007, 'M', 479), +(194518, 'Ryker', 2007, 'M', 479), +(194519, 'Kendall', 2007, 'M', 477), +(194520, 'Milo', 2007, 'M', 475), +(194521, 'Tristin', 2007, 'M', 474), +(194522, 'Karson', 2007, 'M', 473), +(194523, 'Wilson', 2007, 'M', 473), +(194524, 'Craig', 2007, 'M', 471), +(194525, 'Damion', 2007, 'M', 471), +(194526, 'Kendrick', 2007, 'M', 471), +(194527, 'Joey', 2007, 'M', 470), +(194528, 'Gerald', 2007, 'M', 469), +(194529, 'Orion', 2007, 'M', 469), +(194530, 'Willie', 2007, 'M', 469), +(194531, 'Alijah', 2007, 'M', 467), +(194532, 'Marlon', 2007, 'M', 467), +(194533, 'Ronan', 2007, 'M', 465), +(194534, 'Gunnar', 2007, 'M', 464), +(194535, 'River', 2007, 'M', 464), +(194536, 'Abram', 2007, 'M', 463), +(194537, 'Ari', 2007, 'M', 463), +(194538, 'Ahmad', 2007, 'M', 462), +(194539, 'Zachery', 2007, 'M', 461), +(194540, 'Toby', 2007, 'M', 460), +(194541, 'Blaine', 2007, 'M', 459), +(194542, 'Jase', 2007, 'M', 458), +(194543, 'Jaylon', 2007, 'M', 458), +(194544, 'Ulises', 2007, 'M', 457), +(194545, 'Paxton', 2007, 'M', 456), +(194546, 'Will', 2007, 'M', 456), +(194547, 'Maverick', 2007, 'M', 455), +(194548, 'Talan', 2007, 'M', 454), +(194549, 'Malcolm', 2007, 'M', 453), +(194550, 'Rolando', 2007, 'M', 452), +(194551, 'Marquis', 2007, 'M', 451), +(194552, 'Kieran', 2007, 'M', 450), +(194553, 'Terrence', 2007, 'M', 449), +(194554, 'Deshawn', 2007, 'M', 448), +(194555, 'Emmett', 2007, 'M', 448), +(194556, 'Ahmed', 2007, 'M', 446), +(194557, 'Steve', 2007, 'M', 446), +(194558, 'Harry', 2007, 'M', 445), +(194559, 'Darian', 2007, 'M', 444), +(194560, 'Gianni', 2007, 'M', 442), +(194561, 'Jairo', 2007, 'M', 441), +(194562, 'Davin', 2007, 'M', 440), +(194563, 'Moshe', 2007, 'M', 440), +(194564, 'Brycen', 2007, 'M', 439), +(194565, 'Rashad', 2007, 'M', 439), +(194566, 'Trace', 2007, 'M', 437), +(194567, 'Kolton', 2007, 'M', 436), +(194568, 'Ibrahim', 2007, 'M', 435), +(194569, 'Alonzo', 2007, 'M', 432), +(194570, 'Julien', 2007, 'M', 432), +(194571, 'Ramiro', 2007, 'M', 431), +(194572, 'Zayden', 2007, 'M', 430), +(194573, 'Cedric', 2007, 'M', 429), +(194574, 'Colt', 2007, 'M', 426), +(194575, 'Rodolfo', 2007, 'M', 426), +(194576, 'Gilberto', 2007, 'M', 424), +(194577, 'Johnathon', 2007, 'M', 424), +(194578, 'Jaeden', 2007, 'M', 421), +(194579, 'Vicente', 2007, 'M', 421), +(194580, 'Kamari', 2007, 'M', 419), +(194581, 'Dominik', 2007, 'M', 418), +(194582, 'Jefferson', 2007, 'M', 417), +(194583, 'Harley', 2007, 'M', 416), +(194584, 'Jerome', 2007, 'M', 416), +(194585, 'Camren', 2007, 'M', 415), +(194586, 'Darrell', 2007, 'M', 415), +(194587, 'Aydan', 2007, 'M', 414), +(194588, 'Tyrone', 2007, 'M', 414), +(194589, 'Zackery', 2007, 'M', 414), +(194590, 'August', 2007, 'M', 413), +(194591, 'Ben', 2007, 'M', 409), +(194592, 'Devan', 2007, 'M', 409), +(194593, 'Alvaro', 2007, 'M', 408), +(194594, 'Aryan', 2007, 'M', 405), +(194595, 'Valentin', 2007, 'M', 404), +(194596, 'Aron', 2007, 'M', 402), +(194597, 'Francis', 2007, 'M', 402), +(194598, 'Junior', 2007, 'M', 401), +(194599, 'Javion', 2007, 'M', 399), +(194600, 'Asa', 2007, 'M', 398), +(194601, 'Stanley', 2007, 'M', 398), +(194602, 'Sincere', 2007, 'M', 396), +(194603, 'Ryland', 2007, 'M', 395), +(194604, 'Jacoby', 2007, 'M', 394), +(194605, 'Matteo', 2007, 'M', 392), +(194606, 'Jabari', 2007, 'M', 391), +(194607, 'Xzavier', 2007, 'M', 390), +(194608, 'Boston', 2007, 'M', 388), +(194609, 'Mohammad', 2007, 'M', 388), +(194610, 'Deacon', 2007, 'M', 386), +(194611, 'Alexzander', 2007, 'M', 385), +(194612, 'Clark', 2007, 'M', 385), +(194613, 'Bradyn', 2007, 'M', 383), +(194614, 'Kale', 2007, 'M', 382), +(194615, 'Ronnie', 2007, 'M', 382), +(194616, 'Kole', 2007, 'M', 381), +(194617, 'Korbin', 2007, 'M', 381), +(194618, 'Lee', 2007, 'M', 381), +(194619, 'Ray', 2007, 'M', 381), +(194620, 'Armani', 2007, 'M', 380), +(194621, 'Efrain', 2007, 'M', 380), +(194622, 'Kane', 2007, 'M', 379), +(194623, 'Davian', 2007, 'M', 378), +(194624, 'Kolby', 2007, 'M', 378), +(194625, 'Gavyn', 2007, 'M', 377), +(194626, 'Amare', 2007, 'M', 376), +(194627, 'Omari', 2007, 'M', 376), +(194628, 'Adolfo', 2007, 'M', 375), +(194629, 'Adriel', 2007, 'M', 375), +(194630, 'Damarion', 2007, 'M', 375), +(194631, 'Tyree', 2007, 'M', 375), +(194632, 'Tyrese', 2007, 'M', 375), +(194633, 'Draven', 2007, 'M', 371), +(194634, 'Lawson', 2007, 'M', 371), +(194635, 'Brennen', 2007, 'M', 366), +(194636, 'Finnegan', 2007, 'M', 366), +(194637, 'Enzo', 2007, 'M', 365), +(194638, 'Elisha', 2007, 'M', 364), +(194639, 'Keenan', 2007, 'M', 364), +(194640, 'London', 2007, 'M', 364), +(194641, 'Alonso', 2007, 'M', 363), +(194642, 'Zechariah', 2007, 'M', 363), +(194643, 'Barrett', 2007, 'M', 362), +(194644, 'Jamie', 2007, 'M', 362), +(194645, 'Beckett', 2007, 'M', 361), +(194646, 'Davon', 2007, 'M', 360), +(194647, 'Kadin', 2007, 'M', 360), +(194648, 'Layne', 2007, 'M', 360), +(194649, 'Deven', 2007, 'M', 359), +(194650, 'Dwayne', 2007, 'M', 359), +(194651, 'Kason', 2007, 'M', 359), +(194652, 'Kian', 2007, 'M', 357), +(194653, 'Leonard', 2007, 'M', 356), +(194654, 'Bailey', 2007, 'M', 355), +(194655, 'Elvis', 2007, 'M', 355), +(194656, 'Teagan', 2007, 'M', 352), +(194657, 'Wayne', 2007, 'M', 352), +(194658, 'Eugene', 2007, 'M', 351), +(194659, 'Misael', 2007, 'M', 351), +(194660, 'Quintin', 2007, 'M', 350), +(194661, 'Antoine', 2007, 'M', 349), +(194662, 'Coleman', 2007, 'M', 349), +(194663, 'Harold', 2007, 'M', 349), +(194664, 'Nico', 2007, 'M', 348), +(194665, 'Gilbert', 2007, 'M', 347), +(194666, 'Atticus', 2007, 'M', 346), +(194667, 'Giovani', 2007, 'M', 345), +(194668, 'Krish', 2007, 'M', 345), +(194669, 'Mohammed', 2007, 'M', 345), +(194670, 'Frankie', 2007, 'M', 344), +(194671, 'Markus', 2007, 'M', 344), +(194672, 'Derick', 2007, 'M', 343), +(194673, 'Addison', 2007, 'M', 341), +(194674, 'Jorden', 2007, 'M', 340), +(194675, 'Lamar', 2007, 'M', 337), +(194676, 'Lewis', 2007, 'M', 337), +(194677, 'Braylen', 2007, 'M', 335), +(194678, 'Jadyn', 2007, 'M', 335), +(194679, 'Freddy', 2007, 'M', 333), +(194680, 'Isai', 2007, 'M', 333), +(194681, 'Randall', 2007, 'M', 333), +(194682, 'Raphael', 2007, 'M', 333), +(194683, 'Rhett', 2007, 'M', 332), +(194684, 'Kaeden', 2007, 'M', 331), +(194685, 'Muhammad', 2007, 'M', 330), +(194686, 'Rudy', 2007, 'M', 330), +(194687, 'Santino', 2007, 'M', 330), +(194688, 'Jaron', 2007, 'M', 329), +(194689, 'Nash', 2007, 'M', 327), +(194690, 'Alessandro', 2007, 'M', 326), +(194691, 'Kasey', 2007, 'M', 326), +(194692, 'Aydin', 2007, 'M', 325), +(194693, 'Todd', 2007, 'M', 325), +(194694, 'Darnell', 2007, 'M', 324), +(194695, 'Cale', 2007, 'M', 323), +(194696, 'Giancarlo', 2007, 'M', 323), +(194697, 'Jarrett', 2007, 'M', 323), +(194698, 'Malakai', 2007, 'M', 323), +(194699, 'King', 2007, 'M', 321), +(194700, 'Messiah', 2007, 'M', 321), +(194701, 'Sage', 2007, 'M', 321), +(194702, 'Vance', 2007, 'M', 318), +(194703, 'Cason', 2007, 'M', 317), +(194704, 'Hamza', 2007, 'M', 317), +(194705, 'Brice', 2007, 'M', 316), +(194706, 'Irvin', 2007, 'M', 316), +(194707, 'Josh', 2007, 'M', 316), +(194708, 'Tristian', 2007, 'M', 316), +(194709, 'Cannon', 2007, 'M', 315), +(194710, 'Arjun', 2007, 'M', 314), +(194711, 'Donte', 2007, 'M', 314), +(194712, 'Kareem', 2007, 'M', 314), +(194713, 'Sullivan', 2007, 'M', 314), +(194714, 'Agustin', 2007, 'M', 310), +(194715, 'Giovanny', 2007, 'M', 310), +(194716, 'Semaj', 2007, 'M', 309), +(194717, 'Kamden', 2007, 'M', 308), +(194718, 'Luciano', 2007, 'M', 308), +(194719, 'Vaughn', 2007, 'M', 306), +(194720, 'Yandel', 2007, 'M', 306), +(194721, 'Neil', 2007, 'M', 305), +(194722, 'Jordon', 2007, 'M', 304), +(194723, 'Nigel', 2007, 'M', 303), +(194724, 'Alfred', 2007, 'M', 301), +(194725, 'Jamarcus', 2007, 'M', 301), +(194726, 'Roland', 2007, 'M', 301), +(194727, 'Kamron', 2007, 'M', 300), +(194728, 'Jamar', 2007, 'M', 299), +(194729, 'Justus', 2007, 'M', 299), +(194730, 'Luka', 2007, 'M', 298), +(194731, 'Soren', 2007, 'M', 297), +(194732, 'Aditya', 2007, 'M', 296), +(194733, 'Seamus', 2007, 'M', 295), +(194734, 'Yair', 2007, 'M', 294), +(194735, 'Mike', 2007, 'M', 292), +(194736, 'Tyrell', 2007, 'M', 292), +(194737, 'Jaydin', 2007, 'M', 290), +(194738, 'Oswaldo', 2007, 'M', 290), +(194739, 'Adonis', 2007, 'M', 289), +(194740, 'Clinton', 2007, 'M', 289), +(194741, 'Ean', 2007, 'M', 289), +(194742, 'Ernest', 2007, 'M', 289), +(194743, 'Ignacio', 2007, 'M', 289), +(194744, 'Jaquan', 2007, 'M', 289), +(194745, 'Demarcus', 2007, 'M', 288), +(194746, 'Duncan', 2007, 'M', 288), +(194747, 'Jovani', 2007, 'M', 287), +(194748, 'Bo', 2007, 'M', 286), +(194749, 'Cullen', 2007, 'M', 286), +(194750, 'Layton', 2007, 'M', 286), +(194751, 'Humberto', 2007, 'M', 285), +(194752, 'Jordyn', 2007, 'M', 285), +(194753, 'Dale', 2007, 'M', 284), +(194754, 'Darien', 2007, 'M', 284), +(194755, 'Aedan', 2007, 'M', 282), +(194756, 'Clay', 2007, 'M', 281), +(194757, 'Dashawn', 2007, 'M', 281), +(194758, 'Jair', 2007, 'M', 281), +(194759, 'Lucian', 2007, 'M', 281), +(194760, 'Mathias', 2007, 'M', 281), +(194761, 'Kylan', 2007, 'M', 280), +(194762, 'Ace', 2007, 'M', 279), +(194763, 'Gaige', 2007, 'M', 279), +(194764, 'Malaki', 2007, 'M', 278), +(194765, 'Yusuf', 2007, 'M', 276), +(194766, 'Alden', 2007, 'M', 275), +(194767, 'Chaim', 2007, 'M', 275), +(194768, 'Deon', 2007, 'M', 275), +(194769, 'Dominique', 2007, 'M', 275), +(194770, 'Santos', 2007, 'M', 273), +(194771, 'Augustus', 2007, 'M', 272), +(194772, 'Finley', 2007, 'M', 272), +(194773, 'Maxim', 2007, 'M', 272), +(194774, 'Prince', 2007, 'M', 272), +(194775, 'Remington', 2007, 'M', 272), +(194776, 'Kenyon', 2007, 'M', 271), +(194777, 'Konner', 2007, 'M', 271), +(194778, 'Marcelo', 2007, 'M', 271), +(194779, 'Memphis', 2007, 'M', 271), +(194780, 'Matias', 2007, 'M', 269), +(194781, 'Sterling', 2007, 'M', 268), +(194782, 'Zaire', 2007, 'M', 268), +(194783, 'Karter', 2007, 'M', 267), +(194784, 'Madden', 2007, 'M', 266), +(194785, 'Rylee', 2007, 'M', 266), +(194786, 'Antony', 2007, 'M', 265), +(194787, 'Braedon', 2007, 'M', 265), +(194788, 'Darion', 2007, 'M', 265), +(194789, 'Bruno', 2007, 'M', 263), +(194790, 'Salvatore', 2007, 'M', 263), +(194791, 'Ellis', 2007, 'M', 262), +(194792, 'Hassan', 2007, 'M', 262), +(194793, 'Jax', 2007, 'M', 262), +(194794, 'Kasen', 2007, 'M', 262), +(194795, 'Matthias', 2007, 'M', 262), +(194796, 'Nathanial', 2007, 'M', 262), +(194797, 'Rhys', 2007, 'M', 262), +(194798, 'Van', 2007, 'M', 262); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(194799, 'Conrad', 2007, 'M', 261), +(194800, 'Cristofer', 2007, 'M', 261), +(194801, 'Darwin', 2007, 'M', 261), +(194802, 'Jeramiah', 2007, 'M', 261), +(194803, 'Nikhil', 2007, 'M', 261), +(194804, 'Yosef', 2007, 'M', 261), +(194805, 'Aidyn', 2007, 'M', 260), +(194806, 'Glenn', 2007, 'M', 260), +(194807, 'Rory', 2007, 'M', 260), +(194808, 'Haiden', 2007, 'M', 259), +(194809, 'Keshawn', 2007, 'M', 259), +(194810, 'Omarion', 2007, 'M', 259), +(194811, 'Ross', 2007, 'M', 259), +(194812, 'Savion', 2007, 'M', 259), +(194813, 'Dexter', 2007, 'M', 257), +(194814, 'Samir', 2007, 'M', 257), +(194815, 'Houston', 2007, 'M', 256), +(194816, 'Zavier', 2007, 'M', 256), +(194817, 'Killian', 2007, 'M', 255), +(194818, 'Roderick', 2007, 'M', 255), +(194819, 'Dillan', 2007, 'M', 254), +(194820, 'Jamir', 2007, 'M', 254), +(194821, 'Sidney', 2007, 'M', 254), +(194822, 'Deangelo', 2007, 'M', 253), +(194823, 'Demarion', 2007, 'M', 253), +(194824, 'Keon', 2007, 'M', 253), +(194825, 'Devyn', 2007, 'M', 250), +(194826, 'Jaylan', 2007, 'M', 250), +(194827, 'Adrien', 2007, 'M', 249), +(194828, 'Anton', 2007, 'M', 249), +(194829, 'Dario', 2007, 'M', 249), +(194830, 'Jaidyn', 2007, 'M', 249), +(194831, 'Clarence', 2007, 'M', 248), +(194832, 'Marcel', 2007, 'M', 248), +(194833, 'Jovanni', 2007, 'M', 247), +(194834, 'Antwan', 2007, 'M', 246), +(194835, 'Reagan', 2007, 'M', 246), +(194836, 'Marques', 2007, 'M', 245), +(194837, 'Slade', 2007, 'M', 245), +(194838, 'Darryl', 2007, 'M', 242), +(194839, 'Octavio', 2007, 'M', 242), +(194840, 'Jean', 2007, 'M', 241), +(194841, 'Karl', 2007, 'M', 241), +(194842, 'Reynaldo', 2007, 'M', 241), +(194843, 'Carmelo', 2007, 'M', 240), +(194844, 'Elmer', 2007, 'M', 240), +(194845, 'Howard', 2007, 'M', 240), +(194846, 'Jasiah', 2007, 'M', 240), +(194847, 'Sonny', 2007, 'M', 240), +(194848, 'Jovan', 2007, 'M', 239), +(194849, 'Quinten', 2007, 'M', 239), +(194850, 'Ralph', 2007, 'M', 239), +(194851, 'Winston', 2007, 'M', 239), +(194852, 'Leandro', 2007, 'M', 238), +(194853, 'Rigoberto', 2007, 'M', 238), +(194854, 'Zain', 2007, 'M', 238), +(194855, 'Coby', 2007, 'M', 236), +(194856, 'Rex', 2007, 'M', 236), +(194857, 'Blaze', 2007, 'M', 235), +(194858, 'Vincenzo', 2007, 'M', 234), +(194859, 'Makai', 2007, 'M', 232), +(194860, 'Harper', 2007, 'M', 231), +(194861, 'Broderick', 2007, 'M', 229), +(194862, 'Elian', 2007, 'M', 229), +(194863, 'Kadyn', 2007, 'M', 229), +(194864, 'Kellan', 2007, 'M', 228), +(194865, 'Pranav', 2007, 'M', 228), +(194866, 'Thaddeus', 2007, 'M', 228), +(194867, 'Landin', 2007, 'M', 227), +(194868, 'Royce', 2007, 'M', 227), +(194869, 'Nathen', 2007, 'M', 226), +(194870, 'Carlo', 2007, 'M', 225), +(194871, 'Chaz', 2007, 'M', 225), +(194872, 'Garrison', 2007, 'M', 225), +(194873, 'Nick', 2007, 'M', 225), +(194874, 'Samson', 2007, 'M', 225), +(194875, 'Stone', 2007, 'M', 225), +(194876, 'Abdullah', 2007, 'M', 224), +(194877, 'Gaven', 2007, 'M', 223), +(194878, 'Jaydan', 2007, 'M', 223), +(194879, 'Lamont', 2007, 'M', 223), +(194880, 'Estevan', 2007, 'M', 222), +(194881, 'Milton', 2007, 'M', 222), +(194882, 'Nery', 2007, 'M', 222), +(194883, 'Heath', 2007, 'M', 221), +(194884, 'Zack', 2007, 'M', 221), +(194885, 'Keyon', 2007, 'M', 220), +(194886, 'Rayan', 2007, 'M', 220), +(194887, 'Alexandro', 2007, 'M', 219), +(194888, 'Jarvis', 2007, 'M', 219), +(194889, 'Donavan', 2007, 'M', 218), +(194890, 'Reilly', 2007, 'M', 218), +(194891, 'Branson', 2007, 'M', 217), +(194892, 'Joan', 2007, 'M', 217), +(194893, 'Jovany', 2007, 'M', 217), +(194894, 'Niko', 2007, 'M', 217), +(194895, 'Reuben', 2007, 'M', 217), +(194896, 'Camryn', 2007, 'M', 216), +(194897, 'Dangelo', 2007, 'M', 216), +(194898, 'Marquise', 2007, 'M', 216), +(194899, 'Cristobal', 2007, 'M', 215), +(194900, 'German', 2007, 'M', 215), +(194901, 'Rey', 2007, 'M', 215), +(194902, 'Rocky', 2007, 'M', 215), +(194903, 'Simeon', 2007, 'M', 215), +(194904, 'Cael', 2007, 'M', 214), +(194905, 'Dereon', 2007, 'M', 214), +(194906, 'Elvin', 2007, 'M', 214), +(194907, 'Hezekiah', 2007, 'M', 214), +(194908, 'Izayah', 2007, 'M', 214), +(194909, 'Maximo', 2007, 'M', 214), +(194910, 'Fredrick', 2007, 'M', 213), +(194911, 'Amarion', 2007, 'M', 212), +(194912, 'Bernard', 2007, 'M', 212), +(194913, 'Carmine', 2007, 'M', 212), +(194914, 'Dax', 2007, 'M', 212), +(194915, 'Fisher', 2007, 'M', 212), +(194916, 'Mariano', 2007, 'M', 212), +(194917, 'Ronaldo', 2007, 'M', 212), +(194918, 'Stefan', 2007, 'M', 212), +(194919, 'Case', 2007, 'M', 211), +(194920, 'Garret', 2007, 'M', 211), +(194921, 'Kelton', 2007, 'M', 211), +(194922, 'Konnor', 2007, 'M', 211), +(194923, 'Yael', 2007, 'M', 211), +(194924, 'Ethen', 2007, 'M', 210), +(194925, 'Raiden', 2007, 'M', 210), +(194926, 'Turner', 2007, 'M', 210), +(194927, 'Nestor', 2007, 'M', 209), +(194928, 'Shamar', 2007, 'M', 209), +(194929, 'Eliezer', 2007, 'M', 208), +(194930, 'Jayvon', 2007, 'M', 208), +(194931, 'Jovanny', 2007, 'M', 208), +(194932, 'Nikolai', 2007, 'M', 208), +(194933, 'Haden', 2007, 'M', 207), +(194934, 'Lyric', 2007, 'M', 207), +(194935, 'Brad', 2007, 'M', 206), +(194936, 'Jaren', 2007, 'M', 206), +(194937, 'Sheldon', 2007, 'M', 206), +(194938, 'Yurem', 2007, 'M', 206), +(194939, 'Arnav', 2007, 'M', 205), +(194940, 'Devonte', 2007, 'M', 205), +(194941, 'Eliseo', 2007, 'M', 205), +(194942, 'Gonzalo', 2007, 'M', 205), +(194943, 'Rishi', 2007, 'M', 205), +(194944, 'Cortez', 2007, 'M', 204), +(194945, 'Emery', 2007, 'M', 204), +(194946, 'Jamel', 2007, 'M', 204), +(194947, 'Menachem', 2007, 'M', 204), +(194948, 'Amos', 2007, 'M', 203), +(194949, 'Andreas', 2007, 'M', 203), +(194950, 'Bernardo', 2007, 'M', 202), +(194951, 'Edison', 2007, 'M', 202), +(194952, 'Fletcher', 2007, 'M', 202), +(194953, 'Immanuel', 2007, 'M', 202), +(194954, 'Jagger', 2007, 'M', 202), +(194955, 'Tegan', 2007, 'M', 202), +(194956, 'Truman', 2007, 'M', 202), +(194957, 'Efren', 2007, 'M', 201), +(194958, 'Kamryn', 2007, 'M', 201), +(194959, 'Kelan', 2007, 'M', 201), +(194960, 'Keven', 2007, 'M', 201), +(194961, 'Zayne', 2007, 'M', 201), +(194962, 'Cornelius', 2007, 'M', 200), +(194963, 'Hugh', 2007, 'M', 200), +(194964, 'Ronin', 2007, 'M', 200), +(194965, 'Tyshawn', 2007, 'M', 200), +(194966, 'Javen', 2007, 'M', 199), +(194967, 'Jayvion', 2007, 'M', 199), +(194968, 'Gauge', 2007, 'M', 198), +(194969, 'Treyvon', 2007, 'M', 198), +(194970, 'Adin', 2007, 'M', 197), +(194971, 'Blaise', 2007, 'M', 197), +(194972, 'Deshaun', 2007, 'M', 197), +(194973, 'Talen', 2007, 'M', 197), +(194974, 'Vince', 2007, 'M', 197), +(194975, 'Gordon', 2007, 'M', 196), +(194976, 'Bentley', 2007, 'M', 195), +(194977, 'Daxton', 2007, 'M', 195), +(194978, 'Dimitri', 2007, 'M', 195), +(194979, 'Brenton', 2007, 'M', 194), +(194980, 'Isaak', 2007, 'M', 194), +(194981, 'Leroy', 2007, 'M', 194), +(194982, 'Benny', 2007, 'M', 193), +(194983, 'Brogan', 2007, 'M', 193), +(194984, 'Trystan', 2007, 'M', 193), +(194985, 'Dallin', 2007, 'M', 192), +(194986, 'Dandre', 2007, 'M', 192), +(194987, 'Gino', 2007, 'M', 192), +(194988, 'Pierre', 2007, 'M', 192), +(194989, 'Stephan', 2007, 'M', 192), +(194990, 'Dion', 2007, 'M', 191), +(194991, 'Kamren', 2007, 'M', 191), +(194992, 'Theo', 2007, 'M', 191), +(194993, 'Ulysses', 2007, 'M', 191), +(194994, 'Jan', 2007, 'M', 188), +(194995, 'Norman', 2007, 'M', 188), +(194996, 'Santana', 2007, 'M', 188), +(194997, 'Zaid', 2007, 'M', 188), +(194998, 'Mustafa', 2007, 'M', 187), +(194999, 'Bronson', 2007, 'M', 186), +(195000, 'Denzel', 2007, 'M', 186), +(195001, 'Eden', 2007, 'M', 186), +(195002, 'Ryley', 2007, 'M', 186), +(195003, 'Trenten', 2007, 'M', 186), +(195004, 'Gannon', 2007, 'M', 185), +(195005, 'Jordy', 2007, 'M', 185), +(195006, 'Mikel', 2007, 'M', 184), +(195007, 'Sammy', 2007, 'M', 184), +(195008, 'Uriah', 2007, 'M', 184), +(195009, 'Austyn', 2007, 'M', 183), +(195010, 'Jerimiah', 2007, 'M', 183), +(195011, 'Ayaan', 2007, 'M', 182), +(195012, 'Darrius', 2007, 'M', 182), +(195013, 'Dhruv', 2007, 'M', 182), +(195014, 'Makhi', 2007, 'M', 182), +(195015, 'Marcello', 2007, 'M', 182), +(195016, 'Yehuda', 2007, 'M', 182), +(195017, 'Yisroel', 2007, 'M', 182), +(195018, 'Bridger', 2007, 'M', 181), +(195019, 'Cian', 2007, 'M', 181), +(195020, 'Clifford', 2007, 'M', 181), +(195021, 'Damari', 2007, 'M', 181), +(195022, 'Emir', 2007, 'M', 181), +(195023, 'Johnpaul', 2007, 'M', 181), +(195024, 'Kyan', 2007, 'M', 181), +(195025, 'Odin', 2007, 'M', 181), +(195026, 'Abdiel', 2007, 'M', 180), +(195027, 'Haven', 2007, 'M', 180), +(195028, 'Jaedyn', 2007, 'M', 180), +(195029, 'Guadalupe', 2007, 'M', 179), +(195030, 'Irving', 2007, 'M', 179), +(195031, 'Lennon', 2007, 'M', 179), +(195032, 'Destin', 2007, 'M', 178), +(195033, 'Franco', 2007, 'M', 178), +(195034, 'Kael', 2007, 'M', 178), +(195035, 'Koby', 2007, 'M', 178), +(195036, 'Perry', 2007, 'M', 178), +(195037, 'Sebastien', 2007, 'M', 178), +(195038, 'Deegan', 2007, 'M', 177), +(195039, 'Kalel', 2007, 'M', 177), +(195040, 'Nate', 2007, 'M', 177), +(195041, 'Fidel', 2007, 'M', 176), +(195042, 'Landan', 2007, 'M', 176), +(195043, 'Marquez', 2007, 'M', 176), +(195044, 'Maximillian', 2007, 'M', 176), +(195045, 'Valentino', 2007, 'M', 176), +(195046, 'Corban', 2007, 'M', 175), +(195047, 'Kolten', 2007, 'M', 175), +(195048, 'Tripp', 2007, 'M', 175), +(195049, 'Zaiden', 2007, 'M', 175), +(195050, 'Benson', 2007, 'M', 174), +(195051, 'Bowen', 2007, 'M', 174), +(195052, 'Jakub', 2007, 'M', 174), +(195053, 'Travon', 2007, 'M', 173), +(195054, 'Wilmer', 2007, 'M', 173), +(195055, 'Beckham', 2007, 'M', 172), +(195056, 'Shayne', 2007, 'M', 172), +(195057, 'Abner', 2007, 'M', 171), +(195058, 'Miguelangel', 2007, 'M', 171), +(195059, 'Raymundo', 2007, 'M', 171), +(195060, 'Treyton', 2007, 'M', 171), +(195061, 'Braulio', 2007, 'M', 170), +(195062, 'Earl', 2007, 'M', 170), +(195063, 'Merrick', 2007, 'M', 170), +(195064, 'Jamil', 2007, 'M', 169), +(195065, 'Jedidiah', 2007, 'M', 169), +(195066, 'Jensen', 2007, 'M', 169), +(195067, 'Kymani', 2007, 'M', 169), +(195068, 'Zakary', 2007, 'M', 169), +(195069, 'Bishop', 2007, 'M', 168), +(195070, 'Boden', 2007, 'M', 168), +(195071, 'Callum', 2007, 'M', 168), +(195072, 'Augustine', 2007, 'M', 167), +(195073, 'Jakobe', 2007, 'M', 167), +(195074, 'Kash', 2007, 'M', 167), +(195075, 'Kyson', 2007, 'M', 167), +(195076, 'Shea', 2007, 'M', 167), +(195077, 'Trevin', 2007, 'M', 167), +(195078, 'Austen', 2007, 'M', 166), +(195079, 'Eddy', 2007, 'M', 166), +(195080, 'Juelz', 2007, 'M', 166), +(195081, 'Miller', 2007, 'M', 166), +(195082, 'Alton', 2007, 'M', 165), +(195083, 'Benito', 2007, 'M', 165), +(195084, 'Cordell', 2007, 'M', 165), +(195085, 'Daryl', 2007, 'M', 165), +(195086, 'Heriberto', 2007, 'M', 165), +(195087, 'Jaycob', 2007, 'M', 165), +(195088, 'Kayson', 2007, 'M', 165), +(195089, 'Tavion', 2007, 'M', 165), +(195090, 'Zavion', 2007, 'M', 165), +(195091, 'Zyon', 2007, 'M', 165), +(195092, 'Dewayne', 2007, 'M', 164), +(195093, 'Dwight', 2007, 'M', 164), +(195094, 'Jeshua', 2007, 'M', 164), +(195095, 'Keanu', 2007, 'M', 164), +(195096, 'Cassius', 2007, 'M', 163), +(195097, 'Dontae', 2007, 'M', 163), +(195098, 'Josef', 2007, 'M', 163), +(195099, 'Keyshawn', 2007, 'M', 162), +(195100, 'Aarav', 2007, 'M', 161), +(195101, 'Deonte', 2007, 'M', 161), +(195102, 'Jeff', 2007, 'M', 161), +(195103, 'Shannon', 2007, 'M', 161), +(195104, 'Torin', 2007, 'M', 161), +(195105, 'Carsen', 2007, 'M', 160), +(195106, 'Koen', 2007, 'M', 160), +(195107, 'Rowen', 2007, 'M', 160), +(195108, 'Westin', 2007, 'M', 160), +(195109, 'Archer', 2007, 'M', 159), +(195110, 'Barry', 2007, 'M', 159), +(195111, 'Daquan', 2007, 'M', 159), +(195112, 'Guy', 2007, 'M', 159), +(195113, 'Alexavier', 2007, 'M', 158), +(195114, 'Denis', 2007, 'M', 158), +(195115, 'Domenic', 2007, 'M', 158), +(195116, 'Hank', 2007, 'M', 158), +(195117, 'Kalvin', 2007, 'M', 158), +(195118, 'Taven', 2007, 'M', 158), +(195119, 'Aaden', 2007, 'M', 157), +(195120, 'Camilo', 2007, 'M', 157), +(195121, 'Kegan', 2007, 'M', 157), +(195122, 'Kurt', 2007, 'M', 157), +(195123, 'Maddux', 2007, 'M', 157), +(195124, 'Tye', 2007, 'M', 157), +(195125, 'Baron', 2007, 'M', 156), +(195126, 'Syed', 2007, 'M', 156), +(195127, 'Courtney', 2007, 'M', 155), +(195128, 'Darin', 2007, 'M', 155), +(195129, 'Javian', 2007, 'M', 155), +(195130, 'Sylas', 2007, 'M', 155), +(195131, 'Alek', 2007, 'M', 154), +(195132, 'Ameer', 2007, 'M', 154), +(195133, 'Clifton', 2007, 'M', 154), +(195134, 'Ever', 2007, 'M', 154), +(195135, 'Geovanni', 2007, 'M', 154), +(195136, 'Gianluca', 2007, 'M', 154), +(195137, 'Kelly', 2007, 'M', 154), +(195138, 'Anders', 2007, 'M', 153), +(195139, 'Francesco', 2007, 'M', 153), +(195140, 'Kennedy', 2007, 'M', 153), +(195141, 'Emory', 2007, 'M', 152), +(195142, 'Geoffrey', 2007, 'M', 152), +(195143, 'Jericho', 2007, 'M', 152), +(195144, 'Khalid', 2007, 'M', 152), +(195145, 'Leonidas', 2007, 'M', 152), +(195146, 'Lloyd', 2007, 'M', 152), +(195147, 'Trevion', 2007, 'M', 152), +(195148, 'Brennon', 2007, 'M', 151), +(195149, 'Casen', 2007, 'M', 151), +(195150, 'Harris', 2007, 'M', 151), +(195151, 'Johnnie', 2007, 'M', 151), +(195152, 'Lionel', 2007, 'M', 151), +(195153, 'Markell', 2007, 'M', 151), +(195154, 'Alexandre', 2007, 'M', 150), +(195155, 'Armaan', 2007, 'M', 150), +(195156, 'Braedyn', 2007, 'M', 150), +(195157, 'Eliel', 2007, 'M', 150), +(195158, 'Ephraim', 2007, 'M', 150), +(195159, 'Ajay', 2007, 'M', 149), +(195160, 'Coen', 2007, 'M', 149), +(195161, 'Fredy', 2007, 'M', 149), +(195162, 'Taj', 2007, 'M', 149), +(195163, 'Campbell', 2007, 'M', 148), +(195164, 'Dereck', 2007, 'M', 148), +(195165, 'Enoch', 2007, 'M', 148), +(195166, 'Jacobi', 2007, 'M', 148), +(195167, 'Mordechai', 2007, 'M', 148), +(195168, 'Nazir', 2007, 'M', 148), +(195169, 'Rickey', 2007, 'M', 148), +(195170, 'Tobin', 2007, 'M', 148), +(195171, 'Vladimir', 2007, 'M', 148), +(195172, 'Dan', 2007, 'M', 147), +(195173, 'Dilan', 2007, 'M', 147), +(195174, 'Duane', 2007, 'M', 147), +(195175, 'Federico', 2007, 'M', 147), +(195176, 'Jonatan', 2007, 'M', 147), +(195177, 'Kalen', 2007, 'M', 147), +(195178, 'Kent', 2007, 'M', 147), +(195179, 'Remy', 2007, 'M', 147), +(195180, 'Rico', 2007, 'M', 147), +(195181, 'Tatum', 2007, 'M', 147), +(195182, 'Anson', 2007, 'M', 146), +(195183, 'Carlton', 2007, 'M', 146), +(195184, 'Denver', 2007, 'M', 146), +(195185, 'Ely', 2007, 'M', 146), +(195186, 'Hayes', 2007, 'M', 146), +(195187, 'Jael', 2007, 'M', 146), +(195188, 'Johann', 2007, 'M', 146), +(195189, 'Latrell', 2007, 'M', 146), +(195190, 'Marion', 2007, 'M', 146), +(195191, 'Terence', 2007, 'M', 146), +(195192, 'Yousef', 2007, 'M', 146), +(195193, 'Arman', 2007, 'M', 145), +(195194, 'Daveon', 2007, 'M', 145), +(195195, 'Finnian', 2007, 'M', 145), +(195196, 'Isidro', 2007, 'M', 145), +(195197, 'Jaheim', 2007, 'M', 145), +(195198, 'Jai', 2007, 'M', 145), +(195199, 'Otto', 2007, 'M', 145), +(195200, 'Tariq', 2007, 'M', 145), +(195201, 'Vernon', 2007, 'M', 145), +(195202, 'Avi', 2007, 'M', 144), +(195203, 'Bodie', 2007, 'M', 144), +(195204, 'Bryton', 2007, 'M', 144), +(195205, 'Donnie', 2007, 'M', 144), +(195206, 'Kamarion', 2007, 'M', 144), +(195207, 'Antwon', 2007, 'M', 143), +(195208, 'Bode', 2007, 'M', 143), +(195209, 'Canyon', 2007, 'M', 143), +(195210, 'Fred', 2007, 'M', 143), +(195211, 'Harvey', 2007, 'M', 143), +(195212, 'Juancarlos', 2007, 'M', 143), +(195213, 'Magnus', 2007, 'M', 143), +(195214, 'Marek', 2007, 'M', 143), +(195215, 'Milan', 2007, 'M', 143), +(195216, 'Coy', 2007, 'M', 142), +(195217, 'Davonte', 2007, 'M', 142), +(195218, 'Forrest', 2007, 'M', 142), +(195219, 'Kohen', 2007, 'M', 142), +(195220, 'Langston', 2007, 'M', 142), +(195221, 'Sabastian', 2007, 'M', 142), +(195222, 'Tylan', 2007, 'M', 142), +(195223, 'Brandt', 2007, 'M', 141), +(195224, 'Britton', 2007, 'M', 141), +(195225, 'Clyde', 2007, 'M', 141), +(195226, 'Korey', 2007, 'M', 141), +(195227, 'Lucien', 2007, 'M', 141), +(195228, 'Myron', 2007, 'M', 141), +(195229, 'Rayden', 2007, 'M', 141), +(195230, 'Shiloh', 2007, 'M', 141), +(195231, 'Shmuel', 2007, 'M', 141), +(195232, 'Amar', 2007, 'M', 140), +(195233, 'Cain', 2007, 'M', 140), +(195234, 'Ishaan', 2007, 'M', 140), +(195235, 'Justyn', 2007, 'M', 140), +(195236, 'Leighton', 2007, 'M', 140), +(195237, 'Lucius', 2007, 'M', 140), +(195238, 'Nevin', 2007, 'M', 140), +(195239, 'Thatcher', 2007, 'M', 140), +(195240, 'Xavion', 2007, 'M', 140), +(195241, 'Devlin', 2007, 'M', 139), +(195242, 'Eder', 2007, 'M', 139), +(195243, 'Gibson', 2007, 'M', 139), +(195244, 'Jordin', 2007, 'M', 139), +(195245, 'Markel', 2007, 'M', 139), +(195246, 'Marley', 2007, 'M', 139), +(195247, 'Sami', 2007, 'M', 139), +(195248, 'Shlomo', 2007, 'M', 139), +(195249, 'Aubrey', 2007, 'M', 138), +(195250, 'Benton', 2007, 'M', 138), +(195251, 'Briar', 2007, 'M', 138), +(195252, 'Dashaun', 2007, 'M', 138), +(195253, 'Ervin', 2007, 'M', 138), +(195254, 'Isac', 2007, 'M', 138), +(195255, 'Kyree', 2007, 'M', 138), +(195256, 'Mack', 2007, 'M', 138), +(195257, 'Zahir', 2007, 'M', 138), +(195258, 'Arnold', 2007, 'M', 137), +(195259, 'Canaan', 2007, 'M', 137), +(195260, 'Daron', 2007, 'M', 137), +(195261, 'Gerson', 2007, 'M', 137), +(195262, 'Kurtis', 2007, 'M', 137), +(195263, 'Yaakov', 2007, 'M', 137), +(195264, 'Christofer', 2007, 'M', 136), +(195265, 'Judson', 2007, 'M', 136), +(195266, 'Tyce', 2007, 'M', 136), +(195267, 'Anish', 2007, 'M', 135), +(195268, 'Bilal', 2007, 'M', 135), +(195269, 'Darrion', 2007, 'M', 135), +(195270, 'Donnell', 2007, 'M', 135), +(195271, 'Dyllan', 2007, 'M', 135), +(195272, 'Eliot', 2007, 'M', 135), +(195273, 'Keller', 2007, 'M', 135), +(195274, 'Kevon', 2007, 'M', 135), +(195275, 'Lathan', 2007, 'M', 135), +(195276, 'Quinlan', 2007, 'M', 135), +(195277, 'Yadiel', 2007, 'M', 135), +(195278, 'Aleksander', 2007, 'M', 134), +(195279, 'Caeden', 2007, 'M', 134), +(195280, 'Jashawn', 2007, 'M', 134), +(195281, 'Keelan', 2007, 'M', 134), +(195282, 'Presley', 2007, 'M', 134), +(195283, 'Siddharth', 2007, 'M', 134), +(195284, 'Lazaro', 2007, 'M', 133), +(195285, 'Rashawn', 2007, 'M', 133), +(195286, 'Colson', 2007, 'M', 132), +(195287, 'Gian', 2007, 'M', 132), +(195288, 'Jullian', 2007, 'M', 132), +(195289, 'Mikael', 2007, 'M', 132), +(195290, 'Stuart', 2007, 'M', 132), +(195291, 'Beck', 2007, 'M', 131), +(195292, 'Izaac', 2007, 'M', 131), +(195293, 'Kyron', 2007, 'M', 131), +(195294, 'Massimo', 2007, 'M', 131), +(195295, 'Mauro', 2007, 'M', 131), +(195296, 'Baylor', 2007, 'M', 130), +(195297, 'Ewan', 2007, 'M', 130), +(195298, 'Geovanny', 2007, 'M', 130), +(195299, 'Glen', 2007, 'M', 130), +(195300, 'Jaxen', 2007, 'M', 130), +(195301, 'Leyton', 2007, 'M', 130), +(195302, 'Mikah', 2007, 'M', 130), +(195303, 'Benicio', 2007, 'M', 129), +(195304, 'Jakari', 2007, 'M', 129), +(195305, 'Robin', 2007, 'M', 129), +(195306, 'Shimon', 2007, 'M', 129), +(195307, 'Yash', 2007, 'M', 129), +(195308, 'Hagen', 2007, 'M', 128), +(195309, 'Leif', 2007, 'M', 128), +(195310, 'Osmar', 2007, 'M', 128), +(195311, 'Rian', 2007, 'M', 128), +(195312, 'Arian', 2007, 'M', 127), +(195313, 'Dakoda', 2007, 'M', 127), +(195314, 'Dameon', 2007, 'M', 127), +(195315, 'Mayson', 2007, 'M', 127), +(195316, 'Chace', 2007, 'M', 126), +(195317, 'Don', 2007, 'M', 126), +(195318, 'Evin', 2007, 'M', 126), +(195319, 'Gregorio', 2007, 'M', 126), +(195320, 'Joseluis', 2007, 'M', 126), +(195321, 'Kooper', 2007, 'M', 126), +(195322, 'Avraham', 2007, 'M', 125), +(195323, 'Broden', 2007, 'M', 125), +(195324, 'Darrin', 2007, 'M', 125), +(195325, 'Karsten', 2007, 'M', 125), +(195326, 'Kentrell', 2007, 'M', 125), +(195327, 'Kory', 2007, 'M', 125), +(195328, 'Lars', 2007, 'M', 125), +(195329, 'Abdul', 2007, 'M', 124), +(195330, 'Bodhi', 2007, 'M', 124), +(195331, 'Colter', 2007, 'M', 124), +(195332, 'Donavin', 2007, 'M', 124), +(195333, 'Dylon', 2007, 'M', 124), +(195334, 'Jaidon', 2007, 'M', 124), +(195335, 'Kenton', 2007, 'M', 124), +(195336, 'Kirk', 2007, 'M', 124), +(195337, 'Lachlan', 2007, 'M', 124), +(195338, 'Rick', 2007, 'M', 124), +(195339, 'Brant', 2007, 'M', 123), +(195340, 'Hyrum', 2007, 'M', 123), +(195341, 'Kye', 2007, 'M', 123), +(195342, 'Tayden', 2007, 'M', 123), +(195343, 'Gabe', 2007, 'M', 122), +(195344, 'Neel', 2007, 'M', 122), +(195345, 'Pierson', 2007, 'M', 122), +(195346, 'Tayshawn', 2007, 'M', 122), +(195347, 'Tylor', 2007, 'M', 122), +(195348, 'Tyron', 2007, 'M', 122), +(195349, 'Ammon', 2007, 'M', 121), +(195350, 'Damarcus', 2007, 'M', 121), +(195351, 'Dayne', 2007, 'M', 121), +(195352, 'Jadin', 2007, 'M', 121), +(195353, 'Jaedon', 2007, 'M', 121), +(195354, 'Javonte', 2007, 'M', 121), +(195355, 'Juanpablo', 2007, 'M', 121), +(195356, 'Clint', 2007, 'M', 120), +(195357, 'Hasan', 2007, 'M', 120), +(195358, 'Jesiah', 2007, 'M', 120), +(195359, 'Ken', 2007, 'M', 120), +(195360, 'Jackie', 2007, 'M', 119), +(195361, 'Karim', 2007, 'M', 119), +(195362, 'Paolo', 2007, 'M', 119), +(195363, 'Ramses', 2007, 'M', 119), +(195364, 'Zev', 2007, 'M', 119), +(195365, 'Brighton', 2007, 'M', 118), +(195366, 'Genaro', 2007, 'M', 118), +(195367, 'Ilan', 2007, 'M', 118), +(195368, 'Jahir', 2007, 'M', 118), +(195369, 'Jamaal', 2007, 'M', 118), +(195370, 'Jomar', 2007, 'M', 118), +(195371, 'Joziah', 2007, 'M', 118), +(195372, 'Kristofer', 2007, 'M', 118), +(195373, 'Luc', 2007, 'M', 118), +(195374, 'Mykel', 2007, 'M', 118), +(195375, 'Obed', 2007, 'M', 118), +(195376, 'Stephon', 2007, 'M', 118), +(195377, 'Sutton', 2007, 'M', 118), +(195378, 'Syncere', 2007, 'M', 118), +(195379, 'Daylen', 2007, 'M', 117), +(195380, 'Demario', 2007, 'M', 117), +(195381, 'Donavon', 2007, 'M', 117), +(195382, 'Trae', 2007, 'M', 117), +(195383, 'Kayleb', 2007, 'M', 116), +(195384, 'Lyndon', 2007, 'M', 116), +(195385, 'Neal', 2007, 'M', 116), +(195386, 'Travion', 2007, 'M', 116), +(195387, 'Tre', 2007, 'M', 116), +(195388, 'Chevy', 2007, 'M', 115), +(195389, 'Eleazar', 2007, 'M', 115), +(195390, 'Everardo', 2007, 'M', 115), +(195391, 'Freddie', 2007, 'M', 115), +(195392, 'Gus', 2007, 'M', 115), +(195393, 'Hans', 2007, 'M', 115), +(195394, 'Hiram', 2007, 'M', 115), +(195395, 'Isael', 2007, 'M', 115), +(195396, 'Ishmael', 2007, 'M', 115), +(195397, 'Isreal', 2007, 'M', 115), +(195398, 'Lester', 2007, 'M', 115), +(195399, 'Raheem', 2007, 'M', 115), +(195400, 'Royal', 2007, 'M', 115), +(195401, 'Yasir', 2007, 'M', 115), +(195402, 'Zaden', 2007, 'M', 115), +(195403, 'Ayush', 2007, 'M', 114), +(195404, 'Deanthony', 2007, 'M', 114), +(195405, 'Ladarius', 2007, 'M', 114), +(195406, 'Laron', 2007, 'M', 114), +(195407, 'Leeland', 2007, 'M', 114), +(195408, 'Masen', 2007, 'M', 114), +(195409, 'Meir', 2007, 'M', 114), +(195410, 'Om', 2007, 'M', 114), +(195411, 'Tavian', 2007, 'M', 114), +(195412, 'Zyaire', 2007, 'M', 114), +(195413, 'Aarush', 2007, 'M', 113), +(195414, 'Adyn', 2007, 'M', 113), +(195415, 'Cy', 2007, 'M', 113), +(195416, 'Hernan', 2007, 'M', 113), +(195417, 'Javin', 2007, 'M', 113), +(195418, 'Marko', 2007, 'M', 113), +(195419, 'Emil', 2007, 'M', 112), +(195420, 'Jeremias', 2007, 'M', 112), +(195421, 'Tayshaun', 2007, 'M', 112), +(195422, 'Tristyn', 2007, 'M', 112), +(195423, 'Achilles', 2007, 'M', 111), +(195424, 'Ansh', 2007, 'M', 111), +(195425, 'Blayne', 2007, 'M', 111), +(195426, 'Carmello', 2007, 'M', 111), +(195427, 'Cecil', 2007, 'M', 111), +(195428, 'Chauncey', 2007, 'M', 111), +(195429, 'Ira', 2007, 'M', 111), +(195430, 'Jaleel', 2007, 'M', 111), +(195431, 'Jimmie', 2007, 'M', 111), +(195432, 'Karon', 2007, 'M', 111), +(195433, 'Keion', 2007, 'M', 111), +(195434, 'Otis', 2007, 'M', 111), +(195435, 'Zeke', 2007, 'M', 111), +(195436, 'Adriano', 2007, 'M', 110), +(195437, 'Desean', 2007, 'M', 110), +(195438, 'Giuseppe', 2007, 'M', 110), +(195439, 'Kannon', 2007, 'M', 110), +(195440, 'Kylen', 2007, 'M', 110), +(195441, 'Lebron', 2007, 'M', 110), +(195442, 'Lonnie', 2007, 'M', 110), +(195443, 'Abhinav', 2007, 'M', 109), +(195444, 'Bret', 2007, 'M', 109), +(195445, 'Channing', 2007, 'M', 109), +(195446, 'Chayse', 2007, 'M', 109), +(195447, 'Deondre', 2007, 'M', 109), +(195448, 'Favian', 2007, 'M', 109), +(195449, 'Izaak', 2007, 'M', 109), +(195450, 'Javeon', 2007, 'M', 109), +(195451, 'Landry', 2007, 'M', 109), +(195452, 'Morris', 2007, 'M', 109), +(195453, 'Musa', 2007, 'M', 109), +(195454, 'Palmer', 2007, 'M', 109), +(195455, 'Yovani', 2007, 'M', 109), +(195456, 'Zephaniah', 2007, 'M', 109), +(195457, 'Aayan', 2007, 'M', 108), +(195458, 'Bradly', 2007, 'M', 108), +(195459, 'Brecken', 2007, 'M', 108), +(195460, 'Constantine', 2007, 'M', 108), +(195461, 'Deontae', 2007, 'M', 108), +(195462, 'Eamon', 2007, 'M', 108), +(195463, 'Grayden', 2007, 'M', 108), +(195464, 'Jevon', 2007, 'M', 108), +(195465, 'Kenji', 2007, 'M', 108), +(195466, 'Lucio', 2007, 'M', 108), +(195467, 'Deion', 2007, 'M', 107), +(195468, 'Elan', 2007, 'M', 107), +(195469, 'Emmitt', 2007, 'M', 107), +(195470, 'Imanol', 2007, 'M', 107), +(195471, 'Jaylyn', 2007, 'M', 107), +(195472, 'Maksim', 2007, 'M', 107), +(195473, 'Osman', 2007, 'M', 107), +(195474, 'Trever', 2007, 'M', 107), +(195475, 'Daren', 2007, 'M', 106), +(195476, 'Erwin', 2007, 'M', 106), +(195477, 'Floyd', 2007, 'M', 106), +(195478, 'Jalil', 2007, 'M', 106), +(195479, 'Jarell', 2007, 'M', 106), +(195480, 'Keandre', 2007, 'M', 106), +(195481, 'Kevyn', 2007, 'M', 106), +(195482, 'Montrell', 2007, 'M', 106), +(195483, 'Patricio', 2007, 'M', 106), +(195484, 'Ramsey', 2007, 'M', 106), +(195485, 'Rowdy', 2007, 'M', 106), +(195486, 'Sahil', 2007, 'M', 106), +(195487, 'Tevin', 2007, 'M', 106), +(195488, 'Titan', 2007, 'M', 106), +(195489, 'Angus', 2007, 'M', 105), +(195490, 'Arya', 2007, 'M', 105), +(195491, 'Darrian', 2007, 'M', 105), +(195492, 'Demarco', 2007, 'M', 105), +(195493, 'Hadi', 2007, 'M', 105), +(195494, 'Teegan', 2007, 'M', 105), +(195495, 'Theron', 2007, 'M', 105), +(195496, 'Willem', 2007, 'M', 105), +(195497, 'Ayan', 2007, 'M', 104), +(195498, 'Daven', 2007, 'M', 104), +(195499, 'Dev', 2007, 'M', 104), +(195500, 'Kenan', 2007, 'M', 104), +(195501, 'Matheus', 2007, 'M', 104), +(195502, 'Oren', 2007, 'M', 104), +(195503, 'Rayshawn', 2007, 'M', 104), +(195504, 'Said', 2007, 'M', 104), +(195505, 'Yitzchok', 2007, 'M', 104), +(195506, 'Amani', 2007, 'M', 103), +(195507, 'Coleton', 2007, 'M', 103), +(195508, 'Giovany', 2007, 'M', 103), +(195509, 'Grey', 2007, 'M', 103), +(195510, 'Herbert', 2007, 'M', 103), +(195511, 'Javan', 2007, 'M', 103), +(195512, 'Javien', 2007, 'M', 103), +(195513, 'Kain', 2007, 'M', 103), +(195514, 'Rayyan', 2007, 'M', 103), +(195515, 'Roan', 2007, 'M', 103), +(195516, 'Tai', 2007, 'M', 103), +(195517, 'Tavin', 2007, 'M', 103), +(195518, 'Tyshaun', 2007, 'M', 103), +(195519, 'Wilfredo', 2007, 'M', 103), +(195520, 'Anakin', 2007, 'M', 102), +(195521, 'Cormac', 2007, 'M', 102), +(195522, 'Edmond', 2007, 'M', 102), +(195523, 'Eian', 2007, 'M', 102), +(195524, 'Jacen', 2007, 'M', 102), +(195525, 'Micaiah', 2007, 'M', 102), +(195526, 'Osiel', 2007, 'M', 102), +(195527, 'Tracy', 2007, 'M', 102), +(195528, 'Viktor', 2007, 'M', 102), +(195529, 'Ahmir', 2007, 'M', 101), +(195530, 'Ajani', 2007, 'M', 101), +(195531, 'Avion', 2007, 'M', 101), +(195532, 'Dave', 2007, 'M', 101), +(195533, 'Davien', 2007, 'M', 101), +(195534, 'Ismail', 2007, 'M', 101), +(195535, 'Jermiah', 2007, 'M', 101), +(195536, 'Jody', 2007, 'M', 101), +(195537, 'Karsen', 2007, 'M', 101), +(195538, 'Keshaun', 2007, 'M', 101), +(195539, 'Tzvi', 2007, 'M', 101), +(195540, 'Xzavion', 2007, 'M', 101), +(195541, 'Yaseen', 2007, 'M', 101), +(195542, 'Adair', 2007, 'M', 100), +(195543, 'Antoni', 2007, 'M', 100), +(195544, 'Aurelio', 2007, 'M', 100), +(195545, 'Cal', 2007, 'M', 100), +(195546, 'Daylon', 2007, 'M', 100), +(195547, 'Jaquez', 2007, 'M', 100), +(195548, 'Jaysen', 2007, 'M', 100), +(195549, 'Jayven', 2007, 'M', 100), +(195550, 'Kayne', 2007, 'M', 100), +(195551, 'Khamari', 2007, 'M', 100), +(195552, 'Korbyn', 2007, 'M', 100), +(195553, 'Maison', 2007, 'M', 100), +(195554, 'Marshawn', 2007, 'M', 100), +(195555, 'Emma', 2008, 'F', 18799), +(195556, 'Isabella', 2008, 'F', 18603), +(195557, 'Emily', 2008, 'F', 17421), +(195558, 'Olivia', 2008, 'F', 17069), +(195559, 'Ava', 2008, 'F', 17027), +(195560, 'Madison', 2008, 'F', 17017), +(195561, 'Sophia', 2008, 'F', 16073), +(195562, 'Abigail', 2008, 'F', 15072), +(195563, 'Elizabeth', 2008, 'F', 11986), +(195564, 'Chloe', 2008, 'F', 11816), +(195565, 'Samantha', 2008, 'F', 11175), +(195566, 'Addison', 2008, 'F', 10755), +(195567, 'Natalie', 2008, 'F', 10193), +(195568, 'Mia', 2008, 'F', 10166), +(195569, 'Alexis', 2008, 'F', 9713), +(195570, 'Alyssa', 2008, 'F', 9626), +(195571, 'Hannah', 2008, 'F', 9554), +(195572, 'Ashley', 2008, 'F', 9400), +(195573, 'Ella', 2008, 'F', 9344), +(195574, 'Grace', 2008, 'F', 9032), +(195575, 'Sarah', 2008, 'F', 9029), +(195576, 'Taylor', 2008, 'F', 8330), +(195577, 'Brianna', 2008, 'F', 8251), +(195578, 'Lily', 2008, 'F', 8114), +(195579, 'Hailey', 2008, 'F', 7860), +(195580, 'Anna', 2008, 'F', 7256), +(195581, 'Victoria', 2008, 'F', 7113), +(195582, 'Kayla', 2008, 'F', 6824), +(195583, 'Lillian', 2008, 'F', 6804), +(195584, 'Lauren', 2008, 'F', 6448), +(195585, 'Kaylee', 2008, 'F', 6291), +(195586, 'Allison', 2008, 'F', 6238), +(195587, 'Savannah', 2008, 'F', 6121), +(195588, 'Nevaeh', 2008, 'F', 6089), +(195589, 'Gabriella', 2008, 'F', 6023), +(195590, 'Sofia', 2008, 'F', 5978), +(195591, 'Makayla', 2008, 'F', 5943), +(195592, 'Avery', 2008, 'F', 5828), +(195593, 'Riley', 2008, 'F', 5761), +(195594, 'Leah', 2008, 'F', 5624), +(195595, 'Julia', 2008, 'F', 5614), +(195596, 'Aubrey', 2008, 'F', 5561), +(195597, 'Jasmine', 2008, 'F', 5514), +(195598, 'Audrey', 2008, 'F', 5436), +(195599, 'Katherine', 2008, 'F', 5343), +(195600, 'Morgan', 2008, 'F', 5333), +(195601, 'Brooklyn', 2008, 'F', 5304), +(195602, 'Destiny', 2008, 'F', 5300), +(195603, 'Sydney', 2008, 'F', 5257), +(195604, 'Alexa', 2008, 'F', 5220), +(195605, 'Kylie', 2008, 'F', 5189), +(195606, 'Brooke', 2008, 'F', 5178), +(195607, 'Kaitlyn', 2008, 'F', 5112), +(195608, 'Evelyn', 2008, 'F', 5093), +(195609, 'Layla', 2008, 'F', 4927), +(195610, 'Madeline', 2008, 'F', 4816), +(195611, 'Kimberly', 2008, 'F', 4808), +(195612, 'Zoe', 2008, 'F', 4776), +(195613, 'Jessica', 2008, 'F', 4731), +(195614, 'Peyton', 2008, 'F', 4730), +(195615, 'Alexandra', 2008, 'F', 4608), +(195616, 'Claire', 2008, 'F', 4598), +(195617, 'Maria', 2008, 'F', 4581), +(195618, 'Madelyn', 2008, 'F', 4561), +(195619, 'Mackenzie', 2008, 'F', 4470), +(195620, 'Arianna', 2008, 'F', 4416), +(195621, 'Jocelyn', 2008, 'F', 4366), +(195622, 'Amelia', 2008, 'F', 4345), +(195623, 'Angelina', 2008, 'F', 4295), +(195624, 'Trinity', 2008, 'F', 4266), +(195625, 'Maya', 2008, 'F', 4261), +(195626, 'Andrea', 2008, 'F', 4259), +(195627, 'Valeria', 2008, 'F', 4203), +(195628, 'Rachel', 2008, 'F', 4073), +(195629, 'Sophie', 2008, 'F', 4061), +(195630, 'Aaliyah', 2008, 'F', 4038), +(195631, 'Mariah', 2008, 'F', 4030), +(195632, 'Vanessa', 2008, 'F', 4029), +(195633, 'Gabrielle', 2008, 'F', 4019), +(195634, 'Katelyn', 2008, 'F', 3974), +(195635, 'Ariana', 2008, 'F', 3906), +(195636, 'Bailey', 2008, 'F', 3895), +(195637, 'Camila', 2008, 'F', 3844), +(195638, 'Jennifer', 2008, 'F', 3791), +(195639, 'Melanie', 2008, 'F', 3711), +(195640, 'Charlotte', 2008, 'F', 3666), +(195641, 'Gianna', 2008, 'F', 3666), +(195642, 'Autumn', 2008, 'F', 3654), +(195643, 'Paige', 2008, 'F', 3638), +(195644, 'Faith', 2008, 'F', 3620), +(195645, 'Payton', 2008, 'F', 3606), +(195646, 'Sara', 2008, 'F', 3589), +(195647, 'Isabelle', 2008, 'F', 3565), +(195648, 'Caroline', 2008, 'F', 3540), +(195649, 'Genesis', 2008, 'F', 3518), +(195650, 'Mary', 2008, 'F', 3490), +(195651, 'Isabel', 2008, 'F', 3485), +(195652, 'Zoey', 2008, 'F', 3442), +(195653, 'Gracie', 2008, 'F', 3423), +(195654, 'Megan', 2008, 'F', 3407), +(195655, 'Mya', 2008, 'F', 3335), +(195656, 'Michelle', 2008, 'F', 3334), +(195657, 'Haley', 2008, 'F', 3330), +(195658, 'Molly', 2008, 'F', 3319), +(195659, 'Stephanie', 2008, 'F', 3314), +(195660, 'Nicole', 2008, 'F', 3285), +(195661, 'Jenna', 2008, 'F', 3239), +(195662, 'Natalia', 2008, 'F', 3237), +(195663, 'Sadie', 2008, 'F', 3158), +(195664, 'Jada', 2008, 'F', 3153), +(195665, 'Serenity', 2008, 'F', 3103), +(195666, 'Lucy', 2008, 'F', 3066), +(195667, 'Ruby', 2008, 'F', 3013), +(195668, 'Eva', 2008, 'F', 2963), +(195669, 'Kennedy', 2008, 'F', 2949), +(195670, 'Rylee', 2008, 'F', 2929), +(195671, 'Jayla', 2008, 'F', 2923), +(195672, 'Naomi', 2008, 'F', 2909), +(195673, 'Rebecca', 2008, 'F', 2905), +(195674, 'Lydia', 2008, 'F', 2869), +(195675, 'Daniela', 2008, 'F', 2794), +(195676, 'Bella', 2008, 'F', 2782), +(195677, 'Keira', 2008, 'F', 2732), +(195678, 'Adriana', 2008, 'F', 2724), +(195679, 'Lilly', 2008, 'F', 2684), +(195680, 'Katie', 2008, 'F', 2662), +(195681, 'Hayden', 2008, 'F', 2661), +(195682, 'Miley', 2008, 'F', 2648), +(195683, 'Jordan', 2008, 'F', 2647), +(195684, 'Jade', 2008, 'F', 2644), +(195685, 'Gabriela', 2008, 'F', 2614), +(195686, 'Amy', 2008, 'F', 2539), +(195687, 'Angela', 2008, 'F', 2536), +(195688, 'Melissa', 2008, 'F', 2515), +(195689, 'Valerie', 2008, 'F', 2504), +(195690, 'Giselle', 2008, 'F', 2488), +(195691, 'Diana', 2008, 'F', 2443), +(195692, 'Amanda', 2008, 'F', 2439), +(195693, 'Kate', 2008, 'F', 2418), +(195694, 'Laila', 2008, 'F', 2410), +(195695, 'Danielle', 2008, 'F', 2394), +(195696, 'Reagan', 2008, 'F', 2384), +(195697, 'Kylee', 2008, 'F', 2380), +(195698, 'Jordyn', 2008, 'F', 2372), +(195699, 'Marley', 2008, 'F', 2354), +(195700, 'Briana', 2008, 'F', 2353), +(195701, 'Leslie', 2008, 'F', 2324), +(195702, 'Catherine', 2008, 'F', 2318), +(195703, 'Kendall', 2008, 'F', 2308), +(195704, 'Liliana', 2008, 'F', 2294), +(195705, 'Mckenzie', 2008, 'F', 2283), +(195706, 'Jacqueline', 2008, 'F', 2263), +(195707, 'Ashlyn', 2008, 'F', 2259), +(195708, 'Reese', 2008, 'F', 2237), +(195709, 'Marissa', 2008, 'F', 2172), +(195710, 'London', 2008, 'F', 2158), +(195711, 'Juliana', 2008, 'F', 2150), +(195712, 'Shelby', 2008, 'F', 2144), +(195713, 'Angel', 2008, 'F', 2116), +(195714, 'Cheyenne', 2008, 'F', 2104), +(195715, 'Daisy', 2008, 'F', 2072), +(195716, 'Erin', 2008, 'F', 2064), +(195717, 'Makenzie', 2008, 'F', 2062), +(195718, 'Miranda', 2008, 'F', 2060), +(195719, 'Amber', 2008, 'F', 2059), +(195720, 'Alana', 2008, 'F', 2032), +(195721, 'Ellie', 2008, 'F', 1993), +(195722, 'Breanna', 2008, 'F', 1969), +(195723, 'Ana', 2008, 'F', 1951), +(195724, 'Summer', 2008, 'F', 1947), +(195725, 'Mikayla', 2008, 'F', 1940), +(195726, 'Piper', 2008, 'F', 1911), +(195727, 'Adrianna', 2008, 'F', 1902), +(195728, 'Jillian', 2008, 'F', 1902), +(195729, 'Sierra', 2008, 'F', 1899), +(195730, 'Jayden', 2008, 'F', 1888), +(195731, 'Margaret', 2008, 'F', 1860), +(195732, 'Alicia', 2008, 'F', 1858), +(195733, 'Sienna', 2008, 'F', 1858), +(195734, 'Lila', 2008, 'F', 1851), +(195735, 'Alivia', 2008, 'F', 1829), +(195736, 'Violet', 2008, 'F', 1826), +(195737, 'Brooklynn', 2008, 'F', 1825), +(195738, 'Stella', 2008, 'F', 1822), +(195739, 'Sabrina', 2008, 'F', 1820), +(195740, 'Aniyah', 2008, 'F', 1819), +(195741, 'Karen', 2008, 'F', 1816), +(195742, 'Annabelle', 2008, 'F', 1810), +(195743, 'Alexandria', 2008, 'F', 1790), +(195744, 'Kathryn', 2008, 'F', 1778), +(195745, 'Aliyah', 2008, 'F', 1751), +(195746, 'Skylar', 2008, 'F', 1746), +(195747, 'Delilah', 2008, 'F', 1738), +(195748, 'Julianna', 2008, 'F', 1733), +(195749, 'Kelsey', 2008, 'F', 1715), +(195750, 'Khloe', 2008, 'F', 1708), +(195751, 'Carly', 2008, 'F', 1683), +(195752, 'Amaya', 2008, 'F', 1678), +(195753, 'Mariana', 2008, 'F', 1678), +(195754, 'Christina', 2008, 'F', 1673), +(195755, 'Eliana', 2008, 'F', 1665), +(195756, 'Alondra', 2008, 'F', 1656), +(195757, 'Tessa', 2008, 'F', 1654), +(195758, 'Bianca', 2008, 'F', 1649), +(195759, 'Clara', 2008, 'F', 1646), +(195760, 'Vivian', 2008, 'F', 1639), +(195761, 'Jazmin', 2008, 'F', 1638), +(195762, 'Josephine', 2008, 'F', 1630), +(195763, 'Elena', 2008, 'F', 1623), +(195764, 'Delaney', 2008, 'F', 1620), +(195765, 'Scarlett', 2008, 'F', 1620), +(195766, 'Cadence', 2008, 'F', 1610), +(195767, 'Alexia', 2008, 'F', 1608), +(195768, 'Maggie', 2008, 'F', 1606), +(195769, 'Laura', 2008, 'F', 1588), +(195770, 'Nora', 2008, 'F', 1557), +(195771, 'Ariel', 2008, 'F', 1551), +(195772, 'Elise', 2008, 'F', 1549), +(195773, 'Nadia', 2008, 'F', 1540), +(195774, 'Hope', 2008, 'F', 1530), +(195775, 'Mckenna', 2008, 'F', 1522), +(195776, 'Chelsea', 2008, 'F', 1514), +(195777, 'Lyla', 2008, 'F', 1506), +(195778, 'Alaina', 2008, 'F', 1503), +(195779, 'Jasmin', 2008, 'F', 1501), +(195780, 'Leila', 2008, 'F', 1498), +(195781, 'Caitlyn', 2008, 'F', 1489), +(195782, 'Cassidy', 2008, 'F', 1486), +(195783, 'Eden', 2008, 'F', 1481), +(195784, 'Makenna', 2008, 'F', 1472), +(195785, 'Callie', 2008, 'F', 1466), +(195786, 'Haylee', 2008, 'F', 1466), +(195787, 'Izabella', 2008, 'F', 1465), +(195788, 'Allie', 2008, 'F', 1463), +(195789, 'Caitlin', 2008, 'F', 1457), +(195790, 'Kendra', 2008, 'F', 1448), +(195791, 'Karina', 2008, 'F', 1444), +(195792, 'Kyra', 2008, 'F', 1440), +(195793, 'Kayleigh', 2008, 'F', 1430), +(195794, 'Addyson', 2008, 'F', 1429), +(195795, 'Jazmine', 2008, 'F', 1424), +(195796, 'Kiara', 2008, 'F', 1422), +(195797, 'Karla', 2008, 'F', 1419), +(195798, 'Camryn', 2008, 'F', 1415), +(195799, 'Kyla', 2008, 'F', 1409), +(195800, 'Lola', 2008, 'F', 1409), +(195801, 'Alina', 2008, 'F', 1407), +(195802, 'Kelly', 2008, 'F', 1398), +(195803, 'Fatima', 2008, 'F', 1391), +(195804, 'Tiffany', 2008, 'F', 1373), +(195805, 'Kira', 2008, 'F', 1368), +(195806, 'Crystal', 2008, 'F', 1365), +(195807, 'Mallory', 2008, 'F', 1353), +(195808, 'Eleanor', 2008, 'F', 1341), +(195809, 'Esmeralda', 2008, 'F', 1339), +(195810, 'Jayda', 2008, 'F', 1337), +(195811, 'Angelica', 2008, 'F', 1335), +(195812, 'Kara', 2008, 'F', 1333), +(195813, 'Abby', 2008, 'F', 1329), +(195814, 'Alejandra', 2008, 'F', 1329), +(195815, 'Veronica', 2008, 'F', 1326), +(195816, 'Carmen', 2008, 'F', 1308), +(195817, 'Jamie', 2008, 'F', 1306), +(195818, 'Valentina', 2008, 'F', 1291), +(195819, 'Ryleigh', 2008, 'F', 1287), +(195820, 'Dakota', 2008, 'F', 1284), +(195821, 'Allyson', 2008, 'F', 1275), +(195822, 'Esther', 2008, 'F', 1273), +(195823, 'Kamryn', 2008, 'F', 1269), +(195824, 'Courtney', 2008, 'F', 1261), +(195825, 'Cecilia', 2008, 'F', 1258), +(195826, 'Madeleine', 2008, 'F', 1250), +(195827, 'Aniya', 2008, 'F', 1248), +(195828, 'Alison', 2008, 'F', 1247), +(195829, 'Heaven', 2008, 'F', 1244), +(195830, 'Leilani', 2008, 'F', 1228), +(195831, 'Aubree', 2008, 'F', 1226), +(195832, 'Nina', 2008, 'F', 1226), +(195833, 'Lindsey', 2008, 'F', 1225), +(195834, 'Melody', 2008, 'F', 1216), +(195835, 'Macy', 2008, 'F', 1214), +(195836, 'Ashlynn', 2008, 'F', 1203), +(195837, 'Joanna', 2008, 'F', 1192), +(195838, 'Cassandra', 2008, 'F', 1184), +(195839, 'Alayna', 2008, 'F', 1177), +(195840, 'Aurora', 2008, 'F', 1170), +(195841, 'Kaydence', 2008, 'F', 1170), +(195842, 'Madilyn', 2008, 'F', 1168), +(195843, 'Heidi', 2008, 'F', 1167), +(195844, 'Emerson', 2008, 'F', 1162), +(195845, 'Kimora', 2008, 'F', 1145), +(195846, 'Madalyn', 2008, 'F', 1143), +(195847, 'Katelynn', 2008, 'F', 1135), +(195848, 'Josie', 2008, 'F', 1133), +(195849, 'Erica', 2008, 'F', 1131), +(195850, 'Harper', 2008, 'F', 1128), +(195851, 'Guadalupe', 2008, 'F', 1124), +(195852, 'Ivy', 2008, 'F', 1121), +(195853, 'Lexi', 2008, 'F', 1121), +(195854, 'Camille', 2008, 'F', 1107), +(195855, 'Savanna', 2008, 'F', 1100), +(195856, 'Lucia', 2008, 'F', 1096), +(195857, 'Daniella', 2008, 'F', 1095), +(195858, 'Dulce', 2008, 'F', 1095), +(195859, 'Miriam', 2008, 'F', 1092), +(195860, 'Emely', 2008, 'F', 1091), +(195861, 'Kiley', 2008, 'F', 1088), +(195862, 'Joselyn', 2008, 'F', 1085), +(195863, 'Kailey', 2008, 'F', 1083), +(195864, 'Cynthia', 2008, 'F', 1072), +(195865, 'Georgia', 2008, 'F', 1072), +(195866, 'Rihanna', 2008, 'F', 1072), +(195867, 'Harmony', 2008, 'F', 1069), +(195868, 'Kiera', 2008, 'F', 1069), +(195869, 'Kyleigh', 2008, 'F', 1064), +(195870, 'Bethany', 2008, 'F', 1063), +(195871, 'Rylie', 2008, 'F', 1063), +(195872, 'Monica', 2008, 'F', 1058), +(195873, 'Kaylie', 2008, 'F', 1054), +(195874, 'Cameron', 2008, 'F', 1051), +(195875, 'Teagan', 2008, 'F', 1043), +(195876, 'Genevieve', 2008, 'F', 1040), +(195877, 'Brynn', 2008, 'F', 1039), +(195878, 'Cora', 2008, 'F', 1039), +(195879, 'Ciara', 2008, 'F', 1038), +(195880, 'Eliza', 2008, 'F', 1028), +(195881, 'Alice', 2008, 'F', 1023), +(195882, 'Tatiana', 2008, 'F', 1023), +(195883, 'April', 2008, 'F', 1019), +(195884, 'Maddison', 2008, 'F', 1018), +(195885, 'Erika', 2008, 'F', 1016), +(195886, 'Jaelyn', 2008, 'F', 1013), +(195887, 'Ximena', 2008, 'F', 1011), +(195888, 'Marely', 2008, 'F', 1004), +(195889, 'Julie', 2008, 'F', 993), +(195890, 'Danica', 2008, 'F', 990), +(195891, 'Presley', 2008, 'F', 987), +(195892, 'Brielle', 2008, 'F', 983), +(195893, 'Julissa', 2008, 'F', 977), +(195894, 'Angie', 2008, 'F', 974), +(195895, 'Iris', 2008, 'F', 971), +(195896, 'Rose', 2008, 'F', 968), +(195897, 'Brenda', 2008, 'F', 967), +(195898, 'Malia', 2008, 'F', 967), +(195899, 'Hazel', 2008, 'F', 966), +(195900, 'Shayla', 2008, 'F', 963), +(195901, 'Fiona', 2008, 'F', 961), +(195902, 'Phoebe', 2008, 'F', 959), +(195903, 'Paola', 2008, 'F', 954), +(195904, 'Selena', 2008, 'F', 954), +(195905, 'Nayeli', 2008, 'F', 947), +(195906, 'Kaelyn', 2008, 'F', 946), +(195907, 'Rebekah', 2008, 'F', 941), +(195908, 'Audrina', 2008, 'F', 931), +(195909, 'Janiyah', 2008, 'F', 928), +(195910, 'Carolina', 2008, 'F', 925), +(195911, 'Ruth', 2008, 'F', 924), +(195912, 'Michaela', 2008, 'F', 921), +(195913, 'Penelope', 2008, 'F', 919), +(195914, 'Sasha', 2008, 'F', 915), +(195915, 'Janiya', 2008, 'F', 914), +(195916, 'Anastasia', 2008, 'F', 911), +(195917, 'Adeline', 2008, 'F', 910), +(195918, 'Holly', 2008, 'F', 905), +(195919, 'Denise', 2008, 'F', 895), +(195920, 'Hanna', 2008, 'F', 892), +(195921, 'Marlee', 2008, 'F', 889), +(195922, 'Madisyn', 2008, 'F', 885), +(195923, 'Tatum', 2008, 'F', 885), +(195924, 'Helen', 2008, 'F', 884), +(195925, 'Nataly', 2008, 'F', 883), +(195926, 'Anya', 2008, 'F', 882), +(195927, 'Janelle', 2008, 'F', 881), +(195928, 'Lizbeth', 2008, 'F', 881), +(195929, 'Serena', 2008, 'F', 881), +(195930, 'Jaslene', 2008, 'F', 872), +(195931, 'Kaylin', 2008, 'F', 869), +(195932, 'Jazlyn', 2008, 'F', 859), +(195933, 'Nancy', 2008, 'F', 856), +(195934, 'Hayley', 2008, 'F', 850), +(195935, 'Desiree', 2008, 'F', 849), +(195936, 'Lindsay', 2008, 'F', 847), +(195937, 'Itzel', 2008, 'F', 846), +(195938, 'Imani', 2008, 'F', 840), +(195939, 'Asia', 2008, 'F', 836), +(195940, 'Talia', 2008, 'F', 832), +(195941, 'Madelynn', 2008, 'F', 830), +(195942, 'Amari', 2008, 'F', 829), +(195943, 'Jane', 2008, 'F', 826), +(195944, 'Kadence', 2008, 'F', 825), +(195945, 'Madyson', 2008, 'F', 825), +(195946, 'Kayden', 2008, 'F', 823), +(195947, 'Annie', 2008, 'F', 822), +(195948, 'Bridget', 2008, 'F', 820), +(195949, 'Raegan', 2008, 'F', 814), +(195950, 'Jadyn', 2008, 'F', 811), +(195951, 'Yasmin', 2008, 'F', 807), +(195952, 'Celeste', 2008, 'F', 806), +(195953, 'Luna', 2008, 'F', 806), +(195954, 'Annika', 2008, 'F', 804), +(195955, 'Emilia', 2008, 'F', 803), +(195956, 'Jimena', 2008, 'F', 803), +(195957, 'Estrella', 2008, 'F', 799), +(195958, 'Sarai', 2008, 'F', 797), +(195959, 'Ayla', 2008, 'F', 796), +(195960, 'Lacey', 2008, 'F', 794), +(195961, 'Willow', 2008, 'F', 791), +(195962, 'Alessandra', 2008, 'F', 784), +(195963, 'Nyla', 2008, 'F', 783), +(195964, 'Lilliana', 2008, 'F', 780), +(195965, 'Dayana', 2008, 'F', 777), +(195966, 'Harley', 2008, 'F', 776), +(195967, 'Natasha', 2008, 'F', 776), +(195968, 'Priscilla', 2008, 'F', 775), +(195969, 'Brittany', 2008, 'F', 773), +(195970, 'Lilah', 2008, 'F', 773), +(195971, 'Claudia', 2008, 'F', 771), +(195972, 'Baylee', 2008, 'F', 769), +(195973, 'Hadley', 2008, 'F', 769), +(195974, 'Allisson', 2008, 'F', 767), +(195975, 'Fernanda', 2008, 'F', 767), +(195976, 'Brenna', 2008, 'F', 765), +(195977, 'Skyler', 2008, 'F', 761), +(195978, 'Danna', 2008, 'F', 758), +(195979, 'Melany', 2008, 'F', 744), +(195980, 'Gloria', 2008, 'F', 740), +(195981, 'Lia', 2008, 'F', 740), +(195982, 'Cali', 2008, 'F', 738), +(195983, 'Macie', 2008, 'F', 737), +(195984, 'Lyric', 2008, 'F', 736), +(195985, 'Logan', 2008, 'F', 734), +(195986, 'Mylee', 2008, 'F', 730), +(195987, 'Amira', 2008, 'F', 729), +(195988, 'Cindy', 2008, 'F', 729), +(195989, 'Lana', 2008, 'F', 729), +(195990, 'Alissa', 2008, 'F', 728), +(195991, 'Lilian', 2008, 'F', 728), +(195992, 'Anahi', 2008, 'F', 727), +(195993, 'Anaya', 2008, 'F', 726), +(195994, 'Lena', 2008, 'F', 726), +(195995, 'Noelle', 2008, 'F', 723), +(195996, 'Sandra', 2008, 'F', 720), +(195997, 'Ainsley', 2008, 'F', 719), +(195998, 'Marisol', 2008, 'F', 713), +(195999, 'Meredith', 2008, 'F', 709), +(196000, 'Diamond', 2008, 'F', 704), +(196001, 'Kailyn', 2008, 'F', 703), +(196002, 'Kathleen', 2008, 'F', 703), +(196003, 'Johanna', 2008, 'F', 700), +(196004, 'Paisley', 2008, 'F', 700), +(196005, 'Lesly', 2008, 'F', 699), +(196006, 'Evangeline', 2008, 'F', 698), +(196007, 'Juliet', 2008, 'F', 697), +(196008, 'Rosa', 2008, 'F', 695), +(196009, 'Meghan', 2008, 'F', 694), +(196010, 'Athena', 2008, 'F', 692), +(196011, 'Hailee', 2008, 'F', 691), +(196012, 'Sage', 2008, 'F', 690), +(196013, 'Emilee', 2008, 'F', 689), +(196014, 'Wendy', 2008, 'F', 688), +(196015, 'Elaina', 2008, 'F', 684), +(196016, 'Paris', 2008, 'F', 683), +(196017, 'Alanna', 2008, 'F', 682), +(196018, 'Nia', 2008, 'F', 681), +(196019, 'Cara', 2008, 'F', 680), +(196020, 'Dana', 2008, 'F', 680), +(196021, 'Emery', 2008, 'F', 679), +(196022, 'Casey', 2008, 'F', 675), +(196023, 'Jaden', 2008, 'F', 675), +(196024, 'Kaitlin', 2008, 'F', 673), +(196025, 'Rowan', 2008, 'F', 673), +(196026, 'Aubrie', 2008, 'F', 672), +(196027, 'Kiana', 2008, 'F', 672), +(196028, 'Miracle', 2008, 'F', 672), +(196029, 'Kenzie', 2008, 'F', 668), +(196030, 'Lauryn', 2008, 'F', 665), +(196031, 'Norah', 2008, 'F', 665), +(196032, 'Perla', 2008, 'F', 662), +(196033, 'Viviana', 2008, 'F', 661), +(196034, 'Amiyah', 2008, 'F', 659), +(196035, 'Rachael', 2008, 'F', 657), +(196036, 'Shannon', 2008, 'F', 657), +(196037, 'Alyson', 2008, 'F', 654), +(196038, 'Lillie', 2008, 'F', 652), +(196039, 'Heather', 2008, 'F', 651), +(196040, 'Aileen', 2008, 'F', 648), +(196041, 'Danika', 2008, 'F', 647), +(196042, 'Francesca', 2008, 'F', 646), +(196043, 'Tori', 2008, 'F', 644), +(196044, 'Kassidy', 2008, 'F', 643), +(196045, 'Kristen', 2008, 'F', 643), +(196046, 'Elle', 2008, 'F', 641), +(196047, 'Taryn', 2008, 'F', 640), +(196048, 'Amya', 2008, 'F', 639), +(196049, 'Cheyanne', 2008, 'F', 638), +(196050, 'Kristina', 2008, 'F', 636), +(196051, 'Anne', 2008, 'F', 634), +(196052, 'Patricia', 2008, 'F', 629), +(196053, 'Haylie', 2008, 'F', 628), +(196054, 'Samara', 2008, 'F', 628), +(196055, 'Skye', 2008, 'F', 623), +(196056, 'Halle', 2008, 'F', 619), +(196057, 'Lexie', 2008, 'F', 619), +(196058, 'Kali', 2008, 'F', 618), +(196059, 'Parker', 2008, 'F', 617), +(196060, 'America', 2008, 'F', 614), +(196061, 'Linda', 2008, 'F', 611), +(196062, 'Londyn', 2008, 'F', 610), +(196063, 'Abbigail', 2008, 'F', 608), +(196064, 'Hallie', 2008, 'F', 608), +(196065, 'Saniya', 2008, 'F', 601), +(196066, 'Bryanna', 2008, 'F', 599), +(196067, 'Quinn', 2008, 'F', 599), +(196068, 'Bailee', 2008, 'F', 598), +(196069, 'Caylee', 2008, 'F', 598), +(196070, 'Jaida', 2008, 'F', 598), +(196071, 'Mckayla', 2008, 'F', 597), +(196072, 'Melina', 2008, 'F', 597), +(196073, 'Jaylynn', 2008, 'F', 596), +(196074, 'Jaelynn', 2008, 'F', 591), +(196075, 'Jaiden', 2008, 'F', 590), +(196076, 'Abril', 2008, 'F', 585), +(196077, 'Elisabeth', 2008, 'F', 583), +(196078, 'Sidney', 2008, 'F', 583), +(196079, 'Dylan', 2008, 'F', 581), +(196080, 'Brylee', 2008, 'F', 580), +(196081, 'Kassandra', 2008, 'F', 579), +(196082, 'Kaylynn', 2008, 'F', 579), +(196083, 'Mercedes', 2008, 'F', 579), +(196084, 'Yesenia', 2008, 'F', 579), +(196085, 'Elliana', 2008, 'F', 578), +(196086, 'Adalyn', 2008, 'F', 577), +(196087, 'Marina', 2008, 'F', 577), +(196088, 'Mikaela', 2008, 'F', 576), +(196089, 'Isabela', 2008, 'F', 575), +(196090, 'Ryan', 2008, 'F', 573), +(196091, 'Joy', 2008, 'F', 572), +(196092, 'Daphne', 2008, 'F', 571), +(196093, 'Kenya', 2008, 'F', 570), +(196094, 'Ashlee', 2008, 'F', 569), +(196095, 'Justice', 2008, 'F', 569), +(196096, 'Christine', 2008, 'F', 568), +(196097, 'Kaitlynn', 2008, 'F', 565), +(196098, 'Ingrid', 2008, 'F', 564), +(196099, 'Jaliyah', 2008, 'F', 563), +(196100, 'Marie', 2008, 'F', 563), +(196101, 'Natalee', 2008, 'F', 563), +(196102, 'Saniyah', 2008, 'F', 563), +(196103, 'Simone', 2008, 'F', 561), +(196104, 'Tamia', 2008, 'F', 561), +(196105, 'Adelaide', 2008, 'F', 557), +(196106, 'Juliette', 2008, 'F', 557), +(196107, 'Addisyn', 2008, 'F', 554), +(196108, 'Krystal', 2008, 'F', 554), +(196109, 'Sylvia', 2008, 'F', 554), +(196110, 'Dayanara', 2008, 'F', 553), +(196111, 'Kennedi', 2008, 'F', 553), +(196112, 'Mila', 2008, 'F', 553), +(196113, 'Virginia', 2008, 'F', 549), +(196114, 'Aylin', 2008, 'F', 548), +(196115, 'Jaidyn', 2008, 'F', 548), +(196116, 'Jolie', 2008, 'F', 546), +(196117, 'Kinsley', 2008, 'F', 546), +(196118, 'Clarissa', 2008, 'F', 545), +(196119, 'Maritza', 2008, 'F', 545), +(196120, 'Braelyn', 2008, 'F', 543), +(196121, 'Laney', 2008, 'F', 543), +(196122, 'Marilyn', 2008, 'F', 543), +(196123, 'Kirsten', 2008, 'F', 542), +(196124, 'Whitney', 2008, 'F', 541), +(196125, 'Aria', 2008, 'F', 540), +(196126, 'Kamila', 2008, 'F', 537), +(196127, 'Raquel', 2008, 'F', 537), +(196128, 'Janessa', 2008, 'F', 536), +(196129, 'Zariah', 2008, 'F', 536), +(196130, 'Anika', 2008, 'F', 534), +(196131, 'Kaleigh', 2008, 'F', 534), +(196132, 'Teresa', 2008, 'F', 534), +(196133, 'Amara', 2008, 'F', 533), +(196134, 'Rubi', 2008, 'F', 531), +(196135, 'Ayanna', 2008, 'F', 530), +(196136, 'Paulina', 2008, 'F', 530), +(196137, 'Amani', 2008, 'F', 529), +(196138, 'Carla', 2008, 'F', 529), +(196139, 'Nathalie', 2008, 'F', 528), +(196140, 'Tabitha', 2008, 'F', 528), +(196141, 'Adelyn', 2008, 'F', 527), +(196142, 'Annabella', 2008, 'F', 527), +(196143, 'Madalynn', 2008, 'F', 527), +(196144, 'Yareli', 2008, 'F', 527), +(196145, 'Gwendolyn', 2008, 'F', 526), +(196146, 'Aiyana', 2008, 'F', 524), +(196147, 'Deanna', 2008, 'F', 524), +(196148, 'Jaylin', 2008, 'F', 524), +(196149, 'Journey', 2008, 'F', 523), +(196150, 'Ada', 2008, 'F', 521), +(196151, 'Skyla', 2008, 'F', 521), +(196152, 'Yaretzi', 2008, 'F', 518), +(196153, 'Liana', 2008, 'F', 513), +(196154, 'Jenny', 2008, 'F', 511), +(196155, 'Myla', 2008, 'F', 511), +(196156, 'Karlee', 2008, 'F', 510), +(196157, 'Lisa', 2008, 'F', 507), +(196158, 'Myah', 2008, 'F', 506), +(196159, 'Cristina', 2008, 'F', 505), +(196160, 'Isis', 2008, 'F', 504), +(196161, 'Tania', 2008, 'F', 504), +(196162, 'Lucille', 2008, 'F', 503), +(196163, 'Helena', 2008, 'F', 501), +(196164, 'Raven', 2008, 'F', 499), +(196165, 'Arely', 2008, 'F', 498), +(196166, 'Jayleen', 2008, 'F', 498), +(196167, 'Jordin', 2008, 'F', 498), +(196168, 'Azul', 2008, 'F', 497), +(196169, 'Destinee', 2008, 'F', 496), +(196170, 'Jaqueline', 2008, 'F', 496), +(196171, 'Aryanna', 2008, 'F', 495), +(196172, 'Liberty', 2008, 'F', 495), +(196173, 'Martha', 2008, 'F', 495), +(196174, 'Arielle', 2008, 'F', 493), +(196175, 'Isla', 2008, 'F', 493), +(196176, 'Jessie', 2008, 'F', 493), +(196177, 'Zoie', 2008, 'F', 493), +(196178, 'Aleah', 2008, 'F', 492), +(196179, 'Elisa', 2008, 'F', 492), +(196180, 'Haven', 2008, 'F', 492), +(196181, 'Lilyana', 2008, 'F', 491), +(196182, 'Marlene', 2008, 'F', 491), +(196183, 'Kailee', 2008, 'F', 489), +(196184, 'Kaliyah', 2008, 'F', 489), +(196185, 'Noemi', 2008, 'F', 489), +(196186, 'Tara', 2008, 'F', 489), +(196187, 'Carley', 2008, 'F', 487), +(196188, 'Maeve', 2008, 'F', 486), +(196189, 'Camilla', 2008, 'F', 485), +(196190, 'Giana', 2008, 'F', 485), +(196191, 'Maia', 2008, 'F', 485), +(196192, 'Irene', 2008, 'F', 482), +(196193, 'Jaylene', 2008, 'F', 481), +(196194, 'Maliyah', 2008, 'F', 481), +(196195, 'Tiana', 2008, 'F', 481), +(196196, 'Kaya', 2008, 'F', 479), +(196197, 'Sharon', 2008, 'F', 479), +(196198, 'Lea', 2008, 'F', 478), +(196199, 'Macey', 2008, 'F', 478), +(196200, 'Marisa', 2008, 'F', 478), +(196201, 'Alisha', 2008, 'F', 476), +(196202, 'Jaycee', 2008, 'F', 476), +(196203, 'Siena', 2008, 'F', 475), +(196204, 'Scarlet', 2008, 'F', 474), +(196205, 'Shiloh', 2008, 'F', 474), +(196206, 'Adyson', 2008, 'F', 473), +(196207, 'Eve', 2008, 'F', 468), +(196208, 'Arabella', 2008, 'F', 467), +(196209, 'Shyanne', 2008, 'F', 467), +(196210, 'Yazmin', 2008, 'F', 467), +(196211, 'Amiya', 2008, 'F', 465), +(196212, 'Gisselle', 2008, 'F', 464), +(196213, 'Shania', 2008, 'F', 464), +(196214, 'Sherlyn', 2008, 'F', 464), +(196215, 'Kiersten', 2008, 'F', 463), +(196216, 'Sariah', 2008, 'F', 463), +(196217, 'Aleena', 2008, 'F', 462), +(196218, 'Finley', 2008, 'F', 462), +(196219, 'Kinley', 2008, 'F', 462), +(196220, 'Kaia', 2008, 'F', 461), +(196221, 'Aliya', 2008, 'F', 460), +(196222, 'Madilynn', 2008, 'F', 460), +(196223, 'Ellen', 2008, 'F', 457), +(196224, 'Taliyah', 2008, 'F', 457), +(196225, 'Pamela', 2008, 'F', 455), +(196226, 'Carlie', 2008, 'F', 454), +(196227, 'Yoselin', 2008, 'F', 454), +(196228, 'Clare', 2008, 'F', 452), +(196229, 'Monserrat', 2008, 'F', 452), +(196230, 'Jakayla', 2008, 'F', 451), +(196231, 'Carolyn', 2008, 'F', 448), +(196232, 'Paula', 2008, 'F', 448), +(196233, 'Reyna', 2008, 'F', 448), +(196234, 'Yaritza', 2008, 'F', 447), +(196235, 'Lorelei', 2008, 'F', 446), +(196236, 'Zaria', 2008, 'F', 443), +(196237, 'Alena', 2008, 'F', 442), +(196238, 'Emilie', 2008, 'F', 442), +(196239, 'Gracelyn', 2008, 'F', 442), +(196240, 'Regina', 2008, 'F', 442), +(196241, 'Angelique', 2008, 'F', 441), +(196242, 'Britney', 2008, 'F', 441), +(196243, 'Mariam', 2008, 'F', 441), +(196244, 'Regan', 2008, 'F', 441), +(196245, 'Kasey', 2008, 'F', 439), +(196246, 'Julianne', 2008, 'F', 437), +(196247, 'Jaylee', 2008, 'F', 436), +(196248, 'Annalise', 2008, 'F', 435), +(196249, 'Greta', 2008, 'F', 434), +(196250, 'Zion', 2008, 'F', 434), +(196251, 'Lainey', 2008, 'F', 433), +(196252, 'Elyse', 2008, 'F', 432), +(196253, 'Felicity', 2008, 'F', 431), +(196254, 'Carlee', 2008, 'F', 429), +(196255, 'Kallie', 2008, 'F', 429), +(196256, 'Aspen', 2008, 'F', 427), +(196257, 'Iliana', 2008, 'F', 427), +(196258, 'Catalina', 2008, 'F', 424); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(196259, 'Phoenix', 2008, 'F', 424), +(196260, 'Akira', 2008, 'F', 423), +(196261, 'Sonia', 2008, 'F', 423), +(196262, 'Larissa', 2008, 'F', 422), +(196263, 'Susan', 2008, 'F', 421), +(196264, 'Anabelle', 2008, 'F', 420), +(196265, 'Joslyn', 2008, 'F', 419), +(196266, 'Mollie', 2008, 'F', 419), +(196267, 'Gia', 2008, 'F', 417), +(196268, 'Judith', 2008, 'F', 416), +(196269, 'Alexus', 2008, 'F', 415), +(196270, 'Destiney', 2008, 'F', 415), +(196271, 'Katrina', 2008, 'F', 415), +(196272, 'Ansley', 2008, 'F', 414), +(196273, 'Janet', 2008, 'F', 414), +(196274, 'Haleigh', 2008, 'F', 413), +(196275, 'Hillary', 2008, 'F', 412), +(196276, 'Elsa', 2008, 'F', 411), +(196277, 'Mareli', 2008, 'F', 411), +(196278, 'Kaylyn', 2008, 'F', 410), +(196279, 'Jazlynn', 2008, 'F', 409), +(196280, 'Lorena', 2008, 'F', 409), +(196281, 'Maci', 2008, 'F', 409), +(196282, 'Carissa', 2008, 'F', 408), +(196283, 'Milagros', 2008, 'F', 408), +(196284, 'Stacy', 2008, 'F', 408), +(196285, 'Kaylen', 2008, 'F', 407), +(196286, 'Leanna', 2008, 'F', 407), +(196287, 'Luz', 2008, 'F', 406), +(196288, 'Shaniya', 2008, 'F', 406), +(196289, 'Cherish', 2008, 'F', 404), +(196290, 'Renee', 2008, 'F', 404), +(196291, 'Charlie', 2008, 'F', 403), +(196292, 'Chaya', 2008, 'F', 403), +(196293, 'Elsie', 2008, 'F', 403), +(196294, 'Jazmyn', 2008, 'F', 403), +(196295, 'Abbie', 2008, 'F', 400), +(196296, 'Cailyn', 2008, 'F', 399), +(196297, 'Emmalee', 2008, 'F', 399), +(196298, 'Luciana', 2008, 'F', 399), +(196299, 'Elaine', 2008, 'F', 398), +(196300, 'Dahlia', 2008, 'F', 397), +(196301, 'Jamya', 2008, 'F', 396), +(196302, 'Mariyah', 2008, 'F', 395), +(196303, 'Rosemary', 2008, 'F', 395), +(196304, 'Belinda', 2008, 'F', 394), +(196305, 'Yadira', 2008, 'F', 394), +(196306, 'Rhianna', 2008, 'F', 393), +(196307, 'Dayami', 2008, 'F', 392), +(196308, 'Barbara', 2008, 'F', 391), +(196309, 'Celia', 2008, 'F', 390), +(196310, 'Rayna', 2008, 'F', 390), +(196311, 'Aryana', 2008, 'F', 389), +(196312, 'Armani', 2008, 'F', 388), +(196313, 'Cristal', 2008, 'F', 388), +(196314, 'Campbell', 2008, 'F', 387), +(196315, 'Cecelia', 2008, 'F', 387), +(196316, 'Eileen', 2008, 'F', 386), +(196317, 'Amina', 2008, 'F', 385), +(196318, 'Aisha', 2008, 'F', 383), +(196319, 'Patience', 2008, 'F', 383), +(196320, 'Sanaa', 2008, 'F', 383), +(196321, 'Ally', 2008, 'F', 382), +(196322, 'Leyla', 2008, 'F', 382), +(196323, 'Amirah', 2008, 'F', 381), +(196324, 'Araceli', 2008, 'F', 381), +(196325, 'Mayra', 2008, 'F', 381), +(196326, 'Amelie', 2008, 'F', 379), +(196327, 'Kaiya', 2008, 'F', 379), +(196328, 'Selah', 2008, 'F', 379), +(196329, 'Averie', 2008, 'F', 378), +(196330, 'Keyla', 2008, 'F', 378), +(196331, 'Chanel', 2008, 'F', 377), +(196332, 'Giovanna', 2008, 'F', 377), +(196333, 'Paloma', 2008, 'F', 377), +(196334, 'Dominique', 2008, 'F', 376), +(196335, 'Miah', 2008, 'F', 376), +(196336, 'Zara', 2008, 'F', 376), +(196337, 'Aimee', 2008, 'F', 375), +(196338, 'Alisson', 2008, 'F', 374), +(196339, 'Precious', 2008, 'F', 374), +(196340, 'Adrienne', 2008, 'F', 373), +(196341, 'Kelsie', 2008, 'F', 372), +(196342, 'Angeline', 2008, 'F', 371), +(196343, 'Alma', 2008, 'F', 369), +(196344, 'Cierra', 2008, 'F', 369), +(196345, 'Brisa', 2008, 'F', 368), +(196346, 'Charity', 2008, 'F', 368), +(196347, 'Frances', 2008, 'F', 368), +(196348, 'Janae', 2008, 'F', 368), +(196349, 'Janiah', 2008, 'F', 366), +(196350, 'Isabell', 2008, 'F', 365), +(196351, 'Shyla', 2008, 'F', 364), +(196352, 'Annabel', 2008, 'F', 361), +(196353, 'Jacquelyn', 2008, 'F', 361), +(196354, 'Jaylah', 2008, 'F', 360), +(196355, 'Marianna', 2008, 'F', 360), +(196356, 'Karissa', 2008, 'F', 359), +(196357, 'Kierra', 2008, 'F', 359), +(196358, 'Karlie', 2008, 'F', 358), +(196359, 'Edith', 2008, 'F', 357), +(196360, 'Olive', 2008, 'F', 357), +(196361, 'Xiomara', 2008, 'F', 356), +(196362, 'Deborah', 2008, 'F', 355), +(196363, 'Jacey', 2008, 'F', 355), +(196364, 'Jaylyn', 2008, 'F', 355), +(196365, 'Damaris', 2008, 'F', 354), +(196366, 'Mara', 2008, 'F', 354), +(196367, 'India', 2008, 'F', 353), +(196368, 'Kendal', 2008, 'F', 352), +(196369, 'Moriah', 2008, 'F', 352), +(196370, 'Ayana', 2008, 'F', 350), +(196371, 'Evelin', 2008, 'F', 350), +(196372, 'Charlee', 2008, 'F', 349), +(196373, 'Kayley', 2008, 'F', 349), +(196374, 'Tamara', 2008, 'F', 349), +(196375, 'Briley', 2008, 'F', 348), +(196376, 'Nylah', 2008, 'F', 347), +(196377, 'Saige', 2008, 'F', 346), +(196378, 'Abbey', 2008, 'F', 344), +(196379, 'Matilda', 2008, 'F', 344), +(196380, 'Savanah', 2008, 'F', 344), +(196381, 'Ann', 2008, 'F', 343), +(196382, 'Hana', 2008, 'F', 343), +(196383, 'Lizeth', 2008, 'F', 343), +(196384, 'Giada', 2008, 'F', 342), +(196385, 'Karly', 2008, 'F', 342), +(196386, 'Jazlene', 2008, 'F', 340), +(196387, 'Theresa', 2008, 'F', 340), +(196388, 'Ashly', 2008, 'F', 339), +(196389, 'Gillian', 2008, 'F', 339), +(196390, 'Yasmine', 2008, 'F', 339), +(196391, 'Beatrice', 2008, 'F', 338), +(196392, 'Ireland', 2008, 'F', 338), +(196393, 'Mylie', 2008, 'F', 337), +(196394, 'Corinne', 2008, 'F', 336), +(196395, 'Maleah', 2008, 'F', 336), +(196396, 'Keely', 2008, 'F', 335), +(196397, 'Kenna', 2008, 'F', 335), +(196398, 'Tianna', 2008, 'F', 334), +(196399, 'Tanya', 2008, 'F', 333), +(196400, 'Karma', 2008, 'F', 332), +(196401, 'Salma', 2008, 'F', 332), +(196402, 'Shyann', 2008, 'F', 332), +(196403, 'Evie', 2008, 'F', 331), +(196404, 'Ryann', 2008, 'F', 330), +(196405, 'Areli', 2008, 'F', 329), +(196406, 'Adalynn', 2008, 'F', 328), +(196407, 'Kaley', 2008, 'F', 328), +(196408, 'Gina', 2008, 'F', 326), +(196409, 'Meadow', 2008, 'F', 325), +(196410, 'Roselyn', 2008, 'F', 325), +(196411, 'Kaila', 2008, 'F', 324), +(196412, 'Nathaly', 2008, 'F', 324), +(196413, 'Jaylen', 2008, 'F', 323), +(196414, 'Makena', 2008, 'F', 323), +(196415, 'Natalya', 2008, 'F', 323), +(196416, 'Yuliana', 2008, 'F', 323), +(196417, 'Aliza', 2008, 'F', 322), +(196418, 'Rayne', 2008, 'F', 322), +(196419, 'Belen', 2008, 'F', 321), +(196420, 'Lilianna', 2008, 'F', 321), +(196421, 'Tess', 2008, 'F', 321), +(196422, 'Ali', 2008, 'F', 320), +(196423, 'Alisa', 2008, 'F', 320), +(196424, 'June', 2008, 'F', 320), +(196425, 'Abagail', 2008, 'F', 319), +(196426, 'Jocelynn', 2008, 'F', 319), +(196427, 'Lillianna', 2008, 'F', 319), +(196428, 'Aracely', 2008, 'F', 318), +(196429, 'Joyce', 2008, 'F', 318), +(196430, 'Litzy', 2008, 'F', 318), +(196431, 'Mattie', 2008, 'F', 318), +(196432, 'Thalia', 2008, 'F', 318), +(196433, 'Tia', 2008, 'F', 318), +(196434, 'Kristin', 2008, 'F', 317), +(196435, 'Zaniyah', 2008, 'F', 317), +(196436, 'Libby', 2008, 'F', 316), +(196437, 'Taniya', 2008, 'F', 316), +(196438, 'Jaslyn', 2008, 'F', 315), +(196439, 'Sarahi', 2008, 'F', 315), +(196440, 'Gemma', 2008, 'F', 314), +(196441, 'Frida', 2008, 'F', 313), +(196442, 'Giuliana', 2008, 'F', 313), +(196443, 'Micah', 2008, 'F', 313), +(196444, 'Lorelai', 2008, 'F', 312), +(196445, 'Valery', 2008, 'F', 312), +(196446, 'Adison', 2008, 'F', 311), +(196447, 'Krista', 2008, 'F', 311), +(196448, 'Deja', 2008, 'F', 310), +(196449, 'Lailah', 2008, 'F', 310), +(196450, 'Yamilet', 2008, 'F', 310), +(196451, 'Magdalena', 2008, 'F', 309), +(196452, 'Mckinley', 2008, 'F', 309), +(196453, 'Carina', 2008, 'F', 308), +(196454, 'Jewel', 2008, 'F', 308), +(196455, 'Karli', 2008, 'F', 308), +(196456, 'Brynlee', 2008, 'F', 307), +(196457, 'Mira', 2008, 'F', 307), +(196458, 'Stephany', 2008, 'F', 306), +(196459, 'Cassie', 2008, 'F', 304), +(196460, 'Aliana', 2008, 'F', 303), +(196461, 'Mina', 2008, 'F', 303), +(196462, 'Shirley', 2008, 'F', 303), +(196463, 'Charlize', 2008, 'F', 302), +(196464, 'Raelynn', 2008, 'F', 302), +(196465, 'Karley', 2008, 'F', 301), +(196466, 'Marlie', 2008, 'F', 301), +(196467, 'Cloe', 2008, 'F', 300), +(196468, 'Taniyah', 2008, 'F', 300), +(196469, 'Ariella', 2008, 'F', 299), +(196470, 'Lina', 2008, 'F', 299), +(196471, 'Nola', 2008, 'F', 299), +(196472, 'Alani', 2008, 'F', 298), +(196473, 'Dalia', 2008, 'F', 298), +(196474, 'Raina', 2008, 'F', 298), +(196475, 'Anabella', 2008, 'F', 297), +(196476, 'Bria', 2008, 'F', 297), +(196477, 'Monique', 2008, 'F', 297), +(196478, 'Sanai', 2008, 'F', 297), +(196479, 'Kamari', 2008, 'F', 296), +(196480, 'Ashleigh', 2008, 'F', 295), +(196481, 'Mariela', 2008, 'F', 295), +(196482, 'Alia', 2008, 'F', 293), +(196483, 'Reina', 2008, 'F', 293), +(196484, 'Ashanti', 2008, 'F', 292), +(196485, 'Lara', 2008, 'F', 292), +(196486, 'Leia', 2008, 'F', 292), +(196487, 'Lilia', 2008, 'F', 292), +(196488, 'Justine', 2008, 'F', 291), +(196489, 'Maribel', 2008, 'F', 291), +(196490, 'Princess', 2008, 'F', 291), +(196491, 'Tiara', 2008, 'F', 291), +(196492, 'Chana', 2008, 'F', 289), +(196493, 'Paityn', 2008, 'F', 289), +(196494, 'Sydnee', 2008, 'F', 289), +(196495, 'Abigayle', 2008, 'F', 288), +(196496, 'Alannah', 2008, 'F', 288), +(196497, 'Kamora', 2008, 'F', 288), +(196498, 'Nyasia', 2008, 'F', 287), +(196499, 'Payten', 2008, 'F', 287), +(196500, 'Marin', 2008, 'F', 286), +(196501, 'Naima', 2008, 'F', 286), +(196502, 'Heidy', 2008, 'F', 285), +(196503, 'Livia', 2008, 'F', 285), +(196504, 'Nathalia', 2008, 'F', 284), +(196505, 'Shaylee', 2008, 'F', 284), +(196506, 'Gretchen', 2008, 'F', 283), +(196507, 'Maryjane', 2008, 'F', 283), +(196508, 'Emelia', 2008, 'F', 282), +(196509, 'Emmy', 2008, 'F', 282), +(196510, 'Izabelle', 2008, 'F', 281), +(196511, 'Laci', 2008, 'F', 281), +(196512, 'Mireya', 2008, 'F', 281), +(196513, 'Azaria', 2008, 'F', 280), +(196514, 'Anabel', 2008, 'F', 279), +(196515, 'Chasity', 2008, 'F', 279), +(196516, 'Denisse', 2008, 'F', 278), +(196517, 'Dixie', 2008, 'F', 278), +(196518, 'Maren', 2008, 'F', 278), +(196519, 'Micaela', 2008, 'F', 278), +(196520, 'Donna', 2008, 'F', 277), +(196521, 'Esperanza', 2008, 'F', 277), +(196522, 'Selina', 2008, 'F', 277), +(196523, 'Shea', 2008, 'F', 277), +(196524, 'Averi', 2008, 'F', 276), +(196525, 'Hadassah', 2008, 'F', 276), +(196526, 'Kaylah', 2008, 'F', 276), +(196527, 'Shayna', 2008, 'F', 276), +(196528, 'Amiah', 2008, 'F', 275), +(196529, 'Rory', 2008, 'F', 275), +(196530, 'Alyvia', 2008, 'F', 274), +(196531, 'Makaila', 2008, 'F', 274), +(196532, 'Neveah', 2008, 'F', 274), +(196533, 'Avah', 2008, 'F', 273), +(196534, 'Essence', 2008, 'F', 273), +(196535, 'Desirae', 2008, 'F', 272), +(196536, 'Laurel', 2008, 'F', 272), +(196537, 'Amaris', 2008, 'F', 271), +(196538, 'Ashtyn', 2008, 'F', 271), +(196539, 'Karsyn', 2008, 'F', 271), +(196540, 'Leticia', 2008, 'F', 271), +(196541, 'Miya', 2008, 'F', 271), +(196542, 'Kianna', 2008, 'F', 270), +(196543, 'Laylah', 2008, 'F', 269), +(196544, 'Hailie', 2008, 'F', 268), +(196545, 'Jamiya', 2008, 'F', 268), +(196546, 'Kathy', 2008, 'F', 268), +(196547, 'Riya', 2008, 'F', 268), +(196548, 'Dania', 2008, 'F', 267), +(196549, 'Kenley', 2008, 'F', 267), +(196550, 'Sky', 2008, 'F', 266), +(196551, 'Carleigh', 2008, 'F', 265), +(196552, 'Carrie', 2008, 'F', 264), +(196553, 'Diya', 2008, 'F', 264), +(196554, 'Elianna', 2008, 'F', 264), +(196555, 'Eloise', 2008, 'F', 264), +(196556, 'Iyana', 2008, 'F', 264), +(196557, 'Sloane', 2008, 'F', 264), +(196558, 'Charley', 2008, 'F', 263), +(196559, 'Sarina', 2008, 'F', 263), +(196560, 'Aiyanna', 2008, 'F', 262), +(196561, 'Dalilah', 2008, 'F', 262), +(196562, 'Tatyana', 2008, 'F', 262), +(196563, 'Kamya', 2008, 'F', 261), +(196564, 'Malaya', 2008, 'F', 261), +(196565, 'Maryam', 2008, 'F', 261), +(196566, 'Kylah', 2008, 'F', 260), +(196567, 'Millie', 2008, 'F', 260), +(196568, 'Tyler', 2008, 'F', 260), +(196569, 'Chelsey', 2008, 'F', 259), +(196570, 'Blanca', 2008, 'F', 257), +(196571, 'Bree', 2008, 'F', 257), +(196572, 'Iyanna', 2008, 'F', 257), +(196573, 'Pearl', 2008, 'F', 257), +(196574, 'Susana', 2008, 'F', 257), +(196575, 'Annette', 2008, 'F', 256), +(196576, 'Cayla', 2008, 'F', 256), +(196577, 'Jailyn', 2008, 'F', 256), +(196578, 'Joelle', 2008, 'F', 256), +(196579, 'Rebeca', 2008, 'F', 256), +(196580, 'Rylan', 2008, 'F', 256), +(196581, 'Jalynn', 2008, 'F', 255), +(196582, 'Kenia', 2008, 'F', 255), +(196583, 'Caleigh', 2008, 'F', 254), +(196584, 'Cambria', 2008, 'F', 254), +(196585, 'Janice', 2008, 'F', 254), +(196586, 'Lesley', 2008, 'F', 254), +(196587, 'Yamileth', 2008, 'F', 254), +(196588, 'Hayleigh', 2008, 'F', 253), +(196589, 'Meagan', 2008, 'F', 253), +(196590, 'Caydence', 2008, 'F', 252), +(196591, 'Sheyla', 2008, 'F', 252), +(196592, 'Toni', 2008, 'F', 252), +(196593, 'Carli', 2008, 'F', 251), +(196594, 'Jaeda', 2008, 'F', 251), +(196595, 'Karis', 2008, 'F', 251), +(196596, 'Vera', 2008, 'F', 251), +(196597, 'Brandi', 2008, 'F', 250), +(196598, 'Melinda', 2008, 'F', 250), +(196599, 'Raelyn', 2008, 'F', 250), +(196600, 'Rhiannon', 2008, 'F', 250), +(196601, 'Antonia', 2008, 'F', 249), +(196602, 'Ayleen', 2008, 'F', 249), +(196603, 'Brandy', 2008, 'F', 249), +(196604, 'Abigale', 2008, 'F', 248), +(196605, 'Amalia', 2008, 'F', 248), +(196606, 'Azariah', 2008, 'F', 248), +(196607, 'Celine', 2008, 'F', 248), +(196608, 'Marleigh', 2008, 'F', 248), +(196609, 'Renata', 2008, 'F', 248), +(196610, 'River', 2008, 'F', 248), +(196611, 'Anjali', 2008, 'F', 247), +(196612, 'Candice', 2008, 'F', 247), +(196613, 'Elissa', 2008, 'F', 247), +(196614, 'Evelynn', 2008, 'F', 247), +(196615, 'Willa', 2008, 'F', 247), +(196616, 'Adelynn', 2008, 'F', 246), +(196617, 'Keeley', 2008, 'F', 246), +(196618, 'Dani', 2008, 'F', 245), +(196619, 'Kaelynn', 2008, 'F', 245), +(196620, 'Kloe', 2008, 'F', 245), +(196621, 'Samira', 2008, 'F', 245), +(196622, 'Deasia', 2008, 'F', 244), +(196623, 'Karmen', 2008, 'F', 244), +(196624, 'Kayli', 2008, 'F', 244), +(196625, 'Kourtney', 2008, 'F', 244), +(196626, 'Samiya', 2008, 'F', 244), +(196627, 'Tegan', 2008, 'F', 244), +(196628, 'Devyn', 2008, 'F', 243), +(196629, 'Lidia', 2008, 'F', 243), +(196630, 'Lucero', 2008, 'F', 243), +(196631, 'Reece', 2008, 'F', 243), +(196632, 'Dorothy', 2008, 'F', 242), +(196633, 'Kinsey', 2008, 'F', 242), +(196634, 'Myra', 2008, 'F', 242), +(196635, 'Stacey', 2008, 'F', 242), +(196636, 'Tatianna', 2008, 'F', 242), +(196637, 'Tayla', 2008, 'F', 242), +(196638, 'Kairi', 2008, 'F', 241), +(196639, 'Nichole', 2008, 'F', 241), +(196640, 'Yuridia', 2008, 'F', 241), +(196641, 'Brookelynn', 2008, 'F', 240), +(196642, 'Milan', 2008, 'F', 239), +(196643, 'Nyah', 2008, 'F', 239), +(196644, 'Brittney', 2008, 'F', 238), +(196645, 'Keila', 2008, 'F', 238), +(196646, 'Makenzi', 2008, 'F', 238), +(196647, 'Winter', 2008, 'F', 238), +(196648, 'Zuri', 2008, 'F', 238), +(196649, 'Anita', 2008, 'F', 237), +(196650, 'Lluvia', 2008, 'F', 237), +(196651, 'Noor', 2008, 'F', 237), +(196652, 'Charli', 2008, 'F', 236), +(196653, 'Darlene', 2008, 'F', 236), +(196654, 'Leona', 2008, 'F', 236), +(196655, 'Alaya', 2008, 'F', 235), +(196656, 'Destini', 2008, 'F', 235), +(196657, 'Lacie', 2008, 'F', 235), +(196658, 'Kai', 2008, 'F', 234), +(196659, 'Roxanne', 2008, 'F', 234), +(196660, 'Saanvi', 2008, 'F', 234), +(196661, 'Arlene', 2008, 'F', 233), +(196662, 'Jackeline', 2008, 'F', 233), +(196663, 'Kya', 2008, 'F', 233), +(196664, 'Alayah', 2008, 'F', 232), +(196665, 'Brinley', 2008, 'F', 232), +(196666, 'Jasmyn', 2008, 'F', 232), +(196667, 'Noelia', 2008, 'F', 232), +(196668, 'Emani', 2008, 'F', 231), +(196669, 'Jamiyah', 2008, 'F', 231), +(196670, 'Johana', 2008, 'F', 231), +(196671, 'Kendyl', 2008, 'F', 231), +(196672, 'Samiyah', 2008, 'F', 231), +(196673, 'Unique', 2008, 'F', 231), +(196674, 'Vanesa', 2008, 'F', 231), +(196675, 'Yvette', 2008, 'F', 231), +(196676, 'Amia', 2008, 'F', 230), +(196677, 'Vivienne', 2008, 'F', 230), +(196678, 'Delia', 2008, 'F', 229), +(196679, 'Jayde', 2008, 'F', 229), +(196680, 'Kalia', 2008, 'F', 229), +(196681, 'Mae', 2008, 'F', 229), +(196682, 'Margarita', 2008, 'F', 229), +(196683, 'Ashton', 2008, 'F', 228), +(196684, 'Carol', 2008, 'F', 228), +(196685, 'Jolene', 2008, 'F', 228), +(196686, 'Jenifer', 2008, 'F', 227), +(196687, 'Leigha', 2008, 'F', 227), +(196688, 'Sally', 2008, 'F', 227), +(196689, 'Sandy', 2008, 'F', 227), +(196690, 'Colleen', 2008, 'F', 226), +(196691, 'Gracelynn', 2008, 'F', 226), +(196692, 'Jana', 2008, 'F', 226), +(196693, 'Kailynn', 2008, 'F', 226), +(196694, 'Kayleen', 2008, 'F', 226), +(196695, 'Adelina', 2008, 'F', 225), +(196696, 'Ariah', 2008, 'F', 225), +(196697, 'Yahaira', 2008, 'F', 225), +(196698, 'Joselin', 2008, 'F', 224), +(196699, 'Makiyah', 2008, 'F', 224), +(196700, 'Nicolette', 2008, 'F', 224), +(196701, 'Sheila', 2008, 'F', 224), +(196702, 'Sofie', 2008, 'F', 224), +(196703, 'Alanah', 2008, 'F', 223), +(196704, 'Gisele', 2008, 'F', 223), +(196705, 'Jazmyne', 2008, 'F', 223), +(196706, 'Kyndall', 2008, 'F', 223), +(196707, 'Anais', 2008, 'F', 222), +(196708, 'Makaylah', 2008, 'F', 222), +(196709, 'Tina', 2008, 'F', 222), +(196710, 'Adamaris', 2008, 'F', 221), +(196711, 'Addie', 2008, 'F', 221), +(196712, 'Ailyn', 2008, 'F', 221), +(196713, 'Alize', 2008, 'F', 221), +(196714, 'Graciela', 2008, 'F', 221), +(196715, 'Nya', 2008, 'F', 221), +(196716, 'Trista', 2008, 'F', 221), +(196717, 'Aubri', 2008, 'F', 220), +(196718, 'Jersey', 2008, 'F', 220), +(196719, 'Kori', 2008, 'F', 220), +(196720, 'Rileigh', 2008, 'F', 220), +(196721, 'Analia', 2008, 'F', 219), +(196722, 'Arden', 2008, 'F', 219), +(196723, 'Laniya', 2008, 'F', 219), +(196724, 'Lianna', 2008, 'F', 219), +(196725, 'Zaniya', 2008, 'F', 219), +(196726, 'Betsy', 2008, 'F', 218), +(196727, 'Christiana', 2008, 'F', 218), +(196728, 'Harlee', 2008, 'F', 218), +(196729, 'Lilyanna', 2008, 'F', 218), +(196730, 'Shaila', 2008, 'F', 218), +(196731, 'Shaniyah', 2008, 'F', 218), +(196732, 'Annaliese', 2008, 'F', 217), +(196733, 'Aubrianna', 2008, 'F', 217), +(196734, 'Candace', 2008, 'F', 217), +(196735, 'Katlyn', 2008, 'F', 217), +(196736, 'Rivka', 2008, 'F', 216), +(196737, 'Zariyah', 2008, 'F', 216), +(196738, 'Emory', 2008, 'F', 215), +(196739, 'Izabel', 2008, 'F', 215), +(196740, 'Maura', 2008, 'F', 215), +(196741, 'Samya', 2008, 'F', 215), +(196742, 'Ananya', 2008, 'F', 214), +(196743, 'Citlali', 2008, 'F', 214), +(196744, 'Gracyn', 2008, 'F', 214), +(196745, 'Emersyn', 2008, 'F', 213), +(196746, 'Jorja', 2008, 'F', 213), +(196747, 'Karleigh', 2008, 'F', 213), +(196748, 'Katy', 2008, 'F', 213), +(196749, 'Leighton', 2008, 'F', 213), +(196750, 'Marlen', 2008, 'F', 213), +(196751, 'Suri', 2008, 'F', 213), +(196752, 'Yarely', 2008, 'F', 213), +(196753, 'Calleigh', 2008, 'F', 212), +(196754, 'Dasia', 2008, 'F', 212), +(196755, 'Emme', 2008, 'F', 212), +(196756, 'Estefany', 2008, 'F', 212), +(196757, 'Galilea', 2008, 'F', 212), +(196758, 'Kyndal', 2008, 'F', 212), +(196759, 'Tayler', 2008, 'F', 212), +(196760, 'Natali', 2008, 'F', 211), +(196761, 'Savana', 2008, 'F', 211), +(196762, 'Shreya', 2008, 'F', 211), +(196763, 'Aniah', 2008, 'F', 210), +(196764, 'Ayden', 2008, 'F', 210), +(196765, 'Beatriz', 2008, 'F', 210), +(196766, 'Breana', 2008, 'F', 210), +(196767, 'Aya', 2008, 'F', 209), +(196768, 'Brookelyn', 2008, 'F', 209), +(196769, 'Fabiola', 2008, 'F', 209), +(196770, 'Kalyn', 2008, 'F', 209), +(196771, 'Abrianna', 2008, 'F', 208), +(196772, 'Laniyah', 2008, 'F', 208), +(196773, 'Treasure', 2008, 'F', 208), +(196774, 'Aanya', 2008, 'F', 207), +(196775, 'Calista', 2008, 'F', 207), +(196776, 'Joana', 2008, 'F', 207), +(196777, 'Malaysia', 2008, 'F', 207), +(196778, 'Roxana', 2008, 'F', 207), +(196779, 'Analise', 2008, 'F', 206), +(196780, 'Ariyana', 2008, 'F', 206), +(196781, 'Dalila', 2008, 'F', 206), +(196782, 'Estella', 2008, 'F', 206), +(196783, 'Kalli', 2008, 'F', 206), +(196784, 'Arya', 2008, 'F', 205), +(196785, 'Giavanna', 2008, 'F', 205), +(196786, 'Jalyn', 2008, 'F', 205), +(196787, 'Jurnee', 2008, 'F', 205), +(196788, 'Lacy', 2008, 'F', 205), +(196789, 'Silvia', 2008, 'F', 205), +(196790, 'Asha', 2008, 'F', 204), +(196791, 'Maite', 2008, 'F', 204), +(196792, 'Aditi', 2008, 'F', 203), +(196793, 'Kirra', 2008, 'F', 203), +(196794, 'Promise', 2008, 'F', 203), +(196795, 'Bryana', 2008, 'F', 202), +(196796, 'Carson', 2008, 'F', 202), +(196797, 'Katarina', 2008, 'F', 202), +(196798, 'Maiya', 2008, 'F', 202), +(196799, 'Sariyah', 2008, 'F', 202), +(196800, 'Selene', 2008, 'F', 202), +(196801, 'Soleil', 2008, 'F', 202), +(196802, 'Diane', 2008, 'F', 201), +(196803, 'Ember', 2008, 'F', 201), +(196804, 'Gwen', 2008, 'F', 201), +(196805, 'Kacey', 2008, 'F', 201), +(196806, 'Kaycee', 2008, 'F', 201), +(196807, 'Rhea', 2008, 'F', 201), +(196808, 'Sahara', 2008, 'F', 201), +(196809, 'Janie', 2008, 'F', 200), +(196810, 'Lyra', 2008, 'F', 200), +(196811, 'Sonya', 2008, 'F', 200), +(196812, 'Ivana', 2008, 'F', 199), +(196813, 'Joseline', 2008, 'F', 199), +(196814, 'Montserrat', 2008, 'F', 199), +(196815, 'Noa', 2008, 'F', 199), +(196816, 'Hunter', 2008, 'F', 198), +(196817, 'Luisa', 2008, 'F', 198), +(196818, 'Christian', 2008, 'F', 197), +(196819, 'Dallas', 2008, 'F', 197), +(196820, 'Estefania', 2008, 'F', 197), +(196821, 'Jaedyn', 2008, 'F', 197), +(196822, 'Lylah', 2008, 'F', 197), +(196823, 'Maddie', 2008, 'F', 197), +(196824, 'Alaysia', 2008, 'F', 196), +(196825, 'Anisa', 2008, 'F', 196), +(196826, 'Gwyneth', 2008, 'F', 196), +(196827, 'Rocio', 2008, 'F', 196), +(196828, 'Amyah', 2008, 'F', 195), +(196829, 'Anneliese', 2008, 'F', 195), +(196830, 'Breonna', 2008, 'F', 195), +(196831, 'Gizelle', 2008, 'F', 195), +(196832, 'Nelly', 2008, 'F', 195), +(196833, 'Samaya', 2008, 'F', 195), +(196834, 'Jaclyn', 2008, 'F', 194), +(196835, 'Kacie', 2008, 'F', 194), +(196836, 'Marian', 2008, 'F', 194), +(196837, 'Priya', 2008, 'F', 194), +(196838, 'Alysa', 2008, 'F', 193), +(196839, 'Blair', 2008, 'F', 193), +(196840, 'Bryleigh', 2008, 'F', 193), +(196841, 'Elyssa', 2008, 'F', 193), +(196842, 'Flor', 2008, 'F', 193), +(196843, 'Samaria', 2008, 'F', 193), +(196844, 'Zainab', 2008, 'F', 193), +(196845, 'Constance', 2008, 'F', 192), +(196846, 'Ericka', 2008, 'F', 192), +(196847, 'Fallon', 2008, 'F', 192), +(196848, 'Janaya', 2008, 'F', 192), +(196849, 'Lilyan', 2008, 'F', 192), +(196850, 'Reilly', 2008, 'F', 192), +(196851, 'Audra', 2008, 'F', 191), +(196852, 'Berenice', 2008, 'F', 191), +(196853, 'Devin', 2008, 'F', 191), +(196854, 'Evangelina', 2008, 'F', 191), +(196855, 'Katharine', 2008, 'F', 191), +(196856, 'Leilah', 2008, 'F', 191), +(196857, 'Mayte', 2008, 'F', 191), +(196858, 'Montana', 2008, 'F', 191), +(196859, 'Annelise', 2008, 'F', 190), +(196860, 'Astrid', 2008, 'F', 190), +(196861, 'Colette', 2008, 'F', 190), +(196862, 'Juana', 2008, 'F', 190), +(196863, 'Kaci', 2008, 'F', 190), +(196864, 'Lizette', 2008, 'F', 190), +(196865, 'Nikki', 2008, 'F', 190), +(196866, 'Soraya', 2008, 'F', 190), +(196867, 'Braelynn', 2008, 'F', 189), +(196868, 'Ivanna', 2008, 'F', 189), +(196869, 'Lanie', 2008, 'F', 189), +(196870, 'Aliah', 2008, 'F', 188), +(196871, 'Josselyn', 2008, 'F', 188), +(196872, 'Karyme', 2008, 'F', 188), +(196873, 'Robin', 2008, 'F', 188), +(196874, 'Lilith', 2008, 'F', 187), +(196875, 'Lillyana', 2008, 'F', 187), +(196876, 'Mackenna', 2008, 'F', 187), +(196877, 'Zahra', 2008, 'F', 187), +(196878, 'Allyssa', 2008, 'F', 186), +(196879, 'Marcella', 2008, 'F', 186), +(196880, 'Rita', 2008, 'F', 186), +(196881, 'Star', 2008, 'F', 186), +(196882, 'Taya', 2008, 'F', 186), +(196883, 'Kamiya', 2008, 'F', 185), +(196884, 'Keily', 2008, 'F', 185), +(196885, 'Kimber', 2008, 'F', 185), +(196886, 'Tyra', 2008, 'F', 185), +(196887, 'Elliot', 2008, 'F', 184), +(196888, 'Janya', 2008, 'F', 184), +(196889, 'Katerina', 2008, 'F', 184), +(196890, 'Rianna', 2008, 'F', 184), +(196891, 'Tracy', 2008, 'F', 184), +(196892, 'Abbygail', 2008, 'F', 183), +(196893, 'Bonnie', 2008, 'F', 183), +(196894, 'Cloey', 2008, 'F', 183), +(196895, 'Kalea', 2008, 'F', 183), +(196896, 'Madisen', 2008, 'F', 183), +(196897, 'Nariah', 2008, 'F', 183), +(196898, 'Bridgette', 2008, 'F', 182), +(196899, 'Lucinda', 2008, 'F', 182), +(196900, 'Saylor', 2008, 'F', 182), +(196901, 'Brianne', 2008, 'F', 181), +(196902, 'Ebony', 2008, 'F', 181), +(196903, 'Mercy', 2008, 'F', 181), +(196904, 'Audriana', 2008, 'F', 180), +(196905, 'Celina', 2008, 'F', 180), +(196906, 'Estefani', 2008, 'F', 180), +(196907, 'Aubry', 2008, 'F', 179), +(196908, 'Bryn', 2008, 'F', 179), +(196909, 'Jaquelin', 2008, 'F', 179), +(196910, 'Kameron', 2008, 'F', 179), +(196911, 'Rilee', 2008, 'F', 179), +(196912, 'Adilene', 2008, 'F', 178), +(196913, 'Alli', 2008, 'F', 178), +(196914, 'Bayleigh', 2008, 'F', 178), +(196915, 'Carys', 2008, 'F', 178), +(196916, 'Kailani', 2008, 'F', 178), +(196917, 'Kelis', 2008, 'F', 178), +(196918, 'Noel', 2008, 'F', 178), +(196919, 'Jaela', 2008, 'F', 177), +(196920, 'Julieta', 2008, 'F', 177), +(196921, 'Aida', 2008, 'F', 176), +(196922, 'Caitlynn', 2008, 'F', 176), +(196923, 'Irelyn', 2008, 'F', 176), +(196924, 'Mika', 2008, 'F', 176), +(196925, 'Nova', 2008, 'F', 176), +(196926, 'Stevie', 2008, 'F', 176), +(196927, 'Amayah', 2008, 'F', 175), +(196928, 'Marcela', 2008, 'F', 175), +(196929, 'Rosalinda', 2008, 'F', 175), +(196930, 'Sawyer', 2008, 'F', 175), +(196931, 'Aleigha', 2008, 'F', 174), +(196932, 'Alexys', 2008, 'F', 174), +(196933, 'Braylee', 2008, 'F', 174), +(196934, 'Amerie', 2008, 'F', 173), +(196935, 'Audrianna', 2008, 'F', 173), +(196936, 'Kensley', 2008, 'F', 173), +(196937, 'Leena', 2008, 'F', 173), +(196938, 'Ellison', 2008, 'F', 172), +(196939, 'Lilyann', 2008, 'F', 172), +(196940, 'Ryley', 2008, 'F', 172), +(196941, 'Xochitl', 2008, 'F', 172), +(196942, 'Yolanda', 2008, 'F', 172), +(196943, 'Yvonne', 2008, 'F', 172), +(196944, 'Ameera', 2008, 'F', 171), +(196945, 'Angely', 2008, 'F', 171), +(196946, 'Jaya', 2008, 'F', 171), +(196947, 'Katelin', 2008, 'F', 171), +(196948, 'Marli', 2008, 'F', 171), +(196949, 'Annabell', 2008, 'F', 170), +(196950, 'Belle', 2008, 'F', 170), +(196951, 'Dina', 2008, 'F', 170), +(196952, 'Drew', 2008, 'F', 170), +(196953, 'Elina', 2008, 'F', 170), +(196954, 'Felicia', 2008, 'F', 170), +(196955, 'Jaleah', 2008, 'F', 170), +(196956, 'Katia', 2008, 'F', 170), +(196957, 'Melani', 2008, 'F', 170), +(196958, 'Alexandrea', 2008, 'F', 169), +(196959, 'Aurelia', 2008, 'F', 169), +(196960, 'Demi', 2008, 'F', 169), +(196961, 'Grecia', 2008, 'F', 169), +(196962, 'Lilli', 2008, 'F', 169), +(196963, 'Antonella', 2008, 'F', 168), +(196964, 'Beverly', 2008, 'F', 168), +(196965, 'Brook', 2008, 'F', 168), +(196966, 'Camdyn', 2008, 'F', 168), +(196967, 'Emmie', 2008, 'F', 168), +(196968, 'Lyndsey', 2008, 'F', 168), +(196969, 'Milana', 2008, 'F', 168), +(196970, 'Trisha', 2008, 'F', 168), +(196971, 'Zaira', 2008, 'F', 168), +(196972, 'Abygail', 2008, 'F', 167), +(196973, 'Alex', 2008, 'F', 167), +(196974, 'Cayden', 2008, 'F', 167), +(196975, 'Emmaline', 2008, 'F', 167), +(196976, 'Jael', 2008, 'F', 167), +(196977, 'Jaycie', 2008, 'F', 167), +(196978, 'Kaidence', 2008, 'F', 167), +(196979, 'Maliah', 2008, 'F', 167), +(196980, 'Jordynn', 2008, 'F', 166), +(196981, 'Madysen', 2008, 'F', 166), +(196982, 'Yara', 2008, 'F', 166), +(196983, 'Geraldine', 2008, 'F', 165), +(196984, 'Heavenly', 2008, 'F', 165), +(196985, 'Jaila', 2008, 'F', 165), +(196986, 'Jasleen', 2008, 'F', 165), +(196987, 'Makiya', 2008, 'F', 165), +(196988, 'Rosalie', 2008, 'F', 165), +(196989, 'Annalee', 2008, 'F', 164), +(196990, 'Aundrea', 2008, 'F', 164), +(196991, 'Desire', 2008, 'F', 164), +(196992, 'Honesty', 2008, 'F', 164), +(196993, 'Iman', 2008, 'F', 164), +(196994, 'Joslynn', 2008, 'F', 164), +(196995, 'Juanita', 2008, 'F', 164), +(196996, 'Kamiyah', 2008, 'F', 164), +(196997, 'Ariyanna', 2008, 'F', 163), +(196998, 'Colbie', 2008, 'F', 163), +(196999, 'Elana', 2008, 'F', 163), +(197000, 'Journee', 2008, 'F', 163), +(197001, 'Kiya', 2008, 'F', 163), +(197002, 'Melia', 2008, 'F', 163), +(197003, 'Adrian', 2008, 'F', 162), +(197004, 'Alora', 2008, 'F', 162), +(197005, 'Blake', 2008, 'F', 162), +(197006, 'Danae', 2008, 'F', 162), +(197007, 'Dianna', 2008, 'F', 162), +(197008, 'Jamia', 2008, 'F', 162), +(197009, 'Karime', 2008, 'F', 162), +(197010, 'Kenadie', 2008, 'F', 162), +(197011, 'Lourdes', 2008, 'F', 162), +(197012, 'Robyn', 2008, 'F', 162), +(197013, 'Aubriana', 2008, 'F', 161), +(197014, 'Cienna', 2008, 'F', 161), +(197015, 'Coral', 2008, 'F', 161), +(197016, 'Darby', 2008, 'F', 161), +(197017, 'Harmoni', 2008, 'F', 161), +(197018, 'Loren', 2008, 'F', 161), +(197019, 'Susanna', 2008, 'F', 161), +(197020, 'Abrielle', 2008, 'F', 160), +(197021, 'Akeelah', 2008, 'F', 160), +(197022, 'Aviana', 2008, 'F', 160), +(197023, 'Christa', 2008, 'F', 160), +(197024, 'Emalee', 2008, 'F', 160), +(197025, 'Keegan', 2008, 'F', 160), +(197026, 'Ania', 2008, 'F', 159), +(197027, 'Maylee', 2008, 'F', 159), +(197028, 'Sydnie', 2008, 'F', 159), +(197029, 'Zahara', 2008, 'F', 159), +(197030, 'Darcy', 2008, 'F', 158), +(197031, 'Dayanna', 2008, 'F', 158), +(197032, 'Elayna', 2008, 'F', 158), +(197033, 'Eryn', 2008, 'F', 158), +(197034, 'Gracey', 2008, 'F', 158), +(197035, 'Halie', 2008, 'F', 158), +(197036, 'Isha', 2008, 'F', 158), +(197037, 'Jazzlyn', 2008, 'F', 158), +(197038, 'Kaylani', 2008, 'F', 158), +(197039, 'Kristine', 2008, 'F', 158), +(197040, 'Amariah', 2008, 'F', 157), +(197041, 'Christy', 2008, 'F', 157), +(197042, 'Eunice', 2008, 'F', 157), +(197043, 'Jazelle', 2008, 'F', 157), +(197044, 'Keren', 2008, 'F', 157), +(197045, 'Lela', 2008, 'F', 157), +(197046, 'Tristan', 2008, 'F', 157), +(197047, 'Yessenia', 2008, 'F', 157), +(197048, 'Adele', 2008, 'F', 156), +(197049, 'Anissa', 2008, 'F', 156), +(197050, 'Calli', 2008, 'F', 156), +(197051, 'Camden', 2008, 'F', 156), +(197052, 'Jacklyn', 2008, 'F', 156), +(197053, 'Karolina', 2008, 'F', 156), +(197054, 'Landry', 2008, 'F', 156), +(197055, 'Avril', 2008, 'F', 155), +(197056, 'Chiara', 2008, 'F', 155), +(197057, 'Geneva', 2008, 'F', 155), +(197058, 'Kamille', 2008, 'F', 155), +(197059, 'Milena', 2008, 'F', 155), +(197060, 'Nadine', 2008, 'F', 155), +(197061, 'Tierra', 2008, 'F', 155), +(197062, 'Amberly', 2008, 'F', 154), +(197063, 'Ariadna', 2008, 'F', 154), +(197064, 'Brissia', 2008, 'F', 154), +(197065, 'Citlaly', 2008, 'F', 154), +(197066, 'Esme', 2008, 'F', 154), +(197067, 'Farrah', 2008, 'F', 154), +(197068, 'Grayson', 2008, 'F', 154), +(197069, 'Ivette', 2008, 'F', 154), +(197070, 'Jacie', 2008, 'F', 154), +(197071, 'Kaleah', 2008, 'F', 154), +(197072, 'Raya', 2008, 'F', 154), +(197073, 'Yazmine', 2008, 'F', 154), +(197074, 'Charlene', 2008, 'F', 153), +(197075, 'Ema', 2008, 'F', 153), +(197076, 'Jackelyn', 2008, 'F', 153), +(197077, 'Melisa', 2008, 'F', 153), +(197078, 'Raylee', 2008, 'F', 153), +(197079, 'Tamya', 2008, 'F', 153), +(197080, 'Brionna', 2008, 'F', 152), +(197081, 'Cate', 2008, 'F', 152), +(197082, 'Keziah', 2008, 'F', 152), +(197083, 'Martina', 2008, 'F', 152), +(197084, 'Alyssia', 2008, 'F', 151), +(197085, 'Azucena', 2008, 'F', 151), +(197086, 'Hattie', 2008, 'F', 151), +(197087, 'Leilany', 2008, 'F', 151), +(197088, 'Lexus', 2008, 'F', 151), +(197089, 'Malak', 2008, 'F', 151), +(197090, 'Myleigh', 2008, 'F', 151), +(197091, 'Shira', 2008, 'F', 151), +(197092, 'Adela', 2008, 'F', 150), +(197093, 'Alessia', 2008, 'F', 150), +(197094, 'Cielo', 2008, 'F', 150), +(197095, 'Haidyn', 2008, 'F', 150), +(197096, 'Kasandra', 2008, 'F', 150), +(197097, 'Kyara', 2008, 'F', 150), +(197098, 'Sahana', 2008, 'F', 150), +(197099, 'Starr', 2008, 'F', 150), +(197100, 'Alyse', 2008, 'F', 149), +(197101, 'Avianna', 2008, 'F', 149), +(197102, 'Dariana', 2008, 'F', 149), +(197103, 'Leann', 2008, 'F', 149), +(197104, 'Lillyanna', 2008, 'F', 149), +(197105, 'Linnea', 2008, 'F', 149), +(197106, 'Norma', 2008, 'F', 149), +(197107, 'Avani', 2008, 'F', 148), +(197108, 'Carmella', 2008, 'F', 148), +(197109, 'Keara', 2008, 'F', 148), +(197110, 'Shaelyn', 2008, 'F', 148), +(197111, 'Thea', 2008, 'F', 148), +(197112, 'Yaneli', 2008, 'F', 148), +(197113, 'Annmarie', 2008, 'F', 147), +(197114, 'Ciana', 2008, 'F', 147), +(197115, 'Elisha', 2008, 'F', 147), +(197116, 'Gabriel', 2008, 'F', 147), +(197117, 'Ivory', 2008, 'F', 147), +(197118, 'Kenadi', 2008, 'F', 147), +(197119, 'Mandy', 2008, 'F', 147), +(197120, 'Mayrin', 2008, 'F', 147), +(197121, 'Rachelle', 2008, 'F', 147), +(197122, 'Kamilah', 2008, 'F', 146), +(197123, 'Saniah', 2008, 'F', 146), +(197124, 'Alexi', 2008, 'F', 145), +(197125, 'Brea', 2008, 'F', 145), +(197126, 'Devon', 2008, 'F', 145), +(197127, 'Eleni', 2008, 'F', 145), +(197128, 'Ellianna', 2008, 'F', 145), +(197129, 'Elliott', 2008, 'F', 145), +(197130, 'Jacquelin', 2008, 'F', 145), +(197131, 'Jayna', 2008, 'F', 145), +(197132, 'Kelsi', 2008, 'F', 145), +(197133, 'Shay', 2008, 'F', 145), +(197134, 'Delanie', 2008, 'F', 144), +(197135, 'Jaslynn', 2008, 'F', 144), +(197136, 'Kadyn', 2008, 'F', 144), +(197137, 'Margot', 2008, 'F', 144), +(197138, 'Maryann', 2008, 'F', 144), +(197139, 'Nailah', 2008, 'F', 144), +(197140, 'Saphira', 2008, 'F', 144), +(197141, 'Brylie', 2008, 'F', 143), +(197142, 'Kalynn', 2008, 'F', 143), +(197143, 'Kaniya', 2008, 'F', 143), +(197144, 'Maylin', 2008, 'F', 143), +(197145, 'Neha', 2008, 'F', 143), +(197146, 'Roxanna', 2008, 'F', 143), +(197147, 'Aja', 2008, 'F', 142), +(197148, 'Ayva', 2008, 'F', 142), +(197149, 'Ciera', 2008, 'F', 142), +(197150, 'Emerald', 2008, 'F', 142), +(197151, 'Janeth', 2008, 'F', 142), +(197152, 'Kristy', 2008, 'F', 142), +(197153, 'Lori', 2008, 'F', 142), +(197154, 'Lucie', 2008, 'F', 142), +(197155, 'Maxine', 2008, 'F', 142), +(197156, 'Carsyn', 2008, 'F', 141), +(197157, 'Ellery', 2008, 'F', 141), +(197158, 'Emmalyn', 2008, 'F', 141), +(197159, 'Jailynn', 2008, 'F', 141), +(197160, 'Jiya', 2008, 'F', 141), +(197161, 'Kami', 2008, 'F', 141), +(197162, 'Lillyan', 2008, 'F', 141), +(197163, 'Magnolia', 2008, 'F', 141), +(197164, 'Malina', 2008, 'F', 141), +(197165, 'Randi', 2008, 'F', 141), +(197166, 'Rhyan', 2008, 'F', 141), +(197167, 'Shamya', 2008, 'F', 141), +(197168, 'Aiden', 2008, 'F', 140), +(197169, 'Anaiah', 2008, 'F', 140), +(197170, 'Annamarie', 2008, 'F', 140), +(197171, 'Farah', 2008, 'F', 140), +(197172, 'Faye', 2008, 'F', 140), +(197173, 'Gissel', 2008, 'F', 140), +(197174, 'Jeanette', 2008, 'F', 140), +(197175, 'Julisa', 2008, 'F', 140), +(197176, 'Maile', 2008, 'F', 140), +(197177, 'Priscila', 2008, 'F', 140), +(197178, 'Rosalyn', 2008, 'F', 140), +(197179, 'Shianne', 2008, 'F', 140), +(197180, 'Triniti', 2008, 'F', 140), +(197181, 'Kaela', 2008, 'F', 139), +(197182, 'Mabel', 2008, 'F', 139), +(197183, 'Makala', 2008, 'F', 139), +(197184, 'Mariella', 2008, 'F', 139), +(197185, 'Vianey', 2008, 'F', 139), +(197186, 'Violeta', 2008, 'F', 139), +(197187, 'Alliyah', 2008, 'F', 138), +(197188, 'Azalea', 2008, 'F', 138), +(197189, 'Charleigh', 2008, 'F', 138), +(197190, 'Hollie', 2008, 'F', 138), +(197191, 'Katalina', 2008, 'F', 138), +(197192, 'Milla', 2008, 'F', 138), +(197193, 'Rosie', 2008, 'F', 138), +(197194, 'Wynter', 2008, 'F', 138), +(197195, 'Addilyn', 2008, 'F', 137), +(197196, 'Andie', 2008, 'F', 137), +(197197, 'Betty', 2008, 'F', 137), +(197198, 'Cailin', 2008, 'F', 137), +(197199, 'Ester', 2008, 'F', 137), +(197200, 'Lesli', 2008, 'F', 137), +(197201, 'Lupita', 2008, 'F', 137), +(197202, 'Mayah', 2008, 'F', 137), +(197203, 'Rosario', 2008, 'F', 137), +(197204, 'Baylie', 2008, 'F', 136), +(197205, 'Elora', 2008, 'F', 136), +(197206, 'Jackie', 2008, 'F', 136), +(197207, 'Jayme', 2008, 'F', 136), +(197208, 'Nalani', 2008, 'F', 136), +(197209, 'Sabina', 2008, 'F', 136), +(197210, 'Amaria', 2008, 'F', 135), +(197211, 'Berkley', 2008, 'F', 135), +(197212, 'Elia', 2008, 'F', 135), +(197213, 'Gladys', 2008, 'F', 135), +(197214, 'Kari', 2008, 'F', 135), +(197215, 'Roxy', 2008, 'F', 135), +(197216, 'Vivianna', 2008, 'F', 135), +(197217, 'Yajaira', 2008, 'F', 135), +(197218, 'Arionna', 2008, 'F', 134), +(197219, 'Briseida', 2008, 'F', 134), +(197220, 'Evalyn', 2008, 'F', 134), +(197221, 'Ginger', 2008, 'F', 134), +(197222, 'Haiden', 2008, 'F', 134), +(197223, 'Jaci', 2008, 'F', 134), +(197224, 'Jamaya', 2008, 'F', 134), +(197225, 'Jiselle', 2008, 'F', 134), +(197226, 'Kady', 2008, 'F', 134), +(197227, 'Kamaria', 2008, 'F', 134), +(197228, 'Leela', 2008, 'F', 134), +(197229, 'Shakira', 2008, 'F', 134), +(197230, 'Brynna', 2008, 'F', 133), +(197231, 'Harlow', 2008, 'F', 133), +(197232, 'Makiah', 2008, 'F', 133), +(197233, 'Markayla', 2008, 'F', 133), +(197234, 'Petra', 2008, 'F', 133), +(197235, 'Remi', 2008, 'F', 133), +(197236, 'Ria', 2008, 'F', 133), +(197237, 'Alyna', 2008, 'F', 132), +(197238, 'Avalon', 2008, 'F', 132), +(197239, 'Cianna', 2008, 'F', 132), +(197240, 'Cordelia', 2008, 'F', 132), +(197241, 'Jenesis', 2008, 'F', 132), +(197242, 'Kayle', 2008, 'F', 132), +(197243, 'Kellie', 2008, 'F', 132), +(197244, 'Kyrie', 2008, 'F', 132), +(197245, 'Makyla', 2008, 'F', 132), +(197246, 'Maryn', 2008, 'F', 132), +(197247, 'Olga', 2008, 'F', 132), +(197248, 'Reanna', 2008, 'F', 132), +(197249, 'Sade', 2008, 'F', 132), +(197250, 'Sania', 2008, 'F', 132), +(197251, 'Veda', 2008, 'F', 132), +(197252, 'Vienna', 2008, 'F', 132), +(197253, 'Alysha', 2008, 'F', 131), +(197254, 'Alysia', 2008, 'F', 131), +(197255, 'Evan', 2008, 'F', 131), +(197256, 'Holland', 2008, 'F', 131), +(197257, 'Isadora', 2008, 'F', 131), +(197258, 'Jamiah', 2008, 'F', 131), +(197259, 'Jania', 2008, 'F', 131), +(197260, 'Kaniyah', 2008, 'F', 131), +(197261, 'Peighton', 2008, 'F', 131), +(197262, 'Tanisha', 2008, 'F', 131), +(197263, 'Yaretzy', 2008, 'F', 131), +(197264, 'Casandra', 2008, 'F', 130), +(197265, 'Jalissa', 2008, 'F', 130), +(197266, 'Josslyn', 2008, 'F', 130), +(197267, 'Preslee', 2008, 'F', 130), +(197268, 'Sydni', 2008, 'F', 130), +(197269, 'Zaniah', 2008, 'F', 130), +(197270, 'Alecia', 2008, 'F', 129), +(197271, 'Angeles', 2008, 'F', 129), +(197272, 'Ariyah', 2008, 'F', 129), +(197273, 'Daria', 2008, 'F', 129), +(197274, 'Haily', 2008, 'F', 129), +(197275, 'Harlie', 2008, 'F', 129), +(197276, 'Joanne', 2008, 'F', 129), +(197277, 'Kaydance', 2008, 'F', 129), +(197278, 'Lamya', 2008, 'F', 129), +(197279, 'Liv', 2008, 'F', 129), +(197280, 'Marjorie', 2008, 'F', 129), +(197281, 'Miyah', 2008, 'F', 129), +(197282, 'Raniyah', 2008, 'F', 129), +(197283, 'Yulissa', 2008, 'F', 129), +(197284, 'Amie', 2008, 'F', 128), +(197285, 'Andi', 2008, 'F', 128), +(197286, 'Brissa', 2008, 'F', 128), +(197287, 'Chase', 2008, 'F', 128), +(197288, 'Emmerson', 2008, 'F', 128), +(197289, 'Harleigh', 2008, 'F', 128), +(197290, 'Italia', 2008, 'F', 128), +(197291, 'Pyper', 2008, 'F', 128), +(197292, 'Acacia', 2008, 'F', 127), +(197293, 'Alessa', 2008, 'F', 127), +(197294, 'Alycia', 2008, 'F', 127), +(197295, 'Aminah', 2008, 'F', 127), +(197296, 'Arlette', 2008, 'F', 127), +(197297, 'Clover', 2008, 'F', 127), +(197298, 'Darla', 2008, 'F', 127), +(197299, 'Freya', 2008, 'F', 127), +(197300, 'Jolee', 2008, 'F', 127), +(197301, 'Kora', 2008, 'F', 127), +(197302, 'Maycee', 2008, 'F', 127), +(197303, 'Shaina', 2008, 'F', 127), +(197304, 'Sylvie', 2008, 'F', 127), +(197305, 'Yasmeen', 2008, 'F', 127), +(197306, 'Aleksandra', 2008, 'F', 126), +(197307, 'Anaiya', 2008, 'F', 126), +(197308, 'Audrie', 2008, 'F', 126), +(197309, 'Isela', 2008, 'F', 126), +(197310, 'Jessi', 2008, 'F', 126), +(197311, 'Lynette', 2008, 'F', 126), +(197312, 'Naomy', 2008, 'F', 126), +(197313, 'Noelani', 2008, 'F', 126), +(197314, 'Briella', 2008, 'F', 125), +(197315, 'Corina', 2008, 'F', 125), +(197316, 'Dafne', 2008, 'F', 125), +(197317, 'Jaime', 2008, 'F', 125), +(197318, 'Leanne', 2008, 'F', 125), +(197319, 'Lillyann', 2008, 'F', 125), +(197320, 'Malka', 2008, 'F', 125), +(197321, 'Maricela', 2008, 'F', 125), +(197322, 'Mischa', 2008, 'F', 125), +(197323, 'Nour', 2008, 'F', 125), +(197324, 'Pilar', 2008, 'F', 125), +(197325, 'Samia', 2008, 'F', 125), +(197326, 'Zaina', 2008, 'F', 125), +(197327, 'Alianna', 2008, 'F', 124), +(197328, 'Anayah', 2008, 'F', 124), +(197329, 'Arleth', 2008, 'F', 124), +(197330, 'Capri', 2008, 'F', 124), +(197331, 'Dayna', 2008, 'F', 124), +(197332, 'Jaydin', 2008, 'F', 124), +(197333, 'Jazleen', 2008, 'F', 124), +(197334, 'Jessa', 2008, 'F', 124), +(197335, 'Louisa', 2008, 'F', 124), +(197336, 'Makaela', 2008, 'F', 124), +(197337, 'Adina', 2008, 'F', 123), +(197338, 'Cailey', 2008, 'F', 123), +(197339, 'Janell', 2008, 'F', 123), +(197340, 'Mari', 2008, 'F', 123), +(197341, 'Mariya', 2008, 'F', 123), +(197342, 'Maryah', 2008, 'F', 123), +(197343, 'Chandler', 2008, 'F', 122), +(197344, 'Cooper', 2008, 'F', 122), +(197345, 'Jahzara', 2008, 'F', 122), +(197346, 'Jasmyne', 2008, 'F', 122), +(197347, 'Lorraine', 2008, 'F', 122), +(197348, 'Malena', 2008, 'F', 122), +(197349, 'Moira', 2008, 'F', 122), +(197350, 'Sloan', 2008, 'F', 122), +(197351, 'Aidan', 2008, 'F', 121), +(197352, 'Elly', 2008, 'F', 121), +(197353, 'Jadelyn', 2008, 'F', 121), +(197354, 'Kaelin', 2008, 'F', 121), +(197355, 'Mariel', 2008, 'F', 121), +(197356, 'Shawna', 2008, 'F', 121), +(197357, 'Vicky', 2008, 'F', 121), +(197358, 'Annemarie', 2008, 'F', 120), +(197359, 'Brooklin', 2008, 'F', 120), +(197360, 'Egypt', 2008, 'F', 120), +(197361, 'Emmaleigh', 2008, 'F', 120), +(197362, 'Gwenyth', 2008, 'F', 120), +(197363, 'Jesse', 2008, 'F', 120), +(197364, 'Lexy', 2008, 'F', 120), +(197365, 'Liz', 2008, 'F', 120), +(197366, 'Mindy', 2008, 'F', 120), +(197367, 'Olyvia', 2008, 'F', 120), +(197368, 'Sonja', 2008, 'F', 120), +(197369, 'Tammy', 2008, 'F', 120), +(197370, 'Addysen', 2008, 'F', 119), +(197371, 'Chyanne', 2008, 'F', 119), +(197372, 'Lisette', 2008, 'F', 119), +(197373, 'Nayely', 2008, 'F', 119), +(197374, 'Raniya', 2008, 'F', 119), +(197375, 'Zoya', 2008, 'F', 119), +(197376, 'Alonna', 2008, 'F', 118), +(197377, 'Ashlin', 2008, 'F', 118), +(197378, 'Asiah', 2008, 'F', 118), +(197379, 'Ayah', 2008, 'F', 118), +(197380, 'Delila', 2008, 'F', 118), +(197381, 'Jianna', 2008, 'F', 118), +(197382, 'Judy', 2008, 'F', 118), +(197383, 'Kameryn', 2008, 'F', 118), +(197384, 'Kelli', 2008, 'F', 118), +(197385, 'Lili', 2008, 'F', 118), +(197386, 'Nala', 2008, 'F', 118), +(197387, 'Anisha', 2008, 'F', 117), +(197388, 'Harmonie', 2008, 'F', 117), +(197389, 'Jocelin', 2008, 'F', 117), +(197390, 'Katheryn', 2008, 'F', 117), +(197391, 'Khadija', 2008, 'F', 117), +(197392, 'Kierstyn', 2008, 'F', 117), +(197393, 'Mallorie', 2008, 'F', 117), +(197394, 'Octavia', 2008, 'F', 117), +(197395, 'Stefanie', 2008, 'F', 117), +(197396, 'Ayesha', 2008, 'F', 116), +(197397, 'Brooklynne', 2008, 'F', 116), +(197398, 'Cameryn', 2008, 'F', 116), +(197399, 'Izzabella', 2008, 'F', 116), +(197400, 'Jocelyne', 2008, 'F', 116), +(197401, 'Kalina', 2008, 'F', 116), +(197402, 'Kennadi', 2008, 'F', 116), +(197403, 'Milly', 2008, 'F', 116), +(197404, 'Niya', 2008, 'F', 116), +(197405, 'Ramona', 2008, 'F', 116), +(197406, 'Shriya', 2008, 'F', 116), +(197407, 'Amarie', 2008, 'F', 115), +(197408, 'Jena', 2008, 'F', 115), +(197409, 'Kyah', 2008, 'F', 115), +(197410, 'Magaly', 2008, 'F', 115), +(197411, 'Remy', 2008, 'F', 115), +(197412, 'Shaylynn', 2008, 'F', 115), +(197413, 'Siri', 2008, 'F', 115), +(197414, 'Suzanne', 2008, 'F', 115), +(197415, 'Vianney', 2008, 'F', 115), +(197416, 'Viridiana', 2008, 'F', 115), +(197417, 'Adia', 2008, 'F', 114), +(197418, 'Adisyn', 2008, 'F', 114), +(197419, 'Amaiya', 2008, 'F', 114), +(197420, 'Janely', 2008, 'F', 114), +(197421, 'Janette', 2008, 'F', 114), +(197422, 'Jaquelyn', 2008, 'F', 114), +(197423, 'Jesenia', 2008, 'F', 114), +(197424, 'Kyrah', 2008, 'F', 114), +(197425, 'Leeann', 2008, 'F', 114), +(197426, 'Maisie', 2008, 'F', 114), +(197427, 'Sana', 2008, 'F', 114), +(197428, 'Shae', 2008, 'F', 114), +(197429, 'Sunny', 2008, 'F', 114), +(197430, 'Venus', 2008, 'F', 114), +(197431, 'Wren', 2008, 'F', 114), +(197432, 'Alea', 2008, 'F', 113), +(197433, 'Anastacia', 2008, 'F', 113), +(197434, 'Carmela', 2008, 'F', 113), +(197435, 'Dasha', 2008, 'F', 113), +(197436, 'Dawn', 2008, 'F', 113), +(197437, 'Nellie', 2008, 'F', 113), +(197438, 'Stormy', 2008, 'F', 113), +(197439, 'Taliah', 2008, 'F', 113), +(197440, 'Valencia', 2008, 'F', 113), +(197441, 'Addisen', 2008, 'F', 112), +(197442, 'Ariela', 2008, 'F', 112), +(197443, 'Breanne', 2008, 'F', 112), +(197444, 'Flora', 2008, 'F', 112), +(197445, 'Kaylei', 2008, 'F', 112), +(197446, 'Kloey', 2008, 'F', 112), +(197447, 'Marisela', 2008, 'F', 112), +(197448, 'Ruthie', 2008, 'F', 112), +(197449, 'Yoselyn', 2008, 'F', 112), +(197450, 'Zora', 2008, 'F', 112), +(197451, 'Baileigh', 2008, 'F', 111), +(197452, 'Cecily', 2008, 'F', 111), +(197453, 'Elysia', 2008, 'F', 111), +(197454, 'Irelynn', 2008, 'F', 111), +(197455, 'Irma', 2008, 'F', 111), +(197456, 'Justyce', 2008, 'F', 111), +(197457, 'Kimani', 2008, 'F', 111), +(197458, 'Mykayla', 2008, 'F', 111), +(197459, 'Stefany', 2008, 'F', 111), +(197460, 'Tristyn', 2008, 'F', 111), +(197461, 'Tyasia', 2008, 'F', 111), +(197462, 'Yessica', 2008, 'F', 111), +(197463, 'Abriana', 2008, 'F', 110), +(197464, 'Aila', 2008, 'F', 110), +(197465, 'Amora', 2008, 'F', 110), +(197466, 'Analisa', 2008, 'F', 110), +(197467, 'Britany', 2008, 'F', 110), +(197468, 'Deisy', 2008, 'F', 110), +(197469, 'Ellis', 2008, 'F', 110), +(197470, 'Joey', 2008, 'F', 110), +(197471, 'Kamaya', 2008, 'F', 110), +(197472, 'Rain', 2008, 'F', 110), +(197473, 'Scarlette', 2008, 'F', 110), +(197474, 'Simran', 2008, 'F', 110), +(197475, 'Tanvi', 2008, 'F', 110), +(197476, 'Taylin', 2008, 'F', 110), +(197477, 'Adrianne', 2008, 'F', 109), +(197478, 'Araya', 2008, 'F', 109), +(197479, 'Blessing', 2008, 'F', 109), +(197480, 'Chantal', 2008, 'F', 109), +(197481, 'Estelle', 2008, 'F', 109), +(197482, 'Ila', 2008, 'F', 109), +(197483, 'Ilana', 2008, 'F', 109), +(197484, 'Kaili', 2008, 'F', 109), +(197485, 'Kamdyn', 2008, 'F', 109), +(197486, 'Kaydee', 2008, 'F', 109), +(197487, 'Kaylan', 2008, 'F', 109), +(197488, 'Kynlee', 2008, 'F', 109), +(197489, 'Mercedez', 2008, 'F', 109), +(197490, 'Naila', 2008, 'F', 109), +(197491, 'Paiton', 2008, 'F', 109), +(197492, 'Sanjana', 2008, 'F', 109), +(197493, 'Semaj', 2008, 'F', 109), +(197494, 'Xitlali', 2008, 'F', 109), +(197495, 'Abbigale', 2008, 'F', 108), +(197496, 'Adria', 2008, 'F', 108), +(197497, 'Angelia', 2008, 'F', 108), +(197498, 'Antoinette', 2008, 'F', 108), +(197499, 'August', 2008, 'F', 108), +(197500, 'Candy', 2008, 'F', 108), +(197501, 'Edna', 2008, 'F', 108), +(197502, 'Jennah', 2008, 'F', 108), +(197503, 'Kalani', 2008, 'F', 108), +(197504, 'Kenadee', 2008, 'F', 108), +(197505, 'Kierstin', 2008, 'F', 108), +(197506, 'Kimberlyn', 2008, 'F', 108), +(197507, 'Loretta', 2008, 'F', 108), +(197508, 'Marlena', 2008, 'F', 108), +(197509, 'Rochel', 2008, 'F', 108), +(197510, 'Saira', 2008, 'F', 108), +(197511, 'Taleah', 2008, 'F', 108), +(197512, 'Trinitee', 2008, 'F', 108), +(197513, 'Zakiyah', 2008, 'F', 108), +(197514, 'Afton', 2008, 'F', 107), +(197515, 'Ani', 2008, 'F', 107), +(197516, 'Daniya', 2008, 'F', 107), +(197517, 'Juniper', 2008, 'F', 107), +(197518, 'Kaileigh', 2008, 'F', 107), +(197519, 'Kaily', 2008, 'F', 107), +(197520, 'Keyonna', 2008, 'F', 107), +(197521, 'Kilee', 2008, 'F', 107), +(197522, 'Liza', 2008, 'F', 107), +(197523, 'Lynn', 2008, 'F', 107), +(197524, 'Malayah', 2008, 'F', 107), +(197525, 'Maliya', 2008, 'F', 107), +(197526, 'Malorie', 2008, 'F', 107), +(197527, 'Aleyah', 2008, 'F', 106), +(197528, 'Ari', 2008, 'F', 106), +(197529, 'Avary', 2008, 'F', 106), +(197530, 'Cori', 2008, 'F', 106), +(197531, 'Daniyah', 2008, 'F', 106), +(197532, 'Danya', 2008, 'F', 106), +(197533, 'Jamila', 2008, 'F', 106), +(197534, 'Josalyn', 2008, 'F', 106), +(197535, 'Layna', 2008, 'F', 106), +(197536, 'Louise', 2008, 'F', 106), +(197537, 'Madelin', 2008, 'F', 106), +(197538, 'Madelyne', 2008, 'F', 106), +(197539, 'Mason', 2008, 'F', 106), +(197540, 'Nevaeha', 2008, 'F', 106), +(197541, 'Nikita', 2008, 'F', 106), +(197542, 'Tristen', 2008, 'F', 106), +(197543, 'Annalisa', 2008, 'F', 105), +(197544, 'Austyn', 2008, 'F', 105), +(197545, 'Beyonce', 2008, 'F', 105), +(197546, 'Chelsie', 2008, 'F', 105), +(197547, 'Emoni', 2008, 'F', 105), +(197548, 'Janelly', 2008, 'F', 105), +(197549, 'Kaiden', 2008, 'F', 105), +(197550, 'Kalie', 2008, 'F', 105), +(197551, 'Kassie', 2008, 'F', 105), +(197552, 'Marianne', 2008, 'F', 105), +(197553, 'Quincy', 2008, 'F', 105), +(197554, 'Scout', 2008, 'F', 105), +(197555, 'Shanya', 2008, 'F', 105), +(197556, 'Tahlia', 2008, 'F', 105), +(197557, 'Aaniyah', 2008, 'F', 104), +(197558, 'Adysen', 2008, 'F', 104), +(197559, 'Alona', 2008, 'F', 104), +(197560, 'Anai', 2008, 'F', 104), +(197561, 'Carter', 2008, 'F', 104), +(197562, 'Cydney', 2008, 'F', 104), +(197563, 'Davina', 2008, 'F', 104), +(197564, 'Elli', 2008, 'F', 104), +(197565, 'Jizelle', 2008, 'F', 104), +(197566, 'Keyana', 2008, 'F', 104), +(197567, 'Rian', 2008, 'F', 104), +(197568, 'Skylee', 2008, 'F', 104), +(197569, 'Ysabella', 2008, 'F', 104), +(197570, 'Beatrix', 2008, 'F', 103), +(197571, 'Cinthia', 2008, 'F', 103), +(197572, 'Clementine', 2008, 'F', 103), +(197573, 'Georgina', 2008, 'F', 103), +(197574, 'Keylee', 2008, 'F', 103), +(197575, 'Madelynne', 2008, 'F', 103), +(197576, 'Maegan', 2008, 'F', 103), +(197577, 'Mylah', 2008, 'F', 103), +(197578, 'Prisha', 2008, 'F', 103), +(197579, 'Raine', 2008, 'F', 103), +(197580, 'Skylynn', 2008, 'F', 103), +(197581, 'Zariya', 2008, 'F', 103), +(197582, 'Aislynn', 2008, 'F', 102), +(197583, 'Cami', 2008, 'F', 102), +(197584, 'Damya', 2008, 'F', 102), +(197585, 'Elinor', 2008, 'F', 102), +(197586, 'Emelyn', 2008, 'F', 102), +(197587, 'Laken', 2008, 'F', 102), +(197588, 'Magdalene', 2008, 'F', 102), +(197589, 'Makaylee', 2008, 'F', 102), +(197590, 'Nakayla', 2008, 'F', 102), +(197591, 'Naya', 2008, 'F', 102), +(197592, 'Shylah', 2008, 'F', 102), +(197593, 'Bianka', 2008, 'F', 101), +(197594, 'Carrington', 2008, 'F', 101), +(197595, 'Chyna', 2008, 'F', 101), +(197596, 'Devorah', 2008, 'F', 101), +(197597, 'Jessenia', 2008, 'F', 101), +(197598, 'Niyah', 2008, 'F', 101), +(197599, 'Rochelle', 2008, 'F', 101), +(197600, 'Sabine', 2008, 'F', 101), +(197601, 'Symone', 2008, 'F', 101), +(197602, 'Xitlaly', 2008, 'F', 101), +(197603, 'Anyah', 2008, 'F', 100), +(197604, 'Giulia', 2008, 'F', 100), +(197605, 'Hilary', 2008, 'F', 100), +(197606, 'Kamiah', 2008, 'F', 100), +(197607, 'Laela', 2008, 'F', 100), +(197608, 'Makenzy', 2008, 'F', 100), +(197609, 'Nechama', 2008, 'F', 100), +(197610, 'Ophelia', 2008, 'F', 100), +(197611, 'Shoshana', 2008, 'F', 100), +(197612, 'Tyanna', 2008, 'F', 100), +(197613, 'Valarie', 2008, 'F', 100), +(197614, 'Vivien', 2008, 'F', 100), +(197615, 'Jacob', 2008, 'M', 22568), +(197616, 'Michael', 2008, 'M', 20590), +(197617, 'Ethan', 2008, 'M', 20196), +(197618, 'Joshua', 2008, 'M', 19186), +(197619, 'Daniel', 2008, 'M', 18985), +(197620, 'Alexander', 2008, 'M', 18679), +(197621, 'William', 2008, 'M', 18380), +(197622, 'Anthony', 2008, 'M', 18378), +(197623, 'Christopher', 2008, 'M', 17928), +(197624, 'Matthew', 2008, 'M', 17573), +(197625, 'Jayden', 2008, 'M', 17127), +(197626, 'Andrew', 2008, 'M', 16743), +(197627, 'Joseph', 2008, 'M', 16543), +(197628, 'David', 2008, 'M', 16299), +(197629, 'Noah', 2008, 'M', 15773), +(197630, 'Aiden', 2008, 'M', 15569), +(197631, 'James', 2008, 'M', 15154), +(197632, 'Ryan', 2008, 'M', 14672), +(197633, 'Logan', 2008, 'M', 13840), +(197634, 'John', 2008, 'M', 13307), +(197635, 'Nathan', 2008, 'M', 13248), +(197636, 'Elijah', 2008, 'M', 13208), +(197637, 'Christian', 2008, 'M', 13047), +(197638, 'Gabriel', 2008, 'M', 13017), +(197639, 'Benjamin', 2008, 'M', 12937), +(197640, 'Jonathan', 2008, 'M', 12876), +(197641, 'Samuel', 2008, 'M', 12741), +(197642, 'Tyler', 2008, 'M', 12688), +(197643, 'Nicholas', 2008, 'M', 12512), +(197644, 'Gavin', 2008, 'M', 11741), +(197645, 'Dylan', 2008, 'M', 11694), +(197646, 'Jackson', 2008, 'M', 11626), +(197647, 'Brandon', 2008, 'M', 11460), +(197648, 'Caleb', 2008, 'M', 10562), +(197649, 'Mason', 2008, 'M', 10474), +(197650, 'Angel', 2008, 'M', 10343), +(197651, 'Isaac', 2008, 'M', 10012), +(197652, 'Evan', 2008, 'M', 9918), +(197653, 'Jack', 2008, 'M', 9891), +(197654, 'Jose', 2008, 'M', 9811), +(197655, 'Kevin', 2008, 'M', 9786), +(197656, 'Isaiah', 2008, 'M', 9645), +(197657, 'Luke', 2008, 'M', 9412), +(197658, 'Justin', 2008, 'M', 9351), +(197659, 'Landon', 2008, 'M', 9347), +(197660, 'Lucas', 2008, 'M', 9319), +(197661, 'Zachary', 2008, 'M', 9221), +(197662, 'Jordan', 2008, 'M', 9073), +(197663, 'Robert', 2008, 'M', 8819), +(197664, 'Aaron', 2008, 'M', 8530), +(197665, 'Brayden', 2008, 'M', 8427), +(197666, 'Thomas', 2008, 'M', 8349), +(197667, 'Cameron', 2008, 'M', 8282), +(197668, 'Hunter', 2008, 'M', 8030), +(197669, 'Austin', 2008, 'M', 7978), +(197670, 'Adrian', 2008, 'M', 7921), +(197671, 'Connor', 2008, 'M', 7810), +(197672, 'Owen', 2008, 'M', 7793), +(197673, 'Aidan', 2008, 'M', 7695), +(197674, 'Jason', 2008, 'M', 7646), +(197675, 'Julian', 2008, 'M', 7453), +(197676, 'Wyatt', 2008, 'M', 7307), +(197677, 'Charles', 2008, 'M', 7276), +(197678, 'Luis', 2008, 'M', 7129), +(197679, 'Carter', 2008, 'M', 7059), +(197680, 'Juan', 2008, 'M', 7026), +(197681, 'Chase', 2008, 'M', 6995), +(197682, 'Jeremiah', 2008, 'M', 6570), +(197683, 'Diego', 2008, 'M', 6568), +(197684, 'Brody', 2008, 'M', 6297), +(197685, 'Xavier', 2008, 'M', 6270), +(197686, 'Adam', 2008, 'M', 6085), +(197687, 'Carlos', 2008, 'M', 6042), +(197688, 'Sebastian', 2008, 'M', 6032), +(197689, 'Liam', 2008, 'M', 5976), +(197690, 'Hayden', 2008, 'M', 5940), +(197691, 'Nathaniel', 2008, 'M', 5842), +(197692, 'Henry', 2008, 'M', 5775), +(197693, 'Jesus', 2008, 'M', 5754), +(197694, 'Ian', 2008, 'M', 5720), +(197695, 'Tristan', 2008, 'M', 5651), +(197696, 'Bryan', 2008, 'M', 5502), +(197697, 'Sean', 2008, 'M', 5461), +(197698, 'Alex', 2008, 'M', 5393), +(197699, 'Cole', 2008, 'M', 5385), +(197700, 'Eric', 2008, 'M', 5372), +(197701, 'Brian', 2008, 'M', 5253), +(197702, 'Jaden', 2008, 'M', 5185), +(197703, 'Carson', 2008, 'M', 5126), +(197704, 'Blake', 2008, 'M', 5093), +(197705, 'Ayden', 2008, 'M', 5054), +(197706, 'Cooper', 2008, 'M', 5045), +(197707, 'Dominic', 2008, 'M', 4953), +(197708, 'Brady', 2008, 'M', 4813), +(197709, 'Caden', 2008, 'M', 4767), +(197710, 'Josiah', 2008, 'M', 4758), +(197711, 'Kyle', 2008, 'M', 4696), +(197712, 'Colton', 2008, 'M', 4544), +(197713, 'Eli', 2008, 'M', 4508), +(197714, 'Kaden', 2008, 'M', 4493), +(197715, 'Miguel', 2008, 'M', 4443), +(197716, 'Antonio', 2008, 'M', 4370), +(197717, 'Parker', 2008, 'M', 4315), +(197718, 'Steven', 2008, 'M', 4224), +(197719, 'Alejandro', 2008, 'M', 4165), +(197720, 'Riley', 2008, 'M', 4125), +(197721, 'Timothy', 2008, 'M', 4082); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(197722, 'Richard', 2008, 'M', 4052), +(197723, 'Devin', 2008, 'M', 4000), +(197724, 'Jesse', 2008, 'M', 3944), +(197725, 'Jake', 2008, 'M', 3791), +(197726, 'Victor', 2008, 'M', 3780), +(197727, 'Joel', 2008, 'M', 3736), +(197728, 'Colin', 2008, 'M', 3728), +(197729, 'Kaleb', 2008, 'M', 3704), +(197730, 'Levi', 2008, 'M', 3681), +(197731, 'Bryce', 2008, 'M', 3660), +(197732, 'Oliver', 2008, 'M', 3599), +(197733, 'Vincent', 2008, 'M', 3575), +(197734, 'Oscar', 2008, 'M', 3560), +(197735, 'Micah', 2008, 'M', 3519), +(197736, 'Ashton', 2008, 'M', 3511), +(197737, 'Cody', 2008, 'M', 3500), +(197738, 'Preston', 2008, 'M', 3458), +(197739, 'Marcus', 2008, 'M', 3386), +(197740, 'Max', 2008, 'M', 3369), +(197741, 'Patrick', 2008, 'M', 3332), +(197742, 'Seth', 2008, 'M', 3278), +(197743, 'Jeremy', 2008, 'M', 3248), +(197744, 'Peyton', 2008, 'M', 3219), +(197745, 'Nolan', 2008, 'M', 3149), +(197746, 'Ivan', 2008, 'M', 3103), +(197747, 'Damian', 2008, 'M', 3076), +(197748, 'Maxwell', 2008, 'M', 3055), +(197749, 'Alan', 2008, 'M', 3026), +(197750, 'Jonah', 2008, 'M', 2975), +(197751, 'Jorge', 2008, 'M', 2960), +(197752, 'Kenneth', 2008, 'M', 2957), +(197753, 'Mark', 2008, 'M', 2909), +(197754, 'Giovanni', 2008, 'M', 2903), +(197755, 'Collin', 2008, 'M', 2874), +(197756, 'Eduardo', 2008, 'M', 2868), +(197757, 'Grant', 2008, 'M', 2862), +(197758, 'Emmanuel', 2008, 'M', 2860), +(197759, 'Omar', 2008, 'M', 2860), +(197760, 'Gage', 2008, 'M', 2848), +(197761, 'Trevor', 2008, 'M', 2822), +(197762, 'Edward', 2008, 'M', 2783), +(197763, 'Ricardo', 2008, 'M', 2751), +(197764, 'Cristian', 2008, 'M', 2699), +(197765, 'Nicolas', 2008, 'M', 2681), +(197766, 'Kayden', 2008, 'M', 2588), +(197767, 'Jaxon', 2008, 'M', 2553), +(197768, 'Paul', 2008, 'M', 2552), +(197769, 'George', 2008, 'M', 2550), +(197770, 'Braden', 2008, 'M', 2523), +(197771, 'Elias', 2008, 'M', 2521), +(197772, 'Andres', 2008, 'M', 2502), +(197773, 'Derek', 2008, 'M', 2485), +(197774, 'Malachi', 2008, 'M', 2449), +(197775, 'Garrett', 2008, 'M', 2447), +(197776, 'Tanner', 2008, 'M', 2418), +(197777, 'Conner', 2008, 'M', 2417), +(197778, 'Fernando', 2008, 'M', 2381), +(197779, 'Javier', 2008, 'M', 2365), +(197780, 'Cesar', 2008, 'M', 2361), +(197781, 'Miles', 2008, 'M', 2358), +(197782, 'Leonardo', 2008, 'M', 2344), +(197783, 'Alexis', 2008, 'M', 2340), +(197784, 'Santiago', 2008, 'M', 2338), +(197785, 'Francisco', 2008, 'M', 2335), +(197786, 'Jaiden', 2008, 'M', 2333), +(197787, 'Cayden', 2008, 'M', 2321), +(197788, 'Shane', 2008, 'M', 2303), +(197789, 'Edwin', 2008, 'M', 2259), +(197790, 'Hudson', 2008, 'M', 2247), +(197791, 'Bryson', 2008, 'M', 2230), +(197792, 'Travis', 2008, 'M', 2226), +(197793, 'Erick', 2008, 'M', 2217), +(197794, 'Jace', 2008, 'M', 2190), +(197795, 'Peter', 2008, 'M', 2180), +(197796, 'Hector', 2008, 'M', 2176), +(197797, 'Josue', 2008, 'M', 2166), +(197798, 'Mario', 2008, 'M', 2161), +(197799, 'Jaylen', 2008, 'M', 2151), +(197800, 'Abraham', 2008, 'M', 2146), +(197801, 'Manuel', 2008, 'M', 2142), +(197802, 'Grayson', 2008, 'M', 2114), +(197803, 'Damien', 2008, 'M', 2109), +(197804, 'Kaiden', 2008, 'M', 2104), +(197805, 'Spencer', 2008, 'M', 2088), +(197806, 'Stephen', 2008, 'M', 2088), +(197807, 'Edgar', 2008, 'M', 2062), +(197808, 'Wesley', 2008, 'M', 2062), +(197809, 'Shawn', 2008, 'M', 2060), +(197810, 'Trenton', 2008, 'M', 2049), +(197811, 'Jared', 2008, 'M', 2041), +(197812, 'Jeffrey', 2008, 'M', 1995), +(197813, 'Landen', 2008, 'M', 1974), +(197814, 'Johnathan', 2008, 'M', 1957), +(197815, 'Bradley', 2008, 'M', 1950), +(197816, 'Braxton', 2008, 'M', 1936), +(197817, 'Camden', 2008, 'M', 1933), +(197818, 'Ryder', 2008, 'M', 1932), +(197819, 'Roman', 2008, 'M', 1927), +(197820, 'Asher', 2008, 'M', 1902), +(197821, 'Brendan', 2008, 'M', 1887), +(197822, 'Maddox', 2008, 'M', 1856), +(197823, 'Sergio', 2008, 'M', 1848), +(197824, 'Israel', 2008, 'M', 1827), +(197825, 'Lincoln', 2008, 'M', 1816), +(197826, 'Andy', 2008, 'M', 1810), +(197827, 'Erik', 2008, 'M', 1794), +(197828, 'Donovan', 2008, 'M', 1783), +(197829, 'Raymond', 2008, 'M', 1770), +(197830, 'Avery', 2008, 'M', 1747), +(197831, 'Rylan', 2008, 'M', 1743), +(197832, 'Dalton', 2008, 'M', 1736), +(197833, 'Harrison', 2008, 'M', 1735), +(197834, 'Andre', 2008, 'M', 1701), +(197835, 'Martin', 2008, 'M', 1697), +(197836, 'Jude', 2008, 'M', 1686), +(197837, 'Keegan', 2008, 'M', 1681), +(197838, 'Marco', 2008, 'M', 1677), +(197839, 'Sawyer', 2008, 'M', 1673), +(197840, 'Dakota', 2008, 'M', 1632), +(197841, 'Calvin', 2008, 'M', 1625), +(197842, 'Leo', 2008, 'M', 1625), +(197843, 'Kai', 2008, 'M', 1605), +(197844, 'Zion', 2008, 'M', 1597), +(197845, 'Troy', 2008, 'M', 1595), +(197846, 'Drake', 2008, 'M', 1588), +(197847, 'Roberto', 2008, 'M', 1580), +(197848, 'Clayton', 2008, 'M', 1574), +(197849, 'Zane', 2008, 'M', 1572), +(197850, 'Gregory', 2008, 'M', 1554), +(197851, 'Tucker', 2008, 'M', 1543), +(197852, 'Ezekiel', 2008, 'M', 1542), +(197853, 'Rafael', 2008, 'M', 1539), +(197854, 'Dominick', 2008, 'M', 1537), +(197855, 'Kingston', 2008, 'M', 1532), +(197856, 'Griffin', 2008, 'M', 1504), +(197857, 'Devon', 2008, 'M', 1503), +(197858, 'Drew', 2008, 'M', 1478), +(197859, 'Lukas', 2008, 'M', 1477), +(197860, 'Johnny', 2008, 'M', 1474), +(197861, 'Ty', 2008, 'M', 1433), +(197862, 'Pedro', 2008, 'M', 1406), +(197863, 'Mateo', 2008, 'M', 1403), +(197864, 'Caiden', 2008, 'M', 1401), +(197865, 'Tyson', 2008, 'M', 1400), +(197866, 'Chance', 2008, 'M', 1399), +(197867, 'Aden', 2008, 'M', 1388), +(197868, 'Cash', 2008, 'M', 1387), +(197869, 'Braylon', 2008, 'M', 1385), +(197870, 'Taylor', 2008, 'M', 1364), +(197871, 'Ruben', 2008, 'M', 1354), +(197872, 'Maximus', 2008, 'M', 1353), +(197873, 'Marcos', 2008, 'M', 1349), +(197874, 'Emanuel', 2008, 'M', 1345), +(197875, 'Simon', 2008, 'M', 1345), +(197876, 'Corbin', 2008, 'M', 1341), +(197877, 'Brennan', 2008, 'M', 1315), +(197878, 'Dillon', 2008, 'M', 1308), +(197879, 'Skyler', 2008, 'M', 1307), +(197880, 'Myles', 2008, 'M', 1306), +(197881, 'Jaxson', 2008, 'M', 1304), +(197882, 'Xander', 2008, 'M', 1294), +(197883, 'Dawson', 2008, 'M', 1290), +(197884, 'Kameron', 2008, 'M', 1286), +(197885, 'Kyler', 2008, 'M', 1268), +(197886, 'Axel', 2008, 'M', 1255), +(197887, 'Colby', 2008, 'M', 1255), +(197888, 'Jonas', 2008, 'M', 1253), +(197889, 'Joaquin', 2008, 'M', 1244), +(197890, 'Payton', 2008, 'M', 1238), +(197891, 'Brock', 2008, 'M', 1227), +(197892, 'Frank', 2008, 'M', 1226), +(197893, 'Enrique', 2008, 'M', 1219), +(197894, 'Quinn', 2008, 'M', 1216), +(197895, 'Malik', 2008, 'M', 1215), +(197896, 'Emilio', 2008, 'M', 1208), +(197897, 'Angelo', 2008, 'M', 1199), +(197898, 'Julio', 2008, 'M', 1199), +(197899, 'Grady', 2008, 'M', 1196), +(197900, 'Derrick', 2008, 'M', 1193), +(197901, 'Corey', 2008, 'M', 1183), +(197902, 'Raul', 2008, 'M', 1179), +(197903, 'Fabian', 2008, 'M', 1177), +(197904, 'Gerardo', 2008, 'M', 1174), +(197905, 'Ezra', 2008, 'M', 1157), +(197906, 'Dante', 2008, 'M', 1145), +(197907, 'Armando', 2008, 'M', 1137), +(197908, 'Theodore', 2008, 'M', 1137), +(197909, 'Allen', 2008, 'M', 1136), +(197910, 'Amir', 2008, 'M', 1125), +(197911, 'Gael', 2008, 'M', 1119), +(197912, 'Zander', 2008, 'M', 1117), +(197913, 'Adan', 2008, 'M', 1110), +(197914, 'Easton', 2008, 'M', 1105), +(197915, 'Randy', 2008, 'M', 1101), +(197916, 'Dustin', 2008, 'M', 1099), +(197917, 'Luca', 2008, 'M', 1098), +(197918, 'Julius', 2008, 'M', 1097), +(197919, 'Phillip', 2008, 'M', 1097), +(197920, 'Charlie', 2008, 'M', 1089), +(197921, 'Ronald', 2008, 'M', 1088), +(197922, 'Jakob', 2008, 'M', 1083), +(197923, 'Cade', 2008, 'M', 1074), +(197924, 'Silas', 2008, 'M', 1072), +(197925, 'Brett', 2008, 'M', 1070), +(197926, 'Trent', 2008, 'M', 1069), +(197927, 'Trey', 2008, 'M', 1064), +(197928, 'Keith', 2008, 'M', 1060), +(197929, 'Emiliano', 2008, 'M', 1058), +(197930, 'Jalen', 2008, 'M', 1053), +(197931, 'Lane', 2008, 'M', 1050), +(197932, 'Darius', 2008, 'M', 1049), +(197933, 'Jerry', 2008, 'M', 1045), +(197934, 'Jaime', 2008, 'M', 1040), +(197935, 'Scott', 2008, 'M', 1033), +(197936, 'Graham', 2008, 'M', 1031), +(197937, 'Weston', 2008, 'M', 1027), +(197938, 'Braydon', 2008, 'M', 1018), +(197939, 'Anderson', 2008, 'M', 1017), +(197940, 'Rodrigo', 2008, 'M', 1014), +(197941, 'Pablo', 2008, 'M', 1006), +(197942, 'Elliot', 2008, 'M', 1003), +(197943, 'Saul', 2008, 'M', 998), +(197944, 'Danny', 2008, 'M', 994), +(197945, 'Brayan', 2008, 'M', 992), +(197946, 'Dallas', 2008, 'M', 991), +(197947, 'Donald', 2008, 'M', 990), +(197948, 'Lorenzo', 2008, 'M', 986), +(197949, 'Mitchell', 2008, 'M', 977), +(197950, 'Casey', 2008, 'M', 974), +(197951, 'Tristen', 2008, 'M', 972), +(197952, 'Gustavo', 2008, 'M', 971), +(197953, 'Rowan', 2008, 'M', 971), +(197954, 'Alberto', 2008, 'M', 969), +(197955, 'Jayson', 2008, 'M', 958), +(197956, 'Aaden', 2008, 'M', 956), +(197957, 'Amari', 2008, 'M', 951), +(197958, 'Dean', 2008, 'M', 951), +(197959, 'Braeden', 2008, 'M', 947), +(197960, 'Declan', 2008, 'M', 942), +(197961, 'Chris', 2008, 'M', 939), +(197962, 'Ismael', 2008, 'M', 935), +(197963, 'Dane', 2008, 'M', 917), +(197964, 'Louis', 2008, 'M', 906), +(197965, 'Arturo', 2008, 'M', 898), +(197966, 'Brenden', 2008, 'M', 897), +(197967, 'Felix', 2008, 'M', 889), +(197968, 'Tony', 2008, 'M', 882), +(197969, 'Jimmy', 2008, 'M', 881), +(197970, 'Cohen', 2008, 'M', 879), +(197971, 'Holden', 2008, 'M', 876), +(197972, 'Nehemiah', 2008, 'M', 869), +(197973, 'Zackary', 2008, 'M', 866), +(197974, 'Reid', 2008, 'M', 865), +(197975, 'Abel', 2008, 'M', 864), +(197976, 'Bennett', 2008, 'M', 863), +(197977, 'Arthur', 2008, 'M', 862), +(197978, 'Esteban', 2008, 'M', 853), +(197979, 'Finn', 2008, 'M', 848), +(197980, 'Ricky', 2008, 'M', 848), +(197981, 'Cruz', 2008, 'M', 843), +(197982, 'Dennis', 2008, 'M', 832), +(197983, 'Keaton', 2008, 'M', 831), +(197984, 'Mauricio', 2008, 'M', 829), +(197985, 'Mathew', 2008, 'M', 827), +(197986, 'Marvin', 2008, 'M', 825), +(197987, 'Moises', 2008, 'M', 823), +(197988, 'Albert', 2008, 'M', 822), +(197989, 'Larry', 2008, 'M', 822), +(197990, 'Issac', 2008, 'M', 816), +(197991, 'Philip', 2008, 'M', 814), +(197992, 'Quentin', 2008, 'M', 810), +(197993, 'Jameson', 2008, 'M', 809), +(197994, 'Curtis', 2008, 'M', 807), +(197995, 'Greyson', 2008, 'M', 806), +(197996, 'Everett', 2008, 'M', 803), +(197997, 'Jayce', 2008, 'M', 800), +(197998, 'Darren', 2008, 'M', 796), +(197999, 'Elliott', 2008, 'M', 795), +(198000, 'Uriel', 2008, 'M', 788), +(198001, 'Alfredo', 2008, 'M', 784), +(198002, 'Hugo', 2008, 'M', 778), +(198003, 'Alec', 2008, 'M', 773), +(198004, 'Jamari', 2008, 'M', 772), +(198005, 'Marshall', 2008, 'M', 772), +(198006, 'Judah', 2008, 'M', 770), +(198007, 'Walter', 2008, 'M', 763), +(198008, 'Jay', 2008, 'M', 757), +(198009, 'Lance', 2008, 'M', 750), +(198010, 'Beau', 2008, 'M', 747), +(198011, 'Ali', 2008, 'M', 741), +(198012, 'Phoenix', 2008, 'M', 740), +(198013, 'Landyn', 2008, 'M', 738), +(198014, 'Nickolas', 2008, 'M', 736), +(198015, 'Yahir', 2008, 'M', 735), +(198016, 'Maurice', 2008, 'M', 733), +(198017, 'Kobe', 2008, 'M', 730), +(198018, 'Bryant', 2008, 'M', 728), +(198019, 'Reed', 2008, 'M', 726), +(198020, 'Davis', 2008, 'M', 724), +(198021, 'Leland', 2008, 'M', 724), +(198022, 'Russell', 2008, 'M', 724), +(198023, 'Colten', 2008, 'M', 723), +(198024, 'Joe', 2008, 'M', 721), +(198025, 'Desmond', 2008, 'M', 720), +(198026, 'Ernesto', 2008, 'M', 720), +(198027, 'Kade', 2008, 'M', 718), +(198028, 'Reece', 2008, 'M', 716), +(198029, 'Morgan', 2008, 'M', 713), +(198030, 'Ramon', 2008, 'M', 713), +(198031, 'Rocco', 2008, 'M', 707), +(198032, 'Ryker', 2008, 'M', 703), +(198033, 'Orlando', 2008, 'M', 697), +(198034, 'Paxton', 2008, 'M', 695), +(198035, 'Brodie', 2008, 'M', 692), +(198036, 'Jacoby', 2008, 'M', 690), +(198037, 'Solomon', 2008, 'M', 688), +(198038, 'Douglas', 2008, 'M', 687), +(198039, 'Gary', 2008, 'M', 679), +(198040, 'Kristopher', 2008, 'M', 678), +(198041, 'Izaiah', 2008, 'M', 676), +(198042, 'Lawrence', 2008, 'M', 676), +(198043, 'Nikolas', 2008, 'M', 674), +(198044, 'Justice', 2008, 'M', 673), +(198045, 'Mekhi', 2008, 'M', 673), +(198046, 'Tate', 2008, 'M', 671), +(198047, 'Shaun', 2008, 'M', 669), +(198048, 'Jaydon', 2008, 'M', 668), +(198049, 'Salvador', 2008, 'M', 659), +(198050, 'Kane', 2008, 'M', 654), +(198051, 'Eddie', 2008, 'M', 653), +(198052, 'Alvin', 2008, 'M', 652), +(198053, 'Davion', 2008, 'M', 648), +(198054, 'Zachariah', 2008, 'M', 644), +(198055, 'Dorian', 2008, 'M', 641), +(198056, 'Titus', 2008, 'M', 636), +(198057, 'Isiah', 2008, 'M', 634), +(198058, 'Milo', 2008, 'M', 632), +(198059, 'Kellen', 2008, 'M', 628), +(198060, 'Nasir', 2008, 'M', 628), +(198061, 'Camron', 2008, 'M', 626), +(198062, 'Jasper', 2008, 'M', 626), +(198063, 'Javon', 2008, 'M', 626), +(198064, 'Byron', 2008, 'M', 617), +(198065, 'Johan', 2008, 'M', 616), +(198066, 'Chad', 2008, 'M', 612), +(198067, 'Jonathon', 2008, 'M', 612), +(198068, 'River', 2008, 'M', 610), +(198069, 'Marc', 2008, 'M', 609), +(198070, 'Chandler', 2008, 'M', 607), +(198071, 'Kelvin', 2008, 'M', 605), +(198072, 'Deandre', 2008, 'M', 604), +(198073, 'Sam', 2008, 'M', 604), +(198074, 'Cory', 2008, 'M', 603), +(198075, 'Reese', 2008, 'M', 597), +(198076, 'Quinton', 2008, 'M', 596), +(198077, 'Roger', 2008, 'M', 596), +(198078, 'Romeo', 2008, 'M', 594), +(198079, 'Talon', 2008, 'M', 593), +(198080, 'Maximilian', 2008, 'M', 591), +(198081, 'Noel', 2008, 'M', 591), +(198082, 'Franklin', 2008, 'M', 588), +(198083, 'Alijah', 2008, 'M', 586), +(198084, 'Jadon', 2008, 'M', 586), +(198085, 'Melvin', 2008, 'M', 586), +(198086, 'Gunner', 2008, 'M', 585), +(198087, 'Damon', 2008, 'M', 584), +(198088, 'Emerson', 2008, 'M', 584), +(198089, 'Micheal', 2008, 'M', 584), +(198090, 'Guillermo', 2008, 'M', 583), +(198091, 'August', 2008, 'M', 581), +(198092, 'Bruce', 2008, 'M', 579), +(198093, 'Kolton', 2008, 'M', 579), +(198094, 'Terry', 2008, 'M', 578), +(198095, 'Beckett', 2008, 'M', 577), +(198096, 'Porter', 2008, 'M', 574), +(198097, 'Leonel', 2008, 'M', 572), +(198098, 'Jamarion', 2008, 'M', 570), +(198099, 'Brycen', 2008, 'M', 569), +(198100, 'Dayton', 2008, 'M', 568), +(198101, 'Karson', 2008, 'M', 565), +(198102, 'Zayden', 2008, 'M', 565), +(198103, 'Keagan', 2008, 'M', 563), +(198104, 'Moses', 2008, 'M', 562), +(198105, 'Carl', 2008, 'M', 557), +(198106, 'Khalil', 2008, 'M', 556), +(198107, 'Braiden', 2008, 'M', 555), +(198108, 'Cristopher', 2008, 'M', 553), +(198109, 'Roy', 2008, 'M', 551), +(198110, 'Walker', 2008, 'M', 551), +(198111, 'Nelson', 2008, 'M', 550), +(198112, 'Isaias', 2008, 'M', 548), +(198113, 'Jermaine', 2008, 'M', 546), +(198114, 'Kristian', 2008, 'M', 546), +(198115, 'Triston', 2008, 'M', 546), +(198116, 'Leon', 2008, 'M', 545), +(198117, 'Rodney', 2008, 'M', 545), +(198118, 'Kale', 2008, 'M', 544), +(198119, 'Cyrus', 2008, 'M', 539), +(198120, 'Pierce', 2008, 'M', 537), +(198121, 'Mohamed', 2008, 'M', 535), +(198122, 'Ronan', 2008, 'M', 535), +(198123, 'Jeffery', 2008, 'M', 533), +(198124, 'Maverick', 2008, 'M', 533), +(198125, 'Trace', 2008, 'M', 533), +(198126, 'Nathanael', 2008, 'M', 531), +(198127, 'Warren', 2008, 'M', 530), +(198128, 'Quincy', 2008, 'M', 529), +(198129, 'Skylar', 2008, 'M', 529), +(198130, 'Conor', 2008, 'M', 528), +(198131, 'Tommy', 2008, 'M', 525), +(198132, 'Jaylin', 2008, 'M', 524), +(198133, 'Noe', 2008, 'M', 523), +(198134, 'Demetrius', 2008, 'M', 522), +(198135, 'Ezequiel', 2008, 'M', 520), +(198136, 'Kendrick', 2008, 'M', 519), +(198137, 'Frederick', 2008, 'M', 518), +(198138, 'Maximiliano', 2008, 'M', 514), +(198139, 'Bobby', 2008, 'M', 512), +(198140, 'Jon', 2008, 'M', 510), +(198141, 'Terrance', 2008, 'M', 510), +(198142, 'Jamison', 2008, 'M', 508), +(198143, 'Tobias', 2008, 'M', 506), +(198144, 'Rohan', 2008, 'M', 503), +(198145, 'Kieran', 2008, 'M', 502), +(198146, 'Colt', 2008, 'M', 499), +(198147, 'Jett', 2008, 'M', 499), +(198148, 'Gideon', 2008, 'M', 498), +(198149, 'Ari', 2008, 'M', 495), +(198150, 'Orion', 2008, 'M', 493), +(198151, 'Felipe', 2008, 'M', 492), +(198152, 'Kenny', 2008, 'M', 492), +(198153, 'Wilson', 2008, 'M', 492), +(198154, 'Jessie', 2008, 'M', 488), +(198155, 'Kamari', 2008, 'M', 487), +(198156, 'Gunnar', 2008, 'M', 486), +(198157, 'Alonzo', 2008, 'M', 482), +(198158, 'Gianni', 2008, 'M', 482), +(198159, 'Malcolm', 2008, 'M', 482), +(198160, 'Waylon', 2008, 'M', 480), +(198161, 'Emmett', 2008, 'M', 479), +(198162, 'Terrell', 2008, 'M', 479), +(198163, 'Julien', 2008, 'M', 478), +(198164, 'London', 2008, 'M', 478), +(198165, 'Omari', 2008, 'M', 478), +(198166, 'Abram', 2008, 'M', 477), +(198167, 'Allan', 2008, 'M', 477), +(198168, 'Tomas', 2008, 'M', 475), +(198169, 'Matteo', 2008, 'M', 473), +(198170, 'Tristin', 2008, 'M', 473), +(198171, 'Jairo', 2008, 'M', 472), +(198172, 'Reginald', 2008, 'M', 471), +(198173, 'Brent', 2008, 'M', 468), +(198174, 'Ahmad', 2008, 'M', 465), +(198175, 'Rene', 2008, 'M', 464), +(198176, 'Trevon', 2008, 'M', 464), +(198177, 'Boston', 2008, 'M', 461), +(198178, 'Yandel', 2008, 'M', 461), +(198179, 'Billy', 2008, 'M', 458), +(198180, 'Willie', 2008, 'M', 457), +(198181, 'Jamal', 2008, 'M', 456), +(198182, 'Marlon', 2008, 'M', 455), +(198183, 'Ariel', 2008, 'M', 454), +(198184, 'Aydan', 2008, 'M', 454), +(198185, 'Aldo', 2008, 'M', 452), +(198186, 'Rogelio', 2008, 'M', 450), +(198187, 'Braylen', 2008, 'M', 449), +(198188, 'Cason', 2008, 'M', 449), +(198189, 'Javion', 2008, 'M', 448), +(198190, 'Joey', 2008, 'M', 445), +(198191, 'Dominik', 2008, 'M', 444), +(198192, 'Ahmed', 2008, 'M', 443), +(198193, 'Marquis', 2008, 'M', 443), +(198194, 'Brendon', 2008, 'M', 442), +(198195, 'Armani', 2008, 'M', 441), +(198196, 'Kody', 2008, 'M', 441), +(198197, 'Toby', 2008, 'M', 440), +(198198, 'Ulises', 2008, 'M', 435), +(198199, 'Will', 2008, 'M', 432), +(198200, 'Alfonso', 2008, 'M', 430), +(198201, 'Branden', 2008, 'M', 430), +(198202, 'Adriel', 2008, 'M', 429), +(198203, 'Ibrahim', 2008, 'M', 428), +(198204, 'Craig', 2008, 'M', 427), +(198205, 'Aron', 2008, 'M', 426), +(198206, 'Wade', 2008, 'M', 426), +(198207, 'Davin', 2008, 'M', 423), +(198208, 'Osvaldo', 2008, 'M', 423), +(198209, 'Steve', 2008, 'M', 422), +(198210, 'Deshawn', 2008, 'M', 420), +(198211, 'Harley', 2008, 'M', 420), +(198212, 'Brooks', 2008, 'M', 419), +(198213, 'Terrence', 2008, 'M', 419), +(198214, 'Damion', 2008, 'M', 418), +(198215, 'Jefferson', 2008, 'M', 418), +(198216, 'Jaylon', 2008, 'M', 417), +(198217, 'Kason', 2008, 'M', 417), +(198218, 'Gerald', 2008, 'M', 415), +(198219, 'Rolando', 2008, 'M', 415), +(198220, 'Darian', 2008, 'M', 413), +(198221, 'Enzo', 2008, 'M', 412), +(198222, 'Kian', 2008, 'M', 412), +(198223, 'Ryland', 2008, 'M', 410), +(198224, 'Barrett', 2008, 'M', 408), +(198225, 'Jaeden', 2008, 'M', 408), +(198226, 'Bradyn', 2008, 'M', 407), +(198227, 'Giovani', 2008, 'M', 405), +(198228, 'Ben', 2008, 'M', 404), +(198229, 'Blaine', 2008, 'M', 403), +(198230, 'Muhammad', 2008, 'M', 403), +(198231, 'Ronnie', 2008, 'M', 401), +(198232, 'Jerome', 2008, 'M', 400), +(198233, 'Kolby', 2008, 'M', 400), +(198234, 'Madden', 2008, 'M', 399), +(198235, 'Leonard', 2008, 'M', 398), +(198236, 'Alessandro', 2008, 'M', 396), +(198237, 'Raphael', 2008, 'M', 396), +(198238, 'Cale', 2008, 'M', 395), +(198239, 'Zachery', 2008, 'M', 395), +(198240, 'Layne', 2008, 'M', 394), +(198241, 'Malakai', 2008, 'M', 394), +(198242, 'Vicente', 2008, 'M', 393), +(198243, 'Aydin', 2008, 'M', 392), +(198244, 'Elisha', 2008, 'M', 391), +(198245, 'Gavyn', 2008, 'M', 390), +(198246, 'Darrell', 2008, 'M', 388), +(198247, 'Moshe', 2008, 'M', 388), +(198248, 'Xzavier', 2008, 'M', 388), +(198249, 'Rudy', 2008, 'M', 387), +(198250, 'Cannon', 2008, 'M', 385), +(198251, 'Asa', 2008, 'M', 384), +(198252, 'Kendall', 2008, 'M', 383), +(198253, 'Lewis', 2008, 'M', 383), +(198254, 'Zackery', 2008, 'M', 383), +(198255, 'Junior', 2008, 'M', 381), +(198256, 'Alvaro', 2008, 'M', 380), +(198257, 'Deacon', 2008, 'M', 380), +(198258, 'Giancarlo', 2008, 'M', 380), +(198259, 'Harry', 2008, 'M', 379), +(198260, 'Rashad', 2008, 'M', 379), +(198261, 'Valentin', 2008, 'M', 379), +(198262, 'Finnegan', 2008, 'M', 377), +(198263, 'Jase', 2008, 'M', 377), +(198264, 'Brennen', 2008, 'M', 375), +(198265, 'Cedric', 2008, 'M', 374), +(198266, 'Mohammed', 2008, 'M', 373), +(198267, 'Johnathon', 2008, 'M', 371), +(198268, 'Santino', 2008, 'M', 371), +(198269, 'Tyrone', 2008, 'M', 370), +(198270, 'Ramiro', 2008, 'M', 369), +(198271, 'Ray', 2008, 'M', 369), +(198272, 'Stanley', 2008, 'M', 369), +(198273, 'Chace', 2008, 'M', 367), +(198274, 'Francis', 2008, 'M', 367), +(198275, 'Zechariah', 2008, 'M', 367), +(198276, 'Teagan', 2008, 'M', 366), +(198277, 'Nico', 2008, 'M', 365), +(198278, 'Jamie', 2008, 'M', 364), +(198279, 'Alonso', 2008, 'M', 363), +(198280, 'Kamden', 2008, 'M', 363), +(198281, 'Kole', 2008, 'M', 363), +(198282, 'Kaeden', 2008, 'M', 362), +(198283, 'Karter', 2008, 'M', 362), +(198284, 'Gilberto', 2008, 'M', 361), +(198285, 'Alexzander', 2008, 'M', 359), +(198286, 'Camren', 2008, 'M', 359), +(198287, 'Lee', 2008, 'M', 359), +(198288, 'Luciano', 2008, 'M', 359), +(198289, 'Draven', 2008, 'M', 358), +(198290, 'Nash', 2008, 'M', 358), +(198291, 'Rhys', 2008, 'M', 357), +(198292, 'Amare', 2008, 'M', 356), +(198293, 'Misael', 2008, 'M', 356), +(198294, 'Aryan', 2008, 'M', 355), +(198295, 'Rodolfo', 2008, 'M', 355), +(198296, 'Giovanny', 2008, 'M', 354), +(198297, 'Markus', 2008, 'M', 353), +(198298, 'Rhett', 2008, 'M', 353), +(198299, 'Deven', 2008, 'M', 349), +(198300, 'Quintin', 2008, 'M', 349), +(198301, 'Atticus', 2008, 'M', 348), +(198302, 'Memphis', 2008, 'M', 348), +(198303, 'Dwayne', 2008, 'M', 347), +(198304, 'Mohammad', 2008, 'M', 347), +(198305, 'Antoine', 2008, 'M', 343), +(198306, 'Jax', 2008, 'M', 343), +(198307, 'Davian', 2008, 'M', 342), +(198308, 'Clark', 2008, 'M', 341), +(198309, 'Eugene', 2008, 'M', 341), +(198310, 'Wayne', 2008, 'M', 340), +(198311, 'Semaj', 2008, 'M', 337), +(198312, 'Uriah', 2008, 'M', 337), +(198313, 'Aidyn', 2008, 'M', 336), +(198314, 'Randall', 2008, 'M', 336), +(198315, 'Jorden', 2008, 'M', 334), +(198316, 'Maxim', 2008, 'M', 334), +(198317, 'Messiah', 2008, 'M', 334), +(198318, 'Korbin', 2008, 'M', 332), +(198319, 'Sullivan', 2008, 'M', 332), +(198320, 'Aditya', 2008, 'M', 331), +(198321, 'Lawson', 2008, 'M', 330), +(198322, 'Brice', 2008, 'M', 329), +(198323, 'Davon', 2008, 'M', 329), +(198324, 'King', 2008, 'M', 329), +(198325, 'Dexter', 2008, 'M', 328), +(198326, 'Freddy', 2008, 'M', 327), +(198327, 'Neil', 2008, 'M', 326), +(198328, 'Demarcus', 2008, 'M', 325), +(198329, 'Elvis', 2008, 'M', 325), +(198330, 'Heath', 2008, 'M', 324), +(198331, 'Duncan', 2008, 'M', 323), +(198332, 'Ace', 2008, 'M', 322), +(198333, 'Sincere', 2008, 'M', 322), +(198334, 'Tyree', 2008, 'M', 321), +(198335, 'Irvin', 2008, 'M', 320), +(198336, 'Jamar', 2008, 'M', 320), +(198337, 'Remington', 2008, 'M', 319), +(198338, 'Damarion', 2008, 'M', 318), +(198339, 'Talan', 2008, 'M', 318), +(198340, 'Kadin', 2008, 'M', 317), +(198341, 'Keenan', 2008, 'M', 317), +(198342, 'Soren', 2008, 'M', 317), +(198343, 'Tristian', 2008, 'M', 317), +(198344, 'Adrien', 2008, 'M', 316), +(198345, 'Gilbert', 2008, 'M', 316), +(198346, 'Darnell', 2008, 'M', 313), +(198347, 'Adolfo', 2008, 'M', 312), +(198348, 'Derick', 2008, 'M', 311), +(198349, 'Gauge', 2008, 'M', 311), +(198350, 'Harold', 2008, 'M', 310), +(198351, 'Isai', 2008, 'M', 310), +(198352, 'Rylee', 2008, 'M', 310), +(198353, 'Kareem', 2008, 'M', 309), +(198354, 'Deangelo', 2008, 'M', 307), +(198355, 'Coleman', 2008, 'M', 306), +(198356, 'Lamar', 2008, 'M', 304), +(198357, 'Zavier', 2008, 'M', 304), +(198358, 'Agustin', 2008, 'M', 303), +(198359, 'Jordyn', 2008, 'M', 303), +(198360, 'Emery', 2008, 'M', 302), +(198361, 'Jaydin', 2008, 'M', 302), +(198362, 'Devan', 2008, 'M', 301), +(198363, 'Prince', 2008, 'M', 301), +(198364, 'Sage', 2008, 'M', 300), +(198365, 'Jasiah', 2008, 'M', 299), +(198366, 'Mathias', 2008, 'M', 299), +(198367, 'Seamus', 2008, 'M', 298), +(198368, 'Roland', 2008, 'M', 296), +(198369, 'Conrad', 2008, 'M', 294), +(198370, 'Efrain', 2008, 'M', 294), +(198371, 'Arjun', 2008, 'M', 293), +(198372, 'Santos', 2008, 'M', 293), +(198373, 'Darryl', 2008, 'M', 292), +(198374, 'Mike', 2008, 'M', 292), +(198375, 'Hamza', 2008, 'M', 291), +(198376, 'Kamron', 2008, 'M', 291), +(198377, 'Marley', 2008, 'M', 291), +(198378, 'Kylan', 2008, 'M', 290), +(198379, 'Matthias', 2008, 'M', 290), +(198380, 'Vance', 2008, 'M', 290), +(198381, 'Dax', 2008, 'M', 289), +(198382, 'Frankie', 2008, 'M', 289), +(198383, 'Tyrell', 2008, 'M', 289), +(198384, 'Dominique', 2008, 'M', 288), +(198385, 'Jabari', 2008, 'M', 288), +(198386, 'Keon', 2008, 'M', 287), +(198387, 'Todd', 2008, 'M', 287), +(198388, 'Luka', 2008, 'M', 286), +(198389, 'Maximo', 2008, 'M', 286), +(198390, 'Jamir', 2008, 'M', 285), +(198391, 'Kash', 2008, 'M', 285), +(198392, 'Layton', 2008, 'M', 285), +(198393, 'Raiden', 2008, 'M', 285), +(198394, 'Haiden', 2008, 'M', 284), +(198395, 'Marcelo', 2008, 'M', 284), +(198396, 'Cullen', 2008, 'M', 283), +(198397, 'Rory', 2008, 'M', 281), +(198398, 'Cordell', 2008, 'M', 279), +(198399, 'Donte', 2008, 'M', 279), +(198400, 'Alfred', 2008, 'M', 278), +(198401, 'Darwin', 2008, 'M', 278), +(198402, 'Hassan', 2008, 'M', 278), +(198403, 'Augustus', 2008, 'M', 277), +(198404, 'Bailey', 2008, 'M', 277), +(198405, 'Jovani', 2008, 'M', 277), +(198406, 'Justus', 2008, 'M', 277), +(198407, 'Ernest', 2008, 'M', 276), +(198408, 'Gaige', 2008, 'M', 276), +(198409, 'Ellis', 2008, 'M', 275), +(198410, 'Jamarcus', 2008, 'M', 275), +(198411, 'Kasen', 2008, 'M', 275), +(198412, 'Bruno', 2008, 'M', 274), +(198413, 'Killian', 2008, 'M', 274), +(198414, 'Rex', 2008, 'M', 274), +(198415, 'Ronin', 2008, 'M', 274), +(198416, 'Van', 2008, 'M', 274), +(198417, 'Chaim', 2008, 'M', 273), +(198418, 'Zain', 2008, 'M', 273), +(198419, 'Jaron', 2008, 'M', 272), +(198420, 'Trevin', 2008, 'M', 272), +(198421, 'Yusuf', 2008, 'M', 272), +(198422, 'Ignacio', 2008, 'M', 270), +(198423, 'Jaidyn', 2008, 'M', 270), +(198424, 'Jaquan', 2008, 'M', 270), +(198425, 'Lucian', 2008, 'M', 270), +(198426, 'Nigel', 2008, 'M', 270), +(198427, 'Winston', 2008, 'M', 270), +(198428, 'Humberto', 2008, 'M', 269), +(198429, 'Konner', 2008, 'M', 269), +(198430, 'Sidney', 2008, 'M', 269), +(198431, 'Jadyn', 2008, 'M', 268), +(198432, 'Josh', 2008, 'M', 268), +(198433, 'Kasey', 2008, 'M', 268), +(198434, 'Elian', 2008, 'M', 267), +(198435, 'Matias', 2008, 'M', 267), +(198436, 'Zayne', 2008, 'M', 267), +(198437, 'Addison', 2008, 'M', 266), +(198438, 'Dashawn', 2008, 'M', 266), +(198439, 'Finley', 2008, 'M', 266), +(198440, 'Aedan', 2008, 'M', 265), +(198441, 'Braedon', 2008, 'M', 264), +(198442, 'Deon', 2008, 'M', 264), +(198443, 'Franco', 2008, 'M', 264), +(198444, 'Savion', 2008, 'M', 264), +(198445, 'Cristofer', 2008, 'M', 263), +(198446, 'Niko', 2008, 'M', 263), +(198447, 'Cael', 2008, 'M', 262), +(198448, 'Yair', 2008, 'M', 262), +(198449, 'Bo', 2008, 'M', 261), +(198450, 'Krish', 2008, 'M', 261), +(198451, 'Dale', 2008, 'M', 260), +(198452, 'Marcel', 2008, 'M', 260), +(198453, 'Anton', 2008, 'M', 259), +(198454, 'Brogan', 2008, 'M', 258), +(198455, 'Kymani', 2008, 'M', 258), +(198456, 'Ross', 2008, 'M', 258), +(198457, 'Coby', 2008, 'M', 257), +(198458, 'Jordon', 2008, 'M', 257), +(198459, 'Zaire', 2008, 'M', 257), +(198460, 'Darien', 2008, 'M', 255), +(198461, 'Samir', 2008, 'M', 255), +(198462, 'Vaughn', 2008, 'M', 254), +(198463, 'Devyn', 2008, 'M', 253), +(198464, 'Dario', 2008, 'M', 252), +(198465, 'Adonis', 2008, 'M', 251), +(198466, 'Kenyon', 2008, 'M', 251), +(198467, 'Clay', 2008, 'M', 250), +(198468, 'Ishaan', 2008, 'M', 249), +(198469, 'Clinton', 2008, 'M', 248), +(198470, 'Jair', 2008, 'M', 248), +(198471, 'Kael', 2008, 'M', 248), +(198472, 'Harper', 2008, 'M', 247), +(198473, 'Jovanny', 2008, 'M', 247), +(198474, 'Ean', 2008, 'M', 246), +(198475, 'German', 2008, 'M', 246), +(198476, 'Glenn', 2008, 'M', 246), +(198477, 'Ralph', 2008, 'M', 246), +(198478, 'Rey', 2008, 'M', 246), +(198479, 'Sonny', 2008, 'M', 246), +(198480, 'Rigoberto', 2008, 'M', 245), +(198481, 'Blaze', 2008, 'M', 244), +(198482, 'Branson', 2008, 'M', 244), +(198483, 'Nathen', 2008, 'M', 244), +(198484, 'Octavio', 2008, 'M', 244), +(198485, 'Sterling', 2008, 'M', 244), +(198486, 'Houston', 2008, 'M', 243), +(198487, 'Keshawn', 2008, 'M', 243), +(198488, 'Rayan', 2008, 'M', 243), +(198489, 'Koen', 2008, 'M', 242), +(198490, 'Tyrese', 2008, 'M', 242), +(198491, 'Leonidas', 2008, 'M', 241), +(198492, 'Nikhil', 2008, 'M', 241), +(198493, 'Jadiel', 2008, 'M', 240), +(198494, 'Dillan', 2008, 'M', 239), +(198495, 'Jeramiah', 2008, 'M', 239), +(198496, 'Antwan', 2008, 'M', 238), +(198497, 'Dereon', 2008, 'M', 238), +(198498, 'Konnor', 2008, 'M', 238), +(198499, 'Yosef', 2008, 'M', 238), +(198500, 'Fisher', 2008, 'M', 237), +(198501, 'Zack', 2008, 'M', 237), +(198502, 'Jaydan', 2008, 'M', 236), +(198503, 'Jovan', 2008, 'M', 236), +(198504, 'Nick', 2008, 'M', 236), +(198505, 'Quinten', 2008, 'M', 235), +(198506, 'Urijah', 2008, 'M', 235), +(198507, 'Makai', 2008, 'M', 234), +(198508, 'Darion', 2008, 'M', 233), +(198509, 'Eden', 2008, 'M', 233), +(198510, 'Jarrett', 2008, 'M', 233), +(198511, 'Salvatore', 2008, 'M', 232), +(198512, 'Antony', 2008, 'M', 231), +(198513, 'Beckham', 2008, 'M', 231), +(198514, 'Broderick', 2008, 'M', 231), +(198515, 'Demarion', 2008, 'M', 231), +(198516, 'Zaiden', 2008, 'M', 231), +(198517, 'Nikolai', 2008, 'M', 230), +(198518, 'Howard', 2008, 'M', 229), +(198519, 'Malaki', 2008, 'M', 229), +(198520, 'Camryn', 2008, 'M', 228), +(198521, 'Jovanni', 2008, 'M', 228), +(198522, 'Valentino', 2008, 'M', 228), +(198523, 'Immanuel', 2008, 'M', 227), +(198524, 'Ayaan', 2008, 'M', 226), +(198525, 'Yael', 2008, 'M', 226), +(198526, 'Ethen', 2008, 'M', 225), +(198527, 'Leroy', 2008, 'M', 225), +(198528, 'Royce', 2008, 'M', 225), +(198529, 'Leandro', 2008, 'M', 224), +(198530, 'Tyshawn', 2008, 'M', 224), +(198531, 'Marquise', 2008, 'M', 223), +(198532, 'Alden', 2008, 'M', 222), +(198533, 'Hezekiah', 2008, 'M', 222), +(198534, 'Jean', 2008, 'M', 222), +(198535, 'Gaven', 2008, 'M', 221), +(198536, 'Slade', 2008, 'M', 221), +(198537, 'Kadyn', 2008, 'M', 220), +(198538, 'Aarav', 2008, 'M', 219), +(198539, 'Jovany', 2008, 'M', 219), +(198540, 'Kamren', 2008, 'M', 219), +(198541, 'Nathanial', 2008, 'M', 219), +(198542, 'Reuben', 2008, 'M', 219), +(198543, 'Shamar', 2008, 'M', 219), +(198544, 'Tripp', 2008, 'M', 219), +(198545, 'Zaid', 2008, 'M', 219), +(198546, 'Clarence', 2008, 'M', 218), +(198547, 'Jakobe', 2008, 'M', 218), +(198548, 'Kelton', 2008, 'M', 218), +(198549, 'Milton', 2008, 'M', 218), +(198550, 'Geovanni', 2008, 'M', 217), +(198551, 'Rishi', 2008, 'M', 217), +(198552, 'Roderick', 2008, 'M', 217), +(198553, 'Bentley', 2008, 'M', 216), +(198554, 'Lyric', 2008, 'M', 216), +(198555, 'Pranav', 2008, 'M', 216), +(198556, 'Carmelo', 2008, 'M', 215), +(198557, 'Bernard', 2008, 'M', 214), +(198558, 'Samson', 2008, 'M', 214), +(198559, 'Cassius', 2008, 'M', 213), +(198560, 'Denzel', 2008, 'M', 212), +(198561, 'Gordon', 2008, 'M', 212), +(198562, 'Kyson', 2008, 'M', 212), +(198563, 'Reynaldo', 2008, 'M', 212), +(198564, 'Yadiel', 2008, 'M', 212), +(198565, 'Chaz', 2008, 'M', 211), +(198566, 'Abdullah', 2008, 'M', 210), +(198567, 'Jayvon', 2008, 'M', 210), +(198568, 'Lamont', 2008, 'M', 210), +(198569, 'Sheldon', 2008, 'M', 210), +(198570, 'Thaddeus', 2008, 'M', 210), +(198571, 'Eliezer', 2008, 'M', 209), +(198572, 'Makhi', 2008, 'M', 209), +(198573, 'Reilly', 2008, 'M', 209), +(198574, 'Donavan', 2008, 'M', 208), +(198575, 'Jagger', 2008, 'M', 208), +(198576, 'Keyon', 2008, 'M', 208), +(198577, 'Oswaldo', 2008, 'M', 208), +(198578, 'Simeon', 2008, 'M', 208), +(198579, 'Case', 2008, 'M', 207), +(198580, 'Trystan', 2008, 'M', 207), +(198581, 'Jan', 2008, 'M', 206), +(198582, 'Kyan', 2008, 'M', 206), +(198583, 'Marques', 2008, 'M', 206), +(198584, 'Andreas', 2008, 'M', 205), +(198585, 'Bridger', 2008, 'M', 205), +(198586, 'Callum', 2008, 'M', 205), +(198587, 'Dangelo', 2008, 'M', 205), +(198588, 'Jaylan', 2008, 'M', 205), +(198589, 'Sammy', 2008, 'M', 205), +(198590, 'Turner', 2008, 'M', 205), +(198591, 'Reagan', 2008, 'M', 204), +(198592, 'Arnav', 2008, 'M', 203), +(198593, 'Brenton', 2008, 'M', 203), +(198594, 'Jayvion', 2008, 'M', 203), +(198595, 'Landin', 2008, 'M', 203), +(198596, 'Pierre', 2008, 'M', 203), +(198597, 'Deegan', 2008, 'M', 201), +(198598, 'Odin', 2008, 'M', 201), +(198599, 'Cortez', 2008, 'M', 200), +(198600, 'Jerimiah', 2008, 'M', 200), +(198601, 'Abdiel', 2008, 'M', 199), +(198602, 'Cornelius', 2008, 'M', 199), +(198603, 'Lennon', 2008, 'M', 199), +(198604, 'Bronson', 2008, 'M', 198), +(198605, 'Izayah', 2008, 'M', 197), +(198606, 'Maximillian', 2008, 'M', 197), +(198607, 'Baron', 2008, 'M', 196), +(198608, 'Carsen', 2008, 'M', 196), +(198609, 'Damari', 2008, 'M', 196), +(198610, 'Fletcher', 2008, 'M', 196), +(198611, 'Jensen', 2008, 'M', 196), +(198612, 'Kolten', 2008, 'M', 196), +(198613, 'Yurem', 2008, 'M', 196), +(198614, 'Carlo', 2008, 'M', 195), +(198615, 'Guadalupe', 2008, 'M', 194), +(198616, 'Hugh', 2008, 'M', 194), +(198617, 'Nestor', 2008, 'M', 194), +(198618, 'Rayden', 2008, 'M', 194), +(198619, 'Rocky', 2008, 'M', 194), +(198620, 'Stefan', 2008, 'M', 193), +(198621, 'Remy', 2008, 'M', 192), +(198622, 'Daxton', 2008, 'M', 191), +(198623, 'Ulysses', 2008, 'M', 191), +(198624, 'Marcello', 2008, 'M', 190), +(198625, 'Stone', 2008, 'M', 190), +(198626, 'Cain', 2008, 'M', 189), +(198627, 'Domenic', 2008, 'M', 189), +(198628, 'Isaak', 2008, 'M', 189), +(198629, 'Jaedyn', 2008, 'M', 189), +(198630, 'Treyton', 2008, 'M', 189), +(198631, 'Jacobi', 2008, 'M', 188), +(198632, 'Karl', 2008, 'M', 188), +(198633, 'Maxx', 2008, 'M', 188), +(198634, 'Norman', 2008, 'M', 188), +(198635, 'Theo', 2008, 'M', 188), +(198636, 'Vincenzo', 2008, 'M', 188), +(198637, 'Dimitri', 2008, 'M', 187), +(198638, 'Estevan', 2008, 'M', 187), +(198639, 'Garrison', 2008, 'M', 187), +(198640, 'Juelz', 2008, 'M', 187), +(198641, 'Treyvon', 2008, 'M', 186), +(198642, 'Langston', 2008, 'M', 185), +(198643, 'Blaise', 2008, 'M', 184), +(198644, 'Dallin', 2008, 'M', 184), +(198645, 'Deion', 2008, 'M', 184), +(198646, 'Elvin', 2008, 'M', 184), +(198647, 'Gannon', 2008, 'M', 184), +(198648, 'Jakub', 2008, 'M', 184), +(198649, 'Westin', 2008, 'M', 184), +(198650, 'Zakary', 2008, 'M', 184), +(198651, 'Archer', 2008, 'M', 183), +(198652, 'Coen', 2008, 'M', 183), +(198653, 'Javian', 2008, 'M', 183), +(198654, 'Edison', 2008, 'M', 182), +(198655, 'Jamel', 2008, 'M', 182), +(198656, 'Kayson', 2008, 'M', 182), +(198657, 'Alexandro', 2008, 'M', 181), +(198658, 'Amarion', 2008, 'M', 181), +(198659, 'Anson', 2008, 'M', 181), +(198660, 'Hank', 2008, 'M', 181), +(198661, 'Kalel', 2008, 'M', 181), +(198662, 'Maddux', 2008, 'M', 181), +(198663, 'Mikel', 2008, 'M', 181), +(198664, 'Miller', 2008, 'M', 181), +(198665, 'Omarion', 2008, 'M', 181), +(198666, 'Haven', 2008, 'M', 180), +(198667, 'Javen', 2008, 'M', 180), +(198668, 'Jordy', 2008, 'M', 180), +(198669, 'Koby', 2008, 'M', 180), +(198670, 'Elmer', 2008, 'M', 179), +(198671, 'Ephraim', 2008, 'M', 179), +(198672, 'Landan', 2008, 'M', 179), +(198673, 'Ronaldo', 2008, 'M', 179), +(198674, 'Braedyn', 2008, 'M', 178), +(198675, 'Yehuda', 2008, 'M', 178), +(198676, 'Eliseo', 2008, 'M', 177), +(198677, 'Yousef', 2008, 'M', 177), +(198678, 'Amos', 2008, 'M', 176), +(198679, 'Devonte', 2008, 'M', 176), +(198680, 'Keven', 2008, 'M', 176), +(198681, 'Zavion', 2008, 'M', 176), +(198682, 'Adin', 2008, 'M', 175), +(198683, 'Casen', 2008, 'M', 175), +(198684, 'Daylen', 2008, 'M', 175), +(198685, 'Ever', 2008, 'M', 175), +(198686, 'Truman', 2008, 'M', 175), +(198687, 'Gino', 2008, 'M', 174), +(198688, 'Joziah', 2008, 'M', 174), +(198689, 'Kohen', 2008, 'M', 174), +(198690, 'Sebastien', 2008, 'M', 174), +(198691, 'Anders', 2008, 'M', 173), +(198692, 'Deshaun', 2008, 'M', 173), +(198693, 'Haden', 2008, 'M', 173), +(198694, 'Joan', 2008, 'M', 173), +(198695, 'Jordin', 2008, 'M', 173), +(198696, 'Santana', 2008, 'M', 173), +(198697, 'Carmine', 2008, 'M', 172), +(198698, 'Jarvis', 2008, 'M', 172), +(198699, 'Kyree', 2008, 'M', 172), +(198700, 'Benson', 2008, 'M', 171), +(198701, 'Darrius', 2008, 'M', 171), +(198702, 'Kamryn', 2008, 'M', 171), +(198703, 'Sylas', 2008, 'M', 171), +(198704, 'Austen', 2008, 'M', 170), +(198705, 'Bernardo', 2008, 'M', 170), +(198706, 'Bishop', 2008, 'M', 170), +(198707, 'Earl', 2008, 'M', 170), +(198708, 'Korey', 2008, 'M', 170), +(198709, 'Eddy', 2008, 'M', 169), +(198710, 'Menachem', 2008, 'M', 169), +(198711, 'Denver', 2008, 'M', 168), +(198712, 'Jaren', 2008, 'M', 168), +(198713, 'Armaan', 2008, 'M', 167), +(198714, 'Gonzalo', 2008, 'M', 167), +(198715, 'Jericho', 2008, 'M', 167), +(198716, 'Taj', 2008, 'M', 167), +(198717, 'Brad', 2008, 'M', 166), +(198718, 'Dhruv', 2008, 'M', 166), +(198719, 'Dion', 2008, 'M', 166), +(198720, 'Kennedy', 2008, 'M', 166), +(198721, 'Mariano', 2008, 'M', 166), +(198722, 'Yisroel', 2008, 'M', 166), +(198723, 'Campbell', 2008, 'M', 165), +(198724, 'Fredrick', 2008, 'M', 165), +(198725, 'Perry', 2008, 'M', 165), +(198726, 'Brennon', 2008, 'M', 164), +(198727, 'Cayson', 2008, 'M', 164), +(198728, 'Drayden', 2008, 'M', 164), +(198729, 'Garret', 2008, 'M', 164), +(198730, 'Jedidiah', 2008, 'M', 164), +(198731, 'Keanu', 2008, 'M', 164), +(198732, 'Clifford', 2008, 'M', 163), +(198733, 'Corde', 2008, 'M', 163), +(198734, 'Guy', 2008, 'M', 163), +(198735, 'Legend', 2008, 'M', 163), +(198736, 'Mack', 2008, 'M', 163), +(198737, 'Milan', 2008, 'M', 163), +(198738, 'Alton', 2008, 'M', 162), +(198739, 'Dandre', 2008, 'M', 162), +(198740, 'Daryl', 2008, 'M', 162), +(198741, 'Jamil', 2008, 'M', 162), +(198742, 'Shiloh', 2008, 'M', 162), +(198743, 'Dilan', 2008, 'M', 161), +(198744, 'Jesiah', 2008, 'M', 161), +(198745, 'Lionel', 2008, 'M', 161), +(198746, 'Lloyd', 2008, 'M', 161), +(198747, 'Magnus', 2008, 'M', 161), +(198748, 'Marquez', 2008, 'M', 161), +(198749, 'Stephan', 2008, 'M', 161), +(198750, 'Cristobal', 2008, 'M', 160), +(198751, 'Eamon', 2008, 'M', 160), +(198752, 'Kellan', 2008, 'M', 160), +(198753, 'Destin', 2008, 'M', 159), +(198754, 'Gibson', 2008, 'M', 159), +(198755, 'Leighton', 2008, 'M', 159), +(198756, 'Miguelangel', 2008, 'M', 159), +(198757, 'Vladimir', 2008, 'M', 159), +(198758, 'Austyn', 2008, 'M', 158), +(198759, 'Duane', 2008, 'M', 158), +(198760, 'Enoch', 2008, 'M', 158), +(198761, 'Fredy', 2008, 'M', 158), +(198762, 'Irving', 2008, 'M', 158), +(198763, 'Jaycob', 2008, 'M', 158), +(198764, 'Markell', 2008, 'M', 158), +(198765, 'Tegan', 2008, 'M', 158), +(198766, 'Camilo', 2008, 'M', 157), +(198767, 'Dereck', 2008, 'M', 157), +(198768, 'Dewayne', 2008, 'M', 157), +(198769, 'Jaheim', 2008, 'M', 157), +(198770, 'Johann', 2008, 'M', 157), +(198771, 'Josef', 2008, 'M', 157), +(198772, 'Mayson', 2008, 'M', 157), +(198773, 'Barry', 2008, 'M', 156), +(198774, 'Kamarion', 2008, 'M', 156), +(198775, 'Ryley', 2008, 'M', 156), +(198776, 'Siddharth', 2008, 'M', 156), +(198777, 'Syed', 2008, 'M', 156), +(198778, 'Vince', 2008, 'M', 156), +(198779, 'Benny', 2008, 'M', 155), +(198780, 'Sami', 2008, 'M', 155), +(198781, 'Ajay', 2008, 'M', 154), +(198782, 'Kalvin', 2008, 'M', 154), +(198783, 'Augustine', 2008, 'M', 153), +(198784, 'Cian', 2008, 'M', 153), +(198785, 'Ely', 2008, 'M', 153), +(198786, 'Jaxton', 2008, 'M', 153), +(198787, 'Om', 2008, 'M', 153), +(198788, 'Ameer', 2008, 'M', 152), +(198789, 'Briar', 2008, 'M', 152), +(198790, 'Keller', 2008, 'M', 152), +(198791, 'Ramses', 2008, 'M', 152), +(198792, 'Shayne', 2008, 'M', 152), +(198793, 'Torin', 2008, 'M', 152), +(198794, 'Alexandre', 2008, 'M', 151), +(198795, 'Gian', 2008, 'M', 151), +(198796, 'Daquan', 2008, 'M', 150), +(198797, 'Nery', 2008, 'M', 150), +(198798, 'Canaan', 2008, 'M', 149), +(198799, 'Coleton', 2008, 'M', 149), +(198800, 'Lonnie', 2008, 'M', 149), +(198801, 'Rico', 2008, 'M', 149), +(198802, 'Shannon', 2008, 'M', 149), +(198803, 'Trenten', 2008, 'M', 149), +(198804, 'Johnpaul', 2008, 'M', 148), +(198805, 'Jonatan', 2008, 'M', 148), +(198806, 'Kannon', 2008, 'M', 148), +(198807, 'Kooper', 2008, 'M', 148), +(198808, 'Abner', 2008, 'M', 147), +(198809, 'Antwon', 2008, 'M', 147), +(198810, 'Corban', 2008, 'M', 147), +(198811, 'Courtney', 2008, 'M', 147), +(198812, 'Jakari', 2008, 'M', 147), +(198813, 'Markel', 2008, 'M', 147), +(198814, 'Stephon', 2008, 'M', 147), +(198815, 'Tayden', 2008, 'M', 147), +(198816, 'Travon', 2008, 'M', 147), +(198817, 'Benito', 2008, 'M', 146), +(198818, 'Grayden', 2008, 'M', 146), +(198819, 'Mordechai', 2008, 'M', 146), +(198820, 'Mustafa', 2008, 'M', 146), +(198821, 'Taven', 2008, 'M', 146), +(198822, 'Tavion', 2008, 'M', 146), +(198823, 'Boden', 2008, 'M', 145), +(198824, 'Deonte', 2008, 'M', 145), +(198825, 'Gerson', 2008, 'M', 145), +(198826, 'Izaac', 2008, 'M', 145), +(198827, 'Keyshawn', 2008, 'M', 145), +(198828, 'Lachlan', 2008, 'M', 145), +(198829, 'Lucien', 2008, 'M', 145), +(198830, 'Merrick', 2008, 'M', 145), +(198831, 'Sabastian', 2008, 'M', 145), +(198832, 'Sutton', 2008, 'M', 145), +(198833, 'Dontae', 2008, 'M', 144), +(198834, 'Hayes', 2008, 'M', 144), +(198835, 'Kenji', 2008, 'M', 144), +(198836, 'Landry', 2008, 'M', 144), +(198837, 'Clyde', 2008, 'M', 143), +(198838, 'Dariel', 2008, 'M', 143), +(198839, 'Zyon', 2008, 'M', 143), +(198840, 'Dwight', 2008, 'M', 142), +(198841, 'Efren', 2008, 'M', 142), +(198842, 'Eliot', 2008, 'M', 142), +(198843, 'Harvey', 2008, 'M', 142), +(198844, 'Jeff', 2008, 'M', 142), +(198845, 'Lucca', 2008, 'M', 142), +(198846, 'Aarush', 2008, 'M', 141), +(198847, 'Fidel', 2008, 'M', 141), +(198848, 'Freddie', 2008, 'M', 141), +(198849, 'Jeshua', 2008, 'M', 141), +(198850, 'Mikah', 2008, 'M', 141), +(198851, 'Baylor', 2008, 'M', 140), +(198852, 'Broden', 2008, 'M', 140), +(198853, 'Colter', 2008, 'M', 140), +(198854, 'Dayne', 2008, 'M', 140), +(198855, 'Jai', 2008, 'M', 140), +(198856, 'Leif', 2008, 'M', 140), +(198857, 'Marion', 2008, 'M', 140), +(198858, 'Rashawn', 2008, 'M', 140), +(198859, 'Rian', 2008, 'M', 140), +(198860, 'Rowdy', 2008, 'M', 140), +(198861, 'Shmuel', 2008, 'M', 140), +(198862, 'Alexavier', 2008, 'M', 139), +(198863, 'Avi', 2008, 'M', 139), +(198864, 'Bilal', 2008, 'M', 139), +(198865, 'Harris', 2008, 'M', 139), +(198866, 'Iker', 2008, 'M', 139), +(198867, 'Johnnie', 2008, 'M', 139), +(198868, 'Kent', 2008, 'M', 139), +(198869, 'Kurt', 2008, 'M', 139), +(198870, 'Raheem', 2008, 'M', 139), +(198871, 'Trae', 2008, 'M', 139), +(198872, 'Trevion', 2008, 'M', 139), +(198873, 'Tyce', 2008, 'M', 139), +(198874, 'Aleksander', 2008, 'M', 138), +(198875, 'Amani', 2008, 'M', 138), +(198876, 'Bodhi', 2008, 'M', 138), +(198877, 'Bodie', 2008, 'M', 138), +(198878, 'Eliel', 2008, 'M', 138), +(198879, 'Lathan', 2008, 'M', 138), +(198880, 'Lester', 2008, 'M', 138), +(198881, 'Tobin', 2008, 'M', 138), +(198882, 'Alek', 2008, 'M', 137), +(198883, 'Caeden', 2008, 'M', 137), +(198884, 'Daveon', 2008, 'M', 137), +(198885, 'Heriberto', 2008, 'M', 137), +(198886, 'Lazaro', 2008, 'M', 137), +(198887, 'Nate', 2008, 'M', 137), +(198888, 'Finnian', 2008, 'M', 136), +(198889, 'Jaleel', 2008, 'M', 136), +(198890, 'Judson', 2008, 'M', 136), +(198891, 'Kenton', 2008, 'M', 136), +(198892, 'Otto', 2008, 'M', 136), +(198893, 'Talen', 2008, 'M', 136), +(198894, 'Amar', 2008, 'M', 135), +(198895, 'Aubrey', 2008, 'M', 135), +(198896, 'Beck', 2008, 'M', 135), +(198897, 'Chevy', 2008, 'M', 135), +(198898, 'Darin', 2008, 'M', 135), +(198899, 'Gianluca', 2008, 'M', 135), +(198900, 'Khalid', 2008, 'M', 135), +(198901, 'Kristofer', 2008, 'M', 135), +(198902, 'Maxton', 2008, 'M', 135), +(198903, 'Tye', 2008, 'M', 135), +(198904, 'Vernon', 2008, 'M', 135), +(198905, 'Braulio', 2008, 'M', 134), +(198906, 'Dan', 2008, 'M', 134), +(198907, 'Darrion', 2008, 'M', 134), +(198908, 'Emil', 2008, 'M', 134), +(198909, 'Ervin', 2008, 'M', 134), +(198910, 'Jaidon', 2008, 'M', 134), +(198911, 'Jeremias', 2008, 'M', 134), +(198912, 'Luc', 2008, 'M', 134), +(198913, 'Maksim', 2008, 'M', 134), +(198914, 'Presley', 2008, 'M', 134), +(198915, 'Rylen', 2008, 'M', 134), +(198916, 'Abhinav', 2008, 'M', 133), +(198917, 'Camdyn', 2008, 'M', 133), +(198918, 'Don', 2008, 'M', 133), +(198919, 'Emory', 2008, 'M', 133), +(198920, 'Fred', 2008, 'M', 133), +(198921, 'Hagen', 2008, 'M', 133), +(198922, 'Isidro', 2008, 'M', 133), +(198923, 'Latrell', 2008, 'M', 133), +(198924, 'Myron', 2008, 'M', 133), +(198925, 'Osmar', 2008, 'M', 133), +(198926, 'Rowen', 2008, 'M', 133), +(198927, 'Shea', 2008, 'M', 133), +(198928, 'Shimon', 2008, 'M', 133), +(198929, 'Tatum', 2008, 'M', 133), +(198930, 'Xavion', 2008, 'M', 133), +(198931, 'Blayne', 2008, 'M', 132), +(198932, 'Demario', 2008, 'M', 132), +(198933, 'Denis', 2008, 'M', 132), +(198934, 'Karsen', 2008, 'M', 132), +(198935, 'Mikael', 2008, 'M', 132), +(198936, 'Zyaire', 2008, 'M', 132), +(198937, 'Clifton', 2008, 'M', 131), +(198938, 'Colson', 2008, 'M', 131), +(198939, 'Karim', 2008, 'M', 131), +(198940, 'Zaden', 2008, 'M', 131), +(198941, 'Dameon', 2008, 'M', 130), +(198942, 'Jaxen', 2008, 'M', 130), +(198943, 'Rickey', 2008, 'M', 130), +(198944, 'Terence', 2008, 'M', 130), +(198945, 'Arian', 2008, 'M', 129), +(198946, 'Bowen', 2008, 'M', 129), +(198947, 'Brandt', 2008, 'M', 129), +(198948, 'Channing', 2008, 'M', 129), +(198949, 'Donnie', 2008, 'M', 129), +(198950, 'Dyllan', 2008, 'M', 129), +(198951, 'Genaro', 2008, 'M', 129), +(198952, 'Jashawn', 2008, 'M', 129), +(198953, 'Marek', 2008, 'M', 129), +(198954, 'Tylan', 2008, 'M', 129), +(198955, 'Yash', 2008, 'M', 129), +(198956, 'Achilles', 2008, 'M', 128), +(198957, 'Carlton', 2008, 'M', 128), +(198958, 'Forrest', 2008, 'M', 128), +(198959, 'Kevon', 2008, 'M', 128), +(198960, 'Tristyn', 2008, 'M', 128), +(198961, 'Arman', 2008, 'M', 127), +(198962, 'Arnold', 2008, 'M', 127), +(198963, 'Brighton', 2008, 'M', 127), +(198964, 'Francesco', 2008, 'M', 127), +(198965, 'Jael', 2008, 'M', 127), +(198966, 'Lucius', 2008, 'M', 127), +(198967, 'Nazir', 2008, 'M', 127), +(198968, 'Abdul', 2008, 'M', 126), +(198969, 'Braylin', 2008, 'M', 126), +(198970, 'Gerard', 2008, 'M', 126), +(198971, 'Jaedon', 2008, 'M', 126), +(198972, 'Javien', 2008, 'M', 126), +(198973, 'Kayleb', 2008, 'M', 126), +(198974, 'Osiel', 2008, 'M', 126), +(198975, 'Britton', 2008, 'M', 125), +(198976, 'Coy', 2008, 'M', 125), +(198977, 'Crew', 2008, 'M', 125), +(198978, 'Donnell', 2008, 'M', 125), +(198979, 'Eder', 2008, 'M', 125), +(198980, 'Harlan', 2008, 'M', 125), +(198981, 'Jarell', 2008, 'M', 125), +(198982, 'Jermiah', 2008, 'M', 125), +(198983, 'Kylen', 2008, 'M', 125), +(198984, 'Rayyan', 2008, 'M', 125), +(198985, 'Zeke', 2008, 'M', 125), +(198986, 'Dakoda', 2008, 'M', 124), +(198987, 'Darrin', 2008, 'M', 124), +(198988, 'Daylan', 2008, 'M', 124), +(198989, 'Ewan', 2008, 'M', 124), +(198990, 'Gus', 2008, 'M', 124), +(198991, 'Kaidyn', 2008, 'M', 124), +(198992, 'Massimo', 2008, 'M', 124), +(198993, 'Bret', 2008, 'M', 123), +(198994, 'Emir', 2008, 'M', 123), +(198995, 'Hernan', 2008, 'M', 123), +(198996, 'Isac', 2008, 'M', 123), +(198997, 'Kalen', 2008, 'M', 123), +(198998, 'Mikhail', 2008, 'M', 123), +(198999, 'Yaakov', 2008, 'M', 123), +(199000, 'Anish', 2008, 'M', 122), +(199001, 'Cecil', 2008, 'M', 122), +(199002, 'Coltin', 2008, 'M', 122), +(199003, 'Donavin', 2008, 'M', 122), +(199004, 'Juancarlos', 2008, 'M', 122), +(199005, 'Justyn', 2008, 'M', 122), +(199006, 'Kentrell', 2008, 'M', 122), +(199007, 'Kye', 2008, 'M', 122), +(199008, 'Nevin', 2008, 'M', 122), +(199009, 'Brecken', 2008, 'M', 121), +(199010, 'Caelan', 2008, 'M', 121), +(199011, 'Christofer', 2008, 'M', 121), +(199012, 'Eleazar', 2008, 'M', 121), +(199013, 'Ishan', 2008, 'M', 121), +(199014, 'Jahir', 2008, 'M', 121), +(199015, 'Jet', 2008, 'M', 121), +(199016, 'Kahlil', 2008, 'M', 121), +(199017, 'Kegan', 2008, 'M', 121), +(199018, 'Stetson', 2008, 'M', 121), +(199019, 'Bryton', 2008, 'M', 120), +(199020, 'Cristiano', 2008, 'M', 120), +(199021, 'Kenan', 2008, 'M', 120), +(199022, 'Mykel', 2008, 'M', 120), +(199023, 'Otis', 2008, 'M', 120), +(199024, 'Wilmer', 2008, 'M', 120), +(199025, 'Canyon', 2008, 'M', 119), +(199026, 'Daron', 2008, 'M', 119), +(199027, 'Hasan', 2008, 'M', 119), +(199028, 'Izaak', 2008, 'M', 119), +(199029, 'Jariel', 2008, 'M', 119), +(199030, 'Kayne', 2008, 'M', 119), +(199031, 'Kiran', 2008, 'M', 119), +(199032, 'Kollin', 2008, 'M', 119), +(199033, 'Nixon', 2008, 'M', 119), +(199034, 'Uziel', 2008, 'M', 119), +(199035, 'Zephaniah', 2008, 'M', 119), +(199036, 'Edmund', 2008, 'M', 118), +(199037, 'Kory', 2008, 'M', 118), +(199038, 'Maddix', 2008, 'M', 118), +(199039, 'Robin', 2008, 'M', 118), +(199040, 'Sahil', 2008, 'M', 118), +(199041, 'Desean', 2008, 'M', 117), +(199042, 'Nikita', 2008, 'M', 117), +(199043, 'Phineas', 2008, 'M', 117), +(199044, 'Raymundo', 2008, 'M', 117), +(199045, 'Tariq', 2008, 'M', 117), +(199046, 'Tylor', 2008, 'M', 117), +(199047, 'Youssef', 2008, 'M', 117), +(199048, 'Zev', 2008, 'M', 117), +(199049, 'Demarco', 2008, 'M', 116), +(199050, 'Geoffrey', 2008, 'M', 116), +(199051, 'Isreal', 2008, 'M', 116), +(199052, 'Jullian', 2008, 'M', 116), +(199053, 'Tayshaun', 2008, 'M', 116), +(199054, 'Zahir', 2008, 'M', 116), +(199055, 'Carsten', 2008, 'M', 115), +(199056, 'Damarcus', 2008, 'M', 115), +(199057, 'Keelan', 2008, 'M', 115), +(199058, 'Keshaun', 2008, 'M', 115), +(199059, 'Arya', 2008, 'M', 114), +(199060, 'Atreyu', 2008, 'M', 114), +(199061, 'Bradly', 2008, 'M', 114), +(199062, 'Glen', 2008, 'M', 114), +(199063, 'Kaine', 2008, 'M', 114), +(199064, 'Karon', 2008, 'M', 114), +(199065, 'Marko', 2008, 'M', 114), +(199066, 'Cormac', 2008, 'M', 113), +(199067, 'Davonte', 2008, 'M', 113), +(199068, 'Everardo', 2008, 'M', 113), +(199069, 'Grey', 2008, 'M', 113), +(199070, 'Hyrum', 2008, 'M', 113), +(199071, 'Kain', 2008, 'M', 113), +(199072, 'Kelly', 2008, 'M', 113), +(199073, 'Linus', 2008, 'M', 113), +(199074, 'Ramsey', 2008, 'M', 113), +(199075, 'Stuart', 2008, 'M', 113), +(199076, 'Tzvi', 2008, 'M', 113), +(199077, 'Andrei', 2008, 'M', 112), +(199078, 'Ayush', 2008, 'M', 112), +(199079, 'Brodey', 2008, 'M', 112), +(199080, 'Jahmir', 2008, 'M', 112), +(199081, 'Jakobi', 2008, 'M', 112), +(199082, 'Javeon', 2008, 'M', 112), +(199083, 'Jimmie', 2008, 'M', 112), +(199084, 'Seven', 2008, 'M', 112), +(199085, 'Thatcher', 2008, 'M', 112), +(199086, 'Thiago', 2008, 'M', 112), +(199087, 'Travion', 2008, 'M', 112), +(199088, 'Chauncey', 2008, 'M', 111), +(199089, 'Dylon', 2008, 'M', 111), +(199090, 'Emmitt', 2008, 'M', 111), +(199091, 'Gabe', 2008, 'M', 111), +(199092, 'Geovanny', 2008, 'M', 111), +(199093, 'Benton', 2008, 'M', 110), +(199094, 'Herbert', 2008, 'M', 110), +(199095, 'Javonte', 2008, 'M', 110), +(199096, 'Kurtis', 2008, 'M', 110), +(199097, 'Mauro', 2008, 'M', 110), +(199098, 'Neal', 2008, 'M', 110), +(199099, 'Obed', 2008, 'M', 110), +(199100, 'Rick', 2008, 'M', 110), +(199101, 'Roan', 2008, 'M', 110), +(199102, 'Royal', 2008, 'M', 110), +(199103, 'Shlomo', 2008, 'M', 110), +(199104, 'Adyn', 2008, 'M', 109), +(199105, 'Azael', 2008, 'M', 109), +(199106, 'Canon', 2008, 'M', 109), +(199107, 'Dashiell', 2008, 'M', 109), +(199108, 'Jayshawn', 2008, 'M', 109), +(199109, 'Joseluis', 2008, 'M', 109), +(199110, 'Keandre', 2008, 'M', 109), +(199111, 'Mehki', 2008, 'M', 109), +(199112, 'Morris', 2008, 'M', 109), +(199113, 'Ocean', 2008, 'M', 109), +(199114, 'Tre', 2008, 'M', 109), +(199115, 'Viktor', 2008, 'M', 109), +(199116, 'Azariah', 2008, 'M', 108), +(199117, 'Claudio', 2008, 'M', 108), +(199118, 'Devlin', 2008, 'M', 108), +(199119, 'Evin', 2008, 'M', 108), +(199120, 'Hans', 2008, 'M', 108), +(199121, 'Karsten', 2008, 'M', 108), +(199122, 'Keion', 2008, 'M', 108), +(199123, 'Ken', 2008, 'M', 108), +(199124, 'Kyran', 2008, 'M', 108), +(199125, 'Meir', 2008, 'M', 108), +(199126, 'Neel', 2008, 'M', 108), +(199127, 'Yitzchok', 2008, 'M', 108), +(199128, 'Aric', 2008, 'M', 107), +(199129, 'Deanthony', 2008, 'M', 107), +(199130, 'Dev', 2008, 'M', 107), +(199131, 'Kendell', 2008, 'M', 107), +(199132, 'Leyton', 2008, 'M', 107), +(199133, 'Lucio', 2008, 'M', 107), +(199134, 'Tevin', 2008, 'M', 107), +(199135, 'Bayron', 2008, 'M', 106), +(199136, 'Brant', 2008, 'M', 106), +(199137, 'Briggs', 2008, 'M', 106), +(199138, 'Faris', 2008, 'M', 106), +(199139, 'Floyd', 2008, 'M', 106), +(199140, 'Javin', 2008, 'M', 106), +(199141, 'Laith', 2008, 'M', 106), +(199142, 'Yariel', 2008, 'M', 106), +(199143, 'Bode', 2008, 'M', 105), +(199144, 'Constantine', 2008, 'M', 105), +(199145, 'Dashaun', 2008, 'M', 105), +(199146, 'Daylon', 2008, 'M', 105), +(199147, 'Federico', 2008, 'M', 105), +(199148, 'Izak', 2008, 'M', 105), +(199149, 'Jackie', 2008, 'M', 105), +(199150, 'Jacques', 2008, 'M', 105), +(199151, 'Marcellus', 2008, 'M', 105), +(199152, 'Princeton', 2008, 'M', 105), +(199153, 'Ryne', 2008, 'M', 105), +(199154, 'Westley', 2008, 'M', 105), +(199155, 'Adriano', 2008, 'M', 104), +(199156, 'Brando', 2008, 'M', 104), +(199157, 'Chayse', 2008, 'M', 104), +(199158, 'Cy', 2008, 'M', 104), +(199159, 'Deron', 2008, 'M', 104), +(199160, 'Donavon', 2008, 'M', 104), +(199161, 'Duke', 2008, 'M', 104), +(199162, 'Lennox', 2008, 'M', 104), +(199163, 'Pierson', 2008, 'M', 104), +(199164, 'Tayshawn', 2008, 'M', 104), +(199165, 'Benicio', 2008, 'M', 103), +(199166, 'Chayce', 2008, 'M', 103), +(199167, 'Darrien', 2008, 'M', 103), +(199168, 'Derion', 2008, 'M', 103), +(199169, 'Jakoby', 2008, 'M', 103), +(199170, 'Kamdyn', 2008, 'M', 103), +(199171, 'Khamari', 2008, 'M', 103), +(199172, 'Quinlan', 2008, 'M', 103), +(199173, 'Teegan', 2008, 'M', 103), +(199174, 'Thor', 2008, 'M', 103), +(199175, 'Yamil', 2008, 'M', 103), +(199176, 'Yaseen', 2008, 'M', 103), +(199177, 'Aeden', 2008, 'M', 102), +(199178, 'Ammon', 2008, 'M', 102), +(199179, 'Corbyn', 2008, 'M', 102), +(199180, 'Deondre', 2008, 'M', 102), +(199181, 'Kavon', 2008, 'M', 102), +(199182, 'Lenny', 2008, 'M', 102), +(199183, 'Yovani', 2008, 'M', 102), +(199184, 'Anakin', 2008, 'M', 101), +(199185, 'Benedict', 2008, 'M', 101), +(199186, 'Brooklyn', 2008, 'M', 101), +(199187, 'Korbyn', 2008, 'M', 101), +(199188, 'Lars', 2008, 'M', 101), +(199189, 'Trever', 2008, 'M', 101), +(199190, 'Varun', 2008, 'M', 101); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(199191, 'Arlo', 2008, 'M', 100), +(199192, 'Clint', 2008, 'M', 100), +(199193, 'Domingo', 2008, 'M', 100), +(199194, 'Herman', 2008, 'M', 100), +(199195, 'Ilan', 2008, 'M', 100), +(199196, 'Ishmael', 2008, 'M', 100), +(199197, 'Jacari', 2008, 'M', 100), +(199198, 'Jacorey', 2008, 'M', 100), +(199199, 'Louie', 2008, 'M', 100), +(199200, 'Oren', 2008, 'M', 100), +(199201, 'Osbaldo', 2008, 'M', 100), +(199202, 'Osman', 2008, 'M', 100), +(199203, 'Shaan', 2008, 'M', 100), +(199204, 'Zamir', 2008, 'M', 100), +(199205, 'Isabella', 2009, 'F', 22278), +(199206, 'Emma', 2009, 'F', 17881), +(199207, 'Olivia', 2009, 'F', 17420), +(199208, 'Sophia', 2009, 'F', 16925), +(199209, 'Ava', 2009, 'F', 15861), +(199210, 'Emily', 2009, 'F', 15336), +(199211, 'Madison', 2009, 'F', 15218), +(199212, 'Abigail', 2009, 'F', 14376), +(199213, 'Chloe', 2009, 'F', 11894), +(199214, 'Mia', 2009, 'F', 11410), +(199215, 'Elizabeth', 2009, 'F', 11020), +(199216, 'Addison', 2009, 'F', 10654), +(199217, 'Alexis', 2009, 'F', 9922), +(199218, 'Samantha', 2009, 'F', 9654), +(199219, 'Ella', 2009, 'F', 9643), +(199220, 'Natalie', 2009, 'F', 9403), +(199221, 'Grace', 2009, 'F', 8306), +(199222, 'Lily', 2009, 'F', 8092), +(199223, 'Alyssa', 2009, 'F', 7950), +(199224, 'Ashley', 2009, 'F', 7809), +(199225, 'Sarah', 2009, 'F', 7763), +(199226, 'Taylor', 2009, 'F', 7578), +(199227, 'Hannah', 2009, 'F', 7563), +(199228, 'Brianna', 2009, 'F', 7345), +(199229, 'Hailey', 2009, 'F', 7308), +(199230, 'Kaylee', 2009, 'F', 7207), +(199231, 'Lillian', 2009, 'F', 6846), +(199232, 'Anna', 2009, 'F', 6792), +(199233, 'Leah', 2009, 'F', 6779), +(199234, 'Allison', 2009, 'F', 6579), +(199235, 'Victoria', 2009, 'F', 6350), +(199236, 'Avery', 2009, 'F', 6294), +(199237, 'Gabriella', 2009, 'F', 6135), +(199238, 'Nevaeh', 2009, 'F', 6094), +(199239, 'Kayla', 2009, 'F', 5830), +(199240, 'Sofia', 2009, 'F', 5688), +(199241, 'Brooklyn', 2009, 'F', 5658), +(199242, 'Riley', 2009, 'F', 5631), +(199243, 'Savannah', 2009, 'F', 5580), +(199244, 'Evelyn', 2009, 'F', 5577), +(199245, 'Aubrey', 2009, 'F', 5403), +(199246, 'Peyton', 2009, 'F', 5310), +(199247, 'Alexa', 2009, 'F', 5304), +(199248, 'Makayla', 2009, 'F', 5257), +(199249, 'Lauren', 2009, 'F', 5198), +(199250, 'Layla', 2009, 'F', 5198), +(199251, 'Zoe', 2009, 'F', 5141), +(199252, 'Sydney', 2009, 'F', 5054), +(199253, 'Audrey', 2009, 'F', 5006), +(199254, 'Julia', 2009, 'F', 4987), +(199255, 'Jasmine', 2009, 'F', 4873), +(199256, 'Arianna', 2009, 'F', 4833), +(199257, 'Claire', 2009, 'F', 4824), +(199258, 'Brooke', 2009, 'F', 4792), +(199259, 'Amelia', 2009, 'F', 4690), +(199260, 'Morgan', 2009, 'F', 4610), +(199261, 'Destiny', 2009, 'F', 4599), +(199262, 'Bella', 2009, 'F', 4530), +(199263, 'Madelyn', 2009, 'F', 4495), +(199264, 'Katherine', 2009, 'F', 4426), +(199265, 'Maya', 2009, 'F', 4389), +(199266, 'Kylie', 2009, 'F', 4382), +(199267, 'Aaliyah', 2009, 'F', 4365), +(199268, 'Madeline', 2009, 'F', 4299), +(199269, 'Sophie', 2009, 'F', 4262), +(199270, 'Kimberly', 2009, 'F', 4220), +(199271, 'Kaitlyn', 2009, 'F', 4200), +(199272, 'Charlotte', 2009, 'F', 4182), +(199273, 'Alexandra', 2009, 'F', 4158), +(199274, 'Maria', 2009, 'F', 4130), +(199275, 'Jocelyn', 2009, 'F', 4108), +(199276, 'Valeria', 2009, 'F', 4087), +(199277, 'Andrea', 2009, 'F', 4057), +(199278, 'Trinity', 2009, 'F', 4013), +(199279, 'Zoey', 2009, 'F', 3990), +(199280, 'Gianna', 2009, 'F', 3932), +(199281, 'Mackenzie', 2009, 'F', 3895), +(199282, 'Jessica', 2009, 'F', 3791), +(199283, 'Faith', 2009, 'F', 3755), +(199284, 'Camila', 2009, 'F', 3733), +(199285, 'Autumn', 2009, 'F', 3707), +(199286, 'Ariana', 2009, 'F', 3686), +(199287, 'Genesis', 2009, 'F', 3667), +(199288, 'Payton', 2009, 'F', 3643), +(199289, 'Bailey', 2009, 'F', 3636), +(199290, 'Angelina', 2009, 'F', 3631), +(199291, 'Caroline', 2009, 'F', 3621), +(199292, 'Mariah', 2009, 'F', 3590), +(199293, 'Rachel', 2009, 'F', 3577), +(199294, 'Katelyn', 2009, 'F', 3565), +(199295, 'Vanessa', 2009, 'F', 3517), +(199296, 'Molly', 2009, 'F', 3504), +(199297, 'Melanie', 2009, 'F', 3481), +(199298, 'Serenity', 2009, 'F', 3468), +(199299, 'Khloe', 2009, 'F', 3452), +(199300, 'Gabrielle', 2009, 'F', 3417), +(199301, 'Paige', 2009, 'F', 3407), +(199302, 'Mya', 2009, 'F', 3400), +(199303, 'Eva', 2009, 'F', 3391), +(199304, 'Isabelle', 2009, 'F', 3301), +(199305, 'Lucy', 2009, 'F', 3176), +(199306, 'Mary', 2009, 'F', 3154), +(199307, 'Natalia', 2009, 'F', 3106), +(199308, 'Michelle', 2009, 'F', 3076), +(199309, 'Megan', 2009, 'F', 3054), +(199310, 'Sara', 2009, 'F', 3036), +(199311, 'Naomi', 2009, 'F', 3028), +(199312, 'Ruby', 2009, 'F', 3014), +(199313, 'Jennifer', 2009, 'F', 2986), +(199314, 'Isabel', 2009, 'F', 2979), +(199315, 'Sadie', 2009, 'F', 2967), +(199316, 'Stephanie', 2009, 'F', 2919), +(199317, 'Jada', 2009, 'F', 2888), +(199318, 'Gracie', 2009, 'F', 2859), +(199319, 'Kennedy', 2009, 'F', 2859), +(199320, 'Rylee', 2009, 'F', 2825), +(199321, 'Lilly', 2009, 'F', 2823), +(199322, 'Lydia', 2009, 'F', 2818), +(199323, 'Nicole', 2009, 'F', 2763), +(199324, 'Liliana', 2009, 'F', 2646), +(199325, 'Jenna', 2009, 'F', 2629), +(199326, 'London', 2009, 'F', 2628), +(199327, 'Haley', 2009, 'F', 2615), +(199328, 'Jordyn', 2009, 'F', 2585), +(199329, 'Adriana', 2009, 'F', 2567), +(199330, 'Stella', 2009, 'F', 2558), +(199331, 'Reagan', 2009, 'F', 2537), +(199332, 'Jayla', 2009, 'F', 2534), +(199333, 'Jade', 2009, 'F', 2488), +(199334, 'Amy', 2009, 'F', 2483), +(199335, 'Hayden', 2009, 'F', 2471), +(199336, 'Rebecca', 2009, 'F', 2459), +(199337, 'Kendall', 2009, 'F', 2414), +(199338, 'Giselle', 2009, 'F', 2402), +(199339, 'Laila', 2009, 'F', 2376), +(199340, 'Daniela', 2009, 'F', 2363), +(199341, 'Melissa', 2009, 'F', 2333), +(199342, 'Valerie', 2009, 'F', 2317), +(199343, 'Gabriela', 2009, 'F', 2292), +(199344, 'Violet', 2009, 'F', 2260), +(199345, 'Keira', 2009, 'F', 2258), +(199346, 'Angela', 2009, 'F', 2255), +(199347, 'Katie', 2009, 'F', 2243), +(199348, 'Reese', 2009, 'F', 2234), +(199349, 'Ellie', 2009, 'F', 2233), +(199350, 'Ashlyn', 2009, 'F', 2189), +(199351, 'Piper', 2009, 'F', 2186), +(199352, 'Kylee', 2009, 'F', 2175), +(199353, 'Marley', 2009, 'F', 2169), +(199354, 'Jordan', 2009, 'F', 2093), +(199355, 'Briana', 2009, 'F', 2070), +(199356, 'Juliana', 2009, 'F', 2069), +(199357, 'Daisy', 2009, 'F', 2068), +(199358, 'Lyla', 2009, 'F', 2068), +(199359, 'Mckenzie', 2009, 'F', 2061), +(199360, 'Annabelle', 2009, 'F', 2054), +(199361, 'Jillian', 2009, 'F', 2038), +(199362, 'Kate', 2009, 'F', 1985), +(199363, 'Aliyah', 2009, 'F', 1984), +(199364, 'Leslie', 2009, 'F', 1979), +(199365, 'Izabella', 2009, 'F', 1967), +(199366, 'Jacqueline', 2009, 'F', 1967), +(199367, 'Brooklynn', 2009, 'F', 1963), +(199368, 'Vivian', 2009, 'F', 1962), +(199369, 'Amanda', 2009, 'F', 1951), +(199370, 'Diana', 2009, 'F', 1943), +(199371, 'Lila', 2009, 'F', 1934), +(199372, 'Shelby', 2009, 'F', 1933), +(199373, 'Danielle', 2009, 'F', 1932), +(199374, 'Scarlett', 2009, 'F', 1920), +(199375, 'Adrianna', 2009, 'F', 1912), +(199376, 'Harper', 2009, 'F', 1901), +(199377, 'Alana', 2009, 'F', 1898), +(199378, 'Makenzie', 2009, 'F', 1895), +(199379, 'Summer', 2009, 'F', 1892), +(199380, 'Catherine', 2009, 'F', 1888), +(199381, 'Angel', 2009, 'F', 1876), +(199382, 'Alivia', 2009, 'F', 1827), +(199383, 'Mikayla', 2009, 'F', 1827), +(199384, 'Aniyah', 2009, 'F', 1823), +(199385, 'Ana', 2009, 'F', 1819), +(199386, 'Miranda', 2009, 'F', 1812), +(199387, 'Marissa', 2009, 'F', 1793), +(199388, 'Amber', 2009, 'F', 1767), +(199389, 'Cheyenne', 2009, 'F', 1766), +(199390, 'Jayden', 2009, 'F', 1765), +(199391, 'Skylar', 2009, 'F', 1764), +(199392, 'Margaret', 2009, 'F', 1761), +(199393, 'Miley', 2009, 'F', 1731), +(199394, 'Julianna', 2009, 'F', 1700), +(199395, 'Malia', 2009, 'F', 1699), +(199396, 'Eliana', 2009, 'F', 1697), +(199397, 'Delilah', 2009, 'F', 1696), +(199398, 'Erin', 2009, 'F', 1690), +(199399, 'Elena', 2009, 'F', 1680), +(199400, 'Sienna', 2009, 'F', 1671), +(199401, 'Sierra', 2009, 'F', 1668), +(199402, 'Nora', 2009, 'F', 1667), +(199403, 'Clara', 2009, 'F', 1644), +(199404, 'Alexandria', 2009, 'F', 1638), +(199405, 'Josephine', 2009, 'F', 1624), +(199406, 'Amaya', 2009, 'F', 1596), +(199407, 'Valentina', 2009, 'F', 1583), +(199408, 'Breanna', 2009, 'F', 1577), +(199409, 'Eden', 2009, 'F', 1568), +(199410, 'Ariel', 2009, 'F', 1565), +(199411, 'Tessa', 2009, 'F', 1565), +(199412, 'Alicia', 2009, 'F', 1558), +(199413, 'Jazmin', 2009, 'F', 1541), +(199414, 'Elise', 2009, 'F', 1521), +(199415, 'Kelsey', 2009, 'F', 1520), +(199416, 'Haylee', 2009, 'F', 1519), +(199417, 'Kathryn', 2009, 'F', 1512), +(199418, 'Sabrina', 2009, 'F', 1508), +(199419, 'Carly', 2009, 'F', 1507), +(199420, 'Mckenna', 2009, 'F', 1505), +(199421, 'Aurora', 2009, 'F', 1487), +(199422, 'Eleanor', 2009, 'F', 1486), +(199423, 'Mariana', 2009, 'F', 1476), +(199424, 'Alexia', 2009, 'F', 1470), +(199425, 'Lola', 2009, 'F', 1463), +(199426, 'Christina', 2009, 'F', 1462), +(199427, 'Addyson', 2009, 'F', 1454), +(199428, 'Jazmine', 2009, 'F', 1453), +(199429, 'Cadence', 2009, 'F', 1450), +(199430, 'Alondra', 2009, 'F', 1447), +(199431, 'Melody', 2009, 'F', 1447), +(199432, 'Alison', 2009, 'F', 1446), +(199433, 'Kayleigh', 2009, 'F', 1444), +(199434, 'Karen', 2009, 'F', 1433), +(199435, 'Chelsea', 2009, 'F', 1429), +(199436, 'Hope', 2009, 'F', 1427), +(199437, 'Maggie', 2009, 'F', 1425), +(199438, 'Laura', 2009, 'F', 1406), +(199439, 'Allie', 2009, 'F', 1405), +(199440, 'Bianca', 2009, 'F', 1395), +(199441, 'Jayda', 2009, 'F', 1393), +(199442, 'Kendra', 2009, 'F', 1390), +(199443, 'Kara', 2009, 'F', 1387), +(199444, 'Leila', 2009, 'F', 1387), +(199445, 'Delaney', 2009, 'F', 1384), +(199446, 'Ryleigh', 2009, 'F', 1384), +(199447, 'Makenna', 2009, 'F', 1367), +(199448, 'Cassidy', 2009, 'F', 1355), +(199449, 'Brielle', 2009, 'F', 1344), +(199450, 'Camryn', 2009, 'F', 1344), +(199451, 'Nadia', 2009, 'F', 1344), +(199452, 'Callie', 2009, 'F', 1321), +(199453, 'Alina', 2009, 'F', 1320), +(199454, 'Allyson', 2009, 'F', 1316), +(199455, 'Alaina', 2009, 'F', 1315), +(199456, 'Penelope', 2009, 'F', 1294), +(199457, 'Harmony', 2009, 'F', 1290), +(199458, 'Kaydence', 2009, 'F', 1284), +(199459, 'Abby', 2009, 'F', 1278), +(199460, 'Caitlyn', 2009, 'F', 1278), +(199461, 'Alice', 2009, 'F', 1273), +(199462, 'Fernanda', 2009, 'F', 1273), +(199463, 'Kelly', 2009, 'F', 1250), +(199464, 'Lexi', 2009, 'F', 1250), +(199465, 'Sasha', 2009, 'F', 1248), +(199466, 'Kyla', 2009, 'F', 1244), +(199467, 'Caylee', 2009, 'F', 1243), +(199468, 'Leilani', 2009, 'F', 1242), +(199469, 'Esther', 2009, 'F', 1241), +(199470, 'Cecilia', 2009, 'F', 1232), +(199471, 'Caitlin', 2009, 'F', 1216), +(199472, 'Ashlynn', 2009, 'F', 1208), +(199473, 'Mallory', 2009, 'F', 1208), +(199474, 'Presley', 2009, 'F', 1207), +(199475, 'Heaven', 2009, 'F', 1203), +(199476, 'Kyra', 2009, 'F', 1198), +(199477, 'Alejandra', 2009, 'F', 1197), +(199478, 'Fatima', 2009, 'F', 1197), +(199479, 'Teagan', 2009, 'F', 1194), +(199480, 'Dakota', 2009, 'F', 1190), +(199481, 'Alayna', 2009, 'F', 1185), +(199482, 'Eliza', 2009, 'F', 1182), +(199483, 'Veronica', 2009, 'F', 1169), +(199484, 'Tiffany', 2009, 'F', 1167), +(199485, 'Maddison', 2009, 'F', 1163), +(199486, 'Crystal', 2009, 'F', 1159), +(199487, 'Jasmin', 2009, 'F', 1159), +(199488, 'Kiara', 2009, 'F', 1157), +(199489, 'Macy', 2009, 'F', 1157), +(199490, 'Aubree', 2009, 'F', 1155), +(199491, 'Camille', 2009, 'F', 1153), +(199492, 'Genevieve', 2009, 'F', 1151), +(199493, 'Nina', 2009, 'F', 1149), +(199494, 'Madilyn', 2009, 'F', 1142), +(199495, 'Kamryn', 2009, 'F', 1132), +(199496, 'Angelica', 2009, 'F', 1124), +(199497, 'Hazel', 2009, 'F', 1123), +(199498, 'Karina', 2009, 'F', 1120), +(199499, 'Heidi', 2009, 'F', 1116), +(199500, 'Maliyah', 2009, 'F', 1115), +(199501, 'Karla', 2009, 'F', 1114), +(199502, 'Kira', 2009, 'F', 1113), +(199503, 'Esmeralda', 2009, 'F', 1111), +(199504, 'Guadalupe', 2009, 'F', 1110), +(199505, 'Carmen', 2009, 'F', 1104), +(199506, 'Joanna', 2009, 'F', 1104), +(199507, 'Cora', 2009, 'F', 1098), +(199508, 'Aniya', 2009, 'F', 1083), +(199509, 'Lucia', 2009, 'F', 1080), +(199510, 'Miriam', 2009, 'F', 1066), +(199511, 'Daniella', 2009, 'F', 1061), +(199512, 'Jamie', 2009, 'F', 1060), +(199513, 'Courtney', 2009, 'F', 1059), +(199514, 'Josie', 2009, 'F', 1054), +(199515, 'Kyleigh', 2009, 'F', 1054), +(199516, 'Ximena', 2009, 'F', 1051), +(199517, 'Fiona', 2009, 'F', 1049), +(199518, 'Willow', 2009, 'F', 1048), +(199519, 'Emely', 2009, 'F', 1042), +(199520, 'Iris', 2009, 'F', 1033), +(199521, 'Katelynn', 2009, 'F', 1028), +(199522, 'Paisley', 2009, 'F', 1022), +(199523, 'Juliet', 2009, 'F', 1021), +(199524, 'Ivy', 2009, 'F', 1019), +(199525, 'Emerson', 2009, 'F', 1016), +(199526, 'Phoebe', 2009, 'F', 1016), +(199527, 'Selena', 2009, 'F', 1014), +(199528, 'Luna', 2009, 'F', 1012), +(199529, 'Anastasia', 2009, 'F', 1011), +(199530, 'Cassandra', 2009, 'F', 1008), +(199531, 'Lindsey', 2009, 'F', 1006), +(199532, 'Savanna', 2009, 'F', 1004), +(199533, 'Madeleine', 2009, 'F', 1000), +(199534, 'Kailey', 2009, 'F', 997), +(199535, 'Analia', 2009, 'F', 996), +(199536, 'Angie', 2009, 'F', 994), +(199537, 'Kaelyn', 2009, 'F', 994), +(199538, 'Janiyah', 2009, 'F', 992), +(199539, 'Georgia', 2009, 'F', 981), +(199540, 'Joselyn', 2009, 'F', 980), +(199541, 'Emery', 2009, 'F', 973), +(199542, 'Madalyn', 2009, 'F', 973), +(199543, 'Monica', 2009, 'F', 971), +(199544, 'Rylie', 2009, 'F', 970), +(199545, 'Bethany', 2009, 'F', 962), +(199546, 'Kiera', 2009, 'F', 961), +(199547, 'Norah', 2009, 'F', 959), +(199548, 'Brynn', 2009, 'F', 949), +(199549, 'Isla', 2009, 'F', 945), +(199550, 'Dulce', 2009, 'F', 943), +(199551, 'Jaelyn', 2009, 'F', 939), +(199552, 'Erica', 2009, 'F', 938), +(199553, 'Julissa', 2009, 'F', 935), +(199554, 'Rose', 2009, 'F', 933), +(199555, 'Kaylie', 2009, 'F', 927), +(199556, 'Adeline', 2009, 'F', 922), +(199557, 'Julie', 2009, 'F', 918), +(199558, 'Ruth', 2009, 'F', 912), +(199559, 'April', 2009, 'F', 911), +(199560, 'Cameron', 2009, 'F', 907), +(199561, 'Audrina', 2009, 'F', 906), +(199562, 'Madisyn', 2009, 'F', 896), +(199563, 'Kiley', 2009, 'F', 894), +(199564, 'Tatiana', 2009, 'F', 893), +(199565, 'Cynthia', 2009, 'F', 890), +(199566, 'Anya', 2009, 'F', 889), +(199567, 'Ciara', 2009, 'F', 888), +(199568, 'Hadley', 2009, 'F', 887), +(199569, 'Rebekah', 2009, 'F', 887), +(199570, 'Lilah', 2009, 'F', 884), +(199571, 'Talia', 2009, 'F', 880), +(199572, 'Michaela', 2009, 'F', 875), +(199573, 'Londyn', 2009, 'F', 870), +(199574, 'Lia', 2009, 'F', 868), +(199575, 'Nayeli', 2009, 'F', 865), +(199576, 'Kaylin', 2009, 'F', 864), +(199577, 'Lilliana', 2009, 'F', 863), +(199578, 'Madelynn', 2009, 'F', 862), +(199579, 'Adalyn', 2009, 'F', 861), +(199580, 'Raegan', 2009, 'F', 861), +(199581, 'Baylee', 2009, 'F', 859), +(199582, 'Erika', 2009, 'F', 859), +(199583, 'Danica', 2009, 'F', 857), +(199584, 'Holly', 2009, 'F', 857), +(199585, 'Annie', 2009, 'F', 856), +(199586, 'Paola', 2009, 'F', 852), +(199587, 'Lizbeth', 2009, 'F', 834), +(199588, 'Jazlyn', 2009, 'F', 833), +(199589, 'Janiya', 2009, 'F', 832), +(199590, 'Jane', 2009, 'F', 831), +(199591, 'Carolina', 2009, 'F', 828), +(199592, 'Helen', 2009, 'F', 826), +(199593, 'Rihanna', 2009, 'F', 823), +(199594, 'Danna', 2009, 'F', 816), +(199595, 'Serena', 2009, 'F', 813), +(199596, 'Jimena', 2009, 'F', 805), +(199597, 'Nyla', 2009, 'F', 800), +(199598, 'Shayla', 2009, 'F', 798), +(199599, 'Ayla', 2009, 'F', 793), +(199600, 'Tatum', 2009, 'F', 793), +(199601, 'Marlee', 2009, 'F', 790), +(199602, 'Sage', 2009, 'F', 790), +(199603, 'Itzel', 2009, 'F', 788), +(199604, 'Emilia', 2009, 'F', 787), +(199605, 'Sarai', 2009, 'F', 786), +(199606, 'Kadence', 2009, 'F', 783), +(199607, 'Natasha', 2009, 'F', 782), +(199608, 'Madyson', 2009, 'F', 781), +(199609, 'Janelle', 2009, 'F', 780), +(199610, 'Lyric', 2009, 'F', 779), +(199611, 'Adelyn', 2009, 'F', 778), +(199612, 'Brenda', 2009, 'F', 778), +(199613, 'Kimora', 2009, 'F', 777), +(199614, 'Imani', 2009, 'F', 774), +(199615, 'Paris', 2009, 'F', 773), +(199616, 'Priscilla', 2009, 'F', 771), +(199617, 'Ainsley', 2009, 'F', 770), +(199618, 'Macie', 2009, 'F', 769), +(199619, 'Annika', 2009, 'F', 767), +(199620, 'Estrella', 2009, 'F', 767), +(199621, 'Lena', 2009, 'F', 767), +(199622, 'Amiyah', 2009, 'F', 766), +(199623, 'Nataly', 2009, 'F', 761), +(199624, 'Dayana', 2009, 'F', 759), +(199625, 'Harley', 2009, 'F', 758), +(199626, 'Skyler', 2009, 'F', 758), +(199627, 'Hayley', 2009, 'F', 756), +(199628, 'Bridget', 2009, 'F', 753), +(199629, 'Brylee', 2009, 'F', 751), +(199630, 'Lillie', 2009, 'F', 749), +(199631, 'Melany', 2009, 'F', 745), +(199632, 'Evangeline', 2009, 'F', 742), +(199633, 'Kinsley', 2009, 'F', 742), +(199634, 'Noelle', 2009, 'F', 742), +(199635, 'Athena', 2009, 'F', 740), +(199636, 'Lacey', 2009, 'F', 738), +(199637, 'Viviana', 2009, 'F', 735), +(199638, 'Addisyn', 2009, 'F', 732), +(199639, 'Cali', 2009, 'F', 730), +(199640, 'Lilian', 2009, 'F', 728), +(199641, 'Aubrie', 2009, 'F', 725), +(199642, 'Emilee', 2009, 'F', 719), +(199643, 'Hanna', 2009, 'F', 717), +(199644, 'Juliette', 2009, 'F', 717), +(199645, 'Kayden', 2009, 'F', 714), +(199646, 'Desiree', 2009, 'F', 711), +(199647, 'Elle', 2009, 'F', 709), +(199648, 'Brenna', 2009, 'F', 707), +(199649, 'Lana', 2009, 'F', 706), +(199650, 'Kassidy', 2009, 'F', 705), +(199651, 'Kailyn', 2009, 'F', 704), +(199652, 'Arabella', 2009, 'F', 703), +(199653, 'Kenzie', 2009, 'F', 698), +(199654, 'Denise', 2009, 'F', 692), +(199655, 'Jadyn', 2009, 'F', 690), +(199656, 'Alissa', 2009, 'F', 688), +(199657, 'Kinley', 2009, 'F', 688), +(199658, 'Aileen', 2009, 'F', 684), +(199659, 'Logan', 2009, 'F', 683), +(199660, 'Melina', 2009, 'F', 681), +(199661, 'Abbigail', 2009, 'F', 675), +(199662, 'Celeste', 2009, 'F', 674), +(199663, 'Miracle', 2009, 'F', 673), +(199664, 'Annabella', 2009, 'F', 672), +(199665, 'Anahi', 2009, 'F', 670), +(199666, 'Brittany', 2009, 'F', 669), +(199667, 'Mila', 2009, 'F', 667), +(199668, 'Elaina', 2009, 'F', 666), +(199669, 'Francesca', 2009, 'F', 666), +(199670, 'Lauryn', 2009, 'F', 664), +(199671, 'Nancy', 2009, 'F', 664), +(199672, 'Kennedi', 2009, 'F', 663), +(199673, 'Cara', 2009, 'F', 661), +(199674, 'Danika', 2009, 'F', 658), +(199675, 'Anaya', 2009, 'F', 657), +(199676, 'Alessandra', 2009, 'F', 656), +(199677, 'Marisol', 2009, 'F', 656), +(199678, 'Alanna', 2009, 'F', 652), +(199679, 'Johanna', 2009, 'F', 652), +(199680, 'Asia', 2009, 'F', 650), +(199681, 'Daphne', 2009, 'F', 649), +(199682, 'Amira', 2009, 'F', 645), +(199683, 'Yasmin', 2009, 'F', 644), +(199684, 'Yaretzi', 2009, 'F', 642), +(199685, 'Alyson', 2009, 'F', 641), +(199686, 'Claudia', 2009, 'F', 639), +(199687, 'Meredith', 2009, 'F', 635), +(199688, 'Braelyn', 2009, 'F', 634), +(199689, 'Nia', 2009, 'F', 634), +(199690, 'Amari', 2009, 'F', 631), +(199691, 'Quinn', 2009, 'F', 630), +(199692, 'Jaylynn', 2009, 'F', 629), +(199693, 'Nathalie', 2009, 'F', 629), +(199694, 'Jaliyah', 2009, 'F', 627), +(199695, 'Skye', 2009, 'F', 623), +(199696, 'Rosa', 2009, 'F', 622), +(199697, 'Meghan', 2009, 'F', 621), +(199698, 'Isabela', 2009, 'F', 620), +(199699, 'Rowan', 2009, 'F', 615), +(199700, 'Gloria', 2009, 'F', 614), +(199701, 'Diamond', 2009, 'F', 613), +(199702, 'Journey', 2009, 'F', 611), +(199703, 'Lexie', 2009, 'F', 607), +(199704, 'Zariah', 2009, 'F', 603), +(199705, 'Kali', 2009, 'F', 602), +(199706, 'Mikaela', 2009, 'F', 600), +(199707, 'Parker', 2009, 'F', 599), +(199708, 'Lesly', 2009, 'F', 598), +(199709, 'Wendy', 2009, 'F', 598), +(199710, 'Saniyah', 2009, 'F', 596), +(199711, 'Samara', 2009, 'F', 594), +(199712, 'Whitney', 2009, 'F', 594), +(199713, 'Yareli', 2009, 'F', 591), +(199714, 'Hailee', 2009, 'F', 590), +(199715, 'Aria', 2009, 'F', 589), +(199716, 'Aylin', 2009, 'F', 589), +(199717, 'Kaylynn', 2009, 'F', 589), +(199718, 'Kamila', 2009, 'F', 588), +(199719, 'Kristina', 2009, 'F', 588), +(199720, 'Elliana', 2009, 'F', 587), +(199721, 'Sandra', 2009, 'F', 585), +(199722, 'Joy', 2009, 'F', 584), +(199723, 'Amya', 2009, 'F', 583), +(199724, 'Liberty', 2009, 'F', 583), +(199725, 'Aleah', 2009, 'F', 582), +(199726, 'Lilyana', 2009, 'F', 582), +(199727, 'Perla', 2009, 'F', 580), +(199728, 'Jaida', 2009, 'F', 578), +(199729, 'Finley', 2009, 'F', 576), +(199730, 'Lindsay', 2009, 'F', 575), +(199731, 'Natalee', 2009, 'F', 575), +(199732, 'Dana', 2009, 'F', 571), +(199733, 'Sidney', 2009, 'F', 570), +(199734, 'Casey', 2009, 'F', 569), +(199735, 'Vivienne', 2009, 'F', 569), +(199736, 'Cindy', 2009, 'F', 567), +(199737, 'Kristen', 2009, 'F', 566), +(199738, 'Anika', 2009, 'F', 564), +(199739, 'Patricia', 2009, 'F', 564), +(199740, 'Hallie', 2009, 'F', 562), +(199741, 'Laney', 2009, 'F', 560), +(199742, 'Myla', 2009, 'F', 559), +(199743, 'Anne', 2009, 'F', 557), +(199744, 'Jaden', 2009, 'F', 557), +(199745, 'Kiana', 2009, 'F', 556), +(199746, 'Madalynn', 2009, 'F', 556), +(199747, 'Sherlyn', 2009, 'F', 556), +(199748, 'Skyla', 2009, 'F', 556), +(199749, 'Saniya', 2009, 'F', 555), +(199750, 'Sylvia', 2009, 'F', 555), +(199751, 'Elisabeth', 2009, 'F', 554), +(199752, 'Jaelynn', 2009, 'F', 554), +(199753, 'Janessa', 2009, 'F', 554), +(199754, 'Camilla', 2009, 'F', 552), +(199755, 'Heather', 2009, 'F', 552), +(199756, 'Jayleen', 2009, 'F', 552), +(199757, 'Justice', 2009, 'F', 550), +(199758, 'Halle', 2009, 'F', 549), +(199759, 'Madilynn', 2009, 'F', 549), +(199760, 'Linda', 2009, 'F', 548), +(199761, 'Tori', 2009, 'F', 548), +(199762, 'Arielle', 2009, 'F', 546), +(199763, 'Dylan', 2009, 'F', 545), +(199764, 'America', 2009, 'F', 543), +(199765, 'Anabelle', 2009, 'F', 543), +(199766, 'Kathleen', 2009, 'F', 542), +(199767, 'Shannon', 2009, 'F', 542), +(199768, 'Gemma', 2009, 'F', 541), +(199769, 'Jaiden', 2009, 'F', 540), +(199770, 'Bailee', 2009, 'F', 539), +(199771, 'Haven', 2009, 'F', 538), +(199772, 'Marie', 2009, 'F', 536), +(199773, 'Adelaide', 2009, 'F', 535), +(199774, 'Lucille', 2009, 'F', 534), +(199775, 'Ada', 2009, 'F', 533), +(199776, 'Gracelyn', 2009, 'F', 532), +(199777, 'Helena', 2009, 'F', 532), +(199778, 'Kassandra', 2009, 'F', 532), +(199779, 'Kaitlin', 2009, 'F', 530), +(199780, 'Aryanna', 2009, 'F', 529), +(199781, 'Taryn', 2009, 'F', 528), +(199782, 'Brisa', 2009, 'F', 527), +(199783, 'Ryan', 2009, 'F', 527), +(199784, 'Amani', 2009, 'F', 523), +(199785, 'Gwendolyn', 2009, 'F', 522), +(199786, 'Eve', 2009, 'F', 521), +(199787, 'Liana', 2009, 'F', 519), +(199788, 'Marilyn', 2009, 'F', 519), +(199789, 'Aleena', 2009, 'F', 518), +(199790, 'Amara', 2009, 'F', 516), +(199791, 'Haleigh', 2009, 'F', 514), +(199792, 'Olive', 2009, 'F', 512), +(199793, 'Aspen', 2009, 'F', 509), +(199794, 'Maeve', 2009, 'F', 508), +(199795, 'Maia', 2009, 'F', 508), +(199796, 'Maleah', 2009, 'F', 508), +(199797, 'Gia', 2009, 'F', 507), +(199798, 'Kaia', 2009, 'F', 507), +(199799, 'Myah', 2009, 'F', 507), +(199800, 'Shiloh', 2009, 'F', 506), +(199801, 'Lorelei', 2009, 'F', 504), +(199802, 'Kaliyah', 2009, 'F', 503), +(199803, 'Yesenia', 2009, 'F', 502), +(199804, 'Catalina', 2009, 'F', 501), +(199805, 'Giana', 2009, 'F', 500), +(199806, 'Clarissa', 2009, 'F', 499), +(199807, 'Tiana', 2009, 'F', 499), +(199808, 'Cheyanne', 2009, 'F', 498), +(199809, 'Deanna', 2009, 'F', 498), +(199810, 'Zoie', 2009, 'F', 498), +(199811, 'Scarlet', 2009, 'F', 496), +(199812, 'Aiyana', 2009, 'F', 495), +(199813, 'Isis', 2009, 'F', 494), +(199814, 'Alisson', 2009, 'F', 493), +(199815, 'Bryanna', 2009, 'F', 493), +(199816, 'Marina', 2009, 'F', 493), +(199817, 'Jaylee', 2009, 'F', 491), +(199818, 'Rachael', 2009, 'F', 491), +(199819, 'Virginia', 2009, 'F', 490), +(199820, 'Charlie', 2009, 'F', 489), +(199821, 'Jaylin', 2009, 'F', 488), +(199822, 'Allisson', 2009, 'F', 487), +(199823, 'Christine', 2009, 'F', 487), +(199824, 'Simone', 2009, 'F', 486), +(199825, 'Amiya', 2009, 'F', 484), +(199826, 'Briley', 2009, 'F', 484), +(199827, 'Jaycee', 2009, 'F', 483), +(199828, 'Ashlee', 2009, 'F', 482), +(199829, 'Destinee', 2009, 'F', 482), +(199830, 'Siena', 2009, 'F', 481), +(199831, 'Irene', 2009, 'F', 479), +(199832, 'Abril', 2009, 'F', 478), +(199833, 'Julianne', 2009, 'F', 477), +(199834, 'Kaleigh', 2009, 'F', 477), +(199835, 'Kenya', 2009, 'F', 477), +(199836, 'Raven', 2009, 'F', 473), +(199837, 'Elisa', 2009, 'F', 471), +(199838, 'Paulina', 2009, 'F', 470), +(199839, 'Ayanna', 2009, 'F', 469), +(199840, 'Kaitlynn', 2009, 'F', 469), +(199841, 'Adrienne', 2009, 'F', 468), +(199842, 'Carlee', 2009, 'F', 464), +(199843, 'Jaidyn', 2009, 'F', 464), +(199844, 'Raquel', 2009, 'F', 464), +(199845, 'Sariah', 2009, 'F', 463), +(199846, 'Arely', 2009, 'F', 461), +(199847, 'Tabitha', 2009, 'F', 460), +(199848, 'Haylie', 2009, 'F', 457), +(199849, 'Annalise', 2009, 'F', 456), +(199850, 'Mercedes', 2009, 'F', 456), +(199851, 'Nylah', 2009, 'F', 455), +(199852, 'Barbara', 2009, 'F', 454), +(199853, 'Krystal', 2009, 'F', 454), +(199854, 'Kailee', 2009, 'F', 453), +(199855, 'Kirsten', 2009, 'F', 453), +(199856, 'Teresa', 2009, 'F', 453), +(199857, 'Elyse', 2009, 'F', 452), +(199858, 'Taliyah', 2009, 'F', 452), +(199859, 'Aliya', 2009, 'F', 451), +(199860, 'Jaylene', 2009, 'F', 451), +(199861, 'Maci', 2009, 'F', 450), +(199862, 'Ansley', 2009, 'F', 449), +(199863, 'Kenley', 2009, 'F', 447), +(199864, 'Dahlia', 2009, 'F', 445), +(199865, 'Mariam', 2009, 'F', 441), +(199866, 'Jazlynn', 2009, 'F', 440), +(199867, 'June', 2009, 'F', 440), +(199868, 'Carla', 2009, 'F', 438), +(199869, 'Bristol', 2009, 'F', 436), +(199870, 'Gisselle', 2009, 'F', 436), +(199871, 'Mckayla', 2009, 'F', 436), +(199872, 'Martha', 2009, 'F', 435), +(199873, 'Amelie', 2009, 'F', 434), +(199874, 'Jakayla', 2009, 'F', 434), +(199875, 'Jolie', 2009, 'F', 434), +(199876, 'Adalynn', 2009, 'F', 433), +(199877, 'Jaslene', 2009, 'F', 432), +(199878, 'Joslyn', 2009, 'F', 432), +(199879, 'Leighton', 2009, 'F', 431), +(199880, 'Lea', 2009, 'F', 430), +(199881, 'Karlee', 2009, 'F', 429), +(199882, 'Paityn', 2009, 'F', 429), +(199883, 'Mariyah', 2009, 'F', 428), +(199884, 'Brynlee', 2009, 'F', 426), +(199885, 'Carolyn', 2009, 'F', 425), +(199886, 'Elsa', 2009, 'F', 425), +(199887, 'Elsie', 2009, 'F', 425), +(199888, 'Luciana', 2009, 'F', 425), +(199889, 'Kaya', 2009, 'F', 424), +(199890, 'Maritza', 2009, 'F', 424), +(199891, 'Sonia', 2009, 'F', 424), +(199892, 'Tara', 2009, 'F', 424), +(199893, 'Noemi', 2009, 'F', 423), +(199894, 'Cherish', 2009, 'F', 421), +(199895, 'Kaylen', 2009, 'F', 421), +(199896, 'Lisa', 2009, 'F', 420), +(199897, 'Jessie', 2009, 'F', 419), +(199898, 'Mollie', 2009, 'F', 419), +(199899, 'Selah', 2009, 'F', 418), +(199900, 'Greta', 2009, 'F', 417), +(199901, 'Lainey', 2009, 'F', 416), +(199902, 'Miah', 2009, 'F', 416), +(199903, 'Adyson', 2009, 'F', 415), +(199904, 'Jaqueline', 2009, 'F', 415), +(199905, 'Ellen', 2009, 'F', 414), +(199906, 'Reyna', 2009, 'F', 414), +(199907, 'Kaylyn', 2009, 'F', 412), +(199908, 'Macey', 2009, 'F', 412), +(199909, 'Paloma', 2009, 'F', 411), +(199910, 'Giuliana', 2009, 'F', 410), +(199911, 'Marisa', 2009, 'F', 410), +(199912, 'Jenny', 2009, 'F', 406), +(199913, 'Regina', 2009, 'F', 405), +(199914, 'Carlie', 2009, 'F', 404), +(199915, 'Clare', 2009, 'F', 404), +(199916, 'Cristina', 2009, 'F', 404), +(199917, 'Evie', 2009, 'F', 404), +(199918, 'Leanna', 2009, 'F', 404), +(199919, 'Rosemary', 2009, 'F', 404), +(199920, 'Annabel', 2009, 'F', 403), +(199921, 'Alena', 2009, 'F', 402), +(199922, 'Averie', 2009, 'F', 402), +(199923, 'Emilie', 2009, 'F', 402), +(199924, 'Iliana', 2009, 'F', 402), +(199925, 'Tania', 2009, 'F', 402), +(199926, 'Cailyn', 2009, 'F', 401), +(199927, 'Chaya', 2009, 'F', 401), +(199928, 'Phoenix', 2009, 'F', 401), +(199929, 'Regan', 2009, 'F', 400), +(199930, 'Amina', 2009, 'F', 399), +(199931, 'Carley', 2009, 'F', 399), +(199932, 'Tamia', 2009, 'F', 399), +(199933, 'Janae', 2009, 'F', 398), +(199934, 'Campbell', 2009, 'F', 396), +(199935, 'Charlee', 2009, 'F', 396), +(199936, 'Jaylah', 2009, 'F', 396), +(199937, 'Sanaa', 2009, 'F', 396), +(199938, 'Zion', 2009, 'F', 394), +(199939, 'Cecelia', 2009, 'F', 393), +(199940, 'Emmalee', 2009, 'F', 393), +(199941, 'Jazmyn', 2009, 'F', 393), +(199942, 'Zaniyah', 2009, 'F', 393), +(199943, 'Lilianna', 2009, 'F', 391), +(199944, 'Marlene', 2009, 'F', 391), +(199945, 'Leyla', 2009, 'F', 389), +(199946, 'Aisha', 2009, 'F', 385), +(199947, 'Angelique', 2009, 'F', 385), +(199948, 'Britney', 2009, 'F', 385), +(199949, 'Kallie', 2009, 'F', 383), +(199950, 'Patience', 2009, 'F', 382), +(199951, 'Luz', 2009, 'F', 379), +(199952, 'Yazmin', 2009, 'F', 379), +(199953, 'Natalya', 2009, 'F', 378), +(199954, 'Kenna', 2009, 'F', 377), +(199955, 'Alani', 2009, 'F', 376), +(199956, 'Celia', 2009, 'F', 376), +(199957, 'Corinne', 2009, 'F', 376), +(199958, 'Moriah', 2009, 'F', 376), +(199959, 'Larissa', 2009, 'F', 375), +(199960, 'Malaya', 2009, 'F', 375), +(199961, 'Mara', 2009, 'F', 375), +(199962, 'Matilda', 2009, 'F', 375), +(199963, 'Alisha', 2009, 'F', 374), +(199964, 'Araceli', 2009, 'F', 374), +(199965, 'Giada', 2009, 'F', 374), +(199966, 'Karma', 2009, 'F', 374), +(199967, 'Mckinley', 2009, 'F', 374), +(199968, 'Susan', 2009, 'F', 374), +(199969, 'Aryana', 2009, 'F', 373), +(199970, 'Elaine', 2009, 'F', 371), +(199971, 'Abbie', 2009, 'F', 370), +(199972, 'Judith', 2009, 'F', 370), +(199973, 'Armani', 2009, 'F', 368), +(199974, 'Zara', 2009, 'F', 367), +(199975, 'Alia', 2009, 'F', 366), +(199976, 'Milagros', 2009, 'F', 366), +(199977, 'Shaniya', 2009, 'F', 366), +(199978, 'Sharon', 2009, 'F', 366), +(199979, 'Kiersten', 2009, 'F', 365), +(199980, 'Renee', 2009, 'F', 365), +(199981, 'Lailah', 2009, 'F', 364), +(199982, 'Lorelai', 2009, 'F', 363), +(199983, 'Precious', 2009, 'F', 363), +(199984, 'Anabella', 2009, 'F', 362), +(199985, 'Brinley', 2009, 'F', 362), +(199986, 'Paula', 2009, 'F', 362), +(199987, 'Kendal', 2009, 'F', 361), +(199988, 'Aliza', 2009, 'F', 360), +(199989, 'Milan', 2009, 'F', 360), +(199990, 'Yoselin', 2009, 'F', 360), +(199991, 'Ayana', 2009, 'F', 359), +(199992, 'Felicity', 2009, 'F', 359), +(199993, 'Keyla', 2009, 'F', 359), +(199994, 'Kierra', 2009, 'F', 359), +(199995, 'Salma', 2009, 'F', 359), +(199996, 'Azul', 2009, 'F', 357), +(199997, 'Kaiya', 2009, 'F', 357), +(199998, 'Zaria', 2009, 'F', 357), +(199999, 'Libby', 2009, 'F', 355), +(200000, 'Ryann', 2009, 'F', 355), +(200001, 'Frances', 2009, 'F', 354), +(200002, 'Giovanna', 2009, 'F', 354), +(200003, 'Ingrid', 2009, 'F', 354), +(200004, 'Maliah', 2009, 'F', 354), +(200005, 'Monserrat', 2009, 'F', 354), +(200006, 'Chanel', 2009, 'F', 353), +(200007, 'Jamya', 2009, 'F', 353), +(200008, 'Janet', 2009, 'F', 353), +(200009, 'Kasey', 2009, 'F', 353), +(200010, 'Dayanara', 2009, 'F', 349), +(200011, 'Mira', 2009, 'F', 349), +(200012, 'Shyla', 2009, 'F', 349), +(200013, 'Ally', 2009, 'F', 348), +(200014, 'Marianna', 2009, 'F', 348), +(200015, 'Shyanne', 2009, 'F', 348), +(200016, 'Alma', 2009, 'F', 347), +(200017, 'Chana', 2009, 'F', 347), +(200018, 'Deborah', 2009, 'F', 346), +(200019, 'Eileen', 2009, 'F', 346), +(200020, 'Katrina', 2009, 'F', 346), +(200021, 'Nathaly', 2009, 'F', 346), +(200022, 'Ireland', 2009, 'F', 345), +(200023, 'Micah', 2009, 'F', 345), +(200024, 'Akira', 2009, 'F', 344), +(200025, 'Yaritza', 2009, 'F', 344), +(200026, 'Yuliana', 2009, 'F', 344), +(200027, 'Aimee', 2009, 'F', 343), +(200028, 'Amirah', 2009, 'F', 342), +(200029, 'Lylah', 2009, 'F', 341), +(200030, 'Stacy', 2009, 'F', 341), +(200031, 'Tess', 2009, 'F', 341), +(200032, 'Isabell', 2009, 'F', 340), +(200033, 'Leia', 2009, 'F', 340), +(200034, 'Belinda', 2009, 'F', 339), +(200035, 'Rosalie', 2009, 'F', 337), +(200036, 'Jayde', 2009, 'F', 336), +(200037, 'Calleigh', 2009, 'F', 335), +(200038, 'Raina', 2009, 'F', 335), +(200039, 'Hana', 2009, 'F', 334), +(200040, 'India', 2009, 'F', 334), +(200041, 'Karissa', 2009, 'F', 334), +(200042, 'Shania', 2009, 'F', 334), +(200043, 'Kourtney', 2009, 'F', 332), +(200044, 'Angeline', 2009, 'F', 331), +(200045, 'Jacey', 2009, 'F', 331), +(200046, 'Janice', 2009, 'F', 331), +(200047, 'Saige', 2009, 'F', 331), +(200048, 'Adelynn', 2009, 'F', 330), +(200049, 'Edith', 2009, 'F', 330), +(200050, 'Pamela', 2009, 'F', 330), +(200051, 'Raelynn', 2009, 'F', 330), +(200052, 'Laylah', 2009, 'F', 328), +(200053, 'Beatrice', 2009, 'F', 327), +(200054, 'Marely', 2009, 'F', 327), +(200055, 'Mayra', 2009, 'F', 327), +(200056, 'Tianna', 2009, 'F', 327), +(200057, 'Jaylyn', 2009, 'F', 326), +(200058, 'Kelsie', 2009, 'F', 326), +(200059, 'Mylee', 2009, 'F', 326), +(200060, 'Carissa', 2009, 'F', 325), +(200061, 'Rubi', 2009, 'F', 325), +(200062, 'Taniyah', 2009, 'F', 325), +(200063, 'Aracely', 2009, 'F', 324), +(200064, 'Ariella', 2009, 'F', 324), +(200065, 'Mina', 2009, 'F', 323), +(200066, 'Rylan', 2009, 'F', 323), +(200067, 'Alyvia', 2009, 'F', 322), +(200068, 'Livia', 2009, 'F', 321), +(200069, 'Lillianna', 2009, 'F', 320), +(200070, 'Meadow', 2009, 'F', 320), +(200071, 'Millie', 2009, 'F', 320), +(200072, 'Hayleigh', 2009, 'F', 319), +(200073, 'Bria', 2009, 'F', 317), +(200074, 'Elianna', 2009, 'F', 317), +(200075, 'Yadira', 2009, 'F', 317), +(200076, 'Emelia', 2009, 'F', 316), +(200077, 'Jocelynn', 2009, 'F', 315), +(200078, 'Carina', 2009, 'F', 314), +(200079, 'Charity', 2009, 'F', 314), +(200080, 'Rayna', 2009, 'F', 314), +(200081, 'Taraji', 2009, 'F', 314), +(200082, 'Damaris', 2009, 'F', 313), +(200083, 'Belen', 2009, 'F', 312), +(200084, 'Evelin', 2009, 'F', 312), +(200085, 'Cristal', 2009, 'F', 311), +(200086, 'Payten', 2009, 'F', 310), +(200087, 'Sloane', 2009, 'F', 310), +(200088, 'Demi', 2009, 'F', 309), +(200089, 'Diya', 2009, 'F', 309), +(200090, 'Ember', 2009, 'F', 309), +(200091, 'Jaylen', 2009, 'F', 309), +(200092, 'Maryjane', 2009, 'F', 309), +(200093, 'Rayne', 2009, 'F', 309), +(200094, 'Abbey', 2009, 'F', 307), +(200095, 'Karsyn', 2009, 'F', 307), +(200096, 'Alexus', 2009, 'F', 306), +(200097, 'Jordin', 2009, 'F', 306), +(200098, 'Marlie', 2009, 'F', 306), +(200099, 'Mattie', 2009, 'F', 306), +(200100, 'Taniya', 2009, 'F', 306), +(200101, 'Vera', 2009, 'F', 305), +(200102, 'Destiney', 2009, 'F', 303), +(200103, 'Evelynn', 2009, 'F', 302), +(200104, 'Myra', 2009, 'F', 302), +(200105, 'Harlow', 2009, 'F', 301), +(200106, 'Jacquelyn', 2009, 'F', 301), +(200107, 'Savanah', 2009, 'F', 301), +(200108, 'Shaylee', 2009, 'F', 301), +(200109, 'Alaya', 2009, 'F', 300), +(200110, 'Caydence', 2009, 'F', 300), +(200111, 'Princess', 2009, 'F', 300), +(200112, 'Tamara', 2009, 'F', 300), +(200113, 'Xiomara', 2009, 'F', 298), +(200114, 'Abagail', 2009, 'F', 297), +(200115, 'Sarahi', 2009, 'F', 297), +(200116, 'Charlize', 2009, 'F', 296), +(200117, 'Eloise', 2009, 'F', 296), +(200118, 'Lilia', 2009, 'F', 296), +(200119, 'Emmy', 2009, 'F', 295), +(200120, 'Janiah', 2009, 'F', 295), +(200121, 'Aliana', 2009, 'F', 294), +(200122, 'Averi', 2009, 'F', 293), +(200123, 'Hadassah', 2009, 'F', 293), +(200124, 'Yamilet', 2009, 'F', 293), +(200125, 'Karly', 2009, 'F', 290), +(200126, 'Kylah', 2009, 'F', 290), +(200127, 'Unique', 2009, 'F', 290), +(200128, 'Caleigh', 2009, 'F', 289), +(200129, 'Raelyn', 2009, 'F', 289), +(200130, 'Roselyn', 2009, 'F', 289), +(200131, 'Avah', 2009, 'F', 288), +(200132, 'Kayley', 2009, 'F', 288), +(200133, 'Ann', 2009, 'F', 287), +(200134, 'Dixie', 2009, 'F', 287), +(200135, 'Frida', 2009, 'F', 287), +(200136, 'Joyce', 2009, 'F', 287), +(200137, 'Rory', 2009, 'F', 287), +(200138, 'Kamari', 2009, 'F', 286), +(200139, 'Lara', 2009, 'F', 286), +(200140, 'Yasmine', 2009, 'F', 286), +(200141, 'Jewel', 2009, 'F', 285), +(200142, 'Keely', 2009, 'F', 285), +(200143, 'Lorena', 2009, 'F', 285), +(200144, 'Alisa', 2009, 'F', 284), +(200145, 'Ali', 2009, 'F', 283), +(200146, 'Cayla', 2009, 'F', 282), +(200147, 'Rebeca', 2009, 'F', 282), +(200148, 'Taya', 2009, 'F', 282), +(200149, 'Theresa', 2009, 'F', 282), +(200150, 'Aiyanna', 2009, 'F', 281), +(200151, 'Makena', 2009, 'F', 281), +(200152, 'Maryam', 2009, 'F', 281), +(200153, 'Tia', 2009, 'F', 281), +(200154, 'Ashleigh', 2009, 'F', 280), +(200155, 'Lina', 2009, 'F', 280), +(200156, 'Maribel', 2009, 'F', 280), +(200157, 'Nola', 2009, 'F', 280), +(200158, 'Azaria', 2009, 'F', 279), +(200159, 'Cassie', 2009, 'F', 279), +(200160, 'Charley', 2009, 'F', 279), +(200161, 'Neveah', 2009, 'F', 279), +(200162, 'River', 2009, 'F', 279), +(200163, 'Ashly', 2009, 'F', 278), +(200164, 'Dominique', 2009, 'F', 278), +(200165, 'Kamya', 2009, 'F', 278), +(200166, 'Lizeth', 2009, 'F', 278), +(200167, 'Kaelynn', 2009, 'F', 277), +(200168, 'Esperanza', 2009, 'F', 276), +(200169, 'Sanai', 2009, 'F', 276), +(200170, 'Ivanna', 2009, 'F', 275), +(200171, 'Miya', 2009, 'F', 275), +(200172, 'Leona', 2009, 'F', 274), +(200173, 'Riya', 2009, 'F', 274), +(200174, 'Thalia', 2009, 'F', 274), +(200175, 'Abigale', 2009, 'F', 273), +(200176, 'Ayleen', 2009, 'F', 273), +(200177, 'Dalia', 2009, 'F', 273), +(200178, 'Deja', 2009, 'F', 273), +(200179, 'Devyn', 2009, 'F', 273), +(200180, 'Jaslyn', 2009, 'F', 273), +(200181, 'Mariela', 2009, 'F', 272), +(200182, 'Marleigh', 2009, 'F', 272), +(200183, 'Reina', 2009, 'F', 272), +(200184, 'Kayleen', 2009, 'F', 271), +(200185, 'Heidy', 2009, 'F', 270), +(200186, 'Magdalena', 2009, 'F', 270), +(200187, 'Karley', 2009, 'F', 269), +(200188, 'Nyasia', 2009, 'F', 269), +(200189, 'Pearl', 2009, 'F', 269), +(200190, 'Stephany', 2009, 'F', 269), +(200191, 'Azariah', 2009, 'F', 268), +(200192, 'Reece', 2009, 'F', 268), +(200193, 'Tanya', 2009, 'F', 268), +(200194, 'Tiara', 2009, 'F', 268), +(200195, 'Alannah', 2009, 'F', 267), +(200196, 'Karlie', 2009, 'F', 267), +(200197, 'Karli', 2009, 'F', 266), +(200198, 'Samiyah', 2009, 'F', 266), +(200199, 'Valery', 2009, 'F', 266), +(200200, 'Bree', 2009, 'F', 265), +(200201, 'Cambria', 2009, 'F', 265), +(200202, 'Gretchen', 2009, 'F', 265), +(200203, 'Kloe', 2009, 'F', 265), +(200204, 'Lilyanna', 2009, 'F', 265), +(200205, 'Mireya', 2009, 'F', 265), +(200206, 'Sydnee', 2009, 'F', 265), +(200207, 'Abigayle', 2009, 'F', 264), +(200208, 'Amiah', 2009, 'F', 264), +(200209, 'Ashanti', 2009, 'F', 263), +(200210, 'Essence', 2009, 'F', 263), +(200211, 'Alayah', 2009, 'F', 262), +(200212, 'Areli', 2009, 'F', 262), +(200213, 'Emersyn', 2009, 'F', 262), +(200214, 'Nathalia', 2009, 'F', 262), +(200215, 'Amaris', 2009, 'F', 261), +(200216, 'Donna', 2009, 'F', 261), +(200217, 'Winter', 2009, 'F', 261), +(200218, 'Gina', 2009, 'F', 260), +(200219, 'Kristin', 2009, 'F', 260), +(200220, 'Carleigh', 2009, 'F', 258), +(200221, 'Marin', 2009, 'F', 258), +(200222, 'Roxanne', 2009, 'F', 258), +(200223, 'Tegan', 2009, 'F', 257), +(200224, 'Dalilah', 2009, 'F', 256), +(200225, 'Gracelynn', 2009, 'F', 256), +(200226, 'Kyndall', 2009, 'F', 256), +(200227, 'Rhianna', 2009, 'F', 255), +(200228, 'Dania', 2009, 'F', 254), +(200229, 'Keily', 2009, 'F', 254), +(200230, 'Krista', 2009, 'F', 254), +(200231, 'Sawyer', 2009, 'F', 253), +(200232, 'Emory', 2009, 'F', 252), +(200233, 'Selina', 2009, 'F', 252), +(200234, 'Willa', 2009, 'F', 252), +(200235, 'Braelynn', 2009, 'F', 251), +(200236, 'Gillian', 2009, 'F', 251), +(200237, 'Kaila', 2009, 'F', 251), +(200238, 'Kaley', 2009, 'F', 251), +(200239, 'Shea', 2009, 'F', 251), +(200240, 'Bryleigh', 2009, 'F', 250), +(200241, 'Kinsey', 2009, 'F', 250), +(200242, 'Leigha', 2009, 'F', 250), +(200243, 'Sky', 2009, 'F', 250), +(200244, 'Ashtyn', 2009, 'F', 249), +(200245, 'Braylee', 2009, 'F', 249), +(200246, 'Desirae', 2009, 'F', 249), +(200247, 'Kendyl', 2009, 'F', 249), +(200248, 'Lucero', 2009, 'F', 249), +(200249, 'Shyann', 2009, 'F', 249), +(200250, 'Emmalyn', 2009, 'F', 248), +(200251, 'Jackeline', 2009, 'F', 247), +(200252, 'Kailynn', 2009, 'F', 247), +(200253, 'Naima', 2009, 'F', 247), +(200254, 'Kianna', 2009, 'F', 246), +(200255, 'Cierra', 2009, 'F', 245), +(200256, 'Shayna', 2009, 'F', 245), +(200257, 'Zaniya', 2009, 'F', 245), +(200258, 'Chasity', 2009, 'F', 244), +(200259, 'Samiya', 2009, 'F', 244), +(200260, 'Amalia', 2009, 'F', 243), +(200261, 'Kimber', 2009, 'F', 243), +(200262, 'Zariyah', 2009, 'F', 243), +(200263, 'Karis', 2009, 'F', 241), +(200264, 'Laurel', 2009, 'F', 241), +(200265, 'Yamileth', 2009, 'F', 241), +(200266, 'Esme', 2009, 'F', 240), +(200267, 'Farrah', 2009, 'F', 240), +(200268, 'Jamiyah', 2009, 'F', 239), +(200269, 'Mae', 2009, 'F', 239), +(200270, 'Treasure', 2009, 'F', 239), +(200271, 'Ariah', 2009, 'F', 238), +(200272, 'Jalynn', 2009, 'F', 238), +(200273, 'Jolene', 2009, 'F', 238), +(200274, 'Kaylah', 2009, 'F', 238), +(200275, 'Leticia', 2009, 'F', 238), +(200276, 'Samira', 2009, 'F', 238), +(200277, 'Silvia', 2009, 'F', 238), +(200278, 'Tyler', 2009, 'F', 238), +(200279, 'Zuri', 2009, 'F', 238), +(200280, 'Celine', 2009, 'F', 237), +(200281, 'Jana', 2009, 'F', 237), +(200282, 'Arya', 2009, 'F', 236), +(200283, 'Carrie', 2009, 'F', 236), +(200284, 'Charli', 2009, 'F', 236), +(200285, 'Keeley', 2009, 'F', 236), +(200286, 'Abbygail', 2009, 'F', 235), +(200287, 'Adele', 2009, 'F', 235), +(200288, 'Adison', 2009, 'F', 235), +(200289, 'Brittney', 2009, 'F', 235), +(200290, 'Kai', 2009, 'F', 235), +(200291, 'Rivka', 2009, 'F', 235), +(200292, 'Gisele', 2009, 'F', 234), +(200293, 'Addie', 2009, 'F', 233), +(200294, 'Aleigha', 2009, 'F', 233), +(200295, 'Chelsey', 2009, 'F', 233), +(200296, 'Johana', 2009, 'F', 233), +(200297, 'Kairi', 2009, 'F', 233), +(200298, 'Lyra', 2009, 'F', 233), +(200299, 'Maren', 2009, 'F', 233), +(200300, 'Micaela', 2009, 'F', 233), +(200301, 'Anabel', 2009, 'F', 232), +(200302, 'Brookelynn', 2009, 'F', 232), +(200303, 'Christiana', 2009, 'F', 232), +(200304, 'Galilea', 2009, 'F', 232), +(200305, 'Makaila', 2009, 'F', 232), +(200306, 'Shirley', 2009, 'F', 232), +(200307, 'Annette', 2009, 'F', 231), +(200308, 'Brandy', 2009, 'F', 231), +(200309, 'Nova', 2009, 'F', 231), +(200310, 'Anais', 2009, 'F', 230), +(200311, 'Blair', 2009, 'F', 230), +(200312, 'Abrielle', 2009, 'F', 229), +(200313, 'Anjali', 2009, 'F', 229), +(200314, 'Blake', 2009, 'F', 229), +(200315, 'Monique', 2009, 'F', 229), +(200316, 'Berenice', 2009, 'F', 228), +(200317, 'Joelle', 2009, 'F', 228), +(200318, 'Sariyah', 2009, 'F', 228), +(200319, 'Delia', 2009, 'F', 227), +(200320, 'Emme', 2009, 'F', 227), +(200321, 'Giavanna', 2009, 'F', 227), +(200322, 'Izabelle', 2009, 'F', 227), +(200323, 'Dorothy', 2009, 'F', 226), +(200324, 'Sally', 2009, 'F', 226), +(200325, 'Aurelia', 2009, 'F', 225), +(200326, 'Kalia', 2009, 'F', 225), +(200327, 'Keila', 2009, 'F', 225), +(200328, 'Rocio', 2009, 'F', 225), +(200329, 'Destini', 2009, 'F', 224), +(200330, 'Joselin', 2009, 'F', 224), +(200331, 'Makaylah', 2009, 'F', 224), +(200332, 'Roxana', 2009, 'F', 224), +(200333, 'Aubrianna', 2009, 'F', 223), +(200334, 'Deasia', 2009, 'F', 223), +(200335, 'Estella', 2009, 'F', 223), +(200336, 'Graciela', 2009, 'F', 223), +(200337, 'Iyanna', 2009, 'F', 223), +(200338, 'Lesley', 2009, 'F', 223), +(200339, 'Noa', 2009, 'F', 223), +(200340, 'Noor', 2009, 'F', 223), +(200341, 'Raylee', 2009, 'F', 223), +(200342, 'Suri', 2009, 'F', 223), +(200343, 'Susana', 2009, 'F', 223), +(200344, 'Abrianna', 2009, 'F', 222), +(200345, 'Analise', 2009, 'F', 222), +(200346, 'Aditi', 2009, 'F', 221), +(200347, 'Ashton', 2009, 'F', 221), +(200348, 'Jersey', 2009, 'F', 221), +(200349, 'Kayli', 2009, 'F', 221), +(200350, 'Lilith', 2009, 'F', 221), +(200351, 'Rileigh', 2009, 'F', 221), +(200352, 'Kamiyah', 2009, 'F', 220), +(200353, 'Kori', 2009, 'F', 220), +(200354, 'Lianna', 2009, 'F', 220), +(200355, 'Sonya', 2009, 'F', 220), +(200356, 'Zahra', 2009, 'F', 220), +(200357, 'Iyana', 2009, 'F', 219), +(200358, 'Jailyn', 2009, 'F', 219), +(200359, 'Nariah', 2009, 'F', 219), +(200360, 'Denisse', 2009, 'F', 218), +(200361, 'Hailie', 2009, 'F', 217), +(200362, 'Harlee', 2009, 'F', 217), +(200363, 'Kamora', 2009, 'F', 217), +(200364, 'Karmen', 2009, 'F', 217), +(200365, 'Maddie', 2009, 'F', 217), +(200366, 'Sarina', 2009, 'F', 217), +(200367, 'Laniya', 2009, 'F', 216), +(200368, 'Leilah', 2009, 'F', 216), +(200369, 'Colleen', 2009, 'F', 215), +(200370, 'Elina', 2009, 'F', 215), +(200371, 'Shreya', 2009, 'F', 215), +(200372, 'Violeta', 2009, 'F', 215), +(200373, 'Aya', 2009, 'F', 214), +(200374, 'Gracyn', 2009, 'F', 214), +(200375, 'Jemma', 2009, 'F', 214), +(200376, 'Kalyn', 2009, 'F', 214), +(200377, 'Nyah', 2009, 'F', 214), +(200378, 'Rhea', 2009, 'F', 214), +(200379, 'Tina', 2009, 'F', 214), +(200380, 'Aniah', 2009, 'F', 213), +(200381, 'Darlene', 2009, 'F', 213), +(200382, 'Saanvi', 2009, 'F', 213), +(200383, 'Tatianna', 2009, 'F', 213), +(200384, 'Blanca', 2009, 'F', 212), +(200385, 'Dallas', 2009, 'F', 212), +(200386, 'Jamiya', 2009, 'F', 212), +(200387, 'Kaidence', 2009, 'F', 212), +(200388, 'Malaysia', 2009, 'F', 212), +(200389, 'Tayla', 2009, 'F', 212), +(200390, 'Yarely', 2009, 'F', 212), +(200391, 'Zainab', 2009, 'F', 212), +(200392, 'Addilyn', 2009, 'F', 211), +(200393, 'Aubri', 2009, 'F', 211), +(200394, 'Dani', 2009, 'F', 211), +(200395, 'Justine', 2009, 'F', 211), +(200396, 'Adelina', 2009, 'F', 210), +(200397, 'Jazmyne', 2009, 'F', 210), +(200398, 'Luisa', 2009, 'F', 210), +(200399, 'Ananya', 2009, 'F', 209), +(200400, 'Arleth', 2009, 'F', 209), +(200401, 'Evalyn', 2009, 'F', 209), +(200402, 'Julieta', 2009, 'F', 209), +(200403, 'Maiya', 2009, 'F', 209), +(200404, 'Margarita', 2009, 'F', 209), +(200405, 'Renata', 2009, 'F', 209), +(200406, 'Shaniyah', 2009, 'F', 209), +(200407, 'Sofie', 2009, 'F', 209), +(200408, 'Colette', 2009, 'F', 208), +(200409, 'Melinda', 2009, 'F', 208), +(200410, 'Tayler', 2009, 'F', 208), +(200411, 'Ailyn', 2009, 'F', 207), +(200412, 'Aliah', 2009, 'F', 207), +(200413, 'Toni', 2009, 'F', 207), +(200414, 'Elyssa', 2009, 'F', 206), +(200415, 'Jaleah', 2009, 'F', 206), +(200416, 'Tatyana', 2009, 'F', 206), +(200417, 'Brookelyn', 2009, 'F', 205), +(200418, 'Dalila', 2009, 'F', 205), +(200419, 'Elissa', 2009, 'F', 205), +(200420, 'Laniyah', 2009, 'F', 205), +(200421, 'Maite', 2009, 'F', 205), +(200422, 'Annalee', 2009, 'F', 204), +(200423, 'Bridgette', 2009, 'F', 204), +(200424, 'Lidia', 2009, 'F', 204), +(200425, 'Stevie', 2009, 'F', 204), +(200426, 'Ariyana', 2009, 'F', 203), +(200427, 'Jaclyn', 2009, 'F', 203), +(200428, 'Janie', 2009, 'F', 203), +(200429, 'Jazzlyn', 2009, 'F', 203), +(200430, 'Kya', 2009, 'F', 203), +(200431, 'Rhiannon', 2009, 'F', 203), +(200432, 'Geraldine', 2009, 'F', 202), +(200433, 'Gwyneth', 2009, 'F', 202), +(200434, 'Kathy', 2009, 'F', 202), +(200435, 'Noelia', 2009, 'F', 202), +(200436, 'Promise', 2009, 'F', 202), +(200437, 'Amyah', 2009, 'F', 201), +(200438, 'Brandi', 2009, 'F', 201), +(200439, 'Landry', 2009, 'F', 201), +(200440, 'Cloe', 2009, 'F', 200), +(200441, 'Hillary', 2009, 'F', 200), +(200442, 'Kamille', 2009, 'F', 200), +(200443, 'Litzy', 2009, 'F', 200), +(200444, 'Analeigh', 2009, 'F', 199), +(200445, 'Bayleigh', 2009, 'F', 199), +(200446, 'Dayanna', 2009, 'F', 199), +(200447, 'Kelis', 2009, 'F', 199), +(200448, 'Maylee', 2009, 'F', 199), +(200449, 'Anita', 2009, 'F', 198), +(200450, 'Candace', 2009, 'F', 198), +(200451, 'Kyndal', 2009, 'F', 198), +(200452, 'Lacy', 2009, 'F', 198), +(200453, 'Annabell', 2009, 'F', 197), +(200454, 'Antonia', 2009, 'F', 197), +(200455, 'Astrid', 2009, 'F', 197), +(200456, 'Selene', 2009, 'F', 197), +(200457, 'Audriana', 2009, 'F', 196), +(200458, 'Jessa', 2009, 'F', 196), +(200459, 'Kaycee', 2009, 'F', 196), +(200460, 'Katlyn', 2009, 'F', 195), +(200461, 'Maura', 2009, 'F', 195), +(200462, 'Annaliese', 2009, 'F', 194), +(200463, 'Katy', 2009, 'F', 194), +(200464, 'Lilyann', 2009, 'F', 194), +(200465, 'Milana', 2009, 'F', 194), +(200466, 'Arlene', 2009, 'F', 193), +(200467, 'Lillyan', 2009, 'F', 193), +(200468, 'Nelly', 2009, 'F', 193), +(200469, 'Saylor', 2009, 'F', 193), +(200470, 'Annelise', 2009, 'F', 191), +(200471, 'Calista', 2009, 'F', 191), +(200472, 'Carsyn', 2009, 'F', 191), +(200473, 'Citlali', 2009, 'F', 191), +(200474, 'Estefania', 2009, 'F', 191), +(200475, 'Izabel', 2009, 'F', 191), +(200476, 'Kamilah', 2009, 'F', 191), +(200477, 'Malak', 2009, 'F', 191), +(200478, 'Maliya', 2009, 'F', 191), +(200479, 'Mercy', 2009, 'F', 191), +(200480, 'Soleil', 2009, 'F', 191), +(200481, 'Vivianna', 2009, 'F', 191), +(200482, 'Brissa', 2009, 'F', 190), +(200483, 'Journee', 2009, 'F', 190), +(200484, 'Kenia', 2009, 'F', 190), +(200485, 'Lacie', 2009, 'F', 190), +(200486, 'Yvette', 2009, 'F', 190), +(200487, 'Lizette', 2009, 'F', 189), +(200488, 'Sandy', 2009, 'F', 189), +(200489, 'Alize', 2009, 'F', 188), +(200490, 'Carol', 2009, 'F', 188), +(200491, 'Carson', 2009, 'F', 188), +(200492, 'Christian', 2009, 'F', 188), +(200493, 'Honesty', 2009, 'F', 188), +(200494, 'Bryana', 2009, 'F', 187), +(200495, 'Carli', 2009, 'F', 187), +(200496, 'Kirra', 2009, 'F', 187), +(200497, 'Samya', 2009, 'F', 187), +(200498, 'Stacey', 2009, 'F', 187), +(200499, 'Breana', 2009, 'F', 186), +(200500, 'Greidys', 2009, 'F', 186), +(200501, 'Lillyanna', 2009, 'F', 186), +(200502, 'Makiyah', 2009, 'F', 186), +(200503, 'Meagan', 2009, 'F', 186), +(200504, 'Natali', 2009, 'F', 186), +(200505, 'Nicolette', 2009, 'F', 186), +(200506, 'Nya', 2009, 'F', 186), +(200507, 'Asha', 2009, 'F', 185), +(200508, 'Fallon', 2009, 'F', 185), +(200509, 'Gwen', 2009, 'F', 185), +(200510, 'Hunter', 2009, 'F', 185), +(200511, 'Jazlene', 2009, 'F', 185), +(200512, 'Karleigh', 2009, 'F', 185), +(200513, 'Laci', 2009, 'F', 185), +(200514, 'Lilyan', 2009, 'F', 185), +(200515, 'Milena', 2009, 'F', 185), +(200516, 'Yara', 2009, 'F', 185), +(200517, 'Alaysia', 2009, 'F', 184), +(200518, 'Lillyana', 2009, 'F', 184), +(200519, 'Amayah', 2009, 'F', 183), +(200520, 'Amia', 2009, 'F', 183), +(200521, 'Charleigh', 2009, 'F', 183), +(200522, 'Chiara', 2009, 'F', 183), +(200523, 'Kensley', 2009, 'F', 183), +(200524, 'Aanya', 2009, 'F', 182), +(200525, 'Audrianna', 2009, 'F', 182), +(200526, 'Candice', 2009, 'F', 182), +(200527, 'Makiya', 2009, 'F', 182), +(200528, 'Priscila', 2009, 'F', 182), +(200529, 'Romina', 2009, 'F', 182), +(200530, 'Amariah', 2009, 'F', 181), +(200531, 'Anneliese', 2009, 'F', 181), +(200532, 'Devin', 2009, 'F', 181), +(200533, 'Ericka', 2009, 'F', 181), +(200534, 'Estefany', 2009, 'F', 181), +(200535, 'Aida', 2009, 'F', 180), +(200536, 'Celina', 2009, 'F', 180), +(200537, 'Dina', 2009, 'F', 180), +(200538, 'Gizelle', 2009, 'F', 180), +(200539, 'Jaeda', 2009, 'F', 180), +(200540, 'Nikki', 2009, 'F', 180), +(200541, 'Noel', 2009, 'F', 180), +(200542, 'Abygail', 2009, 'F', 179), +(200543, 'Alycia', 2009, 'F', 179), +(200544, 'Wynter', 2009, 'F', 179), +(200545, 'Adilene', 2009, 'F', 178), +(200546, 'Briella', 2009, 'F', 178), +(200547, 'Jaedyn', 2009, 'F', 178), +(200548, 'Kacey', 2009, 'F', 178), +(200549, 'Kaleah', 2009, 'F', 178), +(200550, 'Robin', 2009, 'F', 178), +(200551, 'Trista', 2009, 'F', 178), +(200552, 'Caitlynn', 2009, 'F', 177), +(200553, 'Ivana', 2009, 'F', 177), +(200554, 'Samaya', 2009, 'F', 177), +(200555, 'Beatriz', 2009, 'F', 176), +(200556, 'Blakely', 2009, 'F', 176), +(200557, 'Camden', 2009, 'F', 176), +(200558, 'Camdyn', 2009, 'F', 176), +(200559, 'Drew', 2009, 'F', 176), +(200560, 'Jordynn', 2009, 'F', 176), +(200561, 'Robyn', 2009, 'F', 176), +(200562, 'Ayden', 2009, 'F', 175), +(200563, 'Cordelia', 2009, 'F', 175), +(200564, 'Emani', 2009, 'F', 175), +(200565, 'Isha', 2009, 'F', 175), +(200566, 'Yaneli', 2009, 'F', 175), +(200567, 'Yuridia', 2009, 'F', 175), +(200568, 'Alanah', 2009, 'F', 174), +(200569, 'Fabiola', 2009, 'F', 174), +(200570, 'Liv', 2009, 'F', 174), +(200571, 'Makenzi', 2009, 'F', 174), +(200572, 'Mayte', 2009, 'F', 174), +(200573, 'Peighton', 2009, 'F', 174), +(200574, 'Vanesa', 2009, 'F', 174), +(200575, 'Alessia', 2009, 'F', 173), +(200576, 'Alex', 2009, 'F', 173), +(200577, 'Caelyn', 2009, 'F', 173), +(200578, 'Constance', 2009, 'F', 173), +(200579, 'Kacie', 2009, 'F', 173), +(200580, 'Xochitl', 2009, 'F', 173), +(200581, 'Bonnie', 2009, 'F', 172), +(200582, 'Elliot', 2009, 'F', 172), +(200583, 'Jacklyn', 2009, 'F', 172), +(200584, 'Mariella', 2009, 'F', 172), +(200585, 'Nadine', 2009, 'F', 172), +(200586, 'Nichole', 2009, 'F', 172), +(200587, 'Brea', 2009, 'F', 171), +(200588, 'Ebony', 2009, 'F', 171), +(200589, 'Ellery', 2009, 'F', 171), +(200590, 'Geneva', 2009, 'F', 171), +(200591, 'Kalli', 2009, 'F', 171), +(200592, 'Melia', 2009, 'F', 171), +(200593, 'Pyper', 2009, 'F', 171), +(200594, 'Harmoni', 2009, 'F', 170), +(200595, 'Juniper', 2009, 'F', 170), +(200596, 'Karolina', 2009, 'F', 170), +(200597, 'Marlen', 2009, 'F', 170), +(200598, 'Sheila', 2009, 'F', 170), +(200599, 'Soraya', 2009, 'F', 170), +(200600, 'Audra', 2009, 'F', 169), +(200601, 'Elliott', 2009, 'F', 169), +(200602, 'Josselyn', 2009, 'F', 169), +(200603, 'Malina', 2009, 'F', 169), +(200604, 'Marian', 2009, 'F', 169), +(200605, 'Sheyla', 2009, 'F', 169), +(200606, 'Zaira', 2009, 'F', 169), +(200607, 'Aubriana', 2009, 'F', 168), +(200608, 'Ginger', 2009, 'F', 168), +(200609, 'Malka', 2009, 'F', 168), +(200610, 'Sahara', 2009, 'F', 168), +(200611, 'Amerie', 2009, 'F', 167), +(200612, 'Arden', 2009, 'F', 167), +(200613, 'Emmaline', 2009, 'F', 167), +(200614, 'Joana', 2009, 'F', 167), +(200615, 'Marcella', 2009, 'F', 167), +(200616, 'Tahlia', 2009, 'F', 167), +(200617, 'Alli', 2009, 'F', 166), +(200618, 'Ariyah', 2009, 'F', 166), +(200619, 'Kalani', 2009, 'F', 166), +(200620, 'Kalea', 2009, 'F', 166), +(200621, 'Lucinda', 2009, 'F', 166), +(200622, 'Maylin', 2009, 'F', 166), +(200623, 'Adela', 2009, 'F', 165), +(200624, 'Rita', 2009, 'F', 165), +(200625, 'Savana', 2009, 'F', 165), +(200626, 'Temperance', 2009, 'F', 165), +(200627, 'Yahaira', 2009, 'F', 165), +(200628, 'Ayva', 2009, 'F', 164), +(200629, 'Evangelina', 2009, 'F', 164), +(200630, 'Harlie', 2009, 'F', 164), +(200631, 'Kailani', 2009, 'F', 164), +(200632, 'Kamiya', 2009, 'F', 164), +(200633, 'Nahla', 2009, 'F', 164), +(200634, 'Preslee', 2009, 'F', 164), +(200635, 'Susanna', 2009, 'F', 164), +(200636, 'Berkley', 2009, 'F', 163), +(200637, 'Kelsi', 2009, 'F', 163), +(200638, 'Reilly', 2009, 'F', 163), +(200639, 'Shaelyn', 2009, 'F', 163), +(200640, 'Ivette', 2009, 'F', 162), +(200641, 'Joslynn', 2009, 'F', 162), +(200642, 'Malayah', 2009, 'F', 162), +(200643, 'Ryley', 2009, 'F', 162), +(200644, 'Yolanda', 2009, 'F', 162), +(200645, 'Adamaris', 2009, 'F', 161); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(200646, 'Cayleigh', 2009, 'F', 161), +(200647, 'Emerald', 2009, 'F', 161), +(200648, 'Heavenly', 2009, 'F', 161), +(200649, 'Izzabella', 2009, 'F', 161), +(200650, 'Lourdes', 2009, 'F', 161), +(200651, 'Sunny', 2009, 'F', 161), +(200652, 'Thea', 2009, 'F', 161), +(200653, 'Alyse', 2009, 'F', 160), +(200654, 'Anaiah', 2009, 'F', 160), +(200655, 'Jackelyn', 2009, 'F', 160), +(200656, 'Jaya', 2009, 'F', 160), +(200657, 'Juana', 2009, 'F', 160), +(200658, 'Katharine', 2009, 'F', 160), +(200659, 'Lela', 2009, 'F', 160), +(200660, 'Remi', 2009, 'F', 160), +(200661, 'Samaria', 2009, 'F', 160), +(200662, 'Adrian', 2009, 'F', 159), +(200663, 'Brylie', 2009, 'F', 159), +(200664, 'Dasia', 2009, 'F', 159), +(200665, 'Elia', 2009, 'F', 159), +(200666, 'Estelle', 2009, 'F', 159), +(200667, 'Flor', 2009, 'F', 159), +(200668, 'Haidyn', 2009, 'F', 159), +(200669, 'Margot', 2009, 'F', 159), +(200670, 'Shira', 2009, 'F', 159), +(200671, 'Cayden', 2009, 'F', 158), +(200672, 'Jaela', 2009, 'F', 158), +(200673, 'Janaya', 2009, 'F', 158), +(200674, 'Leena', 2009, 'F', 158), +(200675, 'Nalani', 2009, 'F', 158), +(200676, 'Neha', 2009, 'F', 158), +(200677, 'Tracy', 2009, 'F', 158), +(200678, 'Alora', 2009, 'F', 157), +(200679, 'Aviana', 2009, 'F', 157), +(200680, 'Avianna', 2009, 'F', 157), +(200681, 'Betsy', 2009, 'F', 157), +(200682, 'Bryn', 2009, 'F', 157), +(200683, 'Jasmyn', 2009, 'F', 157), +(200684, 'Jazelle', 2009, 'F', 157), +(200685, 'Kaci', 2009, 'F', 157), +(200686, 'Raya', 2009, 'F', 157), +(200687, 'Rilee', 2009, 'F', 157), +(200688, 'Rosalyn', 2009, 'F', 157), +(200689, 'Aubry', 2009, 'F', 155), +(200690, 'Brianne', 2009, 'F', 154), +(200691, 'Kenadie', 2009, 'F', 154), +(200692, 'Lanie', 2009, 'F', 154), +(200693, 'Lluvia', 2009, 'F', 154), +(200694, 'Miyah', 2009, 'F', 154), +(200695, 'Antonella', 2009, 'F', 153), +(200696, 'Candy', 2009, 'F', 153), +(200697, 'Cloey', 2009, 'F', 153), +(200698, 'Jaycie', 2009, 'F', 153), +(200699, 'Kami', 2009, 'F', 153), +(200700, 'Allyssa', 2009, 'F', 152), +(200701, 'Amberly', 2009, 'F', 152), +(200702, 'Avani', 2009, 'F', 152), +(200703, 'Dianna', 2009, 'F', 152), +(200704, 'Emmie', 2009, 'F', 152), +(200705, 'Estefani', 2009, 'F', 152), +(200706, 'Kloey', 2009, 'F', 152), +(200707, 'Kora', 2009, 'F', 152), +(200708, 'Lillyann', 2009, 'F', 152), +(200709, 'Madisen', 2009, 'F', 152), +(200710, 'Sahana', 2009, 'F', 152), +(200711, 'Shakira', 2009, 'F', 152), +(200712, 'Alexys', 2009, 'F', 151), +(200713, 'Ariyanna', 2009, 'F', 151), +(200714, 'Calli', 2009, 'F', 151), +(200715, 'Coral', 2009, 'F', 151), +(200716, 'Kynlee', 2009, 'F', 151), +(200717, 'Vivien', 2009, 'F', 151), +(200718, 'Analy', 2009, 'F', 150), +(200719, 'Chastelyn', 2009, 'F', 150), +(200720, 'Katerina', 2009, 'F', 150), +(200721, 'Madysen', 2009, 'F', 150), +(200722, 'Sydnie', 2009, 'F', 150), +(200723, 'Aundrea', 2009, 'F', 149), +(200724, 'Emalee', 2009, 'F', 149), +(200725, 'Jamiah', 2009, 'F', 149), +(200726, 'Katarina', 2009, 'F', 149), +(200727, 'Lilli', 2009, 'F', 149), +(200728, 'Mandy', 2009, 'F', 149), +(200729, 'Priya', 2009, 'F', 149), +(200730, 'Annaleigh', 2009, 'F', 148), +(200731, 'Betty', 2009, 'F', 148), +(200732, 'Danae', 2009, 'F', 148), +(200733, 'Ema', 2009, 'F', 148), +(200734, 'Grecia', 2009, 'F', 148), +(200735, 'Jailynn', 2009, 'F', 148), +(200736, 'Mika', 2009, 'F', 148), +(200737, 'Roxanna', 2009, 'F', 148), +(200738, 'Alexandrea', 2009, 'F', 147), +(200739, 'Anissa', 2009, 'F', 147), +(200740, 'Carmella', 2009, 'F', 147), +(200741, 'Kaylani', 2009, 'F', 147), +(200742, 'Mabel', 2009, 'F', 147), +(200743, 'Sloan', 2009, 'F', 147), +(200744, 'Trisha', 2009, 'F', 147), +(200745, 'Zahara', 2009, 'F', 147), +(200746, 'Avalon', 2009, 'F', 146), +(200747, 'Breonna', 2009, 'F', 146), +(200748, 'Chelsie', 2009, 'F', 146), +(200749, 'Elayna', 2009, 'F', 146), +(200750, 'Eleni', 2009, 'F', 146), +(200751, 'Elisha', 2009, 'F', 146), +(200752, 'Ellison', 2009, 'F', 146), +(200753, 'Iman', 2009, 'F', 146), +(200754, 'Katia', 2009, 'F', 146), +(200755, 'Star', 2009, 'F', 146), +(200756, 'Taliah', 2009, 'F', 146), +(200757, 'Tyra', 2009, 'F', 146), +(200758, 'Alianna', 2009, 'F', 145), +(200759, 'Annmarie', 2009, 'F', 145), +(200760, 'Desire', 2009, 'F', 145), +(200761, 'Jaci', 2009, 'F', 145), +(200762, 'Rosario', 2009, 'F', 145), +(200763, 'Roxy', 2009, 'F', 145), +(200764, 'Starr', 2009, 'F', 145), +(200765, 'Anisa', 2009, 'F', 144), +(200766, 'Bentley', 2009, 'F', 144), +(200767, 'Brynna', 2009, 'F', 144), +(200768, 'Jaquelin', 2009, 'F', 144), +(200769, 'Lupita', 2009, 'F', 144), +(200770, 'Maryn', 2009, 'F', 144), +(200771, 'Nariyah', 2009, 'F', 144), +(200772, 'Shaila', 2009, 'F', 144), +(200773, 'Tristan', 2009, 'F', 144), +(200774, 'Alysa', 2009, 'F', 143), +(200775, 'Alysia', 2009, 'F', 143), +(200776, 'Annamarie', 2009, 'F', 143), +(200777, 'Clementine', 2009, 'F', 143), +(200778, 'Eryn', 2009, 'F', 143), +(200779, 'Gabriel', 2009, 'F', 143), +(200780, 'Jalyn', 2009, 'F', 143), +(200781, 'Lucie', 2009, 'F', 143), +(200782, 'Skylee', 2009, 'F', 143), +(200783, 'Yaretzy', 2009, 'F', 143), +(200784, 'Caylin', 2009, 'F', 142), +(200785, 'Charlene', 2009, 'F', 142), +(200786, 'Gracey', 2009, 'F', 142), +(200787, 'Jenesis', 2009, 'F', 142), +(200788, 'Jenifer', 2009, 'F', 142), +(200789, 'Jorja', 2009, 'F', 142), +(200790, 'Katalina', 2009, 'F', 142), +(200791, 'Mackenna', 2009, 'F', 142), +(200792, 'Mariya', 2009, 'F', 142), +(200793, 'Melani', 2009, 'F', 142), +(200794, 'Xitlali', 2009, 'F', 142), +(200795, 'Ania', 2009, 'F', 141), +(200796, 'Dariana', 2009, 'F', 141), +(200797, 'Ellianna', 2009, 'F', 141), +(200798, 'Leela', 2009, 'F', 141), +(200799, 'Vianney', 2009, 'F', 141), +(200800, 'Harleigh', 2009, 'F', 140), +(200801, 'Jasleen', 2009, 'F', 140), +(200802, 'Linnea', 2009, 'F', 140), +(200803, 'Loren', 2009, 'F', 140), +(200804, 'Magnolia', 2009, 'F', 140), +(200805, 'Mari', 2009, 'F', 140), +(200806, 'Rhyan', 2009, 'F', 140), +(200807, 'Tanvi', 2009, 'F', 140), +(200808, 'Anali', 2009, 'F', 139), +(200809, 'Anayah', 2009, 'F', 139), +(200810, 'Brook', 2009, 'F', 139), +(200811, 'Cailey', 2009, 'F', 139), +(200812, 'Gwenyth', 2009, 'F', 139), +(200813, 'Haily', 2009, 'F', 139), +(200814, 'Kristine', 2009, 'F', 139), +(200815, 'Louisa', 2009, 'F', 139), +(200816, 'Mayah', 2009, 'F', 139), +(200817, 'Mylie', 2009, 'F', 139), +(200818, 'Nailah', 2009, 'F', 139), +(200819, 'Yazmine', 2009, 'F', 139), +(200820, 'Beverly', 2009, 'F', 138), +(200821, 'Capri', 2009, 'F', 138), +(200822, 'Carys', 2009, 'F', 138), +(200823, 'Elly', 2009, 'F', 138), +(200824, 'Felicia', 2009, 'F', 138), +(200825, 'Janya', 2009, 'F', 138), +(200826, 'Jurnee', 2009, 'F', 138), +(200827, 'Kasandra', 2009, 'F', 138), +(200828, 'Lamya', 2009, 'F', 138), +(200829, 'Maryann', 2009, 'F', 138), +(200830, 'Maxine', 2009, 'F', 138), +(200831, 'Andi', 2009, 'F', 137), +(200832, 'Andie', 2009, 'F', 137), +(200833, 'Brionna', 2009, 'F', 137), +(200834, 'Faye', 2009, 'F', 137), +(200835, 'Holland', 2009, 'F', 137), +(200836, 'Jaslynn', 2009, 'F', 137), +(200837, 'Kameryn', 2009, 'F', 137), +(200838, 'Katelin', 2009, 'F', 137), +(200839, 'Kyrie', 2009, 'F', 137), +(200840, 'Rosie', 2009, 'F', 137), +(200841, 'Alyssia', 2009, 'F', 136), +(200842, 'Arionna', 2009, 'F', 136), +(200843, 'Audrie', 2009, 'F', 136), +(200844, 'Darby', 2009, 'F', 136), +(200845, 'Daria', 2009, 'F', 136), +(200846, 'Emmerson', 2009, 'F', 136), +(200847, 'Haiden', 2009, 'F', 136), +(200848, 'Jaime', 2009, 'F', 136), +(200849, 'Yessenia', 2009, 'F', 136), +(200850, 'Azalea', 2009, 'F', 135), +(200851, 'Eunice', 2009, 'F', 135), +(200852, 'Kalynn', 2009, 'F', 135), +(200853, 'Marcela', 2009, 'F', 135), +(200854, 'Petra', 2009, 'F', 135), +(200855, 'Rianna', 2009, 'F', 135), +(200856, 'Sabina', 2009, 'F', 135), +(200857, 'Triniti', 2009, 'F', 135), +(200858, 'Zaylee', 2009, 'F', 135), +(200859, 'Alea', 2009, 'F', 134), +(200860, 'Belle', 2009, 'F', 134), +(200861, 'Dior', 2009, 'F', 134), +(200862, 'Emerie', 2009, 'F', 134), +(200863, 'Emmalynn', 2009, 'F', 134), +(200864, 'Joseline', 2009, 'F', 134), +(200865, 'Kaniya', 2009, 'F', 134), +(200866, 'Kayle', 2009, 'F', 134), +(200867, 'Keren', 2009, 'F', 134), +(200868, 'Kierstyn', 2009, 'F', 134), +(200869, 'Lori', 2009, 'F', 134), +(200870, 'Marli', 2009, 'F', 134), +(200871, 'Melisa', 2009, 'F', 134), +(200872, 'Montserrat', 2009, 'F', 134), +(200873, 'Sylvie', 2009, 'F', 134), +(200874, 'Vianey', 2009, 'F', 134), +(200875, 'Vienna', 2009, 'F', 134), +(200876, 'Aja', 2009, 'F', 133), +(200877, 'Beatrix', 2009, 'F', 133), +(200878, 'Diane', 2009, 'F', 133), +(200879, 'Elana', 2009, 'F', 133), +(200880, 'Kaniyah', 2009, 'F', 133), +(200881, 'Khadija', 2009, 'F', 133), +(200882, 'Leann', 2009, 'F', 133), +(200883, 'Mareli', 2009, 'F', 133), +(200884, 'Semaj', 2009, 'F', 133), +(200885, 'Wren', 2009, 'F', 133), +(200886, 'Citlaly', 2009, 'F', 132), +(200887, 'Colbie', 2009, 'F', 132), +(200888, 'Irelyn', 2009, 'F', 132), +(200889, 'Jacie', 2009, 'F', 132), +(200890, 'Jackie', 2009, 'F', 132), +(200891, 'Lexus', 2009, 'F', 132), +(200892, 'Maycee', 2009, 'F', 132), +(200893, 'Remy', 2009, 'F', 132), +(200894, 'Stormy', 2009, 'F', 132), +(200895, 'Veda', 2009, 'F', 132), +(200896, 'Alliyah', 2009, 'F', 131), +(200897, 'Ayah', 2009, 'F', 131), +(200898, 'Clover', 2009, 'F', 131), +(200899, 'Halie', 2009, 'F', 131), +(200900, 'Jael', 2009, 'F', 131), +(200901, 'Jalissa', 2009, 'F', 131), +(200902, 'Janell', 2009, 'F', 131), +(200903, 'Keziah', 2009, 'F', 131), +(200904, 'Maricela', 2009, 'F', 131), +(200905, 'Ria', 2009, 'F', 131), +(200906, 'Aniston', 2009, 'F', 130), +(200907, 'Dasha', 2009, 'F', 130), +(200908, 'Evolet', 2009, 'F', 130), +(200909, 'Jayna', 2009, 'F', 130), +(200910, 'Layna', 2009, 'F', 130), +(200911, 'Markayla', 2009, 'F', 130), +(200912, 'Ameera', 2009, 'F', 129), +(200913, 'Ari', 2009, 'F', 129), +(200914, 'Darcy', 2009, 'F', 129), +(200915, 'Farah', 2009, 'F', 129), +(200916, 'Kari', 2009, 'F', 129), +(200917, 'Leanne', 2009, 'F', 129), +(200918, 'Montana', 2009, 'F', 129), +(200919, 'Taleah', 2009, 'F', 129), +(200920, 'Cielo', 2009, 'F', 128), +(200921, 'Delanie', 2009, 'F', 128), +(200922, 'Keegan', 2009, 'F', 128), +(200923, 'Paislee', 2009, 'F', 128), +(200924, 'Randi', 2009, 'F', 128), +(200925, 'Sade', 2009, 'F', 128), +(200926, 'Simran', 2009, 'F', 128), +(200927, 'Yoselyn', 2009, 'F', 128), +(200928, 'Elora', 2009, 'F', 127), +(200929, 'Harmonie', 2009, 'F', 127), +(200930, 'Jamia', 2009, 'F', 127), +(200931, 'Kalina', 2009, 'F', 127), +(200932, 'Karime', 2009, 'F', 127), +(200933, 'Makiah', 2009, 'F', 127), +(200934, 'Saniah', 2009, 'F', 127), +(200935, 'Anaiya', 2009, 'F', 126), +(200936, 'Anushka', 2009, 'F', 126), +(200937, 'Darla', 2009, 'F', 126), +(200938, 'Frankie', 2009, 'F', 126), +(200939, 'Jayme', 2009, 'F', 126), +(200940, 'Jeanette', 2009, 'F', 126), +(200941, 'Kiya', 2009, 'F', 126), +(200942, 'Liza', 2009, 'F', 126), +(200943, 'Yarel', 2009, 'F', 126), +(200944, 'Austyn', 2009, 'F', 125), +(200945, 'Brooklynne', 2009, 'F', 125), +(200946, 'Emmeline', 2009, 'F', 125), +(200947, 'Freya', 2009, 'F', 125), +(200948, 'Kamaria', 2009, 'F', 125), +(200949, 'Kaydance', 2009, 'F', 125), +(200950, 'Leilany', 2009, 'F', 125), +(200951, 'Lisbeth', 2009, 'F', 125), +(200952, 'Mariajose', 2009, 'F', 125), +(200953, 'Milla', 2009, 'F', 125), +(200954, 'Nellie', 2009, 'F', 125), +(200955, 'Norma', 2009, 'F', 125), +(200956, 'Saphira', 2009, 'F', 125), +(200957, 'Vicky', 2009, 'F', 125), +(200958, 'Yvonne', 2009, 'F', 125), +(200959, 'Adelle', 2009, 'F', 124), +(200960, 'Adina', 2009, 'F', 124), +(200961, 'Baylie', 2009, 'F', 124), +(200962, 'Cienna', 2009, 'F', 124), +(200963, 'Ellis', 2009, 'F', 124), +(200964, 'Ila', 2009, 'F', 124), +(200965, 'Julisa', 2009, 'F', 124), +(200966, 'Makaela', 2009, 'F', 124), +(200967, 'Rosalinda', 2009, 'F', 124), +(200968, 'Alexi', 2009, 'F', 123), +(200969, 'Aysia', 2009, 'F', 123), +(200970, 'Christa', 2009, 'F', 123), +(200971, 'Hattie', 2009, 'F', 123), +(200972, 'Jiselle', 2009, 'F', 123), +(200973, 'Lynette', 2009, 'F', 123), +(200974, 'Malena', 2009, 'F', 123), +(200975, 'Nayla', 2009, 'F', 123), +(200976, 'Olyvia', 2009, 'F', 123), +(200977, 'Sanjana', 2009, 'F', 123), +(200978, 'Tamya', 2009, 'F', 123), +(200979, 'Zoya', 2009, 'F', 123), +(200980, 'Akeelah', 2009, 'F', 122), +(200981, 'Brynley', 2009, 'F', 122), +(200982, 'Cameryn', 2009, 'F', 122), +(200983, 'Jolee', 2009, 'F', 122), +(200984, 'Josslyn', 2009, 'F', 122), +(200985, 'Marjorie', 2009, 'F', 122), +(200986, 'Shriya', 2009, 'F', 122), +(200987, 'Adrianne', 2009, 'F', 121), +(200988, 'Juanita', 2009, 'F', 121), +(200989, 'Taylee', 2009, 'F', 121), +(200990, 'Aleksandra', 2009, 'F', 120), +(200991, 'Ariela', 2009, 'F', 120), +(200992, 'Avril', 2009, 'F', 120), +(200993, 'Baileigh', 2009, 'F', 120), +(200994, 'Carrington', 2009, 'F', 120), +(200995, 'Christy', 2009, 'F', 120), +(200996, 'Coraline', 2009, 'F', 120), +(200997, 'Devon', 2009, 'F', 120), +(200998, 'Gladys', 2009, 'F', 120), +(200999, 'Issabella', 2009, 'F', 120), +(201000, 'Jacquelin', 2009, 'F', 120), +(201001, 'Jessenia', 2009, 'F', 120), +(201002, 'Kaiden', 2009, 'F', 120), +(201003, 'Keara', 2009, 'F', 120), +(201004, 'Lexy', 2009, 'F', 120), +(201005, 'Martina', 2009, 'F', 120), +(201006, 'Mindy', 2009, 'F', 120), +(201007, 'Shianne', 2009, 'F', 120), +(201008, 'Siri', 2009, 'F', 120), +(201009, 'Sonja', 2009, 'F', 120), +(201010, 'Xitlaly', 2009, 'F', 120), +(201011, 'Yulissa', 2009, 'F', 120), +(201012, 'Carter', 2009, 'F', 119), +(201013, 'Halo', 2009, 'F', 119), +(201014, 'Isadora', 2009, 'F', 119), +(201015, 'Jalia', 2009, 'F', 119), +(201016, 'Kaylan', 2009, 'F', 119), +(201017, 'Milani', 2009, 'F', 119), +(201018, 'Sahasra', 2009, 'F', 119), +(201019, 'Shaylynn', 2009, 'F', 119), +(201020, 'Taelyn', 2009, 'F', 119), +(201021, 'Aminah', 2009, 'F', 118), +(201022, 'Araya', 2009, 'F', 118), +(201023, 'Chloee', 2009, 'F', 118), +(201024, 'Kaelin', 2009, 'F', 118), +(201025, 'Kenadee', 2009, 'F', 118), +(201026, 'Makyla', 2009, 'F', 118), +(201027, 'Mariel', 2009, 'F', 118), +(201028, 'Olga', 2009, 'F', 118), +(201029, 'Rachelle', 2009, 'F', 118), +(201030, 'Sapphire', 2009, 'F', 118), +(201031, 'Alyna', 2009, 'F', 117), +(201032, 'Amora', 2009, 'F', 117), +(201033, 'Brihanna', 2009, 'F', 117), +(201034, 'Chanelle', 2009, 'F', 117), +(201035, 'Emmaleigh', 2009, 'F', 117), +(201036, 'Ivory', 2009, 'F', 117), +(201037, 'Jamaya', 2009, 'F', 117), +(201038, 'Lyndsey', 2009, 'F', 117), +(201039, 'Mylah', 2009, 'F', 117), +(201040, 'Raniya', 2009, 'F', 117), +(201041, 'Antoinette', 2009, 'F', 116), +(201042, 'Davina', 2009, 'F', 116), +(201043, 'Everly', 2009, 'F', 116), +(201044, 'Gissel', 2009, 'F', 116), +(201045, 'Jaila', 2009, 'F', 116), +(201046, 'Jania', 2009, 'F', 116), +(201047, 'Kristy', 2009, 'F', 116), +(201048, 'Kyara', 2009, 'F', 116), +(201049, 'Maisie', 2009, 'F', 116), +(201050, 'Raniyah', 2009, 'F', 116), +(201051, 'Ariadna', 2009, 'F', 115), +(201052, 'Cailin', 2009, 'F', 115), +(201053, 'Carmela', 2009, 'F', 115), +(201054, 'Cate', 2009, 'F', 115), +(201055, 'Della', 2009, 'F', 115), +(201056, 'Jianna', 2009, 'F', 115), +(201057, 'Kennadi', 2009, 'F', 115), +(201058, 'Mazie', 2009, 'F', 115), +(201059, 'Shae', 2009, 'F', 115), +(201060, 'Yasmeen', 2009, 'F', 115), +(201061, 'Angely', 2009, 'F', 114), +(201062, 'Evalynn', 2009, 'F', 114), +(201063, 'Karyme', 2009, 'F', 114), +(201064, 'Kaydee', 2009, 'F', 114), +(201065, 'Kenadi', 2009, 'F', 114), +(201066, 'Scarlette', 2009, 'F', 114), +(201067, 'Viola', 2009, 'F', 114), +(201068, 'Yajaira', 2009, 'F', 114), +(201069, 'Aiden', 2009, 'F', 113), +(201070, 'Jahzara', 2009, 'F', 113), +(201071, 'Josalyn', 2009, 'F', 113), +(201072, 'Layne', 2009, 'F', 113), +(201073, 'Lexis', 2009, 'F', 113), +(201074, 'Madelin', 2009, 'F', 113), +(201075, 'Mayrin', 2009, 'F', 113), +(201076, 'Remington', 2009, 'F', 113), +(201077, 'Stefany', 2009, 'F', 113), +(201078, 'Ailani', 2009, 'F', 112), +(201079, 'Aleyah', 2009, 'F', 112), +(201080, 'Anyah', 2009, 'F', 112), +(201081, 'Chyna', 2009, 'F', 112), +(201082, 'Dawn', 2009, 'F', 112), +(201083, 'Hollie', 2009, 'F', 112), +(201084, 'Jovie', 2009, 'F', 112), +(201085, 'Kadyn', 2009, 'F', 112), +(201086, 'Katheryn', 2009, 'F', 112), +(201087, 'Keyonna', 2009, 'F', 112), +(201088, 'Kiarra', 2009, 'F', 112), +(201089, 'Leeann', 2009, 'F', 112), +(201090, 'Rain', 2009, 'F', 112), +(201091, 'Zaniah', 2009, 'F', 112), +(201092, 'Blessing', 2009, 'F', 111), +(201093, 'Chloie', 2009, 'F', 111), +(201094, 'Egypt', 2009, 'F', 111), +(201095, 'Judy', 2009, 'F', 111), +(201096, 'Kaily', 2009, 'F', 111), +(201097, 'Kamdyn', 2009, 'F', 111), +(201098, 'Kameron', 2009, 'F', 111), +(201099, 'Kimani', 2009, 'F', 111), +(201100, 'Laela', 2009, 'F', 111), +(201101, 'Adria', 2009, 'F', 110), +(201102, 'Amarie', 2009, 'F', 110), +(201103, 'August', 2009, 'F', 110), +(201104, 'Ciera', 2009, 'F', 110), +(201105, 'Grayson', 2009, 'F', 110), +(201106, 'Jazleen', 2009, 'F', 110), +(201107, 'Joanne', 2009, 'F', 110), +(201108, 'Kyah', 2009, 'F', 110), +(201109, 'Magaly', 2009, 'F', 110), +(201110, 'Marion', 2009, 'F', 110), +(201111, 'Misha', 2009, 'F', 110), +(201112, 'Rania', 2009, 'F', 110), +(201113, 'Tallulah', 2009, 'F', 110), +(201114, 'Ysabella', 2009, 'F', 110), +(201115, 'Addelyn', 2009, 'F', 109), +(201116, 'Addisen', 2009, 'F', 109), +(201117, 'Analisa', 2009, 'F', 109), +(201118, 'Angeles', 2009, 'F', 109), +(201119, 'Aubrielle', 2009, 'F', 109), +(201120, 'Braylin', 2009, 'F', 109), +(201121, 'Cecily', 2009, 'F', 109), +(201122, 'Daniya', 2009, 'F', 109), +(201123, 'Emelyn', 2009, 'F', 109), +(201124, 'Emi', 2009, 'F', 109), +(201125, 'Kaidyn', 2009, 'F', 109), +(201126, 'Kaylei', 2009, 'F', 109), +(201127, 'Maleigha', 2009, 'F', 109), +(201128, 'Moira', 2009, 'F', 109), +(201129, 'Nala', 2009, 'F', 109), +(201130, 'Sana', 2009, 'F', 109), +(201131, 'Sydni', 2009, 'F', 109), +(201132, 'Tristyn', 2009, 'F', 109), +(201133, 'Zaina', 2009, 'F', 109), +(201134, 'Adisyn', 2009, 'F', 108), +(201135, 'Alonna', 2009, 'F', 108), +(201136, 'Anessa', 2009, 'F', 108), +(201137, 'Arlette', 2009, 'F', 108), +(201138, 'Baila', 2009, 'F', 108), +(201139, 'Georgina', 2009, 'F', 108), +(201140, 'Irelynn', 2009, 'F', 108), +(201141, 'Keilani', 2009, 'F', 108), +(201142, 'Ramona', 2009, 'F', 108), +(201143, 'Reanna', 2009, 'F', 108), +(201144, 'Shay', 2009, 'F', 108), +(201145, 'Stefanie', 2009, 'F', 108), +(201146, 'Valencia', 2009, 'F', 108), +(201147, 'Acacia', 2009, 'F', 107), +(201148, 'Ani', 2009, 'F', 107), +(201149, 'Ayesha', 2009, 'F', 107), +(201150, 'Casandra', 2009, 'F', 107), +(201151, 'Dafne', 2009, 'F', 107), +(201152, 'Octavia', 2009, 'F', 107), +(201153, 'Sania', 2009, 'F', 107), +(201154, 'Yael', 2009, 'F', 107), +(201155, 'Abbigale', 2009, 'F', 106), +(201156, 'Adilyn', 2009, 'F', 106), +(201157, 'Alessa', 2009, 'F', 106), +(201158, 'Avalyn', 2009, 'F', 106), +(201159, 'Calla', 2009, 'F', 106), +(201160, 'Caylie', 2009, 'F', 106), +(201161, 'Daniyah', 2009, 'F', 106), +(201162, 'Evan', 2009, 'F', 106), +(201163, 'Jadelyn', 2009, 'F', 106), +(201164, 'Jaina', 2009, 'F', 106), +(201165, 'Janeth', 2009, 'F', 106), +(201166, 'Jesse', 2009, 'F', 106), +(201167, 'Jocelin', 2009, 'F', 106), +(201168, 'Keylee', 2009, 'F', 106), +(201169, 'Kloie', 2009, 'F', 106), +(201170, 'Maryah', 2009, 'F', 106), +(201171, 'Nadya', 2009, 'F', 106), +(201172, 'Nechama', 2009, 'F', 106), +(201173, 'Preslie', 2009, 'F', 106), +(201174, 'Sabine', 2009, 'F', 106), +(201175, 'Shaina', 2009, 'F', 106), +(201176, 'Shoshana', 2009, 'F', 106), +(201177, 'Trinitee', 2009, 'F', 106), +(201178, 'Adaline', 2009, 'F', 105), +(201179, 'Amaiya', 2009, 'F', 105), +(201180, 'Chevelle', 2009, 'F', 105), +(201181, 'Delila', 2009, 'F', 105), +(201182, 'Italia', 2009, 'F', 105), +(201183, 'Jalisa', 2009, 'F', 105), +(201184, 'Kahlan', 2009, 'F', 105), +(201185, 'Karely', 2009, 'F', 105), +(201186, 'Khalia', 2009, 'F', 105), +(201187, 'Magdalene', 2009, 'F', 105), +(201188, 'Naya', 2009, 'F', 105), +(201189, 'Scout', 2009, 'F', 105), +(201190, 'Whitley', 2009, 'F', 105), +(201191, 'Anayeli', 2009, 'F', 104), +(201192, 'Angelia', 2009, 'F', 104), +(201193, 'Anisha', 2009, 'F', 104), +(201194, 'Cianna', 2009, 'F', 104), +(201195, 'Flora', 2009, 'F', 104), +(201196, 'Gianni', 2009, 'F', 104), +(201197, 'Jena', 2009, 'F', 104), +(201198, 'Joscelyn', 2009, 'F', 104), +(201199, 'Josey', 2009, 'F', 104), +(201200, 'Lariah', 2009, 'F', 104), +(201201, 'Penny', 2009, 'F', 104), +(201202, 'Samia', 2009, 'F', 104), +(201203, 'Shamya', 2009, 'F', 104), +(201204, 'Skylah', 2009, 'F', 104), +(201205, 'Taylin', 2009, 'F', 104), +(201206, 'Edna', 2009, 'F', 103), +(201207, 'Elli', 2009, 'F', 103), +(201208, 'Elysia', 2009, 'F', 103), +(201209, 'Eternity', 2009, 'F', 103), +(201210, 'Honor', 2009, 'F', 103), +(201211, 'Kaylene', 2009, 'F', 103), +(201212, 'Kellie', 2009, 'F', 103), +(201213, 'Kennady', 2009, 'F', 103), +(201214, 'Misty', 2009, 'F', 103), +(201215, 'Nyomi', 2009, 'F', 103), +(201216, 'Samarah', 2009, 'F', 103), +(201217, 'Sariya', 2009, 'F', 103), +(201218, 'Violette', 2009, 'F', 103), +(201219, 'Ahtziri', 2009, 'F', 102), +(201220, 'Audree', 2009, 'F', 102), +(201221, 'Aven', 2009, 'F', 102), +(201222, 'Claira', 2009, 'F', 102), +(201223, 'Dream', 2009, 'F', 102), +(201224, 'Jalyssa', 2009, 'F', 102), +(201225, 'Jennah', 2009, 'F', 102), +(201226, 'Kenlee', 2009, 'F', 102), +(201227, 'Laina', 2009, 'F', 102), +(201228, 'Louise', 2009, 'F', 102), +(201229, 'Mallorie', 2009, 'F', 102), +(201230, 'Sinai', 2009, 'F', 102), +(201231, 'Allegra', 2009, 'F', 101), +(201232, 'Annemarie', 2009, 'F', 101), +(201233, 'Ariadne', 2009, 'F', 101), +(201234, 'Arihanna', 2009, 'F', 101), +(201235, 'Cambree', 2009, 'F', 101), +(201236, 'Danya', 2009, 'F', 101), +(201237, 'Deisy', 2009, 'F', 101), +(201238, 'Giulia', 2009, 'F', 101), +(201239, 'Janna', 2009, 'F', 101), +(201240, 'Jaydah', 2009, 'F', 101), +(201241, 'Kaileigh', 2009, 'F', 101), +(201242, 'Amaia', 2009, 'F', 100), +(201243, 'Arissa', 2009, 'F', 100), +(201244, 'Briseida', 2009, 'F', 100), +(201245, 'Britany', 2009, 'F', 100), +(201246, 'Chandler', 2009, 'F', 100), +(201247, 'Channing', 2009, 'F', 100), +(201248, 'Chase', 2009, 'F', 100), +(201249, 'Connie', 2009, 'F', 100), +(201250, 'Dora', 2009, 'F', 100), +(201251, 'Ela', 2009, 'F', 100), +(201252, 'Greydis', 2009, 'F', 100), +(201253, 'Jalaya', 2009, 'F', 100), +(201254, 'Jiya', 2009, 'F', 100), +(201255, 'Lorraine', 2009, 'F', 100), +(201256, 'Madelyne', 2009, 'F', 100), +(201257, 'Mahi', 2009, 'F', 100), +(201258, 'Malea', 2009, 'F', 100), +(201259, 'Maliha', 2009, 'F', 100), +(201260, 'Marlena', 2009, 'F', 100), +(201261, 'Noelani', 2009, 'F', 100), +(201262, 'Tierney', 2009, 'F', 100), +(201263, 'Tierra', 2009, 'F', 100), +(201264, 'Tyanna', 2009, 'F', 100), +(201265, 'Vida', 2009, 'F', 100), +(201266, 'Zaida', 2009, 'F', 100), +(201267, 'Jacob', 2009, 'M', 21144), +(201268, 'Ethan', 2009, 'M', 19834), +(201269, 'Michael', 2009, 'M', 18909), +(201270, 'Alexander', 2009, 'M', 18215), +(201271, 'William', 2009, 'M', 17899), +(201272, 'Joshua', 2009, 'M', 17622), +(201273, 'Daniel', 2009, 'M', 17521), +(201274, 'Jayden', 2009, 'M', 17263), +(201275, 'Noah', 2009, 'M', 17223), +(201276, 'Christopher', 2009, 'M', 16333), +(201277, 'Anthony', 2009, 'M', 16284), +(201278, 'Aiden', 2009, 'M', 16000), +(201279, 'Matthew', 2009, 'M', 15970), +(201280, 'David', 2009, 'M', 15420), +(201281, 'Joseph', 2009, 'M', 14895), +(201282, 'Andrew', 2009, 'M', 14844), +(201283, 'Logan', 2009, 'M', 14442), +(201284, 'James', 2009, 'M', 14175), +(201285, 'Benjamin', 2009, 'M', 13103), +(201286, 'Ryan', 2009, 'M', 13099), +(201287, 'Elijah', 2009, 'M', 12802), +(201288, 'Gabriel', 2009, 'M', 12801), +(201289, 'Christian', 2009, 'M', 12625), +(201290, 'Samuel', 2009, 'M', 12133), +(201291, 'Jackson', 2009, 'M', 12111), +(201292, 'Nathan', 2009, 'M', 12111), +(201293, 'John', 2009, 'M', 12100), +(201294, 'Tyler', 2009, 'M', 11531), +(201295, 'Jonathan', 2009, 'M', 11359), +(201296, 'Dylan', 2009, 'M', 11348), +(201297, 'Caleb', 2009, 'M', 10980), +(201298, 'Nicholas', 2009, 'M', 10841), +(201299, 'Gavin', 2009, 'M', 10733), +(201300, 'Mason', 2009, 'M', 10677), +(201301, 'Evan', 2009, 'M', 10273), +(201302, 'Landon', 2009, 'M', 10152), +(201303, 'Angel', 2009, 'M', 9838), +(201304, 'Brandon', 2009, 'M', 9831), +(201305, 'Lucas', 2009, 'M', 9597), +(201306, 'Isaac', 2009, 'M', 9541), +(201307, 'Isaiah', 2009, 'M', 9224), +(201308, 'Jack', 2009, 'M', 9017), +(201309, 'Jose', 2009, 'M', 8805), +(201310, 'Kevin', 2009, 'M', 8766), +(201311, 'Jordan', 2009, 'M', 8640), +(201312, 'Justin', 2009, 'M', 8614), +(201313, 'Luke', 2009, 'M', 8613), +(201314, 'Brayden', 2009, 'M', 8588), +(201315, 'Liam', 2009, 'M', 8556), +(201316, 'Carter', 2009, 'M', 8165), +(201317, 'Owen', 2009, 'M', 8138), +(201318, 'Connor', 2009, 'M', 8095), +(201319, 'Zachary', 2009, 'M', 8075), +(201320, 'Aaron', 2009, 'M', 7963), +(201321, 'Robert', 2009, 'M', 7812), +(201322, 'Hunter', 2009, 'M', 7735), +(201323, 'Thomas', 2009, 'M', 7715), +(201324, 'Adrian', 2009, 'M', 7629), +(201325, 'Cameron', 2009, 'M', 7625), +(201326, 'Wyatt', 2009, 'M', 7396), +(201327, 'Chase', 2009, 'M', 7382), +(201328, 'Julian', 2009, 'M', 7375), +(201329, 'Charles', 2009, 'M', 7277), +(201330, 'Austin', 2009, 'M', 7274), +(201331, 'Jeremiah', 2009, 'M', 7210), +(201332, 'Jason', 2009, 'M', 6910), +(201333, 'Juan', 2009, 'M', 6280), +(201334, 'Xavier', 2009, 'M', 6202), +(201335, 'Luis', 2009, 'M', 6133), +(201336, 'Sebastian', 2009, 'M', 5981), +(201337, 'Henry', 2009, 'M', 5892), +(201338, 'Aidan', 2009, 'M', 5801), +(201339, 'Ian', 2009, 'M', 5800), +(201340, 'Adam', 2009, 'M', 5662), +(201341, 'Nathaniel', 2009, 'M', 5416), +(201342, 'Diego', 2009, 'M', 5411), +(201343, 'Jesus', 2009, 'M', 5384), +(201344, 'Brody', 2009, 'M', 5382), +(201345, 'Carlos', 2009, 'M', 5371), +(201346, 'Tristan', 2009, 'M', 5346), +(201347, 'Dominic', 2009, 'M', 5320), +(201348, 'Cole', 2009, 'M', 5273), +(201349, 'Alex', 2009, 'M', 5159), +(201350, 'Cooper', 2009, 'M', 5070), +(201351, 'Levi', 2009, 'M', 5008), +(201352, 'Josiah', 2009, 'M', 4999), +(201353, 'Carson', 2009, 'M', 4992), +(201354, 'Ayden', 2009, 'M', 4991), +(201355, 'Blake', 2009, 'M', 4941), +(201356, 'Eli', 2009, 'M', 4905), +(201357, 'Hayden', 2009, 'M', 4857), +(201358, 'Bryan', 2009, 'M', 4847), +(201359, 'Colton', 2009, 'M', 4766), +(201360, 'Brian', 2009, 'M', 4648), +(201361, 'Eric', 2009, 'M', 4634), +(201362, 'Parker', 2009, 'M', 4624), +(201363, 'Sean', 2009, 'M', 4330), +(201364, 'Oliver', 2009, 'M', 4284), +(201365, 'Kyle', 2009, 'M', 4171), +(201366, 'Miguel', 2009, 'M', 4169), +(201367, 'Jaden', 2009, 'M', 4158), +(201368, 'Kaden', 2009, 'M', 4057), +(201369, 'Caden', 2009, 'M', 4019), +(201370, 'Max', 2009, 'M', 3953), +(201371, 'Antonio', 2009, 'M', 3905), +(201372, 'Steven', 2009, 'M', 3820), +(201373, 'Riley', 2009, 'M', 3781), +(201374, 'Kaleb', 2009, 'M', 3777), +(201375, 'Timothy', 2009, 'M', 3745), +(201376, 'Brady', 2009, 'M', 3741), +(201377, 'Bryce', 2009, 'M', 3707), +(201378, 'Jesse', 2009, 'M', 3666), +(201379, 'Colin', 2009, 'M', 3654), +(201380, 'Richard', 2009, 'M', 3604), +(201381, 'Joel', 2009, 'M', 3557), +(201382, 'Ashton', 2009, 'M', 3554), +(201383, 'Victor', 2009, 'M', 3542), +(201384, 'Micah', 2009, 'M', 3539), +(201385, 'Vincent', 2009, 'M', 3491), +(201386, 'Preston', 2009, 'M', 3461), +(201387, 'Alejandro', 2009, 'M', 3437), +(201388, 'Nolan', 2009, 'M', 3434), +(201389, 'Marcus', 2009, 'M', 3402), +(201390, 'Jaxon', 2009, 'M', 3387), +(201391, 'Jake', 2009, 'M', 3380), +(201392, 'Devin', 2009, 'M', 3376), +(201393, 'Damian', 2009, 'M', 3343), +(201394, 'Eduardo', 2009, 'M', 3334), +(201395, 'Patrick', 2009, 'M', 3244), +(201396, 'Santiago', 2009, 'M', 3124), +(201397, 'Oscar', 2009, 'M', 3114), +(201398, 'Maxwell', 2009, 'M', 3077), +(201399, 'Giovanni', 2009, 'M', 3067), +(201400, 'Collin', 2009, 'M', 3057), +(201401, 'Cody', 2009, 'M', 2993), +(201402, 'Ivan', 2009, 'M', 2987), +(201403, 'Edward', 2009, 'M', 2979), +(201404, 'Kayden', 2009, 'M', 2959), +(201405, 'Jeremy', 2009, 'M', 2937), +(201406, 'Seth', 2009, 'M', 2936), +(201407, 'Gage', 2009, 'M', 2880), +(201408, 'Alan', 2009, 'M', 2842), +(201409, 'Cayden', 2009, 'M', 2747), +(201410, 'Emmanuel', 2009, 'M', 2734), +(201411, 'Grant', 2009, 'M', 2725), +(201412, 'Ryder', 2009, 'M', 2716), +(201413, 'Jonah', 2009, 'M', 2715), +(201414, 'Peyton', 2009, 'M', 2702), +(201415, 'Trevor', 2009, 'M', 2658), +(201416, 'Hudson', 2009, 'M', 2648), +(201417, 'Bryson', 2009, 'M', 2605), +(201418, 'Kenneth', 2009, 'M', 2602), +(201419, 'Mark', 2009, 'M', 2570), +(201420, 'Omar', 2009, 'M', 2548), +(201421, 'Jorge', 2009, 'M', 2512), +(201422, 'Conner', 2009, 'M', 2492), +(201423, 'Nicolas', 2009, 'M', 2488), +(201424, 'Elias', 2009, 'M', 2480), +(201425, 'Tanner', 2009, 'M', 2452), +(201426, 'Paul', 2009, 'M', 2421), +(201427, 'Miles', 2009, 'M', 2402), +(201428, 'Cristian', 2009, 'M', 2399), +(201429, 'George', 2009, 'M', 2380), +(201430, 'Leonardo', 2009, 'M', 2365), +(201431, 'Asher', 2009, 'M', 2349), +(201432, 'Malachi', 2009, 'M', 2340), +(201433, 'Jace', 2009, 'M', 2338), +(201434, 'Derek', 2009, 'M', 2300), +(201435, 'Ricardo', 2009, 'M', 2299), +(201436, 'Kaiden', 2009, 'M', 2298), +(201437, 'Jaiden', 2009, 'M', 2262), +(201438, 'Andres', 2009, 'M', 2255), +(201439, 'Grayson', 2009, 'M', 2255), +(201440, 'Braxton', 2009, 'M', 2233), +(201441, 'Jaylen', 2009, 'M', 2230), +(201442, 'Wesley', 2009, 'M', 2206), +(201443, 'Travis', 2009, 'M', 2193), +(201444, 'Shane', 2009, 'M', 2128), +(201445, 'Fernando', 2009, 'M', 2124), +(201446, 'Abraham', 2009, 'M', 2105), +(201447, 'Maddox', 2009, 'M', 2102), +(201448, 'Jude', 2009, 'M', 2091), +(201449, 'Francisco', 2009, 'M', 2082), +(201450, 'Garrett', 2009, 'M', 2058), +(201451, 'Braden', 2009, 'M', 2030), +(201452, 'Alexis', 2009, 'M', 2018), +(201453, 'Javier', 2009, 'M', 2015), +(201454, 'Lincoln', 2009, 'M', 2011), +(201455, 'Peter', 2009, 'M', 2008), +(201456, 'Damien', 2009, 'M', 2006), +(201457, 'Erick', 2009, 'M', 2002), +(201458, 'Josue', 2009, 'M', 1975), +(201459, 'Edwin', 2009, 'M', 1974), +(201460, 'Camden', 2009, 'M', 1959), +(201461, 'Manuel', 2009, 'M', 1951), +(201462, 'Rylan', 2009, 'M', 1950), +(201463, 'Bradley', 2009, 'M', 1947), +(201464, 'Mario', 2009, 'M', 1937), +(201465, 'Cesar', 2009, 'M', 1919), +(201466, 'Stephen', 2009, 'M', 1912), +(201467, 'Edgar', 2009, 'M', 1907), +(201468, 'Sawyer', 2009, 'M', 1895), +(201469, 'Jaxson', 2009, 'M', 1863), +(201470, 'Hector', 2009, 'M', 1842), +(201471, 'Roman', 2009, 'M', 1835), +(201472, 'Johnathan', 2009, 'M', 1833), +(201473, 'Trenton', 2009, 'M', 1831), +(201474, 'Landen', 2009, 'M', 1830), +(201475, 'Shawn', 2009, 'M', 1800), +(201476, 'Leo', 2009, 'M', 1796), +(201477, 'Israel', 2009, 'M', 1776), +(201478, 'Brendan', 2009, 'M', 1759), +(201479, 'Kai', 2009, 'M', 1754), +(201480, 'Jared', 2009, 'M', 1753), +(201481, 'Donovan', 2009, 'M', 1739), +(201482, 'Jeffrey', 2009, 'M', 1716), +(201483, 'Spencer', 2009, 'M', 1692), +(201484, 'Braylon', 2009, 'M', 1691), +(201485, 'Andy', 2009, 'M', 1658), +(201486, 'Andre', 2009, 'M', 1645), +(201487, 'Raymond', 2009, 'M', 1639), +(201488, 'Ty', 2009, 'M', 1637), +(201489, 'Avery', 2009, 'M', 1629), +(201490, 'Tucker', 2009, 'M', 1612), +(201491, 'Ezekiel', 2009, 'M', 1609), +(201492, 'Kingston', 2009, 'M', 1607), +(201493, 'Sergio', 2009, 'M', 1605), +(201494, 'Keegan', 2009, 'M', 1594), +(201495, 'Mateo', 2009, 'M', 1591), +(201496, 'Drake', 2009, 'M', 1584), +(201497, 'Calvin', 2009, 'M', 1575), +(201498, 'Griffin', 2009, 'M', 1557), +(201499, 'Erik', 2009, 'M', 1552), +(201500, 'Martin', 2009, 'M', 1521), +(201501, 'Zane', 2009, 'M', 1515), +(201502, 'Chance', 2009, 'M', 1510), +(201503, 'Tyson', 2009, 'M', 1488), +(201504, 'Troy', 2009, 'M', 1486), +(201505, 'Dalton', 2009, 'M', 1473), +(201506, 'Zion', 2009, 'M', 1471), +(201507, 'Harrison', 2009, 'M', 1464), +(201508, 'Marco', 2009, 'M', 1463), +(201509, 'Brennan', 2009, 'M', 1462), +(201510, 'Lukas', 2009, 'M', 1446), +(201511, 'Xander', 2009, 'M', 1443), +(201512, 'Dominick', 2009, 'M', 1437), +(201513, 'Gregory', 2009, 'M', 1422), +(201514, 'Roberto', 2009, 'M', 1416), +(201515, 'Maximus', 2009, 'M', 1395), +(201516, 'Cash', 2009, 'M', 1386), +(201517, 'Dakota', 2009, 'M', 1382), +(201518, 'Silas', 2009, 'M', 1373), +(201519, 'Aden', 2009, 'M', 1369), +(201520, 'Easton', 2009, 'M', 1368), +(201521, 'Malik', 2009, 'M', 1357), +(201522, 'Rafael', 2009, 'M', 1342), +(201523, 'Ezra', 2009, 'M', 1341), +(201524, 'Johnny', 2009, 'M', 1339), +(201525, 'Quinn', 2009, 'M', 1339), +(201526, 'Simon', 2009, 'M', 1331), +(201527, 'Skyler', 2009, 'M', 1328), +(201528, 'Graham', 2009, 'M', 1326), +(201529, 'Caiden', 2009, 'M', 1325), +(201530, 'Axel', 2009, 'M', 1318), +(201531, 'Myles', 2009, 'M', 1301), +(201532, 'Emanuel', 2009, 'M', 1288), +(201533, 'Kyler', 2009, 'M', 1285), +(201534, 'Weston', 2009, 'M', 1279), +(201535, 'Pedro', 2009, 'M', 1276), +(201536, 'Emiliano', 2009, 'M', 1275), +(201537, 'Aaden', 2009, 'M', 1267), +(201538, 'Drew', 2009, 'M', 1263), +(201539, 'Clayton', 2009, 'M', 1260), +(201540, 'Charlie', 2009, 'M', 1254), +(201541, 'Kameron', 2009, 'M', 1252), +(201542, 'Theodore', 2009, 'M', 1239), +(201543, 'Devon', 2009, 'M', 1231), +(201544, 'Corbin', 2009, 'M', 1224), +(201545, 'Amir', 2009, 'M', 1213), +(201546, 'Marcos', 2009, 'M', 1210), +(201547, 'Luca', 2009, 'M', 1197), +(201548, 'Ruben', 2009, 'M', 1197), +(201549, 'Fabian', 2009, 'M', 1172), +(201550, 'Colby', 2009, 'M', 1152), +(201551, 'Dawson', 2009, 'M', 1149), +(201552, 'Angelo', 2009, 'M', 1147), +(201553, 'Zander', 2009, 'M', 1146), +(201554, 'Anderson', 2009, 'M', 1141), +(201555, 'Grady', 2009, 'M', 1140), +(201556, 'Dante', 2009, 'M', 1136), +(201557, 'Frank', 2009, 'M', 1136), +(201558, 'Dillon', 2009, 'M', 1128), +(201559, 'Adan', 2009, 'M', 1123), +(201560, 'Corey', 2009, 'M', 1123), +(201561, 'Joaquin', 2009, 'M', 1117), +(201562, 'Derrick', 2009, 'M', 1115), +(201563, 'Elliot', 2009, 'M', 1109), +(201564, 'Taylor', 2009, 'M', 1092), +(201565, 'Amari', 2009, 'M', 1086), +(201566, 'Brock', 2009, 'M', 1085), +(201567, 'Armando', 2009, 'M', 1081), +(201568, 'Trent', 2009, 'M', 1074), +(201569, 'Tristen', 2009, 'M', 1060), +(201570, 'Dean', 2009, 'M', 1059), +(201571, 'Julio', 2009, 'M', 1059), +(201572, 'Lane', 2009, 'M', 1052), +(201573, 'Enrique', 2009, 'M', 1049), +(201574, 'Bennett', 2009, 'M', 1047), +(201575, 'Declan', 2009, 'M', 1045), +(201576, 'Braydon', 2009, 'M', 1031), +(201577, 'Allen', 2009, 'M', 1030), +(201578, 'Emilio', 2009, 'M', 1027), +(201579, 'Trey', 2009, 'M', 1019), +(201580, 'Julius', 2009, 'M', 1016), +(201581, 'Raul', 2009, 'M', 1015), +(201582, 'Dustin', 2009, 'M', 1005), +(201583, 'Danny', 2009, 'M', 1002), +(201584, 'Jameson', 2009, 'M', 1002), +(201585, 'Gael', 2009, 'M', 1000), +(201586, 'Everett', 2009, 'M', 996), +(201587, 'Gerardo', 2009, 'M', 993), +(201588, 'Randy', 2009, 'M', 993), +(201589, 'Judah', 2009, 'M', 989), +(201590, 'Cade', 2009, 'M', 986), +(201591, 'Cohen', 2009, 'M', 984), +(201592, 'Jakob', 2009, 'M', 984), +(201593, 'Paxton', 2009, 'M', 979), +(201594, 'Payton', 2009, 'M', 970), +(201595, 'Keith', 2009, 'M', 965), +(201596, 'Abel', 2009, 'M', 963), +(201597, 'Jaime', 2009, 'M', 961), +(201598, 'Emmett', 2009, 'M', 955), +(201599, 'Holden', 2009, 'M', 955), +(201600, 'Rowan', 2009, 'M', 955), +(201601, 'Darius', 2009, 'M', 953), +(201602, 'Lorenzo', 2009, 'M', 953), +(201603, 'Jasper', 2009, 'M', 942), +(201604, 'Dallas', 2009, 'M', 930), +(201605, 'Felix', 2009, 'M', 926), +(201606, 'Phillip', 2009, 'M', 925), +(201607, 'Ronald', 2009, 'M', 924), +(201608, 'Finn', 2009, 'M', 918), +(201609, 'Scott', 2009, 'M', 915), +(201610, 'Pablo', 2009, 'M', 909), +(201611, 'Jayson', 2009, 'M', 908), +(201612, 'Cruz', 2009, 'M', 905), +(201613, 'Greyson', 2009, 'M', 903), +(201614, 'Reid', 2009, 'M', 902), +(201615, 'Elliott', 2009, 'M', 895), +(201616, 'Leland', 2009, 'M', 892), +(201617, 'Brenden', 2009, 'M', 891), +(201618, 'Brayan', 2009, 'M', 887), +(201619, 'Louis', 2009, 'M', 883), +(201620, 'Ryker', 2009, 'M', 882), +(201621, 'Jayce', 2009, 'M', 870), +(201622, 'Saul', 2009, 'M', 866), +(201623, 'Ismael', 2009, 'M', 863), +(201624, 'Chris', 2009, 'M', 858), +(201625, 'Mitchell', 2009, 'M', 855), +(201626, 'Nehemiah', 2009, 'M', 853), +(201627, 'Jalen', 2009, 'M', 847), +(201628, 'Donald', 2009, 'M', 837), +(201629, 'Gustavo', 2009, 'M', 837), +(201630, 'Dennis', 2009, 'M', 836), +(201631, 'Zackary', 2009, 'M', 832), +(201632, 'Casey', 2009, 'M', 828), +(201633, 'Phoenix', 2009, 'M', 822), +(201634, 'Colt', 2009, 'M', 820), +(201635, 'Jimmy', 2009, 'M', 820), +(201636, 'Jerry', 2009, 'M', 818), +(201637, 'Dane', 2009, 'M', 817), +(201638, 'Ali', 2009, 'M', 816), +(201639, 'Braeden', 2009, 'M', 816), +(201640, 'Rodrigo', 2009, 'M', 811), +(201641, 'Arthur', 2009, 'M', 809), +(201642, 'Jonas', 2009, 'M', 809), +(201643, 'Quentin', 2009, 'M', 806), +(201644, 'Tony', 2009, 'M', 803), +(201645, 'Keaton', 2009, 'M', 800), +(201646, 'Mathew', 2009, 'M', 799), +(201647, 'Arturo', 2009, 'M', 797), +(201648, 'Esteban', 2009, 'M', 796), +(201649, 'Desmond', 2009, 'M', 788), +(201650, 'Walter', 2009, 'M', 788), +(201651, 'Rocco', 2009, 'M', 785), +(201652, 'Mauricio', 2009, 'M', 783), +(201653, 'Jett', 2009, 'M', 781), +(201654, 'Larry', 2009, 'M', 781), +(201655, 'Moises', 2009, 'M', 780), +(201656, 'Alberto', 2009, 'M', 779), +(201657, 'Brett', 2009, 'M', 766), +(201658, 'Curtis', 2009, 'M', 765), +(201659, 'Darren', 2009, 'M', 765), +(201660, 'Philip', 2009, 'M', 763), +(201661, 'Colten', 2009, 'M', 757), +(201662, 'Landyn', 2009, 'M', 752), +(201663, 'Beau', 2009, 'M', 750), +(201664, 'Zayden', 2009, 'M', 745), +(201665, 'Gunner', 2009, 'M', 743), +(201666, 'Izaiah', 2009, 'M', 742), +(201667, 'Byron', 2009, 'M', 738), +(201668, 'Marshall', 2009, 'M', 735), +(201669, 'Uriel', 2009, 'M', 733), +(201670, 'Jamari', 2009, 'M', 731), +(201671, 'Albert', 2009, 'M', 728), +(201672, 'Alec', 2009, 'M', 728), +(201673, 'Hugo', 2009, 'M', 722), +(201674, 'Orlando', 2009, 'M', 718), +(201675, 'Romeo', 2009, 'M', 718), +(201676, 'Kade', 2009, 'M', 717), +(201677, 'Beckett', 2009, 'M', 713), +(201678, 'Braylen', 2009, 'M', 712), +(201679, 'Bryant', 2009, 'M', 712), +(201680, 'Jay', 2009, 'M', 712), +(201681, 'Marvin', 2009, 'M', 706), +(201682, 'Ricky', 2009, 'M', 696), +(201683, 'Ramon', 2009, 'M', 694), +(201684, 'Jaydon', 2009, 'M', 690), +(201685, 'Reed', 2009, 'M', 687), +(201686, 'Kobe', 2009, 'M', 685), +(201687, 'Yahir', 2009, 'M', 685), +(201688, 'Alfredo', 2009, 'M', 682), +(201689, 'Issac', 2009, 'M', 682), +(201690, 'Salvador', 2009, 'M', 682), +(201691, 'Eddie', 2009, 'M', 673), +(201692, 'Jax', 2009, 'M', 673), +(201693, 'Davis', 2009, 'M', 664), +(201694, 'Justice', 2009, 'M', 663), +(201695, 'Kellen', 2009, 'M', 653), +(201696, 'Reece', 2009, 'M', 653), +(201697, 'Zachariah', 2009, 'M', 651), +(201698, 'August', 2009, 'M', 650), +(201699, 'Mohamed', 2009, 'M', 649), +(201700, 'Russell', 2009, 'M', 642), +(201701, 'Titus', 2009, 'M', 642), +(201702, 'Kristopher', 2009, 'M', 641), +(201703, 'Emerson', 2009, 'M', 639), +(201704, 'Lance', 2009, 'M', 638), +(201705, 'Maurice', 2009, 'M', 636), +(201706, 'Talon', 2009, 'M', 636), +(201707, 'Lawrence', 2009, 'M', 635), +(201708, 'Tate', 2009, 'M', 635), +(201709, 'Nikolas', 2009, 'M', 632), +(201710, 'Jacoby', 2009, 'M', 628), +(201711, 'Leon', 2009, 'M', 625), +(201712, 'Mekhi', 2009, 'M', 622), +(201713, 'Nickolas', 2009, 'M', 620), +(201714, 'River', 2009, 'M', 618), +(201715, 'Karson', 2009, 'M', 617), +(201716, 'Milo', 2009, 'M', 616), +(201717, 'Camron', 2009, 'M', 615), +(201718, 'Gary', 2009, 'M', 610), +(201719, 'Joe', 2009, 'M', 604), +(201720, 'Matteo', 2009, 'M', 600), +(201721, 'Nasir', 2009, 'M', 599), +(201722, 'Solomon', 2009, 'M', 597), +(201723, 'Brycen', 2009, 'M', 595), +(201724, 'Davion', 2009, 'M', 593), +(201725, 'Warren', 2009, 'M', 592), +(201726, 'Morgan', 2009, 'M', 591), +(201727, 'King', 2009, 'M', 590), +(201728, 'Walker', 2009, 'M', 589), +(201729, 'Ernesto', 2009, 'M', 587), +(201730, 'Maximiliano', 2009, 'M', 587), +(201731, 'Douglas', 2009, 'M', 586), +(201732, 'Bruce', 2009, 'M', 585), +(201733, 'Nathanael', 2009, 'M', 583), +(201734, 'Kolton', 2009, 'M', 581), +(201735, 'Sam', 2009, 'M', 580), +(201736, 'Alijah', 2009, 'M', 579), +(201737, 'Chandler', 2009, 'M', 579), +(201738, 'Jaylin', 2009, 'M', 579), +(201739, 'Leonel', 2009, 'M', 578), +(201740, 'Porter', 2009, 'M', 577), +(201741, 'Maximilian', 2009, 'M', 574), +(201742, 'Pierce', 2009, 'M', 574), +(201743, 'Johan', 2009, 'M', 573), +(201744, 'Reese', 2009, 'M', 573), +(201745, 'Kelvin', 2009, 'M', 571), +(201746, 'Waylon', 2009, 'M', 569), +(201747, 'Isaias', 2009, 'M', 568), +(201748, 'Ahmad', 2009, 'M', 567), +(201749, 'Braiden', 2009, 'M', 563), +(201750, 'Kason', 2009, 'M', 563), +(201751, 'Cullen', 2009, 'M', 562), +(201752, 'Terrance', 2009, 'M', 560), +(201753, 'Brooks', 2009, 'M', 558), +(201754, 'Deandre', 2009, 'M', 557), +(201755, 'Jamarion', 2009, 'M', 557), +(201756, 'Noel', 2009, 'M', 555), +(201757, 'Abram', 2009, 'M', 554), +(201758, 'Brodie', 2009, 'M', 554), +(201759, 'Javon', 2009, 'M', 553), +(201760, 'Khalil', 2009, 'M', 553), +(201761, 'Rodney', 2009, 'M', 553), +(201762, 'Roger', 2009, 'M', 548), +(201763, 'Shaun', 2009, 'M', 548), +(201764, 'Skylar', 2009, 'M', 547), +(201765, 'Cory', 2009, 'M', 541), +(201766, 'Jonathon', 2009, 'M', 539), +(201767, 'Micheal', 2009, 'M', 539), +(201768, 'Moses', 2009, 'M', 538), +(201769, 'Kane', 2009, 'M', 535), +(201770, 'Tobias', 2009, 'M', 535), +(201771, 'Jadon', 2009, 'M', 534), +(201772, 'Guillermo', 2009, 'M', 533), +(201773, 'Kristian', 2009, 'M', 529), +(201774, 'Melvin', 2009, 'M', 529), +(201775, 'Kieran', 2009, 'M', 527), +(201776, 'Chad', 2009, 'M', 526), +(201777, 'Adriel', 2009, 'M', 525), +(201778, 'Conor', 2009, 'M', 524), +(201779, 'Dorian', 2009, 'M', 524), +(201780, 'Bentley', 2009, 'M', 522), +(201781, 'Keagan', 2009, 'M', 522), +(201782, 'Cristopher', 2009, 'M', 521), +(201783, 'Kale', 2009, 'M', 521), +(201784, 'Damon', 2009, 'M', 520), +(201785, 'Carl', 2009, 'M', 519), +(201786, 'London', 2009, 'M', 519), +(201787, 'Cyrus', 2009, 'M', 518), +(201788, 'Ari', 2009, 'M', 516), +(201789, 'Dayton', 2009, 'M', 516), +(201790, 'Orion', 2009, 'M', 516), +(201791, 'Nelson', 2009, 'M', 515), +(201792, 'Quincy', 2009, 'M', 515), +(201793, 'Quinton', 2009, 'M', 514), +(201794, 'Chace', 2009, 'M', 511), +(201795, 'Yandel', 2009, 'M', 511), +(201796, 'Franklin', 2009, 'M', 509), +(201797, 'Trace', 2009, 'M', 504), +(201798, 'Kamari', 2009, 'M', 500), +(201799, 'Rohan', 2009, 'M', 500), +(201800, 'Julien', 2009, 'M', 499), +(201801, 'Isiah', 2009, 'M', 497), +(201802, 'Kendrick', 2009, 'M', 493), +(201803, 'Boston', 2009, 'M', 491), +(201804, 'Frederick', 2009, 'M', 491), +(201805, 'Cason', 2009, 'M', 488), +(201806, 'Dominik', 2009, 'M', 488), +(201807, 'Wilson', 2009, 'M', 487), +(201808, 'Gianni', 2009, 'M', 485), +(201809, 'Dexter', 2009, 'M', 484), +(201810, 'Finnegan', 2009, 'M', 484), +(201811, 'Gideon', 2009, 'M', 484), +(201812, 'Maverick', 2009, 'M', 482), +(201813, 'Noe', 2009, 'M', 482), +(201814, 'Demetrius', 2009, 'M', 481), +(201815, 'Jamison', 2009, 'M', 480), +(201816, 'Gunnar', 2009, 'M', 479), +(201817, 'Terry', 2009, 'M', 478), +(201818, 'Armani', 2009, 'M', 477), +(201819, 'Jeffery', 2009, 'M', 477), +(201820, 'Triston', 2009, 'M', 477), +(201821, 'Asa', 2009, 'M', 476), +(201822, 'Ariel', 2009, 'M', 475), +(201823, 'Felipe', 2009, 'M', 472), +(201824, 'Roy', 2009, 'M', 472), +(201825, 'Allan', 2009, 'M', 471), +(201826, 'Marc', 2009, 'M', 471), +(201827, 'Aldo', 2009, 'M', 470), +(201828, 'Ronan', 2009, 'M', 470), +(201829, 'Jermaine', 2009, 'M', 469), +(201830, 'Tommy', 2009, 'M', 468), +(201831, 'Alvin', 2009, 'M', 467), +(201832, 'Ezequiel', 2009, 'M', 466), +(201833, 'Ibrahim', 2009, 'M', 465), +(201834, 'Karter', 2009, 'M', 465), +(201835, 'Barrett', 2009, 'M', 464), +(201836, 'Brendon', 2009, 'M', 464), +(201837, 'Ryland', 2009, 'M', 464), +(201838, 'Harley', 2009, 'M', 461), +(201839, 'Madden', 2009, 'M', 461), +(201840, 'Tomas', 2009, 'M', 461), +(201841, 'Jessie', 2009, 'M', 458), +(201842, 'Bobby', 2009, 'M', 457), +(201843, 'Will', 2009, 'M', 457), +(201844, 'Rhys', 2009, 'M', 456), +(201845, 'Terrence', 2009, 'M', 456), +(201846, 'Brennen', 2009, 'M', 454), +(201847, 'Giovani', 2009, 'M', 453), +(201848, 'Remington', 2009, 'M', 451), +(201849, 'Nico', 2009, 'M', 450), +(201850, 'Terrell', 2009, 'M', 450), +(201851, 'Xzavier', 2009, 'M', 449), +(201852, 'Ahmed', 2009, 'M', 446), +(201853, 'Jefferson', 2009, 'M', 444), +(201854, 'Jon', 2009, 'M', 443), +(201855, 'Billy', 2009, 'M', 442), +(201856, 'Branden', 2009, 'M', 442), +(201857, 'Tristin', 2009, 'M', 442), +(201858, 'Kamden', 2009, 'M', 441), +(201859, 'Enzo', 2009, 'M', 440), +(201860, 'Kendall', 2009, 'M', 434), +(201861, 'Kian', 2009, 'M', 433), +(201862, 'Kole', 2009, 'M', 433), +(201863, 'Uriah', 2009, 'M', 433), +(201864, 'Kody', 2009, 'M', 432), +(201865, 'Malcolm', 2009, 'M', 431), +(201866, 'Moshe', 2009, 'M', 430), +(201867, 'Muhammad', 2009, 'M', 430), +(201868, 'Reginald', 2009, 'M', 429), +(201869, 'Memphis', 2009, 'M', 428), +(201870, 'Omari', 2009, 'M', 428), +(201871, 'Ulises', 2009, 'M', 427), +(201872, 'Javion', 2009, 'M', 425), +(201873, 'Lucian', 2009, 'M', 425), +(201874, 'Atticus', 2009, 'M', 422), +(201875, 'Mohammad', 2009, 'M', 420), +(201876, 'Ace', 2009, 'M', 418), +(201877, 'Steve', 2009, 'M', 415), +(201878, 'Alonzo', 2009, 'M', 411), +(201879, 'Jamal', 2009, 'M', 410), +(201880, 'Rene', 2009, 'M', 410), +(201881, 'Marquis', 2009, 'M', 409), +(201882, 'Joey', 2009, 'M', 405), +(201883, 'Rashad', 2009, 'M', 405), +(201884, 'Urijah', 2009, 'M', 403), +(201885, 'Kenny', 2009, 'M', 402), +(201886, 'Wade', 2009, 'M', 401), +(201887, 'Kasen', 2009, 'M', 400), +(201888, 'Kellan', 2009, 'M', 400), +(201889, 'Raphael', 2009, 'M', 400), +(201890, 'Cannon', 2009, 'M', 399), +(201891, 'Aydan', 2009, 'M', 398), +(201892, 'Bradyn', 2009, 'M', 398), +(201893, 'Brent', 2009, 'M', 398), +(201894, 'Willie', 2009, 'M', 398), +(201895, 'Malakai', 2009, 'M', 397), +(201896, 'Neil', 2009, 'M', 396), +(201897, 'Toby', 2009, 'M', 396), +(201898, 'Gerald', 2009, 'M', 395), +(201899, 'Jaeden', 2009, 'M', 395), +(201900, 'Jase', 2009, 'M', 395), +(201901, 'Jaylon', 2009, 'M', 393), +(201902, 'Johnathon', 2009, 'M', 393), +(201903, 'Zachery', 2009, 'M', 393), +(201904, 'Jadiel', 2009, 'M', 392), +(201905, 'Mohammed', 2009, 'M', 392), +(201906, 'Davin', 2009, 'M', 391), +(201907, 'Markus', 2009, 'M', 391), +(201908, 'Blaine', 2009, 'M', 390), +(201909, 'Lawson', 2009, 'M', 390), +(201910, 'Ben', 2009, 'M', 386), +(201911, 'Harry', 2009, 'M', 384), +(201912, 'Aron', 2009, 'M', 383), +(201913, 'Aydin', 2009, 'M', 383), +(201914, 'Jairo', 2009, 'M', 383), +(201915, 'Alfonso', 2009, 'M', 382), +(201916, 'Teagan', 2009, 'M', 382), +(201917, 'Draven', 2009, 'M', 381), +(201918, 'Marlon', 2009, 'M', 380), +(201919, 'Sullivan', 2009, 'M', 380), +(201920, 'Alessandro', 2009, 'M', 379), +(201921, 'Luciano', 2009, 'M', 379), +(201922, 'Layne', 2009, 'M', 378), +(201923, 'Amare', 2009, 'M', 377), +(201924, 'Rhett', 2009, 'M', 373), +(201925, 'Lee', 2009, 'M', 372), +(201926, 'Alonso', 2009, 'M', 371), +(201927, 'Kolby', 2009, 'M', 371), +(201928, 'Damion', 2009, 'M', 369), +(201929, 'Giovanny', 2009, 'M', 369), +(201930, 'Messiah', 2009, 'M', 369), +(201931, 'Darian', 2009, 'M', 367), +(201932, 'Ronnie', 2009, 'M', 367), +(201933, 'Craig', 2009, 'M', 366), +(201934, 'Jamie', 2009, 'M', 366), +(201935, 'Cale', 2009, 'M', 365), +(201936, 'Ray', 2009, 'M', 365), +(201937, 'Raiden', 2009, 'M', 363), +(201938, 'Tripp', 2009, 'M', 361), +(201939, 'Makai', 2009, 'M', 360), +(201940, 'Semaj', 2009, 'M', 360), +(201941, 'Trevon', 2009, 'M', 360), +(201942, 'Nash', 2009, 'M', 359), +(201943, 'Stanley', 2009, 'M', 359), +(201944, 'Francis', 2009, 'M', 358), +(201945, 'Jerome', 2009, 'M', 357), +(201946, 'Giancarlo', 2009, 'M', 356), +(201947, 'Archer', 2009, 'M', 355), +(201948, 'Heath', 2009, 'M', 355), +(201949, 'Layton', 2009, 'M', 355), +(201950, 'Tyrone', 2009, 'M', 355), +(201951, 'Vicente', 2009, 'M', 354), +(201952, 'Deven', 2009, 'M', 353), +(201953, 'Osvaldo', 2009, 'M', 352), +(201954, 'Rogelio', 2009, 'M', 352), +(201955, 'Santino', 2009, 'M', 352), +(201956, 'Deacon', 2009, 'M', 351), +(201957, 'Deshawn', 2009, 'M', 351), +(201958, 'Prince', 2009, 'M', 351), +(201959, 'Dwayne', 2009, 'M', 346), +(201960, 'Jovani', 2009, 'M', 346), +(201961, 'Tristian', 2009, 'M', 346), +(201962, 'Adrien', 2009, 'M', 345), +(201963, 'Camren', 2009, 'M', 345), +(201964, 'Rolando', 2009, 'M', 345), +(201965, 'Sincere', 2009, 'M', 344), +(201966, 'Alexzander', 2009, 'M', 342), +(201967, 'Gavyn', 2009, 'M', 342), +(201968, 'Cedric', 2009, 'M', 340), +(201969, 'Elisha', 2009, 'M', 340), +(201970, 'Knox', 2009, 'M', 340), +(201971, 'Jorden', 2009, 'M', 339), +(201972, 'Zechariah', 2009, 'M', 339), +(201973, 'Hamza', 2009, 'M', 338), +(201974, 'Clark', 2009, 'M', 336), +(201975, 'Ramiro', 2009, 'M', 334), +(201976, 'Zackery', 2009, 'M', 334), +(201977, 'Davian', 2009, 'M', 333), +(201978, 'Jordyn', 2009, 'M', 333), +(201979, 'Junior', 2009, 'M', 333), +(201980, 'Matias', 2009, 'M', 332), +(201981, 'Kylan', 2009, 'M', 331), +(201982, 'Finley', 2009, 'M', 330), +(201983, 'Kaeden', 2009, 'M', 330), +(201984, 'Damarion', 2009, 'M', 329), +(201985, 'Gilberto', 2009, 'M', 329), +(201986, 'Ellis', 2009, 'M', 327), +(201987, 'Gauge', 2009, 'M', 327), +(201988, 'Kash', 2009, 'M', 326), +(201989, 'Quintin', 2009, 'M', 325), +(201990, 'Rudy', 2009, 'M', 325), +(201991, 'Aidyn', 2009, 'M', 324), +(201992, 'Lewis', 2009, 'M', 324), +(201993, 'Leonard', 2009, 'M', 322), +(201994, 'Konner', 2009, 'M', 321), +(201995, 'Frankie', 2009, 'M', 320), +(201996, 'Jamir', 2009, 'M', 320), +(201997, 'Arjun', 2009, 'M', 319), +(201998, 'Soren', 2009, 'M', 319), +(201999, 'Duncan', 2009, 'M', 318), +(202000, 'Maxim', 2009, 'M', 318), +(202001, 'Valentin', 2009, 'M', 318), +(202002, 'Darrell', 2009, 'M', 317), +(202003, 'Harper', 2009, 'M', 316), +(202004, 'Jasiah', 2009, 'M', 315), +(202005, 'Samir', 2009, 'M', 315), +(202006, 'Darwin', 2009, 'M', 314), +(202007, 'Kareem', 2009, 'M', 313), +(202008, 'Daxton', 2009, 'M', 312), +(202009, 'Korbin', 2009, 'M', 312), +(202010, 'Eugene', 2009, 'M', 311), +(202011, 'Keenan', 2009, 'M', 310), +(202012, 'Conrad', 2009, 'M', 309), +(202013, 'Randall', 2009, 'M', 308), +(202014, 'Franco', 2009, 'M', 307), +(202015, 'Brice', 2009, 'M', 306), +(202016, 'Yosef', 2009, 'M', 306), +(202017, 'Misael', 2009, 'M', 305), +(202018, 'Killian', 2009, 'M', 304), +(202019, 'Roland', 2009, 'M', 304), +(202020, 'Rex', 2009, 'M', 303), +(202021, 'Rodolfo', 2009, 'M', 303), +(202022, 'Jamar', 2009, 'M', 302), +(202023, 'Rory', 2009, 'M', 302), +(202024, 'Davon', 2009, 'M', 300), +(202025, 'Wayne', 2009, 'M', 300), +(202026, 'Sage', 2009, 'M', 299), +(202027, 'Aryan', 2009, 'M', 298), +(202028, 'Matthias', 2009, 'M', 298), +(202029, 'Valentino', 2009, 'M', 298), +(202030, 'Aditya', 2009, 'M', 297), +(202031, 'Jagger', 2009, 'M', 297), +(202032, 'Jovanni', 2009, 'M', 297), +(202033, 'Nikolai', 2009, 'M', 297), +(202034, 'Yusuf', 2009, 'M', 297), +(202035, 'Zaiden', 2009, 'M', 297), +(202036, 'Dominique', 2009, 'M', 296), +(202037, 'Alvaro', 2009, 'M', 295), +(202038, 'Donte', 2009, 'M', 295), +(202039, 'Van', 2009, 'M', 295), +(202040, 'Zain', 2009, 'M', 295), +(202041, 'Zayne', 2009, 'M', 295), +(202042, 'Vance', 2009, 'M', 293), +(202043, 'Emery', 2009, 'M', 292), +(202044, 'Adonis', 2009, 'M', 291), +(202045, 'Irvin', 2009, 'M', 291), +(202046, 'Lamar', 2009, 'M', 291), +(202047, 'Luka', 2009, 'M', 291), +(202048, 'Camryn', 2009, 'M', 289), +(202049, 'Devan', 2009, 'M', 289), +(202050, 'Freddy', 2009, 'M', 289), +(202051, 'Justus', 2009, 'M', 289), +(202052, 'Bo', 2009, 'M', 287), +(202053, 'Mathias', 2009, 'M', 287), +(202054, 'Maximo', 2009, 'M', 287), +(202055, 'Efrain', 2009, 'M', 285), +(202056, 'Marley', 2009, 'M', 285), +(202057, 'Darnell', 2009, 'M', 284), +(202058, 'Dax', 2009, 'M', 284), +(202059, 'Dillan', 2009, 'M', 282), +(202060, 'Antoine', 2009, 'M', 281), +(202061, 'Augustus', 2009, 'M', 280), +(202062, 'Jair', 2009, 'M', 280), +(202063, 'Jaydin', 2009, 'M', 280), +(202064, 'Rayan', 2009, 'M', 279), +(202065, 'Rylee', 2009, 'M', 279), +(202066, 'Agustin', 2009, 'M', 278), +(202067, 'Gilbert', 2009, 'M', 278), +(202068, 'Kymani', 2009, 'M', 278), +(202069, 'Tyree', 2009, 'M', 278), +(202070, 'Tyrell', 2009, 'M', 278), +(202071, 'Hassan', 2009, 'M', 277), +(202072, 'Coleman', 2009, 'M', 276), +(202073, 'Jadyn', 2009, 'M', 276), +(202074, 'Ean', 2009, 'M', 275), +(202075, 'Seamus', 2009, 'M', 275), +(202076, 'Gaige', 2009, 'M', 274), +(202077, 'Jaidyn', 2009, 'M', 273), +(202078, 'Niko', 2009, 'M', 273), +(202079, 'Ronin', 2009, 'M', 273), +(202080, 'Deangelo', 2009, 'M', 272), +(202081, 'Branson', 2009, 'M', 271), +(202082, 'Aarav', 2009, 'M', 270), +(202083, 'Cael', 2009, 'M', 270), +(202084, 'Chaim', 2009, 'M', 270), +(202085, 'Isai', 2009, 'M', 270), +(202086, 'Vaughn', 2009, 'M', 270), +(202087, 'Winston', 2009, 'M', 270), +(202088, 'Blaze', 2009, 'M', 269), +(202089, 'Demarcus', 2009, 'M', 267), +(202090, 'Jeramiah', 2009, 'M', 267), +(202091, 'Talan', 2009, 'M', 266), +(202092, 'Ayaan', 2009, 'M', 265), +(202093, 'Harold', 2009, 'M', 265), +(202094, 'Alfred', 2009, 'M', 262), +(202095, 'Derick', 2009, 'M', 262), +(202096, 'Aedan', 2009, 'M', 261), +(202097, 'Carmelo', 2009, 'M', 261), +(202098, 'Deon', 2009, 'M', 260), +(202099, 'Mike', 2009, 'M', 260), +(202100, 'Abdullah', 2009, 'M', 259), +(202101, 'Jensen', 2009, 'M', 259), +(202102, 'Yair', 2009, 'M', 259), +(202103, 'Izayah', 2009, 'M', 258), +(202104, 'Kadyn', 2009, 'M', 258), +(202105, 'Ignacio', 2009, 'M', 257), +(202106, 'Kadin', 2009, 'M', 257), +(202107, 'Fisher', 2009, 'M', 256); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(202108, 'Kamron', 2009, 'M', 256), +(202109, 'Marcelo', 2009, 'M', 254), +(202110, 'Sidney', 2009, 'M', 254), +(202111, 'Beckham', 2009, 'M', 253), +(202112, 'Broderick', 2009, 'M', 253), +(202113, 'Cristofer', 2009, 'M', 253), +(202114, 'Santos', 2009, 'M', 253), +(202115, 'Sylas', 2009, 'M', 253), +(202116, 'Ernest', 2009, 'M', 251), +(202117, 'Kael', 2009, 'M', 251), +(202118, 'Yadiel', 2009, 'M', 251), +(202119, 'Jaxton', 2009, 'M', 250), +(202120, 'Elvis', 2009, 'M', 249), +(202121, 'Kayson', 2009, 'M', 249), +(202122, 'Tyrese', 2009, 'M', 249), +(202123, 'Case', 2009, 'M', 248), +(202124, 'Jaydan', 2009, 'M', 248), +(202125, 'Sonny', 2009, 'M', 248), +(202126, 'Elian', 2009, 'M', 247), +(202127, 'Nigel', 2009, 'M', 247), +(202128, 'Zavier', 2009, 'M', 246), +(202129, 'Bruno', 2009, 'M', 245), +(202130, 'Nikhil', 2009, 'M', 244), +(202131, 'Devyn', 2009, 'M', 243), +(202132, 'Alden', 2009, 'M', 242), +(202133, 'Bridger', 2009, 'M', 242), +(202134, 'Ishaan', 2009, 'M', 242), +(202135, 'Jaxen', 2009, 'M', 242), +(202136, 'Kolten', 2009, 'M', 242), +(202137, 'Addison', 2009, 'M', 241), +(202138, 'Arnav', 2009, 'M', 241), +(202139, 'Hezekiah', 2009, 'M', 241), +(202140, 'Jabari', 2009, 'M', 241), +(202141, 'Samson', 2009, 'M', 241), +(202142, 'Callum', 2009, 'M', 240), +(202143, 'Leandro', 2009, 'M', 240), +(202144, 'Dilan', 2009, 'M', 239), +(202145, 'Keon', 2009, 'M', 239), +(202146, 'Adolfo', 2009, 'M', 238), +(202147, 'Krish', 2009, 'M', 238), +(202148, 'Lyric', 2009, 'M', 238), +(202149, 'Malaki', 2009, 'M', 238), +(202150, 'Quinten', 2009, 'M', 238), +(202151, 'Keshawn', 2009, 'M', 237), +(202152, 'Zaire', 2009, 'M', 237), +(202153, 'Reuben', 2009, 'M', 236), +(202154, 'Darien', 2009, 'M', 235), +(202155, 'Dangelo', 2009, 'M', 234), +(202156, 'Darryl', 2009, 'M', 234), +(202157, 'Marcel', 2009, 'M', 234), +(202158, 'Todd', 2009, 'M', 234), +(202159, 'Bronson', 2009, 'M', 233), +(202160, 'Ethen', 2009, 'M', 233), +(202161, 'Salvatore', 2009, 'M', 233), +(202162, 'Brenton', 2009, 'M', 232), +(202163, 'Eden', 2009, 'M', 231), +(202164, 'Rey', 2009, 'M', 231), +(202165, 'Sterling', 2009, 'M', 231), +(202166, 'Abdiel', 2009, 'M', 229), +(202167, 'Camilo', 2009, 'M', 229), +(202168, 'Dario', 2009, 'M', 229), +(202169, 'Humberto', 2009, 'M', 229), +(202170, 'Roderick', 2009, 'M', 229), +(202171, 'Casen', 2009, 'M', 228), +(202172, 'Demarion', 2009, 'M', 228), +(202173, 'Cortez', 2009, 'M', 227), +(202174, 'Kyson', 2009, 'M', 227), +(202175, 'Pranav', 2009, 'M', 227), +(202176, 'Ross', 2009, 'M', 227), +(202177, 'Brogan', 2009, 'M', 226), +(202178, 'Dashawn', 2009, 'M', 226), +(202179, 'Antwan', 2009, 'M', 225), +(202180, 'Haiden', 2009, 'M', 225), +(202181, 'Jarrett', 2009, 'M', 225), +(202182, 'Marquise', 2009, 'M', 225), +(202183, 'Rigoberto', 2009, 'M', 225), +(202184, 'Braedon', 2009, 'M', 224), +(202185, 'Clinton', 2009, 'M', 224), +(202186, 'Dale', 2009, 'M', 224), +(202187, 'Jaquan', 2009, 'M', 224), +(202188, 'Jovan', 2009, 'M', 224), +(202189, 'Jordon', 2009, 'M', 223), +(202190, 'Kenyon', 2009, 'M', 223), +(202191, 'Trystan', 2009, 'M', 223), +(202192, 'Westin', 2009, 'M', 223), +(202193, 'Yael', 2009, 'M', 223), +(202194, 'Elmer', 2009, 'M', 222), +(202195, 'Octavio', 2009, 'M', 222), +(202196, 'Damari', 2009, 'M', 221), +(202197, 'Fletcher', 2009, 'M', 221), +(202198, 'Jayvion', 2009, 'M', 221), +(202199, 'Konnor', 2009, 'M', 220), +(202200, 'Slade', 2009, 'M', 220), +(202201, 'Vincenzo', 2009, 'M', 220), +(202202, 'Zack', 2009, 'M', 220), +(202203, 'Bailey', 2009, 'M', 219), +(202204, 'Houston', 2009, 'M', 218), +(202205, 'Isaak', 2009, 'M', 218), +(202206, 'Landin', 2009, 'M', 218), +(202207, 'Royce', 2009, 'M', 218), +(202208, 'Jaron', 2009, 'M', 216), +(202209, 'Koen', 2009, 'M', 216), +(202210, 'Howard', 2009, 'M', 215), +(202211, 'German', 2009, 'M', 214), +(202212, 'Kamryn', 2009, 'M', 214), +(202213, 'Yehuda', 2009, 'M', 214), +(202214, 'Clay', 2009, 'M', 213), +(202215, 'Reynaldo', 2009, 'M', 213), +(202216, 'Keyon', 2009, 'M', 212), +(202217, 'Makhi', 2009, 'M', 212), +(202218, 'Hayes', 2009, 'M', 211), +(202219, 'Lennon', 2009, 'M', 211), +(202220, 'Reagan', 2009, 'M', 211), +(202221, 'Dereon', 2009, 'M', 210), +(202222, 'Garrison', 2009, 'M', 210), +(202223, 'Jamarcus', 2009, 'M', 210), +(202224, 'Jean', 2009, 'M', 210), +(202225, 'Maxx', 2009, 'M', 210), +(202226, 'Nathen', 2009, 'M', 210), +(202227, 'Ralph', 2009, 'M', 210), +(202228, 'Carsen', 2009, 'M', 209), +(202229, 'Jakobe', 2009, 'M', 209), +(202230, 'Jovanny', 2009, 'M', 209), +(202231, 'Kasey', 2009, 'M', 208), +(202232, 'Karl', 2009, 'M', 207), +(202233, 'Savion', 2009, 'M', 207), +(202234, 'Blaise', 2009, 'M', 206), +(202235, 'Carlo', 2009, 'M', 206), +(202236, 'Jaycob', 2009, 'M', 206), +(202237, 'Remy', 2009, 'M', 206), +(202238, 'Josh', 2009, 'M', 205), +(202239, 'Juelz', 2009, 'M', 205), +(202240, 'Anton', 2009, 'M', 204), +(202241, 'Geovanni', 2009, 'M', 204), +(202242, 'Jamel', 2009, 'M', 204), +(202243, 'Mack', 2009, 'M', 204), +(202244, 'Eliezer', 2009, 'M', 203), +(202245, 'Jerimiah', 2009, 'M', 203), +(202246, 'Kalel', 2009, 'M', 203), +(202247, 'Maddux', 2009, 'M', 203), +(202248, 'Denzel', 2009, 'M', 202), +(202249, 'Odin', 2009, 'M', 202), +(202250, 'Stefan', 2009, 'M', 202), +(202251, 'Deegan', 2009, 'M', 201), +(202252, 'Leonidas', 2009, 'M', 201), +(202253, 'Cain', 2009, 'M', 200), +(202254, 'Zaid', 2009, 'M', 200), +(202255, 'Antony', 2009, 'M', 199), +(202256, 'Chaz', 2009, 'M', 199), +(202257, 'Hugh', 2009, 'M', 199), +(202258, 'Menachem', 2009, 'M', 199), +(202259, 'Zavion', 2009, 'M', 199), +(202260, 'Amos', 2009, 'M', 198), +(202261, 'Cassius', 2009, 'M', 198), +(202262, 'Stone', 2009, 'M', 198), +(202263, 'Fredrick', 2009, 'M', 197), +(202264, 'Immanuel', 2009, 'M', 197), +(202265, 'Nick', 2009, 'M', 197), +(202266, 'Trevin', 2009, 'M', 197), +(202267, 'Tyshawn', 2009, 'M', 197), +(202268, 'Mustafa', 2009, 'M', 196), +(202269, 'Ronaldo', 2009, 'M', 196), +(202270, 'Cordell', 2009, 'M', 195), +(202271, 'Eddy', 2009, 'M', 195), +(202272, 'Rayden', 2009, 'M', 195), +(202273, 'Ulysses', 2009, 'M', 195), +(202274, 'Dimitri', 2009, 'M', 194), +(202275, 'Edison', 2009, 'M', 194), +(202276, 'Jovany', 2009, 'M', 194), +(202277, 'Leroy', 2009, 'M', 194), +(202278, 'Brecken', 2009, 'M', 193), +(202279, 'Coby', 2009, 'M', 193), +(202280, 'Jedidiah', 2009, 'M', 193), +(202281, 'Nathanial', 2009, 'M', 193), +(202282, 'Simeon', 2009, 'M', 193), +(202283, 'Benson', 2009, 'M', 192), +(202284, 'Clarence', 2009, 'M', 192), +(202285, 'Joziah', 2009, 'M', 192), +(202286, 'Legend', 2009, 'M', 191), +(202287, 'Taj', 2009, 'M', 191), +(202288, 'Thaddeus', 2009, 'M', 191), +(202289, 'Kohen', 2009, 'M', 190), +(202290, 'Bernard', 2009, 'M', 189), +(202291, 'Brennon', 2009, 'M', 189), +(202292, 'Donavan', 2009, 'M', 189), +(202293, 'Jayvon', 2009, 'M', 189), +(202294, 'Milton', 2009, 'M', 189), +(202295, 'Pierre', 2009, 'M', 189), +(202296, 'Sheldon', 2009, 'M', 188), +(202297, 'Eliseo', 2009, 'M', 187), +(202298, 'Rocky', 2009, 'M', 187), +(202299, 'Theo', 2009, 'M', 186), +(202300, 'Yisroel', 2009, 'M', 186), +(202301, 'Kamren', 2009, 'M', 185), +(202302, 'Kelton', 2009, 'M', 185), +(202303, 'Santana', 2009, 'M', 185), +(202304, 'Braylin', 2009, 'M', 184), +(202305, 'Ephraim', 2009, 'M', 184), +(202306, 'Jacobi', 2009, 'M', 184), +(202307, 'Turner', 2009, 'M', 184), +(202308, 'Yousef', 2009, 'M', 183), +(202309, 'Gordon', 2009, 'M', 182), +(202310, 'Jaylan', 2009, 'M', 182), +(202311, 'Maximillian', 2009, 'M', 182), +(202312, 'Shimon', 2009, 'M', 182), +(202313, 'Lamont', 2009, 'M', 181), +(202314, 'Anish', 2009, 'M', 180), +(202315, 'Cristobal', 2009, 'M', 180), +(202316, 'Darion', 2009, 'M', 180), +(202317, 'Domenic', 2009, 'M', 180), +(202318, 'Major', 2009, 'M', 180), +(202319, 'Marcello', 2009, 'M', 180), +(202320, 'Dariel', 2009, 'M', 179), +(202321, 'Daylen', 2009, 'M', 179), +(202322, 'Gaven', 2009, 'M', 179), +(202323, 'Miller', 2009, 'M', 179), +(202324, 'Gibson', 2009, 'M', 178), +(202325, 'Harvey', 2009, 'M', 178), +(202326, 'Joan', 2009, 'M', 178), +(202327, 'Javen', 2009, 'M', 177), +(202328, 'Johann', 2009, 'M', 177), +(202329, 'Braedyn', 2009, 'M', 175), +(202330, 'Cayson', 2009, 'M', 175), +(202331, 'Glenn', 2009, 'M', 175), +(202332, 'Iker', 2009, 'M', 175), +(202333, 'Leif', 2009, 'M', 175), +(202334, 'Leighton', 2009, 'M', 175), +(202335, 'Armaan', 2009, 'M', 174), +(202336, 'Bishop', 2009, 'M', 174), +(202337, 'Treyton', 2009, 'M', 174), +(202338, 'Jericho', 2009, 'M', 173), +(202339, 'Lathan', 2009, 'M', 173), +(202340, 'Lionel', 2009, 'M', 173), +(202341, 'Rishi', 2009, 'M', 173), +(202342, 'Ryley', 2009, 'M', 173), +(202343, 'Gonzalo', 2009, 'M', 172), +(202344, 'Jesiah', 2009, 'M', 172), +(202345, 'Langston', 2009, 'M', 172), +(202346, 'Marquez', 2009, 'M', 172), +(202347, 'Oswaldo', 2009, 'M', 172), +(202348, 'Truman', 2009, 'M', 172), +(202349, 'Andreas', 2009, 'M', 171), +(202350, 'Estevan', 2009, 'M', 171), +(202351, 'Kooper', 2009, 'M', 171), +(202352, 'Mikah', 2009, 'M', 171), +(202353, 'Otto', 2009, 'M', 171), +(202354, 'Reilly', 2009, 'M', 171), +(202355, 'Eliot', 2009, 'M', 170), +(202356, 'Kamarion', 2009, 'M', 170), +(202357, 'Coen', 2009, 'M', 169), +(202358, 'Dion', 2009, 'M', 169), +(202359, 'Hank', 2009, 'M', 169), +(202360, 'Landry', 2009, 'M', 169), +(202361, 'Miguelangel', 2009, 'M', 169), +(202362, 'Dwight', 2009, 'M', 168), +(202363, 'Hendrix', 2009, 'M', 168), +(202364, 'Jai', 2009, 'M', 168), +(202365, 'Kyan', 2009, 'M', 168), +(202366, 'Markell', 2009, 'M', 168), +(202367, 'Aleksander', 2009, 'M', 167), +(202368, 'Anson', 2009, 'M', 167), +(202369, 'Bernardo', 2009, 'M', 167), +(202370, 'Destin', 2009, 'M', 167), +(202371, 'Geovanny', 2009, 'M', 167), +(202372, 'Marques', 2009, 'M', 167), +(202373, 'Maxton', 2009, 'M', 167), +(202374, 'Tayden', 2009, 'M', 167), +(202375, 'Ameer', 2009, 'M', 166), +(202376, 'Cornelius', 2009, 'M', 166), +(202377, 'Enoch', 2009, 'M', 166), +(202378, 'Forrest', 2009, 'M', 166), +(202379, 'Jaedyn', 2009, 'M', 166), +(202380, 'Jullian', 2009, 'M', 166), +(202381, 'Channing', 2009, 'M', 165), +(202382, 'Darrius', 2009, 'M', 165), +(202383, 'Emory', 2009, 'M', 165), +(202384, 'Mikel', 2009, 'M', 165), +(202385, 'Mordechai', 2009, 'M', 165), +(202386, 'Nazir', 2009, 'M', 165), +(202387, 'Augustine', 2009, 'M', 164), +(202388, 'Dereck', 2009, 'M', 164), +(202389, 'Dontae', 2009, 'M', 164), +(202390, 'Keanu', 2009, 'M', 164), +(202391, 'Lennox', 2009, 'M', 164), +(202392, 'Shiloh', 2009, 'M', 164), +(202393, 'Stephan', 2009, 'M', 164), +(202394, 'Tyce', 2009, 'M', 164), +(202395, 'Colter', 2009, 'M', 163), +(202396, 'Jaleel', 2009, 'M', 163), +(202397, 'Lucca', 2009, 'M', 163), +(202398, 'Boden', 2009, 'M', 162), +(202399, 'Carmine', 2009, 'M', 162), +(202400, 'Perry', 2009, 'M', 162), +(202401, 'Adin', 2009, 'M', 161), +(202402, 'Dhruv', 2009, 'M', 161), +(202403, 'Eamon', 2009, 'M', 161), +(202404, 'Rowen', 2009, 'M', 161), +(202405, 'Shamar', 2009, 'M', 161), +(202406, 'Tegan', 2009, 'M', 161), +(202407, 'Treyvon', 2009, 'M', 161), +(202408, 'Jan', 2009, 'M', 160), +(202409, 'Maksim', 2009, 'M', 160), +(202410, 'Presley', 2009, 'M', 160), +(202411, 'Thiago', 2009, 'M', 160), +(202412, 'Zyon', 2009, 'M', 160), +(202413, 'Drayden', 2009, 'M', 159), +(202414, 'Ely', 2009, 'M', 159), +(202415, 'Kenji', 2009, 'M', 159), +(202416, 'Norman', 2009, 'M', 159), +(202417, 'Zakary', 2009, 'M', 159), +(202418, 'Mariano', 2009, 'M', 158), +(202419, 'Sammy', 2009, 'M', 158), +(202420, 'Shea', 2009, 'M', 158), +(202421, 'Arlo', 2009, 'M', 157), +(202422, 'Baron', 2009, 'M', 157), +(202423, 'Corban', 2009, 'M', 157), +(202424, 'Nestor', 2009, 'M', 157), +(202425, 'Devonte', 2009, 'M', 156), +(202426, 'Gannon', 2009, 'M', 156), +(202427, 'Jamil', 2009, 'M', 156), +(202428, 'Shlomo', 2009, 'M', 156), +(202429, 'Tavion', 2009, 'M', 156), +(202430, 'Vladimir', 2009, 'M', 156), +(202431, 'Zaden', 2009, 'M', 156), +(202432, 'Garret', 2009, 'M', 155), +(202433, 'Guadalupe', 2009, 'M', 155), +(202434, 'Kayleb', 2009, 'M', 155), +(202435, 'Keven', 2009, 'M', 155), +(202436, 'Elvin', 2009, 'M', 154), +(202437, 'Jael', 2009, 'M', 154), +(202438, 'Kavion', 2009, 'M', 154), +(202439, 'Koby', 2009, 'M', 154), +(202440, 'Kylen', 2009, 'M', 154), +(202441, 'Nixon', 2009, 'M', 154), +(202442, 'Camdyn', 2009, 'M', 153), +(202443, 'Dandre', 2009, 'M', 153), +(202444, 'Deshaun', 2009, 'M', 153), +(202445, 'Karim', 2009, 'M', 153), +(202446, 'Mayson', 2009, 'M', 153), +(202447, 'Milan', 2009, 'M', 153), +(202448, 'Trenten', 2009, 'M', 153), +(202449, 'Zeke', 2009, 'M', 153), +(202450, 'Jordin', 2009, 'M', 152), +(202451, 'Kenton', 2009, 'M', 152), +(202452, 'Lachlan', 2009, 'M', 152), +(202453, 'Siddharth', 2009, 'M', 152), +(202454, 'Tavin', 2009, 'M', 152), +(202455, 'Alexavier', 2009, 'M', 151), +(202456, 'Arian', 2009, 'M', 151), +(202457, 'Arman', 2009, 'M', 151), +(202458, 'Efren', 2009, 'M', 151), +(202459, 'Francesco', 2009, 'M', 151), +(202460, 'Izaac', 2009, 'M', 151), +(202461, 'Jariel', 2009, 'M', 151), +(202462, 'Kalvin', 2009, 'M', 151), +(202463, 'Kannon', 2009, 'M', 151), +(202464, 'Lucien', 2009, 'M', 151), +(202465, 'Abner', 2009, 'M', 150), +(202466, 'Alexandro', 2009, 'M', 150), +(202467, 'Caeden', 2009, 'M', 150), +(202468, 'Geoffrey', 2009, 'M', 150), +(202469, 'Haven', 2009, 'M', 150), +(202470, 'Javian', 2009, 'M', 150), +(202471, 'Bayron', 2009, 'M', 149), +(202472, 'Benny', 2009, 'M', 149), +(202473, 'Dewayne', 2009, 'M', 149), +(202474, 'Jermiah', 2009, 'M', 149), +(202475, 'Kennedy', 2009, 'M', 149), +(202476, 'Stephon', 2009, 'M', 149), +(202477, 'Alton', 2009, 'M', 148), +(202478, 'Amarion', 2009, 'M', 148), +(202479, 'Barry', 2009, 'M', 148), +(202480, 'Ishan', 2009, 'M', 148), +(202481, 'Kye', 2009, 'M', 148), +(202482, 'Neel', 2009, 'M', 148), +(202483, 'Om', 2009, 'M', 148), +(202484, 'Bilal', 2009, 'M', 147), +(202485, 'Blayne', 2009, 'M', 147), +(202486, 'Campbell', 2009, 'M', 147), +(202487, 'Emil', 2009, 'M', 147), +(202488, 'Gino', 2009, 'M', 147), +(202489, 'Travon', 2009, 'M', 147), +(202490, 'Austen', 2009, 'M', 146), +(202491, 'Avraham', 2009, 'M', 146), +(202492, 'Beck', 2009, 'M', 146), +(202493, 'Briggs', 2009, 'M', 146), +(202494, 'Emmitt', 2009, 'M', 146), +(202495, 'Ever', 2009, 'M', 146), +(202496, 'Guy', 2009, 'M', 146), +(202497, 'Austyn', 2009, 'M', 145), +(202498, 'Brad', 2009, 'M', 145), +(202499, 'Canaan', 2009, 'M', 145), +(202500, 'Dev', 2009, 'M', 145), +(202501, 'Jakub', 2009, 'M', 145), +(202502, 'Merrick', 2009, 'M', 145), +(202503, 'Trevion', 2009, 'M', 145), +(202504, 'Aubrey', 2009, 'M', 144), +(202505, 'Bodhi', 2009, 'M', 144), +(202506, 'Clifford', 2009, 'M', 144), +(202507, 'Crew', 2009, 'M', 144), +(202508, 'Denis', 2009, 'M', 144), +(202509, 'Jarvis', 2009, 'M', 144), +(202510, 'Keller', 2009, 'M', 144), +(202511, 'Kyree', 2009, 'M', 144), +(202512, 'Landan', 2009, 'M', 144), +(202513, 'Shannon', 2009, 'M', 144), +(202514, 'Aarush', 2009, 'M', 143), +(202515, 'Markel', 2009, 'M', 143), +(202516, 'Ajay', 2009, 'M', 142), +(202517, 'Daveon', 2009, 'M', 142), +(202518, 'Sebastien', 2009, 'M', 142), +(202519, 'Bryton', 2009, 'M', 141), +(202520, 'Harlan', 2009, 'M', 141), +(202521, 'Taven', 2009, 'M', 141), +(202522, 'Clyde', 2009, 'M', 140), +(202523, 'Fredy', 2009, 'M', 140), +(202524, 'Kalen', 2009, 'M', 140), +(202525, 'Kelly', 2009, 'M', 140), +(202526, 'Korey', 2009, 'M', 140), +(202527, 'Rylen', 2009, 'M', 140), +(202528, 'Sami', 2009, 'M', 140), +(202529, 'Trae', 2009, 'M', 140), +(202530, 'Cian', 2009, 'M', 139), +(202531, 'Earl', 2009, 'M', 139), +(202532, 'Irving', 2009, 'M', 139), +(202533, 'Khalid', 2009, 'M', 139), +(202534, 'Marek', 2009, 'M', 139), +(202535, 'Oakley', 2009, 'M', 139), +(202536, 'Tatum', 2009, 'M', 139), +(202537, 'Baylor', 2009, 'M', 138), +(202538, 'Briar', 2009, 'M', 138), +(202539, 'Cristiano', 2009, 'M', 138), +(202540, 'Dallin', 2009, 'M', 138), +(202541, 'Jordy', 2009, 'M', 138), +(202542, 'Lonnie', 2009, 'M', 138), +(202543, 'Sabastian', 2009, 'M', 138), +(202544, 'Anders', 2009, 'M', 137), +(202545, 'Brantley', 2009, 'M', 137), +(202546, 'Chayse', 2009, 'M', 137), +(202547, 'Courtney', 2009, 'M', 137), +(202548, 'Ewan', 2009, 'M', 137), +(202549, 'Fidel', 2009, 'M', 137), +(202550, 'Jeshua', 2009, 'M', 137), +(202551, 'Judson', 2009, 'M', 137), +(202552, 'Oskar', 2009, 'M', 137), +(202553, 'Syed', 2009, 'M', 137), +(202554, 'Avi', 2009, 'M', 136), +(202555, 'Chevy', 2009, 'M', 136), +(202556, 'Coy', 2009, 'M', 136), +(202557, 'Don', 2009, 'M', 136), +(202558, 'Johnpaul', 2009, 'M', 136), +(202559, 'Nery', 2009, 'M', 136), +(202560, 'Tristyn', 2009, 'M', 136), +(202561, 'Vince', 2009, 'M', 136), +(202562, 'Daryl', 2009, 'M', 135), +(202563, 'Dezmond', 2009, 'M', 135), +(202564, 'Karsen', 2009, 'M', 135), +(202565, 'Princeton', 2009, 'M', 135), +(202566, 'Ridge', 2009, 'M', 135), +(202567, 'Shmuel', 2009, 'M', 135), +(202568, 'Tahj', 2009, 'M', 135), +(202569, 'Kurt', 2009, 'M', 134), +(202570, 'Masen', 2009, 'M', 134), +(202571, 'Tylan', 2009, 'M', 134), +(202572, 'Wilmer', 2009, 'M', 134), +(202573, 'Xavion', 2009, 'M', 134), +(202574, 'Freddie', 2009, 'M', 133), +(202575, 'Gian', 2009, 'M', 133), +(202576, 'Rowdy', 2009, 'M', 133), +(202577, 'Yahya', 2009, 'M', 133), +(202578, 'Brandt', 2009, 'M', 132), +(202579, 'Britton', 2009, 'M', 132), +(202580, 'Clifton', 2009, 'M', 132), +(202581, 'Denver', 2009, 'M', 132), +(202582, 'Evin', 2009, 'M', 132), +(202583, 'Finnian', 2009, 'M', 132), +(202584, 'Gianluca', 2009, 'M', 132), +(202585, 'Grayden', 2009, 'M', 132), +(202586, 'Grey', 2009, 'M', 132), +(202587, 'Leeland', 2009, 'M', 132), +(202588, 'Tevin', 2009, 'M', 132), +(202589, 'Coleton', 2009, 'M', 131), +(202590, 'Jaren', 2009, 'M', 131), +(202591, 'Kaidyn', 2009, 'M', 131), +(202592, 'Lloyd', 2009, 'M', 131), +(202593, 'Otis', 2009, 'M', 131), +(202594, 'Yaakov', 2009, 'M', 131), +(202595, 'Alek', 2009, 'M', 130), +(202596, 'Alexandre', 2009, 'M', 130), +(202597, 'Gerard', 2009, 'M', 130), +(202598, 'Jakari', 2009, 'M', 130), +(202599, 'Korbyn', 2009, 'M', 130), +(202600, 'Lucius', 2009, 'M', 130), +(202601, 'Phineas', 2009, 'M', 130), +(202602, 'Titan', 2009, 'M', 130), +(202603, 'Yash', 2009, 'M', 130), +(202604, 'Aven', 2009, 'M', 129), +(202605, 'Desean', 2009, 'M', 129), +(202606, 'Haden', 2009, 'M', 129), +(202607, 'Kevon', 2009, 'M', 129), +(202608, 'Terence', 2009, 'M', 129), +(202609, 'Ayan', 2009, 'M', 128), +(202610, 'Azariah', 2009, 'M', 128), +(202611, 'Bowen', 2009, 'M', 128), +(202612, 'Jeff', 2009, 'M', 128), +(202613, 'Jeremias', 2009, 'M', 128), +(202614, 'Jonatan', 2009, 'M', 128), +(202615, 'Keandre', 2009, 'M', 128), +(202616, 'Kollin', 2009, 'M', 128), +(202617, 'Malakhi', 2009, 'M', 128), +(202618, 'Demetri', 2009, 'M', 127), +(202619, 'Ervin', 2009, 'M', 127), +(202620, 'Jaheim', 2009, 'M', 127), +(202621, 'Tye', 2009, 'M', 127), +(202622, 'Abdul', 2009, 'M', 126), +(202623, 'Gus', 2009, 'M', 126), +(202624, 'Hagen', 2009, 'M', 126), +(202625, 'Heriberto', 2009, 'M', 126), +(202626, 'Ira', 2009, 'M', 126), +(202627, 'Jaedon', 2009, 'M', 126), +(202628, 'Lester', 2009, 'M', 126), +(202629, 'Raymundo', 2009, 'M', 126), +(202630, 'Rico', 2009, 'M', 126), +(202631, 'Stetson', 2009, 'M', 126), +(202632, 'Amar', 2009, 'M', 125), +(202633, 'Arnold', 2009, 'M', 125), +(202634, 'Bodie', 2009, 'M', 125), +(202635, 'Broden', 2009, 'M', 125), +(202636, 'Canyon', 2009, 'M', 125), +(202637, 'Edmund', 2009, 'M', 125), +(202638, 'Josef', 2009, 'M', 125), +(202639, 'Magnus', 2009, 'M', 125), +(202640, 'Nate', 2009, 'M', 125), +(202641, 'Tzvi', 2009, 'M', 125), +(202642, 'Brighton', 2009, 'M', 124), +(202643, 'Latrell', 2009, 'M', 124), +(202644, 'Ramses', 2009, 'M', 124), +(202645, 'Torin', 2009, 'M', 124), +(202646, 'Ayush', 2009, 'M', 123), +(202647, 'Braulio', 2009, 'M', 123), +(202648, 'Brysen', 2009, 'M', 123), +(202649, 'Kurtis', 2009, 'M', 123), +(202650, 'Myron', 2009, 'M', 123), +(202651, 'Nevin', 2009, 'M', 123), +(202652, 'Rian', 2009, 'M', 123), +(202653, 'Rickey', 2009, 'M', 123), +(202654, 'Benicio', 2009, 'M', 122), +(202655, 'Bryden', 2009, 'M', 122), +(202656, 'Colson', 2009, 'M', 122), +(202657, 'Daquan', 2009, 'M', 122), +(202658, 'Dyllan', 2009, 'M', 122), +(202659, 'Izaak', 2009, 'M', 122), +(202660, 'Jakai', 2009, 'M', 122), +(202661, 'Juancarlos', 2009, 'M', 122), +(202662, 'Kent', 2009, 'M', 122), +(202663, 'Keyshawn', 2009, 'M', 122), +(202664, 'Osmar', 2009, 'M', 122), +(202665, 'Royal', 2009, 'M', 122), +(202666, 'Thatcher', 2009, 'M', 122), +(202667, 'Donnie', 2009, 'M', 121), +(202668, 'Emir', 2009, 'M', 121), +(202669, 'Fred', 2009, 'M', 121), +(202670, 'Harris', 2009, 'M', 121), +(202671, 'Mauro', 2009, 'M', 121), +(202672, 'Morris', 2009, 'M', 121), +(202673, 'Raheem', 2009, 'M', 121), +(202674, 'Brooklyn', 2009, 'M', 120), +(202675, 'Duane', 2009, 'M', 120), +(202676, 'Jet', 2009, 'M', 120), +(202677, 'Leyton', 2009, 'M', 120), +(202678, 'Sutton', 2009, 'M', 120), +(202679, 'Anakin', 2009, 'M', 119), +(202680, 'Benito', 2009, 'M', 119), +(202681, 'Diesel', 2009, 'M', 119), +(202682, 'Glen', 2009, 'M', 119), +(202683, 'Johnnie', 2009, 'M', 119), +(202684, 'Marion', 2009, 'M', 119), +(202685, 'Omarion', 2009, 'M', 119), +(202686, 'Rashawn', 2009, 'M', 119), +(202687, 'Treyson', 2009, 'M', 119), +(202688, 'Viktor', 2009, 'M', 119), +(202689, 'Zahir', 2009, 'M', 119), +(202690, 'Abhinav', 2009, 'M', 118), +(202691, 'Dylon', 2009, 'M', 118), +(202692, 'Jaylyn', 2009, 'M', 118), +(202693, 'Kegan', 2009, 'M', 118), +(202694, 'Massimo', 2009, 'M', 118), +(202695, 'Mikhail', 2009, 'M', 118), +(202696, 'Osman', 2009, 'M', 118), +(202697, 'Pierson', 2009, 'M', 118), +(202698, 'Azael', 2009, 'M', 117), +(202699, 'Darey', 2009, 'M', 117), +(202700, 'Dashiell', 2009, 'M', 117), +(202701, 'Gerson', 2009, 'M', 117), +(202702, 'Ishmael', 2009, 'M', 117), +(202703, 'Javien', 2009, 'M', 117), +(202704, 'Mikael', 2009, 'M', 117), +(202705, 'Obed', 2009, 'M', 117), +(202706, 'Talen', 2009, 'M', 117), +(202707, 'Dan', 2009, 'M', 116), +(202708, 'Devlin', 2009, 'M', 116), +(202709, 'Foster', 2009, 'M', 116), +(202710, 'Giovany', 2009, 'M', 116), +(202711, 'Jameer', 2009, 'M', 116), +(202712, 'Kiran', 2009, 'M', 116), +(202713, 'Tiago', 2009, 'M', 116), +(202714, 'Yitzchok', 2009, 'M', 116), +(202715, 'Amani', 2009, 'M', 115), +(202716, 'Amauri', 2009, 'M', 115), +(202717, 'Deion', 2009, 'M', 115), +(202718, 'Jarell', 2009, 'M', 115), +(202719, 'Nikita', 2009, 'M', 115), +(202720, 'Shia', 2009, 'M', 115), +(202721, 'Tariq', 2009, 'M', 115), +(202722, 'Xavi', 2009, 'M', 115), +(202723, 'Zev', 2009, 'M', 115), +(202724, 'Carlton', 2009, 'M', 114), +(202725, 'Kaison', 2009, 'M', 114), +(202726, 'Karon', 2009, 'M', 114), +(202727, 'Kaysen', 2009, 'M', 114), +(202728, 'Kyran', 2009, 'M', 114), +(202729, 'Musa', 2009, 'M', 114), +(202730, 'Rayyan', 2009, 'M', 114), +(202731, 'Shayne', 2009, 'M', 114), +(202732, 'Stuart', 2009, 'M', 114), +(202733, 'Syncere', 2009, 'M', 114), +(202734, 'Vernon', 2009, 'M', 114), +(202735, 'Yakov', 2009, 'M', 114), +(202736, 'Arya', 2009, 'M', 113), +(202737, 'Dameon', 2009, 'M', 113), +(202738, 'Darrin', 2009, 'M', 113), +(202739, 'Isidro', 2009, 'M', 113), +(202740, 'Joseluis', 2009, 'M', 113), +(202741, 'Justyn', 2009, 'M', 113), +(202742, 'Manny', 2009, 'M', 113), +(202743, 'Shaan', 2009, 'M', 113), +(202744, 'Tobin', 2009, 'M', 113), +(202745, 'Tyron', 2009, 'M', 113), +(202746, 'Uziel', 2009, 'M', 113), +(202747, 'Vihaan', 2009, 'M', 113), +(202748, 'Yariel', 2009, 'M', 113), +(202749, 'Andrei', 2009, 'M', 112), +(202750, 'Damarcus', 2009, 'M', 112), +(202751, 'Dashaun', 2009, 'M', 112), +(202752, 'Daylon', 2009, 'M', 112), +(202753, 'Demari', 2009, 'M', 112), +(202754, 'Deonte', 2009, 'M', 112), +(202755, 'Hans', 2009, 'M', 112), +(202756, 'Lazaro', 2009, 'M', 112), +(202757, 'Neal', 2009, 'M', 112), +(202758, 'Patricio', 2009, 'M', 112), +(202759, 'Sahil', 2009, 'M', 112), +(202760, 'Unknown', 2009, 'M', 112), +(202761, 'Yurem', 2009, 'M', 112), +(202762, 'Angus', 2009, 'M', 111), +(202763, 'Benton', 2009, 'M', 111), +(202764, 'Brayson', 2009, 'M', 111), +(202765, 'Darrion', 2009, 'M', 111), +(202766, 'Dayne', 2009, 'M', 111), +(202767, 'Eliyahu', 2009, 'M', 111), +(202768, 'Hussein', 2009, 'M', 111), +(202769, 'Isac', 2009, 'M', 111), +(202770, 'Kirk', 2009, 'M', 111), +(202771, 'Linus', 2009, 'M', 111), +(202772, 'Lyndon', 2009, 'M', 111), +(202773, 'Aayan', 2009, 'M', 110), +(202774, 'Jacorey', 2009, 'M', 110), +(202775, 'Jaysen', 2009, 'M', 110), +(202776, 'Jayven', 2009, 'M', 110), +(202777, 'Josias', 2009, 'M', 110), +(202778, 'Khristian', 2009, 'M', 110), +(202779, 'Rogan', 2009, 'M', 110), +(202780, 'Avrohom', 2009, 'M', 109), +(202781, 'Clint', 2009, 'M', 109), +(202782, 'Deondre', 2009, 'M', 109), +(202783, 'Gabe', 2009, 'M', 109), +(202784, 'Jahir', 2009, 'M', 109), +(202785, 'Kaedyn', 2009, 'M', 109), +(202786, 'Kain', 2009, 'M', 109), +(202787, 'Maddix', 2009, 'M', 109), +(202788, 'Nolen', 2009, 'M', 109), +(202789, 'Teegan', 2009, 'M', 109), +(202790, 'Westley', 2009, 'M', 109), +(202791, 'Zephaniah', 2009, 'M', 109), +(202792, 'Ahmir', 2009, 'M', 108), +(202793, 'Antwon', 2009, 'M', 108), +(202794, 'Braydin', 2009, 'M', 108), +(202795, 'Filip', 2009, 'M', 108), +(202796, 'Graysen', 2009, 'M', 108), +(202797, 'Kayne', 2009, 'M', 108), +(202798, 'Khamari', 2009, 'M', 108), +(202799, 'Koda', 2009, 'M', 108), +(202800, 'Louie', 2009, 'M', 108), +(202801, 'Tavian', 2009, 'M', 108), +(202802, 'Cadence', 2009, 'M', 107), +(202803, 'Daron', 2009, 'M', 107), +(202804, 'Jacari', 2009, 'M', 107), +(202805, 'Jahmir', 2009, 'M', 107), +(202806, 'Trever', 2009, 'M', 107), +(202807, 'Zakaria', 2009, 'M', 107), +(202808, 'Zayd', 2009, 'M', 107), +(202809, 'Adyn', 2009, 'M', 106), +(202810, 'Canon', 2009, 'M', 106), +(202811, 'Darin', 2009, 'M', 106), +(202812, 'Daylin', 2009, 'M', 106), +(202813, 'Eliel', 2009, 'M', 106), +(202814, 'Hyrum', 2009, 'M', 106), +(202815, 'Idris', 2009, 'M', 106), +(202816, 'Javonte', 2009, 'M', 106), +(202817, 'Kamdyn', 2009, 'M', 106), +(202818, 'Mykel', 2009, 'M', 106), +(202819, 'Rick', 2009, 'M', 106), +(202820, 'Xavior', 2009, 'M', 106), +(202821, 'Demarco', 2009, 'M', 105), +(202822, 'Floyd', 2009, 'M', 105), +(202823, 'Gregorio', 2009, 'M', 105), +(202824, 'Javin', 2009, 'M', 105), +(202825, 'Kaine', 2009, 'M', 105), +(202826, 'Marko', 2009, 'M', 105), +(202827, 'Travion', 2009, 'M', 105), +(202828, 'Chayce', 2009, 'M', 104), +(202829, 'Eleazar', 2009, 'M', 104), +(202830, 'Ismail', 2009, 'M', 104), +(202831, 'Jimmie', 2009, 'M', 104), +(202832, 'Kahlil', 2009, 'M', 104), +(202833, 'Karsten', 2009, 'M', 104), +(202834, 'Ken', 2009, 'M', 104), +(202835, 'Kentrell', 2009, 'M', 104), +(202836, 'Paolo', 2009, 'M', 104), +(202837, 'Athan', 2009, 'M', 103), +(202838, 'Atreyu', 2009, 'M', 103), +(202839, 'Christofer', 2009, 'M', 103), +(202840, 'Cormac', 2009, 'M', 103), +(202841, 'Emmet', 2009, 'M', 103), +(202842, 'Isael', 2009, 'M', 103), +(202843, 'Jackie', 2009, 'M', 103), +(202844, 'Jelani', 2009, 'M', 103), +(202845, 'Eder', 2009, 'M', 102), +(202846, 'Henrik', 2009, 'M', 102), +(202847, 'Jaelyn', 2009, 'M', 102), +(202848, 'Jamaal', 2009, 'M', 102), +(202849, 'Jayshawn', 2009, 'M', 102), +(202850, 'Kris', 2009, 'M', 102), +(202851, 'Maison', 2009, 'M', 102), +(202852, 'Ashtyn', 2009, 'M', 101), +(202853, 'Brant', 2009, 'M', 101), +(202854, 'Izak', 2009, 'M', 101), +(202855, 'Jakobi', 2009, 'M', 101), +(202856, 'Javan', 2009, 'M', 101), +(202857, 'Keshaun', 2009, 'M', 101), +(202858, 'Yaseen', 2009, 'M', 101), +(202859, 'Achilles', 2009, 'M', 100), +(202860, 'Corbyn', 2009, 'M', 100), +(202861, 'Geovany', 2009, 'M', 100), +(202862, 'Imran', 2009, 'M', 100), +(202863, 'Kemari', 2009, 'M', 100), +(202864, 'Luc', 2009, 'M', 100), +(202865, 'Osiel', 2009, 'M', 100), +(202866, 'Isabella', 2010, 'F', 22883), +(202867, 'Sophia', 2010, 'F', 20612), +(202868, 'Emma', 2010, 'F', 17322), +(202869, 'Olivia', 2010, 'F', 17012), +(202870, 'Ava', 2010, 'F', 15418), +(202871, 'Emily', 2010, 'F', 14260), +(202872, 'Abigail', 2010, 'F', 14228), +(202873, 'Madison', 2010, 'F', 13166), +(202874, 'Chloe', 2010, 'F', 11741), +(202875, 'Mia', 2010, 'F', 10624), +(202876, 'Addison', 2010, 'F', 10317), +(202877, 'Elizabeth', 2010, 'F', 10242), +(202878, 'Ella', 2010, 'F', 9868), +(202879, 'Natalie', 2010, 'F', 8765), +(202880, 'Samantha', 2010, 'F', 8396), +(202881, 'Alexis', 2010, 'F', 8249), +(202882, 'Lily', 2010, 'F', 7974), +(202883, 'Grace', 2010, 'F', 7675), +(202884, 'Hailey', 2010, 'F', 7004), +(202885, 'Alyssa', 2010, 'F', 6978), +(202886, 'Hannah', 2010, 'F', 6974), +(202887, 'Lillian', 2010, 'F', 6946), +(202888, 'Avery', 2010, 'F', 6670), +(202889, 'Leah', 2010, 'F', 6527), +(202890, 'Nevaeh', 2010, 'F', 6402), +(202891, 'Sofia', 2010, 'F', 6319), +(202892, 'Anna', 2010, 'F', 6312), +(202893, 'Sarah', 2010, 'F', 6308), +(202894, 'Ashley', 2010, 'F', 6305), +(202895, 'Brianna', 2010, 'F', 6267), +(202896, 'Zoe', 2010, 'F', 6261), +(202897, 'Victoria', 2010, 'F', 6219), +(202898, 'Gabriella', 2010, 'F', 6167), +(202899, 'Brooklyn', 2010, 'F', 6112), +(202900, 'Kaylee', 2010, 'F', 6085), +(202901, 'Taylor', 2010, 'F', 5892), +(202902, 'Layla', 2010, 'F', 5882), +(202903, 'Allison', 2010, 'F', 5858), +(202904, 'Evelyn', 2010, 'F', 5837), +(202905, 'Riley', 2010, 'F', 5534), +(202906, 'Amelia', 2010, 'F', 5452), +(202907, 'Khloe', 2010, 'F', 5398), +(202908, 'Makayla', 2010, 'F', 5386), +(202909, 'Savannah', 2010, 'F', 5361), +(202910, 'Aubrey', 2010, 'F', 5354), +(202911, 'Charlotte', 2010, 'F', 5354), +(202912, 'Zoey', 2010, 'F', 5200), +(202913, 'Bella', 2010, 'F', 5109), +(202914, 'Kayla', 2010, 'F', 5047), +(202915, 'Alexa', 2010, 'F', 5036), +(202916, 'Peyton', 2010, 'F', 4967), +(202917, 'Audrey', 2010, 'F', 4948), +(202918, 'Claire', 2010, 'F', 4914), +(202919, 'Arianna', 2010, 'F', 4832), +(202920, 'Julia', 2010, 'F', 4673), +(202921, 'Aaliyah', 2010, 'F', 4657), +(202922, 'Kylie', 2010, 'F', 4592), +(202923, 'Lauren', 2010, 'F', 4464), +(202924, 'Sophie', 2010, 'F', 4413), +(202925, 'Sydney', 2010, 'F', 4328), +(202926, 'Camila', 2010, 'F', 4300), +(202927, 'Jasmine', 2010, 'F', 4162), +(202928, 'Morgan', 2010, 'F', 4072), +(202929, 'Alexandra', 2010, 'F', 4016), +(202930, 'Jocelyn', 2010, 'F', 3981), +(202931, 'Maya', 2010, 'F', 3963), +(202932, 'Gianna', 2010, 'F', 3956), +(202933, 'Mackenzie', 2010, 'F', 3873), +(202934, 'Kimberly', 2010, 'F', 3865), +(202935, 'Katherine', 2010, 'F', 3861), +(202936, 'Destiny', 2010, 'F', 3719), +(202937, 'Brooke', 2010, 'F', 3699), +(202938, 'Trinity', 2010, 'F', 3693), +(202939, 'Faith', 2010, 'F', 3684), +(202940, 'Lucy', 2010, 'F', 3633), +(202941, 'Madelyn', 2010, 'F', 3616), +(202942, 'Madeline', 2010, 'F', 3601), +(202943, 'Bailey', 2010, 'F', 3586), +(202944, 'Payton', 2010, 'F', 3579), +(202945, 'Andrea', 2010, 'F', 3567), +(202946, 'Autumn', 2010, 'F', 3508), +(202947, 'Melanie', 2010, 'F', 3485), +(202948, 'Serenity', 2010, 'F', 3468), +(202949, 'Ariana', 2010, 'F', 3465), +(202950, 'Stella', 2010, 'F', 3437), +(202951, 'Maria', 2010, 'F', 3413), +(202952, 'Molly', 2010, 'F', 3359), +(202953, 'Caroline', 2010, 'F', 3353), +(202954, 'Genesis', 2010, 'F', 3303), +(202955, 'Kaitlyn', 2010, 'F', 3290), +(202956, 'Eva', 2010, 'F', 3275), +(202957, 'Jessica', 2010, 'F', 3192), +(202958, 'Gabrielle', 2010, 'F', 3140), +(202959, 'Angelina', 2010, 'F', 3130), +(202960, 'Naomi', 2010, 'F', 3120), +(202961, 'Valeria', 2010, 'F', 3114), +(202962, 'Mariah', 2010, 'F', 3097), +(202963, 'Natalia', 2010, 'F', 3042), +(202964, 'Rachel', 2010, 'F', 3010), +(202965, 'Paige', 2010, 'F', 3006), +(202966, 'Mya', 2010, 'F', 2990), +(202967, 'Rylee', 2010, 'F', 2974), +(202968, 'Katelyn', 2010, 'F', 2952), +(202969, 'Ellie', 2010, 'F', 2907), +(202970, 'Isabelle', 2010, 'F', 2892), +(202971, 'Lilly', 2010, 'F', 2882), +(202972, 'Vanessa', 2010, 'F', 2879), +(202973, 'London', 2010, 'F', 2870), +(202974, 'Mary', 2010, 'F', 2862), +(202975, 'Lydia', 2010, 'F', 2829), +(202976, 'Kennedy', 2010, 'F', 2828), +(202977, 'Jordyn', 2010, 'F', 2802), +(202978, 'Ruby', 2010, 'F', 2790), +(202979, 'Jade', 2010, 'F', 2716), +(202980, 'Scarlett', 2010, 'F', 2715), +(202981, 'Isabel', 2010, 'F', 2653), +(202982, 'Annabelle', 2010, 'F', 2637), +(202983, 'Harper', 2010, 'F', 2629), +(202984, 'Sadie', 2010, 'F', 2629), +(202985, 'Sara', 2010, 'F', 2627), +(202986, 'Jennifer', 2010, 'F', 2616), +(202987, 'Violet', 2010, 'F', 2564), +(202988, 'Nicole', 2010, 'F', 2561), +(202989, 'Liliana', 2010, 'F', 2513), +(202990, 'Michelle', 2010, 'F', 2500), +(202991, 'Stephanie', 2010, 'F', 2485), +(202992, 'Reagan', 2010, 'F', 2476), +(202993, 'Jada', 2010, 'F', 2470), +(202994, 'Adriana', 2010, 'F', 2460), +(202995, 'Gracie', 2010, 'F', 2421), +(202996, 'Megan', 2010, 'F', 2401), +(202997, 'Jayla', 2010, 'F', 2372), +(202998, 'Kendall', 2010, 'F', 2335), +(202999, 'Lyla', 2010, 'F', 2287), +(203000, 'Rebecca', 2010, 'F', 2280), +(203001, 'Amy', 2010, 'F', 2279), +(203002, 'Reese', 2010, 'F', 2263), +(203003, 'Izabella', 2010, 'F', 2249), +(203004, 'Kylee', 2010, 'F', 2248), +(203005, 'Laila', 2010, 'F', 2246), +(203006, 'Jenna', 2010, 'F', 2221), +(203007, 'Brooklynn', 2010, 'F', 2183), +(203008, 'Aliyah', 2010, 'F', 2157), +(203009, 'Piper', 2010, 'F', 2139), +(203010, 'Mckenzie', 2010, 'F', 2128), +(203011, 'Juliana', 2010, 'F', 2124), +(203012, 'Giselle', 2010, 'F', 2087), +(203013, 'Gabriela', 2010, 'F', 2080), +(203014, 'Valerie', 2010, 'F', 2063), +(203015, 'Daniela', 2010, 'F', 2037), +(203016, 'Daisy', 2010, 'F', 2014), +(203017, 'Valentina', 2010, 'F', 1999), +(203018, 'Makenzie', 2010, 'F', 1990), +(203019, 'Haley', 2010, 'F', 1979), +(203020, 'Lila', 2010, 'F', 1969), +(203021, 'Ashlyn', 2010, 'F', 1947), +(203022, 'Melissa', 2010, 'F', 1946), +(203023, 'Vivian', 2010, 'F', 1941), +(203024, 'Nora', 2010, 'F', 1935), +(203025, 'Angela', 2010, 'F', 1911), +(203026, 'Katie', 2010, 'F', 1895), +(203027, 'Hayden', 2010, 'F', 1891), +(203028, 'Elena', 2010, 'F', 1881), +(203029, 'Summer', 2010, 'F', 1881), +(203030, 'Keira', 2010, 'F', 1859), +(203031, 'Eleanor', 2010, 'F', 1850), +(203032, 'Clara', 2010, 'F', 1836), +(203033, 'Eliana', 2010, 'F', 1831), +(203034, 'Jillian', 2010, 'F', 1817), +(203035, 'Alana', 2010, 'F', 1814), +(203036, 'Jacqueline', 2010, 'F', 1805), +(203037, 'Alice', 2010, 'F', 1778), +(203038, 'Adrianna', 2010, 'F', 1772), +(203039, 'Miranda', 2010, 'F', 1770), +(203040, 'Alivia', 2010, 'F', 1764), +(203041, 'Julianna', 2010, 'F', 1745), +(203042, 'Aniyah', 2010, 'F', 1736), +(203043, 'Eden', 2010, 'F', 1724), +(203044, 'Jordan', 2010, 'F', 1724), +(203045, 'Mikayla', 2010, 'F', 1720), +(203046, 'Skylar', 2010, 'F', 1716), +(203047, 'Margaret', 2010, 'F', 1697), +(203048, 'Briana', 2010, 'F', 1687), +(203049, 'Josephine', 2010, 'F', 1676), +(203050, 'Ryleigh', 2010, 'F', 1676), +(203051, 'Shelby', 2010, 'F', 1675), +(203052, 'Delilah', 2010, 'F', 1664), +(203053, 'Amanda', 2010, 'F', 1655), +(203054, 'Allie', 2010, 'F', 1634), +(203055, 'Diana', 2010, 'F', 1620), +(203056, 'Addyson', 2010, 'F', 1615), +(203057, 'Brielle', 2010, 'F', 1614), +(203058, 'Catherine', 2010, 'F', 1610), +(203059, 'Angel', 2010, 'F', 1606), +(203060, 'Danielle', 2010, 'F', 1597), +(203061, 'Elise', 2010, 'F', 1585), +(203062, 'Ana', 2010, 'F', 1572), +(203063, 'Melody', 2010, 'F', 1569), +(203064, 'Leslie', 2010, 'F', 1564), +(203065, 'Penelope', 2010, 'F', 1546), +(203066, 'Makenna', 2010, 'F', 1541), +(203067, 'Marissa', 2010, 'F', 1527), +(203068, 'Aurora', 2010, 'F', 1523), +(203069, 'Alexandria', 2010, 'F', 1509), +(203070, 'Leila', 2010, 'F', 1507), +(203071, 'Kendra', 2010, 'F', 1495), +(203072, 'Alaina', 2010, 'F', 1494), +(203073, 'Kate', 2010, 'F', 1489), +(203074, 'Delaney', 2010, 'F', 1484), +(203075, 'Sienna', 2010, 'F', 1477), +(203076, 'Lola', 2010, 'F', 1472), +(203077, 'Jayden', 2010, 'F', 1460), +(203078, 'Ariel', 2010, 'F', 1450), +(203079, 'Sierra', 2010, 'F', 1446), +(203080, 'Erin', 2010, 'F', 1440), +(203081, 'Hadley', 2010, 'F', 1439), +(203082, 'Carly', 2010, 'F', 1437), +(203083, 'Miley', 2010, 'F', 1437), +(203084, 'Sabrina', 2010, 'F', 1431), +(203085, 'Alicia', 2010, 'F', 1425), +(203086, 'Tessa', 2010, 'F', 1422), +(203087, 'Chelsea', 2010, 'F', 1416), +(203088, 'Amber', 2010, 'F', 1408), +(203089, 'Aubree', 2010, 'F', 1408), +(203090, 'Maggie', 2010, 'F', 1406), +(203091, 'Amaya', 2010, 'F', 1394), +(203092, 'Cadence', 2010, 'F', 1379), +(203093, 'Mckenna', 2010, 'F', 1378), +(203094, 'Kathryn', 2010, 'F', 1365), +(203095, 'Cheyenne', 2010, 'F', 1364), +(203096, 'Maci', 2010, 'F', 1352), +(203097, 'Kinley', 2010, 'F', 1351), +(203098, 'Kelsey', 2010, 'F', 1347), +(203099, 'Marley', 2010, 'F', 1342), +(203100, 'Alayna', 2010, 'F', 1332), +(203101, 'Jayda', 2010, 'F', 1325), +(203102, 'Paisley', 2010, 'F', 1323), +(203103, 'Ashlynn', 2010, 'F', 1319), +(203104, 'Callie', 2010, 'F', 1319), +(203105, 'Lexi', 2010, 'F', 1310), +(203106, 'Hope', 2010, 'F', 1309), +(203107, 'Eliza', 2010, 'F', 1307), +(203108, 'Teagan', 2010, 'F', 1300), +(203109, 'Alexia', 2010, 'F', 1294), +(203110, 'Kayleigh', 2010, 'F', 1293), +(203111, 'Harmony', 2010, 'F', 1289), +(203112, 'Cassidy', 2010, 'F', 1286), +(203113, 'Karen', 2010, 'F', 1286), +(203114, 'Nadia', 2010, 'F', 1286), +(203115, 'Christina', 2010, 'F', 1284), +(203116, 'Jazmin', 2010, 'F', 1280), +(203117, 'Kyla', 2010, 'F', 1280), +(203118, 'Alondra', 2010, 'F', 1279), +(203119, 'Breanna', 2010, 'F', 1279), +(203120, 'Quinn', 2010, 'F', 1276), +(203121, 'Adalyn', 2010, 'F', 1266), +(203122, 'Kaydence', 2010, 'F', 1264), +(203123, 'Fiona', 2010, 'F', 1262), +(203124, 'Allyson', 2010, 'F', 1258), +(203125, 'Esther', 2010, 'F', 1252), +(203126, 'Josie', 2010, 'F', 1250), +(203127, 'Mariana', 2010, 'F', 1249), +(203128, 'Haylee', 2010, 'F', 1244), +(203129, 'Hazel', 2010, 'F', 1239), +(203130, 'Alina', 2010, 'F', 1236), +(203131, 'Lucia', 2010, 'F', 1236), +(203132, 'Danna', 2010, 'F', 1226), +(203133, 'Leilani', 2010, 'F', 1224), +(203134, 'Alison', 2010, 'F', 1216), +(203135, 'Camille', 2010, 'F', 1215), +(203136, 'Fatima', 2010, 'F', 1213), +(203137, 'Jazmine', 2010, 'F', 1209), +(203138, 'Ximena', 2010, 'F', 1209), +(203139, 'Laura', 2010, 'F', 1207), +(203140, 'Presley', 2010, 'F', 1203), +(203141, 'Cora', 2010, 'F', 1201), +(203142, 'Cecilia', 2010, 'F', 1199), +(203143, 'Genevieve', 2010, 'F', 1195), +(203144, 'Alejandra', 2010, 'F', 1188), +(203145, 'Bianca', 2010, 'F', 1177), +(203146, 'Mallory', 2010, 'F', 1172), +(203147, 'Camryn', 2010, 'F', 1171), +(203148, 'Esmeralda', 2010, 'F', 1165), +(203149, 'Abby', 2010, 'F', 1146), +(203150, 'Dakota', 2010, 'F', 1141), +(203151, 'Juliet', 2010, 'F', 1141), +(203152, 'Brynn', 2010, 'F', 1140), +(203153, 'Londyn', 2010, 'F', 1117), +(203154, 'Willow', 2010, 'F', 1116), +(203155, 'Maddison', 2010, 'F', 1115), +(203156, 'Macy', 2010, 'F', 1113), +(203157, 'Kara', 2010, 'F', 1112), +(203158, 'Karina', 2010, 'F', 1107), +(203159, 'Kyleigh', 2010, 'F', 1106), +(203160, 'Veronica', 2010, 'F', 1104), +(203161, 'Daniella', 2010, 'F', 1101), +(203162, 'Isla', 2010, 'F', 1098), +(203163, 'Norah', 2010, 'F', 1089), +(203164, 'Ivy', 2010, 'F', 1086), +(203165, 'Miriam', 2010, 'F', 1076), +(203166, 'Malia', 2010, 'F', 1072), +(203167, 'Caitlyn', 2010, 'F', 1070), +(203168, 'Heidi', 2010, 'F', 1069), +(203169, 'Kamryn', 2010, 'F', 1067), +(203170, 'Joanna', 2010, 'F', 1063), +(203171, 'Kelly', 2010, 'F', 1058), +(203172, 'Kinsley', 2010, 'F', 1045), +(203173, 'Phoebe', 2010, 'F', 1038), +(203174, 'Kira', 2010, 'F', 1034), +(203175, 'Annabella', 2010, 'F', 1027), +(203176, 'Tiffany', 2010, 'F', 1026), +(203177, 'Katelynn', 2010, 'F', 1024), +(203178, 'Emery', 2010, 'F', 1023), +(203179, 'Carmen', 2010, 'F', 1012), +(203180, 'Emerson', 2010, 'F', 1009), +(203181, 'Iris', 2010, 'F', 1008), +(203182, 'Crystal', 2010, 'F', 1001), +(203183, 'Nina', 2010, 'F', 1000), +(203184, 'Emely', 2010, 'F', 998), +(203185, 'Madeleine', 2010, 'F', 993), +(203186, 'Rylie', 2010, 'F', 993), +(203187, 'Adeline', 2010, 'F', 988), +(203188, 'Karla', 2010, 'F', 988), +(203189, 'Georgia', 2010, 'F', 987), +(203190, 'Heaven', 2010, 'F', 986), +(203191, 'Kiara', 2010, 'F', 982), +(203192, 'Paris', 2010, 'F', 981), +(203193, 'Selena', 2010, 'F', 980), +(203194, 'Cassandra', 2010, 'F', 979), +(203195, 'Guadalupe', 2010, 'F', 975), +(203196, 'Evangeline', 2010, 'F', 966), +(203197, 'Tatum', 2010, 'F', 964), +(203198, 'Lilah', 2010, 'F', 963), +(203199, 'Madilyn', 2010, 'F', 962), +(203200, 'Tiana', 2010, 'F', 962), +(203201, 'Rose', 2010, 'F', 955), +(203202, 'Aniya', 2010, 'F', 953), +(203203, 'Madisyn', 2010, 'F', 948), +(203204, 'Kaelyn', 2010, 'F', 944), +(203205, 'Caitlin', 2010, 'F', 943), +(203206, 'Sasha', 2010, 'F', 942), +(203207, 'Luna', 2010, 'F', 939), +(203208, 'Audrina', 2010, 'F', 938), +(203209, 'Fernanda', 2010, 'F', 936), +(203210, 'Angelica', 2010, 'F', 931), +(203211, 'Ruth', 2010, 'F', 927), +(203212, 'Jasmin', 2010, 'F', 926), +(203213, 'Emilia', 2010, 'F', 923), +(203214, 'Kyra', 2010, 'F', 923), +(203215, 'Lilliana', 2010, 'F', 922), +(203216, 'Ayla', 2010, 'F', 912), +(203217, 'Janiyah', 2010, 'F', 911), +(203218, 'Aria', 2010, 'F', 903), +(203219, 'Courtney', 2010, 'F', 899), +(203220, 'Ainsley', 2010, 'F', 898), +(203221, 'Lia', 2010, 'F', 892), +(203222, 'Yaretzi', 2010, 'F', 890), +(203223, 'Maliyah', 2010, 'F', 889), +(203224, 'Raegan', 2010, 'F', 888), +(203225, 'Tatiana', 2010, 'F', 886), +(203226, 'Monica', 2010, 'F', 884), +(203227, 'Madalyn', 2010, 'F', 881), +(203228, 'Athena', 2010, 'F', 880), +(203229, 'Mila', 2010, 'F', 880), +(203230, 'Noelle', 2010, 'F', 875), +(203231, 'Anastasia', 2010, 'F', 873), +(203232, 'Julissa', 2010, 'F', 868), +(203233, 'Jaelyn', 2010, 'F', 865), +(203234, 'Bethany', 2010, 'F', 861), +(203235, 'Juliette', 2010, 'F', 860), +(203236, 'Imani', 2010, 'F', 859), +(203237, 'Kenzie', 2010, 'F', 855), +(203238, 'Macie', 2010, 'F', 851), +(203239, 'Savanna', 2010, 'F', 843), +(203240, 'Jamie', 2010, 'F', 841), +(203241, 'Giuliana', 2010, 'F', 839), +(203242, 'Kiley', 2010, 'F', 839), +(203243, 'April', 2010, 'F', 836), +(203244, 'Lena', 2010, 'F', 835), +(203245, 'Adelyn', 2010, 'F', 834), +(203246, 'Joselyn', 2010, 'F', 834), +(203247, 'Cynthia', 2010, 'F', 833), +(203248, 'Jane', 2010, 'F', 833), +(203249, 'Kailey', 2010, 'F', 833), +(203250, 'Alessandra', 2010, 'F', 830), +(203251, 'Arabella', 2010, 'F', 829), +(203252, 'Nayeli', 2010, 'F', 821), +(203253, 'Carolina', 2010, 'F', 820), +(203254, 'Julie', 2010, 'F', 816), +(203255, 'Gia', 2010, 'F', 814), +(203256, 'Kaylie', 2010, 'F', 812), +(203257, 'Michaela', 2010, 'F', 812), +(203258, 'Annie', 2010, 'F', 810), +(203259, 'Janelle', 2010, 'F', 810), +(203260, 'Elaina', 2010, 'F', 809), +(203261, 'Amiyah', 2010, 'F', 805), +(203262, 'Madelynn', 2010, 'F', 805), +(203263, 'Kaylin', 2010, 'F', 803), +(203264, 'Lyric', 2010, 'F', 802), +(203265, 'Baylee', 2010, 'F', 801), +(203266, 'Addisyn', 2010, 'F', 799), +(203267, 'Lindsey', 2010, 'F', 799), +(203268, 'Jimena', 2010, 'F', 796), +(203269, 'Rebekah', 2010, 'F', 792), +(203270, 'Nyla', 2010, 'F', 790), +(203271, 'Anya', 2010, 'F', 786), +(203272, 'Jazlyn', 2010, 'F', 784), +(203273, 'Finley', 2010, 'F', 779), +(203274, 'Holly', 2010, 'F', 771), +(203275, 'Dulce', 2010, 'F', 768), +(203276, 'Melany', 2010, 'F', 768), +(203277, 'Talia', 2010, 'F', 766), +(203278, 'Itzel', 2010, 'F', 763), +(203279, 'Scarlet', 2010, 'F', 760), +(203280, 'Cameron', 2010, 'F', 756), +(203281, 'Kiera', 2010, 'F', 756), +(203282, 'Cali', 2010, 'F', 755), +(203283, 'Angie', 2010, 'F', 752), +(203284, 'Elle', 2010, 'F', 749), +(203285, 'Journey', 2010, 'F', 749), +(203286, 'Elliana', 2010, 'F', 748), +(203287, 'Estrella', 2010, 'F', 745), +(203288, 'Erica', 2010, 'F', 743), +(203289, 'Sarai', 2010, 'F', 741), +(203290, 'Danica', 2010, 'F', 736), +(203291, 'Brenda', 2010, 'F', 732), +(203292, 'Vivienne', 2010, 'F', 729), +(203293, 'Brittany', 2010, 'F', 727), +(203294, 'Erika', 2010, 'F', 724), +(203295, 'Hayley', 2010, 'F', 721), +(203296, 'Mikaela', 2010, 'F', 717), +(203297, 'Harley', 2010, 'F', 716), +(203298, 'Kamila', 2010, 'F', 716), +(203299, 'Adelaide', 2010, 'F', 711), +(203300, 'Brylee', 2010, 'F', 705), +(203301, 'Helen', 2010, 'F', 703), +(203302, 'Aubrie', 2010, 'F', 702), +(203303, 'Lacey', 2010, 'F', 701), +(203304, 'Ciara', 2010, 'F', 698), +(203305, 'Kadence', 2010, 'F', 697), +(203306, 'Nataly', 2010, 'F', 697), +(203307, 'Johanna', 2010, 'F', 696), +(203308, 'Kailyn', 2010, 'F', 696), +(203309, 'Madyson', 2010, 'F', 692), +(203310, 'Adalynn', 2010, 'F', 691), +(203311, 'Shayla', 2010, 'F', 691), +(203312, 'Bridget', 2010, 'F', 687), +(203313, 'Janiya', 2010, 'F', 685), +(203314, 'Serena', 2010, 'F', 684), +(203315, 'Gemma', 2010, 'F', 682), +(203316, 'Lilian', 2010, 'F', 681), +(203317, 'Lillie', 2010, 'F', 681), +(203318, 'Paola', 2010, 'F', 680), +(203319, 'Jayleen', 2010, 'F', 677), +(203320, 'Aleah', 2010, 'F', 676), +(203321, 'Celeste', 2010, 'F', 673), +(203322, 'Braelyn', 2010, 'F', 672), +(203323, 'Natasha', 2010, 'F', 672), +(203324, 'Tenley', 2010, 'F', 672), +(203325, 'Charlie', 2010, 'F', 670), +(203326, 'Kassidy', 2010, 'F', 668), +(203327, 'Amari', 2010, 'F', 661), +(203328, 'Brisa', 2010, 'F', 653), +(203329, 'Dana', 2010, 'F', 653), +(203330, 'Parker', 2010, 'F', 651), +(203331, 'Annika', 2010, 'F', 649), +(203332, 'Aileen', 2010, 'F', 645), +(203333, 'Lexie', 2010, 'F', 645), +(203334, 'Brenna', 2010, 'F', 642), +(203335, 'Nia', 2010, 'F', 641), +(203336, 'Sage', 2010, 'F', 641), +(203337, 'Desiree', 2010, 'F', 638), +(203338, 'Emilee', 2010, 'F', 636), +(203339, 'Jaliyah', 2010, 'F', 635), +(203340, 'Skyler', 2010, 'F', 635), +(203341, 'Anabelle', 2010, 'F', 632), +(203342, 'Lucille', 2010, 'F', 630), +(203343, 'Anahi', 2010, 'F', 628), +(203344, 'Lana', 2010, 'F', 627), +(203345, 'Kayden', 2010, 'F', 626), +(203346, 'Anaya', 2010, 'F', 625), +(203347, 'Dayana', 2010, 'F', 624), +(203348, 'Lilyana', 2010, 'F', 624), +(203349, 'Joy', 2010, 'F', 623), +(203350, 'Viviana', 2010, 'F', 621), +(203351, 'Logan', 2010, 'F', 620), +(203352, 'Priscilla', 2010, 'F', 619), +(203353, 'Daphne', 2010, 'F', 618), +(203354, 'Denise', 2010, 'F', 618), +(203355, 'Kennedi', 2010, 'F', 617), +(203356, 'Zariah', 2010, 'F', 614), +(203357, 'Skye', 2010, 'F', 613), +(203358, 'Rowan', 2010, 'F', 608), +(203359, 'Francesca', 2010, 'F', 605), +(203360, 'Amira', 2010, 'F', 601), +(203361, 'Elisa', 2010, 'F', 601), +(203362, 'Kimora', 2010, 'F', 600), +(203363, 'Jaylynn', 2010, 'F', 599), +(203364, 'Kenley', 2010, 'F', 595), +(203365, 'Lizbeth', 2010, 'F', 594), +(203366, 'Lauryn', 2010, 'F', 592), +(203367, 'Arielle', 2010, 'F', 590), +(203368, 'Melina', 2010, 'F', 590), +(203369, 'Myla', 2010, 'F', 590), +(203370, 'Abbigail', 2010, 'F', 589), +(203371, 'Camilla', 2010, 'F', 589), +(203372, 'Jaelynn', 2010, 'F', 589), +(203373, 'Liberty', 2010, 'F', 589), +(203374, 'Gloria', 2010, 'F', 588), +(203375, 'Alyson', 2010, 'F', 586), +(203376, 'Brynlee', 2010, 'F', 586), +(203377, 'Claudia', 2010, 'F', 582), +(203378, 'Alissa', 2010, 'F', 581), +(203379, 'Marlee', 2010, 'F', 580), +(203380, 'Danika', 2010, 'F', 578), +(203381, 'Hanna', 2010, 'F', 578), +(203382, 'Sandra', 2010, 'F', 578), +(203383, 'Alanna', 2010, 'F', 572), +(203384, 'Nancy', 2010, 'F', 572), +(203385, 'Miracle', 2010, 'F', 571), +(203386, 'Hailee', 2010, 'F', 569), +(203387, 'Jaycee', 2010, 'F', 569), +(203388, 'Caylee', 2010, 'F', 568), +(203389, 'Gracelyn', 2010, 'F', 564), +(203390, 'Annalise', 2010, 'F', 554), +(203391, 'Liana', 2010, 'F', 554), +(203392, 'Yareli', 2010, 'F', 553), +(203393, 'Cindy', 2010, 'F', 552), +(203394, 'Eloise', 2010, 'F', 552), +(203395, 'Asia', 2010, 'F', 550), +(203396, 'Marisol', 2010, 'F', 550), +(203397, 'Bailee', 2010, 'F', 549), +(203398, 'Helena', 2010, 'F', 549), +(203399, 'Lorelei', 2010, 'F', 547), +(203400, 'Justice', 2010, 'F', 546), +(203401, 'Maeve', 2010, 'F', 546), +(203402, 'Kali', 2010, 'F', 544), +(203403, 'Jaida', 2010, 'F', 542), +(203404, 'Natalee', 2010, 'F', 541), +(203405, 'Whitney', 2010, 'F', 541), +(203406, 'Aiyana', 2010, 'F', 540), +(203407, 'Anika', 2010, 'F', 540), +(203408, 'Olive', 2010, 'F', 540), +(203409, 'Laney', 2010, 'F', 539), +(203410, 'Kassandra', 2010, 'F', 538), +(203411, 'Kaia', 2010, 'F', 536), +(203412, 'Ada', 2010, 'F', 533), +(203413, 'Aryanna', 2010, 'F', 533), +(203414, 'Marilyn', 2010, 'F', 533), +(203415, 'Farrah', 2010, 'F', 530), +(203416, 'Clarissa', 2010, 'F', 529), +(203417, 'Halle', 2010, 'F', 528), +(203418, 'Amani', 2010, 'F', 527), +(203419, 'Janessa', 2010, 'F', 525), +(203420, 'Sylvia', 2010, 'F', 525), +(203421, 'Charlee', 2010, 'F', 524), +(203422, 'Mckinley', 2010, 'F', 524), +(203423, 'Skyla', 2010, 'F', 522), +(203424, 'Aleena', 2010, 'F', 518), +(203425, 'Madilynn', 2010, 'F', 517), +(203426, 'Bristol', 2010, 'F', 516), +(203427, 'Gwendolyn', 2010, 'F', 516), +(203428, 'Meghan', 2010, 'F', 516), +(203429, 'Tori', 2010, 'F', 516), +(203430, 'Marie', 2010, 'F', 514), +(203431, 'Rosa', 2010, 'F', 514), +(203432, 'Shaniya', 2010, 'F', 514), +(203433, 'Giana', 2010, 'F', 513), +(203434, 'Lea', 2010, 'F', 513), +(203435, 'Isabela', 2010, 'F', 511), +(203436, 'Kaliyah', 2010, 'F', 511), +(203437, 'Hallie', 2010, 'F', 509), +(203438, 'Averie', 2010, 'F', 508), +(203439, 'Aylin', 2010, 'F', 508), +(203440, 'Dylan', 2010, 'F', 508), +(203441, 'Kaylynn', 2010, 'F', 508), +(203442, 'Kristen', 2010, 'F', 508), +(203443, 'Zoie', 2010, 'F', 508), +(203444, 'Saniyah', 2010, 'F', 506), +(203445, 'Lesly', 2010, 'F', 504), +(203446, 'Madalynn', 2010, 'F', 504), +(203447, 'Yasmin', 2010, 'F', 502), +(203448, 'Kaleigh', 2010, 'F', 501), +(203449, 'Kiana', 2010, 'F', 501), +(203450, 'Rihanna', 2010, 'F', 500), +(203451, 'Regina', 2010, 'F', 499), +(203452, 'Anabella', 2010, 'F', 497), +(203453, 'Sloane', 2010, 'F', 497), +(203454, 'Wendy', 2010, 'F', 497), +(203455, 'Elisabeth', 2010, 'F', 496), +(203456, 'Rosalie', 2010, 'F', 496), +(203457, 'Eve', 2010, 'F', 495), +(203458, 'June', 2010, 'F', 495), +(203459, 'Kristina', 2010, 'F', 495), +(203460, 'Kathleen', 2010, 'F', 494), +(203461, 'Amya', 2010, 'F', 493), +(203462, 'Lindsay', 2010, 'F', 490), +(203463, 'Saniya', 2010, 'F', 488), +(203464, 'Virginia', 2010, 'F', 488), +(203465, 'Aspen', 2010, 'F', 487), +(203466, 'Elsa', 2010, 'F', 487), +(203467, 'Raven', 2010, 'F', 486), +(203468, 'Samara', 2010, 'F', 486), +(203469, 'Meredith', 2010, 'F', 485), +(203470, 'Perla', 2010, 'F', 485), +(203471, 'Raquel', 2010, 'F', 485), +(203472, 'Siena', 2010, 'F', 485), +(203473, 'Anne', 2010, 'F', 484), +(203474, 'Casey', 2010, 'F', 484), +(203475, 'Nylah', 2010, 'F', 484), +(203476, 'Ayanna', 2010, 'F', 483), +(203477, 'Mckayla', 2010, 'F', 483), +(203478, 'Jaylee', 2010, 'F', 481), +(203479, 'Patricia', 2010, 'F', 479), +(203480, 'Shiloh', 2010, 'F', 479), +(203481, 'Jaylin', 2010, 'F', 478), +(203482, 'Aimee', 2010, 'F', 474), +(203483, 'Lainey', 2010, 'F', 474), +(203484, 'Linda', 2010, 'F', 474), +(203485, 'Maia', 2010, 'F', 474), +(203486, 'Mariam', 2010, 'F', 474), +(203487, 'Nathalie', 2010, 'F', 472), +(203488, 'Sherlyn', 2010, 'F', 472), +(203489, 'Isis', 2010, 'F', 471), +(203490, 'Maleah', 2010, 'F', 471), +(203491, 'Angelique', 2010, 'F', 469), +(203492, 'Jazlynn', 2010, 'F', 469), +(203493, 'Annabel', 2010, 'F', 467), +(203494, 'Raelynn', 2010, 'F', 467), +(203495, 'Paityn', 2010, 'F', 466), +(203496, 'Marina', 2010, 'F', 463), +(203497, 'Myah', 2010, 'F', 463), +(203498, 'Ryan', 2010, 'F', 463), +(203499, 'Tabitha', 2010, 'F', 463), +(203500, 'Ansley', 2010, 'F', 461), +(203501, 'Bryanna', 2010, 'F', 461), +(203502, 'Elyse', 2010, 'F', 461), +(203503, 'Adelynn', 2010, 'F', 460), +(203504, 'Cara', 2010, 'F', 460), +(203505, 'Diamond', 2010, 'F', 460), +(203506, 'Jadyn', 2010, 'F', 460), +(203507, 'Joslyn', 2010, 'F', 460), +(203508, 'Haleigh', 2010, 'F', 459), +(203509, 'Kourtney', 2010, 'F', 459), +(203510, 'Selah', 2010, 'F', 459), +(203511, 'Elsie', 2010, 'F', 456), +(203512, 'Dahlia', 2010, 'F', 451), +(203513, 'Leighton', 2010, 'F', 451), +(203514, 'Haven', 2010, 'F', 450), +(203515, 'Aliya', 2010, 'F', 449), +(203516, 'Jaylene', 2010, 'F', 449), +(203517, 'Lailah', 2010, 'F', 449), +(203518, 'Amara', 2010, 'F', 447), +(203519, 'Arely', 2010, 'F', 446), +(203520, 'Briley', 2010, 'F', 446), +(203521, 'Sariah', 2010, 'F', 446), +(203522, 'Jaylah', 2010, 'F', 445), +(203523, 'Karlee', 2010, 'F', 445), +(203524, 'Taryn', 2010, 'F', 444), +(203525, 'Brinley', 2010, 'F', 443), +(203526, 'America', 2010, 'F', 441), +(203527, 'Amiya', 2010, 'F', 440), +(203528, 'Kaitlin', 2010, 'F', 439), +(203529, 'Kailee', 2010, 'F', 438), +(203530, 'Milan', 2010, 'F', 435), +(203531, 'Phoenix', 2010, 'F', 434), +(203532, 'Mercedes', 2010, 'F', 433), +(203533, 'Greta', 2010, 'F', 431), +(203534, 'Lilianna', 2010, 'F', 431), +(203535, 'Sidney', 2010, 'F', 431), +(203536, 'Simone', 2010, 'F', 431), +(203537, 'Christine', 2010, 'F', 430), +(203538, 'Mollie', 2010, 'F', 428), +(203539, 'Vera', 2010, 'F', 428), +(203540, 'Alisson', 2010, 'F', 427), +(203541, 'Ellen', 2010, 'F', 427), +(203542, 'Amelie', 2010, 'F', 426), +(203543, 'Noemi', 2010, 'F', 424), +(203544, 'Taraji', 2010, 'F', 423), +(203545, 'Kallie', 2010, 'F', 422), +(203546, 'Clare', 2010, 'F', 420), +(203547, 'Heather', 2010, 'F', 420), +(203548, 'Keyla', 2010, 'F', 420), +(203549, 'Jessie', 2010, 'F', 419), +(203550, 'Aisha', 2010, 'F', 417), +(203551, 'Catalina', 2010, 'F', 417), +(203552, 'Ally', 2010, 'F', 416), +(203553, 'Shannon', 2010, 'F', 416), +(203554, 'Taliyah', 2010, 'F', 414), +(203555, 'Jordynn', 2010, 'F', 413), +(203556, 'Zion', 2010, 'F', 413), +(203557, 'Luciana', 2010, 'F', 411), +(203558, 'Miah', 2010, 'F', 411), +(203559, 'Teresa', 2010, 'F', 409), +(203560, 'Adrienne', 2010, 'F', 408), +(203561, 'Irene', 2010, 'F', 408), +(203562, 'Martha', 2010, 'F', 407), +(203563, 'Rachael', 2010, 'F', 407), +(203564, 'Yesenia', 2010, 'F', 407), +(203565, 'Barbara', 2010, 'F', 406), +(203566, 'Leanna', 2010, 'F', 406), +(203567, 'Paloma', 2010, 'F', 406); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(203568, 'Jaiden', 2010, 'F', 405), +(203569, 'Janae', 2010, 'F', 405), +(203570, 'Jolie', 2010, 'F', 405), +(203571, 'Jaqueline', 2010, 'F', 404), +(203572, 'Amina', 2010, 'F', 403), +(203573, 'Evie', 2010, 'F', 403), +(203574, 'Macey', 2010, 'F', 403), +(203575, 'Destinee', 2010, 'F', 401), +(203576, 'Abril', 2010, 'F', 398), +(203577, 'Deanna', 2010, 'F', 395), +(203578, 'Lisa', 2010, 'F', 395), +(203579, 'Kenya', 2010, 'F', 394), +(203580, 'Jocelynn', 2010, 'F', 393), +(203581, 'Rosemary', 2010, 'F', 393), +(203582, 'Alani', 2010, 'F', 392), +(203583, 'Kaitlynn', 2010, 'F', 392), +(203584, 'Sonia', 2010, 'F', 392), +(203585, 'Zara', 2010, 'F', 392), +(203586, 'Krystal', 2010, 'F', 391), +(203587, 'Paulina', 2010, 'F', 390), +(203588, 'Regan', 2010, 'F', 390), +(203589, 'Ali', 2010, 'F', 386), +(203590, 'Elin', 2010, 'F', 386), +(203591, 'Evelynn', 2010, 'F', 386), +(203592, 'Alia', 2010, 'F', 384), +(203593, 'Ariella', 2010, 'F', 384), +(203594, 'Chaya', 2010, 'F', 384), +(203595, 'Alena', 2010, 'F', 383), +(203596, 'Jazmyn', 2010, 'F', 382), +(203597, 'Raelyn', 2010, 'F', 382), +(203598, 'Corinne', 2010, 'F', 381), +(203599, 'Emilie', 2010, 'F', 380), +(203600, 'Jayde', 2010, 'F', 380), +(203601, 'Carolyn', 2010, 'F', 377), +(203602, 'Jakayla', 2010, 'F', 377), +(203603, 'Karissa', 2010, 'F', 377), +(203604, 'Cecelia', 2010, 'F', 376), +(203605, 'Cheyanne', 2010, 'F', 376), +(203606, 'Celia', 2010, 'F', 375), +(203607, 'Emmalyn', 2010, 'F', 375), +(203608, 'Laylah', 2010, 'F', 375), +(203609, 'Mariyah', 2010, 'F', 375), +(203610, 'Luz', 2010, 'F', 374), +(203611, 'Zaniyah', 2010, 'F', 374), +(203612, 'Kaiya', 2010, 'F', 372), +(203613, 'Iliana', 2010, 'F', 371), +(203614, 'Lorelai', 2010, 'F', 371), +(203615, 'Leyla', 2010, 'F', 370), +(203616, 'Cherish', 2010, 'F', 368), +(203617, 'Giada', 2010, 'F', 368), +(203618, 'Giovanna', 2010, 'F', 367), +(203619, 'Carla', 2010, 'F', 366), +(203620, 'Larissa', 2010, 'F', 364), +(203621, 'Jaden', 2010, 'F', 361), +(203622, 'Adyson', 2010, 'F', 360), +(203623, 'Campbell', 2010, 'F', 360), +(203624, 'Carley', 2010, 'F', 360), +(203625, 'Carlee', 2010, 'F', 359), +(203626, 'Gisselle', 2010, 'F', 359), +(203627, 'Lylah', 2010, 'F', 359), +(203628, 'Felicity', 2010, 'F', 358), +(203629, 'Julianne', 2010, 'F', 358), +(203630, 'Aryana', 2010, 'F', 357), +(203631, 'Frances', 2010, 'F', 356), +(203632, 'Ivanna', 2010, 'F', 356), +(203633, 'Natalya', 2010, 'F', 356), +(203634, 'Tamia', 2010, 'F', 356), +(203635, 'Kaya', 2010, 'F', 355), +(203636, 'Reyna', 2010, 'F', 355), +(203637, 'Bria', 2010, 'F', 354), +(203638, 'Deborah', 2010, 'F', 354), +(203639, 'Harlow', 2010, 'F', 354), +(203640, 'Ingrid', 2010, 'F', 354), +(203641, 'Kaylyn', 2010, 'F', 354), +(203642, 'Tara', 2010, 'F', 354), +(203643, 'Moriah', 2010, 'F', 353), +(203644, 'Alisha', 2010, 'F', 352), +(203645, 'Carlie', 2010, 'F', 352), +(203646, 'Yoselin', 2010, 'F', 352), +(203647, 'Susan', 2010, 'F', 351), +(203648, 'Haylie', 2010, 'F', 350), +(203649, 'Jenny', 2010, 'F', 350), +(203650, 'Ayana', 2010, 'F', 349), +(203651, 'Cristina', 2010, 'F', 349), +(203652, 'Maryam', 2010, 'F', 349), +(203653, 'Sawyer', 2010, 'F', 349), +(203654, 'Rylan', 2010, 'F', 347), +(203655, 'Sanaa', 2010, 'F', 347), +(203656, 'Emmalee', 2010, 'F', 346), +(203657, 'Jaidyn', 2010, 'F', 346), +(203658, 'Libby', 2010, 'F', 346), +(203659, 'Yaritza', 2010, 'F', 346), +(203660, 'Allisson', 2010, 'F', 344), +(203661, 'Kasey', 2010, 'F', 344), +(203662, 'Matilda', 2010, 'F', 343), +(203663, 'Tianna', 2010, 'F', 343), +(203664, 'Elaine', 2010, 'F', 342), +(203665, 'Kaylen', 2010, 'F', 342), +(203666, 'Sharon', 2010, 'F', 341), +(203667, 'Maritza', 2010, 'F', 340), +(203668, 'Aliana', 2010, 'F', 339), +(203669, 'Patience', 2010, 'F', 339), +(203670, 'Analia', 2010, 'F', 338), +(203671, 'Emelia', 2010, 'F', 338), +(203672, 'Heidy', 2010, 'F', 338), +(203673, 'Karlie', 2010, 'F', 338), +(203674, 'Nathaly', 2010, 'F', 338), +(203675, 'Chana', 2010, 'F', 337), +(203676, 'Tess', 2010, 'F', 337), +(203677, 'Yazmin', 2010, 'F', 336), +(203678, 'Chanel', 2010, 'F', 332), +(203679, 'Karsyn', 2010, 'F', 332), +(203680, 'Paula', 2010, 'F', 331), +(203681, 'Armani', 2010, 'F', 330), +(203682, 'Marisa', 2010, 'F', 329), +(203683, 'Araceli', 2010, 'F', 327), +(203684, 'Abbie', 2010, 'F', 326), +(203685, 'Alyvia', 2010, 'F', 326), +(203686, 'Amirah', 2010, 'F', 326), +(203687, 'Azul', 2010, 'F', 326), +(203688, 'Edith', 2010, 'F', 326), +(203689, 'Ember', 2010, 'F', 326), +(203690, 'Zaria', 2010, 'F', 325), +(203691, 'Aliza', 2010, 'F', 324), +(203692, 'Carissa', 2010, 'F', 324), +(203693, 'Livia', 2010, 'F', 324), +(203694, 'Charley', 2010, 'F', 323), +(203695, 'Leia', 2010, 'F', 323), +(203696, 'Cailyn', 2010, 'F', 322), +(203697, 'Hadassah', 2010, 'F', 322), +(203698, 'Ireland', 2010, 'F', 322), +(203699, 'Isabell', 2010, 'F', 322), +(203700, 'Beatrice', 2010, 'F', 321), +(203701, 'Hayleigh', 2010, 'F', 321), +(203702, 'Akira', 2010, 'F', 320), +(203703, 'Avah', 2010, 'F', 320), +(203704, 'Eileen', 2010, 'F', 320), +(203705, 'Kiersten', 2010, 'F', 319), +(203706, 'Micah', 2010, 'F', 319), +(203707, 'Kenna', 2010, 'F', 318), +(203708, 'Malaya', 2010, 'F', 318), +(203709, 'Gracelynn', 2010, 'F', 317), +(203710, 'Kirsten', 2010, 'F', 317), +(203711, 'Alma', 2010, 'F', 316), +(203712, 'Hana', 2010, 'F', 316), +(203713, 'Demi', 2010, 'F', 315), +(203714, 'Jemma', 2010, 'F', 315), +(203715, 'Charity', 2010, 'F', 314), +(203716, 'Kelsie', 2010, 'F', 314), +(203717, 'Lillianna', 2010, 'F', 314), +(203718, 'Lina', 2010, 'F', 314), +(203719, 'Mira', 2010, 'F', 314), +(203720, 'Alayah', 2010, 'F', 313), +(203721, 'Angeline', 2010, 'F', 313), +(203722, 'Ayleen', 2010, 'F', 313), +(203723, 'Nola', 2010, 'F', 313), +(203724, 'Ashlee', 2010, 'F', 310), +(203725, 'Katrina', 2010, 'F', 310), +(203726, 'Millie', 2010, 'F', 310), +(203727, 'Raina', 2010, 'F', 309), +(203728, 'Belinda', 2010, 'F', 308), +(203729, 'Jacquelyn', 2010, 'F', 308), +(203730, 'Jaylyn', 2010, 'F', 308), +(203731, 'Mara', 2010, 'F', 308), +(203732, 'Renee', 2010, 'F', 308), +(203733, 'Lilyanna', 2010, 'F', 307), +(203734, 'Mayra', 2010, 'F', 307), +(203735, 'Bree', 2010, 'F', 306), +(203736, 'Zariyah', 2010, 'F', 306), +(203737, 'Belen', 2010, 'F', 305), +(203738, 'Lilia', 2010, 'F', 304), +(203739, 'Meadow', 2010, 'F', 303), +(203740, 'Rubi', 2010, 'F', 303), +(203741, 'Shyla', 2010, 'F', 303), +(203742, 'Joyce', 2010, 'F', 302), +(203743, 'Judith', 2010, 'F', 302), +(203744, 'Ryann', 2010, 'F', 302), +(203745, 'Elianna', 2010, 'F', 300), +(203746, 'Kyndall', 2010, 'F', 300), +(203747, 'Lara', 2010, 'F', 300), +(203748, 'Salma', 2010, 'F', 300), +(203749, 'Tania', 2010, 'F', 300), +(203750, 'Abbey', 2010, 'F', 299), +(203751, 'Kendal', 2010, 'F', 299), +(203752, 'Kynlee', 2010, 'F', 299), +(203753, 'Neveah', 2010, 'F', 299), +(203754, 'Rayne', 2010, 'F', 298), +(203755, 'Janet', 2010, 'F', 297), +(203756, 'Saige', 2010, 'F', 297), +(203757, 'Briella', 2010, 'F', 296), +(203758, 'Braelynn', 2010, 'F', 295), +(203759, 'Karma', 2010, 'F', 295), +(203760, 'Laniyah', 2010, 'F', 295), +(203761, 'Sarahi', 2010, 'F', 295), +(203762, 'Makena', 2010, 'F', 294), +(203763, 'Princess', 2010, 'F', 294), +(203764, 'Rayna', 2010, 'F', 294), +(203765, 'Stacy', 2010, 'F', 294), +(203766, 'Lizeth', 2010, 'F', 292), +(203767, 'Marlene', 2010, 'F', 291), +(203768, 'Azaria', 2010, 'F', 290), +(203769, 'Riya', 2010, 'F', 289), +(203770, 'Dominique', 2010, 'F', 288), +(203771, 'Jaylen', 2010, 'F', 288), +(203772, 'Karly', 2010, 'F', 288), +(203773, 'Adele', 2010, 'F', 287), +(203774, 'Britney', 2010, 'F', 287), +(203775, 'Kaelynn', 2010, 'F', 287), +(203776, 'Abigale', 2010, 'F', 286), +(203777, 'Adelina', 2010, 'F', 286), +(203778, 'Ann', 2010, 'F', 283), +(203779, 'Charli', 2010, 'F', 283), +(203780, 'Emersyn', 2010, 'F', 283), +(203781, 'Janiah', 2010, 'F', 283), +(203782, 'Marianna', 2010, 'F', 283), +(203783, 'Caydence', 2010, 'F', 282), +(203784, 'Kayleen', 2010, 'F', 282), +(203785, 'Abagail', 2010, 'F', 281), +(203786, 'Dixie', 2010, 'F', 281), +(203787, 'Diya', 2010, 'F', 280), +(203788, 'Esme', 2010, 'F', 280), +(203789, 'Theresa', 2010, 'F', 280), +(203790, 'Carleigh', 2010, 'F', 279), +(203791, 'Jewel', 2010, 'F', 279), +(203792, 'Roselyn', 2010, 'F', 279), +(203793, 'Alisa', 2010, 'F', 278), +(203794, 'Maliah', 2010, 'F', 278), +(203795, 'Shyanne', 2010, 'F', 278), +(203796, 'Karli', 2010, 'F', 277), +(203797, 'Nathalia', 2010, 'F', 277), +(203798, 'Yamilet', 2010, 'F', 277), +(203799, 'Averi', 2010, 'F', 276), +(203800, 'Payten', 2010, 'F', 276), +(203801, 'Aiyanna', 2010, 'F', 275), +(203802, 'Journee', 2010, 'F', 275), +(203803, 'Mattie', 2010, 'F', 275), +(203804, 'Mylee', 2010, 'F', 275), +(203805, 'Tegan', 2010, 'F', 275), +(203806, 'Damaris', 2010, 'F', 274), +(203807, 'Arya', 2010, 'F', 273), +(203808, 'Yamileth', 2010, 'F', 273), +(203809, 'Audriana', 2010, 'F', 272), +(203810, 'Emmy', 2010, 'F', 272), +(203811, 'Thalia', 2010, 'F', 272), +(203812, 'Carina', 2010, 'F', 271), +(203813, 'Esperanza', 2010, 'F', 271), +(203814, 'Kylah', 2010, 'F', 271), +(203815, 'Anabel', 2010, 'F', 269), +(203816, 'Jamya', 2010, 'F', 269), +(203817, 'Willa', 2010, 'F', 269), +(203818, 'Kierra', 2010, 'F', 268), +(203819, 'Kinsey', 2010, 'F', 268), +(203820, 'Sydnee', 2010, 'F', 268), +(203821, 'Kai', 2010, 'F', 267), +(203822, 'Micaela', 2010, 'F', 267), +(203823, 'Pearl', 2010, 'F', 267), +(203824, 'Shania', 2010, 'F', 267), +(203825, 'Ivana', 2010, 'F', 266), +(203826, 'Kairi', 2010, 'F', 266), +(203827, 'Precious', 2010, 'F', 266), +(203828, 'Shaylee', 2010, 'F', 265), +(203829, 'Azariah', 2010, 'F', 264), +(203830, 'Kloe', 2010, 'F', 264), +(203831, 'Mina', 2010, 'F', 264), +(203832, 'Myra', 2010, 'F', 264), +(203833, 'Addilyn', 2010, 'F', 263), +(203834, 'Jolene', 2010, 'F', 263), +(203835, 'Kimber', 2010, 'F', 263), +(203836, 'Lorena', 2010, 'F', 263), +(203837, 'Alannah', 2010, 'F', 262), +(203838, 'River', 2010, 'F', 262), +(203839, 'Alexus', 2010, 'F', 261), +(203840, 'Dalia', 2010, 'F', 261), +(203841, 'Jaslene', 2010, 'F', 261), +(203842, 'India', 2010, 'F', 260), +(203843, 'Milagros', 2010, 'F', 259), +(203844, 'Reina', 2010, 'F', 259), +(203845, 'Stephany', 2010, 'F', 259), +(203846, 'Zuri', 2010, 'F', 259), +(203847, 'Mae', 2010, 'F', 258), +(203848, 'Pamela', 2010, 'F', 258), +(203849, 'Xiomara', 2010, 'F', 258), +(203850, 'Donna', 2010, 'F', 256), +(203851, 'Evelin', 2010, 'F', 256), +(203852, 'Ariah', 2010, 'F', 255), +(203853, 'Leona', 2010, 'F', 255), +(203854, 'Tia', 2010, 'F', 255), +(203855, 'Amiah', 2010, 'F', 254), +(203856, 'Aracely', 2010, 'F', 254), +(203857, 'Bryleigh', 2010, 'F', 254), +(203858, 'Devyn', 2010, 'F', 254), +(203859, 'Lilith', 2010, 'F', 254), +(203860, 'Charleigh', 2010, 'F', 253), +(203861, 'Alaysia', 2010, 'F', 252), +(203862, 'Aleigha', 2010, 'F', 252), +(203863, 'Savanah', 2010, 'F', 252), +(203864, 'Dania', 2010, 'F', 251), +(203865, 'Leilah', 2010, 'F', 251), +(203866, 'Estella', 2010, 'F', 250), +(203867, 'Karley', 2010, 'F', 250), +(203868, 'Sky', 2010, 'F', 250), +(203869, 'Violeta', 2010, 'F', 250), +(203870, 'Jacey', 2010, 'F', 249), +(203871, 'Sariyah', 2010, 'F', 249), +(203872, 'Sloan', 2010, 'F', 249), +(203873, 'Yadira', 2010, 'F', 249), +(203874, 'Yuliana', 2010, 'F', 249), +(203875, 'Amaris', 2010, 'F', 248), +(203876, 'Braylee', 2010, 'F', 248), +(203877, 'Charlize', 2010, 'F', 248), +(203878, 'Desirae', 2010, 'F', 248), +(203879, 'Rivka', 2010, 'F', 247), +(203880, 'Tanya', 2010, 'F', 247), +(203881, 'Essence', 2010, 'F', 246), +(203882, 'Frida', 2010, 'F', 246), +(203883, 'Kaila', 2010, 'F', 246), +(203884, 'Kianna', 2010, 'F', 246), +(203885, 'Rory', 2010, 'F', 245), +(203886, 'Abrielle', 2010, 'F', 244), +(203887, 'Annette', 2010, 'F', 244), +(203888, 'Delia', 2010, 'F', 244), +(203889, 'Samiyah', 2010, 'F', 244), +(203890, 'Izabelle', 2010, 'F', 243), +(203891, 'Sanai', 2010, 'F', 243), +(203892, 'Valery', 2010, 'F', 243), +(203893, 'Alaya', 2010, 'F', 242), +(203894, 'Lillyana', 2010, 'F', 242), +(203895, 'Renata', 2010, 'F', 242), +(203896, 'Blake', 2010, 'F', 241), +(203897, 'Cambria', 2010, 'F', 241), +(203898, 'Evalyn', 2010, 'F', 241), +(203899, 'Nahla', 2010, 'F', 241), +(203900, 'Shaila', 2010, 'F', 241), +(203901, 'Chasity', 2010, 'F', 240), +(203902, 'Dalilah', 2010, 'F', 240), +(203903, 'Jana', 2010, 'F', 240), +(203904, 'Jessa', 2010, 'F', 240), +(203905, 'Brittney', 2010, 'F', 239), +(203906, 'Dorothy', 2010, 'F', 239), +(203907, 'Kaylah', 2010, 'F', 239), +(203908, 'Kensley', 2010, 'F', 238), +(203909, 'Cierra', 2010, 'F', 237), +(203910, 'Coraline', 2010, 'F', 237), +(203911, 'Giavanna', 2010, 'F', 237), +(203912, 'Kaley', 2010, 'F', 237), +(203913, 'Miya', 2010, 'F', 237), +(203914, 'Janice', 2010, 'F', 236), +(203915, 'Roxanne', 2010, 'F', 236), +(203916, 'Samira', 2010, 'F', 236), +(203917, 'Annabell', 2010, 'F', 235), +(203918, 'Ashtyn', 2010, 'F', 235), +(203919, 'Aya', 2010, 'F', 235), +(203920, 'Calista', 2010, 'F', 235), +(203921, 'Iyanna', 2010, 'F', 234), +(203922, 'Julieta', 2010, 'F', 234), +(203923, 'Karis', 2010, 'F', 234), +(203924, 'Leigha', 2010, 'F', 234), +(203925, 'Saanvi', 2010, 'F', 234), +(203926, 'Taya', 2010, 'F', 234), +(203927, 'Aliah', 2010, 'F', 233), +(203928, 'Jaslyn', 2010, 'F', 233), +(203929, 'Monserrat', 2010, 'F', 233), +(203930, 'Ashanti', 2010, 'F', 232), +(203931, 'Bentley', 2010, 'F', 232), +(203932, 'Gracyn', 2010, 'F', 232), +(203933, 'Iyana', 2010, 'F', 232), +(203934, 'Makaila', 2010, 'F', 232), +(203935, 'Mariela', 2010, 'F', 232), +(203936, 'Areli', 2010, 'F', 231), +(203937, 'Blakely', 2010, 'F', 231), +(203938, 'Celine', 2010, 'F', 231), +(203939, 'Laurel', 2010, 'F', 231), +(203940, 'Leticia', 2010, 'F', 231), +(203941, 'Maryjane', 2010, 'F', 231), +(203942, 'Tamara', 2010, 'F', 231), +(203943, 'Amalia', 2010, 'F', 230), +(203944, 'Brissa', 2010, 'F', 230), +(203945, 'Emory', 2010, 'F', 230), +(203946, 'Jersey', 2010, 'F', 230), +(203947, 'Kailynn', 2010, 'F', 230), +(203948, 'Kayley', 2010, 'F', 230), +(203949, 'Noor', 2010, 'F', 230), +(203950, 'Unique', 2010, 'F', 230), +(203951, 'Bryn', 2010, 'F', 229), +(203952, 'Kendyl', 2010, 'F', 229), +(203953, 'Magdalena', 2010, 'F', 229), +(203954, 'Raylee', 2010, 'F', 229), +(203955, 'Sofie', 2010, 'F', 229), +(203956, 'Taniya', 2010, 'F', 229), +(203957, 'Annalee', 2010, 'F', 228), +(203958, 'Kristin', 2010, 'F', 228), +(203959, 'Jamiyah', 2010, 'F', 227), +(203960, 'Kamari', 2010, 'F', 227), +(203961, 'Kyndal', 2010, 'F', 227), +(203962, 'Melinda', 2010, 'F', 227), +(203963, 'Karleigh', 2010, 'F', 226), +(203964, 'Kya', 2010, 'F', 226), +(203965, 'Suri', 2010, 'F', 226), +(203966, 'Ashly', 2010, 'F', 225), +(203967, 'Brookelynn', 2010, 'F', 225), +(203968, 'Gretchen', 2010, 'F', 225), +(203969, 'Vienna', 2010, 'F', 225), +(203970, 'Blair', 2010, 'F', 224), +(203971, 'Johana', 2010, 'F', 224), +(203972, 'Hailie', 2010, 'F', 223), +(203973, 'Zaniya', 2010, 'F', 223), +(203974, 'Joelle', 2010, 'F', 222), +(203975, 'Krista', 2010, 'F', 222), +(203976, 'Malaysia', 2010, 'F', 222), +(203977, 'Noa', 2010, 'F', 222), +(203978, 'Yasmine', 2010, 'F', 222), +(203979, 'Zahra', 2010, 'F', 222), +(203980, 'Christiana', 2010, 'F', 221), +(203981, 'Dallas', 2010, 'F', 221), +(203982, 'Kamiyah', 2010, 'F', 221), +(203983, 'Zainab', 2010, 'F', 221), +(203984, 'Ashleigh', 2010, 'F', 220), +(203985, 'Cayla', 2010, 'F', 220), +(203986, 'Winter', 2010, 'F', 220), +(203987, 'Elissa', 2010, 'F', 219), +(203988, 'Lesley', 2010, 'F', 219), +(203989, 'Susana', 2010, 'F', 219), +(203990, 'Bayleigh', 2010, 'F', 218), +(203991, 'Lyra', 2010, 'F', 218), +(203992, 'Abbygail', 2010, 'F', 217), +(203993, 'Audrianna', 2010, 'F', 217), +(203994, 'Promise', 2010, 'F', 217), +(203995, 'Selina', 2010, 'F', 217), +(203996, 'Emmalynn', 2010, 'F', 216), +(203997, 'Keeley', 2010, 'F', 216), +(203998, 'Nova', 2010, 'F', 216), +(203999, 'Nyah', 2010, 'F', 216), +(204000, 'Dayanara', 2010, 'F', 215), +(204001, 'Lucero', 2010, 'F', 215), +(204002, 'Taniyah', 2010, 'F', 215), +(204003, 'Abigayle', 2010, 'F', 214), +(204004, 'Aurelia', 2010, 'F', 214), +(204005, 'Jaleah', 2010, 'F', 214), +(204006, 'Keely', 2010, 'F', 214), +(204007, 'Harlee', 2010, 'F', 213), +(204008, 'Juniper', 2010, 'F', 213), +(204009, 'Kori', 2010, 'F', 213), +(204010, 'Sally', 2010, 'F', 213), +(204011, 'Temperance', 2010, 'F', 213), +(204012, 'Elliot', 2010, 'F', 212), +(204013, 'Shaniyah', 2010, 'F', 212), +(204014, 'Shyann', 2010, 'F', 212), +(204015, 'Analise', 2010, 'F', 211), +(204016, 'Annaliese', 2010, 'F', 211), +(204017, 'Cassie', 2010, 'F', 211), +(204018, 'Gillian', 2010, 'F', 211), +(204019, 'Nalani', 2010, 'F', 211), +(204020, 'Tiara', 2010, 'F', 211), +(204021, 'Caleigh', 2010, 'F', 210), +(204022, 'Cristal', 2010, 'F', 210), +(204023, 'Lianna', 2010, 'F', 210), +(204024, 'Marian', 2010, 'F', 210), +(204025, 'Adison', 2010, 'F', 209), +(204026, 'Vivien', 2010, 'F', 209), +(204027, 'Emani', 2010, 'F', 208), +(204028, 'Geraldine', 2010, 'F', 208), +(204029, 'Kamille', 2010, 'F', 208), +(204030, 'Landry', 2010, 'F', 208), +(204031, 'Luisa', 2010, 'F', 208), +(204032, 'Milana', 2010, 'F', 208), +(204033, 'Rhea', 2010, 'F', 208), +(204034, 'Rileigh', 2010, 'F', 208), +(204035, 'Arlene', 2010, 'F', 207), +(204036, 'Colette', 2010, 'F', 207), +(204037, 'Darlene', 2010, 'F', 207), +(204038, 'Gina', 2010, 'F', 207), +(204039, 'Kaycee', 2010, 'F', 207), +(204040, 'Marleigh', 2010, 'F', 207), +(204041, 'Mercy', 2010, 'F', 207), +(204042, 'Scarlette', 2010, 'F', 207), +(204043, 'Addie', 2010, 'F', 206), +(204044, 'Anjali', 2010, 'F', 206), +(204045, 'Antonia', 2010, 'F', 206), +(204046, 'Maribel', 2010, 'F', 206), +(204047, 'Aviana', 2010, 'F', 205), +(204048, 'Chelsey', 2010, 'F', 205), +(204049, 'Izzabella', 2010, 'F', 205), +(204050, 'Jazzlyn', 2010, 'F', 205), +(204051, 'Jordin', 2010, 'F', 205), +(204052, 'Laniya', 2010, 'F', 205), +(204053, 'Ariyah', 2010, 'F', 204), +(204054, 'Channing', 2010, 'F', 204), +(204055, 'Emmaline', 2010, 'F', 204), +(204056, 'Jalynn', 2010, 'F', 204), +(204057, 'Katia', 2010, 'F', 204), +(204058, 'Marin', 2010, 'F', 204), +(204059, 'Treasure', 2010, 'F', 204), +(204060, 'Joslynn', 2010, 'F', 203), +(204061, 'Colleen', 2010, 'F', 202), +(204062, 'Denisse', 2010, 'F', 202), +(204063, 'Galilea', 2010, 'F', 202), +(204064, 'Naima', 2010, 'F', 202), +(204065, 'Reece', 2010, 'F', 202), +(204066, 'Abrianna', 2010, 'F', 201), +(204067, 'Samiya', 2010, 'F', 201), +(204068, 'Izabel', 2010, 'F', 200), +(204069, 'Kaidence', 2010, 'F', 200), +(204070, 'Kamilah', 2010, 'F', 200), +(204071, 'Kamora', 2010, 'F', 200), +(204072, 'Maycee', 2010, 'F', 200), +(204073, 'Nyasia', 2010, 'F', 200), +(204074, 'Rebeca', 2010, 'F', 200), +(204075, 'Romina', 2010, 'F', 200), +(204076, 'Sarina', 2010, 'F', 200), +(204077, 'Tinsley', 2010, 'F', 200), +(204078, 'Aanya', 2010, 'F', 199), +(204079, 'Amyah', 2010, 'F', 199), +(204080, 'Kaleah', 2010, 'F', 199), +(204081, 'Lidia', 2010, 'F', 199), +(204082, 'Malak', 2010, 'F', 199), +(204083, 'Marlie', 2010, 'F', 199), +(204084, 'Shea', 2010, 'F', 199), +(204085, 'Jackeline', 2010, 'F', 198), +(204086, 'Kayli', 2010, 'F', 198), +(204087, 'Aubrianna', 2010, 'F', 197), +(204088, 'Carli', 2010, 'F', 197), +(204089, 'Joselin', 2010, 'F', 197), +(204090, 'Remi', 2010, 'F', 197), +(204091, 'Soraya', 2010, 'F', 197), +(204092, 'Tyler', 2010, 'F', 197), +(204093, 'Ellison', 2010, 'F', 196), +(204094, 'Harmoni', 2010, 'F', 196), +(204095, 'Makiyah', 2010, 'F', 196), +(204096, 'Mireya', 2010, 'F', 196), +(204097, 'Nariah', 2010, 'F', 196), +(204098, 'Ailyn', 2010, 'F', 195), +(204099, 'Anneliese', 2010, 'F', 195), +(204100, 'Fallon', 2010, 'F', 195), +(204101, 'Liv', 2010, 'F', 195), +(204102, 'Soleil', 2010, 'F', 195), +(204103, 'Kamya', 2010, 'F', 194), +(204104, 'Tayla', 2010, 'F', 194), +(204105, 'Aditi', 2010, 'F', 193), +(204106, 'Arden', 2010, 'F', 193), +(204107, 'Berkley', 2010, 'F', 193), +(204108, 'Elayna', 2010, 'F', 193), +(204109, 'Jailyn', 2010, 'F', 193), +(204110, 'Kenia', 2010, 'F', 193), +(204111, 'Lillyanna', 2010, 'F', 193), +(204112, 'Maura', 2010, 'F', 193), +(204113, 'Sonya', 2010, 'F', 193), +(204114, 'Ariyana', 2010, 'F', 192), +(204115, 'Avianna', 2010, 'F', 192), +(204116, 'Milena', 2010, 'F', 192), +(204117, 'Nicolette', 2010, 'F', 192), +(204118, 'Aubri', 2010, 'F', 191), +(204119, 'Evangelina', 2010, 'F', 191), +(204120, 'Vivianna', 2010, 'F', 191), +(204121, 'Yvette', 2010, 'F', 191), +(204122, 'Elly', 2010, 'F', 190), +(204123, 'Kathy', 2010, 'F', 190), +(204124, 'Lizette', 2010, 'F', 190), +(204125, 'Lucinda', 2010, 'F', 190), +(204126, 'Shayna', 2010, 'F', 190), +(204127, 'Alanah', 2010, 'F', 189), +(204128, 'Carson', 2010, 'F', 189), +(204129, 'Laci', 2010, 'F', 189), +(204130, 'Maren', 2010, 'F', 189), +(204131, 'Peighton', 2010, 'F', 189), +(204132, 'Bonnie', 2010, 'F', 188), +(204133, 'Elliott', 2010, 'F', 188), +(204134, 'Emme', 2010, 'F', 188), +(204135, 'Jamiya', 2010, 'F', 188), +(204136, 'Makaylah', 2010, 'F', 188), +(204137, 'Ellery', 2010, 'F', 187), +(204138, 'Elyssa', 2010, 'F', 187), +(204139, 'Graciela', 2010, 'F', 187), +(204140, 'Keila', 2010, 'F', 187), +(204141, 'Yara', 2010, 'F', 187), +(204142, 'Everleigh', 2010, 'F', 186), +(204143, 'Gwyneth', 2010, 'F', 186), +(204144, 'Kailani', 2010, 'F', 186), +(204145, 'Keily', 2010, 'F', 186), +(204146, 'Maiya', 2010, 'F', 186), +(204147, 'Sheila', 2010, 'F', 186), +(204148, 'Astrid', 2010, 'F', 185), +(204149, 'Deja', 2010, 'F', 185), +(204150, 'Kenadie', 2010, 'F', 185), +(204151, 'Silvia', 2010, 'F', 185), +(204152, 'Sunny', 2010, 'F', 185), +(204153, 'Tatianna', 2010, 'F', 185), +(204154, 'Wren', 2010, 'F', 185), +(204155, 'Anais', 2010, 'F', 184), +(204156, 'Ananya', 2010, 'F', 184), +(204157, 'Blanca', 2010, 'F', 184), +(204158, 'Katy', 2010, 'F', 183), +(204159, 'Lanie', 2010, 'F', 183), +(204160, 'Shreya', 2010, 'F', 183), +(204161, 'Elina', 2010, 'F', 182), +(204162, 'Honesty', 2010, 'F', 182), +(204163, 'Amayah', 2010, 'F', 181), +(204164, 'Ashton', 2010, 'F', 181), +(204165, 'Karmen', 2010, 'F', 181), +(204166, 'Maite', 2010, 'F', 181), +(204167, 'Carrie', 2010, 'F', 180), +(204168, 'Cordelia', 2010, 'F', 180), +(204169, 'Jazmyne', 2010, 'F', 180), +(204170, 'Kalia', 2010, 'F', 180), +(204171, 'Lacie', 2010, 'F', 180), +(204172, 'Mika', 2010, 'F', 180), +(204173, 'Saylor', 2010, 'F', 180), +(204174, 'Caelyn', 2010, 'F', 179), +(204175, 'Celina', 2010, 'F', 179), +(204176, 'Citlali', 2010, 'F', 179), +(204177, 'Kaci', 2010, 'F', 179), +(204178, 'Selene', 2010, 'F', 179), +(204179, 'Toni', 2010, 'F', 179), +(204180, 'Annelise', 2010, 'F', 178), +(204181, 'Brandy', 2010, 'F', 178), +(204182, 'Dani', 2010, 'F', 178), +(204183, 'Destiney', 2010, 'F', 178), +(204184, 'Destini', 2010, 'F', 178), +(204185, 'Hunter', 2010, 'F', 178), +(204186, 'Jasmyn', 2010, 'F', 178), +(204187, 'Paislee', 2010, 'F', 178), +(204188, 'Stevie', 2010, 'F', 178), +(204189, 'Tinley', 2010, 'F', 178), +(204190, 'Alli', 2010, 'F', 177), +(204191, 'Emmie', 2010, 'F', 177), +(204192, 'Gisele', 2010, 'F', 177), +(204193, 'Kora', 2010, 'F', 177), +(204194, 'Mabel', 2010, 'F', 177), +(204195, 'Mackenna', 2010, 'F', 177), +(204196, 'Sandy', 2010, 'F', 177), +(204197, 'Yarely', 2010, 'F', 177), +(204198, 'Amariah', 2010, 'F', 176), +(204199, 'Amia', 2010, 'F', 176), +(204200, 'Jaclyn', 2010, 'F', 176), +(204201, 'Justine', 2010, 'F', 176), +(204202, 'Rita', 2010, 'F', 176), +(204203, 'Shirley', 2010, 'F', 176), +(204204, 'Brookelyn', 2010, 'F', 175), +(204205, 'Caitlynn', 2010, 'F', 175), +(204206, 'Calleigh', 2010, 'F', 175), +(204207, 'Estefany', 2010, 'F', 175), +(204208, 'Marely', 2010, 'F', 175), +(204209, 'Preslee', 2010, 'F', 175), +(204210, 'Adamaris', 2010, 'F', 174), +(204211, 'Bridgette', 2010, 'F', 174), +(204212, 'Deasia', 2010, 'F', 174), +(204213, 'Jaedyn', 2010, 'F', 174), +(204214, 'Nichole', 2010, 'F', 174), +(204215, 'Rilee', 2010, 'F', 174), +(204216, 'Anita', 2010, 'F', 173), +(204217, 'Antonella', 2010, 'F', 172), +(204218, 'Avani', 2010, 'F', 172), +(204219, 'Jaycie', 2010, 'F', 172), +(204220, 'Lillyan', 2010, 'F', 172), +(204221, 'Lilyann', 2010, 'F', 172), +(204222, 'Maddie', 2010, 'F', 172), +(204223, 'Sahara', 2010, 'F', 172), +(204224, 'Alex', 2010, 'F', 171), +(204225, 'Jenesis', 2010, 'F', 171), +(204226, 'Kirra', 2010, 'F', 171), +(204227, 'Mariajose', 2010, 'F', 171), +(204228, 'Monique', 2010, 'F', 171), +(204229, 'Analy', 2010, 'F', 170), +(204230, 'Asha', 2010, 'F', 170), +(204231, 'Kalyn', 2010, 'F', 170), +(204232, 'Lacy', 2010, 'F', 170), +(204233, 'Nya', 2010, 'F', 170), +(204234, 'Wynter', 2010, 'F', 170), +(204235, 'Dina', 2010, 'F', 169), +(204236, 'Eunice', 2010, 'F', 169), +(204237, 'Kamiya', 2010, 'F', 169), +(204238, 'Litzy', 2010, 'F', 169), +(204239, 'Maylee', 2010, 'F', 169), +(204240, 'Zaira', 2010, 'F', 169), +(204241, 'Kacey', 2010, 'F', 168), +(204242, 'Margarita', 2010, 'F', 168), +(204243, 'Nikki', 2010, 'F', 168), +(204244, 'Raya', 2010, 'F', 168), +(204245, 'Ariyanna', 2010, 'F', 167), +(204246, 'Hillary', 2010, 'F', 167), +(204247, 'Kalea', 2010, 'F', 167), +(204248, 'Roxana', 2010, 'F', 167), +(204249, 'Star', 2010, 'F', 167), +(204250, 'Drew', 2010, 'F', 166), +(204251, 'Haidyn', 2010, 'F', 166), +(204252, 'Karolina', 2010, 'F', 166), +(204253, 'Magnolia', 2010, 'F', 166), +(204254, 'Melia', 2010, 'F', 166), +(204255, 'Miyah', 2010, 'F', 166), +(204256, 'Ayva', 2010, 'F', 165), +(204257, 'Estefani', 2010, 'F', 165), +(204258, 'Harleigh', 2010, 'F', 165), +(204259, 'Josselyn', 2010, 'F', 165), +(204260, 'Natali', 2010, 'F', 165), +(204261, 'Priya', 2010, 'F', 165), +(204262, 'Alora', 2010, 'F', 164), +(204263, 'Azalea', 2010, 'F', 164), +(204264, 'Elana', 2010, 'F', 164), +(204265, 'Freya', 2010, 'F', 164), +(204266, 'Lillyann', 2010, 'F', 164), +(204267, 'Adrian', 2010, 'F', 163), +(204268, 'Aniah', 2010, 'F', 163), +(204269, 'Aubry', 2010, 'F', 163), +(204270, 'Audra', 2010, 'F', 163), +(204271, 'Ayden', 2010, 'F', 163), +(204272, 'Carsyn', 2010, 'F', 163), +(204273, 'Colbie', 2010, 'F', 163), +(204274, 'Gwen', 2010, 'F', 163), +(204275, 'Rhianna', 2010, 'F', 163), +(204276, 'Roxanna', 2010, 'F', 163), +(204277, 'Devin', 2010, 'F', 162), +(204278, 'Faye', 2010, 'F', 162), +(204279, 'Louisa', 2010, 'F', 162), +(204280, 'Milani', 2010, 'F', 162), +(204281, 'Noelia', 2010, 'F', 162), +(204282, 'Xochitl', 2010, 'F', 162), +(204283, 'Dayanna', 2010, 'F', 161), +(204284, 'Jael', 2010, 'F', 161), +(204285, 'Maxine', 2010, 'F', 161), +(204286, 'Mayte', 2010, 'F', 161), +(204287, 'Nelly', 2010, 'F', 161), +(204288, 'Pyper', 2010, 'F', 161), +(204289, 'Rhiannon', 2010, 'F', 161), +(204290, 'Tina', 2010, 'F', 161), +(204291, 'Amerie', 2010, 'F', 160), +(204292, 'Breana', 2010, 'F', 160), +(204293, 'Carter', 2010, 'F', 160), +(204294, 'Gwenyth', 2010, 'F', 160), +(204295, 'Kaylani', 2010, 'F', 160), +(204296, 'Samaria', 2010, 'F', 160), +(204297, 'Ziva', 2010, 'F', 160), +(204298, 'Alessia', 2010, 'F', 159), +(204299, 'Everly', 2010, 'F', 159), +(204300, 'Noel', 2010, 'F', 159), +(204301, 'Stacey', 2010, 'F', 159), +(204302, 'Alize', 2010, 'F', 158), +(204303, 'Yaretzy', 2010, 'F', 158), +(204304, 'Brylie', 2010, 'F', 157), +(204305, 'Camdyn', 2010, 'F', 157), +(204306, 'Christian', 2010, 'F', 157), +(204307, 'Coral', 2010, 'F', 157), +(204308, 'Dalila', 2010, 'F', 157), +(204309, 'Emerie', 2010, 'F', 157), +(204310, 'Eryn', 2010, 'F', 157), +(204311, 'Estelle', 2010, 'F', 157), +(204312, 'Hattie', 2010, 'F', 157), +(204313, 'Leena', 2010, 'F', 157), +(204314, 'Robin', 2010, 'F', 157), +(204315, 'Brandi', 2010, 'F', 156), +(204316, 'Samya', 2010, 'F', 156), +(204317, 'Tayler', 2010, 'F', 156), +(204318, 'Abygail', 2010, 'F', 155), +(204319, 'Belle', 2010, 'F', 155), +(204320, 'Ila', 2010, 'F', 155), +(204321, 'Jacklyn', 2010, 'F', 155), +(204322, 'Jaya', 2010, 'F', 155), +(204323, 'Kahlan', 2010, 'F', 155), +(204324, 'Lilyan', 2010, 'F', 155), +(204325, 'Marcella', 2010, 'F', 155), +(204326, 'Margot', 2010, 'F', 155), +(204327, 'Savana', 2010, 'F', 155), +(204328, 'Susanna', 2010, 'F', 155), +(204329, 'Tatyana', 2010, 'F', 155), +(204330, 'Veda', 2010, 'F', 155), +(204331, 'Aida', 2010, 'F', 154), +(204332, 'Alexi', 2010, 'F', 154), +(204333, 'Betsy', 2010, 'F', 154), +(204334, 'Jacie', 2010, 'F', 154), +(204335, 'Kalli', 2010, 'F', 154), +(204336, 'Allyssa', 2010, 'F', 153), +(204337, 'Aubriana', 2010, 'F', 153), +(204338, 'Ellianna', 2010, 'F', 153), +(204339, 'Janie', 2010, 'F', 153), +(204340, 'Meagan', 2010, 'F', 153), +(204341, 'Mylah', 2010, 'F', 153), +(204342, 'Robyn', 2010, 'F', 153), +(204343, 'Rocio', 2010, 'F', 153), +(204344, 'Aubrielle', 2010, 'F', 152), +(204345, 'Beatriz', 2010, 'F', 152), +(204346, 'Darby', 2010, 'F', 152), +(204347, 'Delanie', 2010, 'F', 152), +(204348, 'Isha', 2010, 'F', 152), +(204349, 'Penny', 2010, 'F', 152), +(204350, 'Priscila', 2010, 'F', 152), +(204351, 'Zahara', 2010, 'F', 152), +(204352, 'Bryana', 2010, 'F', 151), +(204353, 'Constance', 2010, 'F', 151), +(204354, 'Ellis', 2010, 'F', 151), +(204355, 'Farah', 2010, 'F', 151), +(204356, 'Geneva', 2010, 'F', 151), +(204357, 'Halo', 2010, 'F', 151), +(204358, 'Malina', 2010, 'F', 151), +(204359, 'Ryley', 2010, 'F', 151), +(204360, 'Carol', 2010, 'F', 150), +(204361, 'Louise', 2010, 'F', 150), +(204362, 'Nailah', 2010, 'F', 150), +(204363, 'Sahana', 2010, 'F', 150), +(204364, 'Anissa', 2010, 'F', 149), +(204365, 'Anniston', 2010, 'F', 149), +(204366, 'Austyn', 2010, 'F', 149), +(204367, 'Brynley', 2010, 'F', 149), +(204368, 'Gizelle', 2010, 'F', 149), +(204369, 'Jasleen', 2010, 'F', 149), +(204370, 'Joana', 2010, 'F', 149), +(204371, 'Nadine', 2010, 'F', 149), +(204372, 'Sheyla', 2010, 'F', 149), +(204373, 'Amberly', 2010, 'F', 148), +(204374, 'Arlette', 2010, 'F', 148), +(204375, 'Cailey', 2010, 'F', 148), +(204376, 'Evalynn', 2010, 'F', 148), +(204377, 'Lluvia', 2010, 'F', 148), +(204378, 'Makenzi', 2010, 'F', 148), +(204379, 'Mariella', 2010, 'F', 148), +(204380, 'Rosalyn', 2010, 'F', 148), +(204381, 'Scout', 2010, 'F', 148), +(204382, 'Zoya', 2010, 'F', 148), +(204383, 'Adelle', 2010, 'F', 147), +(204384, 'Berenice', 2010, 'F', 147), +(204385, 'Elia', 2010, 'F', 147), +(204386, 'Estefania', 2010, 'F', 147), +(204387, 'Ginger', 2010, 'F', 147), +(204388, 'Josslyn', 2010, 'F', 147), +(204389, 'Kaniyah', 2010, 'F', 147), +(204390, 'Linnea', 2010, 'F', 147), +(204391, 'Shaelyn', 2010, 'F', 147), +(204392, 'Sylvie', 2010, 'F', 147), +(204393, 'Alianna', 2010, 'F', 146), +(204394, 'Hadleigh', 2010, 'F', 146), +(204395, 'Katerina', 2010, 'F', 146), +(204396, 'Khloee', 2010, 'F', 146), +(204397, 'Mayah', 2010, 'F', 146), +(204398, 'Nariyah', 2010, 'F', 146), +(204399, 'Capri', 2010, 'F', 145), +(204400, 'Chiara', 2010, 'F', 145), +(204401, 'Jaslynn', 2010, 'F', 145), +(204402, 'Kinlee', 2010, 'F', 145), +(204403, 'Lela', 2010, 'F', 145), +(204404, 'Lucie', 2010, 'F', 145), +(204405, 'Vida', 2010, 'F', 145), +(204406, 'Anaiah', 2010, 'F', 144), +(204407, 'Arleth', 2010, 'F', 144), +(204408, 'Brea', 2010, 'F', 144), +(204409, 'Darcy', 2010, 'F', 144), +(204410, 'Dasia', 2010, 'F', 144), +(204411, 'Ericka', 2010, 'F', 144), +(204412, 'Flor', 2010, 'F', 144), +(204413, 'Jaeda', 2010, 'F', 144), +(204414, 'Juana', 2010, 'F', 144), +(204415, 'Katlyn', 2010, 'F', 144), +(204416, 'Keziah', 2010, 'F', 144), +(204417, 'Raniyah', 2010, 'F', 144), +(204418, 'Alyse', 2010, 'F', 143), +(204419, 'Fabiola', 2010, 'F', 143), +(204420, 'Jalyn', 2010, 'F', 143), +(204421, 'Maylin', 2010, 'F', 143), +(204422, 'Thea', 2010, 'F', 143), +(204423, 'Chyna', 2010, 'F', 142), +(204424, 'Emmaleigh', 2010, 'F', 142), +(204425, 'Janaya', 2010, 'F', 142), +(204426, 'Rilynn', 2010, 'F', 142), +(204427, 'Taelyn', 2010, 'F', 142), +(204428, 'Trista', 2010, 'F', 142), +(204429, 'Aniston', 2010, 'F', 141), +(204430, 'Cayleigh', 2010, 'F', 141), +(204431, 'Zaylee', 2010, 'F', 141), +(204432, 'Diane', 2010, 'F', 140), +(204433, 'Emmeline', 2010, 'F', 140), +(204434, 'Jurnee', 2010, 'F', 140), +(204435, 'Paulette', 2010, 'F', 140), +(204436, 'Alasia', 2010, 'F', 139), +(204437, 'Candice', 2010, 'F', 139), +(204438, 'Carmella', 2010, 'F', 139), +(204439, 'Darla', 2010, 'F', 139), +(204440, 'Kyrie', 2010, 'F', 139), +(204441, 'Lilli', 2010, 'F', 139), +(204442, 'Makiya', 2010, 'F', 139), +(204443, 'Malka', 2010, 'F', 139), +(204444, 'Reilly', 2010, 'F', 139), +(204445, 'Yaneli', 2010, 'F', 139), +(204446, 'Yulissa', 2010, 'F', 139), +(204447, 'Cielo', 2010, 'F', 138), +(204448, 'Holland', 2010, 'F', 138), +(204449, 'Kacie', 2010, 'F', 138), +(204450, 'Leilany', 2010, 'F', 138), +(204451, 'Marlen', 2010, 'F', 138), +(204452, 'Aja', 2010, 'F', 137), +(204453, 'Alyssia', 2010, 'F', 137), +(204454, 'Amora', 2010, 'F', 137), +(204455, 'Yahaira', 2010, 'F', 137), +(204456, 'Adilene', 2010, 'F', 136), +(204457, 'Alexandrea', 2010, 'F', 136), +(204458, 'Anayah', 2010, 'F', 136), +(204459, 'Andi', 2010, 'F', 136), +(204460, 'Charlene', 2010, 'F', 136), +(204461, 'Elisha', 2010, 'F', 136), +(204462, 'Keren', 2010, 'F', 136), +(204463, 'Leanne', 2010, 'F', 136), +(204464, 'Sahasra', 2010, 'F', 136), +(204465, 'Adaline', 2010, 'F', 135), +(204466, 'Ayah', 2010, 'F', 135), +(204467, 'Issabella', 2010, 'F', 135), +(204468, 'Kelis', 2010, 'F', 135), +(204469, 'Layna', 2010, 'F', 135), +(204470, 'Malayah', 2010, 'F', 135), +(204471, 'Addelyn', 2010, 'F', 134), +(204472, 'Adilyn', 2010, 'F', 134), +(204473, 'Anali', 2010, 'F', 134), +(204474, 'Ari', 2010, 'F', 134), +(204475, 'Ema', 2010, 'F', 134), +(204476, 'Emalee', 2010, 'F', 134), +(204477, 'Jazlene', 2010, 'F', 134), +(204478, 'Leela', 2010, 'F', 134), +(204479, 'Londynn', 2010, 'F', 134), +(204480, 'Triniti', 2010, 'F', 134), +(204481, 'Yolanda', 2010, 'F', 134), +(204482, 'Avril', 2010, 'F', 133), +(204483, 'Cailin', 2010, 'F', 133), +(204484, 'Calla', 2010, 'F', 133), +(204485, 'Candace', 2010, 'F', 133), +(204486, 'Kloey', 2010, 'F', 133), +(204487, 'Melani', 2010, 'F', 133), +(204488, 'Yessenia', 2010, 'F', 133), +(204489, 'Analeigh', 2010, 'F', 132), +(204490, 'Clementine', 2010, 'F', 132), +(204491, 'Danae', 2010, 'F', 132), +(204492, 'Della', 2010, 'F', 132), +(204493, 'Dianna', 2010, 'F', 132), +(204494, 'Keegan', 2010, 'F', 132), +(204495, 'Milania', 2010, 'F', 132), +(204496, 'Alexys', 2010, 'F', 131), +(204497, 'Anisa', 2010, 'F', 131), +(204498, 'Betty', 2010, 'F', 131), +(204499, 'Grayson', 2010, 'F', 131), +(204500, 'Jaela', 2010, 'F', 131), +(204501, 'Katarina', 2010, 'F', 131), +(204502, 'Aven', 2010, 'F', 130), +(204503, 'Cloe', 2010, 'F', 130), +(204504, 'Harlie', 2010, 'F', 130), +(204505, 'Harmonie', 2010, 'F', 130), +(204506, 'Skylah', 2010, 'F', 130), +(204507, 'Taleah', 2010, 'F', 130), +(204508, 'Annmarie', 2010, 'F', 129), +(204509, 'Avalyn', 2010, 'F', 129), +(204510, 'Brianne', 2010, 'F', 129), +(204511, 'Calli', 2010, 'F', 129), +(204512, 'Kenleigh', 2010, 'F', 129), +(204513, 'Makaela', 2010, 'F', 129), +(204514, 'Maliya', 2010, 'F', 129), +(204515, 'Marjorie', 2010, 'F', 129), +(204516, 'Melisa', 2010, 'F', 129), +(204517, 'Trisha', 2010, 'F', 129), +(204518, 'Adela', 2010, 'F', 128), +(204519, 'Annaleigh', 2010, 'F', 128), +(204520, 'Baileigh', 2010, 'F', 128), +(204521, 'Brynna', 2010, 'F', 128), +(204522, 'Felicia', 2010, 'F', 128), +(204523, 'Grecia', 2010, 'F', 128), +(204524, 'Jackelyn', 2010, 'F', 128), +(204525, 'Kennadi', 2010, 'F', 128), +(204526, 'Milla', 2010, 'F', 128), +(204527, 'Andie', 2010, 'F', 127), +(204528, 'Janya', 2010, 'F', 127), +(204529, 'Jazelle', 2010, 'F', 127), +(204530, 'Jianna', 2010, 'F', 127), +(204531, 'Jorja', 2010, 'F', 127), +(204532, 'Katharine', 2010, 'F', 127), +(204533, 'Kiya', 2010, 'F', 127), +(204534, 'Kristine', 2010, 'F', 127), +(204535, 'Mallorie', 2010, 'F', 127), +(204536, 'Starr', 2010, 'F', 127), +(204537, 'Yvonne', 2010, 'F', 127), +(204538, 'Adalee', 2010, 'F', 126), +(204539, 'Avalon', 2010, 'F', 126), +(204540, 'Beatrix', 2010, 'F', 126), +(204541, 'Christy', 2010, 'F', 126), +(204542, 'Jayna', 2010, 'F', 126), +(204543, 'Kaily', 2010, 'F', 126), +(204544, 'Mari', 2010, 'F', 126), +(204545, 'Naya', 2010, 'F', 126), +(204546, 'Ramona', 2010, 'F', 126), +(204547, 'Remy', 2010, 'F', 126), +(204548, 'Tracy', 2010, 'F', 126), +(204549, 'Vianney', 2010, 'F', 126), +(204550, 'Daniyah', 2010, 'F', 125), +(204551, 'Hadlee', 2010, 'F', 125), +(204552, 'Kalani', 2010, 'F', 125), +(204553, 'Katalina', 2010, 'F', 125), +(204554, 'Kelsi', 2010, 'F', 125), +(204555, 'Kenadee', 2010, 'F', 125), +(204556, 'Rayleigh', 2010, 'F', 125), +(204557, 'Rosie', 2010, 'F', 125), +(204558, 'Shakira', 2010, 'F', 125), +(204559, 'Shira', 2010, 'F', 125), +(204560, 'Addilynn', 2010, 'F', 124), +(204561, 'Jovie', 2010, 'F', 124), +(204562, 'Rania', 2010, 'F', 124), +(204563, 'Alysa', 2010, 'F', 123), +(204564, 'Aminah', 2010, 'F', 123), +(204565, 'Elora', 2010, 'F', 123), +(204566, 'Emerald', 2010, 'F', 123), +(204567, 'Jaci', 2010, 'F', 123), +(204568, 'Kami', 2010, 'F', 123), +(204569, 'Maisie', 2010, 'F', 123), +(204570, 'Martina', 2010, 'F', 123), +(204571, 'Nala', 2010, 'F', 123), +(204572, 'Solange', 2010, 'F', 123), +(204573, 'Yuna', 2010, 'F', 123), +(204574, 'Claira', 2010, 'F', 122), +(204575, 'Emmerson', 2010, 'F', 122), +(204576, 'Isadora', 2010, 'F', 122), +(204577, 'Jiselle', 2010, 'F', 122), +(204578, 'Judy', 2010, 'F', 122), +(204579, 'Kasandra', 2010, 'F', 122), +(204580, 'Kinslee', 2010, 'F', 122), +(204581, 'Marcela', 2010, 'F', 122), +(204582, 'Rachelle', 2010, 'F', 122), +(204583, 'Tallulah', 2010, 'F', 122), +(204584, 'Anisha', 2010, 'F', 121), +(204585, 'Cayden', 2010, 'F', 121), +(204586, 'Citlaly', 2010, 'F', 121), +(204587, 'Daria', 2010, 'F', 121), +(204588, 'Eleni', 2010, 'F', 121), +(204589, 'Jenifer', 2010, 'F', 121), +(204590, 'Madisen', 2010, 'F', 121), +(204591, 'Makinley', 2010, 'F', 121), +(204592, 'Makyla', 2010, 'F', 121), +(204593, 'Montserrat', 2010, 'F', 121), +(204594, 'Nikita', 2010, 'F', 121), +(204595, 'Quincy', 2010, 'F', 121), +(204596, 'Roxy', 2010, 'F', 121), +(204597, 'Samaya', 2010, 'F', 121), +(204598, 'Whitley', 2010, 'F', 121), +(204599, 'Adrianne', 2010, 'F', 120), +(204600, 'Angely', 2010, 'F', 120), +(204601, 'Arianny', 2010, 'F', 120), +(204602, 'Baylie', 2010, 'F', 120), +(204603, 'Camden', 2010, 'F', 120), +(204604, 'Ivette', 2010, 'F', 120), +(204605, 'Jahzara', 2010, 'F', 120), +(204606, 'Jeanette', 2010, 'F', 120), +(204607, 'Kenzi', 2010, 'F', 120), +(204608, 'Leann', 2010, 'F', 120), +(204609, 'Poppy', 2010, 'F', 120), +(204610, 'Remington', 2010, 'F', 120), +(204611, 'Taylar', 2010, 'F', 120), +(204612, 'Ebony', 2010, 'F', 119), +(204613, 'Ester', 2010, 'F', 119), +(204614, 'Melodie', 2010, 'F', 119), +(204615, 'Addalyn', 2010, 'F', 118), +(204616, 'Aime', 2010, 'F', 118), +(204617, 'Jaquelin', 2010, 'F', 118), +(204618, 'Malena', 2010, 'F', 118), +(204619, 'Maryann', 2010, 'F', 118), +(204620, 'Nellie', 2010, 'F', 118), +(204621, 'Oakley', 2010, 'F', 118), +(204622, 'Vanesa', 2010, 'F', 118), +(204623, 'Vianey', 2010, 'F', 118), +(204624, 'Alonna', 2010, 'F', 117), +(204625, 'Audree', 2010, 'F', 117), +(204626, 'Ela', 2010, 'F', 117), +(204627, 'Emalyn', 2010, 'F', 117), +(204628, 'Heavenly', 2010, 'F', 117), +(204629, 'Kamdyn', 2010, 'F', 117), +(204630, 'Stormy', 2010, 'F', 117), +(204631, 'Taylin', 2010, 'F', 117), +(204632, 'Viola', 2010, 'F', 117), +(204633, 'Audrie', 2010, 'F', 116), +(204634, 'Brooklynne', 2010, 'F', 116), +(204635, 'Chandler', 2010, 'F', 116), +(204636, 'Charis', 2010, 'F', 116), +(204637, 'Collins', 2010, 'F', 116), +(204638, 'Dior', 2010, 'F', 116), +(204639, 'Jaila', 2010, 'F', 116), +(204640, 'Kalina', 2010, 'F', 116), +(204641, 'Lupita', 2010, 'F', 116), +(204642, 'Norma', 2010, 'F', 116), +(204643, 'Randi', 2010, 'F', 116), +(204644, 'Rosario', 2010, 'F', 116), +(204645, 'Yuridia', 2010, 'F', 116), +(204646, 'Adamari', 2010, 'F', 115), +(204647, 'Alba', 2010, 'F', 115), +(204648, 'Allegra', 2010, 'F', 115), +(204649, 'Ariela', 2010, 'F', 115), +(204650, 'Gitty', 2010, 'F', 115), +(204651, 'Ivory', 2010, 'F', 115), +(204652, 'Jamiah', 2010, 'F', 115), +(204653, 'Joseline', 2010, 'F', 115), +(204654, 'Kaniya', 2010, 'F', 115), +(204655, 'Kayle', 2010, 'F', 115), +(204656, 'Saniah', 2010, 'F', 115), +(204657, 'Xitlali', 2010, 'F', 115), +(204658, 'Yael', 2010, 'F', 115), +(204659, 'Adina', 2010, 'F', 114), +(204660, 'Alysha', 2010, 'F', 114), +(204661, 'Briza', 2010, 'F', 114), +(204662, 'Brook', 2010, 'F', 114), +(204663, 'Carys', 2010, 'F', 114), +(204664, 'Flora', 2010, 'F', 114), +(204665, 'Kaylan', 2010, 'F', 114), +(204666, 'Kensington', 2010, 'F', 114), +(204667, 'Lourdes', 2010, 'F', 114), +(204668, 'Yasmeen', 2010, 'F', 114), +(204669, 'Alliyah', 2010, 'F', 113), +(204670, 'Anaiya', 2010, 'F', 113), +(204671, 'Ciera', 2010, 'F', 113), +(204672, 'Frankie', 2010, 'F', 113), +(204673, 'Kari', 2010, 'F', 113), +(204674, 'Khadija', 2010, 'F', 113), +(204675, 'Maryn', 2010, 'F', 113), +(204676, 'Sade', 2010, 'F', 113), +(204677, 'Taytum', 2010, 'F', 113), +(204678, 'Alea', 2010, 'F', 112), +(204679, 'Ariya', 2010, 'F', 112), +(204680, 'August', 2010, 'F', 112), +(204681, 'Davina', 2010, 'F', 112), +(204682, 'Elli', 2010, 'F', 112), +(204683, 'Jalaya', 2010, 'F', 112), +(204684, 'Janay', 2010, 'F', 112), +(204685, 'Juanita', 2010, 'F', 112), +(204686, 'Katheryn', 2010, 'F', 112), +(204687, 'Madysen', 2010, 'F', 112), +(204688, 'Mindy', 2010, 'F', 112), +(204689, 'Roslyn', 2010, 'F', 112), +(204690, 'Semaj', 2010, 'F', 112), +(204691, 'Shoshana', 2010, 'F', 112), +(204692, 'Amaria', 2010, 'F', 111), +(204693, 'Ania', 2010, 'F', 111), +(204694, 'Anushka', 2010, 'F', 111), +(204695, 'Breonna', 2010, 'F', 111), +(204696, 'Devon', 2010, 'F', 111), +(204697, 'Emi', 2010, 'F', 111), +(204698, 'Jessalyn', 2010, 'F', 111), +(204699, 'Kenlee', 2010, 'F', 111), +(204700, 'Khloie', 2010, 'F', 111), +(204701, 'Lori', 2010, 'F', 111), +(204702, 'Lynn', 2010, 'F', 111), +(204703, 'Nayla', 2010, 'F', 111), +(204704, 'Neha', 2010, 'F', 111), +(204705, 'Persephone', 2010, 'F', 111), +(204706, 'Ria', 2010, 'F', 111), +(204707, 'Siri', 2010, 'F', 111), +(204708, 'Taylee', 2010, 'F', 111), +(204709, 'Cambree', 2010, 'F', 110), +(204710, 'Gracey', 2010, 'F', 110), +(204711, 'Jalissa', 2010, 'F', 110), +(204712, 'Laken', 2010, 'F', 110), +(204713, 'Lisette', 2010, 'F', 110), +(204714, 'Magdalene', 2010, 'F', 110), +(204715, 'Prisha', 2010, 'F', 110), +(204716, 'Shay', 2010, 'F', 110), +(204717, 'Skylee', 2010, 'F', 110), +(204718, 'Teegan', 2010, 'F', 110), +(204719, 'Zoee', 2010, 'F', 110), +(204720, 'Addysen', 2010, 'F', 109), +(204721, 'Aila', 2010, 'F', 109), +(204722, 'Annamarie', 2010, 'F', 109), +(204723, 'Braylin', 2010, 'F', 109), +(204724, 'Cianna', 2010, 'F', 109), +(204725, 'Giulianna', 2010, 'F', 109), +(204726, 'Haiden', 2010, 'F', 109), +(204727, 'Haily', 2010, 'F', 109), +(204728, 'Johannah', 2010, 'F', 109), +(204729, 'Jolee', 2010, 'F', 109), +(204730, 'Julisa', 2010, 'F', 109), +(204731, 'Loren', 2010, 'F', 109), +(204732, 'Mariel', 2010, 'F', 109), +(204733, 'Rhyan', 2010, 'F', 109), +(204734, 'Sonja', 2010, 'F', 109), +(204735, 'Aiden', 2010, 'F', 108), +(204736, 'Analee', 2010, 'F', 108), +(204737, 'Aymar', 2010, 'F', 108), +(204738, 'Henley', 2010, 'F', 108), +(204739, 'Iman', 2010, 'F', 108), +(204740, 'Kaileigh', 2010, 'F', 108), +(204741, 'Lamya', 2010, 'F', 108), +(204742, 'Mylie', 2010, 'F', 108), +(204743, 'Raylynn', 2010, 'F', 108), +(204744, 'Rhylee', 2010, 'F', 108), +(204745, 'Sanjana', 2010, 'F', 108), +(204746, 'Yoselyn', 2010, 'F', 108), +(204747, 'Annalisa', 2010, 'F', 107), +(204748, 'Arionna', 2010, 'F', 107), +(204749, 'Avalynn', 2010, 'F', 107), +(204750, 'Blessing', 2010, 'F', 107), +(204751, 'Carrington', 2010, 'F', 107), +(204752, 'Jesse', 2010, 'F', 107), +(204753, 'Kaliah', 2010, 'F', 107), +(204754, 'Kamaria', 2010, 'F', 107), +(204755, 'Lyndsey', 2010, 'F', 107), +(204756, 'May', 2010, 'F', 107), +(204757, 'Rylynn', 2010, 'F', 107), +(204758, 'Samia', 2010, 'F', 107), +(204759, 'Seraphina', 2010, 'F', 107), +(204760, 'Skylynn', 2010, 'F', 107), +(204761, 'Tanisha', 2010, 'F', 107), +(204762, 'Adilynn', 2010, 'F', 106), +(204763, 'Britany', 2010, 'F', 106), +(204764, 'Chevelle', 2010, 'F', 106), +(204765, 'Ciana', 2010, 'F', 106), +(204766, 'Dafne', 2010, 'F', 106), +(204767, 'Kaydance', 2010, 'F', 106), +(204768, 'Lexus', 2010, 'F', 106), +(204769, 'Lexy', 2010, 'F', 106), +(204770, 'Lynette', 2010, 'F', 106), +(204771, 'Sol', 2010, 'F', 106), +(204772, 'Tyra', 2010, 'F', 106), +(204773, 'Veronika', 2010, 'F', 106), +(204774, 'Cameryn', 2010, 'F', 105), +(204775, 'Elinor', 2010, 'F', 105), +(204776, 'Elysia', 2010, 'F', 105), +(204777, 'Jackie', 2010, 'F', 105), +(204778, 'Jennah', 2010, 'F', 105), +(204779, 'Josalyn', 2010, 'F', 105), +(204780, 'Kristy', 2010, 'F', 105), +(204781, 'Liyah', 2010, 'F', 105), +(204782, 'Mariya', 2010, 'F', 105), +(204783, 'Raleigh', 2010, 'F', 105), +(204784, 'Rylin', 2010, 'F', 105), +(204785, 'Sydnie', 2010, 'F', 105), +(204786, 'Tristyn', 2010, 'F', 105), +(204787, 'Ysabella', 2010, 'F', 105), +(204788, 'Zaina', 2010, 'F', 105), +(204789, 'Aleksandra', 2010, 'F', 104), +(204790, 'Alycia', 2010, 'F', 104), +(204791, 'Anijah', 2010, 'F', 104), +(204792, 'Jena', 2010, 'F', 104), +(204793, 'Katelin', 2010, 'F', 104), +(204794, 'Mandy', 2010, 'F', 104), +(204795, 'Myka', 2010, 'F', 104), +(204796, 'Navaeh', 2010, 'F', 104), +(204797, 'Sabina', 2010, 'F', 104), +(204798, 'Sydni', 2010, 'F', 104), +(204799, 'Taliah', 2010, 'F', 104), +(204800, 'Vicky', 2010, 'F', 104), +(204801, 'Violette', 2010, 'F', 104), +(204802, 'Zayla', 2010, 'F', 104), +(204803, 'Akshara', 2010, 'F', 103), +(204804, 'Alysia', 2010, 'F', 103), +(204805, 'Anaiyah', 2010, 'F', 103), +(204806, 'Araya', 2010, 'F', 103), +(204807, 'Ariadna', 2010, 'F', 103), +(204808, 'Brinlee', 2010, 'F', 103), +(204809, 'Dasha', 2010, 'F', 103), +(204810, 'Giulia', 2010, 'F', 103), +(204811, 'Gladys', 2010, 'F', 103), +(204812, 'Joanne', 2010, 'F', 103), +(204813, 'Kinleigh', 2010, 'F', 103), +(204814, 'Makiah', 2010, 'F', 103), +(204815, 'Miabella', 2010, 'F', 103), +(204816, 'Preslie', 2010, 'F', 103), +(204817, 'Rain', 2010, 'F', 103), +(204818, 'Azucena', 2010, 'F', 102), +(204819, 'Candy', 2010, 'F', 102), +(204820, 'Daira', 2010, 'F', 102), +(204821, 'Divya', 2010, 'F', 102), +(204822, 'Ida', 2010, 'F', 102), +(204823, 'Isobel', 2010, 'F', 102), +(204824, 'Jacquelin', 2010, 'F', 102), +(204825, 'Janyla', 2010, 'F', 102), +(204826, 'Joey', 2010, 'F', 102), +(204827, 'Kalista', 2010, 'F', 102), +(204828, 'Karely', 2010, 'F', 102), +(204829, 'Karmyn', 2010, 'F', 102), +(204830, 'Khloey', 2010, 'F', 102), +(204831, 'Luella', 2010, 'F', 102), +(204832, 'Neriah', 2010, 'F', 102), +(204833, 'Olyvia', 2010, 'F', 102), +(204834, 'Ruthie', 2010, 'F', 102), +(204835, 'Saphira', 2010, 'F', 102), +(204836, 'Tanvi', 2010, 'F', 102), +(204837, 'Zaida', 2010, 'F', 102), +(204838, 'Zariya', 2010, 'F', 102), +(204839, 'Amarie', 2010, 'F', 101), +(204840, 'Daniya', 2010, 'F', 101), +(204841, 'Imogen', 2010, 'F', 101), +(204842, 'Jacelyn', 2010, 'F', 101), +(204843, 'Jailynn', 2010, 'F', 101), +(204844, 'Janette', 2010, 'F', 101), +(204845, 'Jessenia', 2010, 'F', 101), +(204846, 'Jiya', 2010, 'F', 101), +(204847, 'Lilyanne', 2010, 'F', 101), +(204848, 'Meera', 2010, 'F', 101), +(204849, 'Niya', 2010, 'F', 101), +(204850, 'Sana', 2010, 'F', 101), +(204851, 'Valencia', 2010, 'F', 101), +(204852, 'Zooey', 2010, 'F', 101), +(204853, 'Aleyah', 2010, 'F', 100), +(204854, 'Alysson', 2010, 'F', 100), +(204855, 'Ayesha', 2010, 'F', 100), +(204856, 'Cienna', 2010, 'F', 100), +(204857, 'Corina', 2010, 'F', 100), +(204858, 'Desire', 2010, 'F', 100), +(204859, 'Egypt', 2010, 'F', 100), +(204860, 'Gabriel', 2010, 'F', 100), +(204861, 'Italia', 2010, 'F', 100), +(204862, 'Jocelyne', 2010, 'F', 100), +(204863, 'Karyme', 2010, 'F', 100), +(204864, 'Leandra', 2010, 'F', 100), +(204865, 'Myleigh', 2010, 'F', 100), +(204866, 'Rena', 2010, 'F', 100), +(204867, 'Rosalee', 2010, 'F', 100), +(204868, 'Sariya', 2010, 'F', 100), +(204869, 'Yazmine', 2010, 'F', 100), +(204870, 'Jacob', 2010, 'M', 22082), +(204871, 'Ethan', 2010, 'M', 17985), +(204872, 'Michael', 2010, 'M', 17308), +(204873, 'Jayden', 2010, 'M', 17152), +(204874, 'William', 2010, 'M', 17030), +(204875, 'Alexander', 2010, 'M', 16742), +(204876, 'Noah', 2010, 'M', 16428), +(204877, 'Daniel', 2010, 'M', 15815), +(204878, 'Aiden', 2010, 'M', 15516), +(204879, 'Anthony', 2010, 'M', 15470), +(204880, 'Joshua', 2010, 'M', 15410), +(204881, 'Mason', 2010, 'M', 14831), +(204882, 'Christopher', 2010, 'M', 14243), +(204883, 'Andrew', 2010, 'M', 14221), +(204884, 'David', 2010, 'M', 14171), +(204885, 'Matthew', 2010, 'M', 14099), +(204886, 'Logan', 2010, 'M', 14012), +(204887, 'Elijah', 2010, 'M', 13867), +(204888, 'James', 2010, 'M', 13852), +(204889, 'Joseph', 2010, 'M', 13798), +(204890, 'Gabriel', 2010, 'M', 12854), +(204891, 'Benjamin', 2010, 'M', 12417), +(204892, 'Ryan', 2010, 'M', 11963), +(204893, 'Samuel', 2010, 'M', 11939), +(204894, 'Jackson', 2010, 'M', 11804), +(204895, 'John', 2010, 'M', 11539), +(204896, 'Nathan', 2010, 'M', 11365), +(204897, 'Jonathan', 2010, 'M', 11103), +(204898, 'Christian', 2010, 'M', 11080), +(204899, 'Liam', 2010, 'M', 10921), +(204900, 'Dylan', 2010, 'M', 10504), +(204901, 'Landon', 2010, 'M', 10463), +(204902, 'Caleb', 2010, 'M', 10456), +(204903, 'Tyler', 2010, 'M', 10435), +(204904, 'Lucas', 2010, 'M', 10368), +(204905, 'Evan', 2010, 'M', 9722), +(204906, 'Nicholas', 2010, 'M', 9633), +(204907, 'Gavin', 2010, 'M', 9607), +(204908, 'Isaac', 2010, 'M', 9341), +(204909, 'Brayden', 2010, 'M', 9098), +(204910, 'Luke', 2010, 'M', 8830), +(204911, 'Angel', 2010, 'M', 8760), +(204912, 'Isaiah', 2010, 'M', 8554), +(204913, 'Brandon', 2010, 'M', 8530), +(204914, 'Jack', 2010, 'M', 8514), +(204915, 'Jordan', 2010, 'M', 8223), +(204916, 'Owen', 2010, 'M', 8171), +(204917, 'Carter', 2010, 'M', 8148), +(204918, 'Connor', 2010, 'M', 8047), +(204919, 'Justin', 2010, 'M', 7838), +(204920, 'Jeremiah', 2010, 'M', 7717), +(204921, 'Jose', 2010, 'M', 7696), +(204922, 'Julian', 2010, 'M', 7571), +(204923, 'Robert', 2010, 'M', 7539), +(204924, 'Aaron', 2010, 'M', 7450), +(204925, 'Adrian', 2010, 'M', 7395), +(204926, 'Wyatt', 2010, 'M', 7363), +(204927, 'Kevin', 2010, 'M', 7318), +(204928, 'Hunter', 2010, 'M', 7309), +(204929, 'Cameron', 2010, 'M', 7183), +(204930, 'Zachary', 2010, 'M', 7164), +(204931, 'Thomas', 2010, 'M', 7114), +(204932, 'Charles', 2010, 'M', 7090), +(204933, 'Austin', 2010, 'M', 6892), +(204934, 'Eli', 2010, 'M', 6550), +(204935, 'Chase', 2010, 'M', 6432), +(204936, 'Henry', 2010, 'M', 6390), +(204937, 'Sebastian', 2010, 'M', 6347), +(204938, 'Jason', 2010, 'M', 6264), +(204939, 'Levi', 2010, 'M', 5988), +(204940, 'Xavier', 2010, 'M', 5743), +(204941, 'Ian', 2010, 'M', 5549), +(204942, 'Colton', 2010, 'M', 5310), +(204943, 'Dominic', 2010, 'M', 5287), +(204944, 'Cooper', 2010, 'M', 5252), +(204945, 'Juan', 2010, 'M', 5235), +(204946, 'Josiah', 2010, 'M', 5199), +(204947, 'Ayden', 2010, 'M', 5123), +(204948, 'Luis', 2010, 'M', 5123), +(204949, 'Carson', 2010, 'M', 5096), +(204950, 'Adam', 2010, 'M', 5093), +(204951, 'Nathaniel', 2010, 'M', 5092), +(204952, 'Brody', 2010, 'M', 5048), +(204953, 'Tristan', 2010, 'M', 4886), +(204954, 'Parker', 2010, 'M', 4727), +(204955, 'Diego', 2010, 'M', 4714), +(204956, 'Blake', 2010, 'M', 4695), +(204957, 'Oliver', 2010, 'M', 4659), +(204958, 'Carlos', 2010, 'M', 4583), +(204959, 'Cole', 2010, 'M', 4583), +(204960, 'Jaden', 2010, 'M', 4511), +(204961, 'Jesus', 2010, 'M', 4451), +(204962, 'Alex', 2010, 'M', 4428), +(204963, 'Aidan', 2010, 'M', 4302), +(204964, 'Eric', 2010, 'M', 4188), +(204965, 'Hayden', 2010, 'M', 4183), +(204966, 'Bryan', 2010, 'M', 3930), +(204967, 'Max', 2010, 'M', 3846), +(204968, 'Jaxon', 2010, 'M', 3833), +(204969, 'Bentley', 2010, 'M', 3764), +(204970, 'Brian', 2010, 'M', 3762), +(204971, 'Sean', 2010, 'M', 3734), +(204972, 'Alejandro', 2010, 'M', 3708), +(204973, 'Nolan', 2010, 'M', 3684), +(204974, 'Riley', 2010, 'M', 3639), +(204975, 'Kaden', 2010, 'M', 3587), +(204976, 'Kyle', 2010, 'M', 3569), +(204977, 'Micah', 2010, 'M', 3557), +(204978, 'Antonio', 2010, 'M', 3523), +(204979, 'Vincent', 2010, 'M', 3523), +(204980, 'Colin', 2010, 'M', 3486), +(204981, 'Bryce', 2010, 'M', 3463), +(204982, 'Miguel', 2010, 'M', 3452), +(204983, 'Timothy', 2010, 'M', 3439), +(204984, 'Giovanni', 2010, 'M', 3430), +(204985, 'Jake', 2010, 'M', 3430), +(204986, 'Steven', 2010, 'M', 3423), +(204987, 'Kaleb', 2010, 'M', 3418), +(204988, 'Caden', 2010, 'M', 3406), +(204989, 'Bryson', 2010, 'M', 3382), +(204990, 'Damian', 2010, 'M', 3355), +(204991, 'Grayson', 2010, 'M', 3353), +(204992, 'Kayden', 2010, 'M', 3292), +(204993, 'Jesse', 2010, 'M', 3268), +(204994, 'Brady', 2010, 'M', 3231), +(204995, 'Ashton', 2010, 'M', 3230), +(204996, 'Richard', 2010, 'M', 3228), +(204997, 'Victor', 2010, 'M', 3167), +(204998, 'Patrick', 2010, 'M', 3125), +(204999, 'Marcus', 2010, 'M', 3119), +(205000, 'Preston', 2010, 'M', 3099), +(205001, 'Joel', 2010, 'M', 3058), +(205002, 'Maxwell', 2010, 'M', 3013), +(205003, 'Santiago', 2010, 'M', 3012), +(205004, 'Ryder', 2010, 'M', 2961), +(205005, 'Edward', 2010, 'M', 2898), +(205006, 'Miles', 2010, 'M', 2864), +(205007, 'Asher', 2010, 'M', 2854), +(205008, 'Hudson', 2010, 'M', 2846), +(205009, 'Devin', 2010, 'M', 2839), +(205010, 'Elias', 2010, 'M', 2822), +(205011, 'Jeremy', 2010, 'M', 2815), +(205012, 'Jonah', 2010, 'M', 2771), +(205013, 'Ivan', 2010, 'M', 2766), +(205014, 'Easton', 2010, 'M', 2710), +(205015, 'Jace', 2010, 'M', 2673), +(205016, 'Oscar', 2010, 'M', 2662), +(205017, 'Collin', 2010, 'M', 2643), +(205018, 'Peyton', 2010, 'M', 2640), +(205019, 'Leonardo', 2010, 'M', 2613), +(205020, 'Cayden', 2010, 'M', 2573), +(205021, 'Gage', 2010, 'M', 2556), +(205022, 'Emmanuel', 2010, 'M', 2545), +(205023, 'Eduardo', 2010, 'M', 2544), +(205024, 'Grant', 2010, 'M', 2537), +(205025, 'Alan', 2010, 'M', 2512), +(205026, 'Conner', 2010, 'M', 2435), +(205027, 'Cody', 2010, 'M', 2433), +(205028, 'Wesley', 2010, 'M', 2424); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(205029, 'Kenneth', 2010, 'M', 2420), +(205030, 'Mark', 2010, 'M', 2410), +(205031, 'Malachi', 2010, 'M', 2402), +(205032, 'Nicolas', 2010, 'M', 2389), +(205033, 'Seth', 2010, 'M', 2375), +(205034, 'George', 2010, 'M', 2367), +(205035, 'Kaiden', 2010, 'M', 2346), +(205036, 'Trevor', 2010, 'M', 2317), +(205037, 'Jude', 2010, 'M', 2298), +(205038, 'Jorge', 2010, 'M', 2293), +(205039, 'Derek', 2010, 'M', 2292), +(205040, 'Braxton', 2010, 'M', 2287), +(205041, 'Sawyer', 2010, 'M', 2217), +(205042, 'Jaxson', 2010, 'M', 2212), +(205043, 'Jaiden', 2010, 'M', 2203), +(205044, 'Omar', 2010, 'M', 2165), +(205045, 'Tanner', 2010, 'M', 2132), +(205046, 'Paul', 2010, 'M', 2120), +(205047, 'Travis', 2010, 'M', 2120), +(205048, 'Camden', 2010, 'M', 2102), +(205049, 'Maddox', 2010, 'M', 2102), +(205050, 'Andres', 2010, 'M', 2086), +(205051, 'Cristian', 2010, 'M', 2069), +(205052, 'Rylan', 2010, 'M', 2054), +(205053, 'Josue', 2010, 'M', 1996), +(205054, 'Bradley', 2010, 'M', 1991), +(205055, 'Roman', 2010, 'M', 1987), +(205056, 'Axel', 2010, 'M', 1970), +(205057, 'Garrett', 2010, 'M', 1959), +(205058, 'Fernando', 2010, 'M', 1950), +(205059, 'Javier', 2010, 'M', 1948), +(205060, 'Leo', 2010, 'M', 1940), +(205061, 'Damien', 2010, 'M', 1934), +(205062, 'Peter', 2010, 'M', 1929), +(205063, 'Abraham', 2010, 'M', 1923), +(205064, 'Ricardo', 2010, 'M', 1881), +(205065, 'Francisco', 2010, 'M', 1875), +(205066, 'Drake', 2010, 'M', 1871), +(205067, 'Shane', 2010, 'M', 1869), +(205068, 'Lincoln', 2010, 'M', 1868), +(205069, 'Erick', 2010, 'M', 1858), +(205070, 'Cesar', 2010, 'M', 1818), +(205071, 'Stephen', 2010, 'M', 1814), +(205072, 'Jaylen', 2010, 'M', 1806), +(205073, 'Tucker', 2010, 'M', 1751), +(205074, 'Kai', 2010, 'M', 1742), +(205075, 'Landen', 2010, 'M', 1707), +(205076, 'Braden', 2010, 'M', 1706), +(205077, 'Mario', 2010, 'M', 1705), +(205078, 'Edwin', 2010, 'M', 1698), +(205079, 'Avery', 2010, 'M', 1697), +(205080, 'Manuel', 2010, 'M', 1696), +(205081, 'Trenton', 2010, 'M', 1687), +(205082, 'Ezekiel', 2010, 'M', 1681), +(205083, 'Kingston', 2010, 'M', 1672), +(205084, 'Calvin', 2010, 'M', 1657), +(205085, 'Johnathan', 2010, 'M', 1646), +(205086, 'Edgar', 2010, 'M', 1643), +(205087, 'Donovan', 2010, 'M', 1640), +(205088, 'Silas', 2010, 'M', 1628), +(205089, 'Israel', 2010, 'M', 1624), +(205090, 'Alexis', 2010, 'M', 1621), +(205091, 'Mateo', 2010, 'M', 1621), +(205092, 'Jeffrey', 2010, 'M', 1615), +(205093, 'Weston', 2010, 'M', 1582), +(205094, 'Raymond', 2010, 'M', 1579), +(205095, 'Hector', 2010, 'M', 1562), +(205096, 'Spencer', 2010, 'M', 1551), +(205097, 'Andre', 2010, 'M', 1540), +(205098, 'Brendan', 2010, 'M', 1525), +(205099, 'Lukas', 2010, 'M', 1524), +(205100, 'Zion', 2010, 'M', 1524), +(205101, 'Griffin', 2010, 'M', 1517), +(205102, 'Harrison', 2010, 'M', 1490), +(205103, 'Maximus', 2010, 'M', 1487), +(205104, 'Andy', 2010, 'M', 1475), +(205105, 'Braylon', 2010, 'M', 1471), +(205106, 'Tyson', 2010, 'M', 1469), +(205107, 'Shawn', 2010, 'M', 1462), +(205108, 'Zane', 2010, 'M', 1459), +(205109, 'Emiliano', 2010, 'M', 1449), +(205110, 'Sergio', 2010, 'M', 1449), +(205111, 'Ezra', 2010, 'M', 1446), +(205112, 'Jared', 2010, 'M', 1439), +(205113, 'Chance', 2010, 'M', 1429), +(205114, 'Keegan', 2010, 'M', 1429), +(205115, 'Charlie', 2010, 'M', 1428), +(205116, 'Drew', 2010, 'M', 1412), +(205117, 'Troy', 2010, 'M', 1382), +(205118, 'Greyson', 2010, 'M', 1366), +(205119, 'Simon', 2010, 'M', 1366), +(205120, 'Clayton', 2010, 'M', 1359), +(205121, 'Corbin', 2010, 'M', 1358), +(205122, 'Myles', 2010, 'M', 1352), +(205123, 'Xander', 2010, 'M', 1348), +(205124, 'Dante', 2010, 'M', 1336), +(205125, 'Erik', 2010, 'M', 1336), +(205126, 'Martin', 2010, 'M', 1331), +(205127, 'Rafael', 2010, 'M', 1331), +(205128, 'Theodore', 2010, 'M', 1327), +(205129, 'Dalton', 2010, 'M', 1326), +(205130, 'Dominick', 2010, 'M', 1325), +(205131, 'Cash', 2010, 'M', 1319), +(205132, 'Skyler', 2010, 'M', 1319), +(205133, 'Marco', 2010, 'M', 1309), +(205134, 'Ty', 2010, 'M', 1294), +(205135, 'Caiden', 2010, 'M', 1293), +(205136, 'Johnny', 2010, 'M', 1291), +(205137, 'Gregory', 2010, 'M', 1286), +(205138, 'Kyler', 2010, 'M', 1284), +(205139, 'Brennan', 2010, 'M', 1278), +(205140, 'Emmett', 2010, 'M', 1276), +(205141, 'Luca', 2010, 'M', 1275), +(205142, 'Roberto', 2010, 'M', 1272), +(205143, 'Declan', 2010, 'M', 1256), +(205144, 'Kameron', 2010, 'M', 1252), +(205145, 'Quinn', 2010, 'M', 1236), +(205146, 'Jameson', 2010, 'M', 1227), +(205147, 'Amir', 2010, 'M', 1217), +(205148, 'Bennett', 2010, 'M', 1209), +(205149, 'Colby', 2010, 'M', 1207), +(205150, 'Pedro', 2010, 'M', 1192), +(205151, 'Emanuel', 2010, 'M', 1190), +(205152, 'Graham', 2010, 'M', 1189), +(205153, 'Malik', 2010, 'M', 1188), +(205154, 'Dean', 2010, 'M', 1180), +(205155, 'Jasper', 2010, 'M', 1179), +(205156, 'Everett', 2010, 'M', 1177), +(205157, 'Aden', 2010, 'M', 1171), +(205158, 'Dawson', 2010, 'M', 1167), +(205159, 'Angelo', 2010, 'M', 1156), +(205160, 'Reid', 2010, 'M', 1145), +(205161, 'Dakota', 2010, 'M', 1130), +(205162, 'Abel', 2010, 'M', 1124), +(205163, 'Zander', 2010, 'M', 1113), +(205164, 'Paxton', 2010, 'M', 1110), +(205165, 'Judah', 2010, 'M', 1108), +(205166, 'Ruben', 2010, 'M', 1101), +(205167, 'Jakob', 2010, 'M', 1096), +(205168, 'Jayce', 2010, 'M', 1093), +(205169, 'Finn', 2010, 'M', 1091), +(205170, 'Elliot', 2010, 'M', 1078), +(205171, 'Frank', 2010, 'M', 1072), +(205172, 'Lane', 2010, 'M', 1061), +(205173, 'Dillon', 2010, 'M', 1052), +(205174, 'Fabian', 2010, 'M', 1041), +(205175, 'Brock', 2010, 'M', 1037), +(205176, 'Derrick', 2010, 'M', 1035), +(205177, 'Emilio', 2010, 'M', 1033), +(205178, 'Ryker', 2010, 'M', 1030), +(205179, 'Joaquin', 2010, 'M', 1029), +(205180, 'Marcos', 2010, 'M', 1027), +(205181, 'Devon', 2010, 'M', 1022), +(205182, 'Anderson', 2010, 'M', 1019), +(205183, 'Grady', 2010, 'M', 1015), +(205184, 'Elliott', 2010, 'M', 1014), +(205185, 'Holden', 2010, 'M', 1010), +(205186, 'Corey', 2010, 'M', 1006), +(205187, 'Amari', 2010, 'M', 1004), +(205188, 'Dallas', 2010, 'M', 1000), +(205189, 'Danny', 2010, 'M', 997), +(205190, 'Cruz', 2010, 'M', 990), +(205191, 'Allen', 2010, 'M', 967), +(205192, 'Lorenzo', 2010, 'M', 964), +(205193, 'Trey', 2010, 'M', 964), +(205194, 'Leland', 2010, 'M', 959), +(205195, 'Armando', 2010, 'M', 955), +(205196, 'Rowan', 2010, 'M', 954), +(205197, 'Taylor', 2010, 'M', 953), +(205198, 'Cade', 2010, 'M', 949), +(205199, 'Felix', 2010, 'M', 946), +(205200, 'Colt', 2010, 'M', 944), +(205201, 'Adan', 2010, 'M', 942), +(205202, 'Tristen', 2010, 'M', 938), +(205203, 'Julius', 2010, 'M', 933), +(205204, 'Jayson', 2010, 'M', 931), +(205205, 'Nehemiah', 2010, 'M', 930), +(205206, 'Zayden', 2010, 'M', 927), +(205207, 'Julio', 2010, 'M', 926), +(205208, 'Raul', 2010, 'M', 925), +(205209, 'Darius', 2010, 'M', 924), +(205210, 'Braydon', 2010, 'M', 923), +(205211, 'Louis', 2010, 'M', 914), +(205212, 'Ronald', 2010, 'M', 909), +(205213, 'Trent', 2010, 'M', 896), +(205214, 'Payton', 2010, 'M', 888), +(205215, 'Keith', 2010, 'M', 886), +(205216, 'Randy', 2010, 'M', 881), +(205217, 'Jax', 2010, 'M', 879), +(205218, 'Enrique', 2010, 'M', 878), +(205219, 'Desmond', 2010, 'M', 877), +(205220, 'Jett', 2010, 'M', 871), +(205221, 'Scott', 2010, 'M', 871), +(205222, 'Dustin', 2010, 'M', 865), +(205223, 'Gerardo', 2010, 'M', 864), +(205224, 'Phillip', 2010, 'M', 862), +(205225, 'Beckett', 2010, 'M', 859), +(205226, 'Ali', 2010, 'M', 849), +(205227, 'Romeo', 2010, 'M', 847), +(205228, 'Kellen', 2010, 'M', 838), +(205229, 'Cohen', 2010, 'M', 835), +(205230, 'Pablo', 2010, 'M', 830), +(205231, 'Ismael', 2010, 'M', 822), +(205232, 'Jaime', 2010, 'M', 814), +(205233, 'Larry', 2010, 'M', 810), +(205234, 'Kellan', 2010, 'M', 807), +(205235, 'Brycen', 2010, 'M', 803), +(205236, 'Keaton', 2010, 'M', 803), +(205237, 'Braylen', 2010, 'M', 796), +(205238, 'Gunner', 2010, 'M', 796), +(205239, 'Brayan', 2010, 'M', 787), +(205240, 'Landyn', 2010, 'M', 784), +(205241, 'Walter', 2010, 'M', 780), +(205242, 'Jimmy', 2010, 'M', 770), +(205243, 'Marshall', 2010, 'M', 768), +(205244, 'Beau', 2010, 'M', 766), +(205245, 'Donald', 2010, 'M', 761), +(205246, 'Esteban', 2010, 'M', 760), +(205247, 'Phoenix', 2010, 'M', 760), +(205248, 'Saul', 2010, 'M', 760), +(205249, 'Karson', 2010, 'M', 759), +(205250, 'Reed', 2010, 'M', 757), +(205251, 'Brenden', 2010, 'M', 751), +(205252, 'Jerry', 2010, 'M', 746), +(205253, 'Tony', 2010, 'M', 746), +(205254, 'Kade', 2010, 'M', 742), +(205255, 'Jamari', 2010, 'M', 740), +(205256, 'Mitchell', 2010, 'M', 737), +(205257, 'Colten', 2010, 'M', 729), +(205258, 'Arthur', 2010, 'M', 727), +(205259, 'Brett', 2010, 'M', 727), +(205260, 'Rocco', 2010, 'M', 725), +(205261, 'Dennis', 2010, 'M', 723), +(205262, 'Jalen', 2010, 'M', 719), +(205263, 'Tate', 2010, 'M', 717), +(205264, 'Chris', 2010, 'M', 715), +(205265, 'Quentin', 2010, 'M', 713), +(205266, 'Titus', 2010, 'M', 712), +(205267, 'Casey', 2010, 'M', 705), +(205268, 'King', 2010, 'M', 703), +(205269, 'Izaiah', 2010, 'M', 701), +(205270, 'Brooks', 2010, 'M', 699), +(205271, 'Mathew', 2010, 'M', 699), +(205272, 'Philip', 2010, 'M', 697), +(205273, 'Russell', 2010, 'M', 697), +(205274, 'Darren', 2010, 'M', 695), +(205275, 'Albert', 2010, 'M', 694), +(205276, 'Zackary', 2010, 'M', 693), +(205277, 'Gael', 2010, 'M', 691), +(205278, 'Braeden', 2010, 'M', 688), +(205279, 'Dane', 2010, 'M', 684), +(205280, 'Gustavo', 2010, 'M', 683), +(205281, 'Jay', 2010, 'M', 679), +(205282, 'Cullen', 2010, 'M', 677), +(205283, 'Kolton', 2010, 'M', 677), +(205284, 'Rodrigo', 2010, 'M', 673), +(205285, 'Alberto', 2010, 'M', 670), +(205286, 'Leon', 2010, 'M', 666), +(205287, 'Damon', 2010, 'M', 665), +(205288, 'Alec', 2010, 'M', 664), +(205289, 'Davis', 2010, 'M', 657), +(205290, 'Arturo', 2010, 'M', 656), +(205291, 'Waylon', 2010, 'M', 655), +(205292, 'Milo', 2010, 'M', 654), +(205293, 'Moises', 2010, 'M', 651), +(205294, 'Curtis', 2010, 'M', 649), +(205295, 'Walker', 2010, 'M', 649), +(205296, 'August', 2010, 'M', 646), +(205297, 'Kobe', 2010, 'M', 643), +(205298, 'Matteo', 2010, 'M', 641), +(205299, 'Emerson', 2010, 'M', 635), +(205300, 'Marvin', 2010, 'M', 633), +(205301, 'Mauricio', 2010, 'M', 633), +(205302, 'Maximilian', 2010, 'M', 632), +(205303, 'Orlando', 2010, 'M', 631), +(205304, 'River', 2010, 'M', 631), +(205305, 'Reece', 2010, 'M', 630), +(205306, 'Issac', 2010, 'M', 626), +(205307, 'Bryant', 2010, 'M', 620), +(205308, 'Yahir', 2010, 'M', 617), +(205309, 'Uriel', 2010, 'M', 615), +(205310, 'Hugo', 2010, 'M', 614), +(205311, 'Mohamed', 2010, 'M', 605), +(205312, 'Enzo', 2010, 'M', 602), +(205313, 'Karter', 2010, 'M', 602), +(205314, 'Lance', 2010, 'M', 602), +(205315, 'Porter', 2010, 'M', 600), +(205316, 'Zachariah', 2010, 'M', 600), +(205317, 'Maurice', 2010, 'M', 597), +(205318, 'Ricky', 2010, 'M', 595), +(205319, 'Leonel', 2010, 'M', 594), +(205320, 'Joe', 2010, 'M', 592), +(205321, 'Johan', 2010, 'M', 592), +(205322, 'Dexter', 2010, 'M', 591), +(205323, 'Nikolas', 2010, 'M', 590), +(205324, 'Jonas', 2010, 'M', 589), +(205325, 'Justice', 2010, 'M', 585), +(205326, 'Salvador', 2010, 'M', 581), +(205327, 'Knox', 2010, 'M', 579), +(205328, 'Lawrence', 2010, 'M', 579), +(205329, 'Gideon', 2010, 'M', 576), +(205330, 'Alfredo', 2010, 'M', 572), +(205331, 'Maximiliano', 2010, 'M', 570), +(205332, 'Talon', 2010, 'M', 569), +(205333, 'Byron', 2010, 'M', 565), +(205334, 'Nickolas', 2010, 'M', 565), +(205335, 'Solomon', 2010, 'M', 562), +(205336, 'Orion', 2010, 'M', 560), +(205337, 'Braiden', 2010, 'M', 556), +(205338, 'Alijah', 2010, 'M', 552), +(205339, 'Kristopher', 2010, 'M', 552), +(205340, 'Sam', 2010, 'M', 550), +(205341, 'Rhys', 2010, 'M', 549), +(205342, 'Jacoby', 2010, 'M', 547), +(205343, 'Jamarion', 2010, 'M', 547), +(205344, 'Davion', 2010, 'M', 545), +(205345, 'Gary', 2010, 'M', 545), +(205346, 'Pierce', 2010, 'M', 544), +(205347, 'Kason', 2010, 'M', 543), +(205348, 'Mekhi', 2010, 'M', 543), +(205349, 'Cason', 2010, 'M', 542), +(205350, 'Noel', 2010, 'M', 542), +(205351, 'Ramon', 2010, 'M', 541), +(205352, 'Shaun', 2010, 'M', 540), +(205353, 'Warren', 2010, 'M', 536), +(205354, 'Douglas', 2010, 'M', 533), +(205355, 'Reese', 2010, 'M', 533), +(205356, 'Cyrus', 2010, 'M', 531), +(205357, 'Armani', 2010, 'M', 530), +(205358, 'Ibrahim', 2010, 'M', 530), +(205359, 'Quinton', 2010, 'M', 530), +(205360, 'Ernesto', 2010, 'M', 529), +(205361, 'Jaydon', 2010, 'M', 527), +(205362, 'Isaias', 2010, 'M', 526), +(205363, 'Frederick', 2010, 'M', 525), +(205364, 'Chandler', 2010, 'M', 524), +(205365, 'Ryland', 2010, 'M', 523), +(205366, 'Terry', 2010, 'M', 520), +(205367, 'Deandre', 2010, 'M', 518), +(205368, 'Ari', 2010, 'M', 516), +(205369, 'Jamison', 2010, 'M', 515), +(205370, 'Dorian', 2010, 'M', 514), +(205371, 'Khalil', 2010, 'M', 513), +(205372, 'Moses', 2010, 'M', 513), +(205373, 'Franklin', 2010, 'M', 510), +(205374, 'London', 2010, 'M', 510), +(205375, 'Muhammad', 2010, 'M', 510), +(205376, 'Maverick', 2010, 'M', 509), +(205377, 'Ronan', 2010, 'M', 507), +(205378, 'Amare', 2010, 'M', 505), +(205379, 'Eddie', 2010, 'M', 503), +(205380, 'Roger', 2010, 'M', 503), +(205381, 'Nasir', 2010, 'M', 502), +(205382, 'Aldo', 2010, 'M', 501), +(205383, 'Adriel', 2010, 'M', 500), +(205384, 'Brodie', 2010, 'M', 500), +(205385, 'Demetrius', 2010, 'M', 500), +(205386, 'Kendrick', 2010, 'M', 497), +(205387, 'Morgan', 2010, 'M', 497), +(205388, 'Kelvin', 2010, 'M', 496), +(205389, 'Prince', 2010, 'M', 496), +(205390, 'Malcolm', 2010, 'M', 495), +(205391, 'Tobias', 2010, 'M', 495), +(205392, 'Ahmad', 2010, 'M', 494), +(205393, 'Trace', 2010, 'M', 493), +(205394, 'Keagan', 2010, 'M', 492), +(205395, 'Alvin', 2010, 'M', 490), +(205396, 'Giovani', 2010, 'M', 490), +(205397, 'Skylar', 2010, 'M', 490), +(205398, 'Conor', 2010, 'M', 488), +(205399, 'Abram', 2010, 'M', 487), +(205400, 'Camron', 2010, 'M', 487), +(205401, 'Bruce', 2010, 'M', 485), +(205402, 'Jonathon', 2010, 'M', 485), +(205403, 'Quincy', 2010, 'M', 484), +(205404, 'Noe', 2010, 'M', 480), +(205405, 'Rohan', 2010, 'M', 478), +(205406, 'Ahmed', 2010, 'M', 475), +(205407, 'Nathanael', 2010, 'M', 475), +(205408, 'Kamari', 2010, 'M', 469), +(205409, 'Kieran', 2010, 'M', 469), +(205410, 'Kristian', 2010, 'M', 468), +(205411, 'Barrett', 2010, 'M', 467), +(205412, 'Finnegan', 2010, 'M', 467), +(205413, 'Remington', 2010, 'M', 466), +(205414, 'Boston', 2010, 'M', 461), +(205415, 'Chad', 2010, 'M', 461), +(205416, 'Uriah', 2010, 'M', 459), +(205417, 'Xzavier', 2010, 'M', 459), +(205418, 'Archer', 2010, 'M', 458), +(205419, 'Micheal', 2010, 'M', 458), +(205420, 'Bobby', 2010, 'M', 457), +(205421, 'Guillermo', 2010, 'M', 457), +(205422, 'Gunnar', 2010, 'M', 457), +(205423, 'Rodney', 2010, 'M', 457), +(205424, 'Moshe', 2010, 'M', 455), +(205425, 'Kamden', 2010, 'M', 454), +(205426, 'Roy', 2010, 'M', 453), +(205427, 'Julien', 2010, 'M', 452), +(205428, 'Melvin', 2010, 'M', 451), +(205429, 'Aaden', 2010, 'M', 450), +(205430, 'Atticus', 2010, 'M', 450), +(205431, 'Ulises', 2010, 'M', 450), +(205432, 'Kane', 2010, 'M', 449), +(205433, 'Kasen', 2010, 'M', 448), +(205434, 'Lucian', 2010, 'M', 447), +(205435, 'Carl', 2010, 'M', 446), +(205436, 'Jeffery', 2010, 'M', 446), +(205437, 'Ezequiel', 2010, 'M', 445), +(205438, 'Javon', 2010, 'M', 444), +(205439, 'Terrance', 2010, 'M', 444), +(205440, 'Jadon', 2010, 'M', 443), +(205441, 'Malakai', 2010, 'M', 442), +(205442, 'Nelson', 2010, 'M', 442), +(205443, 'Harley', 2010, 'M', 439), +(205444, 'Aarav', 2010, 'M', 438), +(205445, 'Jon', 2010, 'M', 438), +(205446, 'Triston', 2010, 'M', 438), +(205447, 'Cory', 2010, 'M', 436), +(205448, 'Kian', 2010, 'M', 435), +(205449, 'Alonzo', 2010, 'M', 434), +(205450, 'Marc', 2010, 'M', 433), +(205451, 'Asa', 2010, 'M', 431), +(205452, 'Gianni', 2010, 'M', 430), +(205453, 'Kole', 2010, 'M', 428), +(205454, 'Wilson', 2010, 'M', 428), +(205455, 'Dayton', 2010, 'M', 427), +(205456, 'Jermaine', 2010, 'M', 427), +(205457, 'Terrence', 2010, 'M', 425), +(205458, 'Felipe', 2010, 'M', 423), +(205459, 'Kendall', 2010, 'M', 423), +(205460, 'Kale', 2010, 'M', 422), +(205461, 'Nico', 2010, 'M', 422), +(205462, 'Isiah', 2010, 'M', 421), +(205463, 'Dominik', 2010, 'M', 420), +(205464, 'Tommy', 2010, 'M', 420), +(205465, 'Finley', 2010, 'M', 419), +(205466, 'Cristopher', 2010, 'M', 417), +(205467, 'Tristin', 2010, 'M', 417), +(205468, 'Cannon', 2010, 'M', 414), +(205469, 'Jase', 2010, 'M', 414), +(205470, 'Ariel', 2010, 'M', 413), +(205471, 'Kash', 2010, 'M', 413), +(205472, 'Madden', 2010, 'M', 413), +(205473, 'Mohammed', 2010, 'M', 413), +(205474, 'Wade', 2010, 'M', 413), +(205475, 'Marlon', 2010, 'M', 411), +(205476, 'Rhett', 2010, 'M', 411), +(205477, 'Layne', 2010, 'M', 410), +(205478, 'Memphis', 2010, 'M', 406), +(205479, 'Jessie', 2010, 'M', 405), +(205480, 'Jamal', 2010, 'M', 404), +(205481, 'Joey', 2010, 'M', 404), +(205482, 'Nash', 2010, 'M', 404), +(205483, 'Allan', 2010, 'M', 403), +(205484, 'Reginald', 2010, 'M', 403), +(205485, 'Ace', 2010, 'M', 400), +(205486, 'Lawson', 2010, 'M', 400), +(205487, 'Giovanny', 2010, 'M', 399), +(205488, 'Zaiden', 2010, 'M', 399), +(205489, 'Aron', 2010, 'M', 398), +(205490, 'Korbin', 2010, 'M', 396), +(205491, 'Rashad', 2010, 'M', 396), +(205492, 'Will', 2010, 'M', 396), +(205493, 'Billy', 2010, 'M', 390), +(205494, 'Urijah', 2010, 'M', 390), +(205495, 'Leonard', 2010, 'M', 388), +(205496, 'Rene', 2010, 'M', 388), +(205497, 'Brennen', 2010, 'M', 386), +(205498, 'Branden', 2010, 'M', 385), +(205499, 'Kenny', 2010, 'M', 385), +(205500, 'Kody', 2010, 'M', 384), +(205501, 'Tomas', 2010, 'M', 384), +(205502, 'Willie', 2010, 'M', 384), +(205503, 'Brendon', 2010, 'M', 381), +(205504, 'Alonso', 2010, 'M', 380), +(205505, 'Blaine', 2010, 'M', 380), +(205506, 'Aydan', 2010, 'M', 379), +(205507, 'Darian', 2010, 'M', 379), +(205508, 'Arjun', 2010, 'M', 377), +(205509, 'Raiden', 2010, 'M', 377), +(205510, 'Sincere', 2010, 'M', 377), +(205511, 'Terrell', 2010, 'M', 377), +(205512, 'Layton', 2010, 'M', 374), +(205513, 'Marquis', 2010, 'M', 374), +(205514, 'Channing', 2010, 'M', 373), +(205515, 'Iker', 2010, 'M', 372), +(205516, 'Chace', 2010, 'M', 371), +(205517, 'Mohammad', 2010, 'M', 370), +(205518, 'Jordyn', 2010, 'M', 369), +(205519, 'Messiah', 2010, 'M', 369), +(205520, 'Sullivan', 2010, 'M', 369), +(205521, 'Brent', 2010, 'M', 368), +(205522, 'Omari', 2010, 'M', 368), +(205523, 'Santino', 2010, 'M', 367), +(205524, 'Deshawn', 2010, 'M', 366), +(205525, 'Raphael', 2010, 'M', 366), +(205526, 'Zechariah', 2010, 'M', 366), +(205527, 'Harry', 2010, 'M', 364), +(205528, 'Jaylin', 2010, 'M', 364), +(205529, 'Ray', 2010, 'M', 364), +(205530, 'Elisha', 2010, 'M', 363), +(205531, 'Jefferson', 2010, 'M', 363), +(205532, 'Luciano', 2010, 'M', 363), +(205533, 'Craig', 2010, 'M', 361), +(205534, 'Yandel', 2010, 'M', 360), +(205535, 'Bently', 2010, 'M', 359), +(205536, 'Tripp', 2010, 'M', 359), +(205537, 'Tristian', 2010, 'M', 359), +(205538, 'Aydin', 2010, 'M', 358), +(205539, 'Francis', 2010, 'M', 358), +(205540, 'Toby', 2010, 'M', 356), +(205541, 'Ronnie', 2010, 'M', 355), +(205542, 'Kylan', 2010, 'M', 354), +(205543, 'Semaj', 2010, 'M', 354), +(205544, 'Alexzander', 2010, 'M', 353), +(205545, 'Lee', 2010, 'M', 353), +(205546, 'Alessandro', 2010, 'M', 351), +(205547, 'Gerald', 2010, 'M', 348), +(205548, 'Jadiel', 2010, 'M', 348), +(205549, 'Dwayne', 2010, 'M', 347), +(205550, 'Javion', 2010, 'M', 347), +(205551, 'Stanley', 2010, 'M', 346), +(205552, 'Markus', 2010, 'M', 345), +(205553, 'Kolby', 2010, 'M', 343), +(205554, 'Neil', 2010, 'M', 342), +(205555, 'Davin', 2010, 'M', 341), +(205556, 'Harper', 2010, 'M', 341), +(205557, 'Teagan', 2010, 'M', 341), +(205558, 'Jamie', 2010, 'M', 340), +(205559, 'Makai', 2010, 'M', 340), +(205560, 'Cale', 2010, 'M', 339), +(205561, 'Ben', 2010, 'M', 336), +(205562, 'Deacon', 2010, 'M', 336), +(205563, 'Clark', 2010, 'M', 335), +(205564, 'Callen', 2010, 'M', 334), +(205565, 'Damarion', 2010, 'M', 334), +(205566, 'Jairo', 2010, 'M', 334), +(205567, 'Kaeden', 2010, 'M', 334), +(205568, 'Aidyn', 2010, 'M', 333), +(205569, 'Kareem', 2010, 'M', 333), +(205570, 'Damion', 2010, 'M', 332), +(205571, 'Davian', 2010, 'M', 332), +(205572, 'Jamir', 2010, 'M', 331), +(205573, 'Lamar', 2010, 'M', 331), +(205574, 'Rex', 2010, 'M', 331), +(205575, 'Jorden', 2010, 'M', 330), +(205576, 'Case', 2010, 'M', 329), +(205577, 'Duncan', 2010, 'M', 329), +(205578, 'Matias', 2010, 'M', 329), +(205579, 'Jaeden', 2010, 'M', 328), +(205580, 'Vicente', 2010, 'M', 328), +(205581, 'Jasiah', 2010, 'M', 327), +(205582, 'Tyrone', 2010, 'M', 327), +(205583, 'Aryan', 2010, 'M', 326), +(205584, 'Yusuf', 2010, 'M', 324), +(205585, 'Zayne', 2010, 'M', 324), +(205586, 'Lewis', 2010, 'M', 323), +(205587, 'Gavyn', 2010, 'M', 321), +(205588, 'Giancarlo', 2010, 'M', 319), +(205589, 'Rogelio', 2010, 'M', 319), +(205590, 'Rolando', 2010, 'M', 319), +(205591, 'Jensen', 2010, 'M', 318), +(205592, 'Cedric', 2010, 'M', 317), +(205593, 'Osvaldo', 2010, 'M', 317), +(205594, 'Soren', 2010, 'M', 317), +(205595, 'Camren', 2010, 'M', 316), +(205596, 'Luka', 2010, 'M', 316), +(205597, 'Mathias', 2010, 'M', 315), +(205598, 'Ellis', 2010, 'M', 314), +(205599, 'Rylee', 2010, 'M', 314), +(205600, 'Draven', 2010, 'M', 313), +(205601, 'Maxim', 2010, 'M', 313), +(205602, 'Nikolai', 2010, 'M', 313), +(205603, 'Darwin', 2010, 'M', 312), +(205604, 'Bradyn', 2010, 'M', 311), +(205605, 'Brantley', 2010, 'M', 311), +(205606, 'Emery', 2010, 'M', 310), +(205607, 'Zavier', 2010, 'M', 310), +(205608, 'Zackery', 2010, 'M', 309), +(205609, 'Trevon', 2010, 'M', 307), +(205610, 'Jerome', 2010, 'M', 306), +(205611, 'Rudy', 2010, 'M', 306), +(205612, 'Harold', 2010, 'M', 305), +(205613, 'Royce', 2010, 'M', 305), +(205614, 'Alfonso', 2010, 'M', 304), +(205615, 'Daxton', 2010, 'M', 304), +(205616, 'Rory', 2010, 'M', 304), +(205617, 'Beckham', 2010, 'M', 303), +(205618, 'Darrell', 2010, 'M', 303), +(205619, 'Jaylon', 2010, 'M', 303), +(205620, 'Rodolfo', 2010, 'M', 300), +(205621, 'Tatum', 2010, 'M', 300), +(205622, 'Keenan', 2010, 'M', 299), +(205623, 'Sterling', 2010, 'M', 298), +(205624, 'Van', 2010, 'M', 298), +(205625, 'Bruno', 2010, 'M', 297), +(205626, 'Hamza', 2010, 'M', 297), +(205627, 'Ayaan', 2010, 'M', 296), +(205628, 'Gauge', 2010, 'M', 296), +(205629, 'Rayan', 2010, 'M', 295), +(205630, 'Zachery', 2010, 'M', 295), +(205631, 'Heath', 2010, 'M', 293), +(205632, 'Jagger', 2010, 'M', 293), +(205633, 'Killian', 2010, 'M', 293), +(205634, 'Dax', 2010, 'M', 292), +(205635, 'Jovani', 2010, 'M', 292), +(205636, 'Conrad', 2010, 'M', 291), +(205637, 'Junior', 2010, 'M', 291), +(205638, 'Augustus', 2010, 'M', 290), +(205639, 'Misael', 2010, 'M', 290), +(205640, 'Roland', 2010, 'M', 289), +(205641, 'Vance', 2010, 'M', 289), +(205642, 'Alvaro', 2010, 'M', 287), +(205643, 'Bode', 2010, 'M', 287), +(205644, 'Eugene', 2010, 'M', 287), +(205645, 'Ramiro', 2010, 'M', 287), +(205646, 'Yosef', 2010, 'M', 287), +(205647, 'Adrien', 2010, 'M', 286), +(205648, 'Carmelo', 2010, 'M', 286), +(205649, 'Wayne', 2010, 'M', 283), +(205650, 'Kamron', 2010, 'M', 282), +(205651, 'Johnathon', 2010, 'M', 281), +(205652, 'Kolten', 2010, 'M', 281), +(205653, 'Gilberto', 2010, 'M', 280), +(205654, 'Quintin', 2010, 'M', 279), +(205655, 'Steve', 2010, 'M', 279), +(205656, 'Zain', 2010, 'M', 279), +(205657, 'Antoine', 2010, 'M', 278), +(205658, 'Niko', 2010, 'M', 277), +(205659, 'Tyrell', 2010, 'M', 276), +(205660, 'Hassan', 2010, 'M', 275), +(205661, 'Coleman', 2010, 'M', 273), +(205662, 'Valentin', 2010, 'M', 273), +(205663, 'Bronson', 2010, 'M', 272), +(205664, 'Elian', 2010, 'M', 272), +(205665, 'Frankie', 2010, 'M', 272), +(205666, 'Jaxton', 2010, 'M', 272), +(205667, 'Jean', 2010, 'M', 272), +(205668, 'Jeramiah', 2010, 'M', 272), +(205669, 'Clay', 2010, 'M', 271), +(205670, 'Adonis', 2010, 'M', 269), +(205671, 'Jamar', 2010, 'M', 269), +(205672, 'Kymani', 2010, 'M', 269), +(205673, 'Freddy', 2010, 'M', 268), +(205674, 'Kayson', 2010, 'M', 267), +(205675, 'Hank', 2010, 'M', 266), +(205676, 'Efrain', 2010, 'M', 265), +(205677, 'Samir', 2010, 'M', 265), +(205678, 'Abdiel', 2010, 'M', 264), +(205679, 'Ean', 2010, 'M', 264), +(205680, 'Lyric', 2010, 'M', 264), +(205681, 'Sage', 2010, 'M', 264), +(205682, 'Todd', 2010, 'M', 264), +(205683, 'Leandro', 2010, 'M', 263), +(205684, 'Aditya', 2010, 'M', 262), +(205685, 'Konnor', 2010, 'M', 262), +(205686, 'Derick', 2010, 'M', 261), +(205687, 'Deven', 2010, 'M', 261), +(205688, 'Konner', 2010, 'M', 261), +(205689, 'Matthias', 2010, 'M', 261), +(205690, 'Benson', 2010, 'M', 260), +(205691, 'Deangelo', 2010, 'M', 260), +(205692, 'Demarcus', 2010, 'M', 260), +(205693, 'Jovanni', 2010, 'M', 260), +(205694, 'Kyron', 2010, 'M', 259), +(205695, 'Kyson', 2010, 'M', 259), +(205696, 'Sidney', 2010, 'M', 259), +(205697, 'Valentino', 2010, 'M', 259), +(205698, 'Ishaan', 2010, 'M', 258), +(205699, 'Maximo', 2010, 'M', 258), +(205700, 'Dilan', 2010, 'M', 257), +(205701, 'Gilbert', 2010, 'M', 257), +(205702, 'Xavi', 2010, 'M', 257), +(205703, 'Bo', 2010, 'M', 256), +(205704, 'Sylas', 2010, 'M', 256), +(205705, 'Fisher', 2010, 'M', 255), +(205706, 'Jaron', 2010, 'M', 255), +(205707, 'Marcel', 2010, 'M', 255), +(205708, 'Cael', 2010, 'M', 252), +(205709, 'Franco', 2010, 'M', 252), +(205710, 'Alden', 2010, 'M', 251), +(205711, 'Randall', 2010, 'M', 251), +(205712, 'Bentlee', 2010, 'M', 250), +(205713, 'Brogan', 2010, 'M', 250), +(205714, 'Callum', 2010, 'M', 250), +(205715, 'Jerimiah', 2010, 'M', 250), +(205716, 'Justus', 2010, 'M', 250), +(205717, 'Malaki', 2010, 'M', 250), +(205718, 'Agustin', 2010, 'M', 249), +(205719, 'Blaze', 2010, 'M', 249), +(205720, 'Ronin', 2010, 'M', 249), +(205721, 'Westin', 2010, 'M', 249), +(205722, 'Branson', 2010, 'M', 248), +(205723, 'Marcelo', 2010, 'M', 248), +(205724, 'Dominique', 2010, 'M', 247), +(205725, 'Krish', 2010, 'M', 247), +(205726, 'Odin', 2010, 'M', 247), +(205727, 'Rey', 2010, 'M', 247), +(205728, 'Chaim', 2010, 'M', 244), +(205729, 'Brice', 2010, 'M', 243), +(205730, 'Camryn', 2010, 'M', 243), +(205731, 'Jabari', 2010, 'M', 243), +(205732, 'Jair', 2010, 'M', 243), +(205733, 'Samson', 2010, 'M', 243), +(205734, 'Izayah', 2010, 'M', 242), +(205735, 'Jaidyn', 2010, 'M', 242), +(205736, 'Remy', 2010, 'M', 242), +(205737, 'Emmitt', 2010, 'M', 241), +(205738, 'Isai', 2010, 'M', 241), +(205739, 'Mayson', 2010, 'M', 241), +(205740, 'Mike', 2010, 'M', 241), +(205741, 'Tyree', 2010, 'M', 241), +(205742, 'Stefan', 2010, 'M', 240), +(205743, 'Santos', 2010, 'M', 239), +(205744, 'Seamus', 2010, 'M', 239), +(205745, 'Devan', 2010, 'M', 238), +(205746, 'Houston', 2010, 'M', 238), +(205747, 'Jedidiah', 2010, 'M', 238), +(205748, 'Casen', 2010, 'M', 237), +(205749, 'Deon', 2010, 'M', 237), +(205750, 'Fletcher', 2010, 'M', 237), +(205751, 'Major', 2010, 'M', 237), +(205752, 'Winston', 2010, 'M', 237), +(205753, 'Vincenzo', 2010, 'M', 236), +(205754, 'Aedan', 2010, 'M', 235), +(205755, 'Kamryn', 2010, 'M', 235), +(205756, 'Darnell', 2010, 'M', 234), +(205757, 'Gaige', 2010, 'M', 234), +(205758, 'Jaycob', 2010, 'M', 234), +(205759, 'Quinten', 2010, 'M', 234), +(205760, 'Jaxen', 2010, 'M', 232), +(205761, 'Landry', 2010, 'M', 231), +(205762, 'Deegan', 2010, 'M', 230), +(205763, 'Edison', 2010, 'M', 229), +(205764, 'Howard', 2010, 'M', 229), +(205765, 'Humberto', 2010, 'M', 229), +(205766, 'Jadyn', 2010, 'M', 229), +(205767, 'Salvatore', 2010, 'M', 229), +(205768, 'Lionel', 2010, 'M', 228), +(205769, 'Aarush', 2010, 'M', 227), +(205770, 'Carsen', 2010, 'M', 226), +(205771, 'Jaydin', 2010, 'M', 226), +(205772, 'Kadyn', 2010, 'M', 226), +(205773, 'Abdullah', 2010, 'M', 225), +(205774, 'Alfred', 2010, 'M', 225), +(205775, 'Ameer', 2010, 'M', 225), +(205776, 'Bodhi', 2010, 'M', 225), +(205777, 'Davon', 2010, 'M', 224), +(205778, 'Trystan', 2010, 'M', 223), +(205779, 'Eden', 2010, 'M', 222), +(205780, 'Johann', 2010, 'M', 222), +(205781, 'Zaire', 2010, 'M', 222), +(205782, 'Antwan', 2010, 'M', 221), +(205783, 'Lennon', 2010, 'M', 221), +(205784, 'Marley', 2010, 'M', 221), +(205785, 'Theo', 2010, 'M', 221), +(205786, 'Donte', 2010, 'M', 220), +(205787, 'Jayvion', 2010, 'M', 220), +(205788, 'Bridger', 2010, 'M', 219), +(205789, 'Irvin', 2010, 'M', 219), +(205790, 'Yael', 2010, 'M', 219), +(205791, 'Ernest', 2010, 'M', 218), +(205792, 'Leonidas', 2010, 'M', 218), +(205793, 'Ross', 2010, 'M', 218), +(205794, 'Devyn', 2010, 'M', 217), +(205795, 'Hezekiah', 2010, 'M', 217), +(205796, 'Ignacio', 2010, 'M', 217), +(205797, 'Jencarlos', 2010, 'M', 217), +(205798, 'Leighton', 2010, 'M', 217), +(205799, 'Octavio', 2010, 'M', 217), +(205800, 'Rayden', 2010, 'M', 217), +(205801, 'Arnav', 2010, 'M', 216), +(205802, 'Nigel', 2010, 'M', 216), +(205803, 'Hayes', 2010, 'M', 215), +(205804, 'Lennox', 2010, 'M', 215), +(205805, 'Leroy', 2010, 'M', 215), +(205806, 'Vaughn', 2010, 'M', 215), +(205807, 'Anders', 2010, 'M', 214), +(205808, 'Keon', 2010, 'M', 214), +(205809, 'Cortez', 2010, 'M', 213), +(205810, 'Darien', 2010, 'M', 213), +(205811, 'Darryl', 2010, 'M', 213), +(205812, 'Haiden', 2010, 'M', 213), +(205813, 'Koen', 2010, 'M', 213), +(205814, 'Legend', 2010, 'M', 213), +(205815, 'Dario', 2010, 'M', 212), +(205816, 'Jakobe', 2010, 'M', 212), +(205817, 'Sonny', 2010, 'M', 212), +(205818, 'Tyrese', 2010, 'M', 211), +(205819, 'Zaid', 2010, 'M', 211), +(205820, 'Blaise', 2010, 'M', 210), +(205821, 'Damari', 2010, 'M', 210), +(205822, 'Maxx', 2010, 'M', 210), +(205823, 'Pierre', 2010, 'M', 210), +(205824, 'Antony', 2010, 'M', 209), +(205825, 'Menachem', 2010, 'M', 209), +(205826, 'Dangelo', 2010, 'M', 208), +(205827, 'Camdyn', 2010, 'M', 207), +(205828, 'Eliot', 2010, 'M', 207), +(205829, 'Cain', 2010, 'M', 206), +(205830, 'Hugh', 2010, 'M', 206), +(205831, 'Makhi', 2010, 'M', 206), +(205832, 'Pranav', 2010, 'M', 206), +(205833, 'Roderick', 2010, 'M', 206), +(205834, 'Yadiel', 2010, 'M', 206), +(205835, 'Broderick', 2010, 'M', 205), +(205836, 'Zack', 2010, 'M', 205), +(205837, 'Ralph', 2010, 'M', 204), +(205838, 'Demarion', 2010, 'M', 203), +(205839, 'Kael', 2010, 'M', 203), +(205840, 'Lathan', 2010, 'M', 203), +(205841, 'Ronaldo', 2010, 'M', 203), +(205842, 'Yair', 2010, 'M', 203), +(205843, 'Gibson', 2010, 'M', 202), +(205844, 'Keyon', 2010, 'M', 202), +(205845, 'Reagan', 2010, 'M', 202), +(205846, 'Kingsley', 2010, 'M', 201), +(205847, 'Talan', 2010, 'M', 201), +(205848, 'Yehuda', 2010, 'M', 201), +(205849, 'Cristofer', 2010, 'M', 200), +(205850, 'Dashawn', 2010, 'M', 200), +(205851, 'Daylen', 2010, 'M', 200), +(205852, 'Jordon', 2010, 'M', 200), +(205853, 'Sheldon', 2010, 'M', 200), +(205854, 'Clarence', 2010, 'M', 199), +(205855, 'Kadin', 2010, 'M', 199), +(205856, 'Masen', 2010, 'M', 199), +(205857, 'Rowen', 2010, 'M', 199), +(205858, 'Slade', 2010, 'M', 199), +(205859, 'Dillan', 2010, 'M', 198), +(205860, 'Thaddeus', 2010, 'M', 198), +(205861, 'Yousef', 2010, 'M', 198), +(205862, 'Clinton', 2010, 'M', 197), +(205863, 'Truman', 2010, 'M', 197), +(205864, 'Destin', 2010, 'M', 196), +(205865, 'Eliezer', 2010, 'M', 196), +(205866, 'Enoch', 2010, 'M', 196), +(205867, 'Joziah', 2010, 'M', 196), +(205868, 'Keshawn', 2010, 'M', 196), +(205869, 'Reuben', 2010, 'M', 196), +(205870, 'Simeon', 2010, 'M', 196), +(205871, 'Bailey', 2010, 'M', 195), +(205872, 'Camilo', 2010, 'M', 195), +(205873, 'Jaquan', 2010, 'M', 195), +(205874, 'Jaydan', 2010, 'M', 195), +(205875, 'Taj', 2010, 'M', 195), +(205876, 'Cassius', 2010, 'M', 194), +(205877, 'Crew', 2010, 'M', 194), +(205878, 'Yisroel', 2010, 'M', 194), +(205879, 'Anton', 2010, 'M', 193), +(205880, 'Elvis', 2010, 'M', 193), +(205881, 'Maxton', 2010, 'M', 193), +(205882, 'Addison', 2010, 'M', 192), +(205883, 'Nikhil', 2010, 'M', 192), +(205884, 'Elmer', 2010, 'M', 191), +(205885, 'Jovany', 2010, 'M', 191), +(205886, 'Maximillian', 2010, 'M', 191), +(205887, 'Tyshawn', 2010, 'M', 191), +(205888, 'Brecken', 2010, 'M', 190), +(205889, 'Brenton', 2010, 'M', 190), +(205890, 'Corban', 2010, 'M', 189), +(205891, 'Eliseo', 2010, 'M', 189), +(205892, 'Glenn', 2010, 'M', 189), +(205893, 'Jovan', 2010, 'M', 189), +(205894, 'Kamren', 2010, 'M', 189), +(205895, 'Shamar', 2010, 'M', 189), +(205896, 'Cristiano', 2010, 'M', 188), +(205897, 'Dale', 2010, 'M', 188), +(205898, 'Jovanny', 2010, 'M', 188), +(205899, 'Kyan', 2010, 'M', 188), +(205900, 'Miller', 2010, 'M', 188), +(205901, 'Milton', 2010, 'M', 188), +(205902, 'Nixon', 2010, 'M', 188), +(205903, 'Augustine', 2010, 'M', 187), +(205904, 'Boden', 2010, 'M', 187), +(205905, 'Bodie', 2010, 'M', 187), +(205906, 'Campbell', 2010, 'M', 187), +(205907, 'Carlo', 2010, 'M', 187), +(205908, 'Adolfo', 2010, 'M', 186), +(205909, 'German', 2010, 'M', 186), +(205910, 'Harvey', 2010, 'M', 186), +(205911, 'Jamarcus', 2010, 'M', 186), +(205912, 'Zavion', 2010, 'M', 186), +(205913, 'Garrison', 2010, 'M', 185), +(205914, 'Hendrix', 2010, 'M', 185), +(205915, 'Arlo', 2010, 'M', 184), +(205916, 'Emory', 2010, 'M', 184), +(205917, 'Estevan', 2010, 'M', 184), +(205918, 'Siddharth', 2010, 'M', 184), +(205919, 'Anish', 2010, 'M', 183), +(205920, 'Ethen', 2010, 'M', 183), +(205921, 'Juelz', 2010, 'M', 183), +(205922, 'Ulysses', 2010, 'M', 183), +(205923, 'Zeke', 2010, 'M', 183), +(205924, 'Isaak', 2010, 'M', 182), +(205925, 'Maddux', 2010, 'M', 182), +(205926, 'Nathanial', 2010, 'M', 182), +(205927, 'Shmuel', 2010, 'M', 182), +(205928, 'Braedyn', 2010, 'M', 181), +(205929, 'Mack', 2010, 'M', 181), +(205930, 'Marquise', 2010, 'M', 181), +(205931, 'Thiago', 2010, 'M', 181), +(205932, 'Yaakov', 2010, 'M', 181), +(205933, 'Crosby', 2010, 'M', 180), +(205934, 'Dhruv', 2010, 'M', 180), +(205935, 'Dion', 2010, 'M', 180), +(205936, 'Ephraim', 2010, 'M', 180), +(205937, 'Graysen', 2010, 'M', 180), +(205938, 'Karsen', 2010, 'M', 180), +(205939, 'Kohen', 2010, 'M', 180), +(205940, 'Langston', 2010, 'M', 180), +(205941, 'Otto', 2010, 'M', 180), +(205942, 'Andreas', 2010, 'M', 179), +(205943, 'Braedon', 2010, 'M', 179), +(205944, 'Coby', 2010, 'M', 179), +(205945, 'Denzel', 2010, 'M', 179), +(205946, 'Geovanni', 2010, 'M', 179), +(205947, 'Gordon', 2010, 'M', 179), +(205948, 'Rylen', 2010, 'M', 179), +(205949, 'Vladimir', 2010, 'M', 179), +(205950, 'Jamel', 2010, 'M', 178), +(205951, 'Josh', 2010, 'M', 178), +(205952, 'Maksim', 2010, 'M', 178), +(205953, 'Tremaine', 2010, 'M', 178), +(205954, 'Amos', 2010, 'M', 177), +(205955, 'Dariel', 2010, 'M', 177), +(205956, 'Dimitri', 2010, 'M', 177), +(205957, 'Immanuel', 2010, 'M', 177), +(205958, 'Karl', 2010, 'M', 177), +(205959, 'Kasey', 2010, 'M', 177), +(205960, 'Jarrett', 2010, 'M', 176), +(205961, 'Kenyon', 2010, 'M', 176), +(205962, 'Marques', 2010, 'M', 176), +(205963, 'Mustafa', 2010, 'M', 176), +(205964, 'Treyvon', 2010, 'M', 176), +(205965, 'Leif', 2010, 'M', 175), +(205966, 'Reynaldo', 2010, 'M', 175), +(205967, 'Stone', 2010, 'M', 175), +(205968, 'Cayson', 2010, 'M', 174), +(205969, 'Kalel', 2010, 'M', 174), +(205970, 'Lamont', 2010, 'M', 174), +(205971, 'Nick', 2010, 'M', 174), +(205972, 'Trevin', 2010, 'M', 174), +(205973, 'Turner', 2010, 'M', 174), +(205974, 'Briar', 2010, 'M', 173), +(205975, 'Marcello', 2010, 'M', 173), +(205976, 'Coen', 2010, 'M', 172), +(205977, 'Princeton', 2010, 'M', 172), +(205978, 'Donavan', 2010, 'M', 171), +(205979, 'Jesiah', 2010, 'M', 171), +(205980, 'Kayleb', 2010, 'M', 171), +(205981, 'Bernard', 2010, 'M', 170), +(205982, 'Leeland', 2010, 'M', 170), +(205983, 'Mikel', 2010, 'M', 170), +(205984, 'Jacobi', 2010, 'M', 169), +(205985, 'Lucien', 2010, 'M', 169), +(205986, 'Rishi', 2010, 'M', 169), +(205987, 'Tyce', 2010, 'M', 169), +(205988, 'Chaz', 2010, 'M', 168), +(205989, 'Jericho', 2010, 'M', 168), +(205990, 'Savion', 2010, 'M', 168), +(205991, 'Brennon', 2010, 'M', 167), +(205992, 'Kamarion', 2010, 'M', 167), +(205993, 'Maison', 2010, 'M', 167), +(205994, 'Jayvon', 2010, 'M', 166), +(205995, 'Kooper', 2010, 'M', 166), +(205996, 'Benton', 2010, 'M', 165), +(205997, 'Bowen', 2010, 'M', 165), +(205998, 'Said', 2010, 'M', 165), +(205999, 'Eddy', 2010, 'M', 164), +(206000, 'Fredrick', 2010, 'M', 164), +(206001, 'Haven', 2010, 'M', 164), +(206002, 'Nestor', 2010, 'M', 164), +(206003, 'Treyton', 2010, 'M', 164), +(206004, 'Bishop', 2010, 'M', 163), +(206005, 'Braylin', 2010, 'M', 163), +(206006, 'Canaan', 2010, 'M', 163), +(206007, 'Keven', 2010, 'M', 163), +(206008, 'Reilly', 2010, 'M', 163), +(206009, 'Abner', 2010, 'M', 162), +(206010, 'Gaven', 2010, 'M', 162), +(206011, 'Jermiah', 2010, 'M', 162), +(206012, 'Keanu', 2010, 'M', 162), +(206013, 'Mariano', 2010, 'M', 162), +(206014, 'Mordechai', 2010, 'M', 162), +(206015, 'Rocky', 2010, 'M', 162), +(206016, 'Forrest', 2010, 'M', 161), +(206017, 'Jaedyn', 2010, 'M', 161), +(206018, 'Jaylan', 2010, 'M', 161), +(206019, 'Magnus', 2010, 'M', 161), +(206020, 'Rigoberto', 2010, 'M', 161), +(206021, 'Ryley', 2010, 'M', 161), +(206022, 'Thatcher', 2010, 'M', 161), +(206023, 'Baylor', 2010, 'M', 160), +(206024, 'Nathen', 2010, 'M', 160), +(206025, 'Stephan', 2010, 'M', 160), +(206026, 'Gino', 2010, 'M', 159), +(206027, 'Jaren', 2010, 'M', 159), +(206028, 'Titan', 2010, 'M', 159), +(206029, 'Amarion', 2010, 'M', 158), +(206030, 'Austyn', 2010, 'M', 158), +(206031, 'Kelton', 2010, 'M', 158), +(206032, 'Kennedy', 2010, 'M', 158), +(206033, 'Lucca', 2010, 'M', 158), +(206034, 'Shimon', 2010, 'M', 158), +(206035, 'Vince', 2010, 'M', 158), +(206036, 'Desean', 2010, 'M', 157), +(206037, 'Guy', 2010, 'M', 157), +(206038, 'Harlan', 2010, 'M', 157), +(206039, 'Kylen', 2010, 'M', 157), +(206040, 'Shiloh', 2010, 'M', 157), +(206041, 'Tayden', 2010, 'M', 157), +(206042, 'Chevy', 2010, 'M', 156), +(206043, 'Jaleel', 2010, 'M', 156), +(206044, 'Briggs', 2010, 'M', 154), +(206045, 'Jai', 2010, 'M', 154), +(206046, 'Benny', 2010, 'M', 153), +(206047, 'Callan', 2010, 'M', 153), +(206048, 'Javen', 2010, 'M', 153), +(206049, 'Karim', 2010, 'M', 153), +(206050, 'Sammy', 2010, 'M', 153), +(206051, 'Vihaan', 2010, 'M', 153), +(206052, 'Brayson', 2010, 'M', 152), +(206053, 'Brysen', 2010, 'M', 152), +(206054, 'Haden', 2010, 'M', 152), +(206055, 'Jullian', 2010, 'M', 152), +(206056, 'Kyran', 2010, 'M', 152), +(206057, 'Zyon', 2010, 'M', 152), +(206058, 'Armaan', 2010, 'M', 151), +(206059, 'Colson', 2010, 'M', 151), +(206060, 'Domenic', 2010, 'M', 151), +(206061, 'Jarvis', 2010, 'M', 151), +(206062, 'Arian', 2010, 'M', 150), +(206063, 'Austen', 2010, 'M', 150), +(206064, 'Devonte', 2010, 'M', 150), +(206065, 'Joan', 2010, 'M', 150), +(206066, 'Landin', 2010, 'M', 150), +(206067, 'Tobin', 2010, 'M', 150), +(206068, 'Darrius', 2010, 'M', 149), +(206069, 'Markell', 2010, 'M', 149), +(206070, 'Shlomo', 2010, 'M', 149), +(206071, 'Zaden', 2010, 'M', 149), +(206072, 'Kamdyn', 2010, 'M', 148), +(206073, 'Lachlan', 2010, 'M', 148), +(206074, 'Massimo', 2010, 'M', 148), +(206075, 'Cristobal', 2010, 'M', 147), +(206076, 'Ewan', 2010, 'M', 147), +(206077, 'Jakub', 2010, 'M', 147), +(206078, 'Javian', 2010, 'M', 147), +(206079, 'Kye', 2010, 'M', 147), +(206080, 'Santana', 2010, 'M', 147), +(206081, 'Syed', 2010, 'M', 147), +(206082, 'Dashiell', 2010, 'M', 146), +(206083, 'Gonzalo', 2010, 'M', 146), +(206084, 'Taven', 2010, 'M', 146), +(206085, 'Viktor', 2010, 'M', 146), +(206086, 'Ayan', 2010, 'M', 145), +(206087, 'Dewayne', 2010, 'M', 145), +(206088, 'Jael', 2010, 'M', 145), +(206089, 'Jakari', 2010, 'M', 145), +(206090, 'Jariel', 2010, 'M', 145), +(206091, 'Marek', 2010, 'M', 145), +(206092, 'Royal', 2010, 'M', 145), +(206093, 'Stetson', 2010, 'M', 145), +(206094, 'Dereck', 2010, 'M', 144), +(206095, 'Jeremias', 2010, 'M', 144), +(206096, 'Leyton', 2010, 'M', 144), +(206097, 'Mikah', 2010, 'M', 144), +(206098, 'Norman', 2010, 'M', 144), +(206099, 'Aubrey', 2010, 'M', 143), +(206100, 'Darion', 2010, 'M', 143), +(206101, 'Jamil', 2010, 'M', 143), +(206102, 'Kannon', 2010, 'M', 143), +(206103, 'Khalid', 2010, 'M', 143), +(206104, 'Lenny', 2010, 'M', 143), +(206105, 'Milan', 2010, 'M', 143), +(206106, 'Terence', 2010, 'M', 143), +(206107, 'Zyaire', 2010, 'M', 143), +(206108, 'Apollo', 2010, 'M', 142), +(206109, 'Britton', 2010, 'M', 142), +(206110, 'Clifford', 2010, 'M', 142), +(206111, 'Dwight', 2010, 'M', 142), +(206112, 'Ajay', 2010, 'M', 141), +(206113, 'Anson', 2010, 'M', 141), +(206114, 'Baron', 2010, 'M', 141), +(206115, 'Cornelius', 2010, 'M', 141), +(206116, 'Duke', 2010, 'M', 141), +(206117, 'Phineas', 2010, 'M', 141), +(206118, 'Alexandre', 2010, 'M', 140), +(206119, 'Bernardo', 2010, 'M', 140), +(206120, 'Drayden', 2010, 'M', 140), +(206121, 'Gerard', 2010, 'M', 140), +(206122, 'Neel', 2010, 'M', 140), +(206123, 'Presley', 2010, 'M', 140), +(206124, 'Shayne', 2010, 'M', 140), +(206125, 'Beck', 2010, 'M', 139), +(206126, 'Bilal', 2010, 'M', 139), +(206127, 'Irving', 2010, 'M', 139), +(206128, 'Kaidyn', 2010, 'M', 139), +(206129, 'Tristyn', 2010, 'M', 139), +(206130, 'Zahir', 2010, 'M', 139), +(206131, 'Arman', 2010, 'M', 138), +(206132, 'Aven', 2010, 'M', 138), +(206133, 'Cordell', 2010, 'M', 138), +(206134, 'Marquez', 2010, 'M', 138), +(206135, 'Carmine', 2010, 'M', 137), +(206136, 'Dereon', 2010, 'M', 137), +(206137, 'Elvin', 2010, 'M', 137), +(206138, 'Ely', 2010, 'M', 137), +(206139, 'Guadalupe', 2010, 'M', 137), +(206140, 'Miguelangel', 2010, 'M', 137), +(206141, 'Nate', 2010, 'M', 137), +(206142, 'Oakley', 2010, 'M', 137), +(206143, 'Alek', 2010, 'M', 136), +(206144, 'Alexandro', 2010, 'M', 136), +(206145, 'Clyde', 2010, 'M', 136), +(206146, 'Koby', 2010, 'M', 136), +(206147, 'Mikael', 2010, 'M', 136), +(206148, 'Sami', 2010, 'M', 136), +(206149, 'Tevin', 2010, 'M', 136), +(206150, 'Travon', 2010, 'M', 136), +(206151, 'Vernon', 2010, 'M', 136), +(206152, 'Corbyn', 2010, 'M', 135), +(206153, 'Coy', 2010, 'M', 135), +(206154, 'Jan', 2010, 'M', 135), +(206155, 'Karsten', 2010, 'M', 135), +(206156, 'Kiptyn', 2010, 'M', 135), +(206157, 'Korbyn', 2010, 'M', 135), +(206158, 'Korey', 2010, 'M', 135), +(206159, 'Sabastian', 2010, 'M', 135), +(206160, 'Tegan', 2010, 'M', 134), +(206161, 'Gus', 2010, 'M', 133), +(206162, 'Izaac', 2010, 'M', 133), +(206163, 'Nazir', 2010, 'M', 133), +(206164, 'Sebastien', 2010, 'M', 133), +(206165, 'Tavin', 2010, 'M', 133), +(206166, 'Zev', 2010, 'M', 133), +(206167, 'Avraham', 2010, 'M', 132), +(206168, 'Jet', 2010, 'M', 132), +(206169, 'Judson', 2010, 'M', 132), +(206170, 'Kyree', 2010, 'M', 132), +(206171, 'Raylan', 2010, 'M', 132), +(206172, 'Rico', 2010, 'M', 132), +(206173, 'Ridge', 2010, 'M', 132), +(206174, 'Torin', 2010, 'M', 132), +(206175, 'Zayd', 2010, 'M', 132), +(206176, 'Aleksander', 2010, 'M', 131), +(206177, 'Benicio', 2010, 'M', 131), +(206178, 'Emmet', 2010, 'M', 131), +(206179, 'Myron', 2010, 'M', 131), +(206180, 'Atreyu', 2010, 'M', 130), +(206181, 'Braulio', 2010, 'M', 130), +(206182, 'Colter', 2010, 'M', 130), +(206183, 'Garret', 2010, 'M', 130), +(206184, 'Ira', 2010, 'M', 130), +(206185, 'Keelan', 2010, 'M', 130), +(206186, 'Musa', 2010, 'M', 130), +(206187, 'Oskar', 2010, 'M', 130), +(206188, 'Rashawn', 2010, 'M', 130), +(206189, 'Tiger', 2010, 'M', 130), +(206190, 'Clint', 2010, 'M', 129), +(206191, 'Donnie', 2010, 'M', 129), +(206192, 'Jaedon', 2010, 'M', 129), +(206193, 'Juancarlos', 2010, 'M', 129), +(206194, 'Kent', 2010, 'M', 129), +(206195, 'Perry', 2010, 'M', 129), +(206196, 'Aayden', 2010, 'M', 128), +(206197, 'Avi', 2010, 'M', 128), +(206198, 'Cian', 2010, 'M', 128), +(206199, 'Duane', 2010, 'M', 128), +(206200, 'Finnian', 2010, 'M', 128), +(206201, 'Ishan', 2010, 'M', 128), +(206202, 'Josef', 2010, 'M', 128), +(206203, 'Landan', 2010, 'M', 128), +(206204, 'Lucius', 2010, 'M', 128), +(206205, 'Tzvi', 2010, 'M', 128), +(206206, 'Yitzchok', 2010, 'M', 128), +(206207, 'Amar', 2010, 'M', 127), +(206208, 'Dallin', 2010, 'M', 127), +(206209, 'Dandre', 2010, 'M', 127), +(206210, 'Denver', 2010, 'M', 127), +(206211, 'Giovany', 2010, 'M', 127), +(206212, 'Kalvin', 2010, 'M', 127), +(206213, 'Lloyd', 2010, 'M', 127), +(206214, 'Zakary', 2010, 'M', 127), +(206215, 'Bryden', 2010, 'M', 126), +(206216, 'Cormac', 2010, 'M', 126), +(206217, 'Courtney', 2010, 'M', 126), +(206218, 'Dontae', 2010, 'M', 126), +(206219, 'Foster', 2010, 'M', 126), +(206220, 'Jameer', 2010, 'M', 126), +(206221, 'Markel', 2010, 'M', 126), +(206222, 'Yariel', 2010, 'M', 126), +(206223, 'Denis', 2010, 'M', 125), +(206224, 'Eamon', 2010, 'M', 125), +(206225, 'Efren', 2010, 'M', 125), +(206226, 'Gannon', 2010, 'M', 125), +(206227, 'Kalen', 2010, 'M', 125), +(206228, 'Keller', 2010, 'M', 125), +(206229, 'Lonnie', 2010, 'M', 125), +(206230, 'Louie', 2010, 'M', 125), +(206231, 'Merrick', 2010, 'M', 125), +(206232, 'Tavion', 2010, 'M', 125), +(206233, 'Tylan', 2010, 'M', 125), +(206234, 'Xavion', 2010, 'M', 125), +(206235, 'Deshaun', 2010, 'M', 124), +(206236, 'Jaheim', 2010, 'M', 124), +(206237, 'Kain', 2010, 'M', 124), +(206238, 'Luc', 2010, 'M', 124), +(206239, 'Marion', 2010, 'M', 124), +(206240, 'Wilmer', 2010, 'M', 124), +(206241, 'Dash', 2010, 'M', 123), +(206242, 'Geovanny', 2010, 'M', 123), +(206243, 'Shea', 2010, 'M', 123), +(206244, 'Alton', 2010, 'M', 122), +(206245, 'Carlton', 2010, 'M', 122), +(206246, 'Hagen', 2010, 'M', 122), +(206247, 'Tiago', 2010, 'M', 122), +(206248, 'Zakaria', 2010, 'M', 122), +(206249, 'Bryton', 2010, 'M', 121), +(206250, 'Carmello', 2010, 'M', 121), +(206251, 'Gian', 2010, 'M', 121), +(206252, 'Maddix', 2010, 'M', 121), +(206253, 'Nevin', 2010, 'M', 121), +(206254, 'Rayyan', 2010, 'M', 121), +(206255, 'Yaseen', 2010, 'M', 121), +(206256, 'Azariah', 2010, 'M', 120), +(206257, 'Barry', 2010, 'M', 120), +(206258, 'Brighton', 2010, 'M', 120), +(206259, 'Coltin', 2010, 'M', 120), +(206260, 'Jahir', 2010, 'M', 120), +(206261, 'Jeancarlos', 2010, 'M', 120), +(206262, 'Kolt', 2010, 'M', 120), +(206263, 'Oswaldo', 2010, 'M', 120), +(206264, 'Otis', 2010, 'M', 120), +(206265, 'Raheem', 2010, 'M', 120), +(206266, 'Sutton', 2010, 'M', 120), +(206267, 'Trae', 2010, 'M', 120), +(206268, 'Aksel', 2010, 'M', 119), +(206269, 'Grayden', 2010, 'M', 119), +(206270, 'Kenji', 2010, 'M', 119), +(206271, 'Khamari', 2010, 'M', 119), +(206272, 'Omarion', 2010, 'M', 119), +(206273, 'Rickey', 2010, 'M', 119), +(206274, 'Talen', 2010, 'M', 119), +(206275, 'Adin', 2010, 'M', 118), +(206276, 'Cashton', 2010, 'M', 118), +(206277, 'Jeshua', 2010, 'M', 118), +(206278, 'Johnpaul', 2010, 'M', 118), +(206279, 'Lester', 2010, 'M', 118), +(206280, 'Meir', 2010, 'M', 118), +(206281, 'Mikhail', 2010, 'M', 118), +(206282, 'Trenten', 2010, 'M', 118), +(206283, 'Brad', 2010, 'M', 117), +(206284, 'Caeden', 2010, 'M', 117), +(206285, 'Cy', 2010, 'M', 117), +(206286, 'Ever', 2010, 'M', 117), +(206287, 'Kallen', 2010, 'M', 117), +(206288, 'Linus', 2010, 'M', 117), +(206289, 'Om', 2010, 'M', 117), +(206290, 'Pierson', 2010, 'M', 117), +(206291, 'Yoel', 2010, 'M', 117), +(206292, 'Carsten', 2010, 'M', 116), +(206293, 'Carsyn', 2010, 'M', 116), +(206294, 'Damarcus', 2010, 'M', 116), +(206295, 'Dan', 2010, 'M', 116), +(206296, 'Demari', 2010, 'M', 116), +(206297, 'Faris', 2010, 'M', 116), +(206298, 'Francesco', 2010, 'M', 116), +(206299, 'Kaison', 2010, 'M', 116), +(206300, 'Kipton', 2010, 'M', 116), +(206301, 'Mac', 2010, 'M', 116), +(206302, 'Maddex', 2010, 'M', 116), +(206303, 'Stephon', 2010, 'M', 116), +(206304, 'Ahmir', 2010, 'M', 115), +(206305, 'Ayush', 2010, 'M', 115), +(206306, 'Brandt', 2010, 'M', 115), +(206307, 'Chayce', 2010, 'M', 115), +(206308, 'Demarco', 2010, 'M', 115), +(206309, 'Deonte', 2010, 'M', 115), +(206310, 'Earl', 2010, 'M', 115), +(206311, 'Harris', 2010, 'M', 115), +(206312, 'Izaak', 2010, 'M', 115), +(206313, 'Jayven', 2010, 'M', 115), +(206314, 'Abhinav', 2010, 'M', 114), +(206315, 'Amani', 2010, 'M', 114), +(206316, 'Dev', 2010, 'M', 114), +(206317, 'Eliyahu', 2010, 'M', 114), +(206318, 'Evin', 2010, 'M', 114), +(206319, 'Gerson', 2010, 'M', 114), +(206320, 'Jayshawn', 2010, 'M', 114), +(206321, 'Obed', 2010, 'M', 114), +(206322, 'Osmar', 2010, 'M', 114), +(206323, 'Alexavier', 2010, 'M', 113), +(206324, 'Coleton', 2010, 'M', 113), +(206325, 'Dyllan', 2010, 'M', 113), +(206326, 'Jeff', 2010, 'M', 113), +(206327, 'Neal', 2010, 'M', 113), +(206328, 'Yahya', 2010, 'M', 113), +(206329, 'Eliel', 2010, 'M', 112), +(206330, 'Jeremih', 2010, 'M', 112), +(206331, 'Jonatan', 2010, 'M', 112), +(206332, 'Jordin', 2010, 'M', 112), +(206333, 'Jordy', 2010, 'M', 112), +(206334, 'Kurt', 2010, 'M', 112), +(206335, 'Nikko', 2010, 'M', 112), +(206336, 'Daryl', 2010, 'M', 111), +(206337, 'Demario', 2010, 'M', 111), +(206338, 'Demetri', 2010, 'M', 111), +(206339, 'Dezmond', 2010, 'M', 111), +(206340, 'Don', 2010, 'M', 111), +(206341, 'Gianluca', 2010, 'M', 111), +(206342, 'Ishmael', 2010, 'M', 111), +(206343, 'Karon', 2010, 'M', 111), +(206344, 'Kenton', 2010, 'M', 111), +(206345, 'Tariq', 2010, 'M', 111), +(206346, 'Veer', 2010, 'M', 111), +(206347, 'Yash', 2010, 'M', 111), +(206348, 'Achilles', 2010, 'M', 110), +(206349, 'Ares', 2010, 'M', 110), +(206350, 'Fidel', 2010, 'M', 110), +(206351, 'Jaziel', 2010, 'M', 110), +(206352, 'Jimmie', 2010, 'M', 110), +(206353, 'Kahlil', 2010, 'M', 110), +(206354, 'Kegan', 2010, 'M', 110), +(206355, 'Youssef', 2010, 'M', 110), +(206356, 'Adler', 2010, 'M', 109), +(206357, 'Antwon', 2010, 'M', 109), +(206358, 'Broden', 2010, 'M', 109), +(206359, 'Chayse', 2010, 'M', 109), +(206360, 'Deion', 2010, 'M', 109), +(206361, 'Elan', 2010, 'M', 109), +(206362, 'Ethyn', 2010, 'M', 109), +(206363, 'Jahmir', 2010, 'M', 109), +(206364, 'Jaidon', 2010, 'M', 109), +(206365, 'Latrell', 2010, 'M', 109), +(206366, 'Marko', 2010, 'M', 109), +(206367, 'Rio', 2010, 'M', 109), +(206368, 'Tahj', 2010, 'M', 109), +(206369, 'Yovani', 2010, 'M', 109), +(206370, 'Canon', 2010, 'M', 108), +(206371, 'Diesel', 2010, 'M', 108), +(206372, 'Eian', 2010, 'M', 108), +(206373, 'Finnley', 2010, 'M', 108), +(206374, 'Kentrell', 2010, 'M', 108), +(206375, 'Khristian', 2010, 'M', 108), +(206376, 'Kurtis', 2010, 'M', 108), +(206377, 'Lyndon', 2010, 'M', 108), +(206378, 'Ramses', 2010, 'M', 108), +(206379, 'Tye', 2010, 'M', 108), +(206380, 'Westley', 2010, 'M', 108), +(206381, 'Axton', 2010, 'M', 107), +(206382, 'Benito', 2010, 'M', 107), +(206383, 'Canyon', 2010, 'M', 107), +(206384, 'Clifton', 2010, 'M', 107), +(206385, 'Ervin', 2010, 'M', 107), +(206386, 'Greysen', 2010, 'M', 107), +(206387, 'Jancarlos', 2010, 'M', 107), +(206388, 'Javien', 2010, 'M', 107), +(206389, 'Rick', 2010, 'M', 107), +(206390, 'Robin', 2010, 'M', 107), +(206391, 'Zephaniah', 2010, 'M', 107), +(206392, 'Braelyn', 2010, 'M', 106), +(206393, 'Darin', 2010, 'M', 106), +(206394, 'Emil', 2010, 'M', 106), +(206395, 'Fred', 2010, 'M', 106), +(206396, 'Grey', 2010, 'M', 106), +(206397, 'Jacen', 2010, 'M', 106), +(206398, 'Jaysen', 2010, 'M', 106), +(206399, 'Kaysen', 2010, 'M', 106), +(206400, 'Rian', 2010, 'M', 106), +(206401, 'Tyron', 2010, 'M', 106), +(206402, 'Yasir', 2010, 'M', 106), +(206403, 'Bronx', 2010, 'M', 105), +(206404, 'Constantine', 2010, 'M', 105), +(206405, 'Daveon', 2010, 'M', 105), +(206406, 'Donnell', 2010, 'M', 105), +(206407, 'Freddie', 2010, 'M', 105), +(206408, 'Jaxsen', 2010, 'M', 105), +(206409, 'Johnnie', 2010, 'M', 105), +(206410, 'Osiel', 2010, 'M', 105), +(206411, 'Athan', 2010, 'M', 104), +(206412, 'Brigham', 2010, 'M', 104), +(206413, 'Emir', 2010, 'M', 104), +(206414, 'Hans', 2010, 'M', 104), +(206415, 'Javeon', 2010, 'M', 104), +(206416, 'Kollin', 2010, 'M', 104), +(206417, 'Syncere', 2010, 'M', 104), +(206418, 'Trevion', 2010, 'M', 104), +(206419, 'Geoffrey', 2010, 'M', 103), +(206420, 'Heriberto', 2010, 'M', 103), +(206421, 'Keandre', 2010, 'M', 103), +(206422, 'Murphy', 2010, 'M', 103), +(206423, 'Nikita', 2010, 'M', 103), +(206424, 'Sky', 2010, 'M', 103), +(206425, 'Wiley', 2010, 'M', 103), +(206426, 'Abdul', 2010, 'M', 102), +(206427, 'Graeme', 2010, 'M', 102), +(206428, 'Harlem', 2010, 'M', 102), +(206429, 'Isac', 2010, 'M', 102), +(206430, 'Kiran', 2010, 'M', 102), +(206431, 'Kirk', 2010, 'M', 102), +(206432, 'Kyren', 2010, 'M', 102), +(206433, 'Shepherd', 2010, 'M', 102), +(206434, 'Hernan', 2010, 'M', 101), +(206435, 'Idris', 2010, 'M', 101), +(206436, 'Jacorey', 2010, 'M', 101), +(206437, 'Kaydin', 2010, 'M', 101), +(206438, 'Kelly', 2010, 'M', 101), +(206439, 'Lyle', 2010, 'M', 101), +(206440, 'Zaylen', 2010, 'M', 101), +(206441, 'Anakin', 2010, 'M', 100), +(206442, 'Andrei', 2010, 'M', 100), +(206443, 'Atlas', 2010, 'M', 100), +(206444, 'Daquan', 2010, 'M', 100), +(206445, 'Dylon', 2010, 'M', 100), +(206446, 'Ford', 2010, 'M', 100), +(206447, 'Graydon', 2010, 'M', 100), +(206448, 'Javonte', 2010, 'M', 100), +(206449, 'Kaedyn', 2010, 'M', 100), +(206450, 'Lazaro', 2010, 'M', 100), +(206451, 'Patricio', 2010, 'M', 100), +(206452, 'Raymundo', 2010, 'M', 100), +(206453, 'Rowdy', 2010, 'M', 100), +(206454, 'Sahil', 2010, 'M', 100), +(206455, 'Sophia', 2011, 'F', 21816), +(206456, 'Isabella', 2011, 'F', 19870), +(206457, 'Emma', 2011, 'F', 18777), +(206458, 'Olivia', 2011, 'F', 17294), +(206459, 'Ava', 2011, 'F', 15480), +(206460, 'Emily', 2011, 'F', 14236), +(206461, 'Abigail', 2011, 'F', 13229), +(206462, 'Madison', 2011, 'F', 12360), +(206463, 'Mia', 2011, 'F', 11512), +(206464, 'Chloe', 2011, 'F', 10970), +(206465, 'Elizabeth', 2011, 'F', 10062), +(206466, 'Ella', 2011, 'F', 9575), +(206467, 'Addison', 2011, 'F', 9291), +(206468, 'Natalie', 2011, 'F', 8626), +(206469, 'Lily', 2011, 'F', 8172), +(206470, 'Grace', 2011, 'F', 7622), +(206471, 'Samantha', 2011, 'F', 7379), +(206472, 'Avery', 2011, 'F', 7335), +(206473, 'Sofia', 2011, 'F', 7321), +(206474, 'Aubrey', 2011, 'F', 7169), +(206475, 'Brooklyn', 2011, 'F', 7155), +(206476, 'Lillian', 2011, 'F', 6902), +(206477, 'Victoria', 2011, 'F', 6878), +(206478, 'Evelyn', 2011, 'F', 6702), +(206479, 'Hannah', 2011, 'F', 6555), +(206480, 'Alexis', 2011, 'F', 6510), +(206481, 'Charlotte', 2011, 'F', 6418), +(206482, 'Zoey', 2011, 'F', 6392), +(206483, 'Leah', 2011, 'F', 6377), +(206484, 'Amelia', 2011, 'F', 6362), +(206485, 'Zoe', 2011, 'F', 6292), +(206486, 'Hailey', 2011, 'F', 6263), +(206487, 'Gabriella', 2011, 'F', 6082), +(206488, 'Nevaeh', 2011, 'F', 6075), +(206489, 'Layla', 2011, 'F', 6073), +(206490, 'Kaylee', 2011, 'F', 6033), +(206491, 'Alyssa', 2011, 'F', 6001), +(206492, 'Anna', 2011, 'F', 5646), +(206493, 'Sarah', 2011, 'F', 5541), +(206494, 'Allison', 2011, 'F', 5453), +(206495, 'Savannah', 2011, 'F', 5438), +(206496, 'Ashley', 2011, 'F', 5394), +(206497, 'Audrey', 2011, 'F', 5206); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(206498, 'Taylor', 2011, 'F', 5184), +(206499, 'Brianna', 2011, 'F', 5173), +(206500, 'Aaliyah', 2011, 'F', 5104), +(206501, 'Riley', 2011, 'F', 5030), +(206502, 'Camila', 2011, 'F', 4967), +(206503, 'Khloe', 2011, 'F', 4943), +(206504, 'Claire', 2011, 'F', 4893), +(206505, 'Sophie', 2011, 'F', 4722), +(206506, 'Arianna', 2011, 'F', 4681), +(206507, 'Harper', 2011, 'F', 4668), +(206508, 'Peyton', 2011, 'F', 4668), +(206509, 'Alexa', 2011, 'F', 4503), +(206510, 'Makayla', 2011, 'F', 4439), +(206511, 'Julia', 2011, 'F', 4343), +(206512, 'Kylie', 2011, 'F', 4340), +(206513, 'Kayla', 2011, 'F', 4315), +(206514, 'Bella', 2011, 'F', 4256), +(206515, 'Katherine', 2011, 'F', 4181), +(206516, 'Lauren', 2011, 'F', 4095), +(206517, 'Gianna', 2011, 'F', 4061), +(206518, 'Maya', 2011, 'F', 4011), +(206519, 'Sydney', 2011, 'F', 3968), +(206520, 'Serenity', 2011, 'F', 3849), +(206521, 'Kimberly', 2011, 'F', 3796), +(206522, 'Mackenzie', 2011, 'F', 3786), +(206523, 'Autumn', 2011, 'F', 3756), +(206524, 'Jocelyn', 2011, 'F', 3728), +(206525, 'Faith', 2011, 'F', 3717), +(206526, 'Lucy', 2011, 'F', 3697), +(206527, 'Stella', 2011, 'F', 3689), +(206528, 'Jasmine', 2011, 'F', 3688), +(206529, 'Morgan', 2011, 'F', 3665), +(206530, 'Alexandra', 2011, 'F', 3623), +(206531, 'Molly', 2011, 'F', 3611), +(206532, 'Trinity', 2011, 'F', 3611), +(206533, 'Madelyn', 2011, 'F', 3601), +(206534, 'Scarlett', 2011, 'F', 3557), +(206535, 'Andrea', 2011, 'F', 3506), +(206536, 'Genesis', 2011, 'F', 3503), +(206537, 'Eva', 2011, 'F', 3463), +(206538, 'Ariana', 2011, 'F', 3446), +(206539, 'Madeline', 2011, 'F', 3423), +(206540, 'Brooke', 2011, 'F', 3367), +(206541, 'Caroline', 2011, 'F', 3364), +(206542, 'Bailey', 2011, 'F', 3305), +(206543, 'Melanie', 2011, 'F', 3284), +(206544, 'Destiny', 2011, 'F', 3251), +(206545, 'Kennedy', 2011, 'F', 3241), +(206546, 'Maria', 2011, 'F', 3213), +(206547, 'Naomi', 2011, 'F', 3181), +(206548, 'London', 2011, 'F', 3163), +(206549, 'Payton', 2011, 'F', 3141), +(206550, 'Lydia', 2011, 'F', 3081), +(206551, 'Ellie', 2011, 'F', 3059), +(206552, 'Mariah', 2011, 'F', 2977), +(206553, 'Aubree', 2011, 'F', 2930), +(206554, 'Kaitlyn', 2011, 'F', 2905), +(206555, 'Violet', 2011, 'F', 2895), +(206556, 'Rylee', 2011, 'F', 2868), +(206557, 'Lilly', 2011, 'F', 2859), +(206558, 'Angelina', 2011, 'F', 2855), +(206559, 'Mya', 2011, 'F', 2845), +(206560, 'Katelyn', 2011, 'F', 2841), +(206561, 'Paige', 2011, 'F', 2811), +(206562, 'Natalia', 2011, 'F', 2798), +(206563, 'Ruby', 2011, 'F', 2760), +(206564, 'Piper', 2011, 'F', 2727), +(206565, 'Annabelle', 2011, 'F', 2722), +(206566, 'Mary', 2011, 'F', 2701), +(206567, 'Jade', 2011, 'F', 2668), +(206568, 'Isabelle', 2011, 'F', 2661), +(206569, 'Liliana', 2011, 'F', 2657), +(206570, 'Nicole', 2011, 'F', 2653), +(206571, 'Rachel', 2011, 'F', 2647), +(206572, 'Gabrielle', 2011, 'F', 2620), +(206573, 'Jessica', 2011, 'F', 2620), +(206574, 'Vanessa', 2011, 'F', 2616), +(206575, 'Jordyn', 2011, 'F', 2607), +(206576, 'Reagan', 2011, 'F', 2605), +(206577, 'Sadie', 2011, 'F', 2594), +(206578, 'Kendall', 2011, 'F', 2591), +(206579, 'Valeria', 2011, 'F', 2536), +(206580, 'Brielle', 2011, 'F', 2496), +(206581, 'Lyla', 2011, 'F', 2414), +(206582, 'Isabel', 2011, 'F', 2409), +(206583, 'Brooklynn', 2011, 'F', 2403), +(206584, 'Sara', 2011, 'F', 2385), +(206585, 'Reese', 2011, 'F', 2380), +(206586, 'Adriana', 2011, 'F', 2318), +(206587, 'Aliyah', 2011, 'F', 2293), +(206588, 'Jennifer', 2011, 'F', 2276), +(206589, 'Mckenzie', 2011, 'F', 2237), +(206590, 'Nora', 2011, 'F', 2234), +(206591, 'Gracie', 2011, 'F', 2232), +(206592, 'Kylee', 2011, 'F', 2213), +(206593, 'Makenzie', 2011, 'F', 2201), +(206594, 'Alice', 2011, 'F', 2191), +(206595, 'Laila', 2011, 'F', 2191), +(206596, 'Amy', 2011, 'F', 2190), +(206597, 'Izabella', 2011, 'F', 2190), +(206598, 'Michelle', 2011, 'F', 2176), +(206599, 'Skylar', 2011, 'F', 2152), +(206600, 'Stephanie', 2011, 'F', 2143), +(206601, 'Juliana', 2011, 'F', 2124), +(206602, 'Rebecca', 2011, 'F', 2107), +(206603, 'Jayla', 2011, 'F', 2083), +(206604, 'Eleanor', 2011, 'F', 2080), +(206605, 'Clara', 2011, 'F', 2072), +(206606, 'Giselle', 2011, 'F', 2035), +(206607, 'Vivian', 2011, 'F', 2021), +(206608, 'Valentina', 2011, 'F', 2016), +(206609, 'Eliana', 2011, 'F', 2008), +(206610, 'Alaina', 2011, 'F', 1998), +(206611, 'Aria', 2011, 'F', 1979), +(206612, 'Valerie', 2011, 'F', 1954), +(206613, 'Haley', 2011, 'F', 1947), +(206614, 'Elena', 2011, 'F', 1935), +(206615, 'Catherine', 2011, 'F', 1934), +(206616, 'Elise', 2011, 'F', 1933), +(206617, 'Lila', 2011, 'F', 1920), +(206618, 'Megan', 2011, 'F', 1910), +(206619, 'Gabriela', 2011, 'F', 1906), +(206620, 'Jada', 2011, 'F', 1892), +(206621, 'Daisy', 2011, 'F', 1889), +(206622, 'Penelope', 2011, 'F', 1869), +(206623, 'Daniela', 2011, 'F', 1868), +(206624, 'Jenna', 2011, 'F', 1837), +(206625, 'Ashlyn', 2011, 'F', 1830), +(206626, 'Delilah', 2011, 'F', 1824), +(206627, 'Summer', 2011, 'F', 1811), +(206628, 'Mila', 2011, 'F', 1797), +(206629, 'Kate', 2011, 'F', 1790), +(206630, 'Keira', 2011, 'F', 1785), +(206631, 'Adrianna', 2011, 'F', 1770), +(206632, 'Hadley', 2011, 'F', 1758), +(206633, 'Julianna', 2011, 'F', 1734), +(206634, 'Eden', 2011, 'F', 1729), +(206635, 'Maci', 2011, 'F', 1729), +(206636, 'Josephine', 2011, 'F', 1726), +(206637, 'Aurora', 2011, 'F', 1721), +(206638, 'Melissa', 2011, 'F', 1705), +(206639, 'Margaret', 2011, 'F', 1698), +(206640, 'Alana', 2011, 'F', 1697), +(206641, 'Hayden', 2011, 'F', 1692), +(206642, 'Quinn', 2011, 'F', 1689), +(206643, 'Angela', 2011, 'F', 1670), +(206644, 'Alivia', 2011, 'F', 1665), +(206645, 'Brynn', 2011, 'F', 1664), +(206646, 'Katie', 2011, 'F', 1663), +(206647, 'Ryleigh', 2011, 'F', 1644), +(206648, 'Paisley', 2011, 'F', 1638), +(206649, 'Kinley', 2011, 'F', 1637), +(206650, 'Jordan', 2011, 'F', 1634), +(206651, 'Aniyah', 2011, 'F', 1583), +(206652, 'Allie', 2011, 'F', 1572), +(206653, 'Miranda', 2011, 'F', 1567), +(206654, 'Willow', 2011, 'F', 1564), +(206655, 'Jacqueline', 2011, 'F', 1557), +(206656, 'Melody', 2011, 'F', 1556), +(206657, 'Cora', 2011, 'F', 1549), +(206658, 'Diana', 2011, 'F', 1542), +(206659, 'Alexandria', 2011, 'F', 1524), +(206660, 'Mikayla', 2011, 'F', 1519), +(206661, 'Danielle', 2011, 'F', 1497), +(206662, 'Londyn', 2011, 'F', 1486), +(206663, 'Addyson', 2011, 'F', 1478), +(206664, 'Hazel', 2011, 'F', 1478), +(206665, 'Amaya', 2011, 'F', 1477), +(206666, 'Callie', 2011, 'F', 1473), +(206667, 'Angel', 2011, 'F', 1471), +(206668, 'Teagan', 2011, 'F', 1469), +(206669, 'Adalyn', 2011, 'F', 1465), +(206670, 'Ximena', 2011, 'F', 1464), +(206671, 'Kinsley', 2011, 'F', 1457), +(206672, 'Shelby', 2011, 'F', 1454), +(206673, 'Makenna', 2011, 'F', 1450), +(206674, 'Ariel', 2011, 'F', 1434), +(206675, 'Jillian', 2011, 'F', 1429), +(206676, 'Chelsea', 2011, 'F', 1424), +(206677, 'Harmony', 2011, 'F', 1414), +(206678, 'Amanda', 2011, 'F', 1408), +(206679, 'Alayna', 2011, 'F', 1406), +(206680, 'Sienna', 2011, 'F', 1403), +(206681, 'Presley', 2011, 'F', 1393), +(206682, 'Tessa', 2011, 'F', 1388), +(206683, 'Maggie', 2011, 'F', 1387), +(206684, 'Hope', 2011, 'F', 1384), +(206685, 'Leila', 2011, 'F', 1374), +(206686, 'Genevieve', 2011, 'F', 1361), +(206687, 'Erin', 2011, 'F', 1350), +(206688, 'Esther', 2011, 'F', 1347), +(206689, 'Briana', 2011, 'F', 1338), +(206690, 'Delaney', 2011, 'F', 1337), +(206691, 'Kathryn', 2011, 'F', 1332), +(206692, 'Mckenna', 2011, 'F', 1332), +(206693, 'Ana', 2011, 'F', 1328), +(206694, 'Lucia', 2011, 'F', 1324), +(206695, 'Camille', 2011, 'F', 1316), +(206696, 'Cecilia', 2011, 'F', 1314), +(206697, 'Lola', 2011, 'F', 1312), +(206698, 'Leilani', 2011, 'F', 1300), +(206699, 'Leslie', 2011, 'F', 1285), +(206700, 'Ashlynn', 2011, 'F', 1283), +(206701, 'Kayleigh', 2011, 'F', 1282), +(206702, 'Carly', 2011, 'F', 1274), +(206703, 'Juliet', 2011, 'F', 1274), +(206704, 'Alondra', 2011, 'F', 1273), +(206705, 'Haylee', 2011, 'F', 1272), +(206706, 'Alison', 2011, 'F', 1271), +(206707, 'Lexi', 2011, 'F', 1270), +(206708, 'Kelsey', 2011, 'F', 1262), +(206709, 'Eliza', 2011, 'F', 1255), +(206710, 'Josie', 2011, 'F', 1243), +(206711, 'Marissa', 2011, 'F', 1237), +(206712, 'Amber', 2011, 'F', 1232), +(206713, 'Marley', 2011, 'F', 1232), +(206714, 'Alicia', 2011, 'F', 1227), +(206715, 'Sabrina', 2011, 'F', 1226), +(206716, 'Kaydence', 2011, 'F', 1216), +(206717, 'Norah', 2011, 'F', 1216), +(206718, 'Allyson', 2011, 'F', 1210), +(206719, 'Fiona', 2011, 'F', 1210), +(206720, 'Ivy', 2011, 'F', 1210), +(206721, 'Alina', 2011, 'F', 1209), +(206722, 'Isla', 2011, 'F', 1207), +(206723, 'Nadia', 2011, 'F', 1181), +(206724, 'Christina', 2011, 'F', 1178), +(206725, 'Emery', 2011, 'F', 1171), +(206726, 'Kyleigh', 2011, 'F', 1169), +(206727, 'Laura', 2011, 'F', 1166), +(206728, 'Cheyenne', 2011, 'F', 1156), +(206729, 'Emerson', 2011, 'F', 1149), +(206730, 'Alexia', 2011, 'F', 1147), +(206731, 'Sierra', 2011, 'F', 1146), +(206732, 'Cadence', 2011, 'F', 1144), +(206733, 'Luna', 2011, 'F', 1144), +(206734, 'Daniella', 2011, 'F', 1141), +(206735, 'Fatima', 2011, 'F', 1129), +(206736, 'Cassidy', 2011, 'F', 1121), +(206737, 'Bianca', 2011, 'F', 1118), +(206738, 'Veronica', 2011, 'F', 1113), +(206739, 'Kyla', 2011, 'F', 1108), +(206740, 'Evangeline', 2011, 'F', 1107), +(206741, 'Adeline', 2011, 'F', 1102), +(206742, 'Karen', 2011, 'F', 1101), +(206743, 'Mallory', 2011, 'F', 1096), +(206744, 'Rose', 2011, 'F', 1093), +(206745, 'Jazmine', 2011, 'F', 1091), +(206746, 'Jayden', 2011, 'F', 1069), +(206747, 'Kendra', 2011, 'F', 1067), +(206748, 'Camryn', 2011, 'F', 1064), +(206749, 'Dakota', 2011, 'F', 1063), +(206750, 'Mariana', 2011, 'F', 1061), +(206751, 'Macy', 2011, 'F', 1060), +(206752, 'Abby', 2011, 'F', 1059), +(206753, 'Gia', 2011, 'F', 1056), +(206754, 'Madilyn', 2011, 'F', 1056), +(206755, 'Adelyn', 2011, 'F', 1055), +(206756, 'Iris', 2011, 'F', 1051), +(206757, 'Jazmin', 2011, 'F', 1051), +(206758, 'Georgia', 2011, 'F', 1044), +(206759, 'Nina', 2011, 'F', 1044), +(206760, 'Lilah', 2011, 'F', 1040), +(206761, 'Breanna', 2011, 'F', 1023), +(206762, 'Jayda', 2011, 'F', 1022), +(206763, 'Kenzie', 2011, 'F', 1022), +(206764, 'Phoebe', 2011, 'F', 1021), +(206765, 'Lilliana', 2011, 'F', 1013), +(206766, 'Malia', 2011, 'F', 1007), +(206767, 'Athena', 2011, 'F', 1006), +(206768, 'Kamryn', 2011, 'F', 1004), +(206769, 'Nyla', 2011, 'F', 997), +(206770, 'Miley', 2011, 'F', 990), +(206771, 'Heaven', 2011, 'F', 985), +(206772, 'Audrina', 2011, 'F', 983), +(206773, 'Kiara', 2011, 'F', 982), +(206774, 'Selena', 2011, 'F', 981), +(206775, 'Madeleine', 2011, 'F', 980), +(206776, 'Maddison', 2011, 'F', 977), +(206777, 'Lyric', 2011, 'F', 975), +(206778, 'Emilia', 2011, 'F', 972), +(206779, 'Giuliana', 2011, 'F', 972), +(206780, 'Joanna', 2011, 'F', 972), +(206781, 'Annabella', 2011, 'F', 965), +(206782, 'Adalynn', 2011, 'F', 964), +(206783, 'Fernanda', 2011, 'F', 961), +(206784, 'Aubrie', 2011, 'F', 955), +(206785, 'Heidi', 2011, 'F', 951), +(206786, 'Esmeralda', 2011, 'F', 944), +(206787, 'Kira', 2011, 'F', 944), +(206788, 'Arabella', 2011, 'F', 940), +(206789, 'Kelly', 2011, 'F', 940), +(206790, 'Elliana', 2011, 'F', 939), +(206791, 'Miriam', 2011, 'F', 938), +(206792, 'Kara', 2011, 'F', 934), +(206793, 'Karina', 2011, 'F', 933), +(206794, 'Crystal', 2011, 'F', 932), +(206795, 'Paris', 2011, 'F', 931), +(206796, 'Raegan', 2011, 'F', 930), +(206797, 'Caitlyn', 2011, 'F', 929), +(206798, 'Alejandra', 2011, 'F', 927), +(206799, 'Tatum', 2011, 'F', 926), +(206800, 'Savanna', 2011, 'F', 924), +(206801, 'Ayla', 2011, 'F', 919), +(206802, 'Carmen', 2011, 'F', 915), +(206803, 'Bethany', 2011, 'F', 914), +(206804, 'Tiffany', 2011, 'F', 914), +(206805, 'Maliyah', 2011, 'F', 911), +(206806, 'Guadalupe', 2011, 'F', 908), +(206807, 'Karla', 2011, 'F', 908), +(206808, 'Gemma', 2011, 'F', 906), +(206809, 'Kailey', 2011, 'F', 905), +(206810, 'Macie', 2011, 'F', 903), +(206811, 'Noelle', 2011, 'F', 903), +(206812, 'Rylie', 2011, 'F', 898), +(206813, 'Ruth', 2011, 'F', 897), +(206814, 'Lena', 2011, 'F', 896), +(206815, 'Elaina', 2011, 'F', 895), +(206816, 'Ainsley', 2011, 'F', 889), +(206817, 'Amiyah', 2011, 'F', 889), +(206818, 'Finley', 2011, 'F', 880), +(206819, 'Danna', 2011, 'F', 876), +(206820, 'Parker', 2011, 'F', 870), +(206821, 'Jane', 2011, 'F', 867), +(206822, 'Emely', 2011, 'F', 866), +(206823, 'Journey', 2011, 'F', 865), +(206824, 'Joselyn', 2011, 'F', 863), +(206825, 'Scarlet', 2011, 'F', 862), +(206826, 'Anastasia', 2011, 'F', 860), +(206827, 'Angelica', 2011, 'F', 860), +(206828, 'Sasha', 2011, 'F', 857), +(206829, 'Yaretzi', 2011, 'F', 855), +(206830, 'Charlie', 2011, 'F', 854), +(206831, 'Juliette', 2011, 'F', 850), +(206832, 'Brynlee', 2011, 'F', 845), +(206833, 'Lia', 2011, 'F', 844), +(206834, 'Angelique', 2011, 'F', 837), +(206835, 'Katelynn', 2011, 'F', 837), +(206836, 'Nayeli', 2011, 'F', 825), +(206837, 'Vivienne', 2011, 'F', 825), +(206838, 'Addisyn', 2011, 'F', 821), +(206839, 'Annie', 2011, 'F', 820), +(206840, 'Kaelyn', 2011, 'F', 820), +(206841, 'Tiana', 2011, 'F', 818), +(206842, 'Kyra', 2011, 'F', 817), +(206843, 'Cali', 2011, 'F', 811), +(206844, 'Janelle', 2011, 'F', 811), +(206845, 'Aleah', 2011, 'F', 808), +(206846, 'Imani', 2011, 'F', 804), +(206847, 'Caitlin', 2011, 'F', 803), +(206848, 'Jayleen', 2011, 'F', 800), +(206849, 'Julie', 2011, 'F', 794), +(206850, 'April', 2011, 'F', 792), +(206851, 'Julissa', 2011, 'F', 791), +(206852, 'Kailyn', 2011, 'F', 790), +(206853, 'Alessandra', 2011, 'F', 789), +(206854, 'Janiyah', 2011, 'F', 788), +(206855, 'Jazlyn', 2011, 'F', 785), +(206856, 'Kaylie', 2011, 'F', 779), +(206857, 'Madelynn', 2011, 'F', 778), +(206858, 'Cassandra', 2011, 'F', 777), +(206859, 'Monica', 2011, 'F', 776), +(206860, 'Adelaide', 2011, 'F', 775), +(206861, 'Baylee', 2011, 'F', 775), +(206862, 'Michaela', 2011, 'F', 774), +(206863, 'Itzel', 2011, 'F', 772), +(206864, 'Brylee', 2011, 'F', 771), +(206865, 'Kaylin', 2011, 'F', 769), +(206866, 'Madisyn', 2011, 'F', 769), +(206867, 'Aniya', 2011, 'F', 766), +(206868, 'Elle', 2011, 'F', 765), +(206869, 'Olive', 2011, 'F', 762), +(206870, 'Dulce', 2011, 'F', 761), +(206871, 'Jaelyn', 2011, 'F', 757), +(206872, 'Courtney', 2011, 'F', 751), +(206873, 'Brittany', 2011, 'F', 748), +(206874, 'Madalyn', 2011, 'F', 738), +(206875, 'Kamila', 2011, 'F', 736), +(206876, 'Tenley', 2011, 'F', 736), +(206877, 'Jasmin', 2011, 'F', 735), +(206878, 'Kiley', 2011, 'F', 735), +(206879, 'Holly', 2011, 'F', 733), +(206880, 'Talia', 2011, 'F', 733), +(206881, 'Braelyn', 2011, 'F', 732), +(206882, 'Cynthia', 2011, 'F', 730), +(206883, 'Carolina', 2011, 'F', 728), +(206884, 'Helen', 2011, 'F', 728), +(206885, 'Anya', 2011, 'F', 724), +(206886, 'Estrella', 2011, 'F', 724), +(206887, 'Hayley', 2011, 'F', 724), +(206888, 'Bristol', 2011, 'F', 718), +(206889, 'Jimena', 2011, 'F', 715), +(206890, 'Rebekah', 2011, 'F', 714), +(206891, 'Jamie', 2011, 'F', 713), +(206892, 'Harley', 2011, 'F', 712), +(206893, 'Charlee', 2011, 'F', 708), +(206894, 'Cameron', 2011, 'F', 706), +(206895, 'Lacey', 2011, 'F', 705), +(206896, 'Jaliyah', 2011, 'F', 703), +(206897, 'Sarai', 2011, 'F', 701), +(206898, 'Caylee', 2011, 'F', 695), +(206899, 'Dayana', 2011, 'F', 692), +(206900, 'Kennedi', 2011, 'F', 692), +(206901, 'Tatiana', 2011, 'F', 689), +(206902, 'Serena', 2011, 'F', 681), +(206903, 'Eloise', 2011, 'F', 679), +(206904, 'Daphne', 2011, 'F', 673), +(206905, 'Mckinley', 2011, 'F', 673), +(206906, 'Mikaela', 2011, 'F', 673), +(206907, 'Celeste', 2011, 'F', 668), +(206908, 'Hanna', 2011, 'F', 665), +(206909, 'Lucille', 2011, 'F', 665), +(206910, 'Nylah', 2011, 'F', 652), +(206911, 'Skyler', 2011, 'F', 650), +(206912, 'Camilla', 2011, 'F', 648), +(206913, 'Lilian', 2011, 'F', 646), +(206914, 'Lindsey', 2011, 'F', 646), +(206915, 'Sage', 2011, 'F', 645), +(206916, 'Danica', 2011, 'F', 644), +(206917, 'Lillie', 2011, 'F', 642), +(206918, 'Viviana', 2011, 'F', 642), +(206919, 'Liana', 2011, 'F', 641), +(206920, 'Melany', 2011, 'F', 638), +(206921, 'Aileen', 2011, 'F', 633), +(206922, 'Kadence', 2011, 'F', 631), +(206923, 'Bridget', 2011, 'F', 630), +(206924, 'June', 2011, 'F', 630), +(206925, 'Zariah', 2011, 'F', 630), +(206926, 'Lilyana', 2011, 'F', 626), +(206927, 'Anabelle', 2011, 'F', 623), +(206928, 'Lexie', 2011, 'F', 623), +(206929, 'Erica', 2011, 'F', 621), +(206930, 'Alyson', 2011, 'F', 620), +(206931, 'Anaya', 2011, 'F', 620), +(206932, 'Gracelyn', 2011, 'F', 620), +(206933, 'Paola', 2011, 'F', 620), +(206934, 'Skye', 2011, 'F', 620), +(206935, 'Angie', 2011, 'F', 619), +(206936, 'Elsie', 2011, 'F', 617), +(206937, 'Kiera', 2011, 'F', 616), +(206938, 'Myla', 2011, 'F', 610), +(206939, 'Priscilla', 2011, 'F', 610), +(206940, 'Lana', 2011, 'F', 608), +(206941, 'Aylin', 2011, 'F', 607), +(206942, 'Natasha', 2011, 'F', 604), +(206943, 'Kassidy', 2011, 'F', 603), +(206944, 'Miracle', 2011, 'F', 601), +(206945, 'Nia', 2011, 'F', 600), +(206946, 'Kenley', 2011, 'F', 599), +(206947, 'Ada', 2011, 'F', 598), +(206948, 'Dylan', 2011, 'F', 598), +(206949, 'Kali', 2011, 'F', 598), +(206950, 'Raelynn', 2011, 'F', 596), +(206951, 'Briella', 2011, 'F', 592), +(206952, 'Francesca', 2011, 'F', 592), +(206953, 'Emilee', 2011, 'F', 590), +(206954, 'Amira', 2011, 'F', 586), +(206955, 'Arielle', 2011, 'F', 586), +(206956, 'Lorelei', 2011, 'F', 585), +(206957, 'Madyson', 2011, 'F', 584), +(206958, 'Joy', 2011, 'F', 583), +(206959, 'Annika', 2011, 'F', 580), +(206960, 'Jaelynn', 2011, 'F', 580), +(206961, 'Nataly', 2011, 'F', 578), +(206962, 'Alanna', 2011, 'F', 576), +(206963, 'Brenna', 2011, 'F', 576), +(206964, 'Sloane', 2011, 'F', 575), +(206965, 'Shayla', 2011, 'F', 574), +(206966, 'Vera', 2011, 'F', 572), +(206967, 'Amari', 2011, 'F', 570), +(206968, 'Lauryn', 2011, 'F', 569), +(206969, 'Abbigail', 2011, 'F', 568), +(206970, 'Jaycee', 2011, 'F', 567), +(206971, 'Whitney', 2011, 'F', 563), +(206972, 'Skyla', 2011, 'F', 562), +(206973, 'Aspen', 2011, 'F', 561), +(206974, 'Johanna', 2011, 'F', 561), +(206975, 'Jaylah', 2011, 'F', 557), +(206976, 'Nathalie', 2011, 'F', 556), +(206977, 'Laney', 2011, 'F', 555), +(206978, 'Logan', 2011, 'F', 551), +(206979, 'Ciara', 2011, 'F', 550), +(206980, 'Justice', 2011, 'F', 548), +(206981, 'Leighton', 2011, 'F', 548), +(206982, 'Marlee', 2011, 'F', 548), +(206983, 'Brinley', 2011, 'F', 547), +(206984, 'Kayden', 2011, 'F', 547), +(206985, 'Brenda', 2011, 'F', 545), +(206986, 'Erika', 2011, 'F', 544), +(206987, 'Lainey', 2011, 'F', 543), +(206988, 'Rowan', 2011, 'F', 543), +(206989, 'Teresa', 2011, 'F', 542), +(206990, 'Elisa', 2011, 'F', 541), +(206991, 'Janiya', 2011, 'F', 538), +(206992, 'Annabel', 2011, 'F', 537), +(206993, 'Dahlia', 2011, 'F', 537), +(206994, 'Nancy', 2011, 'F', 537), +(206995, 'Kaliyah', 2011, 'F', 536), +(206996, 'Lizbeth', 2011, 'F', 536), +(206997, 'Aleena', 2011, 'F', 535), +(206998, 'Farrah', 2011, 'F', 533), +(206999, 'Marilyn', 2011, 'F', 532), +(207000, 'Rosalie', 2011, 'F', 532), +(207001, 'Eve', 2011, 'F', 531), +(207002, 'Madilynn', 2011, 'F', 530), +(207003, 'Anahi', 2011, 'F', 529), +(207004, 'Emmalyn', 2011, 'F', 529), +(207005, 'Jaylynn', 2011, 'F', 529), +(207006, 'Annalise', 2011, 'F', 528), +(207007, 'Sylvia', 2011, 'F', 528), +(207008, 'Averie', 2011, 'F', 527), +(207009, 'Bailee', 2011, 'F', 527), +(207010, 'Lea', 2011, 'F', 525), +(207011, 'Samara', 2011, 'F', 524), +(207012, 'Zoie', 2011, 'F', 523), +(207013, 'Regina', 2011, 'F', 522), +(207014, 'Yareli', 2011, 'F', 521), +(207015, 'Amani', 2011, 'F', 519), +(207016, 'Hailee', 2011, 'F', 519), +(207017, 'Evelynn', 2011, 'F', 515), +(207018, 'Arely', 2011, 'F', 513), +(207019, 'Luciana', 2011, 'F', 513), +(207020, 'Haven', 2011, 'F', 512), +(207021, 'Anika', 2011, 'F', 510), +(207022, 'Liberty', 2011, 'F', 510), +(207023, 'Natalee', 2011, 'F', 510), +(207024, 'Gloria', 2011, 'F', 509), +(207025, 'Gwendolyn', 2011, 'F', 509), +(207026, 'Giana', 2011, 'F', 508), +(207027, 'Jazlynn', 2011, 'F', 507), +(207028, 'Virginia', 2011, 'F', 507), +(207029, 'Ryan', 2011, 'F', 506), +(207030, 'Marisol', 2011, 'F', 505), +(207031, 'Selah', 2011, 'F', 505), +(207032, 'Myah', 2011, 'F', 501), +(207033, 'Elsa', 2011, 'F', 499), +(207034, 'Melina', 2011, 'F', 498), +(207035, 'Adelynn', 2011, 'F', 495), +(207036, 'Sariah', 2011, 'F', 494), +(207037, 'Aryanna', 2011, 'F', 493), +(207038, 'Kaylynn', 2011, 'F', 492), +(207039, 'Raelyn', 2011, 'F', 492), +(207040, 'Helena', 2011, 'F', 491), +(207041, 'Miah', 2011, 'F', 491), +(207042, 'Amara', 2011, 'F', 490), +(207043, 'Maeve', 2011, 'F', 489), +(207044, 'Jaylee', 2011, 'F', 488), +(207045, 'Linda', 2011, 'F', 488), +(207046, 'Raven', 2011, 'F', 488), +(207047, 'Anne', 2011, 'F', 485), +(207048, 'Desiree', 2011, 'F', 482), +(207049, 'Madalynn', 2011, 'F', 480), +(207050, 'Clarissa', 2011, 'F', 479), +(207051, 'Marie', 2011, 'F', 479), +(207052, 'Elyse', 2011, 'F', 478), +(207053, 'Kaia', 2011, 'F', 477), +(207054, 'Meredith', 2011, 'F', 477), +(207055, 'Hallie', 2011, 'F', 476), +(207056, 'Elisabeth', 2011, 'F', 475), +(207057, 'Alissa', 2011, 'F', 474), +(207058, 'Siena', 2011, 'F', 474), +(207059, 'Anabella', 2011, 'F', 473), +(207060, 'Claudia', 2011, 'F', 473), +(207061, 'Denise', 2011, 'F', 473), +(207062, 'Cara', 2011, 'F', 472), +(207063, 'Danika', 2011, 'F', 472), +(207064, 'Kimora', 2011, 'F', 472), +(207065, 'Zion', 2011, 'F', 471), +(207066, 'Ansley', 2011, 'F', 470), +(207067, 'Maleah', 2011, 'F', 470), +(207068, 'Milan', 2011, 'F', 470), +(207069, 'Dana', 2011, 'F', 469), +(207070, 'Marina', 2011, 'F', 469), +(207071, 'Sandra', 2011, 'F', 469), +(207072, 'Halle', 2011, 'F', 467), +(207073, 'Saniyah', 2011, 'F', 466), +(207074, 'Harlow', 2011, 'F', 465), +(207075, 'Rosa', 2011, 'F', 465), +(207076, 'Casey', 2011, 'F', 463), +(207077, 'Kassandra', 2011, 'F', 463), +(207078, 'Shiloh', 2011, 'F', 463), +(207079, 'Adele', 2011, 'F', 461), +(207080, 'Charley', 2011, 'F', 460), +(207081, 'Tori', 2011, 'F', 458), +(207082, 'Kiana', 2011, 'F', 454), +(207083, 'Ariella', 2011, 'F', 451), +(207084, 'Kathleen', 2011, 'F', 451), +(207085, 'Isis', 2011, 'F', 448), +(207086, 'Aisha', 2011, 'F', 447), +(207087, 'Janessa', 2011, 'F', 447), +(207088, 'Jaylene', 2011, 'F', 447), +(207089, 'Raquel', 2011, 'F', 447), +(207090, 'Joslyn', 2011, 'F', 446), +(207091, 'Karlee', 2011, 'F', 446), +(207092, 'Amya', 2011, 'F', 445), +(207093, 'Ayanna', 2011, 'F', 445), +(207094, 'Cindy', 2011, 'F', 444), +(207095, 'Evie', 2011, 'F', 444), +(207096, 'Lylah', 2011, 'F', 444), +(207097, 'Perla', 2011, 'F', 444), +(207098, 'Zara', 2011, 'F', 444), +(207099, 'Simone', 2011, 'F', 443), +(207100, 'Phoenix', 2011, 'F', 442), +(207101, 'Catalina', 2011, 'F', 440), +(207102, 'Bria', 2011, 'F', 439), +(207103, 'Lilianna', 2011, 'F', 439), +(207104, 'Kristina', 2011, 'F', 437), +(207105, 'Mollie', 2011, 'F', 436), +(207106, 'Rosemary', 2011, 'F', 436), +(207107, 'Briley', 2011, 'F', 435), +(207108, 'Cecelia', 2011, 'F', 433), +(207109, 'Lindsay', 2011, 'F', 433), +(207110, 'Aliya', 2011, 'F', 432), +(207111, 'Asia', 2011, 'F', 432), +(207112, 'Kourtney', 2011, 'F', 429), +(207113, 'Elin', 2011, 'F', 428), +(207114, 'Kristen', 2011, 'F', 428), +(207115, 'Patricia', 2011, 'F', 427), +(207116, 'Yasmin', 2011, 'F', 427), +(207117, 'Aiyana', 2011, 'F', 426), +(207118, 'Isabela', 2011, 'F', 426), +(207119, 'Felicity', 2011, 'F', 425), +(207120, 'Alani', 2011, 'F', 424), +(207121, 'Amiya', 2011, 'F', 423), +(207122, 'Adrienne', 2011, 'F', 422), +(207123, 'Ember', 2011, 'F', 422), +(207124, 'Mariyah', 2011, 'F', 422), +(207125, 'Kailee', 2011, 'F', 421), +(207126, 'Aliana', 2011, 'F', 419), +(207127, 'Ally', 2011, 'F', 419), +(207128, 'Mariam', 2011, 'F', 419), +(207129, 'Tabitha', 2011, 'F', 417), +(207130, 'Bryanna', 2011, 'F', 416), +(207131, 'Wendy', 2011, 'F', 415), +(207132, 'Clare', 2011, 'F', 414), +(207133, 'Noemi', 2011, 'F', 414), +(207134, 'Maia', 2011, 'F', 412), +(207135, 'Sidney', 2011, 'F', 412), +(207136, 'Aimee', 2011, 'F', 411), +(207137, 'Karsyn', 2011, 'F', 411), +(207138, 'Greta', 2011, 'F', 410), +(207139, 'Laylah', 2011, 'F', 410), +(207140, 'Gracelynn', 2011, 'F', 407), +(207141, 'Jayde', 2011, 'F', 407), +(207142, 'Jessie', 2011, 'F', 407), +(207143, 'Kallie', 2011, 'F', 407), +(207144, 'Kaleigh', 2011, 'F', 406), +(207145, 'Leanna', 2011, 'F', 406), +(207146, 'Lesly', 2011, 'F', 404), +(207147, 'Irene', 2011, 'F', 403), +(207148, 'Paityn', 2011, 'F', 403), +(207149, 'Amelie', 2011, 'F', 400), +(207150, 'Ellen', 2011, 'F', 400), +(207151, 'Elaine', 2011, 'F', 399), +(207152, 'Iliana', 2011, 'F', 399), +(207153, 'Lillianna', 2011, 'F', 398), +(207154, 'Rylan', 2011, 'F', 398), +(207155, 'Taryn', 2011, 'F', 398), +(207156, 'Beatrice', 2011, 'F', 396), +(207157, 'Lisa', 2011, 'F', 395), +(207158, 'Emersyn', 2011, 'F', 394), +(207159, 'Lailah', 2011, 'F', 394), +(207160, 'Chaya', 2011, 'F', 393), +(207161, 'Braelynn', 2011, 'F', 391), +(207162, 'Heather', 2011, 'F', 391), +(207163, 'Shannon', 2011, 'F', 391), +(207164, 'Janae', 2011, 'F', 389), +(207165, 'Ali', 2011, 'F', 388), +(207166, 'Jaylin', 2011, 'F', 388), +(207167, 'Taliyah', 2011, 'F', 388), +(207168, 'Arya', 2011, 'F', 387), +(207169, 'Emilie', 2011, 'F', 386), +(207170, 'Jaida', 2011, 'F', 385), +(207171, 'Journee', 2011, 'F', 385), +(207172, 'Cherish', 2011, 'F', 384), +(207173, 'Destinee', 2011, 'F', 384), +(207174, 'Sawyer', 2011, 'F', 384), +(207175, 'Kaya', 2011, 'F', 383), +(207176, 'Emmalee', 2011, 'F', 382), +(207177, 'Elianna', 2011, 'F', 381), +(207178, 'Armani', 2011, 'F', 380), +(207179, 'Charli', 2011, 'F', 380), +(207180, 'Ivanna', 2011, 'F', 380), +(207181, 'Jocelynn', 2011, 'F', 380), +(207182, 'Rihanna', 2011, 'F', 380), +(207183, 'Alia', 2011, 'F', 378), +(207184, 'Christine', 2011, 'F', 378), +(207185, 'Kaitlynn', 2011, 'F', 377), +(207186, 'Zaniyah', 2011, 'F', 377), +(207187, 'Reyna', 2011, 'F', 376), +(207188, 'Leyla', 2011, 'F', 375), +(207189, 'Mckayla', 2011, 'F', 374), +(207190, 'Macey', 2011, 'F', 373), +(207191, 'Meghan', 2011, 'F', 373), +(207192, 'Raina', 2011, 'F', 373), +(207193, 'Celia', 2011, 'F', 372), +(207194, 'Carolyn', 2011, 'F', 371), +(207195, 'Alayah', 2011, 'F', 370), +(207196, 'Bryn', 2011, 'F', 369), +(207197, 'Eileen', 2011, 'F', 369), +(207198, 'Kynlee', 2011, 'F', 369), +(207199, 'Alena', 2011, 'F', 368), +(207200, 'Carla', 2011, 'F', 368), +(207201, 'Carlee', 2011, 'F', 368), +(207202, 'Jolie', 2011, 'F', 368), +(207203, 'Emelia', 2011, 'F', 366), +(207204, 'Keyla', 2011, 'F', 366), +(207205, 'Saniya', 2011, 'F', 366), +(207206, 'Livia', 2011, 'F', 365), +(207207, 'Amina', 2011, 'F', 364), +(207208, 'Krystal', 2011, 'F', 364), +(207209, 'Zaria', 2011, 'F', 363), +(207210, 'Angeline', 2011, 'F', 362), +(207211, 'Mercedes', 2011, 'F', 362), +(207212, 'Barbara', 2011, 'F', 361), +(207213, 'Jenny', 2011, 'F', 361), +(207214, 'Paulina', 2011, 'F', 361), +(207215, 'Renata', 2011, 'F', 361), +(207216, 'Martha', 2011, 'F', 360), +(207217, 'Diamond', 2011, 'F', 359), +(207218, 'Alisha', 2011, 'F', 356), +(207219, 'Aviana', 2011, 'F', 356), +(207220, 'Ayleen', 2011, 'F', 356), +(207221, 'Jaqueline', 2011, 'F', 354), +(207222, 'Susan', 2011, 'F', 353), +(207223, 'Maryam', 2011, 'F', 352), +(207224, 'Matilda', 2011, 'F', 352), +(207225, 'Edith', 2011, 'F', 351), +(207226, 'Giada', 2011, 'F', 351), +(207227, 'Julianne', 2011, 'F', 351), +(207228, 'Sonia', 2011, 'F', 351), +(207229, 'Audriana', 2011, 'F', 350), +(207230, 'Emmy', 2011, 'F', 350), +(207231, 'Kaylyn', 2011, 'F', 350), +(207232, 'Tegan', 2011, 'F', 350), +(207233, 'Charleigh', 2011, 'F', 349), +(207234, 'Leia', 2011, 'F', 349), +(207235, 'Frances', 2011, 'F', 348), +(207236, 'Haleigh', 2011, 'F', 347), +(207237, 'Mira', 2011, 'F', 347), +(207238, 'Kendal', 2011, 'F', 346), +(207239, 'Nathaly', 2011, 'F', 346), +(207240, 'Giovanna', 2011, 'F', 345), +(207241, 'Amirah', 2011, 'F', 344), +(207242, 'Jordynn', 2011, 'F', 344), +(207243, 'Addilyn', 2011, 'F', 342), +(207244, 'Hadassah', 2011, 'F', 342), +(207245, 'Kaitlin', 2011, 'F', 342), +(207246, 'Myra', 2011, 'F', 342), +(207247, 'Kyndall', 2011, 'F', 341), +(207248, 'Samiyah', 2011, 'F', 341), +(207249, 'Corinne', 2011, 'F', 340), +(207250, 'Abbie', 2011, 'F', 339), +(207251, 'Kaiya', 2011, 'F', 339), +(207252, 'Taraji', 2011, 'F', 339), +(207253, 'Jazmyn', 2011, 'F', 338), +(207254, 'Lorelai', 2011, 'F', 338), +(207255, 'Braylee', 2011, 'F', 337), +(207256, 'Mae', 2011, 'F', 337), +(207257, 'Abril', 2011, 'F', 335), +(207258, 'Pearl', 2011, 'F', 335), +(207259, 'Kenya', 2011, 'F', 334), +(207260, 'Rayne', 2011, 'F', 334), +(207261, 'Alisson', 2011, 'F', 333), +(207262, 'Haylie', 2011, 'F', 333), +(207263, 'Brisa', 2011, 'F', 332), +(207264, 'Deborah', 2011, 'F', 332), +(207265, 'Mina', 2011, 'F', 332), +(207266, 'Ryann', 2011, 'F', 330), +(207267, 'America', 2011, 'F', 329), +(207268, 'Milania', 2011, 'F', 327), +(207269, 'Araceli', 2011, 'F', 326), +(207270, 'Millie', 2011, 'F', 326), +(207271, 'Blake', 2011, 'F', 325), +(207272, 'Deanna', 2011, 'F', 325), +(207273, 'Demi', 2011, 'F', 324), +(207274, 'Moriah', 2011, 'F', 323), +(207275, 'Paula', 2011, 'F', 323), +(207276, 'Gisselle', 2011, 'F', 322), +(207277, 'Karissa', 2011, 'F', 322), +(207278, 'Sharon', 2011, 'F', 322), +(207279, 'Rachael', 2011, 'F', 321), +(207280, 'Chanel', 2011, 'F', 320), +(207281, 'Aryana', 2011, 'F', 319), +(207282, 'Kensley', 2011, 'F', 319), +(207283, 'Natalya', 2011, 'F', 319), +(207284, 'Renee', 2011, 'F', 318), +(207285, 'Hayleigh', 2011, 'F', 317), +(207286, 'Jemma', 2011, 'F', 317), +(207287, 'Avianna', 2011, 'F', 316), +(207288, 'Paloma', 2011, 'F', 316), +(207289, 'Hana', 2011, 'F', 315), +(207290, 'Kenna', 2011, 'F', 315), +(207291, 'Judith', 2011, 'F', 314), +(207292, 'Patience', 2011, 'F', 314), +(207293, 'Zariyah', 2011, 'F', 314), +(207294, 'Alyvia', 2011, 'F', 313), +(207295, 'Chana', 2011, 'F', 313), +(207296, 'Kinsey', 2011, 'F', 313), +(207297, 'Zuri', 2011, 'F', 313), +(207298, 'Mara', 2011, 'F', 312), +(207299, 'Saanvi', 2011, 'F', 312), +(207300, 'Salma', 2011, 'F', 312), +(207301, 'Carlie', 2011, 'F', 310), +(207302, 'Averi', 2011, 'F', 309), +(207303, 'Charity', 2011, 'F', 309), +(207304, 'Cristina', 2011, 'F', 309), +(207305, 'Dixie', 2011, 'F', 309), +(207306, 'Kaylen', 2011, 'F', 309), +(207307, 'Kirsten', 2011, 'F', 309), +(207308, 'Lina', 2011, 'F', 309), +(207309, 'Larissa', 2011, 'F', 308), +(207310, 'Lilyanna', 2011, 'F', 308), +(207311, 'Marisa', 2011, 'F', 308), +(207312, 'Ingrid', 2011, 'F', 307), +(207313, 'Tianna', 2011, 'F', 307), +(207314, 'Nahla', 2011, 'F', 305), +(207315, 'Princess', 2011, 'F', 305), +(207316, 'Lilia', 2011, 'F', 304), +(207317, 'Sherlyn', 2011, 'F', 302), +(207318, 'Yoselin', 2011, 'F', 302), +(207319, 'Adyson', 2011, 'F', 301), +(207320, 'Aubrianna', 2011, 'F', 301), +(207321, 'Cailyn', 2011, 'F', 301), +(207322, 'Rayna', 2011, 'F', 301), +(207323, 'Luz', 2011, 'F', 300), +(207324, 'Tara', 2011, 'F', 300), +(207325, 'Cheyanne', 2011, 'F', 299), +(207326, 'Maritza', 2011, 'F', 299), +(207327, 'Elliot', 2011, 'F', 298), +(207328, 'Azaria', 2011, 'F', 297), +(207329, 'Jaiden', 2011, 'F', 297), +(207330, 'Marlene', 2011, 'F', 297), +(207331, 'Adelina', 2011, 'F', 296), +(207332, 'Esperanza', 2011, 'F', 296), +(207333, 'Jacey', 2011, 'F', 296), +(207334, 'Jakayla', 2011, 'F', 296), +(207335, 'Roselyn', 2011, 'F', 296), +(207336, 'Yesenia', 2011, 'F', 296), +(207337, 'Ayana', 2011, 'F', 295), +(207338, 'Kiersten', 2011, 'F', 295), +(207339, 'Alma', 2011, 'F', 294), +(207340, 'Jadyn', 2011, 'F', 294), +(207341, 'Kai', 2011, 'F', 294), +(207342, 'Nova', 2011, 'F', 294), +(207343, 'Avah', 2011, 'F', 293), +(207344, 'Neveah', 2011, 'F', 293), +(207345, 'Meadow', 2011, 'F', 292), +(207346, 'Nola', 2011, 'F', 292), +(207347, 'Tamia', 2011, 'F', 292), +(207348, 'Alaya', 2011, 'F', 291), +(207349, 'Carley', 2011, 'F', 291), +(207350, 'Sloan', 2011, 'F', 291), +(207351, 'River', 2011, 'F', 290), +(207352, 'Sanaa', 2011, 'F', 290), +(207353, 'Kailynn', 2011, 'F', 289), +(207354, 'Karis', 2011, 'F', 289), +(207355, 'Diya', 2011, 'F', 288), +(207356, 'Micah', 2011, 'F', 288), +(207357, 'Rory', 2011, 'F', 288), +(207358, 'Abbey', 2011, 'F', 287), +(207359, 'Bentley', 2011, 'F', 287), +(207360, 'Jaidyn', 2011, 'F', 287), +(207361, 'Maliah', 2011, 'F', 287), +(207362, 'Belen', 2011, 'F', 286), +(207363, 'Britney', 2011, 'F', 286), +(207364, 'Malaya', 2011, 'F', 286), +(207365, 'Shania', 2011, 'F', 286), +(207366, 'Tia', 2011, 'F', 286), +(207367, 'Aubri', 2011, 'F', 284), +(207368, 'Yazmin', 2011, 'F', 284), +(207369, 'Alannah', 2011, 'F', 283), +(207370, 'Carissa', 2011, 'F', 282), +(207371, 'Jolene', 2011, 'F', 282), +(207372, 'Karlie', 2011, 'F', 282), +(207373, 'Shaniya', 2011, 'F', 282), +(207374, 'Bryleigh', 2011, 'F', 281), +(207375, 'Laurel', 2011, 'F', 281), +(207376, 'Tess', 2011, 'F', 281), +(207377, 'Yamilet', 2011, 'F', 281), +(207378, 'Aliza', 2011, 'F', 280), +(207379, 'Leona', 2011, 'F', 280), +(207380, 'Lilith', 2011, 'F', 280), +(207381, 'Libby', 2011, 'F', 279), +(207382, 'Blakely', 2011, 'F', 278), +(207383, 'Lara', 2011, 'F', 278), +(207384, 'Campbell', 2011, 'F', 276), +(207385, 'Dorothy', 2011, 'F', 276), +(207386, 'Kaelynn', 2011, 'F', 276), +(207387, 'Regan', 2011, 'F', 276), +(207388, 'Yaritza', 2011, 'F', 276), +(207389, 'Akira', 2011, 'F', 275), +(207390, 'Kyndal', 2011, 'F', 275), +(207391, 'Mattie', 2011, 'F', 275), +(207392, 'Audrianna', 2011, 'F', 274), +(207393, 'Kasey', 2011, 'F', 274), +(207394, 'Kylah', 2011, 'F', 274), +(207395, 'Temperance', 2011, 'F', 274), +(207396, 'Julieta', 2011, 'F', 273), +(207397, 'Kelsie', 2011, 'F', 273), +(207398, 'Saige', 2011, 'F', 273), +(207399, 'Tinley', 2011, 'F', 273), +(207400, 'Jewel', 2011, 'F', 272), +(207401, 'Cambria', 2011, 'F', 271), +(207402, 'Miya', 2011, 'F', 271), +(207403, 'Ashtyn', 2011, 'F', 270), +(207404, 'Dalia', 2011, 'F', 269), +(207405, 'Liv', 2011, 'F', 269), +(207406, 'Janet', 2011, 'F', 268), +(207407, 'Juniper', 2011, 'F', 268), +(207408, 'Kairi', 2011, 'F', 268), +(207409, 'Aleigha', 2011, 'F', 267), +(207410, 'Analia', 2011, 'F', 267), +(207411, 'Bree', 2011, 'F', 267), +(207412, 'Carleigh', 2011, 'F', 266), +(207413, 'Pamela', 2011, 'F', 266), +(207414, 'Rivka', 2011, 'F', 266), +(207415, 'Sarahi', 2011, 'F', 266), +(207416, 'Yamileth', 2011, 'F', 266), +(207417, 'Geraldine', 2011, 'F', 265), +(207418, 'Leigha', 2011, 'F', 265), +(207419, 'Malaysia', 2011, 'F', 265), +(207420, 'Riya', 2011, 'F', 265), +(207421, 'Abrielle', 2011, 'F', 264), +(207422, 'Annabell', 2011, 'F', 264), +(207423, 'Gwyneth', 2011, 'F', 264), +(207424, 'Izabelle', 2011, 'F', 264), +(207425, 'Marianna', 2011, 'F', 264), +(207426, 'Samiya', 2011, 'F', 264), +(207427, 'Alianna', 2011, 'F', 263), +(207428, 'Jaylyn', 2011, 'F', 263), +(207429, 'Joyce', 2011, 'F', 263), +(207430, 'Blair', 2011, 'F', 262), +(207431, 'Caydence', 2011, 'F', 262), +(207432, 'Esme', 2011, 'F', 262), +(207433, 'Isabell', 2011, 'F', 261), +(207434, 'Jaden', 2011, 'F', 261), +(207435, 'Kendyl', 2011, 'F', 260), +(207436, 'Kimber', 2011, 'F', 260), +(207437, 'Sariyah', 2011, 'F', 260), +(207438, 'Willa', 2011, 'F', 260), +(207439, 'Milagros', 2011, 'F', 259), +(207440, 'Sky', 2011, 'F', 259), +(207441, 'Stacy', 2011, 'F', 258), +(207442, 'Amalia', 2011, 'F', 257), +(207443, 'Kamille', 2011, 'F', 256), +(207444, 'Karma', 2011, 'F', 256), +(207445, 'Thalia', 2011, 'F', 256), +(207446, 'Hattie', 2011, 'F', 255), +(207447, 'Karly', 2011, 'F', 255), +(207448, 'Anabel', 2011, 'F', 254), +(207449, 'Ann', 2011, 'F', 254), +(207450, 'Payten', 2011, 'F', 254), +(207451, 'Scarlette', 2011, 'F', 252), +(207452, 'Ariah', 2011, 'F', 251), +(207453, 'Damaris', 2011, 'F', 251), +(207454, 'Galilea', 2011, 'F', 251), +(207455, 'India', 2011, 'F', 251), +(207456, 'Milana', 2011, 'F', 251), +(207457, 'Yuliana', 2011, 'F', 251), +(207458, 'Emory', 2011, 'F', 250), +(207459, 'Ireland', 2011, 'F', 250), +(207460, 'Reina', 2011, 'F', 250), +(207461, 'Shyla', 2011, 'F', 250), +(207462, 'Delia', 2011, 'F', 249), +(207463, 'Keily', 2011, 'F', 248), +(207464, 'Sofie', 2011, 'F', 248), +(207465, 'Alisa', 2011, 'F', 247), +(207466, 'Evalyn', 2011, 'F', 247), +(207467, 'Marleigh', 2011, 'F', 247), +(207468, 'Mayra', 2011, 'F', 247), +(207469, 'Aiyanna', 2011, 'F', 246), +(207470, 'Mylee', 2011, 'F', 246), +(207471, 'Zahra', 2011, 'F', 245), +(207472, 'Charlize', 2011, 'F', 244), +(207473, 'Jacquelyn', 2011, 'F', 244), +(207474, 'Maite', 2011, 'F', 244), +(207475, 'Roxanne', 2011, 'F', 244), +(207476, 'Essence', 2011, 'F', 243), +(207477, 'Jamya', 2011, 'F', 243), +(207478, 'Lillyanna', 2011, 'F', 243), +(207479, 'Mercy', 2011, 'F', 243), +(207480, 'Milani', 2011, 'F', 243), +(207481, 'Monserrat', 2011, 'F', 243), +(207482, 'Tania', 2011, 'F', 243), +(207483, 'Heidy', 2011, 'F', 242), +(207484, 'Lyra', 2011, 'F', 242), +(207485, 'Aurelia', 2011, 'F', 241), +(207486, 'Devyn', 2011, 'F', 241), +(207487, 'Kierra', 2011, 'F', 241), +(207488, 'Kori', 2011, 'F', 240), +(207489, 'Laniyah', 2011, 'F', 240), +(207490, 'Noor', 2011, 'F', 240), +(207491, 'Sydnee', 2011, 'F', 240), +(207492, 'Winter', 2011, 'F', 240), +(207493, 'Aracely', 2011, 'F', 239), +(207494, 'Colette', 2011, 'F', 239), +(207495, 'Amaris', 2011, 'F', 238), +(207496, 'Belinda', 2011, 'F', 237), +(207497, 'Addie', 2011, 'F', 236), +(207498, 'Dallas', 2011, 'F', 236), +(207499, 'Makena', 2011, 'F', 236), +(207500, 'Paislee', 2011, 'F', 236), +(207501, 'Azariah', 2011, 'F', 235), +(207502, 'Ellison', 2011, 'F', 235), +(207503, 'Nathalia', 2011, 'F', 235), +(207504, 'Ashanti', 2011, 'F', 234), +(207505, 'Ashton', 2011, 'F', 234), +(207506, 'Astrid', 2011, 'F', 234), +(207507, 'Azul', 2011, 'F', 234), +(207508, 'Estella', 2011, 'F', 234), +(207509, 'Gretchen', 2011, 'F', 234), +(207510, 'Noa', 2011, 'F', 234), +(207511, 'Xiomara', 2011, 'F', 234), +(207512, 'Kamari', 2011, 'F', 233), +(207513, 'Naima', 2011, 'F', 233), +(207514, 'Antonia', 2011, 'F', 232), +(207515, 'Elina', 2011, 'F', 232), +(207516, 'Jaylen', 2011, 'F', 232), +(207517, 'Kaidence', 2011, 'F', 232), +(207518, 'Tinsley', 2011, 'F', 232), +(207519, 'Alaysia', 2011, 'F', 231), +(207520, 'Cristal', 2011, 'F', 231), +(207521, 'Giavanna', 2011, 'F', 231), +(207522, 'Abagail', 2011, 'F', 230), +(207523, 'Ashleigh', 2011, 'F', 230), +(207524, 'Janiah', 2011, 'F', 230), +(207525, 'Katrina', 2011, 'F', 230), +(207526, 'Milena', 2011, 'F', 230), +(207527, 'Aanya', 2011, 'F', 229), +(207528, 'Kayleen', 2011, 'F', 229), +(207529, 'Bayleigh', 2011, 'F', 228), +(207530, 'Emmalynn', 2011, 'F', 228), +(207531, 'Everly', 2011, 'F', 228), +(207532, 'Ivana', 2011, 'F', 228), +(207533, 'Kaley', 2011, 'F', 228), +(207534, 'Aubriana', 2011, 'F', 227), +(207535, 'Carina', 2011, 'F', 227), +(207536, 'Jamiyah', 2011, 'F', 227), +(207537, 'Lianna', 2011, 'F', 227), +(207538, 'Emmaline', 2011, 'F', 226), +(207539, 'Karmen', 2011, 'F', 226), +(207540, 'Kora', 2011, 'F', 226), +(207541, 'Maren', 2011, 'F', 226), +(207542, 'Shyanne', 2011, 'F', 226), +(207543, 'Aliah', 2011, 'F', 225), +(207544, 'Amiah', 2011, 'F', 225), +(207545, 'Annelise', 2011, 'F', 225), +(207546, 'Karleigh', 2011, 'F', 225), +(207547, 'Remi', 2011, 'F', 225), +(207548, 'Ashlee', 2011, 'F', 224), +(207549, 'Coraline', 2011, 'F', 224), +(207550, 'Dalilah', 2011, 'F', 224), +(207551, 'Joelle', 2011, 'F', 224), +(207552, 'Luisa', 2011, 'F', 224), +(207553, 'Raylee', 2011, 'F', 224), +(207554, 'Selina', 2011, 'F', 224), +(207555, 'Annalee', 2011, 'F', 223), +(207556, 'Elissa', 2011, 'F', 223), +(207557, 'Lorena', 2011, 'F', 223), +(207558, 'Valery', 2011, 'F', 223), +(207559, 'Vienna', 2011, 'F', 223), +(207560, 'Aya', 2011, 'F', 222), +(207561, 'Ellianna', 2011, 'F', 222), +(207562, 'Frida', 2011, 'F', 222), +(207563, 'Jessa', 2011, 'F', 222), +(207564, 'Shreya', 2011, 'F', 222), +(207565, 'Tanya', 2011, 'F', 222), +(207566, 'Ariyah', 2011, 'F', 221), +(207567, 'Jaleah', 2011, 'F', 221), +(207568, 'Sanai', 2011, 'F', 221), +(207569, 'Savanah', 2011, 'F', 221), +(207570, 'Yasmine', 2011, 'F', 221), +(207571, 'Bonnie', 2011, 'F', 220), +(207572, 'Reece', 2011, 'F', 220), +(207573, 'Rebeca', 2011, 'F', 219), +(207574, 'Soraya', 2011, 'F', 219), +(207575, 'Zainab', 2011, 'F', 219), +(207576, 'Kaleah', 2011, 'F', 218), +(207577, 'Kamiyah', 2011, 'F', 218), +(207578, 'Berkley', 2011, 'F', 217), +(207579, 'Emme', 2011, 'F', 217), +(207580, 'Harlee', 2011, 'F', 217), +(207581, 'Unique', 2011, 'F', 217), +(207582, 'Caleigh', 2011, 'F', 216), +(207583, 'Iyanna', 2011, 'F', 216), +(207584, 'Jaslyn', 2011, 'F', 216), +(207585, 'Kailani', 2011, 'F', 216), +(207586, 'Maylee', 2011, 'F', 216), +(207587, 'Promise', 2011, 'F', 216), +(207588, 'Rubi', 2011, 'F', 216), +(207589, 'Tamara', 2011, 'F', 216), +(207590, 'Dania', 2011, 'F', 215), +(207591, 'Kloe', 2011, 'F', 215), +(207592, 'Landry', 2011, 'F', 215), +(207593, 'Maribel', 2011, 'F', 215), +(207594, 'Violeta', 2011, 'F', 215), +(207595, 'Kamilah', 2011, 'F', 214), +(207596, 'Karley', 2011, 'F', 214), +(207597, 'Leilah', 2011, 'F', 214), +(207598, 'Jana', 2011, 'F', 213), +(207599, 'Kaila', 2011, 'F', 213), +(207600, 'Magdalena', 2011, 'F', 213), +(207601, 'Rilynn', 2011, 'F', 213), +(207602, 'Samira', 2011, 'F', 213), +(207603, 'Shaylee', 2011, 'F', 213), +(207604, 'Theresa', 2011, 'F', 213), +(207605, 'Tiara', 2011, 'F', 213), +(207606, 'Abbygail', 2011, 'F', 212), +(207607, 'Desirae', 2011, 'F', 212), +(207608, 'Karli', 2011, 'F', 212), +(207609, 'Lillyana', 2011, 'F', 212), +(207610, 'Maryjane', 2011, 'F', 212), +(207611, 'Micaela', 2011, 'F', 212), +(207612, 'Areli', 2011, 'F', 211), +(207613, 'Kayley', 2011, 'F', 211), +(207614, 'Sally', 2011, 'F', 211), +(207615, 'Samaya', 2011, 'F', 211), +(207616, 'Yara', 2011, 'F', 211), +(207617, 'Lizeth', 2011, 'F', 210), +(207618, 'Malak', 2011, 'F', 210), +(207619, 'Aubrielle', 2011, 'F', 209), +(207620, 'Dani', 2011, 'F', 209), +(207621, 'Harmoni', 2011, 'F', 209), +(207622, 'Jazzlyn', 2011, 'F', 209), +(207623, 'Joslynn', 2011, 'F', 209), +(207624, 'Kalia', 2011, 'F', 209), +(207625, 'Calista', 2011, 'F', 208), +(207626, 'Cassie', 2011, 'F', 207), +(207627, 'Dominique', 2011, 'F', 207), +(207628, 'Freya', 2011, 'F', 207), +(207629, 'Wren', 2011, 'F', 206), +(207630, 'Alli', 2011, 'F', 205), +(207631, 'Amayah', 2011, 'F', 205), +(207632, 'Taylin', 2011, 'F', 205), +(207633, 'Yarely', 2011, 'F', 205), +(207634, 'Abigale', 2011, 'F', 204), +(207635, 'Annaliese', 2011, 'F', 204), +(207636, 'Kianna', 2011, 'F', 204), +(207637, 'Saylor', 2011, 'F', 204), +(207638, 'Avani', 2011, 'F', 203), +(207639, 'Leena', 2011, 'F', 203), +(207640, 'Suri', 2011, 'F', 203), +(207641, 'Annette', 2011, 'F', 202), +(207642, 'Brittney', 2011, 'F', 202), +(207643, 'Elliott', 2011, 'F', 202), +(207644, 'Fallon', 2011, 'F', 202), +(207645, 'Rhea', 2011, 'F', 202), +(207646, 'Stephany', 2011, 'F', 202), +(207647, 'Veda', 2011, 'F', 202), +(207648, 'Asha', 2011, 'F', 201), +(207649, 'Azalea', 2011, 'F', 201), +(207650, 'Celine', 2011, 'F', 201), +(207651, 'Kinlee', 2011, 'F', 201), +(207652, 'Leela', 2011, 'F', 201), +(207653, 'Abrianna', 2011, 'F', 200), +(207654, 'Jordin', 2011, 'F', 200), +(207655, 'Kamya', 2011, 'F', 200), +(207656, 'Katy', 2011, 'F', 200), +(207657, 'Donna', 2011, 'F', 199), +(207658, 'Estelle', 2011, 'F', 199), +(207659, 'Evelin', 2011, 'F', 199), +(207660, 'Honesty', 2011, 'F', 199), +(207661, 'Nalani', 2011, 'F', 199), +(207662, 'Rileigh', 2011, 'F', 199), +(207663, 'Anjali', 2011, 'F', 198), +(207664, 'Jenesis', 2011, 'F', 198), +(207665, 'Makaila', 2011, 'F', 198), +(207666, 'Somaya', 2011, 'F', 198), +(207667, 'Susana', 2011, 'F', 198), +(207668, 'Elayna', 2011, 'F', 197), +(207669, 'Ellery', 2011, 'F', 197), +(207670, 'Hunter', 2011, 'F', 197), +(207671, 'Lilyann', 2011, 'F', 197), +(207672, 'Louisa', 2011, 'F', 197), +(207673, 'Lucero', 2011, 'F', 197), +(207674, 'Precious', 2011, 'F', 197), +(207675, 'Zaniya', 2011, 'F', 197), +(207676, 'Abigayle', 2011, 'F', 196), +(207677, 'Gwen', 2011, 'F', 196), +(207678, 'Kaylah', 2011, 'F', 196), +(207679, 'Mabel', 2011, 'F', 196), +(207680, 'Carter', 2011, 'F', 195), +(207681, 'Cayla', 2011, 'F', 195), +(207682, 'Jaslene', 2011, 'F', 195), +(207683, 'Jersey', 2011, 'F', 195), +(207684, 'Marin', 2011, 'F', 195), +(207685, 'Yadira', 2011, 'F', 195), +(207686, 'Mariela', 2011, 'F', 194), +(207687, 'Brynley', 2011, 'F', 193), +(207688, 'Darlene', 2011, 'F', 193), +(207689, 'Jalynn', 2011, 'F', 193), +(207690, 'Lanie', 2011, 'F', 193), +(207691, 'Pyper', 2011, 'F', 193), +(207692, 'Yvette', 2011, 'F', 193), +(207693, 'Gracyn', 2011, 'F', 192), +(207694, 'Jaclyn', 2011, 'F', 192), +(207695, 'Keila', 2011, 'F', 192), +(207696, 'Kya', 2011, 'F', 192), +(207697, 'Melinda', 2011, 'F', 192), +(207698, 'Ziva', 2011, 'F', 192), +(207699, 'Capri', 2011, 'F', 191), +(207700, 'Carol', 2011, 'F', 191), +(207701, 'Janice', 2011, 'F', 191), +(207702, 'Magnolia', 2011, 'F', 191), +(207703, 'Mylah', 2011, 'F', 191), +(207704, 'Preslee', 2011, 'F', 191), +(207705, 'Stevie', 2011, 'F', 191), +(207706, 'Taniyah', 2011, 'F', 191), +(207707, 'Chasity', 2011, 'F', 190), +(207708, 'Izzabella', 2011, 'F', 190), +(207709, 'Jurnee', 2011, 'F', 190), +(207710, 'Raya', 2011, 'F', 190), +(207711, 'Treasure', 2011, 'F', 190), +(207712, 'Ailyn', 2011, 'F', 189), +(207713, 'Alanah', 2011, 'F', 189), +(207714, 'Makiyah', 2011, 'F', 189), +(207715, 'Roxana', 2011, 'F', 189), +(207716, 'Soleil', 2011, 'F', 189), +(207717, 'Antonella', 2011, 'F', 188), +(207718, 'Brookelynn', 2011, 'F', 188), +(207719, 'Emmie', 2011, 'F', 188), +(207720, 'Gillian', 2011, 'F', 188), +(207721, 'Kaylani', 2011, 'F', 188), +(207722, 'Nyasia', 2011, 'F', 188), +(207723, 'Shirley', 2011, 'F', 188), +(207724, 'Silvia', 2011, 'F', 188), +(207725, 'Yahaira', 2011, 'F', 188), +(207726, 'Keeley', 2011, 'F', 187), +(207727, 'Kamora', 2011, 'F', 186), +(207728, 'Maddie', 2011, 'F', 186), +(207729, 'Marlie', 2011, 'F', 186), +(207730, 'Dayanna', 2011, 'F', 185), +(207731, 'Ellis', 2011, 'F', 185), +(207732, 'Evangelina', 2011, 'F', 185), +(207733, 'Keely', 2011, 'F', 185), +(207734, 'Krista', 2011, 'F', 185), +(207735, 'Margot', 2011, 'F', 185), +(207736, 'Miyah', 2011, 'F', 185), +(207737, 'Scout', 2011, 'F', 185), +(207738, 'Hailie', 2011, 'F', 184), +(207739, 'Iyana', 2011, 'F', 184), +(207740, 'Mika', 2011, 'F', 184), +(207741, 'Shayna', 2011, 'F', 184), +(207742, 'Cierra', 2011, 'F', 183), +(207743, 'Sheila', 2011, 'F', 183), +(207744, 'Aditi', 2011, 'F', 182), +(207745, 'Hadlee', 2011, 'F', 182), +(207746, 'Lidia', 2011, 'F', 182), +(207747, 'Peighton', 2011, 'F', 182), +(207748, 'Tayla', 2011, 'F', 182), +(207749, 'Analise', 2011, 'F', 181), +(207750, 'Anita', 2011, 'F', 181), +(207751, 'Chelsey', 2011, 'F', 181), +(207752, 'Cordelia', 2011, 'F', 181), +(207753, 'Elia', 2011, 'F', 181), +(207754, 'Makenzi', 2011, 'F', 181), +(207755, 'Alora', 2011, 'F', 180), +(207756, 'Elora', 2011, 'F', 180), +(207757, 'Emani', 2011, 'F', 180), +(207758, 'Maura', 2011, 'F', 180), +(207759, 'Remy', 2011, 'F', 180), +(207760, 'Sahara', 2011, 'F', 180), +(207761, 'Tyler', 2011, 'F', 180), +(207762, 'Adelle', 2011, 'F', 179), +(207763, 'Alexus', 2011, 'F', 179), +(207764, 'Anisa', 2011, 'F', 179), +(207765, 'Aniston', 2011, 'F', 179), +(207766, 'Ariyana', 2011, 'F', 179), +(207767, 'Arlene', 2011, 'F', 179), +(207768, 'Bridgette', 2011, 'F', 179), +(207769, 'Colbie', 2011, 'F', 179), +(207770, 'Josslyn', 2011, 'F', 179), +(207771, 'Lillyann', 2011, 'F', 179), +(207772, 'Ananya', 2011, 'F', 178), +(207773, 'Carson', 2011, 'F', 178), +(207774, 'Arden', 2011, 'F', 177), +(207775, 'Collins', 2011, 'F', 177), +(207776, 'Isha', 2011, 'F', 177), +(207777, 'Vivianna', 2011, 'F', 177), +(207778, 'Elyssa', 2011, 'F', 176), +(207779, 'Samya', 2011, 'F', 176), +(207780, 'Ariadne', 2011, 'F', 175), +(207781, 'Christiana', 2011, 'F', 175), +(207782, 'Lesley', 2011, 'F', 175), +(207783, 'Malayah', 2011, 'F', 175), +(207784, 'Vivien', 2011, 'F', 175), +(207785, 'Amyah', 2011, 'F', 174), +(207786, 'Ayva', 2011, 'F', 174), +(207787, 'Kayli', 2011, 'F', 174), +(207788, 'Ramona', 2011, 'F', 174), +(207789, 'Tina', 2011, 'F', 174), +(207790, 'Audra', 2011, 'F', 173), +(207791, 'Caelyn', 2011, 'F', 173), +(207792, 'Dina', 2011, 'F', 173), +(207793, 'Kyrie', 2011, 'F', 173), +(207794, 'Mireya', 2011, 'F', 173), +(207795, 'Montserrat', 2011, 'F', 173), +(207796, 'Brandi', 2011, 'F', 172), +(207797, 'Jamiya', 2011, 'F', 172), +(207798, 'Lacie', 2011, 'F', 172), +(207799, 'Sunny', 2011, 'F', 172), +(207800, 'Brynna', 2011, 'F', 171), +(207801, 'Harleigh', 2011, 'F', 171), +(207802, 'Kathy', 2011, 'F', 171), +(207803, 'Marcella', 2011, 'F', 171), +(207804, 'Shea', 2011, 'F', 171), +(207805, 'Ariya', 2011, 'F', 170), +(207806, 'Drew', 2011, 'F', 170), +(207807, 'Eryn', 2011, 'F', 170), +(207808, 'Justine', 2011, 'F', 170), +(207809, 'Kaycee', 2011, 'F', 170), +(207810, 'Selene', 2011, 'F', 170), +(207811, 'Sonya', 2011, 'F', 170), +(207812, 'Alessia', 2011, 'F', 169), +(207813, 'Izabel', 2011, 'F', 169), +(207814, 'Jazmyne', 2011, 'F', 169), +(207815, 'Joselin', 2011, 'F', 169), +(207816, 'Kalea', 2011, 'F', 169), +(207817, 'Maiya', 2011, 'F', 169), +(207818, 'Makaylah', 2011, 'F', 169), +(207819, 'Nailah', 2011, 'F', 169), +(207820, 'Susanna', 2011, 'F', 169), +(207821, 'Sarina', 2011, 'F', 168), +(207822, 'Stacey', 2011, 'F', 168), +(207823, 'Alex', 2011, 'F', 167), +(207824, 'Anneliese', 2011, 'F', 167), +(207825, 'Johana', 2011, 'F', 167), +(207826, 'Rita', 2011, 'F', 167), +(207827, 'Anaiah', 2011, 'F', 166), +(207828, 'Betty', 2011, 'F', 166), +(207829, 'Hillary', 2011, 'F', 166), +(207830, 'Leticia', 2011, 'F', 166), +(207831, 'Addalyn', 2011, 'F', 165), +(207832, 'Amariah', 2011, 'F', 165), +(207833, 'Ashly', 2011, 'F', 165), +(207834, 'Christian', 2011, 'F', 165), +(207835, 'Kalli', 2011, 'F', 165), +(207836, 'Laniya', 2011, 'F', 165), +(207837, 'Lilyan', 2011, 'F', 165), +(207838, 'Lucinda', 2011, 'F', 165), +(207839, 'Margarita', 2011, 'F', 165), +(207840, 'Nariah', 2011, 'F', 165), +(207841, 'Noel', 2011, 'F', 165), +(207842, 'Penny', 2011, 'F', 165), +(207843, 'Adrian', 2011, 'F', 164), +(207844, 'Anniston', 2011, 'F', 164), +(207845, 'Farah', 2011, 'F', 164), +(207846, 'Jackeline', 2011, 'F', 164), +(207847, 'Jovie', 2011, 'F', 164), +(207848, 'Katarina', 2011, 'F', 164), +(207849, 'Yaretzy', 2011, 'F', 164), +(207850, 'Avalyn', 2011, 'F', 163), +(207851, 'Camdyn', 2011, 'F', 163), +(207852, 'Carsyn', 2011, 'F', 163), +(207853, 'Chyna', 2011, 'F', 163), +(207854, 'Gina', 2011, 'F', 163), +(207855, 'Hadleigh', 2011, 'F', 163), +(207856, 'Jailyn', 2011, 'F', 163), +(207857, 'Kristin', 2011, 'F', 163), +(207858, 'Maycee', 2011, 'F', 163), +(207859, 'Nicolette', 2011, 'F', 163), +(207860, 'Shaila', 2011, 'F', 163), +(207861, 'Adamaris', 2011, 'F', 162), +(207862, 'Kacey', 2011, 'F', 162), +(207863, 'Nichole', 2011, 'F', 162), +(207864, 'Robyn', 2011, 'F', 162), +(207865, 'Zaylee', 2011, 'F', 162), +(207866, 'Amia', 2011, 'F', 161), +(207867, 'Celina', 2011, 'F', 161), +(207868, 'Ema', 2011, 'F', 161), +(207869, 'Toni', 2011, 'F', 161), +(207870, 'Anais', 2011, 'F', 160), +(207871, 'Ariyanna', 2011, 'F', 160), +(207872, 'Destini', 2011, 'F', 160), +(207873, 'Devin', 2011, 'F', 160), +(207874, 'Emmeline', 2011, 'F', 160), +(207875, 'Gisele', 2011, 'F', 160), +(207876, 'Lillyan', 2011, 'F', 160), +(207877, 'Lucie', 2011, 'F', 160), +(207878, 'Sahana', 2011, 'F', 160), +(207879, 'Savana', 2011, 'F', 160), +(207880, 'Carli', 2011, 'F', 159), +(207881, 'Kenia', 2011, 'F', 159), +(207882, 'Londynn', 2011, 'F', 159), +(207883, 'Rosalyn', 2011, 'F', 159), +(207884, 'Shaniyah', 2011, 'F', 159), +(207885, 'Sylvie', 2011, 'F', 159), +(207886, 'Aleeah', 2011, 'F', 158), +(207887, 'Aniah', 2011, 'F', 158), +(207888, 'Maxine', 2011, 'F', 158), +(207889, 'Taniya', 2011, 'F', 158), +(207890, 'Aliyana', 2011, 'F', 157), +(207891, 'Elly', 2011, 'F', 157), +(207892, 'Ericka', 2011, 'F', 157), +(207893, 'Geneva', 2011, 'F', 157), +(207894, 'Kalani', 2011, 'F', 157), +(207895, 'Maylin', 2011, 'F', 157), +(207896, 'Nala', 2011, 'F', 157), +(207897, 'Oakley', 2011, 'F', 157), +(207898, 'Jael', 2011, 'F', 156), +(207899, 'Kenzi', 2011, 'F', 156), +(207900, 'Khloee', 2011, 'F', 156), +(207901, 'Malka', 2011, 'F', 156), +(207902, 'Zoya', 2011, 'F', 156), +(207903, 'Abygail', 2011, 'F', 155), +(207904, 'Felicia', 2011, 'F', 155), +(207905, 'Jaya', 2011, 'F', 155), +(207906, 'Katalina', 2011, 'F', 155), +(207907, 'Rhiannon', 2011, 'F', 155), +(207908, 'Whitley', 2011, 'F', 155), +(207909, 'Addilynn', 2011, 'F', 154), +(207910, 'Colleen', 2011, 'F', 154), +(207911, 'Emerie', 2011, 'F', 154), +(207912, 'Lilli', 2011, 'F', 154), +(207913, 'Mayte', 2011, 'F', 154), +(207914, 'Nikki', 2011, 'F', 154), +(207915, 'Evalynn', 2011, 'F', 153), +(207916, 'Kinslee', 2011, 'F', 153), +(207917, 'Nadine', 2011, 'F', 153), +(207918, 'Seraphina', 2011, 'F', 153), +(207919, 'Zaira', 2011, 'F', 153), +(207920, 'Adela', 2011, 'F', 152), +(207921, 'Aja', 2011, 'F', 152), +(207922, 'Annaleigh', 2011, 'F', 152), +(207923, 'Estefany', 2011, 'F', 152), +(207924, 'Laci', 2011, 'F', 152), +(207925, 'Shyann', 2011, 'F', 152), +(207926, 'Brinlee', 2011, 'F', 151), +(207927, 'Faye', 2011, 'F', 151), +(207928, 'Jaycie', 2011, 'F', 151), +(207929, 'Kaci', 2011, 'F', 151), +(207930, 'Marian', 2011, 'F', 151), +(207931, 'Samaria', 2011, 'F', 151), +(207932, 'Star', 2011, 'F', 151), +(207933, 'Taya', 2011, 'F', 151), +(207934, 'Vada', 2011, 'F', 151), +(207935, 'Brookelyn', 2011, 'F', 150), +(207936, 'Carrie', 2011, 'F', 150), +(207937, 'Destiney', 2011, 'F', 150), +(207938, 'Eleni', 2011, 'F', 150), +(207939, 'Grecia', 2011, 'F', 150), +(207940, 'Josselyn', 2011, 'F', 150), +(207941, 'Lizette', 2011, 'F', 150), +(207942, 'Noelia', 2011, 'F', 150), +(207943, 'Priya', 2011, 'F', 150), +(207944, 'Tatianna', 2011, 'F', 150), +(207945, 'Alize', 2011, 'F', 149), +(207946, 'Arianny', 2011, 'F', 149), +(207947, 'Aubry', 2011, 'F', 149), +(207948, 'Channing', 2011, 'F', 149), +(207949, 'Coral', 2011, 'F', 149), +(207950, 'Gwenyth', 2011, 'F', 149), +(207951, 'Ivory', 2011, 'F', 149), +(207952, 'Nyah', 2011, 'F', 149), +(207953, 'Zahara', 2011, 'F', 149), +(207954, 'Brea', 2011, 'F', 148); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(207955, 'Brylie', 2011, 'F', 148), +(207956, 'Citlali', 2011, 'F', 148), +(207957, 'Clementine', 2011, 'F', 148), +(207958, 'Everleigh', 2011, 'F', 148), +(207959, 'Jorja', 2011, 'F', 148), +(207960, 'Katerina', 2011, 'F', 148), +(207961, 'Mackenna', 2011, 'F', 148), +(207962, 'Aida', 2011, 'F', 147), +(207963, 'Alyse', 2011, 'F', 147), +(207964, 'Amerie', 2011, 'F', 147), +(207965, 'Andi', 2011, 'F', 147), +(207966, 'Nelly', 2011, 'F', 147), +(207967, 'Austyn', 2011, 'F', 146), +(207968, 'Brandy', 2011, 'F', 146), +(207969, 'Litzy', 2011, 'F', 146), +(207970, 'Melia', 2011, 'F', 146), +(207971, 'Tatyana', 2011, 'F', 146), +(207972, 'Thea', 2011, 'F', 146), +(207973, 'Wynter', 2011, 'F', 146), +(207974, 'Adalee', 2011, 'F', 145), +(207975, 'Robin', 2011, 'F', 145), +(207976, 'Adilene', 2011, 'F', 144), +(207977, 'Avalynn', 2011, 'F', 144), +(207978, 'Avril', 2011, 'F', 144), +(207979, 'Isadora', 2011, 'F', 144), +(207980, 'Meagan', 2011, 'F', 144), +(207981, 'Milla', 2011, 'F', 144), +(207982, 'Audrie', 2011, 'F', 143), +(207983, 'Dalila', 2011, 'F', 143), +(207984, 'Darla', 2011, 'F', 143), +(207985, 'Dianna', 2011, 'F', 143), +(207986, 'Jaela', 2011, 'F', 143), +(207987, 'Kamiya', 2011, 'F', 143), +(207988, 'Mariella', 2011, 'F', 143), +(207989, 'Adilyn', 2011, 'F', 142), +(207990, 'Adilynn', 2011, 'F', 142), +(207991, 'Amora', 2011, 'F', 142), +(207992, 'Arlette', 2011, 'F', 142), +(207993, 'Ayden', 2011, 'F', 142), +(207994, 'Beatriz', 2011, 'F', 142), +(207995, 'Darcy', 2011, 'F', 142), +(207996, 'Dayanara', 2011, 'F', 142), +(207997, 'Kahlan', 2011, 'F', 142), +(207998, 'Lacy', 2011, 'F', 142), +(207999, 'Monroe', 2011, 'F', 142), +(208000, 'Raniyah', 2011, 'F', 142), +(208001, 'Belle', 2011, 'F', 141), +(208002, 'Candace', 2011, 'F', 141), +(208003, 'Deasia', 2011, 'F', 141), +(208004, 'Eunice', 2011, 'F', 141), +(208005, 'Harlie', 2011, 'F', 141), +(208006, 'Jaci', 2011, 'F', 141), +(208007, 'Kenleigh', 2011, 'F', 141), +(208008, 'Keren', 2011, 'F', 141), +(208009, 'Lela', 2011, 'F', 141), +(208010, 'Natali', 2011, 'F', 141), +(208011, 'Naya', 2011, 'F', 141), +(208012, 'Rylynn', 2011, 'F', 141), +(208013, 'Caitlynn', 2011, 'F', 140), +(208014, 'Carmella', 2011, 'F', 140), +(208015, 'Chandler', 2011, 'F', 140), +(208016, 'Jacklyn', 2011, 'F', 140), +(208017, 'Mayah', 2011, 'F', 140), +(208018, 'Nya', 2011, 'F', 140), +(208019, 'Reilly', 2011, 'F', 140), +(208020, 'Roslyn', 2011, 'F', 140), +(208021, 'Adison', 2011, 'F', 139), +(208022, 'Amberly', 2011, 'F', 139), +(208023, 'Candice', 2011, 'F', 139), +(208024, 'Carys', 2011, 'F', 139), +(208025, 'Dariana', 2011, 'F', 139), +(208026, 'Deja', 2011, 'F', 139), +(208027, 'Leilany', 2011, 'F', 139), +(208028, 'Elisha', 2011, 'F', 138), +(208029, 'Gizelle', 2011, 'F', 138), +(208030, 'Jazelle', 2011, 'F', 138), +(208031, 'Kelsi', 2011, 'F', 138), +(208032, 'Kenlee', 2011, 'F', 138), +(208033, 'Keziah', 2011, 'F', 138), +(208034, 'Maisie', 2011, 'F', 138), +(208035, 'Maliya', 2011, 'F', 138), +(208036, 'Romina', 2011, 'F', 138), +(208037, 'Anissa', 2011, 'F', 137), +(208038, 'Constance', 2011, 'F', 137), +(208039, 'Holland', 2011, 'F', 137), +(208040, 'Janie', 2011, 'F', 137), +(208041, 'Makiya', 2011, 'F', 137), +(208042, 'Nikita', 2011, 'F', 137), +(208043, 'Delanie', 2011, 'F', 136), +(208044, 'Fabiola', 2011, 'F', 136), +(208045, 'Graciela', 2011, 'F', 136), +(208046, 'Jiselle', 2011, 'F', 136), +(208047, 'Roxanna', 2011, 'F', 136), +(208048, 'Vida', 2011, 'F', 136), +(208049, 'Allyssa', 2011, 'F', 135), +(208050, 'Angely', 2011, 'F', 135), +(208051, 'Audree', 2011, 'F', 135), +(208052, 'Beatrix', 2011, 'F', 135), +(208053, 'Cayleigh', 2011, 'F', 135), +(208054, 'Darby', 2011, 'F', 135), +(208055, 'Henley', 2011, 'F', 135), +(208056, 'Jackie', 2011, 'F', 135), +(208057, 'Persephone', 2011, 'F', 135), +(208058, 'Sheyla', 2011, 'F', 135), +(208059, 'Ari', 2011, 'F', 134), +(208060, 'Aubriella', 2011, 'F', 134), +(208061, 'Elana', 2011, 'F', 134), +(208062, 'Emi', 2011, 'F', 134), +(208063, 'Frankie', 2011, 'F', 134), +(208064, 'Katharine', 2011, 'F', 134), +(208065, 'Leanne', 2011, 'F', 134), +(208066, 'Rayleigh', 2011, 'F', 134), +(208067, 'Rosie', 2011, 'F', 134), +(208068, 'Viola', 2011, 'F', 134), +(208069, 'Arleth', 2011, 'F', 133), +(208070, 'Blanca', 2011, 'F', 133), +(208071, 'Brissa', 2011, 'F', 133), +(208072, 'Calleigh', 2011, 'F', 133), +(208073, 'Chiara', 2011, 'F', 133), +(208074, 'Dior', 2011, 'F', 133), +(208075, 'Emmaleigh', 2011, 'F', 133), +(208076, 'Katia', 2011, 'F', 133), +(208077, 'Kirra', 2011, 'F', 133), +(208078, 'Kynleigh', 2011, 'F', 133), +(208079, 'Makinley', 2011, 'F', 133), +(208080, 'Neriah', 2011, 'F', 133), +(208081, 'Rilee', 2011, 'F', 133), +(208082, 'Taelyn', 2011, 'F', 133), +(208083, 'Tallulah', 2011, 'F', 133), +(208084, 'Charlene', 2011, 'F', 132), +(208085, 'Denisse', 2011, 'F', 132), +(208086, 'Harmonie', 2011, 'F', 132), +(208087, 'Kacie', 2011, 'F', 132), +(208088, 'Melisa', 2011, 'F', 132), +(208089, 'Vianney', 2011, 'F', 132), +(208090, 'Adaline', 2011, 'F', 131), +(208091, 'Aminah', 2011, 'F', 131), +(208092, 'Issabella', 2011, 'F', 131), +(208093, 'Kiya', 2011, 'F', 131), +(208094, 'Magaly', 2011, 'F', 131), +(208095, 'Poppy', 2011, 'F', 131), +(208096, 'Analeigh', 2011, 'F', 130), +(208097, 'Betsy', 2011, 'F', 130), +(208098, 'Linnea', 2011, 'F', 130), +(208099, 'Monique', 2011, 'F', 130), +(208100, 'Skylah', 2011, 'F', 130), +(208101, 'Solange', 2011, 'F', 130), +(208102, 'Ila', 2011, 'F', 129), +(208103, 'Jaslynn', 2011, 'F', 129), +(208104, 'Jenelle', 2011, 'F', 129), +(208105, 'Keegan', 2011, 'F', 129), +(208106, 'Maryann', 2011, 'F', 129), +(208107, 'Paulette', 2011, 'F', 129), +(208108, 'Ryder', 2011, 'F', 129), +(208109, 'Sana', 2011, 'F', 129), +(208110, 'Symphony', 2011, 'F', 129), +(208111, 'Taleah', 2011, 'F', 129), +(208112, 'Tayler', 2011, 'F', 129), +(208113, 'Annmarie', 2011, 'F', 128), +(208114, 'Calliope', 2011, 'F', 128), +(208115, 'Noelani', 2011, 'F', 128), +(208116, 'Yvonne', 2011, 'F', 128), +(208117, 'Addelyn', 2011, 'F', 127), +(208118, 'Christy', 2011, 'F', 127), +(208119, 'Diane', 2011, 'F', 127), +(208120, 'Jiya', 2011, 'F', 127), +(208121, 'Priscila', 2011, 'F', 127), +(208122, 'Rhyan', 2011, 'F', 127), +(208123, 'Zayla', 2011, 'F', 127), +(208124, 'Abriella', 2011, 'F', 126), +(208125, 'Aila', 2011, 'F', 126), +(208126, 'Alexi', 2011, 'F', 126), +(208127, 'Andie', 2011, 'F', 126), +(208128, 'Aven', 2011, 'F', 126), +(208129, 'Joana', 2011, 'F', 126), +(208130, 'Rocio', 2011, 'F', 126), +(208131, 'Brook', 2011, 'F', 125), +(208132, 'Claira', 2011, 'F', 125), +(208133, 'Dasia', 2011, 'F', 125), +(208134, 'Davina', 2011, 'F', 125), +(208135, 'Halo', 2011, 'F', 125), +(208136, 'Mari', 2011, 'F', 125), +(208137, 'Myka', 2011, 'F', 125), +(208138, 'Alba', 2011, 'F', 124), +(208139, 'Alyna', 2011, 'F', 124), +(208140, 'Annamarie', 2011, 'F', 124), +(208141, 'Bryana', 2011, 'F', 124), +(208142, 'Camden', 2011, 'F', 124), +(208143, 'Daria', 2011, 'F', 124), +(208144, 'Emerald', 2011, 'F', 124), +(208145, 'Estefania', 2011, 'F', 124), +(208146, 'Ginger', 2011, 'F', 124), +(208147, 'Hollie', 2011, 'F', 124), +(208148, 'Kalyn', 2011, 'F', 124), +(208149, 'Karolina', 2011, 'F', 124), +(208150, 'Louise', 2011, 'F', 124), +(208151, 'Rania', 2011, 'F', 124), +(208152, 'Adina', 2011, 'F', 123), +(208153, 'Annalisa', 2011, 'F', 123), +(208154, 'Ayesha', 2011, 'F', 123), +(208155, 'Blaire', 2011, 'F', 123), +(208156, 'Gitty', 2011, 'F', 123), +(208157, 'Remington', 2011, 'F', 123), +(208158, 'Anyla', 2011, 'F', 122), +(208159, 'Ester', 2011, 'F', 122), +(208160, 'Jaedyn', 2011, 'F', 122), +(208161, 'Jasmyn', 2011, 'F', 122), +(208162, 'Kalina', 2011, 'F', 122), +(208163, 'Kaniyah', 2011, 'F', 122), +(208164, 'Kristel', 2011, 'F', 122), +(208165, 'Skylee', 2011, 'F', 122), +(208166, 'Triniti', 2011, 'F', 122), +(208167, 'Danae', 2011, 'F', 121), +(208168, 'Flora', 2011, 'F', 121), +(208169, 'Kenadie', 2011, 'F', 121), +(208170, 'Leann', 2011, 'F', 121), +(208171, 'Malina', 2011, 'F', 121), +(208172, 'Nayla', 2011, 'F', 121), +(208173, 'Rhianna', 2011, 'F', 121), +(208174, 'Ryley', 2011, 'F', 121), +(208175, 'Teegan', 2011, 'F', 121), +(208176, 'Aarna', 2011, 'F', 120), +(208177, 'Araya', 2011, 'F', 120), +(208178, 'Jackelyn', 2011, 'F', 120), +(208179, 'Rosalinda', 2011, 'F', 120), +(208180, 'Aleyah', 2011, 'F', 119), +(208181, 'Avalon', 2011, 'F', 119), +(208182, 'Beverly', 2011, 'F', 119), +(208183, 'Calli', 2011, 'F', 119), +(208184, 'Flor', 2011, 'F', 119), +(208185, 'Kaileigh', 2011, 'F', 119), +(208186, 'Kinleigh', 2011, 'F', 119), +(208187, 'Martina', 2011, 'F', 119), +(208188, 'Quincy', 2011, 'F', 119), +(208189, 'Sanvi', 2011, 'F', 119), +(208190, 'Yolanda', 2011, 'F', 119), +(208191, 'August', 2011, 'F', 118), +(208192, 'Della', 2011, 'F', 118), +(208193, 'Juana', 2011, 'F', 118), +(208194, 'Kelis', 2011, 'F', 118), +(208195, 'Yaneli', 2011, 'F', 118), +(208196, 'Chevelle', 2011, 'F', 117), +(208197, 'Iman', 2011, 'F', 117), +(208198, 'Ivette', 2011, 'F', 117), +(208199, 'Jahzara', 2011, 'F', 117), +(208200, 'Jeanette', 2011, 'F', 117), +(208201, 'Journi', 2011, 'F', 117), +(208202, 'Katlyn', 2011, 'F', 117), +(208203, 'Lamya', 2011, 'F', 117), +(208204, 'Nariyah', 2011, 'F', 117), +(208205, 'Pepper', 2011, 'F', 117), +(208206, 'Petra', 2011, 'F', 117), +(208207, 'Rachelle', 2011, 'F', 117), +(208208, 'Ria', 2011, 'F', 117), +(208209, 'Rosario', 2011, 'F', 117), +(208210, 'Analee', 2011, 'F', 116), +(208211, 'Ela', 2011, 'F', 116), +(208212, 'Heavenly', 2011, 'F', 116), +(208213, 'Jianna', 2011, 'F', 116), +(208214, 'Kensington', 2011, 'F', 116), +(208215, 'Lluvia', 2011, 'F', 116), +(208216, 'Lori', 2011, 'F', 116), +(208217, 'Marlen', 2011, 'F', 116), +(208218, 'Nellie', 2011, 'F', 116), +(208219, 'Payson', 2011, 'F', 116), +(208220, 'Rylin', 2011, 'F', 116), +(208221, 'Valencia', 2011, 'F', 116), +(208222, 'Egypt', 2011, 'F', 115), +(208223, 'Grayson', 2011, 'F', 115), +(208224, 'Jaeda', 2011, 'F', 115), +(208225, 'Janyla', 2011, 'F', 115), +(208226, 'Jazlene', 2011, 'F', 115), +(208227, 'Loren', 2011, 'F', 115), +(208228, 'Madysen', 2011, 'F', 115), +(208229, 'Malena', 2011, 'F', 115), +(208230, 'Marjorie', 2011, 'F', 115), +(208231, 'Symone', 2011, 'F', 115), +(208232, 'Xochitl', 2011, 'F', 115), +(208233, 'Adamari', 2011, 'F', 114), +(208234, 'Baileigh', 2011, 'F', 114), +(208235, 'Bryce', 2011, 'F', 114), +(208236, 'Niyah', 2011, 'F', 114), +(208237, 'Tahlia', 2011, 'F', 114), +(208238, 'Zaida', 2011, 'F', 114), +(208239, 'Zaina', 2011, 'F', 114), +(208240, 'Ameera', 2011, 'F', 113), +(208241, 'Anayah', 2011, 'F', 113), +(208242, 'Angelie', 2011, 'F', 113), +(208243, 'Cayden', 2011, 'F', 113), +(208244, 'Evelina', 2011, 'F', 113), +(208245, 'Itzayana', 2011, 'F', 113), +(208246, 'Jayna', 2011, 'F', 113), +(208247, 'Lennon', 2011, 'F', 113), +(208248, 'Lexus', 2011, 'F', 113), +(208249, 'Sabina', 2011, 'F', 113), +(208250, 'Yasmeen', 2011, 'F', 113), +(208251, 'Alysa', 2011, 'F', 112), +(208252, 'Ayah', 2011, 'F', 112), +(208253, 'Baylie', 2011, 'F', 112), +(208254, 'Brianne', 2011, 'F', 112), +(208255, 'Cielo', 2011, 'F', 112), +(208256, 'Janay', 2011, 'F', 112), +(208257, 'Jasleen', 2011, 'F', 112), +(208258, 'Journie', 2011, 'F', 112), +(208259, 'Kaylei', 2011, 'F', 112), +(208260, 'Kendyll', 2011, 'F', 112), +(208261, 'Kloey', 2011, 'F', 112), +(208262, 'Layna', 2011, 'F', 112), +(208263, 'Maryn', 2011, 'F', 112), +(208264, 'Prisha', 2011, 'F', 112), +(208265, 'Shoshana', 2011, 'F', 112), +(208266, 'Taylee', 2011, 'F', 112), +(208267, 'Alasia', 2011, 'F', 111), +(208268, 'Alea', 2011, 'F', 111), +(208269, 'Alliyah', 2011, 'F', 111), +(208270, 'Clover', 2011, 'F', 111), +(208271, 'Emalyn', 2011, 'F', 111), +(208272, 'Janaya', 2011, 'F', 111), +(208273, 'Jaquelin', 2011, 'F', 111), +(208274, 'Jolee', 2011, 'F', 111), +(208275, 'Lourdes', 2011, 'F', 111), +(208276, 'Marion', 2011, 'F', 111), +(208277, 'Sailor', 2011, 'F', 111), +(208278, 'Blessing', 2011, 'F', 110), +(208279, 'Emelyn', 2011, 'F', 110), +(208280, 'Inara', 2011, 'F', 110), +(208281, 'Laken', 2011, 'F', 110), +(208282, 'Madisen', 2011, 'F', 110), +(208283, 'Maryah', 2011, 'F', 110), +(208284, 'Sandy', 2011, 'F', 110), +(208285, 'Shriya', 2011, 'F', 110), +(208286, 'Taliah', 2011, 'F', 110), +(208287, 'Alyssia', 2011, 'F', 109), +(208288, 'Arionna', 2011, 'F', 109), +(208289, 'Berenice', 2011, 'F', 109), +(208290, 'Jailynn', 2011, 'F', 109), +(208291, 'Janeth', 2011, 'F', 109), +(208292, 'Khalia', 2011, 'F', 109), +(208293, 'Kinzley', 2011, 'F', 109), +(208294, 'Loralei', 2011, 'F', 109), +(208295, 'Lynn', 2011, 'F', 109), +(208296, 'Marcela', 2011, 'F', 109), +(208297, 'Marianne', 2011, 'F', 109), +(208298, 'Ophelia', 2011, 'F', 109), +(208299, 'Rain', 2011, 'F', 109), +(208300, 'Yulissa', 2011, 'F', 109), +(208301, 'Zariya', 2011, 'F', 109), +(208302, 'Zia', 2011, 'F', 109), +(208303, 'Aarya', 2011, 'F', 108), +(208304, 'Adrianne', 2011, 'F', 108), +(208305, 'Amaria', 2011, 'F', 108), +(208306, 'Anushka', 2011, 'F', 108), +(208307, 'Brynleigh', 2011, 'F', 108), +(208308, 'Elodie', 2011, 'F', 108), +(208309, 'Emmerson', 2011, 'F', 108), +(208310, 'Haidyn', 2011, 'F', 108), +(208311, 'Imogen', 2011, 'F', 108), +(208312, 'Kenadee', 2011, 'F', 108), +(208313, 'Kristine', 2011, 'F', 108), +(208314, 'Loretta', 2011, 'F', 108), +(208315, 'Melani', 2011, 'F', 108), +(208316, 'Nechama', 2011, 'F', 108), +(208317, 'Sonja', 2011, 'F', 108), +(208318, 'Stormy', 2011, 'F', 108), +(208319, 'Sydnie', 2011, 'F', 108), +(208320, 'Tristan', 2011, 'F', 108), +(208321, 'Vanesa', 2011, 'F', 108), +(208322, 'Zooey', 2011, 'F', 108), +(208323, 'Aislinn', 2011, 'F', 107), +(208324, 'Amarie', 2011, 'F', 107), +(208325, 'Cooper', 2011, 'F', 107), +(208326, 'Emalee', 2011, 'F', 107), +(208327, 'Italia', 2011, 'F', 107), +(208328, 'Izel', 2011, 'F', 107), +(208329, 'Jacelyn', 2011, 'F', 107), +(208330, 'Jazleen', 2011, 'F', 107), +(208331, 'Jazzlynn', 2011, 'F', 107), +(208332, 'Lorraine', 2011, 'F', 107), +(208333, 'Magdalene', 2011, 'F', 107), +(208334, 'Makaela', 2011, 'F', 107), +(208335, 'Saphira', 2011, 'F', 107), +(208336, 'Shaelyn', 2011, 'F', 107), +(208337, 'Trisha', 2011, 'F', 107), +(208338, 'Yael', 2011, 'F', 107), +(208339, 'Ailani', 2011, 'F', 106), +(208340, 'Blythe', 2011, 'F', 106), +(208341, 'Brooklynne', 2011, 'F', 106), +(208342, 'Janelly', 2011, 'F', 106), +(208343, 'Kayle', 2011, 'F', 106), +(208344, 'Makyla', 2011, 'F', 106), +(208345, 'Miabella', 2011, 'F', 106), +(208346, 'Sade', 2011, 'F', 106), +(208347, 'Tracy', 2011, 'F', 106), +(208348, 'Alexandrea', 2011, 'F', 105), +(208349, 'Dasha', 2011, 'F', 105), +(208350, 'Desire', 2011, 'F', 105), +(208351, 'Devon', 2011, 'F', 105), +(208352, 'Joseline', 2011, 'F', 105), +(208353, 'Kamdyn', 2011, 'F', 105), +(208354, 'Moira', 2011, 'F', 105), +(208355, 'Raeleigh', 2011, 'F', 105), +(208356, 'Raine', 2011, 'F', 105), +(208357, 'Shylah', 2011, 'F', 105), +(208358, 'Taytum', 2011, 'F', 105), +(208359, 'Violette', 2011, 'F', 105), +(208360, 'Avarie', 2011, 'F', 104), +(208361, 'Breana', 2011, 'F', 104), +(208362, 'Calla', 2011, 'F', 104), +(208363, 'Carrington', 2011, 'F', 104), +(208364, 'Cecily', 2011, 'F', 104), +(208365, 'Charis', 2011, 'F', 104), +(208366, 'Devorah', 2011, 'F', 104), +(208367, 'Edie', 2011, 'F', 104), +(208368, 'Fatoumata', 2011, 'F', 104), +(208369, 'Jacie', 2011, 'F', 104), +(208370, 'Jalyn', 2011, 'F', 104), +(208371, 'Jubilee', 2011, 'F', 104), +(208372, 'Khadija', 2011, 'F', 104), +(208373, 'Kyah', 2011, 'F', 104), +(208374, 'Leeann', 2011, 'F', 104), +(208375, 'Malani', 2011, 'F', 104), +(208376, 'Nyomi', 2011, 'F', 104), +(208377, 'Allisson', 2011, 'F', 103), +(208378, 'Ariela', 2011, 'F', 103), +(208379, 'Briar', 2011, 'F', 103), +(208380, 'Britton', 2011, 'F', 103), +(208381, 'Brystol', 2011, 'F', 103), +(208382, 'Evolet', 2011, 'F', 103), +(208383, 'Faigy', 2011, 'F', 103), +(208384, 'Klara', 2011, 'F', 103), +(208385, 'Lupita', 2011, 'F', 103), +(208386, 'Mindy', 2011, 'F', 103), +(208387, 'Norma', 2011, 'F', 103), +(208388, 'Olyvia', 2011, 'F', 103), +(208389, 'Siri', 2011, 'F', 103), +(208390, 'Skylynn', 2011, 'F', 103), +(208391, 'Taelynn', 2011, 'F', 103), +(208392, 'Vianey', 2011, 'F', 103), +(208393, 'Zoee', 2011, 'F', 103), +(208394, 'Cienna', 2011, 'F', 102), +(208395, 'Jaina', 2011, 'F', 102), +(208396, 'Keilani', 2011, 'F', 102), +(208397, 'Raylynn', 2011, 'F', 102), +(208398, 'Rosalee', 2011, 'F', 102), +(208399, 'Serafina', 2011, 'F', 102), +(208400, 'Yessenia', 2011, 'F', 102), +(208401, 'Zofia', 2011, 'F', 102), +(208402, 'Alyana', 2011, 'F', 101), +(208403, 'Alycia', 2011, 'F', 101), +(208404, 'Amaia', 2011, 'F', 101), +(208405, 'Breanne', 2011, 'F', 101), +(208406, 'Carmela', 2011, 'F', 101), +(208407, 'Caylin', 2011, 'F', 101), +(208408, 'Estefani', 2011, 'F', 101), +(208409, 'Ezra', 2011, 'F', 101), +(208410, 'Jamiah', 2011, 'F', 101), +(208411, 'Jayleigh', 2011, 'F', 101), +(208412, 'Kaidyn', 2011, 'F', 101), +(208413, 'Kalynn', 2011, 'F', 101), +(208414, 'Kameron', 2011, 'F', 101), +(208415, 'Liza', 2011, 'F', 101), +(208416, 'Mandy', 2011, 'F', 101), +(208417, 'Marely', 2011, 'F', 101), +(208418, 'Saoirse', 2011, 'F', 101), +(208419, 'Trista', 2011, 'F', 101), +(208420, 'Zaniah', 2011, 'F', 101), +(208421, 'Alexys', 2011, 'F', 100), +(208422, 'Alysia', 2011, 'F', 100), +(208423, 'Cailin', 2011, 'F', 100), +(208424, 'Cambree', 2011, 'F', 100), +(208425, 'Citlaly', 2011, 'F', 100), +(208426, 'Evan', 2011, 'F', 100), +(208427, 'Janely', 2011, 'F', 100), +(208428, 'Kaily', 2011, 'F', 100), +(208429, 'Sapphire', 2011, 'F', 100), +(208430, 'Shay', 2011, 'F', 100), +(208431, 'Jacob', 2011, 'M', 20331), +(208432, 'Mason', 2011, 'M', 19488), +(208433, 'William', 2011, 'M', 17314), +(208434, 'Jayden', 2011, 'M', 16954), +(208435, 'Noah', 2011, 'M', 16838), +(208436, 'Michael', 2011, 'M', 16744), +(208437, 'Ethan', 2011, 'M', 16665), +(208438, 'Alexander', 2011, 'M', 15681), +(208439, 'Aiden', 2011, 'M', 15469), +(208440, 'Daniel', 2011, 'M', 15249), +(208441, 'Anthony', 2011, 'M', 14245), +(208442, 'Matthew', 2011, 'M', 14144), +(208443, 'Elijah', 2011, 'M', 13933), +(208444, 'Joshua', 2011, 'M', 13727), +(208445, 'Liam', 2011, 'M', 13427), +(208446, 'Andrew', 2011, 'M', 13250), +(208447, 'James', 2011, 'M', 13227), +(208448, 'David', 2011, 'M', 13194), +(208449, 'Benjamin', 2011, 'M', 13041), +(208450, 'Christopher', 2011, 'M', 12975), +(208451, 'Logan', 2011, 'M', 12967), +(208452, 'Joseph', 2011, 'M', 12918), +(208453, 'Jackson', 2011, 'M', 12383), +(208454, 'Gabriel', 2011, 'M', 12315), +(208455, 'Ryan', 2011, 'M', 11481), +(208456, 'Samuel', 2011, 'M', 11320), +(208457, 'John', 2011, 'M', 11020), +(208458, 'Nathan', 2011, 'M', 10489), +(208459, 'Lucas', 2011, 'M', 10386), +(208460, 'Christian', 2011, 'M', 10297), +(208461, 'Jonathan', 2011, 'M', 10210), +(208462, 'Caleb', 2011, 'M', 10008), +(208463, 'Dylan', 2011, 'M', 9761), +(208464, 'Landon', 2011, 'M', 9743), +(208465, 'Isaac', 2011, 'M', 9580), +(208466, 'Gavin', 2011, 'M', 9003), +(208467, 'Brayden', 2011, 'M', 8999), +(208468, 'Tyler', 2011, 'M', 8819), +(208469, 'Luke', 2011, 'M', 8694), +(208470, 'Evan', 2011, 'M', 8645), +(208471, 'Carter', 2011, 'M', 8591), +(208472, 'Nicholas', 2011, 'M', 8575), +(208473, 'Isaiah', 2011, 'M', 8500), +(208474, 'Owen', 2011, 'M', 8326), +(208475, 'Jack', 2011, 'M', 8175), +(208476, 'Jordan', 2011, 'M', 8041), +(208477, 'Brandon', 2011, 'M', 7801), +(208478, 'Wyatt', 2011, 'M', 7668), +(208479, 'Julian', 2011, 'M', 7609), +(208480, 'Aaron', 2011, 'M', 7606), +(208481, 'Jeremiah', 2011, 'M', 7575), +(208482, 'Angel', 2011, 'M', 7523), +(208483, 'Cameron', 2011, 'M', 7501), +(208484, 'Connor', 2011, 'M', 7399), +(208485, 'Hunter', 2011, 'M', 7350), +(208486, 'Adrian', 2011, 'M', 7323), +(208487, 'Henry', 2011, 'M', 7222), +(208488, 'Eli', 2011, 'M', 7198), +(208489, 'Justin', 2011, 'M', 7096), +(208490, 'Austin', 2011, 'M', 7017), +(208491, 'Charles', 2011, 'M', 6972), +(208492, 'Robert', 2011, 'M', 6952), +(208493, 'Thomas', 2011, 'M', 6896), +(208494, 'Zachary', 2011, 'M', 6790), +(208495, 'Jose', 2011, 'M', 6757), +(208496, 'Levi', 2011, 'M', 6630), +(208497, 'Kevin', 2011, 'M', 6551), +(208498, 'Sebastian', 2011, 'M', 6537), +(208499, 'Chase', 2011, 'M', 6180), +(208500, 'Ayden', 2011, 'M', 6120), +(208501, 'Jason', 2011, 'M', 5830), +(208502, 'Ian', 2011, 'M', 5612), +(208503, 'Blake', 2011, 'M', 5601), +(208504, 'Colton', 2011, 'M', 5584), +(208505, 'Bentley', 2011, 'M', 5560), +(208506, 'Dominic', 2011, 'M', 5423), +(208507, 'Xavier', 2011, 'M', 5423), +(208508, 'Oliver', 2011, 'M', 5405), +(208509, 'Parker', 2011, 'M', 5279), +(208510, 'Josiah', 2011, 'M', 5248), +(208511, 'Adam', 2011, 'M', 5196), +(208512, 'Cooper', 2011, 'M', 5172), +(208513, 'Brody', 2011, 'M', 5068), +(208514, 'Nathaniel', 2011, 'M', 4964), +(208515, 'Carson', 2011, 'M', 4917), +(208516, 'Jaxon', 2011, 'M', 4723), +(208517, 'Tristan', 2011, 'M', 4716), +(208518, 'Luis', 2011, 'M', 4685), +(208519, 'Juan', 2011, 'M', 4676), +(208520, 'Hayden', 2011, 'M', 4584), +(208521, 'Carlos', 2011, 'M', 4174), +(208522, 'Nolan', 2011, 'M', 4163), +(208523, 'Jesus', 2011, 'M', 4157), +(208524, 'Cole', 2011, 'M', 4134), +(208525, 'Alex', 2011, 'M', 4022), +(208526, 'Max', 2011, 'M', 3951), +(208527, 'Grayson', 2011, 'M', 3933), +(208528, 'Bryson', 2011, 'M', 3926), +(208529, 'Diego', 2011, 'M', 3818), +(208530, 'Jaden', 2011, 'M', 3799), +(208531, 'Vincent', 2011, 'M', 3792), +(208532, 'Easton', 2011, 'M', 3759), +(208533, 'Micah', 2011, 'M', 3751), +(208534, 'Eric', 2011, 'M', 3736), +(208535, 'Kayden', 2011, 'M', 3725), +(208536, 'Jace', 2011, 'M', 3719), +(208537, 'Aidan', 2011, 'M', 3709), +(208538, 'Ryder', 2011, 'M', 3698), +(208539, 'Ashton', 2011, 'M', 3534), +(208540, 'Bryan', 2011, 'M', 3515), +(208541, 'Riley', 2011, 'M', 3453), +(208542, 'Hudson', 2011, 'M', 3438), +(208543, 'Asher', 2011, 'M', 3406), +(208544, 'Bryce', 2011, 'M', 3357), +(208545, 'Miles', 2011, 'M', 3355), +(208546, 'Kaleb', 2011, 'M', 3328), +(208547, 'Giovanni', 2011, 'M', 3316), +(208548, 'Antonio', 2011, 'M', 3310), +(208549, 'Kaden', 2011, 'M', 3281), +(208550, 'Colin', 2011, 'M', 3264), +(208551, 'Kyle', 2011, 'M', 3256), +(208552, 'Brian', 2011, 'M', 3230), +(208553, 'Timothy', 2011, 'M', 3223), +(208554, 'Steven', 2011, 'M', 3201), +(208555, 'Sean', 2011, 'M', 3179), +(208556, 'Miguel', 2011, 'M', 3167), +(208557, 'Richard', 2011, 'M', 3157), +(208558, 'Ivan', 2011, 'M', 3105), +(208559, 'Jake', 2011, 'M', 3100), +(208560, 'Alejandro', 2011, 'M', 3085), +(208561, 'Santiago', 2011, 'M', 3069), +(208562, 'Joel', 2011, 'M', 3049), +(208563, 'Maxwell', 2011, 'M', 3048), +(208564, 'Caden', 2011, 'M', 3042), +(208565, 'Brady', 2011, 'M', 3039), +(208566, 'Axel', 2011, 'M', 3035), +(208567, 'Preston', 2011, 'M', 3022), +(208568, 'Damian', 2011, 'M', 3001), +(208569, 'Elias', 2011, 'M', 2984), +(208570, 'Jesse', 2011, 'M', 2957), +(208571, 'Jaxson', 2011, 'M', 2954), +(208572, 'Victor', 2011, 'M', 2888), +(208573, 'Jonah', 2011, 'M', 2860), +(208574, 'Patrick', 2011, 'M', 2860), +(208575, 'Marcus', 2011, 'M', 2797), +(208576, 'Rylan', 2011, 'M', 2756), +(208577, 'Emmanuel', 2011, 'M', 2668), +(208578, 'Edward', 2011, 'M', 2659), +(208579, 'Leonardo', 2011, 'M', 2639), +(208580, 'Cayden', 2011, 'M', 2566), +(208581, 'Grant', 2011, 'M', 2539), +(208582, 'Jeremy', 2011, 'M', 2517), +(208583, 'Braxton', 2011, 'M', 2506), +(208584, 'Gage', 2011, 'M', 2498), +(208585, 'Jude', 2011, 'M', 2474), +(208586, 'Wesley', 2011, 'M', 2468), +(208587, 'Roman', 2011, 'M', 2458), +(208588, 'Devin', 2011, 'M', 2454), +(208589, 'Mark', 2011, 'M', 2425), +(208590, 'Camden', 2011, 'M', 2406), +(208591, 'Kaiden', 2011, 'M', 2401), +(208592, 'Oscar', 2011, 'M', 2374), +(208593, 'Alan', 2011, 'M', 2339), +(208594, 'Malachi', 2011, 'M', 2339), +(208595, 'George', 2011, 'M', 2315), +(208596, 'Peyton', 2011, 'M', 2291), +(208597, 'Leo', 2011, 'M', 2245), +(208598, 'Nicolas', 2011, 'M', 2237), +(208599, 'Maddox', 2011, 'M', 2216), +(208600, 'Kenneth', 2011, 'M', 2206), +(208601, 'Mateo', 2011, 'M', 2201), +(208602, 'Sawyer', 2011, 'M', 2177), +(208603, 'Collin', 2011, 'M', 2173), +(208604, 'Cody', 2011, 'M', 2171), +(208605, 'Conner', 2011, 'M', 2169), +(208606, 'Declan', 2011, 'M', 2163), +(208607, 'Lincoln', 2011, 'M', 2158), +(208608, 'Andres', 2011, 'M', 2157), +(208609, 'Bradley', 2011, 'M', 2154), +(208610, 'Trevor', 2011, 'M', 2139), +(208611, 'Derek', 2011, 'M', 2136), +(208612, 'Tanner', 2011, 'M', 2128), +(208613, 'Silas', 2011, 'M', 2104), +(208614, 'Seth', 2011, 'M', 2084), +(208615, 'Eduardo', 2011, 'M', 2082), +(208616, 'Paul', 2011, 'M', 2066), +(208617, 'Jaiden', 2011, 'M', 2064), +(208618, 'Jorge', 2011, 'M', 2039), +(208619, 'Cristian', 2011, 'M', 2004), +(208620, 'Garrett', 2011, 'M', 1939), +(208621, 'Travis', 2011, 'M', 1936), +(208622, 'Abraham', 2011, 'M', 1932), +(208623, 'Omar', 2011, 'M', 1885), +(208624, 'Javier', 2011, 'M', 1881), +(208625, 'Ezekiel', 2011, 'M', 1864), +(208626, 'Tucker', 2011, 'M', 1837), +(208627, 'Peter', 2011, 'M', 1831), +(208628, 'Harrison', 2011, 'M', 1827), +(208629, 'Damien', 2011, 'M', 1824), +(208630, 'Greyson', 2011, 'M', 1793), +(208631, 'Avery', 2011, 'M', 1788), +(208632, 'Kai', 2011, 'M', 1783), +(208633, 'Ezra', 2011, 'M', 1752), +(208634, 'Weston', 2011, 'M', 1747), +(208635, 'Xander', 2011, 'M', 1724), +(208636, 'Jaylen', 2011, 'M', 1719), +(208637, 'Corbin', 2011, 'M', 1709), +(208638, 'Calvin', 2011, 'M', 1705), +(208639, 'Fernando', 2011, 'M', 1704), +(208640, 'Francisco', 2011, 'M', 1657), +(208641, 'Jameson', 2011, 'M', 1656), +(208642, 'Maximus', 2011, 'M', 1644), +(208643, 'Josue', 2011, 'M', 1638), +(208644, 'Shane', 2011, 'M', 1632), +(208645, 'Ricardo', 2011, 'M', 1628), +(208646, 'Chance', 2011, 'M', 1627), +(208647, 'Trenton', 2011, 'M', 1617), +(208648, 'Cesar', 2011, 'M', 1610), +(208649, 'Israel', 2011, 'M', 1608), +(208650, 'Emmett', 2011, 'M', 1606), +(208651, 'Drake', 2011, 'M', 1605), +(208652, 'Zane', 2011, 'M', 1604), +(208653, 'Jayce', 2011, 'M', 1599), +(208654, 'Mario', 2011, 'M', 1596), +(208655, 'Landen', 2011, 'M', 1587), +(208656, 'Spencer', 2011, 'M', 1581), +(208657, 'Griffin', 2011, 'M', 1576), +(208658, 'Kingston', 2011, 'M', 1573), +(208659, 'Stephen', 2011, 'M', 1572), +(208660, 'Theodore', 2011, 'M', 1566), +(208661, 'Manuel', 2011, 'M', 1552), +(208662, 'Erick', 2011, 'M', 1542), +(208663, 'Braylon', 2011, 'M', 1531), +(208664, 'Raymond', 2011, 'M', 1522), +(208665, 'Edwin', 2011, 'M', 1520), +(208666, 'Charlie', 2011, 'M', 1518), +(208667, 'Myles', 2011, 'M', 1508), +(208668, 'Abel', 2011, 'M', 1503), +(208669, 'Andre', 2011, 'M', 1491), +(208670, 'Johnathan', 2011, 'M', 1489), +(208671, 'Bennett', 2011, 'M', 1487), +(208672, 'Alexis', 2011, 'M', 1481), +(208673, 'Edgar', 2011, 'M', 1465), +(208674, 'Troy', 2011, 'M', 1454), +(208675, 'Zion', 2011, 'M', 1452), +(208676, 'Jeffrey', 2011, 'M', 1436), +(208677, 'Shawn', 2011, 'M', 1418), +(208678, 'Hector', 2011, 'M', 1412), +(208679, 'Lukas', 2011, 'M', 1385), +(208680, 'Amir', 2011, 'M', 1381), +(208681, 'Tyson', 2011, 'M', 1378), +(208682, 'Keegan', 2011, 'M', 1367), +(208683, 'Kyler', 2011, 'M', 1365), +(208684, 'Donovan', 2011, 'M', 1362), +(208685, 'Simon', 2011, 'M', 1357), +(208686, 'Graham', 2011, 'M', 1356), +(208687, 'Braden', 2011, 'M', 1341), +(208688, 'Everett', 2011, 'M', 1341), +(208689, 'Clayton', 2011, 'M', 1340), +(208690, 'Luca', 2011, 'M', 1339), +(208691, 'Emanuel', 2011, 'M', 1318), +(208692, 'Martin', 2011, 'M', 1315), +(208693, 'Brendan', 2011, 'M', 1311), +(208694, 'Cash', 2011, 'M', 1309), +(208695, 'Zander', 2011, 'M', 1299), +(208696, 'Dante', 2011, 'M', 1298), +(208697, 'Jared', 2011, 'M', 1298), +(208698, 'Kameron', 2011, 'M', 1293), +(208699, 'Ryker', 2011, 'M', 1292), +(208700, 'Dominick', 2011, 'M', 1291), +(208701, 'Lane', 2011, 'M', 1291), +(208702, 'Elliot', 2011, 'M', 1286), +(208703, 'Paxton', 2011, 'M', 1281), +(208704, 'Rafael', 2011, 'M', 1273), +(208705, 'Andy', 2011, 'M', 1268), +(208706, 'Dalton', 2011, 'M', 1267), +(208707, 'Erik', 2011, 'M', 1264), +(208708, 'Gregory', 2011, 'M', 1263), +(208709, 'Sergio', 2011, 'M', 1263), +(208710, 'Marco', 2011, 'M', 1255), +(208711, 'Jasper', 2011, 'M', 1248), +(208712, 'Johnny', 2011, 'M', 1247), +(208713, 'Emiliano', 2011, 'M', 1243), +(208714, 'Dean', 2011, 'M', 1235), +(208715, 'Drew', 2011, 'M', 1232), +(208716, 'Judah', 2011, 'M', 1224), +(208717, 'Caiden', 2011, 'M', 1221), +(208718, 'Skyler', 2011, 'M', 1216), +(208719, 'Aden', 2011, 'M', 1202), +(208720, 'Maximiliano', 2011, 'M', 1198), +(208721, 'Fabian', 2011, 'M', 1197), +(208722, 'Zayden', 2011, 'M', 1186), +(208723, 'Brennan', 2011, 'M', 1176), +(208724, 'Anderson', 2011, 'M', 1143), +(208725, 'Roberto', 2011, 'M', 1130), +(208726, 'Quinn', 2011, 'M', 1129), +(208727, 'Reid', 2011, 'M', 1122), +(208728, 'Angelo', 2011, 'M', 1119), +(208729, 'Holden', 2011, 'M', 1114), +(208730, 'Cruz', 2011, 'M', 1096), +(208731, 'Derrick', 2011, 'M', 1093), +(208732, 'Finn', 2011, 'M', 1090), +(208733, 'Emilio', 2011, 'M', 1088), +(208734, 'Grady', 2011, 'M', 1088), +(208735, 'Elliott', 2011, 'M', 1065), +(208736, 'Amari', 2011, 'M', 1052), +(208737, 'Pedro', 2011, 'M', 1048), +(208738, 'Rowan', 2011, 'M', 1046), +(208739, 'Frank', 2011, 'M', 1044), +(208740, 'Felix', 2011, 'M', 1030), +(208741, 'Lorenzo', 2011, 'M', 1029), +(208742, 'Colby', 2011, 'M', 1024), +(208743, 'Dakota', 2011, 'M', 1023), +(208744, 'Corey', 2011, 'M', 1022), +(208745, 'Braylen', 2011, 'M', 1009), +(208746, 'Dawson', 2011, 'M', 1008), +(208747, 'Allen', 2011, 'M', 998), +(208748, 'Brycen', 2011, 'M', 995), +(208749, 'Ty', 2011, 'M', 991), +(208750, 'Jax', 2011, 'M', 989), +(208751, 'Brantley', 2011, 'M', 985), +(208752, 'Malik', 2011, 'M', 984), +(208753, 'Ruben', 2011, 'M', 975), +(208754, 'Trey', 2011, 'M', 969), +(208755, 'Brock', 2011, 'M', 961), +(208756, 'Dallas', 2011, 'M', 956), +(208757, 'Colt', 2011, 'M', 952), +(208758, 'Joaquin', 2011, 'M', 949), +(208759, 'Leland', 2011, 'M', 939), +(208760, 'Beckett', 2011, 'M', 936), +(208761, 'Jett', 2011, 'M', 924), +(208762, 'Louis', 2011, 'M', 919), +(208763, 'Gunner', 2011, 'M', 908), +(208764, 'Adan', 2011, 'M', 905), +(208765, 'Jakob', 2011, 'M', 903), +(208766, 'Taylor', 2011, 'M', 897), +(208767, 'Cohen', 2011, 'M', 896), +(208768, 'Arthur', 2011, 'M', 890), +(208769, 'Marshall', 2011, 'M', 890), +(208770, 'Marcos', 2011, 'M', 889), +(208771, 'Ronald', 2011, 'M', 885), +(208772, 'Julius', 2011, 'M', 882), +(208773, 'Armando', 2011, 'M', 879), +(208774, 'Kellen', 2011, 'M', 879), +(208775, 'Brooks', 2011, 'M', 877), +(208776, 'Dillon', 2011, 'M', 875), +(208777, 'Cade', 2011, 'M', 866), +(208778, 'Nehemiah', 2011, 'M', 865), +(208779, 'Danny', 2011, 'M', 862), +(208780, 'Devon', 2011, 'M', 851), +(208781, 'Beau', 2011, 'M', 850), +(208782, 'Tristen', 2011, 'M', 848), +(208783, 'Jayson', 2011, 'M', 847), +(208784, 'Enrique', 2011, 'M', 844), +(208785, 'Desmond', 2011, 'M', 841), +(208786, 'Randy', 2011, 'M', 841), +(208787, 'Pablo', 2011, 'M', 838), +(208788, 'Milo', 2011, 'M', 836), +(208789, 'Gerardo', 2011, 'M', 835), +(208790, 'Raul', 2011, 'M', 834), +(208791, 'Romeo', 2011, 'M', 832), +(208792, 'Titus', 2011, 'M', 819), +(208793, 'Julio', 2011, 'M', 818), +(208794, 'Kellan', 2011, 'M', 817), +(208795, 'Keaton', 2011, 'M', 812), +(208796, 'Karson', 2011, 'M', 810), +(208797, 'Reed', 2011, 'M', 808), +(208798, 'Keith', 2011, 'M', 804), +(208799, 'Scott', 2011, 'M', 801), +(208800, 'Braydon', 2011, 'M', 800), +(208801, 'Ali', 2011, 'M', 799), +(208802, 'Dustin', 2011, 'M', 797), +(208803, 'Trent', 2011, 'M', 797), +(208804, 'Walter', 2011, 'M', 797), +(208805, 'Waylon', 2011, 'M', 797), +(208806, 'Ismael', 2011, 'M', 787), +(208807, 'Donald', 2011, 'M', 786), +(208808, 'Phillip', 2011, 'M', 775), +(208809, 'Iker', 2011, 'M', 773), +(208810, 'Darius', 2011, 'M', 764), +(208811, 'Esteban', 2011, 'M', 763), +(208812, 'Jaime', 2011, 'M', 763), +(208813, 'Landyn', 2011, 'M', 760), +(208814, 'Dexter', 2011, 'M', 752), +(208815, 'Matteo', 2011, 'M', 751), +(208816, 'Colten', 2011, 'M', 747), +(208817, 'Emerson', 2011, 'M', 736), +(208818, 'Phoenix', 2011, 'M', 728), +(208819, 'King', 2011, 'M', 726), +(208820, 'Karter', 2011, 'M', 725), +(208821, 'Izaiah', 2011, 'M', 724), +(208822, 'Jerry', 2011, 'M', 722), +(208823, 'Tate', 2011, 'M', 722), +(208824, 'Albert', 2011, 'M', 720), +(208825, 'August', 2011, 'M', 717), +(208826, 'Larry', 2011, 'M', 715), +(208827, 'Saul', 2011, 'M', 714), +(208828, 'Payton', 2011, 'M', 713), +(208829, 'Jay', 2011, 'M', 709), +(208830, 'Rocco', 2011, 'M', 708), +(208831, 'Jalen', 2011, 'M', 707), +(208832, 'Enzo', 2011, 'M', 706), +(208833, 'Russell', 2011, 'M', 705), +(208834, 'Kolton', 2011, 'M', 701), +(208835, 'Philip', 2011, 'M', 696), +(208836, 'Quentin', 2011, 'M', 695), +(208837, 'Leon', 2011, 'M', 694), +(208838, 'Mathew', 2011, 'M', 690), +(208839, 'Gael', 2011, 'M', 689), +(208840, 'Tony', 2011, 'M', 688), +(208841, 'Kade', 2011, 'M', 687), +(208842, 'Gideon', 2011, 'M', 686), +(208843, 'Dennis', 2011, 'M', 683), +(208844, 'Damon', 2011, 'M', 681), +(208845, 'Darren', 2011, 'M', 680), +(208846, 'Kason', 2011, 'M', 676), +(208847, 'Walker', 2011, 'M', 675), +(208848, 'Mitchell', 2011, 'M', 666), +(208849, 'Jimmy', 2011, 'M', 664), +(208850, 'Alberto', 2011, 'M', 660), +(208851, 'Alec', 2011, 'M', 658), +(208852, 'Rodrigo', 2011, 'M', 650), +(208853, 'River', 2011, 'M', 643), +(208854, 'Casey', 2011, 'M', 640), +(208855, 'Amare', 2011, 'M', 638), +(208856, 'Issac', 2011, 'M', 638), +(208857, 'Brayan', 2011, 'M', 637), +(208858, 'Maverick', 2011, 'M', 637), +(208859, 'Mohamed', 2011, 'M', 635), +(208860, 'Yahir', 2011, 'M', 635), +(208861, 'Moises', 2011, 'M', 632), +(208862, 'Arturo', 2011, 'M', 630), +(208863, 'Knox', 2011, 'M', 630), +(208864, 'Maximilian', 2011, 'M', 630), +(208865, 'Barrett', 2011, 'M', 626), +(208866, 'Davis', 2011, 'M', 626), +(208867, 'Curtis', 2011, 'M', 623), +(208868, 'Gustavo', 2011, 'M', 623), +(208869, 'Hugo', 2011, 'M', 617), +(208870, 'Reece', 2011, 'M', 614), +(208871, 'Abram', 2011, 'M', 613), +(208872, 'Chandler', 2011, 'M', 613), +(208873, 'Jamari', 2011, 'M', 613), +(208874, 'Mauricio', 2011, 'M', 609), +(208875, 'Solomon', 2011, 'M', 606), +(208876, 'Uriel', 2011, 'M', 604), +(208877, 'Archer', 2011, 'M', 602), +(208878, 'Bryant', 2011, 'M', 602), +(208879, 'Kamden', 2011, 'M', 602), +(208880, 'Porter', 2011, 'M', 601), +(208881, 'Zackary', 2011, 'M', 597), +(208882, 'Ryland', 2011, 'M', 593), +(208883, 'Adriel', 2011, 'M', 592), +(208884, 'Lawrence', 2011, 'M', 591), +(208885, 'Noel', 2011, 'M', 586), +(208886, 'Ricky', 2011, 'M', 585), +(208887, 'Ronan', 2011, 'M', 582), +(208888, 'Alijah', 2011, 'M', 580), +(208889, 'Leonel', 2011, 'M', 580), +(208890, 'Chris', 2011, 'M', 579), +(208891, 'Atticus', 2011, 'M', 577), +(208892, 'Maurice', 2011, 'M', 577), +(208893, 'Zachariah', 2011, 'M', 577), +(208894, 'Brenden', 2011, 'M', 576), +(208895, 'Khalil', 2011, 'M', 576), +(208896, 'Ibrahim', 2011, 'M', 575), +(208897, 'Dane', 2011, 'M', 574), +(208898, 'Lance', 2011, 'M', 574), +(208899, 'Bruce', 2011, 'M', 573), +(208900, 'Orion', 2011, 'M', 572), +(208901, 'Marvin', 2011, 'M', 571), +(208902, 'Cullen', 2011, 'M', 567), +(208903, 'Pierce', 2011, 'M', 564), +(208904, 'Kieran', 2011, 'M', 562), +(208905, 'Braeden', 2011, 'M', 561), +(208906, 'Nikolas', 2011, 'M', 559), +(208907, 'Kobe', 2011, 'M', 553), +(208908, 'Finnegan', 2011, 'M', 550), +(208909, 'Remington', 2011, 'M', 550), +(208910, 'Prince', 2011, 'M', 549), +(208911, 'Muhammad', 2011, 'M', 545), +(208912, 'Orlando', 2011, 'M', 544), +(208913, 'Sam', 2011, 'M', 544), +(208914, 'Mekhi', 2011, 'M', 543), +(208915, 'Alfredo', 2011, 'M', 542), +(208916, 'Rhys', 2011, 'M', 539), +(208917, 'Jacoby', 2011, 'M', 538), +(208918, 'Eddie', 2011, 'M', 537), +(208919, 'Zaiden', 2011, 'M', 534), +(208920, 'Jonas', 2011, 'M', 533), +(208921, 'Joe', 2011, 'M', 532), +(208922, 'Kristopher', 2011, 'M', 532), +(208923, 'Ernesto', 2011, 'M', 531), +(208924, 'Nico', 2011, 'M', 528), +(208925, 'Gary', 2011, 'M', 526), +(208926, 'Jamison', 2011, 'M', 524), +(208927, 'Malcolm', 2011, 'M', 523), +(208928, 'Johan', 2011, 'M', 520), +(208929, 'Warren', 2011, 'M', 520), +(208930, 'Giovani', 2011, 'M', 519), +(208931, 'Gunnar', 2011, 'M', 519), +(208932, 'Armani', 2011, 'M', 517), +(208933, 'Franklin', 2011, 'M', 517), +(208934, 'Ramon', 2011, 'M', 517), +(208935, 'Byron', 2011, 'M', 512), +(208936, 'Cason', 2011, 'M', 511), +(208937, 'Kane', 2011, 'M', 511), +(208938, 'Ari', 2011, 'M', 509), +(208939, 'Brett', 2011, 'M', 508), +(208940, 'Finley', 2011, 'M', 507), +(208941, 'Cyrus', 2011, 'M', 505), +(208942, 'Deandre', 2011, 'M', 505), +(208943, 'Douglas', 2011, 'M', 503), +(208944, 'Justice', 2011, 'M', 502), +(208945, 'Gianni', 2011, 'M', 499), +(208946, 'Talon', 2011, 'M', 499), +(208947, 'Moses', 2011, 'M', 498), +(208948, 'Camron', 2011, 'M', 494), +(208949, 'Cannon', 2011, 'M', 492), +(208950, 'Kendrick', 2011, 'M', 492), +(208951, 'Nash', 2011, 'M', 492), +(208952, 'Dorian', 2011, 'M', 488), +(208953, 'Sullivan', 2011, 'M', 487), +(208954, 'Arjun', 2011, 'M', 485), +(208955, 'Dominik', 2011, 'M', 481), +(208956, 'Kasen', 2011, 'M', 480), +(208957, 'Quinton', 2011, 'M', 478), +(208958, 'Royce', 2011, 'M', 478), +(208959, 'Ahmed', 2011, 'M', 477), +(208960, 'Korbin', 2011, 'M', 477), +(208961, 'Salvador', 2011, 'M', 477), +(208962, 'Roger', 2011, 'M', 476), +(208963, 'Morgan', 2011, 'M', 475), +(208964, 'Skylar', 2011, 'M', 475), +(208965, 'Terry', 2011, 'M', 475), +(208966, 'Brodie', 2011, 'M', 474), +(208967, 'Raiden', 2011, 'M', 474), +(208968, 'Isaias', 2011, 'M', 473), +(208969, 'Tobias', 2011, 'M', 473), +(208970, 'Moshe', 2011, 'M', 472), +(208971, 'Conor', 2011, 'M', 471), +(208972, 'Frederick', 2011, 'M', 470), +(208973, 'Madden', 2011, 'M', 470), +(208974, 'Reese', 2011, 'M', 470), +(208975, 'Braiden', 2011, 'M', 468), +(208976, 'Asa', 2011, 'M', 464), +(208977, 'Kelvin', 2011, 'M', 463), +(208978, 'Julien', 2011, 'M', 462), +(208979, 'Wade', 2011, 'M', 462), +(208980, 'Kristian', 2011, 'M', 461), +(208981, 'Davion', 2011, 'M', 460), +(208982, 'Nickolas', 2011, 'M', 460), +(208983, 'Rodney', 2011, 'M', 460), +(208984, 'Xzavier', 2011, 'M', 460), +(208985, 'Alvin', 2011, 'M', 459), +(208986, 'Boston', 2011, 'M', 456), +(208987, 'Ezequiel', 2011, 'M', 455), +(208988, 'Nasir', 2011, 'M', 455), +(208989, 'Nelson', 2011, 'M', 454), +(208990, 'Alonzo', 2011, 'M', 453), +(208991, 'Jase', 2011, 'M', 451), +(208992, 'London', 2011, 'M', 451), +(208993, 'Jermaine', 2011, 'M', 447), +(208994, 'Rhett', 2011, 'M', 447), +(208995, 'Mohammed', 2011, 'M', 446), +(208996, 'Roy', 2011, 'M', 443), +(208997, 'Matias', 2011, 'M', 442), +(208998, 'Ace', 2011, 'M', 438), +(208999, 'Blaine', 2011, 'M', 438), +(209000, 'Keagan', 2011, 'M', 438), +(209001, 'Chad', 2011, 'M', 437), +(209002, 'Aarav', 2011, 'M', 436), +(209003, 'Marc', 2011, 'M', 436), +(209004, 'Trace', 2011, 'M', 436), +(209005, 'Rohan', 2011, 'M', 435), +(209006, 'Aldo', 2011, 'M', 434), +(209007, 'Bently', 2011, 'M', 434), +(209008, 'Nathanael', 2011, 'M', 433), +(209009, 'Uriah', 2011, 'M', 433), +(209010, 'Demetrius', 2011, 'M', 432), +(209011, 'Kamari', 2011, 'M', 432), +(209012, 'Lawson', 2011, 'M', 432), +(209013, 'Layne', 2011, 'M', 431), +(209014, 'Carmelo', 2011, 'M', 430), +(209015, 'Jamarion', 2011, 'M', 427), +(209016, 'Shaun', 2011, 'M', 426), +(209017, 'Terrance', 2011, 'M', 426), +(209018, 'Ahmad', 2011, 'M', 425), +(209019, 'Carl', 2011, 'M', 424), +(209020, 'Kale', 2011, 'M', 424), +(209021, 'Jaydon', 2011, 'M', 421), +(209022, 'Micheal', 2011, 'M', 421), +(209023, 'Noe', 2011, 'M', 421), +(209024, 'Callen', 2011, 'M', 420), +(209025, 'Jaxen', 2011, 'M', 420), +(209026, 'Lucian', 2011, 'M', 418), +(209027, 'Jaxton', 2011, 'M', 415), +(209028, 'Quincy', 2011, 'M', 414), +(209029, 'Rory', 2011, 'M', 413), +(209030, 'Javon', 2011, 'M', 409), +(209031, 'Kendall', 2011, 'M', 408), +(209032, 'Kian', 2011, 'M', 408), +(209033, 'Wilson', 2011, 'M', 408), +(209034, 'Jeffery', 2011, 'M', 407), +(209035, 'Guillermo', 2011, 'M', 406), +(209036, 'Joey', 2011, 'M', 404), +(209037, 'Harper', 2011, 'M', 402), +(209038, 'Jensen', 2011, 'M', 399), +(209039, 'Mohammad', 2011, 'M', 398), +(209040, 'Billy', 2011, 'M', 395), +(209041, 'Dayton', 2011, 'M', 394), +(209042, 'Jonathon', 2011, 'M', 394), +(209043, 'Jadiel', 2011, 'M', 390), +(209044, 'Willie', 2011, 'M', 390), +(209045, 'Jadon', 2011, 'M', 388), +(209046, 'Clark', 2011, 'M', 385), +(209047, 'Francis', 2011, 'M', 385), +(209048, 'Rex', 2011, 'M', 384), +(209049, 'Melvin', 2011, 'M', 383), +(209050, 'Kash', 2011, 'M', 381), +(209051, 'Malakai', 2011, 'M', 381), +(209052, 'Terrell', 2011, 'M', 380), +(209053, 'Ariel', 2011, 'M', 379), +(209054, 'Cristopher', 2011, 'M', 376), +(209055, 'Layton', 2011, 'M', 376), +(209056, 'Sylas', 2011, 'M', 376), +(209057, 'Semaj', 2011, 'M', 372), +(209058, 'Gerald', 2011, 'M', 371), +(209059, 'Lewis', 2011, 'M', 370), +(209060, 'Aron', 2011, 'M', 369), +(209061, 'Kody', 2011, 'M', 369), +(209062, 'Messiah', 2011, 'M', 369), +(209063, 'Tomas', 2011, 'M', 369), +(209064, 'Tommy', 2011, 'M', 368), +(209065, 'Triston', 2011, 'M', 368), +(209066, 'Marlon', 2011, 'M', 367), +(209067, 'Bentlee', 2011, 'M', 366), +(209068, 'Aidyn', 2011, 'M', 364), +(209069, 'Alessandro', 2011, 'M', 364), +(209070, 'Isiah', 2011, 'M', 364), +(209071, 'Nikolai', 2011, 'M', 364), +(209072, 'Jagger', 2011, 'M', 363), +(209073, 'Kylan', 2011, 'M', 363), +(209074, 'Luciano', 2011, 'M', 363), +(209075, 'Omari', 2011, 'M', 363), +(209076, 'Sincere', 2011, 'M', 363), +(209077, 'Cory', 2011, 'M', 362), +(209078, 'Harley', 2011, 'M', 361), +(209079, 'Rene', 2011, 'M', 361), +(209080, 'Terrence', 2011, 'M', 361), +(209081, 'Reginald', 2011, 'M', 359), +(209082, 'Urijah', 2011, 'M', 359), +(209083, 'Beckham', 2011, 'M', 358), +(209084, 'Felipe', 2011, 'M', 358), +(209085, 'Neil', 2011, 'M', 358), +(209086, 'Daxton', 2011, 'M', 357), +(209087, 'Deacon', 2011, 'M', 357), +(209088, 'Jordyn', 2011, 'M', 357), +(209089, 'Tristian', 2011, 'M', 357), +(209090, 'Ulises', 2011, 'M', 357), +(209091, 'Aydin', 2011, 'M', 356), +(209092, 'Kayson', 2011, 'M', 356), +(209093, 'Osvaldo', 2011, 'M', 356), +(209094, 'Santino', 2011, 'M', 356), +(209095, 'Will', 2011, 'M', 356), +(209096, 'Giovanny', 2011, 'M', 355), +(209097, 'Makai', 2011, 'M', 354), +(209098, 'Raphael', 2011, 'M', 354), +(209099, 'Case', 2011, 'M', 352), +(209100, 'Channing', 2011, 'M', 352), +(209101, 'Kole', 2011, 'M', 352), +(209102, 'Lee', 2011, 'M', 351), +(209103, 'Tripp', 2011, 'M', 351), +(209104, 'Allan', 2011, 'M', 350), +(209105, 'Jamal', 2011, 'M', 348), +(209106, 'Stanley', 2011, 'M', 348), +(209107, 'Alonso', 2011, 'M', 347), +(209108, 'Soren', 2011, 'M', 347), +(209109, 'Jorden', 2011, 'M', 346), +(209110, 'Jon', 2011, 'M', 345), +(209111, 'Camren', 2011, 'M', 344), +(209112, 'Davin', 2011, 'M', 344), +(209113, 'Ray', 2011, 'M', 344), +(209114, 'Aydan', 2011, 'M', 343), +(209115, 'Bobby', 2011, 'M', 343), +(209116, 'Jasiah', 2011, 'M', 343), +(209117, 'Aryan', 2011, 'M', 342), +(209118, 'Ben', 2011, 'M', 342), +(209119, 'Markus', 2011, 'M', 342), +(209120, 'Darrell', 2011, 'M', 338), +(209121, 'Hank', 2011, 'M', 336), +(209122, 'Branden', 2011, 'M', 335), +(209123, 'Mathias', 2011, 'M', 335), +(209124, 'Adonis', 2011, 'M', 334), +(209125, 'Darian', 2011, 'M', 333), +(209126, 'Jessie', 2011, 'M', 332), +(209127, 'Marquis', 2011, 'M', 331), +(209128, 'Vicente', 2011, 'M', 330), +(209129, 'Raylan', 2011, 'M', 329), +(209130, 'Zayne', 2011, 'M', 329), +(209131, 'Kenny', 2011, 'M', 327), +(209132, 'Jefferson', 2011, 'M', 325), +(209133, 'Kolby', 2011, 'M', 325), +(209134, 'Leonard', 2011, 'M', 325), +(209135, 'Harry', 2011, 'M', 324), +(209136, 'Steve', 2011, 'M', 324), +(209137, 'Wayne', 2011, 'M', 323), +(209138, 'Adrien', 2011, 'M', 322), +(209139, 'Ayaan', 2011, 'M', 322), +(209140, 'Dax', 2011, 'M', 322), +(209141, 'Emery', 2011, 'M', 322), +(209142, 'Zechariah', 2011, 'M', 322), +(209143, 'Rashad', 2011, 'M', 320), +(209144, 'Ronnie', 2011, 'M', 320), +(209145, 'Dwayne', 2011, 'M', 319), +(209146, 'Samir', 2011, 'M', 319), +(209147, 'Yusuf', 2011, 'M', 319), +(209148, 'Tristin', 2011, 'M', 316), +(209149, 'Clay', 2011, 'M', 315), +(209150, 'Memphis', 2011, 'M', 315), +(209151, 'Benson', 2011, 'M', 314), +(209152, 'Bowen', 2011, 'M', 314), +(209153, 'Lamar', 2011, 'M', 314), +(209154, 'Odin', 2011, 'M', 314), +(209155, 'Javion', 2011, 'M', 313), +(209156, 'Maxim', 2011, 'M', 313), +(209157, 'Ellis', 2011, 'M', 312), +(209158, 'Tatum', 2011, 'M', 312), +(209159, 'Alexzander', 2011, 'M', 311), +(209160, 'Elisha', 2011, 'M', 310), +(209161, 'Rudy', 2011, 'M', 310), +(209162, 'Branson', 2011, 'M', 309), +(209163, 'Draven', 2011, 'M', 309), +(209164, 'Rayan', 2011, 'M', 308), +(209165, 'Zain', 2011, 'M', 308), +(209166, 'Brendon', 2011, 'M', 307), +(209167, 'Rylee', 2011, 'M', 307), +(209168, 'Crosby', 2011, 'M', 306), +(209169, 'Sterling', 2011, 'M', 306), +(209170, 'Brennen', 2011, 'M', 305), +(209171, 'Kareem', 2011, 'M', 305), +(209172, 'Kyson', 2011, 'M', 305), +(209173, 'Winston', 2011, 'M', 305), +(209174, 'Deshawn', 2011, 'M', 304), +(209175, 'Jairo', 2011, 'M', 304), +(209176, 'Jerome', 2011, 'M', 304), +(209177, 'Luka', 2011, 'M', 303), +(209178, 'Lennon', 2011, 'M', 302), +(209179, 'Roland', 2011, 'M', 302), +(209180, 'Zavier', 2011, 'M', 302), +(209181, 'Niko', 2011, 'M', 301), +(209182, 'Vance', 2011, 'M', 300), +(209183, 'Yosef', 2011, 'M', 300), +(209184, 'Cedric', 2011, 'M', 299), +(209185, 'Chaim', 2011, 'M', 299), +(209186, 'Kymani', 2011, 'M', 299), +(209187, 'Trevon', 2011, 'M', 298), +(209188, 'Gauge', 2011, 'M', 297), +(209189, 'Kaeden', 2011, 'M', 296), +(209190, 'Killian', 2011, 'M', 296), +(209191, 'Vincenzo', 2011, 'M', 296), +(209192, 'Teagan', 2011, 'M', 295), +(209193, 'Abdullah', 2011, 'M', 293), +(209194, 'Hamza', 2011, 'M', 293), +(209195, 'Valentino', 2011, 'M', 293), +(209196, 'Augustus', 2011, 'M', 292), +(209197, 'Bo', 2011, 'M', 292), +(209198, 'Edison', 2011, 'M', 292), +(209199, 'Kolten', 2011, 'M', 292), +(209200, 'Darwin', 2011, 'M', 291), +(209201, 'Gavyn', 2011, 'M', 291), +(209202, 'Matthias', 2011, 'M', 291), +(209203, 'Jaylin', 2011, 'M', 290), +(209204, 'Jovani', 2011, 'M', 290), +(209205, 'Toby', 2011, 'M', 290), +(209206, 'Damion', 2011, 'M', 288), +(209207, 'Davian', 2011, 'M', 288), +(209208, 'Hayes', 2011, 'M', 288), +(209209, 'Jamir', 2011, 'M', 288), +(209210, 'Rogelio', 2011, 'M', 288), +(209211, 'Brogan', 2011, 'M', 287), +(209212, 'Brent', 2011, 'M', 286), +(209213, 'Landry', 2011, 'M', 286), +(209214, 'Emmitt', 2011, 'M', 284), +(209215, 'Kamron', 2011, 'M', 284), +(209216, 'Bronson', 2011, 'M', 283), +(209217, 'Van', 2011, 'M', 283), +(209218, 'Casen', 2011, 'M', 282), +(209219, 'Junior', 2011, 'M', 282), +(209220, 'Lionel', 2011, 'M', 282), +(209221, 'Misael', 2011, 'M', 282), +(209222, 'Giancarlo', 2011, 'M', 280), +(209223, 'Yandel', 2011, 'M', 280), +(209224, 'Alfonso', 2011, 'M', 279), +(209225, 'Deangelo', 2011, 'M', 276), +(209226, 'Jamie', 2011, 'M', 276), +(209227, 'Rolando', 2011, 'M', 276), +(209228, 'Abdiel', 2011, 'M', 275), +(209229, 'Conrad', 2011, 'M', 275), +(209230, 'Duncan', 2011, 'M', 275), +(209231, 'Aaden', 2011, 'M', 274), +(209232, 'Ishaan', 2011, 'M', 274), +(209233, 'Ronin', 2011, 'M', 274), +(209234, 'Maximo', 2011, 'M', 273), +(209235, 'Cael', 2011, 'M', 272), +(209236, 'Tyrone', 2011, 'M', 272), +(209237, 'Xavi', 2011, 'M', 272), +(209238, 'Craig', 2011, 'M', 271), +(209239, 'Dominique', 2011, 'M', 271), +(209240, 'Ean', 2011, 'M', 271), +(209241, 'Chace', 2011, 'M', 270), +(209242, 'Bradyn', 2011, 'M', 269), +(209243, 'Mayson', 2011, 'M', 269), +(209244, 'Quintin', 2011, 'M', 269), +(209245, 'Zachery', 2011, 'M', 268), +(209246, 'Derick', 2011, 'M', 267), +(209247, 'Izayah', 2011, 'M', 267), +(209248, 'Johnathon', 2011, 'M', 265), +(209249, 'Konner', 2011, 'M', 265), +(209250, 'Westin', 2011, 'M', 265), +(209251, 'Alvaro', 2011, 'M', 264), +(209252, 'Blaze', 2011, 'M', 263), +(209253, 'Keenan', 2011, 'M', 263), +(209254, 'Lennox', 2011, 'M', 263), +(209255, 'Marcelo', 2011, 'M', 263), +(209256, 'Ramiro', 2011, 'M', 263), +(209257, 'Eugene', 2011, 'M', 262), +(209258, 'Bruno', 2011, 'M', 261), +(209259, 'Rayden', 2011, 'M', 261), +(209260, 'Sage', 2011, 'M', 261), +(209261, 'Eden', 2011, 'M', 260), +(209262, 'Cale', 2011, 'M', 259), +(209263, 'Camryn', 2011, 'M', 259), +(209264, 'Deegan', 2011, 'M', 259), +(209265, 'Jamar', 2011, 'M', 258), +(209266, 'Seamus', 2011, 'M', 258), +(209267, 'Leandro', 2011, 'M', 257), +(209268, 'Damarion', 2011, 'M', 256), +(209269, 'Harold', 2011, 'M', 256), +(209270, 'Marcel', 2011, 'M', 256), +(209271, 'Rodolfo', 2011, 'M', 256), +(209272, 'Jaeden', 2011, 'M', 255), +(209273, 'Jovanni', 2011, 'M', 255), +(209274, 'Cain', 2011, 'M', 254), +(209275, 'Callum', 2011, 'M', 253), +(209276, 'Konnor', 2011, 'M', 253), +(209277, 'Ernest', 2011, 'M', 251), +(209278, 'Jair', 2011, 'M', 251), +(209279, 'Justus', 2011, 'M', 251), +(209280, 'Rowen', 2011, 'M', 251), +(209281, 'Rylen', 2011, 'M', 250), +(209282, 'Arnav', 2011, 'M', 249), +(209283, 'Fisher', 2011, 'M', 249), +(209284, 'Gilberto', 2011, 'M', 249), +(209285, 'Heath', 2011, 'M', 249), +(209286, 'Irvin', 2011, 'M', 249), +(209287, 'Randall', 2011, 'M', 248), +(209288, 'Harvey', 2011, 'M', 247), +(209289, 'Amos', 2011, 'M', 245), +(209290, 'Frankie', 2011, 'M', 245), +(209291, 'Kamryn', 2011, 'M', 245), +(209292, 'Lyric', 2011, 'M', 245), +(209293, 'Masen', 2011, 'M', 244), +(209294, 'Alden', 2011, 'M', 243), +(209295, 'Theo', 2011, 'M', 243), +(209296, 'Hassan', 2011, 'M', 242), +(209297, 'Salvatore', 2011, 'M', 242), +(209298, 'Gilbert', 2011, 'M', 241), +(209299, 'Samson', 2011, 'M', 241), +(209300, 'Todd', 2011, 'M', 241), +(209301, 'Darien', 2011, 'M', 240), +(209302, 'Krish', 2011, 'M', 240), +(209303, 'Hezekiah', 2011, 'M', 239), +(209304, 'Mike', 2011, 'M', 239), +(209305, 'Antoine', 2011, 'M', 238), +(209306, 'Jaidyn', 2011, 'M', 238), +(209307, 'Cassius', 2011, 'M', 237), +(209308, 'Darnell', 2011, 'M', 237), +(209309, 'Isai', 2011, 'M', 237), +(209310, 'Jedidiah', 2011, 'M', 237), +(209311, 'Makhi', 2011, 'M', 236), +(209312, 'Remy', 2011, 'M', 236), +(209313, 'Stefan', 2011, 'M', 236), +(209314, 'Camdyn', 2011, 'M', 235), +(209315, 'Dario', 2011, 'M', 235), +(209316, 'Callan', 2011, 'M', 234), +(209317, 'Kyron', 2011, 'M', 234), +(209318, 'Leonidas', 2011, 'M', 233), +(209319, 'Fletcher', 2011, 'M', 232), +(209320, 'Reagan', 2011, 'M', 232), +(209321, 'Deven', 2011, 'M', 231), +(209322, 'Sidney', 2011, 'M', 231), +(209323, 'Sonny', 2011, 'M', 231), +(209324, 'Yadiel', 2011, 'M', 230), +(209325, 'Jerimiah', 2011, 'M', 229), +(209326, 'Santos', 2011, 'M', 229), +(209327, 'Efrain', 2011, 'M', 228), +(209328, 'Brenton', 2011, 'M', 226), +(209329, 'Nixon', 2011, 'M', 226), +(209330, 'Tyrell', 2011, 'M', 226), +(209331, 'Vaughn', 2011, 'M', 226), +(209332, 'Aditya', 2011, 'M', 225), +(209333, 'Brysen', 2011, 'M', 225), +(209334, 'Elvis', 2011, 'M', 224), +(209335, 'Freddy', 2011, 'M', 223), +(209336, 'Thaddeus', 2011, 'M', 223), +(209337, 'Zaire', 2011, 'M', 223), +(209338, 'Demarcus', 2011, 'M', 222), +(209339, 'Gaige', 2011, 'M', 222), +(209340, 'Coleman', 2011, 'M', 221), +(209341, 'Gibson', 2011, 'M', 221), +(209342, 'Jaylon', 2011, 'M', 221), +(209343, 'Zackery', 2011, 'M', 221), +(209344, 'Arlo', 2011, 'M', 220), +(209345, 'Roderick', 2011, 'M', 220), +(209346, 'Turner', 2011, 'M', 220), +(209347, 'Alfred', 2011, 'M', 219), +(209348, 'Jabari', 2011, 'M', 219), +(209349, 'Agustin', 2011, 'M', 218), +(209350, 'Bodhi', 2011, 'M', 218), +(209351, 'Braylin', 2011, 'M', 218), +(209352, 'Clinton', 2011, 'M', 218), +(209353, 'Leighton', 2011, 'M', 218), +(209354, 'Arian', 2011, 'M', 217), +(209355, 'Miller', 2011, 'M', 217), +(209356, 'Quinten', 2011, 'M', 217), +(209357, 'Yehuda', 2011, 'M', 216), +(209358, 'Jakobe', 2011, 'M', 215), +(209359, 'Legend', 2011, 'M', 215), +(209360, 'Mustafa', 2011, 'M', 215), +(209361, 'Lathan', 2011, 'M', 214), +(209362, 'Blaise', 2011, 'M', 213), +(209363, 'Otto', 2011, 'M', 213), +(209364, 'Ross', 2011, 'M', 213), +(209365, 'Brice', 2011, 'M', 212), +(209366, 'Enoch', 2011, 'M', 212), +(209367, 'Vihaan', 2011, 'M', 212), +(209368, 'Benton', 2011, 'M', 211), +(209369, 'Flynn', 2011, 'M', 211), +(209370, 'Reuben', 2011, 'M', 211), +(209371, 'Rey', 2011, 'M', 211), +(209372, 'Crew', 2011, 'M', 210), +(209373, 'Graysen', 2011, 'M', 210), +(209374, 'Houston', 2011, 'M', 210), +(209375, 'Hugh', 2011, 'M', 210), +(209376, 'Jaycob', 2011, 'M', 210), +(209377, 'Jean', 2011, 'M', 209), +(209378, 'Johann', 2011, 'M', 209), +(209379, 'Maxton', 2011, 'M', 209), +(209380, 'Darryl', 2011, 'M', 208), +(209381, 'Devan', 2011, 'M', 208), +(209382, 'Donte', 2011, 'M', 208), +(209383, 'Ralph', 2011, 'M', 208), +(209384, 'Trystan', 2011, 'M', 208), +(209385, 'Tyree', 2011, 'M', 208), +(209386, 'Anders', 2011, 'M', 207), +(209387, 'Bridger', 2011, 'M', 207), +(209388, 'Ignacio', 2011, 'M', 207), +(209389, 'Franco', 2011, 'M', 206), +(209390, 'Jaydan', 2011, 'M', 206), +(209391, 'Mariano', 2011, 'M', 206), +(209392, 'Howard', 2011, 'M', 205), +(209393, 'Joziah', 2011, 'M', 205), +(209394, 'Valentin', 2011, 'M', 205), +(209395, 'Brecken', 2011, 'M', 204), +(209396, 'Haiden', 2011, 'M', 204), +(209397, 'Maksim', 2011, 'M', 204), +(209398, 'Maxx', 2011, 'M', 204), +(209399, 'Broderick', 2011, 'M', 203), +(209400, 'Eliseo', 2011, 'M', 203), +(209401, 'Hendrix', 2011, 'M', 203), +(209402, 'Zeke', 2011, 'M', 203), +(209403, 'Coen', 2011, 'M', 202), +(209404, 'Elian', 2011, 'M', 202), +(209405, 'Tyrese', 2011, 'M', 202), +(209406, 'Keon', 2011, 'M', 201), +(209407, 'Princeton', 2011, 'M', 201), +(209408, 'Cristiano', 2011, 'M', 200), +(209409, 'Damari', 2011, 'M', 200), +(209410, 'Davon', 2011, 'M', 200), +(209411, 'Deon', 2011, 'M', 200), +(209412, 'Corban', 2011, 'M', 199), +(209413, 'Jaron', 2011, 'M', 199), +(209414, 'Dimitri', 2011, 'M', 198), +(209415, 'Kael', 2011, 'M', 198); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(209416, 'Kyan', 2011, 'M', 198), +(209417, 'Malaki', 2011, 'M', 198), +(209418, 'Jaydin', 2011, 'M', 197), +(209419, 'Major', 2011, 'M', 197), +(209420, 'Pierre', 2011, 'M', 197), +(209421, 'Kingsley', 2011, 'M', 196), +(209422, 'Kohen', 2011, 'M', 196), +(209423, 'Cortez', 2011, 'M', 195), +(209424, 'Jeramiah', 2011, 'M', 195), +(209425, 'Oakley', 2011, 'M', 195), +(209426, 'Camilo', 2011, 'M', 194), +(209427, 'Carlo', 2011, 'M', 194), +(209428, 'Cayson', 2011, 'M', 194), +(209429, 'Dangelo', 2011, 'M', 194), +(209430, 'Kamren', 2011, 'M', 194), +(209431, 'Yair', 2011, 'M', 194), +(209432, 'Yisroel', 2011, 'M', 194), +(209433, 'Addison', 2011, 'M', 193), +(209434, 'Ethen', 2011, 'M', 193), +(209435, 'Keyon', 2011, 'M', 193), +(209436, 'Nigel', 2011, 'M', 193), +(209437, 'Slade', 2011, 'M', 193), +(209438, 'Ameer', 2011, 'M', 191), +(209439, 'Anton', 2011, 'M', 191), +(209440, 'Clarence', 2011, 'M', 191), +(209441, 'Bode', 2011, 'M', 190), +(209442, 'Dariel', 2011, 'M', 190), +(209443, 'Humberto', 2011, 'M', 190), +(209444, 'Neymar', 2011, 'M', 190), +(209445, 'Nikhil', 2011, 'M', 190), +(209446, 'Boden', 2011, 'M', 189), +(209447, 'Carsen', 2011, 'M', 189), +(209448, 'Taj', 2011, 'M', 189), +(209449, 'Aarush', 2011, 'M', 188), +(209450, 'Destin', 2011, 'M', 188), +(209451, 'Yousef', 2011, 'M', 188), +(209452, 'Kenyon', 2011, 'M', 187), +(209453, 'Thiago', 2011, 'M', 187), +(209454, 'Jericho', 2011, 'M', 186), +(209455, 'Leroy', 2011, 'M', 186), +(209456, 'Rocky', 2011, 'M', 186), +(209457, 'Jaquan', 2011, 'M', 185), +(209458, 'Leif', 2011, 'M', 185), +(209459, 'Maison', 2011, 'M', 185), +(209460, 'Aedan', 2011, 'M', 184), +(209461, 'Cristofer', 2011, 'M', 184), +(209462, 'Jarrett', 2011, 'M', 184), +(209463, 'Kyree', 2011, 'M', 184), +(209464, 'Siddharth', 2011, 'M', 184), +(209465, 'Corbyn', 2011, 'M', 183), +(209466, 'Gordon', 2011, 'M', 183), +(209467, 'Menachem', 2011, 'M', 183), +(209468, 'Truman', 2011, 'M', 183), +(209469, 'Zaid', 2011, 'M', 183), +(209470, 'Briggs', 2011, 'M', 182), +(209471, 'Marley', 2011, 'M', 182), +(209472, 'Mordechai', 2011, 'M', 182), +(209473, 'Zack', 2011, 'M', 182), +(209474, 'Jovanny', 2011, 'M', 181), +(209475, 'Mack', 2011, 'M', 181), +(209476, 'Titan', 2011, 'M', 181), +(209477, 'Zyaire', 2011, 'M', 181), +(209478, 'Adolfo', 2011, 'M', 180), +(209479, 'Antwan', 2011, 'M', 180), +(209480, 'Daylen', 2011, 'M', 180), +(209481, 'Lucca', 2011, 'M', 179), +(209482, 'Ulysses', 2011, 'M', 179), +(209483, 'Yael', 2011, 'M', 179), +(209484, 'Colson', 2011, 'M', 178), +(209485, 'Dilan', 2011, 'M', 178), +(209486, 'Eddy', 2011, 'M', 178), +(209487, 'Eliot', 2011, 'M', 178), +(209488, 'Elmer', 2011, 'M', 178), +(209489, 'Isaak', 2011, 'M', 178), +(209490, 'Lachlan', 2011, 'M', 178), +(209491, 'Josh', 2011, 'M', 177), +(209492, 'Langston', 2011, 'M', 177), +(209493, 'Braedon', 2011, 'M', 176), +(209494, 'Geovanni', 2011, 'M', 176), +(209495, 'Reynaldo', 2011, 'M', 176), +(209496, 'Sheldon', 2011, 'M', 176), +(209497, 'Zavion', 2011, 'M', 176), +(209498, 'Brayson', 2011, 'M', 175), +(209499, 'Devyn', 2011, 'M', 175), +(209500, 'Jadyn', 2011, 'M', 175), +(209501, 'Kyran', 2011, 'M', 175), +(209502, 'Emory', 2011, 'M', 174), +(209503, 'Jayvion', 2011, 'M', 174), +(209504, 'Jovan', 2011, 'M', 174), +(209505, 'Kamdyn', 2011, 'M', 174), +(209506, 'Shimon', 2011, 'M', 174), +(209507, 'Ephraim', 2011, 'M', 173), +(209508, 'Korbyn', 2011, 'M', 173), +(209509, 'Armaan', 2011, 'M', 172), +(209510, 'Briar', 2011, 'M', 172), +(209511, 'Gerard', 2011, 'M', 172), +(209512, 'Jaedyn', 2011, 'M', 172), +(209513, 'Karsen', 2011, 'M', 172), +(209514, 'Pranav', 2011, 'M', 172), +(209515, 'Simeon', 2011, 'M', 172), +(209516, 'Dillan', 2011, 'M', 171), +(209517, 'Kalel', 2011, 'M', 171), +(209518, 'Marquise', 2011, 'M', 171), +(209519, 'Bodie', 2011, 'M', 170), +(209520, 'Gino', 2011, 'M', 170), +(209521, 'Karl', 2011, 'M', 170), +(209522, 'Lamont', 2011, 'M', 170), +(209523, 'Marcello', 2011, 'M', 170), +(209524, 'Zaden', 2011, 'M', 170), +(209525, 'Coby', 2011, 'M', 169), +(209526, 'Immanuel', 2011, 'M', 169), +(209527, 'Jovany', 2011, 'M', 169), +(209528, 'Kadyn', 2011, 'M', 169), +(209529, 'Bailey', 2011, 'M', 168), +(209530, 'Bernard', 2011, 'M', 168), +(209531, 'Kelton', 2011, 'M', 168), +(209532, 'Kooper', 2011, 'M', 168), +(209533, 'Stone', 2011, 'M', 168), +(209534, 'Tayden', 2011, 'M', 168), +(209535, 'Jordon', 2011, 'M', 167), +(209536, 'Kadin', 2011, 'M', 167), +(209537, 'Eliezer', 2011, 'M', 166), +(209538, 'Koen', 2011, 'M', 166), +(209539, 'Shiloh', 2011, 'M', 166), +(209540, 'Thatcher', 2011, 'M', 166), +(209541, 'Avi', 2011, 'M', 165), +(209542, 'Bilal', 2011, 'M', 165), +(209543, 'Dale', 2011, 'M', 165), +(209544, 'Jesiah', 2011, 'M', 165), +(209545, 'Stephan', 2011, 'M', 165), +(209546, 'Abner', 2011, 'M', 164), +(209547, 'Lucien', 2011, 'M', 164), +(209548, 'Dhruv', 2011, 'M', 163), +(209549, 'Estevan', 2011, 'M', 163), +(209550, 'Bishop', 2011, 'M', 162), +(209551, 'Demarion', 2011, 'M', 162), +(209552, 'Glenn', 2011, 'M', 162), +(209553, 'Jacobi', 2011, 'M', 162), +(209554, 'Keanu', 2011, 'M', 162), +(209555, 'Nathen', 2011, 'M', 162), +(209556, 'Johnpaul', 2011, 'M', 161), +(209557, 'Kyren', 2011, 'M', 161), +(209558, 'Rigoberto', 2011, 'M', 161), +(209559, 'Vince', 2011, 'M', 161), +(209560, 'Forrest', 2011, 'M', 160), +(209561, 'Kaidyn', 2011, 'M', 160), +(209562, 'Vladimir', 2011, 'M', 160), +(209563, 'Braedyn', 2011, 'M', 159), +(209564, 'Canaan', 2011, 'M', 159), +(209565, 'Dashawn', 2011, 'M', 159), +(209566, 'Dereck', 2011, 'M', 159), +(209567, 'Harlan', 2011, 'M', 159), +(209568, 'Milton', 2011, 'M', 159), +(209569, 'Tremaine', 2011, 'M', 159), +(209570, 'Ajay', 2011, 'M', 158), +(209571, 'Austyn', 2011, 'M', 158), +(209572, 'Keller', 2011, 'M', 158), +(209573, 'Mikel', 2011, 'M', 158), +(209574, 'Treyton', 2011, 'M', 158), +(209575, 'Zyon', 2011, 'M', 158), +(209576, 'Desean', 2011, 'M', 157), +(209577, 'Kannon', 2011, 'M', 157), +(209578, 'Khalid', 2011, 'M', 157), +(209579, 'Kye', 2011, 'M', 157), +(209580, 'Sammy', 2011, 'M', 157), +(209581, 'Treyvon', 2011, 'M', 157), +(209582, 'Anson', 2011, 'M', 156), +(209583, 'Ryley', 2011, 'M', 156), +(209584, 'Augustine', 2011, 'M', 155), +(209585, 'Denzel', 2011, 'M', 155), +(209586, 'Eamon', 2011, 'M', 155), +(209587, 'Kasey', 2011, 'M', 155), +(209588, 'Chaz', 2011, 'M', 154), +(209589, 'Cornelius', 2011, 'M', 154), +(209590, 'Juelz', 2011, 'M', 154), +(209591, 'Nick', 2011, 'M', 154), +(209592, 'Ronaldo', 2011, 'M', 154), +(209593, 'Magnus', 2011, 'M', 153), +(209594, 'Trevin', 2011, 'M', 153), +(209595, 'Alek', 2011, 'M', 152), +(209596, 'Brentley', 2011, 'M', 152), +(209597, 'Clyde', 2011, 'M', 152), +(209598, 'Jai', 2011, 'M', 152), +(209599, 'Judson', 2011, 'M', 152), +(209600, 'Santana', 2011, 'M', 152), +(209601, 'Andreas', 2011, 'M', 151), +(209602, 'Cristobal', 2011, 'M', 151), +(209603, 'Jakari', 2011, 'M', 151), +(209604, 'Viktor', 2011, 'M', 151), +(209605, 'Yaakov', 2011, 'M', 151), +(209606, 'Colter', 2011, 'M', 150), +(209607, 'Cormac', 2011, 'M', 150), +(209608, 'Garrison', 2011, 'M', 150), +(209609, 'German', 2011, 'M', 150), +(209610, 'Stetson', 2011, 'M', 150), +(209611, 'Austen', 2011, 'M', 149), +(209612, 'Ayan', 2011, 'M', 149), +(209613, 'Benicio', 2011, 'M', 149), +(209614, 'Benny', 2011, 'M', 149), +(209615, 'Drayden', 2011, 'M', 149), +(209616, 'Jamel', 2011, 'M', 149), +(209617, 'Maddux', 2011, 'M', 149), +(209618, 'Milan', 2011, 'M', 149), +(209619, 'Beck', 2011, 'M', 148), +(209620, 'Campbell', 2011, 'M', 148), +(209621, 'Devonte', 2011, 'M', 148), +(209622, 'Ely', 2011, 'M', 148), +(209623, 'Gonzalo', 2011, 'M', 148), +(209624, 'Shea', 2011, 'M', 148), +(209625, 'Aayden', 2011, 'M', 147), +(209626, 'Antony', 2011, 'M', 147), +(209627, 'Aydenn', 2011, 'M', 147), +(209628, 'Carmello', 2011, 'M', 147), +(209629, 'Javian', 2011, 'M', 147), +(209630, 'Kenji', 2011, 'M', 147), +(209631, 'Royal', 2011, 'M', 147), +(209632, 'Duke', 2011, 'M', 146), +(209633, 'Emmet', 2011, 'M', 146), +(209634, 'Perry', 2011, 'M', 146), +(209635, 'Shamar', 2011, 'M', 146), +(209636, 'Carmine', 2011, 'M', 145), +(209637, 'Chevy', 2011, 'M', 145), +(209638, 'Juanpablo', 2011, 'M', 145), +(209639, 'Lloyd', 2011, 'M', 145), +(209640, 'Said', 2011, 'M', 145), +(209641, 'Tyshawn', 2011, 'M', 145), +(209642, 'Joan', 2011, 'M', 144), +(209643, 'Jullian', 2011, 'M', 144), +(209644, 'Octavio', 2011, 'M', 144), +(209645, 'Sami', 2011, 'M', 144), +(209646, 'Baylor', 2011, 'M', 143), +(209647, 'Darion', 2011, 'M', 143), +(209648, 'Elvin', 2011, 'M', 143), +(209649, 'Jaleel', 2011, 'M', 143), +(209650, 'Javen', 2011, 'M', 143), +(209651, 'Otis', 2011, 'M', 143), +(209652, 'Reilly', 2011, 'M', 143), +(209653, 'Yaseen', 2011, 'M', 143), +(209654, 'Aleksander', 2011, 'M', 142), +(209655, 'Apollo', 2011, 'M', 142), +(209656, 'Aubrey', 2011, 'M', 142), +(209657, 'Dion', 2011, 'M', 142), +(209658, 'Leeland', 2011, 'M', 142), +(209659, 'Shmuel', 2011, 'M', 142), +(209660, 'Anish', 2011, 'M', 141), +(209661, 'Denver', 2011, 'M', 141), +(209662, 'Guy', 2011, 'M', 141), +(209663, 'Jet', 2011, 'M', 141), +(209664, 'Karim', 2011, 'M', 141), +(209665, 'Kylen', 2011, 'M', 141), +(209666, 'Mikah', 2011, 'M', 141), +(209667, 'Rico', 2011, 'M', 141), +(209668, 'Darrius', 2011, 'M', 140), +(209669, 'Ewan', 2011, 'M', 140), +(209670, 'Zayd', 2011, 'M', 140), +(209671, 'Aston', 2011, 'M', 139), +(209672, 'Ford', 2011, 'M', 139), +(209673, 'Fredrick', 2011, 'M', 139), +(209674, 'Kayleb', 2011, 'M', 139), +(209675, 'Lenny', 2011, 'M', 139), +(209676, 'Talan', 2011, 'M', 139), +(209677, 'Tevin', 2011, 'M', 139), +(209678, 'Dwight', 2011, 'M', 138), +(209679, 'Francesco', 2011, 'M', 138), +(209680, 'Gaven', 2011, 'M', 138), +(209681, 'Izaak', 2011, 'M', 138), +(209682, 'Sebastien', 2011, 'M', 138), +(209683, 'Amar', 2011, 'M', 137), +(209684, 'Bernardo', 2011, 'M', 137), +(209685, 'Brighton', 2011, 'M', 137), +(209686, 'Graeme', 2011, 'M', 137), +(209687, 'Jayvon', 2011, 'M', 137), +(209688, 'Kaison', 2011, 'M', 137), +(209689, 'Kyrie', 2011, 'M', 137), +(209690, 'Landin', 2011, 'M', 137), +(209691, 'Brigham', 2011, 'M', 136), +(209692, 'Dandre', 2011, 'M', 136), +(209693, 'Dev', 2011, 'M', 136), +(209694, 'Elan', 2011, 'M', 136), +(209695, 'Jencarlos', 2011, 'M', 136), +(209696, 'Josef', 2011, 'M', 136), +(209697, 'Kaysen', 2011, 'M', 136), +(209698, 'Kenton', 2011, 'M', 136), +(209699, 'Lyle', 2011, 'M', 136), +(209700, 'Dash', 2011, 'M', 135), +(209701, 'Ever', 2011, 'M', 135), +(209702, 'Jarvis', 2011, 'M', 135), +(209703, 'Kallen', 2011, 'M', 135), +(209704, 'Rishi', 2011, 'M', 135), +(209705, 'Tobin', 2011, 'M', 135), +(209706, 'Tristyn', 2011, 'M', 135), +(209707, 'Clifford', 2011, 'M', 134), +(209708, 'Dallin', 2011, 'M', 134), +(209709, 'Domenic', 2011, 'M', 134), +(209710, 'Haven', 2011, 'M', 134), +(209711, 'Jamarcus', 2011, 'M', 134), +(209712, 'Jamil', 2011, 'M', 134), +(209713, 'Kiptyn', 2011, 'M', 134), +(209714, 'Aven', 2011, 'M', 133), +(209715, 'Gianluca', 2011, 'M', 133), +(209716, 'Ishmael', 2011, 'M', 133), +(209717, 'Johnnie', 2011, 'M', 133), +(209718, 'Leyton', 2011, 'M', 133), +(209719, 'Maximillian', 2011, 'M', 133), +(209720, 'Mikael', 2011, 'M', 133), +(209721, 'Musa', 2011, 'M', 133), +(209722, 'Tyce', 2011, 'M', 133), +(209723, 'Amarion', 2011, 'M', 132), +(209724, 'Emir', 2011, 'M', 132), +(209725, 'Finnian', 2011, 'M', 132), +(209726, 'Imran', 2011, 'M', 132), +(209727, 'Jahmir', 2011, 'M', 132), +(209728, 'Kent', 2011, 'M', 132), +(209729, 'Markell', 2011, 'M', 132), +(209730, 'Nate', 2011, 'M', 132), +(209731, 'Savion', 2011, 'M', 132), +(209732, 'Stephon', 2011, 'M', 132), +(209733, 'Alton', 2011, 'M', 131), +(209734, 'Dontae', 2011, 'M', 131), +(209735, 'Louie', 2011, 'M', 131), +(209736, 'Raheem', 2011, 'M', 131), +(209737, 'Baron', 2011, 'M', 130), +(209738, 'Bryton', 2011, 'M', 130), +(209739, 'Keshawn', 2011, 'M', 130), +(209740, 'Shlomo', 2011, 'M', 130), +(209741, 'Syed', 2011, 'M', 130), +(209742, 'Yahya', 2011, 'M', 130), +(209743, 'Yitzchok', 2011, 'M', 130), +(209744, 'Bryden', 2011, 'M', 129), +(209745, 'Courtney', 2011, 'M', 129), +(209746, 'Geovanny', 2011, 'M', 129), +(209747, 'Kalvin', 2011, 'M', 129), +(209748, 'Kamarion', 2011, 'M', 129), +(209749, 'Kenan', 2011, 'M', 129), +(209750, 'Koby', 2011, 'M', 129), +(209751, 'Torin', 2011, 'M', 129), +(209752, 'Azariah', 2011, 'M', 128), +(209753, 'Carsten', 2011, 'M', 128), +(209754, 'Dewayne', 2011, 'M', 128), +(209755, 'Duane', 2011, 'M', 128), +(209756, 'Eliel', 2011, 'M', 128), +(209757, 'Nathanial', 2011, 'M', 128), +(209758, 'Axton', 2011, 'M', 127), +(209759, 'Brennon', 2011, 'M', 127), +(209760, 'Cordell', 2011, 'M', 127), +(209761, 'Jacen', 2011, 'M', 127), +(209762, 'Jeremias', 2011, 'M', 127), +(209763, 'Kain', 2011, 'M', 127), +(209764, 'Kegan', 2011, 'M', 127), +(209765, 'Kipton', 2011, 'M', 127), +(209766, 'Lucius', 2011, 'M', 127), +(209767, 'Rowdy', 2011, 'M', 127), +(209768, 'Terence', 2011, 'M', 127), +(209769, 'Yerik', 2011, 'M', 127), +(209770, 'Atreyu', 2011, 'M', 126), +(209771, 'Dashiell', 2011, 'M', 126), +(209772, 'Ishan', 2011, 'M', 126), +(209773, 'Linus', 2011, 'M', 126), +(209774, 'Norman', 2011, 'M', 126), +(209775, 'Trenten', 2011, 'M', 126), +(209776, 'Avraham', 2011, 'M', 125), +(209777, 'Benito', 2011, 'M', 125), +(209778, 'Deshaun', 2011, 'M', 125), +(209779, 'Eliyahu', 2011, 'M', 125), +(209780, 'Gabe', 2011, 'M', 125), +(209781, 'Grayden', 2011, 'M', 125), +(209782, 'Grey', 2011, 'M', 125), +(209783, 'Greysen', 2011, 'M', 125), +(209784, 'Presley', 2011, 'M', 125), +(209785, 'Sutton', 2011, 'M', 125), +(209786, 'Zakary', 2011, 'M', 125), +(209787, 'Cashton', 2011, 'M', 124), +(209788, 'Deion', 2011, 'M', 124), +(209789, 'Kennedy', 2011, 'M', 124), +(209790, 'Korey', 2011, 'M', 124), +(209791, 'Rayyan', 2011, 'M', 124), +(209792, 'Tahj', 2011, 'M', 124), +(209793, 'Achilles', 2011, 'M', 123), +(209794, 'Markel', 2011, 'M', 123), +(209795, 'Nestor', 2011, 'M', 123), +(209796, 'Diesel', 2011, 'M', 122), +(209797, 'Fidel', 2011, 'M', 122), +(209798, 'Garret', 2011, 'M', 122), +(209799, 'Jaziel', 2011, 'M', 122), +(209800, 'Jermiah', 2011, 'M', 122), +(209801, 'Lyndon', 2011, 'M', 122), +(209802, 'Oskar', 2011, 'M', 122), +(209803, 'Ridge', 2011, 'M', 122), +(209804, 'Sabastian', 2011, 'M', 122), +(209805, 'Zev', 2011, 'M', 122), +(209806, 'Gian', 2011, 'M', 121), +(209807, 'Irving', 2011, 'M', 121), +(209808, 'Jeremih', 2011, 'M', 121), +(209809, 'Jeshua', 2011, 'M', 121), +(209810, 'Marquez', 2011, 'M', 121), +(209811, 'Tzvi', 2011, 'M', 121), +(209812, 'Veer', 2011, 'M', 121), +(209813, 'Alexandre', 2011, 'M', 120), +(209814, 'Canon', 2011, 'M', 120), +(209815, 'Donavan', 2011, 'M', 120), +(209816, 'Efren', 2011, 'M', 120), +(209817, 'Izaac', 2011, 'M', 120), +(209818, 'Jaylan', 2011, 'M', 120), +(209819, 'Landan', 2011, 'M', 120), +(209820, 'Mikhail', 2011, 'M', 120), +(209821, 'Phineas', 2011, 'M', 120), +(209822, 'Ares', 2011, 'M', 119), +(209823, 'Ismail', 2011, 'M', 119), +(209824, 'Jakai', 2011, 'M', 119), +(209825, 'Jariel', 2011, 'M', 119), +(209826, 'Jaxsen', 2011, 'M', 119), +(209827, 'Jaysen', 2011, 'M', 119), +(209828, 'Kase', 2011, 'M', 119), +(209829, 'Meir', 2011, 'M', 119), +(209830, 'Miguelangel', 2011, 'M', 119), +(209831, 'Pierson', 2011, 'M', 119), +(209832, 'Abdirahman', 2011, 'M', 118), +(209833, 'Barry', 2011, 'M', 118), +(209834, 'Brandt', 2011, 'M', 118), +(209835, 'Braxtyn', 2011, 'M', 118), +(209836, 'Coy', 2011, 'M', 118), +(209837, 'Jaren', 2011, 'M', 118), +(209838, 'Brad', 2011, 'M', 117), +(209839, 'Chayse', 2011, 'M', 117), +(209840, 'Denis', 2011, 'M', 117), +(209841, 'Eian', 2011, 'M', 117), +(209842, 'Gus', 2011, 'M', 117), +(209843, 'Hagen', 2011, 'M', 117), +(209844, 'Jael', 2011, 'M', 117), +(209845, 'Koda', 2011, 'M', 117), +(209846, 'Myron', 2011, 'M', 117), +(209847, 'Nazir', 2011, 'M', 117), +(209848, 'Coltin', 2011, 'M', 116), +(209849, 'Demario', 2011, 'M', 116), +(209850, 'Dezmond', 2011, 'M', 116), +(209851, 'Harris', 2011, 'M', 116), +(209852, 'Jan', 2011, 'M', 116), +(209853, 'Merrick', 2011, 'M', 116), +(209854, 'Westley', 2011, 'M', 116), +(209855, 'Zephaniah', 2011, 'M', 116), +(209856, 'Bronx', 2011, 'M', 115), +(209857, 'Earl', 2011, 'M', 115), +(209858, 'Khristian', 2011, 'M', 115), +(209859, 'Maddex', 2011, 'M', 115), +(209860, 'Vernon', 2011, 'M', 115), +(209861, 'Zakaria', 2011, 'M', 115), +(209862, 'Abdul', 2011, 'M', 114), +(209863, 'Alexavier', 2011, 'M', 114), +(209864, 'Cian', 2011, 'M', 114), +(209865, 'Gannon', 2011, 'M', 114), +(209866, 'Geoffrey', 2011, 'M', 114), +(209867, 'Glen', 2011, 'M', 114), +(209868, 'Idris', 2011, 'M', 114), +(209869, 'Jayven', 2011, 'M', 114), +(209870, 'Korben', 2011, 'M', 114), +(209871, 'Tavion', 2011, 'M', 114), +(209872, 'Treyson', 2011, 'M', 114), +(209873, 'Zahir', 2011, 'M', 114), +(209874, 'Zamir', 2011, 'M', 114), +(209875, 'Adler', 2011, 'M', 113), +(209876, 'Britton', 2011, 'M', 113), +(209877, 'Broden', 2011, 'M', 113), +(209878, 'Don', 2011, 'M', 113), +(209879, 'Hasan', 2011, 'M', 113), +(209880, 'Karsten', 2011, 'M', 113), +(209881, 'Kolt', 2011, 'M', 113), +(209882, 'Marques', 2011, 'M', 113), +(209883, 'Tavin', 2011, 'M', 113), +(209884, 'Vivaan', 2011, 'M', 113), +(209885, 'Adin', 2011, 'M', 112), +(209886, 'Arnold', 2011, 'M', 112), +(209887, 'Caeden', 2011, 'M', 112), +(209888, 'Clifton', 2011, 'M', 112), +(209889, 'Ervin', 2011, 'M', 112), +(209890, 'Jameer', 2011, 'M', 112), +(209891, 'Keelan', 2011, 'M', 112), +(209892, 'Kruz', 2011, 'M', 112), +(209893, 'Lonnie', 2011, 'M', 112), +(209894, 'Malakhi', 2011, 'M', 112), +(209895, 'Shayne', 2011, 'M', 112), +(209896, 'Tiago', 2011, 'M', 112), +(209897, 'Arya', 2011, 'M', 111), +(209898, 'Braulio', 2011, 'M', 111), +(209899, 'Deklan', 2011, 'M', 111), +(209900, 'Edmund', 2011, 'M', 111), +(209901, 'Henrik', 2011, 'M', 111), +(209902, 'Kurt', 2011, 'M', 111), +(209903, 'Maddix', 2011, 'M', 111), +(209904, 'Rian', 2011, 'M', 111), +(209905, 'Trae', 2011, 'M', 111), +(209906, 'Jelani', 2011, 'M', 110), +(209907, 'Keven', 2011, 'M', 110), +(209908, 'Mac', 2011, 'M', 110), +(209909, 'Oziel', 2011, 'M', 110), +(209910, 'Rashawn', 2011, 'M', 110), +(209911, 'Alexandro', 2011, 'M', 109), +(209912, 'Amani', 2011, 'M', 109), +(209913, 'Athan', 2011, 'M', 109), +(209914, 'Blayne', 2011, 'M', 109), +(209915, 'Carsyn', 2011, 'M', 109), +(209916, 'Ira', 2011, 'M', 109), +(209917, 'Jordy', 2011, 'M', 109), +(209918, 'Marek', 2011, 'M', 109), +(209919, 'Nikko', 2011, 'M', 109), +(209920, 'Rickey', 2011, 'M', 109), +(209921, 'Alistair', 2011, 'M', 108), +(209922, 'Ansh', 2011, 'M', 108), +(209923, 'Atlas', 2011, 'M', 108), +(209924, 'Coltyn', 2011, 'M', 108), +(209925, 'Dan', 2011, 'M', 108), +(209926, 'Finnley', 2011, 'M', 108), +(209927, 'Jaedon', 2011, 'M', 108), +(209928, 'Rome', 2011, 'M', 108), +(209929, 'Wilmer', 2011, 'M', 108), +(209930, 'Yakov', 2011, 'M', 108), +(209931, 'Yoel', 2011, 'M', 108), +(209932, 'Youssef', 2011, 'M', 108), +(209933, 'Arman', 2011, 'M', 107), +(209934, 'Kelly', 2011, 'M', 107), +(209935, 'Marko', 2011, 'M', 107), +(209936, 'Massimo', 2011, 'M', 107), +(209937, 'Abhinav', 2011, 'M', 106), +(209938, 'Demari', 2011, 'M', 106), +(209939, 'Emil', 2011, 'M', 106), +(209940, 'Jakub', 2011, 'M', 106), +(209941, 'Kalen', 2011, 'M', 106), +(209942, 'Syncere', 2011, 'M', 106), +(209943, 'Tariq', 2011, 'M', 106), +(209944, 'Thor', 2011, 'M', 106), +(209945, 'Tye', 2011, 'M', 106), +(209946, 'Aaryan', 2011, 'M', 105), +(209947, 'Fred', 2011, 'M', 105), +(209948, 'Kollin', 2011, 'M', 105), +(209949, 'Micaiah', 2011, 'M', 105), +(209950, 'Om', 2011, 'M', 105), +(209951, 'Shaan', 2011, 'M', 105), +(209952, 'Yasir', 2011, 'M', 105), +(209953, 'Amauri', 2011, 'M', 104), +(209954, 'Daryl', 2011, 'M', 104), +(209955, 'Donnie', 2011, 'M', 104), +(209956, 'Gatlin', 2011, 'M', 104), +(209957, 'Kaedyn', 2011, 'M', 104), +(209958, 'Latrell', 2011, 'M', 104), +(209959, 'Ramsey', 2011, 'M', 104), +(209960, 'Ryden', 2011, 'M', 104), +(209961, 'Ayush', 2011, 'M', 103), +(209962, 'Calen', 2011, 'M', 103), +(209963, 'Heriberto', 2011, 'M', 103), +(209964, 'Javien', 2011, 'M', 103), +(209965, 'Masyn', 2011, 'M', 103), +(209966, 'Ramses', 2011, 'M', 103), +(209967, 'Raymundo', 2011, 'M', 103), +(209968, 'Shepherd', 2011, 'M', 103), +(209969, 'Shia', 2011, 'M', 103), +(209970, 'Teegan', 2011, 'M', 103), +(209971, 'Tylan', 2011, 'M', 103), +(209972, 'Ahmir', 2011, 'M', 102), +(209973, 'Antwon', 2011, 'M', 102), +(209974, 'Canyon', 2011, 'M', 102), +(209975, 'Carlton', 2011, 'M', 102), +(209976, 'Darin', 2011, 'M', 102), +(209977, 'Filip', 2011, 'M', 102), +(209978, 'Foster', 2011, 'M', 102), +(209979, 'Hollis', 2011, 'M', 102), +(209980, 'Jahir', 2011, 'M', 102), +(209981, 'Jayse', 2011, 'M', 102), +(209982, 'Jonatan', 2011, 'M', 102), +(209983, 'Kiran', 2011, 'M', 102), +(209984, 'Marion', 2011, 'M', 102), +(209985, 'Taven', 2011, 'M', 102), +(209986, 'Yariel', 2011, 'M', 102), +(209987, 'Braylan', 2011, 'M', 101), +(209988, 'Deonte', 2011, 'M', 101), +(209989, 'Kenzo', 2011, 'M', 101), +(209990, 'Lester', 2011, 'M', 101), +(209991, 'Murphy', 2011, 'M', 101), +(209992, 'Robin', 2011, 'M', 101), +(209993, 'Shannon', 2011, 'M', 101), +(209994, 'Fredy', 2011, 'M', 100), +(209995, 'Haden', 2011, 'M', 100), +(209996, 'Hyrum', 2011, 'M', 100), +(209997, 'Kaine', 2011, 'M', 100), +(209998, 'Kashton', 2011, 'M', 100), +(209999, 'Laith', 2011, 'M', 100), +(210000, 'Lochlan', 2011, 'M', 100), +(210001, 'Sophia', 2012, 'F', 22267), +(210002, 'Emma', 2012, 'F', 20902), +(210003, 'Isabella', 2012, 'F', 19058), +(210004, 'Olivia', 2012, 'F', 17277), +(210005, 'Ava', 2012, 'F', 15512), +(210006, 'Emily', 2012, 'F', 13619), +(210007, 'Abigail', 2012, 'F', 12662), +(210008, 'Mia', 2012, 'F', 11998), +(210009, 'Madison', 2012, 'F', 11374), +(210010, 'Elizabeth', 2012, 'F', 9674), +(210011, 'Chloe', 2012, 'F', 9641), +(210012, 'Ella', 2012, 'F', 9177), +(210013, 'Avery', 2012, 'F', 8309), +(210014, 'Addison', 2012, 'F', 8165), +(210015, 'Aubrey', 2012, 'F', 8037), +(210016, 'Lily', 2012, 'F', 7945), +(210017, 'Natalie', 2012, 'F', 7885), +(210018, 'Sofia', 2012, 'F', 7820), +(210019, 'Charlotte', 2012, 'F', 7468), +(210020, 'Zoey', 2012, 'F', 7452), +(210021, 'Grace', 2012, 'F', 7359), +(210022, 'Hannah', 2012, 'F', 7261), +(210023, 'Amelia', 2012, 'F', 7235), +(210024, 'Harper', 2012, 'F', 7179), +(210025, 'Lillian', 2012, 'F', 7143), +(210026, 'Samantha', 2012, 'F', 6913), +(210027, 'Evelyn', 2012, 'F', 6869), +(210028, 'Victoria', 2012, 'F', 6849), +(210029, 'Brooklyn', 2012, 'F', 6769), +(210030, 'Zoe', 2012, 'F', 6435), +(210031, 'Layla', 2012, 'F', 6251), +(210032, 'Hailey', 2012, 'F', 5901), +(210033, 'Leah', 2012, 'F', 5758), +(210034, 'Kaylee', 2012, 'F', 5602), +(210035, 'Anna', 2012, 'F', 5600), +(210036, 'Aaliyah', 2012, 'F', 5495), +(210037, 'Gabriella', 2012, 'F', 5487), +(210038, 'Allison', 2012, 'F', 5415), +(210039, 'Nevaeh', 2012, 'F', 5356), +(210040, 'Alexis', 2012, 'F', 5337), +(210041, 'Audrey', 2012, 'F', 5291), +(210042, 'Savannah', 2012, 'F', 5176), +(210043, 'Sarah', 2012, 'F', 5167), +(210044, 'Alyssa', 2012, 'F', 5078), +(210045, 'Claire', 2012, 'F', 4941), +(210046, 'Taylor', 2012, 'F', 4852), +(210047, 'Riley', 2012, 'F', 4816), +(210048, 'Camila', 2012, 'F', 4789), +(210049, 'Arianna', 2012, 'F', 4708), +(210050, 'Ashley', 2012, 'F', 4691), +(210051, 'Brianna', 2012, 'F', 4624), +(210052, 'Sophie', 2012, 'F', 4566), +(210053, 'Peyton', 2012, 'F', 4464), +(210054, 'Bella', 2012, 'F', 4332), +(210055, 'Khloe', 2012, 'F', 4304), +(210056, 'Genesis', 2012, 'F', 4292), +(210057, 'Alexa', 2012, 'F', 4288), +(210058, 'Serenity', 2012, 'F', 4209), +(210059, 'Kylie', 2012, 'F', 4164), +(210060, 'Aubree', 2012, 'F', 4039), +(210061, 'Scarlett', 2012, 'F', 4039), +(210062, 'Stella', 2012, 'F', 3994), +(210063, 'Maya', 2012, 'F', 3961), +(210064, 'Katherine', 2012, 'F', 3945), +(210065, 'Julia', 2012, 'F', 3872), +(210066, 'Lucy', 2012, 'F', 3803), +(210067, 'Madelyn', 2012, 'F', 3791), +(210068, 'Autumn', 2012, 'F', 3765), +(210069, 'Makayla', 2012, 'F', 3760), +(210070, 'Kayla', 2012, 'F', 3755), +(210071, 'Mackenzie', 2012, 'F', 3750), +(210072, 'Lauren', 2012, 'F', 3654), +(210073, 'Gianna', 2012, 'F', 3615), +(210074, 'Ariana', 2012, 'F', 3572), +(210075, 'Faith', 2012, 'F', 3520), +(210076, 'Alexandra', 2012, 'F', 3478), +(210077, 'Melanie', 2012, 'F', 3462), +(210078, 'Sydney', 2012, 'F', 3449), +(210079, 'Caroline', 2012, 'F', 3412), +(210080, 'Naomi', 2012, 'F', 3411), +(210081, 'Bailey', 2012, 'F', 3399), +(210082, 'Morgan', 2012, 'F', 3392), +(210083, 'Ellie', 2012, 'F', 3382), +(210084, 'Kennedy', 2012, 'F', 3379), +(210085, 'Jasmine', 2012, 'F', 3367), +(210086, 'Eva', 2012, 'F', 3355), +(210087, 'Skylar', 2012, 'F', 3337), +(210088, 'Kimberly', 2012, 'F', 3307), +(210089, 'Violet', 2012, 'F', 3270), +(210090, 'Molly', 2012, 'F', 3251), +(210091, 'Aria', 2012, 'F', 3226), +(210092, 'Jocelyn', 2012, 'F', 3224), +(210093, 'Trinity', 2012, 'F', 3224), +(210094, 'London', 2012, 'F', 3192), +(210095, 'Lydia', 2012, 'F', 3160), +(210096, 'Madeline', 2012, 'F', 3157), +(210097, 'Reagan', 2012, 'F', 3083), +(210098, 'Piper', 2012, 'F', 3056), +(210099, 'Annabelle', 2012, 'F', 3046), +(210100, 'Andrea', 2012, 'F', 3041), +(210101, 'Maria', 2012, 'F', 3027), +(210102, 'Brooke', 2012, 'F', 2969), +(210103, 'Payton', 2012, 'F', 2934), +(210104, 'Paisley', 2012, 'F', 2917), +(210105, 'Paige', 2012, 'F', 2906), +(210106, 'Ruby', 2012, 'F', 2904), +(210107, 'Nora', 2012, 'F', 2885), +(210108, 'Mariah', 2012, 'F', 2873), +(210109, 'Rylee', 2012, 'F', 2791), +(210110, 'Lilly', 2012, 'F', 2777), +(210111, 'Brielle', 2012, 'F', 2764), +(210112, 'Jade', 2012, 'F', 2731), +(210113, 'Destiny', 2012, 'F', 2702), +(210114, 'Nicole', 2012, 'F', 2650), +(210115, 'Mila', 2012, 'F', 2637), +(210116, 'Kendall', 2012, 'F', 2622), +(210117, 'Liliana', 2012, 'F', 2616), +(210118, 'Kaitlyn', 2012, 'F', 2594), +(210119, 'Sadie', 2012, 'F', 2586), +(210120, 'Natalia', 2012, 'F', 2585), +(210121, 'Mary', 2012, 'F', 2565), +(210122, 'Jordyn', 2012, 'F', 2563), +(210123, 'Vanessa', 2012, 'F', 2550), +(210124, 'Mya', 2012, 'F', 2533), +(210125, 'Penelope', 2012, 'F', 2528), +(210126, 'Alice', 2012, 'F', 2495), +(210127, 'Isabelle', 2012, 'F', 2495), +(210128, 'Reese', 2012, 'F', 2458), +(210129, 'Hadley', 2012, 'F', 2416), +(210130, 'Gabrielle', 2012, 'F', 2415), +(210131, 'Katelyn', 2012, 'F', 2409), +(210132, 'Rachel', 2012, 'F', 2407), +(210133, 'Angelina', 2012, 'F', 2395), +(210134, 'Isabel', 2012, 'F', 2374), +(210135, 'Eleanor', 2012, 'F', 2372), +(210136, 'Clara', 2012, 'F', 2331), +(210137, 'Jessica', 2012, 'F', 2323), +(210138, 'Brooklynn', 2012, 'F', 2320), +(210139, 'Elena', 2012, 'F', 2269), +(210140, 'Vivian', 2012, 'F', 2257), +(210141, 'Aliyah', 2012, 'F', 2251), +(210142, 'Sara', 2012, 'F', 2250), +(210143, 'Laila', 2012, 'F', 2245), +(210144, 'Eliana', 2012, 'F', 2243), +(210145, 'Amy', 2012, 'F', 2231), +(210146, 'Lyla', 2012, 'F', 2221), +(210147, 'Juliana', 2012, 'F', 2214), +(210148, 'Adriana', 2012, 'F', 2147), +(210149, 'Valeria', 2012, 'F', 2141), +(210150, 'Elise', 2012, 'F', 2121), +(210151, 'Makenzie', 2012, 'F', 2118), +(210152, 'Mckenzie', 2012, 'F', 2113), +(210153, 'Quinn', 2012, 'F', 2105), +(210154, 'Delilah', 2012, 'F', 2087), +(210155, 'Cora', 2012, 'F', 2078), +(210156, 'Kylee', 2012, 'F', 2045), +(210157, 'Rebecca', 2012, 'F', 2007), +(210158, 'Gracie', 2012, 'F', 1996), +(210159, 'Izabella', 2012, 'F', 1964), +(210160, 'Josephine', 2012, 'F', 1946), +(210161, 'Eden', 2012, 'F', 1932), +(210162, 'Alaina', 2012, 'F', 1927), +(210163, 'Michelle', 2012, 'F', 1925), +(210164, 'Jennifer', 2012, 'F', 1921), +(210165, 'Catherine', 2012, 'F', 1901), +(210166, 'Valentina', 2012, 'F', 1901), +(210167, 'Aurora', 2012, 'F', 1900), +(210168, 'Stephanie', 2012, 'F', 1880), +(210169, 'Valerie', 2012, 'F', 1862), +(210170, 'Jayla', 2012, 'F', 1838), +(210171, 'Willow', 2012, 'F', 1820), +(210172, 'Hazel', 2012, 'F', 1783), +(210173, 'Daisy', 2012, 'F', 1780), +(210174, 'Melody', 2012, 'F', 1779), +(210175, 'Alana', 2012, 'F', 1777), +(210176, 'Margaret', 2012, 'F', 1772), +(210177, 'Summer', 2012, 'F', 1770), +(210178, 'Melissa', 2012, 'F', 1768), +(210179, 'Kinsley', 2012, 'F', 1749), +(210180, 'Kinley', 2012, 'F', 1746), +(210181, 'Ariel', 2012, 'F', 1728), +(210182, 'Lila', 2012, 'F', 1724), +(210183, 'Giselle', 2012, 'F', 1708), +(210184, 'Ryleigh', 2012, 'F', 1708), +(210185, 'Haley', 2012, 'F', 1706), +(210186, 'Ivy', 2012, 'F', 1692), +(210187, 'Julianna', 2012, 'F', 1689), +(210188, 'Alivia', 2012, 'F', 1686), +(210189, 'Brynn', 2012, 'F', 1655), +(210190, 'Keira', 2012, 'F', 1645), +(210191, 'Kate', 2012, 'F', 1638), +(210192, 'Aniyah', 2012, 'F', 1637), +(210193, 'Daniela', 2012, 'F', 1636), +(210194, 'Angela', 2012, 'F', 1635), +(210195, 'Londyn', 2012, 'F', 1617), +(210196, 'Harmony', 2012, 'F', 1613), +(210197, 'Hayden', 2012, 'F', 1611), +(210198, 'Adalyn', 2012, 'F', 1608), +(210199, 'Megan', 2012, 'F', 1556), +(210200, 'Allie', 2012, 'F', 1545), +(210201, 'Gabriela', 2012, 'F', 1544), +(210202, 'Alayna', 2012, 'F', 1538), +(210203, 'Presley', 2012, 'F', 1534), +(210204, 'Jenna', 2012, 'F', 1519), +(210205, 'Alexandria', 2012, 'F', 1515), +(210206, 'Ashlyn', 2012, 'F', 1509), +(210207, 'Jada', 2012, 'F', 1508), +(210208, 'Adrianna', 2012, 'F', 1501), +(210209, 'Fiona', 2012, 'F', 1501), +(210210, 'Norah', 2012, 'F', 1500), +(210211, 'Emery', 2012, 'F', 1483), +(210212, 'Amaya', 2012, 'F', 1473), +(210213, 'Maci', 2012, 'F', 1469), +(210214, 'Miranda', 2012, 'F', 1469), +(210215, 'Cecilia', 2012, 'F', 1461), +(210216, 'Ximena', 2012, 'F', 1461), +(210217, 'Ana', 2012, 'F', 1451), +(210218, 'Shelby', 2012, 'F', 1444), +(210219, 'Hope', 2012, 'F', 1443), +(210220, 'Katie', 2012, 'F', 1439), +(210221, 'Jordan', 2012, 'F', 1418), +(210222, 'Callie', 2012, 'F', 1415), +(210223, 'Luna', 2012, 'F', 1412), +(210224, 'Eliza', 2012, 'F', 1410), +(210225, 'Leilani', 2012, 'F', 1408), +(210226, 'Mckenna', 2012, 'F', 1397), +(210227, 'Angel', 2012, 'F', 1395), +(210228, 'Genevieve', 2012, 'F', 1387), +(210229, 'Isla', 2012, 'F', 1384), +(210230, 'Makenna', 2012, 'F', 1382), +(210231, 'Lola', 2012, 'F', 1376), +(210232, 'Danielle', 2012, 'F', 1367), +(210233, 'Leila', 2012, 'F', 1362), +(210234, 'Tessa', 2012, 'F', 1357), +(210235, 'Chelsea', 2012, 'F', 1355), +(210236, 'Adelyn', 2012, 'F', 1348), +(210237, 'Adeline', 2012, 'F', 1339), +(210238, 'Camille', 2012, 'F', 1339), +(210239, 'Mikayla', 2012, 'F', 1336), +(210240, 'Esther', 2012, 'F', 1334), +(210241, 'Adalynn', 2012, 'F', 1329), +(210242, 'Sienna', 2012, 'F', 1324), +(210243, 'Jacqueline', 2012, 'F', 1318), +(210244, 'Arabella', 2012, 'F', 1311), +(210245, 'Emerson', 2012, 'F', 1310), +(210246, 'Lucia', 2012, 'F', 1303), +(210247, 'Athena', 2012, 'F', 1301), +(210248, 'Maggie', 2012, 'F', 1301), +(210249, 'Lexi', 2012, 'F', 1296), +(210250, 'Ayla', 2012, 'F', 1287), +(210251, 'Alexia', 2012, 'F', 1283), +(210252, 'Diana', 2012, 'F', 1282), +(210253, 'Josie', 2012, 'F', 1274), +(210254, 'Juliet', 2012, 'F', 1270), +(210255, 'Addyson', 2012, 'F', 1266), +(210256, 'Allyson', 2012, 'F', 1266), +(210257, 'Delaney', 2012, 'F', 1258), +(210258, 'Rose', 2012, 'F', 1243), +(210259, 'Teagan', 2012, 'F', 1243), +(210260, 'Marley', 2012, 'F', 1237), +(210261, 'Amber', 2012, 'F', 1230), +(210262, 'Amanda', 2012, 'F', 1227), +(210263, 'Erin', 2012, 'F', 1226), +(210264, 'Kathryn', 2012, 'F', 1226), +(210265, 'Kayleigh', 2012, 'F', 1223), +(210266, 'Leslie', 2012, 'F', 1218), +(210267, 'Emilia', 2012, 'F', 1211), +(210268, 'Kelsey', 2012, 'F', 1211), +(210269, 'Kenzie', 2012, 'F', 1202), +(210270, 'Alina', 2012, 'F', 1201), +(210271, 'Kaydence', 2012, 'F', 1195), +(210272, 'Alicia', 2012, 'F', 1194), +(210273, 'Sabrina', 2012, 'F', 1186), +(210274, 'Alison', 2012, 'F', 1182), +(210275, 'Paris', 2012, 'F', 1180), +(210276, 'Ashlynn', 2012, 'F', 1174), +(210277, 'Lilliana', 2012, 'F', 1172), +(210278, 'Sierra', 2012, 'F', 1160), +(210279, 'Laura', 2012, 'F', 1138), +(210280, 'Cassidy', 2012, 'F', 1134), +(210281, 'Iris', 2012, 'F', 1131), +(210282, 'Alondra', 2012, 'F', 1125), +(210283, 'Christina', 2012, 'F', 1119), +(210284, 'Kyla', 2012, 'F', 1114), +(210285, 'Carly', 2012, 'F', 1108), +(210286, 'Jillian', 2012, 'F', 1099), +(210287, 'Madilyn', 2012, 'F', 1097), +(210288, 'Evangeline', 2012, 'F', 1092), +(210289, 'Cadence', 2012, 'F', 1091), +(210290, 'Madeleine', 2012, 'F', 1090), +(210291, 'Kyleigh', 2012, 'F', 1088), +(210292, 'Nina', 2012, 'F', 1087), +(210293, 'Nadia', 2012, 'F', 1082), +(210294, 'Raegan', 2012, 'F', 1081), +(210295, 'Lyric', 2012, 'F', 1080), +(210296, 'Giuliana', 2012, 'F', 1071), +(210297, 'Georgia', 2012, 'F', 1065), +(210298, 'Briana', 2012, 'F', 1062), +(210299, 'Elliana', 2012, 'F', 1059), +(210300, 'Phoebe', 2012, 'F', 1059), +(210301, 'Fatima', 2012, 'F', 1057), +(210302, 'Yaretzi', 2012, 'F', 1057), +(210303, 'Haylee', 2012, 'F', 1056), +(210304, 'Charlie', 2012, 'F', 1046), +(210305, 'Selena', 2012, 'F', 1045), +(210306, 'Miriam', 2012, 'F', 1038), +(210307, 'Abby', 2012, 'F', 1036), +(210308, 'Annabella', 2012, 'F', 1035), +(210309, 'Dakota', 2012, 'F', 1034), +(210310, 'Juliette', 2012, 'F', 1032), +(210311, 'Lilah', 2012, 'F', 1031), +(210312, 'Daniella', 2012, 'F', 1027), +(210313, 'Bianca', 2012, 'F', 1026), +(210314, 'Noelle', 2012, 'F', 1025), +(210315, 'Mariana', 2012, 'F', 1023), +(210316, 'Parker', 2012, 'F', 1023), +(210317, 'Veronica', 2012, 'F', 1017), +(210318, 'Gemma', 2012, 'F', 1014), +(210319, 'Cheyenne', 2012, 'F', 1010), +(210320, 'Marissa', 2012, 'F', 999), +(210321, 'Heaven', 2012, 'F', 992), +(210322, 'Vivienne', 2012, 'F', 988), +(210323, 'Brynlee', 2012, 'F', 965), +(210324, 'Joanna', 2012, 'F', 963), +(210325, 'Aubrie', 2012, 'F', 961), +(210326, 'Mallory', 2012, 'F', 958), +(210327, 'Journey', 2012, 'F', 952), +(210328, 'Nyla', 2012, 'F', 952), +(210329, 'Tatum', 2012, 'F', 948), +(210330, 'Cali', 2012, 'F', 944), +(210331, 'Jazmine', 2012, 'F', 942), +(210332, 'Carmen', 2012, 'F', 937), +(210333, 'Gia', 2012, 'F', 937), +(210334, 'Macy', 2012, 'F', 932), +(210335, 'Anastasia', 2012, 'F', 930), +(210336, 'Heidi', 2012, 'F', 930), +(210337, 'Elaina', 2012, 'F', 929), +(210338, 'Ainsley', 2012, 'F', 928), +(210339, 'Baylee', 2012, 'F', 928), +(210340, 'Jane', 2012, 'F', 927), +(210341, 'Miley', 2012, 'F', 927), +(210342, 'Ruth', 2012, 'F', 925), +(210343, 'Raelynn', 2012, 'F', 924), +(210344, 'Alessandra', 2012, 'F', 920), +(210345, 'Adelaide', 2012, 'F', 919), +(210346, 'Kiara', 2012, 'F', 918), +(210347, 'Camryn', 2012, 'F', 915), +(210348, 'Hanna', 2012, 'F', 914), +(210349, 'Finley', 2012, 'F', 911), +(210350, 'Maddison', 2012, 'F', 906), +(210351, 'Lia', 2012, 'F', 904), +(210352, 'Bethany', 2012, 'F', 897), +(210353, 'Malia', 2012, 'F', 897), +(210354, 'Karen', 2012, 'F', 894), +(210355, 'Kelly', 2012, 'F', 891), +(210356, 'Jayda', 2012, 'F', 890), +(210357, 'Jazmin', 2012, 'F', 890), +(210358, 'Esmeralda', 2012, 'F', 882), +(210359, 'Kira', 2012, 'F', 882), +(210360, 'Lena', 2012, 'F', 875), +(210361, 'Kamryn', 2012, 'F', 865), +(210362, 'Eloise', 2012, 'F', 859), +(210363, 'Kamila', 2012, 'F', 859), +(210364, 'Olive', 2012, 'F', 859), +(210365, 'Karina', 2012, 'F', 857), +(210366, 'Kara', 2012, 'F', 856), +(210367, 'Rylie', 2012, 'F', 849), +(210368, 'Elisa', 2012, 'F', 848), +(210369, 'Tiffany', 2012, 'F', 847), +(210370, 'Nayeli', 2012, 'F', 846), +(210371, 'Macie', 2012, 'F', 840), +(210372, 'Skyler', 2012, 'F', 833), +(210373, 'Angelica', 2012, 'F', 830), +(210374, 'Addisyn', 2012, 'F', 829), +(210375, 'Annie', 2012, 'F', 829), +(210376, 'Amiyah', 2012, 'F', 824), +(210377, 'Briella', 2012, 'F', 824), +(210378, 'Caitlyn', 2012, 'F', 824), +(210379, 'Jayden', 2012, 'F', 823), +(210380, 'Elle', 2012, 'F', 822), +(210381, 'Fernanda', 2012, 'F', 822), +(210382, 'Maliyah', 2012, 'F', 822), +(210383, 'Charlee', 2012, 'F', 821), +(210384, 'Julie', 2012, 'F', 816), +(210385, 'Crystal', 2012, 'F', 815), +(210386, 'Imani', 2012, 'F', 806), +(210387, 'Kendra', 2012, 'F', 802), +(210388, 'Talia', 2012, 'F', 802), +(210389, 'Angelique', 2012, 'F', 796), +(210390, 'Jazlyn', 2012, 'F', 791), +(210391, 'Lucille', 2012, 'F', 787), +(210392, 'Emely', 2012, 'F', 785), +(210393, 'Guadalupe', 2012, 'F', 785), +(210394, 'Alejandra', 2012, 'F', 784), +(210395, 'Elsie', 2012, 'F', 784), +(210396, 'Anya', 2012, 'F', 783), +(210397, 'April', 2012, 'F', 781), +(210398, 'Madelynn', 2012, 'F', 777), +(210399, 'Myla', 2012, 'F', 776), +(210400, 'Breanna', 2012, 'F', 774), +(210401, 'Julissa', 2012, 'F', 774), +(210402, 'Scarlet', 2012, 'F', 773), +(210403, 'Helen', 2012, 'F', 772), +(210404, 'Rosalie', 2012, 'F', 770), +(210405, 'Madisyn', 2012, 'F', 767), +(210406, 'Brittany', 2012, 'F', 766), +(210407, 'Brylee', 2012, 'F', 765), +(210408, 'Kyra', 2012, 'F', 765), +(210409, 'Jayleen', 2012, 'F', 762), +(210410, 'Arielle', 2012, 'F', 759), +(210411, 'Karla', 2012, 'F', 759), +(210412, 'Arya', 2012, 'F', 758), +(210413, 'Miracle', 2012, 'F', 758), +(210414, 'Kailey', 2012, 'F', 757), +(210415, 'Sarai', 2012, 'F', 756), +(210416, 'Harley', 2012, 'F', 755), +(210417, 'Kaelyn', 2012, 'F', 752), +(210418, 'Cynthia', 2012, 'F', 747), +(210419, 'Kali', 2012, 'F', 747), +(210420, 'Aleah', 2012, 'F', 745), +(210421, 'Daphne', 2012, 'F', 742), +(210422, 'Cassandra', 2012, 'F', 741), +(210423, 'Marilyn', 2012, 'F', 741), +(210424, 'Caitlin', 2012, 'F', 740), +(210425, 'Holly', 2012, 'F', 739), +(210426, 'Janelle', 2012, 'F', 737), +(210427, 'Katelynn', 2012, 'F', 733), +(210428, 'Kaylie', 2012, 'F', 730), +(210429, 'Itzel', 2012, 'F', 729), +(210430, 'Carolina', 2012, 'F', 722), +(210431, 'Michaela', 2012, 'F', 720), +(210432, 'Monica', 2012, 'F', 720), +(210433, 'Haven', 2012, 'F', 718), +(210434, 'Bristol', 2012, 'F', 716), +(210435, 'June', 2012, 'F', 715), +(210436, 'Janiyah', 2012, 'F', 713), +(210437, 'Rebekah', 2012, 'F', 712), +(210438, 'Serena', 2012, 'F', 712), +(210439, 'Jamie', 2012, 'F', 710), +(210440, 'Camilla', 2012, 'F', 707), +(210441, 'Lana', 2012, 'F', 705), +(210442, 'Tiana', 2012, 'F', 705), +(210443, 'Audrina', 2012, 'F', 704), +(210444, 'Nylah', 2012, 'F', 702), +(210445, 'Dayana', 2012, 'F', 701), +(210446, 'Skye', 2012, 'F', 701), +(210447, 'Savanna', 2012, 'F', 698), +(210448, 'Braelyn', 2012, 'F', 696), +(210449, 'Sasha', 2012, 'F', 694), +(210450, 'Raelyn', 2012, 'F', 693), +(210451, 'Madalyn', 2012, 'F', 691), +(210452, 'Perla', 2012, 'F', 688), +(210453, 'Bridget', 2012, 'F', 683), +(210454, 'Logan', 2012, 'F', 682), +(210455, 'Rowan', 2012, 'F', 682), +(210456, 'Aniya', 2012, 'F', 681), +(210457, 'Mckinley', 2012, 'F', 680), +(210458, 'Averie', 2012, 'F', 678), +(210459, 'Joselyn', 2012, 'F', 678), +(210460, 'Jaylah', 2012, 'F', 677), +(210461, 'Aylin', 2012, 'F', 675), +(210462, 'Hayley', 2012, 'F', 675), +(210463, 'Nia', 2012, 'F', 674), +(210464, 'Lilian', 2012, 'F', 672), +(210465, 'Adelynn', 2012, 'F', 669), +(210466, 'Jaliyah', 2012, 'F', 669), +(210467, 'Kassidy', 2012, 'F', 665), +(210468, 'Kaylin', 2012, 'F', 665), +(210469, 'Kadence', 2012, 'F', 655), +(210470, 'Celeste', 2012, 'F', 653), +(210471, 'Jaelyn', 2012, 'F', 648), +(210472, 'Anaya', 2012, 'F', 645), +(210473, 'Tatiana', 2012, 'F', 645), +(210474, 'Zariah', 2012, 'F', 645), +(210475, 'Lilyana', 2012, 'F', 643), +(210476, 'Jimena', 2012, 'F', 641), +(210477, 'Sloane', 2012, 'F', 640), +(210478, 'Viviana', 2012, 'F', 639), +(210479, 'Catalina', 2012, 'F', 638), +(210480, 'Cataleya', 2012, 'F', 637), +(210481, 'Johanna', 2012, 'F', 637), +(210482, 'Courtney', 2012, 'F', 636), +(210483, 'Melany', 2012, 'F', 633), +(210484, 'Amari', 2012, 'F', 632), +(210485, 'Francesca', 2012, 'F', 632), +(210486, 'Anabelle', 2012, 'F', 631), +(210487, 'Ada', 2012, 'F', 630), +(210488, 'Priscilla', 2012, 'F', 626), +(210489, 'Danna', 2012, 'F', 625), +(210490, 'Alanna', 2012, 'F', 623), +(210491, 'Sage', 2012, 'F', 623), +(210492, 'Kailyn', 2012, 'F', 621), +(210493, 'Angie', 2012, 'F', 620), +(210494, 'Lacey', 2012, 'F', 620), +(210495, 'Joy', 2012, 'F', 618), +(210496, 'Lillie', 2012, 'F', 617), +(210497, 'Caylee', 2012, 'F', 616), +(210498, 'Brinley', 2012, 'F', 613), +(210499, 'Kenley', 2012, 'F', 613), +(210500, 'Vera', 2012, 'F', 613), +(210501, 'Bailee', 2012, 'F', 610), +(210502, 'Amira', 2012, 'F', 609), +(210503, 'Erica', 2012, 'F', 607), +(210504, 'Aspen', 2012, 'F', 603), +(210505, 'Skyla', 2012, 'F', 603), +(210506, 'Aileen', 2012, 'F', 602), +(210507, 'Annalise', 2012, 'F', 601), +(210508, 'Emmalyn', 2012, 'F', 600), +(210509, 'Gracelyn', 2012, 'F', 599), +(210510, 'Danica', 2012, 'F', 597), +(210511, 'Kennedi', 2012, 'F', 597), +(210512, 'Dylan', 2012, 'F', 593), +(210513, 'Kiley', 2012, 'F', 593), +(210514, 'Gwendolyn', 2012, 'F', 590), +(210515, 'Lauryn', 2012, 'F', 589), +(210516, 'Jasmin', 2012, 'F', 588), +(210517, 'Justice', 2012, 'F', 585), +(210518, 'Aleena', 2012, 'F', 583), +(210519, 'Tenley', 2012, 'F', 581), +(210520, 'Annabel', 2012, 'F', 580), +(210521, 'Gloria', 2012, 'F', 580), +(210522, 'Dahlia', 2012, 'F', 579), +(210523, 'Lexie', 2012, 'F', 579), +(210524, 'Hallie', 2012, 'F', 576), +(210525, 'Lindsey', 2012, 'F', 576), +(210526, 'Sylvia', 2012, 'F', 575), +(210527, 'Selah', 2012, 'F', 572), +(210528, 'Annika', 2012, 'F', 571), +(210529, 'Elyse', 2012, 'F', 570), +(210530, 'Lorelei', 2012, 'F', 570), +(210531, 'Maeve', 2012, 'F', 570), +(210532, 'Marlee', 2012, 'F', 570), +(210533, 'Aryanna', 2012, 'F', 569), +(210534, 'Kenya', 2012, 'F', 568), +(210535, 'Adele', 2012, 'F', 564), +(210536, 'Natasha', 2012, 'F', 564), +(210537, 'Kaliyah', 2012, 'F', 561), +(210538, 'Brenda', 2012, 'F', 559), +(210539, 'Erika', 2012, 'F', 556), +(210540, 'Alyson', 2012, 'F', 553), +(210541, 'Braylee', 2012, 'F', 551), +(210542, 'Raven', 2012, 'F', 551), +(210543, 'Ariella', 2012, 'F', 550), +(210544, 'Emilee', 2012, 'F', 550), +(210545, 'Liana', 2012, 'F', 545), +(210546, 'Blakely', 2012, 'F', 544), +(210547, 'Jaycee', 2012, 'F', 541), +(210548, 'Sawyer', 2012, 'F', 541), +(210549, 'Anahi', 2012, 'F', 540), +(210550, 'Elsa', 2012, 'F', 540), +(210551, 'Jaelynn', 2012, 'F', 540), +(210552, 'Zara', 2012, 'F', 536), +(210553, 'Cameron', 2012, 'F', 534), +(210554, 'Farrah', 2012, 'F', 534), +(210555, 'Luciana', 2012, 'F', 531), +(210556, 'Evelynn', 2012, 'F', 530), +(210557, 'Eve', 2012, 'F', 528), +(210558, 'Madilynn', 2012, 'F', 526), +(210559, 'Anne', 2012, 'F', 525), +(210560, 'Helena', 2012, 'F', 525), +(210561, 'Kaia', 2012, 'F', 521), +(210562, 'Estrella', 2012, 'F', 520), +(210563, 'Whitney', 2012, 'F', 520), +(210564, 'Leighton', 2012, 'F', 519), +(210565, 'Nataly', 2012, 'F', 519), +(210566, 'Lainey', 2012, 'F', 516), +(210567, 'Zoie', 2012, 'F', 516), +(210568, 'Amara', 2012, 'F', 514), +(210569, 'Anabella', 2012, 'F', 513), +(210570, 'Malaysia', 2012, 'F', 512), +(210571, 'Marie', 2012, 'F', 512), +(210572, 'Samara', 2012, 'F', 512), +(210573, 'Phoenix', 2012, 'F', 511), +(210574, 'Amani', 2012, 'F', 510), +(210575, 'Dulce', 2012, 'F', 508), +(210576, 'Harlow', 2012, 'F', 507), +(210577, 'Regina', 2012, 'F', 507), +(210578, 'Virginia', 2012, 'F', 507), +(210579, 'Ember', 2012, 'F', 506), +(210580, 'Paola', 2012, 'F', 505), +(210581, 'Aisha', 2012, 'F', 503), +(210582, 'Anika', 2012, 'F', 501), +(210583, 'Jaylee', 2012, 'F', 501), +(210584, 'Ally', 2012, 'F', 497), +(210585, 'Kayden', 2012, 'F', 497), +(210586, 'Alani', 2012, 'F', 496), +(210587, 'Miah', 2012, 'F', 496), +(210588, 'Mikaela', 2012, 'F', 495), +(210589, 'Journee', 2012, 'F', 494), +(210590, 'Yareli', 2012, 'F', 494), +(210591, 'Kiera', 2012, 'F', 493), +(210592, 'Nathalie', 2012, 'F', 493), +(210593, 'Liberty', 2012, 'F', 487), +(210594, 'Jaylynn', 2012, 'F', 485), +(210595, 'Charley', 2012, 'F', 484), +(210596, 'Claudia', 2012, 'F', 484), +(210597, 'Cecelia', 2012, 'F', 483), +(210598, 'Litzy', 2012, 'F', 483), +(210599, 'Aliya', 2012, 'F', 482), +(210600, 'Madyson', 2012, 'F', 479), +(210601, 'Rosemary', 2012, 'F', 478), +(210602, 'Evie', 2012, 'F', 475), +(210603, 'Braelynn', 2012, 'F', 474), +(210604, 'Ciara', 2012, 'F', 471), +(210605, 'Myah', 2012, 'F', 471), +(210606, 'Lizbeth', 2012, 'F', 470), +(210607, 'Shayla', 2012, 'F', 470), +(210608, 'Lea', 2012, 'F', 469), +(210609, 'Jazlynn', 2012, 'F', 468), +(210610, 'Teresa', 2012, 'F', 468), +(210611, 'Giana', 2012, 'F', 467), +(210612, 'Isis', 2012, 'F', 467), +(210613, 'Ryan', 2012, 'F', 467), +(210614, 'Rosa', 2012, 'F', 466), +(210615, 'Gracelynn', 2012, 'F', 464), +(210616, 'Elisabeth', 2012, 'F', 463), +(210617, 'Desiree', 2012, 'F', 462), +(210618, 'Isabela', 2012, 'F', 460), +(210619, 'Abbigail', 2012, 'F', 459), +(210620, 'Nova', 2012, 'F', 459), +(210621, 'Mariam', 2012, 'F', 458), +(210622, 'Arely', 2012, 'F', 457), +(210623, 'Brenna', 2012, 'F', 456), +(210624, 'Emersyn', 2012, 'F', 456), +(210625, 'Kaylynn', 2012, 'F', 455), +(210626, 'Laylah', 2012, 'F', 455), +(210627, 'Raquel', 2012, 'F', 455), +(210628, 'Siena', 2012, 'F', 454), +(210629, 'Amelie', 2012, 'F', 453), +(210630, 'Clarissa', 2012, 'F', 453), +(210631, 'Dana', 2012, 'F', 453), +(210632, 'Laney', 2012, 'F', 453), +(210633, 'Halle', 2012, 'F', 449), +(210634, 'Lilianna', 2012, 'F', 448), +(210635, 'Linda', 2012, 'F', 448), +(210636, 'Lylah', 2012, 'F', 448), +(210637, 'Maleah', 2012, 'F', 448), +(210638, 'Jessie', 2012, 'F', 447), +(210639, 'Madalynn', 2012, 'F', 446), +(210640, 'Shiloh', 2012, 'F', 446), +(210641, 'Sherlyn', 2012, 'F', 445), +(210642, 'Greta', 2012, 'F', 444), +(210643, 'Kenia', 2012, 'F', 442), +(210644, 'Marina', 2012, 'F', 440), +(210645, 'Bria', 2012, 'F', 438), +(210646, 'Amiya', 2012, 'F', 437), +(210647, 'Melina', 2012, 'F', 437), +(210648, 'Mollie', 2012, 'F', 437), +(210649, 'Natalee', 2012, 'F', 437), +(210650, 'Sariah', 2012, 'F', 437), +(210651, 'Nancy', 2012, 'F', 436), +(210652, 'Felicity', 2012, 'F', 435), +(210653, 'Irene', 2012, 'F', 434), +(210654, 'Zuri', 2012, 'F', 434), +(210655, 'Christine', 2012, 'F', 433), +(210656, 'Simone', 2012, 'F', 432), +(210657, 'Matilda', 2012, 'F', 430), +(210658, 'Amya', 2012, 'F', 427), +(210659, 'Kristen', 2012, 'F', 427), +(210660, 'Kathleen', 2012, 'F', 426), +(210661, 'Colette', 2012, 'F', 425), +(210662, 'Paityn', 2012, 'F', 425), +(210663, 'Janessa', 2012, 'F', 424), +(210664, 'Mira', 2012, 'F', 424), +(210665, 'Alayah', 2012, 'F', 423), +(210666, 'Janiya', 2012, 'F', 423), +(210667, 'Kallie', 2012, 'F', 423), +(210668, 'Meredith', 2012, 'F', 423), +(210669, 'Hailee', 2012, 'F', 421), +(210670, 'Aiyana', 2012, 'F', 420), +(210671, 'Noemi', 2012, 'F', 419), +(210672, 'Tori', 2012, 'F', 419), +(210673, 'Aliana', 2012, 'F', 418), +(210674, 'Leia', 2012, 'F', 417), +(210675, 'Alissa', 2012, 'F', 415), +(210676, 'Ivanna', 2012, 'F', 415), +(210677, 'Joslyn', 2012, 'F', 415), +(210678, 'Mariyah', 2012, 'F', 415), +(210679, 'Maryam', 2012, 'F', 415), +(210680, 'Sandra', 2012, 'F', 414), +(210681, 'Danika', 2012, 'F', 412), +(210682, 'Saniyah', 2012, 'F', 412), +(210683, 'Kassandra', 2012, 'F', 411), +(210684, 'Denise', 2012, 'F', 410), +(210685, 'Charleigh', 2012, 'F', 409), +(210686, 'Emelia', 2012, 'F', 409), +(210687, 'Jemma', 2012, 'F', 409), +(210688, 'River', 2012, 'F', 409), +(210689, 'Amina', 2012, 'F', 406), +(210690, 'Jaylene', 2012, 'F', 406), +(210691, 'Kristina', 2012, 'F', 406), +(210692, 'Armani', 2012, 'F', 405), +(210693, 'Chaya', 2012, 'F', 405), +(210694, 'Karlee', 2012, 'F', 405), +(210695, 'Ansley', 2012, 'F', 403), +(210696, 'Beatrice', 2012, 'F', 403), +(210697, 'Blake', 2012, 'F', 402), +(210698, 'Cara', 2012, 'F', 402), +(210699, 'Iliana', 2012, 'F', 402), +(210700, 'Addilyn', 2012, 'F', 401), +(210701, 'Kaitlynn', 2012, 'F', 401), +(210702, 'Lailah', 2012, 'F', 400), +(210703, 'Elaine', 2012, 'F', 399), +(210704, 'Mckayla', 2012, 'F', 399), +(210705, 'Briley', 2012, 'F', 398), +(210706, 'Adelina', 2012, 'F', 397), +(210707, 'Hattie', 2012, 'F', 397), +(210708, 'Mercedes', 2012, 'F', 397), +(210709, 'Lindsay', 2012, 'F', 396), +(210710, 'Lisa', 2012, 'F', 394), +(210711, 'Marisol', 2012, 'F', 394), +(210712, 'Patricia', 2012, 'F', 394), +(210713, 'Bryanna', 2012, 'F', 392), +(210714, 'Taliyah', 2012, 'F', 387), +(210715, 'Adrienne', 2012, 'F', 386), +(210716, 'Willa', 2012, 'F', 386), +(210717, 'Maia', 2012, 'F', 385), +(210718, 'Emmy', 2012, 'F', 384), +(210719, 'Leyla', 2012, 'F', 384), +(210720, 'Paula', 2012, 'F', 384), +(210721, 'Charli', 2012, 'F', 383), +(210722, 'Kourtney', 2012, 'F', 383), +(210723, 'Millie', 2012, 'F', 383), +(210724, 'Paislee', 2012, 'F', 383), +(210725, 'Milan', 2012, 'F', 382), +(210726, 'Martha', 2012, 'F', 381), +(210727, 'Reyna', 2012, 'F', 381), +(210728, 'Ayleen', 2012, 'F', 379), +(210729, 'Clare', 2012, 'F', 379), +(210730, 'Kensley', 2012, 'F', 379), +(210731, 'Elianna', 2012, 'F', 378), +(210732, 'Emilie', 2012, 'F', 378), +(210733, 'Yasmin', 2012, 'F', 378), +(210734, 'Aryana', 2012, 'F', 377), +(210735, 'Adley', 2012, 'F', 376), +(210736, 'Amirah', 2012, 'F', 376), +(210737, 'Karsyn', 2012, 'F', 376), +(210738, 'Lorelai', 2012, 'F', 376), +(210739, 'Celia', 2012, 'F', 375), +(210740, 'Alena', 2012, 'F', 374), +(210741, 'Ellen', 2012, 'F', 374), +(210742, 'Livia', 2012, 'F', 374), +(210743, 'Kailee', 2012, 'F', 373), +(210744, 'Rylan', 2012, 'F', 373), +(210745, 'Kiana', 2012, 'F', 372), +(210746, 'Leanna', 2012, 'F', 372), +(210747, 'Kynlee', 2012, 'F', 371), +(210748, 'Mae', 2012, 'F', 371), +(210749, 'Renata', 2012, 'F', 371), +(210750, 'Galilea', 2012, 'F', 370), +(210751, 'Chanel', 2012, 'F', 369), +(210752, 'Ayanna', 2012, 'F', 368), +(210753, 'Carla', 2012, 'F', 368), +(210754, 'Kimora', 2012, 'F', 368), +(210755, 'Pearl', 2012, 'F', 368), +(210756, 'Cindy', 2012, 'F', 367), +(210757, 'Lesly', 2012, 'F', 367), +(210758, 'Jaylin', 2012, 'F', 366), +(210759, 'Carlee', 2012, 'F', 365), +(210760, 'Angeline', 2012, 'F', 364), +(210761, 'Edith', 2012, 'F', 364), +(210762, 'Frances', 2012, 'F', 364), +(210763, 'Aubri', 2012, 'F', 363), +(210764, 'Alia', 2012, 'F', 361), +(210765, 'Corinne', 2012, 'F', 360), +(210766, 'Jocelynn', 2012, 'F', 359), +(210767, 'Carolyn', 2012, 'F', 358), +(210768, 'Cherish', 2012, 'F', 358), +(210769, 'Wendy', 2012, 'F', 357), +(210770, 'Tabitha', 2012, 'F', 356), +(210771, 'Casey', 2012, 'F', 355), +(210772, 'Winter', 2012, 'F', 355), +(210773, 'Jolie', 2012, 'F', 354), +(210774, 'Lillianna', 2012, 'F', 354), +(210775, 'Lina', 2012, 'F', 354), +(210776, 'Yaritza', 2012, 'F', 354), +(210777, 'Zion', 2012, 'F', 354), +(210778, 'Abril', 2012, 'F', 353), +(210779, 'Bryn', 2012, 'F', 353), +(210780, 'Jordynn', 2012, 'F', 351), +(210781, 'Audriana', 2012, 'F', 350), +(210782, 'Malaya', 2012, 'F', 350), +(210783, 'Zariyah', 2012, 'F', 350), +(210784, 'Jaida', 2012, 'F', 348), +(210785, 'Jayde', 2012, 'F', 348), +(210786, 'Salma', 2012, 'F', 348), +(210787, 'Diamond', 2012, 'F', 345), +(210788, 'Paloma', 2012, 'F', 345), +(210789, 'Kimber', 2012, 'F', 344), +(210790, 'Ryann', 2012, 'F', 344), +(210791, 'Abbie', 2012, 'F', 342), +(210792, 'Destinee', 2012, 'F', 337), +(210793, 'Asia', 2012, 'F', 336), +(210794, 'Kaleigh', 2012, 'F', 336), +(210795, 'Yamileth', 2012, 'F', 336), +(210796, 'Deborah', 2012, 'F', 335), +(210797, 'Demi', 2012, 'F', 335), +(210798, 'Taryn', 2012, 'F', 335), +(210799, 'Elin', 2012, 'F', 334), +(210800, 'Mara', 2012, 'F', 334), +(210801, 'Averi', 2012, 'F', 333), +(210802, 'Emmalee', 2012, 'F', 333), +(210803, 'Kaiya', 2012, 'F', 333), +(210804, 'Nola', 2012, 'F', 333), +(210805, 'Tara', 2012, 'F', 333), +(210806, 'Janae', 2012, 'F', 332), +(210807, 'Aubrianna', 2012, 'F', 331), +(210808, 'Jewel', 2012, 'F', 331), +(210809, 'Chana', 2012, 'F', 330), +(210810, 'Kaya', 2012, 'F', 330), +(210811, 'Kyndall', 2012, 'F', 330), +(210812, 'Zaniyah', 2012, 'F', 330), +(210813, 'Alaya', 2012, 'F', 328), +(210814, 'Samiyah', 2012, 'F', 328), +(210815, 'Sonia', 2012, 'F', 328), +(210816, 'Ariah', 2012, 'F', 327), +(210817, 'Avah', 2012, 'F', 327), +(210818, 'Nathaly', 2012, 'F', 327), +(210819, 'Heather', 2012, 'F', 326), +(210820, 'Lilith', 2012, 'F', 326), +(210821, 'Regan', 2012, 'F', 326), +(210822, 'Shannon', 2012, 'F', 326), +(210823, 'Sharon', 2012, 'F', 326), +(210824, 'Coraline', 2012, 'F', 325), +(210825, 'Giada', 2012, 'F', 325), +(210826, 'Julianne', 2012, 'F', 325), +(210827, 'Krystal', 2012, 'F', 325), +(210828, 'Eileen', 2012, 'F', 324), +(210829, 'Milania', 2012, 'F', 323), +(210830, 'Macey', 2012, 'F', 321), +(210831, 'Sidney', 2012, 'F', 321), +(210832, 'Susan', 2012, 'F', 321), +(210833, 'Rihanna', 2012, 'F', 320), +(210834, 'Hadassah', 2012, 'F', 318), +(210835, 'Mina', 2012, 'F', 318), +(210836, 'Paulina', 2012, 'F', 318), +(210837, 'Rayne', 2012, 'F', 318), +(210838, 'Temperance', 2012, 'F', 318), +(210839, 'Kaitlin', 2012, 'F', 317), +(210840, 'Maritza', 2012, 'F', 316), +(210841, 'Hana', 2012, 'F', 315), +(210842, 'Raina', 2012, 'F', 315), +(210843, 'Aimee', 2012, 'F', 314), +(210844, 'Charlize', 2012, 'F', 314), +(210845, 'Keyla', 2012, 'F', 314), +(210846, 'Dixie', 2012, 'F', 313), +(210847, 'Kendal', 2012, 'F', 313), +(210848, 'Patience', 2012, 'F', 313), +(210849, 'Zaria', 2012, 'F', 313), +(210850, 'Alannah', 2012, 'F', 312), +(210851, 'Alisson', 2012, 'F', 312), +(210852, 'Lara', 2012, 'F', 312), +(210853, 'Roselyn', 2012, 'F', 312), +(210854, 'Aleigha', 2012, 'F', 311), +(210855, 'Alma', 2012, 'F', 311), +(210856, 'Taraji', 2012, 'F', 311), +(210857, 'Elliot', 2012, 'F', 310), +(210858, 'Larissa', 2012, 'F', 310), +(210859, 'Sky', 2012, 'F', 310), +(210860, 'Alyvia', 2012, 'F', 309), +(210861, 'Aviana', 2012, 'F', 308), +(210862, 'Jenny', 2012, 'F', 308), +(210863, 'Bryleigh', 2012, 'F', 307), +(210864, 'Karis', 2012, 'F', 307), +(210865, 'Moriah', 2012, 'F', 307), +(210866, 'Alisha', 2012, 'F', 306), +(210867, 'Luz', 2012, 'F', 306), +(210868, 'Myra', 2012, 'F', 306), +(210869, 'Lilyanna', 2012, 'F', 305), +(210870, 'Micah', 2012, 'F', 305), +(210871, 'Ali', 2012, 'F', 304), +(210872, 'Ayana', 2012, 'F', 304), +(210873, 'Azaria', 2012, 'F', 304), +(210874, 'Blair', 2012, 'F', 304), +(210875, 'Campbell', 2012, 'F', 304), +(210876, 'Giovanna', 2012, 'F', 304); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(210877, 'Juniper', 2012, 'F', 304), +(210878, 'Saniya', 2012, 'F', 304), +(210879, 'Aliza', 2012, 'F', 302), +(210880, 'Emory', 2012, 'F', 302), +(210881, 'Lilia', 2012, 'F', 302), +(210882, 'Karissa', 2012, 'F', 301), +(210883, 'Meghan', 2012, 'F', 301), +(210884, 'Kenna', 2012, 'F', 298), +(210885, 'Abrielle', 2012, 'F', 297), +(210886, 'Elissa', 2012, 'F', 297), +(210887, 'Estella', 2012, 'F', 297), +(210888, 'Emmaline', 2012, 'F', 296), +(210889, 'Jolene', 2012, 'F', 296), +(210890, 'Kairi', 2012, 'F', 296), +(210891, 'Renee', 2012, 'F', 295), +(210892, 'Joyce', 2012, 'F', 294), +(210893, 'Rachael', 2012, 'F', 294), +(210894, 'Haylie', 2012, 'F', 293), +(210895, 'Judith', 2012, 'F', 293), +(210896, 'Britney', 2012, 'F', 292), +(210897, 'Carlie', 2012, 'F', 292), +(210898, 'Barbara', 2012, 'F', 291), +(210899, 'Yesenia', 2012, 'F', 291), +(210900, 'Azalea', 2012, 'F', 290), +(210901, 'Saanvi', 2012, 'F', 290), +(210902, 'Dallas', 2012, 'F', 289), +(210903, 'Karma', 2012, 'F', 289), +(210904, 'America', 2012, 'F', 288), +(210905, 'Everly', 2012, 'F', 288), +(210906, 'Jaqueline', 2012, 'F', 288), +(210907, 'Sariyah', 2012, 'F', 288), +(210908, 'Emmalynn', 2012, 'F', 287), +(210909, 'Leona', 2012, 'F', 287), +(210910, 'Lillyana', 2012, 'F', 287), +(210911, 'Ingrid', 2012, 'F', 286), +(210912, 'Kaelynn', 2012, 'F', 284), +(210913, 'Brisa', 2012, 'F', 283), +(210914, 'Marianna', 2012, 'F', 283), +(210915, 'Libby', 2012, 'F', 282), +(210916, 'Kai', 2012, 'F', 280), +(210917, 'Annalee', 2012, 'F', 279), +(210918, 'Mattie', 2012, 'F', 279), +(210919, 'Deanna', 2012, 'F', 278), +(210920, 'Evalyn', 2012, 'F', 278), +(210921, 'Miya', 2012, 'F', 278), +(210922, 'Nahla', 2012, 'F', 278), +(210923, 'Maliah', 2012, 'F', 277), +(210924, 'Dorothy', 2012, 'F', 276), +(210925, 'Kaylyn', 2012, 'F', 276), +(210926, 'Rayna', 2012, 'F', 276), +(210927, 'Araceli', 2012, 'F', 275), +(210928, 'Cambria', 2012, 'F', 275), +(210929, 'Haleigh', 2012, 'F', 275), +(210930, 'Tamia', 2012, 'F', 275), +(210931, 'Saige', 2012, 'F', 274), +(210932, 'Thalia', 2012, 'F', 274), +(210933, 'Jakayla', 2012, 'F', 273), +(210934, 'Raylee', 2012, 'F', 273), +(210935, 'Avianna', 2012, 'F', 272), +(210936, 'Charity', 2012, 'F', 272), +(210937, 'Kaylen', 2012, 'F', 272), +(210938, 'Belen', 2012, 'F', 271), +(210939, 'Kailynn', 2012, 'F', 271), +(210940, 'Katrina', 2012, 'F', 271), +(210941, 'Aubrielle', 2012, 'F', 270), +(210942, 'Bayleigh', 2012, 'F', 270), +(210943, 'Carley', 2012, 'F', 270), +(210944, 'Natalya', 2012, 'F', 270), +(210945, 'Celine', 2012, 'F', 269), +(210946, 'Karlie', 2012, 'F', 269), +(210947, 'Alaysia', 2012, 'F', 268), +(210948, 'Ann', 2012, 'F', 268), +(210949, 'Meadow', 2012, 'F', 267), +(210950, 'Milana', 2012, 'F', 267), +(210951, 'Monroe', 2012, 'F', 267), +(210952, 'Zahra', 2012, 'F', 267), +(210953, 'Scarlette', 2012, 'F', 266), +(210954, 'Carleigh', 2012, 'F', 265), +(210955, 'Collins', 2012, 'F', 265), +(210956, 'Estelle', 2012, 'F', 265), +(210957, 'Jazzlyn', 2012, 'F', 265), +(210958, 'Tia', 2012, 'F', 265), +(210959, 'Akira', 2012, 'F', 264), +(210960, 'Audrianna', 2012, 'F', 264), +(210961, 'Bree', 2012, 'F', 264), +(210962, 'Carissa', 2012, 'F', 264), +(210963, 'Cristina', 2012, 'F', 264), +(210964, 'Harlee', 2012, 'F', 264), +(210965, 'Kendyl', 2012, 'F', 263), +(210966, 'Anabel', 2012, 'F', 262), +(210967, 'Azariah', 2012, 'F', 262), +(210968, 'Milena', 2012, 'F', 262), +(210969, 'Alisa', 2012, 'F', 261), +(210970, 'Cheyanne', 2012, 'F', 261), +(210971, 'Kora', 2012, 'F', 261), +(210972, 'Kylah', 2012, 'F', 261), +(210973, 'Laurel', 2012, 'F', 261), +(210974, 'Sarahi', 2012, 'F', 261), +(210975, 'Tinley', 2012, 'F', 259), +(210976, 'Esme', 2012, 'F', 258), +(210977, 'Aubriana', 2012, 'F', 257), +(210978, 'Marisa', 2012, 'F', 257), +(210979, 'Sloan', 2012, 'F', 257), +(210980, 'Gisselle', 2012, 'F', 256), +(210981, 'Kasey', 2012, 'F', 256), +(210982, 'Kirsten', 2012, 'F', 256), +(210983, 'Kyndal', 2012, 'F', 256), +(210984, 'Annabell', 2012, 'F', 255), +(210985, 'Cailyn', 2012, 'F', 255), +(210986, 'Izabelle', 2012, 'F', 255), +(210987, 'Makena', 2012, 'F', 255), +(210988, 'Marlene', 2012, 'F', 255), +(210989, 'Riya', 2012, 'F', 255), +(210990, 'Devyn', 2012, 'F', 254), +(210991, 'Geraldine', 2012, 'F', 254), +(210992, 'Jessa', 2012, 'F', 254), +(210993, 'Tess', 2012, 'F', 254), +(210994, 'Analia', 2012, 'F', 253), +(210995, 'Aurelia', 2012, 'F', 253), +(210996, 'Aya', 2012, 'F', 253), +(210997, 'Dalilah', 2012, 'F', 253), +(210998, 'Mercy', 2012, 'F', 253), +(210999, 'Sofie', 2012, 'F', 253), +(211000, 'Abbey', 2012, 'F', 252), +(211001, 'Ashtyn', 2012, 'F', 252), +(211002, 'Dalia', 2012, 'F', 252), +(211003, 'Hayleigh', 2012, 'F', 252), +(211004, 'Katalina', 2012, 'F', 252), +(211005, 'Landry', 2012, 'F', 252), +(211006, 'Stacy', 2012, 'F', 252), +(211007, 'Tegan', 2012, 'F', 252), +(211008, 'Wren', 2012, 'F', 252), +(211009, 'Rivka', 2012, 'F', 251), +(211010, 'Caydence', 2012, 'F', 250), +(211011, 'Jaylyn', 2012, 'F', 250), +(211012, 'Kailani', 2012, 'F', 250), +(211013, 'Astrid', 2012, 'F', 249), +(211014, 'Dania', 2012, 'F', 249), +(211015, 'Ariyah', 2012, 'F', 248), +(211016, 'Diya', 2012, 'F', 248), +(211017, 'Reina', 2012, 'F', 248), +(211018, 'Rory', 2012, 'F', 248), +(211019, 'Aanya', 2012, 'F', 247), +(211020, 'Kinsey', 2012, 'F', 247), +(211021, 'Samiya', 2012, 'F', 247), +(211022, 'Zainab', 2012, 'F', 247), +(211023, 'Abrianna', 2012, 'F', 246), +(211024, 'Alianna', 2012, 'F', 246), +(211025, 'Amalia', 2012, 'F', 246), +(211026, 'Bentley', 2012, 'F', 246), +(211027, 'Jazmyn', 2012, 'F', 246), +(211028, 'Julieta', 2012, 'F', 246), +(211029, 'Lyra', 2012, 'F', 246), +(211030, 'Treasure', 2012, 'F', 246), +(211031, 'Carter', 2012, 'F', 245), +(211032, 'Jacquelyn', 2012, 'F', 245), +(211033, 'Roxanne', 2012, 'F', 245), +(211034, 'Princess', 2012, 'F', 244), +(211035, 'Suri', 2012, 'F', 244), +(211036, 'Ivory', 2012, 'F', 243), +(211037, 'Micaela', 2012, 'F', 243), +(211038, 'Sutton', 2012, 'F', 243), +(211039, 'Yoselin', 2012, 'F', 243), +(211040, 'Neveah', 2012, 'F', 242), +(211041, 'Remi', 2012, 'F', 242), +(211042, 'Selina', 2012, 'F', 242), +(211043, 'Ailyn', 2012, 'F', 241), +(211044, 'Amiah', 2012, 'F', 241), +(211045, 'Ariya', 2012, 'F', 241), +(211046, 'Mabel', 2012, 'F', 241), +(211047, 'Nathalia', 2012, 'F', 241), +(211048, 'Monserrat', 2012, 'F', 240), +(211049, 'Noa', 2012, 'F', 239), +(211050, 'Esperanza', 2012, 'F', 238), +(211051, 'Jacey', 2012, 'F', 238), +(211052, 'Jadyn', 2012, 'F', 238), +(211053, 'Jana', 2012, 'F', 238), +(211054, 'Kaley', 2012, 'F', 238), +(211055, 'Kayleen', 2012, 'F', 238), +(211056, 'Nala', 2012, 'F', 238), +(211057, 'Selene', 2012, 'F', 238), +(211058, 'Liv', 2012, 'F', 237), +(211059, 'Margot', 2012, 'F', 237), +(211060, 'Sanaa', 2012, 'F', 237), +(211061, 'Elliott', 2012, 'F', 236), +(211062, 'Ellison', 2012, 'F', 236), +(211063, 'Jaleah', 2012, 'F', 236), +(211064, 'Kelsie', 2012, 'F', 236), +(211065, 'Belinda', 2012, 'F', 235), +(211066, 'Mylee', 2012, 'F', 235), +(211067, 'Tania', 2012, 'F', 235), +(211068, 'Adyson', 2012, 'F', 234), +(211069, 'Drew', 2012, 'F', 234), +(211070, 'Kamari', 2012, 'F', 233), +(211071, 'Penny', 2012, 'F', 232), +(211072, 'Theresa', 2012, 'F', 232), +(211073, 'Dani', 2012, 'F', 231), +(211074, 'Faye', 2012, 'F', 231), +(211075, 'Violeta', 2012, 'F', 231), +(211076, 'Yazmin', 2012, 'F', 231), +(211077, 'Addie', 2012, 'F', 230), +(211078, 'Maren', 2012, 'F', 230), +(211079, 'Yuliana', 2012, 'F', 230), +(211080, 'Amaris', 2012, 'F', 229), +(211081, 'Emmeline', 2012, 'F', 229), +(211082, 'Laniyah', 2012, 'F', 229), +(211083, 'Leigha', 2012, 'F', 229), +(211084, 'Montserrat', 2012, 'F', 229), +(211085, 'Shaylee', 2012, 'F', 228), +(211086, 'Isabell', 2012, 'F', 227), +(211087, 'Jaylen', 2012, 'F', 227), +(211088, 'Preslee', 2012, 'F', 227), +(211089, 'Ellianna', 2012, 'F', 226), +(211090, 'Honesty', 2012, 'F', 226), +(211091, 'Kamille', 2012, 'F', 226), +(211092, 'Keily', 2012, 'F', 226), +(211093, 'Azul', 2012, 'F', 225), +(211094, 'Jaidyn', 2012, 'F', 225), +(211095, 'Kamilah', 2012, 'F', 225), +(211096, 'Kori', 2012, 'F', 225), +(211097, 'Samira', 2012, 'F', 225), +(211098, 'Bonnie', 2012, 'F', 224), +(211099, 'Carina', 2012, 'F', 224), +(211100, 'Chyna', 2012, 'F', 224), +(211101, 'Elayna', 2012, 'F', 224), +(211102, 'Essence', 2012, 'F', 224), +(211103, 'Milani', 2012, 'F', 224), +(211104, 'Rhea', 2012, 'F', 224), +(211105, 'Shyla', 2012, 'F', 224), +(211106, 'Aiyanna', 2012, 'F', 223), +(211107, 'Arden', 2012, 'F', 223), +(211108, 'Berkley', 2012, 'F', 223), +(211109, 'Emani', 2012, 'F', 223), +(211110, 'Pyper', 2012, 'F', 223), +(211111, 'Rosie', 2012, 'F', 223), +(211112, 'Tianna', 2012, 'F', 223), +(211113, 'Abagail', 2012, 'F', 222), +(211114, 'Antonia', 2012, 'F', 222), +(211115, 'Ashlee', 2012, 'F', 222), +(211116, 'Gwen', 2012, 'F', 222), +(211117, 'Jaiden', 2012, 'F', 222), +(211118, 'Louisa', 2012, 'F', 222), +(211119, 'Nalani', 2012, 'F', 222), +(211120, 'Aliah', 2012, 'F', 221), +(211121, 'Joelle', 2012, 'F', 221), +(211122, 'Magnolia', 2012, 'F', 221), +(211123, 'Saylor', 2012, 'F', 221), +(211124, 'Noor', 2012, 'F', 220), +(211125, 'Christiana', 2012, 'F', 218), +(211126, 'Delia', 2012, 'F', 218), +(211127, 'Evangelina', 2012, 'F', 218), +(211128, 'Karly', 2012, 'F', 218), +(211129, 'Frida', 2012, 'F', 217), +(211130, 'Jenesis', 2012, 'F', 217), +(211131, 'Lianna', 2012, 'F', 217), +(211132, 'Alanah', 2012, 'F', 216), +(211133, 'Annelise', 2012, 'F', 216), +(211134, 'Celina', 2012, 'F', 216), +(211135, 'Ellis', 2012, 'F', 216), +(211136, 'Giavanna', 2012, 'F', 216), +(211137, 'Heidy', 2012, 'F', 216), +(211138, 'Kayley', 2012, 'F', 216), +(211139, 'Kierra', 2012, 'F', 216), +(211140, 'Marleigh', 2012, 'F', 216), +(211141, 'Rebeca', 2012, 'F', 216), +(211142, 'Vienna', 2012, 'F', 216), +(211143, 'Darlene', 2012, 'F', 215), +(211144, 'Kaleah', 2012, 'F', 215), +(211145, 'Magdalena', 2012, 'F', 215), +(211146, 'Maylee', 2012, 'F', 215), +(211147, 'Kiersten', 2012, 'F', 214), +(211148, 'Pamela', 2012, 'F', 214), +(211149, 'Adalee', 2012, 'F', 213), +(211150, 'Amayah', 2012, 'F', 213), +(211151, 'Annette', 2012, 'F', 213), +(211152, 'Lillyanna', 2012, 'F', 213), +(211153, 'Asha', 2012, 'F', 212), +(211154, 'Dominique', 2012, 'F', 212), +(211155, 'Janet', 2012, 'F', 212), +(211156, 'Mariela', 2012, 'F', 212), +(211157, 'Maryjane', 2012, 'F', 212), +(211158, 'Unique', 2012, 'F', 212), +(211159, 'Gracyn', 2012, 'F', 211), +(211160, 'Kalia', 2012, 'F', 211), +(211161, 'Wynter', 2012, 'F', 211), +(211162, 'Adela', 2012, 'F', 210), +(211163, 'Cayla', 2012, 'F', 210), +(211164, 'Kamiyah', 2012, 'F', 210), +(211165, 'Promise', 2012, 'F', 210), +(211166, 'Xiomara', 2012, 'F', 210), +(211167, 'Abbygail', 2012, 'F', 209), +(211168, 'Addilynn', 2012, 'F', 209), +(211169, 'Amia', 2012, 'F', 209), +(211170, 'Anais', 2012, 'F', 209), +(211171, 'Cassie', 2012, 'F', 209), +(211172, 'Elina', 2012, 'F', 209), +(211173, 'Karleigh', 2012, 'F', 209), +(211174, 'Leela', 2012, 'F', 209), +(211175, 'Shania', 2012, 'F', 209), +(211176, 'Stevie', 2012, 'F', 209), +(211177, 'Yaretzy', 2012, 'F', 209), +(211178, 'Cordelia', 2012, 'F', 208), +(211179, 'Itzayana', 2012, 'F', 208), +(211180, 'Miyah', 2012, 'F', 208), +(211181, 'Yara', 2012, 'F', 208), +(211182, 'Clementine', 2012, 'F', 207), +(211183, 'Fallon', 2012, 'F', 207), +(211184, 'Gwyneth', 2012, 'F', 207), +(211185, 'Iyanna', 2012, 'F', 207), +(211186, 'Lizeth', 2012, 'F', 207), +(211187, 'Mayra', 2012, 'F', 207), +(211188, 'Mylah', 2012, 'F', 207), +(211189, 'Tinsley', 2012, 'F', 207), +(211190, 'Valery', 2012, 'F', 207), +(211191, 'Avalyn', 2012, 'F', 206), +(211192, 'Harleigh', 2012, 'F', 206), +(211193, 'Jael', 2012, 'F', 206), +(211194, 'Marin', 2012, 'F', 206), +(211195, 'Sally', 2012, 'F', 206), +(211196, 'Somaya', 2012, 'F', 206), +(211197, 'Hunter', 2012, 'F', 205), +(211198, 'Karmen', 2012, 'F', 205), +(211199, 'Anniston', 2012, 'F', 204), +(211200, 'Ireland', 2012, 'F', 204), +(211201, 'Lilyann', 2012, 'F', 204), +(211202, 'Milagros', 2012, 'F', 204), +(211203, 'Ayva', 2012, 'F', 203), +(211204, 'Tamara', 2012, 'F', 203), +(211205, 'Tanya', 2012, 'F', 203), +(211206, 'Yarely', 2012, 'F', 203), +(211207, 'Ellery', 2012, 'F', 202), +(211208, 'Gretchen', 2012, 'F', 202), +(211209, 'Rubi', 2012, 'F', 202), +(211210, 'Abigale', 2012, 'F', 201), +(211211, 'Emmie', 2012, 'F', 201), +(211212, 'India', 2012, 'F', 201), +(211213, 'Yasmine', 2012, 'F', 201), +(211214, 'Ashanti', 2012, 'F', 200), +(211215, 'Brynley', 2012, 'F', 199), +(211216, 'Hadlee', 2012, 'F', 199), +(211217, 'Jamiyah', 2012, 'F', 199), +(211218, 'Kenzi', 2012, 'F', 199), +(211219, 'Leena', 2012, 'F', 199), +(211220, 'Stephany', 2012, 'F', 199), +(211221, 'Harmoni', 2012, 'F', 198), +(211222, 'Kaila', 2012, 'F', 198), +(211223, 'Karli', 2012, 'F', 198), +(211224, 'Ramona', 2012, 'F', 198), +(211225, 'Soraya', 2012, 'F', 198), +(211226, 'Jaslyn', 2012, 'F', 197), +(211227, 'Reece', 2012, 'F', 197), +(211228, 'Rilynn', 2012, 'F', 197), +(211229, 'Samaya', 2012, 'F', 197), +(211230, 'Shaniya', 2012, 'F', 197), +(211231, 'Taylin', 2012, 'F', 197), +(211232, 'Annaliese', 2012, 'F', 196), +(211233, 'Calista', 2012, 'F', 196), +(211234, 'Emerie', 2012, 'F', 196), +(211235, 'Emme', 2012, 'F', 196), +(211236, 'Kaylah', 2012, 'F', 196), +(211237, 'Remy', 2012, 'F', 196), +(211238, 'Batsheva', 2012, 'F', 195), +(211239, 'Brookelynn', 2012, 'F', 195), +(211240, 'Hadleigh', 2012, 'F', 195), +(211241, 'Kya', 2012, 'F', 195), +(211242, 'Nya', 2012, 'F', 195), +(211243, 'Shyanne', 2012, 'F', 195), +(211244, 'Sonya', 2012, 'F', 195), +(211245, 'Sunny', 2012, 'F', 195), +(211246, 'Kaidence', 2012, 'F', 194), +(211247, 'Sarina', 2012, 'F', 194), +(211248, 'Aubriella', 2012, 'F', 193), +(211249, 'Caelyn', 2012, 'F', 193), +(211250, 'Damaris', 2012, 'F', 193), +(211251, 'Kataleya', 2012, 'F', 193), +(211252, 'Yamilet', 2012, 'F', 193), +(211253, 'Zooey', 2012, 'F', 193), +(211254, 'Alyse', 2012, 'F', 192), +(211255, 'Grecia', 2012, 'F', 192), +(211256, 'Jalynn', 2012, 'F', 192), +(211257, 'Janice', 2012, 'F', 192), +(211258, 'Sydnee', 2012, 'F', 192), +(211259, 'Jamya', 2012, 'F', 191), +(211260, 'Kinlee', 2012, 'F', 191), +(211261, 'Maddie', 2012, 'F', 191), +(211262, 'Bridgette', 2012, 'F', 190), +(211263, 'Nyah', 2012, 'F', 190), +(211264, 'Vivien', 2012, 'F', 190), +(211265, 'Anneliese', 2012, 'F', 189), +(211266, 'Aracely', 2012, 'F', 189), +(211267, 'Dina', 2012, 'F', 189), +(211268, 'Oakley', 2012, 'F', 189), +(211269, 'Chasity', 2012, 'F', 188), +(211270, 'Cristal', 2012, 'F', 188), +(211271, 'Evalynn', 2012, 'F', 188), +(211272, 'Joslynn', 2012, 'F', 188), +(211273, 'Leilah', 2012, 'F', 188), +(211274, 'Maxine', 2012, 'F', 188), +(211275, 'Susanna', 2012, 'F', 188), +(211276, 'Areli', 2012, 'F', 187), +(211277, 'Donna', 2012, 'F', 187), +(211278, 'Maylin', 2012, 'F', 187), +(211279, 'Rylynn', 2012, 'F', 187), +(211280, 'Lorena', 2012, 'F', 186), +(211281, 'Lucinda', 2012, 'F', 186), +(211282, 'Peighton', 2012, 'F', 186), +(211283, 'Thea', 2012, 'F', 186), +(211284, 'Geneva', 2012, 'F', 185), +(211285, 'Maite', 2012, 'F', 185), +(211286, 'Marian', 2012, 'F', 185), +(211287, 'Raya', 2012, 'F', 185), +(211288, 'Zaniya', 2012, 'F', 185), +(211289, 'Kamya', 2012, 'F', 184), +(211290, 'Maribel', 2012, 'F', 184), +(211291, 'Stacey', 2012, 'F', 184), +(211292, 'Audra', 2012, 'F', 183), +(211293, 'Izzabella', 2012, 'F', 183), +(211294, 'Makiyah', 2012, 'F', 183), +(211295, 'Mika', 2012, 'F', 183), +(211296, 'Silvia', 2012, 'F', 183), +(211297, 'Aditi', 2012, 'F', 182), +(211298, 'Carsyn', 2012, 'F', 182), +(211299, 'Ivana', 2012, 'F', 182), +(211300, 'Aleeah', 2012, 'F', 181), +(211301, 'Ananya', 2012, 'F', 181), +(211302, 'Brittney', 2012, 'F', 181), +(211303, 'Freya', 2012, 'F', 181), +(211304, 'Jazelle', 2012, 'F', 181), +(211305, 'Elana', 2012, 'F', 180), +(211306, 'Luisa', 2012, 'F', 180), +(211307, 'Taniyah', 2012, 'F', 180), +(211308, 'Colbie', 2012, 'F', 179), +(211309, 'Henley', 2012, 'F', 179), +(211310, 'Kalani', 2012, 'F', 179), +(211311, 'Priya', 2012, 'F', 179), +(211312, 'Savanah', 2012, 'F', 179), +(211313, 'Soleil', 2012, 'F', 179), +(211314, 'Adilyn', 2012, 'F', 178), +(211315, 'Ariyana', 2012, 'F', 178), +(211316, 'Farah', 2012, 'F', 178), +(211317, 'Kaycee', 2012, 'F', 178), +(211318, 'Robyn', 2012, 'F', 178), +(211319, 'Tina', 2012, 'F', 178), +(211320, 'Aliyana', 2012, 'F', 177), +(211321, 'Anjali', 2012, 'F', 177), +(211322, 'Grayson', 2012, 'F', 177), +(211323, 'Kianna', 2012, 'F', 177), +(211324, 'Krista', 2012, 'F', 177), +(211325, 'Maura', 2012, 'F', 177), +(211326, 'Maycee', 2012, 'F', 177), +(211327, 'Shreya', 2012, 'F', 177), +(211328, 'Toni', 2012, 'F', 177), +(211329, 'Ari', 2012, 'F', 176), +(211330, 'Holland', 2012, 'F', 176), +(211331, 'Shirley', 2012, 'F', 176), +(211332, 'Veda', 2012, 'F', 176), +(211333, 'Addalyn', 2012, 'F', 175), +(211334, 'Alexus', 2012, 'F', 175), +(211335, 'Ashleigh', 2012, 'F', 175), +(211336, 'Elyssa', 2012, 'F', 175), +(211337, 'Kaylani', 2012, 'F', 175), +(211338, 'Lacie', 2012, 'F', 175), +(211339, 'Lela', 2012, 'F', 175), +(211340, 'Robin', 2012, 'F', 175), +(211341, 'Sanai', 2012, 'F', 175), +(211342, 'Tyler', 2012, 'F', 175), +(211343, 'Amora', 2012, 'F', 174), +(211344, 'Avalynn', 2012, 'F', 174), +(211345, 'Della', 2012, 'F', 174), +(211346, 'Kathy', 2012, 'F', 174), +(211347, 'Neriah', 2012, 'F', 174), +(211348, 'Ashton', 2012, 'F', 173), +(211349, 'Darla', 2012, 'F', 173), +(211350, 'Malayah', 2012, 'F', 173), +(211351, 'Naima', 2012, 'F', 173), +(211352, 'Samya', 2012, 'F', 173), +(211353, 'Shaila', 2012, 'F', 173), +(211354, 'Alora', 2012, 'F', 172), +(211355, 'Dayanna', 2012, 'F', 172), +(211356, 'Frankie', 2012, 'F', 172), +(211357, 'Janiah', 2012, 'F', 172), +(211358, 'Melinda', 2012, 'F', 172), +(211359, 'Payten', 2012, 'F', 172), +(211360, 'Poppy', 2012, 'F', 172), +(211361, 'Adilynn', 2012, 'F', 171), +(211362, 'Austyn', 2012, 'F', 171), +(211363, 'Carmella', 2012, 'F', 171), +(211364, 'Channing', 2012, 'F', 171), +(211365, 'Gina', 2012, 'F', 171), +(211366, 'Jaclyn', 2012, 'F', 171), +(211367, 'Keila', 2012, 'F', 171), +(211368, 'Shea', 2012, 'F', 171), +(211369, 'Analise', 2012, 'F', 170), +(211370, 'Antonella', 2012, 'F', 170), +(211371, 'Evelin', 2012, 'F', 170), +(211372, 'Londynn', 2012, 'F', 170), +(211373, 'Nailah', 2012, 'F', 170), +(211374, 'Sylvie', 2012, 'F', 170), +(211375, 'Alessia', 2012, 'F', 169), +(211376, 'Amariah', 2012, 'F', 169), +(211377, 'Kalea', 2012, 'F', 169), +(211378, 'Leticia', 2012, 'F', 169), +(211379, 'Rita', 2012, 'F', 169), +(211380, 'Annaleigh', 2012, 'F', 168), +(211381, 'Carol', 2012, 'F', 168), +(211382, 'Cierra', 2012, 'F', 168), +(211383, 'Elly', 2012, 'F', 168), +(211384, 'Keely', 2012, 'F', 168), +(211385, 'Marcella', 2012, 'F', 168), +(211386, 'Naya', 2012, 'F', 168), +(211387, 'Aida', 2012, 'F', 167), +(211388, 'Alli', 2012, 'F', 167), +(211389, 'Amerie', 2012, 'F', 167), +(211390, 'Carli', 2012, 'F', 166), +(211391, 'Gillian', 2012, 'F', 166), +(211392, 'Lillyan', 2012, 'F', 166), +(211393, 'Lucie', 2012, 'F', 166), +(211394, 'Katy', 2012, 'F', 165), +(211395, 'Kinslee', 2012, 'F', 165), +(211396, 'Lidia', 2012, 'F', 165), +(211397, 'Abigayle', 2012, 'F', 164), +(211398, 'Blythe', 2012, 'F', 164), +(211399, 'Lucero', 2012, 'F', 164), +(211400, 'Aniston', 2012, 'F', 163), +(211401, 'Constance', 2012, 'F', 163), +(211402, 'Coral', 2012, 'F', 163), +(211403, 'Everleigh', 2012, 'F', 163), +(211404, 'Jaden', 2012, 'F', 163), +(211405, 'Janie', 2012, 'F', 163), +(211406, 'Kalli', 2012, 'F', 163), +(211407, 'Rosalyn', 2012, 'F', 163), +(211408, 'Viola', 2012, 'F', 163), +(211409, 'Belle', 2012, 'F', 162), +(211410, 'Jaslene', 2012, 'F', 162), +(211411, 'Jovie', 2012, 'F', 162), +(211412, 'Kloe', 2012, 'F', 162), +(211413, 'Malak', 2012, 'F', 162), +(211414, 'Amyah', 2012, 'F', 161), +(211415, 'Chandler', 2012, 'F', 161), +(211416, 'Chelsey', 2012, 'F', 161), +(211417, 'Jailyn', 2012, 'F', 161), +(211418, 'Nichole', 2012, 'F', 161), +(211419, 'Desirae', 2012, 'F', 160), +(211420, 'Hailie', 2012, 'F', 160), +(211421, 'Izabel', 2012, 'F', 160), +(211422, 'Maiya', 2012, 'F', 160), +(211423, 'Marlie', 2012, 'F', 160), +(211424, 'Remington', 2012, 'F', 160), +(211425, 'Rileigh', 2012, 'F', 160), +(211426, 'Tiara', 2012, 'F', 160), +(211427, 'Yaneli', 2012, 'F', 160), +(211428, 'Ziva', 2012, 'F', 160), +(211429, 'Audree', 2012, 'F', 159), +(211430, 'Avani', 2012, 'F', 159), +(211431, 'Capri', 2012, 'F', 159), +(211432, 'Elora', 2012, 'F', 159), +(211433, 'Jubilee', 2012, 'F', 159), +(211434, 'Karley', 2012, 'F', 159), +(211435, 'Keeley', 2012, 'F', 159), +(211436, 'Nelly', 2012, 'F', 159), +(211437, 'Zahara', 2012, 'F', 159), +(211438, 'Zaylee', 2012, 'F', 159), +(211439, 'Addelyn', 2012, 'F', 158), +(211440, 'Andi', 2012, 'F', 158), +(211441, 'Ariyanna', 2012, 'F', 158), +(211442, 'Brandi', 2012, 'F', 158), +(211443, 'Dariana', 2012, 'F', 158), +(211444, 'Nicolette', 2012, 'F', 158), +(211445, 'Susana', 2012, 'F', 158), +(211446, 'Vada', 2012, 'F', 158), +(211447, 'Aila', 2012, 'F', 157), +(211448, 'Aubry', 2012, 'F', 157), +(211449, 'Graciela', 2012, 'F', 157), +(211450, 'Hillary', 2012, 'F', 157), +(211451, 'Kinleigh', 2012, 'F', 157), +(211452, 'Raylynn', 2012, 'F', 157), +(211453, 'Vivianna', 2012, 'F', 157), +(211454, 'Whitley', 2012, 'F', 157), +(211455, 'Abygail', 2012, 'F', 156), +(211456, 'Adilene', 2012, 'F', 156), +(211457, 'Brynna', 2012, 'F', 156), +(211458, 'Delanie', 2012, 'F', 156), +(211459, 'Fabiola', 2012, 'F', 156), +(211460, 'Arlene', 2012, 'F', 155), +(211461, 'Emi', 2012, 'F', 155), +(211462, 'Katerina', 2012, 'F', 155), +(211463, 'Kristin', 2012, 'F', 155), +(211464, 'Mayte', 2012, 'F', 155), +(211465, 'Mireya', 2012, 'F', 155), +(211466, 'Precious', 2012, 'F', 155), +(211467, 'Carrie', 2012, 'F', 154), +(211468, 'Josslyn', 2012, 'F', 154), +(211469, 'Jurnee', 2012, 'F', 154), +(211470, 'Tayla', 2012, 'F', 154), +(211471, 'Anayah', 2012, 'F', 153), +(211472, 'Caleigh', 2012, 'F', 153), +(211473, 'Chevelle', 2012, 'F', 153), +(211474, 'Jaya', 2012, 'F', 153), +(211475, 'Louise', 2012, 'F', 153), +(211476, 'Rilee', 2012, 'F', 153), +(211477, 'Yadira', 2012, 'F', 153), +(211478, 'Yvette', 2012, 'F', 153), +(211479, 'Carson', 2012, 'F', 152), +(211480, 'Devin', 2012, 'F', 152), +(211481, 'Jamiya', 2012, 'F', 152), +(211482, 'Nyasia', 2012, 'F', 152), +(211483, 'Alyanna', 2012, 'F', 151), +(211484, 'Anita', 2012, 'F', 151), +(211485, 'Denisse', 2012, 'F', 151), +(211486, 'Elodie', 2012, 'F', 151), +(211487, 'Iyana', 2012, 'F', 151), +(211488, 'Makaylah', 2012, 'F', 151), +(211489, 'Xochitl', 2012, 'F', 151), +(211490, 'Annamarie', 2012, 'F', 150), +(211491, 'Blanca', 2012, 'F', 150), +(211492, 'Felicia', 2012, 'F', 150), +(211493, 'Journi', 2012, 'F', 150), +(211494, 'Kamora', 2012, 'F', 150), +(211495, 'Kensington', 2012, 'F', 150), +(211496, 'Laniya', 2012, 'F', 150), +(211497, 'Seraphina', 2012, 'F', 150), +(211498, 'Ila', 2012, 'F', 149), +(211499, 'Maisie', 2012, 'F', 149), +(211500, 'Rocio', 2012, 'F', 149), +(211501, 'Arlette', 2012, 'F', 148), +(211502, 'Isadora', 2012, 'F', 148), +(211503, 'Josselyn', 2012, 'F', 148), +(211504, 'Keilani', 2012, 'F', 148), +(211505, 'Kelis', 2012, 'F', 148), +(211506, 'Mariella', 2012, 'F', 148), +(211507, 'Arianny', 2012, 'F', 147), +(211508, 'Colleen', 2012, 'F', 147), +(211509, 'Kayli', 2012, 'F', 147), +(211510, 'Laci', 2012, 'F', 147), +(211511, 'Lilyan', 2012, 'F', 147), +(211512, 'Linnea', 2012, 'F', 147), +(211513, 'Mackenna', 2012, 'F', 147), +(211514, 'Taytum', 2012, 'F', 147), +(211515, 'Zoya', 2012, 'F', 147), +(211516, 'Adelle', 2012, 'F', 146), +(211517, 'Kenleigh', 2012, 'F', 146), +(211518, 'Khaleesi', 2012, 'F', 146), +(211519, 'Malina', 2012, 'F', 146), +(211520, 'Beatrix', 2012, 'F', 145), +(211521, 'Blessing', 2012, 'F', 145), +(211522, 'Brea', 2012, 'F', 145), +(211523, 'Brynleigh', 2012, 'F', 145), +(211524, 'Calliope', 2012, 'F', 145), +(211525, 'Emerald', 2012, 'F', 145), +(211526, 'Noel', 2012, 'F', 145), +(211527, 'Sheila', 2012, 'F', 145), +(211528, 'Spencer', 2012, 'F', 145), +(211529, 'Ashly', 2012, 'F', 144), +(211530, 'Estefany', 2012, 'F', 144), +(211531, 'Kynleigh', 2012, 'F', 144), +(211532, 'Anaiah', 2012, 'F', 143), +(211533, 'Angely', 2012, 'F', 143), +(211534, 'Haddie', 2012, 'F', 143), +(211535, 'Kyrie', 2012, 'F', 143), +(211536, 'Lacy', 2012, 'F', 143), +(211537, 'Margarita', 2012, 'F', 143), +(211538, 'Skylah', 2012, 'F', 143), +(211539, 'Skylee', 2012, 'F', 143), +(211540, 'Anisa', 2012, 'F', 142), +(211541, 'Clover', 2012, 'F', 142), +(211542, 'Estefania', 2012, 'F', 142), +(211543, 'Kinzley', 2012, 'F', 142), +(211544, 'Lillyann', 2012, 'F', 142), +(211545, 'Makinley', 2012, 'F', 142), +(211546, 'Miabella', 2012, 'F', 142), +(211547, 'Persephone', 2012, 'F', 142), +(211548, 'Sahara', 2012, 'F', 142), +(211549, 'Zayla', 2012, 'F', 142), +(211550, 'Aven', 2012, 'F', 141), +(211551, 'Katia', 2012, 'F', 141), +(211552, 'Roslyn', 2012, 'F', 141), +(211553, 'Scout', 2012, 'F', 141), +(211554, 'Abriella', 2012, 'F', 140), +(211555, 'Christian', 2012, 'F', 140), +(211556, 'Dalila', 2012, 'F', 140), +(211557, 'Jordin', 2012, 'F', 140), +(211558, 'Melani', 2012, 'F', 140), +(211559, 'Roxana', 2012, 'F', 140), +(211560, 'Samaria', 2012, 'F', 140), +(211561, 'Camdyn', 2012, 'F', 139), +(211562, 'Darcy', 2012, 'F', 139), +(211563, 'Eisley', 2012, 'F', 139), +(211564, 'Zelda', 2012, 'F', 139), +(211565, 'Adaline', 2012, 'F', 138), +(211566, 'Betsy', 2012, 'F', 138), +(211567, 'Betty', 2012, 'F', 138), +(211568, 'Brayleigh', 2012, 'F', 138), +(211569, 'Elia', 2012, 'F', 138), +(211570, 'Elisha', 2012, 'F', 138), +(211571, 'Leanne', 2012, 'F', 138), +(211572, 'Nadine', 2012, 'F', 138), +(211573, 'Nariah', 2012, 'F', 138), +(211574, 'Nellie', 2012, 'F', 138), +(211575, 'Ophelia', 2012, 'F', 138), +(211576, 'Palmer', 2012, 'F', 138), +(211577, 'Sandy', 2012, 'F', 138), +(211578, 'Baylie', 2012, 'F', 137), +(211579, 'Harmonie', 2012, 'F', 137), +(211580, 'Isha', 2012, 'F', 137), +(211581, 'Katarina', 2012, 'F', 137), +(211582, 'Kennadi', 2012, 'F', 137), +(211583, 'Makenzi', 2012, 'F', 137), +(211584, 'Melia', 2012, 'F', 137), +(211585, 'Shaniyah', 2012, 'F', 137), +(211586, 'Vida', 2012, 'F', 137), +(211587, 'Avril', 2012, 'F', 136), +(211588, 'Deja', 2012, 'F', 136), +(211589, 'Ema', 2012, 'F', 136), +(211590, 'Harlie', 2012, 'F', 136), +(211591, 'Heavenly', 2012, 'F', 136), +(211592, 'Justine', 2012, 'F', 136), +(211593, 'Kacey', 2012, 'F', 136), +(211594, 'Rosalee', 2012, 'F', 136), +(211595, 'Amarie', 2012, 'F', 135), +(211596, 'Emmerson', 2012, 'F', 135), +(211597, 'Eunice', 2012, 'F', 135), +(211598, 'Gwenyth', 2012, 'F', 135), +(211599, 'Halo', 2012, 'F', 135), +(211600, 'Hollie', 2012, 'F', 135), +(211601, 'Kacie', 2012, 'F', 135), +(211602, 'Milah', 2012, 'F', 135), +(211603, 'Milla', 2012, 'F', 135), +(211604, 'Myka', 2012, 'F', 135), +(211605, 'Noelia', 2012, 'F', 135), +(211606, 'Adamaris', 2012, 'F', 134), +(211607, 'Aleyah', 2012, 'F', 134), +(211608, 'Brookelyn', 2012, 'F', 134), +(211609, 'Elinor', 2012, 'F', 134), +(211610, 'Honor', 2012, 'F', 134), +(211611, 'Keziah', 2012, 'F', 134), +(211612, 'Khadija', 2012, 'F', 134), +(211613, 'Khloee', 2012, 'F', 134), +(211614, 'Natali', 2012, 'F', 134), +(211615, 'Pepper', 2012, 'F', 134), +(211616, 'Sahana', 2012, 'F', 134), +(211617, 'Star', 2012, 'F', 134), +(211618, 'Taelyn', 2012, 'F', 134), +(211619, 'Taya', 2012, 'F', 134), +(211620, 'Yolanda', 2012, 'F', 134), +(211621, 'Alba', 2012, 'F', 133), +(211622, 'Charlene', 2012, 'F', 133), +(211623, 'Jersey', 2012, 'F', 133), +(211624, 'Kamdyn', 2012, 'F', 133), +(211625, 'Lennon', 2012, 'F', 133), +(211626, 'Aminah', 2012, 'F', 132), +(211627, 'Karter', 2012, 'F', 132), +(211628, 'Vanesa', 2012, 'F', 132), +(211629, 'Yvonne', 2012, 'F', 132), +(211630, 'Adrian', 2012, 'F', 131), +(211631, 'Amberly', 2012, 'F', 131), +(211632, 'August', 2012, 'F', 131), +(211633, 'Brandy', 2012, 'F', 131), +(211634, 'Carys', 2012, 'F', 131), +(211635, 'Etta', 2012, 'F', 131), +(211636, 'Karol', 2012, 'F', 131), +(211637, 'Lesley', 2012, 'F', 131), +(211638, 'Maliya', 2012, 'F', 131), +(211639, 'Aniah', 2012, 'F', 130), +(211640, 'Destini', 2012, 'F', 130), +(211641, 'Jazmyne', 2012, 'F', 130), +(211642, 'Jianna', 2012, 'F', 130), +(211643, 'Makaila', 2012, 'F', 130), +(211644, 'Malka', 2012, 'F', 130), +(211645, 'Marjorie', 2012, 'F', 130), +(211646, 'Prisha', 2012, 'F', 130), +(211647, 'Rhylee', 2012, 'F', 130), +(211648, 'Saphira', 2012, 'F', 130), +(211649, 'Alex', 2012, 'F', 129), +(211650, 'Andie', 2012, 'F', 129), +(211651, 'Ayah', 2012, 'F', 129), +(211652, 'Berenice', 2012, 'F', 129), +(211653, 'Jayna', 2012, 'F', 129), +(211654, 'Leilany', 2012, 'F', 129), +(211655, 'Zia', 2012, 'F', 129), +(211656, 'Audrie', 2012, 'F', 128), +(211657, 'Flora', 2012, 'F', 128), +(211658, 'Jaslynn', 2012, 'F', 128), +(211659, 'Kirra', 2012, 'F', 128), +(211660, 'Magaly', 2012, 'F', 128), +(211661, 'Quincy', 2012, 'F', 128), +(211662, 'Rayleigh', 2012, 'F', 128), +(211663, 'Skylynn', 2012, 'F', 128), +(211664, 'Tallulah', 2012, 'F', 128), +(211665, 'Citlali', 2012, 'F', 127), +(211666, 'Gentry', 2012, 'F', 127), +(211667, 'Gisele', 2012, 'F', 127), +(211668, 'Kaci', 2012, 'F', 127), +(211669, 'Kamiya', 2012, 'F', 127), +(211670, 'Kenlee', 2012, 'F', 127), +(211671, 'Nikki', 2012, 'F', 127), +(211672, 'Rhiannon', 2012, 'F', 127), +(211673, 'Shyann', 2012, 'F', 127), +(211674, 'Adison', 2012, 'F', 126), +(211675, 'Claira', 2012, 'F', 126), +(211676, 'Dior', 2012, 'F', 126), +(211677, 'Kyah', 2012, 'F', 126), +(211678, 'Layna', 2012, 'F', 126), +(211679, 'Lilli', 2012, 'F', 126), +(211680, 'Mayah', 2012, 'F', 126), +(211681, 'Nyomi', 2012, 'F', 126), +(211682, 'Romina', 2012, 'F', 126), +(211683, 'Sapphire', 2012, 'F', 126), +(211684, 'Jolee', 2012, 'F', 125), +(211685, 'Kahlan', 2012, 'F', 125), +(211686, 'Melisa', 2012, 'F', 125), +(211687, 'Beverly', 2012, 'F', 124), +(211688, 'Calleigh', 2012, 'F', 124), +(211689, 'Eleni', 2012, 'F', 124), +(211690, 'Evan', 2012, 'F', 124), +(211691, 'Raniyah', 2012, 'F', 124), +(211692, 'Shayna', 2012, 'F', 124), +(211693, 'Aarna', 2012, 'F', 123), +(211694, 'Aarya', 2012, 'F', 123), +(211695, 'Cleo', 2012, 'F', 123), +(211696, 'Gizelle', 2012, 'F', 123), +(211697, 'Jazzlynn', 2012, 'F', 123), +(211698, 'Adamari', 2012, 'F', 122), +(211699, 'Agnes', 2012, 'F', 122), +(211700, 'Analeigh', 2012, 'F', 122), +(211701, 'Araya', 2012, 'F', 122), +(211702, 'Cattleya', 2012, 'F', 122), +(211703, 'Dasha', 2012, 'F', 122), +(211704, 'Dayanara', 2012, 'F', 122), +(211705, 'Kiya', 2012, 'F', 122), +(211706, 'Loretta', 2012, 'F', 122), +(211707, 'Taleah', 2012, 'F', 122), +(211708, 'Blaire', 2012, 'F', 121), +(211709, 'Deasia', 2012, 'F', 121), +(211710, 'Diane', 2012, 'F', 121), +(211711, 'Ezra', 2012, 'F', 121), +(211712, 'Joselin', 2012, 'F', 121), +(211713, 'Keren', 2012, 'F', 121), +(211714, 'Mari', 2012, 'F', 121), +(211715, 'Niya', 2012, 'F', 121), +(211716, 'Petra', 2012, 'F', 121), +(211717, 'Allyssa', 2012, 'F', 120), +(211718, 'Calla', 2012, 'F', 120), +(211719, 'Judy', 2012, 'F', 120), +(211720, 'Lanie', 2012, 'F', 120), +(211721, 'Leann', 2012, 'F', 120), +(211722, 'Rain', 2012, 'F', 120), +(211723, 'Roxy', 2012, 'F', 120), +(211724, 'Vianney', 2012, 'F', 120), +(211725, 'Adalie', 2012, 'F', 119), +(211726, 'Beatriz', 2012, 'F', 119), +(211727, 'Bryana', 2012, 'F', 119), +(211728, 'Caitlynn', 2012, 'F', 119), +(211729, 'Jaycie', 2012, 'F', 119), +(211730, 'Marcela', 2012, 'F', 119), +(211731, 'Mariajose', 2012, 'F', 119), +(211732, 'Meagan', 2012, 'F', 119), +(211733, 'Tatianna', 2012, 'F', 119), +(211734, 'Aspyn', 2012, 'F', 118), +(211735, 'Brinlee', 2012, 'F', 118), +(211736, 'Brook', 2012, 'F', 118), +(211737, 'Cailey', 2012, 'F', 118), +(211738, 'Candice', 2012, 'F', 118), +(211739, 'Darby', 2012, 'F', 118), +(211740, 'Destiney', 2012, 'F', 118), +(211741, 'Irie', 2012, 'F', 118), +(211742, 'Jackeline', 2012, 'F', 118), +(211743, 'Johana', 2012, 'F', 118), +(211744, 'Karolina', 2012, 'F', 118), +(211745, 'Kerrigan', 2012, 'F', 118), +(211746, 'Lexy', 2012, 'F', 118), +(211747, 'Lluvia', 2012, 'F', 118), +(211748, 'Nayla', 2012, 'F', 118), +(211749, 'Roxanna', 2012, 'F', 118), +(211750, 'Tracy', 2012, 'F', 118), +(211751, 'Zendaya', 2012, 'F', 118), +(211752, 'Alliyah', 2012, 'F', 117), +(211753, 'Annmarie', 2012, 'F', 117), +(211754, 'Anyla', 2012, 'F', 117), +(211755, 'Dasia', 2012, 'F', 117), +(211756, 'Ela', 2012, 'F', 117), +(211757, 'Emalyn', 2012, 'F', 117), +(211758, 'Giulia', 2012, 'F', 117), +(211759, 'Janyla', 2012, 'F', 117), +(211760, 'Kaniyah', 2012, 'F', 117), +(211761, 'Karmyn', 2012, 'F', 117), +(211762, 'Ryley', 2012, 'F', 117), +(211763, 'Symphony', 2012, 'F', 117), +(211764, 'Yahaira', 2012, 'F', 117), +(211765, 'Aaralyn', 2012, 'F', 116), +(211766, 'Ariadne', 2012, 'F', 116), +(211767, 'Italia', 2012, 'F', 116), +(211768, 'Loren', 2012, 'F', 116), +(211769, 'Lupita', 2012, 'F', 116), +(211770, 'Maryann', 2012, 'F', 116), +(211771, 'Monique', 2012, 'F', 116), +(211772, 'Niyah', 2012, 'F', 116), +(211773, 'Noelani', 2012, 'F', 116), +(211774, 'Tayler', 2012, 'F', 116), +(211775, 'Zaira', 2012, 'F', 116), +(211776, 'Zaya', 2012, 'F', 116), +(211777, 'Ayden', 2012, 'F', 115), +(211778, 'Emmaleigh', 2012, 'F', 115), +(211779, 'Ester', 2012, 'F', 115), +(211780, 'Evelina', 2012, 'F', 115), +(211781, 'Haidyn', 2012, 'F', 115), +(211782, 'Jacklyn', 2012, 'F', 115), +(211783, 'Kalina', 2012, 'F', 115), +(211784, 'Malani', 2012, 'F', 115), +(211785, 'Moira', 2012, 'F', 115), +(211786, 'Sheyla', 2012, 'F', 115), +(211787, 'Zoee', 2012, 'F', 115), +(211788, 'Avarie', 2012, 'F', 114), +(211789, 'Brystol', 2012, 'F', 114), +(211790, 'Camden', 2012, 'F', 114), +(211791, 'Cecily', 2012, 'F', 114), +(211792, 'Jaci', 2012, 'F', 114), +(211793, 'Jahzara', 2012, 'F', 114), +(211794, 'Sanvi', 2012, 'F', 114), +(211795, 'Sonja', 2012, 'F', 114), +(211796, 'Tanvi', 2012, 'F', 114), +(211797, 'Adalia', 2012, 'F', 113), +(211798, 'Aislinn', 2012, 'F', 113), +(211799, 'Cayleigh', 2012, 'F', 113), +(211800, 'Georgina', 2012, 'F', 113), +(211801, 'Imogen', 2012, 'F', 113), +(211802, 'Jalayah', 2012, 'F', 113), +(211803, 'Kamilla', 2012, 'F', 113), +(211804, 'Keegan', 2012, 'F', 113), +(211805, 'Liyah', 2012, 'F', 113), +(211806, 'Taniya', 2012, 'F', 113), +(211807, 'Adleigh', 2012, 'F', 112), +(211808, 'Ariela', 2012, 'F', 112), +(211809, 'Braylin', 2012, 'F', 112), +(211810, 'Brylie', 2012, 'F', 112), +(211811, 'Chanelle', 2012, 'F', 112), +(211812, 'Ginger', 2012, 'F', 112), +(211813, 'Jasmyn', 2012, 'F', 112), +(211814, 'Jennah', 2012, 'F', 112), +(211815, 'Nariyah', 2012, 'F', 112), +(211816, 'Nikita', 2012, 'F', 112), +(211817, 'Aleeyah', 2012, 'F', 111), +(211818, 'Anylah', 2012, 'F', 111), +(211819, 'Chiara', 2012, 'F', 111), +(211820, 'Kari', 2012, 'F', 111), +(211821, 'Laken', 2012, 'F', 111), +(211822, 'Love', 2012, 'F', 111), +(211823, 'Payson', 2012, 'F', 111), +(211824, 'Rhyan', 2012, 'F', 111), +(211825, 'Ria', 2012, 'F', 111), +(211826, 'Stormy', 2012, 'F', 111), +(211827, 'Aadhya', 2012, 'F', 110), +(211828, 'Adina', 2012, 'F', 110), +(211829, 'Anissa', 2012, 'F', 110), +(211830, 'Brissa', 2012, 'F', 110), +(211831, 'Cambrie', 2012, 'F', 110), +(211832, 'Cianna', 2012, 'F', 110), +(211833, 'Cielo', 2012, 'F', 110), +(211834, 'Dianna', 2012, 'F', 110), +(211835, 'Elli', 2012, 'F', 110), +(211836, 'Jacelyn', 2012, 'F', 110), +(211837, 'Jiya', 2012, 'F', 110), +(211838, 'Makiya', 2012, 'F', 110), +(211839, 'Ryder', 2012, 'F', 110), +(211840, 'Skyy', 2012, 'F', 110), +(211841, 'Aislynn', 2012, 'F', 109), +(211842, 'Annabeth', 2012, 'F', 109), +(211843, 'Emelyn', 2012, 'F', 109), +(211844, 'Ericka', 2012, 'F', 109), +(211845, 'Evolet', 2012, 'F', 109), +(211846, 'Juana', 2012, 'F', 109), +(211847, 'Katharine', 2012, 'F', 109), +(211848, 'Marion', 2012, 'F', 109), +(211849, 'Naomy', 2012, 'F', 109), +(211850, 'Saoirse', 2012, 'F', 109), +(211851, 'Yasmeen', 2012, 'F', 109), +(211852, 'Zora', 2012, 'F', 109), +(211853, 'Akshara', 2012, 'F', 108), +(211854, 'Devorah', 2012, 'F', 108), +(211855, 'Emalee', 2012, 'F', 108), +(211856, 'Flor', 2012, 'F', 108), +(211857, 'Hafsa', 2012, 'F', 108), +(211858, 'Jaela', 2012, 'F', 108), +(211859, 'Jalaya', 2012, 'F', 108), +(211860, 'Kaily', 2012, 'F', 108), +(211861, 'Kynslee', 2012, 'F', 108), +(211862, 'Liza', 2012, 'F', 108), +(211863, 'Luella', 2012, 'F', 108), +(211864, 'Paizley', 2012, 'F', 108), +(211865, 'Raleigh', 2012, 'F', 108), +(211866, 'Reilly', 2012, 'F', 108), +(211867, 'Siri', 2012, 'F', 108), +(211868, 'Tahlia', 2012, 'F', 108), +(211869, 'Aleksandra', 2012, 'F', 107), +(211870, 'Briar', 2012, 'F', 107), +(211871, 'Brilee', 2012, 'F', 107), +(211872, 'Calli', 2012, 'F', 107), +(211873, 'Davina', 2012, 'F', 107), +(211874, 'Gitty', 2012, 'F', 107), +(211875, 'Giulianna', 2012, 'F', 107), +(211876, 'Pippa', 2012, 'F', 107), +(211877, 'Tala', 2012, 'F', 107), +(211878, 'Tatyana', 2012, 'F', 107), +(211879, 'Vianey', 2012, 'F', 107), +(211880, 'Viktoria', 2012, 'F', 107), +(211881, 'Zariya', 2012, 'F', 107), +(211882, 'Angelie', 2012, 'F', 106), +(211883, 'Ayesha', 2012, 'F', 106), +(211884, 'Brianne', 2012, 'F', 106), +(211885, 'Brooklynne', 2012, 'F', 106), +(211886, 'Cayden', 2012, 'F', 106), +(211887, 'Egypt', 2012, 'F', 106), +(211888, 'Inaya', 2012, 'F', 106), +(211889, 'Jailynn', 2012, 'F', 106), +(211890, 'Jeanette', 2012, 'F', 106), +(211891, 'Joana', 2012, 'F', 106), +(211892, 'Josey', 2012, 'F', 106), +(211893, 'Kaiden', 2012, 'F', 106), +(211894, 'Kavya', 2012, 'F', 106), +(211895, 'Layan', 2012, 'F', 106), +(211896, 'Marielle', 2012, 'F', 106), +(211897, 'May', 2012, 'F', 106), +(211898, 'Priscila', 2012, 'F', 106), +(211899, 'Rosemarie', 2012, 'F', 106), +(211900, 'Susannah', 2012, 'F', 106), +(211901, 'Ameerah', 2012, 'F', 105), +(211902, 'Cienna', 2012, 'F', 105), +(211903, 'Jenelle', 2012, 'F', 105), +(211904, 'Kloey', 2012, 'F', 105), +(211905, 'Lakyn', 2012, 'F', 105), +(211906, 'Opal', 2012, 'F', 105), +(211907, 'Taylee', 2012, 'F', 105), +(211908, 'Yael', 2012, 'F', 105), +(211909, 'Avalon', 2012, 'F', 104), +(211910, 'Kaliah', 2012, 'F', 104), +(211911, 'Khalia', 2012, 'F', 104), +(211912, 'Kiyah', 2012, 'F', 104), +(211913, 'Lizette', 2012, 'F', 104), +(211914, 'Raeleigh', 2012, 'F', 104), +(211915, 'Violette', 2012, 'F', 104), +(211916, 'Arleth', 2012, 'F', 103), +(211917, 'Christy', 2012, 'F', 103), +(211918, 'Cooper', 2012, 'F', 103), +(211919, 'Iyla', 2012, 'F', 103), +(211920, 'Jiselle', 2012, 'F', 103), +(211921, 'Klaire', 2012, 'F', 103), +(211922, 'Marlo', 2012, 'F', 103), +(211923, 'Randi', 2012, 'F', 103), +(211924, 'Sailor', 2012, 'F', 103), +(211925, 'Yulissa', 2012, 'F', 103), +(211926, 'Adlee', 2012, 'F', 102), +(211927, 'Baila', 2012, 'F', 102), +(211928, 'Doris', 2012, 'F', 102), +(211929, 'Joanne', 2012, 'F', 102), +(211930, 'Kristine', 2012, 'F', 102), +(211931, 'Marlowe', 2012, 'F', 102), +(211932, 'Mindy', 2012, 'F', 102), +(211933, 'Rosalinda', 2012, 'F', 102), +(211934, 'Serafina', 2012, 'F', 102), +(211935, 'Story', 2012, 'F', 102), +(211936, 'Terra', 2012, 'F', 102), +(211937, 'Adaleigh', 2012, 'F', 101), +(211938, 'Annalisa', 2012, 'F', 101), +(211939, 'Emeri', 2012, 'F', 101), +(211940, 'Guinevere', 2012, 'F', 101), +(211941, 'Hartley', 2012, 'F', 101), +(211942, 'Janelly', 2012, 'F', 101), +(211943, 'Lynette', 2012, 'F', 101), +(211944, 'Mandy', 2012, 'F', 101), +(211945, 'Mylie', 2012, 'F', 101), +(211946, 'Sabine', 2012, 'F', 101), +(211947, 'Sahasra', 2012, 'F', 101), +(211948, 'Aja', 2012, 'F', 100), +(211949, 'Aubreigh', 2012, 'F', 100), +(211950, 'Caliyah', 2012, 'F', 100), +(211951, 'Candace', 2012, 'F', 100), +(211952, 'Debora', 2012, 'F', 100), +(211953, 'Eryn', 2012, 'F', 100), +(211954, 'Finnley', 2012, 'F', 100), +(211955, 'Jessalyn', 2012, 'F', 100), +(211956, 'Kalyn', 2012, 'F', 100), +(211957, 'Kayle', 2012, 'F', 100), +(211958, 'Leyna', 2012, 'F', 100), +(211959, 'Lourdes', 2012, 'F', 100), +(211960, 'Makyla', 2012, 'F', 100), +(211961, 'Melania', 2012, 'F', 100), +(211962, 'Rilyn', 2012, 'F', 100), +(211963, 'Starr', 2012, 'F', 100), +(211964, 'Taliah', 2012, 'F', 100), +(211965, 'Tesla', 2012, 'F', 100), +(211966, 'Veronika', 2012, 'F', 100), +(211967, 'Jacob', 2012, 'M', 19030), +(211968, 'Mason', 2012, 'M', 18943), +(211969, 'Ethan', 2012, 'M', 17635), +(211970, 'Noah', 2012, 'M', 17302), +(211971, 'William', 2012, 'M', 16844), +(211972, 'Liam', 2012, 'M', 16775), +(211973, 'Michael', 2012, 'M', 16106), +(211974, 'Jayden', 2012, 'M', 16084), +(211975, 'Alexander', 2012, 'M', 15209), +(211976, 'Aiden', 2012, 'M', 14862), +(211977, 'Daniel', 2012, 'M', 14234), +(211978, 'Matthew', 2012, 'M', 13943), +(211979, 'Elijah', 2012, 'M', 13811), +(211980, 'James', 2012, 'M', 13385), +(211981, 'Anthony', 2012, 'M', 13163), +(211982, 'Benjamin', 2012, 'M', 12792), +(211983, 'Joshua', 2012, 'M', 12613), +(211984, 'Andrew', 2012, 'M', 12590), +(211985, 'Joseph', 2012, 'M', 12503), +(211986, 'David', 2012, 'M', 12494), +(211987, 'Jackson', 2012, 'M', 12456), +(211988, 'Logan', 2012, 'M', 12446), +(211989, 'Christopher', 2012, 'M', 11864), +(211990, 'Gabriel', 2012, 'M', 11525), +(211991, 'Samuel', 2012, 'M', 11419), +(211992, 'Ryan', 2012, 'M', 10925), +(211993, 'Lucas', 2012, 'M', 10685), +(211994, 'John', 2012, 'M', 10593), +(211995, 'Nathan', 2012, 'M', 10396), +(211996, 'Isaac', 2012, 'M', 10020), +(211997, 'Dylan', 2012, 'M', 9976), +(211998, 'Caleb', 2012, 'M', 9937), +(211999, 'Christian', 2012, 'M', 9597), +(212000, 'Landon', 2012, 'M', 9331), +(212001, 'Jonathan', 2012, 'M', 9329), +(212002, 'Carter', 2012, 'M', 9239), +(212003, 'Luke', 2012, 'M', 8990), +(212004, 'Owen', 2012, 'M', 8677), +(212005, 'Brayden', 2012, 'M', 8488), +(212006, 'Gavin', 2012, 'M', 8243), +(212007, 'Wyatt', 2012, 'M', 8203), +(212008, 'Isaiah', 2012, 'M', 8129), +(212009, 'Henry', 2012, 'M', 8061), +(212010, 'Eli', 2012, 'M', 8047), +(212011, 'Hunter', 2012, 'M', 8010), +(212012, 'Jack', 2012, 'M', 7924), +(212013, 'Evan', 2012, 'M', 7885), +(212014, 'Jordan', 2012, 'M', 7782), +(212015, 'Nicholas', 2012, 'M', 7723), +(212016, 'Tyler', 2012, 'M', 7681), +(212017, 'Aaron', 2012, 'M', 7509), +(212018, 'Jeremiah', 2012, 'M', 7440), +(212019, 'Julian', 2012, 'M', 7359), +(212020, 'Cameron', 2012, 'M', 7344), +(212021, 'Levi', 2012, 'M', 7201), +(212022, 'Brandon', 2012, 'M', 7020), +(212023, 'Angel', 2012, 'M', 7006), +(212024, 'Austin', 2012, 'M', 6985), +(212025, 'Connor', 2012, 'M', 6962), +(212026, 'Adrian', 2012, 'M', 6928), +(212027, 'Robert', 2012, 'M', 6926), +(212028, 'Charles', 2012, 'M', 6920), +(212029, 'Thomas', 2012, 'M', 6823), +(212030, 'Sebastian', 2012, 'M', 6722), +(212031, 'Colton', 2012, 'M', 6346), +(212032, 'Jaxon', 2012, 'M', 6289), +(212033, 'Zachary', 2012, 'M', 6243), +(212034, 'Kevin', 2012, 'M', 6214), +(212035, 'Ayden', 2012, 'M', 6211), +(212036, 'Dominic', 2012, 'M', 6167), +(212037, 'Blake', 2012, 'M', 6026), +(212038, 'Jose', 2012, 'M', 6025), +(212039, 'Oliver', 2012, 'M', 5906), +(212040, 'Justin', 2012, 'M', 5870), +(212041, 'Bentley', 2012, 'M', 5858), +(212042, 'Jason', 2012, 'M', 5728), +(212043, 'Ian', 2012, 'M', 5679), +(212044, 'Chase', 2012, 'M', 5677), +(212045, 'Josiah', 2012, 'M', 5492), +(212046, 'Xavier', 2012, 'M', 5353), +(212047, 'Parker', 2012, 'M', 5351), +(212048, 'Adam', 2012, 'M', 5303), +(212049, 'Cooper', 2012, 'M', 5190), +(212050, 'Nathaniel', 2012, 'M', 4770), +(212051, 'Grayson', 2012, 'M', 4703), +(212052, 'Jace', 2012, 'M', 4703), +(212053, 'Carson', 2012, 'M', 4586), +(212054, 'Nolan', 2012, 'M', 4423), +(212055, 'Tristan', 2012, 'M', 4415), +(212056, 'Luis', 2012, 'M', 4364), +(212057, 'Brody', 2012, 'M', 4355), +(212058, 'Juan', 2012, 'M', 4277), +(212059, 'Hudson', 2012, 'M', 4214), +(212060, 'Bryson', 2012, 'M', 4019), +(212061, 'Carlos', 2012, 'M', 4001), +(212062, 'Easton', 2012, 'M', 3937), +(212063, 'Kayden', 2012, 'M', 3854), +(212064, 'Damian', 2012, 'M', 3851), +(212065, 'Alex', 2012, 'M', 3846), +(212066, 'Ryder', 2012, 'M', 3803), +(212067, 'Jesus', 2012, 'M', 3778), +(212068, 'Cole', 2012, 'M', 3771), +(212069, 'Micah', 2012, 'M', 3751), +(212070, 'Vincent', 2012, 'M', 3723), +(212071, 'Max', 2012, 'M', 3687), +(212072, 'Jaxson', 2012, 'M', 3651), +(212073, 'Eric', 2012, 'M', 3620), +(212074, 'Asher', 2012, 'M', 3549), +(212075, 'Hayden', 2012, 'M', 3527), +(212076, 'Diego', 2012, 'M', 3333), +(212077, 'Miles', 2012, 'M', 3261), +(212078, 'Steven', 2012, 'M', 3231), +(212079, 'Ivan', 2012, 'M', 3222), +(212080, 'Maxwell', 2012, 'M', 3222), +(212081, 'Elias', 2012, 'M', 3219), +(212082, 'Aidan', 2012, 'M', 3212), +(212083, 'Bryce', 2012, 'M', 3177), +(212084, 'Antonio', 2012, 'M', 3107), +(212085, 'Timothy', 2012, 'M', 3099), +(212086, 'Giovanni', 2012, 'M', 3084), +(212087, 'Bryan', 2012, 'M', 3075), +(212088, 'Santiago', 2012, 'M', 3045), +(212089, 'Colin', 2012, 'M', 3018), +(212090, 'Richard', 2012, 'M', 3011), +(212091, 'Braxton', 2012, 'M', 3000), +(212092, 'Kaleb', 2012, 'M', 2984), +(212093, 'Kyle', 2012, 'M', 2958), +(212094, 'Jonah', 2012, 'M', 2942), +(212095, 'Kaden', 2012, 'M', 2939), +(212096, 'Miguel', 2012, 'M', 2933), +(212097, 'Preston', 2012, 'M', 2932), +(212098, 'Lincoln', 2012, 'M', 2901), +(212099, 'Riley', 2012, 'M', 2876), +(212100, 'Leo', 2012, 'M', 2871), +(212101, 'Victor', 2012, 'M', 2863), +(212102, 'Brady', 2012, 'M', 2857), +(212103, 'Mateo', 2012, 'M', 2834), +(212104, 'Jeremy', 2012, 'M', 2832), +(212105, 'Jaden', 2012, 'M', 2817), +(212106, 'Brian', 2012, 'M', 2809), +(212107, 'Ashton', 2012, 'M', 2805), +(212108, 'Patrick', 2012, 'M', 2803), +(212109, 'Declan', 2012, 'M', 2778), +(212110, 'Sean', 2012, 'M', 2767), +(212111, 'Joel', 2012, 'M', 2766), +(212112, 'Gael', 2012, 'M', 2741), +(212113, 'Sawyer', 2012, 'M', 2734), +(212114, 'Alejandro', 2012, 'M', 2723), +(212115, 'Marcus', 2012, 'M', 2708), +(212116, 'Jesse', 2012, 'M', 2688), +(212117, 'Caden', 2012, 'M', 2684), +(212118, 'Leonardo', 2012, 'M', 2681), +(212119, 'Jake', 2012, 'M', 2672), +(212120, 'Kaiden', 2012, 'M', 2657), +(212121, 'Wesley', 2012, 'M', 2641), +(212122, 'Camden', 2012, 'M', 2594), +(212123, 'Edward', 2012, 'M', 2588), +(212124, 'Brantley', 2012, 'M', 2575), +(212125, 'Roman', 2012, 'M', 2568), +(212126, 'Silas', 2012, 'M', 2489), +(212127, 'Jude', 2012, 'M', 2477), +(212128, 'Axel', 2012, 'M', 2474), +(212129, 'Grant', 2012, 'M', 2466), +(212130, 'Cayden', 2012, 'M', 2368), +(212131, 'Emmanuel', 2012, 'M', 2339), +(212132, 'George', 2012, 'M', 2330), +(212133, 'Maddox', 2012, 'M', 2309), +(212134, 'Malachi', 2012, 'M', 2304), +(212135, 'Bradley', 2012, 'M', 2287), +(212136, 'Weston', 2012, 'M', 2282), +(212137, 'Alan', 2012, 'M', 2281), +(212138, 'Gage', 2012, 'M', 2264), +(212139, 'Greyson', 2012, 'M', 2235), +(212140, 'Devin', 2012, 'M', 2233), +(212141, 'Kenneth', 2012, 'M', 2211), +(212142, 'Mark', 2012, 'M', 2197), +(212143, 'Oscar', 2012, 'M', 2191), +(212144, 'Tanner', 2012, 'M', 2175), +(212145, 'Rylan', 2012, 'M', 2169), +(212146, 'Nicolas', 2012, 'M', 2128), +(212147, 'Harrison', 2012, 'M', 2122), +(212148, 'Derek', 2012, 'M', 2110), +(212149, 'Ezra', 2012, 'M', 2082), +(212150, 'Peyton', 2012, 'M', 2071), +(212151, 'Tucker', 2012, 'M', 2034), +(212152, 'Emmett', 2012, 'M', 2021), +(212153, 'Avery', 2012, 'M', 2011), +(212154, 'Cody', 2012, 'M', 2002), +(212155, 'Calvin', 2012, 'M', 1959), +(212156, 'Abraham', 2012, 'M', 1948), +(212157, 'Andres', 2012, 'M', 1944), +(212158, 'Paul', 2012, 'M', 1944), +(212159, 'Abel', 2012, 'M', 1943), +(212160, 'Theodore', 2012, 'M', 1941), +(212161, 'Jorge', 2012, 'M', 1939), +(212162, 'Kai', 2012, 'M', 1934), +(212163, 'Collin', 2012, 'M', 1931), +(212164, 'Ezekiel', 2012, 'M', 1926), +(212165, 'Omar', 2012, 'M', 1916), +(212166, 'Jayce', 2012, 'M', 1908), +(212167, 'Bennett', 2012, 'M', 1907), +(212168, 'Conner', 2012, 'M', 1899), +(212169, 'Trevor', 2012, 'M', 1870), +(212170, 'Peter', 2012, 'M', 1861), +(212171, 'Eduardo', 2012, 'M', 1856), +(212172, 'Maximus', 2012, 'M', 1842), +(212173, 'Jaiden', 2012, 'M', 1822), +(212174, 'Jameson', 2012, 'M', 1811), +(212175, 'Seth', 2012, 'M', 1806), +(212176, 'Kingston', 2012, 'M', 1771), +(212177, 'Javier', 2012, 'M', 1767), +(212178, 'Travis', 2012, 'M', 1751), +(212179, 'Garrett', 2012, 'M', 1741), +(212180, 'Everett', 2012, 'M', 1734), +(212181, 'Graham', 2012, 'M', 1714), +(212182, 'Xander', 2012, 'M', 1709), +(212183, 'Cristian', 2012, 'M', 1668), +(212184, 'Damien', 2012, 'M', 1658), +(212185, 'Griffin', 2012, 'M', 1650), +(212186, 'Ryker', 2012, 'M', 1648), +(212187, 'Corbin', 2012, 'M', 1616), +(212188, 'Myles', 2012, 'M', 1614), +(212189, 'Luca', 2012, 'M', 1613), +(212190, 'Zane', 2012, 'M', 1587), +(212191, 'Francisco', 2012, 'M', 1566), +(212192, 'Ricardo', 2012, 'M', 1564), +(212193, 'Stephen', 2012, 'M', 1561), +(212194, 'Alexis', 2012, 'M', 1559), +(212195, 'Zayden', 2012, 'M', 1554), +(212196, 'Iker', 2012, 'M', 1542), +(212197, 'Drake', 2012, 'M', 1539), +(212198, 'Lukas', 2012, 'M', 1537), +(212199, 'Charlie', 2012, 'M', 1530), +(212200, 'Spencer', 2012, 'M', 1530), +(212201, 'Zion', 2012, 'M', 1528), +(212202, 'Erick', 2012, 'M', 1519), +(212203, 'Josue', 2012, 'M', 1513), +(212204, 'Chance', 2012, 'M', 1505), +(212205, 'Trenton', 2012, 'M', 1503), +(212206, 'Jeffrey', 2012, 'M', 1502), +(212207, 'Elliot', 2012, 'M', 1496), +(212208, 'Paxton', 2012, 'M', 1495), +(212209, 'Fernando', 2012, 'M', 1481), +(212210, 'Shane', 2012, 'M', 1470), +(212211, 'Keegan', 2012, 'M', 1468), +(212212, 'Landen', 2012, 'M', 1467), +(212213, 'Amir', 2012, 'M', 1463), +(212214, 'Manuel', 2012, 'M', 1462), +(212215, 'Zander', 2012, 'M', 1461), +(212216, 'Raymond', 2012, 'M', 1454), +(212217, 'Andre', 2012, 'M', 1453), +(212218, 'Israel', 2012, 'M', 1445), +(212219, 'Mario', 2012, 'M', 1442), +(212220, 'Simon', 2012, 'M', 1442), +(212221, 'Cesar', 2012, 'M', 1433), +(212222, 'King', 2012, 'M', 1430), +(212223, 'Jaylen', 2012, 'M', 1429), +(212224, 'Johnathan', 2012, 'M', 1399), +(212225, 'Troy', 2012, 'M', 1384), +(212226, 'Dean', 2012, 'M', 1375), +(212227, 'Clayton', 2012, 'M', 1361), +(212228, 'Dominick', 2012, 'M', 1360), +(212229, 'Tyson', 2012, 'M', 1347), +(212230, 'Martin', 2012, 'M', 1346), +(212231, 'Jasper', 2012, 'M', 1345), +(212232, 'Kyler', 2012, 'M', 1326), +(212233, 'Hector', 2012, 'M', 1323), +(212234, 'Edgar', 2012, 'M', 1316), +(212235, 'Cash', 2012, 'M', 1313), +(212236, 'Marco', 2012, 'M', 1304), +(212237, 'Edwin', 2012, 'M', 1302), +(212238, 'Judah', 2012, 'M', 1293), +(212239, 'Shawn', 2012, 'M', 1292), +(212240, 'Donovan', 2012, 'M', 1270), +(212241, 'Andy', 2012, 'M', 1266), +(212242, 'Kameron', 2012, 'M', 1266), +(212243, 'Elliott', 2012, 'M', 1260), +(212244, 'Dante', 2012, 'M', 1250), +(212245, 'Braylon', 2012, 'M', 1248), +(212246, 'Anderson', 2012, 'M', 1246), +(212247, 'Drew', 2012, 'M', 1235), +(212248, 'Sergio', 2012, 'M', 1233), +(212249, 'Johnny', 2012, 'M', 1232), +(212250, 'Cruz', 2012, 'M', 1229), +(212251, 'Dalton', 2012, 'M', 1228), +(212252, 'Rafael', 2012, 'M', 1228), +(212253, 'Gregory', 2012, 'M', 1226), +(212254, 'Lane', 2012, 'M', 1223), +(212255, 'Skyler', 2012, 'M', 1222), +(212256, 'Erik', 2012, 'M', 1214), +(212257, 'Finn', 2012, 'M', 1213), +(212258, 'Reid', 2012, 'M', 1204), +(212259, 'Gunner', 2012, 'M', 1199), +(212260, 'Jared', 2012, 'M', 1197), +(212261, 'Caiden', 2012, 'M', 1190), +(212262, 'Holden', 2012, 'M', 1176), +(212263, 'Emilio', 2012, 'M', 1170), +(212264, 'Fabian', 2012, 'M', 1158), +(212265, 'Aden', 2012, 'M', 1150), +(212266, 'Brendan', 2012, 'M', 1147), +(212267, 'Rowan', 2012, 'M', 1146), +(212268, 'Emiliano', 2012, 'M', 1137), +(212269, 'Braden', 2012, 'M', 1132), +(212270, 'Jase', 2012, 'M', 1124), +(212271, 'Jax', 2012, 'M', 1119), +(212272, 'Emanuel', 2012, 'M', 1092), +(212273, 'Lorenzo', 2012, 'M', 1084), +(212274, 'Roberto', 2012, 'M', 1073), +(212275, 'Amari', 2012, 'M', 1070), +(212276, 'Angelo', 2012, 'M', 1063), +(212277, 'Beau', 2012, 'M', 1063), +(212278, 'Louis', 2012, 'M', 1054), +(212279, 'Derrick', 2012, 'M', 1051), +(212280, 'Beckett', 2012, 'M', 1041), +(212281, 'Felix', 2012, 'M', 1037), +(212282, 'Dawson', 2012, 'M', 1034), +(212283, 'Pedro', 2012, 'M', 1016), +(212284, 'Brennan', 2012, 'M', 1009), +(212285, 'Frank', 2012, 'M', 985), +(212286, 'Quinn', 2012, 'M', 984), +(212287, 'Dallas', 2012, 'M', 978), +(212288, 'Maximiliano', 2012, 'M', 977), +(212289, 'Romeo', 2012, 'M', 975), +(212290, 'Joaquin', 2012, 'M', 970), +(212291, 'Waylon', 2012, 'M', 967), +(212292, 'Braylen', 2012, 'M', 964), +(212293, 'Milo', 2012, 'M', 964), +(212294, 'Allen', 2012, 'M', 957), +(212295, 'Colt', 2012, 'M', 957), +(212296, 'Ruben', 2012, 'M', 954), +(212297, 'Dakota', 2012, 'M', 951), +(212298, 'Julius', 2012, 'M', 949), +(212299, 'August', 2012, 'M', 945), +(212300, 'Grady', 2012, 'M', 942), +(212301, 'Cohen', 2012, 'M', 936), +(212302, 'Brock', 2012, 'M', 935), +(212303, 'Kellen', 2012, 'M', 931), +(212304, 'Brycen', 2012, 'M', 925), +(212305, 'Desmond', 2012, 'M', 921), +(212306, 'Malik', 2012, 'M', 911), +(212307, 'Colby', 2012, 'M', 904), +(212308, 'Nehemiah', 2012, 'M', 903), +(212309, 'Leland', 2012, 'M', 894), +(212310, 'Marcos', 2012, 'M', 892), +(212311, 'Jett', 2012, 'M', 891), +(212312, 'Ty', 2012, 'M', 886), +(212313, 'Marshall', 2012, 'M', 885), +(212314, 'Karter', 2012, 'M', 883), +(212315, 'Taylor', 2012, 'M', 882), +(212316, 'Phillip', 2012, 'M', 880), +(212317, 'Corey', 2012, 'M', 871), +(212318, 'Adan', 2012, 'M', 868), +(212319, 'Ali', 2012, 'M', 868), +(212320, 'Dillon', 2012, 'M', 867), +(212321, 'Arthur', 2012, 'M', 865), +(212322, 'Leon', 2012, 'M', 857), +(212323, 'Maverick', 2012, 'M', 856), +(212324, 'Brooks', 2012, 'M', 847), +(212325, 'Titus', 2012, 'M', 846), +(212326, 'Tristen', 2012, 'M', 842), +(212327, 'Dexter', 2012, 'M', 839), +(212328, 'Keith', 2012, 'M', 839), +(212329, 'Emerson', 2012, 'M', 835), +(212330, 'Karson', 2012, 'M', 834), +(212331, 'Landyn', 2012, 'M', 827), +(212332, 'Pablo', 2012, 'M', 825), +(212333, 'Armando', 2012, 'M', 821), +(212334, 'Enrique', 2012, 'M', 820); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(212335, 'Knox', 2012, 'M', 819), +(212336, 'Cade', 2012, 'M', 816), +(212337, 'Reed', 2012, 'M', 816), +(212338, 'Gerardo', 2012, 'M', 815), +(212339, 'Kellan', 2012, 'M', 812), +(212340, 'Jayson', 2012, 'M', 807), +(212341, 'Barrett', 2012, 'M', 804), +(212342, 'Walter', 2012, 'M', 799), +(212343, 'Dustin', 2012, 'M', 797), +(212344, 'Ronald', 2012, 'M', 794), +(212345, 'Kolton', 2012, 'M', 792), +(212346, 'Phoenix', 2012, 'M', 791), +(212347, 'Trent', 2012, 'M', 788), +(212348, 'Ismael', 2012, 'M', 776), +(212349, 'Scott', 2012, 'M', 775), +(212350, 'Julio', 2012, 'M', 774), +(212351, 'Danny', 2012, 'M', 772), +(212352, 'Kason', 2012, 'M', 769), +(212353, 'Tate', 2012, 'M', 765), +(212354, 'Messiah', 2012, 'M', 764), +(212355, 'Jay', 2012, 'M', 763), +(212356, 'Gideon', 2012, 'M', 760), +(212357, 'Esteban', 2012, 'M', 759), +(212358, 'Trey', 2012, 'M', 756), +(212359, 'Abram', 2012, 'M', 755), +(212360, 'Keaton', 2012, 'M', 747), +(212361, 'Jakob', 2012, 'M', 737), +(212362, 'Devon', 2012, 'M', 730), +(212363, 'Jaime', 2012, 'M', 730), +(212364, 'Braydon', 2012, 'M', 729), +(212365, 'Izaiah', 2012, 'M', 726), +(212366, 'Darius', 2012, 'M', 723), +(212367, 'Donald', 2012, 'M', 723), +(212368, 'Albert', 2012, 'M', 722), +(212369, 'Raul', 2012, 'M', 721), +(212370, 'Archer', 2012, 'M', 720), +(212371, 'River', 2012, 'M', 718), +(212372, 'Colten', 2012, 'M', 714), +(212373, 'Damon', 2012, 'M', 714), +(212374, 'Philip', 2012, 'M', 712), +(212375, 'Atticus', 2012, 'M', 709), +(212376, 'Walker', 2012, 'M', 707), +(212377, 'Gustavo', 2012, 'M', 706), +(212378, 'Matteo', 2012, 'M', 705), +(212379, 'Randy', 2012, 'M', 694), +(212380, 'Saul', 2012, 'M', 687), +(212381, 'Davis', 2012, 'M', 684), +(212382, 'Rocco', 2012, 'M', 684), +(212383, 'Enzo', 2012, 'M', 680), +(212384, 'Noel', 2012, 'M', 680), +(212385, 'Orion', 2012, 'M', 675), +(212386, 'Jamari', 2012, 'M', 672), +(212387, 'Bruce', 2012, 'M', 667), +(212388, 'Remington', 2012, 'M', 667), +(212389, 'Darren', 2012, 'M', 666), +(212390, 'Dennis', 2012, 'M', 658), +(212391, 'Russell', 2012, 'M', 656), +(212392, 'Larry', 2012, 'M', 655), +(212393, 'Mathew', 2012, 'M', 655), +(212394, 'Tony', 2012, 'M', 651), +(212395, 'Chris', 2012, 'M', 647), +(212396, 'Porter', 2012, 'M', 642), +(212397, 'Armani', 2012, 'M', 638), +(212398, 'Rodrigo', 2012, 'M', 638), +(212399, 'Zachariah', 2012, 'M', 636), +(212400, 'Hugo', 2012, 'M', 635), +(212401, 'Zaiden', 2012, 'M', 635), +(212402, 'Ari', 2012, 'M', 634), +(212403, 'Kade', 2012, 'M', 634), +(212404, 'Solomon', 2012, 'M', 633), +(212405, 'Quentin', 2012, 'M', 628), +(212406, 'Kamden', 2012, 'M', 627), +(212407, 'Mohamed', 2012, 'M', 625), +(212408, 'Curtis', 2012, 'M', 623), +(212409, 'Issac', 2012, 'M', 618), +(212410, 'Leonel', 2012, 'M', 618), +(212411, 'Khalil', 2012, 'M', 615), +(212412, 'Jerry', 2012, 'M', 614), +(212413, 'Alberto', 2012, 'M', 610), +(212414, 'Gianni', 2012, 'M', 606), +(212415, 'Alec', 2012, 'M', 604), +(212416, 'Gunnar', 2012, 'M', 602), +(212417, 'Moises', 2012, 'M', 602), +(212418, 'Adriel', 2012, 'M', 599), +(212419, 'Lawrence', 2012, 'M', 599), +(212420, 'Alijah', 2012, 'M', 597), +(212421, 'Chandler', 2012, 'M', 595), +(212422, 'Prince', 2012, 'M', 593), +(212423, 'Ronan', 2012, 'M', 593), +(212424, 'Payton', 2012, 'M', 592), +(212425, 'Ricky', 2012, 'M', 592), +(212426, 'Arturo', 2012, 'M', 588), +(212427, 'Maximilian', 2012, 'M', 587), +(212428, 'Orlando', 2012, 'M', 587), +(212429, 'Jimmy', 2012, 'M', 586), +(212430, 'Mitchell', 2012, 'M', 586), +(212431, 'Cason', 2012, 'M', 585), +(212432, 'Malcolm', 2012, 'M', 583), +(212433, 'Muhammad', 2012, 'M', 582), +(212434, 'Cyrus', 2012, 'M', 581), +(212435, 'Jonas', 2012, 'M', 580), +(212436, 'Jalen', 2012, 'M', 579), +(212437, 'Kasen', 2012, 'M', 578), +(212438, 'Marvin', 2012, 'M', 578), +(212439, 'Warren', 2012, 'M', 577), +(212440, 'Mauricio', 2012, 'M', 576), +(212441, 'Rhys', 2012, 'M', 576), +(212442, 'Dane', 2012, 'M', 570), +(212443, 'Kendrick', 2012, 'M', 570), +(212444, 'Pierce', 2012, 'M', 570), +(212445, 'Ryland', 2012, 'M', 569), +(212446, 'Johan', 2012, 'M', 565), +(212447, 'Rory', 2012, 'M', 564), +(212448, 'Uriel', 2012, 'M', 559), +(212449, 'Reece', 2012, 'M', 556), +(212450, 'Bryant', 2012, 'M', 555), +(212451, 'Major', 2012, 'M', 555), +(212452, 'Casey', 2012, 'M', 554), +(212453, 'Ibrahim', 2012, 'M', 549), +(212454, 'Nikolas', 2012, 'M', 548), +(212455, 'Sullivan', 2012, 'M', 548), +(212456, 'Finnegan', 2012, 'M', 546), +(212457, 'Arjun', 2012, 'M', 544), +(212458, 'Alfredo', 2012, 'M', 540), +(212459, 'Royce', 2012, 'M', 540), +(212460, 'Ahmed', 2012, 'M', 539), +(212461, 'Lance', 2012, 'M', 537), +(212462, 'Jamison', 2012, 'M', 535), +(212463, 'Amare', 2012, 'M', 533), +(212464, 'Brenden', 2012, 'M', 533), +(212465, 'Ramon', 2012, 'M', 533), +(212466, 'Dominik', 2012, 'M', 532), +(212467, 'Brayan', 2012, 'M', 530), +(212468, 'Maurice', 2012, 'M', 528), +(212469, 'Kristopher', 2012, 'M', 527), +(212470, 'Mekhi', 2012, 'M', 527), +(212471, 'Case', 2012, 'M', 526), +(212472, 'Kobe', 2012, 'M', 522), +(212473, 'Zackary', 2012, 'M', 520), +(212474, 'Rhett', 2012, 'M', 519), +(212475, 'Jensen', 2012, 'M', 518), +(212476, 'Deandre', 2012, 'M', 517), +(212477, 'Jaxton', 2012, 'M', 517), +(212478, 'Isaias', 2012, 'M', 513), +(212479, 'Tobias', 2012, 'M', 512), +(212480, 'Channing', 2012, 'M', 511), +(212481, 'Talon', 2012, 'M', 509), +(212482, 'Ezequiel', 2012, 'M', 508), +(212483, 'Justice', 2012, 'M', 508), +(212484, 'Yahir', 2012, 'M', 508), +(212485, 'Kash', 2012, 'M', 505), +(212486, 'Sam', 2012, 'M', 505), +(212487, 'Alvin', 2012, 'M', 502), +(212488, 'Jacoby', 2012, 'M', 500), +(212489, 'Moshe', 2012, 'M', 499), +(212490, 'Nash', 2012, 'M', 499), +(212491, 'Nico', 2012, 'M', 498), +(212492, 'Ace', 2012, 'M', 497), +(212493, 'Quinton', 2012, 'M', 493), +(212494, 'Cannon', 2012, 'M', 492), +(212495, 'Franklin', 2012, 'M', 492), +(212496, 'Beckham', 2012, 'M', 491), +(212497, 'Joe', 2012, 'M', 491), +(212498, 'Lawson', 2012, 'M', 491), +(212499, 'Raiden', 2012, 'M', 489), +(212500, 'Gary', 2012, 'M', 488), +(212501, 'Raylan', 2012, 'M', 487), +(212502, 'Carl', 2012, 'M', 486), +(212503, 'Aldo', 2012, 'M', 485), +(212504, 'Frederick', 2012, 'M', 485), +(212505, 'London', 2012, 'M', 485), +(212506, 'Boston', 2012, 'M', 483), +(212507, 'Moses', 2012, 'M', 481), +(212508, 'Byron', 2012, 'M', 479), +(212509, 'Terry', 2012, 'M', 479), +(212510, 'Ernesto', 2012, 'M', 478), +(212511, 'Eddie', 2012, 'M', 477), +(212512, 'Kane', 2012, 'M', 477), +(212513, 'Finley', 2012, 'M', 476), +(212514, 'Reese', 2012, 'M', 475), +(212515, 'Kelvin', 2012, 'M', 473), +(212516, 'Salvador', 2012, 'M', 472), +(212517, 'Clark', 2012, 'M', 471), +(212518, 'Cullen', 2012, 'M', 470), +(212519, 'Madden', 2012, 'M', 470), +(212520, 'Wade', 2012, 'M', 470), +(212521, 'Kieran', 2012, 'M', 468), +(212522, 'Mohammed', 2012, 'M', 467), +(212523, 'Jagger', 2012, 'M', 466), +(212524, 'Nelson', 2012, 'M', 464), +(212525, 'Dorian', 2012, 'M', 463), +(212526, 'Korbin', 2012, 'M', 463), +(212527, 'Nasir', 2012, 'M', 462), +(212528, 'Asa', 2012, 'M', 461), +(212529, 'Roy', 2012, 'M', 461), +(212530, 'Matias', 2012, 'M', 457), +(212531, 'Roger', 2012, 'M', 457), +(212532, 'Nickolas', 2012, 'M', 454), +(212533, 'Alonzo', 2012, 'M', 453), +(212534, 'Callen', 2012, 'M', 451), +(212535, 'Jaxen', 2012, 'M', 451), +(212536, 'Skylar', 2012, 'M', 451), +(212537, 'Douglas', 2012, 'M', 450), +(212538, 'Malakai', 2012, 'M', 450), +(212539, 'Uriah', 2012, 'M', 449), +(212540, 'Conor', 2012, 'M', 446), +(212541, 'Ahmad', 2012, 'M', 444), +(212542, 'Carmelo', 2012, 'M', 443), +(212543, 'Bentlee', 2012, 'M', 442), +(212544, 'Blaine', 2012, 'M', 442), +(212545, 'Braeden', 2012, 'M', 442), +(212546, 'Kristian', 2012, 'M', 442), +(212547, 'Kayson', 2012, 'M', 441), +(212548, 'Morgan', 2012, 'M', 441), +(212549, 'Julien', 2012, 'M', 440), +(212550, 'Nathanael', 2012, 'M', 438), +(212551, 'Aarav', 2012, 'M', 435), +(212552, 'Keagan', 2012, 'M', 435), +(212553, 'Lucian', 2012, 'M', 435), +(212554, 'Chad', 2012, 'M', 434), +(212555, 'Terrance', 2012, 'M', 434), +(212556, 'Benson', 2012, 'M', 433), +(212557, 'Noe', 2012, 'M', 431), +(212558, 'Francis', 2012, 'M', 429), +(212559, 'Rodney', 2012, 'M', 429), +(212560, 'Layne', 2012, 'M', 428), +(212561, 'Zayne', 2012, 'M', 425), +(212562, 'Brett', 2012, 'M', 424), +(212563, 'Mohammad', 2012, 'M', 424), +(212564, 'Tatum', 2012, 'M', 422), +(212565, 'Wilson', 2012, 'M', 422), +(212566, 'Dayton', 2012, 'M', 421), +(212567, 'Kian', 2012, 'M', 420), +(212568, 'Marc', 2012, 'M', 419), +(212569, 'Braiden', 2012, 'M', 418), +(212570, 'Nikolai', 2012, 'M', 417), +(212571, 'Rohan', 2012, 'M', 417), +(212572, 'Harper', 2012, 'M', 416), +(212573, 'Luciano', 2012, 'M', 414), +(212574, 'Kamari', 2012, 'M', 409), +(212575, 'Ellis', 2012, 'M', 403), +(212576, 'Joey', 2012, 'M', 403), +(212577, 'Camron', 2012, 'M', 402), +(212578, 'Layton', 2012, 'M', 402), +(212579, 'Santino', 2012, 'M', 400), +(212580, 'Winston', 2012, 'M', 398), +(212581, 'Xzavier', 2012, 'M', 398), +(212582, 'Demetrius', 2012, 'M', 395), +(212583, 'Jefferson', 2012, 'M', 393), +(212584, 'Guillermo', 2012, 'M', 392), +(212585, 'Bowen', 2012, 'M', 390), +(212586, 'Neil', 2012, 'M', 390), +(212587, 'Daxton', 2012, 'M', 388), +(212588, 'Melvin', 2012, 'M', 388), +(212589, 'Jon', 2012, 'M', 387), +(212590, 'Raphael', 2012, 'M', 387), +(212591, 'Soren', 2012, 'M', 387), +(212592, 'Sylas', 2012, 'M', 387), +(212593, 'Shaun', 2012, 'M', 385), +(212594, 'Brodie', 2012, 'M', 384), +(212595, 'Quincy', 2012, 'M', 384), +(212596, 'Rex', 2012, 'M', 384), +(212597, 'Tommy', 2012, 'M', 384), +(212598, 'Yusuf', 2012, 'M', 384), +(212599, 'Harley', 2012, 'M', 381), +(212600, 'Dax', 2012, 'M', 378), +(212601, 'Trace', 2012, 'M', 377), +(212602, 'Luka', 2012, 'M', 375), +(212603, 'Adonis', 2012, 'M', 374), +(212604, 'Bently', 2012, 'M', 374), +(212605, 'Lewis', 2012, 'M', 374), +(212606, 'Odin', 2012, 'M', 373), +(212607, 'Giovani', 2012, 'M', 372), +(212608, 'Jeffery', 2012, 'M', 372), +(212609, 'Kylan', 2012, 'M', 372), +(212610, 'Kendall', 2012, 'M', 369), +(212611, 'Willie', 2012, 'M', 369), +(212612, 'Cory', 2012, 'M', 367), +(212613, 'Davion', 2012, 'M', 367), +(212614, 'Tripp', 2012, 'M', 367), +(212615, 'Vihaan', 2012, 'M', 366), +(212616, 'Arian', 2012, 'M', 365), +(212617, 'Jamarion', 2012, 'M', 365), +(212618, 'Emery', 2012, 'M', 364), +(212619, 'Jonathon', 2012, 'M', 363), +(212620, 'Nixon', 2012, 'M', 363), +(212621, 'Rayan', 2012, 'M', 362), +(212622, 'Jermaine', 2012, 'M', 361), +(212623, 'Zechariah', 2012, 'M', 360), +(212624, 'Emmitt', 2012, 'M', 359), +(212625, 'Reginald', 2012, 'M', 359), +(212626, 'Tomas', 2012, 'M', 358), +(212627, 'Hamza', 2012, 'M', 356), +(212628, 'Micheal', 2012, 'M', 356), +(212629, 'Ayaan', 2012, 'M', 355), +(212630, 'Billy', 2012, 'M', 355), +(212631, 'Urijah', 2012, 'M', 354), +(212632, 'Jasiah', 2012, 'M', 352), +(212633, 'Landry', 2012, 'M', 352), +(212634, 'Lee', 2012, 'M', 352), +(212635, 'Mathias', 2012, 'M', 352), +(212636, 'Will', 2012, 'M', 352), +(212637, 'Aryan', 2012, 'M', 351), +(212638, 'Crosby', 2012, 'M', 351), +(212639, 'Deacon', 2012, 'M', 351), +(212640, 'Toby', 2012, 'M', 351), +(212641, 'Tristian', 2012, 'M', 349), +(212642, 'Eden', 2012, 'M', 348), +(212643, 'Sterling', 2012, 'M', 348), +(212644, 'Terrell', 2012, 'M', 348), +(212645, 'Triston', 2012, 'M', 348), +(212646, 'Felipe', 2012, 'M', 347), +(212647, 'Matthias', 2012, 'M', 347), +(212648, 'Aron', 2012, 'M', 346), +(212649, 'Makai', 2012, 'M', 346), +(212650, 'Yosef', 2012, 'M', 346), +(212651, 'Gerald', 2012, 'M', 345), +(212652, 'Hank', 2012, 'M', 345), +(212653, 'Jamal', 2012, 'M', 345), +(212654, 'Maxim', 2012, 'M', 345), +(212655, 'Niko', 2012, 'M', 344), +(212656, 'Branson', 2012, 'M', 343), +(212657, 'Alessandro', 2012, 'M', 342), +(212658, 'Jaydon', 2012, 'M', 341), +(212659, 'Hayes', 2012, 'M', 340), +(212660, 'Allan', 2012, 'M', 339), +(212661, 'Augustus', 2012, 'M', 339), +(212662, 'Chaim', 2012, 'M', 339), +(212663, 'Flynn', 2012, 'M', 339), +(212664, 'Kody', 2012, 'M', 339), +(212665, 'Marlon', 2012, 'M', 339), +(212666, 'Jessie', 2012, 'M', 338), +(212667, 'Mayson', 2012, 'M', 338), +(212668, 'Aydan', 2012, 'M', 337), +(212669, 'Neymar', 2012, 'M', 337), +(212670, 'Adrien', 2012, 'M', 336), +(212671, 'Jerome', 2012, 'M', 336), +(212672, 'Leonard', 2012, 'M', 336), +(212673, 'Sincere', 2012, 'M', 336), +(212674, 'Terrence', 2012, 'M', 335), +(212675, 'Kyson', 2012, 'M', 334), +(212676, 'Jadiel', 2012, 'M', 332), +(212677, 'Omari', 2012, 'M', 332), +(212678, 'Bobby', 2012, 'M', 331), +(212679, 'Kole', 2012, 'M', 331), +(212680, 'Vicente', 2012, 'M', 331), +(212681, 'Aydin', 2012, 'M', 330), +(212682, 'Zain', 2012, 'M', 330), +(212683, 'Alexzander', 2012, 'M', 329), +(212684, 'Ronnie', 2012, 'M', 329), +(212685, 'Kale', 2012, 'M', 325), +(212686, 'Harry', 2012, 'M', 324), +(212687, 'Sage', 2012, 'M', 324), +(212688, 'Ray', 2012, 'M', 323), +(212689, 'Rogelio', 2012, 'M', 323), +(212690, 'Casen', 2012, 'M', 322), +(212691, 'Clay', 2012, 'M', 321), +(212692, 'Masen', 2012, 'M', 321), +(212693, 'Kymani', 2012, 'M', 320), +(212694, 'Ulises', 2012, 'M', 320), +(212695, 'Jadon', 2012, 'M', 319), +(212696, 'Javon', 2012, 'M', 318), +(212697, 'Brent', 2012, 'M', 317), +(212698, 'Elisha', 2012, 'M', 317), +(212699, 'Princeton', 2012, 'M', 315), +(212700, 'Stanley', 2012, 'M', 315), +(212701, 'Eugene', 2012, 'M', 314), +(212702, 'Jovanni', 2012, 'M', 314), +(212703, 'Conrad', 2012, 'M', 313), +(212704, 'Darian', 2012, 'M', 313), +(212705, 'Dwayne', 2012, 'M', 313), +(212706, 'Alonso', 2012, 'M', 312), +(212707, 'Rene', 2012, 'M', 312), +(212708, 'Roland', 2012, 'M', 312), +(212709, 'Gauge', 2012, 'M', 310), +(212710, 'Kareem', 2012, 'M', 310), +(212711, 'Ben', 2012, 'M', 306), +(212712, 'Kenny', 2012, 'M', 306), +(212713, 'Abdullah', 2012, 'M', 305), +(212714, 'Vincenzo', 2012, 'M', 304), +(212715, 'Blaze', 2012, 'M', 303), +(212716, 'Camren', 2012, 'M', 303), +(212717, 'Deshawn', 2012, 'M', 303), +(212718, 'Edison', 2012, 'M', 303), +(212719, 'Steve', 2012, 'M', 303), +(212720, 'Brentley', 2012, 'M', 302), +(212721, 'Memphis', 2012, 'M', 302), +(212722, 'Osvaldo', 2012, 'M', 302), +(212723, 'Teagan', 2012, 'M', 302), +(212724, 'Cedric', 2012, 'M', 301), +(212725, 'Westin', 2012, 'M', 301), +(212726, 'Draven', 2012, 'M', 300), +(212727, 'Marquis', 2012, 'M', 300), +(212728, 'Rayden', 2012, 'M', 300), +(212729, 'Samir', 2012, 'M', 300), +(212730, 'Brennen', 2012, 'M', 299), +(212731, 'Giovanny', 2012, 'M', 299), +(212732, 'Jairo', 2012, 'M', 298), +(212733, 'Ronin', 2012, 'M', 298), +(212734, 'Bronson', 2012, 'M', 297), +(212735, 'Ariel', 2012, 'M', 296), +(212736, 'Davin', 2012, 'M', 296), +(212737, 'Alden', 2012, 'M', 294), +(212738, 'Crew', 2012, 'M', 294), +(212739, 'Isiah', 2012, 'M', 293), +(212740, 'Kolten', 2012, 'M', 293), +(212741, 'Lennox', 2012, 'M', 293), +(212742, 'Semaj', 2012, 'M', 293), +(212743, 'Davian', 2012, 'M', 291), +(212744, 'Craig', 2012, 'M', 290), +(212745, 'Jaylin', 2012, 'M', 290), +(212746, 'Justus', 2012, 'M', 290), +(212747, 'Cain', 2012, 'M', 289), +(212748, 'Cristopher', 2012, 'M', 289), +(212749, 'Wayne', 2012, 'M', 289), +(212750, 'Bo', 2012, 'M', 288), +(212751, 'Lamar', 2012, 'M', 288), +(212752, 'Leonidas', 2012, 'M', 288), +(212753, 'Otto', 2012, 'M', 288), +(212754, 'Darrell', 2012, 'M', 285), +(212755, 'Fletcher', 2012, 'M', 285), +(212756, 'Harvey', 2012, 'M', 285), +(212757, 'Kolby', 2012, 'M', 285), +(212758, 'Bruno', 2012, 'M', 284), +(212759, 'Marcelo', 2012, 'M', 284), +(212760, 'Rudy', 2012, 'M', 284), +(212761, 'Theo', 2012, 'M', 284), +(212762, 'Aidyn', 2012, 'M', 283), +(212763, 'Alfonso', 2012, 'M', 282), +(212764, 'Tyrone', 2012, 'M', 282), +(212765, 'Kaeden', 2012, 'M', 280), +(212766, 'Samson', 2012, 'M', 280), +(212767, 'Brendon', 2012, 'M', 278), +(212768, 'Tristin', 2012, 'M', 278), +(212769, 'Dominique', 2012, 'M', 277), +(212770, 'Kyree', 2012, 'M', 277), +(212771, 'Amos', 2012, 'M', 275), +(212772, 'Jovani', 2012, 'M', 275), +(212773, 'Lionel', 2012, 'M', 275), +(212774, 'Callum', 2012, 'M', 274), +(212775, 'Misael', 2012, 'M', 274), +(212776, 'Quintin', 2012, 'M', 273), +(212777, 'Valentino', 2012, 'M', 273), +(212778, 'Arlo', 2012, 'M', 272), +(212779, 'Giancarlo', 2012, 'M', 272), +(212780, 'Gavyn', 2012, 'M', 271), +(212781, 'Lennon', 2012, 'M', 271), +(212782, 'Jamir', 2012, 'M', 269), +(212783, 'Junior', 2012, 'M', 269), +(212784, 'Killian', 2012, 'M', 269), +(212785, 'Zavier', 2012, 'M', 269), +(212786, 'Kamron', 2012, 'M', 268), +(212787, 'Leandro', 2012, 'M', 267), +(212788, 'Hezekiah', 2012, 'M', 266), +(212789, 'Konnor', 2012, 'M', 266), +(212790, 'Johnathon', 2012, 'M', 265), +(212791, 'Chace', 2012, 'M', 264), +(212792, 'Ramiro', 2012, 'M', 264), +(212793, 'Callan', 2012, 'M', 263), +(212794, 'Duncan', 2012, 'M', 263), +(212795, 'Jordyn', 2012, 'M', 263), +(212796, 'Lyric', 2012, 'M', 263), +(212797, 'Markus', 2012, 'M', 263), +(212798, 'Fisher', 2012, 'M', 262), +(212799, 'Legend', 2012, 'M', 262), +(212800, 'Hendrix', 2012, 'M', 261), +(212801, 'Kamryn', 2012, 'M', 261), +(212802, 'Rashad', 2012, 'M', 261), +(212803, 'Harold', 2012, 'M', 260), +(212804, 'Camilo', 2012, 'M', 258), +(212805, 'Seamus', 2012, 'M', 258), +(212806, 'Coleman', 2012, 'M', 255), +(212807, 'Rylee', 2012, 'M', 255), +(212808, 'Vance', 2012, 'M', 255), +(212809, 'Elian', 2012, 'M', 252), +(212810, 'Jamie', 2012, 'M', 252), +(212811, 'Abdiel', 2012, 'M', 251), +(212812, 'Krish', 2012, 'M', 251), +(212813, 'Antoine', 2012, 'M', 250), +(212814, 'Gibson', 2012, 'M', 250), +(212815, 'Jaeden', 2012, 'M', 250), +(212816, 'Izayah', 2012, 'M', 249), +(212817, 'Van', 2012, 'M', 249), +(212818, 'Camdyn', 2012, 'M', 248), +(212819, 'Cayson', 2012, 'M', 248), +(212820, 'Javion', 2012, 'M', 248), +(212821, 'Branden', 2012, 'M', 247), +(212822, 'Darwin', 2012, 'M', 246), +(212823, 'Hassan', 2012, 'M', 246), +(212824, 'Jamar', 2012, 'M', 246), +(212825, 'Thiago', 2012, 'M', 246), +(212826, 'Mike', 2012, 'M', 245), +(212827, 'Randall', 2012, 'M', 245), +(212828, 'Brecken', 2012, 'M', 244), +(212829, 'Heath', 2012, 'M', 244), +(212830, 'Kingsley', 2012, 'M', 244), +(212831, 'Vaughn', 2012, 'M', 244), +(212832, 'Arnav', 2012, 'M', 243), +(212833, 'Deangelo', 2012, 'M', 243), +(212834, 'Kyrie', 2012, 'M', 243), +(212835, 'Zeke', 2012, 'M', 243), +(212836, 'Jionni', 2012, 'M', 242), +(212837, 'Joziah', 2012, 'M', 242), +(212838, 'Makhi', 2012, 'M', 242), +(212839, 'Xavi', 2012, 'M', 242), +(212840, 'Damari', 2012, 'M', 241), +(212841, 'Ean', 2012, 'M', 240), +(212842, 'Frankie', 2012, 'M', 240), +(212843, 'Konner', 2012, 'M', 240), +(212844, 'Benton', 2012, 'M', 239), +(212845, 'Oakley', 2012, 'M', 239), +(212846, 'Yael', 2012, 'M', 238), +(212847, 'Bodhi', 2012, 'M', 237), +(212848, 'Efrain', 2012, 'M', 237), +(212849, 'Marcel', 2012, 'M', 237), +(212850, 'Jedidiah', 2012, 'M', 236), +(212851, 'Keenan', 2012, 'M', 236), +(212852, 'Rolando', 2012, 'M', 236), +(212853, 'Rowen', 2012, 'M', 236), +(212854, 'Jaycob', 2012, 'M', 235), +(212855, 'Maxton', 2012, 'M', 235), +(212856, 'Remy', 2012, 'M', 235), +(212857, 'Todd', 2012, 'M', 235), +(212858, 'Ishaan', 2012, 'M', 234), +(212859, 'Reagan', 2012, 'M', 234), +(212860, 'Yousef', 2012, 'M', 234), +(212861, 'Damarion', 2012, 'M', 232), +(212862, 'Juelz', 2012, 'M', 232), +(212863, 'Yehuda', 2012, 'M', 232), +(212864, 'Valentin', 2012, 'M', 231), +(212865, 'Anders', 2012, 'M', 230), +(212866, 'Austyn', 2012, 'M', 230), +(212867, 'Thaddeus', 2012, 'M', 230), +(212868, 'Broderick', 2012, 'M', 229), +(212869, 'Alvaro', 2012, 'M', 228), +(212870, 'Gilberto', 2012, 'M', 228), +(212871, 'Mustafa', 2012, 'M', 228), +(212872, 'Salvatore', 2012, 'M', 228), +(212873, 'Brenton', 2012, 'M', 227), +(212874, 'Cale', 2012, 'M', 227), +(212875, 'Jorden', 2012, 'M', 227), +(212876, 'Clinton', 2012, 'M', 226), +(212877, 'Derick', 2012, 'M', 226), +(212878, 'Dario', 2012, 'M', 225), +(212879, 'Donte', 2012, 'M', 225), +(212880, 'Freddy', 2012, 'M', 225), +(212881, 'Jabari', 2012, 'M', 225), +(212882, 'Lucca', 2012, 'M', 225), +(212883, 'Rey', 2012, 'M', 225), +(212884, 'Blaise', 2012, 'M', 224), +(212885, 'Aaden', 2012, 'M', 223), +(212886, 'Ernest', 2012, 'M', 223), +(212887, 'Sidney', 2012, 'M', 223), +(212888, 'Axton', 2012, 'M', 222), +(212889, 'Deegan', 2012, 'M', 222), +(212890, 'Maximo', 2012, 'M', 222), +(212891, 'Trevon', 2012, 'M', 222), +(212892, 'Camryn', 2012, 'M', 221), +(212893, 'Rodolfo', 2012, 'M', 221), +(212894, 'Sonny', 2012, 'M', 221), +(212895, 'Hugh', 2012, 'M', 220), +(212896, 'Truman', 2012, 'M', 220), +(212897, 'Leroy', 2012, 'M', 219), +(212898, 'Cassius', 2012, 'M', 218), +(212899, 'Agustin', 2012, 'M', 217), +(212900, 'Brice', 2012, 'M', 217), +(212901, 'Brogan', 2012, 'M', 217), +(212902, 'Demarcus', 2012, 'M', 217), +(212903, 'Zaid', 2012, 'M', 217), +(212904, 'Bridger', 2012, 'M', 216), +(212905, 'Eliot', 2012, 'M', 216), +(212906, 'Eliseo', 2012, 'M', 216), +(212907, 'Stefan', 2012, 'M', 216), +(212908, 'Houston', 2012, 'M', 215), +(212909, 'Johann', 2012, 'M', 215), +(212910, 'Sheldon', 2012, 'M', 215), +(212911, 'Damion', 2012, 'M', 214), +(212912, 'Tyrell', 2012, 'M', 214), +(212913, 'Darryl', 2012, 'M', 213), +(212914, 'Alfred', 2012, 'M', 212), +(212915, 'Dariel', 2012, 'M', 212), +(212916, 'Isai', 2012, 'M', 212), +(212917, 'Kohen', 2012, 'M', 212), +(212918, 'Rylen', 2012, 'M', 212), +(212919, 'Cael', 2012, 'M', 211), +(212920, 'Ross', 2012, 'M', 211), +(212921, 'Santos', 2012, 'M', 211), +(212922, 'Davon', 2012, 'M', 210), +(212923, 'Ignacio', 2012, 'M', 210), +(212924, 'Kaysen', 2012, 'M', 210), +(212925, 'Mack', 2012, 'M', 209), +(212926, 'Titan', 2012, 'M', 209), +(212927, 'Tyree', 2012, 'M', 209), +(212928, 'Briggs', 2012, 'M', 208), +(212929, 'Darien', 2012, 'M', 208), +(212930, 'Kase', 2012, 'M', 208), +(212931, 'Malaki', 2012, 'M', 208), +(212932, 'Turner', 2012, 'M', 208), +(212933, 'Aditya', 2012, 'M', 207), +(212934, 'Ameer', 2012, 'M', 207), +(212935, 'Immanuel', 2012, 'M', 207), +(212936, 'Reuben', 2012, 'M', 207), +(212937, 'Zaire', 2012, 'M', 207), +(212938, 'Graysen', 2012, 'M', 206), +(212939, 'Bradyn', 2012, 'M', 205), +(212940, 'Emory', 2012, 'M', 205), +(212941, 'Gaige', 2012, 'M', 205), +(212942, 'Trystan', 2012, 'M', 205), +(212943, 'Yandel', 2012, 'M', 205), +(212944, 'Anton', 2012, 'M', 204), +(212945, 'Jaidyn', 2012, 'M', 204), +(212946, 'Simeon', 2012, 'M', 204), +(212947, 'Darnell', 2012, 'M', 203), +(212948, 'Franco', 2012, 'M', 203), +(212949, 'Maison', 2012, 'M', 202), +(212950, 'Roderick', 2012, 'M', 202), +(212951, 'Apollo', 2012, 'M', 201), +(212952, 'Deon', 2012, 'M', 201), +(212953, 'Devan', 2012, 'M', 201), +(212954, 'Graeme', 2012, 'M', 201), +(212955, 'Howard', 2012, 'M', 201), +(212956, 'Denzel', 2012, 'M', 200), +(212957, 'Foster', 2012, 'M', 200), +(212958, 'Jael', 2012, 'M', 200), +(212959, 'Jarrett', 2012, 'M', 200), +(212960, 'Kael', 2012, 'M', 200), +(212961, 'Karsen', 2012, 'M', 200), +(212962, 'Garrison', 2012, 'M', 199), +(212963, 'Gilbert', 2012, 'M', 199), +(212964, 'Jaylon', 2012, 'M', 199), +(212965, 'Kamdyn', 2012, 'M', 199), +(212966, 'Mordechai', 2012, 'M', 199), +(212967, 'Augustine', 2012, 'M', 198), +(212968, 'Ephraim', 2012, 'M', 198), +(212969, 'Kylen', 2012, 'M', 198), +(212970, 'Dangelo', 2012, 'M', 197), +(212971, 'Jayvion', 2012, 'M', 197), +(212972, 'Zachery', 2012, 'M', 197), +(212973, 'Enoch', 2012, 'M', 196), +(212974, 'Gino', 2012, 'M', 196), +(212975, 'Kelton', 2012, 'M', 196), +(212976, 'Baylor', 2012, 'M', 195), +(212977, 'Cortez', 2012, 'M', 195), +(212978, 'Dimitri', 2012, 'M', 195), +(212979, 'Gordon', 2012, 'M', 195), +(212980, 'Jeramiah', 2012, 'M', 195), +(212981, 'Irvin', 2012, 'M', 193), +(212982, 'Royal', 2012, 'M', 193), +(212983, 'Deven', 2012, 'M', 192), +(212984, 'Eliezer', 2012, 'M', 192), +(212985, 'Jair', 2012, 'M', 192), +(212986, 'Keon', 2012, 'M', 192), +(212987, 'Clarence', 2012, 'M', 191), +(212988, 'Pierre', 2012, 'M', 191), +(212989, 'Quinten', 2012, 'M', 191), +(212990, 'Yisroel', 2012, 'M', 191), +(212991, 'Jean', 2012, 'M', 190), +(212992, 'Maxx', 2012, 'M', 190), +(212993, 'Briar', 2012, 'M', 189), +(212994, 'Marley', 2012, 'M', 189), +(212995, 'Jaydan', 2012, 'M', 188), +(212996, 'Jericho', 2012, 'M', 188), +(212997, 'Kyran', 2012, 'M', 188), +(212998, 'Rocky', 2012, 'M', 188), +(212999, 'Brantlee', 2012, 'M', 187), +(213000, 'Kamren', 2012, 'M', 187), +(213001, 'Yadiel', 2012, 'M', 187), +(213002, 'Braylin', 2012, 'M', 186), +(213003, 'Cristiano', 2012, 'M', 186), +(213004, 'Dilan', 2012, 'M', 186), +(213005, 'Lachlan', 2012, 'M', 186), +(213006, 'Grey', 2012, 'M', 185), +(213007, 'Elvis', 2012, 'M', 184), +(213008, 'Gionni', 2012, 'M', 184), +(213009, 'Leighton', 2012, 'M', 184), +(213010, 'Bishop', 2012, 'M', 183), +(213011, 'Kaidyn', 2012, 'M', 183), +(213012, 'Leeland', 2012, 'M', 182), +(213013, 'Tyrese', 2012, 'M', 182), +(213014, 'Coen', 2012, 'M', 181), +(213015, 'Jayceon', 2012, 'M', 181), +(213016, 'Kooper', 2012, 'M', 181), +(213017, 'Thatcher', 2012, 'M', 181), +(213018, 'Ares', 2012, 'M', 180), +(213019, 'Brayson', 2012, 'M', 180), +(213020, 'Korbyn', 2012, 'M', 180), +(213021, 'Otis', 2012, 'M', 180), +(213022, 'Ralph', 2012, 'M', 180), +(213023, 'Glenn', 2012, 'M', 179), +(213024, 'Jeremias', 2012, 'M', 179), +(213025, 'Mariano', 2012, 'M', 179), +(213026, 'Miller', 2012, 'M', 179), +(213027, 'Trayvon', 2012, 'M', 179), +(213028, 'Avi', 2012, 'M', 178), +(213029, 'Brysen', 2012, 'M', 178), +(213030, 'Judson', 2012, 'M', 178), +(213031, 'Leif', 2012, 'M', 178), +(213032, 'Eddy', 2012, 'M', 177), +(213033, 'Harlan', 2012, 'M', 177), +(213034, 'Corban', 2012, 'M', 176), +(213035, 'Jordy', 2012, 'M', 176), +(213036, 'Nigel', 2012, 'M', 176), +(213037, 'Aven', 2012, 'M', 175), +(213038, 'Aarush', 2012, 'M', 174), +(213039, 'Carlo', 2012, 'M', 174), +(213040, 'Gannon', 2012, 'M', 174), +(213041, 'Khalid', 2012, 'M', 174), +(213042, 'Zackery', 2012, 'M', 174), +(213043, 'Daylen', 2012, 'M', 173), +(213044, 'Jaron', 2012, 'M', 173), +(213045, 'Kadyn', 2012, 'M', 173), +(213046, 'Koen', 2012, 'M', 173), +(213047, 'Taj', 2012, 'M', 173), +(213048, 'Azariah', 2012, 'M', 172), +(213049, 'Canaan', 2012, 'M', 172), +(213050, 'Jesiah', 2012, 'M', 172), +(213051, 'Kannon', 2012, 'M', 172), +(213052, 'Kiyan', 2012, 'M', 172), +(213053, 'Devyn', 2012, 'M', 171), +(213054, 'Gerard', 2012, 'M', 171), +(213055, 'Humberto', 2012, 'M', 171), +(213056, 'Keller', 2012, 'M', 171), +(213057, 'Keyon', 2012, 'M', 171), +(213058, 'Dashawn', 2012, 'M', 170), +(213059, 'Ethen', 2012, 'M', 170), +(213060, 'Ford', 2012, 'M', 170), +(213061, 'Zack', 2012, 'M', 170), +(213062, 'Zaden', 2012, 'M', 170), +(213063, 'Addison', 2012, 'M', 169), +(213064, 'Haiden', 2012, 'M', 169), +(213065, 'Kyan', 2012, 'M', 169), +(213066, 'Kyron', 2012, 'M', 169), +(213067, 'Langston', 2012, 'M', 169), +(213068, 'Menachem', 2012, 'M', 169), +(213069, 'Shiloh', 2012, 'M', 169), +(213070, 'Vivaan', 2012, 'M', 169), +(213071, 'Jaquan', 2012, 'M', 168), +(213072, 'Milton', 2012, 'M', 168), +(213073, 'Musa', 2012, 'M', 168), +(213074, 'Ulysses', 2012, 'M', 167), +(213075, 'Benicio', 2012, 'M', 166), +(213076, 'Drayden', 2012, 'M', 166), +(213077, 'Josh', 2012, 'M', 166), +(213078, 'Alton', 2012, 'M', 165), +(213079, 'Bode', 2012, 'M', 165), +(213080, 'German', 2012, 'M', 165), +(213081, 'Aedan', 2012, 'M', 164), +(213082, 'Carsen', 2012, 'M', 164), +(213083, 'Deklan', 2012, 'M', 164), +(213084, 'Jaydin', 2012, 'M', 164), +(213085, 'Shimon', 2012, 'M', 164), +(213086, 'Stetson', 2012, 'M', 164), +(213087, 'Armaan', 2012, 'M', 163), +(213088, 'Cormac', 2012, 'M', 163), +(213089, 'Dale', 2012, 'M', 163), +(213090, 'Mikael', 2012, 'M', 163), +(213091, 'Yair', 2012, 'M', 163), +(213092, 'Kennedy', 2012, 'M', 162), +(213093, 'Kenton', 2012, 'M', 162), +(213094, 'Nathen', 2012, 'M', 162), +(213095, 'Rayyan', 2012, 'M', 162), +(213096, 'Santana', 2012, 'M', 162), +(213097, 'Dhruv', 2012, 'M', 161), +(213098, 'Isaak', 2012, 'M', 161), +(213099, 'Jerimiah', 2012, 'M', 161), +(213100, 'Jovan', 2012, 'M', 161), +(213101, 'Karl', 2012, 'M', 161), +(213102, 'Lucien', 2012, 'M', 161), +(213103, 'Magnus', 2012, 'M', 161), +(213104, 'Maksim', 2012, 'M', 161), +(213105, 'Pranav', 2012, 'M', 161), +(213106, 'Sutton', 2012, 'M', 161), +(213107, 'Baron', 2012, 'M', 160), +(213108, 'Coy', 2012, 'M', 160), +(213109, 'Duke', 2012, 'M', 160), +(213110, 'Haven', 2012, 'M', 160), +(213111, 'Jakobe', 2012, 'M', 160), +(213112, 'Treyvon', 2012, 'M', 160), +(213113, 'Anson', 2012, 'M', 159), +(213114, 'Boden', 2012, 'M', 159), +(213115, 'Chevy', 2012, 'M', 159), +(213116, 'Jordon', 2012, 'M', 159), +(213117, 'Lamont', 2012, 'M', 159), +(213118, 'Damani', 2012, 'M', 158), +(213119, 'Dion', 2012, 'M', 158), +(213120, 'Emmet', 2012, 'M', 158), +(213121, 'Nikhil', 2012, 'M', 158), +(213122, 'Octavio', 2012, 'M', 158), +(213123, 'Yahya', 2012, 'M', 158), +(213124, 'Zyaire', 2012, 'M', 158), +(213125, 'Adolfo', 2012, 'M', 157), +(213126, 'Brighton', 2012, 'M', 157), +(213127, 'Clyde', 2012, 'M', 157), +(213128, 'Jaleel', 2012, 'M', 157), +(213129, 'Mikel', 2012, 'M', 157), +(213130, 'Nick', 2012, 'M', 157), +(213131, 'Antony', 2012, 'M', 156), +(213132, 'Aston', 2012, 'M', 156), +(213133, 'Estevan', 2012, 'M', 156), +(213134, 'Jovanny', 2012, 'M', 156), +(213135, 'Abner', 2012, 'M', 155), +(213136, 'Adler', 2012, 'M', 155), +(213137, 'Bilal', 2012, 'M', 155), +(213138, 'Corbyn', 2012, 'M', 155), +(213139, 'Emir', 2012, 'M', 155), +(213140, 'Karim', 2012, 'M', 155), +(213141, 'Norman', 2012, 'M', 155), +(213142, 'Siddharth', 2012, 'M', 155), +(213143, 'Yaakov', 2012, 'M', 155), +(213144, 'Coby', 2012, 'M', 154), +(213145, 'Kye', 2012, 'M', 154), +(213146, 'Lathan', 2012, 'M', 154), +(213147, 'Forrest', 2012, 'M', 153), +(213148, 'Jayvon', 2012, 'M', 153), +(213149, 'Marquise', 2012, 'M', 153), +(213150, 'Reyansh', 2012, 'M', 153), +(213151, 'Aubrey', 2012, 'M', 152), +(213152, 'Cristobal', 2012, 'M', 152), +(213153, 'Kalel', 2012, 'M', 152), +(213154, 'Aleksander', 2012, 'M', 151), +(213155, 'Andreas', 2012, 'M', 151), +(213156, 'Cornelius', 2012, 'M', 151), +(213157, 'Keanu', 2012, 'M', 151), +(213158, 'Milan', 2012, 'M', 151), +(213159, 'Vince', 2012, 'M', 151), +(213160, 'Colter', 2012, 'M', 150), +(213161, 'Demarion', 2012, 'M', 150), +(213162, 'Jet', 2012, 'M', 150), +(213163, 'Lochlan', 2012, 'M', 150), +(213164, 'Zev', 2012, 'M', 150), +(213165, 'Zyon', 2012, 'M', 150), +(213166, 'Braedyn', 2012, 'M', 149), +(213167, 'Campbell', 2012, 'M', 149), +(213168, 'Ira', 2012, 'M', 149), +(213169, 'Kaison', 2012, 'M', 149), +(213170, 'Reilly', 2012, 'M', 149), +(213171, 'Torin', 2012, 'M', 149), +(213172, 'Bernard', 2012, 'M', 148), +(213173, 'Dillan', 2012, 'M', 148), +(213174, 'Talan', 2012, 'M', 148), +(213175, 'Achilles', 2012, 'M', 147), +(213176, 'Damoni', 2012, 'M', 147), +(213177, 'Kadin', 2012, 'M', 147), +(213178, 'Mac', 2012, 'M', 147), +(213179, 'Maddux', 2012, 'M', 147), +(213180, 'Shmuel', 2012, 'M', 147), +(213181, 'Vladimir', 2012, 'M', 147), +(213182, 'Zavion', 2012, 'M', 147), +(213183, 'Dash', 2012, 'M', 146), +(213184, 'Slade', 2012, 'M', 146), +(213185, 'Youssef', 2012, 'M', 146), +(213186, 'Colson', 2012, 'M', 145), +(213187, 'Geovanni', 2012, 'M', 145), +(213188, 'Ridge', 2012, 'M', 145), +(213189, 'Amar', 2012, 'M', 144), +(213190, 'Cristofer', 2012, 'M', 144), +(213191, 'Destin', 2012, 'M', 144), +(213192, 'Domenic', 2012, 'M', 144), +(213193, 'Elvin', 2012, 'M', 144), +(213194, 'Izaac', 2012, 'M', 144), +(213195, 'Jamarcus', 2012, 'M', 144), +(213196, 'Jaxsen', 2012, 'M', 144), +(213197, 'Perry', 2012, 'M', 144), +(213198, 'Shlomo', 2012, 'M', 144), +(213199, 'Jacobi', 2012, 'M', 143), +(213200, 'Kasey', 2012, 'M', 143), +(213201, 'Louie', 2012, 'M', 143), +(213202, 'Merrick', 2012, 'M', 143), +(213203, 'Ronaldo', 2012, 'M', 143), +(213204, 'Trevin', 2012, 'M', 143), +(213205, 'Cian', 2012, 'M', 142), +(213206, 'Guy', 2012, 'M', 142), +(213207, 'Landin', 2012, 'M', 142), +(213208, 'Amarion', 2012, 'M', 141), +(213209, 'Elmer', 2012, 'M', 141), +(213210, 'Gianluca', 2012, 'M', 141), +(213211, 'Jaedyn', 2012, 'M', 141), +(213212, 'Jai', 2012, 'M', 141), +(213213, 'Jarvis', 2012, 'M', 141), +(213214, 'Marcello', 2012, 'M', 141), +(213215, 'Ryley', 2012, 'M', 141), +(213216, 'Stephan', 2012, 'M', 141), +(213217, 'Yitzchok', 2012, 'M', 141), +(213218, 'Antwan', 2012, 'M', 140), +(213219, 'Ewan', 2012, 'M', 140), +(213220, 'Henrik', 2012, 'M', 140), +(213221, 'Javian', 2012, 'M', 140), +(213222, 'Joan', 2012, 'M', 140), +(213223, 'Linus', 2012, 'M', 140), +(213224, 'Savion', 2012, 'M', 140), +(213225, 'Syed', 2012, 'M', 140), +(213226, 'Westley', 2012, 'M', 140), +(213227, 'Dakari', 2012, 'M', 139), +(213228, 'Harris', 2012, 'M', 139), +(213229, 'Jamel', 2012, 'M', 139), +(213230, 'Maximillian', 2012, 'M', 139), +(213231, 'Mikah', 2012, 'M', 139), +(213232, 'Shamar', 2012, 'M', 139), +(213233, 'Stone', 2012, 'M', 139), +(213234, 'Aayden', 2012, 'M', 138), +(213235, 'Ansh', 2012, 'M', 138), +(213236, 'Clifford', 2012, 'M', 138), +(213237, 'Idris', 2012, 'M', 138), +(213238, 'Maddex', 2012, 'M', 138), +(213239, 'Reynaldo', 2012, 'M', 138), +(213240, 'Tobin', 2012, 'M', 138), +(213241, 'Veer', 2012, 'M', 138), +(213242, 'Bodie', 2012, 'M', 137), +(213243, 'Denver', 2012, 'M', 137), +(213244, 'Emmit', 2012, 'M', 137), +(213245, 'Kyren', 2012, 'M', 137), +(213246, 'Austen', 2012, 'M', 136), +(213247, 'Courtney', 2012, 'M', 136), +(213248, 'Deion', 2012, 'M', 136), +(213249, 'Dwight', 2012, 'M', 136), +(213250, 'Edmund', 2012, 'M', 136), +(213251, 'Jaziel', 2012, 'M', 136), +(213252, 'Kenyon', 2012, 'M', 136), +(213253, 'Oskar', 2012, 'M', 136), +(213254, 'Yeshua', 2012, 'M', 136), +(213255, 'Zahir', 2012, 'M', 136), +(213256, 'Alexavier', 2012, 'M', 135), +(213257, 'Gonzalo', 2012, 'M', 135), +(213258, 'Kain', 2012, 'M', 135), +(213259, 'Terence', 2012, 'M', 135), +(213260, 'Alek', 2012, 'M', 134), +(213261, 'Avraham', 2012, 'M', 134), +(213262, 'Benny', 2012, 'M', 134), +(213263, 'Dereck', 2012, 'M', 133), +(213264, 'Diesel', 2012, 'M', 133), +(213265, 'Imran', 2012, 'M', 133), +(213266, 'Pierson', 2012, 'M', 133), +(213267, 'Presley', 2012, 'M', 133), +(213268, 'Eamon', 2012, 'M', 132), +(213269, 'Lyle', 2012, 'M', 132), +(213270, 'Tyce', 2012, 'M', 132), +(213271, 'Arman', 2012, 'M', 131), +(213272, 'Ely', 2012, 'M', 131), +(213273, 'Koda', 2012, 'M', 131), +(213274, 'Nikko', 2012, 'M', 131), +(213275, 'Tayden', 2012, 'M', 131), +(213276, 'Zayn', 2012, 'M', 131), +(213277, 'Devonte', 2012, 'M', 130), +(213278, 'Elan', 2012, 'M', 130), +(213279, 'Tevin', 2012, 'M', 130), +(213280, 'Aydenn', 2012, 'M', 129), +(213281, 'Braxtyn', 2012, 'M', 129), +(213282, 'Brigham', 2012, 'M', 129), +(213283, 'Carmello', 2012, 'M', 129), +(213284, 'Clifton', 2012, 'M', 129), +(213285, 'Kayleb', 2012, 'M', 129), +(213286, 'Korey', 2012, 'M', 129), +(213287, 'Oren', 2012, 'M', 129), +(213288, 'Rishi', 2012, 'M', 129), +(213289, 'Ryu', 2012, 'M', 129), +(213290, 'Ajay', 2012, 'M', 128), +(213291, 'Boone', 2012, 'M', 128), +(213292, 'Braedon', 2012, 'M', 128), +(213293, 'Coltyn', 2012, 'M', 128), +(213294, 'Duane', 2012, 'M', 128), +(213295, 'Jencarlos', 2012, 'M', 128), +(213296, 'Zakary', 2012, 'M', 128), +(213297, 'Anakin', 2012, 'M', 127), +(213298, 'Anish', 2012, 'M', 127), +(213299, 'Bryton', 2012, 'M', 127), +(213300, 'Eason', 2012, 'M', 127), +(213301, 'Ever', 2012, 'M', 127), +(213302, 'Filip', 2012, 'M', 127), +(213303, 'Finnian', 2012, 'M', 127), +(213304, 'Ishmael', 2012, 'M', 127), +(213305, 'Jakari', 2012, 'M', 127), +(213306, 'Lloyd', 2012, 'M', 127), +(213307, 'Raheem', 2012, 'M', 127), +(213308, 'Rigoberto', 2012, 'M', 127), +(213309, 'Shea', 2012, 'M', 127), +(213310, 'Blayne', 2012, 'M', 126), +(213311, 'Carmine', 2012, 'M', 126), +(213312, 'Hagen', 2012, 'M', 126), +(213313, 'Kalvin', 2012, 'M', 126), +(213314, 'Keshawn', 2012, 'M', 126), +(213315, 'Mccoy', 2012, 'M', 126), +(213316, 'Alistair', 2012, 'M', 125), +(213317, 'Coltin', 2012, 'M', 125), +(213318, 'Eliel', 2012, 'M', 125), +(213319, 'Jaxx', 2012, 'M', 125), +(213320, 'Meir', 2012, 'M', 125), +(213321, 'Viktor', 2012, 'M', 125), +(213322, 'Denis', 2012, 'M', 124), +(213323, 'Fredrick', 2012, 'M', 124), +(213324, 'Izaak', 2012, 'M', 124), +(213325, 'Jovany', 2012, 'M', 124), +(213326, 'Kenji', 2012, 'M', 124), +(213327, 'Mikhail', 2012, 'M', 124), +(213328, 'Sami', 2012, 'M', 124), +(213329, 'Stephon', 2012, 'M', 124), +(213330, 'Athan', 2012, 'M', 123), +(213331, 'Castiel', 2012, 'M', 123), +(213332, 'Earl', 2012, 'M', 123), +(213333, 'Elyjah', 2012, 'M', 123), +(213334, 'Hasan', 2012, 'M', 123), +(213335, 'Javen', 2012, 'M', 123), +(213336, 'Rian', 2012, 'M', 123), +(213337, 'Zayd', 2012, 'M', 123), +(213338, 'Alexandre', 2012, 'M', 122), +(213339, 'Atreyu', 2012, 'M', 122), +(213340, 'Beck', 2012, 'M', 122), +(213341, 'Carsten', 2012, 'M', 122), +(213342, 'Chaz', 2012, 'M', 122), +(213343, 'Gus', 2012, 'M', 122), +(213344, 'Jariel', 2012, 'M', 122), +(213345, 'Tyshawn', 2012, 'M', 122), +(213346, 'Bailey', 2012, 'M', 121), +(213347, 'Donavan', 2012, 'M', 121), +(213348, 'Finnley', 2012, 'M', 121), +(213349, 'Jaxxon', 2012, 'M', 121), +(213350, 'Johnpaul', 2012, 'M', 121), +(213351, 'Massimo', 2012, 'M', 121), +(213352, 'Demari', 2012, 'M', 120), +(213353, 'Gaven', 2012, 'M', 120), +(213354, 'Gray', 2012, 'M', 120), +(213355, 'Kallen', 2012, 'M', 120), +(213356, 'Maddix', 2012, 'M', 120), +(213357, 'Sammy', 2012, 'M', 120), +(213358, 'Zamir', 2012, 'M', 120), +(213359, 'Atlas', 2012, 'M', 119), +(213360, 'Brandt', 2012, 'M', 119), +(213361, 'Desean', 2012, 'M', 119), +(213362, 'Dev', 2012, 'M', 119), +(213363, 'Eian', 2012, 'M', 119), +(213364, 'Francesco', 2012, 'M', 119), +(213365, 'Geoffrey', 2012, 'M', 119), +(213366, 'Kiran', 2012, 'M', 119), +(213367, 'Lenny', 2012, 'M', 119), +(213368, 'Lyndon', 2012, 'M', 119), +(213369, 'Masyn', 2012, 'M', 119), +(213370, 'Syncere', 2012, 'M', 119), +(213371, 'Ayan', 2012, 'M', 118), +(213372, 'Bernardo', 2012, 'M', 118), +(213373, 'Jacen', 2012, 'M', 118), +(213374, 'Juancarlos', 2012, 'M', 118), +(213375, 'Koa', 2012, 'M', 118), +(213376, 'Ruger', 2012, 'M', 118), +(213377, 'Tristyn', 2012, 'M', 118), +(213378, 'Canon', 2012, 'M', 117), +(213379, 'Carsyn', 2012, 'M', 117), +(213380, 'Dezmond', 2012, 'M', 117), +(213381, 'Greysen', 2012, 'M', 117), +(213382, 'Jad', 2012, 'M', 117), +(213383, 'Jullian', 2012, 'M', 117), +(213384, 'Lucius', 2012, 'M', 117), +(213385, 'Nazir', 2012, 'M', 117), +(213386, 'Noble', 2012, 'M', 117), +(213387, 'Ryden', 2012, 'M', 117), +(213388, 'Tylan', 2012, 'M', 117), +(213389, 'Abdul', 2012, 'M', 116), +(213390, 'Alexandro', 2012, 'M', 116), +(213391, 'Amani', 2012, 'M', 116), +(213392, 'Brennon', 2012, 'M', 116), +(213393, 'Chayse', 2012, 'M', 116), +(213394, 'Creed', 2012, 'M', 116), +(213395, 'Donnie', 2012, 'M', 116), +(213396, 'Ismail', 2012, 'M', 116), +(213397, 'Korben', 2012, 'M', 116), +(213398, 'Landan', 2012, 'M', 116), +(213399, 'Sebastien', 2012, 'M', 116), +(213400, 'Aamir', 2012, 'M', 115), +(213401, 'Britton', 2012, 'M', 115), +(213402, 'Dewayne', 2012, 'M', 115), +(213403, 'Gatlin', 2012, 'M', 115), +(213404, 'Guadalupe', 2012, 'M', 115), +(213405, 'Nestor', 2012, 'M', 115), +(213406, 'Tariq', 2012, 'M', 115), +(213407, 'Tiago', 2012, 'M', 115), +(213408, 'Vernon', 2012, 'M', 115), +(213409, 'Yaseen', 2012, 'M', 115), +(213410, 'Zephaniah', 2012, 'M', 115), +(213411, 'Emil', 2012, 'M', 114), +(213412, 'Gian', 2012, 'M', 114), +(213413, 'Irving', 2012, 'M', 114), +(213414, 'Jackie', 2012, 'M', 114), +(213415, 'Jayven', 2012, 'M', 114), +(213416, 'Jermiah', 2012, 'M', 114), +(213417, 'Kamarion', 2012, 'M', 114), +(213418, 'Kent', 2012, 'M', 114), +(213419, 'Lonnie', 2012, 'M', 114), +(213420, 'Palmer', 2012, 'M', 114), +(213421, 'Treyson', 2012, 'M', 114), +(213422, 'Barry', 2012, 'M', 113), +(213423, 'Dallin', 2012, 'M', 113), +(213424, 'Darion', 2012, 'M', 113), +(213425, 'Myron', 2012, 'M', 113), +(213426, 'Canyon', 2012, 'M', 111), +(213427, 'Jenson', 2012, 'M', 111), +(213428, 'Keelan', 2012, 'M', 111), +(213429, 'Treyton', 2012, 'M', 111), +(213430, 'Wiley', 2012, 'M', 111), +(213431, 'Bronx', 2012, 'M', 110), +(213432, 'Clint', 2012, 'M', 110), +(213433, 'Freddie', 2012, 'M', 110), +(213434, 'Geovanny', 2012, 'M', 110), +(213435, 'Grayden', 2012, 'M', 110), +(213436, 'Hollis', 2012, 'M', 110), +(213437, 'Jayse', 2012, 'M', 110), +(213438, 'Tremaine', 2012, 'M', 110), +(213439, 'Zaylen', 2012, 'M', 110), +(213440, 'Cordell', 2012, 'M', 109), +(213441, 'Cy', 2012, 'M', 109), +(213442, 'Eliyahu', 2012, 'M', 109), +(213443, 'Isa', 2012, 'M', 109), +(213444, 'Jahmir', 2012, 'M', 109), +(213445, 'Markell', 2012, 'M', 109), +(213446, 'Sabastian', 2012, 'M', 109), +(213447, 'Yariel', 2012, 'M', 109), +(213448, 'Braulio', 2012, 'M', 108), +(213449, 'Brently', 2012, 'M', 108), +(213450, 'Bryden', 2012, 'M', 108), +(213451, 'Dandre', 2012, 'M', 108), +(213452, 'Garret', 2012, 'M', 108), +(213453, 'Karsten', 2012, 'M', 108), +(213454, 'Khristian', 2012, 'M', 108), +(213455, 'Kurt', 2012, 'M', 108), +(213456, 'Leyton', 2012, 'M', 108), +(213457, 'Marion', 2012, 'M', 108), +(213458, 'Rowdy', 2012, 'M', 108), +(213459, 'Taven', 2012, 'M', 108), +(213460, 'Aries', 2012, 'M', 107), +(213461, 'Bradlee', 2012, 'M', 107), +(213462, 'Dontae', 2012, 'M', 107), +(213463, 'Eleazar', 2012, 'M', 107), +(213464, 'Fredy', 2012, 'M', 107), +(213465, 'Jan', 2012, 'M', 107), +(213466, 'Jaysen', 2012, 'M', 107), +(213467, 'Johnnie', 2012, 'M', 107), +(213468, 'Josias', 2012, 'M', 107), +(213469, 'Ken', 2012, 'M', 107), +(213470, 'Miguelangel', 2012, 'M', 107), +(213471, 'Rico', 2012, 'M', 107), +(213472, 'Yerik', 2012, 'M', 107), +(213473, 'Zayvion', 2012, 'M', 107), +(213474, 'Ammon', 2012, 'M', 106), +(213475, 'Constantine', 2012, 'M', 106), +(213476, 'Ervin', 2012, 'M', 106), +(213477, 'Jakub', 2012, 'M', 106), +(213478, 'Jamil', 2012, 'M', 106), +(213479, 'Karsyn', 2012, 'M', 106), +(213480, 'Latrell', 2012, 'M', 106), +(213481, 'Markel', 2012, 'M', 106), +(213482, 'Abdulrahman', 2012, 'M', 105), +(213483, 'Akeem', 2012, 'M', 105), +(213484, 'Ayush', 2012, 'M', 105), +(213485, 'Benito', 2012, 'M', 105), +(213486, 'Brayton', 2012, 'M', 105), +(213487, 'Cairo', 2012, 'M', 105), +(213488, 'Dan', 2012, 'M', 105), +(213489, 'Demetri', 2012, 'M', 105), +(213490, 'Kayne', 2012, 'M', 105), +(213491, 'Kelly', 2012, 'M', 105), +(213492, 'Neal', 2012, 'M', 105), +(213493, 'Noam', 2012, 'M', 105), +(213494, 'Tahj', 2012, 'M', 105), +(213495, 'Fred', 2012, 'M', 104), +(213496, 'Hyrum', 2012, 'M', 104), +(213497, 'Nevin', 2012, 'M', 104), +(213498, 'Phineas', 2012, 'M', 104), +(213499, 'Robin', 2012, 'M', 104), +(213500, 'Tegan', 2012, 'M', 104), +(213501, 'Thor', 2012, 'M', 104), +(213502, 'Wallace', 2012, 'M', 104), +(213503, 'Westyn', 2012, 'M', 104), +(213504, 'Adin', 2012, 'M', 103), +(213505, 'Brant', 2012, 'M', 103), +(213506, 'Deshaun', 2012, 'M', 103), +(213507, 'Kenan', 2012, 'M', 103), +(213508, 'Koby', 2012, 'M', 103), +(213509, 'Kolt', 2012, 'M', 103), +(213510, 'Nate', 2012, 'M', 103), +(213511, 'Ronny', 2012, 'M', 103), +(213512, 'Yakov', 2012, 'M', 103), +(213513, 'Amauri', 2012, 'M', 102), +(213514, 'Axl', 2012, 'M', 102), +(213515, 'Carver', 2012, 'M', 102), +(213516, 'Jaylan', 2012, 'M', 102), +(213517, 'Kollin', 2012, 'M', 102), +(213518, 'Lester', 2012, 'M', 102), +(213519, 'Marques', 2012, 'M', 102), +(213520, 'Marquez', 2012, 'M', 102), +(213521, 'Nikola', 2012, 'M', 102), +(213522, 'Om', 2012, 'M', 102), +(213523, 'Raylen', 2012, 'M', 102), +(213524, 'Yoel', 2012, 'M', 102), +(213525, 'Abdirahman', 2012, 'M', 101), +(213526, 'Adiel', 2012, 'M', 101), +(213527, 'Gabe', 2012, 'M', 101), +(213528, 'Gerson', 2012, 'M', 101), +(213529, 'Isael', 2012, 'M', 101), +(213530, 'Jadyn', 2012, 'M', 101), +(213531, 'Laith', 2012, 'M', 101), +(213532, 'Mohamad', 2012, 'M', 101), +(213533, 'Ramsey', 2012, 'M', 101), +(213534, 'Shayne', 2012, 'M', 101), +(213535, 'Shepherd', 2012, 'M', 101), +(213536, 'Theron', 2012, 'M', 101), +(213537, 'Ahmir', 2012, 'M', 100), +(213538, 'Cam', 2012, 'M', 100), +(213539, 'Carlton', 2012, 'M', 100), +(213540, 'Demario', 2012, 'M', 100), +(213541, 'Deonte', 2012, 'M', 100), +(213542, 'Eben', 2012, 'M', 100), +(213543, 'Kruz', 2012, 'M', 100), +(213544, 'Kurtis', 2012, 'M', 100), +(213545, 'Marko', 2012, 'M', 100), +(213546, 'Micaiah', 2012, 'M', 100), +(213547, 'Rio', 2012, 'M', 100), +(213548, 'Rogan', 2012, 'M', 100), +(213549, 'Sophia', 2013, 'F', 21147), +(213550, 'Emma', 2013, 'F', 20876), +(213551, 'Olivia', 2013, 'F', 18366), +(213552, 'Isabella', 2013, 'F', 17573), +(213553, 'Ava', 2013, 'F', 15211), +(213554, 'Mia', 2013, 'F', 13111), +(213555, 'Emily', 2013, 'F', 13090), +(213556, 'Abigail', 2013, 'F', 12362), +(213557, 'Madison', 2013, 'F', 10565), +(213558, 'Elizabeth', 2013, 'F', 9413), +(213559, 'Charlotte', 2013, 'F', 9274), +(213560, 'Avery', 2013, 'F', 9162), +(213561, 'Sofia', 2013, 'F', 9137), +(213562, 'Chloe', 2013, 'F', 8745), +(213563, 'Ella', 2013, 'F', 8413), +(213564, 'Harper', 2013, 'F', 8268), +(213565, 'Amelia', 2013, 'F', 8016), +(213566, 'Aubrey', 2013, 'F', 7943), +(213567, 'Addison', 2013, 'F', 7712), +(213568, 'Evelyn', 2013, 'F', 7647), +(213569, 'Natalie', 2013, 'F', 7459), +(213570, 'Grace', 2013, 'F', 7345), +(213571, 'Hannah', 2013, 'F', 7260), +(213572, 'Zoey', 2013, 'F', 7210), +(213573, 'Victoria', 2013, 'F', 7184), +(213574, 'Lillian', 2013, 'F', 7060), +(213575, 'Lily', 2013, 'F', 6971), +(213576, 'Brooklyn', 2013, 'F', 6863), +(213577, 'Samantha', 2013, 'F', 6490), +(213578, 'Layla', 2013, 'F', 6465), +(213579, 'Zoe', 2013, 'F', 5957), +(213580, 'Leah', 2013, 'F', 5590), +(213581, 'Audrey', 2013, 'F', 5581), +(213582, 'Allison', 2013, 'F', 5425), +(213583, 'Anna', 2013, 'F', 5352), +(213584, 'Savannah', 2013, 'F', 5222), +(213585, 'Aaliyah', 2013, 'F', 5213), +(213586, 'Gabriella', 2013, 'F', 5197), +(213587, 'Camila', 2013, 'F', 5141), +(213588, 'Aria', 2013, 'F', 5104), +(213589, 'Kaylee', 2013, 'F', 5101), +(213590, 'Scarlett', 2013, 'F', 5047), +(213591, 'Hailey', 2013, 'F', 5007), +(213592, 'Arianna', 2013, 'F', 4982), +(213593, 'Riley', 2013, 'F', 4921), +(213594, 'Alexis', 2013, 'F', 4756), +(213595, 'Nevaeh', 2013, 'F', 4744), +(213596, 'Sarah', 2013, 'F', 4675), +(213597, 'Claire', 2013, 'F', 4651), +(213598, 'Sadie', 2013, 'F', 4639), +(213599, 'Peyton', 2013, 'F', 4553), +(213600, 'Aubree', 2013, 'F', 4431), +(213601, 'Serenity', 2013, 'F', 4423), +(213602, 'Ariana', 2013, 'F', 4396), +(213603, 'Genesis', 2013, 'F', 4291), +(213604, 'Penelope', 2013, 'F', 4277), +(213605, 'Alyssa', 2013, 'F', 4185), +(213606, 'Bella', 2013, 'F', 4154), +(213607, 'Taylor', 2013, 'F', 4125), +(213608, 'Alexa', 2013, 'F', 4092), +(213609, 'Kylie', 2013, 'F', 4014), +(213610, 'Mackenzie', 2013, 'F', 4008), +(213611, 'Caroline', 2013, 'F', 3970), +(213612, 'Kennedy', 2013, 'F', 3949), +(213613, 'Autumn', 2013, 'F', 3943), +(213614, 'Lucy', 2013, 'F', 3939), +(213615, 'Ashley', 2013, 'F', 3930), +(213616, 'Madelyn', 2013, 'F', 3923), +(213617, 'Violet', 2013, 'F', 3918), +(213618, 'Stella', 2013, 'F', 3897), +(213619, 'Brianna', 2013, 'F', 3884), +(213620, 'Maya', 2013, 'F', 3807), +(213621, 'Skylar', 2013, 'F', 3775), +(213622, 'Ellie', 2013, 'F', 3753), +(213623, 'Julia', 2013, 'F', 3738), +(213624, 'Sophie', 2013, 'F', 3733), +(213625, 'Katherine', 2013, 'F', 3707), +(213626, 'Mila', 2013, 'F', 3672), +(213627, 'Khloe', 2013, 'F', 3664), +(213628, 'Paisley', 2013, 'F', 3595), +(213629, 'Annabelle', 2013, 'F', 3533), +(213630, 'Nora', 2013, 'F', 3502), +(213631, 'Alexandra', 2013, 'F', 3501), +(213632, 'Melanie', 2013, 'F', 3464), +(213633, 'London', 2013, 'F', 3443), +(213634, 'Gianna', 2013, 'F', 3430), +(213635, 'Naomi', 2013, 'F', 3429), +(213636, 'Eva', 2013, 'F', 3416), +(213637, 'Faith', 2013, 'F', 3380), +(213638, 'Madeline', 2013, 'F', 3364), +(213639, 'Lauren', 2013, 'F', 3341), +(213640, 'Nicole', 2013, 'F', 3338), +(213641, 'Ruby', 2013, 'F', 3298), +(213642, 'Makayla', 2013, 'F', 3270), +(213643, 'Kayla', 2013, 'F', 3248), +(213644, 'Lydia', 2013, 'F', 3241), +(213645, 'Piper', 2013, 'F', 3174), +(213646, 'Sydney', 2013, 'F', 3165), +(213647, 'Jocelyn', 2013, 'F', 3142), +(213648, 'Morgan', 2013, 'F', 3107), +(213649, 'Kimberly', 2013, 'F', 3090), +(213650, 'Molly', 2013, 'F', 3074), +(213651, 'Jasmine', 2013, 'F', 3041), +(213652, 'Reagan', 2013, 'F', 3033), +(213653, 'Bailey', 2013, 'F', 3003), +(213654, 'Eleanor', 2013, 'F', 3002), +(213655, 'Alice', 2013, 'F', 2928), +(213656, 'Trinity', 2013, 'F', 2905), +(213657, 'Rylee', 2013, 'F', 2890), +(213658, 'Hadley', 2013, 'F', 2822), +(213659, 'Andrea', 2013, 'F', 2813), +(213660, 'Maria', 2013, 'F', 2805), +(213661, 'Brooke', 2013, 'F', 2744), +(213662, 'Isabelle', 2013, 'F', 2744), +(213663, 'Mariah', 2013, 'F', 2742), +(213664, 'Mya', 2013, 'F', 2684), +(213665, 'Brielle', 2013, 'F', 2682), +(213666, 'Quinn', 2013, 'F', 2643), +(213667, 'Vivian', 2013, 'F', 2642), +(213668, 'Mary', 2013, 'F', 2632), +(213669, 'Natalia', 2013, 'F', 2627), +(213670, 'Payton', 2013, 'F', 2607), +(213671, 'Liliana', 2013, 'F', 2606), +(213672, 'Lilly', 2013, 'F', 2600), +(213673, 'Eliana', 2013, 'F', 2596), +(213674, 'Cora', 2013, 'F', 2581), +(213675, 'Jade', 2013, 'F', 2578), +(213676, 'Paige', 2013, 'F', 2573), +(213677, 'Valentina', 2013, 'F', 2556), +(213678, 'Kendall', 2013, 'F', 2509), +(213679, 'Clara', 2013, 'F', 2499), +(213680, 'Elena', 2013, 'F', 2381), +(213681, 'Jordyn', 2013, 'F', 2376), +(213682, 'Kaitlyn', 2013, 'F', 2369), +(213683, 'Delilah', 2013, 'F', 2336), +(213684, 'Isabel', 2013, 'F', 2330), +(213685, 'Rachel', 2013, 'F', 2300), +(213686, 'Destiny', 2013, 'F', 2291), +(213687, 'Amy', 2013, 'F', 2230), +(213688, 'Gabrielle', 2013, 'F', 2206), +(213689, 'Mckenzie', 2013, 'F', 2202), +(213690, 'Brooklynn', 2013, 'F', 2149), +(213691, 'Katelyn', 2013, 'F', 2141), +(213692, 'Laila', 2013, 'F', 2134), +(213693, 'Ariel', 2013, 'F', 2125), +(213694, 'Aurora', 2013, 'F', 2120), +(213695, 'Angelina', 2013, 'F', 2107), +(213696, 'Aliyah', 2013, 'F', 2099), +(213697, 'Juliana', 2013, 'F', 2092), +(213698, 'Ivy', 2013, 'F', 2091), +(213699, 'Adriana', 2013, 'F', 2087), +(213700, 'Vanessa', 2013, 'F', 2087), +(213701, 'Lyla', 2013, 'F', 2076), +(213702, 'Sara', 2013, 'F', 2073), +(213703, 'Willow', 2013, 'F', 2070), +(213704, 'Reese', 2013, 'F', 2060), +(213705, 'Hazel', 2013, 'F', 2049), +(213706, 'Eden', 2013, 'F', 2036), +(213707, 'Elise', 2013, 'F', 2011), +(213708, 'Josephine', 2013, 'F', 2004), +(213709, 'Kinsley', 2013, 'F', 1972), +(213710, 'Ximena', 2013, 'F', 1956), +(213711, 'Jessica', 2013, 'F', 1945), +(213712, 'Londyn', 2013, 'F', 1942), +(213713, 'Makenzie', 2013, 'F', 1933), +(213714, 'Gracie', 2013, 'F', 1932), +(213715, 'Isla', 2013, 'F', 1908), +(213716, 'Michelle', 2013, 'F', 1886), +(213717, 'Valerie', 2013, 'F', 1872), +(213718, 'Catherine', 2013, 'F', 1858), +(213719, 'Kylee', 2013, 'F', 1854), +(213720, 'Melody', 2013, 'F', 1849), +(213721, 'Adalynn', 2013, 'F', 1841), +(213722, 'Jayla', 2013, 'F', 1828), +(213723, 'Alexia', 2013, 'F', 1820), +(213724, 'Valeria', 2013, 'F', 1815), +(213725, 'Rebecca', 2013, 'F', 1785), +(213726, 'Adalyn', 2013, 'F', 1776), +(213727, 'Izabella', 2013, 'F', 1776), +(213728, 'Margaret', 2013, 'F', 1765), +(213729, 'Alaina', 2013, 'F', 1752), +(213730, 'Alana', 2013, 'F', 1750), +(213731, 'Alivia', 2013, 'F', 1739), +(213732, 'Luna', 2013, 'F', 1739), +(213733, 'Kate', 2013, 'F', 1736), +(213734, 'Kendra', 2013, 'F', 1720), +(213735, 'Norah', 2013, 'F', 1720), +(213736, 'Summer', 2013, 'F', 1719), +(213737, 'Ryleigh', 2013, 'F', 1714), +(213738, 'Julianna', 2013, 'F', 1693), +(213739, 'Lila', 2013, 'F', 1693), +(213740, 'Jennifer', 2013, 'F', 1688), +(213741, 'Hayden', 2013, 'F', 1677), +(213742, 'Emery', 2013, 'F', 1671), +(213743, 'Stephanie', 2013, 'F', 1669), +(213744, 'Angela', 2013, 'F', 1636), +(213745, 'Fiona', 2013, 'F', 1636), +(213746, 'Presley', 2013, 'F', 1626), +(213747, 'Daisy', 2013, 'F', 1625), +(213748, 'Eliza', 2013, 'F', 1615), +(213749, 'Harmony', 2013, 'F', 1610), +(213750, 'Melissa', 2013, 'F', 1587), +(213751, 'Keira', 2013, 'F', 1567), +(213752, 'Giselle', 2013, 'F', 1561), +(213753, 'Emilia', 2013, 'F', 1558), +(213754, 'Kinley', 2013, 'F', 1558), +(213755, 'Alayna', 2013, 'F', 1557), +(213756, 'Alexandria', 2013, 'F', 1555), +(213757, 'Marley', 2013, 'F', 1526), +(213758, 'Emerson', 2013, 'F', 1523), +(213759, 'Arabella', 2013, 'F', 1521), +(213760, 'Adelyn', 2013, 'F', 1501), +(213761, 'Lola', 2013, 'F', 1489), +(213762, 'Brynn', 2013, 'F', 1482), +(213763, 'Leila', 2013, 'F', 1465), +(213764, 'Mckenna', 2013, 'F', 1465), +(213765, 'Aniyah', 2013, 'F', 1459), +(213766, 'Genevieve', 2013, 'F', 1457), +(213767, 'Allie', 2013, 'F', 1454), +(213768, 'Athena', 2013, 'F', 1450), +(213769, 'Gabriela', 2013, 'F', 1440), +(213770, 'Daniela', 2013, 'F', 1437), +(213771, 'Cecilia', 2013, 'F', 1432), +(213772, 'Esther', 2013, 'F', 1426), +(213773, 'Rose', 2013, 'F', 1419), +(213774, 'Callie', 2013, 'F', 1414), +(213775, 'Adrianna', 2013, 'F', 1411), +(213776, 'Jenna', 2013, 'F', 1410), +(213777, 'Haley', 2013, 'F', 1402), +(213778, 'Leilani', 2013, 'F', 1386), +(213779, 'Maggie', 2013, 'F', 1380), +(213780, 'Hope', 2013, 'F', 1378), +(213781, 'Adeline', 2013, 'F', 1374), +(213782, 'Jaylah', 2013, 'F', 1363), +(213783, 'Amaya', 2013, 'F', 1357), +(213784, 'Ana', 2013, 'F', 1336), +(213785, 'Maci', 2013, 'F', 1333), +(213786, 'Juliet', 2013, 'F', 1327), +(213787, 'Jacqueline', 2013, 'F', 1324), +(213788, 'Lucia', 2013, 'F', 1322), +(213789, 'Charlie', 2013, 'F', 1321), +(213790, 'Camille', 2013, 'F', 1320), +(213791, 'Tessa', 2013, 'F', 1318), +(213792, 'Katie', 2013, 'F', 1311), +(213793, 'Miranda', 2013, 'F', 1296), +(213794, 'Lexi', 2013, 'F', 1287), +(213795, 'Makenna', 2013, 'F', 1287), +(213796, 'Jada', 2013, 'F', 1285), +(213797, 'Delaney', 2013, 'F', 1273), +(213798, 'Cassidy', 2013, 'F', 1270), +(213799, 'Alina', 2013, 'F', 1259), +(213800, 'Georgia', 2013, 'F', 1259), +(213801, 'Iris', 2013, 'F', 1248); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(213802, 'Megan', 2013, 'F', 1241), +(213803, 'Anastasia', 2013, 'F', 1236), +(213804, 'Ashlyn', 2013, 'F', 1235), +(213805, 'Danielle', 2013, 'F', 1233), +(213806, 'Kenzie', 2013, 'F', 1233), +(213807, 'Paris', 2013, 'F', 1233), +(213808, 'Shelby', 2013, 'F', 1232), +(213809, 'Jordan', 2013, 'F', 1230), +(213810, 'Lilliana', 2013, 'F', 1223), +(213811, 'Sienna', 2013, 'F', 1220), +(213812, 'Teagan', 2013, 'F', 1216), +(213813, 'Josie', 2013, 'F', 1214), +(213814, 'Angel', 2013, 'F', 1212), +(213815, 'Parker', 2013, 'F', 1200), +(213816, 'Mikayla', 2013, 'F', 1195), +(213817, 'Brynlee', 2013, 'F', 1182), +(213818, 'Kathryn', 2013, 'F', 1175), +(213819, 'Diana', 2013, 'F', 1174), +(213820, 'Chelsea', 2013, 'F', 1172), +(213821, 'Annabella', 2013, 'F', 1164), +(213822, 'Erin', 2013, 'F', 1163), +(213823, 'Kaydence', 2013, 'F', 1162), +(213824, 'Lyric', 2013, 'F', 1161), +(213825, 'Madeleine', 2013, 'F', 1142), +(213826, 'Arya', 2013, 'F', 1137), +(213827, 'Kayleigh', 2013, 'F', 1129), +(213828, 'Vivienne', 2013, 'F', 1128), +(213829, 'Sabrina', 2013, 'F', 1123), +(213830, 'Cali', 2013, 'F', 1121), +(213831, 'Raelynn', 2013, 'F', 1113), +(213832, 'Leslie', 2013, 'F', 1111), +(213833, 'Amber', 2013, 'F', 1108), +(213834, 'Nina', 2013, 'F', 1108), +(213835, 'Kyleigh', 2013, 'F', 1106), +(213836, 'Ayla', 2013, 'F', 1103), +(213837, 'Miriam', 2013, 'F', 1096), +(213838, 'Daniella', 2013, 'F', 1094), +(213839, 'Olive', 2013, 'F', 1094), +(213840, 'Finley', 2013, 'F', 1093), +(213841, 'Elliana', 2013, 'F', 1078), +(213842, 'Dakota', 2013, 'F', 1077), +(213843, 'Juliette', 2013, 'F', 1076), +(213844, 'Noelle', 2013, 'F', 1073), +(213845, 'Alison', 2013, 'F', 1066), +(213846, 'Evangeline', 2013, 'F', 1065), +(213847, 'Amanda', 2013, 'F', 1064), +(213848, 'Alessandra', 2013, 'F', 1063), +(213849, 'Phoebe', 2013, 'F', 1058), +(213850, 'Christina', 2013, 'F', 1055), +(213851, 'Bianca', 2013, 'F', 1053), +(213852, 'Yaretzi', 2013, 'F', 1047), +(213853, 'Lilah', 2013, 'F', 1045), +(213854, 'Kelsey', 2013, 'F', 1044), +(213855, 'Raegan', 2013, 'F', 1043), +(213856, 'Fatima', 2013, 'F', 1037), +(213857, 'Kiara', 2013, 'F', 1035), +(213858, 'Elaina', 2013, 'F', 1031), +(213859, 'Cadence', 2013, 'F', 1030), +(213860, 'Addyson', 2013, 'F', 1028), +(213861, 'Nyla', 2013, 'F', 1025), +(213862, 'Gemma', 2013, 'F', 1019), +(213863, 'Alondra', 2013, 'F', 1018), +(213864, 'Giuliana', 2013, 'F', 1018), +(213865, 'Kyla', 2013, 'F', 1018), +(213866, 'Alicia', 2013, 'F', 1017), +(213867, 'Ashlynn', 2013, 'F', 1016), +(213868, 'Laura', 2013, 'F', 1016), +(213869, 'Adelaide', 2013, 'F', 1015), +(213870, 'Carly', 2013, 'F', 1015), +(213871, 'Allyson', 2013, 'F', 1006), +(213872, 'Nadia', 2013, 'F', 993), +(213873, 'Charlee', 2013, 'F', 992), +(213874, 'Heaven', 2013, 'F', 987), +(213875, 'Mallory', 2013, 'F', 987), +(213876, 'Cheyenne', 2013, 'F', 979), +(213877, 'Ruth', 2013, 'F', 979), +(213878, 'Tatum', 2013, 'F', 979), +(213879, 'Lena', 2013, 'F', 974), +(213880, 'Ainsley', 2013, 'F', 968), +(213881, 'Amiyah', 2013, 'F', 966), +(213882, 'Malia', 2013, 'F', 958), +(213883, 'Veronica', 2013, 'F', 954), +(213884, 'Eloise', 2013, 'F', 952), +(213885, 'Journey', 2013, 'F', 952), +(213886, 'Myla', 2013, 'F', 948), +(213887, 'Haylee', 2013, 'F', 947), +(213888, 'Mariana', 2013, 'F', 947), +(213889, 'Madilyn', 2013, 'F', 943), +(213890, 'Jillian', 2013, 'F', 942), +(213891, 'Joanna', 2013, 'F', 942), +(213892, 'Baylee', 2013, 'F', 935), +(213893, 'Sierra', 2013, 'F', 935), +(213894, 'Selena', 2013, 'F', 934), +(213895, 'Briella', 2013, 'F', 931), +(213896, 'Gia', 2013, 'F', 929), +(213897, 'Rosalie', 2013, 'F', 928), +(213898, 'Briana', 2013, 'F', 912), +(213899, 'Talia', 2013, 'F', 906), +(213900, 'Abby', 2013, 'F', 902), +(213901, 'Heidi', 2013, 'F', 899), +(213902, 'Jane', 2013, 'F', 898), +(213903, 'Annie', 2013, 'F', 895), +(213904, 'Maddison', 2013, 'F', 893), +(213905, 'Kira', 2013, 'F', 891), +(213906, 'Carmen', 2013, 'F', 877), +(213907, 'Harley', 2013, 'F', 875), +(213908, 'Lucille', 2013, 'F', 872), +(213909, 'Macy', 2013, 'F', 870), +(213910, 'Skyler', 2013, 'F', 868), +(213911, 'Kali', 2013, 'F', 867), +(213912, 'June', 2013, 'F', 864), +(213913, 'Elsie', 2013, 'F', 855), +(213914, 'Kamila', 2013, 'F', 850), +(213915, 'Arielle', 2013, 'F', 849), +(213916, 'Adelynn', 2013, 'F', 847), +(213917, 'Kelly', 2013, 'F', 847), +(213918, 'Haven', 2013, 'F', 843), +(213919, 'Scarlet', 2013, 'F', 843), +(213920, 'Rylie', 2013, 'F', 842), +(213921, 'Marilyn', 2013, 'F', 834), +(213922, 'Kara', 2013, 'F', 831), +(213923, 'Kamryn', 2013, 'F', 829), +(213924, 'Aubrie', 2013, 'F', 828), +(213925, 'Hanna', 2013, 'F', 815), +(213926, 'Marissa', 2013, 'F', 814), +(213927, 'Averie', 2013, 'F', 812), +(213928, 'Everly', 2013, 'F', 812), +(213929, 'Jayda', 2013, 'F', 808), +(213930, 'Jazmine', 2013, 'F', 808), +(213931, 'Camryn', 2013, 'F', 805), +(213932, 'Jazmin', 2013, 'F', 805), +(213933, 'Lia', 2013, 'F', 805), +(213934, 'Karina', 2013, 'F', 799), +(213935, 'Bethany', 2013, 'F', 798), +(213936, 'Miley', 2013, 'F', 797), +(213937, 'Maliyah', 2013, 'F', 794), +(213938, 'Mckinley', 2013, 'F', 790), +(213939, 'Jayleen', 2013, 'F', 789), +(213940, 'Macie', 2013, 'F', 787), +(213941, 'Esmeralda', 2013, 'F', 784), +(213942, 'Aleah', 2013, 'F', 775), +(213943, 'Catalina', 2013, 'F', 775), +(213944, 'Janelle', 2013, 'F', 775), +(213945, 'Daphne', 2013, 'F', 774), +(213946, 'Nayeli', 2013, 'F', 772), +(213947, 'Camilla', 2013, 'F', 766), +(213948, 'Kyra', 2013, 'F', 763), +(213949, 'Madelynn', 2013, 'F', 763), +(213950, 'Julie', 2013, 'F', 761), +(213951, 'Addisyn', 2013, 'F', 759), +(213952, 'Aylin', 2013, 'F', 757), +(213953, 'Sloane', 2013, 'F', 755), +(213954, 'Caitlyn', 2013, 'F', 753), +(213955, 'Elle', 2013, 'F', 747), +(213956, 'Gracelyn', 2013, 'F', 746), +(213957, 'Michaela', 2013, 'F', 740), +(213958, 'Serena', 2013, 'F', 740), +(213959, 'Helen', 2013, 'F', 738), +(213960, 'Angelica', 2013, 'F', 732), +(213961, 'Lana', 2013, 'F', 732), +(213962, 'Nylah', 2013, 'F', 732), +(213963, 'Raelyn', 2013, 'F', 731), +(213964, 'Karen', 2013, 'F', 729), +(213965, 'Bristol', 2013, 'F', 725), +(213966, 'Emely', 2013, 'F', 725), +(213967, 'Sarai', 2013, 'F', 723), +(213968, 'Alejandra', 2013, 'F', 722), +(213969, 'Vera', 2013, 'F', 719), +(213970, 'Brittany', 2013, 'F', 718), +(213971, 'April', 2013, 'F', 716), +(213972, 'Francesca', 2013, 'F', 716), +(213973, 'Skye', 2013, 'F', 712), +(213974, 'Rowan', 2013, 'F', 711), +(213975, 'Logan', 2013, 'F', 706), +(213976, 'Kassidy', 2013, 'F', 705), +(213977, 'Sasha', 2013, 'F', 705), +(213978, 'Ariella', 2013, 'F', 704), +(213979, 'Miracle', 2013, 'F', 704), +(213980, 'Carolina', 2013, 'F', 703), +(213981, 'Tiffany', 2013, 'F', 702), +(213982, 'Justice', 2013, 'F', 701), +(213983, 'Itzel', 2013, 'F', 699), +(213984, 'Ada', 2013, 'F', 698), +(213985, 'Brylee', 2013, 'F', 698), +(213986, 'Dahlia', 2013, 'F', 693), +(213987, 'Jazlyn', 2013, 'F', 693), +(213988, 'Julissa', 2013, 'F', 693), +(213989, 'Jayden', 2013, 'F', 691), +(213990, 'Kaelyn', 2013, 'F', 690), +(213991, 'Savanna', 2013, 'F', 689), +(213992, 'Anya', 2013, 'F', 688), +(213993, 'Kennedi', 2013, 'F', 688), +(213994, 'Viviana', 2013, 'F', 688), +(213995, 'Cataleya', 2013, 'F', 685), +(213996, 'Sawyer', 2013, 'F', 685), +(213997, 'Holly', 2013, 'F', 682), +(213998, 'Kaylie', 2013, 'F', 681), +(213999, 'Blakely', 2013, 'F', 680), +(214000, 'Kailey', 2013, 'F', 669), +(214001, 'Melany', 2013, 'F', 669), +(214002, 'Jimena', 2013, 'F', 668), +(214003, 'Annalise', 2013, 'F', 665), +(214004, 'Emmalyn', 2013, 'F', 664), +(214005, 'Guadalupe', 2013, 'F', 664), +(214006, 'Sage', 2013, 'F', 663), +(214007, 'Anabelle', 2013, 'F', 662), +(214008, 'Amira', 2013, 'F', 661), +(214009, 'Cassandra', 2013, 'F', 661), +(214010, 'Kaylin', 2013, 'F', 660), +(214011, 'Madisyn', 2013, 'F', 660), +(214012, 'Crystal', 2013, 'F', 658), +(214013, 'Elisa', 2013, 'F', 655), +(214014, 'Rebekah', 2013, 'F', 654), +(214015, 'Lacey', 2013, 'F', 653), +(214016, 'Caitlin', 2013, 'F', 652), +(214017, 'Celeste', 2013, 'F', 652), +(214018, 'Danna', 2013, 'F', 650), +(214019, 'Gwendolyn', 2013, 'F', 649), +(214020, 'Marlee', 2013, 'F', 648), +(214021, 'Joselyn', 2013, 'F', 647), +(214022, 'Karla', 2013, 'F', 646), +(214023, 'Joy', 2013, 'F', 644), +(214024, 'Audrina', 2013, 'F', 638), +(214025, 'Janiyah', 2013, 'F', 638), +(214026, 'Anaya', 2013, 'F', 637), +(214027, 'Malaysia', 2013, 'F', 632), +(214028, 'Annabel', 2013, 'F', 629), +(214029, 'Kadence', 2013, 'F', 628), +(214030, 'Zara', 2013, 'F', 627), +(214031, 'Priscilla', 2013, 'F', 624), +(214032, 'Maeve', 2013, 'F', 623), +(214033, 'Imani', 2013, 'F', 622), +(214034, 'Phoenix', 2013, 'F', 617), +(214035, 'Aspen', 2013, 'F', 615), +(214036, 'Katelynn', 2013, 'F', 614), +(214037, 'Dylan', 2013, 'F', 611), +(214038, 'Eve', 2013, 'F', 609), +(214039, 'Jamie', 2013, 'F', 607), +(214040, 'Kailyn', 2013, 'F', 606), +(214041, 'Lexie', 2013, 'F', 606), +(214042, 'Jaliyah', 2013, 'F', 605), +(214043, 'Lilian', 2013, 'F', 603), +(214044, 'Braelyn', 2013, 'F', 601), +(214045, 'Lauryn', 2013, 'F', 601), +(214046, 'Angie', 2013, 'F', 600), +(214047, 'Cynthia', 2013, 'F', 600), +(214048, 'Lorelei', 2013, 'F', 598), +(214049, 'Alanna', 2013, 'F', 595), +(214050, 'Emersyn', 2013, 'F', 595), +(214051, 'Monica', 2013, 'F', 595), +(214052, 'Brinley', 2013, 'F', 593), +(214053, 'Sylvia', 2013, 'F', 592), +(214054, 'Nia', 2013, 'F', 591), +(214055, 'Journee', 2013, 'F', 590), +(214056, 'Aniya', 2013, 'F', 586), +(214057, 'Breanna', 2013, 'F', 586), +(214058, 'Fernanda', 2013, 'F', 585), +(214059, 'Lillie', 2013, 'F', 581), +(214060, 'Amari', 2013, 'F', 577), +(214061, 'Charley', 2013, 'F', 577), +(214062, 'Lilyana', 2013, 'F', 574), +(214063, 'Raven', 2013, 'F', 573), +(214064, 'Kaliyah', 2013, 'F', 572), +(214065, 'Luciana', 2013, 'F', 572), +(214066, 'Anne', 2013, 'F', 571), +(214067, 'Emilee', 2013, 'F', 571), +(214068, 'Hallie', 2013, 'F', 570), +(214069, 'Bailee', 2013, 'F', 569), +(214070, 'Gloria', 2013, 'F', 568), +(214071, 'Zariah', 2013, 'F', 568), +(214072, 'Annika', 2013, 'F', 567), +(214073, 'Zuri', 2013, 'F', 566), +(214074, 'Madilynn', 2013, 'F', 565), +(214075, 'Bridget', 2013, 'F', 564), +(214076, 'Elsa', 2013, 'F', 564), +(214077, 'Nova', 2013, 'F', 562), +(214078, 'Johanna', 2013, 'F', 560), +(214079, 'Liberty', 2013, 'F', 559), +(214080, 'Rosemary', 2013, 'F', 559), +(214081, 'Kiley', 2013, 'F', 558), +(214082, 'Aleena', 2013, 'F', 554), +(214083, 'Courtney', 2013, 'F', 553), +(214084, 'Aryanna', 2013, 'F', 552), +(214085, 'Madalyn', 2013, 'F', 551), +(214086, 'Tatiana', 2013, 'F', 550), +(214087, 'Angelique', 2013, 'F', 548), +(214088, 'Kenley', 2013, 'F', 548), +(214089, 'Selah', 2013, 'F', 547), +(214090, 'Leighton', 2013, 'F', 546), +(214091, 'Harlow', 2013, 'F', 545), +(214092, 'Skyla', 2013, 'F', 545), +(214093, 'Hayley', 2013, 'F', 544), +(214094, 'Dayana', 2013, 'F', 542), +(214095, 'Tiana', 2013, 'F', 541), +(214096, 'Evelynn', 2013, 'F', 539), +(214097, 'Helena', 2013, 'F', 539), +(214098, 'Blake', 2013, 'F', 536), +(214099, 'Virginia', 2013, 'F', 536), +(214100, 'Cecelia', 2013, 'F', 534), +(214101, 'Nathalie', 2013, 'F', 528), +(214102, 'Jaycee', 2013, 'F', 523), +(214103, 'Danica', 2013, 'F', 522), +(214104, 'Ember', 2013, 'F', 522), +(214105, 'Anika', 2013, 'F', 521), +(214106, 'Dulce', 2013, 'F', 521), +(214107, 'Evie', 2013, 'F', 520), +(214108, 'Gracelynn', 2013, 'F', 520), +(214109, 'Erica', 2013, 'F', 518), +(214110, 'Emilie', 2013, 'F', 517), +(214111, 'Tenley', 2013, 'F', 516), +(214112, 'Anabella', 2013, 'F', 513), +(214113, 'Liana', 2013, 'F', 512), +(214114, 'Braylee', 2013, 'F', 510), +(214115, 'Cameron', 2013, 'F', 508), +(214116, 'Aisha', 2013, 'F', 507), +(214117, 'Charleigh', 2013, 'F', 507), +(214118, 'Hattie', 2013, 'F', 507), +(214119, 'Leia', 2013, 'F', 507), +(214120, 'Marie', 2013, 'F', 504), +(214121, 'Lindsey', 2013, 'F', 502), +(214122, 'Regina', 2013, 'F', 501), +(214123, 'Isis', 2013, 'F', 500), +(214124, 'Alyson', 2013, 'F', 497), +(214125, 'Felicity', 2013, 'F', 496), +(214126, 'Amara', 2013, 'F', 495), +(214127, 'Elyse', 2013, 'F', 495), +(214128, 'Anahi', 2013, 'F', 494), +(214129, 'Jaelyn', 2013, 'F', 493), +(214130, 'Natasha', 2013, 'F', 491), +(214131, 'Samara', 2013, 'F', 490), +(214132, 'Lainey', 2013, 'F', 487), +(214133, 'Daleyza', 2013, 'F', 485), +(214134, 'Beatrice', 2013, 'F', 484), +(214135, 'Miah', 2013, 'F', 483), +(214136, 'River', 2013, 'F', 483), +(214137, 'Melina', 2013, 'F', 482), +(214138, 'Whitney', 2013, 'F', 480), +(214139, 'Amani', 2013, 'F', 479), +(214140, 'Jessie', 2013, 'F', 479), +(214141, 'Aileen', 2013, 'F', 478), +(214142, 'Greta', 2013, 'F', 477), +(214143, 'Millie', 2013, 'F', 477), +(214144, 'Milan', 2013, 'F', 475), +(214145, 'Caylee', 2013, 'F', 474), +(214146, 'Jaelynn', 2013, 'F', 474), +(214147, 'Lea', 2013, 'F', 470), +(214148, 'Marina', 2013, 'F', 470), +(214149, 'Kenya', 2013, 'F', 468), +(214150, 'Kaylynn', 2013, 'F', 466), +(214151, 'Amelie', 2013, 'F', 462), +(214152, 'Kaia', 2013, 'F', 462), +(214153, 'Mariam', 2013, 'F', 462), +(214154, 'Maleah', 2013, 'F', 460), +(214155, 'Elisabeth', 2013, 'F', 459), +(214156, 'Colette', 2013, 'F', 458), +(214157, 'Ally', 2013, 'F', 457), +(214158, 'Dallas', 2013, 'F', 457), +(214159, 'Karlee', 2013, 'F', 457), +(214160, 'Alayah', 2013, 'F', 456), +(214161, 'Erika', 2013, 'F', 455), +(214162, 'Farrah', 2013, 'F', 452), +(214163, 'Alani', 2013, 'F', 451), +(214164, 'Mikaela', 2013, 'F', 451), +(214165, 'Adelina', 2013, 'F', 450), +(214166, 'Madalynn', 2013, 'F', 449), +(214167, 'Bria', 2013, 'F', 448), +(214168, 'Jaylynn', 2013, 'F', 447), +(214169, 'Kiera', 2013, 'F', 447), +(214170, 'Amina', 2013, 'F', 446), +(214171, 'Cara', 2013, 'F', 446), +(214172, 'Desiree', 2013, 'F', 446), +(214173, 'Leyla', 2013, 'F', 446), +(214174, 'Paislee', 2013, 'F', 446), +(214175, 'Laylah', 2013, 'F', 445), +(214176, 'Nataly', 2013, 'F', 445), +(214177, 'Braelynn', 2013, 'F', 444), +(214178, 'Azalea', 2013, 'F', 443), +(214179, 'Malaya', 2013, 'F', 443), +(214180, 'Shiloh', 2013, 'F', 443), +(214181, 'Kensley', 2013, 'F', 441), +(214182, 'Adele', 2013, 'F', 440), +(214183, 'Lylah', 2013, 'F', 440), +(214184, 'Addilyn', 2013, 'F', 439), +(214185, 'Amya', 2013, 'F', 439), +(214186, 'Brenda', 2013, 'F', 439), +(214187, 'Linda', 2013, 'F', 439), +(214188, 'Amiya', 2013, 'F', 438), +(214189, 'Ryan', 2013, 'F', 438), +(214190, 'Emelia', 2013, 'F', 437), +(214191, 'Juniper', 2013, 'F', 437), +(214192, 'Maia', 2013, 'F', 437), +(214193, 'Irene', 2013, 'F', 436), +(214194, 'Jasmin', 2013, 'F', 436), +(214195, 'Matilda', 2013, 'F', 436), +(214196, 'Ciara', 2013, 'F', 435), +(214197, 'Saige', 2013, 'F', 435), +(214198, 'Emmy', 2013, 'F', 434), +(214199, 'Myah', 2013, 'F', 434), +(214200, 'Teresa', 2013, 'F', 434), +(214201, 'Jaylee', 2013, 'F', 433), +(214202, 'Claudia', 2013, 'F', 432), +(214203, 'Rosa', 2013, 'F', 432), +(214204, 'Estrella', 2013, 'F', 431), +(214205, 'Jemma', 2013, 'F', 431), +(214206, 'Kathleen', 2013, 'F', 431), +(214207, 'Meredith', 2013, 'F', 431), +(214208, 'Mira', 2013, 'F', 431), +(214209, 'Yareli', 2013, 'F', 431), +(214210, 'Zoie', 2013, 'F', 430), +(214211, 'Kimber', 2013, 'F', 429), +(214212, 'Madyson', 2013, 'F', 428), +(214213, 'Maryam', 2013, 'F', 428), +(214214, 'Paityn', 2013, 'F', 427), +(214215, 'Winter', 2013, 'F', 425), +(214216, 'Isabela', 2013, 'F', 424), +(214217, 'Sariah', 2013, 'F', 424), +(214218, 'Paola', 2013, 'F', 423), +(214219, 'Perla', 2013, 'F', 423), +(214220, 'Sherlyn', 2013, 'F', 423), +(214221, 'Pearl', 2013, 'F', 422), +(214222, 'Shayla', 2013, 'F', 422), +(214223, 'Simone', 2013, 'F', 422), +(214224, 'Mae', 2013, 'F', 419), +(214225, 'Patricia', 2013, 'F', 418), +(214226, 'Ansley', 2013, 'F', 417), +(214227, 'Laney', 2013, 'F', 416), +(214228, 'Aliana', 2013, 'F', 414), +(214229, 'Brenna', 2013, 'F', 414), +(214230, 'Jazlynn', 2013, 'F', 414), +(214231, 'Armani', 2013, 'F', 411), +(214232, 'Natalee', 2013, 'F', 411), +(214233, 'Giana', 2013, 'F', 410), +(214234, 'Lailah', 2013, 'F', 410), +(214235, 'Lindsay', 2013, 'F', 410), +(214236, 'Siena', 2013, 'F', 410), +(214237, 'Nancy', 2013, 'F', 409), +(214238, 'Raquel', 2013, 'F', 408), +(214239, 'Lilianna', 2013, 'F', 406), +(214240, 'Willa', 2013, 'F', 405), +(214241, 'Frances', 2013, 'F', 404), +(214242, 'Halle', 2013, 'F', 404), +(214243, 'Janessa', 2013, 'F', 404), +(214244, 'Chaya', 2013, 'F', 403), +(214245, 'Kynlee', 2013, 'F', 403), +(214246, 'Ellen', 2013, 'F', 402), +(214247, 'Leanna', 2013, 'F', 402), +(214248, 'Tori', 2013, 'F', 401), +(214249, 'Bryanna', 2013, 'F', 399), +(214250, 'Elianna', 2013, 'F', 398), +(214251, 'Alma', 2013, 'F', 397), +(214252, 'Christine', 2013, 'F', 396), +(214253, 'Lizbeth', 2013, 'F', 396), +(214254, 'Wendy', 2013, 'F', 394), +(214255, 'Clarissa', 2013, 'F', 393), +(214256, 'Kassandra', 2013, 'F', 393), +(214257, 'Mabel', 2013, 'F', 393), +(214258, 'Mollie', 2013, 'F', 390), +(214259, 'Charli', 2013, 'F', 388), +(214260, 'Coraline', 2013, 'F', 387), +(214261, 'Diamond', 2013, 'F', 387), +(214262, 'Kristen', 2013, 'F', 386), +(214263, 'Ariah', 2013, 'F', 385), +(214264, 'Edith', 2013, 'F', 385), +(214265, 'Mckayla', 2013, 'F', 385), +(214266, 'Arely', 2013, 'F', 383), +(214267, 'Blair', 2013, 'F', 382), +(214268, 'Joslyn', 2013, 'F', 382), +(214269, 'Chanel', 2013, 'F', 381), +(214270, 'Jaylene', 2013, 'F', 381), +(214271, 'Hailee', 2013, 'F', 380), +(214272, 'Alia', 2013, 'F', 377), +(214273, 'Casey', 2013, 'F', 377), +(214274, 'Clare', 2013, 'F', 376), +(214275, 'Reyna', 2013, 'F', 375), +(214276, 'Aiyana', 2013, 'F', 373), +(214277, 'Averi', 2013, 'F', 372), +(214278, 'Dana', 2013, 'F', 372), +(214279, 'Alena', 2013, 'F', 371), +(214280, 'Alissa', 2013, 'F', 371), +(214281, 'Demi', 2013, 'F', 371), +(214282, 'Leona', 2013, 'F', 371), +(214283, 'Taryn', 2013, 'F', 370), +(214284, 'Kallie', 2013, 'F', 369), +(214285, 'Corinne', 2013, 'F', 368), +(214286, 'Kailee', 2013, 'F', 367), +(214287, 'Karsyn', 2013, 'F', 367), +(214288, 'Asia', 2013, 'F', 365), +(214289, 'Jaylin', 2013, 'F', 365), +(214290, 'Noemi', 2013, 'F', 365), +(214291, 'Rayna', 2013, 'F', 365), +(214292, 'Abbigail', 2013, 'F', 363), +(214293, 'Mara', 2013, 'F', 363), +(214294, 'Carlee', 2013, 'F', 362), +(214295, 'Livia', 2013, 'F', 361), +(214296, 'Lillianna', 2013, 'F', 360), +(214297, 'Aryana', 2013, 'F', 359), +(214298, 'Ayleen', 2013, 'F', 359), +(214299, 'Danika', 2013, 'F', 359), +(214300, 'Eileen', 2013, 'F', 359), +(214301, 'Mina', 2013, 'F', 359), +(214302, 'Hadassah', 2013, 'F', 358), +(214303, 'Kayden', 2013, 'F', 357), +(214304, 'Paloma', 2013, 'F', 357), +(214305, 'Aimee', 2013, 'F', 356), +(214306, 'Aliya', 2013, 'F', 356), +(214307, 'Elaine', 2013, 'F', 356), +(214308, 'Kaya', 2013, 'F', 356), +(214309, 'Briley', 2013, 'F', 355), +(214310, 'Denise', 2013, 'F', 355), +(214311, 'Kora', 2013, 'F', 355), +(214312, 'Sandra', 2013, 'F', 355), +(214313, 'Monroe', 2013, 'F', 354), +(214314, 'Tabitha', 2013, 'F', 354), +(214315, 'Celia', 2013, 'F', 353), +(214316, 'Hana', 2013, 'F', 353), +(214317, 'Kristina', 2013, 'F', 353), +(214318, 'Jolie', 2013, 'F', 352), +(214319, 'Chana', 2013, 'F', 351), +(214320, 'Lisa', 2013, 'F', 351), +(214321, 'Myra', 2013, 'F', 351), +(214322, 'Emmalee', 2013, 'F', 350), +(214323, 'Milana', 2013, 'F', 350), +(214324, 'Renata', 2013, 'F', 349), +(214325, 'Adrienne', 2013, 'F', 348), +(214326, 'Nola', 2013, 'F', 348), +(214327, 'Zariyah', 2013, 'F', 348), +(214328, 'America', 2013, 'F', 347), +(214329, 'Zaniyah', 2013, 'F', 347), +(214330, 'Jaida', 2013, 'F', 346), +(214331, 'Mariyah', 2013, 'F', 346), +(214332, 'Celine', 2013, 'F', 345), +(214333, 'Cherish', 2013, 'F', 345), +(214334, 'Iliana', 2013, 'F', 345), +(214335, 'Janiya', 2013, 'F', 345), +(214336, 'Kimora', 2013, 'F', 345), +(214337, 'Avah', 2013, 'F', 344), +(214338, 'Carolyn', 2013, 'F', 343), +(214339, 'Marisol', 2013, 'F', 343), +(214340, 'Cindy', 2013, 'F', 342), +(214341, 'Maliah', 2013, 'F', 341), +(214342, 'Kiana', 2013, 'F', 339), +(214343, 'Galilea', 2013, 'F', 338), +(214344, 'Jocelynn', 2013, 'F', 338), +(214345, 'Milania', 2013, 'F', 338), +(214346, 'Alaya', 2013, 'F', 337), +(214347, 'Emory', 2013, 'F', 337), +(214348, 'Bryn', 2013, 'F', 336), +(214349, 'Lorelai', 2013, 'F', 336), +(214350, 'Martha', 2013, 'F', 336), +(214351, 'Wren', 2013, 'F', 336), +(214352, 'Yamileth', 2013, 'F', 336), +(214353, 'Jenny', 2013, 'F', 335), +(214354, 'Keyla', 2013, 'F', 334), +(214355, 'Dorothy', 2013, 'F', 333), +(214356, 'Jordynn', 2013, 'F', 333), +(214357, 'Alyvia', 2013, 'F', 332), +(214358, 'Amirah', 2013, 'F', 332), +(214359, 'Aubrianna', 2013, 'F', 331), +(214360, 'Nathaly', 2013, 'F', 331), +(214361, 'Zaria', 2013, 'F', 331), +(214362, 'Taliyah', 2013, 'F', 330), +(214363, 'Deborah', 2013, 'F', 329), +(214364, 'Rylan', 2013, 'F', 329), +(214365, 'Yasmin', 2013, 'F', 329), +(214366, 'Elin', 2013, 'F', 328), +(214367, 'Joyce', 2013, 'F', 327), +(214368, 'Roselyn', 2013, 'F', 327), +(214369, 'Julianne', 2013, 'F', 326), +(214370, 'Zion', 2013, 'F', 326), +(214371, 'Ivanna', 2013, 'F', 323), +(214372, 'Salma', 2013, 'F', 323), +(214373, 'Janae', 2013, 'F', 322), +(214374, 'Paulina', 2013, 'F', 322), +(214375, 'Saniyah', 2013, 'F', 322), +(214376, 'Aubrielle', 2013, 'F', 321), +(214377, 'Ayanna', 2013, 'F', 321), +(214378, 'Lilith', 2013, 'F', 321), +(214379, 'Aurelia', 2013, 'F', 318), +(214380, 'Henley', 2013, 'F', 317), +(214381, 'Sutton', 2013, 'F', 316), +(214382, 'Heather', 2013, 'F', 314), +(214383, 'Susan', 2013, 'F', 314), +(214384, 'Barbara', 2013, 'F', 313), +(214385, 'Lesly', 2013, 'F', 313), +(214386, 'Remi', 2013, 'F', 313), +(214387, 'Britney', 2013, 'F', 312), +(214388, 'Emmalynn', 2013, 'F', 311), +(214389, 'Bryleigh', 2013, 'F', 310), +(214390, 'Elliot', 2013, 'F', 310), +(214391, 'Kaitlynn', 2013, 'F', 310), +(214392, 'Milena', 2013, 'F', 309), +(214393, 'Kyndall', 2013, 'F', 307), +(214394, 'Mercy', 2013, 'F', 307), +(214395, 'Paula', 2013, 'F', 307), +(214396, 'Ariyah', 2013, 'F', 306), +(214397, 'Thalia', 2013, 'F', 305), +(214398, 'Aubri', 2013, 'F', 303), +(214399, 'Kaleigh', 2013, 'F', 303), +(214400, 'Tegan', 2013, 'F', 302), +(214401, 'Angeline', 2013, 'F', 301), +(214402, 'Lina', 2013, 'F', 301), +(214403, 'Yaritza', 2013, 'F', 301), +(214404, 'Carla', 2013, 'F', 300), +(214405, 'Kairi', 2013, 'F', 300), +(214406, 'Alannah', 2013, 'F', 299), +(214407, 'Carter', 2013, 'F', 299), +(214408, 'Kourtney', 2013, 'F', 299), +(214409, 'Krystal', 2013, 'F', 299), +(214410, 'Mercedes', 2013, 'F', 299), +(214411, 'Kenia', 2013, 'F', 297), +(214412, 'Sloan', 2013, 'F', 297), +(214413, 'Sonia', 2013, 'F', 297), +(214414, 'Ivory', 2013, 'F', 296), +(214415, 'Katalina', 2013, 'F', 296), +(214416, 'Laurel', 2013, 'F', 296), +(214417, 'Alisha', 2013, 'F', 295), +(214418, 'Carlie', 2013, 'F', 295), +(214419, 'Everleigh', 2013, 'F', 295), +(214420, 'Lara', 2013, 'F', 295), +(214421, 'Abril', 2013, 'F', 294), +(214422, 'Rosie', 2013, 'F', 294), +(214423, 'Dixie', 2013, 'F', 293), +(214424, 'Micah', 2013, 'F', 293), +(214425, 'Miya', 2013, 'F', 293), +(214426, 'Regan', 2013, 'F', 293), +(214427, 'Scarlette', 2013, 'F', 293), +(214428, 'Aviana', 2013, 'F', 292), +(214429, 'Carley', 2013, 'F', 292), +(214430, 'Sky', 2013, 'F', 292), +(214431, 'Charlize', 2013, 'F', 291), +(214432, 'Samiyah', 2013, 'F', 291), +(214433, 'Sharon', 2013, 'F', 291), +(214434, 'Aleigha', 2013, 'F', 290), +(214435, 'Patience', 2013, 'F', 290), +(214436, 'Estella', 2013, 'F', 288), +(214437, 'Gwyneth', 2013, 'F', 288), +(214438, 'Libby', 2013, 'F', 288), +(214439, 'Luz', 2013, 'F', 288), +(214440, 'Temperance', 2013, 'F', 288), +(214441, 'Hadlee', 2013, 'F', 287), +(214442, 'Ingrid', 2013, 'F', 287), +(214443, 'Jurnee', 2013, 'F', 286), +(214444, 'Raina', 2013, 'F', 286), +(214445, 'Anabel', 2013, 'F', 284), +(214446, 'Renee', 2013, 'F', 283), +(214447, 'Rory', 2013, 'F', 283), +(214448, 'Zahra', 2013, 'F', 283), +(214449, 'Belen', 2013, 'F', 282), +(214450, 'Elliott', 2013, 'F', 282), +(214451, 'Jewel', 2013, 'F', 282), +(214452, 'Karlie', 2013, 'F', 282), +(214453, 'Sidney', 2013, 'F', 282), +(214454, 'Freya', 2013, 'F', 281), +(214455, 'Marianna', 2013, 'F', 281), +(214456, 'Saylor', 2013, 'F', 281), +(214457, 'Campbell', 2013, 'F', 280), +(214458, 'Kai', 2013, 'F', 280), +(214459, 'Lilia', 2013, 'F', 280), +(214460, 'Marjorie', 2013, 'F', 280), +(214461, 'Tara', 2013, 'F', 280), +(214462, 'Ann', 2013, 'F', 279), +(214463, 'Azaria', 2013, 'F', 279), +(214464, 'Deanna', 2013, 'F', 279), +(214465, 'Destinee', 2013, 'F', 277), +(214466, 'Ariya', 2013, 'F', 276), +(214467, 'Lilyanna', 2013, 'F', 276), +(214468, 'Shannon', 2013, 'F', 276), +(214469, 'Avianna', 2013, 'F', 275), +(214470, 'Macey', 2013, 'F', 275), +(214471, 'Saniya', 2013, 'F', 275), +(214472, 'Jolene', 2013, 'F', 274), +(214473, 'Aliza', 2013, 'F', 273), +(214474, 'Esme', 2013, 'F', 273), +(214475, 'Lennon', 2013, 'F', 273), +(214476, 'Liv', 2013, 'F', 273), +(214477, 'Oakley', 2013, 'F', 273), +(214478, 'Haleigh', 2013, 'F', 272), +(214479, 'Hunter', 2013, 'F', 272), +(214480, 'Annalee', 2013, 'F', 271), +(214481, 'Amalia', 2013, 'F', 270), +(214482, 'Evalyn', 2013, 'F', 270), +(214483, 'Rayne', 2013, 'F', 270), +(214484, 'Rivka', 2013, 'F', 270), +(214485, 'Giavanna', 2013, 'F', 269), +(214486, 'Karis', 2013, 'F', 269), +(214487, 'Kaylen', 2013, 'F', 268), +(214488, 'Abrielle', 2013, 'F', 267), +(214489, 'Emerie', 2013, 'F', 267), +(214490, 'Harlee', 2013, 'F', 267), +(214491, 'Audriana', 2013, 'F', 266), +(214492, 'Ellison', 2013, 'F', 266), +(214493, 'Giada', 2013, 'F', 266), +(214494, 'Gwen', 2013, 'F', 266), +(214495, 'Kori', 2013, 'F', 266), +(214496, 'Lillyana', 2013, 'F', 266), +(214497, 'Margot', 2013, 'F', 266), +(214498, 'Neriah', 2013, 'F', 266), +(214499, 'Wynter', 2013, 'F', 265), +(214500, 'Alisson', 2013, 'F', 264), +(214501, 'Belinda', 2013, 'F', 264), +(214502, 'Cristina', 2013, 'F', 264), +(214503, 'Moriah', 2013, 'F', 264), +(214504, 'Rihanna', 2013, 'F', 264), +(214505, 'Tamia', 2013, 'F', 264), +(214506, 'Annabell', 2013, 'F', 262), +(214507, 'Araceli', 2013, 'F', 262), +(214508, 'Kylah', 2013, 'F', 262), +(214509, 'Ayana', 2013, 'F', 261), +(214510, 'Emmaline', 2013, 'F', 261), +(214511, 'Giovanna', 2013, 'F', 261), +(214512, 'Kailani', 2013, 'F', 261), +(214513, 'Zainab', 2013, 'F', 260), +(214514, 'Kaiya', 2013, 'F', 259), +(214515, 'India', 2013, 'F', 258), +(214516, 'Karissa', 2013, 'F', 258), +(214517, 'Nahla', 2013, 'F', 258), +(214518, 'Charity', 2013, 'F', 257), +(214519, 'Devyn', 2013, 'F', 257), +(214520, 'Karma', 2013, 'F', 257), +(214521, 'Marleigh', 2013, 'F', 257), +(214522, 'Meadow', 2013, 'F', 257), +(214523, 'Astrid', 2013, 'F', 256), +(214524, 'Natalya', 2013, 'F', 256), +(214525, 'Sarahi', 2013, 'F', 256), +(214526, 'Audrianna', 2013, 'F', 255), +(214527, 'Estelle', 2013, 'F', 255), +(214528, 'Magnolia', 2013, 'F', 255), +(214529, 'Kaidence', 2013, 'F', 254), +(214530, 'Kaylyn', 2013, 'F', 254), +(214531, 'Princess', 2013, 'F', 254), +(214532, 'Amia', 2013, 'F', 253), +(214533, 'Bayleigh', 2013, 'F', 253), +(214534, 'Ireland', 2013, 'F', 253), +(214535, 'Jayde', 2013, 'F', 253), +(214536, 'Roxanne', 2013, 'F', 253), +(214537, 'Alaysia', 2013, 'F', 252), +(214538, 'Avalyn', 2013, 'F', 252), +(214539, 'Karly', 2013, 'F', 252), +(214540, 'Judith', 2013, 'F', 251), +(214541, 'Makena', 2013, 'F', 251), +(214542, 'Penny', 2013, 'F', 251), +(214543, 'Ryann', 2013, 'F', 251), +(214544, 'Dalilah', 2013, 'F', 250), +(214545, 'Kenna', 2013, 'F', 250), +(214546, 'Tess', 2013, 'F', 250), +(214547, 'Ali', 2013, 'F', 249), +(214548, 'Lyra', 2013, 'F', 249), +(214549, 'Tinley', 2013, 'F', 249), +(214550, 'Aubriella', 2013, 'F', 248), +(214551, 'Collins', 2013, 'F', 248), +(214552, 'Kaelynn', 2013, 'F', 248), +(214553, 'Alianna', 2013, 'F', 247), +(214554, 'Faye', 2013, 'F', 247), +(214555, 'Kasey', 2013, 'F', 247), +(214556, 'Noa', 2013, 'F', 247), +(214557, 'Riya', 2013, 'F', 247), +(214558, 'Vienna', 2013, 'F', 247), +(214559, 'Cambria', 2013, 'F', 246), +(214560, 'Esperanza', 2013, 'F', 246), +(214561, 'Nathalia', 2013, 'F', 246), +(214562, 'Louisa', 2013, 'F', 245), +(214563, 'Aubriana', 2013, 'F', 244), +(214564, 'Jenesis', 2013, 'F', 244), +(214565, 'Kaitlin', 2013, 'F', 244), +(214566, 'Abbie', 2013, 'F', 243), +(214567, 'Jana', 2013, 'F', 243), +(214568, 'Khaleesi', 2013, 'F', 243), +(214569, 'Naya', 2013, 'F', 243), +(214570, 'Rachael', 2013, 'F', 243), +(214571, 'Neveah', 2013, 'F', 242), +(214572, 'Treasure', 2013, 'F', 242), +(214573, 'Antonia', 2013, 'F', 241), +(214574, 'Cheyanne', 2013, 'F', 241), +(214575, 'Emmeline', 2013, 'F', 241), +(214576, 'Kaley', 2013, 'F', 241), +(214577, 'Kinsey', 2013, 'F', 241), +(214578, 'Sariyah', 2013, 'F', 241), +(214579, 'Tia', 2013, 'F', 241), +(214580, 'Kataleya', 2013, 'F', 240), +(214581, 'Mattie', 2013, 'F', 240), +(214582, 'Pyper', 2013, 'F', 240), +(214583, 'Raylee', 2013, 'F', 240), +(214584, 'Remington', 2013, 'F', 240), +(214585, 'Bree', 2013, 'F', 239), +(214586, 'Kaleah', 2013, 'F', 239), +(214587, 'Arden', 2013, 'F', 238), +(214588, 'Yesenia', 2013, 'F', 238), +(214589, 'Analia', 2013, 'F', 237), +(214590, 'Gisselle', 2013, 'F', 237), +(214591, 'Alisa', 2013, 'F', 236), +(214592, 'Hadleigh', 2013, 'F', 236), +(214593, 'Harmoni', 2013, 'F', 236), +(214594, 'Hayleigh', 2013, 'F', 236), +(214595, 'Katrina', 2013, 'F', 236), +(214596, 'Maylee', 2013, 'F', 236), +(214597, 'Aya', 2013, 'F', 235), +(214598, 'Dalia', 2013, 'F', 235), +(214599, 'Emani', 2013, 'F', 235), +(214600, 'Kailynn', 2013, 'F', 235), +(214601, 'Karleigh', 2013, 'F', 235), +(214602, 'Kendyl', 2013, 'F', 235), +(214603, 'Maxine', 2013, 'F', 235), +(214604, 'Samira', 2013, 'F', 235), +(214605, 'Addilynn', 2013, 'F', 234), +(214606, 'Amaris', 2013, 'F', 234), +(214607, 'Bonnie', 2013, 'F', 234), +(214608, 'Elissa', 2013, 'F', 234), +(214609, 'Fallon', 2013, 'F', 234), +(214610, 'Kendal', 2013, 'F', 233), +(214611, 'Landry', 2013, 'F', 233), +(214612, 'Nala', 2013, 'F', 233), +(214613, 'Berkley', 2013, 'F', 232), +(214614, 'Carina', 2013, 'F', 232), +(214615, 'Honesty', 2013, 'F', 232), +(214616, 'Jazmyn', 2013, 'F', 232), +(214617, 'Valery', 2013, 'F', 232), +(214618, 'Noor', 2013, 'F', 231), +(214619, 'Aanya', 2013, 'F', 230), +(214620, 'Carleigh', 2013, 'F', 230), +(214621, 'Dani', 2013, 'F', 230), +(214622, 'Emmie', 2013, 'F', 230), +(214623, 'Larissa', 2013, 'F', 230), +(214624, 'Mylah', 2013, 'F', 230), +(214625, 'Akira', 2013, 'F', 229), +(214626, 'Meghan', 2013, 'F', 229), +(214627, 'Mylee', 2013, 'F', 229), +(214628, 'Yaretzy', 2013, 'F', 229), +(214629, 'Kayleen', 2013, 'F', 228), +(214630, 'Joelle', 2013, 'F', 227), +(214631, 'Saanvi', 2013, 'F', 227), +(214632, 'Stacy', 2013, 'F', 227), +(214633, 'Clementine', 2013, 'F', 226), +(214634, 'Ellis', 2013, 'F', 226), +(214635, 'Leela', 2013, 'F', 226), +(214636, 'Milani', 2013, 'F', 226), +(214637, 'Ari', 2013, 'F', 225), +(214638, 'Marlene', 2013, 'F', 225), +(214639, 'Reece', 2013, 'F', 225), +(214640, 'Drew', 2013, 'F', 224), +(214641, 'Janney', 2013, 'F', 224), +(214642, 'Kensington', 2013, 'F', 224), +(214643, 'Reina', 2013, 'F', 224), +(214644, 'Brisa', 2013, 'F', 223), +(214645, 'Maite', 2013, 'F', 223), +(214646, 'Kamille', 2013, 'F', 222), +(214647, 'Marlie', 2013, 'F', 222), +(214648, 'Tinsley', 2013, 'F', 222), +(214649, 'Abbey', 2013, 'F', 221), +(214650, 'Zoya', 2013, 'F', 221), +(214651, 'Anneliese', 2013, 'F', 220), +(214652, 'Karmen', 2013, 'F', 220), +(214653, 'Rilynn', 2013, 'F', 220), +(214654, 'Stevie', 2013, 'F', 220), +(214655, 'Azariah', 2013, 'F', 219), +(214656, 'Suri', 2013, 'F', 219), +(214657, 'Adley', 2013, 'F', 218), +(214658, 'Cailyn', 2013, 'F', 218), +(214659, 'Ellianna', 2013, 'F', 218), +(214660, 'Haylie', 2013, 'F', 218), +(214661, 'Jacey', 2013, 'F', 218), +(214662, 'Remy', 2013, 'F', 218), +(214663, 'Ashtyn', 2013, 'F', 217), +(214664, 'Rhea', 2013, 'F', 217), +(214665, 'Annelise', 2013, 'F', 216), +(214666, 'Elina', 2013, 'F', 216), +(214667, 'Jakayla', 2013, 'F', 216), +(214668, 'Maisie', 2013, 'F', 216), +(214669, 'Promise', 2013, 'F', 216), +(214670, 'Sally', 2013, 'F', 216), +(214671, 'Kelsie', 2013, 'F', 215), +(214672, 'Londynn', 2013, 'F', 215), +(214673, 'Magdalena', 2013, 'F', 215), +(214674, 'Maren', 2013, 'F', 215), +(214675, 'Kamilah', 2013, 'F', 214), +(214676, 'Kinslee', 2013, 'F', 214), +(214677, 'Selene', 2013, 'F', 214), +(214678, 'Bentley', 2013, 'F', 213), +(214679, 'Kalia', 2013, 'F', 213), +(214680, 'Selina', 2013, 'F', 213), +(214681, 'Sofie', 2013, 'F', 213), +(214682, 'Thea', 2013, 'F', 213), +(214683, 'Kirsten', 2013, 'F', 212), +(214684, 'Adalee', 2013, 'F', 211), +(214685, 'Gracyn', 2013, 'F', 211), +(214686, 'Julieta', 2013, 'F', 211), +(214687, 'Maritza', 2013, 'F', 211), +(214688, 'Carissa', 2013, 'F', 210), +(214689, 'Caydence', 2013, 'F', 210), +(214690, 'Isabell', 2013, 'F', 210), +(214691, 'Lilyann', 2013, 'F', 210), +(214692, 'Malayah', 2013, 'F', 210), +(214693, 'Veda', 2013, 'F', 210), +(214694, 'Holland', 2013, 'F', 209), +(214695, 'Antonella', 2013, 'F', 208), +(214696, 'Cassie', 2013, 'F', 208), +(214697, 'Damaris', 2013, 'F', 208), +(214698, 'Diya', 2013, 'F', 208), +(214699, 'Kyndal', 2013, 'F', 208), +(214700, 'Milagros', 2013, 'F', 208), +(214701, 'Montserrat', 2013, 'F', 208), +(214702, 'Rebeca', 2013, 'F', 208), +(214703, 'Adela', 2013, 'F', 207), +(214704, 'Ashanti', 2013, 'F', 207), +(214705, 'Jaqueline', 2013, 'F', 207), +(214706, 'Violeta', 2013, 'F', 207), +(214707, 'Yara', 2013, 'F', 207), +(214708, 'Ailyn', 2013, 'F', 206), +(214709, 'Anniston', 2013, 'F', 206), +(214710, 'Monserrat', 2013, 'F', 206), +(214711, 'Addalyn', 2013, 'F', 205), +(214712, 'Beatrix', 2013, 'F', 205), +(214713, 'Dania', 2013, 'F', 205), +(214714, 'Jacquelyn', 2013, 'F', 205), +(214715, 'Jaleah', 2013, 'F', 205), +(214716, 'Luisa', 2013, 'F', 205), +(214717, 'Samiya', 2013, 'F', 205), +(214718, 'Sunny', 2013, 'F', 205), +(214719, 'Abrianna', 2013, 'F', 204), +(214720, 'Anais', 2013, 'F', 204), +(214721, 'Avalynn', 2013, 'F', 204), +(214722, 'Jessa', 2013, 'F', 204), +(214723, 'Leena', 2013, 'F', 204), +(214724, 'Leilah', 2013, 'F', 204), +(214725, 'Lillyanna', 2013, 'F', 204), +(214726, 'Pamela', 2013, 'F', 204), +(214727, 'Priya', 2013, 'F', 204), +(214728, 'Brynley', 2013, 'F', 203), +(214729, 'Cambree', 2013, 'F', 203), +(214730, 'Etta', 2013, 'F', 203), +(214731, 'Kenzi', 2013, 'F', 203), +(214732, 'Vivien', 2013, 'F', 203), +(214733, 'Aliah', 2013, 'F', 202), +(214734, 'Gretchen', 2013, 'F', 202), +(214735, 'Kinlee', 2013, 'F', 202), +(214736, 'Laniyah', 2013, 'F', 202), +(214737, 'Essence', 2013, 'F', 201), +(214738, 'Harleigh', 2013, 'F', 201), +(214739, 'Keily', 2013, 'F', 201), +(214740, 'Robyn', 2013, 'F', 201), +(214741, 'Amora', 2013, 'F', 200), +(214742, 'Austyn', 2013, 'F', 200), +(214743, 'Keila', 2013, 'F', 200), +(214744, 'Yamilet', 2013, 'F', 200), +(214745, 'Amiah', 2013, 'F', 199), +(214746, 'Cordelia', 2013, 'F', 199), +(214747, 'Dominique', 2013, 'F', 199), +(214748, 'Nyah', 2013, 'F', 199), +(214749, 'Ramona', 2013, 'F', 199), +(214750, 'Sanaa', 2013, 'F', 199), +(214751, 'Sylvie', 2013, 'F', 199), +(214752, 'Taylin', 2013, 'F', 199), +(214753, 'Anjali', 2013, 'F', 198), +(214754, 'Itzayana', 2013, 'F', 198), +(214755, 'Kamari', 2013, 'F', 198), +(214756, 'Lorena', 2013, 'F', 198), +(214757, 'Shaylee', 2013, 'F', 198), +(214758, 'Yoselin', 2013, 'F', 198), +(214759, 'Amayah', 2013, 'F', 197), +(214760, 'Ariadne', 2013, 'F', 197), +(214761, 'Ayva', 2013, 'F', 197), +(214762, 'Iyana', 2013, 'F', 197), +(214763, 'Preslee', 2013, 'F', 197), +(214764, 'Raya', 2013, 'F', 197), +(214765, 'Sarina', 2013, 'F', 197), +(214766, 'Shea', 2013, 'F', 197), +(214767, 'Theresa', 2013, 'F', 197), +(214768, 'Tianna', 2013, 'F', 197), +(214769, 'Addie', 2013, 'F', 196), +(214770, 'Adyson', 2013, 'F', 196), +(214771, 'Ellery', 2013, 'F', 196), +(214772, 'Frida', 2013, 'F', 196), +(214773, 'Louise', 2013, 'F', 196), +(214774, 'Yuliana', 2013, 'F', 196), +(214775, 'Abbygail', 2013, 'F', 195), +(214776, 'Adilynn', 2013, 'F', 195), +(214777, 'Alessia', 2013, 'F', 195), +(214778, 'Ashlee', 2013, 'F', 195), +(214779, 'Rosalyn', 2013, 'F', 195), +(214780, 'Shania', 2013, 'F', 195), +(214781, 'Tania', 2013, 'F', 195), +(214782, 'Chandler', 2013, 'F', 194), +(214783, 'Marin', 2013, 'F', 194), +(214784, 'Audree', 2013, 'F', 193), +(214785, 'Elayna', 2013, 'F', 193), +(214786, 'Aiyanna', 2013, 'F', 192), +(214787, 'Alanah', 2013, 'F', 192), +(214788, 'Dariana', 2013, 'F', 192), +(214789, 'Elora', 2013, 'F', 192), +(214790, 'Kiersten', 2013, 'F', 192), +(214791, 'Maddie', 2013, 'F', 192), +(214792, 'Taraji', 2013, 'F', 192), +(214793, 'Heidy', 2013, 'F', 191), +(214794, 'Kamiyah', 2013, 'F', 191), +(214795, 'Maryjane', 2013, 'F', 191), +(214796, 'Emme', 2013, 'F', 190), +(214797, 'Karley', 2013, 'F', 190), +(214798, 'Shyanne', 2013, 'F', 190), +(214799, 'Sonya', 2013, 'F', 190), +(214800, 'Asha', 2013, 'F', 189), +(214801, 'Audra', 2013, 'F', 189), +(214802, 'Janet', 2013, 'F', 189), +(214803, 'Kaylah', 2013, 'F', 189), +(214804, 'Kyrie', 2013, 'F', 189), +(214805, 'Robin', 2013, 'F', 189), +(214806, 'Soraya', 2013, 'F', 189), +(214807, 'Ashton', 2013, 'F', 188), +(214808, 'Belle', 2013, 'F', 188), +(214809, 'Rubi', 2013, 'F', 188), +(214810, 'Shyla', 2013, 'F', 188), +(214811, 'Calliope', 2013, 'F', 187), +(214812, 'Jovie', 2013, 'F', 187), +(214813, 'Katarina', 2013, 'F', 187), +(214814, 'Mayra', 2013, 'F', 187), +(214815, 'Rosalee', 2013, 'F', 187), +(214816, 'Silvia', 2013, 'F', 187), +(214817, 'Darlene', 2013, 'F', 186), +(214818, 'Jadyn', 2013, 'F', 186), +(214819, 'Micaela', 2013, 'F', 186), +(214820, 'Rileigh', 2013, 'F', 186), +(214821, 'Tamara', 2013, 'F', 186), +(214822, 'Addelyn', 2013, 'F', 185), +(214823, 'Janice', 2013, 'F', 185), +(214824, 'Jaylen', 2013, 'F', 185), +(214825, 'Marlowe', 2013, 'F', 185), +(214826, 'Nichole', 2013, 'F', 185), +(214827, 'Alora', 2013, 'F', 184), +(214828, 'Ivana', 2013, 'F', 184), +(214829, 'Ophelia', 2013, 'F', 184), +(214830, 'Izabelle', 2013, 'F', 183), +(214831, 'Nalani', 2013, 'F', 183), +(214832, 'Alanis', 2013, 'F', 182), +(214833, 'Caelyn', 2013, 'F', 182), +(214834, 'Janiah', 2013, 'F', 182), +(214835, 'Rita', 2013, 'F', 182), +(214836, 'Zelda', 2013, 'F', 182), +(214837, 'Ananya', 2013, 'F', 181), +(214838, 'Carsyn', 2013, 'F', 181), +(214839, 'Emerald', 2013, 'F', 181), +(214840, 'Kayley', 2013, 'F', 181), +(214841, 'Noel', 2013, 'F', 181), +(214842, 'Romina', 2013, 'F', 181), +(214843, 'Ariyana', 2013, 'F', 180), +(214844, 'Azul', 2013, 'F', 180), +(214845, 'Jamiyah', 2013, 'F', 180), +(214846, 'Jazzlyn', 2013, 'F', 180), +(214847, 'Leigha', 2013, 'F', 180), +(214848, 'Poppy', 2013, 'F', 180), +(214849, 'Capri', 2013, 'F', 179), +(214850, 'Iyanna', 2013, 'F', 179), +(214851, 'Izabel', 2013, 'F', 179), +(214852, 'Jaslyn', 2013, 'F', 179), +(214853, 'Katerina', 2013, 'F', 179), +(214854, 'Nailah', 2013, 'F', 179), +(214855, 'Spencer', 2013, 'F', 179), +(214856, 'Vada', 2013, 'F', 179), +(214857, 'Vida', 2013, 'F', 179), +(214858, 'Viola', 2013, 'F', 179), +(214859, 'Zaniya', 2013, 'F', 179), +(214860, 'Zendaya', 2013, 'F', 179), +(214861, 'Analise', 2013, 'F', 178), +(214862, 'Annaliese', 2013, 'F', 178), +(214863, 'Annette', 2013, 'F', 178), +(214864, 'Jaylyn', 2013, 'F', 178), +(214865, 'Zaylee', 2013, 'F', 178), +(214866, 'Dalila', 2013, 'F', 177), +(214867, 'Delia', 2013, 'F', 177), +(214868, 'Mireya', 2013, 'F', 177), +(214869, 'Aleeah', 2013, 'F', 176), +(214870, 'Christiana', 2013, 'F', 176), +(214871, 'Delanie', 2013, 'F', 176), +(214872, 'Grecia', 2013, 'F', 176), +(214873, 'Gwenyth', 2013, 'F', 176), +(214874, 'Sanai', 2013, 'F', 176), +(214875, 'Brynleigh', 2013, 'F', 175), +(214876, 'Elly', 2013, 'F', 175), +(214877, 'Jael', 2013, 'F', 175), +(214878, 'Lizeth', 2013, 'F', 175), +(214879, 'Blythe', 2013, 'F', 174), +(214880, 'Colbie', 2013, 'F', 174), +(214881, 'Dayanna', 2013, 'F', 174), +(214882, 'Evangelina', 2013, 'F', 174), +(214883, 'Makinley', 2013, 'F', 174), +(214884, 'Rylynn', 2013, 'F', 174), +(214885, 'Betty', 2013, 'F', 173), +(214886, 'Carrie', 2013, 'F', 173), +(214887, 'Donna', 2013, 'F', 173), +(214888, 'Izzabella', 2013, 'F', 173), +(214889, 'Keeley', 2013, 'F', 173), +(214890, 'Maribel', 2013, 'F', 173), +(214891, 'Shirley', 2013, 'F', 173), +(214892, 'Tyler', 2013, 'F', 173), +(214893, 'Yasmine', 2013, 'F', 173), +(214894, 'Aadhya', 2013, 'F', 172), +(214895, 'Elodie', 2013, 'F', 172), +(214896, 'Mariela', 2013, 'F', 172), +(214897, 'Peighton', 2013, 'F', 172), +(214898, 'Roslyn', 2013, 'F', 172), +(214899, 'Seraphina', 2013, 'F', 172), +(214900, 'Emmerson', 2013, 'F', 171), +(214901, 'Jazelle', 2013, 'F', 171), +(214902, 'Kya', 2013, 'F', 171), +(214903, 'Leilany', 2013, 'F', 171), +(214904, 'Malka', 2013, 'F', 171), +(214905, 'Marian', 2013, 'F', 171), +(214906, 'Marisa', 2013, 'F', 171), +(214907, 'Nya', 2013, 'F', 171), +(214908, 'Soleil', 2013, 'F', 171), +(214909, 'Ziva', 2013, 'F', 171), +(214910, 'Bridgette', 2013, 'F', 170), +(214911, 'Calista', 2013, 'F', 170), +(214912, 'Celina', 2013, 'F', 170), +(214913, 'Chyna', 2013, 'F', 170), +(214914, 'Kalani', 2013, 'F', 170), +(214915, 'Kaycee', 2013, 'F', 170), +(214916, 'Kierra', 2013, 'F', 170), +(214917, 'Violette', 2013, 'F', 170), +(214918, 'Whitley', 2013, 'F', 170), +(214919, 'Evalynn', 2013, 'F', 169), +(214920, 'Heavenly', 2013, 'F', 169), +(214921, 'Malak', 2013, 'F', 169), +(214922, 'Persephone', 2013, 'F', 169), +(214923, 'Susanna', 2013, 'F', 169), +(214924, 'Toni', 2013, 'F', 169), +(214925, 'Aracely', 2013, 'F', 168), +(214926, 'Areli', 2013, 'F', 168), +(214927, 'Cecily', 2013, 'F', 168), +(214928, 'Scout', 2013, 'F', 168), +(214929, 'Adilyn', 2013, 'F', 167), +(214930, 'Eiza', 2013, 'F', 167), +(214931, 'Karter', 2013, 'F', 167), +(214932, 'Kaylani', 2013, 'F', 167), +(214933, 'Xiomara', 2013, 'F', 167), +(214934, 'Aarya', 2013, 'F', 166), +(214935, 'Farah', 2013, 'F', 166), +(214936, 'Lucero', 2013, 'F', 166), +(214937, 'Abigale', 2013, 'F', 165), +(214938, 'Makiyah', 2013, 'F', 165), +(214939, 'Mavis', 2013, 'F', 165), +(214940, 'Mika', 2013, 'F', 165), +(214941, 'Yazmin', 2013, 'F', 165), +(214942, 'Chasity', 2013, 'F', 164), +(214943, 'Della', 2013, 'F', 164), +(214944, 'Karli', 2013, 'F', 164), +(214945, 'Miyah', 2013, 'F', 164), +(214946, 'Aditi', 2013, 'F', 163), +(214947, 'Clover', 2013, 'F', 163), +(214948, 'Egypt', 2013, 'F', 163), +(214949, 'Geraldine', 2013, 'F', 163), +(214950, 'Grayson', 2013, 'F', 163), +(214951, 'Kaila', 2013, 'F', 163), +(214952, 'Nariah', 2013, 'F', 163), +(214953, 'Annaleigh', 2013, 'F', 162), +(214954, 'Cambrie', 2013, 'F', 162), +(214955, 'Cayla', 2013, 'F', 162), +(214956, 'Coral', 2013, 'F', 162), +(214957, 'Lucinda', 2013, 'F', 162), +(214958, 'Aniston', 2013, 'F', 161), +(214959, 'Eisley', 2013, 'F', 161), +(214960, 'Jaidyn', 2013, 'F', 161), +(214961, 'Lianna', 2013, 'F', 161), +(214962, 'Marcella', 2013, 'F', 161), +(214963, 'Amyah', 2013, 'F', 160), +(214964, 'Ariane', 2013, 'F', 160), +(214965, 'Blaire', 2013, 'F', 160), +(214966, 'Elisha', 2013, 'F', 160), +(214967, 'Hailie', 2013, 'F', 160), +(214968, 'Jaiden', 2013, 'F', 160), +(214969, 'Linnea', 2013, 'F', 160), +(214970, 'Sydnee', 2013, 'F', 160), +(214971, 'Adilene', 2013, 'F', 159), +(214972, 'Arlene', 2013, 'F', 159), +(214973, 'Dina', 2013, 'F', 159), +(214974, 'Litzy', 2013, 'F', 159), +(214975, 'Shreya', 2013, 'F', 159), +(214976, 'Arianny', 2013, 'F', 158), +(214977, 'Kalea', 2013, 'F', 158), +(214978, 'Katy', 2013, 'F', 158), +(214979, 'Nellie', 2013, 'F', 158), +(214980, 'Abagail', 2013, 'F', 157), +(214981, 'Darcy', 2013, 'F', 157), +(214982, 'Geneva', 2013, 'F', 157), +(214983, 'Jamya', 2013, 'F', 157), +(214984, 'Mariella', 2013, 'F', 157), +(214985, 'Payten', 2013, 'F', 157), +(214986, 'Batsheva', 2013, 'F', 156), +(214987, 'Camdyn', 2013, 'F', 156), +(214988, 'Lacy', 2013, 'F', 156), +(214989, 'Meera', 2013, 'F', 156), +(214990, 'Lela', 2013, 'F', 155), +(214991, 'Lidia', 2013, 'F', 155), +(214992, 'Lucie', 2013, 'F', 155), +(214993, 'Milah', 2013, 'F', 155), +(214994, 'Elia', 2013, 'F', 154), +(214995, 'Hillary', 2013, 'F', 154), +(214996, 'Miabella', 2013, 'F', 154), +(214997, 'Zaira', 2013, 'F', 154), +(214998, 'Cristal', 2013, 'F', 153), +(214999, 'Judy', 2013, 'F', 153), +(215000, 'Lennox', 2013, 'F', 153), +(215001, 'Leticia', 2013, 'F', 153), +(215002, 'Pepper', 2013, 'F', 153), +(215003, 'Skylah', 2013, 'F', 153), +(215004, 'Adaline', 2013, 'F', 152), +(215005, 'Carson', 2013, 'F', 152), +(215006, 'Jersey', 2013, 'F', 152), +(215007, 'Jubilee', 2013, 'F', 152), +(215008, 'Kenleigh', 2013, 'F', 152), +(215009, 'Lacie', 2013, 'F', 152), +(215010, 'Maura', 2013, 'F', 152), +(215011, 'Maylin', 2013, 'F', 152), +(215012, 'Nicolette', 2013, 'F', 152), +(215013, 'Stephany', 2013, 'F', 152), +(215014, 'Ariyanna', 2013, 'F', 151), +(215015, 'Brookelynn', 2013, 'F', 151), +(215016, 'Eleni', 2013, 'F', 151), +(215017, 'Ezra', 2013, 'F', 151), +(215018, 'Kinleigh', 2013, 'F', 151), +(215019, 'Shaniya', 2013, 'F', 151), +(215020, 'Tahlia', 2013, 'F', 151), +(215021, 'Yaneli', 2013, 'F', 151), +(215022, 'Zayla', 2013, 'F', 151), +(215023, 'Darla', 2013, 'F', 150), +(215024, 'Desirae', 2013, 'F', 150), +(215025, 'Korie', 2013, 'F', 150), +(215026, 'Lillyann', 2013, 'F', 150), +(215027, 'Makaylah', 2013, 'F', 150), +(215028, 'Aida', 2013, 'F', 149), +(215029, 'Avani', 2013, 'F', 149), +(215030, 'Evolet', 2013, 'F', 149), +(215031, 'Keely', 2013, 'F', 149), +(215032, 'Nayla', 2013, 'F', 149), +(215033, 'Tanya', 2013, 'F', 149), +(215034, 'Tiara', 2013, 'F', 149), +(215035, 'Alexus', 2013, 'F', 148), +(215036, 'Allisson', 2013, 'F', 148), +(215037, 'Andi', 2013, 'F', 148), +(215038, 'Anita', 2013, 'F', 148), +(215039, 'Carmella', 2013, 'F', 148), +(215040, 'Malina', 2013, 'F', 148), +(215041, 'Melinda', 2013, 'F', 148), +(215042, 'Skylee', 2013, 'F', 148), +(215043, 'Yvette', 2013, 'F', 148), +(215044, 'Colleen', 2013, 'F', 147), +(215045, 'Eunice', 2013, 'F', 147), +(215046, 'Janie', 2013, 'F', 147), +(215047, 'Joslynn', 2013, 'F', 147), +(215048, 'Alba', 2013, 'F', 146), +(215049, 'Alex', 2013, 'F', 146), +(215050, 'Chelsey', 2013, 'F', 146), +(215051, 'Frankie', 2013, 'F', 146), +(215052, 'Jamiya', 2013, 'F', 146), +(215053, 'Maycee', 2013, 'F', 146), +(215054, 'Naima', 2013, 'F', 146), +(215055, 'Tallulah', 2013, 'F', 146), +(215056, 'Tina', 2013, 'F', 146), +(215057, 'Denisse', 2013, 'F', 145), +(215058, 'Jaclyn', 2013, 'F', 145), +(215059, 'Kaci', 2013, 'F', 145), +(215060, 'Kamiya', 2013, 'F', 145), +(215061, 'Keziah', 2013, 'F', 145), +(215062, 'Laci', 2013, 'F', 145), +(215063, 'Margarita', 2013, 'F', 145), +(215064, 'Raylynn', 2013, 'F', 145), +(215065, 'Unique', 2013, 'F', 145), +(215066, 'Abigayle', 2013, 'F', 144), +(215067, 'Aliyana', 2013, 'F', 144), +(215068, 'Alyse', 2013, 'F', 144), +(215069, 'Arlette', 2013, 'F', 144), +(215070, 'Flora', 2013, 'F', 144), +(215071, 'Jordin', 2013, 'F', 144), +(215072, 'Kianna', 2013, 'F', 144), +(215073, 'Precious', 2013, 'F', 144), +(215074, 'Sheila', 2013, 'F', 144), +(215075, 'Blessing', 2013, 'F', 143), +(215076, 'Brittney', 2013, 'F', 143), +(215077, 'Graciela', 2013, 'F', 143), +(215078, 'Haddie', 2013, 'F', 143), +(215079, 'Isha', 2013, 'F', 143), +(215080, 'Jaden', 2013, 'F', 143), +(215081, 'Keegan', 2013, 'F', 143), +(215082, 'Abriella', 2013, 'F', 142), +(215083, 'Caleigh', 2013, 'F', 142), +(215084, 'Krista', 2013, 'F', 142), +(215085, 'Lilyan', 2013, 'F', 142), +(215086, 'Maisy', 2013, 'F', 142), +(215087, 'Samaya', 2013, 'F', 142), +(215088, 'Shayna', 2013, 'F', 142), +(215089, 'Aarna', 2013, 'F', 141), +(215090, 'Beverly', 2013, 'F', 141), +(215091, 'Brandi', 2013, 'F', 141), +(215092, 'Carli', 2013, 'F', 141), +(215093, 'Chiara', 2013, 'F', 141), +(215094, 'Ila', 2013, 'F', 141), +(215095, 'Kenlee', 2013, 'F', 141), +(215096, 'Love', 2013, 'F', 141), +(215097, 'Maliya', 2013, 'F', 141), +(215098, 'Taliah', 2013, 'F', 141), +(215099, 'Beatriz', 2013, 'F', 140), +(215100, 'Evelina', 2013, 'F', 140), +(215101, 'Joselin', 2013, 'F', 140), +(215102, 'Marion', 2013, 'F', 140), +(215103, 'Calla', 2013, 'F', 139), +(215104, 'Kathy', 2013, 'F', 139), +(215105, 'Kinzley', 2013, 'F', 139), +(215106, 'Vivianna', 2013, 'F', 139), +(215107, 'Amariah', 2013, 'F', 138), +(215108, 'Annabeth', 2013, 'F', 138), +(215109, 'Cierra', 2013, 'F', 138), +(215110, 'Kayli', 2013, 'F', 138), +(215111, 'Taniyah', 2013, 'F', 138), +(215112, 'Zooey', 2013, 'F', 138), +(215113, 'Ema', 2013, 'F', 137), +(215114, 'Gina', 2013, 'F', 137), +(215115, 'Jaya', 2013, 'F', 137), +(215116, 'Kristin', 2013, 'F', 137), +(215117, 'Kynslee', 2013, 'F', 137), +(215118, 'Aaralyn', 2013, 'F', 136), +(215119, 'Aven', 2013, 'F', 136), +(215120, 'Ayah', 2013, 'F', 136), +(215121, 'Chevelle', 2013, 'F', 136), +(215122, 'Deja', 2013, 'F', 136), +(215123, 'Maryann', 2013, 'F', 136), +(215124, 'Raniyah', 2013, 'F', 136), +(215125, 'Symphony', 2013, 'F', 136), +(215126, 'Zahara', 2013, 'F', 136), +(215127, 'Amerie', 2013, 'F', 135), +(215128, 'Emi', 2013, 'F', 135), +(215129, 'Kamya', 2013, 'F', 135), +(215130, 'Khadija', 2013, 'F', 135), +(215131, 'Nyomi', 2013, 'F', 135), +(215132, 'Rain', 2013, 'F', 135), +(215133, 'Renesmee', 2013, 'F', 135), +(215134, 'Zaya', 2013, 'F', 135), +(215135, 'Amarie', 2013, 'F', 134), +(215136, 'Christian', 2013, 'F', 134), +(215137, 'Elana', 2013, 'F', 134), +(215138, 'Elyssa', 2013, 'F', 134), +(215139, 'Harmonie', 2013, 'F', 134), +(215140, 'Honor', 2013, 'F', 134), +(215141, 'Mariajose', 2013, 'F', 134), +(215142, 'Martina', 2013, 'F', 134), +(215143, 'Myka', 2013, 'F', 134), +(215144, 'Paisleigh', 2013, 'F', 134), +(215145, 'Petra', 2013, 'F', 134), +(215146, 'Samaria', 2013, 'F', 134), +(215147, 'Tala', 2013, 'F', 134), +(215148, 'Tesla', 2013, 'F', 134), +(215149, 'Zia', 2013, 'F', 134), +(215150, 'Andie', 2013, 'F', 133), +(215151, 'Anisa', 2013, 'F', 133), +(215152, 'Annalisa', 2013, 'F', 133), +(215153, 'Betsy', 2013, 'F', 133), +(215154, 'Brayleigh', 2013, 'F', 133), +(215155, 'Carol', 2013, 'F', 133), +(215156, 'Channing', 2013, 'F', 133), +(215157, 'Claira', 2013, 'F', 133), +(215158, 'Irie', 2013, 'F', 133), +(215159, 'Josslyn', 2013, 'F', 133), +(215160, 'Kloe', 2013, 'F', 133), +(215161, 'Makenzi', 2013, 'F', 133), +(215162, 'Sailor', 2013, 'F', 133), +(215163, 'Sandy', 2013, 'F', 133), +(215164, 'Skylynn', 2013, 'F', 133), +(215165, 'Aminah', 2013, 'F', 132), +(215166, 'Avalon', 2013, 'F', 132), +(215167, 'Emalyn', 2013, 'F', 132), +(215168, 'Harlie', 2013, 'F', 132), +(215169, 'Palmer', 2013, 'F', 132), +(215170, 'Rhylee', 2013, 'F', 132), +(215171, 'Sapphire', 2013, 'F', 132), +(215172, 'Yadira', 2013, 'F', 132), +(215173, 'Alli', 2013, 'F', 131), +(215174, 'Cayleigh', 2013, 'F', 131), +(215175, 'Eryn', 2013, 'F', 131), +(215176, 'Imogen', 2013, 'F', 131), +(215177, 'Justyce', 2013, 'F', 131), +(215178, 'Kynleigh', 2013, 'F', 131), +(215179, 'Maiya', 2013, 'F', 131), +(215180, 'Noelia', 2013, 'F', 131), +(215181, 'Rilee', 2013, 'F', 131), +(215182, 'Shae', 2013, 'F', 131), +(215183, 'Stacey', 2013, 'F', 131), +(215184, 'Anayah', 2013, 'F', 130), +(215185, 'Ashleigh', 2013, 'F', 130), +(215186, 'Josselyn', 2013, 'F', 130), +(215187, 'Lanie', 2013, 'F', 130), +(215188, 'Nelly', 2013, 'F', 130), +(215189, 'Shanaya', 2013, 'F', 130), +(215190, 'Abygail', 2013, 'F', 129), +(215191, 'Isadora', 2013, 'F', 129), +(215192, 'Keilani', 2013, 'F', 129), +(215193, 'Laken', 2013, 'F', 129), +(215194, 'Nadine', 2013, 'F', 129), +(215195, 'Nyasia', 2013, 'F', 129), +(215196, 'Quincy', 2013, 'F', 129), +(215197, 'Rayleigh', 2013, 'F', 129), +(215198, 'Shaila', 2013, 'F', 129), +(215199, 'Susana', 2013, 'F', 129), +(215200, 'Yarely', 2013, 'F', 129), +(215201, 'Addalynn', 2013, 'F', 128), +(215202, 'Annamarie', 2013, 'F', 128), +(215203, 'August', 2013, 'F', 128), +(215204, 'Dior', 2013, 'F', 128), +(215205, 'Hartley', 2013, 'F', 128), +(215206, 'Jailyn', 2013, 'F', 128), +(215207, 'Mackenna', 2013, 'F', 128), +(215208, 'Rosalia', 2013, 'F', 128), +(215209, 'Taelyn', 2013, 'F', 128), +(215210, 'Anyla', 2013, 'F', 127), +(215211, 'Emelyn', 2013, 'F', 127), +(215212, 'Gisele', 2013, 'F', 127), +(215213, 'Harriet', 2013, 'F', 127), +(215214, 'Kambree', 2013, 'F', 127), +(215215, 'Layna', 2013, 'F', 127), +(215216, 'Lenora', 2013, 'F', 127), +(215217, 'Lluvia', 2013, 'F', 127), +(215218, 'Adrian', 2013, 'F', 126), +(215219, 'Devorah', 2013, 'F', 126), +(215220, 'Guinevere', 2013, 'F', 126), +(215221, 'Jackeline', 2013, 'F', 126), +(215222, 'Journi', 2013, 'F', 126), +(215223, 'Kamora', 2013, 'F', 126), +(215224, 'Lillyan', 2013, 'F', 126), +(215225, 'Queen', 2013, 'F', 126), +(215226, 'Tayla', 2013, 'F', 126), +(215227, 'Annmarie', 2013, 'F', 125), +(215228, 'Brea', 2013, 'F', 125), +(215229, 'Jacelyn', 2013, 'F', 125), +(215230, 'Magdalene', 2013, 'F', 125), +(215231, 'Opal', 2013, 'F', 125), +(215232, 'Alessa', 2013, 'F', 124), +(215233, 'Jalayah', 2013, 'F', 124), +(215234, 'Jiselle', 2013, 'F', 124), +(215235, 'Rosemarie', 2013, 'F', 124), +(215236, 'Sahara', 2013, 'F', 124), +(215237, 'Agnes', 2013, 'F', 123), +(215238, 'Ayesha', 2013, 'F', 123), +(215239, 'Carys', 2013, 'F', 123), +(215240, 'Cattleya', 2013, 'F', 123), +(215241, 'Citlali', 2013, 'F', 123), +(215242, 'Evelin', 2013, 'F', 123), +(215243, 'Jalynn', 2013, 'F', 123), +(215244, 'Kacey', 2013, 'F', 123), +(215245, 'Laniya', 2013, 'F', 123), +(215246, 'Yulissa', 2013, 'F', 123), +(215247, 'Johana', 2013, 'F', 122), +(215248, 'Kacie', 2013, 'F', 122), +(215249, 'Lorraine', 2013, 'F', 122), +(215250, 'Makiya', 2013, 'F', 122), +(215251, 'Taleah', 2013, 'F', 122), +(215252, 'Yvonne', 2013, 'F', 122), +(215253, 'Aislynn', 2013, 'F', 121), +(215254, 'Analeigh', 2013, 'F', 121), +(215255, 'Brynna', 2013, 'F', 121), +(215256, 'Camden', 2013, 'F', 121), +(215257, 'Jacie', 2013, 'F', 121), +(215258, 'Jenni', 2013, 'F', 121), +(215259, 'Luella', 2013, 'F', 121), +(215260, 'Mayah', 2013, 'F', 121), +(215261, 'Taytum', 2013, 'F', 121), +(215262, 'Tracy', 2013, 'F', 121), +(215263, 'Araya', 2013, 'F', 120); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(215264, 'Brandy', 2013, 'F', 120), +(215265, 'Brylie', 2013, 'F', 120), +(215266, 'Elinor', 2013, 'F', 120), +(215267, 'Ester', 2013, 'F', 120), +(215268, 'Everlee', 2013, 'F', 120), +(215269, 'Gillian', 2013, 'F', 120), +(215270, 'Janyla', 2013, 'F', 120), +(215271, 'Jaycie', 2013, 'F', 120), +(215272, 'Justine', 2013, 'F', 120), +(215273, 'Kalina', 2013, 'F', 120), +(215274, 'Kaydance', 2013, 'F', 120), +(215275, 'Lesley', 2013, 'F', 120), +(215276, 'Rosalynn', 2013, 'F', 120), +(215277, 'Sahana', 2013, 'F', 120), +(215278, 'Savanah', 2013, 'F', 120), +(215279, 'Taniya', 2013, 'F', 120), +(215280, 'Akshara', 2013, 'F', 119), +(215281, 'Darby', 2013, 'F', 119), +(215282, 'Davina', 2013, 'F', 119), +(215283, 'Kalli', 2013, 'F', 119), +(215284, 'Kenzley', 2013, 'F', 119), +(215285, 'Loretta', 2013, 'F', 119), +(215286, 'Lourdes', 2013, 'F', 119), +(215287, 'Raleigh', 2013, 'F', 119), +(215288, 'Serafina', 2013, 'F', 119), +(215289, 'Adina', 2013, 'F', 118), +(215290, 'Aubry', 2013, 'F', 118), +(215291, 'Faigy', 2013, 'F', 118), +(215292, 'Florence', 2013, 'F', 118), +(215293, 'Navya', 2013, 'F', 118), +(215294, 'Roxana', 2013, 'F', 118), +(215295, 'Vayda', 2013, 'F', 118), +(215296, 'Ameerah', 2013, 'F', 117), +(215297, 'Carmela', 2013, 'F', 117), +(215298, 'Inara', 2013, 'F', 117), +(215299, 'Kamilla', 2013, 'F', 117), +(215300, 'Liya', 2013, 'F', 117), +(215301, 'Margo', 2013, 'F', 117), +(215302, 'Paizley', 2013, 'F', 117), +(215303, 'Saphira', 2013, 'F', 117), +(215304, 'Aaleyah', 2013, 'F', 116), +(215305, 'Aleksandra', 2013, 'F', 116), +(215306, 'Aspyn', 2013, 'F', 116), +(215307, 'Brissa', 2013, 'F', 116), +(215308, 'Destini', 2013, 'F', 116), +(215309, 'Ida', 2013, 'F', 116), +(215310, 'Jianna', 2013, 'F', 116), +(215311, 'Karolina', 2013, 'F', 116), +(215312, 'Nikki', 2013, 'F', 116), +(215313, 'Prisha', 2013, 'F', 116), +(215314, 'Shyann', 2013, 'F', 116), +(215315, 'Xochitl', 2013, 'F', 116), +(215316, 'Zuleyka', 2013, 'F', 116), +(215317, 'Aleyna', 2013, 'F', 115), +(215318, 'Analee', 2013, 'F', 115), +(215319, 'Ariela', 2013, 'F', 115), +(215320, 'Charlene', 2013, 'F', 115), +(215321, 'Elliette', 2013, 'F', 115), +(215322, 'Georgina', 2013, 'F', 115), +(215323, 'Karmyn', 2013, 'F', 115), +(215324, 'Katia', 2013, 'F', 115), +(215325, 'Laina', 2013, 'F', 115), +(215326, 'Ria', 2013, 'F', 115), +(215327, 'Adalie', 2013, 'F', 114), +(215328, 'Aleyah', 2013, 'F', 114), +(215329, 'Audrie', 2013, 'F', 114), +(215330, 'Blanca', 2013, 'F', 114), +(215331, 'Brinlee', 2013, 'F', 114), +(215332, 'Emalee', 2013, 'F', 114), +(215333, 'Jiya', 2013, 'F', 114), +(215334, 'Kamdyn', 2013, 'F', 114), +(215335, 'Karoline', 2013, 'F', 114), +(215336, 'Klara', 2013, 'F', 114), +(215337, 'Lori', 2013, 'F', 114), +(215338, 'Melia', 2013, 'F', 114), +(215339, 'Ruthie', 2013, 'F', 114), +(215340, 'Anaiah', 2013, 'F', 113), +(215341, 'Candice', 2013, 'F', 113), +(215342, 'Cosette', 2013, 'F', 113), +(215343, 'Deasia', 2013, 'F', 113), +(215344, 'Estefania', 2013, 'F', 113), +(215345, 'Felicia', 2013, 'F', 113), +(215346, 'Finnley', 2013, 'F', 113), +(215347, 'Journie', 2013, 'F', 113), +(215348, 'Kari', 2013, 'F', 113), +(215349, 'Kenzlee', 2013, 'F', 113), +(215350, 'Keren', 2013, 'F', 113), +(215351, 'Layan', 2013, 'F', 113), +(215352, 'Liza', 2013, 'F', 113), +(215353, 'Mona', 2013, 'F', 113), +(215354, 'Shay', 2013, 'F', 113), +(215355, 'Afton', 2013, 'F', 112), +(215356, 'Aiza', 2013, 'F', 112), +(215357, 'Anissa', 2013, 'F', 112), +(215358, 'Arabelle', 2013, 'F', 112), +(215359, 'Emmaleigh', 2013, 'F', 112), +(215360, 'Emry', 2013, 'F', 112), +(215361, 'Ivey', 2013, 'F', 112), +(215362, 'Jazmyne', 2013, 'F', 112), +(215363, 'Kenadee', 2013, 'F', 112), +(215364, 'Kerrigan', 2013, 'F', 112), +(215365, 'Lilli', 2013, 'F', 112), +(215366, 'Magaly', 2013, 'F', 112), +(215367, 'Marcela', 2013, 'F', 112), +(215368, 'Presleigh', 2013, 'F', 112), +(215369, 'Avril', 2013, 'F', 111), +(215370, 'Dianna', 2013, 'F', 111), +(215371, 'Estefany', 2013, 'F', 111), +(215372, 'Janely', 2013, 'F', 111), +(215373, 'Jaslynn', 2013, 'F', 111), +(215374, 'Noelani', 2013, 'F', 111), +(215375, 'Tahiry', 2013, 'F', 111), +(215376, 'Tatianna', 2013, 'F', 111), +(215377, 'Adaleigh', 2013, 'F', 110), +(215378, 'Billie', 2013, 'F', 110), +(215379, 'Carrington', 2013, 'F', 110), +(215380, 'Dasia', 2013, 'F', 110), +(215381, 'Emoni', 2013, 'F', 110), +(215382, 'Ever', 2013, 'F', 110), +(215383, 'Melisa', 2013, 'F', 110), +(215384, 'Oaklee', 2013, 'F', 110), +(215385, 'Priscila', 2013, 'F', 110), +(215386, 'Rocio', 2013, 'F', 110), +(215387, 'Sonja', 2013, 'F', 110), +(215388, 'Trisha', 2013, 'F', 110), +(215389, 'Adalina', 2013, 'F', 109), +(215390, 'Aleeyah', 2013, 'F', 109), +(215391, 'Ashly', 2013, 'F', 109), +(215392, 'Dasha', 2013, 'F', 109), +(215393, 'Devin', 2013, 'F', 109), +(215394, 'Diane', 2013, 'F', 109), +(215395, 'Fabiola', 2013, 'F', 109), +(215396, 'Giulia', 2013, 'F', 109), +(215397, 'Jaci', 2013, 'F', 109), +(215398, 'Jacklyn', 2013, 'F', 109), +(215399, 'Kalynn', 2013, 'F', 109), +(215400, 'Katharine', 2013, 'F', 109), +(215401, 'Lupita', 2013, 'F', 109), +(215402, 'Mari', 2013, 'F', 109), +(215403, 'Merida', 2013, 'F', 109), +(215404, 'Rylin', 2013, 'F', 109), +(215405, 'Sheyla', 2013, 'F', 109), +(215406, 'Stormy', 2013, 'F', 109), +(215407, 'Tanvi', 2013, 'F', 109), +(215408, 'Alyanna', 2013, 'F', 108), +(215409, 'Annalynn', 2013, 'F', 108), +(215410, 'Baila', 2013, 'F', 108), +(215411, 'Briar', 2013, 'F', 108), +(215412, 'Hafsa', 2013, 'F', 108), +(215413, 'Khloee', 2013, 'F', 108), +(215414, 'Kirra', 2013, 'F', 108), +(215415, 'May', 2013, 'F', 108), +(215416, 'Milly', 2013, 'F', 108), +(215417, 'Nikita', 2013, 'F', 108), +(215418, 'Novalee', 2013, 'F', 108), +(215419, 'Veronika', 2013, 'F', 108), +(215420, 'Waverly', 2013, 'F', 108), +(215421, 'Amberly', 2013, 'F', 107), +(215422, 'Austin', 2013, 'F', 107), +(215423, 'Cooper', 2013, 'F', 107), +(215424, 'Khadijah', 2013, 'F', 107), +(215425, 'Lyrik', 2013, 'F', 107), +(215426, 'Monique', 2013, 'F', 107), +(215427, 'Nila', 2013, 'F', 107), +(215428, 'Niyah', 2013, 'F', 107), +(215429, 'Raeleigh', 2013, 'F', 107), +(215430, 'Tamar', 2013, 'F', 107), +(215431, 'Taya', 2013, 'F', 107), +(215432, 'Zaina', 2013, 'F', 107), +(215433, 'Ayvah', 2013, 'F', 106), +(215434, 'Danae', 2013, 'F', 106), +(215435, 'Emeri', 2013, 'F', 106), +(215436, 'Kaliah', 2013, 'F', 106), +(215437, 'Lakyn', 2013, 'F', 106), +(215438, 'Milla', 2013, 'F', 106), +(215439, 'Rhiannon', 2013, 'F', 106), +(215440, 'Winnie', 2013, 'F', 106), +(215441, 'Aadya', 2013, 'F', 105), +(215442, 'Aila', 2013, 'F', 105), +(215443, 'Angely', 2013, 'F', 105), +(215444, 'Asiya', 2013, 'F', 105), +(215445, 'Braylin', 2013, 'F', 105), +(215446, 'Brystol', 2013, 'F', 105), +(215447, 'Calleigh', 2013, 'F', 105), +(215448, 'Ebony', 2013, 'F', 105), +(215449, 'Jaslene', 2013, 'F', 105), +(215450, 'Jeanette', 2013, 'F', 105), +(215451, 'Leann', 2013, 'F', 105), +(215452, 'Leyna', 2013, 'F', 105), +(215453, 'Lux', 2013, 'F', 105), +(215454, 'Meagan', 2013, 'F', 105), +(215455, 'Mindy', 2013, 'F', 105), +(215456, 'Yasmeen', 2013, 'F', 105), +(215457, 'Yolanda', 2013, 'F', 105), +(215458, 'Alyana', 2013, 'F', 104), +(215459, 'Arwen', 2013, 'F', 104), +(215460, 'Gentry', 2013, 'F', 104), +(215461, 'Jailynn', 2013, 'F', 104), +(215462, 'Leanne', 2013, 'F', 104), +(215463, 'Mayte', 2013, 'F', 104), +(215464, 'Natali', 2013, 'F', 104), +(215465, 'Rochel', 2013, 'F', 104), +(215466, 'Sana', 2013, 'F', 104), +(215467, 'Tayler', 2013, 'F', 104), +(215468, 'Adalia', 2013, 'F', 103), +(215469, 'Aislinn', 2013, 'F', 103), +(215470, 'Constance', 2013, 'F', 103), +(215471, 'Daniyah', 2013, 'F', 103), +(215472, 'Evan', 2013, 'F', 103), +(215473, 'Gitty', 2013, 'F', 103), +(215474, 'Loren', 2013, 'F', 103), +(215475, 'Moira', 2013, 'F', 103), +(215476, 'Montana', 2013, 'F', 103), +(215477, 'Ryder', 2013, 'F', 103), +(215478, 'Ameera', 2013, 'F', 102), +(215479, 'Amilia', 2013, 'F', 102), +(215480, 'Berenice', 2013, 'F', 102), +(215481, 'Cailey', 2013, 'F', 102), +(215482, 'Charis', 2013, 'F', 102), +(215483, 'Cienna', 2013, 'F', 102), +(215484, 'Halo', 2013, 'F', 102), +(215485, 'Kelis', 2013, 'F', 102), +(215486, 'Khalia', 2013, 'F', 102), +(215487, 'Reilly', 2013, 'F', 102), +(215488, 'Zaynab', 2013, 'F', 102), +(215489, 'Zoee', 2013, 'F', 102), +(215490, 'Alexandrea', 2013, 'F', 101), +(215491, 'Alize', 2013, 'F', 101), +(215492, 'Althea', 2013, 'F', 101), +(215493, 'Ayden', 2013, 'F', 101), +(215494, 'Janelly', 2013, 'F', 101), +(215495, 'Janna', 2013, 'F', 101), +(215496, 'Juanita', 2013, 'F', 101), +(215497, 'Kiya', 2013, 'F', 101), +(215498, 'Lexy', 2013, 'F', 101), +(215499, 'Marceline', 2013, 'F', 101), +(215500, 'Mazie', 2013, 'F', 101), +(215501, 'Nechama', 2013, 'F', 101), +(215502, 'Saydee', 2013, 'F', 101), +(215503, 'Star', 2013, 'F', 101), +(215504, 'Vianney', 2013, 'F', 101), +(215505, 'Zaida', 2013, 'F', 101), +(215506, 'Zella', 2013, 'F', 101), +(215507, 'Alyna', 2013, 'F', 100), +(215508, 'Avary', 2013, 'F', 100), +(215509, 'Brook', 2013, 'F', 100), +(215510, 'Calli', 2013, 'F', 100), +(215511, 'Cielo', 2013, 'F', 100), +(215512, 'Haidyn', 2013, 'F', 100), +(215513, 'Janeth', 2013, 'F', 100), +(215514, 'Kristine', 2013, 'F', 100), +(215515, 'Melani', 2013, 'F', 100), +(215516, 'Olyvia', 2013, 'F', 100), +(215517, 'Shaniyah', 2013, 'F', 100), +(215518, 'Zola', 2013, 'F', 100), +(215519, 'Noah', 2013, 'M', 18179), +(215520, 'Liam', 2013, 'M', 18087), +(215521, 'Jacob', 2013, 'M', 18072), +(215522, 'Mason', 2013, 'M', 17653), +(215523, 'William', 2013, 'M', 16570), +(215524, 'Ethan', 2013, 'M', 16198), +(215525, 'Michael', 2013, 'M', 15426), +(215526, 'Alexander', 2013, 'M', 14854), +(215527, 'Jayden', 2013, 'M', 14712), +(215528, 'Daniel', 2013, 'M', 14219), +(215529, 'Elijah', 2013, 'M', 13717), +(215530, 'Aiden', 2013, 'M', 13575), +(215531, 'James', 2013, 'M', 13502), +(215532, 'Benjamin', 2013, 'M', 13443), +(215533, 'Matthew', 2013, 'M', 13288), +(215534, 'Jackson', 2013, 'M', 12553), +(215535, 'Logan', 2013, 'M', 12323), +(215536, 'David', 2013, 'M', 12308), +(215537, 'Anthony', 2013, 'M', 12216), +(215538, 'Joseph', 2013, 'M', 12167), +(215539, 'Joshua', 2013, 'M', 11761), +(215540, 'Andrew', 2013, 'M', 11622), +(215541, 'Lucas', 2013, 'M', 11514), +(215542, 'Gabriel', 2013, 'M', 11175), +(215543, 'Samuel', 2013, 'M', 11067), +(215544, 'Christopher', 2013, 'M', 10815), +(215545, 'John', 2013, 'M', 10670), +(215546, 'Dylan', 2013, 'M', 10086), +(215547, 'Isaac', 2013, 'M', 10068), +(215548, 'Ryan', 2013, 'M', 9850), +(215549, 'Nathan', 2013, 'M', 9676), +(215550, 'Carter', 2013, 'M', 9555), +(215551, 'Caleb', 2013, 'M', 9553), +(215552, 'Luke', 2013, 'M', 9546), +(215553, 'Christian', 2013, 'M', 9293), +(215554, 'Hunter', 2013, 'M', 8934), +(215555, 'Henry', 2013, 'M', 8847), +(215556, 'Owen', 2013, 'M', 8743), +(215557, 'Landon', 2013, 'M', 8714), +(215558, 'Jack', 2013, 'M', 8554), +(215559, 'Wyatt', 2013, 'M', 8533), +(215560, 'Jonathan', 2013, 'M', 8507), +(215561, 'Eli', 2013, 'M', 7913), +(215562, 'Isaiah', 2013, 'M', 7817), +(215563, 'Sebastian', 2013, 'M', 7530), +(215564, 'Jaxon', 2013, 'M', 7525), +(215565, 'Julian', 2013, 'M', 7498), +(215566, 'Brayden', 2013, 'M', 7412), +(215567, 'Gavin', 2013, 'M', 7402), +(215568, 'Levi', 2013, 'M', 7390), +(215569, 'Aaron', 2013, 'M', 7278), +(215570, 'Oliver', 2013, 'M', 7249), +(215571, 'Jordan', 2013, 'M', 7167), +(215572, 'Nicholas', 2013, 'M', 7113), +(215573, 'Evan', 2013, 'M', 7093), +(215574, 'Connor', 2013, 'M', 7089), +(215575, 'Charles', 2013, 'M', 6994), +(215576, 'Jeremiah', 2013, 'M', 6919), +(215577, 'Cameron', 2013, 'M', 6831), +(215578, 'Adrian', 2013, 'M', 6825), +(215579, 'Thomas', 2013, 'M', 6756), +(215580, 'Robert', 2013, 'M', 6679), +(215581, 'Tyler', 2013, 'M', 6618), +(215582, 'Austin', 2013, 'M', 6464), +(215583, 'Colton', 2013, 'M', 6463), +(215584, 'Jace', 2013, 'M', 6370), +(215585, 'Angel', 2013, 'M', 6346), +(215586, 'Dominic', 2013, 'M', 6298), +(215587, 'Josiah', 2013, 'M', 6270), +(215588, 'Brandon', 2013, 'M', 6205), +(215589, 'Ayden', 2013, 'M', 6054), +(215590, 'Kevin', 2013, 'M', 5918), +(215591, 'Zachary', 2013, 'M', 5726), +(215592, 'Parker', 2013, 'M', 5651), +(215593, 'Blake', 2013, 'M', 5629), +(215594, 'Jose', 2013, 'M', 5612), +(215595, 'Grayson', 2013, 'M', 5536), +(215596, 'Chase', 2013, 'M', 5524), +(215597, 'Jason', 2013, 'M', 5492), +(215598, 'Ian', 2013, 'M', 5401), +(215599, 'Bentley', 2013, 'M', 5360), +(215600, 'Adam', 2013, 'M', 5227), +(215601, 'Xavier', 2013, 'M', 4958), +(215602, 'Cooper', 2013, 'M', 4872), +(215603, 'Justin', 2013, 'M', 4849), +(215604, 'Nolan', 2013, 'M', 4736), +(215605, 'Hudson', 2013, 'M', 4653), +(215606, 'Easton', 2013, 'M', 4636), +(215607, 'Jase', 2013, 'M', 4545), +(215608, 'Carson', 2013, 'M', 4521), +(215609, 'Nathaniel', 2013, 'M', 4504), +(215610, 'Jaxson', 2013, 'M', 4439), +(215611, 'Kayden', 2013, 'M', 4411), +(215612, 'Brody', 2013, 'M', 4319), +(215613, 'Lincoln', 2013, 'M', 4024), +(215614, 'Tristan', 2013, 'M', 3993), +(215615, 'Luis', 2013, 'M', 3991), +(215616, 'Damian', 2013, 'M', 3958), +(215617, 'Camden', 2013, 'M', 3881), +(215618, 'Juan', 2013, 'M', 3875), +(215619, 'Vincent', 2013, 'M', 3843), +(215620, 'Bryson', 2013, 'M', 3793), +(215621, 'Ryder', 2013, 'M', 3764), +(215622, 'Asher', 2013, 'M', 3698), +(215623, 'Carlos', 2013, 'M', 3668), +(215624, 'Micah', 2013, 'M', 3664), +(215625, 'Jesus', 2013, 'M', 3663), +(215626, 'Maxwell', 2013, 'M', 3627), +(215627, 'Mateo', 2013, 'M', 3575), +(215628, 'Alex', 2013, 'M', 3535), +(215629, 'Max', 2013, 'M', 3509), +(215630, 'Leo', 2013, 'M', 3495), +(215631, 'Elias', 2013, 'M', 3487), +(215632, 'Cole', 2013, 'M', 3443), +(215633, 'Miles', 2013, 'M', 3406), +(215634, 'Silas', 2013, 'M', 3391), +(215635, 'Bryce', 2013, 'M', 3346), +(215636, 'Eric', 2013, 'M', 3247), +(215637, 'Brantley', 2013, 'M', 3180), +(215638, 'Sawyer', 2013, 'M', 3157), +(215639, 'Declan', 2013, 'M', 3109), +(215640, 'Kaiden', 2013, 'M', 3092), +(215641, 'Braxton', 2013, 'M', 3091), +(215642, 'Colin', 2013, 'M', 3036), +(215643, 'Timothy', 2013, 'M', 3033), +(215644, 'Santiago', 2013, 'M', 3024), +(215645, 'Antonio', 2013, 'M', 3014), +(215646, 'Giovanni', 2013, 'M', 2975), +(215647, 'Hayden', 2013, 'M', 2951), +(215648, 'Diego', 2013, 'M', 2911), +(215649, 'Leonardo', 2013, 'M', 2904), +(215650, 'Bryan', 2013, 'M', 2884), +(215651, 'Jonah', 2013, 'M', 2883), +(215652, 'Miguel', 2013, 'M', 2881), +(215653, 'Roman', 2013, 'M', 2869), +(215654, 'Steven', 2013, 'M', 2865), +(215655, 'Ivan', 2013, 'M', 2854), +(215656, 'Kaleb', 2013, 'M', 2853), +(215657, 'Wesley', 2013, 'M', 2832), +(215658, 'Richard', 2013, 'M', 2784), +(215659, 'Jaden', 2013, 'M', 2773), +(215660, 'Ezra', 2013, 'M', 2729), +(215661, 'Victor', 2013, 'M', 2723), +(215662, 'Joel', 2013, 'M', 2717), +(215663, 'Edward', 2013, 'M', 2693), +(215664, 'Aidan', 2013, 'M', 2655), +(215665, 'Jayce', 2013, 'M', 2650), +(215666, 'Preston', 2013, 'M', 2645), +(215667, 'Greyson', 2013, 'M', 2641), +(215668, 'Brian', 2013, 'M', 2636), +(215669, 'Kaden', 2013, 'M', 2617), +(215670, 'Ashton', 2013, 'M', 2607), +(215671, 'Alan', 2013, 'M', 2600), +(215672, 'Patrick', 2013, 'M', 2583), +(215673, 'Kyle', 2013, 'M', 2575), +(215674, 'Riley', 2013, 'M', 2546), +(215675, 'Jesse', 2013, 'M', 2541), +(215676, 'George', 2013, 'M', 2539), +(215677, 'Jeremy', 2013, 'M', 2519), +(215678, 'Marcus', 2013, 'M', 2514), +(215679, 'Jude', 2013, 'M', 2505), +(215680, 'Harrison', 2013, 'M', 2502), +(215681, 'Weston', 2013, 'M', 2480), +(215682, 'Ryker', 2013, 'M', 2475), +(215683, 'Alejandro', 2013, 'M', 2462), +(215684, 'Jake', 2013, 'M', 2438), +(215685, 'Axel', 2013, 'M', 2423), +(215686, 'Grant', 2013, 'M', 2414), +(215687, 'Theodore', 2013, 'M', 2413), +(215688, 'Maddox', 2013, 'M', 2411), +(215689, 'Emmanuel', 2013, 'M', 2391), +(215690, 'Cayden', 2013, 'M', 2378), +(215691, 'Emmett', 2013, 'M', 2355), +(215692, 'Brady', 2013, 'M', 2327), +(215693, 'Bradley', 2013, 'M', 2315), +(215694, 'Malachi', 2013, 'M', 2305), +(215695, 'Gael', 2013, 'M', 2303), +(215696, 'Oscar', 2013, 'M', 2235), +(215697, 'Tucker', 2013, 'M', 2232), +(215698, 'Abel', 2013, 'M', 2231), +(215699, 'Jameson', 2013, 'M', 2225), +(215700, 'Abraham', 2013, 'M', 2209), +(215701, 'Caden', 2013, 'M', 2206), +(215702, 'Mark', 2013, 'M', 2195), +(215703, 'Sean', 2013, 'M', 2188), +(215704, 'Ezekiel', 2013, 'M', 2177), +(215705, 'Kenneth', 2013, 'M', 2166), +(215706, 'Gage', 2013, 'M', 2143), +(215707, 'Everett', 2013, 'M', 2141), +(215708, 'Nicolas', 2013, 'M', 2124), +(215709, 'Kingston', 2013, 'M', 2121), +(215710, 'Zayden', 2013, 'M', 2103), +(215711, 'King', 2013, 'M', 2093), +(215712, 'Bennett', 2013, 'M', 2070), +(215713, 'Calvin', 2013, 'M', 2058), +(215714, 'Avery', 2013, 'M', 2044), +(215715, 'Tanner', 2013, 'M', 2037), +(215716, 'Paul', 2013, 'M', 2028), +(215717, 'Kai', 2013, 'M', 1973), +(215718, 'Maximus', 2013, 'M', 1922), +(215719, 'Rylan', 2013, 'M', 1892), +(215720, 'Luca', 2013, 'M', 1891), +(215721, 'Graham', 2013, 'M', 1883), +(215722, 'Omar', 2013, 'M', 1878), +(215723, 'Derek', 2013, 'M', 1869), +(215724, 'Peter', 2013, 'M', 1846), +(215725, 'Jayceon', 2013, 'M', 1843), +(215726, 'Jorge', 2013, 'M', 1842), +(215727, 'Peyton', 2013, 'M', 1841), +(215728, 'Devin', 2013, 'M', 1834), +(215729, 'Collin', 2013, 'M', 1826), +(215730, 'Andres', 2013, 'M', 1794), +(215731, 'Jaiden', 2013, 'M', 1758), +(215732, 'Cody', 2013, 'M', 1746), +(215733, 'Zane', 2013, 'M', 1732), +(215734, 'Amir', 2013, 'M', 1720), +(215735, 'Corbin', 2013, 'M', 1698), +(215736, 'Francisco', 2013, 'M', 1697), +(215737, 'Xander', 2013, 'M', 1692), +(215738, 'Conner', 2013, 'M', 1689), +(215739, 'Eduardo', 2013, 'M', 1688), +(215740, 'Javier', 2013, 'M', 1678), +(215741, 'Jax', 2013, 'M', 1677), +(215742, 'Myles', 2013, 'M', 1628), +(215743, 'Griffin', 2013, 'M', 1620), +(215744, 'Iker', 2013, 'M', 1616), +(215745, 'Garrett', 2013, 'M', 1612), +(215746, 'Damien', 2013, 'M', 1608), +(215747, 'Simon', 2013, 'M', 1604), +(215748, 'Zander', 2013, 'M', 1591), +(215749, 'Seth', 2013, 'M', 1587), +(215750, 'Travis', 2013, 'M', 1575), +(215751, 'Charlie', 2013, 'M', 1556), +(215752, 'Cristian', 2013, 'M', 1531), +(215753, 'Trevor', 2013, 'M', 1526), +(215754, 'Zion', 2013, 'M', 1519), +(215755, 'Lorenzo', 2013, 'M', 1507), +(215756, 'Dean', 2013, 'M', 1506), +(215757, 'Chance', 2013, 'M', 1503), +(215758, 'Gunner', 2013, 'M', 1503), +(215759, 'Elliot', 2013, 'M', 1499), +(215760, 'Lukas', 2013, 'M', 1487), +(215761, 'Cash', 2013, 'M', 1475), +(215762, 'Elliott', 2013, 'M', 1472), +(215763, 'Israel', 2013, 'M', 1467), +(215764, 'Manuel', 2013, 'M', 1465), +(215765, 'Jasper', 2013, 'M', 1457), +(215766, 'Josue', 2013, 'M', 1451), +(215767, 'Spencer', 2013, 'M', 1451), +(215768, 'Finn', 2013, 'M', 1449), +(215769, 'Keegan', 2013, 'M', 1449), +(215770, 'Stephen', 2013, 'M', 1445), +(215771, 'Fernando', 2013, 'M', 1426), +(215772, 'Ricardo', 2013, 'M', 1426), +(215773, 'Mario', 2013, 'M', 1414), +(215774, 'Jeffrey', 2013, 'M', 1402), +(215775, 'Shane', 2013, 'M', 1392), +(215776, 'Clayton', 2013, 'M', 1380), +(215777, 'Reid', 2013, 'M', 1369), +(215778, 'Erick', 2013, 'M', 1359), +(215779, 'Cesar', 2013, 'M', 1353), +(215780, 'Paxton', 2013, 'M', 1347), +(215781, 'Judah', 2013, 'M', 1338), +(215782, 'Martin', 2013, 'M', 1336), +(215783, 'Raymond', 2013, 'M', 1334), +(215784, 'Trenton', 2013, 'M', 1327), +(215785, 'Johnny', 2013, 'M', 1321), +(215786, 'Andre', 2013, 'M', 1312), +(215787, 'Tyson', 2013, 'M', 1312), +(215788, 'Beau', 2013, 'M', 1297), +(215789, 'Maverick', 2013, 'M', 1294), +(215790, 'Landen', 2013, 'M', 1291), +(215791, 'Caiden', 2013, 'M', 1290), +(215792, 'Troy', 2013, 'M', 1280), +(215793, 'Dominick', 2013, 'M', 1279), +(215794, 'Kyler', 2013, 'M', 1258), +(215795, 'Hector', 2013, 'M', 1254), +(215796, 'Cruz', 2013, 'M', 1245), +(215797, 'Beckett', 2013, 'M', 1243), +(215798, 'Johnathan', 2013, 'M', 1243), +(215799, 'Donovan', 2013, 'M', 1232), +(215800, 'Edwin', 2013, 'M', 1231), +(215801, 'Kameron', 2013, 'M', 1217), +(215802, 'Drake', 2013, 'M', 1213), +(215803, 'Marco', 2013, 'M', 1211), +(215804, 'Edgar', 2013, 'M', 1208), +(215805, 'Rafael', 2013, 'M', 1206), +(215806, 'Holden', 2013, 'M', 1204), +(215807, 'Dante', 2013, 'M', 1200), +(215808, 'Jaylen', 2013, 'M', 1197), +(215809, 'Waylon', 2013, 'M', 1197), +(215810, 'Emiliano', 2013, 'M', 1193), +(215811, 'Rowan', 2013, 'M', 1189), +(215812, 'Alexis', 2013, 'M', 1188), +(215813, 'Andy', 2013, 'M', 1185), +(215814, 'Felix', 2013, 'M', 1177), +(215815, 'Gregory', 2013, 'M', 1176), +(215816, 'Drew', 2013, 'M', 1174), +(215817, 'Karter', 2013, 'M', 1174), +(215818, 'Emilio', 2013, 'M', 1172), +(215819, 'Brooks', 2013, 'M', 1159), +(215820, 'Dallas', 2013, 'M', 1155), +(215821, 'Anderson', 2013, 'M', 1149), +(215822, 'Lane', 2013, 'M', 1146), +(215823, 'Jared', 2013, 'M', 1144), +(215824, 'Skyler', 2013, 'M', 1116), +(215825, 'Angelo', 2013, 'M', 1112), +(215826, 'Shawn', 2013, 'M', 1105), +(215827, 'Aden', 2013, 'M', 1104), +(215828, 'Erik', 2013, 'M', 1101), +(215829, 'Fabian', 2013, 'M', 1095), +(215830, 'Dalton', 2013, 'M', 1094), +(215831, 'Milo', 2013, 'M', 1094), +(215832, 'Sergio', 2013, 'M', 1089), +(215833, 'Louis', 2013, 'M', 1065), +(215834, 'Titus', 2013, 'M', 1062), +(215835, 'Braylon', 2013, 'M', 1044), +(215836, 'Kendrick', 2013, 'M', 1043), +(215837, 'August', 2013, 'M', 1039), +(215838, 'Dawson', 2013, 'M', 1028), +(215839, 'Emanuel', 2013, 'M', 1028), +(215840, 'Reed', 2013, 'M', 1027), +(215841, 'Arthur', 2013, 'M', 1024), +(215842, 'Leon', 2013, 'M', 1012), +(215843, 'Jett', 2013, 'M', 1011), +(215844, 'Brendan', 2013, 'M', 1004), +(215845, 'Frank', 2013, 'M', 1003), +(215846, 'Marshall', 2013, 'M', 988), +(215847, 'Emerson', 2013, 'M', 979), +(215848, 'Desmond', 2013, 'M', 976), +(215849, 'Colt', 2013, 'M', 974), +(215850, 'Karson', 2013, 'M', 973), +(215851, 'Messiah', 2013, 'M', 973), +(215852, 'Derrick', 2013, 'M', 972), +(215853, 'Zaiden', 2013, 'M', 959), +(215854, 'Braden', 2013, 'M', 958), +(215855, 'Amari', 2013, 'M', 953), +(215856, 'Roberto', 2013, 'M', 951), +(215857, 'Joaquin', 2013, 'M', 950), +(215858, 'Romeo', 2013, 'M', 950), +(215859, 'Malik', 2013, 'M', 939), +(215860, 'Walter', 2013, 'M', 934), +(215861, 'Nehemiah', 2013, 'M', 925), +(215862, 'Brennan', 2013, 'M', 924), +(215863, 'Knox', 2013, 'M', 924), +(215864, 'Pedro', 2013, 'M', 924), +(215865, 'Julius', 2013, 'M', 919), +(215866, 'Grady', 2013, 'M', 917), +(215867, 'Allen', 2013, 'M', 913), +(215868, 'Ali', 2013, 'M', 901), +(215869, 'Archer', 2013, 'M', 897), +(215870, 'Dakota', 2013, 'M', 895), +(215871, 'Kamden', 2013, 'M', 894), +(215872, 'Maximiliano', 2013, 'M', 889), +(215873, 'Ruben', 2013, 'M', 886), +(215874, 'Quinn', 2013, 'M', 881), +(215875, 'Barrett', 2013, 'M', 877), +(215876, 'Tate', 2013, 'M', 876), +(215877, 'Corey', 2013, 'M', 873), +(215878, 'Marcos', 2013, 'M', 868), +(215879, 'Adan', 2013, 'M', 867), +(215880, 'Remington', 2013, 'M', 867), +(215881, 'Braylen', 2013, 'M', 866), +(215882, 'Phillip', 2013, 'M', 861), +(215883, 'Kason', 2013, 'M', 854), +(215884, 'Major', 2013, 'M', 850), +(215885, 'Kellan', 2013, 'M', 841), +(215886, 'Gideon', 2013, 'M', 840), +(215887, 'Cohen', 2013, 'M', 839), +(215888, 'Walker', 2013, 'M', 834), +(215889, 'River', 2013, 'M', 827), +(215890, 'Taylor', 2013, 'M', 822), +(215891, 'Jayson', 2013, 'M', 809), +(215892, 'Brycen', 2013, 'M', 807), +(215893, 'Abram', 2013, 'M', 805), +(215894, 'Cade', 2013, 'M', 804), +(215895, 'Matteo', 2013, 'M', 796), +(215896, 'Dillon', 2013, 'M', 795), +(215897, 'Damon', 2013, 'M', 791), +(215898, 'Kolton', 2013, 'M', 786), +(215899, 'Dexter', 2013, 'M', 782), +(215900, 'Phoenix', 2013, 'M', 781), +(215901, 'Noel', 2013, 'M', 775), +(215902, 'Porter', 2013, 'M', 774), +(215903, 'Brock', 2013, 'M', 773), +(215904, 'Leland', 2013, 'M', 767), +(215905, 'Philip', 2013, 'M', 766), +(215906, 'Ty', 2013, 'M', 763), +(215907, 'Enrique', 2013, 'M', 762), +(215908, 'Jay', 2013, 'M', 760), +(215909, 'Danny', 2013, 'M', 759), +(215910, 'Esteban', 2013, 'M', 757), +(215911, 'Keith', 2013, 'M', 757), +(215912, 'Kellen', 2013, 'M', 757), +(215913, 'Gerardo', 2013, 'M', 756), +(215914, 'Armando', 2013, 'M', 754), +(215915, 'Gunnar', 2013, 'M', 754), +(215916, 'Orion', 2013, 'M', 753), +(215917, 'Zachariah', 2013, 'M', 748), +(215918, 'Colby', 2013, 'M', 743), +(215919, 'Ismael', 2013, 'M', 741), +(215920, 'Ronald', 2013, 'M', 740), +(215921, 'Pablo', 2013, 'M', 737), +(215922, 'Atticus', 2013, 'M', 733), +(215923, 'Trey', 2013, 'M', 729), +(215924, 'Quentin', 2013, 'M', 727), +(215925, 'Ryland', 2013, 'M', 724), +(215926, 'Kash', 2013, 'M', 722), +(215927, 'Raul', 2013, 'M', 719), +(215928, 'Enzo', 2013, 'M', 716), +(215929, 'Darius', 2013, 'M', 715), +(215930, 'Julio', 2013, 'M', 714), +(215931, 'Rodrigo', 2013, 'M', 710), +(215932, 'Landyn', 2013, 'M', 709), +(215933, 'Jakob', 2013, 'M', 708), +(215934, 'Kade', 2013, 'M', 707), +(215935, 'Bruce', 2013, 'M', 705), +(215936, 'Donald', 2013, 'M', 704), +(215937, 'Ari', 2013, 'M', 702), +(215938, 'Keaton', 2013, 'M', 699), +(215939, 'Solomon', 2013, 'M', 699), +(215940, 'Albert', 2013, 'M', 695), +(215941, 'Muhammad', 2013, 'M', 693), +(215942, 'Rocco', 2013, 'M', 691), +(215943, 'Rhett', 2013, 'M', 688), +(215944, 'Cason', 2013, 'M', 686), +(215945, 'Jaime', 2013, 'M', 683), +(215946, 'Scott', 2013, 'M', 680), +(215947, 'Maximilian', 2013, 'M', 676), +(215948, 'Chandler', 2013, 'M', 674), +(215949, 'Mathew', 2013, 'M', 670), +(215950, 'Russell', 2013, 'M', 666), +(215951, 'Ronan', 2013, 'M', 665), +(215952, 'Dustin', 2013, 'M', 664), +(215953, 'Tony', 2013, 'M', 660), +(215954, 'Cyrus', 2013, 'M', 659), +(215955, 'Jensen', 2013, 'M', 658), +(215956, 'Hugo', 2013, 'M', 655), +(215957, 'Saul', 2013, 'M', 654), +(215958, 'Deacon', 2013, 'M', 652), +(215959, 'Trent', 2013, 'M', 652), +(215960, 'Davis', 2013, 'M', 647), +(215961, 'Colten', 2013, 'M', 646), +(215962, 'Malcolm', 2013, 'M', 646), +(215963, 'Mohamed', 2013, 'M', 645), +(215964, 'Devon', 2013, 'M', 640), +(215965, 'Izaiah', 2013, 'M', 640), +(215966, 'Randy', 2013, 'M', 639), +(215967, 'Jerry', 2013, 'M', 632), +(215968, 'Ibrahim', 2013, 'M', 631), +(215969, 'Prince', 2013, 'M', 629), +(215970, 'Tristen', 2013, 'M', 623), +(215971, 'Alec', 2013, 'M', 622), +(215972, 'Dennis', 2013, 'M', 621), +(215973, 'Chris', 2013, 'M', 620), +(215974, 'Mitchell', 2013, 'M', 614), +(215975, 'Clark', 2013, 'M', 613), +(215976, 'Finnegan', 2013, 'M', 609), +(215977, 'Gustavo', 2013, 'M', 609), +(215978, 'Rory', 2013, 'M', 609), +(215979, 'Jamison', 2013, 'M', 608), +(215980, 'Pierce', 2013, 'M', 607), +(215981, 'Leonel', 2013, 'M', 606), +(215982, 'Khalil', 2013, 'M', 597), +(215983, 'Nash', 2013, 'M', 597), +(215984, 'Moses', 2013, 'M', 596), +(215985, 'Kasen', 2013, 'M', 595), +(215986, 'Darren', 2013, 'M', 591), +(215987, 'Issac', 2013, 'M', 589), +(215988, 'Braydon', 2013, 'M', 585), +(215989, 'Adriel', 2013, 'M', 584), +(215990, 'Jaxton', 2013, 'M', 584), +(215991, 'Justice', 2013, 'M', 584), +(215992, 'Lawrence', 2013, 'M', 584), +(215993, 'Alberto', 2013, 'M', 583), +(215994, 'Curtis', 2013, 'M', 583), +(215995, 'Larry', 2013, 'M', 580), +(215996, 'Warren', 2013, 'M', 580), +(215997, 'Zayne', 2013, 'M', 579), +(215998, 'Yahir', 2013, 'M', 572), +(215999, 'Jimmy', 2013, 'M', 571), +(216000, 'Uriel', 2013, 'M', 571), +(216001, 'Finley', 2013, 'M', 569), +(216002, 'Jacoby', 2013, 'M', 566), +(216003, 'Jonas', 2013, 'M', 566), +(216004, 'Nico', 2013, 'M', 563), +(216005, 'Armani', 2013, 'M', 561), +(216006, 'Thiago', 2013, 'M', 561), +(216007, 'Tobias', 2013, 'M', 559), +(216008, 'Rhys', 2013, 'M', 558), +(216009, 'Casey', 2013, 'M', 555), +(216010, 'Frederick', 2013, 'M', 553), +(216011, 'Jaxen', 2013, 'M', 553), +(216012, 'Kobe', 2013, 'M', 549), +(216013, 'Franklin', 2013, 'M', 548), +(216014, 'Marvin', 2013, 'M', 548), +(216015, 'Ricky', 2013, 'M', 546), +(216016, 'Talon', 2013, 'M', 546), +(216017, 'Ace', 2013, 'M', 545), +(216018, 'Jalen', 2013, 'M', 544), +(216019, 'Alonzo', 2013, 'M', 542), +(216020, 'Arjun', 2013, 'M', 541), +(216021, 'Sullivan', 2013, 'M', 540), +(216022, 'Alfredo', 2013, 'M', 538), +(216023, 'Francis', 2013, 'M', 535), +(216024, 'Moises', 2013, 'M', 535), +(216025, 'Case', 2013, 'M', 530), +(216026, 'Brayan', 2013, 'M', 525), +(216027, 'Alijah', 2013, 'M', 524), +(216028, 'Arturo', 2013, 'M', 523), +(216029, 'Lawson', 2013, 'M', 522), +(216030, 'Raylan', 2013, 'M', 521), +(216031, 'Nikolas', 2013, 'M', 519), +(216032, 'Mekhi', 2013, 'M', 518), +(216033, 'Byron', 2013, 'M', 515), +(216034, 'Carmelo', 2013, 'M', 513), +(216035, 'Nasir', 2013, 'M', 513), +(216036, 'Ahmed', 2013, 'M', 510), +(216037, 'Reece', 2013, 'M', 509), +(216038, 'Royce', 2013, 'M', 509), +(216039, 'Mauricio', 2013, 'M', 508), +(216040, 'Moshe', 2013, 'M', 507), +(216041, 'Sylas', 2013, 'M', 507), +(216042, 'Roy', 2013, 'M', 506), +(216043, 'Beckham', 2013, 'M', 503), +(216044, 'Payton', 2013, 'M', 503), +(216045, 'Raiden', 2013, 'M', 501), +(216046, 'Gianni', 2013, 'M', 500), +(216047, 'Ellis', 2013, 'M', 499), +(216048, 'Korbin', 2013, 'M', 499), +(216049, 'Maurice', 2013, 'M', 499), +(216050, 'Kayson', 2013, 'M', 497), +(216051, 'Johan', 2013, 'M', 496), +(216052, 'Aarav', 2013, 'M', 495), +(216053, 'Isaias', 2013, 'M', 495), +(216054, 'Aldo', 2013, 'M', 494), +(216055, 'Arian', 2013, 'M', 494), +(216056, 'Jamari', 2013, 'M', 492), +(216057, 'Kristopher', 2013, 'M', 491), +(216058, 'Uriah', 2013, 'M', 491), +(216059, 'Cannon', 2013, 'M', 488), +(216060, 'Douglas', 2013, 'M', 488), +(216061, 'Skylar', 2013, 'M', 488), +(216062, 'Milan', 2013, 'M', 486), +(216063, 'Kane', 2013, 'M', 484), +(216064, 'Tatum', 2013, 'M', 484), +(216065, 'Dorian', 2013, 'M', 483), +(216066, 'Wade', 2013, 'M', 483), +(216067, 'Dane', 2013, 'M', 481), +(216068, 'Toby', 2013, 'M', 481), +(216069, 'Bryant', 2013, 'M', 480), +(216070, 'Quinton', 2013, 'M', 479), +(216071, 'Asa', 2013, 'M', 476), +(216072, 'Sam', 2013, 'M', 476), +(216073, 'Joe', 2013, 'M', 471), +(216074, 'Kieran', 2013, 'M', 471), +(216075, 'Mohammed', 2013, 'M', 471), +(216076, 'Roger', 2013, 'M', 471), +(216077, 'Channing', 2013, 'M', 469), +(216078, 'Daxton', 2013, 'M', 468), +(216079, 'Ezequiel', 2013, 'M', 468), +(216080, 'Orlando', 2013, 'M', 468), +(216081, 'Nathanael', 2013, 'M', 466), +(216082, 'Zackary', 2013, 'M', 465), +(216083, 'Malakai', 2013, 'M', 464), +(216084, 'Matias', 2013, 'M', 464), +(216085, 'Boston', 2013, 'M', 463), +(216086, 'Ahmad', 2013, 'M', 457), +(216087, 'Dominik', 2013, 'M', 456), +(216088, 'Lance', 2013, 'M', 455), +(216089, 'Alvin', 2013, 'M', 453), +(216090, 'Odin', 2013, 'M', 450), +(216091, 'Conor', 2013, 'M', 449), +(216092, 'Cullen', 2013, 'M', 447), +(216093, 'Mohammad', 2013, 'M', 446), +(216094, 'Benson', 2013, 'M', 445), +(216095, 'Deandre', 2013, 'M', 445), +(216096, 'Gary', 2013, 'M', 443), +(216097, 'Blaine', 2013, 'M', 442), +(216098, 'Carl', 2013, 'M', 441), +(216099, 'Kian', 2013, 'M', 441), +(216100, 'Nelson', 2013, 'M', 440), +(216101, 'Sterling', 2013, 'M', 440), +(216102, 'Salvador', 2013, 'M', 436), +(216103, 'Luka', 2013, 'M', 433), +(216104, 'Nikolai', 2013, 'M', 433), +(216105, 'Niko', 2013, 'M', 432), +(216106, 'Nixon', 2013, 'M', 431), +(216107, 'Bowen', 2013, 'M', 429), +(216108, 'Kyrie', 2013, 'M', 429), +(216109, 'Brenden', 2013, 'M', 428), +(216110, 'Callen', 2013, 'M', 428), +(216111, 'Vihaan', 2013, 'M', 428), +(216112, 'Terry', 2013, 'M', 426), +(216113, 'Demetrius', 2013, 'M', 424), +(216114, 'Luciano', 2013, 'M', 423), +(216115, 'Rohan', 2013, 'M', 422), +(216116, 'Raphael', 2013, 'M', 421), +(216117, 'Reese', 2013, 'M', 421), +(216118, 'Xzavier', 2013, 'M', 421), +(216119, 'Amare', 2013, 'M', 420), +(216120, 'Quincy', 2013, 'M', 420), +(216121, 'Ramon', 2013, 'M', 420), +(216122, 'Eddie', 2013, 'M', 418), +(216123, 'Hayes', 2013, 'M', 416), +(216124, 'Matthias', 2013, 'M', 415), +(216125, 'Jefferson', 2013, 'M', 414), +(216126, 'London', 2013, 'M', 414), +(216127, 'Noe', 2013, 'M', 414), +(216128, 'Yusuf', 2013, 'M', 414), +(216129, 'Kelvin', 2013, 'M', 411), +(216130, 'Madden', 2013, 'M', 408), +(216131, 'Terrance', 2013, 'M', 405), +(216132, 'Layne', 2013, 'M', 403), +(216133, 'Bentlee', 2013, 'M', 402), +(216134, 'Harvey', 2013, 'M', 402), +(216135, 'Harley', 2013, 'M', 399), +(216136, 'Julien', 2013, 'M', 398), +(216137, 'Kristian', 2013, 'M', 398), +(216138, 'Sincere', 2013, 'M', 398), +(216139, 'Melvin', 2013, 'M', 397), +(216140, 'Emmitt', 2013, 'M', 393), +(216141, 'Winston', 2013, 'M', 393), +(216142, 'Lucian', 2013, 'M', 392), +(216143, 'Neil', 2013, 'M', 392), +(216144, 'Rodney', 2013, 'M', 392), +(216145, 'Hank', 2013, 'M', 390), +(216146, 'Jeffery', 2013, 'M', 390), +(216147, 'Rex', 2013, 'M', 390), +(216148, 'Wilson', 2013, 'M', 390), +(216149, 'Ernesto', 2013, 'M', 389), +(216150, 'Mathias', 2013, 'M', 389), +(216151, 'Alessandro', 2013, 'M', 388), +(216152, 'Ayaan', 2013, 'M', 388), +(216153, 'Memphis', 2013, 'M', 386), +(216154, 'Princeton', 2013, 'M', 386), +(216155, 'Tripp', 2013, 'M', 385), +(216156, 'Santino', 2013, 'M', 383), +(216157, 'Jon', 2013, 'M', 382), +(216158, 'Lewis', 2013, 'M', 382), +(216159, 'Dax', 2013, 'M', 380), +(216160, 'Eden', 2013, 'M', 380), +(216161, 'Joey', 2013, 'M', 380), +(216162, 'Trace', 2013, 'M', 380), +(216163, 'Crosby', 2013, 'M', 378), +(216164, 'Nickolas', 2013, 'M', 378), +(216165, 'Bruno', 2013, 'M', 377), +(216166, 'Neymar', 2013, 'M', 376), +(216167, 'Cory', 2013, 'M', 374), +(216168, 'Marc', 2013, 'M', 374), +(216169, 'Kendall', 2013, 'M', 373), +(216170, 'Abdullah', 2013, 'M', 371), +(216171, 'Soren', 2013, 'M', 370), +(216172, 'Hamza', 2013, 'M', 369), +(216173, 'Allan', 2013, 'M', 368), +(216174, 'Davion', 2013, 'M', 368), +(216175, 'Brentley', 2013, 'M', 367), +(216176, 'Jasiah', 2013, 'M', 366), +(216177, 'Tommy', 2013, 'M', 366), +(216178, 'Edison', 2013, 'M', 365), +(216179, 'Harper', 2013, 'M', 365), +(216180, 'Morgan', 2013, 'M', 363), +(216181, 'Zain', 2013, 'M', 363), +(216182, 'Flynn', 2013, 'M', 362), +(216183, 'Theo', 2013, 'M', 361), +(216184, 'Roland', 2013, 'M', 360), +(216185, 'Bobby', 2013, 'M', 359), +(216186, 'Samson', 2013, 'M', 359), +(216187, 'Brett', 2013, 'M', 358), +(216188, 'Chad', 2013, 'M', 358), +(216189, 'Lee', 2013, 'M', 357), +(216190, 'Rayan', 2013, 'M', 357), +(216191, 'Ray', 2013, 'M', 356), +(216192, 'Branson', 2013, 'M', 355), +(216193, 'Kylan', 2013, 'M', 355), +(216194, 'Zechariah', 2013, 'M', 355), +(216195, 'Arlo', 2013, 'M', 354), +(216196, 'Bronson', 2013, 'M', 354), +(216197, 'Lennox', 2013, 'M', 354), +(216198, 'Stanley', 2013, 'M', 354), +(216199, 'Yosef', 2013, 'M', 352), +(216200, 'Casen', 2013, 'M', 349), +(216201, 'Micheal', 2013, 'M', 349), +(216202, 'Reginald', 2013, 'M', 349), +(216203, 'Alonso', 2013, 'M', 348), +(216204, 'Kareem', 2013, 'M', 348), +(216205, 'Leonard', 2013, 'M', 347), +(216206, 'Augustus', 2013, 'M', 346), +(216207, 'Billy', 2013, 'M', 345), +(216208, 'Conrad', 2013, 'M', 345), +(216209, 'Guillermo', 2013, 'M', 345), +(216210, 'Tomas', 2013, 'M', 345), +(216211, 'Elisha', 2013, 'M', 344), +(216212, 'Makai', 2013, 'M', 344), +(216213, 'Aryan', 2013, 'M', 342), +(216214, 'Otto', 2013, 'M', 341), +(216215, 'Adonis', 2013, 'M', 340), +(216216, 'Jagger', 2013, 'M', 340), +(216217, 'Westin', 2013, 'M', 340), +(216218, 'Chaim', 2013, 'M', 339), +(216219, 'Keagan', 2013, 'M', 338), +(216220, 'Dayton', 2013, 'M', 337), +(216221, 'Kyson', 2013, 'M', 335), +(216222, 'Brodie', 2013, 'M', 334), +(216223, 'Leonidas', 2013, 'M', 334), +(216224, 'Alden', 2013, 'M', 331), +(216225, 'Aron', 2013, 'M', 330), +(216226, 'Willie', 2013, 'M', 330), +(216227, 'Aydin', 2013, 'M', 329), +(216228, 'Terrence', 2013, 'M', 329), +(216229, 'Valentino', 2013, 'M', 329), +(216230, 'Braeden', 2013, 'M', 328), +(216231, 'Harry', 2013, 'M', 328), +(216232, 'Blaze', 2013, 'M', 327), +(216233, 'Marlon', 2013, 'M', 327), +(216234, 'Gerald', 2013, 'M', 325), +(216235, 'Shaun', 2013, 'M', 325), +(216236, 'Lamar', 2013, 'M', 324), +(216237, 'Legend', 2013, 'M', 323), +(216238, 'Duke', 2013, 'M', 322), +(216239, 'Jessie', 2013, 'M', 322), +(216240, 'Layton', 2013, 'M', 322), +(216241, 'Kody', 2013, 'M', 321), +(216242, 'Kole', 2013, 'M', 321), +(216243, 'Sage', 2013, 'M', 321), +(216244, 'Terrell', 2013, 'M', 321), +(216245, 'Clay', 2013, 'M', 320), +(216246, 'Dwayne', 2013, 'M', 320), +(216247, 'Felipe', 2013, 'M', 319), +(216248, 'Kamari', 2013, 'M', 319), +(216249, 'Maxim', 2013, 'M', 319), +(216250, 'Omari', 2013, 'M', 318), +(216251, 'Crew', 2013, 'M', 317), +(216252, 'Lionel', 2013, 'M', 317), +(216253, 'Rogelio', 2013, 'M', 317), +(216254, 'Vicente', 2013, 'M', 317), +(216255, 'Bo', 2013, 'M', 316), +(216256, 'Gauge', 2013, 'M', 316), +(216257, 'Emery', 2013, 'M', 314), +(216258, 'Jermaine', 2013, 'M', 314), +(216259, 'Ronnie', 2013, 'M', 313), +(216260, 'Will', 2013, 'M', 313), +(216261, 'Elian', 2013, 'M', 310), +(216262, 'Giovani', 2013, 'M', 310), +(216263, 'Hendrix', 2013, 'M', 310), +(216264, 'Javon', 2013, 'M', 307), +(216265, 'Alexzander', 2013, 'M', 306), +(216266, 'Ben', 2013, 'M', 304), +(216267, 'Kolby', 2013, 'M', 303), +(216268, 'Rayden', 2013, 'M', 303), +(216269, 'Camron', 2013, 'M', 302), +(216270, 'Jamarion', 2013, 'M', 302), +(216271, 'Urijah', 2013, 'M', 301), +(216272, 'Remy', 2013, 'M', 300), +(216273, 'Cassius', 2013, 'M', 299), +(216274, 'Jamal', 2013, 'M', 299), +(216275, 'Jaydon', 2013, 'M', 298), +(216276, 'Ariel', 2013, 'M', 297), +(216277, 'Braiden', 2013, 'M', 297), +(216278, 'Kyree', 2013, 'M', 297), +(216279, 'Triston', 2013, 'M', 296), +(216280, 'Wayne', 2013, 'M', 296), +(216281, 'Landry', 2013, 'M', 295), +(216282, 'Jerome', 2013, 'M', 293), +(216283, 'Junior', 2013, 'M', 293), +(216284, 'Killian', 2013, 'M', 293), +(216285, 'Lennon', 2013, 'M', 293), +(216286, 'Jamie', 2013, 'M', 292), +(216287, 'Oakley', 2013, 'M', 290), +(216288, 'Rene', 2013, 'M', 290), +(216289, 'Samir', 2013, 'M', 290), +(216290, 'Davian', 2013, 'M', 289), +(216291, 'Ronin', 2013, 'M', 289), +(216292, 'Amos', 2013, 'M', 288), +(216293, 'Darian', 2013, 'M', 288), +(216294, 'Eugene', 2013, 'M', 288), +(216295, 'Tristian', 2013, 'M', 288), +(216296, 'Atlas', 2013, 'M', 287), +(216297, 'Giancarlo', 2013, 'M', 287), +(216298, 'Jadiel', 2013, 'M', 287), +(216299, 'Vincenzo', 2013, 'M', 287), +(216300, 'Alfonso', 2013, 'M', 286), +(216301, 'Callum', 2013, 'M', 286), +(216302, 'Leandro', 2013, 'M', 286), +(216303, 'Mayson', 2013, 'M', 286), +(216304, 'Adrien', 2013, 'M', 285), +(216305, 'Brent', 2013, 'M', 285), +(216306, 'Cain', 2013, 'M', 285), +(216307, 'Callan', 2013, 'M', 285), +(216308, 'Jairo', 2013, 'M', 285), +(216309, 'Jonathon', 2013, 'M', 285), +(216310, 'Darrell', 2013, 'M', 284), +(216311, 'Fletcher', 2013, 'M', 283), +(216312, 'Kenny', 2013, 'M', 283), +(216313, 'Tyrone', 2013, 'M', 283), +(216314, 'Markus', 2013, 'M', 278), +(216315, 'Thaddeus', 2013, 'M', 278), +(216316, 'Zavier', 2013, 'M', 278), +(216317, 'Marcel', 2013, 'M', 275), +(216318, 'Marquis', 2013, 'M', 275), +(216319, 'Lyric', 2013, 'M', 274), +(216320, 'Draven', 2013, 'M', 272), +(216321, 'Misael', 2013, 'M', 272), +(216322, 'Abdiel', 2013, 'M', 271), +(216323, 'Ishaan', 2013, 'M', 271), +(216324, 'Ulises', 2013, 'M', 271), +(216325, 'Bodhi', 2013, 'M', 270), +(216326, 'Jamir', 2013, 'M', 270), +(216327, 'Mack', 2013, 'M', 269), +(216328, 'Marcelo', 2013, 'M', 269), +(216329, 'Davin', 2013, 'M', 268), +(216330, 'Justus', 2013, 'M', 268), +(216331, 'Craig', 2013, 'M', 267), +(216332, 'Rudy', 2013, 'M', 267), +(216333, 'Cedric', 2013, 'M', 266), +(216334, 'Frankie', 2013, 'M', 265), +(216335, 'Javion', 2013, 'M', 264), +(216336, 'Maxton', 2013, 'M', 264), +(216337, 'Deshawn', 2013, 'M', 263), +(216338, 'Jair', 2013, 'M', 263), +(216339, 'Cayson', 2013, 'M', 262), +(216340, 'Duncan', 2013, 'M', 262), +(216341, 'Gibson', 2013, 'M', 262), +(216342, 'Isiah', 2013, 'M', 261), +(216343, 'Hassan', 2013, 'M', 260), +(216344, 'Randall', 2013, 'M', 259), +(216345, 'Azariah', 2013, 'M', 258), +(216346, 'Darwin', 2013, 'M', 258), +(216347, 'Kale', 2013, 'M', 258), +(216348, 'Enoch', 2013, 'M', 257), +(216349, 'Kase', 2013, 'M', 257), +(216350, 'Kolten', 2013, 'M', 257), +(216351, 'Konnor', 2013, 'M', 256), +(216352, 'Lucca', 2013, 'M', 256), +(216353, 'Stefan', 2013, 'M', 256), +(216354, 'Konner', 2013, 'M', 255), +(216355, 'Dominique', 2013, 'M', 254), +(216356, 'Forrest', 2013, 'M', 254), +(216357, 'Gannon', 2013, 'M', 253), +(216358, 'Kymani', 2013, 'M', 253), +(216359, 'Maximo', 2013, 'M', 253), +(216360, 'Van', 2013, 'M', 253), +(216361, 'Jordyn', 2013, 'M', 252), +(216362, 'Alvaro', 2013, 'M', 251), +(216363, 'Coleman', 2013, 'M', 251), +(216364, 'Semaj', 2013, 'M', 251), +(216365, 'Sonny', 2013, 'M', 251), +(216366, 'Brice', 2013, 'M', 250), +(216367, 'Harlan', 2013, 'M', 250), +(216368, 'Rolando', 2013, 'M', 250), +(216369, 'Yousef', 2013, 'M', 250), +(216370, 'Johnathon', 2013, 'M', 249), +(216371, 'Quintin', 2013, 'M', 249), +(216372, 'Aydan', 2013, 'M', 248), +(216373, 'Cristopher', 2013, 'M', 248), +(216374, 'Damion', 2013, 'M', 248), +(216375, 'Ean', 2013, 'M', 248), +(216376, 'Zeke', 2013, 'M', 248), +(216377, 'Fisher', 2013, 'M', 247), +(216378, 'Jovanni', 2013, 'M', 247), +(216379, 'Seamus', 2013, 'M', 247), +(216380, 'Vaughn', 2013, 'M', 247), +(216381, 'Axton', 2013, 'M', 246), +(216382, 'Heath', 2013, 'M', 246), +(216383, 'Jadon', 2013, 'M', 246), +(216384, 'Ramiro', 2013, 'M', 246), +(216385, 'Vance', 2013, 'M', 245), +(216386, 'Yael', 2013, 'M', 243), +(216387, 'Jedidiah', 2013, 'M', 242), +(216388, 'Kamdyn', 2013, 'M', 242), +(216389, 'Rashad', 2013, 'M', 242), +(216390, 'Santos', 2013, 'M', 242), +(216391, 'Chace', 2013, 'M', 241), +(216392, 'Steve', 2013, 'M', 241), +(216393, 'Camdyn', 2013, 'M', 240), +(216394, 'Brecken', 2013, 'M', 239), +(216395, 'Kamryn', 2013, 'M', 239), +(216396, 'Marley', 2013, 'M', 239), +(216397, 'Valentin', 2013, 'M', 237), +(216398, 'Dilan', 2013, 'M', 236), +(216399, 'Mike', 2013, 'M', 236), +(216400, 'Hezekiah', 2013, 'M', 235), +(216401, 'Krish', 2013, 'M', 235), +(216402, 'Salvatore', 2013, 'M', 235), +(216403, 'Brantlee', 2013, 'M', 234), +(216404, 'Franco', 2013, 'M', 234), +(216405, 'Harold', 2013, 'M', 234), +(216406, 'Anders', 2013, 'M', 233), +(216407, 'Camren', 2013, 'M', 233), +(216408, 'Gilbert', 2013, 'M', 233), +(216409, 'Reuben', 2013, 'M', 233), +(216410, 'Turner', 2013, 'M', 233), +(216411, 'Emory', 2013, 'M', 232), +(216412, 'Joziah', 2013, 'M', 232), +(216413, 'Zaid', 2013, 'M', 232), +(216414, 'Zayn', 2013, 'M', 232), +(216415, 'Deangelo', 2013, 'M', 231), +(216416, 'Gavyn', 2013, 'M', 231), +(216417, 'Mustafa', 2013, 'M', 231), +(216418, 'Royal', 2013, 'M', 231), +(216419, 'Ares', 2013, 'M', 230), +(216420, 'Bently', 2013, 'M', 230), +(216421, 'Jamar', 2013, 'M', 230), +(216422, 'Titan', 2013, 'M', 230), +(216423, 'Arnav', 2013, 'M', 229), +(216424, 'Blaise', 2013, 'M', 229), +(216425, 'Bridger', 2013, 'M', 229), +(216426, 'Juelz', 2013, 'M', 229), +(216427, 'Ameer', 2013, 'M', 228), +(216428, 'Cortez', 2013, 'M', 228), +(216429, 'Rodolfo', 2013, 'M', 227), +(216430, 'Briggs', 2013, 'M', 226), +(216431, 'Hugh', 2013, 'M', 226), +(216432, 'Rey', 2013, 'M', 226), +(216433, 'Demarcus', 2013, 'M', 225), +(216434, 'Tristin', 2013, 'M', 225), +(216435, 'Benton', 2013, 'M', 224), +(216436, 'Giovanny', 2013, 'M', 223), +(216437, 'Jaylin', 2013, 'M', 222), +(216438, 'Aidyn', 2013, 'M', 221), +(216439, 'Efrain', 2013, 'M', 221), +(216440, 'Jorden', 2013, 'M', 221), +(216441, 'Jovani', 2013, 'M', 221), +(216442, 'Kaeden', 2013, 'M', 221), +(216443, 'Teagan', 2013, 'M', 221), +(216444, 'Clinton', 2013, 'M', 220), +(216445, 'Kingsley', 2013, 'M', 220), +(216446, 'Kamron', 2013, 'M', 219), +(216447, 'Makhi', 2013, 'M', 219), +(216448, 'Xavi', 2013, 'M', 219), +(216449, 'Aditya', 2013, 'M', 218), +(216450, 'Jericho', 2013, 'M', 218), +(216451, 'Ernest', 2013, 'M', 216), +(216452, 'Kaysen', 2013, 'M', 216), +(216453, 'Zaire', 2013, 'M', 216), +(216454, 'Deon', 2013, 'M', 215), +(216455, 'Foster', 2013, 'M', 213), +(216456, 'Lochlan', 2013, 'M', 213), +(216457, 'Miller', 2013, 'M', 213), +(216458, 'Antoine', 2013, 'M', 211), +(216459, 'Gilberto', 2013, 'M', 211), +(216460, 'Gino', 2013, 'M', 211), +(216461, 'Izayah', 2013, 'M', 211), +(216462, 'Maison', 2013, 'M', 211), +(216463, 'Garrison', 2013, 'M', 210), +(216464, 'Jaycob', 2013, 'M', 210), +(216465, 'Stetson', 2013, 'M', 210), +(216466, 'Castiel', 2013, 'M', 209), +(216467, 'Dangelo', 2013, 'M', 209), +(216468, 'Keenan', 2013, 'M', 209), +(216469, 'Reagan', 2013, 'M', 209), +(216470, 'Rylee', 2013, 'M', 209), +(216471, 'Truman', 2013, 'M', 209), +(216472, 'Brysen', 2013, 'M', 208), +(216473, 'Cristiano', 2013, 'M', 208), +(216474, 'Kohen', 2013, 'M', 208), +(216475, 'Magnus', 2013, 'M', 208), +(216476, 'Sidney', 2013, 'M', 208), +(216477, 'Alfred', 2013, 'M', 207), +(216478, 'Augustine', 2013, 'M', 207), +(216479, 'Deegan', 2013, 'M', 207), +(216480, 'Ephraim', 2013, 'M', 207), +(216481, 'Kalel', 2013, 'M', 207), +(216482, 'Langston', 2013, 'M', 207), +(216483, 'Osvaldo', 2013, 'M', 207), +(216484, 'Houston', 2013, 'M', 206), +(216485, 'Todd', 2013, 'M', 206), +(216486, 'Tyree', 2013, 'M', 206), +(216487, 'Yair', 2013, 'M', 206), +(216488, 'Apollo', 2013, 'M', 205), +(216489, 'Pierre', 2013, 'M', 205), +(216490, 'Anson', 2013, 'M', 204), +(216491, 'Camryn', 2013, 'M', 204), +(216492, 'Jayse', 2013, 'M', 204), +(216493, 'Leroy', 2013, 'M', 204), +(216494, 'Rowen', 2013, 'M', 204), +(216495, 'Santana', 2013, 'M', 204), +(216496, 'Tyrell', 2013, 'M', 204), +(216497, 'Corban', 2013, 'M', 203), +(216498, 'Grey', 2013, 'M', 203), +(216499, 'Kannon', 2013, 'M', 203), +(216500, 'Lachlan', 2013, 'M', 203), +(216501, 'Aaden', 2013, 'M', 202), +(216502, 'Denzel', 2013, 'M', 202), +(216503, 'Yadiel', 2013, 'M', 202), +(216504, 'Brendon', 2013, 'M', 201), +(216505, 'Jakobe', 2013, 'M', 201), +(216506, 'Jordy', 2013, 'M', 201), +(216507, 'Brenton', 2013, 'M', 200), +(216508, 'Thatcher', 2013, 'M', 200), +(216509, 'Branden', 2013, 'M', 199), +(216510, 'Dario', 2013, 'M', 199), +(216511, 'Immanuel', 2013, 'M', 199), +(216512, 'Darien', 2013, 'M', 198), +(216513, 'Camilo', 2013, 'M', 196), +(216514, 'Clyde', 2013, 'M', 196), +(216515, 'Davon', 2013, 'M', 196), +(216516, 'Graeme', 2013, 'M', 196), +(216517, 'Rocky', 2013, 'M', 196), +(216518, 'Broderick', 2013, 'M', 195), +(216519, 'Eliot', 2013, 'M', 195), +(216520, 'Abner', 2013, 'M', 194), +(216521, 'Kamren', 2013, 'M', 194), +(216522, 'Leif', 2013, 'M', 194), +(216523, 'Agustin', 2013, 'M', 193), +(216524, 'Howard', 2013, 'M', 193), +(216525, 'Jesiah', 2013, 'M', 193), +(216526, 'Ralph', 2013, 'M', 193), +(216527, 'Ross', 2013, 'M', 193), +(216528, 'Yisroel', 2013, 'M', 193), +(216529, 'Brennen', 2013, 'M', 192), +(216530, 'Freddy', 2013, 'M', 192), +(216531, 'Jordi', 2013, 'M', 192), +(216532, 'Judson', 2013, 'M', 192), +(216533, 'Mordechai', 2013, 'M', 192), +(216534, 'Carsen', 2013, 'M', 191), +(216535, 'Damarion', 2013, 'M', 191), +(216536, 'Dariel', 2013, 'M', 191), +(216537, 'Darnell', 2013, 'M', 191), +(216538, 'Darryl', 2013, 'M', 191), +(216539, 'Derick', 2013, 'M', 191), +(216540, 'Eliseo', 2013, 'M', 191), +(216541, 'Masen', 2013, 'M', 191), +(216542, 'Anton', 2013, 'M', 190), +(216543, 'Eliezer', 2013, 'M', 190), +(216544, 'Isai', 2013, 'M', 190), +(216545, 'Yehuda', 2013, 'M', 190), +(216546, 'Brogan', 2013, 'M', 188), +(216547, 'Gordon', 2013, 'M', 188), +(216548, 'Chevy', 2013, 'M', 187), +(216549, 'Damari', 2013, 'M', 186), +(216550, 'Dimitri', 2013, 'M', 186), +(216551, 'Graysen', 2013, 'M', 186), +(216552, 'Jionni', 2013, 'M', 186), +(216553, 'Keon', 2013, 'M', 186), +(216554, 'Shmuel', 2013, 'M', 186), +(216555, 'Elvis', 2013, 'M', 185), +(216556, 'Jean', 2013, 'M', 185), +(216557, 'Jaxx', 2013, 'M', 184), +(216558, 'Kooper', 2013, 'M', 184), +(216559, 'Sutton', 2013, 'M', 184), +(216560, 'Avi', 2013, 'M', 183), +(216561, 'Leighton', 2013, 'M', 183), +(216562, 'Westley', 2013, 'M', 183), +(216563, 'Baylor', 2013, 'M', 182), +(216564, 'Benicio', 2013, 'M', 182), +(216565, 'Cael', 2013, 'M', 182), +(216566, 'Gerard', 2013, 'M', 182), +(216567, 'Jabari', 2013, 'M', 182), +(216568, 'Jaeden', 2013, 'M', 182), +(216569, 'Ford', 2013, 'M', 181), +(216570, 'Ignacio', 2013, 'M', 181), +(216571, 'Kaison', 2013, 'M', 181), +(216572, 'Cale', 2013, 'M', 180), +(216573, 'Koen', 2013, 'M', 179), +(216574, 'Malaki', 2013, 'M', 179), +(216575, 'Roderick', 2013, 'M', 178), +(216576, 'Aarush', 2013, 'M', 177), +(216577, 'Finnley', 2013, 'M', 177), +(216578, 'Sheldon', 2013, 'M', 177), +(216579, 'Otis', 2013, 'M', 176), +(216580, 'Yaakov', 2013, 'M', 176), +(216581, 'Zack', 2013, 'M', 176), +(216582, 'Clarence', 2013, 'M', 175), +(216583, 'Deklan', 2013, 'M', 175), +(216584, 'Henrik', 2013, 'M', 175), +(216585, 'Maxx', 2013, 'M', 175), +(216586, 'Octavio', 2013, 'M', 175), +(216587, 'Ayan', 2013, 'M', 174), +(216588, 'Brayson', 2013, 'M', 174), +(216589, 'Deven', 2013, 'M', 174), +(216590, 'Emmet', 2013, 'M', 174), +(216591, 'Jayvion', 2013, 'M', 174), +(216592, 'Simeon', 2013, 'M', 174), +(216593, 'Braylin', 2013, 'M', 173), +(216594, 'Lucien', 2013, 'M', 173), +(216595, 'Marcello', 2013, 'M', 173), +(216596, 'Yahya', 2013, 'M', 173), +(216597, 'Youssef', 2013, 'M', 173), +(216598, 'Zyaire', 2013, 'M', 173), +(216599, 'Jovan', 2013, 'M', 172), +(216600, 'Nick', 2013, 'M', 172), +(216601, 'Gaige', 2013, 'M', 171), +(216602, 'Humberto', 2013, 'M', 171), +(216603, 'Jacen', 2013, 'M', 171), +(216604, 'Khalid', 2013, 'M', 171), +(216605, 'Rylen', 2013, 'M', 171), +(216606, 'Tyrese', 2013, 'M', 171), +(216607, 'Mariano', 2013, 'M', 170), +(216608, 'Mccoy', 2013, 'M', 170), +(216609, 'Milton', 2013, 'M', 170), +(216610, 'Nigel', 2013, 'M', 170), +(216611, 'Ridge', 2013, 'M', 170), +(216612, 'Armaan', 2013, 'M', 169), +(216613, 'Jaylon', 2013, 'M', 169), +(216614, 'Antony', 2013, 'M', 168), +(216615, 'Carlo', 2013, 'M', 168), +(216616, 'Cormac', 2013, 'M', 168), +(216617, 'Ewan', 2013, 'M', 168), +(216618, 'Ledger', 2013, 'M', 168), +(216619, 'Lyle', 2013, 'M', 168), +(216620, 'Joan', 2013, 'M', 167), +(216621, 'Karl', 2013, 'M', 167), +(216622, 'Yitzchok', 2013, 'M', 167), +(216623, 'Aedan', 2013, 'M', 166), +(216624, 'Bernard', 2013, 'M', 166), +(216625, 'Donte', 2013, 'M', 166), +(216626, 'Shiloh', 2013, 'M', 166), +(216627, 'Mikah', 2013, 'M', 165), +(216628, 'Menachem', 2013, 'M', 164), +(216629, 'Ulysses', 2013, 'M', 164), +(216630, 'Bradyn', 2013, 'M', 163), +(216631, 'Johann', 2013, 'M', 163), +(216632, 'Kenton', 2013, 'M', 163), +(216633, 'Stone', 2013, 'M', 163), +(216634, 'Glenn', 2013, 'M', 162), +(216635, 'Karim', 2013, 'M', 162), +(216636, 'Mikael', 2013, 'M', 162), +(216637, 'Vivaan', 2013, 'M', 162), +(216638, 'Zachery', 2013, 'M', 162), +(216639, 'Briar', 2013, 'M', 161), +(216640, 'Denver', 2013, 'M', 161), +(216641, 'Imran', 2013, 'M', 161), +(216642, 'Jael', 2013, 'M', 161), +(216643, 'Kaidyn', 2013, 'M', 161), +(216644, 'Kylen', 2013, 'M', 161), +(216645, 'Leeland', 2013, 'M', 161), +(216646, 'Quinten', 2013, 'M', 161), +(216647, 'Tobin', 2013, 'M', 161), +(216648, 'Harlem', 2013, 'M', 160), +(216649, 'Kent', 2013, 'M', 160), +(216650, 'Korbyn', 2013, 'M', 160), +(216651, 'Stephan', 2013, 'M', 160), +(216652, 'Trystan', 2013, 'M', 160), +(216653, 'Vince', 2013, 'M', 160), +(216654, 'Zev', 2013, 'M', 160), +(216655, 'Dion', 2013, 'M', 159), +(216656, 'Kelton', 2013, 'M', 159), +(216657, 'Kiyan', 2013, 'M', 159), +(216658, 'Bishop', 2013, 'M', 158), +(216659, 'Boone', 2013, 'M', 158), +(216660, 'Jaydan', 2013, 'M', 158), +(216661, 'Mac', 2013, 'M', 158), +(216662, 'Norman', 2013, 'M', 158), +(216663, 'Trayvon', 2013, 'M', 158), +(216664, 'Dereck', 2013, 'M', 157), +(216665, 'Fredrick', 2013, 'M', 157), +(216666, 'Haiden', 2013, 'M', 157), +(216667, 'Cairo', 2013, 'M', 156), +(216668, 'Dash', 2013, 'M', 156), +(216669, 'Elmer', 2013, 'M', 156), +(216670, 'Jai', 2013, 'M', 156), +(216671, 'Kael', 2013, 'M', 156), +(216672, 'Nikhil', 2013, 'M', 156), +(216673, 'Taj', 2013, 'M', 156), +(216674, 'Antwan', 2013, 'M', 155), +(216675, 'Gionni', 2013, 'M', 155), +(216676, 'Maddux', 2013, 'M', 155), +(216677, 'Robin', 2013, 'M', 155), +(216678, 'Sebastien', 2013, 'M', 155), +(216679, 'Syed', 2013, 'M', 155), +(216680, 'Yandel', 2013, 'M', 155), +(216681, 'Campbell', 2013, 'M', 154), +(216682, 'Coy', 2013, 'M', 154), +(216683, 'Ira', 2013, 'M', 154), +(216684, 'Jaxsen', 2013, 'M', 154), +(216685, 'Mikel', 2013, 'M', 154), +(216686, 'Shimon', 2013, 'M', 154), +(216687, 'Shlomo', 2013, 'M', 154), +(216688, 'Avraham', 2013, 'M', 153), +(216689, 'Colson', 2013, 'M', 153), +(216690, 'Emir', 2013, 'M', 153), +(216691, 'Jeremias', 2013, 'M', 153), +(216692, 'Kennedy', 2013, 'M', 153), +(216693, 'Keyon', 2013, 'M', 153), +(216694, 'Maksim', 2013, 'M', 153), +(216695, 'Boden', 2013, 'M', 152), +(216696, 'Kyran', 2013, 'M', 152), +(216697, 'Merrick', 2013, 'M', 152), +(216698, 'Tadeo', 2013, 'M', 152), +(216699, 'Zaylen', 2013, 'M', 152), +(216700, 'Corbyn', 2013, 'M', 151), +(216701, 'Domenic', 2013, 'M', 151), +(216702, 'Edmund', 2013, 'M', 151), +(216703, 'Harris', 2013, 'M', 151), +(216704, 'Kyan', 2013, 'M', 151), +(216705, 'Alton', 2013, 'M', 150), +(216706, 'Coen', 2013, 'M', 150), +(216707, 'Cornelius', 2013, 'M', 150), +(216708, 'Eddy', 2013, 'M', 150), +(216709, 'Fox', 2013, 'M', 150), +(216710, 'German', 2013, 'M', 150), +(216711, 'Gianluca', 2013, 'M', 150), +(216712, 'Jaycion', 2013, 'M', 150), +(216713, 'Josh', 2013, 'M', 150), +(216714, 'Jovanny', 2013, 'M', 150), +(216715, 'Pranav', 2013, 'M', 150), +(216716, 'Zackery', 2013, 'M', 150), +(216717, 'Aven', 2013, 'M', 149), +(216718, 'Bryden', 2013, 'M', 149), +(216719, 'Canaan', 2013, 'M', 149), +(216720, 'Guy', 2013, 'M', 149), +(216721, 'Karsen', 2013, 'M', 149), +(216722, 'Koda', 2013, 'M', 149), +(216723, 'Devan', 2013, 'M', 148), +(216724, 'Irvin', 2013, 'M', 148), +(216725, 'Jaquan', 2013, 'M', 148), +(216726, 'Kadyn', 2013, 'M', 148), +(216727, 'Nikko', 2013, 'M', 148), +(216728, 'Ronaldo', 2013, 'M', 148); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(216729, 'Trevon', 2013, 'M', 148), +(216730, 'Adolfo', 2013, 'M', 147), +(216731, 'Alexandro', 2013, 'M', 147), +(216732, 'Brighton', 2013, 'M', 147), +(216733, 'Coby', 2013, 'M', 147), +(216734, 'Dhruv', 2013, 'M', 147), +(216735, 'Isaak', 2013, 'M', 147), +(216736, 'Jaron', 2013, 'M', 147), +(216737, 'Louie', 2013, 'M', 147), +(216738, 'Musa', 2013, 'M', 147), +(216739, 'Reyansh', 2013, 'M', 147), +(216740, 'Siddharth', 2013, 'M', 147), +(216741, 'Aayden', 2013, 'M', 146), +(216742, 'Aston', 2013, 'M', 146), +(216743, 'Gonzalo', 2013, 'M', 146), +(216744, 'Jaceon', 2013, 'M', 146), +(216745, 'Kye', 2013, 'M', 146), +(216746, 'Marquise', 2013, 'M', 146), +(216747, 'Slade', 2013, 'M', 146), +(216748, 'Ahmir', 2013, 'M', 145), +(216749, 'Amar', 2013, 'M', 145), +(216750, 'Izaac', 2013, 'M', 145), +(216751, 'Austyn', 2013, 'M', 144), +(216752, 'Dale', 2013, 'M', 144), +(216753, 'Jacobi', 2013, 'M', 144), +(216754, 'Jarvis', 2013, 'M', 144), +(216755, 'Rayyan', 2013, 'M', 144), +(216756, 'Anakin', 2013, 'M', 143), +(216757, 'Gus', 2013, 'M', 143), +(216758, 'Zayd', 2013, 'M', 143), +(216759, 'Achilles', 2013, 'M', 142), +(216760, 'Benny', 2013, 'M', 142), +(216761, 'Destin', 2013, 'M', 142), +(216762, 'Jarrett', 2013, 'M', 142), +(216763, 'Kalvin', 2013, 'M', 142), +(216764, 'Rishi', 2013, 'M', 142), +(216765, 'Wallace', 2013, 'M', 142), +(216766, 'Abdirahman', 2013, 'M', 141), +(216767, 'Abdulrahman', 2013, 'M', 141), +(216768, 'Jet', 2013, 'M', 141), +(216769, 'Tevin', 2013, 'M', 141), +(216770, 'Trevin', 2013, 'M', 141), +(216771, 'Colter', 2013, 'M', 140), +(216772, 'Jaidyn', 2013, 'M', 140), +(216773, 'Adler', 2013, 'M', 139), +(216774, 'Geovanni', 2013, 'M', 139), +(216775, 'Idris', 2013, 'M', 139), +(216776, 'Zyon', 2013, 'M', 139), +(216777, 'Bilal', 2013, 'M', 138), +(216778, 'Daryl', 2013, 'M', 138), +(216779, 'Jamel', 2013, 'M', 138), +(216780, 'Kayleb', 2013, 'M', 138), +(216781, 'Clifford', 2013, 'M', 137), +(216782, 'Estevan', 2013, 'M', 137), +(216783, 'Ethen', 2013, 'M', 137), +(216784, 'Jaxxon', 2013, 'M', 137), +(216785, 'Jeramiah', 2013, 'M', 137), +(216786, 'Tiago', 2013, 'M', 137), +(216787, 'Zahir', 2013, 'M', 137), +(216788, 'Addison', 2013, 'M', 136), +(216789, 'Aleksander', 2013, 'M', 136), +(216790, 'Amarion', 2013, 'M', 136), +(216791, 'Aubrey', 2013, 'M', 136), +(216792, 'Haven', 2013, 'M', 136), +(216793, 'Lamont', 2013, 'M', 136), +(216794, 'Lloyd', 2013, 'M', 136), +(216795, 'Lyndon', 2013, 'M', 136), +(216796, 'Perry', 2013, 'M', 136), +(216797, 'Talan', 2013, 'M', 136), +(216798, 'Yeshua', 2013, 'M', 136), +(216799, 'Aamir', 2013, 'M', 135), +(216800, 'Aries', 2013, 'M', 135), +(216801, 'Cristobal', 2013, 'M', 135), +(216802, 'Diesel', 2013, 'M', 135), +(216803, 'Drayden', 2013, 'M', 135), +(216804, 'Elvin', 2013, 'M', 135), +(216805, 'Kain', 2013, 'M', 135), +(216806, 'Zaden', 2013, 'M', 135), +(216807, 'Ismail', 2013, 'M', 134), +(216808, 'Kyren', 2013, 'M', 134), +(216809, 'Presley', 2013, 'M', 134), +(216810, 'Reynaldo', 2013, 'M', 134), +(216811, 'Sami', 2013, 'M', 134), +(216812, 'Vladimir', 2013, 'M', 134), +(216813, 'Kolt', 2013, 'M', 133), +(216814, 'Raheem', 2013, 'M', 133), +(216815, 'Yaseen', 2013, 'M', 133), +(216816, 'Ajay', 2013, 'M', 132), +(216817, 'Alek', 2013, 'M', 132), +(216818, 'Alistair', 2013, 'M', 132), +(216819, 'Baron', 2013, 'M', 132), +(216820, 'Bernardo', 2013, 'M', 132), +(216821, 'Dezmond', 2013, 'M', 132), +(216822, 'Dwight', 2013, 'M', 132), +(216823, 'Eliel', 2013, 'M', 132), +(216824, 'Gatlin', 2013, 'M', 132), +(216825, 'Greysen', 2013, 'M', 132), +(216826, 'Jahmir', 2013, 'M', 132), +(216827, 'Tahj', 2013, 'M', 132), +(216828, 'Tayden', 2013, 'M', 132), +(216829, 'Treyvon', 2013, 'M', 132), +(216830, 'Andreas', 2013, 'M', 131), +(216831, 'Anish', 2013, 'M', 131), +(216832, 'Bodie', 2013, 'M', 131), +(216833, 'Carmine', 2013, 'M', 131), +(216834, 'Oskar', 2013, 'M', 131), +(216835, 'Brandt', 2013, 'M', 130), +(216836, 'Brigham', 2013, 'M', 130), +(216837, 'Keller', 2013, 'M', 130), +(216838, 'Cashton', 2013, 'M', 129), +(216839, 'Cian', 2013, 'M', 129), +(216840, 'Irving', 2013, 'M', 129), +(216841, 'Khristian', 2013, 'M', 129), +(216842, 'Kurt', 2013, 'M', 129), +(216843, 'Linus', 2013, 'M', 129), +(216844, 'Marek', 2013, 'M', 129), +(216845, 'Zamir', 2013, 'M', 129), +(216846, 'Zavion', 2013, 'M', 129), +(216847, 'Creed', 2013, 'M', 128), +(216848, 'Devyn', 2013, 'M', 128), +(216849, 'Dillan', 2013, 'M', 128), +(216850, 'Emmit', 2013, 'M', 128), +(216851, 'Hasan', 2013, 'M', 128), +(216852, 'Elan', 2013, 'M', 127), +(216853, 'Korben', 2013, 'M', 127), +(216854, 'Lathan', 2013, 'M', 127), +(216855, 'Zephaniah', 2013, 'M', 127), +(216856, 'Devonte', 2013, 'M', 126), +(216857, 'Eason', 2013, 'M', 126), +(216858, 'Finnian', 2013, 'M', 126), +(216859, 'Hollis', 2013, 'M', 126), +(216860, 'Jerimiah', 2013, 'M', 126), +(216861, 'Kace', 2013, 'M', 126), +(216862, 'Kyron', 2013, 'M', 126), +(216863, 'Rico', 2013, 'M', 126), +(216864, 'Torin', 2013, 'M', 126), +(216865, 'Viktor', 2013, 'M', 126), +(216866, 'Wilder', 2013, 'M', 126), +(216867, 'Alexavier', 2013, 'M', 125), +(216868, 'Austen', 2013, 'M', 125), +(216869, 'Boaz', 2013, 'M', 125), +(216870, 'Cristofer', 2013, 'M', 125), +(216871, 'Don', 2013, 'M', 125), +(216872, 'Jahir', 2013, 'M', 125), +(216873, 'Jaziel', 2013, 'M', 125), +(216874, 'Kashton', 2013, 'M', 125), +(216875, 'Kenji', 2013, 'M', 125), +(216876, 'Lucius', 2013, 'M', 125), +(216877, 'Bailey', 2013, 'M', 124), +(216878, 'Damani', 2013, 'M', 124), +(216879, 'Jaleel', 2013, 'M', 124), +(216880, 'Marko', 2013, 'M', 124), +(216881, 'Micaiah', 2013, 'M', 124), +(216882, 'Ryden', 2013, 'M', 124), +(216883, 'Zakaria', 2013, 'M', 124), +(216884, 'Cordell', 2013, 'M', 123), +(216885, 'Ely', 2013, 'M', 123), +(216886, 'Laith', 2013, 'M', 123), +(216887, 'Maddex', 2013, 'M', 123), +(216888, 'Shamar', 2013, 'M', 123), +(216889, 'Clint', 2013, 'M', 122), +(216890, 'Courtney', 2013, 'M', 122), +(216891, 'Dashawn', 2013, 'M', 122), +(216892, 'Daylen', 2013, 'M', 122), +(216893, 'Dyland', 2013, 'M', 122), +(216894, 'Ervin', 2013, 'M', 122), +(216895, 'Lester', 2013, 'M', 122), +(216896, 'Nathen', 2013, 'M', 122), +(216897, 'Wes', 2013, 'M', 122), +(216898, 'Bane', 2013, 'M', 121), +(216899, 'Dashiell', 2013, 'M', 121), +(216900, 'Eleazar', 2013, 'M', 121), +(216901, 'Eliyahu', 2013, 'M', 121), +(216902, 'Ever', 2013, 'M', 121), +(216903, 'Gray', 2013, 'M', 121), +(216904, 'Ishmael', 2013, 'M', 121), +(216905, 'Mikhail', 2013, 'M', 121), +(216906, 'Pierson', 2013, 'M', 121), +(216907, 'Rian', 2013, 'M', 121), +(216908, 'Savion', 2013, 'M', 121), +(216909, 'Smith', 2013, 'M', 121), +(216910, 'Aryeh', 2013, 'M', 120), +(216911, 'Denis', 2013, 'M', 120), +(216912, 'Francesco', 2013, 'M', 120), +(216913, 'Jakari', 2013, 'M', 120), +(216914, 'Jayven', 2013, 'M', 120), +(216915, 'Kamarion', 2013, 'M', 120), +(216916, 'Kenyon', 2013, 'M', 120), +(216917, 'Myron', 2013, 'M', 120), +(216918, 'Rowdy', 2013, 'M', 120), +(216919, 'Ansh', 2013, 'M', 119), +(216920, 'Atreyu', 2013, 'M', 119), +(216921, 'Carmello', 2013, 'M', 119), +(216922, 'Kasey', 2013, 'M', 119), +(216923, 'Maximillian', 2013, 'M', 119), +(216924, 'Ramsey', 2013, 'M', 119), +(216925, 'Ruger', 2013, 'M', 119), +(216926, 'Sammy', 2013, 'M', 119), +(216927, 'Braedyn', 2013, 'M', 118), +(216928, 'Dandre', 2013, 'M', 118), +(216929, 'Demarion', 2013, 'M', 118), +(216930, 'Jad', 2013, 'M', 118), +(216931, 'Kruz', 2013, 'M', 118), +(216932, 'Benito', 2013, 'M', 117), +(216933, 'Grayden', 2013, 'M', 117), +(216934, 'Javen', 2013, 'M', 117), +(216935, 'Jaydin', 2013, 'M', 117), +(216936, 'Wiley', 2013, 'M', 117), +(216937, 'Alaric', 2013, 'M', 116), +(216938, 'Freddie', 2013, 'M', 116), +(216939, 'Jordon', 2013, 'M', 116), +(216940, 'Kadin', 2013, 'M', 116), +(216941, 'Lonnie', 2013, 'M', 116), +(216942, 'Maddix', 2013, 'M', 116), +(216943, 'Nazir', 2013, 'M', 116), +(216944, 'Rigoberto', 2013, 'M', 116), +(216945, 'Terence', 2013, 'M', 116), +(216946, 'Bode', 2013, 'M', 115), +(216947, 'Emil', 2013, 'M', 115), +(216948, 'Hussein', 2013, 'M', 115), +(216949, 'Johnnie', 2013, 'M', 115), +(216950, 'Korey', 2013, 'M', 115), +(216951, 'Tzvi', 2013, 'M', 115), +(216952, 'Abdul', 2013, 'M', 114), +(216953, 'Arman', 2013, 'M', 114), +(216954, 'Beck', 2013, 'M', 114), +(216955, 'Brently', 2013, 'M', 114), +(216956, 'Brixton', 2013, 'M', 114), +(216957, 'Cecil', 2013, 'M', 114), +(216958, 'Deion', 2013, 'M', 114), +(216959, 'Eamon', 2013, 'M', 114), +(216960, 'Efren', 2013, 'M', 114), +(216961, 'Jamarcus', 2013, 'M', 114), +(216962, 'Josias', 2013, 'M', 114), +(216963, 'Keelan', 2013, 'M', 114), +(216964, 'Keshawn', 2013, 'M', 114), +(216965, 'Kiran', 2013, 'M', 114), +(216966, 'Koby', 2013, 'M', 114), +(216967, 'Lenny', 2013, 'M', 114), +(216968, 'Palmer', 2013, 'M', 114), +(216969, 'Tristyn', 2013, 'M', 114), +(216970, 'Abdullahi', 2013, 'M', 113), +(216971, 'Demari', 2013, 'M', 113), +(216972, 'Dev', 2013, 'M', 113), +(216973, 'Dewayne', 2013, 'M', 113), +(216974, 'Keoni', 2013, 'M', 113), +(216975, 'Leyton', 2013, 'M', 113), +(216976, 'Nate', 2013, 'M', 113), +(216977, 'Reilly', 2013, 'M', 113), +(216978, 'Veer', 2013, 'M', 113), +(216979, 'Hyrum', 2013, 'M', 112), +(216980, 'Kirk', 2013, 'M', 112), +(216981, 'Koa', 2013, 'M', 112), +(216982, 'Malakhi', 2013, 'M', 112), +(216983, 'Hagen', 2013, 'M', 111), +(216984, 'Jan', 2013, 'M', 111), +(216985, 'Kallen', 2013, 'M', 111), +(216986, 'Noble', 2013, 'M', 111), +(216987, 'Vernon', 2013, 'M', 111), +(216988, 'Westyn', 2013, 'M', 111), +(216989, 'Yariel', 2013, 'M', 111), +(216990, 'Zaidyn', 2013, 'M', 111), +(216991, 'Ammar', 2013, 'M', 110), +(216992, 'Axl', 2013, 'M', 110), +(216993, 'Blayne', 2013, 'M', 110), +(216994, 'Chaz', 2013, 'M', 110), +(216995, 'Clifton', 2013, 'M', 110), +(216996, 'Darion', 2013, 'M', 110), +(216997, 'Giuseppe', 2013, 'M', 110), +(216998, 'Jenson', 2013, 'M', 110), +(216999, 'Karsyn', 2013, 'M', 110), +(217000, 'Lian', 2013, 'M', 110), +(217001, 'Markel', 2013, 'M', 110), +(217002, 'Monroe', 2013, 'M', 110), +(217003, 'Nikola', 2013, 'M', 110), +(217004, 'Oren', 2013, 'M', 110), +(217005, 'Adin', 2013, 'M', 109), +(217006, 'Caius', 2013, 'M', 109), +(217007, 'Carver', 2013, 'M', 109), +(217008, 'Jasen', 2013, 'M', 109), +(217009, 'Lazarus', 2013, 'M', 109), +(217010, 'Meir', 2013, 'M', 109), +(217011, 'Truett', 2013, 'M', 109), +(217012, 'Benedict', 2013, 'M', 108), +(217013, 'Carsyn', 2013, 'M', 108), +(217014, 'Donnie', 2013, 'M', 108), +(217015, 'Duane', 2013, 'M', 108), +(217016, 'Izaak', 2013, 'M', 108), +(217017, 'Javian', 2013, 'M', 108), +(217018, 'Jayvon', 2013, 'M', 108), +(217019, 'Josef', 2013, 'M', 108), +(217020, 'Keanu', 2013, 'M', 108), +(217021, 'Kyden', 2013, 'M', 108), +(217022, 'Noam', 2013, 'M', 108), +(217023, 'Rome', 2013, 'M', 108), +(217024, 'Tariq', 2013, 'M', 108), +(217025, 'Yoel', 2013, 'M', 108), +(217026, 'Braxten', 2013, 'M', 107), +(217027, 'Bryton', 2013, 'M', 107), +(217028, 'Carsten', 2013, 'M', 107), +(217029, 'Darrius', 2013, 'M', 107), +(217030, 'Gian', 2013, 'M', 107), +(217031, 'Jencarlos', 2013, 'M', 107), +(217032, 'Tyce', 2013, 'M', 107), +(217033, 'Aaryan', 2013, 'M', 106), +(217034, 'Donavan', 2013, 'M', 106), +(217035, 'Eder', 2013, 'M', 106), +(217036, 'Massimo', 2013, 'M', 106), +(217037, 'Miguelangel', 2013, 'M', 106), +(217038, 'Nestor', 2013, 'M', 106), +(217039, 'Paris', 2013, 'M', 106), +(217040, 'Zakary', 2013, 'M', 106), +(217041, 'Athan', 2013, 'M', 105), +(217042, 'Braedon', 2013, 'M', 105), +(217043, 'Braxtyn', 2013, 'M', 105), +(217044, 'Canyon', 2013, 'M', 105), +(217045, 'Hiram', 2013, 'M', 105), +(217046, 'Jaysen', 2013, 'M', 105), +(217047, 'Johnpaul', 2013, 'M', 105), +(217048, 'Lazaro', 2013, 'M', 105), +(217049, 'Rickey', 2013, 'M', 105), +(217050, 'Shea', 2013, 'M', 105), +(217051, 'Tyshawn', 2013, 'M', 105), +(217052, 'Alexandre', 2013, 'M', 104), +(217053, 'Avrohom', 2013, 'M', 104), +(217054, 'Geoffrey', 2013, 'M', 104), +(217055, 'Markell', 2013, 'M', 104), +(217056, 'Masyn', 2013, 'M', 104), +(217057, 'Brantly', 2013, 'M', 103), +(217058, 'Forest', 2013, 'M', 103), +(217059, 'Kelly', 2013, 'M', 103), +(217060, 'Murphy', 2013, 'M', 103), +(217061, 'Barry', 2013, 'M', 102), +(217062, 'Chayce', 2013, 'M', 102), +(217063, 'Dovid', 2013, 'M', 102), +(217064, 'Faris', 2013, 'M', 102), +(217065, 'Glen', 2013, 'M', 102), +(217066, 'Jadyn', 2013, 'M', 102), +(217067, 'Kollin', 2013, 'M', 102), +(217068, 'Wesson', 2013, 'M', 102), +(217069, 'Ansel', 2013, 'M', 101), +(217070, 'Coltin', 2013, 'M', 101), +(217071, 'Dakari', 2013, 'M', 101), +(217072, 'Damoni', 2013, 'M', 101), +(217073, 'Fred', 2013, 'M', 101), +(217074, 'Hoyt', 2013, 'M', 101), +(217075, 'Osiris', 2013, 'M', 101), +(217076, 'Syncere', 2013, 'M', 101), +(217077, 'Yakov', 2013, 'M', 101), +(217078, 'Zakariya', 2013, 'M', 101), +(217079, 'Bronx', 2013, 'M', 100), +(217080, 'Canon', 2013, 'M', 100), +(217081, 'Caysen', 2013, 'M', 100), +(217082, 'Jakoby', 2013, 'M', 100), +(217083, 'Karsten', 2013, 'M', 100), +(217084, 'Patricio', 2013, 'M', 100), +(217085, 'Emma', 2014, 'F', 20799), +(217086, 'Olivia', 2014, 'F', 19674), +(217087, 'Sophia', 2014, 'F', 18490), +(217088, 'Isabella', 2014, 'F', 16950), +(217089, 'Ava', 2014, 'F', 15586), +(217090, 'Mia', 2014, 'F', 13442), +(217091, 'Emily', 2014, 'F', 12562), +(217092, 'Abigail', 2014, 'F', 11985), +(217093, 'Madison', 2014, 'F', 10247), +(217094, 'Charlotte', 2014, 'F', 10048), +(217095, 'Harper', 2014, 'F', 9564), +(217096, 'Sofia', 2014, 'F', 9542), +(217097, 'Avery', 2014, 'F', 9517), +(217098, 'Elizabeth', 2014, 'F', 9492), +(217099, 'Amelia', 2014, 'F', 8727), +(217100, 'Evelyn', 2014, 'F', 8692), +(217101, 'Ella', 2014, 'F', 8489), +(217102, 'Chloe', 2014, 'F', 8469), +(217103, 'Victoria', 2014, 'F', 7955), +(217104, 'Aubrey', 2014, 'F', 7589), +(217105, 'Grace', 2014, 'F', 7554), +(217106, 'Zoey', 2014, 'F', 7358), +(217107, 'Natalie', 2014, 'F', 7061), +(217108, 'Addison', 2014, 'F', 6950), +(217109, 'Lillian', 2014, 'F', 6869), +(217110, 'Brooklyn', 2014, 'F', 6767), +(217111, 'Lily', 2014, 'F', 6727), +(217112, 'Hannah', 2014, 'F', 6512), +(217113, 'Layla', 2014, 'F', 6428), +(217114, 'Scarlett', 2014, 'F', 5965), +(217115, 'Aria', 2014, 'F', 5893), +(217116, 'Zoe', 2014, 'F', 5828), +(217117, 'Samantha', 2014, 'F', 5680), +(217118, 'Anna', 2014, 'F', 5639), +(217119, 'Leah', 2014, 'F', 5563), +(217120, 'Audrey', 2014, 'F', 5531), +(217121, 'Ariana', 2014, 'F', 5461), +(217122, 'Allison', 2014, 'F', 5440), +(217123, 'Savannah', 2014, 'F', 5433), +(217124, 'Arianna', 2014, 'F', 5240), +(217125, 'Camila', 2014, 'F', 5194), +(217126, 'Penelope', 2014, 'F', 5062), +(217127, 'Gabriella', 2014, 'F', 5051), +(217128, 'Claire', 2014, 'F', 4991), +(217129, 'Aaliyah', 2014, 'F', 4850), +(217130, 'Sadie', 2014, 'F', 4823), +(217131, 'Riley', 2014, 'F', 4761), +(217132, 'Skylar', 2014, 'F', 4732), +(217133, 'Nora', 2014, 'F', 4708), +(217134, 'Sarah', 2014, 'F', 4647), +(217135, 'Hailey', 2014, 'F', 4595), +(217136, 'Kaylee', 2014, 'F', 4513), +(217137, 'Paisley', 2014, 'F', 4473), +(217138, 'Kennedy', 2014, 'F', 4459), +(217139, 'Ellie', 2014, 'F', 4442), +(217140, 'Peyton', 2014, 'F', 4426), +(217141, 'Annabelle', 2014, 'F', 4324), +(217142, 'Caroline', 2014, 'F', 4307), +(217143, 'Madelyn', 2014, 'F', 4289), +(217144, 'Serenity', 2014, 'F', 4284), +(217145, 'Aubree', 2014, 'F', 4258), +(217146, 'Lucy', 2014, 'F', 4257), +(217147, 'Alexa', 2014, 'F', 4227), +(217148, 'Alexis', 2014, 'F', 4188), +(217149, 'Nevaeh', 2014, 'F', 4188), +(217150, 'Stella', 2014, 'F', 4165), +(217151, 'Violet', 2014, 'F', 4156), +(217152, 'Genesis', 2014, 'F', 4144), +(217153, 'Mackenzie', 2014, 'F', 4122), +(217154, 'Bella', 2014, 'F', 4050), +(217155, 'Autumn', 2014, 'F', 4034), +(217156, 'Mila', 2014, 'F', 4033), +(217157, 'Kylie', 2014, 'F', 3928), +(217158, 'Maya', 2014, 'F', 3904), +(217159, 'Piper', 2014, 'F', 3840), +(217160, 'Alyssa', 2014, 'F', 3798), +(217161, 'Taylor', 2014, 'F', 3782), +(217162, 'Eleanor', 2014, 'F', 3704), +(217163, 'Melanie', 2014, 'F', 3681), +(217164, 'Naomi', 2014, 'F', 3677), +(217165, 'Faith', 2014, 'F', 3664), +(217166, 'Eva', 2014, 'F', 3651), +(217167, 'Katherine', 2014, 'F', 3651), +(217168, 'Lydia', 2014, 'F', 3609), +(217169, 'Brianna', 2014, 'F', 3582), +(217170, 'Julia', 2014, 'F', 3578), +(217171, 'Ashley', 2014, 'F', 3539), +(217172, 'Khloe', 2014, 'F', 3518), +(217173, 'Madeline', 2014, 'F', 3409), +(217174, 'Ruby', 2014, 'F', 3383), +(217175, 'Sophie', 2014, 'F', 3364), +(217176, 'Alexandra', 2014, 'F', 3288), +(217177, 'London', 2014, 'F', 3264), +(217178, 'Lauren', 2014, 'F', 3072), +(217179, 'Gianna', 2014, 'F', 3061), +(217180, 'Isabelle', 2014, 'F', 3044), +(217181, 'Alice', 2014, 'F', 3042), +(217182, 'Vivian', 2014, 'F', 3040), +(217183, 'Hadley', 2014, 'F', 2992), +(217184, 'Jasmine', 2014, 'F', 2988), +(217185, 'Morgan', 2014, 'F', 2984), +(217186, 'Kayla', 2014, 'F', 2982), +(217187, 'Cora', 2014, 'F', 2945), +(217188, 'Bailey', 2014, 'F', 2929), +(217189, 'Kimberly', 2014, 'F', 2883), +(217190, 'Reagan', 2014, 'F', 2882), +(217191, 'Hazel', 2014, 'F', 2877), +(217192, 'Clara', 2014, 'F', 2833), +(217193, 'Sydney', 2014, 'F', 2831), +(217194, 'Trinity', 2014, 'F', 2781), +(217195, 'Natalia', 2014, 'F', 2778), +(217196, 'Valentina', 2014, 'F', 2769), +(217197, 'Rylee', 2014, 'F', 2753), +(217198, 'Jocelyn', 2014, 'F', 2744), +(217199, 'Maria', 2014, 'F', 2740), +(217200, 'Aurora', 2014, 'F', 2718), +(217201, 'Eliana', 2014, 'F', 2708), +(217202, 'Brielle', 2014, 'F', 2638), +(217203, 'Liliana', 2014, 'F', 2624), +(217204, 'Mary', 2014, 'F', 2611), +(217205, 'Elena', 2014, 'F', 2598), +(217206, 'Molly', 2014, 'F', 2578), +(217207, 'Makayla', 2014, 'F', 2559), +(217208, 'Lilly', 2014, 'F', 2550), +(217209, 'Andrea', 2014, 'F', 2543), +(217210, 'Quinn', 2014, 'F', 2539), +(217211, 'Jordyn', 2014, 'F', 2533), +(217212, 'Adalynn', 2014, 'F', 2512), +(217213, 'Nicole', 2014, 'F', 2511), +(217214, 'Delilah', 2014, 'F', 2496), +(217215, 'Kendall', 2014, 'F', 2432), +(217216, 'Kinsley', 2014, 'F', 2429), +(217217, 'Ariel', 2014, 'F', 2419), +(217218, 'Payton', 2014, 'F', 2397), +(217219, 'Paige', 2014, 'F', 2395), +(217220, 'Mariah', 2014, 'F', 2383), +(217221, 'Brooke', 2014, 'F', 2375), +(217222, 'Willow', 2014, 'F', 2373), +(217223, 'Jade', 2014, 'F', 2369), +(217224, 'Lyla', 2014, 'F', 2368), +(217225, 'Mya', 2014, 'F', 2367), +(217226, 'Ximena', 2014, 'F', 2323), +(217227, 'Luna', 2014, 'F', 2314), +(217228, 'Isabel', 2014, 'F', 2313), +(217229, 'Mckenzie', 2014, 'F', 2303), +(217230, 'Ivy', 2014, 'F', 2269), +(217231, 'Josephine', 2014, 'F', 2255), +(217232, 'Amy', 2014, 'F', 2178), +(217233, 'Laila', 2014, 'F', 2133), +(217234, 'Isla', 2014, 'F', 2122), +(217235, 'Eden', 2014, 'F', 2117), +(217236, 'Adalyn', 2014, 'F', 2105), +(217237, 'Angelina', 2014, 'F', 2105), +(217238, 'Londyn', 2014, 'F', 2081), +(217239, 'Rachel', 2014, 'F', 2051), +(217240, 'Melody', 2014, 'F', 2048), +(217241, 'Juliana', 2014, 'F', 2045), +(217242, 'Kaitlyn', 2014, 'F', 2044), +(217243, 'Brooklynn', 2014, 'F', 2043), +(217244, 'Destiny', 2014, 'F', 2043), +(217245, 'Emery', 2014, 'F', 2026), +(217246, 'Gracie', 2014, 'F', 2021), +(217247, 'Norah', 2014, 'F', 1994), +(217248, 'Emilia', 2014, 'F', 1989), +(217249, 'Reese', 2014, 'F', 1960), +(217250, 'Elise', 2014, 'F', 1959), +(217251, 'Sara', 2014, 'F', 1949), +(217252, 'Aliyah', 2014, 'F', 1947), +(217253, 'Margaret', 2014, 'F', 1933), +(217254, 'Catherine', 2014, 'F', 1923), +(217255, 'Vanessa', 2014, 'F', 1913), +(217256, 'Katelyn', 2014, 'F', 1910), +(217257, 'Gabrielle', 2014, 'F', 1902), +(217258, 'Arabella', 2014, 'F', 1894), +(217259, 'Valeria', 2014, 'F', 1882), +(217260, 'Valerie', 2014, 'F', 1871), +(217261, 'Adriana', 2014, 'F', 1861), +(217262, 'Everly', 2014, 'F', 1854), +(217263, 'Jessica', 2014, 'F', 1779), +(217264, 'Daisy', 2014, 'F', 1769), +(217265, 'Makenzie', 2014, 'F', 1766), +(217266, 'Summer', 2014, 'F', 1759), +(217267, 'Lila', 2014, 'F', 1758), +(217268, 'Rebecca', 2014, 'F', 1758), +(217269, 'Julianna', 2014, 'F', 1756), +(217270, 'Callie', 2014, 'F', 1751), +(217271, 'Michelle', 2014, 'F', 1737), +(217272, 'Ryleigh', 2014, 'F', 1735), +(217273, 'Presley', 2014, 'F', 1733), +(217274, 'Alaina', 2014, 'F', 1729), +(217275, 'Angela', 2014, 'F', 1722), +(217276, 'Alina', 2014, 'F', 1706), +(217277, 'Harmony', 2014, 'F', 1704), +(217278, 'Rose', 2014, 'F', 1678), +(217279, 'Athena', 2014, 'F', 1677), +(217280, 'Emerson', 2014, 'F', 1670), +(217281, 'Adelyn', 2014, 'F', 1666), +(217282, 'Alana', 2014, 'F', 1664), +(217283, 'Hayden', 2014, 'F', 1656), +(217284, 'Izabella', 2014, 'F', 1653), +(217285, 'Cali', 2014, 'F', 1652), +(217286, 'Marley', 2014, 'F', 1643), +(217287, 'Esther', 2014, 'F', 1638), +(217288, 'Fiona', 2014, 'F', 1636), +(217289, 'Stephanie', 2014, 'F', 1630), +(217290, 'Cecilia', 2014, 'F', 1623), +(217291, 'Kate', 2014, 'F', 1611), +(217292, 'Kinley', 2014, 'F', 1610), +(217293, 'Jayla', 2014, 'F', 1609), +(217294, 'Genevieve', 2014, 'F', 1595), +(217295, 'Alexandria', 2014, 'F', 1589), +(217296, 'Eliza', 2014, 'F', 1585), +(217297, 'Kylee', 2014, 'F', 1580), +(217298, 'Alivia', 2014, 'F', 1579), +(217299, 'Giselle', 2014, 'F', 1573), +(217300, 'Arya', 2014, 'F', 1544), +(217301, 'Alayna', 2014, 'F', 1533), +(217302, 'Leilani', 2014, 'F', 1532), +(217303, 'Adeline', 2014, 'F', 1522), +(217304, 'Jennifer', 2014, 'F', 1514), +(217305, 'Tessa', 2014, 'F', 1510), +(217306, 'Ana', 2014, 'F', 1508), +(217307, 'Finley', 2014, 'F', 1498), +(217308, 'Melissa', 2014, 'F', 1496), +(217309, 'Daniela', 2014, 'F', 1486), +(217310, 'Aniyah', 2014, 'F', 1479), +(217311, 'Daleyza', 2014, 'F', 1461), +(217312, 'Keira', 2014, 'F', 1459), +(217313, 'Charlie', 2014, 'F', 1432), +(217314, 'Lucia', 2014, 'F', 1421), +(217315, 'Hope', 2014, 'F', 1412), +(217316, 'Gabriela', 2014, 'F', 1403), +(217317, 'Mckenna', 2014, 'F', 1388), +(217318, 'Brynlee', 2014, 'F', 1387), +(217319, 'Parker', 2014, 'F', 1386), +(217320, 'Lola', 2014, 'F', 1370), +(217321, 'Amaya', 2014, 'F', 1349), +(217322, 'Miranda', 2014, 'F', 1348), +(217323, 'Maggie', 2014, 'F', 1344), +(217324, 'Anastasia', 2014, 'F', 1328), +(217325, 'Leila', 2014, 'F', 1324), +(217326, 'Lexi', 2014, 'F', 1320), +(217327, 'Georgia', 2014, 'F', 1319), +(217328, 'Kenzie', 2014, 'F', 1317), +(217329, 'Iris', 2014, 'F', 1312), +(217330, 'Jacqueline', 2014, 'F', 1301), +(217331, 'Jordan', 2014, 'F', 1300), +(217332, 'Cassidy', 2014, 'F', 1294), +(217333, 'Vivienne', 2014, 'F', 1289), +(217334, 'Camille', 2014, 'F', 1280), +(217335, 'Noelle', 2014, 'F', 1280), +(217336, 'Adrianna', 2014, 'F', 1272), +(217337, 'Teagan', 2014, 'F', 1272), +(217338, 'Josie', 2014, 'F', 1269), +(217339, 'Juliette', 2014, 'F', 1268), +(217340, 'Annabella', 2014, 'F', 1265), +(217341, 'Allie', 2014, 'F', 1263), +(217342, 'Juliet', 2014, 'F', 1263), +(217343, 'Kendra', 2014, 'F', 1262), +(217344, 'Sienna', 2014, 'F', 1255), +(217345, 'Brynn', 2014, 'F', 1253), +(217346, 'Kali', 2014, 'F', 1247), +(217347, 'Maci', 2014, 'F', 1235), +(217348, 'Danielle', 2014, 'F', 1233), +(217349, 'Haley', 2014, 'F', 1223), +(217350, 'Jenna', 2014, 'F', 1223), +(217351, 'Raelynn', 2014, 'F', 1222), +(217352, 'Delaney', 2014, 'F', 1220), +(217353, 'Paris', 2014, 'F', 1218), +(217354, 'Alexia', 2014, 'F', 1213), +(217355, 'Lyric', 2014, 'F', 1210), +(217356, 'Gemma', 2014, 'F', 1205), +(217357, 'Lilliana', 2014, 'F', 1203), +(217358, 'Chelsea', 2014, 'F', 1191), +(217359, 'Angel', 2014, 'F', 1179), +(217360, 'Evangeline', 2014, 'F', 1177), +(217361, 'Ayla', 2014, 'F', 1169), +(217362, 'Kayleigh', 2014, 'F', 1160), +(217363, 'Lena', 2014, 'F', 1156), +(217364, 'Katie', 2014, 'F', 1149), +(217365, 'Elaina', 2014, 'F', 1145), +(217366, 'Olive', 2014, 'F', 1144), +(217367, 'Madeleine', 2014, 'F', 1138), +(217368, 'Makenna', 2014, 'F', 1138), +(217369, 'Dakota', 2014, 'F', 1136), +(217370, 'Elsa', 2014, 'F', 1131), +(217371, 'Nova', 2014, 'F', 1121), +(217372, 'Nadia', 2014, 'F', 1119), +(217373, 'Alison', 2014, 'F', 1115), +(217374, 'Kaydence', 2014, 'F', 1111), +(217375, 'Journey', 2014, 'F', 1110), +(217376, 'Jada', 2014, 'F', 1107), +(217377, 'Kathryn', 2014, 'F', 1107), +(217378, 'Shelby', 2014, 'F', 1101), +(217379, 'Nina', 2014, 'F', 1091), +(217380, 'Elliana', 2014, 'F', 1089), +(217381, 'Diana', 2014, 'F', 1088), +(217382, 'Phoebe', 2014, 'F', 1086), +(217383, 'Alessandra', 2014, 'F', 1078), +(217384, 'Eloise', 2014, 'F', 1074), +(217385, 'Nyla', 2014, 'F', 1074), +(217386, 'Skyler', 2014, 'F', 1070), +(217387, 'Madilyn', 2014, 'F', 1067), +(217388, 'Adelynn', 2014, 'F', 1058), +(217389, 'Miriam', 2014, 'F', 1057), +(217390, 'Ashlyn', 2014, 'F', 1055), +(217391, 'Amiyah', 2014, 'F', 1051), +(217392, 'Megan', 2014, 'F', 1051), +(217393, 'Amber', 2014, 'F', 1049), +(217394, 'Rosalie', 2014, 'F', 1047), +(217395, 'Annie', 2014, 'F', 1046), +(217396, 'Lilah', 2014, 'F', 1044), +(217397, 'Charlee', 2014, 'F', 1043), +(217398, 'Amanda', 2014, 'F', 1042), +(217399, 'Ruth', 2014, 'F', 1042), +(217400, 'Adelaide', 2014, 'F', 1040), +(217401, 'June', 2014, 'F', 1039), +(217402, 'Laura', 2014, 'F', 1038), +(217403, 'Daniella', 2014, 'F', 1032), +(217404, 'Mikayla', 2014, 'F', 1026), +(217405, 'Raegan', 2014, 'F', 1019), +(217406, 'Jane', 2014, 'F', 1018), +(217407, 'Ashlynn', 2014, 'F', 1015), +(217408, 'Kelsey', 2014, 'F', 1014), +(217409, 'Erin', 2014, 'F', 1013), +(217410, 'Christina', 2014, 'F', 1012), +(217411, 'Joanna', 2014, 'F', 1010), +(217412, 'Fatima', 2014, 'F', 1009), +(217413, 'Allyson', 2014, 'F', 1008), +(217414, 'Talia', 2014, 'F', 1006), +(217415, 'Mariana', 2014, 'F', 1004), +(217416, 'Sabrina', 2014, 'F', 1003), +(217417, 'Haven', 2014, 'F', 1002), +(217418, 'Ainsley', 2014, 'F', 998), +(217419, 'Cadence', 2014, 'F', 998), +(217420, 'Elsie', 2014, 'F', 998), +(217421, 'Leslie', 2014, 'F', 994), +(217422, 'Heaven', 2014, 'F', 984), +(217423, 'Arielle', 2014, 'F', 978), +(217424, 'Maddison', 2014, 'F', 977), +(217425, 'Alicia', 2014, 'F', 967), +(217426, 'Briella', 2014, 'F', 967), +(217427, 'Lucille', 2014, 'F', 966), +(217428, 'Sawyer', 2014, 'F', 955), +(217429, 'Malia', 2014, 'F', 948), +(217430, 'Selena', 2014, 'F', 947), +(217431, 'Heidi', 2014, 'F', 944), +(217432, 'Kyleigh', 2014, 'F', 941), +(217433, 'Harley', 2014, 'F', 940), +(217434, 'Kira', 2014, 'F', 939), +(217435, 'Lana', 2014, 'F', 934), +(217436, 'Sierra', 2014, 'F', 932), +(217437, 'Kiara', 2014, 'F', 920), +(217438, 'Paislee', 2014, 'F', 915), +(217439, 'Alondra', 2014, 'F', 913), +(217440, 'Daphne', 2014, 'F', 913), +(217441, 'Carly', 2014, 'F', 909), +(217442, 'Jaylah', 2014, 'F', 909), +(217443, 'Kyla', 2014, 'F', 909), +(217444, 'Bianca', 2014, 'F', 901), +(217445, 'Baylee', 2014, 'F', 896), +(217446, 'Cheyenne', 2014, 'F', 896), +(217447, 'Macy', 2014, 'F', 887), +(217448, 'Camilla', 2014, 'F', 883), +(217449, 'Catalina', 2014, 'F', 883), +(217450, 'Gia', 2014, 'F', 881), +(217451, 'Vera', 2014, 'F', 881), +(217452, 'Skye', 2014, 'F', 880), +(217453, 'Aylin', 2014, 'F', 878), +(217454, 'Sloane', 2014, 'F', 874), +(217455, 'Myla', 2014, 'F', 873), +(217456, 'Yaretzi', 2014, 'F', 871), +(217457, 'Giuliana', 2014, 'F', 868), +(217458, 'Macie', 2014, 'F', 868), +(217459, 'Veronica', 2014, 'F', 864), +(217460, 'Esmeralda', 2014, 'F', 862), +(217461, 'Lia', 2014, 'F', 855), +(217462, 'Averie', 2014, 'F', 852), +(217463, 'Addyson', 2014, 'F', 851), +(217464, 'Kamryn', 2014, 'F', 850), +(217465, 'Mckinley', 2014, 'F', 850), +(217466, 'Ada', 2014, 'F', 847), +(217467, 'Carmen', 2014, 'F', 846), +(217468, 'Mallory', 2014, 'F', 845), +(217469, 'Jillian', 2014, 'F', 844), +(217470, 'Ariella', 2014, 'F', 839), +(217471, 'Rylie', 2014, 'F', 835), +(217472, 'Sage', 2014, 'F', 834), +(217473, 'Abby', 2014, 'F', 830), +(217474, 'Scarlet', 2014, 'F', 829), +(217475, 'Logan', 2014, 'F', 828), +(217476, 'Tatum', 2014, 'F', 828), +(217477, 'Bethany', 2014, 'F', 824), +(217478, 'Dylan', 2014, 'F', 822), +(217479, 'Elle', 2014, 'F', 818), +(217480, 'Jazmin', 2014, 'F', 817), +(217481, 'Aspen', 2014, 'F', 812), +(217482, 'Camryn', 2014, 'F', 810), +(217483, 'Malaysia', 2014, 'F', 810), +(217484, 'Haylee', 2014, 'F', 807), +(217485, 'Nayeli', 2014, 'F', 805), +(217486, 'Gracelyn', 2014, 'F', 799), +(217487, 'Kamila', 2014, 'F', 792), +(217488, 'Helen', 2014, 'F', 791), +(217489, 'Marilyn', 2014, 'F', 791), +(217490, 'April', 2014, 'F', 790), +(217491, 'Carolina', 2014, 'F', 779), +(217492, 'Amina', 2014, 'F', 776), +(217493, 'Julie', 2014, 'F', 776), +(217494, 'Raelyn', 2014, 'F', 776), +(217495, 'Blakely', 2014, 'F', 771), +(217496, 'Rowan', 2014, 'F', 770), +(217497, 'Angelique', 2014, 'F', 768), +(217498, 'Miracle', 2014, 'F', 768), +(217499, 'Emely', 2014, 'F', 764), +(217500, 'Jayleen', 2014, 'F', 764), +(217501, 'Kennedi', 2014, 'F', 764), +(217502, 'Amira', 2014, 'F', 762), +(217503, 'Briana', 2014, 'F', 761), +(217504, 'Gwendolyn', 2014, 'F', 756), +(217505, 'Justice', 2014, 'F', 756), +(217506, 'Zara', 2014, 'F', 754), +(217507, 'Aleah', 2014, 'F', 752), +(217508, 'Itzel', 2014, 'F', 752), +(217509, 'Bristol', 2014, 'F', 749), +(217510, 'Francesca', 2014, 'F', 748), +(217511, 'Emersyn', 2014, 'F', 742), +(217512, 'Aubrie', 2014, 'F', 738), +(217513, 'Karina', 2014, 'F', 736), +(217514, 'Nylah', 2014, 'F', 735), +(217515, 'Kelly', 2014, 'F', 734), +(217516, 'Anaya', 2014, 'F', 733), +(217517, 'Maliyah', 2014, 'F', 733), +(217518, 'Evelynn', 2014, 'F', 731), +(217519, 'Ember', 2014, 'F', 729), +(217520, 'Melany', 2014, 'F', 729), +(217521, 'Angelica', 2014, 'F', 727), +(217522, 'Jimena', 2014, 'F', 725), +(217523, 'Madelynn', 2014, 'F', 725), +(217524, 'Kassidy', 2014, 'F', 724), +(217525, 'Tiffany', 2014, 'F', 724), +(217526, 'Kara', 2014, 'F', 723), +(217527, 'Jazmine', 2014, 'F', 722), +(217528, 'Jayda', 2014, 'F', 721), +(217529, 'Dahlia', 2014, 'F', 719), +(217530, 'Alejandra', 2014, 'F', 715), +(217531, 'Sarai', 2014, 'F', 710), +(217532, 'Annabel', 2014, 'F', 709), +(217533, 'Holly', 2014, 'F', 708), +(217534, 'Janelle', 2014, 'F', 707), +(217535, 'Braelyn', 2014, 'F', 705), +(217536, 'Gracelynn', 2014, 'F', 705), +(217537, 'River', 2014, 'F', 703), +(217538, 'Viviana', 2014, 'F', 703), +(217539, 'Serena', 2014, 'F', 696), +(217540, 'Brittany', 2014, 'F', 694), +(217541, 'Annalise', 2014, 'F', 693), +(217542, 'Brinley', 2014, 'F', 692), +(217543, 'Madisyn', 2014, 'F', 690), +(217544, 'Eve', 2014, 'F', 688), +(217545, 'Cataleya', 2014, 'F', 687), +(217546, 'Joy', 2014, 'F', 687), +(217547, 'Caitlyn', 2014, 'F', 686), +(217548, 'Anabelle', 2014, 'F', 681), +(217549, 'Emmalyn', 2014, 'F', 681), +(217550, 'Journee', 2014, 'F', 675), +(217551, 'Celeste', 2014, 'F', 674), +(217552, 'Brylee', 2014, 'F', 670), +(217553, 'Luciana', 2014, 'F', 670), +(217554, 'Marlee', 2014, 'F', 668), +(217555, 'Savanna', 2014, 'F', 668), +(217556, 'Anya', 2014, 'F', 667), +(217557, 'Marissa', 2014, 'F', 667), +(217558, 'Jazlyn', 2014, 'F', 663), +(217559, 'Zuri', 2014, 'F', 660), +(217560, 'Kailey', 2014, 'F', 659), +(217561, 'Crystal', 2014, 'F', 657), +(217562, 'Michaela', 2014, 'F', 654), +(217563, 'Lorelei', 2014, 'F', 651), +(217564, 'Guadalupe', 2014, 'F', 650), +(217565, 'Madilynn', 2014, 'F', 649), +(217566, 'Maeve', 2014, 'F', 647), +(217567, 'Hanna', 2014, 'F', 645), +(217568, 'Priscilla', 2014, 'F', 645), +(217569, 'Kyra', 2014, 'F', 643), +(217570, 'Lacey', 2014, 'F', 643), +(217571, 'Nia', 2014, 'F', 642), +(217572, 'Charley', 2014, 'F', 634), +(217573, 'Jamie', 2014, 'F', 633), +(217574, 'Juniper', 2014, 'F', 633), +(217575, 'Cynthia', 2014, 'F', 630), +(217576, 'Karen', 2014, 'F', 630), +(217577, 'Sylvia', 2014, 'F', 630), +(217578, 'Phoenix', 2014, 'F', 629), +(217579, 'Aleena', 2014, 'F', 628), +(217580, 'Caitlin', 2014, 'F', 625), +(217581, 'Felicity', 2014, 'F', 620), +(217582, 'Elisa', 2014, 'F', 617), +(217583, 'Julissa', 2014, 'F', 617), +(217584, 'Rebekah', 2014, 'F', 617), +(217585, 'Evie', 2014, 'F', 615), +(217586, 'Helena', 2014, 'F', 614), +(217587, 'Imani', 2014, 'F', 614), +(217588, 'Karla', 2014, 'F', 614), +(217589, 'Millie', 2014, 'F', 612), +(217590, 'Lilian', 2014, 'F', 611), +(217591, 'Raven', 2014, 'F', 608), +(217592, 'Harlow', 2014, 'F', 605), +(217593, 'Leia', 2014, 'F', 605), +(217594, 'Ryan', 2014, 'F', 603), +(217595, 'Kailyn', 2014, 'F', 602), +(217596, 'Lillie', 2014, 'F', 601), +(217597, 'Amara', 2014, 'F', 600), +(217598, 'Kadence', 2014, 'F', 600), +(217599, 'Lauryn', 2014, 'F', 596), +(217600, 'Cassandra', 2014, 'F', 593), +(217601, 'Kaylie', 2014, 'F', 590), +(217602, 'Madalyn', 2014, 'F', 590), +(217603, 'Anika', 2014, 'F', 589), +(217604, 'Hayley', 2014, 'F', 588), +(217605, 'Bria', 2014, 'F', 587), +(217606, 'Colette', 2014, 'F', 587), +(217607, 'Henley', 2014, 'F', 587), +(217608, 'Amari', 2014, 'F', 585), +(217609, 'Regina', 2014, 'F', 583), +(217610, 'Alanna', 2014, 'F', 582), +(217611, 'Azalea', 2014, 'F', 582), +(217612, 'Fernanda', 2014, 'F', 582), +(217613, 'Jaliyah', 2014, 'F', 582), +(217614, 'Anabella', 2014, 'F', 581), +(217615, 'Adelina', 2014, 'F', 580), +(217616, 'Lilyana', 2014, 'F', 580), +(217617, 'Skyla', 2014, 'F', 580), +(217618, 'Addisyn', 2014, 'F', 577), +(217619, 'Zariah', 2014, 'F', 576), +(217620, 'Bridget', 2014, 'F', 574), +(217621, 'Braylee', 2014, 'F', 572), +(217622, 'Monica', 2014, 'F', 572), +(217623, 'Jayden', 2014, 'F', 569), +(217624, 'Leighton', 2014, 'F', 568), +(217625, 'Gloria', 2014, 'F', 566), +(217626, 'Johanna', 2014, 'F', 564), +(217627, 'Addilyn', 2014, 'F', 563), +(217628, 'Danna', 2014, 'F', 563), +(217629, 'Selah', 2014, 'F', 563), +(217630, 'Aryanna', 2014, 'F', 561), +(217631, 'Kaylin', 2014, 'F', 561), +(217632, 'Aniya', 2014, 'F', 560), +(217633, 'Willa', 2014, 'F', 559), +(217634, 'Angie', 2014, 'F', 558), +(217635, 'Kaia', 2014, 'F', 558), +(217636, 'Kaliyah', 2014, 'F', 557), +(217637, 'Anne', 2014, 'F', 556), +(217638, 'Tiana', 2014, 'F', 556), +(217639, 'Charleigh', 2014, 'F', 555), +(217640, 'Winter', 2014, 'F', 553), +(217641, 'Danica', 2014, 'F', 550), +(217642, 'Alayah', 2014, 'F', 548), +(217643, 'Aisha', 2014, 'F', 543), +(217644, 'Bailee', 2014, 'F', 543), +(217645, 'Kenley', 2014, 'F', 542), +(217646, 'Aileen', 2014, 'F', 540), +(217647, 'Lexie', 2014, 'F', 540), +(217648, 'Janiyah', 2014, 'F', 538), +(217649, 'Braelynn', 2014, 'F', 537), +(217650, 'Liberty', 2014, 'F', 537), +(217651, 'Katelynn', 2014, 'F', 535), +(217652, 'Mariam', 2014, 'F', 535), +(217653, 'Sasha', 2014, 'F', 535), +(217654, 'Lindsey', 2014, 'F', 534), +(217655, 'Montserrat', 2014, 'F', 533), +(217656, 'Cecelia', 2014, 'F', 530), +(217657, 'Mikaela', 2014, 'F', 530), +(217658, 'Kaelyn', 2014, 'F', 529), +(217659, 'Rosemary', 2014, 'F', 529), +(217660, 'Annika', 2014, 'F', 528), +(217661, 'Tatiana', 2014, 'F', 526), +(217662, 'Cameron', 2014, 'F', 524), +(217663, 'Marie', 2014, 'F', 523), +(217664, 'Dallas', 2014, 'F', 522), +(217665, 'Virginia', 2014, 'F', 519), +(217666, 'Liana', 2014, 'F', 517), +(217667, 'Matilda', 2014, 'F', 517), +(217668, 'Freya', 2014, 'F', 512), +(217669, 'Lainey', 2014, 'F', 511), +(217670, 'Hallie', 2014, 'F', 509), +(217671, 'Jessie', 2014, 'F', 504), +(217672, 'Audrina', 2014, 'F', 500), +(217673, 'Blake', 2014, 'F', 499), +(217674, 'Hattie', 2014, 'F', 497), +(217675, 'Monserrat', 2014, 'F', 496), +(217676, 'Kiera', 2014, 'F', 494), +(217677, 'Laylah', 2014, 'F', 493), +(217678, 'Greta', 2014, 'F', 492), +(217679, 'Alyson', 2014, 'F', 491), +(217680, 'Emilee', 2014, 'F', 490), +(217681, 'Maryam', 2014, 'F', 490), +(217682, 'Melina', 2014, 'F', 489), +(217683, 'Dayana', 2014, 'F', 488), +(217684, 'Jaelynn', 2014, 'F', 487), +(217685, 'Beatrice', 2014, 'F', 482), +(217686, 'Frances', 2014, 'F', 481), +(217687, 'Elisabeth', 2014, 'F', 479), +(217688, 'Saige', 2014, 'F', 478), +(217689, 'Kensley', 2014, 'F', 477), +(217690, 'Meredith', 2014, 'F', 475), +(217691, 'Aranza', 2014, 'F', 473), +(217692, 'Rosa', 2014, 'F', 473), +(217693, 'Shiloh', 2014, 'F', 472), +(217694, 'Charli', 2014, 'F', 471), +(217695, 'Elyse', 2014, 'F', 471), +(217696, 'Alani', 2014, 'F', 470), +(217697, 'Mira', 2014, 'F', 469), +(217698, 'Lylah', 2014, 'F', 467), +(217699, 'Linda', 2014, 'F', 466), +(217700, 'Whitney', 2014, 'F', 463), +(217701, 'Alena', 2014, 'F', 462), +(217702, 'Jaycee', 2014, 'F', 461), +(217703, 'Joselyn', 2014, 'F', 460), +(217704, 'Ansley', 2014, 'F', 459), +(217705, 'Kynlee', 2014, 'F', 459), +(217706, 'Miah', 2014, 'F', 459), +(217707, 'Tenley', 2014, 'F', 457), +(217708, 'Breanna', 2014, 'F', 454), +(217709, 'Emelia', 2014, 'F', 454), +(217710, 'Maia', 2014, 'F', 454), +(217711, 'Edith', 2014, 'F', 452), +(217712, 'Pearl', 2014, 'F', 451), +(217713, 'Anahi', 2014, 'F', 450), +(217714, 'Coraline', 2014, 'F', 450), +(217715, 'Samara', 2014, 'F', 450), +(217716, 'Demi', 2014, 'F', 449), +(217717, 'Chanel', 2014, 'F', 448), +(217718, 'Kimber', 2014, 'F', 447), +(217719, 'Lilith', 2014, 'F', 447), +(217720, 'Malaya', 2014, 'F', 446), +(217721, 'Jemma', 2014, 'F', 445), +(217722, 'Myra', 2014, 'F', 444), +(217723, 'Bryanna', 2014, 'F', 443), +(217724, 'Laney', 2014, 'F', 443), +(217725, 'Jaelyn', 2014, 'F', 442), +(217726, 'Kaylynn', 2014, 'F', 442), +(217727, 'Kallie', 2014, 'F', 440), +(217728, 'Natasha', 2014, 'F', 439), +(217729, 'Nathalie', 2014, 'F', 439), +(217730, 'Perla', 2014, 'F', 439), +(217731, 'Amani', 2014, 'F', 437), +(217732, 'Lilianna', 2014, 'F', 437), +(217733, 'Madalynn', 2014, 'F', 436), +(217734, 'Blair', 2014, 'F', 435), +(217735, 'Elianna', 2014, 'F', 434), +(217736, 'Karsyn', 2014, 'F', 433), +(217737, 'Lindsay', 2014, 'F', 433), +(217738, 'Elaine', 2014, 'F', 432), +(217739, 'Dulce', 2014, 'F', 431), +(217740, 'Ellen', 2014, 'F', 431), +(217741, 'Erica', 2014, 'F', 431), +(217742, 'Maisie', 2014, 'F', 431), +(217743, 'Renata', 2014, 'F', 431), +(217744, 'Kiley', 2014, 'F', 430), +(217745, 'Marina', 2014, 'F', 430), +(217746, 'Remi', 2014, 'F', 429), +(217747, 'Emmy', 2014, 'F', 428), +(217748, 'Ivanna', 2014, 'F', 426), +(217749, 'Amirah', 2014, 'F', 425), +(217750, 'Livia', 2014, 'F', 425), +(217751, 'Amelie', 2014, 'F', 424), +(217752, 'Irene', 2014, 'F', 424), +(217753, 'Mabel', 2014, 'F', 424), +(217754, 'Milan', 2014, 'F', 424), +(217755, 'Armani', 2014, 'F', 422), +(217756, 'Cara', 2014, 'F', 421), +(217757, 'Ciara', 2014, 'F', 418), +(217758, 'Kathleen', 2014, 'F', 418), +(217759, 'Jaylynn', 2014, 'F', 416), +(217760, 'Caylee', 2014, 'F', 415), +(217761, 'Lea', 2014, 'F', 415), +(217762, 'Erika', 2014, 'F', 414), +(217763, 'Paola', 2014, 'F', 413), +(217764, 'Alma', 2014, 'F', 412), +(217765, 'Courtney', 2014, 'F', 412), +(217766, 'Mae', 2014, 'F', 412), +(217767, 'Kassandra', 2014, 'F', 410), +(217768, 'Maleah', 2014, 'F', 410), +(217769, 'Remington', 2014, 'F', 410), +(217770, 'Leyla', 2014, 'F', 409), +(217771, 'Mina', 2014, 'F', 408), +(217772, 'Ariah', 2014, 'F', 407), +(217773, 'Christine', 2014, 'F', 407), +(217774, 'Jasmin', 2014, 'F', 407), +(217775, 'Kora', 2014, 'F', 407), +(217776, 'Chaya', 2014, 'F', 406), +(217777, 'Karlee', 2014, 'F', 406), +(217778, 'Lailah', 2014, 'F', 405), +(217779, 'Mara', 2014, 'F', 404), +(217780, 'Jaylee', 2014, 'F', 402), +(217781, 'Raquel', 2014, 'F', 402), +(217782, 'Siena', 2014, 'F', 401), +(217783, 'Lennon', 2014, 'F', 399), +(217784, 'Desiree', 2014, 'F', 398), +(217785, 'Hadassah', 2014, 'F', 398), +(217786, 'Kenya', 2014, 'F', 398), +(217787, 'Aliana', 2014, 'F', 397), +(217788, 'Wren', 2014, 'F', 397), +(217789, 'Amiya', 2014, 'F', 396), +(217790, 'Isis', 2014, 'F', 396), +(217791, 'Zaniyah', 2014, 'F', 396), +(217792, 'Avah', 2014, 'F', 393), +(217793, 'Amia', 2014, 'F', 392), +(217794, 'Cindy', 2014, 'F', 391), +(217795, 'Eileen', 2014, 'F', 391), +(217796, 'Kayden', 2014, 'F', 391), +(217797, 'Madyson', 2014, 'F', 391), +(217798, 'Celine', 2014, 'F', 389), +(217799, 'Aryana', 2014, 'F', 388), +(217800, 'Everleigh', 2014, 'F', 388), +(217801, 'Isabela', 2014, 'F', 387), +(217802, 'Reyna', 2014, 'F', 386), +(217803, 'Teresa', 2014, 'F', 386), +(217804, 'Jolene', 2014, 'F', 385), +(217805, 'Marjorie', 2014, 'F', 385), +(217806, 'Myah', 2014, 'F', 385), +(217807, 'Clare', 2014, 'F', 383), +(217808, 'Claudia', 2014, 'F', 383), +(217809, 'Leanna', 2014, 'F', 382), +(217810, 'Noemi', 2014, 'F', 382), +(217811, 'Corinne', 2014, 'F', 381), +(217812, 'Simone', 2014, 'F', 381), +(217813, 'Alia', 2014, 'F', 380), +(217814, 'Brenda', 2014, 'F', 380), +(217815, 'Dorothy', 2014, 'F', 380), +(217816, 'Emilie', 2014, 'F', 380), +(217817, 'Elin', 2014, 'F', 379), +(217818, 'Tori', 2014, 'F', 378), +(217819, 'Martha', 2014, 'F', 377), +(217820, 'Ally', 2014, 'F', 376), +(217821, 'Arely', 2014, 'F', 376), +(217822, 'Leona', 2014, 'F', 376), +(217823, 'Patricia', 2014, 'F', 376), +(217824, 'Sky', 2014, 'F', 376), +(217825, 'Thalia', 2014, 'F', 375), +(217826, 'Carolyn', 2014, 'F', 374), +(217827, 'Emory', 2014, 'F', 373), +(217828, 'Nataly', 2014, 'F', 373), +(217829, 'Paityn', 2014, 'F', 373), +(217830, 'Shayla', 2014, 'F', 373), +(217831, 'Averi', 2014, 'F', 372), +(217832, 'Jazlynn', 2014, 'F', 372), +(217833, 'Margot', 2014, 'F', 372), +(217834, 'Lisa', 2014, 'F', 371), +(217835, 'Lizbeth', 2014, 'F', 370), +(217836, 'Nancy', 2014, 'F', 369), +(217837, 'Deborah', 2014, 'F', 368), +(217838, 'Ivory', 2014, 'F', 368), +(217839, 'Khaleesi', 2014, 'F', 368), +(217840, 'Elliot', 2014, 'F', 367), +(217841, 'Meadow', 2014, 'F', 367), +(217842, 'Yareli', 2014, 'F', 367), +(217843, 'Farrah', 2014, 'F', 366), +(217844, 'Milania', 2014, 'F', 366), +(217845, 'Janessa', 2014, 'F', 365), +(217846, 'Milana', 2014, 'F', 365), +(217847, 'Zoie', 2014, 'F', 363), +(217848, 'Adele', 2014, 'F', 362), +(217849, 'Clarissa', 2014, 'F', 362), +(217850, 'Hunter', 2014, 'F', 362), +(217851, 'Lina', 2014, 'F', 362), +(217852, 'Oakley', 2014, 'F', 362), +(217853, 'Sariah', 2014, 'F', 362), +(217854, 'Emmalynn', 2014, 'F', 361), +(217855, 'Galilea', 2014, 'F', 361), +(217856, 'Hailee', 2014, 'F', 361), +(217857, 'Halle', 2014, 'F', 361), +(217858, 'Sutton', 2014, 'F', 361), +(217859, 'Giana', 2014, 'F', 359), +(217860, 'Thea', 2014, 'F', 359), +(217861, 'Denise', 2014, 'F', 358), +(217862, 'Naya', 2014, 'F', 358), +(217863, 'Kristina', 2014, 'F', 357), +(217864, 'Liv', 2014, 'F', 357), +(217865, 'Nathaly', 2014, 'F', 357), +(217866, 'Wendy', 2014, 'F', 357), +(217867, 'Aubrielle', 2014, 'F', 355), +(217868, 'Brenna', 2014, 'F', 355), +(217869, 'Carter', 2014, 'F', 355), +(217870, 'Danika', 2014, 'F', 355), +(217871, 'Monroe', 2014, 'F', 354), +(217872, 'Celia', 2014, 'F', 353), +(217873, 'Dana', 2014, 'F', 353), +(217874, 'Jolie', 2014, 'F', 353), +(217875, 'Taliyah', 2014, 'F', 353), +(217876, 'Casey', 2014, 'F', 352), +(217877, 'Miley', 2014, 'F', 352), +(217878, 'Yamileth', 2014, 'F', 352), +(217879, 'Jaylene', 2014, 'F', 351), +(217880, 'Saylor', 2014, 'F', 350), +(217881, 'Joyce', 2014, 'F', 349), +(217882, 'Milena', 2014, 'F', 349), +(217883, 'Zariyah', 2014, 'F', 349), +(217884, 'Sandra', 2014, 'F', 348), +(217885, 'Ariadne', 2014, 'F', 347), +(217886, 'Aviana', 2014, 'F', 346), +(217887, 'Mollie', 2014, 'F', 346), +(217888, 'Cherish', 2014, 'F', 345), +(217889, 'Alaya', 2014, 'F', 344), +(217890, 'Asia', 2014, 'F', 344), +(217891, 'Nola', 2014, 'F', 342), +(217892, 'Penny', 2014, 'F', 342), +(217893, 'Dixie', 2014, 'F', 341), +(217894, 'Marisol', 2014, 'F', 341), +(217895, 'Adrienne', 2014, 'F', 339), +(217896, 'Rylan', 2014, 'F', 339), +(217897, 'Kori', 2014, 'F', 338), +(217898, 'Kristen', 2014, 'F', 338), +(217899, 'Aimee', 2014, 'F', 337), +(217900, 'Esme', 2014, 'F', 337), +(217901, 'Laurel', 2014, 'F', 337), +(217902, 'Aliza', 2014, 'F', 336), +(217903, 'Roselyn', 2014, 'F', 336), +(217904, 'Sloan', 2014, 'F', 336), +(217905, 'Lorelai', 2014, 'F', 335), +(217906, 'Jenny', 2014, 'F', 334), +(217907, 'Katalina', 2014, 'F', 334), +(217908, 'Lara', 2014, 'F', 334), +(217909, 'Amya', 2014, 'F', 332), +(217910, 'Ayleen', 2014, 'F', 332), +(217911, 'Aubri', 2014, 'F', 331), +(217912, 'Ariya', 2014, 'F', 330), +(217913, 'Carlee', 2014, 'F', 330), +(217914, 'Iliana', 2014, 'F', 330), +(217915, 'Magnolia', 2014, 'F', 330), +(217916, 'Aurelia', 2014, 'F', 329), +(217917, 'Elliott', 2014, 'F', 329), +(217918, 'Evalyn', 2014, 'F', 329), +(217919, 'Natalee', 2014, 'F', 329), +(217920, 'Rayna', 2014, 'F', 329), +(217921, 'Heather', 2014, 'F', 328), +(217922, 'Collins', 2014, 'F', 327), +(217923, 'Estrella', 2014, 'F', 326), +(217924, 'Rory', 2014, 'F', 326), +(217925, 'Hana', 2014, 'F', 325), +(217926, 'Kenna', 2014, 'F', 325), +(217927, 'Jordynn', 2014, 'F', 324), +(217928, 'Rosie', 2014, 'F', 324), +(217929, 'Aiyana', 2014, 'F', 323), +(217930, 'America', 2014, 'F', 323), +(217931, 'Angeline', 2014, 'F', 323), +(217932, 'Janiya', 2014, 'F', 323), +(217933, 'Jessa', 2014, 'F', 323), +(217934, 'Tegan', 2014, 'F', 323), +(217935, 'Susan', 2014, 'F', 321), +(217936, 'Emmalee', 2014, 'F', 320), +(217937, 'Taryn', 2014, 'F', 320), +(217938, 'Temperance', 2014, 'F', 320), +(217939, 'Alissa', 2014, 'F', 319), +(217940, 'Kenia', 2014, 'F', 319), +(217941, 'Abbigail', 2014, 'F', 318), +(217942, 'Briley', 2014, 'F', 318), +(217943, 'Kailee', 2014, 'F', 318), +(217944, 'Zaria', 2014, 'F', 318), +(217945, 'Chana', 2014, 'F', 316), +(217946, 'Lillianna', 2014, 'F', 316), +(217947, 'Barbara', 2014, 'F', 315), +(217948, 'Carla', 2014, 'F', 315), +(217949, 'Aliya', 2014, 'F', 314), +(217950, 'Bonnie', 2014, 'F', 313), +(217951, 'Keyla', 2014, 'F', 313), +(217952, 'Marianna', 2014, 'F', 313), +(217953, 'Paloma', 2014, 'F', 312), +(217954, 'Jewel', 2014, 'F', 311), +(217955, 'Joslyn', 2014, 'F', 311), +(217956, 'Saniyah', 2014, 'F', 311), +(217957, 'Audriana', 2014, 'F', 310), +(217958, 'Giovanna', 2014, 'F', 310), +(217959, 'Hadleigh', 2014, 'F', 310), +(217960, 'Mckayla', 2014, 'F', 310), +(217961, 'Jaida', 2014, 'F', 309), +(217962, 'Salma', 2014, 'F', 309), +(217963, 'Sharon', 2014, 'F', 309), +(217964, 'Emmaline', 2014, 'F', 308), +(217965, 'Kimora', 2014, 'F', 308), +(217966, 'Wynter', 2014, 'F', 307), +(217967, 'Avianna', 2014, 'F', 306), +(217968, 'Amalia', 2014, 'F', 305), +(217969, 'Karlie', 2014, 'F', 305), +(217970, 'Kaidence', 2014, 'F', 304), +(217971, 'Kairi', 2014, 'F', 304), +(217972, 'Libby', 2014, 'F', 304), +(217973, 'Sherlyn', 2014, 'F', 304), +(217974, 'Diamond', 2014, 'F', 303), +(217975, 'Holland', 2014, 'F', 302), +(217976, 'Zendaya', 2014, 'F', 302), +(217977, 'Mariyah', 2014, 'F', 301), +(217978, 'Zainab', 2014, 'F', 301), +(217979, 'Alisha', 2014, 'F', 300), +(217980, 'Ayanna', 2014, 'F', 300), +(217981, 'Ellison', 2014, 'F', 300), +(217982, 'Harlee', 2014, 'F', 300), +(217983, 'Lilyanna', 2014, 'F', 300), +(217984, 'Bryleigh', 2014, 'F', 299), +(217985, 'Julianne', 2014, 'F', 299), +(217986, 'Kaleigh', 2014, 'F', 299), +(217987, 'Miya', 2014, 'F', 299), +(217988, 'Yasmin', 2014, 'F', 299), +(217989, 'Anniston', 2014, 'F', 298), +(217990, 'Estelle', 2014, 'F', 298), +(217991, 'Emmeline', 2014, 'F', 297), +(217992, 'Faye', 2014, 'F', 297), +(217993, 'Kiana', 2014, 'F', 296), +(217994, 'Anabel', 2014, 'F', 295), +(217995, 'Zion', 2014, 'F', 295), +(217996, 'Tara', 2014, 'F', 294), +(217997, 'Astrid', 2014, 'F', 293), +(217998, 'Emerie', 2014, 'F', 293), +(217999, 'Sidney', 2014, 'F', 292), +(218000, 'Zahra', 2014, 'F', 292), +(218001, 'Jaylin', 2014, 'F', 291), +(218002, 'Kinslee', 2014, 'F', 291), +(218003, 'Tabitha', 2014, 'F', 291), +(218004, 'Aubriella', 2014, 'F', 290), +(218005, 'Addilynn', 2014, 'F', 289), +(218006, 'Alyvia', 2014, 'F', 289), +(218007, 'Hadlee', 2014, 'F', 289), +(218008, 'Ingrid', 2014, 'F', 289), +(218009, 'Lilia', 2014, 'F', 289), +(218010, 'Macey', 2014, 'F', 289), +(218011, 'Azaria', 2014, 'F', 287), +(218012, 'Kaitlynn', 2014, 'F', 287), +(218013, 'Neriah', 2014, 'F', 287), +(218014, 'Annabell', 2014, 'F', 286), +(218015, 'Ariyah', 2014, 'F', 286), +(218016, 'Janae', 2014, 'F', 286), +(218017, 'Kaiya', 2014, 'F', 286), +(218018, 'Reina', 2014, 'F', 286), +(218019, 'Rivka', 2014, 'F', 286), +(218020, 'Alisa', 2014, 'F', 285), +(218021, 'Marleigh', 2014, 'F', 285), +(218022, 'Alisson', 2014, 'F', 284), +(218023, 'Maliah', 2014, 'F', 284), +(218024, 'Mercy', 2014, 'F', 284), +(218025, 'Noa', 2014, 'F', 284), +(218026, 'Scarlette', 2014, 'F', 284), +(218027, 'Clementine', 2014, 'F', 283), +(218028, 'Frida', 2014, 'F', 283), +(218029, 'Ann', 2014, 'F', 282), +(218030, 'Sonia', 2014, 'F', 282), +(218031, 'Alannah', 2014, 'F', 281), +(218032, 'Avalynn', 2014, 'F', 281), +(218033, 'Dalia', 2014, 'F', 281), +(218034, 'Ayva', 2014, 'F', 280), +(218035, 'Stevie', 2014, 'F', 280), +(218036, 'Judith', 2014, 'F', 279), +(218037, 'Paulina', 2014, 'F', 279), +(218038, 'Azariah', 2014, 'F', 278), +(218039, 'Estella', 2014, 'F', 278), +(218040, 'Remy', 2014, 'F', 278), +(218041, 'Gwen', 2014, 'F', 277), +(218042, 'Mattie', 2014, 'F', 277), +(218043, 'Milani', 2014, 'F', 277), +(218044, 'Raina', 2014, 'F', 277), +(218045, 'Julieta', 2014, 'F', 276), +(218046, 'Renee', 2014, 'F', 276), +(218047, 'Lesly', 2014, 'F', 275), +(218048, 'Abrielle', 2014, 'F', 274), +(218049, 'Bryn', 2014, 'F', 274), +(218050, 'Carlie', 2014, 'F', 274), +(218051, 'Riya', 2014, 'F', 274), +(218052, 'Karter', 2014, 'F', 273), +(218053, 'Abril', 2014, 'F', 272), +(218054, 'Aubrianna', 2014, 'F', 272), +(218055, 'Jocelynn', 2014, 'F', 271), +(218056, 'Kylah', 2014, 'F', 271), +(218057, 'Louisa', 2014, 'F', 271), +(218058, 'Pyper', 2014, 'F', 271), +(218059, 'Antonia', 2014, 'F', 270), +(218060, 'Magdalena', 2014, 'F', 270), +(218061, 'Moriah', 2014, 'F', 270), +(218062, 'Ryann', 2014, 'F', 270), +(218063, 'Tamia', 2014, 'F', 270), +(218064, 'Kailani', 2014, 'F', 269), +(218065, 'Landry', 2014, 'F', 269), +(218066, 'Aya', 2014, 'F', 268), +(218067, 'Ireland', 2014, 'F', 268), +(218068, 'Mercedes', 2014, 'F', 268), +(218069, 'Rosalyn', 2014, 'F', 268), +(218070, 'Alaysia', 2014, 'F', 267), +(218071, 'Annalee', 2014, 'F', 267), +(218072, 'Patience', 2014, 'F', 267), +(218073, 'Aanya', 2014, 'F', 266), +(218074, 'Paula', 2014, 'F', 266), +(218075, 'Samiyah', 2014, 'F', 266), +(218076, 'Yaritza', 2014, 'F', 266), +(218077, 'Cordelia', 2014, 'F', 264), +(218078, 'Micah', 2014, 'F', 264), +(218079, 'Nala', 2014, 'F', 264), +(218080, 'Belen', 2014, 'F', 263), +(218081, 'Cambria', 2014, 'F', 263), +(218082, 'Natalya', 2014, 'F', 263), +(218083, 'Kaelynn', 2014, 'F', 262), +(218084, 'Kai', 2014, 'F', 262), +(218085, 'Neveah', 2014, 'F', 261), +(218086, 'Adilene', 2014, 'F', 259), +(218087, 'Jayde', 2014, 'F', 259), +(218088, 'Kaya', 2014, 'F', 259), +(218089, 'Krystal', 2014, 'F', 259), +(218090, 'Brisa', 2014, 'F', 258), +(218091, 'Charlize', 2014, 'F', 258), +(218092, 'Jurnee', 2014, 'F', 258), +(218093, 'Rayne', 2014, 'F', 258), +(218094, 'Esperanza', 2014, 'F', 257), +(218095, 'Kailynn', 2014, 'F', 257), +(218096, 'Alianna', 2014, 'F', 256), +(218097, 'Bayleigh', 2014, 'F', 256), +(218098, 'Noor', 2014, 'F', 256), +(218099, 'Andi', 2014, 'F', 255), +(218100, 'Cristina', 2014, 'F', 255), +(218101, 'Devyn', 2014, 'F', 255), +(218102, 'Shannon', 2014, 'F', 255), +(218103, 'Carina', 2014, 'F', 254), +(218104, 'Ellery', 2014, 'F', 254), +(218105, 'Kyndall', 2014, 'F', 254), +(218106, 'Nathalia', 2014, 'F', 254), +(218107, 'Princess', 2014, 'F', 254), +(218108, 'Honesty', 2014, 'F', 253), +(218109, 'Royal', 2014, 'F', 253), +(218110, 'Vienna', 2014, 'F', 253), +(218111, 'Kourtney', 2014, 'F', 252), +(218112, 'Avalyn', 2014, 'F', 251), +(218113, 'Ayana', 2014, 'F', 251), +(218114, 'Belle', 2014, 'F', 250), +(218115, 'Karma', 2014, 'F', 250), +(218116, 'Raylee', 2014, 'F', 250), +(218117, 'Aadhya', 2014, 'F', 249), +(218118, 'Dani', 2014, 'F', 249), +(218119, 'Fallon', 2014, 'F', 249), +(218120, 'Kaitlin', 2014, 'F', 249), +(218121, 'Mylah', 2014, 'F', 248), +(218122, 'Promise', 2014, 'F', 248), +(218123, 'Amaris', 2014, 'F', 247), +(218124, 'Emani', 2014, 'F', 247), +(218125, 'Harmoni', 2014, 'F', 247), +(218126, 'Lyra', 2014, 'F', 247), +(218127, 'Destinee', 2014, 'F', 246), +(218128, 'Kasey', 2014, 'F', 246), +(218129, 'Saanvi', 2014, 'F', 246), +(218130, 'Sarahi', 2014, 'F', 246), +(218131, 'Selina', 2014, 'F', 246), +(218132, 'Ellianna', 2014, 'F', 245), +(218133, 'Jacquelyn', 2014, 'F', 245), +(218134, 'Joelle', 2014, 'F', 245), +(218135, 'Treasure', 2014, 'F', 245), +(218136, 'Abbie', 2014, 'F', 244), +(218137, 'Jakayla', 2014, 'F', 244), +(218138, 'Kaley', 2014, 'F', 244), +(218139, 'Poppy', 2014, 'F', 244), +(218140, 'Arden', 2014, 'F', 243), +(218141, 'Charity', 2014, 'F', 243), +(218142, 'Gwyneth', 2014, 'F', 243), +(218143, 'Haleigh', 2014, 'F', 243), +(218144, 'Cecily', 2014, 'F', 242), +(218145, 'Vivien', 2014, 'F', 242), +(218146, 'Robyn', 2014, 'F', 241), +(218147, 'Austyn', 2014, 'F', 240), +(218148, 'Elissa', 2014, 'F', 240), +(218149, 'Caydence', 2014, 'F', 239), +(218150, 'Aleigha', 2014, 'F', 238), +(218151, 'Aminah', 2014, 'F', 238), +(218152, 'Berkley', 2014, 'F', 238), +(218153, 'Dalilah', 2014, 'F', 238), +(218154, 'Kaylen', 2014, 'F', 238), +(218155, 'Londynn', 2014, 'F', 238), +(218156, 'Kalani', 2014, 'F', 237), +(218157, 'Regan', 2014, 'F', 237), +(218158, 'Bree', 2014, 'F', 236), +(218159, 'Campbell', 2014, 'F', 236), +(218160, 'Luz', 2014, 'F', 236), +(218161, 'Ali', 2014, 'F', 235), +(218162, 'Carleigh', 2014, 'F', 235), +(218163, 'Karis', 2014, 'F', 235), +(218164, 'Kinlee', 2014, 'F', 235), +(218165, 'Aubriana', 2014, 'F', 234), +(218166, 'Ellis', 2014, 'F', 234), +(218167, 'Elora', 2014, 'F', 234), +(218168, 'Romina', 2014, 'F', 234), +(218169, 'Tinley', 2014, 'F', 234), +(218170, 'Akira', 2014, 'F', 233), +(218171, 'Carley', 2014, 'F', 233), +(218172, 'Micaela', 2014, 'F', 233), +(218173, 'Ramona', 2014, 'F', 233), +(218174, 'Rhea', 2014, 'F', 233), +(218175, 'Tess', 2014, 'F', 233), +(218176, 'Analia', 2014, 'F', 232), +(218177, 'Kataleya', 2014, 'F', 232), +(218178, 'Larissa', 2014, 'F', 232), +(218179, 'Ashtyn', 2014, 'F', 231), +(218180, 'Giada', 2014, 'F', 231), +(218181, 'Jazmyn', 2014, 'F', 231), +(218182, 'Mavis', 2014, 'F', 231), +(218183, 'August', 2014, 'F', 230), +(218184, 'Elina', 2014, 'F', 230), +(218185, 'Katrina', 2014, 'F', 230), +(218186, 'Kinleigh', 2014, 'F', 230); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(218187, 'Preslee', 2014, 'F', 230), +(218188, 'Audra', 2014, 'F', 229), +(218189, 'Deanna', 2014, 'F', 229), +(218190, 'Jana', 2014, 'F', 229), +(218191, 'Kensington', 2014, 'F', 229), +(218192, 'Saniya', 2014, 'F', 229), +(218193, 'Kamilah', 2014, 'F', 228), +(218194, 'Lillyana', 2014, 'F', 228), +(218195, 'Rilynn', 2014, 'F', 228), +(218196, 'Anais', 2014, 'F', 227), +(218197, 'Elayna', 2014, 'F', 227), +(218198, 'Karleigh', 2014, 'F', 227), +(218199, 'India', 2014, 'F', 226), +(218200, 'Kinsey', 2014, 'F', 226), +(218201, 'Sylvie', 2014, 'F', 226), +(218202, 'Ari', 2014, 'F', 225), +(218203, 'Kendal', 2014, 'F', 225), +(218204, 'Ophelia', 2014, 'F', 225), +(218205, 'Veda', 2014, 'F', 225), +(218206, 'Zoya', 2014, 'F', 225), +(218207, 'Kelsie', 2014, 'F', 224), +(218208, 'Maylee', 2014, 'F', 224), +(218209, 'Robin', 2014, 'F', 223), +(218210, 'Theresa', 2014, 'F', 223), +(218211, 'Giavanna', 2014, 'F', 222), +(218212, 'Izabelle', 2014, 'F', 222), +(218213, 'Kamille', 2014, 'F', 222), +(218214, 'Chandler', 2014, 'F', 221), +(218215, 'Sariyah', 2014, 'F', 221), +(218216, 'Tinsley', 2014, 'F', 221), +(218217, 'Lillyanna', 2014, 'F', 220), +(218218, 'Adilynn', 2014, 'F', 219), +(218219, 'Cheyanne', 2014, 'F', 219), +(218220, 'Jaleah', 2014, 'F', 219), +(218221, 'Sanaa', 2014, 'F', 219), +(218222, 'Kendyl', 2014, 'F', 218), +(218223, 'Kyndal', 2014, 'F', 218), +(218224, 'Emerald', 2014, 'F', 217), +(218225, 'Gisselle', 2014, 'F', 217), +(218226, 'Leela', 2014, 'F', 217), +(218227, 'Reece', 2014, 'F', 217), +(218228, 'Anneliese', 2014, 'F', 216), +(218229, 'Annelise', 2014, 'F', 216), +(218230, 'Antonella', 2014, 'F', 216), +(218231, 'Delia', 2014, 'F', 216), +(218232, 'Araceli', 2014, 'F', 215), +(218233, 'Dalary', 2014, 'F', 215), +(218234, 'Emmie', 2014, 'F', 215), +(218235, 'Maddie', 2014, 'F', 215), +(218236, 'Addalyn', 2014, 'F', 214), +(218237, 'Maren', 2014, 'F', 214), +(218238, 'Britney', 2014, 'F', 213), +(218239, 'Frankie', 2014, 'F', 213), +(218240, 'Lennox', 2014, 'F', 213), +(218241, 'Kayleen', 2014, 'F', 212), +(218242, 'Zelda', 2014, 'F', 212), +(218243, 'Belinda', 2014, 'F', 211), +(218244, 'Dania', 2014, 'F', 211), +(218245, 'Leilah', 2014, 'F', 211), +(218246, 'Meghan', 2014, 'F', 211), +(218247, 'Adalee', 2014, 'F', 210), +(218248, 'Rachael', 2014, 'F', 209), +(218249, 'Rosalee', 2014, 'F', 209), +(218250, 'Roxanne', 2014, 'F', 209), +(218251, 'Sally', 2014, 'F', 209), +(218252, 'Diya', 2014, 'F', 208), +(218253, 'Drew', 2014, 'F', 208), +(218254, 'Everlee', 2014, 'F', 208), +(218255, 'Jenesis', 2014, 'F', 208), +(218256, 'Marlene', 2014, 'F', 208), +(218257, 'Priya', 2014, 'F', 208), +(218258, 'Annabeth', 2014, 'F', 207), +(218259, 'Elodie', 2014, 'F', 207), +(218260, 'Etta', 2014, 'F', 207), +(218261, 'Itzayana', 2014, 'F', 207), +(218262, 'Ailyn', 2014, 'F', 206), +(218263, 'Amayah', 2014, 'F', 206), +(218264, 'Katerina', 2014, 'F', 206), +(218265, 'Malayah', 2014, 'F', 206), +(218266, 'Samira', 2014, 'F', 206), +(218267, 'Shea', 2014, 'F', 206), +(218268, 'Addie', 2014, 'F', 205), +(218269, 'Amiah', 2014, 'F', 205), +(218270, 'Coral', 2014, 'F', 205), +(218271, 'Evalynn', 2014, 'F', 205), +(218272, 'Scout', 2014, 'F', 205), +(218273, 'Rihanna', 2014, 'F', 204), +(218274, 'Annaliese', 2014, 'F', 203), +(218275, 'Audrianna', 2014, 'F', 203), +(218276, 'Karissa', 2014, 'F', 203), +(218277, 'Kaylani', 2014, 'F', 203), +(218278, 'Marlowe', 2014, 'F', 203), +(218279, 'Noel', 2014, 'F', 203), +(218280, 'Spencer', 2014, 'F', 203), +(218281, 'Keily', 2014, 'F', 202), +(218282, 'Kenleigh', 2014, 'F', 202), +(218283, 'Maxine', 2014, 'F', 202), +(218284, 'Anayah', 2014, 'F', 201), +(218285, 'Damaris', 2014, 'F', 201), +(218286, 'Ila', 2014, 'F', 201), +(218287, 'Maritza', 2014, 'F', 201), +(218288, 'Marlie', 2014, 'F', 201), +(218289, 'Stacy', 2014, 'F', 201), +(218290, 'Sunny', 2014, 'F', 201), +(218291, 'Asha', 2014, 'F', 200), +(218292, 'Hailie', 2014, 'F', 200), +(218293, 'Kaylyn', 2014, 'F', 200), +(218294, 'Nahla', 2014, 'F', 200), +(218295, 'Shirley', 2014, 'F', 200), +(218296, 'Taraji', 2014, 'F', 200), +(218297, 'Vada', 2014, 'F', 200), +(218298, 'Cassie', 2014, 'F', 199), +(218299, 'Harleigh', 2014, 'F', 199), +(218300, 'Kaleah', 2014, 'F', 199), +(218301, 'Karmen', 2014, 'F', 199), +(218302, 'Lorena', 2014, 'F', 199), +(218303, 'Louise', 2014, 'F', 199), +(218304, 'Makena', 2014, 'F', 199), +(218305, 'Persephone', 2014, 'F', 199), +(218306, 'Yesenia', 2014, 'F', 199), +(218307, 'Alessia', 2014, 'F', 198), +(218308, 'Areli', 2014, 'F', 198), +(218309, 'Dariana', 2014, 'F', 198), +(218310, 'Sailor', 2014, 'F', 198), +(218311, 'Sofie', 2014, 'F', 198), +(218312, 'Zayla', 2014, 'F', 198), +(218313, 'Cambree', 2014, 'F', 197), +(218314, 'Kaycee', 2014, 'F', 197), +(218315, 'Whitley', 2014, 'F', 197), +(218316, 'Brynleigh', 2014, 'F', 196), +(218317, 'Calliope', 2014, 'F', 196), +(218318, 'Emi', 2014, 'F', 196), +(218319, 'Isabell', 2014, 'F', 196), +(218320, 'Silvia', 2014, 'F', 196), +(218321, 'Blaire', 2014, 'F', 195), +(218322, 'Gracyn', 2014, 'F', 195), +(218323, 'Xiomara', 2014, 'F', 195), +(218324, 'Yuliana', 2014, 'F', 195), +(218325, 'Leena', 2014, 'F', 194), +(218326, 'Maryjane', 2014, 'F', 194), +(218327, 'Adilyn', 2014, 'F', 193), +(218328, 'Della', 2014, 'F', 193), +(218329, 'Kalia', 2014, 'F', 193), +(218330, 'Raya', 2014, 'F', 193), +(218331, 'Selene', 2014, 'F', 193), +(218332, 'Annaleigh', 2014, 'F', 192), +(218333, 'Nya', 2014, 'F', 192), +(218334, 'Viola', 2014, 'F', 192), +(218335, 'Aliyana', 2014, 'F', 191), +(218336, 'Karli', 2014, 'F', 191), +(218337, 'Tania', 2014, 'F', 191), +(218338, 'Betty', 2014, 'F', 190), +(218339, 'Brynley', 2014, 'F', 190), +(218340, 'Haylie', 2014, 'F', 190), +(218341, 'Rubi', 2014, 'F', 190), +(218342, 'Tia', 2014, 'F', 190), +(218343, 'Valery', 2014, 'F', 190), +(218344, 'Violeta', 2014, 'F', 190), +(218345, 'Addelyn', 2014, 'F', 189), +(218346, 'Ananya', 2014, 'F', 189), +(218347, 'Capri', 2014, 'F', 189), +(218348, 'Marian', 2014, 'F', 189), +(218349, 'Nyah', 2014, 'F', 189), +(218350, 'Aleyda', 2014, 'F', 188), +(218351, 'Celina', 2014, 'F', 188), +(218352, 'Essence', 2014, 'F', 188), +(218353, 'Gretchen', 2014, 'F', 188), +(218354, 'Naima', 2014, 'F', 188), +(218355, 'Rebeca', 2014, 'F', 188), +(218356, 'Agnes', 2014, 'F', 187), +(218357, 'Katarina', 2014, 'F', 187), +(218358, 'Roslyn', 2014, 'F', 187), +(218359, 'Violette', 2014, 'F', 187), +(218360, 'Kenzi', 2014, 'F', 186), +(218361, 'Kiersten', 2014, 'F', 186), +(218362, 'Alora', 2014, 'F', 185), +(218363, 'Brayleigh', 2014, 'F', 185), +(218364, 'Davina', 2014, 'F', 185), +(218365, 'Eisley', 2014, 'F', 185), +(218366, 'Kaila', 2014, 'F', 185), +(218367, 'Paisleigh', 2014, 'F', 185), +(218368, 'Pamela', 2014, 'F', 185), +(218369, 'Samiya', 2014, 'F', 185), +(218370, 'Skylynn', 2014, 'F', 185), +(218371, 'Abrianna', 2014, 'F', 184), +(218372, 'Adela', 2014, 'F', 184), +(218373, 'Kynleigh', 2014, 'F', 184), +(218374, 'Ashanti', 2014, 'F', 183), +(218375, 'Darcy', 2014, 'F', 183), +(218376, 'Heavenly', 2014, 'F', 183), +(218377, 'Jacey', 2014, 'F', 183), +(218378, 'Kamari', 2014, 'F', 183), +(218379, 'Kirsten', 2014, 'F', 183), +(218380, 'Rylynn', 2014, 'F', 183), +(218381, 'Yazmin', 2014, 'F', 183), +(218382, 'Florence', 2014, 'F', 182), +(218383, 'Jaqueline', 2014, 'F', 182), +(218384, 'Katy', 2014, 'F', 182), +(218385, 'Nellie', 2014, 'F', 182), +(218386, 'Amora', 2014, 'F', 181), +(218387, 'Leigha', 2014, 'F', 181), +(218388, 'Zaylee', 2014, 'F', 181), +(218389, 'Alanis', 2014, 'F', 180), +(218390, 'Annette', 2014, 'F', 180), +(218391, 'Maite', 2014, 'F', 180), +(218392, 'Blessing', 2014, 'F', 179), +(218393, 'Hayleigh', 2014, 'F', 179), +(218394, 'Luisa', 2014, 'F', 179), +(218395, 'Maisy', 2014, 'F', 179), +(218396, 'Aarya', 2014, 'F', 178), +(218397, 'Alanah', 2014, 'F', 178), +(218398, 'Arantza', 2014, 'F', 178), +(218399, 'Miyah', 2014, 'F', 178), +(218400, 'Opal', 2014, 'F', 178), +(218401, 'Vivianna', 2014, 'F', 178), +(218402, 'Adyson', 2014, 'F', 177), +(218403, 'Aliah', 2014, 'F', 177), +(218404, 'Kacey', 2014, 'F', 177), +(218405, 'Karly', 2014, 'F', 177), +(218406, 'Loretta', 2014, 'F', 177), +(218407, 'Adley', 2014, 'F', 176), +(218408, 'Hillary', 2014, 'F', 176), +(218409, 'Janice', 2014, 'F', 176), +(218410, 'Keila', 2014, 'F', 176), +(218411, 'Kya', 2014, 'F', 176), +(218412, 'Mika', 2014, 'F', 176), +(218413, 'Milah', 2014, 'F', 176), +(218414, 'Tianna', 2014, 'F', 176), +(218415, 'Yasmine', 2014, 'F', 176), +(218416, 'Beatrix', 2014, 'F', 175), +(218417, 'Cailyn', 2014, 'F', 175), +(218418, 'Caleigh', 2014, 'F', 175), +(218419, 'Seraphina', 2014, 'F', 175), +(218420, 'Soraya', 2014, 'F', 175), +(218421, 'Vida', 2014, 'F', 175), +(218422, 'Aarna', 2014, 'F', 174), +(218423, 'Aiyanna', 2014, 'F', 174), +(218424, 'Laniyah', 2014, 'F', 174), +(218425, 'Rayleigh', 2014, 'F', 174), +(218426, 'Suri', 2014, 'F', 174), +(218427, 'Bentley', 2014, 'F', 173), +(218428, 'Carson', 2014, 'F', 173), +(218429, 'Egypt', 2014, 'F', 173), +(218430, 'Elia', 2014, 'F', 173), +(218431, 'Elly', 2014, 'F', 173), +(218432, 'Lizeth', 2014, 'F', 173), +(218433, 'Palmer', 2014, 'F', 173), +(218434, 'Jazelle', 2014, 'F', 172), +(218435, 'Kinzley', 2014, 'F', 172), +(218436, 'Marisa', 2014, 'F', 172), +(218437, 'Meera', 2014, 'F', 172), +(218438, 'Shyanne', 2014, 'F', 172), +(218439, 'Addalynn', 2014, 'F', 171), +(218440, 'Litzy', 2014, 'F', 171), +(218441, 'Malka', 2014, 'F', 171), +(218442, 'Mariela', 2014, 'F', 171), +(218443, 'Shreya', 2014, 'F', 171), +(218444, 'Audree', 2014, 'F', 170), +(218445, 'Elana', 2014, 'F', 170), +(218446, 'Lilyann', 2014, 'F', 170), +(218447, 'Colbie', 2014, 'F', 169), +(218448, 'Darlene', 2014, 'F', 169), +(218449, 'Jovie', 2014, 'F', 169), +(218450, 'Christiana', 2014, 'F', 168), +(218451, 'Milagros', 2014, 'F', 168), +(218452, 'Tyler', 2014, 'F', 168), +(218453, 'Blythe', 2014, 'F', 167), +(218454, 'Brinlee', 2014, 'F', 167), +(218455, 'Carsyn', 2014, 'F', 167), +(218456, 'Flora', 2014, 'F', 167), +(218457, 'Isadora', 2014, 'F', 167), +(218458, 'Izzabella', 2014, 'F', 167), +(218459, 'Janet', 2014, 'F', 167), +(218460, 'Kyrie', 2014, 'F', 167), +(218461, 'Novalee', 2014, 'F', 167), +(218462, 'Geneva', 2014, 'F', 166), +(218463, 'Iyanna', 2014, 'F', 166), +(218464, 'Jaslyn', 2014, 'F', 166), +(218465, 'Malak', 2014, 'F', 166), +(218466, 'Rita', 2014, 'F', 166), +(218467, 'Tamara', 2014, 'F', 166), +(218468, 'Aniston', 2014, 'F', 165), +(218469, 'Ashton', 2014, 'F', 165), +(218470, 'Jaylyn', 2014, 'F', 165), +(218471, 'Melinda', 2014, 'F', 165), +(218472, 'Nalani', 2014, 'F', 165), +(218473, 'Aadya', 2014, 'F', 164), +(218474, 'Anita', 2014, 'F', 164), +(218475, 'Carissa', 2014, 'F', 164), +(218476, 'Jamiyah', 2014, 'F', 164), +(218477, 'Janie', 2014, 'F', 164), +(218478, 'Jubilee', 2014, 'F', 164), +(218479, 'Leilany', 2014, 'F', 164), +(218480, 'Lianna', 2014, 'F', 164), +(218481, 'Chevelle', 2014, 'F', 163), +(218482, 'Grayson', 2014, 'F', 163), +(218483, 'Khadija', 2014, 'F', 163), +(218484, 'Adaline', 2014, 'F', 162), +(218485, 'Ivana', 2014, 'F', 162), +(218486, 'Marin', 2014, 'F', 162), +(218487, 'Raylynn', 2014, 'F', 162), +(218488, 'Skylah', 2014, 'F', 162), +(218489, 'Yaneli', 2014, 'F', 162), +(218490, 'Darla', 2014, 'F', 161), +(218491, 'Donna', 2014, 'F', 161), +(218492, 'Guinevere', 2014, 'F', 161), +(218493, 'Karley', 2014, 'F', 161), +(218494, 'Maura', 2014, 'F', 161), +(218495, 'Mayra', 2014, 'F', 161), +(218496, 'Shanaya', 2014, 'F', 161), +(218497, 'Yvette', 2014, 'F', 161), +(218498, 'Imogen', 2014, 'F', 160), +(218499, 'Jamya', 2014, 'F', 160), +(218500, 'Sheila', 2014, 'F', 160), +(218501, 'Winnie', 2014, 'F', 160), +(218502, 'Dayanna', 2014, 'F', 159), +(218503, 'Gisele', 2014, 'F', 159), +(218504, 'Kamiyah', 2014, 'F', 159), +(218505, 'Leticia', 2014, 'F', 159), +(218506, 'Sapphire', 2014, 'F', 159), +(218507, 'Shyla', 2014, 'F', 159), +(218508, 'Azul', 2014, 'F', 158), +(218509, 'Eleni', 2014, 'F', 158), +(218510, 'Geraldine', 2014, 'F', 158), +(218511, 'Lidia', 2014, 'F', 158), +(218512, 'Nadine', 2014, 'F', 158), +(218513, 'Yaretzy', 2014, 'F', 158), +(218514, 'Abbey', 2014, 'F', 157), +(218515, 'Alex', 2014, 'F', 157), +(218516, 'Charlene', 2014, 'F', 157), +(218517, 'Journi', 2014, 'F', 157), +(218518, 'Marcella', 2014, 'F', 157), +(218519, 'Pepper', 2014, 'F', 157), +(218520, 'Sonya', 2014, 'F', 157), +(218521, 'Susanna', 2014, 'F', 157), +(218522, 'Carmella', 2014, 'F', 156), +(218523, 'Jael', 2014, 'F', 156), +(218524, 'Jaylen', 2014, 'F', 156), +(218525, 'Jazzlyn', 2014, 'F', 156), +(218526, 'Mariella', 2014, 'F', 156), +(218527, 'Mireya', 2014, 'F', 156), +(218528, 'Shaylee', 2014, 'F', 156), +(218529, 'Angely', 2014, 'F', 155), +(218530, 'Briar', 2014, 'F', 155), +(218531, 'Brookelynn', 2014, 'F', 155), +(218532, 'Cayla', 2014, 'F', 155), +(218533, 'Emmerson', 2014, 'F', 155), +(218534, 'Evangelina', 2014, 'F', 155), +(218535, 'Ezra', 2014, 'F', 155), +(218536, 'Keziah', 2014, 'F', 155), +(218537, 'Linnea', 2014, 'F', 155), +(218538, 'Avalon', 2014, 'F', 154), +(218539, 'Calista', 2014, 'F', 154), +(218540, 'Delanie', 2014, 'F', 154), +(218541, 'Yara', 2014, 'F', 154), +(218542, 'Aida', 2014, 'F', 153), +(218543, 'Clover', 2014, 'F', 153), +(218544, 'Dafne', 2014, 'F', 153), +(218545, 'Dalila', 2014, 'F', 153), +(218546, 'Gina', 2014, 'F', 153), +(218547, 'Maribel', 2014, 'F', 153), +(218548, 'Shania', 2014, 'F', 153), +(218549, 'Analise', 2014, 'F', 152), +(218550, 'Farah', 2014, 'F', 152), +(218551, 'Jaclyn', 2014, 'F', 152), +(218552, 'Quincy', 2014, 'F', 152), +(218553, 'Sarina', 2014, 'F', 152), +(218554, 'Soleil', 2014, 'F', 152), +(218555, 'Ayesha', 2014, 'F', 151), +(218556, 'Evolet', 2014, 'F', 151), +(218557, 'Layan', 2014, 'F', 151), +(218558, 'Bridgette', 2014, 'F', 150), +(218559, 'Lucie', 2014, 'F', 150), +(218560, 'Margo', 2014, 'F', 150), +(218561, 'Tina', 2014, 'F', 150), +(218562, 'Yoselin', 2014, 'F', 150), +(218563, 'Alba', 2014, 'F', 149), +(218564, 'Aracely', 2014, 'F', 149), +(218565, 'Araya', 2014, 'F', 149), +(218566, 'Arlene', 2014, 'F', 149), +(218567, 'Claira', 2014, 'F', 149), +(218568, 'Izabel', 2014, 'F', 149), +(218569, 'Lacy', 2014, 'F', 149), +(218570, 'Lela', 2014, 'F', 149), +(218571, 'Toni', 2014, 'F', 149), +(218572, 'Yamilet', 2014, 'F', 149), +(218573, 'Alyse', 2014, 'F', 148), +(218574, 'Cambrie', 2014, 'F', 148), +(218575, 'Carol', 2014, 'F', 148), +(218576, 'Carrie', 2014, 'F', 148), +(218577, 'Evelina', 2014, 'F', 148), +(218578, 'Jaiden', 2014, 'F', 148), +(218579, 'Kalea', 2014, 'F', 148), +(218580, 'Nailah', 2014, 'F', 148), +(218581, 'Ariane', 2014, 'F', 147), +(218582, 'Denisse', 2014, 'F', 147), +(218583, 'Irie', 2014, 'F', 147), +(218584, 'Keeley', 2014, 'F', 147), +(218585, 'Kynslee', 2014, 'F', 147), +(218586, 'Lillyann', 2014, 'F', 147), +(218587, 'Queen', 2014, 'F', 147), +(218588, 'Unique', 2014, 'F', 147), +(218589, 'Judy', 2014, 'F', 146), +(218590, 'Emiliana', 2014, 'F', 145), +(218591, 'Eunice', 2014, 'F', 145), +(218592, 'Janiah', 2014, 'F', 145), +(218593, 'Luella', 2014, 'F', 145), +(218594, 'Peighton', 2014, 'F', 145), +(218595, 'Adalie', 2014, 'F', 144), +(218596, 'Dina', 2014, 'F', 144), +(218597, 'Dominique', 2014, 'F', 144), +(218598, 'Ema', 2014, 'F', 144), +(218599, 'Ida', 2014, 'F', 144), +(218600, 'Jaidyn', 2014, 'F', 144), +(218601, 'Makenzi', 2014, 'F', 144), +(218602, 'Ziva', 2014, 'F', 144), +(218603, 'Adina', 2014, 'F', 143), +(218604, 'Anaiah', 2014, 'F', 143), +(218605, 'Grecia', 2014, 'F', 143), +(218606, 'Lucinda', 2014, 'F', 143), +(218607, 'Marceline', 2014, 'F', 143), +(218608, 'Petra', 2014, 'F', 143), +(218609, 'Elyssa', 2014, 'F', 142), +(218610, 'Emme', 2014, 'F', 142), +(218611, 'Kayley', 2014, 'F', 142), +(218612, 'Maycee', 2014, 'F', 142), +(218613, 'Nariah', 2014, 'F', 142), +(218614, 'Nicolette', 2014, 'F', 142), +(218615, 'Taylin', 2014, 'F', 142), +(218616, 'Zaniya', 2014, 'F', 142), +(218617, 'Andie', 2014, 'F', 141), +(218618, 'Ariela', 2014, 'F', 141), +(218619, 'Harlie', 2014, 'F', 141), +(218620, 'Kamora', 2014, 'F', 141), +(218621, 'Lacie', 2014, 'F', 141), +(218622, 'Layna', 2014, 'F', 141), +(218623, 'Marion', 2014, 'F', 141), +(218624, 'Miabella', 2014, 'F', 141), +(218625, 'Salem', 2014, 'F', 141), +(218626, 'Adaleigh', 2014, 'F', 140), +(218627, 'Aditi', 2014, 'F', 140), +(218628, 'Beverly', 2014, 'F', 140), +(218629, 'Brigitte', 2014, 'F', 140), +(218630, 'Elinor', 2014, 'F', 140), +(218631, 'Kathy', 2014, 'F', 140), +(218632, 'Anyla', 2014, 'F', 139), +(218633, 'Avani', 2014, 'F', 139), +(218634, 'Beatriz', 2014, 'F', 139), +(218635, 'Calla', 2014, 'F', 139), +(218636, 'Chelsey', 2014, 'F', 139), +(218637, 'Chyna', 2014, 'F', 139), +(218638, 'Dior', 2014, 'F', 139), +(218639, 'Finnley', 2014, 'F', 139), +(218640, 'Korie', 2014, 'F', 139), +(218641, 'Nichole', 2014, 'F', 139), +(218642, 'Tallulah', 2014, 'F', 139), +(218643, 'Annamarie', 2014, 'F', 138), +(218644, 'Ariyanna', 2014, 'F', 138), +(218645, 'Camdyn', 2014, 'F', 138), +(218646, 'Elisha', 2014, 'F', 138), +(218647, 'Emry', 2014, 'F', 138), +(218648, 'Heidy', 2014, 'F', 138), +(218649, 'Nelly', 2014, 'F', 138), +(218650, 'Nikki', 2014, 'F', 138), +(218651, 'Nyomi', 2014, 'F', 138), +(218652, 'Tahiry', 2014, 'F', 138), +(218653, 'Aleeah', 2014, 'F', 137), +(218654, 'Arabelle', 2014, 'F', 137), +(218655, 'Eiza', 2014, 'F', 137), +(218656, 'Emalyn', 2014, 'F', 137), +(218657, 'Jersey', 2014, 'F', 137), +(218658, 'Maryann', 2014, 'F', 137), +(218659, 'Shay', 2014, 'F', 137), +(218660, 'Yarely', 2014, 'F', 137), +(218661, 'Ariyana', 2014, 'F', 136), +(218662, 'Chasity', 2014, 'F', 136), +(218663, 'Kamiya', 2014, 'F', 136), +(218664, 'Laci', 2014, 'F', 136), +(218665, 'May', 2014, 'F', 136), +(218666, 'Maylin', 2014, 'F', 136), +(218667, 'Rosemarie', 2014, 'F', 136), +(218668, 'Tala', 2014, 'F', 136), +(218669, 'Estefania', 2014, 'F', 135), +(218670, 'Georgina', 2014, 'F', 135), +(218671, 'Isha', 2014, 'F', 135), +(218672, 'Renesmee', 2014, 'F', 135), +(218673, 'Taytum', 2014, 'F', 135), +(218674, 'Amyah', 2014, 'F', 134), +(218675, 'Eleanora', 2014, 'F', 134), +(218676, 'Harmonie', 2014, 'F', 134), +(218677, 'Karolina', 2014, 'F', 134), +(218678, 'Lenora', 2014, 'F', 134), +(218679, 'Malina', 2014, 'F', 134), +(218680, 'Shaniya', 2014, 'F', 134), +(218681, 'Tahlia', 2014, 'F', 134), +(218682, 'Abbygail', 2014, 'F', 133), +(218683, 'Constance', 2014, 'F', 133), +(218684, 'Eryn', 2014, 'F', 133), +(218685, 'Halo', 2014, 'F', 133), +(218686, 'Joslynn', 2014, 'F', 133), +(218687, 'Josslyn', 2014, 'F', 133), +(218688, 'Kaylah', 2014, 'F', 133), +(218689, 'Kristin', 2014, 'F', 133), +(218690, 'Reign', 2014, 'F', 133), +(218691, 'Symphony', 2014, 'F', 133), +(218692, 'Zahara', 2014, 'F', 133), +(218693, 'Zora', 2014, 'F', 133), +(218694, 'Amariah', 2014, 'F', 132), +(218695, 'Christian', 2014, 'F', 132), +(218696, 'Jianna', 2014, 'F', 132), +(218697, 'Kenlee', 2014, 'F', 132), +(218698, 'Makinley', 2014, 'F', 132), +(218699, 'Sanai', 2014, 'F', 132), +(218700, 'Susana', 2014, 'F', 132), +(218701, 'Vayda', 2014, 'F', 132), +(218702, 'Waverly', 2014, 'F', 132), +(218703, 'Amerie', 2014, 'F', 131), +(218704, 'Annmarie', 2014, 'F', 131), +(218705, 'Betsy', 2014, 'F', 131), +(218706, 'Candice', 2014, 'F', 131), +(218707, 'Chiara', 2014, 'F', 131), +(218708, 'Emoni', 2014, 'F', 131), +(218709, 'Kamilla', 2014, 'F', 131), +(218710, 'Kamya', 2014, 'F', 131), +(218711, 'Katia', 2014, 'F', 131), +(218712, 'Margarita', 2014, 'F', 131), +(218713, 'Precious', 2014, 'F', 131), +(218714, 'Prisha', 2014, 'F', 131), +(218715, 'Rhiannon', 2014, 'F', 131), +(218716, 'Ashlee', 2014, 'F', 130), +(218717, 'Graciela', 2014, 'F', 130), +(218718, 'Jadyn', 2014, 'F', 130), +(218719, 'Kalina', 2014, 'F', 130), +(218720, 'Magdalene', 2014, 'F', 130), +(218721, 'Mayah', 2014, 'F', 130), +(218722, 'Sandy', 2014, 'F', 130), +(218723, 'Skylee', 2014, 'F', 130), +(218724, 'Taliah', 2014, 'F', 130), +(218725, 'Tanya', 2014, 'F', 130), +(218726, 'Aila', 2014, 'F', 129), +(218727, 'Alessa', 2014, 'F', 129), +(218728, 'Anjali', 2014, 'F', 129), +(218729, 'Bernadette', 2014, 'F', 129), +(218730, 'Blanca', 2014, 'F', 129), +(218731, 'Citlali', 2014, 'F', 129), +(218732, 'Melani', 2014, 'F', 129), +(218733, 'Ryder', 2014, 'F', 129), +(218734, 'Abagail', 2014, 'F', 128), +(218735, 'Janney', 2014, 'F', 128), +(218736, 'Keely', 2014, 'F', 128), +(218737, 'Kenzley', 2014, 'F', 128), +(218738, 'Milly', 2014, 'F', 128), +(218739, 'Raeleigh', 2014, 'F', 128), +(218740, 'Tracy', 2014, 'F', 128), +(218741, 'Trisha', 2014, 'F', 128), +(218742, 'Harriet', 2014, 'F', 127), +(218743, 'Kaci', 2014, 'F', 127), +(218744, 'Lincoln', 2014, 'F', 127), +(218745, 'Love', 2014, 'F', 127), +(218746, 'Martina', 2014, 'F', 127), +(218747, 'Rilee', 2014, 'F', 127), +(218748, 'Amarie', 2014, 'F', 126), +(218749, 'Amor', 2014, 'F', 126), +(218750, 'Arianny', 2014, 'F', 126), +(218751, 'Brea', 2014, 'F', 126), +(218752, 'Haddie', 2014, 'F', 126), +(218753, 'Iyana', 2014, 'F', 126), +(218754, 'Lori', 2014, 'F', 126), +(218755, 'Mazie', 2014, 'F', 126), +(218756, 'Moira', 2014, 'F', 126), +(218757, 'Payten', 2014, 'F', 126), +(218758, 'Abigale', 2014, 'F', 125), +(218759, 'Brittney', 2014, 'F', 125), +(218760, 'Evelin', 2014, 'F', 125), +(218761, 'Josselyn', 2014, 'F', 125), +(218762, 'Justyce', 2014, 'F', 125), +(218763, 'Lucero', 2014, 'F', 125), +(218764, 'Rileigh', 2014, 'F', 125), +(218765, 'Yuna', 2014, 'F', 125), +(218766, 'Yvonne', 2014, 'F', 125), +(218767, 'Baylor', 2014, 'F', 124), +(218768, 'Cattleya', 2014, 'F', 124), +(218769, 'Channing', 2014, 'F', 124), +(218770, 'Gillian', 2014, 'F', 124), +(218771, 'Inara', 2014, 'F', 124), +(218772, 'Jaya', 2014, 'F', 124), +(218773, 'Jordin', 2014, 'F', 124), +(218774, 'Kacie', 2014, 'F', 124), +(218775, 'Keilani', 2014, 'F', 124), +(218776, 'Kinsleigh', 2014, 'F', 124), +(218777, 'Lux', 2014, 'F', 124), +(218778, 'Montana', 2014, 'F', 124), +(218779, 'Noelia', 2014, 'F', 124), +(218780, 'Sydnee', 2014, 'F', 124), +(218781, 'Amberly', 2014, 'F', 123), +(218782, 'Aspyn', 2014, 'F', 123), +(218783, 'Carmela', 2014, 'F', 123), +(218784, 'Kloe', 2014, 'F', 123), +(218785, 'Makiyah', 2014, 'F', 123), +(218786, 'Nayla', 2014, 'F', 123), +(218787, 'Cierra', 2014, 'F', 122), +(218788, 'Cooper', 2014, 'F', 122), +(218789, 'Denver', 2014, 'F', 122), +(218790, 'Doris', 2014, 'F', 122), +(218791, 'Emeri', 2014, 'F', 122), +(218792, 'Gwenyth', 2014, 'F', 122), +(218793, 'Liza', 2014, 'F', 122), +(218794, 'Myka', 2014, 'F', 122), +(218795, 'Niyah', 2014, 'F', 122), +(218796, 'Zia', 2014, 'F', 122), +(218797, 'Abigayle', 2014, 'F', 121), +(218798, 'Austin', 2014, 'F', 121), +(218799, 'Caelyn', 2014, 'F', 121), +(218800, 'Candace', 2014, 'F', 121), +(218801, 'Diane', 2014, 'F', 121), +(218802, 'Italia', 2014, 'F', 121), +(218803, 'Kenadee', 2014, 'F', 121), +(218804, 'Raniyah', 2014, 'F', 121), +(218805, 'Sahana', 2014, 'F', 121), +(218806, 'Yolanda', 2014, 'F', 121), +(218807, 'Zola', 2014, 'F', 121), +(218808, 'Ariadna', 2014, 'F', 120), +(218809, 'Batsheva', 2014, 'F', 120), +(218810, 'Billie', 2014, 'F', 120), +(218811, 'Daleysa', 2014, 'F', 120), +(218812, 'Elli', 2014, 'F', 120), +(218813, 'Jacelyn', 2014, 'F', 120), +(218814, 'Raleigh', 2014, 'F', 120), +(218815, 'Shayna', 2014, 'F', 120), +(218816, 'Zaina', 2014, 'F', 120), +(218817, 'Zaira', 2014, 'F', 120), +(218818, 'Analeigh', 2014, 'F', 119), +(218819, 'Ayah', 2014, 'F', 119), +(218820, 'Jackie', 2014, 'F', 119), +(218821, 'Makaylah', 2014, 'F', 119), +(218822, 'Maliya', 2014, 'F', 119), +(218823, 'Mariajose', 2014, 'F', 119), +(218824, 'Navya', 2014, 'F', 119), +(218825, 'Pippa', 2014, 'F', 119), +(218826, 'Rosalia', 2014, 'F', 119), +(218827, 'Stephany', 2014, 'F', 119), +(218828, 'Zaya', 2014, 'F', 119), +(218829, 'Amilia', 2014, 'F', 118), +(218830, 'Anylah', 2014, 'F', 118), +(218831, 'Ayvah', 2014, 'F', 118), +(218832, 'Deja', 2014, 'F', 118), +(218833, 'Jamiya', 2014, 'F', 118), +(218834, 'Jaycie', 2014, 'F', 118), +(218835, 'Jiselle', 2014, 'F', 118), +(218836, 'Preslie', 2014, 'F', 118), +(218837, 'Sana', 2014, 'F', 118), +(218838, 'Cristal', 2014, 'F', 117), +(218839, 'Emelyn', 2014, 'F', 117), +(218840, 'Estefany', 2014, 'F', 117), +(218841, 'Fabiola', 2014, 'F', 117), +(218842, 'Hartley', 2014, 'F', 117), +(218843, 'Jaslene', 2014, 'F', 117), +(218844, 'Keegan', 2014, 'F', 117), +(218845, 'Krista', 2014, 'F', 117), +(218846, 'Annalisa', 2014, 'F', 116), +(218847, 'Kambree', 2014, 'F', 116), +(218848, 'Laina', 2014, 'F', 116), +(218849, 'Saphira', 2014, 'F', 116), +(218850, 'Savanah', 2014, 'F', 116), +(218851, 'Serafina', 2014, 'F', 116), +(218852, 'Taelyn', 2014, 'F', 116), +(218853, 'Akshara', 2014, 'F', 115), +(218854, 'Aleyah', 2014, 'F', 115), +(218855, 'Braylynn', 2014, 'F', 115), +(218856, 'Camden', 2014, 'F', 115), +(218857, 'Colleen', 2014, 'F', 115), +(218858, 'Edie', 2014, 'F', 115), +(218859, 'Jackeline', 2014, 'F', 115), +(218860, 'Jailyn', 2014, 'F', 115), +(218861, 'Jalayah', 2014, 'F', 115), +(218862, 'Kalli', 2014, 'F', 115), +(218863, 'Melia', 2014, 'F', 115), +(218864, 'Paizley', 2014, 'F', 115), +(218865, 'Yasmeen', 2014, 'F', 115), +(218866, 'Ester', 2014, 'F', 114), +(218867, 'Jaci', 2014, 'F', 114), +(218868, 'Joey', 2014, 'F', 114), +(218869, 'Kamdyn', 2014, 'F', 114), +(218870, 'Kelsi', 2014, 'F', 114), +(218871, 'Raizy', 2014, 'F', 114), +(218872, 'Aniah', 2014, 'F', 113), +(218873, 'Carys', 2014, 'F', 113), +(218874, 'Cielo', 2014, 'F', 113), +(218875, 'Emmarie', 2014, 'F', 113), +(218876, 'Ever', 2014, 'F', 113), +(218877, 'Faigy', 2014, 'F', 113), +(218878, 'Hafsa', 2014, 'F', 113), +(218879, 'Jude', 2014, 'F', 113), +(218880, 'Kayli', 2014, 'F', 113), +(218881, 'Keren', 2014, 'F', 113), +(218882, 'Laylani', 2014, 'F', 113), +(218883, 'Lesley', 2014, 'F', 113), +(218884, 'Shoshana', 2014, 'F', 113), +(218885, 'Alyna', 2014, 'F', 112), +(218886, 'Bennett', 2014, 'F', 112), +(218887, 'Ellyana', 2014, 'F', 112), +(218888, 'Hollis', 2014, 'F', 112), +(218889, 'Jaina', 2014, 'F', 112), +(218890, 'Jayna', 2014, 'F', 112), +(218891, 'Joanne', 2014, 'F', 112), +(218892, 'Journie', 2014, 'F', 112), +(218893, 'Khalia', 2014, 'F', 112), +(218894, 'Kiya', 2014, 'F', 112), +(218895, 'Lakyn', 2014, 'F', 112), +(218896, 'Lanie', 2014, 'F', 112), +(218897, 'Lorraine', 2014, 'F', 112), +(218898, 'Marcela', 2014, 'F', 112), +(218899, 'Taniyah', 2014, 'F', 112), +(218900, 'Tesla', 2014, 'F', 112), +(218901, 'Alexus', 2014, 'F', 111), +(218902, 'Arlette', 2014, 'F', 111), +(218903, 'Avarie', 2014, 'F', 111), +(218904, 'Hudson', 2014, 'F', 111), +(218905, 'Journei', 2014, 'F', 111), +(218906, 'Klara', 2014, 'F', 111), +(218907, 'Maiya', 2014, 'F', 111), +(218908, 'Samaya', 2014, 'F', 111), +(218909, 'Brystol', 2014, 'F', 110), +(218910, 'Carli', 2014, 'F', 110), +(218911, 'Desirae', 2014, 'F', 110), +(218912, 'Gizelle', 2014, 'F', 110), +(218913, 'Iman', 2014, 'F', 110), +(218914, 'Jannah', 2014, 'F', 110), +(218915, 'Kierra', 2014, 'F', 110), +(218916, 'Lillith', 2014, 'F', 110), +(218917, 'Nechama', 2014, 'F', 110), +(218918, 'Nila', 2014, 'F', 110), +(218919, 'Niya', 2014, 'F', 110), +(218920, 'Presleigh', 2014, 'F', 110), +(218921, 'Saoirse', 2014, 'F', 110), +(218922, 'Sonja', 2014, 'F', 110), +(218923, 'Tanvi', 2014, 'F', 110), +(218924, 'Abriella', 2014, 'F', 109), +(218925, 'Alyanna', 2014, 'F', 109), +(218926, 'Emalee', 2014, 'F', 109), +(218927, 'Joselin', 2014, 'F', 109), +(218928, 'Kari', 2014, 'F', 109), +(218929, 'Khadijah', 2014, 'F', 109), +(218930, 'Laiyah', 2014, 'F', 109), +(218931, 'Leanne', 2014, 'F', 109), +(218932, 'Lillyan', 2014, 'F', 109), +(218933, 'Malena', 2014, 'F', 109), +(218934, 'Roselynn', 2014, 'F', 109), +(218935, 'Teegan', 2014, 'F', 109), +(218936, 'Viktoria', 2014, 'F', 109), +(218937, 'Yael', 2014, 'F', 109), +(218938, 'Ashly', 2014, 'F', 108), +(218939, 'Aven', 2014, 'F', 108), +(218940, 'Charly', 2014, 'F', 108), +(218941, 'Cosette', 2014, 'F', 108), +(218942, 'Indigo', 2014, 'F', 108), +(218943, 'Johana', 2014, 'F', 108), +(218944, 'Laken', 2014, 'F', 108), +(218945, 'Laniya', 2014, 'F', 108), +(218946, 'Lupita', 2014, 'F', 108), +(218947, 'Maelynn', 2014, 'F', 108), +(218948, 'Rosalinda', 2014, 'F', 108), +(218949, 'Sahara', 2014, 'F', 108), +(218950, 'Selma', 2014, 'F', 108), +(218951, 'Vivianne', 2014, 'F', 108), +(218952, 'Zooey', 2014, 'F', 108), +(218953, 'Aiza', 2014, 'F', 107), +(218954, 'Anisa', 2014, 'F', 107), +(218955, 'Deasia', 2014, 'F', 107), +(218956, 'Dianna', 2014, 'F', 107), +(218957, 'Freyja', 2014, 'F', 107), +(218958, 'Honor', 2014, 'F', 107), +(218959, 'Ruthie', 2014, 'F', 107), +(218960, 'Wilhelmina', 2014, 'F', 107), +(218961, 'Arionna', 2014, 'F', 106), +(218962, 'Audrie', 2014, 'F', 106), +(218963, 'Elysia', 2014, 'F', 106), +(218964, 'Iyla', 2014, 'F', 106), +(218965, 'Jacie', 2014, 'F', 106), +(218966, 'Karmyn', 2014, 'F', 106), +(218967, 'Marianne', 2014, 'F', 106), +(218968, 'Noah', 2014, 'F', 106), +(218969, 'Oaklee', 2014, 'F', 106), +(218970, 'Aaleyah', 2014, 'F', 105), +(218971, 'Aaralyn', 2014, 'F', 105), +(218972, 'Adrian', 2014, 'F', 105), +(218973, 'Ailani', 2014, 'F', 105), +(218974, 'Calleigh', 2014, 'F', 105), +(218975, 'Darby', 2014, 'F', 105), +(218976, 'Devorah', 2014, 'F', 105), +(218977, 'Everley', 2014, 'F', 105), +(218978, 'Fatimah', 2014, 'F', 105), +(218979, 'Karoline', 2014, 'F', 105), +(218980, 'Kenzlee', 2014, 'F', 105), +(218981, 'Kynzlee', 2014, 'F', 105), +(218982, 'Leann', 2014, 'F', 105), +(218983, 'Reem', 2014, 'F', 105), +(218984, 'Roxana', 2014, 'F', 105), +(218985, 'Roxanna', 2014, 'F', 105), +(218986, 'Rylin', 2014, 'F', 105), +(218987, 'Sanvi', 2014, 'F', 105), +(218988, 'Star', 2014, 'F', 105), +(218989, 'Veronika', 2014, 'F', 105), +(218990, 'Zoee', 2014, 'F', 105), +(218991, 'Ameera', 2014, 'F', 104), +(218992, 'Arwen', 2014, 'F', 104), +(218993, 'Asiya', 2014, 'F', 104), +(218994, 'Daria', 2014, 'F', 104), +(218995, 'Dasia', 2014, 'F', 104), +(218996, 'Elliette', 2014, 'F', 104), +(218997, 'Ira', 2014, 'F', 104), +(218998, 'Jalynn', 2014, 'F', 104), +(218999, 'Juana', 2014, 'F', 104), +(219000, 'Kelis', 2014, 'F', 104), +(219001, 'Kianna', 2014, 'F', 104), +(219002, 'Legacy', 2014, 'F', 104), +(219003, 'Marli', 2014, 'F', 104), +(219004, 'Memphis', 2014, 'F', 104), +(219005, 'Stormy', 2014, 'F', 104), +(219006, 'Zyana', 2014, 'F', 104), +(219007, 'Adamaris', 2014, 'F', 103), +(219008, 'Arleth', 2014, 'F', 103), +(219009, 'Bellamy', 2014, 'F', 103), +(219010, 'Charis', 2014, 'F', 103), +(219011, 'Devin', 2014, 'F', 103), +(219012, 'Kerrigan', 2014, 'F', 103), +(219013, 'Lilyan', 2014, 'F', 103), +(219014, 'Malani', 2014, 'F', 103), +(219015, 'Mandy', 2014, 'F', 103), +(219016, 'Mariya', 2014, 'F', 103), +(219017, 'Mayte', 2014, 'F', 103), +(219018, 'Rania', 2014, 'F', 103), +(219019, 'Rhyan', 2014, 'F', 103), +(219020, 'Rowen', 2014, 'F', 103), +(219021, 'Santana', 2014, 'F', 103), +(219022, 'Sheyla', 2014, 'F', 103), +(219023, 'Stacey', 2014, 'F', 103), +(219024, 'Xochitl', 2014, 'F', 103), +(219025, 'Ansleigh', 2014, 'F', 102), +(219026, 'Aribella', 2014, 'F', 102), +(219027, 'Avril', 2014, 'F', 102), +(219028, 'Braylin', 2014, 'F', 102), +(219029, 'Emmaleigh', 2014, 'F', 102), +(219030, 'Gentry', 2014, 'F', 102), +(219031, 'Jeanette', 2014, 'F', 102), +(219032, 'Kavya', 2014, 'F', 102), +(219033, 'Khloee', 2014, 'F', 102), +(219034, 'Mckinlee', 2014, 'F', 102), +(219035, 'Mylee', 2014, 'F', 102), +(219036, 'Rain', 2014, 'F', 102), +(219037, 'Rochel', 2014, 'F', 102), +(219038, 'Rosalynn', 2014, 'F', 102), +(219039, 'Talya', 2014, 'F', 102), +(219040, 'Alli', 2014, 'F', 101), +(219041, 'Ani', 2014, 'F', 101), +(219042, 'Anistyn', 2014, 'F', 101), +(219043, 'Ashleigh', 2014, 'F', 101), +(219044, 'Brylie', 2014, 'F', 101), +(219045, 'Cayleigh', 2014, 'F', 101), +(219046, 'Danae', 2014, 'F', 101), +(219047, 'Inaya', 2014, 'F', 101), +(219048, 'Justine', 2014, 'F', 101), +(219049, 'Kyah', 2014, 'F', 101), +(219050, 'Merida', 2014, 'F', 101), +(219051, 'Nahomi', 2014, 'F', 101), +(219052, 'Nori', 2014, 'F', 101), +(219053, 'Sabina', 2014, 'F', 101), +(219054, 'Salome', 2014, 'F', 101), +(219055, 'Shyann', 2014, 'F', 101), +(219056, 'Adalina', 2014, 'F', 100), +(219057, 'Angelie', 2014, 'F', 100), +(219058, 'Arizona', 2014, 'F', 100), +(219059, 'Cleo', 2014, 'F', 100), +(219060, 'Ela', 2014, 'F', 100), +(219061, 'Monique', 2014, 'F', 100), +(219062, 'Ria', 2014, 'F', 100), +(219063, 'Rosalind', 2014, 'F', 100), +(219064, 'Sahasra', 2014, 'F', 100), +(219065, 'Tiara', 2014, 'F', 100), +(219066, 'Noah', 2014, 'M', 19144), +(219067, 'Liam', 2014, 'M', 18342), +(219068, 'Mason', 2014, 'M', 17092), +(219069, 'Jacob', 2014, 'M', 16712), +(219070, 'William', 2014, 'M', 16687), +(219071, 'Ethan', 2014, 'M', 15619), +(219072, 'Michael', 2014, 'M', 15323), +(219073, 'Alexander', 2014, 'M', 15293), +(219074, 'James', 2014, 'M', 14301), +(219075, 'Daniel', 2014, 'M', 13829), +(219076, 'Elijah', 2014, 'M', 13694), +(219077, 'Benjamin', 2014, 'M', 13687), +(219078, 'Logan', 2014, 'M', 13579), +(219079, 'Aiden', 2014, 'M', 13296), +(219080, 'Jayden', 2014, 'M', 12878), +(219081, 'Matthew', 2014, 'M', 12809), +(219082, 'Jackson', 2014, 'M', 12121), +(219083, 'David', 2014, 'M', 12078), +(219084, 'Lucas', 2014, 'M', 12078), +(219085, 'Joseph', 2014, 'M', 11995), +(219086, 'Anthony', 2014, 'M', 11490), +(219087, 'Andrew', 2014, 'M', 11069), +(219088, 'Samuel', 2014, 'M', 10859), +(219089, 'Gabriel', 2014, 'M', 10826), +(219090, 'Joshua', 2014, 'M', 10764), +(219091, 'John', 2014, 'M', 10600), +(219092, 'Carter', 2014, 'M', 10599), +(219093, 'Luke', 2014, 'M', 10431), +(219094, 'Dylan', 2014, 'M', 10350), +(219095, 'Christopher', 2014, 'M', 10278), +(219096, 'Isaac', 2014, 'M', 9868), +(219097, 'Oliver', 2014, 'M', 9365), +(219098, 'Henry', 2014, 'M', 9350), +(219099, 'Sebastian', 2014, 'M', 9237), +(219100, 'Caleb', 2014, 'M', 9143), +(219101, 'Owen', 2014, 'M', 9100), +(219102, 'Ryan', 2014, 'M', 9026), +(219103, 'Nathan', 2014, 'M', 8902), +(219104, 'Wyatt', 2014, 'M', 8812), +(219105, 'Hunter', 2014, 'M', 8759), +(219106, 'Jack', 2014, 'M', 8685), +(219107, 'Christian', 2014, 'M', 8388), +(219108, 'Landon', 2014, 'M', 8180), +(219109, 'Jonathan', 2014, 'M', 8035), +(219110, 'Levi', 2014, 'M', 7958), +(219111, 'Jaxon', 2014, 'M', 7635), +(219112, 'Julian', 2014, 'M', 7611), +(219113, 'Isaiah', 2014, 'M', 7530), +(219114, 'Eli', 2014, 'M', 7428), +(219115, 'Aaron', 2014, 'M', 7334), +(219116, 'Charles', 2014, 'M', 7269), +(219117, 'Connor', 2014, 'M', 7195), +(219118, 'Cameron', 2014, 'M', 7013), +(219119, 'Thomas', 2014, 'M', 6972), +(219120, 'Jordan', 2014, 'M', 6810), +(219121, 'Jeremiah', 2014, 'M', 6780), +(219122, 'Nicholas', 2014, 'M', 6713), +(219123, 'Evan', 2014, 'M', 6667), +(219124, 'Adrian', 2014, 'M', 6659), +(219125, 'Gavin', 2014, 'M', 6582), +(219126, 'Robert', 2014, 'M', 6572), +(219127, 'Brayden', 2014, 'M', 6539), +(219128, 'Grayson', 2014, 'M', 6532), +(219129, 'Josiah', 2014, 'M', 6376), +(219130, 'Colton', 2014, 'M', 6339), +(219131, 'Austin', 2014, 'M', 6263), +(219132, 'Angel', 2014, 'M', 6255), +(219133, 'Jace', 2014, 'M', 6254), +(219134, 'Dominic', 2014, 'M', 6205), +(219135, 'Kevin', 2014, 'M', 5859), +(219136, 'Brandon', 2014, 'M', 5804), +(219137, 'Tyler', 2014, 'M', 5785), +(219138, 'Parker', 2014, 'M', 5677), +(219139, 'Ayden', 2014, 'M', 5586), +(219140, 'Jason', 2014, 'M', 5510), +(219141, 'Jose', 2014, 'M', 5442), +(219142, 'Ian', 2014, 'M', 5422), +(219143, 'Chase', 2014, 'M', 5322), +(219144, 'Adam', 2014, 'M', 5293), +(219145, 'Hudson', 2014, 'M', 5199), +(219146, 'Nolan', 2014, 'M', 5181), +(219147, 'Zachary', 2014, 'M', 5137), +(219148, 'Easton', 2014, 'M', 4961), +(219149, 'Blake', 2014, 'M', 4913), +(219150, 'Jaxson', 2014, 'M', 4900), +(219151, 'Cooper', 2014, 'M', 4803), +(219152, 'Lincoln', 2014, 'M', 4785), +(219153, 'Xavier', 2014, 'M', 4726), +(219154, 'Bentley', 2014, 'M', 4722), +(219155, 'Kayden', 2014, 'M', 4691), +(219156, 'Carson', 2014, 'M', 4580), +(219157, 'Brody', 2014, 'M', 4297), +(219158, 'Asher', 2014, 'M', 4279), +(219159, 'Nathaniel', 2014, 'M', 4257), +(219160, 'Ryder', 2014, 'M', 4073), +(219161, 'Justin', 2014, 'M', 3991), +(219162, 'Leo', 2014, 'M', 3936), +(219163, 'Juan', 2014, 'M', 3887), +(219164, 'Luis', 2014, 'M', 3879), +(219165, 'Camden', 2014, 'M', 3872), +(219166, 'Tristan', 2014, 'M', 3872), +(219167, 'Damian', 2014, 'M', 3866), +(219168, 'Elias', 2014, 'M', 3751), +(219169, 'Vincent', 2014, 'M', 3744), +(219170, 'Jase', 2014, 'M', 3719), +(219171, 'Mateo', 2014, 'M', 3704), +(219172, 'Maxwell', 2014, 'M', 3703), +(219173, 'Miles', 2014, 'M', 3639), +(219174, 'Micah', 2014, 'M', 3612), +(219175, 'Sawyer', 2014, 'M', 3571), +(219176, 'Jesus', 2014, 'M', 3504), +(219177, 'Max', 2014, 'M', 3468), +(219178, 'Roman', 2014, 'M', 3435), +(219179, 'Leonardo', 2014, 'M', 3431), +(219180, 'Santiago', 2014, 'M', 3417), +(219181, 'Cole', 2014, 'M', 3404), +(219182, 'Carlos', 2014, 'M', 3402), +(219183, 'Bryson', 2014, 'M', 3397), +(219184, 'Ezra', 2014, 'M', 3372), +(219185, 'Brantley', 2014, 'M', 3322), +(219186, 'Braxton', 2014, 'M', 3320), +(219187, 'Declan', 2014, 'M', 3299), +(219188, 'Eric', 2014, 'M', 3294), +(219189, 'Kaiden', 2014, 'M', 3247), +(219190, 'Giovanni', 2014, 'M', 3230), +(219191, 'Theodore', 2014, 'M', 3191), +(219192, 'Harrison', 2014, 'M', 3184), +(219193, 'Alex', 2014, 'M', 3159), +(219194, 'Diego', 2014, 'M', 3154), +(219195, 'Wesley', 2014, 'M', 3112), +(219196, 'Bryce', 2014, 'M', 3099), +(219197, 'Ivan', 2014, 'M', 3059), +(219198, 'Greyson', 2014, 'M', 3022), +(219199, 'George', 2014, 'M', 2988), +(219200, 'Timothy', 2014, 'M', 2981), +(219201, 'Weston', 2014, 'M', 2944), +(219202, 'Silas', 2014, 'M', 2900), +(219203, 'Jonah', 2014, 'M', 2878), +(219204, 'Antonio', 2014, 'M', 2871), +(219205, 'Colin', 2014, 'M', 2869), +(219206, 'Richard', 2014, 'M', 2857), +(219207, 'Hayden', 2014, 'M', 2851), +(219208, 'Ashton', 2014, 'M', 2797), +(219209, 'Steven', 2014, 'M', 2778), +(219210, 'Axel', 2014, 'M', 2777), +(219211, 'Miguel', 2014, 'M', 2737), +(219212, 'Kaleb', 2014, 'M', 2734), +(219213, 'Bryan', 2014, 'M', 2713), +(219214, 'Preston', 2014, 'M', 2705), +(219215, 'Jayce', 2014, 'M', 2696), +(219216, 'Ryker', 2014, 'M', 2666), +(219217, 'Victor', 2014, 'M', 2664), +(219218, 'Patrick', 2014, 'M', 2658), +(219219, 'Joel', 2014, 'M', 2641), +(219220, 'Grant', 2014, 'M', 2624), +(219221, 'Emmett', 2014, 'M', 2623), +(219222, 'Alejandro', 2014, 'M', 2593), +(219223, 'Marcus', 2014, 'M', 2592), +(219224, 'Jameson', 2014, 'M', 2575), +(219225, 'Edward', 2014, 'M', 2567), +(219226, 'Kingston', 2014, 'M', 2566), +(219227, 'Jude', 2014, 'M', 2564), +(219228, 'Maddox', 2014, 'M', 2554), +(219229, 'Abel', 2014, 'M', 2551), +(219230, 'Emmanuel', 2014, 'M', 2548), +(219231, 'Bennett', 2014, 'M', 2525), +(219232, 'Everett', 2014, 'M', 2520), +(219233, 'Brian', 2014, 'M', 2510), +(219234, 'Jeremy', 2014, 'M', 2506), +(219235, 'Alan', 2014, 'M', 2490), +(219236, 'Kaden', 2014, 'M', 2440), +(219237, 'Jaden', 2014, 'M', 2433), +(219238, 'Riley', 2014, 'M', 2429), +(219239, 'Jesse', 2014, 'M', 2424), +(219240, 'King', 2014, 'M', 2418), +(219241, 'Tucker', 2014, 'M', 2406), +(219242, 'Kai', 2014, 'M', 2387), +(219243, 'Kyle', 2014, 'M', 2370), +(219244, 'Malachi', 2014, 'M', 2352), +(219245, 'Abraham', 2014, 'M', 2351), +(219246, 'Ezekiel', 2014, 'M', 2347), +(219247, 'Calvin', 2014, 'M', 2319), +(219248, 'Oscar', 2014, 'M', 2309), +(219249, 'Bradley', 2014, 'M', 2308), +(219250, 'Luca', 2014, 'M', 2291), +(219251, 'Avery', 2014, 'M', 2269), +(219252, 'Aidan', 2014, 'M', 2265), +(219253, 'Zayden', 2014, 'M', 2209), +(219254, 'Mark', 2014, 'M', 2161), +(219255, 'Jake', 2014, 'M', 2154), +(219256, 'Kenneth', 2014, 'M', 2128), +(219257, 'Maximus', 2014, 'M', 2118), +(219258, 'Sean', 2014, 'M', 2107), +(219259, 'Karter', 2014, 'M', 2103), +(219260, 'Brady', 2014, 'M', 2083), +(219261, 'Nicolas', 2014, 'M', 2060), +(219262, 'Cayden', 2014, 'M', 2037), +(219263, 'Caden', 2014, 'M', 2027), +(219264, 'Graham', 2014, 'M', 2026), +(219265, 'Jayceon', 2014, 'M', 2006), +(219266, 'Paul', 2014, 'M', 1987), +(219267, 'Gage', 2014, 'M', 1923), +(219268, 'Corbin', 2014, 'M', 1910), +(219269, 'Peter', 2014, 'M', 1899), +(219270, 'Derek', 2014, 'M', 1874), +(219271, 'Maverick', 2014, 'M', 1862), +(219272, 'Jorge', 2014, 'M', 1841), +(219273, 'Tanner', 2014, 'M', 1840), +(219274, 'Jax', 2014, 'M', 1836), +(219275, 'Peyton', 2014, 'M', 1828), +(219276, 'Xander', 2014, 'M', 1824), +(219277, 'Amir', 2014, 'M', 1809), +(219278, 'Gael', 2014, 'M', 1802), +(219279, 'Omar', 2014, 'M', 1795), +(219280, 'Iker', 2014, 'M', 1787), +(219281, 'Javier', 2014, 'M', 1761), +(219282, 'Elliot', 2014, 'M', 1750), +(219283, 'Jasper', 2014, 'M', 1731), +(219284, 'Rylan', 2014, 'M', 1726), +(219285, 'Cody', 2014, 'M', 1722), +(219286, 'Dean', 2014, 'M', 1700), +(219287, 'Andres', 2014, 'M', 1696), +(219288, 'Collin', 2014, 'M', 1688), +(219289, 'Zane', 2014, 'M', 1674), +(219290, 'Charlie', 2014, 'M', 1670), +(219291, 'Myles', 2014, 'M', 1655), +(219292, 'Lorenzo', 2014, 'M', 1628), +(219293, 'Beau', 2014, 'M', 1622), +(219294, 'Conner', 2014, 'M', 1620), +(219295, 'Lukas', 2014, 'M', 1619), +(219296, 'Simon', 2014, 'M', 1602), +(219297, 'Francisco', 2014, 'M', 1591), +(219298, 'Elliott', 2014, 'M', 1574), +(219299, 'Finn', 2014, 'M', 1567), +(219300, 'Gunner', 2014, 'M', 1564), +(219301, 'Garrett', 2014, 'M', 1552), +(219302, 'Jaiden', 2014, 'M', 1552), +(219303, 'Keegan', 2014, 'M', 1547), +(219304, 'Rowan', 2014, 'M', 1531), +(219305, 'Israel', 2014, 'M', 1523), +(219306, 'Griffin', 2014, 'M', 1522), +(219307, 'August', 2014, 'M', 1520), +(219308, 'Judah', 2014, 'M', 1514), +(219309, 'Beckett', 2014, 'M', 1511), +(219310, 'Brooks', 2014, 'M', 1507), +(219311, 'Zander', 2014, 'M', 1507), +(219312, 'Spencer', 2014, 'M', 1506), +(219313, 'Chance', 2014, 'M', 1501), +(219314, 'Damien', 2014, 'M', 1496), +(219315, 'Seth', 2014, 'M', 1490), +(219316, 'Waylon', 2014, 'M', 1486), +(219317, 'Travis', 2014, 'M', 1480), +(219318, 'Devin', 2014, 'M', 1476), +(219319, 'Emiliano', 2014, 'M', 1471), +(219320, 'Zion', 2014, 'M', 1471), +(219321, 'Ricardo', 2014, 'M', 1457), +(219322, 'Erick', 2014, 'M', 1437), +(219323, 'Stephen', 2014, 'M', 1433), +(219324, 'Reid', 2014, 'M', 1425), +(219325, 'Paxton', 2014, 'M', 1422), +(219326, 'Eduardo', 2014, 'M', 1421), +(219327, 'Martin', 2014, 'M', 1421), +(219328, 'Fernando', 2014, 'M', 1393), +(219329, 'Raymond', 2014, 'M', 1386), +(219330, 'Manuel', 2014, 'M', 1370), +(219331, 'Jeffrey', 2014, 'M', 1368), +(219332, 'Felix', 2014, 'M', 1363), +(219333, 'Dallas', 2014, 'M', 1359), +(219334, 'Josue', 2014, 'M', 1359), +(219335, 'Mario', 2014, 'M', 1355), +(219336, 'Clayton', 2014, 'M', 1349), +(219337, 'Caiden', 2014, 'M', 1346), +(219338, 'Cristian', 2014, 'M', 1337), +(219339, 'Troy', 2014, 'M', 1318), +(219340, 'Cash', 2014, 'M', 1316), +(219341, 'Trevor', 2014, 'M', 1312), +(219342, 'Shane', 2014, 'M', 1282), +(219343, 'Kameron', 2014, 'M', 1280), +(219344, 'Cesar', 2014, 'M', 1279), +(219345, 'Emilio', 2014, 'M', 1270), +(219346, 'Andy', 2014, 'M', 1263), +(219347, 'Tyson', 2014, 'M', 1262), +(219348, 'Andre', 2014, 'M', 1260), +(219349, 'Donovan', 2014, 'M', 1258), +(219350, 'Titus', 2014, 'M', 1246), +(219351, 'Knox', 2014, 'M', 1238), +(219352, 'River', 2014, 'M', 1223), +(219353, 'Kyler', 2014, 'M', 1218), +(219354, 'Louis', 2014, 'M', 1212), +(219355, 'Cruz', 2014, 'M', 1211), +(219356, 'Hector', 2014, 'M', 1209), +(219357, 'Holden', 2014, 'M', 1208), +(219358, 'Rafael', 2014, 'M', 1195), +(219359, 'Landen', 2014, 'M', 1192), +(219360, 'Lane', 2014, 'M', 1189), +(219361, 'Jared', 2014, 'M', 1180), +(219362, 'Edwin', 2014, 'M', 1179), +(219363, 'Messiah', 2014, 'M', 1178), +(219364, 'Johnny', 2014, 'M', 1176), +(219365, 'Edgar', 2014, 'M', 1175), +(219366, 'Johnathan', 2014, 'M', 1173), +(219367, 'Alexis', 2014, 'M', 1172), +(219368, 'Archer', 2014, 'M', 1171), +(219369, 'Anderson', 2014, 'M', 1155), +(219370, 'Trenton', 2014, 'M', 1143), +(219371, 'Arthur', 2014, 'M', 1138), +(219372, 'Sergio', 2014, 'M', 1138), +(219373, 'Marco', 2014, 'M', 1121), +(219374, 'Julius', 2014, 'M', 1119), +(219375, 'Dominick', 2014, 'M', 1118), +(219376, 'Milo', 2014, 'M', 1109), +(219377, 'Dalton', 2014, 'M', 1103), +(219378, 'Remington', 2014, 'M', 1101), +(219379, 'Dante', 2014, 'M', 1100), +(219380, 'Angelo', 2014, 'M', 1098), +(219381, 'Gregory', 2014, 'M', 1096), +(219382, 'Reed', 2014, 'M', 1087), +(219383, 'Jaylen', 2014, 'M', 1082), +(219384, 'Marshall', 2014, 'M', 1079), +(219385, 'Dawson', 2014, 'M', 1073), +(219386, 'Leon', 2014, 'M', 1070), +(219387, 'Drew', 2014, 'M', 1053), +(219388, 'Shawn', 2014, 'M', 1050), +(219389, 'Emerson', 2014, 'M', 1048), +(219390, 'Fabian', 2014, 'M', 1046), +(219391, 'Joaquin', 2014, 'M', 1038), +(219392, 'Walker', 2014, 'M', 1034), +(219393, 'Erik', 2014, 'M', 1030), +(219394, 'Desmond', 2014, 'M', 1029), +(219395, 'Karson', 2014, 'M', 1028), +(219396, 'Emanuel', 2014, 'M', 1015), +(219397, 'Jett', 2014, 'M', 1014), +(219398, 'Ali', 2014, 'M', 1005), +(219399, 'Kendrick', 2014, 'M', 1005), +(219400, 'Aden', 2014, 'M', 991), +(219401, 'Frank', 2014, 'M', 984), +(219402, 'Walter', 2014, 'M', 977), +(219403, 'Rhett', 2014, 'M', 975), +(219404, 'Colt', 2014, 'M', 973), +(219405, 'Amari', 2014, 'M', 970), +(219406, 'Romeo', 2014, 'M', 962), +(219407, 'Cohen', 2014, 'M', 961), +(219408, 'Roberto', 2014, 'M', 959), +(219409, 'Maximiliano', 2014, 'M', 956), +(219410, 'Grady', 2014, 'M', 953), +(219411, 'Barrett', 2014, 'M', 950), +(219412, 'Zaiden', 2014, 'M', 948), +(219413, 'Drake', 2014, 'M', 937), +(219414, 'Gideon', 2014, 'M', 928), +(219415, 'Major', 2014, 'M', 924), +(219416, 'Brendan', 2014, 'M', 911), +(219417, 'Skyler', 2014, 'M', 911), +(219418, 'Derrick', 2014, 'M', 904), +(219419, 'Pedro', 2014, 'M', 902), +(219420, 'Phoenix', 2014, 'M', 901), +(219421, 'Noel', 2014, 'M', 892), +(219422, 'Ruben', 2014, 'M', 889), +(219423, 'Braden', 2014, 'M', 886), +(219424, 'Nehemiah', 2014, 'M', 878), +(219425, 'Dakota', 2014, 'M', 876), +(219426, 'Cade', 2014, 'M', 875), +(219427, 'Kamden', 2014, 'M', 869), +(219428, 'Quinn', 2014, 'M', 868), +(219429, 'Nash', 2014, 'M', 867), +(219430, 'Kason', 2014, 'M', 864), +(219431, 'Ronan', 2014, 'M', 858), +(219432, 'Allen', 2014, 'M', 849), +(219433, 'Porter', 2014, 'M', 849), +(219434, 'Enzo', 2014, 'M', 847), +(219435, 'Atticus', 2014, 'M', 846), +(219436, 'Kash', 2014, 'M', 832), +(219437, 'Jay', 2014, 'M', 831), +(219438, 'Adan', 2014, 'M', 829), +(219439, 'Finley', 2014, 'M', 829), +(219440, 'Matteo', 2014, 'M', 829), +(219441, 'Malik', 2014, 'M', 828), +(219442, 'Abram', 2014, 'M', 823), +(219443, 'Braylon', 2014, 'M', 822), +(219444, 'Ace', 2014, 'M', 818), +(219445, 'Solomon', 2014, 'M', 813), +(219446, 'Gunnar', 2014, 'M', 808), +(219447, 'Clark', 2014, 'M', 806), +(219448, 'Orion', 2014, 'M', 806), +(219449, 'Ismael', 2014, 'M', 805), +(219450, 'Kellan', 2014, 'M', 803), +(219451, 'Brennan', 2014, 'M', 802), +(219452, 'Corey', 2014, 'M', 801), +(219453, 'Tate', 2014, 'M', 796), +(219454, 'Philip', 2014, 'M', 791), +(219455, 'Thiago', 2014, 'M', 791), +(219456, 'Phillip', 2014, 'M', 790), +(219457, 'Esteban', 2014, 'M', 788), +(219458, 'Jayson', 2014, 'M', 786), +(219459, 'Dexter', 2014, 'M', 783), +(219460, 'Jensen', 2014, 'M', 783), +(219461, 'Pablo', 2014, 'M', 780), +(219462, 'Ronald', 2014, 'M', 780), +(219463, 'Dillon', 2014, 'M', 778), +(219464, 'Muhammad', 2014, 'M', 773), +(219465, 'Armando', 2014, 'M', 770), +(219466, 'Bruce', 2014, 'M', 770), +(219467, 'Gerardo', 2014, 'M', 770), +(219468, 'Brycen', 2014, 'M', 764), +(219469, 'Marcos', 2014, 'M', 763), +(219470, 'Kade', 2014, 'M', 758), +(219471, 'Kolton', 2014, 'M', 756), +(219472, 'Damon', 2014, 'M', 755), +(219473, 'Braylen', 2014, 'M', 752), +(219474, 'Russell', 2014, 'M', 752), +(219475, 'Leland', 2014, 'M', 748), +(219476, 'Milan', 2014, 'M', 748), +(219477, 'Prince', 2014, 'M', 748), +(219478, 'Gannon', 2014, 'M', 747), +(219479, 'Enrique', 2014, 'M', 744), +(219480, 'Keith', 2014, 'M', 744), +(219481, 'Rory', 2014, 'M', 741), +(219482, 'Brock', 2014, 'M', 739), +(219483, 'Donald', 2014, 'M', 730), +(219484, 'Tobias', 2014, 'M', 728), +(219485, 'Chandler', 2014, 'M', 724), +(219486, 'Deacon', 2014, 'M', 724), +(219487, 'Cason', 2014, 'M', 723), +(219488, 'Raul', 2014, 'M', 720), +(219489, 'Ty', 2014, 'M', 716), +(219490, 'Scott', 2014, 'M', 714), +(219491, 'Landyn', 2014, 'M', 712), +(219492, 'Mohamed', 2014, 'M', 711), +(219493, 'Colby', 2014, 'M', 706), +(219494, 'Danny', 2014, 'M', 704), +(219495, 'Leonel', 2014, 'M', 704), +(219496, 'Kayson', 2014, 'M', 699), +(219497, 'Warren', 2014, 'M', 693), +(219498, 'Adriel', 2014, 'M', 691), +(219499, 'Dustin', 2014, 'M', 691), +(219500, 'Taylor', 2014, 'M', 691), +(219501, 'Albert', 2014, 'M', 690), +(219502, 'Ryland', 2014, 'M', 690), +(219503, 'Hugo', 2014, 'M', 689), +(219504, 'Keaton', 2014, 'M', 688), +(219505, 'Jamison', 2014, 'M', 685), +(219506, 'Ari', 2014, 'M', 677), +(219507, 'Malcolm', 2014, 'M', 675), +(219508, 'Ellis', 2014, 'M', 673), +(219509, 'Kellen', 2014, 'M', 666), +(219510, 'Maximilian', 2014, 'M', 662), +(219511, 'Davis', 2014, 'M', 660), +(219512, 'Saul', 2014, 'M', 659), +(219513, 'Tony', 2014, 'M', 658), +(219514, 'Rocco', 2014, 'M', 652), +(219515, 'Zachariah', 2014, 'M', 652), +(219516, 'Jerry', 2014, 'M', 650), +(219517, 'Julio', 2014, 'M', 650), +(219518, 'Franklin', 2014, 'M', 649), +(219519, 'Arjun', 2014, 'M', 648), +(219520, 'Ibrahim', 2014, 'M', 646), +(219521, 'Nico', 2014, 'M', 644), +(219522, 'Jaxton', 2014, 'M', 640), +(219523, 'Jakob', 2014, 'M', 637), +(219524, 'Izaiah', 2014, 'M', 633), +(219525, 'Moises', 2014, 'M', 632), +(219526, 'Cyrus', 2014, 'M', 629), +(219527, 'Lawrence', 2014, 'M', 628), +(219528, 'Sullivan', 2014, 'M', 628), +(219529, 'Finnegan', 2014, 'M', 625), +(219530, 'Khalil', 2014, 'M', 623), +(219531, 'Mathew', 2014, 'M', 621), +(219532, 'Case', 2014, 'M', 618), +(219533, 'Jaime', 2014, 'M', 618), +(219534, 'Alec', 2014, 'M', 616), +(219535, 'Pierce', 2014, 'M', 616), +(219536, 'Quentin', 2014, 'M', 610), +(219537, 'Kasen', 2014, 'M', 609), +(219538, 'Darius', 2014, 'M', 607), +(219539, 'Colten', 2014, 'M', 605), +(219540, 'Royce', 2014, 'M', 601), +(219541, 'Odin', 2014, 'M', 594), +(219542, 'Kane', 2014, 'M', 590), +(219543, 'Francis', 2014, 'M', 589), +(219544, 'Raiden', 2014, 'M', 589), +(219545, 'Trey', 2014, 'M', 584), +(219546, 'Daxton', 2014, 'M', 583), +(219547, 'Gustavo', 2014, 'M', 581), +(219548, 'Rhys', 2014, 'M', 578), +(219549, 'Alijah', 2014, 'M', 577), +(219550, 'Lawson', 2014, 'M', 574), +(219551, 'Beckham', 2014, 'M', 573), +(219552, 'Moses', 2014, 'M', 573), +(219553, 'Rodrigo', 2014, 'M', 571), +(219554, 'Armani', 2014, 'M', 570), +(219555, 'Uriel', 2014, 'M', 570), +(219556, 'Dennis', 2014, 'M', 569), +(219557, 'Marvin', 2014, 'M', 567), +(219558, 'Harvey', 2014, 'M', 566), +(219559, 'Kian', 2014, 'M', 565), +(219560, 'Raylan', 2014, 'M', 563), +(219561, 'Darren', 2014, 'M', 562), +(219562, 'Frederick', 2014, 'M', 562), +(219563, 'Mohammed', 2014, 'M', 561), +(219564, 'Trent', 2014, 'M', 561), +(219565, 'Jonas', 2014, 'M', 558), +(219566, 'Zayne', 2014, 'M', 558), +(219567, 'Callen', 2014, 'M', 557), +(219568, 'Matias', 2014, 'M', 556), +(219569, 'Mitchell', 2014, 'M', 555), +(219570, 'Kyrie', 2014, 'M', 554), +(219571, 'Uriah', 2014, 'M', 554), +(219572, 'Tristen', 2014, 'M', 548), +(219573, 'Sterling', 2014, 'M', 545), +(219574, 'Theo', 2014, 'M', 542), +(219575, 'Larry', 2014, 'M', 541), +(219576, 'Randy', 2014, 'M', 541), +(219577, 'Korbin', 2014, 'M', 540), +(219578, 'Alberto', 2014, 'M', 537), +(219579, 'Chris', 2014, 'M', 535), +(219580, 'Gianni', 2014, 'M', 535), +(219581, 'Killian', 2014, 'M', 535), +(219582, 'Princeton', 2014, 'M', 535), +(219583, 'Arturo', 2014, 'M', 534), +(219584, 'Ricky', 2014, 'M', 534), +(219585, 'Malakai', 2014, 'M', 532), +(219586, 'Aarav', 2014, 'M', 531), +(219587, 'Asa', 2014, 'M', 531), +(219588, 'Jimmy', 2014, 'M', 531), +(219589, 'Alfredo', 2014, 'M', 524), +(219590, 'Alonzo', 2014, 'M', 524), +(219591, 'Benson', 2014, 'M', 524), +(219592, 'Braydon', 2014, 'M', 522), +(219593, 'Devon', 2014, 'M', 522), +(219594, 'Curtis', 2014, 'M', 520), +(219595, 'Casey', 2014, 'M', 519), +(219596, 'Justice', 2014, 'M', 518), +(219597, 'Roy', 2014, 'M', 517), +(219598, 'Sam', 2014, 'M', 516), +(219599, 'Legend', 2014, 'M', 515), +(219600, 'Dorian', 2014, 'M', 513), +(219601, 'Nikolai', 2014, 'M', 513), +(219602, 'Kobe', 2014, 'M', 512), +(219603, 'Winston', 2014, 'M', 512), +(219604, 'Arlo', 2014, 'M', 511), +(219605, 'Reece', 2014, 'M', 511), +(219606, 'Lance', 2014, 'M', 505), +(219607, 'Wade', 2014, 'M', 505), +(219608, 'Cannon', 2014, 'M', 504), +(219609, 'Augustus', 2014, 'M', 499), +(219610, 'Hayes', 2014, 'M', 498), +(219611, 'Hendrix', 2014, 'M', 498), +(219612, 'Isaias', 2014, 'M', 498), +(219613, 'Neymar', 2014, 'M', 498), +(219614, 'Ahmed', 2014, 'M', 497), +(219615, 'Jaxen', 2014, 'M', 496), +(219616, 'Nasir', 2014, 'M', 496), +(219617, 'Brayan', 2014, 'M', 495), +(219618, 'Issac', 2014, 'M', 495), +(219619, 'Ronin', 2014, 'M', 494), +(219620, 'Talon', 2014, 'M', 494), +(219621, 'Boston', 2014, 'M', 493), +(219622, 'Moshe', 2014, 'M', 493), +(219623, 'Orlando', 2014, 'M', 491), +(219624, 'Vihaan', 2014, 'M', 491), +(219625, 'Gary', 2014, 'M', 490), +(219626, 'Bowen', 2014, 'M', 489), +(219627, 'Luka', 2014, 'M', 489), +(219628, 'Nikolas', 2014, 'M', 489), +(219629, 'Yahir', 2014, 'M', 489), +(219630, 'Joe', 2014, 'M', 488), +(219631, 'Leonidas', 2014, 'M', 488), +(219632, 'Quinton', 2014, 'M', 488), +(219633, 'Luciano', 2014, 'M', 486), +(219634, 'Ezequiel', 2014, 'M', 485), +(219635, 'Ayaan', 2014, 'M', 484), +(219636, 'Ahmad', 2014, 'M', 483), +(219637, 'Jalen', 2014, 'M', 482), +(219638, 'Royal', 2014, 'M', 482), +(219639, 'Jamari', 2014, 'M', 481), +(219640, 'Noe', 2014, 'M', 481), +(219641, 'Kieran', 2014, 'M', 480), +(219642, 'Mauricio', 2014, 'M', 480), +(219643, 'Conor', 2014, 'M', 479), +(219644, 'Johan', 2014, 'M', 477), +(219645, 'Matthias', 2014, 'M', 475), +(219646, 'Bryant', 2014, 'M', 472); +INSERT INTO `baby_names` (`id`, `name`, `year`, `gender`, `count`) VALUES +(219647, 'Mathias', 2014, 'M', 472), +(219648, 'Maurice', 2014, 'M', 472), +(219649, 'Roger', 2014, 'M', 472), +(219650, 'Lennox', 2014, 'M', 469), +(219651, 'Nathanael', 2014, 'M', 469), +(219652, 'Nixon', 2014, 'M', 469), +(219653, 'Mohammad', 2014, 'M', 468), +(219654, 'Yusuf', 2014, 'M', 468), +(219655, 'Eddie', 2014, 'M', 463), +(219656, 'Kristopher', 2014, 'M', 462), +(219657, 'Tatum', 2014, 'M', 462), +(219658, 'Jacoby', 2014, 'M', 461), +(219659, 'Wilson', 2014, 'M', 459), +(219660, 'Alvin', 2014, 'M', 457), +(219661, 'Raphael', 2014, 'M', 455), +(219662, 'Lewis', 2014, 'M', 453), +(219663, 'Douglas', 2014, 'M', 452), +(219664, 'Mekhi', 2014, 'M', 452), +(219665, 'Salvador', 2014, 'M', 448), +(219666, 'Eden', 2014, 'M', 447), +(219667, 'Hank', 2014, 'M', 446), +(219668, 'Cullen', 2014, 'M', 445), +(219669, 'Dax', 2014, 'M', 441), +(219670, 'Toby', 2014, 'M', 441), +(219671, 'Rayan', 2014, 'M', 439), +(219672, 'Emmitt', 2014, 'M', 438), +(219673, 'Lucian', 2014, 'M', 437), +(219674, 'Jefferson', 2014, 'M', 435), +(219675, 'Casen', 2014, 'M', 433), +(219676, 'London', 2014, 'M', 433), +(219677, 'Roland', 2014, 'M', 433), +(219678, 'Carl', 2014, 'M', 431), +(219679, 'Crosby', 2014, 'M', 431), +(219680, 'Bodhi', 2014, 'M', 430), +(219681, 'Dominik', 2014, 'M', 429), +(219682, 'Niko', 2014, 'M', 428), +(219683, 'Zackary', 2014, 'M', 427), +(219684, 'Deandre', 2014, 'M', 425), +(219685, 'Hamza', 2014, 'M', 425), +(219686, 'Remy', 2014, 'M', 424), +(219687, 'Quincy', 2014, 'M', 422), +(219688, 'Alessandro', 2014, 'M', 421), +(219689, 'Sincere', 2014, 'M', 420), +(219690, 'Dane', 2014, 'M', 419), +(219691, 'Terry', 2014, 'M', 418), +(219692, 'Otto', 2014, 'M', 416), +(219693, 'Samson', 2014, 'M', 416), +(219694, 'Madden', 2014, 'M', 415), +(219695, 'Jasiah', 2014, 'M', 414), +(219696, 'Layne', 2014, 'M', 414), +(219697, 'Santino', 2014, 'M', 414), +(219698, 'Rohan', 2014, 'M', 412), +(219699, 'Abdullah', 2014, 'M', 411), +(219700, 'Brentley', 2014, 'M', 409), +(219701, 'Marc', 2014, 'M', 409), +(219702, 'Skylar', 2014, 'M', 409), +(219703, 'Bo', 2014, 'M', 408), +(219704, 'Kyson', 2014, 'M', 408), +(219705, 'Soren', 2014, 'M', 408), +(219706, 'Harley', 2014, 'M', 407), +(219707, 'Nelson', 2014, 'M', 407), +(219708, 'Layton', 2014, 'M', 406), +(219709, 'Payton', 2014, 'M', 406), +(219710, 'Aldo', 2014, 'M', 405), +(219711, 'Atlas', 2014, 'M', 404), +(219712, 'Ramon', 2014, 'M', 404), +(219713, 'Reese', 2014, 'M', 403), +(219714, 'Conrad', 2014, 'M', 402), +(219715, 'Morgan', 2014, 'M', 402), +(219716, 'Ernesto', 2014, 'M', 400), +(219717, 'Byron', 2014, 'M', 399), +(219718, 'Carmelo', 2014, 'M', 399), +(219719, 'Sage', 2014, 'M', 399), +(219720, 'Neil', 2014, 'M', 397), +(219721, 'Kristian', 2014, 'M', 396), +(219722, 'Oakley', 2014, 'M', 394), +(219723, 'Tomas', 2014, 'M', 390), +(219724, 'Flynn', 2014, 'M', 388), +(219725, 'Lionel', 2014, 'M', 387), +(219726, 'Kylan', 2014, 'M', 386), +(219727, 'Leonard', 2014, 'M', 384), +(219728, 'Rex', 2014, 'M', 384), +(219729, 'Brett', 2014, 'M', 383), +(219730, 'Jeffery', 2014, 'M', 383), +(219731, 'Duke', 2014, 'M', 382), +(219732, 'Sylas', 2014, 'M', 381), +(219733, 'Callan', 2014, 'M', 379), +(219734, 'Tripp', 2014, 'M', 378), +(219735, 'Bruno', 2014, 'M', 377), +(219736, 'Zechariah', 2014, 'M', 377), +(219737, 'Melvin', 2014, 'M', 376), +(219738, 'Branson', 2014, 'M', 375), +(219739, 'Blaine', 2014, 'M', 374), +(219740, 'Jon', 2014, 'M', 374), +(219741, 'Julien', 2014, 'M', 374), +(219742, 'Arian', 2014, 'M', 372), +(219743, 'Guillermo', 2014, 'M', 372), +(219744, 'Zain', 2014, 'M', 372), +(219745, 'Rayden', 2014, 'M', 370), +(219746, 'Brodie', 2014, 'M', 369), +(219747, 'Crew', 2014, 'M', 367), +(219748, 'Memphis', 2014, 'M', 367), +(219749, 'Kelvin', 2014, 'M', 365), +(219750, 'Stanley', 2014, 'M', 365), +(219751, 'Joey', 2014, 'M', 364), +(219752, 'Emery', 2014, 'M', 361), +(219753, 'Terrance', 2014, 'M', 359), +(219754, 'Channing', 2014, 'M', 358), +(219755, 'Edison', 2014, 'M', 358), +(219756, 'Lennon', 2014, 'M', 358), +(219757, 'Demetrius', 2014, 'M', 357), +(219758, 'Amos', 2014, 'M', 356), +(219759, 'Cayson', 2014, 'M', 356), +(219760, 'Rodney', 2014, 'M', 355), +(219761, 'Cory', 2014, 'M', 353), +(219762, 'Elian', 2014, 'M', 352), +(219763, 'Xzavier', 2014, 'M', 350), +(219764, 'Bronson', 2014, 'M', 349), +(219765, 'Bentlee', 2014, 'M', 348), +(219766, 'Lee', 2014, 'M', 348), +(219767, 'Dayton', 2014, 'M', 345), +(219768, 'Chad', 2014, 'M', 344), +(219769, 'Cassius', 2014, 'M', 343), +(219770, 'Jagger', 2014, 'M', 342), +(219771, 'Fletcher', 2014, 'M', 340), +(219772, 'Omari', 2014, 'M', 340), +(219773, 'Alonso', 2014, 'M', 339), +(219774, 'Yosef', 2014, 'M', 339), +(219775, 'Westin', 2014, 'M', 338), +(219776, 'Brenden', 2014, 'M', 337), +(219777, 'Makai', 2014, 'M', 337), +(219778, 'Felipe', 2014, 'M', 335), +(219779, 'Harry', 2014, 'M', 335), +(219780, 'Alden', 2014, 'M', 334), +(219781, 'Maxim', 2014, 'M', 334), +(219782, 'Nickolas', 2014, 'M', 334), +(219783, 'Davion', 2014, 'M', 332), +(219784, 'Forrest', 2014, 'M', 332), +(219785, 'Allan', 2014, 'M', 331), +(219786, 'Enoch', 2014, 'M', 331), +(219787, 'Willie', 2014, 'M', 331), +(219788, 'Ben', 2014, 'M', 329), +(219789, 'Terrence', 2014, 'M', 329), +(219790, 'Tommy', 2014, 'M', 329), +(219791, 'Adonis', 2014, 'M', 327), +(219792, 'Cain', 2014, 'M', 327), +(219793, 'Harper', 2014, 'M', 327), +(219794, 'Callum', 2014, 'M', 325), +(219795, 'Jermaine', 2014, 'M', 325), +(219796, 'Kody', 2014, 'M', 324), +(219797, 'Thaddeus', 2014, 'M', 324), +(219798, 'Ray', 2014, 'M', 323), +(219799, 'Kamari', 2014, 'M', 322), +(219800, 'Aydin', 2014, 'M', 321), +(219801, 'Zeke', 2014, 'M', 321), +(219802, 'Markus', 2014, 'M', 320), +(219803, 'Ariel', 2014, 'M', 319), +(219804, 'Elisha', 2014, 'M', 319), +(219805, 'Lucca', 2014, 'M', 319), +(219806, 'Marcelo', 2014, 'M', 319), +(219807, 'Shaun', 2014, 'M', 319), +(219808, 'Aryan', 2014, 'M', 317), +(219809, 'Vicente', 2014, 'M', 317), +(219810, 'Aron', 2014, 'M', 315), +(219811, 'Keagan', 2014, 'M', 314), +(219812, 'Marlon', 2014, 'M', 314), +(219813, 'Langston', 2014, 'M', 313), +(219814, 'Ulises', 2014, 'M', 313), +(219815, 'Anders', 2014, 'M', 312), +(219816, 'Kareem', 2014, 'M', 312), +(219817, 'Bobby', 2014, 'M', 311), +(219818, 'Davian', 2014, 'M', 310), +(219819, 'Kendall', 2014, 'M', 310), +(219820, 'Ronnie', 2014, 'M', 310), +(219821, 'Jadiel', 2014, 'M', 309), +(219822, 'Samir', 2014, 'M', 309), +(219823, 'Alexzander', 2014, 'M', 308), +(219824, 'Hassan', 2014, 'M', 308), +(219825, 'Kingsley', 2014, 'M', 308), +(219826, 'Axton', 2014, 'M', 307), +(219827, 'Trace', 2014, 'M', 307), +(219828, 'Will', 2014, 'M', 307), +(219829, 'Jamal', 2014, 'M', 305), +(219830, 'Valentino', 2014, 'M', 305), +(219831, 'Yousef', 2014, 'M', 305), +(219832, 'Brecken', 2014, 'M', 304), +(219833, 'Fisher', 2014, 'M', 302), +(219834, 'Giovani', 2014, 'M', 302), +(219835, 'Kaysen', 2014, 'M', 302), +(219836, 'Maxton', 2014, 'M', 300), +(219837, 'Mayson', 2014, 'M', 300), +(219838, 'Van', 2014, 'M', 300), +(219839, 'Hezekiah', 2014, 'M', 297), +(219840, 'Blaze', 2014, 'M', 296), +(219841, 'Kolten', 2014, 'M', 296), +(219842, 'Misael', 2014, 'M', 296), +(219843, 'Javon', 2014, 'M', 295), +(219844, 'Kolby', 2014, 'M', 295), +(219845, 'Rogelio', 2014, 'M', 295), +(219846, 'Ares', 2014, 'M', 294), +(219847, 'Jedidiah', 2014, 'M', 294), +(219848, 'Bode', 2014, 'M', 293), +(219849, 'Leandro', 2014, 'M', 293), +(219850, 'Cedric', 2014, 'M', 292), +(219851, 'Jamie', 2014, 'M', 292), +(219852, 'Rowen', 2014, 'M', 292), +(219853, 'Urijah', 2014, 'M', 292), +(219854, 'Wayne', 2014, 'M', 291), +(219855, 'Eugene', 2014, 'M', 289), +(219856, 'Kole', 2014, 'M', 288), +(219857, 'Camron', 2014, 'M', 287), +(219858, 'Darian', 2014, 'M', 287), +(219859, 'Billy', 2014, 'M', 286), +(219860, 'Kase', 2014, 'M', 286), +(219861, 'Rene', 2014, 'M', 286), +(219862, 'Duncan', 2014, 'M', 285), +(219863, 'Adrien', 2014, 'M', 284), +(219864, 'Alfred', 2014, 'M', 284), +(219865, 'Maison', 2014, 'M', 284), +(219866, 'Apollo', 2014, 'M', 283), +(219867, 'Braeden', 2014, 'M', 283), +(219868, 'Mack', 2014, 'M', 283), +(219869, 'Clyde', 2014, 'M', 282), +(219870, 'Reginald', 2014, 'M', 282), +(219871, 'Anson', 2014, 'M', 281), +(219872, 'Jerome', 2014, 'M', 281), +(219873, 'Ishaan', 2014, 'M', 280), +(219874, 'Jessie', 2014, 'M', 280), +(219875, 'Javion', 2014, 'M', 279), +(219876, 'Micheal', 2014, 'M', 278), +(219877, 'Vincenzo', 2014, 'M', 278), +(219878, 'Camdyn', 2014, 'M', 277), +(219879, 'Gauge', 2014, 'M', 277), +(219880, 'Keenan', 2014, 'M', 277), +(219881, 'Gerald', 2014, 'M', 275), +(219882, 'Franco', 2014, 'M', 274), +(219883, 'Junior', 2014, 'M', 274), +(219884, 'Justus', 2014, 'M', 274), +(219885, 'Jamir', 2014, 'M', 273), +(219886, 'Marley', 2014, 'M', 273), +(219887, 'Terrell', 2014, 'M', 273), +(219888, 'Giancarlo', 2014, 'M', 272), +(219889, 'Braiden', 2014, 'M', 271), +(219890, 'Brantlee', 2014, 'M', 271), +(219891, 'Draven', 2014, 'M', 271), +(219892, 'Titan', 2014, 'M', 271), +(219893, 'Harold', 2014, 'M', 270), +(219894, 'Landry', 2014, 'M', 270), +(219895, 'Zayn', 2014, 'M', 270), +(219896, 'Briggs', 2014, 'M', 269), +(219897, 'Kyree', 2014, 'M', 269), +(219898, 'Chaim', 2014, 'M', 268), +(219899, 'Dilan', 2014, 'M', 268), +(219900, 'Joziah', 2014, 'M', 268), +(219901, 'Marquis', 2014, 'M', 268), +(219902, 'Jonathon', 2014, 'M', 265), +(219903, 'Azariah', 2014, 'M', 264), +(219904, 'Kenny', 2014, 'M', 264), +(219905, 'Amare', 2014, 'M', 263), +(219906, 'Brent', 2014, 'M', 263), +(219907, 'Clay', 2014, 'M', 263), +(219908, 'Stetson', 2014, 'M', 263), +(219909, 'Tyrone', 2014, 'M', 263), +(219910, 'Blaise', 2014, 'M', 262), +(219911, 'Dariel', 2014, 'M', 262), +(219912, 'Lamar', 2014, 'M', 262), +(219913, 'Reuben', 2014, 'M', 262), +(219914, 'Alfonso', 2014, 'M', 261), +(219915, 'Axl', 2014, 'M', 261), +(219916, 'Stefan', 2014, 'M', 260), +(219917, 'Finnley', 2014, 'M', 259), +(219918, 'Marcel', 2014, 'M', 259), +(219919, 'Jaydon', 2014, 'M', 258), +(219920, 'Kalel', 2014, 'M', 257), +(219921, 'Triston', 2014, 'M', 257), +(219922, 'Darrell', 2014, 'M', 256), +(219923, 'Steve', 2014, 'M', 256), +(219924, 'Abdiel', 2014, 'M', 255), +(219925, 'Lyric', 2014, 'M', 255), +(219926, 'Gibson', 2014, 'M', 254), +(219927, 'Thatcher', 2014, 'M', 254), +(219928, 'Henrik', 2014, 'M', 253), +(219929, 'Jadon', 2014, 'M', 253), +(219930, 'Jairo', 2014, 'M', 253), +(219931, 'Rudy', 2014, 'M', 253), +(219932, 'Castiel', 2014, 'M', 252), +(219933, 'Emory', 2014, 'M', 252), +(219934, 'Hugh', 2014, 'M', 251), +(219935, 'Konnor', 2014, 'M', 250), +(219936, 'Graysen', 2014, 'M', 249), +(219937, 'Cristiano', 2014, 'M', 247), +(219938, 'Deshawn', 2014, 'M', 247), +(219939, 'Eliezer', 2014, 'M', 247), +(219940, 'Kamdyn', 2014, 'M', 247), +(219941, 'Miller', 2014, 'M', 247), +(219942, 'Rylee', 2014, 'M', 247), +(219943, 'Tristian', 2014, 'M', 247), +(219944, 'Agustin', 2014, 'M', 246), +(219945, 'Ernest', 2014, 'M', 246), +(219946, 'Dwayne', 2014, 'M', 245), +(219947, 'Dimitri', 2014, 'M', 244), +(219948, 'Ford', 2014, 'M', 244), +(219949, 'Rey', 2014, 'M', 244), +(219950, 'Zavier', 2014, 'M', 244), +(219951, 'Arnav', 2014, 'M', 242), +(219952, 'Santana', 2014, 'M', 242), +(219953, 'Vance', 2014, 'M', 242), +(219954, 'Jamarion', 2014, 'M', 241), +(219955, 'Ramiro', 2014, 'M', 241), +(219956, 'Sonny', 2014, 'M', 241), +(219957, 'Brice', 2014, 'M', 240), +(219958, 'Leighton', 2014, 'M', 240), +(219959, 'Gilbert', 2014, 'M', 239), +(219960, 'Jordyn', 2014, 'M', 239), +(219961, 'Kaeden', 2014, 'M', 238), +(219962, 'Anton', 2014, 'M', 237), +(219963, 'Coen', 2014, 'M', 237), +(219964, 'Salvatore', 2014, 'M', 237), +(219965, 'Seamus', 2014, 'M', 237), +(219966, 'Zaire', 2014, 'M', 237), +(219967, 'Aaden', 2014, 'M', 236), +(219968, 'Chevy', 2014, 'M', 236), +(219969, 'Lachlan', 2014, 'M', 236), +(219970, 'Rolando', 2014, 'M', 236), +(219971, 'Aydan', 2014, 'M', 235), +(219972, 'Darwin', 2014, 'M', 235), +(219973, 'Randall', 2014, 'M', 235), +(219974, 'Santos', 2014, 'M', 235), +(219975, 'Yael', 2014, 'M', 235), +(219976, 'Grey', 2014, 'M', 234), +(219977, 'Kohen', 2014, 'M', 234), +(219978, 'Rashad', 2014, 'M', 234), +(219979, 'Jayse', 2014, 'M', 233), +(219980, 'Lochlan', 2014, 'M', 233), +(219981, 'Mustafa', 2014, 'M', 233), +(219982, 'Johnathon', 2014, 'M', 232), +(219983, 'Kannon', 2014, 'M', 232), +(219984, 'Konner', 2014, 'M', 232), +(219985, 'Jovani', 2014, 'M', 231), +(219986, 'Maximo', 2014, 'M', 231), +(219987, 'Alvaro', 2014, 'M', 230), +(219988, 'Clinton', 2014, 'M', 230), +(219989, 'Aidyn', 2014, 'M', 229), +(219990, 'Kymani', 2014, 'M', 229), +(219991, 'Davin', 2014, 'M', 228), +(219992, 'Jordy', 2014, 'M', 228), +(219993, 'Ephraim', 2014, 'M', 226), +(219994, 'Frankie', 2014, 'M', 226), +(219995, 'Heath', 2014, 'M', 226), +(219996, 'Houston', 2014, 'M', 226), +(219997, 'Kamron', 2014, 'M', 226), +(219998, 'Craig', 2014, 'M', 225), +(219999, 'Cristopher', 2014, 'M', 224), +(220000, 'Gordon', 2014, 'M', 224), +(220001, 'Harlan', 2014, 'M', 224), +(220002, 'Turner', 2014, 'M', 224), +(220003, 'Vaughn', 2014, 'M', 224), +(220004, 'Vivaan', 2014, 'M', 224), +(220005, 'Ameer', 2014, 'M', 223), +(220006, 'Gavyn', 2014, 'M', 223), +(220007, 'Gino', 2014, 'M', 223), +(220008, 'Jovanni', 2014, 'M', 223), +(220009, 'Benton', 2014, 'M', 222), +(220010, 'Rodolfo', 2014, 'M', 222), +(220011, 'Dominique', 2014, 'M', 221), +(220012, 'Jaycob', 2014, 'M', 221), +(220013, 'Jericho', 2014, 'M', 221), +(220014, 'Augustine', 2014, 'M', 220), +(220015, 'Coleman', 2014, 'M', 220), +(220016, 'Dash', 2014, 'M', 220), +(220017, 'Eliseo', 2014, 'M', 220), +(220018, 'Khalid', 2014, 'M', 220), +(220019, 'Quintin', 2014, 'M', 220), +(220020, 'Makhi', 2014, 'M', 219), +(220021, 'Zaid', 2014, 'M', 219), +(220022, 'Anakin', 2014, 'M', 218), +(220023, 'Baylor', 2014, 'M', 218), +(220024, 'Emmet', 2014, 'M', 218), +(220025, 'Judson', 2014, 'M', 218), +(220026, 'Truman', 2014, 'M', 218), +(220027, 'Camilo', 2014, 'M', 217), +(220028, 'Efrain', 2014, 'M', 217), +(220029, 'Semaj', 2014, 'M', 217), +(220030, 'Camren', 2014, 'M', 216), +(220031, 'Damari', 2014, 'M', 216), +(220032, 'Kamryn', 2014, 'M', 216), +(220033, 'Deangelo', 2014, 'M', 215), +(220034, 'Giovanny', 2014, 'M', 215), +(220035, 'Mike', 2014, 'M', 215), +(220036, 'Dario', 2014, 'M', 214), +(220037, 'Kale', 2014, 'M', 214), +(220038, 'Broderick', 2014, 'M', 213), +(220039, 'Jayvion', 2014, 'M', 213), +(220040, 'Kaison', 2014, 'M', 213), +(220041, 'Koen', 2014, 'M', 213), +(220042, 'Magnus', 2014, 'M', 213), +(220043, 'Darien', 2014, 'M', 212), +(220044, 'Teagan', 2014, 'M', 212), +(220045, 'Valentin', 2014, 'M', 212), +(220046, 'Bodie', 2014, 'M', 211), +(220047, 'Brayson', 2014, 'M', 211), +(220048, 'Chace', 2014, 'M', 211), +(220049, 'Kylen', 2014, 'M', 209), +(220050, 'Yehuda', 2014, 'M', 209), +(220051, 'Bridger', 2014, 'M', 208), +(220052, 'Howard', 2014, 'M', 208), +(220053, 'Maddux', 2014, 'M', 208), +(220054, 'Osvaldo', 2014, 'M', 208), +(220055, 'Rocky', 2014, 'M', 208), +(220056, 'Ayan', 2014, 'M', 207), +(220057, 'Boden', 2014, 'M', 207), +(220058, 'Foster', 2014, 'M', 207), +(220059, 'Jair', 2014, 'M', 207), +(220060, 'Reyansh', 2014, 'M', 207), +(220061, 'Tyree', 2014, 'M', 207), +(220062, 'Ean', 2014, 'M', 206), +(220063, 'Leif', 2014, 'M', 205), +(220064, 'Reagan', 2014, 'M', 205), +(220065, 'Rylen', 2014, 'M', 205), +(220066, 'Carsen', 2014, 'M', 204), +(220067, 'Garrison', 2014, 'M', 204), +(220068, 'Sutton', 2014, 'M', 204), +(220069, 'Demarcus', 2014, 'M', 203), +(220070, 'Pierre', 2014, 'M', 203), +(220071, 'Branden', 2014, 'M', 202), +(220072, 'Musa', 2014, 'M', 202), +(220073, 'Otis', 2014, 'M', 202), +(220074, 'Gerard', 2014, 'M', 201), +(220075, 'Tyrell', 2014, 'M', 201), +(220076, 'Freddy', 2014, 'M', 200), +(220077, 'Immanuel', 2014, 'M', 200), +(220078, 'Jamar', 2014, 'M', 200), +(220079, 'Briar', 2014, 'M', 199), +(220080, 'Brogan', 2014, 'M', 199), +(220081, 'Abner', 2014, 'M', 198), +(220082, 'Braylin', 2014, 'M', 198), +(220083, 'Brenton', 2014, 'M', 198), +(220084, 'Gilberto', 2014, 'M', 198), +(220085, 'Harlem', 2014, 'M', 197), +(220086, 'Jakobe', 2014, 'M', 197), +(220087, 'Jaylin', 2014, 'M', 197), +(220088, 'Korbyn', 2014, 'M', 197), +(220089, 'Menachem', 2014, 'M', 197), +(220090, 'Darnell', 2014, 'M', 196), +(220091, 'Jai', 2014, 'M', 196), +(220092, 'Clarence', 2014, 'M', 195), +(220093, 'Cormac', 2014, 'M', 195), +(220094, 'Deon', 2014, 'M', 195), +(220095, 'Brysen', 2014, 'M', 194), +(220096, 'Cortez', 2014, 'M', 194), +(220097, 'Dangelo', 2014, 'M', 194), +(220098, 'Karsen', 2014, 'M', 194), +(220099, 'Krish', 2014, 'M', 194), +(220100, 'Boone', 2014, 'M', 193), +(220101, 'Merrick', 2014, 'M', 193), +(220102, 'Ralph', 2014, 'M', 193), +(220103, 'Antoine', 2014, 'M', 192), +(220104, 'Jorden', 2014, 'M', 192), +(220105, 'Octavio', 2014, 'M', 192), +(220106, 'Eliot', 2014, 'M', 191), +(220107, 'Jarrett', 2014, 'M', 191), +(220108, 'Tristin', 2014, 'M', 191), +(220109, 'Derick', 2014, 'M', 190), +(220110, 'Bishop', 2014, 'M', 189), +(220111, 'Kaidyn', 2014, 'M', 189), +(220112, 'Aayden', 2014, 'M', 188), +(220113, 'Aditya', 2014, 'M', 188), +(220114, 'Kenton', 2014, 'M', 188), +(220115, 'Robin', 2014, 'M', 188), +(220116, 'Shiloh', 2014, 'M', 188), +(220117, 'Denver', 2014, 'M', 187), +(220118, 'Kamren', 2014, 'M', 187), +(220119, 'Tadeo', 2014, 'M', 187), +(220120, 'Avi', 2014, 'M', 186), +(220121, 'Elvis', 2014, 'M', 186), +(220122, 'Maxx', 2014, 'M', 186), +(220123, 'Isiah', 2014, 'M', 184), +(220124, 'Rayyan', 2014, 'M', 184), +(220125, 'Ross', 2014, 'M', 184), +(220126, 'Yisroel', 2014, 'M', 184), +(220127, 'Graeme', 2014, 'M', 183), +(220128, 'Jean', 2014, 'M', 183), +(220129, 'Leroy', 2014, 'M', 183), +(220130, 'Camryn', 2014, 'M', 182), +(220131, 'Denzel', 2014, 'M', 182), +(220132, 'Aarush', 2014, 'M', 181), +(220133, 'Brendon', 2014, 'M', 180), +(220134, 'Damarion', 2014, 'M', 180), +(220135, 'Izayah', 2014, 'M', 180), +(220136, 'Todd', 2014, 'M', 180), +(220137, 'Decker', 2014, 'M', 179), +(220138, 'Juelz', 2014, 'M', 179), +(220139, 'Karim', 2014, 'M', 179), +(220140, 'Yadiel', 2014, 'M', 179), +(220141, 'Canaan', 2014, 'M', 178), +(220142, 'Dale', 2014, 'M', 178), +(220143, 'Darryl', 2014, 'M', 178), +(220144, 'Masen', 2014, 'M', 178), +(220145, 'Roderick', 2014, 'M', 178), +(220146, 'Carlo', 2014, 'M', 177), +(220147, 'Kooper', 2014, 'M', 177), +(220148, 'Ledger', 2014, 'M', 177), +(220149, 'Harris', 2014, 'M', 176), +(220150, 'Slade', 2014, 'M', 176), +(220151, 'Stone', 2014, 'M', 176), +(220152, 'Alistair', 2014, 'M', 175), +(220153, 'Lathan', 2014, 'M', 175), +(220154, 'Mariano', 2014, 'M', 175), +(220155, 'Milton', 2014, 'M', 175), +(220156, 'Ignacio', 2014, 'M', 174), +(220157, 'Westley', 2014, 'M', 174), +(220158, 'Yair', 2014, 'M', 174), +(220159, 'Youssef', 2014, 'M', 174), +(220160, 'Cale', 2014, 'M', 173), +(220161, 'Nikhil', 2014, 'M', 173), +(220162, 'Yandel', 2014, 'M', 173), +(220163, 'Campbell', 2014, 'M', 172), +(220164, 'Edmund', 2014, 'M', 172), +(220165, 'Jaylon', 2014, 'M', 172), +(220166, 'Simeon', 2014, 'M', 172), +(220167, 'Cael', 2014, 'M', 171), +(220168, 'Cairo', 2014, 'M', 171), +(220169, 'Deklan', 2014, 'M', 171), +(220170, 'Jaxx', 2014, 'M', 171), +(220171, 'Kye', 2014, 'M', 171), +(220172, 'Louie', 2014, 'M', 171), +(220173, 'Trystan', 2014, 'M', 171), +(220174, 'Ulysses', 2014, 'M', 171), +(220175, 'Zahir', 2014, 'M', 171), +(220176, 'Eason', 2014, 'M', 170), +(220177, 'Humberto', 2014, 'M', 170), +(220178, 'Norman', 2014, 'M', 170), +(220179, 'Zyaire', 2014, 'M', 170), +(220180, 'Achilles', 2014, 'M', 169), +(220181, 'Aedan', 2014, 'M', 169), +(220182, 'Aleksander', 2014, 'M', 169), +(220183, 'Damion', 2014, 'M', 169), +(220184, 'Imran', 2014, 'M', 169), +(220185, 'Davon', 2014, 'M', 168), +(220186, 'Jeremias', 2014, 'M', 168), +(220187, 'Jovan', 2014, 'M', 168), +(220188, 'Kashton', 2014, 'M', 168), +(220189, 'Keller', 2014, 'M', 168), +(220190, 'Keon', 2014, 'M', 168), +(220191, 'Lyle', 2014, 'M', 168), +(220192, 'Mordechai', 2014, 'M', 168), +(220193, 'Xavi', 2014, 'M', 168), +(220194, 'Dhruv', 2014, 'M', 167), +(220195, 'Isai', 2014, 'M', 167), +(220196, 'Jaxxon', 2014, 'M', 167), +(220197, 'Malaki', 2014, 'M', 167), +(220198, 'Ridge', 2014, 'M', 167), +(220199, 'Bradyn', 2014, 'M', 166), +(220200, 'Corban', 2014, 'M', 166), +(220201, 'Vladimir', 2014, 'M', 166), +(220202, 'Yahya', 2014, 'M', 166), +(220203, 'Elmer', 2014, 'M', 165), +(220204, 'Jabari', 2014, 'M', 165), +(220205, 'Torin', 2014, 'M', 165), +(220206, 'Deegan', 2014, 'M', 164), +(220207, 'Johnpaul', 2014, 'M', 164), +(220208, 'Marcello', 2014, 'M', 164), +(220209, 'Sheldon', 2014, 'M', 164), +(220210, 'Sidney', 2014, 'M', 164), +(220211, 'Donte', 2014, 'M', 163), +(220212, 'Fox', 2014, 'M', 163), +(220213, 'Josh', 2014, 'M', 163), +(220214, 'Linus', 2014, 'M', 163), +(220215, 'Mac', 2014, 'M', 163), +(220216, 'Zayd', 2014, 'M', 163), +(220217, 'Colter', 2014, 'M', 162), +(220218, 'Dion', 2014, 'M', 162), +(220219, 'Jaceon', 2014, 'M', 162), +(220220, 'Alton', 2014, 'M', 161), +(220221, 'German', 2014, 'M', 161), +(220222, 'Koda', 2014, 'M', 161), +(220223, 'Aston', 2014, 'M', 160), +(220224, 'Ira', 2014, 'M', 160), +(220225, 'Karl', 2014, 'M', 160), +(220226, 'Mikel', 2014, 'M', 160), +(220227, 'Ronaldo', 2014, 'M', 160), +(220228, 'Shlomo', 2014, 'M', 160), +(220229, 'Aries', 2014, 'M', 159), +(220230, 'Coby', 2014, 'M', 159), +(220231, 'Gianluca', 2014, 'M', 158), +(220232, 'Glenn', 2014, 'M', 158), +(220233, 'Haiden', 2014, 'M', 158), +(220234, 'Jaeden', 2014, 'M', 158), +(220235, 'Kael', 2014, 'M', 158), +(220236, 'Kallen', 2014, 'M', 158), +(220237, 'Shimon', 2014, 'M', 158), +(220238, 'Bernard', 2014, 'M', 157), +(220239, 'Ewan', 2014, 'M', 157), +(220240, 'Gatlin', 2014, 'M', 157), +(220241, 'Shepherd', 2014, 'M', 157), +(220242, 'Stephan', 2014, 'M', 157), +(220243, 'Viktor', 2014, 'M', 157), +(220244, 'Wesson', 2014, 'M', 157), +(220245, 'Guy', 2014, 'M', 156), +(220246, 'Kennedy', 2014, 'M', 156), +(220247, 'Nick', 2014, 'M', 156), +(220248, 'Shmuel', 2014, 'M', 156), +(220249, 'Carmine', 2014, 'M', 155), +(220250, 'Greysen', 2014, 'M', 155), +(220251, 'Gus', 2014, 'M', 155), +(220252, 'Amar', 2014, 'M', 154), +(220253, 'Diesel', 2014, 'M', 154), +(220254, 'Haven', 2014, 'M', 154), +(220255, 'Ruger', 2014, 'M', 154), +(220256, 'Bently', 2014, 'M', 153), +(220257, 'Jarvis', 2014, 'M', 153), +(220258, 'Mccoy', 2014, 'M', 153), +(220259, 'Tayden', 2014, 'M', 153), +(220260, 'Armaan', 2014, 'M', 152), +(220261, 'Brighton', 2014, 'M', 152), +(220262, 'Brixton', 2014, 'M', 152), +(220263, 'Cian', 2014, 'M', 152), +(220264, 'Corbyn', 2014, 'M', 152), +(220265, 'Emir', 2014, 'M', 152), +(220266, 'Kain', 2014, 'M', 152), +(220267, 'Kelton', 2014, 'M', 152), +(220268, 'Tobin', 2014, 'M', 152), +(220269, 'Vince', 2014, 'M', 152), +(220270, 'Brennen', 2014, 'M', 151), +(220271, 'Cornelius', 2014, 'M', 151), +(220272, 'Alaric', 2014, 'M', 150), +(220273, 'Coy', 2014, 'M', 150), +(220274, 'Daylen', 2014, 'M', 150), +(220275, 'Devan', 2014, 'M', 150), +(220276, 'Jionni', 2014, 'M', 150), +(220277, 'Joan', 2014, 'M', 150), +(220278, 'Kyren', 2014, 'M', 150), +(220279, 'Mikael', 2014, 'M', 150), +(220280, 'Nigel', 2014, 'M', 150), +(220281, 'Rico', 2014, 'M', 150), +(220282, 'Bilal', 2014, 'M', 149), +(220283, 'Dereck', 2014, 'M', 149), +(220284, 'Jaziel', 2014, 'M', 149), +(220285, 'Lucien', 2014, 'M', 149), +(220286, 'Jacobi', 2014, 'M', 148), +(220287, 'Kent', 2014, 'M', 148), +(220288, 'Raheem', 2014, 'M', 148), +(220289, 'Zamir', 2014, 'M', 148), +(220290, 'Zev', 2014, 'M', 148), +(220291, 'Idris', 2014, 'M', 147), +(220292, 'Jacen', 2014, 'M', 147), +(220293, 'Josias', 2014, 'M', 147), +(220294, 'Pranav', 2014, 'M', 147), +(220295, 'Sami', 2014, 'M', 147), +(220296, 'Yaakov', 2014, 'M', 147), +(220297, 'Gonzalo', 2014, 'M', 146), +(220298, 'Jordi', 2014, 'M', 146), +(220299, 'Kiyan', 2014, 'M', 146), +(220300, 'Lyndon', 2014, 'M', 146), +(220301, 'Perry', 2014, 'M', 146), +(220302, 'Tevin', 2014, 'M', 146), +(220303, 'Baron', 2014, 'M', 145), +(220304, 'Gaige', 2014, 'M', 145), +(220305, 'Jaydan', 2014, 'M', 145), +(220306, 'Kruz', 2014, 'M', 145), +(220307, 'Adler', 2014, 'M', 144), +(220308, 'Avraham', 2014, 'M', 144), +(220309, 'Jesiah', 2014, 'M', 144), +(220310, 'Nikko', 2014, 'M', 144), +(220311, 'Cristobal', 2014, 'M', 143), +(220312, 'Jaidyn', 2014, 'M', 143), +(220313, 'Sammy', 2014, 'M', 143), +(220314, 'Siddharth', 2014, 'M', 143), +(220315, 'Amarion', 2014, 'M', 142), +(220316, 'Colson', 2014, 'M', 142), +(220317, 'Francesco', 2014, 'M', 142), +(220318, 'Irvin', 2014, 'M', 142), +(220319, 'Taj', 2014, 'M', 142), +(220320, 'Tiago', 2014, 'M', 142), +(220321, 'Yaseen', 2014, 'M', 142), +(220322, 'Yeshua', 2014, 'M', 142), +(220323, 'Jad', 2014, 'M', 141), +(220324, 'Keanu', 2014, 'M', 141), +(220325, 'Presley', 2014, 'M', 141), +(220326, 'Deven', 2014, 'M', 140), +(220327, 'Fredrick', 2014, 'M', 140), +(220328, 'Jaxsen', 2014, 'M', 140), +(220329, 'Kasey', 2014, 'M', 140), +(220330, 'Kyron', 2014, 'M', 140), +(220331, 'Aayan', 2014, 'M', 139), +(220332, 'Devyn', 2014, 'M', 139), +(220333, 'Dillan', 2014, 'M', 139), +(220334, 'Eddy', 2014, 'M', 139), +(220335, 'Geovanni', 2014, 'M', 139), +(220336, 'Meir', 2014, 'M', 139), +(220337, 'Reynaldo', 2014, 'M', 139), +(220338, 'Syed', 2014, 'M', 139), +(220339, 'Zaden', 2014, 'M', 139), +(220340, 'Benny', 2014, 'M', 138), +(220341, 'Creed', 2014, 'M', 138), +(220342, 'Estevan', 2014, 'M', 138), +(220343, 'Jet', 2014, 'M', 138), +(220344, 'Tyrese', 2014, 'M', 138), +(220345, 'Zackery', 2014, 'M', 138), +(220346, 'Benedict', 2014, 'M', 137), +(220347, 'Ever', 2014, 'M', 137), +(220348, 'Ishmael', 2014, 'M', 137), +(220349, 'Mikhail', 2014, 'M', 137), +(220350, 'Smith', 2014, 'M', 137), +(220351, 'Zack', 2014, 'M', 137), +(220352, 'Adolfo', 2014, 'M', 136), +(220353, 'Antwan', 2014, 'M', 136), +(220354, 'Daryl', 2014, 'M', 136), +(220355, 'Ismail', 2014, 'M', 136), +(220356, 'Kadyn', 2014, 'M', 136), +(220357, 'Kyan', 2014, 'M', 136), +(220358, 'Rigoberto', 2014, 'M', 136), +(220359, 'Rowdy', 2014, 'M', 136), +(220360, 'Zaylen', 2014, 'M', 136), +(220361, 'Ahmir', 2014, 'M', 135), +(220362, 'Cashton', 2014, 'M', 135), +(220363, 'Eamon', 2014, 'M', 135), +(220364, 'Laith', 2014, 'M', 135), +(220365, 'Lamont', 2014, 'M', 135), +(220366, 'Pierson', 2014, 'M', 135), +(220367, 'Wallace', 2014, 'M', 135), +(220368, 'Alexandro', 2014, 'M', 134), +(220369, 'Bryden', 2014, 'M', 134), +(220370, 'Jaron', 2014, 'M', 134), +(220371, 'Quinten', 2014, 'M', 134), +(220372, 'Aubrey', 2014, 'M', 133), +(220373, 'Bailey', 2014, 'M', 133), +(220374, 'Isaak', 2014, 'M', 133), +(220375, 'Kace', 2014, 'M', 133), +(220376, 'Micaiah', 2014, 'M', 133), +(220377, 'Courtney', 2014, 'M', 132), +(220378, 'Elvin', 2014, 'M', 132), +(220379, 'Ethen', 2014, 'M', 132), +(220380, 'Hans', 2014, 'M', 132), +(220381, 'Keyon', 2014, 'M', 132), +(220382, 'Marquise', 2014, 'M', 132), +(220383, 'Oskar', 2014, 'M', 132), +(220384, 'Sebastien', 2014, 'M', 132), +(220385, 'Austyn', 2014, 'M', 131), +(220386, 'Jaquan', 2014, 'M', 131), +(220387, 'Keelan', 2014, 'M', 131), +(220388, 'Leeland', 2014, 'M', 131), +(220389, 'Leyton', 2014, 'M', 131), +(220390, 'Maksim', 2014, 'M', 131), +(220391, 'Ajay', 2014, 'M', 130), +(220392, 'Deion', 2014, 'M', 130), +(220393, 'Destin', 2014, 'M', 130), +(220394, 'Izaac', 2014, 'M', 130), +(220395, 'Johann', 2014, 'M', 130), +(220396, 'Addison', 2014, 'M', 129), +(220397, 'Atreyu', 2014, 'M', 129), +(220398, 'Bear', 2014, 'M', 129), +(220399, 'Dwight', 2014, 'M', 129), +(220400, 'Forest', 2014, 'M', 129), +(220401, 'Noble', 2014, 'M', 129), +(220402, 'Rian', 2014, 'M', 129), +(220403, 'Andreas', 2014, 'M', 128), +(220404, 'Benicio', 2014, 'M', 128), +(220405, 'Cal', 2014, 'M', 128), +(220406, 'Eliel', 2014, 'M', 128), +(220407, 'Tahj', 2014, 'M', 128), +(220408, 'Wilder', 2014, 'M', 128), +(220409, 'Brandt', 2014, 'M', 127), +(220410, 'Bronx', 2014, 'M', 127), +(220411, 'Devonte', 2014, 'M', 127), +(220412, 'Elan', 2014, 'M', 127), +(220413, 'Donnie', 2014, 'M', 126), +(220414, 'Gray', 2014, 'M', 126), +(220415, 'Korben', 2014, 'M', 126), +(220416, 'Austen', 2014, 'M', 125), +(220417, 'Avion', 2014, 'M', 125), +(220418, 'Canon', 2014, 'M', 125), +(220419, 'Caysen', 2014, 'M', 125), +(220420, 'Giuseppe', 2014, 'M', 125), +(220421, 'Hansel', 2014, 'M', 125), +(220422, 'Hollis', 2014, 'M', 125), +(220423, 'Huxley', 2014, 'M', 125), +(220424, 'Marcellus', 2014, 'M', 125), +(220425, 'Mikah', 2014, 'M', 125), +(220426, 'Rome', 2014, 'M', 125), +(220427, 'Aksel', 2014, 'M', 124), +(220428, 'Alek', 2014, 'M', 124), +(220429, 'Eleazar', 2014, 'M', 124), +(220430, 'Faris', 2014, 'M', 124), +(220431, 'Finnian', 2014, 'M', 124), +(220432, 'Hagen', 2014, 'M', 124), +(220433, 'Jael', 2014, 'M', 124), +(220434, 'Jaycion', 2014, 'M', 124), +(220435, 'Kabir', 2014, 'M', 124), +(220436, 'Lazarus', 2014, 'M', 124), +(220437, 'Zachery', 2014, 'M', 124), +(220438, 'Zavion', 2014, 'M', 124), +(220439, 'Bastian', 2014, 'M', 123), +(220440, 'Caius', 2014, 'M', 123), +(220441, 'Dashawn', 2014, 'M', 123), +(220442, 'Dashiell', 2014, 'M', 123), +(220443, 'Maddex', 2014, 'M', 123), +(220444, 'Westyn', 2014, 'M', 123), +(220445, 'Zephaniah', 2014, 'M', 123), +(220446, 'Abdirahman', 2014, 'M', 122), +(220447, 'Barry', 2014, 'M', 122), +(220448, 'Gian', 2014, 'M', 122), +(220449, 'Jariel', 2014, 'M', 122), +(220450, 'Lucius', 2014, 'M', 122), +(220451, 'Abdulrahman', 2014, 'M', 121), +(220452, 'Beck', 2014, 'M', 121), +(220453, 'Carver', 2014, 'M', 121), +(220454, 'Murphy', 2014, 'M', 121), +(220455, 'Wes', 2014, 'M', 121), +(220456, 'Ammar', 2014, 'M', 120), +(220457, 'Aven', 2014, 'M', 120), +(220458, 'Brently', 2014, 'M', 120), +(220459, 'Hasan', 2014, 'M', 120), +(220460, 'Kyran', 2014, 'M', 120), +(220461, 'Clifford', 2014, 'M', 119), +(220462, 'Gionni', 2014, 'M', 119), +(220463, 'Jenson', 2014, 'M', 119), +(220464, 'Lian', 2014, 'M', 119), +(220465, 'Lloyd', 2014, 'M', 119), +(220466, 'Lonnie', 2014, 'M', 119), +(220467, 'Sky', 2014, 'M', 119), +(220468, 'Tylan', 2014, 'M', 119), +(220469, 'Vernon', 2014, 'M', 119), +(220470, 'Yitzchok', 2014, 'M', 119), +(220471, 'Antony', 2014, 'M', 118), +(220472, 'Braedyn', 2014, 'M', 118), +(220473, 'Demarion', 2014, 'M', 118), +(220474, 'Dezmond', 2014, 'M', 118), +(220475, 'Domenic', 2014, 'M', 118), +(220476, 'Emil', 2014, 'M', 118), +(220477, 'Emmit', 2014, 'M', 118), +(220478, 'Ender', 2014, 'M', 118), +(220479, 'Khai', 2014, 'M', 118), +(220480, 'Neal', 2014, 'M', 118), +(220481, 'Nikola', 2014, 'M', 118), +(220482, 'Wiley', 2014, 'M', 118), +(220483, 'Yoel', 2014, 'M', 118), +(220484, 'Alexavier', 2014, 'M', 117), +(220485, 'Braxtyn', 2014, 'M', 117), +(220486, 'Clifton', 2014, 'M', 117), +(220487, 'Cordell', 2014, 'M', 117), +(220488, 'Kalvin', 2014, 'M', 117), +(220489, 'Kayleb', 2014, 'M', 117), +(220490, 'Monroe', 2014, 'M', 117), +(220491, 'Savion', 2014, 'M', 117), +(220492, 'Tzvi', 2014, 'M', 117), +(220493, 'Eder', 2014, 'M', 116), +(220494, 'Johnnie', 2014, 'M', 116), +(220495, 'Damani', 2014, 'M', 115), +(220496, 'Hussein', 2014, 'M', 115), +(220497, 'Kenyon', 2014, 'M', 115), +(220498, 'Kolt', 2014, 'M', 115), +(220499, 'Kyrin', 2014, 'M', 115), +(220500, 'Aamir', 2014, 'M', 114), +(220501, 'Boaz', 2014, 'M', 114), +(220502, 'Rishi', 2014, 'M', 114), +(220503, 'Thor', 2014, 'M', 114), +(220504, 'Tyce', 2014, 'M', 114), +(220505, 'Chaz', 2014, 'M', 113), +(220506, 'Danilo', 2014, 'M', 113), +(220507, 'Dev', 2014, 'M', 113), +(220508, 'Irving', 2014, 'M', 113), +(220509, 'Jakari', 2014, 'M', 113), +(220510, 'Jaysen', 2014, 'M', 113), +(220511, 'Josef', 2014, 'M', 113), +(220512, 'Massimo', 2014, 'M', 113), +(220513, 'Gentry', 2014, 'M', 112), +(220514, 'Jahmir', 2014, 'M', 112), +(220515, 'Jones', 2014, 'M', 112), +(220516, 'Kurt', 2014, 'M', 112), +(220517, 'Mauro', 2014, 'M', 112), +(220518, 'Thorin', 2014, 'M', 112), +(220519, 'Zyon', 2014, 'M', 112), +(220520, 'Ansh', 2014, 'M', 111), +(220521, 'Jordon', 2014, 'M', 111), +(220522, 'Loki', 2014, 'M', 111), +(220523, 'Myron', 2014, 'M', 111), +(220524, 'Raleigh', 2014, 'M', 111), +(220525, 'Terence', 2014, 'M', 111), +(220526, 'Zayvion', 2014, 'M', 111), +(220527, 'Anas', 2014, 'M', 110), +(220528, 'Arman', 2014, 'M', 110), +(220529, 'Constantine', 2014, 'M', 110), +(220530, 'Damir', 2014, 'M', 110), +(220531, 'Don', 2014, 'M', 110), +(220532, 'Eliyahu', 2014, 'M', 110), +(220533, 'Kellin', 2014, 'M', 110), +(220534, 'Koa', 2014, 'M', 110), +(220535, 'Miguelangel', 2014, 'M', 110), +(220536, 'Morris', 2014, 'M', 110), +(220537, 'Palmer', 2014, 'M', 110), +(220538, 'Veer', 2014, 'M', 110), +(220539, 'Archie', 2014, 'M', 109), +(220540, 'Fred', 2014, 'M', 109), +(220541, 'Jaiceon', 2014, 'M', 109), +(220542, 'Jeramiah', 2014, 'M', 109), +(220543, 'Kenan', 2014, 'M', 109), +(220544, 'Trevon', 2014, 'M', 109), +(220545, 'Ansel', 2014, 'M', 108), +(220546, 'Axle', 2014, 'M', 108), +(220547, 'Bernardo', 2014, 'M', 108), +(220548, 'Brigham', 2014, 'M', 108), +(220549, 'Dewayne', 2014, 'M', 108), +(220550, 'Ervin', 2014, 'M', 108), +(220551, 'Jaleel', 2014, 'M', 108), +(220552, 'Jamil', 2014, 'M', 108), +(220553, 'Jayveon', 2014, 'M', 108), +(220554, 'Jencarlos', 2014, 'M', 108), +(220555, 'Kaine', 2014, 'M', 108), +(220556, 'Karsyn', 2014, 'M', 108), +(220557, 'Landin', 2014, 'M', 108), +(220558, 'Lev', 2014, 'M', 108), +(220559, 'Marek', 2014, 'M', 108), +(220560, 'Nestor', 2014, 'M', 108), +(220561, 'Niam', 2014, 'M', 108), +(220562, 'Ryley', 2014, 'M', 108), +(220563, 'Viaan', 2014, 'M', 108), +(220564, 'Ishan', 2014, 'M', 107), +(220565, 'Jakai', 2014, 'M', 107), +(220566, 'Jamarcus', 2014, 'M', 107), +(220567, 'Jiovanni', 2014, 'M', 107), +(220568, 'Salem', 2014, 'M', 107), +(220569, 'Salman', 2014, 'M', 107), +(220570, 'Anish', 2014, 'M', 106), +(220571, 'Canyon', 2014, 'M', 106), +(220572, 'Dakari', 2014, 'M', 106), +(220573, 'Markell', 2014, 'M', 106), +(220574, 'Muhammed', 2014, 'M', 106), +(220575, 'Nazir', 2014, 'M', 106), +(220576, 'Rickey', 2014, 'M', 106), +(220577, 'Shea', 2014, 'M', 106), +(220578, 'Taha', 2014, 'M', 106), +(220579, 'Zaidyn', 2014, 'M', 106), +(220580, 'Angus', 2014, 'M', 105), +(220581, 'Kylar', 2014, 'M', 105), +(220582, 'Yariel', 2014, 'M', 105), +(220583, 'Yasin', 2014, 'M', 105), +(220584, 'Aaryan', 2014, 'M', 104), +(220585, 'Azael', 2014, 'M', 104), +(220586, 'Carmello', 2014, 'M', 104), +(220587, 'Damoni', 2014, 'M', 104), +(220588, 'Glen', 2014, 'M', 104), +(220589, 'Izaak', 2014, 'M', 104), +(220590, 'Kamarion', 2014, 'M', 104), +(220591, 'Kelly', 2014, 'M', 104), +(220592, 'Kyden', 2014, 'M', 104), +(220593, 'Lester', 2014, 'M', 104), +(220594, 'Maddix', 2014, 'M', 104), +(220595, 'Nate', 2014, 'M', 104), +(220596, 'Phineas', 2014, 'M', 104), +(220597, 'Raylen', 2014, 'M', 104), +(220598, 'Said', 2014, 'M', 104), +(220599, 'Talan', 2014, 'M', 104), +(220600, 'Trayvon', 2014, 'M', 104), +(220601, 'Zakariya', 2014, 'M', 104), +(220602, 'Abdul', 2014, 'M', 103), +(220603, 'Abdullahi', 2014, 'M', 103), +(220604, 'Britton', 2014, 'M', 103), +(220605, 'Earl', 2014, 'M', 103), +(220606, 'Jamel', 2014, 'M', 103), +(220607, 'Kirk', 2014, 'M', 103), +(220608, 'Levon', 2014, 'M', 103), +(220609, 'Stryker', 2014, 'M', 103), +(220610, 'Syncere', 2014, 'M', 103), +(220611, 'Ander', 2014, 'M', 102), +(220612, 'Denis', 2014, 'M', 102), +(220613, 'Ely', 2014, 'M', 102), +(220614, 'Jaceyon', 2014, 'M', 102), +(220615, 'Jasen', 2014, 'M', 102), +(220616, 'Malakhi', 2014, 'M', 102), +(220617, 'Montgomery', 2014, 'M', 102), +(220618, 'Nova', 2014, 'M', 102), +(220619, 'Reilly', 2014, 'M', 102), +(220620, 'Zakaria', 2014, 'M', 102), +(220621, 'Athan', 2014, 'M', 101), +(220622, 'Gareth', 2014, 'M', 101), +(220623, 'Jerimiah', 2014, 'M', 101), +(220624, 'Jessiah', 2014, 'M', 101), +(220625, 'Jethro', 2014, 'M', 101), +(220626, 'Maxon', 2014, 'M', 101), +(220627, 'Rio', 2014, 'M', 101), +(220628, 'Cartier', 2014, 'M', 100), +(220629, 'Dan', 2014, 'M', 100), +(220630, 'Duane', 2014, 'M', 100), +(220631, 'Fischer', 2014, 'M', 100), +(220632, 'Hadi', 2014, 'M', 100), +(220633, 'Hiram', 2014, 'M', 100), +(220634, 'Khaled', 2014, 'M', 100), +(220635, 'Rishaan', 2014, 'M', 100), +(220636, 'Stephon', 2014, 'M', 100); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `blog_posts` +-- + +CREATE TABLE `blog_posts` ( + `id` bigint(20) UNSIGNED NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `title` varchar(1023) COLLATE utf8mb4_unicode_ci NOT NULL, + `contents` longtext COLLATE utf8mb4_unicode_ci NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `blog_posts` +-- + +INSERT INTO `blog_posts` (`id`, `created_at`, `updated_at`, `title`, `contents`) VALUES +(1, '2019-12-01 10:00:00', '2019-12-01 10:00:00', 'voluptas unde dolorum', 'Cupiditate incidunt placeat excepturi repudiandae aspernatur ut perspiciatis. Et in ab sint. Praesentium dolorem alias voluptatem est voluptatem perspiciatis. Repudiandae eos placeat qui illo.\nNemo et accusamus et incidunt occaecati. Reprehenderit earum beatae praesentium esse voluptates delectus quia. Tempore nisi voluptatum ad soluta aspernatur iste ipsum molestiae.\nEt fugiat sunt sed illum magni odio. Repudiandae vel quae ad sit tempore enim. Ut consectetur temporibus placeat et id quae repellat.'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `blog_posts_history` +-- + +CREATE TABLE `blog_posts_history` ( + `id` bigint(20) UNSIGNED NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `blog_post_id` bigint(20) UNSIGNED DEFAULT NULL, + `title` varchar(1023) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contents` longtext COLLATE utf8mb4_unicode_ci +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `books` +-- + +CREATE TABLE `books` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(1023) COLLATE utf8mb4_unicode_ci NOT NULL, + `creator` varchar(127) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `issued` date NOT NULL, + `downloads` bigint(20) UNSIGNED NOT NULL, + `url` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `language` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL, + `subject_id` bigint(20) UNSIGNED DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `books` +-- + +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(1, 'The Great Round World and What Is Going On In It, Vol. 1, No. 44, September 9, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-02', 19, 'https://www.gutenberg.org/ebooks/15970', 'en', 1), +(2, 'Eredeti népmesék (2. rész)', 'Merényi, László', '2012-04-06', 9, 'https://www.gutenberg.org/ebooks/39386', 'hu', 2), +(3, 'Bart Keene\'s Hunting Days; or, The Darewell Chums in a Winter Camp', 'Chapman, Allen', '2011-12-09', 4, 'https://www.gutenberg.org/ebooks/38254', 'en', 3), +(4, 'Four Short Stories By Emile Zola', 'Zola, Émile', '2006-05-03', 132, 'https://www.gutenberg.org/ebooks/1069', 'en', 4), +(5, '88 Favourite Carols and Hymns for Christmas', NULL, '2019-04-12', 50, 'https://www.gutenberg.org/ebooks/59263', 'en', 5), +(6, 'Marcus: the Young Centurion', 'Fenn, George Manville', '2007-05-08', 21, 'https://www.gutenberg.org/ebooks/21379', 'en', 6), +(7, 'Mary', 'Bjørnson, Bjørnstjerne', '2016-12-18', 63, 'https://www.gutenberg.org/ebooks/53759', 'fi', 7), +(8, 'Ban and Arriere Ban: A Rally of Fugitive Rhymes', 'Lang, Andrew', '1999-08-01', 28, 'https://www.gutenberg.org/ebooks/1855', 'en', 8), +(9, 'Espada da Justiça Sobre os Reos do Horroroso Delicto Praticado no Navio Pelos que Morreraõ Enforcados aos 14 de Agosto de 1781', 'Costa, José Daniel Rodrigues da', '2009-12-30', 21, 'https://www.gutenberg.org/ebooks/30805', 'pt', 8), +(10, 'Mark Mason\'s Victory: The Trials and Triumphs of a Telegraph Boy', 'Alger, Horatio, Jr.', '2010-11-29', 14, 'https://www.gutenberg.org/ebooks/34499', 'en', 9), +(11, 'Famous Privateersmen and Adventurers of the Sea\r\nTheir rovings, cruises, escapades, and fierce battling upon the ocean for patriotism and for treasure', 'Johnston, Charles H. L. (Charles Haven Ladd)', '2008-10-19', 28, 'https://www.gutenberg.org/ebooks/26960', 'en', 10), +(12, 'La cour et la ville de Madrid vers la fin du XVIIe siècle\nRelation du voyage d\'Espagne par la comtesse d\'Aulnoy', 'Aulnoy, Madame d\' (Marie-Catherine)', '2009-06-13', 16, 'https://www.gutenberg.org/ebooks/29114', 'fr', 11), +(13, 'Adventurers of the Far North: A Chronicle of the Frozen Seas', 'Leacock, Stephen', '2009-09-20', 34, 'https://www.gutenberg.org/ebooks/30039', 'en', 12), +(14, 'The Prophetic Pictures (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9204', 'en', 13), +(15, 'Echoes of Old Lancashire', 'Axon, William E. A. (William Edward Armytage)', '2015-01-31', 12, 'https://www.gutenberg.org/ebooks/48123', 'en', 14), +(16, 'The Mind of the Artist\nThoughts and Sayings of Painters and Sculptors on Their Art', NULL, '2006-06-22', 27, 'https://www.gutenberg.org/ebooks/18653', 'en', 15), +(17, 'L\'Abbesse De Castro', 'Stendhal', '1997-01-01', 78, 'https://www.gutenberg.org/ebooks/797', 'fr', 16), +(18, 'Korean Buddhism: History—Condition—Art', 'Starr, Frederick', '2015-01-13', 17, 'https://www.gutenberg.org/ebooks/47957', 'en', 17), +(19, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 684\r\nFebruary 3, 1877', 'Various', '2014-09-17', 8, 'https://www.gutenberg.org/ebooks/46885', 'en', 18), +(20, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 1', NULL, '2004-05-01', 49, 'https://www.gutenberg.org/ebooks/12369', 'en', 19), +(21, 'Sketches', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-11-13', 26, 'https://www.gutenberg.org/ebooks/19781', 'en', 20), +(22, 'Why Bewick Succeeded: A Note in the History of Wood Engraving', 'Kainen, Jacob', '2009-09-07', 18, 'https://www.gutenberg.org/ebooks/29928', 'en', 21), +(23, 'The True History of the State Prisoner, commonly called the Iron Mask\r\nExtracted from Documents in the French Archives', 'Dover, George Agar Ellis, Baron', '2013-03-27', 18, 'https://www.gutenberg.org/ebooks/42419', 'en', 22), +(24, 'The Place Where Chicago Was', 'Harmon, Jim', '2016-04-22', 49, 'https://www.gutenberg.org/ebooks/51832', 'en', 23), +(25, 'The Ashtabula Disaster', 'Peet, Stephen D. (Stephen Denison)', '2014-11-16', 15, 'https://www.gutenberg.org/ebooks/47359', 'en', 24), +(26, 'The Story of Dago', 'Johnston, Annie F. (Annie Fellows)', '2005-12-31', 7, 'https://www.gutenberg.org/ebooks/17429', 'en', 25), +(27, 'The Great Drought', 'Meek, S. P. (Sterner St. Paul)', '2009-07-05', 47, 'https://www.gutenberg.org/ebooks/29326', 'en', 26), +(28, 'Memoirs and Historical Chronicles of the Courts of Europe\r\nMemoirs of Marguerite de Valois, Queen of France, Wife of Henri IV; of Madame de Pompadour of the Court of Louis XV; and of Catherine de Medici, Queen of France, Wife of Henri II', 'Marguerite, Queen, consort of Henry IV, King of France', '2004-07-20', 28, 'https://www.gutenberg.org/ebooks/12967', 'en', 27), +(29, 'The Cornflower, and Other Poems', 'Blewett, Jean', '2011-04-06', 10, 'https://www.gutenberg.org/ebooks/35779', 'en', 28), +(30, 'Sadhana : the realisation of life', 'Tagore, Rabindranath', '2004-11-01', 193, 'https://www.gutenberg.org/ebooks/6842', 'en', 29), +(31, 'The Making of Arguments', 'Gardiner, J. H. (John Hays)', '2004-08-03', 24, 'https://www.gutenberg.org/ebooks/13089', 'en', 30), +(32, 'Six Little Bunkers at Mammy June\'s', 'Hope, Laura Lee', '2006-05-27', 10, 'https://www.gutenberg.org/ebooks/18461', 'en', 31), +(33, 'Tom Sawyer Abroad', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9036', 'en', 32), +(34, 'James Russell Lowell and His Friends', 'Hale, Edward Everett', '2015-02-19', 20, 'https://www.gutenberg.org/ebooks/48311', 'en', 33), +(35, 'Conspiracy of Catiline and the Jurgurthine War', 'Sallust', '2005-04-01', 103, 'https://www.gutenberg.org/ebooks/7990', 'en', 34), +(36, 'A Class-Book of Biblical History and Geography\nwith numerous maps', 'Osborn, H. S. (Henry Stafford)', '2017-11-21', 12, 'https://www.gutenberg.org/ebooks/56019', 'en', 35), +(37, 'The Narrative of a Blockade-Runner', 'Wilkinson, J. (John)', '2007-06-30', 13, 'https://www.gutenberg.org/ebooks/21977', 'en', 36), +(38, 'The Adventures of a Grain of Dust', 'Hawksworth, Hallam', '2011-11-20', 22, 'https://www.gutenberg.org/ebooks/38066', 'en', 37), +(39, 'Pirates', 'Johnson, Charles, active 1724-1731', '2008-01-27', 37, 'https://www.gutenberg.org/ebooks/24439', 'en', 38), +(40, 'Gentlemen Rovers', 'Powell, E. Alexander (Edward Alexander)', '2011-10-20', 95, 'https://www.gutenberg.org/ebooks/37812', 'en', 39), +(41, 'Observations By Mr. Dooley', 'Dunne, Finley Peter', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/4729', 'en', 40), +(42, 'Aili: Kertomus', 'Talvio, Maila', '2018-03-24', 10, 'https://www.gutenberg.org/ebooks/56825', 'fi', 41), +(43, 'Storia comparata degli usi nuziali in Italia e presso gli altri popoli indo-europei\nSeconda edizione riveduta e ampliata dall\'autore', 'De Gubernatis, Angelo', '2012-06-13', 18, 'https://www.gutenberg.org/ebooks/39988', 'it', 42), +(44, 'Maisa Jons', 'Lie, Jonas', '2019-03-12', 2, 'https://www.gutenberg.org/ebooks/59051', 'fi', 7), +(45, 'Dynamic Thought; Or, The Law of Vibrant Energy', 'Atkinson, William Walker', '2013-01-21', 72, 'https://www.gutenberg.org/ebooks/41892', 'en', 43), +(46, 'Historia de la célebre Reina de España Doña Juana, llamada vulgarmente, La Loca', 'Anonymous', '2006-12-14', 48, 'https://www.gutenberg.org/ebooks/20099', 'es', 44), +(47, 'Johnny Ludlow, Fourth Series', 'Wood, Henry, Mrs.', '2012-10-05', 33, 'https://www.gutenberg.org/ebooks/40940', 'en', 45), +(48, 'Haworth\'s', 'Burnett, Frances Hodgson', '2018-10-28', 17, 'https://www.gutenberg.org/ebooks/58183', 'en', 46), +(49, 'The Long Voyage', 'Jacobi, Carl Richard', '2009-08-20', 33, 'https://www.gutenberg.org/ebooks/29742', 'en', 26), +(50, 'How to Become an Actor', 'Warford, Aaron A.', '2016-04-04', 11, 'https://www.gutenberg.org/ebooks/51658', 'en', 47), +(51, 'L\'Abbe Constantin — Volume 1', 'Halévy, Ludovic', '2003-04-01', 13, 'https://www.gutenberg.org/ebooks/3954', 'en', 48), +(52, 'Avril: Being Essays on the Poetry of the French Renaissance', 'Belloc, Hilaire', '2006-07-16', 30, 'https://www.gutenberg.org/ebooks/18839', 'en', 49), +(53, 'Tales of the Argonauts', 'Harte, Bret', '2006-05-30', 39, 'https://www.gutenberg.org/ebooks/2886', 'en', 50), +(54, 'Janice Day at Poketown', 'Long, Helen Beecher', '2007-11-01', 16, 'https://www.gutenberg.org/ebooks/23278', 'en', 51), +(55, 'The Empire of the East', 'Montgomery, H. B. (Helen Barrett)', '2009-05-04', 12, 'https://www.gutenberg.org/ebooks/28690', 'en', 52), +(56, 'Reminiscences of Samuel Taylor Coleridge and Robert Southey', 'Cottle, Joseph', '2005-07-01', 28, 'https://www.gutenberg.org/ebooks/8580', 'en', 53), +(57, 'Poems of the Past and the Present', 'Hardy, Thomas', '2002-04-01', 78, 'https://www.gutenberg.org/ebooks/3168', 'en', 54), +(58, 'Los pazos de Ulloa', 'Pardo Bazán, Emilia, condesa de', '2006-03-16', 77, 'https://www.gutenberg.org/ebooks/18005', 'es', 55), +(59, 'A Slave Girl\'s Story\nBeing an Autobiography of Kate Drumgoold.', 'Drumgoold, Kate', '2006-02-27', 33, 'https://www.gutenberg.org/ebooks/17871', 'en', 56), +(60, 'Wessex Poems and Other Verses', 'Hardy, Thomas', '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9452', 'en', 54), +(61, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 08 (1820)', 'Various', '2015-04-24', 5, 'https://www.gutenberg.org/ebooks/48775', 'en', 57), +(62, 'The Bath Keepers; Or, Paris in Those Days, v.2\r\n(Novels of Paul de Kock Volume VIII)', 'Kock, Paul de', '2012-08-17', 15, 'https://www.gutenberg.org/ebooks/40518', 'en', 58), +(63, 'Jacht naar Fortuin', 'Zola, Émile', '2017-01-09', 20, 'https://www.gutenberg.org/ebooks/53933', 'nl', 59), +(64, 'Geschichten vom lieben Gott', 'Rilke, Rainer Maria', '2011-12-24', 55, 'https://www.gutenberg.org/ebooks/38402', 'de', 60), +(65, 'The Mystery Girl', 'Wells, Carolyn', '2014-02-23', 31, 'https://www.gutenberg.org/ebooks/44984', 'en', 61), +(66, 'Patty at Home', 'Wells, Carolyn', '2003-11-01', 48, 'https://www.gutenberg.org/ebooks/10268', 'en', 62), +(67, 'The Smugglers: Picturesque Chapters in the Story of an Ancient Craft', 'Harper, Charles G. (Charles George)', '2014-06-01', 31, 'https://www.gutenberg.org/ebooks/45856', 'en', 63), +(68, 'Vers Ispahan', 'Loti, Pierre', '2010-04-25', 18, 'https://www.gutenberg.org/ebooks/32138', 'fr', 64), +(69, 'L\'affaire Sougraine', 'Lemay, Pamphile', '2008-03-17', 10, 'https://www.gutenberg.org/ebooks/24861', 'fr', 65), +(70, 'American Antiquities. Auction Catalogue, January 8, 1898', 'Norman, William B.', '2011-07-03', 6, 'https://www.gutenberg.org/ebooks/36598', 'en', 66), +(71, 'The Huddlers', 'Gault, William Campbell', '2010-06-20', 11, 'https://www.gutenberg.org/ebooks/32904', 'en', 67), +(72, 'Phaidros', 'Plato', '2019-05-04', 8, 'https://www.gutenberg.org/ebooks/59435', 'fi', 68), +(73, 'Travels in West Africa: Congo Français, Corisco and Cameroons', 'Kingsley, Mary Henrietta', '2004-06-01', 64, 'https://www.gutenberg.org/ebooks/5891', 'en', 69), +(74, 'The History of the Ten \"Lost\" Tribes: Anglo-Israelism Examined', 'Baron, David', '2012-01-20', 16, 'https://www.gutenberg.org/ebooks/38630', 'en', 70), +(75, 'The River War: An Account of the Reconquest of the Sudan', 'Churchill, Winston', '2004-01-01', 212, 'https://www.gutenberg.org/ebooks/4943', 'en', 71), +(76, 'The Temptation of Samuel Burge\nCaptains All, Book 8.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/11188', 'en', 72), +(77, 'The Dolorous Passion of Our Lord Jesus Christ', 'Emmerich, Anna Katharina', '2004-01-01', 59, 'https://www.gutenberg.org/ebooks/10866', 'en', 73), +(78, 'Louis XI et Les États Pontificaux de France au XVe siècle', 'Rey, R. (Raymond)', '2011-10-09', 7, 'https://www.gutenberg.org/ebooks/37678', 'fr', 74), +(79, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 01 of 12)', 'Frazer, James George', '2019-05-26', 120, 'https://www.gutenberg.org/ebooks/59607', 'en', 75), +(80, 'The Tale of Cuffy Bear', 'Bailey, Arthur Scott', '2005-04-04', 54, 'https://www.gutenberg.org/ebooks/15528', 'en', 76), +(81, 'Villejä eläimiä', 'Seton, Ernest Thompson', '2014-03-29', 4, 'https://www.gutenberg.org/ebooks/45258', 'fi', 77), +(82, 'Spanish Explorers in the Southern United States, 1528-1543.\r\nThe Narrative of Alvar Nunez Cabeca de Vaca. The Narrative of the Expedition of Hernando De Soto by the Gentleman of Elvas', 'Castañeda de Nájera, Pedro de, active 16th century', '2013-05-29', 61, 'https://www.gutenberg.org/ebooks/42841', 'en', 78), +(83, 'Two Sides of the Face: Midwinter Tales', 'Quiller-Couch, Arthur', '2007-08-01', 23, 'https://www.gutenberg.org/ebooks/22198', 'en', 61), +(84, 'Rope', 'Hall, Holworthy', '2009-08-02', 17, 'https://www.gutenberg.org/ebooks/29570', 'en', 61), +(85, 'Stories from the Iliad', 'Havell, H. L. (Herbert Lord)', '2013-10-22', 23, 'https://www.gutenberg.org/ebooks/43993', 'en', 79), +(86, 'The Life, Crime, and Capture of John Wilkes Booth', 'Townsend, George Alfred', '2004-10-01', 44, 'https://www.gutenberg.org/ebooks/6628', 'en', 80), +(87, 'The Irish Penny Journal, Vol. 1 No. 36, March 6, 1841', 'Various', '2017-06-16', 8, 'https://www.gutenberg.org/ebooks/54924', 'en', 81), +(88, 'Madge Morton\'s Victory', 'Chalmers, Amy D. V.', '2008-09-05', 11, 'https://www.gutenberg.org/ebooks/26538', 'en', 82), +(89, 'The Child Wife', 'Reid, Mayne', '2011-04-19', 15, 'https://www.gutenberg.org/ebooks/35913', 'en', 61), +(90, 'Recollections of Thomas D. Duncan, a Confederate Soldier', 'Duncan, Thomas D.', '2015-07-20', 36, 'https://www.gutenberg.org/ebooks/49495', 'en', 83), +(91, 'The First Blast of the Trumpet against the monstrous regiment of Women', 'Knox, John', '2006-01-01', 99, 'https://www.gutenberg.org/ebooks/9660', 'en', 84), +(92, 'Through Russia', 'Gorky, Maksim', '2000-08-01', 22, 'https://www.gutenberg.org/ebooks/2288', 'en', 85), +(93, '徐霞客遊記', 'Xu, Hongzu', '2007-12-16', 29, 'https://www.gutenberg.org/ebooks/23876', 'zh', 86), +(94, 'Bees', 'Phillips, Everett Franklin', '2015-03-21', 12, 'https://www.gutenberg.org/ebooks/48547', 'en', 87), +(95, 'A Bird Calendar for Northern India', 'Dewar, Douglas', '2006-04-23', 46, 'https://www.gutenberg.org/ebooks/18237', 'en', 88), +(96, 'De avonturen van kapitein Bob', 'Defoe, Daniel', '2017-02-06', 31, 'https://www.gutenberg.org/ebooks/54118', 'nl', 89), +(97, 'The Adventures of Col. Daniel Boon\r\nContaining a Narrative of the Wars of Kentucke', 'Filson, John', '2006-02-05', 91, 'https://www.gutenberg.org/ebooks/909', 'en', 90), +(98, 'The Variation of Animals and Plants under Domestication — Volume 2', 'Darwin, Charles', '2001-10-01', 48, 'https://www.gutenberg.org/ebooks/2872', 'en', 91), +(99, 'Langsam-Schnellzüge in Österreich', 'Ignotus', '2009-05-02', 15, 'https://www.gutenberg.org/ebooks/28664', 'de', 92), +(100, 'Stories from the Trenches: Humorous and Lively Doings of Our \'Boys Over There\'', 'Case, Carleton B. (Carleton Britton)', '2015-08-08', 16, 'https://www.gutenberg.org/ebooks/49653', 'en', 93), +(101, 'Racketty-Packetty House, as Told by Queen Crosspatch', 'Burnett, Frances Hodgson', '2004-08-11', 52, 'https://www.gutenberg.org/ebooks/8574', 'en', 94), +(102, 'Mr. Sponge\'s Sporting Tour', 'Surtees, Robert Smith', '2005-10-28', 51, 'https://www.gutenberg.org/ebooks/16957', 'en', 95), +(103, 'The Irish ecclesiastical record. Volume 1, Index', NULL, '2010-03-23', 4, 'https://www.gutenberg.org/ebooks/31749', 'en', 96), +(104, 'The Botanical Magazine, Vol. 05\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2006-08-26', 46, 'https://www.gutenberg.org/ebooks/19123', 'en', 97), +(105, 'The Bishop and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 74, 'https://www.gutenberg.org/ebooks/13419', 'en', 85), +(106, 'Les Misérables', 'Hugo, Victor', '2008-06-22', 4594, 'https://www.gutenberg.org/ebooks/135', 'en', 98), +(107, 'Madelon: A Novel', 'Freeman, Mary Eleanor Wilkins', '2006-03-01', 20, 'https://www.gutenberg.org/ebooks/17885', 'en', 13), +(108, 'How Marcus Whitman Saved Oregon\r\nA True Romance of Patriotic Heroism Christian Devotion and Final Martyrdom', 'Nixon, Oliver W. (Oliver Woodson)', '2013-07-31', 11, 'https://www.gutenberg.org/ebooks/43369', 'en', 99), +(109, 'Histoires insolites', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2015-04-24', 22, 'https://www.gutenberg.org/ebooks/48781', 'fr', 100), +(110, 'The Recollections of a Drummer-Boy', 'Kieffer, Henry Martyn', '2014-02-20', 18, 'https://www.gutenberg.org/ebooks/44970', 'en', 101), +(111, 'Apparitions and thought-transference: an examination of the evidence for telepathy', 'Podmore, Frank', '2018-02-03', 11, 'https://www.gutenberg.org/ebooks/56489', 'en', 102), +(112, 'The Philadelphia Housewife; or, Family Receipt Book', 'Hodgson, Mary, active 1855', '2016-08-16', 36, 'https://www.gutenberg.org/ebooks/52815', 'en', 103), +(113, 'Πολιτεία, Τόμος 3', 'Plato', '2012-04-24', 25, 'https://www.gutenberg.org/ebooks/39524', 'el', 104), +(114, 'Notes and Queries, Number 186, May 21, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-21', 23, 'https://www.gutenberg.org/ebooks/20409', 'en', 105), +(115, 'Geschiedenis van het tijdperk van 25-jarigen vrede: 1849-1874', 'Andriessen, P. J. (Pieter Jacob)', '2010-10-01', 17, 'https://www.gutenberg.org/ebooks/33822', 'nl', 106), +(116, 'Mary Louise Adopts a Soldier', 'Sampson, Emma Speed', '2018-12-22', 17, 'https://www.gutenberg.org/ebooks/58513', 'en', 107), +(117, 'The Call Of The South\n1908', 'Becke, Louis', '2008-03-22', 30, 'https://www.gutenberg.org/ebooks/24895', 'en', 108), +(118, 'The Devil: A Tragedy of the Heart and Conscience', 'O\'Brien, Joseph', '2008-07-02', 16, 'https://www.gutenberg.org/ebooks/25947', 'en', 109), +(119, 'Unvarnished Tales', 'Mackay, William', '2016-05-09', 17, 'https://www.gutenberg.org/ebooks/52029', 'en', 61), +(120, 'White Tail the Deer\'s Adventures', 'Walsh, George Ethelbert', '2018-08-25', 7, 'https://www.gutenberg.org/ebooks/57769', 'en', 110), +(121, 'Personal Memoirs of U. S. Grant, Part 6.', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/5865', 'en', 111), +(122, 'Nathaniel Hawthorne', 'Hawthorne, Nathaniel', '2012-05-17', 64, 'https://www.gutenberg.org/ebooks/39716', 'en', 112), +(123, '東周列國志', 'Feng, Menglong', '2008-05-06', 49, 'https://www.gutenberg.org/ebooks/25349', 'zh', 113), +(124, 'Dawn', 'Haggard, H. Rider (Henry Rider)', '2004-01-01', 48, 'https://www.gutenberg.org/ebooks/10892', 'en', 114), +(125, 'Plays : Fifth Series', 'Galsworthy, John', '2004-09-26', 19, 'https://www.gutenberg.org/ebooks/5059', 'en', 115), +(126, 'Unwelcomed Visitor', 'Samachson, Joseph', '2019-01-19', 28, 'https://www.gutenberg.org/ebooks/58721', 'en', 67), +(127, 'Seitsemän veljestä\nKertomus', 'Kivi, Aleksis', '2004-04-01', 155, 'https://www.gutenberg.org/ebooks/11940', 'fi', 116), +(128, 'Romantic Ireland; volume 1/2', 'Mansfield, M. F. (Milburg Francisco)', '2014-07-27', 16, 'https://www.gutenberg.org/ebooks/46429', 'en', 117), +(129, '\"Out of the East\": Reveries and Studies in New Japan', 'Hearn, Lafcadio', '2017-10-24', 34, 'https://www.gutenberg.org/ebooks/55802', 'en', 118), +(130, 'Die Piraterie. Beiträge zum internationalen Seerecht', 'Stiel, Paul', '2009-08-03', 16, 'https://www.gutenberg.org/ebooks/29584', 'de', 119), +(131, 'Sir Thomas Browne and his \'Religio Medici\': An Appreciation', 'Whyte, Alexander', '2005-07-25', 8, 'https://www.gutenberg.org/ebooks/16359', 'en', 120), +(132, 'A Christian Directory, Part 4: Christian Politics', 'Baxter, Richard', '2013-10-17', 20, 'https://www.gutenberg.org/ebooks/43967', 'en', 121), +(133, 'Great Men and Famous Women. Vol. 6\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2009-03-30', 24, 'https://www.gutenberg.org/ebooks/28456', 'en', 122), +(134, 'Stranded in Arcady', 'Lynde, Francis', '2010-09-28', 21, 'https://www.gutenberg.org/ebooks/34009', 'en', 123), +(135, 'The Outdoor Girls in Florida; Or, Wintering in the Sunny South', 'Hope, Laura Lee', '2006-09-17', 25, 'https://www.gutenberg.org/ebooks/19311', 'en', 124), +(136, 'Abolitionism Exposed!\r\nProving the the Principles of Abolitionism are Injurious to the Slaves Themselves, Destructive to This Nation, and Contrary to the Express Commands of God', 'Sleigh, W. W. (William Willcocks)', '2013-02-14', 41, 'https://www.gutenberg.org/ebooks/42089', 'en', 125), +(137, 'An Englishwoman\'s Love-Letters', 'Housman, Laurence', '2007-10-01', 4, 'https://www.gutenberg.org/ebooks/22950', 'en', 61), +(138, 'Bartholomew Fair: A Comedy', 'Jonson, Ben', '2015-07-16', 107, 'https://www.gutenberg.org/ebooks/49461', 'en', 126), +(139, 'History of Modern Mathematics\nMathematical Monographs No. 1', 'Smith, David Eugene', '2005-08-01', 77, 'https://www.gutenberg.org/ebooks/8746', 'en', 127), +(140, 'The Battle of Life', 'Dickens, Charles', '2006-01-01', 13, 'https://www.gutenberg.org/ebooks/9694', 'en', 45), +(141, 'Gold in the Sky', 'Nourse, Alan Edward', '2007-12-17', 56, 'https://www.gutenberg.org/ebooks/23882', 'en', 26), +(142, 'The Pagan\'s Cup', 'Hume, Fergus', '2011-01-04', 45, 'https://www.gutenberg.org/ebooks/34835', 'en', 128), +(143, 'Three Elephant Power, and Other Stories', 'Paterson, A. B. (Andrew Barton)', '2008-06-29', 75, 'https://www.gutenberg.org/ebooks/307', 'en', 129), +(144, 'The Recent Mammals of Tamaulipas, México', 'Alvarez, Ticul', '2012-04-04', 16, 'https://www.gutenberg.org/ebooks/39372', 'en', 130), +(145, 'Washington Irving', 'Warner, Charles Dudley', '2005-06-04', 11, 'https://www.gutenberg.org/ebooks/15984', 'en', 131), +(146, 'Manual Training Toys for the Boy\'s Workshop', 'Moore, Harris W.', '2012-11-02', 22, 'https://www.gutenberg.org/ebooks/41268', 'en', 132), +(147, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 387, August 28, 1829', 'Various', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11518', 'en', 133), +(148, 'Punch, or the London Charivari, Volume 152, March 28, 1917', 'Various', '2005-02-01', 2, 'https://www.gutenberg.org/ebooks/14856', 'en', 134), +(149, 'The Mammals of Warren Woods, Berrien County, Michigan\nOccasional Paper of the Museum of Zoology, Number 86', 'Dice, Lee R. (Lee Raymond)', '2010-09-05', 14, 'https://www.gutenberg.org/ebooks/33648', 'en', 135), +(150, 'Your Time is Up', 'Sheldon, Walter J.', '2019-04-17', 44, 'https://www.gutenberg.org/ebooks/59297', 'en', 136), +(151, 'Within the Maze: A Novel, Vol. 1 (of 2)', 'Wood, Henry, Mrs.', '2018-11-24', 18, 'https://www.gutenberg.org/ebooks/58345', 'en', 137), +(152, 'Die Schwägerinnen. Zweiter Theil.', 'Hanke, Henriette Wilhelmine Arndt', '2015-10-04', 12, 'https://www.gutenberg.org/ebooks/50128', 'de', 138), +(153, 'Sprays of Shamrock', 'Scollard, Clinton', '2009-02-09', 10, 'https://www.gutenberg.org/ebooks/28032', 'en', 139), +(154, 'De Lof der Zotheid', 'Erasmus, Desiderius', '2009-01-20', 82, 'https://www.gutenberg.org/ebooks/27846', 'nl', 140), +(155, 'When Life Was Young\nAt the Old Farm in Maine', 'Stephens, C. A. (Charles Asbury)', '2008-10-22', 18, 'https://www.gutenberg.org/ebooks/26994', 'en', 141), +(156, 'The Normans in England (1066-1154)', NULL, '2015-08-31', 11, 'https://www.gutenberg.org/ebooks/49839', 'en', 142), +(157, 'Nova Castro: tragedia', 'Júnior, João Baptista Gomes', '2007-09-04', 10, 'https://www.gutenberg.org/ebooks/22508', 'pt', 143), +(158, 'The Pearl of India', 'Ballou, Maturin M. (Maturin Murray)', '2010-04-08', 19, 'https://www.gutenberg.org/ebooks/31923', 'en', 144), +(159, 'A House-Boat on the Styx', 'Bangs, John Kendrick', '2001-05-01', 64, 'https://www.gutenberg.org/ebooks/2618', 'en', 145), +(160, 'Dreadnoughts of the Dogger: A Story of the War on the North Sea', 'Leighton, Robert', '2016-01-13', 11, 'https://www.gutenberg.org/ebooks/50914', 'en', 146), +(161, 'Bela: Kaukaasialainen kertomus', 'Lermontov, Mikhail Iurevich', '2017-04-22', 8, 'https://www.gutenberg.org/ebooks/54588', 'fi', 147), +(162, 'The Round-Up: A Romance of Arizona; Novelized from Edmund Day\'s Melodrama', 'Miller, Marion Mills', '1996-12-01', 41, 'https://www.gutenberg.org/ebooks/763', 'en', 48), +(163, 'Dixie Martin, the Girl of Woodford\'s Cañon', 'North, Grace May', '2014-09-16', 16, 'https://www.gutenberg.org/ebooks/46871', 'en', 148), +(164, 'Vaughan\'s Vegetable Cook Book (4th edition)\r\nHow to Cook and Use Rarer Vegetables and Herbs', 'Anonymous', '2006-11-12', 53, 'https://www.gutenberg.org/ebooks/19775', 'en', 149), +(165, 'L\'Illustration, No. 0075, 1 August 1844', 'Various', '2015-05-20', 16, 'https://www.gutenberg.org/ebooks/49005', 'fr', 150), +(166, 'The Bible, Douay-Rheims, Book 22: Proverbs\nThe Challoner Revision', NULL, '2005-06-01', 2, 'https://www.gutenberg.org/ebooks/8322', 'en', 151), +(167, 'Oberheim (Voices): A Chronicle of War', 'Leadem, Christopher', '2004-10-23', 17, 'https://www.gutenberg.org/ebooks/13841', 'en', 26), +(168, 'Renan, Taine, Michelet: Les maîtres de l\'histoire', 'Monod, Gabriel', '2009-02-26', 12, 'https://www.gutenberg.org/ebooks/28200', 'fr', 152), +(169, 'Un bon petit diable', 'Ségur, Sophie, comtesse de', '2004-07-22', 27, 'https://www.gutenberg.org/ebooks/12993', 'fr', 153), +(170, 'The Prince and the Pauper, Part 5.', 'Twain, Mark', '2004-07-04', 14, 'https://www.gutenberg.org/ebooks/7158', 'en', 154), +(171, 'The Drama of the Forests: Romance and Adventure', 'Heming, Arthur', '2006-06-03', 43, 'https://www.gutenberg.org/ebooks/18495', 'en', 12), +(172, 'The Land That Time Forgot', 'Burroughs, Edgar Rice', '1996-06-01', 336, 'https://www.gutenberg.org/ebooks/551', 'en', 26), +(173, 'The Raid on the Termites', 'Ernst, Paul', '2008-11-12', 40, 'https://www.gutenberg.org/ebooks/27248', 'en', 26), +(174, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 706\nJuly 7, 1877', 'Various', '2015-06-19', 8, 'https://www.gutenberg.org/ebooks/49237', 'en', 18), +(175, 'Lincoln Letters', 'Lincoln, Abraham', '2005-05-01', 22, 'https://www.gutenberg.org/ebooks/8110', 'en', 155), +(176, 'Twenty Years\' Recollections of an Irish Police Magistrate', 'Porter, Frank Thorpe', '2017-10-02', 17, 'https://www.gutenberg.org/ebooks/55668', 'en', 156), +(177, 'Obed Hussey, Who, of All Inventors, Made Bread Cheap', NULL, '2006-10-15', 24, 'https://www.gutenberg.org/ebooks/19547', 'en', 157), +(178, 'The Mystery of Cloomber', 'Doyle, Arthur Conan', '2005-04-01', 60, 'https://www.gutenberg.org/ebooks/7964', 'en', 158), +(179, 'In the Days of the Guild', 'Lamprey, Louise', '2011-08-01', 17, 'https://www.gutenberg.org/ebooks/36934', 'en', 159), +(180, 'A Racial Study of the Fijians', 'Gabel, Norman E.', '2012-03-14', 16, 'https://www.gutenberg.org/ebooks/39140', 'en', 160), +(181, 'Ten Days in a Mad-House; or, Nellie Bly\'s Experience on Blackwell\'s Island.\r\nFeigning Insanity in Order to Reveal Asylum Horrors. The Trying Ordeal of the New York World\'s Girl Correspondent.', 'Bly, Nellie', '2019-07-10', 436, 'https://www.gutenberg.org/ebooks/59899', 'en', 161), +(182, 'The Continental Monthly, Vol. 4, No. 1, July, 1863\nDevoted to Literature and National Policy', 'Various', '2007-07-01', 17, 'https://www.gutenberg.org/ebooks/21983', 'en', 162), +(183, 'Character Sketches of Romance, Fiction and the Drama, Vol. 3 (of 4)\r\nA Revised American Edition of the Reader\'s Handbook', 'Brewer, Ebenezer Cobham', '2007-03-20', 19, 'https://www.gutenberg.org/ebooks/20851', 'en', 163), +(184, 'Love in the Suds: a Town Eclogue.\r\nBeing the Lamentation of Roscius for the Loss of His Nyky.', 'Kenrick, W. (William)', '2012-07-10', 8, 'https://www.gutenberg.org/ebooks/40188', 'en', 164), +(185, 'The Book of God : In the Light of the Higher Criticism\r\nWith Special Reference to Dean Farrar\'s New Apology', 'Foote, G. W. (George William)', '2011-11-22', 30, 'https://www.gutenberg.org/ebooks/38092', 'en', 165), +(186, 'Trevethlan: A Cornish Story. Volume 3 (of 3)', 'Watson, William Davy', '2011-05-15', 4, 'https://www.gutenberg.org/ebooks/36108', 'en', 166), +(187, 'Dick Merriwell\'s Trap; Or, The Chap Who Bungled', 'Standish, Burt L.', '2013-01-17', 12, 'https://www.gutenberg.org/ebooks/41866', 'en', 167), +(188, 'Le Livre des Mères et des Enfants, Tome I', 'Desbordes-Valmore, Marceline', '2004-12-04', 24, 'https://www.gutenberg.org/ebooks/14258', 'fr', 168), +(189, 'Itsenäinen Suomi, unelmasta todellisuuteen', 'Hjelt, Edv. (Edvard)', '2018-10-27', 4, 'https://www.gutenberg.org/ebooks/58177', 'fi', 169), +(190, 'Der Selbstarzt bei äußeren Verletzungen und Entzündungen aller Art\r\nOder, das Geheimniß, durch Franzbranntwein und Salz alle Verwundungen, Lähmungen, offene Wunden, Brand, Krebsschäden, Zahnweh, Kolik, Rose, sowie überhaupt alle äußern und innern Entzündungen ohne Hülfe des Arztes zu heilen.', 'Lee, William', '2013-12-27', 10, 'https://www.gutenberg.org/ebooks/44528', 'de', 170), +(191, 'Soldiers and Sailors\r\nor, Anecdotes, Details, and Recollections of Naval and Military Life, as Related to His Nephews, by an Old Officer.', 'Old Humphrey', '2018-09-14', 15, 'https://www.gutenberg.org/ebooks/57903', 'en', 171), +(192, 'An Essay on the Development of Christian Doctrine', 'Newman, John Henry', '2011-01-29', 147, 'https://www.gutenberg.org/ebooks/35110', 'en', 172), +(193, 'Setä Tuomon tupa', 'Stowe, Harriet Beecher', '2005-07-30', 23, 'https://www.gutenberg.org/ebooks/16392', 'fi', 173), +(194, 'The Fate: A Tale of Stirring Times', 'James, G. P. R. (George Payne Rainsford)', '2016-03-14', 6, 'https://www.gutenberg.org/ebooks/51455', 'en', 61), +(195, 'Ozma of Oz', 'Baum, L. Frank (Lyman Frank)', '2007-10-01', 13, 'https://www.gutenberg.org/ebooks/23075', 'en', 174), +(196, 'Vaikea tie: Romaani nykyajalta', 'Wilkuna, Kyösti', '2015-12-02', 6, 'https://www.gutenberg.org/ebooks/50587', 'fi', 175), +(197, 'Le chasseur d\'ours', 'Buet, Charles', '2005-12-06', 13, 'https://www.gutenberg.org/ebooks/17240', 'fr', 176), +(198, 'Oliver Twist, Vol. 2 (of 3)', 'Dickens, Charles', '2014-12-04', 66, 'https://www.gutenberg.org/ebooks/47530', 'en', 177), +(199, 'Poems of Sentiment', 'Wilcox, Ella Wheeler', '2004-10-01', 16, 'https://www.gutenberg.org/ebooks/6617', 'en', 178), +(200, 'Short-Stories', NULL, '2004-06-01', 280, 'https://www.gutenberg.org/ebooks/12732', 'en', 179), +(201, 'The Future of the American Negro', 'Washington, Booker T.', '2008-09-02', 63, 'https://www.gutenberg.org/ebooks/26507', 'en', 180), +(202, 'Their Wedding Journey', 'Howells, William Dean', '2004-10-23', 37, 'https://www.gutenberg.org/ebooks/3365', 'en', 181), +(203, 'The Spell of the Rockies', 'Mills, Enos A.', '2013-02-07', 20, 'https://www.gutenberg.org/ebooks/42042', 'en', 182), +(204, '牡丹亭', 'Tang, Xianzu', '2007-12-13', 36, 'https://www.gutenberg.org/ebooks/23849', 'zh', 183), +(205, 'Blade-O\'-Grass. Golden Grain. and Bread and Cheese and Kisses.', 'Farjeon, B. L. (Benjamin Leopold)', '2013-07-10', 12, 'https://www.gutenberg.org/ebooks/43190', 'en', 61), +(206, 'Ludwig the Second, King of Bavaria', 'Tschudi, Clara', '2015-03-24', 30, 'https://www.gutenberg.org/ebooks/48578', 'en', 184), +(207, 'O Oraculo do Passado, do presente e do Futuro (3/7)\r\nParte Terceira: O oraculo dos Segredos', 'Serrano, Bento', '2009-11-13', 22, 'https://www.gutenberg.org/ebooks/30462', 'pt', 185), +(208, 'L\'enfer et le paradis de l\'autre monde', 'Chevalier, H. Emile (Henri Emile)', '2006-04-19', 14, 'https://www.gutenberg.org/ebooks/18208', 'fr', 65), +(209, 'Die Naturwissenschaften in ihrer Entwicklung und in ihrem Zusammenhange, II. Band\nVon Galilei bis zur Mitte des XVIII. Jahrhunderts', 'Dannemann, Friedrich', '2017-02-07', 14, 'https://www.gutenberg.org/ebooks/54127', 'de', 186), +(210, 'The Constitution of the United States\nA Brief Study of the Genesis, Formulation and Political Philosophy of the Constitution', 'Beck, James M. (James Montgomery)', '2003-11-01', 35, 'https://www.gutenberg.org/ebooks/10065', 'en', 187), +(211, 'Lecturas fáciles con ejercicios', 'Wilkins, Lawrence A. (Lawrence Augustus)', '2008-01-11', 37, 'https://www.gutenberg.org/ebooks/24250', 'es', 188), +(212, 'Seraphita', 'Balzac, Honoré de', '2005-09-07', 60, 'https://www.gutenberg.org/ebooks/1432', 'en', 58), +(213, 'A három galamb: Regény', 'Kádár, Lehel', '2012-09-08', 18, 'https://www.gutenberg.org/ebooks/40715', 'hu', 189), +(214, 'The Old Soldier\'s Story: Poems and Prose Sketches', 'Riley, James Whitcomb', '2010-05-11', 13, 'https://www.gutenberg.org/ebooks/32335', 'en', 190), +(215, 'Facecies et motz subtilz, d\'aucuns excellens esprits et tresnobles seigneurs', 'Domenichi, Lodovico', '2008-05-07', 17, 'https://www.gutenberg.org/ebooks/25382', 'fr', 191), +(216, 'Our Lady of the Pillar', 'Queirós, Eça de', '2018-03-02', 15, 'https://www.gutenberg.org/ebooks/56670', 'en', 192), +(217, 'The Coming of Cuculain', 'O\'Grady, Standish', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/5092', 'en', 193), +(218, 'Paul and Virginia from the French of J.B.H. de Saint Pierre', 'Saint-Pierre, Bernardin de', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10859', 'en', 194), +(219, 'The Adventures of a Country Boy at a Country Fair', 'Otis, James', '2011-10-06', 10, 'https://www.gutenberg.org/ebooks/37647', 'en', 195), +(220, 'The Boy Inventor\'s Wireless Triumph', 'Bonner, Richard', '2016-10-17', 14, 'https://www.gutenberg.org/ebooks/53302', 'en', 196), +(221, 'A Practical Discourse on Some Principles of Hymn-Singing', 'Bridges, Robert', '2007-06-06', 22, 'https://www.gutenberg.org/ebooks/21722', 'en', 197), +(222, 'Index of the Project Gutenberg Works of William Le Queux', 'Le Queux, William', '2019-05-30', 11, 'https://www.gutenberg.org/ebooks/59638', 'en', 198), +(223, 'Acetaria: A Discourse of Sallets', 'Evelyn, John', '2005-04-01', 181, 'https://www.gutenberg.org/ebooks/15517', 'en', 199), +(224, 'The Pansy Magazine, March 1886', 'Various', '2014-03-31', 14, 'https://www.gutenberg.org/ebooks/45267', 'en', 200), +(225, 'Diary of Samuel Pepys — Volume 21: March/April 1662-63', 'Pepys, Samuel', '2004-11-30', 22, 'https://www.gutenberg.org/ebooks/4140', 'en', 201), +(226, 'Bygones Worth Remembering, Vol. 1 (of 2)', 'Holyoake, George Jacob', '2011-07-20', 31, 'https://www.gutenberg.org/ebooks/36795', 'en', 202), +(227, 'Symposium', 'Plato', '1999-01-01', 782, 'https://www.gutenberg.org/ebooks/1600', 'en', 203), +(228, 'In League with Israel: A Tale of the Chattanooga Conference', 'Johnston, Annie F. (Annie Fellows)', '2012-08-20', 21, 'https://www.gutenberg.org/ebooks/40527', 'en', 204), +(229, 'Mazel Tov', 'I. J. Hochman\'s Yiddisher Orchester', '2003-11-01', 21, 'https://www.gutenberg.org/ebooks/10257', 'yi', 205), +(230, 'La verdad sospechosa', 'Ruiz de Alarcón, Juan', '2018-07-28', 34, 'https://www.gutenberg.org/ebooks/57590', 'es', 206), +(231, 'A History of the United States', 'Chesterton, Cecil', '2007-12-28', 55, 'https://www.gutenberg.org/ebooks/24062', 'en', 207), +(232, 'The Story of Doctor Johnson; Being an Introduction to Boswell\'s Life', 'Roberts, S. C. (Sydney Castle)', '2014-06-03', 11, 'https://www.gutenberg.org/ebooks/45869', 'en', 208), +(233, 'Romantic Cities of Provence', 'Caird, Mona', '2018-01-27', 12, 'https://www.gutenberg.org/ebooks/56442', 'en', 209), +(234, 'Scientific American Supplement, No. 446, July 19, 1884', 'Various', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11385', 'en', 210), +(235, 'The Vision of Elijah Berl', 'Nason, Frank Lewis', '2010-04-23', 16, 'https://www.gutenberg.org/ebooks/32107', 'en', 211), +(236, 'A Guide-Book of Florida and the South for Tourists, Invalids and Emigrants', 'Brinton, Daniel G. (Daniel Garrison)', '2016-09-23', 7, 'https://www.gutenberg.org/ebooks/53130', 'en', 212), +(237, 'Peeps at Many Lands: Turkey', 'Van Millingen, Julius R.', '2011-09-19', 34, 'https://www.gutenberg.org/ebooks/37475', 'en', 213), +(238, 'Mesdames Nos Aïeules: dix siècles d\'élégances', 'Robida, Albert', '2013-11-15', 14, 'https://www.gutenberg.org/ebooks/44187', 'fr', 214), +(239, 'God redde Nederland\ngedenkschrift bij gelegenheid van het honderd-jarig jubileum\nvan Neerlands herkregen onafhankelijk volksbestaan (30\nNov. 1813 - 30 Nov. 1913)', 'Kuiper, Jan', '2014-03-03', 9, 'https://www.gutenberg.org/ebooks/45055', 'nl', 215), +(240, 'Jenseits der Schriftkultur — Band 2', 'Nadin, Mihai', '2003-08-01', 21, 'https://www.gutenberg.org/ebooks/4372', 'de', 216), +(241, 'Legacy', 'Schmitz, James H.', '2007-05-17', 81, 'https://www.gutenberg.org/ebooks/21510', 'en', 26), +(242, 'Doña Perfecta', 'Pérez Galdós, Benito', '2005-04-28', 99, 'https://www.gutenberg.org/ebooks/15725', 'en', 217), +(243, 'Brief Records of the Independent Church at Beccles, Suffolk\r\nIncluding biographical notices of its ministers,and some account of the rise of nonconformity in the East Anglian counties', 'Rix, S. Wilton (Samuel Wilton)', '2016-04-05', 5, 'https://www.gutenberg.org/ebooks/51667', 'en', 218), +(244, 'O Melro\r\n(Fragmento)', 'Junqueiro, Abílio Manuel Guerra', '2007-08-25', 24, 'https://www.gutenberg.org/ebooks/22395', 'pt', 8), +(245, 'The Thistle and the Cedar of Lebanon', 'Risk Allah, Habeeb', '2011-02-18', 10, 'https://www.gutenberg.org/ebooks/35322', 'en', 219), +(246, 'Through the Gates of Old Romance', 'Mills, Weymer Jay', '2014-12-19', 15, 'https://www.gutenberg.org/ebooks/47702', 'en', 220), +(247, 'Flowing Gold', 'Beach, Rex', '2004-09-01', 57, 'https://www.gutenberg.org/ebooks/6425', 'en', 221), +(248, 'Manuel complet des fabricans de chapeaux en tous genres', 'Fontenelle, Jean-Sébastien-Eugène Julia de', '2006-07-11', 20, 'https://www.gutenberg.org/ebooks/18806', 'fr', 222), +(249, 'The Cursed Patois\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 11, 'https://www.gutenberg.org/ebooks/23247', 'en', 223), +(250, 'Eene Gekkenwereld!', 'Conscience, Hendrik', '2005-11-16', 5, 'https://www.gutenberg.org/ebooks/17072', 'nl', 98), +(251, 'The Poniard\'s Hilt; Or, Karadeucq and Ronan. A Tale of Bagauders and Vagres', 'Sue, Eugène', '2010-03-25', 12, 'https://www.gutenberg.org/ebooks/31782', 'en', 224), +(252, 'The Path of Empire: A Chronicle of the United States as a World Power', 'Fish, Carl Russell', '2002-04-01', 30, 'https://www.gutenberg.org/ebooks/3157', 'en', 225), +(253, 'The Retrospect', 'Cambridge, Ada', '2013-03-06', 8, 'https://www.gutenberg.org/ebooks/42270', 'en', 226), +(254, 'Through South America', 'Van Dyke, Harry Weston', '2015-08-14', 15, 'https://www.gutenberg.org/ebooks/49698', 'en', 227), +(255, 'Buena Nueva de acuerdo a Mateo: Traducción de dominio público abierta a mejoras', NULL, '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/12500', 'es', 228), +(256, 'Stories and Legends of Travel and History, for Children', 'Greenwood, Grace', '2008-10-01', 16, 'https://www.gutenberg.org/ebooks/26735', 'en', 229), +(257, 'The House of Baltazar', 'Locke, William John', '2019-08-18', 517, 'https://www.gutenberg.org/ebooks/60120', 'en', 230), +(258, 'Cardiff: A Sketch-Book', 'Andrews, D. S. (Douglas S.)', '2017-03-09', 7, 'https://www.gutenberg.org/ebooks/54315', 'en', 231), +(259, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 21', 'Stevenson, Robert Louis', '2009-12-11', 47, 'https://www.gutenberg.org/ebooks/30650', 'en', 232), +(260, 'Cyropaedia: The Education of Cyrus', 'Xenophon', '2000-02-01', 380, 'https://www.gutenberg.org/ebooks/2085', 'en', 233), +(261, 'Enyim, tied, övé (2. rész)\r\nRegény', 'Jókai, Mór', '2017-11-22', 5, 'https://www.gutenberg.org/ebooks/56026', 'hu', 234), +(262, 'The Price of Power\nBeing Chapters from the Secret History of the Imperial Court of Russia', 'Le Queux, William', '2012-10-17', 23, 'https://www.gutenberg.org/ebooks/41091', 'en', 235), +(263, 'Little Busybodies: The Life of Crickets, Ants, Bees, Beetles, and Other Busybodies', 'Moody, Julia', '2007-06-27', 56, 'https://www.gutenberg.org/ebooks/21948', 'en', 236), +(264, 'Del sentimiento trágico de la vida', 'Unamuno, Miguel de', '2019-07-04', 97, 'https://www.gutenberg.org/ebooks/59852', 'es', 237), +(265, 'The Lost Warship', 'Williams, Robert Moore', '2010-05-28', 59, 'https://www.gutenberg.org/ebooks/32563', 'en', 26), +(266, 'A Witch in Time', 'Williams, Herb', '2019-02-28', 44, 'https://www.gutenberg.org/ebooks/58980', 'en', 238), +(267, 'Mémoires de Vidocq, chef de la police de Sureté jusqu\'en 1827, tome III', 'Vidocq, Eugène François', '2011-11-19', 12, 'https://www.gutenberg.org/ebooks/38059', 'fr', 239), +(268, 'The Wheels of Chance: A Bicycling Idyll', 'Wells, H. G. (Herbert George)', '1998-04-01', 78, 'https://www.gutenberg.org/ebooks/1264', 'en', 240), +(269, 'France and England in North America, Part III: La Salle, Discovery of The Great West', 'Parkman, Francis', '2012-07-04', 17, 'https://www.gutenberg.org/ebooks/40143', 'en', 241), +(270, 'The History of the Rise, Progress and Accomplishment of the Abolition of the African Slave-Trade, by the British Parliament (1839)', 'Clarkson, Thomas', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10633', 'en', 242), +(271, 'The Price of a Soul', 'Bryan, William Jennings', '2008-01-23', 16, 'https://www.gutenberg.org/ebooks/24406', 'en', 243), +(272, 'De positie van Nederland', 'Kuyper, Abraham', '2014-04-18', 10, 'https://www.gutenberg.org/ebooks/45431', 'nl', 244), +(273, 'A Day in Old Athens; a Picture of Athenian Life', 'Davis, William Stearns', '2003-12-01', 56, 'https://www.gutenberg.org/ebooks/4716', 'en', 245), +(274, 'The Road to Oz', 'Baum, L. Frank (Lyman Frank)', '2007-04-26', 4, 'https://www.gutenberg.org/ebooks/21174', 'en', 246), +(275, 'Jouluaattona juomarin kodissa\n1-näytöksinen näytelmä', 'Jahnsson, Evald Ferdinand', '2005-03-12', 12, 'https://www.gutenberg.org/ebooks/15341', 'fi', 247), +(276, 'Adelina; oder, Der Abschied vom neunzehnten Lebensjahre. Aufzeichnungen', 'Kokoschka, Bohuslav', '2016-07-03', 76, 'https://www.gutenberg.org/ebooks/52486', 'de', 61), +(277, 'The Maid of Honour: A Tale of the Dark Days of France. Vol. 1 (of 3)', 'Wingfield, Lewis', '2012-02-13', 7, 'https://www.gutenberg.org/ebooks/38865', 'en', 248), +(278, 'Kertomuksia I', 'Gorky, Maksim', '2016-11-19', 5, 'https://www.gutenberg.org/ebooks/53554', 'fi', 147), +(279, 'The Complete Book of Cheese', 'Brown, Bob', '2004-12-07', 98, 'https://www.gutenberg.org/ebooks/14293', 'en', 249), +(280, 'Les musiciens et la musique', 'Berlioz, Hector', '2011-08-08', 31, 'https://www.gutenberg.org/ebooks/37011', 'fr', 250), +(281, 'Nervous Breakdowns and How to Avoid Them', 'Musgrove, Charles David', '2014-11-16', 32, 'https://www.gutenberg.org/ebooks/47366', 'en', 251), +(282, 'Stories by English Authors: The Sea', NULL, '2004-07-01', 28, 'https://www.gutenberg.org/ebooks/6041', 'en', 252), +(283, 'Der Rubin', 'Sack, Gustav', '2010-12-19', 8, 'https://www.gutenberg.org/ebooks/34694', 'de', 253), +(284, 'The White Lady of Hazelwood: A Tale of the Fourteenth Century', 'Holt, Emily Sarah', '2007-11-25', 24, 'https://www.gutenberg.org/ebooks/23623', 'en', 98), +(285, 'A Critical Examination of Socialism', 'Mallock, W. H. (William Hurrell)', '2005-12-30', 14, 'https://www.gutenberg.org/ebooks/17416', 'en', 254), +(286, 'Martin Conisby\'s Vengeance', 'Farnol, Jeffery', '2006-02-01', 34, 'https://www.gutenberg.org/ebooks/9835', 'en', 255), +(287, 'A Coffin for Jacob', 'Ludwig, Edward W.', '2016-02-14', 25, 'https://www.gutenberg.org/ebooks/51203', 'en', 26), +(288, 'The Trimming of Goosie', 'Hopper, James', '2009-07-05', 107, 'https://www.gutenberg.org/ebooks/29319', 'en', 256), +(289, 'The Adventures of Tom Sawyer, Part 1.', 'Twain, Mark', '2004-06-29', 88, 'https://www.gutenberg.org/ebooks/7193', 'en', 257), +(290, 'Pamela, Volume II', 'Richardson, Samuel', '2004-07-20', 42, 'https://www.gutenberg.org/ebooks/12958', 'en', 258), +(291, 'The Pearl of Peace; or, The Little Peacemaker', 'Leslie, Madeline', '2011-04-01', 10, 'https://www.gutenberg.org/ebooks/35746', 'en', 195), +(292, 'Mémoires d\'un cambrioleur retiré des affaires', 'Galopin, Arnould', '2008-11-16', 47, 'https://www.gutenberg.org/ebooks/27283', 'fr', 259), +(293, 'A Prince of Swindlers', 'Boothby, Guy', '2017-05-23', 33, 'https://www.gutenberg.org/ebooks/54771', 'en', 128), +(294, 'The Communist Manifesto', 'Marx, Karl', '2005-01-25', 3297, 'https://www.gutenberg.org/ebooks/61', 'en', 260), +(295, 'Dead Ringer', 'Del Rey, Lester', '2009-10-11', 88, 'https://www.gutenberg.org/ebooks/30234', 'en', 179), +(296, 'Life on the Mississippi', 'Twain, Mark', '2005-09-01', 10, 'https://www.gutenberg.org/ebooks/9009', 'en', 261), +(297, 'Sunshine Sketches of a Little Town', 'Leacock, Stephen', '2002-11-01', 81, 'https://www.gutenberg.org/ebooks/3533', 'en', 262), +(298, 'English Monastic Life', 'Gasquet, Francis Aidan', '2013-04-29', 19, 'https://www.gutenberg.org/ebooks/42614', 'en', 263), +(299, 'Strawberry Acres', 'Richmond, Grace S. (Grace Smith)', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/12164', 'en', 264), +(300, 'La ruelle mal assortie\r\nou entretiens amoureux d\'une dame éloquente avec un cavalier gascon plus beau de corps que d\'esprit et qui a autant d\'ignorance comme elle a de sçavoir', 'Marguerite, Queen, consort of Henry IV, King of France', '2008-08-18', 19, 'https://www.gutenberg.org/ebooks/26351', 'fr', 265), +(301, 'The Present State of Hayti (Saint Domingo) with Remarks on its Agriculture, Commerce, Laws, Religion, Finances, and Population', 'Franklin, James (Merchant)', '2015-05-10', 9, 'https://www.gutenberg.org/ebooks/48920', 'en', 266), +(302, 'Smaïn; and Safti\'s Summer Day\n1905', 'Hichens, Robert', '2007-11-08', 8, 'https://www.gutenberg.org/ebooks/23411', 'en', 267), +(303, 'A Bibliographical, Antiquarian and Picturesque Tour in France and Germany, Volume Three', 'Dibdin, Thomas Frognall', '2006-01-29', 14, 'https://www.gutenberg.org/ebooks/17624', 'en', 268), +(304, 'Hirven-hiihtäjät', 'Runeberg, Johan Ludvig', '2014-10-19', 9, 'https://www.gutenberg.org/ebooks/47154', 'fi', 8), +(305, 'A Lover\'s Diary, Volume 2.', 'Parker, Gilbert', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/6273', 'en', 269), +(306, 'Seeing France with Uncle John', 'Warner, Anne', '2011-03-14', 6, 'https://www.gutenberg.org/ebooks/35574', 'en', 270), +(307, 'Der lebende Leichnam: Drama in sechs Akten (zwölf Bildern)', 'Tolstoy, Leo, graf', '2014-06-23', 15, 'https://www.gutenberg.org/ebooks/46086', 'de', 271), +(308, 'More About the Squirrels', 'Tyrrell, Eleanor', '2016-01-25', 23, 'https://www.gutenberg.org/ebooks/51031', 'en', 272), +(309, 'Cloudy Jewel', 'Hill, Grace Livingston', '2009-09-17', 74, 'https://www.gutenberg.org/ebooks/30006', 'en', 273), +(310, 'Blackwood\'s Edinburgh Magazine, Volume 66, No. 407, September, 1849', 'Various', '2015-01-13', 13, 'https://www.gutenberg.org/ebooks/47968', 'en', 274), +(311, 'Influence morale des sports athlétiques\r\nDiscours Prononcé au Congrès Olympique du Havre, Le 29 Juillet 1897.', 'Didon, père (Henri)', '2004-08-25', 7, 'https://www.gutenberg.org/ebooks/13284', 'fr', 275), +(312, 'Antigone', 'Sophocles', '2017-04-12', 93, 'https://www.gutenberg.org/ebooks/54543', 'fi', 276), +(313, 'Representative British Orations Volume 3 (of 4)\r\nWith Introductions and Explanatory Notes', NULL, '2017-09-06', 5, 'https://www.gutenberg.org/ebooks/55491', 'en', 277), +(314, 'Bref récit et succincte narration de la navigation faite en MDXXXV et MDXXXVI par le capitaine Jacques Cartier aux îles de Canada, Hochelaga, Saguenay et autres', 'Cartier, Jacques', '2004-05-01', 75, 'https://www.gutenberg.org/ebooks/12356', 'fr', 278), +(315, 'Creative Evolution', 'Bergson, Henri', '2008-08-01', 193, 'https://www.gutenberg.org/ebooks/26163', 'en', 279), +(316, 'Letters from High Latitudes\r\nBeing Some Account of a Voyage in 1856 of the Schooner Yacht \"Foam\" to Iceland, Jan Meyen, and Spitzbergen', 'Dufferin and Ava, Frederick Temple Blackwood, Marquis of', '2003-02-01', 17, 'https://www.gutenberg.org/ebooks/3701', 'en', 280), +(317, 'Old-Fashioned Ethics and Common-Sense Metaphysics\nWith Some of Their Applications', 'Thornton, William Thomas', '2009-09-06', 15, 'https://www.gutenberg.org/ebooks/29917', 'en', 281), +(318, 'Gold Elsie', 'Marlitt, E. (Eugenie)', '2013-03-28', 21, 'https://www.gutenberg.org/ebooks/42426', 'en', 282), +(319, 'The Moralist', 'Taylor, Jack', '2010-06-09', 23, 'https://www.gutenberg.org/ebooks/32751', 'en', 179), +(320, 'Im schwarzen Walfisch zu Askalon: Rastlieder', 'Scheffel, Joseph Victor von', '2017-12-20', 10, 'https://www.gutenberg.org/ebooks/56214', 'de', 283), +(321, 'Personal Memoir of Daniel Drayton, For Four Years and Four Months a Prisoner (For Charity\'s Sake) in Washington Jail\r\nIncluding A Narrative Of The Voyage And Capture Of The Schooner Pearl', 'Drayton, Daniel', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10401', 'en', 284), +(322, 'Reminiscences of the Military Life and Sufferings of Col. Timothy Bigelow, Commander of the Fifteenth Regiment of the Massachusetts Line in the Continental Army, during the War of the Revolution', 'Hersey, Charles', '2008-02-18', 18, 'https://www.gutenberg.org/ebooks/24634', 'en', 285), +(323, 'Magnhild; Dust', 'Bjørnson, Bjørnstjerne', '2010-09-09', 13, 'https://www.gutenberg.org/ebooks/33683', 'en', 286), +(324, 'Martin Eden', 'London, Jack', '1997-09-01', 476, 'https://www.gutenberg.org/ebooks/1056', 'en', 287), +(325, 'Britain in the Middle Ages: A History for Beginners', 'Bowman, Florence L.', '2012-07-29', 12, 'https://www.gutenberg.org/ebooks/40371', 'en', 288), +(326, 'The Sot-weed Factor: or, A Voyage to Maryland. A Satyr.\r\nIn which is Describ\'d The Laws, Government, Courts and Constitutions of the Country, and also the Buildings, Feasts, Frolicks, Entertainments and Drunken Humours of the Inhabitants of that Part of America. In Burlesque Verse.', 'Cooke, Ebenezer', '2007-05-07', 35, 'https://www.gutenberg.org/ebooks/21346', 'en', 289), +(327, 'Pictures of Jewish Home-Life Fifty Years Ago', 'Trager, Hannah', '2005-02-25', 15, 'https://www.gutenberg.org/ebooks/15173', 'en', 290), +(328, 'Two Wars: An Autobiography of General Samuel G. French\r\nMexican War; War between the States, a Diary; Reconstruction Period, His Experience; Incidents, Reminiscences, etc.', 'French, Samuel Gibbs', '2014-05-07', 25, 'https://www.gutenberg.org/ebooks/45603', 'en', 291), +(329, 'Familiar Letters on Chemistry, and Its Relation to Commerce, Physiology, and Agriculture', 'Liebig, Justus, Freiherr von', '2003-10-01', 21, 'https://www.gutenberg.org/ebooks/4524', 'en', 292), +(330, 'The Moors in Spain', 'Lane-Poole, Stanley', '2011-08-27', 114, 'https://www.gutenberg.org/ebooks/37223', 'en', 293), +(331, 'Merry Tales', 'Skinner, Eleanor L. (Eleanor Louise)', '2016-12-18', 12, 'https://www.gutenberg.org/ebooks/53766', 'en', 294); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(332, 'A Handbook of Health', 'Hutchinson, Woods', '2007-01-05', 50, 'https://www.gutenberg.org/ebooks/20294', 'en', 295), +(333, 'The Stock-Feeder\'s Manual\r\nthe chemistry of food in relation to the breeding and feeding of live stock', 'Cameron, Charles Alexander, Sir', '2008-05-19', 91, 'https://www.gutenberg.org/ebooks/25520', 'en', 296), +(334, 'The Eyes of the World', 'Wright, Harold Bell', '2004-03-01', 96, 'https://www.gutenberg.org/ebooks/11715', 'en', 297), +(335, 'Les Femmes de proie. Mademoiselle Cachemire', 'Claretie, Jules', '2012-10-14', 13, 'https://www.gutenberg.org/ebooks/41065', 'fr', 298), +(336, 'Accidental Flight', 'Wallace, F. L. (Floyd L.)', '2010-05-30', 44, 'https://www.gutenberg.org/ebooks/32597', 'en', 26), +(337, 'Salammbo', 'Flaubert, Gustave', '2006-02-11', 151, 'https://www.gutenberg.org/ebooks/1290', 'en', 299), +(338, 'Our Town', 'Bixby, Jerome', '2019-02-27', 31, 'https://www.gutenberg.org/ebooks/58974', 'en', 179), +(339, 'Naval Warfare', 'Thursfield, James R. (James Richard)', '2010-08-16', 35, 'https://www.gutenberg.org/ebooks/33445', 'en', 300), +(340, 'The Clue of the Gold Coin', 'Wells, Helen', '2018-05-06', 29, 'https://www.gutenberg.org/ebooks/57100', 'en', 301), +(341, 'The Preface to the Aeneis of Virgil (1718)', 'Trapp, Joseph', '2011-05-17', 16, 'https://www.gutenberg.org/ebooks/36137', 'en', 302), +(342, 'The Terms of Surrender', 'Tracy, Louis', '2013-01-17', 36, 'https://www.gutenberg.org/ebooks/41859', 'en', 61), +(343, 'The Romance of Tristan and Iseult', 'Bédier, Joseph', '2007-04-26', 22, 'https://www.gutenberg.org/ebooks/21180', 'en', 303), +(344, 'Delacroix', 'Konody, Paul G. (Paul George)', '2012-06-07', 16, 'https://www.gutenberg.org/ebooks/39943', 'en', 304), +(345, 'Captain Cuellar\'s Adventures in Connaught & Ulster A.D. 1588.\r\nTo Which Is Added an Introduction and Complete Translation of Captain Cuellar\'s Narrative of the Spanish Armada and His Adventures in Ireland', 'Cuellar, Francisco de, active 16th century', '2016-07-01', 6, 'https://www.gutenberg.org/ebooks/52472', 'en', 305), +(346, 'Heräämiseni', 'Järnefelt, Arvid', '2004-12-06', 37, 'https://www.gutenberg.org/ebooks/14267', 'fi', 306), +(347, 'Darstellende Geometrie des Geländes\nund verwandte Anwendungen der Methode der kotierten Projektionen', 'Rothe, Rudolf', '2018-10-21', 19, 'https://www.gutenberg.org/ebooks/58148', 'de', 307), +(348, 'The Cruise of the \'Alerte\'\nThe narrative of a search for treasure on the desert island of Trinidad', 'Knight, E. F. (Edward Frederick)', '2012-02-15', 17, 'https://www.gutenberg.org/ebooks/38891', 'en', 308), +(349, 'We Ten\nOr, The Story of the Roses', 'Yechton, Barbara', '2006-12-07', 26, 'https://www.gutenberg.org/ebooks/20052', 'en', 309), +(350, 'The Story of \"Mormonism\" and The Philosophy of \"Mormonism\"', 'Talmage, James E. (James Edward)', '2004-05-01', 31, 'https://www.gutenberg.org/ebooks/5630', 'en', 310), +(351, 'Points of Humour, Part 1 (of 2)', NULL, '2013-12-26', 18, 'https://www.gutenberg.org/ebooks/44517', 'en', 311), +(352, 'Maximilian, Prince of Wied\'s, Travels in the Interior of North America, 1832-1834, part 2', 'Wied, Maximilian, Prinz von', '2014-11-18', 16, 'https://www.gutenberg.org/ebooks/47392', 'en', 312), +(353, 'Petticoat Rule', 'Orczy, Emmuska Orczy, Baroness', '2010-12-15', 33, 'https://www.gutenberg.org/ebooks/34660', 'en', 313), +(354, 'The Castle of Ehrenstein\nIts Lords Spiritual and Temporal; Its Inhabitants Earthly and Unearthly', 'James, G. P. R. (George Payne Rainsford)', '2015-10-27', 19, 'https://www.gutenberg.org/ebooks/50325', 'en', 282), +(355, 'The Portent and Other Stories', 'MacDonald, George', '2005-09-01', 74, 'https://www.gutenberg.org/ebooks/8913', 'en', 314), +(356, 'The Ridin\' Kid from Powder River', 'Knibbs, Henry Herbert', '2005-08-14', 23, 'https://www.gutenberg.org/ebooks/16530', 'en', 315), +(357, 'A Summer Evening\'s Dream\n1898', 'Bellamy, Edward', '2007-09-21', 22, 'https://www.gutenberg.org/ebooks/22705', 'en', 179), +(358, 'The Guide to Reading — the Pocket University Volume XXIII', NULL, '2004-12-01', 37, 'https://www.gutenberg.org/ebooks/7167', 'en', 316), +(359, 'Chains: A Play, in Four Acts', 'Baker, Elizabeth', '2014-07-10', 24, 'https://www.gutenberg.org/ebooks/46240', 'en', 317), +(360, 'Little Brothers of the Air', 'Miller, Olive Thorne', '2008-11-16', 15, 'https://www.gutenberg.org/ebooks/27277', 'en', 318), +(361, 'Balmoedertje', 'Overduijn-Heyligers, E.', '2017-05-25', 12, 'https://www.gutenberg.org/ebooks/54785', 'nl', 319), +(362, 'Knickerbocker\'s History of New York, Complete', 'Irving, Washington', '2004-07-29', 185, 'https://www.gutenberg.org/ebooks/13042', 'en', 320), +(363, 'The Prisoner of Zenda', 'Hope, Anthony', '2006-01-09', 492, 'https://www.gutenberg.org/ebooks/95', 'en', 321), +(364, 'Laokoon: Oder, Über die Grenzen der Malerei und Poesie', 'Lessing, Gotthold Ephraim', '2004-11-01', 54, 'https://www.gutenberg.org/ebooks/6889', 'de', 322), +(365, 'The Shoes of Fortune', 'Munro, Neil', '2013-09-15', 9, 'https://www.gutenberg.org/ebooks/43732', 'en', 323), +(366, 'The Mutiny of the Elsinore', 'London, Jack', '2000-12-01', 41, 'https://www.gutenberg.org/ebooks/2415', 'en', 324), +(367, 'Air Service Boys Over the Enemy\'s Lines; Or, The German Spy\'s Secret', 'Beach, Charles Amory', '2010-02-17', 22, 'https://www.gutenberg.org/ebooks/31312', 'en', 325), +(368, 'Doing Their Bit: War Work at Home', 'Cable, Boyd', '2015-06-14', 9, 'https://www.gutenberg.org/ebooks/49208', 'en', 326), +(369, 'The Adventures of Captain Horn', 'Stockton, Frank Richard', '2004-04-01', 64, 'https://www.gutenberg.org/ebooks/12190', 'en', 194), +(370, 'Pieter Maritz, der Buernsohn von Transvaal', 'Niemann, August', '2017-10-01', 6, 'https://www.gutenberg.org/ebooks/55657', 'de', 327), +(371, 'A Ballad of John Silver', 'Masefield, John', '2006-10-20', 1, 'https://www.gutenberg.org/ebooks/19578', 'en', 328), +(372, 'Kukkia Kantelettaren kaskilta', 'Forsman, Kaarlo', '2015-10-03', 12, 'https://www.gutenberg.org/ebooks/50117', 'fi', 329), +(373, 'The Diplomatic Correspondence of the American Revolution, Vol. 11', NULL, '2009-01-24', 10, 'https://www.gutenberg.org/ebooks/27879', 'en', 330), +(374, 'The Iron Arrow Head or The Buckler Maiden: A Tale of the Northman Invasion', 'Sue, Eugène', '2010-11-26', 18, 'https://www.gutenberg.org/ebooks/34452', 'en', 331), +(375, 'You Never Know Your Luck; being the story of a matrimonial deserter. Volume 3.', 'Parker, Gilbert', '2004-08-01', 32, 'https://www.gutenberg.org/ebooks/6287', 'en', 332), +(376, 'On the Laws of Japanese Painting: An Introduction to the Study of the Art of Japan', 'Bowie, Henry P.', '2011-03-16', 53, 'https://www.gutenberg.org/ebooks/35580', 'en', 333), +(377, 'Texas\r\nA Brief Account of the Origin, Progress and Present State of the Colonial Settlements of Texas; Together with an Exposition of the Causes which have induced the Existing War with Mexico', 'Wharton, William H. (William Harris)', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7355', 'en', 334), +(378, 'Suhteita: Harjoitelmia', 'Jotuni, Maria', '2014-06-22', 33, 'https://www.gutenberg.org/ebooks/46072', 'fi', 175), +(379, 'The New York Times Current History of the European War, Vol. 1, January 9, 1915\nWhat Americans Say to Europe', 'Various', '2005-09-16', 23, 'https://www.gutenberg.org/ebooks/16702', 'en', 335), +(380, 'Addie\'s Husband; or, Through clouds to sunshine', 'Gordon Smythies, Mrs.', '2015-08-28', 10, 'https://www.gutenberg.org/ebooks/49806', 'en', 336), +(381, 'Mr. Dooley in Peace and in War', 'Dunne, Finley Peter', '2007-09-07', 29, 'https://www.gutenberg.org/ebooks/22537', 'en', 40), +(382, 'Key-Notes of American Liberty\r\nComprising the most important speeches, proclamations, and acts of Congress, from the foundation of the government to the present time', 'Various', '2009-05-15', 11, 'https://www.gutenberg.org/ebooks/28831', 'en', 337), +(383, 'Graining and Marbling\r\nA Series of Practical Treatises on Material, Tools and Appliances Used; General Operations; Preparing Oil Graining Colors; Mixing; Rubbing; Applying Distemper Colors; Wiping Out; Penciling; The Use of Crayons; Review of Woods; The Graining of Oak, Ash, Cherry, Satinwood, Mahogany, Maple, Bird\'s Eye Maple, Sycamore, Walnut, Etc.; Marbling in All Shades.', 'Maire, F. (Frederick)', '2013-08-18', 14, 'https://www.gutenberg.org/ebooks/43500', 'en', 338), +(384, 'On the Method of Zadig\r\nEssay #1 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 14, 'https://www.gutenberg.org/ebooks/2627', 'en', 339), +(385, 'Project Gutenberg (1971-2008)', 'Lebert, Marie', '2008-10-26', 26, 'https://www.gutenberg.org/ebooks/27045', 'en', 340), +(386, 'Punch, Or The London Charivari, Volume 101, July 11, 1891', 'Various', '2004-08-24', 12, 'https://www.gutenberg.org/ebooks/13270', 'en', 134), +(387, 'The Recitation', 'Betts, George Herbert', '2006-06-26', 7, 'https://www.gutenberg.org/ebooks/18698', 'en', 341), +(388, 'The Peoples of India', 'Anderson, J. D. (James Drummond)', '2017-08-31', 21, 'https://www.gutenberg.org/ebooks/55465', 'en', 342), +(389, 'The Nursery Rhyme Book', NULL, '2008-08-06', 51, 'https://www.gutenberg.org/ebooks/26197', 'en', 343), +(390, 'Hoe men schilder wordt', 'Conscience, Hendrik', '2010-01-29', 6, 'https://www.gutenberg.org/ebooks/31120', 'nl', 344), +(391, 'L\'evoluzione di Giosuè Carducci', 'Panzini, Alfredo', '2012-11-01', 4, 'https://www.gutenberg.org/ebooks/41257', 'it', 345), +(392, 'The Great Events by Famous Historians, Volume 03', NULL, '2008-06-06', 68, 'https://www.gutenberg.org/ebooks/25712', 'en', 346), +(393, 'The World\'s Greatest Books — Volume 07 — Fiction', NULL, '2004-03-01', 115, 'https://www.gutenberg.org/ebooks/11527', 'en', 61), +(394, 'Ants Raudjalg: Virolainen kertomus', 'Kallas, Aino Krohn', '2018-06-15', 11, 'https://www.gutenberg.org/ebooks/57332', 'fi', 175), +(395, 'Soldier Songs and Love Songs', 'Laidlaw, A. H. (Alexander Hamilton)', '2005-02-02', 16, 'https://www.gutenberg.org/ebooks/14869', 'en', 8), +(396, 'The Sources of Religious Insight', 'Royce, Josiah', '2010-09-09', 21, 'https://www.gutenberg.org/ebooks/33677', 'en', 347), +(397, 'Rutledge', 'Harris, Miriam Coles', '2012-08-01', 32, 'https://www.gutenberg.org/ebooks/40385', 'en', 348), +(398, 'A General\'s Letters to His Son on Minor Tactics', 'Anonymous', '2016-07-25', 7, 'https://www.gutenberg.org/ebooks/52640', 'en', 349), +(399, 'The Children of the King: A Tale of Southern Italy', 'Crawford, F. Marion (Francis Marion)', '2005-02-26', 14, 'https://www.gutenberg.org/ebooks/15187', 'en', 16), +(400, 'A Day with Walt Whitman', 'Byron, May', '2011-06-03', 11, 'https://www.gutenberg.org/ebooks/36305', 'en', 350), +(401, '1811 Dictionary of the Vulgar Tongue', 'Grose, Francis', '2004-04-01', 921, 'https://www.gutenberg.org/ebooks/5402', 'en', 351), +(402, 'Appletons\' Popular Science Monthly, November 1899\nVolume LVI, No. 1', 'Various', '2014-01-22', 5, 'https://www.gutenberg.org/ebooks/44725', 'en', 352), +(403, 'Food Guide for War Service at Home\r\nPrepared under the direction of the United States Food Administration in co-operation with the United States Department of Agriculture and the Bureau of Education, with a preface by Herbert Hoover', 'Powdermaker, Florence', '2004-11-15', 35, 'https://www.gutenberg.org/ebooks/14055', 'en', 353), +(404, 'Philosophical Works, v. 2 (of 4)\r\nIncluding All the Essays, and Exhibiting the More Important Alterations and Corrections in the Successive Editions Published by the Author', 'Hume, David', '2016-12-22', 31, 'https://www.gutenberg.org/ebooks/53792', 'en', 354), +(405, 'Daybreak: A Story for Girls', 'Sitwell, Florence Alice', '2007-01-03', 17, 'https://www.gutenberg.org/ebooks/20260', 'en', 355), +(406, 'Paul Clifford — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 21, 'https://www.gutenberg.org/ebooks/7731', 'en', 356), +(407, 'Birds\' Nests, Eggs and Egg-Collecting', 'Kearton, Richard', '2014-07-26', 7, 'https://www.gutenberg.org/ebooks/46416', 'en', 357), +(408, 'The Workingman\'s Paradise: An Australian Labour Novel', 'Miller, John', '2005-07-27', 19, 'https://www.gutenberg.org/ebooks/16366', 'en', 287), +(409, 'Pagan and Christian Rome', 'Lanciani, Rodolfo Amedeo', '2007-07-26', 85, 'https://www.gutenberg.org/ebooks/22153', 'en', 358), +(410, 'Present at a Hanging and Other Ghost Stories', 'Bierce, Ambrose', '2007-10-01', 18, 'https://www.gutenberg.org/ebooks/23081', 'en', 359), +(411, 'Minnewaska Mountain Houses', 'Anonymous', '2013-10-15', 7, 'https://www.gutenberg.org/ebooks/43958', 'en', 360), +(412, 'Don Quichot van La Mancha', 'Cervantes Saavedra, Miguel de', '2009-04-01', 72, 'https://www.gutenberg.org/ebooks/28469', 'nl', 361), +(413, 'Correspondence and Report from His Majesty\'s Consul at Boma Respecting the Administration of the Independent State of the Congo [and Further Correspondence]', 'Casement, Roger', '2015-11-29', 14, 'https://www.gutenberg.org/ebooks/50573', 'en', 362), +(414, 'The Story of Malta', 'Ballou, Maturin M. (Maturin Murray)', '2010-10-05', 20, 'https://www.gutenberg.org/ebooks/34036', 'en', 363), +(415, 'In a Toy Shop: A Christmas Play for Small Children', 'Preston, Effa E. (Effa Estelle)', '2017-06-28', 9, 'https://www.gutenberg.org/ebooks/55001', 'en', 364), +(416, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 01', 'Dante Alighieri', '2004-08-06', 75, 'https://www.gutenberg.org/ebooks/8779', 'en', 365), +(417, 'A Belated Guest (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 21, 'https://www.gutenberg.org/ebooks/3391', 'en', 366), +(418, 'La invasión o El loco Yégof', 'Erckmann-Chatrian', '2010-03-07', 54, 'https://www.gutenberg.org/ebooks/31544', 'es', 367), +(419, 'Die schwarzen Brüder: Eine abentheuerliche Geschichte. 2/3', 'Zschokke, Heinrich', '2013-07-09', 2, 'https://www.gutenberg.org/ebooks/43164', 'de', 61), +(420, 'The Merchant of Venice', 'Shakespeare, William', '2000-07-01', 251, 'https://www.gutenberg.org/ebooks/2243', 'en', 368), +(421, 'Fire Mountain\nA Thrilling Sea Story', 'Springer, Norman', '2009-11-17', 77, 'https://www.gutenberg.org/ebooks/30496', 'en', 324), +(422, 'Punch or the London Charivari, October 10, 1920', 'Various', '2008-12-05', 11, 'https://www.gutenberg.org/ebooks/27421', 'en', 134), +(423, 'Studies in the Psychology of Sex, Volume 5\r\nErotic Symbolism; The Mechanism of Detumescence; The Psychic State in Pregnancy', 'Ellis, Havelock', '2004-10-08', 154, 'https://www.gutenberg.org/ebooks/13614', 'en', 369), +(424, 'Old Indian Legends', 'Zitkala-Sa', '2008-07-05', 132, 'https://www.gutenberg.org/ebooks/338', 'en', 370), +(425, 'Exploration of the Valley of the Amazon, Part 1 (of 2)', 'Herndon, William Lewis', '2018-08-24', 23, 'https://www.gutenberg.org/ebooks/57756', 'en', 371), +(426, 'Punchinello, Volume 2, No. 31, October 29, 1870', 'Various', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10091', 'en', 372), +(427, 'The Fun of Cooking: A Story for Girls and Boys', 'Benton, Caroline French', '2010-07-21', 15, 'https://www.gutenberg.org/ebooks/33213', 'en', 373), +(428, 'A Christian Directory, Part 1: Christian Ethics', 'Baxter, Richard', '2012-12-15', 69, 'https://www.gutenberg.org/ebooks/41633', 'en', 121), +(429, 'Courage, True Hearts: Sailing in Search of Fortune', 'Stables, Gordon', '2012-05-18', 61, 'https://www.gutenberg.org/ebooks/39729', 'en', 374), +(430, '三俠五義', 'Shi, Yukun, active 19th century', '2008-05-07', 34, 'https://www.gutenberg.org/ebooks/25376', 'zh', 375), +(431, 'Mary Marie', 'Porter, Eleanor H. (Eleanor Hodgman)', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/11143', 'en', 376), +(432, 'The Lectures on Faith', 'Smith, Joseph, Jr.', '2018-03-05', 21, 'https://www.gutenberg.org/ebooks/56684', 'en', 377), +(433, 'The Outdoor Girls at Wild Rose Lodge; Or, The Hermit of Moonlight Falls', 'Hope, Laura Lee', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/4988', 'en', 62), +(434, 'The Whole Family: a Novel by Twelve Authors', 'Jordan, Elizabeth Garver', '2004-02-01', 53, 'https://www.gutenberg.org/ebooks/5066', 'en', 378), +(435, 'Minimum Gauge Railways', 'Heywood, Arthur Percival, Sir, bart.', '2013-12-03', 20, 'https://www.gutenberg.org/ebooks/44341', 'en', 379), +(436, 'International Miscellany of Literature, Art and Science, Vol. 1,\nNo. 3, Oct. 1, 1850', 'Various', '2004-12-23', 8, 'https://www.gutenberg.org/ebooks/14431', 'en', 380), +(437, 'Christmas Poetry and Hymn Collection', 'Various', '2007-01-20', 1, 'https://www.gutenberg.org/ebooks/20604', 'en', 381), +(438, 'Amerikasta palatessa: Pilanäytelmä 1:ssä näytöksessä', 'Selja, Aapo', '2016-06-02', 11, 'https://www.gutenberg.org/ebooks/52224', 'fi', 382), +(439, 'What Was the Religion of Shakespeare?', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-04-01', 9, 'https://www.gutenberg.org/ebooks/45293', 'en', 383), +(440, 'Charles Edward Putney: An Appreciation', 'Charles E. Putney Memorial Association', '2011-07-17', 10, 'https://www.gutenberg.org/ebooks/36761', 'en', 384), +(441, 'The Carlovingian Coins; Or, The Daughters of Charlemagne\r\nA Tale of the Ninth Century', 'Sue, Eugène', '2010-06-29', 15, 'https://www.gutenberg.org/ebooks/33021', 'en', 385), +(442, 'Hall Caine, the Man and the Novelist', 'Kenyon, C. Fred (Charles Frederick)', '2018-07-21', 11, 'https://www.gutenberg.org/ebooks/57564', 'en', 386), +(443, 'En Route', 'Huysmans, J.-K. (Joris-Karl)', '2007-12-31', 47, 'https://www.gutenberg.org/ebooks/24096', 'en', 298), +(444, 'A Voyage with Captain Dynamite', 'Rich, Charles Edward', '2008-04-23', 34, 'https://www.gutenberg.org/ebooks/25144', 'en', 153), +(445, 'The Moorland Cottage', 'Gaskell, Elizabeth Cleghorn', '2004-02-01', 106, 'https://www.gutenberg.org/ebooks/11371', 'en', 45), +(446, 'Harper\'s New Monthly Magazine, Vol. II, No. X., March 1851', 'Various', '2012-11-18', 20, 'https://www.gutenberg.org/ebooks/41401', 'en', 387), +(447, 'Chambers\'s Edinburgh Journal, No. 420\r\nVolume 17, New Series, January 17, 1852', 'Various', '2005-01-05', 8, 'https://www.gutenberg.org/ebooks/14603', 'en', 18), +(448, 'Sunshine Factory', 'Pansy', '2007-01-24', 21, 'https://www.gutenberg.org/ebooks/20436', 'en', 388), +(449, 'The Tangled Skein', 'Orczy, Emmuska Orczy, Baroness', '2011-09-20', 46, 'https://www.gutenberg.org/ebooks/37481', 'en', 98), +(450, 'Four Little Blossoms on Apple Tree Island', 'Hawley, Mabel C.', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/5254', 'en', 389), +(451, 'Filosofía Americana: Ensayos', 'Molina, Enrique', '2013-11-13', 10, 'https://www.gutenberg.org/ebooks/44173', 'es', 390), +(452, 'Flip\'s \"Islands of Providence\"', 'Johnston, Annie F. (Annie Fellows)', '2008-07-06', 18, 'https://www.gutenberg.org/ebooks/25978', 'en', 262), +(453, 'Education in England in the Middle Ages\nThesis Approved for the Degree of Doctor of Science in the University of London', 'Parry, Albert William', '2011-06-28', 21, 'https://www.gutenberg.org/ebooks/36553', 'en', 391), +(454, 'Life of Chopin', 'Liszt, Franz', '2003-08-01', 166, 'https://www.gutenberg.org/ebooks/4386', 'en', 392), +(455, 'Ein Tag; Ivar Bye: Zwei Erzählungen', 'Bjørnson, Bjørnstjerne', '2016-05-07', 8, 'https://www.gutenberg.org/ebooks/52016', 'de', 393), +(456, 'The Brownie Scouts in the Cherry Festival', 'Wirt, Mildred A. (Mildred Augustine)', '2016-04-08', 12, 'https://www.gutenberg.org/ebooks/51693', 'en', 394), +(457, 'The American Missionary — Volume 43, No. 09, September, 1889', 'Various', '2005-06-30', 6, 'https://www.gutenberg.org/ebooks/16154', 'en', 395), +(458, 'Päiväkirja', 'Löfving, Stefan', '2007-08-20', 18, 'https://www.gutenberg.org/ebooks/22361', 'fi', 396), +(459, 'Poppa Needs Shorts', 'Richmond, Leigh', '2009-08-25', 56, 'https://www.gutenberg.org/ebooks/29789', 'en', 397), +(460, 'L\'avaleur de sabres\nLes Habits Noirs Tome VI', 'Féval, Paul', '2006-11-26', 17, 'https://www.gutenberg.org/ebooks/19920', 'fr', 61), +(461, 'Mozart auf der Reise nach Prag', 'Mörike, Eduard', '2005-02-01', 33, 'https://www.gutenberg.org/ebooks/7503', 'de', 398), +(462, 'Dalmatinische Reise', 'Bahr, Hermann', '2014-08-19', 21, 'https://www.gutenberg.org/ebooks/46624', 'de', 399), +(463, 'La petite Fadette', 'Sand, George', '2010-11-03', 43, 'https://www.gutenberg.org/ebooks/34204', 'fr', 400), +(464, 'The Village Watch-Tower', 'Wiggin, Kate Douglas Smith', '1997-06-01', 25, 'https://www.gutenberg.org/ebooks/936', 'en', 179), +(465, 'The Vicissitudes of Bessie Fairfax', 'Lee, Holme', '2005-11-17', 26, 'https://www.gutenberg.org/ebooks/17086', 'en', 401), +(466, 'Parittomat: Huvinäytelmä yhdessä näytöksessä', 'Ramstedt, Maria', '2015-12-21', 4, 'https://www.gutenberg.org/ebooks/50741', 'fi', 402), +(467, 'The Bad Man: A Novel', 'Towne, Charles Hanson', '2005-10-30', 19, 'https://www.gutenberg.org/ebooks/16968', 'en', 61), +(468, 'Si Klegg, Book 6\r\nSi and Shorty, with Their Boy Recruits, Enter on the Atlanta Campaign', 'McElroy, John', '2010-03-25', 15, 'https://www.gutenberg.org/ebooks/31776', 'en', 403), +(469, 'Love Among the Ruins', 'Deeping, Warwick', '2013-03-09', 41, 'https://www.gutenberg.org/ebooks/42284', 'en', 404), +(470, 'Causes amusantes et connues', NULL, '2017-07-31', 11, 'https://www.gutenberg.org/ebooks/55233', 'fr', 405), +(471, 'Reels and Spindles: A Story of Mill Life', 'Raymond, Evelyn', '2008-12-25', 12, 'https://www.gutenberg.org/ebooks/27613', 'en', 406), +(472, 'Notes and Queries, Number 44, August 31, 1850', 'Various', '2004-09-10', 18, 'https://www.gutenberg.org/ebooks/13426', 'en', 105), +(473, 'La piccola fonte: Dramma in quattro atti', 'Bracco, Roberto', '2013-07-30', 4, 'https://www.gutenberg.org/ebooks/43356', 'it', 407), +(474, 'The Dream', 'Zola, Émile', '2006-04-27', 46, 'https://www.gutenberg.org/ebooks/9499', 'en', 408), +(475, 'Stories by English Authors: Germany (Selected by Scribners)', NULL, '2006-03-26', 61, 'https://www.gutenberg.org/ebooks/2071', 'en', 409), +(476, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 12 (de 12)', 'Castelo Branco, Camilo', '2009-02-27', 15, 'https://www.gutenberg.org/ebooks/28207', 'pt', 410), +(477, 'Discours de la méthode', 'Descartes, René', '2004-10-25', 210, 'https://www.gutenberg.org/ebooks/13846', 'fr', 411), +(478, 'The Breaking of the Storm, Vol. II.', 'Spielhagen, Friedrich', '2010-12-15', 5, 'https://www.gutenberg.org/ebooks/34658', 'en', 61), +(479, 'Sydney Smith', 'Russell, George William Erskine', '2004-07-22', 10, 'https://www.gutenberg.org/ebooks/12994', 'en', 412), +(480, 'Fra Mindebo: Jyske Folkeæventyr', 'Kristensen, Evald Tang', '2014-07-14', 13, 'https://www.gutenberg.org/ebooks/46278', 'da', 413), +(481, 'American Men of Action', 'Stevenson, Burton Egbert', '2005-08-10', 31, 'https://www.gutenberg.org/ebooks/16508', 'en', 414), +(482, 'Rewards and Fairies', 'Kipling, Rudyard', '1996-06-01', 183, 'https://www.gutenberg.org/ebooks/556', 'en', 31), +(483, 'Star Surgeon', 'Nourse, Alan Edward', '2006-06-02', 95, 'https://www.gutenberg.org/ebooks/18492', 'en', 26), +(484, 'La Tosca: Drame en cinq actes', 'Sardou, Victorien', '2006-10-14', 28, 'https://www.gutenberg.org/ebooks/19540', 'fr', 415), +(485, 'The Eskdale Herd-boy\nA Scottish Tale for the Instruction and Amusement of Young People', 'Blackford, Mrs. (Martha)', '2005-04-01', 8, 'https://www.gutenberg.org/ebooks/7963', 'en', 416), +(486, 'The Possessed (The Devils)', 'Dostoyevsky, Fyodor', '2005-05-01', 766, 'https://www.gutenberg.org/ebooks/8117', 'en', 417), +(487, 'Millbank Penitentiary: An Experiment in Reformation', 'Griffiths, Arthur', '2015-06-18', 15, 'https://www.gutenberg.org/ebooks/49230', 'en', 418), +(488, 'Kemps Nine Daies Wonder: Performed in a Daunce from London to Norwich', 'Kemp, William, active 1600', '2007-07-02', 30, 'https://www.gutenberg.org/ebooks/21984', 'en', 419), +(489, 'Bannlyst', 'Lagerlöf, Selma', '2012-03-14', 25, 'https://www.gutenberg.org/ebooks/39147', 'sv', 420), +(490, 'Vandiemenin maa', 'Rowcroft, Charles', '2008-05-19', 2, 'https://www.gutenberg.org/ebooks/25518', 'fi', 421), +(491, 'Zaubermärchen', 'Ehrenstein, Albert', '2011-08-01', 9, 'https://www.gutenberg.org/ebooks/36933', 'de', 422), +(492, 'Ramshackle House', 'Footner, Hulbert', '2018-05-12', 36, 'https://www.gutenberg.org/ebooks/57138', 'en', 128), +(493, 'Heretics And Heresies\nFrom \'The Gods and Other Lectures\'', 'Ingersoll, Robert Green', '2011-11-22', 16, 'https://www.gutenberg.org/ebooks/38095', 'en', 423), +(494, 'Ten From Infinity', 'Fairman, Paul W.', '2007-03-20', 32, 'https://www.gutenberg.org/ebooks/20856', 'en', 424), +(495, 'The Red Rugs of Tarsus: A Woman\'s Record of the Armenian Massacre of 1909', 'Gibbons, Helen Davenport', '2013-01-17', 92, 'https://www.gutenberg.org/ebooks/41861', 'en', 425), +(496, 'The Doom of London', 'White, Fred M. (Fred Merrick)', '2018-09-14', 35, 'https://www.gutenberg.org/ebooks/57904', 'en', 26), +(497, 'Trial of the Witnesses of the Resurrection of Jesus', 'Sherlock, Thomas', '2004-05-01', 34, 'https://www.gutenberg.org/ebooks/5608', 'en', 426), +(498, 'L\'Illustration, No. 3738, 24 October 1914', 'Various', '2018-10-26', 33, 'https://www.gutenberg.org/ebooks/58170', 'fr', 150), +(499, 'The Shield of Love', 'Farjeon, B. L. (Benjamin Leopold)', '2016-11-25', 6, 'https://www.gutenberg.org/ebooks/53598', 'en', 137), +(500, 'Read-Aloud Plays', 'Holley, Horace', '2005-06-04', 4, 'https://www.gutenberg.org/ebooks/15983', 'en', 427), +(501, 'Christmas-Tree Land', 'Molesworth, Mrs.', '2012-04-04', 111, 'https://www.gutenberg.org/ebooks/39375', 'en', 323), +(502, 'Uncle Silas: A Tale of Bartram-Haugh', 'Le Fanu, Joseph Sheridan', '2005-01-31', 141, 'https://www.gutenberg.org/ebooks/14851', 'en', 428), +(503, 'A Biography of Henry Clay, the Senator from Kentucky\r\nContaining Also, a Complete Report of All His Speeches; Selections From His Private Correspondence; Eulogies in the Senate and House; and a Poem, by George D. Prentice, Esq.', NULL, '2019-04-17', 11, 'https://www.gutenberg.org/ebooks/59290', 'en', 429), +(504, 'Kauhun laakso 2: Salaseuralaiset', 'Doyle, Arthur Conan', '2016-07-30', 5, 'https://www.gutenberg.org/ebooks/52678', 'fi', 430), +(505, 'Siebeneichen: Roman aus dem Alt-Meißner Land', 'Hildebrand, Gustav', '2018-11-24', 9, 'https://www.gutenberg.org/ebooks/58342', 'de', 98), +(506, 'Hunter\'s Marjory\nA Story for Girls', 'Clarke, Margaret Bruce', '2007-01-03', 18, 'https://www.gutenberg.org/ebooks/20258', 'en', 431), +(507, 'The Human Boy Again', 'Phillpotts, Eden', '2014-10-25', 11, 'https://www.gutenberg.org/ebooks/47198', 'en', 432), +(508, '\"Kukka kultain kuusistossa\": Komedia yhdessä näytöksessä', 'Rahkonen, Aleksanteri', '2009-01-19', 13, 'https://www.gutenberg.org/ebooks/27841', 'fi', 433), +(509, 'Elävänä haudattu: Tosi kertomus vuodelta 1857 (Ps. 85, 10)', 'Höcker, Oskar', '2009-02-09', 10, 'https://www.gutenberg.org/ebooks/28035', 'fi', 282), +(510, 'Eden: An Episode', 'Saltus, Edgar', '2010-04-08', 6, 'https://www.gutenberg.org/ebooks/31924', 'en', 434), +(511, 'The Copper Princess: A Story of Lake Superior Mines', 'Munroe, Kirk', '2008-10-22', 12, 'https://www.gutenberg.org/ebooks/26993', 'en', 435), +(512, 'Hans Brinker; Or, The Silver Skates', 'Dodge, Mary Mapes', '1996-12-01', 308, 'https://www.gutenberg.org/ebooks/764', 'en', 436), +(513, 'McKinlay\'s Journal of Exploration in the Interior of Australia', 'McKinlay, John', '2004-08-22', 17, 'https://www.gutenberg.org/ebooks/13248', 'en', 437), +(514, 'Historic Girlhoods, Part One', 'Holland, Rupert Sargent', '2013-08-22', 21, 'https://www.gutenberg.org/ebooks/43538', 'en', 438), +(515, 'Plague Ship', 'Norton, Andre', '2009-05-01', 45, 'https://www.gutenberg.org/ebooks/28809', 'en', 439), +(516, 'Niamh', 'O\'Leary, Peter', '2016-01-13', 24, 'https://www.gutenberg.org/ebooks/50913', 'ga', 440), +(517, 'The Bible, Douay-Rheims, Book 25: Wisdom\nThe Challoner Revision', NULL, '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8325', 'en', 441), +(518, 'The Long Day: The Story of a New York Working Girl, as Told by Herself', 'Richardson, Dorothy', '2010-01-29', 39, 'https://www.gutenberg.org/ebooks/31118', 'en', 442), +(519, 'The Border Boys with the Texas Rangers', 'Goldfrap, John Henry', '2015-05-20', 27, 'https://www.gutenberg.org/ebooks/49002', 'en', 443), +(520, 'Denslow\'s Three Bears', 'Denslow, W. W. (William Wallace)', '2006-11-12', 30, 'https://www.gutenberg.org/ebooks/19772', 'en', 388), +(521, 'L\'Illustration, No. 1591, 23 Août 1873', 'Various', '2014-09-16', 6, 'https://www.gutenberg.org/ebooks/46876', 'fr', 150), +(522, 'Personal Memoirs of U. S. Grant, Part 3.', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5862', 'en', 444), +(523, 'Constitutional History of England, Henry VII to George II. Volume 1 of 3', 'Hallam, Henry', '2012-05-16', 11, 'https://www.gutenberg.org/ebooks/39711', 'en', 445), +(524, 'Esther', 'Adams, Henry', '2004-12-21', 32, 'https://www.gutenberg.org/ebooks/14409', 'en', 109), +(525, 'Small Talk at Wreyland. First Series', 'Torr, Cecil', '2019-01-19', 137, 'https://www.gutenberg.org/ebooks/58726', 'en', 446), +(526, 'A Compilation of the Messages and Papers of the Presidents. Volume 1, part 4: James Madison', NULL, '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/10895', 'en', 447), +(527, 'A History of Mourning', 'Davey, Richard', '2013-12-07', 15, 'https://www.gutenberg.org/ebooks/44379', 'en', 448), +(528, 'On the Edge of the War Zone\nFrom the Battle of the Marne to the Entrance of the Stars and Stripes', 'Aldrich, Mildred', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11947', 'en', 449), +(529, 'Daisy; or, The Fairy Spectacles', 'Guild, C. S. (Caroline Snowden)', '2011-07-17', 16, 'https://www.gutenberg.org/ebooks/36759', 'en', 450), +(530, 'Blueblood', 'Harmon, Jim', '2016-03-19', 26, 'https://www.gutenberg.org/ebooks/51499', 'en', 67), +(531, 'Shoulder-Straps: A Novel of New York and the Army, 1862', 'Morford, Henry', '2009-08-03', 29, 'https://www.gutenberg.org/ebooks/29583', 'en', 403), +(532, 'Travels in a Tree-top', 'Abbott, Charles C. (Charles Conrad)', '2017-10-24', 41, 'https://www.gutenberg.org/ebooks/55805', 'en', 318), +(533, '\"My Novel\" — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 18, 'https://www.gutenberg.org/ebooks/7709', 'en', 378), +(534, 'I Like Martian Music', 'Fritch, Charles E.', '2009-03-30', 22, 'https://www.gutenberg.org/ebooks/28451', 'en', 26), +(535, 'Les Forestiers du Michigan', 'Auriac, J. Berlioz d\' (Jules Berlioz)', '2013-10-15', 33, 'https://www.gutenberg.org/ebooks/43960', 'fr', 223), +(536, 'The Brass Bowl', 'Vance, Louis Joseph', '2005-08-01', 25, 'https://www.gutenberg.org/ebooks/8741', 'en', 61), +(537, 'Notes of a Private', 'Hubbard, John Milton', '2015-07-17', 7, 'https://www.gutenberg.org/ebooks/49466', 'en', 83), +(538, 'Punch, or the London Charivari, Vol. 158, April 14, 1920', 'Various', '2007-10-11', 15, 'https://www.gutenberg.org/ebooks/22957', 'en', 134), +(539, 'The Man Who Found Himself (Uncle Simon)', 'Stacpoole, Margaret Robson', '2017-07-03', 10, 'https://www.gutenberg.org/ebooks/55039', 'en', 451), +(540, 'Lyra Heroica: A Book of Verse for Boys', NULL, '2006-09-19', 20, 'https://www.gutenberg.org/ebooks/19316', 'en', 178), +(541, 'Barnavännen, 1905-04\nIllustrerad Veckotidning för de Små', 'Various', '2008-12-05', 12, 'https://www.gutenberg.org/ebooks/27419', 'sv', 452), +(542, 'United States Declaration of Independence', 'Jefferson, Thomas', '1995-07-01', 66, 'https://www.gutenberg.org/ebooks/300', 'en', 453), +(543, 'Voice from the Cave', 'Wirt, Mildred A. (Mildred Augustine)', '2011-01-03', 30, 'https://www.gutenberg.org/ebooks/34832', 'en', 454), +(544, 'The Fifth Ace', 'Ostrander, Isabel', '2007-12-17', 37, 'https://www.gutenberg.org/ebooks/23885', 'en', 128), +(545, 'American Notes', 'Dickens, Charles', '2006-01-01', 7, 'https://www.gutenberg.org/ebooks/9693', 'en', 455), +(546, 'Uni', 'Hytönen, Sulo M.', '2006-11-26', 11, 'https://www.gutenberg.org/ebooks/19918', 'fi', 456), +(547, 'An Essay on Professional Ethics\nSecond Edition', 'Sharswood, George', '2007-08-20', 22, 'https://www.gutenberg.org/ebooks/22359', 'en', 457), +(548, 'The Ranger; Or, The Fugitives of the Border', 'Ellis, Edward Sylvester', '2009-05-03', 27, 'https://www.gutenberg.org/ebooks/28663', 'en', 458), +(549, 'Personal Recollections of Joan of Arc — Volume 2', 'Twain, Mark', '2004-09-15', 97, 'https://www.gutenberg.org/ebooks/2875', 'en', 459), +(550, 'Die jenische Sprache', 'Wittich, Engelbert', '2015-12-28', 10, 'https://www.gutenberg.org/ebooks/50779', 'de', 460), +(551, 'La princesse de Monpensier', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '2006-08-26', 32, 'https://www.gutenberg.org/ebooks/19124', 'fr', 109), +(552, 'Pausanias, the Spartan; The Haunted and the Haunters\r\nAn Unfinished Historical Romance', 'Lytton, Edward Bulwer Lytton, Baron', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8573', 'en', 461), +(553, 'Goblin Market, The Prince\'s Progress, and Other Poems', 'Rossetti, Christina Georgina', '2005-10-26', 163, 'https://www.gutenberg.org/ebooks/16950', 'en', 54), +(554, 'Battle Honours of the British Army\nFrom Tangier, 1662, to the Commencement of the Reign of King Edward VII', 'Norman, Charles Boswell', '2015-08-08', 4, 'https://www.gutenberg.org/ebooks/49654', 'en', 462), +(555, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 09 (1820)', 'Various', '2015-04-24', 4, 'https://www.gutenberg.org/ebooks/48786', 'en', 57), +(556, 'Liber Amoris, Or, The New Pygmalion', 'Hazlitt, William', '2000-01-01', 29, 'https://www.gutenberg.org/ebooks/2049', 'en', 463), +(557, 'Consolations in Travel; or, the Last Days of a Philosopher', 'Davy, Humphry, Sir', '2006-02-28', 33, 'https://www.gutenberg.org/ebooks/17882', 'en', 464), +(558, 'The Art of War', 'Sunzi, active 6th century B.C.', '1994-05-01', 1913, 'https://www.gutenberg.org/ebooks/132', 'en', 465), +(559, 'The Complete Poems of Sir John Davies. Volume 1 of 2.', 'Davies, John, Sir', '2014-02-22', 29, 'https://www.gutenberg.org/ebooks/44977', 'en', 466), +(560, 'The Green God', 'Kummer, Frederic Arnold', '2010-06-29', 11, 'https://www.gutenberg.org/ebooks/33019', 'en', 61), +(561, 'De onderaardsche reis van Klaas Klim\nBehelzende eene nieuwe beschrijving van den aardkloot', 'Holberg, Ludvig', '2012-11-22', 11, 'https://www.gutenberg.org/ebooks/41439', 'nl', 467), +(562, 'The Life of Mohammad, the Prophet of Allah', 'Ben Ibrahim, Sliman', '2012-04-23', 83, 'https://www.gutenberg.org/ebooks/39523', 'en', 468), +(563, 'The Story of Majorca and Minorca', 'Markham, Clements R. (Clements Robert), Sir', '2016-08-16', 21, 'https://www.gutenberg.org/ebooks/52812', 'en', 469), +(564, 'Action Front', 'Cable, Boyd', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11349', 'en', 335), +(565, 'Chambers\'s Edinburgh Journal, No. 441\nVolume 17, New Series, June 12, 1852', 'Various', '2008-03-21', 5, 'https://www.gutenberg.org/ebooks/24892', 'en', 18), +(566, 'The Green Tent Mystery at Sugar Creek', 'Hutchens, Paul', '2018-12-22', 11, 'https://www.gutenberg.org/ebooks/58514', 'en', 470), +(567, 'An Atheist Manifesto', 'Lewis, Joseph', '2010-10-01', 48, 'https://www.gutenberg.org/ebooks/33825', 'en', 471), +(568, 'The Posthumous Works of Thomas De Quincey, Vol. 2', 'De Quincey, Thomas', '2008-06-30', 34, 'https://www.gutenberg.org/ebooks/25940', 'en', 472), +(569, 'The Rise of the Russian Empire', 'Saki', '2014-03-09', 76, 'https://www.gutenberg.org/ebooks/45099', 'en', 473), +(570, 'Il diavolo nell\'ampolla', 'Albertazzi, Adolfo', '2012-01-21', 166, 'https://www.gutenberg.org/ebooks/38637', 'it', 474), +(571, 'Her Weight in Gold', 'McCutcheon, George Barr', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/5896', 'en', 179), +(572, 'The Desert Home: The Adventures of a Lost Family in the Wilderness', 'Reid, Mayne', '2008-01-13', 41, 'https://www.gutenberg.org/ebooks/24268', 'en', 475), +(573, 'Scenes and Characters, or, Eighteen Months at Beechcroft', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4944', 'en', 378), +(574, 'Memoirs of the Distinguished Men of Science of Great Britain Living in the Years 1807-8', 'Walker, William', '2018-02-26', 25, 'https://www.gutenberg.org/ebooks/56648', 'en', 476), +(575, 'Paris under the Commune\r\nThe Seventy-Three Days of the Second Siege; with Numerous Illustrations, Sketches Taken on the Spot, and Portraits (from the Original Photographs)', 'Leighton, John', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10861', 'en', 477), +(576, 'Diary of Samuel Pepys — Volume 55: July 1667', 'Pepys, Samuel', '2004-12-01', 9, 'https://www.gutenberg.org/ebooks/4178', 'en', 478), +(577, 'Harper\'s Young People, September 12, 1882\nAn Illustrated Weekly', 'Various', '2019-05-25', 17, 'https://www.gutenberg.org/ebooks/59600', 'en', 479), +(578, 'Mayflower (Flor de mayo): A Tale of the Valencian Seashore', 'Blasco Ibáñez, Vicente', '2009-08-02', 81, 'https://www.gutenberg.org/ebooks/29577', 'en', 480), +(579, 'Storia della Guerra della Independenza degli Stati Uniti di America, vol. 1', 'Botta, Carlo', '2013-05-30', 35, 'https://www.gutenberg.org/ebooks/42846', 'it', 481), +(580, 'Wagner : The Story of the Boy Who Wrote Little Plays', 'Tapper, Thomas', '2011-01-31', 46, 'https://www.gutenberg.org/ebooks/35128', 'en', 482), +(581, 'Wasps, Social and Solitary', 'Peckham, E. G. (Elizabeth Gifford)', '2014-12-01', 18, 'https://www.gutenberg.org/ebooks/47508', 'en', 483), +(582, 'In Wildest Africa, Vol. 2', 'Schillings, C. G. (Carl Georg)', '2017-06-16', 8, 'https://www.gutenberg.org/ebooks/54923', 'en', 484), +(583, 'Caleb Wright: A Story of the West', 'Habberton, John', '2013-10-22', 19, 'https://www.gutenberg.org/ebooks/43994', 'en', 485), +(584, 'The Women of the Arabs', 'Jessup, Henry Harris', '2005-12-11', 27, 'https://www.gutenberg.org/ebooks/17278', 'en', 486), +(585, 'The House from Nowhere', 'Stangland, Arthur G.', '2010-03-10', 29, 'https://www.gutenberg.org/ebooks/31588', 'en', 179), +(586, 'Under Orders: The story of a young reporter', 'Munroe, Kirk', '2015-07-20', 16, 'https://www.gutenberg.org/ebooks/49492', 'en', 487), +(587, 'Garibaldi', 'Crispi, Francesco', '2011-04-18', 23, 'https://www.gutenberg.org/ebooks/35914', 'it', 488), +(588, 'How to Write a Play\r\nLetters from Augier, Banville, Dennery, Dumas, Gondinet, Labiche, Legouvé, Pailleron, Sardou and Zola', NULL, '2006-04-22', 27, 'https://www.gutenberg.org/ebooks/18230', 'en', 489), +(589, 'Birds and Nature Vol. 08, No. 3, October 1900\r\nIllustrated by Color Photography', 'Various', '2015-03-21', 5, 'https://www.gutenberg.org/ebooks/48540', 'en', 490), +(590, 'A Little Union Scout', 'Harris, Joel Chandler', '2007-12-15', 31, 'https://www.gutenberg.org/ebooks/23871', 'en', 491), +(591, 'Specimens with Memoirs of the Less-known British Poets, Volume 1', NULL, '2006-01-01', 23, 'https://www.gutenberg.org/ebooks/9667', 'en', 54), +(592, 'Her Own Way\nA Play in Four Acts', 'Fitch, Clyde', '2005-07-04', 19, 'https://www.gutenberg.org/ebooks/16198', 'en', 427), +(593, 'Cinq Mars — Complete', 'Vigny, Alfred de', '2004-10-30', 41, 'https://www.gutenberg.org/ebooks/3953', 'en', 492), +(594, 'The Lonely Way—Intermezzo—Countess Mizzie\nThree Plays', 'Schnitzler, Arthur', '2009-08-21', 15, 'https://www.gutenberg.org/ebooks/29745', 'en', 493), +(595, 'Down the Slope', 'Otis, James', '2009-05-05', 20, 'https://www.gutenberg.org/ebooks/28697', 'en', 494), +(596, 'The Legends of the Jews — Volume 3', 'Ginzberg, Louis', '2001-10-01', 114, 'https://www.gutenberg.org/ebooks/2881', 'en', 495), +(597, 'Account of a Tour in Normandy, Volume 2', 'Turner, Dawson', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12538', 'en', 496), +(598, 'Roughing It, Part 6.', 'Twain, Mark', '2004-07-02', 16, 'https://www.gutenberg.org/ebooks/8587', 'en', 497), +(599, 'Your National Parks, with Detailed Information for Tourists', 'Schmeckebier, Laurence Frederick', '2013-03-03', 24, 'https://www.gutenberg.org/ebooks/42248', 'en', 498), +(600, 'The Poems of John Donne, Volume 2 (of 2)\r\nEdited from the Old Editions and Numerous Manuscripts', 'Donne, John', '2015-04-24', 97, 'https://www.gutenberg.org/ebooks/48772', 'en', 466), +(601, 'Come le foglie', 'Giacosa, Giuseppe', '2006-02-27', 28, 'https://www.gutenberg.org/ebooks/17876', 'it', 499), +(602, 'Daisy\'s Necklace, and What Came of It', 'Aldrich, Thomas Bailey', '2009-12-13', 18, 'https://www.gutenberg.org/ebooks/30668', 'en', 61), +(603, 'Tales and Novels — Volume 03\r\nBelinda', 'Edgeworth, Maria', '2005-12-01', 91, 'https://www.gutenberg.org/ebooks/9455', 'en', 500), +(604, 'Casa Grande Ruins Trail', 'Southwest Parks and Monuments Association', '2019-08-17', 277, 'https://www.gutenberg.org/ebooks/60118', 'en', 501), +(605, 'A Canadian Heroine, Volume 1\nA Novel', 'Coghill, Harry, Mrs.', '2006-03-16', 12, 'https://www.gutenberg.org/ebooks/18002', 'en', 65), +(606, 'The Mentor: Italy Under War Conditions, Vol. 6, Num. 23, Ser. No. 171, January 15, 1919', 'Newman, E. M. (Edward Manuel)', '2014-02-22', 14, 'https://www.gutenberg.org/ebooks/44983', 'en', 502), +(607, 'Notes and Queries, Vol. IV, Number 96, August 30, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-12-24', 5, 'https://www.gutenberg.org/ebooks/38405', 'en', 105), +(608, 'The Sabbath and the Crystal Palace', 'Anonymous', '2017-01-09', 8, 'https://www.gutenberg.org/ebooks/53934', 'en', 503), +(609, 'The New Revelation', 'Doyle, Arthur Conan', '1999-02-01', 51, 'https://www.gutenberg.org/ebooks/1638', 'en', 504), +(610, 'The Flag', 'Greene, Homer', '2008-04-26', 15, 'https://www.gutenberg.org/ebooks/25188', 'en', 146), +(611, 'Aristotle', 'Grote, George', '2014-05-31', 48, 'https://www.gutenberg.org/ebooks/45851', 'en', 505), +(612, 'Tales and Novels of J. de La Fontaine — Volume 24', 'La Fontaine, Jean de', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/5298', 'en', 506), +(613, 'A Lieutenant at Eighteen', 'Optic, Oliver', '2008-03-18', 20, 'https://www.gutenberg.org/ebooks/24866', 'en', 403), +(614, 'Confessions of the Czarina', 'Radziwill, Catherine, Princess', '2016-09-21', 23, 'https://www.gutenberg.org/ebooks/53108', 'en', 507), +(615, 'The International Monthly Magazine, Volume 1, No. 1, August 1850\nof Literature, Science and Art.', 'Various', '2007-05-19', 9, 'https://www.gutenberg.org/ebooks/21528', 'en', 162), +(616, 'Plays', 'Glaspell, Susan', '2019-05-04', 45, 'https://www.gutenberg.org/ebooks/59432', 'en', 508), +(617, 'The Victor', 'Walton, Bryce', '2010-06-19', 38, 'https://www.gutenberg.org/ebooks/32903', 'en', 509), +(618, 'Deutschland. Ein Wintermärchen', 'Heine, Heinrich', '2004-07-01', 128, 'https://www.gutenberg.org/ebooks/6079', 'de', 510), +(619, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 15, No. 90, June, 1875', 'Various', '2004-07-20', 7, 'https://www.gutenberg.org/ebooks/12960', 'en', 210), +(620, 'Vulcan\'s Workshop', 'Vincent, Harl', '2009-07-05', 41, 'https://www.gutenberg.org/ebooks/29321', 'en', 26), +(621, 'De ridders van den halven toren', 'Vletter, A. C. C. de', '2015-02-20', 11, 'https://www.gutenberg.org/ebooks/48316', 'nl', 511), +(622, 'Some Rambling Notes of an Idle Excursion', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9031', 'en', 512), +(623, 'The Whistling Mother', 'Richmond, Grace S. (Grace Smith)', '2004-11-01', 29, 'https://www.gutenberg.org/ebooks/6845', 'en', 513), +(624, 'The Æneid of Virgil, Translated into English Verse', 'Virgil', '2006-05-28', 227, 'https://www.gutenberg.org/ebooks/18466', 'en', 514), +(625, 'Billy To-morrow\'s Chums', 'Carr, Sarah Pratt', '2017-05-20', 6, 'https://www.gutenberg.org/ebooks/54749', 'en', 515), +(626, 'Discourse on the Method of Rightly Conducting One\'s Reason and of Seeking Truth in the Sciences', 'Descartes, René', '1993-03-01', 1101, 'https://www.gutenberg.org/ebooks/59', 'en', 516), +(627, 'America To-day, Observations and Reflections', 'Archer, William', '2004-07-22', 39, 'https://www.gutenberg.org/ebooks/7997', 'en', 517), +(628, 'Amy Harrison; or, Heavenly Seed and Heavenly Dew', 'Unknown', '2008-08-20', 6, 'https://www.gutenberg.org/ebooks/26369', 'en', 518), +(629, 'The Scarlet Plague', 'London, Jack', '2007-06-29', 170, 'https://www.gutenberg.org/ebooks/21970', 'en', 26), +(630, 'Snowdrift: A Story of the Land of the Strong Cold', 'Hendryx, James B. (James Beardsley)', '2011-10-21', 28, 'https://www.gutenberg.org/ebooks/37815', 'en', 65), +(631, 'White Fire', 'Oxenham, John', '2011-11-19', 14, 'https://www.gutenberg.org/ebooks/38061', 'en', 519), +(632, 'L\'Illustration, No. 3695, 20 Décembre 1913', 'Various', '2010-08-22', 11, 'https://www.gutenberg.org/ebooks/33489', 'fr', 150), +(633, 'The Green Bough', 'Thurston, E. Temple (Ernest Temple)', '2013-01-21', 20, 'https://www.gutenberg.org/ebooks/41895', 'en', 520), +(634, 'Index of the Project Gutenberg Prose Works of Hector Berlioz', 'Berlioz, Hector', '2019-03-14', 4, 'https://www.gutenberg.org/ebooks/59056', 'en', 198), +(635, 'Robert Moffat\nThe Missionary Hero of Kuruman', 'Deane, David J.', '2005-03-16', 12, 'https://www.gutenberg.org/ebooks/15379', 'en', 521), +(636, 'The Pansy Magazine, July 1886', 'Various', '2014-04-16', 21, 'https://www.gutenberg.org/ebooks/45409', 'en', 522), +(637, 'The Philosophy of Mystery', 'Dendy, Walter Cooper', '2018-03-23', 17, 'https://www.gutenberg.org/ebooks/56822', 'en', 523), +(638, 'Americanisms and Briticisms; with other essays on other isms', 'Matthews, Brander', '2011-08-10', 9, 'https://www.gutenberg.org/ebooks/37029', 'en', 524), +(639, 'Biographical notice of Nicolo Paganini\r\nWith an analysis of his compositions, and a sketch of the history of the violin.', 'Fétis, François-Joseph', '2018-10-28', 5, 'https://www.gutenberg.org/ebooks/58184', 'en', 525), +(640, 'The Romance of His Life, and Other Romances', 'Cholmondeley, Mary', '2012-10-05', 23, 'https://www.gutenberg.org/ebooks/40947', 'en', 526), +(641, 'Punch, or the London Charivari, November 4th 1893', 'Various', '2012-04-05', 7, 'https://www.gutenberg.org/ebooks/39381', 'en', 134), +(642, 'Frank and Fanny', 'Moore, Bloomfield H., Mrs.', '2005-06-03', 12, 'https://www.gutenberg.org/ebooks/15977', 'en', 527), +(643, 'The Last Generation: A Story of the Future', 'Flecker, James Elroy', '2010-06-10', 28, 'https://www.gutenberg.org/ebooks/32769', 'en', 26), +(644, 'A Description of the Coasts of East Africa and Malabar in the Beginning of the Sixteenth Century', NULL, '2011-12-09', 64, 'https://www.gutenberg.org/ebooks/38253', 'en', 528), +(645, 'The Chase of the Ruby', 'Marsh, Richard', '2012-07-27', 16, 'https://www.gutenberg.org/ebooks/40349', 'en', 323), +(646, 'From Yauco to Las Marias\r\nA recent campaign in Puerto Rico by the Independent Regular Brigade under the command of Brig. General Schwan', 'Herrman, Karl Stephen', '2003-12-01', 22, 'https://www.gutenberg.org/ebooks/10439', 'en', 529), +(647, 'In Bird Land', 'Keyser, Leander S. (Leander Sylvester)', '2019-04-12', 9, 'https://www.gutenberg.org/ebooks/59264', 'en', 530), +(648, 'True Irish Ghost Stories', NULL, '2004-11-20', 94, 'https://www.gutenberg.org/ebooks/14099', 'en', 531), +(649, 'Lucile', 'Lytton, Edward Robert Bulwer Lytton, Earl of', '1999-08-01', 23, 'https://www.gutenberg.org/ebooks/1852', 'en', 532), +(650, 'On Handling the Data', 'Mayfield, M. I.', '2007-11-10', 28, 'https://www.gutenberg.org/ebooks/23429', 'en', 179), +(651, 'Florens Abentheuer in Afrika, und ihre Heimkehr nach Paris. Zweiter Band.', 'Voss, Julius von', '2015-05-10', 6, 'https://www.gutenberg.org/ebooks/48918', 'de', 533), +(652, 'Commentaries on the Laws of England, Book the First', 'Blackstone, William, Sir', '2009-12-30', 143, 'https://www.gutenberg.org/ebooks/30802', 'en', 534), +(653, 'Picture Bride', 'Samachson, Joseph', '2016-01-23', 40, 'https://www.gutenberg.org/ebooks/51009', 'en', 26), +(654, 'The Trail of a Sourdough\nLife in Alaska', 'Sullivan, May Kellogg', '2009-06-13', 15, 'https://www.gutenberg.org/ebooks/29113', 'en', 535), +(655, 'The Poetical Works of Oliver Wendell Holmes — Volume 12\r\nVerses from the Oldest Portfolio', 'Holmes, Oliver Wendell', '2004-09-30', 5, 'https://www.gutenberg.org/ebooks/7399', 'en', 178), +(656, 'The Coming of the Ice', 'Peyton, Green', '2008-10-19', 29, 'https://www.gutenberg.org/ebooks/26967', 'en', 179), +(657, 'Main Currents in Nineteenth Century Literature - 5. The Romantic School in France', 'Brandes, Georg', '2015-01-12', 42, 'https://www.gutenberg.org/ebooks/47950', 'en', 536), +(658, 'The Risk Profession', 'Westlake, Donald E.', '2008-10-29', 45, 'https://www.gutenberg.org/ebooks/27089', 'en', 26), +(659, 'Lady Windermere\'s Fan', 'Wilde, Oscar', '1997-01-01', 457, 'https://www.gutenberg.org/ebooks/790', 'en', 537), +(660, 'What Might Have Been Expected', 'Stockton, Frank Richard', '2006-06-22', 21, 'https://www.gutenberg.org/ebooks/18654', 'en', 538), +(661, 'Bob Dexter and the Storm Mountain Mystery; or, The Secret of the Log Cabin', 'Baker, Willard F.', '2015-01-31', 16, 'https://www.gutenberg.org/ebooks/48124', 'en', 153), +(662, 'A Rill from the Town Pump', 'Hawthorne, Nathaniel', '2005-11-01', 20, 'https://www.gutenberg.org/ebooks/9203', 'en', 539), +(663, 'Die naturwissenschaftlichen Grundlagen der Poesie.\nProlegomena einer realistischen Aesthetik', 'Bölsche, Wilhelm', '2016-04-22', 17, 'https://www.gutenberg.org/ebooks/51835', 'de', 540), +(664, 'A Far Country — Complete', 'Churchill, Winston', '2004-10-17', 55, 'https://www.gutenberg.org/ebooks/3739', 'en', 541), +(665, 'De Koran\r\nVoorafgegaan door het leven van Mahomed, eene inleiding\r\nomtrent de Godsdienstgebruiken der Mahomedanen, enz.', NULL, '2006-09-25', 67, 'https://www.gutenberg.org/ebooks/19786', 'nl', 542), +(666, 'Der Besuch im Carcer.', 'Eckstein, Ernst', '2014-09-17', 7, 'https://www.gutenberg.org/ebooks/46882', 'de', 543), +(667, 'Abstracts of Papers Read at the First International Eugenics Congress\nUniversity of London, July, 1912', 'International Eugenics Congress (1st : 1912 : London)', '2014-02-17', 8, 'https://www.gutenberg.org/ebooks/44948', 'en', 544), +(668, 'Despoilers of the Golden Empire', 'Garrett, Randall', '2007-12-31', 232, 'https://www.gutenberg.org/ebooks/24091', 'en', 323), +(669, 'Queensland, the Rich but Sparsely Peopled Country, a Paradise for Willing Workers', 'Queensland Government Intelligence and Tourist Bureau', '2018-07-21', 3, 'https://www.gutenberg.org/ebooks/57563', 'en', 545); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(670, 'Végzetes tévedés: Regény', 'Beniczkyné Bajza, Lenke', '2010-06-29', 20, 'https://www.gutenberg.org/ebooks/33026', 'hu', 61), +(671, 'Paper-bag Cookery', 'Serkoff, Vera, Countess', '2012-11-19', 27, 'https://www.gutenberg.org/ebooks/41406', 'en', 546), +(672, 'Autobiographical Sketches', 'Besant, Annie', '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/11376', 'en', 547), +(673, 'The Curlytops and Their Playmates; Or, Jolly Times Through the Holidays', 'Garis, Howard Roger', '2008-04-23', 28, 'https://www.gutenberg.org/ebooks/25143', 'en', 548), +(674, 'Die kleine Stadt: Roman', 'Mann, Heinrich', '2013-11-13', 23, 'https://www.gutenberg.org/ebooks/44174', 'de', 549), +(675, 'The Outdoor Chums on the Lake; Or, Lively Adventures on Wildcat Island', 'Allen, Quincy', '2011-09-20', 26, 'https://www.gutenberg.org/ebooks/37486', 'en', 550), +(676, 'The Maid of the Whispering Hills', 'Roe, Vingie E. (Vingie Eve)', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/5253', 'en', 551), +(677, 'The Tale of Beowulf, Sometime King of the Folk of the Weder Geats', NULL, '2007-01-23', 98, 'https://www.gutenberg.org/ebooks/20431', 'en', 552), +(678, 'Scandinavian influence on Southern Lowland Scotch\r\nA contribution to the study of the linguistic relations of English and Scandinavian', 'Flom, George T. (George Tobias)', '2005-01-05', 29, 'https://www.gutenberg.org/ebooks/14604', 'en', 553), +(679, 'Madame de Chevreuse\nNouvelles études sur les femmes illustres et la société du 17e siècle', 'Cousin, Victor', '2016-05-06', 10, 'https://www.gutenberg.org/ebooks/52011', 'fr', 554), +(680, 'Chaucer and His Times', 'Hadow, Grace E. (Grace Eleanor)', '2011-06-29', 18, 'https://www.gutenberg.org/ebooks/36554', 'en', 555), +(681, 'The Aran Islands', 'Synge, J. M. (John Millington)', '2003-08-01', 83, 'https://www.gutenberg.org/ebooks/4381', 'en', 556), +(682, 'At War with Society; or, Tales of the Outcasts', 'M\'Levy, James', '2014-08-19', 17, 'https://www.gutenberg.org/ebooks/46623', 'en', 557), +(683, 'The Continental Monthly, Vol. 2, No. 2, August, 1862\nDevoted to Literature and National Policy', 'Various', '2006-11-27', 16, 'https://www.gutenberg.org/ebooks/19927', 'en', 558), +(684, 'Tom of the Raiders', 'Bishop, Austin', '2005-02-01', 17, 'https://www.gutenberg.org/ebooks/7504', 'en', 491), +(685, 'The Church and the Barbarians\nBeing an Outline of the History of the Church from A.D. 461 to A.D. 1003', 'Hutton, William Holden', '2007-08-21', 26, 'https://www.gutenberg.org/ebooks/22366', 'en', 559), +(686, 'An Attic Philosopher in Paris — Volume 3', 'Souvestre, Émile', '2003-04-01', 12, 'https://www.gutenberg.org/ebooks/3998', 'en', 560), +(687, 'Der Vampyr, oder: Die Todtenbraut. Erster Theil.\nEin Roman nach neugriechischen Volkssagen', 'Hildebrand, Theodor', '2016-04-08', 12, 'https://www.gutenberg.org/ebooks/51694', 'de', 561), +(688, 'The American Missionary — Volume 43, No. 08, August, 1889', 'Various', '2005-06-30', 12, 'https://www.gutenberg.org/ebooks/16153', 'en', 562), +(689, 'Cottage Poems', 'Brontë, Patrick', '2005-11-16', 25, 'https://www.gutenberg.org/ebooks/17081', 'en', 8), +(690, 'The Girl\'s Own Paper, Vol. XX, No. 987, November 26, 1898', 'Various', '2015-12-22', 10, 'https://www.gutenberg.org/ebooks/50746', 'en', 563), +(691, 'The Bab Ballads', 'Gilbert, W. S. (William Schwenck)', '1997-06-01', 120, 'https://www.gutenberg.org/ebooks/931', 'en', 564), +(692, 'History of the Reign of Philip the Second King of Spain, Vol. 3\r\nAnd Biographical & Critical Miscellanies', 'Prescott, William Hickling', '2010-11-03', 28, 'https://www.gutenberg.org/ebooks/34203', 'en', 565), +(693, 'The Life of La Fayette, the Knight of Liberty in Two Worlds and Two Centuries', 'Farmer, Lydia Hoyt', '2017-07-31', 7, 'https://www.gutenberg.org/ebooks/55234', 'en', 566), +(694, 'The San Rosario Ranch', 'Elliott, Maud Howe', '2013-03-09', 8, 'https://www.gutenberg.org/ebooks/42283', 'en', 211), +(695, 'Si Klegg, Book 1\r\nHis Transformation from a Raw Recruit to a Veteran', 'McElroy, John', '2010-03-25', 34, 'https://www.gutenberg.org/ebooks/31771', 'en', 403), +(696, 'The Civilization of China', 'Giles, Herbert Allen', '2006-03-26', 51, 'https://www.gutenberg.org/ebooks/2076', 'en', 567), +(697, 'A Chain of Evidence', 'Wells, Carolyn', '2013-07-29', 24, 'https://www.gutenberg.org/ebooks/43351', 'en', 48), +(698, 'Punch, or the London Charivari, Volume 100, June 27, 1891', 'Various', '2004-09-10', 18, 'https://www.gutenberg.org/ebooks/13421', 'en', 134), +(699, 'Notes and Queries, Number 219, January 7, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-12-25', 10, 'https://www.gutenberg.org/ebooks/27614', 'en', 105), +(700, 'Creatures of Vibration', 'Vincent, Harl', '2007-07-26', 35, 'https://www.gutenberg.org/ebooks/22154', 'en', 26), +(701, 'Lippincott\'s Magazine of Popular Literature and Science, October, 1877. Vol XX - No. 118', 'Various', '2005-07-27', 7, 'https://www.gutenberg.org/ebooks/16361', 'en', 210), +(702, 'Die Chronik der Sperlingsgasse', 'Raabe, Wilhelm', '2014-07-25', 14, 'https://www.gutenberg.org/ebooks/46411', 'de', 253), +(703, 'Tomlinsoniana', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-26', 20, 'https://www.gutenberg.org/ebooks/7736', 'en', 232), +(704, 'Raemaekers\' Cartoon History of the War, Volume 1\nThe First Twelve Months of War', NULL, '2010-10-04', 32, 'https://www.gutenberg.org/ebooks/34031', 'en', 568), +(705, 'Josef Dietzgens philosophische Lehren', 'Hepner, Adolf', '2015-11-29', 9, 'https://www.gutenberg.org/ebooks/50574', 'de', 569), +(706, 'Auction of To-day', 'Work, Milton C. (Milton Cooper)', '2007-10-18', 28, 'https://www.gutenberg.org/ebooks/23086', 'en', 570), +(707, 'Bonnie Prince Fetlar: The Story of a Pony and His Friends', 'Saunders, Marshall', '2015-07-16', 14, 'https://www.gutenberg.org/ebooks/49459', 'en', 571), +(708, 'Nederlandsche Volkskunde', 'Schrijnen, Jos.', '2007-10-12', 5, 'https://www.gutenberg.org/ebooks/22968', 'nl', 572), +(709, 'Literary Boston as I Knew It (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 15, 'https://www.gutenberg.org/ebooks/3396', 'en', 366), +(710, 'A Concise Anglo-Saxon Dictionary\nFor the Use of Students', 'Hall, J. R. Clark (John R. Clark)', '2010-03-07', 86, 'https://www.gutenberg.org/ebooks/31543', 'en', 573), +(711, 'The Sundial', 'White, Fred M. (Fred Merrick)', '2017-06-29', 21, 'https://www.gutenberg.org/ebooks/55006', 'en', 574), +(712, 'The Sunny Side of Ireland\nHow to see it by the Great Southern and Western Railway', 'O\'Mahony, John', '2006-09-19', 15, 'https://www.gutenberg.org/ebooks/19329', 'en', 575), +(713, 'Studies in the Psychology of Sex, Volume 4\r\nSexual Selection In Man', 'Ellis, Havelock', '2004-10-08', 161, 'https://www.gutenberg.org/ebooks/13613', 'en', 369), +(714, 'Shenanigans at Sugar Creek', 'Hutchens, Paul', '2008-12-06', 27, 'https://www.gutenberg.org/ebooks/27426', 'en', 470), +(715, 'As You Like It', 'Shakespeare, William', '2000-07-01', 36, 'https://www.gutenberg.org/ebooks/2244', 'en', 576), +(716, 'Vital Ingredient', 'De Vet, Charles V.', '2009-11-17', 49, 'https://www.gutenberg.org/ebooks/30491', 'en', 179), +(717, 'Die schwarzen Brüder: Eine abentheuerliche Geschichte. 1/3', 'Zschokke, Heinrich', '2013-07-09', 10, 'https://www.gutenberg.org/ebooks/43163', 'de', 61), +(718, 'The White Queen of Okoyong: A True Story of Adventure, Heroism and Faith', 'Livingstone, W. P. (William Pringle)', '2010-07-21', 17, 'https://www.gutenberg.org/ebooks/33214', 'en', 577), +(719, 'Queer Luck: Poker Stories from the New York Sun', 'Curtis, David A.', '2018-08-23', 14, 'https://www.gutenberg.org/ebooks/57751', 'en', 112), +(720, 'The Trojan women of Euripides', 'Euripides', '2003-11-01', 122, 'https://www.gutenberg.org/ebooks/10096', 'en', 578), +(721, 'Somewhere in France', 'Davis, Richard Harding', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11144', 'en', 579), +(722, 'The Shaggy Man of Oz', 'Snow, Jack', '2018-04-19', 45, 'https://www.gutenberg.org/ebooks/56683', 'en', 580), +(723, 'Northern Travel: Summer and Winter Pictures of Sweden, Denmark and Lapland', 'Taylor, Bayard', '2008-05-07', 15, 'https://www.gutenberg.org/ebooks/25371', 'en', 581), +(724, 'Martin Van Buren', 'Shepard, Edward Morse', '2012-12-16', 22, 'https://www.gutenberg.org/ebooks/41634', 'en', 582), +(725, 'Christmas Carol Collection 2006', 'Various', '2007-01-20', 6, 'https://www.gutenberg.org/ebooks/20603', 'en', 583), +(726, 'Military Memoirs of Capt. George Carleton', 'Defoe, Daniel', '2004-12-23', 33, 'https://www.gutenberg.org/ebooks/14436', 'en', 323), +(727, 'How the National Association for the Advancement of Colored People Began', 'Ovington, Mary White', '2019-01-18', 2, 'https://www.gutenberg.org/ebooks/58719', 'en', 584), +(728, 'Lendemains de Guerre des Flandres à la Meuse', NULL, '2013-12-04', 15, 'https://www.gutenberg.org/ebooks/44346', 'fr', 335), +(729, 'The Children\'s Book of Christmas Stories', NULL, '2004-02-01', 56, 'https://www.gutenberg.org/ebooks/5061', 'en', 585), +(730, 'Brave Tom; Or, The Battle That Won', 'Ellis, Edward Sylvester', '2004-04-01', 48, 'https://www.gutenberg.org/ebooks/11978', 'en', 195), +(731, 'Der kleine Herr Friedemann: Novellen', 'Mann, Thomas', '2011-07-17', 110, 'https://www.gutenberg.org/ebooks/36766', 'de', 61), +(732, 'Christmas Carols and Midsummer Songs', 'Various', '2014-04-01', 14, 'https://www.gutenberg.org/ebooks/45294', 'en', 586), +(733, 'The Campaigns of the 124th Regiment, Ohio Volunteer Infantry, with Roster and Roll of Honor', 'Lewis, G. W. (George W.)', '2016-06-02', 6, 'https://www.gutenberg.org/ebooks/52223', 'en', 587), +(734, 'Give Me Liberty: The Struggle for Self-Government in Virginia', 'Wertenbaker, Thomas Jefferson', '2010-11-27', 22, 'https://www.gutenberg.org/ebooks/34455', 'en', 588), +(735, 'The Money Master, Complete', 'Parker, Gilbert', '2004-11-19', 25, 'https://www.gutenberg.org/ebooks/6280', 'en', 589), +(736, 'Alfred Kihlman: Elämän kuvaus. 1 (of 2)', 'Aspelin-Haapkylä, Eliel', '2015-10-01', 19, 'https://www.gutenberg.org/ebooks/50110', 'fi', 590), +(737, 'From Place to Place', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2007-09-06', 18, 'https://www.gutenberg.org/ebooks/22530', 'en', 61), +(738, 'Svensk litteraturhistoria', 'Forsberg, Hjalmar', '2015-08-28', 12, 'https://www.gutenberg.org/ebooks/49801', 'sv', 591), +(739, 'A Wanderer in Venice', 'Lucas, E. V. (Edward Verrall)', '2005-09-17', 22, 'https://www.gutenberg.org/ebooks/16705', 'en', 592), +(740, 'Motor Matt; or, The King of the Wheel\nMotor Stories Thrilling Adventure Motor Fiction No 1.', 'Matthews, Stanley R.', '2014-06-23', 7, 'https://www.gutenberg.org/ebooks/46075', 'en', 323), +(741, 'The Headless Horseman: A Strange Tale of Texas', 'Reid, Mayne', '2011-03-16', 81, 'https://www.gutenberg.org/ebooks/35587', 'en', 500), +(742, 'First and Last', 'Belloc, Hilaire', '2005-01-01', 83, 'https://www.gutenberg.org/ebooks/7352', 'en', 20), +(743, 'Stage Confidences: Talks About Players and Play Acting', 'Morris, Clara', '2004-08-25', 10, 'https://www.gutenberg.org/ebooks/13277', 'en', 593), +(744, 'La Jérusalem médiévale', 'Lebert, Marie', '2008-10-26', 7, 'https://www.gutenberg.org/ebooks/27042', 'fr', 594), +(745, 'The Home Book of Verse — Volume 2', 'Stevenson, Burton Egbert', '2001-05-01', 22, 'https://www.gutenberg.org/ebooks/2620', 'en', 54), +(746, 'An Account of Valle Crucis Abbey, Llangollen, and All the Recent Discoveries', 'Anonymous', '2013-08-19', 19, 'https://www.gutenberg.org/ebooks/43507', 'en', 595), +(747, 'Ballads of a Bohemian', 'Service, Robert W. (Robert William)', '2009-05-01', 18, 'https://www.gutenberg.org/ebooks/28836', 'en', 8), +(748, 'Rembrandt\'s Amsterdam', 'Lugt, Frits', '2010-01-30', 27, 'https://www.gutenberg.org/ebooks/31127', 'en', 596), +(749, 'A Choice of Miracles', 'Cox, James A.', '2008-08-04', 41, 'https://www.gutenberg.org/ebooks/26190', 'en', 179), +(750, 'Animal Life of the British Isles\r\nA Pocket Guide to the Mammals, Reptiles and Batrachians of Wayside and Woodland', 'Step, Edward', '2014-09-13', 27, 'https://www.gutenberg.org/ebooks/46849', 'en', 597), +(751, 'Die organische Chemie in ihrer Anwendung auf Physiologie und Pathologie', 'Liebig, Justus, Freiherr von', '2017-08-30', 19, 'https://www.gutenberg.org/ebooks/55462', 'de', 598), +(752, 'The Obstacle Race', 'Dell, Ethel M. (Ethel May)', '2004-03-01', 41, 'https://www.gutenberg.org/ebooks/11520', 'en', 61), +(753, 'Henri IV (2e partie)', 'Shakespeare, William', '2008-06-07', 16, 'https://www.gutenberg.org/ebooks/25715', 'fr', 599), +(754, 'Mearing Stones: Leaves from My Note-Book on Tramp in Donegal', 'Campbell, Joseph', '2012-10-31', 28, 'https://www.gutenberg.org/ebooks/41250', 'en', 600), +(755, 'Nuoruuden unelmia', 'Topelius, Zacharias', '2012-07-31', 14, 'https://www.gutenberg.org/ebooks/40382', 'fi', 98), +(756, 'Isabella Orsini, duchessa di Bracciano', 'Guerrazzi, Francesco Domenico', '2011-12-13', 19, 'https://www.gutenberg.org/ebooks/38298', 'it', 601), +(757, 'Maxims and Reflections', 'Goethe, Johann Wolfgang von', '2010-09-08', 256, 'https://www.gutenberg.org/ebooks/33670', 'en', 602), +(758, 'Light and Colour Theories, and their relation to light and colour standardization', 'Lovibond, Joseph W. (Joseph Williams)', '2018-06-15', 46, 'https://www.gutenberg.org/ebooks/57335', 'en', 603), +(759, 'Dawson Black: Retail Merchant', 'Whitehead, Harold', '2011-06-02', 6, 'https://www.gutenberg.org/ebooks/36302', 'en', 604), +(760, 'Incidents in a Gipsy\'s Life', 'Smith, George', '2016-07-25', 9, 'https://www.gutenberg.org/ebooks/52647', 'en', 605), +(761, 'The Honorable Percival', 'Rice, Alice Caldwell Hegan', '2005-02-26', 24, 'https://www.gutenberg.org/ebooks/15180', 'en', 533), +(762, 'At The Bay', 'Mansfield, Katherine', '2007-01-05', 6, 'https://www.gutenberg.org/ebooks/20267', 'en', 606), +(763, 'The Village Rector', 'Balzac, Honoré de', '2005-11-11', 61, 'https://www.gutenberg.org/ebooks/1899', 'en', 607), +(764, 'Rousseau (Volume 1 and 2)', 'Morley, John', '2004-11-15', 39, 'https://www.gutenberg.org/ebooks/14052', 'en', 608), +(765, 'The Prince of the House of David', 'Ingraham, J. H. (Joseph Holt)', '2016-12-23', 47, 'https://www.gutenberg.org/ebooks/53795', 'en', 609), +(766, 'Ferdinand Lassalle: Eine Würdigung des Lehrers und Kämpfers', 'Bernstein, Eduard', '2014-01-20', 6, 'https://www.gutenberg.org/ebooks/44722', 'de', 610), +(767, 'The Ne\'er-Do-Well', 'Beach, Rex', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/5405', 'en', 611), +(768, '\"Der Tag\"; or, The Tragic Man', 'Barrie, J. M. (James Matthew)', '2012-03-17', 22, 'https://www.gutenberg.org/ebooks/39178', 'en', 612), +(769, 'The Old Martians', 'Phillips, Rog', '2010-05-30', 32, 'https://www.gutenberg.org/ebooks/32590', 'en', 613), +(770, 'The Final Figure', 'Merwin, Sam', '2012-10-14', 28, 'https://www.gutenberg.org/ebooks/41062', 'en', 614), +(771, 'Punch, or the London Charivari, Volume 156, June 25, 1919', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11712', 'en', 134), +(772, 'Australia, The Dairy Country', 'Australia. Department of External Affairs', '2008-05-19', 31, 'https://www.gutenberg.org/ebooks/25527', 'en', 615), +(773, 'The American Missionary — Volume 41, No. 8, August, 1887', 'Various', '2018-05-06', 4, 'https://www.gutenberg.org/ebooks/57107', 'en', 395), +(774, 'The Skylark of Space', 'Garby, Lee Hawkins', '2007-03-21', 252, 'https://www.gutenberg.org/ebooks/20869', 'en', 616), +(775, 'The Iron Puddler: My Life in the Rolling Mills and What Came of It', 'Davis, James J. (James John)', '1998-05-01', 20, 'https://www.gutenberg.org/ebooks/1297', 'en', 617), +(776, 'Ο Αρχοντοχωριάτης', 'Molière', '2010-08-15', 29, 'https://www.gutenberg.org/ebooks/33442', 'el', 618), +(777, 'Shackleton\'s Last Voyage: The Story of the Quest', 'Wild, Frank', '2019-02-27', 36, 'https://www.gutenberg.org/ebooks/58973', 'en', 619), +(778, 'Hjertesår och Hjertebalsam, eller Den dygdiges Seger öfver Ödet och Döden\nRomantiskt Gråtospel i Tre Öppningar', 'Arwidsson, Adolph Ivar', '2016-07-02', 19, 'https://www.gutenberg.org/ebooks/52475', 'sv', 402), +(779, 'Caper-Sauce: A Volume of Chit-Chat about Men, Women, and Things.', 'Fern, Fanny', '2012-06-08', 64, 'https://www.gutenberg.org/ebooks/39944', 'en', 620), +(780, 'Dr. Jolliffe\'s Boys', 'Hough, Lewis', '2007-04-18', 19, 'https://www.gutenberg.org/ebooks/21187', 'en', 621), +(781, 'The Campfire Girls on Station Island; Or, The Wireless from the Steam Yacht', 'Penrose, Margaret', '2011-05-16', 12, 'https://www.gutenberg.org/ebooks/36130', 'en', 622), +(782, 'Per luchtschip \"De Argonaut\" naar Mars', 'Daiber, Albert', '2013-12-25', 15, 'https://www.gutenberg.org/ebooks/44510', 'nl', 623), +(783, 'Literary and Philosophical Essays: French, German and Italian', 'Kant, Immanuel', '2004-05-01', 167, 'https://www.gutenberg.org/ebooks/5637', 'en', 20), +(784, 'Historic Tales: The Romance of Reality. Vol. 06 (of 15), French', 'Morris, Charles', '2006-12-08', 13, 'https://www.gutenberg.org/ebooks/20055', 'en', 624), +(785, 'The Hollow Tree Snowed-in Book\r\nbeing a continuation of the stories about the Hollow Tree and Deep Woods people', 'Paine, Albert Bigelow', '2012-02-16', 10, 'https://www.gutenberg.org/ebooks/38896', 'en', 625), +(786, 'The Great Events by Famous Historians, Volume 06\r\n(From Barbarossa to Dante)', NULL, '2004-12-05', 30, 'https://www.gutenberg.org/ebooks/14260', 'en', 346), +(787, 'Orville Southerland Cox, Pioneer of 1847', 'Sidwell, Adelia B. Cox', '2015-10-27', 12, 'https://www.gutenberg.org/ebooks/50322', 'en', 626), +(788, 'Veljekset: Uutelo', 'Gummerus, K. J. (Kaarle Jaakko)', '2009-03-02', 9, 'https://www.gutenberg.org/ebooks/28238', 'fi', 41), +(789, 'The Death of Balder', 'Ewald, Johannes', '2004-10-27', 23, 'https://www.gutenberg.org/ebooks/13879', 'en', 627), +(790, 'The Vee-Boers: A Tale of Adventure in Southern Africa', 'Reid, Mayne', '2010-12-15', 20, 'https://www.gutenberg.org/ebooks/34667', 'en', 628), +(791, 'L\'Illustration, No. 1596, 27 Septembre 1873', 'Various', '2014-11-19', 4, 'https://www.gutenberg.org/ebooks/47395', 'fr', 150), +(792, 'The Book of Masks', 'Gourmont, Remy de', '2014-07-11', 42, 'https://www.gutenberg.org/ebooks/46247', 'en', 629), +(793, 'The Prince and the Pauper, Part 7.', 'Twain, Mark', '2004-07-04', 16, 'https://www.gutenberg.org/ebooks/7160', 'en', 154), +(794, 'An Echo Of Antietam\n1898', 'Bellamy, Edward', '2007-09-21', 26, 'https://www.gutenberg.org/ebooks/22702', 'en', 179), +(795, 'England, My England', 'Lawrence, D. H. (David Herbert)', '2005-09-01', 90, 'https://www.gutenberg.org/ebooks/8914', 'en', 409), +(796, 'Myths That Every Child Should Know\nA Selection Of The Classic Myths Of All Times For Young People', NULL, '2005-08-17', 114, 'https://www.gutenberg.org/ebooks/16537', 'en', 630), +(797, 'The Categories', 'Aristotle', '2000-11-01', 270, 'https://www.gutenberg.org/ebooks/2412', 'en', 631), +(798, 'The Oxford Reformers: John Colet, Erasmus, and Thomas More', 'Seebohm, Frederic', '2013-09-15', 26, 'https://www.gutenberg.org/ebooks/43735', 'en', 632), +(799, 'The Complete Works of Brann, the Iconoclast — Volume 12', 'Brann, William Cowper', '1996-06-01', 69, 'https://www.gutenberg.org/ebooks/569', 'en', 20), +(800, 'Sketches from Eastern History', 'Nöldeke, Theodor', '2017-05-25', 23, 'https://www.gutenberg.org/ebooks/54782', 'en', 633), +(801, 'War-Time Financial Problems', 'Withers, Hartley', '2004-07-29', 25, 'https://www.gutenberg.org/ebooks/13045', 'en', 634), +(802, 'Tarzan and the Jewels of Opar', 'Burroughs, Edgar Rice', '1993-12-01', 397, 'https://www.gutenberg.org/ebooks/92', 'en', 635), +(803, 'India\'s Problem, Krishna or Christ', 'Jones, John P. (John Peter)', '2008-11-15', 21, 'https://www.gutenberg.org/ebooks/27270', 'en', 636), +(804, 'Mr. Scraggs', 'Phillips, Henry Wallace', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12197', 'en', 637), +(805, 'Stray Leaves from Strange Literature; and, Fantastics and Other Fancies', 'Hearn, Lafcadio', '2017-09-30', 52, 'https://www.gutenberg.org/ebooks/55650', 'en', 638), +(806, 'In Ghostly Japan', 'Hearn, Lafcadio', '2005-05-01', 103, 'https://www.gutenberg.org/ebooks/8128', 'en', 639), +(807, 'Charles Sumner Centenary: Historical Address\r\nThe American Negro Academy. Occasional Papers No. 14', 'Grimké, Archibald Henry', '2010-02-18', 13, 'https://www.gutenberg.org/ebooks/31315', 'en', 640), +(808, 'A Lover\'s Diary, Complete', 'Parker, Gilbert', '2004-11-18', 10, 'https://www.gutenberg.org/ebooks/6274', 'en', 269), +(809, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Neunter Band: enthaltend Kapitel 17 und 18.', 'Macaulay, Thomas Babington Macaulay, Baron', '2014-10-19', 12, 'https://www.gutenberg.org/ebooks/47153', 'de', 641), +(810, 'Le secret de l\'échafaud', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2006-01-29', 19, 'https://www.gutenberg.org/ebooks/17623', 'fr', 642), +(811, '\"Fin Tireur\"\r\n1905', 'Hichens, Robert', '2007-11-08', 19, 'https://www.gutenberg.org/ebooks/23416', 'en', 267), +(812, 'The Dream of Gerontius', 'Newman, John Henry', '2015-05-10', 33, 'https://www.gutenberg.org/ebooks/48927', 'en', 643), +(813, 'Homo', 'Cena, Giovanni', '2016-01-25', 16, 'https://www.gutenberg.org/ebooks/51036', 'it', 644), +(814, 'Captain Richard Ingle\r\nThe Maryland \"Pirate and Rebel,\" 1642-1653', 'Ingle, Edward', '2008-10-18', 8, 'https://www.gutenberg.org/ebooks/26958', 'en', 645), +(815, 'Pekka Puavalj: Luonteenpiirteitä purkupäiviltä', 'Lassila, Maiju', '2014-06-23', 20, 'https://www.gutenberg.org/ebooks/46081', 'fi', 175), +(816, 'Vermont: A Study of Independence', 'Robinson, Rowland Evans', '2011-03-14', 15, 'https://www.gutenberg.org/ebooks/35573', 'en', 646), +(817, 'Punch, or the London Charivari, Volume 100, April 11, 1891', 'Various', '2004-08-25', 2, 'https://www.gutenberg.org/ebooks/13283', 'en', 134), +(818, 'The Silent Battle', 'Gibbs, George', '2017-04-13', 16, 'https://www.gutenberg.org/ebooks/54544', 'en', 647), +(819, 'On the Origin of Clockwork, Perpetual Motion Devices, and the Compass', 'Price, Derek J. de Solla (Derek John de Solla)', '2009-09-16', 74, 'https://www.gutenberg.org/ebooks/30001', 'en', 648), +(820, 'L\'art de faire le vin avec les raisins secs', 'Audibert, J.-F. (Joseph-François)', '2013-03-27', 35, 'https://www.gutenberg.org/ebooks/42421', 'fr', 649), +(821, 'The Second Voice', 'Rubin, Mann', '2009-09-05', 17, 'https://www.gutenberg.org/ebooks/29910', 'en', 179), +(822, 'The Valiant Runaways', 'Atherton, Gertrude Franklin Horn', '2003-02-01', 26, 'https://www.gutenberg.org/ebooks/3706', 'en', 650), +(823, 'Child-Land\nPicture-Pages for the Little Ones', NULL, '2008-08-01', 32, 'https://www.gutenberg.org/ebooks/26164', 'en', 651), +(824, 'A Household Book of English Poetry\nSelected and Arranged with Notes', NULL, '2017-09-06', 23, 'https://www.gutenberg.org/ebooks/55496', 'en', 54), +(825, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 07\r\nMasterpieces of German Literature Translated into English. in Twenty Volumes', NULL, '2004-05-01', 63, 'https://www.gutenberg.org/ebooks/12351', 'en', 652), +(826, 'Nazi Conspiracy and Aggression (Vol. II)', 'United States. Office of Chief of Counsel for the Prosecution of Axis Criminality', '2017-12-20', 24, 'https://www.gutenberg.org/ebooks/56213', 'en', 653), +(827, 'The Hollow Land', 'Morris, William', '2005-05-31', 81, 'https://www.gutenberg.org/ebooks/15948', 'en', 654), +(828, 'Some Essentials of Religion', NULL, '2010-06-09', 16, 'https://www.gutenberg.org/ebooks/32756', 'en', 655), +(829, 'Cork: Its Origin and Industrial Uses', 'Stecher, Gilbert Erwin', '2012-07-31', 12, 'https://www.gutenberg.org/ebooks/40376', 'en', 656), +(830, 'On the Trail of Deserters; A Phenomenal Capture', 'Carter, Robert Goldthwaite', '2010-09-09', 24, 'https://www.gutenberg.org/ebooks/33684', 'en', 657), +(831, 'Sartor Resartus: The Life and Opinions of Herr Teufelsdröckh', 'Carlyle, Thomas', '1997-09-01', 246, 'https://www.gutenberg.org/ebooks/1051', 'en', 658), +(832, 'Early Double Monasteries\nA Paper read before the Heretics\' Society on December 6th, 1914', 'Stoney, Constance', '2008-02-18', 11, 'https://www.gutenberg.org/ebooks/24633', 'en', 659), +(833, 'Heart Bowed Down: Aria from The Bohemian Girl', NULL, '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/10406', 'en', 660), +(834, 'On Conducting (Üeber Das Dirigiren) : A Treatise on Style in the Execution of Classical Music', 'Wagner, Richard', '2003-10-01', 44, 'https://www.gutenberg.org/ebooks/4523', 'en', 661), +(835, 'The Lives of the Saints, Volume 02 (of 16): February', 'Baring-Gould, S. (Sabine)', '2014-05-07', 37, 'https://www.gutenberg.org/ebooks/45604', 'en', 662), +(836, 'Memories and Anecdotes', 'Sanborn, Kate', '2005-02-25', 13, 'https://www.gutenberg.org/ebooks/15174', 'en', 663), +(837, 'Practical English Composition: Book II.\nFor the Second Year of the High School', 'Miller, Edwin L. (Edwin Lillie)', '2007-05-06', 24, 'https://www.gutenberg.org/ebooks/21341', 'en', 664), +(838, 'A Popular History of the Art of Music\nFrom the Earliest Times Until the Present', 'Mathews, W. S. B. (William Smythe Babcock)', '2007-01-05', 73, 'https://www.gutenberg.org/ebooks/20293', 'en', 250), +(839, 'Alkuperäisiä kertomuksia entisiltä ajoilta I', 'Häyhä, Johannes', '2018-12-01', 3, 'https://www.gutenberg.org/ebooks/58389', 'fi', 665), +(840, 'Mademoiselle de Scudéry, sa vie et sa correspondance, avec un choix de ses poésies', 'Scudéry, Madeleine de', '2016-12-18', 17, 'https://www.gutenberg.org/ebooks/53761', 'fr', 666), +(841, 'Popular Books on Natural Science\nFor Practical Use in Every Household, for Readers of All Classes', 'Bernstein, Aaron David', '2011-08-27', 106, 'https://www.gutenberg.org/ebooks/37224', 'en', 667), +(842, 'Twelve Times Zero', 'Browne, Howard', '2010-05-28', 27, 'https://www.gutenberg.org/ebooks/32564', 'en', 26), +(843, 'Harper\'s Round Table, November 10, 1896', 'Various', '2019-07-05', 24, 'https://www.gutenberg.org/ebooks/59855', 'en', 668), +(844, 'All-Hallow Eve; or, The Test of Futurity.', 'Curtis, Robert', '2012-10-18', 5, 'https://www.gutenberg.org/ebooks/41096', 'en', 669), +(845, 'Poisonous Snakes of Texas and First Aid Treatment of Their Bites\nBulletin No. 31', 'Werler, John E.', '2017-11-21', 16, 'https://www.gutenberg.org/ebooks/56021', 'en', 670), +(846, 'Viagens na Minha Terra\n(Completo)', 'Almeida Garrett, João Batista da Silva Leitão de Almeida Garrett, Visconde de', '2008-01-22', 51, 'https://www.gutenberg.org/ebooks/24401', 'pt', 671), +(847, 'The Queen of Hearts, and Sing a Song for Sixpence', 'Caldecott, Randolph', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/10634', 'en', 672), +(848, 'A History of Art in Ancient Egypt, Vol. 1 (of 2)', 'Perrot, Georges', '2012-07-05', 43, 'https://www.gutenberg.org/ebooks/40144', 'en', 673), +(849, 'The Untempered Wind', 'Wood, Joanna E. (Joanna Ellen)', '2019-02-28', 13, 'https://www.gutenberg.org/ebooks/58987', 'en', 674), +(850, 'The Glimpses of the Moon', 'Wharton, Edith', '1998-04-01', 75, 'https://www.gutenberg.org/ebooks/1263', 'en', 675), +(851, 'Young Crow Raider', 'Kroll, Francis Lynde', '2019-03-15', 14, 'https://www.gutenberg.org/ebooks/59069', 'en', 676), +(852, 'Pinya de Rosa. Volume 1, Books 1-3', 'Ruyra, Joaquín', '2005-03-13', 11, 'https://www.gutenberg.org/ebooks/15346', 'ca', 61), +(853, 'Life of St. Rita of Cascia, O.S.A.\nfrom the Italian', 'Connolly, Richard', '2016-07-02', 2, 'https://www.gutenberg.org/ebooks/52481', 'en', 677), +(854, 'The Riot Act', 'Great Britain. Parliament', '2007-04-26', 4, 'https://www.gutenberg.org/ebooks/21173', 'en', 678), +(855, 'Tom Swift in the City of Gold; Or, Marvelous Adventures Underground', 'Appleton, Victor', '2003-12-01', 36, 'https://www.gutenberg.org/ebooks/4711', 'en', 679), +(856, 'Mosby\'s War Reminiscences; Stuart\'s Cavalry Campaigns', 'Mosby, John Singleton', '2014-04-18', 29, 'https://www.gutenberg.org/ebooks/45436', 'en', 83), +(857, 'Elements of Morals\r\nWith Special Application of the Moral Law to the Duties of the Individual and of Society and the State', 'Janet, Paul', '2011-08-09', 15, 'https://www.gutenberg.org/ebooks/37016', 'en', 680), +(858, 'Watson Refuted\r\nBeing an Answer to the Apology for the Bible, in a Series of Letters to the Bishop Of Llandaff', 'Francis, Samuel W. (Samuel Ward)', '2012-10-08', 18, 'https://www.gutenberg.org/ebooks/40978', 'en', 681), +(859, 'Der Sachsenspiegel: Eine Geschichte aus der Hohenstaufenzeit', 'Wolff, Julius', '2016-11-19', 13, 'https://www.gutenberg.org/ebooks/53553', 'de', 682), +(860, 'New Ideas in India During the Nineteenth Century\nA Study of Social, Political, and Religious Developments', 'Morrison, John', '2004-12-07', 14, 'https://www.gutenberg.org/ebooks/14294', 'en', 683), +(861, 'My Lords of Strogue, Vol. 2 (of 3)\r\nA Chronicle of Ireland, from the Convention to the Union', 'Wingfield, Lewis', '2012-02-13', 50, 'https://www.gutenberg.org/ebooks/38862', 'en', 684), +(862, 'Historic Doubts on the Life and Reign of King Richard the Third', 'Walpole, Horace', '2005-12-28', 25, 'https://www.gutenberg.org/ebooks/17411', 'en', 685), +(863, 'The Crimson Blind', 'White, Fred M. (Fred Merrick)', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9832', 'en', 167), +(864, 'Ride Proud, Rebel!', 'Norton, Andre', '2007-11-26', 104, 'https://www.gutenberg.org/ebooks/23624', 'en', 491), +(865, 'Works of John Bunyan — Volume 01', 'Bunyan, John', '2004-07-01', 35, 'https://www.gutenberg.org/ebooks/6046', 'en', 686), +(866, 'Mademoiselle de la Seiglière, Volume 2 (of 2)', 'Sandeau, Jules', '2010-12-19', 67, 'https://www.gutenberg.org/ebooks/34693', 'fr', 687), +(867, 'Warwickshire: The Land of Shakespeare', 'Holland, Clive', '2014-11-16', 13, 'https://www.gutenberg.org/ebooks/47361', 'en', 688), +(868, 'The Adventures of Tom Sawyer, Part 2.', 'Twain, Mark', '2004-06-29', 19, 'https://www.gutenberg.org/ebooks/7194', 'en', 257), +(869, 'Kunstenaarsleven te Parijs: Roman uit het Bohème-leven', 'Murger, Henri', '2011-04-01', 10, 'https://www.gutenberg.org/ebooks/35741', 'nl', 689), +(870, 'Corticelli Home Needlework, 1898: A Manual of Art, Embroidery and Knitting', NULL, '2016-02-14', 104, 'https://www.gutenberg.org/ebooks/51204', 'en', 690), +(871, 'Folk-lore in Borneo\nA Sketch', 'Furness, William Henry', '2009-10-11', 16, 'https://www.gutenberg.org/ebooks/30233', 'en', 691), +(872, 'History of Sanitation', 'Cosgrove, J. J. (John Joseph)', '2015-02-21', 9, 'https://www.gutenberg.org/ebooks/48329', 'en', 692), +(873, 'Hypnerotomachia: The Strife of Loue in a Dreame', 'Colonna, Francesco', '2006-05-27', 113, 'https://www.gutenberg.org/ebooks/18459', 'en', 693), +(874, 'Ordeal by Battle', 'Oliver, Frederick Scott', '2017-05-24', 12, 'https://www.gutenberg.org/ebooks/54776', 'en', 335), +(875, 'The Dawn of Amateur Radio in the U.K. and Greece: A Personal View', 'Joly, Norman F.', '1993-05-01', 23, 'https://www.gutenberg.org/ebooks/66', 'en', 694), +(876, 'The Talking Horse, and Other Tales', 'Anstey, F.', '2008-11-16', 80, 'https://www.gutenberg.org/ebooks/27284', 'en', 179), +(877, 'A Brother To Dragons and Other Old-time Tales', 'Rives, Amélie', '2008-08-19', 28, 'https://www.gutenberg.org/ebooks/26356', 'en', 50), +(878, 'The Sleeper Awakes\nA Revised Edition of When the Sleeper Wakes', 'Wells, H. G. (Herbert George)', '2004-04-01', 128, 'https://www.gutenberg.org/ebooks/12163', 'en', 509), +(879, 'On-Line Data-Acquisition Systems in Nuclear Physics, 1969', 'National Research Council (U.S.). Ad Hoc Panel on On-line Computers in Nuclear Research', '2013-04-29', 15, 'https://www.gutenberg.org/ebooks/42613', 'en', 695), +(880, 'A Complete Account of the Settlement at Port Jackson', 'Tench, Watkin', '2006-05-08', 51, 'https://www.gutenberg.org/ebooks/3534', 'en', 696), +(881, 'A History of Nursery Rhymes', 'Green, Percy B.', '2007-12-28', 26, 'https://www.gutenberg.org/ebooks/24065', 'en', 697), +(882, 'The Five Bachelors', NULL, '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10250', 'en', 698), +(883, 'The Last Million: How They Invaded France—and England', 'Hay, Ian', '2018-07-28', 17, 'https://www.gutenberg.org/ebooks/57597', 'en', 699), +(884, 'The Soul Stealer', 'Thorne, Guy', '2012-08-17', 20, 'https://www.gutenberg.org/ebooks/40520', 'en', 26), +(885, 'A Journey in Other Worlds: A Romance of the Future', 'Astor, John Jacob', '1999-01-01', 110, 'https://www.gutenberg.org/ebooks/1607', 'en', 26), +(886, 'Melusine: Ein Liebesroman', 'Wassermann, Jakob', '2010-04-23', 22, 'https://www.gutenberg.org/ebooks/32100', 'de', 138), +(887, 'The Mania of the Nations on the Planet Mars and its Terrific Consequences\r\nA Combination of Fun and Wisdom', 'Calisch, James Howard', '2018-01-27', 9, 'https://www.gutenberg.org/ebooks/56445', 'en', 700), +(888, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 354, January 31, 1829', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11382', 'en', 133), +(889, 'Poésies Complètes - Tome 1', 'Gautier, Théophile', '2013-11-14', 28, 'https://www.gutenberg.org/ebooks/44180', 'fr', 701), +(890, 'Turned Adrift', 'Collingwood, Harry', '2008-03-17', 13, 'https://www.gutenberg.org/ebooks/24859', 'en', 702), +(891, 'Zanzibar Tales: Told by Natives of the East Coast of Africa', NULL, '2011-09-18', 48, 'https://www.gutenberg.org/ebooks/37472', 'en', 703), +(892, 'Agamemnon: Murhenäytelmä', 'Aeschylus', '2016-09-24', 22, 'https://www.gutenberg.org/ebooks/53137', 'fi', 704), +(893, 'The Tysons (Mr. and Mrs. Nevill Tyson)', 'Sinclair, May', '2005-04-28', 24, 'https://www.gutenberg.org/ebooks/15722', 'en', 705), +(894, 'The Diary of a Nobody', 'Grossmith, Weedon', '2007-05-22', 10, 'https://www.gutenberg.org/ebooks/21517', 'en', 706), +(895, 'Jenseits der Schriftkultur — Band 5', 'Nadin, Mihai', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4375', 'de', 216), +(896, 'Peukaloisen retket villihanhien seurassa', 'Lagerlöf, Selma', '2014-03-02', 7, 'https://www.gutenberg.org/ebooks/45052', 'fi', 707), +(897, 'Memorandum ácerca das expedições realizadas na Zambesia septentrional durante os annos de 1885 a 1891', 'Wiese, Carl', '2011-02-19', 15, 'https://www.gutenberg.org/ebooks/35325', 'pt', 708), +(898, 'Essentials in Conducting', 'Gehrkens, Karl Wilson', '2007-08-25', 35, 'https://www.gutenberg.org/ebooks/22392', 'en', 661), +(899, 'The Girls\' Book of Famous Queens', 'Farmer, Lydia Hoyt', '2016-04-05', 30, 'https://www.gutenberg.org/ebooks/51660', 'en', 709), +(900, 'Dialogue of Comfort Against Tribulation\nWith Modifications To Obsolete Language By Monica Stevens', 'More, Thomas, Saint', '2005-11-16', 40, 'https://www.gutenberg.org/ebooks/17075', 'en', 710), +(901, 'Blackwood\'s Edinburgh Magazine, No. CCCXXXVI. October, 1843. Vol. LIV.', 'Various', '2007-10-29', 25, 'https://www.gutenberg.org/ebooks/23240', 'en', 711), +(902, 'The Life, Adventures & Piracies of the Famous Captain Singleton', 'Defoe, Daniel', '2004-09-01', 155, 'https://www.gutenberg.org/ebooks/6422', 'en', 324), +(903, 'Green Valley', 'Reynolds, Katharine Yirsa', '2006-07-10', 11, 'https://www.gutenberg.org/ebooks/18801', 'en', 712), +(904, 'A Sister of the Red Cross: A Tale of the South African War', 'Meade, L. T.', '2014-12-19', 18, 'https://www.gutenberg.org/ebooks/47705', 'en', 713), +(905, 'Free Air', 'Lewis, Sinclair', '2008-09-30', 78, 'https://www.gutenberg.org/ebooks/26732', 'en', 714), +(906, 'The History of the Rise, Progress and Accomplishment of the Abolition of the African Slave Trade by the British Parliament (1808), Volume II', 'Clarkson, Thomas', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12507', 'en', 242), +(907, 'The Grizzly, Our Greatest Wild Animal', 'Mills, Enos A.', '2013-03-08', 14, 'https://www.gutenberg.org/ebooks/42277', 'en', 715), +(908, 'For John\'s Sake, and Other Stories.', 'Perram, Annie Frances', '2010-03-26', 13, 'https://www.gutenberg.org/ebooks/31785', 'en', 716), +(909, 'Human Nature, and Other Sermons', 'Butler, Joseph', '2002-03-01', 26, 'https://www.gutenberg.org/ebooks/3150', 'en', 717), +(910, 'La contessa di Karolystria: Storia tragicomica', 'Ghislanzoni, Antonio', '2006-02-24', 32, 'https://www.gutenberg.org/ebooks/17849', 'it', 61), +(911, 'Sovereign Grace: Its Source, Its Nature and Its Effects', 'Moody, Dwight Lyman', '2009-12-12', 22, 'https://www.gutenberg.org/ebooks/30657', 'en', 718), +(912, 'Memoirs of the Comtesse Du Barry\r\nWith Minute Details of Her Entire Career as Favorite of Louis XV', 'Lamothe-Langon, Etienne-Léon, baron de', '2000-02-01', 28, 'https://www.gutenberg.org/ebooks/2082', 'en', 719), +(913, 'Mons, Anzac and Kut', 'Herbert, Aubrey', '2017-03-09', 13, 'https://www.gutenberg.org/ebooks/54312', 'en', 720), +(914, 'Monotonie', 'Oriani, Alfredo', '2019-08-18', 151, 'https://www.gutenberg.org/ebooks/60127', 'it', 721), +(915, 'Warrior Race', 'Sheckley, Robert', '2009-07-30', 63, 'https://www.gutenberg.org/ebooks/29548', 'en', 26), +(916, 'The Oriental Republic of Uruguay at the World\'s Columbian Exhibition, Chicago, 1893', 'Pena, Carlos María de', '2013-06-05', 11, 'https://www.gutenberg.org/ebooks/42879', 'en', 722), +(917, 'Runoelmia', 'Kramsu, Kaarlo', '2005-07-30', 23, 'https://www.gutenberg.org/ebooks/16395', 'fi', 8), +(918, '\"Those Holy Fields.\" Palestine, Illustrated by Pen and Pencil', 'Manning, Samuel', '2016-03-14', 10, 'https://www.gutenberg.org/ebooks/51452', 'en', 723), +(919, 'Lord Tony\'s Wife: An Adventure of the Scarlet Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2011-01-30', 81, 'https://www.gutenberg.org/ebooks/35117', 'en', 724), +(920, 'Myths and Legends of Our Own Land — Volume 05 : Lights and shadows of the South', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 19, 'https://www.gutenberg.org/ebooks/6610', 'en', 725), +(921, 'The Marquis D\'Argenson: A Study in Criticism\nBeing the Stanhope Essay: Oxford, 1893', 'Ogle, Arthur', '2014-12-04', 5, 'https://www.gutenberg.org/ebooks/47537', 'en', 726), +(922, 'Sérénissime: roman contemporain', 'La Jeunesse, Ernest', '2015-11-30', 36, 'https://www.gutenberg.org/ebooks/50580', 'fr', 687), +(923, 'A Selection of Books published by Methuen and Co. Ltd., London, 36, Essex Street, W.C, September, 1911', 'Methuen & Co.', '2005-12-07', 7, 'https://www.gutenberg.org/ebooks/17247', 'en', 727), +(924, 'The Voyage of the \"Steadfast\": The Young Missionaries in the Pacific', 'Kingston, William Henry Giles', '2007-10-17', 19, 'https://www.gutenberg.org/ebooks/23072', 'en', 246), +(925, 'The Curate in Charge', 'Oliphant, Mrs. (Margaret)', '2013-02-07', 25, 'https://www.gutenberg.org/ebooks/42045', 'en', 95), +(926, 'The Kentons', 'Howells, William Dean', '2004-10-24', 30, 'https://www.gutenberg.org/ebooks/3362', 'en', 728), +(927, 'Anecdotes of Dogs', 'Jesse, Edward', '2008-09-01', 49, 'https://www.gutenberg.org/ebooks/26500', 'en', 729), +(928, 'The Grammar School Boys in Summer Athletics', 'Hancock, H. Irving (Harrie Irving)', '2004-06-25', 18, 'https://www.gutenberg.org/ebooks/12735', 'en', 730), +(929, 'La Isabelina', 'Baroja, Pío', '2017-02-06', 14, 'https://www.gutenberg.org/ebooks/54120', 'es', 731), +(930, '御製廣寒殿記', NULL, '2009-11-13', 26, 'https://www.gutenberg.org/ebooks/30465', 'zh', 732), +(931, 'Punchinello, Volume 1, No. 13, June 25, 1870', 'Various', '2006-01-01', 11, 'https://www.gutenberg.org/ebooks/9658', 'en', 372), +(932, 'The Golden Boys and Their New Electric Cell', 'Wyman, L. P. (Levi Parker)', '2013-07-12', 15, 'https://www.gutenberg.org/ebooks/43197', 'en', 557), +(933, 'The White House (Novels of Paul de Kock Volume XII)', 'Kock, Paul de', '2012-09-08', 16, 'https://www.gutenberg.org/ebooks/40712', 'en', 298), +(934, 'The Girl Scouts at Rocky Ledge; Or, Nora\'s Real Vacation', 'Garis, Lilian', '2012-01-18', 9, 'https://www.gutenberg.org/ebooks/38608', 'en', 733), +(935, 'Miscellaneous Papers', 'Dickens, Charles', '1998-08-01', 62, 'https://www.gutenberg.org/ebooks/1435', 'en', 20), +(936, 'Antoinette de Mirecourt\nMariage secret et Chagrins cachés', 'Leprohon, Mrs. (Rosanna Eleanor)', '2008-01-12', 24, 'https://www.gutenberg.org/ebooks/24257', 'fr', 65), +(937, 'The Iron Game\nA Tale of the War', 'Keenan, Henry F. (Henry Francis)', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/10062', 'en', 403), +(938, 'Harper\'s Young People, April 4, 1882\nAn Illustrated Weekly', 'Various', '2018-03-04', 2, 'https://www.gutenberg.org/ebooks/56677', 'en', 479), +(939, '春秋繁露', 'Dong, Zhongshu, active 2nd century B.C.', '2008-05-08', 39, 'https://www.gutenberg.org/ebooks/25385', 'zh', 734), +(940, 'Waterloo', 'Belloc, Hilaire', '2010-05-11', 59, 'https://www.gutenberg.org/ebooks/32332', 'en', 735), +(941, 'A System of Practical Medicine. By American Authors. Vol. 3\r\nDiseases of the Respiratory, Circulatory, and Hæmatopoietic Systems', NULL, '2016-10-17', 6, 'https://www.gutenberg.org/ebooks/53305', 'en', 736), +(942, 'Vingt Mille Lieues Sous Les Mers — Part 1', 'Verne, Jules', '2004-02-01', 28, 'https://www.gutenberg.org/ebooks/5095', 'fr', 737), +(943, 'Health: Five Lay Sermons to Working-People', 'Brown, John', '2011-10-05', 43, 'https://www.gutenberg.org/ebooks/37640', 'en', 295), +(944, 'Diary of Samuel Pepys — Volume 27: March 1663-64', 'Pepys, Samuel', '2004-11-30', 7, 'https://www.gutenberg.org/ebooks/4147', 'en', 738), +(945, 'Esilio', 'Negri, Ada', '2011-06-19', 16, 'https://www.gutenberg.org/ebooks/36792', 'it', 739), +(946, 'Doris Force at Locked Gates; Or, Saving a Mysterious Fortune', 'Duncan, Julia K.', '2014-03-29', 12, 'https://www.gutenberg.org/ebooks/45260', 'en', 557), +(947, 'Advice to Young Men\nAnd (Incidentally) to Young Women in the Middle and Higher Ranks of Life. In a Series of Letters, Addressed to a Youth, a Bachelor, a Lover, a Husband, a Father, a Citizen, or a Subject.', 'Cobbett, William', '2005-03-30', 52, 'https://www.gutenberg.org/ebooks/15510', 'en', 740), +(948, 'The Coxswain\'s Bride; also, Jack Frost and Sons; and, A Double Rescue', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 23, 'https://www.gutenberg.org/ebooks/21725', 'en', 324), +(949, 'Forty Years in the Wilderness of Pills and Powders\nCogitations and Confessions of an Aged Physician', 'Alcott, William A. (William Andrus)', '2010-10-05', 18, 'https://www.gutenberg.org/ebooks/34038', 'en', 741), +(950, 'Œuvres complètes de Chamfort (Tome 4)\r\nRecueillies et publiées, avec une notice historique sur la vie et les écrits de l\'auteur.', 'Chamfort, Sébastien-Roch-Nicolas', '2013-10-15', 26, 'https://www.gutenberg.org/ebooks/43956', 'fr', 742), +(951, 'Samantha at Coney Island, and a Thousand Other Islands', 'Holley, Marietta', '2009-04-01', 13, 'https://www.gutenberg.org/ebooks/28467', 'en', 743), +(952, 'The White Ladies of Worcester: A Romance of the Twelfth Century', 'Barclay, Florence L. (Florence Louisa)', '2005-07-27', 17, 'https://www.gutenberg.org/ebooks/16368', 'en', 744), +(953, 'The Philippine Islands, 1493-1898, Volume 33, 1519-1522\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', 'Pigafetta, Antonio', '2013-06-05', 1095, 'https://www.gutenberg.org/ebooks/42884', 'en', 745), +(954, 'Letters That Have Helped Me', 'Keightley, Julia Wharton Lewis Campbell Ver Planck', '2017-10-28', 7, 'https://www.gutenberg.org/ebooks/55833', 'en', 746), +(955, 'Petals Plucked from Sunny Climes', 'Brooks, A. M. (Abbie M.)', '2014-07-26', 20, 'https://www.gutenberg.org/ebooks/46418', 'en', 747), +(956, 'Lectures on the Origin and Growth of Religion as Illustrated by the Native Religions of Mexico and Peru', 'Réville, Albert', '2010-12-31', 40, 'https://www.gutenberg.org/ebooks/34804', 'en', 748), +(957, 'Indian Heroes and Great Chieftains', 'Eastman, Charles Alexander', '2008-07-05', 117, 'https://www.gutenberg.org/ebooks/336', 'en', 749), +(958, 'My Life at Sea\r\nbeing a \"yarn\" loosely spun for the purpose of holding together certain reminiscences of the transition period from sail to steam in the British mercantile marine (1863-1894)', 'Crutchley, William Caius', '2015-03-25', 8, 'https://www.gutenberg.org/ebooks/48582', 'en', 750), +(959, 'Two Maiden Aunts', 'Debenham, Mary H.', '2009-11-18', 11, 'https://www.gutenberg.org/ebooks/30498', 'en', 751), +(960, 'Authors and Friends', 'Fields, Annie', '2005-08-01', 18, 'https://www.gutenberg.org/ebooks/8777', 'en', 752), +(961, 'Nell, of Shorne Mills; or, One Heart\'s Burden', 'Garvice, Charles', '2007-10-11', 19, 'https://www.gutenberg.org/ebooks/22961', 'en', 61), +(962, 'Petrarch\'s Secret; or, the Soul\'s Conflict with Passion\r\nThree Dialogues Between Himself and S. Augustine', 'Petrarca, Francesco', '2015-07-16', 59, 'https://www.gutenberg.org/ebooks/49450', 'en', 753), +(963, 'Jaakko Cook\'in matkat Tyynellä merellä', 'Hassell, Antti Fredrik', '2006-09-19', 38, 'https://www.gutenberg.org/ebooks/19320', 'fi', 754), +(964, 'Les Contemporains, 3ème Série\r\nÉtudes et Portraits Littéraires', 'Lemaître, Jules', '2008-05-07', 25, 'https://www.gutenberg.org/ebooks/25378', 'fr', 629), +(965, 'The Four Epochs of Woman\'s Life; A Study in Hygiene', 'Galbraith, Anna M. (Anna Mary)', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/4986', 'en', 755), +(966, 'The Expositor\'s Bible: Judges and Ruth', 'Watson, Robert A. (Robert Alexander)', '2012-05-18', 24, 'https://www.gutenberg.org/ebooks/39727', 'en', 756), +(967, 'Bess of the Woods', 'Deeping, Warwick', '2018-08-24', 30, 'https://www.gutenberg.org/ebooks/57758', 'en', 757), +(968, 'Personal Memoirs of P. H. Sheridan, Volume 1, Part 1', 'Sheridan, Philip Henry', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/5854', 'en', 758), +(969, 'Dialstone Lane, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/11971', 'en', 759), +(970, 'The Land of Darkness\r\nAlong with Some Further Chapters in the Experiences of the Little Pilgrim', 'Oliphant, Mrs. (Margaret)', '2019-01-17', 23, 'https://www.gutenberg.org/ebooks/58710', 'en', 760), +(971, 'On Being Human', 'Wilson, Woodrow', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5068', 'en', 740), +(972, 'The Story of a Loaf of Bread', 'Wood, T. B. (Thomas Barlow)', '2016-08-16', 15, 'https://www.gutenberg.org/ebooks/52824', 'en', 761), +(973, 'Mrs. Thompson: A Novel', 'Maxwell, W. B. (William Babington)', '2012-04-23', 13, 'https://www.gutenberg.org/ebooks/39515', 'en', 762), +(974, 'William Gilbert, and Terrestial Magnetism in the Time of Queen Elizabeth\nA Discourse', 'Thompson, Silvanus P. (Silvanus Phillips)', '2014-06-05', 18, 'https://www.gutenberg.org/ebooks/45893', 'en', 763), +(975, 'The Government of God', 'Taylor, John', '2014-02-17', 53, 'https://www.gutenberg.org/ebooks/44941', 'en', 764), +(976, '金剛般若波羅蜜經', NULL, '2008-01-01', 32, 'https://www.gutenberg.org/ebooks/24098', 'zh', 765), +(977, '\'Tilda Jane: An Orphan in Search of a Home. A Story for Boys and Girls', 'Saunders, Marshall', '2016-05-07', 17, 'https://www.gutenberg.org/ebooks/52018', 'en', 766), +(978, 'Peeps At Many Lands: Australia', 'Fox, Frank', '2008-07-06', 34, 'https://www.gutenberg.org/ebooks/25976', 'en', 767), +(979, 'The Jesuit Missions : A Chronicle of the Cross in the Wilderness', 'Marquis, Thomas Guthrie', '2003-08-01', 26, 'https://www.gutenberg.org/ebooks/4388', 'en', 768), +(980, 'Rodman the Keeper: Southern Sketches', 'Woolson, Constance Fenimore', '2010-09-26', 22, 'https://www.gutenberg.org/ebooks/33813', 'en', 179), +(981, 'Sexueele Zeden in Woord en Beeld: De Humor in het Geslachtsleven', 'Vloten Elderinck, D. Ph. van', '2018-12-22', 37, 'https://www.gutenberg.org/ebooks/58522', 'nl', 769), +(982, 'Moriah\'s Mourning and Other Half-Hour Sketches', 'Stuart, Ruth McEnery', '2007-01-24', 19, 'https://www.gutenberg.org/ebooks/20438', 'en', 770), +(983, 'Ralph on the Overland Express; Or, The Trials and Triumphs of a Young Engineer', 'Chapman, Allen', '2009-05-01', 20, 'https://www.gutenberg.org/ebooks/28655', 'en', 771), +(984, 'Little Travels and Roadside Sketches', 'Thackeray, William Makepeace', '2006-03-27', 36, 'https://www.gutenberg.org/ebooks/2843', 'en', 772), +(985, 'The Iron Furrow', 'Shedd, George C. (George Clifford)', '2005-11-18', 17, 'https://www.gutenberg.org/ebooks/17088', 'en', 773), +(986, 'Good Indian', 'Bower, B. M.', '1997-06-01', 70, 'https://www.gutenberg.org/ebooks/938', 'en', 774), +(987, 'Madame Chrysantheme — Volume 1', 'Loti, Pierre', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3991', 'en', 775), +(988, 'England, Picturesque and Descriptive: A Reminiscence of Foreign Travel', 'Cook, Joel', '2009-08-24', 49, 'https://www.gutenberg.org/ebooks/29787', 'en', 776), +(989, 'Modern Flirtations: A Novel', 'Sinclair, Catherine', '2013-07-30', 13, 'https://www.gutenberg.org/ebooks/43358', 'en', 777), +(990, 'Twilight in Italy', 'Lawrence, D. H. (David Herbert)', '2005-12-01', 70, 'https://www.gutenberg.org/ebooks/9497', 'en', 778), +(991, 'Valitut teokset 1910-1922', 'Kaila, Eino', '2004-09-10', 18, 'https://www.gutenberg.org/ebooks/13428', 'fi', 779), +(992, 'Inaugural Address of Franklin Delano Roosevelt\r\nGiven in Washington, D.C. March 4th, 1933', 'Roosevelt, Franklin D. (Franklin Delano)', '1994-02-01', 12, 'https://www.gutenberg.org/ebooks/104', 'en', 780), +(993, 'La foire aux vanités, Tome I', 'Thackeray, William Makepeace', '2006-08-24', 23, 'https://www.gutenberg.org/ebooks/19112', 'fr', 781), +(994, 'Amiel\'s Journal: The Journal Intime of Henri-Frédéric Amiel', 'Amiel, Henri Frédéric', '2005-07-01', 114, 'https://www.gutenberg.org/ebooks/8545', 'en', 782), +(995, 'Shakespearean Tragedy: Lectures on Hamlet, Othello, King Lear, Macbeth', 'Bradley, A. C. (Andrew Cecil)', '2005-10-30', 426, 'https://www.gutenberg.org/ebooks/16966', 'en', 783), +(996, 'The Draw', 'Bixby, Jerome', '2010-03-25', 70, 'https://www.gutenberg.org/ebooks/31778', 'en', 784), +(997, 'The Cure of Rupture by Paraffin Injections', 'Miller, Charles Conrad', '2015-08-09', 8, 'https://www.gutenberg.org/ebooks/49662', 'en', 785), +(998, 'The Butterfly\'s Ball and the Grasshopper\'s Feast', 'Roscoe, William', '2007-03-20', 30, 'https://www.gutenberg.org/ebooks/20860', 'en', 786), +(999, 'Il dolore nell\'arte: discorso', 'Fogazzaro, Antonio', '2010-05-30', 23, 'https://www.gutenberg.org/ebooks/32599', 'it', 787); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(1000, 'Manuel de la politesse des usages du monde et du savoir-vivre', 'Rostaing, Jules', '2012-03-16', 21, 'https://www.gutenberg.org/ebooks/39171', 'fr', 788), +(1001, 'Schach von Wuthenow\nErzählung aus der Zeit des Regiments Gensdarmes', 'Fontane, Theodor', '2011-07-30', 36, 'https://www.gutenberg.org/ebooks/36905', 'de', 109), +(1002, 'Heidi osaa käyttää oppiansa: Kertomus Alpeilta', 'Spyri, Johanna', '2018-09-18', 5, 'https://www.gutenberg.org/ebooks/57932', 'fi', 789), +(1003, 'L\'Illustration, No. 2501, 31 Janvier 1891', 'Various', '2013-12-26', 3, 'https://www.gutenberg.org/ebooks/44519', 'fr', 150), +(1004, 'Aan de Zuidpool\r\nDe Aarde en haar Volken, 1913', 'Amundsen, Roald', '2004-12-06', 47, 'https://www.gutenberg.org/ebooks/14269', 'nl', 790), +(1005, 'Reminiscences: a Topographical Account of Market Lavington, Wilts, Its Past and Present Condition.\r\nAlso, the Rise and Progress of the Independent Church in That Place. And the Authentic History of David Saunders, the Pious Shepherd of Salisbury Plain.', 'Atley, Henry', '2018-10-21', 8, 'https://www.gutenberg.org/ebooks/58146', 'en', 791), +(1006, 'Die Deportirten', 'Schefer, Leopold', '2012-10-08', 9, 'https://www.gutenberg.org/ebooks/40985', 'de', 792), +(1007, 'The Broken Sword; Or, A Pictorial Page in Reconstruction', 'Worthington, D.', '2013-01-16', 12, 'https://www.gutenberg.org/ebooks/41857', 'en', 793), +(1008, 'Half Brothers', 'Stretton, Hesba', '2019-03-19', 16, 'https://www.gutenberg.org/ebooks/59094', 'en', 137), +(1009, 'Punch, or the London Charivari, Vol. 105, August 5th 1893', 'Various', '2011-05-19', 9, 'https://www.gutenberg.org/ebooks/36139', 'en', 134), +(1010, 'Mârkandeya Purâna, Books VII and VIII', NULL, '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/7169', 'en', 794), +(1011, 'Ninnoli', 'Rovetta, Gerolamo', '2009-03-01', 5, 'https://www.gutenberg.org/ebooks/28231', 'it', 474), +(1012, 'A Summary History of the Palazzo Dandolo\r\nNow Royal Hotel Danieli', 'Anonymous', '2004-10-26', 7, 'https://www.gutenberg.org/ebooks/13870', 'en', 795), +(1013, 'Voyages imaginaires, songes, visions et romans cabalistiques. Tome 35.', NULL, '2017-10-01', 21, 'https://www.gutenberg.org/ebooks/55659', 'fr', 323), +(1014, 'Anne of Green Gables', 'Montgomery, L. M. (Lucy Maud)', '2006-10-20', 172, 'https://www.gutenberg.org/ebooks/19576', 'en', 796), +(1015, 'Historical Miniatures', 'Strindberg, August', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7955', 'en', 797), +(1016, 'Ghosts', 'Ibsen, Henrik', '2005-05-01', 412, 'https://www.gutenberg.org/ebooks/8121', 'en', 798), +(1017, 'Rudiments of Conchology\nIntended as a familiar introduction to the science.', 'Venning, Mary Anne', '2015-06-14', 4, 'https://www.gutenberg.org/ebooks/49206', 'en', 799), +(1018, 'Southern Literature From 1579-1895\nA comprehensive review, with copious extracts and criticisms\nfor the use of schools and the general reader', 'Manly, Louise', '2008-11-16', 78, 'https://www.gutenberg.org/ebooks/27279', 'en', 800), +(1019, 'Mr. Standfast', 'Buchan, John', '1996-06-01', 278, 'https://www.gutenberg.org/ebooks/560', 'en', 801), +(1020, 'Il Sacro Macello Di Valtellina', 'Cantù, Cesare', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/6887', 'it', 802), +(1021, 'The Pictures; The Betrothing: Novels', 'Tieck, Ludwig', '2010-04-07', 17, 'https://www.gutenberg.org/ebooks/31912', 'en', 803), +(1022, 'Tanks in the Great War, 1914-1918', 'Fuller, J. F. C. (John Frederick Charles)', '2015-08-28', 32, 'https://www.gutenberg.org/ebooks/49808', 'en', 804), +(1023, 'Rock A Bye Library: A Book of Fables\nAmusement for Good Little Children', 'Unknown', '2007-09-08', 20, 'https://www.gutenberg.org/ebooks/22539', 'en', 195), +(1024, 'An Abridgment of the Architecture of Vitruvius\nContaining a System of the Whole Works of that Author', 'Vitruvius Pollio', '2009-01-24', 72, 'https://www.gutenberg.org/ebooks/27877', 'en', 805), +(1025, 'Wild Youth, Volume 1.', 'Parker, Gilbert', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6289', 'en', 332), +(1026, 'Supplement to Punch, or the London Charivari, September 16, 1914\nThe New Rake\'s Progress: Cartoons from \"Punch\" Illustrating the Kaiser\'s Career, 1888-1914', 'Various', '2009-02-04', 9, 'https://www.gutenberg.org/ebooks/28003', 'en', 806), +(1027, 'The Rocket: The Story of the Stephensons, Father and Son', 'Knight, Helen C. (Helen Cross)', '2015-10-03', 9, 'https://www.gutenberg.org/ebooks/50119', 'en', 807), +(1028, 'The Bible, Douay-Rheims, Book 13: 1 Paralipomenon\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8313', 'en', 808), +(1029, 'A Sketch of how \"The Diamond Anthem\" was Sung around the World\nThe 60th Anniversary of the Accession Day of Her Majesty Queen Victoria', 'Cumberland, Barlow', '2015-05-23', 5, 'https://www.gutenberg.org/ebooks/49034', 'en', 809), +(1030, 'A mester', 'Surányi, Miklós', '2006-11-09', 14, 'https://www.gutenberg.org/ebooks/19744', 'hu', 61), +(1031, 'Fables of John Gay (Somewhat Altered)', 'Gay, John', '2008-08-06', 20, 'https://www.gutenberg.org/ebooks/26199', 'en', 810), +(1032, 'Die Nackten: Eine Dichtung', 'Wolfenstein, Alfred', '2014-09-11', 9, 'https://www.gutenberg.org/ebooks/46840', 'de', 8), +(1033, 'In the Misty Seas: A Story of the Sealers of Behring Strait', 'Bindloss, Harold', '2015-01-18', 18, 'https://www.gutenberg.org/ebooks/47992', 'en', 811), +(1034, 'A Young Girl\'s Diary', NULL, '2006-01-21', 147, 'https://www.gutenberg.org/ebooks/752', 'en', 812), +(1035, 'The Olden Time Series, Vol. 6: Literary Curiosities\nGleanings Chiefly from Old Newspapers of Boston and Salem, Massachusetts', 'Brooks, Henry M. (Henry Mason)', '2006-06-26', 17, 'https://www.gutenberg.org/ebooks/18696', 'en', 813), +(1036, 'Lectures on Evolution\r\nEssay #3 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 29, 'https://www.gutenberg.org/ebooks/2629', 'en', 814), +(1037, 'A Visit to Newfoundland', 'Branch, Mary Lydia', '2016-01-14', 10, 'https://www.gutenberg.org/ebooks/50925', 'en', 815), +(1038, 'Oriental Religions and Christianity\nA Course of Lectures Delivered on the Ely Foundation Before the\nStudents of Union Theological Seminary, New York, 1891', 'Ellinwood, Frank F. (Frank Field)', '2005-02-01', 14, 'https://www.gutenberg.org/ebooks/14867', 'en', 816), +(1039, 'Seeds of Michigan Weeds', 'Beal, W. J. (William James)', '2010-09-09', 15, 'https://www.gutenberg.org/ebooks/33679', 'en', 817), +(1040, 'A Witch of the Hills, v. 1 [of 2]', 'Warden, Florence', '2011-12-13', 23, 'https://www.gutenberg.org/ebooks/38291', 'en', 61), +(1041, 'La Espuma\r\nObras completas de D. Armando Palacio Valdés, Tomo 7.', 'Palacio Valdés, Armando', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11529', 'es', 818), +(1042, 'Dan Carter and the Haunted Castle', 'Wirt, Mildred A. (Mildred Augustine)', '2012-11-02', 15, 'https://www.gutenberg.org/ebooks/41259', 'en', 557), +(1043, 'The Sea: Its Stirring Story of Adventure, Peril, & Heroism. Volume 3', 'Whymper, Frederick', '2012-04-01', 23, 'https://www.gutenberg.org/ebooks/39343', 'en', 819), +(1044, '\"Speaking of Operations--\"', 'Cobb, Irvin S. (Irvin Shrewsbury)', '1999-09-01', 18, 'https://www.gutenberg.org/ebooks/1890', 'en', 820), +(1045, 'Ennustus y.m. novelleja', 'Schnitzler, Arthur', '2018-11-28', 7, 'https://www.gutenberg.org/ebooks/58374', 'fi', 821), +(1046, 'When Buffalo Ran', 'Grinnell, George Bird', '2005-02-27', 23, 'https://www.gutenberg.org/ebooks/15189', 'en', 822), +(1047, 'Neotropical Hylid Frogs, Genus Smilisca', 'Duellman, William Edward', '2011-10-22', 16, 'https://www.gutenberg.org/ebooks/37823', 'en', 823), +(1048, 'Punch, or the London Charivari, Vol. 104, April 29, 1893', 'Various', '2008-01-23', 7, 'https://www.gutenberg.org/ebooks/24408', 'en', 134), +(1049, 'Mémoires de Vidocq, chef de la police de Sureté jusqu\'en 1827, tome I', 'Vidocq, Eugène François', '2011-11-19', 24, 'https://www.gutenberg.org/ebooks/38057', 'fr', 824), +(1050, 'Evangeline: Traduction du poème Acadien de Longfellow', 'Longfellow, Henry Wadsworth', '2007-03-24', 9, 'https://www.gutenberg.org/ebooks/20894', 'fr', 825), +(1051, 'Op Eigen Wieken', 'Alcott, Louisa May', '2007-06-26', 23, 'https://www.gutenberg.org/ebooks/21946', 'nl', 378), +(1052, 'Across the Cameroons: A Story of War and Adventure', 'Gilson, Charles', '2012-03-17', 96, 'https://www.gutenberg.org/ebooks/39185', 'en', 323), +(1053, 'The Romance of the Harem', 'Leonowens, Anna Harriette', '2017-11-22', 44, 'https://www.gutenberg.org/ebooks/56028', 'en', 826), +(1054, 'History of the Great Reformation, Volume 4', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2012-10-08', 49, 'https://www.gutenberg.org/ebooks/40971', 'en', 827), +(1055, 'Traité élémentaire de chimie, tome 2\r\nPrésenté dans un ordre nouveau et d\'après les découvertes modernes; avec Figures', 'Lavoisier, Antoine Laurent', '2016-07-03', 8, 'https://www.gutenberg.org/ebooks/52488', 'fr', 292), +(1056, 'The Disappearance of Kimball Webb', 'Wright, Rowland', '2019-03-14', 12, 'https://www.gutenberg.org/ebooks/59060', 'en', 828), +(1057, 'Histoire des voyages de Scarmentado', 'Voltaire', '2003-12-01', 23, 'https://www.gutenberg.org/ebooks/4718', 'fr', 642), +(1058, 'Meine Wasser-Kur\r\nDurch mehr als 40 Jahre erprobt und geschrieben zur Heilung der Krankheiten und Erhaltung der Gesundheit', 'Kneipp, Sebastian', '2018-03-22', 24, 'https://www.gutenberg.org/ebooks/56814', 'de', 829), +(1059, 'A History of Indian Philosophy, Volume 1', 'Dasgupta, Surendranath', '2004-07-20', 281, 'https://www.gutenberg.org/ebooks/12956', 'en', 683), +(1060, 'Christian Phrenology: A Guide to Self-Knowledge', 'Bunney, Joseph', '2011-04-01', 9, 'https://www.gutenberg.org/ebooks/35748', 'en', 830), +(1061, 'There Will Be School Tomorrow', 'Thiessen, V. E.', '2009-07-05', 28, 'https://www.gutenberg.org/ebooks/29317', 'en', 831), +(1062, 'The Black Pearl', 'Woodrow, Wilson, Mrs.', '2005-12-30', 16, 'https://www.gutenberg.org/ebooks/17418', 'en', 832), +(1063, 'Some Adventures of Mr. Surelock Keys', 'Beeman, Herbert', '2014-11-16', 25, 'https://www.gutenberg.org/ebooks/47368', 'en', 128), +(1064, 'The History of Sir Charles Grandison, Volume 4 (of 7)', 'Richardson, Samuel', '2004-10-27', 40, 'https://www.gutenberg.org/ebooks/13884', 'en', 258), +(1065, 'Amendments to the United States Constitution', 'United States', '2006-10-20', 4, 'https://www.gutenberg.org/ebooks/19582', 'en', 833), +(1066, 'Adventures of Sherlock Holmes\nIllustrated', 'Doyle, Arthur Conan', '2015-02-20', 1842, 'https://www.gutenberg.org/ebooks/48320', 'en', 834), +(1067, 'Adventures of Huckleberry Finn', 'Twain, Mark', '2005-09-01', 32, 'https://www.gutenberg.org/ebooks/9007', 'en', 835), +(1068, 'Mark Twain', 'Henderson, Archibald', '2004-11-01', 22, 'https://www.gutenberg.org/ebooks/6873', 'en', 836), +(1069, 'Twilight Stories', NULL, '1996-07-01', 198, 'https://www.gutenberg.org/ebooks/594', 'en', 179), +(1070, 'Hawaiian Folk Tales\nA Collection of Native Legends', NULL, '2006-05-25', 182, 'https://www.gutenberg.org/ebooks/18450', 'en', 837), +(1071, 'Brief Reflections relative to the Emigrant French Clergy', 'Burney, Fanny', '2009-06-15', 8, 'https://www.gutenberg.org/ebooks/29125', 'en', 838), +(1072, '\'Firebrand\' Trevison', 'Seltzer, Charles Alden', '2008-10-18', 38, 'https://www.gutenberg.org/ebooks/26951', 'en', 315), +(1073, 'Stories of Exile', NULL, '2014-06-24', 14, 'https://www.gutenberg.org/ebooks/46088', 'en', 839), +(1074, 'Napoleon Geschetst\nTweede omgewerkte druk', 'Chappuis, Herman Théodore', '2009-01-25', 15, 'https://www.gutenberg.org/ebooks/27883', 'nl', 840), +(1075, 'Fairy Tales from the German Forests', 'Arndt, Margaret', '2010-01-02', 29, 'https://www.gutenberg.org/ebooks/30834', 'en', 841), +(1076, 'The Lost Dispatch', 'Anonymous', '2016-04-19', 7, 'https://www.gutenberg.org/ebooks/51803', 'en', 444), +(1077, 'Astounding Stories of Super-Science, November, 1930', 'Various', '2009-09-06', 112, 'https://www.gutenberg.org/ebooks/29919', 'en', 842), +(1078, 'Adrienne Toner: A Novel', 'Sedgwick, Anne Douglas', '2013-03-29', 14, 'https://www.gutenberg.org/ebooks/42428', 'en', 843), +(1079, 'Preliminary Announcement & List of Members\r\nSociety for Pure English, Tract 01 (1919)', 'Society for Pure English', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/12358', 'en', 844), +(1080, 'Frank Armstrong at College', 'Colton, Matthew M.', '2015-01-13', 12, 'https://www.gutenberg.org/ebooks/47966', 'en', 845), +(1081, 'The Tale of Buster Bumblebee', 'Bailey, Arthur Scott', '2006-06-23', 45, 'https://www.gutenberg.org/ebooks/18662', 'en', 846), +(1082, 'The Green Goddess', 'Miln, Louise Jordan', '2015-01-30', 18, 'https://www.gutenberg.org/ebooks/48112', 'en', 847), +(1083, 'Le féminisme français I\r\nL\'émancipation individuelle et sociale de la femme', 'Turgeon, Charles Marie Joseph', '2009-09-17', 21, 'https://www.gutenberg.org/ebooks/30008', 'fr', 848), +(1084, 'A Virtuoso\'s Collection (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9235', 'en', 179), +(1085, 'My Life in Many States and in Foreign Lands, Dictated in My Seventy-Fourth Year', 'Train, George Francis', '2011-12-10', 18, 'https://www.gutenberg.org/ebooks/38265', 'en', 849), +(1086, 'Prince Jan, St. Bernard', 'Hooker, Forrestine C. (Forrestine Cooper)', '2005-02-03', 13, 'https://www.gutenberg.org/ebooks/14893', 'en', 729), +(1087, 'The Mirror of the Sea', 'Conrad, Joseph', '1997-10-01', 117, 'https://www.gutenberg.org/ebooks/1058', 'en', 850), +(1088, 'An Englishwoman\'s Love-Letters', 'Housman, Laurence', '2005-05-30', 120, 'https://www.gutenberg.org/ebooks/15941', 'en', 61), +(1089, 'Progetto filosofico di una completa riforma del culto e dell\'educazione politico-morale del popolo ebreo, Tomo I (of 2)', 'Fernando, Aron', '2016-12-19', 17, 'https://www.gutenberg.org/ebooks/53768', 'it', 851), +(1090, 'A Short List of Scientific Books Published and Sold by E. & F. N. Spon, Limited. September 1909', 'E. & F. N. Spon', '2018-11-29', 8, 'https://www.gutenberg.org/ebooks/58380', 'en', 852), +(1091, 'Hero Tales from American History', 'Lodge, Henry Cabot', '1999-08-01', 114, 'https://www.gutenberg.org/ebooks/1864', 'en', 853), +(1092, 'Benjamin Franklin', 'Morse, John Torrey', '2007-05-07', 21, 'https://www.gutenberg.org/ebooks/21348', 'en', 854), +(1093, 'Firth\'s World', 'Cox, Irving E.', '2019-04-11', 45, 'https://www.gutenberg.org/ebooks/59252', 'en', 26), +(1094, 'Poems and Songs', 'Bjørnson, Bjørnstjerne', '2004-10-01', 19, 'https://www.gutenberg.org/ebooks/6619', 'en', 8), +(1095, 'The Bears of Blue River', 'Major, Charles', '2017-06-15', 42, 'https://www.gutenberg.org/ebooks/54915', 'en', 76), +(1096, 'Baby Nightcaps', 'Fanny, Aunt', '2009-04-04', 11, 'https://www.gutenberg.org/ebooks/28493', 'en', 388), +(1097, 'Some Protective Designs of the Dakota', 'Wissler, Clark', '2015-12-02', 25, 'https://www.gutenberg.org/ebooks/50589', 'en', 855), +(1098, 'Mildred Keith', 'Finley, Martha', '2013-06-04', 28, 'https://www.gutenberg.org/ebooks/42870', 'en', 31), +(1099, 'A Walk from London to Fulham', 'Croker, Thomas Crofton', '2009-07-29', 19, 'https://www.gutenberg.org/ebooks/29541', 'en', 856), +(1100, 'Navaho Houses\r\nSeventeenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1895-1896, Government Printing Office, Washington, 1898, pages 469-518', 'Mindeleff, Cosmos', '2006-04-19', 40, 'https://www.gutenberg.org/ebooks/18206', 'en', 857), +(1101, 'Sixteen years in Siberia: Some experiences of a Russian revolutionist', 'Deich, L. G. (Lev Grigor\'evich)', '2017-02-07', 22, 'https://www.gutenberg.org/ebooks/54129', 'en', 858), +(1102, 'The Peacock and Parrot, on their Tour to Discover the Author of \"The Peacock At Home\"', 'Unknown', '2007-12-13', 3, 'https://www.gutenberg.org/ebooks/23847', 'en', 859), +(1103, 'Racconti politici', 'Ghislanzoni, Antonio', '2015-03-24', 7, 'https://www.gutenberg.org/ebooks/48576', 'it', 860), +(1104, 'A Child-World', 'Riley, James Whitcomb', '2006-01-01', 13, 'https://www.gutenberg.org/ebooks/9651', 'en', 861), +(1105, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 05', 'Dante Alighieri', '2004-08-07', 13, 'https://www.gutenberg.org/ebooks/8783', 'en', 365), +(1106, 'Miss Pat at School', 'Ginther, Pemberton', '2007-10-16', 18, 'https://www.gutenberg.org/ebooks/22995', 'en', 862), +(1107, 'Victorian Ode for Jubilee Day, 1897', 'Thompson, Francis', '2011-04-20', 20, 'https://www.gutenberg.org/ebooks/35922', 'en', 863), +(1108, 'Journal of the Third Voyage for the Discovery of a North-West Passage', 'Parry, William Edward, Sir', '2008-09-02', 14, 'https://www.gutenberg.org/ebooks/26509', 'en', 864), +(1109, 'Frederick Chopin, as a Man and Musician — Volume 2', 'Niecks, Frederick', '2004-01-01', 30, 'https://www.gutenberg.org/ebooks/4972', 'en', 392), +(1110, 'L\'Histoire Des Vaudois\nFrom Authentic Details of the Valdenses', 'Bresse, J.', '2012-01-17', 23, 'https://www.gutenberg.org/ebooks/38601', 'en', 865), +(1111, 'Inventions of the Great War', 'Bond, A. Russell (Alexander Russell)', '2014-04-03', 19, 'https://www.gutenberg.org/ebooks/45269', 'en', 866), +(1112, 'Russian Lyrics', NULL, '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11985', 'en', 867), +(1113, 'Index of the Project Gutenberg Works of Various Authors on Napoleon Bonaparte', 'Various', '2019-05-30', 26, 'https://www.gutenberg.org/ebooks/59636', 'en', 198), +(1114, 'Representative Plays by American Dramatists: 1856-1911: Love in \'76\nAn Incident of the Revolution', 'Bunce, Oliver Bell', '2005-04-01', 4, 'https://www.gutenberg.org/ebooks/15519', 'en', 868), +(1115, 'My Native Land\r\nThe United States: its Wonders, its Beauties, and its People; with Descriptive Notes, Character Sketches, Folk Lore, Traditions, Legends and History, for the Amusement of the Old and the Instruction of the Young', 'Cox, James', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10857', 'en', 869), +(1116, 'Love Letters of a Violinist, and Other Poems', 'Mackay, Eric', '2011-10-06', 22, 'https://www.gutenberg.org/ebooks/37649', 'en', 8), +(1117, 'Tales of the Caravan, Inn, and Palace', 'Hauff, Wilhelm', '2010-04-24', 27, 'https://www.gutenberg.org/ebooks/32109', 'en', 870), +(1118, 'Buffon\'s Natural History. Volume 09 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-06-03', 37, 'https://www.gutenberg.org/ebooks/45867', 'en', 871), +(1119, 'Smês esko - slováckych písní - cis 1', 'Lusk, Milan', '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10259', 'en', 872), +(1120, 'A Soldier of the Legion\nAn Englishman\'s Adventures Under the French Flag in Algeria and Tonquin', 'Manington, George', '2017-01-06', 27, 'https://www.gutenberg.org/ebooks/53902', 'en', 873), +(1121, 'Notes and Queries, Vol. IV, Number 97, September 6, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-12-28', 6, 'https://www.gutenberg.org/ebooks/38433', 'en', 105), +(1122, 'The Complete Works of Nathaniel Hawthorne, Appendix to Volume XII: Tales, Sketches, and other Papers by Nathaniel Hawthorne with a Biographical Sketch by George Parsons Lathrop\nBiographical Sketch of Nathaniel Hawthorne', 'Lathrop, George Parsons', '2012-08-18', 23, 'https://www.gutenberg.org/ebooks/40529', 'en', 874), +(1123, 'What a Man Wills', 'Vaizey, George de Horne, Mrs.', '2010-06-20', 29, 'https://www.gutenberg.org/ebooks/32935', 'en', 179), +(1124, 'The Drivers', 'Ludwig, Edward W.', '2019-05-01', 45, 'https://www.gutenberg.org/ebooks/59404', 'en', 875), +(1125, 'Thrilling Narratives of Mutiny, Murder and Piracy\r\nA weird series of tales of shipwreck and disaster, from the earliest part of the century to the present time, with accounts of providential escapes and heart-rending fatalities.', 'Anonymous', '2008-07-06', 96, 'https://www.gutenberg.org/ebooks/25982', 'en', 750), +(1126, 'Florida: Past and present\r\ntogether with notes from Sunland, on the Manatee River, Gulf Coast of South Florida: its climate, soil, and productions', 'Upham, Samuel C. (Samuel Curtis)', '2013-11-15', 17, 'https://www.gutenberg.org/ebooks/44189', 'en', 876), +(1127, 'Lourdes', 'Zola, Émile', '2008-03-16', 19, 'https://www.gutenberg.org/ebooks/24850', 'fr', 298), +(1128, 'The Blue Man\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 15, 'https://www.gutenberg.org/ebooks/23249', 'en', 877), +(1129, 'Yrjö Aukusti Wallin ja hänen matkansa Arabiassa', 'Krohn, Julius', '2006-07-11', 18, 'https://www.gutenberg.org/ebooks/18808', 'fi', 878), +(1130, 'The Lamps of the Angels', 'Sabia, Richard', '2016-04-06', 42, 'https://www.gutenberg.org/ebooks/51669', 'en', 179), +(1131, 'Cosmopolis — Volume 3', 'Bourget, Paul', '2003-04-01', 8, 'https://www.gutenberg.org/ebooks/3965', 'en', 58), +(1132, 'Legends of the Wailuku', 'Hapai, Charlotte', '2009-08-23', 23, 'https://www.gutenberg.org/ebooks/29773', 'en', 879), +(1133, 'The Missionary: An Indian Tale; vol. III', 'Morgan, Lady (Sydney)', '2015-04-19', 3, 'https://www.gutenberg.org/ebooks/48744', 'en', 880), +(1134, 'De la télépathie: Étude sur la transmission de la pensée', 'Hureau, Émile', '2006-02-23', 21, 'https://www.gutenberg.org/ebooks/17840', 'fr', 102), +(1135, 'The Under Dog', 'Smith, Francis Hopkinson', '2005-12-01', 37, 'https://www.gutenberg.org/ebooks/9463', 'en', 61), +(1136, 'Les loups de Paris\r\nII. Les assises rouges', 'Lermina, Jules', '2006-03-21', 43, 'https://www.gutenberg.org/ebooks/18034', 'fr', 560), +(1137, 'On the King\'s Service: Inward Glimpses of Men at Arms', 'Logan, Innes', '2005-11-03', 20, 'https://www.gutenberg.org/ebooks/16992', 'en', 881), +(1138, 'The Hermit of Far End', 'Pedler, Margaret', '2006-04-06', 26, 'https://www.gutenberg.org/ebooks/3159', 'en', 95), +(1139, 'The Gods of the North: an epic poem', 'Oehlenschläger, Adam', '2015-08-13', 21, 'https://www.gutenberg.org/ebooks/49696', 'en', 882), +(1140, 'The Beast in the Jungle', 'James, Henry', '1997-11-01', 188, 'https://www.gutenberg.org/ebooks/1093', 'en', 109), +(1141, 'The Man Thou Gavest', 'Comstock, Harriet T. (Harriet Theresa)', '2005-02-01', 6, 'https://www.gutenberg.org/ebooks/14858', 'en', 61), +(1142, 'The Arena, Volume 18, No. 93, August, 1897', 'Various', '2010-09-05', 26, 'https://www.gutenberg.org/ebooks/33646', 'en', 883), +(1143, 'La Divina Comedia', 'Dante Alighieri', '2018-06-10', 403, 'https://www.gutenberg.org/ebooks/57303', 'es', 884), +(1144, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 380, July 11, 1829', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11516', 'en', 133), +(1145, 'The Voyage of the Oregon from San Francisco to Santiago in 1898', 'Cross, R.', '2008-06-07', 12, 'https://www.gutenberg.org/ebooks/25723', 'en', 885), +(1146, 'Necessidade de um Ministerio de Instrucção Publica', 'Macedo, Antonio da Costa de Souza de', '2010-06-13', 19, 'https://www.gutenberg.org/ebooks/32794', 'pt', 886), +(1147, 'The American Revolution', 'Fiske, John', '2012-11-02', 98, 'https://www.gutenberg.org/ebooks/41266', 'en', 481), +(1148, 'Christmas Comes but Once a Year\r\nShowing What Mr. Brown Did, Thought, and Intended to Do, During That Festive Season.', 'Leighton, John', '2007-01-02', 27, 'https://www.gutenberg.org/ebooks/20251', 'en', 585), +(1149, 'Mohammed, The Prophet of Islam', 'Hayes, H. E. E. (Herbert Edward Elton)', '2004-11-16', 70, 'https://www.gutenberg.org/ebooks/14064', 'en', 468), +(1150, 'I Viaggi di Marco Polo\r\nUnica versione originale fedelmente riscontrata sul codice magliabeccano e sulle opere di Charton', 'Verne, Jules', '2014-01-19', 166, 'https://www.gutenberg.org/ebooks/44714', 'it', 887), +(1151, 'Without a Home', 'Roe, Edward Payson', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/5433', 'en', 888), +(1152, 'Note sur une Méthode pour la Réduction d\'Intégrales Définies\net sur son Application à Quelques Formules Spécials', 'Haan, D. Bierens de (David Bierens)', '2011-06-06', 15, 'https://www.gutenberg.org/ebooks/36334', 'fr', 889), +(1153, 'Förrädarens lön: Berättelse från sista finska kriget', 'Åberg, J. O. (Johan Olof)', '2016-07-29', 17, 'https://www.gutenberg.org/ebooks/52671', 'sv', 890), +(1154, 'Index of the Project Gutenberg Works of Herbert Allen Giles', 'Giles, Herbert Allen', '2019-04-17', 9, 'https://www.gutenberg.org/ebooks/59299', 'en', 198), +(1155, 'Adventures in Australia', 'Kingston, William Henry Giles', '2007-05-08', 23, 'https://www.gutenberg.org/ebooks/21383', 'en', 891), +(1156, 'Ahi, Giacometta, la tua ghirlandella!', 'Beltramelli, Antonio', '2015-08-31', 10, 'https://www.gutenberg.org/ebooks/49837', 'it', 892), +(1157, 'Le tre valli della Sicilia', 'Sangiorgio, Gaetano', '2007-09-04', 17, 'https://www.gutenberg.org/ebooks/22506', 'it', 61), +(1158, 'Montlivet', 'Smith, Alice Prescott', '2005-09-23', 10, 'https://www.gutenberg.org/ebooks/16733', 'en', 893), +(1159, 'Vasco, Our Little Panama Cousin', 'Pike, H. Lee M. (Henry Lee Mitchell)', '2014-06-20', 11, 'https://www.gutenberg.org/ebooks/46043', 'en', 894), +(1160, 'The Albany Depot : a Farce', 'Howells, William Dean', '2005-01-01', 12, 'https://www.gutenberg.org/ebooks/7364', 'en', 868), +(1161, 'How to Invest Money', 'Henry, George Garr', '2010-11-28', 97, 'https://www.gutenberg.org/ebooks/34463', 'en', 895), +(1162, 'Birds of the wave and woodland', 'Robinson, Phil', '2014-10-26', 19, 'https://www.gutenberg.org/ebooks/47191', 'en', 896), +(1163, 'Hymns of the Greek Church\nTranslated with Introduction and Notes', 'Brownlie, John', '2009-01-20', 16, 'https://www.gutenberg.org/ebooks/27848', 'en', 897), +(1164, 'Los Recursos de la Astucia', 'Baroja, Pío', '2015-10-04', 21, 'https://www.gutenberg.org/ebooks/50126', 'es', 731), +(1165, 'Across Asia on a Bicycle\r\nThe Journey of Two American Students from Constantinople to Peking', 'Sachtleben, William Lewis', '2010-01-29', 74, 'https://www.gutenberg.org/ebooks/31111', 'en', 898), +(1166, 'Fanny Lambert: A Novel', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-08-29', 19, 'https://www.gutenberg.org/ebooks/55454', 'en', 61), +(1167, 'Punch, or the London Charivari, Volume 99, September 6, 1890', 'Various', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12393', 'en', 134), +(1168, 'International Weekly Miscellany of Literature, Art and Science - Volume 1, No. 5, July 29, 1850', 'Various', '2004-08-21', 17, 'https://www.gutenberg.org/ebooks/13241', 'en', 899), +(1169, 'Die Ostereyer: Eine Erzählung zum Ostergeschenke für Kinder', 'Schmid, Christoph von', '2017-04-21', 29, 'https://www.gutenberg.org/ebooks/54586', 'de', 900), +(1170, 'The Jealousy of le Barbouillé\n(La Jalousie du Barbouillé)', 'Molière', '2008-10-28', 22, 'https://www.gutenberg.org/ebooks/27074', 'en', 901), +(1171, 'Memoirs of General William T. Sherman — Volume 1', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/2616', 'en', 758), +(1172, 'On the Popular Judgment\r\nThat may be Right in Theory, but does not Hold Good in the Praxis', 'Kant, Immanuel', '2009-05-01', 3, 'https://www.gutenberg.org/ebooks/28800', 'en', 902), +(1173, 'The Vegetable Garden: What, When, and How to Plant', 'Anonymous', '2013-08-22', 74, 'https://www.gutenberg.org/ebooks/43531', 'en', 903), +(1174, 'The Island of Yellow Sands: An Adventure and Mystery Story for Boys', 'Brill, Ethel C. (Ethel Claire)', '2014-07-13', 30, 'https://www.gutenberg.org/ebooks/46271', 'en', 676), +(1175, 'Mornings at Bow Street\r\nA Selection of the Most Humorous and Entertaining Reports which Have Appeared in the \'Morning Herald\'', 'Wight, J. (John)', '2011-04-07', 19, 'https://www.gutenberg.org/ebooks/35783', 'en', 904), +(1176, 'The Prince and the Pauper, Part 3.', 'Twain, Mark', '2004-07-03', 5, 'https://www.gutenberg.org/ebooks/7156', 'en', 905), +(1177, 'Bay: A Book of Poems', 'Lawrence, D. H. (David Herbert)', '2007-09-23', 44, 'https://www.gutenberg.org/ebooks/22734', 'en', 8), +(1178, 'Viola Tricolor', 'Storm, Theodor', '2005-09-01', 35, 'https://www.gutenberg.org/ebooks/8922', 'de', 906), +(1179, 'The Philippine Islands, 1493-1803 — Volume 05 of 55\r\n1582-1583\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Beginning of the Nineteenth Century', NULL, '2005-08-09', 225, 'https://www.gutenberg.org/ebooks/16501', 'en', 745), +(1180, 'Mestari Gert eli Lörpöttelevä parturi: Huvinäytelmä 1:ssä näytöksessä', 'Holberg, Ludvig', '2015-10-26', 13, 'https://www.gutenberg.org/ebooks/50314', 'fi', 907), +(1181, 'Let\'s Use Soybeans', 'University of Illinois (Urbana-Champaign campus). Extension Service in Agriculture and Home Economics', '2010-12-14', 28, 'https://www.gutenberg.org/ebooks/34651', 'en', 908), +(1182, 'Quartet in a minor, op. 41, no. 1', 'Schumann, Robert', '2004-07-01', 7, 'https://www.gutenberg.org/ebooks/6084', 'en', 909), +(1183, 'Le chevalier des dames du dolent fortuné', 'Dolent Fortuné', '2008-08-22', 17, 'https://www.gutenberg.org/ebooks/26394', 'fr', 701), +(1184, 'The German Spy in America\nThe Secret Plotting of German Spies in the United States and the Inside Story of the Sinking of the Lusitania', 'Jones, John Price', '2017-10-02', 10, 'https://www.gutenberg.org/ebooks/55666', 'en', 910), +(1185, 'The Mind of the Child, Part II\nThe Development of the Intellect, International Education\nSeries Edited By William T. Harris, Volume IX.', 'Preyer, William T.', '2006-10-16', 46, 'https://www.gutenberg.org/ebooks/19549', 'en', 911), +(1186, 'The Mentor: Makers of American Fiction, Vol. 6, Num. 14, Serial No. 162, September 1, 1918', 'Maurice, Arthur Bartlett', '2015-06-20', 3, 'https://www.gutenberg.org/ebooks/49239', 'en', 912), +(1187, 'The Demand and the Supply of Increased Efficiency in the Negro Ministry\nThe American Negro Academy. Occasional Papers No. 13', 'Moorland, Jesse Edward', '2010-02-18', 6, 'https://www.gutenberg.org/ebooks/31323', 'en', 913), +(1188, 'Black Bartlemy\'s Treasure', 'Farnol, Jeffery', '2000-12-01', 32, 'https://www.gutenberg.org/ebooks/2424', 'en', 759), +(1189, 'The Business of Life', 'Chambers, Robert W. (Robert William)', '2013-09-12', 23, 'https://www.gutenberg.org/ebooks/43703', 'en', 914), +(1190, 'Mr. Trunnell, Mate of the Ship \"Pirate\"', 'Hains, T. Jenkins (Thornton Jenkins)', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/13073', 'en', 324), +(1191, 'Waiting for Daylight', 'Tomlinson, H. M. (Henry Major)', '2008-11-12', 34, 'https://www.gutenberg.org/ebooks/27246', 'en', 472), +(1192, 'Michelangelo', 'Knackfuss, H. (Hermann)', '2018-05-10', 13, 'https://www.gutenberg.org/ebooks/57131', 'de', 915), +(1193, 'Baraboo, Dells, and Devil\'s Lake Region', 'Cole, Harry Ellsworth', '2012-07-10', 9, 'https://www.gutenberg.org/ebooks/40186', 'en', 916), +(1194, 'The master of St. Benedict\'s, Vol. 2 (of 2)', 'St. Aubyn, Alan', '2019-02-23', 2, 'https://www.gutenberg.org/ebooks/58945', 'en', 917), +(1195, 'La horda', 'Blasco Ibáñez, Vicente', '2010-08-20', 25, 'https://www.gutenberg.org/ebooks/33474', 'es', 918), +(1196, 'New Poems', 'Roberts, Charles G. D., Sir', '2019-07-10', 51, 'https://www.gutenberg.org/ebooks/59897', 'en', 919), +(1197, 'Cours familier de Littérature - Volume 07', 'Lamartine, Alphonse de', '2012-10-14', 18, 'https://www.gutenberg.org/ebooks/41054', 'fr', 920), +(1198, 'Roberta', 'Zùccoli, Luciano', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11724', 'it', 860), +(1199, 'Ballads of Mystery and Miracle and Fyttes of Mirth\nPopular Ballads of the Olden Times - Second Series', 'Sidgwick, Frank', '2008-05-18', 13, 'https://www.gutenberg.org/ebooks/25511', 'en', 921), +(1200, 'Report on the Radiolaria Collected by H.M.S. Challenger During the Years 1873-1876, Second Part: Subclass Osculosa; Index\nReport on the Scientific Results of the Voyage of H.M.S. Challenger During the Years 1873-76, Vol. XVIII', 'Haeckel, Ernst', '2013-12-28', 8, 'https://www.gutenberg.org/ebooks/44526', 'en', 922), +(1201, 'Jan of the Windmill: A Story of the Plains', 'Ewing, Juliana Horatia Gatty', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/5601', 'en', 153), +(1202, 'Theodoric the Goth: Barbarian Champion of Civilisation', 'Hodgkin, Thomas', '2006-12-09', 47, 'https://www.gutenberg.org/ebooks/20063', 'en', 923), +(1203, 'Den Fallna: Berättelse', 'Randelin, Wendela', '2016-11-24', 31, 'https://www.gutenberg.org/ebooks/53591', 'sv', 61), +(1204, 'The Bell in the Fog and Other Stories', 'Atherton, Gertrude Franklin Horn', '2004-12-04', 53, 'https://www.gutenberg.org/ebooks/14256', 'en', 179), +(1205, 'The Purpose of History', 'Woodbridge, Frederick James Eugene', '2018-10-28', 8, 'https://www.gutenberg.org/ebooks/58179', 'en', 924), +(1206, 'Palmetto-Leaves', 'Stowe, Harriet Beecher', '2012-06-11', 34, 'https://www.gutenberg.org/ebooks/39972', 'en', 925), +(1207, 'The Real Adventure', 'Webster, Henry Kitchell', '2005-03-16', 28, 'https://www.gutenberg.org/ebooks/15384', 'en', 109), +(1208, 'Chronique du crime et de l\'innocence, tome 4/8\r\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2016-06-30', 21, 'https://www.gutenberg.org/ebooks/52443', 'fr', 824), +(1209, 'Ιστορία του Ιωάννου Καποδιστρίου Κυβερνήτου της Ελλάδος', 'Euangelides, Tryphon E.', '2013-01-18', 14, 'https://www.gutenberg.org/ebooks/41868', 'el', 926), +(1210, 'Trevlyn Hold: A Novel', 'Wood, Henry, Mrs.', '2011-05-14', 30, 'https://www.gutenberg.org/ebooks/36106', 'en', 401), +(1211, 'Wunderwelten\r\nWie Lord Flitmore eine seltsame Reise zu den Planeten unternimmt und durch einen Kometen in die Fixsternwelt entführt wird', 'Mader, Friedrich Wilhelm', '2015-12-26', 25, 'https://www.gutenberg.org/ebooks/50770', 'de', 623), +(1212, 'Notes and Queries, Number 74, March 29, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-11-01', 13, 'https://www.gutenberg.org/ebooks/23282', 'en', 105), +(1213, 'Spun-yarn and Spindrift', 'Holland, Norah M. (Norah Mary)', '2010-11-07', 4, 'https://www.gutenberg.org/ebooks/34235', 'en', 28), +(1214, 'Flying Machines: Construction and Operation\r\nA Practical Book Which Shows, in Illustrations, Working Plans and Text, How to Build and Navigate the Modern Airship', 'Jackman, William J. (William James)', '1997-05-01', 81, 'https://www.gutenberg.org/ebooks/907', 'en', 927), +(1215, 'The Fantasy Fan January 1934\nThe Fans\' Own Magazine', 'Various', '2014-08-18', 25, 'https://www.gutenberg.org/ebooks/46615', 'en', 928), +(1216, 'The Practical Values of Space Exploration\nReport of the Committee on Science and Astronautics, U.S.\nHouse of Representatives, Eighty-Sixth Congress, Second\nSession', 'United States. Congress. House. Committee on Science and Astronautics.', '2006-11-24', 65, 'https://www.gutenberg.org/ebooks/19911', 'en', 929), +(1217, 'A Book of Old Ballads — Volume 2', NULL, '2005-02-01', 2, 'https://www.gutenberg.org/ebooks/7532', 'en', 921), +(1218, 'The Red-Blooded Heroes of the Frontier', 'Bronson, Edgar Beecher', '2007-08-17', 25, 'https://www.gutenberg.org/ebooks/22350', 'en', 930), +(1219, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 5: Persia\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/16165', 'en', 931), +(1220, 'Confessions of an English Opium-Eater', 'De Quincey, Thomas', '2000-01-01', 442, 'https://www.gutenberg.org/ebooks/2040', 'en', 53), +(1221, 'Aus meinem Leben', 'Hindenburg, Paul von', '2009-12-17', 53, 'https://www.gutenberg.org/ebooks/30695', 'de', 932), +(1222, 'Drake\'s Road Book of the Grand Junction Railway\nfrom Birmingham to Liverpool and Manchester', 'Drake, James, active 1825', '2013-07-31', 13, 'https://www.gutenberg.org/ebooks/43367', 'en', 933), +(1223, 'The Cook\'s Wedding and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 130, 'https://www.gutenberg.org/ebooks/13417', 'en', 934), +(1224, 'The story of my first novel; How a novel is written', 'Duchess', '2008-12-25', 11, 'https://www.gutenberg.org/ebooks/27622', 'en', 935), +(1225, 'The Irish Penny Journal, Vol. 1 No. 43, April 24, 1841', 'Various', '2017-07-26', 4, 'https://www.gutenberg.org/ebooks/55202', 'en', 81), +(1226, 'The Curious Republic of Gondour, and Other Whimsical Sketches', 'Twain, Mark', '2004-09-17', 51, 'https://www.gutenberg.org/ebooks/3192', 'en', 20), +(1227, '\'Way Down East\r\nA Romance of New England Life', 'Grismer, Joseph Rhode', '2005-10-28', 25, 'https://www.gutenberg.org/ebooks/16959', 'en', 539), +(1228, 'Sound Mind\r\nOr, Contributions to the natural history and physiology of the human intellect', 'Haslam, John', '2010-03-23', 15, 'https://www.gutenberg.org/ebooks/31747', 'en', 251), +(1229, 'English Lakes: Water-Colours', NULL, '2012-11-21', 12, 'https://www.gutenberg.org/ebooks/41430', 'en', 936), +(1230, 'An Apology for the True Christian Divinity\r\nBeing an explanation and vindication of the principles and doctrines of the people called Quakers', 'Barclay, Robert', '2018-02-02', 13, 'https://www.gutenberg.org/ebooks/56487', 'en', 937), +(1231, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 372, May 30, 1829', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11340', 'en', 133), +(1232, 'I sogni dell\'Anarchico', 'Mioni, Ugo', '2008-04-26', 11, 'https://www.gutenberg.org/ebooks/25175', 'it', 892), +(1233, 'Punchinello, Volume 2, No. 36, December 3, 1870', 'Various', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10292', 'en', 372), +(1234, 'The early life of Abraham Lincoln:\r\ncontaining many unpublished documents and unpublished reminiscences of Lincoln\'s early friends', 'Tarbell, Ida M. (Ida Minerva)', '2018-07-20', 25, 'https://www.gutenberg.org/ebooks/57555', 'en', 938), +(1235, 'Harper\'s Round Table, June 11, 1895', 'Various', '2010-06-28', 7, 'https://www.gutenberg.org/ebooks/33010', 'en', 668), +(1236, 'The Witchcraft Delusion in New England: Its Rise, Progress, and Termination (Vol. 2 of 3)', 'Calef, Robert', '2016-05-09', 28, 'https://www.gutenberg.org/ebooks/52027', 'en', 939), +(1237, 'The Widow Barnaby. Vol. 2 (of 3)', 'Trollope, Frances Milton', '2011-06-30', 19, 'https://www.gutenberg.org/ebooks/36562', 'en', 45), +(1238, 'Le nouveau dictionnaire complet du jargon de l\'argot\r\nou, Le langage des voleurs dévoilé', 'Halbert, Arthur', '2008-07-02', 20, 'https://www.gutenberg.org/ebooks/25949', 'fr', 940), +(1239, 'Punch, or the London Charivari, Volume 108, February 23, 1895', 'Various', '2014-03-09', 5, 'https://www.gutenberg.org/ebooks/45090', 'en', 134), +(1240, 'Le diable boiteux, tome II', 'Le Sage, Alain René', '2013-11-10', 6, 'https://www.gutenberg.org/ebooks/44142', 'fr', 941), +(1241, 'The Ball and the Cross', 'Chesterton, G. K. (Gilbert Keith)', '2004-03-01', 128, 'https://www.gutenberg.org/ebooks/5265', 'en', 637), +(1242, 'Notes and Queries, Number 184, May 7, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-21', 18, 'https://www.gutenberg.org/ebooks/20407', 'en', 105), +(1243, 'The Mystery of Mary', 'Hill, Grace Livingston', '2005-01-07', 56, 'https://www.gutenberg.org/ebooks/14632', 'en', 942), +(1244, 'Abraham Lincoln: A Play', 'Drinkwater, John', '2004-02-01', 89, 'https://www.gutenberg.org/ebooks/11172', 'en', 943), +(1245, '貞觀政要', 'Wu, Jing', '2008-05-06', 23, 'https://www.gutenberg.org/ebooks/25347', 'zh', 944), +(1246, 'The Wanderings of a Spiritualist', 'Doyle, Arthur Conan', '2012-05-17', 92, 'https://www.gutenberg.org/ebooks/39718', 'en', 767), +(1247, 'Outline Studies in the New Testament for Bible Teachers', 'Hurlbut, Jesse Lyman', '2012-12-11', 30, 'https://www.gutenberg.org/ebooks/41602', 'en', 945), +(1248, 'The Irish at the Front', 'MacDonagh, Michael', '2010-07-22', 12, 'https://www.gutenberg.org/ebooks/33222', 'en', 946), +(1249, '遊仙窟', 'Zhang, Zhuo', '2008-01-15', 16, 'https://www.gutenberg.org/ebooks/24295', 'zh', 947), +(1250, 'The Andalusian Knitting and Netting Book', 'Riego de la Branchardière, Eléonore', '2018-08-25', 49, 'https://www.gutenberg.org/ebooks/57767', 'en', 948), +(1251, 'St. Nicholas v. 13 No. 9 July 1886\r\nAn Illustrated Magazine for Young Folks', 'Various', '2011-07-16', 21, 'https://www.gutenberg.org/ebooks/36750', 'en', 479), +(1252, 'Diary of Samuel Pepys — Volume 61: January 1667-68', 'Pepys, Samuel', '2004-12-01', 25, 'https://www.gutenberg.org/ebooks/4185', 'en', 201), +(1253, 'Memoirs of the Marchioness of Pompadour (vol. 2 of 2)', 'Pompadour, Jeanne Antoinette Poisson, marquise de', '2016-06-01', 18, 'https://www.gutenberg.org/ebooks/52215', 'en', 27), +(1254, 'Une fête de Noël sous Jacques Cartier', 'Myrand, Ernest', '2007-02-21', 6, 'https://www.gutenberg.org/ebooks/20635', 'fr', 949), +(1255, 'Manual of Egyptian Archaeology and Guide to the Study of Antiquities in Egypt', 'Maspero, G. (Gaston)', '2004-12-20', 88, 'https://www.gutenberg.org/ebooks/14400', 'en', 673), +(1256, 'Handy War Guide for My Company: Handy Company Commander\'s Guide', 'Hanguillart, André Godefroy Lionel', '2013-12-06', 24, 'https://www.gutenberg.org/ebooks/44370', 'en', 950), +(1257, 'Heads of Lectures on a Course of Experimental Philosophy: Particularly Including Chemistry', 'Priestley, Joseph', '2011-10-09', 16, 'https://www.gutenberg.org/ebooks/37682', 'en', 951), +(1258, 'Plays : Third Series', 'Galsworthy, John', '2004-09-26', 8, 'https://www.gutenberg.org/ebooks/5057', 'en', 115), +(1259, 'The Postage Stamp in War', 'Melville, Frederick John', '2010-09-27', 8, 'https://www.gutenberg.org/ebooks/34007', 'en', 952), +(1260, 'The Women Who Came in the Mayflower', 'Marble, Annie Russell', '2015-11-23', 11, 'https://www.gutenberg.org/ebooks/50542', 'en', 953), +(1261, 'Germinie Lacerteux', 'Goncourt, Jules de', '2005-12-11', 16, 'https://www.gutenberg.org/ebooks/17285', 'fr', 954), +(1262, 'With the Ulster Division in France\r\nA Story of the 11th Battalion Royal Irish Rifles (South Antrim Volunteers), From Bordon to Thiepval.', 'S., A. P. I. (Samuels, Arthur Purefoy Irwin)', '2013-10-17', 23, 'https://www.gutenberg.org/ebooks/43969', 'en', 955), +(1263, 'What a Young Woman Ought to Know', 'Wood-Allen, Mary', '2009-03-30', 71, 'https://www.gutenberg.org/ebooks/28458', 'en', 755), +(1264, 'Children of the Old Testament', 'Anonymous', '2007-07-28', 18, 'https://www.gutenberg.org/ebooks/22162', 'en', 956), +(1265, 'Mary: A Fiction', 'Wollstonecraft, Mary', '2005-07-24', 62, 'https://www.gutenberg.org/ebooks/16357', 'en', 957), +(1266, 'Church History, Volume 2 (of 3)', 'Kurtz, J. H. (Johann Heinrich)', '2016-03-17', 12, 'https://www.gutenberg.org/ebooks/51490', 'en', 958), +(1267, 'The Great War in Verse and Prose', NULL, '2014-07-27', 10, 'https://www.gutenberg.org/ebooks/46427', 'en', 335), +(1268, 'Lysistrata', 'Aristophanes', '2005-03-01', 631, 'https://www.gutenberg.org/ebooks/7700', 'en', 959), +(1269, 'De Kerels van Vlaanderen', 'Conscience, Hendrik', '2004-10-05', 11, 'https://www.gutenberg.org/ebooks/13625', 'nl', 960), +(1270, 'Rhymes of a Rolling Stone', 'Service, Robert W. (Robert William)', '1995-08-01', 192, 'https://www.gutenberg.org/ebooks/309', 'en', 8), +(1271, 'Travels in France during the years 1814-15\r\nComprising a residence at Paris, during the stay of the allied armies, and at Aix, at the period of the landing of Bonaparte, in two volumes.', 'Alison, Archibald, Sir', '2008-12-04', 23, 'https://www.gutenberg.org/ebooks/27410', 'en', 961), +(1272, 'The Discovery of Guiana', 'Raleigh, Walter', '2006-03-26', 116, 'https://www.gutenberg.org/ebooks/2272', 'en', 962), +(1273, 'Thorpe Regis', 'Peard, Frances Mary', '2013-07-08', 14, 'https://www.gutenberg.org/ebooks/43155', 'en', 45), +(1274, 'Third Annual Report of the Kensington Parochial Institute', 'Anonymous', '2013-02-13', 8, 'https://www.gutenberg.org/ebooks/42087', 'en', 963), +(1275, 'A Princess of Mars', 'Burroughs, Edgar Rice', '2005-08-01', 30, 'https://www.gutenberg.org/ebooks/8748', 'en', 964), +(1276, 'A Pata no Choco', 'Anonymous', '2010-03-09', 6, 'https://www.gutenberg.org/ebooks/31575', 'pt', 965), +(1277, 'Laurette eli Punainen sinetti', 'Vigny, Alfred de', '2017-07-02', 1, 'https://www.gutenberg.org/ebooks/55030', 'fi', 966), +(1278, 'The Sheriff\'s Son', 'Raine, William MacLeod', '2005-11-11', 38, 'https://www.gutenberg.org/ebooks/17043', 'en', 315), +(1279, 'Novellivalikoima suomalaisten kirjailijain teoksista', NULL, '2015-12-28', 8, 'https://www.gutenberg.org/ebooks/50784', 'fi', 967), +(1280, 'Yorkshire Dialect Poems (1673-1915) and traditional poems', 'Moorman, F. W. (Frederic William)', '2001-10-01', 61, 'https://www.gutenberg.org/ebooks/2888', 'en', 968), +(1281, 'The White Rose of Langley\nA Story of the Olden Time', 'Holt, Emily Sarah', '2007-10-31', 15, 'https://www.gutenberg.org/ebooks/23276', 'en', 969), +(1282, 'Lectures and Essays', 'Huxley, Thomas Henry', '2004-09-01', 12, 'https://www.gutenberg.org/ebooks/6414', 'en', 814), +(1283, 'Commentarii de Bello Gallico\nLibri V-VIII', 'Caesar, Julius', '2006-07-16', 123, 'https://www.gutenberg.org/ebooks/18837', 'la', 970), +(1284, 'Werner von Siemens, der Begründer der modernen Elektrotechnik', 'Fürst, Artur', '2014-12-21', 16, 'https://www.gutenberg.org/ebooks/47733', 'de', 971), +(1285, 'A Practical Novelist', 'Davidson, John', '2011-02-18', 93, 'https://www.gutenberg.org/ebooks/35313', 'en', 61), +(1286, 'Pick a Crime', 'Smith, Richard Rein', '2016-04-04', 18, 'https://www.gutenberg.org/ebooks/51656', 'en', 972), +(1287, 'The Great Round World and What Is Going On In It, Vol. 1, No. 56, December 2, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-07-03', 13, 'https://www.gutenberg.org/ebooks/16191', 'en', 1), +(1288, 'Pedagogics as a System', 'Rosenkranz, Karl', '2009-12-13', 17, 'https://www.gutenberg.org/ebooks/30661', 'en', 973), +(1289, 'At the Councillor\'s; or, A Nameless History', 'Marlitt, E. (Eugenie)', '2013-08-03', 14, 'https://www.gutenberg.org/ebooks/43393', 'en', 974), +(1290, 'Stratford-on-Avon: A Sketch-Book', 'Home, Gordon', '2017-03-09', 12, 'https://www.gutenberg.org/ebooks/54324', 'en', 975), +(1291, 'Nala och Dayamanti: En indisk dikt ur Mahabharata', 'Sriharsa, active 12th century', '2019-08-17', 41, 'https://www.gutenberg.org/ebooks/60111', 'sv', 976), +(1292, 'A Woman at Bay; Or, A Fiend in Skirts', 'Carter, Nicholas (House name)', '2008-09-26', 26, 'https://www.gutenberg.org/ebooks/26704', 'en', 128), +(1293, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 581, December 15, 1832', 'Various', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/12531', 'en', 133), +(1294, 'Commercial Law', 'Williston, Samuel', '2013-03-02', 29, 'https://www.gutenberg.org/ebooks/42241', 'en', 977), +(1295, 'Doctor Thorne', 'Trollope, Anthony', '2002-04-01', 202, 'https://www.gutenberg.org/ebooks/3166', 'en', 978), +(1296, 'A Treatise on Relics', 'Calvin, Jean', '2010-04-25', 46, 'https://www.gutenberg.org/ebooks/32136', 'en', 979), +(1297, 'Lettres à une inconnue, Tome Premier\nPrécédée d\'une étude sur P. Mérimée par H. Taine', 'Mérimée, Prosper', '2018-01-31', 14, 'https://www.gutenberg.org/ebooks/56473', 'fr', 980), +(1298, 'Castel Gavone: Storia del secolo XV', 'Barrili, Anton Giulio', '2008-04-26', 10, 'https://www.gutenberg.org/ebooks/25181', 'it', 98), +(1299, 'Lucian\'s True History', 'Lucian, of Samosata', '2014-06-01', 762, 'https://www.gutenberg.org/ebooks/45858', 'en', 467), +(1300, 'The Little Lame Prince\nRewritten for Young Readers by Margaret Waters', 'Craik, Dinah Maria Mulock', '2007-12-27', 43, 'https://www.gutenberg.org/ebooks/24053', 'en', 981), +(1301, 'The Glands Regulating Personality\r\nA Study of the Glands of Internal Secretion in Relation to the Types of Human Nature', 'Berman, Louis', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10266', 'en', 982), +(1302, 'La civilisation japonaise\r\nconférences faites à l\'école spéciale des langues orientales', 'Rosny, Léon de', '2012-08-16', 15, 'https://www.gutenberg.org/ebooks/40516', 'fr', 983), +(1303, 'A Monk of Fife\r\nBeing the Chronicle Written by Norman Leslie of Pitcullo, Concerning Marvellous Deeds That Befell in the Realm of France, in the Years of Our Redemption, MCCCCXXIX-XXXI', 'Lang, Andrew', '1999-02-01', 35, 'https://www.gutenberg.org/ebooks/1631', 'en', 984), +(1304, 'The Poor Little Rich Girl', 'Gates, Eleanor', '2005-04-26', 22, 'https://www.gutenberg.org/ebooks/15714', 'en', 985), +(1305, 'The Hunting of the Snark', 'Carroll, Lewis', '2007-05-22', 12, 'https://www.gutenberg.org/ebooks/21521', 'en', 986), +(1306, 'How and When to Be Your Own Doctor', 'Solomon, Steve', '2003-08-01', 93, 'https://www.gutenberg.org/ebooks/4343', 'en', 295), +(1307, 'L\'Illustration, No. 3268, 14 Octobre 1905', 'Various', '2011-07-04', 5, 'https://www.gutenberg.org/ebooks/36596', 'fr', 150), +(1308, 'Little Crumbs, and Other Stories\r\nFully Illustrated', 'Anonymous', '2014-03-07', 19, 'https://www.gutenberg.org/ebooks/45064', 'en', 388), +(1309, 'Tales and Novels of J. de La Fontaine — Volume 17', 'La Fontaine, Jean de', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/5291', 'en', 506), +(1310, 'Cookery for Little Girls', 'Foster, Olive Hyde', '2011-09-16', 64, 'https://www.gutenberg.org/ebooks/37444', 'en', 103), +(1311, 'A Mao e A Luva', 'Machado de Assis', '2016-09-20', 31, 'https://www.gutenberg.org/ebooks/53101', 'pt', 987), +(1312, 'Over the Side\nCaptains All, Book 6.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11186', 'en', 72), +(1313, 'Auswahl aus den Dichtungen Eduard Mörikes', 'Mörike, Eduard', '2018-02-25', 16, 'https://www.gutenberg.org/ebooks/56641', 'de', 138), +(1314, 'Η αγάπη (Τριλογία)', 'Christovasilis, Christos', '2010-05-09', 12, 'https://www.gutenberg.org/ebooks/32304', 'el', 988), +(1315, 'Descripción colonial, libro segundo (2/2)', 'Lizárraga, Reginaldo de', '2012-09-10', 11, 'https://www.gutenberg.org/ebooks/40724', 'es', 989); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(1316, 'A Start in Life', 'Balzac, Honoré de', '2005-10-07', 49, 'https://www.gutenberg.org/ebooks/1403', 'en', 58), +(1317, 'Chambers\'s Edinburgh Journal, No. 461\nVolume 18, New Series, October 30, 1852', 'Various', '2008-01-12', 14, 'https://www.gutenberg.org/ebooks/24261', 'en', 18), +(1318, 'The Military History of the 123d Regiment Ohio Volunteer Infantry', NULL, '2018-08-28', 10, 'https://www.gutenberg.org/ebooks/57793', 'en', 990), +(1319, 'Nova analysis aquarum Medeviensium', 'Berzelius, Jöns Jakob, friherre', '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/10054', 'la', 991), +(1320, 'Diary of Samuel Pepys — Complete 1666 N.S.', 'Pepys, Samuel', '2004-10-31', 21, 'https://www.gutenberg.org/ebooks/4171', 'en', 738), +(1321, 'The Jesuit Relations and Allied Documents, Vol. 2: Acadia, 1612-1614', NULL, '2014-03-29', 28, 'https://www.gutenberg.org/ebooks/45256', 'en', 992), +(1322, 'But the Patient Lived', 'Warner, Harry', '2019-05-26', 88, 'https://www.gutenberg.org/ebooks/59609', 'en', 26), +(1323, 'John L. Stoddard\'s Lectures, Vol. 10 (of 10)\r\nSouthern California; Grand Cañon of the Colorado River; Yellowstone National Park', 'Stoddard, John L. (John Lawson)', '2005-04-02', 20, 'https://www.gutenberg.org/ebooks/15526', 'en', 993), +(1324, 'The Young Trawler', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 23, 'https://www.gutenberg.org/ebooks/21713', 'en', 195), +(1325, 'Ebony and Crystal: Poems in Verse and Prose', 'Smith, Clark Ashton', '2016-10-21', 48, 'https://www.gutenberg.org/ebooks/53333', 'en', 994), +(1326, 'A Virgin Heart: A Novel', 'Gourmont, Remy de', '2013-12-07', 27, 'https://www.gutenberg.org/ebooks/44384', 'en', 58), +(1327, 'Clerambault: The Story of an Independent Spirit During the War', 'Rolland, Romain', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/10868', 'en', 579), +(1328, 'The History of Cuba, vol. 2', 'Johnson, Willis Fletcher', '2011-10-09', 17, 'https://www.gutenberg.org/ebooks/37676', 'en', 995), +(1329, 'Theresa Raquin', 'Zola, Émile', '2006-04-22', 174, 'https://www.gutenberg.org/ebooks/6626', 'en', 996), +(1330, 'Married Love: A New Contribution to the Solution of Sex Difficulties', 'Stopes, Marie Carmichael', '2014-11-30', 82, 'https://www.gutenberg.org/ebooks/47501', 'en', 369), +(1331, 'Oeuvres de André Lemoyne\nUne Idylle normande.—Le Moulin des Prés.—Alise d\'Évran.', 'Lemoyne, André', '2005-12-09', 20, 'https://www.gutenberg.org/ebooks/17271', 'fr', 687), +(1332, 'The Merry Wives of Windsor\nThe Works of William Shakespeare [Cambridge Edition] [9 vols.]', 'Shakespeare, William', '2007-11-23', 21, 'https://www.gutenberg.org/ebooks/23044', 'en', 997), +(1333, 'Little Miss Grouch\r\nA Narrative Based on the Log of Alexander Forsyth Smith\'s Maiden Transatlantic Voyage', 'Adams, Samuel Hopkins', '2007-08-01', 23, 'https://www.gutenberg.org/ebooks/22196', 'en', 998), +(1334, 'La vita Italiana nel Risorgimento (1846-1849), parte 3\r\nTerza serie - Storia', 'Various', '2016-03-15', 5, 'https://www.gutenberg.org/ebooks/51464', 'it', 999), +(1335, 'Asbestos, Its production and use\r\nWith some account of the asbestos mines of Canada', 'Jones, Robert H.', '2011-01-30', 16, 'https://www.gutenberg.org/ebooks/35121', 'en', 1000), +(1336, 'The Road to Mandalay\nA Tale of Burma', 'Croker, B. M. (Bithia Mary)', '2006-04-23', 25, 'https://www.gutenberg.org/ebooks/18239', 'en', 61), +(1337, 'Castle Blair: A Story of Youthful Days', 'Shaw, Flora L. (Flora Louisa)', '2017-02-06', 13, 'https://www.gutenberg.org/ebooks/54116', 'en', 1001), +(1338, 'The Boy Scout Fire Fighters', 'Crump, Irving', '2009-11-11', 9, 'https://www.gutenberg.org/ebooks/30453', 'en', 1002), +(1339, 'Devil\'s Ford', 'Harte, Bret', '2006-05-14', 21, 'https://www.gutenberg.org/ebooks/2286', 'en', 315), +(1340, '人間樂', 'Tianhuazangzhuren', '2007-12-17', 20, 'https://www.gutenberg.org/ebooks/23878', 'zh', 1003), +(1341, 'March Anson and Scoot Bailey of the U.S. Navy', 'McClintock, Marshall', '2015-03-22', 18, 'https://www.gutenberg.org/ebooks/48549', 'en', 1004), +(1342, 'Electric Gas Lighting: How to Install Electric Gas Ignition Apparatus', 'Norrie, H. S.', '2013-02-11', 17, 'https://www.gutenberg.org/ebooks/42073', 'en', 1005), +(1343, 'The Scarlet Lake Mystery: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-03-10', 23, 'https://www.gutenberg.org/ebooks/31581', 'en', 1006), +(1344, 'Letters to His Son, 1750\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/3354', 'en', 740), +(1345, 'The Good Neighbors', 'Pangborn, Edgar', '2008-09-05', 48, 'https://www.gutenberg.org/ebooks/26536', 'en', 179), +(1346, 'The Little Match Girl', 'Andersen, H. C. (Hans Christian)', '2004-06-01', 35, 'https://www.gutenberg.org/ebooks/12703', 'en', 1007), +(1347, 'Beaumarchais and the War of American Independence, Vol. 2', 'Kite, Elizabeth Sarah', '2012-07-26', 15, 'https://www.gutenberg.org/ebooks/40340', 'en', 1008), +(1348, 'Personal Memoirs of U. S. Grant — Volume 1', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 56, 'https://www.gutenberg.org/ebooks/1067', 'en', 1009), +(1349, 'Gleams of Sunshine\r\nOptimistic Poems', 'Chant, Joseph Horatio', '2008-02-13', 17, 'https://www.gutenberg.org/ebooks/24605', 'en', 1010), +(1350, 'Trips to the Moon', 'Lucian, of Samosata', '2003-12-01', 83, 'https://www.gutenberg.org/ebooks/10430', 'en', 1011), +(1351, 'Hajamietteitä kapinaviikoilta 1/3\r\nEnsimmäinen ja toinen viikko', 'Aho, Juhani', '2017-12-22', 9, 'https://www.gutenberg.org/ebooks/56225', 'fi', 1012), +(1352, 'The First Day of Spring', 'Wolf, Mari', '2010-06-09', 28, 'https://www.gutenberg.org/ebooks/32760', 'en', 179), +(1353, 'The Columbia River: Its History, Its Myths, Its Scenery, Its Commerce', 'Lyman, William Denison', '2012-04-06', 8, 'https://www.gutenberg.org/ebooks/39388', 'en', 1013), +(1354, 'Every Man His Own Doctor\r\nThe Cold Water, Tepid Water, and Friction-Cure, as Applicable to Every Disease to Which the Human Frame Is Subject, and Also to the Cure of Disease in Horses and Cattle', 'Claridge, R. T.', '2012-11-05', 29, 'https://www.gutenberg.org/ebooks/41292', 'en', 829), +(1355, 'Elements of Debating\r\nA Manual for Use in High Schools and Academies', 'Lyon, Leverett S. (Leverett Samuel)', '2004-11-19', 29, 'https://www.gutenberg.org/ebooks/14090', 'en', 30), +(1356, 'Die Klerisei', 'Leskov, N. S. (Nikolai Semenovich)', '2016-12-18', 12, 'https://www.gutenberg.org/ebooks/53757', 'de', 1014), +(1357, 'The Discards', 'McWhorter, Lucullus Virgil', '2011-08-25', 14, 'https://www.gutenberg.org/ebooks/37212', 'en', 1015), +(1358, 'The Golden Snare', 'Curwood, James Oliver', '2003-10-01', 59, 'https://www.gutenberg.org/ebooks/4515', 'en', 551), +(1359, 'Beehive for Bairns, Vol. 2: From 1st Size to 2 Years\r\nWith Special Supplement: Bed Jackets', 'Various', '2014-05-11', 52, 'https://www.gutenberg.org/ebooks/45632', 'en', 1016), +(1360, 'Society in America, Volume 2 (of 2)', 'Martineau, Harriet', '2016-07-31', 25, 'https://www.gutenberg.org/ebooks/52685', 'en', 1017), +(1361, 'Punch, or the London Charivari, Volume 103, August 13, 1892', 'Various', '2005-02-22', 2, 'https://www.gutenberg.org/ebooks/15142', 'en', 134), +(1362, 'To Win or to Die: A Tale of the Klondike Gold Craze', 'Fenn, George Manville', '2007-05-08', 20, 'https://www.gutenberg.org/ebooks/21377', 'en', 1018), +(1363, 'School Reading By Grades: Fifth Year', 'Baldwin, James', '2016-01-22', 25, 'https://www.gutenberg.org/ebooks/51000', 'en', 1019), +(1364, 'The Poetical Works of Oliver Wendell Holmes — Volume 03: Medical Poems', 'Holmes, Oliver Wendell', '2004-09-30', 8, 'https://www.gutenberg.org/ebooks/7390', 'en', 178), +(1365, 'Sanders of the River', 'Wallace, Edgar', '2011-03-11', 135, 'https://www.gutenberg.org/ebooks/35545', 'en', 1020), +(1366, 'Parables of a Province', 'Parker, Gilbert', '2004-11-18', 18, 'https://www.gutenberg.org/ebooks/6242', 'en', 179), +(1367, 'The Boy With the U. S. Survey', 'Rolt-Wheeler, Francis', '2010-11-29', 14, 'https://www.gutenberg.org/ebooks/34497', 'en', 1021), +(1368, 'Fighting the Sea; Or, Winter at the Life-Saving Station', NULL, '2014-10-21', 10, 'https://www.gutenberg.org/ebooks/47165', 'en', 1022), +(1369, 'In Search of the Okapi\nA Story of Adventure in Central Africa', 'Glanville, Ernest', '2006-01-28', 26, 'https://www.gutenberg.org/ebooks/17615', 'en', 1023), +(1370, 'A Mine of Faults', 'Bain, F. W. (Francis William)', '2015-05-09', 19, 'https://www.gutenberg.org/ebooks/48911', 'en', 580), +(1371, 'The Folly Of Eustace\n1896', 'Hichens, Robert', '2007-11-08', 15, 'https://www.gutenberg.org/ebooks/23420', 'en', 61), +(1372, 'Hittel on Gold Mines and Mining', 'Hittell, John S. (John Shertzer)', '2009-09-07', 20, 'https://www.gutenberg.org/ebooks/29926', 'en', 1024), +(1373, 'The Air Patrol: A Story of the North-west Frontier', 'Strang, Herbert', '2013-03-26', 24, 'https://www.gutenberg.org/ebooks/42417', 'en', 1025), +(1374, 'Widger\'s Quotations from the Project Gutenberg Editions of the Court Memoirs of France', 'Various', '2003-02-01', 15, 'https://www.gutenberg.org/ebooks/3730', 'en', 1026), +(1375, 'Characteristics of Women: Moral, Poetical, and Historical', 'Jameson, Mrs. (Anna)', '2008-07-31', 32, 'https://www.gutenberg.org/ebooks/26152', 'en', 1027), +(1376, 'Le péché de Monsieur Antoine, Tome 1', 'Sand, George', '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/12367', 'fr', 61), +(1377, 'The Chronic Loafer', 'Lloyd, Nelson', '2017-04-19', 6, 'https://www.gutenberg.org/ebooks/54572', 'en', 1028), +(1378, 'De la Terre à la Lune', 'Verne, Jules', '1997-01-01', 177, 'https://www.gutenberg.org/ebooks/799', 'fr', 1029), +(1379, 'From Paper-mill to Pressroom', 'Wheelwright, William Bond', '2015-01-13', 9, 'https://www.gutenberg.org/ebooks/47959', 'en', 1030), +(1380, 'G. K. Chesterton, A Critical Study', 'West, Julius', '2008-10-28', 15, 'https://www.gutenberg.org/ebooks/27080', 'en', 1031), +(1381, 'In the Shadow of the Hills', 'Shedd, George C. (George Clifford)', '2009-09-20', 15, 'https://www.gutenberg.org/ebooks/30037', 'en', 61), +(1382, 'L\'ancien Figaro', 'Anonymous', '2014-07-14', 25, 'https://www.gutenberg.org/ebooks/46285', 'fr', 1032), +(1383, 'L\'auberge de l\'ange gardien', 'Ségur, Sophie, comtesse de', '2004-07-20', 24, 'https://www.gutenberg.org/ebooks/12969', 'fr', 1033), +(1384, 'Governor Winthrop\'s Return to Boston: An Interview with a Great Character', 'Warren, George Washington', '2011-04-06', 8, 'https://www.gutenberg.org/ebooks/35777', 'en', 1034), +(1385, 'The Shining Cow', 'James, Alex', '2009-07-05', 30, 'https://www.gutenberg.org/ebooks/29328', 'en', 179), +(1386, 'Psychotennis, Anyone?', 'Williams, Lloyd', '2016-02-16', 34, 'https://www.gutenberg.org/ebooks/51232', 'en', 845), +(1387, 'President Wilson\'s Addresses', 'Wilson, Woodrow', '2005-12-31', 24, 'https://www.gutenberg.org/ebooks/17427', 'en', 1035), +(1388, 'Stones of Venice [introductions]', 'Ruskin, John', '2006-02-01', 46, 'https://www.gutenberg.org/ebooks/9804', 'en', 1036), +(1389, 'The Leader', 'Leinster, Murray', '2007-11-24', 53, 'https://www.gutenberg.org/ebooks/23612', 'en', 784), +(1390, 'The Unwilling Vestal', 'White, Edward Lucas', '2004-07-01', 28, 'https://www.gutenberg.org/ebooks/6070', 'en', 1037), +(1391, 'The Prairie-Bird', 'Murray, Charles Augustus, Sir', '2014-11-15', 20, 'https://www.gutenberg.org/ebooks/47357', 'en', 1038), +(1392, 'The Old Man of the Mountain, The Lovecharm and Pietro of Abano\nTales from the German of Tieck', 'Tieck, Ludwig', '2008-08-19', 39, 'https://www.gutenberg.org/ebooks/26360', 'en', 803), +(1393, 'Stepping Backwards\nNight Watches, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12155', 'en', 637), +(1394, 'The Surgery of Ritual Circumcision', 'Snowman, Jacob', '2017-10-07', 18, 'https://www.gutenberg.org/ebooks/55692', 'en', 1039), +(1395, 'The Lonely Stronghold', 'Reynolds, Baillie, Mrs.', '2013-04-30', 20, 'https://www.gutenberg.org/ebooks/42625', 'en', 1040), +(1396, 'Human Genome Project, Chromosome Number 02', 'Human Genome Project', '2002-11-01', 4, 'https://www.gutenberg.org/ebooks/3502', 'en', 1041), +(1397, 'Reminiscences of Charles Bradlaugh', 'Foote, G. W. (George William)', '2009-10-06', 18, 'https://www.gutenberg.org/ebooks/30205', 'en', 1042), +(1398, 'The Adventures of Tom Sawyer', 'Twain, Mark', '2005-09-01', 17, 'https://www.gutenberg.org/ebooks/9038', 'en', 1043), +(1399, 'Pi', 'Hemphill, Scott', '1993-01-01', 106, 'https://www.gutenberg.org/ebooks/50', 'en', 1044), +(1400, 'The Philippine Islands, 1493-1898: Volume 48, 1751-1765\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2017-05-17', 41, 'https://www.gutenberg.org/ebooks/54740', 'en', 745), +(1401, 'Sammie and Susie Littletail', 'Garis, Howard Roger', '2004-08-02', 106, 'https://www.gutenberg.org/ebooks/13087', 'en', 1045), +(1402, 'The Last Penny and Other Stories', 'Arthur, T. S. (Timothy Shay)', '2008-01-26', 28, 'https://www.gutenberg.org/ebooks/24437', 'en', 195), +(1403, 'The Poetical Works of Edmund Spenser, Volume 5', 'Spenser, Edmund', '2004-01-01', 56, 'https://www.gutenberg.org/ebooks/10602', 'en', 466), +(1404, 'Le Rhin, Tome III', 'Hugo, Victor', '2012-07-08', 12, 'https://www.gutenberg.org/ebooks/40172', 'fr', 1046), +(1405, 'Under Fire For Servia', 'Fiske, James', '2010-08-21', 10, 'https://www.gutenberg.org/ebooks/33480', 'en', 146), +(1406, 'Essays on Modern Novelists', 'Phelps, William Lyon', '2011-11-20', 16, 'https://www.gutenberg.org/ebooks/38068', 'en', 1047), +(1407, 'No title', NULL, '1998-05-01', 1, 'https://www.gutenberg.org/ebooks/1255', 'en', NULL), +(1408, 'Butchers\', Packers\' and Sausage Makers\' Red Book', 'Sayer, George Jacob', '2019-07-06', 92, 'https://www.gutenberg.org/ebooks/59863', 'en', 1048), +(1409, 'American Languages, and Why We Should Study Them', 'Brinton, Daniel G. (Daniel Garrison)', '2010-05-27', 16, 'https://www.gutenberg.org/ebooks/32552', 'en', 1049), +(1410, 'For Name and Fame; Or, Through Afghan Passes', 'Henty, G. A. (George Alfred)', '2007-06-30', 39, 'https://www.gutenberg.org/ebooks/21979', 'en', 1050), +(1411, 'The Black Barque\nA Tales of the Pirate Slave-Ship Gentle Hand on Her Last African Cruise', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-11-20', 33, 'https://www.gutenberg.org/ebooks/56017', 'en', 1051), +(1412, 'Children\'s Ways\r\nBeing selections from the author’s \"Studies of childhood,\" with some additional matter', 'Sully, James', '2011-08-09', 10, 'https://www.gutenberg.org/ebooks/37020', 'en', 911), +(1413, 'The Tale of Mrs. Ladybug', 'Bailey, Arthur Scott', '2006-12-12', 32, 'https://www.gutenberg.org/ebooks/20097', 'en', 1052), +(1414, 'The Maid of Honour: A Tale of the Dark Days of France. Vol. 3 (of 3)', 'Wingfield, Lewis', '2012-02-13', 78, 'https://www.gutenberg.org/ebooks/38854', 'en', 98), +(1415, 'The Cumulative Book Review Digest, Volume 1, 1905\nComplete in a single alphabet', 'Various', '2016-11-20', 9, 'https://www.gutenberg.org/ebooks/53565', 'en', 1053), +(1416, 'Bab Ballads and Savoy Songs', 'Gilbert, W. S. (William Schwenck)', '2005-03-15', 16, 'https://www.gutenberg.org/ebooks/15370', 'en', 1054), +(1417, 'The Way of Initiation; or, How to Attain Knowledge of the Higher Worlds', 'Steiner, Rudolf', '2012-06-13', 114, 'https://www.gutenberg.org/ebooks/39986', 'en', 746), +(1418, 'Leonce und Lena', 'Büchner, Georg', '2007-04-04', 19, 'https://www.gutenberg.org/ebooks/21145', 'de', 907), +(1419, 'John Lothrop Motley. a memoir — Volume 3', 'Holmes, Oliver Wendell', '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/4727', 'en', 1055), +(1420, 'Punch, or the London Charivari, Vol. 109, November 9th, 1895', 'Various', '2014-04-15', 6, 'https://www.gutenberg.org/ebooks/45400', 'en', 134), +(1421, 'The 116th Battalion in France', 'Allen, E. P. S.', '2014-06-01', 36, 'https://www.gutenberg.org/ebooks/45860', 'en', 1056), +(1422, 'Lincoln\'s Use of the Bible', 'Jackson, S. Trevena', '2011-12-28', 14, 'https://www.gutenberg.org/ebooks/38434', 'en', 1057), +(1423, 'Nostalgia', 'Deledda, Grazia', '2017-01-06', 19, 'https://www.gutenberg.org/ebooks/53905', 'en', 1058), +(1424, 'The Bible, Douay-Rheims, Old Testament — Part 1', NULL, '1999-01-01', 37, 'https://www.gutenberg.org/ebooks/1609', 'en', 655), +(1425, 'The Heart of England', 'Thomas, Edward', '2018-07-29', 15, 'https://www.gutenberg.org/ebooks/57599', 'en', 1059), +(1426, 'Bardell v. Pickwick', 'Fitzgerald, Percy', '2008-07-06', 49, 'https://www.gutenberg.org/ebooks/25985', 'en', 1060), +(1427, 'Jekyll-Hyde Planet', 'Lewis, Jack', '2019-05-01', 48, 'https://www.gutenberg.org/ebooks/59403', 'en', 1061), +(1428, 'Seven Frozen Sailors', 'Fenn, George Manville', '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32932', 'en', 246), +(1429, 'The Gods of Mars', 'Burroughs, Edgar Rice', '2007-05-22', 31, 'https://www.gutenberg.org/ebooks/21519', 'en', 613), +(1430, 'Maxims and Instructions for the Boiler Room\nUseful to Engineers, Firemen & Mechanics; Relating to Steam Generators, Pumps, Appliances, Steam Heating, Practical Plumbing, etc.', 'Hawkins, N. (Nehemiah)', '2016-09-24', 11, 'https://www.gutenberg.org/ebooks/53139', 'en', 1062), +(1431, 'Journeys Through Bookland, Vol. 10: The Guide', 'Sylvester, Charles Herbert', '2008-03-16', 29, 'https://www.gutenberg.org/ebooks/24857', 'en', 1063), +(1432, 'A Yankee Flier Over Berlin', 'Montgomery, Rutherford G. (Rutherford George)', '2009-08-23', 19, 'https://www.gutenberg.org/ebooks/29774', 'en', 1064), +(1433, 'A Romance of Youth — Complete', 'Coppée, François', '2004-10-30', 21, 'https://www.gutenberg.org/ebooks/3962', 'en', 560), +(1434, 'The Boston Terrier and All About It\nA Practical, Scientific, and Up to Date Guide to the Breeding of the American Dog', 'Axtell, Edward', '2006-03-21', 31, 'https://www.gutenberg.org/ebooks/18033', 'en', 1065), +(1435, 'A Visit to the Sarö and Shera Yögurs', 'Mannerheim, Carl Gustaf Emil', '2019-08-18', 145, 'https://www.gutenberg.org/ebooks/60129', 'en', 1066), +(1436, 'Rime di Argia Sbolenfi\ncon prefazione di Lorenzo Stecchetti', 'Guerrini, Olindo', '2006-02-24', 21, 'https://www.gutenberg.org/ebooks/17847', 'it', 8), +(1437, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 14', 'Stevenson, Robert Louis', '2009-12-12', 26, 'https://www.gutenberg.org/ebooks/30659', 'en', 232), +(1438, 'Bohemian San Francisco\nIts restaurants and their most famous recipes—The elegant art of dining.', 'Edwords, Clarence E. (Clarence Edgar)', '2005-12-01', 52, 'https://www.gutenberg.org/ebooks/9464', 'en', 1067), +(1439, 'The Missionary: An Indian Tale; vol. II', 'Morgan, Lady (Sydney)', '2015-04-19', 9, 'https://www.gutenberg.org/ebooks/48743', 'en', 1068), +(1440, 'Constantinople and the Scenery of the Seven Churches of Asia Minor\nSeries One and Series Two in one Volume', 'Walsh, R. (Robert)', '2015-08-12', 19, 'https://www.gutenberg.org/ebooks/49691', 'en', 1069), +(1441, 'The Great Company\nBeing a History of the Honourable Company of Merchants-Adventurers Trading into Hudson\'s Bay', 'Willson, Beckles', '2013-03-09', 16, 'https://www.gutenberg.org/ebooks/42279', 'en', 1070), +(1442, 'Riley Love-Lyrics', 'Riley, James Whitcomb', '2005-11-04', 14, 'https://www.gutenberg.org/ebooks/16995', 'en', 350), +(1443, 'The Moon Rock', 'Rees, Arthur J. (Arthur John)', '2004-06-01', 46, 'https://www.gutenberg.org/ebooks/12509', 'en', 128), +(1444, 'Added Upon\r\nA Story', 'Anderson, Nephi', '2005-12-07', 42, 'https://www.gutenberg.org/ebooks/17249', 'en', 1071), +(1445, 'Die Kernpunkte der sozialen Frage in den Lebensnotwendigkeiten der Gegenwart und Zukunft', 'Steiner, Rudolf', '2009-04-04', 18, 'https://www.gutenberg.org/ebooks/28494', 'de', 1072), +(1446, 'Poems', 'Dorr, Julia C. R. (Caroline Ripley)', '2017-06-15', 3, 'https://www.gutenberg.org/ebooks/54912', 'en', 350), +(1447, 'Martti Luther: Elämäkerta', 'Meurman, A. (Agathon)', '2014-12-05', 12, 'https://www.gutenberg.org/ebooks/47539', 'fi', 1073), +(1448, 'Trenching at Gallipoli\r\nThe personal narrative of a Newfoundlander with the ill-fated Dardanelles expedition', 'Gallishaw, John', '2011-01-31', 39, 'https://www.gutenberg.org/ebooks/35119', 'en', 1074), +(1449, 'Where Half The World Is Waking Up\r\nThe Old and the New in Japan, China, the Philippines, and India, Reported With Especial Reference to American Conditions', 'Poe, Clarence Hamilton', '2009-07-30', 13, 'https://www.gutenberg.org/ebooks/29546', 'en', 1075), +(1450, 'One Hundred Books Famous in English Literature\nWith Facsimiles of the Title-Pages', 'Grolier Club', '2013-06-05', 12, 'https://www.gutenberg.org/ebooks/42877', 'en', 1076), +(1451, 'Alarms and Discursions', 'Chesterton, G. K. (Gilbert Keith)', '2006-01-01', 54, 'https://www.gutenberg.org/ebooks/9656', 'en', 472), +(1452, 'Philip of Texas: A Story of Sheep Raising in Texas', 'Otis, James', '2015-03-24', 15, 'https://www.gutenberg.org/ebooks/48571', 'en', 1077), +(1453, '近思錄', 'Zhu, Xi', '2007-12-13', 29, 'https://www.gutenberg.org/ebooks/23840', 'zh', 1078), +(1454, 'The Last Tenant', 'Farjeon, B. L. (Benjamin Leopold)', '2013-07-12', 11, 'https://www.gutenberg.org/ebooks/43199', 'en', 1079), +(1455, 'David Copperfield II\nDavid Copperfield nuoremman elämäkerta ja kokemukset', 'Dickens, Charles', '2006-04-18', 16, 'https://www.gutenberg.org/ebooks/18201', 'fi', 1080), +(1456, 'Encyclopaedia Britannica, 11th Edition, \"Foraminifera\" to \"Fox, Edward\"\r\nVolume 10, Slice 6', 'Various', '2011-04-20', 22, 'https://www.gutenberg.org/ebooks/35925', 'en', 1081), +(1457, 'Punch, or the London Charivari, Vol. 150, May 10, 1916', 'Various', '2007-10-14', 11, 'https://www.gutenberg.org/ebooks/22992', 'en', 134), +(1458, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 06', 'Dante Alighieri', '2004-08-07', 11, 'https://www.gutenberg.org/ebooks/8784', 'en', 1082), +(1459, 'Spinifex and Sand\r\nA Narrative of Five Years\' Pioneering and Exploration in Western Ausralia', 'Carnegie, David Wynford', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/4975', 'en', 1083), +(1460, 'A Text-book of Paper-making', 'Bevan, E. J. (Edward John)', '2018-03-04', 17, 'https://www.gutenberg.org/ebooks/56679', 'en', 1030), +(1461, '\'Oh, Well, You Know How Women Are!\'', 'Rinehart, Mary Roberts', '2008-01-12', 56, 'https://www.gutenberg.org/ebooks/24259', 'en', 1084), +(1462, 'Poultry\r\nA Practical Guide to the Choice, Breeding, Rearing, and Management of all Descriptions of Fowls, Turkeys, Guinea-fowls, Ducks, and Geese, for Profit and Exhibition.', 'Piper, Hugh', '2012-01-18', 19, 'https://www.gutenberg.org/ebooks/38606', 'en', 1085), +(1463, 'La Casa de los Cuervos', 'Wast, Hugo', '2019-05-30', 32, 'https://www.gutenberg.org/ebooks/59631', 'es', 1086), +(1464, 'Diary of Samuel Pepys — Volume 29: June/July 1664', 'Pepys, Samuel', '2004-11-30', 12, 'https://www.gutenberg.org/ebooks/4149', 'en', 478), +(1465, 'Eighty Years and More; Reminiscences 1815-1897', 'Stanton, Elizabeth Cady', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/11982', 'en', 1087), +(1466, 'Philaster; Or, Love Lies a Bleeding', 'Fletcher, John', '2004-01-01', 52, 'https://www.gutenberg.org/ebooks/10850', 'en', 1088), +(1467, 'Alien Offer', 'Sevcik, Al', '2008-10-18', 38, 'https://www.gutenberg.org/ebooks/26956', 'en', 179), +(1468, 'Mammals Obtained by Dr. Curt von Wedel from the Barrier Beach of Tamaulipas, Mexico', 'Hall, E. Raymond (Eugene Raymond)', '2009-06-15', 16, 'https://www.gutenberg.org/ebooks/29122', 'en', 130), +(1469, 'Of Ghostes and Spirites, Walking by Night\r\nAnd of Straunge Noyses, Crackes, and Sundrie Forewarnings, Which Commonly Happen Before the Death of Men: Great Slaughters, and Alterations of Kingdoms', 'Lavater, Ludwig', '2016-01-25', 21, 'https://www.gutenberg.org/ebooks/51038', 'en', 1089), +(1470, 'The Eyes Have It', 'Garrett, Randall', '2010-01-02', 185, 'https://www.gutenberg.org/ebooks/30833', 'en', 1090), +(1471, 'Desert Air\n1905', 'Hichens, Robert', '2007-11-08', 13, 'https://www.gutenberg.org/ebooks/23418', 'en', 267), +(1472, 'Backwoods Surgery & Medicine', 'Moody, Charles Stuart', '2015-05-11', 40, 'https://www.gutenberg.org/ebooks/48929', 'en', 1091), +(1473, 'Niels Klim\'s journey under the ground\r\nbeing a narrative of his wonderful descent to the subterranean lands; together with an account of the sensible animals and trees inhabiting the planet Nazar and the firmament.', 'Holberg, Ludvig', '2009-01-25', 56, 'https://www.gutenberg.org/ebooks/27884', 'en', 467), +(1474, 'Homer Martin, a Reminiscence, October 28, 1836-February 12, 1897', 'Martin, Elizabeth Gilbert', '2017-09-06', 8, 'https://www.gutenberg.org/ebooks/55498', 'en', 1092), +(1475, 'Plague of Pythons', 'Pohl, Frederik', '2016-04-19', 140, 'https://www.gutenberg.org/ebooks/51804', 'en', 26), +(1476, 'An Introduction to Chemical Science', 'Williams, Rufus P. (Rufus Phillips)', '2003-02-01', 82, 'https://www.gutenberg.org/ebooks/3708', 'en', 292), +(1477, 'Passages from a Relinquished Work (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 18, 'https://www.gutenberg.org/ebooks/9232', 'en', 179), +(1478, 'The King Behind the King', 'Deeping, Warwick', '2015-01-30', 18, 'https://www.gutenberg.org/ebooks/48115', 'en', 1093), +(1479, 'Molly Make-Believe', 'Abbott, Eleanor Hallowell', '2006-06-23', 35, 'https://www.gutenberg.org/ebooks/18665', 'en', 757), +(1480, 'Natural Wonders', 'Brewster, Edwin Tenney', '2015-01-13', 31, 'https://www.gutenberg.org/ebooks/47961', 'en', 1094), +(1481, 'Bring Back My Blushing Rose (\"Sally Won\'t You Come Back\")\r\nFoxtrot Medley', 'Broadway Dance Orchestra', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10408', 'en', 1095), +(1482, 'Il trionfo: Dramma in quattro atti', 'Bracco, Roberto', '2012-07-31', 40, 'https://www.gutenberg.org/ebooks/40378', 'it', 407), +(1483, 'Elämän hawainnoita 06: Rakkauden suurin uhri; Sortunut; Olkkos=Kaisa', 'Päivärinta, Pietari', '2005-02-03', 35, 'https://www.gutenberg.org/ebooks/14894', 'fi', 456), +(1484, 'Wild Adventures in Wild Places', 'Stables, Gordon', '2011-12-10', 14, 'https://www.gutenberg.org/ebooks/38262', 'en', 1096), +(1485, 'The Original Fables of La Fontaine\nRendered into English Prose by Fredk. Colin Tilney', 'La Fontaine, Jean de', '2005-05-30', 135, 'https://www.gutenberg.org/ebooks/15946', 'en', 506), +(1486, 'Encyclopaedia Britannica, 11th Edition, \"Dodwell, Edward\" to \"Drama\"\r\nVolume 8, Slice 6', 'Various', '2010-06-09', 41, 'https://www.gutenberg.org/ebooks/32758', 'en', 1081), +(1487, 'Death to the Inquisitive! A story of sinful love', 'Sheldon, Lurana', '2018-12-01', 16, 'https://www.gutenberg.org/ebooks/58387', 'en', 61), +(1488, 'Notes on a Journey from Cornhill to Grand Cairo', 'Thackeray, William Makepeace', '1999-08-01', 23, 'https://www.gutenberg.org/ebooks/1863', 'en', 1097), +(1489, 'Easy Does It', 'Von Wald, E. G.', '2019-04-12', 52, 'https://www.gutenberg.org/ebooks/59255', 'en', 123), +(1490, 'A Guide to Methods and Observation in History\nStudies in High School Observation', 'Davis, Calvin Olin', '2007-03-24', 14, 'https://www.gutenberg.org/ebooks/20893', 'en', 1098), +(1491, 'Tiere und Pflanzen in Wald und Feld', 'Buckley, Arabella B. (Arabella Burton)', '2019-02-28', 43, 'https://www.gutenberg.org/ebooks/58989', 'de', 1019), +(1492, 'All (Frightfully Unofficial) About an Old Friend of Mine\r\nWhat He Most Probably Was. What He Most Certainly Will Be, and Who Has Done This? Why the Cat.', 'Gash, Thomas C.', '2011-11-18', 19, 'https://www.gutenberg.org/ebooks/38050', 'en', 1099), +(1493, 'The Wireless Officer', 'Westerman, Percy F. (Percy Francis)', '2011-10-22', 76, 'https://www.gutenberg.org/ebooks/37824', 'en', 1100), +(1494, 'Jaakoppi', 'Kielland, Alexander Lange', '2012-03-17', 10, 'https://www.gutenberg.org/ebooks/39182', 'fi', 7), +(1495, 'The Vinland Champions', 'Liljencrantz, Ottilie A. (Ottilia Adelina)', '2012-10-18', 23, 'https://www.gutenberg.org/ebooks/41098', 'en', 1101), +(1496, 'Grandmother\'s Story of Bunker Hill Battle, as She Saw it from the Belfry', 'Holmes, Oliver Wendell', '2007-06-26', 9, 'https://www.gutenberg.org/ebooks/21941', 'en', 1102), +(1497, 'Ensimäinen seikkailuni', 'Wolzogen, Ernst von', '2012-10-08', 12, 'https://www.gutenberg.org/ebooks/40976', 'fi', 1103), +(1498, 'Raittiutta runoissa I-II: Raittiuskokouksissa lausuttavaksi ja kotona luettavaksi', 'Tamminen, Em.', '2011-08-09', 8, 'https://www.gutenberg.org/ebooks/37018', 'fi', 1104), +(1499, 'More Stories of Married Life', 'Cutting, Mary Stewart', '2018-03-22', 11, 'https://www.gutenberg.org/ebooks/56813', 'en', 256), +(1500, 'La isla del tesoro', 'Stevenson, Robert Louis', '2014-04-19', 255, 'https://www.gutenberg.org/ebooks/45438', 'es', 324), +(1501, 'Dancing Without an Instructor', 'Wilkinson, Professor', '2019-03-15', 13, 'https://www.gutenberg.org/ebooks/59067', 'en', 1105), +(1502, 'Blown to Bits; or, The Lonely Man of Rakata', 'Ballantyne, R. M. (Robert Michael)', '2005-03-13', 31, 'https://www.gutenberg.org/ebooks/15348', 'en', 1106), +(1503, 'The Affair of the Brains', 'Gilmore, Anthony', '2009-07-04', 64, 'https://www.gutenberg.org/ebooks/29310', 'en', 26), +(1504, 'Punch, or the London Charivari, Volume 100, January 10, 1891', 'Various', '2004-07-19', 8, 'https://www.gutenberg.org/ebooks/12951', 'en', 134), +(1505, 'Works of John Bunyan — Volume 03', 'Bunyan, John', '2004-07-01', 43, 'https://www.gutenberg.org/ebooks/6048', 'en', 686), +(1506, 'The Tree of Heaven', 'Sinclair, May', '2004-10-27', 39, 'https://www.gutenberg.org/ebooks/13883', 'en', 1107), +(1507, 'Eastern Tales by Many Story Tellers', NULL, '2008-08-19', 17, 'https://www.gutenberg.org/ebooks/26358', 'en', 1108), +(1508, 'De Wereld vóór de schepping van den mensch', 'Flammarion, Camille', '2006-10-18', 23, 'https://www.gutenberg.org/ebooks/19585', 'nl', 1109), +(1509, 'Canada and the States', 'Watkin, E. W. (Edward William), Sir', '2004-11-01', 8, 'https://www.gutenberg.org/ebooks/6874', 'en', 1110), +(1510, 'Warlord of Mars', 'Burroughs, Edgar Rice', '1993-06-01', 964, 'https://www.gutenberg.org/ebooks/68', 'en', 613), +(1511, 'Sei personaggi in cerca d\'autore', 'Pirandello, Luigi', '2006-05-27', 136, 'https://www.gutenberg.org/ebooks/18457', 'it', 1111), +(1512, 'A Selection from the Writings of Guy De Maupassant, Vol. I', 'Maupassant, Guy de', '1996-07-01', 102, 'https://www.gutenberg.org/ebooks/593', 'en', 1112), +(1513, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 07 (of 17)', NULL, '2017-05-24', 35, 'https://www.gutenberg.org/ebooks/54778', 'en', 1113), +(1514, 'Sri Vishnu Sahasranaamam', NULL, '2005-09-01', 78, 'https://www.gutenberg.org/ebooks/9000', 'sa', 1114), +(1515, 'The Chautauquan, Vol. 03, March 1883\r\nA Monthly Magazine Devoted to the Promotion of True Culture.\r\nOrgan of the Chautauqua Literary and Scientific Circle.', 'Chautauqua Institution', '2014-11-11', 21, 'https://www.gutenberg.org/ebooks/48327', 'en', 1115), +(1516, 'The Story of My Life, volumes 1-3', 'Hare, Augustus J. C. (Augustus John Cuthbert)', '2011-03-16', 20, 'https://www.gutenberg.org/ebooks/35589', 'en', 1116), +(1517, 'An Artist in Crime', 'Ottolengui, Rodrigues', '2010-04-07', 28, 'https://www.gutenberg.org/ebooks/31915', 'en', 128), +(1518, 'A Little Tour of France', 'James, Henry', '2009-02-04', 30, 'https://www.gutenberg.org/ebooks/28004', 'en', 1117), +(1519, 'The Seven Seas', 'Kipling, Rudyard', '2009-01-22', 29, 'https://www.gutenberg.org/ebooks/27870', 'en', 1118), +(1520, 'Il duca d\'Atene', 'Tommaseo, Niccolò', '2014-09-12', 14, 'https://www.gutenberg.org/ebooks/46847', 'it', 1119), +(1521, 'The Outdoor Chums at Cabin Point; Or, The Golden Cup Mystery', 'Allen, Quincy', '2006-11-09', 14, 'https://www.gutenberg.org/ebooks/19743', 'en', 1120), +(1522, 'A Draught of the Blue, together with An Essence of the Dusk', 'Bain, F. W. (Francis William)', '2015-05-23', 7, 'https://www.gutenberg.org/ebooks/49033', 'en', 580), +(1523, 'The Bible, Douay-Rheims, Book 14: 2 Paralipomenon\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8314', 'en', 1121), +(1524, 'Der Löwe von Flandern: ein historische Roman aus Alt-Belgien', 'Conscience, Hendrik', '2010-01-30', 22, 'https://www.gutenberg.org/ebooks/31129', 'de', 960), +(1525, 'Perpetual Peace: A Philosophical Essay', 'Kant, Immanuel', '2016-01-14', 187, 'https://www.gutenberg.org/ebooks/50922', 'en', 1122), +(1526, 'The Motor Boys Across the Plains; or, The Hermit of Lost Lake', 'Young, Clarence', '2013-08-19', 9, 'https://www.gutenberg.org/ebooks/43509', 'en', 557), +(1527, 'The Getting of Wisdom', 'Richardson, Henry Handel', '2009-05-01', 3, 'https://www.gutenberg.org/ebooks/28838', 'en', 1080), +(1528, 'Queechy, Volume II', 'Warner, Susan', '2006-06-26', 14, 'https://www.gutenberg.org/ebooks/18691', 'en', 1123), +(1529, 'A Lady\'s Life in the Rocky Mountains', 'Bird, Isabella L. (Isabella Lucy)', '1996-12-01', 200, 'https://www.gutenberg.org/ebooks/755', 'en', 1124), +(1530, 'A Yankee in the Trenches', 'Holmes, Robert Derby', '2004-08-25', 43, 'https://www.gutenberg.org/ebooks/13279', 'en', 449), +(1531, 'Little Mitchell: The Story of a Mountain Squirrel', 'Morley, Margaret Warner', '2015-01-16', 11, 'https://www.gutenberg.org/ebooks/47995', 'en', 1125), +(1532, 'Wild Adventures round the Pole\r\nOr, The Cruise of the \"Snowbird\" Crew in the \"Arrandoon\"', 'Stables, Gordon', '2011-12-13', 12, 'https://www.gutenberg.org/ebooks/38296', 'en', 1096), +(1533, 'The Journal of Sir Walter Scott\nFrom the Original Manuscript at Abbotsford', 'Scott, Walter', '2005-02-01', 64, 'https://www.gutenberg.org/ebooks/14860', 'en', 1126), +(1534, 'The Diplomatic Correspondence of the American Revolution, Vol. 06', NULL, '2012-04-01', 14, 'https://www.gutenberg.org/ebooks/39344', 'en', 330), +(1535, 'Has a Frog a Soul?', 'Huxley, Thomas Henry', '2007-01-05', 6, 'https://www.gutenberg.org/ebooks/20269', 'en', 243), +(1536, 'The Seventh Man', 'Brand, Max', '1999-09-01', 76, 'https://www.gutenberg.org/ebooks/1897', 'en', 61), +(1537, 'Harper\'s Round Table, June 30, 1896', 'Various', '2018-11-28', 1, 'https://www.gutenberg.org/ebooks/58373', 'en', 668), +(1538, 'Traitor and True: A Romance', 'Bloundelle-Burton, John', '2016-07-25', 9, 'https://www.gutenberg.org/ebooks/52649', 'en', 1127), +(1539, 'Bolivia.—Een in wording zijnde Staat aan den Stillen Oceaan\nDe Aarde en haar Volken, 1907-1908', 'Barbier, Emile', '2007-03-21', 5, 'https://www.gutenberg.org/ebooks/20867', 'nl', 1128), +(1540, 'The Heritage of the Sioux', 'Bower, B. M.', '1998-05-01', 46, 'https://www.gutenberg.org/ebooks/1299', 'en', 1129), +(1541, 'Unfailing Springs', 'Taylor, James Hudson', '2018-05-07', 10, 'https://www.gutenberg.org/ebooks/57109', 'en', 1130), +(1542, 'A History of the Boundaries of Arlington County, Virginia', 'Arlington Co., Va. County Manager', '2011-07-30', 14, 'https://www.gutenberg.org/ebooks/36902', 'en', 1131), +(1543, 'The Adventures of Danny Meadow Mouse', 'Burgess, Thornton W. (Thornton Waldo)', '2008-05-19', 44, 'https://www.gutenberg.org/ebooks/25529', 'en', 1132), +(1544, 'Delusion; or, The Witch of New England', 'Lee, Eliza Buckminster', '2012-03-17', 7, 'https://www.gutenberg.org/ebooks/39176', 'en', 1133), +(1545, 'The Miraculous Conception\r\nOr, The Divinity of Jesus Christ Considered as the Foundation of the Christian Religion', 'Annet, Peter', '2012-10-08', 26, 'https://www.gutenberg.org/ebooks/40982', 'en', 1134), +(1546, 'Fabiola eli katakombien kirkko', 'Wiseman, Nicholas Patrick', '2018-10-20', 9, 'https://www.gutenberg.org/ebooks/58141', 'fi', 1135), +(1547, 'Poems & Parodies', 'Kettle, Tom', '2012-02-16', 103, 'https://www.gutenberg.org/ebooks/38898', 'en', 1136), +(1548, 'Vicksburg National Military Park, Mississippi', 'Everhart, William C.', '2018-09-19', 7, 'https://www.gutenberg.org/ebooks/57935', 'en', 1137), +(1549, 'The Progressive Democracy of James M. Cox', 'Morris, Charles E. (Charles Eugene)', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/5639', 'en', 1138), +(1550, 'The Great Sieges of History', 'Robson, William', '2019-03-19', 75, 'https://www.gutenberg.org/ebooks/59093', 'en', 1139), +(1551, 'The Expositor\'s Bible: The Second Epistle to the Corinthians', 'Denney, James', '2013-01-15', 18, 'https://www.gutenberg.org/ebooks/41850', 'en', 1140), +(1552, 'Aesop, in Rhyme: Old Friends in a New Dress', 'Aesop', '2007-04-19', 62, 'https://www.gutenberg.org/ebooks/21189', 'en', 1141), +(1553, 'Hero Tales and Legends of the Rhine', 'Spence, Lewis', '2005-08-17', 31, 'https://www.gutenberg.org/ebooks/16539', 'en', 1142), +(1554, 'A History of the Cambridge University Press, 1521-1921', 'Roberts, S. C. (Sydney Castle)', '2014-07-11', 65, 'https://www.gutenberg.org/ebooks/46249', 'en', 1143), +(1555, 'Poise: How to Attain It', 'Starke, D.', '2004-10-26', 42, 'https://www.gutenberg.org/ebooks/13877', 'en', 740), +(1556, 'Lost Pond', 'Abbott, Henry', '2010-12-16', 21, 'https://www.gutenberg.org/ebooks/34669', 'en', 1144), +(1557, 'A Romantic Young Lady', 'Grant, Robert', '2009-03-01', 10, 'https://www.gutenberg.org/ebooks/28236', 'en', 61), +(1558, 'The Birch and the Star, and Other Stories', 'Topelius, Zacharias', '2015-06-12', 20, 'https://www.gutenberg.org/ebooks/49201', 'en', 1145), +(1559, 'Der Nachsommer', 'Stifter, Adalbert', '2005-05-01', 42, 'https://www.gutenberg.org/ebooks/8126', 'de', 1080), +(1560, 'A Noiseless Patient Spider', 'Whitman, Walt', '2006-10-20', 4, 'https://www.gutenberg.org/ebooks/19571', 'en', 8), +(1561, 'The Chase of Saint-Castin and Other Stories of the French in the New World', 'Catherwood, Mary Hartwell', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/12199', 'en', 1146), +(1562, 'The Pleasures of Life', 'Lubbock, John, Sir', '2005-04-01', 60, 'https://www.gutenberg.org/ebooks/7952', 'en', 1147), +(1563, 'The Complete Works of Brann, the Iconoclast — Volume 01', 'Brann, William Cowper', '1996-06-01', 12, 'https://www.gutenberg.org/ebooks/567', 'en', 1148), +(1564, 'The Coming of Bill', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 87, 'https://www.gutenberg.org/ebooks/6880', 'en', 637), +(1565, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 289, December 22, 1827', 'Various', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11378', 'en', 133), +(1566, 'Soldiering in North Carolina\r\nBeing the experiences of a \'typo\' in the pines, swamps, fields, sandy roads, towns, cities, and among the fleas, wood-ticks, \'gray-backs,\' mosquitoes, blue-tail flies, moccasin snakes, lizards, scorpions, rebels, and other reptiles, pests, and vermin of the \'Old North State.\' Embracing an account of the three-years and nine-months Massachusetts regiments in the department, the freedmen, etc., etc., etc.', 'Kirwan, Thomas', '2014-06-06', 8, 'https://www.gutenberg.org/ebooks/45894', 'en', 1149), +(1567, 'Les Tourelles: Histoire des châteaux de France, volume I', 'Gozlan, Léon', '2012-04-23', 8, 'https://www.gutenberg.org/ebooks/39512', 'fr', 1150), +(1568, 'Psychology: an elementary text-book', 'Ebbinghaus, Hermann', '2016-08-16', 26, 'https://www.gutenberg.org/ebooks/52823', 'en', 1151), +(1569, 'Affinities, and Other Stories', 'Rinehart, Mary Roberts', '2012-11-19', 31, 'https://www.gutenberg.org/ebooks/41408', 'en', 61), +(1570, 'Man and Maid', 'Nesbit, E. (Edith)', '2010-06-30', 62, 'https://www.gutenberg.org/ebooks/33028', 'en', 109), +(1571, 'Valittuja novelleja II', 'Maupassant, Guy de', '2014-02-17', 30, 'https://www.gutenberg.org/ebooks/44946', 'fi', 1152), +(1572, 'The Creators: A Comedy', 'Sinclair, May', '2008-07-04', 40, 'https://www.gutenberg.org/ebooks/25971', 'en', 918), +(1573, 'Remarks on the Uses of some of the Bazaar Medicines and Common Medical Plants of India\r\nWith a full index of diseases, indicating their treatment by these and other agents procurable throughout India; to which are added directions for treatment in cases of drowning, snake-bites &c.', 'Waring, Edward John', '2018-12-23', 29, 'https://www.gutenberg.org/ebooks/58525', 'en', 1153), +(1574, 'The Mystery of Evelin Delorme: A Hypnotic Story', 'Paine, Albert Bigelow', '2010-09-27', 20, 'https://www.gutenberg.org/ebooks/33814', 'en', 580), +(1575, 'Asgard Stories: Tales from Norse Mythology', 'Foster, Mary H.', '2011-09-20', 236, 'https://www.gutenberg.org/ebooks/37488', 'en', 1154), +(1576, 'The Fatal Boots', 'Thackeray, William Makepeace', '2006-03-27', 32, 'https://www.gutenberg.org/ebooks/2844', 'en', 1155), +(1577, 'Kulmuja 1: Kuvia elämän varrelta', 'Kataja, Väinö', '2015-12-23', 11, 'https://www.gutenberg.org/ebooks/50748', 'fi', 175), +(1578, 'Bobby of Cloverfield Farm', 'Orton, Helen Fuller', '2009-05-01', 11, 'https://www.gutenberg.org/ebooks/28652', 'en', 527), +(1579, 'Theorie der Abel\'schen Functionen', 'Weierstrass, Karl', '2009-08-24', 9, 'https://www.gutenberg.org/ebooks/29780', 'de', 1156), +(1580, 'De francicae linguae recta pronuntiatione', 'Bèze, Théodore de', '2007-08-21', 9, 'https://www.gutenberg.org/ebooks/22368', 'la', 1157), +(1581, 'An Attic Philosopher in Paris — Volume 1', 'Souvestre, Émile', '2003-04-01', 29, 'https://www.gutenberg.org/ebooks/3996', 'en', 560), +(1582, 'Cad Metti, The Female Detective Strategist; Or, Dudie Dunne Again in the Field', 'Old Sleuth', '2006-11-27', 33, 'https://www.gutenberg.org/ebooks/19929', 'en', 128), +(1583, 'Around the World in Eighty Days', 'Verne, Jules', '1994-01-01', 1893, 'https://www.gutenberg.org/ebooks/103', 'en', 1158), +(1584, 'Thais', 'France, Anatole', '2006-03-22', 103, 'https://www.gutenberg.org/ebooks/2078', 'en', 1159), +(1585, 'Quaint Courtships', NULL, '2005-12-01', 13, 'https://www.gutenberg.org/ebooks/9490', 'en', 112), +(1586, 'Drawing Rooms, Second Floor, and Attics: A Farce, in One Act', 'Morton, John Maddison', '2015-08-10', 10, 'https://www.gutenberg.org/ebooks/49665', 'en', 907), +(1587, 'Things Mother Used to Make\r\nA Collection of Old Time Recipes, Some Nearly One Hundred Years Old and Never Published Before', 'Gurney, Lydia Maria', '2005-07-01', 91, 'https://www.gutenberg.org/ebooks/8542', 'en', 103), +(1588, 'Trafalgar', 'Pérez Galdós, Benito', '2005-10-29', 90, 'https://www.gutenberg.org/ebooks/16961', 'es', 1160), +(1589, 'Roman Britain in 1914', 'Haverfield, F. (Francis)', '2006-08-25', 75, 'https://www.gutenberg.org/ebooks/19115', 'en', 1161), +(1590, 'Bolden\'s Pets', 'Wallace, F. L. (Floyd L.)', '2009-03-31', 27, 'https://www.gutenberg.org/ebooks/28460', 'en', 26), +(1591, 'The Loss of the S. S. Titanic', 'Beesley, Lawrence', '2007-10-01', 14, 'https://www.gutenberg.org/ebooks/23088', 'en', 1162), +(1592, 'The Cynic\'s Word Book', 'Bierce, Ambrose', '2013-10-14', 64, 'https://www.gutenberg.org/ebooks/43951', 'en', 1163), +(1593, 'Arbeiders: Roman', 'Kielland, Alexander Lange', '2017-10-28', 6, 'https://www.gutenberg.org/ebooks/55834', 'nl', 1164), +(1594, 'The Parisians — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 16, 'https://www.gutenberg.org/ebooks/7738', 'en', 1165), +(1595, 'La promessa sposa di Lammermoor, Tomo 3 (of 3)', 'Scott, Walter', '2013-06-07', 10, 'https://www.gutenberg.org/ebooks/42883', 'it', 1166), +(1596, 'Kerjäläissoturit: Historiallinen romaani', 'Liefde, J. B. de (Jacob B.)', '2015-03-26', 7, 'https://www.gutenberg.org/ebooks/48585', 'fi', 1167), +(1597, 'The Mucker', 'Burroughs, Edgar Rice', '1995-09-01', 183, 'https://www.gutenberg.org/ebooks/331', 'en', 61), +(1598, 'Les grandes chroniques de France (2/6)\nselon que elles sont conservées en l\'Eglise de Saint-Denis', NULL, '2010-12-31', 12, 'https://www.gutenberg.org/ebooks/34803', 'fr', 1168), +(1599, 'La Francia dal primo impero al 1871. Volume 1', 'Treitschke, Heinrich von', '2008-12-06', 13, 'https://www.gutenberg.org/ebooks/27428', 'it', 1169), +(1600, 'The American Missionary, Volume 34, No. 11, November 1880', 'Various', '2017-06-30', 4, 'https://www.gutenberg.org/ebooks/55008', 'en', 562), +(1601, 'Reize in Taka (Opper-Nubië)\nDe Aarde en haar Volken, 1873', 'Lejean, Guillaume', '2006-09-19', 16, 'https://www.gutenberg.org/ebooks/19327', 'nl', 1170), +(1602, 'Vapauden kirja: Runovalikoima', 'Leino, Eino', '2015-07-16', 14, 'https://www.gutenberg.org/ebooks/49457', 'fi', 1171), +(1603, 'Toy Shop', 'Harrison, Harry', '2007-10-12', 126, 'https://www.gutenberg.org/ebooks/22966', 'en', 26), +(1604, 'My First Visit to New England, and Others (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 15, 'https://www.gutenberg.org/ebooks/3398', 'en', 1172), +(1605, 'Milton', 'Pattison, Mark', '2005-08-01', 17, 'https://www.gutenberg.org/ebooks/8770', 'en', 1173), +(1606, 'The Abolition Crusade and Its Consequences: Four Periods of American History', 'Herbert, Hilary A. (Hilary Abner)', '2012-05-17', 21, 'https://www.gutenberg.org/ebooks/39720', 'en', 1174), +(1607, 'Minnesota and Dacotah', 'Andrews, C. C. (Christopher Columbus)', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4981', 'en', 1175), +(1608, 'How Jerusalem Was Won\nBeing the Record of Allenby\'s Campaign in Palestine', 'Massey, W. T. (William Thomas)', '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/10098', 'en', 1176), +(1609, 'Memoirs of General W. T. Sherman, Volume II., Part 4', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/5853', 'en', 1177), +(1610, 'Dialstone Lane, Complete', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/11976', 'en', 533), +(1611, 'Triumphs of Invention and Discovery in Art and Science', 'Fyfe, J. Hamilton (James Hamilton)', '2011-07-17', 27, 'https://www.gutenberg.org/ebooks/36768', 'en', 1178), +(1612, 'Dastral of the Flying Corps', 'Walker, Rowland', '2013-12-04', 17, 'https://www.gutenberg.org/ebooks/44348', 'en', 325), +(1613, 'Mesikämmen; Musti; Ahven ja kultakalat', 'Leino, Eino', '2004-12-24', 5, 'https://www.gutenberg.org/ebooks/14438', 'fi', 61), +(1614, 'The Early History of the Post in Grant and Farm', 'Hyde, James Wilson', '2019-01-18', 2, 'https://www.gutenberg.org/ebooks/58717', 'en', 1179), +(1615, 'Robert Helmont: Diary of a Recluse, 1870-1871', 'Daudet, Alphonse', '2016-02-16', 14, 'https://www.gutenberg.org/ebooks/51235', 'en', 1180), +(1616, 'The Hero', 'Wilber, Elaine', '2011-04-04', 18, 'https://www.gutenberg.org/ebooks/35770', 'en', 179), +(1617, 'L\'Illustration, No. 1584, 5 Juillet 1873', 'Various', '2014-07-14', 5, 'https://www.gutenberg.org/ebooks/46282', 'fr', 150), +(1618, 'Le capitaine Coutanceau', 'Gaboriau, Emile', '2014-11-14', 15, 'https://www.gutenberg.org/ebooks/47350', 'fr', 298), +(1619, 'History of the Donner Party: A Tragedy of the Sierra', 'McGlashan, C. F. (Charles Fayette)', '2004-07-01', 46, 'https://www.gutenberg.org/ebooks/6077', 'en', 1181), +(1620, 'Le Tour du Monde; Australie\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2007-11-25', 10, 'https://www.gutenberg.org/ebooks/23615', 'fr', 1182), +(1621, 'Journal des Goncourt (Deuxième série, deuxième volume)\nMémoires de la vie littéraire', 'Goncourt, Jules de', '2005-12-30', 12, 'https://www.gutenberg.org/ebooks/17420', 'fr', 1183), +(1622, 'Memoirs of the Life and Correspondence of Henry Reeve, C.B., D.C.L.\r\nIn Two Volumes. Volume II.', 'Reeve, Henry', '2006-02-01', 13, 'https://www.gutenberg.org/ebooks/9803', 'en', 1184), +(1623, 'Human Genome Project, Chromosome Number 05', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3505', 'en', 1041), +(1624, 'The Book of Christmas\r\nDescriptive of the Customs, Ceremonies, Traditions, Superstitions, Fun, Feeling, and Festivities of the Christmas Season', 'Hervey, Thomas K.', '2013-04-30', 29, 'https://www.gutenberg.org/ebooks/42622', 'en', 949), +(1625, 'The Bible, King James Version, Complete Contents', 'Anonymous', '2004-11-12', 131, 'https://www.gutenberg.org/ebooks/7999', 'en', 1185), +(1626, 'Keeping Watch\nNight Watches, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12152', 'en', 637), +(1627, 'Pioneer Saturn Encounter', 'United States. National Aeronautics and Space Administration', '2017-10-07', 17, 'https://www.gutenberg.org/ebooks/55695', 'en', 1186), +(1628, 'The Young Alaskans on the Missouri', 'Hough, Emerson', '2008-08-20', 40, 'https://www.gutenberg.org/ebooks/26367', 'en', 1187), +(1629, 'Aladdin and the Magic Lamp', 'Unknown', '1993-03-01', 375, 'https://www.gutenberg.org/ebooks/57', 'en', 1007), +(1630, 'The Fife and Forfar Yeomanry, and 14th (F. & F. Yeo.) Battn. R.H. 1914-1919', 'Ogilvie, D. Douglas', '2006-05-29', 29, 'https://www.gutenberg.org/ebooks/18468', 'en', 1188), +(1631, 'Tom, Dick and Harriet', 'Barbour, Ralph Henry', '2017-05-20', 26, 'https://www.gutenberg.org/ebooks/54747', 'en', 1189), +(1632, 'Night of Warehouses: New and Selected Poems 1998-2000', 'Oliver, Stephen', '2004-08-02', 5, 'https://www.gutenberg.org/ebooks/13080', 'en', 8), +(1633, 'In Pastures Green', 'McArthur, Peter', '2015-02-20', 12, 'https://www.gutenberg.org/ebooks/48318', 'en', 1190), +(1634, 'Flowers of Freethought (First Series)', 'Foote, G. W. (George William)', '2009-10-06', 22, 'https://www.gutenberg.org/ebooks/30202', 'en', 1191), +(1635, 'Barbarossa; An Historical Novel of the XII Century.', 'Bolanden, Conrad von', '2010-08-22', 95, 'https://www.gutenberg.org/ebooks/33487', 'en', 1192), +(1636, 'Le Morte d\'Arthur: Volume 2', 'Malory, Thomas, Sir', '1998-03-01', 362, 'https://www.gutenberg.org/ebooks/1252', 'en', 1193), +(1637, 'Physics', 'Tower, Willis E. (Willis Eugene)', '2012-07-09', 102, 'https://www.gutenberg.org/ebooks/40175', 'en', 1194), +(1638, 'Adventures in Contentment', 'Grayson, David', '2004-01-01', 33, 'https://www.gutenberg.org/ebooks/10605', 'en', 1195), +(1639, 'Nights With Uncle Remus', 'Harris, Joel Chandler', '2008-01-26', 99, 'https://www.gutenberg.org/ebooks/24430', 'en', 1196), +(1640, 'Las transformaciones de la sociedad argentina y sus consecuencias institucionales (1853 à 1910)', 'Rivarola, Horacio Carlos', '2017-11-19', 5, 'https://www.gutenberg.org/ebooks/56010', 'es', 1197), +(1641, 'The Club at Crow\'s Corner', 'Otis, James', '2010-05-27', 5, 'https://www.gutenberg.org/ebooks/32555', 'en', 625); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(1642, 'The Silver Arrow', 'Hubbard, Elbert', '2019-07-06', 163, 'https://www.gutenberg.org/ebooks/59864', 'en', 1198), +(1643, 'Underground Treasures: How and Where to Find Them\r\nA Key for the Ready Determination of All the Useful Minerals Within the United States', 'Orton, James', '2016-11-20', 21, 'https://www.gutenberg.org/ebooks/53562', 'en', 1199), +(1644, 'The Curse of Koshiu: A Chronicle of Old Japan', 'Wingfield, Lewis', '2012-02-13', 21, 'https://www.gutenberg.org/ebooks/38853', 'en', 1200), +(1645, 'The Uncollected Writings of Thomas de Quincey, Vol. 2\nWith a Preface and Annotations by James Hogg', 'De Quincey, Thomas', '2006-12-11', 27, 'https://www.gutenberg.org/ebooks/20090', 'en', 1201), +(1646, 'The Outrage', 'Vivanti, Annie', '2012-10-05', 10, 'https://www.gutenberg.org/ebooks/40949', 'en', 579), +(1647, 'With Fire and Sword: An Historical Novel of Poland and Russia', 'Sienkiewicz, Henryk', '2011-08-10', 180, 'https://www.gutenberg.org/ebooks/37027', 'en', 1202), +(1648, 'The Pansy Magazine, May 1886', 'Various', '2014-04-16', 3, 'https://www.gutenberg.org/ebooks/45407', 'en', 200), +(1649, 'Wacousta : a tale of the Pontiac conspiracy — Volume 2', 'Richardson, Major (John)', '2003-12-01', 37, 'https://www.gutenberg.org/ebooks/4720', 'en', 1203), +(1650, 'Красавице', 'Pushkin, Aleksandr Sergeevich', '2007-04-24', 19, 'https://www.gutenberg.org/ebooks/21142', 'ru', 8), +(1651, 'Farmer George, Volume 2', 'Melville, Lewis', '2012-07-02', 11, 'https://www.gutenberg.org/ebooks/39981', 'en', 1204), +(1652, 'Aristotle\'s History of Animals\nIn Ten Books', 'Aristotle', '2019-03-14', 42, 'https://www.gutenberg.org/ebooks/59058', 'en', 1205), +(1653, 'Punch, or the London Charivari, Volume 152, May 16, 1917', 'Various', '2005-03-16', 6, 'https://www.gutenberg.org/ebooks/15377', 'en', 134), +(1654, 'Pulpit and Press (6th Edition)', 'Eddy, Mary Baker', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/10437', 'en', 1206), +(1655, 'Through Veld and Forest: An African Story', 'Collingwood, Harry', '2008-02-13', 19, 'https://www.gutenberg.org/ebooks/24602', 'en', 1207), +(1656, 'Grass of Parnassus', 'Lang, Andrew', '1997-10-01', 35, 'https://www.gutenberg.org/ebooks/1060', 'en', 8), +(1657, 'The Coward Behind the Curtain', 'Marsh, Richard', '2012-07-27', 24, 'https://www.gutenberg.org/ebooks/40347', 'en', 61), +(1658, 'Notes and Queries, Vol. V, Number 131, May 1, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-11-05', 12, 'https://www.gutenberg.org/ebooks/41295', 'en', 105), +(1659, 'Miss Caprice', 'Rathborne, St. George', '2005-06-03', 18, 'https://www.gutenberg.org/ebooks/15979', 'en', 336), +(1660, 'Some Specimens of the Poetry of the Ancient Welsh Bards', 'Evans, Evan', '2010-06-10', 15, 'https://www.gutenberg.org/ebooks/32767', 'en', 1208), +(1661, 'Bertha\'s Christmas Vision: An Autumn Sheaf', 'Alger, Horatio, Jr.', '2017-12-22', 16, 'https://www.gutenberg.org/ebooks/56222', 'en', 1209), +(1662, 'The Argus Pheasant', 'Beecham, John Charles', '2011-08-26', 25, 'https://www.gutenberg.org/ebooks/37215', 'en', 323), +(1663, 'Scientific American Supplement, No. 483, April 4, 1885', 'Various', '2004-11-20', 15, 'https://www.gutenberg.org/ebooks/14097', 'en', 210), +(1664, 'The Book Review Digest, Volume 13, 1917\nThirteenth Annual Cumulation Reviews of 1917 Books', 'Various', '2016-12-17', 16, 'https://www.gutenberg.org/ebooks/53750', 'en', 1053), +(1665, 'More Goops and How Not to Be Them: A Manual of Manners for Impolite Infants', 'Burgess, Gelett', '2007-05-11', 3, 'https://www.gutenberg.org/ebooks/21370', 'en', 1210), +(1666, 'Historia de Gil Blas de Santillana: Novela (Vol 2 de 3)', 'Le Sage, Alain René', '2016-07-30', 12, 'https://www.gutenberg.org/ebooks/52682', 'es', 1211), +(1667, 'My Book of Favourite Fairy Tales', 'Vredenburg, Edric', '2005-02-22', 109, 'https://www.gutenberg.org/ebooks/15145', 'en', 1007), +(1668, 'Mnais und Ginevra', 'Mann, Heinrich', '2014-05-12', 7, 'https://www.gutenberg.org/ebooks/45635', 'de', 1212), +(1669, 'Gardening Without Irrigation: or without much, anyway', 'Solomon, Steve', '2003-10-01', 66, 'https://www.gutenberg.org/ebooks/4512', 'en', 1213), +(1670, 'The Poetical Works of Oliver Wendell Holmes — Volume 10: Before the Curfew', 'Holmes, Oliver Wendell', '2004-09-30', 19, 'https://www.gutenberg.org/ebooks/7397', 'en', 178), +(1671, 'House Rats and Mice', 'Lantz, David E. (David Ernest)', '2011-03-10', 41, 'https://www.gutenberg.org/ebooks/35542', 'en', 1214), +(1672, 'Punch, or the London Charivari, Vol. 147, August 19th, 1914', 'Various', '2008-10-19', 12, 'https://www.gutenberg.org/ebooks/26969', 'en', 134), +(1673, 'Savolaisia: Tarinoita', 'Kauppis-Heikki', '2016-01-23', 30, 'https://www.gutenberg.org/ebooks/51007', 'fi', 456), +(1674, 'Evolution, Old & New\nOr, the Theories of Buffon, Dr. Erasmus Darwin and Lamarck,\nas compared with that of Charles Darwin', 'Butler, Samuel', '2007-11-09', 18, 'https://www.gutenberg.org/ebooks/23427', 'en', 1215), +(1675, 'Outings at Odd Times', 'Abbott, Charles C. (Charles Conrad)', '2015-05-10', 30, 'https://www.gutenberg.org/ebooks/48916', 'en', 1216), +(1676, 'Handbook to the Severn Valley Railway\nIllustrative and Descriptive of Places along the Line from Worcester to Shrewsbury', 'Randall, John', '2006-01-26', 16, 'https://www.gutenberg.org/ebooks/17612', 'en', 1217), +(1677, 'The Horse\'s Mouth, Showing the age by the teeth', 'Mayhew, Edward', '2014-10-20', 7, 'https://www.gutenberg.org/ebooks/47162', 'en', 1218), +(1678, 'The Right of Way — Volume 03', 'Parker, Gilbert', '2004-08-01', 20, 'https://www.gutenberg.org/ebooks/6245', 'en', 1219), +(1679, 'Sweet Mace: A Sussex Legend of the Iron Times', 'Fenn, George Manville', '2010-11-29', 16, 'https://www.gutenberg.org/ebooks/34490', 'en', 1220), +(1680, 'Denslow\'s Three Bears', 'Denslow, W. W. (William Wallace)', '2006-11-15', 4, 'https://www.gutenberg.org/ebooks/19788', 'en', 1007), +(1681, 'The Top of the World', 'Dell, Ethel M. (Ethel May)', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/12360', 'en', 61), +(1682, 'Two Wonderful Detectives; Or, Jack and Gil\'s Marvelous Skill', 'Old Sleuth', '2008-07-31', 18, 'https://www.gutenberg.org/ebooks/26155', 'en', 128), +(1683, 'A Far Country — Volume 2', 'Churchill, Winston', '2004-10-17', 27, 'https://www.gutenberg.org/ebooks/3737', 'en', 1221), +(1684, 'Great Events in the History of North and South America', 'Goodrich, Charles A. (Charles Augustus)', '2013-03-25', 11, 'https://www.gutenberg.org/ebooks/42410', 'en', 1222), +(1685, 'Storyology: Essays in Folk-Lore, Sea-Lore, and Plant-Lore', 'Taylor, Benjamin', '2009-09-06', 16, 'https://www.gutenberg.org/ebooks/29921', 'en', 1223), +(1686, 'I coniugi Varedo', 'Castelnuovo, Enrico', '2009-09-19', 20, 'https://www.gutenberg.org/ebooks/30030', 'it', 61), +(1687, 'Wu De Ji', 'Liu, Guang Wei', '2008-10-29', 10, 'https://www.gutenberg.org/ebooks/27087', 'zh', NULL), +(1688, 'Redcoat Captain: A Story of That Country', 'Ollivant, Alfred', '2017-04-19', 8, 'https://www.gutenberg.org/ebooks/54575', 'en', 401), +(1689, 'Pastoral Affair', 'Stearns, Charles A.', '2010-05-09', 30, 'https://www.gutenberg.org/ebooks/32303', 'en', 179), +(1690, 'Captains All\nCaptains All, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11181', 'en', 1224), +(1691, 'La Guerre des Boutons: Roman de ma douzième année', 'Pergaud, Louis', '2018-02-26', 54, 'https://www.gutenberg.org/ebooks/56646', 'fr', 1225), +(1692, 'Jess', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 47, 'https://www.gutenberg.org/ebooks/5898', 'en', 1226), +(1693, 'Scribner\'s Magazine, Volume 26, September 1899', 'Various', '2018-08-28', 6, 'https://www.gutenberg.org/ebooks/57794', 'en', 1227), +(1694, 'La vampire', 'Féval, Paul', '2003-11-01', 78, 'https://www.gutenberg.org/ebooks/10053', 'fr', 561), +(1695, 'Das Schönste von Max Dauthendey', 'Dauthendey, Max', '2008-01-12', 14, 'https://www.gutenberg.org/ebooks/24266', 'de', 1228), +(1696, 'L\'Illustration, No. 0030, 23 Septembre 1843', 'Various', '2012-01-21', 3, 'https://www.gutenberg.org/ebooks/38639', 'fr', 150), +(1697, 'The Federalist Papers', 'Jay, John', '1998-07-01', 739, 'https://www.gutenberg.org/ebooks/1404', 'en', 187), +(1698, 'The Battle of Life: A Love Story', 'Dickens, Charles', '2012-09-10', 77, 'https://www.gutenberg.org/ebooks/40723', 'en', 45), +(1699, 'The Red Eric', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 25, 'https://www.gutenberg.org/ebooks/21714', 'en', 1229), +(1700, 'The Adventures of Prickly Porky', 'Burgess, Thornton W. (Thornton Waldo)', '2005-04-01', 46, 'https://www.gutenberg.org/ebooks/15521', 'en', 625), +(1701, 'How to Know the Ferns', 'Bastin, S. Leonard', '2014-03-28', 15, 'https://www.gutenberg.org/ebooks/45251', 'en', 1230), +(1702, 'Diary of Samuel Pepys — Volume 53: May 1667', 'Pepys, Samuel', '2004-12-01', 26, 'https://www.gutenberg.org/ebooks/4176', 'en', 1231), +(1703, 'The Panama Canal and Its Makers', 'Cornish, Vaughan', '2011-10-08', 15, 'https://www.gutenberg.org/ebooks/37671', 'en', 1232), +(1704, 'Il re dei re, vol. 4\r\nConvoglio diretto nell\'XI secolo', 'Petruccelli della Gattina, Ferdinando', '2013-12-07', 10, 'https://www.gutenberg.org/ebooks/44383', 'it', 1233), +(1705, 'The Art of Being Bored: A Comedy in Three Acts', 'Pailleron, Edouard', '2016-10-21', 3, 'https://www.gutenberg.org/ebooks/53334', 'en', 1234), +(1706, 'Two Gentlemen of Verona\nThe Works of William Shakespeare [Cambridge Edition] [9 vols.]', 'Shakespeare, William', '2007-11-04', 20, 'https://www.gutenberg.org/ebooks/23043', 'en', 907), +(1707, 'The Story of a Candy Rabbit', 'Hope, Laura Lee', '2005-12-10', 11, 'https://www.gutenberg.org/ebooks/17276', 'en', 1235), +(1708, 'The Coming of the Fairies', 'Doyle, Arthur Conan', '2014-12-01', 95, 'https://www.gutenberg.org/ebooks/47506', 'en', 1236), +(1709, 'Poems of the Heart and Home', 'Yule, J. C., Mrs.', '2004-10-01', 7, 'https://www.gutenberg.org/ebooks/6621', 'en', 1237), +(1710, 'Little Tom', 'Tille, Václav', '2011-01-31', 10, 'https://www.gutenberg.org/ebooks/35126', 'en', 1007), +(1711, 'La vita Italiana nel Risorgimento (1846-1849), parte 2\r\nTerza serie - Storia', 'Various', '2016-03-15', 5, 'https://www.gutenberg.org/ebooks/51463', 'it', 999), +(1712, 'Watchbird', 'Sheckley, Robert', '2009-08-02', 125, 'https://www.gutenberg.org/ebooks/29579', 'en', 26), +(1713, 'Storia della Guerra della Independenza degli Stati Uniti di America, vol. 3', 'Botta, Carlo', '2013-05-30', 20, 'https://www.gutenberg.org/ebooks/42848', 'it', 481), +(1714, 'Half a Hero: A Novel', 'Hope, Anthony', '2007-08-01', 22, 'https://www.gutenberg.org/ebooks/22191', 'en', 1238), +(1715, 'Blind Spot', 'Jones, Bascom', '2009-11-11', 40, 'https://www.gutenberg.org/ebooks/30454', 'en', 26), +(1716, 'The Heritage of Dedlow Marsh and Other Tales', 'Harte, Bret', '2000-08-01', 20, 'https://www.gutenberg.org/ebooks/2281', 'en', 315), +(1717, 'Specimens with Memoirs of the Less-known British Poets, Volume 3', NULL, '2006-01-01', 34, 'https://www.gutenberg.org/ebooks/9669', 'en', 54), +(1718, 'On the Iron at Big Cloud', 'Packard, Frank L. (Frank Lucius)', '2017-02-23', 18, 'https://www.gutenberg.org/ebooks/54111', 'en', 1239), +(1719, 'Briar Rose', 'Grimm, Jacob', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12704', 'en', 1007), +(1720, 'Mémoires de Marmontel (Volume 1 of 3)\nMémoires d\'un Père pour servir à l\'Instruction de ses enfans', 'Marmontel, Jean-François', '2008-09-04', 18, 'https://www.gutenberg.org/ebooks/26531', 'fr', 1240), +(1721, 'The Very Black', 'Evans, Dean', '2010-03-10', 21, 'https://www.gutenberg.org/ebooks/31586', 'en', 26), +(1722, 'Letters to His Son, 1749\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 23, 'https://www.gutenberg.org/ebooks/3353', 'en', 740), +(1723, 'The Spirit Lake Massacre', 'Teakle, Thomas', '2013-02-11', 14, 'https://www.gutenberg.org/ebooks/42074', 'en', 1241), +(1724, 'Oberheudorfer Buben- und Mädelgeschichten: Sechszehn heitere Erzählungen', 'Siebe, Josephine', '2014-12-22', 13, 'https://www.gutenberg.org/ebooks/47734', 'de', 1242), +(1725, 'From October to Brest-Litovsk', 'Trotsky, Leon', '2004-09-01', 29, 'https://www.gutenberg.org/ebooks/6413', 'en', 1243), +(1726, 'Mahal na Ejercicio ó Devocion nang Pitong Arao na Domingo\r\nNa pinagcalooban nang santo papa nang indulgencia plenaria sa balang domingo', NULL, '2006-07-15', 6, 'https://www.gutenberg.org/ebooks/18830', 'tl', 1244), +(1727, 'Historic Ghosts and Ghost Hunters', 'Bruce, H. Addington (Henry Addington)', '2009-05-06', 45, 'https://www.gutenberg.org/ebooks/28699', 'en', 1245), +(1728, 'Sunk at Sea', 'Ballantyne, R. M. (Robert Michael)', '2007-10-31', 36, 'https://www.gutenberg.org/ebooks/23271', 'en', 1246), +(1729, 'Mémoires du duc de Saint-Simon\nSiècle de Louis XIV, la régence, Louis XV', 'Taine, Hippolyte', '2005-11-11', 23, 'https://www.gutenberg.org/ebooks/17044', 'fr', 1247), +(1730, 'The Alien', 'Jones, Raymond F.', '2015-12-28', 65, 'https://www.gutenberg.org/ebooks/50783', 'en', 26), +(1731, 'Conditionally Human', 'Miller, Walter M.', '2016-04-03', 55, 'https://www.gutenberg.org/ebooks/51651', 'en', 1248), +(1732, 'King Olaf\'s Kinsman\r\nA Story of the Last Saxon Struggle against the Danes in the Days of Ironside and Cnut', 'Whistler, Charles W. (Charles Watts)', '2005-07-03', 15, 'https://www.gutenberg.org/ebooks/16196', 'en', 1249), +(1733, 'The Childrens\' Story of the War, Volume 2 (of 10)\nFrom the Battle of Mons to the Fall of Antwerp.', 'Parrott, Edward', '2011-02-18', 15, 'https://www.gutenberg.org/ebooks/35314', 'en', 1250), +(1734, 'West Side Studies: Boyhood and Lawlessness; The Neglected Girl', NULL, '2019-08-17', 419, 'https://www.gutenberg.org/ebooks/60116', 'en', 1251), +(1735, 'Paris: A Sketch Book', 'Béjot, Eugène', '2017-03-09', 10, 'https://www.gutenberg.org/ebooks/54323', 'en', 1252), +(1736, 'Through Glacier Park: Seeing America First with Howard Eaton', 'Rinehart, Mary Roberts', '2013-08-03', 39, 'https://www.gutenberg.org/ebooks/43394', 'en', 1253), +(1737, 'Bunny Brown and his Sister Sue Giving a Show', 'Hope, Laura Lee', '2006-02-28', 18, 'https://www.gutenberg.org/ebooks/17878', 'en', 31), +(1738, 'Birds, Illustrated by Color Photography, Vol. 1, No. 6\r\nJune, 1897', 'Various', '2009-12-13', 21, 'https://www.gutenberg.org/ebooks/30666', 'en', 1254), +(1739, 'Narratives of New Netherland, 1609-1664', NULL, '2002-04-01', 49, 'https://www.gutenberg.org/ebooks/3161', 'en', 1255), +(1740, 'Roughing It, Part 8.', 'Twain, Mark', '2004-07-03', 8, 'https://www.gutenberg.org/ebooks/8589', 'en', 1256), +(1741, 'Quicksilver Sue', 'Richards, Laura Elizabeth Howe', '2013-03-02', 19, 'https://www.gutenberg.org/ebooks/42246', 'en', 1257), +(1742, 'Punch, or the London Charivari, Volume 146, January 14, 1914', 'Various', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/12536', 'en', 134), +(1743, 'The Children\'s Book of Celebrated Pictures', 'Bryant, Lorinda Munson', '2008-09-26', 26, 'https://www.gutenberg.org/ebooks/26703', 'en', 1258), +(1744, 'The Border Watch: A Story of the Great Chief\'s Last Stand', 'Altsheler, Joseph A. (Joseph Alexander)', '2008-04-26', 39, 'https://www.gutenberg.org/ebooks/25186', 'en', 1259), +(1745, 'Lettres à une inconnue, Tome Deuxième\nPrécédée d\'une étude sur P. Mérimée par H. Taine', 'Mérimée, Prosper', '2018-01-31', 11, 'https://www.gutenberg.org/ebooks/56474', 'fr', 1260), +(1746, 'The Kenzie Report', 'Clifton, Mark', '2010-04-25', 52, 'https://www.gutenberg.org/ebooks/32131', 'en', 179), +(1747, 'Phaedrus', 'Plato', '1999-02-01', 373, 'https://www.gutenberg.org/ebooks/1636', 'en', 1261), +(1748, 'Commander Lawless V.C.\r\nBeing the Further Adventures of Frank H. Lawless, Until Recently a Lieutenant in His Majesty\'s Navy', 'Bennett, Rolf', '2012-08-15', 11, 'https://www.gutenberg.org/ebooks/40511', 'en', 579), +(1749, 'La Bella Cubano\r\nHabenera', NULL, '2003-11-01', 5, 'https://www.gutenberg.org/ebooks/10261', 'es', 872), +(1750, 'Dead Giveaway', 'Garrett, Randall', '2007-12-27', 65, 'https://www.gutenberg.org/ebooks/24054', 'en', 1262), +(1751, 'Nests and Eggs of Birds of the United States\r\nIllustrated', 'Gentry, Thomas G. (Thomas George)', '2014-03-07', 9, 'https://www.gutenberg.org/ebooks/45063', 'en', 1263), +(1752, 'Marie; a story of Russian love', 'Pushkin, Aleksandr Sergeevich', '2003-08-01', 54, 'https://www.gutenberg.org/ebooks/4344', 'en', 1264), +(1753, 'Marital Power Exemplified in Mrs. Packard\'s Trial, and Self-Defence from the Charge of Insanity', 'Packard, E. P. W. (Elizabeth Parsons Ware)', '2011-07-03', 31, 'https://www.gutenberg.org/ebooks/36591', 'en', 1265), +(1754, 'The Master Key\r\nAn Electrical Fairy Tale Founded Upon the Mysteries of Electricity', 'Baum, L. Frank (Lyman Frank)', '2007-05-22', 9, 'https://www.gutenberg.org/ebooks/21526', 'en', 1266), +(1755, 'What Philately Teaches\nA Lecture Delivered before the Section on Philately of the Brooklyn Institute of Arts and Sciences, February 24, 1899', 'Luff, John N. (John Nicholas)', '2005-04-26', 25, 'https://www.gutenberg.org/ebooks/15713', 'en', 1267), +(1756, 'The Vikings', 'Mawer, A. (Allen)', '2016-09-21', 81, 'https://www.gutenberg.org/ebooks/53106', 'en', 1268), +(1757, 'Tales and Novels of J. de La Fontaine — Volume 22', 'La Fontaine, Jean de', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/5296', 'en', 506), +(1758, 'The Fascinating Boston\nHow to Dance and How to Teach the Popular New Social Favorite', 'Sheafe, Alfonso Josephs', '2011-09-15', 10, 'https://www.gutenberg.org/ebooks/37443', 'en', 1269), +(1759, 'The Cost of Living Among Wage-Earners\r\nFall River, Massachusetts, October, 1919, Research Report Number 22, November, 1919', 'National Industrial Conference Board', '2008-03-18', 12, 'https://www.gutenberg.org/ebooks/24868', 'en', 1270), +(1760, 'Abigail Adams and Her Times', 'Richards, Laura Elizabeth Howe', '2012-12-11', 27, 'https://www.gutenberg.org/ebooks/41605', 'en', 1271), +(1761, 'The Works of Lord Byron. Vol. 2', 'Byron, George Gordon Byron, Baron', '2008-05-05', 117, 'https://www.gutenberg.org/ebooks/25340', 'en', 54), +(1762, 'L\'inutile beauté', 'Maupassant, Guy de', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11175', 'fr', 100), +(1763, 'From Boniface to Bank Burglar; Or, The Price of Persecution\r\nHow a Successful Business Man, Through the Miscarriage of Justice, Became a Notorious Bank Looter', 'White, George M. (George Miles)', '2018-08-24', 8, 'https://www.gutenberg.org/ebooks/57760', 'en', 1272), +(1764, 'La Montarino: la poemaro pri Veslemey', 'Garborg, Arne', '2008-01-15', 6, 'https://www.gutenberg.org/ebooks/24292', 'eo', 8), +(1765, 'The Memoirs of Count Carlo Gozzi; Volume the Second', 'Gozzi, Carlo', '2010-07-22', 31, 'https://www.gutenberg.org/ebooks/33225', 'en', 1273), +(1766, 'My Winter on the Nile\nEighteenth Edition', 'Warner, Charles Dudley', '2016-06-01', 12, 'https://www.gutenberg.org/ebooks/52212', 'en', 1274), +(1767, 'Master Tales of Mystery, Volume 3', NULL, '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/11949', 'en', 128), +(1768, 'Religion and the War', 'Yale University. Divinity School', '2011-07-17', 13, 'https://www.gutenberg.org/ebooks/36757', 'en', 335), +(1769, 'Diary of Samuel Pepys — Volume 59: November 1667', 'Pepys, Samuel', '2004-12-01', 17, 'https://www.gutenberg.org/ebooks/4182', 'en', 201), +(1770, 'The Brass Bottle: A Farcical Fantastic Play in Four Acts', 'Anstey, F.', '2011-10-10', 15, 'https://www.gutenberg.org/ebooks/37685', 'en', 1275), +(1771, 'State of the Union Addresses (1790-2006)', 'United States. Presidents', '2004-02-01', 67, 'https://www.gutenberg.org/ebooks/5050', 'en', 1276), +(1772, 'Natural History\r\nOr, Uncle Philip\'s Conversations with the Children about Tools and Trades among Inferior Animals', 'Hawks, Francis L. (Francis Lister)', '2013-12-06', 12, 'https://www.gutenberg.org/ebooks/44377', 'en', 37), +(1773, 'The Tale of Benjamin Bunny', 'Potter, Beatrix', '2004-12-21', 204, 'https://www.gutenberg.org/ebooks/14407', 'en', 1045), +(1774, 'Small Talk at Wreyland. Third Series', 'Torr, Cecil', '2019-01-19', 49, 'https://www.gutenberg.org/ebooks/58728', 'en', 1277), +(1775, 'Molly Brown\'s Orchard Home', 'Speed, Nell', '2007-02-19', 25, 'https://www.gutenberg.org/ebooks/20632', 'en', 48), +(1776, 'Harper\'s Young People, December 20, 1881\nAn Illustrated Weekly', 'Various', '2015-11-24', 3, 'https://www.gutenberg.org/ebooks/50545', 'en', 479), +(1777, 'An Alphabet of Old Friends', 'Crane, Walter', '2005-12-11', 68, 'https://www.gutenberg.org/ebooks/17282', 'en', 1278), +(1778, 'Rachel Ray', 'Trollope, Anthony', '2010-09-29', 192, 'https://www.gutenberg.org/ebooks/34000', 'en', 1279), +(1779, '\"My Novel\" — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 19, 'https://www.gutenberg.org/ebooks/7707', 'en', 1280), +(1780, 'Married Life: A Comedy, in Three Acts', 'Buckstone, John Baldwin', '2014-07-26', 14, 'https://www.gutenberg.org/ebooks/46420', 'en', 1281), +(1781, 'Curiosities of Literature, Vol. 2', 'Disraeli, Isaac', '2005-07-24', 52, 'https://www.gutenberg.org/ebooks/16350', 'en', 1282), +(1782, 'Tales from the Telling-House', 'Blackmore, R. D. (Richard Doddridge)', '2016-03-19', 13, 'https://www.gutenberg.org/ebooks/51497', 'en', 1283), +(1783, 'My Studio Neighbors', 'Gibson, W. Hamilton (William Hamilton)', '2007-07-28', 18, 'https://www.gutenberg.org/ebooks/22165', 'en', 1216), +(1784, 'The Career of Claudia', 'Peard, Frances Mary', '2013-07-08', 5, 'https://www.gutenberg.org/ebooks/43152', 'en', 45), +(1785, 'The Pioneers; Or, The Sources of the Susquehanna', 'Cooper, James Fenimore', '2000-08-01', 190, 'https://www.gutenberg.org/ebooks/2275', 'en', 98), +(1786, 'Barnavännen, 1905-02\nIllustrerad Veckotidning för de Små', 'Various', '2008-12-05', 7, 'https://www.gutenberg.org/ebooks/27417', 'sv', 1284), +(1787, 'Une histoire d\'Amour : George Sand et A. de Musset\r\nDocuments inédits, Lettres de Musset', 'Mariéton, Paul', '2004-10-06', 10, 'https://www.gutenberg.org/ebooks/13622', 'fr', 1285), +(1788, 'Arsène Lupin taistelussa Sherlock Holmesta vastaan', 'Leblanc, Maurice', '2017-07-03', 2, 'https://www.gutenberg.org/ebooks/55037', 'fi', 1286), +(1789, 'The Outdoor Girls in the Saddle; Or, The Girl Miner of Gold Run', 'Hope, Laura Lee', '2006-09-18', 34, 'https://www.gutenberg.org/ebooks/19318', 'en', 1287), +(1790, 'Rulers of India: Akbar', 'Malleson, G. B. (George Bruce)', '2010-03-09', 29, 'https://www.gutenberg.org/ebooks/31572', 'en', 1288), +(1791, 'Arabella Stuart: A Romance from English History', 'James, G. P. R. (George Payne Rainsford)', '2015-07-17', 18, 'https://www.gutenberg.org/ebooks/49468', 'en', 1289), +(1792, 'The Voice in Singing', 'Seiler, Emma', '2013-02-12', 14, 'https://www.gutenberg.org/ebooks/42080', 'en', 1290), +(1793, 'Political Recollections\n1840 to 1872', 'Julian, George Washington', '2007-10-11', 13, 'https://www.gutenberg.org/ebooks/22959', 'en', 1291), +(1794, 'History of the Decline and Fall of the Roman Empire — Volume 3 — Folio format', 'Gibbon, Edward', '1997-05-01', 48, 'https://www.gutenberg.org/ebooks/900', 'en', 1292), +(1795, 'From Kingdom to Colony', 'Devereux, Mary', '2010-11-07', 5, 'https://www.gutenberg.org/ebooks/34232', 'en', 1293), +(1796, 'Le Tour du Monde; Californie\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2007-11-01', 15, 'https://www.gutenberg.org/ebooks/23285', 'fr', 1294), +(1797, 'Beautiful Birds', 'Selous, Edmund', '2015-12-28', 16, 'https://www.gutenberg.org/ebooks/50777', 'en', 1295), +(1798, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 2: Assyria\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 37, 'https://www.gutenberg.org/ebooks/16162', 'en', 1296), +(1799, 'Danger! and Other Stories', 'Doyle, Arthur Conan', '2007-08-19', 83, 'https://www.gutenberg.org/ebooks/22357', 'en', 409), +(1800, 'Civilization: Tales of the Orient', 'La Motte, Ellen N. (Ellen Newbold)', '2006-11-24', 27, 'https://www.gutenberg.org/ebooks/19916', 'en', 1297), +(1801, 'A Book of Old Ballads — Complete', NULL, '2005-02-01', 49, 'https://www.gutenberg.org/ebooks/7535', 'en', 921), +(1802, 'Miehen kylkiluu: Kolminäytöksinen huvinäytelmä', 'Jotuni, Maria', '2014-08-18', 15, 'https://www.gutenberg.org/ebooks/46612', 'fi', 382), +(1803, 'Mithridate', 'Racine, Jean', '2008-12-25', 29, 'https://www.gutenberg.org/ebooks/27625', 'fr', 1298), +(1804, 'Some Private Views', 'Payn, James', '2004-09-09', 11, 'https://www.gutenberg.org/ebooks/13410', 'en', 20), +(1805, 'On a Chinese Screen', 'Maugham, W. Somerset (William Somerset)', '2015-04-25', 136, 'https://www.gutenberg.org/ebooks/48788', 'en', 1299), +(1806, 'Fotografia senza.... - Notte di neve - La chiacchierina', 'Bracco, Roberto', '2013-07-30', 11, 'https://www.gutenberg.org/ebooks/43360', 'it', 407), +(1807, 'The Lock and Key Library: the Most Interesting Stories of All Nations: French Novels', NULL, '2000-01-01', 50, 'https://www.gutenberg.org/ebooks/2047', 'en', 642), +(1808, 'Sir Tom', 'Oliphant, Mrs. (Margaret)', '2009-12-17', 23, 'https://www.gutenberg.org/ebooks/30692', 'en', 61), +(1809, 'Mark Twain\'s Letters — Volume 3 (1876-1885)', 'Twain, Mark', '2004-09-18', 51, 'https://www.gutenberg.org/ebooks/3195', 'en', 1300), +(1810, 'O Oraculo do Passado, do presente e do Futuro (4/7)\r\nParte Quarta: O oraculo das Flores', 'Serrano, Bento', '2010-03-23', 9, 'https://www.gutenberg.org/ebooks/31740', 'pt', 185), +(1811, 'Ranskalaista laulurunoutta\nAlfred Musset\'n, Paul Verlaine\'n ja Charles Baudelaire\'n runoja', 'Musset, Alfred de', '2017-07-26', 11, 'https://www.gutenberg.org/ebooks/55205', 'fi', 1301), +(1812, 'Moral Principles in Education', 'Dewey, John', '2008-04-25', 144, 'https://www.gutenberg.org/ebooks/25172', 'en', 1302), +(1813, 'Hymns in Human Experience', 'Hart, William J. (William John)', '2018-01-31', 5, 'https://www.gutenberg.org/ebooks/56480', 'en', 1303), +(1814, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 370, May 16, 1829', 'Various', '2004-02-01', 2, 'https://www.gutenberg.org/ebooks/11347', 'en', 133), +(1815, 'Warriors of Old Japan, and Other Stories', 'Ozaki, Yei Theodora', '2012-11-21', 59, 'https://www.gutenberg.org/ebooks/41437', 'en', 1304), +(1816, 'Amerikanische Wald- und Strombilder. Erster Band.', 'Gerstäcker, Friedrich', '2010-06-28', 17, 'https://www.gutenberg.org/ebooks/33017', 'de', 138), +(1817, 'The Band of Gideon', 'Jubilee Singers', '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10295', 'en', 1305), +(1818, 'Dyre Rein: Kertomus isoisän isän talosta', 'Lie, Jonas', '2018-07-20', 8, 'https://www.gutenberg.org/ebooks/57552', 'fi', 7), +(1819, 'The Secret Memoirs of Bertha Krupp\r\nFrom the Papers and Diaries of Chief Gouvernante Baroness D\'Alteville', 'Fischer, Henry W. (Henry William)', '2014-02-22', 18, 'https://www.gutenberg.org/ebooks/44979', 'en', 1306), +(1820, 'Letters from Switzerland', 'Prime, Samuel Irenæus', '2014-03-09', 17, 'https://www.gutenberg.org/ebooks/45097', 'en', 1307), +(1821, 'The Welsh Pony, Described in two letters to a friend', 'Dargan, Olive Tilford', '2011-06-30', 78, 'https://www.gutenberg.org/ebooks/36565', 'en', 1308), +(1822, 'Roland Whately: A Novel', 'Waugh, Alec', '2016-05-07', 13, 'https://www.gutenberg.org/ebooks/52020', 'en', 1309), +(1823, 'Ruth Fielding in Moving Pictures; Or, Helping the Dormitory Fund', 'Emerson, Alice B.', '2005-01-08', 22, 'https://www.gutenberg.org/ebooks/14635', 'en', 1310), +(1824, 'On the Heels of De Wet', 'James, Lionel', '2007-01-19', 13, 'https://www.gutenberg.org/ebooks/20400', 'en', 1311), +(1825, 'Curly and Floppy Twistytail (The Funny Piggie Boys)', 'Garis, Howard Roger', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/5262', 'en', 625), +(1826, 'Economic Sophisms', 'Bastiat, Frédéric', '2013-11-10', 38, 'https://www.gutenberg.org/ebooks/44145', 'en', 1312), +(1827, 'Der Spiegel des Cyprianus', 'Storm, Theodor', '2005-09-01', 25, 'https://www.gutenberg.org/ebooks/8925', 'de', 906), +(1828, 'Epistle to a Friend Concerning Poetry (1700) and the Essay on Heroic Poetry (second edition, 1697)', 'Wesley, Samuel', '2005-08-10', 11, 'https://www.gutenberg.org/ebooks/16506', 'en', 8), +(1829, 'Socialism: A Summary and Interpretation of Socialist Principles', 'Spargo, John', '2007-09-23', 28, 'https://www.gutenberg.org/ebooks/22733', 'en', 254), +(1830, 'Gwen Wynn: A Romance of the Wye', 'Reid, Mayne', '2011-04-07', 111, 'https://www.gutenberg.org/ebooks/35784', 'en', 1313), +(1831, 'Clelia: Il governo dei preti - Romanzo storico politico', 'Garibaldi, Giuseppe', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/7151', 'it', 1314), +(1832, 'The Treasure of Pearls: A Romance of Adventures in California', 'Aimard, Gustave', '2014-07-14', 14, 'https://www.gutenberg.org/ebooks/46276', 'en', 211), +(1833, 'Les diaboliques', 'Barbey d\'Aurevilly, J. (Jules)', '2004-10-25', 71, 'https://www.gutenberg.org/ebooks/13848', 'fr', 100), +(1834, 'Evolution', 'Jevons, F. B. (Frank Byron)', '2010-12-15', 12, 'https://www.gutenberg.org/ebooks/34656', 'en', 1315), +(1835, 'The Boy Allies with Haig in Flanders; Or, the Fighting Canadians of Vimy Ridge', 'Hayes, Clair W. (Clair Wallace)', '2004-07-01', 20, 'https://www.gutenberg.org/ebooks/6083', 'en', 146), +(1836, 'Famous Women: George Sand', 'Thomas, Bertha', '2009-02-27', 7, 'https://www.gutenberg.org/ebooks/28209', 'en', 1285), +(1837, 'Some Recollections of Our Antislavery Conflict', 'May, Samuel J. (Samuel Joseph)', '2015-10-26', 9, 'https://www.gutenberg.org/ebooks/50313', 'en', 1174), +(1838, 'Sklepy cynamonowe', 'Schulz, Bruno', '2005-05-01', 102, 'https://www.gutenberg.org/ebooks/8119', 'pl', 1316), +(1839, 'The Angel of the Revolution: A Tale of the Coming Terror', 'Griffith, George Chetwynd', '2010-02-18', 94, 'https://www.gutenberg.org/ebooks/31324', 'en', 26), +(1840, 'Petsamon rata: Isänmaallinen unelma', 'Kara, Jalmari', '2017-10-01', 9, 'https://www.gutenberg.org/ebooks/55661', 'fi', 175), +(1841, 'The Medicinal Plants of the Philippines', 'Pardo de Tavera, T. H. (Trinidad Hermenegildo)', '2008-08-22', 65, 'https://www.gutenberg.org/ebooks/26393', 'en', 1317), +(1842, 'Reis-impressies', 'Couperus, Louis', '2008-11-12', 11, 'https://www.gutenberg.org/ebooks/27241', 'nl', 1318), +(1843, 'The Thirty-Nine Steps', 'Buchan, John', '1996-06-01', 1100, 'https://www.gutenberg.org/ebooks/558', 'en', 1319), +(1844, 'Punch, or the London Charivari, Volume 100, February 7, 1891', 'Various', '2004-08-01', 12, 'https://www.gutenberg.org/ebooks/13074', 'en', 134), +(1845, 'Janmaat in de Oost; of, Vestiging van het Nederlandsch gezag op Celebes', 'Louwerse, Pieter', '2013-09-12', 3, 'https://www.gutenberg.org/ebooks/43704', 'nl', 1320), +(1846, 'Anecdotes of the late Samuel Johnson, LL.D.\r\nDuring the Last Twenty Years of His Life', 'Piozzi, Hester Lynch', '2000-12-01', 31, 'https://www.gutenberg.org/ebooks/2423', 'en', 208), +(1847, 'Memoranda on Tours and Touraine\r\nIncluding remarks on the climate with a sketch of the Botany And Geology of the Province also on the Wines and Mineral Waters of France', 'Holdsworth, J. H.', '2010-08-20', 15, 'https://www.gutenberg.org/ebooks/33473', 'en', 1321), +(1848, 'In the Dozy Hours, and Other Papers', 'Repplier, Agnes', '2019-02-23', 7, 'https://www.gutenberg.org/ebooks/58942', 'en', 620), +(1849, 'Ang Bagong Robinson (Tomo 1)', 'Campe, Joachim Heinrich', '2007-03-20', 9, 'https://www.gutenberg.org/ebooks/20858', 'tl', 194), +(1850, 'To Leeward', 'Crawford, F. Marion (Francis Marion)', '2012-07-09', 4, 'https://www.gutenberg.org/ebooks/40181', 'en', 1322), +(1851, 'Science from an Easy Chair', 'Lankester, E. Ray (Edwin Ray), Sir', '2018-05-11', 34, 'https://www.gutenberg.org/ebooks/57136', 'en', 814), +(1852, 'The Crown of Success', 'A. L. O. E.', '2008-05-18', 42, 'https://www.gutenberg.org/ebooks/25516', 'en', 195), +(1853, 'Among the Trees at Elmridge', 'Church, Ella Rodman', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11723', 'en', 1323), +(1854, 'Antinous', 'Kilpi, Volter', '2012-10-14', 23, 'https://www.gutenberg.org/ebooks/41053', 'fi', 1324), +(1855, 'Ciphers For the Little Folks\nA Method of Teaching the Greatest Work of Sir Francis Bacon', 'Crain, Dorothy', '2012-03-15', 16, 'https://www.gutenberg.org/ebooks/39149', 'en', 1325), +(1856, 'Our Union and Its Defenders\r\nAn Oration, Delivered Before the Citizens of Burlington, N.J., on the Occasion of Their Celebration of the Eighty-Sixth Anniversary of Independence Day, July 4th, 1862', 'Pugh, J. Howard (John Howard)', '2019-07-10', 58, 'https://www.gutenberg.org/ebooks/59890', 'en', 1326), +(1857, 'Historie van Doctor Jan Faustus, grooten tooveraer en zwarten konstenaer', 'Anonymous', '2016-11-25', 14, 'https://www.gutenberg.org/ebooks/53596', 'nl', 1327), +(1858, 'L\'Ame de Pierre', 'Ohnet, Georges', '2004-12-03', 13, 'https://www.gutenberg.org/ebooks/14251', 'fr', 114), +(1859, 'Captains of Industry; or, Men of Business Who Did Something Besides Making Money', 'Parton, James', '2006-12-09', 47, 'https://www.gutenberg.org/ebooks/20064', 'en', 1328), +(1860, 'Guns of the Gods: A Story of Yasmini\'s Youth', 'Mundy, Talbot', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/5606', 'en', 1228), +(1861, 'Jack Sheppard: A Romance, Vol. 1 (of 3)', 'Ainsworth, William Harrison', '2013-12-26', 21, 'https://www.gutenberg.org/ebooks/44521', 'en', 1329), +(1862, 'On Guard: Mark Mallory\'s Celebration', 'Sinclair, Upton', '2011-05-13', 12, 'https://www.gutenberg.org/ebooks/36101', 'en', 1330), +(1863, 'The Photoplay: A Psychological Study', 'Münsterberg, Hugo', '2005-03-16', 94, 'https://www.gutenberg.org/ebooks/15383', 'en', 1331), +(1864, 'Stories of the Gorilla Country, Narrated for Young People', 'Du Chaillu, Paul B. (Paul Belloni)', '2016-06-30', 14, 'https://www.gutenberg.org/ebooks/52444', 'en', 1332), +(1865, 'Audubon and His Journals, Volume 1 (of 2)', 'Audubon, John James', '2012-06-12', 44, 'https://www.gutenberg.org/ebooks/39975', 'en', 1333), +(1866, 'The Philippine Islands, 1493-1898, Volume 51, 1801-1840\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2018-06-10', 28, 'https://www.gutenberg.org/ebooks/57304', 'en', 1334), +(1867, 'Tamburlaine the Great — Part 1', 'Marlowe, Christopher', '1997-11-01', 280, 'https://www.gutenberg.org/ebooks/1094', 'en', 1088), +(1868, 'Marathon', 'Betz, Gerardus Henri', '2010-09-05', 17, 'https://www.gutenberg.org/ebooks/33641', 'nl', 98), +(1869, 'Dan Carter and the Money Box', 'Wirt, Mildred A. (Mildred Augustine)', '2012-11-02', 20, 'https://www.gutenberg.org/ebooks/41261', 'en', 557), +(1870, 'Historia de um beijo', 'Pérez Escrich, Enrique', '2010-06-13', 12, 'https://www.gutenberg.org/ebooks/32793', 'pt', 61), +(1871, 'The Other Side of the Door', 'Chamberlain, Lucia', '2008-06-08', 15, 'https://www.gutenberg.org/ebooks/25724', 'en', 1335), +(1872, 'Robinsono Kruso', 'Defoe, Daniel', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11511', 'eo', 1336), +(1873, 'The Physiology of Taste; Or, Transcendental Gastronomy', 'Brillat-Savarin', '2004-04-01', 97, 'https://www.gutenberg.org/ebooks/5434', 'en', 1337), +(1874, 'Le roman de la rose - Tome IV', 'Jean, de Meun', '2014-01-19', 19, 'https://www.gutenberg.org/ebooks/44713', 'fr', 1338), +(1875, 'Reis naar de Nieuwe Hebriden en de Salomons-eilanden\r\nDe Aarde en haar Volken, 1906', 'Hagen, Alfred', '2004-11-16', 9, 'https://www.gutenberg.org/ebooks/14063', 'nl', 1339), +(1876, 'Memoir of the Life of John Quincy Adams.', 'Quincy, Josiah', '2007-01-02', 19, 'https://www.gutenberg.org/ebooks/20256', 'en', 1340), +(1877, 'Afar in the Forest', 'Kingston, William Henry Giles', '2007-05-08', 22, 'https://www.gutenberg.org/ebooks/21384', 'en', 195), +(1878, 'Valtameren salaisuus', 'Poe, Edgar Allan', '2016-07-30', 12, 'https://www.gutenberg.org/ebooks/52676', 'fi', 324), +(1879, 'Little Erik of Sweden', 'Brandeis, Madeline', '2011-06-05', 8, 'https://www.gutenberg.org/ebooks/36333', 'en', 153), +(1880, 'Master Olof: A Drama in Five Acts', 'Strindberg, August', '2005-01-01', 19, 'https://www.gutenberg.org/ebooks/7363', 'en', 599), +(1881, 'A Little Change: A Farce in One Scene', 'Grundy, Sydney', '2014-06-20', 8, 'https://www.gutenberg.org/ebooks/46044', 'en', 907), +(1882, 'Retrospection and Introspection', 'Eddy, Mary Baker', '2005-09-23', 16, 'https://www.gutenberg.org/ebooks/16734', 'en', 1206), +(1883, 'Fino a Dogali', 'Oriani, Alfredo', '2007-09-04', 19, 'https://www.gutenberg.org/ebooks/22501', 'it', 20), +(1884, 'Treasures in Heaven\r\nFifteenth Book of the Faith Promoting Series, Designed for the Instruction and Encouragement of Young Latter-day Saints', NULL, '2015-08-31', 18, 'https://www.gutenberg.org/ebooks/49830', 'en', 1341), +(1885, 'Fifteen New Ways for Oysters', 'Rorer, S. T.', '2015-10-03', 11, 'https://www.gutenberg.org/ebooks/50121', 'en', 1342), +(1886, 'Essai sur Talleyrand', 'Dalling and Bulwer, Henry Lytton Bulwer, Baron', '2014-10-25', 20, 'https://www.gutenberg.org/ebooks/47196', 'fr', 1343), +(1887, 'Sinn Fein: An Illumination', 'O\'Hegarty, P. S. (Patrick Sarsfield)', '2010-11-28', 12, 'https://www.gutenberg.org/ebooks/34464', 'en', 1344), +(1888, 'A vénülés elhárítása és az élet meghosszabbítása\r\nCélszerű életmóddal és gyógyeszközökkel', 'Lorand, Arnold', '2017-08-29', 3, 'https://www.gutenberg.org/ebooks/55453', 'hu', 295), +(1889, 'Punch, or the London Charivari, Volume 99, September 13, 1890', 'Various', '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12394', 'en', 134), +(1890, 'Ueber die Arsenikvergiftung ihre Hülfe und gerichtliche Ausmittelung', 'Hahnemann, Samuel', '2014-09-16', 10, 'https://www.gutenberg.org/ebooks/46878', 'de', 1345), +(1891, 'Where I Wasn\'t Going', 'Richmond, Leigh', '2010-01-29', 48, 'https://www.gutenberg.org/ebooks/31116', 'en', 26), +(1892, 'None so Deaf As Those Who Won\'t Hear: A Comedietta in One Act', 'Curtis, Herbert Pelham', '2013-08-22', 4, 'https://www.gutenberg.org/ebooks/43536', 'en', 868), +(1893, 'The Story of My Life', 'Keller, Helen', '2009-05-01', 9, 'https://www.gutenberg.org/ebooks/28807', 'en', 1346), +(1894, 'Confiscation; An Outline', 'Greenwood, William', '2001-05-01', 6, 'https://www.gutenberg.org/ebooks/2611', 'en', 1347), +(1895, 'Η Κερένια κούκλα: Αθηναϊκό μυθιστόρημα', 'Chrestomanos, Konstantinos', '2008-10-28', 17, 'https://www.gutenberg.org/ebooks/27073', 'el', 1348), +(1896, 'The Conqueror: Being the True and Romantic Story of Alexander Hamilton', 'Atherton, Gertrude Franklin Horn', '2004-08-22', 29, 'https://www.gutenberg.org/ebooks/13246', 'en', 1349), +(1897, 'The Kansas University Science Bulletin (Vol. I, No. 1)', 'Various', '2017-04-20', 0, 'https://www.gutenberg.org/ebooks/54581', 'en', 210), +(1898, 'Coniston — Volume 02', 'Churchill, Winston', '2004-10-17', 13, 'https://www.gutenberg.org/ebooks/3763', 'en', 1350), +(1899, 'One Martian Afternoon', 'Leahy, Tom', '2009-09-13', 35, 'https://www.gutenberg.org/ebooks/29975', 'en', 613), +(1900, 'The Face of the Fields', 'Sharp, Dallas Lore', '2013-03-31', 17, 'https://www.gutenberg.org/ebooks/42444', 'en', 1216), +(1901, 'A Bicycle of Cathay', 'Stockton, Frank Richard', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/12334', 'en', 1351), +(1902, 'Comment on construit une maison', 'Viollet-le-Duc, Eugène-Emmanuel', '2008-07-21', 21, 'https://www.gutenberg.org/ebooks/26101', 'fr', 1352), +(1903, 'La Incógnita', 'Pérez Galdós, Benito', '2017-04-10', 31, 'https://www.gutenberg.org/ebooks/54521', 'es', 1353), +(1904, 'The Adventures of Sammy Jay', 'Burgess, Thornton W. (Thornton Waldo)', '2013-08-29', 26, 'https://www.gutenberg.org/ebooks/43596', 'en', 625), +(1905, 'Charlotte\'s Inheritance', 'Braddon, M. E. (Mary Elizabeth)', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9259', 'en', 61), +(1906, 'Peeps at Many Lands: Burma', 'Kelly, R. Talbot (Robert Talbot)', '2009-09-22', 44, 'https://www.gutenberg.org/ebooks/30064', 'en', 1354), +(1907, 'Elämästä\nPienempiä kertomuksia', 'Leino, Kasimir', '2005-10-03', 32, 'https://www.gutenberg.org/ebooks/16794', 'fi', 179), +(1908, 'Judas Ram', 'Merwin, Sam', '2016-01-27', 20, 'https://www.gutenberg.org/ebooks/51053', 'en', 26), +(1909, 'The Mentor: American Landscape Painters, Vol. 1, Num. 26, Serial No. 26', 'Isham, Samuel', '2015-09-06', 3, 'https://www.gutenberg.org/ebooks/49890', 'en', 1355), +(1910, 'Cogito, Ergo Sum', 'West, John Foster', '2009-06-17', 23, 'https://www.gutenberg.org/ebooks/29149', 'en', 26), +(1911, 'The Man Without a Memory', 'Marchmont, Arthur W.', '2011-03-08', 11, 'https://www.gutenberg.org/ebooks/35516', 'en', 1319), +(1912, 'Schopenhauer', 'Beer, Margrieta', '2014-10-18', 23, 'https://www.gutenberg.org/ebooks/47136', 'en', 1356), +(1913, 'The Translation of a Savage, Volume 1', 'Parker, Gilbert', '2004-08-01', 4, 'https://www.gutenberg.org/ebooks/6211', 'en', 1357), +(1914, 'The Youngest Sister: A Tale of Manitoba', 'Marchant, Bessie', '2015-05-12', 5, 'https://www.gutenberg.org/ebooks/48942', 'en', 1358), +(1915, 'Lectures on Land Warfare; A tactical Manual for the Use of Infantry Officers\nAn Examination of the Principles Which Underlie the Art of Warfare, with Illustrations of the Principles by Examples Taken from Military History, from the Battle of Thermopylae, B.C. 480, to the Battle of the Sambre, November 1-11, 1918', 'Anonymous', '2007-11-14', 20, 'https://www.gutenberg.org/ebooks/23473', 'en', 1359), +(1916, 'Adventures of a Soldier, Written by Himself\r\nBeing the Memoirs of Edward Costello, K.S.F. Formerly a Non-Commissioned Officer in the Rifle Brigade, Late Captain in the British Legion, and Now One of the Wardens of the Tower of London; Comprising Narratives of the Campaigns in the Peninsula under the Duke of Wellington, and the Subsequent Civil Wars in Spain.', 'Costello, Edward', '2015-10-11', 39, 'https://www.gutenberg.org/ebooks/50181', 'en', 1360), +(1917, 'Sixtine: roman de la vie cérébrale', 'Gourmont, Remy de', '2006-01-31', 22, 'https://www.gutenberg.org/ebooks/17646', 'fr', 61), +(1918, 'Os Litteratos em Lisboa: Poemeto', 'Freitas, A. Ferreira de', '2010-01-04', 11, 'https://www.gutenberg.org/ebooks/30858', 'pt', 8), +(1919, 'The Log of the \"Jolly Polly\"', 'Davis, Richard Harding', '1999-07-01', 4, 'https://www.gutenberg.org/ebooks/1808', 'en', 109), +(1920, 'The Motor Boys Bound for Home; or, Ned, Bob and Jerry on the Wrecked Troopship', 'Young, Clarence', '2016-12-10', 11, 'https://www.gutenberg.org/ebooks/53704', 'en', 1361), +(1921, 'Trotzkopf\'s Brautzeit', 'Wildhagen, Else', '2011-08-28', 42, 'https://www.gutenberg.org/ebooks/37241', 'de', 1362), +(1922, 'Homo Sum — Volume 01', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5494', 'en', 803), +(1923, 'L\'Âme aux deux patries: Sieben Studien', 'Kolb, Annette', '2014-05-16', 13, 'https://www.gutenberg.org/ebooks/45661', 'de', 1363), +(1924, 'The Best Policy', 'Flower, Elliott', '2011-06-12', 17, 'https://www.gutenberg.org/ebooks/36393', 'en', 1364), +(1925, 'Memoirs of the Union\'s Three Great Civil War Generals', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/4546', 'en', 1365), +(1926, 'Recollections of Old Liverpool', 'Stonehouse, James', '2007-05-05', 38, 'https://www.gutenberg.org/ebooks/21324', 'en', 1366), +(1927, 'Randy and Her Friends', 'Brooks, Amy', '2005-02-19', 14, 'https://www.gutenberg.org/ebooks/15111', 'en', 62), +(1928, 'Poems', 'Owen, Wilfred', '1997-09-01', 186, 'https://www.gutenberg.org/ebooks/1034', 'en', 1367), +(1929, 'The History of Antiquity, Vol. 5 (of 6)', 'Duncker, Max', '2011-12-04', 38, 'https://www.gutenberg.org/ebooks/38209', 'en', 1368), +(1930, 'Die Brücke', 'Holland, Alfred', '2012-07-24', 12, 'https://www.gutenberg.org/ebooks/40313', 'de', 60), +(1931, 'The Little House in the Fairy Wood', 'Eliot, Ethel Cook', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/10463', 'en', 751), +(1932, 'Ontario Teachers\' Manuals: Household Management', 'Ontario. Department of Education', '2008-02-20', 41, 'https://www.gutenberg.org/ebooks/24656', 'en', 1369), +(1933, 'Celebrated Travels and Travellers, Part 2.\r\nThe Great Navigators of the Eighteenth Century', 'Verne, Jules', '2008-06-14', 37, 'https://www.gutenberg.org/ebooks/25784', 'en', 885), +(1934, 'The Comical Pilgrim; or, Travels of a Cynick Philosopher...\r\nThro\' the most Wicked Parts of the World, Namely, England, Wales, Scotland, Ireland, and Holland', 'Anonymous', '2017-12-31', 14, 'https://www.gutenberg.org/ebooks/56276', 'en', 1370), +(1935, 'The Journal of Lieut. John L. Hardenbergh of the Second New York Continental Regiment from May 1 to October 3, 1779, in General Sullivan\'s Campaign Against the Western Indians\nWith an Introduction, Copious Historical Notes, and Maps of the Battle-field of Newtown and Groveland Ambuscade', 'Hardenbergh, John Leonard', '2010-06-07', 15, 'https://www.gutenberg.org/ebooks/32733', 'en', 1371), +(1936, 'Frye\'s Practical Candy Maker\r\nComprising Practical Receipts for the Manufacture of Fine \"Hand-Made\" Candies', 'Frye, George V.', '2011-08-14', 24, 'https://www.gutenberg.org/ebooks/37073', 'en', 1372), +(1937, 'The Stoneground Ghost Tales\r\nCompiled from the recollections of the reverend Roland Batchel, the vicar of the parish.', 'Swain, E. G. (Edmund Gill)', '2014-01-04', 61, 'https://www.gutenberg.org/ebooks/44581', 'en', 1373), +(1938, 'The Works of Robert G. Ingersoll, Vol. 07 (of 12)\r\nDresden Edition—Discussions', 'Ingersoll, Robert Green', '2012-02-09', 71, 'https://www.gutenberg.org/ebooks/38807', 'en', 1191), +(1939, 'A travers l\'Exposition\r\nPromenades de deux enfants au Champ-de-Mars et à l\'esplanade des Invalides', 'Lamarque, É. (Élodie)', '2016-11-16', 18, 'https://www.gutenberg.org/ebooks/53536', 'fr', 1374), +(1940, 'The Easiest Way: A Story of Metropolitan Life', 'Walter, Eugene', '2007-04-16', 15, 'https://www.gutenberg.org/ebooks/21116', 'en', 1375), +(1941, 'The Green Eyes of Bâst', 'Rohmer, Sax', '2005-03-11', 52, 'https://www.gutenberg.org/ebooks/15323', 'en', 128), +(1942, 'Rolf salolla: Erään partiopojan, Kuonab intiaanin ja Skookum koiran seikkailut', 'Seton, Ernest Thompson', '2014-04-22', 10, 'https://www.gutenberg.org/ebooks/45453', 'fi', 1376), +(1943, 'First love, and other stories', 'Turgenev, Ivan Sergeevich', '2018-03-30', 164, 'https://www.gutenberg.org/ebooks/56878', 'en', 1377), +(1944, 'The Merry Devill of Edmonton', 'Shakespeare (spurious and doubtful works)', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/4774', 'en', 1378), +(1945, 'Shenandoah', 'McGuinn, Roger', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/10651', 'en', 1379), +(1946, 'A Son of Mars, volume 2', 'Griffiths, Arthur', '2018-05-22', 6, 'https://www.gutenberg.org/ebooks/57196', 'en', 1380), +(1947, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 02 (de 12)', 'Castelo Branco, Camilo', '2008-01-31', 28, 'https://www.gutenberg.org/ebooks/24464', 'pt', 410), +(1948, 'The Flying U Ranch', 'Bower, B. M.', '1998-02-01', 52, 'https://www.gutenberg.org/ebooks/1206', 'en', 774), +(1949, 'The Meeting-Place of Geology and History', 'Dawson, John William, Sir', '2012-07-02', 12, 'https://www.gutenberg.org/ebooks/40121', 'en', 1381), +(1950, 'History of the Conquest of Mexico; vol. 3/4', 'Prescott, William Hickling', '2019-06-28', 55, 'https://www.gutenberg.org/ebooks/59830', 'en', 1382), +(1951, 'The Golden Age', 'Grahame, Kenneth', '2010-05-23', 59, 'https://www.gutenberg.org/ebooks/32501', 'en', 1383), +(1952, 'Dulce Dueño', 'Pardo Bazán, Emilia, condesa de', '2017-11-24', 23, 'https://www.gutenberg.org/ebooks/56044', 'es', 1384), +(1953, 'Human Genome Project, Build 34, Chromosome Number 09', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11783', 'en', 1385), +(1954, 'Old Gorgon Graham\nMore Letters from a Self-Made Merchant to His Son', 'Lorimer, George Horace', '2004-04-01', 25, 'https://www.gutenberg.org/ebooks/12106', 'en', 258), +(1955, 'Maurine and Other Poems', 'Wilcox, Ella Wheeler', '2008-08-16', 18, 'https://www.gutenberg.org/ebooks/26333', 'en', 994), +(1956, 'Memoirs of Napoleon Bonaparte — Volume 01', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 15, 'https://www.gutenberg.org/ebooks/3551', 'en', 1386), +(1957, 'In the Early Days along the Overland Trail in Nebraska Territory, in 1852', 'Cole, Gilbert L.', '2010-02-25', 6, 'https://www.gutenberg.org/ebooks/31384', 'en', 1181), +(1958, 'Natural History of the Racer Coluber constrictor', 'Fitch, Henry S. (Henry Sheldon)', '2013-05-10', 12, 'https://www.gutenberg.org/ebooks/42676', 'en', 1387), +(1959, 'Janice Day, the Young Homemaker', 'Long, Helen Beecher', '2001-01-01', 24, 'https://www.gutenberg.org/ebooks/2483', 'en', 1388), +(1960, 'The Heart of the New Thought', 'Wilcox, Ella Wheeler', '2009-10-14', 18, 'https://www.gutenberg.org/ebooks/30256', 'en', 43), +(1961, 'A Treatise on the Diseases Produced By Onanism, Masturbation, Self-Pollution, and Other Excesses.', 'Deslandes, L. (Léopold)', '2017-05-13', 70, 'https://www.gutenberg.org/ebooks/54713', 'en', 1389), +(1962, '13 Days: The Chronicle of an Escape from a German Prison', 'Caunter, John Alan Lyde', '2011-03-30', 103, 'https://www.gutenberg.org/ebooks/35724', 'en', 1390), +(1963, 'In Search of the Castaways', 'Verne, Jules', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8985', 'en', 1391), +(1964, 'Stirling Castle, its place in Scottish history', 'Stair-Kerr, Eric', '2016-02-20', 9, 'https://www.gutenberg.org/ebooks/51261', 'en', 1392), +(1965, 'The Standard Oratorios: Their Stories, Their Music, And Their Composers', 'Upton, George P. (George Putnam)', '2007-09-28', 34, 'https://www.gutenberg.org/ebooks/22793', 'en', 1393), +(1966, 'The Forsaken Inn: A Novel', 'Green, Anna Katharine', '2007-11-27', 51, 'https://www.gutenberg.org/ebooks/23641', 'en', 770), +(1967, 'The Long Labrador Trail', 'Wallace, Dillon', '2006-02-01', 31, 'https://www.gutenberg.org/ebooks/9857', 'en', 1394); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(1968, 'How to Listen to Music, 7th ed.\nHints and Suggestions to Untaught Lovers of the Art', 'Krehbiel, Henry Edward', '2006-01-07', 83, 'https://www.gutenberg.org/ebooks/17474', 'en', 1395), +(1969, 'Historical Parallels, vol. 3 (of 3)', 'Malkin, Arthur Thomas', '2014-11-06', 12, 'https://www.gutenberg.org/ebooks/47304', 'en', 1396), +(1970, 'Catharine Furze', 'White, William Hale', '2004-07-01', 17, 'https://www.gutenberg.org/ebooks/6023', 'en', 1397), +(1971, 'Percival Keene', 'Marryat, Frederick', '2007-05-22', 27, 'https://www.gutenberg.org/ebooks/21572', 'en', 1398), +(1972, 'Reading Made Easy for Foreigners - Third Reader', 'Hülshof, John Ludwig', '2005-05-02', 31, 'https://www.gutenberg.org/ebooks/15747', 'en', 1019), +(1973, 'Leerie', 'Sawyer, Ruth', '2010-06-24', 14, 'https://www.gutenberg.org/ebooks/32959', 'en', 48), +(1974, 'Mikael Speranski', 'Schybergson, Magnus Gottfrid', '2016-05-16', 8, 'https://www.gutenberg.org/ebooks/52080', 'fi', 1399), +(1975, 'The Scottish Highlands, Highland Clans and Highland Regiments, Volume 1 (of 2)', NULL, '2019-05-17', 66, 'https://www.gutenberg.org/ebooks/59468', 'en', 1400), +(1976, 'Hebrew Humor and Other Essays', 'Chotzner, J. (Joseph)', '2014-02-28', 27, 'https://www.gutenberg.org/ebooks/45037', 'en', 1401), +(1977, 'Will Warburton', 'Gissing, George', '2003-08-01', 17, 'https://www.gutenberg.org/ebooks/4310', 'en', 45), +(1978, 'L\'Illustration, No. 0018, 1 Juillet 1843', 'Various', '2011-09-13', 3, 'https://www.gutenberg.org/ebooks/37417', 'fr', 150), +(1979, 'Motor Tours in Wales & the Border Counties', 'Stawell, Rodolph, Mrs.', '2016-09-27', 10, 'https://www.gutenberg.org/ebooks/53152', 'en', 1402), +(1980, 'Punch, or the London Charivari, Volume 102, May 21, 1892', 'Various', '2005-01-14', 8, 'https://www.gutenberg.org/ebooks/14695', 'en', 134), +(1981, 'Reynolds', 'Bensusan, S. L. (Samuel Levy)', '2012-11-27', 14, 'https://www.gutenberg.org/ebooks/41497', 'en', 1403), +(1982, 'Venerable Philippine Duchesne\r\nA Brief Sketch of the Life and Work of the Foundress of the Society of the Sacred Heart in America', 'G. E. M.', '2010-04-28', 16, 'https://www.gutenberg.org/ebooks/32165', 'en', 1404), +(1983, 'Halloween, a Romaunt; with Lays Meditative and Devotional', 'Coxe, A. Cleveland (Arthur Cleveland)', '2018-01-23', 17, 'https://www.gutenberg.org/ebooks/56420', 'en', 1405), +(1984, 'Discussion on Edison\'s Monoid Theory', 'Edison, Theodore M.', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10235', 'en', 1406), +(1985, 'Miss Mackenzie', 'Trollope, Anthony', '2007-12-28', 67, 'https://www.gutenberg.org/ebooks/24000', 'en', 1380), +(1986, 'The 1997 CIA World Factbook', 'United States. Central Intelligence Agency', '1999-03-01', 32, 'https://www.gutenberg.org/ebooks/1662', 'en', 1407), +(1987, 'The Splendid Fairing', 'Holme, Constance', '2012-08-20', 58, 'https://www.gutenberg.org/ebooks/40545', 'en', 61), +(1988, 'By-gone Tourist Days: Letters of Travel', 'Collins, Laura G. Case', '2015-04-17', 22, 'https://www.gutenberg.org/ebooks/48728', 'en', 1408), +(1989, 'Homeland Security Act of 2002\nUpdated Through October 14, 2008', 'United States. Congress. House. Committee on Homeland Security', '2009-12-08', 14, 'https://www.gutenberg.org/ebooks/30632', 'en', 1409), +(1990, 'Az Atlasz-család', 'Csiky, Gergely', '2009-01-02', 6, 'https://www.gutenberg.org/ebooks/27685', 'hu', 61), +(1991, 'Hymns and Poems', 'A. L. O. E.', '2019-08-21', 0, 'https://www.gutenberg.org/ebooks/60142', 'en', NULL), +(1992, 'The Catholic World, Vol. 21, April, 1875, to September, 1875\nA Monthly Magazine of General Literature and Science', 'Various', '2017-03-17', 1, 'https://www.gutenberg.org/ebooks/54377', 'en', 96), +(1993, 'Elsie\'s Vacation and After Events', 'Finley, Martha', '2006-03-27', 40, 'https://www.gutenberg.org/ebooks/18058', 'en', 1410), +(1994, 'Derniers Contes', 'Poe, Edgar Allan', '2004-06-01', 28, 'https://www.gutenberg.org/ebooks/12562', 'fr', 1411), +(1995, 'La mort de Lucrèce', 'Shakespeare, William', '2008-10-03', 13, 'https://www.gutenberg.org/ebooks/26757', 'fr', 1412), +(1996, 'My Summer in a Garden', 'Warner, Charles Dudley', '2004-10-10', 36, 'https://www.gutenberg.org/ebooks/3135', 'en', 1413), +(1997, 'Aloisiæ Sigeæ Toletanæ Satyra Sotadica de arcanis Amoris et Veneris', 'Chorier, Nicolas', '2013-02-26', 224, 'https://www.gutenberg.org/ebooks/42212', 'fr', 1414), +(1998, 'Notes and Queries, Number 73, March 22, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-27', 12, 'https://www.gutenberg.org/ebooks/23225', 'en', 105), +(1999, 'La faneuse d\'amour', 'Eekhoud, Georges', '2005-11-05', 21, 'https://www.gutenberg.org/ebooks/17010', 'fr', 61), +(2000, 'Three Hundred Things a Bright Boy Can Do', NULL, '2014-12-26', 159, 'https://www.gutenberg.org/ebooks/47760', 'en', 1415), +(2001, 'Mémoires d\'Outre-Tombe, Tome 1', 'Chateaubriand, François-René, vicomte de', '2006-07-18', 95, 'https://www.gutenberg.org/ebooks/18864', 'fr', 840), +(2002, 'Ramalho Ortigão', 'Arantes, Hemeterio', '2010-11-12', 9, 'https://www.gutenberg.org/ebooks/34292', 'pt', 1416), +(2003, 'Proserpine and Midas', 'Shelley, Mary Wollstonecraft', '2004-09-01', 63, 'https://www.gutenberg.org/ebooks/6447', 'en', 1417), +(2004, 'Kuninkaan toverit', 'Deslys, Charles', '2011-02-21', 6, 'https://www.gutenberg.org/ebooks/35340', 'fi', 1418), +(2005, 'The Caxtons: A Family Picture — Volume 10', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 13, 'https://www.gutenberg.org/ebooks/7595', 'en', 376), +(2006, 'The Confessions of Jean Jacques Rousseau — Volume 09', 'Rousseau, Jean-Jacques', '2004-12-06', 19, 'https://www.gutenberg.org/ebooks/3909', 'en', 1419), +(2007, 'Jamieson', 'Doede, William R.', '2016-03-30', 25, 'https://www.gutenberg.org/ebooks/51605', 'en', 26), +(2008, 'Isänmaa', 'Järnefelt, Arvid', '2004-10-10', 13, 'https://www.gutenberg.org/ebooks/13682', 'fi', 116), +(2009, 'The Decline and Fall of Whist: An Old Fashioned View of New Fangled Play', 'Hewby, John Petch', '2017-02-10', 17, 'https://www.gutenberg.org/ebooks/54145', 'en', 1420), +(2010, 'All the Way to Fairyland: Fairy Stories', 'Sharp, Evelyn', '2009-11-03', 63, 'https://www.gutenberg.org/ebooks/30400', 'en', 1007), +(2011, 'The Pagan Tribes of Borneo\r\nA Description of Their Physical Moral and Intellectual Condition, with Some Discussion of Their Ethnic Relations', 'Hose, Charles', '2002-07-01', 96, 'https://www.gutenberg.org/ebooks/3307', 'en', 1421), +(2012, 'Székelyföldi gyüjtés (Népköltési gyüjtemény 3. kötet)', 'Sebesi, Jób', '2013-02-05', 16, 'https://www.gutenberg.org/ebooks/42020', 'hu', 1422), +(2013, 'A Book of Nimble Beasts: Bunny Rabbit, Squirrel, Toad, and \"Those Sort of People\"', 'English, Douglas', '2017-07-13', 10, 'https://www.gutenberg.org/ebooks/55097', 'en', 1423), +(2014, 'The Stolen Bacillus and Other Incidents', 'Wells, H. G. (Herbert George)', '2004-06-26', 89, 'https://www.gutenberg.org/ebooks/12750', 'en', 409), +(2015, 'The Sheep Eaters', 'Allen, William Alonzo', '2008-09-09', 5, 'https://www.gutenberg.org/ebooks/26565', 'en', 1424), +(2016, 'L\'Illustration, No. 1600, 25 octobre 1873', 'Various', '2014-12-06', 4, 'https://www.gutenberg.org/ebooks/47552', 'fr', 150), +(2017, 'The Yellow Holly', 'Hume, Fergus', '2017-06-25', 24, 'https://www.gutenberg.org/ebooks/54979', 'en', 1425), +(2018, 'The Loss of the S. S. Titanic: Its Story and Its Lessons', 'Beesley, Lawrence', '2004-10-01', 85, 'https://www.gutenberg.org/ebooks/6675', 'en', 1162), +(2019, 'Elsket\n1891', 'Page, Thomas Nelson', '2007-10-12', 11, 'https://www.gutenberg.org/ebooks/23017', 'en', 1426), +(2020, 'Water Baptism\r\nA Pagan and Jewish Rite but not Christian, Proven by Scripture and History Confirmed by the Lives of Saints Who Were Never Baptized with Water', 'Moon, James H.', '2005-12-04', 13, 'https://www.gutenberg.org/ebooks/17222', 'en', 1427), +(2021, 'Boy of My Heart', 'Leighton, Marie Connor', '2016-03-13', 8, 'https://www.gutenberg.org/ebooks/51437', 'en', 700), +(2022, 'The New Irish Constitution: An Exposition and Some Arguments', NULL, '2011-02-04', 104, 'https://www.gutenberg.org/ebooks/35172', 'en', 1428), +(2023, 'Magic and Religion', 'Lang, Andrew', '2014-08-02', 49, 'https://www.gutenberg.org/ebooks/46480', 'en', 75), +(2024, 'Novanglus, and Massachusettensis\r\nor, Political Essays, Published in the Years 1774 and 1775, on the Principal Points of Controversy, between Great Britain and Her Colonies', 'Leonard, Daniel', '2014-03-25', 14, 'https://www.gutenberg.org/ebooks/45205', 'en', 1429), +(2025, 'Diary of Samuel Pepys — Volume 06: June/July 1660', 'Pepys, Samuel', '2004-11-29', 20, 'https://www.gutenberg.org/ebooks/4122', 'en', 1231), +(2026, 'The Iron Horse', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 54, 'https://www.gutenberg.org/ebooks/21740', 'en', 246), +(2027, 'The Tale of Samuel Whiskers; Or, The Roly-Poly Pudding', 'Potter, Beatrix', '2005-04-06', 99, 'https://www.gutenberg.org/ebooks/15575', 'en', 1430), +(2028, 'The History of the Indian Revolt and of the Expeditions to Persia, China and Japan, 1856-7-8', 'Dodd, George', '2016-10-24', 61, 'https://www.gutenberg.org/ebooks/53360', 'en', 1431), +(2029, 'Jean-Christophe III\r\nNuorukainen', 'Rolland, Romain', '2019-01-29', 2, 'https://www.gutenberg.org/ebooks/58788', 'fi', 1432), +(2030, 'Paavo Nissinen: Kuvaelmia viimeisestä Suomen sodasta', 'Mellin, G. H. (Gustaf Henrik)', '2007-02-26', 10, 'https://www.gutenberg.org/ebooks/20692', 'fi', 890), +(2031, 'Our Old Home, Vol. 2\nAnnotated with Passages from the Author\'s Notebook', 'Hawthorne, Nathaniel', '2011-10-04', 29, 'https://www.gutenberg.org/ebooks/37625', 'en', 776), +(2032, 'My Story', 'Mills, Anson', '2018-02-21', 9, 'https://www.gutenberg.org/ebooks/56612', 'en', 1433), +(2033, 'Lulu\'s Library, Volume 2 (of 3)', 'Alcott, Louisa May', '2010-05-13', 30, 'https://www.gutenberg.org/ebooks/32357', 'en', 1007), +(2034, 'Pollyanna', 'Porter, Eleanor H. (Eleanor Hodgman)', '1998-09-01', 423, 'https://www.gutenberg.org/ebooks/1450', 'en', 1434), +(2035, 'Her Royal Highness Woman', 'O\'Rell, Max', '2010-07-28', 29, 'https://www.gutenberg.org/ebooks/33285', 'en', 1435), +(2036, 'Autobiography of Charles Clinton Nourse\nPrepared for use of Members of the Family', 'Nourse, Charles Clinton', '2012-09-16', 5, 'https://www.gutenberg.org/ebooks/40777', 'en', 1436), +(2037, 'Carmilla', 'Le Fanu, Joseph Sheridan', '2003-11-01', 1304, 'https://www.gutenberg.org/ebooks/10007', 'en', 348), +(2038, '孝經', 'Unknown', '2008-01-10', 10, 'https://www.gutenberg.org/ebooks/24232', 'zh', 1437), +(2039, 'The Sign of the Four', 'Doyle, Arthur Conan', '2007-05-25', 6, 'https://www.gutenberg.org/ebooks/21586', 'en', 128), +(2040, 'Soldering, Brazing and Welding', NULL, '2016-05-15', 21, 'https://www.gutenberg.org/ebooks/52074', 'en', 1438), +(2041, 'Nobody\'s Child', 'Dejeans, Elizabeth', '2011-06-27', 19, 'https://www.gutenberg.org/ebooks/36531', 'en', 1439), +(2042, 'The Confessions of Harry Lorrequer — Volume 3', 'Lever, Charles James', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5236', 'en', 61), +(2043, 'Red Dynamite\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-11-05', 8, 'https://www.gutenberg.org/ebooks/44111', 'en', 557), +(2044, 'Conditions in Utah\nSpeech of Hon. Thomas Kearns of Utah, in the Senate of the United States', 'Kearns, Thomas', '2005-01-10', 19, 'https://www.gutenberg.org/ebooks/14661', 'en', 1440), +(2045, 'Sulhasen luona\nYksinäytöksinen laulunsekainen huvinäytelmä', 'Kiljander, Robert', '2007-01-27', 16, 'https://www.gutenberg.org/ebooks/20454', 'fi', 247), +(2046, 'Industrial Cuba\r\nBeing a Study of Present Commercial and Industrial Conditions, with Suggestions as to the Opportunities Presented in the Island for American Capital, Enterprise, and Labour', 'Porter, Robert P. (Robert Percival)', '2012-11-23', 8, 'https://www.gutenberg.org/ebooks/41463', 'en', 1441), +(2047, 'The Sentimental Vikings', 'Risley, R. V. (Richard Voorhees)', '2010-05-02', 14, 'https://www.gutenberg.org/ebooks/32191', 'en', 1442), +(2048, 'Space Nomads: Meteorites in Sky, Field, and Laboratory', 'LaPaz, Jean', '2016-08-18', 10, 'https://www.gutenberg.org/ebooks/52848', 'en', 1443), +(2049, 'Descripción colonial, libro primero (1/2)', 'Lizárraga, Reginaldo de', '2012-04-30', 15, 'https://www.gutenberg.org/ebooks/39579', 'es', 227), +(2050, 'Modern Saints and Seers', 'Finot, Jean', '2008-04-22', 12, 'https://www.gutenberg.org/ebooks/25126', 'en', 1444), +(2051, 'A School History of the United States', 'McMaster, John Bach', '2004-02-01', 54, 'https://www.gutenberg.org/ebooks/11313', 'en', 207), +(2052, 'Oeuvres complètes de Charles Péguy, Oeuvres de poésie (tome 6)\r\nLe Mystère des Saints Innocents; La tapisserie de sainte Geneviève et de Jeanne d\'Arc; La tapisserie de Notre-Dame.', 'Péguy, Charles', '2018-07-14', 30, 'https://www.gutenberg.org/ebooks/57506', 'fr', 701), +(2053, 'Windyridge', 'Riley, W. (William)', '2010-07-01', 22, 'https://www.gutenberg.org/ebooks/33043', 'en', 1445), +(2054, 'The Club of Queer Trades', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 121, 'https://www.gutenberg.org/ebooks/1696', 'en', 1446), +(2055, 'Jack Hardy: A Story of English Smugglers in the Days of Napoleon', 'Strang, Herbert', '2013-07-27', 27, 'https://www.gutenberg.org/ebooks/43334', 'en', 1447), +(2056, 'The Pit Prop Syndicate', 'Crofts, Freeman Wills', '1999-12-01', 128, 'https://www.gutenberg.org/ebooks/2013', 'en', 128), +(2057, 'Het dichtste bij de Zuidpool\nDe Aarde en haar Volken, 1909', 'Shackleton, Ernest Henry, Sir', '2008-12-31', 5, 'https://www.gutenberg.org/ebooks/27671', 'nl', 1448), +(2058, 'The History and Practice of the Art of Photography', 'Snelling, Henry Hunt', '1994-10-01', 107, 'https://www.gutenberg.org/ebooks/168', 'en', 1449), +(2059, 'The American Railway: Its Construction, Development, Management, and Appliances', 'Clarke, Thomas Curtis', '2017-03-18', 22, 'https://www.gutenberg.org/ebooks/54383', 'en', 1450), +(2060, 'Searchlights on Health: The Science of Eugenics', 'Nichols, J. L. (James Lawrence)', '2004-09-12', 68, 'https://www.gutenberg.org/ebooks/13444', 'en', 1451), +(2061, 'The Purple Heights', 'Oemler, Marie Conway', '2004-06-01', 27, 'https://www.gutenberg.org/ebooks/12596', 'en', 1452), +(2062, 'The Chautauquan, Vol. 05, January 1885, No. 4', 'Chautauqua Literary and Scientific Circle', '2017-08-03', 14, 'https://www.gutenberg.org/ebooks/55251', 'en', 1453), +(2063, 'The Art of Needle-work, from the Earliest Ages, 3rd ed.\nIncluding Some Notices of the Ancient Historical Tapestries', 'Menzies, Sutherland, active 1840-1883', '2010-03-20', 63, 'https://www.gutenberg.org/ebooks/31714', 'en', 1454), +(2064, 'The World Decision', 'Herrick, Robert', '2005-07-01', 5, 'https://www.gutenberg.org/ebooks/8529', 'en', 502), +(2065, 'Talitha: evangelho em tres actos', 'Pinto da Rocha', '2009-04-29', 16, 'https://www.gutenberg.org/ebooks/28639', 'pt', 1455), +(2066, 'The Demon Cruiser', 'Wheeler, R. L.', '2015-12-20', 5, 'https://www.gutenberg.org/ebooks/50723', 'en', 336), +(2067, 'Main Currents in Nineteenth Century Literature - 3. The Reaction in France', 'Brandes, Georg', '2014-12-27', 17, 'https://www.gutenberg.org/ebooks/47794', 'en', 536), +(2068, 'Tom Swift and His War Tank; Or, Doing His Bit for Uncle Sam', 'Appleton, Victor', '1997-06-01', 144, 'https://www.gutenberg.org/ebooks/954', 'en', 1456), +(2069, 'The Graysons: A Story of Illinois', 'Eggleston, Edward', '2010-11-09', 14, 'https://www.gutenberg.org/ebooks/34266', 'en', 1457), +(2070, 'Mémoire pour le service actuel des messageries', NULL, '2006-07-22', 17, 'https://www.gutenberg.org/ebooks/18890', 'fr', 1458), +(2071, 'Quotes and Images From Memoirs of Louis XV. and XVI.', 'Lamballe, Marie Thérèse Louise de Savoie-Carignan, princesse de', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7561', 'en', 1026), +(2072, 'Candide', 'Voltaire', '2006-11-27', 2069, 'https://www.gutenberg.org/ebooks/19942', 'en', 781), +(2073, 'L\'Illustration, No. 1589, 9 Août 1873', 'Various', '2014-08-21', 8, 'https://www.gutenberg.org/ebooks/46646', 'fr', 150), +(2074, 'American Addresses, with a Lecture on the Study of Biology', 'Huxley, Thomas Henry', '2005-06-26', 27, 'https://www.gutenberg.org/ebooks/16136', 'en', 1459), +(2075, 'Personality in Literature', 'Scott-James, R. A. (Rolfe Arnold)', '2007-08-13', 16, 'https://www.gutenberg.org/ebooks/22303', 'en', 1460), +(2076, 'A Lucta Civil Brazileira e o Sebastianismo Portuguez', 'Costa, José Soares da Cunha e', '2008-12-07', 16, 'https://www.gutenberg.org/ebooks/27443', 'pt', 1461), +(2077, 'Au jeune royaume d\'Albanie', 'Jaray, Gabriel Louis', '2004-10-08', 8, 'https://www.gutenberg.org/ebooks/13676', 'fr', 1462), +(2078, 'Hammer and Anvil: A Novel', 'Spielhagen, Friedrich', '2011-01-06', 10, 'https://www.gutenberg.org/ebooks/34868', 'en', 803), +(2079, 'Not Without Thorns', 'Molesworth, Mrs.', '2013-07-06', 6, 'https://www.gutenberg.org/ebooks/43106', 'en', 1463), +(2080, 'Human Genome Project, rough draft, Chromosome Number 21', 'Human Genome Project', '2000-06-01', 2, 'https://www.gutenberg.org/ebooks/2221', 'en', 1041), +(2081, 'Life of Wagner', 'Nohl, Ludwig', '2010-03-06', 21, 'https://www.gutenberg.org/ebooks/31526', 'en', 1464), +(2082, 'Civilization of the Indian Natives\r\nor, a Brief View of the Friendly Conduct of William Penn Towards Them in the Early Settlement of Pennsylvania', 'Jackson, Halliday', '2017-07-07', 7, 'https://www.gutenberg.org/ebooks/55063', 'en', 1465), +(2083, 'Wonderwings and other Fairy Stories', 'Howes, Edith', '2008-09-01', 8, 'https://www.gutenberg.org/ebooks/26591', 'en', 1466), +(2084, 'Sganarelle, or, the Self-Deceived Husband', 'Molière', '2004-10-01', 25, 'https://www.gutenberg.org/ebooks/6681', 'en', 1467), +(2085, 'Sipolan Aapon kosioretki', 'Jussi', '2010-10-10', 6, 'https://www.gutenberg.org/ebooks/34054', 'fi', 665), +(2086, 'Loitering in Pleasant Paths', 'Harland, Marion', '2015-11-20', 28, 'https://www.gutenberg.org/ebooks/50511', 'en', 1408), +(2087, 'Der Heizer: Ein Fragment', 'Kafka, Franz', '2005-07-15', 58, 'https://www.gutenberg.org/ebooks/16304', 'de', 1468), +(2088, 'The Story of the Upper Canadian Rebellion, Volume 1', 'Dent, John Charles', '2007-07-24', 48, 'https://www.gutenberg.org/ebooks/22131', 'en', 1469), +(2089, 'Godolphin, Volume 4.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7753', 'en', 45), +(2090, 'A Round Dozen', 'Coolidge, Susan', '2011-02-06', 24, 'https://www.gutenberg.org/ebooks/35186', 'en', 388), +(2091, 'The Historical Child\nPaidology; The Science of the Child', 'Chrisman, Oscar', '2014-08-01', 21, 'https://www.gutenberg.org/ebooks/46474', 'en', 1470), +(2092, 'A Bayard From Bengal\r\nBeing some account of the Magnificent and Spanking Career of Chunder Bindabun Bhosh,...', 'Anstey, F.', '2011-07-11', 60, 'https://www.gutenberg.org/ebooks/36703', 'en', 1471), +(2093, 'Boswell the Biographer', 'Mallory, George', '2016-06-06', 8, 'https://www.gutenberg.org/ebooks/52246', 'en', 1472), +(2094, 'Life of Tecumseh, and of His Brother the Prophet\nWith a Historical Sketch of the Shawanoe Indians', 'Drake, Benjamin', '2005-04-08', 21, 'https://www.gutenberg.org/ebooks/15581', 'en', 1473), +(2095, 'The Hope of the Gospel', 'MacDonald, George', '2004-12-24', 83, 'https://www.gutenberg.org/ebooks/14453', 'en', 1474), +(2096, 'The Fortunes of Garin', 'Johnston, Mary', '2016-10-29', 8, 'https://www.gutenberg.org/ebooks/53394', 'en', 1475), +(2097, 'The Debs Decision', 'Nearing, Scott', '2007-02-25', 26, 'https://www.gutenberg.org/ebooks/20666', 'en', 1476), +(2098, 'The Motor Boys on the Pacific; Or, the Young Derelict Hunters', 'Young, Clarence', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/5004', 'en', 1477), +(2099, 'La vie simple', 'Wagner, Charles', '2013-12-01', 22, 'https://www.gutenberg.org/ebooks/44323', 'fr', 740), +(2100, '荀子集解', 'Wang, Xianqian', '2008-05-03', 26, 'https://www.gutenberg.org/ebooks/25314', 'zh', 1478), +(2101, 'The Bracelets\r\nOr, Amiability and Industry Rewarded', 'Edgeworth, Maria', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11121', 'en', 195), +(2102, 'Futuria Fantasia, Spring 1940', 'Various', '2012-12-18', 72, 'https://www.gutenberg.org/ebooks/41651', 'en', 1479), +(2103, 'The Riddle of the Night', 'Hanshew, Thomas W.', '2010-07-27', 31, 'https://www.gutenberg.org/ebooks/33271', 'en', 1480), +(2104, 'Chambers\'s Twentieth Century Dictionary (part 3 of 4: N-R)', NULL, '2012-01-28', 60, 'https://www.gutenberg.org/ebooks/38699', 'en', 1481), +(2105, 'The Minute Man on the Frontier', 'Puddefoot, William George', '2012-09-17', 3, 'https://www.gutenberg.org/ebooks/40783', 'en', 930), +(2106, 'Sketches New and Old, Part 3.', 'Twain, Mark', '2004-06-26', 15, 'https://www.gutenberg.org/ebooks/5838', 'en', 1426), +(2107, 'Graham\'s Magazine, Vol. XXXVI, No. 3, March 1850', 'Various', '2018-08-20', 11, 'https://www.gutenberg.org/ebooks/57734', 'en', 162), +(2108, 'On the Nature of Thought\r\nOr, The act of thinking and its connexion with a perspicuous sentence', 'Haslam, John', '2010-01-31', 26, 'https://www.gutenberg.org/ebooks/31142', 'en', 1482), +(2109, 'In the Days of the Comet', 'Wells, H. G. (Herbert George)', '2004-10-25', 56, 'https://www.gutenberg.org/ebooks/3797', 'en', 1483), +(2110, 'Ocmulgee National Monument, Georgia', 'Pope, G. D.', '2015-05-27', 8, 'https://www.gutenberg.org/ebooks/49058', 'en', 1484), +(2111, 'The Truth About Woman', 'Hartley, C. Gasquoine (Catherine Gasquoine)', '2009-09-14', 25, 'https://www.gutenberg.org/ebooks/29981', 'en', 1485), +(2112, 'Northern Nut Growers Association Report of the Proceedings at the Twelfth Annual Meeting\r\nLancaster, Pennsylvania, October 6 and 7, 1921', NULL, '2006-11-06', 6, 'https://www.gutenberg.org/ebooks/19728', 'en', 1486), +(2113, 'Blue-Stocking Hall, (Vol. 3 of 3)', 'Scargill, William Pitt', '2017-08-21', 16, 'https://www.gutenberg.org/ebooks/55407', 'en', 1375), +(2114, 'A Chronicle of London from 1089 to 1483\r\nWritten in the Fifteenth Century, and for the First Time Printed from MSS. in the British Museum', 'Anonymous', '2008-10-26', 46, 'https://www.gutenberg.org/ebooks/27027', 'en', 1487), +(2115, 'The Wild Olive: A Novel', 'King, Basil', '2004-08-18', 33, 'https://www.gutenberg.org/ebooks/13212', 'en', 61), +(2116, 'The Children\'s Book of Stars', 'Mitton, G. E. (Geraldine Edith)', '2009-05-17', 18, 'https://www.gutenberg.org/ebooks/28853', 'en', 1488), +(2117, 'Company G\nA Record of the Services of One Company of the 157th N. Y. Vols. in the War of the Rebellion from Sept. 19, 1862, to July 10, 1865', 'Barlow, A. R. (Albert Rowe)', '2013-08-26', 10, 'https://www.gutenberg.org/ebooks/43562', 'en', 1489), +(2118, 'The English Rogue: Continued in the Life of Meriton Latroon, and Other Extravagants: The Second Part', 'Kirkman, Francis', '2016-01-17', 4, 'https://www.gutenberg.org/ebooks/50949', 'en', 1490), +(2119, 'Robinetta', 'Wiggin, Kate Douglas Smith', '2009-09-25', 29, 'https://www.gutenberg.org/ebooks/30090', 'en', 61), +(2120, 'The Second Funeral of Napoleon', 'Thackeray, William Makepeace', '2006-05-22', 34, 'https://www.gutenberg.org/ebooks/2645', 'en', 1491), +(2121, 'Chronicles of England, Scotland and Ireland (2 of 6): England (04 of 12)\r\nStephan Earle Of Bullongne', 'Holinshed, Raphael', '2005-09-27', 9, 'https://www.gutenberg.org/ebooks/16760', 'en', 1492), +(2122, 'Traits of American Humour, Vol. 2 of 3', NULL, '2015-09-03', 15, 'https://www.gutenberg.org/ebooks/49864', 'en', 190), +(2123, 'Sprookjes: Tweede verzameling', 'Grimm, Wilhelm', '2007-09-09', 72, 'https://www.gutenberg.org/ebooks/22555', 'nl', 900), +(2124, '道德經', 'Laozi', '2005-01-01', 112, 'https://www.gutenberg.org/ebooks/7337', 'zh', 1493), +(2125, 'Elsie\'s Journey on Inland Waters', 'Finley, Martha', '2014-06-17', 15, 'https://www.gutenberg.org/ebooks/46010', 'en', 31), +(2126, 'Nelly\'s Silver Mine: A Story of Colorado Life', 'Jackson, Helen Hunt', '2010-12-01', 20, 'https://www.gutenberg.org/ebooks/34430', 'en', 1494), +(2127, 'Tonio, Son of the Sierras: A Story of the Apache War', 'King, Charles', '2007-11-15', 24, 'https://www.gutenberg.org/ebooks/23487', 'en', 1495), +(2128, 'Bird Watching', 'Selous, Edmund', '2015-10-10', 16, 'https://www.gutenberg.org/ebooks/50175', 'en', 1496), +(2129, 'The Blacksmith in Eighteenth-Century Williamsburg\r\nAn Account of His Life & Times and of His Craft', 'Gill, Harold B.', '2018-11-21', 33, 'https://www.gutenberg.org/ebooks/58318', 'en', 1497), +(2130, 'The Life of Hugo Grotius\r\nWith Brief Minutes of the Civil, Ecclesiastical, and Literary History of the Netherlands', 'Butler, Charles', '2004-11-13', 10, 'https://www.gutenberg.org/ebooks/14037', 'en', 1498), +(2131, 'Walnut Growing in Oregon', NULL, '2006-12-28', 11, 'https://www.gutenberg.org/ebooks/20202', 'en', 1499), +(2132, 'An Egyptian Princess — Complete', 'Ebers, Georg', '2004-11-15', 58, 'https://www.gutenberg.org/ebooks/5460', 'en', 803), +(2133, 'The Red and the Black: A Chronicle of 1830', 'Stendhal', '2014-01-24', 273, 'https://www.gutenberg.org/ebooks/44747', 'en', 1500), +(2134, 'The Memorials of the Hamlet of Knightsbridge\nwith Notices of its Immediate Neighbourhood', 'Davis, Henry George', '2014-05-19', 19, 'https://www.gutenberg.org/ebooks/45695', 'en', 1501), +(2135, 'The Wye and Its Associations: A Picturesque Ramble', 'Ritchie, Leitch', '2011-06-10', 17, 'https://www.gutenberg.org/ebooks/36367', 'en', 1502), +(2136, 'Jane Austen and Her Times', 'Mitton, G. E. (Geraldine Edith)', '2016-07-22', 24, 'https://www.gutenberg.org/ebooks/52622', 'en', 1503), +(2137, 'Three Young Ranchmen; or, Daring Adventures in the Great West', 'Stratemeyer, Edward', '2010-09-03', 27, 'https://www.gutenberg.org/ebooks/33615', 'en', 1504), +(2138, 'Military Service and Adventures in the Far East: Vol. 2 (of 2)\r\nIncluding Sketches of the Campaigns Against the Afghans in 1839, and the Sikhs in 1845-6.', 'MacKinnon, Daniel Henry', '2018-06-18', 12, 'https://www.gutenberg.org/ebooks/57350', 'en', 1505), +(2139, 'Battle Hymn of the Republic', 'McGuinn, Roger', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/10497', 'en', 1506), +(2140, 'The Dragon\'s Secret', 'Seaman, Augusta Huiell', '2008-06-12', 25, 'https://www.gutenberg.org/ebooks/25770', 'en', 62), +(2141, 'Travels in the United States of America\r\nCommencing in the Year 1793, and Ending in 1797. With the Author\'s Journals of his Two Voyages Across the Atlantic.', 'Priest, William', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11545', 'en', 1110), +(2142, 'De Heilige Oorlog, gevoerd door Koning Elschaddai tegen Diábolus', 'Bunyan, John', '2018-01-01', 13, 'https://www.gutenberg.org/ebooks/56282', 'nl', 1507), +(2143, 'The Sunset Trail', 'Lewis, Alfred Henry', '2012-10-30', 30, 'https://www.gutenberg.org/ebooks/41235', 'en', 1508), +(2144, 'Thoughts out of Season, Part I', 'Nietzsche, Friedrich Wilhelm', '2004-05-01', 49, 'https://www.gutenberg.org/ebooks/5652', 'en', 902), +(2145, 'Poems', 'Stuart, Muriel', '2011-08-14', 13, 'https://www.gutenberg.org/ebooks/37087', 'en', 8), +(2146, 'Das Büchlein vom Leben nach dem Tode', 'Fechner, Gustav Theodor', '2014-01-03', 20, 'https://www.gutenberg.org/ebooks/44575', 'de', 1509), +(2147, 'Ang Katipunan', 'Francisco, G. B. (Gabriel Beato)', '2004-11-29', 19, 'https://www.gutenberg.org/ebooks/14205', 'tl', 1510), +(2148, 'Fire and Ice', 'Frost, Robert', '2006-11-06', 62, 'https://www.gutenberg.org/ebooks/20030', 'en', 8), +(2149, 'Les vrais mystères de Paris', 'Vidocq, Eugène François', '2012-06-05', 17, 'https://www.gutenberg.org/ebooks/39921', 'fr', 177), +(2150, 'Peace in Friendship Village', 'Gale, Zona', '2016-06-25', 22, 'https://www.gutenberg.org/ebooks/52410', 'en', 112), +(2151, 'Terrorists and Freedom Fighters', 'Vaknin, Samuel', '2003-12-01', 34, 'https://www.gutenberg.org/ebooks/4780', 'en', 1511), +(2152, 'The Invasion', 'Le Queux, William', '2011-05-18', 31, 'https://www.gutenberg.org/ebooks/36155', 'en', 1512), +(2153, 'A Narrative of the Melancholy Wreck of the \"Dunbar,\" Merchant Ship, on the South Head of Port Jackson, August 20th, 1875', 'Anonymous', '2018-05-14', 4, 'https://www.gutenberg.org/ebooks/57162', 'en', 1513), +(2154, 'Histoire de France 1758-1789, (Volume 19/19)', 'Michelet, Jules', '2008-02-02', 28, 'https://www.gutenberg.org/ebooks/24490', 'fr', 624), +(2155, 'Cosas de España; tomo 2\n(El país de lo imprevisto)', 'Ford, Richard', '2019-02-19', 15, 'https://www.gutenberg.org/ebooks/58916', 'es', 1514), +(2156, 'Encyclopaedia Britannica, 11th Edition, \"Chariot\" to \"Chatelaine\"\r\nVolume 5, Slice 8', 'Various', '2010-08-14', 39, 'https://www.gutenberg.org/ebooks/33427', 'en', 1081), +(2157, 'The Ku Klux Klan', 'Burton, Annie Cooper', '2012-10-09', 11, 'https://www.gutenberg.org/ebooks/41007', 'en', 1515), +(2158, 'Black Oxen', 'Atherton, Gertrude Franklin Horn', '2008-05-20', 29, 'https://www.gutenberg.org/ebooks/25542', 'en', 1516), +(2159, 'Human Genome Project, Build 34, Chromosome Number 03', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11777', 'en', 1385), +(2160, 'The Women of the Confederacy', 'Underwood, J. L. (John Levi)', '2011-08-04', 27, 'https://www.gutenberg.org/ebooks/36969', 'en', 1517), +(2161, 'Die Huldigung der Künste', 'Schiller, Friedrich', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/7939', 'de', 1518), +(2162, 'Goose-Quill Papers', 'Guiney, Louise Imogen', '2017-09-26', 17, 'https://www.gutenberg.org/ebooks/55635', 'en', 620), +(2163, 'Mistress Nell: A Merry Tale of a Merry Time', 'Hazelton, George Cochrane', '2010-02-23', 22, 'https://www.gutenberg.org/ebooks/31370', 'en', 1519), +(2164, 'The Heritage of Dress: Being Notes on the History and Evolution of Clothes', 'Webb, Wilfred Mark', '2013-05-10', 13, 'https://www.gutenberg.org/ebooks/42682', 'en', 1520), +(2165, 'Ancient Man in Britain', 'Mackenzie, Donald A. (Donald Alexander)', '2013-09-16', 16, 'https://www.gutenberg.org/ebooks/43750', 'en', 1521), +(2166, 'The Circus Boys on the Mississippi; Or, Afloat with the Big Show on the Big River', 'Darlington, Edgar B. P.', '2001-01-01', 30, 'https://www.gutenberg.org/ebooks/2477', 'en', 323), +(2167, 'Histoire de la vie et de l\'administration de Colbert', 'Clément, Pierre', '2008-11-09', 17, 'https://www.gutenberg.org/ebooks/27215', 'fr', 1522), +(2168, 'The Boy Allies at Verdun; Or, Saving France from the Enemy', 'Hayes, Clair W. (Clair Wallace)', '2004-07-25', 19, 'https://www.gutenberg.org/ebooks/13020', 'en', 1523), +(2169, 'Adventures of Huckleberry Finn, Chapters 26 to 30', 'Twain, Mark', '2004-06-27', 29, 'https://www.gutenberg.org/ebooks/7105', 'en', 323), +(2170, 'The Fantasy Fan September 1933\nThe Fan\'s Own Magazine', 'Various', '2014-07-08', 30, 'https://www.gutenberg.org/ebooks/46222', 'en', 1524), +(2171, 'The Man Who Was Six', 'Wallace, F. L. (Floyd L.)', '2016-02-24', 22, 'https://www.gutenberg.org/ebooks/51295', 'en', 26), +(2172, 'The Next of Kin: Those who Wait and Wonder', 'McClung, Nellie L.', '2005-08-19', 19, 'https://www.gutenberg.org/ebooks/16552', 'en', 1525), +(2173, 'The Island of Doctor Moreau', 'Wells, H. G. (Herbert George)', '2005-09-01', 13, 'https://www.gutenberg.org/ebooks/8971', 'en', 1526), +(2174, 'Pagan Passions', 'Janifer, Laurence M.', '2007-09-26', 69, 'https://www.gutenberg.org/ebooks/22767', 'en', 26), +(2175, 'The Digger Movement in the Days of the Commonwealth\nAs Revealed in the Writings of Gerrard Winstanley, the Digger, Mystic and Rationalist, Communist and Social Reformer', 'Berens, Lewis Henry', '2006-01-08', 104, 'https://www.gutenberg.org/ebooks/17480', 'en', 260), +(2176, 'The \'Look About You\' Nature Study Books, Book 4 [of 7]', 'Hoare, Thomas W.', '2015-10-30', 41, 'https://www.gutenberg.org/ebooks/50347', 'en', 1527), +(2177, 'The Practical Garden-Book\r\nContaining the Simplest Directions for the Growing of the Commonest Things about the House and Garden', 'Bailey, L. H. (Liberty Hyde)', '2010-12-08', 40, 'https://www.gutenberg.org/ebooks/34602', 'en', 1413), +(2178, 'A Handbook to the Works of Browning (6th ed.)', 'Orr, Sutherland, Mrs.', '2004-12-28', 13, 'https://www.gutenberg.org/ebooks/14498', 'en', 1528), +(2179, 'The Fortunate Foundlings\r\nBeing the Genuine History of Colonel M——Rs, and His Sister, Madam Du P——Y, the Issue of the Hon. Ch——Es M——Rs, Son of the Late Duke of R—— L——D. Containing Many Wonderful Accidents That Befel Them in Their Travels, and Interspersed with the Characters and Adventures of Several Persons of Condition, In the Most Polite Courts of Europe. the Whole Calculated for the Entertainment and Improvement of the Youth of Both Sexes.', 'Haywood, Eliza Fowler', '2004-01-01', 44, 'https://www.gutenberg.org/ebooks/10804', 'en', 1529), +(2180, 'Young Canada\'s Nursery Rhymes', 'Various', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/4921', 'en', 343), +(2181, 'Peerless Prestidigitation\r\nBeing a collection of entirely new ideas and effects in the fascinating art of modern magic', 'De Caston, Herbert', '2010-05-14', 23, 'https://www.gutenberg.org/ebooks/32368', 'en', 1530), +(2182, 'Baltimore Hats, Past and Present', 'Brigham, William Tufts', '2012-05-23', 15, 'https://www.gutenberg.org/ebooks/39780', 'en', 1531), +(2183, 'Béla, a buta', 'Kosztolányi, Dezső', '2012-09-13', 10, 'https://www.gutenberg.org/ebooks/40748', 'hu', 1532), +(2184, 'Rambles in Dickens\' Land', 'Allbut, Robert', '2012-01-23', 7, 'https://www.gutenberg.org/ebooks/38652', 'en', 1533), +(2185, 'The Magnetic North', 'Robins, Elizabeth', '2003-11-01', 58, 'https://www.gutenberg.org/ebooks/10038', 'en', 1534), +(2186, 'Versuch einer Kritik aller Offenbarung', 'Fichte, Johann Gottlieb', '2006-04-25', 33, 'https://www.gutenberg.org/ebooks/18255', 'de', 471), +(2187, 'The Song of Roland', NULL, '1996-01-01', 294, 'https://www.gutenberg.org/ebooks/391', 'en', 1535), +(2188, 'Lectures on the French Revolution', 'Acton, John Emerich Edward Dalberg Acton, Baron', '2008-12-10', 35, 'https://www.gutenberg.org/ebooks/27488', 'en', 1536), +(2189, 'History of the French Revolution from 1789 to 1814', 'Mignet, M. (François-Auguste-Marie-Alexis)', '2006-01-01', 100, 'https://www.gutenberg.org/ebooks/9602', 'en', 1536), +(2190, '賈誼新書', 'Jia, Yi', '2007-12-11', 29, 'https://www.gutenberg.org/ebooks/23814', 'zh', 1493), +(2191, 'A Concise Chronicle of Events of the Great War', 'Rowe, R. P. P.', '2015-03-19', 10, 'https://www.gutenberg.org/ebooks/48525', 'en', 1537), +(2192, 'Sir Humphrey Gilbert\'s Voyage to Newfoundland', 'Hayes, Edward, active 1602', '2006-04-06', 18, 'https://www.gutenberg.org/ebooks/3338', 'en', 885), +(2193, 'Traité élémentaire de la peinture,\r\navec 58 figures d\'après les dessins originaux de Le Poussin, dont 34 en taille-douce', 'Leonardo, da Vinci', '2011-04-26', 52, 'https://www.gutenberg.org/ebooks/35971', 'fr', 1538), +(2194, 'The Outcasts', 'Fraser, William Alexander', '2006-09-26', 13, 'https://www.gutenberg.org/ebooks/19387', 'en', 625), +(2195, 'Cottage on the Curve', 'Lamers, Mary', '2017-06-20', 8, 'https://www.gutenberg.org/ebooks/54946', 'en', 1539), +(2196, 'Greylorn', 'Laumer, Keith', '2007-10-13', 95, 'https://www.gutenberg.org/ebooks/23028', 'en', 26), +(2197, 'The Stories of El Dorado', 'Wait, Frona Eunice', '2013-05-27', 74, 'https://www.gutenberg.org/ebooks/42823', 'en', 1540), +(2198, 'Olive in Italy', 'Dalton, Moray', '2009-07-25', 18, 'https://www.gutenberg.org/ebooks/29512', 'en', 348), +(2199, 'Angel\'s Egg', 'Pangborn, Edgar', '2016-03-09', 50, 'https://www.gutenberg.org/ebooks/51408', 'en', 1541), +(2200, 'The Pleasures of Collecting', 'Teall, Gardner C.', '2017-11-06', 6, 'https://www.gutenberg.org/ebooks/55894', 'en', 1542), +(2201, 'The Village Coquette; Or, The Supposed Lottery', 'Dufresny, Charles Rivière', '2005-03-01', 18, 'https://www.gutenberg.org/ebooks/7798', 'en', 907), +(2202, 'Poems of the Past and the Present', 'Hardy, Thomas', '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9430', 'en', 54), +(2203, 'At Ypres with Best-Dunkley', 'Floyd, Thomas Hope', '2006-02-21', 45, 'https://www.gutenberg.org/ebooks/17813', 'en', 1543), +(2204, 'L\'idolo', 'Rovetta, Gerolamo', '2015-04-16', 10, 'https://www.gutenberg.org/ebooks/48717', 'it', 1544), +(2205, 'The Slav Nations', 'Tucic, Srdan', '2017-03-12', 14, 'https://www.gutenberg.org/ebooks/54348', 'en', 1545), +(2206, 'L\'effrayante aventure', 'Lermina, Jules', '2006-03-28', 7, 'https://www.gutenberg.org/ebooks/18067', 'fr', 560), +(2207, 'Ringfield: A Novel', 'Harrison, S. Frances (Susie Frances)', '2008-10-03', 14, 'https://www.gutenberg.org/ebooks/26768', 'en', 61), +(2208, 'Himalayan Journals — Complete\r\nOr, Notes of a Naturalist in Bengal, the Sikkim and Nepal Himalayas, the Khasia Mountains, etc.', 'Hooker, Joseph Dalton', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6478', 'en', 1546), +(2209, 'Story-Tell Lib', 'Slosson, Annie Trumbull', '2006-12-01', 7, 'https://www.gutenberg.org/ebooks/19989', 'en', 179), +(2210, 'Hall of Mirrors', 'Brown, Fredric', '2009-08-17', 121, 'https://www.gutenberg.org/ebooks/29720', 'en', 179), +(2211, 'A Woodland Queen (\'Reine des Bois\') — Volume 2', 'Theuriet, André', '2003-04-01', 20, 'https://www.gutenberg.org/ebooks/3936', 'en', 1225), +(2212, 'The Honorable Miss: A Story of an Old-Fashioned Town', 'Meade, L. T.', '2005-05-07', 36, 'https://www.gutenberg.org/ebooks/15778', 'en', 1547), +(2213, 'Revolution and Counter-Revolution; Or, Germany in 1848', 'Engels, Friedrich', '2010-06-24', 105, 'https://www.gutenberg.org/ebooks/32966', 'en', 1548), +(2214, 'Seedtime in Kashmir: A Memoir of William Jackson Elmslie', 'Elmslie, William Jackson', '2019-05-08', 16, 'https://www.gutenberg.org/ebooks/59457', 'en', 1549), +(2215, 'Viidakkopoika', 'Kipling, Rudyard', '2014-02-25', 9, 'https://www.gutenberg.org/ebooks/45008', 'fi', 1550), +(2216, 'Notes and Queries, Number 60, December 21, 1850\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-03-11', 16, 'https://www.gutenberg.org/ebooks/24803', 'en', 105), +(2217, 'L\'Illustration, No. 3646, 11 Janvier 1913', 'Various', '2011-09-15', 2, 'https://www.gutenberg.org/ebooks/37428', 'fr', 150), +(2218, 'The Prophet', 'Gibran, Kahlil', '2019-01-01', 5386, 'https://www.gutenberg.org/ebooks/58585', 'en', 1551), +(2219, 'Maantien varrella: Huvinäytelmä neljässä näytöksessä', 'Hostrup, C. (Christian)', '2016-08-23', 19, 'https://www.gutenberg.org/ebooks/52883', 'fi', 1552), +(2220, 'La araña negra, t. 6/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 10, 'https://www.gutenberg.org/ebooks/45834', 'es', 1353), +(2221, 'A Book of Simples', NULL, '2017-01-12', 59, 'https://www.gutenberg.org/ebooks/53951', 'en', 1553), +(2222, 'Putnam\'s Handy Law Book for the Layman', 'Bolles, Albert Sidney', '2010-07-05', 13, 'https://www.gutenberg.org/ebooks/33088', 'en', 1554), +(2223, 'Checkmate', 'Le Fanu, Joseph Sheridan', '2012-01-01', 55, 'https://www.gutenberg.org/ebooks/38460', 'en', 1380), +(2224, 'The Gringos\r\nA Story Of The Old California Days In 1849', 'Bower, B. M.', '2004-04-01', 64, 'https://www.gutenberg.org/ebooks/12139', 'en', 1555), +(2225, 'Avvenimenti faceti: Raccolti da un Anonimo Siciliano del secolo XVIII', 'Pitrè, Giuseppe', '2013-05-05', 15, 'https://www.gutenberg.org/ebooks/42649', 'it', 1556), +(2226, 'Actes et Paroles, Volume 1', 'Hugo, Victor', '2005-05-01', 48, 'https://www.gutenberg.org/ebooks/8186', 'fr', 920), +(2227, 'The Young Woman\'s Guide', 'Alcott, William A. (William Andrus)', '2005-10-01', 36, 'https://www.gutenberg.org/ebooks/9054', 'en', 1557), +(2228, 'My Autobiography: A Fragment', 'Müller, F. Max (Friedrich Max)', '2009-10-16', 108, 'https://www.gutenberg.org/ebooks/30269', 'en', 1558), +(2229, 'From Paris to Pekin over Siberian Snows\nA Narrative of a Journey by Sledge over the Snows of European Russia and Siberia, by Caravan Through Mongolia, Across the Gobi Desert and the Great Wall, and by Mule Palanquin Through China to Pekin', 'Meignan, Victor', '2015-02-27', 25, 'https://www.gutenberg.org/ebooks/48373', 'en', 1559), +(2230, 'La fille du pirate', 'Chevalier, H. Emile (Henri Emile)', '2006-05-16', 15, 'https://www.gutenberg.org/ebooks/18403', 'fr', 61), +(2231, 'Ausgewählte Gedichte', 'Lessing, Gotthold Ephraim', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6820', 'de', 1518), +(2232, 'Punch, or the London Charivari, Volume 99, December 13, 1890', 'Various', '2004-07-14', 8, 'https://www.gutenberg.org/ebooks/12905', 'en', 134), +(2233, 'Graham\'s Magazine Vol XXXII No. 6 June 1848', 'Various', '2009-07-07', 18, 'https://www.gutenberg.org/ebooks/29344', 'en', 380), +(2234, 'School, Church, and Home Games', 'Draper, George Orrin', '2005-08-26', 28, 'https://www.gutenberg.org/ebooks/16599', 'en', 1560), +(2235, 'The United States Since the Civil War', 'Lingley, Charles Ramsdell', '2006-02-01', 8, 'https://www.gutenberg.org/ebooks/9868', 'en', 1561), +(2236, 'Rozmowa Pòlocha z Kaszëbą', 'Ceynowa, Florian Stanisław', '2009-03-09', 16, 'https://www.gutenberg.org/ebooks/28296', 'pl', 1562), +(2237, 'Rose and Rose', 'Lucas, E. V. (Edward Verrall)', '2018-09-30', 11, 'https://www.gutenberg.org/ebooks/57995', 'en', 1563), +(2238, 'The Emancipatrix', 'Flint, Homer Eon', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/5699', 'en', 1564), +(2239, 'Pietro Ghisleri', 'Crawford, F. Marion (Francis Marion)', '2012-10-03', 10, 'https://www.gutenberg.org/ebooks/40922', 'en', 1322), +(2240, 'Tales From the \"Phantasus,\" etc. of Ludwig Tieck', 'Tieck, Ludwig', '2012-02-11', 42, 'https://www.gutenberg.org/ebooks/38838', 'en', 803), +(2241, 'Joshua Marvel', 'Farjeon, B. L. (Benjamin Leopold)', '2016-11-12', 10, 'https://www.gutenberg.org/ebooks/53509', 'en', 137), +(2242, 'Popular Romances of the West of England, Second Series\r\nor, The Drolls, Traditions, and Superstitions of Old Cornwall', 'Hunt, Robert', '2019-03-08', 26, 'https://www.gutenberg.org/ebooks/59033', 'en', 1565), +(2243, 'The Heart of Una Sackville', 'Vaizey, George de Horne, Mrs.', '2007-04-18', 33, 'https://www.gutenberg.org/ebooks/21129', 'en', 1566), +(2244, 'Velikulta: Seikkailutarina kaupunkiviisikosta', 'Bennett, Arnold', '2018-03-26', 5, 'https://www.gutenberg.org/ebooks/56847', 'fi', 1567), +(2245, 'Ruysbroeck', 'Underhill, Evelyn', '2011-10-27', 18, 'https://www.gutenberg.org/ebooks/37870', 'en', 1568), +(2246, 'The Spirit of the Border: A Romance of the Early Settlers in the Ohio Valley', 'Grey, Zane', '1998-03-01', 121, 'https://www.gutenberg.org/ebooks/1239', 'en', 1569), +(2247, 'Vertebrates from the Barrier Island of Tamaulipas, México', 'Raun, Gerald G.', '2011-11-13', 13, 'https://www.gutenberg.org/ebooks/38004', 'en', 1570), +(2248, 'Directions for Navigating on Part of the South Coast of Newfoundland, with a Chart Thereof, Including the Islands of St. Peter\'s and Miquelon\nAnd a Particular Account of the Bays, Harbours, Rocks, Land-marks, Depths of Water, Latitudes, Bearings, and Distances from Place to Place, the Setting of the Currents, and Flowing of the Tides, &c., from an Actual Survey, Taken by Order of Commodore Pallisser, Governor of Newfoundland, Labradore, &c.', 'Cook, James', '2007-06-23', 20, 'https://www.gutenberg.org/ebooks/21915', 'en', 1571), +(2249, 'He', 'Lang, Andrew', '2008-05-24', 21, 'https://www.gutenberg.org/ebooks/25589', 'en', 1572), +(2250, 'The Prince and the Pauper', 'Twain, Mark', '2004-07-05', 875, 'https://www.gutenberg.org/ebooks/1837', 'en', 1573), +(2251, '粉妝樓71-80回', 'Luo, Guanzhong', '2003-10-01', 13, 'https://www.gutenberg.org/ebooks/4579', 'zh', 1574), +(2252, 'North of 36', 'Hough, Emerson', '2019-04-03', 21, 'https://www.gutenberg.org/ebooks/59201', 'en', 1575), +(2253, 'Shireen and her Friends: Pages from the Life of a Persian Cat', 'Stables, Gordon', '2011-12-06', 8, 'https://www.gutenberg.org/ebooks/38236', 'en', 1576), +(2254, 'Little Scenes for Little Folks\nIn Words Not Exceeding Two Syllables', 'Anonymous', '2008-02-22', 8, 'https://www.gutenberg.org/ebooks/24669', 'en', 294), +(2255, 'The Problem of Manflight', 'Means, James', '2017-12-24', 8, 'https://www.gutenberg.org/ebooks/56249', 'en', 1577), +(2256, 'Punch or the London Charivari, Volume 158, March 24, 1920.', 'Various', '2005-05-27', 12, 'https://www.gutenberg.org/ebooks/15912', 'en', 134), +(2257, 'Kertomuksia Suomen historiasta 1\nPakanuuden aikakausi', 'Krohn, Julius', '2015-05-31', 11, 'https://www.gutenberg.org/ebooks/49093', 'fi', 1578), +(2258, 'The Monster and Other Stories', 'Crane, Stephen', '2010-02-05', 85, 'https://www.gutenberg.org/ebooks/31189', 'en', 1579), +(2259, 'Hosiery Manufacture', 'Davis, William, M.A.', '2016-04-24', 20, 'https://www.gutenberg.org/ebooks/51850', 'en', 1580), +(2260, 'The Lady of Fort St. John', 'Catherwood, Mary Hartwell', '2006-06-19', 16, 'https://www.gutenberg.org/ebooks/18631', 'en', 1581), +(2261, 'Fathers and Sons', 'Turgenev, Ivan Sergeevich', '2015-01-10', 202, 'https://www.gutenberg.org/ebooks/47935', 'en', 1582), +(2262, 'Scientific American Supplement, No. 447, July 26, 1884', 'Various', '2005-11-01', 11, 'https://www.gutenberg.org/ebooks/9266', 'en', 210), +(2263, 'Queen Elizabeth', 'Beesly, Edward Spencer', '2016-01-20', 20, 'https://www.gutenberg.org/ebooks/50982', 'en', 1583), +(2264, 'The Historical Novels of Georg Ebers\r\nA Linked Index to the Project Gutenberg Editions', 'Ebers, Georg', '2009-05-20', 12, 'https://www.gutenberg.org/ebooks/28898', 'en', 198), +(2265, 'Birds and All Nature, Vol. 6, No. 4, November 1899\r\nIn Natural Colors', 'Various', '2015-02-02', 7, 'https://www.gutenberg.org/ebooks/48141', 'en', 1584), +(2266, 'Lehti myrskyssä', 'Ouida', '2009-06-20', 10, 'https://www.gutenberg.org/ebooks/29176', 'fi', 1585), +(2267, 'The Rover Boys in Alaska; or, Lost in the Fields of Ice', 'Stratemeyer, Edward', '2008-10-12', 43, 'https://www.gutenberg.org/ebooks/26902', 'en', 1586), +(2268, 'The Charm of Ireland', 'Stevenson, Burton Egbert', '2011-03-08', 17, 'https://www.gutenberg.org/ebooks/35529', 'en', 117), +(2269, 'Gospel Doctrine: Selections from the Sermons and Writings of Joseph F. Smith', 'Smith, Joseph F. (Joseph Fielding)', '2014-10-14', 27, 'https://www.gutenberg.org/ebooks/47109', 'en', 310), +(2270, 'The Story of a Nodding Donkey', 'Hope, Laura Lee', '2006-02-05', 21, 'https://www.gutenberg.org/ebooks/17679', 'en', 1235), +(2271, 'What Need of Man?', 'Calin, Harold', '2010-01-06', 35, 'https://www.gutenberg.org/ebooks/30867', 'en', 26), +(2272, 'American Historical and Literary Curiosities, Part 06', 'Watson, John F. (John Fanning)', '2004-07-15', 8, 'https://www.gutenberg.org/ebooks/7906', 'en', 1587), +(2273, 'The Modern Scottish Minstrel, Volume 4.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2006-10-11', 11, 'https://www.gutenberg.org/ebooks/19525', 'en', 1588), +(2274, 'Spanish America, Vol. 1 (of 2)', 'Bonnycastle, Richard Henry, Sir', '2015-06-22', 10, 'https://www.gutenberg.org/ebooks/49255', 'en', 1589), +(2275, 'History of Astronomy', 'Forbes, George', '2005-05-01', 72, 'https://www.gutenberg.org/ebooks/8172', 'en', 1590), +(2276, 'Henry Ossian Flipper, the Colored Cadet at West Point\r\nAutobiography of Lieut. Henry Ossian Flipper, U.S.A., First Graduate of Color from the U.S. Military Academy', 'Flipper, Henry Ossian', '2000-12-01', 23, 'https://www.gutenberg.org/ebooks/2448', 'en', 1591), +(2277, 'Robinson Crusoe', 'Defoe, Daniel', '2015-03-01', 60, 'https://www.gutenberg.org/ebooks/48387', 'fi', 1592), +(2278, 'The Song of the Cardinal', 'Stratton-Porter, Gene', '1996-05-01', 46, 'https://www.gutenberg.org/ebooks/533', 'en', 318), +(2279, 'The New England Magazine, Volume 1, No. 2, February, 1886.\nThe Bay State Monthly, Volume 4, No. 2, February, 1886.', 'Various', '2007-09-24', 8, 'https://www.gutenberg.org/ebooks/22758', 'en', 1593), +(2280, 'Oxford Poetry, 1919', NULL, '2015-11-03', 37, 'https://www.gutenberg.org/ebooks/50378', 'en', 1594), +(2281, 'Avatâras\nFour lectures delivered at the twenty-fourth anniversary\nmeeting of the Theosophical Society at Adyar, Madras,\nDecember, 1899', 'Besant, Annie', '2009-03-06', 28, 'https://www.gutenberg.org/ebooks/28262', 'en', 1595), +(2282, 'Lady Merton, Colonist', 'Ward, Humphry, Mrs.', '2004-10-21', 11, 'https://www.gutenberg.org/ebooks/13823', 'en', 1596), +(2283, 'Mexican Copper Tools: The Use of Copper by the Mexicans Before the Conquest; and the Katunes of Maya History, a Chapter in the Early History of Central America, With Special Reference to the Pio Perez Manuscript.', 'Valentini, Philipp J. J. (Philipp Johann Josef)', '2018-09-24', 15, 'https://www.gutenberg.org/ebooks/57961', 'en', 1597), +(2284, 'Like Another Helen', 'Horton, George', '2018-10-16', 8, 'https://www.gutenberg.org/ebooks/58115', 'en', 1598), +(2285, 'A Legend of Reading Abbey', 'MacFarlane, Charles', '2013-01-08', 4, 'https://www.gutenberg.org/ebooks/41804', 'en', 1599), +(2286, 'History of the Union Jack and Flags of the Empire', 'Cumberland, Barlow', '2014-04-26', 8, 'https://www.gutenberg.org/ebooks/45498', 'en', 1600), +(2287, 'Folk-Tales of the Khasis', 'Rafy, Mrs.', '2011-10-30', 94, 'https://www.gutenberg.org/ebooks/37884', 'en', 1601), +(2288, 'Exciting Adventures of Mister Robert Robin', 'Oldfield, Reuben Bertram', '2007-03-16', 13, 'https://www.gutenberg.org/ebooks/20833', 'en', 1602), +(2289, 'A Strange World: A Novel. Volume 2 (of 3)', 'Braddon, M. E. (Mary Elizabeth)', '2019-02-21', 14, 'https://www.gutenberg.org/ebooks/58929', 'en', 137), +(2290, 'Die Entwicklung des Berliner Flaschenbiergeschäfts', 'Stresemann, Gustav', '2010-08-13', 36, 'https://www.gutenberg.org/ebooks/33418', 'de', 1603), +(2291, 'Memoirs of a Midget', NULL, '2012-03-25', 42, 'https://www.gutenberg.org/ebooks/39122', 'en', 1061), +(2292, 'Nouveau manuel complet de marine, première partie: gréement', 'Verdier, Phocion-Aristide-Paulin', '2012-10-13', 9, 'https://www.gutenberg.org/ebooks/41038', 'fr', 1604), +(2293, 'French Conversation and Composition', 'Wann, Harry Vincent', '2004-03-01', 111, 'https://www.gutenberg.org/ebooks/11748', 'fr', 1605), +(2294, 'Heroes of Israel\nText of the Hero Stories with Notes and Questions for Young Students', 'Soares, Theodore Gerald', '2011-08-03', 9, 'https://www.gutenberg.org/ebooks/36956', 'en', 945), +(2295, 'Rautatie ja hautuumaa, ynnä muita kertomuksia', 'Bjørnson, Bjørnstjerne', '2018-11-23', 6, 'https://www.gutenberg.org/ebooks/58327', 'fi', 1606); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(2296, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 578, December 1, 1832', 'Various', '2004-11-10', 6, 'https://www.gutenberg.org/ebooks/14008', 'en', 133), +(2297, 'Religious Poems', 'Stowe, Harriet Beecher', '2014-01-28', 13, 'https://www.gutenberg.org/ebooks/44778', 'en', 1607), +(2298, '火星の記憶', 'Jones, Raymond F.', '2011-06-08', 125, 'https://www.gutenberg.org/ebooks/36358', 'ja', 1061), +(2299, 'The Whence and the Whither of Man\r\nA Brief History of His Origin and Development through Conformity to Environment; Being the Morse Lectures of 1895', 'Tyler, John M. (John Mason)', '2005-01-29', 10, 'https://www.gutenberg.org/ebooks/14834', 'en', 1315), +(2300, 'On the Age of Maya Ruins', 'Bowditch, Charles P. (Charles Pickering)', '2012-03-30', 10, 'https://www.gutenberg.org/ebooks/39310', 'en', 1608), +(2301, 'Historic Towns of New England', NULL, '2015-05-28', 21, 'https://www.gutenberg.org/ebooks/49067', 'en', 1609), +(2302, 'The Bible, Douay-Rheims, Book 40: Habacuc\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8340', 'en', 1610), +(2303, 'The Romance of the Woods', 'Whishaw, Frederick', '2014-09-08', 50, 'https://www.gutenberg.org/ebooks/46813', 'en', 1611), +(2304, 'The Bostonians, Vol. I (of II)', 'James, Henry', '2006-11-05', 108, 'https://www.gutenberg.org/ebooks/19717', 'en', 1612), +(2305, 'Olavi Maununpoika Pariisissa ja Suomalaisten opinkäynti ulkomailla keski-aialla', 'Yrjö-Koskinen, Yrjö Sakari', '2017-08-27', 29, 'https://www.gutenberg.org/ebooks/55438', 'fi', 1613), +(2306, 'The King of the Golden River', 'Ruskin, John', '1996-10-01', 183, 'https://www.gutenberg.org/ebooks/701', 'en', 1007), +(2307, 'Point de lendemain', 'Denon, Vivant', '2008-10-24', 36, 'https://www.gutenberg.org/ebooks/27018', 'fr', 4), +(2308, 'The Siege and Conquest of the North Pole', 'Bryce, George', '2016-01-20', 21, 'https://www.gutenberg.org/ebooks/50976', 'en', 1614), +(2309, 'The Valley of Decision', 'Wharton, Edith', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9292', 'en', 16), +(2310, 'Lähetyssaarnaajan tytär: Kertomus Tsulujen maasta ja Cetewayo\'sta', 'Eden, Charles H. (Charles Henry)', '2009-06-20', 20, 'https://www.gutenberg.org/ebooks/29182', 'fi', 1615), +(2311, 'Rationalism', 'Robertson, J. M. (John Mackinnon)', '2010-04-11', 16, 'https://www.gutenberg.org/ebooks/31941', 'en', 1616), +(2312, 'Runola', 'Gottlund, C. A. (Carl Axel)', '2016-02-01', 41, 'https://www.gutenberg.org/ebooks/51098', 'fi', 1171), +(2313, 'The History of Mr. Polly', 'Wells, H. G. (Herbert George)', '2005-01-01', 102, 'https://www.gutenberg.org/ebooks/7308', 'en', 1617), +(2314, 'Juggernaut', 'Campbell, Alice', '2009-01-17', 18, 'https://www.gutenberg.org/ebooks/27824', 'en', 1516), +(2315, 'The Little Book of the Flag', 'Tappan, Eva March', '2010-01-08', 12, 'https://www.gutenberg.org/ebooks/30893', 'en', 1618), +(2316, 'Women As Sex Vendors\r\nOr, Why Women Are Conservative (Being a View of the Economic Status of Woman)', 'Marcy, Mary', '2009-02-11', 73, 'https://www.gutenberg.org/ebooks/28050', 'en', 1619), +(2317, 'Tinman', 'Gallon, Tom', '2015-05-18', 22, 'https://www.gutenberg.org/ebooks/48989', 'en', 61), +(2318, 'Minnesota; Its Character and Climate\nLikewise Sketches of Other Resorts Favorable to Invalids; Together\nWith Copious Notes on Health; Also Hints to Tourists and Emigrants.', 'Bill, Ledyard', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/11922', 'en', 1620), +(2319, 'Kauppias taskussa: Yksinäytöksinen ilveily', 'Kahra, Aatami', '2016-06-08', 3, 'https://www.gutenberg.org/ebooks/52279', 'fi', 247), +(2320, 'Emin Pasha', 'Plehn, M. C.', '2019-06-07', 31, 'https://www.gutenberg.org/ebooks/59691', 'en', 1621), +(2321, 'Ministry of Disturbance', 'Piper, H. Beam', '2007-02-24', 77, 'https://www.gutenberg.org/ebooks/20659', 'en', 26), +(2322, 'Little Boy', 'Bixby, Jerome', '2019-01-21', 41, 'https://www.gutenberg.org/ebooks/58743', 'en', 179), +(2323, 'Les gosses dans les ruines: Idylle de guerre', 'Gsell, Paul', '2012-05-23', 19, 'https://www.gutenberg.org/ebooks/39774', 'fr', 1622), +(2324, 'Sylvia\'s Marriage: A Novel', 'Sinclair, Upton', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/5807', 'en', 675), +(2325, 'The Land of Little Rain', 'Austin, Mary Hunter', '2008-07-09', 96, 'https://www.gutenberg.org/ebooks/365', 'en', 1623), +(2326, 'Laughable Lyrics', 'Lear, Edward', '2004-10-08', 72, 'https://www.gutenberg.org/ebooks/13649', 'en', 986), +(2327, 'Harvard Stories: Sketches of the Undergraduate', 'Post, Waldron Kintzing', '2011-01-05', 11, 'https://www.gutenberg.org/ebooks/34857', 'en', 1624), +(2328, 'A Sweet Girl Graduate', 'Meade, L. T.', '2013-07-08', 15, 'https://www.gutenberg.org/ebooks/43139', 'en', 1625), +(2329, 'The First Epistle General of Peter', NULL, '2007-10-01', 0, 'https://www.gutenberg.org/ebooks/22932', 'en', 1626), +(2330, 'The Seri Indians. (1898 N 17 / 1895-1896 (pages 1-344*))', 'McGee, W J', '2015-07-09', 13, 'https://www.gutenberg.org/ebooks/49403', 'en', 1627), +(2331, 'Narakan Rifles, About Face!', 'Smith, George H. (George Henry)', '2010-03-06', 15, 'https://www.gutenberg.org/ebooks/31519', 'en', 1564), +(2332, 'The Three Cities Trilogy: Rome, Volume 4', 'Zola, Émile', '2005-08-01', 5, 'https://www.gutenberg.org/ebooks/8724', 'en', 55), +(2333, 'Northern Nut Growers Association, Report Of The Proceedings At The Tenth Annual Meeting.\r\nBattle Creek, Michigan, December 9 and 10, 1919', NULL, '2006-09-25', 8, 'https://www.gutenberg.org/ebooks/19373', 'en', 1628), +(2334, 'Amy in Acadia: A Story for Girls', 'Reed, Helen Leah', '2011-04-28', 18, 'https://www.gutenberg.org/ebooks/35985', 'en', 82), +(2335, 'Illustrations of Exotic Entomology, Volume 1', 'Drury, Dru', '2014-12-23', 24, 'https://www.gutenberg.org/ebooks/47599', 'en', 1629), +(2336, 'South from Hudson Bay: An Adventure and Mystery Story for Boys', 'Brill, Ethel C. (Ethel Claire)', '2013-10-08', 9, 'https://www.gutenberg.org/ebooks/43905', 'en', 676), +(2337, 'The Astronomy of Milton\'s \'Paradise Lost\'', 'Orchard, Thomas Nathaniel', '2009-03-29', 34, 'https://www.gutenberg.org/ebooks/28434', 'en', 1630), +(2338, 'La Comédie humaine - Volume 09\r\nScènes de la vie parisienne - Tome 01', 'Balzac, Honoré de', '2017-10-31', 76, 'https://www.gutenberg.org/ebooks/55860', 'fr', 642), +(2339, 'From the Valley of the Missing', 'White, Grace Miller', '2006-04-01', 26, 'https://www.gutenberg.org/ebooks/18093', 'en', 154), +(2340, 'Daddy-Long-Legs', 'Webster, Jean', '1994-08-01', 783, 'https://www.gutenberg.org/ebooks/157', 'en', 1631), +(2341, 'Edison\'s Conquest of Mars', 'Serviss, Garrett Putman', '2006-08-29', 86, 'https://www.gutenberg.org/ebooks/19141', 'en', 26), +(2342, 'Cosmos', 'McGaffey, Ernest', '2015-08-06', 7, 'https://www.gutenberg.org/ebooks/49631', 'en', 178), +(2343, 'Thomas Henry Huxley; A Sketch Of His Life And Work', 'Mitchell, P. Chalmers (Peter Chalmers), Sir', '2005-10-25', 19, 'https://www.gutenberg.org/ebooks/16935', 'en', 1632), +(2344, 'The Three Cities Trilogy: Lourdes, Complete', 'Zola, Émile', '2005-07-01', 34, 'https://www.gutenberg.org/ebooks/8516', 'en', 1633), +(2345, 'Plunkitt of Tammany Hall: a series of very plain talks on very practical politics, delivered by ex-Senator George Washington Plunkitt, the Tammany philosopher, from his rostrum—the New York County court house bootblack stand; Recorded by William L. Riordon', 'Plunkitt, George Washington', '2001-09-01', 150, 'https://www.gutenberg.org/ebooks/2810', 'en', 1634), +(2346, 'Λουκιανός - Άπαντα, Τόμος Έκτος', 'Lucian, of Samosata', '2009-04-25', 13, 'https://www.gutenberg.org/ebooks/28606', 'el', 1635), +(2347, 'Hunting Dogs\r\nDescribes in a Practical Manner the Training, Handling, Treatment, Breeds, Etc., Best Adapted for Night Hunting as Well as Gun Dogs for Daylight Sport', 'Hartley, Oliver', '2010-11-09', 55, 'https://www.gutenberg.org/ebooks/34259', 'en', 1636), +(2348, 'Uudempia Uloswalituita Satuja', 'Ganander, Christfrid', '2014-08-25', 12, 'https://www.gutenberg.org/ebooks/46679', 'fi', 1637), +(2349, 'Doña Clarines y Mañana de Sol', 'Álvarez Quintero, Serafín', '2005-06-22', 79, 'https://www.gutenberg.org/ebooks/16109', 'en', 907), +(2350, 'The Youngest Girl in the School', 'Sharp, Evelyn', '2010-06-27', 13, 'https://www.gutenberg.org/ebooks/32992', 'en', 621), +(2351, 'Poesias', 'Herculano, Alexandre', '2008-06-28', 25, 'https://www.gutenberg.org/ebooks/25925', 'pt', 1638), +(2352, 'Miscellaneous Poems', 'Crabbe, George', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/5209', 'en', 532), +(2353, 'Practical Points in Anesthesia', 'Neef, Frederick-Emil', '2016-10-03', 17, 'https://www.gutenberg.org/ebooks/53199', 'en', 1639), +(2354, 'L\'Illustration, No. 3235, 25 Février 1905', 'Various', '2010-10-05', 2, 'https://www.gutenberg.org/ebooks/33840', 'fr', 150), +(2355, 'Foreign Butterflies', 'Duncan, James', '2018-12-30', 8, 'https://www.gutenberg.org/ebooks/58571', 'en', 1640), +(2356, 'Subsidiary Notes as to the Introduction of Female Nursing into Military Hospitals in Peace and War', 'Nightingale, Florence', '2016-08-22', 12, 'https://www.gutenberg.org/ebooks/52877', 'en', 1641), +(2357, 'Wit and Humor of the Bible: A Literary Study', 'Shutter, Marion D. (Marion Daniel)', '2012-04-27', 16, 'https://www.gutenberg.org/ebooks/39546', 'en', 1642), +(2358, 'The Conquest of Canada, Vol. 1', 'Warburton, George', '2008-04-21', 15, 'https://www.gutenberg.org/ebooks/25119', 'en', 1643), +(2359, 'Private Papers of William Wilberforce', 'Wilberforce, William', '2014-02-14', 32, 'https://www.gutenberg.org/ebooks/44912', 'en', 1644), +(2360, 'Cranford', 'Gaskell, Elizabeth Cleghorn', '2018-07-20', 42, 'https://www.gutenberg.org/ebooks/57539', 'en', 1383), +(2361, 'A magunk szerelme: Versek', 'Ady, Endre', '2012-01-05', 9, 'https://www.gutenberg.org/ebooks/38494', 'hu', 1645), +(2362, 'Five Little Peppers and How They Grew', 'Sidney, Margaret', '2006-12-07', 28, 'https://www.gutenberg.org/ebooks/20037', 'en', 1646), +(2363, 'Little Prudy\'s Sister Susy', 'May, Sophie', '2004-11-29', 20, 'https://www.gutenberg.org/ebooks/14202', 'en', 1647), +(2364, 'Points of Humour, Part 2 (of 2)', NULL, '2014-01-03', 11, 'https://www.gutenberg.org/ebooks/44572', 'en', 311), +(2365, 'Burke\'s Speech on Conciliation with America', 'Burke, Edmund', '2004-05-01', 72, 'https://www.gutenberg.org/ebooks/5655', 'en', 1648), +(2366, 'Great Ralegh', 'De Sélincourt, Hugh', '2011-08-14', 17, 'https://www.gutenberg.org/ebooks/37080', 'en', 1198), +(2367, 'Van Brussel naar Karema: Geschiedenis eener Belgische Kolonie in Midden-Afrika', 'Wauters, A.-J. (Alphonse-Jules)', '2018-09-23', 7, 'https://www.gutenberg.org/ebooks/57959', 'nl', 1649), +(2368, 'The Story of Julia Page', 'Norris, Kathleen Thompson', '2003-12-01', 33, 'https://www.gutenberg.org/ebooks/4787', 'en', 675), +(2369, 'A New Atmosphere', 'Hamilton, Gail', '2011-05-18', 18, 'https://www.gutenberg.org/ebooks/36152', 'en', 1650), +(2370, 'Legends from River & Mountain', 'Strettell, Alma', '2016-06-26', 10, 'https://www.gutenberg.org/ebooks/52417', 'en', 1651), +(2371, '\"Puffing Billy\" and the Prize \"Rocket\"\r\nor, the story of the Stephensons and our Railways.', 'Knight, Helen C. (Helen Cross)', '2012-06-05', 18, 'https://www.gutenberg.org/ebooks/39926', 'en', 1652), +(2372, 'The Expositor\'s Bible: The Book of Exodus', 'Chadwick, G. A. (George Alexander)', '2010-08-13', 24, 'https://www.gutenberg.org/ebooks/33420', 'en', 1653), +(2373, 'Autographs for Freedom', NULL, '2019-02-18', 5, 'https://www.gutenberg.org/ebooks/58911', 'en', 125), +(2374, 'Memoirs of the Life of Sir Walter Scott, Volume 1 (of 10)', 'Lockhart, J. G. (John Gibson)', '2008-02-02', 30, 'https://www.gutenberg.org/ebooks/24497', 'en', 1654), +(2375, 'Mark Tidd: His Adventures and Strategies', 'Kelland, Clarence Budington', '2018-05-15', 7, 'https://www.gutenberg.org/ebooks/57165', 'en', 1655), +(2376, 'Lettres de mon moulin', 'Daudet, Alphonse', '2004-04-01', 37, 'https://www.gutenberg.org/ebooks/11770', 'fr', 4), +(2377, 'Children\'s Literature\nA Textbook of Sources for Teachers and Teacher-Training Classes', 'Curry, Charles Madison', '2008-05-20', 44, 'https://www.gutenberg.org/ebooks/25545', 'en', 1656), +(2378, 'Her Majesty\'s Minister', 'Le Queux, William', '2012-10-09', 7, 'https://www.gutenberg.org/ebooks/41000', 'en', 1657), +(2379, 'The \'Fan Kwae\' at Canton Before Treaty Days 1825-1844', 'Hunter, William C.', '2013-05-10', 9, 'https://www.gutenberg.org/ebooks/42685', 'en', 1658), +(2380, 'Weird Tales. Vol. 1 (of 2)', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2010-02-23', 176, 'https://www.gutenberg.org/ebooks/31377', 'en', 1659), +(2381, 'Vadon virágai', 'Jókai, Mór', '2017-09-26', 15, 'https://www.gutenberg.org/ebooks/55632', 'hu', 1532), +(2382, 'Cara', 'Malot, Hector', '2004-07-26', 15, 'https://www.gutenberg.org/ebooks/13027', 'fr', 687), +(2383, 'The Life of the Party', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2008-11-09', 29, 'https://www.gutenberg.org/ebooks/27212', 'en', 1660), +(2384, 'Samuel Brohl and Company', 'Cherbuliez, Victor', '2006-03-28', 13, 'https://www.gutenberg.org/ebooks/2470', 'en', 1661), +(2385, 'Tacitus and Bracciolini. The Annals Forged in the XVth Century', 'Ross, John Wilson', '2005-10-01', 36, 'https://www.gutenberg.org/ebooks/9098', 'en', 1662), +(2386, 'Seductio Ad Absurdum\nThe Principles & Practices of Seduction, A Beginner\'s Handbook', 'Hahn, Emily', '2013-09-17', 46, 'https://www.gutenberg.org/ebooks/43757', 'en', 1663), +(2387, 'Memoir of an Eventful Expedition in Central America\r\nResulting in the Discovery of the Idolatrous City of Iximaya, in an Unexplored Region; and the Possession of two Remarkable Aztec Children, Descendants and Specimens of the Sacerdotal Caste, (now nearly extinct,) of the Ancient Aztec Founders of the Ruined Temples of that Country, Described by John L. Stevens, Esq., and Other Travellers.', 'Velasquez, Pedro', '2009-07-12', 9, 'https://www.gutenberg.org/ebooks/29388', 'en', 1664), +(2388, 'Henri IV (1re partie)', 'Shakespeare, William', '2007-09-24', 16, 'https://www.gutenberg.org/ebooks/22760', 'fr', 1665), +(2389, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 1', 'Various', '2016-02-24', 78, 'https://www.gutenberg.org/ebooks/51292', 'en', 1666), +(2390, 'Chronicles 1 (of 6): The Historie of England 5 (of 8)\nThe Fift Booke of the Historie of England.', 'Holinshed, Raphael', '2005-08-20', 34, 'https://www.gutenberg.org/ebooks/16555', 'en', 1667), +(2391, 'The War of the Worlds', 'Wells, H. G. (Herbert George)', '2005-09-01', 29, 'https://www.gutenberg.org/ebooks/8976', 'en', 1668), +(2392, 'Quartetto', 'Oriani, Alfredo', '2014-07-08', 14, 'https://www.gutenberg.org/ebooks/46225', 'it', 1544), +(2393, 'Adventures of Huckleberry Finn, Chapters 11 to 15', 'Twain, Mark', '2004-06-27', 37, 'https://www.gutenberg.org/ebooks/7102', 'en', 1043), +(2394, 'Betty Lee, Freshman', 'Grove, Harriet Pyne', '2010-12-08', 29, 'https://www.gutenberg.org/ebooks/34605', 'en', 1669), +(2395, 'Casa Grande Ruin\r\nThirteenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1891-92, Government Printing Office, Washington, 1896, pages 289-318', 'Mindeleff, Cosmos', '2006-01-10', 17, 'https://www.gutenberg.org/ebooks/17487', 'en', 1670), +(2396, 'Elémens de la philosophie de Neuton: Mis à la portée de tout le monde', 'Voltaire', '2015-10-30', 31, 'https://www.gutenberg.org/ebooks/50340', 'fr', 1671), +(2397, 'Common Cause: A Novel of the War in America', 'Adams, Samuel Hopkins', '2017-08-21', 15, 'https://www.gutenberg.org/ebooks/55400', 'en', 1672), +(2398, 'Le Tour du Monde; En Roumanie\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-14', 15, 'https://www.gutenberg.org/ebooks/29986', 'fr', 1673), +(2399, 'Liljecronas Heimat', 'Lagerlöf, Selma', '2010-01-31', 17, 'https://www.gutenberg.org/ebooks/31145', 'de', 1674), +(2400, 'Major Barbara', 'Shaw, Bernard', '2003-02-01', 297, 'https://www.gutenberg.org/ebooks/3790', 'en', 1675), +(2401, 'Selected Polish Tales', NULL, '2005-06-01', 39, 'https://www.gutenberg.org/ebooks/8378', 'en', 1676), +(2402, 'Erinnerungen', 'Thoma, Ludwig', '2009-09-26', 23, 'https://www.gutenberg.org/ebooks/30097', 'de', 1677), +(2403, 'Back Home', 'Wood, Eugene', '2001-05-01', 15, 'https://www.gutenberg.org/ebooks/2642', 'en', 770), +(2404, 'Thomas Hardy\'s Dorset', 'Hopkins, R. Thurston (Robert Thurston)', '2013-08-26', 10, 'https://www.gutenberg.org/ebooks/43565', 'en', 1678), +(2405, 'The Leader of the Lower School: A Tale of School Life', 'Brazil, Angela', '2009-05-17', 30, 'https://www.gutenberg.org/ebooks/28854', 'en', 1679), +(2406, 'Edwy the Fair or the First Chronicle of Aescendune\r\nA Tale of the Days of Saint Dunstan', 'Crake, A. D. (Augustine David)', '2004-08-18', 13, 'https://www.gutenberg.org/ebooks/13215', 'en', 1680), +(2407, 'Henry Clay\'s Remarks in House and Senate', 'Clay, Henry', '1996-12-01', 18, 'https://www.gutenberg.org/ebooks/739', 'en', 1681), +(2408, 'Blackwood\'s Edinburgh Magazine, Volume 62, No. 382, August 1847', 'Various', '2008-10-25', 13, 'https://www.gutenberg.org/ebooks/27020', 'en', 274), +(2409, 'Indian Birds: Being a Key to the Common Birds of the Plains of India', 'Dewar, Douglas', '2014-06-18', 9, 'https://www.gutenberg.org/ebooks/46017', 'en', 88), +(2410, '說苑, Volume 13-16', 'Liu, Xiang', '2005-01-01', 26, 'https://www.gutenberg.org/ebooks/7330', 'zh', 1682), +(2411, 'Histoire de France 1305-1364 (Volume 4/19)', 'Michelet, Jules', '2007-09-09', 19, 'https://www.gutenberg.org/ebooks/22552', 'fr', 624), +(2412, 'Traits of American Humour, Vol. 1 of 3', NULL, '2015-09-03', 11, 'https://www.gutenberg.org/ebooks/49863', 'en', 190), +(2413, 'Half-hours with the Telescope\r\nBeing a Popular Guide to the Use of the Telescope as a Means of Amusement and Instruction.', 'Proctor, Richard A. (Richard Anthony)', '2005-09-28', 30, 'https://www.gutenberg.org/ebooks/16767', 'en', 1683), +(2414, 'The Tunnel Under the World', 'Pohl, Frederik', '2010-04-14', 279, 'https://www.gutenberg.org/ebooks/31979', 'en', 26), +(2415, 'Kasakat: Kaukasialainen kertomus', 'Tolstoy, Leo, graf', '2015-10-10', 17, 'https://www.gutenberg.org/ebooks/50172', 'fi', 1684), +(2416, 'Het ivoren aapje: Een roman van Brusselsch leven', 'Teirlinck, Herman', '2009-02-14', 13, 'https://www.gutenberg.org/ebooks/28068', 'nl', 1685), +(2417, 'What Became of Them? and, The Conceited Little Pig', 'Boare, G.', '2007-11-15', 3, 'https://www.gutenberg.org/ebooks/23480', 'en', 1686), +(2418, 'Methods of Destroying Rats', 'Lantz, David E. (David Ernest)', '2010-11-25', 25, 'https://www.gutenberg.org/ebooks/34437', 'en', 1687), +(2419, 'New Readings of Old Authors. Shakspeare. King Henry 5th', NULL, '2014-01-23', 9, 'https://www.gutenberg.org/ebooks/44740', 'en', 1688), +(2420, 'Joshua — Volume 1', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5467', 'en', 803), +(2421, 'The Maya Chronicles\nBrinton\'s Library Of Aboriginal American Literature, Number 1', NULL, '2006-12-28', 42, 'https://www.gutenberg.org/ebooks/20205', 'en', 1689), +(2422, 'Un drame au Labrador', 'Dick, Vinceslas-Eugène', '2004-11-12', 8, 'https://www.gutenberg.org/ebooks/14030', 'fr', 1690), +(2423, 'Frank\'s Ranche; Or, My Holiday in the Rockies\r\nBeing a Contribution to the Inquiry into What We Are to Do with Our Boys', 'Marston, E. (Edward)', '2016-07-23', 19, 'https://www.gutenberg.org/ebooks/52625', 'en', 1691), +(2424, 'Faithful Margaret: A Novel', 'Simpson, J. M., Mrs.', '2011-06-08', 13, 'https://www.gutenberg.org/ebooks/36360', 'en', 61), +(2425, 'Histoire d\'Henriette d\'Angleterre', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '2014-05-18', 16, 'https://www.gutenberg.org/ebooks/45692', 'fr', 1692), +(2426, 'Svenska folk-sagor och äfventyr. Första delen (häfte 1 och häfte 2)', NULL, '2018-06-19', 34, 'https://www.gutenberg.org/ebooks/57357', 'sv', 1693), +(2427, 'The Golden Legend', 'Longfellow, Henry Wadsworth', '2003-12-01', 49, 'https://www.gutenberg.org/ebooks/10490', 'en', 350), +(2428, 'The Land of Strong Men', 'Chisholm, A. M. (Arthur Murray)', '2010-09-02', 34, 'https://www.gutenberg.org/ebooks/33612', 'en', 315), +(2429, 'Histoire de la Littérature Anglaise (Volume 1 de 5)', 'Taine, Hippolyte', '2012-04-01', 26, 'https://www.gutenberg.org/ebooks/39328', 'fr', 1694), +(2430, 'Hungry Hearts', 'Yezierska, Anzia', '2012-10-30', 40, 'https://www.gutenberg.org/ebooks/41232', 'en', 1695), +(2431, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 544, April 28, 1832', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11542', 'en', 133), +(2432, 'The Oyster: Where, How and When to Find, Breed, Cook and Eat It', 'Murray, Eustace Clare Grenville', '2018-01-01', 15, 'https://www.gutenberg.org/ebooks/56285', 'en', 1342), +(2433, 'El idilio de un enfermo', 'Palacio Valdés, Armando', '2008-06-13', 29, 'https://www.gutenberg.org/ebooks/25777', 'es', 1696), +(2434, 'Kim', 'Kipling, Rudyard', '2000-06-01', 884, 'https://www.gutenberg.org/ebooks/2226', 'en', 1228), +(2435, 'Witty Pieces by Witty People\r\nA collection of the funniest sayings, best jokes, laughable anecdotes, mirthful stories, etc., extant', 'Various', '2013-07-06', 41, 'https://www.gutenberg.org/ebooks/43101', 'en', 1697), +(2436, 'The Norwegian account of Haco\'s expedition against Scotland, A.D. MCCLXIII.', 'Sturla Þórðarson', '2006-05-02', 36, 'https://www.gutenberg.org/ebooks/18299', 'en', 1698), +(2437, 'Horace', 'Sand, George', '2004-10-07', 23, 'https://www.gutenberg.org/ebooks/13671', 'fr', 560), +(2438, 'Starman\'s Quest', 'Silverberg, Robert', '2008-12-07', 111, 'https://www.gutenberg.org/ebooks/27444', 'en', 26), +(2439, 'Anna the Adventuress', 'Oppenheim, E. Phillips (Edward Phillips)', '2008-09-11', 30, 'https://www.gutenberg.org/ebooks/26596', 'en', 109), +(2440, 'An Abstract of the Proceedings of the Select Committee of the House of Commons, Appointed Session, 1849, to Inquire Into the Contract Packet Service', 'Peninsular and Oriental Steam Navigation Company', '2017-07-07', 13, 'https://www.gutenberg.org/ebooks/55064', 'en', 1699), +(2441, 'Little Frida: A Tale of the Black Forest', 'Anonymous', '2010-03-06', 12, 'https://www.gutenberg.org/ebooks/31521', 'en', 1700), +(2442, 'Martti Salander: Romaani', 'Keller, Gottfried', '2015-11-20', 9, 'https://www.gutenberg.org/ebooks/50516', 'fi', 1701), +(2443, 'The Gardener', 'Tagore, Rabindranath', '2004-10-01', 110, 'https://www.gutenberg.org/ebooks/6686', 'en', 1702), +(2444, 'The Palace of Pleasure, Volume 2', NULL, '2010-10-10', 27, 'https://www.gutenberg.org/ebooks/34053', 'en', 58), +(2445, 'Appletons\' Popular Science Monthly, March 1900\r\nVol. 56, Nov. 1899 to April, 1900', 'Various', '2014-08-01', 14, 'https://www.gutenberg.org/ebooks/46473', 'en', 210), +(2446, 'Godolphin, Volume 5.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7754', 'en', 45), +(2447, 'The Girl Scouts\' Canoe Trip', 'Lavell, Edith', '2017-10-31', 17, 'https://www.gutenberg.org/ebooks/55858', 'en', 1703), +(2448, 'Geschichte des Zigeunermädchens: Eine Novelle', 'Cervantes Saavedra, Miguel de', '2011-02-05', 30, 'https://www.gutenberg.org/ebooks/35181', 'de', 1704), +(2449, 'The Book-Hunter\nA New Edition, with a Memoir of the Author', 'Burton, John Hill', '2007-07-24', 26, 'https://www.gutenberg.org/ebooks/22136', 'en', 1705), +(2450, 'Guy Rivers: A Tale of Georgia', 'Simms, William Gilmore', '2005-07-15', 34, 'https://www.gutenberg.org/ebooks/16303', 'en', 1706), +(2451, 'Hääilta: Huvinäytelmä yhdessä näytöksessä', 'Nansen, Peter', '2016-06-05', 3, 'https://www.gutenberg.org/ebooks/52241', 'fi', 1552), +(2452, 'India, Old and New', 'Chirol, Valentine, Sir', '2005-04-08', 41, 'https://www.gutenberg.org/ebooks/15586', 'en', 1707), +(2453, 'L\'Illustration, No. 3272, 11 Novembre 1905', 'Various', '2011-07-12', 3, 'https://www.gutenberg.org/ebooks/36704', 'fr', 150), +(2454, 'The Flying Death', 'Adams, Samuel Hopkins', '2013-12-01', 42, 'https://www.gutenberg.org/ebooks/44324', 'en', 167), +(2455, 'The Rover Boys in New York; Or, Saving Their Father\'s Honor', 'Stratemeyer, Edward', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/5003', 'en', 1708), +(2456, 'The Romance of an Old Fool', 'Field, Roswell Martin', '2007-02-24', 11, 'https://www.gutenberg.org/ebooks/20661', 'en', 61), +(2457, 'The Doctor\'s Dilemma', 'Stretton, Hesba', '2004-12-24', 33, 'https://www.gutenberg.org/ebooks/14454', 'en', 61), +(2458, 'Natuurkunde in de Huiskamer: ongeveer 100 proeven met huishoudelijke voorwerpen.', 'Tit, Tom', '2016-10-28', 20, 'https://www.gutenberg.org/ebooks/53393', 'nl', 1709), +(2459, 'Tom Moore: An Unhistorical Romance\r\nFounded on Certain Happenings in the Life of Ireland\'s Greatest Poet', 'Sayre, Theodore Burt', '2012-12-18', 5, 'https://www.gutenberg.org/ebooks/41656', 'en', 1710), +(2460, 'Ten Girls from Dickens', 'Sweetser, Kate Dickinson', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11126', 'en', 1711), +(2461, 'Um conto portuguez: episodio da guerra civil: a Maria da Fonte', 'Mascarenhas, Miguel J. T.', '2008-05-03', 6, 'https://www.gutenberg.org/ebooks/25313', 'pt', 1712), +(2462, 'Graham\'s Magazine, Vol. XXXVI, No. 2, February 1850', 'Various', '2018-08-19', 31, 'https://www.gutenberg.org/ebooks/57733', 'en', 380), +(2463, 'Ossian in Germany\r\nBibliography, General Survey, Ossian\'s Influence upon Klopstock and the Bards', 'Tombo, Rudolf', '2012-09-18', 15, 'https://www.gutenberg.org/ebooks/40784', 'en', 1713), +(2464, 'Viagem ao Parnaso\r\nImpressões da leitura da Velhice do Padre Eterno, poema notavel do distincto poeta Guerra Junqueiro', 'Frei Ugedio', '2010-07-27', 28, 'https://www.gutenberg.org/ebooks/33276', 'pt', 1714), +(2465, 'Gage\'s Instructions', 'De Berniere, Henry', '2011-06-27', 26, 'https://www.gutenberg.org/ebooks/36536', 'en', 1715), +(2466, 'The Backwoods Boy; or, The Boyhood and Manhood of Abraham Lincoln', 'Alger, Horatio, Jr.', '2016-05-15', 24, 'https://www.gutenberg.org/ebooks/52073', 'en', 1716), +(2467, 'Contos d\'Aldeia', 'Braga, Alberto Leal Barradas Monteiro', '2007-05-23', 13, 'https://www.gutenberg.org/ebooks/21581', 'pt', 179), +(2468, 'The Christmas Child', 'Stretton, Hesba', '2007-01-27', 15, 'https://www.gutenberg.org/ebooks/20453', 'en', 585), +(2469, 'The Civil War', 'Robertson, James I.', '2018-12-26', 3, 'https://www.gutenberg.org/ebooks/58549', 'en', 1717), +(2470, 'Op Samoa', 'Barfus, E. von (Eginhard)', '2005-01-11', 8, 'https://www.gutenberg.org/ebooks/14666', 'nl', 1718), +(2471, 'At the Ghost Hour. The House of the Unbelieving Thomas', 'Heyse, Paul', '2010-10-22', 35, 'https://www.gutenberg.org/ebooks/33878', 'en', 803), +(2472, 'A History of the Ninth Regiment, Illinois Volunteer Infantry', 'Morrison, Marion', '2013-11-05', 6, 'https://www.gutenberg.org/ebooks/44116', 'en', 1489), +(2473, 'The Way We Live Now', 'Trollope, Anthony', '2004-03-01', 414, 'https://www.gutenberg.org/ebooks/5231', 'en', 1719), +(2474, 'A Compilation of the Messages and Papers of the Presidents. Volume 1, part 1: George Washington', NULL, '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/11314', 'en', 1720), +(2475, '花外集', 'Wang, Yisun', '2008-04-22', 11, 'https://www.gutenberg.org/ebooks/25121', 'zh', 1721), +(2476, 'Crécy', 'Belloc, Hilaire', '2010-05-01', 38, 'https://www.gutenberg.org/ebooks/32196', 'en', 1722), +(2477, 'Lords of the World: A story of the fall of Carthage and Corinth', 'Church, Alfred John', '2012-11-23', 17, 'https://www.gutenberg.org/ebooks/41464', 'en', 1723), +(2478, 'Birds from North Borneo\nUniversity of Kansas Publications, Museum of Natural History, Volume 17, No. 8, pp. 377-433, October 27, 1966', 'Thompson, Max C.', '2010-07-01', 26, 'https://www.gutenberg.org/ebooks/33044', 'en', 1724), +(2479, 'Index for Works of Robert W. Buchanan\nHyperlinks to all Chapters of all Individual Ebooks', 'Buchanan, Robert Williams', '2018-07-13', 6, 'https://www.gutenberg.org/ebooks/57501', 'en', 198), +(2480, 'Dramatized Readings: Recitations in Poetry and Prose, Illustrated with Tableaux\r\nPreston Library No. 1', 'Yendes, Lucy A.', '2017-03-18', 14, 'https://www.gutenberg.org/ebooks/54384', 'en', 1725), +(2481, 'Scientific American Supplement, No. 795, March 28, 1891', 'Various', '2004-09-12', 23, 'https://www.gutenberg.org/ebooks/13443', 'en', 210), +(2482, 'The 1999 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-31', 21, 'https://www.gutenberg.org/ebooks/27676', 'en', 1726), +(2483, 'The Lodger', 'Lowndes, Marie Belloc', '2005-03-13', 73, 'https://www.gutenberg.org/ebooks/2014', 'en', 1727), +(2484, 'Der 9. November: Roman', 'Kellermann, Bernhard', '2013-07-28', 13, 'https://www.gutenberg.org/ebooks/43333', 'de', 253), +(2485, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 2 (of 8)\r\nThe King\'s Threshold. On Baile\'s Strand. Deirdre. Shadowy Waters', 'Yeats, W. B. (William Butler)', '2015-08-05', 59, 'https://www.gutenberg.org/ebooks/49609', 'en', 1728), +(2486, 'Geschichte der Ilchane, das ist der Mongolen in Persien', 'Hammer-Purgstall, Joseph, Freiherr von', '2010-03-20', 19, 'https://www.gutenberg.org/ebooks/31713', 'de', 1729), +(2487, 'Kelly Miller\'s History of the World War for Human Rights', 'Miller, Kelly', '2006-09-04', 17, 'https://www.gutenberg.org/ebooks/19179', 'en', 1730), +(2488, 'Tiger and Tom and Other Stories for Boys', 'Various', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/12591', 'en', 388), +(2489, 'The Story of a Donkey\r\nabridged from the French of Madame la comtesse de Ségur', 'Ségur, Sophie, comtesse de', '2017-08-04', 20, 'https://www.gutenberg.org/ebooks/55256', 'en', 1731), +(2490, 'The Epic of Gilgamish\nA Fragment of the Gilgamish Legend in Old-Babylonian Cuneiform', 'Langdon, Stephen', '2006-07-23', 231, 'https://www.gutenberg.org/ebooks/18897', 'en', 1732), +(2491, 'Vanden Vos Reinaerde: Uitgegeven en Toegelicht', NULL, '2010-11-09', 14, 'https://www.gutenberg.org/ebooks/34261', 'nl', 1733), +(2492, 'Tom Swift and His Big Tunnel; Or, The Hidden City of the Andes', 'Appleton, Victor', '1997-06-01', 156, 'https://www.gutenberg.org/ebooks/953', 'en', 1456), +(2493, 'Sparky Ames of the Ferry Command', 'Snell, Roy J. (Roy Judson)', '2014-12-27', 22, 'https://www.gutenberg.org/ebooks/47793', 'en', 1734), +(2494, 'William Shakespeare: A Critical Study', 'Brandes, Georg', '2015-12-20', 14, 'https://www.gutenberg.org/ebooks/50724', 'en', 1735), +(2495, 'Under the Deodars', 'Kipling, Rudyard', '2001-09-01', 63, 'https://www.gutenberg.org/ebooks/2828', 'en', 1736), +(2496, 'Nicanor - Teller of Tales : A Story of Roman Britain', 'Taylor, C. Bryson', '2007-08-13', 16, 'https://www.gutenberg.org/ebooks/22304', 'en', 1737), +(2497, 'Campaign Pictures of the War in South Africa (1899-1900)\nLetters from the Front', 'Hales, A. G. (Alfred Greenwood)', '2005-06-25', 30, 'https://www.gutenberg.org/ebooks/16131', 'en', 1311), +(2498, 'Tent Work in Palestine: A Record of Discovery and Adventure', 'Conder, C. R. (Claude Reignier)', '2014-08-20', 16, 'https://www.gutenberg.org/ebooks/46641', 'en', 723), +(2499, 'Quotes and Images From Memoirs of Marguerite de Valois', 'Marguerite, Queen, consort of Henry IV, King of France', '2005-02-01', 19, 'https://www.gutenberg.org/ebooks/7566', 'en', 1026), +(2500, 'Bakemono Yashiki (The Haunted House), Retold from the Japanese Originals\r\nTales of the Tokugawa, Volume 2', 'De Benneville, James S. (James Seguin)', '2006-11-28', 37, 'https://www.gutenberg.org/ebooks/19945', 'en', 1738), +(2501, 'O odkryciach i wynalazkach\r\nOdczyt popularny wypowiedziany dnia 23 marca 1873 r.', 'Prus, Bolesław', '2009-11-05', 34, 'https://www.gutenberg.org/ebooks/30407', 'pl', 1739), +(2502, 'The Children\'s Hour, v 5. Stories From Seven Old Favorites', 'Tappan, Eva March', '2004-10-10', 38, 'https://www.gutenberg.org/ebooks/13685', 'en', 388), +(2503, 'English Lands, Letters and Kings, vol. 2: From Elizabeth to Anne', 'Mitchell, Donald Grant', '2017-02-09', 1, 'https://www.gutenberg.org/ebooks/54142', 'en', 1694), +(2504, 'Poésies érotiques', 'Parny, Évariste', '2008-09-08', 37, 'https://www.gutenberg.org/ebooks/26562', 'fr', 1740), +(2505, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 20, September 4, 1858', NULL, '2017-07-11', 7, 'https://www.gutenberg.org/ebooks/55090', 'en', 1741), +(2506, 'Vänrikki Stoolin tarinat (suom. Manninen)', 'Runeberg, Johan Ludvig', '2004-06-28', 8, 'https://www.gutenberg.org/ebooks/12757', 'fi', 1742), +(2507, 'The Girl in Her Teens', 'Slattery, Margaret', '2011-04-24', 33, 'https://www.gutenberg.org/ebooks/35949', 'en', 1743), +(2508, 'The Expositor\'s Bible: The Second Book of Kings', 'Farrar, F. W. (Frederic William)', '2013-02-05', 22, 'https://www.gutenberg.org/ebooks/42027', 'en', 1744), +(2509, 'An Inquiry into the Nature and Causes of the Wealth of Nations', 'Smith, Adam', '2002-06-01', 1747, 'https://www.gutenberg.org/ebooks/3300', 'en', 1745), +(2510, 'La comtesse de Rudolstadt', 'Sand, George', '2005-12-05', 49, 'https://www.gutenberg.org/ebooks/17225', 'fr', 298), +(2511, 'Gulmore, the Boss', 'Harris, Frank', '2007-10-12', 19, 'https://www.gutenberg.org/ebooks/23010', 'en', 61), +(2512, 'The Caesars', 'De Quincey, Thomas', '2004-10-01', 38, 'https://www.gutenberg.org/ebooks/6672', 'en', 1746), +(2513, 'The Wizard\'s Son, Vol. 1 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-06', 20, 'https://www.gutenberg.org/ebooks/47555', 'en', 1747), +(2514, 'Omaha sociology (1884 N 03 / 1881-1882 (pages 205-370))', 'Dorsey, James Owen', '2014-08-03', 10, 'https://www.gutenberg.org/ebooks/46487', 'en', 1748), +(2515, 'Algic Researches, Comprising Inquiries Respecting the Mental Characteristics of the North American Indians, First Series. Indian Tales and Legends, Vol. 2 of 2', 'Schoolcraft, Henry Rowe', '2011-02-05', 12, 'https://www.gutenberg.org/ebooks/35175', 'en', 1749), +(2516, 'Wahn und Ueberzeugung\r\nReise des Kupferschmiede-Meisters Friedrich Höhne in Weimar über Bremen nach Nordamerika und Texas in den Jahren 1839, 1840 und 1841.', 'Höhne, F. (Friedrich)', '2016-03-13', 11, 'https://www.gutenberg.org/ebooks/51430', 'de', 1750), +(2517, 'A Leap in the Dark\nA Criticism of the Principles of Home Rule as Illustrated by the\nBill of 1893', 'Dicey, Albert Venn', '2005-04-06', 124, 'https://www.gutenberg.org/ebooks/15572', 'en', 1751), +(2518, 'The Lonely Island: The Refuge of the Mutineers', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 46, 'https://www.gutenberg.org/ebooks/21747', 'en', 1752), +(2519, 'Diary of Samuel Pepys — Complete 1660 N.S.', 'Pepys, Samuel', '2004-10-31', 58, 'https://www.gutenberg.org/ebooks/4125', 'en', 201), +(2520, 'The Boy Scouts to the Rescue', 'Durston, George', '2014-03-24', 12, 'https://www.gutenberg.org/ebooks/45202', 'en', 1753), +(2521, 'Iermola', 'Kraszewski, Józef Ignacy', '2011-10-04', 11, 'https://www.gutenberg.org/ebooks/37622', 'en', 1676), +(2522, 'The Spirit of Sweetwater', 'Garland, Hamlin', '2007-02-27', 11, 'https://www.gutenberg.org/ebooks/20695', 'en', 1555), +(2523, 'Dik Trom en zijn Dorpsgenooten', 'Kieviet, Cornelis Johannes', '2016-10-25', 36, 'https://www.gutenberg.org/ebooks/53367', 'nl', 1754), +(2524, 'Noteworthy Records of Bats From Nicaragua, with a Checklist of the Chiropteran Fauna of the Country', 'Smith, James Dale', '2010-05-12', 7, 'https://www.gutenberg.org/ebooks/32350', 'en', 1755), +(2525, 'Musical Studies', 'Newman, Ernest', '2018-02-21', 27, 'https://www.gutenberg.org/ebooks/56615', 'en', 1756), +(2526, 'The Letters of Horace Walpole, Earl of Orford — Volume 4', 'Walpole, Horace', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/4919', 'en', 1757), +(2527, 'Mary Ware\'s Promised Land', 'Johnston, Annie F. (Annie Fellows)', '2008-01-10', 26, 'https://www.gutenberg.org/ebooks/24235', 'en', 51), +(2528, 'The Magna Carta', 'Anonymous', '2006-03-01', 194, 'https://www.gutenberg.org/ebooks/10000', 'en', 1758), +(2529, 'Christianity Unveiled\r\nBeing an Examination of the Principles and Effects of the Christian Religion', 'Holbach, Paul Henri Thiry, baron d\'', '2012-09-17', 20, 'https://www.gutenberg.org/ebooks/40770', 'en', 1759), +(2530, 'Mistress Wilding', 'Sabatini, Rafael', '1998-09-01', 66, 'https://www.gutenberg.org/ebooks/1457', 'en', 98), +(2531, 'The Boy Pilot of the Lakes; Or, Nat Morton\'s Perils', 'Webster, Frank V.', '2010-07-28', 27, 'https://www.gutenberg.org/ebooks/33282', 'en', 557), +(2532, 'Prophetia Ionae', 'Anonymous', '2003-08-01', 12, 'https://www.gutenberg.org/ebooks/4317', 'la', 1760), +(2533, 'A.B.C. of Snap Shooting: Sporting, Exhibition, and Military', 'Fletcher, Horace', '2014-02-27', 20, 'https://www.gutenberg.org/ebooks/45030', 'en', 1761), +(2534, 'The Great Round World and What Is Going On In It, Vol. 1, No. 33, June 24, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-01', 18, 'https://www.gutenberg.org/ebooks/15740', 'en', 1), +(2535, 'A History of Inland Transport and Communication in England', 'Pratt, Edwin A.', '2016-05-16', 8, 'https://www.gutenberg.org/ebooks/52087', 'en', 1762), +(2536, 'Poor Jack', 'Marryat, Frederick', '2007-05-22', 48, 'https://www.gutenberg.org/ebooks/21575', 'en', 1763), +(2537, 'Out and About London', 'Burke, Thomas', '2016-09-28', 18, 'https://www.gutenberg.org/ebooks/53155', 'en', 1764), +(2538, 'Portraits littéraires, Tome III', 'Sainte-Beuve, Charles Augustin', '2005-01-14', 20, 'https://www.gutenberg.org/ebooks/14692', 'fr', 1765), +(2539, 'Masters of French Music', 'Hervey, Arthur', '2011-09-12', 17, 'https://www.gutenberg.org/ebooks/37410', 'en', 1766), +(2540, 'Animal Locomotion; or, walking, swimming, and flying\r\nWith a dissertation on aëronautics', 'Pettigrew, James Bell', '2018-01-25', 8, 'https://www.gutenberg.org/ebooks/56427', 'en', 1767), +(2541, 'The Beasts in the Void', 'Fairman, Paul W.', '2010-04-28', 62, 'https://www.gutenberg.org/ebooks/32162', 'en', 26), +(2542, 'The Decadent: Being the Gospel of Inaction\r\nWherein Are Set Forth in Romance Form Certain Reflections Touching the Curious Characteristics of These Ultimate Years, and the Divers Causes Thereof', 'Cram, Ralph Adams', '2012-11-26', 15, 'https://www.gutenberg.org/ebooks/41490', 'en', 61), +(2543, 'The Baptist Magazine, Vol. 27, June 1835', 'Various', '2012-08-20', 14, 'https://www.gutenberg.org/ebooks/40542', 'en', 1768), +(2544, 'Derrick Vaughan, Novelist', 'Lyall, Edna', '1999-03-01', 8, 'https://www.gutenberg.org/ebooks/1665', 'en', 1769), +(2545, 'The Enemies of Women (Los enemigos de la mujer)', 'Blasco Ibáñez, Vicente', '2012-01-01', 49, 'https://www.gutenberg.org/ebooks/38458', 'en', 48), +(2546, 'Memoirs of the life, exile, and conversations of the Emperor Napoleon. (Vol. III)', 'Las Cases, Emmanuel-Auguste-Dieudonné, comte de', '2017-01-16', 11, 'https://www.gutenberg.org/ebooks/53969', 'en', 1770), +(2547, 'Psychologie des foules', 'Le Bon, Gustave', '2007-12-24', 86, 'https://www.gutenberg.org/ebooks/24007', 'fr', 1771), +(2548, 'Remarks from a Visit to Edison Laboratory', 'Miles, Nelson Appleton', '2003-11-01', 0, 'https://www.gutenberg.org/ebooks/10232', 'en', 1406), +(2549, 'What\'s What in America', 'Brewster, Eugene V. (Eugene Valentine)', '2017-03-16', 15, 'https://www.gutenberg.org/ebooks/54370', 'en', 517), +(2550, 'The Panchronicon', 'MacKaye, Harold Steele', '2009-01-01', 19, 'https://www.gutenberg.org/ebooks/27682', 'en', 26), +(2551, 'The Conquest of a Continent\nor, The Expansion of Races in America', 'Grant, Madison', '2019-08-21', 0, 'https://www.gutenberg.org/ebooks/60145', 'en', NULL), +(2552, 'By Water to the Columbian Exposition', 'Wisthaler, Johanna Sara', '2005-12-01', 28, 'https://www.gutenberg.org/ebooks/9408', 'en', 722), +(2553, 'The Talking Thrush, and Other Tales from India', 'Rouse, W. H. D. (William Henry Denham)', '2009-12-09', 46, 'https://www.gutenberg.org/ebooks/30635', 'en', 1772), +(2554, 'A Pilgrimage to Nejd, the Cradle of the Arab Race. Vol. 1 [of 2]\r\nA Visit to the Court of the Arab Emir, and \"our Persian Campaign.\"', 'Blunt, Anne, Lady', '2013-02-26', 21, 'https://www.gutenberg.org/ebooks/42215', 'en', 1773), +(2555, 'In the Wilderness', 'Warner, Charles Dudley', '2004-10-10', 20, 'https://www.gutenberg.org/ebooks/3132', 'en', 1774), +(2556, 'Memorial Address on the Life and Character of Abraham Lincoln\nDelivered at the request of both Houses of Congress of America', 'Bancroft, George', '2008-10-02', 19, 'https://www.gutenberg.org/ebooks/26750', 'en', 1716), +(2557, 'An Account of the English Colony in New South Wales, Volume 1\nWith Remarks on the Dispositions, Customs, Manners, Etc. of The\nNative Inhabitants of That Country. to Which Are Added, Some\nParticulars of New Zealand; Compiled, By Permission, From\nThe Mss. of Lieutenant-Governor King.', 'Collins, David', '2004-06-01', 64, 'https://www.gutenberg.org/ebooks/12565', 'en', 1775), +(2558, 'Tadarida femorosacca (Merriam) in Tamaulipas, Mexico', 'Dalquest, Walter Woelber', '2010-11-12', 11, 'https://www.gutenberg.org/ebooks/34295', 'en', 130), +(2559, 'The Loom of Youth', 'Waugh, Alec', '2006-07-18', 94, 'https://www.gutenberg.org/ebooks/18863', 'en', 1309), +(2560, 'Elsie Dinsmore', 'Finley, Martha', '2004-09-01', 121, 'https://www.gutenberg.org/ebooks/6440', 'en', 470), +(2561, 'The Propaganda for Reform in Proprietary Medicines, Vol. 2 of 2', 'Council on Pharmacy and Chemistry (American Medical Association)', '2014-12-24', 15, 'https://www.gutenberg.org/ebooks/47767', 'en', 1776), +(2562, 'The Life and Letters of Walter H. Page, Volume I', 'Hendrick, Burton Jesse', '2005-11-06', 17, 'https://www.gutenberg.org/ebooks/17017', 'en', 1777), +(2563, 'The Fête At Coqueville\n1907', 'Zola, Émile', '2007-10-27', 33, 'https://www.gutenberg.org/ebooks/23222', 'en', 61), +(2564, 'The Automobile Storage Battery: Its Care And Repair', 'Witte, Otto A.', '2009-08-17', 31, 'https://www.gutenberg.org/ebooks/29718', 'en', 1778), +(2565, 'Plumfieldin pojat', 'Alcott, Louisa May', '2016-03-30', 17, 'https://www.gutenberg.org/ebooks/51602', 'fi', 1779), +(2566, 'The Grand Canyon of Arizona: How to See It', 'James, George Wharton', '2011-02-21', 2, 'https://www.gutenberg.org/ebooks/35347', 'en', 1780), +(2567, 'The Caxtons: A Family Picture — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 5, 'https://www.gutenberg.org/ebooks/7592', 'en', 376), +(2568, 'Fire-making Apparatus in the U. S. National Museum', 'Hough, Walter', '2016-11-15', 14, 'https://www.gutenberg.org/ebooks/53531', 'en', 1781), +(2569, 'Μαλβίνα: Ρωμαντικό Μυθιστόρημα του 18ου αιώνος', 'Cottin, Madame (Sophie)', '2012-02-10', 22, 'https://www.gutenberg.org/ebooks/38800', 'el', 1782), +(2570, 'Diplomatic Days', 'O\'Shaughnessy, Edith', '2014-01-04', 18, 'https://www.gutenberg.org/ebooks/44586', 'en', 1783), +(2571, 'Neghborly Poems and Dialect Sketches', 'Riley, James Whitcomb', '2011-08-14', 29, 'https://www.gutenberg.org/ebooks/37074', 'en', 1784), +(2572, 'The Letters of Horace Walpole, Earl of Orford — Volume 3', 'Walpole, Horace', '2003-12-01', 25, 'https://www.gutenberg.org/ebooks/4773', 'en', 1785), +(2573, 'Gun running for Casement in the Easter rebellion, 1916', 'Spindler, Karl', '2014-04-22', 29, 'https://www.gutenberg.org/ebooks/45454', 'en', 1786), +(2574, 'Promenades et intérieurs', 'Coppée, François', '2005-03-11', 18, 'https://www.gutenberg.org/ebooks/15324', 'fr', 8), +(2575, 'Wild Nature Won By Kindness', 'Brightwen, Mrs. (Eliza Elder)', '2007-04-16', 41, 'https://www.gutenberg.org/ebooks/21111', 'en', 1787), +(2576, 'The Cock and Anchor', 'Le Fanu, Joseph Sheridan', '2012-07-02', 36, 'https://www.gutenberg.org/ebooks/40126', 'en', 1788), +(2577, 'An Essay on the Trial By Jury', 'Spooner, Lysander', '1998-02-01', 36, 'https://www.gutenberg.org/ebooks/1201', 'en', 1789), +(2578, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 01 (de 12)', 'Castelo Branco, Camilo', '2008-01-31', 29, 'https://www.gutenberg.org/ebooks/24463', 'pt', 410), +(2579, 'A Collection of Old English Plays, Volume 2', NULL, '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10656', 'en', 1790), +(2580, 'Old English Chronicles', NULL, '2011-10-25', 55, 'https://www.gutenberg.org/ebooks/37848', 'en', 1667), +(2581, 'Ornithological Biography, Volume 2 (of 5)\nAn Account of the Habits of the Birds of the United States of America', 'Audubon, John James', '2018-05-21', 8, 'https://www.gutenberg.org/ebooks/57191', 'en', 1333), +(2582, 'Rock-climbing in the English Lake District\nThird Edition', 'Jones, Owen Glynne', '2017-11-24', 100, 'https://www.gutenberg.org/ebooks/56043', 'en', 1791), +(2583, 'Human Genome Project, Build 34, Chromosome Number 10', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11784', 'en', 1385), +(2584, 'Notes and Queries, Number 228, March 11, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-05-24', 7, 'https://www.gutenberg.org/ebooks/32506', 'en', 105), +(2585, 'The Book Review Digest, Volume 02, 1906\r\n[Annual Cumulation] Book Reviews of 1906 in One Alphabet', 'Various', '2019-06-30', 36, 'https://www.gutenberg.org/ebooks/59837', 'en', 1053), +(2586, 'A Plain and Easie Method for Preserving (by God\'s Blessing) Those That Are Well from the Infection of the Plague, or Any Contagious Distemper, in City, Camp, Fleet, Etc., and for Curing Such as Are Infected with It.', 'Willis, Thomas', '2015-06-27', 5, 'https://www.gutenberg.org/ebooks/49299', 'en', 1792), +(2587, 'Pride and Prejudice', 'Austen, Jane', '2013-05-09', 1238, 'https://www.gutenberg.org/ebooks/42671', 'en', 500), +(2588, 'Memoirs of Napoleon Bonaparte — Volume 06', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 11, 'https://www.gutenberg.org/ebooks/3556', 'en', 1770), +(2589, 'The Industrial Canal and Inner Harbor of New Orleans\r\nHistory, Description and Economic Aspects of Giant Facility Created to Encourage Industrial Expansion and Develop Commerce', 'Dabney, Thomas Ewing', '2010-02-25', 29, 'https://www.gutenberg.org/ebooks/31383', 'en', 1793), +(2590, 'The Map of Life\nConduct and Character', 'Lecky, William Edward Hartpole', '2008-08-16', 22, 'https://www.gutenberg.org/ebooks/26334', 'en', 1794), +(2591, 'A Social History of the American Negro\r\nBeing a History of the Negro Problem in the United States. Including A History and Study of the Republic of Liberia', 'Brawley, Benjamin Griffith', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/12101', 'en', 1795), +(2592, 'Valéries duenna: En roman på g-strängen', 'Francis, M. E.', '2017-05-13', 8, 'https://www.gutenberg.org/ebooks/54714', 'sv', 1079), +(2593, 'The Arctic Prairies : a Canoe-Journey of 2,000 Miles in Search of the Caribou;\r\nBeing the Account of a Voyage to the Region North of Aylemer Lake', 'Seton, Ernest Thompson', '2004-11-01', 51, 'https://www.gutenberg.org/ebooks/6818', 'en', 1796), +(2594, 'The Boys\' and Girls\' Plutarch\r\nBeing Parts of the \"Lives\" of Plutarch, Edited for Boys and Girls', 'Plutarch', '2001-01-01', 84, 'https://www.gutenberg.org/ebooks/2484', 'en', 1797), +(2595, 'Disqualified', 'Fontenay, Charles L.', '2009-10-14', 57, 'https://www.gutenberg.org/ebooks/30251', 'en', 26), +(2596, 'The Shellback\'s Progress\nIn the Nineteenth Century', 'Runciman, Walter Runciman, Baron', '2007-09-28', 3, 'https://www.gutenberg.org/ebooks/22794', 'en', 324), +(2597, 'Around the World in Eighty Days', 'Verne, Jules', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8982', 'en', 1158), +(2598, 'Œuvres complètes de Guy de Maupassant - volume 06', 'Maupassant, Guy de', '2016-02-22', 26, 'https://www.gutenberg.org/ebooks/51266', 'fr', 642), +(2599, 'Artist and Model (The Divorced Princess)', 'Pont-Jest, René de', '2011-03-30', 12, 'https://www.gutenberg.org/ebooks/35723', 'en', 109), +(2600, 'The Duke of Gandia', 'Swinburne, Algernon Charles', '2004-07-01', 4, 'https://www.gutenberg.org/ebooks/6024', 'en', 1798), +(2601, 'Historical Parallels, vol. 2 of 3)', 'Malkin, Arthur Thomas', '2014-11-06', 10, 'https://www.gutenberg.org/ebooks/47303', 'en', 1799), +(2602, 'The Lyric: An Essay', 'Drinkwater, John', '2006-02-01', 9, 'https://www.gutenberg.org/ebooks/9850', 'en', 1800), +(2603, 'Przyjaciel Dziatek\nWierszyki dla — Dziatwy Polskiej w Ameryce', 'Wachtl, Karol', '2006-01-07', 14, 'https://www.gutenberg.org/ebooks/17473', 'pl', 1801), +(2604, 'The Pharaoh and the Priest: An Historical Novel of Ancient Egypt', 'Prus, Bolesław', '2007-11-28', 66, 'https://www.gutenberg.org/ebooks/23646', 'en', 1802), +(2605, 'U.S. Patent 4,293,314: Gelled Fuel-Air Explosive\nOctober 6, 1981.', 'Stull, Bertram O.', '2008-07-22', 8, 'https://www.gutenberg.org/ebooks/26106', 'en', 1803), +(2606, 'The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose \r\nVana Parva, Part 2', NULL, '2004-05-01', 46, 'https://www.gutenberg.org/ebooks/12333', 'en', 1804), +(2607, 'Vadertje Langbeen', 'Webster, Jean', '2013-03-31', 11, 'https://www.gutenberg.org/ebooks/42443', 'nl', 1779), +(2608, 'The Fathers of Confederation: A Chronicle of the Birth of the Dominion', 'Colquhoun, A. H. U. (Arthur Hugh Urquhart)', '2009-09-13', 22, 'https://www.gutenberg.org/ebooks/29972', 'en', 1805), +(2609, 'Coniston — Volume 03', 'Churchill, Winston', '2004-10-17', 13, 'https://www.gutenberg.org/ebooks/3764', 'en', 539), +(2610, 'The Troublemakers', 'Smith, George O. (George Oliver)', '2016-04-26', 48, 'https://www.gutenberg.org/ebooks/51868', 'en', 26), +(2611, 'Double Take', 'Wilson, Richard', '2009-09-22', 40, 'https://www.gutenberg.org/ebooks/30063', 'en', 26), +(2612, 'A Manual of the Hand Lathe\r\nComprising Concise Directions for Working Metals of All Kinds, Ivory, Bone and Precious Woods', 'Watson, Egbert P. (Egbert Pomeroy)', '2015-02-06', 46, 'https://www.gutenberg.org/ebooks/48179', 'en', 1806), +(2613, 'The Life of Ludwig van Beethoven, Volume I', 'Thayer, Alexander Wheelock', '2013-08-29', 73, 'https://www.gutenberg.org/ebooks/43591', 'en', 1807), +(2614, 'Religious Poems, Selected', 'Various', '2017-04-10', 19, 'https://www.gutenberg.org/ebooks/54526', 'en', 1808), +(2615, 'Hark! The Herald Angels Sing', 'Mendelssohn-Bartholdy, Felix', '2006-06-17', 13, 'https://www.gutenberg.org/ebooks/18609', 'en', 583), +(2616, 'Working Women of Japan', 'Gulick, Sidney Lewis', '2011-03-07', 17, 'https://www.gutenberg.org/ebooks/35511', 'en', 1809), +(2617, 'The Gravity Business', 'Gunn, James E.', '2015-09-06', 45, 'https://www.gutenberg.org/ebooks/49897', 'en', 616); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(2618, 'The River and I', 'Neihardt, John G.', '2005-10-03', 22, 'https://www.gutenberg.org/ebooks/16793', 'en', 1810), +(2619, 'The Wolf-Leader', 'Dumas, Alexandre', '2016-01-27', 75, 'https://www.gutenberg.org/ebooks/51054', 'en', 1811), +(2620, 'Brigadier Frederick; and, The Dean\'s Watch', 'Erckmann-Chatrian', '2015-10-11', 7, 'https://www.gutenberg.org/ebooks/50186', 'en', 58), +(2621, 'La monadologie (1909)\navec étude et notes de Clodius Piat', 'Leibniz, Gottfried Wilhelm, Freiherr von', '2006-01-30', 39, 'https://www.gutenberg.org/ebooks/17641', 'fr', 1812), +(2622, 'The Bishop\'s Secret', 'Hume, Fergus', '2007-11-14', 91, 'https://www.gutenberg.org/ebooks/23474', 'en', 128), +(2623, 'Gloria (segunda parte)', 'Pérez Galdós, Benito', '2015-05-12', 33, 'https://www.gutenberg.org/ebooks/48945', 'es', 1813), +(2624, 'The Pomp of the Lavilettes, Volume 2', 'Parker, Gilbert', '2004-08-01', 16, 'https://www.gutenberg.org/ebooks/6216', 'en', 1219), +(2625, 'Le paravent de soie et d\'or', 'Gautier, Judith', '2014-10-16', 24, 'https://www.gutenberg.org/ebooks/47131', 'fr', 100), +(2626, 'Why I am opposed to socialism', NULL, '2011-08-29', 14, 'https://www.gutenberg.org/ebooks/37246', 'en', 254), +(2627, 'The Emperor — Complete', 'Ebers, Georg', '2004-11-15', 29, 'https://www.gutenberg.org/ebooks/5493', 'en', 1814), +(2628, 'Pohjalla: Kuvaelmia, neljä näytöstä', 'Gorky, Maksim', '2016-12-09', 13, 'https://www.gutenberg.org/ebooks/53703', 'fi', 1815), +(2629, 'The Jervaise Comedy', 'Beresford, J. D. (John Davys)', '2005-02-20', 11, 'https://www.gutenberg.org/ebooks/15116', 'en', 61), +(2630, 'The Flying Inn', 'Chesterton, G. K. (Gilbert Keith)', '2019-04-10', 161, 'https://www.gutenberg.org/ebooks/59239', 'en', 580), +(2631, 'What the Church Means to Me\nA Frank Confession and a Friendly Estimate by an Insider', 'Grenfell, Wilfred Thomason, Sir', '2007-05-04', 16, 'https://www.gutenberg.org/ebooks/21323', 'en', 1816), +(2632, 'La femme auteur; ou, les inconvéniens de la célébrité, tome I', 'Dufrénoy, Mme.', '2011-06-12', 7, 'https://www.gutenberg.org/ebooks/36394', 'fr', 61), +(2633, 'The Crown of Life', 'Gissing, George', '2003-10-01', 27, 'https://www.gutenberg.org/ebooks/4541', 'en', 45), +(2634, 'Little Peter: A Christmas Morality for Children of any Age', 'Malet, Lucas', '2014-05-16', 5, 'https://www.gutenberg.org/ebooks/45666', 'en', 1817), +(2635, 'Old Times at Otterbourne', 'Yonge, Charlotte M. (Charlotte Mary)', '2008-02-19', 14, 'https://www.gutenberg.org/ebooks/24651', 'en', 1818), +(2636, 'A Child\'s Anti-Slavery Book\nContaining a Few Words about American Slave Children and Stories\nof Slave-Life.', 'Various', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/10464', 'en', 1819), +(2637, 'Yester und Li: Die Geschichte einer Sehnsucht', 'Kellermann, Bernhard', '2012-07-24', 7, 'https://www.gutenberg.org/ebooks/40314', 'de', 253), +(2638, 'Rose o\' the River', 'Wiggin, Kate Douglas Smith', '1997-09-01', 27, 'https://www.gutenberg.org/ebooks/1033', 'en', 48), +(2639, 'Fly By Night', 'Savage, Arthur Dekker', '2010-06-07', 38, 'https://www.gutenberg.org/ebooks/32734', 'en', 616), +(2640, 'Municipal Housecleaning\r\nThe Methods and Experiences of American Cities in Collecting and Disposing of Their Municipal Wastes—Ashes, Rubbish, Garbage, Manure, Sewage, and Street Refuse', 'Carpenter, Jeanne Daniels', '2017-12-31', 11, 'https://www.gutenberg.org/ebooks/56271', 'en', 1820), +(2641, 'Experimentelle Untersuchungen über die Frage »Ist die Furcht vor Krankheitsübertragung durch das Telephon berechtigt«?\r\nInaugural-Dissertation zur Erlangung der Doktorwürde in der Medizin, Chirurgie und Geburtshülfe der Hohen Medizinischen Fakultät der Königlichen Universität Greifswald', 'Weiss, Carl', '2008-06-14', 28, 'https://www.gutenberg.org/ebooks/25783', 'de', 1821), +(2642, 'Church work among the Negroes in the South\nThe Hale Memorial Sermon No. 2', 'Strange, Robert', '2008-12-29', 7, 'https://www.gutenberg.org/ebooks/27649', 'en', 1822), +(2643, 'The Republic', 'Plato', '1994-07-01', 357, 'https://www.gutenberg.org/ebooks/150', 'en', 104), +(2644, 'History of the Girondists, Volume I\nPersonal Memoirs of the Patriots of the French Revolution', 'Lamartine, Alphonse de', '2006-04-01', 33, 'https://www.gutenberg.org/ebooks/18094', 'en', 1823), +(2645, 'The Religious Life of the Zuñi Child', 'Stevenson, Matilda Coxe Evans', '2005-10-24', 20, 'https://www.gutenberg.org/ebooks/16932', 'en', 1824), +(2646, 'The Three Cities Trilogy: Lourdes, Volume 1', 'Zola, Émile', '2005-07-01', 17, 'https://www.gutenberg.org/ebooks/8511', 'en', 1825), +(2647, 'Satiro-Mastix; or, the Vntrussing of the Humorous Poet', 'Dekker, Thomas', '2015-08-06', 9, 'https://www.gutenberg.org/ebooks/49636', 'en', 1826), +(2648, 'The Entailed Hat; Or, Patty Cannon\'s Times', 'Townsend, George Alfred', '2006-08-30', 33, 'https://www.gutenberg.org/ebooks/19146', 'en', 1827), +(2649, 'A Description of the Famous Kingdome of Macaria\r\nShewing its Excellent Government: Wherein The Inhabitants Live in Great Prosperity, Health and Happinesse; the King Obeyed, the Nobles Honoured; and All Good Men Respected, Vice Punished, and Vertue Rewarded', 'Plattes, Gabriel', '2017-08-05', 11, 'https://www.gutenberg.org/ebooks/55269', 'en', 1828), +(2650, 'The Christian Foundation, Or, Scientific and Religious Journal, June, 1880', 'Various', '2009-04-25', 9, 'https://www.gutenberg.org/ebooks/28601', 'en', 1829), +(2651, 'Chamber Music', 'Joyce, James', '2001-09-01', 132, 'https://www.gutenberg.org/ebooks/2817', 'en', 1830), +(2652, 'Quotes and Images from Memoirs of the Court of St. Cloud', 'Goldsmith, Lewis', '2005-02-01', 14, 'https://www.gutenberg.org/ebooks/7559', 'en', 1026), +(2653, 'Masters of the Wheat-Lands', 'Bindloss, Harold', '2008-06-28', 13, 'https://www.gutenberg.org/ebooks/25922', 'en', 847), +(2654, 'The Higher Court', 'Daggett, Mary Stewart', '2011-06-25', 35, 'https://www.gutenberg.org/ebooks/36509', 'en', 1831), +(2655, 'Our Caughnawagas in Egypt\r\na narrative of what was seen and accomplished by the contingent of North American Indian voyageurs who led the British boat Expedition for the Relief of Khartoum up the Cataracts of the Nile.', 'Jackson, Louis', '2010-06-27', 7, 'https://www.gutenberg.org/ebooks/32995', 'en', 1832), +(2656, 'Fifty Years a Detective: 35 Real Detective Stories', 'Furlong, Thomas', '2018-12-31', 108, 'https://www.gutenberg.org/ebooks/58576', 'en', 1833), +(2657, 'Muslin', 'Moore, George', '2005-01-10', 30, 'https://www.gutenberg.org/ebooks/14659', 'en', 669), +(2658, 'The History of Cuba, vol. 1', 'Johnson, Willis Fletcher', '2010-10-08', 90, 'https://www.gutenberg.org/ebooks/33847', 'en', 995), +(2659, 'Fair Haven and Foul Strand', 'Strindberg, August', '2013-11-08', 17, 'https://www.gutenberg.org/ebooks/44129', 'en', 1834), +(2660, 'Donna Paola', 'Serao, Matilde', '2012-04-26', 76, 'https://www.gutenberg.org/ebooks/39541', 'it', 474), +(2661, 'Sigrid Liljeholm: Roman', 'Runeberg, Fredrika Charlotta Tengström', '2016-08-21', 3, 'https://www.gutenberg.org/ebooks/52870', 'sv', 1835), +(2662, 'Jess: Épisode de la guerre du Transvaal', 'Haggard, H. Rider (Henry Rider)', '2012-01-04', 18, 'https://www.gutenberg.org/ebooks/38493', 'fr', 1226), +(2663, 'A Brief History of Wood-engraving from Its Invention', 'Cundall, Joseph', '2012-08-27', 10, 'https://www.gutenberg.org/ebooks/40589', 'en', 1836), +(2664, 'Margaret Brown\'s French Cookery Book', 'Brown, Margaret', '2014-02-15', 28, 'https://www.gutenberg.org/ebooks/44915', 'en', 1369), +(2665, 'Cuba', 'Deckert, Emil', '2019-06-07', 12, 'https://www.gutenberg.org/ebooks/59696', 'de', 995), +(2666, 'Elementare Arithmetik und Algebra', 'Schubert, Hermann', '2004-04-06', 32, 'https://www.gutenberg.org/ebooks/11925', 'de', 1044), +(2667, 'Money is the Root of All Good', 'Wilkins, Patrick', '2019-01-21', 20, 'https://www.gutenberg.org/ebooks/58744', 'en', 1564), +(2668, 'Home-made Toys for Girls and Boys\nWooden and Cardboard Toys, Mechanical and Electric Toys', 'Hall, A. Neely (Albert Neely)', '2012-12-20', 93, 'https://www.gutenberg.org/ebooks/41669', 'en', 1837), +(2669, 'Juvenile Styles: Original Designs for Infants and Juveniles, Volume 4', 'Hoyer, Mary', '2012-05-23', 47, 'https://www.gutenberg.org/ebooks/39773', 'en', 1016), +(2670, 'Personal Memoirs of a Residence of Thirty Years with the Indian Tribes on the American Frontiers', 'Schoolcraft, Henry Rowe', '2004-02-01', 48, 'https://www.gutenberg.org/ebooks/11119', 'en', 1838), +(2671, 'The Marvelous Exploits of Paul Bunyan\r\nAs Told in the Camps of the White Pine Lumbermen for Generations During Which Time the Loggers Have Pioneered the Way Through the North Woods From Maine to California. Collected from Various Sources and Embellished for Publication', 'Laughead, William B.', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/5800', 'en', 1839), +(2672, 'Romanesque Art in Southern Manche: Album', 'Lebert, Marie', '2010-07-24', 11, 'https://www.gutenberg.org/ebooks/33249', 'en', 1840), +(2673, 'Human Genome Project, rough draft, Chromosome Number 19', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2219', 'en', 1841), +(2674, 'Signal in the Dark', 'Wirt, Mildred A. (Mildred Augustine)', '2011-01-04', 21, 'https://www.gutenberg.org/ebooks/34850', 'en', 1842), +(2675, 'Latvia & Russia: One problem of the world-peace considered', 'Bergs, Arveds', '2017-02-18', 3, 'https://www.gutenberg.org/ebooks/54189', 'en', 1843), +(2676, 'Miss Billy\'s Decision', 'Porter, Eleanor H. (Eleanor Hodgman)', '2008-07-11', 59, 'https://www.gutenberg.org/ebooks/362', 'en', 48), +(2677, 'A ultima ceia do Doutor Fausto', 'Pimentel, Alberto', '2011-04-27', 19, 'https://www.gutenberg.org/ebooks/35982', 'pt', 61), +(2678, 'Valkaman perhe', 'Lajula, Osmo', '2006-09-25', 6, 'https://www.gutenberg.org/ebooks/19374', 'fi', 61), +(2679, 'The Three Cities Trilogy: Rome, Volume 3', 'Zola, Émile', '2005-08-01', 4, 'https://www.gutenberg.org/ebooks/8723', 'en', 1314), +(2680, 'Kuolleet sielut', 'Gogol, Nikolai Vasilevich', '2015-07-09', 22, 'https://www.gutenberg.org/ebooks/49404', 'fi', 637), +(2681, 'The Second Epistle of John', 'John, the Apostle, Saint', '2007-10-01', 7, 'https://www.gutenberg.org/ebooks/22935', 'en', 1844), +(2682, 'Richard II\nMakers of History', 'Abbott, Jacob', '2009-03-29', 52, 'https://www.gutenberg.org/ebooks/28433', 'en', 1845), +(2683, 'Maring (Dangal at Lakas): Ulirang Buhay Tagalog', 'Tolentino, Aurelio', '2013-10-06', 12, 'https://www.gutenberg.org/ebooks/43902', 'tl', 1846), +(2684, 'Der sächsische Prinzenraub nach älteren und neueren Quellen\r\nnebst einer Beschreibung des zu dessen Erinnerung errichteten Denkmals und des zu seinem Schutz erbauten Köhlerhauses am Fürstenberge bei Grünhain', 'Anonymous', '2015-11-22', 19, 'https://www.gutenberg.org/ebooks/50529', 'de', 1847), +(2685, 'The Life and Adventures of Rear-Admiral John Paul Jones, Commonly Called Paul Jones', 'Abbott, John S. C. (John Stevens Cabot)', '2017-11-01', 13, 'https://www.gutenberg.org/ebooks/55867', 'en', 1848), +(2686, 'The Black Wolf Pack', 'Beard, Daniel Carter', '2007-07-19', 35, 'https://www.gutenberg.org/ebooks/22109', 'en', 1849), +(2687, 'An Egyptian Princess — Volume 09', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5458', 'en', 1802), +(2688, 'The Three Brothers; vol. 1/3', 'Oliphant, Mrs. (Margaret)', '2018-11-22', 8, 'https://www.gutenberg.org/ebooks/58320', 'en', 400), +(2689, 'Apotti Tigrane', 'Fabre, Ferdinand', '2018-06-21', 8, 'https://www.gutenberg.org/ebooks/57368', 'fi', 1850), +(2690, 'Varney the Vampire; Or, the Feast of Blood', 'Rymer, James Malcolm', '2005-01-29', 331, 'https://www.gutenberg.org/ebooks/14833', 'en', 561), +(2691, 'Hauskoja hetkiä', 'Berczik, Árpád', '2012-03-31', 12, 'https://www.gutenberg.org/ebooks/39317', 'fi', 179), +(2692, 'Zeta Exchange: A Terran Empire story', 'Wilson, Ann', '2008-06-09', 14, 'https://www.gutenberg.org/ebooks/25748', 'en', 26), +(2693, 'The Red Horizon', 'MacGill, Patrick', '2006-11-04', 27, 'https://www.gutenberg.org/ebooks/19710', 'en', 1851), +(2694, 'Gypsy Flight\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2014-09-09', 20, 'https://www.gutenberg.org/ebooks/46814', 'en', 557), +(2695, 'The Bible, Douay-Rheims, Book 47: Matthew\nThe Challoner Revision', NULL, '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8347', 'en', 228), +(2696, 'The Walcott Twins', 'Lovell, Lucile', '2015-05-27', 11, 'https://www.gutenberg.org/ebooks/49060', 'en', 309), +(2697, 'The Expositor\'s Bible: The Psalms, Vol. 2\r\nPsalms XXXIX.-LXXXIX.', 'Maclaren, Alexander', '2013-04-09', 24, 'https://www.gutenberg.org/ebooks/42488', 'en', 1852), +(2698, 'The Problem Makers', 'Hoskins, Robert', '2016-01-19', 18, 'https://www.gutenberg.org/ebooks/50971', 'en', 26), +(2699, 'A Night Out', 'Peple, Edward', '2005-11-01', 17, 'https://www.gutenberg.org/ebooks/9295', 'en', 1853), +(2700, 'The Amateur Cracksman', 'Hornung, E. W. (Ernest William)', '1996-11-01', 255, 'https://www.gutenberg.org/ebooks/706', 'en', 1854), +(2701, 'Leaves from My Journal: Third Book of the Faith-Promoting Series\r\nDesigned for the Instruction and Encouragement of Young Latter-Day Saints', 'Woodruff, Wilford', '2014-06-19', 20, 'https://www.gutenberg.org/ebooks/46028', 'en', 1855), +(2702, 'Le Salon des Refusés: Le Peinture en 1863', 'Desnoyers, Fernand', '2005-09-26', 35, 'https://www.gutenberg.org/ebooks/16758', 'fr', 1856), +(2703, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 20, September, 1877.', 'Various', '2010-04-11', 18, 'https://www.gutenberg.org/ebooks/31946', 'en', 162), +(2704, 'National Strategy for Combating Terrorism\nFebruary 2003', 'United States. Executive Office of the President', '2009-06-21', 20, 'https://www.gutenberg.org/ebooks/29185', 'en', 1857), +(2705, 'Highways and Byways in Surrey', 'Parker, Eric', '2009-02-12', 21, 'https://www.gutenberg.org/ebooks/28057', 'en', 1858), +(2706, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 23', 'Stevenson, Robert Louis', '2010-01-08', 27, 'https://www.gutenberg.org/ebooks/30894', 'en', 1859), +(2707, 'Little Folks (November 1884)\nA Magazine for the Young', 'Various', '2009-01-17', 39, 'https://www.gutenberg.org/ebooks/27823', 'en', 1860), +(2708, 'Library of the World\'s Best Literature, Ancient and Modern, Vol. 13', NULL, '2010-11-23', 25, 'https://www.gutenberg.org/ebooks/34408', 'en', 19), +(2709, 'La Mirinda Sorĉisto de Oz', 'Baum, L. Frank (Lyman Frank)', '2010-02-22', 66, 'https://www.gutenberg.org/ebooks/31348', 'eo', 1861), +(2710, 'Kéraban-Le-Têtu, Volume II', 'Verne, Jules', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8175', 'fr', 1862), +(2711, 'Hawkins Electrical Guide v. 06 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-06-21', 28, 'https://www.gutenberg.org/ebooks/49252', 'en', 1863), +(2712, 'American Historical and Literary Curiosities, Part 01', 'Smith, J. Jay (John Jay)', '2004-07-14', 17, 'https://www.gutenberg.org/ebooks/7901', 'en', 453), +(2713, 'Tom Slade at Temple Camp', 'Fitzhugh, Percy Keese', '2006-10-10', 26, 'https://www.gutenberg.org/ebooks/19522', 'en', 1864), +(2714, 'The Letters of Elizabeth Barrett Browning (Volume 1 of 2)', 'Browning, Elizabeth Barrett', '2004-07-25', 28, 'https://www.gutenberg.org/ebooks/13018', 'en', 1865), +(2715, 'An Inland Voyage', 'Stevenson, Robert Louis', '1996-05-01', 150, 'https://www.gutenberg.org/ebooks/534', 'en', 1117), +(2716, 'Kalevala (1835) 1. Osa\ntaikka Wanhoja Karjalan Runoja Suomen kansan muinosista ajoista', 'Lönnrot, Elias', '2015-02-28', 43, 'https://www.gutenberg.org/ebooks/48380', 'fi', 1171), +(2717, 'The Quiver, 1/1900', 'Anonymous', '2013-09-20', 11, 'https://www.gutenberg.org/ebooks/43768', 'en', 1866), +(2718, 'Rampolli', 'MacDonald, George', '2005-09-01', 20, 'https://www.gutenberg.org/ebooks/8949', 'en', 1867), +(2719, 'The National Preacher, Vol. 2 No. 7 Dec. 1827\nOr Original Monthly Sermons from Living Ministers, Sermons XXVI. and\nXXVII.', 'Baldwin, Elihu W. (Elihu Whittlesey)', '2004-10-21', 14, 'https://www.gutenberg.org/ebooks/13824', 'en', 1868), +(2720, 'Harper\'s Young People, December 23, 1879\nAn Illustrated Weekly', 'Various', '2009-03-06', 29, 'https://www.gutenberg.org/ebooks/28265', 'en', 479), +(2721, 'Report of the Cromer Ladies\' Bible Association, 1838', 'Cromer Ladies\' Bible Association', '2018-10-16', 6, 'https://www.gutenberg.org/ebooks/58112', 'en', 1869), +(2722, 'The Young Duke', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-12-03', 28, 'https://www.gutenberg.org/ebooks/20008', 'en', 1238), +(2723, 'Index of the Project Gutenberg Works of Thackeray', 'Thackeray, William Makepeace', '2018-09-24', 11, 'https://www.gutenberg.org/ebooks/57966', 'en', 198), +(2724, 'Joan of the Sword Hand', 'Crockett, S. R. (Samuel Rutherford)', '2013-01-08', 14, 'https://www.gutenberg.org/ebooks/41803', 'en', 195), +(2725, 'Mémoires touchant la vie et les écrits de Marie de Rabutin-Chantal, (5/6)', 'Walckenaer, C. A. (Charles Athanase)', '2016-06-28', 4, 'https://www.gutenberg.org/ebooks/52428', 'fr', 1870), +(2726, 'Petersburg', 'Bely, Andrey', '2012-06-05', 54, 'https://www.gutenberg.org/ebooks/39919', 'de', 1871), +(2727, 'Ruth Fielding at the War Front; or, The Hunt for the Lost Soldier', 'Emerson, Alice B.', '2007-03-16', 24, 'https://www.gutenberg.org/ebooks/20834', 'en', 1310), +(2728, 'Steve P. Holcombe, the Converted Gambler: His Life and Work', 'Alexander, Gross', '2011-10-30', 11, 'https://www.gutenberg.org/ebooks/37883', 'en', 1872), +(2729, 'John Marshall', 'Thayer, James Bradley', '2017-11-30', 11, 'https://www.gutenberg.org/ebooks/56088', 'en', 1873), +(2730, 'Jock of the Bushveld', 'Fitzpatrick, Percy', '2011-08-02', 38, 'https://www.gutenberg.org/ebooks/36951', 'en', 1874), +(2731, 'Maggie\'s Wish', 'Anderson, Marilyn D.', '2012-03-13', 22, 'https://www.gutenberg.org/ebooks/39125', 'en', 1287), +(2732, 'Hamleto, Reĝido de Danujo', 'Shakespeare, William', '2011-08-31', 54, 'https://www.gutenberg.org/ebooks/37279', 'eo', 1875), +(2733, 'Wyndham Towers', 'Aldrich, Thomas Bailey', '1999-07-01', 4, 'https://www.gutenberg.org/ebooks/1830', 'en', 8), +(2734, 'Ang Singsing nang Dalagang Marmol', 'Reyes y Florentino, Isabelo de los', '2005-02-21', 41, 'https://www.gutenberg.org/ebooks/15129', 'tl', 98), +(2735, 'The Story of Spanish Painting', 'Caffin, Charles H. (Charles Henry)', '2019-04-04', 16, 'https://www.gutenberg.org/ebooks/59206', 'en', 1876), +(2736, 'Girls New and Old', 'Meade, L. T.', '2014-05-16', 54, 'https://www.gutenberg.org/ebooks/45659', 'en', 1877), +(2737, 'Arguments before the Committee on Patents of the House of Representatives, on H. R. 11943, to Amend Title 60, Chapter 3, of the Revised Statutes of the United States Relating to Copyrights\nMay 2, 1906.', 'United States. Congress. House. Committee on Patents', '2011-12-06', 9, 'https://www.gutenberg.org/ebooks/38231', 'en', 1878), +(2738, 'The Tales of Hoffmann\nLes contes d\'Hoffmann', 'Offenbach, Jacques', '2005-05-27', 53, 'https://www.gutenberg.org/ebooks/15915', 'en', 1879), +(2739, 'Le Docteur Ox', 'Verne, Jules', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11589', 'fr', 1791), +(2740, 'Ontario Teachers\' Manuals: Nature Study', 'Ontario. Department of Education', '2008-07-28', 7, 'https://www.gutenberg.org/ebooks/26139', 'en', 1880), +(2741, 'La vera cuciniera genovese\r\nfacile ed economica, ossia maniera di preparare e cuocere ogni sorta di vivande all\'usanza di Genova', 'Rossi, Emanuele', '2016-04-25', 77, 'https://www.gutenberg.org/ebooks/51857', 'it', 1881), +(2742, 'Kertomuksia Suomen historiasta 2\nKatolinen aikakausi', 'Krohn, Julius', '2015-05-31', 11, 'https://www.gutenberg.org/ebooks/49094', 'fi', 1578), +(2743, 'On Adventure Island', 'Moyer, Bess', '2015-02-03', 8, 'https://www.gutenberg.org/ebooks/48146', 'en', 323), +(2744, 'Over the Teacups', 'Holmes, Oliver Wendell', '2004-09-29', 20, 'https://www.gutenberg.org/ebooks/2689', 'en', 1882), +(2745, 'Les grandes dames', 'Houssaye, Arsène', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9261', 'fr', 1883), +(2746, 'A Treatise on Acupuncturation', 'Churchill, James Morss', '2016-01-21', 21, 'https://www.gutenberg.org/ebooks/50985', 'en', 1884), +(2747, 'Kihlautuneet: Historiallinen romaani', 'Manzoni, Alessandro', '2015-01-10', 7, 'https://www.gutenberg.org/ebooks/47932', 'fi', 1885), +(2748, 'Observations and Reflections Made in the Course of a Journey through France, Italy, and Germany, Vol. 2 (of 2)', 'Piozzi, Hester Lynch', '2017-04-09', 10, 'https://www.gutenberg.org/ebooks/54519', 'en', 1408), +(2749, 'The Story of Newfoundland', 'Birkenhead, Frederick Edwin Smith, Earl of', '2006-06-20', 15, 'https://www.gutenberg.org/ebooks/18636', 'en', 1886), +(2750, 'Northern Lights', 'Parker, Gilbert', '2008-10-12', 8, 'https://www.gutenberg.org/ebooks/26905', 'en', 1887), +(2751, 'The Carroll Girls', 'Quiller-Couch, Mabel', '2009-06-20', 12, 'https://www.gutenberg.org/ebooks/29171', 'en', 1625), +(2752, 'The Hindu-Arabic Numerals', 'Karpinski, Louis Charles', '2007-09-14', 69, 'https://www.gutenberg.org/ebooks/22599', 'en', 1888), +(2753, 'Ruby at School', 'Paull, George A., Mrs.', '2010-01-05', 16, 'https://www.gutenberg.org/ebooks/30860', 'en', 1889), +(2754, 'The Seats of the Mighty, Complete', 'Parker, Gilbert', '2004-11-17', 22, 'https://www.gutenberg.org/ebooks/6229', 'en', 1890), +(2755, 'Recollections of the Private Life of Napoleon — Volume 02', 'Wairy, Louis Constant', '2002-12-01', 18, 'https://www.gutenberg.org/ebooks/3569', 'en', 840), +(2756, 'An Historical Account of the Rise and Progress of the Colonies of South Carolina and Georgia, Volume 2', 'Hewatt, Alexander', '2005-05-01', 23, 'https://www.gutenberg.org/ebooks/8181', 'en', 1891), +(2757, 'Le gibet', 'Chevalier, H. Emile (Henri Emile)', '2006-05-16', 12, 'https://www.gutenberg.org/ebooks/18404', 'fr', 61), +(2758, 'Boy Scouts of the Air on Lost Island', 'Stuart, Gordon (Adventure story writer)', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/6827', 'en', 1892), +(2759, 'Meine Reise nach Siam 1888-1889.\nAufzeichnungen des k. und k. Legationsrathes Dr. J. Camille Samson', 'Samson, James Camille', '2015-02-27', 19, 'https://www.gutenberg.org/ebooks/48374', 'de', 1893), +(2760, 'Poésies du troubadour Peire Raimon de Toulouse: Texte et traduction', 'Peire Raimon, of Toulouse', '2005-10-01', 23, 'https://www.gutenberg.org/ebooks/9053', 'fr', 1894), +(2761, 'The Pantropheon; Or, History of Food, Its Preparation, from the Earliest Ages of the World', 'Soyer, Alexis', '2016-02-21', 29, 'https://www.gutenberg.org/ebooks/51259', 'en', 1337), +(2762, 'Three Addresses to Girls at School', 'Wilson, J. M. (James Maurice)', '2009-07-07', 14, 'https://www.gutenberg.org/ebooks/29343', 'en', 659), +(2763, 'A Textbook of Theosophy', 'Leadbeater, C. W. (Charles Webster)', '2004-07-12', 52, 'https://www.gutenberg.org/ebooks/12902', 'en', 746), +(2764, 'Our Home in the Silver West: A Story of Struggle and Adventure', 'Stables, Gordon', '2009-03-09', 11, 'https://www.gutenberg.org/ebooks/28291', 'en', 1895), +(2765, 'Baumeister Solneß: Schauspiel in drei Aufzügen', 'Ibsen, Henrik', '2007-12-02', 41, 'https://www.gutenberg.org/ebooks/23679', 'de', 402), +(2766, 'From sketch-book and diary', 'Butler, Elizabeth (Elizabeth Southerden Thompson)', '2012-10-03', 27, 'https://www.gutenberg.org/ebooks/40925', 'en', 1896), +(2767, 'Des variations du langage français depuis le XIIe siècle\r\nou recherche des principes qui devraient régler l\'orthographe et la prononciation', 'Génin, F. (François)', '2018-09-30', 15, 'https://www.gutenberg.org/ebooks/57992', 'fr', 1897), +(2768, 'Harper\'s Young People, April 25, 1882\nAn Illustrated Weekly', 'Various', '2018-03-25', 0, 'https://www.gutenberg.org/ebooks/56840', 'en', 479), +(2769, 'Bijou', 'Gyp', '2011-05-23', 13, 'https://www.gutenberg.org/ebooks/36199', 'en', 61), +(2770, 'The Big Leap', 'Fritch, Charles E.', '2019-03-08', 39, 'https://www.gutenberg.org/ebooks/59034', 'en', 26), +(2771, 'Color Key to North American Birds\r\nwith bibliographical appendix', 'Chapman, Frank M. (Frank Michler)', '2011-11-13', 26, 'https://www.gutenberg.org/ebooks/38003', 'en', 1333), +(2772, 'Curiosities of Light and Sight', 'Bidwell, Shelford', '2012-07-01', 16, 'https://www.gutenberg.org/ebooks/40119', 'en', 1898), +(2773, 'At Last: A Christmas in the West Indies', 'Kingsley, Charles', '2004-01-01', 40, 'https://www.gutenberg.org/ebooks/10669', 'en', 1899), +(2774, 'Goody Two Shoes', NULL, '2011-10-30', 34, 'https://www.gutenberg.org/ebooks/37877', 'en', 1900), +(2775, 'Le possédé: étude passionnelle', 'Lemonnier, Camille', '2007-06-23', 6, 'https://www.gutenberg.org/ebooks/21912', 'fr', 61), +(2776, 'Eight days in New-Orleans in February, 1847', 'Pickett, Albert James', '2010-05-26', 10, 'https://www.gutenberg.org/ebooks/32539', 'en', 1901), +(2777, 'Harper\'s Round Table, November 3, 1896', 'Various', '2019-06-25', 15, 'https://www.gutenberg.org/ebooks/59808', 'en', 668), +(2778, 'The Good Comrade', 'Silberrad, Una L.', '2006-03-27', 44, 'https://www.gutenberg.org/ebooks/18060', 'en', 1902), +(2779, 'An Essay on Mediæval Economic Teaching', 'O\'Brien, George Augustine Thomas', '2004-09-17', 11, 'https://www.gutenberg.org/ebooks/13488', 'en', 1903), +(2780, 'Hints on Bobcat Trapping', 'Young, Stanley Paul', '2015-04-15', 6, 'https://www.gutenberg.org/ebooks/48710', 'en', 1904), +(2781, 'Under the Greenwood Tree', 'Hardy, Thomas', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9437', 'en', 398), +(2782, 'Λυσιστράτη', 'Aristophanes', '2006-02-21', 46, 'https://www.gutenberg.org/ebooks/17814', 'el', 959), +(2783, 'Altes und Neues über Karl Stülpner\nmit Benutzung der Schönberg\'schen Aufzeichnungen', 'Lungwitz, Hermann', '2014-12-24', 13, 'https://www.gutenberg.org/ebooks/47758', 'de', 1905), +(2784, 'Divina Commedia di Dante: Purgatorio', 'Dante Alighieri', '1997-08-01', 30, 'https://www.gutenberg.org/ebooks/998', 'it', 1906), +(2785, 'Eastern Standard Tribe', 'Doctorow, Cory', '2005-11-20', 91, 'https://www.gutenberg.org/ebooks/17028', 'en', 1907), +(2786, 'Zibeline — Volume 1', 'Massa, Philippe, marquis de', '2003-04-01', 5, 'https://www.gutenberg.org/ebooks/3931', 'en', 560), +(2787, 'Zero Data', 'Saphro, Charles', '2009-08-19', 23, 'https://www.gutenberg.org/ebooks/29727', 'en', 1908), +(2788, 'The Strength of the Pines', 'Marshall, Edison', '2011-02-23', 17, 'https://www.gutenberg.org/ebooks/35378', 'en', 1909), +(2789, 'Two Expeditions into the Interior of Southern Australia — Volume I', 'Sturt, Charles', '2003-08-01', 11, 'https://www.gutenberg.org/ebooks/4328', 'en', 1910), +(2790, 'An Attempt to Explain the Origin and Meaning of the Early Interlaced Ornamentation Found on the Sculptured Stones of Scotland, Ireland, and the Isle of Man', 'French, Gilbert J. (Gilbert James)', '2019-05-07', 21, 'https://www.gutenberg.org/ebooks/59450', 'en', 1911), +(2791, 'Harper\'s Round Table, May 14, 1895', 'Various', '2010-06-24', 3, 'https://www.gutenberg.org/ebooks/32961', 'en', 668), +(2792, 'St. Martin\'s Eve: A Novel', 'Wood, Henry, Mrs.', '2018-12-31', 23, 'https://www.gutenberg.org/ebooks/58582', 'en', 428), +(2793, 'Le médecin malgré lui', 'Molière', '2007-01-31', 33, 'https://www.gutenberg.org/ebooks/20498', 'fr', 907), +(2794, 'The Rider in Khaki: A Novel', 'Gould, Nat', '2008-03-11', 13, 'https://www.gutenberg.org/ebooks/24804', 'en', 95), +(2795, 'La araña negra, t. 5/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 18, 'https://www.gutenberg.org/ebooks/45833', 'es', 1353), +(2796, 'New York Nocturnes, and Other Poems', 'Roberts, Charles G. D., Sir', '2018-01-23', 7, 'https://www.gutenberg.org/ebooks/56418', 'en', 1237), +(2797, 'Mjölnarflickan vid Lützen: Ett tvåhundrafemtioårigt minne', 'Åberg, J. O. (Johan Olof)', '2016-08-23', 12, 'https://www.gutenberg.org/ebooks/52884', 'sv', 1912), +(2798, 'Natural and Artificial Duck Culture', 'Rankin, James', '2012-01-02', 14, 'https://www.gutenberg.org/ebooks/38467', 'en', 1913), +(2799, 'Avioliitto: Tarina tuhansien joukosta', 'Kianto, Ilmari', '2017-01-13', 4, 'https://www.gutenberg.org/ebooks/53956', 'fi', 175), +(2800, '孫子算經', 'Sunzi, approximately 5th century', '2007-12-26', 55, 'https://www.gutenberg.org/ebooks/24038', 'zh', 1914), +(2801, 'Donahoe\'s Magazine, Volume 15, No. 1, January 1886', 'Various', '2007-06-08', 26, 'https://www.gutenberg.org/ebooks/21778', 'en', 18), +(2802, 'The Coal Measures Amphibia of North America', 'Moodie, Roy Lee', '2019-06-02', 11, 'https://www.gutenberg.org/ebooks/59662', 'en', 1915), +(2803, 'A General History and Collection of Voyages and Travels — Volume 02\r\nArranged in Systematic Order: Forming a Complete History of the Origin and Progress of Navigation, Discovery, and Commerce, by Sea and Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-01-01', 49, 'https://www.gutenberg.org/ebooks/10803', 'en', 885), +(2804, '\"War to the Knife;\" or, Tangata Maori', 'Boldrewood, Rolf', '2016-10-24', 26, 'https://www.gutenberg.org/ebooks/53358', 'en', 1916), +(2805, 'His Majesty\'s Well-Beloved\nAn Episode in the Life of Mr. Thomas Betteron as told by His Friend John Honeywood', 'Orczy, Emmuska Orczy, Baroness', '2012-05-24', 48, 'https://www.gutenberg.org/ebooks/39787', 'en', 1917), +(2806, 'The Age of Chivalry', 'Bulfinch, Thomas', '2004-01-01', 126, 'https://www.gutenberg.org/ebooks/4926', 'en', 1193), +(2807, 'The History of England, from the Accession of James II — Volume 1', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 129, 'https://www.gutenberg.org/ebooks/1468', 'en', 641), +(2808, 'Principles of Political Economy, Vol. 2', 'Roscher, Wilhelm', '2012-01-23', 24, 'https://www.gutenberg.org/ebooks/38655', 'en', 1745), +(2809, 'Old Country Life', 'Baring-Gould, S. (Sabine)', '2015-03-18', 36, 'https://www.gutenberg.org/ebooks/48522', 'en', 1918), +(2810, 'A Newly Discovered System of Electrical Medication', 'Clark, Daniel', '2007-12-11', 15, 'https://www.gutenberg.org/ebooks/23813', 'en', 1919), +(2811, 'Chico: the Story of a Homing Pigeon', 'Blanchard, Lucy Mansfield Blanchard', '2006-01-01', 26, 'https://www.gutenberg.org/ebooks/9605', 'en', 1602), +(2812, 'The Eyes Have It', 'McKimmey, James', '2009-11-09', 25, 'https://www.gutenberg.org/ebooks/30438', 'en', 26), +(2813, 'The Lady, or the Tiger?', 'Stockton, Frank Richard', '1996-01-01', 183, 'https://www.gutenberg.org/ebooks/396', 'en', 179), +(2814, 'Hertfordshire', 'Tompkins, Herbert W. (Herbert Winckworth)', '2006-04-25', 29, 'https://www.gutenberg.org/ebooks/18252', 'en', 1920), +(2815, 'Anzeiger des Germanischen Nationalmuseums, Jg. 1900', 'Bezold, Gustav von', '2006-09-25', 23, 'https://www.gutenberg.org/ebooks/19380', 'de', 1921), +(2816, 'Penny Plain', 'Douglas, O.', '2004-06-28', 27, 'https://www.gutenberg.org/ebooks/12768', 'en', 1922), +(2817, 'Ku Klux Klan Secrets Exposed\r\nAttitude toward Jews, Catholics, Foreigners and Masons. Fraudulent Methods Used. Atrocities Committed in Name of Order.', 'Cook, Ezra A. (Ezra Asher)', '2011-04-27', 9, 'https://www.gutenberg.org/ebooks/35976', 'en', 1515), +(2818, 'Natural Stability and the Parachute Principle in Aeroplanes', 'LeMaitre, W.', '2013-02-04', 2, 'https://www.gutenberg.org/ebooks/42018', 'en', 1577), +(2819, 'Science of Trapping\r\nDescribes the Fur Bearing Animals, Their Nature, Habits and Distribution, with Practical Methods for Their Capture', 'Kreps, Elmer Harry', '2010-10-19', 35, 'https://www.gutenberg.org/ebooks/34098', 'en', 1904), +(2820, 'Monica: A Novel, Volume 2 (of 3)', 'Everett-Green, Evelyn', '2017-06-20', 17, 'https://www.gutenberg.org/ebooks/54941', 'en', 675), +(2821, 'Peeps at Many Lands: Portugal', 'Goodall, Agnes M.', '2017-11-05', 7, 'https://www.gutenberg.org/ebooks/55893', 'en', 1923), +(2822, 'The Battle of the Bays', 'Seaman, Owen', '2009-07-27', 9, 'https://www.gutenberg.org/ebooks/29515', 'en', 8), +(2823, 'Scenes and Characters of the Middle Ages\nThird Edition', 'Cutts, Edward Lewes', '2013-05-27', 21, 'https://www.gutenberg.org/ebooks/42824', 'en', 1924), +(2824, 'The Remarkable History of the Hudson\'s Bay Company\r\nIncluding that of the French Traders of North-Western Canada and of the North-West, XY, and Astor Fur Companies', 'Bryce, George', '2013-11-30', 41, 'https://www.gutenberg.org/ebooks/44312', 'en', 1925), +(2825, 'State of the Union Addresses', 'Harding, Warren G. (Warren Gamaliel)', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/5035', 'en', 1926), +(2826, 'Tales from Shakespeare', 'Lamb, Mary', '2007-02-24', 261, 'https://www.gutenberg.org/ebooks/20657', 'en', 1927), +(2827, 'The Third and Last Part of Conny-Catching. (1592)\r\nWith the new deuised knauish arte of Foole-taking', 'Greene, Robert', '2004-12-25', 15, 'https://www.gutenberg.org/ebooks/14462', 'en', 1928), +(2828, 'Ruijan rannoilta: Kertomus Norjan Lapista', 'Aikio, Matti', '2016-06-08', 25, 'https://www.gutenberg.org/ebooks/52277', 'fi', 1929), +(2829, 'Poems of Rural Life in the Dorset Dialect', 'Barnes, William', '2007-06-09', 14, 'https://www.gutenberg.org/ebooks/21785', 'en', 1930), +(2830, 'Charlie Newcomer', 'Stover, Wilbur B.', '2011-07-14', 11, 'https://www.gutenberg.org/ebooks/36732', 'en', 1931), +(2831, 'Following the Equator: A Journey Around the World. Part 2', 'Twain, Mark', '2004-06-23', 21, 'https://www.gutenberg.org/ebooks/5809', 'en', 1932), +(2832, 'An Universal Dictionary of the Marine\r\nOr, a Copious Explanation of the Technical Terms and Phrases Employed in the Construction, Equipment, Furniture, Machinery, Movements, and Military Operations of a Ship. Illustrated With Variety of Original Designs of Shipping, in Different Situations; Together With Separate Views of Their Masts, Sails, Yards, and Rigging. to Which Is Annexed, a Translation of the French Sea-terms and Phrases, Collected from the Works of Mess. Du Hamel, Aubin, Saverien, &c.', 'Falconer, William', '2018-08-16', 57, 'https://www.gutenberg.org/ebooks/57705', 'en', 1933), +(2833, 'Mammy Tittleback and Her Family: A True Story of Seventeen Cats', 'Jackson, Helen Hunt', '2010-07-24', 7, 'https://www.gutenberg.org/ebooks/33240', 'en', 1817), +(2834, 'The Golf Course Mystery', 'Steele, Chester K.', '1998-10-01', 29, 'https://www.gutenberg.org/ebooks/1495', 'en', 128), +(2835, 'Notes on Agriculture in Cyprus and Its Products', 'Bevan, William', '2010-05-15', 20, 'https://www.gutenberg.org/ebooks/32392', 'en', 1934), +(2836, 'A Fortnight of Folly', 'Thompson, Maurice', '2012-12-19', 23, 'https://www.gutenberg.org/ebooks/41660', 'en', 61), +(2837, 'A Countess from Canada: A Story of Life in the Backwoods', 'Marchant, Bessie', '2004-02-01', 42, 'https://www.gutenberg.org/ebooks/11110', 'en', 376), +(2838, 'The International Monthly, Volume 3, No. 1, April, 1851', 'Various', '2008-05-04', 14, 'https://www.gutenberg.org/ebooks/25325', 'en', 162), +(2839, 'Bramble Brae', 'Bridges, Robert', '2017-07-05', 2, 'https://www.gutenberg.org/ebooks/55052', 'en', 178), +(2840, 'Kihlaus; Yö ja päivä', 'Kivi, Aleksis', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/12795', 'fi', 247), +(2841, 'A Week at Waterloo in 1815\r\nLady De Lancey\'s Narrative: Being an Account of How She Nursed Her Husband, Colonel Sir William Howe De Lancey, Quartermaster-General of the Army, Mortally Wounded in the Great Battle', 'De Lancey, Magdalene, Lady', '2010-03-06', 44, 'https://www.gutenberg.org/ebooks/31517', 'en', 735), +(2842, 'Human Genome Project, rough draft, Chromosome Number 10', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2210', 'en', 1385), +(2843, 'The Girl and Her Fortune', 'Meade, L. T.', '2013-07-08', 14, 'https://www.gutenberg.org/ebooks/43137', 'en', 264), +(2844, 'Nonsense Songs', 'Lear, Edward', '2004-10-08', 75, 'https://www.gutenberg.org/ebooks/13647', 'en', 564), +(2845, 'The Origin of Finger-Printing', 'Herschel, William James', '2011-01-05', 18, 'https://www.gutenberg.org/ebooks/34859', 'en', 1935), +(2846, 'Travels to Discover the Source of the Nile, Volume 1 (of 5)\r\nIn the years 1768, 1769, 1770, 1771, 1772 and 1773', 'Bruce, James', '2017-02-17', 82, 'https://www.gutenberg.org/ebooks/54180', 'en', 1936), +(2847, 'The Story of a Cat', 'La Bédollière, Emile de', '2008-12-09', 18, 'https://www.gutenberg.org/ebooks/27472', 'en', 1430), +(2848, 'The Library of Work and Play: Guide and Index', 'Boone, Cheshire Lowton', '2014-07-29', 25, 'https://www.gutenberg.org/ebooks/46445', 'en', 1937), +(2849, 'Wanderers', 'Hamsun, Knut', '2005-03-01', 34, 'https://www.gutenberg.org/ebooks/7762', 'en', 1938), +(2850, 'Slavery and Four Years of War, Vol. 1-2\nA Political History of Slavery in the United States Together\nWith a Narrative of the Campaigns and Battles of the Civil\nWar In Which the Author Took Part: 1861-1865', 'Keifer, Joseph Warren', '2007-07-19', 18, 'https://www.gutenberg.org/ebooks/22100', 'en', 125), +(2851, 'Essays on the Stage\r\nPreface to the Campaigners (1689) and Preface to the Translation of Bossuet\'s Maxims and Reflections on Plays (1699)', 'D\'Urfey, Thomas', '2005-07-20', 8, 'https://www.gutenberg.org/ebooks/16335', 'en', 1939), +(2852, 'Early French Prisons\r\nLe Grand and Le Petit Châtelets; Vincennes; The Bastile; Loches; The Galleys; Revolutionary Prisons', 'Griffiths, Arthur', '2015-11-20', 15, 'https://www.gutenberg.org/ebooks/50520', 'en', 1940), +(2853, 'The Sentimental Adventures of Jimmy Bulstrode', 'Van Vorst, Marie', '2010-10-13', 0, 'https://www.gutenberg.org/ebooks/34065', 'en', 434), +(2854, 'Deering of Deal; Or, The Spirit of the School', 'Griswold, Latta', '2014-12-08', 15, 'https://www.gutenberg.org/ebooks/47597', 'en', 153), +(2855, 'Mémoires d\'une contemporaine. Tome 8\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2010-03-21', 12, 'https://www.gutenberg.org/ebooks/31725', 'fr', 1941), +(2856, 'Fritiofs Saga', 'Tegnér, Esaias', '2005-07-01', 42, 'https://www.gutenberg.org/ebooks/8518', 'sv', 1942), +(2857, 'Grimmer and Kamper, The End of Sivard Snarenswayne, and Other Ballads', NULL, '2008-10-06', 1, 'https://www.gutenberg.org/ebooks/26792', 'en', 54), +(2858, 'Humours of \'37, Grave, Gay and Grim: Rebellion Times in the Canadas', 'Lizars, Robina', '2017-08-04', 13, 'https://www.gutenberg.org/ebooks/55260', 'en', 1469), +(2859, 'The Island of Doctor Moreau', 'Wells, H. G. (Herbert George)', '2004-10-14', 1020, 'https://www.gutenberg.org/ebooks/159', 'en', 26), +(2860, 'Œuvres de Napoléon Bonaparte, Tome V.', 'Napoleon I, Emperor of the French', '2004-09-16', 34, 'https://www.gutenberg.org/ebooks/13475', 'fr', 1943), +(2861, 'Ricordi di Londra', 'De Amicis, Edmondo', '2008-12-28', 23, 'https://www.gutenberg.org/ebooks/27640', 'it', 1944), +(2862, 'Angling Sketches', 'Lang, Andrew', '2000-01-01', 20, 'https://www.gutenberg.org/ebooks/2022', 'en', 1945), +(2863, 'Illustrated Index of British Shells\nContaining figures of all the recent species', 'Sowerby, G. B. (George Brettingham)', '2013-07-26', 15, 'https://www.gutenberg.org/ebooks/43305', 'en', 1946), +(2864, 'Brain Twister', 'Janifer, Laurence M.', '2007-08-16', 90, 'https://www.gutenberg.org/ebooks/22332', 'en', 784), +(2865, 'Punch, or the London Charivari, Vol. 158, 1920-01-14', 'Various', '2005-06-22', 13, 'https://www.gutenberg.org/ebooks/16107', 'en', 134), +(2866, 'An Introduction to Psychology\nTranslated from the Second German Edition', 'Wundt, Wilhelm Max', '2014-08-25', 72, 'https://www.gutenberg.org/ebooks/46677', 'en', 1947), +(2867, 'Quotes and Images From The Works of George Meredith', 'Meredith, George', '2004-08-29', 14, 'https://www.gutenberg.org/ebooks/7550', 'en', 1026), +(2868, 'The Mabinogion Vol. 2', NULL, '2006-11-29', 61, 'https://www.gutenberg.org/ebooks/19973', 'en', 1948), +(2869, 'Blanche: The Maid of Lille', 'Schubin, Ossip', '2011-02-25', 14, 'https://www.gutenberg.org/ebooks/35385', 'en', 1949), +(2870, 'The Coverley Papers, From \'The Spectator\'', 'Addison, Joseph', '2004-09-01', 44, 'https://www.gutenberg.org/ebooks/6482', 'en', 472), +(2871, 'The Black Tulip', 'Dumas, Alexandre', '1997-07-01', 263, 'https://www.gutenberg.org/ebooks/965', 'en', 1950), +(2872, 'Means and Ends of Education', 'Spalding, John Lancaster', '2010-11-08', 3, 'https://www.gutenberg.org/ebooks/34257', 'en', 1951), +(2873, 'Will Shakespeare: An Invention in Four Acts', 'Dane, Clemence', '2015-12-17', 21, 'https://www.gutenberg.org/ebooks/50712', 'en', 599), +(2874, 'Inside John Barth', 'Stuart, William W.', '2009-04-25', 37, 'https://www.gutenberg.org/ebooks/28608', 'en', 67), +(2875, 'Reize door Frankrijk\nIn gemeenzame brieven, door Adriaan van der Willigen aan den uitgever', 'Willigen, Adriaan van der', '2007-01-28', 9, 'https://www.gutenberg.org/ebooks/20465', 'nl', 1117), +(2876, 'Cynthia Steps Out', 'Berry, Erick', '2016-10-02', 11, 'https://www.gutenberg.org/ebooks/53197', 'en', 51), +(2877, 'Meripoikia: Kolminäytöksinen huvinäytelmä', 'Pakkala, Teuvo', '2005-01-10', 21, 'https://www.gutenberg.org/ebooks/14650', 'fi', 247), +(2878, 'La Caza de La Perdiz Con Escopeta, Al Vuelo y con Perro de Muestra', 'Saurí, Manuel', '2013-11-06', 5, 'https://www.gutenberg.org/ebooks/44120', 'es', 1952), +(2879, 'The Guns of Shiloh: A Story of the Great Western Campaign', 'Altsheler, Joseph A. (Joseph Alexander)', '2004-03-01', 52, 'https://www.gutenberg.org/ebooks/5207', 'en', 491), +(2880, 'The Dispatch-Riders: The Adventures of Two British Motor-cyclists in the Great War', 'Westerman, Percy F. (Percy Francis)', '2011-06-23', 30, 'https://www.gutenberg.org/ebooks/36500', 'en', 323), +(2881, 'Scenes in Switzerland', 'American Tract Society', '2005-05-07', 7, 'https://www.gutenberg.org/ebooks/15782', 'en', 470), +(2882, 'Cassell\'s History of England, Vol. 3 (of 8)\r\nFrom the Great Rebellion to the Fall of Marlborough.', 'Anonymous', '2016-05-11', 20, 'https://www.gutenberg.org/ebooks/52045', 'en', 1953), +(2883, 'A General History of the Pyrates:\r\nfrom their first rise and settlement in the island of Providence, to the present time', 'Defoe, Daniel', '2012-08-25', 485, 'https://www.gutenberg.org/ebooks/40580', 'en', 1954), +(2884, 'Stevenson\'s Perfect Virtues, as Exemplified by Leigh Hunt', 'Brewer, Luther Albertus', '2010-07-04', 12, 'https://www.gutenberg.org/ebooks/33072', 'en', 1955), +(2885, 'Index for Works of Harold Frederic\r\nHyperlinks to All Chapters of All Individual Ebooks', 'Frederic, Harold', '2018-07-18', 4, 'https://www.gutenberg.org/ebooks/57537', 'en', 198), +(2886, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 359, March 7, 1829', 'Various', '2004-02-01', 1, 'https://www.gutenberg.org/ebooks/11322', 'en', 133), +(2887, 'With the Naval Brigade in Natal, 1899-1900: Journal of Active Service', 'Burne, C. R. N. (Charles Richard Newdigate)', '2008-04-21', 28, 'https://www.gutenberg.org/ebooks/25117', 'en', 1956), +(2888, 'Neuestes Süddeutsches Kochbuch für alle Stände\r\nEine Sammlung von mehr als achthundert in vierzigjähriger Erfahrung erprobter Rezepte der feinen und bürgerlichen Kochkunst', 'Schiller, Viktorine', '2016-08-22', 27, 'https://www.gutenberg.org/ebooks/52879', 'de', 1957), +(2889, 'The Forged Note: A Romance of the Darker Races', 'Micheaux, Oscar', '2012-04-27', 14, 'https://www.gutenberg.org/ebooks/39548', 'en', 1958), +(2890, 'Rasputin the Rascal Monk\r\nDisclosing the Secret Scandal of the Betrayal of Russia by the Mock-Monk Grichka and the Consequent Ruin of the Romanoffs. With official documents revealed and recorded for the first time.', 'Le Queux, William', '2012-11-23', 33, 'https://www.gutenberg.org/ebooks/41452', 'en', 1959), +(2891, 'Far Off; Or, Asia and Australia Described\r\nWith Anecdotes and Illustrations', 'Mortimer, Favell Lee', '2004-07-24', 21, 'https://www.gutenberg.org/ebooks/13011', 'en', 1960), +(2892, 'The Writing of the Short Story', 'Smith, Lewis Worthington', '2008-11-10', 25, 'https://www.gutenberg.org/ebooks/27224', 'en', 1961), +(2893, 'The Candy Maker\'s Guide\nA Collection of Choice Recipes for Sugar Boiling', 'Fletcher Manufacturing Company', '2009-10-20', 60, 'https://www.gutenberg.org/ebooks/30293', 'en', 1372), +(2894, 'An Enemy of the People', 'Ibsen, Henrik', '2000-12-01', 472, 'https://www.gutenberg.org/ebooks/2446', 'en', 798), +(2895, 'La Pensée de l\'Humanité\nDernière oeuvre de L. Tolstoï', 'Tolstoy, Leo, graf', '2013-09-18', 34, 'https://www.gutenberg.org/ebooks/43761', 'fr', 1962), +(2896, 'Six Girls and the Tea Room', 'Taggart, Marion Ames', '2015-03-01', 25, 'https://www.gutenberg.org/ebooks/48389', 'en', 1963), +(2897, 'Apparitions; Or, The Mystery of Ghosts, Hobgoblins, and Haunted Houses Developed', 'Taylor, Joseph', '2010-02-21', 23, 'https://www.gutenberg.org/ebooks/31341', 'en', 523), +(2898, 'Essays of Michel de Montaigne — Volume 14', 'Montaigne, Michel de', '2004-11-01', 20, 'https://www.gutenberg.org/ebooks/3594', 'en', 1964), +(2899, 'American Historical and Literary Curiosities, Part 08', 'Watson, John F. (John Fanning)', '2004-07-15', 4, 'https://www.gutenberg.org/ebooks/7908', 'en', 453), +(2900, 'The Irish Penny Journal, Vol. 1 No. 52, June 26, 1841', 'Various', '2017-09-22', 2, 'https://www.gutenberg.org/ebooks/55604', 'en', 81), +(2901, 'L\'A. B. C. de l\'aviation: Biplans et monoplans', 'Gastine, Louis', '2010-12-14', 16, 'https://www.gutenberg.org/ebooks/34633', 'fr', 1577), +(2902, 'Oxford Poetry, 1920', NULL, '2015-11-03', 13, 'https://www.gutenberg.org/ebooks/50376', 'en', 1965), +(2903, 'La Muette de Portici: Opéra en cinq actes', 'Delavigne, Germain', '2006-02-01', 29, 'https://www.gutenberg.org/ebooks/9892', 'fr', 1966), +(2904, 'Keats: Poems Published in 1820', 'Keats, John', '2007-12-02', 314, 'https://www.gutenberg.org/ebooks/23684', 'en', 532), +(2905, 'The Enchanted Island', 'Apjohn, Fannie Louise', '2007-09-24', 35, 'https://www.gutenberg.org/ebooks/22756', 'en', 1007), +(2906, 'Punch, or the London Charivari, Volume 158, March 3rd, 1920', 'Various', '2005-08-20', 9, 'https://www.gutenberg.org/ebooks/16563', 'en', 134), +(2907, 'An Essay on the Evils of Popular Ignorance', 'Foster, John', '2005-09-01', 15, 'https://www.gutenberg.org/ebooks/8940', 'en', 1967), +(2908, 'Nemmeno un bacio: Dramma in tre atti e un epilogo', 'Bracco, Roberto', '2014-07-07', 9, 'https://www.gutenberg.org/ebooks/46213', 'it', 407), +(2909, 'The Great Conspiracy, Volume 2', 'Logan, John Alexander', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/7134', 'en', 125), +(2910, 'Flower, Fruit, and Thorn Pieces;\r\nor, the Wedded Life, Death, and Marriage of Firmian Stanislaus Siebenkaes, Parish Advocate in the Burgh of Kuhschnappel.', 'Jean Paul', '2011-05-19', 26, 'https://www.gutenberg.org/ebooks/36164', 'en', 803), +(2911, 'Insect Architecture', 'Rennie, James', '2014-04-26', 98, 'https://www.gutenberg.org/ebooks/45496', 'en', 1968), +(2912, 'Omphalos: An Attempt to Untie the Geological Knot', 'Gosse, Philip Henry', '2012-06-03', 34, 'https://www.gutenberg.org/ebooks/39910', 'en', 1969), +(2913, 'A Sermon Preached in York Minister, on St. Bartholomew\'s Day, Friday, August 24, 1877\r\non the Occasion of the Consecration of the Right Rev. Rowley Hill, Lord Bishop of Sodor and Man', 'Hoare, Edward', '2016-06-27', 14, 'https://www.gutenberg.org/ebooks/52421', 'en', 1970), +(2914, 'The English Spy: An Original Work Characteristic, Satirical, And Humorous.\r\nComprising Scenes And Sketches In Every Rank Of Society, Being Portraits Drawn From The Life', 'Westmacott, C. M. (Charles Molloy)', '2006-12-03', 32, 'https://www.gutenberg.org/ebooks/20001', 'en', 1971), +(2915, 'The Lure of the North', 'Bindloss, Harold', '2004-12-02', 15, 'https://www.gutenberg.org/ebooks/14234', 'en', 1972), +(2916, 'Appletons\' Popular Science Monthly, April 1899\nVolume LIV, No. 6, April 1899', 'Various', '2013-12-30', 10, 'https://www.gutenberg.org/ebooks/44544', 'en', 352), +(2917, 'The Prose of Alfred Lichtenstein', 'Lichtenstein, Alfred', '2004-05-01', 4, 'https://www.gutenberg.org/ebooks/5663', 'en', 61), +(2918, 'A Traitor in London', 'Hume, Fergus', '2017-11-29', 17, 'https://www.gutenberg.org/ebooks/56081', 'en', 1079), +(2919, 'Through the Brazilian Wilderness', 'Roosevelt, Theodore', '2004-03-01', 98, 'https://www.gutenberg.org/ebooks/11746', 'en', 1973), +(2920, 'A Child of the Jago', 'Morrison, Arthur', '2011-08-03', 48, 'https://www.gutenberg.org/ebooks/36958', 'en', 1079), +(2921, 'The Drama Of Three Hundred & Sixty-Five Days: Scenes In The Great War', 'Caine, Hall, Sir', '2008-05-23', 19, 'https://www.gutenberg.org/ebooks/25573', 'en', 335), +(2922, 'Brave Deeds of Union Soldiers', 'Scoville, Samuel', '2012-10-12', 6, 'https://www.gutenberg.org/ebooks/41036', 'en', 1517), +(2923, 'The American Phrenological Journal and Miscellany, Vol. 1. No. 8, May 1, 1839', 'Various', '2019-02-20', 4, 'https://www.gutenberg.org/ebooks/58927', 'en', 1974), +(2924, 'Rambles in Womanland', 'O\'Rell, Max', '2010-08-12', 14, 'https://www.gutenberg.org/ebooks/33416', 'en', 1485), +(2925, 'Sea-Power and Other Studies', 'Bridge, Cyprian, Sir', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/10694', 'en', 1604), +(2926, 'Enchanted India', 'Karadordevic, Bozidar', '2018-05-13', 32, 'https://www.gutenberg.org/ebooks/57153', 'en', 1975), +(2927, 'Vandyke Brown: A Farce in One Act', 'Troughton, Adolphus Charles', '2016-07-21', 3, 'https://www.gutenberg.org/ebooks/52613', 'en', 1281), +(2928, 'Dialogues Concerning Natural Religion', 'Hume, David', '2003-10-01', 287, 'https://www.gutenberg.org/ebooks/4583', 'en', 1976), +(2929, 'Life of John Keats: His Life and Poetry, His Friends, Critics and After-Fame', 'Colvin, Sidney', '2011-06-08', 83, 'https://www.gutenberg.org/ebooks/36356', 'en', 1977), +(2930, 'Adventures of the Ojibbeway and Ioway Indians in England, France, and Belgium; Vol. 1 (of 2)\r\nbeing Notes of Eight Years\' Travels and Residence in Europe with his North American Indian Collection', 'Catlin, George', '2014-01-28', 25, 'https://www.gutenberg.org/ebooks/44776', 'en', 869), +(2931, 'An Egyptian Princess — Volume 02', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5451', 'en', 1802), +(2932, 'Dickens As an Educator', 'Hughes, James L. (James Laughlin)', '2011-08-31', 71, 'https://www.gutenberg.org/ebooks/37284', 'en', 1978); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(2933, 'Modern Atheism under its forms of Pantheism, Materialism, Secularism, Development, and Natural Laws', 'Buchanan, James', '2006-12-31', 15, 'https://www.gutenberg.org/ebooks/20233', 'en', 471), +(2934, 'Index of the Project Gutenberg Works of Oscar Wilde', 'Wilde, Oscar', '2018-11-23', 38, 'https://www.gutenberg.org/ebooks/58329', 'en', 198), +(2935, 'An English Grammar', 'Sewell, James Witt', '2004-11-10', 193, 'https://www.gutenberg.org/ebooks/14006', 'en', 1979), +(2936, 'Tales from \"Blackwood,\" Volume 6', 'Various', '2012-10-27', 9, 'https://www.gutenberg.org/ebooks/41204', 'en', 179), +(2937, 'Master Skylark: A Story of Shakspere\'s Time', 'Bennett, John', '2004-03-01', 58, 'https://www.gutenberg.org/ebooks/11574', 'en', 98), +(2938, 'A Matter of Honor: A Terran Empire novel', 'Wilson, Ann', '2008-06-09', 14, 'https://www.gutenberg.org/ebooks/25741', 'en', 26), +(2939, 'William Black: The Apostle of Methodism in the Maritime Provinces of Canada', 'MacLean, John', '2008-02-26', 20, 'https://www.gutenberg.org/ebooks/24693', 'en', 1980), +(2940, 'The 21st Missouri Regiment Infantry Veteran Volunteers: Historical Memoranda', NULL, '2018-06-20', 7, 'https://www.gutenberg.org/ebooks/57361', 'en', 1981), +(2941, 'Library of the World\'s Best Literature, Ancient and Modern, Vol. 16', NULL, '2010-09-03', 53, 'https://www.gutenberg.org/ebooks/33624', 'en', 19), +(2942, 'The Lion\'s Whelp: A Story of Cromwell\'s Time', 'Barr, Amelia E.', '2016-01-19', 9, 'https://www.gutenberg.org/ebooks/50978', 'en', 1982), +(2943, 'The Complete Writings of Charles Dudley Warner — Volume 4', 'Warner, Charles Dudley', '2001-06-01', 8, 'https://www.gutenberg.org/ebooks/2674', 'en', 1983), +(2944, 'The Time of Roses', 'Meade, L. T.', '2009-05-18', 19, 'https://www.gutenberg.org/ebooks/28862', 'en', 1984), +(2945, 'Letters to an Unknown', 'Mérimée, Prosper', '2013-08-24', 28, 'https://www.gutenberg.org/ebooks/43553', 'en', 980), +(2946, 'Poems by Jean Ingelow, In Two Volumes, Volume I.', 'Ingelow, Jean', '2004-08-19', 30, 'https://www.gutenberg.org/ebooks/13223', 'en', 54), +(2947, 'Eight dwelling places of Buddhist immortals', 'Five colors stone', '2008-10-24', 20, 'https://www.gutenberg.org/ebooks/27016', 'zh', NULL), +(2948, 'The Art Of Writing & Speaking The English Language\nWord-Study and Composition & Rhetoric', 'Cody, Sherwin', '2006-11-05', 302, 'https://www.gutenberg.org/ebooks/19719', 'en', 1985), +(2949, 'Malva: Kertomus', 'Gorky, Maksim', '2017-08-27', 13, 'https://www.gutenberg.org/ebooks/55436', 'fi', 147), +(2950, 'Punch, or the London Charivari, Vol. 108, January 26, 1895', 'Various', '2013-04-07', 1, 'https://www.gutenberg.org/ebooks/42481', 'en', 134), +(2951, 'The Floors of the Ocean: 1. The North Atlantic\nText to accompany the physiographic diagram of the North Atlantic', 'Heezen, Bruce C.', '2015-05-29', 10, 'https://www.gutenberg.org/ebooks/49069', 'en', 1986), +(2952, 'Anxious Audrey', 'Quiller-Couch, Mabel', '2010-02-03', 37, 'https://www.gutenberg.org/ebooks/31173', 'en', 1679), +(2953, 'Œuvres complètes de Guy de Maupassant - volume 05', 'Maupassant, Guy de', '2015-10-06', 32, 'https://www.gutenberg.org/ebooks/50144', 'fr', 642), +(2954, 'The Prairie Farmer, Vol. 56, No. 2, January 12, 1884\nA Weekly Journal for the Farm, Orchard and Fireside', 'Various', '2006-02-05', 18, 'https://www.gutenberg.org/ebooks/17683', 'en', 1987), +(2955, 'Essays on Darwinism', 'Stebbing, Thomas Roscoe Rede', '2015-05-18', 6, 'https://www.gutenberg.org/ebooks/48987', 'en', 1315), +(2956, 'The Pace That Kills: A Chronicle', 'Saltus, Edgar', '2010-11-22', 12, 'https://www.gutenberg.org/ebooks/34401', 'en', 61), +(2957, 'Goethes Briefe an Leipziger Freunde', 'Goethe, Johann Wolfgang von', '2014-06-18', 16, 'https://www.gutenberg.org/ebooks/46021', 'de', 1988), +(2958, 'Autobiographic Sketches', 'De Quincey, Thomas', '2005-01-01', 47, 'https://www.gutenberg.org/ebooks/7306', 'en', 53), +(2959, 'Curiosa: Essais critiques de littérature ancienne ignorée ou mal connue', NULL, '2015-09-02', 28, 'https://www.gutenberg.org/ebooks/49855', 'fr', 1989), +(2960, 'Great Artists, Vol 1.: Raphael, Rubens, Murillo, and Durer', 'Keysor, Jennie Ellis', '2007-09-10', 44, 'https://www.gutenberg.org/ebooks/22564', 'en', 1990), +(2961, 'McGuffey\'s Sixth Eclectic Reader', 'McGuffey, William Holmes', '2005-09-26', 130, 'https://www.gutenberg.org/ebooks/16751', 'en', 1019), +(2962, 'The Mormons: A Discourse Delivered Before the Historical Society of Pennsylvania', 'Kane, Thomas L. (Thomas Leiper)', '2016-01-31', 23, 'https://www.gutenberg.org/ebooks/51096', 'en', 310), +(2963, 'Herland', 'Gilman, Charlotte Perkins', '2008-06-27', 843, 'https://www.gutenberg.org/ebooks/32', 'en', 1991), +(2964, 'The Irish Penny Journal, Vol. 1 No. 31, January 30, 1841', 'Various', '2017-05-14', 0, 'https://www.gutenberg.org/ebooks/54722', 'en', 81), +(2965, 'Remember the Alamo!', 'Fehrenbach, T. R.', '2009-10-16', 55, 'https://www.gutenberg.org/ebooks/30267', 'en', 26), +(2966, 'Sketches of Central Asia (1868)\r\nAdditional chapters on my travels, adventures, and on the ethnology of Central Asia', 'Vámbéry, Ármin', '2013-09-22', 14, 'https://www.gutenberg.org/ebooks/43795', 'en', 1992), +(2967, 'Old and New Paris: Its History, Its People, and Its Places, v. 2', 'Edwards, H. Sutherland (Henry Sutherland)', '2013-05-05', 16, 'https://www.gutenberg.org/ebooks/42647', 'en', 1993), +(2968, 'The Mysterious Key and What It Opened', 'Alcott, Louisa May', '2005-05-01', 83, 'https://www.gutenberg.org/ebooks/8188', 'en', 1994), +(2969, 'Memoirs of Napoleon Bonaparte — Volume 10', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 12, 'https://www.gutenberg.org/ebooks/3560', 'en', 1770), +(2970, 'The Theory of Social Revolutions', 'Adams, Brooks', '2008-08-01', 34, 'https://www.gutenberg.org/ebooks/26302', 'en', 1995), +(2971, 'La Légende des Siècles', 'Hugo, Victor', '2004-04-01', 109, 'https://www.gutenberg.org/ebooks/12137', 'fr', 8), +(2972, 'Charlemont; Or, The Pride of the Village. a Tale of Kentucky', 'Simms, William Gilmore', '2004-07-01', 22, 'https://www.gutenberg.org/ebooks/6012', 'en', 1996), +(2973, 'Food for the Mind: Or, A New Riddle-book', 'John-the-Giant-Killer', '2014-11-12', 30, 'https://www.gutenberg.org/ebooks/47335', 'en', 1997), +(2974, 'Freeland: A Social Anticipation', 'Hertzka, Theodor', '2006-02-01', 27, 'https://www.gutenberg.org/ebooks/9866', 'en', 1998), +(2975, 'Bearslayer\nA free translation from the unrhymed Latvian into English heroic verse', 'Pumpurs, Andrejs', '2006-01-02', 53, 'https://www.gutenberg.org/ebooks/17445', 'en', 1999), +(2976, 'Mental Evolution in Man: Origin of Human Faculty', 'Romanes, George John', '2015-11-04', 9, 'https://www.gutenberg.org/ebooks/50382', 'en', 1315), +(2977, 'Nuntempaj Rakontoj', 'Stamatov, G. P. (Georgi Porfirievich)', '2007-12-01', 7, 'https://www.gutenberg.org/ebooks/23670', 'eo', 179), +(2978, 'Cavalry in Future Wars', 'Bernhardi, Friedrich von', '2009-03-09', 18, 'https://www.gutenberg.org/ebooks/28298', 'en', 2000), +(2979, 'The Thirty-Ninth Regiment Massachusetts Volunteers, 1862-1865', 'Roe, Alfred S. (Alfred Seelye)', '2016-02-19', 5, 'https://www.gutenberg.org/ebooks/51250', 'en', 1489), +(2980, 'Square Deal Sanderson', 'Seltzer, Charles Alden', '2005-08-25', 27, 'https://www.gutenberg.org/ebooks/16597', 'en', 315), +(2981, 'The Early History of the Colonial Post-Office', 'Woolley, Mary Emma', '2011-03-30', 9, 'https://www.gutenberg.org/ebooks/35715', 'en', 2001), +(2982, 'Camp Fire Girls in War and Peace', 'Hornibrook, Isabel', '2018-03-26', 6, 'https://www.gutenberg.org/ebooks/56849', 'en', 622), +(2983, 'Välskärin kertomuksia 1\nKuninkaan sormus. Miekka ja aura. Tuli ja vesi.', 'Topelius, Zacharias', '2011-05-22', 28, 'https://www.gutenberg.org/ebooks/36190', 'fi', 2002), +(2984, 'At the Villa Rose', 'Mason, A. E. W. (Alfred Edward Woodley)', '2003-12-01', 51, 'https://www.gutenberg.org/ebooks/4745', 'en', 61), +(2985, 'The Wonder of War on Land', 'Rolt-Wheeler, Francis', '2014-04-23', 7, 'https://www.gutenberg.org/ebooks/45462', 'en', 146), +(2986, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 2)', 'Guizot, François', '2005-03-10', 10, 'https://www.gutenberg.org/ebooks/15312', 'fr', 2003), +(2987, 'The Mystics: A Novel', 'Thurston, Katherine Cecil', '2007-04-17', 9, 'https://www.gutenberg.org/ebooks/21127', 'en', 2004), +(2988, 'Catalogo de los Objetos Etnologicos y Arqueologicos Exhibidos por la Expedición Hemenway', 'Bandelier, Adolph Francis Alphonse', '2012-02-11', 20, 'https://www.gutenberg.org/ebooks/38836', 'es', 2005), +(2989, 'The New Army in Training', 'Kipling, Rudyard', '2016-11-12', 18, 'https://www.gutenberg.org/ebooks/53507', 'en', 2006), +(2990, 'The Coming of the King', 'Hocking, Joseph', '2011-08-11', 18, 'https://www.gutenberg.org/ebooks/37042', 'en', 323), +(2991, 'Tales of Chinatown', 'Rohmer, Sax', '2004-05-01', 97, 'https://www.gutenberg.org/ebooks/5697', 'en', 2007), +(2992, 'Seneca\'s Morals of a Happy Life, Benefits, Anger and Clemency', 'Seneca, Lucius Annaeus', '2017-11-28', 439, 'https://www.gutenberg.org/ebooks/56075', 'en', 680), +(2993, 'I drammi de\' campi\r\nPadre Don Giuseppe—La vendetta—Proprietari e fittaiuoli— Sequestro.', 'Raga, Emilio', '2008-05-25', 2, 'https://www.gutenberg.org/ebooks/25587', 'it', 1544), +(2994, 'Cartoons by Sir John Tenniel, Selected from the Pages of \"Punch\"', 'Tenniel, John', '2019-06-24', 156, 'https://www.gutenberg.org/ebooks/59801', 'en', 2008), +(2995, 'Armageddon—2419 A.D.', 'Nowlan, Philip Francis', '2010-05-26', 271, 'https://www.gutenberg.org/ebooks/32530', 'en', 26), +(2996, 'North American Jumping Mice (Genus Zapus)', 'Krutzsch, Philip H. (Philip Henry)', '2012-06-30', 13, 'https://www.gutenberg.org/ebooks/40110', 'en', 2009), +(2997, 'Father Goriot', 'Balzac, Honoré de', '2004-10-06', 414, 'https://www.gutenberg.org/ebooks/1237', 'en', 2010), +(2998, 'Resumo elementar de archeologia christã', 'Silva, Joaquim Possidónio Narciso da', '2008-01-29', 25, 'https://www.gutenberg.org/ebooks/24455', 'pt', 2011), +(2999, 'Lives of the English Poets\r\nFrom Johnson to Kirke White, Designed as a Continuation of Johnson\'s Lives', 'Cary, Henry Francis', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10660', 'en', 2012), +(3000, 'The Broadway Anthology', 'Pemberton, Murdock', '2005-02-21', 22, 'https://www.gutenberg.org/ebooks/15120', 'en', 2013), +(3001, 'The King\'s Sons', 'Fenn, George Manville', '2007-05-04', 17, 'https://www.gutenberg.org/ebooks/21315', 'en', 195), +(3002, '粉妝樓51-60回', 'Luo, Guanzhong', '2003-10-01', 21, 'https://www.gutenberg.org/ebooks/4577', 'zh', 1574), +(3003, 'L\'Illustration, No. 0058, 6 Avril 1844', 'Various', '2014-05-15', 5, 'https://www.gutenberg.org/ebooks/45650', 'fr', 150), +(3004, 'Dorothy Dixon and the Mystery Plane', 'Wayne, Dorothy', '2014-01-28', 27, 'https://www.gutenberg.org/ebooks/44782', 'en', 2014), +(3005, 'The City in the Clouds', 'Thorne, Guy', '2011-08-30', 21, 'https://www.gutenberg.org/ebooks/37270', 'en', 26), +(3006, 'Other Things Being Equal', 'Wolf, Emma', '1999-08-01', 20, 'https://www.gutenberg.org/ebooks/1839', 'en', 2015), +(3007, 'The Daring Twins: A Story for Young Folk', 'Baum, L. Frank (Lyman Frank)', '2016-12-15', 27, 'https://www.gutenberg.org/ebooks/53735', 'en', 309), +(3008, 'The Romance of the Reaper', 'Casson, Herbert Newton', '2010-06-05', 17, 'https://www.gutenberg.org/ebooks/32702', 'en', 157), +(3009, 'The Teaching of Jesus', 'Jackson, George', '2004-03-01', 33, 'https://www.gutenberg.org/ebooks/11580', 'en', 2016), +(3010, 'Catty Atkins', 'Kelland, Clarence Budington', '2017-12-24', 5, 'https://www.gutenberg.org/ebooks/56247', 'en', 2017), +(3011, 'Aether and Gravitation', 'Hooper, William George', '2008-02-22', 34, 'https://www.gutenberg.org/ebooks/24667', 'en', 2018), +(3012, 'Interim: Pilgrimage, Volume 5', 'Richardson, Dorothy M. (Dorothy Miller)', '2018-06-25', 29, 'https://www.gutenberg.org/ebooks/57395', 'en', 2019), +(3013, 'Peter\'s Mother', 'De La Pasture, Henry, Mrs.', '2003-12-01', 19, 'https://www.gutenberg.org/ebooks/10452', 'en', 432), +(3014, 'Modern Illustration', 'Pennell, Joseph', '2012-07-24', 8, 'https://www.gutenberg.org/ebooks/40322', 'en', 2020), +(3015, 'Divine Comedy, Cary\'s Translation, Hell', 'Dante Alighieri', '2004-08-07', 37, 'https://www.gutenberg.org/ebooks/1005', 'en', 1082), +(3016, 'The Old Yellow Book: Source of Robert Browning\'s The Ring and the Book', NULL, '2011-12-06', 7, 'https://www.gutenberg.org/ebooks/38238', 'en', 2021), +(3017, 'Omoo: Adventures in the South Seas', 'Melville, Herman', '2005-11-01', 6, 'https://www.gutenberg.org/ebooks/9268', 'en', 2022), +(3018, 'Meditations', 'Marcus Aurelius, Emperor of Rome', '2001-06-01', 4488, 'https://www.gutenberg.org/ebooks/2680', 'en', 680), +(3019, 'The 1893 Duryea Automobile In the Museum of History and Technology', 'Berkebile, Donald H.', '2009-09-22', 63, 'https://www.gutenberg.org/ebooks/30055', 'en', 2023), +(3020, 'Stories and Tales of the Irish: A Linked Index to the Project Gutenberg Editions', 'Carleton, William', '2009-05-20', 7, 'https://www.gutenberg.org/ebooks/28896', 'en', 440), +(3021, 'The Athelings; or, the Three Gifts. Vol. 1/3', 'Oliphant, Mrs. (Margaret)', '2017-04-08', 11, 'https://www.gutenberg.org/ebooks/54510', 'en', 2024), +(3022, 'Stories of the Saints by Candle-Light', 'Barclay, Vera C. (Vera Charlesworth)', '2008-07-26', 19, 'https://www.gutenberg.org/ebooks/26130', 'en', 2025), +(3023, 'Punch, or the London Charivari, Volume 99, August 16, 1890', 'Various', '2004-05-01', 4, 'https://www.gutenberg.org/ebooks/12305', 'en', 134), +(3024, 'Tres Homes Dins D\'una Barca (Sense comptar-hi el gos)', 'Jerome, Jerome K. (Jerome Klapka)', '2009-09-09', 52, 'https://www.gutenberg.org/ebooks/29944', 'ca', 2026), +(3025, 'The History of Ancient America, Anterior to the Time of Columbus\r\nProving the Identity of the Aborigines with the Tyrians and Israelites; and the Introduction of Christianity into the Western Hemisphere By The Apostle St. Thomas', 'Jones, George', '2013-04-07', 32, 'https://www.gutenberg.org/ebooks/42475', 'en', 2027), +(3026, 'Voyager\'s Tales', 'Hakluyt, Richard', '2003-02-01', 30, 'https://www.gutenberg.org/ebooks/3752', 'en', 885), +(3027, 'Harper\'s New Monthly Magazine, Volume 1, No. 2, July, 1850.', 'Various', '2010-02-05', 21, 'https://www.gutenberg.org/ebooks/31187', 'en', 387), +(3028, 'The Tree of Appomattox', 'Altsheler, Joseph A. (Joseph Alexander)', '2006-02-04', 37, 'https://www.gutenberg.org/ebooks/17677', 'en', 491), +(3029, 'Thin Edge', 'Garrett, Randall', '2010-01-06', 47, 'https://www.gutenberg.org/ebooks/30869', 'en', 26), +(3030, 'Three Apostles of Quakerism: Popular Sketches of Fox, Penn and Barclay', 'Rhodes, Benjamin', '2015-05-16', 17, 'https://www.gutenberg.org/ebooks/48973', 'en', 2028), +(3031, 'Lyra da Mocidade\r\nPrimeiros Versos', 'Júnior, Faustino Fonseca', '2007-11-11', 14, 'https://www.gutenberg.org/ebooks/23442', 'pt', 8), +(3032, 'The Trespasser, Volume 2', 'Parker, Gilbert', '2004-08-01', 16, 'https://www.gutenberg.org/ebooks/6220', 'en', 1219), +(3033, 'A Catalogue of New Books and New Editions, 1896', 'Bliss, Sands, & Foster', '2014-10-14', 10, 'https://www.gutenberg.org/ebooks/47107', 'en', 2029), +(3034, 'The Haute Noblesse: A Novel', 'Fenn, George Manville', '2011-03-08', 8, 'https://www.gutenberg.org/ebooks/35527', 'en', 61), +(3035, 'Wind', 'Fontenay, Charles L.', '2007-09-12', 55, 'https://www.gutenberg.org/ebooks/22590', 'en', 179), +(3036, 'Literary Tours in The Highlands and Islands of Scotland', 'Holmes, Daniel Turner', '2009-06-20', 22, 'https://www.gutenberg.org/ebooks/29178', 'en', 2030), +(3037, 'New Lights on Old Paths', 'Foster, Charles', '2016-01-28', 10, 'https://www.gutenberg.org/ebooks/51062', 'en', 195), +(3038, 'Jungle Peace', 'Beebe, William', '2011-10-04', 9, 'https://www.gutenberg.org/ebooks/37614', 'en', 2031), +(3039, 'Charles the Bold, Last Duke of Burgundy, 1433-1477', 'Putnam, Ruth', '2004-12-28', 15, 'https://www.gutenberg.org/ebooks/14496', 'en', 2032), +(3040, 'The Gentleman\'s Magazine, January 1731\nOr, Trader\'s Monthly Intelligencer', 'Various', '2016-10-23', 18, 'https://www.gutenberg.org/ebooks/53351', 'en', 2033), +(3041, 'Th. M. Dostojewsky: Eine biographische Studie', 'Hoffmann, Nina', '2016-06-09', 16, 'https://www.gutenberg.org/ebooks/52283', 'de', 2034), +(3042, 'Love Letters of a Rookie to Julie', 'Stone, Barney', '2005-04-04', 7, 'https://www.gutenberg.org/ebooks/15544', 'en', 93), +(3043, 'Georgina\'s Reasons', 'James, Henry', '2007-06-08', 27, 'https://www.gutenberg.org/ebooks/21771', 'en', 2035), +(3044, 'Christopher Columbus and the New World of His Discovery — Volume 6', 'Young, Filson', '2004-12-05', 18, 'https://www.gutenberg.org/ebooks/4113', 'en', 2036), +(3045, 'After Prison--What?', 'Booth, Maud Ballington', '2014-03-27', 11, 'https://www.gutenberg.org/ebooks/45234', 'en', 2037), +(3046, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 12, No. 32, November, 1873', 'Various', '2008-01-07', 13, 'https://www.gutenberg.org/ebooks/24203', 'en', 162), +(3047, 'Punchinello, Volume 2, No. 28, October 8, 1870', 'Various', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10036', 'en', 372), +(3048, 'First Impressions on a Tour upon the Continent\r\nIn the summer of 1818 through parts of France, Italy, Switzerland, the borders of Germany, and a part of French Flanders', 'Baillie, Marianne', '2012-09-13', 11, 'https://www.gutenberg.org/ebooks/40746', 'en', 1408), +(3049, 'A Legend of Montrose', 'Scott, Walter', '2006-02-15', 69, 'https://www.gutenberg.org/ebooks/1461', 'en', 98), +(3050, 'Et Aar', 'Nielsen, Antonius', '2010-05-13', 5, 'https://www.gutenberg.org/ebooks/32366', 'da', 61), +(3051, 'Turner: Five letters and a postscript.', 'Hind, C. Lewis (Charles Lewis)', '2012-12-23', 21, 'https://www.gutenberg.org/ebooks/41694', 'en', 2038), +(3052, 'Quaint Korea', 'Miln, Louise Jordan', '2018-02-22', 34, 'https://www.gutenberg.org/ebooks/56623', 'en', 2039), +(3053, 'De vreemde plant', 'Robbers, Herman Johan', '2008-09-07', 8, 'https://www.gutenberg.org/ebooks/26554', 'nl', 61), +(3054, 'Blackwood\'s Edinburgh Magazine — Volume 53, No. 329, March, 1843', 'Various', '2004-06-28', 13, 'https://www.gutenberg.org/ebooks/12761', 'en', 711), +(3055, 'Child Songs of Cheer', 'Stein, Evaleen', '2006-09-27', 31, 'https://www.gutenberg.org/ebooks/19389', 'en', 859), +(3056, 'Pabo, the Priest: A Novel', 'Baring-Gould, S. (Sabine)', '2013-02-04', 38, 'https://www.gutenberg.org/ebooks/42011', 'en', 2040), +(3057, 'Within an Inch of His Life', 'Gaboriau, Emile', '2006-04-06', 77, 'https://www.gutenberg.org/ebooks/3336', 'en', 2041), +(3058, 'Calumet \'K\'', 'Merwin, Samuel', '2009-11-08', 31, 'https://www.gutenberg.org/ebooks/30431', 'en', 2042), +(3059, 'Rouva de la Motte', 'Dumas, Alexandre', '2017-02-16', 4, 'https://www.gutenberg.org/ebooks/54174', 'fi', 2043), +(3060, 'De Vurige Oven: Een verhaal uit den tijd der dragonades in Nederland', 'Wormser, J. A.', '2008-12-10', 10, 'https://www.gutenberg.org/ebooks/27486', 'nl', 98), +(3061, 'The Martins Of Cro\' Martin, Vol. I (of II)', 'Lever, Charles James', '2011-02-02', 8, 'https://www.gutenberg.org/ebooks/35143', 'en', 2044), +(3062, 'Poems', 'Cawein, Madison Julius', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7796', 'en', 178), +(3063, 'Kuningasten jälkeläinen: Seikkailuromaani', 'Treller, Franz', '2016-03-09', 9, 'https://www.gutenberg.org/ebooks/51406', 'fi', 1103), +(3064, 'The Future of Islam', 'Blunt, Wilfrid Scawen', '2005-12-03', 89, 'https://www.gutenberg.org/ebooks/17213', 'en', 2045), +(3065, 'The Phantom of the River', 'Ellis, Edward Sylvester', '2007-10-13', 18, 'https://www.gutenberg.org/ebooks/23026', 'en', 2046), +(3066, 'Del libro impreso al libro digital', 'Lebert, Marie', '2010-10-17', 53, 'https://www.gutenberg.org/ebooks/34091', 'es', 2047), +(3067, 'Poems', 'Mercer, S. C. (Samuel C.)', '2017-06-20', 9, 'https://www.gutenberg.org/ebooks/54948', 'en', 178), +(3068, 'Der Barometermacher auf der Zauberinsel', 'Raimund, Ferdinand', '2004-10-01', 14, 'https://www.gutenberg.org/ebooks/6644', 'de', 907), +(3069, 'Jim: The Story of a Backwoods Police Dog', 'Roberts, Charles G. D., Sir', '2014-12-07', 12, 'https://www.gutenberg.org/ebooks/47563', 'en', 729), +(3070, 'The Fall of the Year', 'Sharp, Dallas Lore', '2013-02-27', 28, 'https://www.gutenberg.org/ebooks/42223', 'en', 1216), +(3071, 'The Golden House', 'Warner, Charles Dudley', '2004-10-10', 24, 'https://www.gutenberg.org/ebooks/3104', 'en', 50), +(3072, 'Henri VIII', 'Shakespeare, William', '2008-10-03', 43, 'https://www.gutenberg.org/ebooks/26766', 'fr', 2048), +(3073, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 554, June 30, 1832', 'Various', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/12553', 'en', 133), +(3074, 'Poetical Works of Robert Bridges, Volume 3', 'Bridges, Robert', '2017-08-07', 6, 'https://www.gutenberg.org/ebooks/55294', 'en', 54), +(3075, 'Queens of the Renaissance', 'Ryley, M. Beresford', '2017-03-12', 13, 'https://www.gutenberg.org/ebooks/54346', 'en', 2049), +(3076, 'Roman life in the days of Cicero', 'Church, Alfred John', '2004-09-16', 19, 'https://www.gutenberg.org/ebooks/13481', 'en', 2050), +(3077, 'Lente', 'Buysse, Cyriel', '2006-03-29', 29, 'https://www.gutenberg.org/ebooks/18069', 'nl', 319), +(3078, 'Russia in the Shadows', 'Wells, H. G. (Herbert George)', '2019-08-26', 0, 'https://www.gutenberg.org/ebooks/60173', 'en', NULL), +(3079, 'Histoire du Consulat et de l\'Empire, (Vol. 03 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2009-12-04', 6, 'https://www.gutenberg.org/ebooks/30603', 'fr', 2051), +(3080, 'Straw Hats: Their history and manufacture', 'Inwards, Harry', '2015-04-16', 10, 'https://www.gutenberg.org/ebooks/48719', 'en', 2052), +(3081, 'A Woodland Queen (\'Reine des Bois\') — Complete', 'Theuriet, André', '2004-10-30', 15, 'https://www.gutenberg.org/ebooks/3938', 'en', 1225), +(3082, 'Fifty Years in the Church of Rome', 'Chiniquy, Charles Paschal Telesphore', '2016-04-02', 36, 'https://www.gutenberg.org/ebooks/51634', 'en', 2053), +(3083, 'Chronique du crime et de l\'innocence, tome 1/8\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2014-08-25', 37, 'https://www.gutenberg.org/ebooks/46683', 'fr', 2054), +(3084, 'Withered Leaves: A Novel. Vol. I. (of III)', 'Gottschall, Rudolf von', '2011-02-23', 18, 'https://www.gutenberg.org/ebooks/35371', 'en', 803), +(3085, 'Chapters from My Autobiography', 'Twain, Mark', '2006-12-01', 122, 'https://www.gutenberg.org/ebooks/19987', 'en', 836), +(3086, 'The Return', 'McGuire, John Joseph', '2006-07-17', 79, 'https://www.gutenberg.org/ebooks/18855', 'en', 26), +(3087, 'A Theological-Political Treatise [Part III]', 'Spinoza, Benedict of', '1997-07-16', 111, 'https://www.gutenberg.org/ebooks/991', 'en', 2055), +(3088, 'Himalayan Journals — Volume 1\r\nOr, Notes of a Naturalist in Bengal, the Sikkim and Nepal Himalayas, the Khasia Mountains, etc.', 'Hooker, Joseph Dalton', '2004-09-01', 19, 'https://www.gutenberg.org/ebooks/6476', 'en', 1546), +(3089, 'Graham\'s Magazine, Vol. XLI, No. 3, September 1852', 'Various', '2014-12-23', 14, 'https://www.gutenberg.org/ebooks/47751', 'en', 380), +(3090, 'Watch and Clock Escapements\nA Complete Study in Theory and Practice of the Lever, Cylinder and Chronometer Escapements, Together with a Brief Account of the Origin and Evolution of the Escapement in Horology', 'Anonymous', '2005-11-06', 54, 'https://www.gutenberg.org/ebooks/17021', 'en', 2056), +(3091, 'Fostina Woodman, the Wonderful Adventurer', 'Stanwood, Avis A. Burnham', '2007-10-27', 5, 'https://www.gutenberg.org/ebooks/23214', 'en', 2057), +(3092, 'Kafir Stories: Seven Short Stories', 'Scully, W. C. (William Charles)', '2007-01-31', 29, 'https://www.gutenberg.org/ebooks/20491', 'en', 2058), +(3093, 'Essays in Librarianship and Bibliography', 'Garnett, Richard', '2016-09-28', 14, 'https://www.gutenberg.org/ebooks/53163', 'en', 2059), +(3094, 'Whirlpools: A Novel of Modern Poland', 'Sienkiewicz, Henryk', '2011-09-15', 12, 'https://www.gutenberg.org/ebooks/37426', 'en', 1316), +(3095, 'Margot Asquith, an Autobiography - Two Volumes in One', 'Asquith, Margot', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4321', 'en', 2060), +(3096, 'General Smith\'s Views of the Powers and Policy of the Government of the United States', 'Smith, Joseph, Jr.', '2014-02-25', 41, 'https://www.gutenberg.org/ebooks/45006', 'en', 1440), +(3097, 'The Economic Consequences of the Peace', 'Keynes, John Maynard', '2005-05-06', 345, 'https://www.gutenberg.org/ebooks/15776', 'en', 2061), +(3098, 'The Expositor\'s Bible: The Epistle to the Hebrews', 'Edwards, Thomas Charles', '2010-06-24', 28, 'https://www.gutenberg.org/ebooks/32968', 'en', 2062), +(3099, 'Kapteeni Singletonin seikkailut', 'Defoe, Daniel', '2019-05-08', 8, 'https://www.gutenberg.org/ebooks/59459', 'fi', 324), +(3100, 'French Pathfinders in North America', 'Johnson, William Henry', '2007-05-20', 17, 'https://www.gutenberg.org/ebooks/21543', 'en', 278), +(3101, 'The Ranche on the Oxhide: A Story of Boys\' and Girls\' Life on the Frontier', 'Inman, Henry', '2012-08-24', 22, 'https://www.gutenberg.org/ebooks/40574', 'en', 2063), +(3102, 'The Imitation of Christ', 'Thomas, à Kempis', '1999-02-01', 775, 'https://www.gutenberg.org/ebooks/1653', 'en', 2064), +(3103, 'The Duchess of Wrexe, Her Decline and Death; A Romantic Commentary', 'Walpole, Hugh', '2010-07-05', 20, 'https://www.gutenberg.org/ebooks/33086', 'en', 2065), +(3104, 'El teatro por dentro\r\nAutores, comediantes, escenas de la vida de bastidores, etc.', 'Zamacois, Eduardo', '2007-12-25', 17, 'https://www.gutenberg.org/ebooks/24031', 'es', 2066), +(3105, 'Charge of the Light Brigade', 'Landfrey, Kenneth', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/10204', 'en', 2067), +(3106, 'St. Andrews Ghost Stories\nFourth Edition', 'Linskill, William Thomas', '2018-01-21', 29, 'https://www.gutenberg.org/ebooks/56411', 'en', 531), +(3107, 'The Variable Man', 'Dick, Philip K.', '2010-04-27', 330, 'https://www.gutenberg.org/ebooks/32154', 'en', 26), +(3108, 'Mary Tudor, Queen of France', 'Brown, Mary Croom', '2015-02-06', 25, 'https://www.gutenberg.org/ebooks/48184', 'en', 2068), +(3109, 'Harmaja linna: Romaani', 'Koskimaa, Juho', '2016-01-17', 8, 'https://www.gutenberg.org/ebooks/50947', 'fi', 175), +(3110, 'Le multilinguisme sur le Web', 'Lebert, Marie', '2008-10-26', 28, 'https://www.gutenberg.org/ebooks/27029', 'fr', 2069), +(3111, 'Oliver Twist', 'Dickens, Charles', '1996-11-01', 2629, 'https://www.gutenberg.org/ebooks/730', 'en', 1079), +(3112, 'The Door Through Space', 'Bradley, Marion Zimmer', '2006-11-06', 183, 'https://www.gutenberg.org/ebooks/19726', 'en', 26), +(3113, 'An Account of the Danes and Norwegians in England, Scotland, and Ireland', 'Worsaae, Jens Jacob Asmussen', '2017-08-21', 22, 'https://www.gutenberg.org/ebooks/55409', 'en', 2070), +(3114, 'Souvenir Album of the Great European War\nWith Pictorial Maps of the Battlegrounds', 'Anonymous', '2014-09-09', 17, 'https://www.gutenberg.org/ebooks/46822', 'en', 2071), +(3115, 'Lentävä hollantilainen', 'Marryat, Frederick', '2016-04-30', 20, 'https://www.gutenberg.org/ebooks/51895', 'fi', 324), +(3116, 'The Bible, Douay-Rheims, Book 71: 3 John\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8371', 'en', 2072), +(3117, 'Landholding in England', 'Fisher, Joseph, F.R.H.S.', '2003-02-01', 24, 'https://www.gutenberg.org/ebooks/3799', 'en', 2073), +(3118, 'Liberation: Marines in the Recapture of Guam', 'O\'Brien, Cyril J.', '2015-05-27', 38, 'https://www.gutenberg.org/ebooks/49056', 'en', 2074), +(3119, 'Godfrey Morgan: A Californian Mystery', 'Verne, Jules', '2007-11-15', 85, 'https://www.gutenberg.org/ebooks/23489', 'en', 128), +(3120, 'Λουκιανός - Άπαντα, Τόμος Τέταρτος', 'Lucian, of Samosata', '2009-02-13', 10, 'https://www.gutenberg.org/ebooks/28061', 'el', 1635), +(3121, 'The Celtic Magazine, Vol. 1, No. 2, December 1875\r\nA Monthly Periodical Devoted to the Literature, History, Antiquities, Folk Lore, Traditions, and the Social and Material Interests of the Celt at Home and Abroad', 'Various', '2009-01-15', 24, 'https://www.gutenberg.org/ebooks/27815', 'en', 2075), +(3122, 'An Account of Sa-Go-Ye-Wat-Ha, or Red Jacket, and His People, 1750-1830', 'Hubbard, John Niles', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7339', 'en', 2076), +(3123, 'Feline Red', 'Sampson, Robert', '2010-04-12', 12, 'https://www.gutenberg.org/ebooks/31970', 'en', 179), +(3124, 'L\'Illustration, No. 3689, 8 Novembre 1913', 'Various', '2011-06-10', 4, 'https://www.gutenberg.org/ebooks/36369', 'fr', 150), +(3125, 'Mémoires de l\'Impératrice Catherine II.\nÉcrits par elle-même', 'Catherine II, Empress of Russia', '2014-01-24', 15, 'https://www.gutenberg.org/ebooks/44749', 'fr', 2077), +(3126, 'Il fiume Bianco e i Dénka: Memorie', 'Beltrame, G. (Gianni)', '2018-11-20', 8, 'https://www.gutenberg.org/ebooks/58316', 'it', 2078), +(3127, 'Through stained glass\r\nA Novel', 'Chamberlain, George Agnew', '2004-11-14', 12, 'https://www.gutenberg.org/ebooks/14039', 'en', 2079), +(3128, 'Old Flies in New Dresses\r\nHow to Dress Dry Flies with the Wings in the Natural Position and Some New Wet Flies', 'Walker, Charles Edward', '2012-04-01', 21, 'https://www.gutenberg.org/ebooks/39321', 'en', 2080), +(3129, 'Delia\'s Gone', 'McGuinn, Roger', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/10499', 'en', 1379), +(3130, 'Les trophées', 'Heredia, José-Maria de', '2005-01-25', 25, 'https://www.gutenberg.org/ebooks/14805', 'fr', 8), +(3131, 'Susien saaliina', 'London, Jack', '2018-03-31', 10, 'https://www.gutenberg.org/ebooks/56882', 'fi', 323), +(3132, 'Puvis de Chavannes', 'Crastre, François', '2013-01-13', 7, 'https://www.gutenberg.org/ebooks/41835', 'en', 2081), +(3133, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 06\r\nThe Early Roman Empire', NULL, '2018-10-17', 23, 'https://www.gutenberg.org/ebooks/58124', 'en', 346), +(3134, 'The Locusts\' Years', 'Fee, Mary H. (Mary Helen)', '2011-08-14', 14, 'https://www.gutenberg.org/ebooks/37089', 'en', 705), +(3135, 'The Grey Monk', 'Speight, T. W. (Thomas Wilkinson)', '2018-09-22', 11, 'https://www.gutenberg.org/ebooks/57950', 'en', 137), +(3136, 'Human Genome Project, Build 34, Chromosome Number 05', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11779', 'en', 1385), +(3137, 'A West Country Pilgrimage', 'Phillpotts, Eden', '2011-08-03', 25, 'https://www.gutenberg.org/ebooks/36967', 'en', 2082), +(3138, 'A Rose of Yesterday', 'Crawford, F. Marion (Francis Marion)', '2012-10-09', 6, 'https://www.gutenberg.org/ebooks/41009', 'en', 2083), +(3139, 'Los hermanos Plantagenet', 'Fernández y González, Manuel', '2012-03-12', 26, 'https://www.gutenberg.org/ebooks/39113', 'es', 98), +(3140, 'Vaccination a Delusion: Its Penal Enforcement a Crime\r\nProved by the Official Evidence in the Reports of the Royal Commission', 'Wallace, Alfred Russel', '2019-02-19', 33, 'https://www.gutenberg.org/ebooks/58918', 'en', 2084), +(3141, 'The Philosophy of the Weather. And a Guide to Its Changes', 'Butler, T. B. (Thomas Belden)', '2010-08-14', 9, 'https://www.gutenberg.org/ebooks/33429', 'en', 2085), +(3142, 'Ĉe la koro de la tero', 'Burroughs, Edgar Rice', '2007-03-12', 38, 'https://www.gutenberg.org/ebooks/20802', 'eo', 26), +(3143, 'Desert Gold', 'Grey, Zane', '1996-04-01', 159, 'https://www.gutenberg.org/ebooks/502', 'en', 315), +(3144, 'Ester Ried Yet Speaking', 'Pansy', '2005-10-01', 14, 'https://www.gutenberg.org/ebooks/9091', 'en', 2086), +(3145, 'The Friendly Road: New Adventures in Contentment', 'Grayson, David', '2001-01-01', 16, 'https://www.gutenberg.org/ebooks/2479', 'en', 2087), +(3146, 'The Shadow of the East', 'Hull, E. M. (Edith Maude)', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8143', 'en', 2088), +(3147, 'My Escape from Donington Hall, Preceded by an Account of the Siege of Kiao-Chow in 1915', 'Plüschow, Gunther', '2015-06-23', 14, 'https://www.gutenberg.org/ebooks/49264', 'en', 2089), +(3148, 'Journal of an African Cruiser\r\nComprising Sketches of the Canaries, the Cape De Verds, Liberia, Madeira, Sierra Leone, and Other Places of Interest on the West Coast of Africa', 'Bridge, Horatio', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7937', 'en', 1332), +(3149, 'A Little Princess', 'Burnett, Frances Hodgson', '2006-10-11', 20, 'https://www.gutenberg.org/ebooks/19514', 'en', 1779), +(3150, 'Sir Mortimer: A Novel', 'Johnston, Mary', '2004-10-20', 21, 'https://www.gutenberg.org/ebooks/13812', 'en', 98), +(3151, 'McGill and its Story, 1821-1921', 'MacMillan, Cyrus', '2009-03-05', 10, 'https://www.gutenberg.org/ebooks/28253', 'en', 2090), +(3152, 'A Basket of Barley Loaves', 'Miller, Mary Christina', '2015-10-31', 8, 'https://www.gutenberg.org/ebooks/50349', 'en', 1130), +(3153, 'L\'enfer (2 of 2)\nLa Divine Comédie - Traduit par Rivarol', 'Dante Alighieri', '2007-09-26', 31, 'https://www.gutenberg.org/ebooks/22769', 'fr', 2091), +(3154, 'The Works of Charles James Lever\r\nAn Index of the Project Gutenberg Works of Lever', 'Lever, Charles James', '2009-07-11', 9, 'https://www.gutenberg.org/ebooks/29381', 'en', 198), +(3155, 'Old Friends Are the Best', 'Sharkey, Jack', '2010-10-18', 18, 'https://www.gutenberg.org/ebooks/33871', 'en', 179), +(3156, 'Certain delightful English towns, with glimpses of the pleasant country between', 'Howells, William Dean', '2018-12-26', 18, 'https://www.gutenberg.org/ebooks/58540', 'en', 776), +(3157, 'The Confessions of Harry Lorrequer — Volume 5', 'Lever, Charles James', '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/5238', 'en', 61), +(3158, 'The Khaki Kook Book\nA Collection of a Hundred Cheap and Practical Recipes\nMostly from Hindustan', 'Core, Mary Kennedy', '2008-06-27', 100, 'https://www.gutenberg.org/ebooks/25914', 'en', 2092), +(3159, 'The Reluctant Dragon', 'Grahame, Kenneth', '2007-05-25', 34, 'https://www.gutenberg.org/ebooks/21588', 'en', 2093), +(3160, 'Don Álvaro, o, La fuerza del Sino', 'Rivas, Angel de Saavedra, duque de', '2019-05-13', 29, 'https://www.gutenberg.org/ebooks/59492', 'es', 2094), +(3161, 'Stella Maris', 'Locke, William John', '2017-01-18', 26, 'https://www.gutenberg.org/ebooks/53994', 'en', 2095), +(3162, 'The Survivors of the Chancellor', 'Verne, Jules', '1999-04-01', 45, 'https://www.gutenberg.org/ebooks/1698', 'en', 1391), +(3163, 'The Camp Fire Girls at Half Moon Lake', 'Vandercook, Margaret', '2018-07-15', 6, 'https://www.gutenberg.org/ebooks/57508', 'en', 2096), +(3164, 'Slim Evans and His Horse Lightning', 'Dean, Graham M.', '2014-02-15', 17, 'https://www.gutenberg.org/ebooks/44923', 'en', 315), +(3165, '孽海花', 'Zeng, Pu', '2008-04-22', 22, 'https://www.gutenberg.org/ebooks/25128', 'zh', 2097), +(3166, 'Old Friends at Cambridge and Elsewhere', 'Clark, John Willis', '2016-08-18', 4, 'https://www.gutenberg.org/ebooks/52846', 'en', 2098), +(3167, 'The Broncho Rider Boys with the Texas Rangers\r\nOr, The Capture of the Smugglers on the Rio Grande', 'Fowler, Frank', '2012-04-30', 12, 'https://www.gutenberg.org/ebooks/39577', 'en', 2099), +(3168, '\'Hello, Soldier!\'\r\nKhaki Verse', 'Dyson, Edward', '2005-10-19', 9, 'https://www.gutenberg.org/ebooks/16904', 'en', 2100), +(3169, 'Eve\'s Diary, Part 2', 'Twain, Mark', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/8527', 'en', 2101), +(3170, 'Maamme kirja', 'Topelius, Zacharias', '2015-08-04', 14, 'https://www.gutenberg.org/ebooks/49600', 'fi', 2102), +(3171, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 481, March 19, 1831', 'Various', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12598', 'en', 133), +(3172, 'Primavera: Poems by Four Authors', 'Phillips, Stephen', '2006-09-04', 33, 'https://www.gutenberg.org/ebooks/19170', 'en', 8), +(3173, 'Summer', 'Wharton, Edith', '2006-03-12', 238, 'https://www.gutenberg.org/ebooks/166', 'en', 2103), +(3174, 'The Cromptons', 'Holmes, Mary Jane', '2005-06-27', 9, 'https://www.gutenberg.org/ebooks/16138', 'en', 61), +(3175, 'An Old English Home and Its Dependencies', 'Baring-Gould, S. (Sabine)', '2014-08-21', 43, 'https://www.gutenberg.org/ebooks/46648', 'en', 226), +(3176, 'Spinning Tops\r\nThe \"Operatives\' Lecture\" of the British Association Meeting at Leeds, 6th September, 1890', 'Perry, John', '2010-11-09', 17, 'https://www.gutenberg.org/ebooks/34268', 'en', 2104), +(3177, 'The Marriage of Elinor', 'Oliphant, Mrs. (Margaret)', '2009-04-29', 12, 'https://www.gutenberg.org/ebooks/28637', 'en', 434), +(3178, 'The Story of the Gadsbys', 'Kipling, Rudyard', '2001-09-01', 24, 'https://www.gutenberg.org/ebooks/2821', 'en', 1228), +(3179, 'Complete Hypnotism, Mesmerism, Mind-Reading and Spiritualism\r\nHow to Hypnotize: Being an Exhaustive and Practical System of Method, Application, and Use', 'Alpheus, A.', '2006-09-20', 103, 'https://www.gutenberg.org/ebooks/19342', 'en', 2105), +(3180, 'Doubloons—and the Girl', 'Forbes, John Maxwell', '2010-03-06', 19, 'https://www.gutenberg.org/ebooks/31528', 'en', 323), +(3181, 'Gallantry: Dizain des Fetes Galantes', 'Cabell, James Branch', '2005-08-01', 15, 'https://www.gutenberg.org/ebooks/8715', 'en', 179), +(3182, 'The Expedition to Borneo of H.M.S. Dido\nFor the Suppression of Piracy', 'James, Rajah of Sarawak', '2007-10-06', 40, 'https://www.gutenberg.org/ebooks/22903', 'en', 2106), +(3183, 'The Myth of the \"Manuscript Found,\" or the Absurdities of the \"Spaulding Story\"\r\nEleventh Book of the Faith-promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints.', NULL, '2015-07-12', 26, 'https://www.gutenberg.org/ebooks/49432', 'en', 2107), +(3184, 'White Turrets', 'Molesworth, Mrs.', '2013-07-06', 10, 'https://www.gutenberg.org/ebooks/43108', 'en', 45), +(3185, 'The Story of a Pioneer', 'Shaw, Anna Howard', '1995-11-01', 73, 'https://www.gutenberg.org/ebooks/354', 'en', 2108), +(3186, 'Chapters on Jewish Literature', 'Abrahams, Israel', '2004-10-06', 44, 'https://www.gutenberg.org/ebooks/13678', 'en', 2109), +(3187, 'The Ports, Harbours, Watering-places and Picturesque Scenery of Great Britain Vol. 1', 'Finden, W. (William)', '2011-01-06', 19, 'https://www.gutenberg.org/ebooks/34866', 'en', 2110), +(3188, 'Great Indian Chief of the West; Or, Life and Adventures of Black Hawk', 'Drake, Benjamin', '2006-04-30', 15, 'https://www.gutenberg.org/ebooks/18290', 'en', 2111), +(3189, 'The Wishing Horse of Oz', 'Thompson, Ruth Plumly', '2017-10-30', 43, 'https://www.gutenberg.org/ebooks/55851', 'en', 580), +(3190, 'The Fire Bird', 'Stratton-Porter, Gene', '2011-02-06', 39, 'https://www.gutenberg.org/ebooks/35188', 'en', 178), +(3191, 'Harbor Jim of Newfoundland', 'Bartlett, Alden Eugene', '2013-10-11', 6, 'https://www.gutenberg.org/ebooks/43934', 'en', 2112), +(3192, 'Notes and Queries, Number 223, February 4, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-03-25', 5, 'https://www.gutenberg.org/ebooks/28405', 'en', 105), +(3193, 'Les aventures d\'une fourmi rouge et les mémoires d\'un pierrot', 'La Blanchère, Henri de', '2017-06-26', 26, 'https://www.gutenberg.org/ebooks/54983', 'fr', 2113), +(3194, 'Kunnon Kasper ja kaunis Anni', 'Brentano, Clemens', '2019-01-26', 5, 'https://www.gutenberg.org/ebooks/58772', 'fi', 2114), +(3195, 'The Tribes and Castes of the Central Provinces of India, Volume 4', 'Russell, R. V. (Robert Vane)', '2007-02-25', 127, 'https://www.gutenberg.org/ebooks/20668', 'en', 2115), +(3196, 'Across South America\r\nAn account of a journey from Buenos Aires to Lima by way of Potosí, with notes on Brazil, Argentina, Bolivia, Chile, and Peru', 'Bingham, Hiram', '2016-06-06', 31, 'https://www.gutenberg.org/ebooks/52248', 'en', 227), +(3197, 'Mr. Meeson\'s Will', 'Haggard, H. Rider (Henry Rider)', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/11913', 'en', 128), +(3198, 'Sketches New and Old, Part 1.', 'Twain, Mark', '2004-06-25', 13, 'https://www.gutenberg.org/ebooks/5836', 'en', 2116), +(3199, '殉情詩集', 'Sato, Haruo', '2012-01-28', 28, 'https://www.gutenberg.org/ebooks/38697', 'ja', 2117), +(3200, 'Folle-Farine', 'Ouida', '2012-05-20', 17, 'https://www.gutenberg.org/ebooks/39745', 'en', 2118), +(3201, 'Historia de los Judíos en España\r\ndesde los tiempos de su establecimiento hasta principios del present siglo', 'Castro, Adolfo de', '2010-10-27', 43, 'https://www.gutenberg.org/ebooks/33885', 'es', 2119), +(3202, 'Simon Eichelkatz; The Patriarch. Two Stories of Jewish Life', 'Frank, Ulrich', '2011-09-13', 110, 'https://www.gutenberg.org/ebooks/37419', 'en', 2120), +(3203, 'Labrador Days\nTales of the Sea Toilers', 'Grenfell, Wilfred Thomason, Sir', '2008-03-15', 8, 'https://www.gutenberg.org/ebooks/24832', 'en', 1690), +(3204, 'Punch or the London Charivari, Vol. 109, September 28, 1895', 'Various', '2014-02-28', 5, 'https://www.gutenberg.org/ebooks/45039', 'en', 134), +(3205, 'The Interest of America in Sea Power, Present and Future', 'Mahan, A. T. (Alfred Thayer)', '2005-05-02', 62, 'https://www.gutenberg.org/ebooks/15749', 'en', 2121), +(3206, 'Harper\'s Round Table, May 7, 1895', 'Various', '2010-06-23', 6, 'https://www.gutenberg.org/ebooks/32957', 'en', 668), +(3207, 'London and Its Environs Described, vol. 1 (of 6)\r\nContaining an Account of Whatever Is Most Remarkable for Grandeur, Elegance, Curiosity or Use, in the City and in the Country Twenty Miles Round It.', 'Anonymous', '2019-05-09', 90, 'https://www.gutenberg.org/ebooks/59466', 'en', 2122), +(3208, 'Graham\'s Magazine, Vol. XXXIV, No. 5, May 1849', 'Various', '2017-01-14', 7, 'https://www.gutenberg.org/ebooks/53960', 'en', 162), +(3209, 'Tahiti: Roman aus der Südsee. Dritter Band.', 'Gerstäcker, Friedrich', '2012-01-01', 19, 'https://www.gutenberg.org/ebooks/38451', 'de', 2123), +(3210, 'Recently Recovered \"Lost\" Tudor Plays with some others', NULL, '2014-05-28', 16, 'https://www.gutenberg.org/ebooks/45805', 'en', 1790), +(3211, 'Through the Land of the Serb', 'Durham, M. E. (Mary Edith)', '2012-11-27', 16, 'https://www.gutenberg.org/ebooks/41499', 'en', 2124), +(3212, 'Punch, or the London Charivari, Vol. 107, July 14th 1894', 'Various', '2012-04-30', 2, 'https://www.gutenberg.org/ebooks/39583', 'en', 134), +(3213, 'La carrosse aux deux lézards verts', 'Boylesve, René', '2006-09-05', 11, 'https://www.gutenberg.org/ebooks/19184', 'fr', 61), +(3214, 'La vie et la mort du roi Richard III', 'Shakespeare, William', '2008-10-03', 23, 'https://www.gutenberg.org/ebooks/26759', 'fr', 599), +(3215, 'Vanha pappila', 'Kianto, Ilmari', '2017-03-17', 17, 'https://www.gutenberg.org/ebooks/54379', 'fi', 175), +(3216, 'The Tin Soldier', 'Bailey, Temple', '2006-03-27', 54, 'https://www.gutenberg.org/ebooks/18056', 'en', 579), +(3217, 'Diane of Ville Marie: A Romance of French Canada', 'Macdonnell, Blanche Lucile', '2015-04-17', 7, 'https://www.gutenberg.org/ebooks/48726', 'en', 2125), +(3218, 'The Leopard Woman', 'White, Stewart Edward', '2005-12-01', 23, 'https://www.gutenberg.org/ebooks/9401', 'en', 2126), +(3219, 'Prometheus ontboeid: Een lyrisch drama in vier bedrijven', 'Shelley, Percy Bysshe', '2006-02-22', 23, 'https://www.gutenberg.org/ebooks/17822', 'nl', 2127), +(3220, 'The Confessions of Jean Jacques Rousseau — Volume 07', 'Rousseau, Jean-Jacques', '2004-12-06', 12, 'https://www.gutenberg.org/ebooks/3907', 'en', 608), +(3221, 'Another Sheaf', 'Galsworthy, John', '2009-08-17', 27, 'https://www.gutenberg.org/ebooks/29711', 'en', 20), +(3222, 'Little Journeys to the Homes of the Great - Volume 09\r\nLittle Journeys to the Homes of Great Reformers', 'Hubbard, Elbert', '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6449', 'en', 1148), +(3223, 'The Federal Reserve Monster', NULL, '2017-07-14', 15, 'https://www.gutenberg.org/ebooks/55099', 'en', 2128), +(3224, 'The Golden Galleon\r\nBeing a Narrative of the Adventures of Master Gilbert Oglander, and of how, in the Year 1591, he fought under the gallant Sir Richard Grenville in the Great Sea-fight off Flores, on board her Majesty\'s Ship the Revenge', 'Leighton, Robert', '2011-04-23', 17, 'https://www.gutenberg.org/ebooks/35940', 'en', 2129), +(3225, 'Manners and Monuments of Prehistoric Peoples', 'Nadaillac, Jean-François-Albert du Pouget, marquis de', '2002-07-01', 23, 'https://www.gutenberg.org/ebooks/3309', 'en', 1381), +(3226, '施公案', 'Anonymous', '2007-12-11', 45, 'https://www.gutenberg.org/ebooks/23825', 'zh', 1003), +(3227, 'The Lake-Dwellings of Europe\nBeing the Rhind Lectures in Archæology for 1888', 'Munro, Robert', '2015-03-17', 11, 'https://www.gutenberg.org/ebooks/48514', 'en', 2130), +(3228, 'Sir George Tressady — Volume I', 'Ward, Humphry, Mrs.', '2006-01-01', 23, 'https://www.gutenberg.org/ebooks/9633', 'en', 401), +(3229, 'Within The Enemy\'s Lines', 'Optic, Oliver', '2006-06-15', 47, 'https://www.gutenberg.org/ebooks/18264', 'en', 2131), +(3230, 'Castle Hohenwald: A Romance', 'Streckfuss, Adolf', '2011-01-09', 7, 'https://www.gutenberg.org/ebooks/34892', 'en', 803), +(3231, 'Taxidermy without a Teacher\r\nComprising a Complete Manual of Instruction for Preparing and Preserving Birds, Animals and Fishes', 'Manton, Walter Porter', '2016-03-13', 6, 'https://www.gutenberg.org/ebooks/51439', 'en', 2132), +(3232, 'Katharine Frensham: A Novel', 'Harraden, Beatrice', '2013-05-26', 20, 'https://www.gutenberg.org/ebooks/42812', 'en', 2133), +(3233, 'Le poète et l\'inspiration\nOrné et gravé par Armand Coussens', 'Jammes, Francis', '2009-07-27', 12, 'https://www.gutenberg.org/ebooks/29523', 'fr', 8), +(3234, 'Souvenirs de Madame Louise-Élisabeth Vigée-Lebrun, Tome premier', 'Vigée-Lebrun, Louise-Elisabeth', '2007-10-12', 36, 'https://www.gutenberg.org/ebooks/23019', 'fr', 2134), +(3235, 'The Sovereignty of the Sea\r\nAn Historical Account of the Claims of England to the Dominion of the British Seas, and of the Evolution of the Territorial Waters', 'Fulton, Thomas Wemyss', '2017-06-24', 13, 'https://www.gutenberg.org/ebooks/54977', 'en', 2121), +(3236, 'Dr. Johnson\'s Works: Life, Poems, and Tales, Volume 1\r\nThe Works of Samuel Johnson, LL.D., in Nine Volumes', 'Johnson, Samuel', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/10835', 'en', 61), +(3237, 'The Queen\'s Reign and Its Commemoration\r\nA literary and pictorial review of the period; the story of the Victorian transformation', 'Besant, Walter', '2019-01-29', 6, 'https://www.gutenberg.org/ebooks/58786', 'en', 2135), +(3238, 'Our Common Land (and Other Short Essays)', 'Hill, Octavia', '2019-06-02', 15, 'https://www.gutenberg.org/ebooks/59654', 'en', 2136), +(3239, 'Wild Northern Scenes\r\nOr, Sporting Adventures with the Rifle and the Rod', 'Hammond, S. H. (Samuel H.)', '2003-11-01', 35, 'https://www.gutenberg.org/ebooks/10009', 'en', 2137), +(3240, 'The Affair at the Semiramis Hotel', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-24', 36, 'https://www.gutenberg.org/ebooks/38663', 'en', 1079), +(3241, 'Notes and Queries, Vol. V, Number 122, February 28, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-16', 27, 'https://www.gutenberg.org/ebooks/40779', 'en', 105), +(3242, 'Sinister Paradise', 'Williams, Robert Moore', '2010-05-13', 24, 'https://www.gutenberg.org/ebooks/32359', 'en', 26), +(3243, 'The Magic Pudding\r\nBeing the Adventures of Bunyip Bluegum and His Friends Bill Barnacle & Sam Sawnoff', 'Lindsay, Norman', '2004-01-01', 67, 'https://www.gutenberg.org/ebooks/4910', 'en', 421), +(3244, 'The Fruits of Victory\nA Sequel to The Great Illusion', 'Angell, Norman', '2013-08-29', 29, 'https://www.gutenberg.org/ebooks/43598', 'en', 2138), +(3245, 'Charles Sumner: his complete works, volume 08 (of 20)', 'Sumner, Charles', '2015-02-05', 17, 'https://www.gutenberg.org/ebooks/48170', 'en', 125), +(3246, 'The Three Golden Apples\n(From: \"A Wonder-Book for Girls and Boys\")', 'Hawthorne, Nathaniel', '2005-11-01', 32, 'https://www.gutenberg.org/ebooks/9257', 'en', 2139), +(3247, 'The Brochure Series of Architectural Illustration, vol. 06, No. 07, July 1900\r\nHouse of Jacques Coeur: Bourges; Gothic Carved Woodwork', 'Various', '2015-01-07', 19, 'https://www.gutenberg.org/ebooks/47904', 'en', 2140), +(3248, 'Mi Ultimo Adiós', 'Rizal, José', '2006-06-16', 38, 'https://www.gutenberg.org/ebooks/18600', 'es', 8), +(3249, 'The Short Line War', 'Merwin, Samuel', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8385', 'en', 2141), +(3250, 'Victoria C. Woodhull: A Biographical Sketch', 'Tilton, Theodore', '2016-04-25', 14, 'https://www.gutenberg.org/ebooks/51861', 'en', 2142), +(3251, 'Hengenvakuutus: Kertomus', 'Hoffmann, Franz', '2009-02-16', 6, 'https://www.gutenberg.org/ebooks/28095', 'fi', 1103), +(3252, 'The Land of Contrasts: A Briton\'s View of His American Kin', 'Muirhead, James F. (James Fullarton)', '2006-01-31', 26, 'https://www.gutenberg.org/ebooks/17648', 'en', 1110), +(3253, 'Bom senso e bom gosto : resposta à carta que o sr. Antero de Quental dirigiu ao sr. Antonio Feliciano de Castilho\nSegunda edição augmentada e seguida de uma carta sabre o mesmo assumpto', 'Rousaddo, Manuel, barão de Roussado', '2010-01-04', 28, 'https://www.gutenberg.org/ebooks/30856', 'pt', 2143), +(3254, 'Libro segreto', 'Ghislanzoni, Antonio', '2014-10-17', 16, 'https://www.gutenberg.org/ebooks/47138', 'it', 191), +(3255, 'The Ice Pilot', 'Leverage, Henry', '2011-03-07', 4, 'https://www.gutenberg.org/ebooks/35518', 'en', 2144), +(3256, 'Visions and Revisions: A Book of Literary Devotions', 'Powys, John Cowper', '2008-10-16', 51, 'https://www.gutenberg.org/ebooks/26933', 'en', 2145), +(3257, 'A Life Sentence: A Novel', 'Sergeant, Adeline', '2010-04-14', 17, 'https://www.gutenberg.org/ebooks/31984', 'en', 61), +(3258, 'Educational Work of the Boy Scouts', 'Barclay, Lorne W. (Lorne Webster)', '2009-06-17', 13, 'https://www.gutenberg.org/ebooks/29147', 'en', 2146), +(3259, 'Ye Magick Mirrour of Old Japan', 'Thompson, Silvanus P. (Silvanus Phillips)', '2019-04-08', 21, 'https://www.gutenberg.org/ebooks/59230', 'en', 2147), +(3260, 'Cinq Semaines En Ballon', 'Verne, Jules', '2003-10-01', 78, 'https://www.gutenberg.org/ebooks/4548', 'fr', 2148), +(3261, 'The Frame Up', 'Davis, Richard Harding', '1999-07-01', 12, 'https://www.gutenberg.org/ebooks/1806', 'en', 1238); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(3262, 'The Boy and the Sunday School\nA Manual of Principle and Method for the Work of the Sunday\nSchool with Teen Age Boys', 'Alexander, John L.', '2005-05-28', 14, 'https://www.gutenberg.org/ebooks/15923', 'en', 2149), +(3263, 'Frank Merriwell\'s Endurance; or, A Square Shooter', 'Standish, Burt L.', '2017-12-31', 12, 'https://www.gutenberg.org/ebooks/56278', 'en', 2150), +(3264, 'The Loyalists of America and Their Times, Vol. 2 of 2\nFrom 1620-1816', 'Ryerson, Egerton', '2008-02-20', 25, 'https://www.gutenberg.org/ebooks/24658', 'en', 2151), +(3265, 'On the Origin and Metamorphoses of Insects', 'Lubbock, John, Sir', '2011-12-03', 20, 'https://www.gutenberg.org/ebooks/38207', 'en', 2152), +(3266, 'New Amazonia: A Foretaste of the Future', 'Corbett, George, Mrs.', '2018-03-30', 24, 'https://www.gutenberg.org/ebooks/56876', 'en', 2153), +(3267, 'Etheldreda the Ready: A School Story', 'Vaizey, George de Horne, Mrs.', '2007-04-17', 30, 'https://www.gutenberg.org/ebooks/21118', 'en', 2154), +(3268, 'Outdoor Life and Indian Stories\r\nMaking open air life attractive to young Americans by telling them all about woodcraft, signs and signaling, the stars, fishing, camping, camp cooking, how to tie knots and how to make fire without matches, and many other fascinating open air pursuits. Also, stories of noted hunters and scouts, great indians and warriors, including Daniel Boone, Kit Carson, General Custer, Pontiac, Tecumseh, King Philip, Black Hawk, Brandt, Sitting Bull, and a host of others whose names are famous; all of them true and interesting', 'Ellis, Edward Sylvester', '2019-03-03', 63, 'https://www.gutenberg.org/ebooks/59002', 'en', 2155), +(3269, 'The Works of Robert G. Ingersoll, Vol. 09 (of 12)\r\nDresden Edition—Political', 'Ingersoll, Robert Green', '2012-02-09', 37, 'https://www.gutenberg.org/ebooks/38809', 'en', 1191), +(3270, 'Prejudices, First Series', 'Mencken, H. L. (Henry Louis)', '2016-11-16', 161, 'https://www.gutenberg.org/ebooks/53538', 'en', 2156), +(3271, 'Brother Jacques (Novels of Paul de Kock, Volume XVII)', 'Kock, Paul de', '2012-10-02', 10, 'https://www.gutenberg.org/ebooks/40913', 'en', 400), +(3272, 'Body, Parentage and Character in History: Notes on the Tudor Period', 'Jordan, Furneaux', '2011-08-07', 22, 'https://www.gutenberg.org/ebooks/36993', 'en', 2157), +(3273, 'Zes maanden op Cuba—Havana\nDe Aarde en haar Volken, 1908', 'Berchon, Charles', '2007-06-25', 9, 'https://www.gutenberg.org/ebooks/21924', 'nl', 747), +(3274, 'South Sea Tales', 'London, Jack', '1998-02-01', 161, 'https://www.gutenberg.org/ebooks/1208', 'en', 179), +(3275, 'The Letters of Henry James, (Vol. II)', 'James, Henry', '2011-11-16', 29, 'https://www.gutenberg.org/ebooks/38035', 'en', 2158), +(3276, 'Human, All-Too-Human: A Book for Free Spirits, Part 2', 'Nietzsche, Friedrich Wilhelm', '2011-10-24', 166, 'https://www.gutenberg.org/ebooks/37841', 'en', 2159), +(3277, 'Regeneration', 'Morgan, Thomas Hunt', '2018-05-22', 13, 'https://www.gutenberg.org/ebooks/57198', 'en', 2160), +(3278, 'Fowler\'s Household Helps\r\nOver 300 Useful and Valuable Helps About the Home, Carefully Compiled and Arranged in Convenient Form for Frequent Use', 'Fowler, Arthur L.', '2006-05-22', 27, 'https://www.gutenberg.org/ebooks/18432', 'en', 2161), +(3279, 'The Life of Abraham Lincoln', 'Ketcham, Henry', '2004-11-01', 63, 'https://www.gutenberg.org/ebooks/6811', 'en', 1717), +(3280, 'Outlines of Zuñi Creation Myths\r\nThirteenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1891-1892, Government Printing Office, Washington, 1896, pages 321-448', 'Cushing, Frank Hamilton', '2015-02-23', 22, 'https://www.gutenberg.org/ebooks/48342', 'en', 2162), +(3281, 'Beatrice', 'Heyse, Paul', '2005-10-01', 85, 'https://www.gutenberg.org/ebooks/9065', 'de', 16), +(3282, 'The Fighting Governor: A Chronicle of Frontenac', 'Colby, Charles W. (Charles William)', '2009-10-15', 8, 'https://www.gutenberg.org/ebooks/30258', 'en', 2163), +(3283, 'Fires - Book 2: The Ovens, and Other Tales', 'Gibson, Wilfrid Wilson', '2013-05-09', 9, 'https://www.gutenberg.org/ebooks/42678', 'en', 2164), +(3284, 'The Year Nine: A Tale of the Tyrol', 'Manning, Anne', '2015-06-26', 14, 'https://www.gutenberg.org/ebooks/49290', 'en', 2165), +(3285, 'Der Tod in Venedig', 'Mann, Thomas', '2004-04-01', 431, 'https://www.gutenberg.org/ebooks/12108', 'de', 918), +(3286, 'Vom This, der doch etwas wird\nErzählung', 'Spyri, Johanna', '2006-02-01', 20, 'https://www.gutenberg.org/ebooks/9859', 'de', 2166), +(3287, 'Manufacturing Cost Data on Artificial Ice', 'Luhr, Otto', '2009-07-11', 4, 'https://www.gutenberg.org/ebooks/29375', 'en', 2167), +(3288, 'Punch, or the London Charivari, Volume 99, November 1, 1890', 'Various', '2004-07-18', 1, 'https://www.gutenberg.org/ebooks/12934', 'en', 134), +(3289, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 555, Supplementary Number', 'Various', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12554', 'en', 133), +(3290, 'Svante Niilonpoika Sture ja hänen aikalaisensa I: Kuolon enkeli', 'Stjernström, Louise', '2017-08-07', 1, 'https://www.gutenberg.org/ebooks/55293', 'fi', 2168), +(3291, 'Cerebrum', 'Teichner, Albert', '2008-10-03', 51, 'https://www.gutenberg.org/ebooks/26761', 'en', 2169), +(3292, 'A Little Journey in the World', 'Warner, Charles Dudley', '2004-10-10', 10, 'https://www.gutenberg.org/ebooks/3103', 'en', 50), +(3293, 'The World\'s Progress, Vol. 01 (of 10)\r\nWith Illustrative texts from Masterpieces of Egyptian, Hebrew, Greek, Latin, Modern European and American Literature', 'Delphian Society', '2013-02-27', 36, 'https://www.gutenberg.org/ebooks/42224', 'en', 2170), +(3294, 'Tales and Novels — Volume 04', 'Edgeworth, Maria', '2005-12-01', 51, 'https://www.gutenberg.org/ebooks/9439', 'en', 61), +(3295, 'Les Rois Frères de Napoléon Ier\nDocuments inédits relatifs au premier Empire', 'Du Casse, Albert', '2009-12-04', 15, 'https://www.gutenberg.org/ebooks/30604', 'fr', 2171), +(3296, 'Christian Garve\'s Vertraute Briefe an eine Freundin', 'Garve, Christian', '2017-03-11', 8, 'https://www.gutenberg.org/ebooks/54341', 'de', 2172), +(3297, 'The Story of Sigurd the Volsung', 'Morris, William', '2004-09-17', 52, 'https://www.gutenberg.org/ebooks/13486', 'en', 2173), +(3298, 'A Joy For Ever (and Its Price in the Market)', 'Ruskin, John', '2006-11-30', 38, 'https://www.gutenberg.org/ebooks/19980', 'en', 787), +(3299, 'L\'Illustration, No. 3252, 24 Juin 1905', 'Various', '2011-02-23', 3, 'https://www.gutenberg.org/ebooks/35376', 'fr', 150), +(3300, 'Scientific American, September 29, 1883 Supplement. No. 404', 'Various', '2014-08-25', 9, 'https://www.gutenberg.org/ebooks/46684', 'en', 210), +(3301, 'A Schoolmaster\'s Diary\r\nBeing Extracts from the Journal of Patrick Traherne, M.A., Sometime Assistant Master at Radchester and Marlton.', 'Traherne, Patrick', '2016-04-02', 15, 'https://www.gutenberg.org/ebooks/51633', 'en', 2174), +(3302, 'Victor\'s Triumph\nSequel to A Beautiful Fiend', 'Southworth, Emma Dorothy Eliza Nevitte', '2009-08-19', 15, 'https://www.gutenberg.org/ebooks/29729', 'en', 61), +(3303, 'Uncle Wiggily and Old Mother Hubbard\r\nAdventures of the Rabbit Gentleman with the Mother Goose Characters', 'Garis, Howard Roger', '2007-10-27', 56, 'https://www.gutenberg.org/ebooks/23213', 'en', 625), +(3304, 'Craphound', 'Doctorow, Cory', '2005-11-20', 67, 'https://www.gutenberg.org/ebooks/17026', 'en', 26), +(3305, 'Voyage en automobile dans la Hongrie pittoresque\nFatra - Tatra - Matra', 'Marge, Pierre', '2014-12-23', 11, 'https://www.gutenberg.org/ebooks/47756', 'fr', 2175), +(3306, 'Don Quixote', 'Cervantes Saavedra, Miguel de', '2004-07-27', 4195, 'https://www.gutenberg.org/ebooks/996', 'en', 2176), +(3307, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 03, March 1895\r\nThe Cloister at Monreale, Near Palermo, Sicily', 'Various', '2006-07-17', 13, 'https://www.gutenberg.org/ebooks/18852', 'en', 2140), +(3308, 'The Children of the New Forest', 'Marryat, Frederick', '2004-09-01', 139, 'https://www.gutenberg.org/ebooks/6471', 'en', 751), +(3309, 'The Life and Times of Kateri Tekakwitha, the Lily of the Mohawks', 'Walworth, Ellen H. (Ellen Hardin)', '2011-09-14', 36, 'https://www.gutenberg.org/ebooks/37421', 'en', 2177), +(3310, 'The Standard Bearer', 'Crockett, S. R. (Samuel Rutherford)', '2016-09-28', 8, 'https://www.gutenberg.org/ebooks/53164', 'en', 2178), +(3311, 'Legends of the Rhine', 'Ruland, Wilhelm', '2007-01-31', 56, 'https://www.gutenberg.org/ebooks/20496', 'en', 2179), +(3312, 'Biographie des Sagamos illustres de l\'Amérique Septentrionale (1848)', 'Bibaud, Maximilien (François Marie Uncas Maximilien)', '2007-05-20', 9, 'https://www.gutenberg.org/ebooks/21544', 'fr', 2180), +(3313, 'The Bible Period by Period\nA Manual for the Study of the Bible by Periods', 'Tidwell, Josiah Blake', '2005-05-05', 87, 'https://www.gutenberg.org/ebooks/15771', 'en', 2181), +(3314, 'Institutes of the Christian Religion (Vol. 1 of 2)', 'Calvin, Jean', '2014-02-24', 175, 'https://www.gutenberg.org/ebooks/45001', 'en', 2182), +(3315, 'The Expansion of Europe; The Culmination of Modern History', 'Muir, Ramsay', '2003-08-01', 7, 'https://www.gutenberg.org/ebooks/4326', 'en', 2183), +(3316, 'Big Ben Clock Tower of Westminster\r\nStriking half past 10, quarter to 11, and 11 o\'clock', NULL, '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10203', 'en', 2184), +(3317, 'Sonnet 130', 'Shakespeare, William', '2007-12-01', 7, 'https://www.gutenberg.org/ebooks/24036', 'en', 2185), +(3318, 'An Unsocial Socialist', 'Shaw, Bernard', '2006-02-22', 72, 'https://www.gutenberg.org/ebooks/1654', 'en', 2186), +(3319, 'The Life of Benjamin Franklin, Illustrated by Tales, Sketches, and Anecdotes', 'Goodrich, Samuel G. (Samuel Griswold)', '2012-01-02', 51, 'https://www.gutenberg.org/ebooks/38469', 'en', 854), +(3320, 'The Kallikak Family: A Study in the Heredity of Feeble-Mindedness', 'Goddard, Henry Herbert', '2017-01-13', 20, 'https://www.gutenberg.org/ebooks/53958', 'en', 2187), +(3321, 'Sir Jasper Carew: His Life and Experience', 'Lever, Charles James', '2010-07-05', 17, 'https://www.gutenberg.org/ebooks/33081', 'en', 61), +(3322, 'The Other Side of the Sun: Fairy Stories', 'Sharp, Evelyn', '2012-08-24', 80, 'https://www.gutenberg.org/ebooks/40573', 'en', 1007), +(3323, 'Songs of the Army of the Night', 'Adams, Francis William Lauderdale', '2010-04-27', 20, 'https://www.gutenberg.org/ebooks/32153', 'en', 2188), +(3324, 'John Baring\'s House', 'Singmaster, Elsie', '2018-01-22', 7, 'https://www.gutenberg.org/ebooks/56416', 'en', 2189), +(3325, 'The Twenty-Fourth of June: Midsummer\'s Day', 'Richmond, Grace S. (Grace Smith)', '2004-12-28', 26, 'https://www.gutenberg.org/ebooks/14491', 'en', 2190), +(3326, 'Kate Vernon: A Tale. Vol. 2 (of 3)', 'Alexander, Mrs.', '2016-10-24', 31, 'https://www.gutenberg.org/ebooks/53356', 'en', 61), +(3327, 'Search-Light Letters', 'Grant, Robert', '2011-10-04', 12, 'https://www.gutenberg.org/ebooks/37613', 'en', 2191), +(3328, 'History of the Twelfth West Virginia Volunteer Infantry\nThe Part It Took in the War of the Rebellion, 1861-1865', 'Hewitt, William, active 19th century', '2014-03-27', 29, 'https://www.gutenberg.org/ebooks/45233', 'en', 1489), +(3329, 'Christopher Columbus and the New World of His Discovery — Volume 7', 'Young, Filson', '2004-12-05', 22, 'https://www.gutenberg.org/ebooks/4114', 'en', 2036), +(3330, 'George Borrow\nA Sermon Preached in Norwich Cathedral on July 6, 1913', 'Beeching, H. C. (Henry Charles)', '2007-06-08', 14, 'https://www.gutenberg.org/ebooks/21776', 'en', 2192), +(3331, 'Israelitar: Kertomus', 'Lassila, Maiju', '2016-06-09', 13, 'https://www.gutenberg.org/ebooks/52284', 'fi', 175), +(3332, 'D\'Alembert', 'Bertrand, Joseph', '2005-04-04', 21, 'https://www.gutenberg.org/ebooks/15543', 'fr', 1419), +(3333, 'Creatures That Once Were Men', 'Gorky, Maksim', '1998-09-01', 52, 'https://www.gutenberg.org/ebooks/1466', 'en', 61), +(3334, 'Paul and His Dog, v.1 (Novels of Paul de Kock Volume XIII)', 'Kock, Paul de', '2012-09-12', 5, 'https://www.gutenberg.org/ebooks/40741', 'en', 58), +(3335, 'The Complete Poetical Works of Edgar Allan Poe\r\nIncluding Essays on Poetry', 'Poe, Edgar Allan', '2003-11-01', 397, 'https://www.gutenberg.org/ebooks/10031', 'en', 2193), +(3336, 'The Lost Despatch', 'Lincoln, Natalie Sumner', '2008-01-07', 31, 'https://www.gutenberg.org/ebooks/24204', 'en', 1319), +(3337, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 4, De La Isla De Cuba, II', NULL, '2018-02-22', 14, 'https://www.gutenberg.org/ebooks/56624', 'es', 2194), +(3338, 'Bulfinch\'s Mythology', 'Bulfinch, Thomas', '2004-01-01', 634, 'https://www.gutenberg.org/ebooks/4928', 'en', 2195), +(3339, 'Lays and Legends (Second Series)', 'Nesbit, E. (Edith)', '2012-12-23', 24, 'https://www.gutenberg.org/ebooks/41693', 'en', 532), +(3340, 'Nooks & Corners of Old New York', 'Hemstreet, Charles', '2012-05-25', 10, 'https://www.gutenberg.org/ebooks/39789', 'en', 2196), +(3341, 'The Prophetic Camera', 'McGreevey, John', '2010-05-14', 23, 'https://www.gutenberg.org/ebooks/32361', 'en', 26), +(3342, 'The Diary of Samuel Pepys', 'Pepys, Samuel', '2002-07-01', 45, 'https://www.gutenberg.org/ebooks/3331', 'en', 2197), +(3343, 'The Purple Flame\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-02-04', 11, 'https://www.gutenberg.org/ebooks/42016', 'en', 2198), +(3344, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 484, April 9, 1831', 'Various', '2004-06-28', 13, 'https://www.gutenberg.org/ebooks/12766', 'en', 133), +(3345, 'Ο Πεντάρφανος', 'Papadiamantes, Alexandros', '2011-04-27', 6, 'https://www.gutenberg.org/ebooks/35978', 'el', 1348), +(3346, 'Turandot: The Chinese Sphinx', 'Schiller, Friedrich', '2008-09-07', 33, 'https://www.gutenberg.org/ebooks/26553', 'en', 2199), +(3347, 'A Wayfarer in China\nImpressions of a trip across West China and Mongolia', 'Kendall, Elizabeth Kimball', '2008-12-10', 24, 'https://www.gutenberg.org/ebooks/27481', 'en', 1559), +(3348, 'How to Make Candy\r\nA Complete Hand Book for Making All Kinds of Candy, Ice Cream, Syrups, Essences, Etc., Etc.', 'Anonymous', '2017-02-16', 46, 'https://www.gutenberg.org/ebooks/54173', 'en', 1372), +(3349, 'The First Book of Adam and Eve', 'Platt, Rutherford Hayes', '1996-01-01', 434, 'https://www.gutenberg.org/ebooks/398', 'en', 2200), +(3350, 'Hope Mills; Or, Between Friend and Sweetheart', 'Douglas, Amanda M.', '2009-11-09', 91, 'https://www.gutenberg.org/ebooks/30436', 'en', 61), +(3351, 'Suomalaisen taiteen historia pääpiirteissään', 'Aspelin-Haapkylä, Eliel', '2016-03-08', 8, 'https://www.gutenberg.org/ebooks/51401', 'fi', 2201), +(3352, 'The Martins Of Cro\' Martin, Vol. II (of II)', 'Lever, Charles James', '2011-02-02', 15, 'https://www.gutenberg.org/ebooks/35144', 'en', 2044), +(3353, 'Pelle the Conqueror — Volume 01', 'Andersen Nexø, Martin', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7791', 'en', 2202), +(3354, 'Twilight Land', 'Pyle, Howard', '2014-12-07', 76, 'https://www.gutenberg.org/ebooks/47564', 'en', 2203), +(3355, 'The Ship-Dwellers: A Story of a Happy Cruise', 'Paine, Albert Bigelow', '2010-10-18', 30, 'https://www.gutenberg.org/ebooks/34096', 'en', 2204), +(3356, 'Das Mädchen aus der Feenwelt; oder, Der Bauer als Millionär', 'Raimund, Ferdinand', '2004-10-01', 17, 'https://www.gutenberg.org/ebooks/6643', 'de', 2205), +(3357, 'Sang Nova\nNovel, la muntanyenca (Volumes 1 and 2)', 'Vayreda, Marià', '2007-10-13', 6, 'https://www.gutenberg.org/ebooks/23021', 'ca', 61), +(3358, 'The Quilt that Jack Built; How He Won the Bicycle', 'Johnston, Annie F. (Annie Fellows)', '2005-12-03', 7, 'https://www.gutenberg.org/ebooks/17214', 'en', 195), +(3359, 'The Camp Fire Girls Amid the Snows', 'Vandercook, Margaret', '2014-05-18', 8, 'https://www.gutenberg.org/ebooks/45657', 'en', 1080), +(3360, 'Ascension Du Désir: Poésie', 'Bertrand, Huguette', '2003-10-01', 14, 'https://www.gutenberg.org/ebooks/4570', 'fr', 8), +(3361, 'Glyn Severn\'s Schooldays', 'Fenn, George Manville', '2007-05-04', 24, 'https://www.gutenberg.org/ebooks/21312', 'en', 2206), +(3362, 'Pitman\'s Commercial Spanish Grammar (2nd ed.)', 'Toledano, C. A.', '2005-02-21', 139, 'https://www.gutenberg.org/ebooks/15127', 'es', 2207), +(3363, 'Mound State Monument, Moundville, Alabama', 'Alabama Museum of Natural History', '2019-04-04', 14, 'https://www.gutenberg.org/ebooks/59208', 'en', 2208), +(3364, 'Standard Catholic Readers by Grades: Fifth Year', NULL, '2016-12-14', 15, 'https://www.gutenberg.org/ebooks/53732', 'en', 1019), +(3365, 'Chaucer and His England', 'Coulton, G. G. (George Gordon)', '2011-08-31', 23, 'https://www.gutenberg.org/ebooks/37277', 'en', 2209), +(3366, 'The Beaked Whales of the Family Ziphiidae\r\nAn Account of the Beaked Whales of the Family Ziphiidae in the Collection of the United States Museum...', 'True, Frederick W. (Frederick William)', '2014-01-29', 4, 'https://www.gutenberg.org/ebooks/44785', 'en', 2210), +(3367, 'The School Book of Forestry', 'Pack, Charles Lathrop', '2004-03-01', 55, 'https://www.gutenberg.org/ebooks/11587', 'en', 2211), +(3368, 'Virkistysmatka: 3-näytöksinen pila', 'Vuoritsalo, Nuutti', '2017-12-23', 2, 'https://www.gutenberg.org/ebooks/56240', 'fi', 382), +(3369, 'Deadly City', 'Fairman, Paul W.', '2010-06-05', 51, 'https://www.gutenberg.org/ebooks/32705', 'en', 26), +(3370, 'Divine Comedy, Longfellow\'s Translation, Purgatory', 'Dante Alighieri', '1997-08-01', 42, 'https://www.gutenberg.org/ebooks/1002', 'en', 2212), +(3371, 'True to a Type, Vol. 2 (of 2)', 'Cleland, Robert', '2012-07-24', 4, 'https://www.gutenberg.org/ebooks/40325', 'en', 61), +(3372, 'Pickett or Pettigrew? An Historical Essay', 'Bond, W. R. (William R.)', '2018-06-25', 12, 'https://www.gutenberg.org/ebooks/57392', 'en', 2213), +(3373, 'A Golden Book of Venice', 'Turnbull, Lawrence, Mrs.', '2003-12-01', 15, 'https://www.gutenberg.org/ebooks/10455', 'en', 98), +(3374, 'Hope and Have; or, Fanny Grant Among the Indians: A Story for Young People', 'Optic, Oliver', '2008-02-20', 23, 'https://www.gutenberg.org/ebooks/24660', 'en', 2214), +(3375, 'Laelius eli Ystävyydestä', 'Cicero, Marcus Tullius', '2017-04-09', 10, 'https://www.gutenberg.org/ebooks/54517', 'fi', 2215), +(3376, 'Ideal Commonwealths', NULL, '2006-06-20', 57, 'https://www.gutenberg.org/ebooks/18638', 'en', 1998), +(3377, 'Le Cabinet des Fées\r\nOr Recreative Readings Arranged for the Express Use of Students in French', NULL, '2009-05-20', 77, 'https://www.gutenberg.org/ebooks/28891', 'fr', 2216), +(3378, 'Der Dichter Lenz und Friedericke von Sesenheim\nAus Briefen und gleichzeitigen Quellen; nebst Gedichten und Anderm von Lenz und Göthe', 'Goethe, Johann Wolfgang von', '2015-02-03', 20, 'https://www.gutenberg.org/ebooks/48148', 'de', 2217), +(3379, 'The Snare', 'Sabatini, Rafael', '2001-06-01', 73, 'https://www.gutenberg.org/ebooks/2687', 'en', 323), +(3380, 'Esploración arqueológica de la Provincia de Catamarca', 'Moreno, Francisco Pascasio', '2009-09-21', 20, 'https://www.gutenberg.org/ebooks/30052', 'es', 2218), +(3381, 'Common Sense', 'Paine, Thomas', '2003-02-01', 185, 'https://www.gutenberg.org/ebooks/3755', 'en', 2219), +(3382, 'Ellen Middleton—A Tale', 'Fullerton, Georgiana', '2010-02-04', 16, 'https://www.gutenberg.org/ebooks/31180', 'en', 1397), +(3383, 'Bruno; or, lessons of fidelity, patience, and self-denial taught by a dog', 'Abbott, Jacob', '2016-04-25', 17, 'https://www.gutenberg.org/ebooks/51859', 'en', 2220), +(3384, 'Madame Sans-Gêne, Tome 1\r\nRoman tiré de la Pièce de Mm. Victorien Sardou et Émile Moreau', 'Sardou, Victorien', '2013-04-06', 6, 'https://www.gutenberg.org/ebooks/42472', 'fr', 2221), +(3385, 'Le Tour du Monde; Éducation des nègres aux États-Unis\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-09', 9, 'https://www.gutenberg.org/ebooks/29943', 'fr', 2222), +(3386, 'All in It : K(1) Carries On', 'Hay, Ian', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/12302', 'en', 2223), +(3387, 'Starlight Ranch, and Other Stories of Army Life on the Frontier', 'King, Charles', '2008-07-27', 16, 'https://www.gutenberg.org/ebooks/26137', 'en', 2224), +(3388, 'Musta härkä', 'Jotuni, Maria', '2014-10-12', 34, 'https://www.gutenberg.org/ebooks/47100', 'fi', 175), +(3389, 'The Seats of the Mighty, Volume 4', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6227', 'en', 1890), +(3390, 'The Best Short Stories of 1919, and the Yearbook of the American Short Story', NULL, '2007-11-11', 82, 'https://www.gutenberg.org/ebooks/23445', 'en', 112), +(3391, 'As Others Saw Him: A Retrospect, A.D. 54', 'Jacobs, Joseph', '2015-05-16', 13, 'https://www.gutenberg.org/ebooks/48974', 'en', 609), +(3392, 'Les petits vagabonds', 'Marcel, Jeanne', '2006-02-03', 26, 'https://www.gutenberg.org/ebooks/17670', 'fr', 751), +(3393, 'German and Austrian Prisons\r\nPrisons of Prussia, Bavaria, Saxony and Austria-Hungary; the Fortresses of Magdeburg and Spielberg', 'Griffiths, Arthur', '2016-01-28', 4, 'https://www.gutenberg.org/ebooks/51065', 'en', 2225), +(3394, 'Question of Comfort', 'Cole, Les', '2007-09-14', 26, 'https://www.gutenberg.org/ebooks/22597', 'en', 26), +(3395, 'Memories of a Musical Life', 'Mason, William', '2011-03-08', 25, 'https://www.gutenberg.org/ebooks/35520', 'en', 2226), +(3396, 'The History of Modern Painting, Volume 1 (of 4)\nRevised edition continued by the author to the end of the XIX century', 'Muther, Richard', '2013-09-22', 15, 'https://www.gutenberg.org/ebooks/43792', 'en', 2227), +(3397, 'A New Doglike Carnivore, Genus Cynarctus, From the Clarendonian, Pliocene, of Texas', 'Dalquest, Walter Woelber', '2009-10-15', 7, 'https://www.gutenberg.org/ebooks/30260', 'en', 2228), +(3398, 'The Time Machine', 'Wells, H. G. (Herbert George)', '2004-10-02', 5703, 'https://www.gutenberg.org/ebooks/35', 'en', 2229), +(3399, 'A Butterfly Chase', 'Stahl, P.-J.', '2017-05-14', 5, 'https://www.gutenberg.org/ebooks/54725', 'en', 2230), +(3400, 'The Works of Lucian of Samosata — Volume 03', 'Lucian, of Samosata', '2004-11-01', 77, 'https://www.gutenberg.org/ebooks/6829', 'en', 1011), +(3401, 'An Adulteration Act\nThe Lady of the Barge and Others, Part 10.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12130', 'en', 1224), +(3402, 'Yes, Virginia, There Is A Santa Claus', 'Church, Francis Pharcellus', '2008-08-01', 0, 'https://www.gutenberg.org/ebooks/26305', 'en', 2231), +(3403, 'Memoirs of Napoleon Bonaparte — Complete', 'Bourrienne, Louis Antoine Fauvelet de', '2004-09-08', 305, 'https://www.gutenberg.org/ebooks/3567', 'en', 1386), +(3404, 'The Last Christmas Tree: An Idyl of Immortality', 'Allen, James Lane', '2013-05-03', 10, 'https://www.gutenberg.org/ebooks/42640', 'en', 2232), +(3405, 'The Moving Picture Boys on the Coast\r\nOr, Showing Up the Perils of the Deep', 'Appleton, Victor', '2007-12-02', 32, 'https://www.gutenberg.org/ebooks/23677', 'en', 557), +(3406, 'Was die Großmutter gelehrt hat\r\nErzählung', 'Spyri, Johanna', '2006-02-01', 27, 'https://www.gutenberg.org/ebooks/9861', 'de', 2166), +(3407, 'The Guinea Stamp: A Tale of Modern Glasgow', 'Swan, Annie S.', '2006-01-01', 32, 'https://www.gutenberg.org/ebooks/17442', 'en', 2233), +(3408, 'Jack Straw: A Farce in Three Acts', 'Maugham, W. Somerset (William Somerset)', '2015-11-04', 20, 'https://www.gutenberg.org/ebooks/50385', 'en', 2234), +(3409, 'Personal Recollections and Civil War Diary, 1864', 'Abbott, Lemuel Abijah', '2014-11-12', 21, 'https://www.gutenberg.org/ebooks/47332', 'en', 444), +(3410, 'Captain Macklin: His Memoirs', 'Davis, Richard Harding', '2004-07-01', 15, 'https://www.gutenberg.org/ebooks/6015', 'en', 2235), +(3411, 'Wake-Robin', 'Burroughs, John', '2011-03-30', 26, 'https://www.gutenberg.org/ebooks/35712', 'en', 1216), +(3412, 'The Furious Rose', 'Evans, Dean', '2016-02-21', 32, 'https://www.gutenberg.org/ebooks/51257', 'en', 238), +(3413, 'De Zaan en Waterland: Een kijkje in Noord Holland\r\nDe Aarde en haar Volken, 1887', 'Anonymous', '2005-08-24', 16, 'https://www.gutenberg.org/ebooks/16590', 'nl', 2236), +(3414, 'The Fortunes of the Farrells', 'Vaizey, George de Horne, Mrs.', '2007-04-17', 10, 'https://www.gutenberg.org/ebooks/21120', 'en', 389), +(3415, 'Gladys, the Reaper', 'Beale, Anne', '2005-03-10', 7, 'https://www.gutenberg.org/ebooks/15315', 'en', 61), +(3416, 'The Sunlit Hours', 'Verhaeren, Emile', '2014-04-24', 25, 'https://www.gutenberg.org/ebooks/45465', 'en', 2237), +(3417, 'Our Calendar\r\nThe Julian calendar and its errors. How corrected by the Gregorian. Rules for finding the dominical letter, and the day of the week of any event from the days of Julius Caesar 46 B.C. to the year of our Lord four thousand; a new and easy method of fixing the date of Easter. Hebrew calendar; showing the correspondence in the date of events recorded in the Bible with our present Gregorian calendar. Illustrated by valuable tables and charts.', 'Packer, George Nichols', '2011-05-23', 14, 'https://www.gutenberg.org/ebooks/36197', 'en', 2238), +(3418, 'TrendSiters Digital Content and Web Technologies', 'Vaknin, Samuel', '2003-12-01', 22, 'https://www.gutenberg.org/ebooks/4742', 'en', 2069), +(3419, 'Sääskiä: 2. parvi. Runollisia kokeita', 'Rahkonen, Aleksanteri', '2011-08-12', 31, 'https://www.gutenberg.org/ebooks/37045', 'fi', 8), +(3420, 'The Innocents Abroad — Volume 03', 'Twain, Mark', '2004-06-22', 7, 'https://www.gutenberg.org/ebooks/5690', 'en', 1408), +(3421, 'The Romance of the Ranchos', 'Conner, E. Palmer', '2016-11-11', 6, 'https://www.gutenberg.org/ebooks/53500', 'en', 2239), +(3422, 'The Barb and the Bridle\r\nA Handbook of Equitation for Ladies, and Manual of Instruction in the Science of Riding, from the Preparatory Suppling Exercises', 'Henderson, Robert, active 1866-1874', '2012-02-11', 13, 'https://www.gutenberg.org/ebooks/38831', 'en', 2240), +(3423, 'The Newsboy Partners; Or, Who Was Dick Box?', 'Webster, Frank V.', '2010-05-25', 21, 'https://www.gutenberg.org/ebooks/32537', 'en', 2241), +(3424, 'The Dragon in Shallow Waters', 'Sackville-West, V. (Victoria)', '2019-06-25', 146, 'https://www.gutenberg.org/ebooks/59806', 'en', 2242), +(3425, 'Andersens Sproken en vertellingen\nMorgenrood', 'Andersen, H. C. (Hans Christian)', '2008-05-23', 92, 'https://www.gutenberg.org/ebooks/25580', 'nl', 1007), +(3426, 'La vie privée d\'autrefois; Arts et métiers, modes, moeurs, usages des parisiens du XIIe au XVIIIe siècle. Les soins de toilette; Le savoir-vivre', 'Franklin, Alfred', '2017-11-28', 18, 'https://www.gutenberg.org/ebooks/56072', 'fr', 2243), +(3427, 'Snake and Sword: A Novel', 'Wren, Percival Christopher', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10667', 'en', 2244), +(3428, 'O culto do chá', 'Moraes, Wenceslau de', '2011-10-29', 19, 'https://www.gutenberg.org/ebooks/37879', 'pt', 2245), +(3429, 'Nights: Rome, Venice, in the Aesthetic Eighties; London, Paris, in the Fighting Nineties', 'Pennell, Elizabeth Robins', '2008-01-29', 29, 'https://www.gutenberg.org/ebooks/24452', 'en', 592), +(3430, 'Pierre Grassou', 'Balzac, Honoré de', '2005-06-27', 36, 'https://www.gutenberg.org/ebooks/1230', 'en', 58), +(3431, 'Das Marien-Leben', 'Rilke, Rainer Maria', '2012-07-01', 29, 'https://www.gutenberg.org/ebooks/40117', 'de', 2246), +(3432, 'Mont-Saint-Michel and Chartres', 'Adams, Henry', '2003-10-01', 97, 'https://www.gutenberg.org/ebooks/4584', 'en', 2247), +(3433, 'Memorial of Mrs. Lucy Gilpatrick Marsh delivered June 22, 1868.', 'Thompson, A. C. (Augustus Charles)', '2011-06-08', 8, 'https://www.gutenberg.org/ebooks/36351', 'en', 2248), +(3434, 'The Fun Library, vol. 8: Stage, Study & Studio', NULL, '2016-07-21', 8, 'https://www.gutenberg.org/ebooks/52614', 'en', 564), +(3435, 'The Mississippi Bubble\r\nHow the Star of Good Fortune Rose and Set and Rose Again, by a Woman\'s Grace, for One John Law of Lauriston', 'Hough, Emerson', '2004-11-10', 33, 'https://www.gutenberg.org/ebooks/14001', 'en', 2249), +(3436, 'Derniers essais de littérature et d\'esthétique: août 1887-1890', 'Wilde, Oscar', '2006-12-31', 19, 'https://www.gutenberg.org/ebooks/20234', 'fr', 2250), +(3437, 'An Egyptian Princess — Volume 07', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5456', 'en', 803), +(3438, 'The Whole Secret Laid Open, Or the Complete Art of Making the Chemical Fulminating Objects,\r\nSuch as the Lace, or Girt of Security, Fulminating Letters, Balls, Bombs, Garters, Cards, Spiders, Segars, Chairs, Drawers, Boots, Shoes, &c. &c.', 'Anonymous', '2011-08-31', 31, 'https://www.gutenberg.org/ebooks/37283', 'en', 2251), +(3439, 'Perpetual Motion', 'Verance, Percy', '2014-01-27', 16, 'https://www.gutenberg.org/ebooks/44771', 'en', 2252), +(3440, 'New Year\'s Wake: A Terran Empire story', 'Wilson, Ann', '2008-06-09', 6, 'https://www.gutenberg.org/ebooks/25746', 'en', 179), +(3441, 'The Crater; Or, Vulcan\'s Peak: A Tale of the Pacific', 'Cooper, James Fenimore', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/11573', 'en', 324), +(3442, 'Six Discourses on the Miracles of Our Saviour, and Defences of His Discourses', 'Woolston, Thomas', '2012-10-27', 7, 'https://www.gutenberg.org/ebooks/41203', 'en', 2253), +(3443, 'Ορέστης', 'Euripides', '2012-03-31', 25, 'https://www.gutenberg.org/ebooks/39319', 'el', 2254), +(3444, 'The Inventions of the Idiot', 'Bangs, John Kendrick', '2010-09-03', 100, 'https://www.gutenberg.org/ebooks/33623', 'en', 2255), +(3445, 'Thames Valley Villages, Volume 2 (of 2)', 'Harper, Charles G. (Charles George)', '2018-06-23', 14, 'https://www.gutenberg.org/ebooks/57366', 'en', 2256), +(3446, 'Peter Prim\'s Profitable Present\nTo the little misses and masters of the United States', 'Unknown', '2008-02-26', 13, 'https://www.gutenberg.org/ebooks/24694', 'en', 859), +(3447, 'Notes and Queries, Number 214, December 3, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 11, 'https://www.gutenberg.org/ebooks/27011', 'en', 105), +(3448, 'Poems by Jean Ingelow, In Two Volumes, Volume II.', 'Ingelow, Jean', '2004-08-19', 7, 'https://www.gutenberg.org/ebooks/13224', 'en', 54), +(3449, 'The Princess and the Goblin', 'MacDonald, George', '1996-11-01', 647, 'https://www.gutenberg.org/ebooks/708', 'en', 2257), +(3450, 'Les belles-de-nuit; ou, les anges de la famille. tome 4', 'Féval, Paul', '2013-08-24', 6, 'https://www.gutenberg.org/ebooks/43554', 'fr', 298), +(3451, 'Der Judenstaat: Versuch einer modernen Lösung der Judenfrage', 'Herzl, Theodor', '2009-05-18', 43, 'https://www.gutenberg.org/ebooks/28865', 'de', 2258), +(3452, 'The Complete Writings of Charles Dudley Warner — Volume 3', 'Warner, Charles Dudley', '2001-06-01', 21, 'https://www.gutenberg.org/ebooks/2673', 'en', 2259), +(3453, 'The Planet with No Nightmare', 'Harmon, Jim', '2010-02-03', 13, 'https://www.gutenberg.org/ebooks/31174', 'en', 179), +(3454, 'The Bible, Douay-Rheims, Book 49: Luke\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8349', 'en', 2260), +(3455, 'The Two Magics: The Turn of the Screw, Covering End', 'James, Henry', '2013-04-09', 68, 'https://www.gutenberg.org/ebooks/42486', 'en', 500), +(3456, 'Old Man Savarin Stories: Tales of Canada and Canadians', 'Thomson, Edward William', '2017-08-26', 12, 'https://www.gutenberg.org/ebooks/55431', 'en', 2261), +(3457, 'Prison Memoirs of an Anarchist', 'Berkman, Alexander', '2010-11-22', 68, 'https://www.gutenberg.org/ebooks/34406', 'en', 2262), +(3458, 'A Lost Hero', 'Ward, Herbert D. (Herbert Dickinson)', '2009-02-12', 11, 'https://www.gutenberg.org/ebooks/28059', 'en', 1958), +(3459, 'Personal Recollections of Distinguished Generals', 'Shanks, William Franklin Gore', '2015-05-17', 18, 'https://www.gutenberg.org/ebooks/48980', 'en', 2263), +(3460, 'A Collection of Emblemes, Ancient and Moderne\r\nQuickened With Metrical Illustrations, Both Morall and Divine, Etc.', 'Wither, George', '2015-10-06', 20, 'https://www.gutenberg.org/ebooks/50143', 'en', 2264), +(3461, 'Life of Lord Byron, Vol. 1\r\nWith His Letters and Journals', 'Moore, Thomas', '2006-02-06', 22, 'https://www.gutenberg.org/ebooks/17684', 'en', 2265), +(3462, 'The Bobbsey Twins at the County Fair', 'Hope, Laura Lee', '2005-09-26', 40, 'https://www.gutenberg.org/ebooks/16756', 'en', 2266), +(3463, 'Thompson\'s Cat', 'Williams, Robert Moore', '2010-04-11', 44, 'https://www.gutenberg.org/ebooks/31948', 'en', 26), +(3464, 'The Deep One', 'Ruzic, Neil P.', '2016-01-31', 47, 'https://www.gutenberg.org/ebooks/51091', 'en', 26), +(3465, 'Punch, or the London Charivari, Vol. 146, January 28, 1914', 'Various', '2007-09-10', 10, 'https://www.gutenberg.org/ebooks/22563', 'en', 134), +(3466, 'The Life of Man: A Play in Five Acts', 'Andreyev, Leonid', '2015-09-02', 11, 'https://www.gutenberg.org/ebooks/49852', 'en', 2267), +(3467, 'Nathaniel Hawthorne', 'Woodberry, George Edward', '2005-01-01', 4, 'https://www.gutenberg.org/ebooks/7301', 'en', 874), +(3468, 'Virginia\'s Attitude Toward Slavery and Secession', 'Munford, Beverley B. (Beverley Bland)', '2014-06-18', 24, 'https://www.gutenberg.org/ebooks/46026', 'en', 2268), +(3469, 'With Porter in the Essex\r\nA Story of His Famous Cruise in the Southern Waters During the War of 1812', 'Otis, James', '2013-09-19', 6, 'https://www.gutenberg.org/ebooks/43766', 'en', 2269), +(3470, 'The Century Handbook of Writing', 'Greever, Garland', '2009-10-20', 35, 'https://www.gutenberg.org/ebooks/30294', 'en', 2270), +(3471, 'The Burgess Animal Book for Children', 'Burgess, Thornton W. (Thornton Waldo)', '2000-12-01', 349, 'https://www.gutenberg.org/ebooks/2441', 'en', 2271), +(3472, 'Eyebright: A Story', 'Coolidge, Susan', '2008-11-10', 32, 'https://www.gutenberg.org/ebooks/27223', 'en', 195), +(3473, 'Lavinia', 'Sand, George', '2004-07-24', 26, 'https://www.gutenberg.org/ebooks/13016', 'fr', 687), +(3474, 'The Irish Penny Journal, Vol. 1 No. 51, June 19, 1841', 'Various', '2017-09-22', 1, 'https://www.gutenberg.org/ebooks/55603', 'en', 81), +(3475, 'Camillo Castello Branco', 'Silva Pinto, Antonio da', '2010-02-22', 44, 'https://www.gutenberg.org/ebooks/31346', 'pt', 2272), +(3476, 'Essays of Michel de Montaigne — Volume 13', 'Montaigne, Michel de', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/3593', 'en', 1964), +(3477, 'Bertie\'s Home; or, the Way to be Happy', 'Leslie, Madeline', '2007-12-02', 12, 'https://www.gutenberg.org/ebooks/23683', 'en', 1817), +(3478, 'When Gretel Was Fifteen', 'Rhoades, Nina', '2015-11-02', 14, 'https://www.gutenberg.org/ebooks/50371', 'en', 2273), +(3479, 'Novelas de Voltaire — Tomo Primero', 'Voltaire', '2006-02-01', 34, 'https://www.gutenberg.org/ebooks/9895', 'es', 2274), +(3480, 'A Narrative of the Death of Captain James Cook', 'Samwell, David', '2010-12-13', 29, 'https://www.gutenberg.org/ebooks/34634', 'en', 2275), +(3481, 'The Great Conspiracy, Volume 1', 'Logan, John Alexander', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/7133', 'en', 125), +(3482, 'Il perfetto amore: Dialogo in tre atti', 'Bracco, Roberto', '2014-07-07', 10, 'https://www.gutenberg.org/ebooks/46214', 'it', 407), +(3483, 'Amphitryo, Asinaria, Aulularia, Bacchides, Captivi\nAmphitryon, The Comedy of Asses, The Pot of Gold, The Two\nBacchises, The Captives', 'Plautus, Titus Maccius', '2005-08-20', 141, 'https://www.gutenberg.org/ebooks/16564', 'en', 2276), +(3484, 'The Atlantic Monthly, Volume 01, No. 03, January, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-09-01', 10, 'https://www.gutenberg.org/ebooks/8947', 'en', 1227), +(3485, 'Littérature Française (Première Année)\nMoyen-Âge, Renaissance, Dix-Septième Siècle', 'Aubert, Eugène', '2007-09-24', 30, 'https://www.gutenberg.org/ebooks/22751', 'fr', 1765), +(3486, 'Substance of a Sermon on the Bible Society\r\npreached at Beccles, October 29th, and at St. Mary\'s Church Bungay, on Friday, Dec. 1st, 1815', 'Cunningham, Francis', '2016-06-28', 4, 'https://www.gutenberg.org/ebooks/52426', 'en', 2277), +(3487, 'Narrative of an Expedition to the Shores of the Arctic Sea in 1846 and 1847', 'Rae, John', '2012-06-05', 20, 'https://www.gutenberg.org/ebooks/39917', 'en', 2278), +(3488, 'Daring Wings', 'Dean, Graham M.', '2014-04-25', 11, 'https://www.gutenberg.org/ebooks/45491', 'en', 2279), +(3489, 'Memoria dos feitos macaenses contra os piratas da China\ne da entrada violenta dos inglezes na cidade de Macáo', 'Andrade, José Ignacio de', '2011-05-17', 19, 'https://www.gutenberg.org/ebooks/36163', 'pt', 2280), +(3490, 'The Arabian Nights Entertainments — Volume 01', NULL, '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/5664', 'en', 1007), +(3491, 'Harper\'s Young People, May 30, 1882\nAn Illustrated Weekly', 'Various', '2018-09-24', 0, 'https://www.gutenberg.org/ebooks/57968', 'en', 479), +(3492, 'Le Tour de l\'Espagne en Automobile\nEtude de Tourisme', 'Marge, Pierre', '2013-12-29', 6, 'https://www.gutenberg.org/ebooks/44543', 'fr', 2175), +(3493, 'Over Strand and Field: A Record of Travel through Brittany', 'Flaubert, Gustave', '2004-12-02', 17, 'https://www.gutenberg.org/ebooks/14233', 'en', 2281), +(3494, 'Dua Libro de l\' Lingvo Internacia', 'Zamenhof, L. L. (Ludwik Lejzer)', '2006-12-03', 44, 'https://www.gutenberg.org/ebooks/20006', 'eo', 2282), +(3495, 'When a Man\'s Single: A Tale of Literary Life', 'Barrie, J. M. (James Matthew)', '2012-10-12', 25, 'https://www.gutenberg.org/ebooks/41031', 'en', 2283), +(3496, 'Recollections of Dante Gabriel Rossetti', 'Caine, Hall, Sir', '2008-05-23', 15, 'https://www.gutenberg.org/ebooks/25574', 'en', 2284), +(3497, 'Tunisias\nJohann Ladislav Pyrker\'s sämmtliche Werke (1/3)', 'Pyrker, János László', '2017-11-30', 39, 'https://www.gutenberg.org/ebooks/56086', 'de', 8), +(3498, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 539, March 24, 1832', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11741', 'en', 133), +(3499, 'A Political Diary, 1828-1830, Volume II', 'Ellenborough, Edward Law, Earl of', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10693', 'en', 2285), +(3500, 'Girls of the Morning-Glory Camp Fire', 'Hornibrook, Isabel', '2018-05-13', 9, 'https://www.gutenberg.org/ebooks/57154', 'en', 622), +(3501, 'A Critical History of Greek Philosophy', 'Stace, W. T. (Walter Terence)', '2010-08-12', 378, 'https://www.gutenberg.org/ebooks/33411', 'en', 2286), +(3502, 'Index of the Project Gutenberg Works of Horatio Alger, Jr.', 'Alger, Horatio, Jr.', '2019-02-20', 25, 'https://www.gutenberg.org/ebooks/58920', 'en', 198), +(3503, 'The Henchman', 'Luther, Mark Lee', '2006-08-31', 16, 'https://www.gutenberg.org/ebooks/19148', 'en', 2287), +(3504, 'Ei sitä voi koskaan tietää', 'Shaw, Bernard', '2017-08-05', 18, 'https://www.gutenberg.org/ebooks/55267', 'fi', 2288), +(3505, 'Get Out of Our Skies!', 'Jarvis, E. K.', '2008-10-06', 30, 'https://www.gutenberg.org/ebooks/26795', 'en', 26), +(3506, 'The Corner House Girls in a Play\nHow they rehearsed, how they acted, and what the play brought in', 'Hill, Grace Brooks', '2010-03-21', 7, 'https://www.gutenberg.org/ebooks/31722', 'en', 62), +(3507, 'Frank Reade and His Steam Horse', 'Senarens, Luis', '2015-08-06', 11, 'https://www.gutenberg.org/ebooks/49638', 'en', 2289), +(3508, '\"The Kingdom of God Is Within You\"\r\nChristianity Not as a Mystic Religion but as a New Theory of Life', 'Tolstoy, Leo, graf', '2013-07-26', 132, 'https://www.gutenberg.org/ebooks/43302', 'en', 2290), +(3509, 'My Lady Caprice', 'Farnol, Jeffery', '2000-01-01', 18, 'https://www.gutenberg.org/ebooks/2025', 'en', 348), +(3510, 'The Economist, Volume 1, No. 3', 'Various', '2008-12-29', 129, 'https://www.gutenberg.org/ebooks/27647', 'en', 2291), +(3511, 'Waysiders, Stories of Connacht', 'O\'Kelly, Seumas', '2004-09-15', 30, 'https://www.gutenberg.org/ebooks/13472', 'en', 2292), +(3512, 'Quotes and Images From The Works of Charles Dudley Warner', 'Warner, Charles Dudley', '2004-08-28', 13, 'https://www.gutenberg.org/ebooks/7557', 'en', 1026), +(3513, 'The Romance of Biography (Vol 1 of 2)\r\nor Memoirs of Women Loved and Celebrated by Poets, from the Days of the Troubadours to the Present Age. 3rd ed. 2 Vols.', 'Jameson, Mrs. (Anna)', '2011-02-24', 8, 'https://www.gutenberg.org/ebooks/35382', 'en', 2293), +(3514, 'Verdades amargas\nestudo politico dedicado às classes que pensam, que possuem\ne que trabalham', 'Nunes, Cláudio José', '2006-11-30', 13, 'https://www.gutenberg.org/ebooks/19974', 'pt', 2294), +(3515, 'Chronicles of England, Scotland and Ireland (2 of 6): England (11 of 12)\r\nEdward the Third, Who Came to the Crowne by the Resignation of His Father Edward the Second', 'Holinshed, Raphael', '2014-08-24', 23, 'https://www.gutenberg.org/ebooks/46670', 'en', 288), +(3516, 'Marietta: A Maid of Venice', 'Crawford, F. Marion (Francis Marion)', '2005-06-21', 42, 'https://www.gutenberg.org/ebooks/16100', 'en', 2295), +(3517, 'Harrison\'s New Nursery Picture Book', NULL, '2007-08-16', 15, 'https://www.gutenberg.org/ebooks/22335', 'en', 2296), +(3518, 'De Tribus Impostoribus, A. D. 1230: The Three Impostors\r\nTranslated (with notes and comments) from a French manuscript of the work written in the year 1716, with a dissertation on the original treatise and a bibliography of the various editions', NULL, '2015-12-18', 10, 'https://www.gutenberg.org/ebooks/50715', 'en', 2297), +(3519, 'Barrack Room Ballads', 'Kipling, Rudyard', '2001-09-01', 132, 'https://www.gutenberg.org/ebooks/2819', 'en', 2298), +(3520, 'Hugh Wynne, Free Quaker\r\nSometime Brevet Lieutenant-Colonel on the Staff of his Excellency General Washington', 'Mitchell, S. Weir (Silas Weir)', '2004-09-01', 24, 'https://www.gutenberg.org/ebooks/6485', 'en', 2299), +(3521, 'Victor Ollnee\'s Discipline', 'Garland, Hamlin', '2010-11-08', 24, 'https://www.gutenberg.org/ebooks/34250', 'en', 2300), +(3522, 'The Poems of Henry Kendall\r\nWith Biographical Note by Bertram Stevens', 'Kendall, Henry', '1997-07-01', 61, 'https://www.gutenberg.org/ebooks/962', 'en', 2301), +(3523, 'Metamorphosis', 'Kafka, Franz', '2005-08-17', 5690, 'https://www.gutenberg.org/ebooks/5200', 'en', 1061), +(3524, 'Fresh Fields', 'Burroughs, John', '2013-11-08', 38, 'https://www.gutenberg.org/ebooks/44127', 'en', 1216), +(3525, 'Historical Tales and Legends of the Highlands', NULL, '2018-12-31', 43, 'https://www.gutenberg.org/ebooks/58578', 'en', 2302), +(3526, 'Absurd Ditties', 'Farrow, G. E. (George Edward)', '2016-10-01', 23, 'https://www.gutenberg.org/ebooks/53190', 'en', 564), +(3527, 'Philo-Judæus of Alexandria', 'Bentwich, Norman', '2005-01-10', 34, 'https://www.gutenberg.org/ebooks/14657', 'en', 2303), +(3528, 'Confessiones', 'Augustine, Saint, Bishop of Hippo', '2010-10-10', 91, 'https://www.gutenberg.org/ebooks/33849', 'la', 2304), +(3529, 'Ernest Linwood; or, The Inner Life of the Author', 'Hentz, Caroline Lee', '2007-01-27', 23, 'https://www.gutenberg.org/ebooks/20462', 'en', 61), +(3530, 'The Great Round World and What Is Going On In It, Vol. 1, No. 35, July 8, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-07', 12, 'https://www.gutenberg.org/ebooks/15785', 'en', 1), +(3531, 'Reasons why a Churchman may with Great Justice Refuse to Subscribe to the British and Foreign Bible Society', 'Lockwood, Richard', '2016-05-10', 5, 'https://www.gutenberg.org/ebooks/52042', 'en', 2277), +(3532, 'Mary Wollstonecraft\'s Original Stories', 'Wollstonecraft, Mary', '2011-06-24', 151, 'https://www.gutenberg.org/ebooks/36507', 'en', 2305), +(3533, 'Volcanoes of the United States', 'Brantley, Steven R.', '2018-07-17', 10, 'https://www.gutenberg.org/ebooks/57530', 'en', 2306), +(3534, 'Het Stoomhuis: De IJzeren Reus (1/2)', 'Verne, Jules', '2010-07-04', 9, 'https://www.gutenberg.org/ebooks/33075', 'nl', 323), +(3535, 'Yellowstone Nights', 'Quick, Herbert', '2012-08-26', 15, 'https://www.gutenberg.org/ebooks/40587', 'en', 2307), +(3536, 'The Lady in the Car', 'Le Queux, William', '2012-11-23', 15, 'https://www.gutenberg.org/ebooks/41455', 'en', 2308), +(3537, 'The Approach to Philosophy', 'Perry, Ralph Barton', '2008-04-19', 72, 'https://www.gutenberg.org/ebooks/25110', 'en', 779), +(3538, 'The Happiest Time of Their Lives', 'Miller, Alice Duer', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11325', 'en', 109), +(3539, 'Gods and Fighting Men\r\nThe story of the Tuatha de Danaan and of the Fianna of Ireland, arranged and put into English by Lady Gregory', 'Gregory, Lady', '2004-12-25', 167, 'https://www.gutenberg.org/ebooks/14465', 'en', 2309), +(3540, 'Left End Edwards', 'Barbour, Ralph Henry', '2007-02-24', 22, 'https://www.gutenberg.org/ebooks/20650', 'en', 2154), +(3541, 'State of the Union Addresses', 'Roosevelt, Theodore', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/5032', 'en', 1926), +(3542, 'Plutarch\'s Lives, Volume 4 (of 4)', 'Plutarch', '2013-11-30', 112, 'https://www.gutenberg.org/ebooks/44315', 'en', 2310), +(3543, 'Encyclopaedia Britannica, 11th Edition, \"Evangelical Church Conference\" to \"Fairbairn, Sir William\"\r\nVolume 10, Slice 1', 'Various', '2011-07-14', 24, 'https://www.gutenberg.org/ebooks/36735', 'en', 1081), +(3544, 'The Yillian Way', 'Laumer, Keith', '2007-06-09', 76, 'https://www.gutenberg.org/ebooks/21782', 'en', 179), +(3545, 'Observations on antimony\r\nRead before the Medical Society of London, and published at their request', 'Millar, John', '2019-06-07', 24, 'https://www.gutenberg.org/ebooks/59698', 'en', 2311), +(3546, '長生殿', 'Hong, Sheng', '2016-07-02', 45, 'https://www.gutenberg.org/ebooks/52270', 'zh', 2312), +(3547, 'The Spirit-Filled Life', 'MacNeil, John', '2010-07-24', 49, 'https://www.gutenberg.org/ebooks/33247', 'en', 2313), +(3548, 'The Life of Columbus\r\nFrom His Own Letters and Journals and Other Documents of His Time', 'Hale, Edward Everett', '2006-02-15', 59, 'https://www.gutenberg.org/ebooks/1492', 'en', 2036), +(3549, 'Index of the Project Gutenberg Works of Victor Hugo', 'Hugo, Victor', '2018-08-15', 21, 'https://www.gutenberg.org/ebooks/57702', 'en', 198), +(3550, 'Fables in Slang', 'Ade, George', '2008-05-04', 54, 'https://www.gutenberg.org/ebooks/25322', 'en', 190), +(3551, 'The Atlantic Monthly, Volume 07, No. 40, February, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11117', 'en', 1227), +(3552, 'The Emerald City of Oz', 'Baum, L. Frank (Lyman Frank)', '2012-12-20', 106, 'https://www.gutenberg.org/ebooks/41667', 'en', 2314), +(3553, 'No Strings Attached', 'Del Rey, Lester', '2010-05-16', 96, 'https://www.gutenberg.org/ebooks/32395', 'en', 179), +(3554, 'Mary Magdalen: A Chronicle', 'Saltus, Edgar', '2010-03-05', 47, 'https://www.gutenberg.org/ebooks/31510', 'en', 459), +(3555, 'No Man\'s Land: A History of El Camino Real', 'Nardini, Louis Raphael', '2017-07-06', 6, 'https://www.gutenberg.org/ebooks/55055', 'en', 2315), +(3556, 'The Young Captives: A Story of Judah and Babylon', 'Jones, Erasmus W.', '2004-06-30', 5, 'https://www.gutenberg.org/ebooks/12792', 'en', 2316), +(3557, 'That Girl Montana', 'Ryan, Marah Ellis', '2008-12-09', 20, 'https://www.gutenberg.org/ebooks/27475', 'en', 315), +(3558, 'Scientific American Supplement, No. 821, September 26, 1891', 'Various', '2004-10-05', 32, 'https://www.gutenberg.org/ebooks/13640', 'en', 210), +(3559, 'The State of Society in France Before the Revolution of 1789\nAnd the Causes Which Led to That Event', 'Tocqueville, Alexis de', '2017-02-17', 54, 'https://www.gutenberg.org/ebooks/54187', 'en', 2317), +(3560, 'Lettice', 'Molesworth, Mrs.', '2013-07-08', 9, 'https://www.gutenberg.org/ebooks/43130', 'en', 376), +(3561, 'Human Genome Project, rough draft, Chromosome Number 17', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2217', 'en', 2318), +(3562, 'A Short Life of Abraham Lincoln\nCondensed from Nicolay & Hay\'s Abraham Lincoln: A History', 'Nicolay, John G. (John George)', '2005-07-19', 30, 'https://www.gutenberg.org/ebooks/16332', 'en', 1716), +(3563, 'Wood-Carving: Design and Workmanship', 'Jack, George', '2007-07-19', 155, 'https://www.gutenberg.org/ebooks/22107', 'en', 2319), +(3564, 'Night Must Fall : a Play in Three Acts', 'Williams, Emlyn', '2005-03-01', 24, 'https://www.gutenberg.org/ebooks/7765', 'en', 317), +(3565, 'Les grands navigateurs du XVIIIe siècle', 'Verne, Jules', '2017-11-01', 18, 'https://www.gutenberg.org/ebooks/55869', 'fr', 2320), +(3566, 'Pfarre und Schule: Eine Dorfgeschichte. Dritter Band.', 'Gerstäcker, Friedrich', '2014-07-29', 13, 'https://www.gutenberg.org/ebooks/46442', 'de', 138), +(3567, 'Josephi: Kuvaus 3:ssa Kohtauksessa', 'Lagervall, Jacob Fredrik', '2014-12-08', 7, 'https://www.gutenberg.org/ebooks/47590', 'fi', 2321), +(3568, 'Luftseilerens Skat', 'Harper, Harry', '2010-10-12', 20, 'https://www.gutenberg.org/ebooks/34062', 'no', 2322), +(3569, 'Luvattu maa', 'Bourget, Paul', '2015-11-22', 4, 'https://www.gutenberg.org/ebooks/50527', 'fi', 1850), +(3570, 'The Cadets of Flemming Hall', 'Ray, Anna Chapin', '2019-03-04', 8, 'https://www.gutenberg.org/ebooks/59005', 'en', 1655), +(3571, 'Der Pfefferkuchenbäcker und Lebküchler', 'Stegmann, F. H. (Friedrich Hermann)', '2018-03-29', 9, 'https://www.gutenberg.org/ebooks/56871', 'de', 1372), +(3572, 'John Inglesant: A Romance (Volume 2 of 2)', 'Shorthouse, J. H. (Joseph Henry)', '2014-01-04', 19, 'https://www.gutenberg.org/ebooks/44588', 'en', 1397), +(3573, 'The Behavior of Crowds: A Psychological Study', 'Martin, Everett Dean', '2012-10-02', 31, 'https://www.gutenberg.org/ebooks/40914', 'en', 2323), +(3574, 'The Blind Lion of the Congo', 'Whitney, Elliott', '2010-05-24', 25, 'https://www.gutenberg.org/ebooks/32508', 'en', 2324), +(3575, 'Vanderbilt Mansion National Historic Site, New York', 'Snell, Charles W.', '2019-06-30', 67, 'https://www.gutenberg.org/ebooks/59839', 'en', 2325), +(3576, 'Pakolaisen päiväkirja\nSotatunnelmia vuosista 1848 ja 1849', 'Jókai, Mór', '2007-06-25', 14, 'https://www.gutenberg.org/ebooks/21923', 'fi', 2326), +(3577, 'The Future of Brooklyn', 'Chapin, Alfred Clark', '2011-08-07', 3, 'https://www.gutenberg.org/ebooks/36994', 'en', 2327), +(3578, 'Hilda Lessways', 'Bennett, Arnold', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/10658', 'en', 1567), +(3579, 'Raemaekers\' Cartoon History of the War, Volume 2\nThe Second Twelve Months of War', NULL, '2011-10-25', 23, 'https://www.gutenberg.org/ebooks/37846', 'en', 2328); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(3580, 'Blackwood\'s Edinburgh Magazine, Volume 64, No.394, August, 1848', 'Various', '2012-07-03', 7, 'https://www.gutenberg.org/ebooks/40128', 'en', 274), +(3581, 'Game Birds and Game Fishes of the Pacific Coast', 'Payne, Harry Thom', '2011-11-16', 25, 'https://www.gutenberg.org/ebooks/38032', 'en', 2329), +(3582, 'Sappho\nEin Trauerspiel in fünf Aufzügen', 'Grillparzer, Franz', '2005-10-01', 18, 'https://www.gutenberg.org/ebooks/9062', 'de', 1298), +(3583, 'Die Reden Gotamo Buddhos. Mittlere Sammlung, erster Band', NULL, '2015-02-23', 10, 'https://www.gutenberg.org/ebooks/48345', 'de', 639), +(3584, 'Good Things to Eat, as Suggested by Rufus\r\nA Collection of Practical Recipes for Preparing Meats, Game, Fowl, Fish, Puddings, Pastries, Etc.', 'Estes, Rufus', '2006-05-22', 64, 'https://www.gutenberg.org/ebooks/18435', 'en', 103), +(3585, 'Canadian Wild Flowers: Selections from the Writings of Miss Helen M. Johnson', 'Johnson, Helen M. (Helen Mar)', '2004-11-01', 7, 'https://www.gutenberg.org/ebooks/6816', 'en', 28), +(3586, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 5 of 9]', 'Shakespeare, William', '2015-06-27', 25, 'https://www.gutenberg.org/ebooks/49297', 'en', 1088), +(3587, 'Memoirs of Napoleon Bonaparte — Volume 08', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 14, 'https://www.gutenberg.org/ebooks/3558', 'en', 840), +(3588, 'Gaspar the Gaucho: A Story of the Gran Chaco', 'Reid, Mayne', '2007-11-28', 15, 'https://www.gutenberg.org/ebooks/23648', 'en', 2330), +(3589, 'Little Journeys to the Homes of the Great - Volume 01\r\nLittle Journeys to the Homes of Good Men and Great', 'Hubbard, Elbert', '2004-07-18', 40, 'https://www.gutenberg.org/ebooks/12933', 'en', 2331), +(3590, 'A Discourse on the Study of the Law of Nature and Nations', 'Mackintosh, James, Sir', '2009-07-11', 22, 'https://www.gutenberg.org/ebooks/29372', 'en', 2332), +(3591, 'The Girls From Earth', 'Robinson, Frank M.', '2016-02-22', 57, 'https://www.gutenberg.org/ebooks/51268', 'en', 26), +(3592, 'La 628-E8\r\nComprenant en annexe le chapitre intégral \"Balzac\"', 'Mirbeau, Octave', '2017-04-10', 20, 'https://www.gutenberg.org/ebooks/54528', 'fr', 2333), +(3593, 'The Manóbos of Mindanáo\nMemoirs of the National Academy of Sciences, Volume XXIII, First Memoir', 'Garvan, John M.', '2006-06-16', 34, 'https://www.gutenberg.org/ebooks/18607', 'en', 2334), +(3594, 'L\'éclaireur', 'Aimard, Gustave', '2015-01-07', 31, 'https://www.gutenberg.org/ebooks/47903', 'fr', 2335), +(3595, 'A Book of Autographs', 'Hawthorne, Nathaniel', '2005-11-01', 10, 'https://www.gutenberg.org/ebooks/9250', 'en', 2336), +(3596, 'Kantele Taikka Suomen Kansan sekä Wanhoja että Nykyisempiä Runoja ja Lauluja, II', 'Lönnrot, Elias', '2015-02-06', 15, 'https://www.gutenberg.org/ebooks/48177', 'fi', 1171), +(3597, 'Canadian Crusoes: A Tale of the Rice Lake Plains', 'Traill, Catharine Parr Strickland', '2005-06-01', 24, 'https://www.gutenberg.org/ebooks/8382', 'en', 2337), +(3598, 'D-99: a science-fiction novel', 'Fyfe, H. B. (Horace Bowne)', '2016-04-26', 63, 'https://www.gutenberg.org/ebooks/51866', 'en', 26), +(3599, 'Revolutionist\'s Handbook and Pocket Companion', 'Shaw, Bernard', '2008-07-22', 37, 'https://www.gutenberg.org/ebooks/26108', 'en', 472), +(3600, 'At the Sign of the Eagle', 'Parker, Gilbert', '2004-11-16', 16, 'https://www.gutenberg.org/ebooks/6218', 'en', 1219), +(3601, 'The Invisible Foe\nA Story Adapted from the Play by Walter Hackett', 'Miln, Louise Jordan', '2015-10-12', 14, 'https://www.gutenberg.org/ebooks/50188', 'en', 376), +(3602, 'Fifteenth Century Prose and Verse', NULL, '2010-01-04', 31, 'https://www.gutenberg.org/ebooks/30851', 'en', 2338), +(3603, 'Punch or the London Charivari, Vol. 147, October 7, 1914', 'Various', '2009-02-15', 12, 'https://www.gutenberg.org/ebooks/28092', 'en', 134), +(3604, 'The Death Ship: A Strange Story, Vol. 2 (of 3)', 'Russell, William Clark', '2015-09-07', 10, 'https://www.gutenberg.org/ebooks/49899', 'en', 2339), +(3605, 'The Mathematicians', 'Feldman, Arthur', '2009-06-17', 41, 'https://www.gutenberg.org/ebooks/29140', 'en', 179), +(3606, 'Les mystères du peuple, Tome IV\nHistoire d\'une famille de prolétaires à travers les âges', 'Sue, Eugène', '2010-04-14', 11, 'https://www.gutenberg.org/ebooks/31983', 'fr', 2340), +(3607, 'Shawn of Skarrow', 'Ellis, James Tandy', '2008-10-16', 6, 'https://www.gutenberg.org/ebooks/26934', 'en', 1996), +(3608, 'Wallenstein 1: Wallensteinin leiri; Piccolominit\r\nRunomittainen näytelmä', 'Schiller, Friedrich', '2014-05-17', 7, 'https://www.gutenberg.org/ebooks/45668', 'fi', 2341), +(3609, 'The Narrative of Lunsford Lane, Formerly of Raleigh, N.C.\r\nEmbracing an account of his early life, the redemption by purchase of himself and family from slavery, and his banishment from the place of his birth for the crime of wearing a colored skin', 'Lane, Lunsford', '2005-02-21', 23, 'https://www.gutenberg.org/ebooks/15118', 'en', 2342), +(3610, 'Excursions in the County of Cornwall\r\nComprising a Concise Historical and Topographical Delineation of the Principal Towns and Villages, Together With Descriptions of the Residences of the Nobility and Gentry, Remains of Antiquity, and Every Other Interesting Object of Curiosity', 'Stockdale, Frederick Wilton Litchfield', '2019-04-09', 12, 'https://www.gutenberg.org/ebooks/59237', 'en', 2343), +(3611, 'The Tempest', 'Shakespeare, William', '1999-07-01', 37, 'https://www.gutenberg.org/ebooks/1801', 'en', 2344), +(3612, 'L\'Illustration, No. 0016, 17 Juin 1843', 'Various', '2011-08-29', 3, 'https://www.gutenberg.org/ebooks/37248', 'fr', 150), +(3613, 'The Bay State Monthly — Volume 1, No. 2, February, 1884', 'Various', '2005-05-28', 21, 'https://www.gutenberg.org/ebooks/15924', 'en', 1593), +(3614, 'The Girl Scout\'s Triumph; or, Rosanna\'s Sacrifice', 'Galt, Katherine Keene', '2013-02-06', 16, 'https://www.gutenberg.org/ebooks/42029', 'en', 2345), +(3615, 'The World\'s Best Poetry, Volume 04: The Higher Life', NULL, '2004-06-28', 58, 'https://www.gutenberg.org/ebooks/12759', 'en', 2346), +(3616, 'Assunta Spina: In due atti', 'Di Giacomo, Salvatore', '2011-04-24', 11, 'https://www.gutenberg.org/ebooks/35947', 'it', 402), +(3617, 'History of the Second Massachusetts Regiment of Infantry: A prisoner\'s diary\nA paper read at the officers\' reunion in Boston, May 11, 1877', 'Quincy, Samuel M. (Samuel Miller)', '2011-01-09', 43, 'https://www.gutenberg.org/ebooks/34895', 'en', 2347), +(3618, 'La fille des indiens rouges', 'Chevalier, H. Emile (Henri Emile)', '2006-04-26', 12, 'https://www.gutenberg.org/ebooks/18263', 'fr', 2348), +(3619, 'Sir George Tressady — Volume II', 'Ward, Humphry, Mrs.', '2006-01-01', 16, 'https://www.gutenberg.org/ebooks/9634', 'en', 401), +(3620, 'A Short Essay Toward the Improvement of Psalmody\nOr, An Enquiry How the Psalms of David Ought to Be Translated into Christian Songs, and How Lawful and Necessary It Is to Compose Other Hymns According to the Clearer Revelations of the Gospel, for the Use of the Christian Church.', 'Watts, Isaac', '2009-11-06', 18, 'https://www.gutenberg.org/ebooks/30409', 'en', 2349), +(3621, 'His Master\'s Voice', 'Garrett, Randall', '2015-03-17', 30, 'https://www.gutenberg.org/ebooks/48513', 'en', 831), +(3622, '文心雕龍', 'Liu, Xie', '2007-12-11', 58, 'https://www.gutenberg.org/ebooks/23822', 'zh', 2350), +(3623, 'The Masked Bridal', 'Sheldon, Georgie, Mrs.', '2009-07-27', 21, 'https://www.gutenberg.org/ebooks/29524', 'en', 348), +(3624, 'Begijnhof-sproken', 'Timmermans, Felix', '2013-05-26', 14, 'https://www.gutenberg.org/ebooks/42815', 'nl', 319), +(3625, 'Cyclopedia of Commerce, Accountancy, Business Administration, v. 03 (of 10)', 'American School of Correspondence', '2014-08-03', 19, 'https://www.gutenberg.org/ebooks/46489', 'en', 2351), +(3626, 'Everglades Wildguide\nHandbook 143', 'George, Jean Craighead', '2017-06-24', 15, 'https://www.gutenberg.org/ebooks/54970', 'en', 2352), +(3627, 'Lives of Famous Indian Chiefs\r\nFrom Cofachiqui, the Indian Princess, and Powhatan; down to and including Chief Joseph and Geronimo. Also an answer, from the latest research, of the query, Whence came the Indian? Together with a number of thrillingly interesting Indian stories and anecdotes from history', 'Wood, Norman B. (Norman Barton)', '2019-01-27', 252, 'https://www.gutenberg.org/ebooks/58781', 'en', 2027), +(3628, 'Nietzsche and Art', 'Ludovici, Anthony M. (Anthony Mario)', '2016-10-26', 61, 'https://www.gutenberg.org/ebooks/53369', 'en', 2353), +(3629, 'Carnacki, the Ghost Finder', 'Hodgson, William Hope', '2004-01-01', 140, 'https://www.gutenberg.org/ebooks/10832', 'en', 2354), +(3630, 'Call Mr. Fortune', 'Bailey, H. C. (Henry Christopher)', '2019-06-01', 225, 'https://www.gutenberg.org/ebooks/59653', 'en', 128), +(3631, 'Man on the Ocean: A Book about Boats and Ships', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 51, 'https://www.gutenberg.org/ebooks/21749', 'en', 2355), +(3632, 'Prufrock and Other Observations', 'Eliot, T. S. (Thomas Stearns)', '1998-09-01', 242, 'https://www.gutenberg.org/ebooks/1459', 'en', 8), +(3633, 'The Four Corners of the World', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-25', 100, 'https://www.gutenberg.org/ebooks/38664', 'en', 2356), +(3634, 'The Kellys and the O\'Kellys', 'Trollope, Anthony', '2004-06-28', 50, 'https://www.gutenberg.org/ebooks/4917', 'en', 669), +(3635, 'Rídan The Devil And Other Stories\n1899', 'Becke, Louis', '2008-03-15', 48, 'https://www.gutenberg.org/ebooks/24835', 'en', 2357), +(3636, 'L\'Illustration, No. 3238, 18 Mars 1905', 'Various', '2010-10-25', 3, 'https://www.gutenberg.org/ebooks/33882', 'fr', 150), +(3637, 'Index of the Project Gutenberg Works of Jack London', 'London, Jack', '2019-05-08', 30, 'https://www.gutenberg.org/ebooks/59461', 'en', 198), +(3638, 'Camp and Trail', 'White, Stewart Edward', '2010-06-23', 108, 'https://www.gutenberg.org/ebooks/32950', 'en', 2155), +(3639, 'Neighborhood Stories', 'Gale, Zona', '2016-05-16', 18, 'https://www.gutenberg.org/ebooks/52089', 'en', 2358), +(3640, 'The Gospels in Four Part Harmony', 'Clontz, J. (Jerry)', '2003-08-01', 31, 'https://www.gutenberg.org/ebooks/4319', 'en', 2359), +(3641, 'Het Leven der Dieren: Deel 1, Hoofdstuk 14: Buideldieren; Hoofdstuk 15: Kloakdieren', 'Brehm, Alfred Edmund', '2007-12-24', 6, 'https://www.gutenberg.org/ebooks/24009', 'nl', 2360), +(3642, 'Narrative of the Circumnavigation of the Globe by the Austrian Frigate Novara, Volume I\r\n(Commodore B. Von Wullerstorf-Urbair,) Undertaken by Order of the Imperial Government in the Years 1857, 1858, & 1859, Under the Immediate Auspices of His I. and R. Highness the Archduke Ferdinand Maximilian, Commander-In-Chief of the\r\nAustrian Navy.', 'Scherzer, Karl, Ritter von', '2011-12-31', 32, 'https://www.gutenberg.org/ebooks/38456', 'en', 2361), +(3643, 'Memoirs of the life, exile, and conversations of the Emperor Napoleon. (Vol. I)', 'Las Cases, Emmanuel-Auguste-Dieudonné, comte de', '2017-01-16', 28, 'https://www.gutenberg.org/ebooks/53967', 'en', 2362), +(3644, '\"Prison Life in Andersonville\"\r\nWith Special Reference to the Opening of Providence Spring', 'Maile, John Levi', '2012-04-30', 24, 'https://www.gutenberg.org/ebooks/39584', 'en', 2363), +(3645, 'Gray Days and Gold in England and Scotland', 'Winter, William', '2018-01-25', 13, 'https://www.gutenberg.org/ebooks/56429', 'en', 2364), +(3646, 'Knock Three Times!', 'Webb, Marion St. John', '2014-05-28', 25, 'https://www.gutenberg.org/ebooks/45802', 'en', 31), +(3647, 'Hedda Gabler: Dramo en kvar aktoj', 'Ibsen, Henrik', '2006-09-05', 13, 'https://www.gutenberg.org/ebooks/19183', 'eo', 2365), +(3648, 'Government by the Brewers?', 'Keitel, Adolph', '2005-12-01', 18, 'https://www.gutenberg.org/ebooks/9406', 'en', 2366), +(3649, 'The Legend of the Bleeding-heart', 'Johnston, Annie F. (Annie Fellows)', '2006-02-22', 12, 'https://www.gutenberg.org/ebooks/17825', 'en', 1007), +(3650, 'The Brothers Dalziel\r\nA Record of Fifty Years Work in Conjunction with many of the Most Distinguished Artists of the Period 1840-1890', 'Dalziel, George', '2015-04-17', 14, 'https://www.gutenberg.org/ebooks/48721', 'en', 2367), +(3651, 'Hilda: A Story of Calcutta', 'Duncan, Sara Jeannette', '2006-03-26', 39, 'https://www.gutenberg.org/ebooks/18051', 'en', 2368), +(3652, 'Freedom Through Disobedience', 'Das, Chitta Ranjan', '2011-02-21', 13, 'https://www.gutenberg.org/ebooks/35349', 'en', 2369), +(3653, 'The Harmsworth Magazine, v. 1, 1898-1899, No. 2', 'Various', '2009-08-17', 5, 'https://www.gutenberg.org/ebooks/29716', 'en', 2370), +(3654, 'Court Memoirs of France Series — Complete', 'Various', '2004-10-27', 13, 'https://www.gutenberg.org/ebooks/3900', 'en', 2051), +(3655, 'A String of Amber Beads', 'Holden, Martha Everts', '2005-11-06', 44, 'https://www.gutenberg.org/ebooks/17019', 'en', 740), +(3656, 'Saragossa: A Story of Spanish Valor', 'Pérez Galdós, Benito', '2014-12-24', 18, 'https://www.gutenberg.org/ebooks/47769', 'en', 2371), +(3657, 'Tolstoy', 'Rolland, Romain', '2015-07-13', 24, 'https://www.gutenberg.org/ebooks/49435', 'en', 2372), +(3658, 'I\'ve Married Marjorie', 'Widdemer, Margaret', '2007-10-06', 25, 'https://www.gutenberg.org/ebooks/22904', 'en', 705), +(3659, 'La Conquête de Plassans', 'Zola, Émile', '2005-08-01', 22, 'https://www.gutenberg.org/ebooks/8712', 'fr', 2373), +(3660, 'Seasoning of Wood', 'Wagner, J. B. (Joseph Bernard)', '2008-09-12', 50, 'https://www.gutenberg.org/ebooks/26598', 'en', 2374), +(3661, 'La vie littéraire. Troisième série', 'France, Anatole', '2006-09-22', 24, 'https://www.gutenberg.org/ebooks/19345', 'fr', 1765), +(3662, 'The Story of a Summer\nOr, Journal Leaves from Chappaqua', 'Cleveland, Cecilia Pauline', '2006-05-01', 13, 'https://www.gutenberg.org/ebooks/18297', 'en', 2375), +(3663, 'The Pursuit', 'Savile, Frank (Frank Mackenzie)', '2011-01-05', 11, 'https://www.gutenberg.org/ebooks/34861', 'en', 1380), +(3664, 'In Flanders Fields, and Other Poems', 'McCrae, John', '2008-07-05', 138, 'https://www.gutenberg.org/ebooks/353', 'en', 54), +(3665, 'Reineke Fuchs', 'Goethe, Johann Wolfgang von', '2000-06-01', 58, 'https://www.gutenberg.org/ebooks/2228', 'de', 1733), +(3666, 'Notes and Queries, Number 54, November 9, 1850\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-07-24', 10, 'https://www.gutenberg.org/ebooks/22138', 'en', 105), +(3667, 'The Travels and Extraordinary Adventures of Bob the Squirrel', 'Anonymous', '2017-10-31', 8, 'https://www.gutenberg.org/ebooks/55856', 'en', 195), +(3668, 'The Mill on the Floss', 'Eliot, George', '2004-10-01', 553, 'https://www.gutenberg.org/ebooks/6688', 'en', 1909), +(3669, 'A serious proposal to the Ladies, for the advancement of their true and greatest interest (In Two Parts)', 'Astell, Mary', '2017-06-26', 55, 'https://www.gutenberg.org/ebooks/54984', 'en', 2376), +(3670, 'Gowrie; or, the King\'s Plot.', 'James, G. P. R. (George Payne Rainsford)', '2015-11-20', 11, 'https://www.gutenberg.org/ebooks/50518', 'en', 2377), +(3671, 'The Sexual Life of the Child', 'Moll, Albert', '2009-03-25', 54, 'https://www.gutenberg.org/ebooks/28402', 'en', 2378), +(3672, 'Visionen: Skizzen und Erzählungen', 'Panizza, Oskar', '2013-10-11', 18, 'https://www.gutenberg.org/ebooks/43933', 'de', 422), +(3673, 'The North Devon Coast', 'Harper, Charles G. (Charles George)', '2019-01-27', 5, 'https://www.gutenberg.org/ebooks/58775', 'en', 2379), +(3674, 'Pakolaiset', 'Linnankoski, Johannes', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/11914', 'fi', 61), +(3675, 'The Pilot and his Wife', 'Lie, Jonas', '2005-04-08', 20, 'https://www.gutenberg.org/ebooks/15588', 'en', 286), +(3676, 'What Shall We Do?', 'Tolstoy, Leo, graf', '2012-01-27', 32, 'https://www.gutenberg.org/ebooks/38690', 'en', 2380), +(3677, 'The Black Watch: A Record in Action', 'Cassells, Joe', '2010-07-28', 19, 'https://www.gutenberg.org/ebooks/33278', 'en', 2381), +(3678, 'The Riches of Bunyan: Selected from His Works', 'Bunyan, John', '2004-06-01', 26, 'https://www.gutenberg.org/ebooks/5831', 'en', 2382), +(3679, 'The Red Thumb Mark', 'Freeman, R. Austin (Richard Austin)', '2004-02-01', 112, 'https://www.gutenberg.org/ebooks/11128', 'en', 2383), +(3680, 'Half a Man: The Status of the Negro in New York', 'Ovington, Mary White', '2012-05-20', 28, 'https://www.gutenberg.org/ebooks/39742', 'en', 2384), +(3681, 'The Boss of Taroomba', 'Hornung, E. W. (Ernest William)', '2012-12-19', 19, 'https://www.gutenberg.org/ebooks/41658', 'en', 48), +(3682, 'Zones of the Spirit: A Book of Thoughts', 'Strindberg, August', '2013-11-06', 61, 'https://www.gutenberg.org/ebooks/44118', 'en', 2385), +(3683, 'The Believer\'s Confidence in a Faithful God\r\nand the Needless Triumph of His Enemies Considered, in a Sermon, Preached on Lord\'s Day Morning, November 23, 1817, at Seven O\'clock, at the Surrey Tabernacle', 'Church, J. (John)', '2018-12-26', 6, 'https://www.gutenberg.org/ebooks/58547', 'en', 2386), +(3684, 'McGuffey\'s Second Eclectic Reader', 'McGuffey, William Holmes', '2005-06-29', 230, 'https://www.gutenberg.org/ebooks/14668', 'en', 1019), +(3685, 'The Wave: An Egyptian Aftermath', 'Blackwood, Algernon', '2010-10-18', 23, 'https://www.gutenberg.org/ebooks/33876', 'en', 2387), +(3686, 'Reject', 'Johnson, John', '2019-05-13', 57, 'https://www.gutenberg.org/ebooks/59495', 'en', 2388), +(3687, 'Playing With Fire', 'Barr, Amelia E.', '2011-06-27', 64, 'https://www.gutenberg.org/ebooks/36538', 'en', 2389), +(3688, 'Tales of Folk and Fairies', 'Pyle, Katharine', '2008-06-27', 73, 'https://www.gutenberg.org/ebooks/25913', 'en', 1223), +(3689, 'Uncle Joe\'s Stories', 'Brabourne, Edward Hugessen Knatchbull-Hugessen, Baron', '2014-02-15', 20, 'https://www.gutenberg.org/ebooks/44924', 'en', 1817), +(3690, 'At the Gate of Samaria', 'Locke, William John', '2017-01-18', 24, 'https://www.gutenberg.org/ebooks/53993', 'en', 1079), +(3691, 'Polly\'s First Year at Boarding School', 'Whitehill, Dorothy', '2012-04-29', 16, 'https://www.gutenberg.org/ebooks/39570', 'en', 1877), +(3692, 'Cleek of Scotland Yard: Detective Stories', 'Hanshew, Thomas W.', '2010-05-01', 53, 'https://www.gutenberg.org/ebooks/32198', 'en', 1480), +(3693, 'Index to Library Reports', 'Moody, Katharine Twining', '2016-08-18', 0, 'https://www.gutenberg.org/ebooks/52841', 'en', 2390), +(3694, 'Hey Diddle Diddle and Baby Bunting\nR. Caldecott\'s Picture Books', 'Caldecott, Randolph', '2006-09-04', 70, 'https://www.gutenberg.org/ebooks/19177', 'en', 2296), +(3695, 'Tom Terror, the Outlaw', 'Jackson, James', '2017-08-04', 10, 'https://www.gutenberg.org/ebooks/55258', 'en', 1357), +(3696, 'Montezuma Castle National Monument, Arizona (1977)', 'Hastings, Homer F.', '2015-08-05', 19, 'https://www.gutenberg.org/ebooks/49607', 'en', 1670), +(3697, 'The Gold-Stealers\nA Story of Waddy', 'Dyson, Edward', '2005-10-19', 11, 'https://www.gutenberg.org/ebooks/16903', 'en', 792), +(3698, 'Voyage d\'un Habitant de la Lune à Paris à la Fin du XVIIIe Siècle', 'Gallet, Pierre', '2005-07-01', 32, 'https://www.gutenberg.org/ebooks/8520', 'fr', 1998), +(3699, 'Sense and Sensibility', 'Austen, Jane', '1994-09-01', 3244, 'https://www.gutenberg.org/ebooks/161', 'en', 45), +(3700, 'Nine Little Goslings', 'Coolidge, Susan', '2008-12-31', 47, 'https://www.gutenberg.org/ebooks/27678', 'en', 195), +(3701, 'Widger\'s Quotes and Images from Jacqueline by Therese Bentzon\r\nThe French Immortals: Quotes And Images', 'Bentzon, Th.', '2009-07-13', 10, 'https://www.gutenberg.org/ebooks/7568', 'en', 2391), +(3702, 'The Two Captains', 'La Motte-Fouqué, Friedrich Heinrich Karl, Freiherr de', '2001-09-01', 26, 'https://www.gutenberg.org/ebooks/2826', 'en', 2392), +(3703, 'The Atlantic Monthly, Volume 20, No. 122, December, 1867\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2009-04-28', 18, 'https://www.gutenberg.org/ebooks/28630', 'en', 1227), +(3704, 'Mademoiselle Clocque', 'Boylesve, René', '2006-07-23', 11, 'https://www.gutenberg.org/ebooks/18899', 'fr', 607), +(3705, 'Lukemisia lapsille 6', 'Topelius, Zacharias', '2016-06-27', 1, 'https://www.gutenberg.org/ebooks/52419', 'fi', 1007), +(3706, 'Man\'s Place in the Universe\r\nA Study of the Results of Scientific Research in Relation to the Unity or Plurality of Worlds, 3rd Edition', 'Wallace, Alfred Russel', '2012-06-06', 48, 'https://www.gutenberg.org/ebooks/39928', 'en', 279), +(3707, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 03 of 12)', 'Frazer, James George', '2013-01-12', 50, 'https://www.gutenberg.org/ebooks/41832', 'en', 655), +(3708, 'Black Caesar\'s Clan : A Florida Mystery Story', 'Terhune, Albert Payson', '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/4789', 'en', 167), +(3709, 'Morganin miljoonat: Salapoliisiromaani', 'Elvestad, Sven', '2018-04-01', 9, 'https://www.gutenberg.org/ebooks/56885', 'fi', 128), +(3710, 'Hopeakauha: Satuja ja kertomuksia', 'Nissinen, Alli', '2018-09-23', 1, 'https://www.gutenberg.org/ebooks/57957', 'fi', 388), +(3711, 'Ghost Stories of an Antiquary', 'James, M. R. (Montague Rhodes)', '2006-12-07', 26, 'https://www.gutenberg.org/ebooks/20039', 'en', 409), +(3712, 'The Unfinished Programme of Democracy', 'Roberts, Richard', '2018-10-17', 10, 'https://www.gutenberg.org/ebooks/58123', 'en', 216), +(3713, 'Doesticks: What He Says', 'Doesticks, Q. K. Philander', '2012-03-12', 4, 'https://www.gutenberg.org/ebooks/39114', 'en', 190), +(3714, 'A Classified Catalogue of Selected Works Published by George Bell and Sons\nNovember, 1892', 'George Bell & Sons', '2011-08-03', 4, 'https://www.gutenberg.org/ebooks/36960', 'en', 2393), +(3715, 'The Green Carnation', 'Hichens, Robert', '2008-02-02', 70, 'https://www.gutenberg.org/ebooks/24499', 'en', 2394), +(3716, 'Lloyd George: The Man and His Story', 'Dilnot, Frank', '2007-03-13', 8, 'https://www.gutenberg.org/ebooks/20805', 'en', 2395), +(3717, 'Weighed and Wanting', 'MacDonald, George', '2005-10-01', 32, 'https://www.gutenberg.org/ebooks/9096', 'en', 942), +(3718, 'Geflügelte Worte: Der Citatenschatz des deutschen Volkes', 'Büchmann, Georg', '2013-09-17', 40, 'https://www.gutenberg.org/ebooks/43759', 'de', 1026), +(3719, 'The Art of the Moving Picture', 'Lindsay, Vachel', '2004-07-26', 110, 'https://www.gutenberg.org/ebooks/13029', 'en', 2396), +(3720, 'History of the Warfare of Science with Theology in Christendom', 'White, Andrew Dickson', '1996-04-01', 268, 'https://www.gutenberg.org/ebooks/505', 'en', 2397), +(3721, 'The Advance of English Poetry in the Twentieth Century', 'Phelps, William Lyon', '2005-04-01', 33, 'https://www.gutenberg.org/ebooks/7930', 'en', 2398), +(3722, 'A Journey to the Center of the Earth', 'Verne, Jules', '2006-10-11', 84, 'https://www.gutenberg.org/ebooks/19513', 'en', 2399), +(3723, 'The Blight of Respectability\r\nAn Anatomy of the Disease and a Theory of Curative Treatment', 'Mortimer, Geoffrey', '2015-06-23', 4, 'https://www.gutenberg.org/ebooks/49263', 'en', 680), +(3724, 'Oliveira Martins: Estudo de Psychologia', 'Barreto, Moniz', '2010-02-24', 11, 'https://www.gutenberg.org/ebooks/31379', 'pt', 2400), +(3725, 'Acetylene, the Principles of Its Generation and Use\r\nA Practical Handbook on the Production, Purification, and Subsequent Treatment of Acetylene for the Development of Light, Heat, and Power', 'Butterfield, W. J. Atkinson (William John Atkinson)', '2005-05-01', 44, 'https://www.gutenberg.org/ebooks/8144', 'en', 2401), +(3726, 'Les misérables Tome I: Fantine', 'Hugo, Victor', '2006-01-10', 466, 'https://www.gutenberg.org/ebooks/17489', 'fr', 264), +(3727, 'Napoléon et Alexandre Ier (1/3)\nL\'alliance russe sous le premier Empire', 'Vandal, Albert', '2009-03-05', 10, 'https://www.gutenberg.org/ebooks/28254', 'fr', 2402), +(3728, 'The Talking Beasts: A Book of Fable Wisdom', NULL, '2004-10-20', 50, 'https://www.gutenberg.org/ebooks/13815', 'en', 1141), +(3729, 'Boys and Girls Bookshelf (Vol 2 of 17)\nFolk-Lore, Fables, And Fairy Tales', 'Various', '2009-07-12', 35, 'https://www.gutenberg.org/ebooks/29386', 'en', 1063), +(3730, 'When the Sleeper Wakes', 'Wells, H. G. (Herbert George)', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/8978', 'en', 509), +(3731, 'The Bobbsey Twins at School', 'Hope, Laura Lee', '1996-12-01', 58, 'https://www.gutenberg.org/ebooks/737', 'en', 309), +(3732, 'Wailing Wall', 'Aycock, Roger D.', '2016-01-16', 37, 'https://www.gutenberg.org/ebooks/50940', 'en', 26), +(3733, 'Hypochondriasis: A Practical Treatise (1766)', 'Hill, John', '2009-09-27', 20, 'https://www.gutenberg.org/ebooks/30099', 'en', 2403), +(3734, 'Glimpses of Nature, and Objects of Interest Described, During a Visit to the Isle of Wight\r\nDesigned to Assist and Encourage Young Persons in Forming Habits of Observation', 'Loudon, Mrs. (Jane)', '2015-02-06', 6, 'https://www.gutenberg.org/ebooks/48183', 'en', 2404), +(3735, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 07, June 5, 1858', NULL, '2015-05-26', 4, 'https://www.gutenberg.org/ebooks/49051', 'en', 1741), +(3736, 'Blackwood\'s Edinburgh Magazine - Volume 57, No. 352, February 1845', 'Various', '2009-09-14', 14, 'https://www.gutenberg.org/ebooks/29988', 'en', 711), +(3737, 'Murroksessa', 'Kaatra, Kössi', '2016-04-30', 14, 'https://www.gutenberg.org/ebooks/51892', 'fi', 1171), +(3738, 'Memoirs, Correspondence and Manuscripts of General Lafayette', 'Lafayette, Marie Joseph Paul Yves Roch Gilbert Du Motier, marquis de', '2005-06-01', 34, 'https://www.gutenberg.org/ebooks/8376', 'en', 1536), +(3739, 'Egyptian Birds\nFor the most part seen in the Nile Valley', 'Whymper, Charles', '2014-09-09', 26, 'https://www.gutenberg.org/ebooks/46825', 'en', 2405), +(3740, 'The Literary World Seventh Reader', NULL, '2006-11-05', 283, 'https://www.gutenberg.org/ebooks/19721', 'en', 1019), +(3741, 'Norfolk Annals, Vol. 1\r\nA Chronological Record of Remarkable Events in the Nineteeth Century', 'Mackie, Charles', '2010-11-25', 22, 'https://www.gutenberg.org/ebooks/34439', 'en', 2406), +(3742, 'Buchanan\'s Journal of Man, January 1888\nVolume 1, Number 12', NULL, '2009-01-15', 28, 'https://www.gutenberg.org/ebooks/27812', 'en', 210), +(3743, 'The Christian Foundation, Or, Scientific and Religious Journal, February, 1880', 'Various', '2009-02-13', 11, 'https://www.gutenberg.org/ebooks/28066', 'en', 1829), +(3744, 'Orthodoxy', 'Chesterton, G. K. (Gilbert Keith)', '2005-09-28', 243, 'https://www.gutenberg.org/ebooks/16769', 'en', 2407), +(3745, 'The Fourth Massachusetts Cavalry in the Closing Scenes of the War for the Maintenance of the Union, from Richmond to Appomatox', 'Pickett, La Salle Corbell', '2010-04-13', 11, 'https://www.gutenberg.org/ebooks/31977', 'en', 1489), +(3746, 'Capitals of the Northlands: Tales of Ten Cities', 'Hannah, Ian C.', '2014-06-18', 19, 'https://www.gutenberg.org/ebooks/46019', 'en', 2408), +(3747, 'Het Kindeken Jezus in Vlaanderen', 'Timmermans, Felix', '2018-11-19', 13, 'https://www.gutenberg.org/ebooks/58311', 'nl', 609), +(3748, 'Joshua — Volume 3', 'Ebers, Georg', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/5469', 'en', 803), +(3749, '\'Drag\' Harlan', 'Seltzer, Charles Alden', '2008-06-13', 47, 'https://www.gutenberg.org/ebooks/25779', 'en', 61), +(3750, 'The History of Margaret Catchpole, a Suffolk Girl', 'Cobbold, Richard', '2012-04-01', 11, 'https://www.gutenberg.org/ebooks/39326', 'en', 2409), +(3751, 'Huutolaiset', 'Hahnsson, Theodolinda', '2005-01-25', 30, 'https://www.gutenberg.org/ebooks/14802', 'fi', 61), +(3752, 'The Logic of Chance, 3rd edition\r\nAn Essay on the Foundations and Province of the Theory of Probability, With Especial Reference to Its Logical Bearings and Its Application to Moral and Social Science and to Statistics', 'Venn, John', '2018-06-19', 135, 'https://www.gutenberg.org/ebooks/57359', 'en', 2410), +(3753, 'An Adventure with a Genius: Recollections of Joseph Pulitzer', 'Ireland, Alleyne', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/5638', 'en', 2411), +(3754, 'The Third Alarm: A Story of the New York Fire Department', 'Ford, James L. (James Lauren)', '2018-09-19', 10, 'https://www.gutenberg.org/ebooks/57934', 'en', 2412), +(3755, 'Thoughts on the Christian Religion, by a Deist\r\nTo Which Are Added, a Few Ideas on Miraculous Conversion, and Religion in General, by a Theophilanthropist', 'Anonymous', '2012-10-08', 14, 'https://www.gutenberg.org/ebooks/40983', 'en', 1759), +(3756, 'Memoirs of the Reign of King George the Third, Volume 3 (of 4)', 'Walpole, Horace', '2018-10-20', 16, 'https://www.gutenberg.org/ebooks/58140', 'en', 2413), +(3757, 'Punch, or the London Charivari, Vol. 150, June 21st, 1916', 'Various', '2012-02-19', 6, 'https://www.gutenberg.org/ebooks/38899', 'en', 134), +(3758, 'The Story of Man In Yellowstone', 'Beal, Merrill D.', '2019-03-18', 16, 'https://www.gutenberg.org/ebooks/59092', 'en', 2414), +(3759, 'Copper Work: A Text Book for Teachers and Students in the Manual Arts', 'Rose, Augustus F. (Augustus Foster)', '2013-01-15', 15, 'https://www.gutenberg.org/ebooks/41851', 'en', 2415), +(3760, 'Tom Swift and His Giant Telescope', 'Appleton, Victor', '2007-04-19', 63, 'https://www.gutenberg.org/ebooks/21188', 'en', 2416), +(3761, 'The American Missionary — Volume 41, No. 9, September, 1887', 'Various', '2018-05-06', 1, 'https://www.gutenberg.org/ebooks/57108', 'en', 562), +(3762, 'Infantry Drill Regulations, United States Army, 1911\nCorrected to April 15, 1917 (Changes Nos. 1 to 19)', 'United States. War Department', '2007-03-20', 36, 'https://www.gutenberg.org/ebooks/20866', 'en', 2417), +(3763, 'The Virginian: A Horseman of the Plains', 'Wister, Owen', '1998-05-01', 241, 'https://www.gutenberg.org/ebooks/1298', 'en', 2418), +(3764, 'De wijzen van het Oosten\r\nBrahmanisme, Boeddhisme, Chineesche philosophie, Mazdeïsme', 'Ris Lambers, Cornelis Hille', '2012-03-17', 12, 'https://www.gutenberg.org/ebooks/39177', 'nl', 2419), +(3765, 'Marvels of Pond-life\r\nOr, A Year\'s Microscopic Recreations Among the Polyps, Infusoria, Rotifers, Water-bears and Polyzoa', 'Slack, Henry James', '2011-07-30', 62, 'https://www.gutenberg.org/ebooks/36903', 'en', 2420), +(3766, 'Q.6.a and Other places: Recollections of 1916, 1917 and 1918', 'Buckley, Francis', '2008-05-19', 8, 'https://www.gutenberg.org/ebooks/25528', 'en', 2421), +(3767, 'Behind the Bungalow', 'Aitken, Edward Hamilton', '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/7953', 'en', 2422), +(3768, 'Notes and Queries, Number 22, March 30, 1850', 'Various', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/12198', 'en', 105), +(3769, 'Van Dyck: A Collection of Fifteen Pictures and a Portrait of the Painter with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2006-10-18', 31, 'https://www.gutenberg.org/ebooks/19570', 'en', 2423), +(3770, 'Stellar Evolution and Its Relations to Geological Time', 'Croll, James', '2015-06-13', 11, 'https://www.gutenberg.org/ebooks/49200', 'en', 2424), +(3771, 'Songs of Two Nations', 'Swinburne, Algernon Charles', '2005-05-01', 5, 'https://www.gutenberg.org/ebooks/8127', 'en', 8), +(3772, 'Note Book of an English Opium-Eater', 'De Quincey, Thomas', '2004-11-01', 37, 'https://www.gutenberg.org/ebooks/6881', 'en', 2425), +(3773, 'The History of the Thirty Years\' War', 'Schiller, Friedrich', '1996-06-01', 164, 'https://www.gutenberg.org/ebooks/566', 'en', 2426), +(3774, 'Belgium', 'Omond, George W. T. (George William Thomson)', '2014-07-11', 12, 'https://www.gutenberg.org/ebooks/46248', 'en', 2427), +(3775, 'The Alleged Haunting of B—— House\r\nIncluding a Journal Kept During the Tenancy of Colonel Lemesurier Taylor', NULL, '2005-08-17', 33, 'https://www.gutenberg.org/ebooks/16538', 'en', 2428), +(3776, 'A Vanished Hand', 'Doudney, Sarah', '2009-03-01', 22, 'https://www.gutenberg.org/ebooks/28237', 'en', 401), +(3777, 'The Great Taboo', 'Allen, Grant', '2004-10-26', 31, 'https://www.gutenberg.org/ebooks/13876', 'en', 2429), +(3778, 'The Young Yagers: A Narrative of Hunting Adventures in Southern Africa', 'Reid, Mayne', '2010-12-15', 20, 'https://www.gutenberg.org/ebooks/34668', 'en', 1096), +(3779, 'Bloody Beaches: The Marines at Peleliu', 'Gayle, Gordon D.', '2015-05-23', 57, 'https://www.gutenberg.org/ebooks/49032', 'en', 2430), +(3780, 'Facing Death; Or, The Hero of the Vaughan Pit: A Tale of the Coal Mines', 'Henty, G. A. (George Alfred)', '2010-01-30', 26, 'https://www.gutenberg.org/ebooks/31128', 'en', 2431), +(3781, 'The Bible, Douay-Rheims, Book 15: 1 Esdras\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8315', 'en', 2432), +(3782, 'Mysteries of Police and Crime, Vol. 1 (of 3)', 'Griffiths, Arthur', '2014-09-12', 24, 'https://www.gutenberg.org/ebooks/46846', 'en', 2433), +(3783, 'The Heather-Moon', 'Williamson, C. N. (Charles Norris)', '2006-11-09', 39, 'https://www.gutenberg.org/ebooks/19742', 'en', 348), +(3784, 'The Story of Mankind', 'Van Loon, Hendrik Willem', '1996-12-01', 473, 'https://www.gutenberg.org/ebooks/754', 'en', 2434), +(3785, 'Women of the Country', 'Bone, Gertrude', '2004-08-25', 46, 'https://www.gutenberg.org/ebooks/13278', 'en', 61), +(3786, 'Queechy, Volume I', 'Warner, Susan', '2006-06-26', 17, 'https://www.gutenberg.org/ebooks/18690', 'en', 195), +(3787, 'Pikku Fadette: Kyläkertomus', 'Sand, George', '2015-01-16', 12, 'https://www.gutenberg.org/ebooks/47994', 'fi', 400), +(3788, 'The Serpent River', 'Wilcox, Don', '2016-01-14', 24, 'https://www.gutenberg.org/ebooks/50923', 'en', 424), +(3789, 'The Clue of the Twisted Candle', 'Wallace, Edgar', '2009-05-01', 23, 'https://www.gutenberg.org/ebooks/28839', 'en', 128), +(3790, 'The Eddy: A Novel of To-day', 'Cullen, Clarence Louis', '2013-08-19', 24, 'https://www.gutenberg.org/ebooks/43508', 'en', 1660), +(3791, 'The Story of General Pershing', 'Tomlinson, Everett T. (Everett Titsworth)', '2010-04-07', 18, 'https://www.gutenberg.org/ebooks/31914', 'en', 1433), +(3792, 'Scientific Papers by Sir George Howard Darwin. Volume V. Supplementary Volume', 'Darwin, George Howard, Sir', '2011-03-16', 16, 'https://www.gutenberg.org/ebooks/35588', 'en', 1683), +(3793, 'Moja Beatrice', 'Krasiński, Zygmunt, hrabia', '2009-01-22', 23, 'https://www.gutenberg.org/ebooks/27871', 'pl', 8), +(3794, 'Van de Ganges naar den Amazonenstroom\nDe Aarde en haar Volken, 1904', 'Weber, Ernst', '2009-02-04', 2, 'https://www.gutenberg.org/ebooks/28005', 'nl', 885), +(3795, 'The Baby\'s Own Aesop', 'Crane, Walter', '2007-01-05', 11, 'https://www.gutenberg.org/ebooks/20268', 'en', 1141), +(3796, 'Le Università italiane nel Medio Evo', 'Coppi, Ettore', '2018-11-28', 15, 'https://www.gutenberg.org/ebooks/58372', 'it', 2435), +(3797, 'Under the Red Robe', 'Weyman, Stanley John', '1999-09-01', 33, 'https://www.gutenberg.org/ebooks/1896', 'en', 2436), +(3798, 'The Fundamental Doctrines of the Christian faith', 'Torrey, R. A. (Reuben Archer)', '2016-07-25', 114, 'https://www.gutenberg.org/ebooks/52648', 'en', 2437), +(3799, 'Kivesjärveläiset; Simo Hurtta; Bellerophon', 'Leino, Eino', '2005-02-01', 7, 'https://www.gutenberg.org/ebooks/14861', 'fi', 8), +(3800, 'The History of Antiquity, Vol. 6 (of 6)', 'Duncker, Max', '2011-12-13', 31, 'https://www.gutenberg.org/ebooks/38297', 'en', 1368), +(3801, 'Mitchelhurst Place: A Novel. Vol. 1 (of 2)', 'Veley, Margaret', '2012-04-02', 12, 'https://www.gutenberg.org/ebooks/39345', 'en', 61), +(3802, 'Where There\'s a Will', 'Rinehart, Mary Roberts', '2006-03-15', 191, 'https://www.gutenberg.org/ebooks/330', 'en', 2438), +(3803, 'Vasco Nuñez de Balboa', 'Ober, Frederick A. (Frederick Albion)', '2010-12-31', 21, 'https://www.gutenberg.org/ebooks/34802', 'en', 2439), +(3804, 'Εκκλησιάζουσαι', 'Aristophanes', '2008-12-06', 35, 'https://www.gutenberg.org/ebooks/27429', 'el', 2440), +(3805, 'Big Game Shooting, volume 1 (of 2)', 'Phillipps-Wolley, Clive', '2015-03-25', 10, 'https://www.gutenberg.org/ebooks/48584', 'en', 2441), +(3806, 'The Stoker and the Stars', 'Budrys, Algis', '2007-10-12', 92, 'https://www.gutenberg.org/ebooks/22967', 'en', 26), +(3807, 'The Mentor: Uncle Sam, Vol. 7, Num. 11, Serial No. 183, July 15, 1919', 'Hart, Albert Bushnell', '2015-07-16', 7, 'https://www.gutenberg.org/ebooks/49456', 'en', 1720), +(3808, 'Jurgen: A Comedy of Justice', 'Cabell, James Branch', '2005-08-01', 121, 'https://www.gutenberg.org/ebooks/8771', 'en', 2442), +(3809, 'Complete Project Gutenberg William Dean Howells Literature Essays', 'Howells, William Dean', '2002-08-01', 26, 'https://www.gutenberg.org/ebooks/3399', 'en', 1172), +(3810, 'Van Orenburg naar Samarkand\nDe Aarde en haar Volken, 1873', 'Vereshchagin, Vasilïĭ Vasilʹevich', '2006-09-19', 22, 'https://www.gutenberg.org/ebooks/19326', 'nl', 1992), +(3811, 'The Botanical Lore of the California Indians\nwith Side Lights on Historical Incidents in California', 'Romero, John Bruno', '2017-06-30', 37, 'https://www.gutenberg.org/ebooks/55009', 'en', 2443), +(3812, 'The Good Housekeeping Marriage Book', NULL, '2007-10-01', 19, 'https://www.gutenberg.org/ebooks/23089', 'en', 1451), +(3813, 'Cincuenta y cuatro Canciones Españolas del siglo XVI: Cancionero de Uppsala', NULL, '2013-10-14', 19, 'https://www.gutenberg.org/ebooks/43950', 'es', 2444), +(3814, 'The Combined Maze', 'Sinclair, May', '2009-03-31', 30, 'https://www.gutenberg.org/ebooks/28461', 'en', 109), +(3815, 'La promessa sposa di Lammermoor, Tomo 2 (of 3)', 'Scott, Walter', '2013-06-07', 13, 'https://www.gutenberg.org/ebooks/42882', 'it', 48), +(3816, 'The Parisians — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 6, 'https://www.gutenberg.org/ebooks/7739', 'en', 1165), +(3817, 'Kaarle ja Sigismund II: Lehti kääntyy\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-10-28', 6, 'https://www.gutenberg.org/ebooks/55835', 'fi', 2445), +(3818, 'The United Empire Loyalists : A Chronicle of the Great Migration', 'Wallace, W. Stewart (William Stewart)', '2004-04-01', 43, 'https://www.gutenberg.org/ebooks/11977', 'en', 2151), +(3819, 'And What if the Pretender should Come?\r\nOr Some Considerations of the Advantages and Real Consequences of the Pretender\'s Possessing the Crown of Great Britain', 'Defoe, Daniel', '2011-07-17', 12, 'https://www.gutenberg.org/ebooks/36769', 'en', 2446), +(3820, 'The Day of Doom; Or, A Poetical Description of the Great and Last Judgment\r\nWith Other Poems', 'Wigglesworth, Michael', '2019-01-18', 6, 'https://www.gutenberg.org/ebooks/58716', 'en', 2447), +(3821, 'Lalli; Tuomas piispa; Maunu Tavast', 'Leino, Eino', '2004-12-24', 7, 'https://www.gutenberg.org/ebooks/14439', 'fi', 247), +(3822, 'Hours with the Ghosts or, Nineteenth Century Witchcraft\r\nIllustrated Investigations into the Phenomena of Spiritualism and Theosophy', 'Evans, Henry Ridgely', '2013-12-05', 49, 'https://www.gutenberg.org/ebooks/44349', 'en', 2448), +(3823, 'Old Granny Fox', 'Burgess, Thornton W. (Thornton Waldo)', '2004-01-01', 95, 'https://www.gutenberg.org/ebooks/4980', 'en', 625), +(3824, 'Popular Technology; or, Professions and Trades. Vol. 1 (of 2)', 'Hazen, Edward', '2012-05-18', 115, 'https://www.gutenberg.org/ebooks/39721', 'en', 2449), +(3825, 'Memoirs of General W. T. Sherman, Volume II., Part 3', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5852', 'en', 758), +(3826, 'Towards the Goal', 'Ward, Humphry, Mrs.', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10099', 'en', 449), +(3827, 'A Full Description of the Great Tornado in Chester County, Pa.', 'Darlington, Richard', '2008-07-04', 11, 'https://www.gutenberg.org/ebooks/25970', 'en', 2450), +(3828, 'An Historical Narrative of the Great and Terrible Fire of London, Sept. 2nd 1666', 'Harvey, Gideon', '2011-09-20', 15, 'https://www.gutenberg.org/ebooks/37489', 'en', 2451), +(3829, 'The Wisdom of Confucius\nwith Critical and Biographical Sketches', 'Confucius', '2010-09-27', 118, 'https://www.gutenberg.org/ebooks/33815', 'en', 1437), +(3830, 'Index of the Project Gutenberg Works of Henry Seton Merriman', 'Merriman, Henry Seton', '2018-12-22', 3, 'https://www.gutenberg.org/ebooks/58524', 'en', 198), +(3831, 'The English Rogue: Continued in the Life of Meriton Latroon, and Other Extravagants: The Fourth Part', 'Head, Richard', '2016-08-16', 9, 'https://www.gutenberg.org/ebooks/52822', 'en', 1490), +(3832, 'Les Tourelles: Histoire des châteaux de France, volume II', 'Gozlan, Léon', '2012-04-23', 16, 'https://www.gutenberg.org/ebooks/39513', 'fr', 1150), +(3833, 'Old Rome: A Handbook to the Ruins of the City and the Campagna', 'Burn, Robert', '2012-11-19', 19, 'https://www.gutenberg.org/ebooks/41409', 'en', 2452), +(3834, 'Round Anvil Rock: A Romance', 'Banks, Nancy Huston', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11379', 'en', 98), +(3835, 'The Road to the Open', 'Schnitzler, Arthur', '2014-06-06', 36, 'https://www.gutenberg.org/ebooks/45895', 'en', 2453), +(3836, 'Allied Cookery: British, French, Italian, Belgian, Russian', NULL, '2014-02-17', 46, 'https://www.gutenberg.org/ebooks/44947', 'en', 1369), +(3837, 'Ducks and Geese', 'Slocum, Rob R. (Rob Roy)', '2010-06-30', 22, 'https://www.gutenberg.org/ebooks/33029', 'en', 2454), +(3838, 'Candida: Ein Mysterium in drei Akten', 'Shaw, Bernard', '2005-12-01', 27, 'https://www.gutenberg.org/ebooks/9491', 'de', 2455), +(3839, 'From the Memoirs of a Minister of France', 'Weyman, Stanley John', '2000-02-01', 11, 'https://www.gutenberg.org/ebooks/2079', 'en', 2456), +(3840, 'The Tragedy of Pudd\'nhead Wilson', 'Twain, Mark', '2004-09-14', 401, 'https://www.gutenberg.org/ebooks/102', 'en', 2457), +(3841, 'Foe-Farrell', 'Quiller-Couch, Arthur', '2006-08-25', 12, 'https://www.gutenberg.org/ebooks/19114', 'en', 2458), +(3842, 'Gideon Bands for work within the race and for work without the race\na message to the colored people of the United States', 'Grimké, Francis J. (Francis James)', '2015-08-10', 12, 'https://www.gutenberg.org/ebooks/49664', 'en', 180), +(3843, 'History of the United States', 'Beard, Mary Ritter', '2005-10-28', 158, 'https://www.gutenberg.org/ebooks/16960', 'en', 207), +(3844, 'The Great North-Western Conspiracy in All Its Startling Details', 'Ayer, I. Winslow', '2005-07-01', 41, 'https://www.gutenberg.org/ebooks/8543', 'en', 2459), +(3845, 'Kulmuja 2: Kuvia elämän varrelta', 'Kataja, Väinö', '2015-12-23', 62, 'https://www.gutenberg.org/ebooks/50749', 'fi', 175), +(3846, 'Sir Nigel', 'Doyle, Arthur Conan', '2001-10-01', 88, 'https://www.gutenberg.org/ebooks/2845', 'en', 98), +(3847, 'The Best of the World\'s Classics, Restricted to Prose, Vol. IX (of X) - America - I', NULL, '2009-05-01', 26, 'https://www.gutenberg.org/ebooks/28653', 'en', 19), +(3848, 'Sunset Pass; or, Running the Gauntlet Through Apache Land', 'King, Charles', '2006-11-27', 29, 'https://www.gutenberg.org/ebooks/19928', 'en', 315), +(3849, 'Notes and Queries, Number 182, April 23, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-08-21', 10, 'https://www.gutenberg.org/ebooks/22369', 'en', 105), +(3850, 'Le calcul des résidus et ses applications à la théorie des fonctions', 'Lindelöf, Ernst Leonard', '2009-08-24', 11, 'https://www.gutenberg.org/ebooks/29781', 'fr', 2460), +(3851, 'An Attic Philosopher in Paris — Volume 2', 'Souvestre, Émile', '2003-04-01', 24, 'https://www.gutenberg.org/ebooks/3997', 'en', 560), +(3852, 'Le Collier de la Reine, Tome II', 'Dumas, Alexandre', '2006-04-18', 20, 'https://www.gutenberg.org/ebooks/18200', 'fr', 984), +(3853, 'The Mutineers\r\nA Tale of Old Days at Sea and of Adventures in the Far East as Benjamin Lathrop Set It Down Some Sixty Years Ago', 'Hawes, Charles Boardman', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9657', 'en', 324), +(3854, '漢書', 'Ban, Gu', '2007-12-13', 62, 'https://www.gutenberg.org/ebooks/23841', 'zh', 2461), +(3855, 'Samuel Boyd of Catchpole Square: A Mystery', 'Farjeon, B. L. (Benjamin Leopold)', '2013-07-12', 13, 'https://www.gutenberg.org/ebooks/43198', 'en', 1079), +(3856, 'Wasserjungfern: Geschichten von Sommerboten und Sonnenkündern', 'Löns, Hermann', '2015-03-24', 10, 'https://www.gutenberg.org/ebooks/48570', 'de', 2462), +(3857, 'Punch, or the London Charivari, Vol. 150, March 8, 1916', 'Various', '2007-10-14', 12, 'https://www.gutenberg.org/ebooks/22993', 'en', 134), +(3858, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 07', 'Dante Alighieri', '2004-08-07', 25, 'https://www.gutenberg.org/ebooks/8785', 'en', 2212), +(3859, 'Hermaphrodisie en Uranisme', 'Aletrino, Arnold', '2011-04-20', 32, 'https://www.gutenberg.org/ebooks/35924', 'nl', 2463), +(3860, 'Stories of Starland', 'Proctor, Mary', '2017-06-15', 18, 'https://www.gutenberg.org/ebooks/54913', 'en', 1488), +(3861, 'A Lamp to the Path\r\nOr, The Word of God in the Heart, the Home, the Workshop and the Market-Place', 'Tweedie, W. K. (William King)', '2014-12-05', 13, 'https://www.gutenberg.org/ebooks/47538', 'en', 1130), +(3862, 'Histoire de deux enfants d\'ouvrier', 'Conscience, Hendrik', '2005-12-07', 15, 'https://www.gutenberg.org/ebooks/17248', 'fr', 61), +(3863, 'Scally: The Story of a Perfect Gentleman', 'Hay, Ian', '2009-04-04', 10, 'https://www.gutenberg.org/ebooks/28495', 'en', 2464), +(3864, 'Memlinc', 'Weale, W. H. James (William Henry James)', '2013-06-04', 14, 'https://www.gutenberg.org/ebooks/42876', 'en', 2465), +(3865, 'The Preface to Aristotle\'s Art of Poetry', 'Dacier, André', '2009-07-30', 35, 'https://www.gutenberg.org/ebooks/29547', 'en', 2466), +(3866, 'The Postnatal Development of Two Broods of Great Horned Owls (Bubo virginianus)', 'Setzer, Henry W.', '2011-01-31', 13, 'https://www.gutenberg.org/ebooks/35118', 'en', 2467), +(3867, 'Poetic Sketches\r\nA Collection of Miscellaneous Poetry', 'Gent, Thomas', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/11983', 'en', 8), +(3868, 'Diary of Samuel Pepys — Volume 28: April/May 1664', 'Pepys, Samuel', '2004-11-30', 10, 'https://www.gutenberg.org/ebooks/4148', 'en', 201), +(3869, 'Comb Honey', 'Demuth, Geo. S. (George S.)', '2019-05-29', 8, 'https://www.gutenberg.org/ebooks/59630', 'en', 2468), +(3870, 'The Works of Charles and Mary Lamb — Volume 6\r\nLetters 1821-1842', 'Lamb, Charles', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/10851', 'en', 2469), +(3871, 'Turgenev in English: A Checklist of Works by and about Him', 'Stam, David H.', '2018-03-04', 12, 'https://www.gutenberg.org/ebooks/56678', 'en', 2470), +(3872, 'Australia Twice Traversed\r\nThe Romance of Exploration, Being a Narrative Compiled from the Journals of Five Exploring Expeditions into and Through Central South Australia and Western Australia, from 1872 to 1876', 'Giles, Ernest', '2004-08-26', 29, 'https://www.gutenberg.org/ebooks/4974', 'en', 2471), +(3873, 'A History of Oregon, 1792-1849\nDrawn From Personal Observation and Authentic Information', 'Gray, W. H. (William Henry)', '2012-01-18', 19, 'https://www.gutenberg.org/ebooks/38607', 'en', 99), +(3874, 'The Rubáiyát of a Persian Kitten', 'Herford, Oliver', '2008-01-12', 43, 'https://www.gutenberg.org/ebooks/24258', 'en', 2472), +(3875, 'The Daughters of a Genius', 'Vaizey, George de Horne, Mrs.', '2010-06-20', 18, 'https://www.gutenberg.org/ebooks/32933', 'en', 1625), +(3876, 'Betting & Gambling: A National Evil', NULL, '2019-05-01', 12, 'https://www.gutenberg.org/ebooks/59402', 'en', 2473), +(3877, 'The Glugs of Gosh', 'Dennis, C. J. (Clarence James)', '2007-05-22', 2, 'https://www.gutenberg.org/ebooks/21518', 'en', 2474), +(3878, 'The Big Drum: A Comedy in Four Acts', 'Pinero, Arthur Wing', '2008-07-06', 82, 'https://www.gutenberg.org/ebooks/25984', 'en', 1088), +(3879, 'Odysseus, the Hero of Ithaca\nAdapted from the Third Book of the Primary Schools of Athens, Greece', 'Homer', '2008-03-16', 22, 'https://www.gutenberg.org/ebooks/24856', 'en', 2475), +(3880, 'The Jesuit Relations and Allied Documents, Vol. 7: Quebec, Hurons, Cape Breton, 1634-1635', NULL, '2016-09-24', 9, 'https://www.gutenberg.org/ebooks/53138', 'en', 1643), +(3881, 'Ælfrics Grammatik und Glossar', 'Aelfric, Abbot of Eynsham', '2014-06-02', 100, 'https://www.gutenberg.org/ebooks/45861', 'ang', 2476), +(3882, 'The Red Light of Mars; or, A Day in the Life of the Devil\r\nA Philosophical Comedy', 'Bronson-Howard, George', '2018-07-28', 18, 'https://www.gutenberg.org/ebooks/57598', 'en', 2477), +(3883, 'Camille (La Dame aux Camilias)', 'Dumas, Alexandre', '1999-01-01', 124, 'https://www.gutenberg.org/ebooks/1608', 'en', 2478), +(3884, 'Slavery', 'Baker, James L. (James Loring)', '2017-01-07', 7, 'https://www.gutenberg.org/ebooks/53904', 'en', 2479), +(3885, 'Le morne au diable', 'Sue, Eugène', '2011-12-29', 13, 'https://www.gutenberg.org/ebooks/38435', 'fr', 2480), +(3886, 'Songs of Two', 'Hardy, Arthur Sherburne', '2004-08-08', 12, 'https://www.gutenberg.org/ebooks/9465', 'en', 8), +(3887, 'Aseet pois!', 'Suttner, Bertha von', '2006-02-24', 21, 'https://www.gutenberg.org/ebooks/17846', 'fi', 2481), +(3888, 'Kamerplanten: Handboek tot het kweeken van planten in de kamer', 'Hesdörffer, Max', '2009-12-12', 5, 'https://www.gutenberg.org/ebooks/30658', 'nl', 2482), +(3889, 'The Missionary: An Indian Tale; vol. I', 'Morgan, Lady (Sydney)', '2015-04-19', 14, 'https://www.gutenberg.org/ebooks/48742', 'en', 519), +(3890, 'The Canadian Commonwealth', 'Laut, Agnes C.', '2006-03-21', 14, 'https://www.gutenberg.org/ebooks/18032', 'en', 2483), +(3891, 'Graham\'s Magazine, Vol. XL, No. 1, January 1852', 'Various', '2019-08-18', 230, 'https://www.gutenberg.org/ebooks/60128', 'en', 380), +(3892, 'The Meaning of Good—A Dialogue', 'Dickinson, G. Lowes (Goldsworthy Lowes)', '2004-06-01', 32, 'https://www.gutenberg.org/ebooks/12508', 'en', 2484), +(3893, 'Toy-Making at Home: How to Make a Hundred Toys from Odds and Ends', 'Adams, Morley', '2013-03-08', 42, 'https://www.gutenberg.org/ebooks/42278', 'en', 132), +(3894, 'Cities of Belgium\nGrant Allen\'s Historical Guides', 'Allen, Grant', '2015-08-12', 9, 'https://www.gutenberg.org/ebooks/49690', 'en', 2485), +(3895, 'A Year\'s Journey through France and Part of Spain, Volume 2 (1777)', 'Thicknesse, Philip', '2005-11-04', 6, 'https://www.gutenberg.org/ebooks/16994', 'en', 1117), +(3896, 'Discours par Maximilien Robespierre — 5 Fevrier 1791-11 Janvier 1792', 'Robespierre, Maximilien', '2009-08-23', 11, 'https://www.gutenberg.org/ebooks/29775', 'fr', 1536), +(3897, 'Cosmopolis — Volume 1', 'Bourget, Paul', '2003-04-01', 20, 'https://www.gutenberg.org/ebooks/3963', 'en', 58), +(3898, 'The Girls of Central High; Or, Rivals for All Honors', 'Morrison, Gertrude W.', '2011-08-09', 15, 'https://www.gutenberg.org/ebooks/37019', 'en', 2486); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(3899, 'The Life of Abraham Lincoln, from His Birth to His Inauguration as President', 'Lamon, Ward Hill', '2012-10-08', 68, 'https://www.gutenberg.org/ebooks/40977', 'en', 1716), +(3900, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 04', 'Dryden, John', '2005-03-13', 50, 'https://www.gutenberg.org/ebooks/15349', 'en', 1201), +(3901, 'My American Diary', 'Sheridan, Clare', '2019-03-15', 14, 'https://www.gutenberg.org/ebooks/59066', 'en', 2487), +(3902, 'A History of the Peninsular War, Vol. 4, Dec. 1810-Dec. 1811\r\nMassena\'s Retreat, Fuentes de Oñoro, Albuera, Tarragona', 'Oman, Charles', '2018-03-22', 38, 'https://www.gutenberg.org/ebooks/56812', 'en', 2488), +(3903, 'Punch, or the London Charivari, Vol. 109, 16th November, 1895', 'Various', '2014-04-19', 14, 'https://www.gutenberg.org/ebooks/45439', 'en', 134), +(3904, 'Thirty Years in Australia', 'Cambridge, Ada', '2011-10-23', 15, 'https://www.gutenberg.org/ebooks/37825', 'en', 2489), +(3905, 'Manasseh: A Romance of Transylvania', 'Jókai, Mór', '2007-03-24', 19, 'https://www.gutenberg.org/ebooks/20892', 'en', 2490), +(3906, 'Character Sketches of Romance, Fiction, and the Drama, Vol. 4 (of 4)\r\nA Revised American Edition of the Reader\'s Handbook', 'Brewer, Ebenezer Cobham', '2019-02-28', 3, 'https://www.gutenberg.org/ebooks/58988', 'en', 163), +(3907, 'The Tomato', 'Work, Paul', '2011-11-18', 33, 'https://www.gutenberg.org/ebooks/38051', 'en', 2491), +(3908, 'L\'Illustration, No. 3674, 26 Juillet 1913', 'Various', '2012-03-17', 17, 'https://www.gutenberg.org/ebooks/39183', 'fr', 150), +(3909, 'Traité touchant le commun usage de l\'escriture françoise', 'Meigret, Louis, active 16th century', '2012-10-18', 8, 'https://www.gutenberg.org/ebooks/41099', 'fr', 2492), +(3910, 'Le parfum des îles Borromées', 'Boylesve, René', '2007-07-01', 16, 'https://www.gutenberg.org/ebooks/21940', 'fr', 61), +(3911, 'Vivo de Zamenhof', 'Privat, Edmond', '2008-08-19', 23, 'https://www.gutenberg.org/ebooks/26359', 'eo', 2493), +(3912, 'A New System; or, an Analysis of Antient Mythology. Volume II. (of VI.)', 'Bryant, Jacob', '2006-10-18', 25, 'https://www.gutenberg.org/ebooks/19584', 'en', 75), +(3913, 'Personal Recollections of Joan of Arc — Volume 01', 'Twain, Mark', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/9001', 'en', 2494), +(3914, 'The Chautauquan, Vol. 03, February 1883\r\nA Monthly Magazine Devoted to the Promotion of True Culture.\r\nOrgan of the Chautauqua Literary and Scientific Circle.', 'Chautauqua Institution', '2015-02-21', 10, 'https://www.gutenberg.org/ebooks/48326', 'en', 1453), +(3915, 'The Chinese Nightingale, and Other Poems', 'Lindsay, Vachel', '1996-07-01', 98, 'https://www.gutenberg.org/ebooks/592', 'en', 2495), +(3916, 'Cheap Jack Zita', 'Baring-Gould, S. (Sabine)', '2017-05-24', 11, 'https://www.gutenberg.org/ebooks/54779', 'en', 2496), +(3917, 'Enrico IV', 'Pirandello, Luigi', '2006-05-27', 73, 'https://www.gutenberg.org/ebooks/18456', 'it', 402), +(3918, 'The 32nd Mersenne Prime\nPredicted by Mersenne', 'Slowinski, David', '1993-06-01', 33, 'https://www.gutenberg.org/ebooks/69', 'en', 2497), +(3919, 'France and England in North America, Part V: Count Frontenac, New France, Louis XIV', 'Parkman, Francis', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/6875', 'en', 2498), +(3920, 'L\'Immortel\r\nMoeurs parisiennes', 'Daudet, Alphonse', '2004-07-19', 20, 'https://www.gutenberg.org/ebooks/12950', 'fr', 2499), +(3921, 'Irish Fairy Tales', 'Leamy, Edmund', '2009-07-04', 27, 'https://www.gutenberg.org/ebooks/29311', 'en', 2500), +(3922, 'John Thorndyke\'s Cases\r\nrelated by Christopher Jervis and edited by R. Austin Freeman', 'Freeman, R. Austin (Richard Austin)', '2004-10-27', 147, 'https://www.gutenberg.org/ebooks/13882', 'en', 1079), +(3923, 'Works of John Bunyan — Complete', 'Bunyan, John', '2004-07-01', 99, 'https://www.gutenberg.org/ebooks/6049', 'en', 2501), +(3924, 'Love Eternal', 'Haggard, H. Rider (Henry Rider)', '2003-02-01', 60, 'https://www.gutenberg.org/ebooks/3709', 'en', 1661), +(3925, 'Success Story', 'Goodale, Earl', '2016-04-19', 35, 'https://www.gutenberg.org/ebooks/51805', 'en', 424), +(3926, 'Our Intellectual Strength and Weakness\nA Short Historical and Critical Review of Literature, Art and Education in Canada', 'Bourinot, John George', '2017-09-07', 10, 'https://www.gutenberg.org/ebooks/55499', 'en', 2502), +(3927, 'The Hills of Hingham', 'Sharp, Dallas Lore', '2006-06-23', 18, 'https://www.gutenberg.org/ebooks/18664', 'en', 2503), +(3928, 'Shakespeare\'s Tragedy of Romeo and Juliet', 'Shakespeare, William', '2015-01-13', 112, 'https://www.gutenberg.org/ebooks/47960', 'en', 2504), +(3929, 'Sketches from Memory (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 10, 'https://www.gutenberg.org/ebooks/9233', 'en', 179), +(3930, 'Apologia della vita politica di F.-D. Guerrazzi', 'Guerrazzi, Francesco Domenico', '2015-01-30', 20, 'https://www.gutenberg.org/ebooks/48114', 'it', 2505), +(3931, 'The Fountain of Maribo, and Other Ballads', 'Borrow, George', '2009-06-15', 14, 'https://www.gutenberg.org/ebooks/29123', 'en', 8), +(3932, 'The Laws and Principles of Whist Stated and Explained,\r\nand its practice illustrated on an original system by means of hands played completely through. 18th edition', 'Cavendish', '2016-01-25', 16, 'https://www.gutenberg.org/ebooks/51039', 'en', 1420), +(3933, 'Star Mother', 'Young, Robert F.', '2008-10-18', 34, 'https://www.gutenberg.org/ebooks/26957', 'en', 179), +(3934, 'Ainslee\'s, Vol. 15, No. 6, July 1905', 'Various', '2009-01-25', 20, 'https://www.gutenberg.org/ebooks/27885', 'en', 2506), +(3935, 'Nor Iron Bars a Cage....', 'Garrett, Randall', '2010-01-02', 52, 'https://www.gutenberg.org/ebooks/30832', 'en', 26), +(3936, 'The Green God\'s Pavilion: A novel of the Philippines', 'Martin, Mabel Wood', '2015-05-10', 10, 'https://www.gutenberg.org/ebooks/48928', 'en', 2507), +(3937, 'The Return Of The Soul\n1896', 'Hichens, Robert', '2007-11-08', 22, 'https://www.gutenberg.org/ebooks/23419', 'en', 461), +(3938, 'Tartarin of Tarascon', 'Daudet, Alphonse', '1999-08-01', 57, 'https://www.gutenberg.org/ebooks/1862', 'en', 2508), +(3939, 'The Journal of Prison Discipline and Philanthropy (New Series, No. 47 and 48, January 1909)', 'Pennsylvania Prison Society', '2018-12-01', 0, 'https://www.gutenberg.org/ebooks/58386', 'en', 2509), +(3940, 'The Inimitable Jeeves', 'Wodehouse, P. G. (Pelham Grenville)', '2019-04-11', 1202, 'https://www.gutenberg.org/ebooks/59254', 'en', 2510), +(3941, 'Trench Ballads, and Other Verses', 'Garrett, Erwin Clarkson', '2012-07-31', 11, 'https://www.gutenberg.org/ebooks/40379', 'en', 2100), +(3942, 'Wild Life in the Land of the Giants: A Tale of Two Brothers', 'Stables, Gordon', '2011-12-10', 24, 'https://www.gutenberg.org/ebooks/38263', 'en', 323), +(3943, 'All He Knew: A Story', 'Habberton, John', '2005-02-04', 18, 'https://www.gutenberg.org/ebooks/14895', 'en', 1397), +(3944, 'The Crisis of the Naval War', 'Jellicoe, John Rushworth', '2003-12-01', 32, 'https://www.gutenberg.org/ebooks/10409', 'en', 2511), +(3945, 'The Pleasures of England\nLectures given in Oxford', 'Ruskin, John', '2005-05-30', 12, 'https://www.gutenberg.org/ebooks/15947', 'en', 2512), +(3946, 'Red Nails', 'Howard, Robert E. (Robert Ervin)', '2010-06-09', 184, 'https://www.gutenberg.org/ebooks/32759', 'en', 2513), +(3947, 'Die acht Gesichter am Biwasee: Japanische Liebesgeschichten', 'Dauthendey, Max', '2013-07-30', 18, 'https://www.gutenberg.org/ebooks/43361', 'de', 2514), +(3948, 'Speaking of the Turks', 'Mufti-zada, K. Ziya, bey', '2015-04-25', 11, 'https://www.gutenberg.org/ebooks/48789', 'en', 2515), +(3949, 'Renaissance Fancies and Studies\nBeing a Sequel to Euphorion', 'Lee, Vernon', '2009-12-17', 24, 'https://www.gutenberg.org/ebooks/30693', 'en', 2516), +(3950, 'Clotel; Or, The President\'s Daughter', 'Brown, William Wells', '2000-01-01', 96, 'https://www.gutenberg.org/ebooks/2046', 'en', 2517), +(3951, 'How to Marry Well', 'Duchess', '2008-12-25', 37, 'https://www.gutenberg.org/ebooks/27624', 'en', 1451), +(3952, 'Notes and Queries, Number 42, August 17, 1850', 'Various', '2004-09-09', 20, 'https://www.gutenberg.org/ebooks/13411', 'en', 105), +(3953, 'Nukki: Novelli', 'Prévost, Marcel', '2017-07-26', 17, 'https://www.gutenberg.org/ebooks/55204', 'fi', 1850), +(3954, 'O Oraculo do Passado, do presente e do Futuro (6/7)\r\nParte Sexta: O oraculo da Magica', 'Serrano, Bento', '2010-03-23', 7, 'https://www.gutenberg.org/ebooks/31741', 'pt', 185), +(3955, 'Mark Twain\'s Letters — Volume 2 (1867-1875)', 'Twain, Mark', '2004-09-18', 36, 'https://www.gutenberg.org/ebooks/3194', 'en', 2518), +(3956, 'Impressions of America During the Years 1833, 1834 and 1835. Volume 2 (of 2)', 'Power, Tyrone', '2007-11-01', 21, 'https://www.gutenberg.org/ebooks/23284', 'en', 1110), +(3957, 'A Natural History for Young People: Our Animal Friends in Their Native Homes\nincluding mammals, birds and fishes', 'Humphreys, Phebe Westcott', '2015-12-27', 10, 'https://www.gutenberg.org/ebooks/50776', 'en', 37), +(3958, 'The Jew of Malta', 'Marlowe, Christopher', '1997-05-01', 259, 'https://www.gutenberg.org/ebooks/901', 'en', 1298), +(3959, 'Cranial Osteology of the Hylid Frog, Smilisca baudini', 'Trueb, Linda', '2010-11-07', 12, 'https://www.gutenberg.org/ebooks/34233', 'en', 2519), +(3960, 'A Book of Old Ballads — Volume 4', NULL, '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7534', 'en', 921), +(3961, 'Bucolica', 'Virgil', '2006-11-26', 29, 'https://www.gutenberg.org/ebooks/19917', 'fi', 2520), +(3962, 'Santa Cecilia', 'Barrili, Anton Giulio', '2014-08-18', 22, 'https://www.gutenberg.org/ebooks/46613', 'it', 860), +(3963, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 3: Media\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 45, 'https://www.gutenberg.org/ebooks/16163', 'en', 931), +(3964, 'L\'hérésiarque et Cie', 'Apollinaire, Guillaume', '2007-08-19', 39, 'https://www.gutenberg.org/ebooks/22356', 'fr', 259), +(3965, 'Uudenmetsän lapset', 'Marryat, Frederick', '2016-05-07', 11, 'https://www.gutenberg.org/ebooks/52021', 'fi', 2521), +(3966, 'Punch, or the London Charivari, Volume 148, January 20th 1915', 'Various', '2014-03-09', 3, 'https://www.gutenberg.org/ebooks/45096', 'en', 134), +(3967, 'The International Monthly, Volume 4, No. 3, October, 1851', 'Various', '2011-06-30', 16, 'https://www.gutenberg.org/ebooks/36564', 'en', 2522), +(3968, 'The Girl Scout Pioneers; Or, Winning the First B. C.', 'Garis, Lilian', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/5263', 'en', 2345), +(3969, 'Protection and Communism', 'Bastiat, Frédéric', '2013-11-10', 11, 'https://www.gutenberg.org/ebooks/44144', 'en', 1312), +(3970, 'Sketches and Studies in Italy and Greece, Second Series', 'Symonds, John Addington', '2005-01-07', 28, 'https://www.gutenberg.org/ebooks/14634', 'en', 1896), +(3971, 'Viage al Rio de La Plata y Paraguay', 'Schmidel, Ulrich', '2007-01-20', 23, 'https://www.gutenberg.org/ebooks/20401', 'es', 2523), +(3972, 'The Sportswoman\'s Library, Vol. 1 of 2', NULL, '2012-11-21', 14, 'https://www.gutenberg.org/ebooks/41436', 'en', 2524), +(3973, '北夢瑣言', 'Sun, Guangxian', '2008-04-25', 14, 'https://www.gutenberg.org/ebooks/25173', 'zh', 2525), +(3974, '\"Peanut\": The Story of a Boy', 'Paine, Albert Bigelow', '2018-01-31', 4, 'https://www.gutenberg.org/ebooks/56481', 'en', 2526), +(3975, 'The Saint\'s Tragedy', 'Kingsley, Charles', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11346', 'en', 1298), +(3976, 'Verse and Prose for Beginners in Reading\nSelected from English and American Literature', NULL, '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10294', 'en', 1019), +(3977, 'Hagarin poika', 'Caine, Hall, Sir', '2018-07-20', 2, 'https://www.gutenberg.org/ebooks/57553', 'fi', 401), +(3978, 'The Complete Poems of Sir John Davies. Volume 2 of 2.', 'Davies, John, Sir', '2014-02-22', 30, 'https://www.gutenberg.org/ebooks/44978', 'en', 466), +(3979, 'Astounding Stories, August, 1931', 'Various', '2010-06-28', 141, 'https://www.gutenberg.org/ebooks/33016', 'en', 2527), +(3980, 'Diary of Samuel Pepys — Volume 60: December 1667', 'Pepys, Samuel', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/4183', 'en', 2197), +(3981, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 10\r\nAsia, Part III', 'Hakluyt, Richard', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/11948', 'en', 2528), +(3982, 'The Romantic Story of the Mayflower Pilgrims, and Its Place in the Life of To-day', 'Addison, A. C. (Albert Christopher)', '2011-07-17', 17, 'https://www.gutenberg.org/ebooks/36756', 'en', 953), +(3983, 'In the Levant\r\nTwenty Fifth Impression', 'Warner, Charles Dudley', '2016-06-01', 11, 'https://www.gutenberg.org/ebooks/52213', 'en', 2204), +(3984, 'The Southern Literary Messenger, Vol. I., No. 12, August, 1835', 'Various', '2019-01-19', 2, 'https://www.gutenberg.org/ebooks/58729', 'en', 522), +(3985, 'The Intriguers', 'Bindloss, Harold', '2004-12-21', 13, 'https://www.gutenberg.org/ebooks/14406', 'en', 1596), +(3986, 'Winsome Winnie and other New Nonsense Novels', 'Leacock, Stephen', '2007-02-20', 55, 'https://www.gutenberg.org/ebooks/20633', 'en', 2529), +(3987, 'The Morals of Marcus Ordeyne : a Novel', 'Locke, William John', '2004-02-01', 51, 'https://www.gutenberg.org/ebooks/5051', 'en', 2530), +(3988, 'Forest Life and Forest Trees: comprising winter camp-life among the loggers, and wild-wood adventure.\nwith Descriptions of lumbering operations on the various\nrivers of Maine and New Brunswick', 'Springer, John S.', '2011-10-10', 28, 'https://www.gutenberg.org/ebooks/37684', 'en', 2531), +(3989, 'The Knights Templars', 'Addison, C. G. (Charles Greenstreet)', '2013-12-06', 69, 'https://www.gutenberg.org/ebooks/44376', 'en', 2532), +(3990, 'The 28th: A Record of War Service in the Australian Imperial Force, 1915-19, Vol. I\nEgypt, Gallipoli, Lemnos Island, Sinai Peninsula', 'Collett, Herbert Brayley', '2008-05-05', 47, 'https://www.gutenberg.org/ebooks/25341', 'en', 2533), +(3991, 'Four Great Americans: Washington, Franklin, Webster, Lincoln\nA Book for Young Americans', 'Baldwin, James', '2004-02-01', 89, 'https://www.gutenberg.org/ebooks/11174', 'en', 854), +(3992, 'Miss Santa Claus of the Pullman', 'Johnston, Annie F. (Annie Fellows)', '2012-12-11', 25, 'https://www.gutenberg.org/ebooks/41604', 'en', 2534), +(3993, 'Principles of Geology\r\nor, The Modern Changes of the Earth and its Inhabitants Considered as Illustrative of Geology', 'Lyell, Charles, Sir', '2010-07-22', 127, 'https://www.gutenberg.org/ebooks/33224', 'en', 2535), +(3994, 'A Brief History of the King\'s Royal Rifle Corps', NULL, '2018-08-24', 6, 'https://www.gutenberg.org/ebooks/57761', 'en', 2536), +(3995, 'Christian Devotedness', 'Groves, Anthony Norris', '2008-01-15', 39, 'https://www.gutenberg.org/ebooks/24293', 'en', 1130), +(3996, 'Barnavännen, 1905-01\nIllustrerad Veckotidning för de Små', 'Various', '2008-12-05', 19, 'https://www.gutenberg.org/ebooks/27416', 'sv', 2537), +(3997, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 6', NULL, '2004-10-05', 35, 'https://www.gutenberg.org/ebooks/13623', 'en', 19), +(3998, 'Donna Teresa', 'Peard, Frances Mary', '2013-07-08', 9, 'https://www.gutenberg.org/ebooks/43153', 'en', 847), +(3999, 'How to Live on 24 Hours a Day', 'Bennett, Arnold', '2000-08-01', 561, 'https://www.gutenberg.org/ebooks/2274', 'en', 740), +(4000, 'Um novo mundo', 'Cabral, Guilherme Read', '2010-03-09', 8, 'https://www.gutenberg.org/ebooks/31573', 'pt', 26), +(4001, 'The Diary of John Evelyn (Volume 2 of 2)', 'Evelyn, John', '2013-02-12', 53, 'https://www.gutenberg.org/ebooks/42081', 'en', 2538), +(4002, 'One-Shot', 'Blish, James', '2007-10-11', 111, 'https://www.gutenberg.org/ebooks/22958', 'en', 26), +(4003, 'The Wide World Magazine, Vol. 22, No. 128, November, 1908', 'Various', '2015-07-17', 18, 'https://www.gutenberg.org/ebooks/49469', 'en', 2539), +(4004, 'A Description of the Bar-and-Frame-Hive\nWith an Abstract of Wildman\'s Complete Guide for the Management of Bees Throughout the Year', 'Munn, William Augustus', '2006-09-18', 20, 'https://www.gutenberg.org/ebooks/19319', 'en', 87), +(4005, 'Historical Record of the Sixteenth, or, the Bedfordshire Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1688, and of Its Subsequent Services to 1848', 'Cannon, Richard', '2017-07-03', 2, 'https://www.gutenberg.org/ebooks/55036', 'en', 2540), +(4006, 'Challenge', 'Untermeyer, Louis', '2010-09-26', 7, 'https://www.gutenberg.org/ebooks/34001', 'en', 178), +(4007, 'The Life of General Garibaldi\r\nTranslated from his private papers; with the history of his splendid exploits in Rome, Lombardy, Sicily and Naples, to the present time.', 'Garibaldi, Giuseppe', '2015-11-24', 30, 'https://www.gutenberg.org/ebooks/50544', 'en', 488), +(4008, 'The Absurd ABC', 'Crane, Walter', '2005-12-11', 86, 'https://www.gutenberg.org/ebooks/17283', 'en', 2541), +(4009, 'Critical and Historical Essays\r\nLectures delivered at Columbia University', 'MacDowell, Edward', '2005-07-24', 52, 'https://www.gutenberg.org/ebooks/16351', 'en', 250), +(4010, 'Maximilian I, Holy Roman Emperor\r\n(Stanhope Historical Essay 1901)', 'Seton-Watson, R. W. (Robert William)', '2016-03-19', 6, 'https://www.gutenberg.org/ebooks/51496', 'en', 2542), +(4011, 'A Modern Tomboy: A Story for Girls', 'Meade, L. T.', '2007-07-28', 41, 'https://www.gutenberg.org/ebooks/22164', 'en', 1655), +(4012, '\"My Novel\" — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7706', 'en', 1280), +(4013, 'Coyotes in Their Economic Relations', 'Lantz, David E. (David Ernest)', '2014-07-26', 9, 'https://www.gutenberg.org/ebooks/46421', 'en', 2543), +(4014, 'Miscellanies', 'Wilde, Oscar', '2004-11-16', 48, 'https://www.gutenberg.org/ebooks/14062', 'en', 402), +(4015, 'A Political Romance', 'Sterne, Laurence', '2007-01-02', 27, 'https://www.gutenberg.org/ebooks/20257', 'en', 61), +(4016, 'The Stillwater Tragedy', 'Aldrich, Thomas Bailey', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/5435', 'en', 167), +(4017, 'Harper\'s Young People, January 25, 1881\nAn Illustrated Monthly', 'Various', '2014-01-19', 4, 'https://www.gutenberg.org/ebooks/44712', 'en', 479), +(4018, 'An Address Delivered at the Interment of Mrs. Harriet Storrs, Consort of Rev. Richard S. Storrs, Braintree, Mass., July 11, 1834.', 'Codman, John', '2011-06-05', 1, 'https://www.gutenberg.org/ebooks/36332', 'en', 2544), +(4019, 'On the Banks of the Amazon', 'Kingston, William Henry Giles', '2007-05-08', 50, 'https://www.gutenberg.org/ebooks/21385', 'en', 2545), +(4020, 'Kauhun laakso 1: Murhenäytelmä Birlstonen kartanossa', 'Doyle, Arthur Conan', '2016-07-30', 3, 'https://www.gutenberg.org/ebooks/52677', 'fi', 834), +(4021, 'De Wedergeboorte van Nederland', 'Tellegen, B. D. H. (Bernard Dominicus Hubertus)', '2010-09-05', 26, 'https://www.gutenberg.org/ebooks/33640', 'nl', 2546), +(4022, 'The Light of the Western Stars', 'Grey, Zane', '1997-11-01', 132, 'https://www.gutenberg.org/ebooks/1095', 'en', 2547), +(4023, 'The Boy Inventors and the Vanishing Gun', 'Bonner, Richard', '2018-06-11', 8, 'https://www.gutenberg.org/ebooks/57305', 'en', 2548), +(4024, 'That Lass O\' Lowrie\'s\n1877', 'Burnett, Frances Hodgson', '2008-06-08', 24, 'https://www.gutenberg.org/ebooks/25725', 'en', 2549), +(4025, 'Fascinating San Francisco', 'Wood, Andrew Y.', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11510', 'en', 2550), +(4026, 'Dan Carter-- Cub Scout', 'Wirt, Mildred A. (Mildred Augustine)', '2012-11-02', 11, 'https://www.gutenberg.org/ebooks/41260', 'en', 2551), +(4027, 'Um contemporaneo do Infante D. Henrique', 'Pimentel, Alberto', '2010-06-13', 6, 'https://www.gutenberg.org/ebooks/32792', 'pt', 2552), +(4028, 'Le chanteur parisien\nRecueil des chansons de L.A. Pitou', 'Pitou, Louis Ange', '2010-01-29', 9, 'https://www.gutenberg.org/ebooks/31117', 'fr', 2553), +(4029, 'The Essentials of American Constitutional Law', 'Thorpe, Francis Newton', '2017-08-28', 22, 'https://www.gutenberg.org/ebooks/55452', 'en', 187), +(4030, 'Punch, or the London Charivari, Volume 99, October 18, 1890', 'Various', '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12395', 'en', 134), +(4031, 'The Miner\'s Friend; Or, An Engine to Raise Water by Fire', 'Savery, Thomas', '2014-09-17', 11, 'https://www.gutenberg.org/ebooks/46879', 'en', 2554), +(4032, 'The Flying Doctor\n(Le Médecin Volant)', 'Molière', '2008-10-28', 43, 'https://www.gutenberg.org/ebooks/27072', 'en', 901), +(4033, 'Mille et un jours en prison à Berlin', 'Beland, Henri Severin', '2004-08-22', 23, 'https://www.gutenberg.org/ebooks/13247', 'fr', 1390), +(4034, 'The Forerunner, His Parables and Poems', 'Gibran, Kahlil', '2017-04-20', 102, 'https://www.gutenberg.org/ebooks/54580', 'en', 1551), +(4035, 'The Story of the Middle Ages', 'Harding, Samuel Bannister', '2009-05-01', 54, 'https://www.gutenberg.org/ebooks/28806', 'en', 2555), +(4036, 'Hesperothen; Notes from the West, Vol. 1 (of 2)\r\nA Record of a Ramble in the United States and Canada in the Spring and Summer of 1881', 'Russell, William Howard, Sir', '2013-08-22', 11, 'https://www.gutenberg.org/ebooks/43537', 'en', 1110), +(4037, 'Notre-Dame de Paris', 'Hugo, Victor', '2001-04-01', 1095, 'https://www.gutenberg.org/ebooks/2610', 'en', 2176), +(4038, 'Lays of Ancient Virginia, and Other Poems', 'Bartley, James Avis', '2005-09-23', 20, 'https://www.gutenberg.org/ebooks/16735', 'en', 8), +(4039, 'Two Pilgrims\' Progress; from fair Florence, to the eternal city of Rome', 'Pennell, Joseph', '2015-08-31', 12, 'https://www.gutenberg.org/ebooks/49831', 'en', 2556), +(4040, 'The Works of William Hogarth: In a Series of Engravings\nWith Descriptions, and a Comment on Their Moral Tendency', 'Trusler, John', '2007-09-04', 42, 'https://www.gutenberg.org/ebooks/22500', 'en', 2557), +(4041, 'Life at High Tide', NULL, '2005-01-01', 22, 'https://www.gutenberg.org/ebooks/7362', 'en', 112), +(4042, 'The Boy Allies on the North Sea Patrol\r\nOr, Striking the First Blow at the German Fleet', 'Hayes, Clair W. (Clair Wallace)', '2014-06-20', 9, 'https://www.gutenberg.org/ebooks/46045', 'en', 146), +(4043, 'Sevastopol', 'Tolstoy, Leo, graf', '2014-10-25', 143, 'https://www.gutenberg.org/ebooks/47197', 'en', 2558), +(4044, 'A Little Book of Christmas', 'Bangs, John Kendrick', '2010-11-28', 26, 'https://www.gutenberg.org/ebooks/34465', 'en', 585), +(4045, 'Die Sebalduskirche in Nürnberg', 'Hoffmann, Friedrich Wilhelm', '2015-10-03', 13, 'https://www.gutenberg.org/ebooks/50120', 'de', 2559), +(4046, 'Cassell\'s Natural History, Vol. 1 (of 6)', NULL, '2017-10-01', 40, 'https://www.gutenberg.org/ebooks/55660', 'en', 2560), +(4047, 'The Hero of Garside School', 'Panting, J. Harwood, (James Harwood)', '2008-08-22', 42, 'https://www.gutenberg.org/ebooks/26392', 'en', 2154), +(4048, 'An Annotated Checklist of Nebraskan Bats', 'Jones, J. Knox', '2010-02-19', 12, 'https://www.gutenberg.org/ebooks/31325', 'en', 2561), +(4049, 'Redburn. His First Voyage\r\nBeing the Sailor Boy Confessions and Reminiscences of the Son-Of-A-Gentleman in the Merchant Navy', 'Melville, Herman', '2005-05-01', 157, 'https://www.gutenberg.org/ebooks/8118', 'en', 1351), +(4050, 'Excursions in the mountains of Ronda and Granada, with characteristic sketches of the inhabitants of southern Spain, vol. 2/2', 'Scott, C. Rochfort‏ (Charles Rochfort)', '2013-09-12', 14, 'https://www.gutenberg.org/ebooks/43705', 'en', 1514), +(4051, 'Introduction to the Compleat Angler', 'Lang, Andrew', '2000-12-01', 24, 'https://www.gutenberg.org/ebooks/2422', 'en', 2562), +(4052, 'Pyrrhus\nMakers of History', 'Abbott, Jacob', '2008-11-12', 45, 'https://www.gutenberg.org/ebooks/27240', 'en', 2563), +(4053, 'Greenmantle', 'Buchan, John', '1996-06-01', 352, 'https://www.gutenberg.org/ebooks/559', 'en', 2564), +(4054, 'A Hero and a Great Man', 'Kruckvich, Francis', '2004-08-01', 9, 'https://www.gutenberg.org/ebooks/13075', 'en', 2164), +(4055, 'Science & Education: Essays', 'Huxley, Thomas Henry', '2004-12-01', 105, 'https://www.gutenberg.org/ebooks/7150', 'en', 2565), +(4056, 'The Hills of Refuge: A Novel', 'Harben, Will N. (Will Nathaniel)', '2011-04-07', 36, 'https://www.gutenberg.org/ebooks/35785', 'en', 61), +(4057, 'Musta kääpiö', 'Scott, Walter', '2014-07-14', 8, 'https://www.gutenberg.org/ebooks/46277', 'fi', 2389), +(4058, 'Lazy Thoughts of a Lazy Girl\nSister of that \"Idle Fellow.\"', 'Wren, Jenny', '2005-08-10', 27, 'https://www.gutenberg.org/ebooks/16507', 'en', 472), +(4059, 'Home Again', 'MacDonald, George', '2005-09-01', 32, 'https://www.gutenberg.org/ebooks/8924', 'en', 1079), +(4060, 'Last Poems', 'Thomas, Edward', '2007-09-23', 28, 'https://www.gutenberg.org/ebooks/22732', 'en', 8), +(4061, 'The Gospel Day; Or, the Light of Christianity', 'Orr, Charles Ebert', '2009-02-27', 13, 'https://www.gutenberg.org/ebooks/28208', 'en', 2566), +(4062, 'John Stevens\' Courtship: A Story of the Echo Canyon War', 'Gates, Susa Young', '2015-10-26', 13, 'https://www.gutenberg.org/ebooks/50312', 'en', 2567), +(4063, 'Our Pilots in the Air', 'Brown, William Perry', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6082', 'en', 579), +(4064, 'Panu: Näytelmä', 'Aho, Juhani', '2004-10-25', 55, 'https://www.gutenberg.org/ebooks/13849', 'fi', 2568), +(4065, 'The Breaking of the Storm, Vol. I.', 'Spielhagen, Friedrich', '2010-12-15', 6, 'https://www.gutenberg.org/ebooks/34657', 'en', 61), +(4066, 'Romanzero', 'Heine, Heinrich', '2004-05-01', 74, 'https://www.gutenberg.org/ebooks/5607', 'de', 510), +(4067, 'Pamphlets and Parodies on Political Subjects', 'Hone, William', '2013-12-26', 8, 'https://www.gutenberg.org/ebooks/44520', 'en', 2569), +(4068, 'Narrative of Travels in Europe, Asia, and Africa, in the Seventeenth Century, Vol. I', 'Evliya Çelebi', '2016-11-25', 48, 'https://www.gutenberg.org/ebooks/53597', 'en', 2570), +(4069, 'Punch, Or The London Charivari, Volume 102, January 23, 1892', 'Various', '2004-12-03', 8, 'https://www.gutenberg.org/ebooks/14250', 'en', 134), +(4070, 'Twenty Years of Congress, Volume 2\r\nFrom Lincoln to Garfield, with a Review of the Events Which Led to the Political Revolution of 1860', 'Blaine, James Gillespie', '2006-12-08', 14, 'https://www.gutenberg.org/ebooks/20065', 'en', 207), +(4071, 'Handbook of Alabama Archaeology: Part I, Point Types', 'Cambron, James W.', '2012-06-11', 41, 'https://www.gutenberg.org/ebooks/39974', 'en', 2571), +(4072, 'Jess of the Rebel Trail', 'Cody, H. A. (Hiram Alfred)', '2005-03-16', 8, 'https://www.gutenberg.org/ebooks/15382', 'en', 61), +(4073, 'Mythologia Fennica', 'Ganander, Christfrid', '2016-06-30', 34, 'https://www.gutenberg.org/ebooks/52445', 'sv', 2572), +(4074, 'The Great War and How It Arose', 'Anonymous', '2011-05-14', 6, 'https://www.gutenberg.org/ebooks/36100', 'en', 2573), +(4075, 'Barry Wynn; Or, The Adventures of a Page Boy in the United States Congress', 'Barton, George', '2018-05-11', 12, 'https://www.gutenberg.org/ebooks/57137', 'en', 1238), +(4076, 'The Past and the Present Condition, and the Destiny, of the Colored Race:\r\nA Discourse Delivered at the Fifteenth Anniversary of the Female Benevolent Society of Troy, N. Y., Feb. 14, 1848', 'Garnet, Henry Highland', '2019-02-23', 10, 'https://www.gutenberg.org/ebooks/58943', 'en', 2574), +(4077, 'With the World\'s Great Travellers, Volume 2', NULL, '2010-08-20', 55, 'https://www.gutenberg.org/ebooks/33472', 'en', 885), +(4078, 'Wandl the Invader', 'Cummings, Ray', '2007-03-20', 44, 'https://www.gutenberg.org/ebooks/20859', 'en', 26), +(4079, 'A Woman\'s Love', 'Opie, Amelia', '2012-07-09', 6, 'https://www.gutenberg.org/ebooks/40180', 'en', 61), +(4080, 'The Hallowell Partnership', 'Brown, Katharine Holland', '2012-10-14', 25, 'https://www.gutenberg.org/ebooks/41052', 'en', 2575), +(4081, 'How Justice Grew: Virginia Counties, An Abstract of Their Formation', 'Hiden, Martha W. (Martha Woodroof)', '2012-03-15', 9, 'https://www.gutenberg.org/ebooks/39148', 'en', 2576), +(4082, 'Reginald Bateman, Teacher and Soldier\r\nA Memorial Volume of Selections from His Lectures and Other Writings', 'Bateman, Reginald', '2019-07-10', 38, 'https://www.gutenberg.org/ebooks/59891', 'en', 335), +(4083, '傳習錄', 'Wang, Yangming', '2008-05-18', 31, 'https://www.gutenberg.org/ebooks/25517', 'zh', 2577), +(4084, 'First Lessons in Geography\r\nOr, Introduction to \"Youth\'s Manual of Geography\"', 'Monteith, James', '2004-03-01', 53, 'https://www.gutenberg.org/ebooks/11722', 'en', 2578), +(4085, 'With Links of Steel; Or, The Peril of the Unknown', 'Carter, Nicholas (House name)', '2004-11-19', 20, 'https://www.gutenberg.org/ebooks/14096', 'en', 2579), +(4086, 'Secrets of Earth and Sea', 'Lankester, E. Ray (Edwin Ray), Sir', '2016-12-17', 39, 'https://www.gutenberg.org/ebooks/53751', 'en', 2580), +(4087, 'The Adventures of Seumas Beg; The Rocky Road to Dublin', 'Stephens, James', '2011-08-25', 16, 'https://www.gutenberg.org/ebooks/37214', 'en', 8), +(4088, 'Myths of the Cherokee\r\nExtract from the Nineteenth Annual Report of the Bureau of American Ethnology', 'Mooney, James', '2014-05-11', 368, 'https://www.gutenberg.org/ebooks/45634', 'en', 2581), +(4089, 'The Rainbow and the Rose', 'Nesbit, E. (Edith)', '2003-10-01', 39, 'https://www.gutenberg.org/ebooks/4513', 'en', 1594), +(4090, 'Our Soldier Boy', 'Fenn, George Manville', '2007-05-08', 8, 'https://www.gutenberg.org/ebooks/21371', 'en', 1361), +(4091, 'The Mystery Boys and the Inca Gold', 'Powell, Van', '2016-07-30', 16, 'https://www.gutenberg.org/ebooks/52683', 'en', 128), +(4092, 'Punch, or the London Charivari, Volume 103, August 27, 1892', 'Various', '2005-02-22', 4, 'https://www.gutenberg.org/ebooks/15144', 'en', 134), +(4093, 'Myths and Myth-Makers\r\nOld Tales and Superstitions Interpreted by Comparative Mythology', 'Fiske, John', '1997-10-01', 36, 'https://www.gutenberg.org/ebooks/1061', 'en', 75), +(4094, 'The Spanish Brothers: A Tale of the Sixteenth Century', 'Alcock, Deborah', '2012-07-26', 60, 'https://www.gutenberg.org/ebooks/40346', 'en', 2582), +(4095, 'Erick and Sally', 'Spyri, Johanna', '2003-12-01', 40, 'https://www.gutenberg.org/ebooks/10436', 'en', 751), +(4096, 'The House of Toys', 'Miller, Henry Russell', '2008-02-13', 17, 'https://www.gutenberg.org/ebooks/24603', 'en', 109), +(4097, 'Oat Meal: The War Winner', 'Grieve, James Ritchie', '2017-12-22', 16, 'https://www.gutenberg.org/ebooks/56223', 'en', 2583), +(4098, 'Sota', 'Zola, Émile', '2012-11-05', 2, 'https://www.gutenberg.org/ebooks/41294', 'fi', 1180), +(4099, 'The Broken Soldier and the Maid of France', 'Van Dyke, Henry', '2005-06-03', 10, 'https://www.gutenberg.org/ebooks/15978', 'en', 579), +(4100, 'Einleitung in die Theorie der Elliptischen Funktionen', 'Bobek, Karl Joseph', '2010-06-10', 15, 'https://www.gutenberg.org/ebooks/32766', 'de', 2584), +(4101, 'A Far Country — Volume 1', 'Churchill, Winston', '2004-10-17', 6, 'https://www.gutenberg.org/ebooks/3736', 'en', 541), +(4102, 'La gloria de don Ramiro\nuna vida en tiempos de Felipe segundo', 'Larreta, Enrique', '2009-09-06', 15, 'https://www.gutenberg.org/ebooks/29920', 'es', 2585), +(4103, 'Il destino: romanzo', 'Guerrazzi, Francesco Domenico', '2013-03-25', 6, 'https://www.gutenberg.org/ebooks/42411', 'it', 1544), +(4104, 'The Mother\'s Recompense, Volume 1\r\nA Sequel to Home Influence', 'Aguilar, Grace', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12361', 'en', 2586), +(4105, 'Der kleine Häwelmann', 'Storm, Theodor', '2006-11-15', 15, 'https://www.gutenberg.org/ebooks/19789', 'de', 2587), +(4106, 'The Joyous Adventures of Aristide Pujol', 'Locke, William John', '2008-07-31', 43, 'https://www.gutenberg.org/ebooks/26154', 'en', 2588), +(4107, 'The Dodge Club; Or, Italy in MDCCCLIX', 'De Mille, James', '2008-10-29', 15, 'https://www.gutenberg.org/ebooks/27086', 'en', 16), +(4108, 'Lustreise ins Morgenland, Zweiter Theil (von 2)', 'Tobler, Titus', '2017-04-20', 7, 'https://www.gutenberg.org/ebooks/54574', 'de', 2589), +(4109, 'The Eye of Dread', 'Erskine, Payne', '2009-09-19', 102, 'https://www.gutenberg.org/ebooks/30031', 'en', 61), +(4110, 'Obil, Keeper of Camels\r\nBeing the parable of the man whom the disciples saw casting out devils', 'Bell, Lucia Chase', '2016-01-23', 6, 'https://www.gutenberg.org/ebooks/51006', 'en', 942), +(4111, 'My Little Boy', 'Ewald, Carl', '2011-03-11', 11, 'https://www.gutenberg.org/ebooks/35543', 'en', 2590), +(4112, 'The Poetical Works of Oliver Wendell Holmes — Volume 09\r\nThe Iron Gate and Other Poems', 'Holmes, Oliver Wendell', '2004-09-30', 12, 'https://www.gutenberg.org/ebooks/7396', 'en', 178), +(4113, 'Summer Snow Storm', 'Marlowe, Stephen', '2008-10-19', 44, 'https://www.gutenberg.org/ebooks/26968', 'en', 2591), +(4114, 'Origine della lingua italiana: dissertazione', 'Morandi, Luigi', '2014-10-21', 32, 'https://www.gutenberg.org/ebooks/47163', 'it', 2592), +(4115, 'Ralph Clavering; Or, We Must Try Before We Can Do', 'Kingston, William Henry Giles', '2010-11-29', 10, 'https://www.gutenberg.org/ebooks/34491', 'en', 2593), +(4116, 'The Right of Way — Volume 02', 'Parker, Gilbert', '2004-08-01', 4, 'https://www.gutenberg.org/ebooks/6244', 'en', 1219), +(4117, 'Florens Abentheuer in Afrika, und ihre Heimkehr nach Paris. Erster Band.', 'Voss, Julius von', '2015-05-10', 9, 'https://www.gutenberg.org/ebooks/48917', 'de', 533), +(4118, 'The Last Place on Earth', 'Harmon, Jim', '2007-11-09', 29, 'https://www.gutenberg.org/ebooks/23426', 'en', 179), +(4119, 'The Land of the Black Mountain: The Adventures of Two Englishmen in Montenegro', 'Prance, Gerald', '2006-01-27', 29, 'https://www.gutenberg.org/ebooks/17613', 'en', 2124), +(4120, 'The Understudy\nNight Watches, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12153', 'en', 637), +(4121, 'Flash Evans, Camera News Hawk', 'Bell, Frank', '2017-10-07', 9, 'https://www.gutenberg.org/ebooks/55694', 'en', 2594), +(4122, 'The Frogs', 'Aristophanes', '2005-04-01', 100, 'https://www.gutenberg.org/ebooks/7998', 'en', 2595), +(4123, 'The Electric Bath', 'Schweig, George M.', '2008-08-20', 8, 'https://www.gutenberg.org/ebooks/26366', 'en', 2596), +(4124, 'Human Genome Project, Chromosome Number 04', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3504', 'en', 1841), +(4125, 'Camping on the St. Lawrence; Or, On the Trail of the Early Discoverers', 'Tomlinson, Everett T. (Everett Titsworth)', '2013-04-30', 18, 'https://www.gutenberg.org/ebooks/42623', 'en', 450), +(4126, 'Lincoln and the Sleeping Sentinel: The True Story', 'Chittenden, L. E. (Lucius Eugene)', '2015-02-20', 12, 'https://www.gutenberg.org/ebooks/48319', 'en', 2597), +(4127, 'Flowers of Freethought (Second Series)', 'Foote, G. W. (George William)', '2009-10-06', 30, 'https://www.gutenberg.org/ebooks/30203', 'en', 1191), +(4128, 'Quaint and Historic Forts of North America', 'Hammond, John Martin', '2017-06-07', 10, 'https://www.gutenberg.org/ebooks/54746', 'en', 2598), +(4129, 'Unmanned', 'Oliver, Stephen', '2004-08-02', 14, 'https://www.gutenberg.org/ebooks/13081', 'en', 8), +(4130, 'Captain Scraggs; Or, The Green-Pea Pirates', 'Kyne, Peter B. (Peter Bernard)', '2006-05-29', 29, 'https://www.gutenberg.org/ebooks/18469', 'en', 324), +(4131, 'NREN for All: Insurmountable Opportunity', 'Polly, Jean Armour', '1993-03-01', 69, 'https://www.gutenberg.org/ebooks/56', 'en', 2599), +(4132, 'When the Ku Klux Rode', 'Damer, Eyre', '2011-04-05', 13, 'https://www.gutenberg.org/ebooks/35771', 'en', 1515), +(4133, 'The Motor-Bus in War\r\nBeing the Impressions of an A.S.C. Officer during Two and a Half Years at the Front', 'Beatson, A. M.', '2014-07-14', 12, 'https://www.gutenberg.org/ebooks/46283', 'en', 2600), +(4134, 'Zeritsky\'s Law', 'Griffith, Ann Warren', '2016-02-16', 30, 'https://www.gutenberg.org/ebooks/51234', 'en', 26), +(4135, 'Happy Days', 'Herford, Oliver', '2007-11-25', 9, 'https://www.gutenberg.org/ebooks/23614', 'en', 2601), +(4136, 'Der Mann des Schicksals: Komödie in einem Akt', 'Shaw, Bernard', '2006-02-01', 35, 'https://www.gutenberg.org/ebooks/9802', 'de', 2602), +(4137, 'Emperor Quartet op.76 no.3., 2nd movement\nArranged for solo guitar', 'Haydn, Joseph', '2005-12-31', 28, 'https://www.gutenberg.org/ebooks/17421', 'en', 2603), +(4138, 'Pilots of the Republic: The Romance of the Pioneer Promoter in the Middle West', 'Hulbert, Archer Butler', '2014-11-14', 27, 'https://www.gutenberg.org/ebooks/47351', 'en', 2604), +(4139, 'The Legends of San Francisco', 'Caldwell, George W. (George Walter)', '2004-07-01', 14, 'https://www.gutenberg.org/ebooks/6076', 'en', 2605), +(4140, 'Kahdeksan kuukautta Shpalernajassa', 'Wilkuna, Kyösti', '2011-08-10', 14, 'https://www.gutenberg.org/ebooks/37026', 'fi', 1578), +(4141, 'Eredeti népmesék', 'Arany, László', '2012-02-12', 16, 'https://www.gutenberg.org/ebooks/38852', 'hu', 2), +(4142, 'Canada (1535-Present Day)', NULL, '2016-11-20', 11, 'https://www.gutenberg.org/ebooks/53563', 'en', 2606), +(4143, 'No Surrender! A Tale of the Rising in La Vendee', 'Henty, G. A. (George Alfred)', '2006-12-11', 35, 'https://www.gutenberg.org/ebooks/20091', 'en', 2607), +(4144, 'The Atlantic Telegraph (1865)', 'Russell, William Howard, Sir', '2012-10-05', 12, 'https://www.gutenberg.org/ebooks/40948', 'en', 2608), +(4145, 'Las Fábulas de Esopo, Vol. 01', 'Townsend, George Fyler', '2007-04-27', 162, 'https://www.gutenberg.org/ebooks/21143', 'es', 2609), +(4146, 'A General History and Collection of Voyages and Travels, Volume 11\nArranged in Systematic Order: Forming a Complete History\nof the Origin and Progress of Navigation, Discovery, and\nCommerce, by Sea and Land, from the Earliest Ages to the\nPresent Time', 'Kerr, Robert', '2005-03-16', 15, 'https://www.gutenberg.org/ebooks/15376', 'en', 885), +(4147, 'Farmer George, Volume 1', 'Melville, Lewis', '2012-07-01', 19, 'https://www.gutenberg.org/ebooks/39980', 'en', 2610), +(4148, 'Der Mädchenhandel', 'Wagener, Friedrich Wilhelm Hermann', '2019-03-14', 11, 'https://www.gutenberg.org/ebooks/59059', 'de', 2611), +(4149, 'The Pansy Magazine, April 1886', 'Various', '2014-04-16', 23, 'https://www.gutenberg.org/ebooks/45406', 'en', 522), +(4150, 'Darkness and Daylight: A Novel', 'Holmes, Mary Jane', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/4721', 'en', 2530), +(4151, 'Les affinités électives\r\nSuivies d\'un choix de pensées du même', 'Goethe, Johann Wolfgang von', '2004-01-01', 38, 'https://www.gutenberg.org/ebooks/10604', 'fr', 2612), +(4152, 'Peggy-Alone', 'Byrne, Mary Agnes', '2008-01-26', 10, 'https://www.gutenberg.org/ebooks/24431', 'en', 62), +(4153, 'A Simple Soul', 'Flaubert, Gustave', '2006-02-19', 158, 'https://www.gutenberg.org/ebooks/1253', 'en', 61), +(4154, 'Songs of the Silent World, and Other Poems', 'Phelps, Elizabeth Stuart', '2010-11-23', 15, 'https://www.gutenberg.org/ebooks/33486', 'en', 8), +(4155, 'Kuningas Henrik Kuudes III', 'Shakespeare, William', '2012-07-09', 4, 'https://www.gutenberg.org/ebooks/40174', 'fi', 2613), +(4156, 'The Elephant Man and Other Reminiscences', 'Treves, Frederick', '2019-07-06', 148, 'https://www.gutenberg.org/ebooks/59865', 'en', 2614), +(4157, 'History of the Kentucky Derby, 1875-1921', 'O\'Connor, John Lawrence', '2010-05-27', 18, 'https://www.gutenberg.org/ebooks/32554', 'en', 2615), +(4158, 'Ein Sommer im Orient', 'Warsberg, Alexander, Freiherr von', '2017-11-20', 10, 'https://www.gutenberg.org/ebooks/56011', 'de', 2204), +(4159, 'The Washer of the Ford: Legendary moralities and barbaric tales', 'Sharp, William', '2013-08-03', 37, 'https://www.gutenberg.org/ebooks/43395', 'en', 1922), +(4160, 'Barnabé Rudge, Tome I', 'Dickens, Charles', '2006-02-27', 48, 'https://www.gutenberg.org/ebooks/17879', 'fr', 2616), +(4161, 'The Tale of Old Dog Spot', 'Bailey, Arthur Scott', '2009-12-13', 41, 'https://www.gutenberg.org/ebooks/30667', 'en', 766), +(4162, 'Los Desastres de la guerra:\r\ncolección de ochenta láminas inventadas y grabadas al agua fuerte', 'Goya, Francisco', '2019-08-18', 278, 'https://www.gutenberg.org/ebooks/60117', 'es', 2617), +(4163, 'Norwich: A Sketch Book', 'Cole, Elsie Vera', '2017-03-09', 9, 'https://www.gutenberg.org/ebooks/54322', 'en', 2618), +(4164, 'Account of a Tour in Normandy, Volume 1', 'Turner, Dawson', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12537', 'en', 496), +(4165, 'Studies in love and in terror', 'Lowndes, Marie Belloc', '2008-09-26', 20, 'https://www.gutenberg.org/ebooks/26702', 'en', 2354), +(4166, 'Roughing It, Part 7.', 'Twain, Mark', '2004-07-02', 9, 'https://www.gutenberg.org/ebooks/8588', 'en', 1256), +(4167, 'The Odyssey', 'Homer', '2002-04-01', 404, 'https://www.gutenberg.org/ebooks/3160', 'en', 2619), +(4168, 'Nuts to crack; or Quips, quirks, anecdote and facete of Oxford and Cambridge Scholars', 'Gooch, Richard', '2013-03-04', 27, 'https://www.gutenberg.org/ebooks/42247', 'en', 2620), +(4169, 'On the Indian Trail\nStories of Missionary Work among Cree and Salteaux Indians', 'Young, Egerton Ryerson', '2007-10-31', 12, 'https://www.gutenberg.org/ebooks/23270', 'en', 2621), +(4170, 'The Crystal Crypt', 'Dick, Philip K.', '2009-05-06', 273, 'https://www.gutenberg.org/ebooks/28698', 'en', 179), +(4171, 'In the Roaring Fifties', 'Dyson, Edward', '2005-11-11', 20, 'https://www.gutenberg.org/ebooks/17045', 'en', 2622), +(4172, 'Des Imagistes: An Anthology', 'Various', '2015-12-28', 24, 'https://www.gutenberg.org/ebooks/50782', 'en', 2623), +(4173, 'The Bull Calf, and Other Tales', 'Frost, A. B. (Arthur Burdett)', '2014-12-22', 11, 'https://www.gutenberg.org/ebooks/47735', 'en', 2624), +(4174, 'Time and Time Again', 'Piper, H. Beam', '2006-07-15', 107, 'https://www.gutenberg.org/ebooks/18831', 'en', 26), +(4175, 'Nature\'s Serial Story', 'Roe, Edward Payson', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6412', 'en', 2625), +(4176, 'Le registre d\'écrou de la Bastille de 1782 à 1789\nExtrait de la Nouvelle Revue du 1er décembre 1880', 'Bégis, A. (Alfred)', '2011-02-18', 31, 'https://www.gutenberg.org/ebooks/35315', 'fr', 2626), +(4177, 'Innocent at Large', 'Anderson, Poul', '2016-04-03', 114, 'https://www.gutenberg.org/ebooks/51650', 'en', 2627), +(4178, 'One Third Off', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2005-07-04', 10, 'https://www.gutenberg.org/ebooks/16197', 'en', 2628), +(4179, 'Weihnachtserzählungen', 'Schwayer, Adolf', '2007-05-19', 11, 'https://www.gutenberg.org/ebooks/21527', 'de', 179), +(4180, 'Hugo: A Fantasia on Modern Themes', 'Bennett, Arnold', '2005-04-26', 34, 'https://www.gutenberg.org/ebooks/15712', 'en', 401), +(4181, 'Hallimajan nuoret: Kuvaus nykyajalta', 'Anttila, Selma', '2014-03-06', 37, 'https://www.gutenberg.org/ebooks/45062', 'fi', 456), +(4182, 'The English Stage: Being an Account of the Victorian Drama', 'Filon, Augustin', '2011-07-03', 17, 'https://www.gutenberg.org/ebooks/36590', 'en', 2135), +(4183, 'Sparrows: The Story of an Unprotected Girl', 'Newte, Horace W. C. (Horace Wykeham Can)', '2003-08-01', 25, 'https://www.gutenberg.org/ebooks/4345', 'en', 1079), +(4184, 'Gulliver\'s Reizen naar Lilliput en Brobdingnag', 'Swift, Jonathan', '2011-09-15', 29, 'https://www.gutenberg.org/ebooks/37442', 'nl', 781), +(4185, 'Tales and Novels of J. de La Fontaine — Volume 23', 'La Fontaine, Jean de', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/5297', 'en', 2629), +(4186, 'The Rámáyan of Válmíki, translated into English verse', 'Valmiki', '2008-03-18', 757, 'https://www.gutenberg.org/ebooks/24869', 'en', 2630), +(4187, 'Kanervaisilta kankahilta 2: Kertomuksia ja kuvauksia', 'Salokannel, Akseli', '2016-09-21', 7, 'https://www.gutenberg.org/ebooks/53107', 'fi', 665), +(4188, 'André Kautokeinolainen: Kertomus perimmästä Pohjolasta', 'Kieler, Laura', '2010-04-25', 7, 'https://www.gutenberg.org/ebooks/32130', 'fi', 2631), +(4189, '花月痕', 'Wei, Zi\'an', '2008-04-26', 5, 'https://www.gutenberg.org/ebooks/25187', 'zh', 1003), +(4190, 'Sämmtliche Werke 8: Briefwechsel II, Hans Küchelgarten\r\nBriefwechsel II / Die Beichte des Dichters / Betrachtungen über die Heilige Liturgie / Jugendschriften / Fragmente / Hans Küchelgarten', 'Gogol, Nikolai Vasilevich', '2018-01-31', 13, 'https://www.gutenberg.org/ebooks/56475', 'de', 2632), +(4191, 'Narodowe Melodye\r\nPolka', NULL, '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10260', 'en', 2633), +(4192, 'The Sayings of Confucius', 'Confucius', '2007-12-27', 160, 'https://www.gutenberg.org/ebooks/24055', 'en', 1493), +(4193, 'Sanitary and Social Lectures and Essays', 'Kingsley, Charles', '1999-02-01', 19, 'https://www.gutenberg.org/ebooks/1637', 'en', 20), +(4194, 'The Watcher, and other weird stories', 'Le Fanu, Joseph Sheridan', '2012-08-15', 110, 'https://www.gutenberg.org/ebooks/40510', 'en', 2634), +(4195, 'Los Indios, su Historia y su Civilización', 'Batres Jáuregui, Antonio', '2014-03-28', 25, 'https://www.gutenberg.org/ebooks/45250', 'es', 2635), +(4196, 'Diary of Samuel Pepys — Volume 54: June 1667', 'Pepys, Samuel', '2004-12-01', 11, 'https://www.gutenberg.org/ebooks/4177', 'en', 2197), +(4197, 'Away in the Wilderness', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 54, 'https://www.gutenberg.org/ebooks/21715', 'en', 676), +(4198, 'With Methuen\'s Column on an Ambulance Train', 'Bennett, Ernest Nathaniel', '2005-04-01', 6, 'https://www.gutenberg.org/ebooks/15520', 'en', 2636), +(4199, 'Pomegranates from an English Garden\nA selection from the poems of Robert Browning', 'Browning, Robert', '2016-10-21', 26, 'https://www.gutenberg.org/ebooks/53335', 'en', 54), +(4200, 'Bible Stories', 'Anonymous', '2011-10-08', 16, 'https://www.gutenberg.org/ebooks/37670', 'en', 2637), +(4201, 'Old Country Inns of England', 'Gregory, Edward W. (Edward William)', '2013-12-07', 34, 'https://www.gutenberg.org/ebooks/44382', 'en', 2638), +(4202, 'The World\'s Greatest Books — Volume 06 — Fiction', NULL, '2004-02-01', 120, 'https://www.gutenberg.org/ebooks/11180', 'en', 61), +(4203, 'Kostajan kourissa: Salapoliisikertomus', 'Elvestad, Sven', '2018-02-26', 3, 'https://www.gutenberg.org/ebooks/56647', 'fi', 128), +(4204, 'The Destroying Angel', 'Vance, Louis Joseph', '2010-05-08', 113, 'https://www.gutenberg.org/ebooks/32302', 'en', 48), +(4205, 'The Collection of Antiquities', 'Balzac, Honoré de', '2004-07-01', 23, 'https://www.gutenberg.org/ebooks/1405', 'en', 58), +(4206, 'Reise in die Aequinoctial-Gegenden des neuen Continents. Band 4.', 'Humboldt, Alexander von', '2012-01-21', 17, 'https://www.gutenberg.org/ebooks/38638', 'de', 2639), +(4207, 'Dan Carter and the Great Carved Face', 'Wirt, Mildred A. (Mildred Augustine)', '2012-09-10', 12, 'https://www.gutenberg.org/ebooks/40722', 'en', 2640), +(4208, 'The Sacred Wood: Essays on Poetry and Criticism', 'Eliot, T. S. (Thomas Stearns)', '2018-08-28', 186, 'https://www.gutenberg.org/ebooks/57795', 'en', 2641), +(4209, 'The Open Door, and the Portrait.\nStories of the Seen and the Unseen.', 'Oliphant, Mrs. (Margaret)', '2003-11-01', 61, 'https://www.gutenberg.org/ebooks/10052', 'en', 797), +(4210, 'The Physiology of Marriage, Part 2', 'Balzac, Honoré de', '2005-07-04', 7, 'https://www.gutenberg.org/ebooks/5899', 'en', 2642), +(4211, 'Picked up at Sea\nThe Gold Miners of Minturne Creek', 'Hutcheson, John C. (John Conroy)', '2008-01-13', 17, 'https://www.gutenberg.org/ebooks/24267', 'en', 252), +(4212, 'Neiti de Taverney: Historiallinen romaani Ludvig XV:n hovista', 'Dumas, Alexandre', '2017-02-04', 7, 'https://www.gutenberg.org/ebooks/54110', 'fi', 2643), +(4213, 'Specimens with Memoirs of the Less-known British Poets, Volume 2', NULL, '2006-01-01', 14, 'https://www.gutenberg.org/ebooks/9668', 'en', 54), +(4214, 'A Millionaire of Rough-and-Ready', 'Harte, Bret', '2000-08-01', 19, 'https://www.gutenberg.org/ebooks/2280', 'en', 315), +(4215, 'Essays in English Literature, 1780-1860', 'Saintsbury, George', '2009-11-12', 20, 'https://www.gutenberg.org/ebooks/30455', 'en', 2644), +(4216, 'Letters to His Son, 1748\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 17, 'https://www.gutenberg.org/ebooks/3352', 'en', 740), +(4217, 'Pursuit', 'Del Rey, Lester', '2010-03-10', 85, 'https://www.gutenberg.org/ebooks/31587', 'en', 26), +(4218, 'Harris\'s List of Covent Garden Ladies\nor Man of Pleasure\'s Kalendar for the Year, 1788', 'Anonymous', '2013-04-10', 816, 'https://www.gutenberg.org/ebooks/42075', 'en', 564), +(4219, 'King Grisly-Beard', 'Grimm, Wilhelm', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12705', 'en', 1007), +(4220, 'Mei-droom: Een feestelijk verbeeldingsspel in acht tooneelen', 'Adama van Scheltema, Carel Steven', '2008-09-04', 16, 'https://www.gutenberg.org/ebooks/26530', 'nl', 8), +(4221, 'Golden Grain Garnered from the World\'s Great Harvest-field of Knowledge\r\nComprising Selections from the Ablest Modern Writers of Prose, Poetry, and Legendary Lore', NULL, '2014-12-01', 5, 'https://www.gutenberg.org/ebooks/47507', 'en', 2645), +(4222, 'The Time Machine', 'Wells, H. G. (Herbert George)', '2004-10-01', 17, 'https://www.gutenberg.org/ebooks/6620', 'en', 2229), +(4223, 'The Tempest\nThe Works of William Shakespeare [Cambridge Edition] [9 vols.]', 'Shakespeare, William', '2007-10-26', 356, 'https://www.gutenberg.org/ebooks/23042', 'en', 2344), +(4224, 'The Story of a Monkey on a Stick', 'Hope, Laura Lee', '2005-12-11', 16, 'https://www.gutenberg.org/ebooks/17277', 'en', 1235), +(4225, 'La vita Italiana nel Risorgimento (1846-1849), parte 1\r\nTerza serie - Lettere, scienze e arti', 'Various', '2016-03-15', 7, 'https://www.gutenberg.org/ebooks/51462', 'it', 999), +(4226, 'Storia della Guerra della Independenza degli Stati Uniti di America, vol. 4', 'Botta, Carlo', '2013-05-30', 15, 'https://www.gutenberg.org/ebooks/42849', 'it', 481), +(4227, 'The Stamps of Canada', 'Poole, Bertram W. H. (Bertram William Henry)', '2007-08-01', 20, 'https://www.gutenberg.org/ebooks/22190', 'en', 2646), +(4228, 'George Loves Gistla', 'McKimmey, James', '2009-08-02', 29, 'https://www.gutenberg.org/ebooks/29578', 'en', 179), +(4229, 'Frank Merriwell\'s Return to Yale', 'Standish, Burt L.', '2011-02-01', 23, 'https://www.gutenberg.org/ebooks/35127', 'en', 2150), +(4230, 'The Meaning of Infancy', 'Fiske, John', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/12359', 'en', 2647); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(4231, 'Mémoires touchant la vie et les écrits de Marie de Rabutin-Chantal, (3/6)', 'Walckenaer, C. A. (Charles Athanase)', '2016-04-19', 15, 'https://www.gutenberg.org/ebooks/51802', 'fr', 2648), +(4232, 'Historic Events of Colonial Days', 'Holland, Rupert Sargent', '2013-03-29', 39, 'https://www.gutenberg.org/ebooks/42429', 'en', 2649), +(4233, 'Les Contemporains, Quatrième Série\nEtudes et Portraits Littéraires', 'Lemaître, Jules', '2009-09-06', 14, 'https://www.gutenberg.org/ebooks/29918', 'fr', 2650), +(4234, 'De complete werken van Joost van Vondel. Vergelijking van de Verlossinge der Kindren Israels met de Vrijwording der Vereenigde Nederlandsche Provinciën, [etc.]', 'Vondel, Joost van den', '2015-01-30', 22, 'https://www.gutenberg.org/ebooks/48113', 'nl', 2651), +(4235, 'The Old Apple Dealer (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9234', 'en', 13), +(4236, 'Le féminisme français II\r\nL\'émancipation politique et familiale de la femme', 'Turgeon, Charles Marie Joseph', '2009-09-17', 9, 'https://www.gutenberg.org/ebooks/30009', 'fr', 1619), +(4237, 'The Bases of Design', 'Crane, Walter', '2015-01-13', 86, 'https://www.gutenberg.org/ebooks/47967', 'en', 2652), +(4238, 'The Great Round World and What Is Going On In It, Vol. 2, No. 10, March 10, 1898\nA Weekly Magazine for Boys and Girls', 'Various', '2006-06-23', 12, 'https://www.gutenberg.org/ebooks/18663', 'en', 1), +(4239, 'Humorous Ghost Stories', 'Scarborough, Dorothy', '2008-10-18', 88, 'https://www.gutenberg.org/ebooks/26950', 'en', 531), +(4240, 'Mesék és regék', 'Jókai, Mór', '2014-06-24', 19, 'https://www.gutenberg.org/ebooks/46089', 'hu', 1532), +(4241, 'The Gold Horns', 'Oehlenschläger, Adam', '2009-06-15', 35, 'https://www.gutenberg.org/ebooks/29124', 'en', 2653), +(4242, 'A Country Gentleman and His Family', 'Oliphant, Mrs. (Margaret)', '2010-01-02', 21, 'https://www.gutenberg.org/ebooks/30835', 'en', 675), +(4243, 'Kościuszko\r\nA Biography', 'Gardner, Monica M. (Monica Mary)', '2009-01-24', 35, 'https://www.gutenberg.org/ebooks/27882', 'en', 2654), +(4244, 'North America — Volume 1', 'Trollope, Anthony', '1999-08-01', 24, 'https://www.gutenberg.org/ebooks/1865', 'en', 2655), +(4245, 'Battling the Bighorn; or, The Aeroplane in the Rockies', 'Sayler, H. L. (Harry Lincoln)', '2018-11-30', 4, 'https://www.gutenberg.org/ebooks/58381', 'en', 2279), +(4246, 'Floreat Etona: Anecdotes and Memories of Eton College', 'Nevill, Ralph', '2016-12-19', 12, 'https://www.gutenberg.org/ebooks/53769', 'en', 2656), +(4247, 'Ueber Goethes Hermann und Dorothea', 'Hehn, Victor', '2007-05-07', 18, 'https://www.gutenberg.org/ebooks/21349', 'de', 2657), +(4248, 'Attack of Fortified Places. Including Siege-works, Mining, and Demolitions.\r\nPrepared for the use of the Cadets of the United States Military Academy', 'Mercur, James', '2019-04-11', 26, 'https://www.gutenberg.org/ebooks/59253', 'en', 2658), +(4249, 'The World Set Free', 'Wells, H. G. (Herbert George)', '2006-02-11', 251, 'https://www.gutenberg.org/ebooks/1059', 'en', 2659), +(4250, 'Daniel Defoe', 'Minto, William', '2005-02-03', 10, 'https://www.gutenberg.org/ebooks/14892', 'en', 2660), +(4251, 'Guatemala, the country of the future', 'Pepper, Charles M. (Charles Melville)', '2011-12-10', 6, 'https://www.gutenberg.org/ebooks/38264', 'en', 2661), +(4252, 'The Luck of the Mounted: A Tale of the Royal Northwest Mounted Police', 'Kendall, Ralph S. (Ralph Selwood)', '2005-05-30', 29, 'https://www.gutenberg.org/ebooks/15940', 'en', 2662), +(4253, 'Exploiter\'s End', 'Causey, James', '2012-10-07', 27, 'https://www.gutenberg.org/ebooks/40970', 'en', 424), +(4254, 'W. Kent & Co\'s Annual Catalogue, October 1858', 'W. Kent and Co.', '2018-03-22', 2, 'https://www.gutenberg.org/ebooks/56815', 'en', 2663), +(4255, 'Wacousta : a tale of the Pontiac conspiracy — Volume 1', 'Richardson, Major (John)', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/4719', 'en', 1203), +(4256, 'Poisonous Snakes of Kansas', 'Clarke, Robert F. (Robert Francis)', '2019-03-14', 8, 'https://www.gutenberg.org/ebooks/59061', 'en', 2664), +(4257, 'Traité élémentaire de chimie, tomes 1 & 2\r\nPrésenté dans un ordre nouveau et d\'après les découvertes modernes; avec Figures', 'Lavoisier, Antoine Laurent', '2016-07-03', 28, 'https://www.gutenberg.org/ebooks/52489', 'fr', 292), +(4258, 'Abraham Lincoln and the London Punch\nCartoons, Comments and Poems, Published in the London Charivari, During the American Civil War (1861-1865)', NULL, '2011-11-19', 22, 'https://www.gutenberg.org/ebooks/38056', 'en', 2665), +(4259, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon\nTome II', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2007-03-24', 20, 'https://www.gutenberg.org/ebooks/20895', 'fr', 2666), +(4260, 'Amerika, sen löytö, valloitus ja kehitys', 'Hagman, Tyko', '2011-10-22', 11, 'https://www.gutenberg.org/ebooks/37822', 'fi', 207), +(4261, 'Our Common Insects\r\nA Popular Account of the Insects of Our Fields, Forests, Gardens and Houses', 'Packard, A. S. (Alpheus Spring)', '2008-01-23', 57, 'https://www.gutenberg.org/ebooks/24409', 'en', 2667), +(4262, '\"Erb\"', 'Ridge, W. Pett (William Pett)', '2017-11-22', 6, 'https://www.gutenberg.org/ebooks/56029', 'en', 1079), +(4263, 'Kijkjes in het land van keizer Frans Jozef\nDe Aarde en haar Volken, 1908', 'Uildriks, Frederike J. van', '2007-06-26', 11, 'https://www.gutenberg.org/ebooks/21947', 'nl', 2668), +(4264, 'Checklist\r\nA complete, cumulative Checklist of lesbian, variant and homosexual fiction, in English or available in English translation, with supplements of related material, for the use of collectors, students and librarians.', NULL, '2012-03-17', 44, 'https://www.gutenberg.org/ebooks/39184', 'en', 2669), +(4265, 'A Vagabond Song', 'Carman, Bliss', '2006-10-20', 1, 'https://www.gutenberg.org/ebooks/19583', 'en', 8), +(4266, 'Ontario Normal School Manuals: Science of Education', 'Ontario. Department of Education', '2006-05-25', 17, 'https://www.gutenberg.org/ebooks/18451', 'en', 973), +(4267, 'The Sisters\' Tragedy, with Other Poems, Lyrical and Dramatic', 'Aldrich, Thomas Bailey', '1996-07-01', 9, 'https://www.gutenberg.org/ebooks/595', 'en', 178), +(4268, 'The Battle Ground', 'Glasgow, Ellen Anderson Gholson', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/6872', 'en', 403), +(4269, 'Klondyken kuningas', 'London, Jack', '2015-02-20', 12, 'https://www.gutenberg.org/ebooks/48321', 'fi', 2670), +(4270, 'The Man That Corrupted Hadleyburg', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9006', 'en', 2116), +(4271, 'Sir Henry Morgan, Buccaneer: A Romance of the Spanish Main', 'Brady, Cyrus Townsend', '2009-07-04', 78, 'https://www.gutenberg.org/ebooks/29316', 'en', 2671), +(4272, 'The Khaki Boys over the Top; Or, Doing and Daring for Uncle Sam', 'Bates, Gordon', '2004-07-20', 18, 'https://www.gutenberg.org/ebooks/12957', 'en', 146), +(4273, 'The Adventures of Fleet Foot and Her Fawns\r\nA True-to-Nature Story for Children and Their Elders', 'Chaffee, Allen', '2011-04-01', 15, 'https://www.gutenberg.org/ebooks/35749', 'en', 2672), +(4274, 'Blackwood\'s Edinburgh Magazine, Volume 71, No. 436, February 1852', 'Various', '2014-11-16', 9, 'https://www.gutenberg.org/ebooks/47369', 'en', 711), +(4275, 'Echoes from the Sabine Farm', 'Horace', '2004-10-27', 24, 'https://www.gutenberg.org/ebooks/13885', 'en', 2673), +(4276, 'Bouddha', 'Claretie, Jules', '2005-12-30', 30, 'https://www.gutenberg.org/ebooks/17419', 'fr', 61), +(4277, 'Birds, Illustrated by Color Photography, Vol. 1, No. 5\r\nMay, 1897', 'Various', '2008-07-06', 39, 'https://www.gutenberg.org/ebooks/25983', 'en', 1584), +(4278, 'Pee-wee Harris, F.O.B. Bridgeboro', 'Fitzhugh, Percy Keese', '2019-05-01', 13, 'https://www.gutenberg.org/ebooks/59405', 'en', 2674), +(4279, 'The Young Colonists: A Story of the Zulu and Boer Wars', 'Henty, G. A. (George Alfred)', '2010-06-20', 38, 'https://www.gutenberg.org/ebooks/32934', 'en', 2675), +(4280, 'Boys\' Second Book of Inventions', 'Baker, Ray Stannard', '2013-11-15', 15, 'https://www.gutenberg.org/ebooks/44188', 'en', 2676), +(4281, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 26, August, 1880', 'Various', '2008-03-16', 19, 'https://www.gutenberg.org/ebooks/24851', 'en', 162), +(4282, 'The Spider\'s Web', 'Kauffman, Reginald Wright', '2014-06-02', 18, 'https://www.gutenberg.org/ebooks/45866', 'en', 2677), +(4283, 'The Ego Machine', 'Kuttner, Henry', '2010-04-24', 96, 'https://www.gutenberg.org/ebooks/32108', 'en', 26), +(4284, 'The Fijians: A Study of the Decay of Custom', 'Thomson, Basil', '2011-12-28', 52, 'https://www.gutenberg.org/ebooks/38432', 'en', 160), +(4285, 'Catalogue of Practical & Scientific Books', 'Henry Carey Baird & Co.', '2017-01-06', 9, 'https://www.gutenberg.org/ebooks/53903', 'en', 2678), +(4286, 'Spanish Vistas', 'Lathrop, George Parsons', '2012-08-18', 12, 'https://www.gutenberg.org/ebooks/40528', 'en', 1514), +(4287, 'Nataligino Kolo', 'Jugoslavensko Tamburasko Drustvo', '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10258', 'en', 2679), +(4288, 'Marjorie at Seacote', 'Wells, Carolyn', '2006-03-21', 23, 'https://www.gutenberg.org/ebooks/18035', 'en', 62), +(4289, 'Captain of the Crew', 'Barbour, Ralph Henry', '2015-04-20', 20, 'https://www.gutenberg.org/ebooks/48745', 'en', 2680), +(4290, 'The Tale of Sandy Chipmunk', 'Bailey, Arthur Scott', '2005-12-01', 31, 'https://www.gutenberg.org/ebooks/9462', 'en', 2681), +(4291, 'The Old Flute-Player: A Romance of To-day', 'Marshall, Edward', '2006-02-23', 8, 'https://www.gutenberg.org/ebooks/17841', 'en', 1432), +(4292, 'Our American Cousin', 'Taylor, Tom', '2002-04-01', 100, 'https://www.gutenberg.org/ebooks/3158', 'en', 2682), +(4293, 'Miss Dexie\nA Romance of the Provinces', 'Eveleth, Stanford', '2005-11-03', 8, 'https://www.gutenberg.org/ebooks/16993', 'en', 61), +(4294, 'Dissertationem de hominibvs post mortem sangvisvgis, vvlgo sic dictis Vampyren', 'Pohl, Johann Christoph', '2015-08-13', 12, 'https://www.gutenberg.org/ebooks/49697', 'la', 2683), +(4295, 'Recollections of the late William Beckford\nof Fonthill, Wilts and Lansdown, Bath', 'Lansdown, Henry Venn', '2006-07-12', 25, 'https://www.gutenberg.org/ebooks/18809', 'en', 2684), +(4296, 'The Black Feather\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 15, 'https://www.gutenberg.org/ebooks/23248', 'en', 1426), +(4297, 'Cosmopolis — Volume 2', 'Bourget, Paul', '2003-04-01', 19, 'https://www.gutenberg.org/ebooks/3964', 'en', 58), +(4298, 'Dream World', 'Lafferty, R. A.', '2016-04-06', 89, 'https://www.gutenberg.org/ebooks/51668', 'en', 179), +(4299, 'Notes de Voltaire et de Condorcet sur les pensées de Pascal', 'Pascal, Blaise', '2009-08-23', 47, 'https://www.gutenberg.org/ebooks/29772', 'fr', 779), +(4300, 'Colin Campbell, Lord Clyde', 'Forbes, Archibald', '2015-03-24', 12, 'https://www.gutenberg.org/ebooks/48577', 'en', 2685), +(4301, 'The Flag Replaced on Sumter\nA Personal Narrative', 'Spicer, William A.', '2007-12-13', 16, 'https://www.gutenberg.org/ebooks/23846', 'en', 2686), +(4302, 'Independent Bohemia\nAn Account of the Czecho-Slovak Struggle for Liberty', 'Nosek, Vladimir', '2006-01-01', 21, 'https://www.gutenberg.org/ebooks/9650', 'en', 2687), +(4303, 'The Irish Penny Journal, Vol. 1 No. 09, August 29, 1840', 'Various', '2017-02-07', 3, 'https://www.gutenberg.org/ebooks/54128', 'en', 81), +(4304, 'Coffee and Repartee', 'Bangs, John Kendrick', '2006-04-19', 23, 'https://www.gutenberg.org/ebooks/18207', 'en', 2688), +(4305, 'Ilolaulu Jesuksesta', 'Salamnius, Mattias', '2011-04-20', 7, 'https://www.gutenberg.org/ebooks/35923', 'fi', 2689), +(4306, 'Fiebre de amor (Dominique)', 'Fromentin, Eugène', '2008-09-02', 33, 'https://www.gutenberg.org/ebooks/26508', 'es', 2549), +(4307, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 04', 'Dante Alighieri', '2004-08-07', 17, 'https://www.gutenberg.org/ebooks/8782', 'en', 2212), +(4308, 'The Frontier in American History', 'Turner, Frederick Jackson', '2007-10-14', 300, 'https://www.gutenberg.org/ebooks/22994', 'en', 2690), +(4309, 'The Light of the Star: A Novel', 'Garland, Hamlin', '2009-04-04', 16, 'https://www.gutenberg.org/ebooks/28492', 'en', 48), +(4310, 'The Fifteen Watt Tungsten Lamp', 'Anderson, Clair Elmore', '2015-12-02', 3, 'https://www.gutenberg.org/ebooks/50588', 'en', 2691), +(4311, 'His Glorious Appearing: An Exposition of Matthew Twenty-Four', 'White, James', '2017-06-15', 12, 'https://www.gutenberg.org/ebooks/54914', 'en', 2692), +(4312, 'Poems of Purpose', 'Wilcox, Ella Wheeler', '2004-10-01', 19, 'https://www.gutenberg.org/ebooks/6618', 'en', 178), +(4313, 'Grace, Actual and Habitual: A Dogmatic Treatise', 'Pohle, Joseph', '2009-07-29', 16, 'https://www.gutenberg.org/ebooks/29540', 'en', 2693), +(4314, 'Wild Life Near Home', 'Sharp, Dallas Lore', '2013-06-04', 19, 'https://www.gutenberg.org/ebooks/42871', 'en', 318), +(4315, 'The Great Round World and What Is Going On In It, Vol. 1, No. 26, May 6, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-01', 6, 'https://www.gutenberg.org/ebooks/15518', 'en', 1), +(4316, 'Index of the Project Gutenberg Works of O. Henry', 'Henry, O.', '2019-05-30', 78, 'https://www.gutenberg.org/ebooks/59637', 'en', 198), +(4317, 'The Native Races [of the Pacific states], Volume 5, Primitive History\r\nThe Works of Hubert Howe Bancroft, Volume 5', 'Bancroft, Hubert Howe', '2014-03-31', 30, 'https://www.gutenberg.org/ebooks/45268', 'en', 2005), +(4318, 'A Pluralistic Universe\r\nHibbert Lectures at Manchester College on the Present Situation in Philosophy', 'James, William', '2004-04-01', 358, 'https://www.gutenberg.org/ebooks/11984', 'en', 2694), +(4319, 'A Narrative of the Siege of Delhi\nWith an Account of the Mutiny at Ferozepore in 1857', 'Griffiths, Charles John', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10856', 'en', 2695), +(4320, 'A Century of Emblems', 'Cautley, George Spencer', '2011-10-06', 7, 'https://www.gutenberg.org/ebooks/37648', 'en', 2264), +(4321, 'Frederick Chopin, as a Man and Musician — Complete', 'Niecks, Frederick', '2004-01-01', 101, 'https://www.gutenberg.org/ebooks/4973', 'en', 392), +(4322, 'The World\'s Sixteen Crucified Saviors; Or, Christianity Before Christ', 'Graves, Kersey', '2012-01-17', 77, 'https://www.gutenberg.org/ebooks/38600', 'en', 2696), +(4323, 'My Recollections of Lord Byron', 'Guiccioli, Teresa, contessa di', '2008-07-06', 20, 'https://www.gutenberg.org/ebooks/25977', 'en', 2265), +(4324, 'Roughing It in the Bush', 'Moodie, Susanna', '2003-08-01', 75, 'https://www.gutenberg.org/ebooks/4389', 'en', 2697), +(4325, 'Ellen Levis: A Novel', 'Singmaster, Elsie', '2016-05-07', 17, 'https://www.gutenberg.org/ebooks/52019', 'en', 109), +(4326, 'Reminiscences of Peace and War', 'Pryor, Sara Agnes Rice', '2018-12-23', 13, 'https://www.gutenberg.org/ebooks/58523', 'en', 2698), +(4327, 'The Aboriginal Population of the North Coast of California', 'Cook, Sherburne Friend', '2010-09-26', 16, 'https://www.gutenberg.org/ebooks/33812', 'en', 2699), +(4328, 'Susan B. Anthony\nRebel, Crusader, Humanitarian', 'Lutz, Alma', '2007-01-25', 70, 'https://www.gutenberg.org/ebooks/20439', 'en', 2700), +(4329, 'L\'Illustration, No. 2512, 18 Avril 1891', 'Various', '2014-06-05', 10, 'https://www.gutenberg.org/ebooks/45892', 'fr', 150), +(4330, 'The Doctor in History, Literature, Folk-Lore, Etc.', NULL, '2012-04-23', 16, 'https://www.gutenberg.org/ebooks/39514', 'en', 2701), +(4331, 'Petroleum', 'Lidgett, Albert', '2016-08-16', 23, 'https://www.gutenberg.org/ebooks/52825', 'en', 2702), +(4332, 'Edrik, de Noorman', 'Hodgetts, J. Frederick (James Frederick)', '2014-02-16', 23, 'https://www.gutenberg.org/ebooks/44940', 'nl', 2703), +(4333, '二十年目睹之怪現狀', 'Wu, Jianren', '2008-01-01', 29, 'https://www.gutenberg.org/ebooks/24099', 'zh', 1003), +(4334, 'Nimettömiä lauluja', 'Hellaakoski, Aaro', '2004-09-10', 21, 'https://www.gutenberg.org/ebooks/13429', 'fi', 8), +(4335, 'Persuasion', 'Austen, Jane', '1994-02-01', 2621, 'https://www.gutenberg.org/ebooks/105', 'en', 1061), +(4336, 'Human Intercourse', 'Hamerton, Philip Gilbert', '2013-07-30', 23, 'https://www.gutenberg.org/ebooks/43359', 'en', 1470), +(4337, 'Das Leiden eines Knaben', 'Meyer, Conrad Ferdinand', '2005-12-01', 22, 'https://www.gutenberg.org/ebooks/9496', 'de', 2704), +(4338, 'English-Esperanto Dictionary', 'O\'Connor, J. C. (John Charles)', '2005-10-30', 147, 'https://www.gutenberg.org/ebooks/16967', 'eo', 2705), +(4339, 'From Bondage to Liberty in Religion: A Spiritual Autobiography', 'Ashley, George T. (George Thomas)', '2010-03-25', 13, 'https://www.gutenberg.org/ebooks/31779', 'en', 2706), +(4340, 'Trivia', 'Smith, Logan Pearsall', '2005-07-01', 66, 'https://www.gutenberg.org/ebooks/8544', 'en', 1201), +(4341, 'Adonijah: A Tale of the Jewish Dispersion.', 'Strickland, Jane Margaret', '2015-08-10', 19, 'https://www.gutenberg.org/ebooks/49663', 'en', 2707), +(4342, 'The Emigrant Trail', 'Bonner, Geraldine', '2006-08-24', 30, 'https://www.gutenberg.org/ebooks/19113', 'en', 2708), +(4343, 'The Life of Thomas Telford, Civil Engineer\r\nWith an Introductory History of Roads and Travelling in Great Britain', 'Smiles, Samuel', '1997-06-01', 6, 'https://www.gutenberg.org/ebooks/939', 'en', 2709), +(4344, 'Dave Porter and the Runaways; Or, Last Days at Oak Hall', 'Stratemeyer, Edward', '2009-05-01', 21, 'https://www.gutenberg.org/ebooks/28654', 'en', 1877), +(4345, 'The Tale of Mrs. Tittlemouse', 'Potter, Beatrix', '2005-11-18', 135, 'https://www.gutenberg.org/ebooks/17089', 'en', 1132), +(4346, 'Black Heart and White Heart: A Zulu Idyll', 'Haggard, H. Rider (Henry Rider)', '2006-03-28', 40, 'https://www.gutenberg.org/ebooks/2842', 'en', 1615), +(4347, 'Conscience — Complete', 'Malot, Hector', '2004-10-30', 12, 'https://www.gutenberg.org/ebooks/3990', 'en', 560), +(4348, 'Raiding with Morgan', 'Dunn, Byron A. (Byron Archibald)', '2009-08-24', 19, 'https://www.gutenberg.org/ebooks/29786', 'en', 403), +(4349, 'Chambers\'s Edinburgh Journal, No. 306\r\nNew Series, Saturday, November 10, 1849', 'Various', '2015-03-25', 4, 'https://www.gutenberg.org/ebooks/48583', 'en', 18), +(4350, 'History of Free Thought in Reference to The Christian Religion', 'Farrar, Adam Storey', '2009-11-19', 6, 'https://www.gutenberg.org/ebooks/30499', 'en', 2710), +(4351, 'Betty\'s Battles: An Everyday Story', 'S. L. M.', '2011-01-01', 13, 'https://www.gutenberg.org/ebooks/34805', 'en', 2711), +(4352, 'Indian Boyhood', 'Eastman, Charles Alexander', '2008-07-05', 120, 'https://www.gutenberg.org/ebooks/337', 'en', 2712), +(4353, 'Evolution: An Investigation and a Critique', 'Graebner, Theodore', '2006-09-18', 14, 'https://www.gutenberg.org/ebooks/19321', 'en', 2713), +(4354, 'The Impostures of Scapin', 'Molière', '2005-08-01', 40, 'https://www.gutenberg.org/ebooks/8776', 'en', 901), +(4355, 'The Mentor: Scotland, the Land of Song and Scenery, Vol. 1, Num. 10, Serial No. 10, April 21, 1913\r\nA Trip Around the World with Dwight L. Elmendorf', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2015-07-16', 4, 'https://www.gutenberg.org/ebooks/49451', 'en', 2714), +(4356, 'Among the Pines; or, South in Secession Time', 'Gilmore, James R. (James Roberts)', '2007-10-11', 13, 'https://www.gutenberg.org/ebooks/22960', 'en', 2564), +(4357, 'A Catalogue of Play Equipment', 'Hunt, Jean Lee', '2009-04-01', 59, 'https://www.gutenberg.org/ebooks/28466', 'en', 2715), +(4358, 'Appletons\' Popular Science Monthly, November 1898\r\nVolume 54, November 1898', 'Various', '2013-10-15', 7, 'https://www.gutenberg.org/ebooks/43957', 'en', 210), +(4359, 'Aquela Família: Tipos, caricaturas e episódios provincianos', 'Patrício, Ladislau', '2010-10-07', 12, 'https://www.gutenberg.org/ebooks/34039', 'pt', 2716), +(4360, 'Richard Judkins\' Wooing: A Tale of Virginia in the Revolution', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-10-28', 5, 'https://www.gutenberg.org/ebooks/55832', 'en', 2717), +(4361, 'Shorter Bible Plays', 'Benton, Rita', '2014-07-26', 16, 'https://www.gutenberg.org/ebooks/46419', 'en', 2321), +(4362, 'Fishing with a Worm', 'Perry, Bliss', '2005-07-27', 14, 'https://www.gutenberg.org/ebooks/16369', 'en', 1945), +(4363, 'In het rijk van Siameezen en Maleiers', 'Morgenthaler, Hans', '2013-06-06', 10, 'https://www.gutenberg.org/ebooks/42885', 'nl', 2718), +(4364, 'Wife in Name Only', 'Brame, Charlotte M.', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/11970', 'en', 61), +(4365, 'The Doctor\'s Dilemma: Preface on Doctors', 'Shaw, Bernard', '2004-02-01', 55, 'https://www.gutenberg.org/ebooks/5069', 'en', 2719), +(4366, 'Traced and Tracked; Or, Memoirs of a City Detective', 'M\'Govan, James', '2019-01-17', 13, 'https://www.gutenberg.org/ebooks/58711', 'en', 2720), +(4367, 'The Rolliad, in Two Parts\nProbationary Odes for the Laureatship & Political Eclogues', 'Laurence, French', '2012-05-19', 13, 'https://www.gutenberg.org/ebooks/39726', 'en', 2721), +(4368, '文明小史', 'Li, Boyuan', '2008-05-07', 28, 'https://www.gutenberg.org/ebooks/25379', 'zh', 1003), +(4369, 'The Outdoor Girls at Rainbow Lake; Or, The Stirring Cruise of the Motor Boat Gem', 'Hope, Laura Lee', '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/4987', 'en', 2722), +(4370, 'Personal Memoirs of P. H. Sheridan, Volume 1, Part 2', 'Sheridan, Philip Henry', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5855', 'en', 2723), +(4371, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 736, February 2, 1878', 'Various', '2018-08-24', 1, 'https://www.gutenberg.org/ebooks/57759', 'en', 18), +(4372, 'Something of Men I Have Known\nWith Some Papers of a General Nature, Political, Historical, and Retrospective', 'Stevenson, Adlai E. (Adlai Ewing)', '2006-11-09', 8, 'https://www.gutenberg.org/ebooks/19745', 'en', 414), +(4373, 'South Africa and the Transvaal War, Vol. 2 (of 8)\r\nFrom the Commencement of the War to the Battle of Colenso, 15th Dec. 1899', 'Creswicke, Louis', '2008-08-06', 25, 'https://www.gutenberg.org/ebooks/26198', 'en', 2724), +(4374, 'Rejected of Men: A Story of To-day', 'Pyle, Howard', '2014-09-11', 35, 'https://www.gutenberg.org/ebooks/46841', 'en', 1397), +(4375, 'The Bible, Douay-Rheims, Book 12: 4 Kings\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8312', 'en', 2725), +(4376, 'The Changeling', 'Besant, Walter', '2015-05-23', 18, 'https://www.gutenberg.org/ebooks/49035', 'en', 2726), +(4377, 'Sweet Tooth', 'Young, Robert F.', '2016-01-14', 28, 'https://www.gutenberg.org/ebooks/50924', 'en', 424), +(4378, 'The Rise and Progress of Palaeontology\r\nEssay #2 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 12, 'https://www.gutenberg.org/ebooks/2628', 'en', 814), +(4379, 'A Renaissance Courtesy-book: Galateo of Manners & Behaviours', 'Della Casa, Giovanni', '2015-01-16', 28, 'https://www.gutenberg.org/ebooks/47993', 'en', 2727), +(4380, 'Le capitaine Pamphile', 'Dumas, Alexandre', '2006-06-26', 16, 'https://www.gutenberg.org/ebooks/18697', 'fr', 323), +(4381, 'Arizona Nights', 'White, Stewart Edward', '1996-12-01', 110, 'https://www.gutenberg.org/ebooks/753', 'en', 2728), +(4382, 'Undertones', 'Cawein, Madison Julius', '2010-04-07', 8, 'https://www.gutenberg.org/ebooks/31913', 'en', 178), +(4383, 'The Devil\'s Asteroid', 'Wellman, Manly Wade', '2007-09-08', 48, 'https://www.gutenberg.org/ebooks/22538', 'en', 26), +(4384, 'Junior', 'Abernathy, Robert', '2015-08-28', 53, 'https://www.gutenberg.org/ebooks/49809', 'en', 179), +(4385, 'Electra', 'Pérez Galdós, Benito', '2009-02-04', 34, 'https://www.gutenberg.org/ebooks/28002', 'es', 2729), +(4386, 'Napoleon\'s Appeal to the British Nation, on His Treatment at Saint Helena', 'Napoleon I, Emperor of the French', '2015-10-03', 20, 'https://www.gutenberg.org/ebooks/50118', 'en', 2362), +(4387, 'Victor, ou L\'enfant de la forêt', 'Ducray-Duminil, M. (François Guillaume)', '2009-01-23', 13, 'https://www.gutenberg.org/ebooks/27876', 'fr', 168), +(4388, 'You Never Know Your Luck; being the story of a matrimonial deserter. Complete', 'Parker, Gilbert', '2004-11-19', 18, 'https://www.gutenberg.org/ebooks/6288', 'en', 332), +(4389, 'La Caravana Pasa\nObras Completas Vol. I', 'Darío, Rubén', '2018-11-29', 26, 'https://www.gutenberg.org/ebooks/58375', 'es', 2730), +(4390, 'A Plea for Old Cap Collier', 'Cobb, Irvin S. (Irvin Shrewsbury)', '1999-09-01', 16, 'https://www.gutenberg.org/ebooks/1891', 'en', 2731), +(4391, 'The Outdoor Chums After Big Game; Or, Perilous Adventures in the Wilderness', 'Allen, Quincy', '2005-02-27', 15, 'https://www.gutenberg.org/ebooks/15188', 'en', 1120), +(4392, 'Speciation and Evolution of the Pygmy Mice, Genus Baiomys', 'Packard, Robert L. (Robert Lewis)', '2011-12-13', 7, 'https://www.gutenberg.org/ebooks/38290', 'en', 1214), +(4393, 'Animal Sanctuaries in Labrador\r\nAn Address Presented by Lt.-Colonel William Wood, F.R.S.C. before the Second Annual Meeting of the Commission of Conservation at Quebec, January, 1911', 'Wood, William', '2005-02-01', 28, 'https://www.gutenberg.org/ebooks/14866', 'en', 2732), +(4394, 'Reasonableness of Catholic Ceremonies and Practices', 'Burke, John J. (John James)', '2010-09-09', 12, 'https://www.gutenberg.org/ebooks/33678', 'en', 2733), +(4395, 'Memoirs of the Life and Labours of the Rev. Samuel Marsden, of Paramatta, Senior Chaplain of New South Wales; and of His Early Connexion with the Missions to New Zealand and Tahiti', 'Marsden, Samuel', '2012-11-02', 27, 'https://www.gutenberg.org/ebooks/41258', 'en', 2734), +(4396, 'The Sea: Its Stirring Story of Adventure, Peril, & Heroism. Volume 2', 'Whymper, Frederick', '2012-04-01', 71, 'https://www.gutenberg.org/ebooks/39342', 'en', 2735), +(4397, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 341, November 15, 1828', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11528', 'en', 133), +(4398, 'Visits to Fields of Battle, in England, of the Fifteenth Century\r\nto which are added, some miscellaneous tracts and papers upon archæological subjects', 'Brooke, Richard', '2018-10-21', 19, 'https://www.gutenberg.org/ebooks/58147', 'en', 2736), +(4399, 'Historia Calamitatum', 'Abelard, Peter', '2004-12-06', 89, 'https://www.gutenberg.org/ebooks/14268', 'en', 2737), +(4400, 'Christian Mystery: A Chinese Tale, Found in the Portfolio of a Portuguese Friar', 'Anonymous', '2012-10-08', 20, 'https://www.gutenberg.org/ebooks/40984', 'en', 1759), +(4401, 'Angels of the Battlefield\r\nA History of the Labors of the Catholic Sisterhoods in the Late Civil War', 'Barton, George', '2018-09-19', 30, 'https://www.gutenberg.org/ebooks/57933', 'en', 2738), +(4402, 'Points of Humour, Part 2 (of 2)', NULL, '2013-12-26', 4, 'https://www.gutenberg.org/ebooks/44518', 'en', 311), +(4403, 'Poppy: The Story of a South African Girl', 'Stockley, Cynthia', '2011-05-18', 111, 'https://www.gutenberg.org/ebooks/36138', 'en', 2739), +(4404, 'Manual of References and Exercises in Economics for Use with Volume 2.\r\nModern Economic Problems', 'Fetter, Frank A. (Frank Albert)', '2013-01-16', 26, 'https://www.gutenberg.org/ebooks/41856', 'en', 2740), +(4405, 'One Year at the Russian Court: 1904-1905', 'Maud, Renée Gaudin de Villaine', '2019-03-19', 37, 'https://www.gutenberg.org/ebooks/59095', 'en', 1959), +(4406, 'Friendship', 'Black, Hugh', '2007-03-20', 12, 'https://www.gutenberg.org/ebooks/20861', 'en', 2215), +(4407, 'For the Right', 'Franzos, Karl Emil', '2011-07-30', 16, 'https://www.gutenberg.org/ebooks/36904', 'en', 1949), +(4408, 'Dorothy, and Other Italian Stories', 'Woolson, Constance Fenimore', '2012-03-16', 14, 'https://www.gutenberg.org/ebooks/39170', 'en', 2741), +(4409, 'Earth and Sky Every Child Should Know\nEasy studies of the earth and the stars for any time and place', 'Rogers, Julia Ellen', '2010-05-30', 30, 'https://www.gutenberg.org/ebooks/32598', 'en', 2742), +(4410, 'The Life of St. Teresa of Jesus, of the Order of Our Lady of Carmel', 'Teresa, of Avila, Saint', '2005-05-01', 112, 'https://www.gutenberg.org/ebooks/8120', 'en', 2743), +(4411, 'Anno Domini 2000; or, Woman\'s Destiny', 'Vogel, Julius, Sir', '2015-06-14', 11, 'https://www.gutenberg.org/ebooks/49207', 'en', 2744), +(4412, 'Twenty-Five Village Sermons', 'Kingsley, Charles', '2005-04-01', 30, 'https://www.gutenberg.org/ebooks/7954', 'en', 2745), +(4413, 'Art and Heart', 'Wilcox, Ella Wheeler', '2006-10-20', 25, 'https://www.gutenberg.org/ebooks/19577', 'en', 8), +(4414, 'The Horse in History', 'Tozer, Basil', '2017-10-01', 9, 'https://www.gutenberg.org/ebooks/55658', 'en', 2746), +(4415, 'Recueil des exemples de la malice des femmes, et des malheurs venus à leur occasion', 'Anonymous', '2008-11-16', 61, 'https://www.gutenberg.org/ebooks/27278', 'fr', 2747), +(4416, 'First Footsteps in East Africa', 'Burton, Richard Francis, Sir', '2004-11-01', 111, 'https://www.gutenberg.org/ebooks/6886', 'en', 2748), +(4417, 'The Further Adventures of Robinson Crusoe', 'Defoe, Daniel', '1996-06-01', 274, 'https://www.gutenberg.org/ebooks/561', 'en', 2588), +(4418, 'Introduction to the Old Testament', 'McFadyen, John Edgar', '2004-12-01', 28, 'https://www.gutenberg.org/ebooks/7168', 'en', 2749), +(4419, 'The Practice of the Presence of God the Best Rule of a Holy Life', 'Lawrence, of the Resurrection, Brother', '2004-10-26', 119, 'https://www.gutenberg.org/ebooks/13871', 'en', 2750), +(4420, 'Conséquences du système de cour établi sous François 1er\nPremière livraison contenant l\'histoire politique des\ngrands offices de la maison et couronne de France, des\ndignités de la cour, et particulièrement des marquis, et\ndu système nobiliaire depuis François premier', 'Roederer, P.-L. (Pierre-Louis)', '2009-03-01', 13, 'https://www.gutenberg.org/ebooks/28230', 'fr', 2751), +(4421, 'Captivity', 'Eyles, Leonora', '2005-04-02', 18, 'https://www.gutenberg.org/ebooks/15527', 'en', 61), +(4422, 'A Florida Sketch-Book', 'Torrey, Bradford', '2019-05-26', 51, 'https://www.gutenberg.org/ebooks/59608', 'en', 2752), +(4423, 'The Young Fur Traders', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 64, 'https://www.gutenberg.org/ebooks/21712', 'en', 2753), +(4424, 'Diary of Samuel Pepys — Volume 48: December 1666', 'Pepys, Samuel', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/4170', 'en', 1231), +(4425, 'Minä ja muut: Sakeus Pyöriän kokemuksia', 'Päivärinta, Pietari', '2014-03-29', 16, 'https://www.gutenberg.org/ebooks/45257', 'fi', 456), +(4426, 'Bliss, and Other Stories', 'Mansfield, Katherine', '2013-12-08', 185, 'https://www.gutenberg.org/ebooks/44385', 'en', 2754), +(4427, 'The Abandoned Room', 'Camp, Wadsworth', '2004-01-01', 67, 'https://www.gutenberg.org/ebooks/10869', 'en', 167), +(4428, 'The Story of a Life', 'Ellis, J. Breckenridge (John Breckenridge)', '2011-10-09', 10, 'https://www.gutenberg.org/ebooks/37677', 'en', 2755), +(4429, 'Inferno: Novelleja', 'Lehtimäki, Konrad', '2016-10-21', 16, 'https://www.gutenberg.org/ebooks/53332', 'fi', 175), +(4430, 'Σαικσπήρου Δράματα, Ο Βασιλιάς Ληρ', 'Shakespeare, William', '2010-05-09', 27, 'https://www.gutenberg.org/ebooks/32305', 'el', 2756), +(4431, 'Four Pigeons\nCaptains All, Book 7.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11187', 'en', 72), +(4432, 'Pleasant Talk About Fruits, Flowers and Farming', 'Beecher, Henry Ward', '2018-02-25', 25, 'https://www.gutenberg.org/ebooks/56640', 'en', 2757), +(4433, 'Le temple de Gnide', 'Montesquieu, Charles de Secondat, baron de', '2008-01-12', 17, 'https://www.gutenberg.org/ebooks/24260', 'fr', 2758), +(4434, 'The Way They Lived Then\nSerious Interviews, Strong Women, and Lessons for Life in the Novels of Anthony Trollope', 'Prewitt, Taylor', '2018-08-28', 124, 'https://www.gutenberg.org/ebooks/57792', 'en', 2759), +(4435, 'Hamburgische Dramaturgie', 'Lessing, Gotthold Ephraim', '2003-11-01', 48, 'https://www.gutenberg.org/ebooks/10055', 'de', 489), +(4436, 'The Orchard Secret\nArden Blake Mystery Series #1', 'Garis, Cleo F.', '2012-09-10', 21, 'https://www.gutenberg.org/ebooks/40725', 'en', 2760), +(4437, 'Where the Blue Begins', 'Morley, Christopher', '1998-07-01', 39, 'https://www.gutenberg.org/ebooks/1402', 'en', 580), +(4438, 'Havoc', 'Oppenheim, E. Phillips (Edward Phillips)', '2000-08-01', 18, 'https://www.gutenberg.org/ebooks/2287', 'en', 61), +(4439, 'Astounding Stories, April, 1931', 'Various', '2009-11-11', 284, 'https://www.gutenberg.org/ebooks/30452', 'en', 842), +(4440, 'Further remarks on the policy of lending Bodleian printed books and manuscripts', 'Chandler, Henry W. (Henry William)', '2015-03-22', 13, 'https://www.gutenberg.org/ebooks/48548', 'en', 2761), +(4441, 'A Engomadeira: Novela Vulgar Lisboeta', 'Almada Negreiros, José de', '2007-12-17', 32, 'https://www.gutenberg.org/ebooks/23879', 'pt', 2762), +(4442, 'Eclectic Magazine of Foreign Literature, Science, and Art, June 1885', 'Various', '2017-02-06', 13, 'https://www.gutenberg.org/ebooks/54117', 'en', 883), +(4443, 'Songs from Vagabondia', 'Carman, Bliss', '2006-04-23', 12, 'https://www.gutenberg.org/ebooks/18238', 'en', 8), +(4444, 'The Windy Hill', 'Meigs, Cornelia', '2008-09-05', 28, 'https://www.gutenberg.org/ebooks/26537', 'en', 2763), +(4445, 'The Tale of Peter Rabbit', 'Potter, Beatrix', '2004-06-01', 43, 'https://www.gutenberg.org/ebooks/12702', 'en', 1045), +(4446, 'The Cathedral Builders: The Story of a Great Masonic Guild', 'Scott, Leader', '2013-02-11', 25, 'https://www.gutenberg.org/ebooks/42072', 'en', 2764), +(4447, 'Letters to His Son, 1751\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2002-08-01', 35, 'https://www.gutenberg.org/ebooks/3355', 'en', 740), +(4448, 'Proza', 'Looy, Jacobus van', '2010-03-10', 3, 'https://www.gutenberg.org/ebooks/31580', 'nl', 2765), +(4449, 'The Interlude of Wealth and Health', 'Anonymous', '2005-12-09', 36, 'https://www.gutenberg.org/ebooks/17270', 'en', 1088), +(4450, 'Measure for Measure\nThe Works of William Shakespeare [Cambridge Edition] [9 vols.]', 'Shakespeare, William', '2007-12-12', 41, 'https://www.gutenberg.org/ebooks/23045', 'en', 2766), +(4451, 'Barriers Burned Away', 'Roe, Edward Payson', '2004-10-01', 25, 'https://www.gutenberg.org/ebooks/6627', 'en', 98), +(4452, 'Bird-Lore, Volume I—1899', 'Various', '2014-11-30', 10, 'https://www.gutenberg.org/ebooks/47500', 'en', 490), +(4453, 'Readings in Money and Banking\nSelected and Adapted', 'Phillips, Chester Arthur', '2011-01-30', 21, 'https://www.gutenberg.org/ebooks/35120', 'en', 2767), +(4454, 'The Goody-Naughty Book', 'Rippey, Sarah Cory', '2007-08-01', 28, 'https://www.gutenberg.org/ebooks/22197', 'en', 388), +(4455, 'Comedia llamada Selvagia, Comedia Serafina', 'Villegas, Alonso de', '2016-03-15', 12, 'https://www.gutenberg.org/ebooks/51465', 'es', 206), +(4456, 'Surrey: A Sketch-Book', 'Austin, Robert', '2017-03-09', 8, 'https://www.gutenberg.org/ebooks/54325', 'en', 2768), +(4457, 'Harper\'s Round Table, December 15, 1896', 'Various', '2019-08-17', 143, 'https://www.gutenberg.org/ebooks/60110', 'en', 668), +(4458, 'Discourses on a Sober and Temperate Life\r\nWherein is demonstrated, by his own Example, the Method of Preserving Health to Extreme Old Age', 'Cornaro, Luigi', '2009-12-12', 72, 'https://www.gutenberg.org/ebooks/30660', 'en', 2769), +(4459, 'Die Nutzpflanzen unserer Kolonien und ihre wirtschaftliche Bedeutung für das Mutterland', 'Westermann, Diedrich', '2013-08-03', 11, 'https://www.gutenberg.org/ebooks/43392', 'de', 2770), +(4460, 'The Paston Letters, A.D. 1422-1509. Volume 6 (of 6), Part 1 (Letters, Chronological Table)\r\nNew Complete Library Edition', NULL, '2013-03-03', 16, 'https://www.gutenberg.org/ebooks/42240', 'en', 2771), +(4461, 'Wessex Poems and Other Verses', 'Hardy, Thomas', '2002-04-01', 89, 'https://www.gutenberg.org/ebooks/3167', 'en', 54), +(4462, 'The Caravan Route between Egypt and Syria', 'Ludwig Salvator, Archduke of Austria', '2008-09-26', 20, 'https://www.gutenberg.org/ebooks/26705', 'en', 723), +(4463, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 580, Supplemental Number', 'Various', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/12530', 'en', 133), +(4464, 'Aliaj Tempoj', 'Wharton, Edith', '2006-07-16', 12, 'https://www.gutenberg.org/ebooks/18836', 'eo', 797), +(4465, 'This Freedom', 'Hutchinson, A. S. M. (Arthur Stuart-Menteth)', '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6415', 'en', 675), +(4466, 'Harper\'s Young People, June 28, 1881\nAn Illustrated Weekly', 'Various', '2014-12-21', 4, 'https://www.gutenberg.org/ebooks/47732', 'en', 479), +(4467, 'Flametti: oder vom Dandysmus der Armen', 'Ball, Hugo', '2001-10-01', 23, 'https://www.gutenberg.org/ebooks/2889', 'de', 1661), +(4468, 'Illustration of the Method of Recording Indian Languages\r\nFrom the First Annual Report of the Bureau of Ethnology, Smithsonian Institution', 'Gatschet, Albert S. (Albert Samuel)', '2005-11-11', 36, 'https://www.gutenberg.org/ebooks/17042', 'en', 2772), +(4469, 'The Land of the Boxers; or, China under the Allies', 'Casserly, Gordon', '2015-12-28', 8, 'https://www.gutenberg.org/ebooks/50785', 'en', 2773), +(4470, 'Feats on the Fiord\nThe third book in \"The Playfellow\"', 'Martineau, Harriet', '2007-10-31', 11, 'https://www.gutenberg.org/ebooks/23277', 'en', 2774), +(4471, 'Charity Case', 'Harmon, Jim', '2016-04-04', 23, 'https://www.gutenberg.org/ebooks/51657', 'en', 26), +(4472, 'La Divina Comèdia: Complete\nEnglish title is Dante\'s Divine Comedy, Complete', 'Dante Alighieri', '2005-07-03', 22, 'https://www.gutenberg.org/ebooks/16190', 'fur', 8), +(4473, 'Aus dem Leben eines Taugenichts: Novelle', 'Eichendorff, Joseph, Freiherr von', '2011-02-18', 98, 'https://www.gutenberg.org/ebooks/35312', 'de', 253), +(4474, 'Three in Norway, by Two of Them', 'Clutterbuck, Walter J.', '2011-07-07', 40, 'https://www.gutenberg.org/ebooks/36597', 'en', 2775), +(4475, 'Organic Gardener\'s Composting', 'Solomon, Steve', '2003-08-01', 90, 'https://www.gutenberg.org/ebooks/4342', 'en', 903), +(4476, 'English Pictures Drawn with Pen and Pencil', 'Green, Samuel G. (Samuel Gosnell)', '2014-03-07', 25, 'https://www.gutenberg.org/ebooks/45065', 'en', 776), +(4477, 'My Adventures as a Spy', 'Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron', '2005-04-26', 67, 'https://www.gutenberg.org/ebooks/15715', 'en', 2776), +(4478, 'The Hound of the Baskervilles', 'Doyle, Arthur Conan', '2007-05-22', 23, 'https://www.gutenberg.org/ebooks/21520', 'en', 834), +(4479, 'Aus zwei Welttheilen. Zweiter Band.\nGesammelte Erzählungen', 'Gerstäcker, Friedrich', '2016-09-20', 8, 'https://www.gutenberg.org/ebooks/53100', 'de', 138), +(4480, 'The Lady and Her Horse\r\nBeing Hints Selected from Various Sources and Compiled into a System of Equitation', 'Jenkins, T. A.', '2011-09-16', 11, 'https://www.gutenberg.org/ebooks/37445', 'en', 2777), +(4481, 'Tales and Novels of J. de La Fontaine — Volume 16', 'La Fontaine, Jean de', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/5290', 'en', 506), +(4482, 'Nitrogen Bacteria and Legumes\r\nWith special reference to red clover, cowpeas, soy beans, alfalfa, and sweet clover, on Illinois soils', 'Hopkins, Cyril G. (Cyril George)', '2018-01-31', 16, 'https://www.gutenberg.org/ebooks/56472', 'en', 2778), +(4483, 'La favorita del Mahdi', 'Salgari, Emilio', '2008-04-26', 64, 'https://www.gutenberg.org/ebooks/25180', 'it', 2779), +(4484, 'Patrañas; or, Spanish Stories, Legendary and Traditional', 'Busk, Rachel Harriette', '2014-06-01', 15, 'https://www.gutenberg.org/ebooks/45859', 'en', 388), +(4485, 'The Men of the Moss-Hags\r\nBeing a history of adventure taken from the papers of William Gordon of Earlstoun in Galloway', 'Crockett, S. R. (Samuel Rutherford)', '2010-04-25', 16, 'https://www.gutenberg.org/ebooks/32137', 'en', 2178), +(4486, 'A Bottle in the Smoke: A Tale of Anglo-Indian Life', 'Rae, Janet Milne', '2012-08-16', 9, 'https://www.gutenberg.org/ebooks/40517', 'en', 1736), +(4487, 'Little Novels', 'Collins, Wilkie', '1999-02-01', 40, 'https://www.gutenberg.org/ebooks/1630', 'en', 45), +(4488, '玉壺淸話', 'Wenying, active 11th century', '2007-12-27', 18, 'https://www.gutenberg.org/ebooks/24052', 'zh', 2525), +(4489, 'The Outdoor Chums; Or, The First Tour of the Rod, Gun and Camera Club', 'Allen, Quincy', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10267', 'en', 3), +(4490, 'L\'Anticléricalisme', 'Faguet, Émile', '2013-04-30', 14, 'https://www.gutenberg.org/ebooks/42624', 'fr', 2780), +(4491, 'Human Genome Project, Chromosome Number 03', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3503', 'en', 1385), +(4492, 'The New Testament of our Lord and Savior Jesus Christ.\r\nThe common English version, corrected by the final committee of the American Bible Union.', NULL, '2008-08-19', 54, 'https://www.gutenberg.org/ebooks/26361', 'en', 2781), +(4493, 'The Weaker Vessel\nNight Watches, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12154', 'en', 179), +(4494, 'Flash Evans and the Darkroom Mystery', 'Bell, Frank', '2017-10-07', 14, 'https://www.gutenberg.org/ebooks/55693', 'en', 2594), +(4495, 'A Sailor in Spite of Himself', 'Castlemon, Harry', '2017-05-18', 14, 'https://www.gutenberg.org/ebooks/54741', 'en', 1447), +(4496, 'The Diwan of Abu\'l-Ala', 'Abu al-Ala al-Maarri', '2004-08-02', 76, 'https://www.gutenberg.org/ebooks/13086', 'en', 2782), +(4497, 'Anne of the Island', 'Montgomery, L. M. (Lucy Maud)', '2006-03-08', 1392, 'https://www.gutenberg.org/ebooks/51', 'en', 2783), +(4498, 'Is Shakespeare Dead?', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9039', 'en', 2784), +(4499, 'Arrows of Freethought', 'Foote, G. W. (George William)', '2009-10-06', 18, 'https://www.gutenberg.org/ebooks/30204', 'en', 1191), +(4500, 'Sandwiches', 'Rorer, S. T.', '2009-07-05', 82, 'https://www.gutenberg.org/ebooks/29329', 'en', 2785), +(4501, 'The Marching Morons', 'Kornbluth, C. M. (Cyril M.)', '2016-02-16', 175, 'https://www.gutenberg.org/ebooks/51233', 'en', 26), +(4502, 'My Austrian Love\nThe History of the Adventures of an English Composer in Vienna. Written in the Trenches by Himself', 'Provost, Maxime', '2014-07-14', 14, 'https://www.gutenberg.org/ebooks/46284', 'en', 2786), +(4503, 'Our Government: Local, State, and National: Idaho Edition', 'James, James Alton', '2004-07-20', 16, 'https://www.gutenberg.org/ebooks/12968', 'en', 2787), +(4504, 'The Way of the Strong', 'Cullum, Ridgwell', '2011-04-06', 15, 'https://www.gutenberg.org/ebooks/35776', 'en', 65), +(4505, 'The Rover Boys out West; Or, The Search for a Lost Mine', 'Stratemeyer, Edward', '2004-07-01', 28, 'https://www.gutenberg.org/ebooks/6071', 'en', 2788), +(4506, 'Studies on Homer and the Homeric Age, Vol. 1 of 3\r\nI. Prolegomena II. Achæis; or, the Ethnology of the Greek Races', 'Gladstone, W. E. (William Ewart)', '2014-11-15', 28, 'https://www.gutenberg.org/ebooks/47356', 'en', 2789), +(4507, 'The Second William Penn\nA true account of incidents that happened along the\nold Santa Fe Trail', 'Ryus, W. H. (William Henry)', '2006-02-01', 7, 'https://www.gutenberg.org/ebooks/9805', 'en', 2790), +(4508, 'The Marvelous Land Of Oz', 'Baum, L. Frank (Lyman Frank)', '2005-12-29', 15, 'https://www.gutenberg.org/ebooks/17426', 'en', 2791), +(4509, 'Las Casas: \"The Apostle of the Indies\"', 'Knight, Alice J.', '2007-11-24', 14, 'https://www.gutenberg.org/ebooks/23613', 'en', 2792), +(4510, 'Welsh Folk-Lore\na Collection of the Folk-Tales and Legends of North Wales', 'Owen, Elias', '2006-12-12', 71, 'https://www.gutenberg.org/ebooks/20096', 'en', 2793), +(4511, 'Amour d\'aujourd\'hui', 'Lesueur, Daniel', '2016-11-20', 13, 'https://www.gutenberg.org/ebooks/53564', 'fr', 298), +(4512, 'The Iron Furnace; or, Slavery and Secession', 'Aughey, John H. (John Hill)', '2012-02-13', 20, 'https://www.gutenberg.org/ebooks/38855', 'en', 2268), +(4513, 'Four Afloat: Being the Adventures of the Big Four on the Water', 'Barbour, Ralph Henry', '2011-08-10', 12, 'https://www.gutenberg.org/ebooks/37021', 'en', 2794), +(4514, 'John Lothrop Motley. a memoir — Volume 2', 'Holmes, Oliver Wendell', '2003-12-01', 8, 'https://www.gutenberg.org/ebooks/4726', 'en', 1055), +(4515, 'The Guide of the Desert', 'Aimard, Gustave', '2014-04-15', 17, 'https://www.gutenberg.org/ebooks/45401', 'en', 61), +(4516, 'The Flower of Forgiveness', 'Steel, Flora Annie Webster', '2012-06-13', 15, 'https://www.gutenberg.org/ebooks/39987', 'en', 409), +(4517, 'Les mille et une nuits - Tome premier', NULL, '2005-03-15', 63, 'https://www.gutenberg.org/ebooks/15371', 'fr', 1007), +(4518, 'Las Fábulas de Esopo, Vol. 03', 'Townsend, George Fyler', '2007-04-27', 13, 'https://www.gutenberg.org/ebooks/21144', 'es', 2609), +(4519, 'The Literature of the Old Testament', 'Moore, George Foot', '2012-07-08', 5, 'https://www.gutenberg.org/ebooks/40173', 'en', 2749), +(4520, 'Cyrano de Bergerac', 'Rostand, Edmond', '1998-03-01', 443, 'https://www.gutenberg.org/ebooks/1254', 'en', 2795), +(4521, 'Northwest!', 'Bindloss, Harold', '2011-11-20', 34, 'https://www.gutenberg.org/ebooks/38069', 'en', 2796), +(4522, 'The Guns of Europe', 'Altsheler, Joseph A. (Joseph Alexander)', '2010-08-21', 24, 'https://www.gutenberg.org/ebooks/33481', 'en', 579), +(4523, 'Anything You Can Do ...', 'Garrett, Randall', '2008-01-26', 49, 'https://www.gutenberg.org/ebooks/24436', 'en', 2797), +(4524, 'With Kelly to Chitral', 'Beynon, William George Laurence, Sir', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10603', 'en', 2798), +(4525, 'Memories of Old Montana', 'Price, Con', '2017-11-20', 15, 'https://www.gutenberg.org/ebooks/56016', 'en', 2799), +(4526, 'A Little Freckled Person: A Book of Child Verse', 'Davies, Mary Carolyn', '2010-05-27', 9, 'https://www.gutenberg.org/ebooks/32553', 'en', 859), +(4527, 'American renaissance; a review of domestic architecture', 'Dow, Joy Wheeler', '2019-07-06', 84, 'https://www.gutenberg.org/ebooks/59862', 'en', 2800), +(4528, 'An Analysis of the Lever Escapement', 'Playtner, H. R.', '2007-06-30', 29, 'https://www.gutenberg.org/ebooks/21978', 'en', 2056), +(4529, 'Reincarnations', 'Stephens, James', '2011-08-25', 22, 'https://www.gutenberg.org/ebooks/37213', 'en', 8), +(4530, 'Barkham Burroughs\' Encyclopaedia of Astounding Facts and Useful Information, 1889', 'Burroughs, Barkham', '2004-11-19', 62, 'https://www.gutenberg.org/ebooks/14091', 'en', 2801), +(4531, 'The Judgement of Valhalla', 'Frankau, Gilbert', '2016-12-17', 16, 'https://www.gutenberg.org/ebooks/53756', 'en', 2100), +(4532, 'Cricket', 'Steel, A. G. (Allan Gibson)', '2016-07-31', 15, 'https://www.gutenberg.org/ebooks/52684', 'en', 2802), +(4533, 'Famous Modern Ghost Stories', NULL, '2005-02-22', 591, 'https://www.gutenberg.org/ebooks/15143', 'en', 179), +(4534, 'Will of the Mill', 'Fenn, George Manville', '2007-05-08', 34, 'https://www.gutenberg.org/ebooks/21376', 'en', 2803), +(4535, 'Tales of Men and Ghosts', 'Wharton, Edith', '2003-10-01', 116, 'https://www.gutenberg.org/ebooks/4514', 'en', 1516), +(4536, 'Les belles-de-nuit; ou, les anges de la famille. tome 5', 'Féval, Paul', '2014-05-11', 12, 'https://www.gutenberg.org/ebooks/45633', 'fr', 298), +(4537, 'Renée Mauperin', 'Goncourt, Edmond de', '2008-02-13', 32, 'https://www.gutenberg.org/ebooks/24604', 'en', 607), +(4538, 'Thirty Years a Slave\r\nFrom Bondage to Freedom: The Institution of Slavery as Seen on the Plantation and in the Home of the Planter: Autobiography of Louis Hughes', 'Hughes, Louis', '2003-12-01', 81, 'https://www.gutenberg.org/ebooks/10431', 'en', 2804), +(4539, 'King Alfred\'s Old English Version of St. Augustine\'s Soliloquies\nTurned into Modern English', 'Augustine, Saint, Bishop of Hippo', '2012-07-26', 40, 'https://www.gutenberg.org/ebooks/40341', 'en', 2805), +(4540, 'William the Conqueror', 'Freeman, Edward A. (Edward Augustus)', '1997-10-01', 19, 'https://www.gutenberg.org/ebooks/1066', 'en', 2806), +(4541, 'Il mondo è rotondo: romanzo', 'Panzini, Alfredo', '2012-04-06', 17, 'https://www.gutenberg.org/ebooks/39389', 'it', 1544), +(4542, 'Caxton\'s Book: A Collection of Essays, Poems, Tales, and Sketches.', 'Rhodes, W. H. (William Henry)', '2010-06-10', 29, 'https://www.gutenberg.org/ebooks/32761', 'en', 26), +(4543, 'Principios e questões de philosophia politica (Vol. II)', 'Cândido, António', '2012-11-05', 31, 'https://www.gutenberg.org/ebooks/41293', 'pt', 2807), +(4544, 'Rooman keisareita marmorihahmossa', 'Rydberg, Viktor', '2017-12-22', 23, 'https://www.gutenberg.org/ebooks/56224', 'fi', 2808), +(4545, 'The Last of the Legions and Other Tales of Long Ago', 'Doyle, Arthur Conan', '2008-07-31', 67, 'https://www.gutenberg.org/ebooks/26153', 'en', 2809), +(4546, 'The Cost of Shelter', 'Richards, Ellen H. (Ellen Henrietta)', '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/12366', 'en', 2810), +(4547, 'Piccole anime', 'Serao, Matilde', '2013-03-26', 73, 'https://www.gutenberg.org/ebooks/42416', 'it', 2811), +(4548, 'With Manchesters in the East', 'Hurst, Gerald B. (Gerald Berkeley), Sir', '2009-09-07', 9, 'https://www.gutenberg.org/ebooks/29927', 'en', 2812), +(4549, 'Disturbances of the Heart\r\nDiscussion of the Treatment of the Heart in Its Various Disorders, With a Chapter on Blood Pressure', 'Osborne, Oliver T. (Oliver Thomas)', '2003-02-01', 13, 'https://www.gutenberg.org/ebooks/3731', 'en', 2813), +(4550, 'Word Study and English Grammar\nA Primer of Information about Words, Their Relations and Their Uses', 'Hamilton, Frederick W. (Frederick William)', '2009-09-19', 147, 'https://www.gutenberg.org/ebooks/30036', 'en', 1979), +(4551, 'Lustreise ins Morgenland, Erster Theil (von 2)', 'Tobler, Titus', '2017-04-19', 5, 'https://www.gutenberg.org/ebooks/54573', 'de', 2589), +(4552, 'Le rouge et le noir: chronique du XIXe siècle', 'Stendhal', '1997-01-01', 201, 'https://www.gutenberg.org/ebooks/798', 'fr', 2814), +(4553, 'The Minister\'s Wooing', 'Stowe, Harriet Beecher', '2015-01-13', 39, 'https://www.gutenberg.org/ebooks/47958', 'en', 2815), +(4554, 'Sonety Adama Mickiewicza', 'Mickiewicz, Adam', '2008-10-28', 16, 'https://www.gutenberg.org/ebooks/27081', 'pl', 8), +(4555, 'Cabinet Portrait Gallery of British Worthies. Volume I', 'Anonymous', '2011-03-11', 16, 'https://www.gutenberg.org/ebooks/35544', 'en', 2816), +(4556, 'The Poetical Works of Oliver Wendell Holmes — Volume 04: Songs in Many Keys', 'Holmes, Oliver Wendell', '2004-09-30', 7, 'https://www.gutenberg.org/ebooks/7391', 'en', 178); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(4557, 'The Mentor: Beautiful Buildings of the World, Serial no. 33', 'Ward, Clarence', '2016-01-22', 10, 'https://www.gutenberg.org/ebooks/51001', 'en', 1352), +(4558, 'Bob Hampton of Placer', 'Parrish, Randall', '2006-01-27', 27, 'https://www.gutenberg.org/ebooks/17614', 'en', 315), +(4559, 'The Collaborators\n1896', 'Hichens, Robert', '2007-11-08', 12, 'https://www.gutenberg.org/ebooks/23421', 'en', 179), +(4560, 'A Digit of the Moon: A Hindoo Love Story', 'Bain, F. W. (Francis William)', '2015-05-09', 17, 'https://www.gutenberg.org/ebooks/48910', 'en', 580), +(4561, 'Aimer quand même', 'La Brète, Jean de', '2010-11-29', 14, 'https://www.gutenberg.org/ebooks/34496', 'fr', 61), +(4562, 'The Right of Way — Volume 01', 'Parker, Gilbert', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6243', 'en', 1219), +(4563, 'Chronique du crime et de l\'innocence, tome 2/8\r\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2014-10-21', 23, 'https://www.gutenberg.org/ebooks/47164', 'fr', 2054), +(4564, 'A brief narrative of the Fourth Tennessee Cavalry Regiment, Wheeler\'s Corps, Army of Tennessee', 'Guild, George B.', '2015-06-19', 9, 'https://www.gutenberg.org/ebooks/49238', 'en', 2817), +(4565, 'Alexander Crummell: An Apostle of Negro Culture\nThe American Negro Academy. Occasional Papers No. 20', 'Ferris, William Henry', '2010-02-18', 13, 'https://www.gutenberg.org/ebooks/31322', 'en', 2818), +(4566, 'Cesar Cascabel, Deel 2\nOver het IJs en door de Steppe', 'Verne, Jules', '2008-08-23', 6, 'https://www.gutenberg.org/ebooks/26395', 'nl', 98), +(4567, 'Autobiography of Seventy Years, Vol. 1-2', 'Hoar, George Frisbie', '2006-10-15', 12, 'https://www.gutenberg.org/ebooks/19548', 'en', 2819), +(4568, 'Szerelem bolondjai', 'Jókai, Mór', '2017-10-02', 2, 'https://www.gutenberg.org/ebooks/55667', 'hu', 234), +(4569, 'Common Sense, How to Exercise It', 'Yoritomo-Tashi', '2004-08-01', 38, 'https://www.gutenberg.org/ebooks/13072', 'en', 740), +(4570, 'Maan puoleen: Runoja', 'Siljo, Juhani', '2008-11-12', 5, 'https://www.gutenberg.org/ebooks/27247', 'fi', 1171), +(4571, 'A Bundle of Letters', 'James, Henry', '2000-12-01', 48, 'https://www.gutenberg.org/ebooks/2425', 'en', 2255), +(4572, 'The Adventures of a Modest Man', 'Chambers, Robert W. (Robert William)', '2013-09-12', 16, 'https://www.gutenberg.org/ebooks/43702', 'en', 2820), +(4573, 'King of the Jews: A story of Christ\'s last days on Earth', 'Stead, W. T. (William Thomas)', '2007-09-23', 14, 'https://www.gutenberg.org/ebooks/22735', 'en', 2821), +(4574, 'More Translations from the Chinese', NULL, '2005-08-10', 71, 'https://www.gutenberg.org/ebooks/16500', 'en', 2822), +(4575, 'Die Regentrude', 'Storm, Theodor', '2005-09-01', 45, 'https://www.gutenberg.org/ebooks/8923', 'de', 900), +(4576, 'Neid', 'Wildenbruch, Ernst von', '2014-07-14', 12, 'https://www.gutenberg.org/ebooks/46270', 'de', 253), +(4577, 'The Prince and the Pauper, Part 4.', 'Twain, Mark', '2004-07-03', 10, 'https://www.gutenberg.org/ebooks/7157', 'en', 98), +(4578, 'The Second String', 'Gould, Nat', '2011-04-06', 9, 'https://www.gutenberg.org/ebooks/35782', 'en', 792), +(4579, 'The Code of Honor\r\nOr, Rules for the Government of Principals and Seconds in Duelling', 'Wilson, John Lyde', '2004-07-01', 65, 'https://www.gutenberg.org/ebooks/6085', 'en', 2823), +(4580, 'A Gentleman Player; His Adventures on a Secret Mission for Queen Elizabeth', 'Stephens, Robert Neilson', '2010-12-14', 614, 'https://www.gutenberg.org/ebooks/34650', 'en', 98), +(4581, 'Reynolds', 'Davies, Randall', '2015-10-26', 24, 'https://www.gutenberg.org/ebooks/50315', 'en', 1403), +(4582, 'Lo assedio di Roma', 'Guerrazzi, Francesco Domenico', '2006-12-09', 38, 'https://www.gutenberg.org/ebooks/20062', 'it', 2824), +(4583, 'The American Bee Journal, Volume VI, Number 3, September 1870', 'Various', '2018-10-27', 5, 'https://www.gutenberg.org/ebooks/58178', 'en', 2825), +(4584, 'El doncel de don Enrique el doliente, Tomo IV (de 4)\nHistoria caballeresca del siglo quince', 'Larra, Mariano José de', '2016-11-26', 7, 'https://www.gutenberg.org/ebooks/53590', 'es', 2826), +(4585, 'The Magician', 'Maugham, W. Somerset (William Somerset)', '2004-12-04', 133, 'https://www.gutenberg.org/ebooks/14257', 'en', 2827), +(4586, 'Report on the Radiolaria Collected by H.M.S. Challenger During the Years 1873-1876, Plates\nReport on the Scientific Results of the Voyage of H.M.S. Challenger During the Years 1873-76, Vol. XVIII', 'Haeckel, Ernst', '2013-12-28', 13, 'https://www.gutenberg.org/ebooks/44527', 'en', 922), +(4587, 'The Historical Romances of Georg Ebers', 'Ebers, Georg', '2004-11-15', 21, 'https://www.gutenberg.org/ebooks/5600', 'en', 98), +(4588, 'Trevethlan: A Cornish Story. Volume 2 (of 3)', 'Watson, William Davy', '2011-05-14', 8, 'https://www.gutenberg.org/ebooks/36107', 'en', 166), +(4589, 'A Cathedral Singer', 'Allen, James Lane', '2005-03-16', 11, 'https://www.gutenberg.org/ebooks/15385', 'en', 2828), +(4590, 'History of the Expedition Under the Command of Captains Lewis and Clark, Vol. II\r\nTo the Sources of the Missouri, Thence Across the Rocky Mountains and Down the River Columbia to the Pacific Ocean.\r\nPerformed During the Years 1804-5-6.', 'Clark, William', '2016-06-30', 30, 'https://www.gutenberg.org/ebooks/52442', 'en', 2829), +(4591, 'How to Produce Amateur Plays: A Practical Manual', 'Clark, Barrett H. (Barrett Harper)', '2012-06-11', 14, 'https://www.gutenberg.org/ebooks/39973', 'en', 2830), +(4592, 'Old Tavern Signs: An Excursion in the History of Hospitality', 'Endell, Fritz August Gottfried', '2013-01-18', 20, 'https://www.gutenberg.org/ebooks/41869', 'en', 2831), +(4593, 'Modern Geography', 'Newbigin, Marion I. (Marion Isabel)', '2012-07-10', 28, 'https://www.gutenberg.org/ebooks/40187', 'en', 2832), +(4594, 'The Broken Gate: A Novel', 'Hough, Emerson', '2010-08-20', 24, 'https://www.gutenberg.org/ebooks/33475', 'en', 2833), +(4595, 'The Living Mummy', 'Pratt, Ambrose', '2019-02-23', 37, 'https://www.gutenberg.org/ebooks/58944', 'en', 461), +(4596, 'Chats on Violoncellos', 'Racster, Olga', '2018-05-10', 4, 'https://www.gutenberg.org/ebooks/57130', 'en', 2834), +(4597, 'A Ramble of Six Thousand Miles through the United States of America', 'Ferrall, S. A. (Simon Ansley)', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11725', 'en', 1110), +(4598, 'Betty Vivian: A Story of Haddo Court School', 'Meade, L. T.', '2008-05-18', 27, 'https://www.gutenberg.org/ebooks/25510', 'en', 62), +(4599, 'Newfoundland Verse', 'Pratt, E. J. (Edwin John)', '2019-07-10', 57, 'https://www.gutenberg.org/ebooks/59896', 'en', 28), +(4600, 'Encyclopaedia Britannica, 11th Edition, \"Jevons, Stanley\" to \"Joint\"\r\nVolume 15, Slice 4', 'Various', '2012-10-14', 22, 'https://www.gutenberg.org/ebooks/41055', 'en', 1081), +(4601, 'Le Guaranis', 'Aimard, Gustave', '2014-01-20', 13, 'https://www.gutenberg.org/ebooks/44715', 'fr', 2835), +(4602, 'The Odes and Carmen Saeculare of Horace', 'Horace', '2004-04-01', 71, 'https://www.gutenberg.org/ebooks/5432', 'en', 2836), +(4603, 'The Fifth Battalion Highland Light Infantry in the War 1914-1918', 'Great Britain. Army. Highland Light Infantry. Battalion, 5th', '2007-01-02', 16, 'https://www.gutenberg.org/ebooks/20250', 'en', 2837), +(4604, 'The History of the Remarkable Life of John Sheppard\r\nContaining a Particular Account of His Many Robberies and Escapes', 'Defoe, Daniel', '2004-11-16', 60, 'https://www.gutenberg.org/ebooks/14065', 'en', 2838), +(4605, 'L\'uomo delinquente\r\nin rapporto all\'antropologia, alla giurisprudenza ed alla psichiatria (Cause e rimedi)', 'Lombroso, Cesare', '2019-04-17', 64, 'https://www.gutenberg.org/ebooks/59298', 'it', 2839), +(4606, 'You Know Me Al: A Busher\'s Letters', NULL, '2016-07-29', 57, 'https://www.gutenberg.org/ebooks/52670', 'en', 2840), +(4607, 'Son Philip', 'Fenn, George Manville', '2007-05-08', 16, 'https://www.gutenberg.org/ebooks/21382', 'en', 2841), +(4608, 'The Secret of Lonesome Cove', 'Adams, Samuel Hopkins', '2011-06-05', 24, 'https://www.gutenberg.org/ebooks/36335', 'en', 128), +(4609, 'Spirits Do Return', 'White, Ida Belle', '2018-06-10', 14, 'https://www.gutenberg.org/ebooks/57302', 'en', 1425), +(4610, 'Daddy Takes Us to the Garden\nThe Daddy Series for Little Folks', 'Garis, Howard Roger', '2005-02-01', 45, 'https://www.gutenberg.org/ebooks/14859', 'en', 2842), +(4611, 'Alida; or, Miscellaneous Sketches of Incidents During the Late American War.\r\nFounded on Fact', 'Comfield, Amelia Stratton', '2010-09-06', 15, 'https://www.gutenberg.org/ebooks/33647', 'en', 2843), +(4612, 'The Description of Wales', 'Giraldus, Cambrensis', '1997-11-01', 41, 'https://www.gutenberg.org/ebooks/1092', 'en', 2844), +(4613, 'Three Thousand Dollars', 'Green, Anna Katharine', '2010-06-13', 31, 'https://www.gutenberg.org/ebooks/32795', 'en', 1660), +(4614, 'The History of Cuba, vol. 5', 'Johnson, Willis Fletcher', '2012-11-02', 12, 'https://www.gutenberg.org/ebooks/41267', 'en', 1441), +(4615, 'Out of Doors—California and Oregon', 'Graves, J. A. (Jackson Alpheus)', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11517', 'en', 2845), +(4616, 'Leben und Schicksale des Katers Rosaurus\noder die kleine Prinzessin und ihre Katze', 'Winter, Amalie', '2008-06-07', 15, 'https://www.gutenberg.org/ebooks/25722', 'de', 1430), +(4617, 'Working North from Patagonia\r\nBeing the Narrative of a Journey, Earned on the Way, Through Southern and Eastern South America', 'Franck, Harry Alverson', '2017-08-30', 20, 'https://www.gutenberg.org/ebooks/55455', 'en', 227), +(4618, 'Punch, or the London Charivari, Volume 99, August 23, 1890', 'Various', '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12392', 'en', 134), +(4619, 'My Impressions of America', 'Asquith, Margot', '2010-01-28', 6, 'https://www.gutenberg.org/ebooks/31110', 'en', 1110), +(4620, 'Memoirs of General William T. Sherman — Volume 2', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 31, 'https://www.gutenberg.org/ebooks/2617', 'en', 1177), +(4621, 'Wood Carvings in English Churches\nI. Stalls and Tabernacle Work. II. Bishop\'s Thrones and Chancel Chairs.', 'Bond, Francis', '2013-08-22', 25, 'https://www.gutenberg.org/ebooks/43530', 'en', 2319), +(4622, 'Relativity: The Special and General Theory', 'Einstein, Albert', '2009-05-01', 22, 'https://www.gutenberg.org/ebooks/28801', 'en', 2846), +(4623, 'A Short Biographical Dictionary of English Literature', 'Cousin, John W. (John William)', '2004-08-21', 60, 'https://www.gutenberg.org/ebooks/13240', 'en', 2847), +(4624, 'The Pope, the Kings and the People\nA History of the Movement to Make the Pope Governor of the World by a Universal Reconstruction of Society from the Issue of the Syllabus to the Close of the Vatican Council', 'Arthur, William', '2017-04-22', 21, 'https://www.gutenberg.org/ebooks/54587', 'en', 2848), +(4625, 'Here and Now Story Book\nTwo- to seven-year-olds', 'Mitchell, Lucy Sprague', '2008-10-28', 53, 'https://www.gutenberg.org/ebooks/27075', 'en', 2849), +(4626, 'Our Little Arabian Cousin', 'McManus, Blanche', '2014-06-20', 14, 'https://www.gutenberg.org/ebooks/46042', 'en', 2850), +(4627, 'If I May', 'Milne, A. A. (Alan Alexander)', '2005-01-01', 74, 'https://www.gutenberg.org/ebooks/7365', 'en', 472), +(4628, 'Romanzo d\'una signorina per bene', 'Vertua Gentile, Anna', '2007-09-04', 22, 'https://www.gutenberg.org/ebooks/22507', 'it', 61), +(4629, 'Niebla (Nivola)', 'Unamuno, Miguel de', '2015-08-31', 229, 'https://www.gutenberg.org/ebooks/49836', 'es', 1384), +(4630, 'Familiar Quotations', NULL, '2005-09-23', 113, 'https://www.gutenberg.org/ebooks/16732', 'en', 1026), +(4631, 'Die Schwägerinnen. Erster Theil.', 'Hanke, Henriette Wilhelmine Arndt', '2015-10-04', 12, 'https://www.gutenberg.org/ebooks/50127', 'de', 138), +(4632, 'Adventures and Enthusiasms', 'Lucas, E. V. (Edward Verrall)', '2010-11-28', 23, 'https://www.gutenberg.org/ebooks/34462', 'en', 20), +(4633, 'Foot-prints of a letter carrier; or, a history of the world\'s correspondece', 'Rees, James', '2014-10-24', 10, 'https://www.gutenberg.org/ebooks/47190', 'en', 2851), +(4634, 'Th\' History o\' Haworth Railway\r\nfra\' th\' beginnin\' to th\' end, wi\' an ackaant o\' th\' oppnin\' serrimony', 'Bill o\'th\' Hoylus End', '2009-01-20', 7, 'https://www.gutenberg.org/ebooks/27849', 'en', 2852), +(4635, 'Bessie on Her Travels', 'Mathews, Joanna H. (Joanna Hooe)', '2016-06-01', 9, 'https://www.gutenberg.org/ebooks/52214', 'en', 2853), +(4636, 'Diary of Samuel Pepys — Complete 1667 N.S.', 'Pepys, Samuel', '2004-10-31', 17, 'https://www.gutenberg.org/ebooks/4184', 'en', 201), +(4637, 'Engraving for Illustration: Historical and Practical Notes', 'Kirkbride, Joseph', '2011-07-17', 12, 'https://www.gutenberg.org/ebooks/36751', 'en', 2854), +(4638, 'The Anatomy of Bridgework', 'Thorpe, William Henry', '2013-12-06', 87, 'https://www.gutenberg.org/ebooks/44371', 'en', 2855), +(4639, 'Plays : Second Series', 'Galsworthy, John', '2004-09-26', 26, 'https://www.gutenberg.org/ebooks/5056', 'en', 115), +(4640, 'Chambers\'s Twentieth Century Dictionary (part 1 of 4: A-D)', NULL, '2011-10-09', 124, 'https://www.gutenberg.org/ebooks/37683', 'en', 1481), +(4641, 'The Sleeping Bard; Or, Visions of the World, Death, and Hell', 'Wynne, Ellis', '2007-02-20', 11, 'https://www.gutenberg.org/ebooks/20634', 'en', 2856), +(4642, 'Suez\r\nDe Aarde en haar Volken, 1865', 'Anonymous', '2004-12-20', 13, 'https://www.gutenberg.org/ebooks/14401', 'nl', 2857), +(4643, 'L\'Illustration, No. 0040, 2 Décembre 1843', 'Various', '2012-05-17', 12, 'https://www.gutenberg.org/ebooks/39719', 'fr', 150), +(4644, 'Toto\'s Merry Winter', 'Richards, Laura Elizabeth Howe', '2012-12-11', 19, 'https://www.gutenberg.org/ebooks/41603', 'en', 2858), +(4645, 'The Atlantic Monthly, Volume 05, No. 27, January, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11173', 'en', 1227), +(4646, '南腔北調集', 'Lu, Xun', '2008-05-06', 22, 'https://www.gutenberg.org/ebooks/25346', 'zh', 2859), +(4647, '警悟鐘', 'Yunyangchichidaoren, active 17th century-18th century', '2008-01-15', 8, 'https://www.gutenberg.org/ebooks/24294', 'zh', 1003), +(4648, 'Le Sabotage', 'Pouget, Emile', '2018-08-25', 10, 'https://www.gutenberg.org/ebooks/57766', 'fr', 2860), +(4649, 'The Illustrated Self-Instructor in Phrenology and Physiology', 'Fowler, L. N. (Lorenzo Niles)', '2010-07-22', 29, 'https://www.gutenberg.org/ebooks/33223', 'en', 830), +(4650, 'Tom Swift and His Motor-Boat; Or, The Rivals of Lake Carlopa', 'Appleton, Victor', '2000-08-01', 78, 'https://www.gutenberg.org/ebooks/2273', 'en', 2794), +(4651, 'An Interloper', 'Peard, Frances Mary', '2013-07-08', 7, 'https://www.gutenberg.org/ebooks/43154', 'en', 607), +(4652, 'Chronicles (1 of 6): The Historie of England (2 of 8)\r\nThe Second Booke Of The Historie Of England', 'Holinshed, Raphael', '2005-08-31', 31, 'https://www.gutenberg.org/ebooks/13624', 'en', 2861), +(4653, 'Three Men in a Boat (To Say Nothing of the Dog)', 'Jerome, Jerome K. (Jerome Klapka)', '1995-08-01', 1614, 'https://www.gutenberg.org/ebooks/308', 'en', 2862), +(4654, 'The House with the Mezzanine and Other Stories', 'Chekhov, Anton Pavlovich', '2008-12-04', 82, 'https://www.gutenberg.org/ebooks/27411', 'en', 179), +(4655, 'October, and Other Poems; with Occasional Verses on the War', 'Bridges, Robert', '2017-07-02', 9, 'https://www.gutenberg.org/ebooks/55031', 'en', 1594), +(4656, 'The Boy Scouts at the Panama-Pacific Exposition', 'Goldfrap, John Henry', '2013-02-13', 15, 'https://www.gutenberg.org/ebooks/42086', 'en', 2863), +(4657, 'A New Subspecies of Slider Turtle (Pseudemys scripta) from Coahuila, México', 'Legler, John M.', '2010-03-09', 4, 'https://www.gutenberg.org/ebooks/31574', 'en', 2864), +(4658, 'The Gods of Mars', 'Burroughs, Edgar Rice', '2005-08-01', 28, 'https://www.gutenberg.org/ebooks/8749', 'en', 1564), +(4659, 'Short Stories for High Schools', NULL, '2015-11-23', 222, 'https://www.gutenberg.org/ebooks/50543', 'en', 112), +(4660, 'Rome in 1860', 'Dicey, Edward', '2005-12-11', 13, 'https://www.gutenberg.org/ebooks/17284', 'en', 2865), +(4661, 'In Brief Authority', 'Anstey, F.', '2009-03-31', 20, 'https://www.gutenberg.org/ebooks/28459', 'en', 61), +(4662, 'The Book of Coniston', 'Collingwood, W. G. (William Gershom)', '2013-10-17', 18, 'https://www.gutenberg.org/ebooks/43968', 'en', 2866), +(4663, 'Rustic Sounds, and Other Studies in Literature and Natural History', 'Darwin, Francis, Sir', '2010-09-27', 36, 'https://www.gutenberg.org/ebooks/34006', 'en', 2867), +(4664, 'Ruskin Relics', 'Collingwood, W. G. (William Gershom)', '2014-07-26', 24, 'https://www.gutenberg.org/ebooks/46426', 'en', 2868), +(4665, 'A Strange Story — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-26', 87, 'https://www.gutenberg.org/ebooks/7701', 'en', 137), +(4666, 'The Rover Boys on the Farm; or, Last Days at Putnam Hall', 'Stratemeyer, Edward', '2007-07-28', 18, 'https://www.gutenberg.org/ebooks/22163', 'en', 2154), +(4667, 'Brannon\'s Picture of The Isle of Wight\nThe Expeditious Traveller\'s Index to Its Prominent Beauties & Objects of Interest. Compiled Especially with Reference to Those Numerous Visitors Who Can Spare but Two or Three Days to Make the Tour of the Island.', 'Brannon, George', '2005-07-24', 5, 'https://www.gutenberg.org/ebooks/16356', 'en', 2869), +(4668, 'Church History (Volumes 1-3)', 'Kurtz, J. H. (Johann Heinrich)', '2016-03-17', 52, 'https://www.gutenberg.org/ebooks/51491', 'en', 958), +(4669, 'The Darling and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 95, 'https://www.gutenberg.org/ebooks/13416', 'en', 934), +(4670, 'C\'est la loi!', 'Du Veuzit, Max', '2008-12-25', 18, 'https://www.gutenberg.org/ebooks/27623', 'fr', 2870), +(4671, 'Punch, or the London Charivari, Vol. 98, 1890.05.10', 'Various', '2009-12-17', 4, 'https://www.gutenberg.org/ebooks/30694', 'en', 134), +(4672, 'The House of the Wolf: A Romance', 'Weyman, Stanley John', '2000-01-01', 21, 'https://www.gutenberg.org/ebooks/2041', 'en', 2871), +(4673, 'Through the Heart of Patagonia', 'Prichard, Hesketh Vernon Hesketh', '2013-07-31', 26, 'https://www.gutenberg.org/ebooks/43366', 'en', 2872), +(4674, 'The Cross and the Shamrock\r\nOr, How To Defend The Faith. An Irish-American Catholic Tale Of Real Life, Descriptive Of The Temptations, Sufferings, Trials, And Triumphs Of The Children Of St. Patrick In The Great Republic Of Washington. A Book For The Entertainment And Special Instructions Of The Catholic Male And Female Servants Of The United States.', 'Quigley, Hugh', '2005-10-28', 22, 'https://www.gutenberg.org/ebooks/16958', 'en', 2873), +(4675, 'Les rues de Paris, Tome Premier', 'Bouniol, Bathild', '2010-03-23', 13, 'https://www.gutenberg.org/ebooks/31746', 'fr', 2874), +(4676, 'Mark Twain\'s Letters — Volume 1 (1853-1866)', 'Twain, Mark', '2004-09-18', 50, 'https://www.gutenberg.org/ebooks/3193', 'en', 2518), +(4677, '813: Arsène Lupinin merkilliset seikkailut', 'Leblanc, Maurice', '2017-07-26', 10, 'https://www.gutenberg.org/ebooks/55203', 'fi', 1286), +(4678, 'A Lonely Flute', 'Shepard, Odell', '2010-11-07', 21, 'https://www.gutenberg.org/ebooks/34234', 'en', 178), +(4679, 'Abraham Lincoln', 'Lowell, James Russell', '1997-05-01', 75, 'https://www.gutenberg.org/ebooks/906', 'en', 1716), +(4680, 'Slechte Tijden', 'Dickens, Charles', '2015-12-26', 30, 'https://www.gutenberg.org/ebooks/50771', 'nl', 378), +(4681, 'The Youth of Jefferson\r\nOr, a Chronicle of College Scrapes at Williamsburg, in Virginia, A.D. 1764', 'Cooke, John Esten', '2007-11-01', 9, 'https://www.gutenberg.org/ebooks/23283', 'en', 2875), +(4682, 'Publisher\'s Advertising (1872)', NULL, '2007-08-17', 14, 'https://www.gutenberg.org/ebooks/22351', 'en', 2876), +(4683, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 4: Babylon\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 31, 'https://www.gutenberg.org/ebooks/16164', 'en', 2877), +(4684, 'A Guide to the Study of Fishes, Volume 1 (of 2)', 'Jordan, David Starr', '2014-08-18', 32, 'https://www.gutenberg.org/ebooks/46614', 'en', 2878), +(4685, 'A Book of Old Ballads — Volume 3', NULL, '2005-02-01', 11, 'https://www.gutenberg.org/ebooks/7533', 'en', 921), +(4686, 'Boys\' Book of Famous Soldiers', 'McSpadden, J. Walker (Joseph Walker)', '2006-11-24', 20, 'https://www.gutenberg.org/ebooks/19910', 'en', 2879), +(4687, 'The Widow Barnaby. Vol. 3 (of 3)', 'Trollope, Frances Milton', '2011-06-30', 28, 'https://www.gutenberg.org/ebooks/36563', 'en', 45), +(4688, 'Fifty-Two Stories For Girls', NULL, '2008-07-02', 45, 'https://www.gutenberg.org/ebooks/25948', 'en', 195), +(4689, 'Frühlings Erwachen: Eine Kindertragödie', 'Wedekind, Frank', '2014-03-09', 25, 'https://www.gutenberg.org/ebooks/45091', 'de', 1298), +(4690, 'Matthew Calbraith Perry: A Typical American Naval Officer', 'Griffis, William Elliot', '2016-05-09', 13, 'https://www.gutenberg.org/ebooks/52026', 'en', 2880), +(4691, 'Epic and Romance: Essays on Medieval Literature', 'Ker, W. P. (William Paton)', '2007-01-20', 28, 'https://www.gutenberg.org/ebooks/20406', 'en', 2881), +(4692, 'The Transgressors\r\nStory of a Great Sin\r\nA Political Novel of the Twentieth Century', 'Adams, Francis Alexandre', '2005-01-07', 19, 'https://www.gutenberg.org/ebooks/14633', 'en', 1238), +(4693, 'Lord Lyons: A Record of British Diplomacy, Vol. 2 of 2', 'Newton, Thomas Wodehouse Legh, Baron', '2013-11-10', 13, 'https://www.gutenberg.org/ebooks/44143', 'en', 2882), +(4694, 'Patty\'s Butterfly Days', 'Wells, Carolyn', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/5264', 'en', 2883), +(4695, 'The War of Chupas', 'Cieza de León, Pedro de', '2018-02-02', 10, 'https://www.gutenberg.org/ebooks/56486', 'en', 2884), +(4696, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 282, November 10, 1827', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11341', 'en', 133), +(4697, 'Rollo in Scotland', 'Abbott, Jacob', '2008-04-25', 23, 'https://www.gutenberg.org/ebooks/25174', 'en', 2885), +(4698, 'The English Lake District', NULL, '2012-11-21', 10, 'https://www.gutenberg.org/ebooks/41431', 'en', 2886), +(4699, 'Thomas Jefferson', 'Merwin, Henry Childs', '2010-06-28', 46, 'https://www.gutenberg.org/ebooks/33011', 'en', 2887), +(4700, 'Relación historica de los sucesos de la rebelión de José Gabriel Tupac-Amaru en las provincias del Peru, el año de 1780', 'Anonymous', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/10293', 'es', 2888), +(4701, 'The Comedy & Tragedy of the Second Empire\r\nParis Society in the Sixties; Including Letters of Napoleon III., M. Pietri, and Comte de la Chapelle, and Portraits of the Period', 'Legge, Edward', '2018-07-20', 8, 'https://www.gutenberg.org/ebooks/57554', 'en', 2889), +(4702, 'Roughing It, Part 5.', 'Twain, Mark', '2004-07-02', 17, 'https://www.gutenberg.org/ebooks/8586', 'en', 1256), +(4703, 'Memoirs of the Duchesse de Dino (Afterwards Duchesse de Talleyrand et de Sagan), 1831-1835', 'Dino, Dorothée, duchesse de', '2013-03-03', 22, 'https://www.gutenberg.org/ebooks/42249', 'en', 2890), +(4704, 'Observations Upon the Windward Coast of Africa\r\nThe religion, character, customs, &c. of the natives; with a system upon which they may be civilized, and a knowledge attained of the interior of this extraordinary quarter of the globe; and upon the natural and commercial resources of the country; made in the years 1805 and 1806; with an appendix, containing a letter to Lord Howick, on the most simple and effectual means of abolishing the slave trade', 'Corry, Joseph', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12539', 'en', 242), +(4705, 'Isis very much unveiled, being the story of the great Mahatma hoax', 'Garrett, Fydell Edmund', '2019-08-17', 499, 'https://www.gutenberg.org/ebooks/60119', 'en', 2891), +(4706, 'La femme au collier de velours', 'Dumas, Alexandre', '2006-03-16', 11, 'https://www.gutenberg.org/ebooks/18003', 'fr', 2892), +(4707, 'Calvary: A Novel', 'Mirbeau, Octave', '2015-04-24', 11, 'https://www.gutenberg.org/ebooks/48773', 'en', 607), +(4708, 'Orchesography, or, the Art of Dancing\r\nThe Art of Dancing by Characters and Demonstrative Figures', 'Feuillet, Raoul-Auger', '2005-12-01', 132, 'https://www.gutenberg.org/ebooks/9454', 'en', 2893), +(4709, 'South America', 'Koebel, W. H. (William Henry)', '2006-02-27', 17, 'https://www.gutenberg.org/ebooks/17877', 'en', 2894), +(4710, 'A Father of Women, and Other Poems', 'Meynell, Alice', '2009-12-13', 16, 'https://www.gutenberg.org/ebooks/30669', 'en', 8), +(4711, 'Cinq Mars — Volume 6', 'Vigny, Alfred de', '2003-04-01', 17, 'https://www.gutenberg.org/ebooks/3952', 'en', 2895), +(4712, 'Memoirs of the Author of a Vindication of the Rights of Woman', 'Godwin, William', '2005-07-04', 109, 'https://www.gutenberg.org/ebooks/16199', 'en', 2896), +(4713, 'Kristy\'s Rainy Day Picnic', 'Miller, Olive Thorne', '2009-08-21', 16, 'https://www.gutenberg.org/ebooks/29744', 'en', 388), +(4714, 'Symbolic Logic', 'Carroll, Lewis', '2009-05-05', 311, 'https://www.gutenberg.org/ebooks/28696', 'en', 2897), +(4715, 'A Blot in the \'Scutcheon', 'Browning, Robert', '2001-10-01', 21, 'https://www.gutenberg.org/ebooks/2880', 'en', 1088), +(4716, 'The Witch', 'Johnston, Mary', '2016-09-21', 24, 'https://www.gutenberg.org/ebooks/53109', 'en', 2898), +(4717, 'Tales and Novels of J. de La Fontaine — Volume 25', 'La Fontaine, Jean de', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/5299', 'en', 2629), +(4718, 'Dictionnaire complet de l\'argot employé dans les Mystères de Paris', 'Anonymous', '2008-03-18', 33, 'https://www.gutenberg.org/ebooks/24867', 'fr', 2899), +(4719, 'The Chauffeur and the Chaperon', 'Williamson, A. M. (Alice Muriel)', '2007-05-19', 38, 'https://www.gutenberg.org/ebooks/21529', 'en', 2900), +(4720, 'Villa Eden: The Country-House on the Rhine', 'Auerbach, Berthold', '2010-06-19', 16, 'https://www.gutenberg.org/ebooks/32902', 'en', 803), +(4721, 'The Catholic World, Vol. 27, April 1878 to September 1878', 'Various', '2019-05-04', 11, 'https://www.gutenberg.org/ebooks/59433', 'en', 96), +(4722, 'Eve and David', 'Balzac, Honoré de', '2004-08-11', 32, 'https://www.gutenberg.org/ebooks/1639', 'en', 58), +(4723, 'The Catholic World, Vol. 05, April 1867 to September 1867', 'Various', '2017-01-10', 1, 'https://www.gutenberg.org/ebooks/53935', 'en', 96), +(4724, 'A Journey from Prince of Wales\'s Fort in Hudson\'s Bay to the Northern Ocean in the Years 1769, 1770, 1771, 1772\r\nNew Edition with Introduction, Notes, and Illustrations', 'Hearne, Samuel', '2011-12-24', 53, 'https://www.gutenberg.org/ebooks/38404', 'en', 2901), +(4725, 'Lady Lilith', 'McKenna, Stephen', '2014-02-22', 17, 'https://www.gutenberg.org/ebooks/44982', 'en', 2902), +(4726, 'The Idler Magazine, Volume III, June 1893\nAn Illustrated Monthly', 'Various', '2008-04-27', 15, 'https://www.gutenberg.org/ebooks/25189', 'en', 2370), +(4727, 'Theism; being the Baird Lecture of 1876', 'Flint, Robert', '2014-05-31', 14, 'https://www.gutenberg.org/ebooks/45850', 'en', 2903), +(4728, 'The Gracchi Marius and Sulla\nEpochs of Ancient History', 'Beesly, A. H. (Augustus Henry)', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10860', 'en', 2904), +(4729, 'Mary Louise Stands the Test', 'Sampson, Emma Speed', '2019-05-25', 32, 'https://www.gutenberg.org/ebooks/59601', 'en', 2322), +(4730, 'Diary of Samuel Pepys — Volume 56: August 1667', 'Pepys, Samuel', '2004-12-01', 8, 'https://www.gutenberg.org/ebooks/4179', 'en', 478), +(4731, 'Castle Richmond', 'Trollope, Anthony', '2004-06-01', 57, 'https://www.gutenberg.org/ebooks/5897', 'en', 48), +(4732, 'The Odyssey of Homer', 'Homer', '2008-01-13', 231, 'https://www.gutenberg.org/ebooks/24269', 'en', 2905), +(4733, 'Donahoe\'s Magazine, Volume 15, No. 3, March 1886', 'Various', '2012-01-21', 13, 'https://www.gutenberg.org/ebooks/38636', 'en', 18), +(4734, 'Egy játékos, a ki nyer: Regény', 'Jókai, Mór', '2018-02-26', 2, 'https://www.gutenberg.org/ebooks/56649', 'hu', 234), +(4735, 'Jane Allen, Junior', 'Bancroft, Edith', '2004-01-01', 26, 'https://www.gutenberg.org/ebooks/4945', 'en', 2906), +(4736, 'American Indians', 'Starr, Frederick', '2011-04-18', 79, 'https://www.gutenberg.org/ebooks/35915', 'en', 869), +(4737, 'The Blue Ghost Mystery: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-03-10', 129, 'https://www.gutenberg.org/ebooks/31589', 'en', 128), +(4738, 'Leda', 'Huxley, Aldous', '2015-07-20', 75, 'https://www.gutenberg.org/ebooks/49493', 'en', 2907), +(4739, 'The Teesdale Angler', 'Lakeland, R.', '2007-12-15', 7, 'https://www.gutenberg.org/ebooks/23870', 'en', 2908), +(4740, 'Robinson in Australien: Ein Lehr- und Lesebuch für gute Kinder', 'Schoppe, Amalie', '2015-03-21', 17, 'https://www.gutenberg.org/ebooks/48541', 'de', 2909), +(4741, 'Scientific American Supplement, No. 497, July 11, 1885', 'Various', '2006-01-01', 17, 'https://www.gutenberg.org/ebooks/9666', 'en', 210), +(4742, 'Die Last', 'Engel, Georg', '2006-04-22', 11, 'https://www.gutenberg.org/ebooks/18231', 'de', 2910), +(4743, 'Anatole, Vol. 2', 'Gay, Sophie', '2011-01-31', 9, 'https://www.gutenberg.org/ebooks/35129', 'fr', 61), +(4744, 'Storia della Guerra della Independenza degli Stati Uniti di America, vol. 2', 'Botta, Carlo', '2013-05-30', 16, 'https://www.gutenberg.org/ebooks/42847', 'it', 481), +(4745, 'Tratado metódico y práctico de Materia Médica y de Terapéutica, tomo segundo', 'Espanet, Alexis', '2009-08-02', 15, 'https://www.gutenberg.org/ebooks/29576', 'es', 2911), +(4746, 'Peter Parley\'s Visit to London, During the Coronation of Queen Victoria', 'Goodrich, Samuel G. (Samuel Griswold)', '2013-10-22', 9, 'https://www.gutenberg.org/ebooks/43995', 'en', 323), +(4747, 'The Mormon Prophet', 'Dougall, L. (Lily)', '2005-12-11', 17, 'https://www.gutenberg.org/ebooks/17279', 'en', 2912), +(4748, 'An Essay to the Restoring of our Decayed Trade.\nWherein is Described, the Smuglers, Lawyers, and Officers Frauds &c.', 'Trevers, Joseph', '2014-12-01', 13, 'https://www.gutenberg.org/ebooks/47509', 'en', 2913), +(4749, 'In Wildest Africa, Vol. 1', 'Schillings, C. G. (Carl Georg)', '2017-06-16', 12, 'https://www.gutenberg.org/ebooks/54922', 'en', 2914), +(4750, 'Die Deutschen Volksbücher VII: Die Schildbürger - Doktor Faustus', 'Schwab, Gustav', '2019-04-13', 25, 'https://www.gutenberg.org/ebooks/59265', 'de', 841), +(4751, 'The ninth vibration and other stories', 'Beck, L. Adams (Lily Adams)', '1999-08-01', 28, 'https://www.gutenberg.org/ebooks/1853', 'en', 114), +(4752, 'Hieroglyphic Tales', 'Walpole, Horace', '2004-11-20', 36, 'https://www.gutenberg.org/ebooks/14098', 'en', 2634), +(4753, 'Puck of Pook\'s Hill', 'Kipling, Rudyard', '2005-06-03', 111, 'https://www.gutenberg.org/ebooks/15976', 'en', 2915), +(4754, 'The Story of Chautauqua', 'Hurlbut, Jesse Lyman', '2010-06-10', 28, 'https://www.gutenberg.org/ebooks/32768', 'en', 2916), +(4755, 'Famous European Artists', 'Bolton, Sarah Knowles', '2012-04-05', 23, 'https://www.gutenberg.org/ebooks/39380', 'en', 2917), +(4756, 'Up the Hill and Over', 'Mackay, Isabel Ecclestone', '2003-12-01', 9, 'https://www.gutenberg.org/ebooks/10438', 'en', 65), +(4757, 'Fairies I Have Met', 'Stawell, Rodolph, Mrs.', '2011-12-09', 48, 'https://www.gutenberg.org/ebooks/38252', 'en', 1007), +(4758, 'The Crime and the Criminal', 'Marsh, Richard', '2012-07-27', 6, 'https://www.gutenberg.org/ebooks/40348', 'en', 61), +(4759, 'Syrjästäkatsojan tarina', 'Brontë, Charlotte', '2015-01-31', 12, 'https://www.gutenberg.org/ebooks/48125', 'fi', 957), +(4760, 'Little Annie\'s Ramble (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 17, 'https://www.gutenberg.org/ebooks/9202', 'en', 179), +(4761, 'Birds and All Nature, Vol. 5, No. 4, April 1899\r\nIllustrated by Color Photography', 'Various', '2015-01-13', 17, 'https://www.gutenberg.org/ebooks/47951', 'en', 490), +(4762, '南部新書', 'Qian, Yi, jin shi 999', '2008-10-29', 44, 'https://www.gutenberg.org/ebooks/27088', 'zh', 2918), +(4763, 'The Cruise of the Noah\'s Ark', 'Cory, David', '2006-06-22', 3, 'https://www.gutenberg.org/ebooks/18655', 'en', 1235), +(4764, 'The Princess', 'Tennyson, Alfred Tennyson, Baron', '1997-01-01', 382, 'https://www.gutenberg.org/ebooks/791', 'en', 532), +(4765, 'Declaration of Rights and Grievances', 'Stamp Act Congress (1765 : New York, N.Y.)', '2006-11-15', 2, 'https://www.gutenberg.org/ebooks/19787', 'en', 2919), +(4766, 'Goethe and Schiller: An Historical Romance', 'Mühlbach, L. (Luise)', '2014-09-17', 11, 'https://www.gutenberg.org/ebooks/46883', 'en', 2920), +(4767, 'A Far Country — Volume 3', 'Churchill, Winston', '2004-10-17', 9, 'https://www.gutenberg.org/ebooks/3738', 'en', 1221), +(4768, 'Never Come Midnight', 'Gold, H. L. (Horace Leonard)', '2016-04-22', 32, 'https://www.gutenberg.org/ebooks/51834', 'en', 26), +(4769, 'Goethe und Werther: Briefe Goethe\'s, meistens aus seiner Jugendzeit', 'Goethe, Johann Wolfgang von', '2015-05-10', 13, 'https://www.gutenberg.org/ebooks/48919', 'de', 2921), +(4770, 'The Conquest of Bread', 'Kropotkin, Petr Alekseevich, kniaz', '2007-11-09', 496, 'https://www.gutenberg.org/ebooks/23428', 'en', 260), +(4771, 'Books Before Typography\r\nA Primer of Information About the Invention of the Alphabet and the History of Book-Making up to the Invention of Movable Types\r\nTypographic Technical Series for Apprentices #49', 'Hamilton, Frederick W. (Frederick William)', '2009-12-30', 11, 'https://www.gutenberg.org/ebooks/30803', 'en', 2922), +(4772, 'The Poetical Works of Oliver Wendell Holmes — Volume 11\r\nPoems from the Teacups Series', 'Holmes, Oliver Wendell', '2004-09-30', 8, 'https://www.gutenberg.org/ebooks/7398', 'en', 178), +(4773, 'A Place in the Sun', 'Marlowe, Stephen', '2008-10-19', 50, 'https://www.gutenberg.org/ebooks/26966', 'en', 179), +(4774, 'Two Weeks in August', 'Robinson, Frank M.', '2016-01-23', 32, 'https://www.gutenberg.org/ebooks/51008', 'en', 2923), +(4775, 'The Bow, Its History, Manufacture and Use\n\'The Strad\' Library, No. III.', 'Saint-George, Henry', '2009-06-13', 23, 'https://www.gutenberg.org/ebooks/29112', 'en', 2924), +(4776, 'Paradise Regained', 'Milton, John', '1993-03-01', 369, 'https://www.gutenberg.org/ebooks/58', 'en', 1999), +(4777, 'The Irish Penny Journal, Vol. 1 No. 32, February 6, 1841', 'Various', '2017-05-20', 2, 'https://www.gutenberg.org/ebooks/54748', 'en', 81), +(4778, 'The People\'s Common Sense Medical Adviser in Plain English\nor, Medicine Simplified, 54th ed., One Million, Six Hundred\nand Fifty Thousand', 'Pierce, Ray Vaughn', '2006-05-28', 42, 'https://www.gutenberg.org/ebooks/18467', 'en', 2925), +(4779, 'The Poetical Works of Mrs. Leprohon', 'Leprohon, Mrs. (Rosanna Eleanor)', '2004-11-01', 14, 'https://www.gutenberg.org/ebooks/6844', 'en', 2926), +(4780, 'Blackwood\'s Edinburgh Magazine, Volume 67, Number 414, April, 1850', 'Various', '2015-02-20', 15, 'https://www.gutenberg.org/ebooks/48317', 'en', 711), +(4781, 'Essays on Paul Bourget', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9030', 'en', 1765), +(4782, 'Der Traum ein Leben', 'Grillparzer, Franz', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/7996', 'de', 402), +(4783, 'The Ladies Book of Useful Information\nCompiled from many sources', 'Anonymous', '2008-08-20', 297, 'https://www.gutenberg.org/ebooks/26368', 'en', 2927), +(4784, 'Louis Agassiz: His Life and Correspondence', 'Agassiz, Louis', '2004-07-01', 25, 'https://www.gutenberg.org/ebooks/6078', 'en', 2928), +(4785, 'Niels Holgersson\'s Wonderbare Reis', 'Lagerlöf, Selma', '2009-07-05', 41, 'https://www.gutenberg.org/ebooks/29320', 'nl', 153), +(4786, 'The Dock and the Scaffold\r\nThe Manchester Tragedy and the Cruise of the Jacknell', 'Sullivan, T. D. (Timothy Daniel)', '2004-07-20', 15, 'https://www.gutenberg.org/ebooks/12961', 'en', 2929), +(4787, 'The Pansy Magazine, June 1886', 'Various', '2014-04-16', 14, 'https://www.gutenberg.org/ebooks/45408', 'en', 522), +(4788, 'Winnetou, the Apache Knight', 'Taggart, Marion Ames', '2018-03-23', 144, 'https://www.gutenberg.org/ebooks/56823', 'en', 2930), +(4789, 'Christmas-Tide', 'Dickens, Charles', '2013-01-21', 14, 'https://www.gutenberg.org/ebooks/41894', 'en', 949), +(4790, 'Atalanta in Calydon', 'Swinburne, Algernon Charles', '2005-03-16', 26, 'https://www.gutenberg.org/ebooks/15378', 'en', 1298), +(4791, 'Original Plays [First Series]', 'Gilbert, W. S. (William Schwenck)', '2019-03-14', 15, 'https://www.gutenberg.org/ebooks/59057', 'en', 1088), +(4792, 'The Crystal Palace and Other Legends', 'Frary, Marie Harriette', '2018-10-28', 20, 'https://www.gutenberg.org/ebooks/58185', 'en', 638), +(4793, 'Emancipation and Emigration\r\nA Plan to Transfer the Freedmen of the South to the Government Lands of the West by The Principia Club', 'Anonymous', '2012-10-05', 15, 'https://www.gutenberg.org/ebooks/40946', 'en', 2931), +(4794, 'Piet Uijs, of lijden en strijd der voortrekkers in Natal', 'Van der Post, C. W. H. (Christiaan Willem Hendrik)', '2011-08-10', 8, 'https://www.gutenberg.org/ebooks/37028', 'nl', 2932), +(4795, 'A Son of the Sun', 'London, Jack', '2007-06-29', 61, 'https://www.gutenberg.org/ebooks/21971', 'en', 2933), +(4796, 'Punch, or the London Charivari, Vol. 98, June 21 1890', 'Various', '2010-08-22', 12, 'https://www.gutenberg.org/ebooks/33488', 'en', 134), +(4797, 'Out of the Air', 'Gillmore, Inez Haynes', '2011-11-19', 15, 'https://www.gutenberg.org/ebooks/38060', 'en', 2934), +(4798, 'The Story of Magellan and The Discovery of the Philippines', 'Butterworth, Hezekiah', '2011-10-21', 42, 'https://www.gutenberg.org/ebooks/37814', 'en', 2935), +(4799, 'German Atrocities: An Official Investigation', 'Morgan, J. H. (John Hartman)', '2016-07-30', 13, 'https://www.gutenberg.org/ebooks/52679', 'en', 2936), +(4800, 'The Sporting Dictionary and Rural Repository, Volume 2 (of 2)\r\nOf General Information upon Every Subject Appertaining to the Sports of the Field', 'Taplin, William', '2019-04-17', 13, 'https://www.gutenberg.org/ebooks/59291', 'en', 2937), +(4801, 'Hatsu: A Story of Egypt', 'Fessenden, Laura Dayton', '2018-11-24', 13, 'https://www.gutenberg.org/ebooks/58343', 'en', 2938), +(4802, 'Frontier Boys in Frisco', 'Roosevelt, Wyn', '2007-01-03', 21, 'https://www.gutenberg.org/ebooks/20259', 'en', 2939), +(4803, 'The Curse of Carne\'s Hold: A Tale of Adventure', 'Henty, G. A. (George Alfred)', '2012-04-04', 25, 'https://www.gutenberg.org/ebooks/39374', 'en', 2940), +(4804, 'Woman As She Should Be; Or, Agnes Wiltshire', 'Herbert, Mary E.', '2005-06-04', 15, 'https://www.gutenberg.org/ebooks/15982', 'en', 1219), +(4805, 'Het zwevende schaakbord', 'Couperus, Louis', '2005-01-31', 12, 'https://www.gutenberg.org/ebooks/14850', 'nl', 61), +(4806, 'The Scarlet Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2009-05-01', 12, 'https://www.gutenberg.org/ebooks/28808', 'en', 724), +(4807, 'Immortal Songs of Camp and Field\r\nThe Story of their Inspiration together with Striking Anecdotes connected with their History', 'Banks, Louis Albert', '2013-08-22', 16, 'https://www.gutenberg.org/ebooks/43539', 'en', 2941), +(4808, 'Eine Teufelsaustreibung, und andere Geschichten', 'Leskov, N. S. (Nikolai Semenovich)', '2016-01-13', 21, 'https://www.gutenberg.org/ebooks/50912', 'de', 1871), +(4809, 'The Moon Pool', 'Merritt, Abraham', '1996-12-01', 173, 'https://www.gutenberg.org/ebooks/765', 'en', 2942), +(4810, 'Our Vanishing Wild Life: Its Extermination and Preservation', 'Hornaday, William T. (William Temple)', '2004-08-22', 67, 'https://www.gutenberg.org/ebooks/13249', 'en', 2943), +(4811, 'Suuren hiljaisuuden miehiä\r\nKokoelma Blaise Pascalin, Ralph Waldo Emersonin, Leo Tolstoin, Maurice Maeterlinckin, Johannes Müllerin ja Hans Larssonin suomennettuja mietekirjoitelmia johdantoineen ja selityksineen', NULL, '2006-11-12', 22, 'https://www.gutenberg.org/ebooks/19773', 'fi', 19), +(4812, 'Glass', 'Dillon, Edward', '2014-09-16', 23, 'https://www.gutenberg.org/ebooks/46877', 'en', 2944), +(4813, 'Punch, or the London Charivari, Vol. 158, June 9, 1920', 'Various', '2010-01-29', 18, 'https://www.gutenberg.org/ebooks/31119', 'en', 134), +(4814, 'The Bible, Douay-Rheims, Book 24: Canticle of Canticles\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8324', 'en', 2945), +(4815, 'Marion Harland\'s Autobiography: The Story of a Long Life', 'Harland, Marion', '2015-05-20', 19, 'https://www.gutenberg.org/ebooks/49003', 'en', 131), +(4816, 'Scenes in the Hawaiian Islands and California', 'Anderson, Mary E. (Mary Evarts)', '2009-02-09', 4, 'https://www.gutenberg.org/ebooks/28034', 'en', 1623), +(4817, 'Heränneitä: Kuvauksia herännäisyyden ajoilta', 'Aho, Juhani', '2014-10-26', 9, 'https://www.gutenberg.org/ebooks/47199', 'fi', 2946), +(4818, 'Un tuteur embarrassé', 'Dombre, Roger', '2009-01-19', 14, 'https://www.gutenberg.org/ebooks/27840', 'fr', 61), +(4819, 'The Wind Before the Dawn', 'Munger, Dell H.', '2008-10-22', 16, 'https://www.gutenberg.org/ebooks/26992', 'en', 2947), +(4820, 'The London Pulpit', 'Ritchie, J. Ewing (James Ewing)', '2010-04-08', 15, 'https://www.gutenberg.org/ebooks/31925', 'en', 2948), +(4821, 'Introduction to Non-Violence', 'Paullin, Theodore', '2006-06-02', 10, 'https://www.gutenberg.org/ebooks/18493', 'en', 2949), +(4822, 'Puck of Pook\'s Hill', 'Kipling, Rudyard', '1996-06-01', 258, 'https://www.gutenberg.org/ebooks/557', 'en', 2915), +(4823, 'The Communistic Societies of the United States\nFrom Personal Visit and Observation', 'Nordhoff, Charles', '2005-05-01', 8, 'https://www.gutenberg.org/ebooks/8116', 'en', 2950), +(4824, 'Il romanzo della guerra nell\'anno 1914', 'Panzini, Alfredo', '2015-06-18', 12, 'https://www.gutenberg.org/ebooks/49231', 'it', 579), +(4825, '\"Over the Top,\" by an American Soldier Who Went\r\nTogether with Tommy\'s Dictionary of the Trenches', 'Empey, Arthur Guy', '2005-04-01', 35, 'https://www.gutenberg.org/ebooks/7962', 'en', 351), +(4826, 'Marigold Garden', 'Greenaway, Kate', '2006-10-14', 71, 'https://www.gutenberg.org/ebooks/19541', 'en', 2951), +(4827, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nAdministrative Files\r\nSelected Records Bearing on the History of the Slave Narratives', 'United States. Work Projects Administration', '2004-10-25', 17, 'https://www.gutenberg.org/ebooks/13847', 'en', 2952), +(4828, 'The Breaking of the Storm, Vol. III.', 'Spielhagen, Friedrich', '2010-12-15', 9, 'https://www.gutenberg.org/ebooks/34659', 'en', 61), +(4829, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 11 (de 12)', 'Castelo Branco, Camilo', '2009-02-27', 12, 'https://www.gutenberg.org/ebooks/28206', 'pt', 410), +(4830, 'Punch, or the London Charivari, Vol. 158, 1920-02-25', 'Various', '2005-08-11', 21, 'https://www.gutenberg.org/ebooks/16509', 'en', 134), +(4831, 'The Matador of the Five Towns and Other Stories', 'Bennett, Arnold', '2004-07-22', 43, 'https://www.gutenberg.org/ebooks/12995', 'en', 409), +(4832, 'Los Merodeadores de Fronteras', 'Aimard, Gustave', '2014-07-14', 32, 'https://www.gutenberg.org/ebooks/46279', 'es', 315), +(4833, 'The Ornithology of Shakespeare\nCritically examined, explained and illustrated', 'Harting, James Edmund', '2013-01-17', 22, 'https://www.gutenberg.org/ebooks/41860', 'en', 2953), +(4834, 'L\'extraordinaire aventure d\'Achmet Pacha Djemaleddine, pirate, amiral, grand d\'Espagne et marquis\navec six autres singulières histoires', 'Farrère, Claude', '2016-11-25', 15, 'https://www.gutenberg.org/ebooks/53599', 'fr', 259), +(4835, 'Index of the Project Gutenberg Works of George William Curtis', 'Curtis, George William', '2018-10-26', 8, 'https://www.gutenberg.org/ebooks/58171', 'en', 198), +(4836, 'The Corporation of London, Its Rights and Privileges', 'Allen, William Ferneley', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/5609', 'en', 2954), +(4837, 'Adventures in Holland and at Waterloo; and Expedition to Portugal', 'Knight, Thomas', '2018-09-14', 8, 'https://www.gutenberg.org/ebooks/57905', 'en', 2955), +(4838, 'Little Wizard Stories of Oz', 'Baum, L. Frank (Lyman Frank)', '2008-05-19', 158, 'https://www.gutenberg.org/ebooks/25519', 'en', 2203), +(4839, 'Romney', 'Hind, C. Lewis (Charles Lewis)', '2011-08-01', 15, 'https://www.gutenberg.org/ebooks/36932', 'en', 2956), +(4840, 'John Nicholson, the Lion of the Punjaub', 'Cholmeley, R. E.', '2007-07-02', 8, 'https://www.gutenberg.org/ebooks/21985', 'en', 2957), +(4841, 'Reize van Maarten Gerritsz. Vries in 1643 naar het Noorden en Oosten van Japan\nvolgens het journaal gehouden door C.J. Coen, op het schip Castricum', 'Vries, Maarten Gerritszoon', '2012-03-14', 23, 'https://www.gutenberg.org/ebooks/39146', 'nl', 2958), +(4842, 'Letters To Eugenia; Or, A Preservative Against Religious Prejudices', 'Holbach, Paul Henri Thiry, baron d\'', '2011-11-22', 10, 'https://www.gutenberg.org/ebooks/38094', 'en', 1759), +(4843, 'Spacehounds of IPC', 'Smith, E. E. (Edward Elmer)', '2007-03-20', 141, 'https://www.gutenberg.org/ebooks/20857', 'en', 26), +(4844, 'The Sealed Valley', 'Footner, Hulbert', '2018-05-12', 17, 'https://www.gutenberg.org/ebooks/57139', 'en', 533), +(4845, 'Richard Lovell Edgeworth: A Selection From His Memoirs', 'Edgeworth, Maria', '2005-10-27', 12, 'https://www.gutenberg.org/ebooks/16951', 'en', 2959), +(4846, 'Cord and Creese', 'De Mille, James', '2005-07-01', 15, 'https://www.gutenberg.org/ebooks/8572', 'en', 167), +(4847, 'Lähimmäisiäni', 'Wilkuna, Kyösti', '2015-08-08', 4, 'https://www.gutenberg.org/ebooks/49655', 'fi', 175), +(4848, 'Satanen muistelmia Pohjanmaalta 1', 'Wacklin, Sara', '2006-08-26', 30, 'https://www.gutenberg.org/ebooks/19125', 'fi', 2960), +(4849, 'The Damnation of Theron Ware', 'Frederic, Harold', '2006-03-08', 178, 'https://www.gutenberg.org/ebooks/133', 'en', 2961), +(4850, 'Homo sum: Romaani', 'Ebers, Georg', '2015-04-25', 14, 'https://www.gutenberg.org/ebooks/48787', 'fi', 2962), +(4851, 'Libro serio', 'Ghislanzoni, Antonio', '2006-03-01', 7, 'https://www.gutenberg.org/ebooks/17883', 'it', 122), +(4852, 'The Sketch-Book of Geoffrey Crayon', 'Irving, Washington', '2000-01-01', 377, 'https://www.gutenberg.org/ebooks/2048', 'en', 2513), +(4853, 'Erik Dorn', 'Hecht, Ben', '2007-08-19', 31, 'https://www.gutenberg.org/ebooks/22358', 'en', 23), +(4854, 'Maman Léo\nLes Habits Noirs Tome V', 'Féval, Paul', '2006-11-26', 54, 'https://www.gutenberg.org/ebooks/19919', 'fr', 61), +(4855, 'The Squirrel Inn', 'Stockton, Frank Richard', '2009-05-02', 21, 'https://www.gutenberg.org/ebooks/28662', 'en', 2963), +(4856, 'William of Malmesbury\'s Chronicle of the Kings of England\nFrom the earliest period to the reign of King Stephen', 'William, of Malmesbury', '2015-12-28', 78, 'https://www.gutenberg.org/ebooks/50778', 'en', 2964), +(4857, 'Personal Recollections of Joan of Arc — Volume 1', 'Twain, Mark', '2004-09-15', 248, 'https://www.gutenberg.org/ebooks/2874', 'en', 2494), +(4858, 'Mr. Punch\'s After-Dinner Stories', NULL, '2010-10-01', 63, 'https://www.gutenberg.org/ebooks/33824', 'en', 2965), +(4859, 'De Twee Broeders: Een Kennemer Legende uit de jaren 1420-1436', 'Hofdijk, W. J. (Willem Jacobszoon)', '2018-12-22', 10, 'https://www.gutenberg.org/ebooks/58515', 'nl', 2788), +(4860, 'In Mesopotamia', 'Nicoll, Maurice', '2008-03-21', 26, 'https://www.gutenberg.org/ebooks/24893', 'en', 2966), +(4861, 'Autobiography of Frank G. Allen, Minister of the Gospel\nand Selections from his Writings', 'Allen, F. G. (Frank Gibbs)', '2008-06-30', 18, 'https://www.gutenberg.org/ebooks/25941', 'en', 2967), +(4862, 'Boris the Bear-Hunter', 'Whishaw, Frederick', '2014-03-09', 24, 'https://www.gutenberg.org/ebooks/45098', 'en', 76), +(4863, 'Legends of the Skyline Drive and the Great Valley of Virginia', 'Walker, Etta Belle', '2010-06-29', 18, 'https://www.gutenberg.org/ebooks/33018', 'en', 2968), +(4864, 'Punch or the London Charivari, Vol. 109, September 7, 1895', 'Various', '2014-02-22', 10, 'https://www.gutenberg.org/ebooks/44976', 'en', 134), +(4865, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 368, May 2, 1829', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11348', 'en', 133), +(4866, 'The Heart of Princess Osra', 'Hope, Anthony', '2012-11-22', 27, 'https://www.gutenberg.org/ebooks/41438', 'en', 323), +(4867, 'On the Wallaby Through Victoria', 'Mordaunt, Elinor', '2016-08-15', 8, 'https://www.gutenberg.org/ebooks/52813', 'en', 2969), +(4868, 'The Rulers of the Mediterranean', 'Davis, Richard Harding', '2012-04-23', 22, 'https://www.gutenberg.org/ebooks/39522', 'en', 2970), +(4869, 'A Compilation of the Messages and Papers of the Presidents. Volume 1, part 2: John Adams', NULL, '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/10894', 'en', 337), +(4870, 'Blackwood\'s Edinburgh Magazine, Vol. 60, No. 374, December, 1846', 'Various', '2013-12-06', 13, 'https://www.gutenberg.org/ebooks/44378', 'en', 274), +(4871, 'Small Talk at Wreyland. Second Series', 'Torr, Cecil', '2019-01-19', 42, 'https://www.gutenberg.org/ebooks/58727', 'en', 1277), +(4872, 'Manners and Conduct in School and Out', 'Anonymous', '2004-12-21', 17, 'https://www.gutenberg.org/ebooks/14408', 'en', 788), +(4873, 'La Tontine', 'Le Sage, Alain René', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/11946', 'en', 2971), +(4874, 'Cynthia Wakeham\'s Money', 'Green, Anna Katharine', '2011-07-17', 11, 'https://www.gutenberg.org/ebooks/36758', 'en', 128), +(4875, 'Personal Memoirs of U. S. Grant, Part 4.', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5863', 'en', 111), +(4876, 'Paris and the Parisians in 1835 (Vol. 2)', 'Trollope, Frances Milton', '2012-05-16', 32, 'https://www.gutenberg.org/ebooks/39710', 'en', 2972), +(4877, 'Gallipoli Diary, Volume 1', 'Hamilton, Ian', '2006-09-19', 66, 'https://www.gutenberg.org/ebooks/19317', 'en', 2223), +(4878, 'De Sobremesa; crónicas, Segunda Parte (de 5)', 'Benavente, Jacinto', '2017-07-03', 14, 'https://www.gutenberg.org/ebooks/55038', 'es', 1384), +(4879, 'In the Arena: Stories of Political Life', 'Tarkington, Booth', '2005-08-01', 36, 'https://www.gutenberg.org/ebooks/8740', 'en', 1426), +(4880, 'Rollo in Paris', 'Abbott, Jacob', '2007-10-11', 21, 'https://www.gutenberg.org/ebooks/22956', 'en', 2972), +(4881, 'Radiation', 'Phillips, Percy', '2015-07-17', 11, 'https://www.gutenberg.org/ebooks/49467', 'en', 2973); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(4882, 'History Repeats', 'Smith, George O. (George Oliver)', '2007-12-17', 25, 'https://www.gutenberg.org/ebooks/23884', 'en', 26), +(4883, 'A Message from the Sea', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9692', 'en', 137), +(4884, 'Barnavännen, 1905-03\nIllustrerad Veckotidning för de Små', 'Various', '2008-12-05', 23, 'https://www.gutenberg.org/ebooks/27418', 'sv', 2537), +(4885, 'The Ballad of Reading Gaol', 'Wilde, Oscar', '1995-07-01', 150, 'https://www.gutenberg.org/ebooks/301', 'en', 2974), +(4886, 'Der schwarze Baal: Novellen', 'Zech, Paul', '2011-01-03', 12, 'https://www.gutenberg.org/ebooks/34833', 'de', 253), +(4887, '\"My Novel\" — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 4, 'https://www.gutenberg.org/ebooks/7708', 'en', 2975), +(4888, 'Recollections of a Peninsular Veteran', 'Anderson, Joseph Jocelyn', '2017-10-24', 15, 'https://www.gutenberg.org/ebooks/55804', 'en', 2976), +(4889, 'Bad Memory', 'Fahy, Patrick', '2016-03-19', 46, 'https://www.gutenberg.org/ebooks/51498', 'en', 26), +(4890, 'The Tricks of the Town: or, Ways and Means of getting Money', 'Thomson, John, active 1732', '2009-08-03', 27, 'https://www.gutenberg.org/ebooks/29582', 'en', 2977), +(4891, 'The Life Savers: A story of the United States life-saving service', 'Otis, James', '2013-10-16', 10, 'https://www.gutenberg.org/ebooks/43961', 'en', 2978), +(4892, 'Stopover', 'Gerken, William', '2009-03-30', 34, 'https://www.gutenberg.org/ebooks/28450', 'en', 26), +(4893, 'The Story of Electricity', 'Munro, John', '2003-12-01', 34, 'https://www.gutenberg.org/ebooks/4710', 'en', 2979), +(4894, 'L\'Illustration, No. 2502, 7 février 1891', 'Various', '2014-04-19', 36, 'https://www.gutenberg.org/ebooks/45437', 'fr', 150), +(4895, 'Pinya de Rosa. Volume 2, Book 4', 'Ruyra, Joaquín', '2005-03-13', 16, 'https://www.gutenberg.org/ebooks/15347', 'ca', 61), +(4896, 'Country Luck', 'Habberton, John', '2016-07-02', 12, 'https://www.gutenberg.org/ebooks/52480', 'en', 2625), +(4897, 'Houston: The Feast Years. An Illustrated Essay', 'Fuermann, George', '2019-03-15', 5, 'https://www.gutenberg.org/ebooks/59068', 'en', 2980), +(4898, 'The Purple Cow', 'Burgess, Gelett', '2007-04-27', 18, 'https://www.gutenberg.org/ebooks/21172', 'en', 2981), +(4899, 'A Letter to Sir Samuel Shepherd, Knt., His Majesty\'s Attorney General\r\nUpon the Subject of His Prosecutions of Richard Carlile, for Publishing Paine\'s Age of Reason', 'Anonymous', '2012-10-08', 6, 'https://www.gutenberg.org/ebooks/40979', 'en', 681), +(4900, 'My Lords of Strogue, Vol. 3 (of 3)\r\nA Chronicle of Ireland, from the Convention to the Union', 'Wingfield, Lewis', '2012-02-13', 53, 'https://www.gutenberg.org/ebooks/38863', 'en', 684), +(4901, 'Obras escogidas', 'Bécquer, Gustavo Adolfo', '2016-11-19', 80, 'https://www.gutenberg.org/ebooks/53552', 'es', 2982), +(4902, 'Letters on International Copyright; Second Edition', 'Carey, Henry Charles', '2004-12-07', 6, 'https://www.gutenberg.org/ebooks/14295', 'en', 2983), +(4903, 'The Comforts of Home', 'Bergengren, Ralph', '2011-08-09', 15, 'https://www.gutenberg.org/ebooks/37017', 'en', 20), +(4904, 'The Power of Truth: Individual Problems and Possibilities', 'Jordan, William George', '2017-11-21', 29, 'https://www.gutenberg.org/ebooks/56020', 'en', 740), +(4905, 'The Cask', 'Crofts, Freeman Wills', '2019-07-04', 258, 'https://www.gutenberg.org/ebooks/59854', 'en', 1425), +(4906, 'Aletta: A Tale of the Boer Invasion', 'Mitford, Bertram', '2010-05-28', 120, 'https://www.gutenberg.org/ebooks/32565', 'en', 713), +(4907, 'Mary Lee the Red Cross Girl', 'Hart, Helen', '2012-10-18', 6, 'https://www.gutenberg.org/ebooks/41097', 'en', 1655), +(4908, 'The Foolish Almanak for Anuthur Year\r\nThe Furst Cinc the Introdukshun ov the Muk-rake in Magazeen Gardning, and the Speling Reform ov Owr Langwij by Theodor Rosyfelt', 'Various', '2012-07-06', 18, 'https://www.gutenberg.org/ebooks/40145', 'en', 2984), +(4909, 'The Heritage of the Desert: A Novel', 'Grey, Zane', '1998-04-01', 119, 'https://www.gutenberg.org/ebooks/1262', 'en', 2985), +(4910, 'Jean-Christophe Pariisissa II\nVI. Antoinette', 'Rolland, Romain', '2019-02-28', 4, 'https://www.gutenberg.org/ebooks/58986', 'fi', 2986), +(4911, 'The Adventures of the Chevalier De La Salle and His Companions, in Their Explorations of the Prairies, Forests, Lakes, and Rivers, of the New World, and Their Interviews with the Savage Tribes, Two Hundred Years Ago', 'Abbott, John S. C. (John Stevens Cabot)', '2008-01-22', 38, 'https://www.gutenberg.org/ebooks/24400', 'en', 2987), +(4912, 'Stories from the Italian Poets: with Lives of the Writers, Volume 2', 'Hunt, Leigh', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/10635', 'en', 2988), +(4913, 'The Black Experience in America', 'Coombs, Norman', '1993-05-01', 105, 'https://www.gutenberg.org/ebooks/67', 'en', 1795), +(4914, '天妃顯聖錄', 'Lin, Yao Yu', '2017-05-24', 14, 'https://www.gutenberg.org/ebooks/54777', 'zh', NULL), +(4915, 'Star Born', 'Norton, Andre', '2006-05-27', 212, 'https://www.gutenberg.org/ebooks/18458', 'en', 26), +(4916, 'The Foot-path Way', 'Torrey, Bradford', '2008-11-17', 9, 'https://www.gutenberg.org/ebooks/27285', 'en', 318), +(4917, 'Giroflé és Girofla: Regény (1. kötet)', 'Ambrus, Zoltán', '2009-10-11', 7, 'https://www.gutenberg.org/ebooks/30232', 'hu', 61), +(4918, 'Coca and its Therapeutic Application, Third Edition', 'Mariani, Angelo', '2015-02-21', 11, 'https://www.gutenberg.org/ebooks/48328', 'en', 2989), +(4919, 'The Mother\'s Nursery Songs', 'Hastings, Thomas', '2013-04-29', 12, 'https://www.gutenberg.org/ebooks/42612', 'en', 2990), +(4920, 'A Narrative of the Expedition to Botany-Bay', 'Tench, Watkin', '2006-05-08', 34, 'https://www.gutenberg.org/ebooks/3535', 'en', 885), +(4921, 'Is the Young Man Absalom Safe?\r\nA Sermon Preached in the Church of St. Mary Magdalene, Stoke Bishop, on Sunday, July 19th, 1885', 'Wright, David', '2008-08-19', 8, 'https://www.gutenberg.org/ebooks/26357', 'en', 717), +(4922, 'The Communes of Lombardy from the VI. to the X. Century\r\nAn Investigation of the Causes Which Led to the Development of Municipal Unity Among the Lombard Communes.', 'Williams, William Klapp', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/12162', 'en', 2991), +(4923, 'Mademoiselle de la Seiglière, Volume 1 (of 2)', 'Sandeau, Jules', '2010-12-19', 9, 'https://www.gutenberg.org/ebooks/34692', 'fr', 687), +(4924, 'Works of John Bunyan — Volume 02', 'Bunyan, John', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6047', 'en', 2992), +(4925, 'Le collier des jours: Le second rang du collier', 'Gautier, Judith', '2014-11-16', 9, 'https://www.gutenberg.org/ebooks/47360', 'fr', 2993), +(4926, 'Pee-wee Harris', 'Fitzhugh, Percy Keese', '2006-02-01', 47, 'https://www.gutenberg.org/ebooks/9833', 'en', 2994), +(4927, 'Ànimes atuïdes', 'Roig i Raventós, Josep', '2005-12-28', 16, 'https://www.gutenberg.org/ebooks/17410', 'ca', 179), +(4928, 'The Magic Pudding', 'Lindsay, Norman', '2007-11-26', 150, 'https://www.gutenberg.org/ebooks/23625', 'en', 2995), +(4929, 'Bennett\'s Small House Catalog, 1920', 'Ray H. Bennett Lumber Co., Inc.', '2016-02-13', 17, 'https://www.gutenberg.org/ebooks/51205', 'en', 2996), +(4930, 'The Game and the Candle', 'Ingram, Eleanor M. (Eleanor Marie)', '2011-04-01', 23, 'https://www.gutenberg.org/ebooks/35740', 'en', 61), +(4931, 'The Adventures of Tom Sawyer, Part 3.', 'Twain, Mark', '2004-06-29', 5, 'https://www.gutenberg.org/ebooks/7195', 'en', 637), +(4932, 'The Bird Book\r\nIllustrating in natural colors more than seven hundred North American birds; also several hundred photographs of their nests and eggs.', 'Reed, Chester A. (Chester Albert)', '2009-09-15', 77, 'https://www.gutenberg.org/ebooks/30000', 'en', 1333), +(4933, 'The Island of Faith', 'Sangster, Margaret E. (Margaret Elizabeth)', '2004-08-25', 9, 'https://www.gutenberg.org/ebooks/13282', 'en', 1660), +(4934, 'The Century Illustrated Monthly Magazine (June 1913)\nVol. LXXXVI. New Series: Vol. LXIV. May to October, 1913', 'Various', '2017-04-13', 13, 'https://www.gutenberg.org/ebooks/54545', 'en', 18), +(4935, 'Lady Luck', 'Wiley, Hugh', '2008-08-01', 18, 'https://www.gutenberg.org/ebooks/26165', 'en', 1958), +(4936, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 04\r\nGreece to the Roman Conquest', NULL, '2017-09-06', 18, 'https://www.gutenberg.org/ebooks/55497', 'en', 346), +(4937, 'The International Jewish Cook Book\r\n1600 Recipes According to the Jewish Dietary Laws with the Rules for Kashering;\r\nthe Favorite Recipes of America, Austria, Germany, Russia, France, Poland, Roumania, Etc., Etc.', 'Greenbaum, Florence Kreisler', '2004-05-01', 156, 'https://www.gutenberg.org/ebooks/12350', 'en', 2997), +(4938, 'The Strand Magazine, Vol. 05, Issue 25, January 1893\r\nAn Illustrated Monthly', 'Various', '2009-09-05', 26, 'https://www.gutenberg.org/ebooks/29911', 'en', 2998), +(4939, 'Works Published by Hatchard and Co. June 1866', 'J. Hatchard and Son', '2013-03-27', 14, 'https://www.gutenberg.org/ebooks/42420', 'en', 2663), +(4940, 'The Trimmed Lamp, and other Stories of the Four Million', 'Henry, O.', '2003-02-01', 174, 'https://www.gutenberg.org/ebooks/3707', 'en', 2999), +(4941, 'Knulp: Drei Geschichten aus dem Leben Knulps', 'Hesse, Hermann', '2006-01-29', 99, 'https://www.gutenberg.org/ebooks/17622', 'de', 270), +(4942, 'I primi due secoli della storia di Firenze, v. 1', 'Villari, Pasquale', '2015-05-10', 11, 'https://www.gutenberg.org/ebooks/48926', 'it', 3000), +(4943, 'The Desert Drum\n1905', 'Hichens, Robert', '2007-11-08', 19, 'https://www.gutenberg.org/ebooks/23417', 'en', 179), +(4944, 'The Money Master, Volume 1.', 'Parker, Gilbert', '2004-08-01', 14, 'https://www.gutenberg.org/ebooks/6275', 'en', 589), +(4945, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Achter Band: enthaltend Kapitel 15 und 16.', 'Macaulay, Thomas Babington Macaulay, Baron', '2014-10-19', 17, 'https://www.gutenberg.org/ebooks/47152', 'de', 3001), +(4946, 'La Lastaj Tagoj de Dro L. L. Zamenhof\nkaj la Funebra Ceremonio', NULL, '2008-10-18', 22, 'https://www.gutenberg.org/ebooks/26959', 'eo', 2493), +(4947, 'Earliest Years at Vassar: Personal Recollections', 'Wood, Frances Ann', '2014-06-23', 16, 'https://www.gutenberg.org/ebooks/46080', 'en', 3002), +(4948, 'Socialism and Democracy in Europe', 'Orth, Samuel Peter', '2011-03-13', 15, 'https://www.gutenberg.org/ebooks/35572', 'en', 3003), +(4949, 'Second Childhood', 'Simak, Clifford D.', '2016-01-25', 93, 'https://www.gutenberg.org/ebooks/51037', 'en', 179), +(4950, 'A Century of Wrong', 'Smuts, Jan Christiaan', '2005-02-25', 36, 'https://www.gutenberg.org/ebooks/15175', 'en', 3004), +(4951, 'The Little Gold Miners of the Sierras and Other Stories', 'Miller, Joaquin', '2007-05-05', 22, 'https://www.gutenberg.org/ebooks/21340', 'en', 770), +(4952, 'The Fight for the Republic in China', 'Putnam Weale, B. L. (Bertram Lenox)', '2003-10-01', 19, 'https://www.gutenberg.org/ebooks/4522', 'en', 3005), +(4953, 'Auguste Rodin', 'Rilke, Rainer Maria', '2014-05-07', 72, 'https://www.gutenberg.org/ebooks/45605', 'en', 3006), +(4954, 'The Galley Slave\'s Ring; or, The Family of Lebrenn\r\nA Tale of The French Revolution of 1848', 'Sue, Eugène', '2011-08-27', 14, 'https://www.gutenberg.org/ebooks/37225', 'en', 3007), +(4955, 'In Happy Valley', 'Fox, John, Jr.', '2007-01-05', 25, 'https://www.gutenberg.org/ebooks/20292', 'en', 3008), +(4956, 'Orlowit: mies ja vaimo', 'Gorky, Maksim', '2016-12-18', 6, 'https://www.gutenberg.org/ebooks/53760', 'fi', 147), +(4957, 'Colored Branches of the Louisville Free Public Library', 'Louisville Free Public Library', '2018-12-01', 3, 'https://www.gutenberg.org/ebooks/58388', 'en', 3009), +(4958, 'Le Horror Altissime', 'Doyle, Arthur Conan', '2005-05-31', 25, 'https://www.gutenberg.org/ebooks/15949', 'ia', 461), +(4959, 'Tried for Her Life\nA Sequel to \"Cruel As the Grave\"', 'Southworth, Emma Dorothy Eliza Nevitte', '2010-06-09', 25, 'https://www.gutenberg.org/ebooks/32757', 'en', 61), +(4960, 'Comme quoi Napoléon n\'a jamais existé\r\nou, Grand erratum source d\'un nombre infini d\'errata à noter dans l\'histoire du XIXe siècle', 'Pérès, J.-B. (Jean-Baptiste)', '2017-12-20', 14, 'https://www.gutenberg.org/ebooks/56212', 'fr', 3010), +(4961, 'The Fifth Form at Saint Dominic\'s: A School Story', 'Reed, Talbot Baines', '2008-02-18', 45, 'https://www.gutenberg.org/ebooks/24632', 'en', 2526), +(4962, 'A Perfect Day\r\nWaltz', NULL, '2003-12-01', 9, 'https://www.gutenberg.org/ebooks/10407', 'en', 3011), +(4963, 'Infedele: Commedia in tre atti', 'Bracco, Roberto', '2012-07-30', 29, 'https://www.gutenberg.org/ebooks/40377', 'it', 407), +(4964, 'The Dark Lady of the Sonnets', 'Shaw, Bernard', '1997-09-01', 121, 'https://www.gutenberg.org/ebooks/1050', 'en', 2455), +(4965, 'Punch, or the London Charivari, Vol. 98, April 26 1890', 'Various', '2010-09-09', 1, 'https://www.gutenberg.org/ebooks/33685', 'en', 134), +(4966, 'Speeches of His Majesty Kamehameha IV. To the Hawaiian Legislature', 'Kamehameha IV, King of the Hawaiian Islands', '2008-08-31', 21, 'https://www.gutenberg.org/ebooks/26501', 'en', 3012), +(4967, 'The Young Engineers in Colorado; Or, At Railroad Building in Earnest', 'Hancock, H. Irving (Harrie Irving)', '2004-06-25', 16, 'https://www.gutenberg.org/ebooks/12734', 'en', 3013), +(4968, 'Salem Chapel, v. 2/2', 'Oliphant, Mrs. (Margaret)', '2013-02-07', 23, 'https://www.gutenberg.org/ebooks/42044', 'en', 3014), +(4969, 'Fennel and Rue', 'Howells, William Dean', '2004-10-24', 14, 'https://www.gutenberg.org/ebooks/3363', 'en', 3015), +(4970, 'The Gentleman from Indiana', 'Tarkington, Booth', '2006-01-01', 18, 'https://www.gutenberg.org/ebooks/9659', 'en', 3016), +(4971, 'A Manifest Destiny', 'Magruder, Julia', '2009-11-13', 23, 'https://www.gutenberg.org/ebooks/30464', 'en', 61), +(4972, 'La Renaissance Italienne et la Philosophie de l\'Histoire', 'Gebhart, Emile', '2013-07-11', 34, 'https://www.gutenberg.org/ebooks/43196', 'fr', 924), +(4973, 'Tom Pinder, Foundling: A Story of the Holmfirth Flood', 'Sykes, D. F. E.', '2017-02-06', 14, 'https://www.gutenberg.org/ebooks/54121', 'en', 1445), +(4974, 'Saint Michael: A Romance', 'Werner, E.', '2011-01-30', 12, 'https://www.gutenberg.org/ebooks/35116', 'en', 803), +(4975, 'De verrezen Gulliver;\r\nbehelzende de zonderlinge reizen en avonturen, van den baron van Munchhausen, In Rusland, Ysland, Turkije, Egipte, Gibraltar, in de Kaspische, Middellandsche en Atlantische Zeëen, en door het middenpunt van den berg Etna naa de Zuid-zee', 'Raspe, Rudolf Erich', '2013-06-04', 11, 'https://www.gutenberg.org/ebooks/42878', 'nl', 533), +(4976, 'Le Roi s\'amuse', 'Hugo, Victor', '2009-07-30', 63, 'https://www.gutenberg.org/ebooks/29549', 'fr', 3017), +(4977, 'Punch, or the London Charivari, Vol. 158, 1920-02-11', 'Various', '2005-07-30', 9, 'https://www.gutenberg.org/ebooks/16394', 'en', 134), +(4978, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 26, November, 1880', 'Various', '2016-03-14', 50, 'https://www.gutenberg.org/ebooks/51453', 'en', 162), +(4979, 'Remarks on the production of the precious metals\nand on the demonetization of gold in several countries in Europe', 'Faucher, Léon', '2015-11-30', 15, 'https://www.gutenberg.org/ebooks/50581', 'en', 3018), +(4980, 'The Quest of the Simple Life', 'Dawson, W. J. (William James)', '2005-12-06', 41, 'https://www.gutenberg.org/ebooks/17246', 'en', 2503), +(4981, 'Villegagnon: A Tale of the Huguenot Persecution', 'Kingston, William Henry Giles', '2007-10-17', 14, 'https://www.gutenberg.org/ebooks/23073', 'en', 3019), +(4982, 'Myths and Legends of Our Own Land — Volume 06 : Central States and Great Lakes', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 22, 'https://www.gutenberg.org/ebooks/6611', 'en', 725), +(4983, 'The Country\'s Need of Greater Railway Facilities and Terminals\nAddress Delivered at the Annual Dinner of the Railway Business Association, New York City, December 19, 1912', 'Hill, James J. (James Jerome)', '2014-12-04', 20, 'https://www.gutenberg.org/ebooks/47536', 'en', 3020), +(4984, 'In Illud: Omnia mihi tradita sunt a Patre\r\nA Homily on Matthew 11:27, In Latin and the Original Greek', 'Athanasius, Saint, Patriarch of Alexandria', '2011-10-06', 18, 'https://www.gutenberg.org/ebooks/37641', 'el', 3021), +(4985, 'The Romance of Elaine\r\nSequel to \"Exploits of Elaine\"', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/5094', 'en', 128), +(4986, 'The Gourmet\'s Guide to London', 'Newnham-Davis, Lieut.-Col. (Nathaniel)', '2016-10-17', 8, 'https://www.gutenberg.org/ebooks/53304', 'en', 3022), +(4987, 'Mr. Pat\'s Little Girl: A Story of the Arden Foresters', 'Leonard, Mary Finley', '2005-03-31', 16, 'https://www.gutenberg.org/ebooks/15511', 'en', 62), +(4988, 'The Handbook of Soap Manufacture', 'Simmons, W. H. (William Herbert)', '2007-06-07', 160, 'https://www.gutenberg.org/ebooks/21724', 'en', 3023), +(4989, 'Tubutsch', 'Ehrenstein, Albert', '2011-07-20', 18, 'https://www.gutenberg.org/ebooks/36793', 'de', 3024), +(4990, 'Diary of Samuel Pepys — Volume 26: January/February 1663-64', 'Pepys, Samuel', '2004-11-30', 14, 'https://www.gutenberg.org/ebooks/4146', 'en', 201), +(4991, 'The Argentine in the Twentieth Century', 'Lewandowski, Maurice', '2014-03-30', 11, 'https://www.gutenberg.org/ebooks/45261', 'en', 3025), +(4992, 'Parochial and Plain Sermons, Vol. VII (of 8)', 'Newman, John Henry', '2008-01-11', 18, 'https://www.gutenberg.org/ebooks/24256', 'en', 2386), +(4993, 'Happiness and Marriage', 'Towne, Elizabeth', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/10063', 'en', 1451), +(4994, 'The Spell of Belgium', 'Anderson, Isabel', '2012-09-08', 13, 'https://www.gutenberg.org/ebooks/40713', 'en', 3026), +(4995, 'Essays', 'Meynell, Alice', '1998-08-01', 49, 'https://www.gutenberg.org/ebooks/1434', 'en', 472), +(4996, 'The Corner House Girls on a Houseboat\r\nHow they sailed away, what happened on the voyage, and what was discovered', 'Hill, Grace Brooks', '2012-01-18', 14, 'https://www.gutenberg.org/ebooks/38609', 'en', 557), +(4997, 'Voyage of the Paper Canoe\r\nA Geographical Journey of 2500 miles, from Quebec to the Gulf of Mexico, during the years 1874-5.', 'Bishop, Nathaniel H. (Nathaniel Holmes)', '2010-05-11', 17, 'https://www.gutenberg.org/ebooks/32333', 'en', 3027), +(4998, 'The Buried Treasure; Or, Old Jordan\'s \"Haunt\"', 'Castlemon, Harry', '2018-03-04', 6, 'https://www.gutenberg.org/ebooks/56676', 'en', 2322), +(4999, 'Ben\'s Nugget; Or, A Boy\'s Search For Fortune', 'Alger, Horatio, Jr.', '2008-05-08', 16, 'https://www.gutenberg.org/ebooks/25384', 'en', 195), +(5000, 'Fig Culture\r\nEdible Figs: Their Culture and Curing. Fig Culture in the Gulf States.', 'Earle, F. S. (Franklin Sumner)', '2016-09-23', 10, 'https://www.gutenberg.org/ebooks/53136', 'en', 3028), +(5001, 'L\'oeuvre du comte de Mirabeau', 'Mirabeau, Honoré-Gabriel de Riqueti, comte de', '2013-11-14', 43, 'https://www.gutenberg.org/ebooks/44181', 'fr', 3029), +(5002, 'The Story of Wool', 'Bassett, Sara Ware', '2008-03-17', 54, 'https://www.gutenberg.org/ebooks/24858', 'en', 3030), +(5003, 'L\'Illustration, No. 3647, 18 Janvier 1913', 'Various', '2011-09-19', 7, 'https://www.gutenberg.org/ebooks/37473', 'fr', 150), +(5004, 'Jenseits der Schriftkultur — Band 4', 'Nadin, Mihai', '2003-08-01', 22, 'https://www.gutenberg.org/ebooks/4374', 'de', 3031), +(5005, 'The Churches and Modern Thought\nAn inquiry into the grounds of unbelief and an appeal for candour', 'Phelips, Vivian', '2014-03-02', 15, 'https://www.gutenberg.org/ebooks/45053', 'en', 1616), +(5006, 'The Rover Boys on Treasure Isle; Or, The Strange Cruise of the Steam Yacht', 'Stratemeyer, Edward', '2005-04-28', 16, 'https://www.gutenberg.org/ebooks/15723', 'en', 2322), +(5007, 'Northern Nut Growers Association Report of the Proceedings at the Forty-Second Annual Meeting\nUrbana, Illinois, August 28, 29 and 30, 1951', NULL, '2007-05-17', 12, 'https://www.gutenberg.org/ebooks/21516', 'en', 1628), +(5008, 'An Etymological Dictionary of the Scottish Language\r\nin which the words are explained in their different senses, authorized by the names of the writers by whom they are used, or the titles of the works in which they occur, and deduced from their originals', 'Jamieson, John', '2012-08-18', 47, 'https://www.gutenberg.org/ebooks/40521', 'en', 3032), +(5009, 'Kenilworth', 'Scott, Walter', '2006-02-22', 106, 'https://www.gutenberg.org/ebooks/1606', 'en', 98), +(5010, 'Damned If You Don\'t', 'Garrett, Randall', '2007-12-28', 53, 'https://www.gutenberg.org/ebooks/24064', 'en', 3033), +(5011, 'Town Geology', 'Kingsley, Charles', '2003-11-01', 38, 'https://www.gutenberg.org/ebooks/10251', 'en', 2535), +(5012, 'An essay in defence of the female sex\r\nIn which are inserted the characters of a pedant, a squire, a beau, a vertuoso, a poetaster, a city-critick, &c. in a letter to a lady.', 'Astell, Mary', '2018-07-28', 48, 'https://www.gutenberg.org/ebooks/57596', 'en', 1485), +(5013, 'The Status of the Jews in Egypt\nThe Fifth Arthur Davis Memorial Lecture', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2018-01-27', 19, 'https://www.gutenberg.org/ebooks/56444', 'en', 3034), +(5014, 'Scientific American Supplement, No. 531, March 6, 1886', 'Various', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/11383', 'en', 210), +(5015, 'The Crimson Gardenia and Other Tales of Adventure', 'Beach, Rex', '2010-04-23', 92, 'https://www.gutenberg.org/ebooks/32101', 'en', 323), +(5016, 'In Greek Waters: A Story of the Grecian War of Independence', 'Henty, G. A. (George Alfred)', '2013-03-08', 30, 'https://www.gutenberg.org/ebooks/42276', 'en', 1447), +(5017, 'The City of Domes : a walk with an architect about the courts and palaces of the Panama-Pacific International Exposition, with a discussion of its architecture, its sculpture, its mural decorations, its coloring and its lighting, preceded by a history of its growth', 'Barry, John D. (John Daniel)', '2002-04-01', 110, 'https://www.gutenberg.org/ebooks/3151', 'en', 3035), +(5018, 'The Frontiersman: A Tale of the Yukon', 'Cody, H. A. (Hiram Alfred)', '2010-03-26', 14, 'https://www.gutenberg.org/ebooks/31784', 'en', 3036), +(5019, 'More Trivia', 'Smith, Logan Pearsall', '2008-10-01', 26, 'https://www.gutenberg.org/ebooks/26733', 'en', 1201), +(5020, 'Critiques and Addresses', 'Huxley, Thomas Henry', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/12506', 'en', 814), +(5021, 'Ampleforth College: A Sketch-Book', 'Pike, Joseph', '2017-03-09', 6, 'https://www.gutenberg.org/ebooks/54313', 'en', 3037), +(5022, 'Pens and Types\nor Hints and Helps for Those who Write, Print, Read, Teach, or Learn', 'Drew, Benjamin', '2019-08-18', 569, 'https://www.gutenberg.org/ebooks/60126', 'en', 3038), +(5023, 'In Search of the Castaways; Or, The Children of Captain Grant', 'Verne, Jules', '2000-02-01', 145, 'https://www.gutenberg.org/ebooks/2083', 'en', 3039), +(5024, 'Life in a Mediæval City\nIllustrated by York in the XVth Century', 'Benson, Edwin', '2006-02-24', 41, 'https://www.gutenberg.org/ebooks/17848', 'en', 3040), +(5025, 'The Purple Cow!', 'Burgess, Gelett', '2009-12-12', 38, 'https://www.gutenberg.org/ebooks/30656', 'en', 2981), +(5026, 'Bases pour servir aux entreprises de colonisation dans les territoires nationaux de la Republique Argentine', 'Brougnes, Auguste', '2007-08-25', 9, 'https://www.gutenberg.org/ebooks/22393', 'fr', 3041), +(5027, 'Thirty Years Since; or, The Ruined Family. A Tale', NULL, '2016-04-05', 4, 'https://www.gutenberg.org/ebooks/51661', 'en', 61), +(5028, 'Isabel d\'Aragão a Rainha Santa\nHistoria sucinta da sua vida, morte e excelsas virtudes', 'Anonymous', '2011-02-19', 16, 'https://www.gutenberg.org/ebooks/35324', 'pt', 3042), +(5029, 'Last Enemy', 'Piper, H. Beam', '2006-07-10', 78, 'https://www.gutenberg.org/ebooks/18800', 'en', 26), +(5030, 'History of American Literature', 'Halleck, Reuben Post', '2004-09-01', 23, 'https://www.gutenberg.org/ebooks/6423', 'en', 3043), +(5031, 'Masters in Art, Part 79, Volume 7, July, 1906: Ingres\nA Series of Illustrated Monographs', NULL, '2014-12-19', 19, 'https://www.gutenberg.org/ebooks/47704', 'en', 3044), +(5032, 'The Pianoforte Sonata\nIts Origin and Development', 'Shedlock, J. S. (John South)', '2005-11-16', 203, 'https://www.gutenberg.org/ebooks/17074', 'en', 3045), +(5033, 'My Daily Meditation for the Circling Year', 'Jowett, John Henry', '2007-10-29', 58, 'https://www.gutenberg.org/ebooks/23241', 'en', 3046), +(5034, 'The Sea-Kings of Crete', 'Baikie, James', '2006-09-19', 36, 'https://www.gutenberg.org/ebooks/19328', 'en', 3047), +(5035, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 21, September 11, 1858', NULL, '2017-06-30', 11, 'https://www.gutenberg.org/ebooks/55007', 'en', 1741), +(5036, 'Exposição Amadeo de Souza Cardoso - Liga Naval de Lisboa', 'Almada Negreiros, José de', '2007-10-12', 20, 'https://www.gutenberg.org/ebooks/22969', 'pt', 3048), +(5037, 'An Examination of Weismannism', 'Romanes, George John', '2015-07-16', 7, 'https://www.gutenberg.org/ebooks/49458', 'en', 3049), +(5038, 'Pierre and Luce', 'Rolland, Romain', '2010-03-07', 28, 'https://www.gutenberg.org/ebooks/31542', 'en', 560), +(5039, 'Roundabout to Boston (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 13, 'https://www.gutenberg.org/ebooks/3397', 'en', 366), +(5040, 'The Fifth of November\nA Romance of the Stuarts', 'Scribner, Frank Kimball', '2009-11-17', 20, 'https://www.gutenberg.org/ebooks/30490', 'en', 3050), +(5041, 'The Taming of the Shrew', 'Shakespeare, William', '2000-07-01', 56, 'https://www.gutenberg.org/ebooks/2245', 'en', 3051), +(5042, 'Hugh Crichton\'s Romance', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-08', 4, 'https://www.gutenberg.org/ebooks/43162', 'en', 61), +(5043, 'Studies in the Psychology of Sex, Volume 3\r\nAnalysis of the Sexual Impulse; Love and Pain; The Sexual Impulse in Women', 'Ellis, Havelock', '2004-10-08', 204, 'https://www.gutenberg.org/ebooks/13612', 'en', 3052), +(5044, 'Mémoires du maréchal Marmont, duc de Raguse (1/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2008-12-06', 6, 'https://www.gutenberg.org/ebooks/27427', 'fr', 3053), +(5045, 'Pfarre und Schule: Eine Dorfgeschichte. Zweiter Band.', 'Gerstäcker, Friedrich', '2014-07-25', 15, 'https://www.gutenberg.org/ebooks/46410', 'de', 138), +(5046, 'The Parisians — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7737', 'en', 1165), +(5047, 'The Expressman and the Detective', 'Pinkerton, Allan', '2007-07-26', 29, 'https://www.gutenberg.org/ebooks/22155', 'en', 3054), +(5048, 'Scientific American Supplement, No. 561, October 2, 1886', 'Various', '2005-07-27', 19, 'https://www.gutenberg.org/ebooks/16360', 'en', 210), +(5049, 'Firemen and Their Exploits\r\nWith some account of the rise and development of fire-brigades, of various appliances for saving life at fires and extinguishing the flames.', 'Holmes, F. M. (Frederic Morell)', '2015-11-29', 11, 'https://www.gutenberg.org/ebooks/50575', 'en', 3055), +(5050, 'Punch, or the London Charivari, Vol. 146, March 18, 1914', 'Various', '2007-10-19', 10, 'https://www.gutenberg.org/ebooks/23087', 'en', 134), +(5051, 'Turning and Boring\r\nA specialized treatise for machinists, students in the industrial and engineering schools, and apprentices, on turning and boring methods, including modern practice with engine lathes, turret lathes, vertical and horizontal boring machines', 'Jones, Franklin Day', '2010-10-04', 37, 'https://www.gutenberg.org/ebooks/34030', 'en', 3056), +(5052, 'Master Reynard: The History of a Fox', 'Fielding, Jane', '2013-12-04', 19, 'https://www.gutenberg.org/ebooks/44347', 'en', 3057), +(5053, 'Six Short Plays', 'Galsworthy, John', '2004-09-26', 18, 'https://www.gutenberg.org/ebooks/5060', 'en', 115), +(5054, 'Cobb\'s Anatomy', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2007-01-20', 7, 'https://www.gutenberg.org/ebooks/20602', 'en', 2984), +(5055, 'Bobby Blake in the Frozen North; Or, The Old Eskimo\'s Last Message', 'Warner, Frank A.', '2019-01-18', 3, 'https://www.gutenberg.org/ebooks/58718', 'en', 2322), +(5056, 'Historical View of the Languages and Literature of the Slavic Nations\r\nWith a Sketch of Their Popular Poetry', 'Talvj', '2004-12-24', 12, 'https://www.gutenberg.org/ebooks/14437', 'en', 3058), +(5057, 'Weltuntergang: Geschichtliche Erzählung aus dem Jahre 1000 nach Christus', 'Dahn, Felix', '2016-06-02', 16, 'https://www.gutenberg.org/ebooks/52222', 'de', 2442), +(5058, 'The Diverting History of John Gilpin\r\nShowing How He Went Farther Than He Intended, and Came Safe Home Again', 'Cowper, William', '2004-04-01', 42, 'https://www.gutenberg.org/ebooks/11979', 'en', 3059), +(5059, 'The Cradle of the Christ: A Study in Primitive Christianity', 'Frothingham, Octavius Brooks', '2011-07-17', 16, 'https://www.gutenberg.org/ebooks/36767', 'en', 1759), +(5060, 'Tom, the Piper\'s Son', 'Anonymous', '2014-04-01', 14, 'https://www.gutenberg.org/ebooks/45295', 'en', 3060), +(5061, 'The Heart of Asia\r\nA history of Russian Turkestan and the Central Asian Khanates from the earliest times', 'Ross, E. Denison (Edward Denison), Sir', '2018-08-23', 19, 'https://www.gutenberg.org/ebooks/57750', 'en', 3061), +(5062, 'The Healing of Nations and the Hidden Sources of Their Strife', 'Carpenter, Edward', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/10097', 'en', 335), +(5063, 'The White Plumes of Navarre: A Romance of the Wars of Religion', 'Crockett, S. R. (Samuel Rutherford)', '2010-07-21', 10, 'https://www.gutenberg.org/ebooks/33215', 'en', 3062), +(5064, 'Among the Tibetans', 'Bird, Isabella L. (Isabella Lucy)', '2012-12-16', 31, 'https://www.gutenberg.org/ebooks/41635', 'en', 3063), +(5065, 'The Discovery of Yellowstone Park\r\nJournal of the Washburn Expedition to the Yellowstone and Firehole Rivers in the Year 1870', 'Langford, Nathaniel Pitt', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/11145', 'en', 3064), +(5066, 'I Moncalvo', 'Castelnuovo, Enrico', '2018-03-04', 9, 'https://www.gutenberg.org/ebooks/56682', 'it', 3065), +(5067, 'Le Tour du Monde; Ava\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-05-07', 8, 'https://www.gutenberg.org/ebooks/25370', 'fr', 1673), +(5068, 'The After-glow of a Great Reign\nFour Addresses Delivered in St. Paul\'s Cathedral', 'Winnington Ingram, Arthur F. (Arthur Foley)', '2007-01-23', 9, 'https://www.gutenberg.org/ebooks/20430', 'en', 2745), +(5069, 'The Devil\'s Garden', 'Maxwell, W. B. (William Babington)', '2005-01-05', 38, 'https://www.gutenberg.org/ebooks/14605', 'en', 61), +(5070, 'Nautical Charts', 'Putnam, G. R. (George Rockwell)', '2013-11-13', 14, 'https://www.gutenberg.org/ebooks/44175', 'en', 3066), +(5071, 'The Voyage of Verrazzano\r\nA Chapter in the Early History of Maritime Discovery in America', 'Murphy, Henry Cruse', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/5252', 'en', 3067), +(5072, 'Boy Scouts in the Northwest; Or, Fighting Forest Fires', 'Ralphson, G. Harvey (George Harvey)', '2011-09-20', 24, 'https://www.gutenberg.org/ebooks/37487', 'en', 1002), +(5073, 'Under Fire: The Story of a Squad', 'Barbusse, Henri', '2003-08-01', 91, 'https://www.gutenberg.org/ebooks/4380', 'en', 579), +(5074, 'Guide to the Kindergarten and Intermediate Class; and Moral Culture of Infancy.', 'Peabody, Elizabeth Palmer', '2011-06-29', 23, 'https://www.gutenberg.org/ebooks/36555', 'en', 3068), +(5075, 'Some Animal Stories', 'Roberts, Charles G. D., Sir', '2016-05-06', 44, 'https://www.gutenberg.org/ebooks/52010', 'en', 1787), +(5076, 'Library of the World\'s Best Literature, Ancient and Modern, Vol. 15', NULL, '2010-06-29', 28, 'https://www.gutenberg.org/ebooks/33027', 'en', 19), +(5077, 'James Frederick Ferrier', 'Haldane, Elizabeth Sanderson', '2014-02-17', 7, 'https://www.gutenberg.org/ebooks/44949', 'en', 3069), +(5078, 'Gedichten', 'Perk, Jacques Fabrice Herman', '2007-12-31', 11, 'https://www.gutenberg.org/ebooks/24090', 'nl', 2651), +(5079, 'Painting by Immersion and by Compressed Air: A Practical Handbook', 'Jennings, Arthur Seymour', '2018-07-21', 22, 'https://www.gutenberg.org/ebooks/57562', 'en', 3070), +(5080, 'The Man Whom the Trees Loved', 'Blackwood, Algernon', '2004-02-01', 84, 'https://www.gutenberg.org/ebooks/11377', 'en', 3071), +(5081, '王陽明全集', 'Wang, Yangming', '2008-04-23', 53, 'https://www.gutenberg.org/ebooks/25142', 'zh', 1493), +(5082, 'Shelley', 'Symonds, John Addington', '2012-11-19', 22, 'https://www.gutenberg.org/ebooks/41407', 'en', 3072), +(5083, 'In Beaver World', 'Mills, Enos A.', '2013-03-09', 19, 'https://www.gutenberg.org/ebooks/42282', 'en', 3073), +(5084, 'The Struggle for Missouri', 'McElroy, John', '2010-03-25', 28, 'https://www.gutenberg.org/ebooks/31770', 'en', 3074), +(5085, 'Lord Roberts\' Message to the Nation', 'Roberts, Frederick Sleigh Roberts, Earl', '2017-07-31', 7, 'https://www.gutenberg.org/ebooks/55235', 'en', 2006), +(5086, 'Across China on Foot', 'Dingle, Edwin John', '2004-09-10', 43, 'https://www.gutenberg.org/ebooks/13420', 'en', 2773), +(5087, 'Christmas Light', 'Phillips, Ethel Calvert', '2008-12-25', 32, 'https://www.gutenberg.org/ebooks/27615', 'en', 585), +(5088, 'The Nabob', 'Daudet, Alphonse', '2006-03-22', 34, 'https://www.gutenberg.org/ebooks/2077', 'en', 3075), +(5089, 'The Anatomy of the Human Peritoneum and Abdominal Cavity\nConsidered from the Standpoint of Development and Comparative Anatomy', 'Huntington, George S. (George Sumner)', '2013-07-29', 42, 'https://www.gutenberg.org/ebooks/43350', 'en', 3076), +(5090, 'Die Verwandlung', 'Kafka, Franz', '2007-08-21', 1046, 'https://www.gutenberg.org/ebooks/22367', 'de', 1061), +(5091, 'Der Vampyr, oder: Die Todtenbraut. Zweiter Theil.\nEin Roman nach neugriechischen Volkssagen', 'Hildebrand, Theodor', '2016-04-08', 20, 'https://www.gutenberg.org/ebooks/51695', 'de', 3077), +(5092, 'Punch, or the London Charivari, Vol. 158, 1920-02-04', 'Various', '2005-06-30', 2, 'https://www.gutenberg.org/ebooks/16152', 'en', 134), +(5093, 'An Attic Philosopher in Paris — Complete', 'Souvestre, Émile', '2004-10-30', 21, 'https://www.gutenberg.org/ebooks/3999', 'en', 560), +(5094, 'Sheppard Lee, Written by Himself. Vol. 2 (of 2)', 'Bird, Robert Montgomery', '2014-08-19', 14, 'https://www.gutenberg.org/ebooks/46622', 'en', 50), +(5095, 'Half-Past Seven Stories', 'Anderson, Robert Gordon', '2005-02-01', 43, 'https://www.gutenberg.org/ebooks/7505', 'en', 388), +(5096, 'Standard Selections\r\nA Collection and Adaptation of Superior Productions from Best Authors for Use in Class Room and on the Platform', NULL, '2006-11-27', 235, 'https://www.gutenberg.org/ebooks/19926', 'en', 1725), +(5097, 'The Cook\'s Decameron\r\nA Study in Taste, Containing over Two Hundred Recipes for Italian Dishes', 'Waters, W. G., Mrs.', '1997-06-01', 91, 'https://www.gutenberg.org/ebooks/930', 'en', 1881), +(5098, 'The Girl From Tim\'s Place', 'Munn, Charles Clark', '2010-11-03', 13, 'https://www.gutenberg.org/ebooks/34202', 'en', 61), +(5099, 'Proeve van Kleine Gedigten voor Kinderen', 'Alphen, Hieronymus van', '2005-11-16', 21, 'https://www.gutenberg.org/ebooks/17080', 'nl', 3078), +(5100, 'The Expositor\'s Bible: The Book of the Twelve Prophets, Vol. 2\r\nCommonly Called the Minor', 'Smith, George Adam', '2015-12-23', 24, 'https://www.gutenberg.org/ebooks/50747', 'en', 3079), +(5101, 'The International Monthly, Volume 3, No. 3, June, 1851', 'Various', '2011-05-17', 13, 'https://www.gutenberg.org/ebooks/36131', 'en', 3080), +(5102, 'Peeps at People\nBeing Certain Papers from the Writings of Anne Warrington Witherup', 'Bangs, John Kendrick', '2012-06-08', 23, 'https://www.gutenberg.org/ebooks/39945', 'en', 190), +(5103, 'Kaksi kansanrunokokoelmaa viime vuosisadalta ynnä \"Suru-Runot Suomalaiset\"', 'Niemi, Aukusti Robert', '2016-07-02', 15, 'https://www.gutenberg.org/ebooks/52474', 'fi', 1171), +(5104, 'Записки из подполья', 'Dostoyevsky, Fyodor', '2007-04-09', 29, 'https://www.gutenberg.org/ebooks/21186', 'ru', 3081), +(5105, 'The Mermaid: A Love Tale', 'Dougall, L. (Lily)', '2006-12-07', 43, 'https://www.gutenberg.org/ebooks/20054', 'en', 3082), +(5106, 'Alton of Somasco: A Romance of the Great Northwest', 'Bindloss, Harold', '2004-12-05', 15, 'https://www.gutenberg.org/ebooks/14261', 'en', 551), +(5107, 'Baseball Joe on the School Nine; or, Pitching for the Blue Banner', 'Chadwick, Lester', '2012-02-16', 18, 'https://www.gutenberg.org/ebooks/38897', 'en', 487), +(5108, 'With a Reservist in France\r\nA Personal Account of All the Engagements in Which the 1st Division 1st Corps Took Part, viz.: Mons (Including the Retirement), the Marne, the Aisne, First Battle of Ypres, Neuve Chapelle, Festubert, and Loos', 'Bolwell, F. A.', '2013-12-25', 6, 'https://www.gutenberg.org/ebooks/44511', 'en', 3083), +(5109, 'Winding Paths', 'Page, Gertrude', '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/5636', 'en', 3084), +(5110, 'The World\'s Great Sermons, Volume 03: Massillon to Mason', NULL, '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11713', 'en', 3021), +(5111, 'Mémoires de Mademoiselle Mars (volume II)\n(de la Comédie Française)', 'Mars, Mademoiselle', '2008-05-19', 9, 'https://www.gutenberg.org/ebooks/25526', 'fr', 3085), +(5112, 'Henry Horn\'s X-Ray Eye Glasses', 'Swain, Dwight V.', '2010-05-30', 33, 'https://www.gutenberg.org/ebooks/32591', 'en', 26), +(5113, 'Pencillings by the Way\nWritten During Some Years of Residence and Travel in Europe', 'Willis, Nathaniel Parker', '2012-03-17', 9, 'https://www.gutenberg.org/ebooks/39179', 'en', 1408), +(5114, 'The Storm. An Essay.', 'Defoe, Daniel', '2012-10-14', 104, 'https://www.gutenberg.org/ebooks/41063', 'en', 3086), +(5115, 'Cat and Dog; Or, Memoirs of Puss and the Captain', 'Maitland, Julia Charlotte', '2007-03-21', 11, 'https://www.gutenberg.org/ebooks/20868', 'en', 3087), +(5116, 'Life of Johann Wolfgang Goethe', 'Sime, James', '2019-02-27', 7, 'https://www.gutenberg.org/ebooks/58972', 'en', 3088), +(5117, 'Cruise of the Revenue-Steamer Corwin in Alaska and the N.W. Arctic Ocean in 1881: Botanical Notes\r\nNotes and Memoranda: Medical and Anthropological; Botanical; Ornithological.', 'Muir, John', '2010-08-15', 36, 'https://www.gutenberg.org/ebooks/33443', 'en', 3089), +(5118, 'The Provost', 'Galt, John', '1998-04-01', 19, 'https://www.gutenberg.org/ebooks/1296', 'en', 3090), +(5119, 'The Charm of Scandinavia', 'Clark, Francis E. (Francis Edward)', '2018-05-06', 5, 'https://www.gutenberg.org/ebooks/57106', 'en', 581), +(5120, 'Tom Sawyer, Detective', 'Twain, Mark', '2004-09-14', 292, 'https://www.gutenberg.org/ebooks/93', 'en', 3091), +(5121, 'The Complete Works of Brann, the Iconoclast — Volume 10', 'Brann, William Cowper', '1996-06-01', 17, 'https://www.gutenberg.org/ebooks/568', 'en', 20), +(5122, 'Mary Gresley, and An Editor\'s Tales', 'Trollope, Anthony', '2017-05-25', 23, 'https://www.gutenberg.org/ebooks/54783', 'en', 3092), +(5123, 'The Idler in France', 'Blessington, Marguerite, Countess of', '2004-07-28', 7, 'https://www.gutenberg.org/ebooks/13044', 'en', 3093), +(5124, 'Dolly Reforming Herself: A Comedy in Four Acts', 'Jones, Henry Arthur', '2008-11-15', 10, 'https://www.gutenberg.org/ebooks/27271', 'en', 907), +(5125, 'Madame Bovary', 'Flaubert, Gustave', '2006-02-26', 1459, 'https://www.gutenberg.org/ebooks/2413', 'en', 3094), +(5126, 'Relation d\'un voyage du Pole Arctique au Pole Antarctique par le centre du monde', 'Anonymous', '2013-09-15', 33, 'https://www.gutenberg.org/ebooks/43734', 'fr', 26), +(5127, 'The Trumpeter of Säkkingen: A Song from the Upper Rhine.', 'Scheffel, Joseph Victor von', '2010-02-18', 63, 'https://www.gutenberg.org/ebooks/31314', 'en', 3095), +(5128, 'A Dreamer\'s Tales', 'Dunsany, Lord', '2005-05-01', 269, 'https://www.gutenberg.org/ebooks/8129', 'en', 580), +(5129, 'Red Saunders: His Adventures West & East', 'Phillips, Henry Wallace', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12196', 'en', 61), +(5130, 'The Rogerenes: some hitherto unpublished annals belonging to the colonial history of Connecticut', 'Williams, Anna B. (Anna Bolles)', '2017-09-30', 8, 'https://www.gutenberg.org/ebooks/55651', 'en', 3096), +(5131, 'The English Orphans; Or, A Home in the New World', 'Holmes, Mary Jane', '2004-10-26', 37, 'https://www.gutenberg.org/ebooks/13878', 'en', 264), +(5132, 'Original Penny Readings: A Series of Short Sketches', 'Fenn, George Manville', '2010-12-15', 13, 'https://www.gutenberg.org/ebooks/34666', 'en', 61), +(5133, 'Sam', 'Rath, E. J.', '2014-11-18', 11, 'https://www.gutenberg.org/ebooks/47394', 'en', 3097), +(5134, 'Dave Dashaway Around the World; or, A Young Yankee Aviator Among Many Nations', 'Rockwood, Roy', '2015-10-27', 15, 'https://www.gutenberg.org/ebooks/50323', 'en', 3098), +(5135, 'The story of Kentucky', 'Eubank, Rice S.', '2009-03-02', 8, 'https://www.gutenberg.org/ebooks/28239', 'en', 3099), +(5136, 'Hooking Watermelons\n1898', 'Bellamy, Edward', '2007-09-21', 23, 'https://www.gutenberg.org/ebooks/22703', 'en', 770), +(5137, 'Chronicles (1 of 6): The Historie of England (4 of 8)\nThe Fovrth Booke Of The Historie Of England', 'Holinshed, Raphael', '2005-08-16', 19, 'https://www.gutenberg.org/ebooks/16536', 'en', 3100), +(5138, 'Hinzelmeier: eine nachdenkliche Geschichte', 'Storm, Theodor', '2005-09-01', 30, 'https://www.gutenberg.org/ebooks/8915', 'de', 3101), +(5139, 'Historia General del Derecho Español, Tomo I', 'Hinojosa, Eduardo de', '2014-07-10', 23, 'https://www.gutenberg.org/ebooks/46246', 'es', 3102), +(5140, 'The Prince and the Pauper, Part 8.', 'Twain, Mark', '2004-07-04', 12, 'https://www.gutenberg.org/ebooks/7161', 'en', 2004), +(5141, 'The Home Book of Verse — Volume 3', 'Stevenson, Burton Egbert', '2001-05-01', 26, 'https://www.gutenberg.org/ebooks/2621', 'en', 178), +(5142, 'Three Men in a Boat (To Say Nothing of the Dog)', 'Jerome, Jerome K. (Jerome Klapka)', '2009-05-01', 25, 'https://www.gutenberg.org/ebooks/28837', 'en', 2464), +(5143, 'Narrative of the Life and Adventures of Paul Cuffe, a Pequot Indian, During Thirty Years Spent at Sea, and in Travelling in Foreign Lands', 'Cuffe, Paul', '2013-08-19', 9, 'https://www.gutenberg.org/ebooks/43506', 'en', 3103), +(5144, 'The Mission', 'Marryat, Frederick', '2004-08-25', 9, 'https://www.gutenberg.org/ebooks/13276', 'en', 323), +(5145, 'Le Dictionnaire du NEF', 'Lebert, Marie', '2008-10-26', 32, 'https://www.gutenberg.org/ebooks/27043', 'fr', 3104), +(5146, 'Citadel', 'Budrys, Algis', '2008-08-04', 106, 'https://www.gutenberg.org/ebooks/26191', 'en', 26), +(5147, 'The Races of Man: An Outline of Anthropology and Ethnography', 'Deniker, Joseph', '2014-09-12', 51, 'https://www.gutenberg.org/ebooks/46848', 'en', 3105), +(5148, 'Owen Clancy\'s Run of Luck; or, The Motor Wizard in the Garage', 'Standish, Burt L.', '2017-08-31', 7, 'https://www.gutenberg.org/ebooks/55463', 'en', 3106), +(5149, 'Een Midzomernachtdroom', 'Shakespeare, William', '2010-01-30', 40, 'https://www.gutenberg.org/ebooks/31126', 'nl', 907), +(5150, 'The Philippine Islands, 1493-1898, Volume 38, 1674-1683\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2015-10-01', 56, 'https://www.gutenberg.org/ebooks/50111', 'en', 745), +(5151, 'The World for Sale, Volume 1.', 'Parker, Gilbert', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6281', 'en', 551), +(5152, 'The Secret Trails', 'Roberts, Charles G. D., Sir', '2010-11-27', 15, 'https://www.gutenberg.org/ebooks/34454', 'en', 1787), +(5153, 'Lausanne', 'Gribble, Francis Henry', '2014-06-23', 9, 'https://www.gutenberg.org/ebooks/46074', 'en', 3107), +(5154, 'Birds in Town & Village', 'Hudson, W. H. (William Henry)', '2005-01-01', 64, 'https://www.gutenberg.org/ebooks/7353', 'en', 3108), +(5155, 'Reminiscences of a Canadian Pioneer for the last Fifty Years: An Autobiography', 'Thompson, Samuel', '2011-03-16', 17, 'https://www.gutenberg.org/ebooks/35586', 'en', 3109), +(5156, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 03 (1820)', 'Various', '2015-08-28', 4, 'https://www.gutenberg.org/ebooks/49800', 'en', 2757), +(5157, 'Amores: Poems', 'Lawrence, D. H. (David Herbert)', '2007-09-07', 60, 'https://www.gutenberg.org/ebooks/22531', 'en', 8), +(5158, 'Adventures in Southern Seas: A Tale of the Sixteenth Century', 'Forbes, George', '2005-09-16', 16, 'https://www.gutenberg.org/ebooks/16704', 'en', 3110), +(5159, 'The Breadth, Freeness, and Yet Exclusiveness of the Gospel', 'Hoare, Edward', '2016-07-25', 5, 'https://www.gutenberg.org/ebooks/52646', 'en', 3111), +(5160, 'My Mother\'s Rival\nEveryday Life Library No. 4', 'Brame, Charlotte M.', '2005-02-26', 15, 'https://www.gutenberg.org/ebooks/15181', 'en', 61), +(5161, 'Our Revolution: Essays on Working-Class and International Revolution, 1904-1917', 'Trotsky, Leon', '2011-06-02', 57, 'https://www.gutenberg.org/ebooks/36303', 'en', 3112), +(5162, 'Diderot et le Curé de Montchauvet\nUne mystification littéraire chez le baron d\'Holbach, 1754', 'Gasté, Armand', '2014-01-21', 14, 'https://www.gutenberg.org/ebooks/44723', 'fr', 3113), +(5163, 'Grace Harlowe\'s Overland Riders on the Great American Desert', 'Chase, Josephine', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/5404', 'en', 3114), +(5164, 'Anthem for Doomed Youth', 'Owen, Wilfred', '2007-01-05', 11, 'https://www.gutenberg.org/ebooks/20266', 'en', 3115), +(5165, 'Punch, or the London Charivari, Volume 101, October 17, 1891', 'Various', '2004-11-15', 7, 'https://www.gutenberg.org/ebooks/14053', 'en', 134), +(5166, 'Within the Gates', 'Phelps, Elizabeth Stuart', '2016-12-23', 8, 'https://www.gutenberg.org/ebooks/53794', 'en', 3116), +(5167, 'Albert Savarus', 'Balzac, Honoré de', '2004-06-01', 27, 'https://www.gutenberg.org/ebooks/1898', 'en', 58), +(5168, 'Cours familier de Littérature - Volume 14', 'Lamartine, Alphonse de', '2012-10-31', 8, 'https://www.gutenberg.org/ebooks/41251', 'fr', 1765), +(5169, 'A Beleaguered City\r\nBeing a Narrative of Certain Recent Events in the City of Semur, in the Department of the Haute Bourgogne. A Story of the Seen and the Unseen', 'Oliphant, Mrs. (Margaret)', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/11521', 'en', 3117), +(5170, 'Mother Hubbard, Her Picture Book,\r\nContaining Mother Hubbard, The Three Bears, & The Absurd A, B, C.', 'Crane, Walter', '2008-06-07', 14, 'https://www.gutenberg.org/ebooks/25714', 'en', 343), +(5171, 'Si Klegg, Complete, Books 1-6', 'McElroy, John', '2018-06-15', 7, 'https://www.gutenberg.org/ebooks/57334', 'en', 403), +(5172, 'Musical Myths and Facts, Volume 1 (of 2)', 'Engel, Carl', '2012-09-27', 14, 'https://www.gutenberg.org/ebooks/40383', 'en', 250), +(5173, 'Mary, the Help of Christians\nNovenas in Preparation for the Principal Feasts of the Blessed Virgin', 'Hammer, Bonaventure', '2010-09-08', 22, 'https://www.gutenberg.org/ebooks/33671', 'en', 3118), +(5174, 'Under Canvas; or, The Hunt for the Cartaret Ghost', 'Douglas, Alan, Captain', '2011-12-14', 23, 'https://www.gutenberg.org/ebooks/38299', 'en', 2994), +(5175, 'Odette: A Fairy Tale for Weary People', 'Firbank, Ronald', '2019-01-19', 21, 'https://www.gutenberg.org/ebooks/58720', 'en', 2118), +(5176, 'Plays : Fourth Series', 'Galsworthy, John', '2004-09-26', 17, 'https://www.gutenberg.org/ebooks/5058', 'en', 115), +(5177, 'A Compilation of the Messages and Papers of the Presidents. Volume 1, part 3: Thomas Jefferson', NULL, '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/10893', 'en', 337), +(5178, 'The Winning of the West, Volume 1\r\nFrom the Alleghanies to the Mississippi, 1769-1776', 'Roosevelt, Theodore', '2004-04-01', 84, 'https://www.gutenberg.org/ebooks/11941', 'en', 3119), +(5179, 'Personal Memoirs of U. S. Grant, Part 5.', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/5864', 'en', 1433), +(5180, 'The thread of life', 'Eulalia, Infanta of Spain', '2018-08-25', 16, 'https://www.gutenberg.org/ebooks/57768', 'en', 3120), +(5181, '雙鳳奇緣', 'Xueqiaozhuren', '2008-05-06', 19, 'https://www.gutenberg.org/ebooks/25348', 'zh', 3121), +(5182, 'Karolingsche Verhalen', 'Alberdingk Thijm, J. A. (Josephus Albertus)', '2012-05-17', 43, 'https://www.gutenberg.org/ebooks/39717', 'nl', 3122), +(5183, 'Dividing Waters', 'Wylie, I. A. R. (Ida Alexa Ross)', '2015-07-16', 9, 'https://www.gutenberg.org/ebooks/49460', 'en', 1463), +(5184, 'Nouveau Glossaire Genevois, tome 2/2', 'Humbert, Jean', '2013-02-13', 5, 'https://www.gutenberg.org/ebooks/42088', 'fr', 3123), +(5185, 'Tom Swift and His Aerial Warship; Or, The Naval Terror of the Seas', 'Appleton, Victor', '2007-10-01', 20, 'https://www.gutenberg.org/ebooks/22951', 'en', 3124), +(5186, 'Wordsworth', 'Myers, F. W. H. (Frederic William Henry)', '2005-08-01', 21, 'https://www.gutenberg.org/ebooks/8747', 'en', 3125), +(5187, 'Happy Pollyooly: The Rich Little Poor Girl', 'Jepson, Edgar', '2006-09-17', 29, 'https://www.gutenberg.org/ebooks/19310', 'en', 2739), +(5188, 'A Text-Book of Astronomy', 'Comstock, George C. (George Cary)', '2011-01-03', 65, 'https://www.gutenberg.org/ebooks/34834', 'en', 1683), +(5189, 'The Early Short Fiction of Edith Wharton — Part 2', 'Wharton, Edith', '1995-08-01', 86, 'https://www.gutenberg.org/ebooks/306', 'en', 61), +(5190, 'Bleak House', 'Dickens, Charles', '2006-01-01', 31, 'https://www.gutenberg.org/ebooks/9695', 'en', 1079), +(5191, 'Zanzibar, de stapelplaats van Oost-Afrika\nDe Aarde en haar Volken, 1908', 'Myrica, Pierre de', '2007-12-17', 13, 'https://www.gutenberg.org/ebooks/23883', 'nl', 3126), +(5192, 'Martti mestari ja hänen kisällinsä', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2009-08-03', 12, 'https://www.gutenberg.org/ebooks/29585', 'fi', 757), +(5193, 'The English Gipsies and Their Language', 'Leland, Charles Godfrey', '2005-07-25', 70, 'https://www.gutenberg.org/ebooks/16358', 'en', 3127), +(5194, 'The Natural Philosophy of Love', 'Gourmont, Remy de', '2014-07-27', 46, 'https://www.gutenberg.org/ebooks/46428', 'en', 3128), +(5195, 'Mitä Katy teki: Kertomus', 'Coolidge, Susan', '2017-10-24', 2, 'https://www.gutenberg.org/ebooks/55803', 'fi', 3129); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(5196, 'Poèmes: Les bords de la route. Les Flamandes. Les Moines', 'Verhaeren, Emile', '2010-09-28', 15, 'https://www.gutenberg.org/ebooks/34008', 'fr', 3130), +(5197, 'Golden Stars in Tatting and Crochet', 'Riego de la Branchardière, Eléonore', '2009-03-31', 73, 'https://www.gutenberg.org/ebooks/28457', 'en', 1016), +(5198, 'Witchcraft and Superstitious Record in the South-Western District of Scotland', 'Wood, J. Maxwell (John Maxwell)', '2013-10-17', 44, 'https://www.gutenberg.org/ebooks/43966', 'en', 3131), +(5199, 'Love Instigated: The Story of a Carved Ivory Umbrella Handle', 'Sherley, Douglass', '2006-08-25', 1, 'https://www.gutenberg.org/ebooks/19122', 'en', 179), +(5200, 'The Boyhood of Jesus', 'Anonymous', '2015-08-08', 14, 'https://www.gutenberg.org/ebooks/49652', 'en', 3132), +(5201, 'Bunny Brown and His Sister Sue Playing Circus', 'Hope, Laura Lee', '2005-10-27', 24, 'https://www.gutenberg.org/ebooks/16956', 'en', 3133), +(5202, 'Pemrose Lorry, Camp Fire Girl', 'Hornibrook, Isabel', '2010-03-23', 6, 'https://www.gutenberg.org/ebooks/31748', 'en', 622), +(5203, 'The Happy Days of the Empress Marie Louise', 'Imbert de Saint-Amand', '2005-07-01', 10, 'https://www.gutenberg.org/ebooks/8575', 'en', 3134), +(5204, 'Fifty years & Other Poems', 'Johnson, James Weldon', '2006-03-01', 33, 'https://www.gutenberg.org/ebooks/17884', 'en', 3135), +(5205, 'Social England under the Regency, Vol. 2 (of 2)', 'Ashton, John', '2015-04-24', 33, 'https://www.gutenberg.org/ebooks/48780', 'en', 3136), +(5206, 'Harper\'s New Monthly Magazine, No. XXVII, August 1852, Vol. V', 'Various', '2013-07-31', 17, 'https://www.gutenberg.org/ebooks/43368', 'en', 387), +(5207, 'The Chorus Girl and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 68, 'https://www.gutenberg.org/ebooks/13418', 'en', 934), +(5208, 'Maria; Or, The Wrongs of Woman', 'Wollstonecraft, Mary', '2006-03-08', 143, 'https://www.gutenberg.org/ebooks/134', 'en', 957), +(5209, 'The Prehistoric World; Or, Vanished Races', 'Allen, Emory Adams', '2001-10-01', 67, 'https://www.gutenberg.org/ebooks/2873', 'en', 1381), +(5210, 'Sea Garden', 'H. D. (Hilda Doolittle)', '2009-05-02', 74, 'https://www.gutenberg.org/ebooks/28665', 'en', 8), +(5211, 'Treatise on Parents and Children', 'Shaw, Bernard', '2006-03-22', 129, 'https://www.gutenberg.org/ebooks/908', 'en', 20), +(5212, 'The Emperor\'s Rout', 'Unknown', '2008-03-22', 29, 'https://www.gutenberg.org/ebooks/24894', 'en', 859), +(5213, 'Notes and Queries, Number 185, May 14, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-21', 20, 'https://www.gutenberg.org/ebooks/20408', 'en', 105), +(5214, 'When Polly Was Eighteen', 'Dowd, Emma C.', '2018-12-22', 14, 'https://www.gutenberg.org/ebooks/58512', 'en', 51), +(5215, 'The Gay Adventure: A Romance', 'Bird, Richard', '2010-10-01', 39, 'https://www.gutenberg.org/ebooks/33823', 'en', 401), +(5216, 'Vita nuova (Uusi elämä)', 'Dante Alighieri', '2016-05-09', 4, 'https://www.gutenberg.org/ebooks/52028', 'fi', 3137), +(5217, 'Gevoel en verstand', 'Austen, Jane', '2008-07-01', 106, 'https://www.gutenberg.org/ebooks/25946', 'nl', 1380), +(5218, 'Briefe aus dem hohen Norden\r\nEine Fahrt nach Spitzbergen mit dem HAPAG-Dampfer \"Auguste Viktoria\" im Juli', 'Haffter, Elias', '2014-02-20', 8, 'https://www.gutenberg.org/ebooks/44971', 'de', 3138), +(5219, 'Aspects of Modern Oxford, by a Mere Don', 'Godley, A. D. (Alfred Denis)', '2012-04-23', 79, 'https://www.gutenberg.org/ebooks/39525', 'en', 3139), +(5220, 'The Philosophy of Giambattista Vico', 'Croce, Benedetto', '2016-08-15', 26, 'https://www.gutenberg.org/ebooks/52814', 'en', 3140), +(5221, 'The Wild Elephant and the Method of Capturing and Taming it in Ceylon', 'Tennent, James Emerson, Sir', '2018-02-02', 6, 'https://www.gutenberg.org/ebooks/56488', 'en', 3141), +(5222, 'Silas Marner', 'Eliot, George', '1996-06-01', 711, 'https://www.gutenberg.org/ebooks/550', 'en', 95), +(5223, 'Le dernier vivant', 'Féval, Paul', '2006-06-03', 26, 'https://www.gutenberg.org/ebooks/18494', 'fr', 61), +(5224, 'Ungdomsdrömmar: historisk berättelse', 'Topelius, Zacharias', '2008-11-12', 6, 'https://www.gutenberg.org/ebooks/27249', 'sv', 98), +(5225, 'The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose\r\nSabha Parva', NULL, '2005-04-01', 59, 'https://www.gutenberg.org/ebooks/7965', 'en', 1804), +(5226, 'De beklimming van den Fuji-yama\r\nDe Aarde en haar Volken, 1907', 'Philipson-Radersma, J.', '2006-10-14', 7, 'https://www.gutenberg.org/ebooks/19546', 'nl', 3142), +(5227, 'The Brighton Boys at St. Mihiel', 'Driscoll, James R.', '2017-10-02', 24, 'https://www.gutenberg.org/ebooks/55669', 'en', 1753), +(5228, 'Wolfgang Amadeus Mozart', 'Peyser, Herbert F. (Herbert Francis)', '2015-06-19', 34, 'https://www.gutenberg.org/ebooks/49236', 'en', 3143), +(5229, 'After Long Years and Other Stories', NULL, '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8111', 'en', 3144), +(5230, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 10 (de 12)', 'Castelo Branco, Camilo', '2009-02-26', 14, 'https://www.gutenberg.org/ebooks/28201', 'pt', 410), +(5231, 'The Sign of the Red Cross: A Tale of Old London', 'Everett-Green, Evelyn', '2004-10-23', 35, 'https://www.gutenberg.org/ebooks/13840', 'en', 3145), +(5232, 'The Prince and the Pauper, Part 6.', 'Twain, Mark', '2004-07-04', 6, 'https://www.gutenberg.org/ebooks/7159', 'en', 98), +(5233, 'The Naval Pioneers of Australia', 'Jeffery, Walter', '2004-07-22', 22, 'https://www.gutenberg.org/ebooks/12992', 'en', 2471), +(5234, 'The Cloud', 'Prentice, Sartell', '2013-01-18', 7, 'https://www.gutenberg.org/ebooks/41867', 'en', 335), +(5235, 'Cronache Letterarie', 'Capuana, Luigi', '2011-05-15', 5, 'https://www.gutenberg.org/ebooks/36109', 'it', 2156), +(5236, 'Dulce Nombre (Novela)', 'Espina, Concha', '2013-12-27', 20, 'https://www.gutenberg.org/ebooks/44529', 'es', 1384), +(5237, 'Viehättävä vastustajatar: Seikkailuromaani', 'Karila, Olli', '2018-09-14', 3, 'https://www.gutenberg.org/ebooks/57902', 'fi', 323), +(5238, 'The Life and Experiences of an Ex-Convict in Port Macquarie', 'Woomera', '2018-10-27', 12, 'https://www.gutenberg.org/ebooks/58176', 'en', 3146), +(5239, 'Le sorcier de Meudon', 'Lévi, Éliphas', '2004-12-05', 17, 'https://www.gutenberg.org/ebooks/14259', 'fr', 61), +(5240, 'Early American Scientific Instruments and Their Makers', 'Bedini, Silvio A.', '2012-03-14', 33, 'https://www.gutenberg.org/ebooks/39141', 'en', 3147), +(5241, 'The Return of Clubfoot', 'Williams, Valentine', '2019-07-10', 73, 'https://www.gutenberg.org/ebooks/59898', 'en', 3148), +(5242, 'The Violin\nIts Famous Makers and Their Imitators', 'Hart, George', '2007-07-01', 35, 'https://www.gutenberg.org/ebooks/21982', 'en', 525), +(5243, 'Legend of Barkhamsted Light House\nA Tale from the Litchfield Hills of Connecticut', 'Mills, Lewis Sprague', '2011-08-01', 5, 'https://www.gutenberg.org/ebooks/36935', 'en', 3149), +(5244, 'Prince Prigio', 'Lang, Andrew', '2007-03-19', 38, 'https://www.gutenberg.org/ebooks/20850', 'en', 388), +(5245, 'Histoire de France 1689-1715 (Volume 16/19)', 'Michelet, Jules', '2012-07-10', 22, 'https://www.gutenberg.org/ebooks/40189', 'fr', 624), +(5246, 'The Christian Religion: An Enquiry', 'Ingersoll, Robert Green', '2011-11-22', 29, 'https://www.gutenberg.org/ebooks/38093', 'en', 1759), +(5247, 'The American Journal of Pharmacy, March, 1907', 'Various', '2019-04-17', 12, 'https://www.gutenberg.org/ebooks/59296', 'en', 3150), +(5248, 'Siddhartha: A Poem of India', 'Hesse, Hermann', '2018-11-24', 133, 'https://www.gutenberg.org/ebooks/58344', 'en', 3151), +(5249, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 383, August 1, 1829', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11519', 'en', 133), +(5250, 'Deephaven and Selected Stories & Sketches', 'Jewett, Sarah Orne', '2005-06-04', 19, 'https://www.gutenberg.org/ebooks/15985', 'en', 770), +(5251, 'Lord Kelvin: An account of his scientific life and work', 'Gray, Andrew', '2012-04-04', 20, 'https://www.gutenberg.org/ebooks/39373', 'en', 3152), +(5252, 'Sheilah McLeod: A Heroine of the Back Blocks', 'Boothby, Guy', '2012-11-03', 20, 'https://www.gutenberg.org/ebooks/41269', 'en', 792), +(5253, 'The Story of Versailles', 'Payne, Francis Loring', '2005-02-01', 53, 'https://www.gutenberg.org/ebooks/14857', 'en', 3153), +(5254, 'Thoughts and Counsels of the Saints for Every Day of the Year', NULL, '2010-09-05', 15, 'https://www.gutenberg.org/ebooks/33649', 'en', 3154), +(5255, 'The American Missionary — Volume 33, No. 10, October, 1879', 'Various', '2017-04-23', 1, 'https://www.gutenberg.org/ebooks/54589', 'en', 562), +(5256, 'British Airships, Past, Present, and Future', 'Whale, George', '1996-12-01', 38, 'https://www.gutenberg.org/ebooks/762', 'en', 3155), +(5257, 'The Connecticut Wits, and Other Essays', 'Beers, Henry A. (Henry Augustin)', '2016-01-14', 15, 'https://www.gutenberg.org/ebooks/50915', 'en', 3156), +(5258, 'The Home Book of Verse — Volume 1', 'Stevenson, Burton Egbert', '2001-05-01', 38, 'https://www.gutenberg.org/ebooks/2619', 'en', 54), +(5259, 'Les Éthiopiennes, ou Théagènes et Chariclée, tomes 1-3', 'Heliodorus, of Emesa', '2015-05-20', 16, 'https://www.gutenberg.org/ebooks/49004', 'fr', 48), +(5260, 'The Bible, Douay-Rheims, Book 23: Ecclesiastes\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8323', 'en', 3157), +(5261, 'Tableau du climat et du sol des États-Unis d\'Amérique\r\nSuivi d\'éclaircissemens sur la Floride, sur la colonie française au Scioto, sur quelques colonies canadiennes, et sur les sauvages', 'Volney, C.-F. (Constantin-François)', '2014-09-16', 8, 'https://www.gutenberg.org/ebooks/46870', 'fr', 3158), +(5262, 'Geschiedenis der Europeesche Volken', 'Kohl, Johann Georg', '2006-11-12', 26, 'https://www.gutenberg.org/ebooks/19774', 'nl', 3159), +(5263, 'Een Meisje-Student over \'Een Meisje-Studentje\'', 'Sillevis, Annie', '2009-01-20', 10, 'https://www.gutenberg.org/ebooks/27847', 'nl', 3160), +(5264, 'Sam Lawson\'s Oldtown Fireside Stories\nWith Illustrations', 'Stowe, Harriet Beecher', '2015-10-04', 15, 'https://www.gutenberg.org/ebooks/50129', 'en', 2820), +(5265, 'The Wild Huntress: Love in the Wilderness', 'Reid, Mayne', '2009-02-09', 32, 'https://www.gutenberg.org/ebooks/28033', 'en', 3161), +(5266, 'O poeta Chiado\r\n(Novas investigações sobre a sua vida e escriptos)', 'Pimentel, Alberto', '2007-09-04', 5, 'https://www.gutenberg.org/ebooks/22509', 'pt', 3162), +(5267, 'Jack of No Trades', 'Smith, Evelyn E.', '2015-08-31', 26, 'https://www.gutenberg.org/ebooks/49838', 'en', 26), +(5268, 'Felony', 'Causey, James', '2010-04-08', 47, 'https://www.gutenberg.org/ebooks/31922', 'en', 26), +(5269, 'Montezuma\'s Castle, and Other Weird Tales', 'Cory, Charles B. (Charles Barney)', '2008-10-22', 29, 'https://www.gutenberg.org/ebooks/26995', 'en', 112), +(5270, 'Tom Sawyer, Detective', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9037', 'en', 128), +(5271, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 01, April 24, 1858', NULL, '2015-02-19', 15, 'https://www.gutenberg.org/ebooks/48310', 'en', 1741), +(5272, 'Flight From Tomorrow', 'Piper, H. Beam', '2006-05-27', 70, 'https://www.gutenberg.org/ebooks/18460', 'en', 26), +(5273, 'Emerson and Other Essays', 'Chapman, John Jay', '2004-08-02', 37, 'https://www.gutenberg.org/ebooks/13088', 'en', 3163), +(5274, 'Tecumseh : a Drama', 'Mair, Charles', '2004-11-01', 11, 'https://www.gutenberg.org/ebooks/6843', 'en', 3164), +(5275, 'The Storm', 'Ostrovsky, Aleksandr Nikolaevich', '2005-04-01', 39, 'https://www.gutenberg.org/ebooks/7991', 'en', 3165), +(5276, 'Pembroke: A Novel', 'Freeman, Mary Eleanor Wilkins', '2005-12-31', 30, 'https://www.gutenberg.org/ebooks/17428', 'en', 539), +(5277, 'The Boy Scouts Afoot in France; or, With the Red Cross Corps at the Marne', 'Carter, Herbert, active 1909-1917', '2014-11-15', 10, 'https://www.gutenberg.org/ebooks/47358', 'en', 1753), +(5278, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 487, April 30, 1831', 'Various', '2004-07-20', 11, 'https://www.gutenberg.org/ebooks/12966', 'en', 133), +(5279, 'The MS. in a Red Box', 'Hamilton, John A. (John Arthur)', '2011-04-06', 14, 'https://www.gutenberg.org/ebooks/35778', 'en', 3166), +(5280, 'Student und Alkohol\nVortrag gehalten am 21. Februar 1910', 'Loewenfeld, Leopold', '2009-07-05', 27, 'https://www.gutenberg.org/ebooks/29327', 'de', 3167), +(5281, 'The Churches of Paris, from Clovis to Charles X', 'Beale, Sophia', '2012-06-14', 11, 'https://www.gutenberg.org/ebooks/39989', 'en', 3168), +(5282, 'Poker Jim, Gentleman, and Other Tales and Sketches', 'Lydston, G. Frank (George Frank)', '2019-03-11', 16, 'https://www.gutenberg.org/ebooks/59050', 'en', 112), +(5283, 'Expositor\'s Bible: The Book of Jeremiah, Chapters XXI.-LII.', 'Bennett, W. H. (William Henry)', '2013-01-21', 16, 'https://www.gutenberg.org/ebooks/41893', 'en', 3169), +(5284, 'Good Form for All Occasions\nA Manual of Manners, Dress and Entertainment for Both Men and Women', 'Hall, Florence Howe', '2018-03-24', 49, 'https://www.gutenberg.org/ebooks/56824', 'en', 788), +(5285, 'John Lothrop Motley, A Memoir — Complete', 'Holmes, Oliver Wendell', '2004-09-29', 7, 'https://www.gutenberg.org/ebooks/4728', 'en', 1055), +(5286, 'Evening Round-Up\r\nMore Good Stuff Like Pep', 'Hunter, William Crosbie', '2006-12-12', 10, 'https://www.gutenberg.org/ebooks/20098', 'en', 740), +(5287, 'The Wreck of the Red Bird: A Story of the Carolina Coast', 'Eggleston, George Cary', '2012-10-05', 11, 'https://www.gutenberg.org/ebooks/40941', 'en', 1655), +(5288, 'Index of the Project Gutenberg Works of Thomas Dixon', 'Dixon, Thomas, Jr.', '2018-10-28', 7, 'https://www.gutenberg.org/ebooks/58182', 'en', 198), +(5289, 'Three Years in the Sixth Corps\nA Concise Narrative of Events in the Army of the Potomac,\nfrom 1861 to the Close of the Rebellion, April, 1865', 'Stevens, George T. (George Thomas)', '2007-06-30', 26, 'https://www.gutenberg.org/ebooks/21976', 'en', 1489), +(5290, 'Business Administration: Theory, Practice and Application. [Vol. 1] Business Economics', NULL, '2017-11-21', 206, 'https://www.gutenberg.org/ebooks/56018', 'en', 977), +(5291, 'From Fort Henry to Corinth', 'Force, M. F. (Manning Ferguson)', '2008-01-27', 15, 'https://www.gutenberg.org/ebooks/24438', 'en', 2723), +(5292, 'Martyria; or, Andersonville Prison', 'Hamlin, Augustus C. (Augustus Choate)', '2011-10-21', 16, 'https://www.gutenberg.org/ebooks/37813', 'en', 3170), +(5293, 'A Select Collection of Valuable and Curious Arts and Interesting Experiments,\r\nWhich are Well Explained and Warranted Genuine and may be Performed Easily, Safely, and at Little Expense.', 'Unknown', '2011-11-20', 182, 'https://www.gutenberg.org/ebooks/38067', 'en', 2161), +(5294, 'The Underworld of Oregon Caves National Monument', 'Contor, Roger J.', '2019-04-12', 25, 'https://www.gutenberg.org/ebooks/59262', 'en', 3171), +(5295, 'Yussuf the Guide; Or, the Mountain Bandits\r\nBeing a Story of Strange Adventure in Asia Minor', 'Fenn, George Manville', '2007-05-08', 21, 'https://www.gutenberg.org/ebooks/21378', 'en', 270), +(5296, 'Catherine De Medici', 'Balzac, Honoré de', '2004-06-26', 71, 'https://www.gutenberg.org/ebooks/1854', 'en', 58), +(5297, 'Down South', 'Hardy, Duffus, Lady', '2016-12-18', 17, 'https://www.gutenberg.org/ebooks/53758', 'en', 3172), +(5298, 'Submarine U93', 'Gilson, Charles', '2012-03-05', 48, 'https://www.gutenberg.org/ebooks/39387', 'en', 1319), +(5299, 'Polly of the Hospital Staff', 'Dowd, Emma C.', '2005-06-03', 18, 'https://www.gutenberg.org/ebooks/15971', 'en', 751), +(5300, 'Personal Memoirs of U. S. Grant — Volume 2', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 35, 'https://www.gutenberg.org/ebooks/1068', 'en', 1433), +(5301, 'Autumn Glory; Or, The Toilers of the Field', 'Bazin, René', '2011-12-09', 19, 'https://www.gutenberg.org/ebooks/38255', 'en', 3173), +(5302, 'La Chartreuse De Parme', 'Stendhal', '1997-01-01', 98, 'https://www.gutenberg.org/ebooks/796', 'fr', 1351), +(5303, 'The Tale of Henrietta Hen', 'Bailey, Arthur Scott', '2006-06-22', 31, 'https://www.gutenberg.org/ebooks/18652', 'en', 3174), +(5304, 'Christmastide: Its History, Festivities, and Carols', 'Sandys, William', '2015-01-13', 15, 'https://www.gutenberg.org/ebooks/47956', 'en', 949), +(5305, 'Sights from a Steeple (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9205', 'en', 3175), +(5306, 'A line-o\'-verse or two', 'Taylor, Bert Leston', '2009-09-20', 19, 'https://www.gutenberg.org/ebooks/30038', 'en', 8), +(5307, 'Journal of Entomology and Zoology, Vol. 09, No. 3, September 1917', 'Various', '2015-01-31', 21, 'https://www.gutenberg.org/ebooks/48122', 'en', 3176), +(5308, 'Donne, madonne e bimbi', 'Panzini, Alfredo', '2013-03-27', 8, 'https://www.gutenberg.org/ebooks/42418', 'it', 892), +(5309, 'Bunyan', 'Froude, James Anthony', '2009-09-07', 36, 'https://www.gutenberg.org/ebooks/29929', 'en', 3177), +(5310, 'Meeting of the Minds', 'Sheckley, Robert', '2016-04-22', 60, 'https://www.gutenberg.org/ebooks/51833', 'en', 26), +(5311, 'The Origin of Man and of His Superstitions', 'Read, Carveth', '2014-09-17', 36, 'https://www.gutenberg.org/ebooks/46884', 'en', 3178), +(5312, 'Report of the National Library Service for the Year Ended 31 March 1958', 'New Zealand. National Library Service', '2006-11-13', 3, 'https://www.gutenberg.org/ebooks/19780', 'en', 3179), +(5313, 'Contigo Pan y Cebolla', 'Gorostiza, Manuel Eduardo de', '2004-05-01', 63, 'https://www.gutenberg.org/ebooks/12368', 'en', 188), +(5314, 'Evolution of Expression, Volume 2—Revised\nA Compilation of Selections Illustrating the Four Stages of Development in Art As Applied to Oratory; Twenty-Eighth Edition', 'Emerson, Charles Wesley', '2010-11-29', 17, 'https://www.gutenberg.org/ebooks/34498', 'en', 1725), +(5315, 'Applied Design for Printers\r\nA Handbook of the Principles of Arrangement, with Brief Comment on the Periods of Design Which Have Most Strongly Influenced Printing\r\nTypographic Technical Series for Apprentices #43', 'Gage, Harry Lawrence', '2009-12-30', 29, 'https://www.gutenberg.org/ebooks/30804', 'en', 3180), +(5316, 'Harper\'s Young People, August 31, 1880\nAn Illustrated Weekly', 'Various', '2009-06-13', 6, 'https://www.gutenberg.org/ebooks/29115', 'en', 479), +(5317, 'Libro della divina dottrina: Dialogo della divina provvidenza', 'Catherine, of Siena, Saint', '2008-10-19', 32, 'https://www.gutenberg.org/ebooks/26961', 'it', 3181), +(5318, 'The Atlantic Monthly, Volume 02, No. 13, November, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-01-01', 6, 'https://www.gutenberg.org/ebooks/10867', 'en', 1227), +(5319, 'Ali Baba, or the Forty Thieves', 'Unknown', '2011-10-09', 85, 'https://www.gutenberg.org/ebooks/37679', 'en', 1113), +(5320, 'The Life & Letters of Peter Ilich Tchaikovsky', 'Chaikovskii, Modest', '2014-03-29', 45, 'https://www.gutenberg.org/ebooks/45259', 'en', 3182), +(5321, 'Songs from Books', 'Kipling, Rudyard', '2005-04-03', 211, 'https://www.gutenberg.org/ebooks/15529', 'en', 8), +(5322, 'Types of News Writing', 'Bleyer, Willard Grosvenor', '2019-05-25', 28, 'https://www.gutenberg.org/ebooks/59606', 'en', 3183), +(5323, 'The Monarchs of the Main; Or, Adventures of the Buccaneers. Volume 1 (of 3)', 'Thornbury, Walter', '2012-01-21', 81, 'https://www.gutenberg.org/ebooks/38631', 'en', 10), +(5324, 'Games for Hallow-e\'en', 'Blain, Mary E.', '2004-06-01', 32, 'https://www.gutenberg.org/ebooks/5890', 'en', 1560), +(5325, 'The Madness of Mr. Lister\nCaptains All, Book 9.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11189', 'en', 72), +(5326, 'Evolution of Expression — Volume 1', 'Emerson, Charles Wesley', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4942', 'en', 3184), +(5327, 'Latter-Day Sweethearts', 'Harrison, Burton, Mrs.', '2015-07-19', 14, 'https://www.gutenberg.org/ebooks/49494', 'en', 109), +(5328, 'The Rover Boys at Big Horn Ranch; Or, The Cowboys\' Double Round-Up', 'Stratemeyer, Edward', '2008-09-05', 15, 'https://www.gutenberg.org/ebooks/26539', 'en', 1877), +(5329, 'The Finger of Fate: A Romance', 'Reid, Mayne', '2011-04-19', 17, 'https://www.gutenberg.org/ebooks/35912', 'en', 61), +(5330, 'The American Missionary — Volume 33, No. 06, June, 1879', 'Various', '2017-02-09', 3, 'https://www.gutenberg.org/ebooks/54119', 'en', 395), +(5331, 'In de Amsterdamsche Jodenbuurt\nDe Aarde en haar Volken, 1907', 'Feith, Jan', '2006-04-23', 25, 'https://www.gutenberg.org/ebooks/18236', 'nl', 3185), +(5332, 'Rosmersholm', 'Ibsen, Henrik', '2000-08-01', 140, 'https://www.gutenberg.org/ebooks/2289', 'en', 798), +(5333, 'Mormon Settlement in Arizona\nA Record of Peaceful Conquest of the Desert', 'McClintock, James H.', '2006-01-01', 25, 'https://www.gutenberg.org/ebooks/9661', 'en', 3186), +(5334, 'Bee Keeping', 'Benton, Frank', '2015-03-21', 22, 'https://www.gutenberg.org/ebooks/48546', 'en', 87), +(5335, '玉嬌梨', 'Tianhuazangzhuren', '2007-12-17', 15, 'https://www.gutenberg.org/ebooks/23877', 'zh', 3187), +(5336, 'Nan of Music Mountain', 'Spearman, Frank H. (Frank Hamilton)', '2009-08-02', 17, 'https://www.gutenberg.org/ebooks/29571', 'en', 323), +(5337, 'Sisters', 'North, Grace May', '2013-05-29', 11, 'https://www.gutenberg.org/ebooks/42840', 'en', 3188), +(5338, 'Chambers\'s Edinburgh Journal, No. 453\nVolume 18, New Series, September 4, 1852', 'Various', '2007-08-01', 14, 'https://www.gutenberg.org/ebooks/22199', 'en', 18), +(5339, 'The Friendly Daemon, or the Generous Apparition\r\nBeing a True Narrative of a Miraculous Cure, Newly Perform\'d Upon That Famous Deaf and Dumb Gentleman, Dr. Duncan Campbel, by a Familiar Spirit That Appear\'d to Him in a White Surplice, Like a Cathedral Singing Boy', 'Defoe, Daniel', '2017-06-16', 19, 'https://www.gutenberg.org/ebooks/54925', 'en', 3189), +(5340, 'Mr. Midshipman Easy', 'Marryat, Frederick', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6629', 'en', 1398), +(5341, 'A Hand-book to the Primates, Volume 2 (of 2)', 'Forbes, Henry O. (Henry Ogg)', '2013-10-23', 17, 'https://www.gutenberg.org/ebooks/43992', 'en', 3190), +(5342, 'The Pursuit of the House-Boat', 'Bangs, John Kendrick', '2002-04-01', 57, 'https://www.gutenberg.org/ebooks/3169', 'en', 580), +(5343, 'The Art of Money Getting; Or, Golden Rules for Making Money', 'Barnum, P. T. (Phineas Taylor)', '2005-07-01', 872, 'https://www.gutenberg.org/ebooks/8581', 'en', 3191), +(5344, 'Le Voyage de Monsieur Perrichon\r\nComédie en quatre actes', 'Labiche, Eugène', '2005-12-01', 25, 'https://www.gutenberg.org/ebooks/9453', 'fr', 3017), +(5345, 'Operation Terror', 'Leinster, Murray', '2006-02-27', 45, 'https://www.gutenberg.org/ebooks/17870', 'en', 67), +(5346, 'Summer Provinces by the Sea\r\nA description of the Vacation Resources of Eastern Quebec and the Maritime Provinces of Canada, in the territory served by the Canadian Government Railways', 'Prince Edward Island Railway', '2015-04-24', 14, 'https://www.gutenberg.org/ebooks/48774', 'en', 3192), +(5347, 'Told in a French Garden\nAugust, 1914', 'Aldrich, Mildred', '2006-03-16', 32, 'https://www.gutenberg.org/ebooks/18004', 'en', 179), +(5348, 'The Missionary', 'Griffith, George Chetwynd', '2009-08-21', 22, 'https://www.gutenberg.org/ebooks/29743', 'en', 61), +(5349, 'L\'Abbe Constantin — Volume 2', 'Halévy, Ludovic', '2003-04-01', 14, 'https://www.gutenberg.org/ebooks/3955', 'en', 48), +(5350, 'Le droit à la force', 'Lesueur, Daniel', '2016-04-05', 4, 'https://www.gutenberg.org/ebooks/51659', 'fr', 259), +(5351, 'Herodes und Mariamne: Eine Tragödie in fünf Akten', 'Hebbel, Friedrich', '2001-10-01', 26, 'https://www.gutenberg.org/ebooks/2887', 'de', 3193), +(5352, 'Contos do Norte', 'Carvalho, João Marques de', '2009-05-04', 18, 'https://www.gutenberg.org/ebooks/28691', 'pt', 61), +(5353, 'La mer', 'Michelet, Jules', '2007-11-01', 26, 'https://www.gutenberg.org/ebooks/23279', 'fr', 871), +(5354, 'The Belgians to the Front', 'Fiske, James', '2006-07-16', 9, 'https://www.gutenberg.org/ebooks/18838', 'en', 146), +(5355, 'Samuel Richardson\'s Introduction to Pamela', 'Richardson, Samuel', '2008-03-17', 31, 'https://www.gutenberg.org/ebooks/24860', 'en', 3194), +(5356, 'Tracked by Wireless', 'Le Queux, William', '2019-05-04', 36, 'https://www.gutenberg.org/ebooks/59434', 'en', 3195), +(5357, 'Mask of Death', 'Ernst, Paul', '2010-06-20', 46, 'https://www.gutenberg.org/ebooks/32905', 'en', 1541), +(5358, 'Golden Face: A Tale of the Wild West', 'Mitford, Bertram', '2011-07-03', 13, 'https://www.gutenberg.org/ebooks/36599', 'en', 3196), +(5359, 'Alcoholic Fermentation\nSecond Edition, 1914', 'Harden, Arthur', '2014-02-23', 35, 'https://www.gutenberg.org/ebooks/44985', 'en', 3197), +(5360, 'Pharoah\'s Army Got Drownded', '\"Colored Quartet\" (name unknown)', '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10269', 'en', 3198), +(5361, 'The Captain of the Janizaries\nA story of the times of Scanderberg and the fall of Constantinople', 'Ludlow, James M. (James Meeker)', '2012-08-17', 28, 'https://www.gutenberg.org/ebooks/40519', 'en', 98), +(5362, 'Scientific American Supplement, No. 648, June 2, 1888.', 'Various', '2011-12-24', 16, 'https://www.gutenberg.org/ebooks/38403', 'en', 210), +(5363, 'Frank Reade, Jr., and His New Steam Man; or, the Young Inventor\'s Trip to the Far West\r\nFrank Reade Library Vol. I', 'Senarens, Luis', '2017-01-09', 17, 'https://www.gutenberg.org/ebooks/53932', 'en', 26), +(5364, 'An Appeal to Honour and Justice, Though It Be of His Worst Enemies.\nBeing A True Account of His Conduct in Public Affairs.', 'Defoe, Daniel', '2010-04-26', 26, 'https://www.gutenberg.org/ebooks/32139', 'en', 3199), +(5365, 'Two banks of the Seine (Les Deux Rives)', 'Vandérem, Fernand', '2014-06-01', 16, 'https://www.gutenberg.org/ebooks/45857', 'en', 1165), +(5366, 'Les mutations du livre', 'Lebert, Marie', '2008-10-26', 37, 'https://www.gutenberg.org/ebooks/27044', 'fr', 2047), +(5367, 'The Moving Picture Girls at Sea\nor, A Pictured Shipwreck That Became Real', 'Hope, Laura Lee', '2006-06-27', 22, 'https://www.gutenberg.org/ebooks/18699', 'en', 3200), +(5368, 'Rides on Railways', 'Sidney, Samuel', '2004-08-25', 14, 'https://www.gutenberg.org/ebooks/13271', 'en', 3201), +(5369, 'Œuvres Complètes de Chamfort (Tome 3)\r\nRecueillies et publiées, avec une notice historique sur la vie et les écrits de l\'auteur.', 'Chamfort, Sébastien-Roch-Nicolas', '2013-08-18', 34, 'https://www.gutenberg.org/ebooks/43501', 'fr', 742), +(5370, 'The Songs of Ranild', 'Borrow, George', '2009-05-15', 7, 'https://www.gutenberg.org/ebooks/28830', 'en', 8), +(5371, 'A Calendar of Scottish Saints', 'Barrett, Michael', '2010-01-29', 16, 'https://www.gutenberg.org/ebooks/31121', 'en', 3202), +(5372, 'Barbara Winslow, Rebel', 'Ellis, Beth', '2017-08-30', 13, 'https://www.gutenberg.org/ebooks/55464', 'en', 2915), +(5373, 'The International Magazine, Volume 2, No. 3, February, 1851', 'Various', '2008-08-05', 19, 'https://www.gutenberg.org/ebooks/26196', 'en', 2522), +(5374, 'Mémoires de Mr. d\'Artagnan', 'Courtilz de Sandras, Gatien', '2009-01-24', 58, 'https://www.gutenberg.org/ebooks/27878', 'fr', 1247), +(5375, 'You Never Know Your Luck; being the story of a matrimonial deserter. Volume 2.', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6286', 'en', 332), +(5376, 'More Celtic Fairy Tales', NULL, '2010-11-27', 76, 'https://www.gutenberg.org/ebooks/34453', 'en', 3203), +(5377, 'Sureeko Suomi Jumalan mielen mukaan?\nMuutamia Raamatun kysymyksiä nykyisiin oloihin', 'Rosendal, Mauno', '2015-10-03', 7, 'https://www.gutenberg.org/ebooks/50116', 'fi', 3204), +(5378, 'A Comedy of Masks: A Novel', 'Dowson, Ernest Christopher', '2005-09-16', 14, 'https://www.gutenberg.org/ebooks/16703', 'en', 61), +(5379, 'Jane Austen, Her Life and Letters: A Family Record', 'Austen-Leigh, Richard Arthur', '2007-09-07', 42, 'https://www.gutenberg.org/ebooks/22536', 'en', 1503), +(5380, 'La sorte', 'De Roberto, Federico', '2015-08-28', 10, 'https://www.gutenberg.org/ebooks/49807', 'it', 474), +(5381, 'On Something', 'Belloc, Hilaire', '2005-01-01', 42, 'https://www.gutenberg.org/ebooks/7354', 'en', 20), +(5382, 'Personal Recollections of Chickamauga\r\nA Paper Read before the Ohio Commandery of the Military Order of the Loyal Legion of the United States', 'Carnahan, James R. (James Richards)', '2011-03-15', 8, 'https://www.gutenberg.org/ebooks/35581', 'en', 1717), +(5383, 'Inselwelt. Zweiter Band. Australische Skizzen.\nGesammelte Erzählungen.', 'Gerstäcker, Friedrich', '2014-06-22', 13, 'https://www.gutenberg.org/ebooks/46073', 'de', 3205), +(5384, 'Rambles of a Naturalist', 'Godman, John D. (John Davidson)', '2011-06-02', 6, 'https://www.gutenberg.org/ebooks/36304', 'en', 871), +(5385, 'The Antiquarian Magazine & Bibliographer; Vol. 4, July-Dec 1884', 'Various', '2016-07-25', 16, 'https://www.gutenberg.org/ebooks/52641', 'en', 3206), +(5386, 'Folk-Lore and Legends: Scandinavian', NULL, '2005-02-26', 35, 'https://www.gutenberg.org/ebooks/15186', 'en', 3207), +(5387, 'Max', 'Thurston, Katherine Cecil', '2004-11-15', 34, 'https://www.gutenberg.org/ebooks/14054', 'en', 3208), +(5388, 'A Literary History of Ireland, from Earliest Times to the Present Day', 'Hyde, Douglas', '2016-12-23', 16, 'https://www.gutenberg.org/ebooks/53793', 'en', 3209), +(5389, 'The Adventures of Harry Revel', 'Quiller-Couch, Arthur', '2007-01-03', 23, 'https://www.gutenberg.org/ebooks/20261', 'en', 3210), +(5390, 'Short Stories for English Courses', NULL, '2004-04-01', 79, 'https://www.gutenberg.org/ebooks/5403', 'en', 112), +(5391, 'The Boy Spies of Philadelphia\nThe Story of How the Young Spies Helped the Continental Army at Valley Forge', 'Otis, James', '2014-01-21', 19, 'https://www.gutenberg.org/ebooks/44724', 'en', 3211), +(5392, 'The Judas Valley', 'Garrett, Randall', '2008-06-07', 75, 'https://www.gutenberg.org/ebooks/25713', 'en', 26), +(5393, 'Summer on the Lakes, in 1843', 'Fuller, Margaret', '2004-03-01', 54, 'https://www.gutenberg.org/ebooks/11526', 'en', 3212), +(5394, 'Memoirs of Emma Courtney', 'Hays, Mary', '2012-11-01', 50, 'https://www.gutenberg.org/ebooks/41256', 'en', 3213), +(5395, 'The Tailor of Gloucester', 'Potter, Beatrix', '2005-02-02', 121, 'https://www.gutenberg.org/ebooks/14868', 'en', 548), +(5396, 'General Catholic Devotions', NULL, '2010-09-09', 43, 'https://www.gutenberg.org/ebooks/33676', 'en', 3214), +(5397, 'Musical Myths and Facts, Volume 2 (of 2)', 'Engel, Carl', '2012-09-27', 5, 'https://www.gutenberg.org/ebooks/40384', 'en', 250), +(5398, 'Project Gutenberg Compilation of Short Stories by Chekhov', 'Chekhov, Anton Pavlovich', '2018-06-15', 1486, 'https://www.gutenberg.org/ebooks/57333', 'en', 934), +(5399, 'Smith College Stories\nTen Stories by Josephine Dodge Daskam', 'Bacon, Josephine Daskam', '2013-01-17', 29, 'https://www.gutenberg.org/ebooks/41858', 'en', 3215), +(5400, 'Villette', 'Brontë, Charlotte', '2007-04-26', 10, 'https://www.gutenberg.org/ebooks/21181', 'en', 3216), +(5401, 'Recollections of a Military Life', 'Adye, John, Sir', '2016-07-01', 15, 'https://www.gutenberg.org/ebooks/52473', 'en', 3217), +(5402, 'Botticelli', 'Binns, Henry Bryan', '2012-06-07', 21, 'https://www.gutenberg.org/ebooks/39942', 'en', 3218), +(5403, 'Yankee Ships and Yankee Sailors: Tales of 1812', 'Barnes, James', '2011-05-17', 20, 'https://www.gutenberg.org/ebooks/36136', 'en', 3219), +(5404, 'Patty\'s Suitors', 'Wells, Carolyn', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/5631', 'en', 3220), +(5405, 'Report on the Plans of the Various Railways before the Examiners of the House of Commons, 1864, so far as relates to the Parish of Kensington', 'Broadbridge, James', '2013-12-26', 11, 'https://www.gutenberg.org/ebooks/44516', 'en', 3221), +(5406, 'La séparation des Églises et de l\'État\nRapport fait au nom de la Commission de la Chambre des\nDéputés, suivi des pièces annexes', 'Briand, Aristide', '2018-10-22', 29, 'https://www.gutenberg.org/ebooks/58149', 'fr', 2780), +(5407, 'A Literary Pilgrimage Among the Haunts of Famous British Authors', 'Wolfe, Theodore F. (Theodore Frelinghuysen)', '2012-02-15', 3, 'https://www.gutenberg.org/ebooks/38890', 'en', 3222), +(5408, 'The Philippine Islands, 1493-1898 — Volume 10 of 55\r\n1597-1599\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2004-12-06', 48, 'https://www.gutenberg.org/ebooks/14266', 'en', 1334), +(5409, 'The Rover Boys in the Air; Or, From College Campus to the Clouds', 'Stratemeyer, Edward', '2006-12-07', 28, 'https://www.gutenberg.org/ebooks/20053', 'en', 128), +(5410, 'The Chapter Ends', 'Anderson, Poul', '2012-10-14', 142, 'https://www.gutenberg.org/ebooks/41064', 'en', 26), +(5411, 'The Revolt of the Angels', 'France, Anatole', '2010-05-30', 283, 'https://www.gutenberg.org/ebooks/32596', 'en', 3223), +(5412, '玉梨魂', 'Xu, Zhenya', '2008-05-19', 10, 'https://www.gutenberg.org/ebooks/25521', 'zh', 3224), +(5413, 'Contes de la Becasse', 'Maupassant, Guy de', '2004-03-01', 131, 'https://www.gutenberg.org/ebooks/11714', 'fr', 100), +(5414, 'Mary Louise at Dorfield', 'Sampson, Emma Speed', '2018-05-06', 17, 'https://www.gutenberg.org/ebooks/57101', 'en', 3225), +(5415, 'Sulamith: A Romance of Antiquity', 'Kuprin, A. I. (Aleksandr Ivanovich)', '2010-08-16', 32, 'https://www.gutenberg.org/ebooks/33444', 'en', 3226), +(5416, 'Index of Project Gutenberg Works on Black History\nA 2019 Project Gutenberg Contribution for Black History Month', 'Various', '2019-02-27', 9, 'https://www.gutenberg.org/ebooks/58975', 'en', 3227), +(5417, 'Herodias', 'Flaubert, Gustave', '2006-02-11', 43, 'https://www.gutenberg.org/ebooks/1291', 'en', 3228), +(5418, 'Das Geheimnis der Gioconda: Das Tagebuch des Diebes', 'Schwitzky, Ernst Bernhard Joseph Theodor', '2013-09-15', 10, 'https://www.gutenberg.org/ebooks/43733', 'de', 3229), +(5419, 'Cliges: A Romance', 'Chrétien, de Troyes, active 12th century', '2000-11-01', 68, 'https://www.gutenberg.org/ebooks/2414', 'en', 3230), +(5420, 'Judas: Romance lirico em quatro jornadas', 'Lacerda, Augusto de', '2008-11-16', 8, 'https://www.gutenberg.org/ebooks/27276', 'pt', 3231), +(5421, 'History of the Gatling Gun Detachment, Fifth Army Corps, at Santiago\r\nWith a Few Unvarnished Truths Concerning that Expedition', 'Parker, John H. (John Henry)', '2004-11-01', 47, 'https://www.gutenberg.org/ebooks/6888', 'en', 3232), +(5422, 'Alexander\'s Bridge', 'Cather, Willa', '2006-03-08', 179, 'https://www.gutenberg.org/ebooks/94', 'en', 705), +(5423, '大唐三藏取經詩話', 'Various', '2017-05-25', 27, 'https://www.gutenberg.org/ebooks/54784', 'zh', 3233), +(5424, 'William of Germany', 'Shaw, Stanley', '2004-07-28', 23, 'https://www.gutenberg.org/ebooks/13043', 'en', 3234), +(5425, 'American Indian Fairy Tales', 'Larned, W. T. (William Trowbridge)', '2006-10-20', 24, 'https://www.gutenberg.org/ebooks/19579', 'en', 3235), +(5426, 'The Red Axe', 'Crockett, S. R. (Samuel Rutherford)', '2004-04-01', 36, 'https://www.gutenberg.org/ebooks/12191', 'en', 238), +(5427, 'Unikko ja ohdake', 'Kara, Jalmari', '2017-10-01', 13, 'https://www.gutenberg.org/ebooks/55656', 'fi', 175), +(5428, 'The Forerunners', 'Rolland, Romain', '2010-02-17', 16, 'https://www.gutenberg.org/ebooks/31313', 'en', 335), +(5429, 'Briefe an Ludwig Tieck (3/4)\nDritter Band', 'Tieck, Ludwig', '2015-06-14', 6, 'https://www.gutenberg.org/ebooks/49209', 'de', 3236), +(5430, 'Children of the Dead End: The Autobiography of an Irish Navvy', 'MacGill, Patrick', '2015-10-27', 42, 'https://www.gutenberg.org/ebooks/50324', 'en', 1763), +(5431, 'Ben-Hur: Kertomus Kristuksen ajoilta', 'Wallace, Lew', '2014-11-18', 10, 'https://www.gutenberg.org/ebooks/47393', 'fi', 942), +(5432, 'The Pioneers', 'Prichard, Katharine Susannah', '2010-12-15', 17, 'https://www.gutenberg.org/ebooks/34661', 'en', 3237), +(5433, 'The Home and the World', 'Tagore, Rabindranath', '2004-12-01', 195, 'https://www.gutenberg.org/ebooks/7166', 'en', 3238), +(5434, 'Some Notes on Early Woodcut Books, with a Chapter on Illuminated Manuscripts', 'Morris, William', '2014-07-10', 20, 'https://www.gutenberg.org/ebooks/46241', 'en', 3239), +(5435, 'Old St. Paul\'s Cathedral', 'Benham, William', '2005-08-15', 80, 'https://www.gutenberg.org/ebooks/16531', 'en', 3240), +(5436, 'Lyrical Ballads with Other Poems, 1800, Volume 2', 'Wordsworth, William', '2005-09-01', 41, 'https://www.gutenberg.org/ebooks/8912', 'en', 532), +(5437, 'To Whom This May Come\n1898', 'Bellamy, Edward', '2007-09-21', 20, 'https://www.gutenberg.org/ebooks/22704', 'en', 770), +(5438, 'The Book of Good Manners; a Guide to Polite Usage for All Social Functions', 'Green, Walter Cox', '2004-03-01', 64, 'https://www.gutenberg.org/ebooks/5255', 'en', 788), +(5439, 'Campaigning with Crook, and Stories of Army Life', 'King, Charles', '2011-09-20', 18, 'https://www.gutenberg.org/ebooks/37480', 'en', 3241), +(5440, 'Roy Blakeley\'s Motor Caravan', 'Fitzhugh, Percy Keese', '2013-11-13', 6, 'https://www.gutenberg.org/ebooks/44172', 'en', 2994), +(5441, 'War Brides: A Play in One Act', 'Wentworth, Marion Craig', '2005-01-05', 58, 'https://www.gutenberg.org/ebooks/14602', 'en', 612), +(5442, 'The Frog Prince and Other Stories', 'Crane, Walter', '2007-01-24', 122, 'https://www.gutenberg.org/ebooks/20437', 'en', 1007), +(5443, 'A Boy\'s Fortune; Or, The Strange Adventures of Ben Baker', 'Alger, Horatio, Jr.', '2016-05-07', 19, 'https://www.gutenberg.org/ebooks/52017', 'en', 3242), +(5444, 'Sonnets of Shakespeare\'s Ghost', 'Thornton, Gregory', '2008-07-06', 15, 'https://www.gutenberg.org/ebooks/25979', 'en', 3243), +(5445, 'Present at a Hanging and Other Ghost Stories', 'Bierce, Ambrose', '2003-08-01', 168, 'https://www.gutenberg.org/ebooks/4387', 'en', 112), +(5446, 'York Minster', 'Purey-Cust, Arthur P. (Arthur Perceval)', '2011-06-28', 10, 'https://www.gutenberg.org/ebooks/36552', 'en', 3244), +(5447, 'Le tragedie, gl\'inni sacri e le odi di Alessandro Manzoni', 'Manzoni, Alessandro', '2018-07-21', 19, 'https://www.gutenberg.org/ebooks/57565', 'it', 407), +(5448, 'The Story of Red Feather: A Tale of the American Frontier', 'Ellis, Edward Sylvester', '2007-12-31', 36, 'https://www.gutenberg.org/ebooks/24097', 'en', 3245), +(5449, 'English Costume', 'Calthrop, Dion Clayton', '2010-06-29', 51, 'https://www.gutenberg.org/ebooks/33020', 'en', 3246), +(5450, 'Miss Eden\'s Letters', 'Eden, Emily', '2012-11-18', 52, 'https://www.gutenberg.org/ebooks/41400', 'en', 3247), +(5451, 'A Patriotic Schoolgirl', 'Brazil, Angela', '2008-04-23', 54, 'https://www.gutenberg.org/ebooks/25145', 'en', 3248), +(5452, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 329, August 30, 1828', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11370', 'en', 133), +(5453, 'The Irish Penny Journal, Vol. 1 No. 44, May 1, 1841', 'Various', '2017-07-30', 3, 'https://www.gutenberg.org/ebooks/55232', 'en', 81), +(5454, 'Dick and Brownie', 'Quiller-Couch, Mabel', '2005-10-30', 24, 'https://www.gutenberg.org/ebooks/16969', 'en', 766), +(5455, 'Why a National Literature Cannot Flourish in the United States of North America', 'Rocchietti, Joseph', '2010-03-25', 9, 'https://www.gutenberg.org/ebooks/31777', 'en', 517), +(5456, 'The Story of Scraggles', 'James, George Wharton', '2013-03-09', 11, 'https://www.gutenberg.org/ebooks/42285', 'en', 318), +(5457, 'Harper\'s Young People, November 9, 1880\nAn Illustrated Monthly', 'Various', '2013-07-30', 2, 'https://www.gutenberg.org/ebooks/43357', 'en', 479), +(5458, 'To the Last Man', 'Grey, Zane', '2000-02-01', 129, 'https://www.gutenberg.org/ebooks/2070', 'en', 48), +(5459, 'The Trespasser', 'Lawrence, D. H. (David Herbert)', '2005-12-01', 40, 'https://www.gutenberg.org/ebooks/9498', 'en', 48), +(5460, 'Christmas Eve at Swamp\'s End', 'Duncan, Norman', '2008-12-25', 11, 'https://www.gutenberg.org/ebooks/27612', 'en', 179), +(5461, 'Notes and Queries, Number 45, September 7, 1850', 'Various', '2004-09-10', 12, 'https://www.gutenberg.org/ebooks/13427', 'en', 105), +(5462, 'Annie Kilburn : a Novel', 'Howells, William Dean', '2005-02-01', 35, 'https://www.gutenberg.org/ebooks/7502', 'en', 3249), +(5463, 'Prehistoric Textile Art of Eastern United States\r\nThirteenth Annual Report of the Beaurau of American Ethnology to the Secretary of the Smithsonian Institution 1891-1892, Government Printing Office, Washington, 1896, pages 3-46', 'Holmes, William Henry', '2006-11-27', 31, 'https://www.gutenberg.org/ebooks/19921', 'en', 3250), +(5464, 'Œuvres Complètes de Frédéric Bastiat, tome 4\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2014-08-19', 24, 'https://www.gutenberg.org/ebooks/46625', 'fr', 1745), +(5465, 'Ann Crosses a Secret Trail\nAnn Sterling Series #4', 'Grove, Harriet Pyne', '2016-04-08', 10, 'https://www.gutenberg.org/ebooks/51692', 'en', 3251), +(5466, 'Gilbertus Anglicus: Medicine of the Thirteenth Century', 'Handerson, Henry E. (Henry Ebenezer)', '2005-06-30', 26, 'https://www.gutenberg.org/ebooks/16155', 'en', 3252), +(5467, 'Four Lectures on Mathematics, Delivered at Columbia University in 1911', 'Hadamard, Jacques', '2009-08-24', 55, 'https://www.gutenberg.org/ebooks/29788', 'en', 3253), +(5468, 'The Fortieth Door', 'Bradley, Mary Hastings', '2007-08-01', 5, 'https://www.gutenberg.org/ebooks/22360', 'en', 2938), +(5469, 'Ancient Art and Ritual', 'Harrison, Jane Ellen', '2005-11-18', 83, 'https://www.gutenberg.org/ebooks/17087', 'en', 3254), +(5470, 'Vaeltavat teinit: Kertomus rahvaan elämästä', 'Rydberg, Viktor', '2015-12-21', 104, 'https://www.gutenberg.org/ebooks/50740', 'fi', 2168), +(5471, 'Some Little People', 'Kringle, George', '2010-11-03', 17, 'https://www.gutenberg.org/ebooks/34205', 'en', 31), +(5472, 'Poems: Patriotic, Religious, Miscellaneous', 'Ryan, Abram Joseph', '1997-06-01', 31, 'https://www.gutenberg.org/ebooks/937', 'en', 3255), +(5473, 'Studies in Spermatogenesis (Part 1 of 2)', 'Stevens, N. M. (Nettie Maria)', '2010-03-07', 12, 'https://www.gutenberg.org/ebooks/31545', 'en', 3052), +(5474, 'My Mark Twain (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 48, 'https://www.gutenberg.org/ebooks/3390', 'en', 1172), +(5475, 'The Water of the Wondrous Isles', 'Morris, William', '2005-08-01', 87, 'https://www.gutenberg.org/ebooks/8778', 'en', 580), +(5476, 'Mark Manning\'s Mission: The Story of a Shoe Factory Boy', 'Alger, Horatio, Jr.', '2017-06-28', 27, 'https://www.gutenberg.org/ebooks/55000', 'en', 3256), +(5477, 'Barnavännen, 1905-05\nIllustrerad Veckotidning för de Små', 'Various', '2008-12-05', 24, 'https://www.gutenberg.org/ebooks/27420', 'sv', 3257), +(5478, 'Studies in the Psychology of Sex, Volume 6\r\nSex in Relation to Society', 'Ellis, Havelock', '2004-10-08', 138, 'https://www.gutenberg.org/ebooks/13615', 'en', 369), +(5479, 'Old Indian Days', 'Eastman, Charles Alexander', '2008-07-05', 38, 'https://www.gutenberg.org/ebooks/339', 'en', 1357), +(5480, 'Die schwarzen Brüder: Eine abentheuerliche Geschichte. 3/3', 'Zschokke, Heinrich', '2013-07-09', 3, 'https://www.gutenberg.org/ebooks/43165', 'de', 61), +(5481, 'The Foreign Hand Tie', 'Garrett, Randall', '2009-11-18', 53, 'https://www.gutenberg.org/ebooks/30497', 'en', 2169), +(5482, 'A Midsummer Night\'s Dream', 'Shakespeare, William', '2000-07-01', 255, 'https://www.gutenberg.org/ebooks/2242', 'en', 3258), +(5483, 'Watch—Work—Wait\nOr, The Orphan\'s Victory', 'Myers, Sarah A. (Sarah Ann)', '2005-07-27', 10, 'https://www.gutenberg.org/ebooks/16367', 'en', 470), +(5484, 'Possessed', 'Moffett, Cleveland', '2007-07-26', 23, 'https://www.gutenberg.org/ebooks/22152', 'en', 26), +(5485, 'Paul Clifford — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7730', 'en', 356), +(5486, 'Prisoners in Devil\'s Bog: A Skippy Dare Mystery Story', 'Fitzhugh, Percy Keese', '2014-07-26', 15, 'https://www.gutenberg.org/ebooks/46417', 'en', 153), +(5487, 'Under the Southern Cross\r\nOr Travels in Australia, Tasmania, New Zealand, Samoa, and Other Pacific Islands', 'Ballou, Maturin M. (Maturin Murray)', '2010-10-05', 123, 'https://www.gutenberg.org/ebooks/34037', 'en', 3259), +(5488, 'The American Missionary — Volume 54, No. 02, April, 1900', 'Various', '2009-04-01', 7, 'https://www.gutenberg.org/ebooks/28468', 'en', 395), +(5489, 'The Devil\'s Dictionary', 'Bierce, Ambrose', '2007-10-01', 27, 'https://www.gutenberg.org/ebooks/23080', 'en', 3260), +(5490, 'The Arctic Whaleman; or, Winter in the Arctic Ocean', 'Holmes, Lewis', '2013-10-15', 16, 'https://www.gutenberg.org/ebooks/43959', 'en', 3261), +(5491, 'Goethe\'s Theory of Colours', 'Goethe, Johann Wolfgang von', '2015-11-29', 335, 'https://www.gutenberg.org/ebooks/50572', 'en', 603), +(5492, 'Purcell', 'Runciman, John F.', '2004-12-23', 20, 'https://www.gutenberg.org/ebooks/14430', 'en', 3262), +(5493, 'Christmas Short Works Collection 2006', 'Various', '2007-01-20', 8, 'https://www.gutenberg.org/ebooks/20605', 'en', 949), +(5494, 'The Rainbow Trail', 'Grey, Zane', '2004-02-01', 110, 'https://www.gutenberg.org/ebooks/5067', 'en', 315), +(5495, 'Gérôme', 'Keim, Albert', '2013-12-03', 15, 'https://www.gutenberg.org/ebooks/44340', 'en', 3263), +(5496, 'The Placid Pug, and Other Rhymes', 'Douglas, Alfred Bruce', '2014-04-01', 21, 'https://www.gutenberg.org/ebooks/45292', 'en', 1801), +(5497, 'Minnie; or, The Little Woman: A Fairy Story', 'Guild, C. S. (Caroline Snowden)', '2011-07-17', 19, 'https://www.gutenberg.org/ebooks/36760', 'en', 3264), +(5498, 'The Temptation of St. Anthony', 'Flaubert, Gustave', '2016-06-04', 101, 'https://www.gutenberg.org/ebooks/52225', 'en', 984), +(5499, 'The Underpup', 'Wylie, I. A. R. (Ida Alexa Ross)', '2010-07-20', 13, 'https://www.gutenberg.org/ebooks/33212', 'en', 179), +(5500, 'Two College Friends', 'Loring, Frederic W. (Frederic Wadsworth)', '2018-08-24', 11, 'https://www.gutenberg.org/ebooks/57757', 'en', 3265), +(5501, 'Peaceless Europe', 'Nitti, Francesco Saverio', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10090', 'en', 3266), +(5502, '鏡花緣', 'Li, Ruzhen', '2008-05-07', 35, 'https://www.gutenberg.org/ebooks/25377', 'zh', 1003), +(5503, 'A Sweet Girl Graduate', 'Meade, L. T.', '2004-01-01', 73, 'https://www.gutenberg.org/ebooks/4989', 'en', 2154), +(5504, 'Unitarianism', 'Tarrant, W. G. (William George)', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11142', 'en', 3267), +(5505, 'Mr. Durant of Salt Lake City, \"That Mormon\"', 'Rich, Ben. E. (Benjamin Erastus)', '2018-03-06', 7, 'https://www.gutenberg.org/ebooks/56685', 'en', 1071), +(5506, 'The Art of Entertaining', 'Sherwood, M. E. W. (Mary Elizabeth Wilson)', '2012-12-15', 12, 'https://www.gutenberg.org/ebooks/41632', 'en', 3268), +(5507, 'In Far Bolivia: A Story of a Strange Wild Land', 'Stables, Gordon', '2012-05-18', 208, 'https://www.gutenberg.org/ebooks/39728', 'en', 3269), +(5508, 'Ystäväni kertomus', 'Roos, Mathilda', '2011-09-19', 8, 'https://www.gutenberg.org/ebooks/37474', 'fi', 2168), +(5509, 'Trees Every Child Should Know: Easy Tree Studies for All Seasons of the Year', 'Rogers, Julia Ellen', '2013-11-15', 25, 'https://www.gutenberg.org/ebooks/44186', 'en', 3270), +(5510, 'Historia de las Indias (vol. 5 de 5)', 'Casas, Bartolomé de las', '2016-09-23', 42, 'https://www.gutenberg.org/ebooks/53131', 'es', 3271), +(5511, 'Bell\'s Cathedrals: The Priory Church of St. Bartholomew-the-Great, Smithfield\nA Short History of the Foundation and a Description of the\nFabric and also of the Church of St. Bartholomew-the-Less', 'Worley, George', '2007-05-17', 92, 'https://www.gutenberg.org/ebooks/21511', 'en', 3272), +(5512, 'Vi Bookar, Krokar och Rothar: Ur en stadskrönika', 'Bergman, Hjalmar', '2005-04-28', 14, 'https://www.gutenberg.org/ebooks/15724', 'sv', 420), +(5513, 'Essentials in Church History\r\nA History of the Church from the Birth of Joseph Smith to the Present Time (1922), with Introductory Chapters on the Antiquity of the Gospel and the \"Falling Away\"', 'Smith, Joseph Fielding', '2014-03-03', 28, 'https://www.gutenberg.org/ebooks/45054', 'en', 3273), +(5514, 'Jenseits der Schriftkultur — Band 3', 'Nadin, Mihai', '2003-08-01', 26, 'https://www.gutenberg.org/ebooks/4373', 'de', 3274), +(5515, 'O, Tannenbaum', 'Nebe-Quartett', '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10256', 'de', 583), +(5516, 'The American Missionary — Volume 36, No. 4, April, 1882', 'Various', '2018-07-29', 3, 'https://www.gutenberg.org/ebooks/57591', 'en', 395), +(5517, 'A Handbook of Some South Indian Grasses', 'Rangachari, K.', '2007-12-28', 40, 'https://www.gutenberg.org/ebooks/24063', 'en', 3275), +(5518, 'The Breaking Point', 'Rinehart, Mary Roberts', '1999-01-01', 56, 'https://www.gutenberg.org/ebooks/1601', 'en', 128), +(5519, 'The Chronicles of Rhoda', 'Cox, Florence Tinsley', '2012-08-18', 10, 'https://www.gutenberg.org/ebooks/40526', 'en', 2811), +(5520, 'Dusty Star', 'Baker, Olaf', '2010-04-23', 20, 'https://www.gutenberg.org/ebooks/32106', 'en', 3276), +(5521, 'Buffon\'s Natural History. Volume 10 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-06-03', 23, 'https://www.gutenberg.org/ebooks/45868', 'en', 871), +(5522, 'Seventeen Years in the Underworld', 'Scott, Wellington', '2018-01-27', 20, 'https://www.gutenberg.org/ebooks/56443', 'en', 3277), +(5523, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 275, September 29, 1827', 'Various', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11384', 'en', 133), +(5524, 'Buena Nueva de acuerdo a Marcos: Traducción de dominio público abierta a mejoras', NULL, '2004-05-01', 3, 'https://www.gutenberg.org/ebooks/12501', 'es', 3278), +(5525, 'Charles I\nMakers of History', 'Abbott, Jacob', '2008-10-01', 70, 'https://www.gutenberg.org/ebooks/26734', 'en', 3279), +(5526, 'Andrea Delfin', 'Heyse, Paul', '2002-04-01', 28, 'https://www.gutenberg.org/ebooks/3156', 'en', 2295); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(5527, 'Was General Thomas Slow at Nashville?\r\nWith a Description of the Greatest Cavalry Movement of the War and General James H. Wilson\'s Cavalry Operations in Tennessee, Alabama, and Georgia', 'Boynton, Henry V. (Henry Van)', '2010-03-26', 14, 'https://www.gutenberg.org/ebooks/31783', 'en', 3280), +(5528, 'The Merry Andrew; or, The Humours of a Fair.', 'Anonymous', '2015-08-14', 9, 'https://www.gutenberg.org/ebooks/49699', 'en', 3281), +(5529, 'La Madonna di Mamà: Romanzo del tempo della guerra', 'Panzini, Alfredo', '2013-03-07', 6, 'https://www.gutenberg.org/ebooks/42271', 'it', 579), +(5530, 'The Way of All Flesh', 'Butler, Samuel', '2000-02-01', 210, 'https://www.gutenberg.org/ebooks/2084', 'en', 95), +(5531, 'Paris from the Earliest Period to the Present Day; Volume 1', 'Walton, William', '2009-12-11', 17, 'https://www.gutenberg.org/ebooks/30651', 'en', 2972), +(5532, 'The Glory of Clementina Wing', 'Locke, William John', '2019-08-18', 314, 'https://www.gutenberg.org/ebooks/60121', 'en', 230), +(5533, 'Bruges: A Sketch-Book', 'Pike, Joseph', '2017-03-09', 4, 'https://www.gutenberg.org/ebooks/54314', 'en', 3282), +(5534, 'Poezii', 'Eminescu, Mihai', '2011-02-18', 111, 'https://www.gutenberg.org/ebooks/35323', 'ro', 3283), +(5535, 'La petite mademoiselle', 'Montesquiou-Fézensac, Robert, comte de', '2016-04-05', 8, 'https://www.gutenberg.org/ebooks/51666', 'fr', 259), +(5536, 'Œuvres complètes de Alfred de Musset - Tome 4', 'Musset, Alfred de', '2007-08-25', 13, 'https://www.gutenberg.org/ebooks/22394', 'fr', 642), +(5537, 'Mistress Anne', 'Bailey, Temple', '2007-10-30', 70, 'https://www.gutenberg.org/ebooks/23246', 'en', 61), +(5538, 'La Regenta', 'Alas, Leopoldo', '2005-11-16', 159, 'https://www.gutenberg.org/ebooks/17073', 'es', 3284), +(5539, 'Wilford Woodruff, Fourth President of the Church of Jesus Christ of Latter-Day Saints\r\nHistory of His Life and Labors, as Recorded in His Daily Journals', 'Woodruff, Wilford', '2014-12-19', 27, 'https://www.gutenberg.org/ebooks/47703', 'en', 3285), +(5540, 'He Walked Around the Horses', 'Piper, H. Beam', '2006-07-11', 96, 'https://www.gutenberg.org/ebooks/18807', 'en', 26), +(5541, 'A Modern Utopia', 'Wells, H. G. (Herbert George)', '2004-09-01', 134, 'https://www.gutenberg.org/ebooks/6424', 'en', 1998), +(5542, 'Dr. Breen\'s Practice', 'Howells, William Dean', '2004-10-24', 38, 'https://www.gutenberg.org/ebooks/3364', 'en', 3286), +(5543, 'Illogical Geology, the Weakest Point in the Evolution Theory', 'Price, George McCready', '2013-02-07', 11, 'https://www.gutenberg.org/ebooks/42043', 'en', 1315), +(5544, 'Tokyo to Tijuana: Gabriele Departing America', 'Sills, Steven David Justin', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12733', 'en', 61), +(5545, 'Lázaro: casi novela', 'Picón, Jacinto Octavio', '2008-09-01', 16, 'https://www.gutenberg.org/ebooks/26506', 'es', 1353), +(5546, 'Kamelianainen', 'Dumas, Alexandre', '2017-02-07', 4, 'https://www.gutenberg.org/ebooks/54126', 'fi', 560), +(5547, 'English Seamen in the Sixteenth Century\nLectures Delivered at Oxford Easter Terms 1893-4', 'Froude, James Anthony', '2006-04-19', 15, 'https://www.gutenberg.org/ebooks/18209', 'en', 3287), +(5548, 'Birds and Nature, Vol. 08, No. 4, November 1900\r\nIllustrated by Color Photography', 'Various', '2015-03-25', 18, 'https://www.gutenberg.org/ebooks/48579', 'en', 1584), +(5549, 'Anita: Souvenirs d\'un contre-guérillas', 'Beaugrand, Honoré', '2007-12-13', 16, 'https://www.gutenberg.org/ebooks/23848', 'fr', 3288), +(5550, 'Pflege und Zucht der Zwergpapageien und Sittiche\nKurze Anleitung zur Behandlung und Pflege', 'Bungartz, Jean', '2013-07-10', 14, 'https://www.gutenberg.org/ebooks/43191', 'de', 3289), +(5551, 'John Whopper\nThe Newsboy', 'Clark, Thomas M. (Thomas March)', '2009-11-13', 3, 'https://www.gutenberg.org/ebooks/30463', 'en', 2241), +(5552, 'Tuomo sedän tupa', 'Stowe, Harriet Beecher', '2005-07-30', 29, 'https://www.gutenberg.org/ebooks/16393', 'fi', 1051), +(5553, 'John Bunyan and the Gipsies', 'Simson, James', '2016-03-14', 6, 'https://www.gutenberg.org/ebooks/51454', 'en', 3290), +(5554, 'Kamala yösija', 'Collins, Wilkie', '2011-01-30', 11, 'https://www.gutenberg.org/ebooks/35111', 'fi', 179), +(5555, 'Oliver Twist, Vol. 3 (of 3)', 'Dickens, Charles', '2014-12-04', 56, 'https://www.gutenberg.org/ebooks/47531', 'en', 1080), +(5556, 'December Love', 'Hichens, Robert', '2006-04-22', 17, 'https://www.gutenberg.org/ebooks/6616', 'en', 574), +(5557, 'A Voyage round the World\nA book for boys', 'Kingston, William Henry Giles', '2007-10-17', 15, 'https://www.gutenberg.org/ebooks/23074', 'en', 3291), +(5558, '\"Billy\" Sunday, the Man and His Message\r\nWith his own words which have won thousands for Christ', 'Ellis, William T. (William Thomas)', '2015-12-01', 13, 'https://www.gutenberg.org/ebooks/50586', 'en', 3292), +(5559, 'Atlantis', 'Hauptmann, Gerhart', '2005-12-06', 43, 'https://www.gutenberg.org/ebooks/17241', 'en', 61), +(5560, 'Il Miraggio: Romanzo', 'D\'Ambra, Lucio', '2016-10-17', 9, 'https://www.gutenberg.org/ebooks/53303', 'it', 1544), +(5561, 'A Compilation of the Messages and Papers of the Presidents. Volume 2, part 3: Andrew Jackson, 1st term', NULL, '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/10858', 'en', 337), +(5562, 'Forest Trees of Illinois: How to Know Them', 'Mattoon, Wilbur R. (Wilbur Reed)', '2011-10-06', 10, 'https://www.gutenberg.org/ebooks/37646', 'en', 3293), +(5563, 'The Little Minister', 'Barrie, J. M. (James Matthew)', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/5093', 'en', 3294), +(5564, 'The Pansy Magazine, January 1886', 'Various', '2014-03-31', 17, 'https://www.gutenberg.org/ebooks/45266', 'en', 200), +(5565, 'Myth, Ritual And Religion, Vol. 2 (of 2)', 'Lang, Andrew', '2011-07-20', 45, 'https://www.gutenberg.org/ebooks/36794', 'en', 3295), +(5566, 'Diary of Samuel Pepys — Volume 22: May/June 1663', 'Pepys, Samuel', '2004-11-30', 12, 'https://www.gutenberg.org/ebooks/4141', 'en', 478), +(5567, 'Songs of the Cattle Trail and Cow Camp', NULL, '2007-06-06', 22, 'https://www.gutenberg.org/ebooks/21723', 'en', 3296), +(5568, 'The Religions of Japan, from the Dawn of History to the Era of Méiji', 'Griffis, William Elliot', '2005-03-31', 36, 'https://www.gutenberg.org/ebooks/15516', 'en', 3297), +(5569, 'Harper\'s Young People, October 3, 1882\nAn Illustrated Weekly', 'Various', '2019-05-31', 11, 'https://www.gutenberg.org/ebooks/59639', 'en', 479), +(5570, 'The Red Inn', 'Balzac, Honoré de', '2005-07-13', 23, 'https://www.gutenberg.org/ebooks/1433', 'en', 98), +(5571, 'Aus Goethes Frühzeit\nBruchstücke eines Commentares zum jungen Goethe', 'Scherer, Wilhelm', '2012-09-08', 22, 'https://www.gutenberg.org/ebooks/40714', 'de', 3298), +(5572, 'Beltane the Smith', 'Farnol, Jeffery', '2003-11-01', 41, 'https://www.gutenberg.org/ebooks/10064', 'en', 3299), +(5573, 'Left Behind; Or, Ten Days a Newsboy', 'Otis, James', '2008-01-11', 7, 'https://www.gutenberg.org/ebooks/24251', 'en', 2241), +(5574, 'Boy Life\nStories and Readings Selected From The Works of William Dean Howells', 'Howells, William Dean', '2008-05-07', 11, 'https://www.gutenberg.org/ebooks/25383', 'en', 3300), +(5575, 'The Last Three Soldiers', 'Shelton, W. H. (William Henry)', '2018-03-03', 10, 'https://www.gutenberg.org/ebooks/56671', 'en', 403), +(5576, 'Jacko and Jumpo Kinkytail (The Funny Monkey Boys)', 'Garis, Howard Roger', '2010-05-11', 39, 'https://www.gutenberg.org/ebooks/32334', 'en', 25), +(5577, 'Histoire de France (Volume 1/19)', 'Michelet, Jules', '2015-01-13', 73, 'https://www.gutenberg.org/ebooks/47969', 'fr', 624), +(5578, 'Occasional Thoughts in Reference to a Vertuous or Christian life', 'Masham, Damaris, Lady', '2004-08-25', 33, 'https://www.gutenberg.org/ebooks/13285', 'en', 3301), +(5579, 'Liberia: Description, History, Problems', 'Starr, Frederick', '2017-04-12', 10, 'https://www.gutenberg.org/ebooks/54542', 'en', 3302), +(5580, 'A Dear Little Girl\'s Thanksgiving Holidays', 'Blanchard, Amy Ella', '2009-09-17', 14, 'https://www.gutenberg.org/ebooks/30007', 'en', 62), +(5581, 'The Courtship of Susan Bell', 'Trollope, Anthony', '2003-01-01', 23, 'https://www.gutenberg.org/ebooks/3700', 'en', 179), +(5582, 'The Kingdom of Slender Swords', 'Rives, Hallie Erminie', '2013-03-29', 24, 'https://www.gutenberg.org/ebooks/42427', 'en', 3303), +(5583, 'Gómez Arias\r\nOr, The Moors of the Alpujarras, A Spanish Historical Romance.', 'Trueba y Cosío, Joaquín Telesforo de', '2009-09-05', 22, 'https://www.gutenberg.org/ebooks/29916', 'en', 98), +(5584, 'Representative British Orations Volume 2 (of 4)\r\nWith Introductions and Explanatory Notes', NULL, '2017-09-06', 4, 'https://www.gutenberg.org/ebooks/55490', 'en', 277), +(5585, 'The Case and the Girl', 'Parrish, Randall', '2004-05-01', 43, 'https://www.gutenberg.org/ebooks/12357', 'en', 167), +(5586, 'Peking Dust', 'La Motte, Ellen N. (Ellen Newbold)', '2008-08-01', 53, 'https://www.gutenberg.org/ebooks/26162', 'en', 3304), +(5587, 'Martin Eden: Romaani', 'London, Jack', '2014-10-19', 16, 'https://www.gutenberg.org/ebooks/47155', 'fi', 957), +(5588, 'A Lover\'s Diary, Volume 1.', 'Parker, Gilbert', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6272', 'en', 269), +(5589, 'The Spinster\n1905', 'Hichens, Robert', '2007-11-08', 9, 'https://www.gutenberg.org/ebooks/23410', 'en', 3305), +(5590, 'Der Weltkrieg, II. Band\nVom Kriegsausbruch bis zum uneingeschränkten U-Bootkrieg', 'Helfferich, Karl', '2015-05-10', 17, 'https://www.gutenberg.org/ebooks/48921', 'de', 2573), +(5591, 'Artificial Light: Its Influence upon Civilization', 'Luckiesh, Matthew', '2006-01-29', 43, 'https://www.gutenberg.org/ebooks/17625', 'en', 3306), +(5592, 'Secret Service Under Pitt', 'Fitz-Patrick, William J. (William John)', '2016-01-25', 11, 'https://www.gutenberg.org/ebooks/51030', 'en', 3307), +(5593, 'Peculiarities of American Cities', 'Glazier, Willard W.', '2011-03-14', 33, 'https://www.gutenberg.org/ebooks/35575', 'en', 3308), +(5594, 'Drawings of Rossetti', 'Wood, T. Martin', '2014-06-24', 27, 'https://www.gutenberg.org/ebooks/46087', 'en', 2284), +(5595, 'Buffon\'s Natural History, Volume 02 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Mineral, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-07', 16, 'https://www.gutenberg.org/ebooks/45602', 'en', 871), +(5596, 'The Farm That Won\'t Wear Out', 'Hopkins, Cyril G. (Cyril George)', '2003-10-01', 29, 'https://www.gutenberg.org/ebooks/4525', 'en', 3309), +(5597, 'Naimisen juoruja: Kuvaelma kansan elämästä', 'Päivärinta, Pietari', '2007-05-07', 16, 'https://www.gutenberg.org/ebooks/21347', 'fi', 61), +(5598, 'The Ceremonies of the Holy-Week at Rome', 'Baggs, Charles Michael', '2005-02-25', 22, 'https://www.gutenberg.org/ebooks/15172', 'en', 3310), +(5599, 'The Writings of Thomas Jefferson, Vol. 5 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2016-12-19', 27, 'https://www.gutenberg.org/ebooks/53767', 'en', 3311), +(5600, 'My New Curate', 'Sheehan, Patrick Augustine', '2007-01-06', 29, 'https://www.gutenberg.org/ebooks/20295', 'en', 942), +(5601, 'Insanity: Its Causes and Prevention', 'Stearns, Henry Putnam', '2011-08-27', 12, 'https://www.gutenberg.org/ebooks/37222', 'en', 3312), +(5602, 'The School Four', 'Dudley, Albertus T. (Albertus True)', '2017-12-21', 12, 'https://www.gutenberg.org/ebooks/56215', 'en', 2680), +(5603, 'The Sphere of Sleep', 'Geier, Chester S.', '2010-06-09', 25, 'https://www.gutenberg.org/ebooks/32750', 'en', 3313), +(5604, 'Poems, with The Ballad of Reading Gaol', 'Wilde, Oscar', '1997-10-01', 87, 'https://www.gutenberg.org/ebooks/1057', 'en', 8), +(5605, 'Old Coloured Books', 'Paston, George', '2010-09-09', 14, 'https://www.gutenberg.org/ebooks/33682', 'en', 3314), +(5606, 'Encyclopaedia Britannica, 11th Edition, \"Hydromechanics\" to \"Ichnography\"\r\nVolume 14, Slice 2', 'Various', '2012-07-29', 38, 'https://www.gutenberg.org/ebooks/40370', 'en', 1081), +(5607, 'Historie van Mejuffrouw Sara Burgerhart', 'Wolff, Elizabeth Bekker', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/10400', 'nl', 319), +(5608, 'Exeter', 'Heath, Sidney', '2008-02-18', 6, 'https://www.gutenberg.org/ebooks/24635', 'en', 3315), +(5609, 'The Rosary', 'Barclay, Florence L. (Florence Louisa)', '2007-04-26', 15, 'https://www.gutenberg.org/ebooks/21175', 'en', 95), +(5610, 'Joululahjat', 'Hahnsson, Theodolinda', '2005-03-12', 9, 'https://www.gutenberg.org/ebooks/15340', 'fi', 61), +(5611, 'Traité élémentaire de chimie, tome 1\r\nPrésenté dans un ordre nouveau et d\'après les découvertes modernes; avec Figures', 'Lavoisier, Antoine Laurent', '2016-07-03', 23, 'https://www.gutenberg.org/ebooks/52487', 'fr', 292), +(5612, 'Tara: A Mahratta Tale', 'Taylor, Meadows', '2014-04-18', 28, 'https://www.gutenberg.org/ebooks/45430', 'en', 3316), +(5613, 'Autour de la Lune', 'Verne, Jules', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/4717', 'fr', 3317), +(5614, 'Get-Rich-Quick Wallingford\r\nA Cheerful Account of the Rise and Fall of an American Business Buccaneer', 'Chester, George Randolph', '2011-08-09', 19, 'https://www.gutenberg.org/ebooks/37010', 'en', 1660), +(5615, 'Kertomuksia II', 'Gorky, Maksim', '2016-11-19', 7, 'https://www.gutenberg.org/ebooks/53555', 'fi', 147), +(5616, 'Murtavia voimia', 'Alkio, Santeri', '2004-12-07', 39, 'https://www.gutenberg.org/ebooks/14292', 'fi', 98), +(5617, 'Notes and Queries, Vol. IV, Number 103, October 18, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-02-13', 14, 'https://www.gutenberg.org/ebooks/38864', 'en', 105), +(5618, 'At the Sign of the Sword: A Story of Love and War in Belgium', 'Le Queux, William', '2012-10-17', 10, 'https://www.gutenberg.org/ebooks/41090', 'en', 3318), +(5619, 'Hubert\'s Wife\nA Story for You', 'Lee, Minnie Mary', '2007-06-27', 4, 'https://www.gutenberg.org/ebooks/21949', 'en', 3319), +(5620, '\"And That\'s How It Was, Officer\"', 'Sholto, Ralph', '2010-05-28', 35, 'https://www.gutenberg.org/ebooks/32562', 'en', 1280), +(5621, 'A Young Hero; Or, Fighting to Win', 'Ellis, Edward Sylvester', '2019-07-04', 97, 'https://www.gutenberg.org/ebooks/59853', 'en', 625), +(5622, 'The Achievement of the British Navy in the World-War', 'Leyland, John', '2017-11-22', 7, 'https://www.gutenberg.org/ebooks/56027', 'en', 3320), +(5623, 'The Healthy Life Cook Book, 2d ed.', 'Daniel, Florence', '2004-01-01', 123, 'https://www.gutenberg.org/ebooks/10632', 'en', 3321), +(5624, 'The Italian Cook Book\r\nThe Art of Eating Well; Practical Recipes of the Italian Cuisine, Pastries, Sweets, Frozen Delicacies, and Syrups', 'Gentile, Maria', '2008-01-24', 196, 'https://www.gutenberg.org/ebooks/24407', 'en', 1881), +(5625, 'Queen Victoria', 'Strachey, Lytton', '2006-02-19', 131, 'https://www.gutenberg.org/ebooks/1265', 'en', 1583), +(5626, 'History of Sculpture, Painting, and Architecture', 'Memes, J. S. (John Smythe)', '2019-02-28', 16, 'https://www.gutenberg.org/ebooks/58981', 'en', 3322), +(5627, 'Mémoires de Vidocq, chef de la police de Sureté jusqu\'en 1827, tome II', 'Vidocq, Eugène François', '2011-11-19', 19, 'https://www.gutenberg.org/ebooks/38058', 'fr', 2054), +(5628, 'Miss Stuart\'s Legacy', 'Steel, Flora Annie Webster', '2012-07-04', 11, 'https://www.gutenberg.org/ebooks/40142', 'en', 1228), +(5629, 'A Horse\'s Tale', 'Twain, Mark', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/9008', 'en', 61), +(5630, 'Six Centuries of English Poetry: Tennyson to Chaucer', 'Baldwin, James', '2009-10-11', 29, 'https://www.gutenberg.org/ebooks/30235', 'en', 54), +(5631, 'L\'illustre corsaire: tragicomedie', 'Mairet, Jean de', '2008-11-16', 14, 'https://www.gutenberg.org/ebooks/27282', 'fr', 3323), +(5632, 'The Scarlet Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2006-03-08', 858, 'https://www.gutenberg.org/ebooks/60', 'en', 724), +(5633, 'Turman talo: Kertomus', 'Lassila, Maiju', '2017-05-23', 4, 'https://www.gutenberg.org/ebooks/54770', 'fi', 175), +(5634, 'Salatiedettä omin päin', 'Ervast, Pekka', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12165', 'fi', 3324), +(5635, 'Le péril jaune', 'Novikov, Yakov Aleksandrovich', '2008-08-18', 21, 'https://www.gutenberg.org/ebooks/26350', 'fr', 3325), +(5636, 'My Discovery of England', 'Leacock, Stephen', '2002-11-01', 44, 'https://www.gutenberg.org/ebooks/3532', 'en', 3326), +(5637, 'Blanche et Bleue ou les deux couleuvres-fées, roman chinois', NULL, '2013-04-29', 15, 'https://www.gutenberg.org/ebooks/42615', 'fr', 3327), +(5638, 'About Peggy Saville', 'Vaizey, George de Horne, Mrs.', '2007-11-25', 29, 'https://www.gutenberg.org/ebooks/23622', 'en', 2711), +(5639, 'The Talleyrand Maxim', 'Fletcher, J. S. (Joseph Smith)', '2006-02-01', 87, 'https://www.gutenberg.org/ebooks/9834', 'en', 128), +(5640, 'What Prohibition Has Done to America', 'Franklin, Fabian', '2005-12-30', 12, 'https://www.gutenberg.org/ebooks/17417', 'en', 3328), +(5641, 'British Pomology\r\nOr, the History, Description, Classification, and Synonymes, of the Fruits and Fruit Trees of Great Britain', 'Hogg, Robert', '2014-11-16', 31, 'https://www.gutenberg.org/ebooks/47367', 'en', 3329), +(5642, 'Wenn mein Herz gesund wär', 'Lasker-Schüler, Else', '2010-12-19', 16, 'https://www.gutenberg.org/ebooks/34695', 'de', 422), +(5643, 'Stories by English Authors: Ireland', NULL, '2004-07-01', 51, 'https://www.gutenberg.org/ebooks/6040', 'en', 137), +(5644, 'Newton Forster', 'Marryat, Frederick', '2004-07-20', 14, 'https://www.gutenberg.org/ebooks/12959', 'en', 3330), +(5645, 'Encyclopaedia Britannica, 11th Edition, \"Fleury, Claude\" to \"Foraker\"\r\nVolume 10, Slice 5', 'Various', '2011-04-01', 70, 'https://www.gutenberg.org/ebooks/35747', 'en', 1081), +(5646, 'Charles Philip Yorke, Fourth Earl of Hardwicke, Vice-Admiral R.N. — a Memoir', 'Biddulph, Elizabeth Philippa, Baroness', '2004-12-01', 23, 'https://www.gutenberg.org/ebooks/7192', 'en', 3331), +(5647, 'Name Your Symptom', 'Harmon, Jim', '2016-02-13', 27, 'https://www.gutenberg.org/ebooks/51202', 'en', 179), +(5648, 'Notes and Queries, Number 81, May 17, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-07-05', 14, 'https://www.gutenberg.org/ebooks/29318', 'en', 105), +(5649, 'Menazerya ludzka', 'Zapolska, Gabriela', '2010-12-13', 12, 'https://www.gutenberg.org/ebooks/34635', 'pl', 61), +(5650, 'Crops and Methods for Soil Improvement', 'Agee, Alva', '2007-12-02', 50, 'https://www.gutenberg.org/ebooks/23682', 'en', 3309), +(5651, 'Histoire de la Révolution française, Tome 02', 'Thiers, Adolphe', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9894', 'fr', 1536), +(5652, 'Charles Sumner: his complete works, volume 17 (of 20)', 'Sumner, Charles', '2015-11-02', 15, 'https://www.gutenberg.org/ebooks/50370', 'en', 125), +(5653, 'Le Côté de Guermantes - Première partie', 'Proust, Marcel', '2004-07-15', 69, 'https://www.gutenberg.org/ebooks/8946', 'fr', 4), +(5654, 'History of the Expedition under the Command of Captains Lewis and Clark, Vol. I.\r\nTo the Sources of the Missouri, Thence Across the Rocky Mountains and Down the River Columbia to the Pacific Ocean.\r\nPerformed During the Years 1804-5-6.', 'Lewis, Meriwether', '2005-08-20', 59, 'https://www.gutenberg.org/ebooks/16565', 'en', 1810), +(5655, 'Rags\n(The Story Of A Dog)', 'Niemann, Karen', '2007-09-24', 12, 'https://www.gutenberg.org/ebooks/22750', 'en', 766), +(5656, 'The Purple Land\r\nBeing the Narrative of One Richard Lamb\'s Adventures in The Banda Orientál, in South America, as Told By Himself', 'Hudson, W. H. (William Henry)', '2004-12-01', 72, 'https://www.gutenberg.org/ebooks/7132', 'en', 3332), +(5657, 'The Battles in Flanders, from Ypres to Neuve Chapelle', 'Dane, Edmund (Military historian)', '2014-07-07', 18, 'https://www.gutenberg.org/ebooks/46215', 'en', 3333), +(5658, 'The Tin Box, and What it Contained', 'Alger, Horatio, Jr.', '2008-11-10', 20, 'https://www.gutenberg.org/ebooks/27222', 'en', 3334), +(5659, 'Five Nights: A Novel', 'Cross, Victoria', '2004-07-24', 19, 'https://www.gutenberg.org/ebooks/13017', 'en', 401), +(5660, 'La Chèvre d\'Or', 'Arène, Paul', '2013-09-19', 17, 'https://www.gutenberg.org/ebooks/43767', 'fr', 298), +(5661, 'The Naturalist on the River Amazons', 'Bates, Henry Walter', '2000-12-01', 67, 'https://www.gutenberg.org/ebooks/2440', 'en', 3335), +(5662, 'The Social Work of the Salvation Army', 'Lamb, Edwin Gifford', '2009-10-20', 11, 'https://www.gutenberg.org/ebooks/30295', 'en', 3336), +(5663, 'Essays of Michel de Montaigne — Volume 12', 'Montaigne, Michel de', '2004-11-01', 14, 'https://www.gutenberg.org/ebooks/3592', 'en', 1964), +(5664, 'Contos', 'Queirós, Eça de', '2010-02-22', 98, 'https://www.gutenberg.org/ebooks/31347', 'pt', 61), +(5665, 'The Curiosities of Ale & Beer: An Entertaining History\r\n(Illustrated with over Fifty Quaint Cuts)', 'Bickerdyke, John', '2017-09-22', 16, 'https://www.gutenberg.org/ebooks/55602', 'en', 3337), +(5666, 'Mémoires d\'Outre-Tombe, Tome 4', 'Chateaubriand, François-René, vicomte de', '2008-05-23', 25, 'https://www.gutenberg.org/ebooks/25575', 'fr', 3338), +(5667, 'In Queer Street', 'Hume, Fergus', '2017-11-30', 16, 'https://www.gutenberg.org/ebooks/56087', 'en', 1425), +(5668, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 364, April 4, 1829', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11740', 'en', 133), +(5669, 'Pioneer Roads and Experiences of Travelers (Volume 2)', 'Hulbert, Archer Butler', '2012-10-11', 3, 'https://www.gutenberg.org/ebooks/41030', 'en', 3339), +(5670, 'Landmarks of Charleston\r\nIncluding Description of an Incomparable Stroll', 'Lesesne, Thomas Petigru', '2019-02-20', 7, 'https://www.gutenberg.org/ebooks/58921', 'en', 3340), +(5671, 'A-Birding on a Bronco', 'Bailey, Florence Merriam', '2010-08-11', 34, 'https://www.gutenberg.org/ebooks/33410', 'en', 318), +(5672, 'A Life of Gen. Robert E. Lee', 'Cooke, John Esten', '2004-01-01', 40, 'https://www.gutenberg.org/ebooks/10692', 'en', 3341), +(5673, 'Beethoven and His Forerunners', 'Mason, Daniel Gregory', '2018-05-13', 10, 'https://www.gutenberg.org/ebooks/57155', 'en', 3342), +(5674, 'Stand By: The Story of a Boy\'s Achievement in Radio', 'McAlister, Hugh', '2014-04-25', 14, 'https://www.gutenberg.org/ebooks/45490', 'en', 3343), +(5675, 'Living for the Best', 'McClure, James G. K. (James Gore King)', '2011-05-17', 16, 'https://www.gutenberg.org/ebooks/36162', 'en', 3344), +(5676, 'The Ranger Boys Outwit the Timber Thieves', 'Labelle, Claude A.', '2012-06-04', 10, 'https://www.gutenberg.org/ebooks/39916', 'en', 3345), +(5677, 'Vuosisadan lapsen tunnustus', 'Musset, Alfred de', '2016-06-28', 7, 'https://www.gutenberg.org/ebooks/52427', 'fi', 1850), +(5678, 'A Celtic Psaltery\r\nBeing Mainly Renderings in English Verse from Irish & Welsh Poetry', 'Graves, Alfred Perceval', '2004-12-02', 16, 'https://www.gutenberg.org/ebooks/14232', 'en', 1208), +(5679, 'Lord George Bentinck: A Political Biography', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-12-03', 33, 'https://www.gutenberg.org/ebooks/20007', 'en', 3346), +(5680, 'Harper\'s Round Table, June 2, 1896', 'Various', '2018-09-24', 2, 'https://www.gutenberg.org/ebooks/57969', 'en', 668), +(5681, 'The Arabian Nights Entertainments — Volume 02', NULL, '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/5665', 'en', 3347), +(5682, 'Sprotje\'s verder leven', 'Scharten-Antink, M. (Margo Sybranda Everdina)', '2013-12-29', 11, 'https://www.gutenberg.org/ebooks/44542', 'nl', 61), +(5683, 'The Two Great Republics: Rome and the United States', 'Lewis, James', '2012-10-27', 19, 'https://www.gutenberg.org/ebooks/41202', 'en', 3348), +(5684, 'Practical Bookbinding', 'Adam, Paul', '2012-03-31', 81, 'https://www.gutenberg.org/ebooks/39318', 'en', 3349), +(5685, 'Youngling: A Terran Empire story', 'Wilson, Ann', '2008-06-09', 18, 'https://www.gutenberg.org/ebooks/25747', 'en', 179), +(5686, 'The Man from Brodney\'s', 'McCutcheon, George Barr', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11572', 'en', 1380), +(5687, 'Freiluftleben', 'Nansen, Fridtjof', '2018-06-21', 12, 'https://www.gutenberg.org/ebooks/57367', 'de', 3350), +(5688, 'The Snowshoe Trail', 'Marshall, Edison', '2008-02-26', 8, 'https://www.gutenberg.org/ebooks/24695', 'en', 65), +(5689, 'The Day of Wrath: A Story of 1914', 'Tracy, Louis', '2010-09-03', 48, 'https://www.gutenberg.org/ebooks/33622', 'en', 579), +(5690, 'The Two Marys', 'Oliphant, Mrs. (Margaret)', '2016-07-23', 18, 'https://www.gutenberg.org/ebooks/52615', 'en', 61), +(5691, 'The American Missionary — Volume 39, No. 10, October, 1885', 'Various', '2011-06-07', 6, 'https://www.gutenberg.org/ebooks/36350', 'en', 395), +(5692, 'God\'s Country—And the Woman', 'Curwood, James Oliver', '2003-10-01', 20, 'https://www.gutenberg.org/ebooks/4585', 'en', 315), +(5693, 'Encyclopaedia Britannica, 11th Edition, \"Gassendi, Pierre\" to \"Geocentric\"\r\nVolume 11, Slice 5', 'Various', '2011-08-31', 25, 'https://www.gutenberg.org/ebooks/37282', 'en', 1081), +(5694, 'An Egyptian Princess — Volume 08', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5457', 'en', 803), +(5695, 'Daisy\'s Work: The Third Commandment', 'Mathews, Joanna H. (Joanna Hooe)', '2014-01-27', 15, 'https://www.gutenberg.org/ebooks/44770', 'en', 3351), +(5696, 'Six Lectures on Light\nDelivered In The United States In 1872-1873', 'Tyndall, John', '2004-11-10', 33, 'https://www.gutenberg.org/ebooks/14000', 'en', 3352), +(5697, 'Heart: A Social Novel', 'Tupper, Martin Farquhar', '2006-12-31', 8, 'https://www.gutenberg.org/ebooks/20235', 'en', 61), +(5698, 'A Text-Book of Precious Stones for Jewelers and the Gem-Loving Public', 'Wade, Frank Bertram', '2009-02-12', 45, 'https://www.gutenberg.org/ebooks/28058', 'en', 3353), +(5699, 'Dissection of the Platana and the Frog', 'Gilchrist, J. D. F. (John Dow Fisher)', '2015-05-17', 18, 'https://www.gutenberg.org/ebooks/48981', 'en', 3354), +(5700, 'Alfred Kihlman: Elämän kuvaus. 2 (of 2)', 'Aspelin-Haapkylä, Eliel', '2015-10-06', 12, 'https://www.gutenberg.org/ebooks/50142', 'fi', 3355), +(5701, 'Wandelingen door Elzas-Lotharingen\nDe Aarde en haar Volken, 1886', 'Anonymous', '2006-02-06', 6, 'https://www.gutenberg.org/ebooks/17685', 'nl', 3356), +(5702, 'The Silent Mill', 'Sudermann, Hermann', '2010-11-22', 28, 'https://www.gutenberg.org/ebooks/34407', 'en', 803), +(5703, 'Woman and the Republic\r\nA Survey of the Woman-Suffrage Movement in the United States and a Discussion of the Claims and Arguments of Its Foremost Advocates', 'Johnson, Helen Kendrick', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7300', 'en', 3357), +(5704, 'The Khaki Boys at Camp Sterling; Or, Training for the Big Fight in France', 'Bates, Gordon', '2014-06-18', 15, 'https://www.gutenberg.org/ebooks/46027', 'en', 146), +(5705, 'Life of John Milton', 'Garnett, Richard', '2005-09-26', 22, 'https://www.gutenberg.org/ebooks/16757', 'en', 1173), +(5706, 'The Bartlett Mystery', 'Tracy, Louis', '2010-04-11', 36, 'https://www.gutenberg.org/ebooks/31949', 'en', 128), +(5707, 'A Polyglot of Foreign Proverbs\r\nComprising French, German, Dutch, Spanish, Portuguese and Danish, with English Translations and a General Index', NULL, '2016-01-31', 35, 'https://www.gutenberg.org/ebooks/51090', 'en', 3358), +(5708, 'How the Poor Live; and, Horrible London\r\n1889', 'Sims, George R.', '2015-09-02', 37, 'https://www.gutenberg.org/ebooks/49853', 'en', 3359), +(5709, 'De Werken van William Shakespeare\r\nOverzicht van Shakespeare\'s leven en werken', 'Burgersdijk, L. A. J. (Leendert Alexander Johannes)', '2007-09-10', 10, 'https://www.gutenberg.org/ebooks/22562', 'nl', 3360), +(5710, 'A New Subspecies of Microtus montanus from Montana and Comments on Microtus canicaudus Miller', 'Kelson, Keith R.', '2009-05-18', 14, 'https://www.gutenberg.org/ebooks/28864', 'en', 3361), +(5711, 'Selections from Early Middle English, 1130-1250. Part 2: Notes', NULL, '2013-08-25', 26, 'https://www.gutenberg.org/ebooks/43555', 'en', 3362), +(5712, 'The Complete Writings of Charles Dudley Warner — Volume 2', 'Warner, Charles Dudley', '2001-06-01', 11, 'https://www.gutenberg.org/ebooks/2672', 'en', 1408), +(5713, 'Notes and Queries, Number 213, November 26, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 14, 'https://www.gutenberg.org/ebooks/27010', 'en', 105), +(5714, 'A General History and Collection of Voyages and Travels — Volume 06\r\nArranged in Systematic Order: Forming a Complete History of the Origin and Progress of Navigation, Discovery, and Commerce, by Sea and Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-08-19', 15, 'https://www.gutenberg.org/ebooks/13225', 'en', 885), +(5715, 'The Princess and Curdie', 'MacDonald, George', '1996-11-01', 200, 'https://www.gutenberg.org/ebooks/709', 'en', 2203), +(5716, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 2/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2017-08-26', 19, 'https://www.gutenberg.org/ebooks/55430', 'fr', 2972), +(5717, 'The Bible, Douay-Rheims, Book 48: Mark\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8348', 'en', 3278), +(5718, 'A New Species of Frog (Genus Tomodactylus) from Western México', 'Webb, Robert G.', '2010-02-03', 14, 'https://www.gutenberg.org/ebooks/31175', 'en', 823), +(5719, 'L\'Illustration, No. 0048, 27 Janvier 1844', 'Various', '2013-04-09', 5, 'https://www.gutenberg.org/ebooks/42487', 'fr', 150), +(5720, 'Index of the Project Gutenberg Works of Vaughan Kester', 'Kester, Vaughan', '2018-08-15', 1, 'https://www.gutenberg.org/ebooks/57703', 'en', 198), +(5721, 'The Legends of the Jews — Volume 1', 'Ginzberg, Louis', '1998-10-01', 320, 'https://www.gutenberg.org/ebooks/1493', 'en', 3363), +(5722, 'Civic League Cook Book', 'Civic League (Williston, North Dakota)', '2010-07-24', 41, 'https://www.gutenberg.org/ebooks/33246', 'en', 103), +(5723, 'The Story of Ancient Irish Civilization', 'Joyce, P. W. (Patrick Weston)', '2012-12-20', 20, 'https://www.gutenberg.org/ebooks/41666', 'en', 3364), +(5724, 'The Torch Bearer', 'Marquis, Reina Melcher', '2010-05-16', 6, 'https://www.gutenberg.org/ebooks/32394', 'en', 434), +(5725, '狐狸緣全傳', 'Zuiyueshanren, active 1804-1876', '2008-05-04', 9, 'https://www.gutenberg.org/ebooks/25323', 'zh', NULL), +(5726, 'The Wonderful Bed', 'Knevels, Gertrude', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11116', 'en', 31), +(5727, 'State of the Union Addresses', 'Taft, William H. (William Howard)', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/5033', 'en', 1276), +(5728, 'The Story of Brussels', 'Gilliat-Smith, Ernest', '2013-11-30', 22, 'https://www.gutenberg.org/ebooks/44314', 'en', 3365), +(5729, 'A General History and Collection of Voyages and Travels — Volume 13', 'Kerr, Robert', '2004-12-25', 22, 'https://www.gutenberg.org/ebooks/14464', 'en', 885), +(5730, 'A Jolly Fellowship', 'Stockton, Frank Richard', '2007-02-24', 26, 'https://www.gutenberg.org/ebooks/20651', 'en', 1001), +(5731, 'A Manual of Pronunciation\nFor Practical Use in Schools and Families', 'Ashmore, Otis', '2007-06-09', 47, 'https://www.gutenberg.org/ebooks/21783', 'en', 3366), +(5732, '漢武帝別國洞冥記', 'Guo, Xian, active 1st century', '2016-06-08', 20, 'https://www.gutenberg.org/ebooks/52271', 'zh', 3367), +(5733, 'History of the U.S.S. Leviathan, cruiser and transport forces, United States Atlantic fleet\r\nCompiled from the ship\'s log and data gathered by the history committee on board the ship', 'U.S.S. Leviathan History Committee', '2019-06-07', 45, 'https://www.gutenberg.org/ebooks/59699', 'en', 3368), +(5734, 'The Browning Cyclopædia: A Guide to the Study of the Works of Robert Browning', 'Berdoe, Edward', '2011-07-14', 18, 'https://www.gutenberg.org/ebooks/36734', 'en', 3369), +(5735, 'Lady William', 'Oliphant, Mrs. (Margaret)', '2017-11-01', 13, 'https://www.gutenberg.org/ebooks/55868', 'en', 1902), +(5736, 'Little Bear at Work and at Play', 'Fox, Frances Margaret', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7764', 'en', 76), +(5737, 'Rogues and Vagabonds', 'Sims, George R.', '2014-07-29', 40, 'https://www.gutenberg.org/ebooks/46443', 'en', 177), +(5738, 'Koti: eli perhesuruja ja -iloja', 'Bremer, Fredrika', '2005-07-19', 14, 'https://www.gutenberg.org/ebooks/16333', 'fi', 3370), +(5739, 'John Knox', 'Innes, A. Taylor (Alexander Taylor)', '2007-07-19', 11, 'https://www.gutenberg.org/ebooks/22106', 'en', 3371), +(5740, 'Comentario del coronel Francisco Verdugo, de la guerra de Frisia,\r\nen xiv años que fue gobernador y capitan general de aquel estado y ejercito por el rey don Felipe II, nuestro señor', 'Verdugo, Francisco', '2015-11-22', 14, 'https://www.gutenberg.org/ebooks/50526', 'es', 3372), +(5741, 'The Ladies Lindores, Vol. 1 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-08', 25, 'https://www.gutenberg.org/ebooks/47591', 'en', 3373), +(5742, 'Fifty Years a Hunter and Trapper\r\nAutobiography, experiences and observations of Eldred Nathaniel Woodcock during his fifty years of hunting and trapping.', 'Woodcock, E. N. (Eldred Nathaniel)', '2010-10-12', 65, 'https://www.gutenberg.org/ebooks/34063', 'en', 2441), +(5743, 'The Commerce and Navigation of the Erythræan Sea\r\nBeing a Translation of the Periplus Maris Erythræi, by an Anonymous Writer, and of Arrian\'s Account of the Voyage of Nearkhos, from the Mouth of the Indus to the Head of the Persian Gulf', NULL, '2017-07-05', 21, 'https://www.gutenberg.org/ebooks/55054', 'en', 3374), +(5744, 'Cobwebs from an Empty Skull', 'Bierce, Ambrose', '2004-06-30', 82, 'https://www.gutenberg.org/ebooks/12793', 'en', 1141), +(5745, 'A History of Witchcraft in England from 1558 to 1718', 'Notestein, Wallace', '2010-03-05', 123, 'https://www.gutenberg.org/ebooks/31511', 'en', 3375), +(5746, 'Mary: A Nursery Story for Very Little Children', 'Molesworth, Mrs.', '2013-07-08', 20, 'https://www.gutenberg.org/ebooks/43131', 'en', 1625), +(5747, 'Human Genome Project, rough draft, Chromosome Number 16', 'Human Genome Project', '2000-06-01', 2, 'https://www.gutenberg.org/ebooks/2216', 'en', 1841), +(5748, 'Queen Berngerd, The Bard and the Dreams, and Other Ballads', NULL, '2008-12-09', 7, 'https://www.gutenberg.org/ebooks/27474', 'en', 8), +(5749, 'The American Missionary — Volume 42, No. 10, October, 1888', 'Various', '2004-10-06', 6, 'https://www.gutenberg.org/ebooks/13641', 'en', 562), +(5750, 'Squire Arden; volume 3 of 3', 'Oliphant, Mrs. (Margaret)', '2017-02-17', 12, 'https://www.gutenberg.org/ebooks/54186', 'en', 3376), +(5751, 'Diane of the Green Van', 'Dalrymple, Leona', '2005-06-21', 26, 'https://www.gutenberg.org/ebooks/16101', 'en', 348), +(5752, 'In Kings\' Byways', 'Weyman, Stanley John', '2007-08-16', 28, 'https://www.gutenberg.org/ebooks/22334', 'en', 179), +(5753, 'Base-Ball\r\nHow to Become a Player, With the Origin, History and Explanation of the Game', 'Ward, John Montgomery', '2006-11-30', 28, 'https://www.gutenberg.org/ebooks/19975', 'en', 3377), +(5754, 'The Little Missis', 'Skinner, Charlotte', '2011-02-24', 10, 'https://www.gutenberg.org/ebooks/35383', 'en', 3378), +(5755, 'Quotes and Images From The Works of Mark Twain', 'Twain, Mark', '2004-08-30', 92, 'https://www.gutenberg.org/ebooks/7556', 'en', 1026), +(5756, 'Chronicles of England, Scotland and Ireland (3 of 6): England (2 of 9)\r\nHenrie the Fift, Prince of Wales, Sonne and Heire to Henrie the Fourth', 'Holinshed, Raphael', '2014-08-24', 11, 'https://www.gutenberg.org/ebooks/46671', 'en', 288), +(5757, 'English As We Speak It in Ireland', 'Joyce, P. W. (Patrick Weston)', '2010-11-08', 29, 'https://www.gutenberg.org/ebooks/34251', 'en', 3379), +(5758, 'Little Dorrit', 'Dickens, Charles', '1997-07-01', 953, 'https://www.gutenberg.org/ebooks/963', 'en', 3380), +(5759, 'Chéri', 'Colette', '2004-09-01', 355, 'https://www.gutenberg.org/ebooks/6484', 'fr', 3381), +(5760, 'Beautiful Joe: An Autobiography', 'Saunders, Marshall', '2001-09-01', 35, 'https://www.gutenberg.org/ebooks/2818', 'en', 3382), +(5761, 'Schriften 23: Novellen 7', 'Tieck, Ludwig', '2015-12-18', 9, 'https://www.gutenberg.org/ebooks/50714', 'de', 422), +(5762, 'Cecilia: A Story of Modern Rome', 'Crawford, F. Marion (Francis Marion)', '2010-03-21', 9, 'https://www.gutenberg.org/ebooks/31723', 'en', 1314), +(5763, 'The Mentor: Game Animals of America, Vol. 4, Num. 13, Serial No. 113, August 15, 1916', 'Hornaday, William T. (William Temple)', '2015-08-06', 16, 'https://www.gutenberg.org/ebooks/49639', 'en', 3383), +(5764, 'The Art of Glass-Blowing\r\nPlain Instruction for the Making of Chemical and Philosophical Instruments Which are Formed of Glass', 'Danger, T.-P.', '2017-08-04', 10, 'https://www.gutenberg.org/ebooks/55266', 'en', 3384), +(5765, 'Locus Solus', 'Roussel, Raymond', '2006-08-31', 84, 'https://www.gutenberg.org/ebooks/19149', 'fr', 687), +(5766, 'The American Missionary — Volume 49, No. 02, February, 1895', 'Various', '2008-10-06', 9, 'https://www.gutenberg.org/ebooks/26794', 'en', 562), +(5767, 'The Orchestral Conductor: Theory of His Art', 'Berlioz, Hector', '2008-12-28', 108, 'https://www.gutenberg.org/ebooks/27646', 'en', 661), +(5768, 'String Quartet No. 06 in B flat major Opus 18', 'Beethoven, Ludwig van', '2004-09-15', 2, 'https://www.gutenberg.org/ebooks/13473', 'en', 3385), +(5769, 'Lures of Life', 'Lucas, Joseph', '2013-07-25', 14, 'https://www.gutenberg.org/ebooks/43303', 'en', 20), +(5770, 'Diary of a Pilgrimage', 'Jerome, Jerome K. (Jerome Klapka)', '2000-01-01', 60, 'https://www.gutenberg.org/ebooks/2024', 'en', 3386), +(5771, 'The Pig: Breeding, Rearing, and Marketing', 'Spencer, Sanders', '2010-07-04', 13, 'https://www.gutenberg.org/ebooks/33074', 'en', 3387), +(5772, 'Billie Bradley and Her Classmates; Or, The Secret of the Locked Tower', 'Wheeler, Janet D.', '2012-08-26', 16, 'https://www.gutenberg.org/ebooks/40586', 'en', 3388), +(5773, 'Mermaid', 'Overton, Grant M. (Grant Martin)', '2018-07-18', 10, 'https://www.gutenberg.org/ebooks/57531', 'en', 3389), +(5774, 'Over the Fireside with Silent Friends', 'King, Richard', '2008-04-20', 43, 'https://www.gutenberg.org/ebooks/25111', 'en', 20), +(5775, 'This Is the End', 'Benson, Stella', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11324', 'en', 1079), +(5776, 'The Lost Million', 'Le Queux, William', '2012-11-23', 6, 'https://www.gutenberg.org/ebooks/41454', 'en', 167), +(5777, 'William Jennings Bryan: A Concise But Complete Story of His Life and Services', 'Newbranch, Harvey Ellsworth', '2016-10-02', 2, 'https://www.gutenberg.org/ebooks/53191', 'en', 3390), +(5778, 'The Sword Maker', 'Barr, Robert', '2005-01-10', 28, 'https://www.gutenberg.org/ebooks/14656', 'en', 3391), +(5779, 'The History of Cuba, vol. 4', 'Johnson, Willis Fletcher', '2010-10-08', 11, 'https://www.gutenberg.org/ebooks/33848', 'en', 995), +(5780, 'Miei Pensieri di varia Umanità', 'Pascoli, Giovanni', '2018-12-31', 22, 'https://www.gutenberg.org/ebooks/58579', 'it', 3392), +(5781, 'Three Years on the Plains: Observations of Indians, 1867-1870', 'Tuttle, Edmund B. (Edmund Bostwick)', '2007-01-28', 18, 'https://www.gutenberg.org/ebooks/20463', 'en', 822), +(5782, 'Don Juan Tenorio', 'Zorrilla, José', '2004-03-01', 113, 'https://www.gutenberg.org/ebooks/5201', 'en', 3393), +(5783, 'The Histories of Polybius, Vol. 2 (of 2)', 'Polybius', '2013-11-08', 61, 'https://www.gutenberg.org/ebooks/44126', 'en', 1368), +(5784, 'Commercialized Prostitution in New York City', 'Kneeland, George J. (George Jackson)', '2011-06-24', 23, 'https://www.gutenberg.org/ebooks/36506', 'en', 3394), +(5785, 'The Chronology of Ancient Kingdoms Amended\r\nTo which is Prefix\'d, A Short Chronicle from the First Memory of Things in Europe, to the Conquest of Persia by Alexander the Great', 'Newton, Isaac', '2005-05-07', 262, 'https://www.gutenberg.org/ebooks/15784', 'en', 3395), +(5786, 'The Chautauquan, Vol. 04, November 1883\r\nA Monthly Magazine Devoted to the Promotion of True Culture.\r\nOrgan of the Chautauqua Literary and Scientific Circle.', 'Chautauqua Literary and Scientific Circle', '2016-05-11', 12, 'https://www.gutenberg.org/ebooks/52043', 'en', 1115), +(5787, 'The Life of Hon. William F. Cody, Known as Buffalo Bill, the Famous Hunter, Scout and Guide\r\nAn Autobiography', 'Buffalo Bill', '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10030', 'en', 3396), +(5788, 'Breakfast Dainties', 'Murrey, Thomas J. (Thomas Jefferson)', '2008-01-07', 59, 'https://www.gutenberg.org/ebooks/24205', 'en', 1369), +(5789, 'Some Christmas Stories', 'Dickens, Charles', '1998-09-01', 63, 'https://www.gutenberg.org/ebooks/1467', 'en', 3397), +(5790, 'Palóc népköltemények', NULL, '2012-09-12', 9, 'https://www.gutenberg.org/ebooks/40740', 'hu', 3398), +(5791, 'Histoire des Musulmans d\'Espagne, t. 4/4\r\njusqu\'à la conquête de l\'Andalouisie par les Almoravides (711-1100)', 'Dozy, Reinhart Pieter Anne', '2012-12-23', 23, 'https://www.gutenberg.org/ebooks/41692', 'fr', 293), +(5792, 'The Holes Around Mars', 'Bixby, Jerome', '2010-05-13', 73, 'https://www.gutenberg.org/ebooks/32360', 'en', 179), +(5793, 'The Expositor\'s Bible: The Epistle to the Philippians', 'Rainy, Robert', '2012-05-25', 12, 'https://www.gutenberg.org/ebooks/39788', 'en', 3399), +(5794, 'The Fashionable Adventures of Joshua Craig: A Novel', 'Phillips, David Graham', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/4929', 'en', 61), +(5795, 'Songs of the West\nFolk Songs of Devon & Cornwall Collected from the Mouths of the People', 'Sheppard, H. Fleetwood (Henry Fleetwood)', '2018-02-22', 56, 'https://www.gutenberg.org/ebooks/56625', 'en', 3400), +(5796, 'Bill\'s School and Mine: A Collection of Essays on Education', 'Franklin, William S. (William Suddards)', '2011-10-04', 10, 'https://www.gutenberg.org/ebooks/37612', 'en', 973), +(5797, 'A Daughter of To-Day', 'Duncan, Sara Jeannette', '2004-12-28', 7, 'https://www.gutenberg.org/ebooks/14490', 'en', 61), +(5798, 'The Day Before Yesterday', 'Middleton, Richard', '2016-10-24', 53, 'https://www.gutenberg.org/ebooks/53357', 'en', 3401), +(5799, 'The Years Between', 'Kipling, Rudyard', '2007-06-08', 35, 'https://www.gutenberg.org/ebooks/21777', 'en', 8), +(5800, 'Mungo Park and the Niger', 'Thomson, Joseph', '2016-06-09', 8, 'https://www.gutenberg.org/ebooks/52285', 'en', 3402), +(5801, 'A Daughter of the Dons: A Story of New Mexico Today', 'Raine, William MacLeod', '2005-04-04', 40, 'https://www.gutenberg.org/ebooks/15542', 'en', 315), +(5802, 'The Blind Brother: A Story of the Pennsylvania Coal Mines', 'Greene, Homer', '2014-03-27', 23, 'https://www.gutenberg.org/ebooks/45232', 'en', 195), +(5803, 'Christopher Columbus and the New World of His Discovery — Volume 8', 'Young, Filson', '2004-12-05', 9, 'https://www.gutenberg.org/ebooks/4115', 'en', 3403), +(5804, 'Captain January', 'Richards, Laura Elizabeth Howe', '2005-03-01', 17, 'https://www.gutenberg.org/ebooks/7790', 'en', 1752), +(5805, 'Paul Gosslett\'s Confessions in Love, Law, and The Civil Service', 'Lever, Charles James', '2011-02-02', 8, 'https://www.gutenberg.org/ebooks/35145', 'en', 61), +(5806, 'La vita Italiana nel Risorgimento (1831-1846), parte 2\r\nSeconda serie - Lettere, scienze e arti', 'Various', '2016-03-08', 6, 'https://www.gutenberg.org/ebooks/51400', 'it', 3404), +(5807, 'Souvenirs de Madame Louise-Élisabeth Vigée-Lebrun, Tome second', 'Vigée-Lebrun, Louise-Elisabeth', '2007-10-12', 19, 'https://www.gutenberg.org/ebooks/23020', 'fr', 3405), +(5808, 'Rembrandt', 'Menpes, Mortimer', '2005-12-03', 55, 'https://www.gutenberg.org/ebooks/17215', 'en', 596), +(5809, 'Il Comento alla Divina Commedia, e gli altri scritti intorno a Dante, vol. 2', 'Boccaccio, Giovanni', '2014-12-07', 24, 'https://www.gutenberg.org/ebooks/47565', 'it', 3406), +(5810, 'Die gefesselte Phantasie', 'Raimund, Ferdinand', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6642', 'de', 907), +(5811, 'Household Organization', 'Caddy, Florence', '2010-10-18', 30, 'https://www.gutenberg.org/ebooks/34097', 'en', 3407), +(5812, 'The Beginnings of New England\nOr the Puritan Theocracy in its Relations to Civil and Religious Liberty', 'Fiske, John', '2004-06-28', 15, 'https://www.gutenberg.org/ebooks/12767', 'en', 3408), +(5813, 'Le Bossu Volume 6\nAventures de cape et d\'épée', 'Féval, Paul', '2011-04-27', 22, 'https://www.gutenberg.org/ebooks/35979', 'fr', 654), +(5814, 'Fruits of Queensland', 'Benson, Albert H.', '2008-09-07', 26, 'https://www.gutenberg.org/ebooks/26552', 'en', 3409), +(5815, 'The Analects of Confucius (from the Chinese Classics)', 'Confucius', '2002-07-01', 411, 'https://www.gutenberg.org/ebooks/3330', 'en', 1437), +(5816, 'Tom Burnaby: A Story of Uganda and the Great Congo Forest', 'Strang, Herbert', '2013-02-04', 197, 'https://www.gutenberg.org/ebooks/42017', 'en', 3410), +(5817, 'Larson\'s Luck', 'Vance, Gerald', '2009-11-09', 28, 'https://www.gutenberg.org/ebooks/30437', 'en', 26), +(5818, 'Encyclopaedia Britannica, 11th Edition, \"Banks\" to \"Bassoon\"\r\nVolume 3, Part 1, Slice 3', 'Various', '2008-12-10', 64, 'https://www.gutenberg.org/ebooks/27480', 'en', 1081), +(5819, 'One Touch of Nature: A Petite Drama, in One Act', 'Webster, Benjamin', '2017-02-15', 5, 'https://www.gutenberg.org/ebooks/54172', 'en', 1281), +(5820, 'Cast Upon the Breakers', 'Alger, Horatio, Jr.', '2006-01-16', 90, 'https://www.gutenberg.org/ebooks/399', 'en', 1655), +(5821, 'Romans et contes', 'Gautier, Théophile', '2016-04-02', 32, 'https://www.gutenberg.org/ebooks/51632', 'fr', 100), +(5822, 'Cookery and Dining in Imperial Rome', 'Apicius', '2009-08-19', 765, 'https://www.gutenberg.org/ebooks/29728', 'en', 3411), +(5823, 'A Wonder Book and Tanglewood Tales, for Girls and Boys', 'Hawthorne, Nathaniel', '2011-02-23', 106, 'https://www.gutenberg.org/ebooks/35377', 'en', 3412), +(5824, 'Doctor Luke of the Labrador', 'Duncan, Norman', '2006-11-30', 14, 'https://www.gutenberg.org/ebooks/19981', 'en', 1563), +(5825, 'A Ride on Horseback to Florence Through France and Switzerland. Vol. 1 of 2\nDescribed in a Series of Letters by a Lady', 'Holmes, Augusta Macgregor', '2014-08-25', 17, 'https://www.gutenberg.org/ebooks/46685', 'en', 1408), +(5826, 'A Manual of Philippine Birds', 'McGregor, Richard C. (Richard Crittenden)', '2014-12-23', 13, 'https://www.gutenberg.org/ebooks/47757', 'en', 3413), +(5827, 'Le Ventre de Paris', 'Zola, Émile', '2004-09-01', 100, 'https://www.gutenberg.org/ebooks/6470', 'fr', 560), +(5828, 'Chambers\'s Edinburgh Journal, No. 438\nVolume 17, New Series, May 22, 1852', 'Various', '2006-07-17', 23, 'https://www.gutenberg.org/ebooks/18853', 'en', 18), +(5829, 'Divina Commedia di Dante: Inferno', 'Dante Alighieri', '1997-08-01', 208, 'https://www.gutenberg.org/ebooks/997', 'it', 2091), +(5830, 'Notes and Queries, Number 72, March 15, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-27', 10, 'https://www.gutenberg.org/ebooks/23212', 'en', 105), +(5831, 'Return to Pleasure Island', 'Doctorow, Cory', '2005-11-20', 44, 'https://www.gutenberg.org/ebooks/17027', 'en', 26), +(5832, 'Their Pilgrimage', 'Warner, Charles Dudley', '2004-10-10', 17, 'https://www.gutenberg.org/ebooks/3102', 'en', 3414), +(5833, 'The Ordeal of Mark Twain', 'Brooks, Van Wyck', '2013-02-27', 31, 'https://www.gutenberg.org/ebooks/42225', 'en', 836), +(5834, 'The Tragedy of the Korosko', 'Doyle, Arthur Conan', '2004-06-01', 37, 'https://www.gutenberg.org/ebooks/12555', 'en', 3415), +(5835, 'The Scaring off of Teddy Dawson: A Comedy in One Act', 'Brighouse, Harold', '2017-08-07', 9, 'https://www.gutenberg.org/ebooks/55292', 'en', 3416), +(5836, 'Memories of Bethany', 'Macduff, John R. (John Ross)', '2008-10-03', 12, 'https://www.gutenberg.org/ebooks/26760', 'en', 3417), +(5837, 'The Art of Architectural Modelling in Paper', 'Richardson, T. A. (Architect)', '2017-03-11', 18, 'https://www.gutenberg.org/ebooks/54340', 'en', 3418), +(5838, 'The Ideal Bartender', 'Bullock, Tom', '2004-09-17', 77, 'https://www.gutenberg.org/ebooks/13487', 'en', 3419), +(5839, 'Spagna', 'De Amicis, Edmondo', '2009-12-07', 33, 'https://www.gutenberg.org/ebooks/30605', 'it', 1514), +(5840, 'The Well-Beloved', 'Hardy, Thomas', '2005-12-01', 8, 'https://www.gutenberg.org/ebooks/9438', 'en', 1061), +(5841, 'Sir Ian Hamilton\'s Despatches from the Dardanelles, etc.', 'Hamilton, Ian', '2017-01-13', 18, 'https://www.gutenberg.org/ebooks/53959', 'en', 1074), +(5842, 'A Letter from Mr. Cibber to Mr. Pope', 'Cibber, Colley', '2010-07-05', 19, 'https://www.gutenberg.org/ebooks/33080', 'en', 3420), +(5843, 'The Nibelungenlied\nRevised Edition', NULL, '2012-01-02', 32, 'https://www.gutenberg.org/ebooks/38468', 'en', 3095), +(5844, 'The God of His Fathers: Tales of the Klondyke', 'London, Jack', '1999-02-01', 96, 'https://www.gutenberg.org/ebooks/1655', 'en', 179), +(5845, 'The Flying Bo\'sun: A Mystery of the Sea', 'Mason, Arthur', '2012-08-24', 14, 'https://www.gutenberg.org/ebooks/40572', 'en', 3421), +(5846, 'Maria Mitchell: Life, Letters, and Journals', 'Mitchell, Maria', '2003-11-01', 56, 'https://www.gutenberg.org/ebooks/10202', 'en', 3422), +(5847, '顔氏家訓', 'Yan, Zhitui', '2007-12-26', 12, 'https://www.gutenberg.org/ebooks/24037', 'zh', 740), +(5848, 'Két mosoly', 'Karinthy, Frigyes', '2018-01-22', 6, 'https://www.gutenberg.org/ebooks/56417', 'hu', 1532), +(5849, 'The Widow [To Say Nothing of the Man]', 'Rowland, Helen', '2010-04-27', 9, 'https://www.gutenberg.org/ebooks/32152', 'en', 500), +(5850, 'A Day with Robert Louis Stevenson', 'Byron, May', '2016-09-28', 18, 'https://www.gutenberg.org/ebooks/53165', 'en', 3163), +(5851, 'Bucholz and the Detectives', 'Pinkerton, Allan', '2007-01-31', 21, 'https://www.gutenberg.org/ebooks/20497', 'en', 1833), +(5852, 'Paint Technology and Tests', 'Gardner, Henry A. (Henry Alfred)', '2011-09-13', 24, 'https://www.gutenberg.org/ebooks/37420', 'en', 3423), +(5853, 'Elias Lönnrotin nuoruuden ajoilta Laukon kartanossa', 'Nervander, Emil Fredrik', '2014-02-25', 3, 'https://www.gutenberg.org/ebooks/45000', 'fi', 3424), +(5854, 'The Valley of Decision', 'Wharton, Edith', '2003-08-01', 55, 'https://www.gutenberg.org/ebooks/4327', 'en', 16), +(5855, 'Trovas Inedìtas de Bandarra', 'Bandarra, Gonçalo Anes', '2007-05-21', 26, 'https://www.gutenberg.org/ebooks/21545', 'pt', 3425); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(5856, 'Germany, The Next Republic?', 'Ackerman, Carl W. (Carl William)', '2005-05-05', 29, 'https://www.gutenberg.org/ebooks/15770', 'en', 932), +(5857, 'Christmas Stories from French and Spanish Writers', NULL, '2014-11-12', 31, 'https://www.gutenberg.org/ebooks/47333', 'en', 585), +(5858, 'West Wind Drift', 'McCutcheon, George Barr', '2004-07-01', 40, 'https://www.gutenberg.org/ebooks/6014', 'en', 194), +(5859, 'Titus Andronicus', 'Shakespeare, William', '2007-12-02', 10, 'https://www.gutenberg.org/ebooks/23676', 'nl', 1298), +(5860, 'Un faccioso más y algunos frailes menos', 'Pérez Galdós, Benito', '2006-01-02', 39, 'https://www.gutenberg.org/ebooks/17443', 'es', 3426), +(5861, 'The Mentor: Egypt, the Land of Mystery, Serial No. 42', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2015-11-04', 10, 'https://www.gutenberg.org/ebooks/50384', 'en', 2589), +(5862, 'Moni der Geißbub', 'Spyri, Johanna', '2006-02-01', 21, 'https://www.gutenberg.org/ebooks/9860', 'de', 3427), +(5863, 'The Cool War', 'Fetler, Andrew', '2016-02-21', 37, 'https://www.gutenberg.org/ebooks/51256', 'en', 3428), +(5864, 'Unity of Good', 'Eddy, Mary Baker', '2005-08-25', 14, 'https://www.gutenberg.org/ebooks/16591', 'en', 1206), +(5865, 'Punch, or the London Charivari, Volume 105, July 29th 1893', 'Various', '2011-03-30', 25, 'https://www.gutenberg.org/ebooks/35713', 'en', 134), +(5866, 'The Works of Henry Fielding, vol. 12', 'Fielding, Henry', '2004-11-01', 36, 'https://www.gutenberg.org/ebooks/6828', 'en', 3429), +(5867, 'Folk Tales of Breffny', 'Hunt, Bampton', '2017-05-14', 23, 'https://www.gutenberg.org/ebooks/54724', 'en', 3430), +(5868, 'Zen and the Art of the Internet', 'Kehoe, Brendan P.', '1992-06-01', 375, 'https://www.gutenberg.org/ebooks/34', 'en', 2599), +(5869, 'Lena Graham', 'Lowndes, Cecilia Selby', '2013-09-22', 26, 'https://www.gutenberg.org/ebooks/43793', 'en', 733), +(5870, 'Claire: The Blind Love of a Blind Hero, by a Blind Author', 'Blades, Leslie Burton', '2009-10-15', 21, 'https://www.gutenberg.org/ebooks/30261', 'en', 2242), +(5871, 'Memoirs of Napoleon Bonaparte — Volume 16', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 31, 'https://www.gutenberg.org/ebooks/3566', 'en', 1770), +(5872, 'Friends', 'Gibson, Wilfrid Wilson', '2013-05-03', 13, 'https://www.gutenberg.org/ebooks/42641', 'en', 54), +(5873, 'A Golden Venture\nThe Lady of the Barge and Others, Part 11.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 3, 'https://www.gutenberg.org/ebooks/12131', 'en', 72), +(5874, 'The Stolen White Elephant', 'Twain, Mark', '2008-08-01', 2, 'https://www.gutenberg.org/ebooks/26304', 'en', 179), +(5875, 'Rinkitink in Oz', 'Baum, L. Frank (Lyman Frank)', '2008-05-24', 90, 'https://www.gutenberg.org/ebooks/25581', 'en', 174), +(5876, 'Captain Salt in Oz', 'Thompson, Ruth Plumly', '2017-11-28', 40, 'https://www.gutenberg.org/ebooks/56073', 'en', 580), +(5877, 'With Carson and Frémont\r\nBeing the Adventures, in the Years 1842-\'43-\'44, on Trail Over Mountains and Through Deserts From the East of the Rockies to the West of the Sierras, of Scout Christopher Carson and Lieutenant John Charles Frémont, Leading Their Brave Company Including the Boy Oliver', 'Sabin, Edwin L. (Edwin Legrand)', '2019-06-25', 113, 'https://www.gutenberg.org/ebooks/59807', 'en', 3431), +(5878, 'Baskervillen koira', 'Doyle, Arthur Conan', '2010-05-25', 54, 'https://www.gutenberg.org/ebooks/32536', 'fi', 430), +(5879, 'On the Track', 'Lawson, Henry', '1998-03-01', 46, 'https://www.gutenberg.org/ebooks/1231', 'en', 129), +(5880, 'Edith and John: A Story of Pittsburgh', 'Farquhar, Franklin Smith', '2012-07-01', 7, 'https://www.gutenberg.org/ebooks/40116', 'en', 3432), +(5881, 'The Public vs. M. Gustave Flaubert', 'Various', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10666', 'en', 3433), +(5882, 'Life of Oliver Wendell Holmes', 'Brown, E. E. (Emma Elizabeth)', '2011-10-30', 10, 'https://www.gutenberg.org/ebooks/37878', 'en', 131), +(5883, 'Punch, or the London Charivari, Vol. 146, June 17, 1914', 'Various', '2008-01-29', 7, 'https://www.gutenberg.org/ebooks/24453', 'en', 134), +(5884, 'The Mormon Doctrine of Deity: The Roberts-Van Der Donckt Discussion\r\nTo which is added a discourse, Jesus Christ, the revelation of God; also a collection of authoritative Mormon utterances on the being and nature of God', 'Roberts, B. H. (Brigham Henry)', '2014-04-24', 41, 'https://www.gutenberg.org/ebooks/45464', 'en', 3434), +(5885, 'The Country Beyond: A Romance of the Wilderness', 'Curwood, James Oliver', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/4743', 'en', 315), +(5886, 'Boston Neighbours In Town and Out', 'Poor, Agnes Blake', '2011-05-22', 6, 'https://www.gutenberg.org/ebooks/36196', 'en', 3435), +(5887, 'A Houseful of Girls', 'Vaizey, George de Horne, Mrs.', '2007-04-17', 37, 'https://www.gutenberg.org/ebooks/21121', 'en', 1625), +(5888, 'Rakastunut rampa eli Sakris Kukkelman, köyhä polseviikki', 'Lehtonen, Joel', '2005-03-10', 12, 'https://www.gutenberg.org/ebooks/15314', 'fi', 456), +(5889, 'Unfettered: A Novel', 'Griggs, Sutton E. (Sutton Elbert)', '2012-02-11', 21, 'https://www.gutenberg.org/ebooks/38830', 'en', 3436), +(5890, 'The Southern Literary Messenger, Vol. I., No. 3, November, 1834', 'Various', '2016-11-11', 7, 'https://www.gutenberg.org/ebooks/53501', 'en', 522), +(5891, 'The Innocents Abroad — Volume 04', 'Twain, Mark', '2004-06-22', 15, 'https://www.gutenberg.org/ebooks/5691', 'en', 885), +(5892, 'The Irish Ecclesiastical Record, Volume 1, June 1865', NULL, '2011-08-11', 5, 'https://www.gutenberg.org/ebooks/37044', 'en', 3437), +(5893, 'Stepsons of Light', 'Rhodes, Eugene Manlove', '2010-06-05', 14, 'https://www.gutenberg.org/ebooks/32704', 'en', 315), +(5894, 'L\'Ameublement de l\'Hôtel de Pitsembourg au milieu du XVIIe siècle\nCommunication faite en séance du 26 avril 1901', 'D\'Awans, Robert', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11586', 'fr', 3438), +(5895, 'The Indian Bangle', 'Hume, Fergus', '2017-12-23', 39, 'https://www.gutenberg.org/ebooks/56241', 'en', 167), +(5896, 'Journal 01, 1837-1846\r\nThe Writings of Henry David Thoreau, Volume 07 (of 20)', 'Thoreau, Henry David', '2018-06-25', 66, 'https://www.gutenberg.org/ebooks/57393', 'en', 3439), +(5897, 'Tales for Young and Old', 'Various', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/10454', 'en', 179), +(5898, 'Camilleana\nCollecção das obras de Camillo Castello Branco', 'Mota, João Xavier da', '2008-02-20', 10, 'https://www.gutenberg.org/ebooks/24661', 'pt', 3440), +(5899, 'Divine Comedy, Longfellow\'s Translation, Paradise', 'Dante Alighieri', '1997-08-01', 55, 'https://www.gutenberg.org/ebooks/1003', 'en', 2212), +(5900, 'True to a Type, Vol. 1 (of 2)', 'Cleland, Robert', '2012-07-24', 5, 'https://www.gutenberg.org/ebooks/40324', 'en', 61), +(5901, 'In Honour\'s Cause: A Tale of the Days of George the First', 'Fenn, George Manville', '2007-05-04', 5, 'https://www.gutenberg.org/ebooks/21313', 'en', 1655), +(5902, 'The Defensive Armour and the Weapons and Engines of War of Mediæval Times, and of the \"Renaissance.\"', 'Clephan, R. Coltman (Robert Coltman)', '2019-04-05', 18, 'https://www.gutenberg.org/ebooks/59209', 'en', 3441), +(5903, 'Lecture on the Aborigines of Newfoundland\r\nDelivered Before the Mechanics\' Institute, at St. John\'s,\r\nNewfoundland, on Monday, 17th January, 1859', 'Noad, Joseph', '2005-02-21', 14, 'https://www.gutenberg.org/ebooks/15126', 'en', 3442), +(5904, 'The Ancient Cities of the New World\nBeing Travels and Explorations in Mexico and Central America From 1857-1882', 'Charnay, Désiré', '2014-05-15', 27, 'https://www.gutenberg.org/ebooks/45656', 'en', 3443), +(5905, 'Master Sunshine', 'Fraser, C. F., Mrs.', '2003-10-01', 9, 'https://www.gutenberg.org/ebooks/4571', 'en', 2154), +(5906, 'A Journal of the Expedition to Carthagena, with Notes\r\nIn Answer to a Late Pamphlet Entitled, An account of the Expedition to Carthagena', NULL, '2011-08-31', 15, 'https://www.gutenberg.org/ebooks/37276', 'en', 3444), +(5907, 'Plattdeutsche Briefe, Erzählungen und Gedichte\r\nmit besonderer Rücksicht auf Sprichwörter und eigenthümliche Redensarten des Landvolks in Westphalen', 'Lyra, F. W. (Friedrich Wilhelm)', '2014-01-28', 6, 'https://www.gutenberg.org/ebooks/44784', 'de', 3445), +(5908, 'The Fiddlers; Drink in the Witness Box', 'Mee, Arthur', '2016-12-15', 10, 'https://www.gutenberg.org/ebooks/53733', 'en', 3446), +(5909, 'The Gland Stealers', 'Gayton, Bertram', '2015-05-16', 10, 'https://www.gutenberg.org/ebooks/48975', 'en', 3447), +(5910, 'Deux et deux font cinq (2 + 2 = 5)\r\noeuvres anthumes', 'Allais, Alphonse', '2007-11-11', 34, 'https://www.gutenberg.org/ebooks/23444', 'fr', 100), +(5911, 'Poesie scelte', 'Pellico, Silvio', '2006-02-03', 22, 'https://www.gutenberg.org/ebooks/17671', 'it', 8), +(5912, 'Savu-uhri: Kolminäytöksinen huvinäytelmä', 'Jotuni, Maria', '2014-10-12', 15, 'https://www.gutenberg.org/ebooks/47101', 'fi', 382), +(5913, 'The Seats of the Mighty, Volume 3', 'Parker, Gilbert', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/6226', 'en', 893), +(5914, 'Riding Recollections, 5th ed.', 'Whyte-Melville, G. J. (George John)', '2011-03-08', 20, 'https://www.gutenberg.org/ebooks/35521', 'en', 3448), +(5915, 'Rubáiyát of a Motor Car', 'Wells, Carolyn', '2016-01-28', 15, 'https://www.gutenberg.org/ebooks/51064', 'en', 3449), +(5916, 'Measure for a Loner', 'Harmon, Jim', '2007-09-14', 36, 'https://www.gutenberg.org/ebooks/22596', 'en', 26), +(5917, 'Helps to Latin Translation at Sight', 'Luce, Edmund', '2009-05-20', 49, 'https://www.gutenberg.org/ebooks/28890', 'en', 3450), +(5918, 'Fundamental Philosophy, Vol. 1 (of 2)', 'Balmes, Jaime Luciano', '2015-02-03', 24, 'https://www.gutenberg.org/ebooks/48149', 'en', 3451), +(5919, 'Los Puritanos, y otros cuentos', 'Palacio Valdés, Armando', '2009-09-21', 60, 'https://www.gutenberg.org/ebooks/30053', 'es', 3452), +(5920, 'The Book of Snobs', 'Thackeray, William Makepeace', '2006-05-25', 126, 'https://www.gutenberg.org/ebooks/2686', 'en', 3453), +(5921, 'The Victorian Age in Literature', 'Chesterton, G. K. (Gilbert Keith)', '2006-06-20', 109, 'https://www.gutenberg.org/ebooks/18639', 'en', 2644), +(5922, 'Uusi pirtti: 4-näytöksinen näytelmä', 'Järventaus, Arvi', '2017-04-09', 7, 'https://www.gutenberg.org/ebooks/54516', 'fi', 382), +(5923, 'Fated to Be Free: A Novel', 'Ingelow, Jean', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12303', 'en', 61), +(5924, 'The Worship of the Church\nand The Beauty of Holiness', 'Regester, J. A. (Jacob Asbury)', '2008-07-27', 8, 'https://www.gutenberg.org/ebooks/26136', 'en', 3454), +(5925, 'Mascara-Viscera', 'Brown, Paul Cameron', '2010-02-04', 8, 'https://www.gutenberg.org/ebooks/31181', 'en', 28), +(5926, 'Los Contrastes de la Vida', 'Baroja, Pío', '2016-04-25', 18, 'https://www.gutenberg.org/ebooks/51858', 'es', 731), +(5927, 'The Wonders of Instinct: Chapters in the Psychology of Insects', 'Fabre, Jean-Henri', '2003-02-01', 46, 'https://www.gutenberg.org/ebooks/3754', 'en', 2667), +(5928, 'A Letter to Hon. Charles Sumner, with \'Statements\' of Outrages upon Freedmen in Georgia', 'Pierson, Hamilton W. (Hamilton Wilcox)', '2009-09-09', 13, 'https://www.gutenberg.org/ebooks/29942', 'en', 3455), +(5929, 'Encyclopaedia Britannica, 11th Edition, \"Matter\" to \"Mecklenburg\"\r\nVolume 17, Slice 8', 'Various', '2013-04-07', 29, 'https://www.gutenberg.org/ebooks/42473', 'en', 1081), +(5930, 'Peggy O\'Neal', 'Lewis, Alfred Henry', '2017-01-18', 9, 'https://www.gutenberg.org/ebooks/53992', 'en', 3456), +(5931, 'Harper\'s Young People, February 15, 1881\nAn Illustrated Weekly', 'Various', '2014-02-15', 13, 'https://www.gutenberg.org/ebooks/44925', 'en', 479), +(5932, 'A House-Party, Don Gesualdo, and A Rainy June', 'Ouida', '2010-05-01', 25, 'https://www.gutenberg.org/ebooks/32199', 'en', 401), +(5933, 'Salvation Universal', 'Smith, Joseph Fielding', '2016-08-18', 16, 'https://www.gutenberg.org/ebooks/52840', 'en', 3434), +(5934, 'Nicolo Paganini: His Life and Work', 'Stratton, Stephen S. (Stephen Samuel)', '2012-04-29', 58, 'https://www.gutenberg.org/ebooks/39571', 'en', 3457), +(5935, 'Jaffery', 'Locke, William John', '2005-01-11', 41, 'https://www.gutenberg.org/ebooks/14669', 'en', 61), +(5936, 'The Voice of the Pack', 'Marshall, Edison', '2010-10-20', 12, 'https://www.gutenberg.org/ebooks/33877', 'en', 3458), +(5937, 'Christmas Candles: Plays for Boys and Girls', 'Carter, Elsie Hobart', '2018-12-26', 6, 'https://www.gutenberg.org/ebooks/58546', 'en', 3459), +(5938, 'Jesus, The Messiah; or, the Old Testament Prophecies Fulfilled in the New Testament Scriptures, by a Lady', 'Anonymous', '2013-11-06', 27, 'https://www.gutenberg.org/ebooks/44119', 'en', 3460), +(5939, 'St. Dionysius of Alexandria: Letters and Treatises', 'Dionysius, of Alexandria, Saint', '2011-06-27', 38, 'https://www.gutenberg.org/ebooks/36539', 'en', 3461), +(5940, 'Sea Power in its Relations to the War of 1812. Volume 2', 'Mahan, A. T. (Alfred Thayer)', '2008-06-30', 12, 'https://www.gutenberg.org/ebooks/25912', 'en', 3462), +(5941, 'Night Court', 'Arkawy, Norman', '2019-05-13', 61, 'https://www.gutenberg.org/ebooks/59494', 'en', 179), +(5942, 'Widger\'s Quotes and Images from Gerfaut by Charles de Bernard\r\nThe French Immortals: Quotes And Images', 'Bernard, Charles de', '2009-07-13', 7, 'https://www.gutenberg.org/ebooks/7569', 'en', 2391), +(5943, 'Chambers\'s Edinburgh Journal, No. 437\nVolume 17, New Series, May 15, 1852', 'Various', '2006-07-23', 14, 'https://www.gutenberg.org/ebooks/18898', 'en', 18), +(5944, 'Aslauga\'s Knight', 'La Motte-Fouqué, Friedrich Heinrich Karl, Freiherr de', '2001-09-01', 38, 'https://www.gutenberg.org/ebooks/2827', 'en', 803), +(5945, 'Amabel Channice', 'Sedgwick, Anne Douglas', '2009-04-28', 11, 'https://www.gutenberg.org/ebooks/28631', 'en', 434), +(5946, 'Anathema: A Tragedy in Seven Scenes', 'Andreyev, Leonid', '2015-08-05', 17, 'https://www.gutenberg.org/ebooks/49606', 'en', 1298), +(5947, 'Maintaining Health (Formerly Health and Efficiency)', 'Alsaker, Rasmus Larssen', '2005-07-01', 45, 'https://www.gutenberg.org/ebooks/8521', 'en', 3463), +(5948, 'May Brooke', 'Dorsey, Anna Hanson', '2005-10-18', 5, 'https://www.gutenberg.org/ebooks/16902', 'en', 3319), +(5949, 'La porte des rêves', 'Schwob, Marcel', '2017-08-04', 14, 'https://www.gutenberg.org/ebooks/55259', 'fr', 100), +(5950, 'Kuvauksia metsäelämästä sivistyksen äärimmäisellä rajalla\neli Natty Bumpon elämänvaiheet', 'Cooper, James Fenimore', '2006-09-04', 13, 'https://www.gutenberg.org/ebooks/19176', 'fi', 3464), +(5951, 'The Awakening, and Selected Short Stories', 'Chopin, Kate', '2006-03-11', 2528, 'https://www.gutenberg.org/ebooks/160', 'en', 3465), +(5952, 'Uncle Sam\'s Boys as Sergeants; or, Handling Their First Real Commands', 'Hancock, H. Irving (Harrie Irving)', '2008-12-31', 12, 'https://www.gutenberg.org/ebooks/27679', 'en', 3466), +(5953, 'Cynthia Ann Parker\r\nThe Story of Her Capture at the Massacre of the Inmates of Parker\'s Fort; of Her Quarter of a Century Spent Among the Comanches, as the Wife of the War Chief, Peta Nocona; and of Her Recapture at the Battle of Pease River, by Captain L. S. Ross, of the Texian Rangers', 'DeShields, James T.', '2017-10-31', 25, 'https://www.gutenberg.org/ebooks/55857', 'en', 3467), +(5954, 'Leiðarvísir í ástamálum\nI. Karlmenn', 'Ingimundur Sveinsson', '2007-07-25', 4, 'https://www.gutenberg.org/ebooks/22139', 'is', 1451), +(5955, 'The Sword and Gun: A History of the 37th Wis. Volunteer Infantry', 'Eden, R. C. (Robert C.)', '2015-11-20', 4, 'https://www.gutenberg.org/ebooks/50519', 'en', 1489), +(5956, 'Wallenstein. 2 (of 2)', 'Döblin, Alfred', '2013-10-11', 27, 'https://www.gutenberg.org/ebooks/43932', 'de', 3468), +(5957, 'Racconti umoristici: In cerca di morte; Re per ventiquattrore', 'Tarchetti, Iginio Ugo', '2009-03-25', 45, 'https://www.gutenberg.org/ebooks/28403', 'it', 860), +(5958, 'Poems', 'Arnold, Matthew', '2017-06-26', 25, 'https://www.gutenberg.org/ebooks/54985', 'en', 532), +(5959, 'Fielding', 'Dobson, Austin', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6689', 'en', 3469), +(5960, 'A Black Adonis', 'Porter, Linn Boyd', '2008-09-12', 20, 'https://www.gutenberg.org/ebooks/26599', 'en', 1958), +(5961, 'La vie littéraire. Deuxième série', 'France, Anatole', '2006-09-22', 14, 'https://www.gutenberg.org/ebooks/19344', 'fr', 1765), +(5962, 'Punch, or the London Charivari, Vol. 158, 1920-04-07', 'Various', '2007-10-06', 11, 'https://www.gutenberg.org/ebooks/22905', 'en', 134), +(5963, 'A Compendium of the Doctrines of the Gospel', NULL, '2015-07-13', 98, 'https://www.gutenberg.org/ebooks/49434', 'en', 3434), +(5964, 'A Man of Means', 'Wodehouse, P. G. (Pelham Grenville)', '2005-08-01', 108, 'https://www.gutenberg.org/ebooks/8713', 'en', 637), +(5965, 'Faust: Der Tragödie erster Teil', 'Goethe, Johann Wolfgang von', '2000-06-01', 441, 'https://www.gutenberg.org/ebooks/2229', 'de', 3470), +(5966, 'East of Suez: A Play in Seven Scenes', 'Maugham, W. Somerset (William Somerset)', '2011-01-05', 33, 'https://www.gutenberg.org/ebooks/34860', 'en', 2455), +(5967, 'Buttered Side Down: Stories', 'Ferber, Edna', '1995-11-01', 103, 'https://www.gutenberg.org/ebooks/352', 'en', 179), +(5968, 'Scènes de mer, Tome II', 'Corbière, Edouard', '2006-05-01', 18, 'https://www.gutenberg.org/ebooks/18296', 'fr', 324), +(5969, 'A Garland for Girls', 'Alcott, Louisa May', '2004-06-01', 100, 'https://www.gutenberg.org/ebooks/5830', 'en', 195), +(5970, 'The Riddle of the Spinning Wheel', 'Hanshew, Mary E.', '2010-07-28', 27, 'https://www.gutenberg.org/ebooks/33279', 'en', 1480), +(5971, 'Down Under with the Prince', 'Cotes, Everard', '2012-01-27', 11, 'https://www.gutenberg.org/ebooks/38691', 'en', 767), +(5972, 'American Football', 'Camp, Walter', '2012-05-20', 35, 'https://www.gutenberg.org/ebooks/39743', 'en', 3471), +(5973, 'The Swiss Family Robinson: A Translation from the Original German', 'Wyss, Johann David', '2012-12-19', 62, 'https://www.gutenberg.org/ebooks/41659', 'en', 123), +(5974, 'No and Other Stories Compiled by Uncle Humphrey', 'Various', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/11129', 'en', 195), +(5975, 'Court Netherleigh: A Novel', 'Wood, Henry, Mrs.', '2019-01-26', 21, 'https://www.gutenberg.org/ebooks/58774', 'en', 137), +(5976, 'Les vies encloses', 'Rodenbach, Georges', '2005-04-08', 9, 'https://www.gutenberg.org/ebooks/15589', 'fr', 8), +(5977, 'The Adventures of Mr. Mocker', 'Burgess, Thornton W. (Thornton Waldo)', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/11915', 'en', 625), +(5978, 'The Spirit of American Government\nA Study Of The Constitution: Its Origin, Influence And\nRelation To Democracy', 'Smith, J. Allen (James Allen)', '2009-02-13', 18, 'https://www.gutenberg.org/ebooks/28067', 'en', 3472), +(5979, 'The Troubles of Biddy: A Pretty Little Story', 'Byrum, Isabel C. (Isabel Coston)', '2010-11-25', 10, 'https://www.gutenberg.org/ebooks/34438', 'en', 3473), +(5980, 'Merry-Garden and Other Stories', 'Quiller-Couch, Arthur', '2009-01-15', 22, 'https://www.gutenberg.org/ebooks/27813', 'en', 179), +(5981, 'Loyola and the Educational System of the Jesuits', 'Hughes, Thomas', '2014-06-18', 19, 'https://www.gutenberg.org/ebooks/46018', 'en', 3474), +(5982, 'The History of Sumatra\nContaining An Account Of The Government, Laws, Customs And\nManners Of The Native Inhabitants', 'Marsden, William', '2005-09-28', 127, 'https://www.gutenberg.org/ebooks/16768', 'en', 3475), +(5983, 'Derelict', 'Nourse, Alan Edward', '2010-04-13', 45, 'https://www.gutenberg.org/ebooks/31976', 'en', 26), +(5984, 'Motor Matt\'s Enemies; or, A Struggle for the Right\r\nMotor Stories Thrilling Adventure Motor Fiction No. 22, July 24, 1909', 'Matthews, Stanley R.', '2016-01-16', 11, 'https://www.gutenberg.org/ebooks/50941', 'en', 2722), +(5985, 'The Venetian School of Painting', 'Phillipps, Evelyn March', '2009-09-26', 24, 'https://www.gutenberg.org/ebooks/30098', 'en', 3476), +(5986, 'The Sabbath\r\nA Paper Read at the Conference of the Evangelical Alliance, Held at Geneva, September 2. 1861', 'Thomson, Andrew', '2015-02-06', 28, 'https://www.gutenberg.org/ebooks/48182', 'en', 3477), +(5987, 'History of the Decline and Fall of the Roman Empire — Volume 6', 'Gibbon, Edward', '1996-11-01', 184, 'https://www.gutenberg.org/ebooks/736', 'en', 1292), +(5988, 'De profundis', 'Wilde, Oscar', '2014-09-09', 24, 'https://www.gutenberg.org/ebooks/46824', 'fi', 3478), +(5989, 'De zomer in Kaschmir\r\nDe Aarde en haar Volken, 1907', 'Michel, F.', '2006-11-05', 3, 'https://www.gutenberg.org/ebooks/19720', 'nl', 3479), +(5990, 'Synnöve Solbakken: Erzählung', 'Bjørnson, Bjørnstjerne', '2015-05-26', 11, 'https://www.gutenberg.org/ebooks/49050', 'de', 286), +(5991, 'The Outbreak of Peace', 'Fyfe, H. B. (Horace Bowne)', '2009-09-14', 55, 'https://www.gutenberg.org/ebooks/29989', 'en', 179), +(5992, 'The Water Ghost and Others', 'Bangs, John Kendrick', '2005-06-01', 27, 'https://www.gutenberg.org/ebooks/8377', 'en', 3480), +(5993, 'The Land of Little Rain', 'Austin, Mary Hunter', '2016-04-30', 45, 'https://www.gutenberg.org/ebooks/51893', 'en', 3481), +(5994, 'L\'Illustration, No. 0034, 21 Octobre 1843', 'Various', '2012-04-01', 4, 'https://www.gutenberg.org/ebooks/39327', 'fr', 150), +(5995, 'Polly\'s Business Venture', 'Roy, Lillian Elizabeth', '2008-06-13', 28, 'https://www.gutenberg.org/ebooks/25778', 'en', 1708), +(5996, 'Hawk\'s Nest; or, The Last of the Cahoonshees.\r\nA Tale of the Delaware Valley and Historical Romance of 1690.', 'Allerton, James M. (James Martin)', '2018-06-19', 13, 'https://www.gutenberg.org/ebooks/57358', 'en', 98), +(5997, 'Journal des Goncourt (Deuxième volume)\r\nMémoires de la vie littéraire', 'Goncourt, Edmond de', '2005-01-25', 13, 'https://www.gutenberg.org/ebooks/14803', 'fr', 3482), +(5998, 'Joshua — Volume 2', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5468', 'en', 803), +(5999, 'John Lackland', 'Norgate, Kate', '2018-11-19', 4, 'https://www.gutenberg.org/ebooks/58310', 'en', 3483), +(6000, 'The Girl From His Town', 'Van Vorst, Marie', '2011-08-03', 6, 'https://www.gutenberg.org/ebooks/36961', 'en', 757), +(6001, 'Geoffery Gambado\nA Simple Remedy for Hypochondriacism and Melancholy Splenetic Humours', 'Cobbold, Richard', '2012-03-12', 5, 'https://www.gutenberg.org/ebooks/39115', 'en', 637), +(6002, 'Lucretia Borgia\nAccording to Original Documents and Correspondence of Her Day', 'Gregorovius, Ferdinand', '2007-03-13', 44, 'https://www.gutenberg.org/ebooks/20804', 'en', 3484), +(6003, 'Memoirs of the Life of Sir Walter Scott, Volume 5 (of 10)', 'Lockhart, J. G. (John Gibson)', '2008-02-02', 10, 'https://www.gutenberg.org/ebooks/24498', 'en', 3485), +(6004, '\"Trip to the Sunny South\" in March, 1885\r\nParis, Macon, Geneva, Mentone, San Remo, Monte Carlo, Monaco, Italy, Genoa, Turin, Leghorn, Pisa, Naples, Rome, Reggio, Sicily, Messina, Catania, Syracuse, Malta, Gibraltar', 'D., L. S.', '2018-03-31', 15, 'https://www.gutenberg.org/ebooks/56884', 'en', 1408), +(6005, 'Mademoiselle Fifi', 'Maupassant, Guy de', '2003-12-01', 34, 'https://www.gutenberg.org/ebooks/4788', 'en', 1112), +(6006, 'A Dialogue upon the Gardens of the Right Honorouble the Lord Viscount Cobham at Stow in Buckinghamshire', 'Gilpin, William', '2012-06-06', 11, 'https://www.gutenberg.org/ebooks/39929', 'en', 3486), +(6007, 'Mr Britling pääsee selvyyteen II', 'Wells, H. G. (Herbert George)', '2016-06-27', 12, 'https://www.gutenberg.org/ebooks/52418', 'fi', 579), +(6008, 'The Diplomatic Correspondence of the American Revolution, Vol. 05', NULL, '2013-01-13', 15, 'https://www.gutenberg.org/ebooks/41833', 'en', 453), +(6009, 'Frankenstein; Or, The Modern Prometheus', 'Shelley, Mary Wollstonecraft', '2006-12-07', 109, 'https://www.gutenberg.org/ebooks/20038', 'en', 3487), +(6010, 'A Guide to Cromer and Its Neighbourhood', 'Anonymous', '2018-10-17', 6, 'https://www.gutenberg.org/ebooks/58122', 'en', 3488), +(6011, 'Herön kartanon lapset', 'Prydz, Alvilde', '2018-09-23', 6, 'https://www.gutenberg.org/ebooks/57956', 'fi', 7), +(6012, 'The Development of the Feeling for Nature in the Middle Ages and Modern Times', 'Biese, Alfred', '2004-10-20', 26, 'https://www.gutenberg.org/ebooks/13814', 'en', 3489), +(6013, 'The Repair of Casa Grande Ruin, Arizona, in 1891\r\nFifteenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1893-94, Government Printing Office, Washington, 1897, pages 315-348', 'Mindeleff, Cosmos', '2006-01-10', 18, 'https://www.gutenberg.org/ebooks/17488', 'en', 1670), +(6014, 'Shelters, Shacks and Shanties', 'Beard, Daniel Carter', '2009-03-05', 174, 'https://www.gutenberg.org/ebooks/28255', 'en', 3490), +(6015, 'Marcy the Blockade Runner', 'Castlemon, Harry', '2009-07-12', 14, 'https://www.gutenberg.org/ebooks/29387', 'en', 3491), +(6016, 'Five Weeks in a Balloon', 'Verne, Jules', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/8979', 'en', 2148), +(6017, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 3', NULL, '2004-07-26', 42, 'https://www.gutenberg.org/ebooks/13028', 'en', 19), +(6018, 'The Fifth String', 'Sousa, John Philip', '1996-04-01', 23, 'https://www.gutenberg.org/ebooks/504', 'en', 48), +(6019, 'Robert\'s Rules of Order\nPocket Manual of Rules of Order for Deliberative Assemblies', 'Robert, Henry M. (Henry Martyn)', '2004-11-13', 170, 'https://www.gutenberg.org/ebooks/9097', 'en', 3492), +(6020, 'The Blizzard in the West\r\nBeing as Record and Story of the Disastrous Storm which Raged Throughout Devon and Cornwall, and West Somerset, On the Night of March 9th, 1891', 'Unknown', '2013-09-17', 28, 'https://www.gutenberg.org/ebooks/43758', 'en', 2343), +(6021, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 708\nJuly 21, 1877', 'Various', '2015-06-23', 2, 'https://www.gutenberg.org/ebooks/49262', 'en', 18), +(6022, 'Life and Times of Washington, Volume 2\nRevised, Enlarged, and Enriched', 'Schroeder, John Frederick', '2005-05-01', 17, 'https://www.gutenberg.org/ebooks/8145', 'en', 1009), +(6023, 'Notes and Queries, Number 237, May 13, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-02-23', 11, 'https://www.gutenberg.org/ebooks/31378', 'en', 105), +(6024, 'Kate Danton, or, Captain Danton\'s Daughters: A Novel', 'Fleming, May Agnes', '2006-10-09', 23, 'https://www.gutenberg.org/ebooks/19512', 'en', 61), +(6025, 'All-Wool Morrison\r\nTime -- Today, Place -- the United States, Period of Action -- Twenty-four Hours', 'Day, Holman', '2005-04-01', 24, 'https://www.gutenberg.org/ebooks/7931', 'en', 3493), +(6026, 'The Scientific Basis of Morals, and Other Essays\r\nViz.: Right and Wrong, The Ethics of Belief, The Ethics of Religion', 'Clifford, William Kingdon', '2015-10-12', 23, 'https://www.gutenberg.org/ebooks/50189', 'en', 680), +(6027, 'Philippine Mats\nPhilippine Craftsman Reprint Series No. 1', 'Philippines. Bureau of Education', '2010-01-04', 53, 'https://www.gutenberg.org/ebooks/30850', 'en', 3494), +(6028, 'The Confessions of Arsène Lupin', 'Leblanc, Maurice', '2009-02-15', 91, 'https://www.gutenberg.org/ebooks/28093', 'en', 1286), +(6029, 'The Trespasser, Volume 1', 'Parker, Gilbert', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6219', 'en', 1219), +(6030, 'Conservation Reader', 'Fairbanks, Harold W. (Harold Wellman)', '2008-10-16', 8, 'https://www.gutenberg.org/ebooks/26935', 'en', 3495), +(6031, 'Personal record of the Thirteenth Regiment, Tennessee Infantry', 'Vaughan, Alfred J.', '2015-09-07', 4, 'https://www.gutenberg.org/ebooks/49898', 'en', 3496), +(6032, 'Two New Pocket Gophers from Wyoming and Colorado', 'Montague, H. Gordon', '2009-06-17', 6, 'https://www.gutenberg.org/ebooks/29141', 'en', 3497), +(6033, 'Dressed Game and Poultry à la Mode', 'De Salis, Mrs. (Harriet Anne)', '2010-04-14', 35, 'https://www.gutenberg.org/ebooks/31982', 'en', 3498), +(6034, 'An Old Woman\'s Tale\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 17, 'https://www.gutenberg.org/ebooks/9251', 'en', 3499), +(6035, 'Kantele Taikka Suomen Kansan sekä Wanhoja että Nykyisempiä Runoja ja Lauluja, I', 'Lönnrot, Elias', '2015-02-06', 19, 'https://www.gutenberg.org/ebooks/48176', 'fi', 1171), +(6036, 'The Camp Fire Girls in the Maine Woods; Or, The Winnebagos Go Camping', 'Frey, Hildegard G.', '2006-06-16', 20, 'https://www.gutenberg.org/ebooks/18606', 'en', 622), +(6037, 'Phoebe Daring: A Story for Young Folk', 'Baum, L. Frank (Lyman Frank)', '2017-04-10', 25, 'https://www.gutenberg.org/ebooks/54529', 'en', 751), +(6038, 'The Romance of Leonardo da Vinci, the Forerunner', 'Merezhkovsky, Dmitry Sergeyevich', '2015-01-10', 25, 'https://www.gutenberg.org/ebooks/47902', 'en', 297), +(6039, 'Hail to the Chief', 'Garrett, Randall', '2008-07-22', 53, 'https://www.gutenberg.org/ebooks/26109', 'en', 26), +(6040, 'Sentry of the Sky', 'Smith, Evelyn E.', '2016-04-26', 38, 'https://www.gutenberg.org/ebooks/51867', 'en', 26), +(6041, 'Monsieur Maurice', 'Edwards, Amelia Ann Blanford', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8383', 'en', 61), +(6042, 'The Bay State Monthly — Volume 1, No. 3, March, 1884', 'Various', '2005-05-28', 23, 'https://www.gutenberg.org/ebooks/15925', 'en', 1593), +(6043, 'Wild Spain (España agreste)\nRecords of Sport with Rifle, Rod, and Gun, Natural History Exploration', 'Buck, Walter John', '2011-12-03', 12, 'https://www.gutenberg.org/ebooks/38201', 'en', 3500), +(6044, 'The Ingoldsby Legends; or, Mirth and Marvels', 'Ingoldsby, Thomas', '2019-04-09', 34, 'https://www.gutenberg.org/ebooks/59236', 'en', 532), +(6045, 'Handy Dictionary of Poetical Quotations', NULL, '2005-02-21', 45, 'https://www.gutenberg.org/ebooks/15119', 'en', 3501), +(6046, 'Wallenstein 2: Wallensteinin kuolema\r\nRunomittainen näytelmä', 'Schiller, Friedrich', '2014-05-17', 6, 'https://www.gutenberg.org/ebooks/45669', 'fi', 2341), +(6047, 'The City of Numbered Days', 'Lynde, Francis', '2011-08-29', 21, 'https://www.gutenberg.org/ebooks/37249', 'en', 315), +(6048, 'The Winter\'s Tale', 'Shakespeare, William', '1999-06-01', 4, 'https://www.gutenberg.org/ebooks/1800', 'en', 3502), +(6049, 'Punch, or The London Charivari, Vol. 150, May 31, 1916', 'Various', '2011-08-07', 9, 'https://www.gutenberg.org/ebooks/36995', 'en', 134), +(6050, 'Grundfragen der Soziologie', 'Simmel, Georg', '2019-06-30', 21, 'https://www.gutenberg.org/ebooks/59838', 'de', 3503), +(6051, 'Œuvres complètes de lord Byron, Tome 11\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2010-05-24', 17, 'https://www.gutenberg.org/ebooks/32509', 'fr', 3504), +(6052, 'Vrouwenkiesrecht', 'Jacobs, Aletta H. (Aletta Henriette)', '2007-06-25', 16, 'https://www.gutenberg.org/ebooks/21922', 'nl', 3505), +(6053, 'Missy: A Novel', 'Harris, Miriam Coles', '2012-07-03', 22, 'https://www.gutenberg.org/ebooks/40129', 'en', 61), +(6054, 'Vergleichende Betrachtungen über neuere geometrische Forschungen', 'Klein, Felix', '2011-11-16', 16, 'https://www.gutenberg.org/ebooks/38033', 'de', 3506), +(6055, 'Three More John Silence Stories', 'Blackwood, Algernon', '2004-01-01', 63, 'https://www.gutenberg.org/ebooks/10659', 'en', 3507), +(6056, 'Maria Stuart Skotlannissa', 'Bjørnson, Bjørnstjerne', '2011-10-25', 8, 'https://www.gutenberg.org/ebooks/37847', 'fi', 3508), +(6057, 'Tales from Gorky', 'Gorky, Maksim', '2018-03-29', 46, 'https://www.gutenberg.org/ebooks/56870', 'en', 1377), +(6058, 'Burgess Unabridged: A new dictionary of words you have always needed', 'Burgess, Gelett', '2019-03-03', 35, 'https://www.gutenberg.org/ebooks/59004', 'en', 3509), +(6059, 'Johnny Ludlow, First Series', 'Wood, Henry, Mrs.', '2012-10-02', 20, 'https://www.gutenberg.org/ebooks/40915', 'en', 409), +(6060, 'L\'Illustration, No. 2506, 7 Mars 1891', 'Various', '2014-01-05', 6, 'https://www.gutenberg.org/ebooks/44589', 'fr', 150), +(6061, 'The Sugar-Plumb\nor, Golden Fairing', 'Two-Shoes, Margery', '2007-11-28', 12, 'https://www.gutenberg.org/ebooks/23649', 'en', 2541), +(6062, 'Educational Work of the Girl Scouts', 'Bryant, Louise Stevens', '2009-07-11', 14, 'https://www.gutenberg.org/ebooks/29373', 'en', 3510), +(6063, 'L\'Holocauste: Roman Contemporain', 'La Jeunesse, Ernest', '2016-02-22', 11, 'https://www.gutenberg.org/ebooks/51269', 'fr', 298), +(6064, 'Four Max Carrados Detective Stories', 'Bramah, Ernest', '2004-07-17', 126, 'https://www.gutenberg.org/ebooks/12932', 'en', 3511), +(6065, 'Chaitanya and the Vaishnava Poets of Bengal', 'Beames, John', '2004-11-01', 18, 'https://www.gutenberg.org/ebooks/6817', 'en', 3512), +(6066, 'A Melody in Silver', 'Abbott, Keene', '2006-05-22', 19, 'https://www.gutenberg.org/ebooks/18434', 'en', 61), +(6067, 'The Penance of Magdalena and Other Tales of the California Missions', 'Chase, J. Smeaton (Joseph Smeaton)', '2005-10-01', 40, 'https://www.gutenberg.org/ebooks/9063', 'en', 3513), +(6068, 'Benjamin of Ohio: A Story of the Settlement of Marietta', 'Otis, James', '2015-02-23', 22, 'https://www.gutenberg.org/ebooks/48344', 'en', 3514), +(6069, 'Retained for the Defence: A Farce, in One Act', 'Oxenford, John', '2015-06-27', 4, 'https://www.gutenberg.org/ebooks/49296', 'en', 1281), +(6070, 'Memoirs of Napoleon Bonaparte — Volume 09', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 66, 'https://www.gutenberg.org/ebooks/3559', 'en', 840), +(6071, 'The American Missionary — Volume 33, No. 05, May, 1879', 'Various', '2017-01-15', 2, 'https://www.gutenberg.org/ebooks/53966', 'en', 395), +(6072, 'Alden\'s Handy Atlas of the World\r\nIncluding One Hundred and Thirty-eight Colored Maps, Diagrams, Tables, Etc.', 'Alden, John B. (John Berry)', '2011-12-31', 28, 'https://www.gutenberg.org/ebooks/38457', 'en', 3515), +(6073, 'Het Leven der Dieren: Deel 1, Hoofdstuk 12: Sirenen; Hoofdstuk 13: Walvischachtigen', 'Brehm, Alfred Edmund', '2007-12-24', 6, 'https://www.gutenberg.org/ebooks/24008', 'nl', 2360), +(6074, 'Saratoga National Historical Park, New York', 'Snell, Charles W.', '2018-01-25', 5, 'https://www.gutenberg.org/ebooks/56428', 'en', 3516), +(6075, 'Racconti storici e morali', 'Cantù, Cesare', '2014-05-28', 10, 'https://www.gutenberg.org/ebooks/45803', 'it', 1544), +(6076, 'The Journal of a Disappointed Man', 'Barbellion, W. N. P.', '2012-04-30', 78, 'https://www.gutenberg.org/ebooks/39585', 'en', 3517), +(6077, 'Friend Mac Donald', 'O\'Rell, Max', '2010-10-25', 14, 'https://www.gutenberg.org/ebooks/33883', 'en', 3518), +(6078, 'The Wonders of a Toy Shop', 'Anonymous', '2008-03-15', 27, 'https://www.gutenberg.org/ebooks/24834', 'en', 1209), +(6079, 'Reproduction of Copyrighted Works by Educators and Librarians', 'Library of Congress. Copyright Office', '2003-08-01', 20, 'https://www.gutenberg.org/ebooks/4318', 'en', 3519), +(6080, 'The Bull-Run Rout\nScenes Attending the First Clash of Volunteers in the Civil War', 'Clement, E. H. (Edward Henry)', '2010-06-23', 13, 'https://www.gutenberg.org/ebooks/32951', 'en', 3520), +(6081, 'Tête-d\'Or: A play in three acts', 'Claudel, Paul', '2016-05-16', 8, 'https://www.gutenberg.org/ebooks/52088', 'en', 3521), +(6082, 'Index of the Project Gutenberg Works of David H. Lawrence', 'Lawrence, D. H. (David Herbert)', '2019-05-08', 52, 'https://www.gutenberg.org/ebooks/59460', 'en', 198), +(6083, 'The Finding of Haldgren', 'Diffin, Charles Willard', '2009-08-17', 34, 'https://www.gutenberg.org/ebooks/29717', 'en', 26), +(6084, 'The Confessions of Jean Jacques Rousseau — Volume 01', 'Rousseau, Jean-Jacques', '2004-12-06', 61, 'https://www.gutenberg.org/ebooks/3901', 'en', 608), +(6085, 'A Duet, with an Occasional Chorus', 'Doyle, Arthur Conan', '2011-02-21', 1, 'https://www.gutenberg.org/ebooks/35348', 'en', 705), +(6086, 'La Gente Cursi: Novela de Costumbres Ridículas', 'Ortega y Frías, Ramón', '2014-12-24', 53, 'https://www.gutenberg.org/ebooks/47768', 'es', 1353), +(6087, 'The Life and Letters of Walter H. Page, Volume II', 'Hendrick, Burton Jesse', '2005-11-06', 22, 'https://www.gutenberg.org/ebooks/17018', 'en', 3522), +(6088, 'La Sinjorino el la Maro', 'Ibsen, Henrik', '2006-09-05', 6, 'https://www.gutenberg.org/ebooks/19182', 'eo', 3523), +(6089, 'The House Fly and How to Suppress It', 'Bishopp, F. C. (Fred Corry)', '2006-03-26', 26, 'https://www.gutenberg.org/ebooks/18050', 'en', 3524), +(6090, 'Little Black Sambo', 'Bannerman, Helen', '2006-02-22', 229, 'https://www.gutenberg.org/ebooks/17824', 'en', 3525), +(6091, 'The Little Colonel', 'Johnston, Annie F. (Annie Fellows)', '2005-12-01', 26, 'https://www.gutenberg.org/ebooks/9407', 'en', 3526), +(6092, 'Brenda\'s Cousin at Radcliffe: A Story for Girls', 'Reed, Helen Leah', '2015-04-16', 22, 'https://www.gutenberg.org/ebooks/48720', 'en', 3527), +(6093, 'Emilia Galotti: Murhenäytelmä viidessä näytöksessä', 'Lessing, Gotthold Ephraim', '2014-08-03', 7, 'https://www.gutenberg.org/ebooks/46488', 'fi', 1298), +(6094, 'Anna Hallman: 3-näytöksinen perhekuvaus', 'Wilkuna, Kyösti', '2013-05-26', 7, 'https://www.gutenberg.org/ebooks/42814', 'fi', 247), +(6095, 'The Leech', 'Sheckley, Robert', '2009-07-27', 34, 'https://www.gutenberg.org/ebooks/29525', 'en', 26), +(6096, 'The S. P. Mystery', 'Grove, Harriet Pyne', '2017-06-24', 12, 'https://www.gutenberg.org/ebooks/54971', 'en', 3), +(6097, 'Library of the World\'s Best Mystery and Detective Stories', NULL, '2004-06-28', 298, 'https://www.gutenberg.org/ebooks/12758', 'en', 128), +(6098, 'True, and Other Stories', 'Lathrop, George Parsons', '2011-04-24', 11, 'https://www.gutenberg.org/ebooks/35946', 'en', 1028), +(6099, 'En Rusujo per Esperanto', 'Rivier, A.', '2013-02-06', 21, 'https://www.gutenberg.org/ebooks/42028', 'eo', 2493), +(6100, 'The Fifth-Dimension Tube', 'Leinster, Murray', '2009-11-06', 64, 'https://www.gutenberg.org/ebooks/30408', 'en', 26), +(6101, 'The End of Her Honeymoon', 'Lowndes, Marie Belloc', '2006-01-01', 23, 'https://www.gutenberg.org/ebooks/9635', 'en', 128), +(6102, '弟子規', 'Li, Yuxiu, active 17th century-18th century', '2007-12-11', 17, 'https://www.gutenberg.org/ebooks/23823', 'zh', 3528), +(6103, 'Della scienza militare', 'Blanch, Luigi', '2015-03-17', 28, 'https://www.gutenberg.org/ebooks/48512', 'it', 1359), +(6104, 'Contes humoristiques - Tome I', 'Allais, Alphonse', '2006-04-26', 45, 'https://www.gutenberg.org/ebooks/18262', 'fr', 637), +(6105, 'Briarwood Girls', 'Glover, Julia Lestarjette', '2011-01-09', 12, 'https://www.gutenberg.org/ebooks/34894', 'en', 3529), +(6106, 'The Courtship of Morrice Buckler: A Romance', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-25', 86, 'https://www.gutenberg.org/ebooks/38665', 'en', 3530), +(6107, 'Dream Life and Real Life: A Little African Story', 'Schreiner, Olive', '1998-09-01', 17, 'https://www.gutenberg.org/ebooks/1458', 'en', 61), +(6108, 'Undertow', 'Norris, Kathleen Thompson', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/4916', 'en', 3531), +(6109, 'The Essays of Arthur Schopenhauer; Religion, a Dialogue, Etc.', 'Schopenhauer, Arthur', '2004-01-01', 88, 'https://www.gutenberg.org/ebooks/10833', 'en', 655), +(6110, 'Don\'t Marry; or, Advice on How, When and Who to Marry', 'Donovan, James W.', '2016-10-26', 54, 'https://www.gutenberg.org/ebooks/53368', 'en', 1451), +(6111, 'Durch den Nebel: Roman', 'Feodora, Princess of Schleswig-Holstein-Sonderburg-Augustenburg', '2019-01-27', 11, 'https://www.gutenberg.org/ebooks/58780', 'de', 549), +(6112, 'Cronus of the D. F. C.', 'Biggle, Lloyd, Jr.', '2019-06-01', 140, 'https://www.gutenberg.org/ebooks/59652', 'en', 48), +(6113, 'Black Ivory', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 54, 'https://www.gutenberg.org/ebooks/21748', 'en', 3532), +(6114, 'From out the Vasty Deep', 'Lowndes, Marie Belloc', '2004-03-01', 29, 'https://www.gutenberg.org/ebooks/11581', 'en', 61), +(6115, 'Vehnäprinsessa', 'Webster, Jean', '2017-12-24', 9, 'https://www.gutenberg.org/ebooks/56246', 'fi', 48), +(6116, 'The Making of a Country Parish: A Story', 'Mills, Harlow S. (Harlow Spencer)', '2010-06-05', 11, 'https://www.gutenberg.org/ebooks/32703', 'en', 3533), +(6117, 'The Celtic Magazine, Vol. I, No. VI, April 1876\r\nA Monthly Periodical Devoted to the Literature, History, Antiquities, Folk Lore, Traditions, and the Social and Material Interests of the Celt at Home and Abroad', 'Various', '2012-07-24', 18, 'https://www.gutenberg.org/ebooks/40323', 'en', 274), +(6118, 'Die Schön Magelona\neine fast lustige Historie von dem Ritter mit den silbern Schlüsseln und von der Schönen Magelona gar lustig zu lesen', 'Anonymous', '2011-12-06', 27, 'https://www.gutenberg.org/ebooks/38239', 'de', 3534), +(6119, 'Divine Comedy, Longfellow\'s Translation, Complete', 'Dante Alighieri', '1997-08-01', 626, 'https://www.gutenberg.org/ebooks/1004', 'en', 365), +(6120, 'The Voyages of the \"Ranger\" and \"Crusader\"\r\nAnd what befell their Passengers and Crews.', 'Kingston, William Henry Giles', '2008-02-22', 13, 'https://www.gutenberg.org/ebooks/24666', 'en', 3535), +(6121, 'A czigánybáró; Minden poklokon keresztül', 'Jókai, Mór', '2018-06-25', 5, 'https://www.gutenberg.org/ebooks/57394', 'hu', 234), +(6122, 'A Practical Physiology: A Text-Book for Higher Schools', 'Blaisdell, Albert F. (Albert Franklin)', '2003-12-01', 45, 'https://www.gutenberg.org/ebooks/10453', 'en', 3536), +(6123, '粉妝樓41-50回', 'Luo, Guanzhong', '2003-10-01', 4, 'https://www.gutenberg.org/ebooks/4576', 'zh', 1574), +(6124, 'Mildred and Elsie', 'Finley, Martha', '2014-05-15', 24, 'https://www.gutenberg.org/ebooks/45651', 'en', 470), +(6125, 'Punch, or the London Charivari, Volume 152, May 2, 1917', 'Various', '2005-02-21', 9, 'https://www.gutenberg.org/ebooks/15121', 'en', 134), +(6126, 'King o\' the Beach: A Tropic Tale', 'Fenn, George Manville', '2007-05-04', 55, 'https://www.gutenberg.org/ebooks/21314', 'en', 324), +(6127, 'What Christmas Did for Jerusha Grumble', 'MacDonald, John D.', '2016-12-15', 10, 'https://www.gutenberg.org/ebooks/53734', 'en', 3459), +(6128, 'A New Voyage to Carolina\r\nContaining the exact description and natural history of that country; together with the present state thereof; and a journal of a thousand miles, travel\'d thro\' several nations of Indians; giving a particular account of their customs, manners, etc.', 'Lawson, John', '1999-07-01', 64, 'https://www.gutenberg.org/ebooks/1838', 'en', 3537), +(6129, 'The Seventh Regiment: A Record', 'Wood, George L.', '2014-01-28', 10, 'https://www.gutenberg.org/ebooks/44783', 'en', 3538), +(6130, 'The Ranch Girls and Their Heart\'s Desire', 'Vandercook, Margaret', '2011-08-30', 14, 'https://www.gutenberg.org/ebooks/37271', 'en', 3539), +(6131, 'The Trespasser, Volume 3', 'Parker, Gilbert', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6221', 'en', 1219), +(6132, 'Kompendium der Psychiatrie für Studierende und Ärzte', 'Dornblüth, Otto', '2014-10-13', 21, 'https://www.gutenberg.org/ebooks/47106', 'de', 3312), +(6133, 'Le magasin d\'antiquités, Tome II', 'Dickens, Charles', '2006-02-04', 18, 'https://www.gutenberg.org/ebooks/17676', 'fr', 95), +(6134, 'The Come Back', 'Wells, Carolyn', '2010-01-06', 25, 'https://www.gutenberg.org/ebooks/30868', 'en', 128), +(6135, 'Unspecialist', 'Yaco, Murray F.', '2007-11-11', 31, 'https://www.gutenberg.org/ebooks/23443', 'en', 179), +(6136, '\"Boots and Saddles\"; Or, Life in Dakota with General Custer', 'Custer, Elizabeth Bacon', '2015-05-16', 55, 'https://www.gutenberg.org/ebooks/48972', 'en', 3540), +(6137, 'Patrice, ou les pionniers de l\'Amérique du nord', 'Chavannes de la Giraudière, H. de', '2009-06-20', 9, 'https://www.gutenberg.org/ebooks/29179', 'fr', 3541), +(6138, 'A Political History of the State of New York, Volumes 1-3', 'Alexander, De Alva Stanwood', '2007-09-12', 25, 'https://www.gutenberg.org/ebooks/22591', 'en', 3542), +(6139, 'John Call Dalton, M.D., U.S.V.', 'Dalton, John Call', '2016-01-28', 25, 'https://www.gutenberg.org/ebooks/51063', 'en', 3543), +(6140, 'Cora and The Doctor; or, Revelations of A Physician\'s Wife', 'Leslie, Madeline', '2011-03-08', 20, 'https://www.gutenberg.org/ebooks/35526', 'en', 1563), +(6141, 'Regina von Emmeritz: Näytelmä viidessä näytöksessä', 'Topelius, Zacharias', '2017-04-08', 1, 'https://www.gutenberg.org/ebooks/54511', 'fi', 402), +(6142, 'A Virginia Village', 'Stewart, Charles Alexander', '2009-11-06', 7, 'https://www.gutenberg.org/ebooks/30054', 'en', 3544), +(6143, 'Ten Years Later', 'Dumas, Alexandre', '2001-06-01', 220, 'https://www.gutenberg.org/ebooks/2681', 'en', 2588), +(6144, 'Typee', 'Melville, Herman', '2005-11-01', 9, 'https://www.gutenberg.org/ebooks/9269', 'en', 3545), +(6145, 'The Variation of Animals and Plants Under Domestication, Volume II (of 2)', 'Darwin, Charles', '2009-05-20', 32, 'https://www.gutenberg.org/ebooks/28897', 'en', 3546), +(6146, '1000 Mythological Characters Briefly Described\nAdapted to Private Schools, High Schools and Academies', 'Ellis, Edward Sylvester', '2013-04-07', 573, 'https://www.gutenberg.org/ebooks/42474', 'en', 3547), +(6147, 'Jan and Her Job', 'Harker, L. Allen (Lizzie Allen)', '2009-09-09', 26, 'https://www.gutenberg.org/ebooks/29945', 'en', 61), +(6148, 'What Shall We Do Now?: Five Hundred Games and Pastimes', 'Fisher, Dorothy Canfield', '2010-02-04', 20, 'https://www.gutenberg.org/ebooks/31186', 'en', 1415), +(6149, 'Peacock Pie, a Book of Rhymes', 'De la Mare, Walter', '2003-02-01', 71, 'https://www.gutenberg.org/ebooks/3753', 'en', 2951), +(6150, 'James Watt', 'Carnegie, Andrew', '2008-07-26', 40, 'https://www.gutenberg.org/ebooks/26131', 'en', 3548), +(6151, 'Nancy: A Novel', 'Broughton, Rhoda', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/12304', 'en', 61), +(6152, 'General Scott', 'Wright, Marcus Joseph', '2006-01-01', 12, 'https://www.gutenberg.org/ebooks/17444', 'en', 3549), +(6153, 'The National Geographic Magazine, Vol. I., No. 3, July, 1889', 'Various', '2015-11-04', 11, 'https://www.gutenberg.org/ebooks/50383', 'en', 3550), +(6154, 'Riders of the Silences', 'Brand, Max', '2006-02-01', 67, 'https://www.gutenberg.org/ebooks/9867', 'en', 315), +(6155, 'The Orbis Pictus', 'Comenius, Johann Amos', '2009-03-09', 156, 'https://www.gutenberg.org/ebooks/28299', 'en', 37), +(6156, 'The Strange Little Girl: A Story for Children', 'V. M.', '2007-12-01', 14, 'https://www.gutenberg.org/ebooks/23671', 'en', 3551), +(6157, 'Viola Gwyn', 'McCutcheon, George Barr', '2004-07-01', 17, 'https://www.gutenberg.org/ebooks/6013', 'en', 3552), +(6158, 'Then and Now; or, Thirty-Six Years in the Rockies\r\nPersonal Reminiscences of Some of the First Pioneers of the State of Montana', 'Vaughn, Robert', '2014-11-12', 17, 'https://www.gutenberg.org/ebooks/47334', 'en', 3553), +(6159, 'How She Felt in Her First Corset, and Other Poems', 'Alderson, Matthew W.', '2011-03-30', 12, 'https://www.gutenberg.org/ebooks/35714', 'en', 350), +(6160, 'Morley Ernstein; or, the Tenants of the Heart', 'James, G. P. R. (George Payne Rainsford)', '2016-02-20', 4, 'https://www.gutenberg.org/ebooks/51251', 'en', 61), +(6161, 'Ungava Bob: A Winter\'s Tale', 'Wallace, Dillon', '2005-08-25', 17, 'https://www.gutenberg.org/ebooks/16596', 'en', 3554), +(6162, 'Tales from \"Blackwood,\" Volume 7', NULL, '2009-10-16', 17, 'https://www.gutenberg.org/ebooks/30266', 'en', 61), +(6163, 'My Religion', 'Tolstoy, Leo, graf', '2013-09-22', 116, 'https://www.gutenberg.org/ebooks/43794', 'en', 2566), +(6164, 'La Comédie humaine - Volume 08. Scènes de la vie de Province - Tome 04', 'Balzac, Honoré de', '2017-05-14', 57, 'https://www.gutenberg.org/ebooks/54723', 'fr', 642), +(6165, 'The Scarlet Letter', 'Hawthorne, Nathaniel', '1992-06-01', 2486, 'https://www.gutenberg.org/ebooks/33', 'en', 3555), +(6166, 'Right Ho, Jeeves', 'Wodehouse, P. G. (Pelham Grenville)', '2008-08-01', 229, 'https://www.gutenberg.org/ebooks/26303', 'en', 2510), +(6167, 'Government and Administration of the United States', 'Willoughby, William F. (William Franklin)', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/12136', 'en', 1720), +(6168, 'Idästä: Kertomuksia', 'Ahrenberg, Jacob', '2013-05-05', 22, 'https://www.gutenberg.org/ebooks/42646', 'fi', 61), +(6169, 'Memoirs of Napoleon Bonaparte — Volume 11', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 20, 'https://www.gutenberg.org/ebooks/3561', 'en', 1386), +(6170, 'The Bride', 'Rowlands, Samuel', '2005-05-01', 6, 'https://www.gutenberg.org/ebooks/8189', 'en', 54), +(6171, 'Deepfreeze', 'Locke, Robert Donald', '2010-05-26', 17, 'https://www.gutenberg.org/ebooks/32531', 'en', 26), +(6172, 'Picture-Show', 'Sassoon, Siegfried', '2019-06-24', 83, 'https://www.gutenberg.org/ebooks/59800', 'en', 2100), +(6173, 'Pan-Worship, and Other Poems', 'Farjeon, Eleanor', '2017-11-28', 18, 'https://www.gutenberg.org/ebooks/56074', 'en', 1594), +(6174, 'A Collection of Stories, Reviews and Essays', 'Cather, Willa', '2008-05-24', 68, 'https://www.gutenberg.org/ebooks/25586', 'en', 20), +(6175, 'Across the Spanish Main: A Tale of the Sea in the Days of Queen Bess', 'Collingwood, Harry', '2008-01-29', 37, 'https://www.gutenberg.org/ebooks/24454', 'en', 324), +(6176, 'A Selection from the Discourses of Epictetus with the Encheiridion', 'Epictetus', '2004-01-01', 230, 'https://www.gutenberg.org/ebooks/10661', 'en', 3556), +(6177, 'In Silk Attire: A Novel', 'Black, William', '2012-06-30', 14, 'https://www.gutenberg.org/ebooks/40111', 'en', 61), +(6178, 'First Across the Continent\r\nThe Story of the Exploring Expedition of Lewis and Clark in 1804-5-6', 'Brooks, Noah', '2006-02-11', 37, 'https://www.gutenberg.org/ebooks/1236', 'en', 497), +(6179, 'A Full Enquiry into the Nature of the Pastoral (1717)', 'Purney, Thomas', '2005-03-10', 9, 'https://www.gutenberg.org/ebooks/15313', 'en', 3557), +(6180, 'Chambers\'s Edinburgh Journal, No. 447\nVolume 18, New Series, July 24, 1852', 'Various', '2007-04-17', 7, 'https://www.gutenberg.org/ebooks/21126', 'en', 18), +(6181, 'Ten Nights in a Bar Room', 'Arthur, T. S. (Timothy Shay)', '2003-12-01', 46, 'https://www.gutenberg.org/ebooks/4744', 'en', 942), +(6182, 'Kultamaan seikkailijoita: Kertomuksia Pohjan periltä', 'London, Jack', '2018-03-26', 18, 'https://www.gutenberg.org/ebooks/56848', 'fi', 3558), +(6183, 'Νόμοι και Επινομίς, Τόμος Γ', 'Plato', '2011-05-22', 12, 'https://www.gutenberg.org/ebooks/36191', 'el', 3559), +(6184, 'Letters of John Calvin, Volume II\r\nCompiled from the Original Manuscripts and Edited with Historical Notes', 'Calvin, Jean', '2014-04-23', 29, 'https://www.gutenberg.org/ebooks/45463', 'en', 3560); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(6185, 'A Yankee Girl at Fort Sumter', 'Curtis, Alice Turner', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/5696', 'en', 3561), +(6186, 'Jill\'s Red Bag', 'Le Feuvre, Amy', '2011-08-11', 13, 'https://www.gutenberg.org/ebooks/37043', 'en', 3562), +(6187, 'A Collection of Kachári Folk-Tales and Rhymes', 'Anderson, J. D. (James Drummond)', '2016-11-11', 45, 'https://www.gutenberg.org/ebooks/53506', 'brx', 3563), +(6188, 'Norman\'s New Orleans and Environs\r\nContaining a Brief Historical Sketch of the Territory and State of Louisiana and the City of New Orleans, from the Earliest Period to the Present Time', 'Norman, Benjamin Moore', '2012-02-11', 9, 'https://www.gutenberg.org/ebooks/38837', 'en', 3564), +(6189, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 680\r\nJanuary 6, 1877', 'Various', '2014-08-25', 13, 'https://www.gutenberg.org/ebooks/46682', 'en', 18), +(6190, 'Martyred Armenia', 'Ghusayn, Fa\'iz', '2006-12-01', 9, 'https://www.gutenberg.org/ebooks/19986', 'en', 3565), +(6191, 'The Vicar\'s People', 'Fenn, George Manville', '2011-02-23', 28, 'https://www.gutenberg.org/ebooks/35370', 'en', 166), +(6192, 'Hegel\'s Lectures on the History of Philosophy: Volume 1 (of 3)', 'Hegel, Georg Wilhelm Friedrich', '2016-04-02', 216, 'https://www.gutenberg.org/ebooks/51635', 'en', 3566), +(6193, 'The Confession of a Child of the Century — Volume 1', 'Musset, Alfred de', '2003-04-01', 11, 'https://www.gutenberg.org/ebooks/3939', 'en', 2118), +(6194, 'The False Gods', 'Lorimer, George Horace', '2005-11-06', 43, 'https://www.gutenberg.org/ebooks/17020', 'en', 580), +(6195, 'Old Ebenezer', 'Read, Opie Percival', '2007-10-27', 14, 'https://www.gutenberg.org/ebooks/23215', 'en', 61), +(6196, 'Himalayan Journals — Volume 2\r\nOr, Notes of a Naturalist in Bengal, the Sikkim and Nepal Himalayas, the Khasia Mountains, etc.', 'Hooker, Joseph Dalton', '2004-09-01', 9, 'https://www.gutenberg.org/ebooks/6477', 'en', 1546), +(6197, 'Theologico-Political Treatise — Part 2', 'Spinoza, Benedictus de', '1997-07-01', 102, 'https://www.gutenberg.org/ebooks/990', 'en', 3567), +(6198, 'The Gourmet\'s Guide to Europe', 'Bastard, Algernon', '2006-07-17', 49, 'https://www.gutenberg.org/ebooks/18854', 'en', 3568), +(6199, 'Wanderlust', 'Reynolds, Robert Rice', '2014-12-23', 22, 'https://www.gutenberg.org/ebooks/47750', 'en', 3569), +(6200, 'Notes and Queries, Number 208, October 22, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-03', 10, 'https://www.gutenberg.org/ebooks/26767', 'en', 105), +(6201, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 542, April 14, 1832', 'Various', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/12552', 'en', 133), +(6202, 'Historical Record of the Second, or Queen\'s Royal Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in the Year 1661, and of Its Subsequent Services to 1837', 'Cannon, Richard', '2017-08-08', 2, 'https://www.gutenberg.org/ebooks/55295', 'en', 3570), +(6203, 'Double Harness', 'Hope, Anthony', '2013-02-27', 46, 'https://www.gutenberg.org/ebooks/42222', 'en', 675), +(6204, 'That Fortune', 'Warner, Charles Dudley', '2004-10-10', 8, 'https://www.gutenberg.org/ebooks/3105', 'en', 50), +(6205, 'Histoire de France 1618-1661 (Volume 14/19)', 'Michelet, Jules', '2009-12-04', 25, 'https://www.gutenberg.org/ebooks/30602', 'fr', 624), +(6206, 'The Imperial Crown', 'Raabe, Wilhelm', '2015-04-16', 9, 'https://www.gutenberg.org/ebooks/48718', 'en', 3571), +(6207, 'Five Years in New Zealand\n1859 to 1864', 'Booth, Robert B.', '2006-03-28', 15, 'https://www.gutenberg.org/ebooks/18068', 'en', 3572), +(6208, 'Autobiography of Sir John Rennie, F.R.S., Past President of the Institute of Civil Engineers\r\nComprising the history of his professional life, together with reminiscences dating from the commencement of the century to the present time.', 'Rennie, John, Sir', '2017-03-12', 9, 'https://www.gutenberg.org/ebooks/54347', 'en', 3573), +(6209, 'Notes and Queries, Number 49, October 5, 1850', 'Various', '2004-09-16', 13, 'https://www.gutenberg.org/ebooks/13480', 'en', 105), +(6210, 'Harper\'s Round Table, December 22, 1896', 'Various', '2019-08-25', 0, 'https://www.gutenberg.org/ebooks/60172', 'en', NULL), +(6211, 'Stories From Livy', 'Church, Alfred John', '2007-12-25', 29, 'https://www.gutenberg.org/ebooks/24030', 'en', 3574), +(6212, 'Words of Welcome\r\nOpening of the Electrical Exposition of New York City', 'Hobart, Garret A. (Garret Augustus)', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10205', 'en', 2979), +(6213, 'The Great Commission. Miscellaneous Writings of C. H. Mackintosh, vol. IV', 'Mackintosh, Charles Henry', '2012-08-24', 8, 'https://www.gutenberg.org/ebooks/40575', 'en', 3575), +(6214, 'Discoveries: A Volume of Essays', 'Yeats, W. B. (William Butler)', '2010-07-05', 26, 'https://www.gutenberg.org/ebooks/33087', 'en', 20), +(6215, 'The Survivors of the Chancellor: Diary of J.R. Kazallon, Passenger', 'Verne, Jules', '1999-02-01', 21, 'https://www.gutenberg.org/ebooks/1652', 'en', 3576), +(6216, 'The Love Letters of Henry VIII to Anne Boleyn; With Notes', 'Henry VIII, King of England', '2010-04-27', 53, 'https://www.gutenberg.org/ebooks/32155', 'en', 3577), +(6217, 'Ruby: A Story of the Australian Bush', 'Jamieson, Molly E.', '2018-01-21', 13, 'https://www.gutenberg.org/ebooks/56410', 'en', 421), +(6218, 'Scientific Culture, and Other Essays\nSecond Edition; with Additions', 'Cooke, Josiah P., Jr. (Josiah Parsons)', '2011-09-15', 18, 'https://www.gutenberg.org/ebooks/37427', 'en', 814), +(6219, 'L\'A. B. C. du libertaire', 'Lermina, Jules', '2007-01-31', 26, 'https://www.gutenberg.org/ebooks/20490', 'fr', 3578), +(6220, 'Some Poems of Roger Casement', 'Casement, Roger', '2016-09-28', 10, 'https://www.gutenberg.org/ebooks/53162', 'en', 1136), +(6221, 'The Earthman', 'Cox, Irving E.', '2019-05-08', 68, 'https://www.gutenberg.org/ebooks/59458', 'en', 3579), +(6222, 'A Voyage Towards the South Pole and Round the World, Volume 1', 'Cook, James', '2005-05-07', 84, 'https://www.gutenberg.org/ebooks/15777', 'en', 3580), +(6223, 'Trees and Shrubs for English Gardens', 'Cook, E. T. (Ernest Thomas)', '2010-06-24', 16, 'https://www.gutenberg.org/ebooks/32969', 'en', 3581), +(6224, 'Spirit and Music', 'Hunt, H. Ernest (Harry Ernest)', '2007-05-20', 17, 'https://www.gutenberg.org/ebooks/21542', 'en', 3582), +(6225, 'An Enquiry Concerning the Principles of Morals', 'Hume, David', '2003-08-01', 367, 'https://www.gutenberg.org/ebooks/4320', 'en', 740), +(6226, 'Balarilang Tagalog', 'Paglinawan, Mamerto', '2014-02-25', 86, 'https://www.gutenberg.org/ebooks/45007', 'tl', 3583), +(6227, 'Biblical Geography and History', 'Kent, Charles Foster', '2012-09-13', 38, 'https://www.gutenberg.org/ebooks/40747', 'en', 3584), +(6228, 'The Black Dwarf', 'Scott, Walter', '2006-02-15', 66, 'https://www.gutenberg.org/ebooks/1460', 'en', 98), +(6229, 'One Man\'s Initiation—1917', 'Dos Passos, John', '2008-01-07', 27, 'https://www.gutenberg.org/ebooks/24202', 'en', 2564), +(6230, 'A Beautiful Possibility', 'Black, Edith Ferguson', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10037', 'en', 264), +(6231, 'Correspondance: Les lettres et les arts', 'Zola, Émile', '2018-02-21', 9, 'https://www.gutenberg.org/ebooks/56622', 'fr', 3585), +(6232, 'Outlines of dairy bacteriology, 10th edition\r\nA concise manual for the use of students in dairying', 'Russell, H. L. (Harry Luman)', '2010-05-14', 20, 'https://www.gutenberg.org/ebooks/32367', 'en', 3586), +(6233, 'The Appendages, Anatomy, and Relationships of Trilobites', 'Raymond, Percy E. (Percy Edward)', '2012-12-24', 24, 'https://www.gutenberg.org/ebooks/41695', 'en', 3587), +(6234, 'Addresses by the Right Reverend Phillips Brooks', 'Brooks, Phillips', '2004-12-28', 11, 'https://www.gutenberg.org/ebooks/14497', 'en', 3588), +(6235, 'Il Falco (Cronaca del 1796)', 'Varaldo, Alessandro', '2016-10-23', 10, 'https://www.gutenberg.org/ebooks/53350', 'it', 3589), +(6236, 'Ocean to Ocean on Horseback\r\nBeing the Story of a Tour in the Saddle from the Atlantic to the Pacific; with Especial Reference to the Early History and Development of Cities and Towns Along the Route; and Regions Traversed Beyond the Mississippi; Together with Incidents, Anecdotes and Adventures of the Journey', 'Glazier, Willard W.', '2011-10-04', 14, 'https://www.gutenberg.org/ebooks/37615', 'en', 1110), +(6237, 'Christopher Columbus and the New World of His Discovery — Volume 5', 'Young, Filson', '2004-12-05', 8, 'https://www.gutenberg.org/ebooks/4112', 'en', 3403), +(6238, 'Magic, Stage Illusions and Scientific Diversions, Including Trick Photography', 'Hopkins, Albert A. (Albert Allis)', '2014-03-27', 93, 'https://www.gutenberg.org/ebooks/45235', 'en', 3590), +(6239, 'Mémoires touchant la vie et les ecrits de Marie de Rabutin-Chantal, (4/6)', 'Walckenaer, C. A. (Charles Athanase)', '2016-06-08', 32, 'https://www.gutenberg.org/ebooks/52282', 'fr', 1870), +(6240, 'The Basis of Morality', 'Besant, Annie', '2005-04-04', 22, 'https://www.gutenberg.org/ebooks/15545', 'en', 746), +(6241, 'The Author of Beltraffio', 'James, Henry', '2007-06-08', 21, 'https://www.gutenberg.org/ebooks/21770', 'en', 2035), +(6242, 'Sea Legs', 'Quattrocchi, Frank', '2016-03-09', 26, 'https://www.gutenberg.org/ebooks/51407', 'en', 3591), +(6243, 'The Lady of the Aroostook', 'Howells, William Dean', '2005-03-01', 32, 'https://www.gutenberg.org/ebooks/7797', 'en', 533), +(6244, 'Hermann: A Novel', 'Werner, E.', '2011-02-02', 12, 'https://www.gutenberg.org/ebooks/35142', 'en', 803), +(6245, 'Ausgewählte Schriften', 'Kleist, Heinrich von', '2004-10-01', 95, 'https://www.gutenberg.org/ebooks/6645', 'de', 282), +(6246, 'Valtiopäivämies eli Kunnianhimo', 'Thomasson, Pehr', '2010-10-17', 11, 'https://www.gutenberg.org/ebooks/34090', 'fi', 2168), +(6247, 'Deutschlands Geschichtsquellen im Mittelalter bis zur Mitte des dreizehnten Jahrhunderts, Erster Band (von 2)', 'Wattenbach, Wilhelm', '2017-06-20', 12, 'https://www.gutenberg.org/ebooks/54949', 'de', 3592), +(6248, 'The Putnam Hall Encampment; or, The Secret of the Old Mill', 'Stratemeyer, Edward', '2014-12-07', 28, 'https://www.gutenberg.org/ebooks/47562', 'en', 3593), +(6249, 'Michelangelo\r\nA Collection of Fifteen Pictures and a Portrait of the Master, with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2005-12-03', 36, 'https://www.gutenberg.org/ebooks/17212', 'en', 3594), +(6250, 'Notes and Queries, Number 69, February 22, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-13', 16, 'https://www.gutenberg.org/ebooks/23027', 'en', 105), +(6251, 'The Barrel Mystery', 'Flynn, William J. (William James)', '2013-02-04', 18, 'https://www.gutenberg.org/ebooks/42010', 'en', 128), +(6252, 'Hunting the Grisly and Other Sketches\r\nAn Account of the Big Game of the United States and its Chase with Horse, Hound, and Rifle', 'Roosevelt, Theodore', '2006-04-06', 45, 'https://www.gutenberg.org/ebooks/3337', 'en', 3595), +(6253, 'Sepitelmiä: Runon-kokeita', 'Wuorinen, Olli', '2008-09-07', 11, 'https://www.gutenberg.org/ebooks/26555', 'fi', 1171), +(6254, 'The Sagebrusher: A Story of the West', 'Hough, Emerson', '2006-09-26', 23, 'https://www.gutenberg.org/ebooks/19388', 'en', 315), +(6255, 'The Atlantic Monthly, Volume 09, No. 53, March, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-06-28', 17, 'https://www.gutenberg.org/ebooks/12760', 'en', 1227), +(6256, 'Mevr. Warren\'s Bedrijf', 'Shaw, Bernard', '2017-02-16', 14, 'https://www.gutenberg.org/ebooks/54175', 'nl', 3596), +(6257, 'Jan en Florence', 'Couperus, Louis', '2008-12-10', 12, 'https://www.gutenberg.org/ebooks/27487', 'nl', 20), +(6258, 'Vasárnapi Könyv. 1914. Első félév 15. füzet', 'Various', '2009-11-09', 9, 'https://www.gutenberg.org/ebooks/30430', 'hu', 18), +(6259, 'Spring in a Shropshire Abbey', 'Gaskell, Catherine Henrietta Milnes, Lady', '2014-08-25', 26, 'https://www.gutenberg.org/ebooks/46676', 'en', 3597), +(6260, 'Mrs. Geoffrey', 'Duchess', '2011-02-25', 28, 'https://www.gutenberg.org/ebooks/35384', 'en', 61), +(6261, 'Histoire de Napoléon et de la Grande-Armée pendant l\'année 1812\nTome I', 'Ségur, Philippe-Paul, comte de', '2006-11-29', 28, 'https://www.gutenberg.org/ebooks/19972', 'fr', 3598), +(6262, 'Quotes and Images From The Works of Michel De Montaigne', 'Montaigne, Michel de', '2004-09-03', 29, 'https://www.gutenberg.org/ebooks/7551', 'en', 1026), +(6263, 'Tom Swift and the Visitor From Planet X', 'Appleton, Victor, II', '2007-08-16', 38, 'https://www.gutenberg.org/ebooks/22333', 'en', 3599), +(6264, 'What Is Free Trade?\nAn Adaptation of Frederic Bastiat\'s \"Sophismes Éconimiques\" Designed for the American Reader', 'Bastiat, Frédéric', '2005-06-22', 36, 'https://www.gutenberg.org/ebooks/16106', 'en', 1312), +(6265, 'One Against the Moon', 'Wollheim, Donald A.', '2015-12-17', 34, 'https://www.gutenberg.org/ebooks/50713', 'en', 26), +(6266, 'The Cornish Riviera', 'Heath, Sidney', '2009-04-25', 14, 'https://www.gutenberg.org/ebooks/28609', 'en', 2082), +(6267, 'The Merry Adventures of Robin Hood', 'Pyle, Howard', '2006-02-05', 466, 'https://www.gutenberg.org/ebooks/964', 'en', 3600), +(6268, 'The Supply at Saint Agatha\'s', 'Phelps, Elizabeth Stuart', '2010-11-08', 17, 'https://www.gutenberg.org/ebooks/34256', 'en', 179), +(6269, 'The Life of John Milton Volume 3 1643-1649\r\nNarrated in Connexion with the Political, Ecclesiastical, and Literary History of His Time', 'Masson, David', '2004-09-01', 10, 'https://www.gutenberg.org/ebooks/6483', 'en', 1173), +(6270, 'The Expedition to Birting\'s Land, and Other Ballads', NULL, '2008-10-06', 18, 'https://www.gutenberg.org/ebooks/26793', 'en', 54), +(6271, 'Nothing of Importance\r\nA record of eight months at the front with a Welsh battalion, October, 1915, to June, 1916', 'Adams, Bernard', '2017-08-04', 13, 'https://www.gutenberg.org/ebooks/55261', 'en', 3601), +(6272, 'The Life and Voyages of Christopher Columbus (Volume II)', 'Irving, Washington', '2005-07-01', 50, 'https://www.gutenberg.org/ebooks/8519', 'en', 2036), +(6273, 'La gran aldea; costumbres bonaerenses', 'López, Lucio Vicente', '2010-03-21', 22, 'https://www.gutenberg.org/ebooks/31724', 'es', 3602), +(6274, 'Malvina of Brittany', 'Jerome, Jerome K. (Jerome Klapka)', '2000-01-01', 21, 'https://www.gutenberg.org/ebooks/2023', 'en', 3603), +(6275, 'The Nō Plays of Japan', 'Waley, Arthur', '2013-07-26', 48, 'https://www.gutenberg.org/ebooks/43304', 'en', 3604), +(6276, 'Emma', 'Austen, Jane', '1994-08-01', 5602, 'https://www.gutenberg.org/ebooks/158', 'en', 3084), +(6277, 'Women and the Alphabet: A Series of Essays', 'Higginson, Thomas Wentworth', '2004-09-15', 10, 'https://www.gutenberg.org/ebooks/13474', 'en', 3605), +(6278, 'Parapilla, poëme en cinq chants', 'Bordes, Charles', '2008-12-28', 12, 'https://www.gutenberg.org/ebooks/27641', 'fr', 8), +(6279, 'He Knew Lincoln', 'Tarbell, Ida M. (Ida Minerva)', '2018-07-18', 10, 'https://www.gutenberg.org/ebooks/57536', 'en', 2597), +(6280, 'The Secret Service Submarine: A Story of the Present War', 'Thorne, Guy', '2012-08-25', 43, 'https://www.gutenberg.org/ebooks/40581', 'en', 3606), +(6281, 'The Arm Chair', 'Unknown', '2010-07-04', 14, 'https://www.gutenberg.org/ebooks/33073', 'en', 3607), +(6282, 'The Carved Lions', 'Molesworth, Mrs.', '2012-04-27', 19, 'https://www.gutenberg.org/ebooks/39549', 'en', 3608), +(6283, 'The Writings of Thomas Jefferson, Vol. 3 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2016-08-22', 22, 'https://www.gutenberg.org/ebooks/52878', 'en', 3311), +(6284, 'The Mysterious Mr. Miller', 'Le Queux, William', '2012-11-23', 12, 'https://www.gutenberg.org/ebooks/41453', 'en', 167), +(6285, 'Caleb Williams; Or, Things as They Are', 'Godwin, William', '2004-02-01', 153, 'https://www.gutenberg.org/ebooks/11323', 'en', 238), +(6286, 'The New England Magazine, Volume 1, No. 5, Bay State Monthly, Volume 4, No. 5, May, 1886', 'Various', '2008-04-21', 6, 'https://www.gutenberg.org/ebooks/25116', 'en', 1593), +(6287, 'History of Scotland', 'MacArthur, Margaret', '2013-11-07', 17, 'https://www.gutenberg.org/ebooks/44121', 'en', 3609), +(6288, 'Fires and Firemen: from the Eclectic Magazine of Foreign Literature, Science and Art, Vol XXXV No. 1, May 1855', 'Anonymous', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/5206', 'en', 3610), +(6289, 'A Journey Through France in War Time', 'Butler, Joseph G. (Joseph Green)', '2007-01-28', 23, 'https://www.gutenberg.org/ebooks/20464', 'en', 1117), +(6290, 'Annabel: A Novel for Young Folks', 'Baum, L. Frank (Lyman Frank)', '2016-10-02', 22, 'https://www.gutenberg.org/ebooks/53196', 'en', 557), +(6291, 'Kauppaneuvoksen härkä: Nelinäytöksinen komedia', 'Pakkala, Teuvo', '2005-01-10', 21, 'https://www.gutenberg.org/ebooks/14651', 'fi', 247), +(6292, 'Utan anförare: Fem svenskors fjellvandring i Norge', 'Wigström, Eva', '2005-05-07', 17, 'https://www.gutenberg.org/ebooks/15783', 'sv', 3611), +(6293, 'The Wide Awake Third Reader', NULL, '2016-05-11', 51, 'https://www.gutenberg.org/ebooks/52044', 'en', 1019), +(6294, 'Olive Leaves; Or, Sketches of Character', 'Sigourney, L. H. (Lydia Howard)', '2011-06-23', 13, 'https://www.gutenberg.org/ebooks/36501', 'en', 388), +(6295, 'The Legends of the Jews — Volume 2', 'Ginzberg, Louis', '1998-10-01', 100, 'https://www.gutenberg.org/ebooks/1494', 'en', 3612), +(6296, 'Letters of a Lunatic\nA Brief Exposition of My University Life, During the Years 1853-54', 'Adler, G. J. (George J.)', '2010-07-24', 11, 'https://www.gutenberg.org/ebooks/33241', 'en', 3613), +(6297, 'Mixed Grill', 'Ridge, W. Pett (William Pett)', '2018-08-16', 23, 'https://www.gutenberg.org/ebooks/57704', 'en', 230), +(6298, 'Following the Equator: A Journey Around the World. Part 1', 'Twain, Mark', '2004-06-23', 27, 'https://www.gutenberg.org/ebooks/5808', 'en', 3614), +(6299, 'Only an Irish Boy; Or, Andy Burke\'s Fortunes', 'Alger, Horatio, Jr.', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/11111', 'en', 3615), +(6300, '玉台新詠', NULL, '2008-05-04', 23, 'https://www.gutenberg.org/ebooks/25324', 'zh', 3616), +(6301, 'Toby Tyler; Or, Ten Weeks with a Circus', 'Otis, James', '2010-05-15', 9, 'https://www.gutenberg.org/ebooks/32393', 'en', 3617), +(6302, 'Dave Darrin on the Asiatic Station\r\nOr, Winning Lieutenants\' Commissions on the Admiral\'s Flagship', 'Hancock, H. Irving (Harrie Irving)', '2012-12-19', 23, 'https://www.gutenberg.org/ebooks/41661', 'en', 323), +(6303, 'Old Christmas: from the Sketch Book of Washington Irving', 'Irving, Washington', '2007-02-24', 86, 'https://www.gutenberg.org/ebooks/20656', 'en', 3618), +(6304, 'The Man of the World (1792)', 'Macklin, Charles', '2004-12-25', 9, 'https://www.gutenberg.org/ebooks/14463', 'en', 3619), +(6305, 'Jeftan tytär: Yksinäytöksinen runoelma', 'Linnankoski, Johannes', '2013-11-30', 16, 'https://www.gutenberg.org/ebooks/44313', 'fi', 3620), +(6306, 'State of the Union Addresses', 'Wilson, Woodrow', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/5034', 'en', 1276), +(6307, 'Molly Brown\'s College Friends', 'Speed, Nell', '2011-07-14', 16, 'https://www.gutenberg.org/ebooks/36733', 'en', 3621), +(6308, '竇娥冤', 'Guan, Hanqing', '2016-06-08', 26, 'https://www.gutenberg.org/ebooks/52276', 'zh', 3622), +(6309, 'The Goblins\' Christmas', 'Anderson, Elizabeth', '2007-06-09', 20, 'https://www.gutenberg.org/ebooks/21784', 'en', 3623), +(6310, 'Wood Folk at School', 'Long, William J. (William Joseph)', '2007-07-19', 30, 'https://www.gutenberg.org/ebooks/22101', 'en', 2560), +(6311, 'Sundown Slim', 'Knibbs, Henry Herbert', '2005-07-20', 25, 'https://www.gutenberg.org/ebooks/16334', 'en', 315), +(6312, 'Physique de l\'Amour: Essai sur l\'instinct sexuel', 'Gourmont, Remy de', '2014-07-29', 15, 'https://www.gutenberg.org/ebooks/46444', 'fr', 3128), +(6313, 'The Law-Breakers and Other Stories', 'Grant, Robert', '2005-03-01', 35, 'https://www.gutenberg.org/ebooks/7763', 'en', 179), +(6314, 'Der Courier des Czaar (Michael Strogoff)', 'Verne, Jules', '2010-10-12', 44, 'https://www.gutenberg.org/ebooks/34064', 'de', 1014), +(6315, 'Four Short Plays', 'Bell, Florence Eveleen Eleanore Olliffe, Lady', '2014-12-08', 21, 'https://www.gutenberg.org/ebooks/47596', 'en', 402), +(6316, 'Haine d\'amour', 'Lesueur, Daniel', '2015-11-21', 10, 'https://www.gutenberg.org/ebooks/50521', 'fr', 298), +(6317, 'The Eyes Have It', 'Dick, Philip K.', '2010-03-06', 491, 'https://www.gutenberg.org/ebooks/31516', 'en', 26), +(6318, 'The Chautauquan, Vol. 05, February 1885', 'Chautauqua Institution', '2017-07-05', 9, 'https://www.gutenberg.org/ebooks/55053', 'en', 1453), +(6319, 'Judith, a Play in Three Acts; Founded on the Apocryphal Book of Judith', 'Bennett, Arnold', '2004-07-01', 43, 'https://www.gutenberg.org/ebooks/12794', 'en', 3624), +(6320, 'A Book of Nonsense', 'Lear, Edward', '2004-10-08', 260, 'https://www.gutenberg.org/ebooks/13646', 'en', 3625), +(6321, 'The Ordeal of Richard Feverel: A History of a Father and Son', 'Meredith, George', '2011-01-05', 19, 'https://www.gutenberg.org/ebooks/34858', 'en', 95), +(6322, 'Travels to Discover the Source of the Nile, Volume 2 (of 5)\r\nIn the years 1768, 1769, 1770, 1771, 1772 and 1773', 'Bruce, James', '2017-02-17', 40, 'https://www.gutenberg.org/ebooks/54181', 'en', 2589), +(6323, 'Hafbur and Signe: a ballad', NULL, '2008-12-09', 13, 'https://www.gutenberg.org/ebooks/27473', 'en', 8), +(6324, 'Human Genome Project, rough draft, Chromosome Number 11', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2211', 'en', 1041), +(6325, 'Mou-Setsé: A Negro Hero; The Orphans\' Pilgimage: A Story of Trust in God', 'Meade, L. T.', '2013-07-08', 6, 'https://www.gutenberg.org/ebooks/43136', 'en', 751), +(6326, 'Notes and Queries, Number 12, January 19, 1850', 'Various', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11575', 'en', 105), +(6327, 'Ambush: A Terran Empire vignette', 'Wilson, Ann', '2008-06-09', 15, 'https://www.gutenberg.org/ebooks/25740', 'en', 26), +(6328, 'Notes and Queries, Vol. V, Number 129, April 17, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-10-27', 14, 'https://www.gutenberg.org/ebooks/41205', 'en', 105), +(6329, 'My First Campaign', 'Grant, Joseph W.', '2010-09-03', 13, 'https://www.gutenberg.org/ebooks/33625', 'en', 1489), +(6330, 'A Bit of Sunshine', 'Unknown', '2008-02-26', 23, 'https://www.gutenberg.org/ebooks/24692', 'en', 388), +(6331, 'Machado de Assis, Son Oeuvre Littéraire', 'Lima, Oliveira', '2018-06-20', 11, 'https://www.gutenberg.org/ebooks/57360', 'fr', 3626), +(6332, 'L\'Illustration, No. 3671, 5 Juillet 1913', 'Various', '2011-06-08', 2, 'https://www.gutenberg.org/ebooks/36357', 'fr', 150), +(6333, 'Björnstjerne Björnson, 1832-1910', 'Payne, William Morton', '2003-10-01', 25, 'https://www.gutenberg.org/ebooks/4582', 'en', 3627), +(6334, 'Travels and adventures in South and Central America. First series\r\nLife in the Llanos of Venezuela', 'Páez, Ramón', '2016-07-21', 8, 'https://www.gutenberg.org/ebooks/52612', 'en', 3628), +(6335, '\'Three Score Years and Ten\'\r\nLife-Long Memories of Fort Snelling, Minnesota, and Other\r\nParts of the West', 'Van Cleve, Charlotte Ouisconsin Clark', '2006-12-30', 18, 'https://www.gutenberg.org/ebooks/20232', 'en', 3629), +(6336, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 569, October 6, 1832', 'Various', '2004-11-10', 4, 'https://www.gutenberg.org/ebooks/14007', 'en', 133), +(6337, 'Index of the Project Gutenberg Works of Miguel de Cervantes Saavedra', 'Cervantes Saavedra, Miguel de', '2018-11-23', 11, 'https://www.gutenberg.org/ebooks/58328', 'en', 198), +(6338, 'Adventures of the Ojibbeway and Ioway Indians in England, France, and Belgium; Vol. 2 (of 2)\r\nbeing Notes of Eight Years\' Travels and Residence in Europe with his North American Indian Collection', 'Catlin, George', '2014-01-28', 17, 'https://www.gutenberg.org/ebooks/44777', 'en', 776), +(6339, 'The Works of Honoré de Balzac: About Catherine de\' Medici, Seraphita, and Other Stories', 'Balzac, Honoré de', '2011-09-01', 26, 'https://www.gutenberg.org/ebooks/37285', 'en', 58), +(6340, 'An Egyptian Princess — Volume 01', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5450', 'en', 803), +(6341, 'Napoleon\'s Marshals', 'Dunn-Pattison, R. P.', '2010-11-23', 31, 'https://www.gutenberg.org/ebooks/34400', 'en', 3630), +(6342, 'The First Afghan War', 'Morris, Mowbray', '2015-10-06', 10, 'https://www.gutenberg.org/ebooks/50145', 'en', 3631), +(6343, 'The Healthy Life, Vol. V, Nos. 24-28\nThe Independent Health Magazine', 'Various', '2006-02-05', 38, 'https://www.gutenberg.org/ebooks/17682', 'en', 3632), +(6344, 'Around the Camp-fire', 'Roberts, Charles G. D., Sir', '2015-05-17', 28, 'https://www.gutenberg.org/ebooks/48986', 'en', 3633), +(6345, 'From Farm to Fortune; or, Nat Nason\'s Strange Experience', 'Alger, Horatio, Jr.', '2007-09-10', 31, 'https://www.gutenberg.org/ebooks/22565', 'en', 264), +(6346, 'A Critique of Socialism\nRead Before The Ruskin Club of Oakland California, 1905', 'Sims, George R.', '2015-09-02', 8, 'https://www.gutenberg.org/ebooks/49854', 'en', 254), +(6347, 'The Colored Regulars in the United States Army', 'Steward, T. G. (Theophilus Gould)', '2005-09-25', 6, 'https://www.gutenberg.org/ebooks/16750', 'en', 3634), +(6348, 'Heroines of \"Mormondom\"\r\nThe Second Book of the Noble Women\'s Lives Series', 'Various', '2016-02-01', 25, 'https://www.gutenberg.org/ebooks/51097', 'en', 3635), +(6349, 'The Gayton Scholarship: A School Story', 'Hayens, Herbert', '2014-06-25', 9, 'https://www.gutenberg.org/ebooks/46020', 'en', 2154), +(6350, 'The Precipice', 'Goncharov, Ivan Aleksandrovich', '2005-01-01', 32, 'https://www.gutenberg.org/ebooks/7307', 'en', 417), +(6351, 'Northern California, Oregon, and the Sandwich Islands', 'Nordhoff, Charles', '2004-08-19', 9, 'https://www.gutenberg.org/ebooks/13222', 'en', 3636), +(6352, '尹文子', 'Yin, Wen', '2008-10-24', 9, 'https://www.gutenberg.org/ebooks/27017', 'zh', 3637), +(6353, 'Burlesques', 'Thackeray, William Makepeace', '2006-05-22', 46, 'https://www.gutenberg.org/ebooks/2675', 'en', 232), +(6354, 'Heinrich von Kleist\'s politische Schriften und andere Nachträge zu seinen Werken', 'Kleist, Heinrich von', '2016-01-20', 19, 'https://www.gutenberg.org/ebooks/50979', 'de', 3638), +(6355, 'Wanderings in Patagonia; Or, Life Among the Ostrich-Hunters', 'Beerbohm, Julius', '2013-08-24', 22, 'https://www.gutenberg.org/ebooks/43552', 'en', 3639), +(6356, 'Der Dichter und das Phantasieren', 'Freud, Sigmund', '2009-05-18', 41, 'https://www.gutenberg.org/ebooks/28863', 'de', 3640), +(6357, 'The Whistler Book\r\nA Monograph of the Life and Position in Art of James McNeill Whistler, Together with a Careful Study of His More Important Works', 'Hartmann, Sadakichi', '2015-05-28', 24, 'https://www.gutenberg.org/ebooks/49068', 'en', 3641), +(6358, 'Punch, or the London Charivari, Vol. 108, January 19, 1895', 'Various', '2013-04-07', 13, 'https://www.gutenberg.org/ebooks/42480', 'en', 134), +(6359, 'Old English Poems\nTranslated into the Original Meter Together with Short Selections from Old English Prose', NULL, '2010-02-03', 32, 'https://www.gutenberg.org/ebooks/31172', 'en', 3642), +(6360, 'Historical Record of the Fifth Regiment of Foot, or Northumberland Fusiliers\r\nContaining an Account of the Formation of the Regiment in 1674, and of Its Subsequent Services to 1837', 'Cannon, Richard', '2017-08-27', 7, 'https://www.gutenberg.org/ebooks/55437', 'en', 2421), +(6361, 'The Bostonians, Vol. II (of II)', 'James, Henry', '2006-11-05', 58, 'https://www.gutenberg.org/ebooks/19718', 'en', 1660), +(6362, 'Le Comte Ory: Opéra en deux actes', 'Delestre-Poirson, C.-G. (Charles-Gaspard)', '2006-02-01', 26, 'https://www.gutenberg.org/ebooks/9893', 'fr', 1966), +(6363, 'Memoirs of the Generals, Commodores and other Commanders, who distinguished themselves in the American army and navy during the wars of the Revolution and 1812, and who were presented with medals by Congress for their gallant services', 'Wyatt, Thomas', '2015-11-03', 5, 'https://www.gutenberg.org/ebooks/50377', 'en', 3643), +(6364, 'Sarmoniou an Aotrou Quere', 'Quéré, Jean', '2007-12-03', 22, 'https://www.gutenberg.org/ebooks/23685', 'br', NULL), +(6365, 'Selected Sermons of Jonathan Edwards', 'Edwards, Jonathan', '2010-12-12', 417, 'https://www.gutenberg.org/ebooks/34632', 'en', 3644), +(6366, 'The Covenant of Salt\nAs Based on the Significance and Symbolism of Salt in Primitive Thought', 'Trumbull, H. Clay (Henry Clay)', '2014-07-07', 33, 'https://www.gutenberg.org/ebooks/46212', 'en', 3645), +(6367, 'The Great Conspiracy, Volume 3', 'Logan, John Alexander', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/7135', 'en', 125), +(6368, 'Debts of Honor', 'Jókai, Mór', '2007-09-24', 24, 'https://www.gutenberg.org/ebooks/22757', 'en', 61), +(6369, 'Lord Kilgobbin', 'Lever, Charles James', '2007-02-02', 28, 'https://www.gutenberg.org/ebooks/8941', 'en', 669), +(6370, 'Chemiam artibus academicis jure esse inserendam', 'Gaubius, Hieronymus David', '2005-08-20', 8, 'https://www.gutenberg.org/ebooks/16562', 'la', 951), +(6371, 'Eminent Victorians', 'Strachey, Lytton', '2000-12-01', 206, 'https://www.gutenberg.org/ebooks/2447', 'en', 3646), +(6372, 'How to Tie Flies', 'Gregg, Ellery Clark', '2009-10-20', 44, 'https://www.gutenberg.org/ebooks/30292', 'en', 2080), +(6373, 'Birds and All Nature, Vol. 7, No. 4, April 1900', 'Various', '2015-03-01', 10, 'https://www.gutenberg.org/ebooks/48388', 'en', 1584), +(6374, 'Les grands froids', 'Bouant, Emile', '2013-09-17', 13, 'https://www.gutenberg.org/ebooks/43760', 'fr', 3647), +(6375, 'Frank Mildmay; Or, The Naval Officer', 'Marryat, Frederick', '2004-07-24', 23, 'https://www.gutenberg.org/ebooks/13010', 'en', 3648), +(6376, 'A Woman\'s Will', 'Warner, Anne', '2008-11-10', 19, 'https://www.gutenberg.org/ebooks/27225', 'en', 611), +(6377, 'Histoire du chien de Brisquet / The Story of Brisquet\'s Dog', 'Nodier, Charles', '2017-09-22', 12, 'https://www.gutenberg.org/ebooks/55605', 'en', 766), +(6378, 'American Historical and Literary Curiosities, Part 09', 'Smith, J. Jay (John Jay)', '2004-07-15', 9, 'https://www.gutenberg.org/ebooks/7909', 'en', 1587), +(6379, 'Essays of Michel de Montaigne — Volume 15', 'Montaigne, Michel de', '2004-11-01', 17, 'https://www.gutenberg.org/ebooks/3595', 'en', 1964), +(6380, 'The Colored Girl Beautiful', 'Hackley, E. Azalia (Emma Azalia)', '2010-02-21', 32, 'https://www.gutenberg.org/ebooks/31340', 'en', 740), +(6381, 'The Marines Have Landed', 'Bishop, Giles', '2012-10-12', 630, 'https://www.gutenberg.org/ebooks/41037', 'en', 3649), +(6382, 'The Fever of Life', 'Hume, Fergus', '2017-11-29', 22, 'https://www.gutenberg.org/ebooks/56080', 'en', 1425), +(6383, 'Les Demi-Vierges', 'Prévost, Marcel', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11747', 'fr', 3650), +(6384, 'On Riemann\'s Theory of Algebraic Functions and their Integrals\nA Supplement to the Usual Treatises', 'Klein, Felix', '2011-08-03', 36, 'https://www.gutenberg.org/ebooks/36959', 'en', 3651), +(6385, 'Capt\'n Davy\'s Honeymoon', 'Caine, Hall, Sir', '2008-05-23', 14, 'https://www.gutenberg.org/ebooks/25572', 'en', 3652), +(6386, 'The Atlantic Monthly, Volume 03, No. 15, January, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/10695', 'en', 1227), +(6387, 'The Three Voyages of Captain Cook Round the World. Vol. II. Being the Second of the First Voyage', 'Cook, James', '2018-05-13', 38, 'https://www.gutenberg.org/ebooks/57152', 'en', 3653), +(6388, 'Later Poems', 'Carman, Bliss', '2010-08-12', 10, 'https://www.gutenberg.org/ebooks/33417', 'en', 8), +(6389, 'Graham\'s Magazine, Vol. XXXI, No. 5, November 1847', 'Various', '2019-02-20', 8, 'https://www.gutenberg.org/ebooks/58926', 'en', 162), +(6390, 'The New Departure; Or, Thoughts for Loyal Churchmen', 'Hoare, Edward', '2016-06-27', 14, 'https://www.gutenberg.org/ebooks/52420', 'en', 3654), +(6391, 'The Army Mule, and Other War Sketches', 'Castle, Henry A. (Henry Anson)', '2012-06-03', 24, 'https://www.gutenberg.org/ebooks/39911', 'en', 3655), +(6392, 'Novelle e paesi valdostani', 'Giacosa, Giuseppe', '2011-05-19', 10, 'https://www.gutenberg.org/ebooks/36165', 'it', 474), +(6393, 'Nancy Brandon', 'Garis, Lilian', '2014-04-26', 38, 'https://www.gutenberg.org/ebooks/45497', 'en', 167), +(6394, 'Nuori luotsi: Nelinäytöksinen kansannäytelmä', 'Weijola, Yrjö', '2013-12-30', 3, 'https://www.gutenberg.org/ebooks/44545', 'fi', 247), +(6395, 'The Potato Child & Others', 'Woodbury, Lucia Prudence Hall', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5662', 'en', 3618), +(6396, 'Twenty Thousand Leagues Under the Sea', 'Verne, Jules', '2007-09-01', 55, 'https://www.gutenberg.org/ebooks/20000', 'en', 737), +(6397, 'Más vale maña que fuerza\r\nProverbio en un acto; with notes, exercises, and vocabulary', 'Tamayo y Baus, Manuel', '2004-12-02', 23, 'https://www.gutenberg.org/ebooks/14235', 'en', 2729), +(6398, 'Hyde Park from Domesday-book to Date', 'Ashton, John', '2016-03-13', 11, 'https://www.gutenberg.org/ebooks/51438', 'en', 3656), +(6399, 'Punch or the London Charivari, Vol. 147, December 23, 1914', 'Various', '2009-07-27', 8, 'https://www.gutenberg.org/ebooks/29522', 'en', 134), +(6400, 'Mrs. Vanderstein\'s jewels', 'Bryce, Charles, Mrs.', '2013-05-26', 23, 'https://www.gutenberg.org/ebooks/42813', 'en', 3657), +(6401, 'The Molecular Tactics of a Crystal', 'Kelvin, William Thomson, Baron', '2017-06-24', 18, 'https://www.gutenberg.org/ebooks/54976', 'en', 3658), +(6402, 'Goethe\'s Faust', 'Bierens de Haan, J. D. (Johannes Diderik)', '2007-10-12', 36, 'https://www.gutenberg.org/ebooks/23018', 'nl', 3659), +(6403, 'The Bontoc Igorot', 'Jenks, Albert Ernest', '2005-03-18', 85, 'https://www.gutenberg.org/ebooks/3308', 'en', 3660), +(6404, 'Strong and Steady; Or, Paddle Your Own Canoe', 'Alger, Horatio, Jr.', '2017-07-13', 35, 'https://www.gutenberg.org/ebooks/55098', 'en', 195), +(6405, 'The Life of Saint Monica', 'Forbes, F. A. (Frances Alice)', '2011-04-24', 18, 'https://www.gutenberg.org/ebooks/35941', 'en', 3661), +(6406, 'Beautiful Gardens in America', 'Shelton, Louise', '2011-01-09', 13, 'https://www.gutenberg.org/ebooks/34893', 'en', 3662), +(6407, 'Scientific American Supplement, No. 1178, June 25, 1898', 'Various', '2006-04-27', 23, 'https://www.gutenberg.org/ebooks/18265', 'en', 210), +(6408, 'Psycho Vox; or, The Emerson System of Voice Culture', 'Emerson, Charles Wesley', '2015-03-17', 7, 'https://www.gutenberg.org/ebooks/48515', 'en', 3663), +(6409, '說唐', 'Luo, Guanzhong', '2007-12-11', 23, 'https://www.gutenberg.org/ebooks/23824', 'zh', 1574), +(6410, 'Die Richterin', 'Meyer, Conrad Ferdinand', '2006-01-01', 20, 'https://www.gutenberg.org/ebooks/9632', 'de', 385), +(6411, 'The Life of George Borrow', 'Shorter, Clement King', '2012-01-24', 86, 'https://www.gutenberg.org/ebooks/38662', 'en', 2192), +(6412, 'Lamarck et son OEuvre', 'Corra, Emile', '2012-09-16', 10, 'https://www.gutenberg.org/ebooks/40778', 'fr', 3664), +(6413, 'The Mystery', 'White, Stewart Edward', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/10008', 'en', 26), +(6414, 'Wacousta : a tale of the Pontiac conspiracy — Volume 3', 'Richardson, Major (John)', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/4911', 'en', 1203), +(6415, 'Timur: Novellen', 'Edschmid, Kasimir', '2010-05-13', 11, 'https://www.gutenberg.org/ebooks/32358', 'de', 1212), +(6416, 'The Elements of Child-protection', 'Engel, Sigmund', '2019-01-29', 2, 'https://www.gutenberg.org/ebooks/58787', 'en', 3665), +(6417, 'The History of Insects', 'Unknown', '2004-01-01', 139, 'https://www.gutenberg.org/ebooks/10834', 'en', 236), +(6418, 'La Principessa Belgiojoso\nDa memorie mondane inedite o rare e da archivii segreti di Stato', 'Barbiera, Raffaello', '2019-06-02', 28, 'https://www.gutenberg.org/ebooks/59655', 'it', 3666), +(6419, 'The Six River Motor Boat Boys on the St. Lawrence; Or, The Lost Channel', 'Gordon, Harry', '2011-12-31', 15, 'https://www.gutenberg.org/ebooks/38450', 'en', 2794), +(6420, 'The Story of Milan', 'Noyes, Ella', '2017-01-14', 10, 'https://www.gutenberg.org/ebooks/53961', 'en', 3667), +(6421, 'Our Girls', 'Lewis, Dio', '2012-11-27', 11, 'https://www.gutenberg.org/ebooks/41498', 'en', 3668), +(6422, 'The Rival Pitchers: A Story of College Baseball', 'Chadwick, Lester', '2012-04-30', 8, 'https://www.gutenberg.org/ebooks/39582', 'en', 3669), +(6423, 'Elsie and Her Namesakes', 'Finley, Martha', '2014-05-28', 25, 'https://www.gutenberg.org/ebooks/45804', 'en', 942), +(6424, 'Palm Tree Island', 'Strang, Herbert', '2011-09-19', 19, 'https://www.gutenberg.org/ebooks/37418', 'en', 323), +(6425, 'Nova academia de pintura\ndedicada às senhoras portuguezas que amão ou se applicão\nao estudo das Bellas Artes', 'Machado, Cirilo Volkmar', '2008-03-15', 5, 'https://www.gutenberg.org/ebooks/24833', 'pt', 3670), +(6426, 'Alec Lloyd, Cowpuncher', 'Gates, Eleanor', '2010-10-26', 34, 'https://www.gutenberg.org/ebooks/33884', 'en', 315), +(6427, 'Harper\'s Round Table, October 13, 1896', 'Various', '2019-05-10', 8, 'https://www.gutenberg.org/ebooks/59467', 'en', 668), +(6428, 'Kærlighedens Komedie', 'Ibsen, Henrik', '2005-05-02', 17, 'https://www.gutenberg.org/ebooks/15748', 'no', 3671), +(6429, 'Wilson\'s Tales of the Borders and of Scotland, Volume 09', NULL, '2010-06-23', 16, 'https://www.gutenberg.org/ebooks/32956', 'en', 3672), +(6430, 'Perlycross: A Tale of the Western Hills', 'Blackmore, R. D. (Richard Doddridge)', '2014-02-28', 76, 'https://www.gutenberg.org/ebooks/45038', 'en', 128), +(6431, 'The Confessions of Jean Jacques Rousseau — Volume 06', 'Rousseau, Jean-Jacques', '2004-12-06', 18, 'https://www.gutenberg.org/ebooks/3906', 'en', 608), +(6432, 'Ireland as It Is, and as It Would Be Under Home Rule', 'Buckley, Robert John', '2009-08-17', 10, 'https://www.gutenberg.org/ebooks/29710', 'en', 3673), +(6433, 'Mysteries of Paris — Volume 03', 'Sue, Eugène', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6448', 'en', 560), +(6434, 'Santa Teresa: An Appreciation\r\nWith Some of the Best Passages of the Saint\'s Writings', 'Teresa, of Avila, Saint', '2006-09-05', 31, 'https://www.gutenberg.org/ebooks/19185', 'en', 3674), +(6435, 'La plainte d\'une amante', 'Shakespeare, William', '2008-10-03', 17, 'https://www.gutenberg.org/ebooks/26758', 'fr', 1412), +(6436, 'Le ore inutili: novelle', 'Guglielminetti, Amalia', '2015-04-17', 28, 'https://www.gutenberg.org/ebooks/48727', 'it', 474), +(6437, 'The Hudson\nThree Centuries of History, Romance and Invention', 'Bruce, Wallace', '2006-02-22', 18, 'https://www.gutenberg.org/ebooks/17823', 'en', 3675), +(6438, 'A Select Collection of Old English Plays, Volume 02', NULL, '2005-11-01', 30, 'https://www.gutenberg.org/ebooks/9400', 'en', 1088), +(6439, 'Flower of the Dusk', 'Reed, Myrtle', '2006-03-27', 17, 'https://www.gutenberg.org/ebooks/18057', 'en', 3676), +(6440, 'Through the Telescope', 'Baikie, James', '2017-03-17', 19, 'https://www.gutenberg.org/ebooks/54378', 'en', 1683), +(6441, 'In Portugal\nDe Aarde en haar Volken, 1908', 'Fouchier, Louis Charles Eugène Joseph de', '2007-06-25', 10, 'https://www.gutenberg.org/ebooks/21925', 'nl', 1923), +(6442, 'The Ontario Archives: Scope of its Operations', 'Fraser, Alexander', '2011-08-06', 11, 'https://www.gutenberg.org/ebooks/36992', 'en', 3677), +(6443, 'The South Isles of Aran (County Galway)', 'Burke, Oliver J. (Oliver Joseph)', '2011-10-24', 30, 'https://www.gutenberg.org/ebooks/37840', 'en', 3678), +(6444, 'Mark Tidd\'s Citadel', 'Kelland, Clarence Budington', '2018-05-22', 15, 'https://www.gutenberg.org/ebooks/57199', 'en', 1655), +(6445, 'Paul Appell: Biographie, Bibliographie Analytique des Écrits', 'Lebon, Ernest', '2011-11-16', 5, 'https://www.gutenberg.org/ebooks/38034', 'fr', 3679), +(6446, 'History of the Conquest of Peru', 'Prescott, William Hickling', '1998-02-01', 77, 'https://www.gutenberg.org/ebooks/1209', 'en', 2884), +(6447, 'Flaming June', 'Vaizey, George de Horne, Mrs.', '2007-04-17', 25, 'https://www.gutenberg.org/ebooks/21119', 'en', 843), +(6448, 'The Girl\'s Own Paper, Vol. XX. No. 1010, May 6, 1899', 'Various', '2019-03-03', 14, 'https://www.gutenberg.org/ebooks/59003', 'en', 563), +(6449, 'The eleventh hour in the life of Julia Ward Howe', 'Elliott, Maud Howe', '2018-03-30', 11, 'https://www.gutenberg.org/ebooks/56877', 'en', 3680), +(6450, 'Road Guide to Lassen Volcanic National Park', 'Schulz, Paul E.', '2016-11-16', 3, 'https://www.gutenberg.org/ebooks/53539', 'en', 3681), +(6451, 'The Works of Robert G. Ingersoll, Vol. 08 (of 12)\r\nDresden Edition—Interviews', 'Ingersoll, Robert Green', '2012-02-09', 138, 'https://www.gutenberg.org/ebooks/38808', 'en', 1191), +(6452, 'The Pillar of Light', 'Tracy, Louis', '2012-10-02', 33, 'https://www.gutenberg.org/ebooks/40912', 'en', 3682), +(6453, 'Star-Dust: A Story of an American Girl', 'Hurst, Fannie', '2006-02-01', 18, 'https://www.gutenberg.org/ebooks/9858', 'en', 3683), +(6454, 'The Song of the Blood-Red Flower', 'Linnankoski, Johannes', '2004-07-18', 22, 'https://www.gutenberg.org/ebooks/12935', 'en', 61), +(6455, 'The Gaunt Gray Wolf: A Tale of Adventure With Ungava Bob', 'Wallace, Dillon', '2009-07-11', 17, 'https://www.gutenberg.org/ebooks/29374', 'en', 3554), +(6456, 'Clergymen and Doctors: Curious Facts and Characteristic Sketches.', 'Anonymous', '2015-02-23', 21, 'https://www.gutenberg.org/ebooks/48343', 'en', 741), +(6457, 'The Man Who Played to Lose', 'Janifer, Laurence M.', '2009-10-15', 42, 'https://www.gutenberg.org/ebooks/30259', 'en', 26), +(6458, 'Gedichte', 'Heyse, Paul', '2005-10-01', 21, 'https://www.gutenberg.org/ebooks/9064', 'de', 510), +(6459, 'Christopher Columbus', 'Byne, Mildred Stapley', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/6810', 'en', 2036), +(6460, 'Kultala\nHyödyllinen ja huvittava historia, yhteiselle kansalle\nluettavaksi annettu', 'Zschokke, Heinrich', '2006-05-22', 16, 'https://www.gutenberg.org/ebooks/18433', 'fi', 3684), +(6461, 'The House That Jack Built\nOne of R. Caldecott\'s Picture Books', 'Caldecott, Randolph', '2004-04-01', 69, 'https://www.gutenberg.org/ebooks/12109', 'en', 2951), +(6462, 'Beadle\'s Dime National Speaker, Embodying Gems of Oratory and Wit, Particularly Adapted to American Schools and Firesides\nSpeaker Series Number 2, Revised and Enlarged Edition', NULL, '2015-06-27', 11, 'https://www.gutenberg.org/ebooks/49291', 'en', 1725), +(6463, 'Fires - Book 3: The Hare, and Other Tales', 'Gibson, Wilfrid Wilson', '2013-05-09', 10, 'https://www.gutenberg.org/ebooks/42679', 'en', 54), +(6464, 'Stories from Wagner', 'Wagner, Richard', '2015-03-14', 21, 'https://www.gutenberg.org/ebooks/47139', 'en', 3685), +(6465, 'Mediaeval Tales', NULL, '2009-02-16', 21, 'https://www.gutenberg.org/ebooks/28094', 'en', 3686), +(6466, 'The Germ: Thoughts towards Nature in Poetry, Literature and Art', 'Various', '2006-01-31', 59, 'https://www.gutenberg.org/ebooks/17649', 'en', 3687), +(6467, 'O Oraculo do Passado, do presente e do Futuro (5/7)\r\nParte Quinta: O oraculo das Sinas', 'Serrano, Bento', '2010-01-04', 6, 'https://www.gutenberg.org/ebooks/30857', 'pt', 185), +(6468, 'Perfect Control', 'Stockham, Richard', '2010-04-14', 13, 'https://www.gutenberg.org/ebooks/31985', 'en', 179), +(6469, 'Equation of Doom', 'Vance, Gerald', '2009-06-17', 34, 'https://www.gutenberg.org/ebooks/29146', 'en', 26), +(6470, 'Joscelyn Cheshire: A Story of Revolutionary Days in the Carolinas', 'Kennedy, Sara Beaumont', '2011-03-08', 7, 'https://www.gutenberg.org/ebooks/35519', 'en', 1293), +(6471, '治世餘聞', 'Chen, Hongmo', '2008-10-16', 24, 'https://www.gutenberg.org/ebooks/26932', 'zh', 3688), +(6472, 'Dust: A Novel', 'Hawthorne, Julian', '2015-01-07', 24, 'https://www.gutenberg.org/ebooks/47905', 'en', 45), +(6473, 'An Account of Some of the Principal Slave Insurrections,\nand Others, Which Have Occurred, or Been Attempted, in the\nUnited States and Elsewhere, During the Last Two Centuries.', 'Coffin, Joshua', '2006-06-16', 11, 'https://www.gutenberg.org/ebooks/18601', 'en', 3689), +(6474, 'The tragical acts, or comical tragedies of Punch and Judy', 'Judd, W. J. (William J.)', '2015-02-05', 29, 'https://www.gutenberg.org/ebooks/48171', 'en', 3690), +(6475, 'A Picture-book of Merry Tales', 'Anonymous', '2013-08-29', 26, 'https://www.gutenberg.org/ebooks/43599', 'en', 388), +(6476, 'The Paradise of Children\n(From: \"A Wonder-Book for Girls and Boys\")', 'Hawthorne, Nathaniel', '2005-11-01', 23, 'https://www.gutenberg.org/ebooks/9256', 'en', 2139), +(6477, 'A Book of the Riviera', 'Baring-Gould, S. (Sabine)', '2016-04-25', 20, 'https://www.gutenberg.org/ebooks/51860', 'en', 3691), +(6478, 'Pauline\'s Passion and Punishment', 'Alcott, Louisa May', '2005-06-01', 58, 'https://www.gutenberg.org/ebooks/8384', 'en', 109), +(6479, 'The Origin and Development of Christian Dogma: An essay in the science of history', 'Tuthill, Charles A. H.', '2017-12-31', 8, 'https://www.gutenberg.org/ebooks/56279', 'en', 3692), +(6480, 'A Loose End and Other Stories', 'Hall, S. Elizabeth', '2005-05-27', 8, 'https://www.gutenberg.org/ebooks/15922', 'en', 61), +(6481, 'A Boy of the Dominion: A Tale of Canadian Immigration', 'Brereton, F. S. (Frederick Sadleir)', '2011-12-03', 11, 'https://www.gutenberg.org/ebooks/38206', 'en', 3693), +(6482, 'Hortense\r\nMakers of History Series', 'Abbott, John S. C. (John Stevens Cabot)', '2008-02-20', 25, 'https://www.gutenberg.org/ebooks/24659', 'en', 3694), +(6483, 'Artemis to Actaeon, and Other Verses', 'Wharton, Edith', '2003-10-01', 22, 'https://www.gutenberg.org/ebooks/4549', 'en', 994), +(6484, 'Robert Curthose, Duke of Normandy', 'David, Charles W. (Charles Wendell)', '2019-04-08', 17, 'https://www.gutenberg.org/ebooks/59231', 'en', 3695), +(6485, 'The Lost House', 'Davis, Richard Harding', '1999-07-01', 20, 'https://www.gutenberg.org/ebooks/1807', 'en', 3696), +(6486, 'The Great American Canals (Volume 2, The Erie Canal)', 'Hulbert, Archer Butler', '2012-10-09', 12, 'https://www.gutenberg.org/ebooks/41008', 'en', 3697), +(6487, 'The Blessed Hope: A Sermon on the Death of Mrs. Francis Cunningham', 'Hoare, Edward', '2012-03-12', 7, 'https://www.gutenberg.org/ebooks/39112', 'en', 3698), +(6488, 'Human Genome Project, Build 34, Chromosome Number 04', 'Human Genome Project', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11778', 'en', 1385), +(6489, 'The Story of the Toys', 'Dodge, Mary Harris Toy', '2011-08-03', 27, 'https://www.gutenberg.org/ebooks/36966', 'en', 3699), +(6490, 'Stevensoniana\r\nBeing a Reprint of Various Literary and Pictorial Miscellany Associated with Robert Louis Stevenson, the Man and His Work', 'Various', '2010-08-14', 16, 'https://www.gutenberg.org/ebooks/33428', 'en', 3700), +(6491, 'A Classified Catalogue of Henry S. King & Co.\'s Publications, November, 1873', 'Henry S. King (Publisher)', '2019-02-19', 5, 'https://www.gutenberg.org/ebooks/58919', 'en', 2663), +(6492, 'The War of Independence', 'Fiske, John', '2007-03-13', 22, 'https://www.gutenberg.org/ebooks/20803', 'en', 481), +(6493, 'Fra Angelico', 'Mason, James', '2013-01-13', 22, 'https://www.gutenberg.org/ebooks/41834', 'en', 3701), +(6494, 'Balaam and His Master, and Other Sketches and Stories', 'Harris, Joel Chandler', '2018-03-31', 34, 'https://www.gutenberg.org/ebooks/56883', 'en', 770), +(6495, 'John Pettie, R.A., H.R.S.A.\nSixteen examples in colour of the artist\'s work', 'Hardie, Martin', '2011-08-14', 11, 'https://www.gutenberg.org/ebooks/37088', 'en', 3702), +(6496, 'Lanterna', 'Palazzeschi, Aldo', '2018-09-22', 19, 'https://www.gutenberg.org/ebooks/57951', 'it', 644), +(6497, 'Colonel Henry Ludington: A Memoir', 'Johnson, Willis Fletcher', '2018-10-17', 10, 'https://www.gutenberg.org/ebooks/58125', 'en', 3703), +(6498, 'Violin Making\n\'The Strad\' Library, No. IX.', 'Mayson, Walter H. (Walter Henry)', '2009-03-05', 55, 'https://www.gutenberg.org/ebooks/28252', 'en', 3704), +(6499, 'Anna omassa kodissaan', 'Montgomery, L. M. (Lucy Maud)', '2015-10-31', 17, 'https://www.gutenberg.org/ebooks/50348', 'fi', 3705), +(6500, 'The Common Law', 'Chambers, Robert W. (Robert William)', '2004-10-20', 16, 'https://www.gutenberg.org/ebooks/13813', 'en', 1660), +(6501, 'The Adventures of Herr Baby', 'Molesworth, Mrs.', '2009-07-11', 17, 'https://www.gutenberg.org/ebooks/29380', 'en', 3706), +(6502, 'L\'enfer (1 of 2)\nLa Divine Comédie - Traduit par Rivarol', 'Dante Alighieri', '2007-09-26', 72, 'https://www.gutenberg.org/ebooks/22768', 'fr', 2091), +(6503, 'The Circus Boys on the Plains; Or, The Young Advance Agents Ahead of the Show', 'Darlington, Edgar B. P.', '2001-01-01', 22, 'https://www.gutenberg.org/ebooks/2478', 'en', 323), +(6504, 'Germania and Agricola', 'Tacitus, Cornelius', '2005-10-01', 108, 'https://www.gutenberg.org/ebooks/9090', 'en', 3707), +(6505, 'The Blue Fairy Book', 'Lang, Andrew', '2005-10-21', 999, 'https://www.gutenberg.org/ebooks/503', 'en', 1007), +(6506, 'A Princess of Mars', 'Burroughs, Edgar Rice', '2006-10-11', 24, 'https://www.gutenberg.org/ebooks/19515', 'en', 3708), +(6507, 'Peeps at Many Lands: Japan', 'Finnemore, John', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/7936', 'en', 118), +(6508, 'The Riot Act', 'Great Britain. Parliament', '2005-05-01', 75, 'https://www.gutenberg.org/ebooks/8142', 'en', 678), +(6509, 'The Sisters of Lady Jane Grey and Their Wicked Grandfather\r\nBeing the True Stories of the Strange Lives of Charles Brandon, Duke of Suffolk, and the Ladies Katherine and Mary Grey, sisters', 'Davey, Richard', '2015-06-23', 13, 'https://www.gutenberg.org/ebooks/49265', 'en', 3709), +(6510, 'Feuerbach: The roots of the socialist philosophy', 'Engels, Friedrich', '2009-01-15', 44, 'https://www.gutenberg.org/ebooks/27814', 'en', 3710), +(6511, 'The Fight for the Argonne: Personal Experiences of a \'Y\' Man', 'West, William Benjamin', '2009-02-12', 15, 'https://www.gutenberg.org/ebooks/28060', 'en', 449), +(6512, 'The Jacobite Rebellions (1689-1746)\n(Bell\'s Scottish History Source Books.)', 'Thomson, J. Pringle (James Pringle)', '2007-11-15', 36, 'https://www.gutenberg.org/ebooks/23488', 'en', 3711), +(6513, 'O crime do padre Amaro, scenas da vida devota', 'Queirós, Eça de', '2010-04-13', 87, 'https://www.gutenberg.org/ebooks/31971', 'pt', 3712); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(6514, 'Studies in the Life of the Christian: His Faith and His Service', 'Sell, Henry T. (Henry Thorne)', '2005-01-01', 6, 'https://www.gutenberg.org/ebooks/7338', 'en', 1967), +(6515, 'Multilingualism on the Web', 'Lebert, Marie', '2008-10-26', 7, 'https://www.gutenberg.org/ebooks/27028', 'en', 2069), +(6516, 'History of the Decline and Fall of the Roman Empire — Volume 1', 'Gibbon, Edward', '2008-06-07', 644, 'https://www.gutenberg.org/ebooks/731', 'en', 1292), +(6517, 'Verdun, Argonne-Metz, 1914-1918', NULL, '2015-02-07', 24, 'https://www.gutenberg.org/ebooks/48185', 'en', 3083), +(6518, 'Erämaan kansaa: Kuvauksia Pohjan periltä', 'Koskimaa, Juho', '2016-01-17', 4, 'https://www.gutenberg.org/ebooks/50946', 'fi', 665), +(6519, 'Reminiscences of Captain Gronow', 'Gronow, R. H. (Rees Howell)', '2003-02-01', 25, 'https://www.gutenberg.org/ebooks/3798', 'en', 3713), +(6520, 'The Bible, Douay-Rheims, Book 70: 2 John\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8370', 'en', 1844), +(6521, 'Federal Stamp Taxes on Drafts, Checks and Promissory Notes, 1919', 'Guaranty Trust Company of New York', '2016-04-30', 10, 'https://www.gutenberg.org/ebooks/51894', 'en', 3714), +(6522, 'Tales of King Arthur and the Round Table, Adapted from the Book of Romance', NULL, '2015-05-27', 174, 'https://www.gutenberg.org/ebooks/49057', 'en', 1193), +(6523, 'Rounding Cape Horn, and Other Sea Stories', 'McRoberts, Walter', '2017-08-21', 11, 'https://www.gutenberg.org/ebooks/55408', 'en', 179), +(6524, 'Merimiehen matkamuistelmia 1\r\nJa haaksirikko', 'Högman, Aukusti', '2006-11-06', 22, 'https://www.gutenberg.org/ebooks/19727', 'fi', 61), +(6525, 'Ten Years in India, in the 16th Queen\'s Lancers, and Three Years in South Africa, in the Cape Corps Levies', 'Gould, W. J. D.', '2014-09-09', 10, 'https://www.gutenberg.org/ebooks/46823', 'en', 3715), +(6526, 'Traité des eunuques', 'Ancillon, Charles', '2012-03-31', 31, 'https://www.gutenberg.org/ebooks/39320', 'fr', 3716), +(6527, 'La Guerre Sociale\r\nDiscours Prononcé au Congrès de la Paix', 'Léo, André', '2005-01-25', 11, 'https://www.gutenberg.org/ebooks/14804', 'fr', 477), +(6528, 'Ain\' No Mo\' Cane on De Brazis', 'McGuinn, Roger', '2003-12-01', 7, 'https://www.gutenberg.org/ebooks/10498', 'en', 3717), +(6529, 'If Any Man Sin', 'Cody, H. A. (Hiram Alfred)', '2011-06-10', 0, 'https://www.gutenberg.org/ebooks/36368', 'en', 1534), +(6530, 'La Daniella, Vol. II.', 'Sand, George', '2004-11-14', 25, 'https://www.gutenberg.org/ebooks/14038', 'fr', 298), +(6531, 'Connaissance de la Déesse', 'Fabre, Lucien', '2018-11-20', 17, 'https://www.gutenberg.org/ebooks/58317', 'fr', 3718), +(6532, 'The Witch Hypnotizer', 'Maher, Zena A.', '2014-01-24', 25, 'https://www.gutenberg.org/ebooks/44748', 'en', 3719), +(6533, 'Leaves from the Diary of an Impressionist: Early Writings', 'Hearn, Lafcadio', '2017-10-30', 24, 'https://www.gutenberg.org/ebooks/55850', 'en', 3720), +(6534, 'Historical Romance of the American Negro', 'Fowler, Charles Henry', '2011-02-05', 8, 'https://www.gutenberg.org/ebooks/35189', 'en', 3227), +(6535, 'A Text-book of Diseases of Women', 'Penrose, Charles B. (Charles Bingham)', '2017-06-26', 21, 'https://www.gutenberg.org/ebooks/54982', 'en', 3721), +(6536, 'Harper\'s Young People, March 9, 1880\nAn Illustrated Weekly', 'Various', '2009-03-25', 4, 'https://www.gutenberg.org/ebooks/28404', 'en', 479), +(6537, 'William E. Burton: Actor, Author, and Manager\nA Sketch of his Career with Recollections of his Performances', 'Keese, William L. (William Linn)', '2013-10-11', 12, 'https://www.gutenberg.org/ebooks/43935', 'en', 3722), +(6538, 'Four Plays of Aeschylus', 'Aeschylus', '2005-08-01', 136, 'https://www.gutenberg.org/ebooks/8714', 'en', 3723), +(6539, 'Modern marriage and how to bear it', 'Braby, Maud Churton', '2010-03-07', 45, 'https://www.gutenberg.org/ebooks/31529', 'en', 1451), +(6540, 'Zaragoza', 'Pérez Galdós, Benito', '2015-07-12', 44, 'https://www.gutenberg.org/ebooks/49433', 'es', 2371), +(6541, 'The Liberty Boys Running the Blockade\nor, Getting Out of New York', 'Moore, Harry', '2007-10-06', 13, 'https://www.gutenberg.org/ebooks/22902', 'en', 98), +(6542, 'The Making of Mary', 'McIlwraith, Jean N. (Jean Newton)', '2006-09-22', 17, 'https://www.gutenberg.org/ebooks/19343', 'en', 770), +(6543, 'Hunger: Book One', 'Hamsun, Knut', '2006-04-30', 61, 'https://www.gutenberg.org/ebooks/18291', 'he', 918), +(6544, 'The Parasite: A Story', 'Doyle, Arthur Conan', '1995-11-01', 193, 'https://www.gutenberg.org/ebooks/355', 'en', 3724), +(6545, 'Andrew the Glad', 'Daviess, Maria Thompson', '2004-10-09', 23, 'https://www.gutenberg.org/ebooks/13679', 'en', 1439), +(6546, 'The Ports, Harbours, Watering-places and Picturesque Scenery of Great Britain Vol. 2', 'Finden, W. (William)', '2011-01-06', 11, 'https://www.gutenberg.org/ebooks/34867', 'en', 3725), +(6547, 'The Third Miss St Quentin', 'Molesworth, Mrs.', '2013-07-06', 17, 'https://www.gutenberg.org/ebooks/43109', 'en', 3726), +(6548, 'Mémoires pour servir à l\'Histoire de France sous Napoléon, Tome 2/2\nÉcrits à Sainte-Hélène par les généraux qui ont partagé sa captivité', 'Gourgaud, Gaspard, Baron', '2012-01-28', 14, 'https://www.gutenberg.org/ebooks/38696', 'fr', 1941), +(6549, 'Sketches New and Old, Part 2.', 'Twain, Mark', '2004-06-26', 38, 'https://www.gutenberg.org/ebooks/5837', 'en', 1426), +(6550, 'Arne; Early Tales and Sketches\r\nPatriots Edition', 'Bjørnson, Bjørnstjerne', '2012-05-20', 9, 'https://www.gutenberg.org/ebooks/39744', 'en', 286), +(6551, 'Les Machines', 'Love, Joe', '2019-01-26', 13, 'https://www.gutenberg.org/ebooks/58773', 'en', 26), +(6552, 'The Oahu College at the Sandwich Islands', 'Punahou School', '2007-02-25', 14, 'https://www.gutenberg.org/ebooks/20669', 'en', 3727), +(6553, 'The Brown Study', 'Richmond, Grace S. (Grace Smith)', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/11912', 'en', 55), +(6554, 'Historical Record of the Third, or Prince of Wales\' Regiment of Dragoon Guards\r\nContaining an Account of the Formation of the Regiment in 1685, and of Its Subsequent Services to 1838', 'Cannon, Richard', '2016-06-06', 4, 'https://www.gutenberg.org/ebooks/52249', 'en', 3728), +(6555, 'The Mercer Boys at Woodcrest', 'Wyckoff, Capwell', '2018-07-15', 4, 'https://www.gutenberg.org/ebooks/57509', 'en', 2154), +(6556, 'The Last of the Flatboats\r\nA Story of the Mississippi and Its Interesting Family of Rivers', 'Eggleston, George Cary', '2014-02-15', 27, 'https://www.gutenberg.org/ebooks/44922', 'en', 3729), +(6557, 'The Vanished Messenger', 'Oppenheim, E. Phillips (Edward Phillips)', '1999-04-01', 56, 'https://www.gutenberg.org/ebooks/1699', 'en', 128), +(6558, 'A Study In Shadows', 'Locke, William John', '2017-01-18', 25, 'https://www.gutenberg.org/ebooks/53995', 'en', 3730), +(6559, 'The Radio Detectives', 'Verrill, A. Hyatt (Alpheus Hyatt)', '2012-04-30', 15, 'https://www.gutenberg.org/ebooks/39576', 'en', 128), +(6560, 'Memorias de José Garibaldi, volume 1\r\nTraduzidas do manuscripto original por Alexandre Dumas', 'Garibaldi, Giuseppe', '2016-08-18', 14, 'https://www.gutenberg.org/ebooks/52847', 'pt', 3731), +(6561, 'Baboo Jabberjee, B.A.', 'Anstey, F.', '2008-04-22', 33, 'https://www.gutenberg.org/ebooks/25129', 'en', 564), +(6562, 'The Confessions of Harry Lorrequer — Volume 6', 'Lever, Charles James', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/5239', 'en', 61), +(6563, 'Pioneer Colored Christians', 'Miller, Harriet Parks', '2018-12-26', 10, 'https://www.gutenberg.org/ebooks/58541', 'en', 3732), +(6564, 'Chess Fundamentals', 'Capablanca, José Raúl', '2010-10-18', 390, 'https://www.gutenberg.org/ebooks/33870', 'en', 3733), +(6565, 'The Rime of the Ancient Mariner', 'Coleridge, Samuel Taylor', '2007-05-25', 6, 'https://www.gutenberg.org/ebooks/21589', 'en', 8), +(6566, 'Die Naturwissenschaften in ihrer Entwicklung und in ihrem Zusammenhange, IV. Band\r\nDas Emporblühen der modernen Naturwissenschaften seit der Entdeckung des Energieprinzips', 'Dannemann, Friedrich', '2019-05-13', 12, 'https://www.gutenberg.org/ebooks/59493', 'de', 186), +(6567, 'James Lane Allen: A Sketch of his Life and Work', 'Unknown', '2008-06-27', 14, 'https://www.gutenberg.org/ebooks/25915', 'en', 3734), +(6568, 'The Chronicles of Newgate, vol. 1/2', 'Griffiths, Arthur', '2014-08-21', 24, 'https://www.gutenberg.org/ebooks/46649', 'en', 3735), +(6569, 'The Great Round World and What Is Going On In It, Vol. 1, No. 38, July 29, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-27', 13, 'https://www.gutenberg.org/ebooks/16139', 'en', 1), +(6570, 'The Grey Woman and other Tales', 'Gaskell, Elizabeth Cleghorn', '2009-04-29', 93, 'https://www.gutenberg.org/ebooks/28636', 'en', 179), +(6571, 'La Fin Des Livres', 'Robida, Albert', '2001-09-01', 30, 'https://www.gutenberg.org/ebooks/2820', 'en', 1705), +(6572, 'Rookie rhymes, by the men of the 1st and 2nd provisional training regiments, Plattsburg, New York', 'Plattsburgh Barracks (N.Y.)', '2010-11-10', 13, 'https://www.gutenberg.org/ebooks/34269', 'en', 2100), +(6573, 'The Moving Picture Girls; Or, First Appearances in Photo Dramas', 'Hope, Laura Lee', '2006-09-04', 34, 'https://www.gutenberg.org/ebooks/19171', 'en', 3200), +(6574, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 482, March 26, 1831', 'Various', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12599', 'en', 133), +(6575, 'Eve\'s Diary, Part 1', 'Twain, Mark', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/8526', 'en', 2101), +(6576, 'The Great Red Frog', 'Ransom, Sidney', '2005-10-19', 5, 'https://www.gutenberg.org/ebooks/16905', 'en', 1007), +(6577, 'A History of Deerpark in Orange County, N. Y.', 'Gumaer, Peter E.', '2015-08-04', 5, 'https://www.gutenberg.org/ebooks/49601', 'en', 3736), +(6578, 'American Hand Book of the Daguerreotype', 'Humphrey, S. D. (Samuel Dwight)', '1994-09-01', 38, 'https://www.gutenberg.org/ebooks/167', 'en', 3737), +(6579, 'Elsie on the Hudson', 'Finley, Martha', '2010-04-28', 31, 'https://www.gutenberg.org/ebooks/32163', 'en', 388), +(6580, 'Browning and Dogma\r\nSeven Lectures on Browning\'s Attitude Towards Dogmatic Religion', 'Naish, Ethel M.', '2012-11-26', 9, 'https://www.gutenberg.org/ebooks/41491', 'en', 3738), +(6581, 'The Mummy! A Tale of the Twenty-Second Century', 'Loudon, Mrs. (Jane)', '2018-01-24', 95, 'https://www.gutenberg.org/ebooks/56426', 'en', 3739), +(6582, 'Shadows of Shasta', 'Miller, Joaquin', '2007-12-24', 8, 'https://www.gutenberg.org/ebooks/24006', 'en', 3740), +(6583, 'Transcontinental Telephone Address to Thomas A. Edison', 'Hutchinson, Miller Reese', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10233', 'en', 3741), +(6584, 'Die Zelle', 'Kahn, Fritz', '2012-08-20', 22, 'https://www.gutenberg.org/ebooks/40543', 'de', 3742), +(6585, 'Memoirs of the life, exile, and conversations of the Emperor Napoleon. (Vol. II)', 'Las Cases, Emmanuel-Auguste-Dieudonné, comte de', '2017-01-16', 14, 'https://www.gutenberg.org/ebooks/53968', 'en', 1770), +(6586, 'Bez przewodnika', 'Niewiadomska, Cecylia', '2012-01-01', 20, 'https://www.gutenberg.org/ebooks/38459', 'pl', 61), +(6587, 'Songs for Parents', 'Farrar, John Chipman', '1999-03-01', 11, 'https://www.gutenberg.org/ebooks/1664', 'en', 859), +(6588, 'The Little Colonel\'s House Party', 'Johnston, Annie F. (Annie Fellows)', '2005-05-02', 22, 'https://www.gutenberg.org/ebooks/15741', 'en', 62), +(6589, 'The Province of Midwives in the Practice of their Art\r\nInstructing them in the timely knowledge of such difficulties as require the assistance of Men, for the preservation of Mother and Child; very necessary for the perusal of all the sex interested in the subject, and interspersed with some New and Useful Observations.', 'Clark, William', '2016-05-16', 13, 'https://www.gutenberg.org/ebooks/52086', 'en', 3743), +(6590, 'The Poacher; Or, Joseph Rushbrook', 'Marryat, Frederick', '2007-05-22', 44, 'https://www.gutenberg.org/ebooks/21574', 'en', 3744), +(6591, 'The Romance of the Colorado River\r\nThe Story of its Discovery in 1840, with an Account of the Later Explorations, and with Special Reference to the Voyages of Powell through the Line of the Great Canyons', 'Dellenbaugh, Frederick Samuel', '2003-08-01', 18, 'https://www.gutenberg.org/ebooks/4316', 'en', 3745), +(6592, 'Journal de Jean Héroard - Tome 1\r\nSur l\'enfance et la jeunesse de Louis XIII (1601-1610)', 'Héroard, Jean', '2014-02-27', 17, 'https://www.gutenberg.org/ebooks/45031', 'fr', 3746), +(6593, 'A Primer of Assyriology', 'Sayce, A. H. (Archibald Henry)', '2011-09-12', 17, 'https://www.gutenberg.org/ebooks/37411', 'en', 931), +(6594, 'Cameron of Lochiel', 'Aubert de Gaspé, Philippe', '2016-09-27', 22, 'https://www.gutenberg.org/ebooks/53154', 'en', 65), +(6595, 'Le crime de Lord Arthur Savile', 'Wilde, Oscar', '2005-01-14', 24, 'https://www.gutenberg.org/ebooks/14693', 'fr', 1007), +(6596, 'Division of Words\r\nRules for the Division of Words at the Ends of Lines, with Remarks on Spelling, Syllabication and Pronunciation', 'Hamilton, Frederick W. (Frederick William)', '2005-11-06', 15, 'https://www.gutenberg.org/ebooks/17016', 'en', 3747), +(6597, 'Good Blood', 'Wildenbruch, Ernst von', '2007-10-27', 11, 'https://www.gutenberg.org/ebooks/23223', 'en', 61), +(6598, 'Uncle Robert\'s Geography (Uncle Robert\'s Visit, V.3)', 'Helm, Nellie Lathrop', '2004-09-01', 59, 'https://www.gutenberg.org/ebooks/6441', 'en', 1019), +(6599, 'The Uncollected Writings of Thomas de Quincey—Vol. 1\nWith a Preface and Annotations by James Hogg', 'De Quincey, Thomas', '2006-07-18', 30, 'https://www.gutenberg.org/ebooks/18862', 'en', 1201), +(6600, 'Birds Illustrated by Color Photography, Vol. 3, No. 2 [February, 1898]\r\nA Monthly Serial designed to Promote Knowledge of Bird-Life', 'Various', '2010-11-12', 19, 'https://www.gutenberg.org/ebooks/34294', 'en', 1254), +(6601, 'The Propaganda for Reform in Proprietary Medicines, Vol. 1 of 2', 'Council on Pharmacy and Chemistry (American Medical Association)', '2014-12-24', 20, 'https://www.gutenberg.org/ebooks/47766', 'en', 1776), +(6602, 'The Caxtons: A Family Picture — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 11, 'https://www.gutenberg.org/ebooks/7593', 'en', 376), +(6603, 'The Ravens and the Angels, with Other Stories and Parables', 'Charles, Elizabeth Rundle', '2011-02-21', 28, 'https://www.gutenberg.org/ebooks/35346', 'en', 388), +(6604, 'Dichtertje - De Uitvreter - Titaantjes', 'Nescio', '2009-08-17', 56, 'https://www.gutenberg.org/ebooks/29719', 'nl', 319), +(6605, 'All the People', 'Lafferty, R. A.', '2016-03-30', 59, 'https://www.gutenberg.org/ebooks/51603', 'en', 179), +(6606, 'The Naples Riviera', 'Vaughan, Herbert M. (Herbert Millingchamp)', '2009-12-09', 9, 'https://www.gutenberg.org/ebooks/30634', 'en', 3748), +(6607, 'Five Thousand Dollars Reward', 'Pinkerton, A. Frank', '2005-12-01', 10, 'https://www.gutenberg.org/ebooks/9409', 'en', 50), +(6608, 'With Force and Arms: A Tale of Love and Salem Witchcraft', 'Garis, Howard Roger', '2017-03-16', 40, 'https://www.gutenberg.org/ebooks/54371', 'en', 1133), +(6609, 'The World I Live In', 'Keller, Helen', '2009-01-01', 104, 'https://www.gutenberg.org/ebooks/27683', 'en', 3749), +(6610, 'Under Six Flags: The Story of Texas', 'Davis, M. E. M.', '2019-08-21', 2, 'https://www.gutenberg.org/ebooks/60144', 'en', NULL), +(6611, 'Cully', 'Egan, Jack', '2008-10-02', 36, 'https://www.gutenberg.org/ebooks/26751', 'en', 26), +(6612, 'California Sketches, New Series', 'Fitzgerald, O. P. (Oscar Penn)', '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/12564', 'en', 3750), +(6613, 'On a Donkey\'s Hurricane Deck\r\nA Tempestous Voyage of Four Thousand and Ninety-Six Miles Across the American Continent on a Burro, in 340 Days and 2 Hours, Starting Without a Dollar and Earning My Way', 'Woodward, R. Pitcher (Robert Pitcher)', '2013-02-26', 17, 'https://www.gutenberg.org/ebooks/42214', 'en', 1181), +(6614, 'Baddeck, and That Sort of Thing', 'Warner, Charles Dudley', '2004-10-10', 31, 'https://www.gutenberg.org/ebooks/3133', 'en', 3751), +(6615, 'Young Knights of the Empire : Their Code, and Further Scout Yarns', 'Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron', '2004-10-01', 31, 'https://www.gutenberg.org/ebooks/6673', 'en', 3752), +(6616, 'Gypsies of the Air', 'Moyer, Bess', '2014-12-06', 21, 'https://www.gutenberg.org/ebooks/47554', 'en', 1246), +(6617, 'Chance and Luck', 'Proctor, Richard A. (Richard Anthony)', '2005-12-04', 54, 'https://www.gutenberg.org/ebooks/17224', 'en', 2473), +(6618, 'Eatin\' Crow; and The Best Man in Garotte', 'Harris, Frank', '2007-10-12', 12, 'https://www.gutenberg.org/ebooks/23011', 'en', 61), +(6619, 'Väsynyt ja muita kertomuksia', 'Kivijärvi, Erkki', '2016-03-13', 14, 'https://www.gutenberg.org/ebooks/51431', 'fi', 665), +(6620, 'Rhymes and Jingles', 'Dodge, Mary Mapes', '2014-08-03', 11, 'https://www.gutenberg.org/ebooks/46486', 'en', 859), +(6621, 'Studies in the Poetry of Italy, Part I. Roman', 'Miller, Frank Justus', '2011-02-05', 8, 'https://www.gutenberg.org/ebooks/35174', 'en', 3753), +(6622, 'Notes and Queries, Number 28, May 11, 1850', 'Various', '2004-10-10', 39, 'https://www.gutenberg.org/ebooks/13684', 'en', 105), +(6623, 'English Lands, Letters and Kings, vol. 4: The Later Georges to Victoria', 'Mitchell, Donald Grant', '2017-02-09', 6, 'https://www.gutenberg.org/ebooks/54143', 'en', 3222), +(6624, 'Benjamin Franklin\r\nA Picture of the Struggles of Our Infant Nation One Hundred Years Ago', 'Abbott, John S. C. (John Stevens Cabot)', '2009-11-05', 31, 'https://www.gutenberg.org/ebooks/30406', 'en', 3754), +(6625, 'English-Bisaya Grammar, in Twenty Eight Lessons', NULL, '2013-02-05', 165, 'https://www.gutenberg.org/ebooks/42026', 'en', 3755), +(6626, 'The Naturewoman', 'Sinclair, Upton', '2002-07-01', 24, 'https://www.gutenberg.org/ebooks/3301', 'en', 427), +(6627, 'The Crack of Doom', 'Cromie, Robert', '2008-09-08', 31, 'https://www.gutenberg.org/ebooks/26563', 'en', 26), +(6628, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night Volume 08 (of 17)', NULL, '2017-07-11', 40, 'https://www.gutenberg.org/ebooks/55091', 'en', 3756), +(6629, 'Vier Voordrachten over Theosofie', 'Besant, Annie', '2004-06-28', 27, 'https://www.gutenberg.org/ebooks/12756', 'nl', 746), +(6630, 'The Campaner Thal, and Other Writings', 'Jean Paul', '2011-04-24', 14, 'https://www.gutenberg.org/ebooks/35948', 'en', 3757), +(6631, 'The Lilac Sunbonnet: A Love Story', 'Crockett, S. R. (Samuel Rutherford)', '2004-01-01', 66, 'https://www.gutenberg.org/ebooks/4918', 'en', 48), +(6632, 'Village Folk-Tales of Ceylon, Volume 1 (of 3)', NULL, '2018-02-21', 32, 'https://www.gutenberg.org/ebooks/56614', 'en', 3758), +(6633, 'Voyage To Eternity', 'Marlowe, Stephen', '2010-05-12', 40, 'https://www.gutenberg.org/ebooks/32351', 'en', 26), +(6634, 'Ingeborg', 'Kellermann, Bernhard', '2012-09-15', 9, 'https://www.gutenberg.org/ebooks/40771', 'de', 253), +(6635, 'Calculus Made Easy\r\nBeing a very-simplest introduction to those beautiful methods which are generally called by the terrifying names of the Differential Calculus and the Integral Calculus', 'Thompson, Silvanus P. (Silvanus Phillips)', '2010-07-28', 4504, 'https://www.gutenberg.org/ebooks/33283', 'en', 3759), +(6636, 'An Episode under the Terror', 'Balzac, Honoré de', '1998-09-01', 45, 'https://www.gutenberg.org/ebooks/1456', 'en', 98), +(6637, '桃花扇', 'Kong, Shangren', '2008-01-10', 31, 'https://www.gutenberg.org/ebooks/24234', 'zh', 2312), +(6638, 'Apocolocyntosis', 'Seneca, Lucius Annaeus', '2003-11-01', 123, 'https://www.gutenberg.org/ebooks/10001', 'en', 3760), +(6639, 'Diary of Samuel Pepys — Volume 08: October/November/December 1660', 'Pepys, Samuel', '2004-11-29', 8, 'https://www.gutenberg.org/ebooks/4124', 'en', 738), +(6640, 'Älykkään ritarin Don Quijote de la Manchan elämänvaiheet', 'Cervantes Saavedra, Miguel de', '2014-03-24', 74, 'https://www.gutenberg.org/ebooks/45203', 'fi', 3761), +(6641, 'Judith of the Plains', 'Manning, Marie', '2005-04-06', 27, 'https://www.gutenberg.org/ebooks/15573', 'en', 3762), +(6642, 'The Lighthouse', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 77, 'https://www.gutenberg.org/ebooks/21746', 'en', 3763), +(6643, 'An Inquiry into the Nature of Peace and the Terms of Its Perpetuation', 'Veblen, Thorstein', '2007-02-27', 29, 'https://www.gutenberg.org/ebooks/20694', 'en', 3764), +(6644, 'The Book of Fair Women', NULL, '2016-10-25', 26, 'https://www.gutenberg.org/ebooks/53366', 'en', 3765), +(6645, 'The Countess Cosel: A Romance of History of the Times of Augustus the Strong', 'Kraszewski, Józef Ignacy', '2011-10-04', 11, 'https://www.gutenberg.org/ebooks/37623', 'en', 1676), +(6646, 'Die Sandwich-Inseln, oder das Inselreich von Hawaii.', 'Anrep-Elmpt, Reinhold', '2015-09-06', 17, 'https://www.gutenberg.org/ebooks/49896', 'de', 3636), +(6647, 'Scientific American Supplement, No. 508, September 26, 1885', 'Various', '2005-10-03', 15, 'https://www.gutenberg.org/ebooks/16792', 'en', 210), +(6648, 'Frenzied Liberty; The Myth of \"A Rich Man\'s War\"', 'Kahn, Otto H.', '2016-01-27', 9, 'https://www.gutenberg.org/ebooks/51055', 'en', 3766), +(6649, 'The Preparation of Plantation Rubber', 'Morgan, Sidney', '2011-03-07', 14, 'https://www.gutenberg.org/ebooks/35510', 'en', 3767), +(6650, 'The Pomp of the Lavilettes, Complete', 'Parker, Gilbert', '2004-11-16', 7, 'https://www.gutenberg.org/ebooks/6217', 'en', 1219), +(6651, 'A Voyage Round the World in the Years MDCCXL, I, II, III, IV', 'Anson, George Anson, Baron', '2014-10-16', 23, 'https://www.gutenberg.org/ebooks/47130', 'en', 3580), +(6652, 'Aus zwei Welttheilen. Erster Band.\r\nGesammelte Erzählungen', 'Gerstäcker, Friedrich', '2015-10-12', 15, 'https://www.gutenberg.org/ebooks/50187', 'de', 138), +(6653, 'Les Voyages de Gulliver', 'Swift, Jonathan', '2006-01-30', 28, 'https://www.gutenberg.org/ebooks/17640', 'fr', 270), +(6654, 'Gloria (primera parte)', 'Pérez Galdós, Benito', '2015-05-12', 11, 'https://www.gutenberg.org/ebooks/48944', 'es', 1813), +(6655, 'The Works of Lord Byron. Vol. 5\r\nPoetry', 'Byron, George Gordon Byron, Baron', '2007-11-14', 118, 'https://www.gutenberg.org/ebooks/23475', 'en', 1088), +(6656, 'The \'Patriotes\' of \'37\r\nA Chronicle of the Lower Canada Rebellion', 'DeCelles, Alfred D. (Alfred Duclos)', '2009-09-13', 15, 'https://www.gutenberg.org/ebooks/29973', 'en', 1469), +(6657, 'The Wonderful Story of Ravalette', 'Randolph, Paschal Beverly', '2013-03-31', 28, 'https://www.gutenberg.org/ebooks/42442', 'en', 2300), +(6658, 'Multatuli: Multatuli en Mr. J van Lennep; Multatuli en de Vrouwen', 'Deyssel, Lodewijk van', '2016-04-26', 1, 'https://www.gutenberg.org/ebooks/51869', 'nl', 3768), +(6659, 'Coniston — Volume 04', 'Churchill, Winston', '2004-10-17', 13, 'https://www.gutenberg.org/ebooks/3765', 'en', 1350), +(6660, 'Maxims for Revolutionists', 'Shaw, Bernard', '2008-07-22', 108, 'https://www.gutenberg.org/ebooks/26107', 'en', 3769), +(6661, 'Contes de Caliban', 'Bergerat, Emile', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12332', 'fr', 179), +(6662, 'Oh Little Town of Bethlehem', 'Redner, Lewis', '2006-06-17', 11, 'https://www.gutenberg.org/ebooks/18608', 'en', 583), +(6663, 'Lincoln & other poems', 'Markham, Edwin', '2017-04-10', 12, 'https://www.gutenberg.org/ebooks/54527', 'en', 3770), +(6664, 'The Plague', 'Keller, Teddy', '2009-09-22', 93, 'https://www.gutenberg.org/ebooks/30062', 'en', 179), +(6665, 'The Life of Isaac Ingalls Stevens, Volume 2 (of 2)', 'Stevens, Hazard', '2013-08-31', 21, 'https://www.gutenberg.org/ebooks/43590', 'en', 3771), +(6666, 'De Eenzame; Een lustige broeder', 'Boonen, Jaak', '2015-02-06', 17, 'https://www.gutenberg.org/ebooks/48178', 'nl', 3720), +(6667, 'The Contemporary Review, Volume 36, December 1879', 'Various', '2012-07-25', 13, 'https://www.gutenberg.org/ebooks/40315', 'en', 380), +(6668, 'The Pupil', 'James, Henry', '1997-09-01', 82, 'https://www.gutenberg.org/ebooks/1032', 'en', 61), +(6669, 'The Gentle Art of Making Enemies', 'Whistler, James McNeill', '2008-02-19', 89, 'https://www.gutenberg.org/ebooks/24650', 'en', 3772), +(6670, 'The Outdoor Girls of Deepdale; Or, camping and tramping for fun and health', 'Hope, Laura Lee', '2003-12-01', 35, 'https://www.gutenberg.org/ebooks/10465', 'en', 62), +(6671, 'The Story of Noah\'s Ark', 'Smith, E. Boyd (Elmer Boyd)', '2017-12-31', 26, 'https://www.gutenberg.org/ebooks/56270', 'en', 625), +(6672, 'The American Missionary — Volume 52, No. 01, March, 1898', 'Various', '2008-06-14', 6, 'https://www.gutenberg.org/ebooks/25782', 'en', 395), +(6673, 'Forsyte\'s Retreat', 'Marks, Winston K. (Winston Kinney)', '2010-06-07', 42, 'https://www.gutenberg.org/ebooks/32735', 'en', 179), +(6674, 'The Field Book: or, Sports and pastimes of the United Kingdom\r\ncompiled from the best authorities, ancient and modern', 'Maxwell, W. H. (William Hamilton)', '2016-12-09', 11, 'https://www.gutenberg.org/ebooks/53702', 'en', 3773), +(6675, 'The Emperor — Volume 10', 'Ebers, Georg', '2004-04-01', 31, 'https://www.gutenberg.org/ebooks/5492', 'en', 803), +(6676, 'Maantieteellisiä kuvaelmia erityisistä maista ja kansoista\nKirja Kouluille ja Kodeille', 'Various', '2011-08-29', 15, 'https://www.gutenberg.org/ebooks/37247', 'fi', 2832), +(6677, 'In His Steps', 'Sheldon, Charles M.', '2003-10-01', 184, 'https://www.gutenberg.org/ebooks/4540', 'en', 55), +(6678, 'Ruth Fielding in the Red Cross; Or, Doing Her Best for Uncle Sam', 'Emerson, Alice B.', '2011-06-12', 21, 'https://www.gutenberg.org/ebooks/36395', 'en', 3706), +(6679, 'The Boy Scouts Along the Susquehanna; or, The Silver Fox Patrol Caught in a Flood', 'Carter, Herbert, active 1909-1917', '2014-05-17', 4, 'https://www.gutenberg.org/ebooks/45667', 'en', 3774), +(6680, 'An Easy Introduction to Spanish Conversation\nContaining all that is necessary to make a rapid progress in it', 'Velázquez de la Cadena, Mariano', '2019-04-09', 79, 'https://www.gutenberg.org/ebooks/59238', 'en', 3775), +(6681, 'Sea and Shore\nA Sequel to \"Miriam\'s Memoirs\"', 'Warfield, Catherine A. (Catherine Ann)', '2005-02-21', 3, 'https://www.gutenberg.org/ebooks/15117', 'en', 61), +(6682, 'The Tale of Betsy Butterfly\nTuck-Me-In Tales', 'Bailey, Arthur Scott', '2007-05-04', 63, 'https://www.gutenberg.org/ebooks/21322', 'en', 625), +(6683, 'O desastre de Lisboa em 1755: poesia', 'Fonseca, Augusto de Oliveira Cardoso', '2008-01-31', 15, 'https://www.gutenberg.org/ebooks/24462', 'pt', 1638), +(6684, '\"De Bello Gallico\" and Other Commentaries', 'Caesar, Julius', '2004-01-01', 632, 'https://www.gutenberg.org/ebooks/10657', 'en', 3776), +(6685, 'Il ferro', 'D\'Annunzio, Gabriele', '2011-10-25', 14, 'https://www.gutenberg.org/ebooks/37849', 'it', 407), +(6686, 'Seeing the West: Suggestions for the Westbound Traveller', 'Dumbell, K. E. M. (Kate Ethel Mary)', '2018-05-20', 6, 'https://www.gutenberg.org/ebooks/57190', 'en', 497), +(6687, 'Joe Miller\'s Jests, or The Wits Vade-Mecum', NULL, '2012-07-02', 18, 'https://www.gutenberg.org/ebooks/40127', 'en', 564), +(6688, 'Gargantua and Pantagruel', 'Rabelais, François', '2004-08-08', 592, 'https://www.gutenberg.org/ebooks/1200', 'en', 3777), +(6689, 'The Geologic Story of Glacier National Park', 'Dyson, James L. (James Lindsay)', '2019-06-30', 55, 'https://www.gutenberg.org/ebooks/59836', 'en', 3778), +(6690, 'The Planters of Colonial Virginia', 'Wertenbaker, Thomas Jefferson', '2010-05-24', 25, 'https://www.gutenberg.org/ebooks/32507', 'en', 3779), +(6691, 'Discovery of the Yosemite, and the Indian War of 1851, Which Led to That Event', 'Bunnell, Lafayette Houghton', '2017-11-24', 10, 'https://www.gutenberg.org/ebooks/56042', 'en', 3780), +(6692, 'Human Genome Project, Build 34, Chromosome Number 11', 'Human Genome Project', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11785', 'en', 1385), +(6693, 'John Inglesant: A Romance (Volume 1 of 2)', 'Shorthouse, J. H. (Joseph Henry)', '2014-01-04', 12, 'https://www.gutenberg.org/ebooks/44587', 'en', 1397), +(6694, 'Cours familier de Littérature - Volume 08', 'Lamartine, Alphonse de', '2011-08-14', 12, 'https://www.gutenberg.org/ebooks/37075', 'fr', 1765), +(6695, 'The Works of Robert G. Ingersoll, Vol. 01 (of 12)\r\nDresden Edition—Lectures', 'Ingersoll, Robert Green', '2012-02-09', 44, 'https://www.gutenberg.org/ebooks/38801', 'en', 1191), +(6696, 'Goat Alley: A Tragedy of Negro Life', 'Culbertson, Ernest Howard', '2016-11-14', 17, 'https://www.gutenberg.org/ebooks/53530', 'en', 3781), +(6697, 'The Great Round World and What Is Going On In It, Vol. 1, No. 15, February 18, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-11', 30, 'https://www.gutenberg.org/ebooks/15325', 'en', 1), +(6698, 'A College Girl', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 23, 'https://www.gutenberg.org/ebooks/21110', 'en', 2024), +(6699, 'Jeannot et Colin', 'Voltaire', '2003-12-01', 45, 'https://www.gutenberg.org/ebooks/4772', 'fr', 642), +(6700, 'Shadow, the Mysterious Detective', 'Howard, Police Captain', '2014-04-22', 28, 'https://www.gutenberg.org/ebooks/45455', 'en', 336), +(6701, 'Ontology, or the Theory of Being', 'Coffey, P. (Peter)', '2011-03-30', 93, 'https://www.gutenberg.org/ebooks/35722', 'en', 3782), +(6702, 'The Ontario High School Reader', 'Marty, Aletta E.', '2007-09-28', 31, 'https://www.gutenberg.org/ebooks/22795', 'en', 1019), +(6703, 'End as a Hero', 'Laumer, Keith', '2016-02-22', 143, 'https://www.gutenberg.org/ebooks/51267', 'en', 424), +(6704, 'A Journey to the Interior of the Earth', 'Verne, Jules', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8983', 'en', 2399), +(6705, 'Yorkshire Ditties, First Series\nTo Which Is Added The Cream Of Wit And Humour From His Popular Writings', 'Hartley, John', '2006-01-06', 33, 'https://www.gutenberg.org/ebooks/17472', 'en', 3783), +(6706, 'Love at Second Sight', 'Leverson, Ada', '2006-02-01', 20, 'https://www.gutenberg.org/ebooks/9851', 'en', 109), +(6707, 'Shining Ferry', 'Quiller-Couch, Arthur', '2007-11-28', 30, 'https://www.gutenberg.org/ebooks/23647', 'en', 166), +(6708, 'The Englishman and Other Poems', 'Wilcox, Ella Wheeler', '2004-07-01', 9, 'https://www.gutenberg.org/ebooks/6025', 'en', 8), +(6709, 'Historical Parallels, vol. 1 (of 3)', 'Malkin, Arthur Thomas', '2014-11-06', 10, 'https://www.gutenberg.org/ebooks/47302', 'en', 1396), +(6710, 'Brite and Fair', 'Shute, Henry A. (Henry Augustus)', '2008-08-17', 32, 'https://www.gutenberg.org/ebooks/26335', 'en', 1566), +(6711, 'Between the Dark and the Daylight', 'Howells, William Dean', '2004-04-01', 72, 'https://www.gutenberg.org/ebooks/12100', 'en', 179), +(6712, 'Hanna: Gebet- und Andachtsbuch für israelitische Frauen und Mädchen', 'Freund, Jacob', '2013-05-08', 3, 'https://www.gutenberg.org/ebooks/42670', 'de', 3784), +(6713, 'Historia de las Indias (vol. 1 de 5)', 'Casas, Bartolomé de las', '2015-06-27', 122, 'https://www.gutenberg.org/ebooks/49298', 'es', 3785), +(6714, 'Psychology: A Study Of Mental Life', 'Woodworth, Robert Sessions', '2010-02-25', 33, 'https://www.gutenberg.org/ebooks/31382', 'en', 1151), +(6715, 'Memoirs of Napoleon Bonaparte — Volume 07', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 13, 'https://www.gutenberg.org/ebooks/3557', 'en', 3786), +(6716, 'Five Stages of Greek Religion', 'Murray, Gilbert', '2009-10-13', 56, 'https://www.gutenberg.org/ebooks/30250', 'en', 3787), +(6717, 'The Movements and Habits of Climbing Plants', 'Darwin, Charles', '2001-01-01', 23, 'https://www.gutenberg.org/ebooks/2485', 'en', 3788), +(6718, 'Der Engländer', 'Lenz, Jakob Michael Reinhold', '2004-11-01', 20, 'https://www.gutenberg.org/ebooks/6819', 'de', 402), +(6719, 'Nights with the Gods', 'Reich, Emil', '2017-05-13', 6, 'https://www.gutenberg.org/ebooks/54715', 'en', 3789), +(6720, 'Harper\'s Young People, November 1, 1881\nAn Illustrated Weekly', 'Various', '2015-09-03', 6, 'https://www.gutenberg.org/ebooks/49862', 'en', 479), +(6721, 'Memoirs of the Court of George IV. 1820-1830 (Vol 1)\nFrom the Original Family Documents', 'Buckingham and Chandos, Richard Plantagenet Temple Nugent Brydges Chandos Grenville, Duke of', '2007-09-09', 34, 'https://www.gutenberg.org/ebooks/22553', 'en', 3790), +(6722, 'All on the Irish Shore: Irish Sketches', 'Somerville, E. Oe. (Edith Oenone)', '2005-09-27', 14, 'https://www.gutenberg.org/ebooks/16766', 'en', 440), +(6723, 'Bezette stad', 'Ostaijen, Paul van', '2010-04-14', 31, 'https://www.gutenberg.org/ebooks/31978', 'nl', 3791), +(6724, 'Studies in the Scriptures, Volume 7: The Finished Mystery', 'Russell, C. T. (Charles Taze)', '2014-06-17', 78, 'https://www.gutenberg.org/ebooks/46016', 'en', 3792), +(6725, '說苑, Volume 17-20', 'Liu, Xiang', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7331', 'zh', 1682), +(6726, 'Hints to Husbands: A Revelation of the Man-Midwife\'s Mysteries', 'Morant, George', '2010-11-25', 13, 'https://www.gutenberg.org/ebooks/34436', 'en', 3793), +(6727, 'Molière - Œuvres complètes, Tome 3', 'Molière', '2015-10-10', 96, 'https://www.gutenberg.org/ebooks/50173', 'fr', 3323), +(6728, 'The Perfect Gentleman', 'Bergengren, Ralph', '2007-11-15', 42, 'https://www.gutenberg.org/ebooks/23481', 'en', 20), +(6729, 'Alice in Blunderland: An Iridescent Dream', 'Bangs, John Kendrick', '2009-02-14', 42, 'https://www.gutenberg.org/ebooks/28069', 'en', 3794), +(6730, 'Join Our Gang?', 'Lanier, Sterling E.', '2009-09-14', 41, 'https://www.gutenberg.org/ebooks/29987', 'en', 26), +(6731, 'Shakespeare\'s Bones\r\nThe Proposal to Disinter Them, Considered in Relation to Their Possible Bearing on His Portraiture: Illustrated by Instances of Visits of the Living to the Dead', 'Ingleby, C. M. (Clement Mansfield)', '2005-06-01', 16, 'https://www.gutenberg.org/ebooks/8379', 'en', 3795), +(6732, 'The Reign of Law; a tale of the Kentucky hemp fields', 'Allen, James Lane', '2003-02-01', 32, 'https://www.gutenberg.org/ebooks/3791', 'en', 3796), +(6733, 'Suomen kansan Arwoituksia: ynnä 189 Wiron arwoituksen kanssa', 'Lönnrot, Elias', '2010-01-31', 16, 'https://www.gutenberg.org/ebooks/31144', 'fi', 3797), +(6734, 'Kansalaissota Ranskassa', 'Marx, Karl', '2017-08-21', 5, 'https://www.gutenberg.org/ebooks/55401', 'fi', 3798), +(6735, 'Anna Karenina', 'Tolstoy, Leo, graf', '2004-08-18', 120, 'https://www.gutenberg.org/ebooks/13214', 'nl', 434), +(6736, 'The Puzzle of Dickens\'s Last Plot', 'Lang, Andrew', '1996-12-01', 111, 'https://www.gutenberg.org/ebooks/738', 'en', 3799), +(6737, 'An Explorer\'s Adventures in Tibet', 'Landor, Arnold Henry Savage', '2008-10-24', 34, 'https://www.gutenberg.org/ebooks/27021', 'en', 3800), +(6738, 'The History of John Bull', 'Arbuthnot, John', '2001-05-01', 26, 'https://www.gutenberg.org/ebooks/2643', 'en', 3801), +(6739, 'The Camera Fiend', 'Hornung, E. W. (Ernest William)', '2009-09-26', 55, 'https://www.gutenberg.org/ebooks/30096', 'en', 128), +(6740, 'The Girl Scouts at Sea Crest; Or, the Wig Wag Rescue', 'Garis, Lilian', '2009-05-17', 27, 'https://www.gutenberg.org/ebooks/28855', 'en', 2345), +(6741, 'Kansalaisemme', 'Ahrenberg, Jacob', '2013-08-26', 5, 'https://www.gutenberg.org/ebooks/43564', 'fi', 61), +(6742, 'Stories of London', 'Hoskyn, E. L. (Elizabeth Louisa)', '2010-09-03', 15, 'https://www.gutenberg.org/ebooks/33613', 'en', 3802), +(6743, '\"Stella Australis\": Poems, verses and prose fragments', 'Coungeau, E.‏ (Emily)', '2018-06-19', 8, 'https://www.gutenberg.org/ebooks/57356', 'en', 2474), +(6744, 'Practice Book, Leland Powers School', 'Powers, Leland Todd', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/10491', 'en', 1725), +(6745, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 545, May 5, 1832', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11543', 'en', 133), +(6746, 'The Legend of Kupirri, or, The Red Kangaroo\r\nAn Aboriginal Tradition of the Port Lincoln Tribe', 'Cawthorne, W. A. (William Alexander)', '2018-01-01', 11, 'https://www.gutenberg.org/ebooks/56284', 'en', 3803), +(6747, 'This Crowded Earth', 'Bloch, Robert', '2008-06-13', 137, 'https://www.gutenberg.org/ebooks/25776', 'en', 2797), +(6748, 'Illustrated Catalogue of Locomotives; Baldwin Locomotive Works', 'Baldwin Locomotive Works', '2012-04-01', 28, 'https://www.gutenberg.org/ebooks/39329', 'en', 3804), +(6749, 'Over the Ocean; or, Sights and Scenes in Foreign Lands', 'Guild, Curtis', '2012-10-30', 16, 'https://www.gutenberg.org/ebooks/41233', 'en', 1408), +(6750, 'The Storm-Cloud of the Nineteenth Century\r\nTwo Lectures delivered at the London Institution, February 4th and 11th, 1884', 'Ruskin, John', '2006-12-28', 45, 'https://www.gutenberg.org/ebooks/20204', 'en', 3805), +(6751, 'The Colloquies of Erasmus, Volume I.', 'Erasmus, Desiderius', '2004-11-12', 78, 'https://www.gutenberg.org/ebooks/14031', 'en', 3806), +(6752, 'The Life of George Cruikshank in Two Epochs, Vol. 1. (of 2)', 'Jerrold, Blanchard', '2014-01-23', 21, 'https://www.gutenberg.org/ebooks/44741', 'en', 3807), +(6753, 'The Sisters — Complete', 'Ebers, Georg', '2004-11-15', 30, 'https://www.gutenberg.org/ebooks/5466', 'en', 803), +(6754, 'A Diplomatic Woman', 'Mee, Huan', '2011-06-09', 8, 'https://www.gutenberg.org/ebooks/36361', 'en', 1319), +(6755, 'Blackwood\'s Edinburgh Magazine, Volume 66, No. 408, January 1849', 'Various', '2014-05-18', 12, 'https://www.gutenberg.org/ebooks/45693', 'en', 274), +(6756, 'Hephaestus, Persephone at Enna, and Sappho in Leucadia', 'Stringer, Arthur', '2016-07-23', 19, 'https://www.gutenberg.org/ebooks/52624', 'en', 28), +(6757, 'Making a Rock Garden', 'Adams, H. S. (Henry Sherman)', '2008-02-02', 36, 'https://www.gutenberg.org/ebooks/24496', 'en', 3808), +(6758, 'Warwick, the Kingmaker', 'Oman, Charles', '2018-05-14', 52, 'https://www.gutenberg.org/ebooks/57164', 'en', 3809), +(6759, 'Viaje a los Estados Unidos, Tomo III', 'Prieto, Guillermo', '2019-02-18', 14, 'https://www.gutenberg.org/ebooks/58910', 'es', 1110), +(6760, 'The Speech of Monkeys', 'Garner, R. L. (Richard Lynch)', '2010-08-13', 21, 'https://www.gutenberg.org/ebooks/33421', 'en', 3810), +(6761, 'The Red Room', 'Le Queux, William', '2012-10-09', 8, 'https://www.gutenberg.org/ebooks/41001', 'en', 1335), +(6762, 'Occasional Papers\r\nSelected from the Guardian, the Times, and the Saturday Review, 1846-1890, Vol. 2', 'Church, R. W. (Richard William)', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11771', 'en', 2566), +(6763, 'The Pioneer Steamship Savannah: A Study for a Scale Model\nUnited States National Museum Bulletin 228, 1961, pages 61-80', 'Chapelle, Howard Irving', '2008-05-20', 35, 'https://www.gutenberg.org/ebooks/25544', 'en', 3811), +(6764, 'The Entail; or, The Lairds of Grippy', 'Galt, John', '2014-01-03', 23, 'https://www.gutenberg.org/ebooks/44573', 'en', 2389), +(6765, 'In Strange Company: A Story of Chili and the Southern Seas', 'Boothby, Guy', '2011-08-14', 22, 'https://www.gutenberg.org/ebooks/37081', 'en', 61), +(6766, 'Index of the PG Works of Voltaire in English', 'Voltaire', '2018-09-23', 20, 'https://www.gutenberg.org/ebooks/57958', 'en', 198), +(6767, 'What Every Woman Knows', 'Barrie, J. M. (James Matthew)', '2004-05-01', 50, 'https://www.gutenberg.org/ebooks/5654', 'en', 2455), +(6768, 'Five Children and It', 'Nesbit, E. (Edith)', '2006-12-07', 24, 'https://www.gutenberg.org/ebooks/20036', 'en', 2024), +(6769, 'Varied Types', 'Chesterton, G. K. (Gilbert Keith)', '2004-11-29', 70, 'https://www.gutenberg.org/ebooks/14203', 'en', 122), +(6770, 'Daniel Boone', 'Thwaites, Reuben Gold', '2012-06-05', 22, 'https://www.gutenberg.org/ebooks/39927', 'en', 3812), +(6771, 'Harper\'s Round Table, January 14, 1896', 'Various', '2016-06-26', 10, 'https://www.gutenberg.org/ebooks/52416', 'en', 668), +(6772, 'Memorial Day, and Other Verse (Original and Translated)', 'Reed, Helen Leah', '2011-05-18', 10, 'https://www.gutenberg.org/ebooks/36153', 'en', 8), +(6773, 'Zone Policeman 88; a close range study of the Panama canal and its workers', 'Franck, Harry Alverson', '2003-12-01', 31, 'https://www.gutenberg.org/ebooks/4786', 'en', 1232), +(6774, 'Histoire de Flandre (T. 2/4)', 'Kervyn de Lettenhove, Joseph Marie Bruno Constantin, Baron', '2014-07-08', 12, 'https://www.gutenberg.org/ebooks/46224', 'fr', 3813), +(6775, 'Adventures of Huckleberry Finn, Chapters 16 to 20', 'Twain, Mark', '2004-06-27', 50, 'https://www.gutenberg.org/ebooks/7103', 'en', 3814), +(6776, 'Ideen zu einer Physiognomik der Gewächse', 'Humboldt, Alexander von', '2007-09-24', 38, 'https://www.gutenberg.org/ebooks/22761', 'de', 3815), +(6777, 'Raiders of the Universes', 'Wandrei, Donald A.', '2009-07-12', 54, 'https://www.gutenberg.org/ebooks/29389', 'en', 26), +(6778, 'The Wheels of Chance', 'Wells, H. G. (Herbert George)', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/8977', 'en', 240), +(6779, 'The Law and Medical Men', 'Rogers, R. Vashon (Robert Vashon)', '2016-02-24', 5, 'https://www.gutenberg.org/ebooks/51293', 'en', 3816), +(6780, 'Foes', 'Johnston, Mary', '2005-08-20', 23, 'https://www.gutenberg.org/ebooks/16554', 'en', 61), +(6781, 'Lukemisia lapsille 8', 'Topelius, Zacharias', '2006-01-09', 6, 'https://www.gutenberg.org/ebooks/17486', 'fi', 1007), +(6782, 'Cantos de Vida y Esperanza, Los Cisnes y otros poemas.\nObras Completas Vol. VII', 'Darío, Rubén', '2015-10-30', 35, 'https://www.gutenberg.org/ebooks/50341', 'es', 3817), +(6783, 'Middle American Frogs of the Hyla microcephala Group', 'Fouquette, M. J.', '2010-12-09', 6, 'https://www.gutenberg.org/ebooks/34604', 'en', 3818), +(6784, 'Eine Reise nach Freiland', 'Hertzka, Theodor', '2017-09-26', 8, 'https://www.gutenberg.org/ebooks/55633', 'de', 3819), +(6785, 'Sott\'acqua: racconto', 'Rovetta, Gerolamo', '2013-05-10', 3, 'https://www.gutenberg.org/ebooks/42684', 'it', 1544), +(6786, 'Die sechs Mündungen: Novellen', 'Edschmid, Kasimir', '2010-02-23', 24, 'https://www.gutenberg.org/ebooks/31376', 'de', 549), +(6787, 'Der Weinhüter', 'Heyse, Paul', '2005-10-01', 26, 'https://www.gutenberg.org/ebooks/9099', 'de', 16), +(6788, 'The Crusade of the Excelsior', 'Harte, Bret', '2006-05-17', 12, 'https://www.gutenberg.org/ebooks/2471', 'en', 650), +(6789, 'Tales of My Time, Vol. 1 (of 3)\r\nWho Is She?', 'Scargill, William Pitt', '2013-09-17', 29, 'https://www.gutenberg.org/ebooks/43756', 'en', 45), +(6790, 'The Atlantic Monthly, Volume 11, No. 67, May, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-07-26', 22, 'https://www.gutenberg.org/ebooks/13026', 'en', 1227), +(6791, 'The Heart of Nature; or, The Quest for Natural Beauty', 'Younghusband, Francis Edward, Sir', '2008-11-09', 12, 'https://www.gutenberg.org/ebooks/27213', 'en', 3820), +(6792, 'Poitiers', 'Belloc, Hilaire', '2010-05-01', 28, 'https://www.gutenberg.org/ebooks/32197', 'en', 3821), +(6793, 'Notes and Queries, Vol. V, Number 133, May 15, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-11-24', 13, 'https://www.gutenberg.org/ebooks/41465', 'en', 105), +(6794, 'Friendly Fairies', 'Gruelle, Johnny', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11315', 'en', 3822), +(6795, 'Aron prinsessa', 'Marlitt, E. (Eugenie)', '2008-04-21', 11, 'https://www.gutenberg.org/ebooks/25120', 'fi', 3823), +(6796, 'A History of Economic Doctrines\r\nfrom the time of the physiocrats to the present day', 'Gide, Charles', '2018-07-13', 24, 'https://www.gutenberg.org/ebooks/57500', 'en', 3824), +(6797, 'Marie: An Episode in the Life of the Late Allan Quatermain', 'Haggard, H. Rider (Henry Rider)', '1999-03-01', 108, 'https://www.gutenberg.org/ebooks/1690', 'en', 3825), +(6798, 'The Ranidae: How to breed, feed and raise the edible frog', 'Unknown', '2010-07-01', 5, 'https://www.gutenberg.org/ebooks/33045', 'en', 3826), +(6799, 'Life of Joseph Brant—Thayendanegea (Vol. I.)\r\nIncluding the Border Wars of the American Revolution and Sketches of the Indian Campaigns of Generals Harmar, St. Clair, and Wayne; And Other Matters Connected with the Indian Relations of the United States and Great Britain, from the Peace of 1783 to the Indian Peace of 1795', 'Stone, William L. (William Leete)', '2016-05-15', 17, 'https://www.gutenberg.org/ebooks/52072', 'en', 3827), +(6800, 'The Pirate', 'Marryat, Frederick', '2007-05-22', 35, 'https://www.gutenberg.org/ebooks/21580', 'en', 3828), +(6801, 'Punch, or the London Charivari, Vol. 93., October 1, 1887', 'Various', '2011-06-27', 2, 'https://www.gutenberg.org/ebooks/36537', 'en', 134), +(6802, 'The Duel', 'Kuprin, A. I. (Aleksandr Ivanovich)', '2013-11-06', 71, 'https://www.gutenberg.org/ebooks/44117', 'en', 3829), +(6803, 'The Invisible Man: A Grotesque Romance', 'Wells, H. G. (Herbert George)', '2004-03-01', 1200, 'https://www.gutenberg.org/ebooks/5230', 'en', 3487), +(6804, 'Letters of Edward FitzGerald, in Two Volumes. Vol. 1', 'FitzGerald, Edward', '2007-01-27', 27, 'https://www.gutenberg.org/ebooks/20452', 'en', 3830), +(6805, 'A Christmas Garland', 'Beerbohm, Max, Sir', '2005-01-11', 60, 'https://www.gutenberg.org/ebooks/14667', 'en', 2529), +(6806, 'The Romance of the Canoness: A Life-History', 'Heyse, Paul', '2010-10-22', 10, 'https://www.gutenberg.org/ebooks/33879', 'en', 803), +(6807, 'The Descent of the Branch into the Waters of Sorrow, to Bring up the Election of Grace\r\nBeing the Substance of a Sermon, Preached by J. Church, of the Surrey Tabernacle', 'Church, J. (John)', '2018-12-26', 2, 'https://www.gutenberg.org/ebooks/58548', 'en', 2386), +(6808, 'Fanny and the Servant Problem', 'Jerome, Jerome K. (Jerome Klapka)', '2001-09-01', 30, 'https://www.gutenberg.org/ebooks/2829', 'en', 1088), +(6809, 'Le mariage de Gabrielle', 'Lesueur, Daniel', '2015-12-20', 8, 'https://www.gutenberg.org/ebooks/50725', 'fr', 298), +(6810, '\'Een vaste burg is onze God\'\r\nde kerkhervorming herdacht op haar vierde eeuwfeest, 1517—31 October—1917', 'Heer, Betsy de', '2010-11-09', 12, 'https://www.gutenberg.org/ebooks/34260', 'nl', 1073), +(6811, 'Tom Swift and His Air Glider; Or, Seeking the Platinum Treasure', 'Appleton, Victor', '1997-06-01', 88, 'https://www.gutenberg.org/ebooks/952', 'en', 1456), +(6812, 'Faith Gartney\'s Girlhood', 'Whitney, A. D. T. (Adeline Dutton Train)', '2006-07-22', 21, 'https://www.gutenberg.org/ebooks/18896', 'en', 3831), +(6813, 'Mr. Punch\'s Dramatic Sequels', 'Hankin, St. John', '2014-12-27', 10, 'https://www.gutenberg.org/ebooks/47792', 'en', 1088), +(6814, 'Les femmes et les livres', 'Cim, Albert', '2014-08-20', 15, 'https://www.gutenberg.org/ebooks/46640', 'fr', 3832), +(6815, 'The Yotsuya Kwaidan or O\'Iwa Inari\nTales of the Tokugawa, Volume 1 (of 2)', 'De Benneville, James S. (James Seguin)', '2006-11-28', 37, 'https://www.gutenberg.org/ebooks/19944', 'en', 1738), +(6816, 'Widger\'s Quotes and Images from The Ink Stain by René Bazin\r\nThe French Immortals: Quotes and Images', 'Bazin, René', '2009-07-13', 12, 'https://www.gutenberg.org/ebooks/7567', 'en', 2391), +(6817, 'The Naval History of the United States. Volume 1', 'Abbot, Willis J. (Willis John)', '2007-08-13', 48, 'https://www.gutenberg.org/ebooks/22305', 'en', 3833), +(6818, 'Judgments of the Court of Appeal of New Zealand on Proceedings to Review Aspects of the Report of the Royal Commission of Inquiry into the Mount Erebus Aircraft Disaster\nC.A. 95/81', 'New Zealand. Court of Appeal', '2005-06-25', 29, 'https://www.gutenberg.org/ebooks/16130', 'en', 3834), +(6819, 'A Miscellany of Men', 'Chesterton, G. K. (Gilbert Keith)', '1999-12-01', 67, 'https://www.gutenberg.org/ebooks/2015', 'en', 3835), +(6820, 'Das Lämmchen', 'Schmid, Christoph von', '2013-07-28', 15, 'https://www.gutenberg.org/ebooks/43332', 'de', 3836), +(6821, 'Pyhä viha: Romaani', 'Kianto, Ilmari', '2017-03-18', 2, 'https://www.gutenberg.org/ebooks/54385', 'fi', 175), +(6822, 'Henry Hudson: A Brief Statement of His Aims and His Achievements', 'Janvier, Thomas A. (Thomas Allibone)', '2004-09-12', 12, 'https://www.gutenberg.org/ebooks/13442', 'en', 3837), +(6823, 'Daisy Dare, and Baby Power\nPoems', 'Jeffrey, Rosa Vertner', '2008-12-31', 14, 'https://www.gutenberg.org/ebooks/27677', 'en', 8), +(6824, 'The Shadow of the Rope', 'Hornung, E. W. (Ernest William)', '2004-06-01', 82, 'https://www.gutenberg.org/ebooks/12590', 'en', 3511), +(6825, 'At Close Range', 'Smith, Francis Hopkinson', '2017-08-04', 17, 'https://www.gutenberg.org/ebooks/55257', 'en', 1028), +(6826, 'Kyläkertomuksia', 'Garborg, Arne', '2006-09-04', 16, 'https://www.gutenberg.org/ebooks/19178', 'fi', 61), +(6827, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 1 (of 8)\nPoems Lyrical and Narrative', 'Yeats, W. B. (William Butler)', '2015-08-05', 162, 'https://www.gutenberg.org/ebooks/49608', 'en', 1728), +(6828, 'The Garden of Dreams', 'Cawein, Madison Julius', '2010-03-20', 5, 'https://www.gutenberg.org/ebooks/31712', 'en', 178), +(6829, 'Wireless Transmission of Photographs\nSecond Edition, Revised and Enlarged 1919', 'Martin, Marcus J.', '2010-10-09', 15, 'https://www.gutenberg.org/ebooks/34052', 'en', 3838), +(6830, 'From the Caves and Jungles of Hindostan', 'Blavatsky, H. P. (Helena Petrovna)', '2004-10-01', 99, 'https://www.gutenberg.org/ebooks/6687', 'en', 1975), +(6831, 'Kalulu: prinssi, kuningas ja orja. Kertomus Keski-Afrikasta', 'Stanley, Henry M. (Henry Morton)', '2015-11-20', 22, 'https://www.gutenberg.org/ebooks/50517', 'fi', 3839), +(6832, 'Rímur af Grámanni í Garðshorni', 'Jón Hjaltason', '2007-07-24', 9, 'https://www.gutenberg.org/ebooks/22137', 'is', 8), +(6833, 'Memoiren einer Sozialistin\nKampfjahre', 'Braun, Lily', '2005-07-15', 19, 'https://www.gutenberg.org/ebooks/16302', 'de', 3840), +(6834, 'Inventors & Inventions', 'Robinson, Henry', '2014-08-01', 31, 'https://www.gutenberg.org/ebooks/46472', 'en', 1739), +(6835, 'The West Indies', 'Henderson, John', '2017-10-31', 25, 'https://www.gutenberg.org/ebooks/55859', 'en', 3841), +(6836, 'Sergeant Silk, the Prairie Scout', 'Leighton, Robert', '2011-02-05', 9, 'https://www.gutenberg.org/ebooks/35180', 'en', 3842), +(6837, 'Godolphin, Volume 6.', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 18, 'https://www.gutenberg.org/ebooks/7755', 'en', 45), +(6838, 'The Happy Family', 'Bower, B. M.', '2004-10-07', 17, 'https://www.gutenberg.org/ebooks/13670', 'en', 774), +(6839, 'Essays in Natural History and Agriculture', 'Garnett, Thomas', '2006-05-02', 19, 'https://www.gutenberg.org/ebooks/18298', 'en', 3843), +(6840, 'Love of Brothers', 'Tynan, Katharine', '2008-12-07', 15, 'https://www.gutenberg.org/ebooks/27445', 'en', 3844); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(6841, 'Soldiers Three - Part 2', 'Kipling, Rudyard', '2000-06-01', 34, 'https://www.gutenberg.org/ebooks/2227', 'en', 409), +(6842, '\"Tex\"', 'Mulford, Clarence Edward', '2013-07-06', 55, 'https://www.gutenberg.org/ebooks/43100', 'en', 315), +(6843, 'Books Condemned to be Burnt', 'Farrer, James Anson', '2010-03-06', 36, 'https://www.gutenberg.org/ebooks/31520', 'en', 3845), +(6844, 'How to Behave: A Pocket Manual of Republican Etiquette, and Guide to Correct Personal Habits\r\nEmbracing an Exposition of the Principles of Good Manners; Useful Hints on the Care of the Person, Eating, Drinking, Exercise, Habits, Dress, Self-culture, and Behavior at Home; the Etiquette of Salutations, Introductions, Receptions, Visits, Dinners, Evening Parties, Conversation, Letters, Presents, Weddings, Funerals, the Street, the Church, Places of Amusement, Traveling, Etc., with Illustrative Anecdotes, a Chapter on Love and Courtship, and Rules of Order for Debating Societies', 'Wells, Samuel R. (Samuel Roberts)', '2008-09-12', 40, 'https://www.gutenberg.org/ebooks/26597', 'en', 3846), +(6845, 'American Thumb-prints: Mettle of Our Men and Women', 'Stephens, Kate', '2017-07-07', 17, 'https://www.gutenberg.org/ebooks/55065', 'en', 1650), +(6846, 'The Case of Jennie Brice', 'Rinehart, Mary Roberts', '2004-02-01', 80, 'https://www.gutenberg.org/ebooks/11127', 'en', 1335), +(6847, 'Nabuco', 'Fontana, Ferdinando', '2008-05-03', 8, 'https://www.gutenberg.org/ebooks/25312', 'it', 407), +(6848, 'To Geyserland\r\nUnion Pacific-Oregon Short Line Railroads to the Yellowstone National Park', 'Colborn, Edward F.', '2012-12-19', 14, 'https://www.gutenberg.org/ebooks/41657', 'en', 2414), +(6849, 'Strictures on Nullification', 'Everett, Alexander Hill', '2012-09-17', 14, 'https://www.gutenberg.org/ebooks/40785', 'en', 3847), +(6850, 'John Dene of Toronto: A Comedy of Whitehall', 'Jenkins, Herbert George', '2010-07-27', 25, 'https://www.gutenberg.org/ebooks/33277', 'en', 3848), +(6851, 'The Southern Literary Messenger, Vol. I., No. 8, April, 1835', 'Various', '2018-08-19', 11, 'https://www.gutenberg.org/ebooks/57732', 'en', 522), +(6852, 'By Right of Purchase', 'Bindloss, Harold', '2011-07-12', 21, 'https://www.gutenberg.org/ebooks/36705', 'en', 3849), +(6853, 'The Inner Flame: A Novel', 'Burnham, Clara Louise', '2016-06-05', 20, 'https://www.gutenberg.org/ebooks/52240', 'en', 3850), +(6854, 'Macleod of Dare', 'Black, William', '2005-04-08', 23, 'https://www.gutenberg.org/ebooks/15587', 'en', 2389), +(6855, 'Influenza', 'Provincial Board of Health of Ontario', '2019-08-11', 209, 'https://www.gutenberg.org/ebooks/60087', 'en', 3851), +(6856, 'The Faith of Islam', 'Sell, Edward', '2007-02-24', 37, 'https://www.gutenberg.org/ebooks/20660', 'en', 3852), +(6857, 'Punch, or the London Charivari, Volume 152, March 21, 1917', 'Various', '2004-12-25', 20, 'https://www.gutenberg.org/ebooks/14455', 'en', 134), +(6858, 'Lucrezia Borgia: Murhenäytelmä', 'Hugo, Victor', '2016-10-28', 18, 'https://www.gutenberg.org/ebooks/53392', 'fi', 3853), +(6859, 'The Great American Fraud\nThe Patent Medicine Evil', 'Adams, Samuel Hopkins', '2013-12-01', 46, 'https://www.gutenberg.org/ebooks/44325', 'en', 3854), +(6860, 'The Rover Boys in Business; Or, The Search for the Missing Bonds', 'Stratemeyer, Edward', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/5002', 'en', 128), +(6861, 'Symphonies and Their Meaning; Third Series, Modern Symphonies', 'Goepp, Philip H. (Philip Henry)', '2004-07-13', 26, 'https://www.gutenberg.org/ebooks/12903', 'en', 3855), +(6862, 'A Bad Day for Vermin', 'Laumer, Keith', '2016-02-21', 231, 'https://www.gutenberg.org/ebooks/51258', 'en', 424), +(6863, 'Astucias de Namorada, e Um melodrama em Santo Thyrso', 'Chagas, Manuel Pinheiro', '2009-07-07', 15, 'https://www.gutenberg.org/ebooks/29342', 'pt', 3856), +(6864, 'Tales of Fantasy and Fact', 'Matthews, Brander', '2007-12-02', 27, 'https://www.gutenberg.org/ebooks/23678', 'en', 2513), +(6865, 'Väsyneen haudalla: Alkuperäinen novelli', 'Karikko, Kaarle', '2009-03-09', 42, 'https://www.gutenberg.org/ebooks/28290', 'fi', 41), +(6866, 'A Phantom Lover', 'Lee, Vernon', '2005-05-01', 25, 'https://www.gutenberg.org/ebooks/8180', 'en', 114), +(6867, 'Recollections of the Private Life of Napoleon — Volume 01', 'Wairy, Louis Constant', '2002-12-01', 27, 'https://www.gutenberg.org/ebooks/3568', 'en', 3857), +(6868, 'Maybee\'s Stepping Stones', 'Fell, Archie', '2015-02-28', 13, 'https://www.gutenberg.org/ebooks/48375', 'en', 388), +(6869, 'The Golden Calf', 'Braddon, M. E. (Mary Elizabeth)', '2005-10-01', 39, 'https://www.gutenberg.org/ebooks/9052', 'en', 61), +(6870, 'Neville Trueman, the Pioneer Preacher : a tale of the war of 1812', 'Withrow, W. H. (William Henry)', '2004-11-01', 14, 'https://www.gutenberg.org/ebooks/6826', 'en', 3858), +(6871, 'Great Sea Stories', NULL, '2006-05-16', 30, 'https://www.gutenberg.org/ebooks/18405', 'en', 324), +(6872, 'The War and Democracy', 'Zimmern, Alfred', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10668', 'en', 3859), +(6873, 'Teutonic Mythology: Gods and Goddesses of the Northland. Vol. 1 of 3', 'Rydberg, Viktor', '2011-10-29', 68, 'https://www.gutenberg.org/ebooks/37876', 'en', 3860), +(6874, 'L\'Illustration, No. 3661, 26 Avril 1913', 'Various', '2011-11-13', 2, 'https://www.gutenberg.org/ebooks/38002', 'fr', 150), +(6875, 'The Religious Tract Society Catalogue - 1889', 'Religious Tract Society (Great Britain)', '2012-07-01', 11, 'https://www.gutenberg.org/ebooks/40118', 'en', 3861), +(6876, 'The Talking Leaves: An Indian Story', 'Stoddard, William O.', '2007-06-23', 21, 'https://www.gutenberg.org/ebooks/21913', 'en', 1357), +(6877, 'The Case for Spirit Photography\nWith corroborative evidence by experienced researchers and photographers', 'Doyle, Arthur Conan', '2019-06-25', 156, 'https://www.gutenberg.org/ebooks/59809', 'en', 3862), +(6878, 'The Tower of Dago', 'Jókai, Mór', '2010-05-26', 22, 'https://www.gutenberg.org/ebooks/32538', 'en', 654), +(6879, 'Kolarflickan eller En Wandring i Norrland: Novell', 'Mellin, G. H. (Gustaf Henrik)', '2018-09-27', 10, 'https://www.gutenberg.org/ebooks/57993', 'sv', 420), +(6880, 'The Invention of Lithography', 'Senefelder, Alois', '2012-10-03', 19, 'https://www.gutenberg.org/ebooks/40924', 'en', 3863), +(6881, 'Wayside and Woodland Blossoms\nA Pocket Guide to British Wild-flowers for the Country Rambler', 'Step, Edward', '2019-03-08', 11, 'https://www.gutenberg.org/ebooks/59035', 'en', 3864), +(6882, 'The Disappearing Eye', 'Hume, Fergus', '2018-03-25', 25, 'https://www.gutenberg.org/ebooks/56841', 'en', 323), +(6883, 'The Mystery of The Barranca', 'Whitaker, Herman', '2011-05-23', 12, 'https://www.gutenberg.org/ebooks/36198', 'en', 3865), +(6884, 'The Odes of Anacreon', 'Moore, Thomas', '2011-12-06', 22, 'https://www.gutenberg.org/ebooks/38230', 'en', 3866), +(6885, 'L\'argent des autres: 1. Les hommes de paille', 'Gaboriau, Emile', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11588', 'fr', 128), +(6886, 'The American Missionary — Volume 43, No. 11, November, 1889', 'Various', '2005-05-27', 17, 'https://www.gutenberg.org/ebooks/15914', 'en', 562), +(6887, 'The Lock and Key Library: Classic Mystery and Detective Stories: Old Time English', NULL, '1999-07-01', 192, 'https://www.gutenberg.org/ebooks/1831', 'en', 128), +(6888, 'Fly Fishing in Wonderland', 'Barnes, Orange Perry', '2011-08-31', 10, 'https://www.gutenberg.org/ebooks/37278', 'en', 3867), +(6889, 'The Mystery of the Downs', 'Rees, Arthur J. (Arthur John)', '2014-05-16', 44, 'https://www.gutenberg.org/ebooks/45658', 'en', 95), +(6890, 'Broken to Harness: A Story of English Domestic Life', 'Yates, Edmund', '2019-04-04', 24, 'https://www.gutenberg.org/ebooks/59207', 'en', 95), +(6891, 'Narrative of the Life of J.D. Green, a Runaway Slave, from Kentucky\nContaining an Account of His Three Escapes, in 1839, 1846, and 1848', 'Green, J. D. (Jacob D.)', '2005-02-21', 15, 'https://www.gutenberg.org/ebooks/15128', 'en', 3868), +(6892, 'The Story of the First Trans-Continental Railroad\nIts Projectors, Construction and History', 'Bailey, William Francis', '2007-09-14', 23, 'https://www.gutenberg.org/ebooks/22598', 'en', 3869), +(6893, 'The Hoofer', 'Miller, Walter M.', '2009-06-19', 34, 'https://www.gutenberg.org/ebooks/29170', 'en', 26), +(6894, '天豹圖', 'Unknown', '2008-10-12', 46, 'https://www.gutenberg.org/ebooks/26904', 'zh', 3870), +(6895, 'The Seats of the Mighty, Volume 5', 'Parker, Gilbert', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6228', 'en', 893), +(6896, 'Breakfasts and Teas: Novel Suggestions for Social Occasions', 'Pierce, Paul', '2010-01-05', 30, 'https://www.gutenberg.org/ebooks/30861', 'en', 1560), +(6897, 'The kiss and its history', 'Nyrop, Kristoffer', '2016-04-24', 13, 'https://www.gutenberg.org/ebooks/51856', 'en', 3871), +(6898, 'The War of Quito', 'Cieza de León, Pedro de', '2015-05-31', 26, 'https://www.gutenberg.org/ebooks/49095', 'en', 2884), +(6899, 'In the Flash Ranging Service\r\nObservations of an American Soldier During His Service With the A.E.F. in France', 'Trueblood, Edward Alva', '2008-07-27', 11, 'https://www.gutenberg.org/ebooks/26138', 'en', 3872), +(6900, 'Het leven en de lotgevallen van David Copperfield', 'Dickens, Charles', '2015-01-10', 33, 'https://www.gutenberg.org/ebooks/47933', 'nl', 1351), +(6901, 'The Constitution of the United States of America: Analysis and Interpretation\nAnnotations of Cases Decided by the Supreme Court of the United States to June 30, 1952', NULL, '2006-06-20', 74, 'https://www.gutenberg.org/ebooks/18637', 'en', 3873), +(6902, 'The battle-fields of Ireland, from 1688 to 1691\r\nincluding Limerick and Athlone, Aughrim and the Boyne. Being an outline history of the Jacobite war in Ireland, and the causes which led to it', 'Boyle, John, active 1867', '2017-04-09', 6, 'https://www.gutenberg.org/ebooks/54518', 'en', 3874), +(6903, 'Bennie Ben Cree: Being the Story of His Adventure to Southward in the Year \'62', NULL, '2015-02-03', 5, 'https://www.gutenberg.org/ebooks/48147', 'en', 403), +(6904, 'Die Macht der Drei: Ein Roman aus dem Jahre 1955', 'Dominik, Hans', '2016-01-20', 37, 'https://www.gutenberg.org/ebooks/50984', 'de', 26), +(6905, 'Prometheus\nDramatisches Fragment', 'Goethe, Johann Wolfgang von', '2005-11-01', 66, 'https://www.gutenberg.org/ebooks/9260', 'de', 402), +(6906, 'The Clue of the Twisted Candle', 'Wallace, Edgar', '2001-06-01', 154, 'https://www.gutenberg.org/ebooks/2688', 'en', 128), +(6907, 'Legends of Charlemagne', 'Bulfinch, Thomas', '2004-01-01', 59, 'https://www.gutenberg.org/ebooks/4927', 'en', 3875), +(6908, 'Beau Brocade: A Romance', 'Orczy, Emmuska Orczy, Baroness', '2012-05-24', 79, 'https://www.gutenberg.org/ebooks/39786', 'en', 356), +(6909, 'Great Opera Stories\nTaken from Original Sources in Old German', 'Bender, Millicent Schwab', '2012-01-23', 19, 'https://www.gutenberg.org/ebooks/38654', 'en', 3685), +(6910, 'Poems', 'Thompson, Francis', '1998-09-01', 51, 'https://www.gutenberg.org/ebooks/1469', 'en', 54), +(6911, 'Luiz de Camões marinheiro', 'Eça, Vicente de Almeida de', '2007-06-08', 9, 'https://www.gutenberg.org/ebooks/21779', 'pt', 3876), +(6912, 'Notes on Diseases of Swine, Sheep, Poultry and the Dog\nCause, Symptoms and Treatments', 'Korinek, Charles James', '2019-06-02', 22, 'https://www.gutenberg.org/ebooks/59663', 'en', 3877), +(6913, 'Hôtel Buchholz. Ausstellungs-Erlebnisse der Frau Wilhelmine Buchholz', 'Stinde, Julius', '2016-10-24', 10, 'https://www.gutenberg.org/ebooks/53359', 'de', 1362), +(6914, 'Project Gutenberg \"10K\" DVD', NULL, '2004-02-01', 137, 'https://www.gutenberg.org/ebooks/10802', 'en', NULL), +(6915, 'In Stahlgewittern, aus dem Tagebuch eines Stoßtruppführers', 'Jünger, Ernst', '2010-10-19', 218, 'https://www.gutenberg.org/ebooks/34099', 'de', 3878), +(6916, 'Monica: A Novel, Volume 1 (of 3)', 'Everett-Green, Evelyn', '2017-06-20', 22, 'https://www.gutenberg.org/ebooks/54940', 'en', 48), +(6917, 'The American Flower Garden Directory\r\nContaining Practical Directions for the Culture of Plants, in the Hot-House, Garden-House, Flower Garden and Rooms or Parlours, for Every Month in the Year', 'Buist, Robert', '2013-05-27', 40, 'https://www.gutenberg.org/ebooks/42825', 'en', 3879), +(6918, 'Vergänglichkeit', 'Freud, Sigmund', '2009-07-26', 34, 'https://www.gutenberg.org/ebooks/29514', 'de', 3880), +(6919, 'Die Anfänge der Naturbeherrschung. 1. Frühformen der Mechanik', 'Weule, Karl', '2017-11-05', 10, 'https://www.gutenberg.org/ebooks/55892', 'de', 3881), +(6920, 'Discovery of Witches\nThe Wonderfull Discoverie of Witches in the Countie of Lancaster', 'Potts, Thomas, active 1612-1618', '2006-04-25', 177, 'https://www.gutenberg.org/ebooks/18253', 'en', 3882), +(6921, 'L\'Allegro, Il Penseroso, Comus, and Lycidas', 'Milton, John', '1996-01-01', 110, 'https://www.gutenberg.org/ebooks/397', 'en', 3883), +(6922, 'Geschiedenis der Nederlandsche letterkunde, Deel I', 'Kalff, Gerrit', '2007-12-10', 13, 'https://www.gutenberg.org/ebooks/23812', 'nl', 3884), +(6923, 'Birds and Nature, Vol. 08, No. 2, September 1900\r\nIllustrated by Color Photography', 'Various', '2015-03-18', 47, 'https://www.gutenberg.org/ebooks/48523', 'en', 1584), +(6924, 'Mrs. Tree', 'Richards, Laura Elizabeth Howe', '2009-11-09', 25, 'https://www.gutenberg.org/ebooks/30439', 'en', 3885), +(6925, 'Hung Lou Meng, or, the Dream of the Red Chamber, a Chinese Novel, Book II', 'Cao, Xueqin', '2006-01-01', 122, 'https://www.gutenberg.org/ebooks/9604', 'en', 957), +(6926, 'Motor Boat Boys\' River Chase; or, Six Chums Afloat and Ashore', 'Arundel, Louis', '2013-02-05', 16, 'https://www.gutenberg.org/ebooks/42019', 'en', 2722), +(6927, 'How to Teach', 'Strayer, George D. (George Drayton)', '2004-06-28', 50, 'https://www.gutenberg.org/ebooks/12769', 'en', 1947), +(6928, 'Letters of Abelard and Heloise\r\nTo which is prefix\'d a particular account of their lives, amours, and misfortunes', 'Abelard, Peter', '2011-04-27', 179, 'https://www.gutenberg.org/ebooks/35977', 'en', 3886), +(6929, 'Among the Farmyard People', 'Pierson, Clara Dillingham', '2006-09-26', 80, 'https://www.gutenberg.org/ebooks/19381', 'en', 527), +(6930, 'Shadow of the Mothaship', 'Doctorow, Cory', '2005-11-20', 44, 'https://www.gutenberg.org/ebooks/17029', 'en', 26), +(6931, 'A History of England, Period III. Constitutional Monarchy', 'Bright, J. Franck (James Franck)', '2014-12-26', 19, 'https://www.gutenberg.org/ebooks/47759', 'en', 1953), +(6932, 'Divina Commedia di Dante: Paradiso', 'Dante Alighieri', '1997-08-01', 68, 'https://www.gutenberg.org/ebooks/999', 'it', 3887), +(6933, 'Slave Narratives: A Folk History of Slavery in the United States From Interviews with Former Slaves: Volume X, Missouri Narratives', 'United States. Work Projects Administration', '2011-02-23', 81, 'https://www.gutenberg.org/ebooks/35379', 'en', 3888), +(6934, 'Prince Zilah — Complete', 'Claretie, Jules', '2004-10-30', 17, 'https://www.gutenberg.org/ebooks/3930', 'en', 560), +(6935, 'The Strollers', 'Isham, Frederic Stewart', '2009-08-19', 16, 'https://www.gutenberg.org/ebooks/29726', 'en', 61), +(6936, 'Hints on Mountain-Lion Trapping', 'Young, Stanley Paul', '2015-04-15', 4, 'https://www.gutenberg.org/ebooks/48711', 'en', 3889), +(6937, 'Illusions: A Psychological Study', 'Sully, James', '2006-02-21', 40, 'https://www.gutenberg.org/ebooks/17815', 'en', 3890), +(6938, 'Two on a Tower', 'Hardy, Thomas', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9436', 'en', 48), +(6939, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 01, January 1895\r\nThe Gothic Palaces of Venice', 'Various', '2004-09-18', 23, 'https://www.gutenberg.org/ebooks/13489', 'en', 2140), +(6940, 'Oeuvres poétiques Tome 1', 'Christine, de Pisan', '2006-03-27', 30, 'https://www.gutenberg.org/ebooks/18061', 'fr', 8), +(6941, 'Scenes in North Wales\r\nWith Historical Illustrations, Legends, and Biographical Notices', 'Wright, G. N. (George Newenham)', '2016-08-23', 13, 'https://www.gutenberg.org/ebooks/52885', 'en', 3891), +(6942, 'La araña negra, t. 4/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 15, 'https://www.gutenberg.org/ebooks/45832', 'es', 98), +(6943, 'The Young Man and Journalism', 'Lord, Chester Sanders', '2018-01-23', 6, 'https://www.gutenberg.org/ebooks/56419', 'en', 3183), +(6944, '老子', 'Laozi', '2007-12-26', 41, 'https://www.gutenberg.org/ebooks/24039', 'zh', 3892), +(6945, 'Graham\'s Magazine, Vol. XXXIV, No. 4, April 1849', 'Various', '2017-01-13', 10, 'https://www.gutenberg.org/ebooks/53957', 'en', 162), +(6946, 'Hooded Detective, Volume III No. 2, January, 1942', 'Various', '2012-01-02', 35, 'https://www.gutenberg.org/ebooks/38466', 'en', 3893), +(6947, 'The Competitive Nephew', 'Glass, Montague', '2010-06-24', 31, 'https://www.gutenberg.org/ebooks/32960', 'en', 1695), +(6948, 'The Veil Lifted: Modern Developments of Spirit Photography', NULL, '2019-05-07', 19, 'https://www.gutenberg.org/ebooks/59451', 'en', 3862), +(6949, 'Two Expeditions into the Interior of Southern Australia — Volume 2', 'Sturt, Charles', '2003-08-01', 8, 'https://www.gutenberg.org/ebooks/4329', 'en', 3894), +(6950, '\"Chinkie\'s Flat\"\r\n1904', 'Becke, Louis', '2008-03-11', 17, 'https://www.gutenberg.org/ebooks/24805', 'en', 108), +(6951, 'Index of the Project Gutenberg Works of John Stuart Mill', 'Mill, John Stuart', '2019-01-01', 11, 'https://www.gutenberg.org/ebooks/58583', 'en', 198), +(6952, 'Afloat; or, Adventures on Watery Trails', 'Douglas, Alan, Captain', '2007-02-01', 10, 'https://www.gutenberg.org/ebooks/20499', 'en', 2994), +(6953, 'The Atlantic Monthly, Volume 07, No. 39, January, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11118', 'en', 1227), +(6954, 'Rustic Carpentry', NULL, '2012-12-20', 108, 'https://www.gutenberg.org/ebooks/41668', 'en', 3895), +(6955, 'Mark Gildersleeve: A Novel', 'Sauzade, John S.', '2012-05-23', 9, 'https://www.gutenberg.org/ebooks/39772', 'en', 61), +(6956, 'Milton\'s Tercentenary\r\nAn address delivered before the Modern Language Club of Yale University on Milton\'s Three Hundredth Birthday.', 'Beers, Henry A. (Henry Augustin)', '2010-11-23', 6, 'https://www.gutenberg.org/ebooks/33248', 'en', 3896), +(6957, 'Huttens letzte Tage', 'Meyer, Conrad Ferdinand', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5801', 'de', 510), +(6958, 'The Loves of Krishna in Indian Painting and Poetry', 'Archer, W. G. (William George)', '2004-04-01', 56, 'https://www.gutenberg.org/ebooks/11924', 'en', 3897), +(6959, 'Tizian', 'Knackfuss, H. (Hermann)', '2019-06-07', 15, 'https://www.gutenberg.org/ebooks/59697', 'de', 3898), +(6960, 'Jean-Christophe II\r\nAamu', 'Rolland, Romain', '2019-01-21', 2, 'https://www.gutenberg.org/ebooks/58745', 'fi', 2986), +(6961, 'Die Lieder Gottfrieds von Neifen', 'Gottfried, von Neifen, active 1234-1255', '2013-10-07', 4, 'https://www.gutenberg.org/ebooks/43903', 'de', 8), +(6962, 'Home Life in Germany', 'Sidgwick, Alfred, Mrs.', '2009-03-29', 17, 'https://www.gutenberg.org/ebooks/28432', 'en', 3899), +(6963, 'Pitt und Fox, die Liebeswege der Brüder Sintrup: Roman', 'Huch, Friedrich', '2015-11-22', 7, 'https://www.gutenberg.org/ebooks/50528', 'de', 253), +(6964, 'The Untroubled Mind', 'Hall, Herbert J. (Herbert James)', '2007-07-19', 195, 'https://www.gutenberg.org/ebooks/22108', 'en', 251), +(6965, 'Hämäläisiä: Kirja yksinkertaisista ihmisistä', 'Finne, Jalmari', '2017-11-01', 10, 'https://www.gutenberg.org/ebooks/55866', 'fi', 175), +(6966, 'Ειδύλλια', 'Theocritus', '2011-01-05', 11, 'https://www.gutenberg.org/ebooks/34851', 'el', 3900), +(6967, 'Oriental Prisons\r\nPrisons and Crime in India, the Andaman Islands, Burmah, China, Japan, Egypt, Turkey', 'Griffiths, Arthur', '2017-02-18', 14, 'https://www.gutenberg.org/ebooks/54188', 'en', 3901), +(6968, 'The Oakdale Affair', 'Burroughs, Edgar Rice', '2008-07-11', 192, 'https://www.gutenberg.org/ebooks/363', 'en', 167), +(6969, 'Human Genome Project, rough draft, Chromosome Number 18', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2218', 'en', 1385), +(6970, 'The Three Cities Trilogy: Rome, Volume 2', 'Zola, Émile', '2005-08-01', 17, 'https://www.gutenberg.org/ebooks/8722', 'en', 3319), +(6971, 'The First Epistle of John', 'John, the Apostle, Saint', '2007-10-01', 6, 'https://www.gutenberg.org/ebooks/22934', 'en', 3902), +(6972, 'Trial of Deacon Brodie', NULL, '2015-07-09', 17, 'https://www.gutenberg.org/ebooks/49405', 'en', 3903), +(6973, 'A senhora Rattazzi', 'Castelo Branco, Camilo', '2006-09-25', 17, 'https://www.gutenberg.org/ebooks/19375', 'pt', 3904), +(6974, 'Little Nettie; or, Home Sunshine', 'Warner, Susan', '2011-04-27', 17, 'https://www.gutenberg.org/ebooks/35983', 'en', 470), +(6975, 'Ave Roma Immortalis, Vol. 2\nStudies from the Chronicles of Rome', 'Crawford, F. Marion (Francis Marion)', '2009-04-25', 7, 'https://www.gutenberg.org/ebooks/28600', 'en', 2452), +(6976, 'The City of the Sun', 'Campanella, Tommaso', '2001-09-01', 121, 'https://www.gutenberg.org/ebooks/2816', 'en', 1828), +(6977, 'Quotes and Images From Memoirs of Marie Antoinette', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2005-02-01', 37, 'https://www.gutenberg.org/ebooks/7558', 'en', 1026), +(6978, 'Buchanan\'s Journal of Man, August 1887\nVolume 1, Number 7', NULL, '2008-12-29', 12, 'https://www.gutenberg.org/ebooks/27648', 'en', 3905), +(6979, 'Successful Methods of Public Speaking', 'Kleiser, Grenville', '2006-04-01', 64, 'https://www.gutenberg.org/ebooks/18095', 'en', 3906), +(6980, 'The Rime of the Ancient Mariner', 'Coleridge, Samuel Taylor', '2006-03-11', 779, 'https://www.gutenberg.org/ebooks/151', 'en', 8), +(6981, 'How It Flies; or, The Conquest of the Air\r\nThe Story of Man\'s Endeavors to Fly and of the Inventions by Which He Has Succeeded', 'Ferris, Richard', '2017-08-05', 8, 'https://www.gutenberg.org/ebooks/55268', 'en', 927), +(6982, 'The House in the Mist', 'Green, Anna Katharine', '2006-08-30', 51, 'https://www.gutenberg.org/ebooks/19147', 'en', 61), +(6983, 'Lucky Pehr', 'Strindberg, August', '2005-07-01', 24, 'https://www.gutenberg.org/ebooks/8510', 'en', 402), +(6984, 'Joan of Arc', 'Gower, Ronald Sutherland, Lord', '2005-10-24', 25, 'https://www.gutenberg.org/ebooks/16933', 'en', 3907), +(6985, 'Account of the Russian Discoveries between Asia and America\r\nTo which are added, the conquest of Siberia, and the history of the transactions and commerce between Russia and China', 'Coxe, William', '2015-08-06', 15, 'https://www.gutenberg.org/ebooks/49637', 'en', 3908), +(6986, 'Laakson lilja: Maaseutuelämän kuvaus', 'Balzac, Honoré de', '2016-08-21', 6, 'https://www.gutenberg.org/ebooks/52871', 'fi', 3909), +(6987, 'The Revolutionary Movement of 1848-9 in Italy, Austria-Hungary, and Germany\nWith Some Examination of the Previous Thirty-three Years', 'Maurice, C. Edmund (Charles Edmund)', '2012-04-26', 19, 'https://www.gutenberg.org/ebooks/39540', 'en', 3910), +(6988, 'Bow-Wow and Mew-Mew', 'Craik, Georgiana M. (Georgiana Marion)', '2014-02-15', 13, 'https://www.gutenberg.org/ebooks/44914', 'en', 527), +(6989, 'Human Personality and Its Survival of Bodily Death', 'Myers, F. W. H. (Frederic William Henry)', '2012-01-03', 101, 'https://www.gutenberg.org/ebooks/38492', 'en', 1509), +(6990, 'The Kathá Sarit Ságara; or, Ocean of the Streams of Story', 'Somadeva Bhatta, active 11th century', '2012-08-26', 89, 'https://www.gutenberg.org/ebooks/40588', 'en', 2422), +(6991, 'The Marvelous Exploits of Paul Bunyan\r\nAs Told in the Camps of the White Pine Lumbermen for Generations During Which Time the Loggers Have Pioneered the Way Through the North Woods from Maine to California; Collected from Various Sources and Embellished for Publication', 'Laughead, William B.', '2010-06-28', 30, 'https://www.gutenberg.org/ebooks/32994', 'en', 1839), +(6992, 'Brandon of the Engineers', 'Bindloss, Harold', '2008-06-28', 29, 'https://www.gutenberg.org/ebooks/25923', 'en', 3911), +(6993, 'Eight Harvard Poets', NULL, '2011-06-24', 53, 'https://www.gutenberg.org/ebooks/36508', 'en', 994), +(6994, 'The Esperantist, Vol. 2, No. 6', NULL, '2013-11-08', 6, 'https://www.gutenberg.org/ebooks/44128', 'eo', 3912), +(6995, 'The Road', 'London, Jack', '2005-01-10', 203, 'https://www.gutenberg.org/ebooks/14658', 'en', 3913), +(6996, 'The Tent Dwellers', 'Paine, Albert Bigelow', '2010-10-07', 37, 'https://www.gutenberg.org/ebooks/33846', 'en', 3914), +(6997, 'The Fur-Seal\'s Tooth: A Story of Alaskan Adventure', 'Munroe, Kirk', '2018-12-31', 18, 'https://www.gutenberg.org/ebooks/58577', 'en', 1586), +(6998, 'Poems on Serious and Sacred Subjects\r\nPrinted only as Private Tokens of Regard, for the Particular Friends of the Author', 'Hayley, William', '2005-09-01', 11, 'https://www.gutenberg.org/ebooks/8948', 'en', 54), +(6999, 'Cleek, the Master Detective', 'Hanshew, Thomas W.', '2009-03-06', 23, 'https://www.gutenberg.org/ebooks/28264', 'en', 128), +(7000, 'Sapho', 'Daudet, Alphonse', '2004-10-21', 34, 'https://www.gutenberg.org/ebooks/13825', 'fr', 560), +(7001, 'A Husband by Proxy', 'Steele, Jack', '2006-10-10', 11, 'https://www.gutenberg.org/ebooks/19523', 'en', 128), +(7002, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 05\r\nCentral and Southern Europe', 'Hakluyt, Richard', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/7900', 'en', 2528), +(7003, 'Kéraban-Le-Têtu, Volume I', 'Verne, Jules', '2005-05-01', 48, 'https://www.gutenberg.org/ebooks/8174', 'fr', 1862), +(7004, 'Satan and the Comrades', 'Bennitt, Ralph', '2010-02-22', 10, 'https://www.gutenberg.org/ebooks/31349', 'en', 179), +(7005, 'Hawkins Electrical Guide v. 07 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-06-21', 26, 'https://www.gutenberg.org/ebooks/49253', 'en', 1863), +(7006, 'A Little Girl in Old Pittsburg', 'Douglas, Amanda M.', '2013-09-20', 13, 'https://www.gutenberg.org/ebooks/43769', 'en', 3220), +(7007, 'Kalevala (1835) 2. Osa\ntaikka Wanhoja Karjalan Runoja Suomen kansan muinosista ajoista', 'Lönnrot, Elias', '2015-02-28', 29, 'https://www.gutenberg.org/ebooks/48381', 'fi', 1171), +(7008, 'Raphael; Or, Pages of the Book of Life at Twenty', 'Lamartine, Alphonse de', '2004-07-25', 18, 'https://www.gutenberg.org/ebooks/13019', 'en', 3915), +(7009, 'Travels with a Donkey in the Cevennes', 'Stevenson, Robert Louis', '1996-05-01', 389, 'https://www.gutenberg.org/ebooks/535', 'en', 3485), +(7010, 'Mr. Punch in the Highlands', NULL, '2011-10-30', 26, 'https://www.gutenberg.org/ebooks/37882', 'en', 2965), +(7011, 'The Monctons: A Novel. Volume 1 (of 2)', 'Moodie, Susanna', '2007-03-16', 9, 'https://www.gutenberg.org/ebooks/20835', 'en', 61), +(7012, 'Voltaire: A Sketch of His Life and Works', 'Foote, G. W. (George William)', '2012-03-10', 38, 'https://www.gutenberg.org/ebooks/39124', 'en', 3916), +(7013, 'An American Diplomat in China', 'Reinsch, Paul S. (Paul Samuel)', '2017-11-30', 13, 'https://www.gutenberg.org/ebooks/56089', 'en', 3005), +(7014, 'Richard Galbraith, Mariner; Or, Life among the Kaffirs', 'Phillips, E. W. (Emma Watts)', '2011-08-02', 6, 'https://www.gutenberg.org/ebooks/36950', 'en', 194), +(7015, 'Meeresfische', 'Floericke, Kurt', '2018-09-24', 19, 'https://www.gutenberg.org/ebooks/57967', 'de', 3917), +(7016, 'An Act to Provide for the Paving, Gravelling, Lighting, and Watching Certain Footways and Carriageways in and Near Brompton Square\r\nIn the Parish of Saint Mary Abbotts Kensington, in the County of Middlesex and to Provide for the Maintenance of a Garden and Shrubbery in the Said Square.', 'Anonymous', '2018-10-16', 22, 'https://www.gutenberg.org/ebooks/58113', 'en', 3918), +(7017, 'Ixion In Heaven', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-12-03', 22, 'https://www.gutenberg.org/ebooks/20009', 'en', 3919), +(7018, 'Frank in the Mountains', 'Castlemon, Harry', '2013-01-08', 8, 'https://www.gutenberg.org/ebooks/41802', 'en', 1120), +(7019, 'Crusoe\'s Island: A Ramble in the Footsteps of Alexander Selkirk\nWith Sketches of Adventure in California and Washoe', 'Browne, J. Ross (John Ross)', '2012-06-04', 14, 'https://www.gutenberg.org/ebooks/39918', 'en', 3920), +(7020, 'Fifteen Institute Lessons in Language, Arithmetic, and U.S. History', 'Sanders, William Francis Lewis', '2016-06-28', 21, 'https://www.gutenberg.org/ebooks/52429', 'en', 3921), +(7021, 'A Maid of the Silver Sea', 'Oxenham, John', '2005-01-29', 25, 'https://www.gutenberg.org/ebooks/14832', 'en', 3922), +(7022, 'All Things are Possible', 'Shestov, Lev', '2018-06-21', 90, 'https://www.gutenberg.org/ebooks/57369', 'en', 3923), +(7023, 'A Tall Ship\nOn Other Naval Occasions', 'Bartimeus', '2008-06-10', 17, 'https://www.gutenberg.org/ebooks/25749', 'en', 324), +(7024, 'The Loyalists of Massachusetts and the Other Side of the American Revolution', 'Stark, James Henry', '2012-03-31', 71, 'https://www.gutenberg.org/ebooks/39316', 'en', 3924), +(7025, 'The Three Brothers; vol. 2/3', 'Oliphant, Mrs. (Margaret)', '2018-11-22', 11, 'https://www.gutenberg.org/ebooks/58321', 'en', 400), +(7026, 'An Egyptian Princess — Volume 10', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5459', 'en', 803), +(7027, 'The Chronicle of the Canons Regular of Mount St. Agnes', 'Thomas, à Kempis', '2005-09-26', 17, 'https://www.gutenberg.org/ebooks/16759', 'en', 3925), +(7028, 'Cours de philosophie positive. (4/6)', 'Comte, Auguste', '2010-04-11', 35, 'https://www.gutenberg.org/ebooks/31947', 'fr', 3926), +(7029, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 15, No. 89, May, 1875', 'Various', '2009-06-21', 10, 'https://www.gutenberg.org/ebooks/29184', 'en', 210), +(7030, 'Charities and the Commons: The Pittsburgh Survey, Part I. The People', 'Various', '2014-06-19', 13, 'https://www.gutenberg.org/ebooks/46029', 'en', 3927), +(7031, 'Zwei Prager Geschichten', 'Rilke, Rainer Maria', '2009-01-17', 45, 'https://www.gutenberg.org/ebooks/27822', 'de', 3928), +(7032, 'Poet-Lore: A Quarterly Magazine of Letters. April, May, June, 1900', 'Various', '2010-11-23', 26, 'https://www.gutenberg.org/ebooks/34409', 'en', 3929), +(7033, 'Music and Some Highly Musical People', 'Trotter, James M.', '2009-02-12', 108, 'https://www.gutenberg.org/ebooks/28056', 'en', 3198), +(7034, 'Rembrandt and His Etchings\r\nA Compact Record of the Artist\'s Life, His Work and his Time. With the complete Chronological List of his Etchings', 'Holman, Louis A. (Louis Arthur)', '2010-01-08', 15, 'https://www.gutenberg.org/ebooks/30895', 'en', 596), +(7035, 'The Bible, Douay-Rheims, Book 46: 2 Machabees\nThe Challoner Revision', NULL, '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/8346', 'en', 3930), +(7036, 'Die Luftschiffahrt der Gegenwart', 'Hoernes, Hermann', '2013-04-10', 23, 'https://www.gutenberg.org/ebooks/42489', 'de', 927), +(7037, 'Rambles on Railways', 'Roney, Cusack P., Sir', '2015-05-27', 16, 'https://www.gutenberg.org/ebooks/49061', 'en', 3931), +(7038, 'The Buried Temple', 'Maeterlinck, Maurice', '2006-11-04', 14, 'https://www.gutenberg.org/ebooks/19711', 'en', 20), +(7039, 'William Oughtred: A Great Seventeenth-Century Teacher of Mathematics', 'Cajori, Florian', '2014-09-09', 25, 'https://www.gutenberg.org/ebooks/46815', 'en', 3932), +(7040, 'Raffles: Further Adventures of the Amateur Cracksman', 'Hornung, E. W. (Ernest William)', '1996-11-01', 125, 'https://www.gutenberg.org/ebooks/707', 'en', 3933), +(7041, 'The Exploring Expedition to the Rocky Mountains, Oregon and California\r\nTo which is Added a Description of the Physical Geography of California, with Recent Notices of the Gold Region from the Latest and Most Authentic Sources', 'Frémont, John Charles', '2005-11-01', 34, 'https://www.gutenberg.org/ebooks/9294', 'en', 3934), +(7042, 'An Account of the Escape of Six Federal Soldiers from Prison at Danville, Va.', 'Newlin, W. H. (William Henry)', '2016-01-19', 10, 'https://www.gutenberg.org/ebooks/50970', 'en', 444), +(7043, 'The Boys\' Book of Famous Rulers', 'Farmer, Lydia Hoyt', '2015-11-20', 16, 'https://www.gutenberg.org/ebooks/50510', 'en', 3935), +(7044, 'Charles Di Tocca: A Tragedy', 'Rice, Cale Young', '2010-10-11', 11, 'https://www.gutenberg.org/ebooks/34055', 'en', 508), +(7045, 'The Bores: A Comedy in Three Acts', 'Molière', '2004-10-01', 13, 'https://www.gutenberg.org/ebooks/6680', 'en', 3936), +(7046, 'Dream Days', 'Grahame, Kenneth', '2011-02-06', 70, 'https://www.gutenberg.org/ebooks/35187', 'en', 2625), +(7047, 'Godolphin, Volume 3.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7752', 'en', 45), +(7048, 'The Green Hand: Adventures of a Naval Lieutenant', 'Cupples, George', '2014-08-01', 12, 'https://www.gutenberg.org/ebooks/46475', 'en', 324), +(7049, 'Crayon and Character: Truth Made Clear Through Eye and Ear\nOr, Ten-Minute Talks with Colored Chalks', 'Griswold, B. J. (Bert Joseph)', '2005-07-15', 31, 'https://www.gutenberg.org/ebooks/16305', 'en', 1302), +(7050, 'The Idler Magazine, Volume III, April 1893\nAn Illustrated Monthly', 'Various', '2007-07-24', 25, 'https://www.gutenberg.org/ebooks/22130', 'en', 2370), +(7051, 'The Wood-Pigeons and Mary', 'Molesworth, Mrs.', '2013-07-06', 11, 'https://www.gutenberg.org/ebooks/43107', 'en', 2634), +(7052, 'Human Genome Project, rough draft, Chromosome Number 20', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2220', 'en', 2318), +(7053, 'Belgium: From the Roman Invasion to the Present Day', 'Cammaerts, Emile', '2008-12-07', 27, 'https://www.gutenberg.org/ebooks/27442', 'en', 3937), +(7054, '\"Beautiful Thoughts\"', 'Drummond, Henry', '2004-10-08', 55, 'https://www.gutenberg.org/ebooks/13677', 'en', 1026), +(7055, 'The Essentials of Illustration\r\nA Practical Guide to the Reproduction of Drawings & Photographs for the Use of Scientists & Others', 'Hill, Thomas George', '2011-01-07', 28, 'https://www.gutenberg.org/ebooks/34869', 'en', 3938), +(7056, 'The Inns of Court', 'Headlam, Cecil', '2017-07-06', 32, 'https://www.gutenberg.org/ebooks/55062', 'en', 856), +(7057, 'A Vindication of the Rights of Woman', 'Wollstonecraft, Mary', '2008-09-01', 16, 'https://www.gutenberg.org/ebooks/26590', 'en', 3939), +(7058, 'Max Havelaar', 'Multatuli', '2010-03-06', 41, 'https://www.gutenberg.org/ebooks/31527', 'de', 3940), +(7059, 'Is the Morality of Jesus Sound?\nA Lecture Delivered Before the Independent Religious Society', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2012-12-18', 17, 'https://www.gutenberg.org/ebooks/41650', 'en', 3941), +(7060, '續子不語', 'Yuan, Mei', '2008-05-03', 12, 'https://www.gutenberg.org/ebooks/25315', 'zh', 179), +(7061, 'Hurrah for New England!\r\nOr, The Virginia Boy\'s Vacation', 'Tuthill, Cornelia L. (Cornelia Louisa)', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11120', 'en', 388), +(7062, 'Kelion Franklin Peddicord of Quirk\'s Scouts, Morgan\'s Kentucky Cavalry, C. S. A.', 'Logan, India W. P. (Indiana Washington Peddicord)', '2018-08-21', 11, 'https://www.gutenberg.org/ebooks/57735', 'en', 83), +(7063, 'Sketches New and Old, Part 4.', 'Twain, Mark', '2004-06-26', 23, 'https://www.gutenberg.org/ebooks/5839', 'en', 2116), +(7064, 'Dal mio verziere : saggi di polemica e di critica', 'Jolanda', '2012-01-28', 9, 'https://www.gutenberg.org/ebooks/38698', 'it', 3942), +(7065, 'Just Gerry', 'Chaundler, Christine', '2010-07-27', 60, 'https://www.gutenberg.org/ebooks/33270', 'en', 3943), +(7066, 'Smithsonian Institution - United States National Museum - Bulletin 240\r\nContributions From the Museum of History and Technology\r\nPapers 34-44 on Science and Technology', 'Museum of History and Technology (U.S.)', '2012-09-17', 22, 'https://www.gutenberg.org/ebooks/40782', 'en', 186), +(7067, 'A Man from the North', 'Bennett, Arnold', '2016-06-06', 30, 'https://www.gutenberg.org/ebooks/52247', 'en', 1079), +(7068, 'The Rustlers of Pecos County', 'Grey, Zane', '2005-04-08', 109, 'https://www.gutenberg.org/ebooks/15580', 'en', 485), +(7069, 'Verse and Worse', 'Graham, Harry', '2011-07-11', 28, 'https://www.gutenberg.org/ebooks/36702', 'en', 3625), +(7070, 'Journal of an Overland Expedition in Australia\r\nFrom Moreton Bay to Port Essington, a distance of upwards of 3000 miles, during the years 1844-1845', 'Leichhardt, Ludwig', '2004-09-25', 26, 'https://www.gutenberg.org/ebooks/5005', 'en', 767), +(7071, 'A Bird of Passage, and Other Stories', 'Harraden, Beatrice', '2013-11-30', 12, 'https://www.gutenberg.org/ebooks/44322', 'en', 409), +(7072, 'Punch, Or the London Charivari, Volume 102, April 16, 1892', 'Various', '2004-12-24', 8, 'https://www.gutenberg.org/ebooks/14452', 'en', 134), +(7073, 'Essays: Scientific, Political, & Speculative; Vol. 2 of 3\r\nLibrary Edition (1891), Containing Seven Essays not before Republished, and Various other Additions.', 'Spencer, Herbert', '2016-10-29', 18, 'https://www.gutenberg.org/ebooks/53395', 'en', 814), +(7074, 'A Canyon Voyage\r\nThe Narrative of the Second Powell Expedition down the Green-Colorado River from Wyoming, and the Explorations on Land, in the Years 1871 and 1872', 'Dellenbaugh, Frederick Samuel', '2007-02-25', 30, 'https://www.gutenberg.org/ebooks/20667', 'en', 3944), +(7075, 'The Tiger Hunter', 'Reid, Mayne', '2008-04-22', 23, 'https://www.gutenberg.org/ebooks/25127', 'en', 3945), +(7076, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 339, November 8, 1828', 'Various', '2004-02-01', 2, 'https://www.gutenberg.org/ebooks/11312', 'en', 133), +(7077, 'Behind the Throne', 'Le Queux, William', '2012-11-23', 12, 'https://www.gutenberg.org/ebooks/41462', 'en', 48), +(7078, 'The Broncho Rider Boys on the Wyoming Trail\r\nOr, A Mystery of the Prairie Stampede', 'Fowler, Frank', '2012-04-30', 8, 'https://www.gutenberg.org/ebooks/39578', 'en', 3946), +(7079, 'The Works of Alexander Pope, Volume 1\r\nPoetry - Volume 1', 'Pope, Alexander', '2010-05-02', 68, 'https://www.gutenberg.org/ebooks/32190', 'en', 3947), +(7080, 'Harper\'s Round Table, February 4, 1896', 'Various', '2016-08-19', 2, 'https://www.gutenberg.org/ebooks/52849', 'en', 668), +(7081, 'Madam How and Lady Why; Or, First Lessons in Earth Lore for Children', 'Kingsley, Charles', '1999-04-01', 212, 'https://www.gutenberg.org/ebooks/1697', 'en', 37), +(7082, 'Hastings and Neighbourhood', 'Higgins, Walter', '2010-07-01', 5, 'https://www.gutenberg.org/ebooks/33042', 'en', 3948), +(7083, 'The Hopi Indians', 'Hough, Walter', '2018-07-14', 11, 'https://www.gutenberg.org/ebooks/57507', 'en', 3949), +(7084, 'Blackwood\'s Edinburgh Magazine, Volume 60, No. 372, October 1846', 'Various', '2011-06-27', 15, 'https://www.gutenberg.org/ebooks/36530', 'en', 274), +(7085, 'The Parasite', 'Doyle, Arthur Conan', '2007-05-25', 10, 'https://www.gutenberg.org/ebooks/21587', 'en', 461), +(7086, 'Historie van het huis van Adriaan: Eene grappige vertelling', 'Anonymous', '2016-05-15', 3, 'https://www.gutenberg.org/ebooks/52075', 'nl', 3078), +(7087, 'Mabini\'s Decalogue for Filipinos', 'Mabini, Apolinario', '2005-01-10', 38, 'https://www.gutenberg.org/ebooks/14660', 'en', 3950), +(7088, 'The True Story of Our National Calamity of Flood, Fire and Tornado', 'Marshall, Logan', '2007-01-27', 31, 'https://www.gutenberg.org/ebooks/20455', 'en', 3951), +(7089, 'The Confessions of Harry Lorrequer — Volume 4', 'Lever, Charles James', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5237', 'en', 61), +(7090, 'Pianonvirittäjä: Yksinäytöksinen selkkaus', 'Soini, Lauri', '2013-11-05', 9, 'https://www.gutenberg.org/ebooks/44110', 'fi', 247), +(7091, 'Recollections with the Third Iowa Regiment', 'Thompson, Seymour D. (Seymour Dwight)', '2014-12-27', 17, 'https://www.gutenberg.org/ebooks/47795', 'en', 1489), +(7092, 'Dot and the Kangaroo', 'Pedley, Ethel C.', '2006-07-22', 28, 'https://www.gutenberg.org/ebooks/18891', 'en', 3952), +(7093, 'The Patchwork Girl of Oz', 'Baum, L. Frank (Lyman Frank)', '1997-06-01', 279, 'https://www.gutenberg.org/ebooks/955', 'en', 3953), +(7094, 'The Morality of Woman, and Other Essays', 'Key, Ellen', '2010-11-09', 15, 'https://www.gutenberg.org/ebooks/34267', 'en', 1619), +(7095, 'Rimrock Trail', 'Dunn, J. Allan, (Joseph Allan)', '2009-04-29', 28, 'https://www.gutenberg.org/ebooks/28638', 'en', 315), +(7096, 'Aasian erämaissa: Kuvauksia matkoilta Keski-Aasiassa ja Kiinassa', 'Hedin, Sven Anders', '2015-12-19', 19, 'https://www.gutenberg.org/ebooks/50722', 'fi', 1992), +(7097, 'The Hoyden', 'Duchess', '2005-06-26', 24, 'https://www.gutenberg.org/ebooks/16137', 'en', 61), +(7098, 'The Western United States: A Geographical Reader', 'Fairbanks, Harold W. (Harold Wellman)', '2007-08-13', 15, 'https://www.gutenberg.org/ebooks/22302', 'en', 3954), +(7099, 'The Hippodrome', 'Hayward, Rachel', '2006-11-28', 14, 'https://www.gutenberg.org/ebooks/19943', 'en', 3955), +(7100, 'Quotes and Images From Memoirs of Count Grammont', 'Hamilton, Anthony, Count', '2005-02-01', 14, 'https://www.gutenberg.org/ebooks/7560', 'en', 1026), +(7101, 'True Tales of the Weird: a record of personal experiences of the supernatural', 'Dickinson, Sidney', '2014-08-21', 38, 'https://www.gutenberg.org/ebooks/46647', 'en', 1245), +(7102, 'The Treason and Death of Benedict Arnold: A Play for a Greek Theatre', 'Chapman, John Jay', '2008-12-31', 20, 'https://www.gutenberg.org/ebooks/27670', 'en', 3956), +(7103, 'The Well at the World\'s End: A Tale', 'Morris, William', '1994-10-01', 405, 'https://www.gutenberg.org/ebooks/169', 'en', 580), +(7104, 'Inari: Romaani', 'Onerva, L.', '2017-03-18', 13, 'https://www.gutenberg.org/ebooks/54382', 'fi', 175), +(7105, 'Suomalaisia kirjailijoita', 'Leino, Eino', '2004-09-12', 24, 'https://www.gutenberg.org/ebooks/13445', 'fi', 3957), +(7106, 'Die Ehrgeizige: Novelle', 'Mann, Heinrich', '2013-07-28', 14, 'https://www.gutenberg.org/ebooks/43335', 'de', 179), +(7107, 'The Children', 'Meynell, Alice', '1999-12-01', 41, 'https://www.gutenberg.org/ebooks/2012', 'en', 3401), +(7108, 'Eve\'s Diary, Part 3', 'Twain, Mark', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/8528', 'en', 2101), +(7109, 'A Prince of Good Fellows', 'Barr, Robert', '2010-03-21', 26, 'https://www.gutenberg.org/ebooks/31715', 'en', 3958), +(7110, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 480, March 12, 1831', 'Various', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/12597', 'en', 133), +(7111, 'The Chautauquan, Vol. 05, December 1884, No. 3', 'Chautauqua Literary and Scientific Circle', '2017-08-03', 6, 'https://www.gutenberg.org/ebooks/55250', 'en', 1115), +(7112, 'Reminiscences of the Great Mutiny 1857-59\r\nIncluding the relief, siege, and capture of Lucknow, and the campaigns in Rohilcund and Oude', 'Forbes-Mitchell, William', '2010-08-13', 13, 'https://www.gutenberg.org/ebooks/33426', 'en', 3959), +(7113, 'Onnen aalloissa: Historiallisia kertomuksia', 'Ivalo, Santeri', '2019-02-19', 4, 'https://www.gutenberg.org/ebooks/58917', 'fi', 175), +(7114, 'Kuoleman tarkoitus', 'Bourget, Paul', '2018-05-14', 14, 'https://www.gutenberg.org/ebooks/57163', 'fi', 3960), +(7115, 'The Continental Monthly, Vol. 6, No. 6, December 1864\nDevoted To Literature And National Policy', 'Various', '2008-02-02', 14, 'https://www.gutenberg.org/ebooks/24491', 'en', 162), +(7116, '蜃樓志', 'Yulinglaoren, active 18th century', '2008-05-20', 48, 'https://www.gutenberg.org/ebooks/25543', 'zh', 1003), +(7117, 'Human Genome Project, Build 34, Chromosome Number 02', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11776', 'en', 1385), +(7118, 'William de Colchester, Abbot of Westminster', 'Pearce, Ernest Harold', '2011-08-03', 8, 'https://www.gutenberg.org/ebooks/36968', 'en', 3961), +(7119, 'The Fairy Mythology\nIllustrative of the Romance and Superstition of Various Countries', 'Keightley, Thomas', '2012-10-09', 123, 'https://www.gutenberg.org/ebooks/41006', 'en', 1007), +(7120, 'The Lion and the Mouse: A Story of American Life', 'Hornblow, Arthur', '2004-11-29', 32, 'https://www.gutenberg.org/ebooks/14204', 'en', 3962), +(7121, 'A Final Reckoning: A Tale of Bush Life in Australia', 'Henty, G. A. (George Alfred)', '2006-12-05', 76, 'https://www.gutenberg.org/ebooks/20031', 'en', 792), +(7122, 'The Dales of Arcady', 'Ratcliffe, Dorothy Una', '2011-08-14', 5, 'https://www.gutenberg.org/ebooks/37086', 'en', 968), +(7123, 'Die Mitschuldigen', 'Goethe, Johann Wolfgang von', '2004-05-01', 31, 'https://www.gutenberg.org/ebooks/5653', 'de', 907), +(7124, 'The Missouri Outlaws', 'Aimard, Gustave', '2014-01-03', 16, 'https://www.gutenberg.org/ebooks/44574', 'en', 315), +(7125, 'The Evanston Colloquium: Lectures on Mathematics\r\nDelivered From Aug. 28 to Sept. 9, 1893 Before Members of the Congress of Mathematics Held in Connection with the World\'s Fair in Chicago', 'Klein, Felix', '2011-05-18', 38, 'https://www.gutenberg.org/ebooks/36154', 'en', 1044), +(7126, 'The Hohenzollerns in America\r\nWith the Bolsheviks in Berlin and Other Impossibilities', 'Leacock, Stephen', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/4781', 'en', 3963), +(7127, 'The Southern Literary Messenger, Vol. I., No. 2, October, 1834', 'Various', '2016-06-25', 7, 'https://www.gutenberg.org/ebooks/52411', 'en', 522), +(7128, 'Yarmouth Notes, 1830-1872. Collated from the File of the Norwich Mercury', 'Palmer, Frederick Danby', '2012-06-05', 4, 'https://www.gutenberg.org/ebooks/39920', 'en', 3964), +(7129, 'Twelve Stories and a Dream', 'Wells, H. G. (Herbert George)', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8970', 'en', 179), +(7130, 'The Mysteries of London, v. 2/4', 'Reynolds, George W. M. (George William MacArthur)', '2016-02-24', 41, 'https://www.gutenberg.org/ebooks/51294', 'en', 1079), +(7131, 'Burned Bridges', 'Sinclair, Bertrand W.', '2005-08-19', 9, 'https://www.gutenberg.org/ebooks/16553', 'en', 3965), +(7132, 'Electricity for Boys', 'Zerbe, James Slough', '2007-09-25', 107, 'https://www.gutenberg.org/ebooks/22766', 'en', 3966), +(7133, 'Adventures of Huckleberry Finn, Chapters 21 to 25', 'Twain, Mark', '2004-06-27', 26, 'https://www.gutenberg.org/ebooks/7104', 'en', 835), +(7134, 'Tour in England, Ireland, and France, in the years 1826, 1827, 1828 and 1829.\r\nwith remarks on the manners and customs of the inhabitants, and anecdotes of distiguished public characters. In a series of letters by a German Prince.', 'Pückler-Muskau, Hermann, Fürst von', '2014-07-08', 85, 'https://www.gutenberg.org/ebooks/46223', 'en', 3967), +(7135, 'Epidemics Examined and Explained: or, Living Germs Proved by Analogy to be a Source of Disease', 'Grove, John', '2010-12-09', 13, 'https://www.gutenberg.org/ebooks/34603', 'en', 3968), +(7136, 'The Parts Men Play', 'Baxter, Beverley', '2006-01-09', 11, 'https://www.gutenberg.org/ebooks/17481', 'en', 843), +(7137, 'Women of India', 'Rothfield, Otto', '2015-10-30', 10, 'https://www.gutenberg.org/ebooks/50346', 'en', 2422), +(7138, 'The Little Clown', 'Cobb, Thomas', '2010-02-24', 7, 'https://www.gutenberg.org/ebooks/31371', 'en', 1817), +(7139, 'God\nOutlines of the new theology, based on facts, science,\nnature, reason, intuition, revelation and common sense', 'Curtis, T. D. (Thomas Day)', '2013-05-10', 8, 'https://www.gutenberg.org/ebooks/42683', 'en', 1808), +(7140, 'Tutti Frutti, Erster Band (von 5)\nAus den Papieren des Verstorbenen', 'Pückler-Muskau, Hermann, Fürst von', '2017-09-26', 7, 'https://www.gutenberg.org/ebooks/55634', 'de', 3969), +(7141, 'Virgilia; or, Out of the Lion\'s Mouth', 'Clark, Felicia Buttz', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7938', 'en', 3970), +(7142, 'Cuentos y diálogos', 'Valera, Juan', '2008-11-09', 20, 'https://www.gutenberg.org/ebooks/27214', 'es', 1696), +(7143, 'A Compilation of the Messages and Papers of the Presidents. Volume 7, part 2: Rutherford B. Hayes', NULL, '2004-07-25', 5, 'https://www.gutenberg.org/ebooks/13021', 'en', 337), +(7144, 'James\'s Account of S. H. Long\'s Expedition, 1819-1820, part 1', 'James, Edwin', '2013-09-16', 35, 'https://www.gutenberg.org/ebooks/43751', 'en', 3971), +(7145, 'The Circus Boys in Dixie Land; Or, Winning the Plaudits of the Sunny South', 'Darlington, Edgar B. P.', '2001-01-01', 12, 'https://www.gutenberg.org/ebooks/2476', 'en', 323), +(7146, 'Home Lyrics: A Book of Poems', 'Battersby, H. S. (Hannah S.)', '2005-01-01', 12, 'https://www.gutenberg.org/ebooks/7336', 'en', 1237), +(7147, 'The Moving Picture Boys and the Flood; Or, Perilous Days on the Mississippi', 'Appleton, Victor', '2014-06-17', 12, 'https://www.gutenberg.org/ebooks/46011', 'en', 3729), +(7148, 'Chronicles of England, Scotland and Ireland (2 of 6): England (05 of 12)\r\nHenrie the Second', 'Holinshed, Raphael', '2005-09-27', 26, 'https://www.gutenberg.org/ebooks/16761', 'en', 288), +(7149, 'As It Was in the Beginning', 'Mighels, Philip Verrill', '2007-09-09', 21, 'https://www.gutenberg.org/ebooks/22554', 'en', 3972), +(7150, 'Traits of American Humour, Vol. 3 of 3', NULL, '2015-09-03', 8, 'https://www.gutenberg.org/ebooks/49865', 'en', 190), +(7151, 'Folhas cahidas, apanhadas na lama por um antigo juiz das almas de Campanhan', 'Castelo Branco, Camilo', '2007-11-15', 14, 'https://www.gutenberg.org/ebooks/23486', 'pt', 8), +(7152, 'On English Poetry\r\nBeing an Irregular Approach to the Psychology of This Art, from Evidence Mainly Subjective', 'Graves, Robert', '2015-10-10', 37, 'https://www.gutenberg.org/ebooks/50174', 'en', 3973), +(7153, 'The Islands of Magic: Legends, Folk and Fairy Tales from the Azores', 'Eells, Elsie Spicer', '2011-09-28', 45, 'https://www.gutenberg.org/ebooks/34431', 'en', 3974), +(7154, 'The Greek Romances of Heliodorus, Longus and Achilles Tatius\r\nComprising the Ethiopics; or, Adventures of Theagenes and Chariclea; The pastoral amours of Daphnis and Chloe; and the loves of Clitopho and Leucippe', 'Longus', '2017-08-21', 58, 'https://www.gutenberg.org/ebooks/55406', 'en', 3975), +(7155, 'Oom Gert Vertel en Ander Gedigte', 'Leipoldt, C. Louis (Christiaan Louis)', '2006-11-06', 29, 'https://www.gutenberg.org/ebooks/19729', 'af', 8), +(7156, 'Rilla of Ingleside', 'Montgomery, L. M. (Lucy Maud)', '2003-02-01', 594, 'https://www.gutenberg.org/ebooks/3796', 'en', 3976), +(7157, 'Talkers: With Illustrations', 'Bate, John', '2010-01-31', 12, 'https://www.gutenberg.org/ebooks/31143', 'en', 3977), +(7158, 'Der Weibsteufel: Drama in fünf Akten', 'Schönherr, Karl', '2015-05-27', 17, 'https://www.gutenberg.org/ebooks/49059', 'de', 3978); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(7159, 'The Cock, The Mouse and the Little Red Hen\nan old tale retold', 'Lefèvre, Félicité', '2009-09-13', 13, 'https://www.gutenberg.org/ebooks/29980', 'en', 1223), +(7160, 'Bits of Blarney', 'Mackenzie, R. Shelton (Robert Shelton)', '2013-08-26', 8, 'https://www.gutenberg.org/ebooks/43563', 'en', 3979), +(7161, 'Seventeen Species of Bats Recorded from Barro Colorado Island, Panama Canal Zone', 'Jackson, William B.', '2009-05-17', 9, 'https://www.gutenberg.org/ebooks/28852', 'en', 2561), +(7162, 'Isaac Bickerstaff, Physician and Astrologer', 'Steele, Richard, Sir', '2001-05-01', 61, 'https://www.gutenberg.org/ebooks/2644', 'en', 3980), +(7163, 'Of All Possible Worlds', 'Tenn, William', '2016-01-17', 47, 'https://www.gutenberg.org/ebooks/50948', 'en', 26), +(7164, 'Itinerario da viagem, que fez a Jerusalem o M.R.P.', 'Guerrero, Francisco', '2009-09-26', 14, 'https://www.gutenberg.org/ebooks/30091', 'pt', 3981), +(7165, '豔異編', 'Wang, Shizhen', '2008-10-25', 12, 'https://www.gutenberg.org/ebooks/27026', 'zh', 947), +(7166, 'The Night Before Christmas and Other Popular Stories For Children', 'Various', '2004-08-18', 55, 'https://www.gutenberg.org/ebooks/13213', 'en', 381), +(7167, 'Punainen leski: Romaani', 'Elvestad, Sven', '2018-06-18', 6, 'https://www.gutenberg.org/ebooks/57351', 'fi', 7), +(7168, 'Red Masquerade: Being the Story of the Lone Wolf\'s Daughter', 'Vance, Louis Joseph', '2003-12-01', 28, 'https://www.gutenberg.org/ebooks/10496', 'en', 3657), +(7169, 'Encyclopaedia Britannica, 11th Edition, \"Bohemia\" to \"Borgia, Francis\"\r\nVolume 4, Slice 2', 'Various', '2010-09-03', 35, 'https://www.gutenberg.org/ebooks/33614', 'en', 1081), +(7170, 'Scrambles Amongst the Alps in the Years 1860-69', 'Whymper, Edward', '2012-10-29', 51, 'https://www.gutenberg.org/ebooks/41234', 'en', 3982), +(7171, 'A Nobleman\'s Nest', 'Turgenev, Ivan Sergeevich', '2008-06-12', 30, 'https://www.gutenberg.org/ebooks/25771', 'en', 179), +(7172, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nArkansas Narratives, Part 5', 'United States. Work Projects Administration', '2004-03-01', 57, 'https://www.gutenberg.org/ebooks/11544', 'en', 3983), +(7173, 'Historia de las Indias (vol. 4 de 5)', 'Casas, Bartolomé de las', '2018-01-01', 34, 'https://www.gutenberg.org/ebooks/56283', 'es', 3984), +(7174, 'The Sisters — Volume 1', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5461', 'en', 803), +(7175, 'Household stories from the Land of Hofer; or, Popular Myths of Tirol', 'Busk, Rachel Harriette', '2014-01-24', 18, 'https://www.gutenberg.org/ebooks/44746', 'en', 3985), +(7176, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 12, No. 30, September, 1873', 'Various', '2004-11-13', 17, 'https://www.gutenberg.org/ebooks/14036', 'en', 210), +(7177, 'The Story of Paper-making\r\nAn account of paper-making from its earliest known record down to the present time', 'Butler, Frank O.', '2018-11-21', 33, 'https://www.gutenberg.org/ebooks/58319', 'en', 1030), +(7178, 'Autobiography of Benjamin Franklin', 'Franklin, Benjamin', '2006-12-28', 1300, 'https://www.gutenberg.org/ebooks/20203', 'en', 3754), +(7179, 'Poems', 'McElroy, Crocket', '2016-07-22', 6, 'https://www.gutenberg.org/ebooks/52623', 'en', 178), +(7180, 'Blackwood\'s Edinburgh Magazine, Volume 69, No. 423, January 1851', 'Various', '2014-05-18', 10, 'https://www.gutenberg.org/ebooks/45694', 'en', 711), +(7181, 'Dangerous Ground; or, The Rival Detectives', 'Lynch, Lawrence L.', '2011-06-10', 16, 'https://www.gutenberg.org/ebooks/36366', 'en', 128), +(7182, 'Nada the Lily', 'Haggard, H. Rider (Henry Rider)', '1998-02-01', 61, 'https://www.gutenberg.org/ebooks/1207', 'en', 3986), +(7183, 'The Vampire Cat\r\nA Play in one act from the Japanese legend of the Nabeshima cat', 'Etten, Gerard Van', '2012-07-01', 28, 'https://www.gutenberg.org/ebooks/40120', 'en', 3987), +(7184, 'When the Saints Go Marching In', 'McGuinn, Roger', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/10650', 'en', 1379), +(7185, 'Mark Tidd in the Backwoods', 'Kelland, Clarence Budington', '2018-05-22', 12, 'https://www.gutenberg.org/ebooks/57197', 'en', 1655), +(7186, 'Jack and Jill and Old Dame Gill', 'Unknown', '2008-01-31', 14, 'https://www.gutenberg.org/ebooks/24465', 'en', 2296), +(7187, 'Erzgebirgische Geschichten. Erster Band', 'Peters, August', '2017-11-25', 9, 'https://www.gutenberg.org/ebooks/56045', 'de', 3988), +(7188, 'Human Genome Project, Build 34, Chromosome Number 08', 'Human Genome Project', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11782', 'en', 1385), +(7189, 'Discussion on American Slavery', 'Thompson, George', '2010-05-23', 17, 'https://www.gutenberg.org/ebooks/32500', 'en', 125), +(7190, 'The Lay of the Nibelung Men', NULL, '2019-06-28', 68, 'https://www.gutenberg.org/ebooks/59831', 'en', 3095), +(7191, 'The Heart of Scotland', 'Moncrieff, A. R. Hope (Ascott Robert Hope)', '2016-11-16', 9, 'https://www.gutenberg.org/ebooks/53537', 'en', 3989), +(7192, 'The Works of Robert G. Ingersoll, Vol. 06 (of 12)\r\nDresden Edition—Discussions', 'Ingersoll, Robert Green', '2012-02-09', 94, 'https://www.gutenberg.org/ebooks/38806', 'en', 1191), +(7193, 'A Brief Handbook of English Authors', 'Adams, Oscar Fay', '2011-08-14', 12, 'https://www.gutenberg.org/ebooks/37072', 'en', 2847), +(7194, 'Loppu hyvä, kaikki hyvä', 'Shakespeare, William', '2014-01-04', 20, 'https://www.gutenberg.org/ebooks/44580', 'fi', 3990), +(7195, 'Connie Carl at Rainbow Ranch', 'Clark, Joan', '2014-04-22', 11, 'https://www.gutenberg.org/ebooks/45452', 'en', 1287), +(7196, 'Theocritus, Bion and Moschus, Rendered into English Prose', 'Theocritus', '2003-12-01', 59, 'https://www.gutenberg.org/ebooks/4775', 'en', 3866), +(7197, 'Suomalainen linnanneiti josta tuli kuningatar', 'Wilkuna, Kyösti', '2018-04-02', 8, 'https://www.gutenberg.org/ebooks/56879', 'fi', 175), +(7198, 'Betty Trevor', 'Vaizey, George de Horne, Mrs.', '2007-04-17', 25, 'https://www.gutenberg.org/ebooks/21117', 'en', 3991), +(7199, 'The American Architect and Building News, Vol. 27, No. 733, January 11, 1890', 'Various', '2005-03-11', 12, 'https://www.gutenberg.org/ebooks/15322', 'en', 2140), +(7200, 'Anzeiger des Germanischen Nationalmuseums, Jahrgang 1901', 'Various', '2016-02-22', 6, 'https://www.gutenberg.org/ebooks/51260', 'de', 1921), +(7201, 'Off on a Comet', 'Verne, Jules', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8984', 'en', 26), +(7202, 'Perils and Captivity\r\nComprising The sufferings of the Picard family after the shipwreck of the Medusa, in the year 1816; Narrative of the captivity of M. de Brisson, in the year 1785; Voyage of Madame Godin along the river of the Amazons, in the year 1770.', 'Dard, Charlotte-Adelaïde', '2007-09-28', 50, 'https://www.gutenberg.org/ebooks/22792', 'en', 3992), +(7203, 'The Wound Dresser\r\nA Series of Letters Written from the Hospitals in Washington during the War of the Rebellion', 'Whitman, Walt', '2011-03-30', 34, 'https://www.gutenberg.org/ebooks/35725', 'en', 3993), +(7204, 'The Imprudence of Prue', 'Fisher, Sophie', '2014-11-06', 20, 'https://www.gutenberg.org/ebooks/47305', 'en', 3994), +(7205, 'Stories by Foreign Authors: German — Volume 2', NULL, '2004-07-01', 22, 'https://www.gutenberg.org/ebooks/6022', 'en', 870), +(7206, 'Little Journeys to the Homes of the Great Philosophers, Volume 8', 'Hubbard, Elbert', '2007-11-27', 36, 'https://www.gutenberg.org/ebooks/23640', 'en', 3995), +(7207, 'The Lobster Fishery of Maine\r\nBulletin of the United States Fish Commission, Vol. 19, Pages 241-265, 1899', 'Cobb, John N. (John Nathan)', '2006-01-07', 5, 'https://www.gutenberg.org/ebooks/17475', 'en', 3996), +(7208, 'The Inn at the Red Oak', 'Griswold, Latta', '2006-02-01', 30, 'https://www.gutenberg.org/ebooks/9856', 'en', 759), +(7209, 'Notes on the Diplomatic History of the Jewish Question\r\nWith Texts of Protocols, Treaty Stipulations and Other Public Acts and Official Documents', 'Wolf, Lucien', '2010-02-25', 18, 'https://www.gutenberg.org/ebooks/31385', 'en', 3997), +(7210, 'La Mere Bauche\r\nFrom Tales of All Countries', 'Trollope, Anthony', '2002-11-01', 16, 'https://www.gutenberg.org/ebooks/3550', 'en', 179), +(7211, 'Fires - Book 1: The Stone, and Other Tales', 'Gibson, Wilfrid Wilson', '2013-05-09', 11, 'https://www.gutenberg.org/ebooks/42677', 'en', 2164), +(7212, 'The Atlantic Monthly, Volume 09, No. 55, May, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/12107', 'en', 1227), +(7213, 'A Prize for Edie', 'Bone, Jesse F. (Jesse Franklin)', '2008-08-16', 57, 'https://www.gutenberg.org/ebooks/26332', 'en', 2797), +(7214, 'The Irish Penny Journal, Vol. 1 No. 30, January 23, 1841', 'Various', '2017-05-12', 0, 'https://www.gutenberg.org/ebooks/54712', 'en', 81), +(7215, 'The Founder of New France: A Chronicle of Champlain', 'Colby, Charles W. (Charles William)', '2009-10-15', 27, 'https://www.gutenberg.org/ebooks/30257', 'en', 3998), +(7216, 'New York', 'Cooper, James Fenimore', '2001-01-01', 42, 'https://www.gutenberg.org/ebooks/2482', 'en', 3999), +(7217, 'The Three Impostors; or, The Transmutations', 'Machen, Arthur', '2011-03-08', 158, 'https://www.gutenberg.org/ebooks/35517', 'en', 61), +(7218, 'La conquête d\'une cuisinière I\nSeul contre trois belles-mères', 'Chavette, Eugène', '2005-10-03', 34, 'https://www.gutenberg.org/ebooks/16795', 'fr', 61), +(7219, 'Gereformeerde dogmatiek. Eerste deel. Inleiding. Principia.', 'Bavinck, Herman', '2016-01-27', 12, 'https://www.gutenberg.org/ebooks/51052', 'nl', 2382), +(7220, 'The Mentor: Venice, the Island City, Vol. 1, Num. 27, Serial No. 27', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2015-09-06', 8, 'https://www.gutenberg.org/ebooks/49891', 'en', 592), +(7221, 'Harper\'s Young People, September 21, 1880\nAn Illustrated Weekly', 'Various', '2009-06-17', 15, 'https://www.gutenberg.org/ebooks/29148', 'en', 479), +(7222, 'A History of the Four Georges and of William IV, Volume IV', 'McCarthy, Justin', '2007-11-13', 31, 'https://www.gutenberg.org/ebooks/23472', 'en', 4000), +(7223, 'L\'isola dei baci: Romanzo erotico-sociale', 'Marinetti, F. T.', '2015-05-12', 51, 'https://www.gutenberg.org/ebooks/48943', 'it', 1544), +(7224, 'Penelope: A Comedy in Three Acts', 'Maugham, W. Somerset (William Somerset)', '2015-10-11', 32, 'https://www.gutenberg.org/ebooks/50180', 'en', 4001), +(7225, 'The Strange Case of Cavendish', 'Parrish, Randall', '2006-01-31', 20, 'https://www.gutenberg.org/ebooks/17647', 'en', 1335), +(7226, 'Questão do Palheiro: Coimbrões e Lisboetas', 'Loureiro, Urbano', '2010-01-04', 7, 'https://www.gutenberg.org/ebooks/30859', 'pt', 8), +(7227, 'On the Phenomena of Hybridity in the Genus Homo', 'Broca, Paul', '2014-10-17', 24, 'https://www.gutenberg.org/ebooks/47137', 'en', 4002), +(7228, 'The Trail of the Sword, Complete', 'Parker, Gilbert', '2004-11-16', 12, 'https://www.gutenberg.org/ebooks/6210', 'en', 1890), +(7229, 'Overland: A Novel', 'De Forest, John William', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12335', 'en', 2547), +(7230, 'Reisontmoetingen van Joachim Polsbroekerwoud en zijne Vrienden', 'Gewin, Bernardus', '2008-07-21', 5, 'https://www.gutenberg.org/ebooks/26100', 'nl', 3386), +(7231, 'Coniston — Volume 01', 'Churchill, Winston', '2004-10-17', 9, 'https://www.gutenberg.org/ebooks/3762', 'en', 539), +(7232, 'The Expositor\'s Bible: The Psalms, Vol. 1\nPsalms I.-XXXVIII.', 'Maclaren, Alexander', '2013-03-31', 26, 'https://www.gutenberg.org/ebooks/42445', 'en', 1852), +(7233, 'Talismani', 'Scott, Walter', '2009-09-13', 12, 'https://www.gutenberg.org/ebooks/29974', 'fi', 4003), +(7234, 'Notes on the Fenland; with A Description of the Shippea Man', 'Hughes, Thomas McKenny', '2013-08-29', 11, 'https://www.gutenberg.org/ebooks/43597', 'en', 4004), +(7235, 'Benign Stupors: A Study of a New Manic-Depressive Reaction Type', 'Hoch, August', '2009-09-22', 26, 'https://www.gutenberg.org/ebooks/30065', 'en', 4005), +(7236, 'The Miraculous Pitcher\n(From: \"A Wonder-Book for Girls and Boys\")', 'Hawthorne, Nathaniel', '2005-11-01', 101, 'https://www.gutenberg.org/ebooks/9258', 'en', 2139), +(7237, 'Harper\'s Round Table, March 3, 1896, Vol. XVII., No. 853', 'Various', '2017-04-09', 4, 'https://www.gutenberg.org/ebooks/54520', 'en', 668), +(7238, 'Clarissa Harlowe; or the history of a young lady — Volume 4', 'Richardson, Samuel', '2003-12-01', 73, 'https://www.gutenberg.org/ebooks/10462', 'en', 1061), +(7239, 'Noticia de livreiros e impressores de Lisbôa na 2ª metade do seculo XVI', 'Brito, Gomes de', '2008-02-20', 5, 'https://www.gutenberg.org/ebooks/24657', 'pt', 4006), +(7240, 'The Animal Story Book', NULL, '2011-12-04', 161, 'https://www.gutenberg.org/ebooks/38208', 'en', 4007), +(7241, 'The Man Against the Sky: A Book of Poems', 'Robinson, Edwin Arlington', '1997-09-01', 31, 'https://www.gutenberg.org/ebooks/1035', 'en', 178), +(7242, 'The Intoxicated Ghost, and other stories', 'Bates, Arlo', '2012-07-24', 19, 'https://www.gutenberg.org/ebooks/40312', 'en', 112), +(7243, 'Jacob\'s Ladder', 'Oppenheim, E. Phillips (Edward Phillips)', '2010-06-07', 37, 'https://www.gutenberg.org/ebooks/32732', 'en', 61), +(7244, 'The Proud Prince', 'McCarthy, Justin H. (Justin Huntly)', '2008-06-14', 10, 'https://www.gutenberg.org/ebooks/25785', 'en', 4008), +(7245, 'Derelicts: An Account of Ships Lost at Sea in General Commercial Traffic\r\nAnd a Brief History of Blockade Runners Stranded Along the North Carolina Coast, 1861-1865', 'Sprunt, James', '2017-12-31', 11, 'https://www.gutenberg.org/ebooks/56277', 'en', 4009), +(7246, 'Homo Sum — Volume 02', 'Ebers, Georg', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/5495', 'en', 2962), +(7247, 'The New-York Weekly Magazine, or Miscellaneous Repository\r\nForming an Interesting Collection of Original and Select Literary Productions in Prose and Verse', NULL, '2011-08-28', 11, 'https://www.gutenberg.org/ebooks/37240', 'en', 1227), +(7248, 'Harper\'s Outdoor Book for Boys', 'Adams, Joseph H. (Joseph Henry)', '2016-12-10', 24, 'https://www.gutenberg.org/ebooks/53705', 'en', 1560), +(7249, 'Bucky O\'Connor: A Tale of the Unfenced Border', 'Raine, William MacLeod', '1999-07-01', 92, 'https://www.gutenberg.org/ebooks/1809', 'en', 315), +(7250, 'Outlines of Greek and Roman Medicine', 'Elliott, James, Sir', '2007-05-05', 45, 'https://www.gutenberg.org/ebooks/21325', 'en', 4010), +(7251, 'Lessons of the War: Being Comments from Week to Week to the Relief of Ladysmith', 'Wilkinson, Spenser', '2005-02-19', 20, 'https://www.gutenberg.org/ebooks/15110', 'en', 1956), +(7252, 'Life and adventures of Frank and Jesse James, the noted western outlaws', 'Dacus, J. A. (Joseph A.)', '2014-05-16', 32, 'https://www.gutenberg.org/ebooks/45660', 'en', 4011), +(7253, 'The Story of Sonny Sahib', 'Duncan, Sara Jeannette', '2003-10-01', 23, 'https://www.gutenberg.org/ebooks/4547', 'en', 4012), +(7254, 'Karjalan kankahilta I', 'Anonymous', '2011-06-12', 16, 'https://www.gutenberg.org/ebooks/36392', 'fi', 179), +(7255, 'P\'laski\'s Tunament\n1891', 'Page, Thomas Nelson', '2007-10-12', 11, 'https://www.gutenberg.org/ebooks/23016', 'en', 179), +(7256, 'Pepita Jiménez', 'Valera, Juan', '2005-12-04', 63, 'https://www.gutenberg.org/ebooks/17223', 'es', 4013), +(7257, 'Bobby Blake on a Plantation; Or, Lost in the Great Swamp', 'Warner, Frank A.', '2014-12-06', 23, 'https://www.gutenberg.org/ebooks/47553', 'en', 4014), +(7258, 'Umbrellas and Their History', 'Sangster, William', '2004-10-01', 37, 'https://www.gutenberg.org/ebooks/6674', 'en', 4015), +(7259, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 17, August 14, 1858', NULL, '2017-06-25', 0, 'https://www.gutenberg.org/ebooks/54978', 'en', 1741), +(7260, 'The Bacchae of Euripides', 'Euripides', '2011-02-04', 185, 'https://www.gutenberg.org/ebooks/35173', 'en', 2595), +(7261, 'The Turkish Empire, Its Growth and Decay', 'Eversley, G. Shaw-Lefevre (George Shaw-Lefevre), Baron', '2014-08-02', 44, 'https://www.gutenberg.org/ebooks/46481', 'en', 4016), +(7262, 'Bullet with His Name', 'Leiber, Fritz', '2016-03-13', 35, 'https://www.gutenberg.org/ebooks/51436', 'en', 23), +(7263, 'The Flying Stingaree: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2009-11-03', 18, 'https://www.gutenberg.org/ebooks/30401', 'en', 323), +(7264, 'Justicia Nang Dios', 'Sequera, Mariano', '2004-10-10', 9, 'https://www.gutenberg.org/ebooks/13683', 'tl', 4017), +(7265, 'The New Forest: Its History and Its Scenery', 'Wise, John R. (John Richard)', '2017-02-09', 32, 'https://www.gutenberg.org/ebooks/54144', 'en', 4018), +(7266, 'The American Race\nA Linguistic Classification and Ethnographic Description of the Native Tribes of North and South America', 'Brinton, Daniel G. (Daniel Garrison)', '2017-07-12', 14, 'https://www.gutenberg.org/ebooks/55096', 'en', 2635), +(7267, 'Quatre mois de l\'expédition de Garibaldi en Sicilie et Italie', 'Durand-Brager', '2004-06-28', 5, 'https://www.gutenberg.org/ebooks/12751', 'fr', 488), +(7268, 'Ivanhoe', 'Scott, Walter', '2008-09-09', 52, 'https://www.gutenberg.org/ebooks/26564', 'nl', 4019), +(7269, 'At Suvla Bay\r\nBeing the notes and sketches of scenes, characters and adventures of the Dardanelles campaign, made by John Hargrave (\"White Fox\") while serving with the 32nd field ambulance, X division, Mediterranean expeditionary force, during the great war.', 'Hargrave, John', '2002-07-01', 43, 'https://www.gutenberg.org/ebooks/3306', 'en', 4020), +(7270, 'Histoire de France - Moyen Âge; (Vol. 4 / 10)', 'Michelet, Jules', '2013-02-05', 17, 'https://www.gutenberg.org/ebooks/42021', 'fr', 624), +(7271, 'Roman Women', 'Brittain, Alfred', '2010-05-12', 19, 'https://www.gutenberg.org/ebooks/32356', 'en', 4021), +(7272, 'History of English Literature from \"Beowulf\" to Swinburne', 'Lang, Andrew', '2018-02-21', 95, 'https://www.gutenberg.org/ebooks/56613', 'en', 1694), +(7273, 'La Fiammetta', 'Boccaccio, Giovanni', '2003-11-01', 46, 'https://www.gutenberg.org/ebooks/10006', 'en', 61), +(7274, '東度記', 'Qingxidaoren, active 17th century', '2008-01-10', 38, 'https://www.gutenberg.org/ebooks/24233', 'zh', 1003), +(7275, 'De Zwervers van het Groote Leger: Historisch verhaal uit het tijdperk 1810-1813', 'Visser, Piet', '2010-07-28', 10, 'https://www.gutenberg.org/ebooks/33284', 'nl', 98), +(7276, 'The Art of Lawn Tennis', 'Tilden, William T. (William Tatem)', '1998-09-01', 24, 'https://www.gutenberg.org/ebooks/1451', 'en', 4022), +(7277, 'Poor Folk in Spain', 'Gordon, Cora', '2012-09-16', 11, 'https://www.gutenberg.org/ebooks/40776', 'en', 4023), +(7278, 'The Island Queen', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 74, 'https://www.gutenberg.org/ebooks/21741', 'en', 1447), +(7279, 'Le capitaine Paul', 'Dumas, Alexandre', '2005-04-06', 41, 'https://www.gutenberg.org/ebooks/15574', 'fr', 4024), +(7280, 'The Putumayo, the Devil\'s Paradise\r\nTravels in the Peruvian Amazon Region and an Account of the Atrocities Committed upon the Indians Therein', 'Hardenburg, W. E. (Walter Ernest)', '2014-03-24', 39, 'https://www.gutenberg.org/ebooks/45204', 'en', 4025), +(7281, 'Diary of Samuel Pepys — Volume 07: August/September 1660', 'Pepys, Samuel', '2004-11-29', 16, 'https://www.gutenberg.org/ebooks/4123', 'en', 478), +(7282, 'Count Brühl', 'Kraszewski, Józef Ignacy', '2011-10-04', 18, 'https://www.gutenberg.org/ebooks/37624', 'en', 4026), +(7283, 'Robin Hood;\r\nBeing a Complete History of All the Notable and Merry Exploits Performed by Him and His Men on Many Occasions', 'Anonymous', '2019-01-29', 27, 'https://www.gutenberg.org/ebooks/58789', 'en', 4027), +(7284, 'Patsy Carroll Under Southern Skies', 'Chase, Josephine', '2016-10-25', 14, 'https://www.gutenberg.org/ebooks/53361', 'en', 82), +(7285, 'The Jungle Baby', 'Farrow, G. E. (George Edward)', '2007-02-26', 25, 'https://www.gutenberg.org/ebooks/20693', 'en', 1025), +(7286, 'Kalevala', 'Anonymous', '2018-01-24', 28, 'https://www.gutenberg.org/ebooks/56421', 'sv', 4028), +(7287, 'Addison', 'Courthope, William John', '2012-11-27', 10, 'https://www.gutenberg.org/ebooks/41496', 'en', 2896), +(7288, 'In the Oregon Country\r\nOut-Doors in Oregon, Washington, and California Together with some Legendary Lore, and Glimpses of the Modern West in the Making', 'Putnam, George Palmer', '2010-04-28', 109, 'https://www.gutenberg.org/ebooks/32164', 'en', 4029), +(7289, 'Webster\'s Seventh of March Speech and the Secession Movement, 1850', 'Foster, Herbert Darling', '1999-03-01', 25, 'https://www.gutenberg.org/ebooks/1663', 'en', 4030), +(7290, 'La lucha por la vida: Aurora roja', 'Baroja, Pío', '2012-08-20', 44, 'https://www.gutenberg.org/ebooks/40544', 'es', 1384), +(7291, 'Old Creole Days: A Story of Creole Life', 'Cable, George Washington', '2003-11-01', 46, 'https://www.gutenberg.org/ebooks/10234', 'en', 4031), +(7292, 'The Physical Life of Woman: Advice to the Maiden, Wife and Mother', 'Napheys, George H. (George Henry)', '2007-12-24', 59, 'https://www.gutenberg.org/ebooks/24001', 'en', 755), +(7293, 'Les Dernières Années du Marquis et de la Marquise de Bombelles', 'Fleury, Maurice, comte', '2014-02-28', 10, 'https://www.gutenberg.org/ebooks/45036', 'fr', 4032), +(7294, 'The Emancipated', 'Gissing, George', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4311', 'en', 137), +(7295, 'The Phantom Ship', 'Marryat, Frederick', '2007-05-22', 22, 'https://www.gutenberg.org/ebooks/21573', 'en', 461), +(7296, 'The Scottish Highlands, Highland Clans and Highland Regiments, Volume 2 (of 2)', NULL, '2019-05-18', 46, 'https://www.gutenberg.org/ebooks/59469', 'en', 1400), +(7297, 'The Flamingo Feather', 'Munroe, Kirk', '2005-05-02', 19, 'https://www.gutenberg.org/ebooks/15746', 'en', 4033), +(7298, 'Edge Hill: The Battle and Battlefield; With Notes on Banbury & Thereabout', 'Walford, Edwin Alfred', '2010-06-24', 207, 'https://www.gutenberg.org/ebooks/32958', 'en', 4034), +(7299, 'A Guide to the Exhibition Illustrating Greek and Roman Life', 'British Museum. Department of Greek and Roman Antiquities', '2016-05-16', 12, 'https://www.gutenberg.org/ebooks/52081', 'en', 4035), +(7300, 'Snakes: Curiosities and Wonders of Serpent Life', 'Hopley, Catherine Cooper', '2016-09-27', 15, 'https://www.gutenberg.org/ebooks/53153', 'en', 4036), +(7301, 'Punch, or the London Charivari, Volume 102, May 14, 1892', 'Various', '2005-01-14', 5, 'https://www.gutenberg.org/ebooks/14694', 'en', 134), +(7302, 'The Princess of Bagdad: A Play In Three Acts', 'Dumas, Alexandre', '2011-09-13', 15, 'https://www.gutenberg.org/ebooks/37416', 'en', 3521), +(7303, 'The Dates of Variously-shaped Shields, with Coincident Dates and Examples', 'Grazebrook, George', '2014-12-23', 23, 'https://www.gutenberg.org/ebooks/47761', 'en', 4037), +(7304, 'Greifenstein', 'Crawford, F. Marion (Francis Marion)', '2004-09-01', 10, 'https://www.gutenberg.org/ebooks/6446', 'en', 4038), +(7305, 'A tentação do Mar', 'Casimiro, Augusto', '2010-11-12', 18, 'https://www.gutenberg.org/ebooks/34293', 'pt', 1638), +(7306, 'Histoire de Paris depuis le temps des Gaulois jusqu\'à nos jours - I', 'Lavallée, Théophile', '2006-07-18', 25, 'https://www.gutenberg.org/ebooks/18865', 'fr', 1993), +(7307, 'Historical Introduction to Studies Among the Sedentary Indians of New Mexico; Report on the Ruins of the Pueblo of Pecos\r\nPapers Of The Archæological Institute Of America, American Series, Vol. I', 'Bandelier, Adolph Francis Alphonse', '2007-10-27', 26, 'https://www.gutenberg.org/ebooks/23224', 'en', 4039), +(7308, 'I.N.R.I.: A prisoner\'s Story of the Cross', 'Rosegger, Peter', '2005-11-05', 9, 'https://www.gutenberg.org/ebooks/17011', 'en', 609), +(7309, 'Opiniones\nObras Completas Vol. X', 'Darío, Rubén', '2016-03-30', 12, 'https://www.gutenberg.org/ebooks/51604', 'es', 2730), +(7310, 'The Confessions of Jean Jacques Rousseau — Volume 08', 'Rousseau, Jean-Jacques', '2004-12-06', 40, 'https://www.gutenberg.org/ebooks/3908', 'en', 1419), +(7311, 'The Caxtons: A Family Picture — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 6, 'https://www.gutenberg.org/ebooks/7594', 'en', 376), +(7312, 'Literature in the Elementary School', 'MacClintock, Porter Lander', '2011-02-21', 10, 'https://www.gutenberg.org/ebooks/35341', 'en', 4040), +(7313, 'Anthony Lyveden', 'Yates, Dornford', '2009-01-05', 25, 'https://www.gutenberg.org/ebooks/27684', 'en', 2934), +(7314, 'Prairie Peak and Plateau\nA Guide to the Geology of Colorado', 'Chronic, John', '2019-08-21', 1, 'https://www.gutenberg.org/ebooks/60143', 'en', NULL), +(7315, 'L\'abîme', 'Collins, Wilkie', '2006-03-27', 39, 'https://www.gutenberg.org/ebooks/18059', 'fr', 45), +(7316, 'Pleasant Ways in Science', 'Proctor, Richard A. (Richard Anthony)', '2017-03-17', 7, 'https://www.gutenberg.org/ebooks/54376', 'en', 814), +(7317, 'The Strand Magazine, Vol. 17, No. 97, January to June 1899\r\nAn Illustrated Monthly', 'Various', '2015-04-17', 18, 'https://www.gutenberg.org/ebooks/48729', 'en', 4041), +(7318, 'Projet de la constitution française de 1791', 'Robespierre, Maximilien', '2009-12-09', 9, 'https://www.gutenberg.org/ebooks/30633', 'fr', 4042), +(7319, 'Backlog Studies', 'Warner, Charles Dudley', '2004-10-10', 18, 'https://www.gutenberg.org/ebooks/3134', 'en', 20), +(7320, 'Boccaccio', 'Hesse, Hermann', '2013-02-26', 135, 'https://www.gutenberg.org/ebooks/42213', 'de', 4043), +(7321, 'Contemporary American Novelists (1900-1920)', 'Van Doren, Carl', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12563', 'en', 4044), +(7322, 'Espasmo', 'De Roberto, Federico', '2008-10-03', 12, 'https://www.gutenberg.org/ebooks/26756', 'es', 4045), +(7323, 'The Burglar and the Blizzard: A Christmas Story', 'Miller, Alice Duer', '2005-01-29', 33, 'https://www.gutenberg.org/ebooks/14835', 'en', 585), +(7324, 'Les mystères du peuple, Tome V\nHistoire d\'une famille de prolétaires à travers les âges', 'Sue, Eugène', '2012-03-30', 12, 'https://www.gutenberg.org/ebooks/39311', 'fr', 2340), +(7325, 'Strange Teas, Dinners, Weddings and Fetes', 'Various', '2014-01-28', 41, 'https://www.gutenberg.org/ebooks/44779', 'en', 1470), +(7326, 'Scientific American Supplement, No. 787, January 31, 1891', 'Various', '2004-11-10', 42, 'https://www.gutenberg.org/ebooks/14009', 'en', 210), +(7327, 'Aasian tytär', 'Loti, Pierre', '2018-11-23', 12, 'https://www.gutenberg.org/ebooks/58326', 'fi', 48), +(7328, 'Dorothy\'s Double. Volume 3 (of 3)', 'Henty, G. A. (George Alfred)', '2011-06-08', 19, 'https://www.gutenberg.org/ebooks/36359', 'en', 2496), +(7329, 'Business Correspondence, Vol. 1: How to Write a Business Letter', 'Anonymous', '2005-01-01', 36, 'https://www.gutenberg.org/ebooks/7309', 'en', 4046), +(7330, 'Partners of the Out-Trail', 'Bindloss, Harold', '2009-06-20', 14, 'https://www.gutenberg.org/ebooks/29183', 'en', 1380), +(7331, 'Artists Past and Present; Random Studies', 'Cary, Elisabeth Luther', '2010-04-10', 15, 'https://www.gutenberg.org/ebooks/31940', 'en', 1990), +(7332, 'Amadis of Gaul, Vol. 2', 'Lobeira, Vasco de', '2016-02-01', 36, 'https://www.gutenberg.org/ebooks/51099', 'en', 4047), +(7333, 'De Las Islas Filipinas', 'Alvarez y Tejero, Luis Prudencio', '2010-01-08', 22, 'https://www.gutenberg.org/ebooks/30892', 'es', 4048), +(7334, 'Caesar Rodney\'s Ride', 'Carlton, Henry Fisk', '2009-02-11', 13, 'https://www.gutenberg.org/ebooks/28051', 'en', 4049), +(7335, 'Granriskojan: Novell', 'Ingelius, Axel Gabriel', '2015-05-18', 10, 'https://www.gutenberg.org/ebooks/48988', 'sv', 61), +(7336, 'Isaotta Guttadàuro ed altre poesie', 'D\'Annunzio, Gabriele', '2009-01-18', 25, 'https://www.gutenberg.org/ebooks/27825', 'it', 8), +(7337, 'A History of Police in England', 'Lee, W. L. Melville (William Lauriston Melville)', '2014-09-08', 28, 'https://www.gutenberg.org/ebooks/46812', 'en', 4050), +(7338, 'Peeps at Heraldry', 'Allen, Phoebe', '2017-08-27', 13, 'https://www.gutenberg.org/ebooks/55439', 'en', 4051), +(7339, 'Hundert neue Rätsel', 'Döhring, Angela', '2006-11-05', 19, 'https://www.gutenberg.org/ebooks/19716', 'de', 1997), +(7340, 'In Egitto: La caccia della jena', 'Lessona, Michele', '2015-05-28', 7, 'https://www.gutenberg.org/ebooks/49066', 'it', 4052), +(7341, 'The Bible, Douay-Rheims, Book 41: Sophonias\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8341', 'en', 4053), +(7342, 'Early Short Fiction of Edith Wharton', 'Wharton, Edith', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9293', 'en', 112), +(7343, 'On Multiple Algebra', 'Gibbs, J. Willard (Josiah Willard)', '2016-01-20', 43, 'https://www.gutenberg.org/ebooks/50977', 'en', 4054), +(7344, 'The Old Curiosity Shop', 'Dickens, Charles', '1996-10-01', 581, 'https://www.gutenberg.org/ebooks/700', 'en', 2815), +(7345, 'My Shipmate—Columbus', 'Marlowe, Stephen', '2008-10-24', 42, 'https://www.gutenberg.org/ebooks/27019', 'en', 4055), +(7346, 'The English at the North Pole\nPart I of the Adventures of Captain Hatteras', 'Verne, Jules', '2007-09-24', 40, 'https://www.gutenberg.org/ebooks/22759', 'en', 324), +(7347, 'Notes and Queries, Number 26, April 27, 1850', 'Various', '2004-10-21', 16, 'https://www.gutenberg.org/ebooks/13822', 'en', 105), +(7348, 'The 56th Division (1st London Territorial Division)', 'Dudley Ward, C. H. (Charles Humble)', '2015-11-04', 26, 'https://www.gutenberg.org/ebooks/50379', 'en', 4056), +(7349, 'Soap-Bubble Stories\nFor Children', 'Barry, Fanny', '2009-03-06', 25, 'https://www.gutenberg.org/ebooks/28263', 'en', 388), +(7350, 'Harper\'s Round Table, December 3, 1895', 'Various', '2015-06-21', 5, 'https://www.gutenberg.org/ebooks/49254', 'en', 668), +(7351, 'Contes de la Montagne', 'Erckmann-Chatrian', '2005-05-01', 17, 'https://www.gutenberg.org/ebooks/8173', 'fr', 687), +(7352, 'La Marfisa bizzarra', 'Gozzi, Carlo', '2006-10-10', 14, 'https://www.gutenberg.org/ebooks/19524', 'it', 407), +(7353, 'American Historical and Literary Curiosities, Part 07', 'Watson, John F. (John Fanning)', '2004-07-15', 5, 'https://www.gutenberg.org/ebooks/7907', 'en', 453), +(7354, 'At the Foot of the Rainbow', 'Stratton-Porter, Gene', '1996-05-01', 21, 'https://www.gutenberg.org/ebooks/532', 'en', 3016), +(7355, 'The Common Law', 'Holmes, Oliver Wendell', '2000-12-01', 282, 'https://www.gutenberg.org/ebooks/2449', 'en', 4057), +(7356, 'Veel Gemin, geen Gewin', 'Shakespeare, William', '2015-03-01', 13, 'https://www.gutenberg.org/ebooks/48386', 'nl', 907), +(7357, 'Campfire Girls at Twin Lakes; Or, The Quest of a Summer Vacation', 'Francis, Stella M.', '2007-03-16', 19, 'https://www.gutenberg.org/ebooks/20832', 'en', 622), +(7358, '\"Evacuation Day\", 1783, Its Many Stirring Events\r\nWith Recollections of Capt. John Van Arsdale, of the Veteran Corps of Artillery, by Whose Efforts on That Day the Enemy Were Circumvented, and the American Flag Successfully Raised on the Battery', 'Riker, James', '2010-08-13', 20, 'https://www.gutenberg.org/ebooks/33419', 'en', 4058), +(7359, 'Princess Kiku: A Japanese Romance. A Play for Girls', 'Hutchinson, M. F.', '2019-02-21', 6, 'https://www.gutenberg.org/ebooks/58928', 'en', 4059), +(7360, 'Kolme muskettisoturia: Historiallinen romaani', 'Dumas, Alexandre', '2011-10-30', 30, 'https://www.gutenberg.org/ebooks/37885', 'fi', 2436), +(7361, 'New Comedies', 'Gregory, Lady', '2004-03-01', 98, 'https://www.gutenberg.org/ebooks/11749', 'en', 907), +(7362, 'Social Rights And Duties: Addresses to Ethical Societies. Vol 2 [of 2]', 'Stephen, Leslie', '2011-08-03', 16, 'https://www.gutenberg.org/ebooks/36957', 'en', 4060), +(7363, 'Life and Character of Richard Carlile', 'Holyoake, George Jacob', '2012-03-10', 9, 'https://www.gutenberg.org/ebooks/39123', 'en', 4061), +(7364, 'Nouveau manuel complet de marine, seconde partie: manoeuvres', 'Verdier, Phocion-Aristide-Paulin', '2012-10-13', 11, 'https://www.gutenberg.org/ebooks/41039', 'fr', 1604), +(7365, 'What will they say at Brompton? A Comedetta, in One Act.', 'Coyne, J. Stirling (Joseph Stirling)', '2018-10-16', 5, 'https://www.gutenberg.org/ebooks/58114', 'en', 1281), +(7366, 'Historia de América desde sus tiempos más remotos hasta nuestros días, tomo I', 'Ortega Rubio, Juan', '2018-09-24', 17, 'https://www.gutenberg.org/ebooks/57960', 'es', 4062), +(7367, 'Brand\nRuno 5:ssä näytöksessä', 'Ibsen, Henrik', '2014-04-26', 39, 'https://www.gutenberg.org/ebooks/45499', 'fi', 4063), +(7368, 'History of the Catholic Church in Paterson, N.J.\r\nwith an Account of the Celebration of the Fiftieth Anniversary of the Establishment of St. John\'s Church', 'Shriner, Charles A. (Charles Anthony)', '2013-01-09', 14, 'https://www.gutenberg.org/ebooks/41805', 'en', 4064), +(7369, 'Acres of Diamonds', 'Conwell, Russell H.', '2010-11-09', 176, 'https://www.gutenberg.org/ebooks/34258', 'en', 4065), +(7370, 'Letters of Pliny', 'Pliny, the Younger', '2001-09-01', 256, 'https://www.gutenberg.org/ebooks/2811', 'en', 4066), +(7371, 'The Road and the Roadside', 'Potter, Burton Willis', '2009-04-25', 11, 'https://www.gutenberg.org/ebooks/28607', 'en', 4067), +(7372, 'Debris\nSelections from Poems', 'Wagner, Madge Morris', '2005-06-22', 17, 'https://www.gutenberg.org/ebooks/16108', 'en', 8), +(7373, 'Castles and Chateaux of Old Burgundy', 'Mansfield, M. F. (Milburg Francisco)', '2014-08-25', 21, 'https://www.gutenberg.org/ebooks/46678', 'en', 4068), +(7374, 'Symphony No. 5 in C minor, Opus 67', 'Beethoven, Ludwig van', '1994-08-01', 48, 'https://www.gutenberg.org/ebooks/156', 'en', 3385), +(7375, 'Germaine', 'About, Edmond', '2006-04-01', 68, 'https://www.gutenberg.org/ebooks/18092', 'fr', 298), +(7376, 'Tales of two people', 'Hope, Anthony', '2015-08-06', 25, 'https://www.gutenberg.org/ebooks/49630', 'en', 230), +(7377, 'Hormones and Heredity\r\nA Discussion of the Evolution of Adaptations and the Evolution of Species', 'Cunningham, J. T. (Joseph Thomas)', '2005-07-01', 29, 'https://www.gutenberg.org/ebooks/8517', 'en', 4069), +(7378, 'L\'épaulette\nSouvenirs d\'un officier', 'Darien, Georges', '2005-10-24', 20, 'https://www.gutenberg.org/ebooks/16934', 'fr', 61), +(7379, 'Girlhood and Womanhood\nThe Story of some Fortunes and Misfortunes', 'Tytler, Sarah', '2006-08-29', 47, 'https://www.gutenberg.org/ebooks/19140', 'en', 1679), +(7380, 'When Grandmamma Was New: The Story of a Virginia Childhood', 'Harland, Marion', '2008-04-21', 37, 'https://www.gutenberg.org/ebooks/25118', 'en', 470), +(7381, 'Beaumaroy Home from the Wars', 'Hope, Anthony', '2012-04-27', 10, 'https://www.gutenberg.org/ebooks/39547', 'en', 167), +(7382, 'Advokato Patelin: Triakta proza komedio', 'Brueys', '2016-08-22', 4, 'https://www.gutenberg.org/ebooks/52876', 'eo', 4070), +(7383, 'The Memoirs of Charles-Lewis, Baron de Pollnitz, Volume I\r\nBeing the Observations He Made in His Late Travels from Prussia thro\' Germany, Italy, France, Flanders, Holland, England, &C. in Letters to His Friend. Discovering Not Only the Present State of the Chief Cities and Towns; but the Characters of the Principal Persons at the Several Courts.', 'Pöllnitz, Karl Ludwig, Freiherr von', '2012-01-05', 30, 'https://www.gutenberg.org/ebooks/38495', 'en', 4071), +(7384, 'The Life of the Moselle\r\nFrom its source in the Vosges Mountains to its junction with the Rhine at Coblence', NULL, '2014-02-14', 2, 'https://www.gutenberg.org/ebooks/44913', 'en', 4072), +(7385, 'Index for Works of Rudyard Kipling\nHyperlinks to all Chapters of all Individual Ebooks', 'Kipling, Rudyard', '2018-07-18', 16, 'https://www.gutenberg.org/ebooks/57538', 'en', 198), +(7386, 'Koston henki: Romaani', 'Blanche, August', '2008-06-28', 15, 'https://www.gutenberg.org/ebooks/25924', 'fi', 61), +(7387, 'A Daughter of the Union', 'Madison, Lucy Foster', '2010-06-27', 197, 'https://www.gutenberg.org/ebooks/32993', 'en', 403), +(7388, 'Condition of the American Colored Population, and of the Colony at Liberia', 'American Colonization Society', '2018-12-30', 9, 'https://www.gutenberg.org/ebooks/58570', 'en', 4073), +(7389, 'Penny Allen and the Mystery of the Hidden Treasure', 'McKechnie, Jean L. (Jean Lyttleton)', '2016-10-02', 7, 'https://www.gutenberg.org/ebooks/53198', 'en', 2322), +(7390, 'History of Ambulance Company Number 139', 'Various', '2010-10-06', 20, 'https://www.gutenberg.org/ebooks/33841', 'en', 4074), +(7391, 'The Parish Register', 'Crabbe, George', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/5208', 'en', 54), +(7392, 'Encyclopaedia Britannica, 11th Edition, \"Ireland\" to \"Isabey, Jean Baptiste\"\r\nVolume 14, Slice 7', 'Various', '2012-05-23', 25, 'https://www.gutenberg.org/ebooks/39775', 'en', 1081), +(7393, 'The Pot Boiler: A Comedy in Four Acts', 'Sinclair, Upton', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/5806', 'en', 907), +(7394, 'Montezuma Castle National Monument, Arizona (1959)', 'United States. National Park Service', '2019-06-07', 28, 'https://www.gutenberg.org/ebooks/59690', 'en', 4075), +(7395, '幽明錄', 'Liu, Yiqing', '2016-06-08', 12, 'https://www.gutenberg.org/ebooks/52278', 'zh', 1682), +(7396, 'Religion in Earnest\nA Memorial of Mrs. Mary Lyth, of York', 'Lyth, J. (John)', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/11923', 'en', 4076), +(7397, 'En Pere i altres contes', 'Planas i Font, Claudi', '2007-02-24', 12, 'https://www.gutenberg.org/ebooks/20658', 'ca', 179), +(7398, 'Esko Virtalan esittämiä kertomuksia', 'Virtala, Esko', '2019-01-20', 2, 'https://www.gutenberg.org/ebooks/58742', 'fi', 41), +(7399, 'The Cryptogram: A Novel', 'De Mille, James', '2009-03-29', 15, 'https://www.gutenberg.org/ebooks/28435', 'en', 65), +(7400, 'Mystery Wings\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-10-07', 14, 'https://www.gutenberg.org/ebooks/43904', 'en', 4077), +(7401, 'The Eternal Feminine', 'Wells, Carolyn', '2014-12-08', 29, 'https://www.gutenberg.org/ebooks/47598', 'en', 112), +(7402, 'The Outcasts, and Other Stories', 'Gorky, Maksim', '2017-10-31', 35, 'https://www.gutenberg.org/ebooks/55861', 'en', 4078), +(7403, 'Three Girls from School', 'Meade, L. T.', '2013-07-08', 17, 'https://www.gutenberg.org/ebooks/43138', 'en', 621), +(7404, 'The Mad King', 'Burroughs, Edgar Rice', '1995-11-01', 206, 'https://www.gutenberg.org/ebooks/364', 'en', 313), +(7405, 'More Nonsense', 'Lear, Edward', '2004-10-08', 51, 'https://www.gutenberg.org/ebooks/13648', 'en', 3625), +(7406, 'My Own Story', 'Pankhurst, Emmeline', '2011-01-06', 110, 'https://www.gutenberg.org/ebooks/34856', 'en', 4079), +(7407, 'Blackwood\'s Edinburgh Magazine, Volume 60, No. 369, July 1846', 'Various', '2011-04-27', 8, 'https://www.gutenberg.org/ebooks/35984', 'en', 711), +(7408, 'John Jagon henki tahi kuollutko vai elävä?', 'Collins, Wilkie', '2006-09-25', 9, 'https://www.gutenberg.org/ebooks/19372', 'fi', 4080), +(7409, 'The Black Hawk War Including a Review of Black Hawk\'s Life', 'Stevens, Frank Everett', '2015-07-09', 14, 'https://www.gutenberg.org/ebooks/49402', 'en', 4081), +(7410, 'The Second Epistle General of Peter', NULL, '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22933', 'en', 4082), +(7411, 'The Three Cities Trilogy: Rome, Volume 5', 'Zola, Émile', '2005-08-01', 13, 'https://www.gutenberg.org/ebooks/8725', 'en', 1314), +(7412, 'Trusia: A Princess of Krovitch', 'Brinton, Davis', '2010-03-06', 12, 'https://www.gutenberg.org/ebooks/31518', 'en', 48), +(7413, 'Lady Mary and Her Nurse; Or, A Peep into the Canadian Forest', 'Traill, Catharine Parr Strickland', '2004-09-01', 27, 'https://www.gutenberg.org/ebooks/6479', 'en', 1602), +(7414, 'Philo Gubb, Correspondence-School Detective', 'Butler, Ellis Parker', '2009-08-17', 57, 'https://www.gutenberg.org/ebooks/29721', 'en', 128), +(7415, 'A Woodland Queen (\'Reine des Bois\') — Volume 3', 'Theuriet, André', '2003-04-01', 21, 'https://www.gutenberg.org/ebooks/3937', 'en', 1225), +(7416, 'Little Maid Marian', 'Blanchard, Amy Ella', '2006-12-01', 48, 'https://www.gutenberg.org/ebooks/19988', 'en', 585), +(7417, 'Columbus: De ontdekker van Amerika', 'Abbott, John S. C. (John Stevens Cabot)', '2006-03-28', 118, 'https://www.gutenberg.org/ebooks/18066', 'nl', 2036), +(7418, 'Printing in Relation to Graphic Art', 'French, George', '2017-03-12', 23, 'https://www.gutenberg.org/ebooks/54349', 'en', 4083), +(7419, 'Vanhoista kätköistä', 'Nervander, Emil Fredrik', '2006-02-21', 3, 'https://www.gutenberg.org/ebooks/17812', 'fi', 61), +(7420, 'Romantic Adventures of a Milkmaid', 'Hardy, Thomas', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9431', 'en', 4084), +(7421, 'The History of the 36th (Ulster) Division', 'Falls, Cyril', '2015-04-16', 30, 'https://www.gutenberg.org/ebooks/48716', 'en', 4085), +(7422, 'Punch, or the London Charivari, Vol. 104, May 20, 1893', 'Various', '2008-10-04', 6, 'https://www.gutenberg.org/ebooks/26769', 'en', 134), +(7423, 'La araña negra, t. 7/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 12, 'https://www.gutenberg.org/ebooks/45835', 'es', 98), +(7424, 'The poems of Heine; Complete\r\nTranslated into the original metres; with a sketch of his life', 'Heine, Heinrich', '2016-08-23', 88, 'https://www.gutenberg.org/ebooks/52882', 'en', 1867), +(7425, 'Csak így... : Versek, 1918-20.', 'Reményik, Sándor', '2012-01-01', 14, 'https://www.gutenberg.org/ebooks/38461', 'hu', 1645), +(7426, 'La Panhypocrisiade, ou le spectacle infernal du seizième siècle', 'Lemercier, Népomucène-Louis', '2017-01-12', 9, 'https://www.gutenberg.org/ebooks/53950', 'fr', 4086), +(7427, 'Kalevala, The Land of the Heroes, Volume Two', NULL, '2010-07-05', 43, 'https://www.gutenberg.org/ebooks/33089', 'en', 4087), +(7428, 'Gabriel Schillings Flucht: Drama', 'Hauptmann, Gerhart', '2014-02-25', 20, 'https://www.gutenberg.org/ebooks/45009', 'de', 4088), +(7429, 'Fors Clavigera (Volume 1 of 8)\nLetters to the workmen and labourers of Great Britain', 'Ruskin, John', '2019-05-08', 27, 'https://www.gutenberg.org/ebooks/59456', 'en', 4089), +(7430, 'Joanna Godden', 'Kaye-Smith, Sheila', '2005-05-07', 26, 'https://www.gutenberg.org/ebooks/15779', 'en', 1220), +(7431, 'A Sketch-Book of R. Caldecott\'s', NULL, '2010-06-24', 19, 'https://www.gutenberg.org/ebooks/32967', 'en', 4090), +(7432, 'Index of the Project Gutenberg Works of Frédéric Bastiat', 'Bastiat, Frédéric', '2019-01-01', 16, 'https://www.gutenberg.org/ebooks/58584', 'en', 198), +(7433, 'Honor de artista', 'Feuillet, Octave', '2008-03-11', 7, 'https://www.gutenberg.org/ebooks/24802', 'es', 61), +(7434, 'Polly and Her Friends Abroad', 'Roy, Lillian Elizabeth', '2011-09-16', 18, 'https://www.gutenberg.org/ebooks/37429', 'en', 3242), +(7435, 'Cape of Storms: A Novel', 'Pollard, Percival', '2012-05-24', 15, 'https://www.gutenberg.org/ebooks/39781', 'en', 297), +(7436, 'Graham\'s Magazine, Vol XXXIII, No. 6, December 1848', 'Various', '2010-05-14', 50, 'https://www.gutenberg.org/ebooks/32369', 'en', 380), +(7437, 'The Blind Spot', 'Flint, Homer Eon', '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/4920', 'en', 26), +(7438, 'The Works of Aphra Behn, Volume III', 'Behn, Aphra', '2003-11-01', 91, 'https://www.gutenberg.org/ebooks/10039', 'en', 126), +(7439, 'The Civil War in America\nFuller\'s Modern Age, August 1861', 'Russell, William Howard, Sir', '2012-09-13', 35, 'https://www.gutenberg.org/ebooks/40749', 'en', 3172), +(7440, 'Such Things Are: A Play, in Five Acts', 'Inchbald, Mrs.', '2012-01-23', 5, 'https://www.gutenberg.org/ebooks/38653', 'en', 1088), +(7441, 'Captain Billy\'s Whiz Bang, Vol. 2, No. 22, July, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2019-06-02', 41, 'https://www.gutenberg.org/ebooks/59664', 'en', 372), +(7442, 'Count the Cost\r\nAn Address to the People of Connecticut, On Sundry Political Subjects, and Particularly on the Proposition for a New Constitution', 'Daggett, David', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/10805', 'en', 4091), +(7443, 'The Religions of India\r\nHandbooks on the History of Religions, Volume 1, Edited by Morris Jastrow', 'Hopkins, Edward Washburn', '2004-12-28', 36, 'https://www.gutenberg.org/ebooks/14499', 'en', 683), +(7444, 'Ohio Arbor Day 1913: Arbor and Bird Day Manual\nIssued for the Benefit of the Schools of our State', NULL, '2007-10-13', 18, 'https://www.gutenberg.org/ebooks/23029', 'en', 4092), +(7445, 'The Martyrs\' Idyl, and Shorter Poems', 'Guiney, Louise Imogen', '2017-06-20', 9, 'https://www.gutenberg.org/ebooks/54947', 'en', 350), +(7446, 'An American Robinson Crusoe', 'Defoe, Daniel', '2005-02-01', 33, 'https://www.gutenberg.org/ebooks/7799', 'en', 1229), +(7447, 'Erinnerungen eines Achtundvierzigers', 'Born, Stephan', '2017-11-06', 10, 'https://www.gutenberg.org/ebooks/55895', 'de', 1548), +(7448, 'Opinion of the Supreme Court of the United States, at January Term, 1832, Delivered by Mr. Chief Justice Marshall in the Case of Samuel A. Worcester, Plaintiff in Error, versus the State of Georgia\r\nWith a Statement of the Case, Extracted from the Records of the Supreme Court of the United States', 'Marshall, John', '2009-07-26', 16, 'https://www.gutenberg.org/ebooks/29513', 'en', 4093), +(7449, 'Semiramis: A Tale of Battle and of Love', 'Peple, Edward', '2013-05-27', 5, 'https://www.gutenberg.org/ebooks/42822', 'en', 4094), +(7450, 'Public School Life: Boys, Parents, Masters', 'Waugh, Alec', '2016-03-09', 9, 'https://www.gutenberg.org/ebooks/51409', 'en', 4095), +(7451, 'Hung Lou Meng, or, the Dream of the Red Chamber, a Chinese Novel, Book I', 'Cao, Xueqin', '2006-01-01', 509, 'https://www.gutenberg.org/ebooks/9603', 'en', 4096), +(7452, 'Motor Matt\'s Queer Find; or, The Secret of the Iron Chest', 'Matthews, Stanley R.', '2015-03-19', 7, 'https://www.gutenberg.org/ebooks/48524', 'en', 4097), +(7453, 'Punch, or the London Charivari, Vol. 146, April 22, 1914', 'Various', '2007-12-11', 10, 'https://www.gutenberg.org/ebooks/23815', 'en', 134), +(7454, 'A Lute of Jade : Selections from the Classical Poets of China', 'Cranmer-Byng, L. (Launcelot)', '1996-01-01', 50, 'https://www.gutenberg.org/ebooks/390', 'en', 2822), +(7455, 'Claverhouse', 'Morris, Mowbray', '2006-04-25', 18, 'https://www.gutenberg.org/ebooks/18254', 'en', 4098), +(7456, 'De nachtegaal\r\nVerhalen voor de jeugd', 'Schmid, Christoph von', '2008-12-10', 19, 'https://www.gutenberg.org/ebooks/27489', 'nl', 4099), +(7457, 'An Author\'s Mind : The Book of Title-pages', 'Tupper, Martin Farquhar', '2006-09-26', 14, 'https://www.gutenberg.org/ebooks/19386', 'en', 20), +(7458, 'Valo tulee! Näytelmä 1:ssä näytöksessä', 'Ramstedt, Maria', '2011-04-26', 14, 'https://www.gutenberg.org/ebooks/35970', 'fi', 402), +(7459, 'The Wandering Jew — Volume 01', 'Sue, Eugène', '2004-10-25', 17, 'https://www.gutenberg.org/ebooks/3339', 'en', 98), +(7460, 'In Our First Year of the War\r\nMessages and Addresses to the Congress and the People, March 5, 1917 to January 6, 1918', 'Wilson, Woodrow', '2008-02-22', 10, 'https://www.gutenberg.org/ebooks/24668', 'en', 1035), +(7461, 'Paddy-The-Next-Best-Thing', 'Page, Gertrude', '2011-12-06', 14, 'https://www.gutenberg.org/ebooks/38237', 'en', 61), +(7462, 'The Atlantic Monthly, Volume 12, No. 74, December, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-05-27', 8, 'https://www.gutenberg.org/ebooks/15913', 'en', 1227), +(7463, 'Persian Literature, Ancient and Modern', 'Reed, Elizabeth A. (Elizabeth Armstrong)', '2017-12-24', 15, 'https://www.gutenberg.org/ebooks/56248', 'en', 4100), +(7464, 'The Case of the Golden Bullet', 'Groner, Auguste', '1999-07-01', 27, 'https://www.gutenberg.org/ebooks/1836', 'en', 61), +(7465, 'Mr. and Mrs. Sên', 'Miln, Louise Jordan', '2019-04-03', 11, 'https://www.gutenberg.org/ebooks/59200', 'en', 1297), +(7466, '粉妝樓61-70回', 'Luo, Guanzhong', '2003-10-01', 10, 'https://www.gutenberg.org/ebooks/4578', 'zh', 1574), +(7467, 'Determining the Age of Cattle by the Teeth', 'Pope, George W. (George Whitfield)', '2008-10-12', 6, 'https://www.gutenberg.org/ebooks/26903', 'en', 4101), +(7468, 'The Secret of the Sands; Or, The \"Water Lily\" and her Crew', 'Collingwood, Harry', '2011-03-08', 9, 'https://www.gutenberg.org/ebooks/35528', 'en', 324), +(7469, 'The Pygmy Planet', 'Williamson, Jack', '2009-06-20', 91, 'https://www.gutenberg.org/ebooks/29177', 'en', 26), +(7470, 'The Apology of the Church of England', 'Jewel, John', '2006-02-05', 62, 'https://www.gutenberg.org/ebooks/17678', 'en', 4102), +(7471, 'Analysis of Mr. Mill\'s System of Logic', 'Stebbing, W. (William)', '2010-01-06', 28, 'https://www.gutenberg.org/ebooks/30866', 'en', 4103), +(7472, 'Deserts: Geology and Resources', 'Walker, A. S. (Alta Sharon)', '2014-10-14', 12, 'https://www.gutenberg.org/ebooks/47108', 'en', 4104), +(7473, 'The White Stone', 'France, Anatole', '2015-05-31', 13, 'https://www.gutenberg.org/ebooks/49092', 'en', 58), +(7474, '\"Laramie;\" Or, The Queen of Bedlam. A Story of the Sioux War of 1876', 'King, Charles', '2010-02-05', 20, 'https://www.gutenberg.org/ebooks/31188', 'en', 4105), +(7475, 'Modernste Kriegswaffen - alte Erfindungen', 'Feldhaus, Franz M. (Franz Maria)', '2016-04-24', 15, 'https://www.gutenberg.org/ebooks/51851', 'de', 4106), +(7476, 'Four Afoot: Being the Adventures of the Big Four on the Highway', 'Barbour, Ralph Henry', '2016-01-20', 18, 'https://www.gutenberg.org/ebooks/50983', 'en', 766), +(7477, 'Chip, of the Flying U', 'Bower, B. M.', '2005-11-01', 52, 'https://www.gutenberg.org/ebooks/9267', 'en', 774), +(7478, 'The Philippine Islands, 1493-1898—Volume 39 of 55, 1683-1690\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of The Catholic Missions, As Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2009-05-21', 48, 'https://www.gutenberg.org/ebooks/28899', 'en', 745), +(7479, 'Mein Besuch Amerika\'s im Sommer 1824\r\nEin Flug durch die Vereinstaaten Maryland, Pensylvanien, New-York zum Niagarafall, und durch die Staaten Ohio, Indiana, Kentuky und Virginien zurück', 'Suchard, Philippe', '2015-02-02', 12, 'https://www.gutenberg.org/ebooks/48140', 'de', 1110), +(7480, 'The Tale of Frisky Squirrel', 'Bailey, Arthur Scott', '2006-06-19', 33, 'https://www.gutenberg.org/ebooks/18630', 'en', 625), +(7481, 'An Old Man\'s Prayer', 'Baker, George M. (George Melville)', '2015-01-10', 18, 'https://www.gutenberg.org/ebooks/47934', 'en', 350), +(7482, 'Mountain Interval', 'Frost, Robert', '2009-07-07', 169, 'https://www.gutenberg.org/ebooks/29345', 'en', 178); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(7483, 'History of the American Negro in the Great World War\r\nHis Splendid Record in the Battle Zones of Europe; Including a Resume of His Past Services to his Country in the Wars of the Revolution, of 1812, the War of Rebellion, the Indian Wars on the Frontier, the Spanish-American War, and the Late Imbroglio With Mexico', 'Sweeney, William Allison', '2005-08-26', 47, 'https://www.gutenberg.org/ebooks/16598', 'en', 4107), +(7484, 'Light', 'Barbusse, Henri', '2004-07-14', 23, 'https://www.gutenberg.org/ebooks/12904', 'en', 259), +(7485, 'The Confession of a Child of the Century', 'Musset, Alfred de', '2006-02-01', 26, 'https://www.gutenberg.org/ebooks/9869', 'en', 687), +(7486, 'The Christian Foundation, Or, Scientific and Religious Journal, May, 1880', 'Various', '2009-03-09', 17, 'https://www.gutenberg.org/ebooks/28297', 'en', 1829), +(7487, 'Les voyages de Gulliver', 'Swift, Jonathan', '2013-05-05', 62, 'https://www.gutenberg.org/ebooks/42648', 'fr', 4108), +(7488, 'The Complete Poems of Sir Thomas Moore\nCollected by Himself with Explanatory Notes', 'Moore, Thomas', '2005-05-01', 83, 'https://www.gutenberg.org/ebooks/8187', 'en', 8), +(7489, 'The History of University Education in Maryland\r\nThe Johns Hopkins University (1876-1891). With supplementary notes on university extension and the university of the future', 'Steiner, Bernard C. (Bernard Christian)', '2004-04-01', 38, 'https://www.gutenberg.org/ebooks/12138', 'en', 4109), +(7490, 'Der Hofmeister', 'Lenz, Jakob Michael Reinhold', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/6821', 'de', 402), +(7491, 'La San-Felice, Tome 03', 'Dumas, Alexandre', '2006-05-16', 20, 'https://www.gutenberg.org/ebooks/18402', 'fr', 4110), +(7492, 'Lettres persanes, tome I', 'Montesquieu, Charles de Secondat, baron de', '2009-10-16', 45, 'https://www.gutenberg.org/ebooks/30268', 'fr', 4111), +(7493, 'Bad Medicine', 'Sheckley, Robert', '2005-10-01', 71, 'https://www.gutenberg.org/ebooks/9055', 'en', 179), +(7494, 'A Canadian Farm Mystery; Or, Pam the Pioneer', 'Marchant, Bessie', '2015-02-27', 26, 'https://www.gutenberg.org/ebooks/48372', 'en', 4112), +(7495, 'Psyche', 'Couperus, Louis', '2011-11-13', 32, 'https://www.gutenberg.org/ebooks/38005', 'en', 1007), +(7496, 'The City of Dreadful Night', 'Thomson, James', '1998-03-01', 150, 'https://www.gutenberg.org/ebooks/1238', 'en', 54), +(7497, 'Dandelion Cottage', 'Rankin, Carroll Watson', '2011-10-28', 32, 'https://www.gutenberg.org/ebooks/37871', 'en', 1655), +(7498, 'Outline of the development of the internal commerce of the United States\n1789-1900', 'Van Metre, Thurman William', '2008-05-24', 6, 'https://www.gutenberg.org/ebooks/25588', 'en', 4113), +(7499, 'The Woggle-Bug Book', 'Baum, L. Frank (Lyman Frank)', '2007-06-23', 62, 'https://www.gutenberg.org/ebooks/21914', 'en', 637), +(7500, 'British Political Leaders', 'McCarthy, Justin', '2012-10-03', 12, 'https://www.gutenberg.org/ebooks/40923', 'en', 3346), +(7501, 'Airplane Photography', 'Ives, Herbert Eugene', '2016-11-12', 19, 'https://www.gutenberg.org/ebooks/53508', 'en', 4114), +(7502, 'A Little Book of Old Time Verse: Old Fashioned Flowers', NULL, '2012-02-12', 7, 'https://www.gutenberg.org/ebooks/38839', 'en', 2346), +(7503, 'Fanny\'s First Play', 'Shaw, Bernard', '2004-05-01', 53, 'https://www.gutenberg.org/ebooks/5698', 'en', 1088), +(7504, 'The American Missionary — Volume 41, No. 4, April, 1887', 'Various', '2018-09-30', 6, 'https://www.gutenberg.org/ebooks/57994', 'en', 562), +(7505, 'What Every Mother Should Know; or, How Six Little Children Were Taught The Truth', 'Sanger, Margaret', '2018-03-26', 22, 'https://www.gutenberg.org/ebooks/56846', 'en', 2378), +(7506, 'The Newmarket, Bury, Thetford and Cromer Road\nSport and history on an East Anglian turnpike', 'Harper, Charles G. (Charles George)', '2019-03-08', 5, 'https://www.gutenberg.org/ebooks/59032', 'en', 226), +(7507, 'Twenty Years of Congress, Vol. 1\r\nFrom Lincoln to Garfield, with a Review of the Events Which Led to the Political Revolution of 1860', 'Blaine, James Gillespie', '2007-04-17', 32, 'https://www.gutenberg.org/ebooks/21128', 'en', 207), +(7508, 'The Witch, and Other Stories', 'Chekhov, Anton Pavlovich', '2006-02-26', 327, 'https://www.gutenberg.org/ebooks/1944', 'en', 85), +(7509, 'Trip to the West and Texas\r\ncomprising a journey of eight thousand miles, through New-York, Michigan, Illinois, Missouri, Louisiana and Texas, in the autumn and winter of 1834-5.', 'Parker, A. A. (Amos Andrew)', '2016-12-02', 26, 'https://www.gutenberg.org/ebooks/53648', 'en', 4115), +(7510, 'The Alfred Jewel: An Historical Essay', 'Earle, John', '2019-04-27', 9, 'https://www.gutenberg.org/ebooks/59372', 'en', 4116), +(7511, 'The Search for the Silver City: A Tale of Adventure in Yucatan', 'Otis, James', '2007-05-02', 35, 'https://www.gutenberg.org/ebooks/21268', 'en', 676), +(7512, 'The Polity of the Athenians and the Lacedaemonians', 'Xenophon', '1998-01-01', 131, 'https://www.gutenberg.org/ebooks/1178', 'en', 4117), +(7513, 'Book Collecting: A Guide for Amateurs', 'Slater, J. Herbert (John Herbert)', '2011-12-19', 13, 'https://www.gutenberg.org/ebooks/38345', 'en', 4118), +(7514, 'The Red Cockade', 'Weyman, Stanley John', '2012-03-29', 135, 'https://www.gutenberg.org/ebooks/39297', 'en', 248), +(7515, 'The Things Which Remain\nAn Address To Young Ministers', 'Goodsell, Daniel A. (Daniel Ayres)', '2005-05-18', 23, 'https://www.gutenberg.org/ebooks/15861', 'en', 2382), +(7516, 'Curious Creatures in Zoology', 'Ashton, John', '2013-04-12', 50, 'https://www.gutenberg.org/ebooks/42508', 'en', 4119), +(7517, 'The House in the Water: A Book of Animal Stories', 'Roberts, Charles G. D., Sir', '2009-08-28', 23, 'https://www.gutenberg.org/ebooks/29839', 'en', 1787), +(7518, 'The Impudent Comedian, & Others', 'Moore, Frank Frankfort', '2016-05-01', 9, 'https://www.gutenberg.org/ebooks/51923', 'en', 179), +(7519, 'The Pears of New York', 'Hedrick, U. P.', '2014-09-29', 25, 'https://www.gutenberg.org/ebooks/46994', 'en', 4120), +(7520, 'Apologia pro Vita Sua', 'Newman, John Henry', '2006-10-31', 184, 'https://www.gutenberg.org/ebooks/19690', 'en', 4121), +(7521, 'Confessions of a Young Man', 'Moore, George', '2004-05-01', 44, 'https://www.gutenberg.org/ebooks/12278', 'en', 4122), +(7522, 'The Treaty of the European Union, Maastricht Treaty, 7th February, 1992', 'European Union', '1996-10-01', 28, 'https://www.gutenberg.org/ebooks/686', 'en', 4123), +(7523, 'Willie Mouse', 'Tabor, Alta', '2006-07-03', 32, 'https://www.gutenberg.org/ebooks/18742', 'en', 323), +(7524, 'Poèmes de Walt Whitman', 'Whitman, Walt', '2015-01-01', 52, 'https://www.gutenberg.org/ebooks/47846', 'fr', 4124), +(7525, 'A Doctor of the Old School — Volume 1', 'Maclaren, Ian', '2004-08-09', 12, 'https://www.gutenberg.org/ebooks/9315', 'en', 1563), +(7526, 'Where Strongest Tide Winds Blew', 'McReynolds, Robert', '2009-09-29', 5, 'https://www.gutenberg.org/ebooks/30128', 'en', 323), +(7527, 'The Magic Ring and Other Stories\nFrom the Yellow and Crimson Fairy Books', NULL, '2015-01-19', 51, 'https://www.gutenberg.org/ebooks/48032', 'en', 1007), +(7528, 'Prince Vance: The Story of a Prince with a Court in His Box', 'Putnam, Eleanor', '2009-05-30', 99, 'https://www.gutenberg.org/ebooks/29005', 'en', 2203), +(7529, '粉妝樓全傳', 'Luo, Guanzhong', '2008-10-12', 10, 'https://www.gutenberg.org/ebooks/26871', 'zh', 1574), +(7530, 'Some of Æsop\'s Fables with Modern Instances', 'Aesop', '2010-12-08', 85, 'https://www.gutenberg.org/ebooks/34588', 'en', 4125), +(7531, 'The Corner House Girls Growing Up\nWhat Happened First, What Came Next. And How It Ended', 'Hill, Grace Brooks', '2010-01-10', 17, 'https://www.gutenberg.org/ebooks/30914', 'en', 1625), +(7532, 'Passages from the French and Italian Notebooks, Complete', 'Hawthorne, Nathaniel', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7881', 'en', 4126), +(7533, 'The Rake\'s Progress', 'Bowen, Marjorie', '2015-02-08', 24, 'https://www.gutenberg.org/ebooks/48200', 'en', 61), +(7534, 'Yule-Tide in Many Lands', 'Pringle, Mary Poague', '2006-06-12', 11, 'https://www.gutenberg.org/ebooks/18570', 'en', 949), +(7535, 'Nouvelles lettres d\'un voyageur', 'Sand, George', '2004-08-17', 26, 'https://www.gutenberg.org/ebooks/13198', 'fr', 4127), +(7536, 'By England\'s Aid; or, the Freeing of the Netherlands (1585-1604)', 'Henty, G. A. (George Alfred)', '2004-11-01', 21, 'https://www.gutenberg.org/ebooks/6953', 'en', 4128), +(7537, 'A Young Girl\'s Wooing', 'Roe, Edward Payson', '2004-07-10', 20, 'https://www.gutenberg.org/ebooks/12876', 'en', 48), +(7538, 'The Struggle between President Johnson and Congress over Reconstruction', 'Chadsey, Charles E. (Charles Ernest)', '2011-03-24', 17, 'https://www.gutenberg.org/ebooks/35668', 'en', 4129), +(7539, 'An Essay on Satire, Particularly on the Dunciad', 'Harte, Walter', '2009-06-25', 18, 'https://www.gutenberg.org/ebooks/29237', 'en', 4130), +(7540, 'Les lois sociologiques', 'Greef, Guillaume de', '2006-02-07', 23, 'https://www.gutenberg.org/ebooks/17538', 'fr', 1771), +(7541, 'The Heroic Record of the British Navy: A Short History of the Naval War, 1914-1918', 'Bashford, H. H. (Henry Howarth), Sir', '2014-10-31', 38, 'https://www.gutenberg.org/ebooks/47248', 'en', 4131), +(7542, 'Abridgment of the Debates of Congress, from 1789 to 1856, Vol. 2 (of 16)', 'United States. Congress', '2012-09-23', 19, 'https://www.gutenberg.org/ebooks/40851', 'en', 4132), +(7543, 'Coriolanus', 'Shakespeare, William', '2006-12-26', 35, 'https://www.gutenberg.org/ebooks/20188', 'fi', 1298), +(7544, 'Round the Sofa; vol. 1', 'Gaskell, Elizabeth Cleghorn', '2018-10-13', 30, 'https://www.gutenberg.org/ebooks/58092', 'en', 45), +(7545, 'Étude sur les maladies éteintes et les maladies nouvelles\npour servir à l\'histoire des évolutions séculaires de la pathologie', 'Anglada, Charles', '2019-03-28', 18, 'https://www.gutenberg.org/ebooks/59140', 'fr', 4133), +(7546, 'Star: The Story of an Indian Pony', 'Hooker, Forrestine C. (Forrestine Cooper)', '2012-06-02', 28, 'https://www.gutenberg.org/ebooks/39899', 'en', 4134), +(7547, 'The Book of Curiosities', 'Platts, John', '2013-02-03', 42, 'https://www.gutenberg.org/ebooks/41983', 'en', 1081), +(7548, 'The Venus of Milo: an archeological study of the goddess of womanhood', 'Carus, Paul', '2018-04-06', 18, 'https://www.gutenberg.org/ebooks/56934', 'en', 4135), +(7549, 'California, 1849-1913; Or, The Rambling Sketches and Experiences of Sixty-four Years\' Residence in that State', 'Woolley, L. H. (Lell Hawley)', '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/4638', 'en', 3481), +(7550, 'Have We No Rights? A frank discussion of the \"rights\" of missionaries', 'Williamson, Mabel', '2008-02-06', 42, 'https://www.gutenberg.org/ebooks/24528', 'en', 4136), +(7551, 'The Girl Crusoes: A Story of the South Seas', 'Strang, Herbert, Mrs.', '2011-11-01', 6, 'https://www.gutenberg.org/ebooks/37903', 'en', 1229), +(7552, 'The Passionate Elopement', 'MacKenzie, Compton', '2011-11-30', 18, 'https://www.gutenberg.org/ebooks/38177', 'en', 2438), +(7553, 'The Gundungurra Language', 'Mathews, R. H. (Robert Hamilton)', '2007-06-19', 13, 'https://www.gutenberg.org/ebooks/21866', 'en', 4137), +(7554, 'Erakkojärveläiset: Palanen saloelämää', 'Hannikainen, Lauri', '2017-12-03', 158, 'https://www.gutenberg.org/ebooks/56108', 'fi', 175), +(7555, 'The poetical works of George MacDonald in two volumes — Volume 1', 'MacDonald, George', '2005-12-01', 18, 'https://www.gutenberg.org/ebooks/9543', 'en', 4138), +(7556, 'Giles Corey, Yeoman: A Play', 'Freeman, Mary Eleanor Wilkins', '2006-03-10', 10, 'https://www.gutenberg.org/ebooks/17960', 'en', 868), +(7557, 'The Works of the Emperor Julian, Vol. 1', 'Julian, Emperor of Rome', '2015-04-07', 61, 'https://www.gutenberg.org/ebooks/48664', 'en', 4139), +(7558, 'Punch, or the London Charivari, Volume 159, November 10, 1920', 'Various', '2006-04-03', 11, 'https://www.gutenberg.org/ebooks/18114', 'en', 134), +(7559, 'Original Short Stories — Volume 03', 'Maupassant, Guy de', '2004-10-03', 28, 'https://www.gutenberg.org/ebooks/3079', 'en', 1112), +(7560, 'Chronicle of the Cid', NULL, '2005-07-01', 28, 'https://www.gutenberg.org/ebooks/8491', 'en', 4140), +(7561, 'Time\'s Laughingstocks, and Other Verses', 'Hardy, Thomas', '2001-12-01', 47, 'https://www.gutenberg.org/ebooks/2997', 'en', 54), +(7562, 'Extracts from Adam\'s Diary', 'Twain, Mark', '2009-05-01', 6, 'https://www.gutenberg.org/ebooks/28781', 'en', 2101), +(7563, 'Mrs. Dud\'s Sister', 'Bacon, Josephine Daskam', '2007-11-06', 10, 'https://www.gutenberg.org/ebooks/23369', 'en', 4141), +(7564, 'Proefnemingen van de particuliere beweeging der spieren in de kikvorsch', 'Swammerdam, Jan', '2006-07-28', 19, 'https://www.gutenberg.org/ebooks/18928', 'nl', 4142), +(7565, 'Conestoga Wagons in Braddock\'s Campaign, 1755', 'Berkebile, Donald H.', '2009-08-10', 6, 'https://www.gutenberg.org/ebooks/29653', 'en', 4143), +(7566, 'Memoirs of Jean François Paul de Gondi, Cardinal de Retz — Volume 4', 'Retz, Jean François Paul de Gondi de', '2004-12-02', 4, 'https://www.gutenberg.org/ebooks/3845', 'en', 4144), +(7567, 'Fairview Boys and Their Rivals; or, Bob Bouncer\'s Schooldays', 'Gordon, Frederick', '2016-04-13', 4, 'https://www.gutenberg.org/ebooks/51749', 'en', 167), +(7568, 'A Guide for the Dissection of the Dogfish (Squalus Acanthias)', 'Griffin, Lawrence Edmonds', '2019-05-16', 9, 'https://www.gutenberg.org/ebooks/59524', 'en', 4145), +(7569, 'Ενώ διέβαινα - Χρονογραφήματα', 'Kondylakes, Ioannes', '2010-06-14', 10, 'https://www.gutenberg.org/ebooks/32815', 'el', 20), +(7570, 'Modern Society', 'Howe, Julia Ward', '2011-06-21', 12, 'https://www.gutenberg.org/ebooks/36489', 'en', 216), +(7571, 'The Story of a Robin', 'Underwood, Agnes S.', '2008-03-31', 5, 'https://www.gutenberg.org/ebooks/24970', 'en', 1817), +(7572, 'Seed of the Arctic Ice', 'Bates, Harry', '2010-04-17', 71, 'https://www.gutenberg.org/ebooks/32029', 'en', 737), +(7573, 'L\'Illustration, No. 2519, 6 Juin 1891', 'Various', '2014-06-12', 9, 'https://www.gutenberg.org/ebooks/45947', 'fr', 150), +(7574, 'No Cross, No Crown\r\nA Discourse, Shewing the Nature and Discipline of the Holy Cross of Christ', 'Penn, William', '2014-02-13', 90, 'https://www.gutenberg.org/ebooks/44895', 'en', 4146), +(7575, 'At Love\'s Cost', 'Garvice, Charles', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/10379', 'en', 61), +(7576, 'Os Maias: episodios da vida romantica', 'Queirós, Eça de', '2012-08-04', 105, 'https://www.gutenberg.org/ebooks/40409', 'pt', 4147), +(7577, 'The Lives of the III. Normans, Kings of England: William the First, William the Second, Henrie the First', 'Hayward, John, Sir', '2012-01-07', 21, 'https://www.gutenberg.org/ebooks/38513', 'en', 1953), +(7578, 'Footprints of Abraham Lincoln\r\nPresenting many interesting facts, reminiscences and illustrations never before published', 'Hobson, J. T. (Jonathan Todd)', '2016-12-28', 1, 'https://www.gutenberg.org/ebooks/53822', 'en', 2597), +(7579, 'Remarkable Rogues\nThe Careers of Some Notable Criminals of Europe and America; Second Edition', 'Kingston, Charles', '2014-04-08', 27, 'https://www.gutenberg.org/ebooks/45349', 'en', 3277), +(7580, 'Punch, or the London Charivari, Volume 103, October 1, 1892', 'Various', '2005-03-22', 2, 'https://www.gutenberg.org/ebooks/15439', 'en', 134), +(7581, 'The Night of Temptation', 'Cross, Victoria', '2019-06-10', 56, 'https://www.gutenberg.org/ebooks/59716', 'en', 297), +(7582, 'The Grizzly King: A Romance of the Wild', 'Curwood, James Oliver', '2004-02-01', 56, 'https://www.gutenberg.org/ebooks/10977', 'en', 1849), +(7583, 'L\'Illustration, No. 3653, 1er Mars 1913', 'Various', '2011-10-16', 8, 'https://www.gutenberg.org/ebooks/37769', 'fr', 150), +(7584, 'More Seeds of Knowledge; Or, Another Peep at Charles', 'Corner, Miss (Julia)', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/11099', 'en', 4148), +(7585, 'History of the United Netherlands, 1587b', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4852', 'en', 3372), +(7586, 'The Roman Empire in the Light of Prophecy\nThe Rise, Progress, and End of the Fourth World-empire', 'Vine, W.E. (William Edwy)', '2012-01-31', 15, 'https://www.gutenberg.org/ebooks/38721', 'en', 4149), +(7587, 'Kent Knowles: Quahaug', 'Lincoln, Joseph Crosby', '2006-06-06', 10, 'https://www.gutenberg.org/ebooks/5980', 'en', 2035), +(7588, 'Metropolitan Subway and Elevated Systems\nBulletin 49', 'General Electric Company', '2017-01-18', 6, 'https://www.gutenberg.org/ebooks/54009', 'en', 4150), +(7589, 'La Murdoj de Kadavrejo-Strato', 'Poe, Edgar Allan', '2006-05-06', 12, 'https://www.gutenberg.org/ebooks/18326', 'eo', 4151), +(7590, 'Imaginary Portraits', 'Pater, Walter', '2000-11-01', 37, 'https://www.gutenberg.org/ebooks/2399', 'en', 409), +(7591, 'Alice, or the Mysteries — Book 09', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 47, 'https://www.gutenberg.org/ebooks/9771', 'en', 137), +(7592, 'Homes and Careers in Canada', 'Jeffs, Harry', '2015-03-10', 4, 'https://www.gutenberg.org/ebooks/48456', 'en', 2483), +(7593, 'If', 'Kipling, Rudyard', '2007-12-01', 15, 'https://www.gutenberg.org/ebooks/23967', 'en', 2951), +(7594, 'Napoleonin sotilaan seikkailut', 'Doyle, Arthur Conan', '2015-08-03', 7, 'https://www.gutenberg.org/ebooks/49584', 'fi', 2809), +(7595, 'Nights With Uncle Remus: Myths and Legends of the Old Plantation', 'Harris, Joel Chandler', '2008-08-25', 47, 'https://www.gutenberg.org/ebooks/26429', 'en', 4152), +(7596, 'Lusitania: Canti popolari portoghesi', NULL, '2011-04-11', 13, 'https://www.gutenberg.org/ebooks/35802', 'it', 4153), +(7597, 'Le musée du Louvre, tome 2 (of 2)', 'Dayot, Armand', '2017-06-03', 16, 'https://www.gutenberg.org/ebooks/54835', 'fr', 4154), +(7598, 'Les Caves du Vatican', 'Gide, André', '2004-10-01', 82, 'https://www.gutenberg.org/ebooks/6739', 'fr', 560), +(7599, 'Punch, or the London Charivari, Volume 107, November 3, 1894', 'Various', '2013-10-04', 8, 'https://www.gutenberg.org/ebooks/43882', 'en', 134), +(7600, 'Preliminary Specifications: Programmed Data Processor Model Three (PDP-3)\nOctober, 1960', 'Digital Equipment Corporation', '2009-07-20', 19, 'https://www.gutenberg.org/ebooks/29461', 'en', 4155), +(7601, 'The Liberty Minstrel', 'Clark, George Washington', '2007-07-16', 135, 'https://www.gutenberg.org/ebooks/22089', 'en', 4156), +(7602, 'Prophetical, Educational and Playing Cards', 'Van Rensselaer, John King, Mrs.', '2013-06-15', 18, 'https://www.gutenberg.org/ebooks/42950', 'en', 4157), +(7603, 'Punch, or the London Charivari, Vol. 159, 1920-11-03', 'Various', '2006-03-15', 28, 'https://www.gutenberg.org/ebooks/17994', 'en', 134), +(7604, 'The Revolt of Man', 'Besant, Walter', '2015-04-12', 28, 'https://www.gutenberg.org/ebooks/48690', 'en', 4158), +(7605, 'Cakes & Ale\r\nA Dissertation on Banquets Interspersed with Various Recipes, More or Less Original, and anecdotes, mainly veracious', 'Spencer, Edward', '2013-07-22', 42, 'https://www.gutenberg.org/ebooks/43278', 'en', 4159), +(7606, 'Weird Tales from Northern Seas', 'Lie, Jonas', '2004-09-21', 65, 'https://www.gutenberg.org/ebooks/13508', 'en', 4160), +(7607, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 22. July, 1878.', 'Various', '2006-08-12', 49, 'https://www.gutenberg.org/ebooks/19032', 'en', 162), +(7608, 'The Battle of April 19, 1775\r\nin Lexington, Concord, Lincoln, Arlington, Cambridge, Somerville and Charlestown, Massachusetts', 'Coburn, Frank Warren', '2015-08-20', 12, 'https://www.gutenberg.org/ebooks/49742', 'en', 4161), +(7609, 'Mjallhvít\r\nÆfintýri Handa Börnum', 'Grimm, Jacob', '2005-10-10', 49, 'https://www.gutenberg.org/ebooks/16846', 'is', 900), +(7610, 'Liebesgedichte', 'Huch, Ricarda', '2010-03-15', 12, 'https://www.gutenberg.org/ebooks/31658', 'de', 4162), +(7611, 'The Russian Revolution; The Jugo-Slav Movement', 'Harper, Samuel N. (Samuel Northrup)', '2005-07-01', 23, 'https://www.gutenberg.org/ebooks/8465', 'en', 4163), +(7612, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 13: Holland and Germany', 'Casanova, Giacomo', '2004-12-11', 20, 'https://www.gutenberg.org/ebooks/2963', 'en', 4164), +(7613, 'Mendelism\nThird Edition', 'Punnett, Reginald Crundall', '2009-05-18', 8, 'https://www.gutenberg.org/ebooks/28775', 'en', 4165), +(7614, 'The Aeroplane Speaks', 'Barber, H. (Horatio)', '1997-02-01', 90, 'https://www.gutenberg.org/ebooks/818', 'en', 1577), +(7615, 'Motor Matt\'s Engagement; or, On the Road with a Show', 'Matthews, Stanley R.', '2016-05-23', 5, 'https://www.gutenberg.org/ebooks/52138', 'en', 4097), +(7616, 'The Form of Perfect Living and Other Prose Treatises', 'Rolle, Richard, of Hampole', '2008-06-20', 15, 'https://www.gutenberg.org/ebooks/25856', 'en', 4166), +(7617, 'Little Gidding and its inmates in the Time of King Charles I.\nwith an account of the Harmonies', 'Acland, John Edward', '2008-04-03', 9, 'https://www.gutenberg.org/ebooks/24984', 'en', 4167), +(7618, 'Lifsbilder från finska hem 1\nBland fattigt folk', 'Canth, Minna', '2007-02-06', 29, 'https://www.gutenberg.org/ebooks/20518', 'sv', 61), +(7619, 'Gibraltar and Its Sieges, with a Description of Its Natural Features.', 'Stephens, Frederic George', '2018-12-02', 5, 'https://www.gutenberg.org/ebooks/58402', 'en', 4168), +(7620, 'The Life-Work of Flaubert, from the Russian of Merejowski', 'Merezhkovsky, Dmitry Sergeyevich', '2010-10-12', 11, 'https://www.gutenberg.org/ebooks/33933', 'en', 4169), +(7621, 'Encyclopaedia Britannica, 11th Edition, \"Helmont, Jean\" to \"Hernosand\"\r\nVolume 13, Slice 3', 'Various', '2012-04-12', 20, 'https://www.gutenberg.org/ebooks/39435', 'en', 1081), +(7622, 'Ventures Into Verse\r\nBeing various ballads, ballades, rondeaux, triolets, songs, quatrains, odes and roundels, all rescued from the potters\' field of old files and here given decent burial', 'Mencken, H. L. (Henry Louis)', '2016-08-27', 16, 'https://www.gutenberg.org/ebooks/52904', 'en', 178), +(7623, 'Harry Coverdale\'s Courtship, and All That Came of It', 'Smedley, Frank E. (Frank Edward)', '2018-02-18', 17, 'https://www.gutenberg.org/ebooks/56598', 'en', 137), +(7624, 'L\'Illustration, No. 2500, 24 Janvier 1891', 'Various', '2014-02-09', 10, 'https://www.gutenberg.org/ebooks/44861', 'fr', 150), +(7625, 'U.S. Copyright Renewals, 1975 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11851', 'en', 4170), +(7626, 'Pyhä sontiainen: Kuvaus porttola-elämästä', 'Jerusalem, Else', '2019-01-06', 8, 'https://www.gutenberg.org/ebooks/58630', 'fi', 2453), +(7627, 'Rodney Stone', 'Doyle, Arthur Conan', '2004-02-01', 59, 'https://www.gutenberg.org/ebooks/5148', 'en', 4171), +(7628, 'The Young Captives\nA Narrative of the Shipwreck and Suffering of John and William Doyley', 'Anonymous', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/10983', 'en', 4172), +(7629, 'Formosa, de eerste kolonie van Japan\nDe Aarde en haar Volken, 1909', 'Kann, Réginald', '2008-04-30', 8, 'https://www.gutenberg.org/ebooks/25258', 'nl', 4173), +(7630, 'The American Indians\r\nTheir History, Condition and Prospects, from Original Notes and Manuscripts', 'Schoolcraft, Henry Rowe', '2012-05-04', 17, 'https://www.gutenberg.org/ebooks/39607', 'en', 869), +(7631, 'Thomas Wingfold, Curate V2', 'MacDonald, George', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/5974', 'en', 4174), +(7632, 'Elements of Criticism, Volume I.', 'Kames, Henry Home, Lord', '2018-08-12', 25, 'https://www.gutenberg.org/ebooks/57678', 'en', 4175), +(7633, 'The Tao Teh King, or the Tao and its Characteristics', 'Laozi', '1995-02-01', 849, 'https://www.gutenberg.org/ebooks/216', 'en', 1493), +(7634, 'Florence Hanemann\'s Dance Revue\nCentral School, Glen Rock, New Jersey, June 9, 1950', 'Anonymous', '2011-01-12', 13, 'https://www.gutenberg.org/ebooks/34924', 'en', 4176), +(7635, 'Woodstock; or, the Cavalier', 'Scott, Walter', '2006-01-01', 89, 'https://www.gutenberg.org/ebooks/9785', 'en', 98), +(7636, 'Those Who Smiled, and Eleven Other Stories', 'Gibbon, Perceval', '2007-12-26', 20, 'https://www.gutenberg.org/ebooks/23993', 'en', 61), +(7637, 'Historical Record of the First, or Royal Regiment of Foot\r\nContaining an Account of the Origin of the Regiment in the Reign of King James VI. of Scotland, and of Its Subsequent Services to 1846', 'Cannon, Richard', '2015-08-01', 10, 'https://www.gutenberg.org/ebooks/49570', 'en', 4177), +(7638, 'Mr. Joseph Hanson, The Haberdasher', 'Mitford, Mary Russell', '2007-10-02', 12, 'https://www.gutenberg.org/ebooks/22841', 'en', 262), +(7639, 'I funghi mangerecci e velenosi dell\'Europa media\r\ncon speciale riguardo a quelli che crescono nel Trentino - II edizione riveduta ed aumentata', 'Bresadola, Giacomo', '2013-02-25', 40, 'https://www.gutenberg.org/ebooks/42198', 'it', 4178), +(7640, 'The Book of the Thousand Nights and One Night, Volume III', NULL, '2005-08-01', 60, 'https://www.gutenberg.org/ebooks/8657', 'en', 1007), +(7641, 'The History of a Lie: \"The Protocols of the Wise Men of Zion\"', 'Bernstein, Herman', '2006-09-08', 65, 'https://www.gutenberg.org/ebooks/19200', 'en', 4179), +(7642, 'Φυλλάδες του Γεροδήμου', 'Eftaliotis, Argyris', '2010-10-23', 6, 'https://www.gutenberg.org/ebooks/34118', 'el', 1348), +(7643, 'The Words of Jesus', 'Macduff, John R. (John Ross)', '2009-04-09', 17, 'https://www.gutenberg.org/ebooks/28547', 'en', 4180), +(7644, 'California Athabascan Groups', 'Baumhoff, Martin A.', '2013-10-03', 17, 'https://www.gutenberg.org/ebooks/43876', 'en', 4181), +(7645, 'Sancti Hilarii: Pictaviensis Episcopi Opera Omnia\r\nPatrologiae Cursus Completus; Tomus X', 'Hilary, Saint, Bishop of Poitiers', '2009-07-23', 22, 'https://www.gutenberg.org/ebooks/29495', 'la', 4182), +(7646, 'The Opera\r\nA Sketch of the Development of Opera. With full Descriptions of all Works in the Modern Repertory.', 'Streatfeild, R. A. (Richard Alexander)', '2005-07-09', 40, 'https://www.gutenberg.org/ebooks/16248', 'en', 4183), +(7647, 'Familjen i dalen: Berättelse', 'Flygare-Carlén, Emilie', '2014-08-09', 12, 'https://www.gutenberg.org/ebooks/46538', 'sv', 4184), +(7648, 'Seitsemän: Titanic-novelleja', 'Kallas, Aino Krohn', '2017-11-08', 8, 'https://www.gutenberg.org/ebooks/55913', 'fi', 175), +(7649, 'Histoire de Mlle Brion dite Comtesse de Launay (1754)\r\nIntroduction, Essai bibliographique par Guillaume Apollinaire', 'Anonymous', '2018-11-09', 103, 'https://www.gutenberg.org/ebooks/58254', 'fr', 4185), +(7650, 'The History of Human Marriage\nThird Edition', 'Westermarck, Edward', '2019-04-28', 86, 'https://www.gutenberg.org/ebooks/59386', 'en', 42), +(7651, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 16', 'Dryden, John', '2005-02-07', 44, 'https://www.gutenberg.org/ebooks/14947', 'en', 1201), +(7652, 'The Key to Yesterday', 'Buck, Charles Neville', '2010-09-19', 26, 'https://www.gutenberg.org/ebooks/33759', 'en', 61), +(7653, 'The Red Rover: A Tale', 'Cooper, James Fenimore', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11409', 'en', 4186), +(7654, 'Allegories of Life', 'Adams, J. S., Mrs.', '2005-05-24', 11, 'https://www.gutenberg.org/ebooks/15895', 'en', 4187), +(7655, 'Astronomical Curiosities: Facts and Fallacies', 'Gore, J. Ellard (John Ellard)', '2012-03-25', 22, 'https://www.gutenberg.org/ebooks/39263', 'en', 4188), +(7656, 'Reisherinneringen uit Korea en China\nDe Aarde en haar Volken, 1904', 'Schmidt auf Altenstadt, A. von', '2012-11-16', 2, 'https://www.gutenberg.org/ebooks/41379', 'nl', 2773), +(7657, 'Proposed Surrender of the Prayer-Book and Articles of the Church of England\r\nA Letter to the Lord Bishop of London on Professor Stanley\'s Views of Clerical and University \"Subscription\"', 'Irons, William J. (William Josiah)', '2015-06-02', 3, 'https://www.gutenberg.org/ebooks/49114', 'en', 4189), +(7658, 'The World English Bible (WEB): Joshua', 'Anonymous', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8233', 'en', 4190), +(7659, 'Beasts & Men\r\nFolk Tales Collected in Flanders and Illustrated by Jean de Bosschère', 'Boschère, Jean de', '2014-09-25', 39, 'https://www.gutenberg.org/ebooks/46960', 'en', 4191), +(7660, 'Els Deu Mil\nAnd Vida D\'artaxerxes, Per Plutarc', 'Plutarch', '2006-10-30', 38, 'https://www.gutenberg.org/ebooks/19664', 'ca', 4192), +(7661, 'The Secret Guide to Computers', 'Walter, Russ', '1996-09-01', 23, 'https://www.gutenberg.org/ebooks/672', 'en', 4193), +(7662, 'In the Strange South Seas', 'Grimshaw, Beatrice', '2017-04-07', 8, 'https://www.gutenberg.org/ebooks/54499', 'en', 4194), +(7663, 'À Angora auprès de Mustafa Kemal', 'Haïdar, Alaeddine', '2015-12-31', 21, 'https://www.gutenberg.org/ebooks/50805', 'fr', 4195), +(7664, 'The Man Who Was Afraid', 'Gorky, Maksim', '2001-07-01', 19, 'https://www.gutenberg.org/ebooks/2709', 'en', 1014), +(7665, 'The Arena, Volume 4, No. 22, September, 1891', 'Various', '2007-08-27', 14, 'https://www.gutenberg.org/ebooks/22419', 'en', 883), +(7666, 'Der kleine Ritter (Herr Wolodyjowski): Historischer Roman', 'Sienkiewicz, Henryk', '2015-09-10', 14, 'https://www.gutenberg.org/ebooks/49928', 'de', 4196), +(7667, 'The Travellers: A Tale, Designed for Young People.', 'Sedgwick, Catharine Maria', '2010-03-31', 13, 'https://www.gutenberg.org/ebooks/31832', 'en', 4197), +(7668, 'The Looking-Glass for the Mind; or, Intellectual Mirror', 'Berquin, M. (Arnaud)', '2008-10-12', 16, 'https://www.gutenberg.org/ebooks/26885', 'en', 179), +(7669, 'Plain Facts', 'Bauman, G. A.', '2009-02-01', 5, 'https://www.gutenberg.org/ebooks/27957', 'en', 740), +(7670, 'Kertomuksia kirkkohistorian alalta 1: Vanha aika', 'Rosendal, Mauno', '2015-09-24', 7, 'https://www.gutenberg.org/ebooks/50039', 'fi', 4198), +(7671, 'The Scarlet Feather', 'Townley, Houghton', '2009-02-19', 17, 'https://www.gutenberg.org/ebooks/28123', 'en', 376), +(7672, 'Römische Elegien', 'Goethe, Johann Wolfgang von', '2005-04-01', 37, 'https://www.gutenberg.org/ebooks/7875', 'de', 1518), +(7673, 'De ramp van Valparaiso\r\nDe Aarde en haar Volken, 1907', 'Bourdon, Henri', '2006-10-03', 6, 'https://www.gutenberg.org/ebooks/19456', 'nl', 4199), +(7674, 'To Herat and Cabul: A Story of the First Afghan War', 'Henty, G. A. (George Alfred)', '2017-10-20', 43, 'https://www.gutenberg.org/ebooks/55779', 'en', 4200), +(7675, 'The Osage tribe, two versions of the child-naming rite\n(1928 N 43 / 1925-1926 (pages 23-164))', 'La Flesche, Francis', '2015-06-29', 17, 'https://www.gutenberg.org/ebooks/49326', 'en', 4201), +(7676, 'The Bible, King James version, Book 1: Genesis', 'Anonymous', '2005-04-01', 159, 'https://www.gutenberg.org/ebooks/8001', 'en', 4202), +(7677, 'Just David', 'Porter, Eleanor H. (Eleanor Hodgman)', '1996-02-01', 77, 'https://www.gutenberg.org/ebooks/440', 'en', 153), +(7678, 'The Edge of the Knife', 'Piper, H. Beam', '2006-06-14', 123, 'https://www.gutenberg.org/ebooks/18584', 'en', 26), +(7679, 'Rassegnazione: Romanzo', 'Capuana, Luigi', '2008-11-29', 14, 'https://www.gutenberg.org/ebooks/27359', 'it', 61), +(7680, 'Rückblicke', 'Grünfeld, Walter', '2004-12-01', 23, 'https://www.gutenberg.org/ebooks/7049', 'de', 4203), +(7681, 'Minstrelsy of the Scottish Border, Volume 2 (of 3)\r\nConsisting of Historical and Romantic Ballads, Collected in the Southern Counties of Scotland; with a Few of Modern Date, Founded Upon Local Tradition', 'Scott, Walter', '2004-07-11', 35, 'https://www.gutenberg.org/ebooks/12882', 'en', 4204), +(7682, 'Notes and Queries, Number 82, May 24, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-03-11', 5, 'https://www.gutenberg.org/ebooks/28311', 'en', 105), +(7683, 'Le vicomte de Bragelonne, Tome IV.', 'Dumas, Alexandre', '2004-11-04', 31, 'https://www.gutenberg.org/ebooks/13950', 'fr', 98), +(7684, 'The World\'s Great Sermons, Volume 06: H. W. Beecher to Punshon', NULL, '2013-12-15', 21, 'https://www.gutenberg.org/ebooks/44439', 'en', 3021), +(7685, 'Scotland in Pagan Times; The Iron Age', 'Anderson, Joseph', '2018-08-30', 64, 'https://www.gutenberg.org/ebooks/57812', 'en', 4205), +(7686, 'The Silversmith in Eighteenth-Century Williamsburg\r\nAn Account of His Life & Times, & of His Craft', 'Ford, Thomas K.', '2018-10-10', 6, 'https://www.gutenberg.org/ebooks/58066', 'en', 4206), +(7687, 'Jaakko Jaakonpoika', 'Alkio, Santeri', '2004-12-13', 15, 'https://www.gutenberg.org/ebooks/14349', 'fi', 61), +(7688, 'Our Little Hindu Cousin', 'McManus, Blanche', '2013-02-03', 18, 'https://www.gutenberg.org/ebooks/41977', 'en', 4207), +(7689, 'Korven kaikuja: Hengellisiä lauluja', 'Jaakkola, Efraim', '2011-05-02', 4, 'https://www.gutenberg.org/ebooks/36019', 'fi', 8), +(7690, 'Blackwood\'s Edinburgh Magazine, Volume 63, No. 392, June, 1848', 'Various', '2012-06-28', 16, 'https://www.gutenberg.org/ebooks/40099', 'en', 274), +(7691, 'Claridades do sul', 'Leal, António Duarte Gomes', '2007-03-30', 12, 'https://www.gutenberg.org/ebooks/20940', 'pt', 8), +(7692, 'From the Thames to the Tiber\nor, My visit to Paris, Rome, Florence, Venice, Milan, Switzerland, etc.', 'Wardle, Joseph', '2011-12-01', 19, 'https://www.gutenberg.org/ebooks/38183', 'en', 1408), +(7693, 'Poems of Nature', 'Thoreau, Henry David', '2019-07-27', 1168, 'https://www.gutenberg.org/ebooks/59988', 'en', 350), +(7694, 'Ralph in the Switch Tower; Or, Clearing the Track', 'Chapman, Allen', '2012-03-04', 110, 'https://www.gutenberg.org/ebooks/39051', 'en', 771), +(7695, 'At the Time Appointed', 'Barbour, A. Maynard (Anna Maynard)', '2007-06-21', 28, 'https://www.gutenberg.org/ebooks/21892', 'en', 128), +(7696, 'Tablets', 'Alcott, Amos Bronson', '2011-07-23', 28, 'https://www.gutenberg.org/ebooks/36825', 'en', 620), +(7697, 'Armenian Legends and Poems', NULL, '2017-01-21', 25, 'https://www.gutenberg.org/ebooks/54036', 'en', 4208), +(7698, 'In Luxemburg\'s Gutland\nDe Aarde en haar Volken, 1907', 'Perk, M. A.', '2006-05-05', 8, 'https://www.gutenberg.org/ebooks/18319', 'nl', 4209), +(7699, 'The Indian Fairy Book\nFrom the Original Legends', 'Schoolcraft, Henry Rowe', '2015-03-12', 74, 'https://www.gutenberg.org/ebooks/48469', 'en', 4210), +(7700, 'On the Road to Bagdad: A Story of Townshend\'s Gallant Advance on the Tigris', 'Brereton, F. S. (Frederick Sadleir)', '2013-07-02', 18, 'https://www.gutenberg.org/ebooks/43081', 'en', 146), +(7701, 'The Romance of Words (4th ed.)', 'Weekley, Ernest', '2007-12-21', 32, 'https://www.gutenberg.org/ebooks/23958', 'en', 4211), +(7702, 'Why I Preach the Second Coming', 'Haldeman, Isaac Massey', '2009-12-01', 8, 'https://www.gutenberg.org/ebooks/30573', 'en', 2692), +(7703, 'The Complete Works of Artemus Ward — Part 4: To California and Return', 'Ward, Artemus', '2002-06-01', 18, 'https://www.gutenberg.org/ebooks/3274', 'en', 190), +(7704, 'The Making of a Prig', 'Sharp, Evelyn', '2013-02-22', 8, 'https://www.gutenberg.org/ebooks/42153', 'en', 45), +(7705, 'The Life and Adventures of Robinson Crusoe (1808)', 'Defoe, Daniel', '2004-06-01', 258, 'https://www.gutenberg.org/ebooks/12623', 'en', 4212), +(7706, 'The Naval History of the United States. Volume 2', 'Abbot, Willis J. (Willis John)', '2008-08-24', 28, 'https://www.gutenberg.org/ebooks/26416', 'en', 3833), +(7707, 'The Non-religion of the Future: A Sociological Study', 'Guyau, Jean-Marie', '2014-11-22', 26, 'https://www.gutenberg.org/ebooks/47421', 'en', 4213), +(7708, 'The Emancipation of Massachusetts', 'Adams, Brooks', '2004-10-01', 27, 'https://www.gutenberg.org/ebooks/6706', 'en', 4214), +(7709, 'The Creature from Cleveland Depths', 'Leiber, Fritz', '2007-10-24', 73, 'https://www.gutenberg.org/ebooks/23164', 'en', 1280), +(7710, 'The Rivals of Acadia\nAn Old Story of the New World', 'Cheney, H. V. (Harriet Vaughan)', '2005-12-19', 10, 'https://www.gutenberg.org/ebooks/17351', 'en', 4215), +(7711, 'Mrs Albert Grundy—Observations in Philistia', 'Frederic, Harold', '2015-11-19', 5, 'https://www.gutenberg.org/ebooks/50496', 'en', 4216), +(7712, 'The State: Its History and Development Viewed Sociologically', 'Oppenheimer, Franz', '2016-03-24', 26, 'https://www.gutenberg.org/ebooks/51544', 'en', 4217), +(7713, 'Idolatry: A Romance', 'Hawthorne, Julian', '2005-07-13', 8, 'https://www.gutenberg.org/ebooks/16283', 'en', 61), +(7714, 'Friction, Lubrication and the Lubricants in Horology', 'Lewis, W. T. (William T.)', '2011-01-19', 24, 'https://www.gutenberg.org/ebooks/35001', 'en', 4218), +(7715, 'The Old World and Its Ways\r\nDescribing a Tour Around the World and Journeys Through Europe', 'Bryan, William Jennings', '2014-04-15', 27, 'https://www.gutenberg.org/ebooks/45376', 'en', 819), +(7716, 'Molly Brown\'s Freshman Days', 'Speed, Nell', '2011-07-10', 28, 'https://www.gutenberg.org/ebooks/36684', 'en', 4219), +(7717, 'Lady Bridget in the Never-Never Land: a story of Australian life', 'Praed, Campbell, Mrs.', '2003-05-01', 25, 'https://www.gutenberg.org/ebooks/4051', 'en', 792), +(7718, 'The Man of the Desert', 'Hill, Grace Livingston', '2007-05-28', 52, 'https://www.gutenberg.org/ebooks/21633', 'en', 1397), +(7719, 'The Little Red Chimney: Being the Love Story of a Candy Man', 'Leonard, Mary Finley', '2005-03-18', 3, 'https://www.gutenberg.org/ebooks/15406', 'en', 48), +(7720, 'An Account of the Destruction of the Jesuits in France', 'Alembert, Jean Le Rond d\'', '2019-06-11', 39, 'https://www.gutenberg.org/ebooks/59729', 'en', 4220), +(7721, 'Marjorie Dean, Marvelous Manager', 'Chase, Josephine', '2016-10-05', 7, 'https://www.gutenberg.org/ebooks/53213', 'en', 4221), +(7722, 'The Stories of the Three Burglars', 'Stockton, Frank Richard', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/10948', 'en', 1286), +(7723, 'The Byzantine Empire\r\nThird Edition', 'Oman, Charles', '2011-10-14', 86, 'https://www.gutenberg.org/ebooks/37756', 'en', 4222), +(7724, 'The Unexpurgated Case Against Woman Suffrage', 'Wright, Almroth', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/5183', 'en', 4223), +(7725, 'The Kirk on Rutgers Farm', 'Brückbauer, Frederick', '2008-05-02', 19, 'https://www.gutenberg.org/ebooks/25293', 'en', 4224), +(7726, 'Universal Brotherhood, Volume XIII, No. 10, January 1899\r\nA Magazine Devoted to the Brotherhood of Humanity, the Theosophical Movement, Philosophy, Science and Art', 'Various', '2018-03-16', 14, 'https://www.gutenberg.org/ebooks/56761', 'en', 4225), +(7727, 'Tom Brown\'s School Days', 'Hughes, Thomas', '2010-05-02', 26, 'https://www.gutenberg.org/ebooks/32224', 'en', 1779), +(7728, 'As You Like It', 'Shakespeare, William', '1998-11-01', 109, 'https://www.gutenberg.org/ebooks/1523', 'en', 3502), +(7729, 'Art in America: A Critical and Historial Sketch', 'Benjamin, S. G. W. (Samuel Greene Wheeler)', '2012-08-28', 20, 'https://www.gutenberg.org/ebooks/40604', 'en', 4226), +(7730, 'William Tell Overture, Pt. 2', NULL, '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10174', 'en', 4227), +(7731, 'Reminiscences of a Rebel', 'Dunaway, Wayland Fuller', '2008-01-17', 18, 'https://www.gutenberg.org/ebooks/24341', 'en', 83), +(7732, 'In New Granada; Or, Heroes and Patriots', 'Kingston, William Henry Giles', '2007-05-09', 20, 'https://www.gutenberg.org/ebooks/21401', 'en', 4228), +(7733, 'Blackwood\'s Edinburgh Magazine — Volume 56, No. 346, August, 1844', 'Various', '2005-04-16', 11, 'https://www.gutenberg.org/ebooks/15634', 'en', 711), +(7734, 'Killarney', 'Gorges, Mary', '2014-03-15', 12, 'https://www.gutenberg.org/ebooks/45144', 'en', 4229), +(7735, 'The Golden Bowl — Volume 2', 'James, Henry', '2003-07-01', 24, 'https://www.gutenberg.org/ebooks/4263', 'en', 1061), +(7736, 'Christ Going Up to Heaven\nNo. 47', 'Unknown', '2011-09-29', 9, 'https://www.gutenberg.org/ebooks/37564', 'en', 4230), +(7737, 'An Elementary Manual of New Zealand Entomology\nBeing an Introduction to the Study of Our Native Insects', 'Hudson, G. V. (George Vernon)', '2013-11-02', 2, 'https://www.gutenberg.org/ebooks/44096', 'en', 4231), +(7738, 'Torquemada and the Spanish Inquisition: A History', 'Sabatini, Rafael', '2016-09-09', 52, 'https://www.gutenberg.org/ebooks/53021', 'en', 4232), +(7739, 'St. Paul\'s Epistle to the Ephesians: A Practical Exposition', 'Gore, Charles', '2010-04-17', 18, 'https://www.gutenberg.org/ebooks/32016', 'en', 4233), +(7740, 'The Grapes of New York', 'Hedrick, U. P.', '2014-06-15', 16, 'https://www.gutenberg.org/ebooks/45978', 'en', 4234), +(7741, 'Juhana Herttuan ja Catharina Jagellonican lauluja', 'Leino, Eino', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11294', 'fi', 8), +(7742, 'The Sugar Creek Gang Digs for Treasure', 'Hutchens, Paul', '2018-02-12', 9, 'https://www.gutenberg.org/ebooks/56553', 'en', 470), +(7743, 'The War That Will End War', 'Wells, H. G. (Herbert George)', '2018-07-10', 89, 'https://www.gutenberg.org/ebooks/57481', 'en', 335), +(7744, 'C\'Était ainsi...', 'Buysse, Cyriel', '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/10346', 'fr', 61), +(7745, 'Brennendes Geheimnis: Erzählung', 'Zweig, Stefan', '2008-01-05', 92, 'https://www.gutenberg.org/ebooks/24173', 'de', 1061), +(7746, 'Child of Storm', 'Haggard, H. Rider (Henry Rider)', '1999-04-01', 127, 'https://www.gutenberg.org/ebooks/1711', 'en', 3825), +(7747, 'Plato and the Other Companions of Sokrates, 3rd ed. Volume 2', 'Grote, George', '2012-08-07', 17, 'https://www.gutenberg.org/ebooks/40436', 'en', 4235), +(7748, 'Mauprat', 'Sand, George', '2006-03-26', 43, 'https://www.gutenberg.org/ebooks/2194', 'en', 4236), +(7749, 'Ερυξίας, Αξίοχος, Αλκυών', 'Plato', '2009-12-23', 25, 'https://www.gutenberg.org/ebooks/30741', 'el', 779), +(7750, 'Miti, leggende e superstizioni del Medio Evo, vol. I', 'Graf, Arturo', '2019-08-01', 268, 'https://www.gutenberg.org/ebooks/60031', 'it', 4237), +(7751, 'Pikku kertoelmia', 'Hahnsson, Theodolinda', '2017-02-19', 1, 'https://www.gutenberg.org/ebooks/54204', 'fi', 41), +(7752, 'The Long White Cloud: \"Ao Tea Roa\"', 'Reeves, William Pember', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/12411', 'en', 4238), +(7753, 'The Road to Oz', 'Baum, L. Frank (Lyman Frank)', '2008-08-15', 134, 'https://www.gutenberg.org/ebooks/26624', 'en', 174), +(7754, 'The Land of the Changing Sun', 'Harben, Will N. (Will Nathaniel)', '2002-01-01', 51, 'https://www.gutenberg.org/ebooks/3046', 'en', 26), +(7755, 'O Padroado Portuguez na China', 'Pereira, Alberto Feliciano Marques', '2010-03-18', 15, 'https://www.gutenberg.org/ebooks/31693', 'pt', 4239), +(7756, 'Charles Sumner: his complete works, volume 12 (of 20)', 'Sumner, Charles', '2015-08-26', 8, 'https://www.gutenberg.org/ebooks/49789', 'en', 125), +(7757, 'The Mystic Mid-Region: The Deserts of the Southwest', 'Burdick, Arthur J. (Arthur Jerome)', '2013-03-18', 12, 'https://www.gutenberg.org/ebooks/42361', 'en', 4240), +(7758, 'A Struggle For Life', 'Aldrich, Thomas Bailey', '2007-11-06', 15, 'https://www.gutenberg.org/ebooks/23356', 'en', 179), +(7759, 'Mother Stories from the New Testament\r\nA Book of the Best Stories from the New Testament that Mothers can tell their Children', 'Anonymous', '2005-11-26', 58, 'https://www.gutenberg.org/ebooks/17163', 'en', 4241), +(7760, 'The Mystery Hunters at the Haunted Lodge', 'Wyckoff, Capwell', '2014-12-10', 33, 'https://www.gutenberg.org/ebooks/47613', 'en', 557), +(7761, 'Goldsmith\nEnglish Men of Letters Series', 'Black, William', '2006-07-27', 23, 'https://www.gutenberg.org/ebooks/18917', 'en', 4242), +(7762, 'Dracula', 'Stoker, Bram', '2004-09-01', 37, 'https://www.gutenberg.org/ebooks/6534', 'en', 2490), +(7763, 'The Streets of Ascalon\nEpisodes in the Unfinished Career of Richard Quarren, Esqre.', 'Chambers, Robert W. (Robert William)', '2011-02-10', 26, 'https://www.gutenberg.org/ebooks/35233', 'en', 61), +(7764, 'The History of the 33rd Divisional Artillery, in the War, 1914-1918.', 'Macartney-Filgate, John Victor', '2016-04-17', 22, 'https://www.gutenberg.org/ebooks/51776', 'en', 4243), +(7765, 'The Forbidden Trail', 'Morrow, Honoré', '2007-08-09', 25, 'https://www.gutenberg.org/ebooks/22284', 'en', 1280), +(7766, 'The Backwoodsman; Or, Life on the Indian Frontier', NULL, '2011-08-15', 13, 'https://www.gutenberg.org/ebooks/37100', 'en', 4244), +(7767, 'The Missing Bride', 'Southworth, Emma Dorothy Eliza Nevitte', '2004-12-20', 22, 'https://www.gutenberg.org/ebooks/14382', 'en', 61), +(7768, 'Labor and the Angel', 'Scott, Duncan Campbell', '2016-11-03', 15, 'https://www.gutenberg.org/ebooks/53445', 'en', 1237), +(7769, 'Arnoldiana, ou Sophie Arnould et ses contemporaines;\r\nrecueil choisi d\'Anecdotes piquantes, de Réparties et de bons Mots de Mlle Arnould précédé d\'une notice sur sa vie précédé d\'une Notice sur sa Vie et sur l\'Académie impériale de Musique.', 'Arnould, Sophie', '2012-02-24', 14, 'https://www.gutenberg.org/ebooks/38974', 'fr', 4245), +(7770, 'The Log of a Privateersman', 'Collingwood, Harry', '2007-04-13', 34, 'https://www.gutenberg.org/ebooks/21065', 'en', 4246), +(7771, 'Insolación y Morriña (Dos historias amorosas)', 'Pardo Bazán, Emilia, condesa de', '2016-07-17', 28, 'https://www.gutenberg.org/ebooks/52597', 'es', 1353), +(7772, 'Myths and Legends of China', 'Werner, E. T. C. (Edward Theodore Chalmers)', '2005-03-04', 491, 'https://www.gutenberg.org/ebooks/15250', 'en', 4247), +(7773, 'Stories about Indians', 'Anonymous', '2014-04-28', 10, 'https://www.gutenberg.org/ebooks/45520', 'en', 4248), +(7774, 'Love Me Little, Love Me Long', 'Reade, Charles', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/4607', 'en', 757), +(7775, 'Plays', 'Ostrovsky, Aleksandr Nikolaevich', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/10722', 'en', 4249), +(7776, 'Accidental Death', 'Baily, Peter', '2008-02-04', 79, 'https://www.gutenberg.org/ebooks/24517', 'en', 616), +(7777, 'New Chronicles of Rebecca', 'Wiggin, Kate Douglas Smith', '1998-07-01', 69, 'https://www.gutenberg.org/ebooks/1375', 'en', 62), +(7778, 'The Geography of the Region about Devil\'s Lake and the Dalles of the Wisconsin\r\nWith Some Notes on Its Surface Geology', 'Atwood, Wallace Walter', '2011-11-27', 14, 'https://www.gutenberg.org/ebooks/38148', 'en', 4250), +(7779, 'Islannin kalastajat', 'Loti, Pierre', '2019-02-14', 2, 'https://www.gutenberg.org/ebooks/58891', 'fi', 4251), +(7780, 'Les guêpes ­— séries 1 & 2', 'Karr, Alphonse', '2012-06-21', 12, 'https://www.gutenberg.org/ebooks/40052', 'fr', 4252), +(7781, 'Historical Sketches, Volume I (of 3)\nThe Turks in Their Relation to Europe; Marcus Tullius Cicero; Apollonius of Tyana; Primitive Christianity', 'Newman, John Henry', '2007-06-18', 23, 'https://www.gutenberg.org/ebooks/21859', 'en', 4016), +(7782, 'To Him That Hath', 'Scott, Leroy', '2012-10-26', 10, 'https://www.gutenberg.org/ebooks/41180', 'en', 48), +(7783, 'Food in War Time', 'Lusk, Graham', '2010-05-21', 90, 'https://www.gutenberg.org/ebooks/32472', 'en', 4253), +(7784, 'Virgilio nel Medio Evo, vol. II', 'Comparetti, Domenico', '2019-07-18', 42, 'https://www.gutenberg.org/ebooks/59943', 'it', 4254), +(7785, 'Rules and Directions for the Employment of Injections in Various Diseases', 'Lewis, Thomas', '2017-12-06', 12, 'https://www.gutenberg.org/ebooks/56137', 'en', 4255), +(7786, 'Kriegsbüchlein für unsere Kinder', 'Sapper, Agnes', '2004-04-01', 46, 'https://www.gutenberg.org/ebooks/12075', 'de', 1250), +(7787, 'The Clansman: An Historical Romance of the Ku Klux Klan', 'Dixon, Thomas, Jr.', '2008-08-09', 111, 'https://www.gutenberg.org/ebooks/26240', 'en', 4256), +(7788, 'The Life of the Fly; With Which are Interspersed Some Chapters of Autobiography', 'Fabre, Jean-Henri', '2002-09-01', 55, 'https://www.gutenberg.org/ebooks/3422', 'en', 4257), +(7789, 'La emancipacion de los esclavos en los Estados Unidos', 'Labra, Rafael M. de (Rafael María)', '2013-05-13', 17, 'https://www.gutenberg.org/ebooks/42705', 'es', 4258), +(7790, 'The Elements of Drawing, in Three Letters to Beginners', 'Ruskin, John', '2009-10-24', 272, 'https://www.gutenberg.org/ebooks/30325', 'en', 4259), +(7791, 'Lease to Doomsday', 'Archer, Lee', '2008-12-02', 50, 'https://www.gutenberg.org/ebooks/27392', 'en', 26), +(7792, 'The Disagreeable Woman: A Social Mystery', 'Alger, Horatio, Jr.', '2017-05-04', 28, 'https://www.gutenberg.org/ebooks/54660', 'en', 48), +(7793, 'The Tinguian: Social, Religious, and Economic Life of a Philippine Tribe', 'Cole, Fay-Cooper', '2004-07-08', 196, 'https://www.gutenberg.org/ebooks/12849', 'en', 4260), +(7794, 'Eaux printanières', 'Turgenev, Ivan Sergeevich', '2011-03-22', 16, 'https://www.gutenberg.org/ebooks/35657', 'fr', 48), +(7795, 'Lives of the Necromancers', 'Godwin, William', '2004-12-01', 61, 'https://www.gutenberg.org/ebooks/7082', 'en', 4261), +(7796, 'Jeanne de Constantinople: Comtesse de Flandre et de Hainaut', 'Le Glay, Edouard André Joseph', '2016-02-27', 5, 'https://www.gutenberg.org/ebooks/51312', 'fr', 4262), +(7797, 'Salome en Een Florentijnsch Treurspel', 'Wilde, Oscar', '2009-06-23', 8, 'https://www.gutenberg.org/ebooks/29208', 'nl', 4263), +(7798, 'A Girl of the Klondike', 'Cross, Victoria', '2007-12-04', 20, 'https://www.gutenberg.org/ebooks/23732', 'en', 4264), +(7799, 'Viviette', 'Locke, William John', '2006-02-01', 35, 'https://www.gutenberg.org/ebooks/9924', 'en', 400), +(7800, 'Everybody\'s Lonesome: A True Fairy Story', 'Laughlin, Clara E. (Clara Elizabeth)', '2006-01-12', 12, 'https://www.gutenberg.org/ebooks/17507', 'en', 348), +(7801, 'Gli eretici d\'Italia, vol. II', 'Cantù, Cesare', '2014-11-03', 21, 'https://www.gutenberg.org/ebooks/47277', 'it', 4265), +(7802, 'Der Sprung aus dem Fenster', 'Otten, Karl', '2010-12-30', 13, 'https://www.gutenberg.org/ebooks/34785', 'de', 253), +(7803, 'The Iliad', 'Homer', '2004-07-01', 273, 'https://www.gutenberg.org/ebooks/6150', 'en', 4266), +(7804, 'The Daisy Chain, or Aspirations', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-01-01', 62, 'https://www.gutenberg.org/ebooks/3610', 'en', 4267), +(7805, 'The Avifauna of Micronesia, Its Origin, Evolution, and Distribution', 'Baker, Rollin H. (Rollin Harold)', '2013-04-14', 4, 'https://www.gutenberg.org/ebooks/42537', 'en', 4268), +(7806, 'Elemente der Absoluten Geometrie', 'Frischauf, Johannes', '2009-08-26', 11, 'https://www.gutenberg.org/ebooks/29806', 'de', 4269), +(7807, 'Le Circuit de l\'Est', 'Commune de Amiens/Nancy', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/12247', 'fr', 4270), +(7808, 'Das wandernde Licht: Novelle', 'Wildenbruch, Ernst von', '2017-09-19', 13, 'https://www.gutenberg.org/ebooks/55580', 'de', 138), +(7809, 'Scotch Loch-Fishing', 'Senior, William', '2008-07-16', 17, 'https://www.gutenberg.org/ebooks/26072', 'en', 4271); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(7810, 'The Brochure Series of Architectural Illustration, vol. 06, No. 04, April 1900\r\nThe Petit Trianon: Versailles; English Carved Fireplaces', 'Various', '2015-01-05', 21, 'https://www.gutenberg.org/ebooks/47879', 'en', 2140), +(7811, 'The Bab Ballads, with Which Are Included Songs of a Savoyard', 'Gilbert, W. S. (William Schwenck)', '2017-03-28', 9, 'https://www.gutenberg.org/ebooks/54452', 'en', 1054), +(7812, 'Since Cézanne', 'Bell, Clive', '2004-09-07', 26, 'https://www.gutenberg.org/ebooks/13395', 'en', 787), +(7813, 'ABC: Petits Contes', 'Lemaître, Jules', '2009-09-28', 92, 'https://www.gutenberg.org/ebooks/30117', 'fr', 168), +(7814, 'Poèmes et Poésies\nTraduction précédée d\'une étude par Paul Gallimard', 'Keats, John', '2016-02-03', 40, 'https://www.gutenberg.org/ebooks/51120', 'fr', 4272), +(7815, 'The Irish Ecclesiastical Record, Volume 1, February, 1865', NULL, '2011-03-03', 9, 'https://www.gutenberg.org/ebooks/35465', 'en', 96), +(7816, 'Starved Rock', 'Masters, Edgar Lee', '2014-07-05', 17, 'https://www.gutenberg.org/ebooks/46197', 'en', 178), +(7817, 'Chambers\'s Journal of Popular Literature, Science, and Art, No.690\nMarch 17, 1877', 'Various', '2014-10-04', 5, 'https://www.gutenberg.org/ebooks/47045', 'en', 18), +(7818, 'Three Soldiers', 'Dos Passos, John', '2004-08-01', 73, 'https://www.gutenberg.org/ebooks/6362', 'en', 579), +(7819, 'The Car of Destiny', 'Williamson, C. N. (Charles Norris)', '2007-11-15', 26, 'https://www.gutenberg.org/ebooks/23500', 'en', 1813), +(7820, 'Rannikon ratsastaja: Pohjoisfriisiläinen tarina', 'Storm, Theodor', '2015-04-30', 8, 'https://www.gutenberg.org/ebooks/48831', 'fi', 4273), +(7821, 'Eyes of Youth\r\nA Book of Verse by Padraic Colum, Shane Leslie, Viola Meynell, Ruth Lindsay, Hugh Austin, Judith Lytton, Olivia Meynell, Maurice Healy, Monica Saleeby & Francis Meynell. With four early poems by Francis Thompson & a foreword by Gilbert K. Chesterton', 'Various', '2006-02-09', 11, 'https://www.gutenberg.org/ebooks/17735', 'en', 532), +(7822, 'Otawa, Osa I\neli Suomalaisia huvituksia', 'Gottlund, C. A. (Carl Axel)', '2016-12-06', 22, 'https://www.gutenberg.org/ebooks/53677', 'fi', 4274), +(7823, 'Some Three Hundred Years Ago', 'Brewster, Edith Gilman', '2007-01-16', 30, 'https://www.gutenberg.org/ebooks/20385', 'en', 4275), +(7824, 'A Little Princess: Being the whole story of Sara Crewe now told for the first time', 'Burnett, Frances Hodgson', '2011-09-07', 159, 'https://www.gutenberg.org/ebooks/37332', 'en', 264), +(7825, 'A Leisurely Tour in England', 'Hissey, James John', '2014-05-21', 11, 'https://www.gutenberg.org/ebooks/45712', 'en', 1402), +(7826, 'Vittoria — Volume 1', 'Meredith, George', '2003-09-01', 8, 'https://www.gutenberg.org/ebooks/4435', 'en', 4276), +(7827, 'Les Muses de la Nouvelle France', 'Lescarbot, Marc', '2007-04-30', 13, 'https://www.gutenberg.org/ebooks/21257', 'fr', 4277), +(7828, 'Elämän hawainnoita 10: Pöyhkeä isäntä; Kauppias=mummo; Matkustaja', 'Päivärinta, Pietari', '2005-02-14', 14, 'https://www.gutenberg.org/ebooks/15062', 'fi', 456), +(7829, 'A Journey from This World to the Next', 'Fielding, Henry', '1997-12-01', 35, 'https://www.gutenberg.org/ebooks/1147', 'en', 114), +(7830, 'Poems of Emile Verhaeren', 'Verhaeren, Emile', '2010-09-21', 26, 'https://www.gutenberg.org/ebooks/33792', 'en', 2237), +(7831, 'The Last Days of Tolstoy', 'Chertkov, V. G. (Vladimir Grigorevich)', '2012-07-16', 11, 'https://www.gutenberg.org/ebooks/40260', 'en', 2372), +(7832, 'Inaugural Presidential Address', 'Clinton, Bill', '2003-12-01', 4, 'https://www.gutenberg.org/ebooks/10510', 'en', 4278), +(7833, 'Stories from English History', 'Skae, Hilda T.', '2008-03-01', 23, 'https://www.gutenberg.org/ebooks/24725', 'en', 4279), +(7834, 'The Moon: considered as a planet, a world, and a satellite.', 'Carpenter, James', '2018-01-04', 16, 'https://www.gutenberg.org/ebooks/56305', 'en', 4280), +(7835, 'Histoire du véritable Gribouille', 'Sand, George', '2010-06-01', 29, 'https://www.gutenberg.org/ebooks/32640', 'fr', 1007), +(7836, 'A House of Gentlefolk', 'Turgenev, Ivan Sergeevich', '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/5721', 'en', 85), +(7837, 'Papers and Proceedings of the Twenty-Third General Meeting of the American Library Association\r\nHeld at Waukesha, Wisconsin, July 4-10, 1901', NULL, '2013-12-11', 13, 'https://www.gutenberg.org/ebooks/44406', 'en', 4281), +(7838, 'Reisindrukken in het Oosten', 'Heldring, Louis', '2012-02-25', 6, 'https://www.gutenberg.org/ebooks/38980', 'nl', 723), +(7839, 'La madre naturaleza (2ª parte de Los pazos de Ulloa)', 'Pardo Bazán, Emilia, condesa de', '2018-10-09', 23, 'https://www.gutenberg.org/ebooks/58059', 'es', 2024), +(7840, 'Somewhere in Red Gap', 'Wilson, Harry Leon', '2004-12-17', 30, 'https://www.gutenberg.org/ebooks/14376', 'en', 637), +(7841, 'La vie littéraire. Quatrième série', 'France, Anatole', '2006-12-20', 31, 'https://www.gutenberg.org/ebooks/20143', 'fr', 1765), +(7842, 'The Life of William Ewart Gladstone, Vol. 1 (of 3)\n1809-1859', 'Morley, John', '2007-04-15', 27, 'https://www.gutenberg.org/ebooks/21091', 'en', 4282), +(7843, 'Guida delle Prealpi Giulie\nDistretti di Gemona, Tarcento, S. Daniele, Cividale e S. Pietro', 'Marinelli, Olinto', '2013-01-30', 25, 'https://www.gutenberg.org/ebooks/41948', 'it', 4283), +(7844, 'The Hand of the Mighty, and Other Stories', 'Kester, Vaughan', '2016-07-11', 5, 'https://www.gutenberg.org/ebooks/52563', 'en', 112), +(7845, 'Punch or the London Charivari, Volume 150, May 17 1916', 'Various', '2012-05-30', 4, 'https://www.gutenberg.org/ebooks/39852', 'en', 134), +(7846, 'From Pillar to Post: Leaves from a Lecturer\'s Note-Book', 'Bangs, John Kendrick', '2011-05-03', 19, 'https://www.gutenberg.org/ebooks/36026', 'en', 4284), +(7847, 'Herrasmies varkaana: Salapoliisikertomus', 'Elvestad, Sven', '2018-04-21', 13, 'https://www.gutenberg.org/ebooks/57011', 'fi', 4285), +(7848, 'Nancy of Paradise Cottage', 'Watkins, Shirley', '2010-08-27', 96, 'https://www.gutenberg.org/ebooks/33554', 'en', 4286), +(7849, 'Volvoreta', 'Fernández-Flórez, Wenceslao', '2019-02-11', 17, 'https://www.gutenberg.org/ebooks/58865', 'es', 154), +(7850, 'Poems — Volume 1', 'Meredith, George', '1998-07-01', 24, 'https://www.gutenberg.org/ebooks/1381', 'en', 3557), +(7851, 'The Wave of Scepticism and the Rock of Truth', 'Habershon, M. H. (Matthew Henry)', '2012-10-25', 50, 'https://www.gutenberg.org/ebooks/41174', 'en', 4287), +(7852, 'The Legion of Lazarus', 'Hamilton, Edmond', '2010-05-23', 51, 'https://www.gutenberg.org/ebooks/32486', 'en', 26), +(7853, '歸田錄', 'Ouyang, Xiu', '2008-05-11', 22, 'https://www.gutenberg.org/ebooks/25431', 'zh', 2525), +(7854, 'The Atlantic Monthly, Volume 06, No. 33, July, 1860\r\nA Magazine Of Literature, Art, And Politics', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11604', 'en', 1227), +(7855, 'Poems Teachers Ask For, Book Two', 'Various', '2006-10-04', 55, 'https://www.gutenberg.org/ebooks/19469', 'en', 1209), +(7856, 'The Exclusives (vol. 3 of 3)', 'Bury, Charlotte Campbell, Lady', '2017-10-13', 3, 'https://www.gutenberg.org/ebooks/55746', 'en', 4288), +(7857, 'Lives of Girls Who Became Famous', 'Bolton, Sarah Knowles', '2004-04-01', 56, 'https://www.gutenberg.org/ebooks/12081', 'en', 4289), +(7858, 'Medica Sacra\r\nOr, A Commentary on the Most Remarkable Diseases Mentioned in the Holy Scriptures', 'Mead, Richard', '2010-02-07', 17, 'https://www.gutenberg.org/ebooks/31203', 'en', 4290), +(7859, 'An Essay on Contagious Diseases\r\nmore particularly on the small-pox, measles, putrid, malignant, and pestilential fevers', 'Wintringham, Clifton', '2015-06-29', 9, 'https://www.gutenberg.org/ebooks/49319', 'en', 4291), +(7860, 'Peeps at Many Lands: Ireland', 'Tynan, Katharine', '2013-09-02', 19, 'https://www.gutenberg.org/ebooks/43623', 'en', 117), +(7861, 'Some Cities and San Francisco, and Resurgam', 'Bancroft, Hubert Howe', '2001-02-01', 23, 'https://www.gutenberg.org/ebooks/2504', 'en', 4292), +(7862, 'A Journey in Russia in 1858', 'Heywood, Robert', '2008-11-30', 7, 'https://www.gutenberg.org/ebooks/27366', 'en', 2408), +(7863, 'The Spanish Chest', 'Brown, Edna A.', '2004-11-01', 6, 'https://www.gutenberg.org/ebooks/6998', 'en', 4293), +(7864, 'String Quartet No. 15 in A minor Opus 132', 'Beethoven, Ludwig van', '2004-09-15', 14, 'https://www.gutenberg.org/ebooks/13153', 'en', 909), +(7865, 'International Language and Science\r\nConsiderations on the Introduction of an International Language into Science', 'Jespersen, Otto', '2017-05-09', 23, 'https://www.gutenberg.org/ebooks/54694', 'en', 4294), +(7866, 'Prisoner for Blasphemy', 'Foote, G. W. (George William)', '2004-12-01', 13, 'https://www.gutenberg.org/ebooks/7076', 'en', 4295), +(7867, 'Un avvocato dell\'avvenire\r\nLe Commedie, vol. 1', 'Carrera, Valentino', '2014-07-21', 10, 'https://www.gutenberg.org/ebooks/46351', 'it', 4296), +(7868, 'Le legs de Caïn\r\nUn Testament — Basile Hymen — Le Paradis sur le Dniester', 'Sacher-Masoch, Leopold, Ritter von', '2005-08-03', 25, 'https://www.gutenberg.org/ebooks/16421', 'fr', 61), +(7869, 'Elizabeth: the Disinherited Daughter\r\nBy E. Ben Ez-er', 'Hitchcock, Elizabeth Arnold', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8802', 'en', 4297), +(7870, 'A Pavorosa Illusão', 'Bocage, Manuel Maria Barbosa du', '2007-09-16', 22, 'https://www.gutenberg.org/ebooks/22614', 'pt', 1638), +(7871, 'Schillers Flucht von Stuttgart und Aufenthalt in Mannheim von 1782-1785', 'Streicher, Andreas', '2015-10-16', 13, 'https://www.gutenberg.org/ebooks/50234', 'de', 4298), +(7872, 'Lazy Matilda, and Other Tales', 'Pyle, Katharine', '2014-11-04', 17, 'https://www.gutenberg.org/ebooks/47283', 'en', 4299), +(7873, 'The Scientific Basis of National Progress, Including that of Morality', 'Gore, George', '2010-12-28', 3, 'https://www.gutenberg.org/ebooks/34771', 'en', 680), +(7874, 'Guy Fawkes; Or, A Complete History Of The Gunpowder Treason, A.D. 1605', 'Lathbury, Thomas', '2010-01-20', 23, 'https://www.gutenberg.org/ebooks/31031', 'en', 4300), +(7875, 'Raporto pri la oka kongreso de esperantistoj (Krakovo 1912)', 'Katryn, Ned', '2017-09-18', 3, 'https://www.gutenberg.org/ebooks/55574', 'eo', 4301), +(7876, 'Wilmot and Tilley', 'Hannay, James', '2008-07-19', 6, 'https://www.gutenberg.org/ebooks/26086', 'en', 4302), +(7877, 'Fibble, D.D.', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2008-11-04', 11, 'https://www.gutenberg.org/ebooks/27154', 'en', 190), +(7878, 'Swirling Waters', 'Rittenberg, Max', '2006-07-08', 32, 'https://www.gutenberg.org/ebooks/18789', 'en', 1719), +(7879, 'Notes and Queries, Number 36, July 6, 1850', 'Various', '2004-09-03', 5, 'https://www.gutenberg.org/ebooks/13361', 'en', 105), +(7880, 'Life of Mozart, Vol. 1 (of 3)', 'Jahn, Otto', '2013-08-07', 35, 'https://www.gutenberg.org/ebooks/43411', 'en', 3143), +(7881, 'War and Peace, Book 01: 1805', 'Tolstoy, Leo, graf', '2009-05-01', 21, 'https://www.gutenberg.org/ebooks/28920', 'en', 2564), +(7882, 'The Champdoce Mystery', 'Gaboriau, Emile', '2006-03-28', 62, 'https://www.gutenberg.org/ebooks/2736', 'en', 128), +(7883, 'Bolshevism: The Enemy of Political and Industrial Democracy', 'Spargo, John', '2005-08-28', 34, 'https://www.gutenberg.org/ebooks/16613', 'en', 4303), +(7884, 'The Players', 'Cole, Everett B.', '2007-08-29', 27, 'https://www.gutenberg.org/ebooks/22426', 'en', 26), +(7885, 'St John Damascene on Holy Images (πρὸς τοὺς διαβάλλοντας τᾶς ἁγίας εἰκόνας). Followed by Three Sermons on the Assumption (κοίμησις)', 'John of Damascus, Saint', '2015-09-09', 40, 'https://www.gutenberg.org/ebooks/49917', 'en', 4304), +(7886, 'A Connecticut Yankee in King Arthur\'s Court, Part 3.', 'Twain, Mark', '2004-07-06', 33, 'https://www.gutenberg.org/ebooks/7244', 'en', 313), +(7887, 'Boris Lensky', 'Schubin, Ossip', '2011-03-05', 12, 'https://www.gutenberg.org/ebooks/35491', 'en', 1949), +(7888, 'Maschere: Dramma in un atto', 'Bracco, Roberto', '2014-07-01', 10, 'https://www.gutenberg.org/ebooks/46163', 'it', 407), +(7889, 'Tulan', 'MacApp, C. C.', '2009-02-02', 31, 'https://www.gutenberg.org/ebooks/27968', 'en', 26), +(7890, 'The Lives of the Twelve Caesars, Volume 11: Titus', 'Suetonius', '2004-12-13', 23, 'https://www.gutenberg.org/ebooks/6396', 'en', 1037), +(7891, 'Furze the Cruel', 'Trevena, John', '2010-12-02', 21, 'https://www.gutenberg.org/ebooks/34543', 'en', 4305), +(7892, 'Shakespeare and the Emblem Writers\r\nan exposition of their similarities of throught and expression, preceded by a view of emblem-literature down to A.D. 1616', 'Green, Henry', '2015-09-19', 17, 'https://www.gutenberg.org/ebooks/50006', 'en', 4306), +(7893, 'Bronson Alcott\'s Fruitlands, compiled by Clara Endicott Sears\r\nWith Transcendental Wild Oats, by Louisa M. Alcott', NULL, '2016-12-07', 18, 'https://www.gutenberg.org/ebooks/53683', 'en', 4307), +(7894, 'Carl Wilhelm Scheele ett minnesblad på hundrade årsdagen af hans död', 'Cleve, P. T. (Per Teodor)', '2004-11-24', 16, 'https://www.gutenberg.org/ebooks/14144', 'sv', 4308), +(7895, 'Le catalogue des livres censurez par la faculté de theologie de Paris', 'Université de Paris. Faculté de théologie', '2007-01-15', 7, 'https://www.gutenberg.org/ebooks/20371', 'la', 4309), +(7896, 'Arachne — Volume 06', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5513', 'en', 803), +(7897, 'L\'Illustration, No. 2510, 4 Avril 1891', 'Various', '2014-01-10', 4, 'https://www.gutenberg.org/ebooks/44634', 'fr', 150), +(7898, 'Virginia: A Tragedy, and Other Poems', 'Gilmore, Marion Forster', '2011-05-24', 10, 'https://www.gutenberg.org/ebooks/36214', 'en', 8), +(7899, 'My Life In The South', 'Stroyer, Jacob', '2005-02-18', 20, 'https://www.gutenberg.org/ebooks/15096', 'en', 4310), +(7900, 'Keltakukkia', 'Aalto, Ari', '2016-08-08', 33, 'https://www.gutenberg.org/ebooks/52751', 'fi', 665), +(7901, 'A Village Ophelia and Other Stories', 'Aldrich, Anne Reeve', '2005-02-08', 17, 'https://www.gutenberg.org/ebooks/14978', 'en', 61), +(7902, 'History of Phosphorus', 'Farber, Eduard', '2010-09-20', 48, 'https://www.gutenberg.org/ebooks/33766', 'en', 4311), +(7903, 'Der Mord an der Jungfrau', 'Barrès, Maurice', '2012-07-22', 24, 'https://www.gutenberg.org/ebooks/40294', 'de', 179), +(7904, 'Airplane Boys Discover the Secrets of Cuzco', 'Craine, E. J. (Edith Janice)', '2018-05-28', 8, 'https://www.gutenberg.org/ebooks/57223', 'en', 2279), +(7905, 'Detailed Minutiae of Soldier life in the Army of Northern Virginia, 1861-1865', 'McCarthy, Carlton', '2008-05-26', 30, 'https://www.gutenberg.org/ebooks/25603', 'en', 4312), +(7906, 'Stories by American Authors, Volume 1', 'Davis, Rebecca Harding', '2004-03-01', 33, 'https://www.gutenberg.org/ebooks/11436', 'en', 112), +(7907, 'Bellini', 'Hay, George', '2012-11-11', 23, 'https://www.gutenberg.org/ebooks/41346', 'en', 4313), +(7908, 'The Tailor and the Crow: An Old Rhyme with New Drawings', 'Brooke, L. Leslie (Leonard Leslie)', '2008-12-14', 18, 'https://www.gutenberg.org/ebooks/27530', 'en', 859), +(7909, 'The Bucolics and Eclogues', 'Virgil', '1995-03-01', 106, 'https://www.gutenberg.org/ebooks/229', 'la', 4314), +(7910, 'Op reis en thuis: Novellen en schetsen', 'Maurik, Justus van', '2004-10-11', 8, 'https://www.gutenberg.org/ebooks/13705', 'nl', 2765), +(7911, 'A Civil Servant in Burma', 'White, Herbert Thirkell, Sir', '2013-07-01', 18, 'https://www.gutenberg.org/ebooks/43075', 'en', 4315), +(7912, 'La Femme de Paul', 'Maupassant, Guy de', '2009-12-02', 13, 'https://www.gutenberg.org/ebooks/30587', 'fr', 61), +(7913, 'Eurasia', 'Evans, Christopher', '2000-10-01', 12, 'https://www.gutenberg.org/ebooks/2352', 'en', 1998), +(7914, 'Harper\'s New Monthly Magazine, Vol. 2, No. 8, January, 1851', 'Various', '2010-03-01', 32, 'https://www.gutenberg.org/ebooks/31455', 'en', 4316), +(7915, 'Cap\'n Warren\'s Wards', 'Lincoln, Joseph Crosby', '2006-06-03', 23, 'https://www.gutenberg.org/ebooks/3280', 'en', 4317), +(7916, 'Revenge!', 'Barr, Robert', '2004-11-20', 46, 'https://www.gutenberg.org/ebooks/8668', 'en', 61), +(7917, 'Vacation Camping for Girls', 'Marks, Jeannette Augustus', '2017-07-13', 23, 'https://www.gutenberg.org/ebooks/55110', 'en', 2155), +(7918, 'Morphological Variation in a Population of the Snake, Tantilla gracilis Baird and Girard', 'Cole, Charles J.', '2010-10-24', 9, 'https://www.gutenberg.org/ebooks/34127', 'en', 4318), +(7919, 'Dictionnaire des barbarismes et des solécismes', 'Boucher-Belleville, Jean-Philippe', '2009-04-20', 10, 'https://www.gutenberg.org/ebooks/28578', 'fr', 4319), +(7920, 'Journal du corsaire Jean Doublet de Honfleur, lieutenant de frégate sous Louis XIV\r\nPublié d\'après le manuscrit autographe avec introduction, notes et additions', 'Doublet, Jean', '2013-09-30', 17, 'https://www.gutenberg.org/ebooks/43849', 'fr', 4320), +(7921, 'Mary Liddiard; Or, The Missionary\'s Daughter', 'Kingston, William Henry Giles', '2007-10-25', 15, 'https://www.gutenberg.org/ebooks/23190', 'en', 4321), +(7922, 'Philip Augustus; or, The Brothers in Arms', 'James, G. P. R. (George Payne Rainsford)', '2015-11-15', 12, 'https://www.gutenberg.org/ebooks/50462', 'en', 4322), +(7923, 'New Discoveries at Jamestown\nSite of the First Successful English Settlement in America', 'Hudson, J. Paul', '2005-07-13', 29, 'https://www.gutenberg.org/ebooks/16277', 'en', 4323), +(7924, 'Christmas: Its Origin and Associations\nTogether with Its Historical Events and Festive Celebrations During Nineteen Centuries', 'Dawson, W. F. (William Francis)', '2007-07-10', 45, 'https://www.gutenberg.org/ebooks/22042', 'en', 4324), +(7925, 'Pelham — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7620', 'en', 2496), +(7926, 'A Catalogue of Books and Announcements of Methuen and Company, March 1897', 'Methuen & Co.', '2014-08-04', 6, 'https://www.gutenberg.org/ebooks/46507', 'en', 727), +(7927, 'The Blue and the Gray; Or, The Civil War as Seen by a Boy\r\nA Story of Patriotism and Adventure in Our War for the Union', 'White, Annie Randall', '2014-04-14', 21, 'https://www.gutenberg.org/ebooks/45382', 'en', 403), +(7928, 'The First Steps in Algebra', 'Wentworth, G. A. (George Albert)', '2011-07-09', 114, 'https://www.gutenberg.org/ebooks/36670', 'en', 4325), +(7929, 'Wir Menschen: Gedichte', 'Hartmann, Walther Georg', '2016-06-15', 7, 'https://www.gutenberg.org/ebooks/52335', 'de', 4162), +(7930, 'Mavericks', 'Raine, William MacLeod', '2004-12-29', 35, 'https://www.gutenberg.org/ebooks/14520', 'en', 315), +(7931, 'Marriage and Love', 'Goldman, Emma', '2007-03-01', 51, 'https://www.gutenberg.org/ebooks/20715', 'en', 4326), +(7932, 'Birds and Poets : with Other Papers', 'Burroughs, John', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/5177', 'en', 1216), +(7933, 'Der König der dunklen Kammer', 'Tagore, Rabindranath', '2013-11-21', 6, 'https://www.gutenberg.org/ebooks/44250', 'de', 4327), +(7934, 'Astronomy for Amateurs', 'Flammarion, Camille', '2008-04-30', 178, 'https://www.gutenberg.org/ebooks/25267', 'en', 1683), +(7935, 'Life and Death of John of Barneveld — Complete (1609-1623)', 'Motley, John Lothrop', '2004-11-09', 10, 'https://www.gutenberg.org/ebooks/4899', 'en', 4328), +(7936, 'The Story-book of Science', 'Fabre, Jean-Henri', '2018-03-20', 386, 'https://www.gutenberg.org/ebooks/56795', 'en', 4329), +(7937, 'The Custom of the Country', 'Wharton, Edith', '2004-02-01', 191, 'https://www.gutenberg.org/ebooks/11052', 'en', 4330), +(7938, 'The Spell of Japan', 'Anderson, Isabel', '2012-12-28', 25, 'https://www.gutenberg.org/ebooks/41722', 'en', 4331), +(7939, 'The Tribute: A Panegyrical Poem', 'Philo', '2012-05-06', 14, 'https://www.gutenberg.org/ebooks/39638', 'en', 4332), +(7940, 'The Future of International Law', 'Oppenheim, L. (Lassa)', '2010-07-31', 21, 'https://www.gutenberg.org/ebooks/33302', 'en', 4333), +(7941, 'Slavonic Dance, No. 1', NULL, '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/10180', 'en', 4334), +(7942, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 735, January 26, 1878', 'Various', '2018-08-06', 1, 'https://www.gutenberg.org/ebooks/57647', 'en', 18), +(7943, 'That Reminds Me: A Collection of Tales Worth Telling', NULL, '2016-05-19', 16, 'https://www.gutenberg.org/ebooks/52107', 'en', 190), +(7944, 'Patty\'s Success', 'Wells, Carolyn', '2008-06-21', 25, 'https://www.gutenberg.org/ebooks/25869', 'en', 585), +(7945, 'Eve\'s Ransom', 'Gissing, George', '2003-07-01', 37, 'https://www.gutenberg.org/ebooks/4297', 'en', 137), +(7946, 'The Disturbing Charm', 'Ruck, Berta', '2011-06-16', 28, 'https://www.gutenberg.org/ebooks/36442', 'en', 526), +(7947, 'Journals of Expeditions of Discovery into Central Australia and Overland from Adelaide to King George\'s Sound in the Years 1840-1: Sent By the Colonists of South Australia, with the Sanction and Support of the Government: Including an Account of the Manners and Customs of the Aborigines and the State of Their Relations with Europeans — Volume 02', 'Eyre, Edward John', '2004-10-05', 61, 'https://www.gutenberg.org/ebooks/5345', 'en', 2471), +(7948, 'Córdoba', 'Madrazo, Pedro D.', '2011-10-01', 12, 'https://www.gutenberg.org/ebooks/37590', 'es', 4335), +(7949, 'The Crystal Ball\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-10-29', 12, 'https://www.gutenberg.org/ebooks/44062', 'en', 4336), +(7950, 'Vandover and the Brute', 'Norris, Frank', '2005-01-17', 36, 'https://www.gutenberg.org/ebooks/14712', 'en', 61), +(7951, 'The Sherwood Foresters in the Great War 1914 - 1919\nHistory of the 1/8th Battalion', 'Weetman, W. C. C.', '2007-02-06', 31, 'https://www.gutenberg.org/ebooks/20527', 'en', 4056), +(7952, 'The Psychology of Salesmanship', 'Atkinson, William Walker', '2012-11-29', 107, 'https://www.gutenberg.org/ebooks/41510', 'en', 4337), +(7953, 'The Odes of Casimire, Translated by G. Hils', 'Sarbiewski, Maciej Kazimierz', '2008-04-12', 25, 'https://www.gutenberg.org/ebooks/25055', 'la', 4338), +(7954, 'The Kiltartan History Book', 'Gregory, Lady', '2004-02-01', 40, 'https://www.gutenberg.org/ebooks/11260', 'en', 1136), +(7955, 'Experience of a Confederate States Prisoner\r\nBeing an Ephemeris Regularly Kept by an Officer of the Confederate States Army', 'West, Beckwith', '2018-07-09', 8, 'https://www.gutenberg.org/ebooks/57475', 'en', 2363), +(7956, 'A Transmutation of Muddles', 'Fyfe, H. B. (Horace Bowne)', '2008-01-07', 30, 'https://www.gutenberg.org/ebooks/24187', 'en', 424), +(7957, 'Incidents of Travel in Yucatan, Vol. II.', 'Stephens, John L.', '2010-07-10', 31, 'https://www.gutenberg.org/ebooks/33130', 'en', 4339), +(7958, 'The Epic of Saul', 'Wilkinson, William Cleaver', '2013-07-18', 12, 'https://www.gutenberg.org/ebooks/43247', 'en', 4340), +(7959, 'The Expedition of Humphry Clinker', 'Smollett, T. (Tobias)', '2000-04-01', 135, 'https://www.gutenberg.org/ebooks/2160', 'en', 4341), +(7960, 'My Summer with Dr. Singletary\r\nPart 2 from Volume V of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 15, 'https://www.gutenberg.org/ebooks/9588', 'en', 2645), +(7961, 'Mr. Stubbs\'s Brother\nA Sequel to \'Toby Tyler\'', 'Otis, James', '2009-01-05', 17, 'https://www.gutenberg.org/ebooks/27702', 'en', 3133), +(7962, 'The Library of Work and Play: Gardening and Farming.', 'Shaw, Ellen Eddy', '2004-09-27', 27, 'https://www.gutenberg.org/ebooks/13537', 'en', 4342), +(7963, 'Neljä naista ristillä: Jännitysromaani', 'Leblanc, Maurice', '2017-08-10', 9, 'https://www.gutenberg.org/ebooks/55322', 'fi', 4343), +(7964, 'Some One Like You', 'Foley, James W. (James William)', '2005-10-15', 6, 'https://www.gutenberg.org/ebooks/16879', 'en', 2185), +(7965, 'The Nephews: A Play, in Five Acts.', 'Iffland, August Wilhelm', '2010-03-16', 10, 'https://www.gutenberg.org/ebooks/31667', 'en', 402), +(7966, 'The Circle: A Comedy in Three Acts', 'Maugham, W. Somerset (William Somerset)', '2013-03-23', 41, 'https://www.gutenberg.org/ebooks/42395', 'en', 4344), +(7967, 'The Lay of the Land', 'Sharp, Dallas Lore', '2015-12-08', 139, 'https://www.gutenberg.org/ebooks/50650', 'en', 1216), +(7968, 'The Black Box', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-12-02', 41, 'https://www.gutenberg.org/ebooks/17197', 'en', 128), +(7969, 'Latin Vulgate, Esther: Liber Esther', 'Anonymous', '1997-02-01', 23, 'https://www.gutenberg.org/ebooks/827', 'la', 4345), +(7970, 'Two New Meadow Mice from Michoacán Mexico', 'Hall, E. Raymond (Eugene Raymond)', '2010-11-14', 13, 'https://www.gutenberg.org/ebooks/34315', 'en', 4346), +(7971, 'Coningsby; Or, The New Generation', 'Disraeli, Benjamin, Earl of Beaconsfield', '2005-02-01', 61, 'https://www.gutenberg.org/ebooks/7412', 'en', 4347), +(7972, 'The Rise and Fall of the Confederate Government, Volume 1', 'Davis, Jefferson', '2006-11-16', 158, 'https://www.gutenberg.org/ebooks/19831', 'en', 4348), +(7973, 'Victor Victorious', 'Johns, Cecil Starr', '2014-08-30', 72, 'https://www.gutenberg.org/ebooks/46735', 'en', 48), +(7974, 'Op de jacht in Mozambique\r\nDe Aarde en haar Volken, 1909', 'Vasse, Guillaume', '2005-06-13', 7, 'https://www.gutenberg.org/ebooks/16045', 'nl', 4349), +(7975, 'Doctor', 'Leinster, Murray', '2016-04-17', 97, 'https://www.gutenberg.org/ebooks/51782', 'en', 4350), +(7976, 'Lighter Than You Think', 'Bond, Nelson Slade', '2009-08-15', 44, 'https://www.gutenberg.org/ebooks/29698', 'en', 179), +(7977, 'Bloom of Cactus', 'Bennet, Robert Ames', '2007-08-08', 33, 'https://www.gutenberg.org/ebooks/22270', 'en', 315), +(7978, 'The Bible, King James version, Book 6: Joshua', 'Anonymous', '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/8006', 'en', 4190), +(7979, 'A Sheaf of Verses: Poems', 'Hall, Radclyffe', '2015-06-29', 28, 'https://www.gutenberg.org/ebooks/49321', 'en', 1594), +(7980, 'Dubliners', 'Joyce, James', '2005-04-01', 27, 'https://www.gutenberg.org/ebooks/7872', 'en', 1788), +(7981, 'Double Trouble; Or, Every Hero His Own Villain', 'Quick, Herbert', '2006-10-03', 13, 'https://www.gutenberg.org/ebooks/19451', 'en', 4351), +(7982, 'Brancas; Les amours de Quaterquem', 'Assollant, Alfred', '2006-06-14', 18, 'https://www.gutenberg.org/ebooks/18583', 'fr', 61), +(7983, 'Maggie: A Girl of the Streets', 'Crane, Stephen', '1996-02-01', 335, 'https://www.gutenberg.org/ebooks/447', 'en', 4352), +(7984, 'The Olden Time Series, Vol. 5: Some Strange and Curious Punishments\nGleanings Chiefly from Old Newspapers of Boston and Salem, Massachusetts', 'Brooks, Henry M. (Henry Mason)', '2005-08-03', 21, 'https://www.gutenberg.org/ebooks/16419', 'en', 4353), +(7985, 'Bundling; Its Origin, Progress and Decline in America', 'Stiles, Henry Reed', '2004-07-12', 11, 'https://www.gutenberg.org/ebooks/12885', 'en', 4354), +(7986, 'Torrey\'s Narrative; or, The Life and Adventures of William Torrey', 'Torrey, William', '2014-07-22', 8, 'https://www.gutenberg.org/ebooks/46369', 'en', 4355), +(7987, 'The Pocket George Borrow\r\nPassages chosen from the works of George Borrow', 'Borrow, George', '2004-11-04', 28, 'https://www.gutenberg.org/ebooks/13957', 'en', 4356), +(7988, 'The Girls of Central High on Track and Field\r\nOr, The Champions of the School League', 'Morrison, Gertrude W.', '2010-12-24', 14, 'https://www.gutenberg.org/ebooks/34749', 'en', 4357), +(7989, 'Bournemouth, Poole & Christchurch', 'Heath, Sidney', '2009-03-12', 11, 'https://www.gutenberg.org/ebooks/28316', 'en', 4358), +(7990, 'The Life of Lazarillo de Tormes\nHis Fortunes & Adversities; with a Notice of the Mendoza Family, a Short Life of the Author, Don Diego Hurtado De Mendoza, a Notice of the Work, and Some Remarks on the Character of Lazarillo de Tormes', 'Anonymous', '2016-11-10', 66, 'https://www.gutenberg.org/ebooks/53489', 'en', 4359), +(7991, 'Reminiscences of Confederate Service, 1861-1865', 'Dawson, Francis Warrington', '2018-10-09', 12, 'https://www.gutenberg.org/ebooks/58061', 'en', 4360), +(7992, 'Janice Meredith: A Story of the American Revolution', 'Ford, Paul Leicester', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/5719', 'en', 1293), +(7993, 'A Secret of the Sea: A Novel. Vol. 3 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-08-30', 3, 'https://www.gutenberg.org/ebooks/57815', 'en', 137), +(7994, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 5/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2013-02-02', 70, 'https://www.gutenberg.org/ebooks/41970', 'fr', 2972), +(7995, 'New Method of Horsemanship\r\nIncluding the Breaking and Training of Horses, with Instructions for Obtaining a Good Seat.', 'Baucher, François', '2011-12-01', 16, 'https://www.gutenberg.org/ebooks/38184', 'en', 2240), +(7996, 'Memoirs of the Jacobites of 1715 and 1745. Volume II.', 'Thomson, A. T., Mrs.', '2007-03-31', 27, 'https://www.gutenberg.org/ebooks/20947', 'en', 4361), +(7997, 'Megtörtént regék: Beszélyek', 'Jókai, Mór', '2018-04-23', 4, 'https://www.gutenberg.org/ebooks/57029', 'hu', 234), +(7998, 'The Story of the Duchess of Cicogne and of Monsieur de Boulingrin\r\n1920', 'France, Anatole', '2008-05-09', 33, 'https://www.gutenberg.org/ebooks/25409', 'en', 58), +(7999, 'Japan and the California Problem', 'Iyenaga, T. (Toyokichi)', '2011-07-23', 14, 'https://www.gutenberg.org/ebooks/36822', 'en', 4362), +(8000, 'The Old Coast Road\nFrom Boston to Plymouth', 'Rothery, Agnes', '2007-06-21', 29, 'https://www.gutenberg.org/ebooks/21895', 'en', 4363), +(8001, 'Bruce of the Circle A', 'Titus, Harold', '2012-03-04', 44, 'https://www.gutenberg.org/ebooks/39056', 'en', 315), +(8002, 'The Minister\'s Wife', 'Oliphant, Mrs. (Margaret)', '2018-11-08', 17, 'https://www.gutenberg.org/ebooks/58253', 'en', 4364), +(8003, 'The Moving Picture Girls at Rocky Ranch\r\nOr, Great Days Among the Cowboys', 'Hope, Laura Lee', '2007-01-12', 21, 'https://www.gutenberg.org/ebooks/20349', 'en', 4365), +(8004, 'A True Account of the Voyage of the Nottingham-Galley of London,\nJohn Dean Commander, from the River Thames to New-England', 'Langman, Christopher', '2016-08-10', 14, 'https://www.gutenberg.org/ebooks/52769', 'en', 4366), +(8005, 'Simple Plumbing Repairs for the Home and Farmstead', 'Anonymous', '2019-04-28', 34, 'https://www.gutenberg.org/ebooks/59381', 'en', 4367), +(8006, 'Punch, or the London Charivari, Volume 1, December 11, 1841', 'Various', '2005-02-07', 5, 'https://www.gutenberg.org/ebooks/14940', 'en', 134), +(8007, 'The Grotesque in Church Art', 'Wildridge, T. Tindall (Thomas Tindall)', '2012-03-25', 14, 'https://www.gutenberg.org/ebooks/39264', 'en', 4368), +(8008, 'The Education of Catholic Girls', 'Stuart, Janet Erskine', '2005-05-24', 24, 'https://www.gutenberg.org/ebooks/15892', 'en', 4369), +(8009, 'Reprezentação à Academia Real das Ciências sobre a refórma da ortografia', 'Anonymous', '2006-10-30', 11, 'https://www.gutenberg.org/ebooks/19663', 'pt', 4370), +(8010, 'Isabella Orsini: A Historical Novel of the Fifteenth Century', 'Guerrazzi, Francesco Domenico', '2014-09-25', 13, 'https://www.gutenberg.org/ebooks/46967', 'en', 601), +(8011, 'If at First You Don\'t...', 'Brudy, John', '2010-01-18', 16, 'https://www.gutenberg.org/ebooks/31009', 'en', 26), +(8012, 'The World English Bible (WEB): Judges', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8234', 'en', 4371), +(8013, 'Is the Vicar of Brompton a Tractarian? A Question for the Parishioners', 'Ellis, Arthur', '2015-06-02', 5, 'https://www.gutenberg.org/ebooks/49113', 'en', 4372), +(8014, 'From the Earth to the Moon', 'Verne, Jules', '2009-05-01', 90, 'https://www.gutenberg.org/ebooks/28918', 'en', 1029), +(8015, 'Cats: Their Points and Characteristics\r\nWith Curiosities of Cat Life, and a Chapter on Feline Ailments', 'Stables, Gordon', '2013-08-09', 20, 'https://www.gutenberg.org/ebooks/43429', 'en', 4373), +(8016, 'A City Near Centaurus', 'Doede, William R.', '2015-12-31', 40, 'https://www.gutenberg.org/ebooks/50802', 'en', 4374), +(8017, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 391, September 26, 1829', 'Various', '2004-09-03', 8, 'https://www.gutenberg.org/ebooks/13359', 'en', 133), +(8018, 'American Notes', 'Dickens, Charles', '1996-10-01', 382, 'https://www.gutenberg.org/ebooks/675', 'en', 4375), +(8019, 'Omega, the Man', 'Morrow, Lowell Howard', '2008-10-11', 32, 'https://www.gutenberg.org/ebooks/26882', 'en', 26), +(8020, 'Prisoners of Conscience', 'Barr, Amelia E.', '2010-03-31', 18, 'https://www.gutenberg.org/ebooks/31835', 'en', 4376), +(8021, 'Le Médecin des Dames de Néans', 'Boylesve, René', '2009-02-20', 18, 'https://www.gutenberg.org/ebooks/28124', 'fr', 61), +(8022, 'The Rhodesian', 'Page, Gertrude', '2009-01-31', 27, 'https://www.gutenberg.org/ebooks/27950', 'en', 4377), +(8023, 'Writing & Illuminating, & Lettering', 'Johnston, Edward', '2014-10-10', 85, 'https://www.gutenberg.org/ebooks/47089', 'en', 4378), +(8024, 'U.S. Copyright Renewals, 1977 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11856', 'en', 4170), +(8025, 'Home Influence: A Tale for Mothers and Daughters', 'Aguilar, Grace', '2011-07-08', 18, 'https://www.gutenberg.org/ebooks/36648', 'en', 378), +(8026, 'Growth of the Soil', 'Hamsun, Knut', '2004-02-01', 118, 'https://www.gutenberg.org/ebooks/10984', 'en', 286), +(8027, 'The Americans as They Are\nDescribed in a tour through the valley of the Mississippi', 'Sealsfield, Charles', '2013-11-24', 22, 'https://www.gutenberg.org/ebooks/44268', 'en', 455), +(8028, 'Hajamietteitä kapinaviikoilta 3/3\r\nLoppuviikot', 'Aho, Juhani', '2019-01-07', 3, 'https://www.gutenberg.org/ebooks/58637', 'fi', 1012), +(8029, 'Handbook of Home Rule: Being Articles on the Irish Question', NULL, '2004-12-29', 21, 'https://www.gutenberg.org/ebooks/14518', 'en', 3673), +(8030, 'Ελληνική Εποποιία, Ο Εωσφόρος: [Ιωάννης Τσιμισκής]', 'Papantoniou, Ch.', '2012-05-03', 7, 'https://www.gutenberg.org/ebooks/39600', 'el', 4379), +(8031, 'Thomas Wingfold, Curate V1', 'MacDonald, George', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/5973', 'en', 942), +(8032, 'There was a King in Egypt', 'Lorimer, Norma', '2007-12-26', 7, 'https://www.gutenberg.org/ebooks/23994', 'en', 4380), +(8033, 'Female Scripture Biography, Volume I', 'Cox, F. A. (Francis Augustus)', '2006-01-01', 18, 'https://www.gutenberg.org/ebooks/9782', 'en', 4381), +(8034, 'The King\'s Warrant: A Story of Old and New France', 'Engelbach, Alfred H.', '2008-12-12', 11, 'https://www.gutenberg.org/ebooks/27508', 'en', 1890), +(8035, 'Breaking with the Past; Or, Catholic Principles Abandoned at the Reformation', 'Gasquet, Francis Aidan', '2011-01-12', 30, 'https://www.gutenberg.org/ebooks/34923', 'en', 4382), +(8036, 'The Aspern Papers', 'James, Henry', '2008-06-29', 259, 'https://www.gutenberg.org/ebooks/211', 'en', 2295), +(8037, 'The Firelight Fairy Book', 'Beston, Henry', '2006-09-08', 71, 'https://www.gutenberg.org/ebooks/19207', 'en', 1007), +(8038, 'Extempore Speech: How to Acquire and Practice It', 'Pittenger, William', '2017-07-16', 14, 'https://www.gutenberg.org/ebooks/55128', 'en', 3906), +(8039, 'Monsieur Lecoq — Volume 1\r\nL\'enquête', 'Gaboriau, Emile', '2008-07-04', 42, 'https://www.gutenberg.org/ebooks/8650', 'fr', 128), +(8040, 'The Ground-Ash', 'Mitford, Mary Russell', '2007-10-02', 16, 'https://www.gutenberg.org/ebooks/22846', 'en', 4383), +(8041, 'Beleaguered in Pekin: The Boxer\'s War Against the Foreigner', 'Coltman, Robert', '2015-08-02', 21, 'https://www.gutenberg.org/ebooks/49577', 'en', 4384), +(8042, 'Vercingétorix', 'Jullian, Camille', '2013-10-02', 13, 'https://www.gutenberg.org/ebooks/43871', 'fr', 4385), +(8043, 'Bibliomania; or Book-Madness\nA Bibliographical Romance', 'Dibdin, Thomas Frognall', '2009-04-08', 47, 'https://www.gutenberg.org/ebooks/28540', 'en', 268), +(8044, 'Pelham — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7618', 'en', 323), +(8045, 'Deutsche Humoristen, 8. Band (von 8)', 'Schäfer, Wilhelm', '2017-11-08', 18, 'https://www.gutenberg.org/ebooks/55914', 'de', 543), +(8046, 'Security Plan', 'Farrell, Joseph', '2016-03-28', 29, 'https://www.gutenberg.org/ebooks/51588', 'en', 179), +(8047, 'Old Rambling House', 'Herbert, Frank', '2009-07-22', 59, 'https://www.gutenberg.org/ebooks/29492', 'en', 179), +(8048, 'Anglo-Dutch Rivalry During the First Half of the Seventeenth Century\r\nbeing the Ford lectures delivered at Oxford in 1910', 'Edmundson, George', '2015-04-13', 12, 'https://www.gutenberg.org/ebooks/48697', 'en', 4386), +(8049, 'Young Peoples\' History of the War with Spain', 'Holmes, Prescott', '2006-03-15', 98, 'https://www.gutenberg.org/ebooks/17993', 'en', 4387), +(8050, 'The Prime Minister', 'Trollope, Anthony', '2000-04-01', 110, 'https://www.gutenberg.org/ebooks/2158', 'en', 4388), +(8051, 'Johan Doxa: Vier herinneringen aan een Brabantschen Gothieker', 'Teirlinck, Herman', '2005-10-09', 5, 'https://www.gutenberg.org/ebooks/16841', 'nl', 319), +(8052, 'The Man in Gray: A Romance of North and South', 'Dixon, Thomas, Jr.', '2005-07-01', 44, 'https://www.gutenberg.org/ebooks/8462', 'en', 4389), +(8053, 'The Young Deliverers of Pleasant Cove\nThe Pleasant Cove Series', 'Kellogg, Elijah', '2015-08-20', 10, 'https://www.gutenberg.org/ebooks/49745', 'en', 1752), +(8054, 'Le fauteuil hanté', 'Leroux, Gaston', '2006-08-12', 34, 'https://www.gutenberg.org/ebooks/19035', 'fr', 128), +(8055, 'Ellen of Villenskov, and Other Ballads', NULL, '2009-05-12', 6, 'https://www.gutenberg.org/ebooks/28772', 'en', 4390), +(8056, 'The Secret Martians', 'Sharkey, Jack', '2015-12-11', 27, 'https://www.gutenberg.org/ebooks/50668', 'en', 167), +(8057, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 14: Switzerland', 'Casanova, Giacomo', '2004-12-11', 21, 'https://www.gutenberg.org/ebooks/2964', 'en', 4391), +(8058, 'The Indian Fairy Book: From the Original Legends', 'Mathews, Cornelius', '2007-08-05', 156, 'https://www.gutenberg.org/ebooks/22248', 'en', 1749), +(8059, 'The Story of a Dewdrop', 'Macduff, John R. (John Ross)', '2006-11-14', 21, 'https://www.gutenberg.org/ebooks/19809', 'en', 1602), +(8060, 'The International Development of China', 'Sun, Yat-sen', '2014-03-23', 41, 'https://www.gutenberg.org/ebooks/45188', 'en', 4392), +(8061, 'The Life of Charles Dickens, Vol. I-III, Complete', 'Forster, John', '2008-06-20', 100, 'https://www.gutenberg.org/ebooks/25851', 'en', 4393), +(8062, 'She Knew He Was Coming', 'Neville, Kris', '2010-10-11', 36, 'https://www.gutenberg.org/ebooks/33934', 'en', 179), +(8063, 'Henry the Fifth', 'Church, Alfred John', '2018-12-03', 23, 'https://www.gutenberg.org/ebooks/58405', 'en', 4394), +(8064, 'Twee groote steden in Brazilië\nDe Aarde en haar Volken, 1908', 'Crastre, François', '2008-04-03', 3, 'https://www.gutenberg.org/ebooks/24983', 'nl', 4395), +(8065, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 407, December 24, 1829', 'Various', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/11258', 'en', 133), +(8066, 'Memoirs of a Veteran Who Served as a Private in the 60\'s in the War Between the States\nPersonal Incidents, Experiences and Observations', 'Hermann, I. (Isaac)', '2012-12-01', 16, 'https://www.gutenberg.org/ebooks/41528', 'en', 4396), +(8067, 'Gandhi and Anarchy', 'Sankaran Nair, C. (Chettur), Sir', '2016-08-27', 47, 'https://www.gutenberg.org/ebooks/52903', 'en', 4397), +(8068, 'The House \'Round the Corner', 'Tracy, Louis', '2012-04-12', 22, 'https://www.gutenberg.org/ebooks/39432', 'en', 4398), +(8069, 'Souvenir of Gay Head: Indelible Photographs', 'Chamberlain, J. N.', '2010-07-07', 11, 'https://www.gutenberg.org/ebooks/33108', 'en', 4399), +(8070, '\"Gombo Zhèbes.\" Little Dictionary of Creole Proverbs', 'Hearn, Lafcadio', '2014-02-10', 48, 'https://www.gutenberg.org/ebooks/44866', 'en', 4400), +(8071, 'Thirty Letters on Various Subjects, Vol. 2 (of 2)', 'Jackson, William', '2019-06-09', 22, 'https://www.gutenberg.org/ebooks/59711', 'en', 4401), +(8072, 'The Dawn of Canadian History : A Chronicle of Aboriginal Canada', 'Leacock, Stephen', '2003-05-01', 53, 'https://www.gutenberg.org/ebooks/4069', 'en', 1643), +(8073, 'Pragmatism', 'Murray, D. L. (David Leslie)', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/10970', 'en', 4402), +(8074, 'A Chance for Himself; or, Jack Hazard and His Treasure', 'Trowbridge, J. T. (John Townsend)', '2018-03-16', 12, 'https://www.gutenberg.org/ebooks/56759', 'en', 2526), +(8075, 'History of the United Netherlands, 1588a', 'Motley, John Lothrop', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4855', 'en', 3372), +(8076, 'In Kedar\'s Tents', 'Merriman, Henry Seton', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/5987', 'en', 4403), +(8077, 'The Admiral\'s Caravan', 'Carryl, Charles E. (Charles Edward)', '2008-01-21', 22, 'https://www.gutenberg.org/ebooks/24379', 'en', 1007), +(8078, 'Index to Kindergarten Songs Including Singing Games and Folk Songs', 'Quigley, Margery Closey', '2012-01-31', 10, 'https://www.gutenberg.org/ebooks/38726', 'en', 4404), +(8079, '...After a Few Words...', 'Garrett, Randall', '2007-12-22', 77, 'https://www.gutenberg.org/ebooks/23960', 'en', 4405), +(8080, 'Cassell\'s History of England, Vol. 1 (of 8)\r\nFrom the Roman Invasion to the Wars of the Roses', 'Anonymous', '2015-03-10', 44, 'https://www.gutenberg.org/ebooks/48451', 'en', 1953), +(8081, 'Cicero\'s Brutus or History of Famous Orators; also His Orator, or Accomplished Speaker.', 'Cicero, Marcus Tullius', '2006-01-01', 137, 'https://www.gutenberg.org/ebooks/9776', 'en', 4406), +(8082, 'Acté', 'Dumas, Alexandre', '2006-05-05', 21, 'https://www.gutenberg.org/ebooks/18321', 'fr', 4407), +(8083, 'Rose of Dutcher\'s Coolly', 'Garland, Hamlin', '2011-04-08', 24, 'https://www.gutenberg.org/ebooks/35805', 'en', 4408), +(8084, 'A Campfire Girl\'s Happiness', 'Stewart, Jane L.', '2010-03-04', 19, 'https://www.gutenberg.org/ebooks/31499', 'en', 388), +(8085, 'Life and Times of Her Majesty Caroline Matilda, Vol. 2 (of 3)\r\nQueen of Denmark and Norway, and Sister of H. M. George III. of England', 'Wraxall, Lascelles, Sir', '2015-08-03', 8, 'https://www.gutenberg.org/ebooks/49583', 'en', 4409), +(8086, 'Alila, Our Little Philippine Cousin', 'Wade, Mary Hazelton Blanchard', '2013-10-05', 25, 'https://www.gutenberg.org/ebooks/43885', 'en', 4410), +(8087, 'The Fifth Leicestershire\r\nA Record Of The 1/5th Battalion The Leicestershire Regiment, T.F., During The War, 1914-1919.', 'Hills, John David', '2005-12-22', 17, 'https://www.gutenberg.org/ebooks/17369', 'en', 4411), +(8088, 'Kuuselan Kukka', 'Hahnsson, Theodolinda', '2014-11-22', 4, 'https://www.gutenberg.org/ebooks/47419', 'fi', 41), +(8089, 'Geschichte des Zeitalters der Entdeckungen', 'Ruge, Sophus', '2017-06-02', 18, 'https://www.gutenberg.org/ebooks/54832', 'de', 4412), +(8090, 'The Hubble-Shue', 'Carstairs, Christian', '2011-01-22', 5, 'https://www.gutenberg.org/ebooks/35039', 'en', 402), +(8091, 'Modern Skepticism\r\nA Course of Lectures Delivered at the Request of the Christian Evidence Society', NULL, '2013-06-16', 29, 'https://www.gutenberg.org/ebooks/42957', 'en', 4413), +(8092, 'Lords of the Stratosphere', 'Burks, Arthur J.', '2009-07-20', 38, 'https://www.gutenberg.org/ebooks/29466', 'en', 26), +(8093, 'The Philosophy of Beards\r\nA Lecture Physiological, Artistic & Historical', 'Gowing, Thomas S.', '2019-07-29', 1311, 'https://www.gutenberg.org/ebooks/60009', 'en', 4414), +(8094, 'History of the Expedition to Russia\nUndertaken by the Emperor Napoleon in the Year 1812', 'Ségur, Philippe-Paul, comte de', '2006-04-03', 35, 'https://www.gutenberg.org/ebooks/18113', 'en', 4415), +(8095, 'True Stories of the Great War, Volume 1 (of 6)\r\nTales of Adventure--Heroic Deeds--Exploits Told by the Soldiers, Officers, Nurses, Diplomats, Eye Witnesses', NULL, '2015-04-07', 28, 'https://www.gutenberg.org/ebooks/48663', 'en', 449), +(8096, 'Punchinello, Volume 1, No. 10, June 4, 1870', 'Various', '2005-12-01', 10, 'https://www.gutenberg.org/ebooks/9544', 'en', 372), +(8097, 'Navy Boys Behind the Big Guns; Or, Sinking the German U-Boats', 'Davidson, Halsey', '2006-03-11', 20, 'https://www.gutenberg.org/ebooks/17967', 'en', 4416), +(8098, 'Les aventures de Télémaque suivies des aventures d\'Aritonoüs', 'Fénelon, François de Salignac de La Mothe-', '2009-12-28', 54, 'https://www.gutenberg.org/ebooks/30779', 'fr', 2815), +(8099, 'The Quest', 'Baroja, Pío', '2005-07-01', 22, 'https://www.gutenberg.org/ebooks/8496', 'en', 61), +(8100, 'Tales and Legends of the English Lakes', 'Armistead, Wilson', '2013-03-17', 17, 'https://www.gutenberg.org/ebooks/42359', 'en', 4417), +(8101, 'The Last Leaf\r\nObservations, during Seventy-Five Years, of Men and Events in America and Europe', 'Hosmer, James Kendall', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12429', 'en', 207), +(8102, 'Il processo Bartelloni', 'Jarro', '2009-05-13', 17, 'https://www.gutenberg.org/ebooks/28786', 'it', 860), +(8103, 'Never Again! A Protest and a Warning Addressed to the Peoples of Europe', 'Carpenter, Edward', '2001-12-01', 20, 'https://www.gutenberg.org/ebooks/2990', 'en', 4136), +(8104, 'Memoirs of Jean François Paul de Gondi, Cardinal de Retz — Volume 1', 'Retz, Jean François Paul de Gondi de', '2004-12-02', 3, 'https://www.gutenberg.org/ebooks/3842', 'en', 4144), +(8105, 'The War on All Fronts: England\'s Effort\nLetters to an American Friend', 'Ward, Humphry, Mrs.', '2005-06-18', 26, 'https://www.gutenberg.org/ebooks/16089', 'en', 4418), +(8106, 'The Wall Street Girl', 'Bartlett, Frederick Orin', '2009-08-10', 41, 'https://www.gutenberg.org/ebooks/29654', 'en', 4419), +(8107, 'Badge of Infamy', 'Del Rey, Lester', '2007-05-18', 13, 'https://www.gutenberg.org/ebooks/21439', 'en', 26), +(8108, 'History of Cuba; or, Notes of a Traveller in the Tropics\r\nBeing a Political, Historical, and Statistical Account of the Island, from its First Discovery to the Present Time', 'Ballou, Maturin M. (Maturin Murray)', '2010-06-14', 26, 'https://www.gutenberg.org/ebooks/32812', 'en', 995), +(8109, 'Harper\'s Young People, August 22, 1882\nAn Illustrated Weekly', 'Various', '2019-05-16', 8, 'https://www.gutenberg.org/ebooks/59523', 'en', 479), +(8110, 'History of the United States', 'Ridpath, John Clark', '2016-09-09', 24, 'https://www.gutenberg.org/ebooks/53019', 'en', 207), +(8111, 'The Crisis — Volume 02', 'Churchill, Winston', '2004-10-19', 15, 'https://www.gutenberg.org/ebooks/5389', 'en', 403), +(8112, 'The Perfectionists', 'Castle, Arnold', '2008-04-02', 40, 'https://www.gutenberg.org/ebooks/24977', 'en', 26), +(8113, 'Reliques of Ancient English Poetry, Volume 2 (of 3)\r\nConsisting of Old Heroic Ballads, Songs and Other Pieces of Our Earlier Poets Together With Some Few of Later Date', NULL, '2014-06-11', 17, 'https://www.gutenberg.org/ebooks/45940', 'en', 4420), +(8114, 'Historical Essays', 'Rhodes, James Ford', '2008-04-18', 13, 'https://www.gutenberg.org/ebooks/25099', 'en', 207), +(8115, 'The Deserted Woman', 'Balzac, Honoré de', '1999-05-01', 95, 'https://www.gutenberg.org/ebooks/1729', 'en', 109), +(8116, 'Leivän haussa', 'Sienkiewicz, Henryk', '2016-12-28', 2, 'https://www.gutenberg.org/ebooks/53825', 'fi', 4421), +(8117, 'The Unpopular Review, Number 19\nJuly-December 1918', 'Various', '2012-01-07', 16, 'https://www.gutenberg.org/ebooks/38514', 'en', 1227), +(8118, 'Gulliverin matkat kaukaisilla mailla', 'Swift, Jonathan', '2014-02-13', 33, 'https://www.gutenberg.org/ebooks/44892', 'fi', 580), +(8119, 'Steam, Steel and Electricity', 'Steele, James W.', '2005-04-01', 34, 'https://www.gutenberg.org/ebooks/7886', 'en', 4422), +(8120, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume 1, January, 1880', 'Various', '2008-08-12', 27, 'https://www.gutenberg.org/ebooks/26278', 'en', 1829), +(8121, 'The Agony Column of the \"Times\" 1800-1870', NULL, '2017-05-03', 8, 'https://www.gutenberg.org/ebooks/54658', 'en', 4423), +(8122, 'News from the Duchy', 'Quiller-Couch, Arthur', '2006-06-13', 16, 'https://www.gutenberg.org/ebooks/18577', 'en', 166), +(8123, 'Aikenside', 'Holmes, Mary Jane', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/6954', 'en', 61), +(8124, 'Lays and Legends of the English Lake Country\nWith Copious Notes', 'White, John Pagen', '2015-02-08', 24, 'https://www.gutenberg.org/ebooks/48207', 'en', 4417), +(8125, 'The Indian Princess\nLa Belle Sauvage', 'Barker, James Nelson', '2009-06-27', 20, 'https://www.gutenberg.org/ebooks/29230', 'en', 508), +(8126, 'The Insurrection in Dublin', 'Stephens, James', '2004-07-09', 14, 'https://www.gutenberg.org/ebooks/12871', 'en', 1786), +(8127, 'Fifty Famous People: A Book of Short Stories', 'Baldwin, James', '2004-07-01', 346, 'https://www.gutenberg.org/ebooks/6168', 'en', 4424), +(8128, 'The Life and Letters of the Rev. George Mortimer, M.A.\r\nRector of Thornhill, in the Diocese of Toronto, Canada West', 'Armstrong, John', '2018-10-14', 6, 'https://www.gutenberg.org/ebooks/58095', 'en', 4425), +(8129, 'Little Philippe of Belgium', 'Brandeis, Madeline', '2012-09-24', 22, 'https://www.gutenberg.org/ebooks/40856', 'en', 4426), +(8130, 'Isis', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2011-08-20', 16, 'https://www.gutenberg.org/ebooks/37138', 'fr', 642), +(8131, 'The Four Corners in Japan', 'Blanchard, Amy Ella', '2014-04-28', 15, 'https://www.gutenberg.org/ebooks/45518', 'en', 4427), +(8132, 'The Village Champion', 'Stoddard, William O.', '2018-04-06', 19, 'https://www.gutenberg.org/ebooks/56933', 'en', 4428), +(8133, 'Les Immémoriaux', 'Segalen, Victor', '2013-02-03', 24, 'https://www.gutenberg.org/ebooks/41984', 'fr', 2123), +(8134, 'John Stuart Mill; His Life and Works\r\nTwelve Sketches by Herbert Spencer, Henry Fawcett, Frederic Harrison, and Other Distinguished Authors', NULL, '2005-03-06', 45, 'https://www.gutenberg.org/ebooks/15268', 'en', 4429), +(8135, 'The Forest Monster; or, Lamora, the Maid of the Canon', 'Ellis, Edward Sylvester', '2019-03-29', 15, 'https://www.gutenberg.org/ebooks/59147', 'en', 336), +(8136, 'Język Polski, 1920, nr 3 (maj/czerwiec)', 'Łoś, Jan', '2010-09-01', 29, 'https://www.gutenberg.org/ebooks/33598', 'pl', 4430), +(8137, 'Grit Lawless', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-11-29', 5, 'https://www.gutenberg.org/ebooks/38170', 'en', 2126), +(8138, 'The International Monthly, Volume 4, No. 4, November 1, 1851', 'Various', '2011-11-02', 14, 'https://www.gutenberg.org/ebooks/37904', 'en', 2522), +(8139, 'The Doll and Her Friends\nor Memoirs of the Lady Seraphina', 'Maitland, Julia Charlotte', '2007-06-18', 15, 'https://www.gutenberg.org/ebooks/21861', 'en', 195); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(8140, 'Louis Lambert', 'Balzac, Honoré de', '2005-02-01', 56, 'https://www.gutenberg.org/ebooks/1943', 'en', 58), +(8141, 'Fifty-Two Story Talks to Boys and Girls', 'Chidley, Howard J. (Howard James)', '2004-11-28', 22, 'https://www.gutenberg.org/ebooks/14188', 'en', 4431), +(8142, 'The Ethicators', 'Marsh, Willard', '2019-04-27', 46, 'https://www.gutenberg.org/ebooks/59375', 'en', 424), +(8143, 'I Heard the Bells on Christmas Day', 'McGuinn, Roger', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/10528', 'en', 583), +(8144, 'Citt and Bumpkin (1680)', 'L\'Estrange, Roger, Sir', '2011-12-19', 13, 'https://www.gutenberg.org/ebooks/38342', 'en', 4432), +(8145, 'Uusi aika: Romaani', 'Alkio, Santeri', '2012-07-16', 9, 'https://www.gutenberg.org/ebooks/40258', 'fi', 61), +(8146, 'Humanly Speaking', 'Crothers, Samuel McChord', '2005-05-20', 15, 'https://www.gutenberg.org/ebooks/15866', 'en', 20), +(8147, 'Commodore Barney\'s Young Spies\nA Boy\'s Story of the Burning of the City of Washington', 'Otis, James', '2010-06-04', 20, 'https://www.gutenberg.org/ebooks/32678', 'en', 4433), +(8148, 'Rome, Turkey, and Jerusalem', 'Hoare, Edward', '2012-03-28', 9, 'https://www.gutenberg.org/ebooks/39290', 'en', 2692), +(8149, 'By What Authority?', 'Benson, Robert Hugh', '2006-11-02', 32, 'https://www.gutenberg.org/ebooks/19697', 'en', 4434), +(8150, 'Blackwood\'s Edinburgh Magazine, No. 404, June, 1849', 'Various', '2014-09-29', 14, 'https://www.gutenberg.org/ebooks/46993', 'en', 274), +(8151, 'The Kingdom of Love', 'Wilcox, Ella Wheeler', '2003-01-01', 14, 'https://www.gutenberg.org/ebooks/3628', 'en', 178), +(8152, 'Courage\r\nA story wherein every one comes to the conclusion that the Courage in question proved a courage worth having', 'Ogden, Ruth', '2016-05-01', 15, 'https://www.gutenberg.org/ebooks/51924', 'en', 4435), +(8153, 'Charles Sumner: his complete works, volume 05 (of 20)', 'Sumner, Charles', '2015-01-20', 22, 'https://www.gutenberg.org/ebooks/48035', 'en', 429), +(8154, 'From Whose Bourne', 'Barr, Robert', '2004-11-17', 24, 'https://www.gutenberg.org/ebooks/9312', 'en', 167), +(8155, 'The Explorer', 'Maugham, W. Somerset (William Somerset)', '2008-11-08', 127, 'https://www.gutenberg.org/ebooks/27198', 'en', 95), +(8156, 'The Haunted Fountain\r\nA Judy Bolton Mystery', 'Sutton, Margaret', '2015-01-01', 20, 'https://www.gutenberg.org/ebooks/47841', 'en', 454), +(8157, 'The Great Round World and What Is Going On In It, Vol. 2, No. 23, June 9, 1898\nA Weekly Magazine for Boys and Girls', 'Various', '2006-07-03', 11, 'https://www.gutenberg.org/ebooks/18745', 'en', 1), +(8158, 'Creatures That Once Were Men', 'Gorky, Maksim', '1996-10-01', 21, 'https://www.gutenberg.org/ebooks/681', 'en', 61), +(8159, '韓詩外傳, Vol. 7-8', 'Han, Ying, active 150 B.C.', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7288', 'zh', 4436), +(8160, '文子', 'Unknown', '2008-10-11', 31, 'https://www.gutenberg.org/ebooks/26876', 'zh', 3892), +(8161, 'A History of Southern Missouri and Northern Arkansas\nBeing an Account of the Early Settlements, the Civil War, the Ku-Klux, and Times of Peace', 'Monks, William', '2016-02-03', 15, 'https://www.gutenberg.org/ebooks/51118', 'en', 444), +(8162, 'Harper\'s Young People, June 15, 1880\nAn Illustrated Weekly', 'Various', '2009-05-30', 7, 'https://www.gutenberg.org/ebooks/29002', 'en', 479), +(8163, 'Plans and Illustrations of Prisons and Reformatories', NULL, '2015-04-27', 23, 'https://www.gutenberg.org/ebooks/48809', 'en', 4437), +(8164, 'Hugh Selwyn Mauberley', 'Pound, Ezra', '2007-11-18', 58, 'https://www.gutenberg.org/ebooks/23538', 'en', 8), +(8165, 'Mémoires du prince de Talleyrand, Volume 3 (of 5)', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2010-01-10', 23, 'https://www.gutenberg.org/ebooks/30913', 'fr', 4438), +(8166, 'The Dominion in 1983', 'Centennius, Ralph', '2004-08-10', 112, 'https://www.gutenberg.org/ebooks/4290', 'en', 4439), +(8167, 'Linda Lee, Incorporated: A Novel', 'Vance, Louis Joseph', '2011-06-17', 22, 'https://www.gutenberg.org/ebooks/36445', 'en', 4440), +(8168, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 731\nDecember 29, 1877', 'Various', '2016-05-18', 2, 'https://www.gutenberg.org/ebooks/52100', 'en', 18), +(8169, 'The Hero of the Humber; Or, The History of the Late Mr. John Ellerthorpe', 'Woodcock, Henry', '2007-02-06', 13, 'https://www.gutenberg.org/ebooks/20520', 'en', 4441), +(8170, 'The House in Good Taste', 'De Wolfe, Elsie', '2005-01-17', 89, 'https://www.gutenberg.org/ebooks/14715', 'en', 4442), +(8171, 'An Apology for the Life of Mr. Colley Cibber, Volume 2 (of 2)\r\nWritten by Himself. A New Edition with Notes and Supplement', 'Cibber, Colley', '2013-10-29', 13, 'https://www.gutenberg.org/ebooks/44065', 'en', 4443), +(8172, 'The Story Girl', 'Montgomery, L. M. (Lucy Maud)', '2004-03-01', 209, 'https://www.gutenberg.org/ebooks/5342', 'en', 4444), +(8173, 'Voces Populi', 'Anstey, F.', '2011-10-02', 43, 'https://www.gutenberg.org/ebooks/37597', 'en', 564), +(8174, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 328, August 23, 1828', 'Various', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11267', 'en', 133), +(8175, 'Valittuja runoja\r\nKokoelmista \'Guitarr och Dragharmonika\', \'Nya Dikter\' ja \'Räggler å Paschaser\'', 'Fröding, Gustaf', '2008-04-11', 49, 'https://www.gutenberg.org/ebooks/25052', 'fi', 4445), +(8176, 'Die Schlacht bei Sempach', 'Walser, Robert', '2012-11-30', 12, 'https://www.gutenberg.org/ebooks/41517', 'de', 4446), +(8177, 'Descriptions of Three New Birds from the Belgian Congo\r\nBulletin of the AMNH , Vol. XXXIV, Art. XVI, pp. 509-513, Oct. 20th, 1915', 'Chapin, James Paul', '2010-07-11', 17, 'https://www.gutenberg.org/ebooks/33137', 'en', 4447), +(8178, 'Alarm Clock', 'Cole, Everett B.', '2008-01-06', 63, 'https://www.gutenberg.org/ebooks/24180', 'en', 4448), +(8179, 'Kertomuksia Suomen historiasta VI\nKaarle X Kustaa', 'Krohn, Julius', '2014-02-09', 12, 'https://www.gutenberg.org/ebooks/44859', 'fi', 1578), +(8180, 'Fanny Burney and Her Friends: Select Passages from Her Diary and Other Writings', 'Burney, Fanny', '2018-07-10', 12, 'https://www.gutenberg.org/ebooks/57472', 'en', 4449), +(8181, 'Halcyone', 'Glyn, Elinor', '2004-09-26', 37, 'https://www.gutenberg.org/ebooks/13530', 'en', 1902), +(8182, 'The Golden Face: A Great \'Crook\' Romance', 'Le Queux, William', '2009-01-05', 9, 'https://www.gutenberg.org/ebooks/27705', 'en', 128), +(8183, 'Miscellaneous Writings and Speeches — Volume 1', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 43, 'https://www.gutenberg.org/ebooks/2167', 'en', 472), +(8184, 'Alchemy: Ancient and Modern\r\nBeing a Brief Account of the Alchemistic Doctrines, and Their Relations, to Mysticism on the One Hand, and to Recent Discoveries in Physical Science on the Other Hand; Together with Some Particulars Regarding the Lives and Teachings of the Most Noted Alchemists', 'Redgrove, H. Stanley (Herbert Stanley)', '2013-07-17', 76, 'https://www.gutenberg.org/ebooks/43240', 'en', 4450), +(8185, 'The Jumble Book of Rhymes\nRecited by the Jumbler', 'Heine, Frank R.', '2013-03-23', 6, 'https://www.gutenberg.org/ebooks/42392', 'en', 178), +(8186, 'Die Ermordung einer Butterblume und andere Erzählungen', 'Döblin, Alfred', '2010-03-16', 46, 'https://www.gutenberg.org/ebooks/31660', 'de', 1212), +(8187, 'Matt: A Story of A Caravan', 'Buchanan, Robert Williams', '2017-08-10', 8, 'https://www.gutenberg.org/ebooks/55325', 'en', 61), +(8188, 'Encyclopaedia Britannica, 11th Edition, \"Atherstone\" to \"Austria\"\r\nVolume 2, Slice 8', 'Various', '2010-11-13', 41, 'https://www.gutenberg.org/ebooks/34312', 'en', 1081), +(8189, 'Edison: His Life and Inventions', 'Dyer, Frank Lewis', '2006-01-21', 335, 'https://www.gutenberg.org/ebooks/820', 'en', 4451), +(8190, 'The Satires of Juvenal, Persius, Sulpicia, and Lucilius\r\nLiterally translated into English prose, with notes, chronological tables, arguments, &c.', 'Persius', '2015-12-10', 108, 'https://www.gutenberg.org/ebooks/50657', 'en', 4452), +(8191, 'Greek and Roman Ghost Stories', 'Collison-Morley, Lacy', '2005-11-30', 60, 'https://www.gutenberg.org/ebooks/17190', 'en', 1245), +(8192, 'Darry the Life Saver; Or, The Heroes of the Coast', 'Webster, Frank V.', '2007-08-08', 33, 'https://www.gutenberg.org/ebooks/22277', 'en', 324), +(8193, 'The Wonder Book of Bible Stories', NULL, '2005-06-12', 368, 'https://www.gutenberg.org/ebooks/16042', 'en', 4241), +(8194, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 728, December 8, 1877', 'Various', '2016-04-18', 6, 'https://www.gutenberg.org/ebooks/51785', 'en', 18), +(8195, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 6\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 9, 'https://www.gutenberg.org/ebooks/3889', 'en', 4453), +(8196, 'The Story of Perugia', 'Symonds, Margaret', '2014-08-30', 29, 'https://www.gutenberg.org/ebooks/46732', 'en', 4454), +(8197, 'A Shepherd\'s Life: Impressions of the South Wiltshire Downs', 'Hudson, W. H. (William Henry)', '2005-02-01', 43, 'https://www.gutenberg.org/ebooks/7415', 'en', 4455), +(8198, 'Early Spring', 'Inchfawn, Fay', '2006-11-18', 0, 'https://www.gutenberg.org/ebooks/19836', 'en', 8), +(8199, 'The Fairy Books of Andrew Lang\nA Project Gutenberg Linked Index to All Stories in the 12 Volumes', 'Lang, Andrew', '2009-12-02', 182, 'https://www.gutenberg.org/ebooks/30580', 'en', 1223), +(8200, 'The Formation of Vegetable Mould Through the Action of Worms\r\nWith Observations on Their Habits', 'Darwin, Charles', '2000-10-01', 91, 'https://www.gutenberg.org/ebooks/2355', 'en', 3309), +(8201, 'Simson ja Delila: Kolminäytöksinen näytelmä', 'Linnankoski, Johannes', '2013-07-01', 1, 'https://www.gutenberg.org/ebooks/43072', 'fi', 4456), +(8202, 'Non-Euclidean Geometry', 'Manning, Henry Parker', '2004-10-10', 55, 'https://www.gutenberg.org/ebooks/13702', 'en', 4269), +(8203, 'Sentimental Education; Or, The History of a Young Man. Volume 2', 'Flaubert, Gustave', '2008-12-15', 70, 'https://www.gutenberg.org/ebooks/27537', 'en', 560), +(8204, 'Foundations of World Unity', '`Abdu\'l-Bahá', '2006-09-12', 14, 'https://www.gutenberg.org/ebooks/19238', 'en', 4457), +(8205, 'Naisen haamu: Mysterio neljässä kertomuksessa', 'Collins, Wilkie', '2017-07-15', 10, 'https://www.gutenberg.org/ebooks/55117', 'fi', 4458), +(8206, 'Paul Patoff', 'Crawford, F. Marion (Francis Marion)', '2007-10-03', 15, 'https://www.gutenberg.org/ebooks/22879', 'en', 4459), +(8207, 'Walks near Edinburgh', 'Warrender, Margaret', '2015-07-29', 15, 'https://www.gutenberg.org/ebooks/49548', 'en', 4460), +(8208, 'Roy Blakeley in the Haunted Camp', 'Fitzhugh, Percy Keese', '2010-02-28', 10, 'https://www.gutenberg.org/ebooks/31452', 'en', 2994), +(8209, 'The Man from Glengarry: A Tale of the Ottawa', 'Connor, Ralph', '2006-06-03', 28, 'https://www.gutenberg.org/ebooks/3287', 'en', 4461), +(8210, 'The China of Chiang K\'ai-Shek: A Political Study', 'Linebarger, Paul Myron Anthony', '2015-12-08', 19, 'https://www.gutenberg.org/ebooks/50465', 'en', 4462), +(8211, 'Subversive', 'Reynolds, Mack', '2007-10-26', 47, 'https://www.gutenberg.org/ebooks/23197', 'en', 26), +(8212, 'Farthest North, Vol. II\r\nBeing the Record of a Voyage of Exploration of the Ship \'Fram\' 1893-1896', 'Nansen, Fridtjof', '2010-10-23', 71, 'https://www.gutenberg.org/ebooks/34120', 'en', 4463), +(8213, 'Ford of H.M.S. Vigilant: A Tale of the Chusan Archipelago', 'Jeans, T. T. (Thomas Tendron)', '2014-08-03', 9, 'https://www.gutenberg.org/ebooks/46500', 'en', 3421), +(8214, 'Devereux — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7627', 'en', 4464), +(8215, 'La festa dels reis\r\nLo que vulgueu', 'Shakespeare, William', '2007-07-11', 29, 'https://www.gutenberg.org/ebooks/22045', 'ca', 4465), +(8216, 'Scientific American Supplement, No. 623, December 10, 1887', 'Various', '2005-07-12', 11, 'https://www.gutenberg.org/ebooks/16270', 'en', 210), +(8217, 'Fer et feu au Soudan, vol. 2 of 2', 'Slatin, Rudolf Carl, Freiherr von', '2016-06-15', 13, 'https://www.gutenberg.org/ebooks/52332', 'fr', 4466), +(8218, 'Venetia', 'Disraeli, Benjamin, Earl of Beaconsfield', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/11869', 'en', 48), +(8219, 'Sea Monsters Unmasked, and Sea Fables Explained', 'Lee, Henry', '2011-07-09', 28, 'https://www.gutenberg.org/ebooks/36677', 'en', 4467), +(8220, 'The Indian: On the Battle-Field and in the Wigwam', 'Frost, John', '2014-04-14', 6, 'https://www.gutenberg.org/ebooks/45385', 'en', 869), +(8221, 'Cape Breton Tales', 'Smith, Harry James', '2013-11-22', 18, 'https://www.gutenberg.org/ebooks/44257', 'en', 4468), +(8222, 'Poems of Experience', 'Wilcox, Ella Wheeler', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/5170', 'en', 178), +(8223, 'Trail\'s End', 'Ogden, George W. (George Washington)', '2007-02-28', 162, 'https://www.gutenberg.org/ebooks/20712', 'en', 315), +(8224, 'The Boy Travellers in the Far East, Part Third\r\nAdventures of Two Youths in a Journey to Ceylon and India; With Descriptions of Borneo, the Philippine Islands and Burmah', 'Knox, Thomas Wallace', '2019-01-04', 17, 'https://www.gutenberg.org/ebooks/58608', 'en', 4469), +(8225, 'Children of the Mist', 'Phillpotts, Eden', '2004-12-30', 29, 'https://www.gutenberg.org/ebooks/14527', 'en', 712), +(8226, 'Surgery, with Special Reference to Podiatry', 'Stern, Maximilian', '2012-12-28', 10, 'https://www.gutenberg.org/ebooks/41725', 'en', 4470), +(8227, 'A Year in a Yawl\nA True Tale of the Adventures of Four Boys in a Thirty-foot Yawl', 'Doubleday, Russell', '2018-03-20', 24, 'https://www.gutenberg.org/ebooks/56792', 'en', 4471), +(8228, 'Lord Dolphin', 'Cheever, Harriet A. (Harriet Anna)', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11055', 'en', 4472), +(8229, '豐收', 'Ye, Zi', '2008-04-30', 7, 'https://www.gutenberg.org/ebooks/25260', 'zh', 4473), +(8230, 'Reuben Haskin\'s ride on the Cyclone Auto', 'Spencer, Len', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10187', 'en', 4474), +(8231, 'Two Men: A Romance of Sussex', 'Ollivant, Alfred', '2018-08-05', 14, 'https://www.gutenberg.org/ebooks/57640', 'en', 1220), +(8232, 'Lost Man\'s Lane: A Second Episode in the Life of Amelia Butterworth', 'Green, Anna Katharine', '2010-07-31', 61, 'https://www.gutenberg.org/ebooks/33305', 'en', 2287), +(8233, 'Little Nobody', 'Miller, Alex. McVeigh, Mrs.', '2014-09-25', 11, 'https://www.gutenberg.org/ebooks/46958', 'en', 4475), +(8234, 'Fighting the Traffic in Young Girls; Or, War on the White Slave Trade', NULL, '2008-07-17', 29, 'https://www.gutenberg.org/ebooks/26081', 'en', 2611), +(8235, 'Runoja', 'Onerva, L.', '2017-09-18', 5, 'https://www.gutenberg.org/ebooks/55573', 'fi', 1171), +(8236, 'The Lovers Assistant; Or, New Art of Love', 'Ovid', '2010-01-21', 38, 'https://www.gutenberg.org/ebooks/31036', 'en', 4476), +(8237, 'The Christmas Books of Mr. M.A. Titmarsh', 'Thackeray, William Makepeace', '2006-05-25', 57, 'https://www.gutenberg.org/ebooks/2731', 'en', 4477), +(8238, 'La bodega', 'Blasco Ibáñez, Vicente', '2009-05-22', 35, 'https://www.gutenberg.org/ebooks/28927', 'es', 4478), +(8239, 'Rambles in Rome\r\nAn Archæological and Historical Guide to the Museums, Galleries, Villas, Churches, and Antiquities of Rome and the Campagna', 'Forbes, S. Russell', '2013-08-07', 12, 'https://www.gutenberg.org/ebooks/43416', 'en', 4479), +(8240, 'A General History and Collection of Voyages and Travels — Volume 08', 'Kerr, Robert', '2004-09-03', 28, 'https://www.gutenberg.org/ebooks/13366', 'en', 885), +(8241, 'Spare Hours', 'Brown, John', '2008-11-04', 19, 'https://www.gutenberg.org/ebooks/27153', 'en', 729), +(8242, 'Il piccolo santo: Dramma in cinque atti', 'Bracco, Roberto', '2014-07-01', 11, 'https://www.gutenberg.org/ebooks/46164', 'it', 407), +(8243, 'A Connecticut Yankee in King Arthur\'s Court, Part 2.', 'Twain, Mark', '2004-07-06', 9, 'https://www.gutenberg.org/ebooks/7243', 'en', 4480), +(8244, 'Settling Day', 'Gould, Nat', '2011-03-06', 16, 'https://www.gutenberg.org/ebooks/35496', 'en', 792), +(8245, 'De complete werken van Joost van Vondel. De Heerlijkheid van Salomon', 'Vondel, Joost van den', '2015-09-08', 20, 'https://www.gutenberg.org/ebooks/49910', 'nl', 2651), +(8246, 'The Hesperides & Noble Numbers: Vol. 1 and 2', 'Herrick, Robert', '2007-08-28', 40, 'https://www.gutenberg.org/ebooks/22421', 'en', 8), +(8247, 'The Birth-Time of the World and Other Scientific Essays', 'Joly, John', '2005-08-28', 8, 'https://www.gutenberg.org/ebooks/16614', 'en', 814), +(8248, 'What Happened to Me', 'Pickett, La Salle Corbell', '2015-09-18', 12, 'https://www.gutenberg.org/ebooks/50001', 'en', 4481), +(8249, 'The Lives of the Twelve Caesars, Volume 06: Nero', 'Suetonius', '2004-12-13', 29, 'https://www.gutenberg.org/ebooks/6391', 'en', 1037), +(8250, 'This is not a Story', 'Diderot, Denis', '2010-12-02', 46, 'https://www.gutenberg.org/ebooks/34544', 'en', 100), +(8251, 'Held to Answer: A Novel', 'MacFarlane, Peter Clark', '2014-01-08', 9, 'https://www.gutenberg.org/ebooks/44633', 'en', 61), +(8252, 'Arachne — Volume 07', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5514', 'en', 803), +(8253, 'Postikonttorissa\nPikkukaupungin kuvaus yhdessä näytöksessä', 'Kiljander, Robert', '2007-01-15', 16, 'https://www.gutenberg.org/ebooks/20376', 'fi', 247), +(8254, 'In the Desert of Waiting: The Legend of Camel-back Mountain', 'Johnston, Annie F. (Annie Fellows)', '2016-12-07', 9, 'https://www.gutenberg.org/ebooks/53684', 'en', 4482), +(8255, 'Een abel spel ende een edel dinc van den Hertoghe van Bruyswijc, hoe hi wert minnende des Roedelioens dochter van Abelant (Gloriant)', 'Spitz, R. J.', '2004-11-24', 25, 'https://www.gutenberg.org/ebooks/14143', 'nl', 402), +(8256, 'The History of Tom Thumb\r\nTo Which Are Added the Stories of the Cat and the Mouse and Fire! Fire! Burn Stick!', NULL, '1999-12-01', 30, 'https://www.gutenberg.org/ebooks/1988', 'en', 4483), +(8257, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 02, February 1895.\r\nByzantine-Romanesque Doorways in Southern Italy', 'Various', '2005-02-17', 21, 'https://www.gutenberg.org/ebooks/15091', 'en', 2140), +(8258, 'The Cuckoo in the Nest, v. 2/2', 'Oliphant, Mrs. (Margaret)', '2016-08-08', 16, 'https://www.gutenberg.org/ebooks/52756', 'en', 61), +(8259, 'Ypres and the Battles of Ypres', NULL, '2011-05-25', 18, 'https://www.gutenberg.org/ebooks/36213', 'en', 2485), +(8260, 'The Mystery of Seal Islands', 'Bardwell, Harrison', '2018-05-28', 7, 'https://www.gutenberg.org/ebooks/57224', 'en', 4484), +(8261, 'Vie de Bohème: A Patch of Romantic Paris', 'Williams, Orlo', '2012-07-21', 15, 'https://www.gutenberg.org/ebooks/40293', 'en', 2243), +(8262, 'Making Money', 'Johnson, Owen', '2010-09-19', 136, 'https://www.gutenberg.org/ebooks/33761', 'en', 61), +(8263, 'Stanley\'s Adventures in the Wilds of Africa\nA Graphic Account of the Several Expeditions of Henry M. Stanley into the Heart of the Dark Continent', 'Headley, Joel Tyler', '2011-12-23', 28, 'https://www.gutenberg.org/ebooks/38389', 'en', 4485), +(8264, 'Mount Royal: A Novel. Volume 3 of 3', 'Braddon, M. E. (Mary Elizabeth)', '2012-11-10', 16, 'https://www.gutenberg.org/ebooks/41341', 'en', 61), +(8265, 'Character Sketches of Romance, Fiction and the Drama, Vol. 1 (of 4)\r\nA Revised American Edition of the Reader\'s Handbook', 'Brewer, Ebenezer Cobham', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11431', 'en', 163), +(8266, 'A Manual of the Malay language\nWith an Introductory Sketch of the Sanskrit Element in Malay', 'Maxwell, William Edward, Sir', '2008-05-26', 24, 'https://www.gutenberg.org/ebooks/25604', 'en', 4486), +(8267, 'The Fourth Book of Virgil\'s Aeneid and the Ninth Book of Voltaire\'s Henriad', 'Virgil', '2006-12-20', 14, 'https://www.gutenberg.org/ebooks/20144', 'en', 302), +(8268, 'The Portland Peerage Romance', 'Archard, Charles J.', '2004-12-17', 6, 'https://www.gutenberg.org/ebooks/14371', 'en', 4487), +(8269, 'L\'Illustration, No. 0032, 7 Octobre 1843', 'Various', '2012-02-26', 4, 'https://www.gutenberg.org/ebooks/38987', 'fr', 150), +(8270, 'The Phantom Yacht', 'Norton, Carol', '2013-12-09', 26, 'https://www.gutenberg.org/ebooks/44401', 'en', 557), +(8271, 'The Fairy-Land of Science', 'Buckley, Arabella B. (Arabella Burton)', '2004-05-01', 95, 'https://www.gutenberg.org/ebooks/5726', 'en', 37), +(8272, 'The Negro in the United States; a selected bibliography. Compiled by Dorothy B. Porter', 'Wesley, Dorothy Porter', '2011-05-02', 14, 'https://www.gutenberg.org/ebooks/36021', 'en', 4488), +(8273, 'The Teaching of Epictetus\r\nBeing the \'Encheiridion of Epictetus,\' with Selections from the \'Dissertations\' and \'Fragments\'', 'Epictetus', '2012-05-29', 103, 'https://www.gutenberg.org/ebooks/39855', 'en', 2286), +(8274, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 03 (of 17)', NULL, '2016-07-12', 36, 'https://www.gutenberg.org/ebooks/52564', 'en', 3756), +(8275, 'She and I, Volume 2\nA Love Story. A Life History.', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 16, 'https://www.gutenberg.org/ebooks/21096', 'en', 48), +(8276, 'A Hungarian Nabob', 'Jókai, Mór', '2007-04-03', 44, 'https://www.gutenberg.org/ebooks/20978', 'en', 4489), +(8277, 'Medical Inquiries and Observations, Vol. 4 (of 4)\r\nThe Second Edition, Revised and Enlarged by the Author', 'Rush, Benjamin', '2019-02-28', 7, 'https://www.gutenberg.org/ebooks/58862', 'en', 4490), +(8278, 'In a Belgian Garden, and Other Poems', 'Call, Frank Oliver', '2010-08-27', 5, 'https://www.gutenberg.org/ebooks/33553', 'en', 28), +(8279, 'Lady Baltimore', 'Wister, Owen', '1998-07-01', 25, 'https://www.gutenberg.org/ebooks/1386', 'en', 4491), +(8280, 'Memoirs of the Reign of King George the Second, Volume 1 (of 3)', 'Walpole, Horace', '2018-04-21', 14, 'https://www.gutenberg.org/ebooks/57016', 'en', 4492), +(8281, 'The House of Cobwebs and Other Stories', 'Gissing, George', '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/11603', 'en', 179), +(8282, 'Uma scena conjugal\r\nComedia—lever de rideau', 'Couceiro, Luís', '2008-05-11', 41, 'https://www.gutenberg.org/ebooks/25436', 'pt', 3231), +(8283, 'Rostem und Suhrab: Eine Heldengeschichte in zwölf Büchern', 'Rückert, Friedrich', '2010-05-22', 17, 'https://www.gutenberg.org/ebooks/32481', 'de', 510), +(8284, 'Ιστορία της Ελληνικής Επαναστάσεως, Τόμος Δ', 'Trikoupes, Spyridon', '2012-03-06', 11, 'https://www.gutenberg.org/ebooks/39069', 'el', 4493), +(8285, 'Address to the Non-Slaveholders of the South\non the Social and Political Evils of Slavery', 'Tappan, Lewis', '2012-10-25', 16, 'https://www.gutenberg.org/ebooks/41173', 'en', 125), +(8286, 'Peterchens Mondfahrt: Ein Märchenspiel', 'Bassewitz, Gerdt von', '2010-02-07', 49, 'https://www.gutenberg.org/ebooks/31204', 'de', 4494), +(8287, 'The Bible, King James version, Book 39: Malachi', 'Anonymous', '2005-04-01', 10, 'https://www.gutenberg.org/ebooks/8039', 'en', 4495), +(8288, 'Kaarlo Bergbom: Henkilökuvaus', 'Finne, Jalmari', '2017-10-13', 6, 'https://www.gutenberg.org/ebooks/55741', 'fi', 4496), +(8289, 'Eastern Shame Girl', NULL, '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/12086', 'en', 4497), +(8290, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 17, No. 098, February, 1876', 'Various', '2004-08-10', 25, 'https://www.gutenberg.org/ebooks/13154', 'en', 210), +(8291, 'A Book for a Rainy Day; or, Recollections of the Events of the Years 1766-1833', 'Smith, John Thomas', '2017-05-09', 16, 'https://www.gutenberg.org/ebooks/54693', 'en', 3967), +(8292, 'The Cost', 'Phillips, David Graham', '1996-03-01', 36, 'https://www.gutenberg.org/ebooks/478', 'en', 378), +(8293, 'As concessões de direitos magestaticos a emprezas mercantis para o ultramar\r\nrepresentações ao governo', 'Sociedade de Geografia de Lisboa', '2008-11-29', 18, 'https://www.gutenberg.org/ebooks/27361', 'pt', 4498), +(8294, 'Myths and Legends of California and the Old Southwest', NULL, '2001-02-01', 49, 'https://www.gutenberg.org/ebooks/2503', 'en', 4499), +(8295, 'My Friend Annabel Lee', 'MacLane, Mary', '2013-09-02', 14, 'https://www.gutenberg.org/ebooks/43624', 'en', 4500), +(8296, 'La Vie de M. de Molière\nRéimpression de l\'édition originale (Paris, 1705) et des pièces annexes', 'Grimarest, Jean-Léonor Le Gallois de', '2007-09-16', 14, 'https://www.gutenberg.org/ebooks/22613', 'fr', 4501), +(8297, 'Unknown Mexico, Volume 1 (of 2)\r\nA Record of Five Years\' Exploration Among the Tribes of the Western Sierra Madre; In the Tierra Caliente of Tepic and Jalisco; and Among the Tarascos of Michoacan', 'Lumholtz, Carl', '2005-08-04', 69, 'https://www.gutenberg.org/ebooks/16426', 'en', 4502), +(8298, 'From One Generation to Another', 'Merriman, Henry Seton', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8805', 'en', 61), +(8299, 'The Toxicity of Caffein: An experimental study on different species of animals', 'Rieger, J. B. (John Benjamin)', '2014-07-22', 25, 'https://www.gutenberg.org/ebooks/46356', 'en', 4503), +(8300, 'In Times of Peril: A Tale of India', 'Henty, G. A. (George Alfred)', '2004-12-01', 30, 'https://www.gutenberg.org/ebooks/7071', 'en', 4504), +(8301, 'The Works of the Right Honourable Edmund Burke, Vol. 09 (of 12)', 'Burke, Edmund', '2005-03-27', 41, 'https://www.gutenberg.org/ebooks/13968', 'en', 4505), +(8302, 'The Wayfarers', 'Snaith, J. C. (John Collis)', '2010-12-28', 10, 'https://www.gutenberg.org/ebooks/34776', 'en', 323), +(8303, 'Favorite Nursery Rhymes', 'Anonymous', '2014-11-04', 12, 'https://www.gutenberg.org/ebooks/47284', 'en', 343), +(8304, 'Tuppelan Kalle ja Koturi-Heikki: Kuvaus \"Tukkipoikain\" Elämästä', 'Kivinen, Niilo', '2015-10-16', 7, 'https://www.gutenberg.org/ebooks/50233', 'fi', 41), +(8305, 'The Land of Thor', 'Browne, J. Ross (John Ross)', '2009-03-15', 29, 'https://www.gutenberg.org/ebooks/28329', 'en', 4506), +(8306, 'The Erie Train Boy', 'Alger, Horatio, Jr.', '2008-07-16', 29, 'https://www.gutenberg.org/ebooks/26075', 'en', 658), +(8307, 'The Lady and Sada San\nA Sequel to the Lady of the Decoration', 'Little, Frances', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12240', 'en', 3303), +(8308, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 09 (of 17)', NULL, '2017-09-20', 33, 'https://www.gutenberg.org/ebooks/55587', 'en', 3756), +(8309, 'A Short History of EBooks', 'Lebert, Marie', '2009-08-26', 53, 'https://www.gutenberg.org/ebooks/29801', 'en', 2047), +(8310, 'Punch, or the London Charivari, Vol. 108, June 15th, 1895', 'Various', '2013-04-14', 2, 'https://www.gutenberg.org/ebooks/42530', 'en', 134), +(8311, 'Widger\'s Quotations from the Project Gutenberg Editions of Dumas\' Celebrated Crimes', 'Dumas, Alexandre', '2003-01-01', 11, 'https://www.gutenberg.org/ebooks/3617', 'en', 1026), +(8312, 'Name and Fame: A Novel', 'Sergeant, Adeline', '2009-09-27', 19, 'https://www.gutenberg.org/ebooks/30110', 'en', 61), +(8313, 'Light Science for Leisure Hours\r\nA series of familiar essays on scientific subjects, natural phenomena, &c.', 'Proctor, Richard A. (Richard Anthony)', '2017-03-28', 21, 'https://www.gutenberg.org/ebooks/54455', 'en', 814), +(8314, 'A Woman\'s Impression of the Philippines', 'Fee, Mary H. (Mary Helen)', '2004-09-07', 20, 'https://www.gutenberg.org/ebooks/13392', 'en', 4048), +(8315, 'Stories of Robin Hood', 'Bush, Bertha Evangeline', '2014-07-04', 32, 'https://www.gutenberg.org/ebooks/46190', 'en', 4507), +(8316, 'The Works of Mr. George Gillespie (Vol. 1 of 2)', 'Gillespie, George', '2008-10-08', 26, 'https://www.gutenberg.org/ebooks/26849', 'en', 4508), +(8317, 'Sharing Her Crime: A Novel', 'Fleming, May Agnes', '2011-03-03', 21, 'https://www.gutenberg.org/ebooks/35462', 'en', 61), +(8318, 'Motor Matt on the Wing; or, Flying for Fame and Fortune', 'Matthews, Stanley R.', '2016-02-05', 11, 'https://www.gutenberg.org/ebooks/51127', 'en', 4097), +(8319, 'Tales Of Hearsay', 'Conrad, Joseph', '2006-02-09', 57, 'https://www.gutenberg.org/ebooks/17732', 'en', 179), +(8320, 'Across the Reef: The Marine Assault of Tarawa', 'Alexander, Joseph H.', '2015-04-30', 104, 'https://www.gutenberg.org/ebooks/48836', 'en', 4509), +(8321, 'A Short History of Pittsburgh\r\n1758-1908', 'Church, Samuel Harden', '2007-11-16', 9, 'https://www.gutenberg.org/ebooks/23507', 'en', 4510), +(8322, 'Richard Dare\'s Venture; Or, Striking Out for Himself', 'Stratemeyer, Edward', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6365', 'en', 1708), +(8323, 'Le petit vieux des Batignolles', 'Gaboriau, Emile', '2014-10-04', 22, 'https://www.gutenberg.org/ebooks/47042', 'fr', 100), +(8324, 'Brenda\'s Bargain: A Story for Girls', 'Reed, Helen Leah', '2011-09-08', 23, 'https://www.gutenberg.org/ebooks/37335', 'en', 51), +(8325, 'Ranching, Sport and Travel', 'Carson, Thomas', '2007-01-16', 35, 'https://www.gutenberg.org/ebooks/20382', 'en', 1750), +(8326, 'A Sketch of Assam: With some account of the Hill Tribes', 'Butler, John, Major', '2016-12-05', 20, 'https://www.gutenberg.org/ebooks/53670', 'en', 4511), +(8327, 'La dama errante\nLa raza, Tomo I', 'Baroja, Pío', '2018-11-17', 46, 'https://www.gutenberg.org/ebooks/58298', 'es', 1384), +(8328, 'The Continental Monthly, Vol. 1, No. 4, April, 1862\r\nDevoted To Literature And National Policy', 'Various', '2005-02-15', 14, 'https://www.gutenberg.org/ebooks/15065', 'en', 162), +(8329, 'Sir Walter Scott: A Lecture at the Sorbonne', 'Ker, W. P. (William Paton)', '2007-04-29', 71, 'https://www.gutenberg.org/ebooks/21250', 'en', 4512), +(8330, 'Evan Harrington — Volume 6', 'Meredith, George', '2003-09-01', 28, 'https://www.gutenberg.org/ebooks/4432', 'en', 137), +(8331, 'Gai, gai, marions-nous: Chansons de France', NULL, '2014-05-22', 24, 'https://www.gutenberg.org/ebooks/45715', 'fr', 2990), +(8332, 'Letters from Port Royal\nWritten at the Time of the Civil War (1862-1868)', NULL, '2008-03-01', 37, 'https://www.gutenberg.org/ebooks/24722', 'en', 4513), +(8333, 'Government and Rebellion\r\nA Sermon Delivered in the North Broad Street Presbyterian Church, Sunday Morning, April 28, 1861', 'Adams, E. E. (Ezra Eastman)', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/10517', 'en', 4514), +(8334, 'The Celtic Magazine, Vol I, No. IV, February 1876\r\nA Monthly Periodical Devoted to the Literature, History, Antiquities, Folk Lore, Traditions, and the Social and Material Interest of the Celt at Home and Abroad.', 'Various', '2012-07-17', 9, 'https://www.gutenberg.org/ebooks/40267', 'en', 274), +(8335, 'Latter-Day Pamphlets', 'Carlyle, Thomas', '1997-12-01', 113, 'https://www.gutenberg.org/ebooks/1140', 'en', 3120), +(8336, 'Pictures of German Life in the XVth, XVIth, and XVIIth Centuries, Vol. II.', 'Freytag, Gustav', '2010-09-22', 12, 'https://www.gutenberg.org/ebooks/33795', 'en', 3899), +(8337, 'The Piazza Tales', 'Melville, Herman', '2005-05-18', 540, 'https://www.gutenberg.org/ebooks/15859', 'en', 179), +(8338, 'O Infante Navegador: Poemeto', 'Campos, Alfredo', '2010-06-01', 11, 'https://www.gutenberg.org/ebooks/32647', 'pt', 4515), +(8339, 'The Source and Mode of Solar Energy Throughout the Universe', 'Heysinger, Isaac W. (Isaac Winter)', '2018-01-04', 20, 'https://www.gutenberg.org/ebooks/56302', 'en', 4516), +(8340, 'True Bear Stories', 'Miller, Joaquin', '2012-09-26', 23, 'https://www.gutenberg.org/ebooks/40869', 'en', 4517), +(8341, 'Lace, Its Origin and History', 'Goldenberg, Samuel L.', '2012-02-24', 47, 'https://www.gutenberg.org/ebooks/38973', 'en', 4518), +(8342, 'Työn orja', 'Leino, Eino', '2004-12-20', 20, 'https://www.gutenberg.org/ebooks/14385', 'fi', 61), +(8343, 'Anielka II', 'Sienkiewicz, Henryk', '2016-11-03', 26, 'https://www.gutenberg.org/ebooks/53442', 'fi', 1316), +(8344, 'A Life For a Love: A Novel', 'Meade, L. T.', '2011-08-16', 28, 'https://www.gutenberg.org/ebooks/37107', 'en', 61), +(8345, 'A Hazard of New Fortunes — Complete', 'Howells, William Dean', '2004-10-23', 51, 'https://www.gutenberg.org/ebooks/4600', 'en', 1660), +(8346, 'Omnia Opera Sancti Patricii\nAll the Works of Saint Patrick', 'Patrick, Saint', '2014-04-28', 21, 'https://www.gutenberg.org/ebooks/45527', 'la', 4519), +(8347, 'The Night Club', 'Jenkins, Herbert George', '2016-07-16', 29, 'https://www.gutenberg.org/ebooks/52590', 'en', 4520), +(8348, 'The Curious Case of Lady Purbeck: A Scandal of the XVIIth Century', 'Longueville, Thomas', '2005-03-04', 15, 'https://www.gutenberg.org/ebooks/15257', 'en', 4521), +(8349, 'The Cruise of the Nonsuch Buccaneer', 'Collingwood, Harry', '2007-04-13', 26, 'https://www.gutenberg.org/ebooks/21062', 'en', 324), +(8350, 'The Natural History of Cage Birds\r\nTheir Management, Habits, Food, Diseases, Treatment, Breeding, and the Methods of Catching Them.', 'Bechstein, Johann Matthäus', '2012-06-22', 13, 'https://www.gutenberg.org/ebooks/40055', 'en', 4522), +(8351, 'The Adventures of Captain Bonneville, U. S. A., in the Rocky Mountains and the Far West', 'Bonneville, Benjamin Louis Eulalie de', '2006-02-19', 65, 'https://www.gutenberg.org/ebooks/1372', 'en', 4523), +(8352, 'Harper\'s Young People, August 1, 1882\nAn Illustrated Weekly', 'Various', '2019-02-16', 0, 'https://www.gutenberg.org/ebooks/58896', 'en', 479), +(8353, 'The Production of Vinegar from Honey', 'Bancks, Gerard W.', '2008-02-04', 44, 'https://www.gutenberg.org/ebooks/24510', 'en', 4524), +(8354, 'The Centralia Conspiracy', 'Chaplin, Ralph', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/10725', 'en', 4525), +(8355, 'Letters to a Friend, Written to Mrs. Ezra S. Carr, 1866-1879', 'Muir, John', '2017-12-05', 27, 'https://www.gutenberg.org/ebooks/56130', 'en', 4526), +(8356, 'Impressions of Spain', 'Calvert, Albert Frederick', '2019-07-18', 274, 'https://www.gutenberg.org/ebooks/59944', 'en', 1514), +(8357, 'The Memoirs of the Conquistador Bernal Diaz del Castillo, Vol 2 (of 2)\r\nWritten by Himself Containing a True and Full Account of the Discovery and Conquest of Mexico and New Spain.', 'Díaz del Castillo, Bernal', '2010-05-21', 93, 'https://www.gutenberg.org/ebooks/32475', 'en', 1382), +(8358, 'This House to Let', 'Le Queux, William', '2012-10-25', 9, 'https://www.gutenberg.org/ebooks/41187', 'en', 128), +(8359, 'Passing By', 'Baring, Maurice', '2013-05-12', 30, 'https://www.gutenberg.org/ebooks/42702', 'en', 705), +(8360, 'Samantha at Saratoga', 'Holley, Marietta', '2002-09-01', 11, 'https://www.gutenberg.org/ebooks/3425', 'en', 2287), +(8361, 'The Strange Case of Dr Jekyll & Mr Hyde', 'Stevenson, Robert Louis', '2008-08-01', 37, 'https://www.gutenberg.org/ebooks/26247', 'en', 4527), +(8362, 'Contes des fées', 'Bonnières, Robert de', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/12072', 'fr', 4528), +(8363, 'Two Centuries of Shipbuilding by the Scotts at Greenock', 'Scotts\' Shipbuilding & Engineering Co. Ltd.', '2017-05-06', 19, 'https://www.gutenberg.org/ebooks/54667', 'en', 4529), +(8364, 'Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad,\nThe North River Division. Paper No. 1151', 'Jacobs, Charles M. (Charles Mattathias)', '2006-06-10', 9, 'https://www.gutenberg.org/ebooks/18548', 'en', 4530), +(8365, 'The Slave of Silence', 'White, Fred M. (Fred Merrick)', '2008-12-03', 29, 'https://www.gutenberg.org/ebooks/27395', 'en', 167), +(8366, 'The Helpful Hand of God', 'Godwin, Tom', '2009-10-24', 64, 'https://www.gutenberg.org/ebooks/30322', 'en', 26), +(8367, 'Het geval België', 'Beck, James M. (James Montgomery)', '2015-02-11', 17, 'https://www.gutenberg.org/ebooks/48238', 'nl', 4531), +(8368, 'How? or, Spare Hours Made Profitable for Boys and Girls', 'Holbrook, Kennedy', '2016-02-27', 8, 'https://www.gutenberg.org/ebooks/51315', 'en', 1837), +(8369, 'A Treatise on the Police of the Metropolis\r\nContaining a Detail of the Various Crimes and Misdemeanors by which Public and Private Property and Security are, at Present, Injured and Endangered: and Suggesting Remedies for their Prevention', 'Colquhoun, Patrick', '2011-03-21', 38, 'https://www.gutenberg.org/ebooks/35650', 'en', 4532), +(8370, 'Fanshawe', 'Hawthorne, Nathaniel', '2004-12-01', 79, 'https://www.gutenberg.org/ebooks/7085', 'en', 61), +(8371, 'Arnold Beer: Das Schicksal eines Juden', 'Brod, Max', '2010-12-29', 28, 'https://www.gutenberg.org/ebooks/34782', 'de', 253), +(8372, 'What Men Live By, and Other Tales', 'Tolstoy, Leo, graf', '2004-07-01', 267, 'https://www.gutenberg.org/ebooks/6157', 'en', 1014), +(8373, 'Rathfelder\'s Hotel', 'Bosworth, Annie E.', '2014-11-02', 8, 'https://www.gutenberg.org/ebooks/47270', 'en', 4533), +(8374, 'The Box with Broken Seals', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-02-01', 30, 'https://www.gutenberg.org/ebooks/9923', 'en', 128), +(8375, 'The Return of the Native', 'Hardy, Thomas', '2006-01-12', 93, 'https://www.gutenberg.org/ebooks/17500', 'en', 4534), +(8376, 'The Story-teller', 'Lindsay, Maud', '2007-12-04', 42, 'https://www.gutenberg.org/ebooks/23735', 'en', 1007), +(8377, 'The Golden Bowl — Complete', 'James, Henry', '2003-07-01', 251, 'https://www.gutenberg.org/ebooks/4264', 'en', 4535), +(8378, 'The Way to the West, and the Lives of Three Early Americans: Boone—Crockett—Carson', 'Hough, Emerson', '2014-03-15', 35, 'https://www.gutenberg.org/ebooks/45143', 'en', 4536), +(8379, 'Etimología de los Nombres de Razas de Filipinas', 'Pardo de Tavera, T. H. (Trinidad Hermenegildo)', '2005-04-16', 15, 'https://www.gutenberg.org/ebooks/15633', 'es', 3660), +(8380, 'Novelas do Minho', 'Castelo Branco, Camilo', '2007-05-09', 25, 'https://www.gutenberg.org/ebooks/21406', 'pt', 4537), +(8381, 'Smithson\'s Theory of Special Creation', 'Smithson, Noble', '2016-09-10', 23, 'https://www.gutenberg.org/ebooks/53026', 'en', 4538), +(8382, 'Finnish Legends for English Children', 'Eivind, R.', '2008-03-29', 53, 'https://www.gutenberg.org/ebooks/24948', 'en', 4539), +(8383, 'Green Fire: A Romance', 'Sharp, William', '2013-11-02', 16, 'https://www.gutenberg.org/ebooks/44091', 'en', 4540), +(8384, 'A Man of Honor', 'Eggleston, George Cary', '2011-09-30', 13, 'https://www.gutenberg.org/ebooks/37563', 'en', 770), +(8385, 'Jan van Huysums Blomsterstykke\r\nEn Buket', 'Wergeland, Henrik Arnold', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11293', 'no', 4541), +(8386, 'The Sugar Creek Gang Goes North', 'Hutchens, Paul', '2018-02-12', 11, 'https://www.gutenberg.org/ebooks/56554', 'en', 3), +(8387, 'Special Delivery', 'Knight, Damon', '2010-04-16', 44, 'https://www.gutenberg.org/ebooks/32011', 'en', 179), +(8388, 'Miss Hildreth: A Novel, Volume 1', 'Stevens, Augusta de Grasse', '2012-08-07', 13, 'https://www.gutenberg.org/ebooks/40431', 'en', 61), +(8389, 'The Copy-Cat, and Other Stories', 'Freeman, Mary Eleanor Wilkins', '1999-04-01', 31, 'https://www.gutenberg.org/ebooks/1716', 'en', 179), +(8390, 'Am Glück vorbei', 'Sudermann, Clara', '2008-01-05', 25, 'https://www.gutenberg.org/ebooks/24174', 'de', 48), +(8391, 'A Secret of the Sea: A Novel. Vol. 3 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-07-12', 10, 'https://www.gutenberg.org/ebooks/57486', 'en', 137), +(8392, 'The Great Events by Famous Historians, Volume 21\nThe Recent Days (1910-1914)', NULL, '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10341', 'en', 346), +(8393, 'The Prisoners of Mainz', 'Waugh, Alec', '2017-02-20', 13, 'https://www.gutenberg.org/ebooks/54203', 'en', 1390), +(8394, 'Clemenceau, the Man and His Time', 'Hyndman, H. M. (Henry Mayers)', '2019-08-01', 289, 'https://www.gutenberg.org/ebooks/60036', 'en', 4542), +(8395, 'A Ward of the Golden Gate', 'Harte, Bret', '2000-05-01', 12, 'https://www.gutenberg.org/ebooks/2193', 'en', 50), +(8396, 'Warlord of Kor', 'Carr, Terry Gene', '2006-03-10', 97, 'https://www.gutenberg.org/ebooks/17958', 'en', 26), +(8397, 'The Last Straw', 'Smith, William J.', '2009-12-23', 12, 'https://www.gutenberg.org/ebooks/30746', 'en', 179), +(8398, 'The Cozy Lion: As Told by Queen Crosspatch', 'Burnett, Frances Hodgson', '2013-03-18', 16, 'https://www.gutenberg.org/ebooks/42366', 'en', 4543), +(8399, 'The Cleveland Era: A Chronicle of the New Order in Politics', 'Ford, Henry Jones', '2002-01-01', 32, 'https://www.gutenberg.org/ebooks/3041', 'en', 4544), +(8400, 'Estrellas Funestas', 'Castelo Branco, Camilo', '2010-03-18', 12, 'https://www.gutenberg.org/ebooks/31694', 'pt', 61), +(8401, 'The Brass Bell; or, The Chariot of Death', 'Sue, Eugène', '2008-08-15', 16, 'https://www.gutenberg.org/ebooks/26623', 'en', 4545), +(8402, 'As Seen By Me', 'Bell, Lilian', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12416', 'en', 1408), +(8403, 'Diary of a Nursing Sister on the Western Front, 1914-1915', 'Anonymous', '2006-07-26', 37, 'https://www.gutenberg.org/ebooks/18910', 'en', 449), +(8404, 'A Connecticut Yankee in King Arthur\'s Court', 'Twain, Mark', '2004-09-01', 4, 'https://www.gutenberg.org/ebooks/6533', 'en', 580), +(8405, 'When Sarah Went to School', 'Singmaster, Elsie', '2014-12-10', 19, 'https://www.gutenberg.org/ebooks/47614', 'en', 4546), +(8406, 'Narrative of a Mission to Central Africa Performed in the Years 1850-51, Volume 1\nUnder the Orders and at the Expense of Her Majesty\'s Government', 'Richardson, James', '2005-11-27', 28, 'https://www.gutenberg.org/ebooks/17164', 'en', 4547), +(8407, 'The Yacht Club; or, The Young Boat-Builder', 'Optic, Oliver', '2007-11-06', 28, 'https://www.gutenberg.org/ebooks/23351', 'en', 4548), +(8408, 'Mind and Motion and Monism', 'Romanes, George John', '2007-08-09', 49, 'https://www.gutenberg.org/ebooks/22283', 'en', 4549), +(8409, 'The Trail of the Elk', 'Fønhus, Mikkjel', '2016-04-15', 14, 'https://www.gutenberg.org/ebooks/51771', 'en', 286), +(8410, 'The Progress of Ethnology\r\nAn Account of Recent Archaeological, Philological and Geographical Researches in Various Parts of the Globe, Tending to Elucidate the Physical History of Man', 'Bartlett, John Russell', '2011-02-10', 23, 'https://www.gutenberg.org/ebooks/35234', 'en', 4550), +(8411, 'The Highwayman', 'Bailey, H. C. (Henry Christopher)', '2006-01-01', 155, 'https://www.gutenberg.org/ebooks/9749', 'en', 4551), +(8412, 'Shadow Mountain', 'Coolidge, Dane', '2009-12-01', 32, 'https://www.gutenberg.org/ebooks/30574', 'en', 315), +(8413, 'My Own Affairs', 'Louise, Princess of Belgium', '2013-07-03', 14, 'https://www.gutenberg.org/ebooks/43086', 'en', 4552), +(8414, 'Graham\'s Magazine, Vol. XXXVII, No. 4, October 1850', 'Various', '2017-01-20', 11, 'https://www.gutenberg.org/ebooks/54031', 'en', 162), +(8415, 'Villa Nova de Gaia', 'Vaz, João', '2008-08-23', 11, 'https://www.gutenberg.org/ebooks/26411', 'pt', 4553), +(8416, 'Our Lady Saint Mary', 'Barry, J. G. H. (Joseph Gayle Hurd)', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/12624', 'en', 4554), +(8417, 'Miss Leslie\'s Lady\'s New Receipt-Book, 3rd ed.\r\nA Useful Guide for Large or Small Families, Containing Directions for Cooking, Preserving, Pickling...', 'Leslie, Eliza', '2013-02-22', 47, 'https://www.gutenberg.org/ebooks/42154', 'en', 103), +(8418, 'The Complete Works of Artemus Ward — Part 3: Stories and Romances', 'Ward, Artemus', '2002-06-01', 16, 'https://www.gutenberg.org/ebooks/3273', 'en', 190), +(8419, 'Nobody\'s Man', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-12-19', 27, 'https://www.gutenberg.org/ebooks/17356', 'en', 128), +(8420, 'Darnley; or, The Field of the Cloth of Gold', 'James, G. P. R. (George Payne Rainsford)', '2015-11-19', 14, 'https://www.gutenberg.org/ebooks/50491', 'en', 4555), +(8421, 'The Eyes of Asia', 'Kipling, Rudyard', '2007-10-24', 50, 'https://www.gutenberg.org/ebooks/23163', 'en', 335), +(8422, 'Sidonia, the Sorceress : the Supposed Destroyer of the Whole Reigning Ducal House of Pomerania — Volume 2', 'Meinhold, Wilhelm', '2004-10-01', 24, 'https://www.gutenberg.org/ebooks/6701', 'en', 4556), +(8423, 'Blood Royal: A Novel', 'Allen, Grant', '2014-11-22', 31, 'https://www.gutenberg.org/ebooks/47426', 'en', 4557), +(8424, 'An Experimental Translocation of the Eastern Timber Wolf', 'Hook, Richard A.', '2011-01-19', 14, 'https://www.gutenberg.org/ebooks/35006', 'en', 4558), +(8425, 'The Riddle of the Universe at the close of the nineteenth century', 'Haeckel, Ernst', '2013-06-17', 21, 'https://www.gutenberg.org/ebooks/42968', 'en', 243), +(8426, 'The Project Gutenberg Works of Xenophon: An Index', 'Xenophon', '2009-07-19', 41, 'https://www.gutenberg.org/ebooks/29459', 'en', 198), +(8427, 'Vapaudesta', 'Mill, John Stuart', '2016-03-24', 13, 'https://www.gutenberg.org/ebooks/51543', 'fi', 4559), +(8428, 'Matthew Arnold', 'Saintsbury, George', '2005-07-13', 33, 'https://www.gutenberg.org/ebooks/16284', 'en', 4560), +(8429, 'The Great Lone Land\nA Narrative of Travel and Adventure in the North-West of America', 'Butler, William Francis, Sir', '2005-03-18', 27, 'https://www.gutenberg.org/ebooks/15401', 'en', 12), +(8430, 'The Life and Adventures of Nat Love\nBetter Known in the Cattle Country as \"Deadwood Dick\"', 'Love, Nat', '2007-05-28', 49, 'https://www.gutenberg.org/ebooks/21634', 'en', 4561), +(8431, 'Days and Nights in London; Or, Studies in Black and Gray', 'Ritchie, J. Ewing (James Ewing)', '2011-07-10', 49, 'https://www.gutenberg.org/ebooks/36683', 'en', 4562), +(8432, 'Two Festivals', 'Follen, Eliza Lee Cabot', '2003-05-01', 9, 'https://www.gutenberg.org/ebooks/4056', 'en', 388), +(8433, 'Seikkailu saaristossa: Laulunsekainen huvinäytelmä kahdessa näytöksessä', 'Topelius, Zacharias', '2014-04-13', 5, 'https://www.gutenberg.org/ebooks/45371', 'fi', 402), +(8434, 'The Deluge, and Other Poems', 'Presland, John', '2011-10-13', 13, 'https://www.gutenberg.org/ebooks/37751', 'en', 8), +(8435, 'Kalevala : the Epic Poem of Finland — Volume 01', NULL, '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/5184', 'en', 4087), +(8436, 'The Mystery of the Fifteen Sounds', 'Powell, Van', '2016-10-05', 31, 'https://www.gutenberg.org/ebooks/53214', 'en', 4077), +(8437, 'Specimens of German Romance; Vol. II. Master Flea', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2010-05-02', 32, 'https://www.gutenberg.org/ebooks/32223', 'en', 803), +(8438, 'Harper\'s Round Table, April 14, 1896', 'Various', '2018-03-17', 2, 'https://www.gutenberg.org/ebooks/56766', 'en', 668), +(8439, 'Chats on Household Curios', 'Burgess, Fred. W. (Frederick William)', '2008-05-02', 16, 'https://www.gutenberg.org/ebooks/25294', 'en', 4563), +(8440, 'Hints towards the formation of a more comprehensive theory of life.', 'Coleridge, Samuel Taylor', '2008-01-17', 113, 'https://www.gutenberg.org/ebooks/24346', 'en', 4564), +(8441, 'Hungarian Rhapsody No. 2, Part 1', 'Edison Concert Band', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10173', 'en', 4565), +(8442, 'The Root of All Evil', 'Fletcher, J. S. (Joseph Smith)', '2012-08-28', 89, 'https://www.gutenberg.org/ebooks/40603', 'en', 95), +(8443, 'Hamlet, Prince of Denmark', 'Shakespeare, William', '1998-11-01', 1366, 'https://www.gutenberg.org/ebooks/1524', 'en', 4566), +(8444, 'A Romance of Wastdale', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-30', 26, 'https://www.gutenberg.org/ebooks/38719', 'en', 61), +(8445, 'The Mummy and Miss Nitocris: A Phantasy of the Fourth Dimension', 'Griffith, George Chetwynd', '2006-09-10', 43, 'https://www.gutenberg.org/ebooks/19231', 'en', 580), +(8446, 'Security in Your Old Age\r\nTo Employees of Industrial and Business Establishments, Factories, Shops, Mines, Mills, Stores, Offices and Other Places of Business', 'United States. Social Security Board', '2005-08-01', 10, 'https://www.gutenberg.org/ebooks/8666', 'en', 4567), +(8447, 'Viuluniekka: Kolmilohkoinen näytelmä', 'Kneifel, Rudolf', '2015-07-29', 14, 'https://www.gutenberg.org/ebooks/49541', 'fi', 4568), +(8448, 'Epistola de Heloysa a Abaylard\r\ncomposta no idioma Inglez por Pope', 'Pope, Alexander', '2007-10-03', 15, 'https://www.gutenberg.org/ebooks/22870', 'pt', 4569), +(8449, 'Langs de kust van Afrika\r\nDe Aarde en haar Volken, 1875', 'Fleuriot de Langle, Alphonse Jean René, vicomte de', '2015-03-15', 14, 'https://www.gutenberg.org/ebooks/48493', 'nl', 1332), +(8450, 'The Continental Dragoon\nA Love Story of Philipse Manor-House in 1778', 'Stephens, Robert Neilson', '2009-12-03', 22, 'https://www.gutenberg.org/ebooks/30589', 'en', 4570), +(8451, 'Aeneidos', 'Virgil', '1995-03-01', 375, 'https://www.gutenberg.org/ebooks/227', 'la', 4571), +(8452, 'Abolition Fanaticism in New York\nSpeech of a Runaway Slave from Baltimore, at an Abolition\nMeeting in New York, Held May 11, 1847', 'Douglass, Frederick', '2011-01-11', 51, 'https://www.gutenberg.org/ebooks/34915', 'en', 125), +(8453, 'Richard Steele\r\nEdited, with an Introduction and Notes by G. A. Aitken', 'Steele, Richard, Sir', '2017-11-09', 29, 'https://www.gutenberg.org/ebooks/55922', 'en', 4572), +(8454, 'A History of the Inquisition of Spain; vol. 3', 'Lea, Henry Charles', '2014-08-05', 25, 'https://www.gutenberg.org/ebooks/46509', 'en', 4232), +(8455, 'Zuchthausgeschichten von einem ehemaligen Züchtling\nZweiter Theil', 'Hägele, Joseph M.', '2005-07-13', 10, 'https://www.gutenberg.org/ebooks/16279', 'de', 4573), +(8456, 'Castes and Tribes of Southern India. Vol. 5 of 7', 'Thurston, Edgar', '2013-06-21', 90, 'https://www.gutenberg.org/ebooks/42995', 'en', 4574), +(8457, 'Cutting It Out\r\nHow to get on the waterwagon and stay there', 'Blythe, Samuel G. (Samuel George)', '2009-04-22', 18, 'https://www.gutenberg.org/ebooks/28576', 'en', 4575), +(8458, 'The Expositor\'s Bible: The Book of the Twelve Prophets, Vol. 1\r\nCommonly Called the Minor', 'Smith, George Adam', '2013-09-29', 29, 'https://www.gutenberg.org/ebooks/43847', 'en', 3079), +(8459, 'The Trail of Conflict', 'Loring, Emilie Baker', '2010-10-24', 43, 'https://www.gutenberg.org/ebooks/34129', 'en', 61), +(8460, 'A Siren', 'Trollope, Thomas Adolphus', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/5179', 'en', 128), +(8461, 'Hiking Westward\r\nBeing the Story of Two Boys Whose Ambition Led Them to Face Privations and Hardships in Their Quest of a Home in the Great West', 'Conant, Roger William', '2019-01-03', 15, 'https://www.gutenberg.org/ebooks/58601', 'en', 4576), +(8462, 'Black Beauty, Young Folks\' Edition', 'Sewell, Anna', '2004-03-01', 75, 'https://www.gutenberg.org/ebooks/11860', 'en', 1287); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(8463, 'The History of Don Quixote, Volume 2, Part 42', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5945', 'en', 3761), +(8464, 'The Girl\'s Own Paper, Vol. XX. No. 1005, April 1, 1899', 'Various', '2018-08-07', 10, 'https://www.gutenberg.org/ebooks/57649', 'en', 563), +(8465, 'Kuningas Henrik Neljäs II', 'Shakespeare, William', '2012-05-06', 24, 'https://www.gutenberg.org/ebooks/39636', 'fi', 599), +(8466, 'Elements of Plumbing', 'Dibble, Samuel Edward', '2008-05-01', 84, 'https://www.gutenberg.org/ebooks/25269', 'en', 4577), +(8467, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1619-23', 'Motley, John Lothrop', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/4897', 'en', 4328), +(8468, 'The Light Invisible', 'Benson, Robert Hugh', '2018-12-08', 24, 'https://www.gutenberg.org/ebooks/58433', 'en', 114), +(8469, '1914, and Other Poems', 'Brooke, Rupert', '2010-10-29', 60, 'https://www.gutenberg.org/ebooks/33902', 'en', 1594), +(8470, 'Belles and Ringers', 'Smart, Hawley', '2007-02-06', 12, 'https://www.gutenberg.org/ebooks/20529', 'en', 1902), +(8471, 'The Tragic Bride', 'Young, Francis Brett', '2008-06-21', 15, 'https://www.gutenberg.org/ebooks/25867', 'en', 434), +(8472, 'The Whirlpool', 'Gissing, George', '2003-07-01', 21, 'https://www.gutenberg.org/ebooks/4299', 'en', 137), +(8473, 'Viettelijän päiväkirja', 'Kierkegaard, Søren', '2016-05-19', 65, 'https://www.gutenberg.org/ebooks/52109', 'fi', 4578), +(8474, 'Something Will Turn Up', 'Mason, David', '2008-01-07', 29, 'https://www.gutenberg.org/ebooks/24189', 'en', 580), +(8475, 'Punch, or the London Charivari, Vol. 108, May 25, 1895', 'Various', '2014-02-09', 2, 'https://www.gutenberg.org/ebooks/44850', 'en', 134), +(8476, 'The Boy Allies in the Baltic; Or, Through Fields of Ice to Aid the Czar', 'Hayes, Clair W. (Clair Wallace)', '2014-06-15', 12, 'https://www.gutenberg.org/ebooks/45982', 'en', 4579), +(8477, 'Het Leven der Dieren: Deel 2, Hoofdstuk 10: De Stootvogels', 'Brehm, Alfred Edmund', '2012-04-09', 14, 'https://www.gutenberg.org/ebooks/39404', 'nl', 2360), +(8478, 'Mr. Blake\'s Walking-Stick: A Christmas Story for Boys and Girls', 'Eggleston, Edward', '2016-08-30', 10, 'https://www.gutenberg.org/ebooks/52935', 'en', 153), +(8479, 'Punch, or the London Charivari, Vol. 159, 1920-09-08', 'Various', '2005-10-14', 7, 'https://www.gutenberg.org/ebooks/16877', 'en', 134), +(8480, 'Ιλιάδος Ραψωδία Α: Μεταφρασθείσα εις δημοτικούς στίχους', 'Homer', '2010-03-16', 70, 'https://www.gutenberg.org/ebooks/31669', 'el', 4266), +(8481, 'Actes et Paroles, Volume 3', 'Hugo, Victor', '2005-07-01', 19, 'https://www.gutenberg.org/ebooks/8454', 'fr', 920), +(8482, 'Œuvres complètes de Gustave Flaubert, tome 3: L\'éducation sentimentale, v. 1', 'Flaubert, Gustave', '2015-08-24', 37, 'https://www.gutenberg.org/ebooks/49773', 'fr', 1351), +(8483, 'A Candid Examination of Theism', 'Romanes, George John', '2006-08-07', 19, 'https://www.gutenberg.org/ebooks/19003', 'en', 2903), +(8484, 'Dr. Scudder\'s Tales for Little Readers, About the Heathen.', 'Scudder, John', '2004-09-27', 52, 'https://www.gutenberg.org/ebooks/13539', 'en', 4580), +(8485, 'Our Little Canadian Cousin', 'MacDonald, Elizabeth Roberts', '2013-07-19', 15, 'https://www.gutenberg.org/ebooks/43249', 'en', 4581), +(8486, 'Personal Poems, Complete\r\nVolume IV of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 13, 'https://www.gutenberg.org/ebooks/9586', 'en', 350), +(8487, 'Memoirs of the Courts of Louis XV and XVI. — Volume 5\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Lamballe, Marie Thérèse Louise de Savoie-Carignan, princesse de', '2004-12-03', 11, 'https://www.gutenberg.org/ebooks/3880', 'en', 27), +(8488, 'The Cruise of the Shining Light', 'Duncan, Norman', '2009-08-15', 10, 'https://www.gutenberg.org/ebooks/29696', 'en', 264), +(8489, 'Gulliver\'s Travels into Several Remote Nations of the World', 'Swift, Jonathan', '1997-02-01', 2217, 'https://www.gutenberg.org/ebooks/829', 'en', 4108), +(8490, 'Ballads of Robin Hood and other Outlaws\nPopular Ballads of the Olden Times - Fourth Series', 'Sidgwick, Frank', '2009-05-10', 53, 'https://www.gutenberg.org/ebooks/28744', 'en', 4582), +(8491, 'Golden Days for Boys and Girls, Vol. XII, Jan. 3, 1891', 'Various', '2005-12-02', 29, 'https://www.gutenberg.org/ebooks/17199', 'en', 563), +(8492, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 02: a Cleric in Naples', 'Casanova, Giacomo', '2004-12-10', 21, 'https://www.gutenberg.org/ebooks/2952', 'en', 4164), +(8493, 'Royal Highness', 'Mann, Thomas', '2011-05-03', 74, 'https://www.gutenberg.org/ebooks/36028', 'en', 4583), +(8494, 'Report of the Several Works Connected with the Draining, Paving & Lighting the Parish of Saint Mary Abbotts, Kensington, 1856', 'Broadbridge, James', '2013-01-29', 10, 'https://www.gutenberg.org/ebooks/41946', 'en', 4584), +(8495, 'Die Hohkönigsburg: Eine Fehdegeschichte aus dem Wasgau', 'Wolff, Julius', '2019-04-01', 4, 'https://www.gutenberg.org/ebooks/59185', 'de', 98), +(8496, 'Modern Magic: A Practical Treatise on the Art of Conjuring', 'Hoffmann, Professor', '2018-10-08', 68, 'https://www.gutenberg.org/ebooks/58057', 'en', 3590), +(8497, 'Five Years of Theosophy', NULL, '2004-12-18', 30, 'https://www.gutenberg.org/ebooks/14378', 'en', 746), +(8498, 'Neither Dorking nor the Abbey', 'Barrie, J. M. (James Matthew)', '2012-09-29', 18, 'https://www.gutenberg.org/ebooks/40894', 'en', 4585), +(8499, 'Twenty-four Discourses\r\nOn Some of the Important and Interesting Truths, Duties, and Institutions, of the Gospel, and the General Excellency of the Christian Religion; Calculated for the People of God of Every Communion, Particularly for the Benefit of Pious Families, and the Instruction of All in the Things Which Concern Their Salvation', 'Perkins, Nathan', '2018-09-01', 10, 'https://www.gutenberg.org/ebooks/57823', 'en', 4586), +(8500, 'Narrative of the Operations of a Detachment in an Expedition to Candy, in the Island of Ceylon, in the Year 1804\nWith Some Observations on the Previous Campaign, and on the Nature of Candian Warfare, etc., etc., etc.', 'Johnston, Arthur', '2013-12-11', 5, 'https://www.gutenberg.org/ebooks/44408', 'en', 4587), +(8501, 'Le livre de la pitié et de la mort', 'Loti, Pierre', '2011-07-23', 17, 'https://www.gutenberg.org/ebooks/36814', 'fr', 4588), +(8502, 'Wild Oats; or, The Strolling Gentlemen', 'O\'Keeffe, John', '2012-03-06', 20, 'https://www.gutenberg.org/ebooks/39060', 'en', 907), +(8503, 'Just So Stories', 'Kipling, Rudyard', '2010-05-23', 390, 'https://www.gutenberg.org/ebooks/32488', 'en', 4589), +(8504, 'Fables de La Fontaine, livre premier', 'La Fontaine, Jean de', '2007-04-04', 16, 'https://www.gutenberg.org/ebooks/20971', 'fr', 4590), +(8505, 'The Cult of Incompetence', 'Faguet, Émile', '2008-11-30', 24, 'https://www.gutenberg.org/ebooks/27368', 'en', 4591), +(8506, 'Romeo und Julia', 'Shakespeare, William', '2004-11-01', 73, 'https://www.gutenberg.org/ebooks/6996', 'de', 4592), +(8507, 'The Bride of Lammermoor', 'Scott, Walter', '2006-01-16', 215, 'https://www.gutenberg.org/ebooks/471', 'en', 98), +(8508, 'The Bible, King James version, Book 30: Amos', 'Anonymous', '2005-04-01', 25, 'https://www.gutenberg.org/ebooks/8030', 'en', 4593), +(8509, '\"Great-Heart\": The Life Story of Theodore Roosevelt', 'Henderson, Daniel', '2015-06-29', 35, 'https://www.gutenberg.org/ebooks/49317', 'en', 4594), +(8510, 'Three Dramas', 'Bjørnson, Bjørnstjerne', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/7844', 'en', 4595), +(8511, 'Little Wizard Stories of Oz', 'Baum, L. Frank (Lyman Frank)', '2006-10-05', 7, 'https://www.gutenberg.org/ebooks/19467', 'en', 174), +(8512, 'The Red Bicycle', 'Hume, Fergus', '2017-10-13', 11, 'https://www.gutenberg.org/ebooks/55748', 'en', 1425), +(8513, 'Punch, or the London Charivari, Volume 101, September 19, 1891', 'Various', '2004-11-05', 9, 'https://www.gutenberg.org/ebooks/13961', 'en', 134), +(8514, 'A Tramp\'s Wallet\nstored by an English goldsmith during his wanderings in Germany and France', 'Duthie, William', '2009-03-13', 19, 'https://www.gutenberg.org/ebooks/28320', 'en', 1117), +(8515, 'Kanteletar: Suomen kansan wanhoja lauluja ja wirsiä', NULL, '2004-12-01', 73, 'https://www.gutenberg.org/ebooks/7078', 'fi', 4596), +(8516, 'The Awakening', 'Sharkey, Jack', '2016-01-03', 32, 'https://www.gutenberg.org/ebooks/50834', 'en', 179), +(8517, 'Birds and Nature, Vol. 12 No. 3 [August 1902]\nIllustrated by Color Photography', 'Various', '2015-01-05', 24, 'https://www.gutenberg.org/ebooks/47883', 'en', 490), +(8518, 'Life of St. Francis of Assisi', 'Sabatier, Paul', '2006-07-08', 44, 'https://www.gutenberg.org/ebooks/18787', 'en', 4597), +(8519, 'The Death of the Lion', 'James, Henry', '1996-09-01', 173, 'https://www.gutenberg.org/ebooks/643', 'en', 4598), +(8520, 'Kitchener\'s Mob: Adventures of an American in the British Army', 'Hall, James Norman', '2006-10-29', 51, 'https://www.gutenberg.org/ebooks/19655', 'en', 449), +(8521, 'The Adventures of Bobby Coon', 'Burgess, Thornton W. (Thornton Waldo)', '2014-09-24', 22, 'https://www.gutenberg.org/ebooks/46951', 'en', 4599), +(8522, 'A Son of Hagar: A Romance of Our Time', 'Caine, Hall, Sir', '2008-07-19', 23, 'https://www.gutenberg.org/ebooks/26088', 'en', 1079), +(8523, 'Sermons on National Subjects', 'Kingsley, Charles', '2005-06-01', 49, 'https://www.gutenberg.org/ebooks/8202', 'en', 2386), +(8524, 'Stories from Dickens', 'Dickens, Charles', '2015-06-03', 27, 'https://www.gutenberg.org/ebooks/49125', 'en', 4600), +(8525, 'Alonzo and Melissa; Or, The Unfeeling Father: An American Tale', 'Jackson, Daniel', '2009-02-18', 10, 'https://www.gutenberg.org/ebooks/28112', 'en', 428), +(8526, 'The Kacháris', 'Endle, Sidney', '2015-09-19', 21, 'https://www.gutenberg.org/ebooks/50008', 'en', 4601), +(8527, 'The Dop Doctor', 'Dehan, Richard', '2009-02-02', 26, 'https://www.gutenberg.org/ebooks/27966', 'en', 1563), +(8528, 'The Lives of the Twelve Caesars, Volume 13: Grammarians and Rhetoricians', 'Suetonius', '2004-12-13', 34, 'https://www.gutenberg.org/ebooks/6398', 'en', 1037), +(8529, 'Der Schäfer: Eine Geschichte aus der Stille', 'Mann, Franziska', '2010-03-28', 16, 'https://www.gutenberg.org/ebooks/31803', 'de', 61), +(8530, 'Contributions to the Theory of Natural Selection\nA Series of Essays', 'Wallace, Alfred Russel', '2007-08-29', 45, 'https://www.gutenberg.org/ebooks/22428', 'en', 4602), +(8531, 'Catalogue of S. W. Partridge & Co.\'s Popular Illustrated Books', 'S. W. Partridge & Co. (London, England)', '2015-09-09', 8, 'https://www.gutenberg.org/ebooks/49919', 'en', 4603), +(8532, 'Diderot and the Encyclopædists (Vol. 1 of 2)', 'Morley, John', '2005-02-18', 47, 'https://www.gutenberg.org/ebooks/15098', 'en', 4604), +(8533, 'La dernière nuit de Don Juan: poème dramatique en deux parties et un prologue', 'Rostand, Edmond', '2018-11-10', 11, 'https://www.gutenberg.org/ebooks/58265', 'fr', 3393), +(8534, 'Le droit de lire', 'Stallman, Richard', '1999-11-01', 23, 'https://www.gutenberg.org/ebooks/1981', 'fr', 4605), +(8535, 'Boys and Girls of Colonial Days', 'Bailey, Carolyn Sherwin', '2012-11-11', 38, 'https://www.gutenberg.org/ebooks/41348', 'en', 4606), +(8536, 'The Near East: Dalmatia, Greece and Constantinople', 'Hichens, Robert', '2012-03-24', 19, 'https://www.gutenberg.org/ebooks/39252', 'en', 4607), +(8537, 'The Willows', 'Blackwood, Algernon', '2004-03-01', 1205, 'https://www.gutenberg.org/ebooks/11438', 'en', 461), +(8538, 'The Two Tests: The Supernatural Claims of Christianity Tried by Two of Its Own Rules', 'Lisle, Lionel', '2011-12-22', 13, 'https://www.gutenberg.org/ebooks/38380', 'en', 4608), +(8539, 'Mob Rule in New Orleans\r\nRobert Charles and His Fight to Death, the Story of His Life, Burning Human Beings Alive, Other Lynching Statistics', 'Wells-Barnett, Ida B.', '2005-02-08', 119, 'https://www.gutenberg.org/ebooks/14976', 'en', 4609), +(8540, 'The Middle English Poem, Erthe Upon Erthe', NULL, '2010-09-20', 9, 'https://www.gutenberg.org/ebooks/33768', 'en', 4610), +(8541, 'The Delinquent (Vol. IV, No. 3, March 1914)', 'Various', '2018-04-03', 3, 'https://www.gutenberg.org/ebooks/56905', 'en', 4611), +(8542, 'The Letters of Horace Walpole, Earl of Orford — Volume 1', 'Walpole, Horace', '2003-11-01', 45, 'https://www.gutenberg.org/ebooks/4609', 'en', 1785), +(8543, 'Degeneration: A Chapter in Darwinism', 'Lankester, E. Ray (Edwin Ray), Sir', '2019-03-31', 13, 'https://www.gutenberg.org/ebooks/59171', 'en', 4612), +(8544, 'Miss Fairfax of Virginia: A Romance of Love and Adventure Under the Palmettos', 'Rathborne, St. George', '2016-07-18', 6, 'https://www.gutenberg.org/ebooks/52599', 'en', 48), +(8545, 'Ruins of Ancient Cities (Vol. 1 of 2)\r\nWith General and Particular Accounts of Their Rise, Fall, and Present Condition', 'Bucke, Charles', '2012-09-25', 10, 'https://www.gutenberg.org/ebooks/40860', 'en', 4613), +(8546, 'Jääkärin muistelmia', 'Kara, Jalmari', '2017-12-06', 6, 'https://www.gutenberg.org/ebooks/56139', 'fi', 4614), +(8547, 'Joyce\'s Investments: A Story for Girls', 'Newberry, Fannie E. (Fannie Ellsworth)', '2007-06-18', 21, 'https://www.gutenberg.org/ebooks/21857', 'en', 62), +(8548, 'Two Boy Gold Miners; Or, Lost in the Mountains', 'Webster, Frank V.', '2012-03-10', 30, 'https://www.gutenberg.org/ebooks/39094', 'en', 315), +(8549, 'Mr. Punch on the Warpath: Humours of the Army, the Navy and the Reserve Forces', NULL, '2011-11-26', 23, 'https://www.gutenberg.org/ebooks/38146', 'en', 2965), +(8550, 'The Banner Boy Scouts on a Tour; or, The Mystery of Rattlesnake Mountain', 'Warren, George A.', '2007-04-04', 31, 'https://www.gutenberg.org/ebooks/20985', 'en', 557), +(8551, 'Le disilluse', 'Bracco, Roberto', '2011-11-05', 10, 'https://www.gutenberg.org/ebooks/37932', 'it', 407), +(8552, 'The Story of Rouen', 'Cook, Theodore Andrea', '2008-02-04', 25, 'https://www.gutenberg.org/ebooks/24519', 'en', 4615), +(8553, 'Voyage of the Liberdade', 'Slocum, Joshua', '2006-06-09', 39, 'https://www.gutenberg.org/ebooks/18541', 'en', 885), +(8554, 'The Road to Oz', 'Baum, L. Frank (Lyman Frank)', '1996-04-01', 317, 'https://www.gutenberg.org/ebooks/485', 'en', 4616), +(8555, 'Military Reminiscences of the Civil War, Volume 2: November 1863-June 1865', 'Cox, Jacob D. (Jacob Dolson)', '2004-11-01', 27, 'https://www.gutenberg.org/ebooks/6962', 'en', 444), +(8556, 'Het Duitsche Witboek: Documenten aangaande het uitbreken van den oorlog', 'Germany. Auswärtiges Amt', '2015-02-10', 10, 'https://www.gutenberg.org/ebooks/48231', 'nl', 2573), +(8557, 'The Head Voice and Other Problems: Practical Talks on Singing', 'Clippinger, D. A. (David Alva)', '2006-10-07', 53, 'https://www.gutenberg.org/ebooks/19493', 'en', 1290), +(8558, 'The Woodcraft Girls at Camp', 'Roy, Lillian Elizabeth', '2014-11-03', 19, 'https://www.gutenberg.org/ebooks/47279', 'en', 2096), +(8559, 'Punch, or the London Charivari, Volume 101, October 3, 1891', 'Various', '2004-11-09', 17, 'https://www.gutenberg.org/ebooks/13995', 'en', 134), +(8560, 'Le renard', 'Goethe, Johann Wolfgang von', '2006-01-13', 41, 'https://www.gutenberg.org/ebooks/17509', 'fr', 1999), +(8561, 'Happy Ending', 'Brown, Fredric', '2009-06-22', 99, 'https://www.gutenberg.org/ebooks/29206', 'en', 26), +(8562, 'Havelok the Dane\nA Legend of Old Grimsby and Lincoln', 'Whistler, Charles W. (Charles Watts)', '2004-07-07', 35, 'https://www.gutenberg.org/ebooks/12847', 'en', 4617), +(8563, 'Voyages from Montreal Through the Continent of North America to the Frozen and Pacific Oceans in 1789 and 1793. Vol. II', 'Mackenzie, Alexander', '2011-03-22', 19, 'https://www.gutenberg.org/ebooks/35659', 'en', 4618), +(8564, 'A road-book to old Chelsea', 'Stuart, G. B. (Grace Benedicta)', '2015-01-17', 13, 'https://www.gutenberg.org/ebooks/48003', 'en', 4619), +(8565, 'Roden\'s Corner', 'Merriman, Henry Seton', '2005-11-01', 18, 'https://www.gutenberg.org/ebooks/9324', 'en', 137), +(8566, 'The Calvinistic Doctrine of Predestination Examined and Refuted', 'Hodgson, F. (Francis)', '2009-09-28', 13, 'https://www.gutenberg.org/ebooks/30119', 'en', 4620), +(8567, 'Kurjat II: Cosette', 'Hugo, Victor', '2015-01-05', 15, 'https://www.gutenberg.org/ebooks/47877', 'fi', 2986), +(8568, 'La San-Felice, Tome 05', 'Dumas, Alexandre', '2006-07-06', 8, 'https://www.gutenberg.org/ebooks/18773', 'fr', 4110), +(8569, 'Bart Ridgeley\nA Story of Northern Ohio', 'Riddle, A. G. (Albert Gallatin)', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/12249', 'en', 4621), +(8570, 'The Boss, and How He Came to Rule New York', 'Lewis, Alfred Henry', '2016-05-01', 7, 'https://www.gutenberg.org/ebooks/51912', 'en', 4347), +(8571, 'A July Holiday in Saxony, Bohemia, and Silesia', 'White, Walter', '2013-04-15', 23, 'https://www.gutenberg.org/ebooks/42539', 'en', 4622), +(8572, 'The Man Who Wins', 'Herrick, Robert', '2009-08-26', 11, 'https://www.gutenberg.org/ebooks/29808', 'en', 61), +(8573, 'The Wilderness Trail', 'Sullivan, Francis William', '2010-01-11', 17, 'https://www.gutenberg.org/ebooks/30925', 'en', 65), +(8574, 'Descobrimentos dos Portuguezes nos Seculos XV e XVI', 'Sori, A. F. Marx de', '2009-02-04', 16, 'https://www.gutenberg.org/ebooks/27992', 'pt', 4623), +(8575, 'Sketch of the History of the Knights Templars\nSecond Edition', 'Burnes, James', '2014-07-05', 29, 'https://www.gutenberg.org/ebooks/46199', 'en', 4624), +(8576, 'Tin Foil and Its Combinations for Filling Teeth', 'Ambler, Henry Lovejoy', '2008-10-08', 25, 'https://www.gutenberg.org/ebooks/26840', 'en', 4625), +(8577, 'Harper\'s Young People, July 13, 1880\nAn Illustrated Weekly', 'Various', '2009-06-04', 4, 'https://www.gutenberg.org/ebooks/29034', 'en', 479), +(8578, 'The Black Cross', 'Briggs, Olive M. (Olive Mary)', '2007-04-30', 9, 'https://www.gutenberg.org/ebooks/21259', 'en', 1432), +(8579, 'The S.S. Glory', 'Niven, Frederick', '2019-04-24', 25, 'https://www.gutenberg.org/ebooks/59343', 'en', 332), +(8580, 'The Legacy of Cain', 'Collins, Wilkie', '1999-11-01', 78, 'https://www.gutenberg.org/ebooks/1975', 'en', 55), +(8581, 'Prinssi ja kaunis näyttelijätär: Salapoliisikertomus', 'Elvestad, Sven', '2018-11-17', 2, 'https://www.gutenberg.org/ebooks/58291', 'fi', 4285), +(8582, 'Philosophical Letters: or, modest Reflections upon some Opinions in Natural Philosophy', 'Newcastle, Margaret Cavendish, Duchess of', '2016-12-06', 19, 'https://www.gutenberg.org/ebooks/53679', 'en', 779), +(8583, 'Iphigenia in Tauris', 'Goethe, Johann Wolfgang von', '2005-05-18', 64, 'https://www.gutenberg.org/ebooks/15850', 'en', 4626), +(8584, 'From London to Land\'s End\r\nand Two Letters from the \"Journey through England by a Gentleman\"', 'Defoe, Daniel', '1997-12-01', 53, 'https://www.gutenberg.org/ebooks/1149', 'en', 4627), +(8585, 'Panukala sa Pagkakana nang Repúblika nang Pilipinas', 'Mabini, Apolinario', '2005-02-08', 25, 'https://www.gutenberg.org/ebooks/14982', 'tl', 4628), +(8586, 'Abraham Lincoln: Was He a Christian?', 'Remsburg, John E. (John Eleazer)', '2011-12-22', 26, 'https://www.gutenberg.org/ebooks/38374', 'en', 1057), +(8587, 'The Black Star: A Detective Story', 'McCulley, Johnston', '2011-04-12', 43, 'https://www.gutenberg.org/ebooks/35833', 'en', 61), +(8588, 'L\'âne mort', 'Janin, Jules Gabriel', '2008-08-24', 16, 'https://www.gutenberg.org/ebooks/26418', 'fr', 298), +(8589, 'Le Capitaine Aréna — Tome 2', 'Dumas, Alexandre', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8692', 'fr', 4629), +(8590, 'The Dragon Painter', 'Fenollosa, Mary McNeil', '2007-10-04', 36, 'https://www.gutenberg.org/ebooks/22884', 'en', 4630), +(8591, 'Boys of Oakdale Academy', 'Scott, Morgan', '2015-03-12', 17, 'https://www.gutenberg.org/ebooks/48467', 'en', 2154), +(8592, 'Anti-Slavery Opinions before the Year 1800\nRead before the Cincinnati Literary Club, November 16, 1872', 'Poole, William Frederick', '2007-12-21', 19, 'https://www.gutenberg.org/ebooks/23956', 'en', 1174), +(8593, 'Tom Tiddler\'s Ground', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9740', 'en', 401), +(8594, 'The Life and Times of Cleopatra, Queen of Egypt\nA Study in the Origin of the Roman Empire', 'Weigall, Arthur E. P. Brome (Arthur Edward Pearse Brome)', '2017-01-22', 37, 'https://www.gutenberg.org/ebooks/54038', 'en', 4631), +(8595, 'David Ramms arv', 'Andersson, Dan', '2006-05-05', 10, 'https://www.gutenberg.org/ebooks/18317', 'sv', 61), +(8596, 'The Prodigal Returns', 'Staveley, Lilian', '2009-07-18', 27, 'https://www.gutenberg.org/ebooks/29450', 'en', 4632), +(8597, 'The House With Sixty Closets: A Christmas Story for Young Folks and Old Children', 'Child, Frank Samuel', '2013-06-16', 22, 'https://www.gutenberg.org/ebooks/42961', 'en', 195), +(8598, 'De economische toestand der vrouw\r\nEen studie over de economische verhouding tusschen mannen en vrouwen als een factor in de sociale evolutie', 'Gilman, Charlotte Perkins', '2009-04-20', 16, 'https://www.gutenberg.org/ebooks/28582', 'nl', 4633), +(8599, 'The Raft', 'Dawson, Coningsby', '2015-11-19', 14, 'https://www.gutenberg.org/ebooks/50498', 'en', 675), +(8600, 'The unwritten history of old St. Augustine', NULL, '2017-05-28', 9, 'https://www.gutenberg.org/ebooks/54804', 'en', 4634), +(8601, 'China', 'Boulger, Demetrius Charles', '2004-10-01', 14, 'https://www.gutenberg.org/ebooks/6708', 'en', 4635), +(8602, 'Three Frenchmen in Bengal\nThe Commercial Ruin of the French Settlements in 1757', 'Hill, Samuel Charles', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/10946', 'en', 4636), +(8603, 'Atlantic Classics', NULL, '2011-10-14', 63, 'https://www.gutenberg.org/ebooks/37758', 'en', 4637), +(8604, 'Three Lives\nStories of The Good Anna, Melanctha and The Gentle Lena', 'Stein, Gertrude', '2005-03-18', 159, 'https://www.gutenberg.org/ebooks/15408', 'en', 4638), +(8605, 'An Old City Company: A Sketch of the History and Conditions of the Skinners\' Company of London', 'Sebastian, Lewis Boyd', '2019-06-11', 13, 'https://www.gutenberg.org/ebooks/59727', 'en', 4639), +(8606, 'Wilhelm Tell: Viisinäytöksinen näytelmä', 'Schiller, Friedrich', '2014-04-14', 5, 'https://www.gutenberg.org/ebooks/45378', 'fi', 4640), +(8607, 'The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose \r\nVana Parva, Part 1', NULL, '2004-04-01', 55, 'https://www.gutenberg.org/ebooks/11894', 'en', 1804), +(8608, 'Istar of Babylon: A Phantasy', 'Potter, Margaret Horton', '2012-01-29', 14, 'https://www.gutenberg.org/ebooks/38710', 'en', 580), +(8609, 'History of the United Netherlands, 1590-92', 'Motley, John Lothrop', '2004-01-01', 17, 'https://www.gutenberg.org/ebooks/4863', 'en', 3372), +(8610, 'The Nursery, October 1873, Vol. XIV. No. 4', 'Various', '2008-03-29', 9, 'https://www.gutenberg.org/ebooks/24941', 'en', 4641), +(8611, 'La Radiologie et La Guerre', 'Curie, Marie', '2013-11-03', 18, 'https://www.gutenberg.org/ebooks/44098', 'fr', 4020), +(8612, 'Beatrice Leigh at College: A Story for Girls', 'Schwartz, Julia Augusta', '2008-06-24', 23, 'https://www.gutenberg.org/ebooks/25893', 'en', 4642), +(8613, 'Z', 'Fontenay, Charles L.', '2019-05-15', 83, 'https://www.gutenberg.org/ebooks/59515', 'en', 4643), +(8614, 'Het Leven der Dieren: Hoofdstuk 8: De Vinduikers; Hoofdstuk 9: de Stormvogels', 'Brehm, Alfred Edmund', '2010-06-15', 5, 'https://www.gutenberg.org/ebooks/32824', 'nl', 2360), +(8615, 'Het leven der bijen', 'Maeterlinck, Maurice', '2012-01-07', 7, 'https://www.gutenberg.org/ebooks/38522', 'nl', 4644), +(8616, 'The History of the Maritime Wars of the Turks. Chapters I. to IV.', 'Kâtip Çelebi', '2016-12-27', 15, 'https://www.gutenberg.org/ebooks/53813', 'en', 4645), +(8617, 'Plato and the Other Companions of Sokrates, 3rd ed. Volume 4', 'Grote, George', '2012-08-07', 21, 'https://www.gutenberg.org/ebooks/40438', 'en', 2286), +(8618, 'Go to Sea Once More', 'McGuinn, Roger', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/10348', 'en', 1059), +(8619, 'My Country', 'Marie, Queen, consort of Ferdinand I, King of Romania', '2014-06-15', 34, 'https://www.gutenberg.org/ebooks/45976', 'en', 4646), +(8620, 'Jaw Musculature of the Mourning and White-winged Doves', 'Merz, Robert L.', '2010-04-17', 4, 'https://www.gutenberg.org/ebooks/32018', 'en', 4647), +(8621, 'The Little Duke: Richard the Fearless', 'Yonge, Charlotte M. (Charlotte Mary)', '2002-01-01', 190, 'https://www.gutenberg.org/ebooks/3048', 'en', 4648), +(8622, 'Les amours jaunes', 'Corbière, Tristan', '2005-10-16', 52, 'https://www.gutenberg.org/ebooks/16883', 'fr', 701), +(8623, 'Love\'s Golden Thread', 'Kenyon, E. C. (Edith C.)', '2015-08-16', 7, 'https://www.gutenberg.org/ebooks/49787', 'en', 61), +(8624, 'The Audacious War', 'Barron, Clarence W. (Clarence Walker)', '2006-04-05', 22, 'https://www.gutenberg.org/ebooks/18125', 'en', 335), +(8625, 'Dave Dashaway, Air Champion; Or, Wizard Work in the Clouds', 'Rockwood, Roy', '2015-04-06', 15, 'https://www.gutenberg.org/ebooks/48655', 'en', 4649), +(8626, 'Religious Poems, Part 1.\r\nPart 5 From Volume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 6, 'https://www.gutenberg.org/ebooks/9572', 'en', 350), +(8627, 'La guerre et la paix, Tome III', 'Tolstoy, Leo, graf', '2006-03-08', 48, 'https://www.gutenberg.org/ebooks/17951', 'fr', 98), +(8628, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 15', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 3, 'https://www.gutenberg.org/ebooks/3874', 'en', 1870), +(8629, 'The Illustration of Books\r\nA Manual for the Use of Students, Notes for a Course of Lectures at the Slade School, University College', 'Pennell, Joseph', '2016-04-17', 38, 'https://www.gutenberg.org/ebooks/51778', 'en', 2020), +(8630, 'The Moon is Green', 'Leiber, Fritz', '2009-08-10', 43, 'https://www.gutenberg.org/ebooks/29662', 'en', 26), +(8631, 'Du style gothique au dix-neuvième siècle', 'Viollet-le-Duc, Eugène-Emmanuel', '2006-07-27', 26, 'https://www.gutenberg.org/ebooks/18919', 'fr', 1352), +(8632, 'A Rivermouth Romance', 'Aldrich, Thomas Bailey', '2007-11-06', 6, 'https://www.gutenberg.org/ebooks/23358', 'en', 770), +(8633, 'Memories of the Future\r\nBeing Memoirs of the Years 1915‒1972, Written in the Year of Grace 1988', 'Knox, Ronald Arbuthnott', '2019-04-29', 38, 'https://www.gutenberg.org/ebooks/59388', 'en', 4650), +(8634, 'Campaign for Petersburg', 'Lykes, Richard Wayne', '2016-08-09', 25, 'https://www.gutenberg.org/ebooks/52760', 'en', 4651), +(8635, 'Brave and True\nShort stories for children by G. M. Fenn and Others', 'Fenn, George Manville', '2007-05-04', 30, 'https://www.gutenberg.org/ebooks/21292', 'en', 859), +(8636, 'Gösta Berling', 'Lagerlöf, Selma', '2011-05-25', 22, 'https://www.gutenberg.org/ebooks/36225', 'nl', 4652), +(8637, 'Man and His Migrations', 'Latham, R. G. (Robert Gordon)', '2014-01-06', 15, 'https://www.gutenberg.org/ebooks/44605', 'en', 4653), +(8638, 'The Bride of the Nile — Volume 06', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5522', 'en', 803), +(8639, 'A Little Maid of Old Maine', 'Curtis, Alice Turner', '2007-01-11', 45, 'https://www.gutenberg.org/ebooks/20340', 'en', 4654), +(8640, 'Buffalo Roost\r\nA Story of a Young Men\'s Christian Association Boys\' Department', 'Cheley, Frank H. (Frank Howbert)', '2004-11-27', 9, 'https://www.gutenberg.org/ebooks/14175', 'en', 942), +(8641, 'Cold Ghost', 'Geier, Chester S.', '2010-06-04', 22, 'https://www.gutenberg.org/ebooks/32685', 'en', 179), +(8642, 'Rafaella', 'Pellico, Silvio', '2012-11-16', 23, 'https://www.gutenberg.org/ebooks/41377', 'it', 1544), +(8643, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 284, November 24, 1827', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11407', 'en', 133), +(8644, 'A History of Art for Beginners and Students: Painting, Sculpture, Architecture', 'Waters, Clara Erskine Clement', '2008-05-29', 28, 'https://www.gutenberg.org/ebooks/25632', 'en', 3322), +(8645, 'Doctor Quintard, Chaplain C.S.A. and Second Bishop of Tennessee\r\nBeing His Story of the War (1861-1865)', 'Quintard, C. T. (Charles Todd)', '2018-05-25', 8, 'https://www.gutenberg.org/ebooks/57212', 'en', 4655), +(8646, 'Elämän hawainnoita 08: Rauta=waimoja; Sokea; Kuihtunut wesa', 'Päivärinta, Pietari', '2005-02-07', 38, 'https://www.gutenberg.org/ebooks/14949', 'fi', 456), +(8647, 'The Elements of Botany, For Beginners and For Schools', 'Gray, Asa', '2010-09-18', 54, 'https://www.gutenberg.org/ebooks/33757', 'en', 4656), +(8648, 'Dope', 'Rohmer, Sax', '1998-01-01', 79, 'https://www.gutenberg.org/ebooks/1182', 'en', 128), +(8649, 'The History of Herodotus — Volume 1', 'Herodotus', '2001-07-01', 968, 'https://www.gutenberg.org/ebooks/2707', 'en', 1368), +(8650, 'Off Santiago with Sampson', 'Otis, James', '2013-08-08', 18, 'https://www.gutenberg.org/ebooks/43420', 'en', 195), +(8651, 'The Book of Tea', 'Okakura, Kakuzo', '2009-05-01', 53, 'https://www.gutenberg.org/ebooks/28911', 'en', 2245), +(8652, 'Fort Concho: Its Why and Wherefore', 'Gregory, James N. (James Noble)', '2017-04-07', 8, 'https://www.gutenberg.org/ebooks/54497', 'en', 4657), +(8653, 'The Vanity of Human Wishes (1749) and Two Rambler papers (1750)', 'Johnson, Samuel', '2004-09-02', 31, 'https://www.gutenberg.org/ebooks/13350', 'en', 20), +(8654, '西湖夢尋', 'Zhang, Dai', '2008-11-05', 20, 'https://www.gutenberg.org/ebooks/27165', 'zh', 4658), +(8655, 'The Right and Wrong Uses of the Bible', 'Newton, Richard Heber', '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/12282', 'en', 2248), +(8656, 'Le invasioni barbariche in Italia', 'Villari, Pasquale', '2017-09-14', 24, 'https://www.gutenberg.org/ebooks/55545', 'it', 4659), +(8657, 'Dal molino di Cerbaia a Cala Martina\nNotizie inedite sulla vita di Giuseppe Garibaldi', 'Guelfi, Guelfo', '2010-01-17', 8, 'https://www.gutenberg.org/ebooks/31000', 'it', 488), +(8658, 'Wyllard\'s Weird: A Novel', 'Braddon, M. E. (Mary Elizabeth)', '2015-09-22', 65, 'https://www.gutenberg.org/ebooks/50037', 'en', 1335), +(8659, 'The Awakening of the Soul', 'Ibn Tufayl, Muhammad ibn \'Abd al-Malik', '2010-12-06', 54, 'https://www.gutenberg.org/ebooks/34572', 'en', 4660), +(8660, 'Ins neue Land', 'Reuter, Gabriele', '2009-02-01', 9, 'https://www.gutenberg.org/ebooks/27959', 'de', 549), +(8661, 'Wagner at Home', 'Gautier, Judith', '2014-10-09', 29, 'https://www.gutenberg.org/ebooks/47080', 'en', 1464), +(8662, 'The Last Ditch', 'Comfort, Will Levington', '2014-06-30', 7, 'https://www.gutenberg.org/ebooks/46152', 'en', 4661), +(8663, 'Ezra Pound: His Metric and Poetry', 'Eliot, T. S. (Thomas Stearns)', '2005-01-01', 66, 'https://www.gutenberg.org/ebooks/7275', 'en', 4662), +(8664, 'The Etiquette of To-day', 'Ordway, Edith B. (Edith Bertha)', '2007-08-27', 33, 'https://www.gutenberg.org/ebooks/22417', 'en', 788), +(8665, 'Kulkuri: Kertomuksia', 'Gorky, Maksim', '2015-09-10', 15, 'https://www.gutenberg.org/ebooks/49926', 'fi', 147), +(8666, 'Literary Hearthstones of Dixie', 'Pickett, La Salle Corbell', '2005-08-30', 28, 'https://www.gutenberg.org/ebooks/16622', 'en', 4663), +(8667, 'Coralie\r\nEveryday Life Library No. 2', 'Brame, Charlotte M.', '2004-08-12', 17, 'https://www.gutenberg.org/ebooks/13162', 'en', 61), +(8668, 'The Landing of the Pilgrims', 'Carlton, Henry Fisk', '2008-11-29', 16, 'https://www.gutenberg.org/ebooks/27357', 'en', 4664), +(8669, 'Openings in the Old Trail', 'Harte, Bret', '2006-05-18', 27, 'https://www.gutenberg.org/ebooks/2535', 'en', 650), +(8670, 'Katydid\'s Poems', 'McKinney, Kate Slaughter', '2013-08-31', 2, 'https://www.gutenberg.org/ebooks/43612', 'en', 350), +(8671, 'The Belgian Front and Its Notable Features', 'Breton, Willy', '2015-07-03', 5, 'https://www.gutenberg.org/ebooks/49328', 'en', 3333), +(8672, 'History of Morgan\'s Cavalry', 'Duke, Basil Wilson', '2010-02-08', 28, 'https://www.gutenberg.org/ebooks/31232', 'en', 1489), +(8673, 'The Turn of the Screw', 'James, Henry', '2008-08-01', 38, 'https://www.gutenberg.org/ebooks/26285', 'en', 2811), +(8674, 'The Loyalists, Vol. 1-3\nAn Historical Novel', 'West, Mrs. (Jane)', '2006-10-04', 18, 'https://www.gutenberg.org/ebooks/19458', 'en', 4665), +(8675, 'Historical and descriptive narrative of twenty years\' residence in South America (Vol 2 of 3)\r\nContaining travels in Arauco, Chile, Peru, and Colombia; with an account of the revolution, its rise, progress, and results', 'Stevenson, William Bennet, active 1803-1825', '2017-10-19', 25, 'https://www.gutenberg.org/ebooks/55777', 'en', 4666), +(8676, 'Cumner\'s Son and Other South Sea Folk — Volume 01', 'Parker, Gilbert', '2004-07-01', 32, 'https://www.gutenberg.org/ebooks/6195', 'en', 108), +(8677, 'Wayside and Woodland Trees: A pocket guide to the British sylva', 'Step, Edward', '2010-12-23', 81, 'https://www.gutenberg.org/ebooks/34740', 'en', 4667), +(8678, 'The Mystical Element of Religion, as studied in Saint Catherine of Genoa and her friends, Volume 1 (of 2)', 'Hügel, Friedrich, Freiherr von', '2015-10-14', 17, 'https://www.gutenberg.org/ebooks/50205', 'en', 4668), +(8679, 'Notes and Queries, Number 67, February 8, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-09-16', 21, 'https://www.gutenberg.org/ebooks/22625', 'en', 105), +(8680, 'The Life-Story of Insects', 'Carpenter, George H. (George Herbert)', '2005-08-01', 42, 'https://www.gutenberg.org/ebooks/16410', 'en', 2152), +(8681, 'Weymouth New Testament in Modern Speech, Romans', 'Weymouth, Richard Francis', '2005-09-01', 11, 'https://www.gutenberg.org/ebooks/8833', 'en', 4669), +(8682, 'Punch, or the London Charivari, Volume 107, October 13, 1894', 'Various', '2014-07-22', 17, 'https://www.gutenberg.org/ebooks/46360', 'en', 134), +(8683, 'Back to Billabong', 'Bruce, Mary Grant', '2006-06-06', 22, 'https://www.gutenberg.org/ebooks/7047', 'en', 792), +(8684, 'The History of Company A, Second Illinois Cavalry', 'Fletcher, D. H.', '2011-03-27', 93, 'https://www.gutenberg.org/ebooks/35692', 'en', 4670), +(8685, 'Oscar Wilde, a Critical Study', 'Ransome, Arthur', '2011-05-02', 33, 'https://www.gutenberg.org/ebooks/36017', 'en', 4671), +(8686, 'Venna Hastings: Story of an Eastern Mormon Convert', 'Farr, Julia', '2016-07-11', 8, 'https://www.gutenberg.org/ebooks/52552', 'en', 1071), +(8687, 'Le juif errant - Tome I', 'Sue, Eugène', '2005-03-08', 22, 'https://www.gutenberg.org/ebooks/15295', 'fr', 98), +(8688, 'The Montessori Method\r\nScientific Pedagogy as Applied to Child Education in \'The Children\'s Houses\' with Additions and Revisions by the Author', 'Montessori, Maria', '2012-05-31', 540, 'https://www.gutenberg.org/ebooks/39863', 'en', 4672), +(8689, 'A History of the City of Brooklyn and Kings County, Volume I.', 'Ostrander, Stephen M.', '2013-02-03', 26, 'https://www.gutenberg.org/ebooks/41979', 'en', 4673), +(8690, 'The Flutter of the Goldleaf, and Other Plays', 'Dargan, Olive Tilford', '2006-12-23', 19, 'https://www.gutenberg.org/ebooks/20172', 'en', 427), +(8691, 'Wagner as Man & Artist', 'Newman, Ernest', '2018-10-10', 43, 'https://www.gutenberg.org/ebooks/58068', 'en', 4674), +(8692, 'Plays by August Strindberg, Second series', 'Strindberg, August', '2004-12-13', 69, 'https://www.gutenberg.org/ebooks/14347', 'en', 4675), +(8693, 'The Leardo Map of the World, 1452 or 1453\nIn the Collections of the American Geographical Society', 'Wright, John Kirtland', '2016-11-09', 96, 'https://www.gutenberg.org/ebooks/53480', 'en', 4676), +(8694, 'The War with Mexico, Volume 1 (of 2)', 'Smith, Justin Harvey', '2013-12-15', 42, 'https://www.gutenberg.org/ebooks/44437', 'en', 291), +(8695, 'A Dissertation on Horses\r\nWherein It is Demonstrated, by Matters of Fact, as Well as from the Principles of Philosophy, That Innate Qualities Do Not Exist, and That the Excellence of This Animal is Altogether Mechanical and Not in the Blood', 'Osmer, William', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/5710', 'en', 2777), +(8696, 'Green Tea; Mr. Justice Harbottle', 'Le Fanu, Joseph Sheridan', '2004-03-01', 70, 'https://www.gutenberg.org/ebooks/11635', 'en', 531), +(8697, 'Colleges in America', 'Barker, John Marshall', '2008-05-09', 16, 'https://www.gutenberg.org/ebooks/25400', 'en', 4677), +(8698, 'The Dreadnought Boys\' World Cruise', 'Goldfrap, John Henry', '2019-07-26', 890, 'https://www.gutenberg.org/ebooks/59986', 'en', 4678), +(8699, 'An account of the Death of Philip Jolin\nwho was executed for the murder of his father, in the Island of Jersey, October 3, 1829', 'Cunningham, Francis', '2012-10-22', 10, 'https://www.gutenberg.org/ebooks/41145', 'en', 4679), +(8700, 'The World as Will and Idea (Vol. 2 of 3)', 'Schopenhauer, Arthur', '2012-06-27', 254, 'https://www.gutenberg.org/ebooks/40097', 'en', 4680), +(8701, 'The Bachelors: A Novel', 'Orcutt, William Dana', '2010-08-28', 16, 'https://www.gutenberg.org/ebooks/33565', 'en', 61), +(8702, 'Graham\'s Magazine, Vol. XXXI, No. 1, July 1847', 'Various', '2019-02-09', 7, 'https://www.gutenberg.org/ebooks/58854', 'en', 380), +(8703, 'The Regulating Silver Coin, Made Practicable and Easie, to the Government and Subject', 'Pratt, Samuel', '2018-04-22', 6, 'https://www.gutenberg.org/ebooks/57020', 'en', 4681), +(8704, 'Numa Roumestan\nMoeurs Parisiennes', 'Daudet, Alphonse', '2005-10-10', 17, 'https://www.gutenberg.org/ebooks/16848', 'fr', 61), +(8705, 'Os factos', 'Cunha, J. G. de Barros e (João Gualberto de Barros)', '2010-03-15', 9, 'https://www.gutenberg.org/ebooks/31656', 'pt', 4682), +(8706, 'Original Short Stories — Volume 07', 'Maupassant, Guy de', '2004-10-03', 27, 'https://www.gutenberg.org/ebooks/3083', 'en', 1112), +(8707, 'The Vanishing of Tera', 'Hume, Fergus', '2017-08-09', 11, 'https://www.gutenberg.org/ebooks/55313', 'en', 95), +(8708, 'The Story of Patsy', 'Wiggin, Kate Douglas Smith', '2004-09-20', 15, 'https://www.gutenberg.org/ebooks/13506', 'en', 4424), +(8709, 'Through Siberia and Manchuria By Rail', 'Ready, Oliver George', '2009-01-07', 21, 'https://www.gutenberg.org/ebooks/27733', 'en', 4683), +(8710, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 4 - (C suite)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 19, 'https://www.gutenberg.org/ebooks/30784', 'fr', 1352), +(8711, 'The Works of Edgar Allan Poe — Volume 5', 'Poe, Edgar Allan', '2000-04-01', 493, 'https://www.gutenberg.org/ebooks/2151', 'en', 50), +(8712, 'Almacen de recetas escogidas y probadas\r\nó sea tratado de jarabes, aguas destiladas, licores por destilación, vinos por imitación y helados', 'Anonymous', '2013-07-21', 41, 'https://www.gutenberg.org/ebooks/43276', 'es', 4684), +(8713, 'The Ghost in the White House\r\nSome suggestions as to how a hundred million people (who are supposed in a vague, helpless way to haunt the white house) can make themselves felt with a president, how they can back him up, express themselves to him, be expressed by him, and get what they want', 'Lee, Gerald Stanley', '2007-08-04', 9, 'https://www.gutenberg.org/ebooks/22241', 'en', 1720), +(8714, 'The Definite Object: A Romance of New York', 'Farnol, Jeffery', '2005-06-15', 34, 'https://www.gutenberg.org/ebooks/16074', 'en', 1660), +(8715, 'No: Romanzo', 'Oriani, Alfredo', '2014-08-27', 14, 'https://www.gutenberg.org/ebooks/46704', 'it', 1544), +(8716, 'Mike', 'Wodehouse, P. G. (Pelham Grenville)', '2005-02-01', 195, 'https://www.gutenberg.org/ebooks/7423', 'en', 637), +(8717, 'London and the Kingdom - Volume 1\r\nA History Derived Mainly from the Archives at Guildhall in the Custody of the Corporation of the City of London.', 'Sharpe, Reginald R. (Reginald Robinson)', '2006-11-13', 12, 'https://www.gutenberg.org/ebooks/19800', 'en', 4685), +(8718, 'Democracy in America — Volume 2', 'Tocqueville, Alexis de', '2006-01-21', 349, 'https://www.gutenberg.org/ebooks/816', 'en', 4686), +(8719, 'Zen Culture', 'Hoover, Thomas', '2010-11-14', 62, 'https://www.gutenberg.org/ebooks/34324', 'en', 4687), +(8720, 'Dave Dawson at Singapore', 'Bowen, Robert Sidney', '2015-12-10', 19, 'https://www.gutenberg.org/ebooks/50661', 'en', 1004), +(8721, 'Japanische Märchen', NULL, '2007-11-07', 281, 'https://www.gutenberg.org/ebooks/23393', 'de', 1007), +(8722, 'Christmas: A Story', 'Gale, Zona', '2007-02-04', 29, 'https://www.gutenberg.org/ebooks/20516', 'en', 585), +(8723, 'How It Happened', 'Bosher, Kate Langley', '2005-01-17', 18, 'https://www.gutenberg.org/ebooks/14723', 'en', 585), +(8724, 'Sermons: Selected from the Papers of the Late Rev. Clement Bailhache', 'Bailhache, Clement', '2013-10-27', 11, 'https://www.gutenberg.org/ebooks/44053', 'en', 3021), +(8725, 'A Modern Chronicle — Volume 01', 'Churchill, Winston', '2004-10-19', 12, 'https://www.gutenberg.org/ebooks/5374', 'en', 828), +(8726, 'Summer Birds From the Yucatan Peninsula, Mexico', 'Klaas, Erwin E.', '2011-06-20', 10, 'https://www.gutenberg.org/ebooks/36473', 'en', 4688), +(8727, 'Heraldry for Craftsmen & Designers', 'Hope, W. H. St. John (William Henry St. John), Sir', '2014-03-20', 28, 'https://www.gutenberg.org/ebooks/45181', 'en', 4689), +(8728, 'The Radio Boys Trailing a Voice; Or, Solving a Wireless Mystery', 'Chapman, Allen', '2008-06-20', 10, 'https://www.gutenberg.org/ebooks/25858', 'en', 153), +(8729, 'Wanda, Vol. 2 (of 3)', 'Ouida', '2016-05-23', 8, 'https://www.gutenberg.org/ebooks/52136', 'en', 137), +(8730, 'The Shadow', 'Ovington, Mary White', '2010-07-06', 11, 'https://www.gutenberg.org/ebooks/33101', 'en', 1958), +(8731, 'Gypsy and Ginger', 'Farjeon, Eleanor', '2018-07-05', 26, 'https://www.gutenberg.org/ebooks/57444', 'en', 705), +(8732, 'The Maternal Management of Children, in Health and Disease', 'Bull, Thomas', '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/10383', 'en', 4690), +(8733, 'Famous Reviews, Selected and Edited with Introductory Notes by R. Brimley Johnson', NULL, '2004-02-01', 74, 'https://www.gutenberg.org/ebooks/11251', 'en', 4691), +(8734, 'The Gilded Man (El Dorado) and other pictures of the Spanish occupancy of America', 'Bandelier, Adolph Francis Alphonse', '2018-02-18', 14, 'https://www.gutenberg.org/ebooks/56596', 'en', 962), +(8735, 'The New England Magazine Volume 1, No. 6, June, 1886, Bay State Monthly Volume 4, No. 6, June, 1886', 'Various', '2008-04-13', 12, 'https://www.gutenberg.org/ebooks/25064', 'en', 1593), +(8736, 'South Africa and the Boer-British War, Volume I\r\nComprising a History of South Africa and its people, including the war of 1899 and 1900', 'Hopkins, J. Castell (John Castell)', '2012-12-01', 19, 'https://www.gutenberg.org/ebooks/41521', 'en', 1956), +(8737, 'History of the Pirates Who Infested the China Sea From 1807 to 1810', 'Yüan, Yung-lun', '2013-11-23', 21, 'https://www.gutenberg.org/ebooks/44261', 'en', 4692), +(8738, 'The Fighting Governor : A Chronicle of Frontenac', 'Colby, Charles W. (Charles William)', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/5146', 'en', 2498), +(8739, 'The Story of Florence', 'Gardner, Edmund G.', '2011-10-18', 31, 'https://www.gutenberg.org/ebooks/37793', 'en', 4693), +(8740, 'The Man With The Broken Ear', 'About, Edmond', '2007-03-02', 36, 'https://www.gutenberg.org/ebooks/20724', 'en', 26), +(8741, 'Ireland Under Coercion: The Diary of an American (2 of 2)\r\n(2nd ed.) (1888)', 'Hurlbert, William Henry', '2004-12-29', 29, 'https://www.gutenberg.org/ebooks/14511', 'en', 117), +(8742, 'Wonderful Escapes', 'Bernard, Frédéric', '2016-06-11', 28, 'https://www.gutenberg.org/ebooks/52304', 'en', 323), +(8743, 'The Chinese Classics — Volume 1: Confucian Analects', 'Legge, James', '2003-05-01', 109, 'https://www.gutenberg.org/ebooks/4094', 'zh', 4497), +(8744, 'Women Novelists of Queen Victoria\'s Reign: A Book of Appreciations', 'Alexander, Mrs.', '2011-07-06', 59, 'https://www.gutenberg.org/ebooks/36641', 'en', 4694), +(8745, '365 Luncheon Dishes: A Luncheon Dish for Every Day in the Year', 'Anonymous', '2008-01-21', 138, 'https://www.gutenberg.org/ebooks/24384', 'en', 1369), +(8746, 'Index of the Project Gutenberg Works of Samuel Hopkins Adams', 'Adams, Samuel Hopkins', '2018-08-12', 13, 'https://www.gutenberg.org/ebooks/57676', 'en', 198), +(8747, 'The Statute of Anne', 'Great Britain. Parliament', '2010-08-08', 13, 'https://www.gutenberg.org/ebooks/33333', 'en', 4695), +(8748, 'Pirates: A comedy in one act', 'Clements, Colin', '2012-05-04', 9, 'https://www.gutenberg.org/ebooks/39609', 'en', 907), +(8749, 'Quips and Quiddities: A Quintessence of Quirks, Quaint, Quizzical, and Quotable', NULL, '2012-12-27', 31, 'https://www.gutenberg.org/ebooks/41713', 'en', 4696), +(8750, 'A Man of Mark', 'Hope, Anthony', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11063', 'en', 109), +(8751, 'Traditions of Lancashire, Volume 2', 'Roby, John', '2008-04-30', 63, 'https://www.gutenberg.org/ebooks/25256', 'en', 4697), +(8752, 'The Athelings; or, the Three Gifts. Vol. 3/3', 'Oliphant, Mrs. (Margaret)', '2017-07-15', 9, 'https://www.gutenberg.org/ebooks/55121', 'en', 376), +(8753, 'Shadows in Zamboula', 'Howard, Robert E. (Robert Ervin)', '2013-02-25', 154, 'https://www.gutenberg.org/ebooks/42196', 'en', 4698), +(8754, 'La de Bringas', 'Pérez Galdós, Benito', '2010-03-01', 51, 'https://www.gutenberg.org/ebooks/31464', 'es', 1696), +(8755, 'Sabbath in Puritan New England', 'Earle, Alice Morse', '2005-08-01', 41, 'https://www.gutenberg.org/ebooks/8659', 'en', 4699), +(8756, 'Incognita; Or, Love and Duty Reconcil\'d', 'Congreve, William', '2000-10-01', 29, 'https://www.gutenberg.org/ebooks/2363', 'en', 4700), +(8757, 'George Eliot\'s Life, as Related in Her Letters and Journals. Vol. 2 (of 3)', 'Eliot, George', '2013-06-29', 32, 'https://www.gutenberg.org/ebooks/43044', 'en', 4701), +(8758, 'C. Iuli Caesaris De Bello Gallico', 'Caesar, Julius', '2008-07-03', 323, 'https://www.gutenberg.org/ebooks/218', 'la', 970), +(8759, 'Jim Harrison, boxeur', 'Doyle, Arthur Conan', '2004-10-13', 27, 'https://www.gutenberg.org/ebooks/13734', 'fr', 4702), +(8760, 'McClure\'s Magazine, Vol. XXXI, No. 3, July 1908.', 'Various', '2008-12-12', 10, 'https://www.gutenberg.org/ebooks/27501', 'en', 883), +(8761, 'The Gospel: An Exposition of its First Principles\nRevised and Enlarged Edition', 'Roberts, B. H. (Brigham Henry)', '2014-08-09', 19, 'https://www.gutenberg.org/ebooks/46536', 'en', 310), +(8762, 'Eugene Aram — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7611', 'en', 4703), +(8763, 'The Repairman', 'Harrison, Harry', '2007-07-14', 111, 'https://www.gutenberg.org/ebooks/22073', 'en', 26), +(8764, 'The Way of the Air: A Description of Modern Aviation', 'Middleton, Edgar Charles', '2016-03-28', 10, 'https://www.gutenberg.org/ebooks/51581', 'en', 4704), +(8765, 'A Very Pleasaunt & Fruitful Diologe Called the Epicure', 'Erasmus, Desiderius', '2005-07-08', 29, 'https://www.gutenberg.org/ebooks/16246', 'en', 4705), +(8766, 'The Mantooth', 'Leadem, Christopher', '2005-12-26', 24, 'https://www.gutenberg.org/ebooks/17394', 'en', 2203), +(8767, 'The Pest', 'Shore, W. Teignmouth (William Teignmouth)', '2015-11-14', 11, 'https://www.gutenberg.org/ebooks/50453', 'en', 109), +(8768, 'A Treatise on Foreign Teas\r\nAbstracted From An Ingenious Work, Lately Published, Entitled An Essay On the Nerves', 'Smith, Hugh', '2009-04-10', 10, 'https://www.gutenberg.org/ebooks/28549', 'en', 4706), +(8769, 'The Grim House', 'Molesworth, Mrs.', '2013-10-03', 17, 'https://www.gutenberg.org/ebooks/43878', 'en', 45), +(8770, 'Encyclopaedia Britannica, 11th Edition, \"Arculf\" to \"Armour, Philip\"\r\nVolume 2, Slice 5', 'Various', '2010-10-22', 31, 'https://www.gutenberg.org/ebooks/34116', 'en', 1081), +(8771, 'The New Hand-Book to Lowestoft and Its Environs', 'Anonymous', '2013-03-17', 6, 'https://www.gutenberg.org/ebooks/42350', 'en', 4707), +(8772, 'Original Short Stories — Volume 01', 'Maupassant, Guy de', '2004-10-03', 66, 'https://www.gutenberg.org/ebooks/3077', 'en', 1112), +(8773, 'Black Beaver, the Trapper', 'Lewis, James Campbell', '2008-08-14', 21, 'https://www.gutenberg.org/ebooks/26615', 'en', 1904), +(8774, 'The Three Additions to Daniel, a Study', 'Daubney, William Heaford', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12420', 'en', 4708), +(8775, 'The Office of Bailiff of a Liberty', 'Ritson, Joseph', '2017-02-26', 10, 'https://www.gutenberg.org/ebooks/54235', 'en', 4709), +(8776, 'The Living Animals of the World, Volume 1 (of 2)\nA Popular Natural History', NULL, '2019-07-28', 476, 'https://www.gutenberg.org/ebooks/60000', 'en', 2360), +(8777, 'The Right Time', 'Berryman, John', '2009-12-27', 68, 'https://www.gutenberg.org/ebooks/30770', 'en', 26), +(8778, 'Scientific American, Vol. XXXIX.—No. 6. [New Series.], August 10, 1878', 'Various', '2013-07-22', 29, 'https://www.gutenberg.org/ebooks/43282', 'en', 352), +(8779, 'Uncle Max', 'Carey, Rosa Nouchette', '2005-06-17', 17, 'https://www.gutenberg.org/ebooks/16080', 'en', 61), +(8780, 'Viitta: Kertomus', 'Gogol, Nikolai Vasilevich', '2016-04-13', 10, 'https://www.gutenberg.org/ebooks/51747', 'fi', 4710), +(8781, 'Matka-kuvaelmia Englannista', 'Funcke, Otto', '2011-02-07', 9, 'https://www.gutenberg.org/ebooks/35202', 'fi', 776), +(8782, 'Judith of Blue Lake Ranch', 'Gregory, Jackson', '2006-07-27', 20, 'https://www.gutenberg.org/ebooks/18926', 'en', 315), +(8783, 'Turandot, Prinzessin von China', 'Schiller, Friedrich', '2004-09-01', 53, 'https://www.gutenberg.org/ebooks/6505', 'de', 2199), +(8784, 'Naiskohtalo: Romaani', 'Salmela, Marja', '2014-12-10', 7, 'https://www.gutenberg.org/ebooks/47622', 'fi', 175), +(8785, 'A l\'ombre des jeunes filles en fleurs — Deuxième partie', 'Proust, Marcel', '2001-12-01', 67, 'https://www.gutenberg.org/ebooks/2999', 'fr', 1225), +(8786, 'Muistelmia vuosien 1808-1809 sodasta: Kansan suusta kokoillut', 'Castrén, Kaarle Alfred', '2015-12-15', 3, 'https://www.gutenberg.org/ebooks/50695', 'fi', 4711), +(8787, 'Rosa\'s Quest\r\nOr, The Way to the Beautiful Land', 'Wright, Anna Potter', '2005-11-25', 5, 'https://www.gutenberg.org/ebooks/17152', 'en', 470), +(8788, 'Julia The Apostate', 'Bacon, Josephine Daskam', '2007-11-06', 10, 'https://www.gutenberg.org/ebooks/23367', 'en', 4141), +(8789, 'The Last Abbot of Glastonbury: A Tale of the Dissolution of the Monasteries', 'Crake, A. D. (Augustine David)', '2016-09-08', 7, 'https://www.gutenberg.org/ebooks/53010', 'en', 4712), +(8790, 'L\'Illustration, No. 3650, 8 Février 1913', 'Various', '2011-09-28', 6, 'https://www.gutenberg.org/ebooks/37555', 'fr', 150); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(8791, 'A Modern Chronicle — Volume 07', 'Churchill, Winston', '2004-10-19', 26, 'https://www.gutenberg.org/ebooks/5380', 'en', 828), +(8792, 'The Night Riders\r\nA Thrilling Story of Love, Hate and Adventure, Graphically Depicting the Tobacco Uprising in Kentucky', 'Wood, Henry Cleveland', '2011-06-21', 16, 'https://www.gutenberg.org/ebooks/36487', 'en', 1996), +(8793, 'Theodore Roosevelt', 'Pearson, Edmund Lester', '2003-07-01', 17, 'https://www.gutenberg.org/ebooks/4252', 'en', 4594), +(8794, 'Vacation days in Greece', 'Richardson, Rufus B. (Rufus Byam)', '2014-03-19', 8, 'https://www.gutenberg.org/ebooks/45175', 'en', 4713), +(8795, 'Punch, or the London Charivari, Volume 103, October 29, 1892', 'Various', '2005-04-12', 6, 'https://www.gutenberg.org/ebooks/15605', 'en', 134), +(8796, 'Mexico and Its Religion\r\nWith Incidents of Travel in That Country During Parts of the Years 1851-52-53-54, and Historical Notices of Events Connected With Places Visited', 'Wilson, Robert Anderson', '2007-05-14', 20, 'https://www.gutenberg.org/ebooks/21430', 'en', 2487), +(8797, 'Mary Seaham: A Novel. Volume 3 of 3', 'Grey, Mrs. (Elizabeth Caroline)', '2012-08-04', 7, 'https://www.gutenberg.org/ebooks/40407', 'en', 348), +(8798, 'The Man Who Knew Too Much', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 704, 'https://www.gutenberg.org/ebooks/1720', 'en', 4341), +(8799, '轟天雷', 'Tenggu, Guxiang', '2008-01-03', 9, 'https://www.gutenberg.org/ebooks/24142', 'zh', 1003), +(8800, 'The Evil Guest', 'Le Fanu, Joseph Sheridan', '2003-12-01', 78, 'https://www.gutenberg.org/ebooks/10377', 'en', 428), +(8801, 'Kidnapped (Illustrated)\r\nBeing Memoirs of the Adventures of David Balfour in the Year 1751', 'Stevenson, Robert Louis', '2018-02-13', 66, 'https://www.gutenberg.org/ebooks/56562', 'en', 4714), +(8802, 'Ten years in the ranks, U.S. Army', 'Meyers, Augustus', '2014-06-12', 15, 'https://www.gutenberg.org/ebooks/45949', 'en', 4715), +(8803, 'The Tale of Billy Woodchuck', 'Bailey, Arthur Scott', '2008-04-18', 25, 'https://www.gutenberg.org/ebooks/25090', 'en', 4716), +(8804, 'Banking', 'Scott, William Amasa', '2010-04-17', 27, 'https://www.gutenberg.org/ebooks/32027', 'en', 2767), +(8805, 'Candy Medication', 'Fantus, Bernard', '2013-11-27', 19, 'https://www.gutenberg.org/ebooks/44295', 'en', 4717), +(8806, 'Footsteps on the Road to Learning; Or, The Alphabet in Rhyme', 'Anonymous', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/10979', 'en', 4718), +(8807, 'The Phil May Album', 'May, Phil', '2011-10-16', 7, 'https://www.gutenberg.org/ebooks/37767', 'en', 4719), +(8808, 'Royal Railways with Uniform Rates\r\nA proposal for amalgamation of Railways with the General Post Office and adoption of uniform fares and rates for any distance', 'Arnold, Whately C.', '2016-10-06', 8, 'https://www.gutenberg.org/ebooks/53222', 'en', 4720), +(8809, 'The Letters of Lord Nelson to Lady Hamilton, Vol II.\nWith A Supplement Of Interesting Letters By Distinguished Characters', 'Nelson, Horatio Nelson, Viscount', '2005-03-22', 10, 'https://www.gutenberg.org/ebooks/15437', 'en', 4721), +(8810, 'Udo in England: Eine Reiseerzählung', NULL, '2019-06-10', 20, 'https://www.gutenberg.org/ebooks/59718', 'de', 4722), +(8811, 'The Waste Land', 'Eliot, T. S. (Thomas Stearns)', '2007-05-31', 27, 'https://www.gutenberg.org/ebooks/21602', 'en', 4723), +(8812, 'The Renaissance: studies in art and poetry', 'Pater, Walter', '2003-05-01', 81, 'https://www.gutenberg.org/ebooks/4060', 'en', 3484), +(8813, 'The Master Key\r\nAn Electrical Fairy Tale Founded Upon the Mysteries of Electricity', 'Baum, L. Frank (Lyman Frank)', '2014-04-07', 34, 'https://www.gutenberg.org/ebooks/45347', 'en', 4724), +(8814, 'Mercenary', 'Reynolds, Mack', '2008-01-20', 70, 'https://www.gutenberg.org/ebooks/24370', 'en', 26), +(8815, 'Turkey: a Past and a Future', 'Toynbee, Arnold', '2003-11-01', 30, 'https://www.gutenberg.org/ebooks/10145', 'en', 4725), +(8816, 'The Girl\'s Own Paper, Vol. XX. No. 996, January 28, 1899', 'Various', '2018-08-13', 19, 'https://www.gutenberg.org/ebooks/57682', 'en', 563), +(8817, 'Punch, or the London Charivari, Vol. 105 December 23rd, 1893', 'Various', '2012-09-01', 9, 'https://www.gutenberg.org/ebooks/40635', 'en', 134), +(8818, 'The Tragedy of King Richard the Second', 'Shakespeare, William', '1998-10-01', 41, 'https://www.gutenberg.org/ebooks/1512', 'en', 4726), +(8819, 'Ιστορία της Ρωμιοσύνης, Πρώτος τόμος', 'Eftaliotis, Argyris', '2010-05-02', 21, 'https://www.gutenberg.org/ebooks/32215', 'el', 4727), +(8820, 'Tarry thou till I come; or, Salathiel, the wandering Jew.', 'Croly, George', '2018-03-15', 9, 'https://www.gutenberg.org/ebooks/56750', 'en', 4728), +(8821, 'Young Robin Hood', 'Fenn, George Manville', '2004-02-01', 68, 'https://www.gutenberg.org/ebooks/11097', 'en', 4027), +(8822, 'Cardinal Newman as a Musician', 'Bellasis, Edward', '2008-08-25', 18, 'https://www.gutenberg.org/ebooks/26427', 'en', 4729), +(8823, 'Lyhyitä kertomuksia', 'Canth, Minna', '2004-06-01', 31, 'https://www.gutenberg.org/ebooks/12612', 'fi', 61), +(8824, 'The Jumble Book: A Jumble of Good Things', 'Cory, David', '2013-02-22', 40, 'https://www.gutenberg.org/ebooks/42162', 'en', 859), +(8825, 'Black Rock: A Tale of the Selkirks', 'Connor, Ralph', '2006-05-30', 26, 'https://www.gutenberg.org/ebooks/3245', 'en', 65), +(8826, 'The Religion of Politics\r\nA Sermon Delivered Before His Excellency John Davis, Governor, His Honor George Hull, Lieutenant Governor, The Honorable Council, And The Legislature Of Massachusetts, At The Annual Election, January 5, 1842.', 'Gannett, Ezra S. (Ezra Stiles)', '2010-03-03', 6, 'https://www.gutenberg.org/ebooks/31490', 'en', 4730), +(8827, 'The Story of My Life\r\nWith her letters (1887-1901) and a supplementary account of her education, including passages from the reports and letters of her teacher, Anne Mansfield Sullivan, by John Albert Macy', 'Keller, Helen', '2000-11-01', 809, 'https://www.gutenberg.org/ebooks/2397', 'en', 1346), +(8828, 'Berenice', 'Oppenheim, E. Phillips (Edward Phillips)', '2009-11-25', 16, 'https://www.gutenberg.org/ebooks/30542', 'en', 128), +(8829, 'Within the Capes', 'Pyle, Howard', '2015-03-11', 30, 'https://www.gutenberg.org/ebooks/48458', 'en', 4731), +(8830, 'Typee', 'Melville, Herman', '2007-12-01', 7, 'https://www.gutenberg.org/ebooks/23969', 'en', 4732), +(8831, 'Through the Black Hills and Bad Lands of South Dakota', 'Peterson, P. D. (Purl Dewey)', '2017-01-18', 11, 'https://www.gutenberg.org/ebooks/54007', 'en', 4733), +(8832, 'The Story of Sigurd the Volsung and the Fall of the Niblungs', 'Morris, William', '2006-05-06', 55, 'https://www.gutenberg.org/ebooks/18328', 'en', 2173), +(8833, 'Rembrandt', 'Knackfuss, H. (Hermann)', '2011-01-21', 26, 'https://www.gutenberg.org/ebooks/35030', 'de', 596), +(8834, 'Hazel Squirrel and Other Stories', 'Lowe, Samuel E. (Samuel Edward)', '2007-07-16', 7, 'https://www.gutenberg.org/ebooks/22087', 'en', 3264), +(8835, 'Poems, 1908-1919', 'Drinkwater, John', '2016-03-27', 20, 'https://www.gutenberg.org/ebooks/51575', 'en', 1594), +(8836, 'Emile Zola, Sa Vie—Son Oeuvre', 'Lepelletier, Edmond', '2005-12-20', 10, 'https://www.gutenberg.org/ebooks/17360', 'fr', 4588), +(8837, 'Western Characters; or, Types of Border Life in the Western States', 'McConnel, John Ludlum', '2007-10-23', 15, 'https://www.gutenberg.org/ebooks/23155', 'en', 4734), +(8838, 'The Social Cancer: A Complete English Version of Noli Me Tangere', 'Rizal, José', '2004-10-01', 913, 'https://www.gutenberg.org/ebooks/6737', 'en', 98), +(8839, 'Tom Sawyer salapoliisina\nHuck Finnin kertomus', 'Twain, Mark', '2014-11-21', 19, 'https://www.gutenberg.org/ebooks/47410', 'fi', 3091), +(8840, 'The Evolution of an English Town', 'Home, Gordon', '2005-02-14', 26, 'https://www.gutenberg.org/ebooks/15053', 'en', 4735), +(8841, 'The Irish Penny Journal, Vol. 1 No. 05, August 1, 1840', 'Various', '2016-08-13', 7, 'https://www.gutenberg.org/ebooks/52794', 'en', 81), +(8842, 'Bird Day; How to prepare for it', 'Babcock, Charles Almanzo', '2007-04-30', 50, 'https://www.gutenberg.org/ebooks/21266', 'en', 4736), +(8843, 'The Shaving of Shagpat; an Arabian entertainment — Volume 4', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4404', 'en', 2634), +(8844, 'Myths & Legends of Japan', 'Davis, F. Hadland (Frederick Hadland)', '2014-05-23', 301, 'https://www.gutenberg.org/ebooks/45723', 'en', 4737), +(8845, 'The Girls of Central High on the Stage; Or, The Play That Took The Prize', 'Morrison, Gertrude W.', '2011-09-03', 16, 'https://www.gutenberg.org/ebooks/37303', 'en', 4738), +(8846, 'Anthropology and the Classics\nSix Lectures Delivered Before the University of Oxford', 'Fowler, W. Warde (William Warde)', '2016-12-01', 52, 'https://www.gutenberg.org/ebooks/53646', 'en', 4550), +(8847, 'Malta en de Maltezer Orde\r\nDe Aarde en haar Volken, 1906', 'Vuillier, Gaston', '2004-11-27', 21, 'https://www.gutenberg.org/ebooks/14181', 'nl', 4739), +(8848, 'Gaal György magyar népmese-gyűjteménye (1. kötet)', 'Gaal, György', '2012-03-29', 27, 'https://www.gutenberg.org/ebooks/39299', 'hu', 2), +(8849, 'The Doors of Death', 'Waltermire, Arthur B.', '2010-06-03', 19, 'https://www.gutenberg.org/ebooks/32671', 'en', 179), +(8850, 'Punch and Judy, with Instructions How to Manage the Little Wooden Actors\r\nContaining New and Easy Dialogues Arranged for the Use of Beginners, Desirous to Learn How to Work the Puppets. For Sunday Schools, Private Parties, Festivals and Parlor Entertainments.', 'Ward, Thomas A. M.', '2012-11-17', 4, 'https://www.gutenberg.org/ebooks/41383', 'en', 3690), +(8851, 'List of Post Offices in Canada, with the Names of the Postmasters ... 1866', 'Canada. Post Office Department', '2018-01-07', 0, 'https://www.gutenberg.org/ebooks/56334', 'en', 4740), +(8852, 'Fairy Tales from Brazil: How and Why Tales from Brazilian Folk-Lore', 'Eells, Elsie Spicer', '2008-02-28', 73, 'https://www.gutenberg.org/ebooks/24714', 'en', 4741), +(8853, 'The Primadonna\r\nA Sequel to \"Fair Margaret\"', 'Crawford, F. Marion (Francis Marion)', '2003-12-01', 4, 'https://www.gutenberg.org/ebooks/10521', 'en', 1079), +(8854, 'Titian: a collection of fifteen pictures and a portrait of the painter', 'Hurll, Estelle M. (Estelle May)', '2012-07-16', 12, 'https://www.gutenberg.org/ebooks/40251', 'en', 4742), +(8855, 'On Horsemanship', 'Xenophon', '1998-01-01', 165, 'https://www.gutenberg.org/ebooks/1176', 'en', 4743), +(8856, 'The Church, the Schools and Evolution', 'Conant, J. E. (Judson Eber)', '2009-09-28', 7, 'https://www.gutenberg.org/ebooks/30126', 'en', 2713), +(8857, 'The Goodness of St. Rocque, and Other Stories', 'Dunbar-Nelson, Alice Moore', '1996-10-01', 62, 'https://www.gutenberg.org/ebooks/688', 'en', 770), +(8858, 'John Herring: A West of England Romance. Volume 1 (of 3)', 'Baring-Gould, S. (Sabine)', '2017-03-31', 3, 'https://www.gutenberg.org/ebooks/54463', 'en', 4744), +(8859, 'Sonnets. Volume 8', 'Shakespeare, William', '2008-11-07', 19, 'https://www.gutenberg.org/ebooks/27191', 'fr', 4272), +(8860, 'Studies in the Theory of Descent, Volume II', 'Weismann, August', '2015-01-02', 23, 'https://www.gutenberg.org/ebooks/47848', 'en', 4745), +(8861, 'Sam\'s Chance, and How He Improved It', 'Alger, Horatio, Jr.', '2008-07-12', 145, 'https://www.gutenberg.org/ebooks/26043', 'en', 264), +(8862, 'Viajes por Filipinas: De Manila á Tayabas', 'Alvarez Guerra, Juan', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/12276', 'es', 4048), +(8863, 'Chronicles (1 of 6): The Description of Britaine', 'Holinshed, Raphael', '2013-04-11', 29, 'https://www.gutenberg.org/ebooks/42506', 'en', 4746), +(8864, 'De verliefde ezel', 'Couperus, Louis', '2009-08-28', 14, 'https://www.gutenberg.org/ebooks/29837', 'nl', 4747), +(8865, 'Peg O\' My Heart', 'Manners, J. Hartley', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3621', 'en', 1380), +(8866, 'The Tales of the Heptameron, Vol. 4 (of 5)', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2006-02-07', 28, 'https://www.gutenberg.org/ebooks/17704', 'en', 4748), +(8867, 'Marjorie\'s Busy Days', 'Wells, Carolyn', '2007-11-18', 11, 'https://www.gutenberg.org/ebooks/23531', 'en', 3621), +(8868, 'Chap-books of the Eighteenth Century\nWith Facsimiles, Notes, and Introduction', 'Ashton, John', '2015-04-27', 30, 'https://www.gutenberg.org/ebooks/48800', 'en', 4749), +(8869, 'A Treatise on Grain Stacking\r\nInstructions how to Properly Stack all kinds of Grain, so as to preserve in the best possible manner for Threshing and Market.', 'De Lamater, John N.', '2010-12-07', 4, 'https://www.gutenberg.org/ebooks/34586', 'en', 4750), +(8870, 'The Prince of Graustark', 'McCutcheon, George Barr', '2004-08-01', 29, 'https://www.gutenberg.org/ebooks/6353', 'en', 4583), +(8871, 'Mimi Bluette, fiore del mio giardino: romanzo', 'Verona, Guido da', '2014-10-07', 24, 'https://www.gutenberg.org/ebooks/47074', 'it', 1544), +(8872, '\"O Thou, My Austria!\"', 'Schubin, Ossip', '2011-03-02', 11, 'https://www.gutenberg.org/ebooks/35454', 'en', 1949), +(8873, 'Tom Cringle\'s Log', 'Scott, Michael', '2005-01-01', 24, 'https://www.gutenberg.org/ebooks/7281', 'en', 4751), +(8874, 'Isät ja lapset: Romaani', 'Turgenev, Ivan Sergeevich', '2016-02-02', 14, 'https://www.gutenberg.org/ebooks/51111', 'fi', 378), +(8875, 'Quiet Talks on Prayer', 'Gordon, S. D. (Samuel Dickey)', '2004-08-17', 53, 'https://www.gutenberg.org/ebooks/13196', 'en', 4752), +(8876, 'Fågelskytten och andra berättelser', 'Högberg, Olof', '2017-05-02', 8, 'https://www.gutenberg.org/ebooks/54651', 'sv', 420), +(8877, 'Vigée Le Brun', 'MacFall, Haldane', '2009-10-22', 14, 'https://www.gutenberg.org/ebooks/30314', 'en', 3405), +(8878, 'Punch, or the London Charivari, Vol. 108, June 22nd, 1895', 'Various', '2013-05-18', 27, 'https://www.gutenberg.org/ebooks/42734', 'en', 134), +(8879, 'The Blazed Trail', 'White, Stewart Edward', '2002-09-01', 20, 'https://www.gutenberg.org/ebooks/3413', 'en', 4753), +(8880, 'The Slant Book', 'Newell, Peter', '2008-08-01', 4, 'https://www.gutenberg.org/ebooks/26271', 'en', 859), +(8881, 'Tracked by a Tattoo: A Mystery', 'Hume, Fergus', '2017-10-20', 40, 'https://www.gutenberg.org/ebooks/55783', 'en', 1425), +(8882, 'The Grimké Sisters\nSarah and Angelina Grimké: the First American Women Advocates of\nAbolition and Woman\'s Rights', 'Birney, Catherine H.', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12044', 'en', 4754), +(8883, 'Copyright Renewals 1957', 'Library of Congress. Copyright Office', '2004-07-01', 12, 'https://www.gutenberg.org/ebooks/6161', 'en', 4170), +(8884, 'A Deal with the Devil', 'Phillpotts, Eden', '2014-10-30', 35, 'https://www.gutenberg.org/ebooks/47246', 'en', 4755), +(8885, 'An Appeal to the Christian Women of the South', 'Grimké, Angelina Emily', '2006-02-01', 41, 'https://www.gutenberg.org/ebooks/9915', 'en', 125), +(8886, 'The Nursery, No. 169, January, 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2006-01-17', 20, 'https://www.gutenberg.org/ebooks/17536', 'en', 4641), +(8887, 'The Parthenon By Way Of Papendrecht', 'Smith, Francis Hopkinson', '2007-12-03', 16, 'https://www.gutenberg.org/ebooks/23703', 'en', 611), +(8888, 'Graham\'s Magazine, Vol. XXXII No. 4, April 1848', 'Various', '2009-06-25', 14, 'https://www.gutenberg.org/ebooks/29239', 'en', 162), +(8889, 'La vita Italiana nel Risorgimento (1815-1831), parte 1\r\nConferenze fiorentine - Storia', 'Various', '2016-02-28', 22, 'https://www.gutenberg.org/ebooks/51323', 'it', 4756), +(8890, 'Birds of the Plains', 'Dewar, Douglas', '2014-07-24', 19, 'https://www.gutenberg.org/ebooks/46394', 'en', 88), +(8891, 'The Radio Boys in the Thousand Islands; Or, The Yankee-Canadian Wireless Trail', 'Honeywell, Frank', '2004-07-10', 14, 'https://www.gutenberg.org/ebooks/12878', 'en', 3343), +(8892, 'Punch, or the London Charivari, Volume 105, July 15th 1893', 'Various', '2011-03-24', 7, 'https://www.gutenberg.org/ebooks/35666', 'en', 134), +(8893, 'A Tramp Through the Bret Harte Country', 'Beasley, T. D. (Thomas Dykes)', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/4636', 'en', 4757), +(8894, 'Red Caps and Lilies', 'Adams, Katharine', '2014-04-27', 12, 'https://www.gutenberg.org/ebooks/45511', 'en', 4758), +(8895, 'Discoveries Among the Ruins of Nineveh and Babylon', 'Layard, Austen Henry', '2012-06-02', 51, 'https://www.gutenberg.org/ebooks/39897', 'en', 2204), +(8896, 'A Portraiture of Quakerism, Volume 2\r\nTaken from a View of the Education and Discipline, Social Manners, Civil and Political Economy, Religious Principles and Character, of the Society of Friends', 'Clarkson, Thomas', '2005-03-04', 6, 'https://www.gutenberg.org/ebooks/15261', 'en', 4759), +(8897, 'People\'s Handy Atlas of the World\n1910 Census Edition', NULL, '2007-04-13', 55, 'https://www.gutenberg.org/ebooks/21054', 'en', 3515), +(8898, 'The Dismal Swamp and Lake Drummond, Early recollections\nVivid portrayal of Amusing Scenes', 'Arnold, Robert', '2006-12-26', 15, 'https://www.gutenberg.org/ebooks/20186', 'en', 4760), +(8899, 'Prejudices, Third Series', 'Mencken, H. L. (Henry Louis)', '2016-11-07', 65, 'https://www.gutenberg.org/ebooks/53474', 'en', 2156), +(8900, 'Canute the Great, 995 (circa)-1035, and the Rise of Danish Imperialism during the Viking Age', 'Larson, Laurence Marcellus', '2012-02-21', 20, 'https://www.gutenberg.org/ebooks/38945', 'en', 4761), +(8901, 'Συρανό δε Μπερζεράκ', 'Rostand, Edmond', '2011-08-19', 15, 'https://www.gutenberg.org/ebooks/37131', 'el', 4762), +(8902, 'John Brown\'s Raid', 'United States. National Park Service', '2017-12-03', 14, 'https://www.gutenberg.org/ebooks/56106', 'en', 4763), +(8903, 'Saga of Halfred the Sigskald: A Northern Tale of the Tenth Century', 'Dahn, Felix', '2010-05-19', 13, 'https://www.gutenberg.org/ebooks/32443', 'en', 4764), +(8904, 'The Truth About Port Arthur', 'Nozhin, E. K. (Evgenii Konstantinovich)', '2019-07-23', 1121, 'https://www.gutenberg.org/ebooks/59972', 'en', 4765), +(8905, 'French and Oriental Love in a Harem', 'Uchard, Mario', '2007-06-19', 28, 'https://www.gutenberg.org/ebooks/21868', 'en', 4766), +(8906, 'Every Girl\'s Library, Volume 8 of 10\r\nA Collection of Appropriate and Instructive Reading for Girls of All Ages from the Best Authors of All Time', NULL, '2012-06-23', 7, 'https://www.gutenberg.org/ebooks/40063', 'en', 19), +(8907, 'The Secrets of the Princesse de Cadignan', 'Balzac, Honoré de', '2005-08-31', 21, 'https://www.gutenberg.org/ebooks/1344', 'en', 58), +(8908, 'Household Education', 'Martineau, Harriet', '2011-11-30', 35, 'https://www.gutenberg.org/ebooks/38179', 'en', 4767), +(8909, 'Wait and Hope; Or, A Plucky Boy\'s Luck', 'Alger, Horatio, Jr.', '2010-08-30', 11, 'https://www.gutenberg.org/ebooks/33591', 'en', 2526), +(8910, 'The Idea of a University Defined and Illustrated\r\nIn Nine Discourses Delivered to the Catholics of Dublin', 'Newman, John Henry', '2008-02-05', 399, 'https://www.gutenberg.org/ebooks/24526', 'en', 4768), +(8911, 'The Bullitt Mission to Russia\r\nTestimony before the Committee on Foreign Relations, United States Senate, of William C. Bullitt', 'Bullitt, William C. (William Christian)', '2004-08-02', 14, 'https://www.gutenberg.org/ebooks/10713', 'en', 4769), +(8912, 'From a Cornish Window\nA New Edition', 'Quiller-Couch, Arthur', '2008-03-29', 9, 'https://www.gutenberg.org/ebooks/24946', 'en', 1694), +(8913, 'The Hampdenshire Wonder', 'Beresford, J. D. (John Davys)', '2016-09-11', 21, 'https://www.gutenberg.org/ebooks/53028', 'en', 26), +(8914, 'Narrative of a Journey to the Summit of Mont Blanc', 'Howard, William', '2010-06-15', 9, 'https://www.gutenberg.org/ebooks/32823', 'en', 4770), +(8915, 'In the Wilds of South America', 'Miller, Leo E. (Leo Edward)', '2019-05-15', 21, 'https://www.gutenberg.org/ebooks/59512', 'en', 227), +(8916, 'The Atlantic Monthly, Volume 17, No. 102, April, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-05-09', 4, 'https://www.gutenberg.org/ebooks/21408', 'en', 1227), +(8917, 'The Spirit Proper to the Times\r\nA Sermon preached in King\'s Chapel, Boston, Sunday, May 12, 1861', 'Walker, James', '2008-06-24', 7, 'https://www.gutenberg.org/ebooks/25894', 'en', 4771), +(8918, 'Index for Works of Holman Day\nHyperlinks to all Chapters of all Individual Ebooks', 'Day, Holman', '2018-07-12', 8, 'https://www.gutenberg.org/ebooks/57488', 'en', 198), +(8919, 'Manalive', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 183, 'https://www.gutenberg.org/ebooks/1718', 'en', 4772), +(8920, 'A searchlight on Germany: Germany\'s Blunders, Crimes and Punishment', 'Hornaday, William T. (William Temple)', '2016-12-27', 8, 'https://www.gutenberg.org/ebooks/53814', 'en', 4773), +(8921, 'The Sylph, Volume I and II', 'Cavendish, Georgiana Spencer, Duchess of Devonshire', '2012-01-08', 35, 'https://www.gutenberg.org/ebooks/38525', 'en', 4774), +(8922, 'Parallel Paths: A Study in Biology, Ethics, and Art', 'Rolleston, T. W. (Thomas William)', '2014-06-14', 26, 'https://www.gutenberg.org/ebooks/45971', 'en', 4775), +(8923, 'The Land of Deepening Shadow: Germany-at-War', 'Curtin, D. Thomas (Daniel Thomas)', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/12418', 'en', 449), +(8924, 'Narrative of the Suffering & Defeat of the North-Western Army, Under General Winchester\r\nMassacre of the Prisoners; Sixteen Months Imprisonment of the Writer and Others with the Indians and British', 'Atherton, William', '2013-03-19', 19, 'https://www.gutenberg.org/ebooks/42368', 'en', 4776), +(8925, 'Tales of the birds', 'Fowler, W. Warde (William Warde)', '2015-08-25', 9, 'https://www.gutenberg.org/ebooks/49780', 'en', 318), +(8926, 'Ubu Roi\nou les Polonais', 'Jarry, Alfred', '2005-10-16', 111, 'https://www.gutenberg.org/ebooks/16884', 'fr', 3017), +(8927, 'Anti-Slavery Poems 1.\r\nPart 1 From Volume III of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 11, 'https://www.gutenberg.org/ebooks/9575', 'en', 4777), +(8928, 'Recreation by Viscount Grey of Fallodon, K.G.', 'Grey of Fallodon, Edward Grey, Viscount', '2006-03-10', 11, 'https://www.gutenberg.org/ebooks/17956', 'en', 1415), +(8929, 'Ευθύφρων', 'Plato', '2009-12-24', 22, 'https://www.gutenberg.org/ebooks/30748', 'el', 2286), +(8930, 'Viaje a America, Tomo 2 de 2\r\nEstados Unidos, Exposición Universal de Chicago, México, Cuba y Puerto Rico', 'Puig y Valls, Rafael', '2015-04-06', 23, 'https://www.gutenberg.org/ebooks/48652', 'es', 2487), +(8931, 'A Canadian Heroine, Volume 2\nA Novel', 'Coghill, Harry, Mrs.', '2006-04-05', 11, 'https://www.gutenberg.org/ebooks/18122', 'en', 500), +(8932, 'Great Men as Prophets of a New Era', 'Hillis, Newell Dwight', '2019-08-01', 494, 'https://www.gutenberg.org/ebooks/60038', 'en', 2868), +(8933, 'Prairie Farmer, Vol. 56: No. 4, January 26, 1884\nA Weekly Journal for the Farm, Orchard and Fireside', 'Various', '2009-08-11', 20, 'https://www.gutenberg.org/ebooks/29665', 'en', 1987), +(8934, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 14', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 9, 'https://www.gutenberg.org/ebooks/3873', 'en', 4778), +(8935, 'Doctor Luttrell\'s First Patient', 'Carey, Rosa Nouchette', '2007-10-04', 14, 'https://www.gutenberg.org/ebooks/22883', 'en', 48), +(8936, 'The Poetical Works of Beattie, Blair, and Falconer\r\nWith Lives, Critical Dissertations, and Explanatory Notes', 'Beattie, James', '2005-08-01', 29, 'https://www.gutenberg.org/ebooks/8695', 'en', 54), +(8937, 'The Dust of Conflict', 'Bindloss, Harold', '2011-04-12', 17, 'https://www.gutenberg.org/ebooks/35834', 'en', 4779), +(8938, 'The Delight Makers', 'Bandelier, Adolph Francis Alphonse', '2006-05-04', 24, 'https://www.gutenberg.org/ebooks/18310', 'en', 98), +(8939, 'The Fortune Hunter', 'Smith, Winchell', '2006-01-01', 31, 'https://www.gutenberg.org/ebooks/9747', 'en', 61), +(8940, 'The Chief of the Ranges: A Tale of the Yukon', 'Cody, H. A. (Hiram Alfred)', '2013-07-03', 13, 'https://www.gutenberg.org/ebooks/43088', 'en', 3036), +(8941, '西京雜記', 'Liu, Xin', '2007-12-21', 21, 'https://www.gutenberg.org/ebooks/23951', 'zh', 4780), +(8942, 'Matkustus maan keskipisteeseen', 'Verne, Jules', '2015-03-11', 11, 'https://www.gutenberg.org/ebooks/48460', 'fi', 2399), +(8943, 'Kuinka äkäpussi kesytetään', 'Shakespeare, William', '2013-06-17', 14, 'https://www.gutenberg.org/ebooks/42966', 'fi', 3523), +(8944, 'Loot of the Void', 'Sloat, Edwin K.', '2009-07-19', 36, 'https://www.gutenberg.org/ebooks/29457', 'en', 26), +(8945, 'Concerning Belinda', 'Brainerd, Eleanor Hoyt', '2011-01-19', 33, 'https://www.gutenberg.org/ebooks/35008', 'en', 348), +(8946, 'Playing Santa Claus, and Other Christmas Tales', 'Doughty, Sarah P. (Sarah Parsons)', '2017-05-28', 21, 'https://www.gutenberg.org/ebooks/54803', 'en', 388), +(8947, 'Johnny Nut and the Golden Goose', 'Deulin, Charles', '2014-11-22', 15, 'https://www.gutenberg.org/ebooks/47428', 'en', 246), +(8948, 'The Romantic Settlement of Lord Selkirk\'s Colonists\nThe Pioneers of Manitoba', 'Bryce, George', '2005-12-19', 18, 'https://www.gutenberg.org/ebooks/17358', 'en', 4781), +(8949, 'With Hoops of Steel', 'Kelly, Florence Finch', '2009-04-22', 10, 'https://www.gutenberg.org/ebooks/28585', 'en', 315), +(8950, 'Jumalainen näytelmä: Helvetti', 'Dante Alighieri', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/10941', 'fi', 1082), +(8951, 'Journal d\'un sous-officier, 1870', 'Delorme, Amédée', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/11893', 'fr', 4782), +(8952, 'Marius the Epicurean — Volume 2', 'Pater, Walter', '2003-05-01', 62, 'https://www.gutenberg.org/ebooks/4058', 'en', 98), +(8953, 'The Son of His Father; vol. 1/3', 'Oliphant, Mrs. (Margaret)', '2019-06-10', 59, 'https://www.gutenberg.org/ebooks/59720', 'en', 2079), +(8954, 'Kruunun metsissä', 'Kokko, Juhana', '2012-01-30', 13, 'https://www.gutenberg.org/ebooks/38717', 'fi', 61), +(8955, 'The Choice\n1916', 'Wharton, Edith', '2008-01-17', 49, 'https://www.gutenberg.org/ebooks/24348', 'en', 847), +(8956, 'Scribner\'s Magazine, Volume 26, August 1899', 'Various', '2018-03-18', 4, 'https://www.gutenberg.org/ebooks/56768', 'en', 1227), +(8957, 'History of the United Netherlands, 1592', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4864', 'en', 3372), +(8958, 'The Sun of Quebec: A Story of a Great Crisis', 'Altsheler, Joseph A. (Joseph Alexander)', '2006-07-06', 29, 'https://www.gutenberg.org/ebooks/18774', 'en', 4783), +(8959, 'Chats on Old Earthenware', 'Hayden, Arthur', '2015-01-04', 16, 'https://www.gutenberg.org/ebooks/47870', 'en', 4784), +(8960, 'Foliage: Various Poems', 'Davies, W. H. (William Henry)', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9323', 'en', 532), +(8961, 'Souvenirs d\'égotisme\nautobiographie et lettres inédites publiées par Casimir Stryienski', 'Stendhal', '2015-01-17', 24, 'https://www.gutenberg.org/ebooks/48004', 'fr', 4588), +(8962, 'Cousin Maude', 'Holmes, Mary Jane', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3619', 'en', 376), +(8963, 'Lentala of the South Seas: The Romantic Tale of a Lost Colony', 'Morrow, W. C.', '2016-05-01', 12, 'https://www.gutenberg.org/ebooks/51915', 'en', 108), +(8964, 'History of Spanish Literature, vol. 2 (of 3)', 'Ticknor, George', '2017-09-20', 5, 'https://www.gutenberg.org/ebooks/55589', 'en', 4785), +(8965, 'The History of London', 'Besant, Walter', '2009-02-04', 48, 'https://www.gutenberg.org/ebooks/27995', 'en', 4685), +(8966, 'Vie de Christophe Colomb', 'Bonnefoux, Pierre-Marie-Joseph, baron de', '2010-01-10', 11, 'https://www.gutenberg.org/ebooks/30922', 'fr', 4786), +(8967, 'Life of Napoleon Bonaparte, Volume II.', 'Scott, Walter', '2015-05-02', 34, 'https://www.gutenberg.org/ebooks/48838', 'en', 840), +(8968, 'The Beast of Space', 'Hardart, F. E.', '2007-11-16', 49, 'https://www.gutenberg.org/ebooks/23509', 'en', 4787), +(8969, 'Critical Miscellanies (Vol. 3 of 3), Essay 10: Auguste Comte', 'Morley, John', '2009-06-04', 19, 'https://www.gutenberg.org/ebooks/29033', 'en', 4788), +(8970, 'A Gift from Earth', 'Banister, Manly', '2016-02-05', 83, 'https://www.gutenberg.org/ebooks/51129', 'en', 179), +(8971, 'A Pessimist in Theory and Practice', 'Bird, Frederic Mayer', '2008-10-09', 18, 'https://www.gutenberg.org/ebooks/26847', 'en', 61), +(8972, 'Colored Americans in the Wars of 1776 and 1812', 'Nell, William C. (William Cooper)', '2019-04-24', 28, 'https://www.gutenberg.org/ebooks/59344', 'en', 4789), +(8973, 'History of the Britons (Historia Brittonum)', 'Nennius, active 796', '2006-02-26', 109, 'https://www.gutenberg.org/ebooks/1972', 'en', 4790), +(8974, 'L\'anatra: Allevamento per la produzione della carne', 'Gonin, Carlo Alberto', '2018-11-17', 15, 'https://www.gutenberg.org/ebooks/58296', 'it', 1913), +(8975, 'Critical Strictures on the New Tragedy of Elvira, Written by Mr. David Malloch', 'Dempster, George', '2005-05-18', 14, 'https://www.gutenberg.org/ebooks/15857', 'en', 4791), +(8976, 'The Middle Years', 'James, Henry', '2010-06-01', 30, 'https://www.gutenberg.org/ebooks/32649', 'en', 4792), +(8977, 'At the Black Rocks', 'Rand, Edward A. (Edward Augustus)', '2012-07-18', 42, 'https://www.gutenberg.org/ebooks/40269', 'en', 1655), +(8978, 'Liberty in the Nineteenth Century', 'Holland, Frederic May', '2011-12-22', 16, 'https://www.gutenberg.org/ebooks/38373', 'en', 216), +(8979, 'Valere Aude: Dare to Be Healthy, Or, The Light of Physical Regeneration', 'Dechmann, Louis', '2005-02-08', 33, 'https://www.gutenberg.org/ebooks/14985', 'en', 4793), +(8980, 'Mercy Philbrick\'s Choice', 'Jackson, Helen Hunt', '2003-12-01', 21, 'https://www.gutenberg.org/ebooks/10519', 'en', 109), +(8981, 'Pearl of Pearl Island', 'Oxenham, John', '2005-03-04', 20, 'https://www.gutenberg.org/ebooks/15259', 'en', 3922), +(8982, 'Selling Things', 'Marden, Orison Swett', '2019-03-31', 53, 'https://www.gutenberg.org/ebooks/59176', 'en', 4794), +(8983, 'The Soul Scar: A Craig Kennedy Scientific Mystery Novel', 'Reeve, Arthur B. (Arthur Benjamin)', '2018-04-04', 47, 'https://www.gutenberg.org/ebooks/56902', 'en', 1660), +(8984, 'Punch or the London Charivari, Vol. 108, March 23, 1895', 'Various', '2014-04-29', 4, 'https://www.gutenberg.org/ebooks/45529', 'en', 134), +(8985, 'Health Through Will Power', 'Walsh, James J. (James Joseph)', '2011-08-17', 33, 'https://www.gutenberg.org/ebooks/37109', 'en', 4795), +(8986, 'Versuch einer Ethnographie der Philippinen', 'Blumentritt, Ferdinand', '2012-09-26', 10, 'https://www.gutenberg.org/ebooks/40867', 'de', 4796), +(8987, 'Life of Beethoven\r\nIncluding his correspondence with his friends, numerous characteristic traits, and remarks on his musical works', 'Schindler, Anton', '2012-03-10', 31, 'https://www.gutenberg.org/ebooks/39093', 'en', 4674), +(8988, 'A Little Norsk; Or, Ol\' Pap\'s Flaxen', 'Garland, Hamlin', '2007-06-18', 21, 'https://www.gutenberg.org/ebooks/21850', 'en', 264), +(8989, 'A Book o\' Nine Tales.', 'Bates, Arlo', '2012-10-26', 20, 'https://www.gutenberg.org/ebooks/41189', 'en', 112), +(8990, 'Una donna', 'Bracco, Roberto', '2011-11-05', 5, 'https://www.gutenberg.org/ebooks/37935', 'it', 407), +(8991, 'Memoirs of the Courts and Cabinets of George the Third\r\nFrom the Original Family Documents, Volume 1', 'Buckingham and Chandos, Richard Plantagenet Temple Nugent Brydges Chandos Grenville, Duke of', '2007-04-04', 90, 'https://www.gutenberg.org/ebooks/20982', 'en', 2610), +(8992, 'John Dewey\'s logical theory', 'Howard, Delton Thomas', '2011-11-26', 19, 'https://www.gutenberg.org/ebooks/38141', 'en', 4797), +(8993, 'From Paddington to Penzance\nThe record of a summer tramp from London to the Land\'s End', 'Harper, Charles G. (Charles George)', '2019-02-17', 4, 'https://www.gutenberg.org/ebooks/58898', 'en', 776), +(8994, 'The Bride of Dreams', 'Eeden, Frederik van', '2005-10-01', 31, 'https://www.gutenberg.org/ebooks/9111', 'en', 61), +(8995, 'The Blood Covenant: A Primitive Rite and its Bearings on Scripture', 'Trumbull, H. Clay (Henry Clay)', '2015-02-11', 26, 'https://www.gutenberg.org/ebooks/48236', 'en', 4798), +(8996, 'Kitty Alone: A Story of Three Fires (vol. 2 of 3)', 'Baring-Gould, S. (Sabine)', '2017-05-06', 8, 'https://www.gutenberg.org/ebooks/54669', 'en', 137), +(8997, 'The Woodlanders', 'Hardy, Thomas', '1996-04-01', 307, 'https://www.gutenberg.org/ebooks/482', 'en', 48), +(8998, 'Denslow\'s Mother Goose', NULL, '2006-06-10', 69, 'https://www.gutenberg.org/ebooks/18546', 'en', 2296), +(8999, 'Alice Sit-By-The-Fire', 'Barrie, J. M. (James Matthew)', '2004-11-01', 37, 'https://www.gutenberg.org/ebooks/6965', 'en', 402), +(9000, 'The Light Princess', 'MacDonald, George', '2008-08-01', 8, 'https://www.gutenberg.org/ebooks/26249', 'en', 4799), +(9001, 'Bell\'s Cathedrals: The Cathedral Church of Saint Albans\nWith an Account of the Fabric & a Short History of the Abbey', 'Perkins, Thomas, Rev.', '2006-10-08', 39, 'https://www.gutenberg.org/ebooks/19494', 'en', 4800), +(9002, 'Kitty Trenire', 'Quiller-Couch, Mabel', '2004-11-09', 12, 'https://www.gutenberg.org/ebooks/13992', 'en', 4801), +(9003, 'Vicky Van', 'Wells, Carolyn', '2004-07-01', 24, 'https://www.gutenberg.org/ebooks/6159', 'en', 972), +(9004, 'Logica', 'Piquer, Andres', '2004-07-07', 34, 'https://www.gutenberg.org/ebooks/12840', 'es', 354), +(9005, 'Comments on the Taxonomy and Geographic Distribution of North American Microtines', 'Hall, E. Raymond (Eugene Raymond)', '2009-06-22', 3, 'https://www.gutenberg.org/ebooks/29201', 'en', 4802), +(9006, 'Korea\'s Fight for Freedom', 'McKenzie, Fred A. (Fred Arthur)', '2004-09-03', 51, 'https://www.gutenberg.org/ebooks/13368', 'en', 4803), +(9007, 'The Haunted Man and the Ghost\'s Bargain', 'Dickens, Charles', '1996-09-01', 138, 'https://www.gutenberg.org/ebooks/644', 'en', 585), +(9008, 'Shakespeare and the Modern Stage; with Other Essays', 'Lee, Sidney, Sir', '2006-07-07', 10, 'https://www.gutenberg.org/ebooks/18780', 'en', 3360), +(9009, 'Birds and Nature, Vol. 12 No. 4 [September 1902]\nIllustrated by Color Photography', 'Various', '2015-01-05', 16, 'https://www.gutenberg.org/ebooks/47884', 'en', 490), +(9010, 'Die Majoratsherren', 'Arnim, Ludwig Achim, Freiherr von', '2016-01-03', 13, 'https://www.gutenberg.org/ebooks/50833', 'de', 138), +(9011, 'El Criterio', 'Balmes, Jaime Luciano', '2009-05-22', 31, 'https://www.gutenberg.org/ebooks/28929', 'es', 779), +(9012, 'Our Knowledge Box; or, Old Secrets and New Discoveries.', 'Unknown', '2013-08-07', 39, 'https://www.gutenberg.org/ebooks/43418', 'en', 2161), +(9013, 'The Somme, Volume 1. The First Battle of the Somme (1916-1917)\r\n(Albert, Bapaume, Péronne)', NULL, '2015-06-03', 40, 'https://www.gutenberg.org/ebooks/49122', 'en', 4804), +(9014, 'The Real Hard Sell', 'Stuart, William W.', '2010-01-21', 43, 'https://www.gutenberg.org/ebooks/31038', 'en', 831), +(9015, 'On the Origin of Species', 'Darwin, Charles', '2005-06-01', 78, 'https://www.gutenberg.org/ebooks/8205', 'en', 4602), +(9016, 'Ned, the son of Webb: What he did.', 'Stoddard, William O.', '2014-09-24', 23, 'https://www.gutenberg.org/ebooks/46956', 'en', 153), +(9017, 'A Ball Player\'s Career\r\nBeing the Personal Experiences and Reminiscensces of Adrian C. Anson', 'Anson, Adrian Constantine', '2006-10-28', 38, 'https://www.gutenberg.org/ebooks/19652', 'en', 3377), +(9018, 'Op Martinique en Sint-Vincent, de veelgeteisterde eilanden\nDe Aarde en haar Volken, 1904', 'Verschuur, Gerrit', '2009-02-01', 7, 'https://www.gutenberg.org/ebooks/27961', 'nl', 4805), +(9019, 'The Great Sioux Trail: A Story of Mountain and Plain', 'Altsheler, Joseph A. (Joseph Alexander)', '2009-02-18', 33, 'https://www.gutenberg.org/ebooks/28115', 'en', 4806), +(9020, 'Francezka', 'Seawell, Molly Elliot', '2010-03-28', 12, 'https://www.gutenberg.org/ebooks/31804', 'en', 61), +(9021, 'Les Rythmes souverains: Poèmes', 'Verhaeren, Emile', '2011-03-06', 7, 'https://www.gutenberg.org/ebooks/35498', 'fr', 8), +(9022, 'Om Tanke- och Yttrandefrihet', 'Mill, John Stuart', '2016-08-08', 14, 'https://www.gutenberg.org/ebooks/52758', 'sv', 4807), +(9023, 'Christmas Sunshine', 'Various', '2007-01-15', 9, 'https://www.gutenberg.org/ebooks/20378', 'en', 381), +(9024, 'Captain John\'s Adventures; or, The Story of a Fatherless Boy', 'Anonymous', '2018-11-10', 7, 'https://www.gutenberg.org/ebooks/58262', 'en', 153), +(9025, 'Life and Death of Mr. Badman', 'Bunyan, John', '1999-12-01', 109, 'https://www.gutenberg.org/ebooks/1986', 'en', 942), +(9026, 'The Fire-Gods: A Tale of the Congo', 'Gilson, Charles', '2012-03-24', 13, 'https://www.gutenberg.org/ebooks/39255', 'en', 4808), +(9027, 'History of Holland', 'Edmundson, George', '2005-02-08', 104, 'https://www.gutenberg.org/ebooks/14971', 'en', 1498), +(9028, 'Library Bookbinding', 'Bailey, Arthur Low', '2011-12-22', 26, 'https://www.gutenberg.org/ebooks/38387', 'en', 3349), +(9029, 'Top o\' the World: A Once Upon a Time Tale', 'Swan, Mark', '2019-04-01', 17, 'https://www.gutenberg.org/ebooks/59182', 'en', 580), +(9030, 'The Independence of Claire', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 28, 'https://www.gutenberg.org/ebooks/21098', 'en', 348), +(9031, 'Urania', 'Flammarion, Camille', '2013-01-28', 44, 'https://www.gutenberg.org/ebooks/41941', 'en', 58), +(9032, 'Stories by Foreign Authors: Italian', NULL, '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/5728', 'en', 4809), +(9033, 'L\'imitation de Jésus-Christ\nTraduction nouvelle avec des réflexions à la fin de chaque chapitre', 'Thomas, à Kempis', '2018-09-01', 33, 'https://www.gutenberg.org/ebooks/57824', 'fr', 2064), +(9034, 'The Career of Katherine Bush', 'Glyn, Elinor', '2012-09-29', 24, 'https://www.gutenberg.org/ebooks/40893', 'en', 432), +(9035, 'Laid up in Lavender', 'Weyman, Stanley John', '2012-02-26', 15, 'https://www.gutenberg.org/ebooks/38989', 'en', 409), +(9036, 'The American Missionary — Volume 36, No. 8, August 1882', 'Various', '2018-10-07', 3, 'https://www.gutenberg.org/ebooks/58050', 'en', 562), +(9037, 'Horace Chase', 'Woolson, Constance Fenimore', '2012-03-06', 8, 'https://www.gutenberg.org/ebooks/39067', 'en', 2815), +(9038, 'Kasperle auf Reisen: Eine lustige Geschichte', 'Siebe, Josephine', '2011-07-23', 27, 'https://www.gutenberg.org/ebooks/36813', 'de', 4810), +(9039, 'The Airlords of Han', 'Nowlan, Philip Francis', '2008-05-11', 96, 'https://www.gutenberg.org/ebooks/25438', 'en', 2564), +(9040, 'Pieces People Ask For\r\nSerious, Humorous, Pathetic, Patriotic, and Dramatic Selections in Prose and Poetry for Reading and Recitations', NULL, '2018-04-21', 9, 'https://www.gutenberg.org/ebooks/57018', 'en', 1725), +(9041, 'The History of England, from the Accession\r\nof James II, Vol2 Chapter 6', 'Macaulay, Thomas Babington Macaulay, Baron', '2007-04-04', 3, 'https://www.gutenberg.org/ebooks/20976', 'en', 3001), +(9042, 'Padre Ignacio; Or, The Song of Temptation', 'Wister, Owen', '1998-07-01', 17, 'https://www.gutenberg.org/ebooks/1388', 'en', 4811), +(9043, 'Across the Years', 'Porter, Eleanor H. (Eleanor Hodgman)', '2004-11-01', 47, 'https://www.gutenberg.org/ebooks/6991', 'en', 179), +(9044, 'James Nasmyth, Engineer: An Autobiography', 'Nasmyth, James', '1996-03-01', 95, 'https://www.gutenberg.org/ebooks/476', 'en', 4812), +(9045, 'The Happy End', 'Hergesheimer, Joseph', '2005-04-01', 12, 'https://www.gutenberg.org/ebooks/7843', 'en', 112), +(9046, 'Composition-Rhetoric', 'Brooks, Stratton D. (Stratton Duluth)', '2004-04-01', 42, 'https://www.gutenberg.org/ebooks/12088', 'en', 2270), +(9047, 'Handbuch der deutschen Kunstdenkmäler, Bd.1, Mitteldeutschland, 1914', 'Dehio, Georg', '2006-10-04', 39, 'https://www.gutenberg.org/ebooks/19460', 'de', 4813), +(9048, 'La lanterna di Diogene', 'Panzini, Alfredo', '2015-06-28', 10, 'https://www.gutenberg.org/ebooks/49310', 'it', 1544), +(9049, 'The Bible, King James version, Book 37: Haggai', 'Anonymous', '2005-04-01', 24, 'https://www.gutenberg.org/ebooks/8037', 'en', 4814), +(9050, 'Continuous Vaudeville', 'Cressy, Will M. (Will Martin)', '2009-03-14', 24, 'https://www.gutenberg.org/ebooks/28327', 'en', 190), +(9051, 'Punch, or the London Charivari, Volume 152, January 17, 1917', 'Various', '2004-11-06', 10, 'https://www.gutenberg.org/ebooks/13966', 'en', 134), +(9052, 'Nooks and Corners of Cornwall', 'Dawson Scott, C. A. (Catharine Amy)', '2010-12-28', 25, 'https://www.gutenberg.org/ebooks/34778', 'en', 2082), +(9053, 'Max Fargus', 'Johnson, Owen', '2014-07-22', 18, 'https://www.gutenberg.org/ebooks/46358', 'en', 4815), +(9054, 'Os fidalgos da Casa Mourisca\r\nChronica da aldeia', 'Dinis, Júlio', '2005-08-04', 33, 'https://www.gutenberg.org/ebooks/16428', 'pt', 4816), +(9055, 'The Legend of the Glorious Adventures of Tyl Ulenspiegel in the land of Flanders and elsewhere', 'Coster, Charles de', '2011-10-02', 41, 'https://www.gutenberg.org/ebooks/37599', 'en', 4817), +(9056, 'The Sages and Heroes of the American Revolution', 'Judson, L. Carroll (Levi Carroll)', '2010-10-25', 60, 'https://www.gutenberg.org/ebooks/33905', 'en', 3643), +(9057, 'Minkie', 'Tracy, Louis', '2018-12-09', 30, 'https://www.gutenberg.org/ebooks/58434', 'en', 4818), +(9058, 'Punch, or the London Charivari, Vol. 147, July 29, 1914', 'Various', '2008-06-20', 30, 'https://www.gutenberg.org/ebooks/25860', 'en', 134), +(9059, 'Kertomuksia Suomen historiasta V:1\nKustaa Aadolf ja Kristiina: Sodat', 'Krohn, Julius', '2014-02-09', 37, 'https://www.gutenberg.org/ebooks/44857', 'fi', 1578), +(9060, 'Gen. Cowdin and the First Massachusetts Regiment of Volunteers', 'Cowdin, Robert', '2010-07-11', 21, 'https://www.gutenberg.org/ebooks/33139', 'en', 4819), +(9061, 'The Book: Its History and Development', 'Davenport, Cyril', '2016-08-29', 21, 'https://www.gutenberg.org/ebooks/52932', 'en', 3349), +(9062, 'Historic Fredericksburg: The Story of an Old Town', 'Goolrick, John T. (John Tackett)', '2012-04-09', 31, 'https://www.gutenberg.org/ebooks/39403', 'en', 4820), +(9063, 'Thought-Culture; Or, Practical Mental Training', 'Atkinson, William Walker', '2012-11-30', 75, 'https://www.gutenberg.org/ebooks/41519', 'en', 1482), +(9064, 'Virgie\'s Inheritance', 'Sheldon, Georgie, Mrs.', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11269', 'en', 50), +(9065, 'Kantelettaren tutkimuksia 1\r\nRitvalan helkavirret. Historiallise runot', 'Krohn, Julius', '2014-06-15', 7, 'https://www.gutenberg.org/ebooks/45985', 'fi', 4821), +(9066, 'The Customs of Old England', 'Snell, F. J. (Frederick John)', '2006-08-07', 29, 'https://www.gutenberg.org/ebooks/19004', 'en', 4822), +(9067, 'Grundriß der menschlichen Erblichkeitslehre und Rassenhygiene (1/2)\nMenschliche Erblichkeitslehre', 'Lenz, Fritz', '2015-08-24', 37, 'https://www.gutenberg.org/ebooks/49774', 'de', 1041), +(9068, 'Injun and Whitey to the Rescue', 'Hart, William S.', '2005-10-14', 10, 'https://www.gutenberg.org/ebooks/16870', 'en', 315), +(9069, 'Actes et Paroles, Volume 2: Pendant l\'exil 1852-1870', 'Hugo, Victor', '2005-07-01', 14, 'https://www.gutenberg.org/ebooks/8453', 'fr', 920), +(9070, 'Personal Poems I\r\nPart 1 from Volume IV of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9581', 'en', 350), +(9071, 'Miscellaneous Writings and Speeches — Volume 3', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 25, 'https://www.gutenberg.org/ebooks/2169', 'en', 472), +(9072, 'Embankment at Night', 'Lawrence, D. H. (David Herbert)', '2006-11-18', 6, 'https://www.gutenberg.org/ebooks/19838', 'en', 8), +(9073, 'Phil Bradley\'s Mountain Boys\nThe Birch Bark Lodge', 'Boone, Silas K.', '2007-08-08', 10, 'https://www.gutenberg.org/ebooks/22279', 'en', 3), +(9074, 'Taxidermy', 'Pray, Leon Luther', '2009-08-15', 15, 'https://www.gutenberg.org/ebooks/29691', 'en', 2132), +(9075, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 4\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 3, 'https://www.gutenberg.org/ebooks/3887', 'en', 4453), +(9076, 'Vivian\'s Lesson', 'Grierson, Elizabeth W. (Elizabeth Wilson)', '2015-12-10', 6, 'https://www.gutenberg.org/ebooks/50659', 'en', 4823), +(9077, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 05: Milan and Mantua', 'Casanova, Giacomo', '2004-12-10', 11, 'https://www.gutenberg.org/ebooks/2955', 'en', 4391), +(9078, 'Miss Ashton\'s New Pupil: A School Girl\'s Story', 'Robbins, Sarah Stuart', '2009-05-10', 17, 'https://www.gutenberg.org/ebooks/28743', 'en', 1655), +(9079, 'Lavengro\nThe Scholar - The Gypsy - The Priest, Vol. 1 (of 2)', 'Borrow, George', '2007-10-03', 17, 'https://www.gutenberg.org/ebooks/22877', 'en', 3294), +(9080, 'A Diplomat\'s Memoir of 1870\r\nbeing the account of a balloon escape from the siege of Paris and a political mission to London and Vienna', 'Reitlinger, Frederic', '2015-07-29', 10, 'https://www.gutenberg.org/ebooks/49546', 'en', 4824), +(9081, 'An Algonquin Maiden: A Romance of the Early Days of Upper Canada', 'Wetherald, A. Ethelwyn', '2005-08-01', 30, 'https://www.gutenberg.org/ebooks/8661', 'en', 98), +(9082, 'The Valley of Fear', 'Doyle, Arthur Conan', '2002-06-01', 583, 'https://www.gutenberg.org/ebooks/3289', 'en', 430), +(9083, 'Japan Will Turn Ablaze!', NULL, '2006-09-12', 24, 'https://www.gutenberg.org/ebooks/19236', 'en', 4825), +(9084, 'The Review; Vol. 1, No. 4, April, 1911', 'Various', '2017-07-15', 5, 'https://www.gutenberg.org/ebooks/55119', 'en', 4611), +(9085, 'Woman in Science\nWith an Introductory Chapter on Woman\'s Long Struggle for Things of the Mind', 'Zahm, J. A. (John Augustine)', '2011-01-11', 43, 'https://www.gutenberg.org/ebooks/34912', 'en', 4826), +(9086, 'The Secret Sharer', 'Conrad, Joseph', '2006-01-09', 318, 'https://www.gutenberg.org/ebooks/220', 'en', 1391), +(9087, 'Naapurit: Alkuperäinen kertomus', 'Stenius, John', '2008-12-15', 7, 'https://www.gutenberg.org/ebooks/27539', 'fi', 61), +(9088, 'Beadle\'s Dime Song Book No. 1\nA Collection of New and Popular Comic and Sentimental Songs.', 'Various', '2015-03-15', 15, 'https://www.gutenberg.org/ebooks/48494', 'en', 4827), +(9089, 'Castes and Tribes of Southern India. Vol. 2 of 7', 'Thurston, Edgar', '2013-06-21', 73, 'https://www.gutenberg.org/ebooks/42992', 'en', 4828), +(9090, 'Devereux — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7629', 'en', 4464), +(9091, 'Kant\'s gesammelte Schriften. Band V. Kritik der Urtheilskraft.', 'Kant, Immanuel', '2017-11-09', 37, 'https://www.gutenberg.org/ebooks/55925', 'de', 4829), +(9092, 'Poison Romance and Poison Mysteries', 'Thompson, C. J. S. (Charles John Samuel)', '2013-09-28', 25, 'https://www.gutenberg.org/ebooks/43840', 'en', 4830), +(9093, 'Un frère de Nicolas Foucquet: François, Archevêque de Narbonne; Exilé à Alençon', 'Duval, Louis François Marin', '2007-10-26', 15, 'https://www.gutenberg.org/ebooks/23199', 'fr', 1247), +(9094, 'My Days and Nights on the Battle-Field', 'Coffin, Charles Carleton', '2009-04-21', 21, 'https://www.gutenberg.org/ebooks/28571', 'en', 2723), +(9095, 'An Essay on Laughter: Its Forms, Its Causes, Its Development and Its Value', 'Sully, James', '2019-01-03', 7, 'https://www.gutenberg.org/ebooks/58606', 'en', 4831), +(9096, 'The Old English Physiologus', 'Cynewulf', '2004-12-30', 85, 'https://www.gutenberg.org/ebooks/14529', 'en', 4832), +(9097, 'William Dwight Whitney', 'Seymour, Thomas D. (Thomas Day)', '2013-11-23', 8, 'https://www.gutenberg.org/ebooks/44259', 'en', 4833), +(9098, 'The Alaskan', 'Curwood, James Oliver', '2004-04-01', 63, 'https://www.gutenberg.org/ebooks/11867', 'en', 535), +(9099, 'An American', 'Gue, Belle Willey', '2011-07-10', 12, 'https://www.gutenberg.org/ebooks/36679', 'en', 4834), +(9100, 'The History of Don Quixote, Volume 2, Part 39', 'Cervantes Saavedra, Miguel de', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5942', 'en', 2176), +(9101, 'Three Rubes Seeing New York', 'Edison Vaudeville Company', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10189', 'en', 4474), +(9102, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1609-14', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4890', 'en', 4328), +(9103, 'The Runaways: A New and Original Story', 'Gould, Nat', '2012-05-05', 12, 'https://www.gutenberg.org/ebooks/39631', 'en', 4835), +(9104, 'Suorasanaisia runoelmia', 'Runeberg, Johan Ludvig', '2015-02-09', 8, 'https://www.gutenberg.org/ebooks/48209', 'fi', 4836), +(9105, 'The Preacher of Cedar Mountain: A Tale of the Open Country', 'Seton, Ernest Thompson', '2009-10-22', 25, 'https://www.gutenberg.org/ebooks/30313', 'en', 55), +(9106, 'The Cross of Berny; Or, Irene\'s Lovers', 'Girardin, Emile de, Mme', '2004-08-15', 33, 'https://www.gutenberg.org/ebooks/13191', 'en', 258), +(9107, 'Hurdy-Gurdy: Bilder aus einem Landgängerdorfe', 'Schupp, Ottokar', '2017-05-03', 14, 'https://www.gutenberg.org/ebooks/54656', 'de', 138), +(9108, 'Taken by the Enemy', 'Optic, Oliver', '2006-06-14', 48, 'https://www.gutenberg.org/ebooks/18579', 'en', 4837), +(9109, 'Two Strangers', 'Oliphant, Mrs. (Margaret)', '2017-10-21', 17, 'https://www.gutenberg.org/ebooks/55784', 'en', 61), +(9110, 'Punch, or the London Charivari, Volume 153, August 1, 1917.', 'Various', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/12043', 'en', 134), +(9111, 'Wie Wiselis Weg gefunden wird Erzählung', 'Spyri, Johanna', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7888', 'de', 2166), +(9112, 'History of Company E of the Sixth Minnesota Regiment of Volunteer Infantry', 'Stees, Charles J.', '2008-08-11', 35, 'https://www.gutenberg.org/ebooks/26276', 'en', 4838), +(9113, 'The South Pole; an account of the Norwegian Antarctic expedition in the \"Fram,\" 1910-1912 — Volume 1', 'Amundsen, Roald', '2002-09-01', 51, 'https://www.gutenberg.org/ebooks/3414', 'en', 4839), +(9114, 'The Brighton Boys in the Trenches', 'Driscoll, James R.', '2013-05-18', 14, 'https://www.gutenberg.org/ebooks/42733', 'en', 4840), +(9115, 'Schönberg-Cotta perheen aikakirjat\nLuonne- ja tapakuvaelma uskonpuhdistuksen ajoilta', 'Charles, Elizabeth Rundle', '2007-12-03', 8, 'https://www.gutenberg.org/ebooks/23704', 'fi', 55), +(9116, 'An Explanation of Luther\'s Small Catechism', 'Stump, Joseph', '2006-02-01', 35, 'https://www.gutenberg.org/ebooks/9912', 'en', 4841), +(9117, 'The Botanical Magazine, Vol. 02\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2006-01-16', 65, 'https://www.gutenberg.org/ebooks/17531', 'en', 97); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(9118, 'The Saxons: A Drama of Christianity in the North', 'Schoonmaker, Edwin Davies', '2014-10-30', 25, 'https://www.gutenberg.org/ebooks/47241', 'en', 402), +(9119, 'Charles Lamb: A Memoir', 'Cornwall, Barry', '2004-07-01', 19, 'https://www.gutenberg.org/ebooks/6166', 'en', 4842), +(9120, 'Mysterious Mr. Sabin', 'Oppenheim, E. Phillips (Edward Phillips)', '2011-03-23', 38, 'https://www.gutenberg.org/ebooks/35661', 'en', 61), +(9121, 'Maan ympäri 80 päivässä', 'Verne, Jules', '2014-07-24', 34, 'https://www.gutenberg.org/ebooks/46393', 'fi', 323), +(9122, 'La vita Italiana nel Risorgimento (1815-1831), parte 2\r\nConferenze fiorentine - Storia', 'Various', '2016-02-28', 7, 'https://www.gutenberg.org/ebooks/51324', 'it', 4843), +(9123, 'An anthology of German literature', 'Thomas, Calvin', '2007-04-13', 21, 'https://www.gutenberg.org/ebooks/21053', 'de', 422), +(9124, 'What Peace Means', 'Van Dyke, Henry', '2005-03-05', 5, 'https://www.gutenberg.org/ebooks/15266', 'en', 1122), +(9125, 'The Elroom', 'Sohl, Jerry', '2019-03-29', 43, 'https://www.gutenberg.org/ebooks/59149', 'en', 376), +(9126, 'The Life and Writings of Henry Fuseli, Volume 2 (of 3)', 'Fuseli, Henry', '2012-06-01', 19, 'https://www.gutenberg.org/ebooks/39890', 'en', 4844), +(9127, 'Macmillan\'s Three-and-Sixpenny Library of Books by Popular Authors December 1905', 'Macmillan & Co.', '2014-04-28', 3, 'https://www.gutenberg.org/ebooks/45516', 'en', 4845), +(9128, 'The Hand but Not the Heart; Or, The Life-Trials of Jessie Loring', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/4631', 'en', 109), +(9129, 'The Happy Golfer\r\nBeing Some Experiences, Reflections, and a Few Deductions of a Wandering Golfer', 'Leach, Henry', '2011-08-19', 54, 'https://www.gutenberg.org/ebooks/37136', 'en', 4846), +(9130, 'The Oregon Territory, Its History and Discovery', 'Twiss, Travers', '2012-02-21', 18, 'https://www.gutenberg.org/ebooks/38942', 'en', 4847), +(9131, 'Ireland under the Stuarts and During the Interregnum, Vol. 1 (of 3), 1603-1642', 'Bagwell, Richard', '2016-11-07', 7, 'https://www.gutenberg.org/ebooks/53473', 'en', 4848), +(9132, 'History of the Reformation in the Sixteenth Century, Volume 1', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2012-09-25', 115, 'https://www.gutenberg.org/ebooks/40858', 'en', 827), +(9133, 'A Defective Santa Claus', 'Riley, James Whitcomb', '2006-12-25', 30, 'https://www.gutenberg.org/ebooks/20181', 'en', 381), +(9134, 'The Impostor: A Tale of Old Annapolis', 'Scott, John Reed', '2019-07-24', 765, 'https://www.gutenberg.org/ebooks/59975', 'en', 4849), +(9135, 'Tales from the German. Volume II.', 'Velde, C. F. van der (Carl Franz)', '2010-05-19', 7, 'https://www.gutenberg.org/ebooks/32444', 'en', 803), +(9136, 'Sweet Rocket', 'Johnston, Mary', '2017-12-01', 15, 'https://www.gutenberg.org/ebooks/56101', 'en', 4850), +(9137, 'The Essays of Arthur Schopenhauer; The Art of Literature', 'Schopenhauer, Arthur', '2004-01-01', 76, 'https://www.gutenberg.org/ebooks/10714', 'en', 4851), +(9138, 'In Case of Fire', 'Garrett, Randall', '2008-02-05', 51, 'https://www.gutenberg.org/ebooks/24521', 'en', 1061), +(9139, 'Bureaucracy', 'Balzac, Honoré de', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/1343', 'en', 58), +(9140, 'Mary, Help of Christians, and the Fourteen Saints Invoked as Holy Helpers\r\nInstructions, Novenas and Prayers with Thoughts of the Saints for Every Day in the Year; To Which is Added an Appendix on the Reasonableness of Catholic Ceremonies and Practices', NULL, '2010-08-31', 38, 'https://www.gutenberg.org/ebooks/33596', 'en', 3118), +(9141, 'Mal Moulée: A Novel', 'Wilcox, Ella Wheeler', '2012-06-23', 9, 'https://www.gutenberg.org/ebooks/40064', 'en', 847), +(9142, 'Social Origins and Primal Law', 'Lang, Andrew', '2014-05-23', 43, 'https://www.gutenberg.org/ebooks/45724', 'en', 42), +(9143, 'The Shaving of Shagpat; an Arabian entertainment — Volume 3', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4403', 'en', 2634), +(9144, 'The Attempted Assassination of ex-President Theodore Roosevelt', 'Remey, Oliver E.', '2007-04-30', 24, 'https://www.gutenberg.org/ebooks/21261', 'en', 4594), +(9145, 'Viajes de un Colombiano en Europa, segunda serie', 'Samper, José María', '2005-02-14', 13, 'https://www.gutenberg.org/ebooks/15054', 'es', 1408), +(9146, 'Historical Record of the Seventeenth, or the Leicestershire Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1688, and of Its Subsequent Services to 1848', 'Cannon, Richard', '2016-08-13', 3, 'https://www.gutenberg.org/ebooks/52793', 'en', 4852), +(9147, 'The Black Box: A Tale of Monmouth\'s Rebellion', 'Cooke, W. Bourne', '2016-11-30', 11, 'https://www.gutenberg.org/ebooks/53641', 'en', 4853), +(9148, 'Punch, or the London Charivari, Volume 101, December 19, 1891', 'Various', '2004-11-28', 5, 'https://www.gutenberg.org/ebooks/14186', 'en', 134), +(9149, 'Those Dale Girls', 'Prindle, Frances Carruth', '2011-09-03', 8, 'https://www.gutenberg.org/ebooks/37304', 'en', 48), +(9150, 'Helleenit ja barbaarit: Romaani persialaissotien ajoilta', 'Michaëlis, Sophus', '2018-01-07', 5, 'https://www.gutenberg.org/ebooks/56333', 'fi', 2631), +(9151, 'Napoleon: Eine Novelle', 'Sternheim, Carl', '2012-11-17', 15, 'https://www.gutenberg.org/ebooks/41384', 'de', 4854), +(9152, 'The Man Without a Country, and Other Tales', 'Hale, Edward Everett', '2005-05-20', 67, 'https://www.gutenberg.org/ebooks/15868', 'en', 2224), +(9153, 'The Test Colony', 'Marks, Winston K. (Winston Kinney)', '2010-06-03', 60, 'https://www.gutenberg.org/ebooks/32676', 'en', 26), +(9154, 'The Apology', 'Xenophon', '1998-01-01', 134, 'https://www.gutenberg.org/ebooks/1171', 'en', 4117), +(9155, 'Barium: A Cause of the Loco-Weed Disease', 'Crawford, Albert Cornelius', '2012-07-16', 13, 'https://www.gutenberg.org/ebooks/40256', 'en', 4855), +(9156, 'Nancy Whiskey', 'McGuinn, Roger', '2003-12-01', 3, 'https://www.gutenberg.org/ebooks/10526', 'en', 4856), +(9157, 'Stories of New Jersey', 'Stockton, Frank Richard', '2008-02-28', 27, 'https://www.gutenberg.org/ebooks/24713', 'en', 4857), +(9158, 'Cheap Postage', 'Leavitt, Joshua', '2008-11-07', 5, 'https://www.gutenberg.org/ebooks/27196', 'en', 4858), +(9159, 'John Herring: A West of England Romance. Volume 2 (of 3)', 'Baring-Gould, S. (Sabine)', '2017-03-31', 3, 'https://www.gutenberg.org/ebooks/54464', 'en', 4744), +(9160, 'The Art of Confectionary\r\nShewing the Various Methods of Preserving All Sorts of Fruits, Dry and Liquid; viz. Oranges, Lemons, Citrons, Golden Pippins, Wardens, Apricots Green, Almonds, Goosberries, Cherries, Currants, Plumbs, Rasberries, Peaches, Walnuts, Nectarines, Figs, Grapes, &c., Flowers and Herbs; as Violets, Angelica, Orange-Flowers, &c.; Also How to Make All Sorts of Biscakes, Maspins, Sugar-Works, and Candies. With the Best Methods of Clarifying, and the Different Ways of Boiling Sugar.', 'Lambert, Edward', '2009-09-28', 137, 'https://www.gutenberg.org/ebooks/30121', 'en', 1372), +(9161, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of Abraham Lincoln', 'Lincoln, Abraham', '2003-01-01', 8, 'https://www.gutenberg.org/ebooks/3626', 'en', 1026), +(9162, 'El tesoro misterioso', 'Le Queux, William', '2009-08-28', 111, 'https://www.gutenberg.org/ebooks/29830', 'es', 128), +(9163, 'New York Sketches', 'Williams, Jesse Lynch', '2013-04-09', 14, 'https://www.gutenberg.org/ebooks/42501', 'en', 2196), +(9164, 'Contes littéraires du bibliophile Jacob à ses petits-enfants', 'Jacob, P. L.', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/12271', 'fr', 179), +(9165, 'Encyclopaedia Britannica, 11th Edition, \"Bréquigny, Louis Georges Oudard Feudrix de\" to \"Bulgaria\"\r\nVolume 4, Part 3', 'Various', '2006-11-02', 70, 'https://www.gutenberg.org/ebooks/19699', 'en', 1081), +(9166, 'Peter and Jane; Or, The Missing Heir', 'Macnaughtan, S. (Sarah)', '2008-07-12', 19, 'https://www.gutenberg.org/ebooks/26044', 'en', 1380), +(9167, 'Elegyes gyüjtések Magyarország és Erdély különböző részeiből\r\nNépköltési gyüjtemény 1. kötet', NULL, '2014-10-07', 8, 'https://www.gutenberg.org/ebooks/47073', 'hu', 1422), +(9168, 'Der Pfaffenspiegel\nHistorische Denkmale des Fanatismus in der römisch-katholischen Kirche', 'Corvin, Otto von', '2010-12-05', 35, 'https://www.gutenberg.org/ebooks/34581', 'de', 4859), +(9169, 'Italian Hours', 'James, Henry', '2004-08-01', 128, 'https://www.gutenberg.org/ebooks/6354', 'en', 4860), +(9170, 'First Offensive: The Marine Campaign for Guadalcanal', 'Shaw, Henry I.', '2015-04-27', 55, 'https://www.gutenberg.org/ebooks/48807', 'en', 4861), +(9171, 'Hatty and Marcus\nor, First Steps in the Better Path', 'Friendly, Aunt', '2007-11-18', 3, 'https://www.gutenberg.org/ebooks/23536', 'en', 195), +(9172, 'The Tales of the Heptameron, Vol. 3 (of 5)', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2006-02-07', 28, 'https://www.gutenberg.org/ebooks/17703', 'en', 4748), +(9173, 'The Geologic Story of Arches National Park\nGeological Survey Bulletin 1393', 'Lohman, Stanley William', '2016-02-03', 7, 'https://www.gutenberg.org/ebooks/51116', 'en', 4862), +(9174, 'Τίμαιος, Τόμος Α', 'Plato', '2011-03-02', 24, 'https://www.gutenberg.org/ebooks/35453', 'el', 4863), +(9175, '韓詩外傳, Vol. 3-4', 'Han, Ying, active 150 B.C.', '2005-01-01', 2, 'https://www.gutenberg.org/ebooks/7286', 'zh', 4436), +(9176, 'The Repairing & Restoration of Violins\n\'The Strad\' Library, No. XII.', 'Petherick, Horace', '2008-10-11', 41, 'https://www.gutenberg.org/ebooks/26878', 'en', 4864), +(9177, 'A Society Clown: Reminiscences', 'Grossmith, George', '2016-10-06', 15, 'https://www.gutenberg.org/ebooks/53225', 'en', 4865), +(9178, 'L\'Illustration, No. 3652, 22 Février 1913', 'Various', '2011-10-15', 2, 'https://www.gutenberg.org/ebooks/37760', 'fr', 150), +(9179, 'The Bruce', 'Barbour, John', '2013-11-27', 32, 'https://www.gutenberg.org/ebooks/44292', 'en', 4866), +(9180, 'Sallimus: Itämainen kertomus', 'Voltaire', '2014-04-07', 23, 'https://www.gutenberg.org/ebooks/45340', 'fi', 742), +(9181, 'Frederick the Great and His Court', 'Mühlbach, L. (Luise)', '2003-05-01', 12, 'https://www.gutenberg.org/ebooks/4067', 'en', 4867), +(9182, 'Uncle Remus, his songs and his sayings', 'Harris, Joel Chandler', '2007-05-31', 111, 'https://www.gutenberg.org/ebooks/21605', 'en', 4868), +(9183, 'The Lever: A Novel', 'Orcutt, William Dana', '2005-03-21', 11, 'https://www.gutenberg.org/ebooks/15430', 'en', 61), +(9184, 'The Merchant of Venice', 'Shakespeare, William', '1998-11-01', 369, 'https://www.gutenberg.org/ebooks/1515', 'en', 4869), +(9185, 'Dunamelléki eredeti népmesék (1. kötet)', 'Merényi, László', '2012-01-31', 12, 'https://www.gutenberg.org/ebooks/38728', 'hu', 2), +(9186, 'Keltaruusu: Kertomus Unkarin tasangolta', 'Jókai, Mór', '2012-08-31', 21, 'https://www.gutenberg.org/ebooks/40632', 'fi', 2326), +(9187, 'Maezli: A Story of the Swiss Valleys', 'Spyri, Johanna', '2003-11-01', 39, 'https://www.gutenberg.org/ebooks/10142', 'en', 3427), +(9188, 'Griffith Gaunt; or, Jealousy\nVolumes 1 to 3 (of 3)', 'Reade, Charles', '2018-08-13', 27, 'https://www.gutenberg.org/ebooks/57685', 'en', 137), +(9189, 'The Curlytops on Star Island; Or, Camping out with Grandpa', 'Garis, Howard Roger', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/5989', 'en', 550), +(9190, 'Indienfahrt', 'Bonsels, Waldemar', '2008-01-20', 44, 'https://www.gutenberg.org/ebooks/24377', 'de', 1975), +(9191, 'Kloka Maja och andra berättelser', 'Hedberg, Frans', '2018-03-16', 11, 'https://www.gutenberg.org/ebooks/56757', 'sv', 420), +(9192, 'Industrial Progress and Human Economics', 'Hartness, James', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/11090', 'en', 4870), +(9193, 'Clean Break', 'Aycock, Roger D.', '2010-05-02', 37, 'https://www.gutenberg.org/ebooks/32212', 'en', 4871), +(9194, 'The Doctor : A Tale of the Rockies', 'Connor, Ralph', '2006-06-03', 28, 'https://www.gutenberg.org/ebooks/3242', 'en', 4872), +(9195, 'The Brassbounder: A Tale of the Sea', 'Bone, David W. (David William)', '2010-03-04', 22, 'https://www.gutenberg.org/ebooks/31497', 'en', 533), +(9196, 'The World Before Them: A Novel. Volume 1 (of 3)', 'Moodie, Susanna', '2013-02-22', 13, 'https://www.gutenberg.org/ebooks/42165', 'en', 61), +(9197, 'The Song of our Syrian Guest', 'Knight, William Allen', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12615', 'en', 4873), +(9198, 'The Convert', 'Robins, Elizabeth', '2008-08-24', 29, 'https://www.gutenberg.org/ebooks/26420', 'en', 3994), +(9199, 'Punainen viiva', 'Kianto, Ilmari', '2017-01-17', 33, 'https://www.gutenberg.org/ebooks/54000', 'fi', 175), +(9200, 'Vane of the Timberlands', 'Bindloss, Harold', '2006-01-01', 17, 'https://www.gutenberg.org/ebooks/9778', 'en', 4874), +(9201, 'The Conquest of the Old Southwest; the romantic story of the early pioneers into Virginia, the Carolinas, Tennessee, and Kentucky, 1740-1790', 'Henderson, Archibald', '2000-11-01', 24, 'https://www.gutenberg.org/ebooks/2390', 'en', 4875), +(9202, 'The A, B, C. With the Church of England Catechism', 'Unknown', '2009-11-25', 12, 'https://www.gutenberg.org/ebooks/30545', 'en', 4876), +(9203, 'In Good Company\r\nSome personal recollections of Swinburne, Lord Roberts, Watts-Dunton, Oscar Wilde Edward Whymper, S. J. Stone, Stephen Phillips', 'Kernahan, Coulson', '2016-03-27', 12, 'https://www.gutenberg.org/ebooks/51572', 'en', 4877), +(9204, 'True Stories of Wonderful Deeds\nPictures and Stories for Little Folk', 'Anonymous', '2007-07-16', 65, 'https://www.gutenberg.org/ebooks/22080', 'en', 4878), +(9205, 'The Survey of London', 'Stow, John', '2013-06-16', 69, 'https://www.gutenberg.org/ebooks/42959', 'en', 856), +(9206, 'The Story of Don Quixote', 'Edwards, Clayton', '2009-07-20', 126, 'https://www.gutenberg.org/ebooks/29468', 'en', 89), +(9207, 'Napoleon\'s Young Neighbor', 'Reed, Helen Leah', '2011-01-22', 71, 'https://www.gutenberg.org/ebooks/35037', 'en', 2362), +(9208, 'The Motor Boys After a Fortune; or, The Hut on Snake Island', 'Young, Clarence', '2014-11-22', 22, 'https://www.gutenberg.org/ebooks/47417', 'en', 2279), +(9209, 'Observations of a Retired Veteran', 'Tinsley, Henry C.', '2004-10-01', 10, 'https://www.gutenberg.org/ebooks/6730', 'en', 620), +(9210, 'The McBrides\nA Romance of Arran', 'Sillars, John', '2007-10-22', 21, 'https://www.gutenberg.org/ebooks/23152', 'en', 4879), +(9211, 'First Book in Physiology and Hygiene', 'Kellogg, John Harvey', '2005-12-21', 80, 'https://www.gutenberg.org/ebooks/17367', 'en', 4880), +(9212, 'Neutral Rights and Obligations in the Anglo-Boer War', 'Campbell, Robert Granville', '2004-05-01', 3, 'https://www.gutenberg.org/ebooks/12427', 'en', 1956), +(9213, 'A Pirate of Parts', 'Neville, Richard', '2008-09-14', 8, 'https://www.gutenberg.org/ebooks/26612', 'en', 4881), +(9214, 'The Atlantic Monthly, Volume 01, No. 01, November, 1857\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-07-01', 36, 'https://www.gutenberg.org/ebooks/8498', 'en', 1227), +(9215, 'The Hound of the Baskervilles', 'Doyle, Arthur Conan', '2002-02-01', 579, 'https://www.gutenberg.org/ebooks/3070', 'en', 834), +(9216, 'The Adventure of Princess Sylvia', 'Williamson, A. M. (Alice Muriel)', '2013-03-20', 52, 'https://www.gutenberg.org/ebooks/42357', 'en', 757), +(9217, 'Il frutto acerbo: Commedia in tre atti', 'Bracco, Roberto', '2013-07-23', 8, 'https://www.gutenberg.org/ebooks/43285', 'it', 407), +(9218, 'Mound-Builders', 'Smyth, William J.', '2006-03-12', 11, 'https://www.gutenberg.org/ebooks/17969', 'en', 4882), +(9219, 'A Casa do Saltimbanco', 'Stolz, Mme. de', '2009-12-28', 20, 'https://www.gutenberg.org/ebooks/30777', 'pt', 61), +(9220, 'Earthquakes and Other Earth Movements', 'Milne, John', '2019-07-29', 632, 'https://www.gutenberg.org/ebooks/60007', 'en', 4883), +(9221, 'The Irish Penny Journal, Vol. 1 No. 13, September 26, 1840', 'Various', '2017-02-25', 3, 'https://www.gutenberg.org/ebooks/54232', 'en', 81), +(9222, 'Who?', 'Kent, Elizabeth', '2011-02-07', 16, 'https://www.gutenberg.org/ebooks/35205', 'en', 48), +(9223, 'The Atlantic Monthly, Volume 14, No. 84, October, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-06-18', 8, 'https://www.gutenberg.org/ebooks/16087', 'en', 1227), +(9224, 'Don\'t Look Now', 'Rubin, Leonard', '2016-04-12', 35, 'https://www.gutenberg.org/ebooks/51740', 'en', 4884), +(9225, 'Our New Neighbors At Ponkapog', 'Aldrich, Thomas Bailey', '2007-11-06', 27, 'https://www.gutenberg.org/ebooks/23360', 'en', 179), +(9226, 'Jeux et exercices des jeunes filles', 'Du Parquet, Marguerite', '2009-05-13', 21, 'https://www.gutenberg.org/ebooks/28788', 'fr', 1557), +(9227, 'Cicero: Letters to Atticus, Vol. 2 of 3', 'Cicero, Marcus Tullius', '2015-12-15', 23, 'https://www.gutenberg.org/ebooks/50692', 'en', 4885), +(9228, 'About Orchids: A Chat', 'Boyle, Frederick', '2005-11-26', 106, 'https://www.gutenberg.org/ebooks/17155', 'en', 4886), +(9229, 'Motor Matt\'s Clue; or, The Phantom Auto', 'Matthews, Stanley R.', '2014-12-11', 21, 'https://www.gutenberg.org/ebooks/47625', 'en', 4887), +(9230, 'Les mystères de Paris, Tome I', 'Sue, Eugène', '2006-07-27', 32, 'https://www.gutenberg.org/ebooks/18921', 'fr', 560), +(9231, 'The Acadian Exiles : a Chronicle of the Land of Evangeline', 'Doughty, Arthur G. (Arthur George), Sir', '2004-09-01', 34, 'https://www.gutenberg.org/ebooks/6502', 'en', 4888), +(9232, 'The pragmatic theory of truth as developed by Peirce, James, and Dewey', 'Geyer, Denton Loring', '2011-09-28', 38, 'https://www.gutenberg.org/ebooks/37552', 'en', 4889), +(9233, 'The Celebrity, Complete', 'Churchill, Winston', '2004-10-19', 41, 'https://www.gutenberg.org/ebooks/5387', 'en', 4890), +(9234, 'A Source Book for Ancient Church History', 'Ayer, Joseph Cullen', '2008-04-02', 55, 'https://www.gutenberg.org/ebooks/24979', 'en', 3461), +(9235, 'Pietari Suuri: Venäjän ensimmäinen keisari', 'Lindeqvist, K. O.', '2016-09-09', 29, 'https://www.gutenberg.org/ebooks/53017', 'fi', 4891), +(9236, 'North of Boston', 'Frost, Robert', '2007-05-18', 6, 'https://www.gutenberg.org/ebooks/21437', 'en', 994), +(9237, 'Statistical, Historical and Political Description of the Colony of New South Wales and its Dependent Settlements in Van Diemen\'s Land\r\nWith a Particular Enumeration of the Advantages Which These Colonies Offer for Emigration, and Their Superiority in Many Respects Over Those Possessed by the United States of America', 'Wentworth, W. C. (William Charles)', '2005-04-11', 19, 'https://www.gutenberg.org/ebooks/15602', 'en', 4892), +(9238, 'Fresh Leaves', 'Fern, Fanny', '2014-03-18', 15, 'https://www.gutenberg.org/ebooks/45172', 'en', 112), +(9239, 'The Sweep Winner', 'Gould, Nat', '2011-06-22', 15, 'https://www.gutenberg.org/ebooks/36480', 'en', 792), +(9240, 'A Yorkshire Tragedy', 'Shakespeare (spurious and doubtful works)', '2003-07-01', 15, 'https://www.gutenberg.org/ebooks/4255', 'en', 4893), +(9241, 'Sustained honor: The Age of Liberty Established', 'Musick, John R. (John Roy)', '2003-12-01', 31, 'https://www.gutenberg.org/ebooks/10370', 'en', 3858), +(9242, 'Doktoro Jekyll kaj Sinjoro Hyde', 'Stevenson, Robert Louis', '2008-01-03', 39, 'https://www.gutenberg.org/ebooks/24145', 'eo', 1079), +(9243, 'The Odyssey\r\nRendered into English prose for the use of those who cannot read the original', 'Homer', '1999-04-01', 2490, 'https://www.gutenberg.org/ebooks/1727', 'en', 4894), +(9244, 'History of the Origin, Formation, and Adoption of the Constitution of the United States, Vol. 1\r\nWith Notices of Its Principle Framers', 'Curtis, George Ticknor', '2012-08-03', 32, 'https://www.gutenberg.org/ebooks/40400', 'en', 3472), +(9245, 'Serão inquieto : contos', 'Patrício, António', '2010-04-17', 8, 'https://www.gutenberg.org/ebooks/32020', 'pt', 61), +(9246, 'Cités et ruines américaines: Mitla, Palenqué, Izamal, Chichen-Itza, Uxmal', 'Viollet-le-Duc, Eugène-Emmanuel', '2008-04-18', 59, 'https://www.gutenberg.org/ebooks/25097', 'fr', 4895), +(9247, 'Graham\'s Magazine, Vol. XXX, No. 4, April 1847', 'Various', '2018-02-13', 9, 'https://www.gutenberg.org/ebooks/56565', 'en', 380), +(9248, 'Welcome, Martians!', 'Hunter, Evan', '2019-01-07', 35, 'https://www.gutenberg.org/ebooks/58639', 'en', 26), +(9249, 'Punch, or the London Charivari, Volume 152, January 31, 1917', 'Various', '2005-01-05', 3, 'https://www.gutenberg.org/ebooks/14516', 'en', 134), +(9250, 'Little Cinderella', 'Anonymous', '2007-03-01', 49, 'https://www.gutenberg.org/ebooks/20723', 'en', 1007), +(9251, 'What Katy Did at School', 'Coolidge, Susan', '2004-02-01', 142, 'https://www.gutenberg.org/ebooks/5141', 'en', 2154), +(9252, 'Old Wine and New: Occasional Discourses', 'Cross, Joseph', '2011-10-18', 8, 'https://www.gutenberg.org/ebooks/37794', 'en', 2248), +(9253, 'Katia', 'Tolstoy, Leo, graf', '2013-11-23', 38, 'https://www.gutenberg.org/ebooks/44266', 'en', 4896), +(9254, 'Hedda Gabler', 'Ibsen, Henrik', '2003-05-01', 740, 'https://www.gutenberg.org/ebooks/4093', 'en', 798), +(9255, 'George Washington: Farmer\r\nBeing an Account of His Home Life and Agricultural Activities', 'Haworth, Paul Leland', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11858', 'en', 4897), +(9256, 'The Philosophic Grammar of American Languages, as Set Forth by Wilhelm von Humboldt\r\nWith the Translation of an Unpublished Memoir by Him on the American Verb', 'Brinton, Daniel G. (Daniel Garrison)', '2011-07-07', 10, 'https://www.gutenberg.org/ebooks/36646', 'en', 4898), +(9257, 'The History of Lumsden\'s Horse\r\nA Complete Record of the Corps from Its Formation to Its Disbandment', NULL, '2016-06-11', 6, 'https://www.gutenberg.org/ebooks/52303', 'en', 4899), +(9258, 'The Only Woman in the Town, and Other Tales of the American Revolution', 'Prichard, Sarah J. (Sarah Johnson)', '2010-08-03', 19, 'https://www.gutenberg.org/ebooks/33334', 'en', 1293), +(9259, 'Evolution Social and Organic', 'Lewis, Arthur M. (Arthur Morrow)', '2018-08-11', 11, 'https://www.gutenberg.org/ebooks/57671', 'en', 254), +(9260, 'Souvenirs d\'un sexagénaire, Tome III', 'Arnault, A.-V. (Antoine-Vincent)', '2008-01-21', 40, 'https://www.gutenberg.org/ebooks/24383', 'fr', 1770), +(9261, '八段錦', 'Xingshijushi', '2008-04-30', 34, 'https://www.gutenberg.org/ebooks/25251', 'zh', 3187), +(9262, 'Andromeda, and Other Poems', 'Kingsley, Charles', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11064', 'en', 532), +(9263, 'The Syndic', 'Kornbluth, C. M. (Cyril M.)', '2012-12-27', 49, 'https://www.gutenberg.org/ebooks/41714', 'en', 1238), +(9264, 'The Orphan; Or, The Unhappy Marriage. A Tragedy, in Five Acts', 'Otway, Thomas', '2010-03-01', 19, 'https://www.gutenberg.org/ebooks/31463', 'en', 4900), +(9265, 'Sandhya\nSongs of Twilight', 'Mukerji, Dhan Gopal', '2007-10-02', 22, 'https://www.gutenberg.org/ebooks/22848', 'en', 8), +(9266, 'Motor Boat Boys Down the Danube; or, Four Chums Abroad', 'Arundel, Louis', '2013-02-25', 19, 'https://www.gutenberg.org/ebooks/42191', 'en', 2722), +(9267, 'Little Lord Fauntleroy [abridged]: Für den Schulgebrauch bearbeitet', 'Burnett, Frances Hodgson', '2015-08-02', 9, 'https://www.gutenberg.org/ebooks/49579', 'en', 4901), +(9268, 'The Andes and the Amazon; Or, Across the Continent of South America', 'Orton, James', '2006-09-08', 30, 'https://www.gutenberg.org/ebooks/19209', 'en', 4902), +(9269, 'Cloud Studies', 'Clayden, Arthur William', '2017-07-16', 12, 'https://www.gutenberg.org/ebooks/55126', 'en', 3805), +(9270, 'Political Women, Vol. 2', 'Menzies, Sutherland, active 1840-1883', '2008-12-12', 9, 'https://www.gutenberg.org/ebooks/27506', 'en', 4903), +(9271, 'Elsa', 'Pakkala, Teuvo', '2004-10-13', 10, 'https://www.gutenberg.org/ebooks/13733', 'fi', 61), +(9272, 'George Eliot\'s Life, as Related in Her Letters and Journals. Vol. 1 (of 3)', 'Eliot, George', '2013-06-29', 67, 'https://www.gutenberg.org/ebooks/43043', 'en', 4904), +(9273, 'Active Service', 'Crane, Stephen', '2000-10-01', 31, 'https://www.gutenberg.org/ebooks/2364', 'en', 4905), +(9274, 'Welt- und Lebenanschauungen; hervorgegangen aus Religion, Philosophie und Naturerkenntnis', 'Weinstein, Max B. (Max Bernhard)', '2016-03-28', 14, 'https://www.gutenberg.org/ebooks/51586', 'de', 4906), +(9275, 'Barbara\'s Heritage\nYoung Americans Among the Old Italian Masters', 'Hoyt, Deristhe L. (Deristhe Levinte)', '2005-07-07', 30, 'https://www.gutenberg.org/ebooks/16241', 'en', 4907), +(9276, 'The Doings of the Fifteenth Infantry Brigade: August 1914 to March 1915', 'Gleichen, Edward, Lord', '2007-07-14', 17, 'https://www.gutenberg.org/ebooks/22074', 'en', 3601), +(9277, 'Pelham — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7616', 'en', 2496), +(9278, 'The Yoga-Vasishtha Maharamayana of Valmiki, vol. 3 (of 4) part 2 (of 2)', 'Valmiki', '2014-08-08', 67, 'https://www.gutenberg.org/ebooks/46531', 'en', 4908), +(9279, 'Politics of Alabama', 'Manning, Joseph C. (Joseph Columbus)', '2010-10-21', 11, 'https://www.gutenberg.org/ebooks/34111', 'en', 4909), +(9280, 'Men and Women', 'Browning, Robert', '2005-12-26', 42, 'https://www.gutenberg.org/ebooks/17393', 'en', 8), +(9281, 'Rand and the Micmacs', 'Clark, Jeremiah S.', '2015-11-14', 10, 'https://www.gutenberg.org/ebooks/50454', 'en', 4910), +(9282, 'The English Housekeeper: Or, Manual of Domestic Management\r\nContaining advice on the conduct of household affairs and practical instructions concerning the store-room, the pantry, the larder, the kitchen, the cellar, the dairy; the whole being intended for the use of young ladies who undertake the superintendence of their own housekeeping', 'Cobbett, Anne', '2017-08-09', 61, 'https://www.gutenberg.org/ebooks/55314', 'en', 4911), +(9283, 'The Instant of Now', 'Cox, Irving E.', '2010-03-15', 69, 'https://www.gutenberg.org/ebooks/31651', 'en', 26), +(9284, 'Original Short Stories — Volume 08', 'Maupassant, Guy de', '2004-10-03', 22, 'https://www.gutenberg.org/ebooks/3084', 'en', 1112), +(9285, 'The Works of Alexander Pope, Volume 2 (of 10)\nPoetry - Volume 2', 'Pope, Alexander', '2013-07-20', 26, 'https://www.gutenberg.org/ebooks/43271', 'en', 3947), +(9286, 'The Hungry Heart: A Novel', 'Phillips, David Graham', '2015-04-13', 80, 'https://www.gutenberg.org/ebooks/48699', 'en', 4912), +(9287, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 3 - (C suite)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 15, 'https://www.gutenberg.org/ebooks/30783', 'fr', 1352), +(9288, 'China and the Manchus', 'Giles, Herbert Allen', '2006-03-26', 61, 'https://www.gutenberg.org/ebooks/2156', 'en', 4913), +(9289, '合浦珠', 'Yuanhuyanshuisanren, active 17th century-18th century', '2009-01-07', 8, 'https://www.gutenberg.org/ebooks/27734', 'zh', 1003), +(9290, 'Lady Connie', 'Ward, Humphry, Mrs.', '2004-09-20', 55, 'https://www.gutenberg.org/ebooks/13501', 'en', 348), +(9291, 'The Wishing-Ring Man', 'Widdemer, Margaret', '2005-02-01', 25, 'https://www.gutenberg.org/ebooks/7424', 'en', 61), +(9292, 'Sketch of Grammar of the Chippeway Languages\nTo Which is Added a Vocabulary of some of the Most Common Words', 'Summerfield, John', '2006-11-14', 32, 'https://www.gutenberg.org/ebooks/19807', 'en', 4914), +(9293, 'Australia in Arms\r\nA Narrative of the Australasian Imperial Force and Their Achievement at Anzac', 'Schuler, Phillip F. E. (Frederick Edward)', '2014-08-27', 17, 'https://www.gutenberg.org/ebooks/46703', 'en', 1074), +(9294, 'Wreaths of Friendship: A Gift for the Young', 'Arthur, T. S. (Timothy Shay)', '2005-06-15', 12, 'https://www.gutenberg.org/ebooks/16073', 'en', 388), +(9295, 'The Upper Berth; By the Waters of Paradise', 'Crawford, F. Marion (Francis Marion)', '2007-08-05', 38, 'https://www.gutenberg.org/ebooks/22246', 'en', 531), +(9296, 'Look! We Have Come Through!', 'Lawrence, D. H. (David Herbert)', '2007-11-07', 59, 'https://www.gutenberg.org/ebooks/23394', 'en', 8), +(9297, 'Songs of the Sea and Lays of the Land', 'Leland, Charles Godfrey', '2015-12-11', 17, 'https://www.gutenberg.org/ebooks/50666', 'en', 1118), +(9298, 'The Samurai Strategy', 'Hoover, Thomas', '2010-11-14', 45, 'https://www.gutenberg.org/ebooks/34323', 'en', 167), +(9299, 'The Tragical History of Doctor Faustus\r\nFrom the Quarto of 1616', 'Marlowe, Christopher', '1997-02-01', 359, 'https://www.gutenberg.org/ebooks/811', 'en', 4915), +(9300, 'Richard Carvel — Complete', 'Churchill, Winston', '2004-10-18', 111, 'https://www.gutenberg.org/ebooks/5373', 'en', 1293), +(9301, 'Histoire des salons de Paris (Tome 4/6)\r\nTableaux et portraits du grand monde sous Louis XVI, Le Directoire, le Consulat et l\'Empire, la Restauration et le règne de Louis-Philippe Ier.', 'Abrantès, Laure Junot, duchesse d\'', '2013-10-27', 25, 'https://www.gutenberg.org/ebooks/44054', 'fr', 4916), +(9302, 'Kangastuksia; Talvi-yö; Halla; Tähtitarha', 'Leino, Eino', '2005-01-17', 9, 'https://www.gutenberg.org/ebooks/14724', 'fi', 8), +(9303, 'The Little Mother Goose', NULL, '2007-02-02', 90, 'https://www.gutenberg.org/ebooks/20511', 'en', 859), +(9304, 'The Mentor: The Yosemite Valley, Vol 4, Num. 16, Serial No. 116, October 2, 1916', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2016-05-22', 2, 'https://www.gutenberg.org/ebooks/52131', 'en', 3780), +(9305, 'Ylpeys ja ennakkoluulo', 'Austen, Jane', '2014-03-22', 46, 'https://www.gutenberg.org/ebooks/45186', 'fi', 95), +(9306, 'A Statistical Inquiry Into the Nature and Treatment of Epilepsy', 'Bennett, Alexander Hughes', '2011-06-20', 9, 'https://www.gutenberg.org/ebooks/36474', 'en', 4917), +(9307, 'The Aviator and the Weather Bureau', 'Carpenter, Ford A. (Ford Ashman)', '2018-07-04', 19, 'https://www.gutenberg.org/ebooks/57443', 'en', 927), +(9308, 'Le Pays de l\'or', 'Conscience, Hendrik', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/10384', 'fr', 4918), +(9309, 'Slavische Volkforschungen\r\nAbhandlungen über Glauben, Gewohnheitrechte, Sitten, Bräuche und die Guslarenlieder der Südslaven', 'Krauss, Friedrich S. (Friedrich Salomo)', '2014-02-10', 12, 'https://www.gutenberg.org/ebooks/44868', 'de', 4919), +(9310, 'L\'Illustration, No. 0001, 4 Mars 1843', 'Various', '2010-07-07', 57, 'https://www.gutenberg.org/ebooks/33106', 'fr', 150), +(9311, 'A Little Girl in Old St. Louis', 'Douglas, Amanda M.', '2012-12-01', 28, 'https://www.gutenberg.org/ebooks/41526', 'en', 4920), +(9312, 'The Beggar\'s Opera; to Which is Prefixed the Musick to Each Song', 'Gay, John', '2008-04-13', 201, 'https://www.gutenberg.org/ebooks/25063', 'en', 4921), +(9313, 'Social life at Rome in the Age of Cicero', 'Fowler, W. Warde (William Warde)', '2004-02-01', 43, 'https://www.gutenberg.org/ebooks/11256', 'en', 2050), +(9314, 'Az arany ember (1. rész)\nRegény', 'Jókai, Mór', '2018-02-17', 22, 'https://www.gutenberg.org/ebooks/56591', 'hu', 234), +(9315, 'Poems', 'Manning, Frederic', '2013-09-01', 8, 'https://www.gutenberg.org/ebooks/43615', 'en', 8), +(9316, 'The Half-Brothers', 'Gaskell, Elizabeth Cleghorn', '2001-03-01', 35, 'https://www.gutenberg.org/ebooks/2532', 'en', 45), +(9317, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 06 (de 12)', 'Castelo Branco, Camilo', '2008-11-28', 7, 'https://www.gutenberg.org/ebooks/27350', 'pt', 410), +(9318, 'Papin perhe; Hän on Sysmästä; Spiritistinen istunto', 'Canth, Minna', '2004-08-12', 29, 'https://www.gutenberg.org/ebooks/13165', 'fi', 247), +(9319, 'Pathology of Lying, Accusation, and Swindling: A Study in Forensic Psychology', 'Healy, Mary Tenney', '1996-03-01', 146, 'https://www.gutenberg.org/ebooks/449', 'en', 4922), +(9320, '\"Semmering 1912\"', 'Altenberg, Peter', '2017-10-18', 18, 'https://www.gutenberg.org/ebooks/55770', 'de', 60), +(9321, 'The Witch of Salem; or, Credulity Run Mad', 'Musick, John R. (John Roy)', '2008-08-12', 31, 'https://www.gutenberg.org/ebooks/26282', 'en', 4923), +(9322, 'Natural History of the Brush Mouse (Peromyscus boylii) in Kansas With Description of a New Subspecies', 'Long, Charles Alan', '2010-02-09', 6, 'https://www.gutenberg.org/ebooks/31235', 'en', 1214), +(9323, 'The Bible, King James version, Book 8: Ruth', 'Anonymous', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/8008', 'en', 4924), +(9324, 'Harper\'s Young People, January 27, 1880\nAn Illustrated Weekly', 'Various', '2009-03-13', 6, 'https://www.gutenberg.org/ebooks/28318', 'en', 479), +(9325, 'Singoalla', 'Rydberg, Viktor', '2015-10-13', 9, 'https://www.gutenberg.org/ebooks/50202', 'fi', 3294), +(9326, 'Mrs. Falchion, Volume 1.', 'Parker, Gilbert', '2004-07-01', 6, 'https://www.gutenberg.org/ebooks/6192', 'en', 1219), +(9327, 'Door Oost-Perzië\r\nDe Aarde en haar Volken, 1906', 'Sykes, Percy Molesworth, Sir', '2004-11-05', 7, 'https://www.gutenberg.org/ebooks/13959', 'nl', 4925), +(9328, 'Under Nordenvindens Svøbe', 'Rasmussen, Knud', '2010-12-24', 38, 'https://www.gutenberg.org/ebooks/34747', 'da', 4926), +(9329, 'Paula the Waldensian', 'Lecomte, Eva', '2004-12-01', 30, 'https://www.gutenberg.org/ebooks/7040', 'en', 4927), +(9330, 'The Allied Countries and the Jews', 'Enelow, H. G. (Hyman Gerson)', '2011-03-27', 17, 'https://www.gutenberg.org/ebooks/35695', 'en', 4928), +(9331, 'Talbot\'s Angles', 'Blanchard, Amy Ella', '2014-07-22', 21, 'https://www.gutenberg.org/ebooks/46367', 'en', 4929), +(9332, 'Spadacrene Anglica: The English Spa Fountain', 'Deane, Edmund', '2005-08-02', 23, 'https://www.gutenberg.org/ebooks/16417', 'en', 4930), +(9333, 'Weymouth New Testament in Modern Speech, 1 Corinthians', 'Weymouth, Richard Francis', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8834', 'en', 4931), +(9334, 'Aves Migradoras', 'Almeida, José Valentim Fialho de', '2007-09-16', 42, 'https://www.gutenberg.org/ebooks/22622', 'pt', 61), +(9335, 'The Young People\'s Wesley', 'McDonald, W. (William)', '2012-05-31', 20, 'https://www.gutenberg.org/ebooks/39864', 'en', 4932), +(9336, 'Arminell: A Social Romance, Vol. 1', 'Baring-Gould, S. (Sabine)', '2016-07-11', 12, 'https://www.gutenberg.org/ebooks/52555', 'en', 137), +(9337, 'Katri Holm: Kertomus äideille', 'Roos, Mathilda', '2005-03-08', 3, 'https://www.gutenberg.org/ebooks/15292', 'fi', 2168), +(9338, 'Ethel Morton at Chautauqua', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2011-05-02', 19, 'https://www.gutenberg.org/ebooks/36010', 'en', 4933), +(9339, 'Bergson and His Philosophy', 'Gunn, John Alexander', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/5717', 'en', 4934), +(9340, 'Myths of the Rhine', 'Xavier, M.', '2013-12-14', 24, 'https://www.gutenberg.org/ebooks/44430', 'en', 4935), +(9341, 'Pater Filucius', 'Busch, Wilhelm', '2004-12-13', 31, 'https://www.gutenberg.org/ebooks/14340', 'de', 510), +(9342, 'Women of the Classics', 'Sturgeon, Mary C.', '2016-11-09', 9, 'https://www.gutenberg.org/ebooks/53487', 'en', 2293), +(9343, 'Φθινόπωρο', 'Chatzopoulos, Kostantinos', '2006-12-23', 10, 'https://www.gutenberg.org/ebooks/20175', 'el', 61), +(9344, 'Book-Plates', 'Hardy, William John', '2012-10-22', 27, 'https://www.gutenberg.org/ebooks/41142', 'en', 4936), +(9345, 'The Village', 'Bunin, Ivan Alekseevich', '2019-07-25', 1599, 'https://www.gutenberg.org/ebooks/59981', 'en', 4937), +(9346, 'Kapteeni Grantin lapset', 'Verne, Jules', '2012-03-05', 9, 'https://www.gutenberg.org/ebooks/39058', 'fi', 998), +(9347, 'The Merrie Tales of Jacques Tournebroche', 'France, Anatole', '2008-05-09', 19, 'https://www.gutenberg.org/ebooks/25407', 'en', 58), +(9348, 'Woman: Man\'s Equal', 'Webster, Thomas', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/11632', 'en', 4826), +(9349, 'The Girl\'s Own Paper, Vol. XX. No. 1002, March 11, 1899', 'Various', '2018-04-23', 5, 'https://www.gutenberg.org/ebooks/57027', 'en', 563), +(9350, 'A treatise on the esculent funguses of England\r\ncontaining an account of their classical history, uses, characters, development, structure, nutritious properties, modes of cooking and preserving, etc.', 'Badham, David', '2019-02-09', 8, 'https://www.gutenberg.org/ebooks/58853', 'en', 4938), +(9351, 'Minna', 'Gjellerup, Karl', '2010-08-28', 20, 'https://www.gutenberg.org/ebooks/33562', 'da', 61), +(9352, 'Blackwood\'s Edinburgh Magazine, Volume 63, No. 391, May, 1848', 'Various', '2012-06-26', 15, 'https://www.gutenberg.org/ebooks/40090', 'en', 274), +(9353, 'L\'art et science de rhethorique pour faire rigmes et ballades', 'Croy, Henri de', '2007-03-31', 10, 'https://www.gutenberg.org/ebooks/20949', 'fr', 4939), +(9354, 'Essays in the Study of Folk-Songs (1886)', 'Martinengo-Cesaresco, Evelyn Lilian Hazeldine Carrington, contessa', '2011-05-26', 17, 'https://www.gutenberg.org/ebooks/36222', 'en', 4940), +(9355, 'Cormorant Crag: A Tale of the Smuggling Days', 'Fenn, George Manville', '2007-05-04', 28, 'https://www.gutenberg.org/ebooks/21295', 'en', 153), +(9356, 'The Time of the End\nor, the World, the Visible Church, and the People of God at the Advent of the Lord', 'Hoare, Edward', '2016-08-10', 19, 'https://www.gutenberg.org/ebooks/52767', 'en', 4149), +(9357, 'Willis the Pilot : A Sequel to the Swiss Family Robinson\r\nOr, Adventures of an Emigrant Family Wrecked on an Unknown Coast of the Pacific Ocean', 'Paul, Adrien', '2004-11-26', 23, 'https://www.gutenberg.org/ebooks/14172', 'en', 3972), +(9358, 'The Moving Picture Girls Snowbound\nOr, The Proof on the Film', 'Hope, Laura Lee', '2007-01-12', 22, 'https://www.gutenberg.org/ebooks/20347', 'en', 3200), +(9359, 'The Bride of the Nile — Volume 09', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5525', 'en', 4941), +(9360, 'Turhaa lemmen touhua', 'Shakespeare, William', '2014-01-06', 11, 'https://www.gutenberg.org/ebooks/44602', 'fi', 4942), +(9361, 'A Influencia Europea na Africa perante a Civilisação e as Relações Internacionaes\nConsiderações ácerca do tratado de 30 de maio de 1879\ndenominado de «Lourenço Marques»', 'Testa, Carlos', '2008-05-29', 15, 'https://www.gutenberg.org/ebooks/25635', 'pt', 4943), +(9362, 'Mystic Isles of the South Seas.', 'O\'Brien, Frederick', '2004-03-01', 46, 'https://www.gutenberg.org/ebooks/11400', 'en', 4944), +(9363, 'Stained Glass of the Middle Ages in England and France', 'Arnold, Hugh', '2012-11-16', 34, 'https://www.gutenberg.org/ebooks/41370', 'en', 4945), +(9364, 'Punch, or the London Charivari, Volume 93, July 16, 1887', 'Various', '2010-06-04', 12, 'https://www.gutenberg.org/ebooks/32682', 'en', 134), +(9365, 'Encyclopaedia Britannica, 11th Edition, \"Bradford, William\" to \"Brequigny, Louis\"\r\nVolume 4, Slice 4', 'Various', '2010-09-17', 20, 'https://www.gutenberg.org/ebooks/33750', 'en', 1081), +(9366, 'History of the Conflict Between Religion and Science', 'Draper, John William', '1998-02-01', 61, 'https://www.gutenberg.org/ebooks/1185', 'en', 2397), +(9367, 'Some Medical Aspects of Old Age\r\nBeing the Linacre lecture, 1922, St. John\'s college, Cambridge', 'Rolleston, Humphry Davy, Sir', '2018-05-26', 21, 'https://www.gutenberg.org/ebooks/57215', 'en', 4946), +(9368, 'A Little Country Girl', 'Coolidge, Susan', '2008-11-05', 38, 'https://www.gutenberg.org/ebooks/27162', 'en', 195), +(9369, 'Sweet Clover: A Romance of the White City', 'Burnham, Clara Louise', '2017-04-06', 15, 'https://www.gutenberg.org/ebooks/54490', 'en', 23), +(9370, 'Cactus Culture for Amateurs\r\nBeing Descriptions of the Various Cactuses Grown in This Country, With Full and Practical Instructions for Their Successful Cultivation', 'Watson, William', '2004-09-03', 34, 'https://www.gutenberg.org/ebooks/13357', 'en', 4947), +(9371, 'Some Turns of Thought in Modern Philosophy', 'Santayana, George', '2009-05-01', 6, 'https://www.gutenberg.org/ebooks/28916', 'en', 2694), +(9372, 'Encyclopaedia Britannica, 11th Edition, \"Lord Chamberlain\" to \"Luqman\"\r\nVolume 17, Slice 1', 'Various', '2013-08-09', 45, 'https://www.gutenberg.org/ebooks/43427', 'en', 1081), +(9373, 'Medical Essays, 1842-1882', 'Holmes, Oliver Wendell', '2004-09-29', 60, 'https://www.gutenberg.org/ebooks/2700', 'en', 4948), +(9374, 'The Girls and I: A Veracious History', 'Molesworth, Mrs.', '2010-01-18', 17, 'https://www.gutenberg.org/ebooks/31007', 'en', 4949), +(9375, 'The Atlantic Monthly, Volume 07, No. 44, June, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12285', 'en', 1227), +(9376, 'Den äkta gentlemannen\r\neller grundsatser och reglor för god ton och sannt lefnadsvett i umgängeslifvets särskilda förhållanden', 'Wenzel, J. G.', '2017-09-13', 14, 'https://www.gutenberg.org/ebooks/55542', 'sv', 788), +(9377, 'The Geologic Setting of the John Day Country: Grant County, Oregon', 'Thayer, Thomas P.', '2014-09-26', 17, 'https://www.gutenberg.org/ebooks/46969', 'en', 4950), +(9378, 'Motor Matt\'s Race; or, The Last Flight of the Comet', 'Matthews, Stanley R.', '2014-10-10', 9, 'https://www.gutenberg.org/ebooks/47087', 'en', 4951), +(9379, 'The Triumph of Virginia Dale', 'Francis, John', '2010-12-05', 24, 'https://www.gutenberg.org/ebooks/34575', 'en', 61), +(9380, 'Ihmissyöjäin saarilla: (Adventure) Romaani', 'London, Jack', '2015-09-21', 5, 'https://www.gutenberg.org/ebooks/50030', 'fi', 323), +(9381, 'Clásicos Castellanos: Libro de Buen Amor', 'Ruiz, Juan', '2005-08-30', 113, 'https://www.gutenberg.org/ebooks/16625', 'es', 4952), +(9382, 'The Mentor: Famous Composers, Vol. 1, Num. 41, Serial No. 41', 'Finck, Henry T.', '2015-09-09', 15, 'https://www.gutenberg.org/ebooks/49921', 'en', 4953), +(9383, 'The Crofton Boys', 'Martineau, Harriet', '2007-08-26', 20, 'https://www.gutenberg.org/ebooks/22410', 'en', 4954), +(9384, '搜神記 volume 15-17', 'Gan, Bao, active 317-322', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7272', 'zh', 4247), +(9385, 'The Fantastic Clan: The Cactus Family', 'Thornber, J. J. (John James)', '2014-07-01', 10, 'https://www.gutenberg.org/ebooks/46155', 'en', 4955), +(9386, 'Studies in Central American Picture-Writing\nFirst Annual Report of the Bureau of Ethnology to the\nSecretary of the Smithsonian Institution, 1879-80,\nGovernment Printing Office, Washington, 1881, pages 205-245', 'Holden, Edward S. (Edward Singleton)', '2007-11-20', 20, 'https://www.gutenberg.org/ebooks/23562', 'en', 4956), +(9387, 'Wegweiser durch das sächsisch-böhmische Erzgebirge', 'Berlet, Bruno', '2015-05-02', 13, 'https://www.gutenberg.org/ebooks/48853', 'de', 4957), +(9388, 'Ellénore, Volume I', 'Gay, Sophie', '2006-02-12', 32, 'https://www.gutenberg.org/ebooks/17757', 'fr', 61), +(9389, 'Anselme Adorne, Sire de Corthuy, Pèlerin De Terre-Sainte\r\nSa Famille, Sa Vie, Ses Voyages Et Son Temps', 'Coste, E. de la', '2010-01-13', 21, 'https://www.gutenberg.org/ebooks/30949', 'fr', 4958), +(9390, 'The Red Lady', 'Burt, Katharine Newlin', '2015-09-30', 12, 'https://www.gutenberg.org/ebooks/50090', 'en', 4959), +(9391, 'Nagy magyarok élete (2. kötet)', 'Benedek, Elek', '2014-10-02', 12, 'https://www.gutenberg.org/ebooks/47027', 'hu', 4960), +(9392, 'The Project Gutenberg Complete Works of Gilbert Parker', 'Parker, Gilbert', '2004-08-01', 28, 'https://www.gutenberg.org/ebooks/6300', 'en', 198), +(9393, 'Rimas', 'Mitre, Bartolomé', '2011-02-26', 17, 'https://www.gutenberg.org/ebooks/35407', 'es', 8), +(9394, 'The Times Red Cross Story Book\nby Famous Novelists Serving in His Majesty\'s Forces', 'Various', '2016-02-07', 35, 'https://www.gutenberg.org/ebooks/51142', 'en', 4961), +(9395, 'Private Peat', 'Peat, Harold Reginald', '2005-09-12', 27, 'https://www.gutenberg.org/ebooks/16685', 'en', 4962), +(9396, 'A New Orchard And Garden\r\nor, The best way for planting, grafting, and to make any ground good, for a rich Orchard: Particularly in the North and generally for the whole kingdome of England', 'Harward, Simon, active 1572-1614', '2009-06-06', 26, 'https://www.gutenberg.org/ebooks/29058', 'en', 4963), +(9397, 'Birds and Nature, Vol 10 No. 2 [September 1901]', 'Various', '2015-09-15', 6, 'https://www.gutenberg.org/ebooks/49981', 'en', 490), +(9398, 'The Depot for Prisoners of War at Norman Cross, Huntingdonshire. 1796 to 1816', 'Walker, Thomas (Thomas James)', '2013-08-16', 29, 'https://www.gutenberg.org/ebooks/43487', 'en', 4964), +(9399, 'Los Principios Matemático-Históricos y la Evolución de la Libertad', 'Fernández Bolívar, Víctor José', '2009-10-04', 18, 'https://www.gutenberg.org/ebooks/30175', 'es', 924), +(9400, 'Some Reminiscences', 'Conrad, Joseph', '2005-11-01', 0, 'https://www.gutenberg.org/ebooks/9348', 'en', 4965), +(9401, 'Las noches mejicanas', 'Aimard, Gustave', '2017-03-25', 72, 'https://www.gutenberg.org/ebooks/54430', 'es', 4966), +(9402, 'Tales of lonely trails', 'Grey, Zane', '2004-05-01', 100, 'https://www.gutenberg.org/ebooks/12225', 'en', 4967), +(9403, 'Valley of the Croen', 'Tarbell, Lee', '2008-07-08', 25, 'https://www.gutenberg.org/ebooks/26010', 'en', 26), +(9404, 'The 2000 CIA World Factbook', 'United States. Central Intelligence Agency', '2003-01-01', 281, 'https://www.gutenberg.org/ebooks/3672', 'en', 1726), +(9405, 'By the Barrow River, and Other Stories', 'Leamy, Edmund', '2013-04-17', 13, 'https://www.gutenberg.org/ebooks/42555', 'en', 179), +(9406, 'Olanda', 'De Amicis, Edmondo', '2009-08-30', 34, 'https://www.gutenberg.org/ebooks/29864', 'it', 2236), +(9407, 'St. Nicholas Magazine for Boys and Girls, Vol. 13, May 1886, No. 7.\r\nAn Illustrated Magazine for Young Folks', 'Various', '2010-05-31', 34, 'https://www.gutenberg.org/ebooks/32622', 'en', 479), +(9408, 'The Diamond Coterie', 'Lynch, Lawrence L.', '2008-06-04', 20, 'https://www.gutenberg.org/ebooks/25695', 'en', 128), +(9409, 'Rund um den Kreuzturm: Roman aus den Dresdner Maitagen von 1849', 'Hildebrand, Gustav', '2018-01-13', 6, 'https://www.gutenberg.org/ebooks/56367', 'de', 4968), +(9410, 'Manners Makyth Man\nShip\'s Company, Part 12.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10572', 'en', 1902), +(9411, 'Samlede Værker, Andet Bind', 'Aakjær, Jeppe', '2008-03-03', 44, 'https://www.gutenberg.org/ebooks/24747', 'da', 2653), +(9412, 'George Cruikshank', 'Chesson, W. H. (Wilfrid Hugh)', '2011-12-16', 13, 'https://www.gutenberg.org/ebooks/38318', 'en', 3807), +(9413, 'All\'s Well That Ends Well', 'Shakespeare, William', '1997-12-01', 71, 'https://www.gutenberg.org/ebooks/1125', 'en', 3990), +(9414, 'The Annals of Ann', 'Sharber, Kate Trimble', '2012-07-10', 23, 'https://www.gutenberg.org/ebooks/40202', 'en', 2739), +(9415, 'The Maidens\' Lodge; or, None of Self and All of Thee\r\n(In the Reign of Queen Anne)', 'Holt, Emily Sarah', '2007-04-27', 10, 'https://www.gutenberg.org/ebooks/21235', 'en', 4464), +(9416, 'The Life of Reason: The Phases of Human Progress', 'Santayana, George', '2005-02-14', 246, 'https://www.gutenberg.org/ebooks/15000', 'en', 779), +(9417, 'Cocina moderna', 'Anonymous', '2014-05-26', 39, 'https://www.gutenberg.org/ebooks/45770', 'es', 1369), +(9418, 'Beauchamp\'s Career — Volume 5', 'Meredith, George', '2003-09-01', 15, 'https://www.gutenberg.org/ebooks/4457', 'en', 137), +(9419, 'Donald McElroy, Scotch Irishman', 'Caldwell, Willie Walker', '2011-06-03', 3, 'https://www.gutenberg.org/ebooks/36282', 'en', 4969), +(9420, 'In the Blue Pike — Volume 02', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5585', 'en', 803), +(9421, 'The Ancestry of Modern Amphibia: A Review of the Evidence', 'Eaton, Theodore H. (Theodore Hildreth)', '2011-09-08', 16, 'https://www.gutenberg.org/ebooks/37350', 'en', 4970), +(9422, 'Se kolmas: Humoristinen kertomus taiteilijaelämästä', 'Sienkiewicz, Henryk', '2016-11-27', 7, 'https://www.gutenberg.org/ebooks/53615', 'fi', 4971), +(9423, 'Grand\'ther Baldwin\'s Thanksgiving, with Other Ballads and Poems', 'Alger, Horatio, Jr.', '1999-10-01', 20, 'https://www.gutenberg.org/ebooks/1919', 'en', 8), +(9424, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 03\r\nMasterpieces of German Literature Translated into English. in Twenty Volumes', NULL, '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/11692', 'en', 4972), +(9425, 'Fairy Tales from Gold Lands', 'Wentworth, May', '2017-12-10', 20, 'https://www.gutenberg.org/ebooks/56155', 'en', 2863), +(9426, 'No Shield from the Dead', 'Dickson, Gordon R.', '2010-05-18', 49, 'https://www.gutenberg.org/ebooks/32410', 'en', 26), +(9427, 'Drottning Moi-Même: Historisk silhuett', 'Kuylenstierna-Wenster, Elisabeth', '2019-07-15', 24, 'https://www.gutenberg.org/ebooks/59921', 'sv', 4973), +(9428, 'Saltbush Bill, J. P.', 'Paterson, A. B. (Andrew Barton)', '1998-05-01', 29, 'https://www.gutenberg.org/ebooks/1317', 'en', 4974), +(9429, 'The Theory of Heat Radiation', 'Planck, Max', '2012-06-18', 164, 'https://www.gutenberg.org/ebooks/40030', 'en', 4975), +(9430, 'A Strange World: A Novel. Volume 3 (of 3)', 'Braddon, M. E. (Mary Elizabeth)', '2018-05-04', 20, 'https://www.gutenberg.org/ebooks/57087', 'en', 137), +(9431, 'The Way of Peace', 'Allen, James', '2004-01-01', 235, 'https://www.gutenberg.org/ebooks/10740', 'en', 43), +(9432, 'Úplná učebnice mezinárodní řeči dra. Esperanta', 'Lorenc, František Vladimír', '2008-02-11', 21, 'https://www.gutenberg.org/ebooks/24575', 'cs', 4976), +(9433, 'Eighteen Months in the War Zone\nThe Record of a Woman\'s Work on the Western Front', 'Finze, Kate John', '2014-04-30', 29, 'https://www.gutenberg.org/ebooks/45542', 'en', 4977), +(9434, 'Signora Fantastici (A Dramatic Proverb)', 'Staël, Madame de (Anne-Louise-Germaine)', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/4665', 'en', 3521), +(9435, 'Nincsen ördög; A Magláy család; A ki holta után áll boszut', 'Jókai, Mór', '2018-04-12', 15, 'https://www.gutenberg.org/ebooks/56969', 'hu', 234), +(9436, 'The Bird Study Book', 'Pearson, T. Gilbert (Thomas Gilbert)', '2007-04-08', 40, 'https://www.gutenberg.org/ebooks/21007', 'en', 4978), +(9437, 'Notes and Queries, Number 51, October 19, 1850', 'Various', '2005-03-02', 13, 'https://www.gutenberg.org/ebooks/15232', 'en', 105), +(9438, 'The Girl\'s Own Paper, Vol. XX, No. 994, January 14, 1899', 'Various', '2016-11-01', 10, 'https://www.gutenberg.org/ebooks/53427', 'en', 563), +(9439, 'The Trial of Oscar Wilde, from the Shorthand Reports', 'Grolleau, Charles', '2012-02-18', 132, 'https://www.gutenberg.org/ebooks/38916', 'en', 4979), +(9440, 'Η Βιογραφία του στρατηγού Γεωργίου Καραϊσκάκη', 'Ainian, Demetrios', '2011-08-22', 38, 'https://www.gutenberg.org/ebooks/37162', 'el', 4493), +(9441, 'Northern Spain', 'Wigram, Edgar Thomas Ainger', '2013-12-23', 10, 'https://www.gutenberg.org/ebooks/44490', 'en', 1514), +(9442, 'The Sacred Tree; or, the tree in religion and myth', 'Philpot, J. H., Mrs.', '2014-10-28', 26, 'https://www.gutenberg.org/ebooks/47215', 'en', 4980); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(9443, 'A Man of Samples. Something about the men he met \"On the Road\"', 'Maher, William H.', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6132', 'en', 4981), +(9444, 'The Woman Beautiful; or, The Art of Beauty Culture', 'Jameson, Helen Follett', '2007-12-06', 34, 'https://www.gutenberg.org/ebooks/23750', 'en', 3765), +(9445, 'Les grandes espérances', 'Dickens, Charles', '2006-01-21', 26, 'https://www.gutenberg.org/ebooks/17565', 'fr', 109), +(9446, 'The Atlantic Monthly, Volume 10, No. 59, September, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2006-02-01', 18, 'https://www.gutenberg.org/ebooks/9946', 'en', 1227), +(9447, 'Life of Father Ignatius of St. Paul, Passionist (The Hon. & Rev. George Spencer).', 'Pius a Sp. Sancto (Pius a Spiritu Sancto)', '2016-03-05', 9, 'https://www.gutenberg.org/ebooks/51370', 'en', 4982), +(9448, 'Latin Literature', 'Mackail, J. W. (John William)', '2005-09-01', 34, 'https://www.gutenberg.org/ebooks/8894', 'en', 4983), +(9449, 'Secret Armies\nThe New Technique of Nazi Warfare', 'Spivak, John L. (John Louis)', '2007-09-20', 60, 'https://www.gutenberg.org/ebooks/22682', 'en', 4984), +(9450, 'Herr Adam und Frau Eva', 'Engel, Alexander', '2011-03-20', 4, 'https://www.gutenberg.org/ebooks/35635', 'de', 4985), +(9451, 'Ancient and Modern Furniture and Woodwork', 'Pollen, John Hungerford', '2017-04-25', 67, 'https://www.gutenberg.org/ebooks/54602', 'en', 4986), +(9452, 'Adventures in the Philippine Islands', 'La Gironière, Paul P. de', '2009-10-27', 39, 'https://www.gutenberg.org/ebooks/30347', 'en', 4987), +(9453, 'マルチン・ルターの小信仰問答書', 'Luther, Martin', '2001-04-01', 26, 'https://www.gutenberg.org/ebooks/2592', 'ja', 4988), +(9454, 'Journal de mathématics pures et appliquées\r\nOu, recueil mensuel de mémoires sur les diverses parties des mathématiques, Tome deuxième, année 1837', 'Various', '2010-02-16', 13, 'https://www.gutenberg.org/ebooks/31295', 'fr', 4989), +(9455, 'The Book of the Thousand Nights and a Night — Volume 06', NULL, '2002-09-01', 84, 'https://www.gutenberg.org/ebooks/3440', 'en', 3347), +(9456, 'Home Life on an Ostrich Farm', 'Martin, Annie, Mrs.', '2013-05-22', 15, 'https://www.gutenberg.org/ebooks/42767', 'en', 4990), +(9457, 'The Mirror of Literature, Amusement, and Instruction. Volume 13 — Index to Volume 13', 'Various', '2004-04-01', 46, 'https://www.gutenberg.org/ebooks/12017', 'en', 133), +(9458, 'The Imitation of Christ', 'Thomas, à Kempis', '2008-08-01', 83, 'https://www.gutenberg.org/ebooks/26222', 'en', 2064), +(9459, 'Two Gentlemen of Verona', 'Shakespeare, William', '1999-06-01', 16, 'https://www.gutenberg.org/ebooks/1773', 'en', 4991), +(9460, 'Frivolities, Especially Addressed to Those Who Are Tired of Being Serious', 'Marsh, Richard', '2012-08-08', 15, 'https://www.gutenberg.org/ebooks/40454', 'en', 409), +(9461, 'Bull Hunter', 'Brand, Max', '2003-11-01', 78, 'https://www.gutenberg.org/ebooks/10324', 'en', 315), +(9462, '竹書紀年', 'Unknown', '2008-01-02', 28, 'https://www.gutenberg.org/ebooks/24111', 'zh', 4992), +(9463, 'Graham\'s Magazine, Vol. XXX, No. 1, January 1847', 'Various', '2018-02-09', 17, 'https://www.gutenberg.org/ebooks/56531', 'en', 380), +(9464, 'The Red Dust', 'Leinster, Murray', '2012-12-09', 52, 'https://www.gutenberg.org/ebooks/41586', 'en', 26), +(9465, 'Book Repair and Restoration: A Manual of Practical Suggestions for Bibliophiles', 'Buck, Mitchell S. (Mitchell Starrett)', '2010-04-21', 23, 'https://www.gutenberg.org/ebooks/32074', 'en', 4993), +(9466, 'Timid Hare: The Little Captive', 'Wade, Mary Hazelton Blanchard', '2005-01-24', 12, 'https://www.gutenberg.org/ebooks/14784', 'en', 4994), +(9467, 'Extracts from the Diary of William C. Lobenstine, December 31, 1851-1858', 'Lobenstine, William C. (William Christian)', '2016-09-13', 3, 'https://www.gutenberg.org/ebooks/53043', 'en', 1181), +(9468, 'L\'Illustration, No. 3648, 25 Janvier 1913', 'Various', '2011-09-22', 8, 'https://www.gutenberg.org/ebooks/37506', 'fr', 150), +(9469, 'La Seconda e Terza Guerra Punica\nTratto da un codice dell\'Ambrosiana', 'Bruni, Leonardo', '2014-03-13', 22, 'https://www.gutenberg.org/ebooks/45126', 'it', 4995), +(9470, 'Literary Friends and Acquaintance; a Personal Retrospect of American Authorship', 'Howells, William Dean', '2004-10-22', 36, 'https://www.gutenberg.org/ebooks/4201', 'en', 131), +(9471, 'Voyages and Travels of Count Funnibos and Baron Stilkin', 'Kingston, William Henry Giles', '2007-05-15', 30, 'https://www.gutenberg.org/ebooks/21463', 'en', 3242), +(9472, 'The American Agriculturist. Vol. II. No. XI, December 1843\r\nDesigned to Improve the Planter, the Farmer, the Stock-breeder, and the Horticulturist', 'Various', '2019-05-22', 21, 'https://www.gutenberg.org/ebooks/59579', 'en', 4996), +(9473, 'Der unendliche Mensch: Gedichte', 'Drey, Arthur', '2016-05-30', 11, 'https://www.gutenberg.org/ebooks/52191', 'de', 4162), +(9474, 'Representation of the Impiety and Immorality of the English Stage (1704); Some Thoughts Concerning the Stage in a Letter to a Lady (1704)', NULL, '2005-04-19', 19, 'https://www.gutenberg.org/ebooks/15656', 'en', 4997), +(9475, 'Speeches and Addresses of H. R. H. the Prince of Wales: 1863-1888', 'Edward VII, King of Great Britain', '2010-06-17', 5, 'https://www.gutenberg.org/ebooks/32848', 'en', 3346), +(9476, 'The Great Experience', 'Farr, Julia', '2016-04-10', 9, 'https://www.gutenberg.org/ebooks/51714', 'en', 1071), +(9477, 'By Reef and Palm', 'Becke, Louis', '2003-03-01', 19, 'https://www.gutenberg.org/ebooks/3818', 'en', 2357), +(9478, '管子 — Volume 02 : Chapters 6-10', 'Guan, Zhong', '2005-02-01', 22, 'https://www.gutenberg.org/ebooks/7484', 'zh', 1493), +(9479, 'Under a Charm: A Novel. Vol. I', 'Werner, E.', '2011-02-12', 16, 'https://www.gutenberg.org/ebooks/35251', 'en', 803), +(9480, 'The Heart of the Ancient Wood', 'Roberts, Charles G. D., Sir', '2014-12-15', 17, 'https://www.gutenberg.org/ebooks/47671', 'en', 4998), +(9481, 'The Jungle', 'Sinclair, Upton', '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6556', 'en', 4999), +(9482, 'John the Baptist: A Play', 'Sudermann, Hermann', '2010-11-20', 15, 'https://www.gutenberg.org/ebooks/34383', 'en', 493), +(9483, 'The North Pole\nIts Discovery in 1909 under the auspices of the Peary Arctic Club', 'Peary, Robert E. (Robert Edwin)', '2006-08-03', 60, 'https://www.gutenberg.org/ebooks/18975', 'en', 5000), +(9484, 'Natural Law in the Spiritual World', 'Drummond, Henry', '2007-11-05', 79, 'https://www.gutenberg.org/ebooks/23334', 'en', 2713), +(9485, 'Anglo-Saxon Literature', 'Earle, John', '2005-11-19', 20, 'https://www.gutenberg.org/ebooks/17101', 'en', 5001), +(9486, 'The Last Stetson', 'Fox, John, Jr.', '2002-01-01', 16, 'https://www.gutenberg.org/ebooks/3024', 'en', 1909), +(9487, 'The Expositor\'s Bible: The Acts of the Apostles, Vol. 2', 'Stokes, George Thomas', '2013-03-10', 16, 'https://www.gutenberg.org/ebooks/42303', 'en', 5002), +(9488, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 06\r\nMasterpieces of German Literature Translated into English. in Twenty Volumes', NULL, '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/12473', 'en', 652), +(9489, 'The Book of Romance', NULL, '2008-09-17', 87, 'https://www.gutenberg.org/ebooks/26646', 'en', 2176), +(9490, 'The Girl\'s Own Paper, Vol. XX. No. 1013, May 27, 1899', 'Various', '2019-08-04', 746, 'https://www.gutenberg.org/ebooks/60053', 'en', 563), +(9491, 'Fantômas', 'Souvestre, Pierre', '2009-01-13', 120, 'https://www.gutenberg.org/ebooks/27794', 'en', 128), +(9492, 'Conjuror\'s House: A Romance of the Free Forest', 'White, Stewart Edward', '2006-04-11', 14, 'https://www.gutenberg.org/ebooks/18149', 'en', 1887), +(9493, 'History of the Indians, of North and South America', 'Goodrich, Samuel G. (Samuel Griswold)', '2017-03-01', 12, 'https://www.gutenberg.org/ebooks/54266', 'en', 5003), +(9494, 'Gestalten der Wildnis', 'Roberts, Charles G. D., Sir', '2015-04-05', 17, 'https://www.gutenberg.org/ebooks/48639', 'de', 1787), +(9495, 'Fathers and Children', 'Turgenev, Ivan Sergeevich', '2009-12-21', 122, 'https://www.gutenberg.org/ebooks/30723', 'en', 2079), +(9496, 'The Negro in Literature and Art in the United States', 'Brawley, Benjamin Griffith', '2011-01-25', 35, 'https://www.gutenberg.org/ebooks/35063', 'en', 5004), +(9497, 'The Strange Voyage and Adventures of Domingo Gonsales, to the World in the Moon', 'Godwin, Francis', '2014-08-15', 33, 'https://www.gutenberg.org/ebooks/46591', 'en', 467), +(9498, 'La vita Italiana nel Risorgimento (1849-1861), parte 1\r\nQuarta serie - Storia', 'Various', '2016-03-22', 7, 'https://www.gutenberg.org/ebooks/51526', 'it', 3404), +(9499, 'Helen and Arthur; or, Miss Thusa\'s Spinning Wheel', 'Hentz, Caroline Lee', '2007-10-20', 35, 'https://www.gutenberg.org/ebooks/23106', 'en', 61), +(9500, 'Wilt Thou Torchy', 'Ford, Sewell', '2005-12-17', 22, 'https://www.gutenberg.org/ebooks/17333', 'en', 1660), +(9501, 'Henner', 'Crastre, François', '2014-11-23', 8, 'https://www.gutenberg.org/ebooks/47443', 'en', 5005), +(9502, 'Army Life in a Black Regiment', 'Higginson, Thomas Wentworth', '2004-10-01', 50, 'https://www.gutenberg.org/ebooks/6764', 'en', 5006), +(9503, 'The Kansas University Science Bulletin, Vol. I, No. 2, February, 1902', 'Various', '2017-06-08', 2, 'https://www.gutenberg.org/ebooks/54868', 'en', 210), +(9504, 'The Queen of the Air: Being a Study of the Greek Myths of Cloud and Storm', 'Ruskin, John', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12641', 'en', 3412), +(9505, 'Cassell\'s History of England, Vol. 4 (of 8)\r\nFrom the Fall of Marlborough to the Peninsular War', 'Anonymous', '2017-07-24', 29, 'https://www.gutenberg.org/ebooks/55186', 'en', 1953), +(9506, 'Some Naval Yarns', 'Hall, Mordaunt', '2008-08-29', 22, 'https://www.gutenberg.org/ebooks/26474', 'en', 4131), +(9507, 'Mr. Honey\'s Small Business Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 14, 'https://www.gutenberg.org/ebooks/3216', 'en', 5007), +(9508, 'Traité sur la tolérance', 'Voltaire', '2013-02-19', 72, 'https://www.gutenberg.org/ebooks/42131', 'fr', 779), +(9509, 'Birds, Illustrated by Color Photography, Vol. 2, No. 3\r\nSeptember 1897', 'Various', '2009-11-21', 20, 'https://www.gutenberg.org/ebooks/30511', 'en', 1584), +(9510, 'Historical Record of the Twelfth, or the East Suffolk, Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1685, and of Its Subsequent Services to 1847', 'Cannon, Richard', '2017-01-26', 5, 'https://www.gutenberg.org/ebooks/54054', 'en', 5008), +(9511, 'En famille', 'Malot, Hector', '2004-10-19', 35, 'https://www.gutenberg.org/ebooks/13793', 'fr', 2588), +(9512, 'All Saints\' Day and Other Sermons', 'Kingsley, Charles', '2003-11-01', 27, 'https://www.gutenberg.org/ebooks/10116', 'en', 2386), +(9513, 'Scientific American Supplement, No. 1082, September 26, 1896', 'Various', '2008-01-15', 19, 'https://www.gutenberg.org/ebooks/24323', 'en', 210), +(9514, 'The Chemistry of Plant Life', 'Thatcher, Roscoe Wilfred', '2010-08-09', 46, 'https://www.gutenberg.org/ebooks/33394', 'en', 5009), +(9515, 'The Life of Henry the Eighth', 'Shakespeare, William', '1998-11-01', 27, 'https://www.gutenberg.org/ebooks/1541', 'en', 599), +(9516, 'Missing at Marshlands\nArden Blake Mystery Series #3', 'Garis, Cleo F.', '2012-09-05', 19, 'https://www.gutenberg.org/ebooks/40666', 'en', 5010), +(9517, 'Adventures and Reminiscences of a Volunteer; Or, A Drummer Boy from Maine', 'Ulmer, George T.', '2010-05-04', 19, 'https://www.gutenberg.org/ebooks/32246', 'en', 444), +(9518, 'Ketchup: Methods of Manufacture; Microscopic Examination', 'Bitting, K. G. (Katherine Golden)', '2018-03-08', 6, 'https://www.gutenberg.org/ebooks/56703', 'en', 5011), +(9519, 'Some Jewish Witnesses For Christ', 'Bernstein, Aaron', '2011-10-12', 24, 'https://www.gutenberg.org/ebooks/37734', 'en', 5012), +(9520, 'Sunny-San', 'Eaton, Winnifred', '2019-01-15', 14, 'https://www.gutenberg.org/ebooks/58699', 'en', 5013), +(9521, 'The Brighton Boys at Chateau-Thierry', 'Driscoll, James R.', '2016-10-14', 21, 'https://www.gutenberg.org/ebooks/53271', 'en', 1753), +(9522, 'Como eu atravessei Àfrica do Atlantico ao mar Indico, volume segundo', 'Pinto, Alexandre Alberto da Rocha de Serpa', '2007-03-08', 16, 'https://www.gutenberg.org/ebooks/20783', 'pt', 5014), +(9523, 'Los muertos mandan', 'Blasco Ibáñez, Vicente', '2007-05-31', 35, 'https://www.gutenberg.org/ebooks/21651', 'es', 5015), +(9524, 'Foods That Will Win the War and How to Cook Them (1918)', 'Goudiss, Alberta M. (Alberta Moorhouse)', '2005-03-25', 134, 'https://www.gutenberg.org/ebooks/15464', 'en', 5016), +(9525, 'Portraits of Curious Characters in London, &c. &c.\nWith Descriptive and Entertaining Ancedotes.', 'Anonymous', '2014-04-04', 13, 'https://www.gutenberg.org/ebooks/45314', 'en', 5017), +(9526, 'Who Spoke Next', 'Follen, Eliza Lee Cabot', '2003-05-01', 13, 'https://www.gutenberg.org/ebooks/4033', 'en', 1817), +(9527, 'Hamlet', 'Shakespeare, William', '1999-06-01', 193, 'https://www.gutenberg.org/ebooks/1787', 'en', 5018), +(9528, 'Tales of Romance', NULL, '2010-07-14', 42, 'https://www.gutenberg.org/ebooks/33152', 'en', 5019), +(9529, 'The Courtship of Miles Standish:\nWith Suggestions for Study and Notes', 'Longfellow, Henry Wadsworth', '2018-06-29', 27, 'https://www.gutenberg.org/ebooks/57417', 'en', 5020), +(9530, 'War and the Weird', 'Hopkins, R. Thurston (Robert Thurston)', '2008-04-10', 16, 'https://www.gutenberg.org/ebooks/25037', 'en', 579), +(9531, 'A Compilation of the Messages and Papers of the Presidents. Volume 3, part 1: Andrew Jackson (Second Term)', NULL, '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11202', 'en', 337), +(9532, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 04 of 12)', 'Frazer, James George', '2012-12-06', 58, 'https://www.gutenberg.org/ebooks/41572', 'en', 75), +(9533, 'Voices from the Past', 'Bartlett, Paul Alexander', '2012-04-17', 31, 'https://www.gutenberg.org/ebooks/39468', 'en', 1566), +(9534, 'Women\'s Wages', 'Smart, William', '2016-09-02', 12, 'https://www.gutenberg.org/ebooks/52959', 'en', 5021), +(9535, 'Punch, or the London Charivari, Vol. 158, June 16, 1920', 'Various', '2010-04-21', 15, 'https://www.gutenberg.org/ebooks/32080', 'en', 134), +(9536, 'Life in a Thousand Worlds', 'Harris, W. S. (William Shuler)', '2005-01-23', 26, 'https://www.gutenberg.org/ebooks/14770', 'en', 1998), +(9537, 'Pukkisen pidot\nKaksinäytöksinen huvinäytelmä', 'Kiljander, Robert', '2007-02-08', 9, 'https://www.gutenberg.org/ebooks/20545', 'fi', 247), +(9538, 'Pinocchio in Africa', 'Cherubini, Eugenio', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5327', 'en', 5022), +(9539, 'The Origin of Vertebrates', 'Gaskell, Walter Holbrook', '2013-11-13', 21, 'https://www.gutenberg.org/ebooks/44000', 'en', 5023), +(9540, 'Between Sun and Sand: A Tale of an African Desert', 'Scully, W. C. (William Charles)', '2011-06-13', 10, 'https://www.gutenberg.org/ebooks/36420', 'en', 1207), +(9541, 'Little Jack Rabbit and the Squirrel Brothers', 'Cory, David', '2007-05-16', 38, 'https://www.gutenberg.org/ebooks/21497', 'en', 5024), +(9542, 'Transylvanian Superstitions\r\nFrom: The Nineteenth Century (Vol. 18), London, July-December 1885, pp. 130-150', 'Gerard, E. (Emily)', '2016-05-26', 63, 'https://www.gutenberg.org/ebooks/52165', 'en', 5025), +(9543, 'Journals of Two Expeditions of Discovery in North-West and Western Australia, Volume 1', 'Grey, George, Sir', '2005-06-09', 29, 'https://www.gutenberg.org/ebooks/16027', 'en', 5026), +(9544, 'The Paternoster Ruby', 'Walk, Charles Edmonds', '2007-08-01', 16, 'https://www.gutenberg.org/ebooks/22212', 'en', 128), +(9545, 'Bob Hunt in Canada', 'Orton, George W.', '2006-11-17', 36, 'https://www.gutenberg.org/ebooks/19853', 'en', 5027), +(9546, 'Castilian Days', 'Hay, John', '2005-02-01', 17, 'https://www.gutenberg.org/ebooks/7470', 'en', 4023), +(9547, 'Fighting the Boche Underground', 'Trounce, H. D. (Harry Davis)', '2014-09-02', 25, 'https://www.gutenberg.org/ebooks/46757', 'en', 5028), +(9548, 'Lancaster\'s Choice', 'Miller, Alex. McVeigh, Mrs.', '2014-12-17', 3, 'https://www.gutenberg.org/ebooks/47685', 'en', 1380), +(9549, 'Dick the Bank Boy; Or, A Missing Fortune', 'Webster, Frank V.', '2006-08-03', 15, 'https://www.gutenberg.org/ebooks/18981', 'en', 5029), +(9550, 'The Preaching Tours and Missionary Labours of George Müller (of Bristol)', 'Müller, Susannah Grace Sanger', '2010-11-20', 17, 'https://www.gutenberg.org/ebooks/34377', 'en', 5030), +(9551, 'Poems of Henry Timrod; with Memoir', 'Timrod, Henry', '1997-03-01', 100, 'https://www.gutenberg.org/ebooks/845', 'en', 350), +(9552, 'Bert Wilson on the Gridiron', 'Duffield, J. W.', '2009-05-08', 14, 'https://www.gutenberg.org/ebooks/28728', 'en', 5031), +(9553, 'Herodotoksen historia-teos VII-IX', 'Herodotus', '2015-12-06', 7, 'https://www.gutenberg.org/ebooks/50632', 'fi', 1368), +(9554, 'The Ethics of Aristotle', 'Aristotle', '2005-07-01', 923, 'https://www.gutenberg.org/ebooks/8438', 'en', 680), +(9555, 'The Cooking Manual of Practical Directions for Economical Every-Day Cookery', 'Corson, Juliet', '2010-03-12', 41, 'https://www.gutenberg.org/ebooks/31605', 'en', 103), +(9556, 'Squire Phin', 'Day, Holman', '2017-08-11', 7, 'https://www.gutenberg.org/ebooks/55340', 'en', 5032), +(9557, 'A quoi tient l\'amour?\r\nContes de France et d\'Amérique', 'Blémont, Emile', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12487', 'fr', 48), +(9558, 'Η Πάπισσα Ιωάννα', 'Rhoides, Emmanouel D.', '2009-01-09', 34, 'https://www.gutenberg.org/ebooks/27760', 'el', 984), +(9559, 'Youth and the Bright Medusa', 'Cather, Willa', '2004-09-30', 61, 'https://www.gutenberg.org/ebooks/13555', 'en', 112), +(9560, 'What Jesus Taught', 'Widtsoe, Osborne J. P.', '2017-03-06', 37, 'https://www.gutenberg.org/ebooks/54292', 'en', 2016), +(9561, 'Blackwood\'s Edinburgh Magazine, Volume 64, No. 397, November 1848', 'Various', '2013-07-16', 27, 'https://www.gutenberg.org/ebooks/43225', 'en', 274), +(9562, 'History of Friedrich II of Prussia — Volume 02', 'Carlyle, Thomas', '2008-06-16', 37, 'https://www.gutenberg.org/ebooks/2102', 'en', 5033), +(9563, 'Edvard Grieg : The Story of the Boy Who Made Music in the Land of the Midnight Sun', 'Tapper, Thomas', '2011-01-28', 54, 'https://www.gutenberg.org/ebooks/35097', 'en', 5034), +(9564, 'Ernest Maltravers — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 17, 'https://www.gutenberg.org/ebooks/7642', 'en', 137), +(9565, 'Picturesque Sketches of London, Past and Present', 'Miller, Thomas', '2014-08-11', 20, 'https://www.gutenberg.org/ebooks/46565', 'en', 856), +(9566, 'Jack Sheppard: A Romance', 'Ainsworth, William Harrison', '2005-07-06', 34, 'https://www.gutenberg.org/ebooks/16215', 'en', 5035), +(9567, 'L\'indomani', 'Neera', '2007-07-09', 9, 'https://www.gutenberg.org/ebooks/22020', 'it', 61), +(9568, 'Dave Dawson, Flight Lieutenant', 'Bowen, Robert Sidney', '2015-11-06', 14, 'https://www.gutenberg.org/ebooks/50400', 'en', 1004), +(9569, 'Wilson\'s Tales of the Borders and of Scotland, Volume 05', NULL, '2010-10-27', 6, 'https://www.gutenberg.org/ebooks/34145', 'en', 3672), +(9570, 'Demetrius: A Play', 'Schiller, Friedrich', '2004-12-08', 32, 'https://www.gutenberg.org/ebooks/6790', 'en', 402), +(9571, 'Evolution and creation', 'Hardwicke, Herbert Junius', '2017-07-22', 7, 'https://www.gutenberg.org/ebooks/55172', 'en', 5036), +(9572, 'La Tronpretendantoj', 'Ibsen, Henrik', '2008-08-29', 8, 'https://www.gutenberg.org/ebooks/26480', 'eo', 3671), +(9573, 'Υπεράνθρωπος: Διήγημα', 'Chatzopoulos, Kostantinos', '2010-02-27', 16, 'https://www.gutenberg.org/ebooks/31437', 'el', 61), +(9574, 'Mala Hierba', 'Baroja, Pío', '2013-06-23', 32, 'https://www.gutenberg.org/ebooks/43017', 'es', 1384), +(9575, 'Religions of Ancient China', 'Giles, Herbert Allen', '2006-03-26', 72, 'https://www.gutenberg.org/ebooks/2330', 'en', 5037), +(9576, 'Representative Plays by American Dramatists: 1856-1911: Rip van\nWinkle', 'Burke, Charles', '2007-12-18', 16, 'https://www.gutenberg.org/ebooks/27552', 'en', 508), +(9577, 'Edward MacDowell\r\nHis Work and Ideals', 'Page, Elizabeth Fry', '2004-10-16', 8, 'https://www.gutenberg.org/ebooks/13767', 'en', 5038), +(9578, 'Twentieth Century Socialism: What It Is Not; What It Is: How It May Come', 'Kelly, Edmond', '2011-01-16', 18, 'https://www.gutenberg.org/ebooks/34979', 'en', 254), +(9579, 'The New Man: Twenty-nine years a slave, twenty-nine years a free man', 'Bruce, Henry Clay', '2018-08-02', 17, 'https://www.gutenberg.org/ebooks/57625', 'en', 56), +(9580, 'The History of Don Quixote, Volume 2, Part 26', 'Cervantes Saavedra, Miguel de', '2004-07-23', 11, 'https://www.gutenberg.org/ebooks/5929', 'en', 2176), +(9581, 'Antigua and the Antiguans, Volume 1 (of 2)\r\nA full account of the colony and its inhabitants from the time of the Caribs to the present day', 'Lanaghan, Mrs.', '2012-02-07', 5, 'https://www.gutenberg.org/ebooks/38788', 'en', 5039), +(9582, 'Kaptajnen paa 15 Aar (I Slavelænker)', 'Verne, Jules', '2010-08-06', 16, 'https://www.gutenberg.org/ebooks/33360', 'da', 3421), +(9583, 'Foxholme Hall, and Other Tales', 'Kingston, William Henry Giles', '2012-09-06', 15, 'https://www.gutenberg.org/ebooks/40692', 'en', 388), +(9584, 'Ralph Wilton\'s weird', 'Alexander, Mrs.', '2012-12-30', 16, 'https://www.gutenberg.org/ebooks/41740', 'en', 5040), +(9585, 'Light On the Child\'s Path', 'Bixler, William Allen', '2008-04-27', 14, 'https://www.gutenberg.org/ebooks/25205', 'en', 4241), +(9586, 'Incidents in the Life of a Slave Girl, Written by Herself', 'Jacobs, Harriet A. (Harriet Ann)', '2004-02-01', 1101, 'https://www.gutenberg.org/ebooks/11030', 'en', 56), +(9587, 'The George Sand-Gustave Flaubert Letters', 'Sand, George', '2004-02-01', 79, 'https://www.gutenberg.org/ebooks/5115', 'en', 5041), +(9588, 'L\'Illustration, No. 1608, 20 décembre 1873', 'Various', '2013-11-19', 6, 'https://www.gutenberg.org/ebooks/44232', 'fr', 150), +(9589, 'Historical Characters: Mackintosh, Talleyrand, Canning, Cobbett, Peel', 'Dalling and Bulwer, Henry Lytton Bulwer, Baron', '2016-10-15', 18, 'https://www.gutenberg.org/ebooks/53285', 'en', 5042), +(9590, 'The Lonesome Trail and Other Stories', 'Bower, B. M.', '2004-12-31', 20, 'https://www.gutenberg.org/ebooks/14542', 'en', 315), +(9591, 'R. Caldecott\'s First Collection of Pictures and Songs', NULL, '2007-03-08', 99, 'https://www.gutenberg.org/ebooks/20777', 'en', 343), +(9592, 'The Young Lady\'s Mentor\nA Guide to the Formation of Character. In a Series of Letters to Her Unknown Friends', 'Anonymous', '2005-03-28', 111, 'https://www.gutenberg.org/ebooks/15490', 'en', 1435), +(9593, 'Henry Irving\'s Impressions of America\r\nNarrated in a Series of Sketches, Chronicles, and Conversations', 'Hatton, Joseph', '2016-06-17', 6, 'https://www.gutenberg.org/ebooks/52357', 'en', 5043), +(9594, 'The Princess and Curdie', 'MacDonald, George', '2011-07-04', 96, 'https://www.gutenberg.org/ebooks/36612', 'en', 2203), +(9595, 'Dictionnaire grammatical du mauvais langage\r\nou, Recueil des expressions et des phrases vicieuses usitées\r\nen France, et notamment à Lyon', 'Molard, Étienne', '2007-11-23', 7, 'https://www.gutenberg.org/ebooks/23596', 'fr', 5044), +(9596, 'Proverbial Philosophy\nThe First and Second Series', NULL, '2015-09-27', 37, 'https://www.gutenberg.org/ebooks/50064', 'en', 3358), +(9597, 'Das Buch der Bilder', 'Rilke, Rainer Maria', '2010-11-30', 69, 'https://www.gutenberg.org/ebooks/34521', 'de', 5045), +(9598, 'Timon von Athen', 'Shakespeare, William', '2005-01-01', 28, 'https://www.gutenberg.org/ebooks/7226', 'de', 5046), +(9599, 'Vita di Andrea Doria, Volume II', 'Guerrazzi, Francesco Domenico', '2014-06-26', 11, 'https://www.gutenberg.org/ebooks/46101', 'it', 5047), +(9600, 'Scientific American Supplement, No. 643, April 28, 1888', 'Various', '2005-09-07', 13, 'https://www.gutenberg.org/ebooks/16671', 'en', 210), +(9601, 'Selected Poems of Emily Dickinson', 'Dickinson, Emily', '2007-08-01', 27, 'https://www.gutenberg.org/ebooks/22444', 'en', 178), +(9602, 'The Death Ship: A Strange Story, Vol. 3 (of 3)', 'Russell, William Clark', '2015-09-15', 13, 'https://www.gutenberg.org/ebooks/49975', 'en', 5048), +(9603, 'The Trappers of Arkansas; or, The Loyal Heart', 'Aimard, Gustave', '2013-08-15', 13, 'https://www.gutenberg.org/ebooks/43473', 'en', 5049), +(9604, 'The Junior Classics, Volume 1: Fairy and wonder tales', 'Neilson, William Allan', '2009-05-01', 11, 'https://www.gutenberg.org/ebooks/28942', 'en', 1063), +(9605, 'The Countess of Saint Geran\r\nCelebrated Crimes', 'Dumas, Alexandre', '2006-02-28', 38, 'https://www.gutenberg.org/ebooks/2754', 'en', 5050), +(9606, 'Fungi: Their Nature and Uses', 'Cooke, M. C. (Mordecai Cubitt)', '2009-10-05', 97, 'https://www.gutenberg.org/ebooks/30181', 'en', 5051), +(9607, 'Heidelberg: A Romance. Volumes I, II & III', 'James, G. P. R. (George Payne Rainsford)', '2016-01-06', 7, 'https://www.gutenberg.org/ebooks/50858', 'en', 5052), +(9608, 'Six Days on the Hurricane Deck of a Mule\nAn account of a journey made on mule back in Honduras,\nC.A. in August, 1891', 'Cole, Almira Stillwell', '2008-11-02', 8, 'https://www.gutenberg.org/ebooks/27136', 'en', 5053), +(9609, 'Kourroglou', 'Sand, George', '2004-08-27', 29, 'https://www.gutenberg.org/ebooks/13303', 'fr', 61), +(9610, 'Buuritytön tarina', 'Haggard, H. Rider (Henry Rider)', '2017-09-09', 11, 'https://www.gutenberg.org/ebooks/55516', 'fi', 3825), +(9611, 'Book of Esther', 'Anonymous', '2006-10-28', 11, 'https://www.gutenberg.org/ebooks/19639', 'en', 4345), +(9612, 'The Army of the Cumberland', 'Cist, Henry Martyn', '2003-01-01', 29, 'https://www.gutenberg.org/ebooks/3686', 'en', 5054), +(9613, 'The History of the Devil, As Well Ancient as Modern: In Two Parts', 'Defoe, Daniel', '2010-01-23', 72, 'https://www.gutenberg.org/ebooks/31053', 'en', 5055), +(9614, 'The Doctor\'s Family', 'Oliphant, Mrs. (Margaret)', '2009-09-02', 28, 'https://www.gutenberg.org/ebooks/29890', 'en', 61), +(9615, 'Amor y Pedagogía', 'Unamuno, Miguel de', '2015-06-06', 45, 'https://www.gutenberg.org/ebooks/49149', 'es', 1696), +(9616, 'Over the Seas for Uncle Sam', NULL, '2012-11-09', 16, 'https://www.gutenberg.org/ebooks/41324', 'en', 3872), +(9617, 'Duffels', 'Eggleston, Edward', '2008-05-31', 26, 'https://www.gutenberg.org/ebooks/25661', 'en', 112), +(9618, 'Maurin des Maures', 'Aicard, Jean', '2018-01-18', 34, 'https://www.gutenberg.org/ebooks/56393', 'fr', 259), +(9619, 'A Visit to the United States in 1841', 'Sturge, Joseph', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11454', 'en', 1110), +(9620, 'Mike and Psmith', 'Wodehouse, P. G. (Pelham Grenville)', '2004-01-01', 233, 'https://www.gutenberg.org/ebooks/10586', 'en', 95), +(9621, 'The History of the Rise, Increase, and Progress of the Christian People Called Quakers\r\nIntermixed with Several Remarkable Occurrencs.', 'Sewel, William', '2018-05-31', 3, 'https://www.gutenberg.org/ebooks/57241', 'en', 5056), +(9622, 'In Paradise: A Novel. Vol. I.', 'Heyse, Paul', '2010-09-12', 45, 'https://www.gutenberg.org/ebooks/33704', 'en', 803), +(9623, 'Denounced: A Romance', 'Bloundelle-Burton, John', '2016-08-06', 16, 'https://www.gutenberg.org/ebooks/52733', 'en', 2643), +(9624, 'Gallery of Comicalities; Embracing Humorous Sketches', 'Cruikshank, George', '2014-05-27', 44, 'https://www.gutenberg.org/ebooks/45784', 'en', 2965), +(9625, 'The Meaning of Relativity\nFour lectures delivered at Princeton University, May, 1921', 'Einstein, Albert', '2011-05-29', 446, 'https://www.gutenberg.org/ebooks/36276', 'en', 2846), +(9626, 'Barbara Blomberg — Complete', 'Ebers, Georg', '2004-11-15', 31, 'https://www.gutenberg.org/ebooks/5571', 'en', 5057), +(9627, 'The Houseboat Book: The Log of a Cruise from Chicago to New Orleans', 'Waugh, W. F. (William Francis)', '2014-01-13', 27, 'https://www.gutenberg.org/ebooks/44656', 'en', 5058), +(9628, 'The Marriage of William Ashe', 'Ward, Humphry, Mrs.', '2004-11-22', 46, 'https://www.gutenberg.org/ebooks/14126', 'en', 705), +(9629, 'History of the Royal Regiment of Artillery Vol. 2\r\nCompiled from the Original Records', 'Duncan, Francis', '2018-10-30', 5, 'https://www.gutenberg.org/ebooks/58209', 'en', 5059), +(9630, 'Ueber Riemann\'s Theorie der Algebraischen Functionen', 'Klein, Felix', '2007-01-08', 31, 'https://www.gutenberg.org/ebooks/20313', 'de', 5060), +(9631, 'How the Fairy Violet Lost and Won Her Wings', 'Ker, Marianne L. B.', '2008-05-12', 6, 'https://www.gutenberg.org/ebooks/25453', 'en', 3822), +(9632, 'The Conjure Woman', 'Chesnutt, Charles W. (Charles Waddell)', '2004-03-01', 138, 'https://www.gutenberg.org/ebooks/11666', 'en', 1439), +(9633, 'Rambles by Land and Water; or, Notes of Travel in Cuba and Mexico', 'Norman, Benjamin Moore', '2011-07-28', 18, 'https://www.gutenberg.org/ebooks/36878', 'en', 5061), +(9634, 'Curiosités Historiques et Littéraires', 'Muller, Eugène', '2012-10-19', 4, 'https://www.gutenberg.org/ebooks/41116', 'fr', 813), +(9635, 'A report of Major Hart\'s case, of rice-frauds, near Seringapatam', 'Inglis, W. H.', '2010-08-26', 1, 'https://www.gutenberg.org/ebooks/33536', 'en', 5062), +(9636, 'Index of the Project Gutenberg Works of Ambrose Bierce', 'Bierce, Ambrose', '2019-02-01', 28, 'https://www.gutenberg.org/ebooks/58807', 'en', 198), +(9637, 'De complete werken van Joost van Vondel. De Amsteldamsche Hecuba', 'Vondel, Joost van den', '2018-04-30', 11, 'https://www.gutenberg.org/ebooks/57073', 'nl', 2651), +(9638, 'Colonel John Brown, of Pittsfield, Massachusetts, the Brave Accuser of Benedict Arnold', 'Howe, Archibald Murray', '2008-02-11', 19, 'https://www.gutenberg.org/ebooks/24581', 'en', 5063), +(9639, 'White Otter', 'Gregor, Elmer Russell', '2011-05-06', 8, 'https://www.gutenberg.org/ebooks/36044', 'en', 676), +(9640, 'Famous Affinities of History: The Romance of Devotion. Volume 3', 'Orr, Lyndon', '2003-11-01', 17, 'https://www.gutenberg.org/ebooks/4691', 'en', 122), +(9641, 'The First Men in the Moon', 'Wells, H. G. (Herbert George)', '2016-07-05', 82, 'https://www.gutenberg.org/ebooks/52501', 'en', 26), +(9642, 'Memoranda on Poisons', 'Tanner, Thomas Hawkes', '2012-05-28', 16, 'https://www.gutenberg.org/ebooks/39830', 'en', 5064), +(9643, 'Etiquette', 'Post, Emily', '2004-12-10', 544, 'https://www.gutenberg.org/ebooks/14314', 'en', 788), +(9644, 'Lone Star Planet', 'Piper, H. Beam', '2006-12-16', 127, 'https://www.gutenberg.org/ebooks/20121', 'en', 5065), +(9645, 'Женское международное движение: Сборник статей', 'Various', '2011-08-24', 41, 'https://www.gutenberg.org/ebooks/37196', 'ru', 5066), +(9646, 'The Evil Shepherd', 'Oppenheim, E. Phillips (Edward Phillips)', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5743', 'en', 128), +(9647, 'Under One Sceptre, or Mortimer\'s Mission: The Story of the Lord of the Marches', 'Holt, Emily Sarah', '2013-12-18', 18, 'https://www.gutenberg.org/ebooks/44464', 'en', 98), +(9648, 'A Short History of English Liberalism', 'Blease, W. Lyon (Walter Lyon)', '2010-12-21', 45, 'https://www.gutenberg.org/ebooks/34713', 'en', 5067), +(9649, 'Black Treasure\nSandy Steele Adventures #1', 'Leckie, Robert', '2015-10-19', 28, 'https://www.gutenberg.org/ebooks/50256', 'en', 5068), +(9650, 'Frei Luiz de Sousa', 'Almeida Garrett, João Batista da Silva Leitão de Almeida Garrett, Visconde de', '2006-01-23', 32, 'https://www.gutenberg.org/ebooks/17591', 'pt', 5069), +(9651, 'Palestine, or, the Holy Land: From the Earliest Period to the Present Time', 'Russell, Michael', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/8860', 'en', 723), +(9652, 'Uma família ingleza: Scenas da vida do Porto', 'Dinis, Júlio', '2005-08-05', 29, 'https://www.gutenberg.org/ebooks/16443', 'pt', 5070), +(9653, 'Lykke-Per. Første Del', 'Pontoppidan, Henrik', '2016-03-06', 62, 'https://www.gutenberg.org/ebooks/51384', 'da', 5071), +(9654, 'History of the United States, Volume 4', 'Andrews, Elisha Benjamin', '2007-09-19', 20, 'https://www.gutenberg.org/ebooks/22676', 'en', 207), +(9655, 'Personal Narrative of Travels to the Equinoctial Regions of America, During the Year 1799-1804 — Volume 2', 'Humboldt, Alexander von', '2004-12-01', 66, 'https://www.gutenberg.org/ebooks/7014', 'en', 885), +(9656, 'The Social Contract & Discourses', 'Rousseau, Jean-Jacques', '2014-07-19', 563, 'https://www.gutenberg.org/ebooks/46333', 'en', 1745), +(9657, 'Scènes préhistoriques', 'Rosny, J.-H., aîné', '2008-11-20', 17, 'https://www.gutenberg.org/ebooks/27304', 'fr', 5072), +(9658, 'The Were-Wolf', 'Housman, Clemence', '2004-08-07', 76, 'https://www.gutenberg.org/ebooks/13131', 'en', 1811), +(9659, 'Following the Flag, from August 1861 to November 1862, with the Army of the Potomac', 'Coffin, Charles Carleton', '2013-09-04', 13, 'https://www.gutenberg.org/ebooks/43641', 'en', 2723), +(9660, 'How to Fail in Literature: A Lecture', 'Lang, Andrew', '2001-03-01', 22, 'https://www.gutenberg.org/ebooks/2566', 'en', 5073), +(9661, 'The Defects of the Negro Church\nThe American Negro Academy. Occasional Papers No. 10', 'Faduma, Orishatukeh', '2010-02-12', 12, 'https://www.gutenberg.org/ebooks/31261', 'en', 5074), +(9662, 'Notes and Queries, Index to Seventh Volume, January-June 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 29, 'https://www.gutenberg.org/ebooks/42793', 'en', 105), +(9663, 'The Law\'s Lumber Room', 'Watt, Francis', '2017-10-09', 3, 'https://www.gutenberg.org/ebooks/55724', 'en', 678), +(9664, 'The Web of Life', 'Herrick, Robert', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/7828', 'en', 847), +(9665, 'Excellent Women', 'Various', '2003-11-01', 38, 'https://www.gutenberg.org/ebooks/10129', 'en', 1130), +(9666, 'Materfamilias', 'Cambridge, Ada', '2012-09-04', 6, 'https://www.gutenberg.org/ebooks/40659', 'en', 1155), +(9667, 'The Corner House Girls\nHow they moved to Milton, what they found, and what they did', 'Hill, Grace Brooks', '2012-02-01', 15, 'https://www.gutenberg.org/ebooks/38743', 'en', 62), +(9668, 'Photographic Amusements, Ninth Edition\nIncluding A Description of a Number of Novel Effects Obtainable with the Camera', 'Woodbury, Walter E.', '2012-05-14', 30, 'https://www.gutenberg.org/ebooks/39691', 'en', 5075), +(9669, 'The Children on the Top Floor', 'Rhoades, Nina', '2010-05-07', 12, 'https://www.gutenberg.org/ebooks/32279', 'en', 5076), +(9670, 'The Rise of the Dutch Republic — Volume 28: 1578, part II', 'Motley, John Lothrop', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/4830', 'en', 3372), +(9671, 'The Girl\'s Cabinet of Instructive and Moral Stories', 'Hawks, Francis L. (Francis Lister)', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/10915', 'en', 195), +(9672, 'Certain Success', 'Hawkins, Norval A.', '2005-01-04', 15, 'https://www.gutenberg.org/ebooks/14589', 'en', 4065), +(9673, 'Thirty Strange Stories', 'Wells, H. G. (Herbert George)', '2019-06-17', 2441, 'https://www.gutenberg.org/ebooks/59774', 'en', 5077), +(9674, 'Lucretia — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 16, 'https://www.gutenberg.org/ebooks/7689', 'en', 137), +(9675, 'Névtelen vár (2. rész)\nTörténelmi regény', 'Jókai, Mór', '2017-11-17', 3, 'https://www.gutenberg.org/ebooks/55985', 'hu', 5078), +(9676, 'The Esperantist, Vol. 1, No. 3', NULL, '2009-07-13', 7, 'https://www.gutenberg.org/ebooks/29403', 'eo', 3912), +(9677, 'Plotinos: Complete Works, v. 3\nIn Chronological Order, Grouped in Four Periods', 'Plotinus', '2013-06-13', 39, 'https://www.gutenberg.org/ebooks/42932', 'en', 5079), +(9678, 'The Drug', 'MacApp, C. C.', '2016-03-21', 56, 'https://www.gutenberg.org/ebooks/51519', 'en', 5080), +(9679, 'Olla Podrida', 'Marryat, Frederick', '2007-10-21', 13, 'https://www.gutenberg.org/ebooks/23139', 'en', 885), +(9680, 'The New Abelard: A Romance, Volume 3 (of 3)', 'Buchanan, Robert Williams', '2017-06-06', 5, 'https://www.gutenberg.org/ebooks/54857', 'en', 1397), +(9681, 'Tablets of the Divine Plan', '`Abdu\'l-Bahá', '2006-09-18', 22, 'https://www.gutenberg.org/ebooks/19296', 'en', 4457), +(9682, 'Essays', 'Benson, Arthur Christopher', '2011-04-13', 34, 'https://www.gutenberg.org/ebooks/35860', 'en', 1694), +(9683, 'Helen of Troy', 'Lang, Andrew', '2002-05-01', 30, 'https://www.gutenberg.org/ebooks/3229', 'en', 5081), +(9684, 'The Haunted Man and the Ghost\'s Bargain', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9713', 'en', 585), +(9685, 'Pekka Poikanen (Peter Pan)', 'Barrie, J. M. (James Matthew)', '2015-03-08', 19, 'https://www.gutenberg.org/ebooks/48434', 'fi', 2203), +(9686, 'The Communist Manifesto', 'Engels, Friedrich', '2007-12-01', 185, 'https://www.gutenberg.org/ebooks/23905', 'en', 254), +(9687, 'Records of a Family of Engineers', 'Stevenson, Robert Louis', '1995-06-01', 47, 'https://www.gutenberg.org/ebooks/280', 'en', 4812), +(9688, 'The Song of Sixpence\nPicture Book', 'Crane, Walter', '2006-05-08', 36, 'https://www.gutenberg.org/ebooks/18344', 'en', 2296), +(9689, 'Flores do Campo', 'Deus, João de', '2008-12-23', 21, 'https://www.gutenberg.org/ebooks/27599', 'pt', 5082), +(9690, 'Journal of a Residence at Bagdad\r\nDuring the Years 1830 and 1831', 'Groves, Anthony Norris', '2009-08-07', 35, 'https://www.gutenberg.org/ebooks/29631', 'en', 5083), +(9691, 'The Days Before Yesterday', 'Hamilton, Frederic, Lord', '2003-03-01', 24, 'https://www.gutenberg.org/ebooks/3827', 'en', 5084), +(9692, 'La Edad de Oro: publicación mensual de recreo e instrucción dedicada a los niños de América.', 'Martí, José', '2006-11-23', 58, 'https://www.gutenberg.org/ebooks/19898', 'es', 5085), +(9693, 'Bessie Bradford\'s Prize', 'Mathews, Joanna H. (Joanna Hooe)', '2004-09-01', 19, 'https://www.gutenberg.org/ebooks/6569', 'en', 5086), +(9694, 'Wit and Mirth: or Pills to Purge Melancholy, Vol. 5 of 6', NULL, '2008-09-21', 37, 'https://www.gutenberg.org/ebooks/26679', 'en', 5087), +(9695, 'Yorkshire Tales. Third Series\nAmusing sketches of Yorkshire Life in the Yorkshire Dialect', 'Hartley, John', '2006-04-14', 32, 'https://www.gutenberg.org/ebooks/18176', 'en', 5088), +(9696, 'Chapters on Spanish Literature', 'Fitzmaurice-Kelly, James', '2017-02-28', 30, 'https://www.gutenberg.org/ebooks/54259', 'en', 5089), +(9697, 'Sunny Boy and His Playmates', 'White, Ramy Allison', '2006-03-02', 3, 'https://www.gutenberg.org/ebooks/17902', 'en', 153), +(9698, 'Burlesques', 'Thackeray, William Makepeace', '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9521', 'en', 61), +(9699, 'Birds and Nature, Vol. 08, No. 5, December 1900\r\nIllustrated by Color Photography', 'Various', '2015-03-30', 9, 'https://www.gutenberg.org/ebooks/48606', 'en', 1584), +(9700, 'Hero Tales and Legends of the Serbians', 'Petrovitch, Woislav M.', '2012-01-14', 69, 'https://www.gutenberg.org/ebooks/38571', 'en', 5090), +(9701, 'Blackwood\'s Edinburgh Magazine, Volume 62, No. 383, September 1847', 'Various', '2010-07-19', 14, 'https://www.gutenberg.org/ebooks/33199', 'en', 274), +(9702, 'Äiti', 'Gorky, Maksim', '2016-12-30', 10, 'https://www.gutenberg.org/ebooks/53840', 'fi', 147), +(9703, 'An American Girl in London', 'Duncan, Sara Jeannette', '2014-06-10', 15, 'https://www.gutenberg.org/ebooks/45925', 'en', 843), +(9704, 'Food and Morals\n6th Edition', 'Clymer, J. F. (John F.)', '2016-09-05', 3, 'https://www.gutenberg.org/ebooks/52992', 'en', 5091), +(9705, 'Godey\'s Lady\'s Book, Vol. 48, No. XVIII, April, 1854', 'Various', '2018-12-19', 22, 'https://www.gutenberg.org/ebooks/58494', 'en', 5092), +(9706, 'Finger plays for nursery and kindergarten', 'Poulsson, Emilie', '2008-03-24', 102, 'https://www.gutenberg.org/ebooks/24912', 'en', 5093), +(9707, 'The International Jew : The World\'s Foremost Problem', 'Anonymous', '2011-10-14', 75, 'https://www.gutenberg.org/ebooks/37539', 'en', 5094), +(9708, 'Œuvres complètes de Guy de Maupassant - volume 01', 'Maupassant, Guy de', '2014-03-12', 135, 'https://www.gutenberg.org/ebooks/45119', 'fr', 642), +(9709, 'Turkey Raising', 'Marsden, Stanley J.', '2019-05-19', 22, 'https://www.gutenberg.org/ebooks/59546', 'en', 5095), +(9710, 'Fru Inger til Østråt', 'Ibsen, Henrik', '2005-04-20', 13, 'https://www.gutenberg.org/ebooks/15669', 'no', 5096), +(9711, 'My Dark Companions and Their Strange Stories', 'Stanley, Henry M. (Henry Morton)', '2010-06-18', 36, 'https://www.gutenberg.org/ebooks/32877', 'en', 5097), +(9712, 'De Libris: Prose and Verse', 'Dobson, Austin', '2006-02-01', 33, 'https://www.gutenberg.org/ebooks/9979', 'en', 1694), +(9713, 'Hurricane Island', 'Watson, H. B. Marriott (Henry Brereton Marriott)', '2009-03-22', 19, 'https://www.gutenberg.org/ebooks/28387', 'en', 1563), +(9714, 'Astounding Stories of Super-Science September 1930', 'Various', '2009-06-27', 233, 'https://www.gutenberg.org/ebooks/29255', 'en', 842), +(9715, 'Debussy\'s Pelléas et Mélisande\nA Guide to the Opera with Musical Examples from the Score', 'Gilman, Lawrence', '2005-08-08', 24, 'https://www.gutenberg.org/ebooks/16488', 'en', 4183), +(9716, 'Philippine Folk Tales', NULL, '2004-07-04', 483, 'https://www.gutenberg.org/ebooks/12814', 'en', 5098), +(9717, 'Sunny Memories of Foreign Lands, Volume 2', 'Stowe, Harriet Beecher', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/6931', 'en', 1408), +(9718, 'Julius Caesar', 'Shakespeare, William', '2006-06-05', 20, 'https://www.gutenberg.org/ebooks/18512', 'fi', 5099), +(9719, 'The Merriweather Girls and the Mystery of the Queen\'s Fan', 'Edholm, Lizette M.', '2009-10-31', 11, 'https://www.gutenberg.org/ebooks/30378', 'en', 62), +(9720, 'White Fang', 'London, Jack', '2005-09-01', 13, 'https://www.gutenberg.org/ebooks/9145', 'en', 5100), +(9721, 'Heloise : ein kleiner Roman', 'Woltmann, Karoline von', '2015-02-15', 10, 'https://www.gutenberg.org/ebooks/48262', 'de', 5101), +(9722, 'True Tales of Mountain Adventures: For Non-Climbers Young and Old', 'Le Blond, Aubrey, Mrs.', '2013-05-21', 25, 'https://www.gutenberg.org/ebooks/42758', 'en', 1791), +(9723, 'Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 2', 'Stedman, John Gabriel', '2005-05-01', 11, 'https://www.gutenberg.org/ebooks/8097', 'nl', 5102), +(9724, 'The Uttermost Farthing: A Savant\'s Vendetta', 'Freeman, R. Austin (Richard Austin)', '2004-04-01', 43, 'https://www.gutenberg.org/ebooks/12028', 'en', 557), +(9725, '佛說無量壽經', NULL, '2008-05-17', 13, 'https://www.gutenberg.org/ebooks/25498', 'zh', 5103), +(9726, 'Aventures d\'un Gentilhomme Breton aux îles Philippines', 'La Gironière, Paul P. de', '2007-06-11', 20, 'https://www.gutenberg.org/ebooks/21804', 'fr', 4987), +(9727, 'Book of 50 Pictures', 'Anonymous', '2011-11-23', 44, 'https://www.gutenberg.org/ebooks/38115', 'en', 294), +(9728, 'The Tinker\'s Wedding', 'Synge, J. M. (John Millington)', '1998-05-01', 38, 'https://www.gutenberg.org/ebooks/1328', 'en', 5104), +(9729, 'He Who Gets Slapped: A Play in Four Acts', 'Andreyev, Leonid', '2011-11-09', 17, 'https://www.gutenberg.org/ebooks/37961', 'en', 4249), +(9730, 'Great Poems of the World War', 'Eaton, William Dunseath', '2018-04-10', 26, 'https://www.gutenberg.org/ebooks/56956', 'en', 2100), +(9731, 'Index of the Project Gutenberg Works of Lord Byron', 'Byron, George Gordon Byron, Baron', '2019-03-25', 10, 'https://www.gutenberg.org/ebooks/59122', 'en', 198), +(9732, 'A Dog with a Bad Name', 'Reed, Talbot Baines', '2007-04-12', 12, 'https://www.gutenberg.org/ebooks/21038', 'en', 5105), +(9733, 'The Temptress', 'Le Queux, William', '2012-09-22', 21, 'https://www.gutenberg.org/ebooks/40833', 'en', 167), +(9734, 'A summer on the borders of the Caribbean sea.', 'Harris, J. Dennis', '2016-10-31', 14, 'https://www.gutenberg.org/ebooks/53418', 'en', 5106), +(9735, 'Quacks and Grafters', 'Anonymous', '2012-02-21', 85, 'https://www.gutenberg.org/ebooks/38929', 'en', 5107), +(9736, 'A Tramp Abroad — Volume 07', 'Twain, Mark', '2004-06-18', 18, 'https://www.gutenberg.org/ebooks/5788', 'en', 5108), +(9737, 'The Little Moment of Happiness', 'Kelland, Clarence Budington', '2018-09-10', 14, 'https://www.gutenberg.org/ebooks/57884', 'en', 109), +(9738, 'Crime and Its Causes', 'Morrison, William Douglas', '2005-05-09', 40, 'https://www.gutenberg.org/ebooks/15803', 'en', 5050), +(9739, 'The Alps', 'Lunn, Arnold', '2018-01-11', 11, 'https://www.gutenberg.org/ebooks/56358', 'en', 5109), +(9740, 'The National Nursery Book\nWith 120 illustrations', 'Unknown', '2008-03-08', 59, 'https://www.gutenberg.org/ebooks/24778', 'en', 1007), +(9741, 'The History of Sabatai Sevi, the Suppos\'d Messiah of the Jews', 'Evelyn, John', '2011-12-17', 13, 'https://www.gutenberg.org/ebooks/38327', 'en', 5110), +(9742, 'History of the Post-Office Packet Service between the years 1793-1815\nCompiled from Records, Chiefly Official', 'Norway, Arthur H. (Arthur Hamilton)', '2019-04-19', 8, 'https://www.gutenberg.org/ebooks/59310', 'en', 1179), +(9743, 'Diana of the Crossways — Volume 4', 'Meredith, George', '2003-09-01', 21, 'https://www.gutenberg.org/ebooks/4468', 'en', 4347), +(9744, 'The Whole History of Grandfather\'s Chair\r\nOr, True Stories from New England History, 1620-1808', 'Hawthorne, Nathaniel', '1999-10-01', 30, 'https://www.gutenberg.org/ebooks/1926', 'en', 5111), +(9745, 'The Hundred Best English Poems', NULL, '2006-02-15', 34, 'https://www.gutenberg.org/ebooks/17768', 'en', 54), +(9746, 'Encyclopaedia Britannica, 11th Edition, Prependix of Volume 7 [Constantine Pavlovich to Demidov]\r\nVolume 7, Slice 1', 'Various', '2010-01-15', 27, 'https://www.gutenberg.org/ebooks/30976', 'en', 1081), +(9747, 'A Dictionary of Slang, Cant, and Vulgar Words\r\nUsed at the Present Day in the Streets of London; the Universities of Oxford and Cambridge; the Houses of Parliament; the Dens of St. Giles; and the Palaces of St. James.', 'Hotten, John Camden', '2014-10-02', 89, 'https://www.gutenberg.org/ebooks/47018', 'en', 5112), +(9748, 'La destinée', 'Des Ages, Lucie', '2008-10-07', 24, 'https://www.gutenberg.org/ebooks/26813', 'fr', 298), +(9749, 'The Three Devils: Luther\'s, Milton\'s, and Goethe\'s; With Other Essays', 'Masson, David', '2011-03-01', 19, 'https://www.gutenberg.org/ebooks/35438', 'en', 2156), +(9750, 'Hurlbut\'s Bible Lessons for Boys and Girls', 'Hurlbut, Jesse Lyman', '2009-06-08', 27, 'https://www.gutenberg.org/ebooks/29067', 'en', 5113), +(9751, 'The Great Nebraska Sea', 'Danzig, Allan', '2016-01-11', 60, 'https://www.gutenberg.org/ebooks/50893', 'en', 5114), +(9752, 'London Pride, Or, When the World Was Younger', 'Braddon, M. E. (Mary Elizabeth)', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9377', 'en', 1079), +(9753, 'Needlework Economies: A Book of Mending and Making with Oddments and Scraps', NULL, '2015-01-23', 83, 'https://www.gutenberg.org/ebooks/48050', 'en', 5115), +(9754, 'The Biography of a Prairie Girl', 'Gates, Eleanor', '2009-05-29', 50, 'https://www.gutenberg.org/ebooks/28989', 'en', 1155), +(9755, 'In the Yule-Log Glow, Book I\nChristmas Tales from \'Round the World', NULL, '2006-06-29', 20, 'https://www.gutenberg.org/ebooks/18720', 'en', 381), +(9756, 'The Pier-Glass', 'Graves, Robert', '2014-12-31', 23, 'https://www.gutenberg.org/ebooks/47824', 'en', 1594), +(9757, 'The Life and Letters of George John Romanes, M.A., LL.D., F.R.S.', 'Romanes, Ethel Duncan', '2015-06-09', 2, 'https://www.gutenberg.org/ebooks/49182', 'en', 5116), +(9758, 'The Gilded Chair: A Novel', 'Post, Melville Davisson', '2016-05-02', 9, 'https://www.gutenberg.org/ebooks/51941', 'en', 61), +(9759, 'The North American Slime-Moulds\nA Descriptive List of All Species of Myxomycetes Hitherto Reported from the Continent of North America, with Notes on Some Extra-Limital Species', 'Macbride, Thomas H. (Thomas Huston)', '2010-01-27', 11, 'https://www.gutenberg.org/ebooks/31098', 'en', 5117), +(9760, 'Whosoever Shall Offend', 'Crawford, F. Marion (Francis Marion)', '2004-11-03', 11, 'https://www.gutenberg.org/ebooks/13932', 'en', 16), +(9761, 'Port Argent: A Novel', 'Colton, Arthur', '2015-10-21', 6, 'https://www.gutenberg.org/ebooks/50269', 'en', 5114), +(9762, 'Mémoires d\'une contemporaine. Tome 1\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-03-20', 15, 'https://www.gutenberg.org/ebooks/28373', 'fr', 1941), +(9763, 'Laupeuden työt', 'Riehl, Wilhelm Heinrich', '2007-09-17', 13, 'https://www.gutenberg.org/ebooks/22649', 'fi', 1103), +(9764, 'The Romany Rye', 'Borrow, George', '1996-02-01', 92, 'https://www.gutenberg.org/ebooks/422', 'en', 323), +(9765, 'The Forsyte Saga, Volume I.\r\nThe Man Of Property', 'Galsworthy, John', '2006-06-14', 103, 'https://www.gutenberg.org/ebooks/2559', 'en', 5118), +(9766, 'Linnet: A Romance', 'Allen, Grant', '2015-02-17', 19, 'https://www.gutenberg.org/ebooks/48296', 'en', 5119), +(9767, 'The Queen\'s Favourite: A Story of the Restoration', NULL, '2015-07-02', 8, 'https://www.gutenberg.org/ebooks/49344', 'en', 5120), +(9768, 'The Bible, King James version, Book 63: 2 John', 'Anonymous', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/8063', 'en', 1844), +(9769, 'Western Worthies\r\nA Gallery of Biographical and Critical Sketches of West of Scotland Celebrities', 'Jeans, J. Stephen (James Stephen)', '2006-10-02', 25, 'https://www.gutenberg.org/ebooks/19434', 'en', 5121), +(9770, 'Alessandro Manzoni, Studio Biografico\r\nLetture fatte alla Taylorian Institution di Oxford nel maggio dell\'anno 1878, notevolmente ampliate', 'De Gubernatis, Angelo', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7817', 'it', 5122), +(9771, 'The World\'s Greatest Books — Volume 08 — Fiction', NULL, '2004-03-01', 277, 'https://www.gutenberg.org/ebooks/11659', 'en', 61), +(9772, 'George Eliot', 'Blind, Mathilde', '2011-07-25', 11, 'https://www.gutenberg.org/ebooks/36847', 'en', 5123), +(9773, 'An Introduction to Machine Drawing and Design', 'Low, David Allan', '2012-03-04', 35, 'https://www.gutenberg.org/ebooks/39033', 'en', 5124), +(9774, 'The Way to Win', 'Le Queux, William', '2012-10-21', 19, 'https://www.gutenberg.org/ebooks/41129', 'en', 5125), +(9775, 'The Young Treasure Hunter; Or, Fred Stanley\'s Trip to Alaska', 'Webster, Frank V.', '2007-03-28', 13, 'https://www.gutenberg.org/ebooks/20922', 'en', 2322), +(9776, 'Taxonomic Status of Some Mice of The Peromyscus boylii Group in Eastern Mexico, With Description of a New Subspecies', 'Alvarez, Ticul', '2010-08-23', 5, 'https://www.gutenberg.org/ebooks/33509', 'en', 1214), +(9777, 'The King\'s Ring\r\nBeing a Romance of the Days of Gustavus Adolphus and the Thirty Years\' War', 'Topelius, Zacharias', '2019-02-07', 14, 'https://www.gutenberg.org/ebooks/58838', 'en', 5126); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(9778, 'The Diamond Fairy Book', 'Various', '2011-11-12', 32, 'https://www.gutenberg.org/ebooks/37995', 'en', 1007), +(9779, 'Fiesko: Historiallinen murhenäytelmä', 'Schiller, Friedrich', '2014-05-05', 41, 'https://www.gutenberg.org/ebooks/45589', 'fi', 5127), +(9780, 'Hossfeld\'s Spanish Dialogues, and Idiomatic Phrases Indispensible for a Rapid Acquisition of the Spanish Language', 'Hossfeld, C.', '2013-01-25', 38, 'https://www.gutenberg.org/ebooks/41915', 'en', 2207), +(9781, 'Bertha\'s Visit to Her Uncle in England; vol. 3 [of 3]', 'Marcet, Mrs. (Jane Haldimand)', '2018-10-01', 8, 'https://www.gutenberg.org/ebooks/58004', 'en', 1096), +(9782, 'Le portier des Chartreux, ou mémoires de Saturnin écrits par lui-même', 'Gervaise de Latouche, Jean-Charles', '2018-09-08', 63, 'https://www.gutenberg.org/ebooks/57870', 'fr', 5128), +(9783, 'Correspondance Diplomatique de Bertrand de Salignac de La Mothe Fénélon, Tome Troisième', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2012-03-19', 59, 'https://www.gutenberg.org/ebooks/39201', 'fr', 5129), +(9784, 'Punch, or the London Charivari, Volume 1, August 28, 1841', 'Various', '2005-02-07', 11, 'https://www.gutenberg.org/ebooks/14925', 'en', 134), +(9785, 'Among the Canadian Alps', 'Burpee, Lawrence J. (Lawrence Johnstone)', '2011-05-29', 10, 'https://www.gutenberg.org/ebooks/36249', 'en', 5130), +(9786, 'The Jesuit Relations and Allied Documents, Vol. 1: Acadia, 1610-1613', NULL, '2014-01-14', 28, 'https://www.gutenberg.org/ebooks/44669', 'en', 5131), +(9787, 'The White Riband; Or, A Young Female\'s Folly', 'Jesse, F. Tennyson (Fryniwyd Tennyson)', '2004-11-22', 13, 'https://www.gutenberg.org/ebooks/14119', 'en', 3994), +(9788, 'Predecessors of Cleopatra', 'North, Leigh', '2018-11-05', 30, 'https://www.gutenberg.org/ebooks/58236', 'en', 5132), +(9789, 'An Introduction to Shakespeare', 'MacCracken, H. N. (Henry Noble)', '2010-01-16', 18, 'https://www.gutenberg.org/ebooks/30982', 'en', 5133), +(9790, 'Breaking the Outer Ring: Marine Landings in the Marshall Islands', 'Chapin, John C.', '2015-05-08', 20, 'https://www.gutenberg.org/ebooks/48898', 'en', 5134), +(9791, 'The Nursery, February 1878, Vol. XXIII, No. 2\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 6, 'https://www.gutenberg.org/ebooks/28141', 'en', 4641), +(9792, 'Under Fire: A Tale of New England Village Life', 'Munsey, Frank Andrew', '2009-01-30', 19, 'https://www.gutenberg.org/ebooks/27935', 'en', 712), +(9793, '尉繚子', 'Wei, Liao, active 4th century B.C.', '2005-01-01', 8, 'https://www.gutenberg.org/ebooks/7219', 'zh', 5135), +(9794, 'Old Man Curry: Race Track Stories', 'Van Loan, Charles E. (Charles Emmett)', '2009-06-10', 21, 'https://www.gutenberg.org/ebooks/29093', 'en', 4835), +(9795, 'The Lover\'s Baedeker and Guide to Arcady', 'Wells, Carolyn', '2016-02-12', 36, 'https://www.gutenberg.org/ebooks/51189', 'en', 5136), +(9796, 'Der Tor und der Tod', 'Hofmannsthal, Hugo von', '2010-03-31', 28, 'https://www.gutenberg.org/ebooks/31850', 'de', 5137), +(9797, 'Moni the Goat-Boy', 'Spyri, Johanna', '2005-11-01', 37, 'https://www.gutenberg.org/ebooks/9383', 'en', 5138), +(9798, 'Mitä on jumalanpalvelus?', 'Järnefelt, Arvid', '2016-01-07', 18, 'https://www.gutenberg.org/ebooks/50867', 'fi', 3941), +(9799, 'Idylls of the King', 'Tennyson, Alfred Tennyson, Baron', '1996-08-01', 524, 'https://www.gutenberg.org/ebooks/610', 'en', 5139), +(9800, 'The Mirror of Taste, and Dramatic Censor, Vol. I, No. 5, May 1810', NULL, '2008-10-31', 6, 'https://www.gutenberg.org/ebooks/27109', 'en', 5140), +(9801, 'Le dernier des commis voyageurs.', 'Reybaud, Louis', '2014-09-19', 7, 'https://www.gutenberg.org/ebooks/46902', 'fr', 298), +(9802, 'Bothwell; or, The Days of Mary Queen of Scots, Volume 3 (of 3)', 'Grant, James', '2017-09-11', 4, 'https://www.gutenberg.org/ebooks/55529', 'en', 5141), +(9803, 'Illustrated Catalogue of the Collections Obtained from the Pueblos of Zuñi, New Mexico, and Wolpi, Arizona, in 1881\r\nThird Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1881-82, Government Printing Office, Washington, 1884, pages 511-594', 'Stevenson, James', '2006-10-23', 24, 'https://www.gutenberg.org/ebooks/19606', 'en', 5142), +(9804, 'Memoirs of the Empress Josephine, Vol. 2 of 2', 'Rémusat, Madame de (Claire Elisabeth Jeanne Gravier de Vergennes)', '2015-06-09', 13, 'https://www.gutenberg.org/ebooks/49176', 'en', 5143), +(9805, 'The World English Bible (WEB): Jeremiah', 'Anonymous', '2005-06-01', 8, 'https://www.gutenberg.org/ebooks/8251', 'en', 5144), +(9806, 'The History of Don Quixote, Volume 1, Part 14', 'Cervantes Saavedra, Miguel de', '2004-07-19', 10, 'https://www.gutenberg.org/ebooks/5916', 'en', 3761), +(9807, 'A History of the Gipsies: with Specimens of the Gipsy Language', 'Simson, Walter', '2012-05-10', 30, 'https://www.gutenberg.org/ebooks/39665', 'en', 5145), +(9808, 'Favorite Fairy Tales', NULL, '2007-03-05', 210, 'https://www.gutenberg.org/ebooks/20748', 'en', 1007), +(9809, 'The German Secret Service in America 1914-1918', 'Jones, John Price', '2019-01-08', 6, 'https://www.gutenberg.org/ebooks/58652', 'en', 5146), +(9810, 'Love,—and the Philosopher: A Study in Sentiment', 'Corelli, Marie', '2019-06-19', 63, 'https://www.gutenberg.org/ebooks/59780', 'en', 230), +(9811, 'Ensimmäiset ihmiset kuussa', 'Wells, H. G. (Herbert George)', '2016-06-18', 10, 'https://www.gutenberg.org/ebooks/52368', 'fi', 5147), +(9812, 'U.S. Copyright Renewals, 1966 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11833', 'en', 4170), +(9813, 'Photo-Lithography', 'Fritz, Georg', '2017-11-14', 4, 'https://www.gutenberg.org/ebooks/55971', 'en', 5148), +(9814, 'Het Geld van Robinson Crusoe\r\nPopulaire uiteenzetting omtrent den oorsprong en het gebruik van geld als ruilmiddel', 'Wells, David Ames', '2009-04-06', 10, 'https://www.gutenberg.org/ebooks/28525', 'nl', 5149), +(9815, 'Blackwood\'s Edinburgh Magazine, Vol. 66, No 409, November 1849', 'Various', '2013-09-26', 10, 'https://www.gutenberg.org/ebooks/43814', 'en', 711), +(9816, 'Birds and Nature Vol. 09 No. 2 [February 1901]', 'Various', '2014-11-29', 20, 'https://www.gutenberg.org/ebooks/47488', 'en', 1584), +(9817, 'Practical Politics; or, the Liberalism of To-day', 'Robbins, Alfred Farthing', '2011-04-17', 11, 'https://www.gutenberg.org/ebooks/35894', 'en', 3346), +(9818, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 04, April 1895\r\nByzantine-Romanesque Windows in Southern Italy', 'Various', '2006-09-13', 9, 'https://www.gutenberg.org/ebooks/19262', 'en', 2140), +(9819, 'Hawkins Electrical Guide v. 04 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-07-23', 17, 'https://www.gutenberg.org/ebooks/49512', 'en', 1863), +(9820, 'Zimmerblattpflanzen', 'Dammer, Udo', '2007-10-01', 29, 'https://www.gutenberg.org/ebooks/22823', 'de', 5150), +(9821, 'The Hound of the Baskervilles', 'Doyle, Arthur Conan', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8635', 'en', 2464), +(9822, 'The Oxford Degree Ceremony', 'Wells, J. (Joseph)', '2010-02-26', 12, 'https://www.gutenberg.org/ebooks/31408', 'en', 5151), +(9823, 'The Imported Bridegroom, and Other Stories of the New York Ghetto', 'Cahan, Abraham', '2013-06-24', 34, 'https://www.gutenberg.org/ebooks/43028', 'en', 1695), +(9824, 'Gerda in Sweden', 'McDonald, Etta Blaisdell', '2004-10-15', 10, 'https://www.gutenberg.org/ebooks/13758', 'en', 5152), +(9825, 'The Witch Doctor and other Rhodesian Studies', 'Worthington, Frank', '2011-01-13', 21, 'https://www.gutenberg.org/ebooks/34946', 'en', 5153), +(9826, 'Disputation of Doctor Martin Luther on the Power and Efficacy of Indulgences', 'Luther, Martin', '1995-06-01', 337, 'https://www.gutenberg.org/ebooks/274', 'en', 5154), +(9827, 'The Black Prophet: A Tale Of Irish Famine\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 25, 'https://www.gutenberg.org/ebooks/16018', 'en', 440), +(9828, 'Julius Cæsar', 'Shakespeare, William', '2014-09-04', 83, 'https://www.gutenberg.org/ebooks/46768', 'la', 5155), +(9829, 'The Drama of Glass', 'Field, Kate', '2010-11-17', 14, 'https://www.gutenberg.org/ebooks/34348', 'en', 5156), +(9830, 'Studies and Essays: Censorship and Art', 'Galsworthy, John', '2004-09-25', 26, 'https://www.gutenberg.org/ebooks/2901', 'en', 5157), +(9831, 'Wee Wifie', 'Carey, Rosa Nouchette', '2009-05-08', 15, 'https://www.gutenberg.org/ebooks/28717', 'en', 61), +(9832, 'Nils Tufvesson och hans moder: Bonderoman', 'Geijerstam, Gustaf af', '2015-08-17', 13, 'https://www.gutenberg.org/ebooks/49720', 'sv', 420), +(9833, 'The Christian: A Story', 'Caine, Hall, Sir', '2005-07-01', 33, 'https://www.gutenberg.org/ebooks/8407', 'en', 1397), +(9834, 'Les possédés', 'Dostoyevsky, Fyodor', '2005-10-08', 49, 'https://www.gutenberg.org/ebooks/16824', 'fr', 417), +(9835, 'Northern Nut Growers Association, report of the proceedings at the eighth annual meeting\r\nStamford, Connecticut, September 5 and 6, 1917', NULL, '2006-08-15', 7, 'https://www.gutenberg.org/ebooks/19050', 'en', 1628), +(9836, 'Heralds of Empire\nBeing the Story of One Ramsay Stanhope, Lieutenant to Pierre Radisson in the Northern Fur Trade', 'Laut, Agnes C.', '2006-04-15', 12, 'https://www.gutenberg.org/ebooks/18182', 'en', 5158), +(9837, 'Mr. Rabbit at Home\nA sequel to Little Mr. Thimblefinger and his Queer Country', 'Harris, Joel Chandler', '2019-08-14', 817, 'https://www.gutenberg.org/ebooks/60098', 'en', 3256), +(9838, 'Study of Inner Cultivation', 'Anonymous', '2012-01-15', 81, 'https://www.gutenberg.org/ebooks/38585', 'en', 3892), +(9839, 'Little Golden\'s Daughter; or, The Dream of a Life Time', 'Miller, Alex. McVeigh, Mrs.', '2014-01-30', 5, 'https://www.gutenberg.org/ebooks/44803', 'en', 61), +(9840, 'Peter Vischer', 'Headlam, Cecil', '2018-06-30', 7, 'https://www.gutenberg.org/ebooks/57428', 'en', 5159), +(9841, 'An Essay on the Lyric Poetry of the Ancients', 'Ogilvie, John', '2008-04-06', 13, 'https://www.gutenberg.org/ebooks/25008', 'en', 5160), +(9842, 'My Mission to London, 1912-1914', 'Lichnowsky, Karl Max, Fürst von', '2012-04-15', 15, 'https://www.gutenberg.org/ebooks/39457', 'en', 4773), +(9843, 'Elsa', 'Björlin, Gustaf', '2016-09-02', 15, 'https://www.gutenberg.org/ebooks/52966', 'sv', 420), +(9844, 'Use of the Dead to the Living', 'Smith, Southwood', '2018-12-12', 17, 'https://www.gutenberg.org/ebooks/58460', 'en', 4470), +(9845, 'The Ladies\' Knitting and Netting Book', 'Watts, Miss', '2010-10-02', 55, 'https://www.gutenberg.org/ebooks/33951', 'en', 948), +(9846, 'Landseer\'s Dogs and Their Stories', 'Tytler, Sarah', '2016-09-19', 12, 'https://www.gutenberg.org/ebooks/53088', 'en', 766), +(9847, 'Les Précieuses ridicules', 'Molière', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/5318', 'fr', 907), +(9848, 'It Might Have Been: The Story of the Gunpowder Plot', 'Holt, Emily Sarah', '2008-06-19', 18, 'https://www.gutenberg.org/ebooks/25834', 'en', 98), +(9849, 'Fresh Light from the Ancient Monuments\r\nA Sketch of the Most Striking Confirmations of the Bible, From Recent Discoveries in Egypt, Palestine, Assyria, Babylonia, Asia Minor', 'Sayce, A. H. (Archibald Henry)', '2010-06-18', 13, 'https://www.gutenberg.org/ebooks/32883', 'en', 5161), +(9850, 'The Wonder Book of Knowledge\r\nThe Marvels of Modern Industry and Invention, the Interesting Stories of Common Things, the Mysterious Processes of Nature Simply Explained', NULL, '2012-10-19', 41, 'https://www.gutenberg.org/ebooks/41111', 'en', 4422), +(9851, 'The Piper: A Play in Four Acts', 'Peabody, Josephine Preston', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11661', 'en', 5162), +(9852, 'Introduction of the Locomotive Safety Truck\nContributions from the Museum of History and Technology: Paper 24', 'White, John H.', '2008-05-12', 40, 'https://www.gutenberg.org/ebooks/25454', 'en', 5163), +(9853, 'The Story of My Life\nBeing Reminiscences of Sixty Years\' Public Service in Canada', 'Ryerson, Egerton', '2008-02-12', 22, 'https://www.gutenberg.org/ebooks/24586', 'en', 5164), +(9854, 'Rambles in Yucatan; or, Notes of Travel Through the Peninsula\r\nIncluding a Visit to the Remarkable Ruins of Chi-Chen, Kabah, Zayi, and Uxmal. 2nd ed', 'Norman, Benjamin Moore', '2018-04-30', 5, 'https://www.gutenberg.org/ebooks/57074', 'en', 4895), +(9855, 'The Girl of the Golden West', 'Belasco, David', '2019-02-01', 18, 'https://www.gutenberg.org/ebooks/58800', 'en', 211), +(9856, 'The Subspecies of the Mountain Chickadee', 'Grinnell, Joseph', '2010-08-25', 9, 'https://www.gutenberg.org/ebooks/33531', 'en', 5165), +(9857, 'L\'Illustration, No. 0041, 9 Décembre 1843', 'Various', '2012-05-28', 6, 'https://www.gutenberg.org/ebooks/39837', 'fr', 150), +(9858, 'Scouting for Girls\nAdapted from Girl Guiding', 'Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron', '2016-07-05', 29, 'https://www.gutenberg.org/ebooks/52506', 'en', 5166), +(9859, 'History of the Commune of 1871', 'Lissagaray', '2011-05-06', 25, 'https://www.gutenberg.org/ebooks/36043', 'en', 477), +(9860, 'The Witch of Atlas', 'Shelley, Percy Bysshe', '2003-11-01', 47, 'https://www.gutenberg.org/ebooks/4696', 'en', 8), +(9861, 'Red and White: A Tale of the Wars of the Roses', 'Holt, Emily Sarah', '2013-12-18', 12, 'https://www.gutenberg.org/ebooks/44463', 'en', 98), +(9862, 'The Essentials of Good Skirmishing\nTo which are added a brief system of common light infantry drill', 'Gawler, George', '2018-09-04', 12, 'https://www.gutenberg.org/ebooks/57848', 'en', 5167), +(9863, 'John Greenleaf Whittier: His Life, Genius, and Writings', 'Kennedy, William Sloane', '2011-08-24', 15, 'https://www.gutenberg.org/ebooks/37191', 'en', 5168), +(9864, 'The Fat and the Thin', 'Zola, Émile', '2006-04-22', 102, 'https://www.gutenberg.org/ebooks/5744', 'en', 560), +(9865, 'The Cave of Gold\nA Tale of California in \'49', 'McNeil, Everett', '2006-12-17', 27, 'https://www.gutenberg.org/ebooks/20126', 'en', 5169), +(9866, 'One of the 28th: A Tale of Waterloo', 'Henty, G. A. (George Alfred)', '2004-12-09', 85, 'https://www.gutenberg.org/ebooks/14313', 'en', 5170), +(9867, 'Talonkatsojaiset: Yksinäytöksinen pilansekainen kuvaus kansan elämästä', 'Korhonen, Heikki', '2015-10-19', 2, 'https://www.gutenberg.org/ebooks/50251', 'fi', 382), +(9868, 'Punch, or the London Charivari, Volume 159, July 21, 1920', 'Various', '2006-01-24', 13, 'https://www.gutenberg.org/ebooks/17596', 'en', 134), +(9869, 'Nuoren Robertin matka Grönlantiin isäänsä hakemaan', 'Hoffmann, Franz', '2010-12-21', 6, 'https://www.gutenberg.org/ebooks/34714', 'fi', 246), +(9870, 'Cartilha Maternal; ou, Arte de Leitura', 'Deus, João de', '2014-07-19', 38, 'https://www.gutenberg.org/ebooks/46334', 'pt', 5171), +(9871, 'Journeys Through Bookland, Vol. 4', 'Sylvester, Charles Herbert', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/7013', 'en', 1063), +(9872, 'Punch, or the London Charivari, Vol. 104, April 8, 1893', 'Various', '2007-09-19', 12, 'https://www.gutenberg.org/ebooks/22671', 'en', 134), +(9873, 'Pirates of the Gorm', 'Schachner, Nathan', '2009-07-03', 38, 'https://www.gutenberg.org/ebooks/29299', 'en', 26), +(9874, 'The Magnificent Ambersons', 'Tarkington, Booth', '2005-09-01', 113, 'https://www.gutenberg.org/ebooks/8867', 'en', 5172), +(9875, 'Indian Unrest', 'Chirol, Valentine, Sir', '2005-08-05', 44, 'https://www.gutenberg.org/ebooks/16444', 'en', 5173), +(9876, 'Cawnpore', 'Trevelyan, George Otto', '2016-03-06', 24, 'https://www.gutenberg.org/ebooks/51383', 'en', 5174), +(9877, 'Henry Dunbar: A Novel', 'Braddon, M. E. (Mary Elizabeth)', '2005-10-01', 34, 'https://www.gutenberg.org/ebooks/9189', 'en', 61), +(9878, 'Robert Falconer', 'MacDonald, George', '2001-03-01', 23, 'https://www.gutenberg.org/ebooks/2561', 'en', 942), +(9879, 'Female Warriors, Vol. 1 (of 2)\r\nMemorials of Female Valour and Heroism, from the Mythological Ages to the Present Era.', 'Clayton, Ellen C. (Ellen Creathorne)', '2013-09-05', 38, 'https://www.gutenberg.org/ebooks/43646', 'en', 4289), +(9880, 'The Silence: What It Is and How To Use It', 'Bush, David V. (David Van)', '2004-08-08', 45, 'https://www.gutenberg.org/ebooks/13136', 'en', 5175), +(9881, 'Les Corneilles', 'Rosny, J.-H., aîné', '2008-11-20', 15, 'https://www.gutenberg.org/ebooks/27303', 'fr', 298), +(9882, 'The Chief Mate\'s Yarns: Twelve Tales of the Sea', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-10-09', 22, 'https://www.gutenberg.org/ebooks/55723', 'en', 323), +(9883, 'Notes and Queries, Index to Eighth Volume, July-December 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 11, 'https://www.gutenberg.org/ebooks/42794', 'en', 105), +(9884, 'Quality Street: A Comedy', 'Barrie, J. M. (James Matthew)', '2010-02-12', 54, 'https://www.gutenberg.org/ebooks/31266', 'en', 5176), +(9885, 'Milton\'s England', 'Mead, Lucia True Ames', '2010-12-01', 11, 'https://www.gutenberg.org/ebooks/34526', 'en', 1533), +(9886, 'People Minus X', 'Gallun, Raymond Z.', '2015-09-27', 47, 'https://www.gutenberg.org/ebooks/50063', 'en', 26), +(9887, 'I Was a Teen-Age Secret Weapon', 'Sabia, Richard', '2007-11-22', 59, 'https://www.gutenberg.org/ebooks/23591', 'en', 26), +(9888, 'The Inglises; Or, How the Way Opened', 'Robertson, Margaret M. (Margaret Murray)', '2009-02-24', 7, 'https://www.gutenberg.org/ebooks/28179', 'en', 470), +(9889, 'Pittsburgh Main Thoroughfares and the Down Town District\nImprovements Necessary to Meet the City\'s Present and Future Needs', 'Olmsted, Frederick Law', '2015-09-15', 10, 'https://www.gutenberg.org/ebooks/49972', 'en', 5177), +(9890, 'Selected Poems of John Clare, Volume 1', 'Clare, John', '2007-08-01', 4, 'https://www.gutenberg.org/ebooks/22443', 'en', 8), +(9891, 'Eveline Mandeville\r\nOr, The Horse Thief Rival', 'Addison, Alvin', '2005-09-08', 10, 'https://www.gutenberg.org/ebooks/16676', 'en', 61), +(9892, 'Red Riding Hood', 'Very, Lydia L. A. (Lydia Louisa Anna)', '2010-04-02', 40, 'https://www.gutenberg.org/ebooks/31868', 'en', 5178), +(9893, 'The Scottish Parliament Before the Union of the Crowns', 'Rait, Robert S. (Robert Sangster)', '2014-06-26', 17, 'https://www.gutenberg.org/ebooks/46106', 'en', 5179), +(9894, '文淵閣四庫全書', 'Various', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7221', 'zh', NULL), +(9895, 'The Square Root of 3', 'Nemiroff, Robert J.', '1996-08-01', 12, 'https://www.gutenberg.org/ebooks/628', 'en', 5180), +(9896, 'McClure\'s Magazine, Vol. 6, No. 6, May, 1896', 'Various', '2004-08-27', 31, 'https://www.gutenberg.org/ebooks/13304', 'en', 883), +(9897, 'Histoire du Canada depuis sa découverte jusqu\'à nos jours. Tome I', 'Garneau, F.-X. (François-Xavier)', '2008-11-02', 17, 'https://www.gutenberg.org/ebooks/27131', 'fr', 5181), +(9898, 'Ali Pacha\r\nCelebrated Crimes', 'Dumas, Alexandre', '2006-02-28', 75, 'https://www.gutenberg.org/ebooks/2753', 'en', 5050), +(9899, 'The Great Events by Famous Historians, Volume 13', NULL, '2009-10-06', 56, 'https://www.gutenberg.org/ebooks/30186', 'en', 346), +(9900, 'Scaramouche: A Romance of the French Revolution', 'Sabatini, Rafael', '2009-05-01', 37, 'https://www.gutenberg.org/ebooks/28945', 'en', 2564), +(9901, 'Harper\'s Young People, November 30, 1880\nAn Illustrated Monthly', 'Various', '2013-08-15', 13, 'https://www.gutenberg.org/ebooks/43474', 'en', 479), +(9902, 'Runaway', 'Samachson, Joseph', '2009-09-03', 44, 'https://www.gutenberg.org/ebooks/29897', 'en', 179), +(9903, 'The World English Bible (WEB): Luke', 'Anonymous', '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8269', 'en', 2260), +(9904, 'Mr. Crewe\'s Career — Volume 1', 'Churchill, Winston', '2004-10-16', 2, 'https://www.gutenberg.org/ebooks/3681', 'en', 1238), +(9905, 'La clique dorée', 'Gaboriau, Emile', '2010-01-23', 28, 'https://www.gutenberg.org/ebooks/31054', 'fr', 5182), +(9906, 'The Silver Bullet', 'Hume, Fergus', '2017-09-08', 25, 'https://www.gutenberg.org/ebooks/55511', 'en', 128), +(9907, 'Sailing', 'Knight, E. F. (Edward Frederick)', '2018-01-18', 27, 'https://www.gutenberg.org/ebooks/56394', 'en', 5183), +(9908, 'La Suggestibilité', 'Binet, Alfred', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/11453', 'fr', 5184), +(9909, 'The Boy Tar', 'Reid, Mayne', '2008-06-01', 35, 'https://www.gutenberg.org/ebooks/25666', 'en', 3535), +(9910, 'Rimatori siculo-toscani del dugento. Serie prima - Pistoiesi-Lucchesi-Pisani', NULL, '2012-03-24', 19, 'https://www.gutenberg.org/ebooks/39239', 'it', 5185), +(9911, 'The Mosstrooper: A Legend of the Scottish Border', 'Fittis, Robert Scott', '2012-11-08', 11, 'https://www.gutenberg.org/ebooks/41323', 'en', 3672), +(9912, 'Olof Krarer, the Esquimaux Lady: A Story of Her Native Home', 'Krarer, Olof', '2010-09-11', 12, 'https://www.gutenberg.org/ebooks/33703', 'en', 5186), +(9913, 'Uncle Bernac: A Memory of the Empire', 'Doyle, Arthur Conan', '2004-01-01', 53, 'https://www.gutenberg.org/ebooks/10581', 'en', 2221), +(9914, 'Rifles and Riflemen at the Battle of Kings Mountain', 'United States. National Park Service', '2018-05-31', 23, 'https://www.gutenberg.org/ebooks/57246', 'en', 5187), +(9915, 'Nature and the Gods\nFrom \"The Atheistic Platform\", Twelve Lectures', 'Moss, Arthur B.', '2011-05-29', 8, 'https://www.gutenberg.org/ebooks/36271', 'en', 1191), +(9916, 'Katri: Kertomus 17 vuosi-sadasta', 'Nervander, Emil Fredrik', '2014-05-27', 4, 'https://www.gutenberg.org/ebooks/45783', 'fi', 61), +(9917, 'The Scourge of God: A Romance of Religious Persecution', 'Bloundelle-Burton, John', '2016-08-06', 12, 'https://www.gutenberg.org/ebooks/52734', 'en', 1127), +(9918, 'Pearl and Periwinkle', 'Graetz, Anna', '2007-01-08', 19, 'https://www.gutenberg.org/ebooks/20314', 'en', 751), +(9919, 'Langs den Congo tot Brazzaville\r\nDe Aarde en haar Volken, 1906', 'Kloos, A.', '2004-11-22', 10, 'https://www.gutenberg.org/ebooks/14121', 'nl', 5188), +(9920, 'With the Swamp Fox: A Story of General Marion\'s Young Spies', 'Otis, James', '2014-01-12', 33, 'https://www.gutenberg.org/ebooks/44651', 'en', 1889), +(9921, 'A Word, Only a Word — Volume 05', 'Ebers, Georg', '2004-04-01', 36, 'https://www.gutenberg.org/ebooks/5576', 'en', 803), +(9922, 'Iloisia juttuja IV', 'Jääskeläinen, Kaapro', '2007-07-09', 15, 'https://www.gutenberg.org/ebooks/22027', 'fi', 61), +(9923, 'Väkevin: Kummallinen kertomus', 'Bang, Herman', '2005-07-05', 10, 'https://www.gutenberg.org/ebooks/16212', 'fi', 2631), +(9924, 'Rejtelmek (1. kötet)', 'Bródy, Sándor', '2014-08-11', 15, 'https://www.gutenberg.org/ebooks/46562', 'hu', 1532), +(9925, 'Billy Bunny and Daddy Fox', 'Cory, David', '2011-01-27', 53, 'https://www.gutenberg.org/ebooks/35090', 'en', 1045), +(9926, 'A Woman of the Ice Age', 'Gratacap, L. P. (Louis Pope)', '2017-11-12', 6, 'https://www.gutenberg.org/ebooks/55949', 'en', 5189), +(9927, 'Ernest Maltravers — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 17, 'https://www.gutenberg.org/ebooks/7645', 'en', 137), +(9928, 'By Birth a Lady', 'Fenn, George Manville', '2010-10-26', 18, 'https://www.gutenberg.org/ebooks/34142', 'en', 61), +(9929, 'The Poems of Schiller — Suppressed poems', 'Schiller, Friedrich', '2004-12-08', 26, 'https://www.gutenberg.org/ebooks/6797', 'en', 8), +(9930, 'Boresko kaunotar y.m. kertomuksia', 'Jókai, Mór', '2015-11-07', 15, 'https://www.gutenberg.org/ebooks/50407', 'fi', 61), +(9931, 'The Church of England Magazine - Volume 10, No. 263, January 9, 1841', 'Various', '2010-02-27', 11, 'https://www.gutenberg.org/ebooks/31430', 'en', 5190), +(9932, 'Little Lucy\'s Wonderful Globe', 'Yonge, Charlotte M. (Charlotte Mary)', '2008-08-30', 22, 'https://www.gutenberg.org/ebooks/26487', 'en', 5191), +(9933, 'Eureka', 'Poe, Edgar Allan', '2017-07-23', 37, 'https://www.gutenberg.org/ebooks/55175', 'fr', 5192), +(9934, 'John Rutherford, the White Chief: A Story of Adventure in New Zealand', 'Craik, George Lillie', '2004-10-16', 13, 'https://www.gutenberg.org/ebooks/13760', 'en', 3572), +(9935, 'Robert Burns: How To Know Him', 'Neilson, William Allan', '2006-05-14', 37, 'https://www.gutenberg.org/ebooks/18388', 'en', 5193), +(9936, 'Een verlaten post', 'Woude, Johanna van', '2008-12-17', 8, 'https://www.gutenberg.org/ebooks/27555', 'nl', 319), +(9937, 'Wilhelm Meisters Lehrjahre — Band 3', 'Goethe, Johann Wolfgang von', '2000-09-01', 33, 'https://www.gutenberg.org/ebooks/2337', 'de', 5194), +(9938, '竹葉亭雜記', 'Yao, Yuanzhi', '2013-06-22', 102, 'https://www.gutenberg.org/ebooks/43010', 'zh', 5195), +(9939, 'Correspondance Diplomatique de Bertrand de Salignac de La Mothe Fénélon, Tome Quatrième\nAmbassadeur de France en Angleterre de 1568 à 1575', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2012-09-06', 38, 'https://www.gutenberg.org/ebooks/40695', 'fr', 5196), +(9940, 'Mentone, Cairo, and Corfu', 'Woolson, Constance Fenimore', '2010-08-07', 26, 'https://www.gutenberg.org/ebooks/33367', 'en', 5197), +(9941, 'Från vargtider och vallpojksår: En samling minnen från forna dagars Östra Nyland', 'Bengts, Josefina', '2018-08-01', 14, 'https://www.gutenberg.org/ebooks/57622', 'sv', 5198), +(9942, 'La veille d\'armes: Pièce en cinq actes', 'Népoty, Lucien', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11037', 'fr', 5199), +(9943, '補紅樓夢', 'Langhuanshanqiao, active 18th century-19th century', '2008-04-27', 25, 'https://www.gutenberg.org/ebooks/25202', 'zh', 1003), +(9944, 'The Real Shelley. New Views of the Poet\'s Life. Vol. 1 (of 2)', 'Jeaffreson, John Cordy', '2012-12-31', 14, 'https://www.gutenberg.org/ebooks/41747', 'en', 3072), +(9945, 'Apple Growing', 'Burritt, M. C. (Maurice Chase)', '2007-03-09', 19, 'https://www.gutenberg.org/ebooks/20770', 'en', 3329), +(9946, 'Kuningastarinoita', 'Snorri Sturluson', '2016-10-15', 8, 'https://www.gutenberg.org/ebooks/53282', 'fi', 5200), +(9947, 'Copper Streak Trail', 'Rhodes, Eugene Manlove', '2004-12-31', 17, 'https://www.gutenberg.org/ebooks/14545', 'en', 3196), +(9948, 'Memoirs of the Dukes of Urbino, Volume 2 (of 3)\r\nIllustrating the Arms, Arts, and Literature of Italy, from 1440 To 1630.', 'Dennistoun, James', '2013-11-21', 17, 'https://www.gutenberg.org/ebooks/44235', 'en', 5201), +(9949, 'Citation and Examination of William Shakspeare, Euseby Treen, Joseph Carnaby, and Silas Gough, Clerk', 'Landor, Walter Savage', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/5112', 'en', 5202), +(9950, 'The Life of a Celebrated Buccaneer\nA Page of Past History for the Use of the Children of To-day', 'Clynton, Richard', '2011-07-04', 10, 'https://www.gutenberg.org/ebooks/36615', 'en', 550), +(9951, 'Ethica\nIn meetkundigen trant uiteengezet, vertaald, ingeleid en toegelicht\ndoor Jhr. Dr. Nico van Suchtelen', 'Spinoza, Benedictus de', '2005-03-29', 52, 'https://www.gutenberg.org/ebooks/15497', 'nl', 680), +(9952, 'Isäntä ja renki', 'Tolstoy, Leo, graf', '2016-06-16', 12, 'https://www.gutenberg.org/ebooks/52350', 'fi', 5203), +(9953, 'Selection from J. & A. Churchill\'s General Catalogue (1890)\r\nComprising All Recent Works Published by Them on the Art and Science of Medicine', 'J. & A. Churchill', '2018-06-27', 5, 'https://www.gutenberg.org/ebooks/57410', 'en', 5204), +(9954, 'King Henry IV, Part 1', 'Shakespeare, William', '1999-06-01', 46, 'https://www.gutenberg.org/ebooks/1780', 'en', 1665), +(9955, 'Medicina Flagellata; Or, The Doctor Scarify\'d', 'Anonymous', '2010-07-14', 12, 'https://www.gutenberg.org/ebooks/33155', 'en', 1792), +(9956, 'The Executioner', 'Riley, Frank', '2010-04-22', 32, 'https://www.gutenberg.org/ebooks/32087', 'en', 238), +(9957, 'Juvenilla; Prosa ligera', 'Cané, Miguel', '2012-12-07', 31, 'https://www.gutenberg.org/ebooks/41575', 'es', 5205), +(9958, '20.000 Mijlen onder Zee: Oostelijk Halfrond', 'Verne, Jules', '2004-02-01', 54, 'https://www.gutenberg.org/ebooks/11205', 'nl', 737), +(9959, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 22, November, 1878', 'Various', '2008-04-10', 13, 'https://www.gutenberg.org/ebooks/25030', 'en', 210), +(9960, 'Warren Commission (07 of 26): Hearings Vol. VII (of 15)', 'United States. Warren Commission', '2013-10-20', 20, 'https://www.gutenberg.org/ebooks/44007', 'en', 5206), +(9961, 'Taken Alive', 'Roe, Edward Payson', '2004-03-01', 26, 'https://www.gutenberg.org/ebooks/5320', 'en', 179), +(9962, 'Het Leven der Dieren: Deel 1, Hoofdstuk 08: De Tandeloozen; Hoofdstuk 09: De Slurfdieren; Hoofdstuk 10: De Onevenvingerigen', 'Brehm, Alfred Edmund', '2007-02-08', 7, 'https://www.gutenberg.org/ebooks/20542', 'nl', 2360), +(9963, 'Hochelagans and Mohawks: A Link in Iroquois History', 'Lighthall, W. D. (William Douw)', '2005-01-24', 6, 'https://www.gutenberg.org/ebooks/14777', 'en', 5207), +(9964, 'New Hire', 'Dryfoos, Dave', '2010-09-23', 27, 'https://www.gutenberg.org/ebooks/33969', 'en', 179), +(9965, 'The Appreciation of Music - Vol. 1 (of 3)', 'Surette, Thomas Whitney', '2018-12-12', 13, 'https://www.gutenberg.org/ebooks/58458', 'en', 1395), +(9966, 'On the Existence of Active Oxygen\r\nThesis Presented for the Attainment of the Degree of Doctor of Philosophy at the Johns Hopkins University', 'Keiser, Edward Harrison', '2016-05-25', 4, 'https://www.gutenberg.org/ebooks/52162', 'en', 1821), +(9967, 'The Two Supercargoes; Or, Adventures in Savage Africa', 'Kingston, William Henry Giles', '2007-05-16', 29, 'https://www.gutenberg.org/ebooks/21490', 'en', 1023), +(9968, 'Art Principles with Special Reference to Painting\r\nTogether with Notes on the Illusions Produced by the Painter', 'Govett, Ernest', '2011-06-14', 21, 'https://www.gutenberg.org/ebooks/36427', 'en', 3670), +(9969, 'Prison Journals During the French Revolution', 'Duras, Louise Henriette Charlotte Philippine (de Noailles) de Durfort, duchesse de', '2014-09-01', 26, 'https://www.gutenberg.org/ebooks/46750', 'en', 5208), +(9970, 'Expéditions autour de ma tente: Boutades militaires', 'Des Ecores, Ch.', '2006-11-17', 18, 'https://www.gutenberg.org/ebooks/19854', 'fr', 5209), +(9971, 'The Book of Wonder', 'Dunsany, Lord', '2005-02-01', 292, 'https://www.gutenberg.org/ebooks/7477', 'en', 2634), +(9972, 'The Frozen Pirate', 'Russell, William Clark', '2007-08-02', 49, 'https://www.gutenberg.org/ebooks/22215', 'en', 26), +(9973, 'Le grillon du foyer', 'Dickens, Charles', '2005-06-07', 28, 'https://www.gutenberg.org/ebooks/16020', 'fr', 3397), +(9974, 'William Harvey and the Discovery of the Circulation of the Blood', 'Huxley, Thomas Henry', '2001-11-01', 78, 'https://www.gutenberg.org/ebooks/2939', 'en', 5210), +(9975, 'Dave Dawson with the Eighth Air Force', 'Bowen, Robert Sidney', '2015-12-07', 14, 'https://www.gutenberg.org/ebooks/50635', 'en', 1004), +(9976, 'Memoirs of Carwin the Biloquist (A Fragment)', 'Brown, Charles Brockden', '1997-03-01', 68, 'https://www.gutenberg.org/ebooks/842', 'en', 5211), +(9977, 'Ephemera Critica; Or, Plain Truths About Current Literature', 'Collins, John Churton', '2010-11-19', 23, 'https://www.gutenberg.org/ebooks/34370', 'en', 1694), +(9978, 'Response in the Living and Non-Living', 'Bose, Jagadis Chandra', '2006-08-03', 27, 'https://www.gutenberg.org/ebooks/18986', 'en', 5212), +(9979, 'American Book-Plates: A Guide to Their Study with Examples', 'Allen, Charles Dexter', '2014-12-17', 24, 'https://www.gutenberg.org/ebooks/47682', 'en', 5213), +(9980, 'Reminiscences of Prince Talleyrand, Volume 1 (of 2)', 'Colmache, M., active 19th century', '2017-08-11', 13, 'https://www.gutenberg.org/ebooks/55347', 'en', 1343), +(9981, 'Clairvoyance and Occult Powers', 'Atkinson, William Walker', '2004-05-01', 166, 'https://www.gutenberg.org/ebooks/12480', 'en', 5214), +(9982, 'Household Stories by the Brothers Grimm', 'Grimm, Wilhelm', '2006-08-17', 251, 'https://www.gutenberg.org/ebooks/19068', 'en', 900), +(9983, 'The Desultory Man\r\nCollection of Ancient and Modern British Novels and Romances. Vol. CXLVII.', 'James, G. P. R. (George Payne Rainsford)', '2015-08-16', 8, 'https://www.gutenberg.org/ebooks/49718', 'en', 61), +(9984, 'A Canadian Bankclerk', 'Preston, Jack', '2010-03-11', 7, 'https://www.gutenberg.org/ebooks/31602', 'en', 65), +(9985, 'History of Friedrich II of Prussia — Volume 05', 'Carlyle, Thomas', '2008-06-16', 26, 'https://www.gutenberg.org/ebooks/2105', 'en', 3120), +(9986, 'The Lyon in Mourning, Vol. 1\r\nor a collection of speeches, letters, journals, etc. relative to the affairs of Prince Charles Edward Stuart', 'Forbes, Robert', '2013-07-15', 25, 'https://www.gutenberg.org/ebooks/43222', 'en', 5215), +(9987, 'Ceylon; an Account of the Island Physical, Historical, and\r\nTopographical with Notices of Its Natural History, Antiquities and\r\nProductions, Volume 1', 'Tennent, James Emerson, Sir', '2004-09-28', 16, 'https://www.gutenberg.org/ebooks/13552', 'en', 5216), +(9988, 'Short Reasons for Communion with the Church of England\r\nOr, The Churchman\'s answer to the question, \"Why are you a Member of the Established Church?\"', 'Biddulph, Thomas Tregenna', '2017-03-07', 10, 'https://www.gutenberg.org/ebooks/54295', 'en', 4102), +(9989, 'Slavery: What it was, what it has done, what it intends to do\nSpeech of Hon. Cydnor B. Tompkins, of Ohio', 'Tompkins, Cydnor Bailey', '2009-01-10', 18, 'https://www.gutenberg.org/ebooks/27767', 'en', 5217), +(9990, 'The Prolongation of Life: Optimistic Studies', 'Metchnikoff, Elie', '2016-03-21', 56, 'https://www.gutenberg.org/ebooks/51521', 'en', 295), +(9991, 'The Strand Magazine, Vol. 01, No. 06, June 1891\r\nAn Illustrated Monthly', 'Various', '2014-08-16', 17, 'https://www.gutenberg.org/ebooks/46596', 'en', 2998), +(9992, 'Anatole, Vol. 1', 'Gay, Sophie', '2011-01-25', 14, 'https://www.gutenberg.org/ebooks/35064', 'fr', 61), +(9993, 'Aristotle on the art of poetry', 'Aristotle', '2004-10-01', 280, 'https://www.gutenberg.org/ebooks/6763', 'en', 3582), +(9994, 'The Gastronomic Regenerator: A Simplified and Entirely New System of Cookery\r\nWith Nearly Two Thousand Practical Receipts Suited to the Income of All Classes', 'Soyer, Alexis', '2014-11-23', 40, 'https://www.gutenberg.org/ebooks/47444', 'en', 1369), +(9995, 'Initiative Psychic Energy\nBeing the Sixth of a Series of Twelve Volumes on the\nApplications of Psychology to the Problems of Personal and\nBusiness Efficiency', 'Hilton, Warren', '2005-12-17', 68, 'https://www.gutenberg.org/ebooks/17334', 'en', 5175), +(9996, 'Three Thousand Years of Mental Healing', 'Cutten, George Barton', '2007-10-22', 13, 'https://www.gutenberg.org/ebooks/23101', 'en', 4795), +(9997, 'Rebel women', 'Sharp, Evelyn', '2013-02-19', 16, 'https://www.gutenberg.org/ebooks/42136', 'en', 5218), +(9998, 'Mr. Honey\'s Small Banking Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 16, 'https://www.gutenberg.org/ebooks/3211', 'en', 5219), +(9999, 'The Arts of Persia & Other Countries of Islam', 'Kevorkian, Hagop K.', '2008-08-28', 26, 'https://www.gutenberg.org/ebooks/26473', 'en', 5220), +(10000, 'La Maison', 'Bordeaux, Henry', '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/12646', 'fr', 687), +(10001, 'Bill Bolton—Flying Midshipman', 'Sainsbury, Noel', '2011-04-12', 11, 'https://www.gutenberg.org/ebooks/35858', 'en', 5221), +(10002, 'The Irish Penny Journal, Vol. 1 No. 40, April 3, 1841', 'Various', '2017-07-23', 2, 'https://www.gutenberg.org/ebooks/55181', 'en', 81), +(10003, 'The Laird of Norlaw; A Scottish Story', 'Oliphant, Mrs. (Margaret)', '2017-01-25', 21, 'https://www.gutenberg.org/ebooks/54053', 'en', 2389), +(10004, 'Tarass Boulba', 'Gogol, Nikolai Vasilevich', '2004-10-19', 29, 'https://www.gutenberg.org/ebooks/13794', 'fr', 5222), +(10005, 'De la Démocratie en Amérique, tome quatrième', 'Tocqueville, Alexis de', '2009-11-21', 26, 'https://www.gutenberg.org/ebooks/30516', 'fr', 1720), +(10006, 'A Daughter of the Rich', 'Waller, Mary E. (Mary Ella)', '2012-09-04', 65, 'https://www.gutenberg.org/ebooks/40661', 'en', 2190), +(10007, 'Avery', 'Phelps, Elizabeth Stuart', '2010-11-23', 20, 'https://www.gutenberg.org/ebooks/33393', 'en', 705), +(10008, 'Sonnets on Sundry Notes of Music', 'Shakespeare, William', '1998-11-01', 26, 'https://www.gutenberg.org/ebooks/1546', 'en', 466), +(10009, 'Chatterbox, 1906', 'Various', '2008-01-15', 35, 'https://www.gutenberg.org/ebooks/24324', 'en', 668), +(10010, 'Boys and Girls from Thackeray', 'Sweetser, Kate Dickinson', '2003-11-01', 21, 'https://www.gutenberg.org/ebooks/10111', 'en', 5223), +(10011, 'The Rise of the Dutch Republic — Volume 08: 1563-64', 'Motley, John Lothrop', '2004-01-01', 28, 'https://www.gutenberg.org/ebooks/4808', 'en', 3372), +(10012, 'Sanctuary: A Bird Masque', 'MacKaye, Percy', '2018-03-08', 22, 'https://www.gutenberg.org/ebooks/56704', 'en', 5224), +(10013, 'Dickens\' Stories About Children Every Child Can Read', 'Dickens, Charles', '2010-05-03', 82, 'https://www.gutenberg.org/ebooks/32241', 'en', 4426), +(10014, 'Eighth Annual Report of the Bureau of Ethnology\r\nto the Secretary of the Smithsonian Institution, 1886-1887, Government Printing Office, Washington, 1891', NULL, '2007-03-08', 31, 'https://www.gutenberg.org/ebooks/20784', 'en', 5225), +(10015, 'The Every-day Book and Table Book. v. 2 (of 3)\r\nor Everlasting Calendar of Popular Amusements, Sports, Pastimes, Ceremonies, Manners, Customs and Events, Incident to Each of the Three Hundred and Sixty-five Days, in past and Present Times; Forming a Complete History of the Year, Month, and Seasons, and a Perpetual Key to the Almanac', 'Hone, William', '2016-10-14', 12, 'https://www.gutenberg.org/ebooks/53276', 'en', 5226), +(10016, 'Émaux et Camées', 'Gautier, Théophile', '2011-10-12', 36, 'https://www.gutenberg.org/ebooks/37733', 'fr', 4086), +(10017, 'The Untilled Field', 'Moore, George', '2003-05-01', 30, 'https://www.gutenberg.org/ebooks/4034', 'en', 440), +(10018, 'A System of Practical Medicine. By American Authors. Vol. 2\r\nGeneral Diseases (Continued) and Diseases of the Digestive System', NULL, '2014-04-03', 34, 'https://www.gutenberg.org/ebooks/45313', 'en', 736), +(10019, 'Marie; ou, l\'Esclavage aux Etats-Unis: Tableau de moeurs américaines', 'Beaumont, Gustave de', '2005-03-25', 25, 'https://www.gutenberg.org/ebooks/15463', 'fr', 1819), +(10020, 'The Princess of the School', 'Brazil, Angela', '2007-06-01', 74, 'https://www.gutenberg.org/ebooks/21656', 'en', 1779), +(10021, 'Diamantstad', 'Heijermans, Herman', '2008-01-02', 13, 'https://www.gutenberg.org/ebooks/24116', 'nl', 319), +(10022, 'The Rover Boys at College; Or, The Right Road and the Wrong', 'Stratemeyer, Edward', '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10323', 'en', 2788), +(10023, 'Tom Ossington\'s Ghost', 'Marsh, Richard', '2012-08-08', 36, 'https://www.gutenberg.org/ebooks/40453', 'en', 3499), +(10024, 'Sydän: Kirja nuorisolle', 'De Amicis, Edmondo', '2017-01-03', 9, 'https://www.gutenberg.org/ebooks/53878', 'fi', 5227), +(10025, 'The Complete Works of Richard Crashaw, Volume I', 'Crashaw, Richard', '2012-01-12', 34, 'https://www.gutenberg.org/ebooks/38549', 'en', 466), +(10026, 'Love\'s Labour\'s Lost', 'Shakespeare, William', '1999-06-01', 22, 'https://www.gutenberg.org/ebooks/1774', 'en', 907), +(10027, 'The Regular Brigade of the Fourteenth Army Corps, the Army of the Cumberland, in the Battle of Stone River, or Murfreesboro\', Tennessee', 'Phisterer, Frederick', '2010-04-21', 16, 'https://www.gutenberg.org/ebooks/32073', 'en', 5228), +(10028, 'Amazing Grace, Who Proves That Virtue Has Its Silver Lining', 'Sharber, Kate Trimble', '2012-12-08', 23, 'https://www.gutenberg.org/ebooks/41581', 'en', 48), +(10029, 'A Life of Walt Whitman', 'Binns, Henry Bryan', '2018-02-10', 9, 'https://www.gutenberg.org/ebooks/56536', 'en', 5229), +(10030, 'In Answer to Prayer', 'Maclaren, Ian', '2011-09-21', 18, 'https://www.gutenberg.org/ebooks/37501', 'en', 5230), +(10031, 'The Twelve Tables', NULL, '2005-01-24', 25, 'https://www.gutenberg.org/ebooks/14783', 'en', 5231), +(10032, 'Devlin the Barber', 'Farjeon, B. L. (Benjamin Leopold)', '2016-09-13', 13, 'https://www.gutenberg.org/ebooks/53044', 'en', 137), +(10033, 'The Oxonian in Thelemarken, volume 2 (of 2)\r\nor, Notes of travel in south-western Norway in the summers of 1856 and 1857. With glances at the legendary lore of that district.', 'Metcalfe, Frederick', '2016-05-30', 8, 'https://www.gutenberg.org/ebooks/52196', 'en', 5232), +(10034, 'His Grace of Osmonde\r\nBeing the Portions of That Nobleman\'s Life Omitted in the Relation of His Lady\'s Story Presented to the World of Fashion under the Title of A Lady of Quality', 'Burnett, Frances Hodgson', '2005-04-18', 63, 'https://www.gutenberg.org/ebooks/15651', 'en', 5233), +(10035, 'The Gilpins and their Fortunes: A Story of Early Days in Australia', 'Kingston, William Henry Giles', '2007-05-15', 11, 'https://www.gutenberg.org/ebooks/21464', 'en', 1655), +(10036, 'The Letters of Franklin K. Lane, Personal and Political', 'Lane, Franklin K.', '2003-07-01', 3, 'https://www.gutenberg.org/ebooks/4206', 'en', 699), +(10037, 'Les historiettes de Tallemant des Réaux, tome cinquième\r\nMémoires pour servir à l\'histoire du XVIIe siècle', 'Tallemant des Réaux', '2014-03-12', 22, 'https://www.gutenberg.org/ebooks/45121', 'fr', 2874), +(10038, '管子 — Volume 01 : Chapters 1-5', 'Guan, Zhong', '2005-02-01', 22, 'https://www.gutenberg.org/ebooks/7483', 'zh', 1493), +(10039, 'Your Negro Neighbor', 'Brawley, Benjamin Griffith', '2011-02-12', 12, 'https://www.gutenberg.org/ebooks/35256', 'en', 180), +(10040, 'Six Letters From the Colonies', 'Seaton, R. C. (Robert Cooper)', '2009-08-04', 79, 'https://www.gutenberg.org/ebooks/29609', 'en', 767), +(10041, 'Metamorphosis', 'De Vet, Charles V.', '2016-04-09', 37, 'https://www.gutenberg.org/ebooks/51713', 'en', 5234), +(10042, 'Histoire fantastique du célèbre Pierrot\r\nÉcrite par le magicien Alcofribas; traduite du sogdien par Alfred Assollant', 'Assollant, Alfred', '2005-11-19', 17, 'https://www.gutenberg.org/ebooks/17106', 'fr', 61), +(10043, 'Ein Mann\nDes Seefahrers und aufrechten Bürgers Joachim Nettelbeck wundersame Lebensgeschichte von ihm selbst erzählt', 'Nettelbeck, Joachim', '2007-11-04', 26, 'https://www.gutenberg.org/ebooks/23333', 'de', 5235), +(10044, 'Crome Yellow', 'Huxley, Aldous', '2004-09-01', 9, 'https://www.gutenberg.org/ebooks/6551', 'en', 781), +(10045, 'Zadig; Or, The Book of Fate', 'Voltaire', '2006-08-03', 182, 'https://www.gutenberg.org/ebooks/18972', 'en', 742), +(10046, 'The Philippine Islands, 1493-1898, Volume 42, 1670-1700\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2010-11-20', 21, 'https://www.gutenberg.org/ebooks/34384', 'en', 745), +(10047, 'The Amores; or, Amours\r\nLiterally Translated into English Prose, with Copious Notes', 'Ovid', '2014-12-16', 66, 'https://www.gutenberg.org/ebooks/47676', 'en', 5236), +(10048, 'The Submarine Hunters: A Story of the Naval Patrol Work in the Great War', 'Westerman, Percy F. (Percy Francis)', '2008-09-16', 28, 'https://www.gutenberg.org/ebooks/26641', 'en', 5237), +(10049, 'Write It Right: A Little Blacklist of Literary Faults', 'Bierce, Ambrose', '2004-05-01', 72, 'https://www.gutenberg.org/ebooks/12474', 'en', 5238), +(10050, 'The Gist of Japan: The Islands, Their People, and Missions', 'Peery, R. B. (Rufus Benton)', '2013-03-11', 6, 'https://www.gutenberg.org/ebooks/42304', 'en', 5239), +(10051, 'Faust — Part 1', 'Goethe, Johann Wolfgang von', '2002-01-01', 209, 'https://www.gutenberg.org/ebooks/3023', 'en', 5240), +(10052, 'Absolution', 'Viebig, Clara', '2009-12-20', 29, 'https://www.gutenberg.org/ebooks/30724', 'en', 61), +(10053, 'A Little Dinner at Timmins\'s', 'Thackeray, William Makepeace', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9519', 'en', 1079), +(10054, 'The Harvest of a Quiet Eye: Leisure Thoughts for Busy Lives', 'Vernon, John Richard', '2017-02-28', 10, 'https://www.gutenberg.org/ebooks/54261', 'en', 1130), +(10055, 'Romantic Love and Personal Beauty\r\nTheir development, causal relations, historic and national peculiarities', 'Finck, Henry T.', '2019-08-04', 837, 'https://www.gutenberg.org/ebooks/60054', 'en', 3765), +(10056, 'Child and Country: A Book of the Younger Generation', 'Comfort, Will Levington', '2009-01-13', 2, 'https://www.gutenberg.org/ebooks/27793', 'en', 973), +(10057, 'Le blé en herbe: roman', 'Colette', '2019-07-16', 172, 'https://www.gutenberg.org/ebooks/59926', 'fr', 2118), +(10058, 'The Girl from Arizona', 'Rhoades, Nina', '2010-05-18', 10, 'https://www.gutenberg.org/ebooks/32417', 'en', 62), +(10059, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 561, August 11, 1832', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11695', 'en', 133), +(10060, 'Das Recht der Hagestolze: Eine Heiratsgeschichte aus dem Neckartal', 'Wolff, Julius', '2017-12-09', 7, 'https://www.gutenberg.org/ebooks/56152', 'de', 253), +(10061, 'Der rote Kampfflieger', 'Richthofen, Manfred, Freiherr von', '2008-02-11', 75, 'https://www.gutenberg.org/ebooks/24572', 'de', 5241), +(10062, 'Musta tähti: Romaani', 'Elvestad, Sven', '2018-05-03', 5, 'https://www.gutenberg.org/ebooks/57080', 'fi', 7), +(10063, 'Chantecler: Play in Four Acts', 'Rostand, Edmond', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10747', 'en', 5242), +(10064, 'Natural History in Anecdote\r\nIllustrating the nature, habits, manners and customs of animals, birds, fishes, reptiles, etc., etc., etc.', NULL, '2011-11-10', 57, 'https://www.gutenberg.org/ebooks/37959', 'en', 5243), +(10065, 'Fort Duquesne and Fort Pitt; Early Names of Pittsburgh Streets', 'Daughters of the American Revolution. Pittsburgh Chapter (Pittsburgh, Pa.)', '2012-06-18', 11, 'https://www.gutenberg.org/ebooks/40037', 'en', 5244), +(10066, 'The Annals of the Parish\r\nOr, the Chronicle of Dalmailing During the Ministry of the Rev. Micah Balwhidder', 'Galt, John', '1998-05-01', 15, 'https://www.gutenberg.org/ebooks/1310', 'en', 55), +(10067, 'Oeuvres illustrées de George Sand\nLes visions de la nuit dans les campagnes - La vallée noire - Une\nvisite aux catacombes', 'Sand, George', '2005-03-02', 23, 'https://www.gutenberg.org/ebooks/15235', 'fr', 2508), +(10068, 'Faust: Eine Tragödie', 'Goethe, Johann Wolfgang von', '2007-04-06', 480, 'https://www.gutenberg.org/ebooks/21000', 'de', 5240), +(10069, 'Narcissism Book of Quotes\r\nA Selection of Quotes from the Collective Wisdom of over 12,000 Individual Discussions', NULL, '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/4662', 'en', 5245), +(10070, 'The Staying Guest', 'Wells, Carolyn', '2014-04-30', 21, 'https://www.gutenberg.org/ebooks/45545', 'en', 3129), +(10071, 'The Wreck of the Grosvenor, Volume 1 of 3\r\nAn account of the mutiny of the crew and the loss of the ship when trying to make the Bermudas', 'Russell, William Clark', '2013-12-24', 22, 'https://www.gutenberg.org/ebooks/44497', 'en', 702), +(10072, 'Games Without Music for Children', 'Bates, Loïs', '2011-08-23', 12, 'https://www.gutenberg.org/ebooks/37165', 'en', 1560), +(10073, 'For the Cause', 'Weyman, Stanley John', '2012-02-17', 12, 'https://www.gutenberg.org/ebooks/38911', 'en', 409), +(10074, 'Frank Nelson in the Forecastle; Or, The Sportman\'s Club Among the Whalers', 'Castlemon, Harry', '2016-10-31', 10, 'https://www.gutenberg.org/ebooks/53420', 'en', 5246), +(10075, 'Trifles for the Christmas Holidays', 'Armstrong, H. S.', '2006-01-21', 15, 'https://www.gutenberg.org/ebooks/17562', 'en', 179), +(10076, 'Biography of a Slave, Being the Experiences of Rev. Charles Thompson, a Preacher of the United Brethren Church, While a Slave in the South.\r\nTogether with Startling Occurrences Incidental to Slave Life.', 'Thompson, Charles', '2006-02-01', 23, 'https://www.gutenberg.org/ebooks/9941', 'en', 5247), +(10077, 'Men of Affairs', 'Pertwee, Roland', '2007-12-07', 12, 'https://www.gutenberg.org/ebooks/23757', 'en', 61), +(10078, 'When the Holy Ghost is Come', 'Brengle, Samuel Logan', '2004-07-01', 35, 'https://www.gutenberg.org/ebooks/6135', 'en', 5248), +(10079, 'History of the Jews in Russia and Poland, Volume 3 [of 3]\r\nFrom the Accession of Nicholas II until the Present Day', 'Dubnow, Simon', '2014-10-27', 22, 'https://www.gutenberg.org/ebooks/47212', 'en', 473), +(10080, 'With the World\'s Great Travellers, Volume 3', NULL, '2011-03-19', 43, 'https://www.gutenberg.org/ebooks/35632', 'en', 885), +(10081, 'The Classification of Patents', 'United States. Patent Office', '2007-09-20', 11, 'https://www.gutenberg.org/ebooks/22685', 'en', 5249), +(10082, 'Gampe\'s Erzgebirge mit Einschluss der böhmischen Bäder Teplitz, Karlsbad, Franzensbad und Marienbad, des Voigtlandes und des Granulitgebietes an den unteren Mulden. Ein Reisehandbuch', 'Gampe, Theodor', '2016-03-06', 7, 'https://www.gutenberg.org/ebooks/51377', 'de', 5250), +(10083, 'Selections from Poe', 'Poe, Edgar Allan', '2005-09-01', 73, 'https://www.gutenberg.org/ebooks/8893', 'en', 112), +(10084, 'The Passionate Friends', 'Wells, H. G. (Herbert George)', '2009-10-26', 46, 'https://www.gutenberg.org/ebooks/30340', 'en', 847), +(10085, 'Ramsey Milholland', 'Tarkington, Booth', '2006-03-22', 24, 'https://www.gutenberg.org/ebooks/2595', 'en', 1672), +(10086, 'Old Caravan Days', 'Catherwood, Mary Hartwell', '2004-11-01', 8, 'https://www.gutenberg.org/ebooks/6909', 'en', 5251), +(10087, 'Nursery Lessons, in Words of One Syllable', 'Anonymous', '2017-04-25', 9, 'https://www.gutenberg.org/ebooks/54605', 'en', 1817), +(10088, 'Fifteen Thousand Useful Phrases', 'Kleiser, Grenville', '2008-08-01', 30, 'https://www.gutenberg.org/ebooks/26225', 'en', 5252), +(10089, 'The Fourth-Dimensional Reaches of the Exposition: San Francisco, 1915', 'Williams, Cora Lenore', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12010', 'en', 3035), +(10090, 'The Myth in Marriage', 'Hubbard, Alice', '2013-05-21', 36, 'https://www.gutenberg.org/ebooks/42760', 'en', 1451), +(10091, 'Sotileza', 'Pereda, José María de', '2015-07-07', 58, 'https://www.gutenberg.org/ebooks/49388', 'es', 4251), +(10092, 'A Year in the Fields', 'Burroughs, John', '2010-02-16', 43, 'https://www.gutenberg.org/ebooks/31292', 'en', 1216); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(10093, 'The Book of the Thousand Nights and a Night — Volume 13', NULL, '2002-09-01', 70, 'https://www.gutenberg.org/ebooks/3447', 'en', 3347), +(10094, 'The Story of a Bold Tin Soldier', 'Hope, Laura Lee', '2004-08-01', 17, 'https://www.gutenberg.org/ebooks/6307', 'en', 5253), +(10095, 'Tähdistälukija', 'Scott, Walter', '2014-10-02', 10, 'https://www.gutenberg.org/ebooks/47020', 'fi', 5254), +(10096, 'Laugh and Play\nA Collection of Original stories', NULL, '2006-02-11', 24, 'https://www.gutenberg.org/ebooks/17750', 'en', 388), +(10097, 'Lady Huntworth\'s Experiment: An original comedy in three acts', 'Carton, R. C. (Richard Claude)', '2015-09-30', 5, 'https://www.gutenberg.org/ebooks/50097', 'en', 5255), +(10098, 'Bhagavad-Gita: Herrens Sång', NULL, '2015-05-02', 66, 'https://www.gutenberg.org/ebooks/48854', 'sv', 794), +(10099, 'Red-Tape and Pigeon-Hole Generals\nAs Seen From the Ranks During a Campaign in the Army of the Potomac', 'Frick, Jacob G.', '2007-11-20', 28, 'https://www.gutenberg.org/ebooks/23565', 'en', 444), +(10100, 'War Medals and Their History', 'Steward, William Augustus', '2015-09-16', 31, 'https://www.gutenberg.org/ebooks/49986', 'en', 5256), +(10101, 'Asmodeus; or, The Devil on Two Sticks', 'Le Sage, Alain René', '2016-02-08', 55, 'https://www.gutenberg.org/ebooks/51145', 'en', 941), +(10102, 'Adrien Leroy', 'Garvice, Charles', '2005-09-11', 16, 'https://www.gutenberg.org/ebooks/16682', 'en', 61), +(10103, 'Presidential Candidates:\r\nContaining Sketches, Biographical, Personal and Political, of Prominent Candidates for the Presidency in 1860', 'Bartlett, D. W. (David W.)', '2011-02-25', 4, 'https://www.gutenberg.org/ebooks/35400', 'en', 414), +(10104, 'Micah Clarke - Tome III\nLa Bataille de Sedgemoor', 'Doyle, Arthur Conan', '2006-06-29', 28, 'https://www.gutenberg.org/ebooks/18718', 'fr', 1982), +(10105, 'The Ship of Coral', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-03-26', 13, 'https://www.gutenberg.org/ebooks/54437', 'en', 2671), +(10106, 'Architectural Antiquities of Normandy', 'Turner, Dawson', '2009-10-04', 58, 'https://www.gutenberg.org/ebooks/30172', 'en', 5257), +(10107, 'Smoking and Drinking', 'Parton, James', '2013-08-15', 13, 'https://www.gutenberg.org/ebooks/43480', 'en', 5258), +(10108, 'Cursed', 'England, George Allan', '2015-01-25', 16, 'https://www.gutenberg.org/ebooks/48068', 'en', 533), +(10109, 'The Rambles of a Rat', 'A. L. O. E.', '2009-08-30', 31, 'https://www.gutenberg.org/ebooks/29863', 'en', 5259), +(10110, 'Encyclopaedia Britannica, 11th Edition, \"Mars\" to \"Matteawan\"\r\nVolume 17, Slice 7', 'Various', '2013-04-16', 36, 'https://www.gutenberg.org/ebooks/42552', 'en', 1081), +(10111, 'His Little Royal Highness', 'Ogden, Ruth', '2016-05-03', 9, 'https://www.gutenberg.org/ebooks/51979', 'en', 5260), +(10112, 'Die Versuchung des Pescara', 'Meyer, Conrad Ferdinand', '2003-01-01', 25, 'https://www.gutenberg.org/ebooks/3675', 'de', 5261), +(10113, 'O Regicida', 'Castelo Branco, Camilo', '2008-07-09', 12, 'https://www.gutenberg.org/ebooks/26017', 'pt', 5262), +(10114, 'The Faithful Shepherdess\nThe Works of Francis Beaumont and John Fletcher (Volume 2 of 10).', 'Beaumont, Francis', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/12222', 'en', 126), +(10115, 'How the Nations Waged War\r\nA companion volume to \"How the War Began\"', 'Kennedy, J. M. (John McFarland)', '2018-01-12', 6, 'https://www.gutenberg.org/ebooks/56360', 'en', 335), +(10116, 'An Epitome of the Homeopathic Healing Art\r\nContaining the New Discoveries and Improvements to the Present Time', 'Hill, B. L. (Benjamin L.)', '2008-06-04', 60, 'https://www.gutenberg.org/ebooks/25692', 'en', 5263), +(10117, 'A Treatise on Probability', 'Keynes, John Maynard', '2010-05-31', 293, 'https://www.gutenberg.org/ebooks/32625', 'en', 2410), +(10118, 'History of Cleopatra, Queen of Egypt', 'Abbott, Jacob', '2012-07-11', 49, 'https://www.gutenberg.org/ebooks/40205', 'en', 4631), +(10119, 'The Tragedy of Hamlet, Prince of Denmark', 'Shakespeare, William', '1997-12-01', 276, 'https://www.gutenberg.org/ebooks/1122', 'en', 5264), +(10120, 'The Battle of Spring Hill, Tennessee\nread after the stated meeting held February 2d, 1907', 'Shellenberger, John K.', '2008-03-03', 37, 'https://www.gutenberg.org/ebooks/24740', 'en', 2723), +(10121, 'The Profiteers', 'Oppenheim, E. Phillips (Edward Phillips)', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10575', 'en', 128), +(10122, 'The Adventures of Harry Richmond — Volume 7', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4450', 'en', 2588), +(10123, 'Comparative Breeding Behavior of Ammospiza caudacuta and A. maritima', 'Woolfenden, Glen Everett', '2011-05-30', 7, 'https://www.gutenberg.org/ebooks/36285', 'en', 5265), +(10124, 'The Works of Aphra Behn, Volume VI', 'Behn, Aphra', '2014-05-27', 23, 'https://www.gutenberg.org/ebooks/45777', 'en', 466), +(10125, 'The Belles of Canterbury\nA Chaucer Tale Out of School', 'Stewart, Anna Bird', '2005-02-09', 10, 'https://www.gutenberg.org/ebooks/15007', 'en', 427), +(10126, 'The Hawthorns\nA Story about Children', 'Walton, Amy', '2007-04-27', 9, 'https://www.gutenberg.org/ebooks/21232', 'en', 3133), +(10127, 'Vaders en Zonen', 'Turgenev, Ivan Sergeevich', '2016-11-26', 35, 'https://www.gutenberg.org/ebooks/53612', 'nl', 378), +(10128, 'The Burgomaster\'s Wife — Volume 05', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5582', 'en', 1167), +(10129, 'Annie o\' the Banks o\' Dee', 'Stables, Gordon', '2011-09-10', 10, 'https://www.gutenberg.org/ebooks/37357', 'en', 195), +(10130, 'The Hour Glass', 'Yeats, W. B. (William Butler)', '2005-02-01', 23, 'https://www.gutenberg.org/ebooks/7448', 'en', 5104), +(10131, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume 1, Index, 1880', 'Various', '2009-05-07', 14, 'https://www.gutenberg.org/ebooks/28710', 'en', 1829), +(10132, 'The Silver Box: A Comedy in Three Acts', 'Galsworthy, John', '2004-09-26', 65, 'https://www.gutenberg.org/ebooks/2906', 'en', 5266), +(10133, 'Miss Mephistopheles: A Novel\r\n(Sequel to Madame Midas.)', 'Hume, Fergus', '2017-08-17', 12, 'https://www.gutenberg.org/ebooks/55378', 'en', 574), +(10134, 'Red-Robin', 'Abbott, Jane', '2006-08-16', 34, 'https://www.gutenberg.org/ebooks/19057', 'en', 1655), +(10135, 'Selections from Erasmus: Principally from his Epistles', 'Erasmus, Desiderius', '2005-06-01', 66, 'https://www.gutenberg.org/ebooks/8400', 'en', 5267), +(10136, 'My Neighbors\nStories of the Welsh People', 'Evans, Caradoc', '2005-10-08', 19, 'https://www.gutenberg.org/ebooks/16823', 'en', 5268), +(10137, 'Ralph Sinclair\'s Atonement', 'Sargent, Antony', '2015-08-17', 5, 'https://www.gutenberg.org/ebooks/49727', 'en', 61), +(10138, 'Buchanan\'s Journal of Man, November 1887\nVolume 1, Number 10', NULL, '2009-01-09', 28, 'https://www.gutenberg.org/ebooks/27758', 'en', 3905), +(10139, 'The Danger Mark', 'Chambers, Robert W. (Robert William)', '2006-04-17', 35, 'https://www.gutenberg.org/ebooks/18185', 'en', 2999), +(10140, 'Betty Lee, Junior', 'Grove, Harriet Pyne', '2014-01-30', 12, 'https://www.gutenberg.org/ebooks/44804', 'en', 733), +(10141, 'Abraham Lincoln\'s Cardinal Traits;\nA Study in Ethics, with an Epilogue Addressed to Theologians', 'Beardslee, Clark S. (Clark Smith)', '2012-01-15', 16, 'https://www.gutenberg.org/ebooks/38582', 'en', 5269), +(10142, 'Curiosities of Civilization', 'Wynter, Andrew', '2012-08-14', 18, 'https://www.gutenberg.org/ebooks/40498', 'en', 5270), +(10143, 'Suomalaiset Jäämeren rannalla: Matkamuistelmia', 'Ervasti, A. V. (August Vilhelm)', '2016-09-02', 9, 'https://www.gutenberg.org/ebooks/52961', 'fi', 2408), +(10144, 'Erdély hegyei közt', 'Tompa, László', '2012-04-14', 26, 'https://www.gutenberg.org/ebooks/39450', 'hu', 1645), +(10145, 'Through the Yukon Gold Diggings: A Narrative of Personal Travel', 'Spurr, Josiah Edward', '2013-10-25', 22, 'https://www.gutenberg.org/ebooks/44038', 'en', 5271), +(10146, 'For the Faith: A Story of the Young Pioneers of Reformation in Oxford', 'Everett-Green, Evelyn', '2005-01-21', 23, 'https://www.gutenberg.org/ebooks/14748', 'en', 195), +(10147, 'True Politeness: A Hand-book of Etiquette for Ladies', 'Anonymous', '2010-10-01', 30, 'https://www.gutenberg.org/ebooks/33956', 'en', 5272), +(10148, 'Les évangiles des quenouilles', 'Jean, d\'Arras, active 14th century', '2018-12-13', 19, 'https://www.gutenberg.org/ebooks/58467', 'fr', 5273), +(10149, 'Ideas of Good and Evil', 'Yeats, W. B. (William Butler)', '2010-06-18', 145, 'https://www.gutenberg.org/ebooks/32884', 'en', 20), +(10150, 'The Great Controversy Between Christ and Satan', 'White, Ellen Gould Harmon', '2008-06-19', 146, 'https://www.gutenberg.org/ebooks/25833', 'en', 5274), +(10151, 'Voetbal-Sport: over haar voor- en nadeelen, eenige harer strijdvragen en haar rationeele beoefening', 'Samson, Jac.', '2011-06-13', 8, 'https://www.gutenberg.org/ebooks/36418', 'nl', 5275), +(10152, 'Great Singers on the Art of Singing\nEducational Conferences with Foremost Artists', 'Cooke, James Francis', '2010-08-06', 31, 'https://www.gutenberg.org/ebooks/33358', 'en', 5276), +(10153, 'The History of Don Quixote, Volume 1, Part 09', 'Cervantes Saavedra, Miguel de', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/5911', 'en', 89), +(10154, 'Antwerp to Gallipoli\nA Year of the War on Many Fronts—and Behind Them', 'Ruhl, Arthur', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11008', 'en', 449), +(10155, 'Epitome of the Pharmacopeia of the United States and the National Formulary\nWith Comments', 'Sollmann, Torald Hermann', '2013-01-04', 89, 'https://www.gutenberg.org/ebooks/41778', 'en', 5277), +(10156, 'The Magic Nuts', 'Molesworth, Mrs.', '2012-05-10', 10, 'https://www.gutenberg.org/ebooks/39662', 'en', 5278), +(10157, 'Tales from the Gesta Romanorum', NULL, '2019-01-08', 22, 'https://www.gutenberg.org/ebooks/58655', 'en', 5279), +(10158, 'U.S. Copyright Renewals, 1966 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11834', 'en', 4170), +(10159, 'Cactus Forest Drive, Saguaro National Monument', 'Anonymous', '2019-06-21', 33, 'https://www.gutenberg.org/ebooks/59787', 'en', 5280), +(10160, 'The Son of Monte-Cristo, Volume I', 'Lermina, Jules', '2007-07-07', 21, 'https://www.gutenberg.org/ebooks/22018', 'en', 2079), +(10161, 'The Trial of an Ox, for Killing a Man;\r\nWith the Examination of the Witnesses, Before Judge Lion, at Quadruped Court, near Beast Park.', NULL, '2017-11-16', 7, 'https://www.gutenberg.org/ebooks/55976', 'en', 5281), +(10162, 'Myths and Dreams', 'Clodd, Edward', '2013-09-26', 33, 'https://www.gutenberg.org/ebooks/43813', 'en', 75), +(10163, 'Laura Middleton; Her Brother and her Lover', 'Anonymous', '2009-04-06', 1612, 'https://www.gutenberg.org/ebooks/28522', 'en', 4185), +(10164, 'Jaunty Jock, and Other Stories', 'Munro, Neil', '2015-11-12', 18, 'https://www.gutenberg.org/ebooks/50438', 'en', 5282), +(10165, 'The Disappearance of Lady Frances Carfax', 'Doyle, Arthur Conan', '2005-08-01', 5, 'https://www.gutenberg.org/ebooks/8632', 'en', 128), +(10166, 'Der Wehrwolf: Eine Bauernchronik', 'Löns, Hermann', '2007-10-02', 51, 'https://www.gutenberg.org/ebooks/22824', 'de', 5283), +(10167, 'German Atrocities: Their Nature and Philosophy', 'Hillis, Newell Dwight', '2015-07-24', 31, 'https://www.gutenberg.org/ebooks/49515', 'en', 5284), +(10168, 'Red Saunders\' Pets and Other Critters', 'Phillips, Henry Wallace', '2006-09-13', 18, 'https://www.gutenberg.org/ebooks/19265', 'en', 637), +(10169, 'The Irish Ecclesiastical Record, Volume 1, January 1865', NULL, '2011-04-17', 10, 'https://www.gutenberg.org/ebooks/35893', 'en', 96), +(10170, 'The Smalcald Articles', 'Luther, Martin', '1995-06-01', 33, 'https://www.gutenberg.org/ebooks/273', 'en', 5285), +(10171, 'The Light that Lies', 'McCutcheon, George Barr', '2017-02-03', 9, 'https://www.gutenberg.org/ebooks/54098', 'en', 5286), +(10172, 'Bygone Church Life in Scotland', NULL, '2011-01-13', 16, 'https://www.gutenberg.org/ebooks/34941', 'en', 5287), +(10173, 'Bunyan Characters (3rd Series)', 'Whyte, Alexander', '2000-09-01', 14, 'https://www.gutenberg.org/ebooks/2308', 'en', 5288), +(10174, 'A Week of Instruction and Amusement,\nor, Mrs. Harley\'s birthday present to her daughter :\ninterspersed with short stories, outlines of sacred and\nprophane history, geography &c.', 'Unknown', '2008-05-31', 13, 'https://www.gutenberg.org/ebooks/25659', 'en', 294), +(10175, 'Insect Stories', 'Kellogg, Vernon L. (Vernon Lyman)', '2012-03-19', 14, 'https://www.gutenberg.org/ebooks/39206', 'en', 236), +(10176, 'Punch, or the London Charivari, Volume 1, August 7, 1841', 'Various', '2005-02-07', 8, 'https://www.gutenberg.org/ebooks/14922', 'en', 134), +(10177, 'Se oli sallittu', 'Virtala, Esko', '2018-06-05', 3, 'https://www.gutenberg.org/ebooks/57279', 'fi', 41), +(10178, 'Battles & Bivouacs: A French soldier\'s note-book', 'Roujon, Jacques', '2018-11-04', 10, 'https://www.gutenberg.org/ebooks/58231', 'en', 5289), +(10179, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 07', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5549', 'en', 5290), +(10180, 'History of the Division of Medical Sciences\nUnited States National Museum Bulletin 240, Contributions from the Museum of History and Technology, paper 43, 1964', 'Hamarneh, Sami Khalaf', '2009-01-29', 18, 'https://www.gutenberg.org/ebooks/27932', 'en', 5291), +(10181, 'Mastr\'Impicca', 'Imbriani, Vittorio', '2010-11-30', 4, 'https://www.gutenberg.org/ebooks/34519', 'it', 61), +(10182, 'On the Future of our Educational Institutions', 'Nietzsche, Friedrich Wilhelm', '2009-02-20', 135, 'https://www.gutenberg.org/ebooks/28146', 'en', 5292), +(10183, 'The Mark of the Knife', 'Ernst, Clayton H. (Clayton Holt)', '2010-01-16', 10, 'https://www.gutenberg.org/ebooks/30985', 'en', 2154), +(10184, 'La Pantoufle de Sapho', 'Sacher-Masoch, Leopold, Ritter von', '2005-09-04', 58, 'https://www.gutenberg.org/ebooks/16649', 'fr', 61), +(10185, 'Strangers and Wayfarers', 'Jewett, Sarah Orne', '2010-04-01', 38, 'https://www.gutenberg.org/ebooks/31857', 'en', 770), +(10186, 'Les mystères du peuple, Tome III\r\nHistoire d\'une famille de prolétaires à travers les âges', 'Sue, Eugène', '2009-06-10', 10, 'https://www.gutenberg.org/ebooks/29094', 'fr', 2340), +(10187, 'The Autobiography of a Clown', 'Marcosson, Isaac Frederick', '2014-06-29', 16, 'https://www.gutenberg.org/ebooks/46139', 'en', 5293), +(10188, 'Poems', 'Seeger, Alan', '1996-08-01', 42, 'https://www.gutenberg.org/ebooks/617', 'en', 2100), +(10189, 'The Comrade in White', 'Leathem, William Harvey', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9384', 'en', 579), +(10190, 'The Ottoman Turks and the Routes of Oriental Trade\nfrom The English Historical Review, October 1915', 'Lybyer, Albert Howe', '2016-01-06', 17, 'https://www.gutenberg.org/ebooks/50860', 'en', 4016), +(10191, 'The World English Bible (WEB): Joel', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8256', 'en', 5294), +(10192, 'The Duke\'s Sweetheart: A Romance', 'Dowling, Richard', '2013-04-26', 14, 'https://www.gutenberg.org/ebooks/42599', 'en', 109), +(10193, 'Luther, vol. 5 of 6', 'Grisar, Hartmann', '2015-06-09', 10, 'https://www.gutenberg.org/ebooks/49171', 'en', 1073), +(10194, 'Frank and Andy Afloat\r\nOr, The Cave on the Island', 'Barnum, Vance', '2006-10-21', 9, 'https://www.gutenberg.org/ebooks/19601', 'en', 2794), +(10195, 'The Kentucky Warbler', 'Allen, James Lane', '2014-09-19', 15, 'https://www.gutenberg.org/ebooks/46905', 'en', 1996), +(10196, 'Tra cielo e terra: Romanzo', 'Barrili, Anton Giulio', '2009-03-20', 24, 'https://www.gutenberg.org/ebooks/28374', 'it', 61), +(10197, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 491, May 28, 1831', 'Various', '2004-11-03', 7, 'https://www.gutenberg.org/ebooks/13935', 'en', 133), +(10198, 'Earthwork out of Tuscany: Being Impressions and Translations of Maurice Hewlett', 'Hewlett, Maurice', '2005-09-01', 17, 'https://www.gutenberg.org/ebooks/8858', 'en', 5295), +(10199, 'Lukemisia lapsille 5', 'Topelius, Zacharias', '2013-09-09', 15, 'https://www.gutenberg.org/ebooks/43679', 'fi', 1007), +(10200, 'Strange Stories of the Great Valley: The Adventures of a Boy Pioneer', 'Grosvenor, Abbie Johnston', '2015-02-17', 6, 'https://www.gutenberg.org/ebooks/48291', 'en', 5296), +(10201, 'Familiar Studies of Men and Books', 'Stevenson, Robert Louis', '1996-02-01', 113, 'https://www.gutenberg.org/ebooks/425', 'en', 5297), +(10202, 'About Ireland', 'Linton, E. Lynn (Elizabeth Lynn)', '2004-08-03', 32, 'https://www.gutenberg.org/ebooks/13109', 'en', 5298), +(10203, 'Történet\r\nA Lógody-utcáról, a tavaszról, a halálról és a messzeségről', 'Balázs, Béla', '2006-10-02', 31, 'https://www.gutenberg.org/ebooks/19433', 'hu', 5299), +(10204, 'Schatzkästlein des rheinischen Hausfreundes\r\nEine Auswahl aus verschiedenen Quellen', NULL, '2005-04-01', 47, 'https://www.gutenberg.org/ebooks/7810', 'de', 841), +(10205, 'The Bible, King James version, Book 64: 3 John', 'Anonymous', '2005-04-01', 32, 'https://www.gutenberg.org/ebooks/8064', 'en', 2072), +(10206, 'The Boy With the U. S. Life-Savers', 'Rolt-Wheeler, Francis', '2010-02-12', 23, 'https://www.gutenberg.org/ebooks/31259', 'en', 1022), +(10207, 'Old Court Life in Spain, vol. 1/2', 'Elliot, Frances Minto Dickinson', '2015-07-01', 16, 'https://www.gutenberg.org/ebooks/49343', 'en', 11), +(10208, 'Rahaa: Romaani', 'Benedictsson, Victoria', '2012-03-04', 9, 'https://www.gutenberg.org/ebooks/39034', 'fi', 2168), +(10209, 'The Making of an Apostle', 'Campbell, R. J. (Reginald John)', '2011-07-24', 9, 'https://www.gutenberg.org/ebooks/36840', 'en', 5300), +(10210, 'Away to school: \'Ólta\'góó', 'King, Cecil S.', '2017-12-17', 24, 'https://www.gutenberg.org/ebooks/56199', 'nav', 5301), +(10211, 'The King of Pirates\r\nBeing an Account of the Famous Enterprises of Captain Avery, the Mock King of Madagascar', 'Defoe, Daniel', '2011-11-12', 65, 'https://www.gutenberg.org/ebooks/37992', 'en', 323), +(10212, 'History of the United States, Volume 1', 'Andrews, Elisha Benjamin', '2007-03-28', 22, 'https://www.gutenberg.org/ebooks/20925', 'en', 207), +(10213, 'A Survivor\'s Recollections of the Whitman Massacre', 'Sager, Matilda', '2013-01-25', 32, 'https://www.gutenberg.org/ebooks/41912', 'en', 5302), +(10214, 'Wit and Wisdom of Lord Tredegar', 'Morgan, Godfrey Charles', '2012-05-26', 36, 'https://www.gutenberg.org/ebooks/39808', 'en', 5303), +(10215, 'Beautiful Wales', 'Thomas, Edward', '2016-07-09', 18, 'https://www.gutenberg.org/ebooks/52539', 'en', 1402), +(10216, 'A history of postal agitation from fifty years ago till the present day', 'Swift, H. G.', '2018-09-09', 6, 'https://www.gutenberg.org/ebooks/57877', 'en', 1179), +(10217, 'Bertha\'s Visit to Her Uncle in England; vol. 2 [of 3]', 'Marcet, Mrs. (Jane Haldimand)', '2018-10-01', 7, 'https://www.gutenberg.org/ebooks/58003', 'en', 258), +(10218, 'Ambrotox and Limping Dick', 'Fleming, Oliver', '2006-12-16', 16, 'https://www.gutenberg.org/ebooks/20119', 'en', 167), +(10219, 'Scientific American Supplement, No. 601, July 9, 1887', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11498', 'en', 210), +(10220, 'La mort de César: Tragédie', 'Voltaire', '2005-05-09', 20, 'https://www.gutenberg.org/ebooks/15804', 'fr', 5304), +(10221, 'L\'Illustration, No. 0024, 12 Août 1843', 'Various', '2011-12-16', 5, 'https://www.gutenberg.org/ebooks/38320', 'fr', 150), +(10222, 'Mr. Punch with Rod and Gun: The Humours of Fishing and Shooting', NULL, '2014-05-24', 17, 'https://www.gutenberg.org/ebooks/45748', 'en', 5305), +(10223, 'Tactics and Duties for Trench Fighting', 'Solbert, Oscar N.', '2019-04-20', 44, 'https://www.gutenberg.org/ebooks/59317', 'en', 950), +(10224, 'Krakatau en de Straat Soenda\r\nDe Aarde en haar Volken, 1886', 'Cotteau, Edmond', '2005-02-14', 16, 'https://www.gutenberg.org/ebooks/15038', 'nl', 5306), +(10225, 'The Chouans', 'Balzac, Honoré de', '2004-06-27', 74, 'https://www.gutenberg.org/ebooks/1921', 'en', 5307), +(10226, 'The Right to Privacy', 'Brandeis, Louis Dembitz', '2011-09-09', 65, 'https://www.gutenberg.org/ebooks/37368', 'en', 5308), +(10227, 'Boy Scouts in the Coal Caverns; Or, The Light in Tunnel Six', 'Fletcher, Archibald Lee', '2004-08-01', 24, 'https://www.gutenberg.org/ebooks/6338', 'en', 5309), +(10228, 'Industrial Revolution', 'Anderson, Poul', '2010-01-15', 182, 'https://www.gutenberg.org/ebooks/30971', 'en', 26), +(10229, 'The Mirror of Taste, and Dramatic Censor, Vol. I, No. 1, January 1810', NULL, '2007-09-02', 12, 'https://www.gutenberg.org/ebooks/22488', 'en', 5310), +(10230, 'The Einstein See-Saw', 'Breuer, Miles John', '2009-06-07', 66, 'https://www.gutenberg.org/ebooks/29060', 'en', 26), +(10231, 'Edouard', 'Duras, Claire de Durfort, duchesse de', '2008-10-07', 14, 'https://www.gutenberg.org/ebooks/26814', 'fr', 298), +(10232, 'Jewellery', 'Smith, H. Clifford (Harold Clifford)', '2014-12-30', 34, 'https://www.gutenberg.org/ebooks/47823', 'en', 5311), +(10233, 'Histoire de Paris depuis le temps des Gaulois jusqu\'à nos jours - II', 'Lavallée, Théophile', '2006-07-01', 28, 'https://www.gutenberg.org/ebooks/18727', 'fr', 1993), +(10234, 'Valittuja kertomuksia', 'Kipling, Rudyard', '2017-03-21', 10, 'https://www.gutenberg.org/ebooks/54408', 'fi', 1585), +(10235, 'Ten Tudor Statesmen', 'Innes, Arthur D. (Arthur Donald)', '2015-01-24', 21, 'https://www.gutenberg.org/ebooks/48057', 'en', 5312), +(10236, 'The Mentor: Bolivia, vol. 5, Num. 18, Serial 142, November 1, 1917', 'Newman, E. M. (Edward Manuel)', '2016-01-11', 3, 'https://www.gutenberg.org/ebooks/50894', 'en', 1128), +(10237, 'Tiverton Tales', 'Brown, Alice', '2005-11-01', 25, 'https://www.gutenberg.org/ebooks/9370', 'en', 13), +(10238, 'The Queen of the Pirate Isle', 'Harte, Bret', '2006-03-27', 68, 'https://www.gutenberg.org/ebooks/2798', 'en', 5313), +(10239, 'A Gray Eye or So. In Three Volumes—Volume III', 'Moore, Frank Frankfort', '2016-05-02', 10, 'https://www.gutenberg.org/ebooks/51946', 'en', 500), +(10240, 'The Girl\'s Own Paper, Vol. XX, No. 980, October 8, 1898', 'Various', '2015-06-09', 13, 'https://www.gutenberg.org/ebooks/49185', 'en', 563), +(10241, 'Descripcion é historia del castillo de la aljafería\nsito extramuros de la ciudad de Zaragoza', 'Nougués Secall, Mariano', '2008-07-11', 14, 'https://www.gutenberg.org/ebooks/26028', 'es', 5314), +(10242, 'The Squirrel-Cage', 'Fisher, Dorothy Canfield', '2007-12-08', 36, 'https://www.gutenberg.org/ebooks/23768', 'en', 728), +(10243, 'Life of Charles Darwin', 'Bettany, G. T. (George Thomas)', '2009-03-21', 10, 'https://www.gutenberg.org/ebooks/28380', 'en', 5315), +(10244, 'Quit Your Worrying!', 'James, George Wharton', '2004-07-04', 9, 'https://www.gutenberg.org/ebooks/12813', 'en', 5316), +(10245, 'Oodit, Karmen-Seekulaare ja Epoodit', 'Horace', '2016-03-03', 8, 'https://www.gutenberg.org/ebooks/51348', 'fi', 5317), +(10246, 'War Taxation: Some Comments and Letters', 'Kahn, Otto H.', '2009-06-26', 10, 'https://www.gutenberg.org/ebooks/29252', 'en', 5318), +(10247, 'Daughters of the Dominion: A Story of the Canadian Frontier', 'Marchant, Bessie', '2015-02-15', 22, 'https://www.gutenberg.org/ebooks/48265', 'en', 4112), +(10248, 'Robinson Crusoe — in Words of One Syllable', 'Aikin, Lucy', '2004-11-01', 66, 'https://www.gutenberg.org/ebooks/6936', 'en', 323), +(10249, 'Police!!!', 'Chambers, Robert W. (Robert William)', '2006-06-06', 31, 'https://www.gutenberg.org/ebooks/18515', 'en', 5319), +(10250, 'Our Old Home: A Series of English Sketches', 'Hawthorne, Nathaniel', '2005-05-01', 36, 'https://www.gutenberg.org/ebooks/8090', 'en', 5320), +(10251, 'Legends of Vancouver', 'Johnson, E. Pauline', '2004-06-24', 81, 'https://www.gutenberg.org/ebooks/3478', 'en', 5321), +(10252, '\"Soitto on suruista tehty\"\r\nHistoriallisia runoelmia: I. Pilatus. II. Piispa Tuomas.', 'Mäkinen, Antti', '2007-06-11', 20, 'https://www.gutenberg.org/ebooks/21803', 'fi', 8), +(10253, 'Il roccolo di Sant\'Alipio', 'Caccianiga, Antonio', '2019-07-14', 28, 'https://www.gutenberg.org/ebooks/59919', 'it', 4276), +(10254, 'The Brightener', 'Williamson, C. N. (Charles Norris)', '2010-05-19', 23, 'https://www.gutenberg.org/ebooks/32428', 'en', 61), +(10255, 'The Prose Marmion\nA Tale of the Scottish Border', 'Scott, Walter', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/10778', 'en', 5322), +(10256, 'Between the Dark and the Daylight', 'Marsh, Richard', '2011-11-09', 71, 'https://www.gutenberg.org/ebooks/37966', 'en', 61), +(10257, 'Mighty Mikko: A Book of Finnish Fairy Tales and Folk Tales', 'Fillmore, Parker', '2011-11-23', 33, 'https://www.gutenberg.org/ebooks/38112', 'en', 5323), +(10258, 'The Autobiography of a Cornish Smuggler\r\n(Captain Harry Carter, of Prussia Cove) 1749-1809', 'Carter, Harry', '2012-06-16', 22, 'https://www.gutenberg.org/ebooks/40008', 'en', 5324), +(10259, 'Aquarium', 'Acton, Harold', '2019-03-25', 26, 'https://www.gutenberg.org/ebooks/59125', 'en', 8), +(10260, 'Νόμοι και Επινομίς, Τόμος Α', 'Plato', '2011-05-12', 16, 'https://www.gutenberg.org/ebooks/36088', 'el', 5325), +(10261, 'Battles of Destiny', 'Shepperson, Isabel', '2018-04-10', 7, 'https://www.gutenberg.org/ebooks/56951', 'en', 5326), +(10262, 'Racconti', 'Dall\'Ongaro, Francesco', '2018-09-10', 17, 'https://www.gutenberg.org/ebooks/57883', 'it', 860), +(10263, 'The Under-Secretary', 'Le Queux, William', '2012-09-22', 15, 'https://www.gutenberg.org/ebooks/40834', 'en', 1079), +(10264, 'Handbook of the Minneapolis Institute of Arts\r\nWith 143 Illustrations', 'Wehle, Harry B. (Harry Brandeis)', '2011-02-13', 8, 'https://www.gutenberg.org/ebooks/35269', 'en', 5327), +(10265, 'Nathan the Wise; a dramatic poem in five acts', 'Lessing, Gotthold Ephraim', '2003-03-01', 112, 'https://www.gutenberg.org/ebooks/3820', 'en', 493), +(10266, 'Una notte bizzarra', 'Barrili, Anton Giulio', '2009-08-08', 41, 'https://www.gutenberg.org/ebooks/29636', 'it', 1544), +(10267, 'De Nederlandse kerken en de joden, 1940-1945\r\nDe protesten bij Seyss-Inquart, hulp aan joodse onderduikers, de motieven voor hulpverlening', 'Snoek, Johan M.', '2005-11-20', 19, 'https://www.gutenberg.org/ebooks/17139', 'nl', 5328), +(10268, 'Birds Illustrated by Color Photography, Vol. 3, No. 6, June 1898', 'Various', '2014-12-12', 16, 'https://www.gutenberg.org/ebooks/47649', 'en', 490), +(10269, 'Two Years in the Forbidden City', 'Der Ling, Princess', '1997-04-01', 201, 'https://www.gutenberg.org/ebooks/889', 'en', 5329), +(10270, 'Album für Freunde des Bergbaues,\r\nenthaltend eine Folge von vierzehn bildlichen Darstellungen aus dem Berufsleben des Berg- und Hüttenmannes.', 'Heuchler, Eduard', '2015-03-29', 14, 'https://www.gutenberg.org/ebooks/48601', 'de', 5330), +(10271, 'Vecchie cadenze e nuove', 'De Marchi, Emilio', '2006-03-03', 10, 'https://www.gutenberg.org/ebooks/17905', 'it', 8), +(10272, 'Catherine: a Story', 'Thackeray, William Makepeace', '2005-12-01', 9, 'https://www.gutenberg.org/ebooks/9526', 'en', 984), +(10273, 'Ambrosius', 'Molbech, Chr. K. F. (Christian Knud Frederik)', '2004-10-06', 6, 'https://www.gutenberg.org/ebooks/13599', 'da', 5331), +(10274, 'The Crucifixion of Philip Strong', 'Sheldon, Charles M.', '2006-04-14', 33, 'https://www.gutenberg.org/ebooks/18171', 'en', 942), +(10275, 'Monólogo do Vaqueiro', 'Vicente, Gil', '2008-01-02', 35, 'https://www.gutenberg.org/ebooks/24129', 'pt', 3231), +(10276, 'Merry\'s Book of Puzzles', 'Stearns, J. N. (John Newton)', '2016-12-31', 15, 'https://www.gutenberg.org/ebooks/53847', 'en', 5332), +(10277, 'L\'Illustration, No. 0029, 16 Septembre 1843', 'Various', '2012-01-15', 4, 'https://www.gutenberg.org/ebooks/38576', 'fr', 150), +(10278, 'Spaceman on a Spree', 'Reynolds, Mack', '2016-09-06', 39, 'https://www.gutenberg.org/ebooks/52995', 'en', 179), +(10279, 'The Voyage of the \"Deutschland\"', 'König, Paul', '2014-06-09', 16, 'https://www.gutenberg.org/ebooks/45922', 'en', 5333), +(10280, 'La vita intima e la vita nomade in Oriente', 'Belgioioso, Cristina', '2018-02-06', 19, 'https://www.gutenberg.org/ebooks/56509', 'it', 2204), +(10281, 'Voyages et Aventures Surprenantes de Robinson Crusoé', 'Defoe, Daniel', '2008-03-25', 28, 'https://www.gutenberg.org/ebooks/24915', 'fr', 5334), +(10282, 'The American Bee Journal, Volume XXXIII, No. 2, January 11, 1894', 'Various', '2018-12-19', 1, 'https://www.gutenberg.org/ebooks/58493', 'en', 2825), +(10283, 'Edgar Allan Poe\nDie Dichtung, Band XLII', 'Ewers, Hanns Heinz', '2007-02-16', 24, 'https://www.gutenberg.org/ebooks/20589', 'de', 5335), +(10284, 'Guelfos e Gibelinos: Tentativa critica sobre a actual polemica litteraria', 'Vidal, Eduardo Augusto', '2010-06-18', 7, 'https://www.gutenberg.org/ebooks/32870', 'pt', 5336), +(10285, 'Index of the Project Gutenberg Works of William J. Locke', 'Locke, William John', '2019-05-18', 21, 'https://www.gutenberg.org/ebooks/59541', 'en', 198), +(10286, 'An Essay on the Principle of Population', 'Malthus, T. R. (Thomas Robert)', '2003-07-01', 252, 'https://www.gutenberg.org/ebooks/4239', 'en', 5337), +(10287, 'Dunamelléki eredeti népmesék (2. kötet)', 'Merényi, László', '2012-02-01', 7, 'https://www.gutenberg.org/ebooks/38744', 'hu', 2), +(10288, 'Lysis', 'Plato', '1998-12-01', 65, 'https://www.gutenberg.org/ebooks/1579', 'en', 4117), +(10289, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1584', 'Motley, John Lothrop', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/4837', 'en', 3372), +(10290, 'Odd Bits of History: Being Short Chapters Intended to Fill Some Blanks', 'Wolff, Henry W. (Henry William)', '2012-05-14', 16, 'https://www.gutenberg.org/ebooks/39696', 'en', 5338), +(10291, 'The Laughing Girl', 'Chambers, Robert W. (Robert William)', '2016-10-10', 17, 'https://www.gutenberg.org/ebooks/53249', 'en', 48), +(10292, 'The Infant\'s Delight: Poetry', 'Anonymous', '2004-02-01', 55, 'https://www.gutenberg.org/ebooks/10912', 'en', 859), +(10293, 'F. Chopin', 'Liszt, Franz', '2007-06-03', 15, 'https://www.gutenberg.org/ebooks/21669', 'fr', 5339), +(10294, 'Verstand schafft Leiden: Schauspiel in vier Akten', 'Griboyedov, Aleksandr Sergeyevich', '2019-06-17', 13, 'https://www.gutenberg.org/ebooks/59773', 'de', 271), +(10295, 'De nijlbruid', 'Ebers, Georg', '2013-06-13', 14, 'https://www.gutenberg.org/ebooks/42935', 'nl', 4941), +(10296, 'The Very Small Person', 'Donnell, Annie Hamilton', '2009-07-13', 17, 'https://www.gutenberg.org/ebooks/29404', 'en', 2811), +(10297, 'Forward Pass: A Story of the \"New Football\"', 'Barbour, Ralph Henry', '2017-11-17', 10, 'https://www.gutenberg.org/ebooks/55982', 'en', 5031), +(10298, 'The American Missionary — Volume 34, No. 09, September, 1880', 'Various', '2017-06-05', 6, 'https://www.gutenberg.org/ebooks/54850', 'en', 562), +(10299, 'Food Poisoning', 'Jordan, Edwin O. (Edwin Oakes)', '2010-11-01', 17, 'https://www.gutenberg.org/ebooks/34189', 'en', 5340), +(10300, 'The Dull Miss Archinard', 'Sedgwick, Anne Douglas', '2013-02-16', 14, 'https://www.gutenberg.org/ebooks/42109', 'en', 376), +(10301, 'A Trip Abroad\r\nAn Account of a Journey to the Earthly Canaan and the Land of the Ancient Pharaohs; To Which Are Appended a Brief Consideration of the Geography and History of Palestine, and a Chapter on Churches of Christ in Great Britain', 'Janes, Don Carlos', '2004-06-01', 46, 'https://www.gutenberg.org/ebooks/12679', 'en', 885), +(10302, 'Tales from \"Blackwood,\" Volume 9', 'Various', '2011-04-14', 7, 'https://www.gutenberg.org/ebooks/35867', 'en', 179), +(10303, 'Extracts from the Writings of Bahá\'u\'lláh and `Abdu\'l-Bahá and from the Letters of Shoghi Effendi and the Universal House of Justice on Scholarship', 'Universal House of Justice', '2006-09-18', 44, 'https://www.gutenberg.org/ebooks/19291', 'en', 4457), +(10304, 'The Pied Piper of Hamelin', 'Browning, Robert', '2006-05-08', 231, 'https://www.gutenberg.org/ebooks/18343', 'en', 2296), +(10305, 'Remember the Alamo', 'Barr, Amelia E.', '2008-06-29', 23, 'https://www.gutenberg.org/ebooks/287', 'en', 315), +(10306, 'The Cow', 'Stevenson, Robert Louis', '2007-12-01', 10, 'https://www.gutenberg.org/ebooks/23902', 'en', 859), +(10307, 'Kant\'s Critique of Judgement', 'Kant, Immanuel', '2015-03-08', 121, 'https://www.gutenberg.org/ebooks/48433', 'en', 5341), +(10308, 'A Stake in the Land', 'Speek, Peter A. (Peter Alexander)', '2009-11-23', 9, 'https://www.gutenberg.org/ebooks/30529', 'en', 5342), +(10309, 'A House to Let', 'Procter, Adelaide Anne', '2006-01-01', 8, 'https://www.gutenberg.org/ebooks/9714', 'en', 137), +(10310, 'String Quartet No. 05 in A major Opus 18', 'Beethoven, Ludwig van', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11001', 'en', 909), +(10311, 'Cum Grano Salis', 'Garrett, Randall', '2008-04-29', 50, 'https://www.gutenberg.org/ebooks/25234', 'en', 26), +(10312, 'Notes on a Tour Through the Western part of The State of New York', 'Anonymous', '2010-05-07', 6, 'https://www.gutenberg.org/ebooks/32283', 'en', 5343), +(10313, 'The History of Sulu', 'Saleeby, Najeeb M. (Najeeb Mitry)', '2013-01-03', 98, 'https://www.gutenberg.org/ebooks/41771', 'en', 5344), +(10314, 'Laches', 'Plato', '1998-12-01', 71, 'https://www.gutenberg.org/ebooks/1584', 'en', 5345), +(10315, 'Ο Γεροστάθης; ή Αναμνήσεις της παιδικής μου ηλικίας', 'Melas, Leon', '2010-08-05', 10, 'https://www.gutenberg.org/ebooks/33351', 'el', 61), +(10316, 'The Spanish Galleon\r\nBeing an account of a search for sunken treasure in the Caribbean Sea.', 'Seeley, Charles Sumner', '2018-07-31', 21, 'https://www.gutenberg.org/ebooks/57614', 'en', 1592), +(10317, 'The History of Don Quixote, Volume 1, Part 16', 'Cervantes Saavedra, Miguel de', '2004-07-19', 3, 'https://www.gutenberg.org/ebooks/5918', 'en', 3761), +(10318, 'Dorrien of Cranston', 'Mitford, Bertram', '2011-07-05', 22, 'https://www.gutenberg.org/ebooks/36623', 'en', 95), +(10319, 'The Veil, and Other Poems', 'De la Mare, Walter', '2016-06-18', 12, 'https://www.gutenberg.org/ebooks/52366', 'en', 1594), +(10320, 'The Prairie Chief', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 27, 'https://www.gutenberg.org/ebooks/21694', 'en', 5346), +(10321, 'The Home; Or, Life in Sweden', 'Bremer, Fredrika', '2007-03-05', 27, 'https://www.gutenberg.org/ebooks/20746', 'en', 3370), +(10322, 'The Truce of God', 'Rinehart, Mary Roberts', '2005-01-03', 36, 'https://www.gutenberg.org/ebooks/14573', 'en', 585), +(10323, 'Het Eiland Vlieland en Zijne Bewoners', 'Allan, Francis', '2013-11-17', 19, 'https://www.gutenberg.org/ebooks/44203', 'nl', 5347), +(10324, 'Henrietta\'s Wish; Or, Domineering', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5124', 'en', 45), +(10325, 'Rikas tyttö Ruusulaaksossa', 'Thomasson, Pehr', '2010-10-30', 36, 'https://www.gutenberg.org/ebooks/34174', 'fi', 2168), +(10326, 'Joyzelle', 'Maeterlinck, Maurice', '2014-11-29', 11, 'https://www.gutenberg.org/ebooks/47486', 'en', 415), +(10327, 'Dick Kent with the Mounted Police', 'Oblinger, M. M. (Milo Milton)', '2015-11-11', 19, 'https://www.gutenberg.org/ebooks/50431', 'en', 5348), +(10328, 'Relation de l\'Islande', 'La Peyrère, Isaac de', '2007-07-07', 13, 'https://www.gutenberg.org/ebooks/22011', 'fr', 280), +(10329, 'A Bibliographical, Antiquarian and Picturesque Tour in France and Germany, Volume One', 'Dibdin, Thomas Frognall', '2005-07-06', 23, 'https://www.gutenberg.org/ebooks/16224', 'en', 3386), +(10330, 'Vanha koti: Kolminäytöksinen näytelmä', 'Jotuni, Maria', '2014-08-10', 17, 'https://www.gutenberg.org/ebooks/46554', 'fi', 382), +(10331, 'Harold : the Last of the Saxon Kings — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7673', 'en', 5349), +(10332, 'All But Lost: A Novel. Vol. 1 of 3', 'Henty, G. A. (George Alfred)', '2017-02-02', 42, 'https://www.gutenberg.org/ebooks/54091', 'en', 61), +(10333, 'Story of Chester Lawrence\r\nBeing the Completed Account of One who Played an Important Part in \"Piney Ridge Cottage\"', 'Anderson, Nephi', '2004-10-15', 22, 'https://www.gutenberg.org/ebooks/13756', 'en', 942), +(10334, 'King Spruce, A Novel', 'Day, Holman', '2011-01-13', 92, 'https://www.gutenberg.org/ebooks/34948', 'en', 48), +(10335, 'Heart\'s-ease', 'Brooks, Phillips', '2008-12-18', 8, 'https://www.gutenberg.org/ebooks/27563', 'en', 1130), +(10336, 'A Simpleton', 'Reade, Charles', '2006-05-17', 11, 'https://www.gutenberg.org/ebooks/2301', 'en', 137), +(10337, 'Cox—The Man', 'Babson, Roger Ward', '2013-06-24', 11, 'https://www.gutenberg.org/ebooks/43026', 'en', 5350), +(10338, 'Cudjo\'s Cave', 'Trowbridge, J. T. (John Townsend)', '2010-02-26', 18, 'https://www.gutenberg.org/ebooks/31406', 'en', 5351), +(10339, 'Dorian', 'Anderson, Nephi', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12684', 'en', 942), +(10340, 'The Story of the Mince Pie', 'Gates, Josephine Scribner', '2017-07-17', 18, 'https://www.gutenberg.org/ebooks/55143', 'en', 585), +(10341, 'Minute Mysteries [Detectograms]', 'Ripley, H. A. (Harold Austin)', '2015-12-04', 38, 'https://www.gutenberg.org/ebooks/50603', 'en', 5332), +(10342, 'Fishing in British Columbia\nWith a Chapter on Tuna Fishing at Santa Catalina', 'Lambert, Thomas Wilson', '2009-05-08', 18, 'https://www.gutenberg.org/ebooks/28719', 'en', 5352), +(10343, 'L\'amore di Loredana', 'Zùccoli, Luciano', '2010-11-16', 23, 'https://www.gutenberg.org/ebooks/34346', 'it', 892), +(10344, 'A History of Aeronautics', 'Marsh, W. Lockwood (William Lockwood)', '1997-04-01', 130, 'https://www.gutenberg.org/ebooks/874', 'en', 5353), +(10345, 'History of Tom Jones, a Foundling', 'Fielding, Henry', '2004-09-01', 465, 'https://www.gutenberg.org/ebooks/6593', 'en', 637), +(10346, 'A Night in the Luxembourg', 'Gourmont, Remy de', '2014-09-04', 9, 'https://www.gutenberg.org/ebooks/46766', 'en', 259), +(10347, 'A Wife\'s Duty: A Tale', 'Opie, Amelia', '2011-02-15', 8, 'https://www.gutenberg.org/ebooks/35294', 'en', 61), +(10348, 'Les sports à la mode', 'Meillac, Camille', '2006-11-18', 18, 'https://www.gutenberg.org/ebooks/19862', 'fr', 2524), +(10349, 'The Writings of John Burroughs — Volume 05: Pepacton', 'Burroughs, John', '2005-02-01', 3, 'https://www.gutenberg.org/ebooks/7441', 'en', 1216), +(10350, 'English Songs and Ballads', NULL, '2007-08-02', 10, 'https://www.gutenberg.org/ebooks/22223', 'en', 1054), +(10351, 'Going to Maynooth\r\nTraits and Stories of the Irish Peasantry, The Works of William Carleton, Volume Three', 'Carleton, William', '2005-06-07', 17, 'https://www.gutenberg.org/ebooks/16016', 'en', 440), +(10352, 'Historic China, and Other Sketches', 'Giles, Herbert Allen', '2006-03-28', 28, 'https://www.gutenberg.org/ebooks/2133', 'en', 4635), +(10353, 'Dr. Arne and Rule, Britannia', 'Cummings, William Hayman', '2013-07-14', 9, 'https://www.gutenberg.org/ebooks/43214', 'en', 5354), +(10354, 'Ensimmäiset novellit', 'Aho, Juhani', '2004-10-01', 55, 'https://www.gutenberg.org/ebooks/13564', 'fi', 665), +(10355, 'Mr. Fortune\'s Practice', 'Bailey, H. C. (Henry Christopher)', '2019-08-13', 1169, 'https://www.gutenberg.org/ebooks/60096', 'en', 5355), +(10356, 'The Hilltop Boys: A Story of School Life', 'Burleigh, Cyril', '2009-01-08', 10, 'https://www.gutenberg.org/ebooks/27751', 'en', 3593), +(10357, 'The Girl Wanted: A Book of Friendly Thoughts', 'Waterman, Nixon', '2008-09-21', 16, 'https://www.gutenberg.org/ebooks/26683', 'en', 740), +(10358, 'Der Weg ohne Heimkehr: Ein Martyrium in Briefen', 'Wegner, Armin T.', '2017-08-16', 5, 'https://www.gutenberg.org/ebooks/55371', 'de', 5356), +(10359, 'Love-Letters Between a Nobleman and His Sister', 'Behn, Aphra', '2005-07-01', 66, 'https://www.gutenberg.org/ebooks/8409', 'en', 5357), +(10360, 'Le Projet Gutenberg (1971-2009)', 'Lebert, Marie', '2010-03-13', 16, 'https://www.gutenberg.org/ebooks/31634', 'fr', 340), +(10361, 'The Contemporary Review, Volume 36, October 1879', 'Various', '2012-04-16', 9, 'https://www.gutenberg.org/ebooks/39459', 'en', 380), +(10362, 'Readings from Modern Mexican Authors', NULL, '2016-09-02', 1, 'https://www.gutenberg.org/ebooks/52968', 'en', 5358), +(10363, 'Lääkärin kohtalo: eli Sairaalan n:o 6', 'Chekhov, Anton Pavlovich', '2012-12-03', 17, 'https://www.gutenberg.org/ebooks/41543', 'fi', 147), +(10364, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 379, July 4, 1829', 'Various', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11233', 'en', 133), +(10365, 'Psychology and Social Sanity', 'Münsterberg, Hugo', '2008-04-06', 22, 'https://www.gutenberg.org/ebooks/25006', 'en', 1771), +(10366, 'Baron Trump\'s Marvellous Underground Journey', 'Lockwood, Ingersoll', '2018-06-30', 532, 'https://www.gutenberg.org/ebooks/57426', 'en', 3823), +(10367, 'The Red Lottery Ticket', 'Du Boisgobey, Fortuné', '2012-08-12', 10, 'https://www.gutenberg.org/ebooks/40491', 'en', 128), +(10368, 'Joseph in the Snow, and The Clockmaker. In Three Volumes. Vol. II.', 'Auerbach, Berthold', '2010-07-15', 23, 'https://www.gutenberg.org/ebooks/33163', 'en', 803), +(10369, 'Cease firing', 'Johnston, Mary', '2016-05-24', 35, 'https://www.gutenberg.org/ebooks/52154', 'en', 5359), +(10370, 'T. De Witt Talmage as I Knew Him', 'Talmage, Eleanor McCutcheon', '2005-04-23', 15, 'https://www.gutenberg.org/ebooks/15693', 'en', 5360), +(10371, 'Blackie & Son\'s Books for Young People, Catalogue - 1886', 'Blackie & Son', '2011-06-14', 9, 'https://www.gutenberg.org/ebooks/36411', 'en', 2663), +(10372, 'The Talisman: A Tale for Boys', 'Anonymous', '2013-10-25', 3, 'https://www.gutenberg.org/ebooks/44031', 'en', 388), +(10373, 'Красавице, которая нюхала табак', 'Pushkin, Aleksandr Sergeevich', '2004-03-01', 124, 'https://www.gutenberg.org/ebooks/5316', 'ru', 8), +(10374, 'O Mysterio da Estrada de Cintra. Cartas ao Diário de Noticias', 'Ortigão, José Duarte Ramalho', '2007-02-12', 85, 'https://www.gutenberg.org/ebooks/20574', 'pt', 5361), +(10375, 'Духовные оды', 'Derzhavin, Gavriil Romanovich', '2005-01-20', 37, 'https://www.gutenberg.org/ebooks/14741', 'ru', 8), +(10376, 'The Inventor. Introducing the Wishing Box. A Christmas Play', 'Yale, Elsie Duncan', '2016-09-19', 6, 'https://www.gutenberg.org/ebooks/53086', 'en', 3459), +(10377, 'Riding and Driving', 'Anderson, Edward L. (Edward Lowell)', '2014-07-16', 11, 'https://www.gutenberg.org/ebooks/46302', 'en', 5362), +(10378, 'Rob Roy — Complete', 'Scott, Walter', '2004-08-23', 264, 'https://www.gutenberg.org/ebooks/7025', 'en', 5363), +(10379, 'A velha disciplina: Versos', 'Dumont, Júlio', '2007-09-17', 4, 'https://www.gutenberg.org/ebooks/22647', 'pt', 8), +(10380, 'Weymouth New Testament in Modern Speech, 2 John', 'Weymouth, Richard Francis', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8851', 'en', 5364), +(10381, 'Through Forest and Fire\nWild-Woods Series No. 1', 'Ellis, Edward Sylvester', '2005-08-08', 26, 'https://www.gutenberg.org/ebooks/16472', 'en', 31), +(10382, 'Wylder\'s Hand', 'Le Fanu, Joseph Sheridan', '2006-02-01', 33, 'https://www.gutenberg.org/ebooks/9983', 'en', 5365), +(10383, 'V. Blasco Ibáñez, ses romans et le roman de sa vie', 'Pitollet, Camille', '2015-10-21', 5, 'https://www.gutenberg.org/ebooks/50267', 'fr', 5366), +(10384, 'Katie Robertson\nA Girls Story of Factory Life', 'Winslow, Margaret E.', '2007-12-10', 14, 'https://www.gutenberg.org/ebooks/23795', 'en', 5367), +(10385, 'Parsifal: Kertomus Graalin ritarista', 'Kilpi, Volter', '2010-12-22', 6, 'https://www.gutenberg.org/ebooks/34722', 'fi', 5368), +(10386, 'Those Smith Boys on the Diamond; or, Nip and Tuck for Victory', 'Garis, Howard Roger', '2017-10-09', 13, 'https://www.gutenberg.org/ebooks/55715', 'en', 3669), +(10387, 'An Enquiry into an Origin of Honour; and the Usefulness of Christianity in War', 'Mandeville, Bernard', '2005-04-01', 21, 'https://www.gutenberg.org/ebooks/7819', 'en', 2114), +(10388, 'Annajanska, the Bolshevik Empress', 'Shaw, Bernard', '2002-10-01', 28, 'https://www.gutenberg.org/ebooks/3485', 'en', 612), +(10389, 'Old Plymouth Trails', 'Packard, Winthrop', '2010-02-11', 15, 'https://www.gutenberg.org/ebooks/31250', 'en', 5369), +(10390, 'Old Mother West Wind', 'Burgess, Thornton W. (Thornton Waldo)', '2001-03-01', 83, 'https://www.gutenberg.org/ebooks/2557', 'en', 2849), +(10391, 'Say \"Hello\" for Me', 'Coggins, Frank W.', '2009-11-01', 29, 'https://www.gutenberg.org/ebooks/30382', 'en', 179), +(10392, 'Birds and All Nature, Vol. 7, No. 1, January 1900\r\nIllustrated by Color Photography', 'Various', '2015-02-18', 19, 'https://www.gutenberg.org/ebooks/48298', 'en', 1584), +(10393, 'Peter Cotterell\'s Treasure', 'Holland, Rupert Sargent', '2013-09-08', 15, 'https://www.gutenberg.org/ebooks/43670', 'en', 153), +(10394, 'Samlade arbeten I', 'Runeberg, Johan Ludvig', '2004-08-03', 17, 'https://www.gutenberg.org/ebooks/13100', 'sv', 8), +(10395, 'De grondbeginselen der Nederlandsche spelling\r\nRegeling der spelling voor het woordenboek der Nederlandsche taal', 'Winkel, L. A. te', '2008-11-26', 17, 'https://www.gutenberg.org/ebooks/27335', 'nl', 5370), +(10396, 'The art of taking a wife', 'Mantegazza, Paolo', '2018-04-25', 15, 'https://www.gutenberg.org/ebooks/57042', 'en', 1451), +(10397, 'Matrimonial Openings\nSailor\'s Knots, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10785', 'en', 72), +(10398, 'The Mammals of Washtenaw County, Michigan\nOccasional Papers of the Museum of Zoology, No. 123', 'Wood, Norman Asa', '2010-08-23', 13, 'https://www.gutenberg.org/ebooks/33507', 'en', 5371), +(10399, 'Dagonet Abroad', 'Sims, George R.', '2019-02-06', 19, 'https://www.gutenberg.org/ebooks/58836', 'en', 1408), +(10400, 'Rose in Bloom\nA Sequel to \'Eight Cousins\'', 'Alcott, Louisa May', '2012-10-21', 55, 'https://www.gutenberg.org/ebooks/41127', 'en', 5372), +(10401, 'La Niña de Luzmela', 'Espina, Concha', '2004-03-01', 29, 'https://www.gutenberg.org/ebooks/11657', 'es', 1384), +(10402, 'Think: A Book for To-day', 'Hunter, William Crosbie', '2011-07-25', 19, 'https://www.gutenberg.org/ebooks/36849', 'en', 251), +(10403, 'Warren Commission (14 of 26): Hearings Vol. XIV (of 15)', 'United States. Warren Commission', '2017-12-17', 9, 'https://www.gutenberg.org/ebooks/56190', 'en', 5206), +(10404, 'Little Folks\' Handy Book', 'Beard, Adelia B. (Adelia Belle)', '2008-05-13', 21, 'https://www.gutenberg.org/ebooks/25462', 'en', 1560), +(10405, 'Noémi', 'Baring-Gould, S. (Sabine)', '2013-12-17', 25, 'https://www.gutenberg.org/ebooks/44455', 'en', 5373), +(10406, 'AE in the Irish Theosophist', 'Russell, George William', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/5772', 'en', 746), +(10407, 'Canada: the Empire of the North\nBeing the Romantic Story of the New Dominion\'s Growth from Colony to Kingdom', 'Laut, Agnes C.', '2006-12-14', 29, 'https://www.gutenberg.org/ebooks/20110', 'en', 5181), +(10408, 'Taboo and Genetics\r\nA Study of the Biological, Sociological and Psychological Foundation of the Family', 'Knight, Melvin Moses', '2004-12-11', 43, 'https://www.gutenberg.org/ebooks/14325', 'en', 5374), +(10409, '1868 ja 1968: Leikkikuvailus lauluilla kahdessa näytöksessä', 'Blanche, August', '2016-07-08', 18, 'https://www.gutenberg.org/ebooks/52530', 'fi', 5375), +(10410, 'Fighting with French: A Tale of the New Army', 'Strang, Herbert', '2013-06-01', 7, 'https://www.gutenberg.org/ebooks/39801', 'en', 1523), +(10411, 'The King\'s Pilgrimage', 'Fox, Frank', '2011-05-10', 26, 'https://www.gutenberg.org/ebooks/36075', 'en', 5376), +(10412, 'Acrobats and Mountebanks', 'Le Roux, Hugues', '2014-05-05', 21, 'https://www.gutenberg.org/ebooks/45587', 'en', 5377), +(10413, 'Pamela Censured', 'Anonymous', '2010-09-16', 675, 'https://www.gutenberg.org/ebooks/33735', 'en', 3194), +(10414, 'Der Dunkelgraf', 'Bechstein, Ludwig', '2008-03-08', 31, 'https://www.gutenberg.org/ebooks/24782', 'de', 5233), +(10415, 'Molière - Œuvres complètes, Tome 4', 'Molière', '2018-06-04', 62, 'https://www.gutenberg.org/ebooks/57270', 'fr', 3323), +(10416, 'The Atlantic Monthly, Volume 06, No. 38, December, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11465', 'en', 1227), +(10417, 'All About the Little Small Red Hen', 'Anonymous', '2008-05-30', 36, 'https://www.gutenberg.org/ebooks/25650', 'en', 2296), +(10418, 'My Danish Sweetheart: A Novel. Volume 3 of 3', 'Russell, William Clark', '2012-11-07', 3, 'https://www.gutenberg.org/ebooks/41315', 'en', 61), +(10419, 'Notes and Queries, Number 188, June 4, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-09', 13, 'https://www.gutenberg.org/ebooks/20322', 'en', 105), +(10420, 'Wanted, a Young Woman to Do Housework: Business principles applied to housework', 'Barker, C. Hélène', '2004-11-22', 44, 'https://www.gutenberg.org/ebooks/14117', 'en', 3407), +(10421, 'Sämtliche Werke 1-2: Rodion Raskolnikoff (Schuld und Sühne)', 'Dostoyevsky, Fyodor', '2018-11-05', 56, 'https://www.gutenberg.org/ebooks/58238', 'de', 1014), +(10422, 'The Esperantist, Vol. 2, No. 8', NULL, '2014-01-14', 8, 'https://www.gutenberg.org/ebooks/44667', 'eo', 3912), +(10423, 'Διηγήματα, Τόμος Β', 'Moraitides, Alexandros', '2011-09-11', 9, 'https://www.gutenberg.org/ebooks/37395', 'el', 1348), +(10424, 'A Thorny Path — Volume 11', 'Ebers, Georg', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/5540', 'en', 1814), +(10425, 'The Red Mouse: A Mystery Romance', 'Osborne, William Hamilton', '2011-05-28', 23, 'https://www.gutenberg.org/ebooks/36247', 'en', 128), +(10426, 'Farina', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4492', 'en', 282), +(10427, 'Mrs Peixada', 'Harland, Henry', '2016-08-02', 13, 'https://www.gutenberg.org/ebooks/52702', 'en', 557), +(10428, 'Tortoises', 'Lawrence, D. H. (David Herbert)', '2007-08-31', 50, 'https://www.gutenberg.org/ebooks/22475', 'en', 54), +(10429, 'Breakfast, Luncheon and Tea', 'Harland, Marion', '2015-09-12', 32, 'https://www.gutenberg.org/ebooks/49944', 'en', 1369), +(10430, 'A Visit to the Mammoth Cave of Kentucky', 'Wilson, John', '2016-02-12', 3, 'https://www.gutenberg.org/ebooks/51187', 'en', 5378), +(10431, 'Punch, or the London Charivari, Vol. 158, 1920-06-30', 'Various', '2005-09-04', 7, 'https://www.gutenberg.org/ebooks/16640', 'en', 134), +(10432, 'Locke', 'Fowler, Thomas', '2014-06-29', 15, 'https://www.gutenberg.org/ebooks/46130', 'en', 5379), +(10433, '人物志', 'Liu, Shao, active 3rd century', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/7217', 'zh', 5380); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(10434, 'Some Constituents of the Poison Ivy Plant (Rhus Toxicodendron)', 'Syme, William Anderson', '2010-11-30', 11, 'https://www.gutenberg.org/ebooks/34510', 'en', 5381), +(10435, 'The Jamesons', 'Freeman, Mary Eleanor Wilkins', '2006-02-19', 27, 'https://www.gutenberg.org/ebooks/17792', 'en', 13), +(10436, 'En prestgård i N—d', 'Falkman, Charlotta', '2015-09-25', 19, 'https://www.gutenberg.org/ebooks/50055', 'sv', 61), +(10437, '\"Verdaj fajreroj\": Kolekto da versaĵoj', 'Frenkel, Roman', '2015-05-08', 14, 'https://www.gutenberg.org/ebooks/48896', 'eo', 5382), +(10438, 'Harper\'s Young People, September 13, 1881\nAn Illustrated Weekly', 'Various', '2015-06-09', 6, 'https://www.gutenberg.org/ebooks/49178', 'en', 479), +(10439, 'Dans l\'extrême Far West: Aventures d\'un émigrant dans la Colombie anglaise', 'Johnson, R. Byron (Richard Byron)', '2013-04-24', 3, 'https://www.gutenberg.org/ebooks/42590', 'fr', 5383), +(10440, 'The Cartels Jungle', 'Cox, Irving E.', '2010-03-16', 34, 'https://www.gutenberg.org/ebooks/31062', 'en', 26), +(10441, 'Bothwell; or, The Days of Mary Queen of Scots, Volume 1 (of 3)', 'Grant, James', '2017-09-11', 13, 'https://www.gutenberg.org/ebooks/55527', 'en', 5384), +(10442, 'The Story of the Other Wise Man', 'Van Dyke, Henry', '2006-10-23', 48, 'https://www.gutenberg.org/ebooks/19608', 'en', 609), +(10443, 'Fifteen Years in Hell: An Autobiography', 'Benson, Luther', '2004-08-30', 34, 'https://www.gutenberg.org/ebooks/13332', 'en', 5385), +(10444, '金雲翹傳', 'Qingxincairen', '2008-10-31', 29, 'https://www.gutenberg.org/ebooks/27107', 'zh', NULL), +(10445, 'The Lady from the Sea', 'Ibsen, Henrik', '2001-08-01', 103, 'https://www.gutenberg.org/ebooks/2765', 'en', 3523), +(10446, 'A Gleeb for Earth', 'Schafhauser, Charles', '2016-01-07', 21, 'https://www.gutenberg.org/ebooks/50869', 'en', 179), +(10447, 'The Golden Butterfly', 'Rice, James', '2013-08-10', 21, 'https://www.gutenberg.org/ebooks/43442', 'en', 137), +(10448, 'Slave Narratives: a Folk History of Slavery in the United States, From Interviews with Former Slaves\nVirginia Narratives', 'United States. Work Projects Administration', '2009-05-26', 44, 'https://www.gutenberg.org/ebooks/28973', 'en', 5386), +(10449, 'Φαίδρος', 'Plato', '2011-03-18', 24, 'https://www.gutenberg.org/ebooks/35604', 'el', 4235), +(10450, 'Celebrated Claimants from Perkin Warbeck to Arthur Orton', 'Anonymous', '2005-08-08', 12, 'https://www.gutenberg.org/ebooks/16486', 'en', 5387), +(10451, 'Nine Thousand Miles on a Pullman Train\r\nAn Account of a Tour of Railroad Conductors from Philadelphia to the Pacific Coast and Return', 'Shaw, Milton M.', '2016-03-02', 11, 'https://www.gutenberg.org/ebooks/51341', 'en', 1110), +(10452, 'Das Glück ist immer da! Heitere Geschichten und Plaudereien', 'Schmidt, Otto Ernst', '2015-10-24', 14, 'https://www.gutenberg.org/ebooks/50293', 'de', 253), +(10453, 'Vogels van diverse pluimage', 'Vosmaer, Carel', '2006-01-23', 4, 'https://www.gutenberg.org/ebooks/17554', 'nl', 5388), +(10454, 'Berlin — Panorama einer Weltstadt', 'Gutzkow, Karl', '2006-02-01', 59, 'https://www.gutenberg.org/ebooks/9977', 'de', 3386), +(10455, 'Goat-Feathers', 'Butler, Ellis Parker', '2009-03-22', 15, 'https://www.gutenberg.org/ebooks/28389', 'en', 190), +(10456, 'Little Journeys to the Homes of the Great, Volume 7\nLittle Journeys to the Homes of Eminent Orators', 'Hubbard, Elbert', '2007-12-07', 27, 'https://www.gutenberg.org/ebooks/23761', 'en', 5389), +(10457, 'Tales of the Road', 'Crewdson, Charles N. (Charles Newman)', '2004-07-01', 35, 'https://www.gutenberg.org/ebooks/6103', 'en', 4981), +(10458, 'The Black Moose in Pennsylvania', 'Shoemaker, Henry W.', '2014-10-29', 14, 'https://www.gutenberg.org/ebooks/47224', 'en', 5390), +(10459, 'Fenimore Cooper\'s Literary Offenses', 'Twain, Mark', '2008-08-01', 8, 'https://www.gutenberg.org/ebooks/26213', 'en', 5391), +(10460, 'Poems New and Old', 'Freeman, John', '2004-07-15', 16, 'https://www.gutenberg.org/ebooks/12026', 'en', 54), +(10461, 'An Isle of Surrey: A Novel', 'Dowling, Richard', '2013-05-21', 11, 'https://www.gutenberg.org/ebooks/42756', 'en', 95), +(10462, 'Quotations from the Project Gutenberg Editions of the Works of Charles Dudley Warner', 'Warner, Charles Dudley', '2002-10-01', 8, 'https://www.gutenberg.org/ebooks/3471', 'en', 1026), +(10463, 'Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 4', 'Stedman, John Gabriel', '2005-05-01', 8, 'https://www.gutenberg.org/ebooks/8099', 'nl', 5392), +(10464, 'The Snow-Image\nA Childish Miracle', 'Hawthorne, Nathaniel', '2009-10-31', 42, 'https://www.gutenberg.org/ebooks/30376', 'en', 2203), +(10465, 'Eothen; with an Introduction and Notes', 'Kinglake, Alexander William', '2013-09-10', 23, 'https://www.gutenberg.org/ebooks/43684', 'en', 5393), +(10466, 'The Life of Robert, Lord Clive, Vol. 2 (of 3)\r\nCollected from the Family Papers Communicated by the Earl of Powis', 'Malcolm, John', '2017-04-30', 10, 'https://www.gutenberg.org/ebooks/54633', 'en', 5394), +(10467, 'Desk and Debit; or, The Catastrophes of a Clerk', 'Optic, Oliver', '2008-02-08', 18, 'https://www.gutenberg.org/ebooks/24544', 'en', 5395), +(10468, 'Philippine Folklore Stories', 'Miller, John Maurice', '2004-01-01', 82, 'https://www.gutenberg.org/ebooks/10771', 'en', 5098), +(10469, 'An English Girl\'s First Impressions of Burmah', 'Ellis, Beth', '2012-06-16', 21, 'https://www.gutenberg.org/ebooks/40001', 'en', 1354), +(10470, 'The Crisis in Russia', 'Ransome, Arthur', '1998-05-01', 47, 'https://www.gutenberg.org/ebooks/1326', 'en', 5396), +(10471, 'A Man of the World', 'Call, Annie Payson', '2010-05-19', 9, 'https://www.gutenberg.org/ebooks/32421', 'en', 740), +(10472, 'Collezione dell\'opere del Cavaliere Conte Alessandro Volta - Tomo I, Parte I', 'Volta, Alessandro', '2019-07-13', 51, 'https://www.gutenberg.org/ebooks/59910', 'it', 4975), +(10473, 'Das lebende Lichtbild: Entwicklung, Wesen und Bedeutung des Kinematographen', 'Liesegang, Franz Paul', '2017-12-11', 7, 'https://www.gutenberg.org/ebooks/56164', 'de', 2396), +(10474, 'New Treasure Seekers; Or, The Bastable Children in Search of a Fortune', 'Nesbit, E. (Edith)', '2008-05-16', 81, 'https://www.gutenberg.org/ebooks/25496', 'en', 31), +(10475, 'A Tramp Abroad — Volume 05', 'Twain, Mark', '2004-06-18', 25, 'https://www.gutenberg.org/ebooks/5786', 'en', 5108), +(10476, 'Queen Victoria', 'Strachey, Lytton', '2011-08-21', 31, 'https://www.gutenberg.org/ebooks/37153', 'en', 2135), +(10477, 'Only a Girl\'s Love', 'Garvice, Charles', '2016-10-31', 266, 'https://www.gutenberg.org/ebooks/53416', 'en', 48), +(10478, 'The Mountainy Singer', 'Campbell, Joseph', '2012-02-18', 12, 'https://www.gutenberg.org/ebooks/38927', 'en', 139), +(10479, 'Un billet de loterie\r\n(Le numéro 9672)', 'Verne, Jules', '2005-02-28', 30, 'https://www.gutenberg.org/ebooks/15203', 'fr', 5397), +(10480, 'My Friend Smith: A Story of School and City Life', 'Reed, Talbot Baines', '2007-04-11', 19, 'https://www.gutenberg.org/ebooks/21036', 'en', 1655), +(10481, 'The Daemon of the World', 'Shelley, Percy Bysshe', '2003-11-01', 42, 'https://www.gutenberg.org/ebooks/4654', 'en', 8), +(10482, 'Luther\'s Small Catechism Explained in Questions and Answers', 'Sverdrup, Harald Ulrik', '2011-05-10', 9, 'https://www.gutenberg.org/ebooks/36081', 'en', 5398), +(10483, 'L\'umorismo', 'Pirandello, Luigi', '2018-04-10', 93, 'https://www.gutenberg.org/ebooks/56958', 'it', 5399), +(10484, 'Out with Garibaldi: A story of the liberation of Italy', 'Henty, G. A. (George Alfred)', '2014-05-03', 21, 'https://www.gutenberg.org/ebooks/45573', 'en', 5400), +(10485, 'War Experiences and the Story of the Vicksburg Campaign from \"Milliken\'s Bend\" to July 4, 1863\r\nbeing an accurate and graphic account of campaign events taken from the diary of Capt. J.J. Kellogg, of Co. B 113th Illinois volunteer infantry', 'Kellogg, J. J. (John Jackson)', '2012-07-14', 11, 'https://www.gutenberg.org/ebooks/40233', 'en', 5401), +(10486, 'The Romance of Industry and Invention', NULL, '2011-12-17', 20, 'https://www.gutenberg.org/ebooks/38329', 'en', 1739), +(10487, 'The Merchant of Venice', 'Shakespeare, William', '1997-11-01', 136, 'https://www.gutenberg.org/ebooks/1114', 'en', 907), +(10488, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 12, December 1895\r\nEnglish Country Houses', 'Various', '2008-03-08', 10, 'https://www.gutenberg.org/ebooks/24776', 'en', 2140), +(10489, 'Norwegian Life\r\nAn Account of Past and Contemporary Conditions and Progress in Norway and Sweden', NULL, '2003-12-01', 22, 'https://www.gutenberg.org/ebooks/10543', 'en', 5402), +(10490, 'Manual of Classical Erotology (De figuris Veneris)', NULL, '2018-06-06', 405, 'https://www.gutenberg.org/ebooks/57284', 'en', 5403), +(10491, 'The Scarlet Bat: A Detective Story', 'Hume, Fergus', '2018-01-11', 22, 'https://www.gutenberg.org/ebooks/56356', 'en', 1425), +(10492, 'Punch, or the London Charivari, Volume 153, October 31, 1917', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11491', 'en', 134), +(10493, 'Tabby', 'Marks, Winston K. (Winston Kinney)', '2010-05-30', 38, 'https://www.gutenberg.org/ebooks/32613', 'en', 5404), +(10494, 'Art-Studies from Nature, as Applied to Design\r\nFor the use of architects, designers, and manufacturers', 'Mackie, Samuel Joseph, active 1851-1872', '2016-11-28', 20, 'https://www.gutenberg.org/ebooks/53624', 'en', 5405), +(10495, 'Elinor Wyllys; Or, The Young Folk of Longbridge: A Tale. Volume 2', 'Cooper, Susan Fenimore', '1999-10-01', 14, 'https://www.gutenberg.org/ebooks/1928', 'en', 98), +(10496, 'The Adventure Girls at K Bar O', 'Blank, Clair', '2014-01-18', 12, 'https://www.gutenberg.org/ebooks/44693', 'en', 5010), +(10497, 'Pan Michael: An Historical Novel of Poland, the Ukraine, and Turkey', 'Sienkiewicz, Henryk', '2011-09-08', 35, 'https://www.gutenberg.org/ebooks/37361', 'en', 5406), +(10498, 'Diana of the Crossways — Volume 2', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4466', 'en', 5407), +(10499, 'Smithsonian Institution - United States National Museum - Bulletin 249\r\nContributions from the Museum of History and Technology\r\nPapers 52-54 on Archeology', 'Watkins, C. Malcolm', '2014-05-24', 18, 'https://www.gutenberg.org/ebooks/45741', 'en', 2011), +(10500, 'Sermons on Various Important Subjects\r\nWritten Partly on Sundry of the More Difficult Passages in the Sacred Volume', 'Lee, Andrew', '2005-02-13', 26, 'https://www.gutenberg.org/ebooks/15031', 'en', 2248), +(10501, 'The Recent Revolution in Organ Building\nBeing an Account of Modern Developments', 'Miller, George Laing', '2007-04-22', 19, 'https://www.gutenberg.org/ebooks/21204', 'en', 5408), +(10502, 'Poisoned Air', 'Meek, S. P. (Sterner St. Paul)', '2009-06-08', 35, 'https://www.gutenberg.org/ebooks/29069', 'en', 26), +(10503, 'Een Reis naar het Land van de Cacao en de Suiker\r\nDe Aarde en haar Volken, 1908', 'Dufau, Th.', '2007-08-31', 11, 'https://www.gutenberg.org/ebooks/22481', 'nl', 1899), +(10504, 'The Stately Homes of England', 'Jewitt, Llewellynn Frederick William', '2016-02-10', 18, 'https://www.gutenberg.org/ebooks/51173', 'en', 5409), +(10505, 'Mr. Claghorn\'s Daughter', 'Trent, Hilary', '2011-03-01', 6, 'https://www.gutenberg.org/ebooks/35436', 'en', 61), +(10506, 'Der Snob\r\nKomödie in drei Aufzügen', 'Sternheim, Carl', '2019-08-11', 216, 'https://www.gutenberg.org/ebooks/60089', 'de', 3978), +(10507, 'The Pillars of the House; Or, Under Wode, Under Rode, Vol. 1 (of 2)', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/6331', 'en', 2024), +(10508, 'Ainslee\'s magazine, Volume 16, No. 2, September, 1905', 'Various', '2014-10-02', 25, 'https://www.gutenberg.org/ebooks/47016', 'en', 2506), +(10509, 'With Wolfe in Canada: The Winning of a Continent', 'Henty, G. A. (George Alfred)', '2006-02-13', 51, 'https://www.gutenberg.org/ebooks/17766', 'en', 5410), +(10510, 'La vie de Rossini, tome II', 'Stendhal', '2010-01-15', 33, 'https://www.gutenberg.org/ebooks/30978', 'fr', 5411), +(10511, 'The Christmas Miracle\n1911', 'Murfree, Mary Noailles', '2007-11-19', 19, 'https://www.gutenberg.org/ebooks/23553', 'en', 4872), +(10512, 'Little Pitchers\nFlaxie Frizzle Stories', 'May, Sophie', '2015-05-03', 12, 'https://www.gutenberg.org/ebooks/48862', 'en', 388), +(10513, 'Art in Shell of the Ancient Americans\nSecond annual report of the Bureau of Ethnology to the\nSecretary of the Smithsonian Institution, 1880-81, pages\n179-306', 'Holmes, William Henry', '2013-04-20', 12, 'https://www.gutenberg.org/ebooks/42564', 'en', 5412), +(10514, 'The Rosicrucian Mysteries: An Elementary Exposition of Their Secret Teachings', 'Heindel, Max', '2009-08-30', 84, 'https://www.gutenberg.org/ebooks/29855', 'en', 5413), +(10515, 'The Lily and the Cross: A Tale of Acadia', 'De Mille, James', '2010-01-27', 9, 'https://www.gutenberg.org/ebooks/31096', 'en', 5414), +(10516, 'Widger\'s Quotations from the Project Gutenberg Editions of Paine\'s Writings on Mark Twain', 'Paine, Albert Bigelow', '2003-01-01', 3, 'https://www.gutenberg.org/ebooks/3643', 'en', 1026), +(10517, 'Sioux Indian Courts\r\nAn address delivered by Doane Robinson before the South Dakota Bar Association, at Pierre, South Dakota, January 21, 1909', 'Robinson, Doane', '2008-07-10', 87, 'https://www.gutenberg.org/ebooks/26021', 'en', 5415), +(10518, 'Admiral Peters\nOdd Craft, Part 14.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/12214', 'en', 1902), +(10519, 'A Woman In China', 'Gaunt, Mary', '2017-03-21', 21, 'https://www.gutenberg.org/ebooks/54401', 'en', 2773), +(10520, 'Discours par Maximilien Robespierre — 21 octobre 1789-1er juillet 1794', 'Robespierre, Maximilien', '2009-10-01', 14, 'https://www.gutenberg.org/ebooks/30144', 'fr', 1536), +(10521, 'Essays and Tales', 'Addison, Joseph', '2001-09-01', 53, 'https://www.gutenberg.org/ebooks/2791', 'en', 5416), +(10522, 'A Woman Intervenes', 'Barr, Robert', '2005-11-01', 27, 'https://www.gutenberg.org/ebooks/9379', 'en', 61), +(10523, 'Sunlight Patch', 'Harris, Credo Fitch', '2009-05-29', 22, 'https://www.gutenberg.org/ebooks/28987', 'en', 1996), +(10524, 'A Vagabond Journey Around the World: A Narrative of Personal Experience', 'Franck, Harry Alverson', '2018-03-13', 26, 'https://www.gutenberg.org/ebooks/56732', 'en', 819), +(10525, 'Characters from Life; Or, Moral Hints. In Verse', 'Parkerson, James', '2010-05-06', 7, 'https://www.gutenberg.org/ebooks/32277', 'en', 54), +(10526, 'Archaic England\r\nAn Essay in Deciphering Prehistory from Megalithic Monuments, Earthworks, Customs, Coins, Place-names, and Faerie Superstitions', 'Bayley, Harold', '2013-01-05', 51, 'https://www.gutenberg.org/ebooks/41785', 'en', 2011), +(10527, 'The Quest\nThe authorized translation from the Dutch of De kleine Johannes', 'Eeden, Frederik van', '2012-09-04', 16, 'https://www.gutenberg.org/ebooks/40657', 'en', 5417), +(10528, 'The Power of Concentration', 'Dumont, Theron Q.', '1998-12-01', 375, 'https://www.gutenberg.org/ebooks/1570', 'en', 5418), +(10529, 'The Minstrel\nA Collection of Poems', 'Amott, Lennox', '2008-01-15', 7, 'https://www.gutenberg.org/ebooks/24312', 'en', 8), +(10530, 'Abducted to Oz', 'Dulabone, Chris', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10127', 'en', 2203), +(10531, 'The Honor of the Name', 'Gaboriau, Emile', '2006-04-13', 62, 'https://www.gutenberg.org/ebooks/4002', 'en', 128), +(10532, 'Harper\'s Young People, April 12, 1881\nAn Illustrated Weekly', 'Various', '2014-04-06', 12, 'https://www.gutenberg.org/ebooks/45325', 'en', 479), +(10533, 'Life\'s Progress Through the Passions; Or, The Adventures of Natura', 'Haywood, Eliza Fowler', '2005-03-24', 21, 'https://www.gutenberg.org/ebooks/15455', 'en', 1529), +(10534, 'Miau', 'Pérez Galdós, Benito', '2016-06-22', 33, 'https://www.gutenberg.org/ebooks/52392', 'es', 1353), +(10535, 'An Introduction to the Industrial and Social History of England', 'Cheyney, Edward Potts', '2007-06-01', 25, 'https://www.gutenberg.org/ebooks/21660', 'en', 5419), +(10536, 'Mother Goose\'s Teddy Bears', 'Cavally, Frederick Leopold', '2016-10-09', 11, 'https://www.gutenberg.org/ebooks/53240', 'en', 5420), +(10537, 'The Crest-Wave of Evolution\r\nA Course of Lectures in History, Given to the Graduates\' Class in the Raja-Yoga College, Point Loma, in the College-Year 1918-19', 'Morris, Kenneth', '2005-01-04', 29, 'https://www.gutenberg.org/ebooks/14587', 'en', 746), +(10538, 'Popery! As It Was and as It Is. Also, Auricular Confession; And Popish Nunneries', 'Hogan, William', '2011-10-10', 39, 'https://www.gutenberg.org/ebooks/37705', 'en', 5421), +(10539, 'Canada for Gentlemen', 'Cockburn, James Seton', '2004-10-01', 4, 'https://www.gutenberg.org/ebooks/6755', 'en', 2655), +(10540, 'Organization: How Armies are Formed for War', 'Foster, Hubert', '2017-06-06', 3, 'https://www.gutenberg.org/ebooks/54859', 'en', 5422), +(10541, 'The Exploits and Triumphs, in Europe, of Paul Morphy, the Chess Champion', 'Edge, Frederick Milnes', '2010-11-01', 69, 'https://www.gutenberg.org/ebooks/34180', 'en', 3733), +(10542, 'Fünf Erzählungen\nMit 28 Holzschnitten von Frans Masereel', 'Verhaeren, Emile', '2014-11-27', 10, 'https://www.gutenberg.org/ebooks/47472', 'de', 5423), +(10543, 'Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad\nThe Terminal Station - West', 'Cresson, Benjamin Franklin', '2005-12-13', 10, 'https://www.gutenberg.org/ebooks/17302', 'en', 5424), +(10544, 'Diary in America, Series One', 'Marryat, Frederick', '2007-10-21', 27, 'https://www.gutenberg.org/ebooks/23137', 'en', 5425), +(10545, 'Der letzte Hansbur: Ein Bauernroman aus der Lüneburger Heide', 'Löns, Hermann', '2016-03-21', 7, 'https://www.gutenberg.org/ebooks/51517', 'de', 253), +(10546, 'Lucretia — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7687', 'en', 1079), +(10547, 'Leçons de Géométrie Supérieure\nProfessées en 1905-1906', 'Vessiot, Ernest', '2011-01-24', 6, 'https://www.gutenberg.org/ebooks/35052', 'fr', 5426), +(10548, 'Four Months in Libby and the Campaign Against Atlanta', 'Johnston, I. N. (Isaac N.)', '2017-01-28', 15, 'https://www.gutenberg.org/ebooks/54065', 'en', 444), +(10549, 'The English Utilitarians, Volume 1 (of 3)', 'Stephen, Leslie', '2008-12-23', 50, 'https://www.gutenberg.org/ebooks/27597', 'en', 5427), +(10550, 'Le Tour du Monde; Une peuplade Malgache\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-11-21', 23, 'https://www.gutenberg.org/ebooks/30520', 'fr', 1673), +(10551, 'The Bride of the Tomb, and Queenie\'s Terrible Secret', 'Miller, Alex. McVeigh, Mrs.', '2013-02-17', 16, 'https://www.gutenberg.org/ebooks/42100', 'en', 348), +(10552, 'Defenders of Democracy\r\nContributions from representative men and women of letters and other arts from our allies and our own country, edited by the Gift book committee of the Militia of Mercy', 'Militia of Mercy (U.S.). Gift Book Committee', '2002-05-01', 28, 'https://www.gutenberg.org/ebooks/3227', 'en', 5428), +(10553, 'Songs from the Southland', NULL, '2008-08-28', 5, 'https://www.gutenberg.org/ebooks/26445', 'en', 178), +(10554, 'The World Order of Bahá\'u\'lláh', 'Shoghi, Effendi', '2006-09-18', 19, 'https://www.gutenberg.org/ebooks/19298', 'en', 5429), +(10555, 'Landmarks in French Literature', 'Strachey, Lytton', '2004-06-01', 42, 'https://www.gutenberg.org/ebooks/12670', 'en', 1765), +(10556, 'Das blaue Fenster: Novellen', 'Salus, Hugo', '2005-11-22', 13, 'https://www.gutenberg.org/ebooks/17130', 'de', 16), +(10557, 'The Crooked Man and Other Rhymes', 'Anonymous', '2007-11-03', 13, 'https://www.gutenberg.org/ebooks/23305', 'en', 343), +(10558, 'The Adventure of Living : a Subjective Autobiography', 'Strachey, John St. Loe', '2004-09-01', 10, 'https://www.gutenberg.org/ebooks/6567', 'en', 5430), +(10559, 'My Garden Acquaintance', 'Lowell, James Russell', '1997-04-01', 10, 'https://www.gutenberg.org/ebooks/880', 'en', 871), +(10560, 'La Tête-Plate', 'Chevalier, H. Emile (Henri Emile)', '2006-07-30', 15, 'https://www.gutenberg.org/ebooks/18944', 'fr', 5431), +(10561, 'The Woman Gives: A Story of Regeneration', 'Johnson, Owen', '2014-12-12', 17, 'https://www.gutenberg.org/ebooks/47640', 'en', 5432), +(10562, 'Punch, or The London Charivari, Volume 107, November 10th, 1894', 'Various', '2014-09-06', 3, 'https://www.gutenberg.org/ebooks/46792', 'en', 134), +(10563, 'Queer Stories for Boys and Girls', 'Eggleston, Edward', '2006-11-22', 16, 'https://www.gutenberg.org/ebooks/19896', 'en', 179), +(10564, 'Rubáiyát of Omar Khayyam, Rendered into English Verse', 'Omar Khayyam', '2011-02-12', 88, 'https://www.gutenberg.org/ebooks/35260', 'en', 5433), +(10565, 'Sanguines', 'Louÿs, Pierre', '2016-04-10', 19, 'https://www.gutenberg.org/ebooks/51725', 'fr', 259), +(10566, 'Love Among the Chickens', 'Wodehouse, P. G. (Pelham Grenville)', '2003-03-01', 224, 'https://www.gutenberg.org/ebooks/3829', 'en', 95), +(10567, 'Combat', 'Reynolds, Mack', '2009-12-19', 69, 'https://www.gutenberg.org/ebooks/30712', 'en', 26), +(10568, 'The Orphan\'s Home Mittens, and George\'s Account of the Battle of Roanoke Island\r\nBeing the Sixth and Last Book of the Series', 'Fanny, Aunt', '2015-03-30', 10, 'https://www.gutenberg.org/ebooks/48608', 'en', 388), +(10569, 'Rakontoj', 'Arbes, Jakub', '2006-04-14', 13, 'https://www.gutenberg.org/ebooks/18178', 'eo', 61), +(10570, 'British Folk-Music Settings Nr. 4, \"Shepherd\'s Hey\"', NULL, '2004-10-03', 44, 'https://www.gutenberg.org/ebooks/13590', 'en', 5434), +(10571, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 05 (of 17)', NULL, '2017-02-28', 38, 'https://www.gutenberg.org/ebooks/54257', 'en', 3756), +(10572, 'Die Frauenfrage im Mittelalter', 'Bücher, Karl', '2019-08-05', 515, 'https://www.gutenberg.org/ebooks/60062', 'de', 5435), +(10573, 'Athelstane Ford', 'Upward, Allen', '2008-09-21', 21, 'https://www.gutenberg.org/ebooks/26677', 'en', 323), +(10574, 'The American Missionary — Volume 35, No. 3, March 1881', 'Various', '2017-08-19', 1, 'https://www.gutenberg.org/ebooks/55385', 'en', 562), +(10575, 'In the Days of My Youth: A Novel', 'Edwards, Amelia Ann Blanford', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12442', 'en', 560), +(10576, 'The Sorrows of Satan\r\nor, The Strange Experience of One Geoffrey Tempest, Millionaire: A Romance', 'Corelli, Marie', '2013-03-14', 199, 'https://www.gutenberg.org/ebooks/42332', 'en', 5436), +(10577, 'The Man-Made World; Or, Our Androcentric Culture', 'Gilman, Charlotte Perkins', '2002-01-01', 102, 'https://www.gutenberg.org/ebooks/3015', 'en', 1650), +(10578, 'The Boy Scouts in A Trapper\'s Camp', 'Burgess, Thornton W. (Thornton Waldo)', '2010-04-18', 16, 'https://www.gutenberg.org/ebooks/32045', 'en', 153), +(10579, 'Memorie: Edizione diplomatica dall\'autografo definitivo', 'Garibaldi, Giuseppe', '2018-02-05', 36, 'https://www.gutenberg.org/ebooks/56500', 'it', 488), +(10580, 'The Hour and the Man, An Historical Romance', 'Martineau, Harriet', '2008-01-31', 43, 'https://www.gutenberg.org/ebooks/24120', 'en', 98), +(10581, 'The Persian Literature, Comprising The Shah Nameh, The Rubaiyat, The Divan, and The Gulistan, Volume 1', 'Firdawsi', '2003-11-01', 113, 'https://www.gutenberg.org/ebooks/10315', 'en', 5437), +(10582, 'Just Irish', 'Loomis, Charles Battell', '2012-08-09', 8, 'https://www.gutenberg.org/ebooks/40465', 'en', 117), +(10583, 'Döderlein\'s Hand-book of Latin Synonymes', 'Doederlein, Ludwig von', '2010-07-18', 43, 'https://www.gutenberg.org/ebooks/33197', 'en', 5438), +(10584, 'Miss Civilization: A Comedy in One Act', 'Davis, Richard Harding', '1999-05-01', 16, 'https://www.gutenberg.org/ebooks/1742', 'en', 5439), +(10585, 'Tappan\'s Burro, and Other Stories', 'Grey, Zane', '2019-05-19', 82, 'https://www.gutenberg.org/ebooks/59548', 'en', 112), +(10586, 'Best Short Stories', NULL, '2005-04-20', 65, 'https://www.gutenberg.org/ebooks/15667', 'en', 311), +(10587, 'Reflections upon Two Pamphlets Lately Published\r\nOne called, A Letter from Monsieur de Cros, concerning the Memoirs of Christendom, and the Other, An Answer to that Letter.', 'Anonymous', '2010-06-18', 12, 'https://www.gutenberg.org/ebooks/32879', 'en', 5440), +(10588, 'Ernest Bracebridge: School Days', 'Kingston, William Henry Giles', '2007-05-15', 54, 'https://www.gutenberg.org/ebooks/21452', 'en', 1655), +(10589, 'Tom Swift and His Motor-Cycle; Or, Fun and Adventures on the Road', 'Appleton, Victor', '2003-07-01', 112, 'https://www.gutenberg.org/ebooks/4230', 'en', 5441), +(10590, 'The Pony Rider Boys in New England; or, An Exciting Quest in the Maine Wilderness', 'Patchin, Frank Gee', '2014-03-12', 21, 'https://www.gutenberg.org/ebooks/45117', 'en', 141), +(10591, 'San Francisco in Ruins\r\nA Pictorial History of Eight Score Photo-Views of the Earthquake Effects, Flames\' Havoc, Ruins Everywhere, Relief Camps', NULL, '2011-09-26', 17, 'https://www.gutenberg.org/ebooks/37537', 'en', 5442), +(10592, 'Napoleon the Little', 'Hugo, Victor', '2007-02-14', 71, 'https://www.gutenberg.org/ebooks/20580', 'en', 2889), +(10593, 'Poems', 'Cook, Clarence', '2016-09-17', 2, 'https://www.gutenberg.org/ebooks/53072', 'en', 178), +(10594, 'Almost a Woman', 'Wood-Allen, Mary', '2010-04-02', 38, 'https://www.gutenberg.org/ebooks/31861', 'en', 5443), +(10595, 'Laura Secord, the heroine of 1812: A Drama; and Other Poems', 'Curzon, Sarah Anne', '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/7228', 'en', 5444), +(10596, 'Une journée à Pise : guide historique, artistique et commercial', 'Destantins Anthony, Eve', '2009-01-27', 11, 'https://www.gutenberg.org/ebooks/27904', 'fr', 5445), +(10597, 'Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves\nSouth Carolina Narratives, Part 4', 'United States. Work Projects Administration', '2009-02-24', 23, 'https://www.gutenberg.org/ebooks/28170', 'en', 5446), +(10598, 'Little Bo-Peep: A Nursery Rhyme Picture Book', 'Brooke, L. Leslie (Leonard Leslie)', '2007-11-23', 37, 'https://www.gutenberg.org/ebooks/23598', 'en', 343), +(10599, 'The Chronicles of Clovis', 'Saki', '2003-01-01', 153, 'https://www.gutenberg.org/ebooks/3688', 'en', 179), +(10600, 'The World English Bible (WEB): Micah', 'Anonymous', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8260', 'en', 5447), +(10601, 'Thursday Evening: A Comedy in One Act', 'Morley, Christopher', '2016-05-03', 7, 'https://www.gutenberg.org/ebooks/51984', 'en', 427), +(10602, 'Avuttomia: Kertomus', 'Lassila, Maiju', '2015-06-06', 22, 'https://www.gutenberg.org/ebooks/49147', 'fi', 175), +(10603, 'The Irish Penny Journal, Vol. 1 No. 50, June 12, 1841', 'Various', '2017-09-10', 3, 'https://www.gutenberg.org/ebooks/55518', 'en', 81), +(10604, 'Black Beauty - The Autobiography of a Horse', 'Sewell, Anna', '2006-10-28', 20, 'https://www.gutenberg.org/ebooks/19637', 'en', 1287), +(10605, 'The Librarian at Play', 'Pearson, Edmund Lester', '2014-09-22', 12, 'https://www.gutenberg.org/ebooks/46933', 'en', 5448), +(10606, 'The Mirror of Taste, and Dramatic Censor, Vol. I, No. 6, June 1810', NULL, '2008-11-03', 7, 'https://www.gutenberg.org/ebooks/27138', 'en', 5140), +(10607, 'The Varieties of Religious Experience: A Study in Human Nature', 'James, William', '1996-08-01', 909, 'https://www.gutenberg.org/ebooks/621', 'en', 5449), +(10608, 'Back o\' the Moon, and other stories', 'Onions, Oliver', '2015-01-27', 32, 'https://www.gutenberg.org/ebooks/48095', 'en', 409), +(10609, 'Charles Tyrrell; or, The Bitter Blood. Volumes I and II', 'James, G. P. R. (George Payne Rainsford)', '2016-01-06', 10, 'https://www.gutenberg.org/ebooks/50856', 'en', 1335), +(10610, 'Narrative of Services in the Liberation of Chili, Peru and Brazil,\nfrom Spanish and Portuguese Domination, Volume 1', 'Dundonald, Thomas Cochrane, Earl of', '2005-02-05', 37, 'https://www.gutenberg.org/ebooks/14914', 'en', 5450), +(10611, 'Seeing Europe with Famous Authors, Volume 1\r\nGreat Britain and Ireland, part 1', NULL, '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10588', 'en', 117), +(10612, 'The immigration offices and statistics from 1857 to 1903\r\nInformation for the Universal Exhibition of St. Louis (U.S.A.)', 'Argentina. Ministerio de Agricultura', '2012-03-23', 2, 'https://www.gutenberg.org/ebooks/39230', 'en', 5451), +(10613, 'Toni, the Little Woodcarver', 'Spyri, Johanna', '2004-11-23', 44, 'https://www.gutenberg.org/ebooks/14128', 'en', 5452), +(10614, 'Behold this Dreamer', 'Bartlett, Elizabeth', '2018-10-30', 13, 'https://www.gutenberg.org/ebooks/58207', 'en', 994), +(10615, 'History of Orrin Pierce', 'American Sunday-School Union', '2014-01-13', 9, 'https://www.gutenberg.org/ebooks/44658', 'en', 470), +(10616, 'Välskärin kertomuksia 2\nKapinassa omaa onneaan vastaan. Noita-akka. Mainiemen linna.', 'Topelius, Zacharias', '2011-05-30', 20, 'https://www.gutenberg.org/ebooks/36278', 'fi', 5453), +(10617, 'A Bed of Roses', 'George, W. L.', '2010-08-26', 113, 'https://www.gutenberg.org/ebooks/33538', 'en', 5454), +(10618, 'British Popular Customs, Present and Past\r\nIllustrating the Social and Domestic Manners of the People. Arranged According to the Calendar of the Year.', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2019-02-02', 15, 'https://www.gutenberg.org/ebooks/58809', 'en', 5226), +(10619, 'A Woman\'s Journey through the Philippines\nOn a Cable Ship that Linked Together the Strange Lands Seen En Route', 'Russel, Florence Kimball', '2007-03-26', 21, 'https://www.gutenberg.org/ebooks/20913', 'en', 4048), +(10620, 'The Old Glade (Forbes\'s) Road (Pennsylvania State Road)', 'Hulbert, Archer Butler', '2012-10-20', 10, 'https://www.gutenberg.org/ebooks/41118', 'en', 5455), +(10621, 'Herbert Spencer', 'Thomson, J. Arthur (John Arthur)', '2012-02-28', 13, 'https://www.gutenberg.org/ebooks/39002', 'en', 5456), +(10622, 'The Gold Hunters: A Story of Life and Adventure in the Hudson Bay Wilds', 'Curwood, James Oliver', '2004-03-01', 47, 'https://www.gutenberg.org/ebooks/11668', 'en', 5457), +(10623, 'Helena\'s Path', 'Hope, Anthony', '2011-07-27', 13, 'https://www.gutenberg.org/ebooks/36876', 'en', 1902), +(10624, 'Tiikerikissa: Seikkailuja kaukaisessa Lännessä', 'Aimard, Gustave', '2018-09-03', 13, 'https://www.gutenberg.org/ebooks/57841', 'fi', 5458), +(10625, 'The Deluge: An Historical Novel of Poland, Sweden, and Russia. Vol. 1 (of 2)', 'Sienkiewicz, Henryk', '2011-08-24', 57, 'https://www.gutenberg.org/ebooks/37198', 'en', 5459), +(10626, 'Andrew Jackson\'s Hermitage', 'Caldwell, Mary French', '2018-10-05', 5, 'https://www.gutenberg.org/ebooks/58035', 'en', 5460), +(10627, 'Renaissance in Italy, Volume 2 (of 7)\nThe Revival of Learning', 'Symonds, John Addington', '2013-01-26', 14, 'https://www.gutenberg.org/ebooks/41924', 'en', 5461), +(10628, 'Sermons for the Day', 'Hoare, Edward', '2018-04-17', 6, 'https://www.gutenberg.org/ebooks/56993', 'en', 2386), +(10629, 'Now We Are Three', 'Hensley, Joe L.', '2009-07-02', 34, 'https://www.gutenberg.org/ebooks/29290', 'en', 26), +(10630, '13 Sonetos', 'Forte, Arnaldo', '2007-09-19', 23, 'https://www.gutenberg.org/ebooks/22678', 'pt', 8), +(10631, 'Blackwood\'s Edinburgh Magazine, Volume 56, Number 349, November, 1844', 'Various', '2009-03-16', 15, 'https://www.gutenberg.org/ebooks/28342', 'en', 274), +(10632, 'Mendelssohn and Certain Masterworks', 'Peyser, Herbert F. (Herbert Francis)', '2015-10-19', 14, 'https://www.gutenberg.org/ebooks/50258', 'en', 5462), +(10633, 'Punch, or the London Charivari, Volume 152, January 3, 1917', 'Various', '2004-10-31', 7, 'https://www.gutenberg.org/ebooks/13903', 'en', 134), +(10634, 'Confessions of an Etonian', 'I. E. M.', '2006-09-29', 21, 'https://www.gutenberg.org/ebooks/19405', 'en', 5463), +(10635, 'L.P.M. : The End of the Great War', 'Barney, J. Stewart (John Stewart)', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/7826', 'en', 579), +(10636, 'The Bible, King James version, Book 52: 1 Thessalonians', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8052', 'en', 5464), +(10637, 'Are We of Israel?', 'Reynolds, George', '2015-07-06', 12, 'https://www.gutenberg.org/ebooks/49375', 'en', 3434), +(10638, 'Trent\'s Last Case', 'Bentley, E. C. (Edmund Clerihew)', '2001-03-01', 146, 'https://www.gutenberg.org/ebooks/2568', 'en', 5465), +(10639, 'Life of Johnson, Volume 3\r\n1776-1780', 'Boswell, James', '2005-10-01', 35, 'https://www.gutenberg.org/ebooks/9180', 'en', 5466), +(10640, 'Ballads', 'Stevenson, Robert Louis', '1996-01-01', 91, 'https://www.gutenberg.org/ebooks/413', 'en', 4390), +(10641, 'Reading the Weather', 'Longstreth, Thomas Morris', '2012-04-17', 9, 'https://www.gutenberg.org/ebooks/39466', 'en', 5467), +(10642, 'The Land of Bondage: A Romance', 'Bloundelle-Burton, John', '2016-09-02', 18, 'https://www.gutenberg.org/ebooks/52957', 'en', 1380), +(10643, 'Mémoires de Mademoiselle Mars (volume I)\n(de la Comédie Française)', 'Mars, Mademoiselle', '2008-04-11', 24, 'https://www.gutenberg.org/ebooks/25039', 'fr', 3085), +(10644, 'La guerre', 'Mauclair, Camille', '2018-06-29', 11, 'https://www.gutenberg.org/ebooks/57419', 'fr', 5468), +(10645, 'Venetian kauppias', 'Shakespeare, William', '2014-02-05', 13, 'https://www.gutenberg.org/ebooks/44832', 'fi', 5469), +(10646, 'A Gentleman of Courage: A Novel of the Wilderness', 'Curwood, James Oliver', '2017-01-04', 44, 'https://www.gutenberg.org/ebooks/53885', 'en', 1849), +(10647, 'Europe—Whither Bound?\nBeing Letters of Travel from the Capitals of Europe in the Year 1921', 'Graham, Stephen', '2007-05-16', 40, 'https://www.gutenberg.org/ebooks/21499', 'en', 1408), +(10648, 'Progetto filosofico di una completa riforma del culto e dell\'educazione politico-morale del popolo ebreo, Tomo II (of 2)', 'Fernando, Aron', '2019-05-23', 5, 'https://www.gutenberg.org/ebooks/59583', 'it', 851), +(10649, 'In Ancient Albemarle', 'Albertson, Catherine', '2008-06-16', 34, 'https://www.gutenberg.org/ebooks/25805', 'en', 5470), +(10650, 'PoPHILO: Popular Philosophy', 'Dom', '2004-03-01', 29, 'https://www.gutenberg.org/ebooks/5329', 'en', 3769), +(10651, 'The Trials of a Country Parson', 'Jessopp, Augustus', '2018-12-10', 6, 'https://www.gutenberg.org/ebooks/58451', 'en', 5471), +(10652, 'What a Young Husband Ought to Know', 'Stall, Sylvanus', '2010-09-29', 85, 'https://www.gutenberg.org/ebooks/33960', 'en', 5472), +(10653, 'The Boy Scouts Book of Stories', NULL, '2009-05-08', 45, 'https://www.gutenberg.org/ebooks/28726', 'en', 179), +(10654, 'Criticisms on \"The Origin of Species\"\r\nFrom \'The Natural History Review\', 1864', 'Huxley, Thomas Henry', '2001-11-01', 16, 'https://www.gutenberg.org/ebooks/2930', 'en', 5473), +(10655, 'The Theory and Policy of Labour Protection', 'Schäffle, A. (Albert)', '2010-11-20', 9, 'https://www.gutenberg.org/ebooks/34379', 'en', 5474), +(10656, 'Philosophic Nights in Paris\r\nBeing selections from Promenades Philosophiques', 'Gourmont, Remy de', '2014-09-03', 25, 'https://www.gutenberg.org/ebooks/46759', 'en', 779), +(10657, 'The Great Round World and What Is Going On In It, Vol. 1, No. 48, October 7, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-09', 8, 'https://www.gutenberg.org/ebooks/16029', 'en', 1), +(10658, 'Seeing Europe with Famous Authors, Volume 8\r\nItaly, Sicily, and Greece, Part Two', NULL, '2006-08-16', 18, 'https://www.gutenberg.org/ebooks/19061', 'en', 4713), +(10659, 'L\'art de la mise en scène: Essai d\'esthétique théâtrale', 'Becq de Fouquières, L. (Louis)', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/12489', 'fr', 5475), +(10660, 'Speculations from Political Economy', 'Clarke, Charles Baron', '2005-07-01', 17, 'https://www.gutenberg.org/ebooks/8436', 'en', 1745), +(10661, 'Physiologie de l\'amour moderne', 'Bourget, Paul', '2005-10-08', 28, 'https://www.gutenberg.org/ebooks/16815', 'fr', 5136), +(10662, 'The National Geographic Magazine, Vol. I., No. 1, October, 1888', 'Various', '2015-08-15', 46, 'https://www.gutenberg.org/ebooks/49711', 'en', 3550), +(10663, 'A Publisher\'s Confession', NULL, '2017-06-11', 5, 'https://www.gutenberg.org/ebooks/54892', 'en', 5476), +(10664, 'The Prairie Child', 'Stringer, Arthur', '2009-04-06', 21, 'https://www.gutenberg.org/ebooks/28514', 'en', 5477), +(10665, 'English and Scottish Ballads, Volume 8 (of 8)', NULL, '2013-09-27', 12, 'https://www.gutenberg.org/ebooks/43825', 'en', 5478), +(10666, 'The Color Line: A Brief in Behalf of the Unborn', 'Smith, William Benjamin', '2011-01-28', 16, 'https://www.gutenberg.org/ebooks/35099', 'en', 180), +(10667, 'Theosophy and Life\'s Deeper Problems\r\nBeing the Four Convention Lectures Delivered in Bombay at the Fortieth Anniversary of the Theosophical Society, December, 1915', 'Besant, Annie', '2017-11-12', 17, 'https://www.gutenberg.org/ebooks/55940', 'en', 746), +(10668, 'De Lotgevallen van Tom Sawyer', 'Twain, Mark', '2006-05-12', 52, 'https://www.gutenberg.org/ebooks/18381', 'nl', 5479), +(10669, 'Lohilastuja ja kalakaskuja', 'Aho, Juhani', '2004-10-17', 29, 'https://www.gutenberg.org/ebooks/13769', 'fi', 5480), +(10670, 'Dutch and English on the Hudson: A Chronicle of Colonial New York', 'Goodwin, Maud Wilder', '2011-01-15', 11, 'https://www.gutenberg.org/ebooks/34977', 'en', 5481), +(10671, 'Life on the Mississippi', 'Twain, Mark', '2004-07-10', 1049, 'https://www.gutenberg.org/ebooks/245', 'en', 5482), +(10672, 'Love After Marriage; and Other Stories of the Heart', 'Hentz, Caroline Lee', '2013-06-23', 19, 'https://www.gutenberg.org/ebooks/43019', 'en', 61), +(10673, 'The House of Atreus; Being the Agamemnon, the Libation bearers, and the Furies', 'Aeschylus', '2005-08-01', 128, 'https://www.gutenberg.org/ebooks/8604', 'en', 2254), +(10674, 'Weird Tales, Vol. 2 (of 2)', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2010-02-28', 104, 'https://www.gutenberg.org/ebooks/31439', 'en', 5483), +(10675, 'Prose (1880-1890)', 'Pascarella, Cesare', '2015-07-25', 16, 'https://www.gutenberg.org/ebooks/49523', 'it', 191), +(10676, 'The Postal Service of the United States in Connection with the Local History of Buffalo', 'Blossom, Thomas', '2007-09-30', 5, 'https://www.gutenberg.org/ebooks/22812', 'en', 5484), +(10677, 'A Compilation on Bahá\'í Education', 'Universal House of Justice', '2006-09-15', 17, 'https://www.gutenberg.org/ebooks/19253', 'en', 5485), +(10678, 'Histoire des Musulmans d\'Espagne, t. 1/4\r\njusqu\'à la conquête de l\'Andalouisie par les Almoravides (711-1100)', 'Dozy, Reinhart Pieter Anne', '2012-05-08', 21, 'https://www.gutenberg.org/ebooks/39654', 'fr', 293), +(10679, 'Punch, or the London Charivari, Vol. 62, Feb 3, 1872', 'Various', '2012-02-08', 10, 'https://www.gutenberg.org/ebooks/38786', 'en', 134), +(10680, 'The History of Don Quixote, Volume 2, Part 24', 'Cervantes Saavedra, Miguel de', '2004-07-22', 6, 'https://www.gutenberg.org/ebooks/5927', 'en', 3761), +(10681, 'U.S. Copyright Renewals, 1950 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11802', 'en', 4170), +(10682, 'Beethoven: Eine Phantasie', 'Révész, Béla', '2016-06-17', 8, 'https://www.gutenberg.org/ebooks/52359', 'de', 5486), +(10683, 'The Housekeeper\'s Valuable Present; Or, Lady\'s Closet Companion\r\nBeing a New and Complete Art of Preparing Confects, According to Modern Practice', 'Abbot, Robert, cook', '2019-01-09', 52, 'https://www.gutenberg.org/ebooks/58663', 'en', 5487), +(10684, 'Punch, or the London Charivari, Volume 159, October 27, 1920', 'Various', '2007-03-08', 27, 'https://www.gutenberg.org/ebooks/20779', 'en', 134), +(10685, 'Europe from a Motor Car', 'Richardson, Russell', '2012-12-09', 8, 'https://www.gutenberg.org/ebooks/41588', 'en', 1408), +(10686, 'Les quatre cavaliers de l\'apocalypse', 'Blasco Ibáñez, Vicente', '2012-04-20', 26, 'https://www.gutenberg.org/ebooks/39492', 'fr', 5488), +(10687, 'On Foreign Service; Or, The Santa Cruz Revolution', 'Jeans, T. T. (Thomas Tendron)', '2014-06-07', 8, 'https://www.gutenberg.org/ebooks/45914', 'en', 3039), +(10688, 'A Scout of To-day', 'Hornibrook, Isabel', '2012-01-10', 14, 'https://www.gutenberg.org/ebooks/38540', 'en', 2994), +(10689, 'Bragelonnen varakreivi eli Muskettisoturien viimeiset urotyöt I\nHistoriallinen romaani Ludvig XIV:n hovista', 'Dumas, Alexandre', '2017-01-02', 18, 'https://www.gutenberg.org/ebooks/53871', 'fi', 323), +(10690, 'The Life of Charlemagne (Charles the Great)', 'Hodgkin, Thomas', '2019-05-22', 58, 'https://www.gutenberg.org/ebooks/59577', 'en', 3875), +(10691, 'Topsy-Turvy Land: Arabia Pictured for Children', 'Zwemer, Amy E.', '2005-04-19', 19, 'https://www.gutenberg.org/ebooks/15658', 'en', 5489), +(10692, 'International Short Stories: English', NULL, '2010-06-16', 119, 'https://www.gutenberg.org/ebooks/32846', 'en', 409), +(10693, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 2 of 9]', 'Shakespeare, William', '2014-03-13', 59, 'https://www.gutenberg.org/ebooks/45128', 'en', 1088), +(10694, 'The Cochineal', 'Anonymous', '2011-09-22', 16, 'https://www.gutenberg.org/ebooks/37508', 'en', 388), +(10695, 'The Variation of Animals and Plants Under Domestication, Vol. I.', 'Darwin, Charles', '2008-03-27', 39, 'https://www.gutenberg.org/ebooks/24923', 'en', 91), +(10696, 'Old Farm Fairies: A Summer Campaign In Brownieland Against King Cobweaver\'s Pixies', 'McCook, Henry C. (Henry Christopher)', '2010-09-25', 17, 'https://www.gutenberg.org/ebooks/33994', 'en', 5490), +(10697, 'La Faute de l\'abbé Mouret', 'Zola, Émile', '2004-09-01', 26, 'https://www.gutenberg.org/ebooks/6558', 'fr', 2118), +(10698, 'The Witch of Prague: A Fantastic Tale', 'Crawford, F. Marion (Francis Marion)', '2006-04-13', 61, 'https://www.gutenberg.org/ebooks/3816', 'en', 5491), +(10699, 'Rural Life and the Rural School', 'Kennedy, Joseph', '2009-08-03', 8, 'https://www.gutenberg.org/ebooks/29600', 'en', 2503), +(10700, 'Pioneer Life in Illinois', 'Perryman, F. M.', '2015-04-05', 6, 'https://www.gutenberg.org/ebooks/48637', 'en', 5492), +(10701, 'Songs of Angus and More Songs of Angus', 'Jacob, Violet', '2006-03-06', 20, 'https://www.gutenberg.org/ebooks/17933', 'en', 5493), +(10702, 'The Lock and Key Library: The Most Interesting Stories of All Nations: American', NULL, '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9510', 'en', 179), +(10703, 'Inaugureele Rede\nWaarin wordt Aangetoond dat de Scheikunde met recht een\nplaats verdient onder de Akademische Wetenschappen', 'Gaubius, Hieronymus David', '2006-04-11', 4, 'https://www.gutenberg.org/ebooks/18147', 'nl', 5494), +(10704, 'The Ocean of Theosophy', 'Judge, William Quan', '2017-03-01', 22, 'https://www.gutenberg.org/ebooks/54268', 'en', 746), +(10705, 'Kihlajaiskemut\nNäytelmä 4:ssä näytöksessä', 'Kiljander, Robert', '2006-08-21', 33, 'https://www.gutenberg.org/ebooks/19095', 'fi', 247), +(10706, 'Les lauriers sont coupés', 'Dujardin, Edouard', '2008-09-17', 52, 'https://www.gutenberg.org/ebooks/26648', 'fr', 5495), +(10707, 'French and English furniture\ndistinctive styles and periods described and illustrated', 'Singleton, Esther', '2017-06-07', 6, 'https://www.gutenberg.org/ebooks/54866', 'en', 5496), +(10708, 'Chester Rand; or, The New Path to Fortune', 'Alger, Horatio, Jr.', '2007-10-20', 44, 'https://www.gutenberg.org/ebooks/23108', 'en', 2588), +(10709, 'La vita Italiana nel Risorgimento (1849-1861), parte 3\r\nQuarta serie - Lettere e arti', 'Various', '2016-03-22', 7, 'https://www.gutenberg.org/ebooks/51528', 'it', 4843), +(10710, 'The Man the Martians Made', 'Long, Frank Belknap', '2009-07-17', 38, 'https://www.gutenberg.org/ebooks/29432', 'en', 26), +(10711, 'Het eerste ontwerp voor de bedijking der Zuiderzee, 1848', 'Faddegon, Pieter', '2013-06-09', 12, 'https://www.gutenberg.org/ebooks/42903', 'nl', 5497), +(10712, 'I divoratori: romanzo', 'Vivanti, Annie', '2011-01-16', 18, 'https://www.gutenberg.org/ebooks/34983', 'it', 2586), +(10713, 'The Argosy, Vol. 51, No. 5, May, 1891', 'Various', '2006-05-11', 14, 'https://www.gutenberg.org/ebooks/18375', 'en', 5498), +(10714, 'Mr. Punch\'s History of Modern England, Vol. 4 (of 4).—1892-1914', 'Graves, Charles L. (Charles Larcom)', '2015-03-04', 37, 'https://www.gutenberg.org/ebooks/48405', 'en', 5499), +(10715, 'The Road', 'Sassoon, Siegfried', '2007-12-01', 3, 'https://www.gutenberg.org/ebooks/23934', 'en', 2100), +(10716, 'Mrs. Lirriper\'s Lodgings', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9722', 'en', 4013), +(10717, 'Mr. Honey\'s Tourist Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 19, 'https://www.gutenberg.org/ebooks/3218', 'en', 5219), +(10718, 'An Old Story of My Farming Days Vol. 3 (of 3).\r\n(Ut Mine Stromtid)', 'Reuter, Fritz', '2011-04-13', 13, 'https://www.gutenberg.org/ebooks/35851', 'en', 5500), +(10719, 'Emil Rathenau und das elektrische Zeitalter', 'Pinner, Felix', '2017-07-24', 10, 'https://www.gutenberg.org/ebooks/55188', 'de', 5501), +(10720, 'The Rise of the Dutch Republic — Volume 01: Introduction I', 'Motley, John Lothrop', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/4801', 'en', 3372), +(10721, 'The Standard Cantatas: Their Stories, Their Music, and Their Composers\r\nA Handbook', 'Upton, George P. (George Putnam)', '2010-05-04', 25, 'https://www.gutenberg.org/ebooks/32248', 'en', 5502), +(10722, 'Kehitys-aikana: Tytöistä', 'Topelius, Toini', '2012-02-05', 3, 'https://www.gutenberg.org/ebooks/38772', 'fi', 4426), +(10723, 'A Quarter-Back\'s Pluck: A Story of College Football', 'Chadwick, Lester', '2012-09-05', 8, 'https://www.gutenberg.org/ebooks/40668', 'en', 5503), +(10724, 'The Folk-lore of Plants', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2003-11-01', 69, 'https://www.gutenberg.org/ebooks/10118', 'en', 5504), +(10725, 'America: Being the Latest, and Most Accurate Description of the Nevv VVorld\r\nContaining the Original of the Inhabitants, and the Remarkable Voyages Thither. The Conquest of the Vast Empires of Mexico and Peru, and Other Large Provinces and Territories, with the Several European Plantations in Those Parts. Also Their Cities, Fortresses, Towns, Temples, Mountains, and Rivers. Their Habits, Customs, Manners, and Religions. Their Plants, Beasts, Birds, and Serpents. With an Appendix, Containing, Besides Several Other Considerable Additions, a Brief Survey of What Hath Been Discover\'d of the Unknown South-land and the Arctick Region.', 'Ogilby, John', '2019-06-13', 59, 'https://www.gutenberg.org/ebooks/59745', 'en', 5505), +(10726, 'American Architecture: Studies', 'Schuyler, Montgomery', '2019-01-14', 8, 'https://www.gutenberg.org/ebooks/58697', 'en', 5506), +(10727, 'The Lands of the Saracen\nPictures of Palestine, Asia Minor, Sicily, and Spain', 'Taylor, Bayard', '2004-02-01', 45, 'https://www.gutenberg.org/ebooks/10924', 'en', 2204), +(10728, 'In and Out of Rebel Prisons', 'Cooper, A. (Alonzo)', '2010-04-05', 19, 'https://www.gutenberg.org/ebooks/31895', 'en', 5507), +(10729, 'Almost A Man', 'Wood-Allen, Mary', '2009-06-06', 43, 'https://www.gutenberg.org/ebooks/29056', 'en', 5443), +(10730, 'Beauty: Illustrated Chiefly by an Analysis and Classificatin of Beauty in Woman', 'Walker, Alexander', '2011-02-26', 44, 'https://www.gutenberg.org/ebooks/35409', 'en', 1485), +(10731, 'La Pupille', 'Fagan', '2008-10-07', 10, 'https://www.gutenberg.org/ebooks/26822', 'fr', 5508), +(10732, 'Ensimmäinen rakkaus: Komedia yhdessä näytöksessä', 'Scribe, Eugène', '2014-10-03', 7, 'https://www.gutenberg.org/ebooks/47029', 'fi', 907), +(10733, 'The Rubaiyat of Omar Cayenne', 'Burgess, Gelett', '2009-02-25', 10, 'https://www.gutenberg.org/ebooks/28184', 'en', 5509), +(10734, 'International Conference Held at Washington for the Purpose of Fixing a Prime Meridian and a Universal Day. October, 1884.\nProtocols of the Proceedings', 'International Meridian Conference (1884 : Washington, D.C.)', '2006-02-12', 91, 'https://www.gutenberg.org/ebooks/17759', 'en', 5510), +(10735, 'Scenas da Aldeia', 'Miranda, A. Augusto de', '2010-01-12', 5, 'https://www.gutenberg.org/ebooks/30947', 'pt', 61), +(10736, 'The Plunderers: A Novel', 'Lefevre, Edwin', '2016-05-02', 18, 'https://www.gutenberg.org/ebooks/51970', 'en', 1719), +(10737, 'The World English Bible (WEB), Complete', 'Anonymous', '2005-06-01', 123, 'https://www.gutenberg.org/ebooks/8294', 'en', 1185), +(10738, 'Francisco the Filipino', 'Little, Burtis McGie', '2014-12-29', 10, 'https://www.gutenberg.org/ebooks/47815', 'en', 4796), +(10739, 'Kreikkalaisia satuja: Kirjeissä Suleimalle', 'Calamnius, J. W. (Johan Wiktor)', '2006-06-28', 12, 'https://www.gutenberg.org/ebooks/18711', 'fi', 3412), +(10740, 'L\'Illustration, No. 0071, 4 Juillet 1844', 'Various', '2015-01-24', 4, 'https://www.gutenberg.org/ebooks/48061', 'fr', 150), +(10741, 'The Gypsy Queen\'s Vow', 'Fleming, May Agnes', '2013-08-16', 19, 'https://www.gutenberg.org/ebooks/43489', 'en', 61), +(10742, 'Notes on Life and Letters', 'Conrad, Joseph', '2005-11-01', 6, 'https://www.gutenberg.org/ebooks/9346', 'en', 4965), +(10743, 'Le Chevalier des Touches', 'Barbey d\'Aurevilly, J. (Jules)', '2011-12-16', 25, 'https://www.gutenberg.org/ebooks/38316', 'fr', 5511), +(10744, 'Adaptation', 'Reynolds, Mack', '2008-03-04', 71, 'https://www.gutenberg.org/ebooks/24749', 'en', 2797), +(10745, 'Coward or Hero?', 'Leclerc, Eugène (Dramatist)', '2018-01-14', 6, 'https://www.gutenberg.org/ebooks/56369', 'en', 5512), +(10746, 'Vallankumouksen vyöryssä: Novelli', 'Willman, Elvira', '2005-05-16', 8, 'https://www.gutenberg.org/ebooks/15832', 'fi', 116), +(10747, 'The Queen of Hearts', 'Collins, Wilkie', '1999-10-01', 86, 'https://www.gutenberg.org/ebooks/1917', 'en', 5513), +(10748, 'Beauchamp\'s Career — Volume 7', 'Meredith, George', '2003-09-01', 7, 'https://www.gutenberg.org/ebooks/4459', 'en', 137), +(10749, 'Kutnar, Son of Pic', 'Langford, George', '2019-04-21', 21, 'https://www.gutenberg.org/ebooks/59321', 'en', 5072), +(10750, 'Meta Toluene Sulphonic Acid and Related Compounds', 'Allen, C. F. H. (Charles Francis Hitchcock)', '2018-05-05', 8, 'https://www.gutenberg.org/ebooks/57089', 'en', 5514), +(10751, 'The South American Republics, Part 2 of 2', 'Dawson, Thomas Cleland', '2011-11-07', 37, 'https://www.gutenberg.org/ebooks/37950', 'en', 2894), +(10752, 'Spanish Composition', 'Broomhall, Edith J.', '2011-11-28', 29, 'https://www.gutenberg.org/ebooks/38124', 'es', 5515); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(10753, 'Increasing Human Efficiency in Business\r\nA Contribution to the Psychology of Business', 'Scott, Walter Dill', '1998-05-01', 107, 'https://www.gutenberg.org/ebooks/1319', 'en', 5516), +(10754, 'The Jew and American Ideals', 'Spargo, John', '2007-06-15', 28, 'https://www.gutenberg.org/ebooks/21835', 'en', 5517), +(10755, 'A Grammar of Freethought', 'Cohen, Chapman', '2011-07-28', 39, 'https://www.gutenberg.org/ebooks/36882', 'en', 1191), +(10756, 'El sabor de la tierruca', 'Pereda, José María de', '2016-11-01', 37, 'https://www.gutenberg.org/ebooks/53429', 'es', 1353), +(10757, 'Vignettes of Manhattan; Outlines in Local Color', 'Matthews, Brander', '2012-02-18', 14, 'https://www.gutenberg.org/ebooks/38918', 'en', 112), +(10758, 'The Behavior of the Honey Bee in Pollen Collection', 'Casteel, Dana Brackenridge', '2012-09-19', 17, 'https://www.gutenberg.org/ebooks/40802', 'en', 5518), +(10759, 'The Atlantic Monthly, Volume 17, No. 100, February, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-04-08', 15, 'https://www.gutenberg.org/ebooks/21009', 'en', 1227), +(10760, 'The Injustice to Dou E', 'Guan, Hanqing', '2016-06-08', 4, 'https://www.gutenberg.org/ebooks/52276', 'zh', NULL), +(10761, 'The Luck of the Kid', 'Cullum, Ridgwell', '2019-03-23', 21, 'https://www.gutenberg.org/ebooks/59113', 'en', 1555), +(10762, 'Erik Sparres bästa: En handfull skärgårdshistorier', 'Sparre, Erik', '2018-04-12', 12, 'https://www.gutenberg.org/ebooks/56967', 'sv', 420), +(10763, 'Punch, or the London Charivari, Volume 99, August 9, 1890', 'Various', '2004-07-05', 6, 'https://www.gutenberg.org/ebooks/12825', 'en', 134), +(10764, 'Diary from November 12, 1862, to October 18, 1863', 'Gurowski, Adam', '2009-06-28', 31, 'https://www.gutenberg.org/ebooks/29264', 'en', 444), +(10765, 'The Banner Boy Scouts Afloat; or, The Secret of Cedar Island', 'Warren, George A.', '2006-02-01', 20, 'https://www.gutenberg.org/ebooks/9948', 'en', 550), +(10766, 'Queen Hortense: A Life Picture of the Napoleonic Era', 'Mühlbach, L. (Luise)', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12019', 'en', 5519), +(10767, 'Humoresken (Zweites Bändchen)\r\nWider den Strom. - Die Feuerspritze. - Eine Abendwanderung. - Der alte Schreiber.', 'Eckstein, Ernst', '2015-07-07', 15, 'https://www.gutenberg.org/ebooks/49381', 'de', 138), +(10768, 'The New-York Book of Poetry', NULL, '2013-05-22', 21, 'https://www.gutenberg.org/ebooks/42769', 'en', 5520), +(10769, 'Emma und Bertha oder die Zwillingsschwestern\nEine unterhaltende Erzählung für die Jugend', 'Reinhold, Caroline', '2015-02-14', 9, 'https://www.gutenberg.org/ebooks/48253', 'de', 309), +(10770, 'The Peace of Roaring River', 'Van Schaick, George', '2009-10-28', 27, 'https://www.gutenberg.org/ebooks/30349', 'en', 5521), +(10771, 'The Bay State Monthly — Volume 1, No. 1, January, 1884', 'Various', '2005-10-01', 25, 'https://www.gutenberg.org/ebooks/9174', 'en', 5522), +(10772, 'Rudin: A Novel', 'Turgenev, Ivan Sergeevich', '2004-11-01', 61, 'https://www.gutenberg.org/ebooks/6900', 'en', 5523), +(10773, 'The Poetry of Wales', NULL, '2006-06-06', 13, 'https://www.gutenberg.org/ebooks/18523', 'en', 1208), +(10774, 'Famous Indian Chiefs\r\nTheir Battles, Treaties, Sieges, and Struggles with the Whites for the Possession of America', 'Johnston, Charles H. L. (Charles Haven Ladd)', '2014-12-12', 24, 'https://www.gutenberg.org/ebooks/47647', 'en', 5524), +(10775, 'Deductive Logic', 'Stock, St. George William Joseph', '2004-09-01', 91, 'https://www.gutenberg.org/ebooks/6560', 'en', 4797), +(10776, 'Tom Slade at Black Lake', 'Fitzhugh, Percy Keese', '2006-07-30', 19, 'https://www.gutenberg.org/ebooks/18943', 'en', 2994), +(10777, 'Intentions', 'Wilde, Oscar', '1997-04-01', 218, 'https://www.gutenberg.org/ebooks/887', 'en', 5525), +(10778, 'The Dumpy Books for Children;\nNo. 7. A Flower Book', 'Coybee, Eden', '2007-11-03', 58, 'https://www.gutenberg.org/ebooks/23302', 'en', 5526), +(10779, 'Some Mooted Questions in Reinforced Concrete Design\r\nAmerican Society of Civil Engineers, Transactions, Paper No. 1169, Volume LXX, Dec. 1910', 'Godfrey, Edward', '2005-11-23', 22, 'https://www.gutenberg.org/ebooks/17137', 'en', 5527), +(10780, 'Die alte Krone: Ein Roman aus dem Spreewald', 'Keller, Paul', '2016-04-10', 15, 'https://www.gutenberg.org/ebooks/51722', 'de', 549), +(10781, 'The Twins of Suffering Creek', 'Cullum, Ridgwell', '2009-08-08', 11, 'https://www.gutenberg.org/ebooks/29638', 'en', 1555), +(10782, 'L\'Illustration, No. 3248, 27 Mai 1905', 'Various', '2011-02-13', 3, 'https://www.gutenberg.org/ebooks/35267', 'fr', 150), +(10783, 'De Reis van Prins Scipio Borghese naar de Hemelsche Bergen\r\nDe Aarde en haar Volken, 1907', 'Brocherel, Jules', '2006-11-21', 13, 'https://www.gutenberg.org/ebooks/19891', 'nl', 1992), +(10784, 'The Pioneer Boys on the Great Lakes; or, On the Trail of the Iroquois', 'Rathborne, St. George', '2014-09-07', 11, 'https://www.gutenberg.org/ebooks/46795', 'en', 5528), +(10785, 'Wings and Stings: A Tale for the Young', 'A. L. O. E.', '2019-08-06', 860, 'https://www.gutenberg.org/ebooks/60065', 'en', 5529), +(10786, 'A Tale of a Lonely Parish', 'Crawford, F. Marion (Francis Marion)', '2004-10-04', 25, 'https://www.gutenberg.org/ebooks/13597', 'en', 5530), +(10787, 'The Albigensian Heresy', 'Warner, Henry James', '2017-02-27', 15, 'https://www.gutenberg.org/ebooks/54250', 'en', 5531), +(10788, 'Where There\'s Hope', 'Bixby, Jerome', '2009-12-19', 61, 'https://www.gutenberg.org/ebooks/30715', 'en', 179), +(10789, 'The Fitz-Boodle Papers', 'Thackeray, William Makepeace', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9528', 'en', 5532), +(10790, 'The Acharnians', 'Aristophanes', '2002-01-01', 48, 'https://www.gutenberg.org/ebooks/3012', 'en', 907), +(10791, 'Novelle d\'ambo i sessi', 'Panzini, Alfredo', '2013-03-14', 9, 'https://www.gutenberg.org/ebooks/42335', 'it', 1544), +(10792, 'Field Book of Common Rocks and Minerals\r\nFor identifying the Rocks and Minerals of the United States and interpreting their Origins and Meanings', 'Loomis, Frederic Brewster', '2017-08-18', 37, 'https://www.gutenberg.org/ebooks/55382', 'en', 5533), +(10793, 'The Water-Witch; Or, the Skimmer of the Seas: A Tale', 'Cooper, James Fenimore', '2004-05-01', 46, 'https://www.gutenberg.org/ebooks/12445', 'en', 324), +(10794, 'Making a Fireplace', 'Saylor, Henry H. (Henry Hodgman)', '2008-09-19', 21, 'https://www.gutenberg.org/ebooks/26670', 'en', 5534), +(10795, 'The Geographical Distribution of Animals, Volume 2\r\nWith a study of the relations of living and extinct faunas as elucidating the past changes of the Earth\'s surface', 'Wallace, Alfred Russel', '2018-02-06', 15, 'https://www.gutenberg.org/ebooks/56507', 'en', 5535), +(10796, 'Captain Macedoine\'s Daughter', 'McFee, William', '2010-04-18', 92, 'https://www.gutenberg.org/ebooks/32042', 'en', 61), +(10797, 'A Book of Epigrams', NULL, '2010-07-17', 7, 'https://www.gutenberg.org/ebooks/33190', 'en', 5536), +(10798, 'The Symbolist Movement in Literature', 'Symons, Arthur', '2016-12-31', 81, 'https://www.gutenberg.org/ebooks/53849', 'en', 629), +(10799, 'Fame usurpate', 'Imbriani, Vittorio', '2012-01-15', 14, 'https://www.gutenberg.org/ebooks/38578', 'it', 5537), +(10800, 'The Poetical Works of John Milton', 'Milton, John', '1999-05-01', 199, 'https://www.gutenberg.org/ebooks/1745', 'en', 54), +(10801, 'It Was the Road to Jericho', 'Johnston, Annie F. (Annie Fellows)', '2012-08-09', 10, 'https://www.gutenberg.org/ebooks/40462', 'en', 5538), +(10802, 'The Pattison Waltz', NULL, '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10312', 'en', 5539), +(10803, 'Peñas arriba', 'Pereda, José María de', '2008-01-02', 42, 'https://www.gutenberg.org/ebooks/24127', 'es', 1353), +(10804, 'Beautiful Ferns', 'Eaton, Daniel Cady', '2014-03-10', 14, 'https://www.gutenberg.org/ebooks/45110', 'en', 5540), +(10805, 'Australian Search Party', 'Eden, Charles H. (Charles Henry)', '2003-07-01', 9, 'https://www.gutenberg.org/ebooks/4237', 'en', 2471), +(10806, 'Dick Cheveley: His Adventures and Misadventures', 'Kingston, William Henry Giles', '2007-05-15', 35, 'https://www.gutenberg.org/ebooks/21455', 'en', 5541), +(10807, 'Little Eve Edgarton', 'Abbott, Eleanor Hallowell', '2005-04-20', 37, 'https://www.gutenberg.org/ebooks/15660', 'en', 4905), +(10808, 'Songs of the Glens of Antrim', 'O\'Neill, Moira', '2016-09-17', 13, 'https://www.gutenberg.org/ebooks/53075', 'en', 5542), +(10809, 'Integration of the Armed Forces, 1940-1965', 'MacGregor, Morris J.', '2007-02-15', 41, 'https://www.gutenberg.org/ebooks/20587', 'en', 2574), +(10810, 'The Story of an Ostrich: An Allegory and Humorous Satire in Rhyme.', 'Potter, I. J.', '2011-09-25', 11, 'https://www.gutenberg.org/ebooks/37530', 'en', 5543), +(10811, 'The Moths of the British Isles, First Series\r\nComprising the Families Sphingidæ to Noctuidæ', 'South, Richard', '2013-01-05', 12, 'https://www.gutenberg.org/ebooks/41782', 'en', 5544), +(10812, 'The Golden Skull: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-05-06', 30, 'https://www.gutenberg.org/ebooks/32270', 'en', 1006), +(10813, 'The Impostor', 'Bindloss, Harold', '2012-05-14', 21, 'https://www.gutenberg.org/ebooks/39698', 'en', 65), +(10814, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1585b', 'Motley, John Lothrop', '2004-01-01', 1, 'https://www.gutenberg.org/ebooks/4839', 'en', 3372), +(10815, 'Sewage Disposal Works: Their Design and Construction', 'Easdale, William Charles', '2018-03-13', 6, 'https://www.gutenberg.org/ebooks/56735', 'en', 5545), +(10816, 'England of My Heart : Spring', 'Hutton, Edward', '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10120', 'en', 3244), +(10817, 'The Silesian Horseherd - Questions of the Hour', 'Müller, F. Max (Friedrich Max)', '2008-01-15', 20, 'https://www.gutenberg.org/ebooks/24315', 'en', 958), +(10818, 'The Grey Room', 'Phillpotts, Eden', '1998-12-01', 40, 'https://www.gutenberg.org/ebooks/1577', 'en', 167), +(10819, 'Christmas Roses and Other Stories', 'Sedgwick, Anne Douglas', '2012-09-02', 23, 'https://www.gutenberg.org/ebooks/40650', 'en', 179), +(10820, 'Hollowmell\nor, A Schoolgirl\'s Mission', 'Burden, E. R.', '2007-06-03', 9, 'https://www.gutenberg.org/ebooks/21667', 'en', 1655), +(10821, 'The Great Round World And What Is Going On In It, Vol. 1, No. 22, April 8, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-24', 8, 'https://www.gutenberg.org/ebooks/15452', 'en', 1), +(10822, 'Journal of my journey over the mountains\r\nwhile surveying for Lord Thomas Fairfax, baron of Cameron, in the northern neck of Virginia, beyond the Blue Ridge, in 1747-8.', 'Washington, George', '2016-06-23', 26, 'https://www.gutenberg.org/ebooks/52395', 'en', 5546), +(10823, 'From North Carolina to Southern California Without a Ticket and How I Did It\r\nGiving My Exciting Experiences as a \"Hobo\"', 'Peele, John (John R.)', '2014-04-05', 17, 'https://www.gutenberg.org/ebooks/45322', 'en', 5547), +(10824, 'Herb of Grace', 'Carey, Rosa Nouchette', '2003-05-01', 23, 'https://www.gutenberg.org/ebooks/4005', 'en', 95), +(10825, 'The Life Of Thomas Paine, Vol. 2. (of 2)\r\nWith A History of His Literary, Political and Religious Career in America France, and England', 'Conway, Moncure Daniel', '2011-10-10', 17, 'https://www.gutenberg.org/ebooks/37702', 'en', 5548), +(10826, 'Œuvres complètes de Guy de Maupassant - volume 09', 'Maupassant, Guy de', '2016-10-10', 35, 'https://www.gutenberg.org/ebooks/53247', 'fr', 642), +(10827, 'Elsje', 'Kuiper, A. C.', '2005-01-03', 17, 'https://www.gutenberg.org/ebooks/14580', 'nl', 511), +(10828, 'Black, White and Gray: A Story of Three Homes', 'Walton, Amy', '2007-10-20', 22, 'https://www.gutenberg.org/ebooks/23130', 'en', 1430), +(10829, 'Door Centraal-Oceanië\nDe Aarde en haar Volken, 1908', 'Myrica, Pierre de', '2005-12-14', 7, 'https://www.gutenberg.org/ebooks/17305', 'nl', 5549), +(10830, 'Chronicles of London Bridge', 'Thompson, Richard', '2014-11-27', 30, 'https://www.gutenberg.org/ebooks/47475', 'en', 5550), +(10831, 'Study and Stimulants\r\nOr, the Use of Intoxicants and Narcotics in Relation to Intellectual Life, as Illustrated by Personal Communications on the Subject, from Men of Letters and of Science', NULL, '2004-10-01', 20, 'https://www.gutenberg.org/ebooks/6752', 'en', 5551), +(10832, 'A New Banking System\nThe Needful Capital for Rebuilding the Burnt District', 'Spooner, Lysander', '2010-11-01', 14, 'https://www.gutenberg.org/ebooks/34187', 'en', 5552), +(10833, 'Harold : the Last of the Saxon Kings — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7680', 'en', 984), +(10834, 'A Pasteboard Crown: A Story of the New York Stage', 'Morris, Clara', '2011-01-24', 70, 'https://www.gutenberg.org/ebooks/35055', 'en', 4881), +(10835, 'The First regiment Massachusetts heavy artillery, United States volunteers, in the Spanish-American war of 1898', 'Frye, James A. (James Albert)', '2016-03-20', 5, 'https://www.gutenberg.org/ebooks/51510', 'en', 529), +(10836, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 02', 'Stevenson, Robert Louis', '2009-11-22', 31, 'https://www.gutenberg.org/ebooks/30527', 'en', 232), +(10837, 'Cabiria: Visione storica del terzo secolo A. C.', 'D\'Annunzio, Gabriele', '2008-12-22', 28, 'https://www.gutenberg.org/ebooks/27590', 'it', 407), +(10838, 'The Wind in the Willows', 'Grahame, Kenneth', '1995-07-01', 1293, 'https://www.gutenberg.org/ebooks/289', 'en', 637), +(10839, 'Saunders\' Books on Pathology, Physiology Histology, Embryology and Bacteriology', 'W.B. Saunders Company', '2017-01-28', 26, 'https://www.gutenberg.org/ebooks/54062', 'en', 5553), +(10840, 'Personality Plus: Some Experiences of Emma McChesney and Her Son, Jock', 'Ferber, Edna', '2004-06-01', 26, 'https://www.gutenberg.org/ebooks/12677', 'en', 5554), +(10841, 'Kaukaisesta lännestä: Kolme kertomusta', 'Järvinen, Albin', '2011-04-14', 23, 'https://www.gutenberg.org/ebooks/35869', 'fi', 179), +(10842, 'True to His Home: A Tale of the Boyhood of Franklin', 'Butterworth, Hezekiah', '2008-08-27', 98, 'https://www.gutenberg.org/ebooks/26442', 'en', 5555), +(10843, 'Mr. Honey\'s Large Business Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 46, 'https://www.gutenberg.org/ebooks/3220', 'en', 5219), +(10844, 'Raskaan syytöksen alla; Kun on olevinaan liian ovela: Kaksi kertomusta', 'Anzengruber, Ludwig', '2013-02-16', 12, 'https://www.gutenberg.org/ebooks/42107', 'fi', 821), +(10845, 'Punchinello, Volume 2, No. 37, December 10, 1870', 'Various', '2003-12-01', 19, 'https://www.gutenberg.org/ebooks/10544', 'en', 372), +(10846, 'The Century of the Child', 'Key, Ellen', '2018-06-06', 11, 'https://www.gutenberg.org/ebooks/57283', 'en', 5556), +(10847, 'Tutors\' Lane', 'Lewis, W. S. (Wilmarth Sheldon)', '2008-03-07', 20, 'https://www.gutenberg.org/ebooks/24771', 'en', 5557), +(10848, 'A Midsummer Night\'s Dream', 'Shakespeare, William', '1997-11-01', 73, 'https://www.gutenberg.org/ebooks/1113', 'en', 3258), +(10849, 'The Early Introduction of Bogus Freemasonry in the United States of America and Texas Among Colored Masons', 'Mitchell, C. L. (Charles L.)', '2012-07-14', 21, 'https://www.gutenberg.org/ebooks/40234', 'en', 5558), +(10850, 'The Diary of a Resurrectionist, 1811-1812\r\nTo Which Are Added an Account of the Resurrection Men in London and a Short History of the Passing of the Anatomy Act', 'Bailey, James Blake', '2010-05-31', 58, 'https://www.gutenberg.org/ebooks/32614', 'en', 5559), +(10851, 'Parizina', 'Byron, George Gordon Byron, Baron', '2018-01-10', 10, 'https://www.gutenberg.org/ebooks/56351', 'eo', 5560), +(10852, 'Poetry', 'Quiller-Couch, Arthur', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11496', 'en', 8), +(10853, 'Vacation Verse', 'MacKeracher, William M. (William Mackay)', '2011-09-09', 8, 'https://www.gutenberg.org/ebooks/37366', 'en', 28), +(10854, 'Pearse\'s Commercial Directory to Swansea and the Neighbourhood, for 1854', 'Pearse, Ebenezer', '2014-01-18', 4, 'https://www.gutenberg.org/ebooks/44694', 'en', 5561), +(10855, 'The Snowflake, and Other Poems', 'Weir, Arthur', '2016-11-28', 7, 'https://www.gutenberg.org/ebooks/53623', 'en', 1237), +(10856, 'The Tale of Grandfather Mole', 'Bailey, Arthur Scott', '2007-04-22', 43, 'https://www.gutenberg.org/ebooks/21203', 'en', 5562), +(10857, 'Adventures of Martin Hewitt, Third Series', 'Morrison, Arthur', '2019-04-20', 65, 'https://www.gutenberg.org/ebooks/59319', 'en', 3511), +(10858, 'Narrative of the Life of Moses Grandy, Late a Slave in the United States of America', 'Grandy, Moses', '2005-02-13', 35, 'https://www.gutenberg.org/ebooks/15036', 'en', 5563), +(10859, 'Learning to Be a Schoolmaster', 'Cole, Thomas R. (Thomas Raymond)', '2014-05-24', 3, 'https://www.gutenberg.org/ebooks/45746', 'en', 5564), +(10860, 'The Tragic Comedians: A Study in a Well-known Story — Volume 1', 'Meredith, George', '2003-09-01', 25, 'https://www.gutenberg.org/ebooks/4461', 'en', 137), +(10861, 'A Modern Buccaneer', 'Boldrewood, Rolf', '2011-02-28', 35, 'https://www.gutenberg.org/ebooks/35431', 'en', 324), +(10862, 'The Man in Black: An Historical Novel of the Days of Queen Anne', 'James, G. P. R. (George Payne Rainsford)', '2016-02-11', 8, 'https://www.gutenberg.org/ebooks/51174', 'en', 4464), +(10863, 'Punch, or the London Charivari, Vol. 104, February 25, 1893', 'Various', '2007-09-01', 20, 'https://www.gutenberg.org/ebooks/22486', 'en', 134), +(10864, 'The Family among the Australian Aborigines, a Sociological Study', 'Malinowski, Bronislaw', '2015-05-03', 28, 'https://www.gutenberg.org/ebooks/48865', 'en', 5565), +(10865, 'A Chilhowee Lily\n1911', 'Murfree, Mary Noailles', '2007-11-19', 12, 'https://www.gutenberg.org/ebooks/23554', 'en', 4872), +(10866, 'Six Little Bunkers at Grandpa Ford\'s', 'Hope, Laura Lee', '2006-02-12', 9, 'https://www.gutenberg.org/ebooks/17761', 'en', 3621), +(10867, 'Wilson\'s Tales of the Borders and of Scotland, Volume 19', NULL, '2014-09-30', 24, 'https://www.gutenberg.org/ebooks/47011', 'en', 3672), +(10868, 'The Misuse of Mind', 'Stephen, Karin', '2004-08-01', 17, 'https://www.gutenberg.org/ebooks/6336', 'en', 354), +(10869, 'Odd Charges\nOdd Craft, Part 13.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12213', 'en', 72), +(10870, 'The Surrender of Santiago\nAn Account of the Historic Surrender of Santiago to General\nShafter, July 17, 1898', 'Norris, Frank', '2008-07-11', 13, 'https://www.gutenberg.org/ebooks/26026', 'en', 5566), +(10871, 'Henry Is Twenty: A Further Episodic History of Henry Calverly, 3rd', 'Merwin, Samuel', '2016-05-02', 15, 'https://www.gutenberg.org/ebooks/51948', 'en', 1351), +(10872, 'Cedar Creek: From the Shanty to the Settlement. A Tale of Canadian Life', 'Walshe, Elizabeth H. (Elizabeth Hely)', '2010-01-26', 8, 'https://www.gutenberg.org/ebooks/31091', 'en', 5567), +(10873, 'Vie de Molière', 'Voltaire', '2003-01-01', 18, 'https://www.gutenberg.org/ebooks/3644', 'fr', 642), +(10874, 'The Ivory Snuff Box', 'Kummer, Frederic Arnold', '2009-08-30', 29, 'https://www.gutenberg.org/ebooks/29852', 'en', 128), +(10875, 'Yvonne', 'Delpit, Édouard', '2013-04-20', 8, 'https://www.gutenberg.org/ebooks/42563', 'fr', 61), +(10876, 'A Vers de Société Anthology', NULL, '2015-01-24', 17, 'https://www.gutenberg.org/ebooks/48059', 'en', 5568), +(10877, 'The Life of Sir James Fitzjames Stephen, Bart., K.C.S.I.\nA Judge of the High Court of Justice', 'Stephen, Leslie', '2009-05-28', 18, 'https://www.gutenberg.org/ebooks/28980', 'en', 5569), +(10878, 'Out on the Pampas; Or, The Young Settlers', 'Henty, G. A. (George Alfred)', '2009-10-01', 14, 'https://www.gutenberg.org/ebooks/30143', 'en', 5570), +(10879, 'The Memoirs of Mr. Charles J. Yellowplush', 'Thackeray, William Makepeace', '2001-09-01', 38, 'https://www.gutenberg.org/ebooks/2796', 'en', 1994), +(10880, 'Lourdes', 'Benson, Robert Hugh', '2006-07-01', 28, 'https://www.gutenberg.org/ebooks/18729', 'en', 5571), +(10881, 'The Religious Thought of the Greeks', 'Moore, Clifford Herschel', '2017-03-21', 15, 'https://www.gutenberg.org/ebooks/54406', 'en', 5572), +(10882, 'Muistoja lapsen ja hopeahapsen 1\nKuvauksia', 'Ramsay, Anders', '2005-08-08', 34, 'https://www.gutenberg.org/ebooks/16481', 'fi', 5573), +(10883, 'Poem Outlines', 'Lanier, Sidney', '2016-03-03', 13, 'https://www.gutenberg.org/ebooks/51346', 'en', 5574), +(10884, 'Meister Autor; oder, die Geschichten vom versunkenen Garten', 'Raabe, Wilhelm', '2011-03-18', 9, 'https://www.gutenberg.org/ebooks/35603', 'de', 61), +(10885, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 698\nMay 12, 1877', 'Various', '2014-10-29', 5, 'https://www.gutenberg.org/ebooks/47223', 'en', 18), +(10886, 'Station Life in New Zealand', 'Barker, Lady (Mary Anne)', '2004-07-01', 24, 'https://www.gutenberg.org/ebooks/6104', 'en', 5575), +(10887, 'Out in the Forty-Five\nDuncan Keith\'s Vow', 'Holt, Emily Sarah', '2007-12-07', 20, 'https://www.gutenberg.org/ebooks/23766', 'en', 470), +(10888, 'Indian Creek Massacre and Captivity of Hall Girls\r\nComplete history of the massacre of sixteen whites on Indian creek, near Ottawa, Ill., and Sylvia Hall and Rachel Hall as captives in Illinois and Wisconsin during the Black Hawk war, 1832', 'Scanlan, Charles Martin', '2015-10-23', 14, 'https://www.gutenberg.org/ebooks/50294', 'en', 4081), +(10889, 'La Curée', 'Zola, Émile', '2006-01-19', 61, 'https://www.gutenberg.org/ebooks/17553', 'fr', 59), +(10890, 'The Dramatic Values in Plautus', 'Blancké, Wilton W. (Wilton Wallace)', '2006-02-01', 25, 'https://www.gutenberg.org/ebooks/9970', 'en', 5576), +(10891, 'Henry VIII and His Court: A Historical Novel', 'Mühlbach, L. (Luise)', '2002-10-01', 26, 'https://www.gutenberg.org/ebooks/3476', 'en', 4555), +(10892, 'Tempest-Driven: A Romance (Vol. 2 of 3)', 'Dowling, Richard', '2013-05-20', 9, 'https://www.gutenberg.org/ebooks/42751', 'en', 61), +(10893, 'Adopting an Abandoned Farm', 'Sanborn, Kate', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12021', 'en', 5500), +(10894, 'The Jesuit Missions: A Chronicle of the Cross in the Wilderness', 'Marquis, Thomas Guthrie', '2008-08-01', 1, 'https://www.gutenberg.org/ebooks/26214', 'en', 768), +(10895, 'Rime di Tullia d\'Aragona, cortigiana del secolo XVI', 'Aragona, Tullia d\'', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6938', 'it', 5577), +(10896, 'With a Camera in Majorca', 'D\'Este, Margaret', '2017-04-30', 14, 'https://www.gutenberg.org/ebooks/54634', 'en', 5578), +(10897, 'Our Young Aeroplane Scouts in Germany; or, Winning the Iron Cross', 'Porter, Horace', '2013-09-10', 18, 'https://www.gutenberg.org/ebooks/43683', 'en', 325), +(10898, 'Service with a Smile', 'Fontenay, Charles L.', '2009-10-31', 59, 'https://www.gutenberg.org/ebooks/30371', 'en', 831), +(10899, 'The Waste Land', 'Eliot, T. S. (Thomas Stearns)', '1998-05-01', 847, 'https://www.gutenberg.org/ebooks/1321', 'en', 4723), +(10900, 'Margaret Capel: A Novel, vol. 1 of 3', 'Wallace, Ellen', '2012-06-16', 18, 'https://www.gutenberg.org/ebooks/40006', 'en', 137), +(10901, 'The Moving Picture Boys at Panama; Or, Stirring Adventures Along the Great Canal', 'Appleton, Victor', '2004-01-01', 49, 'https://www.gutenberg.org/ebooks/10776', 'en', 5579), +(10902, 'The Nut Culturist\r\nA Treatise on Propogation, Planting, and Cultivation of Nut Bearing Trees and Shrubs Adapted to the Climate of the United States', 'Fuller, Andrew S. (Andrew Samuel)', '2011-11-10', 30, 'https://www.gutenberg.org/ebooks/37968', 'en', 5580), +(10903, 'The Circuit Riders', 'FitzPatrick, R. C.', '2008-02-08', 33, 'https://www.gutenberg.org/ebooks/24543', 'en', 2797), +(10904, 'Peck\'s Sunshine\nBeing a Collection of Articles Written for Peck\'s Sun,\nMilwaukee, Wis. - 1882', 'Peck, George W. (George Wilbur)', '2008-05-16', 10, 'https://www.gutenberg.org/ebooks/25491', 'en', 190), +(10905, 'Untuvainen y.m. kertomuksia', 'Lagerlöf, Selma', '2017-12-11', 6, 'https://www.gutenberg.org/ebooks/56163', 'fi', 2168), +(10906, 'Suomen kansan eläinsatuja: Ensimmäinen sarja suomalaisia satuja lapsille', 'Härkönen, Iivo', '2019-07-14', 17, 'https://www.gutenberg.org/ebooks/59917', 'fi', 5581), +(10907, 'A Synopsis of the North American Lagomorpha', 'Hall, E. Raymond (Eugene Raymond)', '2010-05-19', 7, 'https://www.gutenberg.org/ebooks/32426', 'en', 5582), +(10908, 'Vonken', 'Lagerlöf, Selma', '2012-02-18', 4, 'https://www.gutenberg.org/ebooks/38920', 'nl', 4652), +(10909, 'Eve: A Novel', 'Baring-Gould, S. (Sabine)', '2016-10-30', 14, 'https://www.gutenberg.org/ebooks/53411', 'en', 4305), +(10910, 'Le Grand Meaulnes', 'Alain-Fournier', '2004-05-01', 215, 'https://www.gutenberg.org/ebooks/5781', 'fr', 5583), +(10911, 'Songs of Heroic Days', 'O\'Hagan, Thomas', '2011-08-21', 4, 'https://www.gutenberg.org/ebooks/37154', 'en', 2100), +(10912, 'Suomenlahden salaisuus', 'Tavaststjerna, Karl August', '2014-05-03', 17, 'https://www.gutenberg.org/ebooks/45574', 'fi', 5584), +(10913, 'God\'s Good Man: A Simple Love Story', 'Corelli, Marie', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/4653', 'en', 48), +(10914, 'L\'hôtellerie sanglante', 'Mahalin, Paul', '2011-05-11', 5, 'https://www.gutenberg.org/ebooks/36086', 'fr', 98), +(10915, 'Die Organisation der Rohstoffversorgung', 'Rathenau, Walther', '2007-04-11', 26, 'https://www.gutenberg.org/ebooks/21031', 'de', 5585), +(10916, 'Women Wage-Earners: Their Past, Their Present, and Their Future', 'Campbell, Helen', '2005-02-28', 9, 'https://www.gutenberg.org/ebooks/15204', 'en', 5586), +(10917, 'A Dreamer\'s Tales', 'Dunsany, Lord', '2018-06-05', 63, 'https://www.gutenberg.org/ebooks/57277', 'en', 179), +(10918, 'Nero', 'Phillips, Stephen', '2008-03-08', 5, 'https://www.gutenberg.org/ebooks/24785', 'en', 5587), +(10919, 'Sketches in Verse: respectfully addressed to the Norfolk Yeomenry', 'Parkerson, James', '2010-09-15', 10, 'https://www.gutenberg.org/ebooks/33732', 'en', 54), +(10920, 'Het beleg en de verdediging van Haarlem, in 1572-1573 (deel 1 van 3)', 'Capelle, J. van de', '2012-11-07', 16, 'https://www.gutenberg.org/ebooks/41312', 'nl', 3372), +(10921, 'Ευμενίδες', 'Aeschylus', '2012-03-19', 18, 'https://www.gutenberg.org/ebooks/39208', 'el', 1298), +(10922, 'Deborah Dent and Her Donkey and Madam Fig\'s Gala\nTwo Humorous Tales', 'Unknown', '2008-05-31', 15, 'https://www.gutenberg.org/ebooks/25657', 'en', 343), +(10923, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 382, July 25, 1829', 'Various', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11462', 'en', 133), +(10924, '\"Green Balls\" : The Adventures of a Night-Bomber', 'Bewsher, Paul', '2011-09-12', 17, 'https://www.gutenberg.org/ebooks/37392', 'en', 4704), +(10925, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 05', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5547', 'en', 5290), +(10926, 'Punch, or the London Charivari, Vol. 109, July 13, 1895', 'Various', '2014-01-14', 6, 'https://www.gutenberg.org/ebooks/44660', 'en', 134), +(10927, 'Kernel Cob And Little Miss Sweetclover', 'Mitchell, George', '2004-11-23', 25, 'https://www.gutenberg.org/ebooks/14110', 'en', 5588), +(10928, 'Le prince corsaire', 'Scarron, Paul', '2007-01-10', 11, 'https://www.gutenberg.org/ebooks/20325', 'fr', 415), +(10929, 'Outo intohimo: Kertomus Ludvig XIV:n ajalta', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2016-08-02', 5, 'https://www.gutenberg.org/ebooks/52705', 'fi', 560), +(10930, 'The Real Gladstone: An Anecdotal Biography', 'Ritchie, J. Ewing (James Ewing)', '2011-05-28', 11, 'https://www.gutenberg.org/ebooks/36240', 'en', 4282), +(10931, 'The House on the Beach: A Realistic Tale', 'Meredith, George', '2003-09-01', 21, 'https://www.gutenberg.org/ebooks/4495', 'en', 137), +(10932, 'The Motor Girls on Waters Blue; Or, the Strange Cruise of the Tartar', 'Penrose, Margaret', '2005-01-01', 18, 'https://www.gutenberg.org/ebooks/7210', 'en', 2722), +(10933, 'L\'Illustration, No. 0060, 20 Avril 1844', 'Various', '2014-06-29', 5, 'https://www.gutenberg.org/ebooks/46137', 'fr', 150), +(10934, 'Santa Claus Gets His Wish: A Christmas Play in One Act For Young Children', 'Fisher, Blanche Proctor', '2016-02-11', 13, 'https://www.gutenberg.org/ebooks/51180', 'en', 3459), +(10935, 'An Outline of the Relations between England and Scotland (500-1707)', 'Rait, Robert S. (Robert Sangster)', '2005-09-04', 31, 'https://www.gutenberg.org/ebooks/16647', 'en', 5589), +(10936, 'Blackwood\'s Edinburgh Magazine, Volume 61, No. 377, March 1847', 'Various', '2010-04-01', 14, 'https://www.gutenberg.org/ebooks/31859', 'en', 711), +(10937, 'Spicilège', 'Schwob, Marcel', '2015-09-12', 18, 'https://www.gutenberg.org/ebooks/49943', 'fr', 4585), +(10938, 'The Book of the Damned', 'Fort, Charles', '2007-08-31', 188, 'https://www.gutenberg.org/ebooks/22472', 'en', 5590), +(10939, 'Front Lines', 'Cable, Boyd', '2015-05-06', 8, 'https://www.gutenberg.org/ebooks/48891', 'en', 335), +(10940, 'Cotton is King, and Pro-Slavery Arguments\r\nComprising the Writings of Hammond, Harper, Christy, Stringfellow, Hodge, Bledsoe, and Cartrwright on this Important Subject', NULL, '2009-02-20', 47, 'https://www.gutenberg.org/ebooks/28148', 'en', 5591), +(10941, 'La dernière Aldini\nSimon', 'Sand, George', '2006-02-19', 25, 'https://www.gutenberg.org/ebooks/17795', 'fr', 61), +(10942, 'Pictures of the old French court\nJeanne de Bourbon, Isabeau de Bavière, Anne de Bretagne', 'Bearne, Mrs. (Catherine Mary Charlton)', '2015-09-25', 18, 'https://www.gutenberg.org/ebooks/50052', 'en', 5592), +(10943, 'Messere Arlotto Mainardi, Pievano di S. Cresci a Maciuoli', 'Guerrazzi, Francesco Domenico', '2010-11-30', 16, 'https://www.gutenberg.org/ebooks/34517', 'it', 61), +(10944, 'Tuukkalan tappelu: Kaksi-osainen näytelmä', 'Numers, Gustaf von', '2017-09-10', 39, 'https://www.gutenberg.org/ebooks/55520', 'fi', 402), +(10945, 'The World English Bible (WEB): Obadiah', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8258', 'en', 5593), +(10946, 'Try Again; Or, the Trials and Triumphs of Harry West. A Story for Young Folks', 'Optic, Oliver', '2010-01-24', 23, 'https://www.gutenberg.org/ebooks/31065', 'en', 751), +(10947, 'The Last Call: A Romance (Vol. 3 of 3)', 'Dowling, Richard', '2013-04-26', 5, 'https://www.gutenberg.org/ebooks/42597', 'en', 109), +(10948, 'The Manor House School', 'Brazil, Angela', '2009-05-26', 34, 'https://www.gutenberg.org/ebooks/28974', 'en', 62), +(10949, 'White Heather: A Novel (Volume 2 of 3)', 'Black, William', '2013-08-11', 9, 'https://www.gutenberg.org/ebooks/43445', 'en', 1922), +(10950, 'The Brethren', 'Haggard, H. Rider (Henry Rider)', '2001-08-01', 71, 'https://www.gutenberg.org/ebooks/2762', 'en', 404), +(10951, 'Historia de una parisiense', 'Feuillet, Octave', '2008-10-30', 24, 'https://www.gutenberg.org/ebooks/27100', 'es', 560), +(10952, 'The Warden', 'Trollope, Anthony', '1996-08-01', 209, 'https://www.gutenberg.org/ebooks/619', 'en', 781), +(10953, 'The Jesus of History', 'Glover, T. R. (Terrot Reaveley)', '2004-08-31', 80, 'https://www.gutenberg.org/ebooks/13335', 'en', 5594), +(10954, 'The Secrets of the Great City\r\nA Work Descriptive of the Virtues and the Vices, the Mysteries, Miseries and Crimes of New York City', 'McCabe, James Dabney', '2005-09-01', 11, 'https://www.gutenberg.org/ebooks/8856', 'en', 2196), +(10955, 'The Great Round World and What Is Going On In It, Vol. 1, No. 58, December 16, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-08-08', 11, 'https://www.gutenberg.org/ebooks/16475', 'en', 1), +(10956, 'Multatuli\nOnze groote schrijvers, deel 2', 'Bergh van Eysinga-Elias, Jeanette van den', '2007-09-16', 22, 'https://www.gutenberg.org/ebooks/22640', 'nl', 3768), +(10957, 'Ein Sommernachtstraum', 'Shakespeare, William', '2004-12-01', 72, 'https://www.gutenberg.org/ebooks/7022', 'de', 907), +(10958, 'Yellowstone via Gallatin Gateway Montana', 'Chicago, Milwaukee, St. Paul, and Pacific Railroad Company', '2014-07-16', 3, 'https://www.gutenberg.org/ebooks/46305', 'en', 993), +(10959, 'The Hidden Force: A Story of Modern Java', 'Couperus, Louis', '2010-12-22', 31, 'https://www.gutenberg.org/ebooks/34725', 'en', 5595), +(10960, 'The Rubáiyát of Bridge', 'Wells, Carolyn', '2007-12-10', 10, 'https://www.gutenberg.org/ebooks/23792', 'en', 3449), +(10961, 'The poetical works of George MacDonald in two volumes — Volume 2', 'MacDonald, George', '2006-02-01', 32, 'https://www.gutenberg.org/ebooks/9984', 'en', 4138), +(10962, 'The Motor Rangers\' Wireless Station', 'Goldfrap, John Henry', '2015-10-20', 22, 'https://www.gutenberg.org/ebooks/50260', 'en', 3763), +(10963, 'Voyages in Search of the North-West Passage', 'Hakluyt, Richard', '2002-10-01', 29, 'https://www.gutenberg.org/ebooks/3482', 'en', 885), +(10964, 'Dainty\'s Cruel Rivals; Or, The Fatal Birthday', 'Miller, Alex. McVeigh, Mrs.', '2010-02-12', 17, 'https://www.gutenberg.org/ebooks/31257', 'en', 48), +(10965, 'Egy az Isten (2. rész)', 'Jókai, Mór', '2017-10-09', 13, 'https://www.gutenberg.org/ebooks/55712', 'hu', 234), +(10966, '後西游記', 'Biao, Xuahua', '2008-11-26', 56, 'https://www.gutenberg.org/ebooks/27332', 'zh', NULL), +(10967, 'The New South: A Chronicle of Social and Industrial Evolution', 'Thompson, Holland', '2004-08-03', 14, 'https://www.gutenberg.org/ebooks/13107', 'en', 5596), +(10968, 'Whispers at Dawn; Or, The Eye', 'Snell, Roy J. (Roy Judson)', '2013-09-09', 19, 'https://www.gutenberg.org/ebooks/43677', 'en', 5597), +(10969, 'Tales of Trail and Town', 'Harte, Bret', '2006-05-18', 41, 'https://www.gutenberg.org/ebooks/2550', 'en', 315), +(10970, 'A Burial Cave in Baja California\nThe Palmer Collection, 1887', 'Massey, William C.', '2009-11-01', 20, 'https://www.gutenberg.org/ebooks/30385', 'en', 5598), +(10971, 'Cordova; A city of the Moors', 'Gallichan, Walter M. (Walter Matthew)', '2019-02-04', 22, 'https://www.gutenberg.org/ebooks/58831', 'en', 4335), +(10972, 'Ayala\'s Angel', 'Trollope, Anthony', '2010-08-25', 79, 'https://www.gutenberg.org/ebooks/33500', 'en', 45), +(10973, 'The Knights of England, France, and Scotland', 'Herbert, Henry William', '2018-04-25', 30, 'https://www.gutenberg.org/ebooks/57045', 'en', 5599), +(10974, 'Homeward Bound\nSailor\'s Knots, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10782', 'en', 72), +(10975, 'Skippy Bedelle\r\nHis Sentimental Progress From the Urchin to the Complete Man of the World', 'Johnson, Owen', '2008-05-14', 23, 'https://www.gutenberg.org/ebooks/25465', 'en', 5600), +(10976, 'La Belle-Nivernaise: Histoire d\'un vieux bateau et de son équipage', 'Daudet, Alphonse', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11650', 'fr', 4), +(10977, 'Cupid\'s Fair-Weather Booke\r\nIncluding an Almanack for Any Two Years (True Love Ought to Last That Long)', 'Clay, John Cecil', '2017-12-17', 11, 'https://www.gutenberg.org/ebooks/56197', 'en', 5601), +(10978, 'Bathseba: Davidin puheluja itsensä kanssa', 'Kilpi, Volter', '2012-10-20', 8, 'https://www.gutenberg.org/ebooks/41120', 'fi', 5602), +(10979, 'The Electra of Euripides\r\nTranslated into English rhyming verse', 'Euripides', '2004-12-10', 60, 'https://www.gutenberg.org/ebooks/14322', 'en', 5603), +(10980, 'Chatterbox, 1905.', 'Various', '2006-12-15', 44, 'https://www.gutenberg.org/ebooks/20117', 'en', 668), +(10981, 'Le moyen de parvenir, tome 2/3', 'Béroalde de Verville', '2018-09-09', 10, 'https://www.gutenberg.org/ebooks/57879', 'fr', 5604), +(10982, 'Problems of Conduct: An Introductory Survey of Ethics', 'Drake, Durant', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/5775', 'en', 680), +(10983, 'Wolkenüberflaggt: Gedichte', 'Lotz, Ernst Wilhelm', '2013-12-17', 30, 'https://www.gutenberg.org/ebooks/44452', 'de', 4162), +(10984, 'Woman, Church & State\r\nThe Original Exposé of Male Collaboration Against the Female Sex', 'Gage, Matilda Joslyn', '2014-05-04', 60, 'https://www.gutenberg.org/ebooks/45580', 'en', 2108), +(10985, 'The Victorian Age: The Rede Lecture for 1922', 'Inge, William Ralph', '2011-05-09', 11, 'https://www.gutenberg.org/ebooks/36072', 'en', 2135), +(10986, 'How \"A Dear Little Couple\" Went Abroad', 'Brine, Mary D. (Mary Dow)', '2012-05-26', 12, 'https://www.gutenberg.org/ebooks/39806', 'en', 246), +(10987, 'Kahden sydämen salaisuudet: Eriskummallinen kertomus', 'Dostoyevsky, Fyodor', '2016-07-09', 27, 'https://www.gutenberg.org/ebooks/52537', 'fi', 147), +(10988, 'A House of Pomegranates', 'Wilde, Oscar', '1997-04-01', 276, 'https://www.gutenberg.org/ebooks/873', 'en', 1007), +(10989, 'The Japanese Spirit', 'Okakura, Yoshisaburo', '2010-11-16', 36, 'https://www.gutenberg.org/ebooks/34341', 'en', 983), +(10990, 'Schwatka\'s Search: Sledging in the Arctic in Quest of the Franklin Records', 'Gilder, William H. (William Henry)', '2004-09-01', 27, 'https://www.gutenberg.org/ebooks/6594', 'en', 5605), +(10991, 'Strife: A Drama in Three Acts', 'Galsworthy, John', '2004-09-26', 56, 'https://www.gutenberg.org/ebooks/2908', 'en', 1088), +(10992, 'The Phantom Friend\nA Judy Bolton Mystery', 'Sutton, Margaret', '2015-12-04', 8, 'https://www.gutenberg.org/ebooks/50604', 'en', 5606), +(10993, 'The Emigrants Of Ahadarra\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 26, 'https://www.gutenberg.org/ebooks/16011', 'en', 440), +(10994, 'At Aboukir and Acre: A Story of Napoleon\'s Invasion of Egypt', 'Henty, G. A. (George Alfred)', '2007-08-02', 41, 'https://www.gutenberg.org/ebooks/22224', 'en', 5607), +(10995, 'Reis door Nubië\nDe Aarde en haar Volken, 1907', 'Amélineau, E. (Emile)', '2006-11-19', 15, 'https://www.gutenberg.org/ebooks/19865', 'nl', 5608), +(10996, 'A Day with the Poet Burns', NULL, '2011-02-15', 12, 'https://www.gutenberg.org/ebooks/35293', 'en', 5193), +(10997, 'The Naturalist in La Plata', 'Hudson, W. H. (William Henry)', '2005-02-01', 34, 'https://www.gutenberg.org/ebooks/7446', 'en', 5609), +(10998, 'The Wheat Princess', 'Webster, Jean', '2014-09-03', 31, 'https://www.gutenberg.org/ebooks/46761', 'en', 48), +(10999, 'A Brief History of the Worshipful Company of Ironmongers, London A.D. 1351-1889\r\nWith an Appendix Containing Some Account of the Blacksmiths\' Company', 'Noble, T. C. (Theophilus Charles)', '2019-08-12', 573, 'https://www.gutenberg.org/ebooks/60091', 'en', 5610), +(11000, 'Revenge', 'Porges, Arthur', '2009-01-09', 24, 'https://www.gutenberg.org/ebooks/27756', 'en', 179), +(11001, 'Punch, or the London Charivari, Volume 101, July 4, 1891', 'Various', '2004-09-30', 4, 'https://www.gutenberg.org/ebooks/13563', 'en', 134), +(11002, 'Anno 2070: Een blik in de toekomst', 'Dioscorides, Dr.', '2013-07-14', 16, 'https://www.gutenberg.org/ebooks/43213', 'nl', 26), +(11003, 'Utopia of Usurers and Other Essays', 'Chesterton, G. K. (Gilbert Keith)', '2000-04-01', 155, 'https://www.gutenberg.org/ebooks/2134', 'en', 5611), +(11004, 'El Proyecto Gutenberg (1971-2009)', 'Lebert, Marie', '2010-03-13', 24, 'https://www.gutenberg.org/ebooks/31633', 'es', 340), +(11005, 'Don Ranudo de Colibrados eli Köyhyys ja Ylpeys: Komedia viidessä näytöksessä', 'Holberg, Ludvig', '2015-08-18', 25, 'https://www.gutenberg.org/ebooks/49729', 'fi', 907), +(11006, 'The Piccadilly Puzzle: A Mysterious Story', 'Hume, Fergus', '2017-08-17', 25, 'https://www.gutenberg.org/ebooks/55376', 'en', 128), +(11007, 'Col fuoco non si scherza', 'De Marchi, Emilio', '2006-08-16', 22, 'https://www.gutenberg.org/ebooks/19059', 'it', 61), +(11008, 'Piracy off the Florida Coast and Elsewhere', 'Green, Samuel A. (Samuel Abbott)', '2008-09-21', 17, 'https://www.gutenberg.org/ebooks/26684', 'en', 645), +(11009, 'An Old Man\'s Love', 'Trollope, Anthony', '2008-04-08', 35, 'https://www.gutenberg.org/ebooks/25001', 'en', 847), +(11010, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 397, November 7, 1829', 'Various', '2004-02-01', 2, 'https://www.gutenberg.org/ebooks/11234', 'en', 133), +(11011, 'Leadwork, Old and Ornamental and for the most part English', 'Lethaby, W. R. (William Richard)', '2013-01-05', 18, 'https://www.gutenberg.org/ebooks/41544', 'en', 5612), +(11012, 'Joseph in the Snow, and The Clockmaker. In Three Volumes. Vol. III.', 'Auerbach, Berthold', '2010-07-15', 13, 'https://www.gutenberg.org/ebooks/33164', 'en', 803), +(11013, 'Histoire amoureuse des Gaules; suivie des Romans historico-satiriques du XVIIe siècle, Tome III', 'Bussy, Roger de Rabutin, comte de', '2012-08-14', 21, 'https://www.gutenberg.org/ebooks/40496', 'fr', 1870), +(11014, 'Rockets, Missiles, and Spacecraft of the National Air and Space Museum, Smithsonian Institution', 'Murphy, Lynne C.', '2018-06-30', 29, 'https://www.gutenberg.org/ebooks/57421', 'en', 5613), +(11015, 'Le Cardinal de Richelieu', 'Corne, Hyacinthe', '2011-06-13', 10, 'https://www.gutenberg.org/ebooks/36416', 'fr', 3746), +(11016, 'The Motor Boys on a Ranch; or, Ned, Bob and Jerry Among the Cowboys', 'Young, Clarence', '2016-05-24', 9, 'https://www.gutenberg.org/ebooks/52153', 'en', 3946), +(11017, 'A Friend of Cæsar: A Tale of the Fall of the Roman Republic. Time, 50-47 B.C.', 'Davis, William Stearns', '2005-04-24', 68, 'https://www.gutenberg.org/ebooks/15694', 'en', 5614), +(11018, 'A dialoge or communication of two persons\r\nDeuysyd and set forthe in the late[n] tonge, by the noble and famose clarke. Desiderius Erasmus intituled [the] pylgremage of pure deuotyon. Newly tra[n]slatyd into Englishe.', 'Erasmus, Desiderius', '2005-01-20', 40, 'https://www.gutenberg.org/ebooks/14746', 'en', 3806), +(11019, 'A Sister\'s Love: A Novel', 'Heimburg, W.', '2010-09-30', 7, 'https://www.gutenberg.org/ebooks/33958', 'en', 803), +(11020, 'The Life and Adventures of Guzman D\'Alfarache, or the Spanish Rogue, vol. 3/3', 'Alemán, Mateo', '2016-09-18', 6, 'https://www.gutenberg.org/ebooks/53081', 'en', 5615), +(11021, 'Carpets', 'Brinton, R. S. (Reginald Seymour)', '2018-12-13', 11, 'https://www.gutenberg.org/ebooks/58469', 'en', 5616), +(11022, 'Lalli: Murhenäytelmä viidessä näytöksessä', 'Jahnsson, Evald Ferdinand', '2007-02-12', 8, 'https://www.gutenberg.org/ebooks/20573', 'fi', 247), +(11023, 'Parnassus on Wheels', 'Morley, Christopher', '2004-03-01', 73, 'https://www.gutenberg.org/ebooks/5311', 'en', 5617), +(11024, 'J. C. Lavater\'s Sittenbüchlein für das Gesinde', 'Lavater, Johann Caspar', '2013-10-25', 22, 'https://www.gutenberg.org/ebooks/44036', 'de', 5618), +(11025, 'America, Volume 3 (of 6)', 'Cook, Joel', '2013-01-04', 14, 'https://www.gutenberg.org/ebooks/41776', 'en', 2655), +(11026, 'The Hitch Hikers', 'McCain, Vernon L.', '2010-05-07', 37, 'https://www.gutenberg.org/ebooks/32284', 'en', 26), +(11027, 'Elämän taistelusta: Näytelmä viidessä näytöksessä', 'Berndtson, Fredrik', '2008-04-29', 32, 'https://www.gutenberg.org/ebooks/25233', 'fi', 402), +(11028, 'The Book with the Yellow Cover', 'Wetterau, John Moncure', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11006', 'en', 8), +(11029, 'A Barren Title: A Novel', 'Speight, T. W. (Thomas Wilkinson)', '2018-07-31', 11, 'https://www.gutenberg.org/ebooks/57613', 'en', 5619), +(11030, 'Options', 'Henry, O.', '1998-12-01', 91, 'https://www.gutenberg.org/ebooks/1583', 'en', 112), +(11031, 'The Vagabond in Literature', 'Compton-Rickett, Arthur', '2010-08-05', 89, 'https://www.gutenberg.org/ebooks/33356', 'en', 5620), +(11032, 'Post Haste', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 34, 'https://www.gutenberg.org/ebooks/21693', 'en', 5621), +(11033, 'Christmas Day', 'Irving, Washington', '2016-06-17', 19, 'https://www.gutenberg.org/ebooks/52361', 'en', 5622), +(11034, 'Crania Ægyptiaca\r\nOr, Observations on Egyptian Ethnography Derived from Anatomy, History and the Monuments', 'Morton, Samuel George', '2019-06-21', 54, 'https://www.gutenberg.org/ebooks/59789', 'en', 5623), +(11035, 'Adventures of Working Men. From the Notebook of a Working Surgeon', 'Fenn, George Manville', '2011-07-05', 9, 'https://www.gutenberg.org/ebooks/36624', 'en', 287), +(11036, 'The Contest in America', 'Mill, John Stuart', '2004-02-01', 55, 'https://www.gutenberg.org/ebooks/5123', 'en', 5624), +(11037, 'Het Eiland Schiermonnikoog en Zijne Bewoners', 'Allan, Francis', '2013-11-17', 20, 'https://www.gutenberg.org/ebooks/44204', 'nl', 5625), +(11038, 'Gunsight Pass: How Oil Came to the Cattle Country and Brought a New West', 'Raine, William MacLeod', '2005-01-03', 37, 'https://www.gutenberg.org/ebooks/14574', 'en', 315), +(11039, 'The Adventures of a Dog, and a Good Dog Too', 'Elwes, Alfred', '2007-03-04', 25, 'https://www.gutenberg.org/ebooks/20741', 'en', 5512), +(11040, 'Protestantism and Catholicity compared in their effects on the civilization of Europe', 'Balmes, Jaime Luciano', '2015-11-12', 30, 'https://www.gutenberg.org/ebooks/50436', 'en', 5626), +(11041, 'Ateisti: Kokoelma pienempiä kirjoituksia', 'Järnefelt, Arvid', '2014-11-28', 12, 'https://www.gutenberg.org/ebooks/47481', 'fi', 471), +(11042, 'Canadian Wilds\r\nTells About the Hudson\'s Bay Company, Northern Indians and Their Modes of Hunting, Trapping, Etc.', 'Hunter, Martin', '2010-10-30', 25, 'https://www.gutenberg.org/ebooks/34173', 'en', 5627), +(11043, 'A History of Troop A Cavalry, Connecticut National Guard and Its Service in the Great War as Co. D, 102d Machine Gun Battalion', NULL, '2017-11-16', 7, 'https://www.gutenberg.org/ebooks/55978', 'en', 5628), +(11044, 'Harold : the Last of the Saxon Kings — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7674', 'en', 5629), +(11045, 'Martinin rikos: Novelli', 'Jotuni, Maria', '2014-08-10', 13, 'https://www.gutenberg.org/ebooks/46553', 'fi', 175), +(11046, 'Lukemisia lapsille 1', 'Topelius, Zacharias', '2005-07-06', 22, 'https://www.gutenberg.org/ebooks/16223', 'fi', 1007), +(11047, 'Vie de Benjamin Franklin, écrite par lui-même - Tome II\r\nsuivie de ses œuvres morales, politiques et littéraires', 'Franklin, Benjamin', '2007-07-07', 17, 'https://www.gutenberg.org/ebooks/22016', 'fr', 3754), +(11048, 'Baseball Joe on the Giants; or, Making Good as a Ball Twirler in the Metropolis', 'Chadwick, Lester', '2013-06-23', 18, 'https://www.gutenberg.org/ebooks/43021', 'en', 487), +(11049, 'Uncle Remus, His Songs and His Sayings', 'Harris, Joel Chandler', '2000-08-01', 200, 'https://www.gutenberg.org/ebooks/2306', 'en', 5630), +(11050, 'Little Folks (July 1884)\nA Magazine for the Young', 'Various', '2008-12-19', 25, 'https://www.gutenberg.org/ebooks/27564', 'en', 1860), +(11051, 'Olga Romanoff', 'Griffith, George Chetwynd', '2017-02-02', 17, 'https://www.gutenberg.org/ebooks/54096', 'en', 26), +(11052, 'Characters from the Histories & Memoirs of the Seventeenth Century', NULL, '2004-10-14', 24, 'https://www.gutenberg.org/ebooks/13751', 'en', 2816), +(11053, 'Christine', 'Von Arnim, Elizabeth', '2004-06-01', 35, 'https://www.gutenberg.org/ebooks/12683', 'en', 579), +(11054, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 6', 'Various', '2017-07-18', 267, 'https://www.gutenberg.org/ebooks/55144', 'en', 1666), +(11055, 'Ο Άγιος Δημήτριος: Μυστήριον εις πράξεις 3', 'Rodokanakes, Platon', '2010-02-25', 11, 'https://www.gutenberg.org/ebooks/31401', 'el', 402), +(11056, 'A magyar nép művészete (1. kötet)\r\nA kalotaszegi magyar nép művészete', 'Malonyay, Dezső', '2012-06-19', 17, 'https://www.gutenberg.org/ebooks/40039', 'hu', 5631), +(11057, 'The Automobile Girls at Palm Beach; Or, Proving Their Mettle Under Southern Skies', 'Crane, Laura Dent', '2011-11-24', 3, 'https://www.gutenberg.org/ebooks/38123', 'en', 5632), +(11058, 'The Circus Procession', 'Unknown', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10749', 'en', 1801), +(11059, 'Man and Nature; Or, Physical Geography as Modified by Human Action', 'Marsh, George P. (George Perkins)', '2011-11-09', 61, 'https://www.gutenberg.org/ebooks/37957', 'en', 5633), +(11060, 'Rheims and the Battles for its Possession', 'Pneu Michelin (Firm)', '2011-07-29', 17, 'https://www.gutenberg.org/ebooks/36885', 'en', 4804), +(11061, 'The Kingdom of Man', 'Lankester, E. Ray (Edwin Ray), Sir', '2019-07-18', 220, 'https://www.gutenberg.org/ebooks/59928', 'en', 186), +(11062, 'The Constant Couple; Or, A Trip to the Jubilee: A Comedy, in Five Acts', 'Farquhar, George', '2010-05-18', 21, 'https://www.gutenberg.org/ebooks/32419', 'en', 5266), +(11063, 'The Wonder Island Boys: Conquest of the Savages', 'Finlay, Roger Thompson', '2007-06-14', 16, 'https://www.gutenberg.org/ebooks/21832', 'en', 5634), +(11064, 'Stehe von Lichtern gestreichelt: Gedichte', 'Edschmid, Kasimir', '2012-09-20', 4, 'https://www.gutenberg.org/ebooks/40805', 'de', 4162), +(11065, 'The Wreck of the Grosvenor, Volume 3 of 3\r\nAn account of the mutiny of the crew and the loss of the ship when trying to make the Bermudas', 'Russell, William Clark', '2013-12-24', 19, 'https://www.gutenberg.org/ebooks/44499', 'en', 702), +(11066, 'The Midnight Guest: A Detective Story', 'White, Fred M. (Fred Merrick)', '2018-04-11', 29, 'https://www.gutenberg.org/ebooks/56960', 'en', 128), +(11067, 'My Southern Home: Or, the South and Its People', 'Brown, William Wells', '2019-03-23', 10, 'https://www.gutenberg.org/ebooks/59114', 'en', 125), +(11068, 'The Autobiography of Sergeant William Lawrence\nA Hero of the Peninsular and Waterloo Campaigns', 'Lawrence, William', '2009-06-28', 18, 'https://www.gutenberg.org/ebooks/29263', 'en', 5635), +(11069, 'The Music Master of Babylon', 'Pangborn, Edgar', '2016-03-06', 40, 'https://www.gutenberg.org/ebooks/51379', 'en', 1660), +(11070, 'De Edda', 'Berding, Frans', '2004-07-05', 71, 'https://www.gutenberg.org/ebooks/12822', 'nl', 5636), +(11071, 'Sagen van Koning Arthur en de Ridders van de Tafelronde', 'Montijn-de Fouw, Nelly', '2007-12-07', 24, 'https://www.gutenberg.org/ebooks/23759', 'nl', 5637), +(11072, 'Sketches of Missionary Life', 'Parry, Edwin F.', '2015-07-07', 5, 'https://www.gutenberg.org/ebooks/49386', 'en', 5638), +(11073, 'The Book of the Thousand Nights and a Night — Volume 15', NULL, '2002-09-01', 60, 'https://www.gutenberg.org/ebooks/3449', 'en', 1007), +(11074, 'From Wealth to Poverty; Or, the Tricks of the Traffic. A Story of the Drink Curse', 'Potter, Austin', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/6907', 'en', 716), +(11075, 'A Dark Month\nFrom Swinburne\'s Collected Poetical Works Vol. V', 'Swinburne, Algernon Charles', '2006-06-07', 12, 'https://www.gutenberg.org/ebooks/18524', 'en', 8); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(11076, 'Youth: Its Education, Regimen, and Hygiene', 'Hall, G. Stanley (Granville Stanley)', '2005-10-01', 97, 'https://www.gutenberg.org/ebooks/9173', 'en', 812), +(11077, 'Moni the Goat Boy, and Other Stories', 'Spyri, Johanna', '2015-02-14', 36, 'https://www.gutenberg.org/ebooks/48254', 'en', 179), +(11078, 'Valérie', 'Krüdener, Barbara Juliane, Freifrau von', '2008-10-07', 15, 'https://www.gutenberg.org/ebooks/26825', 'fr', 5639), +(11079, 'Account of a Voyage of Discovery\nto the West Coast of Corea, and the Great Loo-Choo Island', 'Hall, Basil', '2009-06-06', 38, 'https://www.gutenberg.org/ebooks/29051', 'en', 2039), +(11080, 'Birds and Nature, Vol. 10 No. 4 [November 1901]', 'Various', '2015-09-17', 8, 'https://www.gutenberg.org/ebooks/49988', 'en', 1584), +(11081, 'The Old Die Rich', 'Gold, H. L. (Horace Leonard)', '2010-04-05', 28, 'https://www.gutenberg.org/ebooks/31892', 'en', 2229), +(11082, 'Peggy Owen and Liberty', 'Madison, Lucy Foster', '2010-01-12', 64, 'https://www.gutenberg.org/ebooks/30940', 'en', 5640), +(11083, 'Mollentrave on Women: A comedy in three acts', 'Sutro, Alfred', '2015-09-30', 12, 'https://www.gutenberg.org/ebooks/50099', 'en', 5641), +(11084, 'Shadow and Light\r\nAn Autobiography with Reminiscences of the Last and Present Century', 'Gibbs, Mifflin Wistar', '2009-02-25', 43, 'https://www.gutenberg.org/ebooks/28183', 'en', 180), +(11085, 'Ma Cousine Pot-Au-Feu', 'Tinseau, Léon de', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/6309', 'fr', 607), +(11086, 'Europa\'s Fairy Book', 'Jacobs, Joseph', '2008-07-10', 63, 'https://www.gutenberg.org/ebooks/26019', 'en', 5642), +(11087, 'Victor Hugo', 'Gautier, Théophile', '2016-05-03', 16, 'https://www.gutenberg.org/ebooks/51977', 'fr', 5643), +(11088, 'The World English Bible (WEB): Revelation', 'Anonymous', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8293', 'en', 5644), +(11089, 'Chance: A Tale in Two Parts', 'Conrad, Joseph', '2005-11-01', 4, 'https://www.gutenberg.org/ebooks/9341', 'en', 1061), +(11090, 'Anecdotes of the Manners and Customs of London during the Eighteenth Century; Vol. 2 (of 2)\r\nIncluding the Charities, Depravities, Dresses, and Amusements etc.', 'Malcolm, James Peller', '2015-01-24', 12, 'https://www.gutenberg.org/ebooks/48066', 'en', 5645), +(11091, 'Micah Clarke - Tome I\nLes recrues de Monmouth', 'Doyle, Arthur Conan', '2006-06-29', 32, 'https://www.gutenberg.org/ebooks/18716', 'fr', 1982), +(11092, 'A Girl of Virginia', 'Thruston, Lucy M. (Lucy Meacham)', '2017-03-26', 8, 'https://www.gutenberg.org/ebooks/54439', 'en', 4850), +(11093, 'Guustje en Zieneken: Schetsen uit het boerenleven', 'Buysse, Cyriel', '2014-12-29', 11, 'https://www.gutenberg.org/ebooks/47812', 'nl', 5388), +(11094, 'What Will People Say? A Novel', 'Hughes, Rupert', '2011-12-15', 43, 'https://www.gutenberg.org/ebooks/38311', 'en', 109), +(11095, 'William Lilly\'s History of His Life and Times, from the Year 1602 to 1681', 'Lilly, William', '2005-05-16', 36, 'https://www.gutenberg.org/ebooks/15835', 'en', 5646), +(11096, 'Motor Truck Logging Methods\nEngineering Experiment Station Series, Bulletin No. 12', 'Knapp, Frederick Malcolm', '2011-09-08', 5, 'https://www.gutenberg.org/ebooks/37359', 'en', 5647), +(11097, 'La Tulipe Noire', 'Dumas, Alexandre', '1999-09-01', 24, 'https://www.gutenberg.org/ebooks/1910', 'fr', 5648), +(11098, 'The Quiet Heart', 'Oliphant, Mrs. (Margaret)', '2019-05-11', 60, 'https://www.gutenberg.org/ebooks/59326', 'en', 61), +(11099, 'Elämän hawainnoita 09: Sowittaja; Paljon uutta; Keron Heikki', 'Päivärinta, Pietari', '2005-02-10', 33, 'https://www.gutenberg.org/ebooks/15009', 'fi', 456), +(11100, 'The Washington Historical Quarterly, Volume V, 1914', 'Various', '2014-05-27', 11, 'https://www.gutenberg.org/ebooks/45779', 'en', 5649), +(11101, 'Torquemada en la cruz', 'Pérez Galdós, Benito', '2017-06-06', 43, 'https://www.gutenberg.org/ebooks/54861', 'es', 1353), +(11102, 'L\'Illustration, No. 0064, 18 Mai 1844', 'Various', '2014-08-16', 6, 'https://www.gutenberg.org/ebooks/46598', 'fr', 150), +(11103, 'China', 'Blake, Henry Arthur, Sir', '2013-06-09', 22, 'https://www.gutenberg.org/ebooks/42904', 'en', 2773), +(11104, 'O que fazem mulheres: Romance philosophico', 'Castelo Branco, Camilo', '2009-07-18', 26, 'https://www.gutenberg.org/ebooks/29435', 'pt', 3856), +(11105, 'Le Tour du Monde; Mont Céleste\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-11-21', 28, 'https://www.gutenberg.org/ebooks/30518', 'fr', 1294), +(11106, 'Nicholas Nickleby', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9725', 'en', 45), +(11107, '\'Twas the Night Before Christmas', 'Moore, Clement Clarke', '2007-12-01', 3, 'https://www.gutenberg.org/ebooks/23933', 'en', 1209), +(11108, 'Motor Matt\'s Peril; or, Cast Away in the Bahamas\r\nMotor Stories Thrilling Adventure Motor Fiction No. 12, May 15, 1909', 'Matthews, Stanley R.', '2015-03-03', 22, 'https://www.gutenberg.org/ebooks/48402', 'en', 5634), +(11109, 'The Argosy, Vol. 51, No. 2, February, 1891', 'Various', '2006-05-11', 19, 'https://www.gutenberg.org/ebooks/18372', 'en', 5498), +(11110, 'A Guide for the Study of Animals', 'Whitney, Worrallo', '2011-01-16', 38, 'https://www.gutenberg.org/ebooks/34984', 'en', 5650), +(11111, 'The Beautiful Necessity\r\nSeven Essays on Theosophy and Architecture', 'Bragdon, Claude Fayette', '2004-06-01', 113, 'https://www.gutenberg.org/ebooks/12648', 'en', 1352), +(11112, 'The Religions of Ancient Egypt and Babylonia', 'Sayce, A. H. (Archibald Henry)', '2011-04-12', 37, 'https://www.gutenberg.org/ebooks/35856', 'en', 5651), +(11113, 'Pike & Cutlass: Hero Tales of Our Navy', 'Gibbs, George', '2013-02-20', 10, 'https://www.gutenberg.org/ebooks/42138', 'en', 3833), +(11114, 'The Rise of the Dutch Republic — Volume 06: 1560-61', 'Motley, John Lothrop', '2004-01-01', 48, 'https://www.gutenberg.org/ebooks/4806', 'en', 3372), +(11115, 'The First Easter', 'Willard, J. H. (James Hartwell)', '2012-02-06', 9, 'https://www.gutenberg.org/ebooks/38775', 'en', 5652), +(11116, 'Locrine; Mucedorus', 'Shakespeare (spurious and doubtful works)', '1998-11-01', 39, 'https://www.gutenberg.org/ebooks/1548', 'en', 1298), +(11117, 'The Feather Bed', 'Graves, Robert', '2019-06-12', 87, 'https://www.gutenberg.org/ebooks/59742', 'en', 402), +(11118, 'Ehstnische Märchen', 'Kreutzwald, Friedrich Reinhold', '2007-06-01', 463, 'https://www.gutenberg.org/ebooks/21658', 'de', 5653), +(11119, 'Punch, or the London Charivari, Volume 153, August 29, 1917', 'Various', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/10923', 'en', 134), +(11120, 'Lord Lawrence', 'Temple, Richard Carnac, Sir', '2016-10-14', 4, 'https://www.gutenberg.org/ebooks/53278', 'en', 5654), +(11121, 'For the Love of Lady Margaret: A Romance of the Lost Colony', 'Wilson, William Thomas', '2019-01-13', 10, 'https://www.gutenberg.org/ebooks/58690', 'en', 5655), +(11122, 'The Naughty Man; or, Sir Thomas Brown\nLove, Courtship and Marriage in High Life. A Poetical Satire', 'Bliss, Frank Chapman', '2018-02-10', 10, 'https://www.gutenberg.org/ebooks/56538', 'en', 5656), +(11123, 'Of Vulgarity', 'Ruskin, John', '2014-06-07', 33, 'https://www.gutenberg.org/ebooks/45913', 'en', 4559), +(11124, 'Our First Half-Century: A Review of Queensland Progress Based Upon Official Information', 'Queensland', '2012-04-21', 6, 'https://www.gutenberg.org/ebooks/39495', 'en', 5657), +(11125, 'Nathaniel Parker Willis', 'Beers, Henry A. (Henry Augustin)', '2017-01-03', 18, 'https://www.gutenberg.org/ebooks/53876', 'en', 5658), +(11126, 'Römerinnen: Zwei Novellen', 'Stendhal', '2012-01-10', 15, 'https://www.gutenberg.org/ebooks/38547', 'de', 179), +(11127, 'We Didn\'t Do Anything Wrong, Hardly', 'Kuykendall, Roger', '2008-01-02', 41, 'https://www.gutenberg.org/ebooks/24118', 'en', 3210), +(11128, 'The Journal to Stella', 'Swift, Jonathan', '2003-07-01', 44, 'https://www.gutenberg.org/ebooks/4208', 'en', 5659), +(11129, 'Toinen tai toinen naimaan: Ilveily yhdessä näytöksessä', 'Wilhelmi, A. (Alexander)', '2016-05-31', 1, 'https://www.gutenberg.org/ebooks/52198', 'fi', 4568), +(11130, 'The Laird o\' Coul\'s Ghost', 'Ogilvie, William', '2010-06-16', 26, 'https://www.gutenberg.org/ebooks/32841', 'en', 1245), +(11131, 'Index of the Project Gutenberg Works of Charles Bradlaugh', 'Bradlaugh, Charles', '2019-05-21', 12, 'https://www.gutenberg.org/ebooks/59570', 'en', 198), +(11132, 'Onder de koppensnellers op Borneo', 'Oost, Jan', '2010-09-25', 11, 'https://www.gutenberg.org/ebooks/33993', 'nl', 5660), +(11133, 'Aventures extraordinaires d\'un savant russe\nIV. Le désert sidéral', 'Le Faure, Georges', '2008-03-27', 14, 'https://www.gutenberg.org/ebooks/24924', 'fr', 623), +(11134, 'Remedia Amoris; or, The Remedy of Love\r\nLiterally Translated into English Prose, with Copious Notes', 'Ovid', '2014-12-16', 71, 'https://www.gutenberg.org/ebooks/47678', 'en', 5236), +(11135, 'The House of the Misty Star\nA Romance of Youth and Hope and Love in Old Japan', 'Little, Frances', '2005-11-19', 15, 'https://www.gutenberg.org/ebooks/17108', 'en', 775), +(11136, 'Astounding Stories of Super-Science, March 1930', 'Various', '2009-08-04', 176, 'https://www.gutenberg.org/ebooks/29607', 'en', 842), +(11137, 'The Star of Gettysburg: A Story of Southern High Tide', 'Altsheler, Joseph A. (Joseph Alexander)', '2003-03-01', 26, 'https://www.gutenberg.org/ebooks/3811', 'en', 491), +(11138, 'Contagious Abortion of Cows', 'MacNeal, Ward J.', '2011-02-12', 7, 'https://www.gutenberg.org/ebooks/35258', 'en', 5661), +(11139, 'An Alabaster Box', 'Kingsley, Florence Morse', '2006-04-10', 26, 'https://www.gutenberg.org/ebooks/18140', 'en', 13), +(11140, 'A Practical Directory for Young Christian Females\nBeing a Series of Letters from a Brother to a Younger Sister', 'Newcomb, Harvey', '2006-03-06', 19, 'https://www.gutenberg.org/ebooks/17934', 'en', 1557), +(11141, 'The Second Funeral of Napoleon', 'Thackeray, William Makepeace', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9517', 'en', 1491), +(11142, 'Sylvie and Bruno (Illustrated)', 'Carroll, Lewis', '2015-04-02', 86, 'https://www.gutenberg.org/ebooks/48630', 'en', 580), +(11143, 'The Adventures of Paddy Beaver', 'Burgess, Thornton W. (Thornton Waldo)', '2006-08-21', 53, 'https://www.gutenberg.org/ebooks/19092', 'en', 5662), +(11144, 'Herodotoksen historia-teos I-II', 'Herodotus', '2015-11-08', 15, 'https://www.gutenberg.org/ebooks/50409', 'fi', 5663), +(11145, 'L\'oeuvre du divin Arétin, deuxième partie\nEssai de bibliographie arétinesque par Guillaume Apollinaire', 'Aretino, Pietro', '2013-09-27', 33, 'https://www.gutenberg.org/ebooks/43822', 'fr', 1989), +(11146, 'The Wonders of the Invisible World\r\nBeing an Account of the Tryals of Several Witches Lately Executed in New-England, to which is added A Farther Account of the Tryals of the New-England Witches', 'Mather, Increase', '2009-04-06', 163, 'https://www.gutenberg.org/ebooks/28513', 'en', 5664), +(11147, 'Limbo', 'Huxley, Aldous', '2017-06-11', 104, 'https://www.gutenberg.org/ebooks/54895', 'en', 230), +(11148, 'Philosophical Letters of Friedrich Schiller', 'Schiller, Friedrich', '2004-12-08', 59, 'https://www.gutenberg.org/ebooks/6799', 'en', 779), +(11149, 'Dean Dunham; Or, the Waterford Mystery', 'Alger, Horatio, Jr.', '2017-11-12', 16, 'https://www.gutenberg.org/ebooks/55947', 'en', 153), +(11150, 'Spool Knitting', 'McCormack, Mary A.', '2007-07-09', 56, 'https://www.gutenberg.org/ebooks/22029', 'en', 5665), +(11151, 'Wilhelm Meisters Lehrjahre — Band 5', 'Goethe, Johann Wolfgang von', '2000-09-01', 40, 'https://www.gutenberg.org/ebooks/2339', 'de', 5194), +(11152, 'My Antonia', 'Cather, Willa', '2008-07-11', 811, 'https://www.gutenberg.org/ebooks/242', 'en', 315), +(11153, 'Pierre; or The Ambiguities', 'Melville, Herman', '2011-01-15', 377, 'https://www.gutenberg.org/ebooks/34970', 'en', 378), +(11154, 'Masakím', 'Pascual, Andrés', '2006-05-14', 20, 'https://www.gutenberg.org/ebooks/18386', 'tl', 61), +(11155, 'La terre promise', 'Bourget, Paul', '2008-08-30', 16, 'https://www.gutenberg.org/ebooks/26489', 'fr', 298), +(11156, 'Citadel of Faith', 'Shoghi, Effendi', '2006-09-16', 5, 'https://www.gutenberg.org/ebooks/19254', 'en', 5666), +(11157, 'The Philippine Islands\r\nA Political, Geographical, Ethnographical, Social and Commercial History of the Philippine Archipelago, Embracing the Whole Period of Spanish Rule', 'Foreman, John, F.R.G.S.', '2007-09-30', 96, 'https://www.gutenberg.org/ebooks/22815', 'en', 4987), +(11158, 'Knowledge for the Time\r\nA Manual of Reading, Reference, and Conversation on Subjects of Living Interest, Useful Curiosity, and Amusing Research', 'Timbs, John', '2015-07-25', 22, 'https://www.gutenberg.org/ebooks/49524', 'en', 1081), +(11159, 'Notes and Queries, Number 01, November 3, 1849', 'Various', '2005-08-01', 17, 'https://www.gutenberg.org/ebooks/8603', 'en', 105), +(11160, 'Historical materialism and the economics of Karl Marx', 'Croce, Benedetto', '2012-05-08', 16, 'https://www.gutenberg.org/ebooks/39653', 'en', 5667), +(11161, 'Practical Graining, with Description of Colors Employed and Tools Used', 'Wall, William E. (William Edmund)', '2012-12-31', 8, 'https://www.gutenberg.org/ebooks/41749', 'en', 5668), +(11162, 'A Woman\'s Journey Round the World\r\nFrom Vienna to Brazil, Chili, Tahiti, China, Hindostan, Persia and Asia Minor', 'Pfeiffer, Ida', '2004-02-01', 54, 'https://www.gutenberg.org/ebooks/11039', 'en', 819), +(11163, 'The History of Don Quixote, Volume 1, Part 18', 'Cervantes Saavedra, Miguel de', '2004-07-19', 3, 'https://www.gutenberg.org/ebooks/5920', 'en', 89), +(11164, 'Vorlesungen ueber die Theorie der Hyperelliptischen Integrale', 'Koenigsberger, Leo', '2010-08-07', 9, 'https://www.gutenberg.org/ebooks/33369', 'de', 5669), +(11165, 'A Russian Gentleman', 'Aksakov, S. T. (Sergei Timofeevich)', '2012-02-06', 26, 'https://www.gutenberg.org/ebooks/38781', 'en', 5670), +(11166, 'Mugbyn risteys', 'Dickens, Charles', '2005-03-29', 16, 'https://www.gutenberg.org/ebooks/15499', 'fi', 1061), +(11167, 'U.S. Copyright Renewals, 1952 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11805', 'en', 4170), +(11168, 'My Rubaiyat', 'Hartmann, Sadakichi', '2019-01-09', 4, 'https://www.gutenberg.org/ebooks/58664', 'en', 994), +(11169, 'Énide', 'Tennyson, Alfred Tennyson, Baron', '2016-09-01', 12, 'https://www.gutenberg.org/ebooks/52950', 'fr', 5671), +(11170, 'Memoir of Jared Sparks, LL.D.', 'Mayer, Brantz', '2010-04-22', 4, 'https://www.gutenberg.org/ebooks/32089', 'en', 5672), +(11171, 'I\'ve Been Thinking; or, the Secret of Success', 'Roe, A. S. (Azel Stevens)', '2012-04-16', 28, 'https://www.gutenberg.org/ebooks/39461', 'en', 5673), +(11172, 'How Beauty Was Saved, and Other Memories of the Sixties', 'Washington, Amanda Alcenia Strickland', '2017-01-04', 14, 'https://www.gutenberg.org/ebooks/53882', 'en', 5674), +(11173, 'Devotional Poetry for the Children. Second Part', 'Various', '2014-02-05', 9, 'https://www.gutenberg.org/ebooks/44835', 'en', 861), +(11174, 'Randy\'s Summer: A Story for Girls', 'Brooks, Amy', '2011-06-15', 39, 'https://www.gutenberg.org/ebooks/36429', 'en', 5675), +(11175, 'Ruth Fielding on the St. Lawrence; Or, The Queer Old Man of the Thousand Islands', 'Emerson, Alice B.', '2008-06-15', 21, 'https://www.gutenberg.org/ebooks/25802', 'en', 62), +(11176, 'Ultima Thule; or, A Summer in Iceland. vol. 1/2', 'Burton, Richard Francis, Sir', '2019-05-23', 63, 'https://www.gutenberg.org/ebooks/59584', 'en', 5676), +(11177, 'Mr. Fortescue\r\nAn Andean Romance', 'Westall, William', '2005-01-24', 21, 'https://www.gutenberg.org/ebooks/14779', 'en', 5677), +(11178, 'Descriptions of New Hylid Frogs From Mexico and Central America', 'Duellman, William Edward', '2010-09-28', 17, 'https://www.gutenberg.org/ebooks/33967', 'en', 5678), +(11179, 'The South Devon Coast', 'Harper, Charles G. (Charles George)', '2018-12-12', 3, 'https://www.gutenberg.org/ebooks/58456', 'en', 2379), +(11180, 'Warren Commission (09 of 26): Hearings Vol. IX (of 15)', 'United States. Warren Commission', '2013-10-21', 24, 'https://www.gutenberg.org/ebooks/44009', 'en', 5679), +(11181, 'The First of April\nOr, The Triumphs of Folly: A Poem Dedicated to a Celebrated\nDuchess. By the author of The Diaboliad.', 'Combe, William', '2006-08-04', 7, 'https://www.gutenberg.org/ebooks/18988', 'en', 3947), +(11182, 'Coral and Coral Reefs', 'Huxley, Thomas Henry', '2001-11-01', 22, 'https://www.gutenberg.org/ebooks/2937', 'en', 5680), +(11183, 'The Esperantist, Vol. 1, No. 2', NULL, '2009-05-08', 23, 'https://www.gutenberg.org/ebooks/28721', 'en', 3912), +(11184, 'Dorothy Dainty at Glenmore', 'Brooks, Amy', '2005-02-01', 42, 'https://www.gutenberg.org/ebooks/7479', 'en', 62), +(11185, 'Der Fliegende Hollaender\nThe Flying Dutchman', 'Wagner, Richard', '2009-01-11', 19, 'https://www.gutenberg.org/ebooks/27769', 'de', 1966), +(11186, 'Sonnets from Hafez & Other Verses', 'Hafiz, active 14th century', '2015-08-16', 45, 'https://www.gutenberg.org/ebooks/49716', 'en', 8), +(11187, 'Liesilauluja', 'Onerva, L.', '2005-07-01', 19, 'https://www.gutenberg.org/ebooks/8431', 'fi', 8), +(11188, 'Le culte du moi 1: Sous l\'oeil des barbares', 'Barrès, Maurice', '2005-10-07', 43, 'https://www.gutenberg.org/ebooks/16812', 'fr', 298), +(11189, 'Satuja ja tarinoita II', 'Andersen, H. C. (Hans Christian)', '2017-08-12', 10, 'https://www.gutenberg.org/ebooks/55349', 'fi', 1007), +(11190, 'Brigands of the Moon', 'Cummings, Ray', '2006-08-16', 46, 'https://www.gutenberg.org/ebooks/19066', 'en', 26), +(11191, 'A Window in Thrums', 'Barrie, J. M. (James Matthew)', '2007-03-26', 41, 'https://www.gutenberg.org/ebooks/20914', 'en', 5681), +(11192, 'The Natural History of Chocolate\nBeing a Distinct and Particular Account of the Cocoa-Tree, its Growth and Culture, and the Preparation, Excellent Properties, and Medicinal Vertues of its Fruit', 'Quélus, D.', '2008-02-12', 54, 'https://www.gutenberg.org/ebooks/24588', 'en', 5682), +(11193, 'Strandingshistorier: Skildringer fra jydske Vestkyst og Skagen', 'Erichsen, L. Mylius (Ludvig Mylius)', '2011-07-27', 12, 'https://www.gutenberg.org/ebooks/36871', 'da', 179), +(11194, 'The American Gentleman\'s Guide to Politeness and Fashion\nor, Familiar Letters to his Nephews', 'Conkling, Margaret C. (Margaret Cockburn)', '2012-02-28', 13, 'https://www.gutenberg.org/ebooks/39005', 'en', 788), +(11195, 'Tolstoi\'s leven\nZijne persoonlijke herinneringen, brieven en aanteekeningen 1828-1863', 'Biriukov, Pavel Ivanovich', '2006-12-18', 16, 'https://www.gutenberg.org/ebooks/20128', 'nl', 2372), +(11196, 'Index of the Project Gutenberg Works of Gilbert K. Chesterton', 'Chesterton, G. K. (Gilbert Keith)', '2018-10-05', 50, 'https://www.gutenberg.org/ebooks/58032', 'en', 198), +(11197, 'Byways in British Archaeology', 'Johnson, Walter', '2018-09-04', 21, 'https://www.gutenberg.org/ebooks/57846', 'en', 1911), +(11198, 'Pimeänpirtin hävitys', 'Talvio, Maila', '2018-04-18', 4, 'https://www.gutenberg.org/ebooks/56994', 'fi', 175), +(11199, 'Whitefoot the Wood Mouse', 'Burgess, Thornton W. (Thornton Waldo)', '2003-11-01', 51, 'https://www.gutenberg.org/ebooks/4698', 'en', 5683), +(11200, 'The Cross in Ritual, Architecture and Art', 'Tyack, Geo. S. (George Smith)', '2012-05-29', 3, 'https://www.gutenberg.org/ebooks/39839', 'en', 5684), +(11201, 'Lukemisia lapsille 7', 'Topelius, Zacharias', '2016-07-05', 10, 'https://www.gutenberg.org/ebooks/52508', 'fi', 1007), +(11202, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 06 of 12)', 'Frazer, James George', '2013-01-26', 38, 'https://www.gutenberg.org/ebooks/41923', 'en', 5685), +(11203, 'Among the Brigands', 'De Mille, James', '2009-07-03', 9, 'https://www.gutenberg.org/ebooks/29297', 'en', 5686), +(11204, 'Tales from Bohemia', 'Stephens, Robert Neilson', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8869', 'en', 179), +(11205, 'Un antiguo rencor', 'Ohnet, Georges', '2004-10-31', 45, 'https://www.gutenberg.org/ebooks/13904', 'es', 61), +(11206, 'Beth Norvell: A Romance of the West', 'Parrish, Randall', '2006-01-24', 46, 'https://www.gutenberg.org/ebooks/17598', 'en', 1569), +(11207, 'Somehow Good', 'De Morgan, William', '2009-03-16', 26, 'https://www.gutenberg.org/ebooks/28345', 'en', 95), +(11208, 'Ninety-Three', 'Hugo, Victor', '2015-07-06', 139, 'https://www.gutenberg.org/ebooks/49372', 'en', 248), +(11209, 'The Bible, King James version, Book 55: 2 Timothy', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8055', 'en', 5687), +(11210, 'Civilization the Primal Need of the Race, and The Attitude of the American Mind Toward the Negro Intellect\r\nThe American Negro Academy. Occasional Paper No. 3', 'Crummell, Alexander', '2010-02-13', 13, 'https://www.gutenberg.org/ebooks/31268', 'en', 180), +(11211, 'Frank Merriwell\'s Reward', 'Standish, Burt L.', '2006-09-28', 17, 'https://www.gutenberg.org/ebooks/19402', 'en', 3529), +(11212, 'The Attaché; or, Sam Slick in England — Volume 01', 'Haliburton, Thomas Chandler', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7821', 'en', 5688), +(11213, 'The Pageant of Summer', 'Jefferies, Richard', '1996-01-01', 195, 'https://www.gutenberg.org/ebooks/414', 'en', 5689), +(11214, 'The Forgotten Threshold: A Journal of Arthur Middleton', 'O\'Brien, Edward J. (Edward Joseph)', '2004-08-08', 11, 'https://www.gutenberg.org/ebooks/13138', 'en', 4632), +(11215, 'Minna von Barnhelm', 'Lessing, Gotthold Ephraim', '2005-10-01', 32, 'https://www.gutenberg.org/ebooks/9187', 'de', 907), +(11216, 'Simpson\'s Chelsea, Pimlico, Brompton, and Knightsbridge Directory, and Court Guide', 'Anonymous', '2013-09-05', 14, 'https://www.gutenberg.org/ebooks/43648', 'en', 5690), +(11217, 'The Playwork Book', 'Macbeth, Ann', '2014-06-27', 40, 'https://www.gutenberg.org/ebooks/46108', 'en', 132), +(11218, 'Tieni varrella tapaamia 1', 'Friberg, Maikki', '2005-09-10', 15, 'https://www.gutenberg.org/ebooks/16678', 'fi', 5691), +(11219, 'Hansford: A Tale of Bacon\'s Rebellion', 'Tucker, St. George', '2010-04-03', 19, 'https://www.gutenberg.org/ebooks/31866', 'en', 5692), +(11220, 'Insects and Diseases\r\nA Popular Account of the Way in Which Insects may Spread or Cause some of our Common Diseases', 'Doane, Rennie Wilbur', '2009-02-24', 41, 'https://www.gutenberg.org/ebooks/28177', 'en', 5693), +(11221, 'Rome', 'Zola, Émile', '2010-12-01', 18, 'https://www.gutenberg.org/ebooks/34528', 'fr', 298), +(11222, 'The Magic World', 'Nesbit, E. (Edith)', '2009-01-27', 92, 'https://www.gutenberg.org/ebooks/27903', 'en', 651), +(11223, 'Flower Children: The Little Cousins of the Field and Garden', 'Gordon, Elizabeth', '2014-09-22', 17, 'https://www.gutenberg.org/ebooks/46934', 'en', 5694), +(11224, 'Maha-bharata\nThe Epic of Ancient India Condensed into English Verse', NULL, '2006-10-25', 68, 'https://www.gutenberg.org/ebooks/19630', 'en', 5695), +(11225, 'Marriage Enrichment Retreats: Story of a Quaker Project', 'Mace, Vera', '2009-09-03', 19, 'https://www.gutenberg.org/ebooks/29899', 'en', 4759), +(11226, 'Studies on Slavery, in Easy Lessons', 'Fletcher, John', '2015-06-05', 8, 'https://www.gutenberg.org/ebooks/49140', 'en', 125), +(11227, 'The World English Bible (WEB): Matthew', NULL, '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8267', 'en', 228), +(11228, 'The Sin That Was His', 'Packard, Frank L. (Frank Lucius)', '2016-05-03', 19, 'https://www.gutenberg.org/ebooks/51983', 'en', 2004), +(11229, 'The Fifth Queen: And How She Came to Court', 'Ford, Ford Madox', '2009-10-06', 48, 'https://www.gutenberg.org/ebooks/30188', 'en', 5696), +(11230, 'Evankeliumin alku eli Jeesuksen syntyminen ihmisestä ja jumalasta', 'Järnefelt, Arvid', '2016-01-05', 8, 'https://www.gutenberg.org/ebooks/50851', 'fi', 3941), +(11231, 'La familia de León Roch, Tomo 2', 'Pérez Galdós, Benito', '2015-01-26', 22, 'https://www.gutenberg.org/ebooks/48092', 'es', 1696), +(11232, 'The Love of Books: The Philobiblon of Richard de Bury', 'Bury, Richard de', '1996-08-01', 89, 'https://www.gutenberg.org/ebooks/626', 'en', 5697), +(11233, '初刻拍案驚奇', 'Ling, Mengchu', '2018-06-02', 28, 'https://www.gutenberg.org/ebooks/57248', 'zh', 5698), +(11234, 'Réflexions ou sentences et maximes morales', 'La Rochefoucauld, François duc de', '2005-02-05', 116, 'https://www.gutenberg.org/ebooks/14913', 'fr', 5699), +(11235, 'The Conquest: The Story of a Negro Pioneer', 'Micheaux, Oscar', '2012-03-24', 26, 'https://www.gutenberg.org/ebooks/39237', 'en', 5700), +(11236, 'Vuosisatojen perintö 2\nMurrosaikana', 'Elfving, Betty', '2008-06-01', 12, 'https://www.gutenberg.org/ebooks/25668', 'fi', 98), +(11237, 'The Burgomaster\'s Wife — Volume 01', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5578', 'en', 803), +(11238, 'Lakeland Words\r\nA Collection of Dialect Words and Phrases as Used in Cumberland and Westmorland, with Illustrative Sentences in the North Westmorland Dialect', 'Kirkby, Bryham', '2018-10-30', 29, 'https://www.gutenberg.org/ebooks/58200', 'en', 5701), +(11239, 'Création et rédemption, première partie: Le docteur mystérieux', 'Dumas, Alexandre', '2011-07-22', 11, 'https://www.gutenberg.org/ebooks/36812', 'fr', 248), +(11240, 'Looking Backward: 2000-1887', 'Bellamy, Edward', '2008-05-12', 52, 'https://www.gutenberg.org/ebooks/25439', 'en', 2229), +(11241, 'The White Blackbird', 'Aitken, Robert', '2012-03-08', 61, 'https://www.gutenberg.org/ebooks/39066', 'en', 61), +(11242, 'Im Sonnenschein: Novelle', 'Storm, Theodor', '2007-04-03', 15, 'https://www.gutenberg.org/ebooks/20977', 'de', 48), +(11243, 'Gobseck', 'Balzac, Honoré de', '2004-10-19', 61, 'https://www.gutenberg.org/ebooks/1389', 'en', 58), +(11244, 'Mémoires de Garibaldi, tome 1/2', 'Dumas, Alexandre', '2018-04-22', 10, 'https://www.gutenberg.org/ebooks/57019', 'fr', 3731), +(11245, 'Psychology and Pedagogy of Anger', 'Richardson, Roy Franklin', '2019-04-01', 23, 'https://www.gutenberg.org/ebooks/59183', 'en', 5702), +(11246, 'More About Peggy', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 21, 'https://www.gutenberg.org/ebooks/21099', 'en', 5703), +(11247, 'The Boston Cooking-School Magazine (Vol. XV, No. 2, Aug.-Sept., 1910)', 'Various', '2013-01-28', 16, 'https://www.gutenberg.org/ebooks/41940', 'en', 5704), +(11248, 'The Pyrotechnist\'s Treasury; Or, Complete Art of Making Fireworks', 'Kentish, Thomas', '2012-09-29', 29, 'https://www.gutenberg.org/ebooks/40892', 'en', 5705), +(11249, 'Kurittaja', 'Dahl, Jonas Anton', '2012-02-26', 8, 'https://www.gutenberg.org/ebooks/38988', 'fi', 61), +(11250, 'The American Missionary — Volume 36, No. 9, September, 1882', 'Various', '2018-10-07', 3, 'https://www.gutenberg.org/ebooks/58051', 'en', 562), +(11251, 'Jimmy Drury: Candid Camera Detective', 'O\'Hara, David', '2018-09-01', 17, 'https://www.gutenberg.org/ebooks/57825', 'en', 515), +(11252, 'Peggy Stewart, Navy Girl, at Home', 'Jackson, Gabrielle E. (Gabrielle Emilie)', '2004-05-01', 11, 'https://www.gutenberg.org/ebooks/5729', 'en', 5706), +(11253, 'Nedra', 'McCutcheon, George Barr', '2004-11-06', 43, 'https://www.gutenberg.org/ebooks/13967', 'en', 323), +(11254, 'Lachesis Lapponica; Or, A Tour in Lapland, Volume 1', 'Linné, Carl von', '2010-12-29', 40, 'https://www.gutenberg.org/ebooks/34779', 'en', 5707), +(11255, 'Aladdin of London; Or, Lodestar', 'Pemberton, Max', '2009-03-15', 24, 'https://www.gutenberg.org/ebooks/28326', 'en', 1079), +(11256, 'Contos para a infância\r\nEscolhidos dos melhores auctores por Guerra Junqueiro', 'Junqueiro, Abílio Manuel Guerra', '2005-08-04', 43, 'https://www.gutenberg.org/ebooks/16429', 'pt', 5708), +(11257, 'Speculum Amantis\r\nLove Poems, from Rare Songbooks and Miscellanies of the Seventeenth Century', NULL, '2014-07-22', 10, 'https://www.gutenberg.org/ebooks/46359', 'en', 5709), +(11258, 'Criminal Sociology', 'Ferri, Enrico', '1996-03-01', 101, 'https://www.gutenberg.org/ebooks/477', 'en', 4353), +(11259, 'Coriolanus', 'Shakespeare, William', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6990', 'de', 5710), +(11260, 'Deutsch-Ostafrika: Geographie und Geschichte der Colonie', 'Förster, Brix', '2015-06-28', 15, 'https://www.gutenberg.org/ebooks/49311', 'de', 5711), +(11261, 'The Bible, King James version, Book 36: Zephaniah', 'Anonymous', '2005-04-01', 26, 'https://www.gutenberg.org/ebooks/8036', 'en', 4053), +(11262, 'Tales of Wonder Every Child Should Know', NULL, '2006-10-04', 66, 'https://www.gutenberg.org/ebooks/19461', 'en', 1007), +(11263, 'Letters of Travel (1892-1913)', 'Kipling, Rudyard', '2004-04-01', 50, 'https://www.gutenberg.org/ebooks/12089', 'en', 885), +(11264, 'The Rise of Iskander', 'Disraeli, Benjamin, Earl of Beaconsfield', '2005-04-01', 33, 'https://www.gutenberg.org/ebooks/7842', 'en', 61), +(11265, 'Esclave... ou reine?', 'Delly, pseud.', '2009-02-18', 15, 'https://www.gutenberg.org/ebooks/28114', 'fr', 687), +(11266, 'Hore dědinú: A jiné povídky', 'Omelka, František', '2009-02-01', 15, 'https://www.gutenberg.org/ebooks/27960', 'cs', 5712), +(11267, 'The Pharaoh and the Priest: An Historical Novel of Ancient Egypt', 'Prus, Bolesław', '2011-03-06', 20, 'https://www.gutenberg.org/ebooks/35499', 'en', 1802), +(11268, 'Le Vallon Aérien\r\nOu, Relation du voyage d\'un aéronaute dans un pays inconnu jusqu\'à présent; suivie de l\'histoire de ses habitans et de la description de leurs moeurs', 'Mosneron de Launay, Jean-Baptiste, baron', '2010-03-28', 51, 'https://www.gutenberg.org/ebooks/31805', 'fr', 2148), +(11269, 'An Australian Girl', 'Martin, Catherine', '2016-01-02', 10, 'https://www.gutenberg.org/ebooks/50832', 'en', 757), +(11270, 'Jiglets: A series of sidesplitting gyrations reeled off—', 'Jones, Walter', '2013-08-08', 9, 'https://www.gutenberg.org/ebooks/43419', 'en', 190), +(11271, 'O Conde de S. Luiz', 'Mello, Thomaz José de', '2009-05-22', 7, 'https://www.gutenberg.org/ebooks/28928', 'pt', 3856), +(11272, 'Hero and Leander', 'Marlowe, Christopher', '2006-07-07', 67, 'https://www.gutenberg.org/ebooks/18781', 'en', 5713), +(11273, 'The Lost Ambassador; Or, The Search For The Missing Delora', 'Oppenheim, E. Phillips (Edward Phillips)', '2004-09-03', 31, 'https://www.gutenberg.org/ebooks/13369', 'en', 1319), +(11274, 'The Figure in the Carpet', 'James, Henry', '1996-09-01', 246, 'https://www.gutenberg.org/ebooks/645', 'en', 112), +(11275, 'Birds and Nature, Vol. 12 No. 5 [December 1902]\nIllustrated by Color Photography', 'Various', '2015-01-06', 22, 'https://www.gutenberg.org/ebooks/47885', 'en', 1584), +(11276, 'Niccolò de\' Lapi; ovvero, i Palleschi e i Piagnoni', 'Azeglio, Massimo d\'', '2014-09-24', 11, 'https://www.gutenberg.org/ebooks/46957', 'it', 5714), +(11277, 'Im Schatten der Titanen\nErinnerungen an Baronin Jenny von Gustedt', 'Braun, Lily', '2006-10-28', 16, 'https://www.gutenberg.org/ebooks/19653', 'de', 3840), +(11278, 'Lille Before and During the War', 'Pneu Michelin (Firm)', '2015-06-03', 7, 'https://www.gutenberg.org/ebooks/49123', 'en', 5715), +(11279, 'Three Men in a Boat', 'Jerome, Jerome K. (Jerome Klapka)', '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8204', 'en', 257), +(11280, 'Punch, or the London Charivari, Volume 98, May 24, 1890', 'Various', '2010-01-21', 14, 'https://www.gutenberg.org/ebooks/31039', 'en', 134), +(11281, 'Held by Chinese Brigands', 'Gilson, Charles', '2012-03-24', 52, 'https://www.gutenberg.org/ebooks/39254', 'en', 5716), +(11282, 'Notes and Queries, Vol. IV, Number 95, August 23, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-12-22', 13, 'https://www.gutenberg.org/ebooks/38386', 'en', 105), +(11283, 'Academica', 'Cicero, Marcus Tullius', '2005-02-08', 109, 'https://www.gutenberg.org/ebooks/14970', 'en', 5717), +(11284, 'An Essay on Papal Infallibility', 'Sinclair, John', '2016-08-09', 16, 'https://www.gutenberg.org/ebooks/52759', 'en', 5718), +(11285, 'A Narrative of Some of the Lord\'s Dealings with George Müller. Part 1', 'Müller, George', '2007-01-15', 54, 'https://www.gutenberg.org/ebooks/20379', 'en', 5230), +(11286, 'The Outlet', 'Adams, Andy', '1999-12-01', 51, 'https://www.gutenberg.org/ebooks/1987', 'en', 315), +(11287, 'The Candle and the Cat', 'Leonard, Mary Finley', '2018-11-10', 8, 'https://www.gutenberg.org/ebooks/58263', 'en', 1430), +(11288, 'Setä Pitkäsääri', 'Webster, Jean', '2017-11-09', 8, 'https://www.gutenberg.org/ebooks/55924', 'fi', 3962), +(11289, 'Devereux — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7628', 'en', 4464), +(11290, 'Castes and Tribes of Southern India. Vol. 3 of 7', 'Thurston, Edgar', '2013-06-21', 93, 'https://www.gutenberg.org/ebooks/42993', 'en', 4574), +(11291, 'Astronomy of To-day: A Popular Introduction in Non-Technical Language', 'Dolmage, Cecil Goodrich Julius', '2009-04-21', 64, 'https://www.gutenberg.org/ebooks/28570', 'en', 1683), +(11292, 'Scientific Studies; or, Practical, in Contrast with Chimerical Pursuits', 'Dircks, Henry', '2013-09-28', 7, 'https://www.gutenberg.org/ebooks/43841', 'en', 5719), +(11293, 'With No Strings Attached', 'Garrett, Randall', '2007-10-26', 68, 'https://www.gutenberg.org/ebooks/23198', 'en', 179), +(11294, 'Porcelain', 'Dillon, Edward', '2017-07-15', 10, 'https://www.gutenberg.org/ebooks/55118', 'en', 4784), +(11295, 'The Secret of Divine Civilization', '`Abdu\'l-Bahá', '2006-09-12', 22, 'https://www.gutenberg.org/ebooks/19237', 'en', 5720), +(11296, 'Twenty Years of Spoof and Bluff', 'Carlton', '2015-07-29', 27, 'https://www.gutenberg.org/ebooks/49547', 'en', 5721), +(11297, 'The Link', 'Nourse, Alan Edward', '2007-10-03', 32, 'https://www.gutenberg.org/ebooks/22876', 'en', 179), +(11298, 'The Sky Pilot in No Man\'s Land', 'Connor, Ralph', '2006-06-03', 26, 'https://www.gutenberg.org/ebooks/3288', 'en', 579), +(11299, 'Woman and the New Race', 'Sanger, Margaret', '2005-08-01', 63, 'https://www.gutenberg.org/ebooks/8660', 'en', 5722), +(11300, 'Nietzsche and Other Exponents of Individualism', 'Carus, Paul', '2015-03-15', 12, 'https://www.gutenberg.org/ebooks/48495', 'en', 5723), +(11301, 'De Essentia Patris Et Filii\r\nPatrologiae Cursus Completus; Series Latini; Tomus X; Columns 887-888', NULL, '2011-01-11', 14, 'https://www.gutenberg.org/ebooks/34913', 'la', 2566), +(11302, 'The Return of Sherlock Holmes', 'Doyle, Arthur Conan', '1995-02-01', 283, 'https://www.gutenberg.org/ebooks/221', 'en', 834), +(11303, 'Notes and Queries, No. 209, October 29 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-12-15', 14, 'https://www.gutenberg.org/ebooks/27538', 'en', 105), +(11304, 'Two Rubes at the Vaudeville', NULL, '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10188', 'en', 4474), +(11305, 'The History of Don Quixote, Volume 2, Part 40', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5943', 'en', 89), +(11306, 'Recollections of Abraham Lincoln, 1847-1865', 'Lamon, Ward Hill', '2012-05-05', 21, 'https://www.gutenberg.org/ebooks/39630', 'en', 1716), +(11307, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1613-15', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4891', 'en', 4328), +(11308, 'Die Last', 'Kolb, Annette', '2013-11-23', 12, 'https://www.gutenberg.org/ebooks/44258', 'de', 5724), +(11309, 'Discourse on Criticism and of Poetry\r\nFrom Poems On Several Occasions (1707)', 'Cobb, Samuel', '2004-12-30', 5, 'https://www.gutenberg.org/ebooks/14528', 'en', 8), +(11310, 'Ludwig Tieck\r\nErinnerungen aus dem Leben des Dichters nach dessen mündlichen und schriftlichen Mitteilungen', 'Köpke, Rudolf (Ernst Rudolf Anastasius)', '2019-01-03', 4, 'https://www.gutenberg.org/ebooks/58607', 'de', 5725), +(11311, 'The Life and Most Surprising Adventures of Robinson Crusoe, of York, Mariner (1801)', 'Defoe, Daniel', '2004-04-01', 197, 'https://www.gutenberg.org/ebooks/11866', 'en', 323), +(11312, 'The Puddleford Papers; Or, Humors of the West', 'Riley, Henry Hiram', '2011-07-10', 14, 'https://www.gutenberg.org/ebooks/36678', 'en', 770), +(11313, 'Lapsi', 'Leffler, Anne Charlotte', '2010-07-11', 16, 'https://www.gutenberg.org/ebooks/33138', 'fi', 2168), +(11314, 'Kertomuksia Suomen historiasta IV\nSigismund ja Kaarle IX', 'Krohn, Julius', '2014-02-09', 21, 'https://www.gutenberg.org/ebooks/44856', 'fi', 1578), +(11315, 'The Flood', 'Anonymous', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11268', 'en', 5726), +(11316, 'Suomalaisen kirjallisuuden historia I: Kalevala', 'Krohn, Julius', '2014-06-15', 13, 'https://www.gutenberg.org/ebooks/45984', 'fi', 5727), +(11317, 'Jeremiah: A Drama in Nine Scenes', 'Zweig, Stefan', '2012-04-09', 30, 'https://www.gutenberg.org/ebooks/39402', 'en', 5728), +(11318, 'Uranie', 'Flammarion, Camille', '2016-08-29', 30, 'https://www.gutenberg.org/ebooks/52933', 'fr', 298), +(11319, 'The Battle of Sempach', 'Walser, Robert', '2012-11-30', 31, 'https://www.gutenberg.org/ebooks/41518', 'en', 4446), +(11320, 'Lollingdon Downs, and Other Poems, with Sonnets', 'Masefield, John', '2018-12-09', 11, 'https://www.gutenberg.org/ebooks/58435', 'en', 1594), +(11321, 'A briefe discription of New England and the severall townes therein\ntogether with the present government thereof', 'Maverick, Samuel', '2010-10-25', 5, 'https://www.gutenberg.org/ebooks/33904', 'en', 5729), +(11322, 'Denis Dent: A Novel', 'Hornung, E. W. (Ernest William)', '2011-10-02', 22, 'https://www.gutenberg.org/ebooks/37598', 'en', 5730), +(11323, 'Stories from Aulus Gellius\nBeing Selections And Adaptations From The Noctes Atticae', 'Gellius, Aulus', '2008-06-21', 37, 'https://www.gutenberg.org/ebooks/25861', 'la', 3450), +(11324, 'Hampstead and Marylebone', 'Mitton, G. E. (Geraldine Edith)', '2009-08-15', 44, 'https://www.gutenberg.org/ebooks/29690', 'en', 5731), +(11325, 'A Master of Mysteries', 'Meade, L. T.', '2007-08-08', 47, 'https://www.gutenberg.org/ebooks/22278', 'en', 128), +(11326, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 3\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 7, 'https://www.gutenberg.org/ebooks/3886', 'en', 4453), +(11327, 'Emma', 'Austen, Jane', '2006-11-18', 145, 'https://www.gutenberg.org/ebooks/19839', 'en', 757), +(11328, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 04: Return to Venice', 'Casanova, Giacomo', '2004-12-10', 28, 'https://www.gutenberg.org/ebooks/2954', 'en', 4391), +(11329, 'The Feather', 'Ford, Ford Madox', '2015-12-10', 29, 'https://www.gutenberg.org/ebooks/50658', 'en', 1007), +(11330, 'Memorials of Old London. Volume 1 (of 2)', NULL, '2009-05-09', 21, 'https://www.gutenberg.org/ebooks/28742', 'en', 5732), +(11331, 'Grundriß der menschlichen Erblichkeitslehre und Rassenhygiene (2/2)\nMenschliche Auslese und Rassenhygiene', 'Lenz, Fritz', '2015-08-24', 28, 'https://www.gutenberg.org/ebooks/49775', 'de', 1041), +(11332, 'Scientific American Supplement, No. 363, December 16, 1882', 'Various', '2005-07-01', 5, 'https://www.gutenberg.org/ebooks/8452', 'en', 210), +(11333, 'Skyrider', 'Bower, B. M.', '2005-10-14', 49, 'https://www.gutenberg.org/ebooks/16871', 'en', 315), +(11334, 'The Rose of Dawn: A Tale of the South Sea', 'Whitney, Helen Hay', '2006-08-07', 10, 'https://www.gutenberg.org/ebooks/19005', 'en', 8), +(11335, 'Miscellaneous Writings and Speeches — Volume 2', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 34, 'https://www.gutenberg.org/ebooks/2168', 'en', 472), +(11336, 'Anti-Slavery Poems and Songs of Labor and Reform, Complete\r\nVolume III of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 25, 'https://www.gutenberg.org/ebooks/9580', 'en', 4777), +(11337, 'Boys\' and Girls\' Biography of Abraham Lincoln', 'Shaw, James H.', '2011-01-20', 5, 'https://www.gutenberg.org/ebooks/35009', 'en', 5733), +(11338, 'The Comic Latin Grammar: A new and facetious introduction to the Latin tongue', 'Leigh, Percival', '2009-07-19', 34, 'https://www.gutenberg.org/ebooks/29456', 'en', 564), +(11339, 'Moscow: A Story of the French Invasion of 1812', 'Whishaw, Frederick', '2013-06-17', 7, 'https://www.gutenberg.org/ebooks/42967', 'en', 5734), +(11340, 'Arms and the Woman', 'MacGrath, Harold', '2005-12-19', 16, 'https://www.gutenberg.org/ebooks/17359', 'en', 61), +(11341, 'O Inferno', 'Callet, Auguste', '2009-04-22', 15, 'https://www.gutenberg.org/ebooks/28584', 'pt', 2091), +(11342, 'Cyrano de Bergerac: Viisinäytöksinen runomittainen sankarinäytelmä', 'Rostand, Edmond', '2017-05-28', 11, 'https://www.gutenberg.org/ebooks/54802', 'fi', 4762), +(11343, 'Windfalls', 'Gardiner, A. G. (Alfred George)', '2014-11-22', 70, 'https://www.gutenberg.org/ebooks/47429', 'en', 3835), +(11344, 'History of Prince Edward Island', 'Campbell, Duncan', '2011-04-14', 16, 'https://www.gutenberg.org/ebooks/35835', 'en', 5735), +(11345, 'Image of the Gods', 'Nourse, Alan Edward', '2007-10-03', 42, 'https://www.gutenberg.org/ebooks/22882', 'en', 5065), +(11346, 'The Abbot\'s Ghost, or Maurice Treherne\'s Temptation: A Christmas Story', 'Alcott, Louisa May', '2005-08-01', 78, 'https://www.gutenberg.org/ebooks/8694', 'en', 585), +(11347, 'The Ashiel mystery: A Detective Story', 'Bryce, Charles, Mrs.', '2006-01-01', 217, 'https://www.gutenberg.org/ebooks/9746', 'en', 61), +(11348, 'Husks', 'Harland, Marion', '2015-03-11', 9, 'https://www.gutenberg.org/ebooks/48461', 'en', 50), +(11349, 'Chaucer\'s Works, Volume 1 (of 7) — Romaunt of the Rose; Minor Poems', 'Chaucer, Geoffrey', '2013-07-03', 74, 'https://www.gutenberg.org/ebooks/43089', 'en', 4610), +(11350, '三國志演義', 'Luo, Guanzhong', '2007-12-21', 329, 'https://www.gutenberg.org/ebooks/23950', 'zh', 5736), +(11351, 'Le conte d\'hiver', 'Shakespeare, William', '2006-05-04', 19, 'https://www.gutenberg.org/ebooks/18311', 'fr', 5737), +(11352, 'Coming Home\n1916', 'Wharton, Edith', '2008-01-17', 21, 'https://www.gutenberg.org/ebooks/24349', 'en', 179), +(11353, 'Slavery and the Constitution', 'Bowditch, William I. (William Ingersoll)', '2012-01-30', 20, 'https://www.gutenberg.org/ebooks/38716', 'en', 125), +(11354, 'History of the United Netherlands, 1592-94', 'Motley, John Lothrop', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/4865', 'en', 3372), +(11355, 'Im Hause des Kommerzienrates.', 'Marlitt, E. (Eugenie)', '2018-03-18', 10, 'https://www.gutenberg.org/ebooks/56769', 'de', 4219), +(11356, 'Manners, Customs, and Dress During the Middle Ages and During the Renaissance Period', 'Jacob, P. L.', '2004-02-01', 137, 'https://www.gutenberg.org/ebooks/10940', 'en', 2555), +(11357, 'The Son of His Father; vol. 2/3', 'Oliphant, Mrs. (Margaret)', '2019-06-10', 59, 'https://www.gutenberg.org/ebooks/59721', 'en', 2079), +(11358, 'Miscellaneous Studies; a series of essays', 'Pater, Walter', '2003-05-01', 49, 'https://www.gutenberg.org/ebooks/4059', 'en', 20), +(11359, 'Gardening for the Million', 'Pink, Alfred', '2004-04-01', 72, 'https://www.gutenberg.org/ebooks/11892', 'en', 1413), +(11360, 'Ιστορία της Ελληνικής Επαναστάσεως, Τόμος Β', 'Trikoupes, Spyridon', '2012-01-07', 17, 'https://www.gutenberg.org/ebooks/38524', 'el', 4493), +(11361, 'Elizabeth Ann\'s Houseboat', 'Lawrence, Josephine', '2016-12-27', 10, 'https://www.gutenberg.org/ebooks/53815', 'en', 389), +(11362, 'The Ballad of the White Horse', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 396, 'https://www.gutenberg.org/ebooks/1719', 'en', 5738), +(11363, 'Omega: The Last days of the World', 'Flammarion, Camille', '2018-07-12', 26, 'https://www.gutenberg.org/ebooks/57489', 'en', 26), +(11364, 'L\'âme enchantée - Annette et Sylvie - Volume 1', 'Rolland, Romain', '2014-06-14', 9, 'https://www.gutenberg.org/ebooks/45970', 'fr', 687), +(11365, 'Avioliittoja: Kokoelma aviotarinoita', 'Chekhov, Anton Pavlovich', '2016-09-11', 5, 'https://www.gutenberg.org/ebooks/53029', 'fi', 147), +(11366, 'Mediæval Wales\nChiefly in the Twelfth and Thirteenth Centuries: Six Popular Lectures', 'Little, A. G. (Andrew George)', '2008-03-29', 20, 'https://www.gutenberg.org/ebooks/24947', 'en', 5739), +(11367, 'A Walk through Leicester\nbeing a Guide to Strangers', 'Watts, Susannah', '2008-06-24', 12, 'https://www.gutenberg.org/ebooks/25895', 'en', 5740), +(11368, 'Valkolilja', 'Beskow, Elisabeth Maria', '2019-05-15', 4, 'https://www.gutenberg.org/ebooks/59513', 'fi', 2168), +(11369, 'Daughter of the Night', 'Shaver, Richard S.', '2010-06-15', 32, 'https://www.gutenberg.org/ebooks/32822', 'en', 580), +(11370, 'De Zonderlinge Lotgevallen van Gil Blas van Santillano, deel 1 van 2\r\nDe Spaansche Avonturier', 'Le Sage, Alain René', '2007-05-09', 12, 'https://www.gutenberg.org/ebooks/21409', 'nl', 1211), +(11371, 'Notes and Queries, Number 218, December 31, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-08-10', 13, 'https://www.gutenberg.org/ebooks/29664', 'en', 105), +(11372, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 13', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 12, 'https://www.gutenberg.org/ebooks/3872', 'en', 1870), +(11373, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 717, September 22, 1877', 'Various', '2015-08-25', 5, 'https://www.gutenberg.org/ebooks/49781', 'en', 18), +(11374, 'Motors', 'Zerbe, James Slough', '2013-03-19', 6, 'https://www.gutenberg.org/ebooks/42369', 'en', 5741), +(11375, 'Aline et Valcour, tome 1\nou le roman philosophique', 'Sade, marquis de', '2005-10-16', 197, 'https://www.gutenberg.org/ebooks/16885', 'fr', 1414), +(11376, 'Frontier Stories', 'Harte, Bret', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/12419', 'en', 315), +(11377, 'Nouvelles mille et une nuits', 'Stevenson, Robert Louis', '2006-04-05', 21, 'https://www.gutenberg.org/ebooks/18123', 'fr', 179), +(11378, 'The Secret of Heroism: A Memoir of Henry Albert Harper', 'King, William Lyon Mackenzie', '2019-08-01', 384, 'https://www.gutenberg.org/ebooks/60039', 'en', 5742), +(11379, 'On the Sublime', 'Longinus, active 1st century', '2006-03-10', 209, 'https://www.gutenberg.org/ebooks/17957', 'en', 5743), +(11380, 'Ringan Gilhaize, or, The Covenanters', 'Galt, John', '2009-12-24', 20, 'https://www.gutenberg.org/ebooks/30749', 'en', 5744), +(11381, 'Poems of Nature, Poems Subjective and Reminiscent and Religious Poems, Complete\r\nVolume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 35, 'https://www.gutenberg.org/ebooks/9574', 'en', 350), +(11382, 'The Khaki Boys at the Front; or, Shoulder to Shoulder in the Trenches', 'Bates, Gordon', '2015-04-06', 7, 'https://www.gutenberg.org/ebooks/48653', 'en', 1753), +(11383, 'The Conflict of Religions in the Early Roman Empire', 'Glover, T. R. (Terrot Reaveley)', '2012-03-10', 19, 'https://www.gutenberg.org/ebooks/39092', 'en', 5745), +(11384, 'History of the Negro Race in America from 1619 to 1880. Vol. 2\r\nNegroes as Slaves, as Soldiers, and as Citizens', 'Williams, George Washington', '2007-06-18', 80, 'https://www.gutenberg.org/ebooks/21851', 'en', 3302), +(11385, 'Narcissa, or the Road to Rome; In Verona', 'Richards, Laura Elizabeth Howe', '2012-10-26', 7, 'https://www.gutenberg.org/ebooks/41188', 'en', 48), +(11386, 'Robert Hardy\'s Seven Days: A Dream and Its Consequences', 'Sheldon, Charles M.', '2007-04-04', 17, 'https://www.gutenberg.org/ebooks/20983', 'en', 942), +(11387, 'Che cosa è l\'amore?', 'Panzini, Alfredo', '2011-11-26', 20, 'https://www.gutenberg.org/ebooks/38140', 'it', 61), +(11388, 'Journey Work', 'Dryfoos, Dave', '2019-02-17', 20, 'https://www.gutenberg.org/ebooks/58899', 'en', 451), +(11389, 'Non fare ad altri...', 'Bracco, Roberto', '2011-11-05', 6, 'https://www.gutenberg.org/ebooks/37934', 'it', 407), +(11390, 'Introduction to the scientific study of education', 'Judd, Charles Hubbard', '2018-04-02', 56, 'https://www.gutenberg.org/ebooks/56903', 'en', 5746), +(11391, 'The Best Man', 'MacGrath, Harold', '2014-04-29', 27, 'https://www.gutenberg.org/ebooks/45528', 'en', 500), +(11392, 'The Lone Wolf Returns', 'Vance, Louis Joseph', '2019-04-01', 29, 'https://www.gutenberg.org/ebooks/59177', 'en', 3657), +(11393, 'Cecilia de Noël', 'Falconer, Lanoe', '2005-03-04', 15, 'https://www.gutenberg.org/ebooks/15258', 'en', 3499), +(11394, 'The Rival Submarines', 'Westerman, Percy F. (Percy Francis)', '2013-03-20', 173, 'https://www.gutenberg.org/ebooks/40866', 'en', 324), +(11395, 'Gesänge und Inschriften', 'Whitman, Walt', '2011-08-16', 17, 'https://www.gutenberg.org/ebooks/37108', 'de', 5747), +(11396, 'The True Citizen: How to Become One', 'Markwick, William Fisher', '2004-07-01', 10, 'https://www.gutenberg.org/ebooks/6158', 'en', 5748), +(11397, 'Dere Mable: Love Letters of a Rookie', 'Streeter, Edward', '2004-11-09', 21, 'https://www.gutenberg.org/ebooks/13993', 'en', 5749), +(11398, 'Harper\'s Young People, October 19, 1880\nAn Illustrated Weekly', 'Various', '2009-06-22', 10, 'https://www.gutenberg.org/ebooks/29200', 'en', 479), +(11399, 'John Marr and Other Poems', 'Melville, Herman', '2004-07-07', 78, 'https://www.gutenberg.org/ebooks/12841', 'en', 1118), +(11400, 'Telling Fortunes By Tea Leaves: How to Read Your Fate in a Teacup', 'Kent, Cicely', '2004-11-01', 34, 'https://www.gutenberg.org/ebooks/6964', 'en', 5750), +(11401, 'Madame Flirt\nA Romance of \'The Beggar\'s Opera\'', 'Pearce, Charles Edward', '2006-06-10', 17, 'https://www.gutenberg.org/ebooks/18547', 'en', 5751), +(11402, 'Kuolematon kuningatar', 'Haggard, H. Rider (Henry Rider)', '2017-05-06', 11, 'https://www.gutenberg.org/ebooks/54668', 'fi', 5752), +(11403, 'The Conquest of Canaan', 'Tarkington, Booth', '1996-04-01', 59, 'https://www.gutenberg.org/ebooks/483', 'en', 3016), +(11404, 'Die Juden\nEin Lustspiel in einem Aufzuge verfertiget im Jahre 1749.', 'Lessing, Gotthold Ephraim', '2005-10-01', 32, 'https://www.gutenberg.org/ebooks/9110', 'de', 907), +(11405, 'The Lady of North Star', 'Binns, Ottwell', '2015-02-11', 14, 'https://www.gutenberg.org/ebooks/48237', 'en', 5753), +(11406, 'Life: Poem XXI\r\nA Book', 'Dickinson, Emily', '2008-08-01', 11, 'https://www.gutenberg.org/ebooks/26248', 'en', 178), +(11407, 'Tom Slade, Motorcycle Dispatch Bearer', 'Fitzhugh, Percy Keese', '2006-10-08', 33, 'https://www.gutenberg.org/ebooks/19495', 'en', 2994); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(11408, 'Histoire de l\'Émigration pendant la Révolution Française\nTome 2-Du 18 fructidor au 18 brumaire', 'Daudet, Ernest', '2010-01-10', 14, 'https://www.gutenberg.org/ebooks/30923', 'fr', 1536), +(11409, 'Les Contemporains, 7ème Série\r\nÉtudes et Portraits Littéraires', 'Lemaître, Jules', '2007-11-16', 9, 'https://www.gutenberg.org/ebooks/23508', 'fr', 2650), +(11410, 'Life of Napoleon Bonaparte, Volume III.', 'Scott, Walter', '2015-05-02', 26, 'https://www.gutenberg.org/ebooks/48839', 'en', 1941), +(11411, 'Gekken', 'Looy, Jacobus van', '2009-02-04', 14, 'https://www.gutenberg.org/ebooks/27994', 'nl', 5388), +(11412, 'Iets over de grammaticale beoefening der Friesche taal in haar geheelen omvang', 'Telting, Albartus', '2008-10-08', 6, 'https://www.gutenberg.org/ebooks/26846', 'nl', 5754), +(11413, '海國春秋', 'Wang, Ji', '2009-06-04', 44, 'https://www.gutenberg.org/ebooks/29032', 'zh', 1003), +(11414, 'Greek Dress\nA Study of the Costumes Worn in Ancient Greece, from Pre-Hellenic Times to the Hellenistic Age', 'Abrahams, Ethel Beatrice', '2016-02-05', 33, 'https://www.gutenberg.org/ebooks/51128', 'en', 5755), +(11415, 'The Nation in a Nutshell', 'Towle, George M. (George Makepeace)', '2005-11-01', 17, 'https://www.gutenberg.org/ebooks/9322', 'en', 5756), +(11416, 'Jumalan teillä', 'Bjørnson, Bjørnstjerne', '2015-01-17', 6, 'https://www.gutenberg.org/ebooks/48005', 'fi', 7), +(11417, 'Chambers\'s Edinburgh Journal, No. 435\nVolume 17, New Series, May 1, 1852', 'Various', '2006-07-07', 8, 'https://www.gutenberg.org/ebooks/18775', 'en', 18), +(11418, 'James Geikie, the Man and the Geologist', 'Flett, J. S. (John Smith), Sir', '2015-01-04', 16, 'https://www.gutenberg.org/ebooks/47871', 'en', 5757), +(11419, 'Erdélyi képek', 'Jókai, Mór', '2017-09-20', 9, 'https://www.gutenberg.org/ebooks/55588', 'hu', 1532), +(11420, 'When Men Grew Tall, or The Story of Andrew Jackson', 'Lewis, Alfred Henry', '2016-05-01', 16, 'https://www.gutenberg.org/ebooks/51914', 'en', 5758), +(11421, 'Arms and the Man', 'Shaw, Bernard', '2003-01-01', 590, 'https://www.gutenberg.org/ebooks/3618', 'en', 5759), +(11422, 'Sutherland and Caithness in Saga-Time; or, The Jarls and The Freskyns', 'Gray, James', '2005-05-18', 30, 'https://www.gutenberg.org/ebooks/15856', 'en', 5760), +(11423, 'The Minute Boys of York Town', 'Otis, James', '2010-06-01', 15, 'https://www.gutenberg.org/ebooks/32648', 'en', 2843), +(11424, 'Poems', 'Hay, John', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/10518', 'en', 8), +(11425, 'Significant Achievements in Space Bioscience 1958-1964', 'United States. National Aeronautics and Space Administration', '2012-07-17', 8, 'https://www.gutenberg.org/ebooks/40268', 'en', 5761), +(11426, 'A General History and Collection of Voyages and Travels - Volume 05\r\nArranged in Systematic Order: Forming a Complete History of the\r\nOrigin and Progress of Navigation, Discovery, and Commerce, by Sea\r\nand Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2005-02-08', 35, 'https://www.gutenberg.org/ebooks/14984', 'en', 885), +(11427, 'The Character of the Jew Books\r\nBeing, a Defence of the Natural Innocence of Man, Against Kings and Priests or Tyrants and Impostors', 'Carlile, Richard', '2011-12-22', 15, 'https://www.gutenberg.org/ebooks/38372', 'en', 1302), +(11428, 'Slow Burn', 'Still, Henry', '2019-04-24', 56, 'https://www.gutenberg.org/ebooks/59345', 'en', 5762), +(11429, 'Viisauden sanoja: Mieleen pantavia kertoelmia', 'Spurgeon, C. H. (Charles Haddon)', '2018-11-17', 15, 'https://www.gutenberg.org/ebooks/58297', 'fi', 5763), +(11430, 'Tales of Troy: Ulysses, the Sacker of Cities', 'Lang, Andrew', '1999-11-01', 32, 'https://www.gutenberg.org/ebooks/1973', 'en', 2139), +(11431, 'Kuuluisia naisia 1\nMaria Teresia - Johanna d\'Arc', 'Fries, Ellen', '2005-06-15', 16, 'https://www.gutenberg.org/ebooks/16072', 'fi', 5764), +(11432, 'If You Touch Them They Vanish', 'Morris, Gouverneur', '2007-08-05', 27, 'https://www.gutenberg.org/ebooks/22247', 'en', 580), +(11433, 'Everyman\'s Land', 'Williamson, C. N. (Charles Norris)', '2006-11-14', 20, 'https://www.gutenberg.org/ebooks/19806', 'en', 579), +(11434, 'The Louisa Alcott Reader: a Supplementary Reader for the Fourth Year of School', 'Alcott, Louisa May', '2005-02-01', 57, 'https://www.gutenberg.org/ebooks/7425', 'en', 388), +(11435, 'Rhymes for the Young Folk', 'Allingham, William', '2014-08-27', 38, 'https://www.gutenberg.org/ebooks/46702', 'en', 859), +(11436, 'The Moghul', 'Hoover, Thomas', '2010-11-14', 35, 'https://www.gutenberg.org/ebooks/34322', 'en', 98), +(11437, 'George Silverman\'s Explanation', 'Dickens, Charles', '1997-02-01', 99, 'https://www.gutenberg.org/ebooks/810', 'en', 264), +(11438, 'Orthography\nAs Outlined in the State Course of Study for Illinois', 'Cavins, Elmer W. (Elmer Warren)', '2007-11-07', 24, 'https://www.gutenberg.org/ebooks/23395', 'en', 4211), +(11439, 'Jörn Uhl: Romaani', 'Frenssen, Gustav', '2015-12-11', 14, 'https://www.gutenberg.org/ebooks/50667', 'fi', 1103), +(11440, 'Original Short Stories — Volume 09', 'Maupassant, Guy de', '2004-10-03', 43, 'https://www.gutenberg.org/ebooks/3085', 'en', 1112), +(11441, 'Nathan Hale', 'Root, Jean Christie', '2010-03-15', 19, 'https://www.gutenberg.org/ebooks/31650', 'en', 5765), +(11442, 'Poems', 'Merrill, Clara A.', '2017-08-09', 8, 'https://www.gutenberg.org/ebooks/55315', 'en', 178), +(11443, 'In the Great Steep\'s Garden', 'Roberts, Elizabeth Madox', '2009-01-07', 7, 'https://www.gutenberg.org/ebooks/27735', 'en', 8), +(11444, 'A Heroine of France: The Story of Joan of Arc', 'Everett-Green, Evelyn', '2004-09-19', 9, 'https://www.gutenberg.org/ebooks/13500', 'en', 5766), +(11445, 'La Gaviota: A Spanish novel', 'Caballero, Fernán', '2015-04-13', 30, 'https://www.gutenberg.org/ebooks/48698', 'en', 480), +(11446, 'The Perambulations of a Bee and a Butterfly,\r\nIn which are delineated those smaller traits of character which escape the observation of larger spectators.', 'Sandham, Elizabeth', '2013-07-20', 19, 'https://www.gutenberg.org/ebooks/43270', 'en', 1817), +(11447, 'Female Suffrage: A Letter to the Christian Women of America', 'Cooper, Susan Fenimore', '2000-04-01', 19, 'https://www.gutenberg.org/ebooks/2157', 'en', 5767), +(11448, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 2 - (A suite - C)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 18, 'https://www.gutenberg.org/ebooks/30782', 'fr', 1352), +(11449, 'Junius Unmasked\r\nOr, Thomas Paine the author of the Letters of Junius and the Declaration of Independence', 'Moody, Joel', '2010-07-07', 3, 'https://www.gutenberg.org/ebooks/33107', 'en', 5768), +(11450, 'Royalty in All Ages\r\nThe Amusements, Eccentricities, Accomplishments, Superstitions and Frolics of the Kings and Queens of Europe', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2018-07-04', 23, 'https://www.gutenberg.org/ebooks/57442', 'en', 5769), +(11451, 'Histoire de la Révolution française, Tome 03', 'Thiers, Adolphe', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/10385', 'fr', 1536), +(11452, 'Kovina aikoina: Kertomus Suomen viimeisten nälkävuosien ajoilta', 'Tavaststjerna, Karl August', '2014-02-10', 12, 'https://www.gutenberg.org/ebooks/44869', 'fi', 116), +(11453, 'A Study of Recent Earthquakes', 'Davison, Charles', '2008-04-12', 31, 'https://www.gutenberg.org/ebooks/25062', 'en', 4883), +(11454, 'Little Folks Astray', 'May, Sophie', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11257', 'en', 195), +(11455, 'The Rush for the Spoil (La Curée): A Realistic Novel', 'Zola, Émile', '2018-02-17', 23, 'https://www.gutenberg.org/ebooks/56590', 'en', 59), +(11456, 'Highland Targets and Other Shields', 'Drummond, James', '2012-12-01', 10, 'https://www.gutenberg.org/ebooks/41527', 'en', 5770), +(11457, 'Treatise on Light\r\nIn which are explained the causes of that which occurs in reflexion, & in refraction and particularly in the strange refraction of Iceland crystal', 'Huygens, Christiaan', '2005-01-18', 96, 'https://www.gutenberg.org/ebooks/14725', 'en', 5771), +(11458, 'Ade\'s Fables', 'Ade, George', '2007-02-02', 36, 'https://www.gutenberg.org/ebooks/20510', 'en', 1141), +(11459, 'Richard Carvel — Volume 08', 'Churchill, Winston', '2004-10-18', 10, 'https://www.gutenberg.org/ebooks/5372', 'en', 5772), +(11460, 'With Wellington in Spain: A Story of the Peninsula', 'Brereton, F. S. (Frederick Sadleir)', '2013-10-27', 17, 'https://www.gutenberg.org/ebooks/44055', 'en', 5773), +(11461, 'The Household of Sir Thomas More', 'Manning, Anne', '2014-03-22', 26, 'https://www.gutenberg.org/ebooks/45187', 'en', 984), +(11462, 'Privateers and Privateering', 'Statham, Edward Phillips', '2011-06-20', 15, 'https://www.gutenberg.org/ebooks/36475', 'en', 5774), +(11463, 'Fairview Boys at Camp Mystery; or, the Old Hermit and His Secret', 'Gordon, Frederick', '2016-05-22', 9, 'https://www.gutenberg.org/ebooks/52130', 'en', 3), +(11464, 'Scenes in the West; or, The Sunday-School and Temperance', 'Anonymous', '2018-08-11', 8, 'https://www.gutenberg.org/ebooks/57670', 'en', 519), +(11465, 'Vigorish', 'Berryman, John', '2008-01-21', 34, 'https://www.gutenberg.org/ebooks/24382', 'en', 179), +(11466, 'Worrying Won\'t Win', 'Glass, Montague', '2010-08-03', 62, 'https://www.gutenberg.org/ebooks/33335', 'en', 2328), +(11467, 'Dave Dawson with the R.A.F.', 'Bowen, Robert Sidney', '2012-12-27', 28, 'https://www.gutenberg.org/ebooks/41715', 'en', 1064), +(11468, '合錦回文傳', 'Li, Yu', '2008-04-30', 35, 'https://www.gutenberg.org/ebooks/25250', 'zh', 5698), +(11469, 'Aunt Mary\'s Primer\r\nAdorned with a Hundred and Twenty Pretty Pictures', 'Anonymous', '2004-02-01', 43, 'https://www.gutenberg.org/ebooks/11065', 'en', 294), +(11470, 'The World\'s Best Books : A Key to the Treasures of Literature', 'Parsons, Frank', '2011-10-19', 15, 'https://www.gutenberg.org/ebooks/37795', 'en', 5775), +(11471, 'He Knew He Was Right', 'Trollope, Anthony', '2004-02-01', 97, 'https://www.gutenberg.org/ebooks/5140', 'en', 45), +(11472, 'Mr. Punch\'s History of Modern England, Vol. 1 (of 4).—1841-1857', 'Graves, Charles L. (Charles Larcom)', '2013-11-23', 22, 'https://www.gutenberg.org/ebooks/44267', 'en', 5499), +(11473, 'France and England in North America, Part VI : Montcalm and Wolfe', 'Parkman, Francis', '2004-12-29', 71, 'https://www.gutenberg.org/ebooks/14517', 'en', 5776), +(11474, 'Rogues\' Haven', 'Bridges, Roy', '2019-01-07', 10, 'https://www.gutenberg.org/ebooks/58638', 'en', 1380), +(11475, 'A Little Girl in Old Salem', 'Douglas, Amanda M.', '2007-03-01', 25, 'https://www.gutenberg.org/ebooks/20722', 'en', 5777), +(11476, 'Those Brewster Children', 'Kingsley, Florence Morse', '2016-06-11', 14, 'https://www.gutenberg.org/ebooks/52302', 'en', 48), +(11477, 'Isaac T. Hopper: A True Life', 'Child, Lydia Maria', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11859', 'en', 5778), +(11478, 'L\'Illustration, No. 3270, 28 Octobre 1905', 'Various', '2011-07-07', 10, 'https://www.gutenberg.org/ebooks/36647', 'fr', 150), +(11479, 'The Monikins', 'Cooper, James Fenimore', '2003-05-01', 34, 'https://www.gutenberg.org/ebooks/4092', 'en', 580), +(11480, 'Pelham — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7617', 'en', 323), +(11481, 'Cornish Worthies: Sketches of Some Eminent Cornish Men and Families, Volume 2 (of 2)', 'Tregellas, Walter H. (Walter Hawken)', '2014-08-08', 18, 'https://www.gutenberg.org/ebooks/46530', 'en', 5779), +(11482, 'Trasfigurazione: Novella', 'Aleramo, Sibilla', '2016-03-28', 35, 'https://www.gutenberg.org/ebooks/51587', 'it', 474), +(11483, 'La Vénus d\'Ille', 'Mérimée, Prosper', '2005-07-07', 29, 'https://www.gutenberg.org/ebooks/16240', 'fr', 5780), +(11484, 'The Life of Duty, v. 2\nA year\'s plain sermons on the Gospels or Epistles', 'Wilmot-Buxton, H. J. (Harry John)', '2007-07-15', 16, 'https://www.gutenberg.org/ebooks/22075', 'en', 5781), +(11485, 'O Perfect Love: Wedding Song', NULL, '2005-12-25', 39, 'https://www.gutenberg.org/ebooks/17392', 'en', 5782), +(11486, 'Eeva: Näytelmä neljässä näytöksessä', 'Hostrup, C. (Christian)', '2015-11-14', 10, 'https://www.gutenberg.org/ebooks/50455', 'fi', 1552), +(11487, 'Deadfalls and Snares\nA Book of Instruction for Trappers About These and Other Home-Made Traps', 'Harding, A. R. (Arthur Robert)', '2010-10-21', 68, 'https://www.gutenberg.org/ebooks/34110', 'en', 5783), +(11488, 'A Picture of the Desolated States, and the Work of Restoration. 1865-1868', 'Trowbridge, J. T. (John Townsend)', '2017-07-16', 13, 'https://www.gutenberg.org/ebooks/55127', 'en', 5784), +(11489, 'Vitality Supreme', 'Macfadden, Bernarr', '2006-09-08', 61, 'https://www.gutenberg.org/ebooks/19208', 'en', 5785), +(11490, 'Oliver Goldsmith', 'Buckland, E. S. Lang', '2010-03-01', 2, 'https://www.gutenberg.org/ebooks/31462', 'en', 5786), +(11491, 'Viimeiset luostarinasukkaat: Romaani', 'Wilkuna, Kyösti', '2015-08-02', 12, 'https://www.gutenberg.org/ebooks/49578', 'fi', 175), +(11492, 'The History of Tasmania , Volume II', 'West, John', '2007-10-02', 34, 'https://www.gutenberg.org/ebooks/22849', 'en', 5787), +(11493, 'Out of the Hurly-Burly; Or, Life in an Odd Corner', 'Clark, Charles Heber', '2013-02-25', 4, 'https://www.gutenberg.org/ebooks/42190', 'en', 50), +(11494, 'The Expert Maid-Servant', 'Herrick, Christine Terhune', '2013-06-26', 21, 'https://www.gutenberg.org/ebooks/43042', 'en', 5788), +(11495, 'The Princess De Montpensier', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '2000-10-01', 38, 'https://www.gutenberg.org/ebooks/2365', 'en', 3208), +(11496, 'The Giant\'s Robe', 'Anstey, F.', '2008-12-12', 30, 'https://www.gutenberg.org/ebooks/27507', 'en', 61), +(11497, 'Das liebe Nest', 'Dehmel, Paula', '2004-10-13', 52, 'https://www.gutenberg.org/ebooks/13732', 'de', 5789), +(11498, 'Erinnerungen an Leo N. Tolstoi', 'Tolstaia, A. A. (Aleksandra Andreevna), grafinia', '2012-11-16', 16, 'https://www.gutenberg.org/ebooks/41371', 'de', 2372), +(11499, 'The Next Time We Die', 'Williams, Robert Moore', '2010-06-04', 52, 'https://www.gutenberg.org/ebooks/32683', 'en', 67), +(11500, 'Christmas Roses', 'Lawson, Lizzie', '2008-05-29', 21, 'https://www.gutenberg.org/ebooks/25634', 'en', 859), +(11501, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 271, September 1, 1827', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11401', 'en', 133), +(11502, 'Hazai rejtelmek: Regény (2. kötet)', 'Kuthy, Lajos', '2018-05-25', 1, 'https://www.gutenberg.org/ebooks/57214', 'hu', 189), +(11503, 'The Count of Monte Cristo, Illustrated', 'Dumas, Alexandre', '1998-01-01', 7478, 'https://www.gutenberg.org/ebooks/1184', 'en', 98), +(11504, 'A Treatise on Etching', 'Lalanne, Maxime', '2010-09-17', 6, 'https://www.gutenberg.org/ebooks/33751', 'en', 5790), +(11505, 'Burr Junior', 'Fenn, George Manville', '2007-05-04', 14, 'https://www.gutenberg.org/ebooks/21294', 'en', 1655), +(11506, 'A History of the United States', 'Adams, Charles Kendall', '2016-08-10', 14, 'https://www.gutenberg.org/ebooks/52766', 'en', 207), +(11507, 'The Boy with Wings', 'Ruck, Berta', '2011-05-27', 26, 'https://www.gutenberg.org/ebooks/36223', 'en', 5791), +(11508, 'The Bride of the Nile — Volume 08', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5524', 'en', 4941), +(11509, 'Chats on Cottage and Farmhouse Furniture', 'Hayden, Arthur', '2014-01-06', 24, 'https://www.gutenberg.org/ebooks/44603', 'en', 5496), +(11510, 'The Romanization of Roman Britain', 'Haverfield, F. (Francis)', '2004-11-26', 36, 'https://www.gutenberg.org/ebooks/14173', 'en', 1161), +(11511, 'Bell\'s Cathedrals: The Cathedral Church of Winchester\nA Description of Its Fabric and a Brief History of the Episcopal See', 'Sergeant, Philip Walsingham', '2007-01-12', 17, 'https://www.gutenberg.org/ebooks/20346', 'en', 5792), +(11512, 'Beaumont and Fletcher\'s Works, Vol. 04 of 10', 'Fletcher, John', '2015-09-21', 24, 'https://www.gutenberg.org/ebooks/50031', 'en', 1088), +(11513, 'Cradock Nowell: A Tale of the New Forest. Vol. 3 (of 3)', 'Blackmore, R. D. (Richard Doddridge)', '2014-10-09', 27, 'https://www.gutenberg.org/ebooks/47086', 'en', 5793), +(11514, 'In Love With the Czarina, and Other Stories', 'Jókai, Mór', '2010-12-05', 19, 'https://www.gutenberg.org/ebooks/34574', 'en', 179), +(11515, '搜神記 volume 18-20', 'Gan, Bao, active 317-322', '2005-01-01', 15, 'https://www.gutenberg.org/ebooks/7273', 'zh', 4247), +(11516, 'Reise in Südamerika. Zweiter Band.', 'Bibra, Ernst, Freiherr von', '2014-06-30', 13, 'https://www.gutenberg.org/ebooks/46154', 'de', 227), +(11517, 'No and Yes', 'Eddy, Mary Baker', '2005-08-30', 34, 'https://www.gutenberg.org/ebooks/16624', 'en', 1206), +(11518, 'The Choice of Life', 'Leblanc, Georgette', '2007-08-26', 23, 'https://www.gutenberg.org/ebooks/22411', 'en', 61), +(11519, 'The Mentor: The Contest for North America, Vol. 1, No. 35, Serial No. 35\r\nThe Story of America in Pictures', 'Hart, Albert Bushnell', '2015-09-09', 8, 'https://www.gutenberg.org/ebooks/49920', 'en', 5794), +(11520, 'Our Little Finnish Cousin', 'Winlow, Clara Vostrovsky', '2013-08-09', 13, 'https://www.gutenberg.org/ebooks/43426', 'en', 5795), +(11521, 'Carmilla', 'Le Fanu, Joseph Sheridan', '2009-05-01', 20, 'https://www.gutenberg.org/ebooks/28917', 'en', 348), +(11522, 'Moby Dick; Or, The Whale', 'Melville, Herman', '2001-07-01', 10696, 'https://www.gutenberg.org/ebooks/2701', 'en', 5796), +(11523, 'Suspended Judgments: Essays on Books and Sensations', 'Powys, John Cowper', '2008-11-05', 52, 'https://www.gutenberg.org/ebooks/27163', 'en', 1765), +(11524, 'More \"Short Sixes\"', 'Bunner, H. C. (Henry Cuyler)', '2017-04-06', 22, 'https://www.gutenberg.org/ebooks/54491', 'en', 112), +(11525, 'The Captain\'s Toll-Gate', 'Stockton, Frank Richard', '2004-09-02', 12, 'https://www.gutenberg.org/ebooks/13356', 'en', 2388), +(11526, 'Anie', 'Malot, Hector', '2004-05-01', 6, 'https://www.gutenberg.org/ebooks/12284', 'fr', 61), +(11527, 'Eeva Aarnio: Kertomus nuorille', 'Hellén, Immi', '2017-09-14', 10, 'https://www.gutenberg.org/ebooks/55543', 'fi', 5797), +(11528, 'The Boy Scouts on War Trails in Belgium; Or, Caught Between Hostile Armies', 'Carter, Herbert, active 1909-1917', '2014-09-25', 8, 'https://www.gutenberg.org/ebooks/46968', 'en', 5798), +(11529, 'The Author\'s Printing and Publishing Assistant\nComprising Explanations of the Process of Printing; Preparation and Calculation of Manuscripts; Choice of Paper, Type, Binding, Illustrations, Publishing, Advertising, &c.; with an Exemplification and Description of the Typographical Marks Used in the Correction of the Press', 'Saunders, Frederick', '2010-01-18', 11, 'https://www.gutenberg.org/ebooks/31006', 'en', 5799), +(11530, 'The Authoritative Life of General William Booth, Founder of the Salvation Army', 'Railton, George S. (George Scott)', '2004-11-04', 31, 'https://www.gutenberg.org/ebooks/13958', 'en', 5800), +(11531, 'Kirkkotie', 'Levetzow, Cornelia', '2010-12-24', 17, 'https://www.gutenberg.org/ebooks/34746', 'fi', 61), +(11532, 'Mrs. Falchion, Volume 2.', 'Parker, Gilbert', '2004-07-01', 7, 'https://www.gutenberg.org/ebooks/6193', 'en', 1219), +(11533, 'Life in a Tank', 'Haigh, Richard', '2009-03-13', 57, 'https://www.gutenberg.org/ebooks/28319', 'en', 3601), +(11534, 'The Wire Tappers', 'Stringer, Arthur', '2015-10-13', 28, 'https://www.gutenberg.org/ebooks/50203', 'en', 177), +(11535, 'Weymouth New Testament in Modern Speech, 2 Corinthians', 'Weymouth, Richard Francis', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/8835', 'en', 4931), +(11536, 'An Essay Toward a History of Shakespeare in Norway', 'Ruud, Martin B. (Martin Bronn)', '2005-08-02', 13, 'https://www.gutenberg.org/ebooks/16416', 'en', 5801), +(11537, 'Divinity', 'Samachson, Joseph', '2007-09-16', 24, 'https://www.gutenberg.org/ebooks/22623', 'en', 179), +(11538, 'Voices; Birth-Marks; The Man and the Elephant', 'Holt, Mathew Joseph', '2011-02-26', 18, 'https://www.gutenberg.org/ebooks/35694', 'en', 3099), +(11539, 'Wie es Euch gefällt', 'Shakespeare, William', '2004-12-01', 44, 'https://www.gutenberg.org/ebooks/7041', 'de', 907), +(11540, 'Down the Ice, and Other Winter Sports Stories', 'Sherman, Harold M. (Harold Morrow)', '2014-07-22', 12, 'https://www.gutenberg.org/ebooks/46366', 'en', 5802), +(11541, 'Jeremiah : Being The Baird Lecture for 1922', 'Smith, George Adam', '2008-11-28', 5, 'https://www.gutenberg.org/ebooks/27351', 'en', 5803), +(11542, 'Murtovarkaus; Roinilan talossa', 'Canth, Minna', '2004-08-12', 24, 'https://www.gutenberg.org/ebooks/13164', 'fi', 247), +(11543, 'The Psychology of Revolution', 'Le Bon, Gustave', '1996-02-01', 139, 'https://www.gutenberg.org/ebooks/448', 'en', 5804), +(11544, 'The Valleys of Tirol: Their traditions and customs and how to visit them', 'Busk, Rachel Harriette', '2013-08-31', 16, 'https://www.gutenberg.org/ebooks/43614', 'en', 5805), +(11545, 'Round the Sofa', 'Gaskell, Elizabeth Cleghorn', '2001-03-01', 53, 'https://www.gutenberg.org/ebooks/2533', 'en', 45), +(11546, 'The Bible, King James version, Book 9: 1 Samuel', 'Anonymous', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/8009', 'en', 5806), +(11547, 'A History of the English Church in New Zealand', 'Purchas, Henry Thomas', '2010-02-09', 105, 'https://www.gutenberg.org/ebooks/31234', 'en', 5807), +(11548, 'A History of Spanish Literature', 'Fitzmaurice-Kelly, James', '2017-10-18', 11, 'https://www.gutenberg.org/ebooks/55771', 'en', 4785), +(11549, 'The Huntress', 'Footner, Hulbert', '2008-08-12', 36, 'https://www.gutenberg.org/ebooks/26283', 'en', 65), +(11550, 'Marguerite', 'France, Anatole', '2008-05-09', 12, 'https://www.gutenberg.org/ebooks/25406', 'en', 58), +(11551, 'Parsifal\r\nA Mystical Drama by Richard Wagner Retold in the Spirit of the Bayreuth Interpretation', 'Wagner, Richard', '2004-03-01', 44, 'https://www.gutenberg.org/ebooks/11633', 'en', 5808), +(11552, 'Boone\'s Wilderness Road', 'Hulbert, Archer Butler', '2012-10-22', 11, 'https://www.gutenberg.org/ebooks/41143', 'en', 5809), +(11553, 'Comparison of Methods of Sewage Purification', 'Phillips, Theodore Clifford', '2019-07-24', 414, 'https://www.gutenberg.org/ebooks/59980', 'en', 5810), +(11554, 'Kapteeni Grantin löytyminen', 'Verne, Jules', '2012-03-05', 5, 'https://www.gutenberg.org/ebooks/39059', 'fi', 1916), +(11555, 'It aade Friesche Terp; of, Kronyk der Geschiedenissen van de Vrye Friesen', 'Hilarides, Johannes', '2010-08-28', 7, 'https://www.gutenberg.org/ebooks/33563', 'nl', 5811), +(11556, 'A History of the Coldstream Guards, from 1815 to 1895', 'Ross, J. (John)', '2019-02-10', 2, 'https://www.gutenberg.org/ebooks/58852', 'en', 5812), +(11557, 'The Solution of the Pyramid Problem; or, Pyramid Discoveries\r\nWith a New Theory as to their Ancient Use', 'Ballard, Robert', '2012-06-26', 27, 'https://www.gutenberg.org/ebooks/40091', 'en', 5813), +(11558, 'Memoirs of the Jacobites of 1715 and 1745. Volume III.', 'Thomson, A. T., Mrs.', '2007-03-31', 28, 'https://www.gutenberg.org/ebooks/20948', 'en', 5814), +(11559, 'The Last of the Bushrangers: An Account of the Capture of the Kelly Gang', 'Hare, Francis Augustus', '2018-04-23', 16, 'https://www.gutenberg.org/ebooks/57026', 'en', 5815), +(11560, 'Œuvres de P. Corneille, Tome 03', 'Corneille, Pierre', '2011-05-01', 44, 'https://www.gutenberg.org/ebooks/36011', 'fr', 5816), +(11561, 'Eksyksissä', 'Geijerstam, Gustaf af', '2016-07-11', 3, 'https://www.gutenberg.org/ebooks/52554', 'fi', 2168), +(11562, 'Influences of Geographic Environment\nOn the Basis of Ratzel\'s System of Anthropo-Geography', 'Semple, Ellen Churchill', '2005-03-08', 48, 'https://www.gutenberg.org/ebooks/15293', 'en', 5817), +(11563, 'Margaret Vincent: A Novel', 'Clifford, W. K., Mrs.', '2012-06-01', 14, 'https://www.gutenberg.org/ebooks/39865', 'en', 48), +(11564, 'Punch, or the London Charivari, Volume 102, February 6, 1892', 'Various', '2004-12-13', 8, 'https://www.gutenberg.org/ebooks/14341', 'en', 134), +(11565, 'The Three Fates', 'Crawford, F. Marion (Francis Marion)', '2016-11-09', 8, 'https://www.gutenberg.org/ebooks/53486', 'en', 1660), +(11566, 'Freedom, Truth and Beauty\r\nSonnets', 'Doyle, Edward', '2006-12-23', 16, 'https://www.gutenberg.org/ebooks/20174', 'en', 178), +(11567, 'Memoirs (Vieux Souvenirs) of the Prince de Joinville', 'Joinville, François-Ferdinand-Philippe-Louis-Marie d\'Orléans, prince de', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/5716', 'en', 5818), +(11568, 'Four Hundred Humorous Illustrations, Vol. 1 (of 2)\r\nWith Portrait and Biographical Sketch', NULL, '2013-12-15', 26, 'https://www.gutenberg.org/ebooks/44431', 'en', 2965), +(11569, 'Histoire de la Guerre de Trente Ans', 'Schiller, Friedrich', '2012-11-17', 14, 'https://www.gutenberg.org/ebooks/41385', 'fr', 4328), +(11570, 'A Voyage Towards the South Pole and Round the World Volume 2', 'Cook, James', '2005-05-20', 51, 'https://www.gutenberg.org/ebooks/15869', 'en', 3580), +(11571, 'The Invention of the Sewing Machine', 'Cooper, Grace Rogers', '2010-06-04', 63, 'https://www.gutenberg.org/ebooks/32677', 'en', 5819), +(11572, 'Keely and His Discoveries: Aerial Navigation', 'Moore, Bloomfield H., Mrs.', '2018-01-07', 20, 'https://www.gutenberg.org/ebooks/56332', 'en', 5820), +(11573, 'On the Banks of the Ohio', 'McGuinn, Roger', '2003-12-01', 7, 'https://www.gutenberg.org/ebooks/10527', 'en', 1379), +(11574, 'The Negro at Work in New York City: A Study in Economic Progress', 'Haynes, George Edmund', '2008-02-28', 8, 'https://www.gutenberg.org/ebooks/24712', 'en', 5821), +(11575, 'Anabasis', 'Xenophon', '1998-01-01', 573, 'https://www.gutenberg.org/ebooks/1170', 'en', 5822), +(11576, 'Man\'s Place in Nature, and Other Essays', 'Huxley, Thomas Henry', '2012-07-16', 10, 'https://www.gutenberg.org/ebooks/40257', 'en', 5823), +(11577, 'Canada and the Canadians, Vol. 2', 'Bonnycastle, Richard Henry, Sir', '2007-04-30', 28, 'https://www.gutenberg.org/ebooks/21260', 'en', 2655), +(11578, 'The Free Rangers: A Story of the Early Days Along the Mississippi', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-02-14', 128, 'https://www.gutenberg.org/ebooks/15055', 'en', 1259), +(11579, 'Oppineita naisia: Viisinäytöksinen huvinäytelmä', 'Molière', '2016-08-13', 14, 'https://www.gutenberg.org/ebooks/52792', 'fi', 907), +(11580, 'Kino und Kunst\nLichtbühnen-Bibliothek Nr. 2', 'Häfker, Hermann', '2014-05-23', 6, 'https://www.gutenberg.org/ebooks/45725', 'de', 2396), +(11581, 'The Shaving of Shagpat; an Arabian entertainment — Volume 2', 'Meredith, George', '2003-09-01', 12, 'https://www.gutenberg.org/ebooks/4402', 'en', 2634), +(11582, 'Roman d\'Eustache le moine, pirate fameux du XIIIe siècle\r\npublié pour la première fois d\'après un manuscrit de la bibliothèque royale', NULL, '2011-09-03', 12, 'https://www.gutenberg.org/ebooks/37305', 'fr', 5824), +(11583, 'Collection complète des oeuvres de l\'Abbé de Mably, Volume 3 (of 15)', 'Mably, Gabriel Bonnot de', '2016-11-30', 13, 'https://www.gutenberg.org/ebooks/53640', 'fr', 2807), +(11584, 'The Dangerous Age: Letters and Fragments from a Woman\'s Diary', 'Michaëlis, Karin', '2004-11-28', 49, 'https://www.gutenberg.org/ebooks/14187', 'en', 5825), +(11585, 'The Continental Monthly, Vol. 6, No 4, August, 1864\nDevoted To Literature And National Policy', 'Various', '2007-11-18', 10, 'https://www.gutenberg.org/ebooks/23537', 'en', 558), +(11586, 'Fanny Burney (Madame D\'Arblay)', 'Dobson, Austin', '2015-04-27', 12, 'https://www.gutenberg.org/ebooks/48806', 'en', 5826), +(11587, 'The Tales of the Heptameron, Vol. 2 (of 5)', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2006-02-07', 45, 'https://www.gutenberg.org/ebooks/17702', 'en', 5827), +(11588, 'Hiilikaivoksessa', 'Verne, Jules', '2014-10-07', 27, 'https://www.gutenberg.org/ebooks/47072', 'fi', 5828), +(11589, 'Locusts and Wild Honey', 'Burroughs, John', '2004-08-01', 20, 'https://www.gutenberg.org/ebooks/6355', 'en', 1216), +(11590, 'The Ego and His Own', 'Stirner, Max', '2010-12-05', 208, 'https://www.gutenberg.org/ebooks/34580', 'en', 5829), +(11591, '韓詩外傳, Vol. 5-6', 'Han, Ying, active 150 B.C.', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/7287', 'zh', 4436), +(11592, 'Gobolinks; or, Shadow Pictures for Young and Old', 'Paine, Albert Bigelow', '2011-03-02', 15, 'https://www.gutenberg.org/ebooks/35452', 'en', 8), +(11593, 'Night Bombing with the Bedouins', 'Reece, Robert Henry', '2008-10-11', 28, 'https://www.gutenberg.org/ebooks/26879', 'en', 449), +(11594, 'Free Russia', 'Dixon, William Hepworth', '2016-02-03', 8, 'https://www.gutenberg.org/ebooks/51117', 'en', 5830), +(11595, 'The Happy Prince, and Other Tales', 'Wilde, Oscar', '2009-09-28', 498, 'https://www.gutenberg.org/ebooks/30120', 'en', 409), +(11596, 'Modern Spiritualism', 'Smith, Uriah', '2008-11-07', 43, 'https://www.gutenberg.org/ebooks/27197', 'en', 504), +(11597, 'John Herring: A West of England Romance. Volume 3 (of 3)', 'Baring-Gould, S. (Sabine)', '2017-03-31', 4, 'https://www.gutenberg.org/ebooks/54465', 'en', 4744), +(11598, 'Een feudale familie in Egypte\r\nDe Aarde en haar Volken, 1907', 'Amélineau, E. (Emile)', '2006-11-02', 21, 'https://www.gutenberg.org/ebooks/19698', 'nl', 2589), +(11599, 'The Doomswoman: An Historical Romance of Old California', 'Atherton, Gertrude Franklin Horn', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12270', 'en', 211), +(11600, 'The Light of Scarthey: A Romance', 'Castle, Egerton', '2008-07-12', 18, 'https://www.gutenberg.org/ebooks/26045', 'en', 5831), +(11601, 'Life of Bunyan', 'Hamilton, James', '2003-01-01', 11, 'https://www.gutenberg.org/ebooks/3627', 'en', 2501), +(11602, 'The Maine Woods\r\nThe Writings of Henry David Thoreau, Volume 03 (of 20)', 'Thoreau, Henry David', '2013-04-09', 170, 'https://www.gutenberg.org/ebooks/42500', 'en', 131), +(11603, 'Riverita', 'Palacio Valdés, Armando', '2009-08-28', 64, 'https://www.gutenberg.org/ebooks/29831', 'es', 1696), +(11604, 'Beaumont and Fletcher\'s Works, Vol. 09 of 10', 'Fletcher, John', '2014-10-30', 21, 'https://www.gutenberg.org/ebooks/47240', 'en', 1088), +(11605, 'Business Hints for Men and Women', 'Calhoun, A. R. (Alfred Rochefort)', '2004-07-01', 30, 'https://www.gutenberg.org/ebooks/6167', 'en', 2351), +(11606, 'Seven Wives and Seven Prisons\r\nOr, Experiences in the Life of a Matrimonial Monomaniac', 'Abbott, L. A.', '2007-12-01', 41, 'https://www.gutenberg.org/ebooks/23705', 'en', 5832), +(11607, 'Maida\'s Little Shop', 'Gillmore, Inez Haynes', '2006-01-16', 32, 'https://www.gutenberg.org/ebooks/17530', 'en', 355), +(11608, 'The Trail Book', 'Austin, Mary Hunter', '2006-02-01', 54, 'https://www.gutenberg.org/ebooks/9913', 'en', 315), +(11609, 'La vita Italiana nel Risorgimento (1815-1831), parte 3\r\nConferenze fiorentine - Lettere, scienze e arti', 'Various', '2016-02-28', 5, 'https://www.gutenberg.org/ebooks/51325', 'it', 4756), +(11610, 'Terra vergine: romanzo colombiano', 'Barrili, Anton Giulio', '2011-03-22', 36, 'https://www.gutenberg.org/ebooks/35660', 'it', 1544), +(11611, 'Illustrations of the Family of Psittacidæ, or Parrots\r\nThe greater part of them species hitherto unfigured, containing forty-two lithographic plates, drawings from life, and on stone', 'Lear, Edward', '2014-07-24', 37, 'https://www.gutenberg.org/ebooks/46392', 'en', 5833), +(11612, 'Our Unitarian Gospel', 'Savage, Minot J. (Minot Judson)', '2006-06-13', 16, 'https://www.gutenberg.org/ebooks/18578', 'en', 3021), +(11613, 'De l\'importance des livres de raison au point de vue archéologique', 'Guibert, Louis', '2004-08-15', 30, 'https://www.gutenberg.org/ebooks/13190', 'fr', 2011), +(11614, 'Phrases and Names, Their Origins and Meanings', 'Johnson, Trench H.', '2017-05-03', 70, 'https://www.gutenberg.org/ebooks/54657', 'en', 5834), +(11615, 'Convict Life at the Minnesota State Prison, Stillwater, Minnesota', 'Heilbron, William Casper', '2015-02-08', 9, 'https://www.gutenberg.org/ebooks/48208', 'en', 5835), +(11616, 'Carmen Ariza', 'Stocking, Charles Francis', '2009-10-22', 23, 'https://www.gutenberg.org/ebooks/30312', 'en', 5836), +(11617, 'The South Pole; an account of the Norwegian antarctic expedition in the \"Fram,\" 1910-1912 — Volume 2', 'Amundsen, Roald', '2002-09-01', 26, 'https://www.gutenberg.org/ebooks/3415', 'en', 5837), +(11618, 'The Englishman in China During the Victorian Era, Vol. 1 (of 2)\r\nAs Illustrated in the Career of Sir Rutherford Alcock, K.C.B., D.C.L., Many Years Consul and Minister in China and Japan', 'Michie, Alexander', '2013-05-18', 22, 'https://www.gutenberg.org/ebooks/42732', 'en', 5838), +(11619, 'Erotica Romana', 'Goethe, Johann Wolfgang von', '2005-04-01', 634, 'https://www.gutenberg.org/ebooks/7889', 'en', 1867), +(11620, 'The Ethics of Diet\nA Catena of Authorities Deprecatory of the Practice of Flesh Eating', 'Williams, Howard', '2017-10-21', 53, 'https://www.gutenberg.org/ebooks/55785', 'en', 5839), +(11621, 'The value of a praying mother', 'Byrum, Isabel C. (Isabel Coston)', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12042', 'en', 5230), +(11622, 'Margarita\'s Soul: The Romantic Recollections of a Man of Fifty', 'Bacon, Josephine Daskam', '2008-08-12', 109, 'https://www.gutenberg.org/ebooks/26277', 'en', 61), +(11623, 'Ten years of missionary work among the Indians at Skokomish, Washington Territory, 1874-1884', 'Eells, Myron', '2017-12-01', 3, 'https://www.gutenberg.org/ebooks/56100', 'en', 5840), +(11624, 'The Pain and Sorrow of Evil Marriage', 'Worde, Wynkyn de', '2010-05-20', 9, 'https://www.gutenberg.org/ebooks/32445', 'en', 5841), +(11625, 'Handicaps of Childhood', 'Bruce, H. Addington (Henry Addington)', '2019-07-24', 620, 'https://www.gutenberg.org/ebooks/59974', 'en', 973), +(11626, 'Our Admirable Betty: A Romance', 'Farnol, Jeffery', '2010-09-01', 44, 'https://www.gutenberg.org/ebooks/33597', 'en', 5842), +(11627, 'Pride and Prejudice', 'Austen, Jane', '1998-06-01', 22708, 'https://www.gutenberg.org/ebooks/1342', 'en', 500), +(11628, 'Punch, or the London Charivari, Vol. 105 December 9, 1893', 'Various', '2012-06-23', 7, 'https://www.gutenberg.org/ebooks/40065', 'en', 134), +(11629, 'The Essays of Arthur Schopenhauer; Counsels and Maxims', 'Schopenhauer, Arthur', '2004-01-01', 106, 'https://www.gutenberg.org/ebooks/10715', 'en', 5699), +(11630, 'Harbor Tales Down North\nWith an Appreciation by Wilfred T. Grenfell, M.D.', 'Duncan, Norman', '2008-02-04', 7, 'https://www.gutenberg.org/ebooks/24520', 'en', 2112), +(11631, 'The Putnam Hall Cadets; or, Good Times in School and Out', 'Stratemeyer, Edward', '2014-04-28', 12, 'https://www.gutenberg.org/ebooks/45517', 'en', 5843), +(11632, 'The Home Mission', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/4630', 'en', 1155), +(11633, 'The Pirate Shark', 'Whitney, Elliott', '2007-04-13', 30, 'https://www.gutenberg.org/ebooks/21052', 'en', 2322), +(11634, 'The Cyber and Justice Holmes', 'Riley, Frank', '2019-03-29', 47, 'https://www.gutenberg.org/ebooks/59148', 'en', 5844), +(11635, 'Jewel Mysteries, from a Dealer\'s Note Book', 'Pemberton, Max', '2012-06-01', 41, 'https://www.gutenberg.org/ebooks/39891', 'en', 179), +(11636, 'Sechs Vorträge über ausgewählte Gegenstände aus der reinen\r\nMathematik und mathematischen Physik', 'Poincaré, Henri', '2005-03-05', 30, 'https://www.gutenberg.org/ebooks/15267', 'fr', 1044), +(11637, 'Myers\' Grand Hippodrome', 'Anonymous', '2016-11-07', 5, 'https://www.gutenberg.org/ebooks/53472', 'en', 5845), +(11638, 'Science and Medieval Thought\nThe Harveian Oration Delivered Before the Royal College of Physicians, October 18, 1900', 'Allbutt, T. Clifford (Thomas Clifford)', '2012-02-21', 19, 'https://www.gutenberg.org/ebooks/38943', 'en', 5846), +(11639, 'Ponce de Leon: The Rise of the Argentine Republic', 'Pilling, William', '2012-09-25', 16, 'https://www.gutenberg.org/ebooks/40859', 'en', 5847), +(11640, 'Mr. Kris Kringle: A Christmas Tale', 'Mitchell, S. Weir (Silas Weir)', '2006-12-25', 17, 'https://www.gutenberg.org/ebooks/20180', 'en', 585), +(11641, 'A Hind Let Loose\nOr, An Historical Representation of the Testimonies of the Church of Scotland for the Interest of Christ. With the True State Thereof in All Its Periods', 'Shields, Alexander', '2011-08-20', 10, 'https://www.gutenberg.org/ebooks/37137', 'en', 5848), +(11642, 'The Philippine Islands, 1493-1898 — Volume 19 of 55\r\n1620-1621\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2005-06-17', 81, 'https://www.gutenberg.org/ebooks/16086', 'en', 745), +(11643, 'Round-and-Round Trip', 'Fyfe, H. B. (Horace Bowne)', '2016-04-12', 31, 'https://www.gutenberg.org/ebooks/51741', 'en', 179), +(11644, 'Sense of Obligation', 'Harrison, Harry', '2011-02-07', 67, 'https://www.gutenberg.org/ebooks/35204', 'en', 26), +(11645, 'A Lady of Rome', 'Crawford, F. Marion (Francis Marion)', '2014-12-10', 23, 'https://www.gutenberg.org/ebooks/47624', 'en', 5849), +(11646, 'Der Neffe als Onkel\r\nLustspiel in drei Aufzuegen. Aus dem Franzoesischen des Picard', 'Schiller, Friedrich', '2004-09-01', 25, 'https://www.gutenberg.org/ebooks/6503', 'de', 907), +(11647, 'Projet de restauration de Notre-Dame de Paris', 'Lassus, Jean Baptiste Antoine', '2006-07-27', 35, 'https://www.gutenberg.org/ebooks/18920', 'fr', 1352), +(11648, 'Histoire amoureuse des Gaules; suivie des Romans historico-satiriques du XVIIe siècle, Tome II', 'Bussy, Roger de Rabutin, comte de', '2009-05-13', 22, 'https://www.gutenberg.org/ebooks/28789', 'fr', 1989), +(11649, 'Père Antoine\'s Date-Palm', 'Aldrich, Thomas Bailey', '2007-11-06', 2, 'https://www.gutenberg.org/ebooks/23361', 'en', 770), +(11650, 'The Marne Battle-fields (1914)', NULL, '2015-12-15', 13, 'https://www.gutenberg.org/ebooks/50693', 'en', 5850), +(11651, 'The Condition, Elevation, Emigration, and Destiny of the Colored People of the United States', 'Delany, Martin Robison', '2005-11-26', 72, 'https://www.gutenberg.org/ebooks/17154', 'en', 180), +(11652, 'The Golden Slipper, and Other Problems for Violet Strange', 'Green, Anna Katharine', '2002-02-01', 92, 'https://www.gutenberg.org/ebooks/3071', 'en', 5319), +(11653, 'Plays: the Father; Countess Julie; the Outlaw; the Stronger', 'Strindberg, August', '2005-07-01', 148, 'https://www.gutenberg.org/ebooks/8499', 'en', 4675), +(11654, 'On the Red Chalk of England', 'Wiltshire, Thomas', '2013-03-17', 8, 'https://www.gutenberg.org/ebooks/42356', 'en', 5851), +(11655, 'Routledge\'s Manual of Etiquette', 'Routledge, George', '2004-05-01', 90, 'https://www.gutenberg.org/ebooks/12426', 'en', 788), +(11656, 'Ruth Fielding At College; or, The Missing Examination Papers', 'Emerson, Alice B.', '2008-09-14', 34, 'https://www.gutenberg.org/ebooks/26613', 'en', 4642), +(11657, 'Grand Moving Diorama of Hindostan\r\nDisplaying the Scenery of the Hoogly, the Bhagirathi, and the Ganges, from Fort William, Bengal, to Gangoutri, in the Himalaya', 'Parlby, Fanny Parkes', '2019-07-29', 586, 'https://www.gutenberg.org/ebooks/60006', 'en', 1975), +(11658, 'The Vivisectors\' Directory\r\nBeing a list of the licensed vivisectors in the United Kingdom, together with the leading physiologists in foreign laboratories', NULL, '2017-02-25', 3, 'https://www.gutenberg.org/ebooks/54233', 'en', 5852), +(11659, 'Wilderness, A Journal of Quiet Adventure in Alaska', 'Kent, Rockwell', '2013-07-24', 34, 'https://www.gutenberg.org/ebooks/43284', 'en', 5853), +(11660, 'Boer Politics', 'Guyot, Yves', '2006-03-12', 21, 'https://www.gutenberg.org/ebooks/17968', 'en', 5854), +(11661, 'Materials and Methods of Fiction\nWith an Introduction by Brander Matthews', 'Hamilton, Clayton Meeker', '2009-12-28', 11, 'https://www.gutenberg.org/ebooks/30776', 'en', 61), +(11662, 'Theaetetus', 'Plato', '1999-04-01', 287, 'https://www.gutenberg.org/ebooks/1726', 'en', 5717), +(11663, 'Three Little Women\'s Success: A Story for Girls', 'Jackson, Gabrielle E. (Gabrielle Emilie)', '2012-08-03', 33, 'https://www.gutenberg.org/ebooks/40401', 'en', 5855), +(11664, 'The Cinema Murder', 'Oppenheim, E. Phillips (Edward Phillips)', '2003-12-01', 71, 'https://www.gutenberg.org/ebooks/10371', 'en', 128), +(11665, '瀛涯勝覽', 'Ma, Huan, active 1414-1451', '2008-01-03', 13, 'https://www.gutenberg.org/ebooks/24144', 'zh', 5856), +(11666, 'The Roman Traitor, Vol. 2', 'Herbert, Henry William', '2008-04-18', 3, 'https://www.gutenberg.org/ebooks/25096', 'en', 5857), +(11667, 'Jaquelina', 'Miller, Alex. McVeigh, Mrs.', '2018-02-13', 9, 'https://www.gutenberg.org/ebooks/56564', 'en', 61), +(11668, 'Island Life; Or, The Phenomena and Causes of Insular Faunas and Floras', 'Wallace, Alfred Russel', '2010-04-17', 28, 'https://www.gutenberg.org/ebooks/32021', 'en', 5858), +(11669, 'Cakewalk to Gloryanna', 'Stecher, L. J., Jr.', '2016-09-09', 20, 'https://www.gutenberg.org/ebooks/53016', 'en', 26), +(11670, 'The Celebrity, Volume 04', 'Churchill, Winston', '2004-10-19', 3, 'https://www.gutenberg.org/ebooks/5386', 'en', 918), +(11671, 'Punch, or the London Charivari, Vol. 105, September 2nd, 1893', 'Various', '2011-09-28', 13, 'https://www.gutenberg.org/ebooks/37553', 'en', 134), +(11672, 'Thirty Indian Legends', 'Bemister, Margaret', '2008-04-02', 20, 'https://www.gutenberg.org/ebooks/24978', 'en', 5859), +(11673, 'Ballades and Verses Vain', 'Lang, Andrew', '2014-03-19', 13, 'https://www.gutenberg.org/ebooks/45173', 'en', 5860), +(11674, 'Miscellanies Upon Various Subjects', 'Aubrey, John', '2003-07-01', 43, 'https://www.gutenberg.org/ebooks/4254', 'en', 5025), +(11675, 'Auriol; or, The Elixir of Life', 'Ainsworth, William Harrison', '2011-06-22', 65, 'https://www.gutenberg.org/ebooks/36481', 'en', 428), +(11676, 'Poems Every Child Should Know', NULL, '2007-05-18', 16, 'https://www.gutenberg.org/ebooks/21436', 'en', 178), +(11677, 'One Man in His Time', 'Glasgow, Ellen Anderson Gholson', '2005-04-11', 18, 'https://www.gutenberg.org/ebooks/15603', 'en', 1439), +(11678, 'Old French Romances, Done into English', 'Morris, William', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/5988', 'en', 2176), +(11679, 'Punch, or the London Charivari, Volume 153, July 11, 1917', 'Various', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10143', 'en', 134), +(11680, 'Index of the Project Gutenberg Works of Irving Bacheller', 'Bacheller, Irving', '2018-08-13', 7, 'https://www.gutenberg.org/ebooks/57684', 'en', 198), +(11681, 'Floyd Grandon\'s Honor', 'Douglas, Amanda M.', '2008-01-20', 16, 'https://www.gutenberg.org/ebooks/24376', 'en', 1426), +(11682, 'L\'Illustration, No. 3663, 10 Mai 1913', 'Various', '2012-01-31', 3, 'https://www.gutenberg.org/ebooks/38729', 'fr', 150), +(11683, 'A Midsummer Night\'s Dream', 'Shakespeare, William', '1998-11-01', 648, 'https://www.gutenberg.org/ebooks/1514', 'en', 907), +(11684, 'In Northern Mists: Arctic Exploration in Early Times (Volume 1 of 2)', 'Nansen, Fridtjof', '2012-09-01', 38, 'https://www.gutenberg.org/ebooks/40633', 'en', 5861), +(11685, 'Hoiman and the Solar Circuit', 'Dewey, G. Gordon', '2010-05-02', 28, 'https://www.gutenberg.org/ebooks/32213', 'en', 179), +(11686, 'The Young Book Agent; or, Frank Hardy\'s Road to Success', 'Alger, Horatio, Jr.', '2018-03-16', 36, 'https://www.gutenberg.org/ebooks/56756', 'en', 4548), +(11687, 'Poems', 'Stoddard, John L. (John Lawson)', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11091', 'en', 8), +(11688, 'A Damaged Reputation', 'Bindloss, Harold', '2011-10-15', 21, 'https://www.gutenberg.org/ebooks/37761', 'en', 1596), +(11689, 'Tom Fairfield in Camp; or, The Secret of the Old Mill', 'Chapman, Allen', '2013-11-27', 9, 'https://www.gutenberg.org/ebooks/44293', 'en', 3), +(11690, 'Basil and Annette: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2016-10-06', 13, 'https://www.gutenberg.org/ebooks/53224', 'en', 2004), +(11691, 'Three Short Works\r\nThe Dance of Death, the Legend of Saint Julian the Hospitaller, a Simple Soul', 'Flaubert, Gustave', '2007-05-31', 8, 'https://www.gutenberg.org/ebooks/21604', 'en', 642), +(11692, 'Success: A Novel', 'Adams, Samuel Hopkins', '2005-03-21', 27, 'https://www.gutenberg.org/ebooks/15431', 'en', 2283), +(11693, 'Wager of Battle: A Tale of Saxon Slavery in Sherwood Forest', 'Herbert, Henry William', '2014-04-07', 27, 'https://www.gutenberg.org/ebooks/45341', 'en', 5862), +(11694, 'Wild Apples', 'Thoreau, Henry David', '2003-05-01', 75, 'https://www.gutenberg.org/ebooks/4066', 'en', 3329), +(11695, 'Verotchka\'s Tales', 'Mamin-Siberiak, D. N. (Dmitrii Narkisovich)', '2011-01-22', 22, 'https://www.gutenberg.org/ebooks/35036', 'en', 5863), +(11696, 'Kreuzer-sonaatti', 'Tolstoy, Leo, graf', '2016-03-27', 17, 'https://www.gutenberg.org/ebooks/51573', 'fi', 192), +(11697, 'A Supplementary Chapter to the Bible in Spain', 'Borrow, George', '2009-07-20', 14, 'https://www.gutenberg.org/ebooks/29469', 'en', 1514), +(11698, 'Parodies of Ballad Criticism (1711-1787)\r\nA Comment Upon the History of Tom Thumb, 1711, by William\r\nWagstaffe; The Knave of Hearts, 1787, by George Canning', 'Wagstaffe, William', '2007-07-16', 20, 'https://www.gutenberg.org/ebooks/22081', 'en', 2529), +(11699, 'Ulster', 'Gwynn, Stephen Lucius', '2013-06-16', 15, 'https://www.gutenberg.org/ebooks/42958', 'en', 5864), +(11700, 'The Big Bounce', 'Tevis, Walter S.', '2007-10-23', 40, 'https://www.gutenberg.org/ebooks/23153', 'en', 26), +(11701, 'Notes on Nursing: What It Is, and What It Is Not', 'Nightingale, Florence', '2005-12-21', 142, 'https://www.gutenberg.org/ebooks/17366', 'en', 5865), +(11702, 'Sixty Squadron R.A.F.: A History of the Squadron from its Formation', 'Scott, A. J. L. (Alan John Lance)', '2014-11-22', 13, 'https://www.gutenberg.org/ebooks/47416', 'en', 4056), +(11703, 'The Duenna: A Comic Opera', 'Sheridan, Richard Brinsley', '2004-10-01', 21, 'https://www.gutenberg.org/ebooks/6731', 'en', 1966), +(11704, 'Punch, or the London Charivari, Volume 156, April 9, 1919', 'Various', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/12614', 'en', 134), +(11705, 'Great Men and Famous Women. Vol. 1\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2008-08-27', 31, 'https://www.gutenberg.org/ebooks/26421', 'en', 122), +(11706, 'Ditte: Girl Alive!', 'Andersen Nexø, Martin', '2010-03-04', 16, 'https://www.gutenberg.org/ebooks/31496', 'en', 2590), +(11707, 'Glengarry School Days: A Story of Early Days in Glengarry', 'Connor, Ralph', '2006-05-30', 15, 'https://www.gutenberg.org/ebooks/3243', 'en', 4461), +(11708, 'Eli and Sibyl Jones, Their Life and Work', 'Jones, Rufus M. (Rufus Matthew)', '2013-02-22', 8, 'https://www.gutenberg.org/ebooks/42164', 'en', 5866), +(11709, '五孝傳', 'Tao, Qian', '2009-11-25', 9, 'https://www.gutenberg.org/ebooks/30544', 'zh', 5867), +(11710, 'Bruce', 'Terhune, Albert Payson', '2000-11-01', 26, 'https://www.gutenberg.org/ebooks/2391', 'en', 766), +(11711, 'The Black Bag', 'Vance, Louis Joseph', '2006-01-01', 80, 'https://www.gutenberg.org/ebooks/9779', 'en', 3657), +(11712, 'Il nipotismo di Roma, or, The History of the Popes Nephews\r\nfrom the time of Sixtus IV. to the death of the last Pope, Alexander VII', 'Leti, Gregorio', '2017-01-17', 9, 'https://www.gutenberg.org/ebooks/54001', 'en', 5868), +(11713, 'Bruin: The Grand Bear Hunt', 'Reid, Mayne', '2009-02-04', 19, 'https://www.gutenberg.org/ebooks/27993', 'en', 400), +(11714, 'Thirty-Seven Days of Peril\nfrom Scribner\'s Monthly Vol III Nov. 1871', 'Everts, Truman', '2010-01-11', 61, 'https://www.gutenberg.org/ebooks/30924', 'en', 993), +(11715, 'L\'alcòva d\'acciaio: Romanzo vissuto', 'Marinetti, F. T.', '2009-06-04', 17, 'https://www.gutenberg.org/ebooks/29035', 'it', 1544), +(11716, 'Conquest; Or, A Piece of Jade; a New Play in Three Acts', 'Stopes, Marie Carmichael', '2014-07-05', 10, 'https://www.gutenberg.org/ebooks/46198', 'en', 3416), +(11717, 'Successful Stock Speculation', 'Butler, John James', '2008-10-08', 38, 'https://www.gutenberg.org/ebooks/26841', 'en', 5869), +(11718, 'Kurjat I: Fantine', 'Hugo, Victor', '2015-01-05', 8, 'https://www.gutenberg.org/ebooks/47876', 'fi', 5870), +(11719, 'Twentieth Century Negro Literature\r\nOr, A Cyclopedia of Thought on the Vital Topics Relating to the American Negro', NULL, '2006-07-06', 45, 'https://www.gutenberg.org/ebooks/18772', 'en', 3227), +(11720, 'Aristotle', 'Taylor, A. E. (Alfred Edward)', '2015-01-16', 64, 'https://www.gutenberg.org/ebooks/48002', 'en', 505), +(11721, 'Masonic Monitor of the Degrees of Entered Apprentice, Fellow Craft and Master Mason\r\ntogether with the Ceremony of Installation, Laying Corner Stones, Dedications, Masonic Burial, Etc.', 'Thornburgh, George', '2009-09-28', 36, 'https://www.gutenberg.org/ebooks/30118', 'en', 5871), +(11722, 'Der Freigeist', 'Lessing, Gotthold Ephraim', '2005-11-01', 20, 'https://www.gutenberg.org/ebooks/9325', 'de', 907), +(11723, 'Carter, and Other People', 'Marquis, Don', '2016-05-01', 11, 'https://www.gutenberg.org/ebooks/51913', 'en', 1516), +(11724, 'Astounding Stories of Super-Science, May, 1930', 'Various', '2009-08-26', 127, 'https://www.gutenberg.org/ebooks/29809', 'en', 2527), +(11725, 'The Round Towers of Ireland; or, The History of the Tuath-De-Danaans', 'O\'Brien, Henry', '2013-04-15', 23, 'https://www.gutenberg.org/ebooks/42538', 'en', 5872), +(11726, 'The King\'s Cup-Bearer', 'Walton, O. F., Mrs.', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12248', 'en', 5873), +(11727, 'Love Conquers All', 'Benchley, Robert', '2005-05-18', 63, 'https://www.gutenberg.org/ebooks/15851', 'en', 190), +(11728, 'Religion in the Heavens; Or, Mythology Unveiled in a Series of Lectures', 'Mitchell, Logan', '2011-12-22', 19, 'https://www.gutenberg.org/ebooks/38375', 'en', 655), +(11729, 'Elämän hawainnoita 07: Rauta=mies; Hairahdus; Pentti ja Inka', 'Päivärinta, Pietari', '2005-02-08', 31, 'https://www.gutenberg.org/ebooks/14983', 'fi', 456), +(11730, 'The Itinerary of Archbishop Baldwin Through Wales', 'Giraldus, Cambrensis', '1997-12-01', 32, 'https://www.gutenberg.org/ebooks/1148', 'en', 5874), +(11731, 'Devil-Worship in France; or, The Question of Lucifer', 'Waite, Arthur Edward', '2007-04-30', 44, 'https://www.gutenberg.org/ebooks/21258', 'en', 5875), +(11732, 'Amphibians and Reptiles in Captivity', 'Johnson, Tom R.', '2019-04-24', 17, 'https://www.gutenberg.org/ebooks/59342', 'en', 5876); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(11733, 'On Naval Timber and Arboriculture\r\nWith Critical Notes on Authors who have Recently Treated the Subject of Planting', 'Matthew, Patrick', '2016-12-06', 21, 'https://www.gutenberg.org/ebooks/53678', 'en', 5877), +(11734, 'Derniers souvenirs d\'un musicien', 'Adam, Adolphe', '2018-11-17', 31, 'https://www.gutenberg.org/ebooks/58290', 'fr', 4953), +(11735, 'The Poetics of Aristotle', 'Aristotle', '1999-11-01', 680, 'https://www.gutenberg.org/ebooks/1974', 'en', 5878), +(11736, 'Le roi Jean', 'Shakespeare, William', '2007-06-18', 28, 'https://www.gutenberg.org/ebooks/21856', 'fr', 599), +(11737, 'Monopolies and the People', 'Cloud, D. C.', '2012-03-10', 19, 'https://www.gutenberg.org/ebooks/39095', 'en', 5879), +(11738, 'Zakflora voor Suriname [Deel I]\nBulletin van het Koloniaal Museum te Haarlem No. 47.', 'Pulle, A. A. (August Adriaan)', '2017-12-06', 9, 'https://www.gutenberg.org/ebooks/56138', 'nl', 5880), +(11739, 'Lui lei lui', 'Bracco, Roberto', '2011-11-05', 3, 'https://www.gutenberg.org/ebooks/37933', 'it', 407), +(11740, 'Memoirs of Extraordinary Popular Delusions and the Madness of Crowds', 'Mackay, Charles', '2008-02-05', 797, 'https://www.gutenberg.org/ebooks/24518', 'en', 5881), +(11741, 'St. Peter, His Name and His Office, as Set Forth in Holy Scripture', 'Allies, T. W. (Thomas William)', '2011-11-27', 11, 'https://www.gutenberg.org/ebooks/38147', 'en', 5300), +(11742, 'Prudy Keeping House', 'May, Sophie', '2007-04-04', 31, 'https://www.gutenberg.org/ebooks/20984', 'en', 4581), +(11743, 'Conundrums, Riddles and Puzzles\r\nContaining one thousand of the latest and best conundrums, gathered from every conceivable source, and comprising many that are entirely new and original', 'Rivers, Dean', '2016-07-18', 38, 'https://www.gutenberg.org/ebooks/52598', 'en', 5882), +(11744, 'Tea, Its Mystery and History', 'Day, Samuel Phillips', '2019-03-31', 34, 'https://www.gutenberg.org/ebooks/59170', 'en', 2245), +(11745, 'Tom Swift in Captivity, Or, A Daring Escape By Airship', 'Appleton, Victor', '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/4608', 'en', 1456), +(11746, 'The Journal of Prison Discipline and Philanthropy (New Series, No. 40, January 1901)', 'Pennsylvania Prison Society', '2018-04-02', 1, 'https://www.gutenberg.org/ebooks/56904', 'en', 2509), +(11747, 'The Journal of the Debates in the Convention which Framed the Constitution of the United States, May-September 1787. Volume 1', 'Madison, James', '2012-09-25', 34, 'https://www.gutenberg.org/ebooks/40861', 'en', 187), +(11748, 'Certain Personal Matters', 'Wells, H. G. (Herbert George)', '2006-01-12', 116, 'https://www.gutenberg.org/ebooks/17508', 'en', 5883), +(11749, 'Gli eretici d\'Italia, vol. III', 'Cantù, Cesare', '2014-11-03', 16, 'https://www.gutenberg.org/ebooks/47278', 'it', 5884), +(11750, 'Punch, or the London Charivari, Volume 101, October 10, 1891', 'Various', '2004-11-09', 4, 'https://www.gutenberg.org/ebooks/13994', 'en', 134), +(11751, 'The First White Man of the West\nLife and Exploits of Col. Dan\'l. Boone, the First Settler of Kentucky;\nInterspersed with Incidents in the Early Annals of the Country.', 'Flint, Timothy', '2004-07-07', 8, 'https://www.gutenberg.org/ebooks/12846', 'en', 3812), +(11752, 'Voyages from Montreal Through the Continent of North America to the Frozen and Pacific Oceans in 1789 and 1793. Vol. I', 'Mackenzie, Alexander', '2011-03-22', 40, 'https://www.gutenberg.org/ebooks/35658', 'en', 12), +(11753, 'Cleo The Magnificent; Or, The Muse of the Real: A Novel', 'Zangwill, Louis', '2009-06-23', 16, 'https://www.gutenberg.org/ebooks/29207', 'en', 61), +(11754, 'The Soul of John Brown', 'Graham, Stephen', '2015-02-10', 38, 'https://www.gutenberg.org/ebooks/48230', 'en', 2574), +(11755, 'Elson Grammar School Literature v4', 'Keck, Christine M.', '2004-11-01', 58, 'https://www.gutenberg.org/ebooks/6963', 'en', 1019), +(11756, 'Poor and Proud; Or, The Fortunes of Katy Redburn: A Story for Young Folks', 'Optic, Oliver', '1996-04-01', 49, 'https://www.gutenberg.org/ebooks/484', 'en', 195), +(11757, 'Abraham Lincoln\nA Memorial Discourse', 'Eddy, T. M. (Thomas Mears)', '2006-06-09', 12, 'https://www.gutenberg.org/ebooks/18540', 'en', 1716), +(11758, 'The Atlantic Monthly, Volume 13, No. 77, March, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2006-10-07', 27, 'https://www.gutenberg.org/ebooks/19492', 'en', 1227), +(11759, 'Naar het middelpunt der Aarde', 'Verne, Jules', '2003-12-01', 59, 'https://www.gutenberg.org/ebooks/10349', 'nl', 323), +(11760, 'The Book of Clever Beasts: Studies in Unnatural History', 'Reed, Myrtle', '2016-12-27', 32, 'https://www.gutenberg.org/ebooks/53812', 'en', 3059), +(11761, 'The Noank\'s Log: A Privateer of the Revolution', 'Stoddard, William O.', '2012-01-07', 10, 'https://www.gutenberg.org/ebooks/38523', 'en', 2843), +(11762, 'Plato\'s Doctrine Respecting the Rotation of the Earth and Aristotle\'s Comment Upon That Doctrine', 'Grote, George', '2012-08-07', 25, 'https://www.gutenberg.org/ebooks/40439', 'en', 5885), +(11763, 'Stone\'s River: The Turning-Point of the Civil War', 'Vance, Wilson J.', '2010-04-17', 12, 'https://www.gutenberg.org/ebooks/32019', 'en', 5228), +(11764, 'Eine Mutter\nRoman im Anschluß an »die Colonie«', 'Gerstäcker, Friedrich', '2014-06-15', 11, 'https://www.gutenberg.org/ebooks/45977', 'de', 138), +(11765, 'The Nursery, September 1873, Vol. XIV. No. 3', 'Various', '2008-03-29', 10, 'https://www.gutenberg.org/ebooks/24940', 'en', 4641), +(11766, 'How to Solve Conundrums\r\nContaining All the Leading Conundrums of the Day, Amusing Riddles, Curious Catches, and Witty Sayings', 'Anonymous', '2013-11-03', 32, 'https://www.gutenberg.org/ebooks/44099', 'en', 5882), +(11767, 'The Goddess of Atvatabar\r\nBeing the history of the discovery of the interior world and conquest of Atvatabar', 'Bradshaw, William Richard', '2010-06-15', 63, 'https://www.gutenberg.org/ebooks/32825', 'en', 26), +(11768, 'After Some Tomorrow', 'Reynolds, Mack', '2019-05-15', 121, 'https://www.gutenberg.org/ebooks/59514', 'en', 5886), +(11769, 'Eve to the Rescue', 'Hueston, Ethel', '2008-06-24', 15, 'https://www.gutenberg.org/ebooks/25892', 'en', 211), +(11770, 'Our Sentimental Garden', 'Castle, Agnes', '2016-04-17', 16, 'https://www.gutenberg.org/ebooks/51779', 'en', 5887), +(11771, 'Memoirs of Louis XIV and His Court and of the Regency — Complete', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-08-25', 112, 'https://www.gutenberg.org/ebooks/3875', 'en', 1247), +(11772, 'Tres mujeres: La recompensa, Prueba de un alma, Amores románticos', 'Picón, Jacinto Octavio', '2009-08-10', 17, 'https://www.gutenberg.org/ebooks/29663', 'es', 1696), +(11773, 'Quite So', 'Aldrich, Thomas Bailey', '2007-11-06', 7, 'https://www.gutenberg.org/ebooks/23359', 'en', 179), +(11774, 'Bas les coeurs!', 'Darien, Georges', '2006-07-27', 18, 'https://www.gutenberg.org/ebooks/18918', 'fr', 61), +(11775, 'Het leven van Rozeke van Dalen, deel 2', 'Buysse, Cyriel', '2005-10-16', 8, 'https://www.gutenberg.org/ebooks/16882', 'nl', 61), +(11776, 'A Group of Noble Dames', 'Hardy, Thomas', '2002-01-01', 52, 'https://www.gutenberg.org/ebooks/3049', 'en', 2019), +(11777, 'A Princess of Thule', 'Black, William', '2015-08-26', 15, 'https://www.gutenberg.org/ebooks/49786', 'en', 2389), +(11778, 'Incesto: novela original', 'Zamacois, Eduardo', '2015-04-06', 29, 'https://www.gutenberg.org/ebooks/48654', 'es', 1696), +(11779, 'La guerre et la paix, Tome II', 'Tolstoy, Leo, graf', '2006-03-08', 47, 'https://www.gutenberg.org/ebooks/17950', 'fr', 5888), +(11780, 'Religious Poems, Part 2.\r\nPart 6 From Volume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9573', 'en', 350), +(11781, 'Sir Walter Scott\n(English Men of Letters Series)', 'Hutton, Richard Holt', '2006-04-05', 25, 'https://www.gutenberg.org/ebooks/18124', 'en', 1654), +(11782, 'Rowlandson\'s Oxford', 'Gibbs, A. Hamilton (Arthur Hamilton)', '2013-06-16', 11, 'https://www.gutenberg.org/ebooks/42960', 'en', 3139), +(11783, 'The Romance of the Soul', 'Staveley, Lilian', '2009-07-18', 8, 'https://www.gutenberg.org/ebooks/29451', 'en', 4632), +(11784, 'A Strange Manuscript Found in a Copper Cylinder', 'De Mille, James', '2004-10-01', 104, 'https://www.gutenberg.org/ebooks/6709', 'en', 26), +(11785, 'A servant of Satan: Romantic career of Prado the assassin', 'Berard, Louis', '2017-05-28', 14, 'https://www.gutenberg.org/ebooks/54805', 'en', 177), +(11786, 'The Calm Man', 'Long, Frank Belknap', '2009-04-21', 50, 'https://www.gutenberg.org/ebooks/28583', 'en', 179), +(11787, 'The Vanishing Point', 'Dawson, Coningsby', '2015-11-19', 7, 'https://www.gutenberg.org/ebooks/50499', 'en', 61), +(11788, 'Le Capitaine Aréna — Tome 1', 'Dumas, Alexandre', '2005-08-01', 17, 'https://www.gutenberg.org/ebooks/8693', 'fr', 4629), +(11789, 'Hindu Gods And Heroes\nStudies in the History of the Religion of India', 'Barnett, Lionel D. (Lionel David)', '2007-10-04', 70, 'https://www.gutenberg.org/ebooks/22885', 'en', 5889), +(11790, 'Passaripoika : Näytelmä 1:ssä näytöksessä', 'Ramstedt, Maria', '2011-04-12', 7, 'https://www.gutenberg.org/ebooks/35832', 'fi', 402), +(11791, 'The Life of Gordon, Volume I', 'Boulger, Demetrius Charles', '2008-08-24', 23, 'https://www.gutenberg.org/ebooks/26419', 'en', 5890), +(11792, 'Notable Women of Olden Time', 'Anonymous', '2006-05-05', 43, 'https://www.gutenberg.org/ebooks/18316', 'en', 5891), +(11793, 'Fast-Day Cookery; or, Meals without Meat', 'Johnson, Grace', '2017-01-22', 48, 'https://www.gutenberg.org/ebooks/54039', 'en', 3321), +(11794, 'Al primer vuelo', 'Pereda, José María de', '2007-12-21', 35, 'https://www.gutenberg.org/ebooks/23957', 'es', 1353), +(11795, 'Birds and All Nature, Vol. 7, No. 5, May 1900\r\nIllustrated by Color Photography', 'Various', '2015-03-12', 5, 'https://www.gutenberg.org/ebooks/48466', 'en', 490), +(11796, 'The Uncommercial Traveller', 'Dickens, Charles', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9741', 'en', 45), +(11797, 'Tragedy', 'Thorndike, Ashley Horace', '2012-01-29', 16, 'https://www.gutenberg.org/ebooks/38711', 'en', 5892), +(11798, 'History of the United Netherlands, 1590b', 'Motley, John Lothrop', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4862', 'en', 3372), +(11799, 'The Best American Humorous Short Stories', NULL, '2004-02-01', 747, 'https://www.gutenberg.org/ebooks/10947', 'en', 112), +(11800, 'Darwin, and After Darwin, Volume 2 of 3\r\nPost-Darwinian Questions: Heredity and Utility', 'Romanes, George John', '2011-10-15', 19, 'https://www.gutenberg.org/ebooks/37759', 'en', 5893), +(11801, 'Prairie-Dog Town', 'Baum, L. Frank (Lyman Frank)', '2014-04-14', 23, 'https://www.gutenberg.org/ebooks/45379', 'en', 5894), +(11802, 'Peace Theories and the Balkan War', 'Angell, Norman', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/11895', 'en', 2481), +(11803, 'The Fairy Green', 'Fyleman, Rose', '2019-06-10', 47, 'https://www.gutenberg.org/ebooks/59726', 'en', 2951), +(11804, 'An Elegy Wrote in a Country Church Yard (1751) and The Eton College Manuscript', 'Gray, Thomas', '2005-03-18', 15, 'https://www.gutenberg.org/ebooks/15409', 'en', 54), +(11805, 'The Strand Magazine, Vol. 05, Issue 30, June 1893\r\nAn Illustrated Monthly', 'Various', '2008-01-07', 23, 'https://www.gutenberg.org/ebooks/24188', 'en', 4041), +(11806, 'Thirty Years\' View (Vol. 1 of 2)\r\nor, A History of the Working of the American Government for Thirty Years, from 1820 to 1850', 'Benton, Thomas Hart', '2014-02-09', 8, 'https://www.gutenberg.org/ebooks/44851', 'en', 5895), +(11807, 'War Dogs of the World War', 'Anderson, John I.', '2016-08-30', 13, 'https://www.gutenberg.org/ebooks/52934', 'en', 5896), +(11808, 'L\'Illustration, No. 0035, 28 Octobre 1843', 'Various', '2012-04-09', 4, 'https://www.gutenberg.org/ebooks/39405', 'fr', 150), +(11809, 'To Nuremberg and Back: A Girl\'s Holiday', 'Neally, Amy', '2014-06-15', 9, 'https://www.gutenberg.org/ebooks/45983', 'en', 1408), +(11810, 'Into the Primitive', 'Bennet, Robert Ames', '2010-10-25', 29, 'https://www.gutenberg.org/ebooks/33903', 'en', 1592), +(11811, 'Campfire Girls\' Outing; Or, Ethel Hollister\'s Second Summer in Camp', 'Francis, Stella M.', '2018-12-08', 14, 'https://www.gutenberg.org/ebooks/58432', 'en', 1080), +(11812, 'Round About a Great Estate', 'Jefferies, Richard', '2007-02-06', 33, 'https://www.gutenberg.org/ebooks/20528', 'en', 2364), +(11813, 'Odysseun harharetket: Suorasanaisesti kerrottuna', 'Homer', '2016-05-19', 12, 'https://www.gutenberg.org/ebooks/52108', 'fi', 5897), +(11814, 'The Search', 'Hill, Grace Livingston', '2008-06-21', 69, 'https://www.gutenberg.org/ebooks/25866', 'en', 109), +(11815, 'The Paying Guest', 'Gissing, George', '2003-07-01', 53, 'https://www.gutenberg.org/ebooks/4298', 'en', 45), +(11816, 'Memoirs of the Courts of Louis XV and XVI. — Volume 6\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Du Hausset, Mme.', '2004-12-03', 10, 'https://www.gutenberg.org/ebooks/3881', 'en', 4453), +(11817, 'The Heart of Thunder Mountain', 'Bingham, Edfrid A.', '2009-08-15', 70, 'https://www.gutenberg.org/ebooks/29697', 'en', 61), +(11818, 'Chenodia\r\nOr, the Classical Mother Goose', 'Bigelow, Jacob', '2009-05-10', 5, 'https://www.gutenberg.org/ebooks/28745', 'en', 343), +(11819, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 03: Military Career', 'Casanova, Giacomo', '2004-12-10', 13, 'https://www.gutenberg.org/ebooks/2953', 'en', 4164), +(11820, 'The Botanical Magazine, Vol. 01\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2005-12-02', 178, 'https://www.gutenberg.org/ebooks/17198', 'en', 5898), +(11821, 'Latin Vulgate, Daniel: Prophetia Danielis', 'Anonymous', '1997-02-01', 101, 'https://www.gutenberg.org/ebooks/828', 'la', 5899), +(11822, 'Alice\'s Adventures Under Ground\r\nBeing a facsimile of the original Ms. book afterwards developed into \"Alice\'s Adventures in Wonderland\"', 'Carroll, Lewis', '2006-08-07', 334, 'https://www.gutenberg.org/ebooks/19002', 'en', 5900), +(11823, 'The Saint', 'Fogazzaro, Antonio', '2005-07-01', 18, 'https://www.gutenberg.org/ebooks/8455', 'en', 16), +(11824, 'Paula Monti, Tome II\nou L\'Hôtel Lambert - histoire contemporaine', 'Sue, Eugène', '2005-10-14', 10, 'https://www.gutenberg.org/ebooks/16876', 'fr', 61), +(11825, 'The Serapion Brethren, Vol. II', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2010-03-16', 123, 'https://www.gutenberg.org/ebooks/31668', 'en', 61), +(11826, 'Hagar', 'Johnston, Mary', '2015-08-24', 31, 'https://www.gutenberg.org/ebooks/49772', 'en', 98), +(11827, 'Little Playfellows:\nSugar Plum Series', 'Unknown', '2013-07-19', 15, 'https://www.gutenberg.org/ebooks/43248', 'en', 388), +(11828, 'Margaret Smith\'s Journal\r\nPart 1 from Volume V of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9587', 'en', 5901), +(11829, 'Punch, or the London Charivari, Volume 101, September 5, 1891', 'Various', '2004-09-27', 3, 'https://www.gutenberg.org/ebooks/13538', 'en', 134), +(11830, 'Zuchthausgeschichten von einem ehemaligen Züchtling\nErster Theil', 'Hägele, Joseph M.', '2005-07-13', 24, 'https://www.gutenberg.org/ebooks/16278', 'de', 5902), +(11831, 'Castes and Tribes of Southern India. Vol. 4 of 7', 'Thurston, Edgar', '2013-06-21', 69, 'https://www.gutenberg.org/ebooks/42994', 'en', 5903), +(11832, 'Carl the Trailer', 'Castlemon, Harry', '2017-11-09', 8, 'https://www.gutenberg.org/ebooks/55923', 'en', 195), +(11833, 'Our Little Grecian Cousin', 'Nixon-Roulet, Mary F.', '2014-08-05', 21, 'https://www.gutenberg.org/ebooks/46508', 'en', 5904), +(11834, 'Sir James Young Simpson and Chloroform (1811-1870)\nMasters of Medicine', 'Gordon, H. Laing (Henry Laing)', '2010-10-24', 7, 'https://www.gutenberg.org/ebooks/34128', 'en', 5905), +(11835, 'The Seer of Slabsides', 'Sharp, Dallas Lore', '2013-09-29', 78, 'https://www.gutenberg.org/ebooks/43846', 'en', 5906), +(11836, 'The Negrito and Allied Types in the Philippines and The Ilongot or Ibilao of Luzon', 'Barrows, David P.', '2009-04-20', 23, 'https://www.gutenberg.org/ebooks/28577', 'en', 3660), +(11837, 'Cetywayo and his White Neighbours\nRemarks on Recent Events in Zululand, Natal, and the Transvaal', 'Haggard, H. Rider (Henry Rider)', '2006-04-27', 39, 'https://www.gutenberg.org/ebooks/8667', 'en', 5907), +(11838, 'Over the Rocky Mountains to Alaska', 'Stoddard, Charles Warren', '2007-10-03', 14, 'https://www.gutenberg.org/ebooks/22871', 'en', 5908), +(11839, 'Days to Remember: The British Empire in the Great War', 'Newbolt, Henry John, Sir', '2015-07-28', 41, 'https://www.gutenberg.org/ebooks/49540', 'en', 335), +(11840, 'The Story of Paul Boyton: Voyages on All the Great Rivers of the World', 'Boyton, Paul', '2006-09-09', 16, 'https://www.gutenberg.org/ebooks/19230', 'en', 885), +(11841, 'Cicero\'s Orations', 'Cicero, Marcus Tullius', '1995-03-01', 326, 'https://www.gutenberg.org/ebooks/226', 'la', 5909), +(11842, 'De Plantis Esculentis Insularum Oceani Australis Commentatio Botanica', 'Forster, Georg', '2011-01-11', 11, 'https://www.gutenberg.org/ebooks/34914', 'la', 5910), +(11843, 'Cremation of the Dead: Its History and Bearings Upon Public Health', 'Eassie, William', '2015-03-15', 3, 'https://www.gutenberg.org/ebooks/48492', 'en', 448), +(11844, 'The Pony Rider Boys in Alaska; Or, The Gold Diggers of Taku Pass', 'Patchin, Frank Gee', '2009-12-02', 22, 'https://www.gutenberg.org/ebooks/30588', 'en', 5911), +(11845, 'Romancero selecto del Cid', 'Anonymous', '2018-08-06', 61, 'https://www.gutenberg.org/ebooks/57648', 'es', 4140), +(11846, 'The History of Don Quixote, Volume 2, Part 41', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5944', 'en', 361), +(11847, 'Child-life in Art', 'Hurll, Estelle M. (Estelle May)', '2008-04-30', 26, 'https://www.gutenberg.org/ebooks/25268', 'en', 5912), +(11848, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1618-19', 'Motley, John Lothrop', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/4896', 'en', 5913), +(11849, 'Les fiançailles: Féerie en cinq actes et onze tableaux', 'Maeterlinck, Maurice', '2012-05-06', 13, 'https://www.gutenberg.org/ebooks/39637', 'fr', 5914), +(11850, 'The Sacrifice of Life Slain by the Twenty-nine Instruments of Death\r\nBeing the Substance of a Sermon Preached on Sunday Morning, Nov. 28, 1813 at the Obelisk Chapel', 'Church, J. (John)', '2019-01-02', 8, 'https://www.gutenberg.org/ebooks/58600', 'en', 2386), +(11851, 'Le Mariage forcé', 'Molière', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/5178', 'fr', 907), +(11852, 'Radio Boys Cronies\r\nOr, Bill Brown\'s Radio', 'Aaron, S. F. (Samuel Francis)', '2004-03-01', 46, 'https://www.gutenberg.org/ebooks/11861', 'en', 153), +(11853, 'Punch, or the London Charivari, Vol. 147, September 30, 1914', 'Various', '2009-02-02', 7, 'https://www.gutenberg.org/ebooks/27967', 'en', 134), +(11854, 'The Lives of the Twelve Caesars, Volume 14: Lives of the Poets', 'Suetonius', '2004-12-13', 36, 'https://www.gutenberg.org/ebooks/6399', 'en', 1037), +(11855, 'La passagère', 'Chantepleure, G. (Guy)', '2009-02-18', 11, 'https://www.gutenberg.org/ebooks/28113', 'fr', 259), +(11856, 'Vaihdokas: Nelinäytöksinen näytelmä', 'Anttila, Selma', '2015-09-19', 20, 'https://www.gutenberg.org/ebooks/50009', 'fi', 247), +(11857, 'Η Νέα Διαθήκη : κατά το Βατικανό Χειρόγραφο', NULL, '2010-03-28', 24, 'https://www.gutenberg.org/ebooks/31802', 'el', 2781), +(11858, 'The Land of Promise: A Comedy in Four Acts', 'Maugham, W. Somerset (William Somerset)', '2015-09-09', 29, 'https://www.gutenberg.org/ebooks/49918', 'en', 5915), +(11859, 'L\'Illustration, No. 3728, 8 Août 1914', 'Various', '2007-08-29', 6, 'https://www.gutenberg.org/ebooks/22429', 'fr', 150), +(11860, 'Birds and Nature, Vol. 12 No. 2 [July 1902]\nIllustrated by Color Photography', 'Various', '2015-01-05', 28, 'https://www.gutenberg.org/ebooks/47882', 'en', 490), +(11861, 'The Altar of the Dead', 'James, Henry', '1996-09-01', 129, 'https://www.gutenberg.org/ebooks/642', 'en', 5916), +(11862, 'Treachery in Outer Space', 'Rockwell, Carey', '2006-07-08', 44, 'https://www.gutenberg.org/ebooks/18786', 'en', 5917), +(11863, 'More Letters of Charles Darwin — Volume 1\r\nA Record of His Work in a Series of Hitherto Unpublished Letters', 'Darwin, Charles', '2001-07-01', 29, 'https://www.gutenberg.org/ebooks/2739', 'en', 5918), +(11864, 'The Luckiest Man in Denv', 'Kornbluth, C. M. (Cyril M.)', '2016-01-03', 50, 'https://www.gutenberg.org/ebooks/50835', 'en', 2564), +(11865, 'A Modern Instance', 'Howells, William Dean', '2005-06-01', 30, 'https://www.gutenberg.org/ebooks/8203', 'en', 675), +(11866, 'At the Sign of the Sphinx. Second series', 'Wells, Carolyn', '2015-06-03', 18, 'https://www.gutenberg.org/ebooks/49124', 'en', 5882), +(11867, 'Alexander Pope', 'Stephen, Leslie', '2006-10-29', 32, 'https://www.gutenberg.org/ebooks/19654', 'en', 5919), +(11868, 'The Adventures of Bob White', 'Burgess, Thornton W. (Thornton Waldo)', '2014-09-24', 37, 'https://www.gutenberg.org/ebooks/46950', 'en', 5920), +(11869, 'Punch, or the London Charivari, Vol. 93, September 24, 1887', 'Various', '2008-07-19', 10, 'https://www.gutenberg.org/ebooks/26089', 'en', 134), +(11870, 'The Snow-Drop\r\nA Holiday Gift', 'Mower, Sarah S.', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11439', 'en', 8), +(11871, 'Historic Towns of the Western States', NULL, '2012-11-11', 37, 'https://www.gutenberg.org/ebooks/41349', 'en', 5921), +(11872, 'The Conspiracy of Pontiac and the Indian War after the Conquest of Canada', 'Parkman, Francis', '2012-03-24', 48, 'https://www.gutenberg.org/ebooks/39253', 'en', 5922), +(11873, 'The Red Record\nTabulated Statistics and Alleged Causes of Lynching in the United States', 'Wells-Barnett, Ida B.', '2005-02-08', 420, 'https://www.gutenberg.org/ebooks/14977', 'en', 5923), +(11874, 'The Harwich Naval Forces: Their Part in the Great War', 'Knight, E. F. (Edward Frederick)', '2010-09-20', 11, 'https://www.gutenberg.org/ebooks/33769', 'en', 4131), +(11875, 'The History of Currency, 1252 to 1896', 'Shaw, William Arthur', '2011-12-22', 21, 'https://www.gutenberg.org/ebooks/38381', 'en', 5924), +(11876, 'The Hoosier Schoolmaster: A Story of Backwoods Life in Indiana', 'Eggleston, Edward', '2005-02-18', 61, 'https://www.gutenberg.org/ebooks/15099', 'en', 5925), +(11877, 'Stories by English Authors: Africa (Selected by Scribners)', NULL, '2006-03-26', 219, 'https://www.gutenberg.org/ebooks/1980', 'en', 409), +(11878, 'Sotamuistelmani 1914-1918', 'Ludendorff, Erich', '2018-11-10', 9, 'https://www.gutenberg.org/ebooks/58264', 'fi', 5926), +(11879, 'Stories Pictures Tell. Book Two', 'Carpenter, Flora L. (Flora Leona)', '2010-05-23', 24, 'https://www.gutenberg.org/ebooks/32489', 'en', 5927), +(11880, 'Samba: A Story of the Rubber Slaves of the Congo', 'Strang, Herbert', '2012-03-05', 48, 'https://www.gutenberg.org/ebooks/39061', 'en', 5928), +(11881, 'Advanced Toy Making for Schools', 'Mitchell, David M.', '2011-07-22', 47, 'https://www.gutenberg.org/ebooks/36815', 'en', 5929), +(11882, 'Liian Paha Sappi', 'Hellaakoski, Aaro', '2007-04-04', 17, 'https://www.gutenberg.org/ebooks/20970', 'fi', 8), +(11883, 'Boucher', 'MacFall, Haldane', '2013-01-30', 11, 'https://www.gutenberg.org/ebooks/41947', 'en', 5930), +(11884, 'Harper\'s Round Table, September 8, 1896', 'Various', '2019-04-01', 5, 'https://www.gutenberg.org/ebooks/59184', 'en', 668), +(11885, 'A Speckled Bird', 'Evans, Augusta J. (Augusta Jane)', '2011-05-04', 23, 'https://www.gutenberg.org/ebooks/36029', 'en', 61), +(11886, 'La vita Italiana nel Seicento\r\nConferenze tenute a Firenze nel 1894', 'Various', '2018-08-31', 14, 'https://www.gutenberg.org/ebooks/57822', 'it', 5931), +(11887, 'A Thousand Years of Jewish History\nFrom the days of Alexander the Great to the Moslem Conquest of Spain', 'Harris, Maurice H. (Maurice Henry)', '2013-12-11', 22, 'https://www.gutenberg.org/ebooks/44409', 'en', 5932), +(11888, 'Elsie at Nantucket', 'Finley, Martha', '2004-12-19', 56, 'https://www.gutenberg.org/ebooks/14379', 'en', 470), +(11889, 'Harper\'s Round Table, June 9, 1896', 'Various', '2018-10-08', 3, 'https://www.gutenberg.org/ebooks/58056', 'en', 668), +(11890, 'The Art of Politicks', 'Bramston, James', '2012-09-29', 9, 'https://www.gutenberg.org/ebooks/40895', 'en', 5933), +(11891, 'L\'undecimo comandamento: Romanzo', 'Barrili, Anton Giulio', '2009-03-13', 38, 'https://www.gutenberg.org/ebooks/28321', 'it', 61), +(11892, 'Charles Rex', 'Dell, Ethel M. (Ethel May)', '2004-11-05', 17, 'https://www.gutenberg.org/ebooks/13960', 'en', 48), +(11893, 'The Companions of Jehu', 'Dumas, Alexandre', '2004-12-01', 102, 'https://www.gutenberg.org/ebooks/7079', 'en', 4854), +(11894, 'Spasimo', 'De Roberto, Federico', '2008-11-30', 14, 'https://www.gutenberg.org/ebooks/27369', 'it', 1544), +(11895, 'Heretics', 'Chesterton, G. K. (Gilbert Keith)', '1996-03-01', 699, 'https://www.gutenberg.org/ebooks/470', 'en', 5934), +(11896, 'The Winning of Barbara Worth', 'Wright, Harold Bell', '2004-11-01', 54, 'https://www.gutenberg.org/ebooks/6997', 'en', 315), +(11897, 'The Raven, and The Philosophy of Composition', 'Poe, Edgar Allan', '2017-10-14', 129, 'https://www.gutenberg.org/ebooks/55749', 'en', 2270), +(11898, 'The Marvelous Land of Oz', 'Baum, L. Frank (Lyman Frank)', '2006-10-05', 15, 'https://www.gutenberg.org/ebooks/19466', 'en', 2791), +(11899, 'Toward the Gulf', 'Masters, Edgar Lee', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/7845', 'en', 8), +(11900, 'The Bible, King James version, Book 31: Obadiah', 'Anonymous', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/8031', 'en', 5593), +(11901, 'The Philosophy of Friedrich Nietzsche', 'Mencken, H. L. (Henry Louis)', '2015-06-29', 150, 'https://www.gutenberg.org/ebooks/49316', 'en', 5935), +(11902, 'In Northern Mists: Arctic Exploration in Early Times (Volume 2 of 2)', 'Nansen, Fridtjof', '2012-09-01', 27, 'https://www.gutenberg.org/ebooks/40634', 'en', 5936), +(11903, 'Romeo and Juliet', 'Shakespeare, William', '1998-11-01', 521, 'https://www.gutenberg.org/ebooks/1513', 'en', 5937), +(11904, 'Die Inselbauern; oder, Die Leute auf Hemsö', 'Strindberg, August', '2008-01-20', 17, 'https://www.gutenberg.org/ebooks/24371', 'de', 4184), +(11905, 'Punchinello, Volume 2, No. 35, November 26, 1870', 'Various', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10144', 'en', 372), +(11906, 'Index of the Project Gutenberg Works of William Harrison Ainsworth', 'Ainsworth, William Harrison', '2018-08-13', 10, 'https://www.gutenberg.org/ebooks/57683', 'en', 198), +(11907, 'The Jolly Book of Boxcraft', 'Beard, Patten', '2018-03-16', 22, 'https://www.gutenberg.org/ebooks/56751', 'en', 1063), +(11908, 'Tales of Ind, and Other Poems', 'Ramakrishna Pillai, T. (Thottakadu)', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11096', 'en', 5938), +(11909, 'Αργία : διήγημα', 'Faltaits, Kostas', '2010-05-02', 7, 'https://www.gutenberg.org/ebooks/32214', 'el', 61), +(11910, 'Leopardi', 'De Roberto, Federico', '2016-10-06', 13, 'https://www.gutenberg.org/ebooks/53223', 'it', 5939), +(11911, 'The Phantom Violin\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-11-27', 10, 'https://www.gutenberg.org/ebooks/44294', 'en', 3972), +(11912, 'Hidden Creek', 'Burt, Katharine Newlin', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/10978', 'en', 3196), +(11913, 'Strange Stories from the Lodge of Leisures', 'Pu, Songling', '2011-10-16', 47, 'https://www.gutenberg.org/ebooks/37766', 'en', 5940), +(11914, 'The Fifteen Decisive Battles of the World: from Marathon to Waterloo', 'Creasy, Edward Shepherd, Sir', '2003-05-01', 72, 'https://www.gutenberg.org/ebooks/4061', 'en', 5326), +(11915, 'Sea Spray: Verses and Translations', 'Rolleston, T. W. (Thomas William)', '2014-04-07', 5, 'https://www.gutenberg.org/ebooks/45346', 'en', 8), +(11916, 'Le féminisme', 'Faguet, Émile', '2019-06-10', 25, 'https://www.gutenberg.org/ebooks/59719', 'fr', 5066), +(11917, 'Journal of a Voyage from Okkak, on the Coast of Labrador, to Ungava Bay, Westward of Cape Chudleigh\nUndertaken to Explore the Coast, and Visit the Esquimaux in That Unknown Region', 'Kohlmeister, B. G. (Benjamin Gottlieb)', '2005-03-22', 13, 'https://www.gutenberg.org/ebooks/15436', 'en', 5941), +(11918, 'The Wisdom of Father Brown', 'Chesterton, G. K. (Gilbert Keith)', '2007-05-31', 22, 'https://www.gutenberg.org/ebooks/21603', 'en', 55), +(11919, 'The Son of Monte-Cristo, Volume II', 'Lermina, Jules', '2007-07-16', 23, 'https://www.gutenberg.org/ebooks/22086', 'en', 2079), +(11920, 'The Stuff', 'Slesar, Henry', '2016-03-27', 47, 'https://www.gutenberg.org/ebooks/51574', 'en', 5942), +(11921, 'The Land of Frozen Suns: A Novel', 'Sinclair, Bertrand W.', '2011-01-21', 427, 'https://www.gutenberg.org/ebooks/35031', 'en', 4714), +(11922, 'Shakespeare und die Bacon-Mythen', 'Fischer, Kuno', '2004-10-01', 11, 'https://www.gutenberg.org/ebooks/6736', 'de', 2784), +(11923, 'Tom Sawyer ilmailija\nHuckleberry Finn\'in jatko', 'Twain, Mark', '2014-11-21', 18, 'https://www.gutenberg.org/ebooks/47411', 'fi', 3091), +(11924, 'The German Element in Brazil\nColonies and Dialect', 'Schappelle, Benjamin Franklin', '2005-12-20', 13, 'https://www.gutenberg.org/ebooks/17361', 'en', 5943), +(11925, 'The Hill: A Romance of Friendship', 'Vachell, Horace Annesley', '2007-10-23', 21, 'https://www.gutenberg.org/ebooks/23154', 'en', 5944), +(11926, 'Bernardino Luini', 'Mason, James', '2013-02-22', 16, 'https://www.gutenberg.org/ebooks/42163', 'en', 5945), +(11927, 'The Baculum in the Chipmunks of Western North America', 'White, John A.', '2010-03-03', 11, 'https://www.gutenberg.org/ebooks/31491', 'en', 5946), +(11928, 'To Him That Hath: A Tale of the West of Today', 'Connor, Ralph', '2006-06-03', 21, 'https://www.gutenberg.org/ebooks/3244', 'en', 2612), +(11929, 'Nagualism: A Study in Native American Folk-lore and History', 'Brinton, Daniel G. (Daniel Garrison)', '2008-08-24', 74, 'https://www.gutenberg.org/ebooks/26426', 'en', 5947), +(11930, 'Eros\' begravning', 'Bergman, Hjalmar', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/12613', 'sv', 420), +(11931, 'The National Preacher, Vol. 2. No. 6., Nov. 1827\nOr Original Monthly Sermons from Living Ministers', 'Patton, William', '2006-05-06', 23, 'https://www.gutenberg.org/ebooks/18329', 'en', 1868), +(11932, 'Tattered Tom; or, The Story of a Street Arab', 'Alger, Horatio, Jr.', '2017-01-18', 31, 'https://www.gutenberg.org/ebooks/54006', 'en', 751), +(11933, 'Nas Cinzas', 'Berthoud, Eugène', '2009-11-25', 8, 'https://www.gutenberg.org/ebooks/30543', 'pt', 61), +(11934, 'History of the Catholic Church from the Renaissance to the French Revolution — Volume 1', 'MacCaffrey, James', '2000-11-01', 45, 'https://www.gutenberg.org/ebooks/2396', 'en', 5948), +(11935, 'On the Antiseptic Principle of the Practice of Surgery', 'Lister, Joseph, Baron', '2007-12-01', 4, 'https://www.gutenberg.org/ebooks/23968', 'en', 5949), +(11936, 'The Motor Boat Club in Florida; or, Laying the Ghost of Alligator Swamp', 'Hancock, H. Irving (Harrie Irving)', '2015-03-11', 16, 'https://www.gutenberg.org/ebooks/48459', 'en', 2722), +(11937, 'In the Van; or, The Builders', 'Price-Brown, John', '2011-02-07', 11, 'https://www.gutenberg.org/ebooks/35203', 'en', 61), +(11938, 'The Anti-Slavery Alphabet', 'Anonymous', '2005-06-17', 110, 'https://www.gutenberg.org/ebooks/16081', 'en', 4777), +(11939, 'My Reminiscences of East Africa', 'Lettow-Vorbeck, General von (Paul Emil)', '2016-04-12', 28, 'https://www.gutenberg.org/ebooks/51746', 'en', 5950), +(11940, 'Poutaa odottaessa: Ilveily 2:ssa näytöksessä', 'Kataja, Väinö', '2015-12-15', 7, 'https://www.gutenberg.org/ebooks/50694', 'fi', 382), +(11941, 'Synthetische Geometrie der Kugeln und linearen Kugelsysteme mit einer Einleitung in die analytische Geometrie der Kugelsysteme', 'Reye, Theodor', '2005-11-25', 8, 'https://www.gutenberg.org/ebooks/17153', 'de', 5951), +(11942, 'A l\'ombre des jeunes filles en fleurs - Première partie', 'Proust, Marcel', '2001-12-01', 134, 'https://www.gutenberg.org/ebooks/2998', 'fr', 607), +(11943, 'A Philanthropist', 'Bacon, Josephine Daskam', '2007-11-06', 7, 'https://www.gutenberg.org/ebooks/23366', 'en', 4141), +(11944, 'Der Parasit, oder, die Kunst sein Glück zu machen\r\nEin Lustspiel nach dem Franzoesischen [des Picard]', 'Picard, L.-B. (Louis-Benoît)', '2004-09-01', 34, 'https://www.gutenberg.org/ebooks/6504', 'de', 907), +(11945, 'The Uttermost Farthing', 'Lowndes, Marie Belloc', '2006-07-28', 12, 'https://www.gutenberg.org/ebooks/18927', 'en', 109), +(11946, 'Recherches nouvelles sur l\'histoire ancienne, tome II', 'Volney, C.-F. (Constantin-François)', '2014-12-10', 9, 'https://www.gutenberg.org/ebooks/47623', 'fr', 5952), +(11947, 'Le secrétaire intime', 'Sand, George', '2008-09-14', 19, 'https://www.gutenberg.org/ebooks/26614', 'fr', 298), +(11948, 'Practical Exercises in English', 'Buehler, Huber Gray', '2004-05-01', 45, 'https://www.gutenberg.org/ebooks/12421', 'en', 664), +(11949, 'The Cruise of a Schooner', 'Harris, Albert W. (Albert Wadsworth)', '2013-03-17', 21, 'https://www.gutenberg.org/ebooks/42351', 'en', 497), +(11950, 'Ten Days That Shook the World', 'Reed, John', '2002-02-01', 138, 'https://www.gutenberg.org/ebooks/3076', 'en', 5953), +(11951, 'L\'ignoto: Novelle', 'Di Giacomo, Salvatore', '2009-12-27', 19, 'https://www.gutenberg.org/ebooks/30771', 'it', 474), +(11952, 'The Correspondence of Madame, Princess Palatine, Mother of the Regent; of Marie-Adélaïde de Savoie, Duchesse de Bourgogne; and of Madame de Maintenon, in Relation to Saint-Cyr', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2013-07-23', 51, 'https://www.gutenberg.org/ebooks/43283', 'en', 1870), +(11953, 'The American Missionary — Volume 33, No. 07, July, 1879', 'Various', '2017-02-25', 11, 'https://www.gutenberg.org/ebooks/54234', 'en', 395), +(11954, '星槎勝覽', 'Fei, Xin', '2008-01-03', 10, 'https://www.gutenberg.org/ebooks/24143', 'zh', 5954), +(11955, 'American Indian Stories', 'Zitkala-Sa', '2003-12-01', 193, 'https://www.gutenberg.org/ebooks/10376', 'en', 5955), +(11956, 'Mary Seaham: A Novel. Volume 2 of 3', 'Grey, Mrs. (Elizabeth Caroline)', '2012-08-04', 9, 'https://www.gutenberg.org/ebooks/40406', 'en', 348), +(11957, 'The Trees of Pride', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 51, 'https://www.gutenberg.org/ebooks/1721', 'en', 167), +(11958, 'The World That Couldn\'t Be', 'Simak, Clifford D.', '2010-04-17', 142, 'https://www.gutenberg.org/ebooks/32026', 'en', 176), +(11959, 'Her Sailor: A Love Story', 'Saunders, Marshall', '2018-02-13', 12, 'https://www.gutenberg.org/ebooks/56563', 'en', 109), +(11960, 'Egitto', 'Cagni, Manfredo', '2014-06-12', 18, 'https://www.gutenberg.org/ebooks/45948', 'it', 2589), +(11961, 'Reflections on Dr. Swift\'s Letter to Harley (1712) and The British Academy (1712)', 'Maynwaring, Arthur', '2008-04-19', 3, 'https://www.gutenberg.org/ebooks/25091', 'en', 5956), +(11962, 'A Modern Chronicle — Volume 08', 'Churchill, Winston', '2004-10-19', 11, 'https://www.gutenberg.org/ebooks/5381', 'en', 5957), +(11963, 'The Bobbsey Twins at Cedar Camp', 'Hope, Laura Lee', '2011-09-28', 21, 'https://www.gutenberg.org/ebooks/37554', 'en', 309), +(11964, 'The Mentor\r\nA little book for the guidance of such men and boys as would appear to advantage in the society of persons of the better sort', 'Ayres, Alfred', '2016-09-08', 15, 'https://www.gutenberg.org/ebooks/53011', 'en', 788), +(11965, 'Piano Mastery: Talks with Master Pianists and Teachers', 'Brower, Harriette', '2005-04-11', 79, 'https://www.gutenberg.org/ebooks/15604', 'en', 5958), +(11966, 'Mary Powell & Deborah\'s Diary', 'Manning, Anne', '2007-05-14', 15, 'https://www.gutenberg.org/ebooks/21431', 'en', 5959), +(11967, 'Dramatic Romances', 'Browning, Robert', '2003-07-01', 36, 'https://www.gutenberg.org/ebooks/4253', 'en', 532), +(11968, 'The City of the Mormons; or, Three Days at Nauvoo, in 1842', 'Caswall, Henry', '2011-06-21', 11, 'https://www.gutenberg.org/ebooks/36486', 'en', 5960), +(11969, 'Dorothy Dixon Wins Her Wings', 'Wayne, Dorothy', '2014-03-19', 17, 'https://www.gutenberg.org/ebooks/45174', 'en', 454), +(11970, '\'t Bedrijf van den kwade', 'Teirlinck, Herman', '2006-01-23', 10, 'https://www.gutenberg.org/ebooks/17537', 'nl', 61), +(11971, 'The Babylonian Legends of the Creation', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2006-02-01', 135, 'https://www.gutenberg.org/ebooks/9914', 'en', 5961), +(11972, 'A List To Starboard\n1909', 'Smith, Francis Hopkinson', '2007-12-03', 13, 'https://www.gutenberg.org/ebooks/23702', 'en', 5962), +(11973, 'Fletcher of Madeley', 'Allen, Margaret', '2004-07-01', 21, 'https://www.gutenberg.org/ebooks/6160', 'en', 5963), +(11974, 'Manassas (Bull Run) National Battlefield Park, Virginia', 'Wilshin, Francis', '2014-10-31', 30, 'https://www.gutenberg.org/ebooks/47247', 'en', 2723), +(11975, 'Punch, or the London Charivari Volume 107, August 25, 1894', 'Various', '2014-07-24', 14, 'https://www.gutenberg.org/ebooks/46395', 'en', 134), +(11976, 'Voices for the Speechless\r\nSelections for Schools and Private Reading', NULL, '2004-07-10', 5, 'https://www.gutenberg.org/ebooks/12879', 'en', 5964), +(11977, 'Sour Grapes: A Book of Poems', 'Williams, William Carlos', '2011-03-24', 68, 'https://www.gutenberg.org/ebooks/35667', 'en', 178), +(11978, 'Harper\'s Young People, October 26, 1880\nAn Illustrated Weekly', 'Various', '2009-06-25', 10, 'https://www.gutenberg.org/ebooks/29238', 'en', 479), +(11979, 'The Mentor: The Incas, vol. 6, num. 3, Serial No. 151, March 15, 1918', 'Hardy, Osgood', '2016-02-28', 6, 'https://www.gutenberg.org/ebooks/51322', 'en', 5965), +(11980, 'Raeburn', 'Caw, J. L. (James Lewis), Sir', '2009-10-22', 11, 'https://www.gutenberg.org/ebooks/30315', 'en', 5966), +(11981, 'Wear and Tear; Or, Hints for the Overworked', 'Mitchell, S. Weir (Silas Weir)', '2004-08-17', 28, 'https://www.gutenberg.org/ebooks/13197', 'en', 5967), +(11982, 'Suffrage snapshots', 'Harper, Ida Husted', '2017-05-02', 15, 'https://www.gutenberg.org/ebooks/54650', 'en', 3505), +(11983, 'The Sermon on the Mount', NULL, '2008-08-01', 5, 'https://www.gutenberg.org/ebooks/26270', 'en', 5968), +(11984, 'The Turnpike House', 'Hume, Fergus', '2017-10-20', 98, 'https://www.gutenberg.org/ebooks/55782', 'en', 1425), +(11985, 'Women in the fine arts, from the Seventh Century B.C. to the Twentieth Century A.D.', 'Waters, Clara Erskine Clement', '2004-04-01', 50, 'https://www.gutenberg.org/ebooks/12045', 'en', 5969), +(11986, 'Exotics and Retrospectives', 'Hearn, Lafcadio', '2013-05-18', 66, 'https://www.gutenberg.org/ebooks/42735', 'en', 4331), +(11987, 'The Golden Chersonese and the Way Thither', 'Bird, Isabella L. (Isabella Lucy)', '2002-09-01', 41, 'https://www.gutenberg.org/ebooks/3412', 'en', 5970), +(11988, 'Kertoelmia', 'Haahti, Hilja', '2019-07-23', 71, 'https://www.gutenberg.org/ebooks/59973', 'fi', 175), +(11989, 'Gertrude\'s Marriage', 'Heimburg, W.', '2010-05-19', 5, 'https://www.gutenberg.org/ebooks/32442', 'en', 705), +(11990, 'Immortal Memories', 'Shorter, Clement King', '2007-06-19', 15, 'https://www.gutenberg.org/ebooks/21869', 'en', 610), +(11991, 'Leppirannan Lauri: Romaani', 'Nikkinen, Jaakko', '2017-12-03', 4, 'https://www.gutenberg.org/ebooks/56107', 'fi', 175), +(11992, 'Fragments of Science: A Series of Detached Essays, Addresses, and Reviews. V. 1-2', 'Tyndall, John', '2008-02-06', 31, 'https://www.gutenberg.org/ebooks/24527', 'en', 292), +(11993, 'White Jacket; Or, The World on a Man-of-War', 'Melville, Herman', '2004-01-01', 193, 'https://www.gutenberg.org/ebooks/10712', 'en', 5971), +(11994, 'Blackwood\'s Edinburgh Magazine—Volume 62, No. 386, December, 1847', 'Various', '2012-06-23', 9, 'https://www.gutenberg.org/ebooks/40062', 'en', 274), +(11995, 'L\'Illustration, No. 0003, 18 Mars 1843', 'Various', '2010-08-30', 7, 'https://www.gutenberg.org/ebooks/33590', 'fr', 150), +(11996, 'An Account of the Campaign in the West Indies, in the Year 1794\r\nUnder the Command of their Excellencies Lieutenant General Sir Charles Grey, K.B., and Vice Admiral Sir John Jervis, K.B.', 'Willyams, Cooper', '2011-11-30', 9, 'https://www.gutenberg.org/ebooks/38178', 'en', 5972), +(11997, 'The Vicar of Tours', 'Balzac, Honoré de', '2005-08-10', 32, 'https://www.gutenberg.org/ebooks/1345', 'en', 58), +(11998, 'A Portraiture of Quakerism, Volume 1\r\nTaken from a View of the Education and Discipline, Social Manners, Civil and Political Economy, Religious Principles and Character, of the Society of Friends', 'Clarkson, Thomas', '2005-03-04', 14, 'https://www.gutenberg.org/ebooks/15260', 'en', 4759), +(11999, 'The Girl Next Door', 'Seaman, Augusta Huiell', '2012-06-02', 37, 'https://www.gutenberg.org/ebooks/39896', 'en', 167), +(12000, 'A Mating in the Wilds', 'Binns, Ottwell', '2007-04-13', 16, 'https://www.gutenberg.org/ebooks/21055', 'en', 5973), +(12001, 'Angel Island', 'Gillmore, Inez Haynes', '2003-11-01', 41, 'https://www.gutenberg.org/ebooks/4637', 'en', 580), +(12002, 'The Reign of the Manuscript', 'Sinks, Perry Wayland', '2014-04-27', 9, 'https://www.gutenberg.org/ebooks/45510', 'en', 5974), +(12003, 'Sheffield and its Environs 13th to the 17th century\r\nA descriptive catalogue of land charters and other documents forming the Brooke Taylor collection', 'Hall, T. Walter (Thomas Walter)', '2011-08-20', 12, 'https://www.gutenberg.org/ebooks/37130', 'en', 5975), +(12004, 'On Christmas Day in the Morning', 'Richmond, Grace S. (Grace Smith)', '2006-12-26', 22, 'https://www.gutenberg.org/ebooks/20187', 'en', 585), +(12005, 'Punch, or the London Charivari, Vol. 150, June 28th, 1916', 'Various', '2012-02-21', 10, 'https://www.gutenberg.org/ebooks/38944', 'en', 134), +(12006, 'The End of the Middle Ages: Essays and Questions in History', 'Robinson, A. Mary F. (Agnes Mary Frances)', '2016-11-07', 20, 'https://www.gutenberg.org/ebooks/53475', 'en', 5976), +(12007, 'Susan Proudleigh', 'De Lisser, Herbert George', '2018-01-07', 22, 'https://www.gutenberg.org/ebooks/56335', 'en', 5977), +(12008, 'The Time Mirror', 'South, Clark', '2010-06-03', 18, 'https://www.gutenberg.org/ebooks/32670', 'en', 2229), +(12009, 'Modern Leaders: Being a Series of Biographical Sketches', 'McCarthy, Justin', '2012-03-30', 9, 'https://www.gutenberg.org/ebooks/39298', 'en', 122), +(12010, 'Claus Störtebecker', 'Engel, Georg', '2012-11-17', 20, 'https://www.gutenberg.org/ebooks/41382', 'de', 253), +(12011, 'Of the Decorative Illustration of Books Old and New\n3rd ed.', 'Crane, Walter', '2012-07-16', 50, 'https://www.gutenberg.org/ebooks/40250', 'en', 2020), +(12012, 'The Memorabilia', 'Xenophon', '1998-01-01', 170, 'https://www.gutenberg.org/ebooks/1177', 'en', 5978), +(12013, 'The Western World\nPicturesque Sketches of Nature and Natural History in North\nand South America', 'Kingston, William Henry Giles', '2008-02-28', 20, 'https://www.gutenberg.org/ebooks/24715', 'en', 5979), +(12014, 'The Compleat Cook\nExpertly Prescribing the Most Ready Wayes, Whether Italian,\nSpanish or French, for Dressing of Flesh and Fish, Ordering\nOf Sauces or Making of Pastry', 'W. M.', '2003-12-01', 111, 'https://www.gutenberg.org/ebooks/10520', 'en', 5980), +(12015, 'The Shaving of Shagpat; an Arabian entertainment — Complete', 'Meredith, George', '2004-11-02', 33, 'https://www.gutenberg.org/ebooks/4405', 'en', 2634), +(12016, 'L\'Illustration, No. 2509, 28 Mars 1891', 'Various', '2014-05-22', 2, 'https://www.gutenberg.org/ebooks/45722', 'fr', 150), +(12017, 'Scientific American Supplement, No. 832, December 12, 1891', 'Various', '2005-02-14', 9, 'https://www.gutenberg.org/ebooks/15052', 'en', 210), +(12018, 'El libro rojo, 1520-1867, Tomo I', 'Martinez de la Torre, Rafael', '2016-08-13', 36, 'https://www.gutenberg.org/ebooks/52795', 'es', 5981), +(12019, 'Our American Holidays: Lincoln\'s Birthday\r\nA Comprehensive View of Lincoln as Given in the Most Noteworthy Essays, Orations and Poems, in Fiction and in Lincoln\'s Own Writings', NULL, '2007-05-02', 5, 'https://www.gutenberg.org/ebooks/21267', 'en', 1716), +(12020, 'Texas Flowers in Natural Colors', 'Whitehouse, Eula', '2016-12-02', 16, 'https://www.gutenberg.org/ebooks/53647', 'en', 5982), +(12021, 'Dew Drops, Vol. 37, No. 17, April 26, 1914', 'Various', '2004-11-27', 8, 'https://www.gutenberg.org/ebooks/14180', 'en', 563), +(12022, 'An Account of the Growth of Deism in England', 'Stephens, William', '2011-09-03', 13, 'https://www.gutenberg.org/ebooks/37302', 'en', 5983), +(12023, 'Dora Deane; Or, The East India Uncle', 'Holmes, Mary Jane', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6352', 'en', 378), +(12024, 'Mrs. Halliburton\'s Troubles', 'Wood, Henry, Mrs.', '2010-12-08', 29, 'https://www.gutenberg.org/ebooks/34587', 'en', 61), +(12025, 'Charles Baudelaire, His Life', 'Gautier, Théophile', '2014-10-08', 35, 'https://www.gutenberg.org/ebooks/47075', 'en', 5984), +(12026, 'The Tales of the Heptameron, Vol. 5 (of 5)', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2006-02-07', 32, 'https://www.gutenberg.org/ebooks/17705', 'en', 5827), +(12027, 'Il Re bello', 'Palazzeschi, Aldo', '2015-04-26', 15, 'https://www.gutenberg.org/ebooks/48801', 'it', 892), +(12028, 'Adventures in Many Lands', 'Various', '2007-11-17', 41, 'https://www.gutenberg.org/ebooks/23530', 'en', 179), +(12029, 'The Mentor: Julius Cæsar, Vol. 6, Num. 2, Serial No. 150, March 1, 1918', 'Botsford, George Willis', '2016-02-02', 13, 'https://www.gutenberg.org/ebooks/51110', 'en', 5985), +(12030, 'My Boyhood', 'Burroughs, John', '2005-01-01', 19, 'https://www.gutenberg.org/ebooks/7280', 'en', 5986), +(12031, 'A Flight with the Swallows; Or, Little Dorothy\'s Dream', 'Marshall, Emma', '2011-03-02', 14, 'https://www.gutenberg.org/ebooks/35455', 'en', 5987), +(12032, 'The Kreutzer Sonata and Other Stories', 'Tolstoy, Leo, graf', '2006-03-18', 314, 'https://www.gutenberg.org/ebooks/689', 'en', 179), +(12033, 'Animal Behaviour', 'Morgan, C. Lloyd (Conwy Lloyd)', '2017-03-31', 146, 'https://www.gutenberg.org/ebooks/54462', 'en', 2560), +(12034, 'Pussy and Doggy Tales', 'Nesbit, E. (Edith)', '2008-11-07', 61, 'https://www.gutenberg.org/ebooks/27190', 'en', 766), +(12035, 'Studies in the Theory of Descent (Volumes 1 and 2)', 'Weismann, August', '2015-01-02', 11, 'https://www.gutenberg.org/ebooks/47849', 'en', 5988), +(12036, 'Tales from Dickens', 'Dickens, Charles', '2009-09-28', 125, 'https://www.gutenberg.org/ebooks/30127', 'en', 5989), +(12037, 'Πελοποννησιακός Πόλεμος, Τόμος τέταρτος', 'Thucydides', '2009-08-28', 25, 'https://www.gutenberg.org/ebooks/29836', 'el', 5990), +(12038, 'A Tenderfoot Bride: Tales from an Old Ranch', 'Richards, Clarice E.', '2013-04-12', 16, 'https://www.gutenberg.org/ebooks/42507', 'en', 5991), +(12039, 'Geological Observations on South America', 'Darwin, Charles', '2003-01-01', 42, 'https://www.gutenberg.org/ebooks/3620', 'en', 339), +(12040, 'An Introduction to the History of Western Europe', 'Robinson, James Harvey', '2008-07-12', 42, 'https://www.gutenberg.org/ebooks/26042', 'en', 5992), +(12041, 'The Delectable Duchy', 'Quiller-Couch, Arthur', '2004-05-01', 40, 'https://www.gutenberg.org/ebooks/12277', 'en', 409), +(12042, 'The Witchcraft Delusion in New England: Its Rise, Progress, and Termination, (Vol. 1 of 3)', 'Mather, Cotton', '2015-10-13', 27, 'https://www.gutenberg.org/ebooks/50204', 'en', 939), +(12043, 'The Two Twilights', 'Beers, Henry A. (Henry Augustin)', '2010-12-24', 9, 'https://www.gutenberg.org/ebooks/34741', 'en', 8), +(12044, 'Mrs. Falchion, Complete', 'Parker, Gilbert', '2004-11-16', 32, 'https://www.gutenberg.org/ebooks/6194', 'en', 1219), +(12045, 'Springfield in the Spanish American War', 'Ward, Walter W.', '2014-07-22', 9, 'https://www.gutenberg.org/ebooks/46361', 'en', 5993), +(12046, 'History of American Abolitionism\r\nIts four great epochs, embracing narratives of the ordinance of 1787, compromise of 1820, annexation of Texas, Mexican war, Wilmot proviso, negro insurrections, abolition riots, slave rescues, compromise of 1850, Kansas bill of 1854, John Brown insurrection, 1859, valuable statistics, &c., &c., &c., together with a history of the Southern Confederacy.', 'De Fontaine, F. G. (Felix Gregory)', '2011-03-27', 29, 'https://www.gutenberg.org/ebooks/35693', 'en', 1174), +(12047, 'Annals and Reminiscences of Jamaica Plain', 'Whitcomb, Harriet Manning', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/7046', 'en', 5994), +(12048, 'Notes and Queries, Number 52, October 26, 1850\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-09-16', 8, 'https://www.gutenberg.org/ebooks/22624', 'en', 105), +(12049, 'Weymouth New Testament in Modern Speech, Acts', 'Weymouth, Richard Francis', '2005-09-01', 18, 'https://www.gutenberg.org/ebooks/8832', 'en', 5995), +(12050, 'Kahleeton vanki: Elämäkerrallinen kuvaus', 'Meriläinen, Heikki', '2005-08-01', 15, 'https://www.gutenberg.org/ebooks/16411', 'fi', 61), +(12051, 'Eugene Pickering', 'James, Henry', '2001-03-01', 25, 'https://www.gutenberg.org/ebooks/2534', 'en', 5996), +(12052, 'Die Welt im Kinderköpfchen', 'Siebe, Josephine', '2013-08-31', 10, 'https://www.gutenberg.org/ebooks/43613', 'de', 5997), +(12053, 'The Cruise of the Alabama and the Sumter\r\nFrom the Private Journals and Other Papers of Commander R. Semmes, C.S.N., and Other Officers', 'Semmes, Raphael', '2004-08-12', 25, 'https://www.gutenberg.org/ebooks/13163', 'en', 5998), +(12054, 'Chelsea', 'Mitton, G. E. (Geraldine Edith)', '2008-11-28', 37, 'https://www.gutenberg.org/ebooks/27356', 'en', 5999), +(12055, 'El Mar', 'Michelet, Jules', '2008-08-12', 54, 'https://www.gutenberg.org/ebooks/26284', 'es', 871), +(12056, 'History of the Royal Sappers and Miners, Volume 1 (of 2)\r\nFrom the Formation of the Corps in March 1712 to the date when its designation was changed to that of Royal Engineers', 'Connolly, T. W. J. (Thomas William John)', '2017-10-19', 7, 'https://www.gutenberg.org/ebooks/55776', 'en', 6000), +(12057, 'Born Again', 'Lawson, Alfred W. (Alfred William)', '2006-10-04', 24, 'https://www.gutenberg.org/ebooks/19459', 'en', 61), +(12058, 'Young India\nAn interpretation and a history of the nationalist movement from within', 'Lajpat Rai, Lala', '2015-06-29', 23, 'https://www.gutenberg.org/ebooks/49329', 'en', 1707); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(12059, 'Rittmeister Brand; Bertram Vogelweid\nZwei Erzählungen', 'Ebner-Eschenbach, Marie von', '2010-02-08', 8, 'https://www.gutenberg.org/ebooks/31233', 'de', 61), +(12060, 'Luck on the Wing: Thirteen Stories of a Sky Spy', 'Haslett, Elmer', '2019-07-27', 956, 'https://www.gutenberg.org/ebooks/59987', 'en', 3872), +(12061, 'The Fishguard Invasion by the French in 1797', 'James, Margaret Ellen', '2012-10-22', 13, 'https://www.gutenberg.org/ebooks/41144', 'en', 6001), +(12062, 'Human Nature in Politics\nThird Edition', 'Wallas, Graham', '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/11634', 'en', 6002), +(12063, '陶庵夢憶', 'Zhang, Dai', '2008-05-09', 25, 'https://www.gutenberg.org/ebooks/25401', 'zh', 6003), +(12064, 'The Christiana Riot and the Treason Trials of 1851: An Historical Sketch', 'Hensel, W. U. (William Uhler)', '2018-04-22', 11, 'https://www.gutenberg.org/ebooks/57021', 'en', 6004), +(12065, 'Encyclopaedia Britannica, 11th Edition, \"Independence, Declaration of\" to \"Indo-European Languages\"\r\nVolume 14, Slice 4', 'Various', '2012-06-27', 56, 'https://www.gutenberg.org/ebooks/40096', 'en', 1081), +(12066, 'The Little Room, and Other Stories', 'Wynne, Madeline Yale', '2019-02-10', 15, 'https://www.gutenberg.org/ebooks/58855', 'en', 112), +(12067, 'John Bull, Junior; or, French as She is Traduced', 'O\'Rell, Max', '2010-08-28', 24, 'https://www.gutenberg.org/ebooks/33564', 'en', 6005), +(12068, 'English Traits', 'Emerson, Ralph Waldo', '2012-05-30', 63, 'https://www.gutenberg.org/ebooks/39862', 'en', 3789), +(12069, 'Harper\'s Young People, January 17, 1882\nAn Illustrated Weekly', 'Various', '2016-07-11', 10, 'https://www.gutenberg.org/ebooks/52553', 'en', 479), +(12070, 'A Country Doctor and Selected Stories and Sketches', 'Jewett, Sarah Orne', '2005-03-08', 41, 'https://www.gutenberg.org/ebooks/15294', 'en', 770), +(12071, 'Our Little Irish Cousin', 'Wade, Mary Hazelton Blanchard', '2013-02-03', 16, 'https://www.gutenberg.org/ebooks/41978', 'en', 6006), +(12072, 'The Prussian Terror', 'Dumas, Alexandre', '2011-05-02', 42, 'https://www.gutenberg.org/ebooks/36016', 'en', 6007), +(12073, 'Das himmlische Licht: Gedichte', 'Rubiner, Ludwig', '2013-12-15', 7, 'https://www.gutenberg.org/ebooks/44436', 'de', 8), +(12074, 'Germinal', 'Zola, Émile', '2004-05-01', 135, 'https://www.gutenberg.org/ebooks/5711', 'fr', 6008), +(12075, 'The Romance of Golden Star ...', 'Griffith, George Chetwynd', '2006-12-23', 20, 'https://www.gutenberg.org/ebooks/20173', 'en', 580), +(12076, 'An Historical Relation of the Island Ceylon in the East Indies\r\nTogether with an Account of the Detaining in Captivity the Author\r\nand Divers other Englishmen Now Living There, and of the Author\'s\r\nMiraculous Escape', 'Knox, Robert', '2004-12-13', 128, 'https://www.gutenberg.org/ebooks/14346', 'en', 6009), +(12077, 'Printing Telegraphy... A New Era Begins', 'Kleinschmidt, Edward E.', '2016-11-09', 26, 'https://www.gutenberg.org/ebooks/53481', 'en', 6010), +(12078, 'Les chasseurs mexicains: Scènes de la vie mexicaine', 'Aimard, Gustave', '2018-10-10', 14, 'https://www.gutenberg.org/ebooks/58069', 'fr', 3865), +(12079, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 340, Supplementary Number (1828)', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11406', 'en', 133), +(12080, 'Blackwood\'s Edinburgh Magazine - Volume 62, No. 384, October 1847', 'Various', '2008-05-29', 15, 'https://www.gutenberg.org/ebooks/25633', 'en', 711), +(12081, 'The Invader', 'Coppel, Alfred', '2010-06-04', 55, 'https://www.gutenberg.org/ebooks/32684', 'en', 424), +(12082, 'Mohawks: A Novel. Volume 3 of 3', 'Braddon, M. E. (Mary Elizabeth)', '2012-11-16', 18, 'https://www.gutenberg.org/ebooks/41376', 'en', 61), +(12083, 'The Return of Dr. Fu-Manchu', 'Rohmer, Sax', '1998-01-01', 101, 'https://www.gutenberg.org/ebooks/1183', 'en', 6011), +(12084, 'The Girl at the Halfway House\r\nA Story of the Plains', 'Hough, Emerson', '2005-02-07', 21, 'https://www.gutenberg.org/ebooks/14948', 'en', 6012), +(12085, 'Village Life in America 1852-1872, Including the Period of the American Civil War\r\nAs Told in the Diary of a School-Girl', 'Richards, Caroline Cowles', '2010-09-18', 94, 'https://www.gutenberg.org/ebooks/33756', 'en', 6013), +(12086, 'Hazai rejtelmek: Regény (1. kötet)', 'Kuthy, Lajos', '2018-05-25', 4, 'https://www.gutenberg.org/ebooks/57213', 'hu', 189), +(12087, 'Notes on the Kiowa Sun Dance', 'Spier, Leslie', '2011-05-28', 2, 'https://www.gutenberg.org/ebooks/36224', 'en', 6014), +(12088, 'Salt-Water Ballads', 'Masefield, John', '2016-08-09', 23, 'https://www.gutenberg.org/ebooks/52761', 'en', 54), +(12089, 'Ahnaat paadet ynnä muita kertomuksia', 'Tagore, Rabindranath', '2019-04-29', 2, 'https://www.gutenberg.org/ebooks/59389', 'fi', 6015), +(12090, 'Brownsmith\'s Boy: A Romance in a Garden', 'Fenn, George Manville', '2007-05-04', 17, 'https://www.gutenberg.org/ebooks/21293', 'en', 6016), +(12091, 'Grace Harlowe\'s Overland Riders in the Great North Woods', 'Chase, Josephine', '2007-01-11', 18, 'https://www.gutenberg.org/ebooks/20341', 'en', 82), +(12092, 'The Mating of Lydia', 'Ward, Humphry, Mrs.', '2004-11-27', 31, 'https://www.gutenberg.org/ebooks/14174', 'en', 1380), +(12093, 'How to Become an Engineer', 'Doughty, Frank W.', '2014-01-06', 23, 'https://www.gutenberg.org/ebooks/44604', 'en', 6017), +(12094, 'The Bride of the Nile — Volume 07', 'Ebers, Georg', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/5523', 'en', 803), +(12095, 'Speeches, Addresses, and Occasional Sermons, Volume 1 (of 3)', 'Parker, Theodore', '2010-12-05', 18, 'https://www.gutenberg.org/ebooks/34573', 'en', 2706), +(12096, 'In Convent Walls\nThe Story of the Despensers', 'Holt, Emily Sarah', '2009-02-01', 28, 'https://www.gutenberg.org/ebooks/27958', 'en', 98), +(12097, 'Zur Geschichte der englischen Volkswirthschaftslehre\r\naus dem III. Bande der Abhandlungen der Königlich Sächsischen Gesellschaft der Wissenschaften', 'Roscher, Wilhelm', '2014-10-09', 14, 'https://www.gutenberg.org/ebooks/47081', 'de', 1745), +(12098, '\"My country, \'tis of thee!\"\r\nOr, the United States of America; past, present and future. A philosophic view of American history and of our present status, to be seen in the Columbian exhibition.', 'Johnson, Willis Fletcher', '2015-09-22', 18, 'https://www.gutenberg.org/ebooks/50036', 'en', 207), +(12099, 'Pearl-Fishing; Choice Stories from Dickens\' Household Words; First Series', 'Dickens, Charles', '2015-09-10', 21, 'https://www.gutenberg.org/ebooks/49927', 'en', 137), +(12100, 'L\'Illustration, No. 3730, 22 Août 1914', 'Various', '2007-08-27', 9, 'https://www.gutenberg.org/ebooks/22416', 'fr', 335), +(12101, 'Letters of a Woman Homesteader', 'Stewart, Elinore Pruitt', '2005-08-30', 81, 'https://www.gutenberg.org/ebooks/16623', 'en', 6018), +(12102, 'The Notting Hill Mystery', 'Felix, Charles', '2014-06-30', 82, 'https://www.gutenberg.org/ebooks/46153', 'en', 128), +(12103, 'Poets of the South\r\nA Series of Biographical and Critical Studies with Typical Poems, Annotated', 'Painter, F. V. N. (Franklin Verzelius Newton)', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/7274', 'en', 6019), +(12104, 'The Dreadnought Boys in Home Waters', 'Goldfrap, John Henry', '2017-04-07', 25, 'https://www.gutenberg.org/ebooks/54496', 'en', 4678), +(12105, 'The Life of Thomas, Lord Cochrane, Tenth Earl of Dundonald, Vol. I', 'Bourne, H. R. Fox (Henry Richard Fox)', '2004-09-02', 33, 'https://www.gutenberg.org/ebooks/13351', 'en', 6020), +(12106, 'Seven and Nine years Among the Camanches and Apaches: An Autobiography', 'Eastman, Edwin', '2008-11-05', 40, 'https://www.gutenberg.org/ebooks/27164', 'en', 6021), +(12107, 'The Bravo of Venice: A Romance', 'Zschokke, Heinrich', '2001-07-01', 42, 'https://www.gutenberg.org/ebooks/2706', 'en', 428), +(12108, 'Mater dolorosa', 'Rovetta, Gerolamo', '2009-05-21', 8, 'https://www.gutenberg.org/ebooks/28910', 'it', 860), +(12109, 'China in America\r\nA study in the social life of the Chinese in the eastern cities of the United States', 'Culin, Stewart', '2013-08-08', 5, 'https://www.gutenberg.org/ebooks/43421', 'en', 6022), +(12110, 'Benno Stehkragen', 'Ettlinger, Karl', '2010-01-17', 14, 'https://www.gutenberg.org/ebooks/31001', 'de', 61), +(12111, 'The Soul of a Child', 'Björkman, Edwin', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/12283', 'en', 6023), +(12112, 'Tuukan poika\nJatkoa näytelmään \"Tuukan tappelu\" 3 sivuinen tarina', 'Numers, Gustaf von', '2017-09-14', 9, 'https://www.gutenberg.org/ebooks/55544', 'fi', 402), +(12113, 'De Ridderromantiek der Franse en Duitse Middeleeuwen', 'Vedel, Vald.', '2010-08-03', 11, 'https://www.gutenberg.org/ebooks/33332', 'nl', 2881), +(12114, 'Lights and Shadows in Confederate Prisons\nA Personal Experience, 1864-5', 'Sprague, Homer B. (Homer Baxter)', '2008-01-21', 12, 'https://www.gutenberg.org/ebooks/24385', 'en', 2363), +(12115, 'Im Schmetterlingsreich', 'Olfers, Sibylle', '2018-08-12', 16, 'https://www.gutenberg.org/ebooks/57677', 'de', 2296), +(12116, 'The Dozen from Lakerim', 'Hughes, Rupert', '2004-02-01', 35, 'https://www.gutenberg.org/ebooks/11062', 'en', 6024), +(12117, 'Op den Tarn\nDe Aarde en haar Volken, 1909', 'Mendell, M.', '2008-04-30', 5, 'https://www.gutenberg.org/ebooks/25257', 'nl', 6025), +(12118, 'The Magic of the Middle Ages', 'Rydberg, Viktor', '2012-05-04', 43, 'https://www.gutenberg.org/ebooks/39608', 'en', 6026), +(12119, 'Connie Morgan in the Lumber Camps', 'Hendryx, James B. (James Beardsley)', '2012-12-27', 13, 'https://www.gutenberg.org/ebooks/41712', 'en', 6027), +(12120, 'Os Primeiros Amores de Bocage\r\nComedia em Cinco Actos', 'Leal, José da Silva Mendes', '2007-03-02', 10, 'https://www.gutenberg.org/ebooks/20725', 'pt', 6028), +(12121, 'Ireland Under Coercion: The Diary of an American (1 of 2)\r\n(2nd ed.) (1888)', 'Hurlbert, William Henry', '2004-12-29', 22, 'https://www.gutenberg.org/ebooks/14510', 'en', 3673), +(12122, 'Les Deux Rives: Roman', 'Vandérem, Fernand', '2013-11-23', 3, 'https://www.gutenberg.org/ebooks/44260', 'fr', 1165), +(12123, 'England, Canada and the Great War', 'Desjardins, L. G. (Louis Georges)', '2011-10-18', 10, 'https://www.gutenberg.org/ebooks/37792', 'en', 6029), +(12124, 'Le Jardin d\'Épicure', 'France, Anatole', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/5147', 'fr', 4252), +(12125, 'Lectures on Elementary Mathematics', 'Lagrange, J. L. (Joseph Louis)', '2011-07-06', 100, 'https://www.gutenberg.org/ebooks/36640', 'en', 1044), +(12126, 'Plato and Platonism', 'Pater, Walter', '2003-05-01', 61, 'https://www.gutenberg.org/ebooks/4095', 'en', 2286), +(12127, 'Ihmiskunnan edustaja', 'Emerson, Ralph Waldo', '2016-06-11', 9, 'https://www.gutenberg.org/ebooks/52305', 'fi', 6030), +(12128, 'Folk-Lore and Legends: North American Indian', 'Anonymous', '2007-07-14', 55, 'https://www.gutenberg.org/ebooks/22072', 'en', 1749), +(12129, 'On the Future of our Educational Institutions; Homer and Classical Philology\r\nComplete Works, Volume Three', 'Nietzsche, Friedrich Wilhelm', '2016-03-28', 33, 'https://www.gutenberg.org/ebooks/51580', 'en', 6031), +(12130, 'Famous Stories Every Child Should Know', NULL, '2005-07-08', 133, 'https://www.gutenberg.org/ebooks/16247', 'en', 388), +(12131, 'Mildred at Roselands\nA Sequel to Mildred Keith', 'Finley, Martha', '2014-08-09', 20, 'https://www.gutenberg.org/ebooks/46537', 'en', 2711), +(12132, 'Eugene Aram — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7610', 'en', 4703), +(12133, 'Beowulf: An Introduction to the Study of the Poem with a Discussion of the Stories of Offa and Finn', 'Chambers, R. W. (Raymond Wilson)', '2010-10-23', 83, 'https://www.gutenberg.org/ebooks/34117', 'en', 6032), +(12134, 'The Book of Art for Young People', 'Conway, Agnes Ethel', '2005-12-26', 49, 'https://www.gutenberg.org/ebooks/17395', 'en', 1258), +(12135, 'Viestini menneiltä sukupolvilta', 'Roslin-Kalliola, Matilda', '2015-11-14', 17, 'https://www.gutenberg.org/ebooks/50452', 'fi', 396), +(12136, 'Substitutes for Flesh Foods: Vegetarian Cook Book', 'Fulton, Edwin Giles', '2013-10-03', 89, 'https://www.gutenberg.org/ebooks/43879', 'en', 1369), +(12137, 'Gipsy Life\r\nBeing an account of our Gipsies and their children, with suggestions for their improvement', 'Smith, George', '2009-04-09', 16, 'https://www.gutenberg.org/ebooks/28548', 'en', 6033), +(12138, 'With the King at Oxford: A Tale of the Great Rebellion', 'Church, Alfred John', '2013-02-25', 20, 'https://www.gutenberg.org/ebooks/42197', 'en', 4665), +(12139, 'The Book of the Thousand Nights and One Night, Volume IV', NULL, '2005-08-01', 44, 'https://www.gutenberg.org/ebooks/8658', 'en', 1007), +(12140, 'Tormento', 'Pérez Galdós, Benito', '2010-03-01', 62, 'https://www.gutenberg.org/ebooks/31465', 'es', 264), +(12141, 'The Paper Currency of England Dispassionately Considered\nWith Suggestions Towards a Practical Solution of the Difficulty', 'Haslam, John (of Dublin)', '2017-07-15', 16, 'https://www.gutenberg.org/ebooks/55120', 'en', 634), +(12142, 'Heart of Darkness', 'Conrad, Joseph', '2006-01-09', 4099, 'https://www.gutenberg.org/ebooks/219', 'en', 6034), +(12143, 'La grande ombre', 'Doyle, Arthur Conan', '2004-10-13', 49, 'https://www.gutenberg.org/ebooks/13735', 'fr', 98), +(12144, 'The New Theology', 'Campbell, R. J. (Reginald John)', '2008-12-11', 8, 'https://www.gutenberg.org/ebooks/27500', 'en', 2382), +(12145, 'The Story of Wellesley', 'Converse, Florence', '2000-10-01', 24, 'https://www.gutenberg.org/ebooks/2362', 'en', 6035), +(12146, 'George Eliot\'s Life, as Related in Her Letters and Journals. Vol. 3 (of 3)', 'Eliot, George', '2013-06-29', 37, 'https://www.gutenberg.org/ebooks/43045', 'en', 4701), +(12147, 'In the Land of Mosques & Minarets', 'Mansfield, M. F. (Milburg Francisco)', '2014-08-27', 18, 'https://www.gutenberg.org/ebooks/46705', 'en', 6036), +(12148, 'The Drummer\'s Coat', 'Fortescue, J. W. (John William), Sir', '2006-11-13', 21, 'https://www.gutenberg.org/ebooks/19801', 'en', 6037), +(12149, 'Roman Holidays, and Others', 'Howells, William Dean', '2005-02-01', 12, 'https://www.gutenberg.org/ebooks/7422', 'en', 1896), +(12150, 'Masterpieces of Negro Eloquence\nThe Best Speeches Delivered by the Negro from the days of\nSlavery to the Present Time', NULL, '2007-08-04', 21, 'https://www.gutenberg.org/ebooks/22240', 'en', 6038), +(12151, 'Ratsumies Peter Halket Mashonamaasta', 'Schreiner, Olive', '2005-06-16', 14, 'https://www.gutenberg.org/ebooks/16075', 'fi', 6039), +(12152, 'Encyclopedia of Diet: A Treatise on the Food Question, Vol. 5 of 5', 'Christian, Eugene', '2015-12-10', 8, 'https://www.gutenberg.org/ebooks/50660', 'en', 3463), +(12153, 'The Hours of Fiammetta\nA Sonnet Sequence', 'Taylor, Rachel Annand', '2007-11-07', 11, 'https://www.gutenberg.org/ebooks/23392', 'en', 8), +(12154, 'The Jargon File, Version 4.0.0, 24 Jul 1996', NULL, '1997-02-01', 53, 'https://www.gutenberg.org/ebooks/817', 'en', 6040), +(12155, 'The Zen Experience', 'Hoover, Thomas', '2010-11-14', 124, 'https://www.gutenberg.org/ebooks/34325', 'en', 6041), +(12156, 'The Rainbow Feather', 'Hume, Fergus', '2017-08-09', 7, 'https://www.gutenberg.org/ebooks/55312', 'en', 128), +(12157, 'Original Short Stories — Volume 06', 'Maupassant, Guy de', '2004-10-03', 34, 'https://www.gutenberg.org/ebooks/3082', 'en', 1112), +(12158, 'Les Huguenots\r\nCent ans de persécution 1685-1789', 'Janzé, Charles Alfred, Baron de', '2005-10-10', 16, 'https://www.gutenberg.org/ebooks/16849', 'fr', 6042), +(12159, 'Um club da Má-Lingua', 'Dostoyevsky, Fyodor', '2010-03-15', 35, 'https://www.gutenberg.org/ebooks/31657', 'pt', 6043), +(12160, 'The Works of Edgar Allan Poe — Volume 4', 'Poe, Edgar Allan', '2000-04-01', 481, 'https://www.gutenberg.org/ebooks/2150', 'en', 179), +(12161, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 5 - (D - E- F)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 15, 'https://www.gutenberg.org/ebooks/30785', 'fr', 1352), +(12162, 'La Vie Universitaire dans l\'Ancienne Espagne', 'Reynier, Gustave', '2013-07-21', 7, 'https://www.gutenberg.org/ebooks/43277', 'fr', 6044), +(12163, 'Cuentos de Amor de Locura y de Muerte', 'Quiroga, Horacio', '2004-09-20', 115, 'https://www.gutenberg.org/ebooks/13507', 'es', 6045), +(12164, 'City Crimes; Or, Life in New York and Boston', 'Thompson, George', '2009-01-07', 19, 'https://www.gutenberg.org/ebooks/27732', 'en', 1612), +(12165, 'The American Missionary — Volume 36, No. 1, January, 1882', 'Various', '2018-07-05', 37, 'https://www.gutenberg.org/ebooks/57445', 'en', 562), +(12166, 'Memoir of William Watts McNair, Late of \"Connaught house,\" Mussooree, of the Indian Survey Department, the First European Explorer of Kafiristan', 'Howard, J. E.', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/10382', 'en', 6046), +(12167, 'Erkki Ollikainen\nHistoriallis-romantillinen kertomus Sandels\'in sotaliikkeistä Itä-Suomessa v. 1808', 'Åberg, J. O. (Johan Olof)', '2010-07-06', 20, 'https://www.gutenberg.org/ebooks/33100', 'fi', 61), +(12168, 'The Bible and Life', 'Hughes, Edwin Holt', '2012-12-01', 12, 'https://www.gutenberg.org/ebooks/41520', 'en', 6047), +(12169, 'Journeys Through Bookland, Vol. 5', 'Sylvester, Charles Herbert', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11250', 'en', 1063), +(12170, 'The Legends and Myths of Hawaii: The fables and folk-lore of a strange people', 'Kalakaua, David, King of Hawaii', '2018-02-18', 140, 'https://www.gutenberg.org/ebooks/56597', 'en', 837), +(12171, 'Blackwood\'s Edinburgh Magazine, Volume 54, No. 334, August 1843', 'Various', '2008-04-13', 26, 'https://www.gutenberg.org/ebooks/25065', 'en', 711), +(12172, 'Profitable Stock Exchange Investments', 'Henry Voorce Brandenburg & Co.', '2013-10-27', 29, 'https://www.gutenberg.org/ebooks/44052', 'en', 895), +(12173, 'A Modern Chronicle — Volume 02', 'Churchill, Winston', '2004-10-19', 17, 'https://www.gutenberg.org/ebooks/5375', 'en', 675), +(12174, 'Iloisia juttuja I', 'Jääskeläinen, Kaapro', '2007-02-06', 4, 'https://www.gutenberg.org/ebooks/20517', 'fi', 61), +(12175, 'Contestaciones y Consideraciones\r\nAl Pueblo y Congreso Norte-Americanos', 'Mabini, Apolinario', '2005-01-17', 22, 'https://www.gutenberg.org/ebooks/14722', 'es', 4628), +(12176, 'Wanda, Vol. 3 (of 3)', 'Ouida', '2016-05-23', 18, 'https://www.gutenberg.org/ebooks/52137', 'en', 137), +(12177, 'A Day with Robert Schumann', 'Byron, May', '2011-06-19', 16, 'https://www.gutenberg.org/ebooks/36472', 'en', 6048), +(12178, 'Poetas de color', 'Calcagno, Francisco', '2014-03-20', 10, 'https://www.gutenberg.org/ebooks/45180', 'es', 6049), +(12179, 'The Telegraph Messenger Boy; Or, The Straight Road to Success', 'Ellis, Edward Sylvester', '2008-06-20', 27, 'https://www.gutenberg.org/ebooks/25859', 'en', 195), +(12180, 'Mémoires d\'une contemporaine. Tome 4\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-05-13', 11, 'https://www.gutenberg.org/ebooks/28787', 'fr', 1941), +(12181, 'Sir Francis Drake\'s Famous Voyage Round the World', 'Pretty, Francis', '2006-03-31', 31, 'https://www.gutenberg.org/ebooks/2991', 'en', 819), +(12182, 'The Record of a Quaker Conscience, Cyrus Pringle\'s Diary\nWith an Introduction by Rufus M. Jones', 'Pringle, Cyrus G. (Cyrus Guernsey)', '2005-06-18', 29, 'https://www.gutenberg.org/ebooks/16088', 'en', 4759), +(12183, 'Memoirs of Jean François Paul de Gondi, Cardinal de Retz — Volume 2', 'Retz, Jean François Paul de Gondi de', '2004-12-02', 2, 'https://www.gutenberg.org/ebooks/3843', 'en', 1247), +(12184, 'Harper\'s New Monthly Magazine, Volume 1, No. 3, August, 1850.', 'Various', '2009-08-10', 29, 'https://www.gutenberg.org/ebooks/29655', 'en', 387), +(12185, 'Carmen: Espanjalaisen mustalaistytön elämäntarina', 'Mérimée, Prosper', '2015-04-07', 28, 'https://www.gutenberg.org/ebooks/48662', 'fi', 6050), +(12186, 'Life History of the Kangaroo Rat', 'Taylor, Walter P. (Walter Penn)', '2006-03-11', 25, 'https://www.gutenberg.org/ebooks/17966', 'en', 6051), +(12187, 'Rhymes and Meters\nA Practical Manual for Versifiers', 'Winslow, Horatio', '2009-12-28', 14, 'https://www.gutenberg.org/ebooks/30778', 'en', 6052), +(12188, 'Punchinello, Volume 1, No. 11, June 11, 1870', 'Various', '2005-12-01', 5, 'https://www.gutenberg.org/ebooks/9545', 'en', 372), +(12189, 'London and Its Environs Described, vol. 5 (of 6)\r\nContaining an Account of Whatever Is Most Remarkable for Grandeur, Elegance, Curiosity or Use, in the City and in the Country Twenty Miles Round It.', 'Anonymous', '2019-07-29', 353, 'https://www.gutenberg.org/ebooks/60008', 'en', 2122), +(12190, 'Moll Flanders', 'Defoe, Daniel', '2006-04-03', 70, 'https://www.gutenberg.org/ebooks/18112', 'fr', 89), +(12191, 'The History of the Rise, Progress and Accomplishment of the Abolition of the African Slave Trade by the British Parliament (1808), Volume I', 'Clarkson, Thomas', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12428', 'en', 242), +(12192, 'The Poems and Prose of Ernest Dowson, With a Memoir by Arthur Symons', 'Dowson, Ernest Christopher', '2005-07-01', 59, 'https://www.gutenberg.org/ebooks/8497', 'en', 6053), +(12193, 'Frank at Don Carlos\' Rancho', 'Castlemon, Harry', '2013-03-17', 10, 'https://www.gutenberg.org/ebooks/42358', 'en', 3946), +(12194, 'Reliques of Ancient English Poetry, Volume 3 (of 3)\r\nConsisting of Old Heroic Ballads, Songs and Other Pieces of Our Earlier Poets Together With Some Few of Later Date', NULL, '2014-06-11', 20, 'https://www.gutenberg.org/ebooks/45941', 'en', 4420), +(12195, 'The Tree-Dwellers', 'Dopp, Katharine Elizabeth', '2008-04-18', 23, 'https://www.gutenberg.org/ebooks/25098', 'en', 1019), +(12196, 'Della illustrazione delle lingue antiche e moderne e principalmente dell\'italiana\nprocurata nel secolo XVIII. dagli Italiani - Parte I', 'Lucchesini, Cesare', '2014-02-13', 17, 'https://www.gutenberg.org/ebooks/44893', 'it', 6054), +(12197, 'Julies Dagbog', 'Nansen, Peter', '2012-01-07', 4, 'https://www.gutenberg.org/ebooks/38515', 'da', 6055), +(12198, 'Heart Songs', 'Blewett, Jean', '2016-12-28', 7, 'https://www.gutenberg.org/ebooks/53824', 'en', 1237), +(12199, 'The Odyssey of Homer, Done into English Prose', 'Homer', '1999-04-01', 210, 'https://www.gutenberg.org/ebooks/1728', 'en', 2619), +(12200, 'King Solomon\'s Mines', 'Haggard, H. Rider (Henry Rider)', '2007-05-18', 29, 'https://www.gutenberg.org/ebooks/21438', 'en', 3825), +(12201, 'Biltmore House and Gardens\nBiltmore Estate, Biltmore-Asheville North Carolina', 'Anonymous', '2019-05-16', 25, 'https://www.gutenberg.org/ebooks/59522', 'en', 6056), +(12202, 'The Wives of Henry the Eighth and the Parts They Played in History', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2010-06-14', 46, 'https://www.gutenberg.org/ebooks/32813', 'en', 6057), +(12203, 'The Crisis — Volume 01', 'Churchill, Winston', '2004-10-19', 41, 'https://www.gutenberg.org/ebooks/5388', 'en', 403), +(12204, 'Roger Trewinion', 'Hocking, Joseph', '2008-04-02', 10, 'https://www.gutenberg.org/ebooks/24976', 'en', 166), +(12205, 'Men and Things', 'Atkinson, Henry A.', '2016-09-09', 22, 'https://www.gutenberg.org/ebooks/53018', 'en', 6058), +(12206, 'History of the United Netherlands, 1587d', 'Motley, John Lothrop', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/4854', 'en', 3372), +(12207, 'Anton Tchekhov, and Other Essays', 'Shestov, Lev', '2018-03-16', 30, 'https://www.gutenberg.org/ebooks/56758', 'en', 2034), +(12208, 'A Vindication of Natural Diet.', 'Shelley, Percy Bysshe', '2012-01-31', 52, 'https://www.gutenberg.org/ebooks/38727', 'en', 5839), +(12209, 'Clara Hopgood', 'White, William Hale', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/5986', 'en', 1397), +(12210, 'Mamma\'s Stories about Birds', 'Leathley, Mary Elizabeth Southwell Dudley', '2008-01-22', 9, 'https://www.gutenberg.org/ebooks/24378', 'en', 6059), +(12211, 'Froudacity; West Indian Fables by James Anthony Froude Explained by J. J. Thomas', 'Thomas, J. J. (John Jacob)', '2003-05-01', 23, 'https://www.gutenberg.org/ebooks/4068', 'en', 6060), +(12212, 'Thirty Letters on Various Subjects, Vol. 1 (of 2)', 'Jackson, William', '2019-06-09', 24, 'https://www.gutenberg.org/ebooks/59710', 'en', 6061), +(12213, 'De Zoon van Dik Trom', 'Kieviet, Cornelis Johannes', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/10971', 'nl', 153), +(12214, 'Blackwood\'s Edinburgh Magazine, Volume 66, No. 410, December 1849', 'Various', '2014-11-22', 16, 'https://www.gutenberg.org/ebooks/47418', 'en', 274), +(12215, 'Abraham Lincoln in Our Own County', 'Beardsley, Henry Mahan', '2017-06-02', 16, 'https://www.gutenberg.org/ebooks/54833', 'en', 1716), +(12216, 'Hallowed Heritage: The Life of Virginia', 'Torpey, Dorothy Margaret', '2013-10-04', 12, 'https://www.gutenberg.org/ebooks/43884', 'en', 6062), +(12217, 'Heaven and its Wonders and Hell', 'Swedenborg, Emanuel', '2005-12-22', 62, 'https://www.gutenberg.org/ebooks/17368', 'en', 6063), +(12218, 'The Project Gutenberg Works of Joseph Lincoln: An Index', 'Lincoln, Joseph Crosby', '2009-07-20', 19, 'https://www.gutenberg.org/ebooks/29467', 'en', 198), +(12219, 'The Story of the Zulu Campaign', 'Edgell, Edmund Verney Wyatt', '2013-06-15', 14, 'https://www.gutenberg.org/ebooks/42956', 'en', 6064), +(12220, 'The Carleton Case', 'Clark, Ellery H. (Ellery Harding)', '2011-01-22', 14, 'https://www.gutenberg.org/ebooks/35038', 'en', 61), +(12221, 'Marine Protozoa from Woods Hole\nBulletin of the United States Fish Commission 21:415-468, 1901', 'Calkins, Gary N. (Gary Nathan)', '2006-05-05', 31, 'https://www.gutenberg.org/ebooks/18320', 'en', 6065), +(12222, 'Das Mikroskop und seine Anwendung\nEin Leitfaden bei mikroskopischen Untersuchungen', 'Hager, Hermann', '2015-03-10', 17, 'https://www.gutenberg.org/ebooks/48450', 'de', 2420), +(12223, 'Manifesto anti-Dantas e por extenso\r\npor José de Almada Negreiros poeta d\'Orpheu futurista e tudo', 'Almada Negreiros, José de', '2007-12-22', 46, 'https://www.gutenberg.org/ebooks/23961', 'pt', 6066), +(12224, 'Riley Child-Rhymes', 'Riley, James Whitcomb', '2006-01-01', 26, 'https://www.gutenberg.org/ebooks/9777', 'en', 1209), +(12225, 'A Little Hero', 'Musgrave, H.', '2010-03-04', 14, 'https://www.gutenberg.org/ebooks/31498', 'en', 2526), +(12226, 'Das Gemeinsame', 'Arcos, René', '2015-08-03', 26, 'https://www.gutenberg.org/ebooks/49582', 'de', 6067), +(12227, 'Cappidazzu paga tuttu\nTeatro dialettale siciliano volume settimo', 'Martoglio, Nino', '2011-04-10', 28, 'https://www.gutenberg.org/ebooks/35804', 'it', 6068), +(12228, 'Harding of Allenwood', 'Bindloss, Harold', '2011-12-19', 21, 'https://www.gutenberg.org/ebooks/38343', 'en', 6069), +(12229, 'Charles Auchester, Volume 2 (of 2)', 'Sheppard, Elizabeth Sara', '2012-07-16', 3, 'https://www.gutenberg.org/ebooks/40259', 'en', 398), +(12230, 'I am a Pilgrim', 'McGuinn, Roger', '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/10529', 'en', 6070), +(12231, 'Boy Labour and Apprenticeship', 'Bray, Reginald Arthur', '2012-03-28', 9, 'https://www.gutenberg.org/ebooks/39291', 'en', 6071), +(12232, 'The Little Colonel\'s Chum: Mary Ware', 'Johnston, Annie F. (Annie Fellows)', '2005-05-20', 33, 'https://www.gutenberg.org/ebooks/15867', 'en', 62), +(12233, 'Geographic Variation in Red-backed Mice (Genus Clethrionomys) of the Southern Rocky Mountain Region', 'Cockrum, E. Lendell', '2010-06-04', 5, 'https://www.gutenberg.org/ebooks/32679', 'en', 1214), +(12234, 'Ancient Town-Planning', 'Haverfield, F. (Francis)', '2004-11-28', 27, 'https://www.gutenberg.org/ebooks/14189', 'en', 6072), +(12235, 'Rise and Fall of Cesar Birotteau', 'Balzac, Honoré de', '2005-07-19', 60, 'https://www.gutenberg.org/ebooks/1942', 'en', 6073), +(12236, 'Die Steinbergs: Eine Erzählung aus der Zeit der Befreiungskriege', 'Siebe, Josephine', '2019-04-27', 10, 'https://www.gutenberg.org/ebooks/59374', 'de', 6074), +(12237, 'Die weltgeschichtliche Bedeutung des deutschen Geistes', 'Eucken, Rudolf', '2016-02-03', 13, 'https://www.gutenberg.org/ebooks/51119', 'de', 6075), +(12238, 'Latin America and the United States\nAddresses by Elihu Root', 'Root, Elihu', '2009-05-30', 10, 'https://www.gutenberg.org/ebooks/29003', 'en', 6076), +(12239, '韓詩外傳, Vol. 9-10', 'Han, Ying, active 150 B.C.', '2005-01-01', 1, 'https://www.gutenberg.org/ebooks/7289', 'zh', 4436), +(12240, '珍珠舶', 'Yuanhuyanshuisanren, active 17th century-18th century', '2008-10-11', 14, 'https://www.gutenberg.org/ebooks/26877', 'zh', 1003), +(12241, '\"Where Angels Fear to Tread\" and Other Stories of the Sea', 'Robertson, Morgan', '2007-11-18', 32, 'https://www.gutenberg.org/ebooks/23539', 'en', 6077), +(12242, 'Top of the Ladder: Marine Operations in the Northern Solomons', 'Chapin, John C.', '2015-04-27', 29, 'https://www.gutenberg.org/ebooks/48808', 'en', 6078), +(12243, 'Récits d\'une tante (Vol. 4 de 4)\nMémoires de la Comtesse de Boigne, née d\'Osmond', 'Boigne, Louise-Eléonore-Charlotte-Adélaide d\'Osmond, comtesse de', '2010-01-10', 22, 'https://www.gutenberg.org/ebooks/30912', 'fr', 1941), +(12244, 'Danny\'s Own Story', 'Marquis, Don', '2016-05-01', 9, 'https://www.gutenberg.org/ebooks/51925', 'en', 781), +(12245, 'The Titan', 'Dreiser, Theodore', '2003-01-01', 72, 'https://www.gutenberg.org/ebooks/3629', 'en', 23), +(12246, 'The Joyful Heart', 'Schauffler, Robert Haven', '2006-11-02', 27, 'https://www.gutenberg.org/ebooks/19696', 'en', 6079), +(12247, 'Three Plays by Brieux\r\nWith a Preface by Bernard Shaw', 'Brieux, Eugène', '2014-09-28', 65, 'https://www.gutenberg.org/ebooks/46992', 'en', 1234), +(12248, 'Japanese Prints', 'Fletcher, John Gould', '2008-11-08', 39, 'https://www.gutenberg.org/ebooks/27199', 'en', 8), +(12249, 'Birds and All Nature, Vol. 5, No. 3, March 1899\r\nIllustrated by Color Photography', 'Various', '2015-01-01', 13, 'https://www.gutenberg.org/ebooks/47840', 'en', 490), +(12250, 'The Golden Threshold', 'Naidu, Sarojini', '1996-10-01', 92, 'https://www.gutenberg.org/ebooks/680', 'en', 5938), +(12251, 'Tuonelan joutsen; Sota valosta; Johan Wilhelm', 'Leino, Eino', '2006-07-03', 12, 'https://www.gutenberg.org/ebooks/18744', 'fi', 402), +(12252, 'Old Broadbrim Into the Heart of Australia\nor, A Strange Bargain and Its Consequences', 'Rathborne, St. George', '2015-01-20', 5, 'https://www.gutenberg.org/ebooks/48034', 'en', 6080), +(12253, 'Old Greek Folk Stories Told Anew', 'Peabody, Josephine Preston', '2005-11-01', 59, 'https://www.gutenberg.org/ebooks/9313', 'en', 2139), +(12254, 'The Boy Allies on the Firing Line; Or, Twelve Days Battle Along the Marne', 'Hayes, Clair W. (Clair Wallace)', '2004-07-09', 13, 'https://www.gutenberg.org/ebooks/12870', 'en', 146), +(12255, 'She Would Be a Soldier\nThe Plains of Chippewa', 'Noah, M. M. (Mordecai Manuel)', '2009-06-27', 15, 'https://www.gutenberg.org/ebooks/29231', 'en', 6081), +(12256, 'Memorials and Other Papers — Volume 1', 'De Quincey, Thomas', '2004-07-01', 20, 'https://www.gutenberg.org/ebooks/6169', 'en', 472), +(12257, 'Fortitude', 'Walpole, Hugh', '2005-04-01', 43, 'https://www.gutenberg.org/ebooks/7887', 'en', 1351), +(12258, 'On Singing and Music', 'Society of Friends', '2008-08-12', 9, 'https://www.gutenberg.org/ebooks/26279', 'en', 6082), +(12259, 'Al rombo del cannone', 'De Roberto, Federico', '2015-02-08', 14, 'https://www.gutenberg.org/ebooks/48206', 'it', 335), +(12260, 'The Prince and Betty', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 91, 'https://www.gutenberg.org/ebooks/6955', 'en', 637), +(12261, 'The Cave Boy of the Age of Stone', 'McIntyre, Margaret A.', '2006-06-13', 22, 'https://www.gutenberg.org/ebooks/18576', 'en', 6083), +(12262, 'Les chevaux de Diomède: Roman', 'Gourmont, Remy de', '2017-05-04', 12, 'https://www.gutenberg.org/ebooks/54659', 'fr', 298), +(12263, 'The Anglo-French Entente in the Seventeenth Century', 'Bastide, Charles', '2011-11-02', 9, 'https://www.gutenberg.org/ebooks/37905', 'en', 6084), +(12264, 'Imprudence', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-11-29', 8, 'https://www.gutenberg.org/ebooks/38171', 'en', 2190), +(12265, 'A Rose of a Hundred Leaves: A Love Story', 'Barr, Amelia E.', '2010-09-01', 5, 'https://www.gutenberg.org/ebooks/33599', 'en', 48), +(12266, 'Olivia oder Die unsichtbare Lampe', 'Wassermann, Jakob', '2007-06-18', 11, 'https://www.gutenberg.org/ebooks/21860', 'de', 6085), +(12267, 'Los enemigos de la mujer', 'Blasco Ibáñez, Vicente', '2011-08-20', 22, 'https://www.gutenberg.org/ebooks/37139', 'es', 1696), +(12268, 'Prinzeßchen im Walde', 'Olfers, Sibylle', '2018-10-14', 19, 'https://www.gutenberg.org/ebooks/58094', 'de', 6086), +(12269, 'From Gretna Green to Land\'s End: A Literary Journey in England.', 'Bates, Katharine Lee', '2012-09-25', 16, 'https://www.gutenberg.org/ebooks/40857', 'en', 776), +(12270, 'Poems', 'Jenkins, Elinor', '2013-02-03', 18, 'https://www.gutenberg.org/ebooks/41985', 'en', 2100), +(12271, 'Index of the Project Gutenberg Works of George Cruikshank', 'Cruikshank, George', '2019-03-28', 7, 'https://www.gutenberg.org/ebooks/59146', 'en', 198), +(12272, 'The Empire of Russia: From the Remotest Periods to the Present Time', 'Abbott, John S. C. (John Stevens Cabot)', '2005-03-06', 64, 'https://www.gutenberg.org/ebooks/15269', 'en', 473), +(12273, 'The Old Log Cabin', 'Watkins, Lucian Bottow', '2014-04-28', 11, 'https://www.gutenberg.org/ebooks/45519', 'en', 3770), +(12274, 'Peter Paragon: A Tale of Youth', 'Palmer, John', '2018-04-06', 6, 'https://www.gutenberg.org/ebooks/56932', 'en', 376), +(12275, 'Punch, or the London Charivari, Volume 1, December 18, 1841', 'Various', '2005-02-07', 11, 'https://www.gutenberg.org/ebooks/14941', 'en', 134), +(12276, 'The Lighted Way', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-05-24', 20, 'https://www.gutenberg.org/ebooks/15893', 'en', 128), +(12277, 'English Painters, with a Chapter on American Painters', 'Koehler, S. R. (Sylvester Rosa)', '2012-03-25', 11, 'https://www.gutenberg.org/ebooks/39265', 'en', 6087), +(12278, 'Harper\'s Round Table, June 23, 1896', 'Various', '2018-11-08', 0, 'https://www.gutenberg.org/ebooks/58252', 'en', 668), +(12279, 'The Moving Picture Girls in War Plays\nOr, The Sham Battles at Oak Farm', 'Hope, Laura Lee', '2007-01-12', 18, 'https://www.gutenberg.org/ebooks/20348', 'en', 62), +(12280, 'Building with Logs', 'Fickes, Clyde P.', '2019-04-28', 55, 'https://www.gutenberg.org/ebooks/59380', 'en', 6088), +(12281, 'Memorials of Francis Storr: Sermons', 'May, W., Rev.', '2016-08-10', 2, 'https://www.gutenberg.org/ebooks/52768', 'en', 2386), +(12282, 'Lebenslauf des heiligen Wonnebald Pück: Eine Erzählung', 'Huch, Ricarda', '2010-03-31', 19, 'https://www.gutenberg.org/ebooks/31834', 'de', 549), +(12283, 'The Sword and the Atopen', 'Greenfield, Taylor H.', '2008-10-11', 27, 'https://www.gutenberg.org/ebooks/26883', 'en', 26), +(12284, 'Policeman Bluejay', 'Baum, L. Frank (Lyman Frank)', '2009-01-31', 27, 'https://www.gutenberg.org/ebooks/27951', 'en', 6089), +(12285, 'German Atrocities from German Evidence', 'Bédier, Joseph', '2014-10-10', 12, 'https://www.gutenberg.org/ebooks/47088', 'en', 2936), +(12286, 'Dear Santa Claus', 'Various', '2009-02-20', 31, 'https://www.gutenberg.org/ebooks/28125', 'en', 3618), +(12287, 'The World English Bible (WEB): Ruth', 'Anonymous', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8235', 'en', 4924), +(12288, 'Frigid Fracas', 'Reynolds, Mack', '2010-01-18', 30, 'https://www.gutenberg.org/ebooks/31008', 'en', 2224), +(12289, 'National Apostasy\r\nConsidered in a Sermon Preached in St. Mary\'s Church, Oxford Before His Majesty\'s Judges of Assize on Sunday July 14th 1833', 'Keble, John', '2015-06-02', 12, 'https://www.gutenberg.org/ebooks/49112', 'en', 6090), +(12290, 'Moeurs des anciens Germains', 'Tacitus, Cornelius', '2006-10-31', 18, 'https://www.gutenberg.org/ebooks/19662', 'fr', 6091), +(12291, 'Adam Hepburn\'s Vow: A Tale of Kirk and Covenant', 'Swan, Annie S.', '2014-09-25', 21, 'https://www.gutenberg.org/ebooks/46966', 'en', 2178), +(12292, 'Scientific American Supplement, No. 803, May 23, 1891', 'Various', '2004-09-03', 13, 'https://www.gutenberg.org/ebooks/13358', 'en', 210), +(12293, 'Plutarch: Lives of the noble Grecians and Romans', 'Plutarch', '1996-10-01', 750, 'https://www.gutenberg.org/ebooks/674', 'en', 6092), +(12294, 'Kensington Palace, the birthplace of the Queen\nbeing an historical guide to the state rooms, pictures and gardens', 'Law, Ernest', '2013-08-09', 16, 'https://www.gutenberg.org/ebooks/43428', 'en', 6093), +(12295, 'Frenzied Fiction', 'Leacock, Stephen', '2009-05-01', 7, 'https://www.gutenberg.org/ebooks/28919', 'en', 5688), +(12296, 'The Mentor: Painters of Western Life, Vol 3, Num. 9, Serial No. 85, June 15, 1915', 'Hoeber, Arthur', '2015-12-31', 19, 'https://www.gutenberg.org/ebooks/50803', 'en', 6094), +(12297, 'Reed Anthony, Cowman: An Autobiography', 'Adams, Andy', '2004-07-11', 30, 'https://www.gutenberg.org/ebooks/12884', 'en', 6095), +(12298, 'Pfarre und Schule: Eine Dorfgeschichte. Erster Band.', 'Gerstäcker, Friedrich', '2014-07-22', 9, 'https://www.gutenberg.org/ebooks/46368', 'de', 138), +(12299, 'What Great Men Have Said About Women\nTen Cent Pocket Series No. 77', NULL, '2005-08-02', 22, 'https://www.gutenberg.org/ebooks/16418', 'en', 6096), +(12300, 'La Francia dal primo impero al 1871. Volume 2', 'Treitschke, Heinrich von', '2009-03-12', 11, 'https://www.gutenberg.org/ebooks/28317', 'it', 1169), +(12301, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 17, No. 101, May, 1876', 'Various', '2004-11-04', 12, 'https://www.gutenberg.org/ebooks/13956', 'en', 162), +(12302, 'Problematic Characters: A Novel', 'Spielhagen, Friedrich', '2010-12-24', 69, 'https://www.gutenberg.org/ebooks/34748', 'en', 61), +(12303, 'Dorothy and the Wizard in Oz', 'Baum, L. Frank (Lyman Frank)', '2006-10-04', 51, 'https://www.gutenberg.org/ebooks/19450', 'en', 2203), +(12304, 'The Insidious Dr. Fu Manchu', 'Rohmer, Sax', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/7873', 'en', 128), +(12305, 'The Bible, King James version, Book 7: Judges', 'Anonymous', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/8007', 'en', 4371), +(12306, 'Cadet Days: A Story of West Point', 'King, Charles', '2015-06-29', 23, 'https://www.gutenberg.org/ebooks/49320', 'en', 6097), +(12307, 'A Book of Remarkable Criminals', 'Irving, H. B. (Henry Brodribb)', '1996-02-01', 94, 'https://www.gutenberg.org/ebooks/446', 'en', 6098), +(12308, 'Gypsy Breynton', 'Phelps, Elizabeth Stuart', '2006-06-14', 35, 'https://www.gutenberg.org/ebooks/18582', 'en', 31), +(12309, 'A Dominie\'s Log', 'Neill, Alexander Sutherland', '2018-04-23', 15, 'https://www.gutenberg.org/ebooks/57028', 'en', 6099), +(12310, 'Fruits of Philosophy: A Treatise on the Population Question', 'Knowlton, Charles', '2011-12-01', 49, 'https://www.gutenberg.org/ebooks/38185', 'en', 6100), +(12311, 'Memoirs of the Jacobites of 1715 and 1745. Volume I.', 'Thomson, A. T., Mrs.', '2007-03-31', 36, 'https://www.gutenberg.org/ebooks/20946', 'en', 5814), +(12312, 'The Rover Boys at Colby Hall; or, The Struggles of the Young Cadets', 'Stratemeyer, Edward', '2007-06-21', 12, 'https://www.gutenberg.org/ebooks/21894', 'en', 6101), +(12313, 'Kapteeni Grantia etsimässä', 'Verne, Jules', '2012-03-05', 18, 'https://www.gutenberg.org/ebooks/39057', 'fi', 1391), +(12314, 'Child Life in Town and Country\r\n1909', 'France, Anatole', '2008-05-09', 16, 'https://www.gutenberg.org/ebooks/25408', 'en', 4), +(12315, 'Marjorie Dean, High School Junior', 'Chase, Josephine', '2011-07-23', 19, 'https://www.gutenberg.org/ebooks/36823', 'en', 6102), +(12316, 'A Secret of the Sea: A Novel. Vol. 2 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-08-30', 6, 'https://www.gutenberg.org/ebooks/57814', 'en', 137), +(12317, 'The Great Salt Lake Trail', 'Buffalo Bill', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5718', 'en', 6103), +(12318, 'Journal of Residence in the New Hebrides, S.W. Pacific Ocean', 'Brittain, A.', '2018-10-09', 12, 'https://www.gutenberg.org/ebooks/58060', 'en', 6104), +(12319, 'Statement of Facts, on the Injurious Treatment of J. Elsee, Esq.\r\nLate Tenant of a Considerable Portion of Havering Park Farm, in the Forest of Hainault, in Certain Transactions with the Commissioners of Woods and Forests, and Their Agents; To Which Are Added Notes in Illustration of the Gross Abuses of the Forest Laws.', 'Elsee, John', '2016-11-09', 7, 'https://www.gutenberg.org/ebooks/53488', 'en', 2073), +(12320, 'Yachting, Vol. 1', 'Seth-Smith, C. E.', '2013-02-02', 24, 'https://www.gutenberg.org/ebooks/41971', 'en', 6105), +(12321, 'General Gordon\nA Christian Hero', 'Churchill, Seton', '2009-05-12', 10, 'https://www.gutenberg.org/ebooks/28773', 'en', 5890), +(12322, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 15: With Voltaire', 'Casanova, Giacomo', '2004-12-11', 16, 'https://www.gutenberg.org/ebooks/2965', 'en', 4164), +(12323, 'Weltreise. Erster Teil: Indien, China und Japan', 'Various', '2015-12-11', 7, 'https://www.gutenberg.org/ebooks/50669', 'de', 6106), +(12324, 'Della storia d\'Italia dalle origini fino ai nostri giorni, sommario. v. 1', 'Balbo, Cesare, conte', '2006-11-14', 58, 'https://www.gutenberg.org/ebooks/19808', 'it', 6107), +(12325, 'Shorty McCabe', 'Ford, Sewell', '2007-08-05', 28, 'https://www.gutenberg.org/ebooks/22249', 'en', 637), +(12326, 'Stories of Fortune', NULL, '2015-04-13', 26, 'https://www.gutenberg.org/ebooks/48696', 'en', 179), +(12327, 'A Little Tour in France', 'James, Henry', '2000-04-01', 53, 'https://www.gutenberg.org/ebooks/2159', 'en', 6108), +(12328, 'Le comte de Monte-Cristo, Tome IV', 'Dumas, Alexandre', '2006-03-15', 174, 'https://www.gutenberg.org/ebooks/17992', 'fr', 654), +(12329, 'AbrakadabraL Storia dell\'avvenire', 'Ghislanzoni, Antonio', '2006-08-12', 19, 'https://www.gutenberg.org/ebooks/19034', 'it', 61), +(12330, 'Memoirs of Henry Hunt, Esq. — Volume 3', 'Hunt, Henry', '2005-07-01', 44, 'https://www.gutenberg.org/ebooks/8463', 'en', 6109), +(12331, 'Stories of the Wagner Opera', 'Guerber, H. A. (Hélène Adeline)', '2005-10-09', 30, 'https://www.gutenberg.org/ebooks/16840', 'en', 6110), +(12332, 'A Trip to Pilawin, the Deer-park of Count Joseph Potocki in Volhynia, Russia', 'Lydekker, Richard', '2015-08-20', 14, 'https://www.gutenberg.org/ebooks/49744', 'en', 6111), +(12333, 'Tales from the X-bar Horse Camp: The Blue-Roan \"Outlaw\" and Other Stories', 'Barnes, Will C. (Will Croft)', '2012-12-01', 34, 'https://www.gutenberg.org/ebooks/41529', 'en', 315), +(12334, 'Frank Merriwell\'s Backers; Or, The Pride of His Friends', 'Standish, Burt L.', '2012-04-12', 20, 'https://www.gutenberg.org/ebooks/39433', 'en', 6112), +(12335, 'A Naval Expositor\r\nShewing and Explaining the Words and Terms of Art Belonging to the Parts, Qualities and Proportions of Building, Rigging, Furnishing, & Fitting a Ship for Sea', 'Blanckley, Thomas Riley', '2016-08-27', 6, 'https://www.gutenberg.org/ebooks/52902', 'en', 6113), +(12336, 'Polly and the Princess', 'Dowd, Emma C.', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/11259', 'en', 6114), +(12337, 'The Discovery of the Future', 'Wells, H. G. (Herbert George)', '2014-02-10', 66, 'https://www.gutenberg.org/ebooks/44867', 'en', 6115), +(12338, 'Arabian Wisdom: Selections and Translations from the Arabic', 'Wortabet, John', '2010-07-07', 27, 'https://www.gutenberg.org/ebooks/33109', 'en', 3769), +(12339, 'Märchen und Erzählungen für Anfänger. Zweiter Teil', 'Guerber, H. A. (Hélène Adeline)', '2014-03-23', 35, 'https://www.gutenberg.org/ebooks/45189', 'de', 6116), +(12340, 'La Russie en 1839, Volume II', 'Custine, Astolphe, marquis de', '2008-06-20', 18, 'https://www.gutenberg.org/ebooks/25850', 'fr', 2408), +(12341, 'The Continental Monthly, Vol. 3, No. 1 January 1863\nDevoted To Literature And National Policy', 'Various', '2008-04-03', 25, 'https://www.gutenberg.org/ebooks/24982', 'en', 162), +(12342, 'Grounds of Natural Philosophy: Divided into Thirteen Parts\r\nThe Second Edition, much altered from the First, which went under the Name of Philosophical and Physical Opinions', 'Newcastle, Margaret Cavendish, Duchess of', '2018-12-03', 18, 'https://www.gutenberg.org/ebooks/58404', 'en', 6117), +(12343, 'Food Habits of the Thrushes of the United States', 'Beal, F. E. L. (Foster Ellenborough Lascelles)', '2010-10-11', 8, 'https://www.gutenberg.org/ebooks/33935', 'en', 318), +(12344, 'Λυρικά αφιερώματα (Γιταντζάλι)', 'Tagore, Rabindranath', '2012-05-03', 10, 'https://www.gutenberg.org/ebooks/39601', 'el', 6118), +(12345, 'A Fascinating Traitor: An Anglo-Indian Story', 'Savage, Richard', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5972', 'en', 1228), +(12346, 'The Lay of Marie and Vignettes in Verse', 'Betham, Matilda', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11857', 'en', 6119), +(12347, 'Selected List of Nimmo, Hay, & Mitchell\'s Publications [1890]', NULL, '2011-07-07', 4, 'https://www.gutenberg.org/ebooks/36649', 'en', 6120), +(12348, 'Five Little Plays', 'Sutro, Alfred', '2004-12-29', 47, 'https://www.gutenberg.org/ebooks/14519', 'en', 317), +(12349, 'Board-Work; or the Art of Wig-making, Etc.\r\nDesigned For the Use of Hairdressers and Especially of Young Men in the Trade. To Which Is Added Remarks Upon Razors, Razor-sharpening, Razor Strops, & Miscellaneous Recipes, Specially Selected.', 'Creer, Edwin', '2019-01-06', 7, 'https://www.gutenberg.org/ebooks/58636', 'en', 6121), +(12350, 'The Infant System\nFor Developing the Intellectual and Moral Powers of all Children, from One to Seven years of Age', 'Wilderspin, Samuel', '2004-02-01', 83, 'https://www.gutenberg.org/ebooks/10985', 'en', 973), +(12351, 'Famous Houses and Literary Shrines of London', 'Adcock, Arthur St. John', '2013-11-24', 20, 'https://www.gutenberg.org/ebooks/44269', 'en', 6122), +(12352, 'The American Missionary — Volume 54, No. 03, July, 1900', 'Various', '2009-04-08', 7, 'https://www.gutenberg.org/ebooks/28541', 'en', 562), +(12353, 'The American Missionary — Volume 39, No. 11, November, 1885', 'Various', '2013-10-02', 4, 'https://www.gutenberg.org/ebooks/43870', 'en', 562), +(12354, 'The Rag and Bone Men', 'Budrys, Algis', '2016-03-28', 48, 'https://www.gutenberg.org/ebooks/51589', 'en', 26), +(12355, 'Government Ownership of Railroads, and War Taxation', 'Kahn, Otto H.', '2009-07-22', 23, 'https://www.gutenberg.org/ebooks/29493', 'en', 6123), +(12356, 'Torquemada y San Pedro', 'Pérez Galdós, Benito', '2017-11-08', 22, 'https://www.gutenberg.org/ebooks/55915', 'es', 1353), +(12357, 'Pelham — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7619', 'en', 2496), +(12358, 'The 2006 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-12', 14, 'https://www.gutenberg.org/ebooks/27509', 'en', 1726), +(12359, 'A History of Pendennis, Volume 1\nHis fortunes and misfortunes, his friends and his greatest enemy', 'Thackeray, William Makepeace', '2011-01-11', 16, 'https://www.gutenberg.org/ebooks/34922', 'en', 1351), +(12360, 'An International Episode', 'James, Henry', '2008-07-09', 87, 'https://www.gutenberg.org/ebooks/210', 'en', 6124), +(12361, 'The Land of the Kangaroo\nAdventures of Two Youths in a Journey through the Great Island Continent', 'Knox, Thomas Wallace', '2007-12-26', 26, 'https://www.gutenberg.org/ebooks/23995', 'en', 246), +(12362, 'Female Scripture Biography, Volume II\r\nIncluding an Essay on What Christianity Has Done for Women', 'Cox, F. A. (Francis Augustus)', '2006-01-01', 19, 'https://www.gutenberg.org/ebooks/9783', 'en', 6125), +(12363, 'With Moore at Corunna', 'Henty, G. A. (George Alfred)', '2005-08-01', 47, 'https://www.gutenberg.org/ebooks/8651', 'en', 6126), +(12364, 'Sämmtliche Werke 4: Mirgorod', 'Gogol, Nikolai Vasilevich', '2015-08-02', 9, 'https://www.gutenberg.org/ebooks/49576', 'de', 6127), +(12365, 'Official Views Of The World\'s Columbian Exposition', 'Arnold, C. D. (Charles Dudley)', '2007-10-02', 20, 'https://www.gutenberg.org/ebooks/22847', 'en', 6128), +(12366, 'Working my Way Around the World', 'Franck, Harry Alverson', '2017-07-16', 17, 'https://www.gutenberg.org/ebooks/55129', 'en', 819), +(12367, 'Under Drake\'s Flag: A Tale of the Spanish Main', 'Henty, G. A. (George Alfred)', '2006-09-08', 48, 'https://www.gutenberg.org/ebooks/19206', 'en', 6129), +(12368, 'Helenan perhe\nKertomus Romasta ensimäiseltä vuosisadalta', 'Charles, Elizabeth Rundle', '2008-02-04', 8, 'https://www.gutenberg.org/ebooks/24511', 'fi', 6130), +(12369, 'The Store Boy', 'Alger, Horatio, Jr.', '2004-01-01', 79, 'https://www.gutenberg.org/ebooks/10724', 'en', 195), +(12370, 'Margaret Capel: A Novel, vol. 3 of 3', 'Wallace, Ellen', '2012-06-22', 13, 'https://www.gutenberg.org/ebooks/40054', 'en', 137), +(12371, 'The master of St. Benedict\'s, Vol. 1 (of 2)', 'St. Aubyn, Alan', '2019-02-17', 5, 'https://www.gutenberg.org/ebooks/58897', 'en', 6131), +(12372, 'Study of a Woman', 'Balzac, Honoré de', '2005-10-07', 41, 'https://www.gutenberg.org/ebooks/1373', 'en', 58), +(12373, 'The Memoirs of the Conquistador Bernal Diaz del Castillo, Vol 1 (of 2)\r\nWritten by Himself Containing a True and Full Account of the Discovery and Conquest of Mexico and New Spain.', 'Díaz del Castillo, Bernal', '2010-05-21', 354, 'https://www.gutenberg.org/ebooks/32474', 'en', 1382), +(12374, 'Helvi: Kertomus nuorisolle', 'Haahti, Hilja', '2019-07-18', 20, 'https://www.gutenberg.org/ebooks/59945', 'fi', 388), +(12375, 'Sant of the Secret Service: Some Revelations of Spies and Spying', 'Le Queux, William', '2012-10-25', 11, 'https://www.gutenberg.org/ebooks/41186', 'en', 1319), +(12376, 'Punakaartin päällikön tytär: Salapoliisiromaani', 'Soini, Lauri', '2017-12-05', 3, 'https://www.gutenberg.org/ebooks/56131', 'fi', 175), +(12377, 'Little Women; Or, Meg, Jo, Beth, and Amy', 'Alcott, Louisa May', '2011-08-16', 759, 'https://www.gutenberg.org/ebooks/37106', 'en', 6132), +(12378, 'The World as Will and Idea (Vol. 3 of 3)', 'Schopenhauer, Arthur', '2012-09-26', 281, 'https://www.gutenberg.org/ebooks/40868', 'en', 354), +(12379, 'White Shadows in the South Seas', 'O\'Brien, Frederick', '2004-12-20', 42, 'https://www.gutenberg.org/ebooks/14384', 'en', 6133), +(12380, 'Stop! A Handy Monitor, Pocket Conscience and Portable Guardian against the World, the Flesh and the Devil', 'Urner, Nathan Dane', '2016-11-03', 17, 'https://www.gutenberg.org/ebooks/53443', 'en', 3846), +(12381, 'Eskimomärchen', NULL, '2012-02-24', 16, 'https://www.gutenberg.org/ebooks/38972', 'de', 6134); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(12382, 'The Parowan Bonanza', 'Bower, B. M.', '2019-04-01', 31, 'https://www.gutenberg.org/ebooks/59179', 'en', 6135), +(12383, 'The Gunroom', 'Morgan, Charles', '2016-07-17', 19, 'https://www.gutenberg.org/ebooks/52591', 'en', 3039), +(12384, 'The Young Seigneur\nOr, Nation-Making', 'Lighthall, W. D. (William Douw)', '2005-03-04', 7, 'https://www.gutenberg.org/ebooks/15256', 'en', 1972), +(12385, 'The Missing Merchantman', 'Collingwood, Harry', '2007-04-13', 15, 'https://www.gutenberg.org/ebooks/21063', 'en', 324), +(12386, 'Papa Hamlet', 'Holmsen, Bjarne P. (Bjarne Peter)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/4601', 'de', 5996), +(12387, 'Chronicles of England, Scotland and Ireland (2 of 6): England (07 of 12)\r\nIohn the Yongest Sonne of Henrie the Second', 'Holinshed, Raphael', '2014-04-28', 24, 'https://www.gutenberg.org/ebooks/45526', 'en', 3483), +(12388, 'A Girl Among the Anarchists', 'Meredith, Isabel', '2004-12-01', 91, 'https://www.gutenberg.org/ebooks/7084', 'en', 95), +(12389, 'Inselwelt. Erster Band. Indische Skizzen', 'Gerstäcker, Friedrich', '2011-03-22', 10, 'https://www.gutenberg.org/ebooks/35651', 'de', 3205), +(12390, 'In Bad Company, and other stories', 'Boldrewood, Rolf', '2016-02-27', 12, 'https://www.gutenberg.org/ebooks/51314', 'en', 6136), +(12391, 'Socrate et sa femme', 'Banville, Théodore Faullain de', '2006-01-12', 23, 'https://www.gutenberg.org/ebooks/17501', 'fr', 6137), +(12392, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 267, August 4, 1827', 'Various', '2006-02-01', 16, 'https://www.gutenberg.org/ebooks/9922', 'en', 133), +(12393, 'The Idler Magazine, Vol III. May 1893\r\nAn Illustrated Monthly', 'Various', '2007-12-04', 19, 'https://www.gutenberg.org/ebooks/23734', 'en', 2370), +(12394, 'Athens: Its Rise and Fall, Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-21', 17, 'https://www.gutenberg.org/ebooks/6156', 'en', 6138), +(12395, 'Le Mouvement littéraire Belge d\'expression française depuis 1880', 'Heumann, Albert', '2010-12-29', 9, 'https://www.gutenberg.org/ebooks/34783', 'fr', 6139), +(12396, 'The Second Dandy Chater', 'Gallon, Tom', '2014-11-02', 14, 'https://www.gutenberg.org/ebooks/47271', 'en', 2004), +(12397, 'The Invisible Man: A Grotesque Romance', 'Wells, H. G. (Herbert George)', '2008-08-01', 23, 'https://www.gutenberg.org/ebooks/26246', 'en', 3487), +(12398, 'Letters of Horace Walpole — Volume I', 'Walpole, Horace', '2004-04-01', 41, 'https://www.gutenberg.org/ebooks/12073', 'en', 1785), +(12399, 'Overlooked', 'Baring, Maurice', '2013-05-12', 19, 'https://www.gutenberg.org/ebooks/42703', 'en', 109), +(12400, 'For the Term of His Natural Life', 'Clarke, Marcus Andrew Hislop', '2002-09-01', 41, 'https://www.gutenberg.org/ebooks/3424', 'en', 6140), +(12401, 'The Book of Religions\r\nComprising the Views, Creeds, Sentiments, or Opinions, of All the Principal Religious Sects in the World, Particularly of All Christian Denominations in Europe and America, to Which are Added Church and Missionary Statistics, Together With Biographical Sketches', 'Hayward, John', '2009-10-24', 66, 'https://www.gutenberg.org/ebooks/30323', 'en', 6141), +(12402, 'Het tweevoudig verbond contra de drievoudige Entente\r\n(het wereldconflict als een rechtsgeding behandeld)', 'Beck, James M. (James Montgomery)', '2015-02-11', 13, 'https://www.gutenberg.org/ebooks/48239', 'nl', 335), +(12403, 'The Von Toodleburgs\nOr, The History of a Very Distinguished Family', 'Adams, F. Colburn (Francis Colburn)', '2006-06-10', 32, 'https://www.gutenberg.org/ebooks/18549', 'en', 914), +(12404, 'International May Day and American Labor Day\r\nA Holiday Expressing Working Class Emancipation Versus a Holiday Exalting Labor\'s Chains', 'Reinstein, Boris', '2017-05-06', 13, 'https://www.gutenberg.org/ebooks/54666', 'en', 6142), +(12405, 'A New Guide for Emigrants to the West', 'Peck, John Mason', '2008-12-03', 30, 'https://www.gutenberg.org/ebooks/27394', 'en', 6143), +(12406, 'The Princess and the Physicist', 'Smith, Evelyn E.', '2016-02-04', 42, 'https://www.gutenberg.org/ebooks/51126', 'en', 5065), +(12407, 'Fighting Without a War: An Account of Military Intervention in North Russia', 'Albertson, Ralph', '2014-07-04', 34, 'https://www.gutenberg.org/ebooks/46191', 'en', 6144), +(12408, 'Newton: Poema', 'Macedo, José Agostinho de', '2008-10-08', 9, 'https://www.gutenberg.org/ebooks/26848', 'pt', 6145), +(12409, 'The High Heart', 'King, Basil', '2011-03-03', 117, 'https://www.gutenberg.org/ebooks/35463', 'en', 48), +(12410, 'Warlock o\' Glenwarlock: A Homely Romance', 'MacDonald, George', '2004-08-01', 30, 'https://www.gutenberg.org/ebooks/6364', 'en', 942), +(12411, 'The Alien Invasion', 'Wilkins, W. H. (William Henry)', '2014-10-04', 27, 'https://www.gutenberg.org/ebooks/47043', 'en', 6146), +(12412, 'The Black Douglas', 'Crockett, S. R. (Samuel Rutherford)', '2006-02-09', 54, 'https://www.gutenberg.org/ebooks/17733', 'en', 5373), +(12413, 'Chance: A Tale in Two Parts', 'Conrad, Joseph', '2007-11-16', 30, 'https://www.gutenberg.org/ebooks/23506', 'en', 1061), +(12414, 'Life of Napoleon Bonaparte, Volume I.', 'Scott, Walter', '2015-05-02', 68, 'https://www.gutenberg.org/ebooks/48837', 'en', 840), +(12415, 'The Honey-Pot', 'Barcynska, Countess (Hélène)', '2013-04-14', 18, 'https://www.gutenberg.org/ebooks/42531', 'en', 1079), +(12416, 'La Fonction Gamma: Théorie, Histoire, Bibliographie', 'Godefroy, Maurice', '2009-08-26', 13, 'https://www.gutenberg.org/ebooks/29800', 'fr', 6147), +(12417, 'The O\'Conors of Castle Conor, County Mayo\r\nFrom \"Tales from All Countries\"', 'Trollope, Anthony', '2003-01-01', 19, 'https://www.gutenberg.org/ebooks/3616', 'en', 6148), +(12418, 'Great Testimony against scientific cruelty', 'Coleridge, Stephen', '2008-07-16', 8, 'https://www.gutenberg.org/ebooks/26074', 'en', 5852), +(12419, 'Poems by Emily Dickinson, Third Series', 'Dickinson, Emily', '2004-05-01', 44, 'https://www.gutenberg.org/ebooks/12241', 'en', 178), +(12420, 'The Education of Children from the Standpoint of Theosophy', 'Steiner, Rudolf', '2017-09-20', 43, 'https://www.gutenberg.org/ebooks/55586', 'en', 973), +(12421, 'Dirty Dustbins and Sloppy Streets\nA Practical Treatise on the Scavenging and Cleansing of Cities and Towns', 'Boulnois, H. Percy (Henry Percy)', '2017-03-28', 10, 'https://www.gutenberg.org/ebooks/54454', 'en', 6149), +(12422, 'Notes and Queries, Number 41, August 10, 1850', 'Various', '2004-09-07', 6, 'https://www.gutenberg.org/ebooks/13393', 'en', 105), +(12423, 'A Noble Woman', 'Stephens, Ann S. (Ann Sophia)', '2009-09-27', 25, 'https://www.gutenberg.org/ebooks/30111', 'en', 61), +(12424, 'The Punster\'s Pocket-book\r\nor, the Art of Punning Enlarged by Bernard Blackmantle, illustrated with numerous original designs by Robert Cruikshank', 'Westmacott, C. M. (Charles Molloy)', '2012-07-17', 14, 'https://www.gutenberg.org/ebooks/40266', 'en', 564), +(12425, 'Pictures of German Life in the XVth, XVIth, and XVIIth Centuries, Vol. I.', 'Freytag, Gustav', '2010-09-22', 100, 'https://www.gutenberg.org/ebooks/33794', 'en', 6075), +(12426, 'Selected Poems of Oscar Wilde', 'Wilde, Oscar', '1997-12-01', 143, 'https://www.gutenberg.org/ebooks/1141', 'en', 8), +(12427, 'Final Weapon', 'Cole, Everett B.', '2008-03-01', 38, 'https://www.gutenberg.org/ebooks/24723', 'en', 2169), +(12428, 'Bits about Home Matters', 'Jackson, Helen Hunt', '2003-12-01', 52, 'https://www.gutenberg.org/ebooks/10516', 'en', 6150), +(12429, 'Agate Fossil Beds National Monument, Nebraska', 'United States. National Park Service', '2018-01-04', 16, 'https://www.gutenberg.org/ebooks/56303', 'en', 6151), +(12430, 'The Social Emergency: Studies in Sex Hygiene and Morals', NULL, '2005-05-18', 23, 'https://www.gutenberg.org/ebooks/15858', 'en', 2378), +(12431, 'Contos Phantasticos\nsegunda edição correcta e ampliada', 'Braga, Teófilo', '2010-06-01', 29, 'https://www.gutenberg.org/ebooks/32646', 'pt', 61), +(12432, 'Marriage à la mode', 'Ward, Humphry, Mrs.', '2007-01-16', 30, 'https://www.gutenberg.org/ebooks/20383', 'en', 109), +(12433, 'Evenor et Leucippe: Les amours de l\'Âge d\'Or; Légende antidéluvienne', 'Sand, George', '2018-11-17', 13, 'https://www.gutenberg.org/ebooks/58299', 'fr', 298), +(12434, 'Modern Poets and Poetry of Spain', 'Espronceda, José de', '2016-12-05', 10, 'https://www.gutenberg.org/ebooks/53671', 'en', 6152), +(12435, 'Näkymättömiä teitä: Runoelma elämästä', 'Roos, Mathilda', '2011-09-07', 12, 'https://www.gutenberg.org/ebooks/37334', 'fi', 2168), +(12436, 'Evan Harrington — Volume 7', 'Meredith, George', '2003-09-01', 8, 'https://www.gutenberg.org/ebooks/4433', 'en', 6153), +(12437, 'Practical Cinematography and Its Applications', 'Talbot, Frederick Arthur Ambrose', '2014-05-21', 16, 'https://www.gutenberg.org/ebooks/45714', 'en', 6154), +(12438, 'Punch, or the London Charivari, Volume 152, April 25, 1917', 'Various', '2005-02-15', 13, 'https://www.gutenberg.org/ebooks/15064', 'en', 134), +(12439, 'The Jefferson-Lemen Compact\r\nThe Relations of Thomas Jefferson and James Lemen in the Exclusion of Slavery from Illinois and Northern Territory with Related Documents 1781-1818', 'MacNaul, Willard C. (Willard Carey)', '2007-04-29', 11, 'https://www.gutenberg.org/ebooks/21251', 'en', 6155), +(12440, 'Sidonia, the Sorceress : the Supposed Destroyer of the Whole Reigning Ducal House of Pomerania — Volume 1', 'Meinhold, Wilhelm', '2004-10-01', 31, 'https://www.gutenberg.org/ebooks/6700', 'en', 4556), +(12441, 'The Dance of Death', 'Herman, William (Author of The dance of death)', '2014-11-22', 41, 'https://www.gutenberg.org/ebooks/47427', 'en', 781), +(12442, 'The Quickening', 'Lynde, Francis', '2005-12-19', 21, 'https://www.gutenberg.org/ebooks/17357', 'en', 6156), +(12443, 'Legendary Heroes of Ireland', 'Hughes, Harold F.', '2015-11-19', 82, 'https://www.gutenberg.org/ebooks/50490', 'en', 6157), +(12444, 'No Great Magic', 'Leiber, Fritz', '2007-10-24', 62, 'https://www.gutenberg.org/ebooks/23162', 'en', 26), +(12445, 'Cost of Living', 'Sheckley, Robert', '2009-07-19', 83, 'https://www.gutenberg.org/ebooks/29458', 'en', 179), +(12446, 'St. Nicholas\r\nHis Legend and His Rôle in the Christmas Celebration and Other Popular Customs', 'McKnight, George Harley', '2013-06-17', 48, 'https://www.gutenberg.org/ebooks/42969', 'en', 6158), +(12447, 'The Just-Wed Cook Book\nA Present from The Merchants of Reno, Nevada', NULL, '2016-03-24', 38, 'https://www.gutenberg.org/ebooks/51542', 'en', 103), +(12448, 'The Way of Salvation in the Lutheran Church', 'Gerberding, G. H. (George Henry)', '2005-07-13', 33, 'https://www.gutenberg.org/ebooks/16285', 'en', 6159), +(12449, 'Vineta, the Phantom City', 'Werner, E.', '2011-01-19', 10, 'https://www.gutenberg.org/ebooks/35007', 'en', 803), +(12450, 'Ben o\' Bill\'s, the Luddite: A Yorkshire Tale', 'Sykes, D. F. E.', '2017-01-20', 18, 'https://www.gutenberg.org/ebooks/54030', 'en', 1445), +(12451, 'Punch, or the London Charivari, Vol. CL, April 26, 1916', 'Various', '2009-12-01', 8, 'https://www.gutenberg.org/ebooks/30575', 'en', 134), +(12452, 'The Old Gray Homestead', 'Keyes, Frances Parkinson', '2006-01-01', 12, 'https://www.gutenberg.org/ebooks/9748', 'en', 539), +(12453, 'Total Per Cent Lambing Rules', 'Boylan, Thomas', '2013-07-03', 20, 'https://www.gutenberg.org/ebooks/43087', 'en', 6160), +(12454, 'Tom Slade on the River', 'Fitzhugh, Percy Keese', '2013-02-22', 20, 'https://www.gutenberg.org/ebooks/42155', 'en', 2994), +(12455, 'The Complete Works of Artemus Ward — Part 2: War', 'Ward, Artemus', '2002-06-01', 7, 'https://www.gutenberg.org/ebooks/3272', 'en', 190), +(12456, 'Peak\'s Island\nA Romance of Buccaneer Days', 'Piper, Anna W. Ford', '2008-08-23', 17, 'https://www.gutenberg.org/ebooks/26410', 'en', 6161), +(12457, 'Architecture and Democracy', 'Bragdon, Claude Fayette', '2004-06-01', 99, 'https://www.gutenberg.org/ebooks/12625', 'en', 6162), +(12458, 'Those Other Animals', 'Henty, G. A. (George Alfred)', '2018-03-17', 22, 'https://www.gutenberg.org/ebooks/56767', 'en', 6163), +(12459, 'Pharaoh\'s Broker\nBeing the Very Remarkable Experiences in Another World of Isidor Werner', 'Douglass, Ellsworth', '2008-05-02', 28, 'https://www.gutenberg.org/ebooks/25295', 'en', 26), +(12460, 'Felicitas: A Tale of the German Migrations: A.D. 476', 'Dahn, Felix', '2010-05-02', 16, 'https://www.gutenberg.org/ebooks/32222', 'en', 6164), +(12461, 'The Freebooters: A Story of the Texan War', 'Aimard, Gustave', '2012-08-28', 30, 'https://www.gutenberg.org/ebooks/40602', 'en', 315), +(12462, 'Lawrence Clavering', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-30', 21, 'https://www.gutenberg.org/ebooks/38718', 'en', 98), +(12463, 'The Phoenix and the Turtle', 'Shakespeare, William', '1998-11-01', 23, 'https://www.gutenberg.org/ebooks/1525', 'en', 8), +(12464, 'Emmy Lou: Her Book and Heart', 'Martin, George Madden', '2008-01-17', 18, 'https://www.gutenberg.org/ebooks/24347', 'en', 2154), +(12465, 'Minuet in G Flat major and Valse Bluette', NULL, '2003-11-01', 46, 'https://www.gutenberg.org/ebooks/10172', 'en', 4334), +(12466, 'Marius the Epicurean — Volume 1', 'Pater, Walter', '2003-05-01', 120, 'https://www.gutenberg.org/ebooks/4057', 'en', 1080), +(12467, 'Fore!', 'Van Loan, Charles E. (Charles Emmett)', '2011-07-09', 20, 'https://www.gutenberg.org/ebooks/36682', 'en', 6165), +(12468, 'The Adventurous Life of a Versatile Artist: Houdini', 'Unknown', '2014-04-13', 29, 'https://www.gutenberg.org/ebooks/45370', 'en', 6166), +(12469, 'Renaissance in Italy, Volume 1 (of 7)\r\nThe Age of the Despots', 'Symonds, John Addington', '2005-03-18', 40, 'https://www.gutenberg.org/ebooks/15400', 'en', 3484), +(12470, 'Prudence Says So', 'Hueston, Ethel', '2007-05-28', 19, 'https://www.gutenberg.org/ebooks/21635', 'en', 6167), +(12471, 'Kiusanhenki: Satu', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2016-10-05', 6, 'https://www.gutenberg.org/ebooks/53215', 'fi', 6168), +(12472, 'Kalevala : the Epic Poem of Finland — Volume 02', NULL, '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/5185', 'en', 4087), +(12473, 'Guy Fawkes; or, The Gunpowder Treason: An Historical Romance', 'Ainsworth, William Harrison', '2011-10-13', 42, 'https://www.gutenberg.org/ebooks/37750', 'en', 6169), +(12474, 'A Feast of Demons', 'Samachson, Joseph', '2010-04-16', 29, 'https://www.gutenberg.org/ebooks/32010', 'en', 179), +(12475, 'Секунд вечности, источњачки роман', 'Ilić, Dragutin J.', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11292', 'sr', 61), +(12476, 'The Magical Mimics in Oz', 'Snow, Jack', '2018-02-12', 44, 'https://www.gutenberg.org/ebooks/56555', 'en', 580), +(12477, 'Und die ihr alle meine Brüder seid', 'Frohnmeyer, Ida', '2008-01-05', 5, 'https://www.gutenberg.org/ebooks/24175', 'de', 179), +(12478, 'The Juggler\'s Oracle; or, The Whole Art of Legerdemain Laid Open\r\nConsisting of all the newest and most surprising tricks and experiments with cards, cups and balls, conveyance of money and rings, boxes, fire, strings and knots; with many curious experiments by optical illusion, chymical changes, and magical cards, &c.', 'Boaz, H. (Herman)', '2018-07-12', 33, 'https://www.gutenberg.org/ebooks/57487', 'en', 3590), +(12479, 'Dab Kinzer: A Story of a Growing Boy', 'Stoddard, William O.', '2003-11-01', 38, 'https://www.gutenberg.org/ebooks/10340', 'en', 31), +(12480, 'In the Saddle', 'Optic, Oliver', '2012-08-06', 24, 'https://www.gutenberg.org/ebooks/40430', 'en', 491), +(12481, 'What\'s Wrong with the World', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 384, 'https://www.gutenberg.org/ebooks/1717', 'en', 3120), +(12482, 'Hamlet', 'Shakespeare, William', '2005-04-16', 53, 'https://www.gutenberg.org/ebooks/15632', 'fi', 1298), +(12483, 'Figures of Several Centuries', 'Symons, Arthur', '2007-05-09', 25, 'https://www.gutenberg.org/ebooks/21407', 'en', 6170), +(12484, 'Heroes Every Child Should Know', 'Mabie, Hamilton Wright', '2003-07-01', 109, 'https://www.gutenberg.org/ebooks/4265', 'en', 6171), +(12485, 'Weatherby\'s Inning: A Story of College Life and Baseball', 'Barbour, Ralph Henry', '2014-03-15', 22, 'https://www.gutenberg.org/ebooks/45142', 'en', 1889), +(12486, 'Control Group', 'Aycock, Roger D.', '2008-03-29', 55, 'https://www.gutenberg.org/ebooks/24949', 'en', 179), +(12487, 'Catalogue of Special Technical Works for Manufacturers, Students, and Technical Schools. May 1904', 'Scott, Greenwood & Co.', '2013-11-01', 11, 'https://www.gutenberg.org/ebooks/44090', 'en', 6172), +(12488, 'Wrestling and Wrestlers\r\nBiographical Sketches of Celebrated Athletes of the Northern Ring; to Which is Added Notes on Bull and Badger Baiting', 'Robinson, Jacob', '2011-09-29', 30, 'https://www.gutenberg.org/ebooks/37562', 'en', 6173), +(12489, 'A Treatise on Tobacco, Tea, Coffee, and Chocolate', 'Paulli, Simon', '2016-09-10', 19, 'https://www.gutenberg.org/ebooks/53027', 'en', 6174), +(12490, 'A Little Florida Lady', 'Paine, Dorothy C. (Dorothy Charlotte)', '2005-11-27', 16, 'https://www.gutenberg.org/ebooks/17165', 'en', 62), +(12491, 'Cecily Parsley\'s Nursery Rhymes', 'Potter, Beatrix', '2007-11-06', 74, 'https://www.gutenberg.org/ebooks/23350', 'en', 859), +(12492, 'Tarzan of the Apes', 'Burroughs, Edgar Rice', '2004-09-01', 44, 'https://www.gutenberg.org/ebooks/6532', 'en', 635), +(12493, 'Biology\nA lecture delivered at Columbia University in the series\non Science, Philosophy and Art November 20, 1907', 'Wilson, Edmund B. (Edmund Beecher)', '2006-07-26', 46, 'https://www.gutenberg.org/ebooks/18911', 'en', 6175), +(12494, 'The Saddle Boys at Circle Ranch; Or, In at the Grand Round-Up', 'Carson, James, Captain', '2014-12-10', 10, 'https://www.gutenberg.org/ebooks/47615', 'en', 4365), +(12495, 'L\'Illustration, No. 3247, 20 Mai 1905', 'Various', '2011-02-10', 8, 'https://www.gutenberg.org/ebooks/35235', 'fr', 150), +(12496, 'Uncle Remus and Brer Rabbit', 'Harris, Joel Chandler', '2007-08-09', 262, 'https://www.gutenberg.org/ebooks/22282', 'en', 1196), +(12497, 'Connected Poems', 'Seabridge, Charles', '2016-04-15', 10, 'https://www.gutenberg.org/ebooks/51770', 'en', 8), +(12498, 'The Hand of Fu-Manchu\r\nBeing a New Phase in the Activities of Fu-Manchu, the Devil Doctor', 'Rohmer, Sax', '2006-03-10', 97, 'https://www.gutenberg.org/ebooks/17959', 'en', 6176), +(12499, 'Seaport in Virginia\nGeorge Washington\'s Alexandria', 'Moore, Gay Montague', '2009-12-23', 6, 'https://www.gutenberg.org/ebooks/30747', 'en', 6177), +(12500, 'The Dark Flower', 'Galsworthy, John', '2006-06-14', 50, 'https://www.gutenberg.org/ebooks/2192', 'en', 95), +(12501, 'Faust', 'Goethe, Johann Wolfgang von', '2017-02-19', 95, 'https://www.gutenberg.org/ebooks/54202', 'fr', 6178), +(12502, 'Clipped Wings', 'Hughes, Rupert', '2019-08-01', 640, 'https://www.gutenberg.org/ebooks/60037', 'en', 828), +(12503, 'How to Read the Crystal; or, Crystal and Seer', 'Sepharial', '2008-09-14', 23, 'https://www.gutenberg.org/ebooks/26622', 'en', 6179), +(12504, 'Fishin\' Jimmy', 'Slosson, Annie Trumbull', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12417', 'en', 4927), +(12505, 'The Stones of Paris in History and Letters, Volume 2 (of 2)', 'Martin, Benjamin Ellis', '2013-03-19', 13, 'https://www.gutenberg.org/ebooks/42367', 'en', 4122), +(12506, 'Folhas Soltas', 'Guimarães, Alberto Dias', '2010-03-18', 4, 'https://www.gutenberg.org/ebooks/31695', 'pt', 2716), +(12507, 'The Boss and the Machine: A Chronicle of the Politicians and Party Organization', 'Orth, Samuel Peter', '2002-01-01', 25, 'https://www.gutenberg.org/ebooks/3040', 'en', 1720), +(12508, 'Calavar; or, The Knight of The Conquest, A Romance of Mexico', 'Bird, Robert Montgomery', '2010-10-23', 10, 'https://www.gutenberg.org/ebooks/34121', 'en', 6180), +(12509, 'The Lonesome Trail', 'Neihardt, John G.', '2015-11-16', 35, 'https://www.gutenberg.org/ebooks/50464', 'en', 112), +(12510, 'Songs for a Little House', 'Morley, Christopher', '2007-10-25', 9, 'https://www.gutenberg.org/ebooks/23196', 'en', 8), +(12511, 'Indice chronologico dos factos mais notaveis da Historia do Brasil\ndesde seu descobrimento em 1500 até 1849', 'Malheiro, Agostinho Marques Perdigão', '2007-07-11', 32, 'https://www.gutenberg.org/ebooks/22044', 'pt', 6181), +(12512, 'Punch, or the London Charivari, Vol. 158, 1920-01-21', 'Various', '2005-07-12', 10, 'https://www.gutenberg.org/ebooks/16271', 'en', 134), +(12513, 'Some Zulu Customs and Folk-lore', 'Samuelson, L. H.', '2014-08-04', 24, 'https://www.gutenberg.org/ebooks/46501', 'en', 6182), +(12514, 'Devereux — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 25, 'https://www.gutenberg.org/ebooks/7626', 'en', 4464), +(12515, 'La maison de Claudine', 'Colette', '2004-10-11', 111, 'https://www.gutenberg.org/ebooks/13703', 'fr', 2118), +(12516, 'El Marxant de Venecia', 'Shakespeare, William', '2008-12-15', 43, 'https://www.gutenberg.org/ebooks/27536', 'ca', 907), +(12517, 'Note on the Resemblances and Differences in the Structure and the Development of the Brain in Man and Apes', 'Huxley, Thomas Henry', '2000-10-01', 19, 'https://www.gutenberg.org/ebooks/2354', 'en', 5893), +(12518, 'Notes in North Africa\nBeing a Guide to the Sportsman and Tourist in Algeria and Tunisia', 'Windham, W. G.', '2009-12-02', 20, 'https://www.gutenberg.org/ebooks/30581', 'en', 6036), +(12519, 'Deutschland Über Allah', 'Benson, E. F. (Edward Frederic)', '2013-07-01', 15, 'https://www.gutenberg.org/ebooks/43073', 'en', 6183), +(12520, 'Portraits of Dr. William Harvey', 'Royal Society of Medicine (Great Britain)', '2015-07-29', 6, 'https://www.gutenberg.org/ebooks/49549', 'en', 6184), +(12521, 'Lavengro\nThe Scholar - The Gypsy - The Priest, Vol. 2 (of 2)', 'Borrow, George', '2007-10-03', 26, 'https://www.gutenberg.org/ebooks/22878', 'en', 95), +(12522, 'Selections from the Speeches and Writings of Edmund Burke', 'Burke, Edmund', '2002-06-01', 108, 'https://www.gutenberg.org/ebooks/3286', 'en', 20), +(12523, 'The Southern Soldier Boy: A Thousand Shots for the Confederacy', 'Elliott, James Carson', '2010-02-28', 17, 'https://www.gutenberg.org/ebooks/31453', 'en', 83), +(12524, 'Paris Nights, and Other Impressions of Places and People', 'Bennett, Arnold', '2017-07-15', 25, 'https://www.gutenberg.org/ebooks/55116', 'en', 1408), +(12525, 'Bahá\'í World Faith', '`Abdu\'l-Bahá', '2006-09-12', 28, 'https://www.gutenberg.org/ebooks/19239', 'en', 4457), +(12526, 'Viimeinen ottelu', 'London, Jack', '2018-03-20', 5, 'https://www.gutenberg.org/ebooks/56793', 'fi', 6185), +(12527, 'Poems (1786), Volume I.', 'Williams, Helen Maria', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11054', 'en', 3947), +(12528, 'History of the English People, Volume VII\r\nThe Revolution, 1683-1760; Modern England, 1760-1767', 'Green, John Richard', '2008-04-30', 14, 'https://www.gutenberg.org/ebooks/25261', 'en', 1953), +(12529, 'Meta: Eine Erzählung', 'Sternheim, Carl', '2012-12-28', 25, 'https://www.gutenberg.org/ebooks/41724', 'de', 61), +(12530, 'Hair-Breadth Escapes: The Adventures of Three Boys in South Africa', 'Adams, H. C. (Henry Cadwallader)', '2010-07-31', 33, 'https://www.gutenberg.org/ebooks/33304', 'en', 6186), +(12531, 'Schultz at the Paris Exposition', 'Kennedy, Frank', '2003-11-01', 0, 'https://www.gutenberg.org/ebooks/10186', 'en', 6187), +(12532, 'One Woman: Being the Second Part of a Romance of Sussex', 'Ollivant, Alfred', '2018-08-05', 8, 'https://www.gutenberg.org/ebooks/57641', 'en', 1220), +(12533, 'Punch, or the London Charivari, Volume 156, February 5, 1919', 'Various', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/11868', 'en', 134), +(12534, 'L\'Illustration, No. 3271, 4 Novembre 1905', 'Various', '2011-07-09', 5, 'https://www.gutenberg.org/ebooks/36676', 'fr', 150), +(12535, 'The Book of Fables and Folk Stories', 'Scudder, Horace Elisha', '2014-04-14', 44, 'https://www.gutenberg.org/ebooks/45384', 'en', 1007), +(12536, 'A Day at Camp Killkare; Or, Aunt Jane and the Campfire Girls', 'Yale, Elsie Duncan', '2016-06-15', 3, 'https://www.gutenberg.org/ebooks/52333', 'en', 6188), +(12537, 'A Campfire Girl\'s First Council Fire\nThe Camp Fire Girls In the Woods', 'Stewart, Jane L.', '2007-03-01', 26, 'https://www.gutenberg.org/ebooks/20713', 'en', 622), +(12538, 'The Little City of Hope: A Christmas Story', 'Crawford, F. Marion (Francis Marion)', '2004-12-30', 12, 'https://www.gutenberg.org/ebooks/14526', 'en', 585), +(12539, 'Buried Treasure of Casco Bay: A Guide for the Modern Hunter', 'Kennedy, Ben F.', '2019-01-04', 18, 'https://www.gutenberg.org/ebooks/58609', 'en', 6189), +(12540, 'Brown of Moukden: A Story of the Russo-Japanese War', 'Strang, Herbert', '2013-11-21', 10, 'https://www.gutenberg.org/ebooks/44256', 'en', 6190), +(12541, 'Thomas Hariot, the Mathematician, the Philosopher and the Scholar', 'Stevens, Henry', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/5171', 'en', 6191), +(12542, 'Club Life of London, Vol. 2 (of 2)\r\nWith Anecdotes of the Clubs, Coffee-Houses and Taverns of the Metropolis During the 17th, 18th, and 19th Centuries', 'Timbs, John', '2012-11-30', 10, 'https://www.gutenberg.org/ebooks/41516', 'en', 6192), +(12543, 'Sonnets by the Nawab Nizamat Jung Bahadur', 'Jung, Nizamat, Sir', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11266', 'en', 6193), +(12544, 'The Temptation of St. Antony; Or, A Revelation of the Soul', 'Flaubert, Gustave', '2008-04-12', 16, 'https://www.gutenberg.org/ebooks/25053', 'en', 2938), +(12545, 'Lorraine: A Romance', 'Chambers, Robert W. (Robert William)', '2008-01-06', 10, 'https://www.gutenberg.org/ebooks/24181', 'en', 1180), +(12546, 'Kertomuksia Suomen historiasta V:2\r\nKustaa Aadolf ja Kristiina: Suomen sisällinen tila', 'Krohn, Julius', '2014-02-09', 16, 'https://www.gutenberg.org/ebooks/44858', 'fi', 1578), +(12547, 'The Yellow Pearl: A Story of the East and the West', 'Teskey, Adeline M. (Adeline Margaret)', '2018-07-09', 16, 'https://www.gutenberg.org/ebooks/57473', 'en', 348), +(12548, 'Harper\'s Round Table, September 17, 1895', 'Various', '2010-07-11', 4, 'https://www.gutenberg.org/ebooks/33136', 'en', 668), +(12549, 'Much Ado About Something', 'Lawrence, C. E. (Charles Edward)', '2016-05-18', 20, 'https://www.gutenberg.org/ebooks/52101', 'en', 6194), +(12550, 'Studies in Old Testament History', 'Hurlbut, Jesse Lyman', '2011-06-16', 22, 'https://www.gutenberg.org/ebooks/36444', 'en', 6195), +(12551, 'Copyright Law of the United States of America and Related Laws Contained in Title 17 of the United States Code, Circular 92', 'United States', '2003-07-01', 13, 'https://www.gutenberg.org/ebooks/4291', 'en', 1878), +(12552, 'An Apology for the Life of Mr. Colley Cibber, Volume 1 (of 2)\r\nWritten by Himself. A New Edition with Notes and Supplement', 'Cibber, Colley', '2013-10-29', 33, 'https://www.gutenberg.org/ebooks/44064', 'en', 6196), +(12553, 'American Pomology. Apples', 'Warder, J. A. (John Aston)', '2011-10-02', 24, 'https://www.gutenberg.org/ebooks/37596', 'en', 3329), +(12554, 'Rainbow Valley', 'Montgomery, L. M. (Lucy Maud)', '2004-03-01', 437, 'https://www.gutenberg.org/ebooks/5343', 'en', 6197), +(12555, 'The New York Times Current History, A Monthly Magazine\r\nThe European War, March 1915', 'Various', '2007-02-06', 38, 'https://www.gutenberg.org/ebooks/20521', 'en', 335), +(12556, 'Half Portions', 'Ferber, Edna', '2005-01-17', 25, 'https://www.gutenberg.org/ebooks/14714', 'en', 828), +(12557, 'The Conspiracy of Gianluigi Fieschi, or, Genoa in the sixteenth century.', 'Celesia, Emanuele', '2015-12-09', 3, 'https://www.gutenberg.org/ebooks/50656', 'en', 6198), +(12558, 'The Actress in High Life\nAn Episode in Winter Quarters', 'Bowen, Sue Petigru', '2005-11-30', 17, 'https://www.gutenberg.org/ebooks/17191', 'en', 61), +(12559, 'Literature in the Making, by Some of Its Makers', NULL, '2010-11-13', 30, 'https://www.gutenberg.org/ebooks/34313', 'en', 3043), +(12560, 'Dombey and Son', 'Dickens, Charles', '1997-02-01', 384, 'https://www.gutenberg.org/ebooks/821', 'en', 6199), +(12561, 'A String of Pearls\r\nSecond Book of the Faith-Promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints', 'Various', '2014-08-31', 41, 'https://www.gutenberg.org/ebooks/46733', 'en', 4099), +(12562, 'Ecclesiastes', 'Unknown', '2006-11-18', 3, 'https://www.gutenberg.org/ebooks/19837', 'en', 3157), +(12563, 'Poor White: A Novel', 'Anderson, Sherwood', '2005-02-01', 74, 'https://www.gutenberg.org/ebooks/7414', 'en', 98), +(12564, 'Despair\'s Last Journey', 'Murray, David Christie', '2007-08-08', 26, 'https://www.gutenberg.org/ebooks/22276', 'en', 61), +(12565, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 5\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 3, 'https://www.gutenberg.org/ebooks/3888', 'en', 1870), +(12566, 'Mythen & Legenden van Japan', 'Davis, F. Hadland (Frederick Hadland)', '2005-06-12', 30, 'https://www.gutenberg.org/ebooks/16043', 'nl', 1304), +(12567, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 727, December 1, 1877', 'Various', '2016-04-18', 3, 'https://www.gutenberg.org/ebooks/51784', 'en', 18), +(12568, 'King Solomon\'s Mines', 'Haggard, H. Rider (Henry Rider)', '2000-05-01', 804, 'https://www.gutenberg.org/ebooks/2166', 'en', 5365), +(12569, 'The Adventures of François\nFoundling, Thief, Juggler, and Fencing-Master during the French Revolution', 'Mitchell, S. Weir (Silas Weir)', '2013-07-17', 17, 'https://www.gutenberg.org/ebooks/43241', 'en', 248), +(12570, 'Amos Kilbright; His Adscititious Experiences\r\nWith Other Stories', 'Stockton, Frank Richard', '2004-09-26', 13, 'https://www.gutenberg.org/ebooks/13531', 'en', 1958), +(12571, 'Memoirs of the Court and Cabinets of George the Third\r\nFrom the Original Family Documents, Volume 2', 'Buckingham and Chandos, Richard Plantagenet Temple Nugent Brydges Chandos Grenville, Duke of', '2009-01-05', 30, 'https://www.gutenberg.org/ebooks/27704', 'en', 4505), +(12572, 'In Spite of All: A Novel', 'Lyall, Edna', '2017-08-10', 14, 'https://www.gutenberg.org/ebooks/55324', 'en', 4665), +(12573, 'Sarchedon: A Legend of the Great Queen', 'Whyte-Melville, G. J. (George John)', '2013-03-23', 31, 'https://www.gutenberg.org/ebooks/42393', 'en', 4094), +(12574, 'Exile from Space', 'Merril, Judith', '2010-03-16', 40, 'https://www.gutenberg.org/ebooks/31661', 'en', 26), +(12575, 'The heritage of unrest', 'Overton, Gwendolen', '2018-04-21', 8, 'https://www.gutenberg.org/ebooks/57017', 'en', 6200), +(12576, 'Brother Copas', 'Quiller-Couch, Arthur', '2007-04-03', 24, 'https://www.gutenberg.org/ebooks/20979', 'en', 6201), +(12577, 'Mother', 'Wister, Owen', '1998-07-01', 25, 'https://www.gutenberg.org/ebooks/1387', 'en', 6202), +(12578, 'Acanthus and Wild Grape', 'Call, Frank Oliver', '2010-08-27', 7, 'https://www.gutenberg.org/ebooks/33552', 'en', 28), +(12579, 'An Englishwoman in the Philippines', 'Dauncey, Campbell, Mrs.', '2019-02-11', 7, 'https://www.gutenberg.org/ebooks/58863', 'en', 4048), +(12580, 'Historic Shrines of America\nBeing the Story of One Hundred and Twenty Historic Buildings and the Pioneers Who Made Them Notable', 'Faris, John T. (John Thomson)', '2012-03-06', 79, 'https://www.gutenberg.org/ebooks/39068', 'en', 414), +(12581, 'La Alaska stafeto kaj Kaptitoj de la glacirokoj', 'Omelka, František', '2010-05-22', 10, 'https://www.gutenberg.org/ebooks/32480', 'eo', 6203), +(12582, 'The White Scalper: A Story of the Texan War', 'Aimard, Gustave', '2012-10-25', 23, 'https://www.gutenberg.org/ebooks/41172', 'en', 315), +(12583, 'The World of Ice', 'Ballantyne, R. M. (Robert Michael)', '2004-03-01', 33, 'https://www.gutenberg.org/ebooks/11602', 'en', 2144), +(12584, 'D. Joanna de Portugal (A Princesa Santa)\nEsboço Biographico', 'Gomes, Marques', '2008-05-11', 15, 'https://www.gutenberg.org/ebooks/25437', 'pt', 6204), +(12585, 'Ticktock and Jim', 'Robertson, Keith', '2013-12-09', 17, 'https://www.gutenberg.org/ebooks/44400', 'en', 1287), +(12586, 'The Tale of Freddie Firefly', 'Bailey, Arthur Scott', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/5727', 'en', 6205), +(12587, 'Elegioja', 'Koskenniemi, Veikko Antero', '2006-12-20', 14, 'https://www.gutenberg.org/ebooks/20145', 'fi', 8), +(12588, 'Zahlentheorie', 'Hensel, Kurt', '2012-02-26', 28, 'https://www.gutenberg.org/ebooks/38986', 'de', 6206), +(12589, 'Zanetto; and Cavalleria Rusticana', NULL, '2004-12-16', 36, 'https://www.gutenberg.org/ebooks/14370', 'en', 1966), +(12590, 'Le chat de misère: Idées et images', 'Gourmont, Remy de', '2016-07-12', 10, 'https://www.gutenberg.org/ebooks/52565', 'fr', 4252), +(12591, 'Bird-Lore, March-April 1916', 'Various', '2012-05-30', 49, 'https://www.gutenberg.org/ebooks/39854', 'en', 6207), +(12592, 'Tom Finch\'s Monkey\nand How he Dined with the Admiral', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 11, 'https://www.gutenberg.org/ebooks/21097', 'en', 246), +(12593, 'Slave Narratives: A Folk History of Slavery in the United States From Interviews with Former Slaves: Volume I, Alabama Narratives', 'United States. Work Projects Administration', '2011-05-02', 366, 'https://www.gutenberg.org/ebooks/36020', 'en', 6208), +(12594, 'L\'expédition de la Jeannette au pôle Nord, racontée par tous les membres de l\'expédition - volume 1\r\nouvrage composé des documents reçus par le \"New-York Herald\" de 1878 à 1882', NULL, '2014-07-22', 15, 'https://www.gutenberg.org/ebooks/46357', 'fr', 4683), +(12595, 'The Treasure of the Incas: A Story of Adventure in Peru', 'Henty, G. A. (George Alfred)', '2004-12-01', 47, 'https://www.gutenberg.org/ebooks/7070', 'en', 658), +(12596, 'Punch, or the London Charivari, Vol. 150, January 26, 1916', 'Various', '2007-09-15', 8, 'https://www.gutenberg.org/ebooks/22612', 'en', 134), +(12597, 'Drie Vertellingen', 'Flaubert, Gustave', '2005-09-01', 20, 'https://www.gutenberg.org/ebooks/8804', 'nl', 6209), +(12598, 'The Splendid Folly', 'Pedler, Margaret', '2005-08-04', 14, 'https://www.gutenberg.org/ebooks/16427', 'en', 2828), +(12599, 'The Boys\' Life of Lafayette', 'Nicolay, Helen', '2015-10-16', 6, 'https://www.gutenberg.org/ebooks/50232', 'en', 566), +(12600, 'Americanism Contrasted with Foreignism, Romanism, and Bogus Democracy in the Light of Reason, History, and Scripture;\nIn which Certain Demagogues in Tennessee, and Elsewhere,\nare Shown Up in Their True Colors', 'Brownlow, William Gannaway', '2009-03-15', 18, 'https://www.gutenberg.org/ebooks/28328', 'en', 6210), +(12601, 'The Hill of Dreams', 'Machen, Arthur', '2004-11-07', 101, 'https://www.gutenberg.org/ebooks/13969', 'en', 918), +(12602, 'A Lame Dog\'s Diary', 'Macnaughtan, S. (Sarah)', '2011-02-03', 35, 'https://www.gutenberg.org/ebooks/34777', 'en', 6211), +(12603, 'Sindbad the Sailor, & Other Stories from the Arabian Nights', 'Anonymous', '2014-11-04', 140, 'https://www.gutenberg.org/ebooks/47285', 'en', 3756), +(12604, 'Dürer', 'Knackfuss, H. (Hermann)', '2017-10-13', 10, 'https://www.gutenberg.org/ebooks/55740', 'de', 6212), +(12605, 'The American Missionary — Volume 42, No. 04, April, 1888', 'Various', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12087', 'en', 562), +(12606, 'The Bible, King James version, Book 38: Zechariah', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8038', 'en', 6213), +(12607, 'The Philosophy of Spinoza', 'Spinoza, Benedictus de', '2010-02-07', 114, 'https://www.gutenberg.org/ebooks/31205', 'en', 779), +(12608, 'Chitra, a Play in One Act', 'Tagore, Rabindranath', '2001-02-01', 109, 'https://www.gutenberg.org/ebooks/2502', 'en', 6214), +(12609, 'The Survey, Volume XXX, Number 1, April 5, 1913', 'Various', '2013-09-02', 12, 'https://www.gutenberg.org/ebooks/43625', 'en', 6215), +(12610, 'James Fenimore Cooper', 'Phillips, Mary Elizabeth', '2004-08-10', 32, 'https://www.gutenberg.org/ebooks/13155', 'en', 6216), +(12611, 'In the Far East\r\nA Narrative of Exploration and Adventure in Cochin-China, Cambodia, Laos, and Siam', 'Adams, W. H. Davenport (William Henry Davenport)', '2017-05-09', 28, 'https://www.gutenberg.org/ebooks/54692', 'en', 6217), +(12612, 'Little Lord Fauntleroy', 'Burnett, Frances Hodgson', '2006-01-16', 505, 'https://www.gutenberg.org/ebooks/479', 'en', 4901), +(12613, 'Punch or the London Charivari, September 9, 1914', 'Various', '2008-11-29', 8, 'https://www.gutenberg.org/ebooks/27360', 'en', 134), +(12614, 'The Book of Nature Myths', 'Holbrook, Florence', '2007-08-27', 138, 'https://www.gutenberg.org/ebooks/22420', 'en', 1223), +(12615, 'My Adventures During the Late War\r\nA narrative of shipwreck, captivity, escapes from French prisons, and sea service in 1804-14', 'O\'Brien, Donat Henchy', '2015-09-08', 22, 'https://www.gutenberg.org/ebooks/49911', 'en', 6218), +(12616, 'By Still Waters: Lyrical Poems Old and New', 'Russell, George William', '2005-08-29', 11, 'https://www.gutenberg.org/ebooks/16615', 'en', 8), +(12617, 'The Book of Daniel Unlocked', 'Auchincloss, W. S. (William Stuart)', '2014-07-01', 30, 'https://www.gutenberg.org/ebooks/46165', 'en', 6219), +(12618, 'Three Sunsets and Other Poems', 'Carroll, Lewis', '2011-03-06', 61, 'https://www.gutenberg.org/ebooks/35497', 'en', 8), +(12619, 'A Connecticut Yankee in King Arthur\'s Court, Part 1.', 'Twain, Mark', '2004-07-06', 24, 'https://www.gutenberg.org/ebooks/7242', 'en', 2229), +(12620, 'Dr. Rumsey\'s Patient: A Very Strange Story', 'Halifax, Clifford', '2010-12-02', 28, 'https://www.gutenberg.org/ebooks/34545', 'en', 6220), +(12621, 'The Lives of the Twelve Caesars, Volume 05: Claudius', 'Suetonius', '2004-12-13', 31, 'https://www.gutenberg.org/ebooks/6390', 'en', 6221), +(12622, 'John Gutenberg, First Master Printer\r\nHis Acts and Most Remarkable Discourses and his Death', 'Dingelstedt, Franz von', '2015-09-17', 19, 'https://www.gutenberg.org/ebooks/50000', 'en', 6222), +(12623, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 19', 'Stevenson, Robert Louis', '2010-01-21', 18, 'https://www.gutenberg.org/ebooks/31037', 'en', 108), +(12624, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 688\r\nMarch 3, 1877', 'Various', '2014-09-25', 15, 'https://www.gutenberg.org/ebooks/46959', 'en', 18), +(12625, 'Skinner\'s Dress Suit', 'Dodge, Henry Irving', '2008-07-17', 9, 'https://www.gutenberg.org/ebooks/26080', 'en', 6223), +(12626, 'Uuden pirtin hyppijäiset: Yksinäytöksinen kansannäytelmä', 'Numers, Gustaf von', '2017-09-18', 9, 'https://www.gutenberg.org/ebooks/55572', 'fi', 402), +(12627, 'Hills and the Sea', 'Belloc, Hilaire', '2004-09-03', 59, 'https://www.gutenberg.org/ebooks/13367', 'en', 776), +(12628, 'A Visit to Java\nWith an Account of the Founding of Singapore', 'Worsfold, W. Basil (William Basil)', '2008-11-04', 27, 'https://www.gutenberg.org/ebooks/27152', 'en', 6224), +(12629, 'Long Odds', 'Haggard, H. Rider (Henry Rider)', '2006-03-31', 32, 'https://www.gutenberg.org/ebooks/2730', 'en', 3825), +(12630, 'A Conchological Manual', 'Sowerby, G. B. (George Brettingham)', '2013-08-07', 12, 'https://www.gutenberg.org/ebooks/43417', 'en', 6225), +(12631, 'Diary from March 4, 1861, to November 12, 1862', 'Gurowski, Adam', '2009-05-22', 27, 'https://www.gutenberg.org/ebooks/28926', 'en', 6226), +(12632, 'Paris Vistas', 'Gibbons, Helen Davenport', '2012-07-21', 21, 'https://www.gutenberg.org/ebooks/40292', 'en', 6227), +(12633, 'A Bride from the Bush', 'Hornung, E. W. (Ernest William)', '2011-12-23', 25, 'https://www.gutenberg.org/ebooks/38388', 'en', 376), +(12634, 'Fossil Ice Crystals: An Instance of the Practical Value of \"Pure Science\"', 'Udden, Johan August', '2010-09-18', 2, 'https://www.gutenberg.org/ebooks/33760', 'en', 6228), +(12635, 'A.M.D.G.', 'Pérez de Ayala, Ramón', '2018-05-28', 12, 'https://www.gutenberg.org/ebooks/57225', 'es', 6229), +(12636, 'Goede Vaêr Tromp\r\nof hoe de Vereenigde Provinciën eene zeemogendheid werden', 'Louwerse, Pieter', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11430', 'nl', 98), +(12637, 'I misteri del processo Monti e Tognetti', 'Sanvittore, Gaetano', '2008-05-26', 14, 'https://www.gutenberg.org/ebooks/25605', 'it', 6230), +(12638, 'Mount Royal: A Novel. Volume 2 of 3', 'Braddon, M. E. (Mary Elizabeth)', '2012-11-10', 12, 'https://www.gutenberg.org/ebooks/41340', 'en', 61), +(12639, 'The 23rd (Service) Battalion Royal Fusiliers (First Sportsman\'s)\nA Record of its Services in the Great War, 1914-1919', 'Ward, Fred W.', '2007-01-15', 23, 'https://www.gutenberg.org/ebooks/20377', 'en', 6231), +(12640, 'The Foolish Dictionary\r\nAn exhausting work of reference to un-certain English words, their origin, meaning, legitimate and illegitimate use, confused by a few pictures [not included]', 'Wurdz, Gideon', '2007-04-01', 143, 'https://www.gutenberg.org/ebooks/1989', 'en', 190), +(12641, 'Melmoth the Wanderer, Vol. 1 (of 4)', 'Maturin, Charles Robert', '2016-12-07', 108, 'https://www.gutenberg.org/ebooks/53685', 'en', 428), +(12642, 'Land und Volk in Afrika, Berichte aus den Jahren 1865-1870', 'Rohlfs, Gerhard', '2004-11-24', 22, 'https://www.gutenberg.org/ebooks/14142', 'de', 708), +(12643, 'Hell\'s Hatches', 'Freeman, Lewis R. (Lewis Ransome)', '2014-01-09', 13, 'https://www.gutenberg.org/ebooks/44632', 'en', 297), +(12644, 'Arachne — Volume 08', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5515', 'en', 6232), +(12645, 'La rivoluzione di Milano dell\'Aprile 1814', 'Verri, Carlo, conte', '2011-05-25', 31, 'https://www.gutenberg.org/ebooks/36212', 'it', 6233), +(12646, 'Isäin pahat teot lasten päällä', 'Päivärinta, Pietari', '2005-02-17', 12, 'https://www.gutenberg.org/ebooks/15090', 'fi', 61), +(12647, 'The Proportions of Truth', 'Hoare, Edward', '2016-08-08', 4, 'https://www.gutenberg.org/ebooks/52757', 'en', 6234), +(12648, 'Ande Trembath: A Tale of Old Cornwall England', 'Kemp, Matthew Stanley', '2012-05-03', 23, 'https://www.gutenberg.org/ebooks/39606', 'en', 166), +(12649, '公墓', 'Mu, Shiying', '2008-04-30', 17, 'https://www.gutenberg.org/ebooks/25259', 'zh', 4473), +(12650, 'Elements of Criticism, Volume II.', 'Kames, Henry Home, Lord', '2018-08-12', 11, 'https://www.gutenberg.org/ebooks/57679', 'en', 2641), +(12651, 'Thomas Wingfold, Curate V3', 'MacDonald, George', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/5975', 'en', 4174), +(12652, 'U.S. Copyright Renewals, 1974 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11850', 'en', 4170), +(12653, 'La tentation de Saint Antoine', 'Flaubert, Gustave', '2004-02-01', 54, 'https://www.gutenberg.org/ebooks/10982', 'fr', 6235), +(12654, 'Gold of the Gods', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5149', 'en', 6236), +(12655, 'Nuoren tytön elämäntarina', 'Levetzow, Cornelia', '2019-01-06', 3, 'https://www.gutenberg.org/ebooks/58631', 'fi', 2631), +(12656, 'The Life of Galileo Galilei, with Illustrations of the Advancement of Experimental Philosophy\nLife of Kepler', 'Bethune, John Elliot Drinkwater', '2013-10-03', 53, 'https://www.gutenberg.org/ebooks/43877', 'en', 6237), +(12657, 'A History of England Principally in the Seventeenth Century, Volume I (of 6)', 'Ranke, Leopold von', '2009-04-09', 20, 'https://www.gutenberg.org/ebooks/28546', 'en', 6238), +(12658, 'L\'Illustration, No. 3236, 4 Mars 1905', 'Various', '2010-10-23', 2, 'https://www.gutenberg.org/ebooks/34119', 'fr', 150), +(12659, 'Der Erbe: Roman. Erster Band.', 'Gerstäcker, Friedrich', '2014-08-09', 15, 'https://www.gutenberg.org/ebooks/46539', 'de', 138), +(12660, 'A jövő század regénye, 2. rész', 'Jókai, Mór', '2017-11-08', 2, 'https://www.gutenberg.org/ebooks/55912', 'hu', 234), +(12661, 'King Philip\nMakers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2009-07-22', 93, 'https://www.gutenberg.org/ebooks/29494', 'en', 2180), +(12662, 'Bought and Paid For; From the Play of George Broadhurst', 'Broadhurst, George Howells', '2005-07-08', 9, 'https://www.gutenberg.org/ebooks/16249', 'en', 675), +(12663, 'Thomas Carlyle', 'Nichol, John', '2006-01-01', 13, 'https://www.gutenberg.org/ebooks/9784', 'en', 6239), +(12664, 'A Missionary Twig', 'Burnett, Emma L.', '2007-12-25', 28, 'https://www.gutenberg.org/ebooks/23992', 'en', 519), +(12665, 'Sons and Lovers', 'Lawrence, D. H. (David Herbert)', '2006-01-16', 447, 'https://www.gutenberg.org/ebooks/217', 'en', 378), +(12666, 'Parlous Times: A Novel of Modern Diplomacy', 'Wells, David Dwight', '2011-01-12', 7, 'https://www.gutenberg.org/ebooks/34925', 'en', 6240), +(12667, 'Cymbeline: Tragédie', 'Shakespeare, William', '2006-09-07', 20, 'https://www.gutenberg.org/ebooks/19201', 'fr', 3523), +(12668, 'Honor O\'Callaghan', 'Mitford, Mary Russell', '2007-10-02', 17, 'https://www.gutenberg.org/ebooks/22840', 'en', 179), +(12669, 'Winter', 'Sharp, Dallas Lore', '2013-02-28', 37, 'https://www.gutenberg.org/ebooks/42199', 'en', 1216), +(12670, 'The Girl\'s Own Paper, Vol. XX, No. 982, October 22, 1898', 'Various', '2015-08-01', 10, 'https://www.gutenberg.org/ebooks/49571', 'en', 563), +(12671, 'The Book of the Thousand Nights and One Night, Volume II', NULL, '2005-08-01', 76, 'https://www.gutenberg.org/ebooks/8656', 'en', 3347), +(12672, 'The History of the Telephone', 'Casson, Herbert Newton', '1997-02-01', 115, 'https://www.gutenberg.org/ebooks/819', 'en', 3741), +(12673, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 12: Return to Paris', 'Casanova, Giacomo', '2004-12-11', 18, 'https://www.gutenberg.org/ebooks/2962', 'en', 4391), +(12674, 'Finnish Arts; Or, Sir Thor and Damsel Thure, a Ballad', NULL, '2009-05-12', 25, 'https://www.gutenberg.org/ebooks/28774', 'en', 8), +(12675, 'Grappling with the Monster; Or, the Curse and the Cure of Strong Drink', 'Arthur, T. S. (Timothy Shay)', '2004-09-21', 23, 'https://www.gutenberg.org/ebooks/13509', 'en', 6241), +(12676, 'Ηλέκτρα', 'Euripides', '2006-03-15', 67, 'https://www.gutenberg.org/ebooks/17995', 'el', 5603), +(12677, 'Gösta Berlingin taru', 'Lagerlöf, Selma', '2013-07-22', 12, 'https://www.gutenberg.org/ebooks/43279', 'fi', 2168), +(12678, 'Forty Years at El Paso, 1858-1898', 'Mills, W. W. (William Wallace)', '2015-04-12', 4, 'https://www.gutenberg.org/ebooks/48691', 'en', 6242), +(12679, 'La mère et l\'enfant', 'Philippe, Charles-Louis', '2015-08-20', 6, 'https://www.gutenberg.org/ebooks/49743', 'fr', 687), +(12680, 'Rest Harrow: A Comedy of Resolution', 'Hewlett, Maurice', '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/8464', 'en', 61), +(12681, 'Hinduism and Buddhism, An Historical Sketch, Vol. 3', 'Eliot, Charles', '2005-10-10', 65, 'https://www.gutenberg.org/ebooks/16847', 'en', 6243), +(12682, 'Side-stepping with Shorty', 'Ford, Sewell', '2010-03-15', 16, 'https://www.gutenberg.org/ebooks/31659', 'en', 112), +(12683, 'Alice\'s Adventures in Wonderland', 'Carroll, Lewis', '2006-08-12', 1272, 'https://www.gutenberg.org/ebooks/19033', 'en', 388), +(12684, 'The Fortunes of the Colville Family; or, A Cloud with its Silver Lining', 'Smedley, Frank E. (Frank Edward)', '2018-02-18', 4, 'https://www.gutenberg.org/ebooks/56599', 'en', 585), +(12685, 'Little Jack Rabbit and Danny Fox', 'Cory, David', '2016-08-27', 6, 'https://www.gutenberg.org/ebooks/52905', 'en', 6244), +(12686, 'Vistas of New York', 'Matthews, Brander', '2012-04-12', 11, 'https://www.gutenberg.org/ebooks/39434', 'en', 112), +(12687, 'The Comic History of England', 'À Beckett, Gilbert Abbott', '2014-02-09', 33, 'https://www.gutenberg.org/ebooks/44860', 'en', 6245), +(12688, 'Patty\'s Social Season', 'Wells, Carolyn', '2008-06-20', 22, 'https://www.gutenberg.org/ebooks/25857', 'en', 3251), +(12689, 'Uther and Igraine', 'Deeping, Warwick', '2016-05-23', 23, 'https://www.gutenberg.org/ebooks/52139', 'en', 6246), +(12690, 'Highways in Hiding', 'Smith, George O. (George Oliver)', '2007-02-06', 43, 'https://www.gutenberg.org/ebooks/20519', 'en', 26), +(12691, 'Company B, 307th Infantry\nIts history, honor roll, company roster, Sept., 1917, May, 1919', 'Klausner, Julius', '2010-10-12', 22, 'https://www.gutenberg.org/ebooks/33932', 'en', 6247), +(12692, 'John Vytal: A Tale of the Lost Colony', 'Payson, William Farquhar', '2018-12-02', 4, 'https://www.gutenberg.org/ebooks/58403', 'en', 4969), +(12693, 'Comedies of Courtship', 'Hope, Anthony', '2008-04-04', 35, 'https://www.gutenberg.org/ebooks/24985', 'en', 179), +(12694, 'By the Golden Gate\r\nOr, San Francisco, the Queen City of the Pacific Coast; with Scenes and Incidents Characteristic of its Life', 'Carey, Joseph', '2004-07-11', 0, 'https://www.gutenberg.org/ebooks/12883', 'en', 6248), +(12695, 'Triumph of the Egg, and Other Stories', 'Anderson, Sherwood', '2004-12-01', 86, 'https://www.gutenberg.org/ebooks/7048', 'en', 728), +(12696, 'Les trois mousquetaires', 'Dumas, Alexandre', '2004-11-04', 310, 'https://www.gutenberg.org/ebooks/13951', 'fr', 3391), +(12697, 'Scenas da Foz', 'Castelo Branco, Camilo', '2009-03-11', 9, 'https://www.gutenberg.org/ebooks/28310', 'pt', 410), +(12698, 'Labors in the Vineyard\r\nTwelfth Book of the Faith-Promoting Series. Designed for the Instruction and Encouragement of Young Latter-Day Saints.', 'Various', '2015-06-29', 21, 'https://www.gutenberg.org/ebooks/49327', 'en', 6249), +(12699, 'The Slave Trade, Domestic and Foreign\r\nWhy It Exists, and How It May Be Extinguished', 'Carey, Henry Charles', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/8000', 'en', 125), +(12700, 'Historical and descriptive narrative of twenty years\' residence in South America (Vol 3 of 3)\r\nContaining travels in Arauco, Chile, Peru, and Colombia; with an account of the revolution, its rise, progress, and results', 'Stevenson, William Bennet, active 1803-1825', '2017-10-19', 9, 'https://www.gutenberg.org/ebooks/55778', 'en', 5450), +(12701, 'Historic Tales: The Romance of Reality. Vol. 07 (of 15), Spanish', 'Morris, Charles', '2006-10-03', 15, 'https://www.gutenberg.org/ebooks/19457', 'en', 6250), +(12702, 'Lord Jim', 'Conrad, Joseph', '2005-04-01', 8, 'https://www.gutenberg.org/ebooks/7874', 'en', 6251), +(12703, 'Les Nez-Percés', 'Chevalier, H. Emile (Henri Emile)', '2006-06-14', 13, 'https://www.gutenberg.org/ebooks/18585', 'fr', 1357), +(12704, 'New Poems, and Variant Readings', 'Stevenson, Robert Louis', '1996-02-01', 84, 'https://www.gutenberg.org/ebooks/441', 'en', 6252), +(12705, 'Olocausto', 'Oriani, Alfredo', '2008-11-29', 29, 'https://www.gutenberg.org/ebooks/27358', 'it', 892), +(12706, 'Τα ανέκδοτα του Βασιλέως Γεωργίου Α', NULL, '2012-06-27', 10, 'https://www.gutenberg.org/ebooks/40098', 'el', 6253); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(12707, 'American Lutheranism, Volume 1\r\nEarly History of American Lutheranism and the Tennessee Synod', 'Bente, F. (Friedrich)', '2007-03-30', 11, 'https://www.gutenberg.org/ebooks/20941', 'en', 6254), +(12708, 'Curious Church Customs and Cognate Subjects', NULL, '2011-12-01', 15, 'https://www.gutenberg.org/ebooks/38182', 'en', 1470), +(12709, 'Novelleja', 'Schwartz, Marie Sophie', '2011-07-23', 12, 'https://www.gutenberg.org/ebooks/36824', 'fi', 61), +(12710, 'Hans Lange: Näytelmä viidessä näytöksessä', 'Heyse, Paul', '2019-07-27', 50, 'https://www.gutenberg.org/ebooks/59989', 'fi', 4568), +(12711, 'Ralph of the Roundhouse; Or, Bound to Become a Railroad Man', 'Chapman, Allen', '2012-03-04', 20, 'https://www.gutenberg.org/ebooks/39050', 'en', 771), +(12712, 'Patsy', 'Crockett, S. R. (Samuel Rutherford)', '2007-06-21', 11, 'https://www.gutenberg.org/ebooks/21893', 'en', 2389), +(12713, 'Ma Pettengill', 'Wilson, Harry Leon', '2004-12-13', 6, 'https://www.gutenberg.org/ebooks/14348', 'en', 315), +(12714, 'A Letter to the Loving and Beloved People of the Parish of Madeley, and Its Vicinity, Who Have Lost a Friend to Piety in the Death of Mrs. Fletcher, Widow of the Rev. J. W. Fletcher, (or de la Flechere,) Late Vicar of Madeley, Shropshire.', 'Tooth, Mary', '2018-10-10', 8, 'https://www.gutenberg.org/ebooks/58067', 'en', 6255), +(12715, 'The War with Mexico, Volume 2 (of 2)', 'Smith, Justin Harvey', '2013-12-16', 31, 'https://www.gutenberg.org/ebooks/44438', 'en', 291), +(12716, 'How to Master the Spoken Word\r\nDesigned as a Self-Instructor for all who would Excel in the Art of Public Speaking', 'Lawrence, Edwin Gordon', '2018-08-30', 33, 'https://www.gutenberg.org/ebooks/57813', 'en', 3906), +(12717, 'At Boarding School with the Tucker Twins', 'Speed, Nell', '2011-05-02', 16, 'https://www.gutenberg.org/ebooks/36018', 'en', 1877), +(12718, 'Mpuke, Our Little African Cousin', 'Wade, Mary Hazelton Blanchard', '2013-02-03', 16, 'https://www.gutenberg.org/ebooks/41976', 'en', 6256), +(12719, 'The Blossoming Rod', 'Cutting, Mary Stewart', '2005-02-07', 14, 'https://www.gutenberg.org/ebooks/14946', 'en', 585), +(12720, 'Derby Day in the Yukon, and Other Poems of the \"Northland\"', 'Hayes, Kate Simpson', '2010-09-19', 6, 'https://www.gutenberg.org/ebooks/33758', 'en', 28), +(12721, 'Bert Wilson, Wireless Operator', 'Duffield, J. W.', '2012-03-25', 19, 'https://www.gutenberg.org/ebooks/39262', 'en', 3343), +(12722, 'The Lifted Bandage', 'Andrews, Mary Raymond Shipman', '2005-05-24', 23, 'https://www.gutenberg.org/ebooks/15894', 'en', 5844), +(12723, 'Coleridge', 'Bensusan, S. L. (Samuel Levy)', '2012-11-16', 14, 'https://www.gutenberg.org/ebooks/41378', 'en', 6257), +(12724, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 346, December 13, 1828', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11408', 'en', 133), +(12725, 'Educating by Story-Telling\nShowing the Value of Story-Telling as an Educational Tool for the Use of All Workers with Children', 'Cather, Katherine Dunlap, Mrs.', '2018-11-09', 9, 'https://www.gutenberg.org/ebooks/58255', 'en', 6258), +(12726, 'Harper\'s Round Table, September 22, 1896', 'Various', '2019-04-29', 7, 'https://www.gutenberg.org/ebooks/59387', 'en', 668), +(12727, 'The Backwash of War\r\nThe Human Wreckage of the Battlefield as Witnessed by an American Hospital Nurse', 'La Motte, Ellen N. (Ellen Newbold)', '2008-10-12', 63, 'https://www.gutenberg.org/ebooks/26884', 'en', 449), +(12728, 'Ran: En dramatisk dikt', 'Peterson-Berger, Wilhelm', '2015-09-10', 10, 'https://www.gutenberg.org/ebooks/49929', 'sv', 1966), +(12729, 'Dollars and Sense', 'Hunter, William Crosbie', '2007-08-27', 19, 'https://www.gutenberg.org/ebooks/22418', 'en', 740), +(12730, 'The Wedge', 'Fyfe, H. B. (Horace Bowne)', '2010-03-31', 20, 'https://www.gutenberg.org/ebooks/31833', 'en', 26), +(12731, 'The story of Hungary', 'Vámbéry, Ármin', '2015-09-22', 15, 'https://www.gutenberg.org/ebooks/50038', 'en', 6259), +(12732, 'Tractado da terra do Brasil\nno qual se contem a informação das cousas que ha nestas\npartes feito por P.º de Magalhaes', 'Gandavo, Pero de Magalhães', '2009-02-19', 29, 'https://www.gutenberg.org/ebooks/28122', 'pt', 6260), +(12733, 'Roma Sacra\nDe Aarde en haar Volken, 1904', 'Schoener, Reinhold', '2009-02-01', 11, 'https://www.gutenberg.org/ebooks/27956', 'nl', 2452), +(12734, 'The Principles of Language-Study', 'Palmer, Harold E.', '2014-09-25', 23, 'https://www.gutenberg.org/ebooks/46961', 'en', 6261), +(12735, 'My Lady of the Chinese Courtyard', 'Cooper, Elizabeth', '2006-10-30', 12, 'https://www.gutenberg.org/ebooks/19665', 'en', 6262), +(12736, 'Eight Sermons on the Priesthood, Altar, and Sacrifice', 'Mayow, Mayow Wynell', '2015-06-02', 7, 'https://www.gutenberg.org/ebooks/49115', 'en', 6263), +(12737, 'The World English Bible (WEB): Deuteronomy', 'Anonymous', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8232', 'en', 6264), +(12738, 'Colomba', 'Mérimée, Prosper', '2006-03-28', 39, 'https://www.gutenberg.org/ebooks/2708', 'en', 6265), +(12739, 'Kaukainen onni: Kertomus etsijän ikävästä', 'Järventaus, Arvi', '2015-12-31', 27, 'https://www.gutenberg.org/ebooks/50804', 'fi', 175), +(12740, 'The Gutenberg Webster\'s Unabridged Dictionary', 'Project Gutenberg', '1996-10-01', 143, 'https://www.gutenberg.org/ebooks/673', 'en', 1481), +(12741, 'The Wise and Ingenious Companion, French and English;\r\nor, A Collection of the Wit of the Illustrious Persons, Both Ancient and Modern', 'Boyer, Abel', '2017-04-07', 17, 'https://www.gutenberg.org/ebooks/54498', 'fr', 1697), +(12742, 'Graham\'s Magazine Vol XXXII. No. 3. March 1848', 'Various', '2009-06-25', 12, 'https://www.gutenberg.org/ebooks/29236', 'en', 380), +(12743, 'The First Hundred Thousand: Being the Unofficial Chronicle of a Unit of \"K(1)\"', 'Hay, Ian', '2004-07-10', 27, 'https://www.gutenberg.org/ebooks/12877', 'en', 2223), +(12744, 'The Falls of Niagara and Other Famous Cataracts', 'Holley, George W. (George Washington)', '2011-03-24', 20, 'https://www.gutenberg.org/ebooks/35669', 'en', 6266), +(12745, 'La jeso de knabinoj: Triakta proza komedio', 'Fernández de Moratín, Leandro', '2014-10-31', 10, 'https://www.gutenberg.org/ebooks/47249', 'eo', 6267), +(12746, 'Dagen', 'Streuvels, Stijn', '2006-01-23', 40, 'https://www.gutenberg.org/ebooks/17539', 'nl', 61), +(12747, 'Passages from the French and Italian Notebooks, Volume 2.', 'Hawthorne, Nathaniel', '2005-04-01', 28, 'https://www.gutenberg.org/ebooks/7880', 'en', 4126), +(12748, 'By Pike and Dyke: a Tale of the Rise of the Dutch Republic', 'Henty, G. A. (George Alfred)', '2004-11-01', 52, 'https://www.gutenberg.org/ebooks/6952', 'en', 98), +(12749, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 469, January 1, 1831', 'Various', '2004-08-17', 1, 'https://www.gutenberg.org/ebooks/13199', 'en', 133), +(12750, 'The Northmen, Columbus and Cabot, 985-1503', NULL, '2006-06-13', 42, 'https://www.gutenberg.org/ebooks/18571', 'en', 2036), +(12751, 'Kantele Taikka Suomen Kansan sekä Wanhoja että Nykyisempiä Runoja ja Lauluja, III', 'Lönnrot, Elias', '2015-02-08', 36, 'https://www.gutenberg.org/ebooks/48201', 'fi', 1171), +(12752, 'The Stronger Influence', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-11-30', 83, 'https://www.gutenberg.org/ebooks/38176', 'en', 1207), +(12753, 'The Unnecessary Man', 'Garrett, Randall', '2008-02-06', 51, 'https://www.gutenberg.org/ebooks/24529', 'en', 2797), +(12754, 'Saulus Tarsolainen: Erään sielun historia', 'Roos, Mathilda', '2011-11-01', 45, 'https://www.gutenberg.org/ebooks/37902', 'fi', 2168), +(12755, 'Bringing up the Boy\r\nA Message to Fathers and Mothers from a Boy of Yesterday Concerning the Men of To-morrow', 'Werner, Carl Avery', '2017-12-03', 16, 'https://www.gutenberg.org/ebooks/56109', 'en', 3300), +(12756, 'Afterwards', 'Rhodes, Kathlyn', '2007-06-19', 18, 'https://www.gutenberg.org/ebooks/21867', 'en', 61), +(12757, 'Carolina Lee', 'Bell, Lilian', '2012-09-23', 119, 'https://www.gutenberg.org/ebooks/40850', 'en', 3676), +(12758, 'Recollections of Manilla and the Philippines\nDuring 1848, 1849 and 1850', 'MacMicking, Robert', '2006-12-26', 12, 'https://www.gutenberg.org/ebooks/20189', 'en', 4987), +(12759, 'Round the Sofa; vol. 2', 'Gaskell, Elizabeth Cleghorn', '2018-10-13', 17, 'https://www.gutenberg.org/ebooks/58093', 'en', 45), +(12760, 'California Romantic and Resourceful\r\nA plea for the Collection, Preservation and Diffusion of Information Relating to Pacific Coast History', 'Davis, John Francis', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/4639', 'en', 6268), +(12761, 'First Love: A Novel. Vol. 3 of 3', 'Loudon, Mrs. (Margracia)', '2018-04-07', 2, 'https://www.gutenberg.org/ebooks/56935', 'en', 61), +(12762, 'Blow the Man Down', 'Fontenay, Charles L.', '2019-03-28', 56, 'https://www.gutenberg.org/ebooks/59141', 'en', 179), +(12763, 'Western Scenes and Reminiscences\r\nTogether with Thrilling Legends and Traditions of the Red Men of the Forest', 'Schoolcraft, Henry Rowe', '2012-06-02', 8, 'https://www.gutenberg.org/ebooks/39898', 'en', 869), +(12764, 'The Outdoor Chums in the Forest; Or, Laying the Ghost of Oak Ridge', 'Allen, Quincy', '2013-02-03', 13, 'https://www.gutenberg.org/ebooks/41982', 'en', 1120), +(12765, 'Räisäspoika', 'Kokko, Juhana', '2011-12-19', 18, 'https://www.gutenberg.org/ebooks/38344', 'fi', 61), +(12766, 'On Revenues', 'Xenophon', '1998-01-01', 40, 'https://www.gutenberg.org/ebooks/1179', 'en', 6269), +(12767, 'The Atlantic Monthly, Volume 13, No. 79, May, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-05-18', 5, 'https://www.gutenberg.org/ebooks/15860', 'en', 1227), +(12768, 'The Story of Francis Cludde', 'Weyman, Stanley John', '2012-03-29', 95, 'https://www.gutenberg.org/ebooks/39296', 'en', 6270), +(12769, 'Horace Walpole: A memoir\r\nWith an appendix of books printed at the Strawberry Hill Press', 'Dobson, Austin', '2016-12-02', 6, 'https://www.gutenberg.org/ebooks/53649', 'en', 6271), +(12770, 'Egmont', 'Goethe, Johann Wolfgang von', '1999-10-01', 73, 'https://www.gutenberg.org/ebooks/1945', 'en', 6272), +(12771, 'Catalysis', 'Anderson, Poul', '2019-04-27', 110, 'https://www.gutenberg.org/ebooks/59373', 'en', 3487), +(12772, 'Het leven van Hugo de Groot', 'Klinkhamer, Jacob', '2007-05-02', 6, 'https://www.gutenberg.org/ebooks/21269', 'nl', 6273), +(12773, 'On the uncertainty of the signs of murder in the case of bastard children', 'Hunter, William', '2008-10-11', 17, 'https://www.gutenberg.org/ebooks/26870', 'en', 6274), +(12774, 'English Translations of Works of Emile Zola\r\nAn Index to the Project Gutenberg Works of Zola in English', 'Zola, Émile', '2009-05-30', 128, 'https://www.gutenberg.org/ebooks/29004', 'en', 198), +(12775, 'Mon frère et moi; souvenirs d\'enfance et de jeunesse', 'Daudet, Ernest', '2010-01-10', 18, 'https://www.gutenberg.org/ebooks/30915', 'fr', 6275), +(12776, 'Test Pilot', 'Collins, James', '2010-12-08', 14, 'https://www.gutenberg.org/ebooks/34589', 'en', 6276), +(12777, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 01 (1820)', 'Various', '2014-09-29', 13, 'https://www.gutenberg.org/ebooks/46995', 'en', 2757), +(12778, 'The Maid-At-Arms: A Novel', 'Chambers, Robert W. (Robert William)', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12279', 'en', 4570), +(12779, 'Dead Man\'s Plack and an Old Thorn', 'Hudson, W. H. (William Henry)', '2006-11-01', 22, 'https://www.gutenberg.org/ebooks/19691', 'en', 6277), +(12780, 'Common Science', 'Washburne, Carleton', '2009-08-28', 27, 'https://www.gutenberg.org/ebooks/29838', 'en', 814), +(12781, 'Ο Βελισάριος', 'Marmontel, Jean-François', '2013-04-12', 12, 'https://www.gutenberg.org/ebooks/42509', 'el', 6278), +(12782, 'Fanny\'s First Novel', 'Moore, Frank Frankfort', '2016-05-01', 5, 'https://www.gutenberg.org/ebooks/51922', 'en', 95), +(12783, 'Old French Fairy Tales', 'Ségur, Sophie, comtesse de', '2009-09-29', 73, 'https://www.gutenberg.org/ebooks/30129', 'en', 6279), +(12784, 'The Calling of Dan Matthews', 'Wright, Harold Bell', '2005-11-01', 25, 'https://www.gutenberg.org/ebooks/9314', 'en', 6280), +(12785, 'Paĝoj el la Flandra Literaturo', NULL, '2015-01-20', 12, 'https://www.gutenberg.org/ebooks/48033', 'eo', 6281), +(12786, 'Krindlesyke', 'Gibson, Wilfrid Wilson', '2006-07-03', 21, 'https://www.gutenberg.org/ebooks/18743', 'en', 402), +(12787, 'A Personal Record', 'Conrad, Joseph', '2006-01-09', 136, 'https://www.gutenberg.org/ebooks/687', 'en', 4965), +(12788, 'Studies in the Theory of Descent, Volume I', 'Weismann, August', '2015-01-02', 26, 'https://www.gutenberg.org/ebooks/47847', 'en', 5988), +(12789, 'History of the United Netherlands, 1587c', 'Motley, John Lothrop', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/4853', 'en', 3372), +(12790, 'Happy and Gay Marching Away', 'Unknown', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11098', 'en', 859), +(12791, 'The Boy Scouts in Front of Warsaw; Or, In the Wake of War', 'Durston, George', '2004-06-01', 32, 'https://www.gutenberg.org/ebooks/5981', 'en', 146), +(12792, 'L\'amore che torna: romanzo', 'Verona, Guido da', '2012-01-30', 28, 'https://www.gutenberg.org/ebooks/38720', 'it', 1544), +(12793, 'Sächsisch Volk: Ausgewählte Skizzen', 'Barschdorff, Fritz', '2019-06-10', 13, 'https://www.gutenberg.org/ebooks/59717', 'de', 1212), +(12794, 'The Bells of San Juan', 'Gregory, Jackson', '2005-03-22', 32, 'https://www.gutenberg.org/ebooks/15438', 'en', 315), +(12795, 'French Dishes for American Tables', 'Caron, Pierre, active 1886-1899', '2014-04-08', 33, 'https://www.gutenberg.org/ebooks/45348', 'en', 6282), +(12796, 'The Apricot Tree', 'Unknown', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/10976', 'en', 6283), +(12797, 'Mexikon valloitus: Kappale Amerikan historiaa', 'Hagman, Tyko', '2011-10-16', 35, 'https://www.gutenberg.org/ebooks/37768', 'fi', 1382), +(12798, 'A Brief History of the U. S. S. Imperator, One of the Two Largest Ships in the U. S. Navy.', 'Anonymous', '2013-10-04', 4, 'https://www.gutenberg.org/ebooks/43883', 'en', 6284), +(12799, 'The Four Canadian Highwaymen; Or, The Robbers of Markham Swamp', 'Collins, J. E. (Joseph Edmund)', '2004-10-01', 8, 'https://www.gutenberg.org/ebooks/6738', 'en', 65), +(12800, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 12, July 10, 1858', NULL, '2017-06-02', 1, 'https://www.gutenberg.org/ebooks/54834', 'en', 1741), +(12801, 'Apologia Pro Vita Sua', 'Newman, John Henry', '2007-07-16', 32, 'https://www.gutenberg.org/ebooks/22088', 'en', 6263), +(12802, 'A New Century of Inventions\r\nBeing Designs & Descriptions of One Hundred Machines, Relating to Arts, Manufactures, & Domestic Life', 'White, James (Civil engineer)', '2013-06-15', 22, 'https://www.gutenberg.org/ebooks/42951', 'en', 6285), +(12803, 'The Electoral Votes of 1876\nWho Should Count Them, What Should Be Counted, and the Remedy for a Wrong Count', 'Field, David Dudley', '2009-07-19', 5, 'https://www.gutenberg.org/ebooks/29460', 'en', 6286), +(12804, 'Alice, or the Mysteries — Book 08', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 64, 'https://www.gutenberg.org/ebooks/9770', 'en', 137), +(12805, 'The Renaissance: Studies in Art and Poetry', 'Pater, Walter', '2000-11-01', 196, 'https://www.gutenberg.org/ebooks/2398', 'en', 3484), +(12806, 'The Song My Paddle Sings', 'Johnson, E. Pauline', '2007-12-01', 0, 'https://www.gutenberg.org/ebooks/23966', 'en', 28), +(12807, 'Borth Lyrics', 'Thring, Edward', '2015-03-10', 12, 'https://www.gutenberg.org/ebooks/48457', 'en', 6287), +(12808, 'The Cockaynes in Paris; Or, \'Gone abroad\'', 'Jerrold, Blanchard', '2006-05-06', 26, 'https://www.gutenberg.org/ebooks/18327', 'en', 2972), +(12809, 'Technic and Practice of Chiropractic', 'Loban, Joy Maxwell', '2017-01-18', 55, 'https://www.gutenberg.org/ebooks/54008', 'en', 6288), +(12810, 'Kirjava joukko: Novelleja', 'Etlar, Carit', '2008-08-25', 2, 'https://www.gutenberg.org/ebooks/26428', 'fi', 2631), +(12811, 'De Latino sine Flexione; Principio de Permanentia', 'Peano, Giuseppe', '2011-04-09', 42, 'https://www.gutenberg.org/ebooks/35803', 'la', 6289), +(12812, 'Proceedings of a board of general officers held by order of His Excellency Gen. Washington, commander in chief of the Army of the United States of America respecting Major John André, adjutant general of the British Army', NULL, '2015-08-03', 11, 'https://www.gutenberg.org/ebooks/49585', 'en', 6290), +(12813, 'Den Waaragtigen Omloop des Bloeds', 'Leeuwenhoek, Antoni van', '2006-07-28', 22, 'https://www.gutenberg.org/ebooks/18929', 'nl', 6291), +(12814, 'The Romantic Adventures of a Milkmaid', 'Hardy, Thomas', '2001-12-01', 47, 'https://www.gutenberg.org/ebooks/2996', 'en', 4084), +(12815, 'The Courting Of Lady Jane', 'Bacon, Josephine Daskam', '2007-11-06', 14, 'https://www.gutenberg.org/ebooks/23368', 'en', 6292), +(12816, 'Peter the Brazen: A Mystery Story of Modern China', 'Worts, George F. (George Frank)', '2009-05-12', 11, 'https://www.gutenberg.org/ebooks/28780', 'en', 6011), +(12817, 'Punch or the London Charivari, Vol. 147, December 16, 1914', 'Various', '2009-08-09', 11, 'https://www.gutenberg.org/ebooks/29652', 'en', 134), +(12818, 'Torpedo War, and Submarine Explosions', 'Fulton, Robert', '2016-04-13', 9, 'https://www.gutenberg.org/ebooks/51748', 'en', 6293), +(12819, 'Memoirs of Jean François Paul de Gondi, Cardinal de Retz — Volume 3', 'Retz, Jean François Paul de Gondi de', '2004-12-02', 2, 'https://www.gutenberg.org/ebooks/3844', 'en', 4144), +(12820, 'Veljekset\nRomaani', 'Järnefelt, Arvid', '2006-04-03', 25, 'https://www.gutenberg.org/ebooks/18115', 'fi', 456), +(12821, 'Kindness to Animals; Or, The Sin of Cruelty Exposed and Rebuked', 'Charlotte Elizabeth', '2006-03-10', 7, 'https://www.gutenberg.org/ebooks/17961', 'en', 5964), +(12822, 'Graded Poetry: Seventh Year', NULL, '2005-12-01', 35, 'https://www.gutenberg.org/ebooks/9542', 'en', 6294), +(12823, 'Döda fallet: En berättelse', 'Hallström, Per', '2015-04-08', 12, 'https://www.gutenberg.org/ebooks/48665', 'sv', 420), +(12824, 'Actes et Paroles, Volume 4: Depuis l\'Exil 1876-1885', 'Hugo, Victor', '2005-07-01', 30, 'https://www.gutenberg.org/ebooks/8490', 'fr', 920), +(12825, 'Original Short Stories — Volume 02', 'Maupassant, Guy de', '2004-10-03', 22, 'https://www.gutenberg.org/ebooks/3078', 'en', 1112), +(12826, 'A-B-C of Gardening', 'Rexford, Eben E. (Eben Eugene)', '2014-06-12', 48, 'https://www.gutenberg.org/ebooks/45946', 'en', 1413), +(12827, 'The Battle of Stone River', 'Kendall, Henry Myron', '2010-04-17', 16, 'https://www.gutenberg.org/ebooks/32028', 'en', 5228), +(12828, 'A Devotee: An Episode in the Life of a Butterfly', 'Cholmondeley, Mary', '2012-08-04', 11, 'https://www.gutenberg.org/ebooks/40408', 'en', 675), +(12829, 'Hygiene des Geschlechtslebens', 'Gruber, Max von', '2016-12-28', 20, 'https://www.gutenberg.org/ebooks/53823', 'de', 5472), +(12830, 'Lola Montez: An Adventuress of the \'Forties', 'D\'Auvergne, Edmund B. (Edmund Basil)', '2012-01-06', 21, 'https://www.gutenberg.org/ebooks/38512', 'en', 6295), +(12831, 'Social Life in England Through the Centuries', 'Hall, H. R. Wilton', '2014-02-13', 14, 'https://www.gutenberg.org/ebooks/44894', 'en', 226), +(12832, 'Autobiography', 'Mill, John Stuart', '2003-12-01', 191, 'https://www.gutenberg.org/ebooks/10378', 'en', 6296), +(12833, 'Jüdische Geschichten', 'Peretz, Isaac Loeb', '2011-06-21', 9, 'https://www.gutenberg.org/ebooks/36488', 'de', 61), +(12834, 'Sekunde durch Hirn: Ein unheimlich schnell rotierender Roman', 'Vischer, Melchior', '2010-06-14', 25, 'https://www.gutenberg.org/ebooks/32814', 'de', 6297), +(12835, 'Le littoral de la France, vol. 1: Côtes Normandes de Dunkerque au Mont Saint-Michel', 'Vattier d\'Ambroyse, Valentine', '2019-05-16', 13, 'https://www.gutenberg.org/ebooks/59525', 'fr', 6298), +(12836, 'Travels in the Far East', 'Peck, Ellen Mary Hayes', '2008-03-31', 8, 'https://www.gutenberg.org/ebooks/24971', 'en', 2589), +(12837, 'Seaside Studies in Natural History. Marine Animals of Massachusetts Bay. Radiates.', 'Agassiz, Elizabeth Cabot Cary', '2011-03-05', 19, 'https://www.gutenberg.org/ebooks/35490', 'en', 6299), +(12838, 'A Connecticut Yankee in King Arthur\'s Court, Part 4.', 'Twain, Mark', '2004-07-06', 5, 'https://www.gutenberg.org/ebooks/7245', 'en', 313), +(12839, 'Ad armi corte: Commedia in un atto', 'Bracco, Roberto', '2014-07-01', 13, 'https://www.gutenberg.org/ebooks/46162', 'it', 407), +(12840, 'The Lee Shore', 'Macaulay, Rose', '2005-08-28', 16, 'https://www.gutenberg.org/ebooks/16612', 'en', 61), +(12841, 'The Tenth Man: A Tragic Comedy in Three Acts', 'Maugham, W. Somerset (William Somerset)', '2015-09-09', 24, 'https://www.gutenberg.org/ebooks/49916', 'en', 6300), +(12842, 'One Thousand and One Initial Letters', 'Jones, Owen', '2007-08-29', 58, 'https://www.gutenberg.org/ebooks/22427', 'en', 6301), +(12843, 'La garçonne', 'Margueritte, V. (Victor)', '2015-09-19', 18, 'https://www.gutenberg.org/ebooks/50007', 'fr', 6302), +(12844, 'The County Regiment\r\nA Sketch of the Second Regiment of Connecticut Volunteer Heavy Artillery, Originally the Nineteenth Volunteer Infantry, in the Civil War', 'Vaill, Dudley Landon', '2009-02-02', 7, 'https://www.gutenberg.org/ebooks/27969', 'en', 1489), +(12845, 'John Marchmont\'s Legacy, Volumes 1-3', 'Braddon, M. E. (Mary Elizabeth)', '2010-12-01', 15, 'https://www.gutenberg.org/ebooks/34542', 'en', 6303), +(12846, 'The Lives of the Twelve Caesars, Volume 12: Domitian', 'Suetonius', '2004-12-13', 18, 'https://www.gutenberg.org/ebooks/6397', 'en', 6221), +(12847, 'The Historical Christ;\r\nOr, An investigation of the views of Mr. J. M. Robertson, Dr. A. Drews, and Prof. W. B. Smith', 'Conybeare, F. C. (Frederick Cornwallis)', '2017-09-18', 13, 'https://www.gutenberg.org/ebooks/55575', 'en', 6304), +(12848, 'Paul the Courageous', 'Quiller-Couch, Mabel', '2008-07-19', 5, 'https://www.gutenberg.org/ebooks/26087', 'en', 323), +(12849, 'Japan\nDe Aarde en haar Volken, 1867', 'Humbert, Aimé', '2010-01-20', 3, 'https://www.gutenberg.org/ebooks/31030', 'nl', 4331), +(12850, 'An Essay on True and Apparent Beauty in which from Settled Principles is Rendered the Grounds for Choosing and Rejecting Epigrams', 'Nicole, Pierre', '2009-05-22', 23, 'https://www.gutenberg.org/ebooks/28921', 'en', 6305), +(12851, 'Holbein', 'Bensusan, S. L. (Samuel Levy)', '2013-08-07', 12, 'https://www.gutenberg.org/ebooks/43410', 'en', 6306), +(12852, 'A Grandpa\'s Notebook\r\nIdeas, Models, Stories and Memoirs to Encourage Intergenerational Outreach and Communication', 'Moldeven, Meyer', '2001-07-01', 18, 'https://www.gutenberg.org/ebooks/2737', 'en', 1063), +(12853, 'Infelizes: Historias Vividas', 'Osório, Ana de Castro', '2008-11-04', 7, 'https://www.gutenberg.org/ebooks/27155', 'pt', 6307), +(12854, 'Missionary Survey As An Aid To Intelligent Co-Operation In Foreign Missions', 'Allen, Roland', '2004-09-03', 6, 'https://www.gutenberg.org/ebooks/13360', 'en', 6308), +(12855, 'Post-Prandial Philosophy', 'Allen, Grant', '2006-07-08', 22, 'https://www.gutenberg.org/ebooks/18788', 'en', 20), +(12856, 'Avonturen aan gene zijde van den Evenaar', 'Albrecht, K. von (Kurt)', '2018-05-28', 27, 'https://www.gutenberg.org/ebooks/57222', 'nl', 323), +(12857, 'Cape Cod and All the Pilgrim Land, June 1922, Volume 6, Number 4\nA Monthly Magazine Devoted to the Interests of Southeastern Massachusetts', 'Various', '2005-02-08', 35, 'https://www.gutenberg.org/ebooks/14979', 'en', 6309), +(12858, 'Campward Ho! A Manual for Girl Scout Camps', 'Girl Scouts of the United States of America', '2010-09-20', 38, 'https://www.gutenberg.org/ebooks/33767', 'en', 5166), +(12859, 'Lord Montagu\'s Page: An Historical Romance', 'James, G. P. R. (George Payne Rainsford)', '2012-07-22', 9, 'https://www.gutenberg.org/ebooks/40295', 'en', 2436), +(12860, 'The Great Civil War in Lancashire (1642-1651)', 'Broxap, Ernest', '2012-11-11', 22, 'https://www.gutenberg.org/ebooks/41347', 'en', 6310), +(12861, '蘭花夢奇傳', 'Yinmeishanren', '2008-05-26', 17, 'https://www.gutenberg.org/ebooks/25602', 'zh', 1003), +(12862, 'Stories by American Authors, Volume 5', NULL, '2004-03-01', 48, 'https://www.gutenberg.org/ebooks/11437', 'en', 1426), +(12863, 'Arachne — Volume 05', 'Ebers, Georg', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5512', 'en', 803), +(12864, 'Military Manners and Customs', 'Farrer, James Anson', '2014-01-09', 24, 'https://www.gutenberg.org/ebooks/44635', 'en', 6311), +(12865, 'Gallipoli', 'Masefield, John', '2016-12-07', 25, 'https://www.gutenberg.org/ebooks/53682', 'en', 1074), +(12866, 'If Winter Comes', 'Hutchinson, A. S. M. (Arthur Stuart-Menteth)', '2004-11-24', 40, 'https://www.gutenberg.org/ebooks/14145', 'en', 61), +(12867, 'Rhymes of the East and Re-collected Verses', 'Dum-Dum', '2007-01-15', 11, 'https://www.gutenberg.org/ebooks/20370', 'en', 1594), +(12868, 'A Grammar of the English Tongue', 'Johnson, Samuel', '2005-02-18', 169, 'https://www.gutenberg.org/ebooks/15097', 'en', 1979), +(12869, 'Witnesses to Truth', 'Hoare, Edward', '2016-08-08', 13, 'https://www.gutenberg.org/ebooks/52750', 'en', 6312), +(12870, 'Famous Prima Donnas', 'Strang, Lewis Clinton', '2011-05-24', 12, 'https://www.gutenberg.org/ebooks/36215', 'en', 6313), +(12871, 'The Two Brothers', 'Balzac, Honoré de', '2005-08-10', 33, 'https://www.gutenberg.org/ebooks/1380', 'en', 58), +(12872, 'Graham\'s Magazine, Vol. XXXI, No. 2, August 1847', 'Various', '2019-02-11', 4, 'https://www.gutenberg.org/ebooks/58864', 'en', 380), +(12873, 'On Strike Till 3', 'Balfour, Grant', '2010-08-27', 6, 'https://www.gutenberg.org/ebooks/33555', 'en', 8), +(12874, 'Alexandria: A History and a Guide', 'Forster, E. M. (Edward Morgan)', '2018-04-21', 81, 'https://www.gutenberg.org/ebooks/57010', 'en', 6314), +(12875, 'The Innocents: A Story for Lovers', 'Lewis, Sinclair', '2008-05-11', 45, 'https://www.gutenberg.org/ebooks/25430', 'en', 705), +(12876, 'The Appetite of Tyranny: Including Letters to an Old Garibaldian', 'Chesterton, G. K. (Gilbert Keith)', '2004-03-01', 38, 'https://www.gutenberg.org/ebooks/11605', 'en', 335), +(12877, 'Woodland Gleanings: Being an Account of British Forest-Trees', 'Tyas, Robert', '2012-10-25', 30, 'https://www.gutenberg.org/ebooks/41175', 'en', 6315), +(12878, 'A Gift For Terra', 'Holden, Fox B.', '2010-05-23', 32, 'https://www.gutenberg.org/ebooks/32487', 'en', 26), +(12879, 'The Queen-like Closet or Rich Cabinet\r\nStored with all manner of rare receipts for preserving, candying and cookery. Very pleasant and beneficial to all ingenious persons of the female sex', 'Woolley, Hannah', '2004-12-18', 57, 'https://www.gutenberg.org/ebooks/14377', 'en', 6316), +(12880, 'The Chase of the Golden Plate', 'Futrelle, Jacques', '2012-02-25', 24, 'https://www.gutenberg.org/ebooks/38981', 'en', 6317), +(12881, 'The Royal Exchange and the Palace of Industry; or, The Possible Future of Europe and the World', 'Binney, Thomas', '2018-10-08', 2, 'https://www.gutenberg.org/ebooks/58058', 'en', 6318), +(12882, 'Os sonetos completos de Anthero de Quental', 'Quental, Antero de', '2006-12-20', 43, 'https://www.gutenberg.org/ebooks/20142', 'pt', 1638), +(12883, 'A Shropshire Lad', 'Housman, A. E. (Alfred Edward)', '2004-05-01', 316, 'https://www.gutenberg.org/ebooks/5720', 'en', 6319), +(12884, 'Mémoire sur les avantages qu\'il y auroit à changer absolument la nourriture des gens de mer', 'La Coudraye, chevalier de', '2013-12-11', 7, 'https://www.gutenberg.org/ebooks/44407', 'fr', 6320), +(12885, 'Silent Struggles', 'Stephens, Ann S. (Ann Sophia)', '2011-05-03', 5, 'https://www.gutenberg.org/ebooks/36027', 'en', 61), +(12886, 'Brief History of English and American Literature', 'Beers, Henry A. (Henry Augustin)', '2007-04-15', 49, 'https://www.gutenberg.org/ebooks/21090', 'en', 6321), +(12887, 'Cyrano de Bergerac: An Heroic Comedy in Five Acts', 'Rostand, Edmond', '2013-01-30', 53, 'https://www.gutenberg.org/ebooks/41949', 'en', 6322), +(12888, 'The Lance of Kanana: A Story of Arabia', 'French, Harry W. (Harry Willard)', '2012-05-30', 20, 'https://www.gutenberg.org/ebooks/39853', 'en', 6323), +(12889, 'The Unbidden Guest', 'Hornung, E. W. (Ernest William)', '2016-07-11', 22, 'https://www.gutenberg.org/ebooks/52562', 'en', 792), +(12890, 'Große und kleine Welt', 'Balzac, Honoré de', '2005-09-01', 40, 'https://www.gutenberg.org/ebooks/8803', 'de', 2118), +(12891, 'The Arte of English Poesie', 'Puttenham, George', '2005-08-03', 91, 'https://www.gutenberg.org/ebooks/16420', 'en', 5878), +(12892, 'A Scena do Odio', 'Almada Negreiros, José de', '2007-09-16', 16, 'https://www.gutenberg.org/ebooks/22615', 'pt', 8), +(12893, 'We Can\'t Have Everything: A Novel', 'Hughes, Rupert', '2004-12-01', 52, 'https://www.gutenberg.org/ebooks/7077', 'en', 914), +(12894, 'La Belgique héroïque et martyre', 'Various', '2014-07-21', 9, 'https://www.gutenberg.org/ebooks/46350', 'fr', 4531), +(12895, 'A Country Sweetheart', 'Russell, Dora', '2014-11-04', 11, 'https://www.gutenberg.org/ebooks/47282', 'en', 61), +(12896, 'Told by the Death\'s Head: A Romantic Tale', 'Jókai, Mór', '2010-12-28', 36, 'https://www.gutenberg.org/ebooks/34770', 'en', 98), +(12897, 'Rousseau and Romanticism', 'Babbitt, Irving', '2015-10-16', 36, 'https://www.gutenberg.org/ebooks/50235', 'en', 6324), +(12898, 'The Strange Cases of Dr. Stanchon', 'Bacon, Josephine Daskam', '2010-02-06', 66, 'https://www.gutenberg.org/ebooks/31202', 'en', 112), +(12899, 'Afloat (Sur l\'eau)', 'Maupassant, Guy de', '2015-06-29', 47, 'https://www.gutenberg.org/ebooks/49318', 'en', 6325), +(12900, 'Eerik XIV ja Juhana III: I. Veljesviha\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-10-13', 10, 'https://www.gutenberg.org/ebooks/55747', 'fi', 2168), +(12901, 'Contes irrévérencieux', 'Silvestre, Armand', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/12080', 'fr', 179), +(12902, 'Mediaeval Socialism', 'Jarrett, Bede', '2006-10-04', 19, 'https://www.gutenberg.org/ebooks/19468', 'en', 6326), +(12903, 'The Art of Stage Dancing\nThe Story of a Beautiful and Profitable Profession', 'Wayburn, Ned', '2008-11-30', 90, 'https://www.gutenberg.org/ebooks/27367', 'en', 6327), +(12904, 'The Firm of Girdlestone', 'Doyle, Arthur Conan', '2004-08-10', 60, 'https://www.gutenberg.org/ebooks/13152', 'en', 6328), +(12905, 'The New England Country', 'Johnson, Clifton', '2017-05-10', 12, 'https://www.gutenberg.org/ebooks/54695', 'en', 4354), +(12906, 'How to Live a Holy Life', 'Orr, Charles Ebert', '2004-11-01', 37, 'https://www.gutenberg.org/ebooks/6999', 'en', 1130), +(12907, 'The Beaver, Vol. 1, No. 04, January 1921', NULL, '2013-09-02', 11, 'https://www.gutenberg.org/ebooks/43622', 'en', 6329), +(12908, 'The Heir of Redclyffe', 'Yonge, Charlotte M. (Charlotte Mary)', '2001-02-01', 64, 'https://www.gutenberg.org/ebooks/2505', 'en', 3092), +(12909, 'Adriana Zumarán (novela)', 'Leumann, Carlos Alberto', '2008-04-12', 16, 'https://www.gutenberg.org/ebooks/25054', 'es', 61), +(12910, 'Cyclopedia of Philosophy', 'Vaknin, Samuel', '2004-02-01', 51, 'https://www.gutenberg.org/ebooks/11261', 'en', 779), +(12911, 'Mafeking: A Diary of a Siege', 'Baillie, Frederick David', '2012-11-29', 24, 'https://www.gutenberg.org/ebooks/41511', 'en', 6330), +(12912, 'The Spirit of Japan', 'Tagore, Rabindranath', '2010-07-10', 60, 'https://www.gutenberg.org/ebooks/33131', 'en', 983), +(12913, 'Social-Democracy and Woman Suffrage\r\nA Paper Read by Clara Zetkin to the Conference of Women Belonging to the Social-Democratic Party Held at Mannheim, Before the Opening of the Annual Congress of the German Social-Democracy', 'Zetkin, Klara', '2018-07-10', 7, 'https://www.gutenberg.org/ebooks/57474', 'en', 6331), +(12914, 'Zionism and Anti-Semitism', 'Gottheil, Gustav', '2008-01-07', 40, 'https://www.gutenberg.org/ebooks/24186', 'en', 3997), +(12915, 'The Young Railroaders\r\nTales of Adventure and Ingenuity', 'Coombs, Francis Lovell', '2008-06-21', 28, 'https://www.gutenberg.org/ebooks/25868', 'en', 6332), +(12916, 'King of the Air; Or, To Morocco on an Aeroplane', 'Strang, Herbert', '2011-06-16', 17, 'https://www.gutenberg.org/ebooks/36443', 'en', 6333), +(12917, 'Friarswood Post Office', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-07-01', 53, 'https://www.gutenberg.org/ebooks/4296', 'en', 6334), +(12918, 'The Origin and Development of the Moral Ideas', 'Westermarck, Edward', '2016-05-19', 23, 'https://www.gutenberg.org/ebooks/52106', 'en', 6335), +(12919, 'Noël dans les pays étrangers', 'Chabot, Alphonse', '2005-01-17', 20, 'https://www.gutenberg.org/ebooks/14713', 'fr', 949), +(12920, 'Short Story Writing\nA Practical Treatise on the Art of The Short Story', 'Barrett, Charles Raymond', '2007-02-06', 122, 'https://www.gutenberg.org/ebooks/20526', 'en', 1961), +(12921, 'Chance in Chains: A Story of Monte Carlo', 'Thorne, Guy', '2011-10-02', 12, 'https://www.gutenberg.org/ebooks/37591', 'en', 6336), +(12922, 'Journals of Expeditions of Discovery into Central Australia and Overland from Adelaide to King George\'s Sound in the Years 1840-1: Sent By the Colonists of South Australia, with the Sanction and Support of the Government: Including an Account of the Manners and Customs of the Aborigines and the State of Their Relations with Europeans — Volume 01', 'Eyre, Edward John', '2004-10-02', 26, 'https://www.gutenberg.org/ebooks/5344', 'en', 2471), +(12923, 'The Making of Species', 'Dewar, Douglas', '2013-10-29', 12, 'https://www.gutenberg.org/ebooks/44063', 'en', 5893), +(12924, 'Latin Vulgate, Esther: Liber Esther', 'Anonymous', '1997-02-01', 57, 'https://www.gutenberg.org/ebooks/826', 'la', 4345), +(12925, 'A New Pocket Gopher (Thomomys) and A New Spiny Pocket Mouse (Liomys) from Michoacán, Mexico', 'Hall, E. Raymond (Eugene Raymond)', '2010-11-14', 7, 'https://www.gutenberg.org/ebooks/34314', 'en', 6337), +(12926, 'The Young Vigilantes: A Story of California Life in the Fifties', 'Drake, Samuel Adams', '2015-12-08', 10, 'https://www.gutenberg.org/ebooks/50651', 'en', 323), +(12927, 'Life of Adam Smith', 'Rae, John', '2005-12-02', 14, 'https://www.gutenberg.org/ebooks/17196', 'en', 6338), +(12928, 'Earths In Our Solar System Which Are Called Planets, and Earths In The Starry Heaven Their Inhabitants, And The Spirits And Angels There', 'Swedenborg, Emanuel', '2005-06-12', 58, 'https://www.gutenberg.org/ebooks/16044', 'en', 4863), +(12929, 'The Description of a New World, Called the Blazing-World', 'Newcastle, Margaret Cavendish, Duchess of', '2016-04-18', 141, 'https://www.gutenberg.org/ebooks/51783', 'en', 5147), +(12930, 'Schwartz: A History\nFrom \"Schwartz\" by David Christie Murray', 'Murray, David Christie', '2007-08-08', 13, 'https://www.gutenberg.org/ebooks/22271', 'en', 61), +(12931, 'Hetty\'s Strange History', 'Jackson, Helen Hunt', '2009-08-15', 8, 'https://www.gutenberg.org/ebooks/29699', 'en', 61), +(12932, 'Moody\'s Anecdotes And Illustrations\r\nRelated in his Revival Work by the Great Evangelist', 'Moody, Dwight Lyman', '2006-11-16', 39, 'https://www.gutenberg.org/ebooks/19830', 'en', 4927), +(12933, 'Egyptian Tales, Translated from the Papyri: Second series, XVIIIth to XIXth dynasty', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2005-02-01', 33, 'https://www.gutenberg.org/ebooks/7413', 'en', 6339), +(12934, 'Scraps of Biography\r\nTenth Book of the Faith-Promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints', 'Various', '2014-08-31', 22, 'https://www.gutenberg.org/ebooks/46734', 'en', 6340), +(12935, 'Buchanan\'s Journal of Man, September 1887\nVolume 1, Number 8', NULL, '2009-01-05', 9, 'https://www.gutenberg.org/ebooks/27703', 'en', 1974), +(12936, 'Notes and Queries, Index of Volume 1, November, 1849-May, 1850\r\nA Medium of Inter-Communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2004-09-27', 15, 'https://www.gutenberg.org/ebooks/13536', 'en', 198), +(12937, 'The Motor Routes of England: Western Section', 'Home, Gordon', '2013-07-18', 10, 'https://www.gutenberg.org/ebooks/43246', 'en', 776), +(12938, 'Tales and Sketches\r\nPart 3 from Volume V of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 25, 'https://www.gutenberg.org/ebooks/9589', 'en', 2645), +(12939, 'The Song Book of Quong Lee of Limehouse', 'Burke, Thomas', '2000-04-01', 16, 'https://www.gutenberg.org/ebooks/2161', 'en', 8), +(12940, 'Observations upon the Prophecies of Daniel, and the Apocalypse of St. John', 'Newton, Isaac', '2005-10-15', 169, 'https://www.gutenberg.org/ebooks/16878', 'en', 6219), +(12941, 'Recreations of Christopher North, Volume 1', 'Wilson, John', '2010-03-16', 7, 'https://www.gutenberg.org/ebooks/31666', 'en', 20), +(12942, 'Stories of the Lifeboat', 'Mundell, Frank', '2013-03-23', 97, 'https://www.gutenberg.org/ebooks/42394', 'en', 6341), +(12943, 'Garryowen', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-08-10', 6, 'https://www.gutenberg.org/ebooks/55323', 'en', 4835), +(12944, 'Un Misanthrope à la Cour de Louis XIV: Montausier, sa vie et son temps', 'Roux, Amédée', '2013-09-30', 9, 'https://www.gutenberg.org/ebooks/43848', 'fr', 1247), +(12945, 'Count Ulrich of Lindburg: A Tale of the Reformation in Germany', 'Kingston, William Henry Giles', '2007-10-25', 15, 'https://www.gutenberg.org/ebooks/23191', 'en', 6342), +(12946, 'The Homesteaders: A Novel of the Canadian West', 'Stead, Robert J. C.', '2009-04-20', 26, 'https://www.gutenberg.org/ebooks/28579', 'en', 6343), +(12947, 'Kulissien takana', 'Janson, Kristofer', '2015-11-15', 20, 'https://www.gutenberg.org/ebooks/50463', 'fi', 6344), +(12948, 'Za narodov blagor: Komedija v štirih dejanjih', 'Cankar, Ivan', '2010-10-24', 27, 'https://www.gutenberg.org/ebooks/34126', 'sl', 402), +(12949, 'Pelham — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 24, 'https://www.gutenberg.org/ebooks/7621', 'en', 137), +(12950, 'A Catalogue of Books and Announcements of Methuen and Company, October 1902', 'Methuen & Co.', '2014-08-04', 8, 'https://www.gutenberg.org/ebooks/46506', 'en', 6345), +(12951, 'The Power of Faith\nExemplified In The Life And Writings Of The Late Mrs. Isabella Graham.', 'Graham, Isabella', '2005-07-12', 13, 'https://www.gutenberg.org/ebooks/16276', 'en', 6346), +(12952, 'The Book of the Cat', NULL, '2007-07-10', 30, 'https://www.gutenberg.org/ebooks/22043', 'en', 1430), +(12953, 'Mary Queen of Scots in History', 'Campbell, C. A.', '2013-07-01', 31, 'https://www.gutenberg.org/ebooks/43074', 'en', 6347), +(12954, 'Tea-Table Talk', 'Jerome, Jerome K. (Jerome Klapka)', '2000-10-01', 68, 'https://www.gutenberg.org/ebooks/2353', 'en', 2688), +(12955, 'The Exploits of Juve\nBeing the Second of the Series of the \"Fantômas\" Detective Tales', 'Allain, Marcel', '2009-12-02', 41, 'https://www.gutenberg.org/ebooks/30586', 'en', 6348), +(12956, 'A Manual of Moral Philosophy', 'Peabody, Andrew P. (Andrew Preston)', '2008-12-14', 7, 'https://www.gutenberg.org/ebooks/27531', 'en', 680), +(12957, 'The Aeneid', 'Virgil', '1995-03-01', 943, 'https://www.gutenberg.org/ebooks/228', 'en', 514), +(12958, 'L\'homme à l\'oreille cassée', 'About, Edmond', '2004-10-11', 73, 'https://www.gutenberg.org/ebooks/13704', 'fr', 26), +(12959, 'Dix-sept histoires de marins', 'Farrère, Claude', '2017-07-14', 21, 'https://www.gutenberg.org/ebooks/55111', 'fr', 259), +(12960, 'Hanna', 'Runeberg, Johan Ludvig', '2005-08-01', 3, 'https://www.gutenberg.org/ebooks/8669', 'fi', 8), +(12961, 'Cy Whittaker\'s Place', 'Lincoln, Joseph Crosby', '2006-06-03', 19, 'https://www.gutenberg.org/ebooks/3281', 'en', 6349), +(12962, 'The Atlantic Monthly, Volume 16, No. 93, July, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2010-02-28', 17, 'https://www.gutenberg.org/ebooks/31454', 'en', 1227), +(12963, 'The Duck-footed Hound', 'Kjelgaard, Jim', '2012-12-28', 22, 'https://www.gutenberg.org/ebooks/41723', 'en', 766), +(12964, 'Picturesque World\'s Fair, Vol. I, No. 1, Feb. 10, 1894\nAn Elaborate Collection of Colored Views . . . Comprising Illustrations of the Greatest Features of the World\'s Columbian Exposition and Midway Plaisance: Architectural, Artistic, Historical, Scenic and Ethnological', 'Anonymous', '2012-05-06', 22, 'https://www.gutenberg.org/ebooks/39639', 'en', 6350), +(12965, 'Bell\'s Cathedrals: The Cathedral Church of Saint Paul\r\nAn Account of the Old and New Buildings with a Short Historical Sketch', 'Dimock, Arthur', '2008-04-30', 17, 'https://www.gutenberg.org/ebooks/25266', 'en', 3240), +(12966, 'La vita Italiana nel Cinquecento: Conferenze tenute a Firenze nel 1893', 'Various', '2018-03-20', 79, 'https://www.gutenberg.org/ebooks/56794', 'it', 5931), +(12967, 'Minnie\'s Sacrifice', 'Harper, Frances Ellen Watkins', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11053', 'en', 1958), +(12968, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War — Complete (1614-23)', 'Motley, John Lothrop', '2004-11-09', 11, 'https://www.gutenberg.org/ebooks/4898', 'en', 4328), +(12969, 'Clair de Lune\r\nFrom Suite Bergamasque', NULL, '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/10181', 'en', 6351), +(12970, 'Through Unknown Tibet', 'Wellby, M. S. (Montagu Sinclair)', '2018-08-06', 14, 'https://www.gutenberg.org/ebooks/57646', 'en', 3800), +(12971, 'Russian Life To-day', 'Bury, Herbert, Bp.', '2010-07-31', 34, 'https://www.gutenberg.org/ebooks/33303', 'en', 6352), +(12972, 'Der ewige Mensch: Drama in Christo', 'Brust, Alfred', '2016-06-15', 9, 'https://www.gutenberg.org/ebooks/52334', 'de', 3978), +(12973, 'Drifting', 'Read, Thomas Buchanan', '2014-04-14', 4, 'https://www.gutenberg.org/ebooks/45383', 'en', 8), +(12974, 'A House Party with the Tucker Twins', 'Speed, Nell', '2011-07-09', 56, 'https://www.gutenberg.org/ebooks/36671', 'en', 6353), +(12975, 'Corpus of a Siam Mosquito', 'Sills, Steven David Justin', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/5176', 'en', 61), +(12976, 'Kurze Aufsätze', 'Kolb, Annette', '2013-11-21', 10, 'https://www.gutenberg.org/ebooks/44251', 'de', 6354), +(12977, 'Memories: A Story of German Love', 'Müller, F. Max (Friedrich Max)', '2004-12-29', 23, 'https://www.gutenberg.org/ebooks/14521', 'en', 6355), +(12978, 'Other Main-Travelled Roads', 'Garland, Hamlin', '2007-03-01', 28, 'https://www.gutenberg.org/ebooks/20714', 'en', 3196), +(12979, 'Les casseurs de bois', 'Corday, Michel', '2014-06-15', 20, 'https://www.gutenberg.org/ebooks/45979', 'fr', 61), +(12980, 'Lehtori Hellmanin vaimo', 'Canth, Minna', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11295', 'fi', 61), +(12981, 'Patty\'s Pleasure Trip', 'Wells, Carolyn', '2018-02-12', 18, 'https://www.gutenberg.org/ebooks/56552', 'en', 2486), +(12982, 'Company K, Twentieth Regiment, Illinois Volunteer Infantry\r\nRoster and Record, April 24, 1861-July 16, 1865', 'Brown, Andrew', '2010-04-17', 11, 'https://www.gutenberg.org/ebooks/32017', 'en', 6356), +(12983, 'La Grande Breteche', 'Balzac, Honoré de', '1999-04-01', 32, 'https://www.gutenberg.org/ebooks/1710', 'en', 58), +(12984, 'Plato and the Other Companions of Sokrates, 3rd ed. Volume 3', 'Grote, George', '2012-08-07', 38, 'https://www.gutenberg.org/ebooks/40437', 'en', 2286), +(12985, 'Four Years in the Underbrush: Adventures as a Working Woman in New York', 'Anonymous', '2018-07-10', 18, 'https://www.gutenberg.org/ebooks/57480', 'en', 6357), +(12986, 'Free from School', 'Alvares, Rahul', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10347', 'en', 6358), +(12987, 'Einführung in die moderne Logik. Erster Teil.', 'Uphues, Goswin', '2008-01-05', 24, 'https://www.gutenberg.org/ebooks/24172', 'de', 4797), +(12988, 'Götz von Berlichingen\nRautakoura. Näytelmä', 'Goethe, Johann Wolfgang von', '2014-03-15', 16, 'https://www.gutenberg.org/ebooks/45145', 'fi', 6359), +(12989, 'The Golden Bowl — Volume 1', 'James, Henry', '2003-07-01', 20, 'https://www.gutenberg.org/ebooks/4262', 'en', 6360), +(12990, 'Style in Singing', 'Haslam, W. E.', '2007-05-09', 34, 'https://www.gutenberg.org/ebooks/21400', 'en', 5276), +(12991, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 4)', 'Guizot, François', '2005-04-16', 18, 'https://www.gutenberg.org/ebooks/15635', 'fr', 6361), +(12992, 'The Poems of Leopardi', 'Leopardi, Giacomo', '2016-09-09', 24, 'https://www.gutenberg.org/ebooks/53020', 'en', 6362), +(12993, 'Psychical Miscellanea\r\nBeing Papers on Psychical Research, Telepathy, Hypnotism, Christian Science, etc.', 'Hill, J. Arthur (John Arthur)', '2011-09-29', 31, 'https://www.gutenberg.org/ebooks/37565', 'en', 6363), +(12994, 'Appletons\' Popular Science Monthly, January 1899\nVolume LIV, No. 3, January 1899', 'Various', '2013-11-02', 16, 'https://www.gutenberg.org/ebooks/44097', 'en', 210), +(12995, 'Safar Nameh, Persian Pictures: A Book Of Travel', 'Bell, Gertrude Lowthian', '2014-12-09', 39, 'https://www.gutenberg.org/ebooks/47612', 'en', 4925), +(12996, 'The Atomic Bombings of Hiroshima and Nagasaki', 'United States. Army. Corps of Engineers. Manhattan District', '2004-09-01', 9, 'https://www.gutenberg.org/ebooks/6535', 'en', 6364), +(12997, 'Daughter of the Sun\nA Tale of Adventure', 'Gregory, Jackson', '2006-07-27', 24, 'https://www.gutenberg.org/ebooks/18916', 'en', 580), +(12998, 'Miss Mehetabel\'s Son', 'Aldrich, Thomas Bailey', '2007-11-06', 17, 'https://www.gutenberg.org/ebooks/23357', 'en', 770), +(12999, 'Mother Stories from the Old Testament\r\nA Book of the Best Stories from the Old Testament that Mothers can tell their Children', 'Anonymous', '2005-11-26', 62, 'https://www.gutenberg.org/ebooks/17162', 'en', 4241), +(13000, 'Other Fools and Their Doings, or, Life among the Freedmen', 'Goff, H. N. K. (Harriet Newell Kneeland)', '2016-04-17', 6, 'https://www.gutenberg.org/ebooks/51777', 'en', 1958), +(13001, 'An American Suffragette', 'Stevens, Isaac Newton', '2007-08-09', 22, 'https://www.gutenberg.org/ebooks/22285', 'en', 6365), +(13002, 'A Letter to American Workingmen, from the Socialist Soviet Republic of Russia', 'Lenin, Vladimir Il\'ich', '2011-02-10', 66, 'https://www.gutenberg.org/ebooks/35232', 'en', 2061), +(13003, 'Lucien Leuwen; ou, l\'Amarante et le Noir. Tome Premier', 'Stendhal', '2019-08-01', 294, 'https://www.gutenberg.org/ebooks/60030', 'fr', 6366), +(13004, 'Kirjeitä myllyltäni', 'Daudet, Alphonse', '2017-02-19', 8, 'https://www.gutenberg.org/ebooks/54205', 'fi', 4), +(13005, 'Men of the Bible', 'Moody, Dwight Lyman', '2009-12-22', 21, 'https://www.gutenberg.org/ebooks/30740', 'en', 6367), +(13006, 'The Master of Mrs. Chilvers: An Improbable Comedy', 'Jerome, Jerome K. (Jerome Klapka)', '2000-05-01', 28, 'https://www.gutenberg.org/ebooks/2195', 'en', 115), +(13007, 'Homo Inferior', 'Wolf, Mari', '2010-03-18', 29, 'https://www.gutenberg.org/ebooks/31692', 'en', 4350), +(13008, 'Life\'s Little Ironies\r\nA set of tales with some colloquial sketches entitled A Few Crusted Characters', 'Hardy, Thomas', '2002-01-01', 87, 'https://www.gutenberg.org/ebooks/3047', 'en', 409), +(13009, 'The Hart and the Water-Brooks: a practical exposition of the forty-second Psalm.', 'Macduff, John R. (John Ross)', '2013-03-18', 19, 'https://www.gutenberg.org/ebooks/42360', 'en', 6368), +(13010, 'Suomen herännäisyyden historia XIX:llä vuosisadalla III. 1845-1852', 'Rosendal, Mauno', '2015-08-26', 10, 'https://www.gutenberg.org/ebooks/49788', 'fi', 3204), +(13011, 'The Travels of Marco Polo — Volume 2', 'Rustichello of Pisa', '2004-05-01', 142, 'https://www.gutenberg.org/ebooks/12410', 'en', 6369), +(13012, 'The Boy Scout Automobilists; Or, Jack Danby in the Woods', 'Maitland, Robert', '2008-08-15', 17, 'https://www.gutenberg.org/ebooks/26625', 'en', 6370), +(13013, 'The Man Who Stole A Meeting-House\n1878, From \"Coupon Bonds\"', 'Trowbridge, J. T. (John Townsend)', '2007-10-24', 6, 'https://www.gutenberg.org/ebooks/23165', 'en', 179), +(13014, 'The Practice and Theory of Bolshevism', 'Russell, Bertrand', '2005-12-19', 181, 'https://www.gutenberg.org/ebooks/17350', 'en', 6371), +(13015, 'Back to Life', 'Gibbs, Philip', '2015-11-19', 40, 'https://www.gutenberg.org/ebooks/50497', 'en', 579), +(13016, 'Unaddressed Letters', NULL, '2014-11-22', 39, 'https://www.gutenberg.org/ebooks/47420', 'en', 6372), +(13017, 'St. Patrick\'s Day; Or, The Scheming Lieutenant: A Farce in One Act', 'Sheridan, Richard Brinsley', '2004-10-01', 31, 'https://www.gutenberg.org/ebooks/6707', 'en', 3619), +(13018, 'The Mad Lover, a Tragi-Comedy\r\nThe Works of Francis Beaumont and John Fletcher (3 of 10)', 'Fletcher, John', '2011-01-18', 14, 'https://www.gutenberg.org/ebooks/35000', 'en', 1088), +(13019, 'The Sweeper of Loray', 'Sheckley, Robert', '2016-03-24', 45, 'https://www.gutenberg.org/ebooks/51545', 'en', 67), +(13020, 'History of the World War, Vol. 3', 'March, Francis Andrew', '2005-07-13', 19, 'https://www.gutenberg.org/ebooks/16282', 'en', 335), +(13021, 'Devota', 'Evans, Augusta J. (Augusta Jane)', '2013-07-02', 8, 'https://www.gutenberg.org/ebooks/43080', 'en', 61), +(13022, 'Fair Italy, the Riviera and Monte Carlo\r\nComprising a Tour Through North and South Italy and Sicily with a Short Account of Malta', 'Devereux, W. Cope', '2007-12-21', 19, 'https://www.gutenberg.org/ebooks/23959', 'en', 6373), +(13023, 'A \"Bawl\" for American Cricket', 'Wister, Jones', '2015-03-12', 5, 'https://www.gutenberg.org/ebooks/48468', 'en', 2802), +(13024, 'Silver and Gold: A Story of Luck and Love in a Western Mining Camp', 'Coolidge, Dane', '2009-12-02', 13, 'https://www.gutenberg.org/ebooks/30572', 'en', 6374), +(13025, 'Crittenden: A Kentucky Story of Love and War', 'Fox, John, Jr.', '2006-05-05', 11, 'https://www.gutenberg.org/ebooks/18318', 'en', 1996), +(13026, 'The Seaside Sibyl; Or Leaves of Destiny: A Fortune Teller in Verse', 'Anonymous', '2017-01-21', 7, 'https://www.gutenberg.org/ebooks/54037', 'en', 5750), +(13027, 'Poems', 'MacCarthy, Denis Florence', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12622', 'en', 8), +(13028, 'A Sheaf of Corn', 'Mann, Mary E.', '2008-08-24', 11, 'https://www.gutenberg.org/ebooks/26417', 'en', 1902), +(13029, 'The Complete Works of Artemus Ward — Part 5: The London Punch Letters', 'Ward, Artemus', '2002-06-01', 22, 'https://www.gutenberg.org/ebooks/3275', 'en', 190), +(13030, 'The Mormon Battalion, Its History and Achievements', 'Roberts, B. H. (Brigham Henry)', '2013-02-21', 21, 'https://www.gutenberg.org/ebooks/42152', 'en', 6375), +(13031, 'Elsie at Viamede', 'Finley, Martha', '2010-05-02', 34, 'https://www.gutenberg.org/ebooks/32225', 'en', 470); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(13032, 'In Nesting Time', 'Miller, Olive Thorne', '2008-05-02', 10, 'https://www.gutenberg.org/ebooks/25292', 'en', 318), +(13033, 'De drie steden: Lourdes', 'Zola, Émile', '2018-03-16', 17, 'https://www.gutenberg.org/ebooks/56760', 'nl', 55), +(13034, 'Prelude in C Sharp Minor, Op. 3', NULL, '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10175', 'en', 6376), +(13035, 'The Common Sense of Socialism\nA Series of Letters Addressed to Jonathan Edwards, of Pittsburg', 'Spargo, John', '2008-01-17', 39, 'https://www.gutenberg.org/ebooks/24340', 'en', 254), +(13036, 'Julius Caesar', 'Shakespeare, William', '1998-11-01', 318, 'https://www.gutenberg.org/ebooks/1522', 'en', 6377), +(13037, 'The Motor Boat Club at Nantucket; or, The Mystery of the Dunstan Heir', 'Hancock, H. Irving (Harrie Irving)', '2012-08-28', 61, 'https://www.gutenberg.org/ebooks/40605', 'en', 2722), +(13038, 'Fame and Fortune; or, The Progress of Richard Hunter', 'Alger, Horatio, Jr.', '2007-05-28', 79, 'https://www.gutenberg.org/ebooks/21632', 'en', 6378), +(13039, 'Abbr.', 'Riley, Frank', '2019-06-11', 119, 'https://www.gutenberg.org/ebooks/59728', 'en', 26), +(13040, 'The Cyder-Maker\'s Instructor, Sweet-Maker\'s Assistant, and Victualler\'s and Housekeeper\'s Director\nIn Three Parts', 'Chapman, Thomas', '2005-03-18', 40, 'https://www.gutenberg.org/ebooks/15407', 'en', 649), +(13041, 'All About Dogs: A Book for Doggy People', 'Lane, Charles Henry', '2014-04-14', 25, 'https://www.gutenberg.org/ebooks/45377', 'en', 1636), +(13042, 'Mates at Billabong', 'Bruce, Mary Grant', '2003-05-01', 20, 'https://www.gutenberg.org/ebooks/4050', 'en', 3621), +(13043, 'National Rhymes of the Nursery', 'Various', '2011-07-10', 11, 'https://www.gutenberg.org/ebooks/36685', 'en', 343), +(13044, 'The Old English Baron: a Gothic Story', 'Reeve, Clara', '2004-02-01', 68, 'https://www.gutenberg.org/ebooks/5182', 'en', 95), +(13045, 'The Romance of Zion Chapel [3d ed.]', 'Le Gallienne, Richard', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/10949', 'en', 847), +(13046, 'Côrte na aldeia e noites de inverno (Volume I)', 'Lobo, Francisco Rodrigues', '2011-10-14', 16, 'https://www.gutenberg.org/ebooks/37757', 'pt', 6379), +(13047, 'Eclectic Magazine of Foreign Literature, Science, and Art, April 1885', 'Various', '2016-10-05', 5, 'https://www.gutenberg.org/ebooks/53212', 'en', 883), +(13048, 'Tales from \"Blackwood,\" Volume 4', 'Various', '2011-03-03', 13, 'https://www.gutenberg.org/ebooks/35464', 'en', 179), +(13049, 'Cuentos Clásicos del Norte, Primera Serie', 'Poe, Edgar Allan', '2014-07-05', 83, 'https://www.gutenberg.org/ebooks/46196', 'es', 6380), +(13050, 'Spoken For', 'Samachson, Joseph', '2016-02-03', 33, 'https://www.gutenberg.org/ebooks/51121', 'en', 26), +(13051, 'Le Démon de l\'Absurde', 'Rachilde', '2015-04-30', 17, 'https://www.gutenberg.org/ebooks/48830', 'fr', 100), +(13052, 'A Pair of Clogs', 'Walton, Amy', '2007-11-15', 17, 'https://www.gutenberg.org/ebooks/23501', 'en', 195), +(13053, 'Le positivisme anglais: Etude sur Stuart Mill', 'Taine, Hippolyte', '2006-02-09', 16, 'https://www.gutenberg.org/ebooks/17734', 'fr', 4103), +(13054, 'Stories about General Warren, in relation to the fifth of March massacre, and the battle of Bunker Hill', 'Brown, Rebecca Warren', '2014-10-05', 11, 'https://www.gutenberg.org/ebooks/47044', 'en', 1433), +(13055, 'Life Is a Dream', 'Calderón de la Barca, Pedro', '2004-08-01', 82, 'https://www.gutenberg.org/ebooks/6363', 'en', 402), +(13056, 'Œuvres complètes de François Villon\r\nSuivies d\'un choix des poésies de ses disciples', 'Villon, François', '2004-05-01', 62, 'https://www.gutenberg.org/ebooks/12246', 'fr', 8), +(13057, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 7', 'Various', '2017-09-19', 20, 'https://www.gutenberg.org/ebooks/55581', 'en', 6381), +(13058, 'The Metamorphoses of Ovid, Books VIII-XV', 'Ovid', '2008-07-16', 161, 'https://www.gutenberg.org/ebooks/26073', 'en', 6382), +(13059, 'Second Shetland Truck System Report', 'Guthrie, William', '2003-01-01', 14, 'https://www.gutenberg.org/ebooks/3611', 'en', 6383), +(13060, 'Solid Geometry with Problems and Applications (Revised edition)', 'Slaught, H. E. (Herbert Ellsworth)', '2009-08-26', 112, 'https://www.gutenberg.org/ebooks/29807', 'en', 6384), +(13061, 'Yonder', 'Young, E. H. (Emily Hilda)', '2013-04-14', 13, 'https://www.gutenberg.org/ebooks/42536', 'en', 61), +(13062, 'Graham\'s Magazine Vol XXXIII No. 4 October 1848', 'Various', '2009-09-28', 10, 'https://www.gutenberg.org/ebooks/30116', 'en', 162), +(13063, 'Spanish Arms and Armour\r\nBeing a Historical and Descriptive Account of the Royal Armoury of Madrid', 'Calvert, Albert Frederick', '2015-01-05', 18, 'https://www.gutenberg.org/ebooks/47878', 'en', 6385), +(13064, 'Beyond the Hills of Dream', 'Campbell, Wilfred', '2017-03-28', 9, 'https://www.gutenberg.org/ebooks/54453', 'en', 1237), +(13065, 'Elämän meri', 'Järnefelt, Arvid', '2004-09-07', 32, 'https://www.gutenberg.org/ebooks/13394', 'fi', 665), +(13066, 'A Rogue by Compulsion\r\nAn Affair of the Secret Service', 'Bridges, Victor', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/10511', 'en', 1319), +(13067, 'Beyond the Marshes', 'Connor, Ralph', '2008-03-01', 7, 'https://www.gutenberg.org/ebooks/24724', 'en', 65), +(13068, 'The Seven-Branched Candlestick: The Schooldays of Young American Jew', 'Gabriel, Gilbert W. (Gilbert Wolf)', '2010-09-22', 8, 'https://www.gutenberg.org/ebooks/33793', 'en', 5517), +(13069, 'The Journal of a Voyage to Lisbon', 'Fielding, Henry', '1997-12-01', 35, 'https://www.gutenberg.org/ebooks/1146', 'en', 6386), +(13070, 'Zwei offene Briefe an Dr. J. Spaeth, Professor der Geburtshilfe an der k. k. Josefs-Akademie in Wien, und an Hofrath Dr. F. W. Scanzoni, Professor der Geburtshilfe zu Würzburg', 'Semmelweis, Ignác Fülöp', '2012-07-16', 8, 'https://www.gutenberg.org/ebooks/40261', 'de', 6387), +(13071, 'Earthsmith', 'Marlowe, Stephen', '2010-06-01', 21, 'https://www.gutenberg.org/ebooks/32641', 'en', 26), +(13072, 'American Indian Ways of Life: An Interpretation of the Archaeology of Illinois and Adjoining Areas', 'Deuel, Thorne', '2018-01-04', 10, 'https://www.gutenberg.org/ebooks/56304', 'en', 6388), +(13073, 'The Little Red Foot', 'Chambers, Robert W. (Robert William)', '2011-09-07', 14, 'https://www.gutenberg.org/ebooks/37333', 'en', 4570), +(13074, 'A Dangerous Flirtation; Or, Did Ida May Sin?', 'Libbey, Laura Jean', '2016-12-06', 11, 'https://www.gutenberg.org/ebooks/53676', 'en', 61), +(13075, 'David Lannarck, Midget\nAn Adventure Story', 'Harney, George S.', '2007-01-16', 16, 'https://www.gutenberg.org/ebooks/20384', 'en', 323), +(13076, 'Travels through the South of France and the Interior of Provinces of Provence and Languedoc in the Years 1807 and 1808', 'Pinkney, lieutenant-colonel (Ninian)', '2007-04-30', 6, 'https://www.gutenberg.org/ebooks/21256', 'en', 1117), +(13077, 'Your United States: Impressions of a first visit', 'Bennett, Arnold', '2005-02-15', 28, 'https://www.gutenberg.org/ebooks/15063', 'en', 6389), +(13078, 'Aspazio: Tragedio en Kvin Aktoj', 'Świętochowski, Aleksander', '2014-05-21', 10, 'https://www.gutenberg.org/ebooks/45713', 'eo', 402), +(13079, 'Evan Harrington — Complete', 'Meredith, George', '2004-11-03', 17, 'https://www.gutenberg.org/ebooks/4434', 'en', 137), +(13080, 'Two Burlesques of Lord Chesterfield\'s Letters.\nThe Graces (1774), The Fine Gentleman\'s Etiquette (1776)', NULL, '2011-11-27', 12, 'https://www.gutenberg.org/ebooks/38149', 'en', 6390), +(13081, 'The Mysteries and Miseries of San Francisco\r\nShowing up all the various characters and notabilities, (both in high and low life) that have figured in San Franciso since its settlement.', 'A Californian', '2019-02-14', 10, 'https://www.gutenberg.org/ebooks/58890', 'en', 6391), +(13082, 'Vendetta', 'Balzac, Honoré de', '2005-10-28', 51, 'https://www.gutenberg.org/ebooks/1374', 'en', 58), +(13083, 'Margaret Capel: A Novel, vol. 2 of 3', 'Wallace, Ellen', '2012-06-22', 13, 'https://www.gutenberg.org/ebooks/40053', 'en', 137), +(13084, 'Betty\'s Bright Idea; Deacon Pitkin\'s Farm; and the First Christmas of New England', 'Stowe, Harriet Beecher', '2004-01-01', 43, 'https://www.gutenberg.org/ebooks/10723', 'en', 13), +(13085, 'The Crystal Hunters: A Boy\'s Adventures in the Higher Alps', 'Fenn, George Manville', '2008-02-04', 13, 'https://www.gutenberg.org/ebooks/24516', 'en', 1096), +(13086, 'Die altindische Säule: Ein Beitrag zur Säulenkunde', 'Sohrmann, Hans', '2017-12-06', 6, 'https://www.gutenberg.org/ebooks/56136', 'de', 6392), +(13087, 'The Daughters of Danaus', 'Caird, Mona', '2007-06-18', 23, 'https://www.gutenberg.org/ebooks/21858', 'en', 61), +(13088, 'The Great Strike on the \"Q\"', 'Hall, John A.', '2012-10-25', 36, 'https://www.gutenberg.org/ebooks/41181', 'en', 617), +(13089, 'Virgilio nel Medio Evo, vol. I', 'Comparetti, Domenico', '2019-07-18', 50, 'https://www.gutenberg.org/ebooks/59942', 'it', 6393), +(13090, 'The Buttoned Sky', 'Krepps, Robert W.', '2010-05-21', 23, 'https://www.gutenberg.org/ebooks/32473', 'en', 26), +(13091, 'Karl Marx en zijne voorgangers', 'Loopuit, Jos.', '2012-02-24', 6, 'https://www.gutenberg.org/ebooks/38975', 'nl', 6394), +(13092, 'The American Missionary — Volume 42, No. 12, December, 1888', 'Various', '2004-12-20', 22, 'https://www.gutenberg.org/ebooks/14383', 'en', 562), +(13093, 'Haaveilija', 'Hamsun, Knut', '2016-11-04', 17, 'https://www.gutenberg.org/ebooks/53444', 'fi', 7), +(13094, 'Humpback Whales in Glacier Bay National Monument, Alaska', 'United States. Marine Mammal Commission', '2011-08-15', 13, 'https://www.gutenberg.org/ebooks/37101', 'en', 6395), +(13095, 'Home Again with Me', 'Riley, James Whitcomb', '2014-04-28', 6, 'https://www.gutenberg.org/ebooks/45521', 'en', 6396), +(13096, 'It Is Never Too Late to Mend', 'Reade, Charles', '2003-11-01', 45, 'https://www.gutenberg.org/ebooks/4606', 'en', 6397), +(13097, 'A Middy in Command: A Tale of the Slave Squadron', 'Collingwood, Harry', '2007-04-13', 14, 'https://www.gutenberg.org/ebooks/21064', 'en', 1447), +(13098, 'Czech Folk Tales', NULL, '2016-07-17', 22, 'https://www.gutenberg.org/ebooks/52596', 'en', 6398), +(13099, 'The Biography of Robert Murray M\'Cheyne', 'Bonar, Andrew A. (Andrew Alexander)', '2005-03-04', 64, 'https://www.gutenberg.org/ebooks/15251', 'en', 6399), +(13100, 'La chanson des vieux époux', 'Loti, Pierre', '2016-02-27', 13, 'https://www.gutenberg.org/ebooks/51313', 'fr', 1463), +(13101, 'Reel Life Films', 'Merwin, Sam', '2009-06-23', 27, 'https://www.gutenberg.org/ebooks/29209', 'en', 179), +(13102, 'Venetian Life', 'Howells, William Dean', '2004-12-01', 44, 'https://www.gutenberg.org/ebooks/7083', 'en', 6400), +(13103, 'Las inquietudes de Shanti Andia', 'Baroja, Pío', '2004-07-08', 49, 'https://www.gutenberg.org/ebooks/12848', 'es', 1391), +(13104, 'Risto Rytkönen', 'Aurén, Petter Wilhelm', '2011-03-22', 13, 'https://www.gutenberg.org/ebooks/35656', 'fi', 61), +(13105, 'Gli eretici d\'Italia, vol. I', 'Cantù, Cesare', '2014-11-03', 27, 'https://www.gutenberg.org/ebooks/47276', 'it', 4265), +(13106, 'Athens: Its Rise and Fall, Book I', 'Lytton, Edward Bulwer Lytton, Baron', '2006-10-20', 12, 'https://www.gutenberg.org/ebooks/6151', 'en', 6138), +(13107, 'Keur van Nederlandsche Synoniemen\nTen gebruike bij de studie voor de hulp- en hoofdacte en op inrichtingen voor M.O.', 'Pluim, Teunis', '2010-12-29', 12, 'https://www.gutenberg.org/ebooks/34784', 'nl', 6401), +(13108, 'Incidents of the War: Humorous, Pathetic, and Descriptive', 'Burnett, Alfred', '2007-12-04', 37, 'https://www.gutenberg.org/ebooks/23733', 'en', 1517), +(13109, 'A Little Mother to the Others', 'Meade, L. T.', '2006-01-12', 28, 'https://www.gutenberg.org/ebooks/17506', 'en', 31), +(13110, 'Black Jack', 'Brand, Max', '2006-02-01', 89, 'https://www.gutenberg.org/ebooks/9925', 'en', 315), +(13111, 'The Strolling Saint; being the confessions of the high and mighty Agostino D\'Anguissola, tyrant of Mondolfo and Lord of Carmina, in the state of Piacenza', 'Sabatini, Rafael', '2002-09-01', 56, 'https://www.gutenberg.org/ebooks/3423', 'en', 5714), +(13112, 'Salomé: A Tragedy in One Act', 'Wilde, Oscar', '2013-05-12', 345, 'https://www.gutenberg.org/ebooks/42704', 'en', 4263), +(13113, 'Letters of Horace Walpole — Volume II', 'Walpole, Horace', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12074', 'en', 6402), +(13114, 'Antony Gray,—Gardener', 'LM (Leslie Moore)', '2008-08-10', 17, 'https://www.gutenberg.org/ebooks/26241', 'en', 6403), +(13115, 'Medal of Honor', 'Reynolds, Mack', '2008-12-02', 38, 'https://www.gutenberg.org/ebooks/27393', 'en', 26), +(13116, 'The Irish Penny Journal, Vol. 1 No. 29, January 16, 1841', 'Various', '2017-05-04', 3, 'https://www.gutenberg.org/ebooks/54661', 'en', 81), +(13117, 'The Pathless Trail', 'Friel, Arthur O. (Arthur Olney)', '2009-10-24', 68, 'https://www.gutenberg.org/ebooks/30324', 'en', 323), +(13118, 'Seeing America First, with the Berry Brothers', 'Colby, Eleanor', '2017-10-09', 9, 'https://www.gutenberg.org/ebooks/55713', 'en', 6404), +(13119, 'How the Black St. Domingo Legion Saved the Patriot Army in the Siege of Savannah, 1779\nThe American Negro Academy. Occasional Papers No. 5', 'Steward, T. G. (Theophilus Gould)', '2010-02-12', 16, 'https://www.gutenberg.org/ebooks/31256', 'en', 6405), +(13120, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of William Dean Howells', 'Howells, William Dean', '2002-10-01', 19, 'https://www.gutenberg.org/ebooks/3483', 'en', 1026), +(13121, 'Pauline, ou la liberté de l\'amour', 'Dumur, Louis', '2013-09-09', 17, 'https://www.gutenberg.org/ebooks/43676', 'fr', 61), +(13122, 'The Day of Sir John Macdonald\nA Chronicle of the First Prime Minister of the Dominion', 'Pope, Joseph, Sir', '2009-11-01', 31, 'https://www.gutenberg.org/ebooks/30384', 'en', 6406), +(13123, 'Droll Stories — Volume 3', 'Balzac, Honoré de', '2004-08-23', 20, 'https://www.gutenberg.org/ebooks/2551', 'en', 637), +(13124, 'Pan and Æolus: Poems', 'Musgrove, Charles Hamilton', '2008-11-26', 62, 'https://www.gutenberg.org/ebooks/27333', 'en', 8), +(13125, 'Memoirs of Margaret Fuller Ossoli, Volume II', 'Fuller, Margaret', '2004-08-03', 23, 'https://www.gutenberg.org/ebooks/13106', 'en', 6407), +(13126, 'Rob Roy — Volume 01', 'Scott, Walter', '2004-08-22', 28, 'https://www.gutenberg.org/ebooks/7023', 'en', 5363), +(13127, 'The Silent Rifleman! A tale of the Texan prairies', 'Herbert, Henry William', '2014-07-16', 51, 'https://www.gutenberg.org/ebooks/46304', 'en', 315), +(13128, 'Lectures and Essays', 'Huxley, Thomas Henry', '2005-08-08', 13, 'https://www.gutenberg.org/ebooks/16474', 'en', 2713), +(13129, 'The Life, Studies, and Works of Benjamin West, Esq.\nComposed from Materials Furnished by Himself', 'Galt, John', '2005-09-01', 20, 'https://www.gutenberg.org/ebooks/8857', 'en', 6408), +(13130, 'Lucifero', 'Rapisardi, Mario', '2007-09-16', 38, 'https://www.gutenberg.org/ebooks/22641', 'it', 8), +(13131, 'Romaneja ja kertomuksia: Lyhyet kertomukset', 'Various', '2007-12-10', 3, 'https://www.gutenberg.org/ebooks/23793', 'fi', 61), +(13132, 'Philip II. of Spain', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2015-10-20', 17, 'https://www.gutenberg.org/ebooks/50261', 'en', 6409), +(13133, 'Pocahontas: A Poem', 'Castleman, Virginia Carter', '2006-02-01', 9, 'https://www.gutenberg.org/ebooks/9985', 'en', 6410), +(13134, 'Lola', 'Davis, Owen', '2010-12-22', 31, 'https://www.gutenberg.org/ebooks/34724', 'en', 26), +(13135, 'They Call Me Carpenter: A Tale of the Second Coming', 'Sinclair, Upton', '2004-05-01', 58, 'https://www.gutenberg.org/ebooks/5774', 'en', 609), +(13136, 'Le moyen de parvenir, tome 1/3', 'Béroalde de Verville', '2018-09-09', 36, 'https://www.gutenberg.org/ebooks/57878', 'fr', 5604), +(13137, 'Chroniques de J. Froissart, tome 1/13, 1re partie', 'Froissart, Jean', '2013-12-17', 26, 'https://www.gutenberg.org/ebooks/44453', 'fr', 6411), +(13138, 'Là-bas', 'Huysmans, J.-K. (Joris-Karl)', '2004-12-10', 286, 'https://www.gutenberg.org/ebooks/14323', 'en', 114), +(13139, 'The Belief in Immortality and the Worship of the Dead, Volume 1 (of 3)\r\nThe Belief Among the Aborigines of Australia, the Torres Straits Islands, New Guinea and Melanesia', 'Frazer, James George', '2006-12-15', 57, 'https://www.gutenberg.org/ebooks/20116', 'en', 6412), +(13140, 'Väriä ja viivoja: Werner von Heidenstamin, Oscar Levertinin y.m. novelleja', 'Strindberg, August', '2016-07-09', 12, 'https://www.gutenberg.org/ebooks/52536', 'fi', 2168), +(13141, 'The Iron Boys in the Steel Mills; or, Beginning Anew in the Cinder Pits', 'Mears, James R.', '2012-05-26', 6, 'https://www.gutenberg.org/ebooks/39807', 'en', 6413), +(13142, 'The Story of the Nations: Portugal', 'Stephens, H. Morse (Henry Morse)', '2014-05-04', 19, 'https://www.gutenberg.org/ebooks/45581', 'en', 6414), +(13143, 'The Poll for an Assistant Minister for the Parish of St. Peter Mancroft, Norwich', 'Anonymous', '2011-05-09', 6, 'https://www.gutenberg.org/ebooks/36073', 'en', 6415), +(13144, 'Die Inshurance Business\r\nA serio-comic drama in the Pennsylvania German vernacular, \"as she is spoke\" in the German districts of Pennsylvania', 'Grumbine, Ezra', '2018-04-25', 18, 'https://www.gutenberg.org/ebooks/57044', 'en', 6416), +(13145, 'Self-Help\r\nSailor\'s Knots, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 42, 'https://www.gutenberg.org/ebooks/10783', 'en', 72), +(13146, 'The Book of Gud', 'Hastings, Milo', '2010-08-22', 25, 'https://www.gutenberg.org/ebooks/33501', 'en', 6417), +(13147, 'Teutonic Mythology: Gods and Goddesses of the Northland. Vol. 3 of 3', 'Rydberg, Viktor', '2019-02-04', 47, 'https://www.gutenberg.org/ebooks/58830', 'en', 6418), +(13148, 'Histoire des salons de Paris (Tome 2/6)\r\nTableaux et portraits du grand monde sous Louis XVI, Le Directoire, le Consulat et l\'Empire, la Restauration et le règne de Louis-Philippe Ier', 'Abrantès, Laure Junot, duchesse d\'', '2012-10-21', 34, 'https://www.gutenberg.org/ebooks/41121', 'fr', 4122), +(13149, 'The King of Root Valley\nand his curious daughter', 'Reinick, Robert', '2008-05-14', 11, 'https://www.gutenberg.org/ebooks/25464', 'en', 1007), +(13150, 'Notes and Queries, Number 07, December 15, 1849', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11651', 'en', 105), +(13151, 'The Three Voyages of Captain Cook Round the World. Vol. I. Being the First of the First Voyage.', 'Cook, James', '2017-12-17', 48, 'https://www.gutenberg.org/ebooks/56196', 'en', 3653), +(13152, 'Dew Drops, Vol. 37, No. 15, April 12, 1914', 'Various', '2004-11-22', 7, 'https://www.gutenberg.org/ebooks/14111', 'en', 563), +(13153, 'The Outdoor Girls at Bluff Point; Or a Wreck and a Rescue', 'Hope, Laura Lee', '2007-01-10', 38, 'https://www.gutenberg.org/ebooks/20324', 'en', 323), +(13154, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 04', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5546', 'en', 5290), +(13155, 'Aumolan emäntä: Novelli', 'Bergman, Johan Albert', '2011-09-22', 11, 'https://www.gutenberg.org/ebooks/37393', 'fi', 61), +(13156, 'John Leech\'s Pictures of Life and Character, Volume 1 (of 3)\r\nFrom the Collection of \"Mr. Punch\"', 'Leech, John', '2014-01-14', 4, 'https://www.gutenberg.org/ebooks/44661', 'en', 2965), +(13157, 'The Tale of Chloe: An Episode in the History of Beau Beamish', 'Meredith, George', '2003-09-01', 14, 'https://www.gutenberg.org/ebooks/4494', 'en', 137), +(13158, 'Canadian Fairy Tales', 'MacMillan, Cyrus', '2011-05-28', 81, 'https://www.gutenberg.org/ebooks/36241', 'en', 5859), +(13159, 'As It Was Written: A Jewish Musician\'s Story', 'Harland, Henry', '2016-08-02', 20, 'https://www.gutenberg.org/ebooks/52704', 'en', 2120), +(13160, 'The Guarded Heights', 'Camp, Wadsworth', '2010-09-15', 13, 'https://www.gutenberg.org/ebooks/33733', 'en', 48), +(13161, 'Yellow Star: A Story of East and West', 'Eastman, Elaine Goodale', '2018-06-04', 9, 'https://www.gutenberg.org/ebooks/57276', 'en', 6419), +(13162, 'The Royal Pawn of Venice\nA Romance of Cyprus', 'Turnbull, Lawrence, Mrs.', '2008-03-08', 26, 'https://www.gutenberg.org/ebooks/24784', 'en', 98), +(13163, 'The Mystery of a Turkish Bath', 'Rita', '2008-05-31', 12, 'https://www.gutenberg.org/ebooks/25656', 'en', 336), +(13164, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 404, December 12, 1829', 'Various', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11463', 'en', 133), +(13165, 'My Danish Sweetheart: A Novel. Volume 1 of 3', 'Russell, William Clark', '2012-11-07', 19, 'https://www.gutenberg.org/ebooks/41313', 'en', 323), +(13166, 'Platero y yo', 'Jiménez, Juan Ramón', '2012-03-20', 124, 'https://www.gutenberg.org/ebooks/39209', 'es', 918), +(13167, 'Stories by American Authors, Volume 2', 'Various', '2010-01-24', 6, 'https://www.gutenberg.org/ebooks/31064', 'en', 1426), +(13168, 'The World English Bible (WEB): Jonah', 'Anonymous', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8259', 'en', 6420), +(13169, 'The Last Call: A Romance (Vol. 2 of 3)', 'Dowling, Richard', '2013-04-26', 13, 'https://www.gutenberg.org/ebooks/42596', 'en', 109), +(13170, 'Albrecht Dürer: Een levensbeeld', 'Stein, Armin', '2017-09-10', 7, 'https://www.gutenberg.org/ebooks/55521', 'nl', 6421), +(13171, 'Life of Rear Admiral John Randolph Tucker', 'Rochelle, James Henry', '2008-10-30', 26, 'https://www.gutenberg.org/ebooks/27101', 'en', 6422), +(13172, 'Codex Junius 11', 'Unknown', '1996-08-01', 99, 'https://www.gutenberg.org/ebooks/618', 'en', 6423), +(13173, 'The Collected Works of Ambrose Bierce — Volume 2: In the Midst of Life: Tales of Soldiers and Civilians', 'Bierce, Ambrose', '2004-08-30', 173, 'https://www.gutenberg.org/ebooks/13334', 'en', 114), +(13174, 'White Heather: A Novel (Volume 1 of 3)', 'Black, William', '2013-08-11', 11, 'https://www.gutenberg.org/ebooks/43444', 'en', 1922), +(13175, 'Harper\'s Young People, June 1, 1880\nAn Illustrated Weekly', 'Various', '2009-05-26', 7, 'https://www.gutenberg.org/ebooks/28975', 'en', 479), +(13176, 'The World\'s Desire', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 93, 'https://www.gutenberg.org/ebooks/2763', 'en', 5897), +(13177, 'History of Greece, Volume 07 (of 12)', 'Grote, George', '2016-02-11', 19, 'https://www.gutenberg.org/ebooks/51181', 'en', 6424), +(13178, 'The Letters of Elizabeth Barrett Browning (Volume 2 of 2)', 'Browning, Elizabeth Barrett', '2005-09-04', 83, 'https://www.gutenberg.org/ebooks/16646', 'en', 6425), +(13179, 'Ancestors: A Novel', 'Atherton, Gertrude Franklin Horn', '2010-04-01', 32, 'https://www.gutenberg.org/ebooks/31858', 'en', 95), +(13180, 'Onder de wilde stammen op de grenzen van Afghanistan\nDe Aarde en haar Volken, 1917', 'Pennell, T. L. (Theodore Leighton)', '2007-08-31', 3, 'https://www.gutenberg.org/ebooks/22473', 'nl', 6426), +(13181, 'Poems & Poèmes; autres alliances', 'Barney, Natalie Clifford', '2015-09-12', 18, 'https://www.gutenberg.org/ebooks/49942', 'en', 8), +(13182, 'The American Union Speaker', 'Philbrick, John D. (John Dudley)', '2005-01-01', 9, 'https://www.gutenberg.org/ebooks/7211', 'en', 1725), +(13183, 'History of the Fan', 'Rhead, G. Woolliscroft (George Woolliscroft)', '2014-06-29', 10, 'https://www.gutenberg.org/ebooks/46136', 'en', 6427), +(13184, 'L\'Illustration, No. 0006, 8 Avril 1843', 'Various', '2010-11-30', 4, 'https://www.gutenberg.org/ebooks/34516', 'fr', 150), +(13185, 'Studies in Judaism, First Series', 'Schechter, S. (Solomon)', '2015-05-06', 30, 'https://www.gutenberg.org/ebooks/48890', 'en', 6428), +(13186, 'Her Ladyship\'s Elephant', 'Wells, David Dwight', '2009-02-21', 11, 'https://www.gutenberg.org/ebooks/28149', 'en', 637), +(13187, 'L\'épouvante', 'Level, Maurice', '2006-02-19', 10, 'https://www.gutenberg.org/ebooks/17794', 'fr', 61), +(13188, 'Notes on the Iroquois\r\nor, Contributions to the Statistics, Aboriginal History, Antiquities and General Ethnology of Western New-York', 'Schoolcraft, Henry Rowe', '2015-09-25', 37, 'https://www.gutenberg.org/ebooks/50053', 'en', 6429), +(13189, 'The Cup of Trembling, and Other Stories', 'Foote, Mary Hallock', '2011-07-05', 24, 'https://www.gutenberg.org/ebooks/36625', 'en', 770), +(13190, 'The Pirate City: An Algerine Tale', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 47, 'https://www.gutenberg.org/ebooks/21692', 'en', 3242), +(13191, 'The Poetical Works of Thomas Campbell', 'Campbell, Thomas', '2019-06-21', 34, 'https://www.gutenberg.org/ebooks/59788', 'en', 6430), +(13192, 'Spielgeist: Eine Phantasie', 'Berger, Ludwig', '2016-06-17', 12, 'https://www.gutenberg.org/ebooks/52360', 'de', 3978), +(13193, 'Bylow Hill', 'Cable, George Washington', '2005-01-03', 12, 'https://www.gutenberg.org/ebooks/14575', 'en', 6431), +(13194, 'Myths and Legends of All Nations\nFamous Stories from the Greek, German, English, Spanish,\nScandinavian, Danish, French, Russian, Bohemian, Italian\nand other sources', NULL, '2007-03-04', 212, 'https://www.gutenberg.org/ebooks/20740', 'en', 75), +(13195, 'The Trail of the Lonesome Pine', 'Fox, John, Jr.', '2004-02-01', 52, 'https://www.gutenberg.org/ebooks/5122', 'en', 48), +(13196, 'Gregg\'s Commerce of the Prairies, 1831-1839, part 2', 'Gregg, Josiah', '2013-11-17', 21, 'https://www.gutenberg.org/ebooks/44205', 'en', 6432), +(13197, 'The Political History of England - Vol. X.\nThe History of England from the Accession of George III\nto the close of Pitt\'s first Administration', NULL, '2008-04-29', 26, 'https://www.gutenberg.org/ebooks/25232', 'en', 2610), +(13198, 'Jemmy Stubbins, or the Nailer Boy\nIllustrations of the Law of Kindness', NULL, '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11007', 'en', 6433), +(13199, 'Blazing Arrow: A Tale of the Frontier', 'Ellis, Edward Sylvester', '2013-01-04', 31, 'https://www.gutenberg.org/ebooks/41777', 'en', 1259), +(13200, 'Adventures of Bindle', 'Jenkins, Herbert George', '2010-05-07', 56, 'https://www.gutenberg.org/ebooks/32285', 'en', 6434), +(13201, 'Reminiscences of the Thirty-Fourth Regiment, Mass. Vol. Infantry', 'Clark, William H.', '2010-08-06', 14, 'https://www.gutenberg.org/ebooks/33357', 'en', 6435), +(13202, 'The Bible, Douay-Rheims, New Testament', NULL, '1998-12-01', 68, 'https://www.gutenberg.org/ebooks/1582', 'en', 2781), +(13203, 'Ladies\' manual of art; or, profit and pastime.\r\nA self teacher in all branches of decorative art, embracing every variety of painting and drawing on china, glass, velvet, canvas, paper and wood the secret of all glass transparencies, sketching from nature. pastel and crayon drawing, taxidermy, etc.', 'Anonymous', '2018-07-31', 42, 'https://www.gutenberg.org/ebooks/57612', 'en', 6436), +(13204, 'Magyar élet: Elbeszélések', 'Bársony, István', '2008-12-19', 9, 'https://www.gutenberg.org/ebooks/27565', 'hu', 1532), +(13205, 'Black is White', 'McCutcheon, George Barr', '2017-02-03', 8, 'https://www.gutenberg.org/ebooks/54097', 'en', 376), +(13206, 'The Heavenly Footman; Or, A Description of the Man That Gets to Heaven\r\nWith Directions How to Run So as to Obtain', 'Bunyan, John', '2004-10-14', 35, 'https://www.gutenberg.org/ebooks/13750', 'en', 1130), +(13207, 'The Crest of the Continent: A Summer\'s Ramble in the Rocky Mountains and Beyond', 'Ingersoll, Ernest', '2013-06-24', 15, 'https://www.gutenberg.org/ebooks/43020', 'en', 497), +(13208, 'The Depot Master', 'Lincoln, Joseph Crosby', '2006-05-17', 24, 'https://www.gutenberg.org/ebooks/2307', 'en', 109), +(13209, 'Κριτίας, Ίππαρχος, Αντερασταί', 'Plato', '2010-02-25', 28, 'https://www.gutenberg.org/ebooks/31400', 'el', 779), +(13210, 'The Boy Allies in Great Peril; Or, With the Italian Army in the Alps', 'Hayes, Clair W. (Clair Wallace)', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12682', 'en', 6437), +(13211, 'The Orchid Album, Volume 1\r\nComprising Coloured Figures and Descriptions of New, Rare, and Beautiful Orchidaceous Plants', 'Moore, Thomas', '2017-07-18', 30, 'https://www.gutenberg.org/ebooks/55145', 'en', 6438), +(13212, 'Della storia d\'Italia dalle origini fino ai nostri giorni, sommario. v. 2', 'Balbo, Cesare, conte', '2014-11-28', 27, 'https://www.gutenberg.org/ebooks/47480', 'it', 6107), +(13213, 'Peter\'s Rock in Mohammed\'s Flood, from St. Gregory the Great to St. Leo III', 'Allies, T. W. (Thomas William)', '2010-10-30', 19, 'https://www.gutenberg.org/ebooks/34172', 'en', 5868), +(13214, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 2, De Las Islas Filipinas, I', NULL, '2015-11-12', 50, 'https://www.gutenberg.org/ebooks/50437', 'es', 6439), +(13215, 'Winter Evening Tales', 'Barr, Amelia E.', '2005-07-06', 22, 'https://www.gutenberg.org/ebooks/16222', 'en', 942), +(13216, 'A Key to the Knowledge of Church History (Ancient)', 'Blunt, John Henry', '2007-07-07', 21, 'https://www.gutenberg.org/ebooks/22017', 'en', 4198), +(13217, 'Harold : the Last of the Saxon Kings — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 5, 'https://www.gutenberg.org/ebooks/7675', 'en', 5629), +(13218, 'Life and Confession of Sophia Hamilton\r\nWho was Tried, Condemned and Sentenced to be Hung, at Montreal, L. C. on the 4th of August, 1845, for the Perpetration of the Most Shocking Murders and Daring Robberies Perhaps Recorded in the Annals of Crime', 'Jackson, William H.', '2017-11-16', 22, 'https://www.gutenberg.org/ebooks/55979', 'en', 1335), +(13219, 'The Story of Bruges', 'Gilliat-Smith, Ernest', '2014-08-10', 23, 'https://www.gutenberg.org/ebooks/46552', 'en', 6440), +(13220, 'Fairy Tales from Spain', 'Muñoz Escámez, José', '2013-07-13', 27, 'https://www.gutenberg.org/ebooks/43212', 'en', 1007), +(13221, 'Stories by English Authors: London (Selected by Scribners)', NULL, '2006-03-26', 89, 'https://www.gutenberg.org/ebooks/2135', 'en', 1079), +(13222, 'The Dim Lantern', 'Bailey, Temple', '2019-08-11', 1094, 'https://www.gutenberg.org/ebooks/60090', 'en', 2934), +(13223, 'Nuevo plan de fronteras de la provincia de Buenos Aires, proyectado en 1816', 'García, Pedro Andrés', '2009-01-09', 19, 'https://www.gutenberg.org/ebooks/27757', 'es', 6441), +(13224, 'Ghislaine', 'Malot, Hector', '2004-09-30', 10, 'https://www.gutenberg.org/ebooks/13562', 'fr', 61), +(13225, 'Ordnance Instructions for the United States Navy.\n1866. Fourth edition.', 'United States. Navy Department. Bureau of Ordnance', '2006-08-16', 22, 'https://www.gutenberg.org/ebooks/19058', 'en', 6442), +(13226, 'Pre-Raphaelite and other Poets', 'Hearn, Lafcadio', '2017-08-17', 12, 'https://www.gutenberg.org/ebooks/55377', 'en', 6443), +(13227, 'Aphrodite: Moeurs antiques', 'Louÿs, Pierre', '2008-09-21', 70, 'https://www.gutenberg.org/ebooks/26685', 'fr', 6444), +(13228, 'Project Gutenberg (1971-2009)', 'Lebert, Marie', '2010-03-13', 21, 'https://www.gutenberg.org/ebooks/31632', 'en', 340), +(13229, 'How to Settle Accounts with your Laundress: An Original Farce, in One Act', 'Coyne, J. Stirling (Joseph Stirling)', '2015-08-17', 4, 'https://www.gutenberg.org/ebooks/49728', 'en', 907), +(13230, 'Lettres à Mademoiselle de Volland', 'Diderot, Denis', '2015-12-04', 19, 'https://www.gutenberg.org/ebooks/50605', 'fr', 6445), +(13231, 'The Eldest Son', 'Galsworthy, John', '2004-09-26', 23, 'https://www.gutenberg.org/ebooks/2909', 'en', 1088), +(13232, 'Advice to a Mother on the Management of Her Children', 'Chavasse, Pye Henry', '2004-09-01', 44, 'https://www.gutenberg.org/ebooks/6595', 'en', 6446), +(13233, 'Reprinted Pieces', 'Dickens, Charles', '1997-04-01', 144, 'https://www.gutenberg.org/ebooks/872', 'en', 20), +(13234, 'Three New Beavers from Utah', 'Crane, Harold S.', '2010-11-16', 19, 'https://www.gutenberg.org/ebooks/34340', 'en', 6447), +(13235, 'The Rising of the Court', 'Lawson, Henry', '2005-02-01', 36, 'https://www.gutenberg.org/ebooks/7447', 'en', 6448), +(13236, 'Kalastajakadun kauppias: Novelli', 'Lassinen, Emil', '2011-02-16', 9, 'https://www.gutenberg.org/ebooks/35292', 'fi', 41), +(13237, 'Clipsrymkes', 'Veen, Here Gerrits van der', '2006-11-19', 15, 'https://www.gutenberg.org/ebooks/19864', 'fy', 6449), +(13238, 'Hints to Servants\r\nBeing a Poetical and Modernised Version of Dean Swift\'s Celebrated \"Directions to Servants\"', 'Jones, John', '2014-09-03', 31, 'https://www.gutenberg.org/ebooks/46760', 'en', 6450), +(13239, 'The Tithe-Proctor\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 17, 'https://www.gutenberg.org/ebooks/16010', 'en', 440), +(13240, 'Mary Louise in the Country', 'Baum, L. Frank (Lyman Frank)', '2007-08-03', 50, 'https://www.gutenberg.org/ebooks/22225', 'en', 6451), +(13241, 'Ilmasota: Tulevaisuuden kuvaus', 'Wells, H. G. (Herbert George)', '2016-05-24', 28, 'https://www.gutenberg.org/ebooks/52152', 'fi', 26), +(13242, '\'Doc.\' Gordon', 'Freeman, Mary Eleanor Wilkins', '2005-04-24', 20, 'https://www.gutenberg.org/ebooks/15695', 'en', 6452), +(13243, 'The Pictorial Press: Its Origin and Progress', 'Jackson, Mason', '2011-06-13', 10, 'https://www.gutenberg.org/ebooks/36417', 'en', 6453), +(13244, 'The Point of View', 'Glyn, Elinor', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/5310', 'en', 1314), +(13245, 'The Adventures of Billy Topsail', 'Duncan, Norman', '2013-10-25', 21, 'https://www.gutenberg.org/ebooks/44037', 'en', 324), +(13246, 'Sun and Shadow in Spain', 'Elliott, Maud Howe', '2018-12-13', 13, 'https://www.gutenberg.org/ebooks/58468', 'en', 1514), +(13247, 'Punch, or the London Charivari, Volume 102, June 25, 1892', 'Various', '2005-01-20', 5, 'https://www.gutenberg.org/ebooks/14747', 'en', 134), +(13248, 'The Reclaimers', 'McCarter, Margaret Hill', '2010-09-30', 9, 'https://www.gutenberg.org/ebooks/33959', 'en', 61), +(13249, 'The Myths of Mexico & Peru', 'Spence, Lewis', '2016-09-18', 102, 'https://www.gutenberg.org/ebooks/53080', 'en', 6454), +(13250, 'Marie Claire', 'Audoux, Marguerite', '2007-02-12', 23, 'https://www.gutenberg.org/ebooks/20572', 'en', 58), +(13251, 'The Orange Girl', 'Besant, Walter', '2012-12-03', 27, 'https://www.gutenberg.org/ebooks/41545', 'en', 2616), +(13252, 'English Book Collectors', 'Fletcher, William Younger', '2008-04-06', 23, 'https://www.gutenberg.org/ebooks/25000', 'en', 6455), +(13253, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 399, Supplementary Number', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11235', 'en', 133), +(13254, 'Bêtes et gens qui s\'aimèrent', 'Farrère, Claude', '2018-06-30', 27, 'https://www.gutenberg.org/ebooks/57420', 'fr', 100), +(13255, 'Coal, and What We Get from It', 'Meldola, Raphael', '2010-07-15', 21, 'https://www.gutenberg.org/ebooks/33165', 'en', 6456), +(13256, 'The Prairie Schooner', 'Hooker, William Francis', '2012-08-14', 19, 'https://www.gutenberg.org/ebooks/40497', 'en', 930), +(13257, 'L\'Histoire de France racontée par les Contemporains (Tome 4/4)\r\nExtraits des Chroniques, des Mémoires et des Documents originaux, avec des sommaires et des résumés chronologiques', NULL, '2014-04-05', 16, 'https://www.gutenberg.org/ebooks/45323', 'fr', 6457), +(13258, 'On the Prospects of Christianity\r\nBernard Shaw\'s Preface to Androcles and the Lion', 'Shaw, Bernard', '2003-05-01', 50, 'https://www.gutenberg.org/ebooks/4004', 'en', 2566), +(13259, 'Uncle Rutherford\'s Nieces: A Story for Girls', 'Mathews, Joanna H. (Joanna Hooe)', '2007-06-03', 17, 'https://www.gutenberg.org/ebooks/21666', 'en', 470), +(13260, 'Punch, or the London Charivari, Volume 103, October 15, 1892', 'Various', '2005-03-24', 13, 'https://www.gutenberg.org/ebooks/15453', 'en', 134), +(13261, 'The Banner Boy Scouts in the Air', 'Warren, George A.', '2016-06-23', 10, 'https://www.gutenberg.org/ebooks/52394', 'en', 3763), +(13262, 'Wanhain Suomalaisten Tawaliset ja Suloiset Sananlascut', NULL, '2016-10-10', 10, 'https://www.gutenberg.org/ebooks/53246', 'fi', 6458), +(13263, 'The Just and the Unjust', 'Kester, Vaughan', '2005-01-03', 32, 'https://www.gutenberg.org/ebooks/14581', 'en', 61), +(13264, 'About The Holy Bible: A Lecture', 'Ingersoll, Robert Green', '2011-10-10', 46, 'https://www.gutenberg.org/ebooks/37703', 'en', 3792), +(13265, 'A Manual of Ancient History', 'Thalheimer, M. E. (Mary Elsie)', '2018-03-13', 20, 'https://www.gutenberg.org/ebooks/56734', 'en', 1368), +(13266, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1584-85a', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4838', 'en', 3372), +(13267, 'King Arthur in Cornwall', 'Dickinson, W. Howship (William Howship)', '2013-01-05', 12, 'https://www.gutenberg.org/ebooks/41783', 'en', 6459), +(13268, 'Magyar népballadák (Magyar remekirók 55. kötet)', 'Endrődi, Sándor', '2012-05-15', 6, 'https://www.gutenberg.org/ebooks/39699', 'hu', 6460), +(13269, 'A Struggle for Rome, v. 1', 'Dahn, Felix', '2010-05-06', 25, 'https://www.gutenberg.org/ebooks/32271', 'en', 6461), +(13270, 'A Unique Story of a Marvellous Career: Life of Hon. Phineas T. Barnum', 'Benton, Joel', '1998-12-01', 41, 'https://www.gutenberg.org/ebooks/1576', 'en', 6462), +(13271, 'The Hypocrite', 'Thorne, Guy', '2012-09-02', 13, 'https://www.gutenberg.org/ebooks/40651', 'en', 61), +(13272, 'The Literature of Arabia\r\nWith Critical and Biographical Sketches by Epiphanius Wilson', NULL, '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10121', 'en', 6463), +(13273, 'Mystics and Saints of Islam', 'Field, Claud', '2008-01-15', 30, 'https://www.gutenberg.org/ebooks/24314', 'en', 6464), +(13274, 'The Birthright', 'Hocking, Joseph', '2008-12-22', 27, 'https://www.gutenberg.org/ebooks/27591', 'en', 1380), +(13275, 'The Certain Hour (Dizain des Poëtes)', 'Cabell, James Branch', '1995-07-01', 47, 'https://www.gutenberg.org/ebooks/288', 'en', 580), +(13276, 'The Mimic Stage\r\nA Series of Dramas, Comedies, Burlesques, and Farces for Public Exhibitions and Private Theatricals', 'Baker, George M. (George Melville)', '2017-01-28', 11, 'https://www.gutenberg.org/ebooks/54063', 'en', 2830), +(13277, 'Illustrations of The Book of Job', 'Blake, William', '2009-11-22', 92, 'https://www.gutenberg.org/ebooks/30526', 'en', 6465), +(13278, 'Mr. Honey\'s Large Business Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 22, 'https://www.gutenberg.org/ebooks/3221', 'de', 5007), +(13279, 'How to Fence\r\nContaining Full Instruction for Fencing and the Use of the Broadsword; Also Instruction in Archery', 'Warford, Aaron A.', '2013-02-16', 26, 'https://www.gutenberg.org/ebooks/42106', 'en', 6466), +(13280, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 490, May 21, 1831', 'Various', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12676', 'en', 133), +(13281, 'Bulalakaw ng Pag-asa', 'Amado, Ismael A.', '2011-04-14', 16, 'https://www.gutenberg.org/ebooks/35868', 'tl', 6467), +(13282, 'De honig en zijn gebruik', 'Rondou, W.-F.', '2008-08-27', 5, 'https://www.gutenberg.org/ebooks/26443', 'nl', 4644), +(13283, 'Huts in Hell', 'Poling, Daniel A. (Daniel Alfred)', '2014-11-27', 25, 'https://www.gutenberg.org/ebooks/47474', 'en', 449), +(13284, 'The Copeland Method\r\nA Complete Manual for Cleaning, Repairing, Altering and Pressing All Kinds of Garments for Men and Women, at Home or for Business', 'Copeland, Vanness', '2010-11-03', 21, 'https://www.gutenberg.org/ebooks/34186', 'en', 6468), +(13285, 'Psmith in the City', 'Wodehouse, P. G. (Pelham Grenville)', '2004-10-01', 285, 'https://www.gutenberg.org/ebooks/6753', 'en', 637), +(13286, 'Principle and Practice: The Orphan Family', 'Martineau, Harriet', '2007-10-20', 12, 'https://www.gutenberg.org/ebooks/23131', 'en', 264), +(13287, 'Het Leven der Dieren: Deel 1, Hoofdstuk 02: De Halfapen; Hoofdstuk 03: De Vleermuizen', 'Brehm, Alfred Edmund', '2005-12-14', 13, 'https://www.gutenberg.org/ebooks/17304', 'nl', 2360), +(13288, 'An encyclopedist of the dark ages: Isidore of Seville', 'Brehaut, Ernest', '2016-03-20', 12, 'https://www.gutenberg.org/ebooks/51511', 'en', 1821), +(13289, 'Les Rues de Paris, tome troisième\r\nBiographies, portraits, récits et légendes', 'Bouniol, Bathild', '2011-01-24', 31, 'https://www.gutenberg.org/ebooks/35054', 'fr', 6469), +(13290, 'Harold : the Last of the Saxon Kings — Volume 10', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7681', 'en', 984), +(13291, 'The History of Samuel Titmarsh and the Great Hoggarty Diamond', 'Thackeray, William Makepeace', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9529', 'en', 137), +(13292, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 25', 'Stevenson, Robert Louis', '2009-12-19', 32, 'https://www.gutenberg.org/ebooks/30714', 'en', 232), +(13293, 'Dorothea Beale of Cheltenham', 'Raikes, Elizabeth', '2019-08-06', 501, 'https://www.gutenberg.org/ebooks/60064', 'en', 6470), +(13294, 'Bavo en Lieveken', 'Conscience, Hendrik', '2004-10-04', 10, 'https://www.gutenberg.org/ebooks/13596', 'nl', 61), +(13295, 'English Law and the Renaissance\nThe Rede Lecture for 1901', 'Maitland, Frederic William', '2017-02-27', 9, 'https://www.gutenberg.org/ebooks/54251', 'en', 6471), +(13296, 'Graham\'s Magazine, Vol. XXXV, No. 4, October 1849', 'Various', '2017-08-18', 11, 'https://www.gutenberg.org/ebooks/55383', 'en', 162), +(13297, 'Toaster\'s Handbook: Jokes, Stories, and Quotations', NULL, '2004-05-01', 80, 'https://www.gutenberg.org/ebooks/12444', 'en', 1026), +(13298, 'The Boy Crusaders: A Story of the Days of Louis IX.', 'Edgar, John G. (John George)', '2008-09-19', 24, 'https://www.gutenberg.org/ebooks/26671', 'en', 6472), +(13299, 'The Birds', 'Aristophanes', '2002-01-01', 158, 'https://www.gutenberg.org/ebooks/3013', 'en', 5224), +(13300, 'The Expositor\'s Bible: The Book of Leviticus', 'Kellogg, Samuel H. (Samuel Henry)', '2013-03-16', 44, 'https://www.gutenberg.org/ebooks/42334', 'en', 6473), +(13301, 'Cinderella', 'Anonymous', '2007-11-03', 34, 'https://www.gutenberg.org/ebooks/23303', 'en', 1007), +(13302, 'Selected Official Documents of the South African Republic and Great Britain\nA Documentary Perspective Of The Causes Of The War In South Africa', NULL, '2005-11-23', 11, 'https://www.gutenberg.org/ebooks/17136', 'en', 6474), +(13303, 'Joan of the Journal', 'Olds, Helen Diehl', '2014-12-12', 15, 'https://www.gutenberg.org/ebooks/47646', 'en', 6475), +(13304, 'Letters from the Cape', 'Duff Gordon, Lucie, Lady', '1997-04-01', 57, 'https://www.gutenberg.org/ebooks/886', 'en', 4990), +(13305, 'Mémoires de Joseph Fouché, Duc d\'Otrante, Ministre de la Police Générale\nTome I', 'Fouché, Joseph, duc d\'Otrante', '2006-07-30', 39, 'https://www.gutenberg.org/ebooks/18942', 'fr', 1941), +(13306, 'Our Friend John Burroughs', 'Barrus, Clara', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6561', 'en', 6476), +(13307, 'The American Missionary — Volume 50, No. 06, June, 1896', 'Various', '2006-11-21', 8, 'https://www.gutenberg.org/ebooks/19890', 'en', 562), +(13308, 'A Search For A Secret: A Novel. Vol. 3', 'Henty, G. A. (George Alfred)', '2011-02-13', 26, 'https://www.gutenberg.org/ebooks/35266', 'en', 1380), +(13309, 'The Pioneer Boys of the Ohio; or, Clearing the Wilderness', 'Rathborne, St. George', '2014-09-07', 11, 'https://www.gutenberg.org/ebooks/46794', 'en', 6477), +(13310, 'Harper\'s Young People, January 3 1882\nAn Illustrated Weekly', 'Various', '2016-04-10', 2, 'https://www.gutenberg.org/ebooks/51723', 'en', 479), +(13311, 'Is civilization a disease?', 'Coit, Stanton', '2009-08-08', 8, 'https://www.gutenberg.org/ebooks/29639', 'en', 5720), +(13312, 'The Seven Champions of Christendom', 'Kingston, William Henry Giles', '2007-05-15', 20, 'https://www.gutenberg.org/ebooks/21454', 'en', 662), +(13313, 'The Golden Goose Book', 'Brooke, L. Leslie (Leonard Leslie)', '2005-04-20', 111, 'https://www.gutenberg.org/ebooks/15661', 'en', 1007), +(13314, 'The Anglo-Saxon Century and the Unification of the English-Speaking People', 'Dos Passos, John R. (John Randolph)', '2014-03-11', 24, 'https://www.gutenberg.org/ebooks/45111', 'en', 3522), +(13315, 'Dynevor Terrace; Or, The Clue of Life — Volume 2', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-07-01', 16, 'https://www.gutenberg.org/ebooks/4236', 'en', 4444), +(13316, 'Theology and the Social Consciousness\r\nA Study of the Relations of the Social Consciousness to Theology (2nd ed.)', 'King, Henry Churchill', '2011-09-25', 12, 'https://www.gutenberg.org/ebooks/37531', 'en', 6478), +(13317, 'Professor Johnny', 'J. Ā. K.', '2016-09-17', 15, 'https://www.gutenberg.org/ebooks/53074', 'en', 4724), +(13318, 'In The Yule-Log Glow—Book 3\nChristmas Poems from \'round the World', NULL, '2007-02-15', 17, 'https://www.gutenberg.org/ebooks/20586', 'en', 585), +(13319, 'Army of the Cumberland and the Battle of Stone\'s River', 'Kniffin, G. C.', '2010-04-18', 14, 'https://www.gutenberg.org/ebooks/32043', 'en', 5054), +(13320, 'The Geographical Distribution of Animals, Volume 1\r\nWith a study of the relations of living and extinct faunas as elucidating the past changes of the Earth\'s surface', 'Wallace, Alfred Russel', '2018-02-06', 21, 'https://www.gutenberg.org/ebooks/56506', 'en', 5535), +(13321, 'The Fifth Regiment March', NULL, '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10313', 'en', 6479), +(13322, 'Maw\'s Vacation: The Story of a Human Being in the Yellowstone', 'Hough, Emerson', '2008-01-02', 8, 'https://www.gutenberg.org/ebooks/24126', 'en', 6480), +(13323, 'Philebus', 'Plato', '1999-05-01', 106, 'https://www.gutenberg.org/ebooks/1744', 'en', 6481), +(13324, 'Recitations for the Social Circle. Selected and Original', NULL, '2012-01-15', 3, 'https://www.gutenberg.org/ebooks/38579', 'en', 1725), +(13325, 'More Mittens; with The Doll\'s Wedding and Other Stories\r\nBeing the third book of the series', 'Fanny, Aunt', '2010-07-17', 10, 'https://www.gutenberg.org/ebooks/33191', 'en', 388), +(13326, 'La Femme doit-elle voter? (Le pour et le contre)\r\nThèse pour le doctorat ès sciences politiques et économiques', 'Ginestou, Joseph', '2016-12-31', 18, 'https://www.gutenberg.org/ebooks/53848', 'fr', 6482), +(13327, 'The Little Colonel\'s Holidays', 'Johnston, Annie F. (Annie Fellows)', '2012-08-09', 11, 'https://www.gutenberg.org/ebooks/40463', 'en', 6483), +(13328, 'A Woman of the World: Her Counsel to Other People\'s Sons and Daughters', 'Wilcox, Ella Wheeler', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12020', 'en', 740), +(13329, 'The Little Colonel\'s Christmas Vacation', 'Johnston, Annie F. (Annie Fellows)', '2008-08-08', 32, 'https://www.gutenberg.org/ebooks/26215', 'en', 548), +(13330, 'The Verse-Book of a Homely Woman', 'Inchfawn, Fay', '2002-10-01', 22, 'https://www.gutenberg.org/ebooks/3477', 'en', 54), +(13331, 'Tempest-Driven: A Romance (Vol. 1 of 3)', 'Dowling, Richard', '2013-05-20', 7, 'https://www.gutenberg.org/ebooks/42750', 'en', 61), +(13332, 'The Popular Religion and Folk-Lore of Northern India, Vol. 2 (of 2)', 'Crooke, William', '2013-09-10', 36, 'https://www.gutenberg.org/ebooks/43682', 'en', 655), +(13333, 'Favourite Welsh Hymns\nTranslated into English', NULL, '2009-10-30', 11, 'https://www.gutenberg.org/ebooks/30370', 'en', 6484), +(13334, 'My Life in China and America', 'Yung, Wing', '2017-04-30', 23, 'https://www.gutenberg.org/ebooks/54635', 'en', 6485), +(13335, 'Old Mortality, Volume 1.', 'Scott, Walter', '2004-08-22', 12, 'https://www.gutenberg.org/ebooks/6939', 'en', 6486), +(13336, 'The Romantic Scottish Ballads: Their Epoch and Authorship', 'Chambers, Robert', '2011-03-18', 8, 'https://www.gutenberg.org/ebooks/35602', 'en', 6487), +(13337, 'Beechenbrook\nA Rhyme of the War', 'Preston, Margaret Junkin', '2005-08-08', 4, 'https://www.gutenberg.org/ebooks/16480', 'en', 6488), +(13338, 'Submarines, Mines and Torpedoes in the War', 'Domville-Fife, Charles W. (Charles William)', '2016-03-03', 10, 'https://www.gutenberg.org/ebooks/51347', 'en', 6489), +(13339, 'The Talkative Tree', 'Fyfe, H. B. (Horace Bowne)', '2007-12-08', 36, 'https://www.gutenberg.org/ebooks/23767', 'en', 26), +(13340, 'The Dramatic Works of Gerhart Hauptmann, Volume I', 'Hauptmann, Gerhart', '2006-02-01', 46, 'https://www.gutenberg.org/ebooks/9971', 'en', 493), +(13341, 'Reconstruction and the Constitution, 1866-1876', 'Burgess, John William', '2015-10-24', 14, 'https://www.gutenberg.org/ebooks/50295', 'en', 5784), +(13342, 'Anna Karénine, Tome I', 'Tolstoy, Leo, graf', '2006-01-19', 34, 'https://www.gutenberg.org/ebooks/17552', 'fr', 6360), +(13343, 'Quintus Claudius: A Romance of Imperial Rome. Volume 2', 'Eckstein, Ernst', '2014-10-29', 8, 'https://www.gutenberg.org/ebooks/47222', 'en', 6490), +(13344, 'Their Yesterdays', 'Wright, Harold Bell', '2004-07-01', 27, 'https://www.gutenberg.org/ebooks/6105', 'en', 48), +(13345, 'Canada, My Land; and Other Compositions in Verse', 'MacKeracher, William M. (William Mackay)', '2011-08-21', 5, 'https://www.gutenberg.org/ebooks/37155', 'en', 919), +(13346, 'The Rover Boys at School; Or, The Cadets of Putnam Hall', 'Stratemeyer, Edward', '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/5780', 'en', 323), +(13347, 'Konovalov', 'Gorky, Maksim', '2016-10-30', 3, 'https://www.gutenberg.org/ebooks/53410', 'fi', 147), +(13348, 'The Romance of a Great Store', 'Hungerford, Edward', '2012-02-18', 72, 'https://www.gutenberg.org/ebooks/38921', 'en', 6491), +(13349, 'Uotilan isäntä: Rikosjuttu Suomesta', 'Nervander, Emil Fredrik', '2007-04-11', 40, 'https://www.gutenberg.org/ebooks/21030', 'fi', 61), +(13350, 'The Feast of the Virgins and Other Poems', 'Gordon, Hanford Lennox', '2005-02-28', 3, 'https://www.gutenberg.org/ebooks/15205', 'en', 6492), +(13351, 'L\'Illustration, No. 2505, 28 février 1891', 'Various', '2014-05-03', 4, 'https://www.gutenberg.org/ebooks/45575', 'fr', 150), +(13352, 'Hesperus; or, Forty-Five Dog-Post-Days: A Biography. Vol. II.', 'Jean Paul', '2011-05-12', 11, 'https://www.gutenberg.org/ebooks/36087', 'en', 61), +(13353, 'Escape, and Other Essays', 'Benson, Arthur Christopher', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/4652', 'en', 20), +(13354, 'Probable Sons', 'Le Feuvre, Amy', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10777', 'en', 777), +(13355, 'The Marquis of Peñalta (Marta y María): A Realistic Social Novel', 'Palacio Valdés, Armando', '2011-11-10', 8, 'https://www.gutenberg.org/ebooks/37969', 'en', 480), +(13356, 'Fifty Salads', 'Murrey, Thomas J. (Thomas Jefferson)', '2008-02-08', 32, 'https://www.gutenberg.org/ebooks/24542', 'en', 6493); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(13357, 'Criminal Psychology: A Manual for Judges, Practitioners, and Students', 'Gross, Hans', '1998-05-01', 209, 'https://www.gutenberg.org/ebooks/1320', 'en', 2839), +(13358, 'Säkeniä, Kokous runoelmia', 'Ahlqvist, August', '2012-06-16', 8, 'https://www.gutenberg.org/ebooks/40007', 'fi', 1171), +(13359, 'Category Phoenix', 'Ellanby, Boyd', '2010-05-19', 41, 'https://www.gutenberg.org/ebooks/32427', 'en', 26), +(13360, 'North Carolina Medical Journal. Vol. 3. No. 4. April, 1879', 'Various', '2019-07-14', 47, 'https://www.gutenberg.org/ebooks/59916', 'en', 3905), +(13361, 'Peck\'s Uncle Ike and The Red Headed Boy\n1899', 'Peck, George W. (George Wilbur)', '2008-05-16', 12, 'https://www.gutenberg.org/ebooks/25490', 'en', 3210), +(13362, 'The Illustrated Dictionary of Gardening, Division 1; A to Car.\r\nA Practical and Scientific Encyclopædia of Horticulture', NULL, '2017-12-11', 27, 'https://www.gutenberg.org/ebooks/56162', 'en', 6494), +(13363, 'What Nietzsche Taught', 'Wright, Willard Huntington', '2016-11-28', 35, 'https://www.gutenberg.org/ebooks/53622', 'en', 6495), +(13364, 'Verses of Feeling and Fancy', 'MacKeracher, William M. (William Mackay)', '2011-09-09', 6, 'https://www.gutenberg.org/ebooks/37367', 'en', 28), +(13365, 'King Robert the Bruce', 'Murison, Alexander Falconer', '2014-01-18', 41, 'https://www.gutenberg.org/ebooks/44695', 'en', 6496), +(13366, 'Climbing on the Himalaya and Other Mountain Ranges', 'Collie, Norman', '2014-05-24', 28, 'https://www.gutenberg.org/ebooks/45747', 'en', 1791), +(13367, 'Beauchamp\'s Career — Complete', 'Meredith, George', '2004-11-04', 26, 'https://www.gutenberg.org/ebooks/4460', 'en', 137), +(13368, 'Fighting the Whales', 'Ballantyne, R. M. (Robert Michael)', '2007-04-22', 37, 'https://www.gutenberg.org/ebooks/21202', 'en', 5246), +(13369, 'Een Jaar aan Kaap Hoorn\r\nDe Aarde en haar Volken, 1886', 'Hyades, Paul', '2005-02-14', 13, 'https://www.gutenberg.org/ebooks/15037', 'nl', 6497), +(13370, 'Rodent Control Aided by Emergency Conservation Work', 'Young, Stanley Paul', '2019-04-20', 7, 'https://www.gutenberg.org/ebooks/59318', 'en', 6498), +(13371, 'The Tragedy of Romeo and Juliet', 'Shakespeare, William', '1997-11-01', 1758, 'https://www.gutenberg.org/ebooks/1112', 'en', 5937), +(13372, 'The Expositor\'s Bible: The Books of Chronicles', 'Bennett, W. H. (William Henry)', '2012-07-14', 23, 'https://www.gutenberg.org/ebooks/40235', 'en', 6499), +(13373, 'The Sea Lions; Or, The Lost Sealers', 'Cooper, James Fenimore', '2003-12-01', 19, 'https://www.gutenberg.org/ebooks/10545', 'en', 6500), +(13374, 'Konstantinopelin valloitus\nKertomus Turkin vallan perustamisajoilta kansalle ja nuorisolle', 'Horn, W. O. von', '2018-06-06', 6, 'https://www.gutenberg.org/ebooks/57282', 'fi', 6501), +(13375, 'A Prisoner of Morro; Or, In the Hands of the Enemy', 'Sinclair, Upton', '2008-03-06', 43, 'https://www.gutenberg.org/ebooks/24770', 'en', 6502), +(13376, 'Bläck och saltvatten', 'Engström, Albert', '2018-01-10', 10, 'https://www.gutenberg.org/ebooks/56350', 'sv', 6503), +(13377, 'Valenzia Candiano\r\nRacconto', 'Rovani, Giuseppe', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11497', 'it', 6504), +(13378, 'The Hell Ship', 'Palmer, Ray', '2010-05-31', 39, 'https://www.gutenberg.org/ebooks/32615', 'en', 702), +(13379, 'L\'Étourdi ou les contre-temps', 'Molière', '2003-01-01', 10, 'https://www.gutenberg.org/ebooks/3645', 'fr', 907), +(13380, 'Horse Stories, and Stories of Other Animals', 'Knox, Thomas Wallace', '2016-05-02', 14, 'https://www.gutenberg.org/ebooks/51949', 'en', 1787), +(13381, 'Inspiration and Interpretation\nSeven Sermons Preached Before the University of Oxford', 'Burgon, John William', '2010-01-26', 25, 'https://www.gutenberg.org/ebooks/31090', 'en', 717), +(13382, 'Mason of Bar X Ranch', 'Bennett, Henry Holcomb', '2013-04-20', 41, 'https://www.gutenberg.org/ebooks/42562', 'en', 6505), +(13383, 'The Fathers of New England: A Chronicle of the Puritan Commonwealths', 'Andrews, Charles McLean', '2009-08-30', 32, 'https://www.gutenberg.org/ebooks/29853', 'en', 3408), +(13384, 'The Third String\nOdd Craft, Part 12.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12212', 'en', 1902), +(13385, 'Puck of Pook\'s Hill', 'Kipling, Rudyard', '2008-07-11', 95, 'https://www.gutenberg.org/ebooks/26027', 'en', 2915), +(13386, 'Gleanings of a Mystic: A Series of Essays on Practical Mysticism', 'Heindel, Max', '2017-03-21', 29, 'https://www.gutenberg.org/ebooks/54407', 'en', 5413), +(13387, 'The Well of Saint Clare', 'France, Anatole', '2006-07-01', 34, 'https://www.gutenberg.org/ebooks/18728', 'en', 179), +(13388, 'The Conquest of the River Plate (1535-1555)', 'Núñez Cabeza de Vaca, Alvar, active 16th century', '2015-01-24', 39, 'https://www.gutenberg.org/ebooks/48058', 'en', 4786), +(13389, 'Adventures in the Rifle Brigade, in the Peninsula, France, and the Netherlands\nfrom 1809 to 1815', 'Kincaid, J. (John)', '2009-05-29', 21, 'https://www.gutenberg.org/ebooks/28981', 'en', 6506), +(13390, 'The Wolves and the Lamb', 'Thackeray, William Makepeace', '2006-03-27', 34, 'https://www.gutenberg.org/ebooks/2797', 'en', 1281), +(13391, 'Little Brother', 'Doctorow, Cory', '2009-09-30', 164, 'https://www.gutenberg.org/ebooks/30142', 'en', 6507), +(13392, 'Source Book of London History, from the earliest times to 1800', NULL, '2016-02-11', 17, 'https://www.gutenberg.org/ebooks/51175', 'en', 4685), +(13393, 'Journal of a Young Lady of Virginia, 1782', 'Orr, Lucinda Lee', '2007-09-01', 18, 'https://www.gutenberg.org/ebooks/22487', 'en', 6508), +(13394, 'A Charming Fellow, Volume III', 'Trollope, Frances Eleanor', '2011-02-28', 13, 'https://www.gutenberg.org/ebooks/35430', 'en', 61), +(13395, 'Dreamy Hollow: A Long Island Romance', 'Britton, Sumner Charles', '2014-09-30', 23, 'https://www.gutenberg.org/ebooks/47010', 'en', 6509), +(13396, 'The Boy Allies under Two Flags', 'Hayes, Clair W. (Clair Wallace)', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6337', 'en', 4416), +(13397, 'The Lost Guidon\n1911', 'Murfree, Mary Noailles', '2007-11-19', 15, 'https://www.gutenberg.org/ebooks/23555', 'en', 179), +(13398, 'Chambers\'s Edinburgh Journal, No. 307\r\nNew Series, Saturday, November 17, 1849', 'Various', '2015-05-03', 5, 'https://www.gutenberg.org/ebooks/48864', 'en', 18), +(13399, 'How to Enjoy Paris in 1842\nIntended to Serve as a Companion and Monitor, Containing\nHistorical, Political, Commercial, Artistical, Theatrical\nAnd Statistical Information', 'Hervé, Francis', '2006-02-12', 58, 'https://www.gutenberg.org/ebooks/17760', 'en', 2972), +(13400, 'Ultima Thule; or, A Summer in Iceland. vol. 2/2', 'Burton, Richard Francis, Sir', '2019-05-23', 39, 'https://www.gutenberg.org/ebooks/59585', 'en', 280), +(13401, 'The Soul of Susan Yellam', 'Vachell, Horace Annesley', '2011-06-14', 7, 'https://www.gutenberg.org/ebooks/36428', 'en', 432), +(13402, 'The Keepers of the King\'s Peace', 'Wallace, Edgar', '2008-06-15', 92, 'https://www.gutenberg.org/ebooks/25803', 'en', 1020), +(13403, 'Warren Commission (08 of 26): Hearings Vol. VIII (of 15)', 'United States. Warren Commission', '2013-10-20', 8, 'https://www.gutenberg.org/ebooks/44008', 'en', 5679), +(13404, 'Harper\'s Young People, July 11, 1882\nAn Illustrated Weekly', 'Various', '2018-12-12', 1, 'https://www.gutenberg.org/ebooks/58457', 'en', 479), +(13405, 'Blackwood\'s Edinburgh Magazine — Volume 55, No. 341, March, 1844', 'Various', '2005-01-24', 24, 'https://www.gutenberg.org/ebooks/14778', 'en', 711), +(13406, 'Occurrence of the Garter Snake, Thamnophis sirtalis, in the Great Plains and Rocky Mountains', 'Maslin, T. Paul', '2010-09-28', 17, 'https://www.gutenberg.org/ebooks/33966', 'en', 6510), +(13407, 'Ο δεκαπενταετής πλοίαρχος', 'Verne, Jules', '2012-04-16', 12, 'https://www.gutenberg.org/ebooks/39460', 'el', 323), +(13408, 'Rhymes of the Rockies', 'Whilt, James W.', '2016-08-31', 2, 'https://www.gutenberg.org/ebooks/52951', 'en', 6511), +(13409, 'Instant of Decision', 'Garrett, Randall', '2010-04-22', 37, 'https://www.gutenberg.org/ebooks/32088', 'en', 26), +(13410, 'Het Leven der Dieren. Deel 3, Hoofdstuk 5: De Amphibiën', 'Brehm, Alfred Edmund', '2014-02-05', 4, 'https://www.gutenberg.org/ebooks/44834', 'nl', 2360), +(13411, 'Guvernanten Celias minnen', 'Ingelius, Axel Gabriel', '2017-01-04', 4, 'https://www.gutenberg.org/ebooks/53883', 'sv', 61), +(13412, '瞎騙奇聞', 'Wu, Jianren', '2009-01-11', 11, 'https://www.gutenberg.org/ebooks/27768', 'zh', 1003), +(13413, 'Police Operation', 'Piper, H. Beam', '2006-08-16', 75, 'https://www.gutenberg.org/ebooks/19067', 'en', 26), +(13414, 'The Red-headed Man', 'Hume, Fergus', '2017-08-12', 21, 'https://www.gutenberg.org/ebooks/55348', 'en', 1079), +(13415, 'Annan nuoruusvuodet', 'Montgomery, L. M. (Lucy Maud)', '2015-08-16', 25, 'https://www.gutenberg.org/ebooks/49717', 'fi', 2739), +(13416, 'Le culte du moi 2: Un homme libre', 'Barrès, Maurice', '2005-10-07', 17, 'https://www.gutenberg.org/ebooks/16813', 'fr', 298), +(13417, 'The Mountebank', 'Locke, William John', '2005-07-01', 45, 'https://www.gutenberg.org/ebooks/8430', 'en', 6512), +(13418, 'Geological Contemporaneity and Persistent Types of Life', 'Huxley, Thomas Henry', '2001-11-01', 11, 'https://www.gutenberg.org/ebooks/2936', 'en', 4564), +(13419, 'The Esperantist, Vol. 1, No. 1', NULL, '2009-05-08', 27, 'https://www.gutenberg.org/ebooks/28720', 'eo', 3912), +(13420, 'How Women Love (Soul Analysis)', 'Nordau, Max Simon', '2006-08-04', 25, 'https://www.gutenberg.org/ebooks/18989', 'en', 61), +(13421, 'Toby Tyler; Or, Ten Weeks with a Circus', 'Otis, James', '2005-02-01', 26, 'https://www.gutenberg.org/ebooks/7478', 'en', 3617), +(13422, 'The Days of Bruce: A Story from Scottish History. Vol. 1', 'Aguilar, Grace', '2006-05-14', 24, 'https://www.gutenberg.org/ebooks/18387', 'en', 6513), +(13423, 'The Forged Coupon, and Other Stories', 'Tolstoy, Leo, graf', '2006-03-15', 96, 'https://www.gutenberg.org/ebooks/243', 'en', 6514), +(13424, 'Among the Forest People', 'Pierson, Clara Dillingham', '2011-01-15', 89, 'https://www.gutenberg.org/ebooks/34971', 'en', 1096), +(13425, 'Wilhelm Meisters Lehrjahre — Band 4', 'Goethe, Johann Wolfgang von', '2000-09-01', 28, 'https://www.gutenberg.org/ebooks/2338', 'de', 1080), +(13426, 'First Lensman', 'Smith, E. E. (Edward Elmer)', '2015-07-25', 322, 'https://www.gutenberg.org/ebooks/49525', 'en', 5065), +(13427, 'A Practical Guide to Self-Hypnosis', 'Powers, Melvin', '2007-09-30', 250, 'https://www.gutenberg.org/ebooks/22814', 'en', 6515), +(13428, 'The Uninhabited House', 'Riddell, J. H., Mrs.', '2005-08-01', 52, 'https://www.gutenberg.org/ebooks/8602', 'en', 531), +(13429, 'L\'art de payer ses dettes et de satisfaire ses créanciers sans débourser un sou', 'Saint-Hilaire, Emile Marco de', '2008-08-30', 19, 'https://www.gutenberg.org/ebooks/26488', 'fr', 6516), +(13430, 'Deeds that Won the Empire\nHistoric Battle Scenes', 'Fitchett, W. H. (William Henry)', '2006-09-12', 19, 'https://www.gutenberg.org/ebooks/19255', 'en', 6517), +(13431, 'Aesthetical Essays of Friedrich Schiller', 'Schiller, Friedrich', '2004-12-08', 129, 'https://www.gutenberg.org/ebooks/6798', 'en', 2250), +(13432, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 15, July 31, 1858', NULL, '2017-06-11', 6, 'https://www.gutenberg.org/ebooks/54894', 'en', 1741), +(13433, 'Jews and Moors in Spain', 'Krauskopf, Joseph', '2015-11-07', 32, 'https://www.gutenberg.org/ebooks/50408', 'en', 6518), +(13434, 'What\'s-His-Name', 'McCutcheon, George Barr', '2009-04-06', 9, 'https://www.gutenberg.org/ebooks/28512', 'en', 4815), +(13435, 'L\'oeuvre du divin Arétin, première partie\r\nIntroduction et notes par Guillaume Apollinaire', 'Aretino, Pietro', '2013-09-27', 66, 'https://www.gutenberg.org/ebooks/43823', 'fr', 1989), +(13436, 'The War Service of the 1/4 Royal Berkshire Regiment (T. F.)', 'Cruttwell, C. R. M. F. (Charles Robert Mowbray Fraser)', '2007-07-09', 16, 'https://www.gutenberg.org/ebooks/22028', 'en', 4056), +(13437, 'Captain Billy\'s Whiz Bang, Vol. 2. No. 16, January, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2017-11-12', 11, 'https://www.gutenberg.org/ebooks/55946', 'en', 372), +(13438, 'U.S. Copyright Renewals, 1951 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11804', 'en', 4170), +(13439, 'Trumps', 'Curtis, George William', '2005-03-29', 32, 'https://www.gutenberg.org/ebooks/15498', 'en', 61), +(13440, 'The Parthenon at Athens, Greece and at Nashville, Tennessee', 'Wilson, Benjamin Franklin', '2019-01-09', 5, 'https://www.gutenberg.org/ebooks/58665', 'en', 6519), +(13441, 'En ballon! Pendant le siege de Paris', 'Tissandier, Gaston', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/11038', 'fr', 6520), +(13442, 'Vayenne', 'Brebner, Percy James', '2012-05-08', 28, 'https://www.gutenberg.org/ebooks/39652', 'en', 323), +(13443, 'The Real Shelley. New Views of the Poet\'s Life. Vol. 2 (of 2)', 'Jeaffreson, John Cordy', '2012-12-31', 22, 'https://www.gutenberg.org/ebooks/41748', 'en', 6521), +(13444, 'Lebensansichten des Katers Murr\nnebst fragmentarischer Biographie des Kapellmeisters Johannes Kreisler in zufälligen Makulaturblättern', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2012-02-06', 92, 'https://www.gutenberg.org/ebooks/38780', 'de', 6522), +(13445, 'Tales of the Toys, Told by Themselves', 'Broderip, Frances Freeling', '2010-08-07', 8, 'https://www.gutenberg.org/ebooks/33368', 'en', 388), +(13446, 'The History of Don Quixote, Volume 1, Complete', 'Cervantes Saavedra, Miguel de', '2004-07-19', 425, 'https://www.gutenberg.org/ebooks/5921', 'en', 2176), +(13447, 'O Máo Rei e o Bom Subdito: Um Trecho da Historia Portugueza', 'Unknown', '2009-09-03', 18, 'https://www.gutenberg.org/ebooks/29898', 'pt', 6523), +(13448, 'More Stories of the Three Pigs', 'Clark, Sarah Grames', '2015-06-05', 33, 'https://www.gutenberg.org/ebooks/49141', 'en', 388), +(13449, 'Simeon Tetlow\'s Shadow', 'Lee, Jennette', '2016-05-03', 14, 'https://www.gutenberg.org/ebooks/51982', 'en', 1516), +(13450, 'The World English Bible (WEB): Malachi', 'Anonymous', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8266', 'en', 4495), +(13451, 'The Beaver, Vol. 1, No. 05, February, 1921', 'Hudson\'s Bay Company', '2014-09-22', 14, 'https://www.gutenberg.org/ebooks/46935', 'en', 6329), +(13452, 'Épigramme', 'Maynard, François', '2006-10-28', 10, 'https://www.gutenberg.org/ebooks/19631', 'fr', 8), +(13453, 'Essays of Travel', 'Stevenson, Robert Louis', '1996-08-01', 73, 'https://www.gutenberg.org/ebooks/627', 'en', 6524), +(13454, 'Show Business', 'Ellanby, Boyd', '2009-10-06', 31, 'https://www.gutenberg.org/ebooks/30189', 'en', 26), +(13455, 'Old Court Life in France, vol. 2/2', 'Elliot, Frances Minto Dickinson', '2016-01-05', 12, 'https://www.gutenberg.org/ebooks/50850', 'en', 1870), +(13456, 'La familia de León Roch, Tomos 1 y 2', 'Pérez Galdós, Benito', '2015-01-26', 55, 'https://www.gutenberg.org/ebooks/48093', 'es', 1696), +(13457, 'The History of England\nFrom the Accession of Henry III. to the Death of Edward III. (1216-1377)', 'Tout, T. F. (Thomas Frederick)', '2005-09-10', 37, 'https://www.gutenberg.org/ebooks/16679', 'en', 6525), +(13458, 'History of the Sixteenth Connecticut Volunteers', 'Blakeslee, B. F. (Bernard F.)', '2010-04-02', 14, 'https://www.gutenberg.org/ebooks/31867', 'en', 1489), +(13459, 'Gudrun: A Mediaeval Epic', NULL, '2014-06-27', 10, 'https://www.gutenberg.org/ebooks/46109', 'en', 6526), +(13460, 'The Infidel; or, the Fall of Mexico. Vol. I.', 'Bird, Robert Montgomery', '2010-12-01', 15, 'https://www.gutenberg.org/ebooks/34529', 'en', 6180), +(13461, 'A Bird-Lover in the West', 'Miller, Olive Thorne', '2009-01-27', 15, 'https://www.gutenberg.org/ebooks/27902', 'en', 318), +(13462, 'Mémoires de Constant, premier valet de chambre de l\'empereur, sur la vie privée de Napoléon, sa famille et sa cour.', 'Wairy, Louis Constant', '2009-02-24', 20, 'https://www.gutenberg.org/ebooks/28176', 'fr', 6527), +(13463, 'The Westminster Alice', 'Saki', '2018-10-30', 63, 'https://www.gutenberg.org/ebooks/58201', 'en', 6528), +(13464, 'The Burgomaster\'s Wife — Volume 02', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5579', 'en', 1167), +(13465, 'Lénore et autres ballades', 'Bürger, Gottfried August', '2005-02-05', 16, 'https://www.gutenberg.org/ebooks/14912', 'fr', 6529), +(13466, 'My Queen: A Weekly Journal for Young Women. Issue 1. September 29, 1900.\nFrom Farm to Fortune; or Only a Farmer\'s Daughter', 'Sheldon, Lurana', '2018-06-02', 8, 'https://www.gutenberg.org/ebooks/57249', 'en', 6530), +(13467, 'Vuosisatojen perintö 1\nArpaa heitettäissä', 'Elfving, Betty', '2008-06-01', 14, 'https://www.gutenberg.org/ebooks/25669', 'fi', 98), +(13468, 'In the Saddle: A Collection of Poems on Horseback-Riding', 'Various', '2012-03-24', 5, 'https://www.gutenberg.org/ebooks/39236', 'en', 6531), +(13469, 'The World\'s Illusion, Volume 2 (of 2): Ruth', 'Wassermann, Jakob', '2018-09-04', 5, 'https://www.gutenberg.org/ebooks/57847', 'en', 803), +(13470, 'Het Leven der Dieren: Deel 1, Hoofdstuk 04: De Roofdieren', 'Brehm, Alfred Edmund', '2006-12-18', 20, 'https://www.gutenberg.org/ebooks/20129', 'nl', 2360), +(13471, 'The Story of American Aviation', 'Ray, Jim', '2018-10-05', 20, 'https://www.gutenberg.org/ebooks/58033', 'en', 6532), +(13472, 'The Crimson Patch', 'Seaman, Augusta Huiell', '2016-07-06', 8, 'https://www.gutenberg.org/ebooks/52509', 'en', 1388), +(13473, 'Our Railroads To-Morrow', 'Hungerford, Edward', '2012-05-28', 22, 'https://www.gutenberg.org/ebooks/39838', 'en', 1450), +(13474, 'The Bedroom and Boudoir', 'Barker, Lady (Mary Anne)', '2013-01-26', 16, 'https://www.gutenberg.org/ebooks/41922', 'en', 4442), +(13475, 'We of the Never-Never', 'Gunn, Jeannie', '2003-11-01', 92, 'https://www.gutenberg.org/ebooks/4699', 'en', 6533), +(13476, 'The Campaign of Waterloo: A Military History\r\nThird Edition', 'Ropes, John Codman', '2018-04-18', 25, 'https://www.gutenberg.org/ebooks/56995', 'en', 6534), +(13477, 'The Tale of Benny Badger', 'Bailey, Arthur Scott', '2008-02-13', 44, 'https://www.gutenberg.org/ebooks/24589', 'en', 625), +(13478, 'Field\'s Chromatography\nor Treatise on Colours and Pigments as Used by Artists', 'Field, George', '2007-03-27', 52, 'https://www.gutenberg.org/ebooks/20915', 'en', 6535), +(13479, 'శుభలేఖ', 'Ramamohan Rao, Mahidhara', '2012-02-28', 35, 'https://www.gutenberg.org/ebooks/39004', 'te', 61), +(13480, 'Cotton, Its Progress from the Field to the Needle\r\nBeing a brief sketch of the culture of the plant, its picking, cleaning, packing, shipment, and manufacture', 'Anonymous', '2011-07-27', 6, 'https://www.gutenberg.org/ebooks/36870', 'en', 6536), +(13481, 'Monitress Merle', 'Brazil, Angela', '2005-04-01', 53, 'https://www.gutenberg.org/ebooks/7820', 'en', 2154), +(13482, 'Murder at Bridge', 'Austin, Anne', '2006-09-28', 41, 'https://www.gutenberg.org/ebooks/19403', 'en', 128), +(13483, 'The modes of origin of lowest organisms\nincluding a discussion of the experiments of M. Pasteur', 'Bastian, H. Charlton', '2015-07-06', 2, 'https://www.gutenberg.org/ebooks/49373', 'en', 6537), +(13484, 'Upon The Tree-Tops', 'Miller, Olive Thorne', '2010-02-13', 17, 'https://www.gutenberg.org/ebooks/31269', 'en', 318), +(13485, 'The Bible, King James version, Book 54: 1 Timothy', 'Anonymous', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/8054', 'en', 6538), +(13486, 'Nathan der Weise: Ein Dramatisches Gedicht, in fünf Aufzügen', 'Lessing, Gotthold Ephraim', '2005-10-01', 88, 'https://www.gutenberg.org/ebooks/9186', 'de', 402), +(13487, 'Over the Front in an Aeroplane, and Scenes Inside the French and Flemish Trenches', 'Pulitzer, Ralph', '2013-09-05', 13, 'https://www.gutenberg.org/ebooks/43649', 'en', 449), +(13488, 'The Bible in Spain\r\nOr, the Journeys, Adventures, and Imprisonments of an Englishman, in an Attempt to Circulate the Scriptures in the Peninsula', 'Borrow, George', '1996-01-01', 103, 'https://www.gutenberg.org/ebooks/415', 'en', 1514), +(13489, 'Lives of John Donne, Henry Wotton, Rich\'d Hooker, George Herbert, &c, Volume 2', 'Walton, Izaak', '2004-08-08', 29, 'https://www.gutenberg.org/ebooks/13139', 'en', 6539), +(13490, 'The Ministry of Intercession: A Plea for More Prayer', 'Murray, Andrew', '2009-07-02', 74, 'https://www.gutenberg.org/ebooks/29296', 'en', 6540), +(13491, 'Botchan (Master Darling)', 'Natsume, Soseki', '2005-09-01', 208, 'https://www.gutenberg.org/ebooks/8868', 'en', 775), +(13492, 'Von Tripolis nach Alexandrien - 1. Band', 'Rohlfs, Gerhard', '2006-01-24', 9, 'https://www.gutenberg.org/ebooks/17599', 'de', 6541), +(13493, 'Harper\'s Young People, February 3, 1880\nAn Illustrated Weekly', 'Various', '2009-03-16', 7, 'https://www.gutenberg.org/ebooks/28344', 'en', 479), +(13494, 'John of the Woods', 'Brown, Abbie Farwell', '2004-10-31', 21, 'https://www.gutenberg.org/ebooks/13905', 'en', 6542), +(13495, 'The World English Bible (WEB): Jude', 'Anonymous', '2005-06-01', 22, 'https://www.gutenberg.org/ebooks/8292', 'en', 6543), +(13496, 'The First Quarter-Century of Steam Locomotives in North America\r\nRemaining Relics and Operable Replicas with a Catalog of Locomotive Models in the U. S. National Museum. United States National Museum Bulletin 210', 'Oliver, Smith Hempstone', '2016-05-04', 13, 'https://www.gutenberg.org/ebooks/51976', 'en', 6544), +(13497, 'Granny\'s Wonderful Chair', 'Browne, Frances', '2008-07-10', 34, 'https://www.gutenberg.org/ebooks/26018', 'en', 1007), +(13498, 'Duell-Codex', 'Hergsell, Gustav', '2017-03-26', 10, 'https://www.gutenberg.org/ebooks/54438', 'de', 2823), +(13499, 'Micah Clarke - Tome II\nLe Capitaine Micah Clarke', 'Doyle, Arthur Conan', '2006-06-29', 21, 'https://www.gutenberg.org/ebooks/18717', 'fr', 1982), +(13500, 'Normandy', 'Mitton, G. E. (Geraldine Edith)', '2014-12-29', 21, 'https://www.gutenberg.org/ebooks/47813', 'en', 6545), +(13501, 'The Arrow of Gold', 'Conrad, Joseph', '2005-11-01', 5, 'https://www.gutenberg.org/ebooks/9340', 'en', 324), +(13502, 'Sonnets and Canzonets', 'Alcott, Amos Bronson', '2015-01-24', 6, 'https://www.gutenberg.org/ebooks/48067', 'en', 350), +(13503, 'Harper\'s Young People, July 27, 1880\nAn Illustrated Weekly', 'Various', '2009-06-06', 10, 'https://www.gutenberg.org/ebooks/29050', 'en', 479), +(13504, 'The Lost Mine of the Amazon: A Hal Keen Mystery Story', 'Fitzhugh, Percy Keese', '2015-09-17', 37, 'https://www.gutenberg.org/ebooks/49989', 'en', 167), +(13505, 'Astounding Stories, June, 1931', 'Various', '2010-04-05', 119, 'https://www.gutenberg.org/ebooks/31893', 'en', 842), +(13506, 'Histoire de Sibylle', 'Feuillet, Octave', '2008-10-07', 10, 'https://www.gutenberg.org/ebooks/26824', 'fr', 687), +(13507, 'Hypatia — or New Foes with an Old Face', 'Kingsley, Charles', '2004-08-01', 83, 'https://www.gutenberg.org/ebooks/6308', 'en', 6546), +(13508, 'The German Classics of the Nineteenth and Twentieth Centuries\nMasterpieces of German Literature Vol. 19', NULL, '2010-01-12', 39, 'https://www.gutenberg.org/ebooks/30941', 'en', 4972), +(13509, 'The War History of the 4th Battalion, the London Regiment (Royal Fusiliers), 1914-1919', 'Grimwade, F. Clive', '2015-09-30', 8, 'https://www.gutenberg.org/ebooks/50098', 'en', 6547), +(13510, 'Een en ander over het dorpsleven in Transvaal\nDe Aarde en haar Volken, 1917', 'Uitlander', '2009-02-25', 13, 'https://www.gutenberg.org/ebooks/28182', 'nl', 6548), +(13511, 'Concerning Christian Liberty; with Letter of Martin Luther to Pope Leo X.', 'Luther, Martin', '2006-02-26', 149, 'https://www.gutenberg.org/ebooks/1911', 'en', 6549), +(13512, 'Determinism or Free-Will?', 'Cohen, Chapman', '2011-09-08', 41, 'https://www.gutenberg.org/ebooks/37358', 'en', 6550), +(13513, 'Minstrelsy of the Scottish Border, Volume 3 (of 3)\r\nConsisting of Historical and Romantic Ballads, Collected in the Southern Counties of Scotland; with a Few of Modern Date, Founded Upon Local Tradition', 'Scott, Walter', '2014-05-27', 29, 'https://www.gutenberg.org/ebooks/45778', 'en', 6551), +(13514, 'Свет', 'Nušić, Branislav', '2005-02-10', 23, 'https://www.gutenberg.org/ebooks/15008', 'sr', 402), +(13515, 'Paris Anecdote\nAvec une préface et des notes par Charles Monselet', 'Privat d\'Anglemont, A. (Alexandre)', '2019-05-12', 16, 'https://www.gutenberg.org/ebooks/59327', 'fr', 2243), +(13516, 'The Wolves of God, and Other Fey Stories', 'Wilson, Wilfred', '2011-12-15', 69, 'https://www.gutenberg.org/ebooks/38310', 'en', 114), +(13517, 'The Book of Joyous Children', 'Riley, James Whitcomb', '2005-05-16', 7, 'https://www.gutenberg.org/ebooks/15834', 'en', 1209), +(13518, 'The Wreck of the Grosvenor, Volume 2 of 3\r\nAn account of the mutiny of the crew and the loss of the ship when trying to make the Bermudas', 'Russell, William Clark', '2013-12-24', 15, 'https://www.gutenberg.org/ebooks/44498', 'en', 702), +(13519, 'Notes and Queries, Vol. V, Number 123, March 6, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-20', 16, 'https://www.gutenberg.org/ebooks/40804', 'en', 105), +(13520, '\"Tee työ ja opi pelaamaan!\"', 'Kivinen, Ilmari', '2019-03-24', 6, 'https://www.gutenberg.org/ebooks/59115', 'fi', 175), +(13521, 'The Red House on Rowan Street', 'Long, Lily A. (Lily Augusta)', '2018-04-11', 10, 'https://www.gutenberg.org/ebooks/56961', 'en', 109), +(13522, 'The World\'s Greatest Books — Volume 03 — Fiction', NULL, '2004-01-01', 160, 'https://www.gutenberg.org/ebooks/10748', 'en', 61), +(13523, 'The Life and Letters of Mary Wollstonecraft Shelley, Volume 2 (of 2)', 'Marshall, Julian, Mrs.', '2011-11-08', 30, 'https://www.gutenberg.org/ebooks/37956', 'en', 53), +(13524, 'The Lone Ranger Rides', 'Striker, Fran', '2012-06-18', 42, 'https://www.gutenberg.org/ebooks/40038', 'en', 315), +(13525, 'La fabrique de mariages, Vol. 2', 'Féval, Paul', '2011-11-24', 15, 'https://www.gutenberg.org/ebooks/38122', 'fr', 298), +(13526, 'Oriental Women', 'Pollard, Edward B.', '2010-05-18', 28, 'https://www.gutenberg.org/ebooks/32418', 'en', 6552), +(13527, 'The Youth of the Great Elector', 'Schmidt, Ferdinand', '2019-07-17', 61, 'https://www.gutenberg.org/ebooks/59929', 'en', 6553), +(13528, 'Experiences of a Dug-out, 1914-1918', 'Callwell, C. E. (Charles Edward), Sir', '2007-06-14', 30, 'https://www.gutenberg.org/ebooks/21833', 'en', 6554), +(13529, 'The Mathematical Analysis of Logic\nBeing an Essay Towards a Calculus of Deductive Reasoning', 'Boole, George', '2011-07-28', 354, 'https://www.gutenberg.org/ebooks/36884', 'en', 4797), +(13530, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 710\nAugust 4, 1877', 'Various', '2015-07-07', 10, 'https://www.gutenberg.org/ebooks/49387', 'en', 18), +(13531, 'The Book of the Thousand Nights and a Night — Volume 14', NULL, '2002-09-01', 71, 'https://www.gutenberg.org/ebooks/3448', 'en', 1007), +(13532, 'A Study of Association in Insanity', 'Rosanoff, A. J. (Aaron Joshua)', '2005-10-01', 58, 'https://www.gutenberg.org/ebooks/9172', 'en', 6555), +(13533, 'Sukelluslaivalla maapallon ympäri', 'Verne, Jules', '2015-02-14', 24, 'https://www.gutenberg.org/ebooks/48255', 'fi', 26), +(13534, 'On the Trail: An Outdoor Book for Girls', 'Beard, Lina', '2006-06-07', 112, 'https://www.gutenberg.org/ebooks/18525', 'en', 2155), +(13535, 'The Lost Trail', 'Ellis, Edward Sylvester', '2004-11-01', 72, 'https://www.gutenberg.org/ebooks/6906', 'en', 4141), +(13536, 'Joe\'s Luck; Or, Always Wide Awake', 'Alger, Horatio, Jr.', '2004-07-05', 40, 'https://www.gutenberg.org/ebooks/12823', 'en', 195), +(13537, 'Graham\'s Magazine Vol XXXII. No. 5. May 1848', 'Various', '2009-06-28', 19, 'https://www.gutenberg.org/ebooks/29262', 'en', 380), +(13538, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Siebenter Band: enthaltend Kapitel 13 und 14.', 'Macaulay, Thomas Babington Macaulay, Baron', '2016-03-06', 10, 'https://www.gutenberg.org/ebooks/51378', 'de', 641), +(13539, 'Work and Win; Or, Noddy Newman on a Cruise', 'Optic, Oliver', '2007-12-07', 29, 'https://www.gutenberg.org/ebooks/23758', 'en', 6556), +(13540, 'Index of the Project Gutenberg Works of Robert Burns', 'Burns, Robert', '2019-05-21', 18, 'https://www.gutenberg.org/ebooks/59571', 'en', 198), +(13541, '漢宮秋', 'Ma, Zhiyuan', '2016-05-31', 12, 'https://www.gutenberg.org/ebooks/52199', 'zh', 6557), +(13542, 'One Of Them', 'Lever, Charles James', '2010-06-16', 7, 'https://www.gutenberg.org/ebooks/32840', 'en', 61), +(13543, 'At the Mercy of Tiberius', 'Evans, Augusta J. (Augusta Jane)', '2003-07-01', 16, 'https://www.gutenberg.org/ebooks/4209', 'en', 6558), +(13544, 'Amar es vencer', 'Caro, Madame P.', '2008-03-27', 19, 'https://www.gutenberg.org/ebooks/24925', 'es', 1696), +(13545, 'Autobiography of Z. S. Hastings', 'Hastings, Z. S. (Zachariah Simpson)', '2010-09-24', 6, 'https://www.gutenberg.org/ebooks/33992', 'en', 414), +(13546, 'Poetry of the Supernatural', NULL, '2012-04-20', 7, 'https://www.gutenberg.org/ebooks/39494', 'en', 6559), +(13547, 'Harper\'s Round Table, March 3, 1896', 'Various', '2018-02-11', 1, 'https://www.gutenberg.org/ebooks/56539', 'en', 668), +(13548, 'The Vanishing of Betty Varian', 'Wells, Carolyn', '2014-06-07', 14, 'https://www.gutenberg.org/ebooks/45912', 'en', 61), +(13549, 'Make Mine Homogenized', 'Raphael, Rick', '2008-01-02', 44, 'https://www.gutenberg.org/ebooks/24119', 'en', 26), +(13550, 'Het kaatsspel\r\nhandleiding met historische aanteekeningen en kaatszangen', 'Westra, Willem', '2012-01-10', 6, 'https://www.gutenberg.org/ebooks/38546', 'nl', 6560), +(13551, 'The Sanitary Condition of the Poor in Relation to Disease, Poverty, and Crime\r\nWith an appendix on the control and prevention of infectious diseases', 'Baker, Benson', '2017-01-03', 18, 'https://www.gutenberg.org/ebooks/53877', 'en', 6561), +(13552, 'The Works of Edgar Allan Poe, Volume 5', 'Poe, Edgar Allan', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9516', 'en', 50), +(13553, 'French Polishing and Enamelling: A Practical Work of Instruction', 'Bitmead, Richard', '2006-03-06', 63, 'https://www.gutenberg.org/ebooks/17935', 'en', 6562), +(13554, 'T. B. Peterson\'s List of Publications (1857)', 'T.B. Peterson & Brothers (Philadelphia, Pa.)', '2015-04-03', 10, 'https://www.gutenberg.org/ebooks/48631', 'en', 6563), +(13555, '¡Caiñgat Cayo!\r\nSa mañga masasamang libro,t, casulatan', 'Rodriguez, Fr. José', '2006-04-10', 13, 'https://www.gutenberg.org/ebooks/18141', 'tl', 6564), +(13556, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 22. October, 1878.', 'Various', '2006-08-21', 11, 'https://www.gutenberg.org/ebooks/19093', 'en', 162), +(13557, 'Through Palestine with the Twentieth Machine Gun Squadron', 'Unknown', '2005-11-19', 20, 'https://www.gutenberg.org/ebooks/17109', 'en', 6565), +(13558, 'Dryden\'s Works Vol. 08 (of 18)', 'Dryden, John', '2014-12-16', 25, 'https://www.gutenberg.org/ebooks/47679', 'en', 126), +(13559, 'Menotah: A Tale of the Riel Rebellion', 'Trevena, John', '2011-02-12', 17, 'https://www.gutenberg.org/ebooks/35259', 'en', 6566), +(13560, 'The Emigrant\nor Reflections While Descending the Ohio', 'Thomas, Frederick W. (Frederick William)', '2009-08-04', 10, 'https://www.gutenberg.org/ebooks/29606', 'en', 6567), +(13561, 'The Man-Eaters of Tsavo, and Other East African Adventures', 'Patterson, J. H. (John Henry)', '2003-03-01', 170, 'https://www.gutenberg.org/ebooks/3810', 'en', 6568), +(13562, 'Six Women and the Invasion', 'Méléra, Marguerite-Yerta', '2011-01-16', 53, 'https://www.gutenberg.org/ebooks/34985', 'en', 449), +(13563, 'The Argosy, Vol. 51, No. 3, March, 1891', 'Various', '2006-05-11', 16, 'https://www.gutenberg.org/ebooks/18373', 'en', 5498), +(13564, 'Miscellaneous Papers', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9724', 'en', 20), +(13565, 'Le Tour du Monde; Pondichéry\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-11-21', 11, 'https://www.gutenberg.org/ebooks/30519', 'fr', 1182), +(13566, 'The Kingdom of Georgia: Notes of travel in a land of women, wine, and song', 'Wardrop, John Oliver', '2015-03-04', 17, 'https://www.gutenberg.org/ebooks/48403', 'en', 6569), +(13567, 'Manifest der Kommunistischen Partei', 'Engels, Friedrich', '2007-12-01', 21, 'https://www.gutenberg.org/ebooks/23932', 'de', 260), +(13568, 'The English Lakes', 'Bradley, A. G. (Arthur Granville)', '2013-02-20', 14, 'https://www.gutenberg.org/ebooks/42139', 'en', 6570), +(13569, 'Analyzing Character\r\nThe New Science of Judging Men; Misfits in Business, the Home and Social Life', 'Newcomb, Arthur', '2004-06-01', 47, 'https://www.gutenberg.org/ebooks/12649', 'en', 6571), +(13570, 'The Motor Maids by Rose, Shamrock and Thistle', 'Stokes, Katherine', '2011-04-12', 17, 'https://www.gutenberg.org/ebooks/35857', 'en', 6572), +(13571, 'Benedetto Croce: An Introduction to His Philosophy', 'Piccoli, Raffaello', '2017-06-07', 13, 'https://www.gutenberg.org/ebooks/54860', 'en', 6573), +(13572, 'The Project Gutenberg Works of Flavius Josephus: An Index', 'Josephus, Flavius', '2009-07-17', 75, 'https://www.gutenberg.org/ebooks/29434', 'en', 198), +(13573, 'Great Porter Square: A Mystery. v. 1', 'Farjeon, B. L. (Benjamin Leopold)', '2013-06-10', 18, 'https://www.gutenberg.org/ebooks/42905', 'en', 61), +(13574, 'Le lettere di Michelangelo Buonarroti', 'Michelangelo Buonarroti', '2014-08-16', 53, 'https://www.gutenberg.org/ebooks/46599', 'it', 6574), +(13575, 'The Works of the Rev. John Wesley, Vol. 1 (of 32)', 'Wesley, John', '2019-06-12', 71, 'https://www.gutenberg.org/ebooks/59743', 'en', 6575), +(13576, 'Some Everyday Folk and Dawn', 'Franklin, Miles', '2007-06-01', 26, 'https://www.gutenberg.org/ebooks/21659', 'en', 792), +(13577, 'Round about a Pound a Week', 'Pember Reeves, Mrs.', '2019-01-13', 7, 'https://www.gutenberg.org/ebooks/58691', 'en', 6576), +(13578, 'Collection complète des oeuvres de l\'Abbé de Mably, Volume 1 (of 15)', 'Mably, Gabriel Bonnot de', '2016-10-14', 23, 'https://www.gutenberg.org/ebooks/53279', 'fr', 924), +(13579, 'Young Lives', 'Le Gallienne, Richard', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/10922', 'en', 137), +(13580, 'The Rise of the Dutch Republic — Volume 07: 1561-62', 'Motley, John Lothrop', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/4807', 'en', 6577), +(13581, 'Commentary on the Epistle to the Galatians', 'Luther, Martin', '1998-12-01', 290, 'https://www.gutenberg.org/ebooks/1549', 'en', 6578), +(13582, 'Oregon and Eldorado; or, Romance of the Rivers', 'Bulfinch, Thomas', '2012-02-06', 17, 'https://www.gutenberg.org/ebooks/38774', 'en', 6579), +(13583, 'Journeys and Experiences in Argentina, Paraguay, and Chile\nIncluding a Side Trip to the Source of the Paraguay River in the State of Matto Grosso, Brazil, and a Journey Across the Andes to the Rio Tambo in Peru', 'Stephens, Henry', '2014-01-18', 44, 'https://www.gutenberg.org/ebooks/44692', 'en', 227), +(13584, 'Object: matrimony', 'Glass, Montague', '2011-09-08', 26, 'https://www.gutenberg.org/ebooks/37360', 'en', 6199), +(13585, 'The School for Scandal', 'Sheridan, Richard Brinsley', '1999-10-01', 176, 'https://www.gutenberg.org/ebooks/1929', 'en', 6580), +(13586, 'Shakspeare and His Times [Vol. 1 of 2]\r\nIncluding the Biography of the Poet; criticisms on his genius and writings; a new chronology of his plays; a disquisition on the on the object of his sonnets; and a history of the manners, customs, and amusements, superstitions, poetry, and elegant literature of his age', 'Drake, Nathan', '2016-11-28', 16, 'https://www.gutenberg.org/ebooks/53625', 'en', 3360), +(13587, 'The Unity of Western Civilization', NULL, '2005-02-12', 28, 'https://www.gutenberg.org/ebooks/15030', 'en', 6581), +(13588, 'The Gold Trail', 'Bindloss, Harold', '2007-04-23', 17, 'https://www.gutenberg.org/ebooks/21205', 'en', 6582), +(13589, 'Diana of the Crossways — Volume 3', 'Meredith, George', '2003-09-01', 24, 'https://www.gutenberg.org/ebooks/4467', 'en', 1061), +(13590, 'The Boy Scouts of Lakeville High', 'Quirk, Leslie W.', '2014-05-24', 25, 'https://www.gutenberg.org/ebooks/45740', 'en', 6583), +(13591, 'Celebrated Travels and Travellers, Part 1.\r\nThe Exploration of the World', 'Verne, Jules', '2008-03-07', 64, 'https://www.gutenberg.org/ebooks/24777', 'en', 2320), +(13592, 'The Boats of the \"Glen Carrig\"\r\nBeing an account of their Adventures in the Strange places of the Earth, after the foundering of the good ship Glen Carrig through striking upon a hidden rock in the unknown seas to the Southward; as told by John Winterstraw, Gent., to his son James Winterstraw, in the year 1757, and by him committed very properly and legibly to manuscript', 'Hodgson, William Hope', '2003-12-01', 176, 'https://www.gutenberg.org/ebooks/10542', 'en', 194), +(13593, 'Uroita: Kreikkalaisia sankaritaruja', 'Kingsley, Charles', '2018-06-07', 22, 'https://www.gutenberg.org/ebooks/57285', 'fi', 2139), +(13594, 'Post-Impressions: An Irresponsible Chronicle', 'Strunsky, Simeon', '2012-07-14', 17, 'https://www.gutenberg.org/ebooks/40232', 'en', 20), +(13595, 'The First Part of King Henry the Fourth', 'Shakespeare, William', '1997-11-01', 31, 'https://www.gutenberg.org/ebooks/1115', 'en', 6584), +(13596, 'The History of the Post Office, from Its Establishment Down to 1836', 'Joyce, Herbert', '2011-12-17', 15, 'https://www.gutenberg.org/ebooks/38328', 'en', 1179), +(13597, 'The Irish Constitution\nExplained by Darrell Figgis', 'Figgis, Darrell', '2010-05-30', 15, 'https://www.gutenberg.org/ebooks/32612', 'en', 6585), +(13598, 'The Laughing Willow\nVerses and Pictures', 'Herford, Oliver', '2018-01-11', 25, 'https://www.gutenberg.org/ebooks/56357', 'en', 2100), +(13599, 'American Negro Slavery\nA Survey of the Supply, Employment and Control of Negro Labor as Determined by the Plantation Regime', 'Phillips, Ulrich Bonnell', '2004-03-01', 51, 'https://www.gutenberg.org/ebooks/11490', 'en', 6586), +(13600, 'Apis Mellifica; or, The Poison of the Honey-Bee, Considered as a Therapeutic Agent', 'Wolf, C. W.', '2008-07-10', 13, 'https://www.gutenberg.org/ebooks/26020', 'en', 6587), +(13601, 'Odd Craft, Complete', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 67, 'https://www.gutenberg.org/ebooks/12215', 'en', 1902), +(13602, 'The Works of Aphra Behn, Volume V', 'Behn, Aphra', '2009-08-30', 193, 'https://www.gutenberg.org/ebooks/29854', 'en', 6588), +(13603, 'Yllätys y. m. kertomuksia Alaskasta', 'London, Jack', '2013-04-20', 6, 'https://www.gutenberg.org/ebooks/42565', 'fi', 535), +(13604, 'The Belgian Twins', 'Perkins, Lucy Fitch', '2003-01-01', 40, 'https://www.gutenberg.org/ebooks/3642', 'en', 6589), +(13605, 'Froebel\'s Gifts', 'Wiggin, Kate Douglas Smith', '2010-01-27', 31, 'https://www.gutenberg.org/ebooks/31097', 'en', 6590), +(13606, 'The Lone Wolf: A Melodrama', 'Vance, Louis Joseph', '2005-11-01', 41, 'https://www.gutenberg.org/ebooks/9378', 'en', 3657), +(13607, 'Христо Ботев, Стихотворения', 'Botev, Khristo', '2001-08-01', 30, 'https://www.gutenberg.org/ebooks/2790', 'bg', 8), +(13608, 'Pathfinders of the Great Plains: A Chronicle of La Vérendrye and his Sons', 'Burpee, Lawrence J. (Lawrence Johnstone)', '2009-10-01', 18, 'https://www.gutenberg.org/ebooks/30145', 'en', 6591), +(13609, 'Young Swaigder; or, The Force of Runes, and Other Ballads', 'Borrow, George', '2009-05-29', 17, 'https://www.gutenberg.org/ebooks/28986', 'en', 4390), +(13610, 'Alone in West Africa', 'Gaunt, Mary', '2017-03-21', 15, 'https://www.gutenberg.org/ebooks/54400', 'en', 1332), +(13611, 'Six Prize Hawaiian Stories of the Kilohana Art League', 'Dillingham, Emma Louise Smith', '2011-03-01', 9, 'https://www.gutenberg.org/ebooks/35437', 'en', 6592), +(13612, 'The Prussian Officer', 'Lawrence, D. H. (David Herbert)', '2007-08-31', 73, 'https://www.gutenberg.org/ebooks/22480', 'en', 61), +(13613, 'An Introductorie for to Lerne to Read, To Pronounce, and to Speke French Trewly', 'Du Wés, Giles', '2009-06-08', 20, 'https://www.gutenberg.org/ebooks/29068', 'en', 6593), +(13614, 'Pikku miehiä', 'Alcott, Louisa May', '2016-02-10', 4, 'https://www.gutenberg.org/ebooks/51172', 'fi', 1779), +(13615, 'Pee-wee Harris Adrift', 'Fitzhugh, Percy Keese', '2006-02-14', 13, 'https://www.gutenberg.org/ebooks/17767', 'en', 2994), +(13616, 'Nuala O\'Malley', 'Bedford-Jones, H. (Henry)', '2010-01-15', 25, 'https://www.gutenberg.org/ebooks/30979', 'en', 6594), +(13617, 'The Motor Boat Club off Long Island; or, A Daring Marine Game at Racing Speed', 'Hancock, H. Irving (Harrie Irving)', '2015-05-03', 13, 'https://www.gutenberg.org/ebooks/48863', 'en', 6595), +(13618, 'The Phantom Of Bogue Holauba\n1911', 'Murfree, Mary Noailles', '2007-11-19', 15, 'https://www.gutenberg.org/ebooks/23552', 'en', 3814), +(13619, 'Amanda: A Daughter of the Mennonites', 'Myers, Anna Balmer', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6330', 'en', 6596), +(13620, 'Ainslee\'s magazine, Volume 16, No. 3, October, 1905', 'Various', '2014-10-02', 33, 'https://www.gutenberg.org/ebooks/47017', 'en', 6597), +(13621, 'The Countess of Charny; or, The Execution of King Louis XVI', 'Dumas, Alexandre', '2013-05-21', 31, 'https://www.gutenberg.org/ebooks/42757', 'en', 6598), +(13622, 'Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 3', 'Stedman, John Gabriel', '2005-05-01', 6, 'https://www.gutenberg.org/ebooks/8098', 'nl', 5102), +(13623, 'Such Is Life', 'Furphy, Joseph', '2002-10-01', 38, 'https://www.gutenberg.org/ebooks/3470', 'en', 792), +(13624, 'Chocolate: or, An Indian Drinke', 'Colmenero de Ledesma, Antonio', '2008-08-01', 1, 'https://www.gutenberg.org/ebooks/26212', 'en', 5682), +(13625, 'Crime: Its Cause and Treatment', 'Darrow, Clarence', '2004-04-01', 65, 'https://www.gutenberg.org/ebooks/12027', 'en', 5050), +(13626, 'Boy Scout Explorers at Headless Hollow', 'Palmer, Don', '2017-04-29', 9, 'https://www.gutenberg.org/ebooks/54632', 'en', 323), +(13627, 'The Adventurers of England on Hudson Bay\r\nA Chronicle of the Fur Trade in the North', 'Laut, Agnes C.', '2009-10-31', 33, 'https://www.gutenberg.org/ebooks/30377', 'en', 1070), +(13628, 'The Literature and History of New Testament Times', 'Machen, J. Gresham (John Gresham)', '2013-09-10', 59, 'https://www.gutenberg.org/ebooks/43685', 'en', 6599), +(13629, 'The Story of the Living Machine\nA Review of the Conclusions of Modern Biology in Regard\nto the Mechanism Which Controls the Phenomena of Living\nActivity', 'Conn, H. W. (Herbert William)', '2005-08-08', 38, 'https://www.gutenberg.org/ebooks/16487', 'en', 6175), +(13630, 'The Mentor: The Metropolitan Museum of Art, Vol. 6, Num. 9, Serial No. 157, June 15, 1918', 'Noe, Sydney P. (Sydney Philip)', '2016-03-01', 7, 'https://www.gutenberg.org/ebooks/51340', 'en', 6600), +(13631, 'Manor', 'Ulrichs, Karl Heinrich', '2011-03-18', 27, 'https://www.gutenberg.org/ebooks/35605', 'de', 179), +(13632, 'From Jest to Earnest', 'Roe, Edward Payson', '2004-07-01', 20, 'https://www.gutenberg.org/ebooks/6102', 'en', 61), +(13633, 'Ballads and Poems of Tragic Life', 'Meredith, George', '2014-10-29', 13, 'https://www.gutenberg.org/ebooks/47225', 'en', 54), +(13634, 'Hernani', 'Hugo, Victor', '2006-02-01', 62, 'https://www.gutenberg.org/ebooks/9976', 'fr', 6601), +(13635, 'The Laughter of Peterkin: A retelling of old tales of the Celtic Wonderworld', 'Sharp, William', '2015-10-23', 20, 'https://www.gutenberg.org/ebooks/50292', 'en', 3203), +(13636, 'Lettre de m. l\'abbé Fortis à mylord comte de Bute, sur les moeurs et usages des Morlaques, appellés Montenegrins', 'Fortis, Alberto', '2006-01-20', 29, 'https://www.gutenberg.org/ebooks/17555', 'fr', 6602), +(13637, 'Punch, or the London Charivari, Vol. 146, February 25, 1914', 'Various', '2007-12-07', 4, 'https://www.gutenberg.org/ebooks/23760', 'en', 134), +(13638, 'The Wreck on the Andamans', 'Darvall, Joseph', '2009-03-22', 15, 'https://www.gutenberg.org/ebooks/28388', 'en', 6603), +(13639, 'Notes and Queries, Vol. IV, Number 104, October 25, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-02-18', 9, 'https://www.gutenberg.org/ebooks/38926', 'en', 105), +(13640, 'The French Army from Within', 'Anonymous', '2016-10-31', 9, 'https://www.gutenberg.org/ebooks/53417', 'en', 6604), +(13641, 'A Maid of Many Moods', 'Sheard, Virna', '2011-08-21', 22, 'https://www.gutenberg.org/ebooks/37152', 'en', 585), +(13642, 'A Tramp Abroad — Volume 06', 'Twain, Mark', '2004-06-18', 15, 'https://www.gutenberg.org/ebooks/5787', 'en', 2035), +(13643, 'A Fortunate Term', 'Brazil, Angela', '2011-05-10', 26, 'https://www.gutenberg.org/ebooks/36080', 'en', 6605), +(13644, 'The Fern Bulletin, October 1903\nA Quarterly Devoted to Ferns', 'Various', '2018-04-11', 4, 'https://www.gutenberg.org/ebooks/56959', 'en', 1230), +(13645, 'The Seigneurs of Old Canada : A Chronicle of New World Feudalism', 'Munro, William Bennett', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/4655', 'en', 6606), +(13646, 'The National Cook Book, 9th ed.', 'Peterson, Hannah Mary (Bouvier)', '2014-05-03', 25, 'https://www.gutenberg.org/ebooks/45572', 'en', 103), +(13647, 'Young Folks\' Treasury, Volume 2 (of 12)\r\nMyths and Legendary Heroes', NULL, '2005-02-28', 54, 'https://www.gutenberg.org/ebooks/15202', 'en', 6171), +(13648, 'The Cock-House at Fellsgarth', 'Reed, Talbot Baines', '2007-04-11', 28, 'https://www.gutenberg.org/ebooks/21037', 'en', 2526), +(13649, 'Extinct Birds\r\nAn attempt to unite in one volume a short account of those Birds which have become extinct in historical times', 'Rothschild, Lionel Walter Rothschild, Baron', '2012-06-15', 22, 'https://www.gutenberg.org/ebooks/40000', 'en', 318), +(13650, 'Elizabeth and Her German Garden', 'Von Arnim, Elizabeth', '1998-05-01', 114, 'https://www.gutenberg.org/ebooks/1327', 'en', 6607), +(13651, 'The Tale of the The Muley Cow\nSlumber-Town Tales', 'Bailey, Arthur Scott', '2008-02-08', 25, 'https://www.gutenberg.org/ebooks/24545', 'en', 6608), +(13652, 'The Former Philippines thru Foreign Eyes', 'Comyn, Tomás de', '2004-01-01', 69, 'https://www.gutenberg.org/ebooks/10770', 'en', 4987), +(13653, 'Neither Here Nor There', 'Herford, Oliver', '2017-12-11', 31, 'https://www.gutenberg.org/ebooks/56165', 'en', 190), +(13654, 'Five Little Friends', 'Adams, Sherred Willcox', '2008-05-17', 9, 'https://www.gutenberg.org/ebooks/25497', 'en', 1655), +(13655, 'The Rock Ahead: A Novel. (Vol. 1 of 2)', 'Yates, Edmund', '2019-07-15', 81, 'https://www.gutenberg.org/ebooks/59911', 'en', 61), +(13656, 'A Yankee Flier with the R.A.F.', 'Montgomery, Rutherford G. (Rutherford George)', '2010-05-19', 28, 'https://www.gutenberg.org/ebooks/32420', 'en', 6609), +(13657, 'Noorwegens Letterkunde in de Negentiende Eeuw', 'Boer, R. C. (Richard Constant)', '2004-10-04', 11, 'https://www.gutenberg.org/ebooks/13591', 'nl', 6610), +(13658, 'Frank Reade Jr.\'s Air Wonder, The \"Kite\"; Or, A Six Weeks\' Flight Over the Andes', 'Senarens, Luis', '2017-02-28', 12, 'https://www.gutenberg.org/ebooks/54256', 'en', 6611), +(13659, 'Othello', 'Shakespeare, William', '2006-04-15', 26, 'https://www.gutenberg.org/ebooks/18179', 'fr', 6612), +(13660, 'I filtrati dolci\r\nMonografia della filtrazione dei mosti e della preparazione dei cosidetti \"filtrati dolci\" e \"lambiccati\".', 'De-Astis, Giuseppe', '2019-08-05', 254, 'https://www.gutenberg.org/ebooks/60063', 'it', 649), +(13661, 'Captain Pott\'s Minister', 'Cooper, Francis L. (Francis Le Roy)', '2009-12-19', 20, 'https://www.gutenberg.org/ebooks/30713', 'en', 61), +(13662, 'Le vergini: commedia in quattro atti', 'Praga, Marco', '2015-03-30', 8, 'https://www.gutenberg.org/ebooks/48609', 'it', 4296), +(13663, 'The Cleverdale Mystery; or, The Machine and Its Wheels: A Story of American Life', 'Wilkins, W. A.', '2013-03-14', 6, 'https://www.gutenberg.org/ebooks/42333', 'en', 2287), +(13664, 'The Old Northwest: A Chronicle of the Ohio Valley and Beyond', 'Ogg, Frederic Austin', '2002-01-01', 23, 'https://www.gutenberg.org/ebooks/3014', 'en', 6613), +(13665, 'Diffinição da sécia', 'Anonymous', '2008-09-20', 7, 'https://www.gutenberg.org/ebooks/26676', 'pt', 6614), +(13666, 'The American Missionary — Volume 34, No. 3, March, 1880', 'Various', '2017-08-19', 3, 'https://www.gutenberg.org/ebooks/55384', 'en', 562), +(13667, 'The Jute Industry: From Seed to Finished Cloth', 'Kilgour, Peter', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/12443', 'en', 6615), +(13668, 'Robin', 'Burnett, Frances Hodgson', '2006-07-30', 62, 'https://www.gutenberg.org/ebooks/18945', 'en', 2902), +(13669, 'Lemorne Versus Huell', 'Stoddard, Elizabeth', '1997-04-01', 52, 'https://www.gutenberg.org/ebooks/881', 'en', 348), +(13670, 'Thaddeus of Warsaw', 'Porter, Jane', '2004-09-01', 30, 'https://www.gutenberg.org/ebooks/6566', 'en', 6616), +(13671, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 15', 'Dryden, John', '2014-12-12', 27, 'https://www.gutenberg.org/ebooks/47641', 'en', 1201), +(13672, 'The Colonel of the Red Huzzars', 'Scott, John Reed', '2005-11-22', 38, 'https://www.gutenberg.org/ebooks/17131', 'en', 6617), +(13673, 'The Lady Doc', 'Lockhart, Caroline', '2007-11-03', 43, 'https://www.gutenberg.org/ebooks/23304', 'en', 3286), +(13674, 'Simon the Jester', 'Locke, William John', '2006-04-13', 36, 'https://www.gutenberg.org/ebooks/3828', 'en', 1697), +(13675, 'La Esfinge Maragata: Novela', 'Espina, Concha', '2016-04-10', 34, 'https://www.gutenberg.org/ebooks/51724', 'es', 1384), +(13676, 'Clown, the Circus Dog', 'Vimar, A. (Auguste)', '2014-09-07', 8, 'https://www.gutenberg.org/ebooks/46793', 'en', 766), +(13677, 'A New Astronomy', 'Todd, David P. (David Peck)', '2011-02-13', 88, 'https://www.gutenberg.org/ebooks/35261', 'en', 1683), +(13678, 'Riley Love-Lyrics', 'Riley, James Whitcomb', '2006-11-23', 10, 'https://www.gutenberg.org/ebooks/19897', 'en', 350), +(13679, 'The Malady of the Century', 'Nordau, Max Simon', '2003-07-01', 14, 'https://www.gutenberg.org/ebooks/4231', 'en', 282), +(13680, 'The London Mercury, Vol. I, Nos. 1-6, November 1919 to April 1920', 'Various', '2014-03-11', 55, 'https://www.gutenberg.org/ebooks/45116', 'en', 2370), +(13681, 'The American Missionary — Volume 48, No. 10, October, 1894', 'Various', '2005-04-20', 2, 'https://www.gutenberg.org/ebooks/15666', 'en', 395), +(13682, 'Thy Rocks and Rills', 'Gilbert, Robert E.', '2010-06-18', 15, 'https://www.gutenberg.org/ebooks/32878', 'en', 26), +(13683, 'Signs & Wonders', 'Beresford, J. D. (John Davys)', '2019-05-19', 55, 'https://www.gutenberg.org/ebooks/59549', 'en', 230); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(13684, 'Captain Mugford: Our Salt and Fresh Water Tutors', 'Kingston, William Henry Giles', '2007-05-15', 19, 'https://www.gutenberg.org/ebooks/21453', 'en', 195), +(13685, 'Trovas do Bandarra\r\nnatural da Villa de Trancoso, apuradas e impressas por ordem de um grande senhor de Portugal', 'Bandarra, Gonçalo Anes', '2007-02-15', 29, 'https://www.gutenberg.org/ebooks/20581', 'pt', 3425), +(13686, 'God\'s Country: The Trail to Happiness', 'Curwood, James Oliver', '2016-09-17', 26, 'https://www.gutenberg.org/ebooks/53073', 'en', 3489), +(13687, 'The House of the Dead; or, Prison Life in Siberia\r\nwith an introduction by Julius Bramont', 'Dostoyevsky, Fyodor', '2011-09-25', 187, 'https://www.gutenberg.org/ebooks/37536', 'en', 6618), +(13688, 'A Comic History of the United States', 'Hopkins, Livingston', '2018-02-05', 24, 'https://www.gutenberg.org/ebooks/56501', 'en', 6619), +(13689, 'Jimmy Kirkland and the Plot for a Pennant', 'Fullerton, Hugh S. (Hugh Stuart)', '2010-04-18', 9, 'https://www.gutenberg.org/ebooks/32044', 'en', 6620), +(13690, 'The Mystery of Lincoln\'s Inn', 'Machray, Robert', '2012-08-09', 14, 'https://www.gutenberg.org/ebooks/40464', 'en', 95), +(13691, 'Twelve Stories and a Dream', 'Wells, H. G. (Herbert George)', '1999-05-01', 184, 'https://www.gutenberg.org/ebooks/1743', 'en', 179), +(13692, 'Five Minutes\' Stories', 'Molesworth, Mrs.', '2010-07-18', 38, 'https://www.gutenberg.org/ebooks/33196', 'en', 388), +(13693, 'As Long As You Wish', 'O\'Keefe, John', '2008-01-02', 61, 'https://www.gutenberg.org/ebooks/24121', 'en', 179), +(13694, 'The Sonnets of Michael Angelo Buonarroti and Tommaso Campanella; Now for the First Time Translated into Rhymed English', 'Michelangelo Buonarroti', '2003-11-01', 67, 'https://www.gutenberg.org/ebooks/10314', 'en', 6621), +(13695, 'Imperium in Imperio: A Study of the Negro Race Problem. A Novel', 'Griggs, Sutton E. (Sutton Elbert)', '2005-03-24', 69, 'https://www.gutenberg.org/ebooks/15454', 'en', 3762), +(13696, 'Adventures in Wallypug-Land', 'Farrow, G. E. (George Edward)', '2016-06-22', 7, 'https://www.gutenberg.org/ebooks/52393', 'en', 580), +(13697, 'Impressions of a War Correspondent', 'Lynch, George', '2007-06-01', 19, 'https://www.gutenberg.org/ebooks/21661', 'en', 4384), +(13698, 'Androcles and the Lion', 'Shaw, Bernard', '2003-05-01', 74, 'https://www.gutenberg.org/ebooks/4003', 'en', 5266), +(13699, 'The Young O\'Briens: Being an Account of Their Sojourn in London', 'Westrup, Margaret', '2014-04-05', 8, 'https://www.gutenberg.org/ebooks/45324', 'en', 1155), +(13700, 'An Oration on the Life and Services of Thomas Paine', 'Ingersoll, Robert Green', '2011-10-10', 11, 'https://www.gutenberg.org/ebooks/37704', 'en', 5548), +(13701, 'The Scouring of the White Horse; Or, The Long Vacation Ramble of a London Clerk', 'Hughes, Thomas', '2016-10-09', 10, 'https://www.gutenberg.org/ebooks/53241', 'en', 6622), +(13702, 'The Brain, A Decoded Enigma', 'Moisa, Dorin Teodor', '2005-01-04', 56, 'https://www.gutenberg.org/ebooks/14586', 'en', 6623), +(13703, 'Poetical Works\r\nComprising Elegies, Sketches from Life, Pathetic, and Extempore Pieces', 'Parkerson, James', '2010-05-06', 8, 'https://www.gutenberg.org/ebooks/32276', 'en', 54), +(13704, 'Wyoming', 'Ellis, Edward Sylvester', '2013-01-05', 21, 'https://www.gutenberg.org/ebooks/41784', 'en', 6624), +(13705, 'Nähtyä ja tunnettua: Kertoelmia ja kuvauksia', 'Talvio, Maila', '2018-03-13', 13, 'https://www.gutenberg.org/ebooks/56733', 'fi', 456), +(13706, 'Once a Week', 'Milne, A. A. (Alan Alexander)', '2008-01-15', 69, 'https://www.gutenberg.org/ebooks/24313', 'en', 72), +(13707, 'Home-Life of the Lancashire Factory Folk during the Cotton Famine', 'Waugh, Edwin', '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10126', 'en', 6625), +(13708, 'Little Johannes', 'Eeden, Frederik van', '2012-09-04', 31, 'https://www.gutenberg.org/ebooks/40656', 'en', 5417), +(13709, 'Critias', 'Plato', '1998-12-01', 150, 'https://www.gutenberg.org/ebooks/1571', 'en', 4117), +(13710, 'Le Tour du Monde; Bou Hedma\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-11-21', 7, 'https://www.gutenberg.org/ebooks/30521', 'fr', 1673), +(13711, 'La cruz en América (Arqueología Argentina)', 'Quiroga, Adán', '2017-01-28', 28, 'https://www.gutenberg.org/ebooks/54064', 'es', 6626), +(13712, '隋唐嘉話', 'Liu, Su, active 742-755', '2008-12-23', 13, 'https://www.gutenberg.org/ebooks/27596', 'zh', 6627), +(13713, 'Schläfst du Mutter?; Ruth. Novellen', 'Wassermann, Jakob', '2008-08-28', 19, 'https://www.gutenberg.org/ebooks/26444', 'de', 61), +(13714, 'An Easter Disciple: The Chronicle of Quintus, the Roman Knight', 'Sanford, Arthur Benton', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12671', 'en', 6628), +(13715, 'The Will And Testament of ‘Abdu\'l-Bahá', '`Abdu\'l-Bahá', '2006-09-18', 19, 'https://www.gutenberg.org/ebooks/19299', 'en', 4457), +(13716, 'Frank on the Prairie', 'Castlemon, Harry', '2013-02-15', 1, 'https://www.gutenberg.org/ebooks/42101', 'en', 6542), +(13717, 'Records of Journeys to Venice and the Low Countries', 'Dürer, Albrecht', '2002-05-01', 53, 'https://www.gutenberg.org/ebooks/3226', 'en', 6629), +(13718, 'Chambers\'s Edinburgh Journal, No. 429\nVolume 17, New Series, March 20, 1852', 'Various', '2005-12-14', 3, 'https://www.gutenberg.org/ebooks/17303', 'en', 18), +(13719, 'Creative Unity', 'Tagore, Rabindranath', '2007-10-21', 72, 'https://www.gutenberg.org/ebooks/23136', 'en', 6630), +(13720, 'The Historical Evidence for the Virgin Birth', 'Taylor, Vincent', '2017-06-06', 14, 'https://www.gutenberg.org/ebooks/54858', 'en', 6631), +(13721, 'Irene Iddesleigh', 'Ros, Amanda McKittrick', '2010-10-31', 150, 'https://www.gutenberg.org/ebooks/34181', 'en', 61), +(13722, 'The Tale of Brownie Beaver', 'Bailey, Arthur Scott', '2004-10-01', 31, 'https://www.gutenberg.org/ebooks/6754', 'en', 625), +(13723, 'Histoire de l\'Émigration pendant la Révolution Française (Tome 3)\nTome III - Du 18 Brumaire à la Restauration', 'Daudet, Ernest', '2014-11-27', 18, 'https://www.gutenberg.org/ebooks/47473', 'fr', 6632), +(13724, 'Sarah\'s First Start in Life', 'Campbell, Adelaide M. G.', '2011-01-24', 6, 'https://www.gutenberg.org/ebooks/35053', 'en', 4288), +(13725, 'Lucretia — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 21, 'https://www.gutenberg.org/ebooks/7686', 'en', 1079), +(13726, 'L\'Académie des sciences et les académiciens de 1666 à 1793', 'Bertrand, Joseph', '2016-03-21', 18, 'https://www.gutenberg.org/ebooks/51516', 'fr', 6633), +(13727, 'Jaakko Juteini ja hänen kirjallinen toimintansa', 'Talvioja, Kuuno A.', '2004-10-01', 8, 'https://www.gutenberg.org/ebooks/13565', 'fi', 6634), +(13728, 'Horses and Men: Tales, long and short, from our American life', 'Anderson, Sherwood', '2019-08-14', 794, 'https://www.gutenberg.org/ebooks/60097', 'en', 112), +(13729, 'Admiral Farragut', 'Mahan, A. T. (Alfred Thayer)', '2009-01-08', 14, 'https://www.gutenberg.org/ebooks/27750', 'en', 6635), +(13730, 'The Daughter of an Empress', 'Mühlbach, L. (Luise)', '2006-03-26', 17, 'https://www.gutenberg.org/ebooks/2132', 'en', 6636), +(13731, 'Ivanhoe', 'Scott, Walter', '2013-07-14', 13, 'https://www.gutenberg.org/ebooks/43215', 'fi', 48), +(13732, 'The Silent Barrier', 'Tracy, Louis', '2010-03-14', 57, 'https://www.gutenberg.org/ebooks/31635', 'en', 1661), +(13733, 'Scientific American Supplement, No. 299, September 24, 1881', 'Various', '2005-07-01', 6, 'https://www.gutenberg.org/ebooks/8408', 'en', 210), +(13734, 'Donahoe\'s Magazine, Volume 15, No. 2, February 1886', 'Various', '2008-09-21', 7, 'https://www.gutenberg.org/ebooks/26682', 'en', 18), +(13735, 'Candida', 'Shaw, Bernard', '2017-08-16', 11, 'https://www.gutenberg.org/ebooks/55370', 'fi', 537), +(13736, 'Si\'Wren of the Patriarchs', 'Cheney, Roland', '2004-09-01', 4, 'https://www.gutenberg.org/ebooks/6592', 'en', 61), +(13737, 'Dave Porter in the South Seas; or, The Strange Cruise of the Stormy Petrel', 'Stratemeyer, Edward', '2010-11-17', 18, 'https://www.gutenberg.org/ebooks/34347', 'en', 557), +(13738, 'The Duchess of Padua', 'Wilde, Oscar', '1997-04-01', 96, 'https://www.gutenberg.org/ebooks/875', 'en', 1298), +(13739, 'The Boy Scouts at the Canadian Border', 'Goldfrap, John Henry', '2015-12-04', 15, 'https://www.gutenberg.org/ebooks/50602', 'en', 2273), +(13740, 'Les crimes de l\'amour\r\nPrécédé d\'un avant-propos, suivi des idées sur les romans, de l\'auteur des crimes de l\'amour à Villeterque, d\'une notice bio-bibliographique du marquis de Sade: l\'homme et ses écrits et du discours prononcé par le marquis de Sade à la section des piques.', 'Sade, marquis de', '2009-05-08', 154, 'https://www.gutenberg.org/ebooks/28718', 'fr', 6637), +(13741, 'How to Write Letters (Formerly The Book of Letters)\nA Complete Guide to Correct Business and Personal Correspondence', 'Crowther, Mary Owens', '2007-08-02', 62, 'https://www.gutenberg.org/ebooks/22222', 'en', 6638), +(13742, 'The Poor Scholar\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 28, 'https://www.gutenberg.org/ebooks/16017', 'en', 440), +(13743, 'Die Bekanntschaft auf der Reise', 'Ahlefeld, Charlotte von', '2014-09-04', 34, 'https://www.gutenberg.org/ebooks/46767', 'de', 253), +(13744, 'The Koran (Al-Qur\'an)', NULL, '2005-02-01', 159, 'https://www.gutenberg.org/ebooks/7440', 'en', 542), +(13745, 'The Old Masters and Their Pictures, For the Use of Schools and Learners in Art', 'Tytler, Sarah', '2006-11-19', 25, 'https://www.gutenberg.org/ebooks/19863', 'en', 2227), +(13746, 'The Maroon', 'Reid, Mayne', '2011-02-15', 28, 'https://www.gutenberg.org/ebooks/35295', 'en', 173), +(13747, 'The Story of Bacon\'s Rebellion', 'Stanard, Mary Newton', '2011-06-14', 25, 'https://www.gutenberg.org/ebooks/36410', 'en', 6639), +(13748, 'Rodney', 'Hannay, David', '2016-05-24', 9, 'https://www.gutenberg.org/ebooks/52155', 'en', 6640), +(13749, 'Äärimmäisessä talossa\nNäytelmä viidessä näytöksessä', 'Kurikka, Matti', '2005-04-23', 37, 'https://www.gutenberg.org/ebooks/15692', 'fi', 402), +(13750, 'My Dog Tray', 'Unknown', '2007-02-13', 22, 'https://www.gutenberg.org/ebooks/20575', 'en', 6641), +(13751, 'The Princess Passes', 'Williamson, A. M. (Alice Muriel)', '2005-01-20', 24, 'https://www.gutenberg.org/ebooks/14740', 'en', 6642), +(13752, 'Songs at the Start', 'Guiney, Louise Imogen', '2016-09-19', 8, 'https://www.gutenberg.org/ebooks/53087', 'en', 350), +(13753, 'Our Little Danish Cousin', 'Ennis, Luna May', '2013-10-25', 10, 'https://www.gutenberg.org/ebooks/44030', 'en', 6643), +(13754, 'Through the Magic Door', 'Doyle, Arthur Conan', '2004-03-01', 110, 'https://www.gutenberg.org/ebooks/5317', 'en', 6644), +(13755, 'Bullets & Billets', 'Bairnsfather, Bruce', '2004-02-01', 58, 'https://www.gutenberg.org/ebooks/11232', 'en', 2223), +(13756, 'Fifty Soups', 'Murrey, Thomas J. (Thomas Jefferson)', '2008-04-06', 68, 'https://www.gutenberg.org/ebooks/25007', 'en', 1369), +(13757, 'The Dixie Druggist, May, 1913\nA Monthly Publication Issued to the Retail Drug Trade of the South', 'Anonymous', '2016-09-02', 13, 'https://www.gutenberg.org/ebooks/52969', 'en', 6645), +(13758, 'A History of the Inquisition of the Middle Ages; volume II', 'Lea, Henry Charles', '2012-04-16', 22, 'https://www.gutenberg.org/ebooks/39458', 'en', 6646), +(13759, 'Rose Clark', 'Fern, Fanny', '2012-12-03', 15, 'https://www.gutenberg.org/ebooks/41542', 'en', 61), +(13760, 'The White Canoe, and Other Verse', 'Sullivan, Alan', '2012-08-12', 6, 'https://www.gutenberg.org/ebooks/40490', 'en', 28), +(13761, 'Joseph in the Snow, and The Clockmaker. In Three Volumes. Vol. I.', 'Auerbach, Berthold', '2010-07-15', 17, 'https://www.gutenberg.org/ebooks/33162', 'en', 803), +(13762, 'The Sheep-Stealers', 'Jacob, Violet', '2018-06-30', 10, 'https://www.gutenberg.org/ebooks/57427', 'en', 6647), +(13763, 'The Story of the East Riding of Yorkshire', 'Browne, Horace B. (Horace Baker)', '2016-06-18', 10, 'https://www.gutenberg.org/ebooks/52367', 'en', 6648), +(13764, 'Life in the Red Brigade: London Fire Brigade', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 33, 'https://www.gutenberg.org/ebooks/21695', 'en', 6649), +(13765, 'Χαλιμά, Τόμος 2\r\nΕξακολούθησις των ιστοριών', NULL, '2011-07-05', 8, 'https://www.gutenberg.org/ebooks/36622', 'el', 1007), +(13766, 'The Red Cross in Peace and War', 'Barton, Clara', '2013-11-17', 17, 'https://www.gutenberg.org/ebooks/44202', 'en', 6650), +(13767, 'Last Poems: Translations from the Book of Indian Love', 'Hope, Laurence', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/5125', 'en', 2185), +(13768, 'Deaconesses in Europe and their Lessons for America', 'Bancroft, Jane M. (Jane Marie)', '2007-03-05', 18, 'https://www.gutenberg.org/ebooks/20747', 'en', 6651), +(13769, 'The Spirit of Christmas', 'Van Dyke, Henry', '2005-01-03', 6, 'https://www.gutenberg.org/ebooks/14572', 'en', 585), +(13770, 'Elevator Systems of the Eiffel Tower, 1889', 'Vogel, Robert M.', '2010-05-07', 29, 'https://www.gutenberg.org/ebooks/32282', 'en', 6652), +(13771, 'Studies in Moro History, Law, and Religion', 'Saleeby, Najeeb M. (Najeeb Mitry)', '2013-01-03', 47, 'https://www.gutenberg.org/ebooks/41770', 'en', 5344), +(13772, 'An Old Babylonian Version of the Gilgamesh Epic', 'Clay, Albert Tobias', '2006-07-04', 475, 'https://www.gutenberg.org/ebooks/11000', 'en', 6653), +(13773, 'A Dialogue Between Dean Swift and Tho. Prior, Esq.\nIn the Isles of St. Patrick\'s Church, Dublin, On that\nMemorable Day, October 9th, 1753', 'Anonymous', '2008-04-29', 19, 'https://www.gutenberg.org/ebooks/25235', 'en', 6654), +(13774, 'The History of Don Quixote, Volume 1, Part 17', 'Cervantes Saavedra, Miguel de', '2004-07-19', 25, 'https://www.gutenberg.org/ebooks/5919', 'en', 3761), +(13775, 'Fabulae, virginibus puerisque aut narrandae aut recitandae', 'Appleton, R. B. (Reginald Bainbridge)', '2018-07-31', 33, 'https://www.gutenberg.org/ebooks/57615', 'la', 6655), +(13776, 'The Arts and Crafts Movement', 'Cobden-Sanderson, T. J. (Thomas James)', '2010-08-04', 21, 'https://www.gutenberg.org/ebooks/33350', 'en', 6656), +(13777, 'The Wrong Box', 'Stevenson, Robert Louis', '2006-02-26', 80, 'https://www.gutenberg.org/ebooks/1585', 'en', 167), +(13778, 'The Descent of Man, and Selection in Relation to Sex', 'Darwin, Charles', '2000-08-01', 304, 'https://www.gutenberg.org/ebooks/2300', 'en', 1109), +(13779, 'Getting Gold: A Gold-Mining Handbook for Practical Men', 'Johnson, J. C. F. (Joseph Colin Francis)', '2013-06-24', 80, 'https://www.gutenberg.org/ebooks/43027', 'en', 1024), +(13780, 'Bamboo, Considered as a Paper-making Material\r\nWith remarks upon its cultivation and treatment. Supplemented by a consideration of the present position of the paper trade in relation to the supply of raw material.', 'Routledge, Thomas', '2017-02-02', 8, 'https://www.gutenberg.org/ebooks/54090', 'en', 6657), +(13781, 'Saracinesca', 'Crawford, F. Marion (Francis Marion)', '2004-10-15', 16, 'https://www.gutenberg.org/ebooks/13757', 'en', 6658), +(13782, 'Some Reptiles and Amphibians from Korea', 'Jones, J. Knox', '2011-01-13', 9, 'https://www.gutenberg.org/ebooks/34949', 'en', 6659), +(13783, 'The Great Events by Famous Historians, Volume 07', NULL, '2008-12-18', 63, 'https://www.gutenberg.org/ebooks/27562', 'en', 346), +(13784, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 474, Supplementary Number', 'Various', '2004-06-01', 2, 'https://www.gutenberg.org/ebooks/12685', 'en', 133), +(13785, 'Rough and Ready; Or, Life Among the New York Newsboys', 'Alger, Horatio, Jr.', '2017-07-17', 36, 'https://www.gutenberg.org/ebooks/55142', 'en', 1655), +(13786, 'Delco Radio Owner\'s Manual Model 633; Delcotron Generator Installation', 'Delco-Remy Corporation', '2010-02-26', 24, 'https://www.gutenberg.org/ebooks/31407', 'en', 6660), +(13787, 'Historia natural y moral de las Indias (vol 2 of 2)', 'Acosta, José de', '2015-11-11', 56, 'https://www.gutenberg.org/ebooks/50430', 'es', 6661), +(13788, 'Domestic Animals\r\nHistory and description of the horse, mule, cattle, sheep, swine, poultry and farm dogs; with directions for their management, breeding, crossing, rearing, feeding, and preparation for a profitable market; also their diseases and remedies. Together with full directions for the management of the dairy.', 'Allen, Richard Lamb', '2010-10-31', 119, 'https://www.gutenberg.org/ebooks/34175', 'en', 6662), +(13789, 'Birds and Nature Vol. 09 No. 1 [January 1901]', 'Various', '2014-11-29', 15, 'https://www.gutenberg.org/ebooks/47487', 'en', 490), +(13790, 'The Library Assistant\'s Manual', 'Koch, Theodore Wesley', '2014-08-10', 47, 'https://www.gutenberg.org/ebooks/46555', 'en', 2059), +(13791, 'Harold : the Last of the Saxon Kings — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7672', 'en', 5629), +(13792, 'The Tribes and Castes of the Central Provinces of India, Volume 2', 'Russell, R. V. (Robert Vane)', '2007-07-06', 76, 'https://www.gutenberg.org/ebooks/22010', 'en', 6663), +(13793, 'Music as a Language: Lectures to Music Students', 'Home, Ethel', '2005-07-06', 51, 'https://www.gutenberg.org/ebooks/16225', 'en', 6664), +(13794, 'The Esperantist, Vol. 2, No. 7', NULL, '2014-01-14', 7, 'https://www.gutenberg.org/ebooks/44666', 'eo', 3912), +(13795, 'A Thorny Path — Volume 12', 'Ebers, Georg', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/5541', 'en', 803), +(13796, 'Fifty Years of Golf', 'Hutchinson, Horace G. (Horace Gordon)', '2011-09-12', 22, 'https://www.gutenberg.org/ebooks/37394', 'en', 4846), +(13797, 'That Stick', 'Yonge, Charlotte M. (Charlotte Mary)', '2007-01-09', 13, 'https://www.gutenberg.org/ebooks/20323', 'en', 5233), +(13798, 'Memories of My Life\nFrom My Early Days in Scotland Till the Present Day in Adelaide', 'Allen, J. S. O., Mrs.', '2018-11-05', 6, 'https://www.gutenberg.org/ebooks/58239', 'en', 6665), +(13799, 'Dew Drops, Vol. 37, No. 07, February 15, 1914', 'Various', '2004-11-22', 49, 'https://www.gutenberg.org/ebooks/14116', 'en', 563), +(13800, 'Mademoiselle Miss, and Other Stories', 'Harland, Henry', '2016-08-02', 12, 'https://www.gutenberg.org/ebooks/52703', 'en', 770), +(13801, 'The Case of General Ople and Lady Camper', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4493', 'en', 137), +(13802, 'Told in the Hills: A Novel', 'Ryan, Marah Ellis', '2011-05-28', 22, 'https://www.gutenberg.org/ebooks/36246', 'en', 1357), +(13803, 'The Pirate\'s Pocket Book', 'Calthrop, Dion Clayton', '2008-03-08', 46, 'https://www.gutenberg.org/ebooks/24783', 'en', 1697), +(13804, 'What Outfit, Buddy?', 'Kelly, T. Howard (Thomas Howard)', '2018-06-04', 9, 'https://www.gutenberg.org/ebooks/57271', 'en', 579), +(13805, 'Barnave', 'Janin, Jules Gabriel', '2010-09-15', 18, 'https://www.gutenberg.org/ebooks/33734', 'fr', 6666), +(13806, 'My Danish Sweetheart: A Novel. Volume 2 of 3', 'Russell, William Clark', '2012-11-07', 3, 'https://www.gutenberg.org/ebooks/41314', 'en', 324), +(13807, 'Cuba, Old and New', 'Robinson, Albert G. (Albert Gardner)', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11464', 'en', 6667), +(13808, 'With Spurs of Gold: Heroes of Chivalry and their Deeds', 'Greene, Frances Nimmo', '2008-05-30', 15, 'https://www.gutenberg.org/ebooks/25651', 'en', 6668), +(13809, 'The Rise of the Democracy', 'Clayton, Joseph', '2006-10-23', 18, 'https://www.gutenberg.org/ebooks/19609', 'en', 5067), +(13810, 'The Law of the Bolo', 'Hyatt, Stanley Portal', '2017-09-11', 10, 'https://www.gutenberg.org/ebooks/55526', 'en', 2507), +(13811, 'In the Open: Intimate Studies and Appreciations of Nature', 'Kirkham, Stanton Davis', '2013-04-25', 24, 'https://www.gutenberg.org/ebooks/42591', 'en', 1216), +(13812, 'The Girl\'s Own Paper, Vol. XX, No. 979, October 1, 1898', 'Various', '2015-06-09', 7, 'https://www.gutenberg.org/ebooks/49179', 'en', 563), +(13813, 'Two New Moles (Genus Scalopus) from Mexico and Texas', 'Baker, Rollin H. (Rollin Harold)', '2010-01-24', 11, 'https://www.gutenberg.org/ebooks/31063', 'en', 6669), +(13814, 'The Highest Mountain', 'Walton, Bryce', '2016-01-07', 20, 'https://www.gutenberg.org/ebooks/50868', 'en', 26), +(13815, 'The Mahatma and the Hare: A Dream Story', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 26, 'https://www.gutenberg.org/ebooks/2764', 'en', 323), +(13816, 'The Works of Louis Becke: A Linked Index to the Project Gutenberg Editions', 'Becke, Louis', '2009-05-26', 7, 'https://www.gutenberg.org/ebooks/28972', 'en', 198), +(13817, 'Elbeszélések', 'Csiky, Gergely', '2013-08-11', 9, 'https://www.gutenberg.org/ebooks/43443', 'hu', 1532), +(13818, 'Correspondence & Conversations of Alexis de Tocqueville with Nassau William Senior from 1834 to 1859, Volume 2', 'Senior, Nassau William', '2004-08-30', 7, 'https://www.gutenberg.org/ebooks/13333', 'en', 6670), +(13819, 'Kinematics of Mechanisms from the Time of Watt', 'Ferguson, Eugene S.', '2008-10-31', 30, 'https://www.gutenberg.org/ebooks/27106', 'en', 6671), +(13820, 'The Adventures of Captain John Patterson\r\nWith Notices of the Officers, &c. of the 50th, or Queen\'s Own Regiment from 1807 to 1821', 'Patterson, John', '2014-06-29', 25, 'https://www.gutenberg.org/ebooks/46131', 'en', 6672), +(13821, '公孫龍子', 'Gongsun, Long, active 3rd century B.C.', '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/7216', 'zh', 6673), +(13822, 'The Wig and the Shoulder of Mutton; or, The Folly of Juvenile Fears', 'Anonymous', '2015-09-12', 9, 'https://www.gutenberg.org/ebooks/49945', 'en', 195), +(13823, 'Fringilla: Some Tales In Verse', 'Blackmore, R. D. (Richard Doddridge)', '2007-08-31', 32, 'https://www.gutenberg.org/ebooks/22474', 'en', 8), +(13824, 'Kun metsä kuolee: Kertomuksia Norrlannista', 'Lindholm, Valdemar', '2016-02-11', 2, 'https://www.gutenberg.org/ebooks/51186', 'fi', 4836), +(13825, 'Dimasalang Kalendariong Tagalog (1920)', 'López, Honorio', '2005-09-04', 41, 'https://www.gutenberg.org/ebooks/16641', 'tl', 6674), +(13826, 'The Debtor: A Novel', 'Freeman, Mary Eleanor Wilkins', '2006-02-19', 38, 'https://www.gutenberg.org/ebooks/17793', 'en', 6675), +(13827, 'The Female Quixote; or, The Adventures of Arabella, v. 1-2', 'Lennox, Charlotte', '2015-09-25', 89, 'https://www.gutenberg.org/ebooks/50054', 'en', 6676), +(13828, 'Famous Frontiersmen and Heroes of the Border\nTheir Adventurous Lives and Stirring Experiences in Pioneer Days', 'Johnston, Charles H. L. (Charles Haven Ladd)', '2015-05-08', 35, 'https://www.gutenberg.org/ebooks/48897', 'en', 6677), +(13829, 'The Supposed Autographa of John the Scot', 'Rand, Edward Kennard', '2010-11-30', 15, 'https://www.gutenberg.org/ebooks/34511', 'en', 6678), +(13830, 'The Book of Pears and Plums; With Chapters on Cherries and Mulberries', 'Bartrum, Edward', '2010-02-11', 16, 'https://www.gutenberg.org/ebooks/31251', 'en', 6679), +(13831, 'O\'Flaherty V.C.: A Recruiting Pamphlet', 'Shaw, Bernard', '2002-10-01', 33, 'https://www.gutenberg.org/ebooks/3484', 'en', 5104), +(13832, 'Niels Henrik Abel', 'Mittag-Leffler, Magnus Gustaf', '2005-04-01', 24, 'https://www.gutenberg.org/ebooks/7818', 'fr', 6680), +(13833, 'Stevenson at Manasquan', 'Eaton, Charlotte', '2017-10-09', 5, 'https://www.gutenberg.org/ebooks/55714', 'en', 6681), +(13834, 'Samlade arbeten II', 'Runeberg, Johan Ludvig', '2004-08-03', 19, 'https://www.gutenberg.org/ebooks/13101', 'sv', 8), +(13835, 'Africa Orrenda', 'Rapisardi, Mario', '2008-11-26', 15, 'https://www.gutenberg.org/ebooks/27334', 'it', 6682), +(13836, 'Spies Die Hard!', 'Marmor, Arnold', '2009-11-01', 23, 'https://www.gutenberg.org/ebooks/30383', 'en', 179), +(13837, 'Mr. Jack Hamlin\'s Mediation', 'Harte, Bret', '2006-05-18', 19, 'https://www.gutenberg.org/ebooks/2556', 'en', 315), +(13838, 'A History of Epidemics in Britain, Volume 2 (of 2)\r\nFrom the Extinction of Plague to the Present Time', 'Creighton, Charles', '2013-09-08', 28, 'https://www.gutenberg.org/ebooks/43671', 'en', 6683), +(13839, 'The Story of a Hare', 'Tregarthen, J. C. (John Coulson)', '2015-02-18', 9, 'https://www.gutenberg.org/ebooks/48299', 'en', 6684), +(13840, 'The Hunters of the Ozark', 'Ellis, Edward Sylvester', '2007-09-17', 22, 'https://www.gutenberg.org/ebooks/22646', 'en', 1357), +(13841, 'Queen Hildegarde', 'Richards, Laura Elizabeth Howe', '2005-08-08', 28, 'https://www.gutenberg.org/ebooks/16473', 'en', 2711), +(13842, 'Weymouth New Testament in Modern Speech, 1 John', 'Weymouth, Richard Francis', '2005-09-01', 13, 'https://www.gutenberg.org/ebooks/8850', 'en', 5364), +(13843, 'South Africa and the Transvaal War, Vol. 6 (of 8)\r\nFrom the Occupation of Pretoria to Mr. Kruger\'s Departure from South Africa, with a Summarised Account of the Guerilla War to March 1901', 'Creswicke, Louis', '2014-07-16', 14, 'https://www.gutenberg.org/ebooks/46303', 'en', 2724), +(13844, 'Rob Roy — Volume 02', 'Scott, Walter', '2004-08-22', 14, 'https://www.gutenberg.org/ebooks/7024', 'en', 5363), +(13845, 'Η Γυφτοπούλα', 'Papadiamantes, Alexandros', '2010-12-22', 15, 'https://www.gutenberg.org/ebooks/34723', 'el', 1348), +(13846, 'Merirosvo', 'Marryat, Frederick', '2015-10-21', 8, 'https://www.gutenberg.org/ebooks/50266', 'fi', 3828), +(13847, 'Philothea: A Grecian Romance', 'Child, Lydia Maria', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9982', 'en', 6685), +(13848, 'Mother Goose or the Old Nursery Rhymes', NULL, '2007-12-10', 121, 'https://www.gutenberg.org/ebooks/23794', 'en', 54), +(13849, 'With Those Who Wait', 'Huard, Frances Wilson', '2006-12-15', 26, 'https://www.gutenberg.org/ebooks/20111', 'en', 449), +(13850, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 15, No. 88, April, 1875', 'Various', '2004-12-10', 10, 'https://www.gutenberg.org/ebooks/14324', 'en', 162), +(13851, 'The Smuggler Chief: A Novel', 'Aimard, Gustave', '2013-12-17', 20, 'https://www.gutenberg.org/ebooks/44454', 'en', 323), +(13852, 'Annals of a Quiet Neighbourhood', 'MacDonald, George', '2004-05-01', 32, 'https://www.gutenberg.org/ebooks/5773', 'en', 2625), +(13853, 'Life of Robert Burns', 'Carlyle, Thomas', '2011-05-09', 25, 'https://www.gutenberg.org/ebooks/36074', 'en', 5193), +(13854, 'Auld Lang Syne: Selections from the Papers of the \"Pen and Pencil Club\"', 'Various', '2014-05-05', 16, 'https://www.gutenberg.org/ebooks/45586', 'en', 8), +(13855, 'The Adventures of Dick Trevanion: A Story of Eighteen Hundred and Four', 'Strang, Herbert', '2013-06-01', 28, 'https://www.gutenberg.org/ebooks/39800', 'en', 153), +(13856, 'Green Doors', 'Eliot, Ethel Cook', '2016-07-09', 14, 'https://www.gutenberg.org/ebooks/52531', 'en', 6686), +(13857, 'The Boy Travellers in the Far East, Part Fourth\r\nAdventures of Two Youths in a Journey to Egypt and the Holy Land', 'Knox, Thomas Wallace', '2019-02-06', 15, 'https://www.gutenberg.org/ebooks/58837', 'en', 6687), +(13858, 'The Death-Blow to Spiritualism: Being the True Story of the Fox Sisters', 'Davenport, Reuben Briggs', '2010-08-23', 17, 'https://www.gutenberg.org/ebooks/33506', 'en', 504), +(13859, 'Memoirs of the Reign of King George the Third, Volume 1 (of 4)', 'Walpole, Horace', '2018-04-25', 16, 'https://www.gutenberg.org/ebooks/57043', 'en', 2610), +(13860, 'Sentence Deferred\nSailor\'s Knots, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10784', 'en', 72), +(13861, 'The Great Shadow and Other Napoleonic Tales', 'Doyle, Arthur Conan', '2004-03-01', 75, 'https://www.gutenberg.org/ebooks/11656', 'en', 4751), +(13862, 'Lancelot of the Laik: A Scottish Metrical Romance (About 1490-1500 A. D.)', NULL, '2011-07-25', 24, 'https://www.gutenberg.org/ebooks/36848', 'en', 5637), +(13863, 'The Cruel Murder of Mina Miller', 'Unknown', '2017-12-17', 11, 'https://www.gutenberg.org/ebooks/56191', 'en', 6688), +(13864, 'The Day of Judgment', 'Hocking, Joseph', '2008-05-13', 25, 'https://www.gutenberg.org/ebooks/25463', 'en', 95), +(13865, 'The Wolf Cub: A Novel of Spain', 'Casey, Patrick', '2012-10-21', 15, 'https://www.gutenberg.org/ebooks/41126', 'en', 1813), +(13866, 'Sonnet 23', 'Shakespeare, William', '2007-12-01', 4, 'https://www.gutenberg.org/ebooks/23935', 'en', 6689), +(13867, 'The Hero of Manila: Dewey on the Mississippi and the Pacific', 'Johnson, Rossiter', '2015-03-04', 11, 'https://www.gutenberg.org/ebooks/48404', 'en', 6690), +(13868, 'Mrs. Lirriper\'s Legacy', 'Dickens, Charles', '2006-01-01', 0, 'https://www.gutenberg.org/ebooks/9723', 'en', 2065), +(13869, 'The Argosy, Vol. 51, No. 4, April, 1891', 'Various', '2006-05-11', 15, 'https://www.gutenberg.org/ebooks/18374', 'en', 5498), +(13870, 'In the Land of Dakota: A Little Book of North Dakota Verse', 'Winsted, Huldah Lucile', '2011-01-16', 4, 'https://www.gutenberg.org/ebooks/34982', 'en', 8), +(13871, 'An Old Story of My Farming Days Vol. 2 (of 3).\r\n(Ut Mine Stromtid)', 'Reuter, Fritz', '2011-04-13', 7, 'https://www.gutenberg.org/ebooks/35850', 'en', 5500), +(13872, 'The Summit House Mystery; Or, The Earthly Purgatory', 'Dougall, L. (Lily)', '2017-07-24', 18, 'https://www.gutenberg.org/ebooks/55189', 'en', 128), +(13873, 'Mr. Honey\'s Tourist Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 32, 'https://www.gutenberg.org/ebooks/3219', 'de', 5007), +(13874, 'Improvisos de Bocage\r\nNa Sua Mui Perigosa Enfermidade Dedicados a Seus Bons Amigos', 'Bocage, Manuel Maria Barbosa du', '2007-10-20', 35, 'https://www.gutenberg.org/ebooks/23109', 'pt', 1638), +(13875, 'Helon\'s Pilgrimage to Jerusalem, Volume 1 (of 2)\r\nA picture of Judaism, in the century which preceded the advent of our Savior.', 'Strauss, Friedrich', '2017-06-08', 19, 'https://www.gutenberg.org/ebooks/54867', 'en', 6691), +(13876, 'Kun nukkuja herää: Romaani', 'Wells, H. G. (Herbert George)', '2016-03-22', 4, 'https://www.gutenberg.org/ebooks/51529', 'fi', 2229), +(13877, 'Young Blood', 'Hornung, E. W. (Ernest William)', '2013-06-09', 48, 'https://www.gutenberg.org/ebooks/42902', 'en', 95), +(13878, 'Nature', 'Emerson, Ralph Waldo', '2009-07-17', 439, 'https://www.gutenberg.org/ebooks/29433', 'en', 3489), +(13879, 'De Wonderbouw der Wereld\r\nDe Grondslagen van Ons Sterrekundig Wereldbeeld Populair Uiteengezet', 'Pannekoek, Anton', '2019-06-12', 24, 'https://www.gutenberg.org/ebooks/59744', 'nl', 1590), +(13880, 'A Collection of Old English Plays, Volume 4', NULL, '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/10925', 'en', 1790), +(13881, 'Index of the Project Gutenberg Works of Robert G. Ingersoll', 'Ingersoll, Robert Green', '2019-01-14', 13, 'https://www.gutenberg.org/ebooks/58696', 'en', 198), +(13882, 'The Princess and Joe Potter', 'Otis, James', '2010-05-04', 17, 'https://www.gutenberg.org/ebooks/32249', 'en', 4014), +(13883, 'The Complete Poetical Works of Percy Bysshe Shelley — Complete', 'Shelley, Percy Bysshe', '2003-12-01', 376, 'https://www.gutenberg.org/ebooks/4800', 'en', 54), +(13884, 'Adonais', 'Shelley, Percy Bysshe', '2003-11-01', 67, 'https://www.gutenberg.org/ebooks/10119', 'en', 6692), +(13885, 'Notes and Queries, Vol. IV, Number 102, October 11, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-02-06', 12, 'https://www.gutenberg.org/ebooks/38773', 'en', 105), +(13886, 'Esik a hó: Novellák', 'Karinthy, Frigyes', '2012-09-05', 17, 'https://www.gutenberg.org/ebooks/40669', 'hu', 5299), +(13887, 'The History, Theory, and Practice of Illuminating\r\nCondensed from \'The Art of Illuminating\' by the same illustrator and author', 'Wyatt, M. Digby (Matthew Digby), Sir', '2014-03-13', 28, 'https://www.gutenberg.org/ebooks/45129', 'en', 4378), +(13888, 'The Beacon Second Reader', 'Fassett, James H. (James Hiram)', '2005-04-19', 61, 'https://www.gutenberg.org/ebooks/15659', 'en', 1007), +(13889, 'The Door into Infinity', 'Hamilton, Edmond', '2010-06-17', 71, 'https://www.gutenberg.org/ebooks/32847', 'en', 843), +(13890, 'Shasta of the Wolves', 'Baker, Olaf', '2019-05-27', 47, 'https://www.gutenberg.org/ebooks/59576', 'en', 6693), +(13891, 'Where the Path Breaks', 'Williamson, A. M. (Alice Muriel)', '2010-09-25', 17, 'https://www.gutenberg.org/ebooks/33995', 'en', 6694), +(13892, 'The Cassowary; What Chanced in the Cleft Mountains', 'Waterloo, Stanley', '2011-09-22', 13, 'https://www.gutenberg.org/ebooks/37509', 'en', 2534), +(13893, 'The Honourable Mr. Tawnish', 'Farnol, Jeffery', '2008-03-27', 34, 'https://www.gutenberg.org/ebooks/24922', 'en', 6695), +(13894, 'The Pacification of Burma', 'Crosthwaite, C. H. T. (Charles Haukes Todd)', '2014-06-08', 35, 'https://www.gutenberg.org/ebooks/45915', 'en', 6696), +(13895, 'Lyre and Lancet: A Story in Scenes', 'Anstey, F.', '2012-12-09', 12, 'https://www.gutenberg.org/ebooks/41589', 'en', 6697), +(13896, 'Πολιτεία, Τόμος 2', 'Plato', '2012-04-20', 25, 'https://www.gutenberg.org/ebooks/39493', 'el', 5325), +(13897, 'The Gipsy Fortune Teller\r\nContaining: Judgment for the 29 Days of the Moon, the Signification of Moles, and the Art of Telling Fortunes by Dice, Dominoes, &c., &c.', 'Parker, W.', '2017-01-02', 24, 'https://www.gutenberg.org/ebooks/53870', 'en', 5750), +(13898, 'A halottak élén', 'Ady, Endre', '2012-01-10', 14, 'https://www.gutenberg.org/ebooks/38541', 'hu', 1645), +(13899, 'A Letter to the Rev. William Maskell, A.M.\r\nHow far the Judicial Committee of the Privy Council commits the Church of England by its decision, even allowing it to have jurisdiction in points of doctrine', 'Mayow, Mayow Wynell', '2017-03-02', 13, 'https://www.gutenberg.org/ebooks/54269', 'en', 6698), +(13900, 'The Children\'s Portion', NULL, '2006-04-10', 24, 'https://www.gutenberg.org/ebooks/18146', 'en', 388), +(13901, 'Stories and Letters from the Trenches', 'Various', '2015-04-05', 4, 'https://www.gutenberg.org/ebooks/48636', 'en', 93), +(13902, 'Several Works by Edgar Allan Poe', 'Poe, Edgar Allan', '2005-12-01', 15, 'https://www.gutenberg.org/ebooks/9511', 'en', 179), +(13903, 'The Second Class Passenger: Fifteen Stories', 'Gibbon, Perceval', '2006-03-06', 20, 'https://www.gutenberg.org/ebooks/17932', 'en', 61), +(13904, 'Magic\nA Fantastic Comedy', 'Chesterton, G. K. (Gilbert Keith)', '2006-08-21', 96, 'https://www.gutenberg.org/ebooks/19094', 'en', 5266), +(13905, 'Terribly Intimate Portraits', 'Coward, Noel', '2008-09-17', 39, 'https://www.gutenberg.org/ebooks/26649', 'en', 564), +(13906, 'Assyrian Historiography: A Source Study', 'Olmstead, A. T. (Albert Ten Eyck)', '2004-09-01', 20, 'https://www.gutenberg.org/ebooks/6559', 'en', 6699), +(13907, 'To Let', 'Galsworthy, John', '2003-03-01', 30, 'https://www.gutenberg.org/ebooks/3817', 'en', 5118), +(13908, 'See?', 'Robles, Edward G.', '2009-08-03', 28, 'https://www.gutenberg.org/ebooks/29601', 'en', 179), +(13909, 'Een vriendelijke morgenstond; De ganzenkoopman van Neurenberg', 'Nieritz, Gustav', '2012-02-18', 15, 'https://www.gutenberg.org/ebooks/38919', 'nl', 61), +(13910, 'Die Naturwissenschaften in ihrer Entwicklung und in ihrem Zusammenhange, I. Band\r\nVon den Anfängen bis zum Wiederaufleben der Wissenschaften', 'Dannemann, Friedrich', '2016-11-01', 10, 'https://www.gutenberg.org/ebooks/53428', 'de', 186), +(13911, 'The Principal Navigations, Voyages, Traffiques, and Discoveries of the English Nation — Volume 14\r\nAmerica, Part III', 'Hakluyt, Richard', '2012-09-19', 21, 'https://www.gutenberg.org/ebooks/40803', 'en', 885), +(13912, 'Motion Pictures, 1894-1912\r\nIdentified from the Records of the United States Copyright Office', 'Walls, Howard Lamarr', '2018-04-12', 35, 'https://www.gutenberg.org/ebooks/56966', 'en', 6700), +(13913, 'The Boy With the U. S. Fisheries', 'Rolt-Wheeler, Francis', '2007-04-08', 14, 'https://www.gutenberg.org/ebooks/21008', 'en', 3242), +(13914, 'R.U.R. (Rossum\'s Universal Robots)\nA Fantastic Melodrama in Three Acts and an Epilogue', 'Čapek, Karel', '2019-03-22', 243, 'https://www.gutenberg.org/ebooks/59112', 'en', 6701), +(13915, 'The Twin Hells\r\nA Thrilling Narrative of Life in the Kansas and Missouri Penitentiaries', 'Reynolds, John N. (John Newton)', '1998-05-01', 27, 'https://www.gutenberg.org/ebooks/1318', 'en', 6702), +(13916, 'Der zunehmende Mond', 'Tagore, Rabindranath', '2011-11-24', 25, 'https://www.gutenberg.org/ebooks/38125', 'de', 4327), +(13917, 'The Owl Taxi', 'Footner, Hulbert', '2018-05-04', 16, 'https://www.gutenberg.org/ebooks/57088', 'en', 332), +(13918, 'Vie de Tolstoï', 'Rolland, Romain', '2011-11-07', 25, 'https://www.gutenberg.org/ebooks/37951', 'fr', 6703), +(13919, 'The Irish Ecclesiastical Record, Volume 1, March 1865', NULL, '2011-07-28', 6, 'https://www.gutenberg.org/ebooks/36883', 'en', 96), +(13920, 'The Black Colonel', 'Milne, James', '2007-06-14', 14, 'https://www.gutenberg.org/ebooks/21834', 'en', 48), +(13921, 'Much Ado About Peter', 'Webster, Jean', '2013-05-22', 20, 'https://www.gutenberg.org/ebooks/42768', 'en', 378), +(13922, 'Godey\'s Lady\'s Book, Vol. 48, January, 1854', 'Various', '2015-07-06', 28, 'https://www.gutenberg.org/ebooks/49380', 'en', 6704), +(13923, 'Notes and Queries, Number 17, February 23, 1850', 'Various', '2004-04-01', 30, 'https://www.gutenberg.org/ebooks/12018', 'en', 105), +(13924, 'The Wreck', 'Anonymous', '2006-06-06', 9, 'https://www.gutenberg.org/ebooks/18522', 'en', 3532), +(13925, 'The Happy Adventurers', 'Middleton, Lydia Miller', '2004-11-01', 9, 'https://www.gutenberg.org/ebooks/6901', 'en', 61), +(13926, 'Motor Matt\'s Daring Rescue; or, The Strange Case of Helen Brady', 'Matthews, Stanley R.', '2015-02-13', 22, 'https://www.gutenberg.org/ebooks/48252', 'en', 336), +(13927, 'The Art of Poetry: an Epistle to the Pisos\r\nQ. Horatii Flacci Epistola Ad Pisones, De Arte Poetica.', 'Horace', '2005-10-01', 151, 'https://www.gutenberg.org/ebooks/9175', 'en', 6705), +(13928, 'The Last Supper', 'Hamm, T. D.', '2009-10-28', 36, 'https://www.gutenberg.org/ebooks/30348', 'en', 179), +(13929, 'The Story of the Great War, Volume 3\r\nHistory of the European War from Official Sources', NULL, '2009-06-28', 59, 'https://www.gutenberg.org/ebooks/29265', 'en', 335), +(13930, 'Olviretki Schleusingenissä; Leo ja Liina; Alma', 'Kivi, Aleksis', '2004-07-05', 31, 'https://www.gutenberg.org/ebooks/12824', 'fi', 247), +(13931, 'The Bark Covered House\r\nOr, Back In the Woods Again; Being a Graphic and Thrilling Description of Real Pioneer Life in the Wilderness of Michigan', 'Nowlin, William', '2006-02-01', 33, 'https://www.gutenberg.org/ebooks/9949', 'en', 6706), +(13932, 'Through the Eye of the Needle: A Romance', 'Howells, William Dean', '2005-06-01', 27, 'https://www.gutenberg.org/ebooks/8295', 'en', 1483), +(13933, 'The Love That Prevailed', 'Moore, Frank Frankfort', '2016-05-02', 2, 'https://www.gutenberg.org/ebooks/51971', 'en', 6707), +(13934, 'Connaught', 'Gwynn, Stephen Lucius', '2013-08-16', 22, 'https://www.gutenberg.org/ebooks/43488', 'en', 6708), +(13935, 'Götiska rummen: Släktöden från sekelslutet', 'Strindberg, August', '2015-01-24', 15, 'https://www.gutenberg.org/ebooks/48060', 'sv', 5432), +(13936, 'An Outcast of the Islands', 'Conrad, Joseph', '2005-11-01', 4, 'https://www.gutenberg.org/ebooks/9347', 'en', 6709), +(13937, 'A Diary Kept by Mrs. R. C. Germon, at Lucknow, Between the Months of May and December, 1857', 'Germon, Maria', '2014-12-29', 21, 'https://www.gutenberg.org/ebooks/47814', 'en', 3959), +(13938, 'Kotona Kerttulassa: Kertomus nuorisolle', 'Aina', '2006-06-28', 21, 'https://www.gutenberg.org/ebooks/18710', 'fi', 61), +(13939, 'The Religion of Geology and Its Connected Sciences', 'Hitchcock, Edward', '2011-02-26', 10, 'https://www.gutenberg.org/ebooks/35408', 'en', 2713), +(13940, 'Michel Strogoff\nPièce à grand spectacle en 5 actes et 16 tableaux', 'Ennery, Adolphe d\'', '2008-10-07', 29, 'https://www.gutenberg.org/ebooks/26823', 'fr', 2267), +(13941, 'Two Latin Plays for High-School Students', 'Paxson, Susan', '2010-04-05', 33, 'https://www.gutenberg.org/ebooks/31894', 'la', 6710), +(13942, 'Address delivered by Hon. Henry H. Crapo, Governor of Michigan, before the Central Michigan Agricultural Society, at their Sheep-shearing Exhibition held at the Agricultural College Farm, on Thursday, May 24th, 1866', 'Crapo, Henry Howland', '2009-06-06', 15, 'https://www.gutenberg.org/ebooks/29057', 'en', 6711), +(13943, 'Harper\'s Young People, November 4, 1879\nAn Illustrated Weekly', 'Various', '2009-02-25', 18, 'https://www.gutenberg.org/ebooks/28185', 'en', 479), +(13944, 'Amours fragiles\nLe roi Apépi—Le bel Edwards—Les inconséquences de M. Drommel', 'Cherbuliez, Victor', '2006-02-12', 10, 'https://www.gutenberg.org/ebooks/17758', 'fr', 61), +(13945, 'Amôres d\'um deputado', 'Buffenoir, Hippolyte', '2010-01-12', 24, 'https://www.gutenberg.org/ebooks/30946', 'pt', 61), +(13946, 'Life Histories of North American Shore Birds, Part 1 (of 2)', 'Bent, Arthur Cleveland', '2014-10-03', 18, 'https://www.gutenberg.org/ebooks/47028', 'en', 6712), +(13947, 'The Great Stone Face, and Other Tales of the White Mountains', 'Hawthorne, Nathaniel', '2006-02-26', 41, 'https://www.gutenberg.org/ebooks/1916', 'en', 6713), +(13948, 'The Aswân Obelisk\nWith some remarks on the Ancient Engineering', 'Engelbach, Reginald', '2019-04-20', 24, 'https://www.gutenberg.org/ebooks/59320', 'en', 673), +(13949, 'Beauchamp\'s Career — Volume 6', 'Meredith, George', '2003-09-01', 18, 'https://www.gutenberg.org/ebooks/4458', 'en', 137), +(13950, 'A Democracia\nEstudo sobre o governo representativo', 'Lima, Jaime de Magalhães', '2008-03-03', 6, 'https://www.gutenberg.org/ebooks/24748', 'pt', 3003), +(13951, 'Annals of the Bodleian Library, Oxford, A.D. 1598-A.D. 1867\r\nWith a Preliminary Notice of the earlier Library founded in the Fourteenth Century', 'Macray, William Dunn', '2011-12-16', 10, 'https://www.gutenberg.org/ebooks/38317', 'en', 2761), +(13952, 'Scientific American Supplement, No. 441, June 14, 1884.', 'Various', '2005-05-16', 10, 'https://www.gutenberg.org/ebooks/15833', 'en', 210), +(13953, 'Alhalla, or the Lord of Talladega: A Tale of the Creek War.\r\nWith Some Selected Miscellanies, Chiefly of Early Date.', 'Schoolcraft, Henry Rowe', '2018-01-13', 3, 'https://www.gutenberg.org/ebooks/56368', 'en', 6714), +(13954, 'Hawaiian Flowers', 'Tongg, Richard C.', '2018-10-05', 13, 'https://www.gutenberg.org/ebooks/58034', 'en', 6715), +(13955, 'The Prophecies of the Brahan Seer (Coinneach Odhar Fiosaiche)', 'Coinneach Odhar', '2018-09-03', 27, 'https://www.gutenberg.org/ebooks/57840', 'en', 6716), +(13956, 'Ecology of the Opossum on a Natural Area in Northeastern Kansas', 'Sandidge, Lewis L.', '2011-08-24', 7, 'https://www.gutenberg.org/ebooks/37199', 'en', 6717), +(13957, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 14, July 24, 1858', 'Branch, Stephen H.', '2018-04-17', 0, 'https://www.gutenberg.org/ebooks/56992', 'en', 1741), +(13958, 'The Pioneer Woodsman as He Is Related to Lumbering in the Northwest', 'Warren, George Henry', '2013-01-26', 29, 'https://www.gutenberg.org/ebooks/41925', 'en', 6718), +(13959, 'The Dances of Death\r\nThrough the Various Stages of Human Life: Wherein the Capriciousness of that Tyrant is Exhibited', NULL, '2019-02-02', 14, 'https://www.gutenberg.org/ebooks/58808', 'en', 6719), +(13960, 'Voyage musical en Allemagne et en Italie, I', 'Berlioz, Hector', '2010-08-26', 82, 'https://www.gutenberg.org/ebooks/33539', 'fr', 6720), +(13961, 'The Daffodil Mystery', 'Wallace, Edgar', '2007-03-26', 381, 'https://www.gutenberg.org/ebooks/20912', 'en', 128), +(13962, 'La Puerta de Bronce y Otros Cuentos', 'Romero de Terreros, Manuel, marqués de San Francisco', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11669', 'es', 179), +(13963, 'Emerson Radio Model 39 Warranty Card', 'Anonymous', '2011-07-28', 3, 'https://www.gutenberg.org/ebooks/36877', 'en', 6721), +(13964, 'A Russian Proprietor, and Other Stories', 'Tolstoy, Leo, graf', '2012-10-21', 52, 'https://www.gutenberg.org/ebooks/41119', 'en', 6514), +(13965, 'Money: Speech of Hon. John P. Jones, of Nevada, on the Free Coinage of Silver; in the United States Senate, May 12 and 13, 1890', 'Jones, John P. (John Percival)', '2012-02-28', 21, 'https://www.gutenberg.org/ebooks/39003', 'en', 6722), +(13966, 'The Bible, King James version, Book 53: 2 Thessalonians', 'Anonymous', '2005-04-01', 10, 'https://www.gutenberg.org/ebooks/8053', 'en', 6723), +(13967, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 709\nJuly 28, 1877', 'Various', '2015-07-06', 6, 'https://www.gutenberg.org/ebooks/49374', 'en', 18), +(13968, 'Fan : The Story of a Young Girl\'s Life', 'Hudson, W. H. (William Henry)', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7827', 'en', 61), +(13969, 'Life of Abraham Lincoln\nLittle Blue Book Ten Cent Pocket Series No. 324', 'Bowers, John Hugh', '2006-09-28', 24, 'https://www.gutenberg.org/ebooks/19404', 'en', 5733), +(13970, 'John Jacob Astor', 'Hubbard, Elbert', '1996-01-01', 56, 'https://www.gutenberg.org/ebooks/412', 'en', 6724), +(13971, 'Die Ahnfrau', 'Grillparzer, Franz', '2005-10-01', 45, 'https://www.gutenberg.org/ebooks/9181', 'de', 6725), +(13972, 'The Day\'s Work - Volume 1', 'Kipling, Rudyard', '2001-03-01', 45, 'https://www.gutenberg.org/ebooks/2569', 'en', 797), +(13973, 'Canções', 'Boto, António Tomás', '2007-09-19', 18, 'https://www.gutenberg.org/ebooks/22679', 'pt', 8), +(13974, 'The Pirate, and The Three Cutters', 'Marryat, Frederick', '2009-07-02', 30, 'https://www.gutenberg.org/ebooks/29291', 'en', 3039), +(13975, 'Pisa\r\nDe Aarde en haar Volken, 1887', 'Anonymous', '2004-10-31', 2, 'https://www.gutenberg.org/ebooks/13902', 'nl', 5445), +(13976, 'Rahvaan tytär, miljoonain hallitsija: Historiallinen kertomus', 'Gummerus, K. J. (Kaarle Jaakko)', '2009-03-16', 27, 'https://www.gutenberg.org/ebooks/28343', 'fi', 41), +(13977, 'Dave Dawson with the Flying Tigers', 'Bowen, Robert Sidney', '2015-10-20', 28, 'https://www.gutenberg.org/ebooks/50259', 'en', 1004), +(13978, 'Bildergeschichten', 'Busch, Wilhelm', '2006-10-28', 28, 'https://www.gutenberg.org/ebooks/19636', 'de', 5789), +(13979, 'The Afghan War of 1879-80\nBeing a Complete Narrative of the Capture of Cabul, the Siege of Sherpur, the Battle of Ahmed Khel, the Brilliant March to Candahar, and the Defeat of Ayub Khan, with the Operations on the Helmund, and the Settlement with Abdur Rahman Khan', 'Hensman, Howard', '2017-09-10', 22, 'https://www.gutenberg.org/ebooks/55519', 'en', 6726), +(13980, 'Voyage en Orient, Volume 2: Les nuits du Ramazan; De Paris à Cythère; Lorely', 'Nerval, Gérard de', '2014-09-22', 21, 'https://www.gutenberg.org/ebooks/46932', 'fr', 2204), +(13981, 'The Trufflers: A Story', 'Merwin, Samuel', '2016-05-03', 18, 'https://www.gutenberg.org/ebooks/51985', 'en', 6727), +(13982, 'The World English Bible (WEB): Nahum', 'Anonymous', '2005-06-01', 25, 'https://www.gutenberg.org/ebooks/8261', 'en', 6728), +(13983, 'Letters of Franz Liszt -- Volume 1\r\nfrom Paris to Rome: Years of Travel as a Virtuoso', 'Liszt, Franz', '2003-01-01', 69, 'https://www.gutenberg.org/ebooks/3689', 'en', 6729), +(13984, 'The Shakespeare Story-Book', 'Macleod, Mary', '2015-06-06', 28, 'https://www.gutenberg.org/ebooks/49146', 'en', 6730), +(13985, 'Sumerian Hymns from Cuneiform Texts in the British Museum', NULL, '2015-01-27', 48, 'https://www.gutenberg.org/ebooks/48094', 'en', 6731), +(13986, 'St. Paul\'s Epistles to the Colossians and Philemon\r\nA revised text with introductions, notes and dissertations', 'Lightfoot, J. B. (Joseph Barber)', '2016-01-06', 29, 'https://www.gutenberg.org/ebooks/50857', 'en', 6732), +(13987, 'A Leaf from the Old Forest', 'Cossar, John D.', '2008-11-03', 13, 'https://www.gutenberg.org/ebooks/27139', 'en', 8), +(13988, 'Sylvie and Bruno', 'Carroll, Lewis', '1996-08-01', 269, 'https://www.gutenberg.org/ebooks/620', 'en', 580), +(13989, 'Rujub, the Juggler', 'Henty, G. A. (George Alfred)', '2005-01-01', 34, 'https://www.gutenberg.org/ebooks/7229', 'en', 6733), +(13990, 'The Red Symbol', 'Ironside, John', '2010-04-01', 10, 'https://www.gutenberg.org/ebooks/31860', 'en', 323), +(13991, 'The Big Fix', 'Smith, George O. (George Oliver)', '2007-11-23', 29, 'https://www.gutenberg.org/ebooks/23599', 'en', 2169), +(13992, 'They Shall Not Pass', 'Simonds, Frank H. (Frank Herbert)', '2009-02-24', 15, 'https://www.gutenberg.org/ebooks/28171', 'en', 6734), +(13993, 'Histoire parlementaire de France, Volume 1.\r\nRecueil complet des discours prononcés dans les chambres de 1819 à 1848', 'Guizot, François', '2009-01-27', 11, 'https://www.gutenberg.org/ebooks/27905', 'fr', 6735), +(13994, 'Secret Service\r\nBeing the Happenings of a Night in Richmond in the Spring of 1865', 'Brady, Cyrus Townsend', '2014-01-14', 19, 'https://www.gutenberg.org/ebooks/44659', 'en', 2564), +(13995, 'From Ocean to Ocean: Across a Continent on a Bicycle\r\nAn Account of a Solitary Ride From Adelaide to Port Darwin', 'Murif, Jerome J.', '2018-10-30', 17, 'https://www.gutenberg.org/ebooks/58206', 'en', 6736), +(13996, 'The Works of Charles Lamb in Four Volumes, Volume 4', 'Lamb, Charles', '2004-11-23', 23, 'https://www.gutenberg.org/ebooks/14129', 'en', 472), +(13997, 'Wood and Garden: Notes and thoughts, practical and critical, of a working amateur', 'Jekyll, Gertrude', '2011-06-01', 50, 'https://www.gutenberg.org/ebooks/36279', 'en', 5887), +(13998, 'Turkish Prisoners in Egypt\r\nA Report by the Delegates of the International Committee of the Red Cross', 'International Committee of the Red Cross', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10589', 'en', 2089), +(13999, 'Das Nibelungenlied', 'Unknown', '2005-02-05', 104, 'https://www.gutenberg.org/ebooks/14915', 'de', 6737), +(14000, 'Joel: A Boy of Galilee', 'Johnston, Annie F. (Annie Fellows)', '2012-03-23', 15, 'https://www.gutenberg.org/ebooks/39231', 'en', 6738), +(14001, 'Heinosen perhe huvimatkalla\nHuvinäytelmä 2:ssa näytöksessä', 'Hodell, Frans', '2013-06-23', 1, 'https://www.gutenberg.org/ebooks/43018', 'fi', 5375), +(14002, 'Katajainen kansani', 'Aho, Juhani', '2004-10-17', 17, 'https://www.gutenberg.org/ebooks/13768', 'fi', 179), +(14003, 'L\'Illustration, No. 0008, 22 Avril 1843', 'Various', '2011-01-15', 7, 'https://www.gutenberg.org/ebooks/34976', 'fr', 150), +(14004, 'A Study in Scarlet', 'Doyle, Arthur Conan', '1995-04-01', 3621, 'https://www.gutenberg.org/ebooks/244', 'en', 128), +(14005, 'The War After the War', 'Marcosson, Isaac Frederick', '2006-05-12', 27, 'https://www.gutenberg.org/ebooks/18380', 'en', 6739), +(14006, 'Bahá\'í Administration', 'Shoghi, Effendi', '2006-09-15', 15, 'https://www.gutenberg.org/ebooks/19252', 'en', 6740); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(14007, 'Ο Βασιλιάς Ανήλιαγος', 'Polemes, Ioannes', '2010-02-27', 13, 'https://www.gutenberg.org/ebooks/31438', 'el', 402), +(14008, 'Unitarianism in America: A History of its Origin and Development', 'Cooke, George Willis', '2005-08-01', 21, 'https://www.gutenberg.org/ebooks/8605', 'en', 6741), +(14009, 'Heath\'s Modern Language Series: La Mère de la Marquise', 'About, Edmond', '2007-09-30', 57, 'https://www.gutenberg.org/ebooks/22813', 'fr', 298), +(14010, 'Luonnosta ja elämästä: Satuja ja kertomuksia lapsille', 'Tolstoy, Leo, graf', '2015-07-25', 6, 'https://www.gutenberg.org/ebooks/49522', 'fi', 6742), +(14011, 'In the Track of the Trades\r\nThe Account of a Fourteen Thousand Mile Yachting Cruise to the Hawaiis, Marquesas, Societies, Samoas and Fijis', 'Freeman, Lewis R. (Lewis Ransome)', '2013-09-27', 14, 'https://www.gutenberg.org/ebooks/43824', 'en', 6743), +(14012, 'The Saracen: Land of the Infidel', 'Shea, Robert', '2009-04-06', 57, 'https://www.gutenberg.org/ebooks/28515', 'en', 98), +(14013, 'The Secrets of the Harem', 'Anonymous', '2017-06-11', 409, 'https://www.gutenberg.org/ebooks/54893', 'en', 6744), +(14014, 'Sonnets and Songs', 'Whitney, Helen Hay', '2011-01-28', 16, 'https://www.gutenberg.org/ebooks/35098', 'en', 178), +(14015, 'Beethoven', 'Rolland, Romain', '2017-11-12', 70, 'https://www.gutenberg.org/ebooks/55941', 'en', 1807), +(14016, 'The Desert Trail', 'Coolidge, Dane', '2016-06-17', 26, 'https://www.gutenberg.org/ebooks/52358', 'en', 6745), +(14017, 'U.S. Copyright Renewals, 1951 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11803', 'en', 4170), +(14018, 'Gloves, Past and Present', 'Smith, Willard M.', '2019-01-09', 5, 'https://www.gutenberg.org/ebooks/58662', 'en', 6746), +(14019, 'Sylva; Or, A Discourse of Forest Trees. Vol. 1 (of 2)', 'Evelyn, John', '2007-03-08', 93, 'https://www.gutenberg.org/ebooks/20778', 'en', 6747), +(14020, 'History of England from the Fall of Wolsey to the Death of Elizabeth. Vol. III', 'Froude, James Anthony', '2012-05-08', 12, 'https://www.gutenberg.org/ebooks/39655', 'en', 4746), +(14021, 'The History of Don Quixote, Volume 2, Part 23', 'Cervantes Saavedra, Miguel de', '2004-07-22', 3, 'https://www.gutenberg.org/ebooks/5926', 'en', 2176), +(14022, 'Harper\'s New Monthly Magazine, Vol III, No 13, 1851', 'Various', '2012-02-08', 31, 'https://www.gutenberg.org/ebooks/38787', 'en', 883), +(14023, 'The Children\'s Book of London', 'Mitton, G. E. (Geraldine Edith)', '2008-06-15', 17, 'https://www.gutenberg.org/ebooks/25804', 'en', 6748), +(14024, 'France and the Republic\r\nA Record of Things Seen and Learned in the French Provinces During the \'Centennial\' Year 1889', 'Hurlbert, William Henry', '2007-05-16', 19, 'https://www.gutenberg.org/ebooks/21498', 'en', 1117), +(14025, 'Geneviève', 'Pressensé, E. de, Mme.', '2019-05-23', 3, 'https://www.gutenberg.org/ebooks/59582', 'fi', 6749), +(14026, 'Αντώνιος και Κλεοπάτρα\r\nΤραγωδία εις πράξεις 5', 'Shakespeare, William', '2010-10-02', 23, 'https://www.gutenberg.org/ebooks/33961', 'el', 6750), +(14027, 'George Edmund Street: Unpublished Notes and Reprinted Papers', 'Street, George Edmund', '2018-12-10', 6, 'https://www.gutenberg.org/ebooks/58450', 'en', 1408), +(14028, 'Writing for Vaudeville', 'Page, Brett', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5328', 'en', 4474), +(14029, 'Tam o\' the Scoots', 'Wallace, Edgar', '2008-04-11', 42, 'https://www.gutenberg.org/ebooks/25038', 'en', 2481), +(14030, 'A Bitter Heritage: A Modern Story of Love and Adventure', 'Bloundelle-Burton, John', '2016-09-02', 13, 'https://www.gutenberg.org/ebooks/52956', 'en', 6751), +(14031, 'Sappho\'s Journal', 'Bartlett, Paul Alexander', '2012-04-17', 13, 'https://www.gutenberg.org/ebooks/39467', 'en', 98), +(14032, 'A Biblical and Theological Dictionary\r\nexplanatory of the history, manners, and customs of the Jews, and neighbouring nations', 'Watson, Richard', '2017-01-04', 58, 'https://www.gutenberg.org/ebooks/53884', 'en', 6752), +(14033, 'Sir John Oldcastle', 'Shakespeare (spurious and doubtful works)', '1999-06-01', 22, 'https://www.gutenberg.org/ebooks/1788', 'en', 6753), +(14034, 'A Modern Madonna', 'Stanley, Caroline Abbot', '2018-06-29', 7, 'https://www.gutenberg.org/ebooks/57418', 'en', 6754), +(14035, 'Chaucer\'s Works, Volume 2 (of 7) — Boethius and Troilus', 'Chaucer, Geoffrey', '2014-02-05', 36, 'https://www.gutenberg.org/ebooks/44833', 'en', 4610), +(14036, 'Le culte du moi 3: Le jardin de Bérénice', 'Barrès, Maurice', '2005-10-07', 21, 'https://www.gutenberg.org/ebooks/16814', 'fr', 298), +(14037, 'The Path of Life', 'Streuvels, Stijn', '2005-07-01', 23, 'https://www.gutenberg.org/ebooks/8437', 'en', 179), +(14038, 'Representative English Comedies, v. 1. From the beginnings to Shakespeare', NULL, '2015-08-15', 5, 'https://www.gutenberg.org/ebooks/49710', 'en', 5266), +(14039, 'Nouveaux contes extraordinaires', 'Révoil, Bénédict Henry', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12488', 'fr', 100), +(14040, 'Gli amanti: pastelli', 'Serao, Matilde', '2006-08-16', 19, 'https://www.gutenberg.org/ebooks/19060', 'it', 1544), +(14041, 'Hans Brinker; Or, The Silver Skates', 'Dodge, Mary Mapes', '2010-11-22', 31, 'https://www.gutenberg.org/ebooks/34378', 'en', 6755), +(14042, 'A Boy\'s Town', 'Howells, William Dean', '2009-05-08', 11, 'https://www.gutenberg.org/ebooks/28727', 'en', 153), +(14043, 'Evidence as to Man\'s Place in Nature', 'Huxley, Thomas Henry', '2001-11-01', 42, 'https://www.gutenberg.org/ebooks/2931', 'en', 1315), +(14044, 'The Atlantic Monthly, Volume 12, No. 73, November, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-06-09', 9, 'https://www.gutenberg.org/ebooks/16028', 'en', 1227), +(14045, 'Hurskas kurjuus: Päättynyt suomalainen elämäkerta', 'Sillanpää, Frans Eemil', '2014-09-02', 13, 'https://www.gutenberg.org/ebooks/46758', 'fi', 175), +(14046, 'England over Seas', 'Roberts, Lloyd', '2005-01-24', 12, 'https://www.gutenberg.org/ebooks/14782', 'en', 8), +(14047, 'The Masked World', 'Williamson, Jack', '2016-09-13', 50, 'https://www.gutenberg.org/ebooks/53045', 'en', 26), +(14048, 'Het Auteursrecht in het Nederlandsche en internationale recht', 'Beaufort, H. L. de (Henri Louis)', '2011-09-21', 6, 'https://www.gutenberg.org/ebooks/37500', 'nl', 2983), +(14049, 'Aesthetic Poetry', 'Pater, Walter', '2003-07-01', 32, 'https://www.gutenberg.org/ebooks/4207', 'en', 532), +(14050, 'Della illustrazione delle lingue antiche e moderne e principalmente dell\'italiana\nprocurata nel secolo XVIII. dagli Italiani - Parte II', 'Lucchesini, Cesare', '2014-03-12', 10, 'https://www.gutenberg.org/ebooks/45120', 'it', 6054), +(14051, 'Home Arts for Old and Young', 'Smith, Caroline L.', '2016-05-30', 32, 'https://www.gutenberg.org/ebooks/52197', 'en', 1837), +(14052, 'The Great Round World and What Is Going On In It, Vol. 1, No. 32, June 17, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-18', 18, 'https://www.gutenberg.org/ebooks/15650', 'en', 1), +(14053, 'Hurricane Hurry', 'Kingston, William Henry Giles', '2007-05-15', 27, 'https://www.gutenberg.org/ebooks/21465', 'en', 1293), +(14054, 'The Twickenham Peerage', 'Marsh, Richard', '2012-08-08', 20, 'https://www.gutenberg.org/ebooks/40452', 'en', 61), +(14055, 'King John', 'Shakespeare, William', '1999-06-01', 9, 'https://www.gutenberg.org/ebooks/1775', 'en', 6756), +(14056, 'L\'abbé Sicard\r\ncélèbre instituteur des sourds-muets, successeur immédiat de l\'abbé de l\'Épée', 'Berthier, Ferdinand', '2012-01-11', 18, 'https://www.gutenberg.org/ebooks/38548', 'fr', 6757), +(14057, 'The Witches\' Dream Book; and Fortune Teller\r\nEmbracing full and correct rules of divination concerning dreams and visions, foretelling of future events, their scientific application to physiognomy, palmistry, moles, cards, &c.; together with the application and observance of talismen charms, spells and incantations.', 'Noe, A. H.', '2017-01-03', 76, 'https://www.gutenberg.org/ebooks/53879', 'en', 6758), +(14058, 'A Apple Pie and Other Nursery Tales', 'Unknown', '2008-01-02', 73, 'https://www.gutenberg.org/ebooks/24117', 'en', 859), +(14059, 'Miss Prudence: A Story of Two Girls\' Lives.', 'Conklin, Nathaniel, Mrs.', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10322', 'en', 4927), +(14060, 'Graham\'s Magazine, Vol. XXX, No. 2, February 1847', 'Various', '2018-02-10', 10, 'https://www.gutenberg.org/ebooks/56537', 'en', 380), +(14061, 'Algumas lições de psicologia e pedologia', 'Ferreira, António Aurélio da Costa', '2010-04-20', 10, 'https://www.gutenberg.org/ebooks/32072', 'pt', 1947), +(14062, 'Haunted London', 'Thornbury, Walter', '2012-12-08', 32, 'https://www.gutenberg.org/ebooks/41580', 'en', 4685), +(14063, 'All about Ferrets and Rats\r\nA Complete History of Ferrets, Rats, and Rat Extermination from Personal Experiences and Study. Also a Practical Hand-Book on the Ferret.', 'Isaacsen, Adolph', '2013-03-11', 14, 'https://www.gutenberg.org/ebooks/42305', 'en', 6759), +(14064, 'A Cumberland Vendetta', 'Fox, John, Jr.', '2002-01-01', 23, 'https://www.gutenberg.org/ebooks/3022', 'en', 4872), +(14065, 'The Humbugs of the World\r\nAn Account of Humbugs, Delusions, Impositions, Quackeries, Deceits and Deceivers Generally, in All Ages', 'Barnum, P. T. (Phineas Taylor)', '2008-09-16', 83, 'https://www.gutenberg.org/ebooks/26640', 'en', 6760), +(14066, 'Fires of Driftwood', 'Mackay, Isabel Ecclestone', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12475', 'en', 28), +(14067, 'The Spiritual Guidance of Man and of Mankind', 'Steiner, Rudolf', '2017-02-28', 16, 'https://www.gutenberg.org/ebooks/54260', 'en', 746), +(14068, 'The Boy Fortune Hunters in Alaska', 'Baum, L. Frank (Lyman Frank)', '2019-08-04', 707, 'https://www.gutenberg.org/ebooks/60055', 'en', 2322), +(14069, 'The Arrow-Maker: A Drama in Three Acts', 'Austin, Mary Hunter', '2009-01-13', 21, 'https://www.gutenberg.org/ebooks/27792', 'en', 6761), +(14070, 'The Paris Sketch Book of Mr. M. A. Titmarsh', 'Thackeray, William Makepeace', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9518', 'en', 2972), +(14071, 'Marocco', 'De Amicis, Edmondo', '2009-12-20', 41, 'https://www.gutenberg.org/ebooks/30725', 'it', 6762), +(14072, 'Personal Recollections of a Cavalryman\nWith Custer\'s Michigan Cavalry Brigade in the Civil War', 'Kidd, James Harvey', '2009-08-04', 37, 'https://www.gutenberg.org/ebooks/29608', 'en', 444), +(14073, 'A Trace of Memory', 'Laumer, Keith', '2016-04-09', 143, 'https://www.gutenberg.org/ebooks/51712', 'en', 26), +(14074, 'Paholaiselle luvattu', 'Garborg, Arne', '2011-02-12', 16, 'https://www.gutenberg.org/ebooks/35257', 'fi', 7), +(14075, 'Stories of the Prophets (Before the Exile)', 'Landman, Isaac', '2005-02-01', 9, 'https://www.gutenberg.org/ebooks/7482', 'en', 6763), +(14076, 'L\'Illustration, No. 3242, 15 Avril 1905', 'Various', '2010-11-20', 8, 'https://www.gutenberg.org/ebooks/34385', 'fr', 150), +(14077, 'Day Symbols of the Maya Year\r\nSixteenth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1894-1895, Government Printing Office, Washington, 1897, pages 199-266.', 'Thomas, Cyrus', '2006-08-03', 42, 'https://www.gutenberg.org/ebooks/18973', 'en', 1608), +(14078, 'The House of Mapuhi', 'London, Jack', '2004-09-01', 4, 'https://www.gutenberg.org/ebooks/6550', 'en', 179), +(14079, 'Ars Amatoria; or, The Art Of Love\r\nLiterally Translated into English Prose, with Copious Notes', 'Ovid', '2014-12-16', 197, 'https://www.gutenberg.org/ebooks/47677', 'en', 6764), +(14080, 'A Bibliographical, Antiquarian and Picturesque Tour in France and Germany, Volume Two', 'Dibdin, Thomas Frognall', '2005-11-19', 28, 'https://www.gutenberg.org/ebooks/17107', 'en', 6765), +(14081, 'Greetings from Longfellow', 'Longfellow, Henry Wadsworth', '2007-11-04', 13, 'https://www.gutenberg.org/ebooks/23332', 'en', 350), +(14082, 'What Men Live By and Other Tales', 'Tolstoy, Leo, graf', '2008-09-01', 15, 'https://www.gutenberg.org/ebooks/26472', 'en', 1014), +(14083, 'J. S. Le Fanu\'s Ghostly Tales, Volume 4', 'Le Fanu, Joseph Sheridan', '2004-06-01', 41, 'https://www.gutenberg.org/ebooks/12647', 'en', 531), +(14084, 'Aunt Jane\'s Nieces on the Ranch', 'Baum, L. Frank (Lyman Frank)', '2011-04-12', 63, 'https://www.gutenberg.org/ebooks/35859', 'en', 6766), +(14085, 'The Irish Penny Journal, Vol. 1 No. 39, March 27, 1841', 'Various', '2017-07-23', 2, 'https://www.gutenberg.org/ebooks/55180', 'en', 81), +(14086, 'The Magic Curtain\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-02-19', 11, 'https://www.gutenberg.org/ebooks/42137', 'en', 6767), +(14087, 'Mr. Honey\'s Small Banking Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 24, 'https://www.gutenberg.org/ebooks/3210', 'en', 5007), +(14088, 'Le Tour du Monde; L\'Archipel des Feroé\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-11-21', 9, 'https://www.gutenberg.org/ebooks/30517', 'fr', 1673), +(14089, 'Lääkärin muistelmia: Historiallinen romaani Ludvig XV:n hovista', 'Dumas, Alexandre', '2017-01-25', 2, 'https://www.gutenberg.org/ebooks/54052', 'fi', 6598), +(14090, 'Nouveaux mystères et aventures', 'Doyle, Arthur Conan', '2004-10-19', 38, 'https://www.gutenberg.org/ebooks/13795', 'fr', 6768), +(14091, 'In Search of the Castaways\nA Romantic Narrative of the Loss of Captain Grant of the Brig Britannia and of the Adventures of His Children and Friends in His Discovery and Rescue', 'Verne, Jules', '2014-08-16', 134, 'https://www.gutenberg.org/ebooks/46597', 'en', 1916), +(14092, 'Il bacio della contessa Savina', 'Caccianiga, Antonio', '2011-01-25', 16, 'https://www.gutenberg.org/ebooks/35065', 'it', 1544), +(14093, 'The Downfall of the Dervishes; or, The Avenging of Gordon', 'Bennett, Ernest Nathaniel', '2016-03-21', 12, 'https://www.gutenberg.org/ebooks/51520', 'en', 6769), +(14094, 'Aventures merveilleuses mais authentiques du capitaine Corcoran, Deuxième partie', 'Assollant, Alfred', '2005-12-17', 27, 'https://www.gutenberg.org/ebooks/17335', 'fr', 323), +(14095, 'A Budget of Paradoxes, Volume I', 'De Morgan, Augustus', '2007-10-20', 68, 'https://www.gutenberg.org/ebooks/23100', 'en', 6770), +(14096, 'Politics: A Treatise on Government', 'Aristotle', '2004-10-01', 546, 'https://www.gutenberg.org/ebooks/6762', 'en', 5325), +(14097, 'Twenty Years a Detective in the Wickedest City in the World', 'Wooldridge, Clifton R. (Clifton Rodman)', '2014-11-23', 32, 'https://www.gutenberg.org/ebooks/47445', 'en', 6771), +(14098, 'The Emigrant\'s Lost Son; or, Life Alone in the Forest', 'Anonymous', '2011-10-12', 7, 'https://www.gutenberg.org/ebooks/37732', 'en', 6772), +(14099, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nOklahoma Narratives', 'United States. Work Projects Administration', '2007-03-08', 75, 'https://www.gutenberg.org/ebooks/20785', 'en', 6773), +(14100, 'The Every-day Book and Table Book. v. 3 (of 3)\r\nEverlasting Calerdar of Popular Amusements, Sports, Pastimes, Ceremonies, Manners, Customs and Events, Incident to Each of the Three Hundred and Sixty-five Days, in past and Present Times; Forming a Complete History of the Year, Month, and Seasons, and a Perpetual Key to the Almanac', 'Hone, William', '2016-10-15', 11, 'https://www.gutenberg.org/ebooks/53277', 'en', 5226), +(14101, 'Alcools', 'Apollinaire, Guillaume', '2005-03-25', 146, 'https://www.gutenberg.org/ebooks/15462', 'fr', 3718), +(14102, 'Deep Furrows', 'Moorhouse, Herbert Joseph', '2007-06-01', 6, 'https://www.gutenberg.org/ebooks/21657', 'en', 6774), +(14103, 'Greek Studies: a Series of Essays', 'Pater, Walter', '2003-05-01', 78, 'https://www.gutenberg.org/ebooks/4035', 'en', 6775), +(14104, 'Œuvres complètes de Guy de Maupassant - volume 02', 'Maupassant, Guy de', '2014-04-03', 36, 'https://www.gutenberg.org/ebooks/45312', 'fr', 642), +(14105, 'Mémoires d\'un artiste', 'Gounod, Charles', '2008-01-15', 12, 'https://www.gutenberg.org/ebooks/24325', 'fr', 6776), +(14106, 'The Postmaster\'s Daughter', 'Tracy, Louis', '2003-11-01', 45, 'https://www.gutenberg.org/ebooks/10110', 'en', 6777), +(14107, 'The Interpreter: A Tale of the War', 'Whyte-Melville, G. J. (George John)', '2012-09-04', 120, 'https://www.gutenberg.org/ebooks/40660', 'en', 6778), +(14108, 'Sir Thomas More', 'Shakespeare (spurious and doubtful works)', '1998-11-01', 86, 'https://www.gutenberg.org/ebooks/1547', 'en', 6779), +(14109, 'In and Out', 'Franklin, Edgar', '2010-08-09', 11, 'https://www.gutenberg.org/ebooks/33392', 'en', 1335), +(14110, 'The Boy Scouts in the Blue Ridge; Or, Marooned Among the Moonshiners', 'Carter, Herbert, active 1909-1917', '2010-05-03', 17, 'https://www.gutenberg.org/ebooks/32240', 'en', 1002), +(14111, 'Mrs. Essington: The Romance of a House-party', 'Chamberlain, Lucia', '2018-03-08', 13, 'https://www.gutenberg.org/ebooks/56705', 'en', 650), +(14112, 'The Rise of the Dutch Republic — Volume 09: 1564-65', 'Motley, John Lothrop', '2004-01-01', 54, 'https://www.gutenberg.org/ebooks/4809', 'en', 3372), +(14113, 'Saint Ursula: I. The Story of St. Ursula. II. The Dream of St. Ursula.', 'Ruskin, John', '2009-10-04', 20, 'https://www.gutenberg.org/ebooks/30173', 'en', 6780), +(14114, 'Raha: Romaani', 'Zola, Émile', '2015-01-25', 5, 'https://www.gutenberg.org/ebooks/48069', 'fi', 6781), +(14115, 'Tobacco and Alcohol\nI. It Does Pay to Smoke. II. The Coming Man Will Drink Wine.', 'Fiske, John', '2013-08-15', 25, 'https://www.gutenberg.org/ebooks/43481', 'en', 5258), +(14116, 'Teatro selecto, tomo 1 de 4', 'Calderón de la Barca, Pedro', '2017-03-26', 48, 'https://www.gutenberg.org/ebooks/54436', 'es', 206), +(14117, 'Space Tug', 'Leinster, Murray', '2006-06-29', 70, 'https://www.gutenberg.org/ebooks/18719', 'en', 6782), +(14118, 'The Young Outlaw; or, Adrift in the Streets', 'Alger, Horatio, Jr.', '2008-07-09', 15, 'https://www.gutenberg.org/ebooks/26016', 'en', 264), +(14119, 'The Idler, Volume III., Issue XIII., February 1893\nAn Illustrated Monthly. Edited By Jerome K. Jerome & Robert Barr', 'Various', '2004-05-01', 31, 'https://www.gutenberg.org/ebooks/12223', 'en', 2370), +(14120, 'Excursions, and Poems\r\nThe Writings of Henry David Thoreau, Volume 05 (of 20)', 'Thoreau, Henry David', '2013-04-16', 62, 'https://www.gutenberg.org/ebooks/42553', 'en', 1216), +(14121, 'The Old Countess; or, The Two Proposals', 'Stephens, Ann S. (Ann Sophia)', '2009-08-30', 15, 'https://www.gutenberg.org/ebooks/29862', 'en', 61), +(14122, 'The Dragon and the Raven; Or, The Days of King Alfred', 'Henty, G. A. (George Alfred)', '2003-01-01', 98, 'https://www.gutenberg.org/ebooks/3674', 'en', 6783), +(14123, 'Hogarth\'s Works, with life and anecdotal descriptions of his pictures. Volume 2 (of 3)', 'Ireland, John', '2016-05-03', 11, 'https://www.gutenberg.org/ebooks/51978', 'en', 2557), +(14124, 'Direct Legislation by the Citizenship through the Initiative and Referendum', 'Sullivan, J. W. (James William)', '2006-02-11', 14, 'https://www.gutenberg.org/ebooks/17751', 'en', 6784), +(14125, 'Beaumont and Fletcher\'s Works, Vol. 10 of 10', 'Fletcher, John', '2015-09-30', 15, 'https://www.gutenberg.org/ebooks/50096', 'en', 1088), +(14126, 'Rookwood', 'Ainsworth, William Harrison', '2007-11-20', 56, 'https://www.gutenberg.org/ebooks/23564', 'en', 6785), +(14127, 'Chroniques de J. Froissart, tome 1/13, 2ème partie', 'Froissart, Jean', '2015-05-02', 12, 'https://www.gutenberg.org/ebooks/48855', 'fr', 6786), +(14128, 'Little Journeys to the Homes of the Great - Volume 06\r\nLittle Journeys to the Homes of Eminent Artists', 'Hubbard, Elbert', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/6306', 'en', 6787), +(14129, 'The Story of the Solar System', 'Chambers, George F. (George Frederick)', '2014-10-02', 15, 'https://www.gutenberg.org/ebooks/47021', 'en', 4516), +(14130, 'Friend Island', 'Stevens, Francis', '2011-02-26', 56, 'https://www.gutenberg.org/ebooks/35401', 'en', 3213), +(14131, 'Forest Days: A Romance of Old Times', 'James, G. P. R. (George Payne Rainsford)', '2015-09-16', 10, 'https://www.gutenberg.org/ebooks/49987', 'en', 6788), +(14132, 'Le Montonéro', 'Aimard, Gustave', '2016-02-08', 15, 'https://www.gutenberg.org/ebooks/51144', 'fr', 61), +(14133, 'Secret Bread', 'Jesse, F. Tennyson (Fryniwyd Tennyson)', '2005-09-11', 15, 'https://www.gutenberg.org/ebooks/16683', 'en', 166), +(14134, 'Historic Papers on the Causes of the Civil War', 'Potts, Eugenia Dunlap', '2005-02-09', 23, 'https://www.gutenberg.org/ebooks/15006', 'en', 6789), +(14135, 'Birthright', 'Smith, April', '2019-04-21', 58, 'https://www.gutenberg.org/ebooks/59329', 'en', 658), +(14136, '\"All\'s Well\"; or, Alice\'s Victory', 'Holt, Emily Sarah', '2007-04-27', 6, 'https://www.gutenberg.org/ebooks/21233', 'en', 6790), +(14137, 'Νόμοι και Επινομίς, Τόμος Δ', 'Plato', '2011-05-30', 31, 'https://www.gutenberg.org/ebooks/36284', 'el', 3559), +(14138, 'The Adventures of Harry Richmond — Volume 8', 'Meredith, George', '2003-09-01', 22, 'https://www.gutenberg.org/ebooks/4451', 'en', 2588), +(14139, 'The Sky Detectives; Or, How Jack Ralston Got His Man', 'Newcomb, Ambrose', '2014-05-27', 6, 'https://www.gutenberg.org/ebooks/45776', 'en', 6791), +(14140, 'Sex-Love, and Its Place in a Free Society', 'Carpenter, Edward', '2013-03-16', 23, 'https://www.gutenberg.org/ebooks/37356', 'en', 3052), +(14141, 'The Burgomaster\'s Wife — Complete', 'Ebers, Georg', '2004-11-15', 26, 'https://www.gutenberg.org/ebooks/5583', 'en', 1167), +(14142, 'A Historical Account of Useful Inventions and Scientific Discoveries\nBeing a manual of instruction and entertainment.', 'Grant, George', '2016-11-27', 92, 'https://www.gutenberg.org/ebooks/53613', 'en', 6792), +(14143, 'A History of Rome to 565 A. D.', 'Boak, Arthur E. R. (Arthur Edward Romilly)', '2010-05-31', 44, 'https://www.gutenberg.org/ebooks/32624', 'en', 6793), +(14144, 'The Poetical Works of William Wordsworth — Volume 5 (of 8)', 'Wordsworth, William', '2018-01-12', 51, 'https://www.gutenberg.org/ebooks/56361', 'en', 3947), +(14145, 'A New Voyage Round the World in the Years 1823, 24, 25, and 26. Vol. 1', 'Kotzebue, Otto von', '2008-06-04', 26, 'https://www.gutenberg.org/ebooks/25693', 'en', 4745), +(14146, 'The Campaign of Trenton 1776-77', 'Drake, Samuel Adams', '2008-03-03', 28, 'https://www.gutenberg.org/ebooks/24741', 'en', 6794), +(14147, 'The History of England, Volume I\r\nFrom the Invasion of Julius Caesar to the Revolution in 1688', 'Hume, David', '2004-01-01', 98, 'https://www.gutenberg.org/ebooks/10574', 'en', 1953), +(14148, 'Punch, or the London Charivari, Vol. 105 December 16, 1893', 'Various', '2012-07-11', 8, 'https://www.gutenberg.org/ebooks/40204', 'en', 134), +(14149, 'Twelfth Night; Or, What You Will', 'Shakespeare, William', '1997-12-01', 25, 'https://www.gutenberg.org/ebooks/1123', 'en', 6795), +(14150, 'Malignant Self Love [Excerpts]', 'Vaknin, Samuel', '2003-11-01', 41, 'https://www.gutenberg.org/ebooks/4663', 'en', 5245), +(14151, 'Die Aquarell-Malerei\r\nBemerkungen über die Technik derselben in ihrer Anwendung auf die Landschafts-Malerei. Dritte Auflage.', 'Schmidt, Max', '2014-04-30', 16, 'https://www.gutenberg.org/ebooks/45544', 'de', 6796), +(14152, 'The Tale of the Pie and the Patty Pan', 'Potter, Beatrix', '2005-03-02', 99, 'https://www.gutenberg.org/ebooks/15234', 'en', 766), +(14153, 'Terre-Neuve et les Terre-Neuviennes', 'La Chaume, Henri de', '2007-04-06', 12, 'https://www.gutenberg.org/ebooks/21001', 'fr', 815), +(14154, 'Documentos para la historia del virreinato del Rio de la Plata, tomo 1', NULL, '2016-10-31', 17, 'https://www.gutenberg.org/ebooks/53421', 'es', 6797), +(14155, 'The Abbess Of Vlaye', 'Weyman, Stanley John', '2012-02-17', 17, 'https://www.gutenberg.org/ebooks/38910', 'en', 6798), +(14156, 'Spiders', 'Warburton, Cecil', '2013-12-24', 16, 'https://www.gutenberg.org/ebooks/44496', 'en', 6799), +(14157, 'The Sixth Sense: A Novel', 'McKenna, Stephen', '2011-08-22', 76, 'https://www.gutenberg.org/ebooks/37164', 'en', 6800), +(14158, 'The evolution of English lexicography', 'Murray, James Augustus Henry, Sir', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11694', 'en', 6801), +(14159, 'Evening Tales', 'Ortoli, Jean-Baptiste Frédéric', '2017-12-10', 24, 'https://www.gutenberg.org/ebooks/56153', 'en', 195), +(14160, 'Way of a Rebel', 'Miller, Walter M.', '2010-05-18', 62, 'https://www.gutenberg.org/ebooks/32416', 'en', 2564), +(14161, 'Black Sheep: A Novel', 'Yates, Edmund', '2019-07-16', 223, 'https://www.gutenberg.org/ebooks/59927', 'en', 61), +(14162, 'Tramping with Tramps: Studies and Sketches of Vagabond Life', 'Flynt, Josiah', '2012-06-18', 38, 'https://www.gutenberg.org/ebooks/40036', 'en', 5547), +(14163, 'If: A Play in Four Acts', 'Dunsany, Lord', '1998-05-01', 58, 'https://www.gutenberg.org/ebooks/1311', 'en', 1088), +(14164, 'Projet d\'une loi portant défense d\'apprendre à lire aux femmes', 'Maréchal, Sylvain', '2008-02-11', 62, 'https://www.gutenberg.org/ebooks/24573', 'fr', 6802), +(14165, 'The Memoirs of Charles H. Cramp', 'Buell, Augustus C.', '2018-05-03', 9, 'https://www.gutenberg.org/ebooks/57081', 'en', 6803), +(14166, 'Boule de Suif', 'Maupassant, Guy de', '2004-01-01', 105, 'https://www.gutenberg.org/ebooks/10746', 'fr', 100), +(14167, 'Stones of the Temple; Or, Lessons from the Fabric and Furniture of the Church', 'Field, Walter', '2011-11-09', 17, 'https://www.gutenberg.org/ebooks/37958', 'en', 6804), +(14168, 'Being a Boy', 'Warner, Charles Dudley', '2017-04-27', 9, 'https://www.gutenberg.org/ebooks/54604', 'en', 6805), +(14169, 'The Air Ship Boys : Or, the Quest of the Aztec Treasure', 'Sayler, H. L. (Harry Lincoln)', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/6908', 'en', 3124), +(14170, 'The Forsyte Saga, Volume II.\r\nIndian Summer of a Forsyte\r\nIn Chancery', 'Galsworthy, John', '2006-06-14', 34, 'https://www.gutenberg.org/ebooks/2594', 'en', 432), +(14171, 'Contos Paraenses', 'Carvalho, João Marques de', '2009-10-27', 12, 'https://www.gutenberg.org/ebooks/30341', 'pt', 179), +(14172, 'The Forbidden Room; Or, \"Mine Answer was My Deed\"', 'Allen, Phoebe', '2015-07-07', 6, 'https://www.gutenberg.org/ebooks/49389', 'en', 4426), +(14173, 'Fables and Fabulists: Ancient and Modern', 'Newbigging, Thomas', '2013-05-21', 14, 'https://www.gutenberg.org/ebooks/42761', 'en', 6806), +(14174, 'The Book of the Thousand Nights and a Night — Volume 12 [Supplement]', NULL, '2002-09-01', 71, 'https://www.gutenberg.org/ebooks/3446', 'en', 3347), +(14175, 'Systematic Status of a South American Frog, Allophryne ruthveni Gaige', 'Lynch, John D.', '2010-02-16', 9, 'https://www.gutenberg.org/ebooks/31293', 'en', 6807), +(14176, 'King Lear', 'Shakespeare, William', '2008-08-01', 19, 'https://www.gutenberg.org/ebooks/26224', 'en', 6808), +(14177, 'Monsieur Parent, et autres histoires courtes', 'Maupassant, Guy de', '2004-04-01', 35, 'https://www.gutenberg.org/ebooks/12011', 'fr', 100), +(14178, 'The Evolution of an Empire: A Brief Historical Sketch of England', 'Parmele, Mary Platt', '2004-07-01', 13, 'https://www.gutenberg.org/ebooks/6134', 'en', 1953), +(14179, 'As the Crow Flies: From Corsica to Charing Cross', 'Dodge, Walter Phelps', '2014-10-28', 22, 'https://www.gutenberg.org/ebooks/47213', 'en', 776), +(14180, 'Life in London\nor, the Pitfalls of a Great City', 'Hodder, Edwin', '2006-02-01', 37, 'https://www.gutenberg.org/ebooks/9940', 'en', 2833), +(14181, 'King\'s Cutters and Smugglers 1700-1855', 'Chatterton, E. Keble (Edward Keble)', '2006-01-21', 58, 'https://www.gutenberg.org/ebooks/17563', 'en', 6809), +(14182, 'Geschichte Alexanders des Grossen', 'Droysen, Johann Gustav', '2007-12-06', 63, 'https://www.gutenberg.org/ebooks/23756', 'de', 6810), +(14183, 'Patent Laws of the Republic of Hawaii\nand Rules of Practice in the Patent Office', 'Hawaii', '2007-09-20', 12, 'https://www.gutenberg.org/ebooks/22684', 'en', 6811), +(14184, 'Adela Cathcart, Volume 1', 'MacDonald, George', '2005-09-01', 34, 'https://www.gutenberg.org/ebooks/8892', 'en', 942), +(14185, 'Historical Record of the Fourth, or Royal Irish Regiment of Dragoon Guards.\r\nContaining an Account of the Formation of the Regiment in 1685; and of Its Subsequent Services to 1838', 'Cannon, Richard', '2016-03-06', 5, 'https://www.gutenberg.org/ebooks/51376', 'en', 6812), +(14186, 'The Sword of Honor; or, The Foundation of the French Republic\r\nA Tale of The French Revolution', 'Sue, Eugène', '2011-03-19', 19, 'https://www.gutenberg.org/ebooks/35633', 'en', 248), +(14187, 'Death Points a Finger', 'Levinrew, Will', '2009-10-06', 20, 'https://www.gutenberg.org/ebooks/30187', 'en', 6813), +(14188, 'Martin Guerre\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 39, 'https://www.gutenberg.org/ebooks/2752', 'en', 5050), +(14189, 'Les heures longues, 1914-1917', 'Colette', '2013-08-15', 61, 'https://www.gutenberg.org/ebooks/43475', 'fr', 449), +(14190, 'Captain Blood', 'Sabatini, Rafael', '2009-05-01', 25, 'https://www.gutenberg.org/ebooks/28944', 'en', 1563), +(14191, 'The Square Root of 5', 'Nemiroff, Robert J.', '1996-08-01', 11, 'https://www.gutenberg.org/ebooks/629', 'en', 5180), +(14192, 'Alfgar the Dane or the Second Chronicle of Aescendune\r\nA Tale of the Days of Edmund Ironside', 'Crake, A. D. (Augustine David)', '2004-08-27', 31, 'https://www.gutenberg.org/ebooks/13305', 'en', 6814), +(14193, 'A Pindarick Ode on Painting\nAddressed to Joshua Reynolds, Esq.', 'Morrison, Thomas', '2008-11-02', 12, 'https://www.gutenberg.org/ebooks/27130', 'en', 6815), +(14194, 'Lady Jim of Curzon Street: A Novel', 'Hume, Fergus', '2017-09-08', 35, 'https://www.gutenberg.org/ebooks/55510', 'en', 128), +(14195, 'Sex--The Unknown Quantity: The Spiritual Function of Sex', 'McIvor-Tyndall, Alexander J. (Alexander James)', '2009-09-03', 31, 'https://www.gutenberg.org/ebooks/29896', 'en', 3052), +(14196, 'Twenty-Five Years in the Black Belt', 'Edwards, William James', '2010-01-23', 9, 'https://www.gutenberg.org/ebooks/31055', 'en', 4107), +(14197, 'Cartrefi Cymru', 'Edwards, Owen Morgan, Sir', '2003-01-01', 22, 'https://www.gutenberg.org/ebooks/3680', 'cy', 6816), +(14198, 'The World English Bible (WEB): Mark', 'Anonymous', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8268', 'en', 3278), +(14199, 'En qvinna af vår tid: Karaktersteckning', 'Linder, Marie', '2015-09-26', 6, 'https://www.gutenberg.org/ebooks/50062', 'sv', 61), +(14200, 'Sound Military Decision', 'Naval War College (U.S.)', '2009-02-24', 63, 'https://www.gutenberg.org/ebooks/28178', 'en', 6817), +(14201, 'Alexandre Herculano', 'Cordeiro, Manoel Caldas', '2007-11-22', 11, 'https://www.gutenberg.org/ebooks/23590', 'pt', 6818), +(14202, 'Makers', 'Doctorow, Cory', '2010-12-01', 103, 'https://www.gutenberg.org/ebooks/34527', 'en', 6819), +(14203, 'The German Lieutenant, and Other Stories', 'Strindberg, August', '2014-06-26', 57, 'https://www.gutenberg.org/ebooks/46107', 'en', 1834), +(14204, '竹齋集', 'Wang, Mian', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/7220', 'zh', 6820), +(14205, 'The Four Million', 'Henry, O.', '2007-08-01', 15, 'https://www.gutenberg.org/ebooks/22442', 'en', 2999), +(14206, 'Kulkurielämää: Nuoruudenmuistelmia', 'London, Jack', '2015-09-15', 12, 'https://www.gutenberg.org/ebooks/49973', 'fi', 1195), +(14207, 'The Chink in the Armour', 'Lowndes, Marie Belloc', '2005-09-10', 21, 'https://www.gutenberg.org/ebooks/16677', 'en', 167), +(14208, 'The Lamplighter', 'Cummins, Maria S. (Maria Susanna)', '2010-04-02', 56, 'https://www.gutenberg.org/ebooks/31869', 'en', 500), +(14209, 'Kuolema ja kuolematon', 'Schopenhauer, Arthur', '2016-08-06', 6, 'https://www.gutenberg.org/ebooks/52735', 'fi', 1509), +(14210, 'The Gospel of Evolution\r\nFrom \"The Atheistic Platform\", Twelve Lectures', 'Aveling, Edward B.', '2011-05-29', 14, 'https://www.gutenberg.org/ebooks/36270', 'en', 1315), +(14211, 'The Little Brown Jug at Kildare', 'Nicholson, Meredith', '2014-05-27', 30, 'https://www.gutenberg.org/ebooks/45782', 'en', 4905), +(14212, 'Harper\'s Young People, January 4, 1881\nAn Illustrated Monthly', 'Various', '2014-01-12', 4, 'https://www.gutenberg.org/ebooks/44650', 'en', 479), +(14213, 'A Word, Only a Word — Complete', 'Ebers, Georg', '2004-11-15', 28, 'https://www.gutenberg.org/ebooks/5577', 'en', 803), +(14214, 'The Grasshopper Stories', 'Leavitt, Elizabeth Davis', '2007-01-08', 13, 'https://www.gutenberg.org/ebooks/20315', 'en', 388), +(14215, 'Answer to Dr. Priestley\'s Letters to a Philosophical Unbeliever', 'Hammon, William', '2004-11-22', 8, 'https://www.gutenberg.org/ebooks/14120', 'en', 6821), +(14216, 'The Homesteader: A Novel', 'Micheaux, Oscar', '2012-03-24', 46, 'https://www.gutenberg.org/ebooks/39238', 'en', 6822), +(14217, 'Histoire de ma Vie, Livre 2 (Vol. 5 - 9)', 'Sand, George', '2012-11-08', 33, 'https://www.gutenberg.org/ebooks/41322', 'fr', 6823), +(14218, 'Musketry (.303 and .22 cartridges)\r\nElementary training, visual training, judging distance, fire discipline, range practices, field practices', NULL, '2018-01-19', 24, 'https://www.gutenberg.org/ebooks/56395', 'en', 6824), +(14219, 'Stories by American Authors, Volume 6', 'Various', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11452', 'en', 1426), +(14220, 'Hamlet: Drama em cinco Actos', 'Shakespeare, William', '2008-06-01', 97, 'https://www.gutenberg.org/ebooks/25667', 'pt', 5264), +(14221, 'The Positive School of Criminology\nThree Lectures Given at the University of Naples, Italy on April 22, 23 and 24, 1901', 'Ferri, Enrico', '2004-01-01', 121, 'https://www.gutenberg.org/ebooks/10580', 'en', 2839), +(14222, 'China Revolutionized', 'Thomson, John Stuart', '2018-06-01', 19, 'https://www.gutenberg.org/ebooks/57247', 'en', 6825), +(14223, 'The Story of Sir Launcelot and His Companions', 'Pyle, Howard', '2010-09-10', 41, 'https://www.gutenberg.org/ebooks/33702', 'en', 3600), +(14224, 'Peter Bell the Third', 'Shelley, Percy Bysshe', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/4697', 'en', 8), +(14225, 'The Cave by the Beech Fork: A Story of Kentucky—1815', 'Spalding, Henry S. (Henry Stanislaus)', '2011-05-06', 29, 'https://www.gutenberg.org/ebooks/36042', 'en', 1996), +(14226, 'Anthony the Absolute', 'Merwin, Samuel', '2016-07-05', 10, 'https://www.gutenberg.org/ebooks/52507', 'en', 533), +(14227, 'L\'Illustration, No. 0042, 16 Décembre 1843', 'Various', '2012-05-28', 1, 'https://www.gutenberg.org/ebooks/39836', 'fr', 150), +(14228, 'Here are Ladies', 'Stephens, James', '2006-12-19', 12, 'https://www.gutenberg.org/ebooks/20127', 'en', 8), +(14229, 'What All The World\'s A-Seeking\r\nThe Vital Law of True Life, True Greatness Power and Happiness', 'Trine, Ralph Waldo', '2004-12-09', 19, 'https://www.gutenberg.org/ebooks/14312', 'en', 1794), +(14230, 'How to Make Electrical Machines\nContaining Full Directions for Making Electrical Machines, Induction Coils, Dynamos, and Many Novel Toys to Be Worked by Electricity', 'Bennett, R. A. R. (Reginald Arthur Renaud)', '2013-12-19', 71, 'https://www.gutenberg.org/ebooks/44462', 'en', 6826), +(14231, 'She and Allan', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 131, 'https://www.gutenberg.org/ebooks/5745', 'en', 5048), +(14232, 'The Battle of San Jacinto and the San Jacinto Campaign', 'Kilman, Edward W.', '2018-09-04', 5, 'https://www.gutenberg.org/ebooks/57849', 'en', 334), +(14233, 'The Main Chance', 'Nicholson, Meredith', '2011-08-24', 13, 'https://www.gutenberg.org/ebooks/37190', 'en', 6827), +(14234, 'Ethel Morton\'s Enterprise', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11660', 'en', 6828), +(14235, 'The Song of the Flag: A National Ode', 'Mackay, Eric', '2008-05-12', 6, 'https://www.gutenberg.org/ebooks/25455', 'en', 54), +(14236, 'Arabian Society in the Middle Ages: Studies From The Thousand and One Nights', 'Lane, Edward William', '2012-10-19', 41, 'https://www.gutenberg.org/ebooks/41110', 'en', 6829), +(14237, 'Dorothy Dale at Glenwood School', 'Penrose, Margaret', '2010-08-24', 18, 'https://www.gutenberg.org/ebooks/33530', 'en', 2096), +(14238, 'Essais de Montaigne (self-édition) - Volume III', 'Montaigne, Michel de', '2019-02-01', 44, 'https://www.gutenberg.org/ebooks/58801', 'fr', 4252), +(14239, 'The Lowest Rung\nTogether with The Hand on the Latch, St. Luke\'s Summer and The Understudy', 'Cholmondeley, Mary', '2008-02-12', 13, 'https://www.gutenberg.org/ebooks/24587', 'en', 409), +(14240, 'Vie privée et publique des animaux', NULL, '2018-05-01', 44, 'https://www.gutenberg.org/ebooks/57075', 'fr', 4590), +(14241, 'The Secret of Dreams', 'Raizizun, Yacki', '2004-08-08', 46, 'https://www.gutenberg.org/ebooks/13137', 'en', 6758), +(14242, '鄰女語', 'Youhuanyusheng', '2008-11-20', 15, 'https://www.gutenberg.org/ebooks/27302', 'zh', 6830), +(14243, 'The Three Partners', 'Harte, Bret', '2006-05-18', 25, 'https://www.gutenberg.org/ebooks/2560', 'en', 50), +(14244, 'Aboriginal American Authors', 'Brinton, Daniel G. (Daniel Garrison)', '2005-10-01', 24, 'https://www.gutenberg.org/ebooks/9188', 'en', 6831), +(14245, 'Female Warriors, Vol. 2 (of 2)\r\nMemorials of Female Valour and Heroism, from the Mythological Ages to the Present Era.', 'Clayton, Ellen C. (Ellen Creathorne)', '2013-09-05', 20, 'https://www.gutenberg.org/ebooks/43647', 'en', 6832), +(14246, 'Notes and Queries, Number 178, March 26, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 10, 'https://www.gutenberg.org/ebooks/42795', 'en', 105), +(14247, 'Taxonomy of the Chipmunks, Eutamias quadrivittatus and Eutamias umbrinus', 'White, John A.', '2010-02-12', 11, 'https://www.gutenberg.org/ebooks/31267', 'en', 6833), +(14248, 'Woman and Her Wits: Epigrams on Woman, Love, and Beauty', NULL, '2017-10-09', 15, 'https://www.gutenberg.org/ebooks/55722', 'en', 5536), +(14249, 'Nouvel atlas de poche des champignons Comestibles et Vénéneux les plus répandus. Série I (Troisième édition)\nSuivi de notions générales sur les champignons, leur classification, composition chimique, valeur alimentaire, préparation', 'Dumée, Paul', '2010-12-22', 31, 'https://www.gutenberg.org/ebooks/34715', 'fr', 6834), +(14250, 'Annan unelmavuodet', 'Montgomery, L. M. (Lucy Maud)', '2015-10-19', 32, 'https://www.gutenberg.org/ebooks/50250', 'fi', 2783), +(14251, 'Halil the Pedlar: A Tale of Old Stambul', 'Jókai, Mór', '2006-01-24', 20, 'https://www.gutenberg.org/ebooks/17597', 'en', 6835), +(14252, 'The Bluff of the Hawk', 'Gilmore, Anthony', '2009-07-03', 70, 'https://www.gutenberg.org/ebooks/29298', 'en', 26), +(14253, 'Jack Wright and His Electric Stage; or, Leagued Against the James Boys', 'Senarens, Luis', '2007-09-19', 15, 'https://www.gutenberg.org/ebooks/22670', 'en', 6611), +(14254, 'Observations and Reflections Made in the Course of a Journey through France, Italy, and Germany, Vol. 1 (of 2)', 'Piozzi, Hester Lynch', '2005-08-05', 30, 'https://www.gutenberg.org/ebooks/16445', 'en', 3386), +(14255, 'The National Geographic Magazine, Vol. II., No. 2, May, 1890', 'Various', '2016-03-06', 5, 'https://www.gutenberg.org/ebooks/51382', 'en', 3550), +(14256, 'Wild Flowers Worth Knowing', 'Blanchan, Neltje', '2005-09-01', 133, 'https://www.gutenberg.org/ebooks/8866', 'en', 6836), +(14257, 'Mit liv og levned som jeg selv har forstaaet det', 'Fibiger, J. (Johannes)', '2014-07-19', 7, 'https://www.gutenberg.org/ebooks/46335', 'da', 6837), +(14258, 'Mes Origines; Mémoires Et Récits De Frédéric Mistral', 'Mistral, Frédéric', '2004-12-01', 10, 'https://www.gutenberg.org/ebooks/7012', 'fr', 6838), +(14259, 'Edward FitzGerald and \"Posh\"\n\"Herring Merchants\"', 'Blyth, James', '2007-02-08', 20, 'https://www.gutenberg.org/ebooks/20543', 'en', 6839), +(14260, 'Lady Car: The Sequel of a Life', 'Oliphant, Mrs. (Margaret)', '2018-12-12', 8, 'https://www.gutenberg.org/ebooks/58459', 'en', 675), +(14261, 'The Arabian Art of Taming and Training Wild & Vicious Horses', 'Kincaid, P. R.', '2005-01-24', 25, 'https://www.gutenberg.org/ebooks/14776', 'en', 2777), +(14262, 'The Academy Boys in Camp', 'Keene, S. F., Mrs.', '2010-09-27', 15, 'https://www.gutenberg.org/ebooks/33968', 'en', 6840), +(14263, 'Warren Commission (06 of 26): Hearings Vol. VI (of 15)', 'United States. Warren Commission', '2013-10-20', 17, 'https://www.gutenberg.org/ebooks/44006', 'en', 5679), +(14264, 'Concerning the Spiritual in Art', 'Kandinsky, Wassily', '2004-03-01', 250, 'https://www.gutenberg.org/ebooks/5321', 'en', 2250), +(14265, 'The Motor Girls at Camp Surprise; Or, The Cave in the Mountains', 'Penrose, Margaret', '2011-06-14', 13, 'https://www.gutenberg.org/ebooks/36426', 'en', 107), +(14266, 'Boswelliana: The Commonplace Book of James Boswell, with a Memoir and Annotations', 'Boswell, James', '2016-05-26', 33, 'https://www.gutenberg.org/ebooks/52163', 'en', 6841), +(14267, 'The Trapper\'s Son', 'Kingston, William Henry Giles', '2007-05-16', 25, 'https://www.gutenberg.org/ebooks/21491', 'en', 6842), +(14268, 'The Telephone\r\nAn Account of the Phenomena of Electricity, Magnetism, and Sound, as Involved in Its Action', 'Dolbear, A. E. (Amos Emerson)', '2010-07-14', 38, 'https://www.gutenberg.org/ebooks/33154', 'en', 6843), +(14269, 'The Merry Wives of Windsor', 'Shakespeare, William', '1999-06-01', 24, 'https://www.gutenberg.org/ebooks/1781', 'en', 6844), +(14270, 'The Magic of the Horse-shoe, with other folk-lore notes', 'Lawrence, Robert Means', '2018-06-27', 20, 'https://www.gutenberg.org/ebooks/57411', 'en', 1223), +(14271, 'Diseases of the Horse\'s Foot', 'Reeks, H. Caulton (Harry Caulton)', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/11204', 'en', 6845), +(14272, 'Davy and the Goblin\r\nWhat Followed Reading \'Alice\'s Adventures in Wonderland\'', 'Carryl, Charles E. (Charles Edward)', '2008-04-10', 33, 'https://www.gutenberg.org/ebooks/25031', 'en', 2203), +(14273, 'Japan: A Record in Colour', 'Menpes, Dorothy', '2010-04-22', 29, 'https://www.gutenberg.org/ebooks/32086', 'en', 6846), +(14274, 'A Man\'s Man', 'Hay, Ian', '2012-12-07', 8, 'https://www.gutenberg.org/ebooks/41574', 'en', 2530), +(14275, 'Harper\'s Young People, October 25, 1881\nAn Illustrated Weekly', 'Various', '2015-08-17', 1, 'https://www.gutenberg.org/ebooks/49719', 'en', 479), +(14276, 'Studies in Prophecy', 'Gaebelein, Arno Clemens', '2010-03-11', 13, 'https://www.gutenberg.org/ebooks/31603', 'en', 4149), +(14277, 'The Silent House', 'Hume, Fergus', '2006-08-17', 32, 'https://www.gutenberg.org/ebooks/19069', 'en', 128), +(14278, 'Lectures on Painting, Delivered to the Students of the Royal Acadamy', 'Armitage, Edward', '2017-08-11', 28, 'https://www.gutenberg.org/ebooks/55346', 'en', 3670), +(14279, 'Hero Tales of the Far North', 'Riis, Jacob A. (Jacob August)', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/12481', 'en', 6847), +(14280, 'The Tidal Wave and Other Stories', 'Dell, Ethel M. (Ethel May)', '2004-09-29', 43, 'https://www.gutenberg.org/ebooks/13553', 'en', 179), +(14281, 'Charlie Codman\'s Cruise: A Story for Boys', 'Alger, Horatio, Jr.', '2017-03-07', 20, 'https://www.gutenberg.org/ebooks/54294', 'en', 195), +(14282, 'Romance of Roman Villas (The Renaissance)', 'Champney, Elizabeth W. (Elizabeth Williams)', '2009-01-10', 10, 'https://www.gutenberg.org/ebooks/27766', 'en', 3484), +(14283, 'History of Friedrich II of Prussia — Volume 04', 'Carlyle, Thomas', '2008-06-16', 34, 'https://www.gutenberg.org/ebooks/2104', 'en', 6848), +(14284, 'The World\'s Best Poetry, Volume 09: Of Tragedy: of Humour', NULL, '2013-07-15', 36, 'https://www.gutenberg.org/ebooks/43223', 'en', 2346), +(14285, 'Molly Bawn', 'Duchess', '2007-08-01', 35, 'https://www.gutenberg.org/ebooks/22214', 'en', 61), +(14286, 'Cantique de Noël', 'Dickens, Charles', '2005-06-07', 46, 'https://www.gutenberg.org/ebooks/16021', 'fr', 6849), +(14287, 'The Strength of the \"Mormon\" Position', 'Whitney, Orson F. (Orson Ferguson)', '2014-09-01', 26, 'https://www.gutenberg.org/ebooks/46751', 'en', 310), +(14288, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 03', 'Hakluyt, Richard', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7476', 'en', 885), +(14289, 'Louis\' School Days: A Story for Boys', 'May, E. J. (Edith J.)', '2006-11-17', 28, 'https://www.gutenberg.org/ebooks/19855', 'en', 621), +(14290, 'Susan Clegg and Her Neighbors\' Affairs', 'Warner, Anne', '2006-08-04', 16, 'https://www.gutenberg.org/ebooks/18987', 'en', 828), +(14291, 'The Life of Francis Marion', 'Simms, William Gilmore', '1997-03-01', 104, 'https://www.gutenberg.org/ebooks/843', 'en', 6850), +(14292, 'Pliocene and Pleistocene Records of Fossil Turtles from Western Kansas and Oklahoma\nUniversity of Kansas Publications Museum of Natural History Volume 1', 'Galbreath, Edwin C. (Edwin Carter)', '2010-11-20', 19, 'https://www.gutenberg.org/ebooks/34371', 'en', 6851), +(14293, 'Daisy', 'Saunders, Marshall', '2014-12-17', 10, 'https://www.gutenberg.org/ebooks/47683', 'en', 6852), +(14294, 'Among the Trees Again', 'Stein, Evaleen', '2015-12-07', 8, 'https://www.gutenberg.org/ebooks/50634', 'en', 178), +(14295, 'Yeast', 'Huxley, Thomas Henry', '2001-11-01', 44, 'https://www.gutenberg.org/ebooks/2938', 'en', 6853), +(14296, 'The Dukeries', 'Gilchrist, Murray', '2008-08-30', 11, 'https://www.gutenberg.org/ebooks/26486', 'en', 6854), +(14297, 'Oratory Sacred and Secular; Or, The Extemporaneous Speaker\r\nWith Sketches of the Most Eminent Speakers of All Ages', 'Pittenger, William', '2017-07-23', 11, 'https://www.gutenberg.org/ebooks/55174', 'en', 3906), +(14298, 'Old-Time Stories', 'Perrault, Charles', '2010-02-27', 60, 'https://www.gutenberg.org/ebooks/31431', 'en', 1007), +(14299, 'Wilhelm Meisters Lehrjahre — Band 2', 'Goethe, Johann Wolfgang von', '2000-09-01', 32, 'https://www.gutenberg.org/ebooks/2336', 'de', 5194), +(14300, 'Roy Blakeley\'s Silver Fox Patrol', 'Fitzhugh, Percy Keese', '2013-06-22', 9, 'https://www.gutenberg.org/ebooks/43011', 'en', 167), +(14301, 'Thuringen\nDe Aarde en haar Volken, 1873', 'Anonymous', '2006-05-14', 6, 'https://www.gutenberg.org/ebooks/18389', 'nl', 6855), +(14302, 'The Bay State Monthly — Volume 1, No. 6, June, 1884', 'Various', '2004-10-16', 14, 'https://www.gutenberg.org/ebooks/13761', 'en', 1593), +(14303, 'The Twelfth Hour', 'Leverson, Ada', '2008-12-17', 28, 'https://www.gutenberg.org/ebooks/27554', 'en', 432), +(14304, 'Rejtelmek (2. kötet)', 'Bródy, Sándor', '2014-08-11', 7, 'https://www.gutenberg.org/ebooks/46563', 'hu', 189), +(14305, 'Ernest Maltravers — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7644', 'en', 137), +(14306, 'The Invisible Censor', 'Hackett, Francis', '2010-01-27', 65, 'https://www.gutenberg.org/ebooks/35091', 'en', 4637), +(14307, 'The Abysmal Brute', 'London, Jack', '2017-11-12', 59, 'https://www.gutenberg.org/ebooks/55948', 'en', 4171), +(14308, 'I demagoghi\r\nO, I misteri di Livorno', 'Monteverde, Cesare', '2007-07-09', 9, 'https://www.gutenberg.org/ebooks/22026', 'it', 61), +(14309, 'Punch, or the London Charivari, Vol. 158, 1920-04-21', 'Various', '2005-07-05', 6, 'https://www.gutenberg.org/ebooks/16213', 'en', 134), +(14310, 'Operation Interstellar', 'Smith, George O. (George Oliver)', '2015-11-07', 37, 'https://www.gutenberg.org/ebooks/50406', 'en', 1564), +(14311, 'The Poems of Schiller — Third period', 'Schiller, Friedrich', '2004-12-08', 49, 'https://www.gutenberg.org/ebooks/6796', 'en', 8), +(14312, 'A Little World', 'Fenn, George Manville', '2010-10-26', 13, 'https://www.gutenberg.org/ebooks/34143', 'en', 262), +(14313, 'Ypres 1914: An Official Account Published by Order of the German General Staff', 'Schwink, Otto', '2013-11-19', 35, 'https://www.gutenberg.org/ebooks/44234', 'en', 6856), +(14314, 'The Confessions of a Beachcomber', 'Banfield, E. J. (Edmund James)', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5113', 'en', 6857), +(14315, 'Species Plantarum, Sections I-III', 'Linné, Carl von', '2007-03-08', 78, 'https://www.gutenberg.org/ebooks/20771', 'la', 6858), +(14316, 'Die große Stille: Roman', 'Lilienfein, Heinrich', '2016-10-15', 5, 'https://www.gutenberg.org/ebooks/53283', 'de', 549), +(14317, 'Punch, or the London Charivari, Volume 102, April 30, 1892', 'Various', '2004-12-31', 5, 'https://www.gutenberg.org/ebooks/14544', 'en', 134), +(14318, 'The Militants\nStories of Some Parsons, Soldiers, and Other Fighters in the World', 'Andrews, Mary Raymond Shipman', '2005-03-29', 22, 'https://www.gutenberg.org/ebooks/15496', 'en', 55), +(14319, 'Square and Compasses; Or, Building the House', 'Optic, Oliver', '2016-06-16', 14, 'https://www.gutenberg.org/ebooks/52351', 'en', 2794), +(14320, 'The Child Who Died and Lived Again', 'Mortimer, Favell Lee', '2011-07-04', 15, 'https://www.gutenberg.org/ebooks/36614', 'en', 6859), +(14321, 'The Loudwater Tragedy', 'Speight, T. W. (Thomas Wilkinson)', '2018-08-01', 28, 'https://www.gutenberg.org/ebooks/57623', 'en', 1425), +(14322, 'Philosophes et Écrivains Religieux', 'Barbey d\'Aurevilly, J. (Jules)', '2012-09-06', 15, 'https://www.gutenberg.org/ebooks/40694', 'fr', 6860), +(14323, 'Punch, or the London Charivari, Vol. 98, June 14 1890', 'Various', '2010-08-07', 12, 'https://www.gutenberg.org/ebooks/33366', 'en', 134), +(14324, 'Flor de mayo', 'Blasco Ibáñez, Vicente', '2012-12-31', 37, 'https://www.gutenberg.org/ebooks/41746', 'es', 1696), +(14325, 'Légendes Normandes', 'Lavalley, Gaston', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11036', 'fr', 100), +(14326, 'The Land of Fire: A Tale of Adventure', 'Reid, Mayne', '2008-04-28', 30, 'https://www.gutenberg.org/ebooks/25203', 'en', 6861), +(14327, 'The Black-Sealed Letter\nOr, The Misfortunes of a Canadian Cockney.', 'Spedon, Andrew Learmont', '2006-06-06', 11, 'https://www.gutenberg.org/ebooks/18514', 'en', 1219), +(14328, 'A Biography of Edmund Spenser', 'Hales, John W. (John Wesley)', '2004-11-01', 39, 'https://www.gutenberg.org/ebooks/6937', 'en', 6862), +(14329, 'Summer Cruise in the Mediterranean on board an American frigate', 'Willis, Nathaniel Parker', '2015-02-15', 9, 'https://www.gutenberg.org/ebooks/48264', 'en', 6863), +(14330, 'The Valley of the Moon', 'London, Jack', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/9143', 'en', 378), +(14331, 'The Metal Monster', 'Merritt, Abraham', '2002-10-01', 110, 'https://www.gutenberg.org/ebooks/3479', 'en', 2588), +(14332, 'Sketches and Studies', 'Hawthorne, Nathaniel', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8091', 'en', 2645); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(14333, 'Ben, the Luggage Boy; Or, Among the Wharves', 'Alger, Horatio, Jr.', '2009-03-21', 49, 'https://www.gutenberg.org/ebooks/28381', 'en', 3617), +(14334, 'Report on Surgery to the Santa Clara County Medical Society', 'Cox, Joseph Bradford', '2007-12-08', 6, 'https://www.gutenberg.org/ebooks/23769', 'en', 6864), +(14335, 'Sicherer Wegweiser zu einer guten und gesunden Wohnung\nZwei Preisschriften', 'Meyer-Merian, Theodor', '2016-03-03', 10, 'https://www.gutenberg.org/ebooks/51349', 'de', 6865), +(14336, 'The Girl Scouts: A Training School for Womanhood', 'Wiggin, Kate Douglas Smith', '2009-06-26', 12, 'https://www.gutenberg.org/ebooks/29253', 'en', 6866), +(14337, 'Oeuvres poétiques Tome 2', 'Christine, de Pisan', '2004-07-04', 24, 'https://www.gutenberg.org/ebooks/12812', 'fr', 8), +(14338, 'Back at School with the Tucker Twins', 'Speed, Nell', '2011-05-13', 19, 'https://www.gutenberg.org/ebooks/36089', 'en', 6867), +(14339, 'Uncle Wiggily\'s Squirt Gun; Or, Jack Frost Icicle Maker\r\nAnd, Uncle Wiggily\'s Queer Umbrellas, also, Uncle Wiggily\'s Lemonade Stand', 'Garis, Howard Roger', '2018-04-10', 41, 'https://www.gutenberg.org/ebooks/56950', 'en', 625), +(14340, 'The Horse and His Rider\r\nOr, Sketches and Anecdotes of the Noble Quadruped, and of Equestrian Nations', 'Springfield, Rollo', '2019-03-25', 16, 'https://www.gutenberg.org/ebooks/59124', 'en', 6868), +(14341, 'The Pauper of Park Lane', 'Le Queux, William', '2012-09-22', 13, 'https://www.gutenberg.org/ebooks/40835', 'en', 1319), +(14342, 'A Cruise in the Sky; or, The Legend of the Great Pink Pearl', 'Sayler, H. L. (Harry Lincoln)', '2018-09-10', 4, 'https://www.gutenberg.org/ebooks/57882', 'en', 6869), +(14343, 'Yntemoca yntlacamecayo, yn tlahtoque yn teteuhctin yn ompa tlaca ypan altepetl culhuacan yhuan nican tlahtoque teteuhctin yn ipan in tlaca huey altepetl mexico tenochtitlan\nOquitlallitiaque yn tlahtoque teteuhctin culhuacan', 'Chimalpahin Cuauhtlehuanitzin, Domingo Francisco de San Antón Muñón', '2007-06-11', 19, 'https://www.gutenberg.org/ebooks/21802', 'nah', 6870), +(14344, 'The Mountain Girl', 'Erskine, Payne', '2010-05-19', 16, 'https://www.gutenberg.org/ebooks/32429', 'en', 48), +(14345, 'The Story of a Governess', 'Oliphant, Mrs. (Margaret)', '2019-07-14', 450, 'https://www.gutenberg.org/ebooks/59918', 'en', 6871), +(14346, 'Aatelisrosvo Dubrovskij', 'Pushkin, Aleksandr Sergeevich', '2011-11-23', 12, 'https://www.gutenberg.org/ebooks/38113', 'fi', 1014), +(14347, 'Encyclopaedia Britannica, 11th Edition, \"Indole\" to \"Insanity\"\r\nVolume 14, Slice 5', 'Various', '2012-06-16', 24, 'https://www.gutenberg.org/ebooks/40009', 'en', 1081), +(14348, 'Happy Little Edward\nAnd His Pleasant Ride and Rambles in the Country.', 'Unknown', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/10779', 'en', 6872), +(14349, 'More Portmanteau Plays', 'Walker, Stuart', '2011-11-10', 12, 'https://www.gutenberg.org/ebooks/37967', 'en', 427), +(14350, 'Reis in Utah en Arizona\r\nDe Aarde en haar Volken, 1886', 'Tissandier, Albert', '2005-02-14', 18, 'https://www.gutenberg.org/ebooks/15039', 'nl', 6873), +(14351, 'Computers on the Farm\r\nFarm Uses for Computers, How to Select Software and Hardware, and Online Information Sources in Agriculture', 'Smith, Deborah Takiff', '2019-04-20', 42, 'https://www.gutenberg.org/ebooks/59316', 'en', 6874), +(14352, 'A Change of Air', 'Hope, Anthony', '2014-05-24', 20, 'https://www.gutenberg.org/ebooks/45749', 'en', 6875), +(14353, 'Rob of the Bowl: A Legend of St. Inigoe\'s. Vol. 1 (of 2)', 'Kennedy, John Pendleton', '2011-09-09', 13, 'https://www.gutenberg.org/ebooks/37369', 'en', 6876), +(14354, 'Billy Baxter\'s Letters', 'Kountz, William J.', '1999-10-01', 13, 'https://www.gutenberg.org/ebooks/1920', 'en', 2116), +(14355, 'La mort de César,\r\ntragédie en trois actes de Voltaire, avec les changemens fait par le citoyen Gohier, ministre de la Justice', 'Voltaire', '2005-05-09', 12, 'https://www.gutenberg.org/ebooks/15805', 'fr', 1298), +(14356, 'An Essence of the Dusk, 5th Edition', 'Bain, F. W. (Francis William)', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11499', 'en', 580), +(14357, 'Economy of the Round Dairy Barn', 'Fraser, Wilber J. (Wilber John)', '2011-12-16', 5, 'https://www.gutenberg.org/ebooks/38321', 'en', 6877), +(14358, 'Miscellaneous Pieces, in Prose', 'Barbauld, Mrs. (Anna Letitia)', '2015-01-24', 26, 'https://www.gutenberg.org/ebooks/48056', 'en', 6878), +(14359, 'Eben Holden: A Tale of the North Country', 'Bacheller, Irving', '2001-09-01', 21, 'https://www.gutenberg.org/ebooks/2799', 'en', 2287), +(14360, 'The Praise of Folly', 'Erasmus, Desiderius', '2005-11-01', 179, 'https://www.gutenberg.org/ebooks/9371', 'en', 6879), +(14361, 'The Rat-Pit', 'MacGill, Patrick', '2016-01-11', 21, 'https://www.gutenberg.org/ebooks/50895', 'en', 6880), +(14362, 'The Gladiators. A Tale of Rome and Judæa', 'Whyte-Melville, G. J. (George John)', '2014-12-30', 27, 'https://www.gutenberg.org/ebooks/47822', 'en', 6881), +(14363, 'New England Joke Lore: The Tonic of Yankee Humor', 'Crandall, Arthur George', '2017-03-21', 10, 'https://www.gutenberg.org/ebooks/54409', 'en', 190), +(14364, 'Poems and Ballads (Third Series)\nTaken from The Collected Poetical Works of Algernon Charles\nSwinburne—Vol. III', 'Swinburne, Algernon Charles', '2006-07-01', 27, 'https://www.gutenberg.org/ebooks/18726', 'en', 8), +(14365, 'Printing and the Renaissance\nA paper read before the Fortnightly Club of Rochester, New York', 'Slater, John Rothwell', '2008-07-11', 7, 'https://www.gutenberg.org/ebooks/26029', 'en', 6882), +(14366, 'A Gray Eye or So. In Three Volumes—Volume I, II and III: Complete', 'Moore, Frank Frankfort', '2016-05-02', 12, 'https://www.gutenberg.org/ebooks/51947', 'en', 757), +(14367, 'Alla finestra: Novelle', 'Castelnuovo, Enrico', '2015-06-09', 9, 'https://www.gutenberg.org/ebooks/49184', 'it', 860), +(14368, 'Miss Cayley\'s Adventures', 'Allen, Grant', '2010-01-15', 54, 'https://www.gutenberg.org/ebooks/30970', 'en', 348), +(14369, 'The Boy Scouts on a Submarine', 'Blaine, John', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6339', 'en', 5237), +(14370, 'Le roman d\'un jeune homme pauvre (Novel)', 'Feuillet, Octave', '2008-10-07', 6, 'https://www.gutenberg.org/ebooks/26815', 'fr', 6883), +(14371, 'Relacion historial de las misiones de indios chiquitos que en el Paraguay tienen los padres de la Compañía de Jesús', 'Fernández, Juan Patricio', '2009-06-07', 26, 'https://www.gutenberg.org/ebooks/29061', 'es', 6884), +(14372, 'Power of Mental Imagery\nBeing the Fifth of a Series of Twelve Volumes on the\nApplications of Psychology to the Problems of Personal and\nBusiness Efficiency', 'Hilton, Warren', '2007-09-02', 55, 'https://www.gutenberg.org/ebooks/22489', 'en', 5175), +(14373, 'English Poems', 'Le Gallienne, Richard', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/10913', 'en', 532), +(14374, 'Gallant Little Wales: Sketches of its people, places and customs', NULL, '2016-10-10', 12, 'https://www.gutenberg.org/ebooks/53248', 'en', 1402), +(14375, 'The Complex Vision', 'Powys, John Cowper', '2007-06-03', 43, 'https://www.gutenberg.org/ebooks/21668', 'en', 779), +(14376, 'Convict B 14: A Novel', 'Weekes, R. K. (Rose Kirkpatrick)', '2019-06-17', 103, 'https://www.gutenberg.org/ebooks/59772', 'en', 4448), +(14377, 'Aucassin and Nicolete', NULL, '1998-12-01', 36, 'https://www.gutenberg.org/ebooks/1578', 'en', 6885), +(14378, 'The Little Gleaner, Vol. X.\nA Monthly Magazine for the Young', 'Various', '2012-02-01', 10, 'https://www.gutenberg.org/ebooks/38745', 'en', 6886), +(14379, 'Kertomuksia', 'Benedictsson, Victoria', '2012-05-14', 11, 'https://www.gutenberg.org/ebooks/39697', 'fi', 2168), +(14380, 'The Rise of the Dutch Republic — Complete (1555-84)', 'Motley, John Lothrop', '2004-11-07', 61, 'https://www.gutenberg.org/ebooks/4836', 'en', 3372), +(14381, 'Statement on Bahá\'u\'lláh', 'Bahá\'í International Community', '2006-09-18', 10, 'https://www.gutenberg.org/ebooks/19290', 'en', 6887), +(14382, 'The House of Mystery: An Episode in the Career of Rosalie Le Grange, Clairvoyant', 'Irwin, Will', '2004-06-01', 26, 'https://www.gutenberg.org/ebooks/12678', 'en', 128), +(14383, '\"I Conquered\"', 'Titus, Harold', '2011-04-13', 25, 'https://www.gutenberg.org/ebooks/35866', 'en', 48), +(14384, 'The Slang Dictionary: Etymological, Historical and Andecdotal', 'Hotten, John Camden', '2013-02-16', 87, 'https://www.gutenberg.org/ebooks/42108', 'en', 6888), +(14385, 'L\'homme qui assassina: Roman', 'Farrère, Claude', '2015-03-08', 12, 'https://www.gutenberg.org/ebooks/48432', 'fr', 6889), +(14386, 'The Constitution of the United States of America, 1787', 'United States', '2007-12-01', 27, 'https://www.gutenberg.org/ebooks/23903', 'en', 3873), +(14387, 'Little Dorrit', 'Dickens, Charles', '2006-01-01', 10, 'https://www.gutenberg.org/ebooks/9715', 'en', 1380), +(14388, 'The Day of the Dog', 'Horne, Anderson', '2009-11-23', 22, 'https://www.gutenberg.org/ebooks/30528', 'en', 26), +(14389, 'Laddie: A True Blue Story', 'Stratton-Porter, Gene', '1995-06-01', 72, 'https://www.gutenberg.org/ebooks/286', 'en', 2815), +(14390, 'The Answer', 'Piper, H. Beam', '2006-05-08', 109, 'https://www.gutenberg.org/ebooks/18342', 'en', 179), +(14391, 'New England and the Bavarian Illuminati', 'Stauffer, Vernon', '2017-11-17', 27, 'https://www.gutenberg.org/ebooks/55983', 'en', 1821), +(14392, 'The Gods of Mars', 'Burroughs, Edgar Rice', '2009-07-14', 167, 'https://www.gutenberg.org/ebooks/29405', 'en', 964), +(14393, 'Polly\'s Southern Cruise', 'Roy, Lillian Elizabeth', '2013-06-13', 13, 'https://www.gutenberg.org/ebooks/42934', 'en', 6890), +(14394, 'Welsh Poems and Ballads', NULL, '2017-06-05', 11, 'https://www.gutenberg.org/ebooks/54851', 'en', 1208), +(14395, 'With Our Fighting Men\r\nThe story of their faith, courage, endurance in the Great War', 'Sellers, William E.', '2010-11-01', 17, 'https://www.gutenberg.org/ebooks/34188', 'en', 5635), +(14396, 'The Excellence of the Rosary\nConferences for Devotions in Honor of the Blessed Virgin', 'Frings, Math Josef', '2006-04-14', 15, 'https://www.gutenberg.org/ebooks/18170', 'en', 6891), +(14397, 'Jim l\'indien', 'Aimard, Gustave', '2004-10-06', 32, 'https://www.gutenberg.org/ebooks/13598', 'fr', 3245), +(14398, 'Vita di Guarino Veronese', 'Sabbadini, Remigio', '2015-03-29', 10, 'https://www.gutenberg.org/ebooks/48600', 'it', 6892), +(14399, 'The Fatal Boots', 'Thackeray, William Makepeace', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9527', 'en', 6893), +(14400, 'Anna-Clara och Hennes Bröder\r\nEn Bok om Barn', 'Zetterström, Hasse', '2006-03-03', 14, 'https://www.gutenberg.org/ebooks/17904', 'sv', 61), +(14401, 'The Roman and the Teuton\r\nA Series of Lectures delivered before the University of Cambridge', 'Kingsley, Charles', '2003-03-01', 101, 'https://www.gutenberg.org/ebooks/3821', 'en', 6894), +(14402, 'Introduction to the Study of History', 'Langlois, Charles Victor', '2009-08-08', 44, 'https://www.gutenberg.org/ebooks/29637', 'en', 1098), +(14403, 'Adventures in the Canyons of the Colorado, by Two of Its Earliest Explorers', 'Bass, William Wallace', '2011-03-06', 14, 'https://www.gutenberg.org/ebooks/35268', 'en', 3944), +(14404, 'Geology: The Science of the Earth\'s Crust', 'Miller, William J. (William John)', '2014-12-12', 42, 'https://www.gutenberg.org/ebooks/47648', 'en', 2535), +(14405, 'The Lazy Tour of Two Idle Apprentices', 'Dickens, Charles', '1997-04-01', 200, 'https://www.gutenberg.org/ebooks/888', 'en', 6895), +(14406, 'Home Again, Home Again', 'Doctorow, Cory', '2005-11-20', 36, 'https://www.gutenberg.org/ebooks/17138', 'en', 26), +(14407, 'A Confession of Evangelical Principles\nin a letter to a friend', 'Church, J. (John)', '2018-12-18', 3, 'https://www.gutenberg.org/ebooks/58492', 'en', 2382), +(14408, 'The Wonder Island Boys: Exploring the Island', 'Finlay, Roger Thompson', '2007-02-16', 23, 'https://www.gutenberg.org/ebooks/20588', 'en', 550), +(14409, 'Wappin\' Wharf: A Frightful Comedy of Pirates', 'Brooks, Charles S. (Charles Stephen)', '2008-03-25', 31, 'https://www.gutenberg.org/ebooks/24914', 'en', 907), +(14410, 'On the Economy of Machinery and Manufactures', 'Babbage, Charles', '2003-07-01', 90, 'https://www.gutenberg.org/ebooks/4238', 'en', 6285), +(14411, 'Index of the Project Gutenberg Works of John McElroy', 'McElroy, John', '2019-05-18', 8, 'https://www.gutenberg.org/ebooks/59540', 'en', 198), +(14412, 'Leituras Populares', 'Quental, Antero de', '2010-06-18', 9, 'https://www.gutenberg.org/ebooks/32871', 'pt', 20), +(14413, 'The Blue Lights: A Detective Story', 'Kummer, Frederic Arnold', '2012-01-15', 13, 'https://www.gutenberg.org/ebooks/38577', 'en', 6896), +(14414, 'Briefe, Aufzeichnungen und Aphorismen. Zweiter Band', 'Marc, Franz', '2016-12-31', 11, 'https://www.gutenberg.org/ebooks/53846', 'de', 6897), +(14415, 'Chambers\'s Edinburgh Journal, No. 459\nVolume 18, New Series, October 16, 1852', 'Various', '2008-01-02', 7, 'https://www.gutenberg.org/ebooks/24128', 'en', 18), +(14416, 'Parasites: A Treatise on the Entozoa of Man and Animals\r\nIncluding Some Account of the Ectozoa', 'Cobbold, T. Spencer (Thomas Spencer)', '2014-06-10', 13, 'https://www.gutenberg.org/ebooks/45923', 'en', 6898), +(14417, 'The Life and Death of Mrs. Maria Bickford\r\nA beautiful female, who was inhumanly murdered, in the moral and religious city of Boston, on the night of the 27th of October, 1845, by Albert J. Tirrell, her paramour, arrested on board the Ship Sultana, off New Orleans, December 6th', 'Clergyman of Brunswick, Me.', '2018-02-06', 12, 'https://www.gutenberg.org/ebooks/56508', 'en', 6899), +(14418, 'Uhrilauluja', 'Tagore, Rabindranath', '2016-09-06', 15, 'https://www.gutenberg.org/ebooks/52994', 'fi', 6900), +(14419, 'The psycho-analytic study of the family', 'Flugel, J. C. (John Carl)', '2019-01-08', 8, 'https://www.gutenberg.org/ebooks/58654', 'en', 3640), +(14420, 'Index of the Project Gutenberg Works of Cornelius Tacitus', 'Tacitus, Cornelius', '2019-06-20', 38, 'https://www.gutenberg.org/ebooks/59786', 'en', 198), +(14421, 'U.S. Copyright Renewals, 1967 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11835', 'en', 4170), +(14422, 'The History of Don Quixote, Volume 1, Part 08', 'Cervantes Saavedra, Miguel de', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5910', 'en', 3761), +(14423, 'The Unveiling of Lhasa', 'Candler, Edmund', '2010-08-06', 24, 'https://www.gutenberg.org/ebooks/33359', 'en', 3800), +(14424, 'The Human Boy and the War', 'Phillpotts, Eden', '2013-01-04', 34, 'https://www.gutenberg.org/ebooks/41779', 'en', 2902), +(14425, 'Home Occupations for Boys and Girls', 'Johnston, B. (Bertha)', '2012-05-10', 11, 'https://www.gutenberg.org/ebooks/39663', 'en', 1560), +(14426, 'Labor\'s Martyrs: Haymarket 1887, Sacco and Vanzetti 1927', 'Marcantonio, Vito', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11009', 'en', 6901), +(14427, 'Feats on the Fiord', 'Martineau, Harriet', '2011-04-18', 35, 'https://www.gutenberg.org/ebooks/35892', 'en', 286), +(14428, 'Japanese Literature\r\nIncluding Selections from Genji Monogatari and Classical Poetry and Drama of Japan', NULL, '2006-09-13', 141, 'https://www.gutenberg.org/ebooks/19264', 'en', 6902), +(14429, 'The Adventure of the Devil\'s Foot', 'Doyle, Arthur Conan', '2005-08-01', 8, 'https://www.gutenberg.org/ebooks/8633', 'en', 834), +(14430, 'Literature of the Indian Languages\r\nA Bibliographical Catalogue of Books, Translations of the Scriptures, and Other Publications in the Indian Tongues of the United States, With Brief Critical Notes', 'Schoolcraft, Henry Rowe', '2015-07-24', 10, 'https://www.gutenberg.org/ebooks/49514', 'en', 6903), +(14431, 'The Smoker\'s Year Book', 'Herford, Oliver', '2007-10-02', 14, 'https://www.gutenberg.org/ebooks/22825', 'en', 6904), +(14432, 'The Freelands', 'Galsworthy, John', '2006-06-14', 17, 'https://www.gutenberg.org/ebooks/2309', 'en', 5118), +(14433, 'An Open Letter on Translating', 'Luther, Martin', '1995-06-01', 46, 'https://www.gutenberg.org/ebooks/272', 'en', 6549), +(14434, 'Shot With Crimson', 'McCutcheon, George Barr', '2017-02-03', 11, 'https://www.gutenberg.org/ebooks/54099', 'en', 1672), +(14435, 'The Life of Bret Harte, with Some Account of the California Pioneers', 'Merwin, Henry Childs', '2011-01-13', 18, 'https://www.gutenberg.org/ebooks/34940', 'en', 131), +(14436, 'Flight: An Epic of the Air', 'Franklyn, Irwin R.', '2017-11-16', 13, 'https://www.gutenberg.org/ebooks/55977', 'en', 6905), +(14437, 'Wisdom, Wit, and Pathos of Ouida\nSelected from the Works of Ouida', 'Ouida', '2007-07-08', 52, 'https://www.gutenberg.org/ebooks/22019', 'en', 6906), +(14438, 'Miss Rovel', 'Cherbuliez, Victor', '2009-04-06', 14, 'https://www.gutenberg.org/ebooks/28523', 'fr', 298), +(14439, 'Through the South Seas with Jack London', 'Johnson, Martin', '2013-09-25', 38, 'https://www.gutenberg.org/ebooks/43812', 'en', 6907), +(14440, 'English Eccentrics and Eccentricities', 'Timbs, John', '2015-11-12', 17, 'https://www.gutenberg.org/ebooks/50439', 'en', 6908), +(14441, 'Memorial Addresses on the Life and Character of William H. F. Lee (A Representative from Virginia)\nDelivered in the House of Representatives and in the Senate,\nFifty-Second Congress, First Session', 'Various', '2005-10-08', 7, 'https://www.gutenberg.org/ebooks/16822', 'en', 6909), +(14442, 'Germany from the Earliest Period, Volume 4', 'Menzel, Wolfgang', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8401', 'en', 1921), +(14443, 'The Works of Voltaire, Vol. IV of XLIII.\nRomances, Vol. III of III, and A Treatise on Toleration.', 'Voltaire', '2015-08-17', 34, 'https://www.gutenberg.org/ebooks/49726', 'en', 6910), +(14444, 'Thoughts on Educational Topics and Institutions', 'Boutwell, George S. (George Sewall)', '2006-08-16', 8, 'https://www.gutenberg.org/ebooks/19056', 'en', 973), +(14445, 'The Gallery of Portraits: with Memoirs. Volume 6 (of 7)', 'Malkin, Arthur Thomas', '2017-08-17', 11, 'https://www.gutenberg.org/ebooks/55379', 'en', 122), +(14446, 'Luca Signorelli', 'Cruttwell, Maud', '2009-01-09', 26, 'https://www.gutenberg.org/ebooks/27759', 'en', 6911), +(14447, 'Animal Carvings from Mounds of the Mississippi Valley\r\nSecond Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1880-81, Government Printing Office, Washington, 1883, pages 117-166', 'Henshaw, Henry W. (Henry Wetherbee)', '2006-04-17', 35, 'https://www.gutenberg.org/ebooks/18184', 'en', 6912), +(14448, 'Memoirs of General Lafayette\r\nWith an Account of His Visit to America and His Reception By the People of the United States; From His Arrival, August 15th, to the Celebration at Yorktown, October 19th, 1824.', 'Knapp, Samuel L. (Samuel Lorenzo)', '2005-02-01', 39, 'https://www.gutenberg.org/ebooks/7449', 'en', 481), +(14449, 'Operas Every Child Should Know\nDescriptions of the Text and Music of Some of the Most Famous Masterpieces', 'Bacon, Mary Schell Hoke', '2009-05-07', 47, 'https://www.gutenberg.org/ebooks/28711', 'en', 5808), +(14450, 'Joy: A Play on the Letter \"I\"', 'Galsworthy, John', '2004-09-26', 22, 'https://www.gutenberg.org/ebooks/2907', 'en', 1088), +(14451, 'Observations of an Illinois Boy in Battle, Camp and Prisons—1861 to 1865', 'Eby, Henry Harrison', '2018-12-13', 9, 'https://www.gutenberg.org/ebooks/58466', 'en', 2363), +(14452, 'The High Deeds of Finn and other Bardic Romances of Ancient Ireland', 'Rolleston, T. W. (Thomas William)', '2005-01-21', 77, 'https://www.gutenberg.org/ebooks/14749', 'en', 6913), +(14453, 'The Cabinet Minister: A farce in four acts', 'Pinero, Arthur Wing', '2010-10-01', 27, 'https://www.gutenberg.org/ebooks/33957', 'en', 1281), +(14454, 'Hymns of the Early Church\r\nbeing translations from the poetry of the Latin church, arranged in the order of the Christian year', 'Brownlie, John', '2013-10-26', 16, 'https://www.gutenberg.org/ebooks/44039', 'en', 6914), +(14455, 'Punch, or the London Charivari, Vol. 98 January 11, 1890', 'Various', '2008-06-18', 24, 'https://www.gutenberg.org/ebooks/25832', 'en', 134), +(14456, 'The White Hecatomb, and Other Stories', 'Scully, W. C. (William Charles)', '2011-06-13', 8, 'https://www.gutenberg.org/ebooks/36419', 'en', 1207), +(14457, 'Circle of Flight', 'Stockham, Richard', '2010-06-18', 20, 'https://www.gutenberg.org/ebooks/32885', 'en', 179), +(14458, 'Heroes of Science: Physicists', 'Garnett, William', '2012-01-15', 35, 'https://www.gutenberg.org/ebooks/38583', 'en', 6915), +(14459, 'Abridgment of the Debates of Congress, from 1789 to 1856, Vol. 1 (of 16)', 'United States. Congress', '2012-08-14', 27, 'https://www.gutenberg.org/ebooks/40499', 'en', 1720), +(14460, 'A Little Tour in Ireland', 'Hole, S. Reynolds (Samuel Reynolds)', '2014-01-30', 10, 'https://www.gutenberg.org/ebooks/44805', 'en', 117), +(14461, 'A History of the Inquisition of the Middle Ages; volume I', 'Lea, Henry Charles', '2012-04-14', 37, 'https://www.gutenberg.org/ebooks/39451', 'en', 6646), +(14462, 'Jean Jacques Rousseau ja hänen filosofiansa', 'Høffding, Harald', '2016-09-02', 32, 'https://www.gutenberg.org/ebooks/52960', 'fi', 608), +(14463, 'General William Booth Enters into Heaven, and Other Poems', 'Lindsay, Vachel', '1996-02-01', 53, 'https://www.gutenberg.org/ebooks/424', 'en', 178), +(14464, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 492, June 4, 1831', 'Various', '2004-08-03', 6, 'https://www.gutenberg.org/ebooks/13108', 'en', 133), +(14465, 'Old Wonder-Eyes, and Other Stories for Children', 'Greenwood, Grace', '2015-02-17', 29, 'https://www.gutenberg.org/ebooks/48290', 'en', 179), +(14466, 'Anne of Geierstein; Or, The Maiden of the Mist. Volume 1 (of 2)', 'Scott, Walter', '2013-09-09', 44, 'https://www.gutenberg.org/ebooks/43678', 'en', 6916), +(14467, 'Our campaign around Gettysburg\r\nBeing a memorial of what was endured, suffered and accomplished by the Twenty-third regiment (N. Y. S. N. G.) and other regiments associated with them, in their Pennsylvania and Maryland campaign, during the second rebel invasion of the loyal states in June-July, 1863', 'Lockwood, John', '2010-02-12', 15, 'https://www.gutenberg.org/ebooks/31258', 'en', 6917), +(14468, 'The Bible, King James version, Book 65: Jude', 'Anonymous', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/8065', 'en', 6543), +(14469, 'The Stickit Minister\'s Wooing, and Other Galloway Stories', 'Crockett, S. R. (Samuel Rutherford)', '2015-07-01', 13, 'https://www.gutenberg.org/ebooks/49342', 'en', 179), +(14470, 'The War Romance of the Salvation Army', 'Hill, Grace Livingston', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/7811', 'en', 6918), +(14471, 'Heart and Soul by Maveric Post', 'Mapes, Victor', '2006-10-02', 13, 'https://www.gutenberg.org/ebooks/19432', 'en', 1302), +(14472, 'Inferences from Haunted Houses and Haunted Men', 'Harris, J. W. (John William)', '2004-11-03', 8, 'https://www.gutenberg.org/ebooks/13934', 'en', 1245), +(14473, 'Poems of Henry Vaughan, Silurist, Volume II', 'Vaughan, Henry', '2009-03-20', 28, 'https://www.gutenberg.org/ebooks/28375', 'en', 8), +(14474, 'True to the Old Flag: A Tale of the American War of Independence', 'Henty, G. A. (George Alfred)', '2005-09-01', 54, 'https://www.gutenberg.org/ebooks/8859', 'en', 6919), +(14475, 'Travels Through North America, During the Years 1825 and 1826. v. 1-2', 'Bernhard, Duke of Saxe-Weimar-Eisenach', '2013-01-24', 12, 'https://www.gutenberg.org/ebooks/41913', 'en', 6920), +(14476, 'Galicia, the Switzerland of Spain', 'Meakin, Annette M. B.', '2016-07-09', 15, 'https://www.gutenberg.org/ebooks/52538', 'en', 6921), +(14477, 'Der Deutsche Lausbub in Amerika: Erinnerungen und Eindrücke. Band 1 (von 3)', 'Rosen, Erwin', '2012-05-26', 17, 'https://www.gutenberg.org/ebooks/39809', 'de', 1110), +(14478, 'Bertha\'s Visit to Her Uncle in England; vol. 1 [of 3]', 'Marcet, Mrs. (Jane Haldimand)', '2018-10-01', 13, 'https://www.gutenberg.org/ebooks/58002', 'en', 6922), +(14479, 'Valkeat kaupungit', 'Koskenniemi, Veikko Antero', '2006-12-16', 24, 'https://www.gutenberg.org/ebooks/20118', 'fi', 8), +(14480, 'Harrington: A Story of True Love', 'O\'Connor, William Douglas', '2018-09-09', 7, 'https://www.gutenberg.org/ebooks/57876', 'en', 6923), +(14481, 'Mundus Foppensis: The Fop Display\'d', NULL, '2011-07-25', 6, 'https://www.gutenberg.org/ebooks/36841', 'en', 6924), +(14482, 'The Abandoned Country; or, Frank Reade, Jr., Exploring a New Continent.', 'Senarens, Luis', '2017-12-17', 41, 'https://www.gutenberg.org/ebooks/56198', 'en', 6925), +(14483, 'Nederlandsch handboek voor roeisport', 'Rijcken, Frans Eduard Pels', '2012-03-03', 7, 'https://www.gutenberg.org/ebooks/39035', 'nl', 6926), +(14484, 'Ely Cathedral', 'Anonymous', '2007-03-28', 16, 'https://www.gutenberg.org/ebooks/20924', 'en', 6927), +(14485, 'Climbing in The British Isles. Vol. 1 - England', 'Haskett Smith, W. P. (Walter Parry)', '2011-11-12', 13, 'https://www.gutenberg.org/ebooks/37993', 'en', 6928), +(14486, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 06', 'Ebers, Georg', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/5548', 'en', 5290), +(14487, 'Shavings & Scrapes from many parts', 'Joubert, Jules', '2018-11-04', 8, 'https://www.gutenberg.org/ebooks/58230', 'en', 6929), +(14488, 'Tales for Fifteen', 'Cooper, James Fenimore', '2012-03-19', 24, 'https://www.gutenberg.org/ebooks/39207', 'en', 61), +(14489, 'Daisy Ashford: Her Book', 'Ashford, Daisy', '2008-05-31', 17, 'https://www.gutenberg.org/ebooks/25658', 'en', 61), +(14490, '青樓夢', 'Yu, Da', '2018-06-05', 85, 'https://www.gutenberg.org/ebooks/57278', 'zh', 1003), +(14491, 'Punch, or the London Charivari, Volume 1, August 14, 1841', 'Various', '2005-02-07', 8, 'https://www.gutenberg.org/ebooks/14923', 'en', 134), +(14492, 'Der Jungbrunnen: Neue Märchen von einem fahrenden Schüler', 'Heyse, Paul', '2016-01-06', 7, 'https://www.gutenberg.org/ebooks/50861', 'de', 1212), +(14493, 'The Incomplete Amorist', 'Nesbit, E. (Edith)', '2005-11-01', 27, 'https://www.gutenberg.org/ebooks/9385', 'en', 6930), +(14494, 'Prayers Written At Vailima, and A Lowden Sabbath Morn', 'Stevenson, Robert Louis', '1996-08-01', 85, 'https://www.gutenberg.org/ebooks/616', 'en', 6931), +(14495, 'Jerome Cardan: A Biographical Study', 'Waters, W. G. (William George)', '2006-10-22', 23, 'https://www.gutenberg.org/ebooks/19600', 'en', 6932), +(14496, 'The Vagrancy Problem.\r\nThe Case for Measures of Restraint for Tramps, Loafers, and Unemployables: With a Study of Continental Detention Colonies and Labour Houses', 'Dawson, William Harbutt', '2014-09-19', 10, 'https://www.gutenberg.org/ebooks/46904', 'en', 6933), +(14497, 'The World English Bible (WEB): Amos', 'Anonymous', '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/8257', 'en', 4593), +(14498, 'Summer Days', 'Baker, George M. (George Melville)', '2015-06-08', 12, 'https://www.gutenberg.org/ebooks/49170', 'en', 1817), +(14499, 'Πλουτάρχου Βίοι Παράλληλοι - Τόμος 2\r\nΣόλων - Ποπλικόλας - Θεμιστοκλής - Καμίλλος - Περικλής - Φάβιος Μάξιμος', 'Plutarch', '2013-04-26', 15, 'https://www.gutenberg.org/ebooks/42598', 'el', 2310), +(14500, 'Letters on the Cholera Morbus.\nContaining ample evidence that this disease, under whatever\nname known, cannot be transmitted from the persons of those\nlabouring under it to other individuals, by contact—through\nthe medium of inanimate substances—or through the medium\nof the atmosphere; and that all restrictions, by cordons\nand quarantine regulations, are, as far as regards this\ndisease, not merely useless, but highly injurious to the\ncommunity.', 'Gillkrest, J. (James)', '2009-02-20', 19, 'https://www.gutenberg.org/ebooks/28147', 'en', 6934), +(14501, 'Gli avvenimenti di Sicilia e le loro cause', 'Colajanni, Napoleone', '2010-01-16', 28, 'https://www.gutenberg.org/ebooks/30984', 'it', 6935), +(14502, 'Forest Neighbors: Life Stories of Wild Animals', 'Hulbert, William Davenport', '2009-01-29', 34, 'https://www.gutenberg.org/ebooks/27933', 'en', 1787), +(14503, 'Cara Speranza', 'Colombi, marchesa', '2010-11-30', 2, 'https://www.gutenberg.org/ebooks/34518', 'it', 61), +(14504, 'A Rough Diamond: A Comic Drama in One Act', 'Buckstone, John Baldwin', '2014-06-29', 9, 'https://www.gutenberg.org/ebooks/46138', 'en', 1281), +(14505, 'Holiday Stories for Young People', NULL, '2005-09-04', 24, 'https://www.gutenberg.org/ebooks/16648', 'en', 6936), +(14506, 'Führer für Pilzfreunde', 'Michael, Edmund', '2010-04-01', 41, 'https://www.gutenberg.org/ebooks/31856', 'de', 6937), +(14507, 'De strijd tusschen Noord en Zuid\r\nDeel 1: Overrompeling eener plantage', 'Verne, Jules', '2009-06-10', 13, 'https://www.gutenberg.org/ebooks/29095', 'nl', 403), +(14508, 'Φίληβος', 'Plato', '2010-02-27', 21, 'https://www.gutenberg.org/ebooks/31436', 'el', 6481), +(14509, 'Golden Dicky, The Story of a Canary and His Friends', 'Saunders, Marshall', '2017-07-23', 21, 'https://www.gutenberg.org/ebooks/55173', 'en', 1602), +(14510, 'The Romance of Mathematics\r\nBeing the Original Researches of a Lady Professor of Girtham College in Polemical Science, with some Account of the Social Properties of a Conic; Equations to Brain Waves; Social Forces; and the Laws of Political Motion.', 'Ditchfield, P. H. (Peter Hampson)', '2008-08-29', 39, 'https://www.gutenberg.org/ebooks/26481', 'en', 1971), +(14511, 'Lord John Russell', 'Reid, Stuart J. (Stuart Johnson)', '2008-12-17', 14, 'https://www.gutenberg.org/ebooks/27553', 'en', 6938), +(14512, 'Cobwebs of Thought', 'Arachne', '2004-10-16', 9, 'https://www.gutenberg.org/ebooks/13766', 'en', 779), +(14513, 'Burning Sands', 'Weigall, Arthur E. P. Brome (Arthur Edward Pearse Brome)', '2011-01-15', 7, 'https://www.gutenberg.org/ebooks/34978', 'en', 2387), +(14514, 'Chaucer\'s Works, Volume 5 (of 7) — Notes to the Canterbury Tales', 'Chaucer, Geoffrey', '2013-06-23', 25, 'https://www.gutenberg.org/ebooks/43016', 'en', 6939), +(14515, 'History of Phoenicia', 'Rawlinson, George', '2006-03-26', 48, 'https://www.gutenberg.org/ebooks/2331', 'en', 6940), +(14516, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes, (1877-08/09)', NULL, '2005-07-06', 13, 'https://www.gutenberg.org/ebooks/16214', 'pt', 6941), +(14517, 'Gallipoli Diary, Volume 2', 'Hamilton, Ian', '2007-07-09', 41, 'https://www.gutenberg.org/ebooks/22021', 'en', 6942), +(14518, 'Ernest Maltravers — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7643', 'en', 137), +(14519, 'No Surrender', 'Werner, E.', '2011-01-28', 11, 'https://www.gutenberg.org/ebooks/35096', 'en', 803), +(14520, 'The Rights of War and Peace', 'Grotius, Hugo', '2014-08-11', 43, 'https://www.gutenberg.org/ebooks/46564', 'en', 6943), +(14521, 'Mary Stuart: A Tragedy', 'Schiller, Friedrich', '2004-12-08', 134, 'https://www.gutenberg.org/ebooks/6791', 'en', 3508), +(14522, 'Wilson\'s Tales of the Borders and of Scotland, Volume 04', NULL, '2010-10-27', 9, 'https://www.gutenberg.org/ebooks/34144', 'en', 3672), +(14523, 'The Choice Humorous Works, Ludicrous Adventures, Bons Mots, Puns, and Hoaxes of Theodore Hook', 'Hook, Theodore Edward', '2015-11-06', 13, 'https://www.gutenberg.org/ebooks/50401', 'en', 564), +(14524, 'La \"noire idole\": Étude sur la Morphinomanie', 'Tailhade, Laurent', '2016-10-15', 8, 'https://www.gutenberg.org/ebooks/53284', 'fr', 6944), +(14525, 'False Friends, and The Sailor\'s Resolve', 'Unknown', '2004-12-31', 9, 'https://www.gutenberg.org/ebooks/14543', 'en', 470), +(14526, 'Encyclopedia of Needlework', 'Dillmont, Thérèse de', '2007-03-08', 386, 'https://www.gutenberg.org/ebooks/20776', 'en', 6945), +(14527, 'Ardath: The Story of a Dead Self', 'Corelli, Marie', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/5114', 'en', 2229), +(14528, 'Plays by August Strindberg, Third Series', 'Strindberg, August', '2013-11-19', 19, 'https://www.gutenberg.org/ebooks/44233', 'en', 6946), +(14529, 'The Kentuckian in New-York; or, The Adventures of Three Southerns. Volume 1 (of 2)', 'Caruthers, William Alexander', '2011-07-04', 7, 'https://www.gutenberg.org/ebooks/36613', 'en', 6947), +(14530, 'Micrographia\nSome Physiological Descriptions of Minute Bodies Made by Magnifying Glasses with Observations and Inquiries Thereupon', 'Hooke, Robert', '2005-03-29', 342, 'https://www.gutenberg.org/ebooks/15491', 'en', 6948), +(14531, 'Essays and Dialogues', 'Leopardi, Giacomo', '2016-06-17', 86, 'https://www.gutenberg.org/ebooks/52356', 'en', 6949), +(14532, 'Ozma of Oz\r\nA Record of Her Adventures with Dorothy Gale of Kansas, the Yellow Hen, the Scarecrow, the Tin Woodman, Tiktok, the Cowardly Lion, and the Hungry Tiger; Besides Other Good People too Numerous to Mention Faithfully Recorded Herein', 'Baum, L. Frank (Lyman Frank)', '2010-08-06', 129, 'https://www.gutenberg.org/ebooks/33361', 'en', 3174), +(14533, 'Antigua and the Antiguans, Volume 2 (of 2)\r\nA full account of the colony and its inhabitants from the time of the Caribs to the present day', 'Lanaghan, Mrs.', '2012-02-07', 10, 'https://www.gutenberg.org/ebooks/38789', 'en', 6950), +(14534, 'Arctic Adventures', 'Kingston, William Henry Giles', '2012-09-06', 17, 'https://www.gutenberg.org/ebooks/40693', 'en', 323), +(14535, 'The History of Don Quixote, Volume 2, Part 25', 'Cervantes Saavedra, Miguel de', '2004-07-23', 13, 'https://www.gutenberg.org/ebooks/5928', 'en', 361), +(14536, 'In Savage Africa\r\nOr, The adventures of Frank Baldwin from the Gold Coast to Zanzibar.', 'Cameron, Verney Lovett', '2018-08-01', 21, 'https://www.gutenberg.org/ebooks/57624', 'en', 6951), +(14537, 'Der Mörder: Eine Novelle', 'Schnitzler, Arthur', '2008-04-27', 37, 'https://www.gutenberg.org/ebooks/25204', 'de', 6952), +(14538, 'Samuel Johnson', 'Stephen, Leslie', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11031', 'en', 6953), +(14539, 'Bound to Succeed; or, Mail Order Frank\'s Chances', 'Chapman, Allen', '2012-12-30', 19, 'https://www.gutenberg.org/ebooks/41741', 'en', 4576), +(14540, 'Venetianische Epigramme', 'Goethe, Johann Wolfgang von', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/5326', 'de', 1518), +(14541, 'Warren Commission (01 of 26): Hearings Vol. I (of 15)', 'United States. Warren Commission', '2013-10-22', 34, 'https://www.gutenberg.org/ebooks/44001', 'en', 5679), +(14542, 'The False One: A Tragedy', 'Fletcher, John', '2005-01-23', 21, 'https://www.gutenberg.org/ebooks/14771', 'en', 402), +(14543, 'The Little Skipper: A Son of a Sailor', 'Fenn, George Manville', '2007-02-08', 17, 'https://www.gutenberg.org/ebooks/20544', 'en', 1752), +(14544, 'Problems of Immanence: studies critical and constructive', 'Warschauer, Joseph', '2007-05-16', 10, 'https://www.gutenberg.org/ebooks/21496', 'en', 6954), +(14545, 'Harper\'s Round Table, January 7, 1896', 'Various', '2016-05-26', 4, 'https://www.gutenberg.org/ebooks/52164', 'en', 668), +(14546, 'By Veldt and Kopje', 'Scully, W. C. (William Charles)', '2011-06-13', 15, 'https://www.gutenberg.org/ebooks/36421', 'en', 6955), +(14547, 'A Minion of the Moon: A Romance of the King\'s Highway', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-29', 25, 'https://www.gutenberg.org/ebooks/57416', 'en', 95), +(14548, 'American World Policies', 'Weyl, Walter E. (Walter Edward)', '2010-07-14', 40, 'https://www.gutenberg.org/ebooks/33153', 'en', 6956), +(14549, 'As You Like It', 'Shakespeare, William', '1999-06-01', 38, 'https://www.gutenberg.org/ebooks/1786', 'en', 576), +(14550, 'South-Sea Idyls', 'Stoddard, Charles Warren', '2012-12-07', 27, 'https://www.gutenberg.org/ebooks/41573', 'en', 108), +(14551, 'Revelations of Divine Love', 'Julian, of Norwich', '2016-09-02', 340, 'https://www.gutenberg.org/ebooks/52958', 'en', 6957), +(14552, 'Punch, or the London Charivari, Vol. 158, June 23, 1920', 'Various', '2010-04-21', 12, 'https://www.gutenberg.org/ebooks/32081', 'en', 134), +(14553, 'Questioni internazionali', 'Crispi, Francesco', '2012-04-17', 53, 'https://www.gutenberg.org/ebooks/39469', 'it', 6958), +(14554, 'L\'histoire du Canada', 'Sagard, Gabriel', '2008-04-10', 8, 'https://www.gutenberg.org/ebooks/25036', 'fr', 5181), +(14555, 'Narrative of a Survey of the Intertropical and Western Coasts of Australia\r\nPerformed between the years 1818 and 1822 — Volume 1', 'King, Philip Parker', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11203', 'en', 767), +(14556, 'Up in Maine: Stories of Yankee Life Told in Verse', 'Day, Holman', '2017-08-11', 6, 'https://www.gutenberg.org/ebooks/55341', 'en', 6959), +(14557, 'Indian Nullification of the Unconstitutional Laws of Massachusetts Relative to the Marshpee Tribe\r\nOr, the Pretended Riot Explained', 'Apess, William', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/12486', 'en', 6960), +(14558, 'Works of Martin Luther, with Introductions and Notes (Volume I)', 'Luther, Martin', '2010-03-12', 92, 'https://www.gutenberg.org/ebooks/31604', 'en', 6961), +(14559, 'Games for Everybody', 'Hofmann, Mary Christiana', '2005-07-01', 9, 'https://www.gutenberg.org/ebooks/8439', 'en', 1560), +(14560, 'Poetry: A Magazine of Verse, Volume 01\r\nOctober-March, 1912-13', 'Various', '2013-07-15', 53, 'https://www.gutenberg.org/ebooks/43224', 'en', 6962), +(14561, 'History of Friedrich II of Prussia — Volume 03', 'Carlyle, Thomas', '2008-06-16', 28, 'https://www.gutenberg.org/ebooks/2103', 'en', 5033), +(14562, 'Hamlet, Prince of Denmark', 'Shakespeare, William', '2009-01-10', 77, 'https://www.gutenberg.org/ebooks/27761', 'en', 4566), +(14563, 'Aftermath\r\nPart second of \"A Kentucky Cardinal\"', 'Allen, James Lane', '2004-09-28', 28, 'https://www.gutenberg.org/ebooks/13554', 'en', 1996), +(14564, 'The American Missionary — Volume 33, No. 08, August, 1879', 'Various', '2017-03-07', 13, 'https://www.gutenberg.org/ebooks/54293', 'en', 395), +(14565, 'The Man with Two Left Feet, and Other Stories', 'Wodehouse, P. G. (Pelham Grenville)', '2005-02-01', 348, 'https://www.gutenberg.org/ebooks/7471', 'en', 72), +(14566, 'The Gipsies\' Advocate\r\nOr, Observations on the Origin, Character, Manners, and Habits of the English Gipsies', 'Crabb, James', '2006-11-17', 17, 'https://www.gutenberg.org/ebooks/19852', 'en', 6963), +(14567, 'A Chronicle History of the Life and Work of William Shakespeare\nPlayer, Poet, and Playmaker', 'Fleay, Frederick Gard', '2014-09-02', 12, 'https://www.gutenberg.org/ebooks/46756', 'en', 3360), +(14568, 'De Quincey\'s Revolt of the Tartars', 'De Quincey, Thomas', '2005-06-08', 24, 'https://www.gutenberg.org/ebooks/16026', 'en', 6964), +(14569, 'The Oriental Religions in Roman Paganism', 'Cumont, Franz Valery Marie', '2007-08-01', 28, 'https://www.gutenberg.org/ebooks/22213', 'en', 5745), +(14570, 'Travels in China, Containing Descriptions, Observations, and Comparisons, Made and Collected in the Course of a Short Residence at the Imperial Palace of Yuen-Min-Yuen, and on a Subsequent Journey through the Country from Pekin to Canton', 'Barrow, John, Sir', '2009-05-08', 29, 'https://www.gutenberg.org/ebooks/28729', 'en', 2773), +(14571, 'Louis XIV et Marie Mancini d\'après de nouveaux documents', 'Chantelauze, R. de (Régis)', '2015-12-06', 6, 'https://www.gutenberg.org/ebooks/50633', 'fr', 6965), +(14572, 'Harper\'s Young People, May 31, 1881\nAn Illustrated Weekly', 'Various', '2014-12-17', 3, 'https://www.gutenberg.org/ebooks/47684', 'en', 479), +(14573, 'Our Domestic Birds: Elementary Lessons in Aviculture', 'Robinson, John H. (John Henry)', '2010-11-22', 34, 'https://www.gutenberg.org/ebooks/34376', 'en', 6966), +(14574, 'The Importance of Being Earnest: A Trivial Comedy for Serious People', 'Wilde, Oscar', '1997-03-01', 7099, 'https://www.gutenberg.org/ebooks/844', 'en', 907), +(14575, 'The Girl\'s Own Paper, Vol. VIII. No. 358, November 6, 1886.', 'Various', '2006-08-03', 32, 'https://www.gutenberg.org/ebooks/18980', 'en', 563), +(14576, 'A Study of Splashes', 'Worthington, A. M. (Arthur Mason)', '2012-05-28', 15, 'https://www.gutenberg.org/ebooks/39831', 'en', 6967), +(14577, 'American Independence and the French Revolution (1760-1801)', NULL, '2016-07-06', 18, 'https://www.gutenberg.org/ebooks/52500', 'en', 6968), +(14578, 'Famous Affinities of History: The Romance of Devotion. Volume 2', 'Orr, Lyndon', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/4690', 'en', 4289), +(14579, 'The Law and the Poor', 'Parry, Edward Abbott, Sir', '2011-05-06', 6, 'https://www.gutenberg.org/ebooks/36045', 'en', 534), +(14580, 'The Bird-Woman of the Lewis and Clark Expedition', 'Chandler, Katherine', '2004-05-01', 68, 'https://www.gutenberg.org/ebooks/5742', 'en', 294), +(14581, 'Problems in Periclean Buildings', 'Elderkin, G. W. (George Wicker)', '2011-08-24', 13, 'https://www.gutenberg.org/ebooks/37197', 'en', 6969), +(14582, 'Cynthia\nWith an Introduction by Maurice Hewlett', 'Merrick, Leonard', '2013-12-19', 36, 'https://www.gutenberg.org/ebooks/44465', 'en', 1769), +(14583, 'Old English Sports, Pastimes and Customs', 'Ditchfield, P. H. (Peter Hampson)', '2004-12-10', 33, 'https://www.gutenberg.org/ebooks/14315', 'en', 226), +(14584, 'The Priest, the Woman and the Confessional', 'Chiniquy, Charles Paschal Telesphore', '2006-12-16', 25, 'https://www.gutenberg.org/ebooks/20120', 'en', 6970), +(14585, 'Dorothy at Skyrie', 'Raymond, Evelyn', '2012-10-20', 13, 'https://www.gutenberg.org/ebooks/41117', 'en', 1655), +(14586, 'The Kangaroo Marines', 'Campbell, R. W.', '2008-05-12', 14, 'https://www.gutenberg.org/ebooks/25452', 'en', 6971), +(14587, 'Gentle Measures in the Management and Training of the Young\r\nOr, the Principles on Which a Firm Parental Authority May Be Established and Maintained, Without Violence or Anger, and the Right Development of the Moral and Mental Capacities Be Promoted by Methods in Harmony with the Structure and the Characteristics of the Juvenile Mind', 'Abbott, Jacob', '2004-03-01', 95, 'https://www.gutenberg.org/ebooks/11667', 'en', 6972), +(14588, 'Nicotiana; Or, The Smoker\'s and Snuff-Taker\'s Companion', 'Meller, Henry James', '2011-07-28', 13, 'https://www.gutenberg.org/ebooks/36879', 'en', 6973), +(14589, 'Autobiography of a Child', 'Lynch, Hannah', '2018-04-30', 37, 'https://www.gutenberg.org/ebooks/57072', 'en', 2739), +(14590, 'Ship-Bored', 'Street, Julian', '2008-02-11', 19, 'https://www.gutenberg.org/ebooks/24580', 'en', 6974), +(14591, 'Index of the Project Gutenberg Works of Frances Hodgson Burnett', 'Burnett, Frances Hodgson', '2019-02-01', 13, 'https://www.gutenberg.org/ebooks/58806', 'en', 198), +(14592, 'Life on the Stage: My Personal Experiences and Recollections', 'Morris, Clara', '2010-08-26', 24, 'https://www.gutenberg.org/ebooks/33537', 'en', 6975), +(14593, 'Lost in the Wilds: A Canadian Story', 'Stredder, Eleanor', '2013-09-03', 6, 'https://www.gutenberg.org/ebooks/43640', 'en', 450), +(14594, 'A Plea for Captain John Brown\r\nRead to the citizens of Concord, Massachusetts on Sunday evening, October thirtieth, eighteen fifty-nine', 'Thoreau, Henry David', '2001-03-01', 90, 'https://www.gutenberg.org/ebooks/2567', 'en', 4763), +(14595, 'The Rural Life Problem of the United States\nNotes of an Irish Observer', 'Plunkett, Horace Curzon, Sir', '2008-11-21', 16, 'https://www.gutenberg.org/ebooks/27305', 'en', 1190), +(14596, 'A General History and Collection of Voyages and Travels — Volume 10\r\nArranged in systematic order: Forming a complete history of the origin and progress of navigation, discovery, and commerce, by sea and land, from the earliest ages to the present time.', 'Kerr, Robert', '2004-08-07', 35, 'https://www.gutenberg.org/ebooks/13130', 'en', 885), +(14597, 'American Prisoners of the Revolution', 'Dandridge, Danske', '2005-04-01', 50, 'https://www.gutenberg.org/ebooks/7829', 'en', 6976), +(14598, 'The Train Boy', 'Alger, Horatio, Jr.', '2017-10-09', 44, 'https://www.gutenberg.org/ebooks/55725', 'en', 6977), +(14599, 'Napoléon et Alexandre Ier (2/3)\nL\'alliance russe sous le premier Empire', 'Vandal, Albert', '2010-02-12', 3, 'https://www.gutenberg.org/ebooks/31260', 'fr', 6978), +(14600, 'Notes and Queries, Number 177, March 19, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 7, 'https://www.gutenberg.org/ebooks/42792', 'en', 105), +(14601, 'Fire at Red Lake\nSandy Steele Adventures #4', 'Leckie, Robert', '2015-10-19', 16, 'https://www.gutenberg.org/ebooks/50257', 'en', 6027), +(14602, 'Lettres à Sixtine', 'Gourmont, Remy de', '2006-01-23', 11, 'https://www.gutenberg.org/ebooks/17590', 'fr', 642), +(14603, 'Élet. X. évfolyam 19. sz. 1918. május 12', 'Various', '2010-12-21', 5, 'https://www.gutenberg.org/ebooks/34712', 'hu', 18), +(14604, 'Buddhist Psalms translated from the Japanese of Shinran Shonin', 'Shinran', '2004-12-01', 107, 'https://www.gutenberg.org/ebooks/7015', 'en', 639), +(14605, 'Merrie England in the Olden Time, Vol. 2', 'Daniel, George', '2014-07-19', 27, 'https://www.gutenberg.org/ebooks/46332', 'en', 226), +(14606, 'The Doctrine of Evolution: Its Basis and Its Scope', 'Crampton, Henry Edward', '2005-08-05', 15, 'https://www.gutenberg.org/ebooks/16442', 'en', 1315), +(14607, 'Masks and Faces; or, Before and Behind the Curtain: A Comedy in Two Acts', 'Taylor, Tom', '2016-03-07', 5, 'https://www.gutenberg.org/ebooks/51385', 'en', 6979), +(14608, 'The Works of Lord Byron, Vol. 1. Poetry', 'Byron, George Gordon Byron, Baron', '2005-09-01', 188, 'https://www.gutenberg.org/ebooks/8861', 'en', 8), +(14609, 'Greece and the Allies 1914-1922', 'Abbott, G. F. (George Frederick)', '2007-09-19', 41, 'https://www.gutenberg.org/ebooks/22677', 'en', 6980), +(14610, 'The Scholfield Wool-Carding Machines', 'Cooper, Grace Rogers', '2008-11-03', 16, 'https://www.gutenberg.org/ebooks/27137', 'en', 6981), +(14611, 'The Curly-Haired Hen', 'Vimar, A. (Auguste)', '2004-08-27', 11, 'https://www.gutenberg.org/ebooks/13302', 'en', 3174), +(14612, 'Dorothy Dale - A Girl of Today', 'Penrose, Margaret', '2009-05-01', 1, 'https://www.gutenberg.org/ebooks/28943', 'en', 3621), +(14613, 'English Poor Law Policy', 'Webb, Sidney', '2013-08-15', 25, 'https://www.gutenberg.org/ebooks/43472', 'en', 6982), +(14614, 'Perugino', 'Brinton, Selwyn', '2009-10-05', 21, 'https://www.gutenberg.org/ebooks/30180', 'en', 6983), +(14615, 'The Mentor: Joan of Arc, v. 3, Num. 22, Serial No. 98, January 1, 1916', 'Tarbell, Ida M. (Ida Minerva)', '2016-01-06', 7, 'https://www.gutenberg.org/ebooks/50859', 'en', 3907), +(14616, 'Murat\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 37, 'https://www.gutenberg.org/ebooks/2755', 'en', 5050), +(14617, 'Siska van Roosemael', 'Conscience, Hendrik', '2010-01-23', 5, 'https://www.gutenberg.org/ebooks/31052', 'nl', 376), +(14618, 'The Ruby of Kishmoor', 'Pyle, Howard', '2003-01-01', 89, 'https://www.gutenberg.org/ebooks/3687', 'en', 759), +(14619, 'The Rector', 'Oliphant, Mrs. (Margaret)', '2009-09-02', 25, 'https://www.gutenberg.org/ebooks/29891', 'en', 61), +(14620, 'Wanderungen durch die interessantesten Gegenden des Sächsischen Obererzgebirges (Drittes Heft)\r\nEin Beitrag zur speciellern Kenntniß desselben, seines Volkslebens, der Gewerbsarten, Sitten und Gebräuche', 'Lindner, Johann Traugott', '2015-06-06', 21, 'https://www.gutenberg.org/ebooks/49148', 'de', 4957), +(14621, 'Auf der Galerie', 'Kafka, Franz', '2006-10-28', 26, 'https://www.gutenberg.org/ebooks/19638', 'de', 179), +(14622, 'Correspondance: Lettres de jeunesse', 'Zola, Émile', '2017-09-10', 7, 'https://www.gutenberg.org/ebooks/55517', 'fr', 5041), +(14623, 'Bible Readings for the Home Circle', NULL, '2010-11-30', 48, 'https://www.gutenberg.org/ebooks/34520', 'en', 6984), +(14624, 'Beauties of Tennyson', 'Tennyson, Alfred Tennyson, Baron', '2007-11-23', 40, 'https://www.gutenberg.org/ebooks/23597', 'en', 532), +(14625, 'Peloponneesolais-sota', 'Thucydides', '2015-09-27', 8, 'https://www.gutenberg.org/ebooks/50065', 'fi', 5990), +(14626, 'La Catedral', 'Blasco Ibáñez, Vicente', '2005-09-07', 36, 'https://www.gutenberg.org/ebooks/16670', 'es', 6985), +(14627, 'Kolme matkaa Afrikassa\r\nHenry M. Stanleyn nuoruus ja ensimmäiset tutkimusmatkat Afrikan sisämaissa', 'Lagus, F. H. B.', '2015-09-15', 5, 'https://www.gutenberg.org/ebooks/49974', 'fi', 4485), +(14628, 'Robinson Crusoe in Words of One Syllable', 'Defoe, Daniel', '2007-08-01', 34, 'https://www.gutenberg.org/ebooks/22445', 'en', 1592), +(14629, 'Mornings in Florence', 'Ruskin, John', '2005-01-01', 79, 'https://www.gutenberg.org/ebooks/7227', 'en', 6986), +(14630, 'Vita di Andrea Doria, Volume I', 'Guerrazzi, Francesco Domenico', '2014-06-26', 10, 'https://www.gutenberg.org/ebooks/46100', 'it', 5047), +(14631, 'New York Times Current History: The European War, Vol. 8, Pt. 2, No. 1, July 1918', 'Various', '2014-05-27', 17, 'https://www.gutenberg.org/ebooks/45785', 'en', 335), +(14632, 'Piccadilly: A Fragment of Contemporary Biography', 'Oliphant, Laurence', '2011-06-01', 24, 'https://www.gutenberg.org/ebooks/36277', 'en', 6987), +(14633, 'Den svenska Arbetareskyddslagstiftningen och Yrkesinspektionen', 'Stjernstedt, Georg', '2016-08-05', 5, 'https://www.gutenberg.org/ebooks/52732', 'sv', 6988), +(14634, 'Hirvenhovissa: Kertomus', 'Beskow, Elisabeth Maria', '2018-10-30', 3, 'https://www.gutenberg.org/ebooks/58208', 'fi', 2168), +(14635, 'A Kindergarten Story Book', 'Hoxie, Jane L. (Jane Lincoln)', '2004-11-22', 29, 'https://www.gutenberg.org/ebooks/14127', 'en', 388), +(14636, 'Out of the Deep: Words for the Sorrowful', 'Kingsley, Charles', '2007-01-08', 16, 'https://www.gutenberg.org/ebooks/20312', 'en', 710), +(14637, 'Barbara Blomberg — Volume 10', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5570', 'en', 5057), +(14638, 'Unelma: Romaani', 'Zola, Émile', '2014-01-13', 9, 'https://www.gutenberg.org/ebooks/44657', 'fi', 4927), +(14639, 'Games for the Playground, Home, School and Gymnasium', 'Bancroft, Jessie Hubbell', '2008-05-31', 41, 'https://www.gutenberg.org/ebooks/25660', 'en', 1560), +(14640, 'Meine Mission nach Abessinien\nAuf Befehl Sr. Maj. des Deutschen Kaisers im Winter 1880/81 unternommen', 'Rohlfs, Gerhard', '2018-01-18', 11, 'https://www.gutenberg.org/ebooks/56392', 'de', 1936), +(14641, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 385, August 15, 1829', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11455', 'en', 133), +(14642, '幽霊書店', 'Morley, Christopher', '2012-11-09', 54, 'https://www.gutenberg.org/ebooks/41325', 'ja', 5617); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(14643, 'In Paradise: A Novel. Vol. II', 'Heyse, Paul', '2010-09-12', 18, 'https://www.gutenberg.org/ebooks/33705', 'en', 803), +(14644, 'The Poetical Works of Addison; Gay\'s Fables; and Somerville\'s Chase\r\nWith Memoirs and Critical Dissertations, by the Rev. George Gilfillan', 'Gay, John', '2004-01-01', 46, 'https://www.gutenberg.org/ebooks/10587', 'en', 5919), +(14645, 'Relativitätstheorie und Erkenntnis Apriori', 'Reichenbach, Hans', '2018-05-31', 16, 'https://www.gutenberg.org/ebooks/57240', 'de', 6989), +(14646, 'The Governments of Europe', 'Ogg, Frederic Austin', '2007-04-07', 18, 'https://www.gutenberg.org/ebooks/21006', 'en', 6990), +(14647, 'Authentic Narrative of the Death of Lord Nelson', 'Beatty, William', '2005-03-02', 40, 'https://www.gutenberg.org/ebooks/15233', 'en', 6991), +(14648, 'The Paladins of Edwin the Great', 'Markham, Clements R. (Clements Robert), Sir', '2014-04-30', 24, 'https://www.gutenberg.org/ebooks/45543', 'en', 6992), +(14649, 'Captain Billy\'s Whiz Bang, Vol 1, No. 11, August, 1920\r\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2018-04-14', 21, 'https://www.gutenberg.org/ebooks/56968', 'en', 372), +(14650, 'Light, Life, and Love: Selections from the German Mystics of the Middle Ages', 'Inge, William Ralph', '2003-11-01', 24, 'https://www.gutenberg.org/ebooks/4664', 'en', 6993), +(14651, 'Savo ja Savonlinna: Utukuvia muinaisuudesta', 'Yrjö-Koskinen, Yrjö Sakari', '2011-08-22', 4, 'https://www.gutenberg.org/ebooks/37163', 'fi', 6994), +(14652, 'Blackwood\'s Edinburgh Magazine, Vol. 70, No. 434, December, 1851', 'Various', '2013-12-24', 12, 'https://www.gutenberg.org/ebooks/44491', 'en', 711), +(14653, 'Life and Writings of Maurice Maeterlinck', 'Bithell, Jethro', '2012-02-18', 11, 'https://www.gutenberg.org/ebooks/38917', 'en', 6995), +(14654, 'Uncle Sam\'s Right Arm: A Patriotic Exercise', 'Preston, Effa E. (Effa Estelle)', '2016-11-01', 5, 'https://www.gutenberg.org/ebooks/53426', 'en', 364), +(14655, 'The Little Gods: A Masque of the Far East', 'Thomas, Rowland', '2019-07-14', 184, 'https://www.gutenberg.org/ebooks/59920', 'en', 2507), +(14656, 'Queen of the Flaming Diamond', 'Yerxa, Leroy', '2010-05-18', 12, 'https://www.gutenberg.org/ebooks/32411', 'en', 26), +(14657, 'The World\'s Great Sermons, Volume 08: Talmage to Knox Little', NULL, '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/11693', 'en', 3021), +(14658, 'The Man from Bar 20: A Story of the Cow Country', 'Mulford, Clarence Edward', '2017-12-10', 80, 'https://www.gutenberg.org/ebooks/56154', 'en', 315), +(14659, 'A Strange World: A Novel. Volume 1 (of 3)', 'Braddon, M. E. (Mary Elizabeth)', '2018-05-03', 21, 'https://www.gutenberg.org/ebooks/57086', 'en', 137), +(14660, 'The Essays of Arthur Schopenhauer: the Wisdom of Life', 'Schopenhauer, Arthur', '2004-01-01', 246, 'https://www.gutenberg.org/ebooks/10741', 'en', 5699), +(14661, 'Loss and Gain: The Story of a Convert', 'Newman, John Henry', '2008-02-11', 60, 'https://www.gutenberg.org/ebooks/24574', 'en', 942), +(14662, 'Some Reminiscences', 'Conrad, Joseph', '2006-01-09', 29, 'https://www.gutenberg.org/ebooks/1316', 'en', 4965), +(14663, 'Nooks and Corners of English Life, Past and Present', 'Timbs, John', '2012-06-20', 16, 'https://www.gutenberg.org/ebooks/40031', 'en', 226), +(14664, 'The Life of Stephen A. Douglas', 'Gardner, William', '2001-04-01', 14, 'https://www.gutenberg.org/ebooks/2593', 'en', 6996), +(14665, 'Vasárnapi Könyv. 1914. Első félév 12. füzet', 'Various', '2009-10-28', 4, 'https://www.gutenberg.org/ebooks/30346', 'hu', 18), +(14666, 'La espressione dei sentimenti dei nostri volatili domestici', 'Pascal, Teodoro', '2017-04-25', 5, 'https://www.gutenberg.org/ebooks/54603', 'it', 6997), +(14667, 'The Merchant of Berlin: An Historical Novel', 'Mühlbach, L. (Luise)', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12016', 'en', 6998), +(14668, 'Just So Stories', 'Kipling, Rudyard', '2008-08-01', 13, 'https://www.gutenberg.org/ebooks/26223', 'en', 4589), +(14669, 'The Book of the Thousand Nights and a Night — Volume 07', NULL, '2002-09-01', 72, 'https://www.gutenberg.org/ebooks/3441', 'en', 3347), +(14670, 'Ein Kampf um Rom: Historischer Roman. Erster Band', 'Dahn, Felix', '2010-02-16', 57, 'https://www.gutenberg.org/ebooks/31294', 'de', 6999), +(14671, 'Report of the Committee Appointed to Investigate the Railroad Riots in July, 1877\nRead in the Senate and House of Representatives May 23, 1878', 'Pennsylvania. General Assembly. Committee Appointed to Investigate the Railroad Riots in July, 1877', '2013-05-22', 25, 'https://www.gutenberg.org/ebooks/42766', 'en', 7000), +(14672, 'Southern Stories\nRetold from St. Nicholas', 'Various', '2007-12-06', 28, 'https://www.gutenberg.org/ebooks/23751', 'en', 7001), +(14673, 'Queen Victoria\nStory of Her Life and Reign, 1819-1901', 'Anonymous', '2006-02-01', 31, 'https://www.gutenberg.org/ebooks/9947', 'en', 7002), +(14674, 'By the Light of the Soul: A Novel', 'Freeman, Mary Eleanor Wilkins', '2006-01-21', 36, 'https://www.gutenberg.org/ebooks/17564', 'en', 61), +(14675, 'Buddhism, in Its Connexion with Brahmanism and Hinduism, and in Its Contrast with Christianity', 'Monier-Williams, Monier, Sir', '2014-10-28', 47, 'https://www.gutenberg.org/ebooks/47214', 'en', 7003), +(14676, 'The Extraordinary Adventures of Arsene Lupin, Gentleman-Burglar', 'Leblanc, Maurice', '2004-07-01', 512, 'https://www.gutenberg.org/ebooks/6133', 'en', 7004), +(14677, 'The Word Hoosier; John Finley\nIndiana Historical Society Publications, Volume IV, Number 2', 'Dunn, Jacob Piatt', '2011-03-20', 21, 'https://www.gutenberg.org/ebooks/35634', 'en', 7005), +(14678, 'Auf der Universität Lore', 'Storm, Theodor', '2005-09-01', 23, 'https://www.gutenberg.org/ebooks/8895', 'de', 906), +(14679, 'Slaveholding Weighed in the Balance of Truth, and Its Comparative Guilt Illustrated', 'Fitch, Charles', '2016-03-05', 7, 'https://www.gutenberg.org/ebooks/51371', 'en', 125), +(14680, 'Practical Pointers for Patentees', 'Cresee, Franklin Allison', '2007-09-20', 5, 'https://www.gutenberg.org/ebooks/22683', 'en', 7006), +(14681, 'Isabel Clarendon, Vol. 1 (of 2)', 'Gissing, George', '2017-03-25', 10, 'https://www.gutenberg.org/ebooks/54431', 'en', 7007), +(14682, 'Napoli a occhio nudo: Lettere ad un amico', 'Fucini, Renato', '2013-08-16', 19, 'https://www.gutenberg.org/ebooks/43486', 'it', 7008), +(14683, 'A Set of Six', 'Conrad, Joseph', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9349', 'en', 179), +(14684, 'The Mathematical-Historical Principles and the Evolution of Liberty', 'Fernández Bolívar, Víctor José', '2009-10-04', 11, 'https://www.gutenberg.org/ebooks/30174', 'en', 924), +(14685, 'Essays Before a Sonata', 'Ives, Charles', '2003-01-01', 62, 'https://www.gutenberg.org/ebooks/3673', 'en', 7009), +(14686, 'Highacres', 'Abbott, Jane', '2009-08-30', 40, 'https://www.gutenberg.org/ebooks/29865', 'en', 61), +(14687, 'Monsieur de Talleyrand', 'Sainte-Beuve, Charles Augustin', '2013-04-17', 15, 'https://www.gutenberg.org/ebooks/42554', 'fr', 1343), +(14688, 'We Girls: a Home Story', 'Whitney, A. D. T. (Adeline Dutton Train)', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/12224', 'en', 376), +(14689, 'The Prairie Mother', 'Stringer, Arthur', '2008-07-08', 12, 'https://www.gutenberg.org/ebooks/26011', 'en', 1155), +(14690, 'Fletcherism: What It Is; Or, How I Became Young at Sixty', 'Fletcher, Horace', '2014-10-02', 48, 'https://www.gutenberg.org/ebooks/47026', 'en', 7010), +(14691, 'The Eve of the French Revolution', 'Lowell, Edward J. (Edward Jackson)', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6301', 'en', 7011), +(14692, 'Le parler populaire des Canadiens français\r\nou, Lexique des canadianismes, acadianismes, anglicismes, américanismes, mots anglais les plus en usage au sein des familles canadiennes et acadiennes françaises', 'Dionne, N.-E. (Narcisse-Eutrope)', '2015-05-02', 16, 'https://www.gutenberg.org/ebooks/48852', 'fr', 7012), +(14693, 'Viewpoint', 'Garrett, Randall', '2007-11-20', 40, 'https://www.gutenberg.org/ebooks/23563', 'en', 26), +(14694, 'The Submarine Boys and the Middies\r\nOr, the Prize Detail at Annapolis', 'Durham, Victor G.', '2006-02-12', 11, 'https://www.gutenberg.org/ebooks/17756', 'en', 4678), +(14695, 'Coming to Grips with White Knuckles', 'Brown, Paul Cameron', '2010-01-13', 10, 'https://www.gutenberg.org/ebooks/30948', 'en', 28), +(14696, 'Silas Strong, Emperor of the Woods', 'Bacheller, Irving', '2015-09-30', 12, 'https://www.gutenberg.org/ebooks/50091', 'en', 7013), +(14697, 'The Waterloo Roll Call\nWith Biographical Notes and Anecdotes', 'Dalton, Charles', '2016-02-07', 21, 'https://www.gutenberg.org/ebooks/51143', 'en', 735), +(14698, 'Punch, or the London Charivari, Volume 159, July 7th, 1920', 'Various', '2005-09-12', 4, 'https://www.gutenberg.org/ebooks/16684', 'en', 134), +(14699, 'The World Beyond', 'Cummings, Ray', '2009-06-07', 43, 'https://www.gutenberg.org/ebooks/29059', 'en', 26), +(14700, 'Historical Guide to Old Charlottesville\r\nWith mention of its statues and of Albemarle\'s shrines', 'Rawlings, Mary', '2015-09-15', 9, 'https://www.gutenberg.org/ebooks/49980', 'en', 7014), +(14701, 'L\'Illustration, No. 3253, 1er Juillet 1905', 'Various', '2011-02-26', 14, 'https://www.gutenberg.org/ebooks/35406', 'fr', 150), +(14702, 'The International Magazine, Volume 4, No. 5, December 1851', 'Various', '2014-05-26', 4, 'https://www.gutenberg.org/ebooks/45771', 'en', 3080), +(14703, 'The Tobacco Tiller: A Tale of the Kentucky Tobacco Fields', 'Hackley, Sarah Bell', '2011-05-30', 18, 'https://www.gutenberg.org/ebooks/36283', 'en', 7015), +(14704, 'Beauchamp\'s Career — Volume 4', 'Meredith, George', '2003-09-01', 22, 'https://www.gutenberg.org/ebooks/4456', 'en', 137), +(14705, 'The Gold that Glitters\nThe Mistakes of Jenny Lavender', 'Holt, Emily Sarah', '2007-04-27', 21, 'https://www.gutenberg.org/ebooks/21234', 'en', 98), +(14706, 'The Sources and Analogues of \'A Midsummer-night\'s Dream\'', NULL, '2005-02-09', 47, 'https://www.gutenberg.org/ebooks/15001', 'en', 7016), +(14707, 'Long Odds', 'Haggard, H. Rider (Henry Rider)', '1999-10-01', 51, 'https://www.gutenberg.org/ebooks/1918', 'en', 7017), +(14708, 'Aus Natur und Geisteswelt\r\nSammlung wissenschaftlich-gemeinverständlicher Darstellungen aus allen Gebieten des Wissens', 'B.G. Teubner (Firm)', '2016-11-27', 11, 'https://www.gutenberg.org/ebooks/53614', 'de', 7018), +(14709, 'Contemporary Socialism', 'Rae, John', '2011-09-08', 39, 'https://www.gutenberg.org/ebooks/37351', 'en', 6326), +(14710, 'In the Blue Pike — Volume 01', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5584', 'en', 282), +(14711, 'Venus et Adonis', 'Shakespeare, William', '2008-06-04', 21, 'https://www.gutenberg.org/ebooks/25694', 'fr', 7019), +(14712, 'Varastettu basilli ja muita kertomuksia', 'Wells, H. G. (Herbert George)', '2018-01-13', 9, 'https://www.gutenberg.org/ebooks/56366', 'fi', 7020), +(14713, 'Geographic Variation in the Pocket Gopher, Cratogeomys castanops, in Coahuila, México', 'Baker, Rollin H. (Rollin Harold)', '2010-05-31', 6, 'https://www.gutenberg.org/ebooks/32623', 'en', 6337), +(14714, 'The History of Troilus and Cressida', 'Shakespeare, William', '1997-12-01', 9, 'https://www.gutenberg.org/ebooks/1124', 'en', 7021), +(14715, 'By Desert Ways to Baghdad', 'Wilkins, Louisa Jebb', '2011-12-16', 14, 'https://www.gutenberg.org/ebooks/38319', 'en', 7022), +(14716, 'Arsène Lupin versus Herlock Sholmes', 'Leblanc, Maurice', '2012-07-11', 159, 'https://www.gutenberg.org/ebooks/40203', 'en', 7004), +(14717, 'Ship\'s Company, the Entire Collection', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/10573', 'en', 1902), +(14718, 'Reise in die Aequinoctial-Gegenden des neuen Continents. Band 2.', 'Humboldt, Alexander von', '2008-03-03', 34, 'https://www.gutenberg.org/ebooks/24746', 'de', 2639), +(14719, 'Mr. Honey\'s Small Business Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 16, 'https://www.gutenberg.org/ebooks/3217', 'de', 5007), +(14720, 'For the Honor of Randall: A Story of College Athletics', 'Chadwick, Lester', '2013-02-19', 11, 'https://www.gutenberg.org/ebooks/42130', 'en', 5503), +(14721, 'Trial of Mary Blandy', NULL, '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/12640', 'en', 7023), +(14722, 'Körperpflege durch Gymnastik, Licht und Luft', 'Jaerschky, Paul', '2017-07-24', 12, 'https://www.gutenberg.org/ebooks/55187', 'de', 7024), +(14723, 'The Boy Scouts Book of Campfire Stories', NULL, '2008-08-29', 74, 'https://www.gutenberg.org/ebooks/26475', 'en', 61), +(14724, 'Letters to Children', 'Bridgman, E. C. (Elijah Coleman)', '2017-01-26', 8, 'https://www.gutenberg.org/ebooks/54055', 'en', 4148), +(14725, 'Journaux intimes', 'Baudelaire, Charles', '2004-10-19', 53, 'https://www.gutenberg.org/ebooks/13792', 'fr', 7025), +(14726, 'Perolas e Diamantes: Contos Infantis', 'Grimm, Jacob', '2009-11-21', 53, 'https://www.gutenberg.org/ebooks/30510', 'pt', 900), +(14727, 'La vita Italiana nel Risorgimento (1849-1861), parte 2\r\nQuarta serie - Storia e letteratura', 'Various', '2016-03-22', 19, 'https://www.gutenberg.org/ebooks/51527', 'it', 7026), +(14728, 'The Woodpeckers', 'Eckstorm, Fannie Hardy', '2011-01-25', 32, 'https://www.gutenberg.org/ebooks/35062', 'en', 7027), +(14729, 'The Snakes of Europe', 'Boulenger, George Albert', '2014-08-15', 8, 'https://www.gutenberg.org/ebooks/46590', 'en', 7028), +(14730, 'Parodieën', 'Veth, Cornelis', '2014-11-23', 16, 'https://www.gutenberg.org/ebooks/47442', 'nl', 2529), +(14731, 'The Clue', 'Wells, Carolyn', '2017-06-08', 28, 'https://www.gutenberg.org/ebooks/54869', 'en', 128), +(14732, 'Mogens, and Other Stories', 'Jacobsen, J. P. (Jens Peter)', '2004-10-01', 130, 'https://www.gutenberg.org/ebooks/6765', 'en', 7029), +(14733, 'A Book of Discovery\r\nThe History of the World\'s Exploration, From the Earliest Times to the Finding of the South Pole', 'Synge, M. B. (Margaret Bertha)', '2007-10-20', 51, 'https://www.gutenberg.org/ebooks/23107', 'en', 2320), +(14734, 'History of Egypt From 330 B.C. To the Present Time, Volume 12 (of 12)', 'Rappoport, A. S. (Angelo Solomon)', '2005-12-17', 25, 'https://www.gutenberg.org/ebooks/17332', 'en', 7030), +(14735, 'The Pilgrim Story\r\nBeing largely a compilation from the documents of Governor Bradford and Governor Winslow, severally and in collaboration; together with a list of Mayflower passengers.', 'Atwood, William Franklin', '2016-10-13', 29, 'https://www.gutenberg.org/ebooks/53270', 'en', 7031), +(14736, 'Les plaisirs et les jours', 'Proust, Marcel', '2019-01-14', 96, 'https://www.gutenberg.org/ebooks/58698', 'fr', 560), +(14737, 'Triplanetary', 'Smith, E. E. (Edward Elmer)', '2007-03-08', 119, 'https://www.gutenberg.org/ebooks/20782', 'en', 67), +(14738, 'Bird Neighbors\r\nAn Introductory Acquaintance with One Hundred and Fifty Birds Commonly Found in the Gardens, Meadows, and Woods About Our Homes', 'Blanchan, Neltje', '2011-10-12', 36, 'https://www.gutenberg.org/ebooks/37735', 'en', 318), +(14739, 'The Marriage of Heaven and Hell', 'Blake, William', '2014-04-04', 646, 'https://www.gutenberg.org/ebooks/45315', 'en', 7032), +(14740, 'Atlantis: The Antedeluvian World', 'Donnelly, Ignatius', '2003-05-01', 142, 'https://www.gutenberg.org/ebooks/4032', 'en', 7033), +(14741, 'London Town', 'Leigh, Felix', '2007-05-31', 37, 'https://www.gutenberg.org/ebooks/21650', 'en', 2951), +(14742, 'Parisian Points of View', 'Halévy, Ludovic', '2005-03-25', 15, 'https://www.gutenberg.org/ebooks/15465', 'en', 560), +(14743, 'The Tempest', 'Shakespeare, William', '1998-11-01', 126, 'https://www.gutenberg.org/ebooks/1540', 'en', 7034), +(14744, 'Η νοσταλγός', 'Papadiamantes, Alexandros', '2010-08-10', 15, 'https://www.gutenberg.org/ebooks/33395', 'el', 61), +(14745, 'The Mystery of Jockey Hollow\nArden Blake Mystery Series #2', 'Garis, Cleo F.', '2012-09-05', 11, 'https://www.gutenberg.org/ebooks/40667', 'en', 5010), +(14746, 'Den siste Atenaren', 'Rydberg, Viktor', '2003-11-01', 24, 'https://www.gutenberg.org/ebooks/10117', 'sv', 942), +(14747, 'Scientific American Supplement, No. 664, September 22,1888', 'Various', '2008-01-15', 23, 'https://www.gutenberg.org/ebooks/24322', 'en', 210), +(14748, 'Rhandensche Jongens', 'Lens, J. (Jan)', '2018-03-08', 4, 'https://www.gutenberg.org/ebooks/56702', 'nl', 511), +(14749, 'The Battle of Allatoona, October 5th, 1864', 'Ludlow, William', '2010-05-04', 19, 'https://www.gutenberg.org/ebooks/32247', 'en', 7035), +(14750, 'The Spaniards in Florida\r\nComprising the Notable Settlement of the Huguenots in 1564, and the History and Antiquities of St. Augustine, Founded A.D. 1565', 'Fairbanks, George R. (George Rainsford)', '2011-09-22', 9, 'https://www.gutenberg.org/ebooks/37507', 'en', 4634), +(14751, 'Down the Chimney', 'Knapp, Shepherd', '2005-01-24', 11, 'https://www.gutenberg.org/ebooks/14785', 'en', 364), +(14752, 'A Hitch in Space', 'Leiber, Fritz', '2016-09-13', 52, 'https://www.gutenberg.org/ebooks/53042', 'en', 179), +(14753, 'The Frontier Fort\r\nOr, Stirring Times in the North West Territory of British America', 'Kingston, William Henry Giles', '2007-05-15', 19, 'https://www.gutenberg.org/ebooks/21462', 'en', 3823), +(14754, 'Ecce Homo\nComplete Works, Volume Seventeen', 'Nietzsche, Friedrich Wilhelm', '2016-05-30', 613, 'https://www.gutenberg.org/ebooks/52190', 'en', 5723), +(14755, 'Punch, or the London Charivari, Volume 152, June 6, 1917', 'Various', '2005-04-19', 9, 'https://www.gutenberg.org/ebooks/15657', 'en', 134), +(14756, 'Oscar Wilde: An Idler\'s Impression', 'Saltus, Edgar', '2010-06-17', 36, 'https://www.gutenberg.org/ebooks/32849', 'en', 4671), +(14757, 'Dissertations on Inflammation, Vol. 2', 'Burns, John', '2019-05-22', 10, 'https://www.gutenberg.org/ebooks/59578', 'en', 7036), +(14758, 'Kappale kahden matkaa', 'Salmela, Marja', '2014-03-13', 13, 'https://www.gutenberg.org/ebooks/45127', 'fi', 6994), +(14759, 'The Diary of Samuel Pepys — Complete', 'Pepys, Samuel', '2004-10-31', 317, 'https://www.gutenberg.org/ebooks/4200', 'en', 1231), +(14760, 'The Gospel of the Pentateuch: A Set of Parish Sermons', 'Kingsley, Charles', '2003-11-01', 21, 'https://www.gutenberg.org/ebooks/10325', 'en', 7037), +(14761, '歐遊雜記', 'Zhu, Ziqing', '2008-01-02', 16, 'https://www.gutenberg.org/ebooks/24110', 'zh', 1408), +(14762, 'The Taming of the Shrew', 'Shakespeare, William', '1999-06-01', 26, 'https://www.gutenberg.org/ebooks/1772', 'en', 7038), +(14763, 'Master of Men', 'Oppenheim, E. Phillips (Edward Phillips)', '2012-08-08', 23, 'https://www.gutenberg.org/ebooks/40455', 'en', 675), +(14764, 'Testamentum és Hat levél', 'Benedek, Elek', '2012-12-09', 8, 'https://www.gutenberg.org/ebooks/41587', 'hu', 7039), +(14765, 'The Galaxy, June 1877\nVol. XXIII.—June, 1877.—No. 6.', 'Various', '2010-04-21', 15, 'https://www.gutenberg.org/ebooks/32075', 'en', 883), +(14766, 'Literary Landmarks of Venice', 'Hutton, Laurence', '2018-02-09', 12, 'https://www.gutenberg.org/ebooks/56530', 'en', 592), +(14767, 'Bataille de dames', 'Scribe, Eugène', '2004-05-01', 53, 'https://www.gutenberg.org/ebooks/12472', 'en', 3017), +(14768, 'Nuts for Future Historians to Crack', NULL, '2008-09-17', 19, 'https://www.gutenberg.org/ebooks/26647', 'en', 7040), +(14769, 'A Mountain Europa', 'Fox, John, Jr.', '2002-01-01', 13, 'https://www.gutenberg.org/ebooks/3025', 'en', 1996), +(14770, 'Digters uit Suid-Afrika\r\nBloemlesing uit die poësie van die Twede Afrikaanse-Taalbeweging', 'Celliers, Jan François Elias', '2013-03-10', 49, 'https://www.gutenberg.org/ebooks/42302', 'af', 7041), +(14771, 'På Elghyttan', 'Beskow, Elisabeth Maria', '2015-04-05', 21, 'https://www.gutenberg.org/ebooks/48638', 'sv', 420), +(14772, 'Subjectivity', 'Spinrad, Norman', '2009-12-21', 32, 'https://www.gutenberg.org/ebooks/30722', 'en', 26), +(14773, 'Comment on Prononce le Français\r\nTraité complet de prononciation pratique avec le noms propres et les mots étrangers', 'Martinon, Philippe', '2019-08-04', 526, 'https://www.gutenberg.org/ebooks/60052', 'fr', 1157), +(14774, 'Apologia Diffidentis', 'Dalton, O. M. (Ormonde Maddock)', '2009-01-13', 14, 'https://www.gutenberg.org/ebooks/27795', 'en', 7042), +(14775, 'The Irish Penny Journal, Vol. 1 No. 17, October 24, 1840', 'Various', '2017-03-01', 2, 'https://www.gutenberg.org/ebooks/54267', 'en', 81), +(14776, 'Casanovas Heimfahrt', 'Schnitzler, Arthur', '2006-04-11', 48, 'https://www.gutenberg.org/ebooks/18148', 'de', 7043), +(14777, 'De ruiters van Zuid-Afrika\r\neen verhaal uit de dagen van Jameson en Krugersdorp 1895-96', 'Penning, L. (Louwrens)', '2011-02-12', 10, 'https://www.gutenberg.org/ebooks/35250', 'nl', 713), +(14778, 'The Last American\r\nA Fragment from the Journal of Khan-li, Prince of Dimph-yoo-chur and Admiral in the Persian Navy', 'Mitchell, John Ames', '2005-02-01', 36, 'https://www.gutenberg.org/ebooks/7485', 'en', 26), +(14779, 'The Euahlayi Tribe: A Study of Aboriginal Life in Australia', 'Parker, K. Langloh (Katie Langloh)', '2003-03-01', 42, 'https://www.gutenberg.org/ebooks/3819', 'en', 7044), +(14780, 'A Whim, and Its Consequences\nCollection of British Authors Vol. CXIV', 'James, G. P. R. (George Payne Rainsford)', '2016-04-10', 14, 'https://www.gutenberg.org/ebooks/51715', 'en', 61), +(14781, 'Unwise Child', 'Garrett, Randall', '2007-11-05', 312, 'https://www.gutenberg.org/ebooks/23335', 'en', 2797), +(14782, 'Beatrix of Clare', 'Scott, John Reed', '2005-11-18', 46, 'https://www.gutenberg.org/ebooks/17100', 'en', 7045), +(14783, 'A Sketch of the Life and Times of Judge Haliburton', 'Haliburton, R. G. (Robert Grant)', '2014-12-15', 12, 'https://www.gutenberg.org/ebooks/47670', 'en', 7046), +(14784, 'Primeira origem da arte\nde imprimir dada à luz pelo primeiros characteres', 'Villeneuve, João', '2006-08-03', 12, 'https://www.gutenberg.org/ebooks/18974', 'pt', 3239), +(14785, 'Richard Wagner', 'Champfleury', '2010-11-20', 13, 'https://www.gutenberg.org/ebooks/34382', 'fr', 1464), +(14786, 'The Fall of the House of Usher', 'Poe, Edgar Allan', '2004-09-01', 40, 'https://www.gutenberg.org/ebooks/6557', 'en', 461), +(14787, 'Ιλιάδα', 'Homer', '2011-05-29', 76, 'https://www.gutenberg.org/ebooks/36248', 'el', 7047), +(14788, 'Motion pictures, 1940-1949: Catalog of Copyright Entries', 'Library of Congress. Copyright Office', '2018-11-05', 7, 'https://www.gutenberg.org/ebooks/58237', 'en', 6700), +(14789, 'Legend of Moulin Huet', 'Freeth, Lizzie A.', '2004-11-22', 10, 'https://www.gutenberg.org/ebooks/14118', 'en', 7048), +(14790, 'The Esperantist, Vol. 2, No. 9', NULL, '2014-01-14', 5, 'https://www.gutenberg.org/ebooks/44668', 'eo', 3912), +(14791, 'The English Novel and the Principle of its Development', 'Lanier, Sidney', '2012-03-19', 12, 'https://www.gutenberg.org/ebooks/39200', 'en', 7049), +(14792, 'Punch, or the London Charivari, Volume 1, August 21, 1841', 'Various', '2005-02-07', 14, 'https://www.gutenberg.org/ebooks/14924', 'en', 134), +(14793, 'Prester John', 'Buchan, John', '1996-08-01', 223, 'https://www.gutenberg.org/ebooks/611', 'en', 1615), +(14794, '醒夢駢言', 'Juqizi, active 17th century', '2008-10-31', 12, 'https://www.gutenberg.org/ebooks/27108', 'zh', NULL), +(14795, 'The Life and Reign of Edward I.', 'Seeley, Robert Benton', '2016-01-07', 11, 'https://www.gutenberg.org/ebooks/50866', 'en', 7050), +(14796, 'Grandma\'s Memories', 'Brine, Mary D. (Mary Dow)', '2004-08-15', 8, 'https://www.gutenberg.org/ebooks/9382', 'en', 7051), +(14797, 'India under Ripon: A Private Diary', 'Blunt, Wilfrid Scawen', '2015-06-09', 40, 'https://www.gutenberg.org/ebooks/49177', 'en', 1975), +(14798, 'The World English Bible (WEB): Isaiah', 'Anonymous', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8250', 'en', 7052), +(14799, 'Das Lob der Narrheit', 'Erasmus, Desiderius', '2014-09-19', 25, 'https://www.gutenberg.org/ebooks/46903', 'de', 140), +(14800, 'The Outdoor Girls in a Winter Camp\r\nOr, Glorious Days on Skates and Ice Boats', 'Hope, Laura Lee', '2006-10-23', 19, 'https://www.gutenberg.org/ebooks/19607', 'en', 323), +(14801, 'Bothwell; or, The Days of Mary Queen of Scots, Volume 2 (of 3)', 'Grant, James', '2017-09-11', 11, 'https://www.gutenberg.org/ebooks/55528', 'en', 5384), +(14802, 'It, and Other Stories', 'Morris, Gouverneur', '2009-01-30', 44, 'https://www.gutenberg.org/ebooks/27934', 'en', 179), +(14803, 'Knots, Bends, Splices\nWith tables of strengths of ropes, etc. and wire rigging', 'Jutsum, Captain', '2010-01-16', 76, 'https://www.gutenberg.org/ebooks/30983', 'en', 7053), +(14804, 'Breaching the Marianas: The Battle for Saipan', 'Chapin, John C.', '2015-05-08', 28, 'https://www.gutenberg.org/ebooks/48899', 'en', 7054), +(14805, 'The Nursery, December 1877, Vol. XXII. No. 6\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 12, 'https://www.gutenberg.org/ebooks/28140', 'en', 4641), +(14806, 'The Complete Poetical Works of Samuel Taylor Coleridge. Vol 2 (of 2)', 'Coleridge, Samuel Taylor', '2009-06-11', 26, 'https://www.gutenberg.org/ebooks/29092', 'en', 532), +(14807, 'The Captain\'s Story; or, The Disobedient Son', NULL, '2016-02-11', 6, 'https://www.gutenberg.org/ebooks/51188', 'en', 324), +(14808, 'McClure\'s Magazine, Vol. XXXI, No. 4, August 1908', 'Various', '2010-04-01', 33, 'https://www.gutenberg.org/ebooks/31851', 'en', 380), +(14809, '三略', 'Huang, Shigong, active 3rd century B.C.', '2005-01-01', 19, 'https://www.gutenberg.org/ebooks/7218', 'zh', 7055), +(14810, 'Poems', 'Morris, George Pope', '2001-03-01', 16, 'https://www.gutenberg.org/ebooks/2558', 'en', 178), +(14811, 'A Soldier\'s Daughter, and Other Stories', 'Henty, G. A. (George Alfred)', '2015-02-17', 18, 'https://www.gutenberg.org/ebooks/48297', 'en', 323), +(14812, 'Round the Red Lamp: Being Facts and Fancies of Medical Life', 'Doyle, Arthur Conan', '1996-02-01', 109, 'https://www.gutenberg.org/ebooks/423', 'en', 7056), +(14813, 'The Voyage of Captain Popanilla', 'Disraeli, Benjamin, Earl of Beaconsfield', '2005-04-01', 28, 'https://www.gutenberg.org/ebooks/7816', 'en', 5147), +(14814, 'The Mule-Bone:\nA Comedy of Negro Life in Three Acts', 'Hughes, Langston', '2006-10-02', 99, 'https://www.gutenberg.org/ebooks/19435', 'en', 7057), +(14815, 'A History of Sumer and Akkad\r\nAn account of the early races of Babylonia from prehistoric times to the foundation of the Babylonian monarchy', 'King, L. W. (Leonard William)', '2015-07-02', 89, 'https://www.gutenberg.org/ebooks/49345', 'en', 2877), +(14816, 'The Bible, King James version, Book 62: 1 John', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8062', 'en', 3902), +(14817, 'Troubadour Tales', 'Stein, Evaleen', '2015-10-21', 15, 'https://www.gutenberg.org/ebooks/50268', 'en', 98), +(14818, 'La carbonaria', 'Porta, Giambattista della', '2009-03-20', 17, 'https://www.gutenberg.org/ebooks/28372', 'it', 407), +(14819, 'In Old Kentucky', 'Dazey, Charles Turner', '2004-11-03', 16, 'https://www.gutenberg.org/ebooks/13933', 'en', 1996), +(14820, 'O trophéo', 'Santos, C. Afonso dos', '2007-09-17', 13, 'https://www.gutenberg.org/ebooks/22648', 'pt', 8), +(14821, 'The Stones of Paris in History and Letters, Volume 1 (of 2)', 'Martin, Benjamin Ellis', '2013-01-25', 31, 'https://www.gutenberg.org/ebooks/41914', 'en', 4122), +(14822, 'Near the Top of the World: Stories of Norway, Sweden & Denmark', 'Moore, Nelle E.', '2014-05-05', 7, 'https://www.gutenberg.org/ebooks/45588', 'en', 7058), +(14823, 'The Southern Literary Messenger, Vol. I., No. 9, May, 1835', 'Various', '2018-09-08', 5, 'https://www.gutenberg.org/ebooks/57871', 'en', 522), +(14824, 'History of the 11th Field Company Australian Engineers, Australian Imperial Force', 'Anonymous', '2018-10-02', 4, 'https://www.gutenberg.org/ebooks/58005', 'en', 7059), +(14825, 'Songs Ysame', 'Bacon, Albion Fellows', '2012-03-03', 15, 'https://www.gutenberg.org/ebooks/39032', 'en', 178), +(14826, 'The Kādambarī of Bāṇa', 'Bāṇa‏', '2012-10-21', 64, 'https://www.gutenberg.org/ebooks/41128', 'en', 7060), +(14827, 'A Williams Anthology\nA Collection of the Verse and Prose of Williams College, 1798-1910', NULL, '2004-03-01', 26, 'https://www.gutenberg.org/ebooks/11658', 'en', 7061), +(14828, 'Blue Robin, the Girl Pioneer', 'Halsey, Rena I.', '2011-07-26', 22, 'https://www.gutenberg.org/ebooks/36846', 'en', 7062), +(14829, 'Ini: Ein Roman aus dem ein und zwanzigsten Jahrhundert', 'Voss, Julius von', '2011-11-12', 12, 'https://www.gutenberg.org/ebooks/37994', 'de', 26), +(14830, 'A Negro Explorer at the North Pole', 'Henson, Matthew Alexander', '2007-03-28', 67, 'https://www.gutenberg.org/ebooks/20923', 'en', 7063), +(14831, 'Advice on Fox-Hunting', 'Willoughby de Broke, Henry Verney, baron', '2019-02-07', 8, 'https://www.gutenberg.org/ebooks/58839', 'en', 7064), +(14832, 'A New Subspecies of Lizard, Cnemidophorus sacki, from Michoacán, México', 'Duellman, William Edward', '2010-08-23', 22, 'https://www.gutenberg.org/ebooks/33508', 'en', 7065), +(14833, 'Modern Religious Cults and Movements', 'Atkins, Gaius Glenn', '2006-08-15', 41, 'https://www.gutenberg.org/ebooks/19051', 'en', 655), +(14834, 'Poems', 'Santayana, George', '2015-08-17', 31, 'https://www.gutenberg.org/ebooks/49721', 'en', 178), +(14835, 'Souvenirs entomologiques - Livre I\nÉtude sur l\'instinct et les moeurs des insectes', 'Fabre, Jean-Henri', '2005-10-08', 42, 'https://www.gutenberg.org/ebooks/16825', 'fr', 2667), +(14836, 'The Subterranean Brotherhood', 'Hawthorne, Julian', '2005-07-01', 18, 'https://www.gutenberg.org/ebooks/8406', 'en', 7066), +(14837, 'Trees, Fruits and Flowers of Minnesota, 1916\nEmbracing the Transactions of the Minnesota State Horticultural Society,Volume 44, from December 1, 1915, to December 1, 1916, Including the Twelve Numbers of \"The Minnesota Horticulturist\" for 1916', NULL, '2006-04-15', 137, 'https://www.gutenberg.org/ebooks/18183', 'en', 7067), +(14838, 'Cecilia of the Pink Roses', 'Haviland-Taylor, Katharine', '2019-08-14', 591, 'https://www.gutenberg.org/ebooks/60099', 'en', 1080), +(14839, 'Flower o\' the Heather: A Story of the Killing Times', 'MacKenna, Robert William', '2014-09-07', 11, 'https://www.gutenberg.org/ebooks/46769', 'en', 2178), +(14840, 'Phelim Otoole\'s Courtship and Other Stories\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 17, 'https://www.gutenberg.org/ebooks/16019', 'en', 440), +(14841, 'The Age of Invention: A Chronicle of Mechanical Conquest', 'Thompson, Holland', '2001-11-01', 30, 'https://www.gutenberg.org/ebooks/2900', 'en', 6792), +(14842, 'Little Mittens for The Little Darlings\nBeing the Second Book of the Series', 'Fanny, Aunt', '2009-05-08', 9, 'https://www.gutenberg.org/ebooks/28716', 'en', 388), +(14843, 'L\'Illustration, No. 3240, 1 Avril 1905', 'Various', '2010-11-17', 5, 'https://www.gutenberg.org/ebooks/34349', 'fr', 150), +(14844, 'Pagan Papers', 'Grahame, Kenneth', '2004-03-01', 58, 'https://www.gutenberg.org/ebooks/5319', 'en', 20), +(14845, 'Brother Francis; Or, Less than the Least', 'Douglas, Eileen', '2010-10-02', 20, 'https://www.gutenberg.org/ebooks/33950', 'en', 7068), +(14846, 'The Creature Inside', 'Sharkey, Jack', '2016-09-19', 28, 'https://www.gutenberg.org/ebooks/53089', 'en', 179), +(14847, 'Reading: How to Teach It', 'Arnold, Sarah Louise', '2018-12-12', 22, 'https://www.gutenberg.org/ebooks/58461', 'en', 7069), +(14848, 'Lady Cassandra', 'Vaizey, George de Horne, Mrs.', '2010-06-18', 11, 'https://www.gutenberg.org/ebooks/32882', 'en', 61), +(14849, 'The Branding Iron', 'Burt, Katharine Newlin', '2008-06-19', 26, 'https://www.gutenberg.org/ebooks/25835', 'en', 315), +(14850, 'The Comic English Grammar: A New And Facetious Introduction To The English Tongue', 'Leigh, Percival', '2014-01-30', 32, 'https://www.gutenberg.org/ebooks/44802', 'en', 7070), +(14851, 'Nouveaux Pastels (Dix portraits d\'hommes)', 'Bourget, Paul', '2018-07-01', 20, 'https://www.gutenberg.org/ebooks/57429', 'fr', 2508), +(14852, 'On the Variation of Species, with Especial Reference to the Insecta\r\nFollowed by an Inquiry into the Nature of Genera', 'Wollaston, Thomas Vernon', '2012-01-15', 5, 'https://www.gutenberg.org/ebooks/38584', 'en', 3546), +(14853, 'The Hospital Bulletin, Vol. V, No. 3, May 15, 1909', 'Various', '2016-09-02', 5, 'https://www.gutenberg.org/ebooks/52967', 'en', 3905), +(14854, 'The Clammer and the Submarine', 'Hopkins, William John', '2012-04-15', 21, 'https://www.gutenberg.org/ebooks/39456', 'en', 7071), +(14855, 'The World\'s Greatest Books — Volume 14 — Philosophy and Economics', NULL, '2008-04-06', 68, 'https://www.gutenberg.org/ebooks/25009', 'en', 1745), +(14856, 'St. Ronan\'s Well', 'Scott, Walter', '2007-03-06', 61, 'https://www.gutenberg.org/ebooks/20749', 'en', 1991), +(14857, 'The Revealing Pattern', 'Heiner, Alvin', '2019-01-08', 20, 'https://www.gutenberg.org/ebooks/58653', 'en', 7072), +(14858, 'U.S. Copyright Renewals, 1965 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11832', 'en', 4170), +(14859, 'Hakalan rahat: Näytelmä kahdessa näytöksessä', 'Turunen, Armas E.', '2016-06-18', 3, 'https://www.gutenberg.org/ebooks/52369', 'fi', 382), +(14860, 'Ariel: ou, La vie de Shelley', 'Maurois, André', '2019-06-19', 36, 'https://www.gutenberg.org/ebooks/59781', 'fr', 6521), +(14861, 'The History of Don Quixote, Volume 1, Part 15', 'Cervantes Saavedra, Miguel de', '2004-07-19', 4, 'https://www.gutenberg.org/ebooks/5917', 'en', 89), +(14862, 'The Hansa Towns', 'Zimmern, Helen', '2012-05-10', 25, 'https://www.gutenberg.org/ebooks/39664', 'en', 7073), +(14863, 'The Superstitions of Witchcraft', 'Williams, Howard', '2007-10-01', 58, 'https://www.gutenberg.org/ebooks/22822', 'en', 7074), +(14864, 'The Complete Herbal\r\nTo which is now added, upwards of one hundred additional herbs, with a display of their medicinal and occult qualities physically applied to the cure of all disorders incident to mankind: to which are now first annexed, the English physician enlarged, and key to Physic.', 'Culpeper, Nicholas', '2015-07-24', 1002, 'https://www.gutenberg.org/ebooks/49513', 'en', 7075), +(14865, 'Timar\'s Two Worlds', 'Jókai, Mór', '2010-02-26', 23, 'https://www.gutenberg.org/ebooks/31409', 'en', 7076), +(14866, 'His Last Bow', 'Doyle, Arthur Conan', '2005-08-01', 10, 'https://www.gutenberg.org/ebooks/8634', 'en', 3511), +(14867, 'Diary of the Besieged Resident in Paris', 'Labouchere, Henry', '2006-09-13', 17, 'https://www.gutenberg.org/ebooks/19263', 'en', 3798), +(14868, 'The Gospel of Buddha, Compiled from Ancient Records', 'Carus, Paul', '2011-04-17', 83, 'https://www.gutenberg.org/ebooks/35895', 'en', 639), +(14869, 'Secret Societies: A Discussion of Their Character and Claims', 'Beecher, Edward', '2004-10-15', 19, 'https://www.gutenberg.org/ebooks/13759', 'en', 7077), +(14870, 'The House of Strange Secrets: A Detective Story', 'Bayly, A. Eric', '2011-01-13', 24, 'https://www.gutenberg.org/ebooks/34947', 'en', 128), +(14871, 'The Augsburg Confession\r\nThe confession of faith, which was submitted to His Imperial Majesty Charles V at the diet of Augsburg in the year 1530', 'Melanchthon, Philipp', '2008-06-29', 44, 'https://www.gutenberg.org/ebooks/275', 'en', 7078), +(14872, 'Új versek', 'Ady, Endre', '2013-06-24', 8, 'https://www.gutenberg.org/ebooks/43029', 'hu', 1645), +(14873, 'The Panama Canal', 'Boardman, Harry Clow', '2017-11-14', 10, 'https://www.gutenberg.org/ebooks/55970', 'en', 1232), +(14874, 'Birds and Nature Vol. 09 No. 3 [March 1901]', 'Various', '2014-11-29', 16, 'https://www.gutenberg.org/ebooks/47489', 'en', 490), +(14875, 'Godsdienst en godsdiensten', 'Ziegler, Theobald', '2013-09-26', 9, 'https://www.gutenberg.org/ebooks/43815', 'nl', 1444), +(14876, 'Nobody', 'Warner, Susan', '2009-04-06', 38, 'https://www.gutenberg.org/ebooks/28524', 'en', 3823), +(14877, 'A Village of Vagabonds', 'Smith, F. Berkeley (Frank Berkeley)', '2008-09-21', 21, 'https://www.gutenberg.org/ebooks/26678', 'en', 6896), +(14878, 'The Bedford-Row Conspiracy', 'Thackeray, William Makepeace', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9520', 'en', 45), +(14879, 'Writing the Photoplay', 'Leeds, Arthur', '2006-03-03', 22, 'https://www.gutenberg.org/ebooks/17903', 'en', 7079), +(14880, 'De complete werken van Joost van Vondel. Vorstelijke warande der dieren', 'Vondel, Joost van den', '2015-03-30', 16, 'https://www.gutenberg.org/ebooks/48607', 'nl', 2651), +(14881, 'The Irish Penny Journal, Vol. 1 No. 16, October 17, 1840', 'Various', '2017-02-28', 1, 'https://www.gutenberg.org/ebooks/54258', 'en', 81), +(14882, 'In the Field (1914-1915): The Impressions of an Officer of Light Cavalry', 'Dupont, Marcel', '2006-04-14', 12, 'https://www.gutenberg.org/ebooks/18177', 'en', 5289), +(14883, 'The Honour of the Flag', 'Russell, William Clark', '2006-11-23', 15, 'https://www.gutenberg.org/ebooks/19899', 'en', 252), +(14884, 'The Curse of Education', 'Gorst, Harold Edward', '2009-08-07', 19, 'https://www.gutenberg.org/ebooks/29630', 'en', 973), +(14885, 'Rise of the New West, 1819-1829', 'Turner, Frederick Jackson', '2003-03-01', 30, 'https://www.gutenberg.org/ebooks/3826', 'en', 7080), +(14886, 'Sociology and Modern Social Problems', 'Ellwood, Charles A. (Charles Abram)', '2004-09-01', 44, 'https://www.gutenberg.org/ebooks/6568', 'en', 3503), +(14887, 'The Monster', 'Tenneshaw, S. M.', '2008-03-25', 39, 'https://www.gutenberg.org/ebooks/24913', 'en', 461), +(14888, 'Southern War Songs: Camp-Fire, Patriotic and Sentimental', NULL, '2011-09-26', 11, 'https://www.gutenberg.org/ebooks/37538', 'en', 7081), +(14889, 'Secrets of meat curing and sausage making\r\nhow to cure hams, shoulders, bacon, corned beef, etc., and how to make all kinds of sausage, etc. to comply with the pure food laws', 'B. Heller & Co.', '2018-12-19', 133, 'https://www.gutenberg.org/ebooks/58495', 'en', 1048), +(14890, 'Breves instrucções aos correspondentes da Academia das Sciencias de Lisboa sobre as remessas dos productos, e noticias pertencentes a\' Historia da Natureza, para formar hum Museo Nacional', 'Unknown', '2005-04-20', 25, 'https://www.gutenberg.org/ebooks/15668', 'pt', 7082), +(14891, 'Castle of Terror', 'Liston, E. J.', '2010-06-18', 32, 'https://www.gutenberg.org/ebooks/32876', 'en', 26), +(14892, 'Die Welträtsel: Gemeinverständliche Studien über Monistische Philosophie', 'Haeckel, Ernst', '2019-05-19', 8, 'https://www.gutenberg.org/ebooks/59547', 'de', 4549), +(14893, 'Our Standard-Bearer; Or, The Life of General Uysses S. Grant', 'Optic, Oliver', '2014-03-12', 8, 'https://www.gutenberg.org/ebooks/45118', 'en', 7083), +(14894, 'The Borghesi Astronomical Clock in the Museum of History and Technology\r\nContributions from the Museum of History and Technology, Paper 35', 'Bedini, Silvio A.', '2010-07-18', 105, 'https://www.gutenberg.org/ebooks/33198', 'en', 7084), +(14895, 'Virgin Saints and Martyrs', 'Baring-Gould, S. (Sabine)', '2016-12-30', 12, 'https://www.gutenberg.org/ebooks/53841', 'en', 7085), +(14896, 'When a Cobbler Ruled the King', 'Seaman, Augusta Huiell', '2012-01-14', 15, 'https://www.gutenberg.org/ebooks/38570', 'en', 7086), +(14897, 'A Collection of Chirurgical Tracts', 'Beckett, William', '2016-09-06', 6, 'https://www.gutenberg.org/ebooks/52993', 'en', 4470), +(14898, 'McClure\'s Magazine, Vol. XXXI, September 1908, No. 5', 'Various', '2014-06-10', 18, 'https://www.gutenberg.org/ebooks/45924', 'en', 380), +(14899, 'Three Wonder Plays', 'Gregory, Lady', '2005-01-04', 13, 'https://www.gutenberg.org/ebooks/14588', 'en', 402), +(14900, 'Die Brüder Wright\r\nEine Studie ueber die Entwicklung der Flugmaschine von Lilienthal bis Wright', 'Hildebrandt, A. (Alfred)', '2004-02-01', 52, 'https://www.gutenberg.org/ebooks/10914', 'de', 5353), +(14901, 'Alf\'s Button', 'Darlington, W. A. (William Aubrey)', '2019-06-18', 54, 'https://www.gutenberg.org/ebooks/59775', 'en', 7087), +(14902, 'With God in the Yellowstone', 'White, Alma', '2012-09-04', 17, 'https://www.gutenberg.org/ebooks/40658', 'en', 2414), +(14903, 'The Corner House Girls Under Canvas\nHow they reached Pleasant Cove and what happened afterward', 'Hill, Grace Brooks', '2012-02-01', 13, 'https://www.gutenberg.org/ebooks/38742', 'en', 3621), +(14904, 'The Great Events by Famous Historians, Volume 17', NULL, '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10128', 'en', 346), +(14905, 'The Rise of the Dutch Republic — Volume 29: 1578, part III', 'Motley, John Lothrop', '2004-01-01', 48, 'https://www.gutenberg.org/ebooks/4831', 'en', 6577), +(14906, 'Seven Graded Sunday Schools: A Series of Practical Papers', NULL, '2010-05-07', 15, 'https://www.gutenberg.org/ebooks/32278', 'en', 7088), +(14907, 'Harpsichords and Clavichords', 'Hoover, Cynthia A. (Cynthia Adams)', '2012-05-13', 11, 'https://www.gutenberg.org/ebooks/39690', 'en', 7089), +(14908, 'Poems of Progress and New Thought Pastels', 'Wilcox, Ella Wheeler', '2002-05-01', 15, 'https://www.gutenberg.org/ebooks/3228', 'en', 178), +(14909, 'Congressional Government: A Study in American Politics', 'Wilson, Woodrow', '2011-04-13', 68, 'https://www.gutenberg.org/ebooks/35861', 'en', 7090), +(14910, 'The Unfolding Destiny of the British Bahá\'í Community : the Messages from the Guardian of the Bahá\'í Faith to the Bahá\'ís of the British Isles', 'Shoghi, Effendi', '2006-09-18', 15, 'https://www.gutenberg.org/ebooks/19297', 'en', 5429), +(14911, 'Scientific American Supplement, No. 315, January 14, 1882', 'Various', '2006-05-08', 17, 'https://www.gutenberg.org/ebooks/18345', 'en', 210), +(14912, 'Father Damien: An Open Letter to the Reverend Dr. Hyde of Honolulu', 'Stevenson, Robert Louis', '1995-06-01', 246, 'https://www.gutenberg.org/ebooks/281', 'en', 7091), +(14913, 'Der Gehülfe', 'Walser, Robert', '2008-12-23', 47, 'https://www.gutenberg.org/ebooks/27598', 'de', 7092), +(14914, 'Hunted Down', 'Dickens, Charles', '2006-01-01', 21, 'https://www.gutenberg.org/ebooks/9712', 'en', 3511), +(14915, 'The Open Library', 'Kahle, Brewster', '2007-12-01', 2, 'https://www.gutenberg.org/ebooks/23904', 'en', 7093), +(14916, 'The American Missionary — Volume 41, No. 03, March, 1887', 'Various', '2015-03-08', 7, 'https://www.gutenberg.org/ebooks/48435', 'en', 395), +(14917, 'Plotinos: Complete Works, v. 4\nIn Chronological Order, Grouped in Four Periods', 'Plotinus', '2013-06-13', 47, 'https://www.gutenberg.org/ebooks/42933', 'en', 5079), +(14918, 'The French Immortals: Quotes and Images, Complete', 'Various', '2009-07-13', 16, 'https://www.gutenberg.org/ebooks/29402', 'en', 2391), +(14919, 'The Feeling', 'Aycock, Roger D.', '2016-03-21', 46, 'https://www.gutenberg.org/ebooks/51518', 'en', 179), +(14920, 'Névtelen vár (1. rész)\nTörténelmi regény', 'Jókai, Mór', '2017-11-17', 1, 'https://www.gutenberg.org/ebooks/55984', 'hu', 5078), +(14921, 'Lucretia — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 26, 'https://www.gutenberg.org/ebooks/7688', 'en', 1079), +(14922, 'The New Abelard: A Romance, Volume 2 (of 3)', 'Buchanan, Robert Williams', '2017-06-06', 7, 'https://www.gutenberg.org/ebooks/54856', 'en', 55), +(14923, 'Diary in America, Series Two', 'Marryat, Frederick', '2007-10-21', 16, 'https://www.gutenberg.org/ebooks/23138', 'en', 5425), +(14924, 'Diana of the Crossways — Volume 5', 'Meredith, George', '2003-09-01', 23, 'https://www.gutenberg.org/ebooks/4469', 'en', 1061), +(14925, 'Gas and Petroleum Engines', 'Graffigny, H. de (Henry)', '2019-04-19', 32, 'https://www.gutenberg.org/ebooks/59311', 'en', 7094), +(14926, 'Elinor Wyllys; Or, The Young Folk of Longbridge: A Tale. Volume 1', 'Cooper, Susan Fenimore', '1999-10-01', 8, 'https://www.gutenberg.org/ebooks/1927', 'en', 7095), +(14927, 'A Dark Chapter from New Zealand History', 'Hawthorne, James', '2018-01-11', 24, 'https://www.gutenberg.org/ebooks/56359', 'en', 7096), +(14928, 'With Botha in the Field', 'Ritchie, Eric Moore', '2005-05-09', 20, 'https://www.gutenberg.org/ebooks/15802', 'en', 449), +(14929, 'Bede\'s Ecclesiastical History of England', 'Bede, the Venerable, Saint', '2011-12-17', 352, 'https://www.gutenberg.org/ebooks/38326', 'en', 7097), +(14930, 'Millennium', 'Cole, Everett B.', '2008-03-08', 50, 'https://www.gutenberg.org/ebooks/24779', 'en', 2797), +(14931, 'The Victim: A Romance of the Real Jefferson Davis', 'Dixon, Thomas, Jr.', '2006-06-30', 42, 'https://www.gutenberg.org/ebooks/18721', 'en', 3175), +(14932, 'Darkness and Dawn; Or, Scenes in the Days of Nero. An Historic Tale', 'Farrar, F. W. (Frederic William)', '2014-12-31', 15, 'https://www.gutenberg.org/ebooks/47825', 'en', 4407), +(14933, 'The Forest', 'White, Stewart Edward', '2005-11-01', 29, 'https://www.gutenberg.org/ebooks/9376', 'en', 3350), +(14934, 'My Lady Selene', 'Ludens, Magnus', '2016-01-11', 21, 'https://www.gutenberg.org/ebooks/50892', 'en', 179), +(14935, 'The Story of the Thirteen Colonies', 'Guerber, H. A. (Hélène Adeline)', '2015-01-23', 49, 'https://www.gutenberg.org/ebooks/48051', 'en', 2649), +(14936, 'Jennie Gerhardt: A Novel', 'Dreiser, Theodore', '2009-05-29', 77, 'https://www.gutenberg.org/ebooks/28988', 'en', 48), +(14937, 'Seppelöity: Murheellinen komedia', 'Siljo, Juhani', '2015-06-09', 24, 'https://www.gutenberg.org/ebooks/49183', 'fi', 382), +(14938, 'A Garden of Peace: A Medley in Quietude', 'Moore, Frank Frankfort', '2016-05-02', 5, 'https://www.gutenberg.org/ebooks/51940', 'en', 7098), +(14939, '\'Jena\' or \'Sedan\'?', 'Beyerlein, Franz Adam', '2010-01-27', 21, 'https://www.gutenberg.org/ebooks/31099', 'en', 803), +(14940, 'Cambridge', 'Tuker, M. A. R. (Mildred Anna Rosalie)', '2014-10-02', 11, 'https://www.gutenberg.org/ebooks/47019', 'en', 7099), +(14941, 'The House by the Church-Yard', 'Le Fanu, Joseph Sheridan', '2006-02-15', 92, 'https://www.gutenberg.org/ebooks/17769', 'en', 7100), +(14942, 'La vie de Rossini, tome I', 'Stendhal', '2010-01-15', 41, 'https://www.gutenberg.org/ebooks/30977', 'fr', 5411), +(14943, 'Harper\'s Young People, August 3, 1880\nAn Illustrated Weekly', 'Various', '2009-06-08', 5, 'https://www.gutenberg.org/ebooks/29066', 'en', 479), +(14944, 'Un coeur simple', 'Flaubert, Gustave', '2008-10-07', 91, 'https://www.gutenberg.org/ebooks/26812', 'fr', 7101), +(14945, 'Canada West', 'Canada. Department of the Interior', '2011-03-01', 3, 'https://www.gutenberg.org/ebooks/35439', 'en', 7102), +(14946, 'Field Trip', 'Hunter, Gene', '2009-11-01', 45, 'https://www.gutenberg.org/ebooks/30379', 'en', 179), +(14947, 'Life of Isaac Mason as a Slave', 'Mason, Isaac', '2015-02-15', 15, 'https://www.gutenberg.org/ebooks/48263', 'en', 56), +(14948, 'Jesus of Nazareth, A Biography, by John Mark', NULL, '2006-06-05', 8, 'https://www.gutenberg.org/ebooks/18513', 'en', 3941), +(14949, 'The Faerie Queene — Volume 01', 'Spenser, Edmund', '2004-11-01', 99, 'https://www.gutenberg.org/ebooks/6930', 'en', 7103), +(14950, 'George Washington\'s Rules of Civility\nTraced to their Sources and Restored by Moncure D. Conway', 'Washington, George', '2004-04-01', 81, 'https://www.gutenberg.org/ebooks/12029', 'en', 788), +(14951, 'Distributive Justice: The Right and Wrong of Our Present Distribution of Wealth', 'Ryan, John A. (John Augustine)', '2013-05-21', 20, 'https://www.gutenberg.org/ebooks/42759', 'en', 7104), +(14952, 'Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 1', 'Stedman, John Gabriel', '2005-05-01', 18, 'https://www.gutenberg.org/ebooks/8096', 'nl', 7105), +(14953, 'The Happy Foreigner', 'Bagnold, Enid', '2006-03-01', 20, 'https://www.gutenberg.org/ebooks/9978', 'en', 579), +(14954, 'Ulysses S. Grant', 'Allen, Walter', '2009-03-22', 21, 'https://www.gutenberg.org/ebooks/28386', 'en', 111), +(14955, 'American Cookery\nThe Art of Dressing Viands, Fish, Poultry, and Vegetables', 'Simmons, Amelia', '2004-07-04', 374, 'https://www.gutenberg.org/ebooks/12815', 'en', 7106), +(14956, 'The Monkey That Would Not Kill', 'Drummond, Henry', '2009-06-27', 38, 'https://www.gutenberg.org/ebooks/29254', 'en', 25), +(14957, 'Igiene dei piaceri secondo le età, i temperamenti e le stagioni', 'Debay, A. (Auguste)', '2005-08-08', 34, 'https://www.gutenberg.org/ebooks/16489', 'it', 1147), +(14958, 'Index of the Project Gutenberg Works of Robert Browning', 'Browning, Robert', '2019-03-25', 9, 'https://www.gutenberg.org/ebooks/59123', 'en', 198), +(14959, 'Boycotted, and Other Stories', 'Reed, Talbot Baines', '2007-04-12', 19, 'https://www.gutenberg.org/ebooks/21039', 'en', 179), +(14960, 'A history of the Irish poor law, in connexion with the condition of the people', 'Nicholls, George, Sir', '2018-04-10', 6, 'https://www.gutenberg.org/ebooks/56957', 'en', 7107), +(14961, 'The Tickencote Treasure', 'Le Queux, William', '2018-09-11', 16, 'https://www.gutenberg.org/ebooks/57885', 'en', 1563), +(14962, 'Personal Recollections of Early Melbourne and Victoria', 'Westgarth, William', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/5789', 'en', 7108), +(14963, 'The Veiled Man\r\nBeing an Account of the Risks and Adventures of Sidi Ahamadou, Sheikh of the Azjar Maraude', 'Le Queux, William', '2012-09-22', 21, 'https://www.gutenberg.org/ebooks/40832', 'en', 267), +(14964, 'Meteorology; or, Weather Explained', 'M\'Pherson, J. G. (John Gordon)', '2012-02-19', 60, 'https://www.gutenberg.org/ebooks/38928', 'en', 7109), +(14965, 'Twenty-Five Ghost Stories', NULL, '2016-10-31', 272, 'https://www.gutenberg.org/ebooks/53419', 'en', 61), +(14966, 'Day of Infamy Speech: Given before the US Congress December 8 1941', 'Roosevelt, Franklin D. (Franklin Delano)', '2007-06-11', 36, 'https://www.gutenberg.org/ebooks/21805', 'en', 7110), +(14967, 'The Great White Queen: A Tale of Treasure and Treason', 'Le Queux, William', '2008-05-17', 15, 'https://www.gutenberg.org/ebooks/25499', 'en', 26), +(14968, 'Beaumarchais and the War of American Independence, Vol. 1', 'Kite, Elizabeth Sarah', '2011-11-09', 10, 'https://www.gutenberg.org/ebooks/37960', 'en', 1008), +(14969, 'A Voyage to Arcturus', 'Lindsay, David', '1998-05-01', 210, 'https://www.gutenberg.org/ebooks/1329', 'en', 26), +(14970, 'Islam, Her Moral And Spiritual Value: A Rational And Pyschological Study', 'Leonard, Arthur Glyn', '2011-11-23', 15, 'https://www.gutenberg.org/ebooks/38114', 'en', 3852), +(14971, 'U.S. Copyright Renewals, 1954 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 608, 'https://www.gutenberg.org/ebooks/11810', 'en', 4170), +(14972, 'Ragnarok : the Age of Fire and Gravel', 'Donnelly, Ignatius', '2004-02-01', 85, 'https://www.gutenberg.org/ebooks/5109', 'en', 7111); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(14973, 'A Christmas Hamper: A Volume of Pictures and Stories for Little Folks', 'Various', '2016-10-17', 56, 'https://www.gutenberg.org/ebooks/53299', 'en', 859), +(14974, 'The Holyhead Road: The Mail-coach Road to Dublin. Vol. 1', 'Harper, Charles G. (Charles George)', '2019-01-11', 8, 'https://www.gutenberg.org/ebooks/58671', 'en', 226), +(14975, 'Shaggycoat: The Biography of a Beaver', 'Hawkes, Clarence', '2012-05-07', 25, 'https://www.gutenberg.org/ebooks/39646', 'en', 7112), +(14976, '花月痕', 'Wei, Zi\'an', '2008-04-28', 17, 'https://www.gutenberg.org/ebooks/25219', 'zh', 1003), +(14977, 'The History of Don Quixote, Volume 2, Part 32', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5935', 'en', 2176), +(14978, 'Pumps and Hydraulics, Part 2 (of 2)', 'Hawkins, N. (Nehemiah)', '2018-08-04', 13, 'https://www.gutenberg.org/ebooks/57639', 'en', 7113), +(14979, 'Punch, or the London Charivari, Vol. 146, March 4th 1914', 'Various', '2012-02-09', 8, 'https://www.gutenberg.org/ebooks/38794', 'en', 134), +(14980, 'Haapakoskelaiset: Romaani Itä-Suomesta', 'Ahrenberg, Jacob', '2006-05-15', 16, 'https://www.gutenberg.org/ebooks/18393', 'fi', 61), +(14981, 'Troilus and Criseyde', 'Chaucer, Geoffrey', '1995-05-01', 195, 'https://www.gutenberg.org/ebooks/257', 'en', 7114), +(14982, 'Irish History and the Irish Question', 'Smith, Goldwin', '2011-01-15', 8, 'https://www.gutenberg.org/ebooks/34965', 'en', 7115), +(14983, 'Bahá\'u\'lláh and the New Era', 'Esslemont, J. E. (John Ebenezer)', '2006-09-15', 34, 'https://www.gutenberg.org/ebooks/19241', 'en', 4457), +(14984, 'The Stark Munro Letters\r\nBeing series of twelve letters written by J. Stark Munro, M.B., to his friend and former fellow-student, Herbert Swanborough, of Lowell, Massachusetts, during the years 1881-1884', 'Doyle, Arthur Conan', '2005-08-01', 0, 'https://www.gutenberg.org/ebooks/8616', 'en', 258), +(14985, 'A Man Obsessed', 'Nourse, Alan Edward', '2015-07-26', 37, 'https://www.gutenberg.org/ebooks/49531', 'en', 26), +(14986, 'Mary Wollstonecraft', 'Pennell, Elizabeth Robins', '2007-09-29', 27, 'https://www.gutenberg.org/ebooks/22800', 'en', 7116), +(14987, 'Our Italy', 'Warner, Charles Dudley', '2009-04-05', 11, 'https://www.gutenberg.org/ebooks/28506', 'en', 7117), +(14988, 'The Man Who Was Good', 'Merrick, Leonard', '2013-09-28', 38, 'https://www.gutenberg.org/ebooks/43837', 'en', 658), +(14989, 'Letters from a Son to His Self-Made Father\r\nBeing the Replies to Letters from a Self-Made Merchant to His Son', 'Merriman, Charles Eustace', '2017-06-10', 7, 'https://www.gutenberg.org/ebooks/54880', 'en', 7118), +(14990, 'The A B C of Drag Hunting', 'Newton, Grace Clarke', '2010-10-29', 15, 'https://www.gutenberg.org/ebooks/34159', 'en', 7119), +(14991, 'Memoirs of the Late War, Vol 1 (of 2)\r\nComprising the Personal Narrative of Captain Cooke, of the 43rd Regiment Light Infantry; the History of the Campaign of 1809 in Portugal, by the Earl of Munster; and a Narrative of the Campaign of 1814 in Holland, by Lieut. T. W. D. Moodie, H. P. 21st Fusileers', 'Munster, George Augustus Frederick FitzClarence, Earl of', '2017-11-13', 24, 'https://www.gutenberg.org/ebooks/55952', 'en', 7120), +(14992, 'My Experiences as an Executioner', 'Berry, James', '2014-08-13', 46, 'https://www.gutenberg.org/ebooks/46579', 'en', 7121), +(14993, 'Lectures on the English Poets; Delivered at the Surrey Institution', 'Hazlitt, William', '2005-07-05', 47, 'https://www.gutenberg.org/ebooks/16209', 'en', 3973), +(14994, 'The Art of War', 'Jomini, Antoine Henri, baron de', '2004-09-28', 120, 'https://www.gutenberg.org/ebooks/13549', 'en', 1359), +(14995, 'L\'Illustration, No. 0051, 17 Février 1844', 'Various', '2013-07-17', 5, 'https://www.gutenberg.org/ebooks/43239', 'fr', 150), +(14996, 'Falling in Love; With Other Essays on More Exact Branches of Science', 'Allen, Grant', '2005-10-07', 145, 'https://www.gutenberg.org/ebooks/16807', 'en', 814), +(14997, 'The Planet Savers', 'Bradley, Marion Zimmer', '2010-03-13', 124, 'https://www.gutenberg.org/ebooks/31619', 'en', 1564), +(14998, 'Mohun; Or, the Last Days of Lee and His Paladins.\r\nFinal Memoirs of a Staff Officer Serving in Virginia. from the Mss. of Colonel Surry, of Eagle\'s Nest.', 'Cooke, John Esten', '2005-07-01', 13, 'https://www.gutenberg.org/ebooks/8424', 'en', 403), +(14999, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 715\nSeptember 8, 1877', 'Various', '2015-08-14', 4, 'https://www.gutenberg.org/ebooks/49703', 'en', 18), +(15000, 'Cocoa and Chocolate: Their History from Plantation to Consumer', 'Knapp, Arthur William', '2006-08-18', 35, 'https://www.gutenberg.org/ebooks/19073', 'en', 7122), +(15001, 'Harper\'s Young People, June 7, 1881\nAn Illustrated Weekly', 'Various', '2014-12-19', 16, 'https://www.gutenberg.org/ebooks/47699', 'en', 479), +(15002, 'Polly of the Circus', 'Mayo, Margaret', '1997-03-01', 26, 'https://www.gutenberg.org/ebooks/859', 'en', 7123), +(15003, 'The Antichrist', 'Nietzsche, Friedrich Wilhelm', '2009-05-01', 30, 'https://www.gutenberg.org/ebooks/28734', 'en', 1759), +(15004, 'The Past Condition of Organic Nature\r\nLecture II. (of VI.), \"Lectures to Working Men\", at the Museum of Practical Geology, 1863, on Darwin\'s Work: \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 14, 'https://www.gutenberg.org/ebooks/2922', 'en', 5473), +(15005, 'The Cruise of the \"Esmeralda\"', 'Collingwood, Harry', '2008-06-17', 33, 'https://www.gutenberg.org/ebooks/25817', 'en', 2322), +(15006, 'The Geologic Story of Palo Duro Canyon', 'Matthews, William Henry', '2016-05-28', 14, 'https://www.gutenberg.org/ebooks/52179', 'en', 7124), +(15007, 'The Lion of Poland: The Story of Paderewski', 'Hume, Paul', '2019-05-24', 37, 'https://www.gutenberg.org/ebooks/59591', 'en', 7125), +(15008, 'Grania, The Story of an Island (Complete)', 'Lawless, Emily', '2018-12-09', 14, 'https://www.gutenberg.org/ebooks/58443', 'en', 669), +(15009, 'Florida: An Ideal Cattle State', 'Florida State Live Stock Association', '2010-09-24', 14, 'https://www.gutenberg.org/ebooks/33972', 'en', 7126), +(15010, 'R. Holmes & Co.\r\nBeing the Remarkable Adventures of Raffles Holmes, Esq., Detective and Amateur Cracksman by Birth', 'Bangs, John Kendrick', '2007-02-11', 55, 'https://www.gutenberg.org/ebooks/20559', 'en', 177), +(15011, 'From Egypt to Japan', 'Field, Henry M. (Henry Martyn)', '2012-04-18', 18, 'https://www.gutenberg.org/ebooks/39474', 'en', 885), +(15012, 'Reformed Logic\nA System Based on Berkeley\'s Philosophy with an Entirely New Method of Dialectic', 'McLachlan, D. B.', '2016-08-31', 13, 'https://www.gutenberg.org/ebooks/52945', 'en', 4797), +(15013, 'Trails of the Pathfinders', 'Grinnell, George Bird', '2017-01-05', 24, 'https://www.gutenberg.org/ebooks/53897', 'en', 12), +(15014, 'The Evolutionist at Large', 'Allen, Grant', '2014-02-01', 22, 'https://www.gutenberg.org/ebooks/44820', 'en', 871), +(15015, 'The Bible, King James version, Book 40: Matthew', 'Anonymous', '2005-04-01', 28, 'https://www.gutenberg.org/ebooks/8040', 'en', 228), +(15016, 'Os Cataventos', 'Rocha Peixoto', '2015-07-05', 16, 'https://www.gutenberg.org/ebooks/49367', 'pt', 7127), +(15017, 'Wagner\'s \"Tristan und Isolde\": An Essay on the Wagnerian Drama', 'Hight, George Ainslie', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/7834', 'en', 7128), +(15018, 'Chambers\'s Edinburgh Journal, No. 434\nVolume 17, New Series, April 24, 1852', 'Various', '2006-10-01', 5, 'https://www.gutenberg.org/ebooks/19417', 'en', 18), +(15019, 'The Genetic Effects of Radiation', 'Dobzhansky, Theodosius', '2017-10-13', 83, 'https://www.gutenberg.org/ebooks/55738', 'en', 7129), +(15020, 'Pung Chow\r\nThe Game of a Hundred Intelligences. Also known as Mah-Diao, Mah-Jong, Mah-Cheuk, Mah-Juck and Pe-Ling', 'Harr, Lew Lysle', '2008-11-23', 13, 'https://www.gutenberg.org/ebooks/27318', 'en', 7130), +(15021, 'Blix', 'Norris, Frank', '1996-01-01', 63, 'https://www.gutenberg.org/ebooks/401', 'en', 7131), +(15022, 'The Channings: A Story', 'Wood, Henry, Mrs.', '2005-10-01', 28, 'https://www.gutenberg.org/ebooks/9192', 'en', 401), +(15023, 'Growing up on Big Muddy', 'De Vet, Charles V.', '2016-03-08', 36, 'https://www.gutenberg.org/ebooks/51398', 'en', 7132), +(15024, 'Un philosophe sous les toits', 'Souvestre, Émile', '2009-07-01', 7, 'https://www.gutenberg.org/ebooks/29282', 'fr', 560), +(15025, 'The City of Fire', 'Hill, Grace Livingston', '2004-12-01', 60, 'https://www.gutenberg.org/ebooks/7008', 'en', 1397), +(15026, 'Little Journeys to the Homes of the Great - Volume 03\r\nLittle Journeys to the Homes of American Statesmen', 'Hubbard, Elbert', '2004-10-31', 29, 'https://www.gutenberg.org/ebooks/13911', 'en', 7133), +(15027, 'Lives of the Presidents Told in Words of One Syllable', 'Remy, Jean S.', '2009-03-18', 20, 'https://www.gutenberg.org/ebooks/28350', 'en', 1009), +(15028, 'The Sentence and Affidavit of John Church, the Obelisk Preacher\r\nFor an Attempt to Commit an Unnatural Crime on Adam Foreman, at Vauxhall. Together With Judge Bayley\'s Impressive Address to the Prisoner, at Full Length. At the Court of King\'s Bench, Nov. 24, 1817.', 'Dowling, Joseph Augustus', '2018-10-05', 5, 'https://www.gutenberg.org/ebooks/58027', 'en', 7134), +(15029, 'El préstamo de la difunta', 'Blasco Ibáñez, Vicente', '2004-12-09', 39, 'https://www.gutenberg.org/ebooks/14308', 'es', 61), +(15030, 'Erinnerungen einer Überflüssigen', 'Christ, Lena', '2018-09-06', 8, 'https://www.gutenberg.org/ebooks/57853', 'de', 549), +(15031, 'The Dare Boys in Virginia', 'Cox, Stephen Angus', '2013-12-21', 14, 'https://www.gutenberg.org/ebooks/44478', 'en', 2843), +(15032, 'Histoire des Gaulois (1/3)\r\ndepuis les temps les plus reculés jusqu\'à l\'entière soumission de la Gaule à la domination romaine.', 'Thierry, Amédée', '2011-05-08', 11, 'https://www.gutenberg.org/ebooks/36058', 'fr', 7135), +(15033, 'Erzgebirgisches Wanderbuch\r\n148 Ausflüge und Wanderungen in die Umgebung von Chemnitz und das Erzgebirge', 'Wenzel, Max', '2018-04-15', 10, 'https://www.gutenberg.org/ebooks/56981', 'de', 5250), +(15034, 'Principles of Political Economy', 'Perry, Arthur Latham', '2013-01-28', 17, 'https://www.gutenberg.org/ebooks/41936', 'en', 1745), +(15035, 'In Apple-Blossom Time: A Fairy-Tale to Date', 'Burnham, Clara Louise', '2007-03-25', 22, 'https://www.gutenberg.org/ebooks/20901', 'en', 61), +(15036, 'School Reading by Grades: Sixth Year', 'Baldwin, James', '2011-07-26', 44, 'https://www.gutenberg.org/ebooks/36864', 'en', 1019), +(15037, 'An Historical View of the Philippine Islands, Vol 1 (of 2)\r\nExhibiting their discovery, population, language, government, manners, customs, productions and commerce.', 'Martínez de Zúñiga, Joaquín', '2012-02-29', 16, 'https://www.gutenberg.org/ebooks/39010', 'en', 7136), +(15038, 'Der Mensch der Zukunft', 'Bölsche, Wilhelm', '2018-10-31', 23, 'https://www.gutenberg.org/ebooks/58215', 'de', 2159), +(15039, 'Die Judenbuche', 'Droste-Hülshoff, Annette von', '2014-05-28', 69, 'https://www.gutenberg.org/ebooks/45798', 'de', 1335), +(15040, 'Songs, Sonnets & Miscellaneous Poems', 'Runciman, Thomas', '2005-02-04', 7, 'https://www.gutenberg.org/ebooks/14906', 'en', 8), +(15041, 'Reminiscences of service with the Twelfth Rhode Island Volunteers, and a memorial of Col. George H. Browne', 'Tillinghast, Pardon Elisha', '2010-09-13', 8, 'https://www.gutenberg.org/ebooks/33718', 'en', 7137), +(15042, 'The Memoirs of an American Citizen', 'Herrick, Robert', '2012-11-10', 16, 'https://www.gutenberg.org/ebooks/41338', 'en', 4999), +(15043, 'An Annotated Check List of the Mammals of Michoacán, México', 'Hall, E. Raymond (Eugene Raymond)', '2012-03-22', 7, 'https://www.gutenberg.org/ebooks/39222', 'en', 7138), +(15044, 'Cicero', 'Collins, W. Lucas (William Lucas)', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/11448', 'en', 7139), +(15045, 'Aesop\'s Fables - Volume 10', 'Aesop', '2006-10-26', 4, 'https://www.gutenberg.org/ebooks/19625', 'en', 7140), +(15046, 'The Thoughts of Blaise Pascal', 'Pascal, Blaise', '2014-09-21', 93, 'https://www.gutenberg.org/ebooks/46921', 'en', 7141), +(15047, 'My Pretty Maid; or, Liane Lester', 'Miller, Alex. McVeigh, Mrs.', '2016-05-04', 6, 'https://www.gutenberg.org/ebooks/51996', 'en', 7142), +(15048, 'The World English Bible (WEB): Romans', 'Anonymous', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8272', 'en', 4669), +(15049, 'Marion Harland\'s Cookery for Beginners\nA Series of Familiar Lessons for Young Housekeepers', 'Harland, Marion', '2015-06-07', 35, 'https://www.gutenberg.org/ebooks/49155', 'en', 103), +(15050, 'Nancy Pembroke in Nova Scotia', 'Van Epps, Margaret T.', '2015-01-26', 15, 'https://www.gutenberg.org/ebooks/48087', 'en', 7143), +(15051, 'Proof of the Pudding', 'Sheckley, Robert', '2016-01-04', 109, 'https://www.gutenberg.org/ebooks/50844', 'en', 179), +(15052, 'Derues\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 49, 'https://www.gutenberg.org/ebooks/2748', 'en', 5050), +(15053, 'The Golden Mean or Ratio[(1+sqrt(5))/2]\r\nTo 20,000 places', NULL, '1996-08-01', 53, 'https://www.gutenberg.org/ebooks/633', 'en', 7144), +(15054, 'Henry of Ofterdingen: A Romance.', 'Novalis', '2010-04-03', 159, 'https://www.gutenberg.org/ebooks/31873', 'en', 1080), +(15055, 'The Swedish Revolution Under Gustavus Vasa', 'Watson, Paul Barron', '2007-08-30', 12, 'https://www.gutenberg.org/ebooks/22458', 'en', 7145), +(15056, 'Birds and Nature, Vol. 10 No. 1 [June 1901]', 'Various', '2015-09-14', 6, 'https://www.gutenberg.org/ebooks/49969', 'en', 1584), +(15057, 'The Invader: A Novel', 'Woods, Margaret L. (Margaret Louisa)', '2009-02-23', 18, 'https://www.gutenberg.org/ebooks/28162', 'en', 4351), +(15058, 'The Forlorn Hope: A Tale of Old Chelsea', 'Hall, S. C., Mrs.', '2015-09-29', 9, 'https://www.gutenberg.org/ebooks/50078', 'en', 7146), +(15059, 'Gabriel and the Hour Book', 'Stein, Evaleen', '2009-01-28', 26, 'https://www.gutenberg.org/ebooks/27916', 'en', 7147), +(15060, 'Waterloo: A sequel to The Conscript of 1813', 'Erckmann-Chatrian', '2010-02-15', 26, 'https://www.gutenberg.org/ebooks/31289', 'en', 7148), +(15061, 'A History, of the War of 1812-15 Between the United States and Great Britain', 'Johnson, Rossiter', '2015-07-04', 10, 'https://www.gutenberg.org/ebooks/49393', 'en', 7149), +(15062, 'Timothy\'s Quest\nA Story for Anybody, Young or Old, Who Cares to Read It', 'Wiggin, Kate Douglas Smith', '2006-06-07', 16, 'https://www.gutenberg.org/ebooks/18531', 'en', 751), +(15063, 'School and Home Cooking', 'Greer, Carlotta C. (Carlotta Cherryholmes)', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/6912', 'en', 103), +(15064, 'An American Religious Movement : A Brief History of the Disciples of Christ', 'Garrison, Winfred Ernest', '2015-02-11', 9, 'https://www.gutenberg.org/ebooks/48241', 'en', 7150), +(15065, 'The Three Cities Trilogy: Paris, Volume 3', 'Zola, Émile', '2005-10-01', 5, 'https://www.gutenberg.org/ebooks/9166', 'en', 560), +(15066, 'The Wept of Wish-Ton-Wish', 'Cooper, James Fenimore', '2005-09-01', 46, 'https://www.gutenberg.org/ebooks/8888', 'en', 98), +(15067, 'Morals in Trade and Commerce', 'Anderson, Frank B.', '2009-06-30', 20, 'https://www.gutenberg.org/ebooks/29276', 'en', 7151), +(15068, 'Cora', 'Sand, George', '2004-07-07', 23, 'https://www.gutenberg.org/ebooks/12837', 'fr', 298), +(15069, 'A Philosophical Dictionary, Volume 09', 'Voltaire', '2011-03-28', 35, 'https://www.gutenberg.org/ebooks/35629', 'en', 7152), +(15070, 'Hours of Exercise in the Alps', 'Tyndall, John', '2014-10-27', 11, 'https://www.gutenberg.org/ebooks/47209', 'en', 3982), +(15071, 'The History of Napoleon Buonaparte', 'Lockhart, J. G. (John Gibson)', '2006-01-23', 59, 'https://www.gutenberg.org/ebooks/17579', 'en', 840), +(15072, 'Maximina', 'Palacio Valdés, Armando', '2012-09-20', 59, 'https://www.gutenberg.org/ebooks/40810', 'es', 1696), +(15073, 'Thoth: A Romance', 'Nicholson, J. Shield (Joseph Shield)', '2018-04-13', 7, 'https://www.gutenberg.org/ebooks/56975', 'en', 137), +(15074, 'Johnson\'s Lives of the Poets — Volume 1', 'Johnson, Samuel', '2003-11-01', 48, 'https://www.gutenberg.org/ebooks/4679', 'en', 7153), +(15075, 'The Printer in Eighteenth-Century Williamsburg\r\nAn Account of His Life & Times, & of His Craft', 'Rouse, Parke', '2019-03-19', 10, 'https://www.gutenberg.org/ebooks/59101', 'en', 7154), +(15076, 'The Life of Thomas Wanless, Peasant', 'Wilson, A. J. (Alexander Johnstone)', '2011-11-25', 15, 'https://www.gutenberg.org/ebooks/38136', 'en', 7155), +(15077, 'A Tale of the Kloster: A Romance of the German Mystics of the Cocalico', 'Koons, Ulysses Sidney', '2011-11-06', 88, 'https://www.gutenberg.org/ebooks/37942', 'en', 7156), +(15078, 'A Treasury of Eskimo Tales', 'Bayliss, Clara Kern', '2008-02-11', 49, 'https://www.gutenberg.org/ebooks/24569', 'en', 6134), +(15079, 'The English Church in the Middle Ages', 'Hunt, William', '2011-07-30', 12, 'https://www.gutenberg.org/ebooks/36890', 'en', 7157), +(15080, 'A rebours', 'Huysmans, J.-K. (Joris-Karl)', '2017-12-08', 131, 'https://www.gutenberg.org/ebooks/56149', 'fr', 7158), +(15081, 'M. Fabi Quintiliani institutionis oratoriae liber decimus', 'Quintilianus, Marcus Fabius', '2007-06-14', 71, 'https://www.gutenberg.org/ebooks/21827', 'la', 3906), +(15082, 'The Story of My Life — Complete', 'Ebers, Georg', '2004-11-15', 32, 'https://www.gutenberg.org/ebooks/5599', 'en', 7159), +(15083, 'The Governess; Or, The Little Female Academy', 'Fielding, Sarah', '1999-09-01', 39, 'https://www.gutenberg.org/ebooks/1905', 'en', 7160), +(15084, 'The Life of Josiah Henson, Formerly a Slave, Now an Inhabitant of Canada', 'Henson, Josiah', '2016-11-26', 35, 'https://www.gutenberg.org/ebooks/53609', 'en', 7161), +(15085, 'Thistle and Rose: A Story for Girls', 'Walton, Amy', '2007-04-27', 24, 'https://www.gutenberg.org/ebooks/21229', 'en', 7162), +(15086, 'Harold\'s Bride: A Tale', 'A. L. O. E.', '2019-04-22', 60, 'https://www.gutenberg.org/ebooks/59333', 'en', 7163), +(15087, 'Fisherman\'s Luck and Some Other Uncertain Things', 'Van Dyke, Henry', '1997-12-01', 20, 'https://www.gutenberg.org/ebooks/1139', 'en', 1945), +(15088, 'Encyclopaedia Britannica, 11th Edition, \"Groups, Theory of\" to \"Gwyniad\"\r\nVolume 12, Slice 6', 'Various', '2011-12-14', 25, 'https://www.gutenberg.org/ebooks/38304', 'en', 1081), +(15089, 'A Book for the Young', 'French, Sarah', '2005-05-12', 4, 'https://www.gutenberg.org/ebooks/15820', 'en', 179), +(15090, 'The Secret Witness', 'Gibbs, George', '2008-06-03', 30, 'https://www.gutenberg.org/ebooks/25689', 'en', 579), +(15091, 'Dead Men\'s Money', 'Fletcher, J. S. (Joseph Smith)', '2004-05-01', 174, 'https://www.gutenberg.org/ebooks/12239', 'en', 128), +(15092, 'The World English Bible (WEB): James', 'Anonymous', '2005-06-01', 17, 'https://www.gutenberg.org/ebooks/8286', 'en', 7164), +(15093, 'Bill Nye\'s Sparks', 'Nye, Bill', '2016-05-02', 2, 'https://www.gutenberg.org/ebooks/51962', 'en', 190), +(15094, 'Indoor and Outdoor Recreations for Girls', 'Beard, Adelia B. (Adelia Belle)', '2013-04-16', 45, 'https://www.gutenberg.org/ebooks/42549', 'en', 1560), +(15095, 'The History of Woman Suffrage, Volume V', NULL, '2009-08-31', 24, 'https://www.gutenberg.org/ebooks/29878', 'en', 7165), +(15096, 'Ansgario', 'Anonymous', '2015-01-25', 4, 'https://www.gutenberg.org/ebooks/48073', 'fi', 7166), +(15097, 'Tales of Unrest', 'Conrad, Joseph', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9354', 'en', 2809), +(15098, 'The Story of the White Mouse', 'Unknown', '2009-10-03', 33, 'https://www.gutenberg.org/ebooks/30169', 'en', 388), +(15099, 'Herraskartano: Romaani', 'Galsworthy, John', '2014-12-29', 26, 'https://www.gutenberg.org/ebooks/47807', 'fi', 432), +(15100, 'Illustrated Catalogue of the Collections Obtained from the Indians of New Mexico in 1880\r\nSecond Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1880-81, Government Printing Office, Washington, 1883, pages 429-466', 'Stevenson, James', '2006-06-27', 4, 'https://www.gutenberg.org/ebooks/18703', 'en', 1670), +(15101, 'The Old Helmet, Volume II', 'Warner, Susan', '2008-10-07', 14, 'https://www.gutenberg.org/ebooks/26830', 'en', 4927), +(15102, 'Glen of the High North', 'Cody, H. A. (Hiram Alfred)', '2005-09-15', 8, 'https://www.gutenberg.org/ebooks/16699', 'en', 535), +(15103, 'Our Battery; Or, The Journal of Company B, 1st O.V.A.', 'Cutter, O. P. (Orlando Phelps)', '2010-04-05', 13, 'https://www.gutenberg.org/ebooks/31887', 'en', 1489), +(15104, 'Een Meisje-Studentje', 'Salomons, Annie', '2009-06-05', 10, 'https://www.gutenberg.org/ebooks/29044', 'nl', 7167), +(15105, 'Harper\'s Young People, November 18, 1879\nAn Illustrated Weekly', 'Various', '2009-02-26', 9, 'https://www.gutenberg.org/ebooks/28196', 'en', 479), +(15106, 'The Princess Idleways: A Fairy Story', 'Hays, Helen Ashe', '2010-01-13', 72, 'https://www.gutenberg.org/ebooks/30955', 'en', 1007), +(15107, 'New York Times Current History: The European War, Vol 2, No. 1, April, 1915\nApril-September, 1915', 'Various', '2005-03-27', 29, 'https://www.gutenberg.org/ebooks/15478', 'en', 335), +(15108, 'James Lusk: Letters & Memories', 'Lusk, James', '2019-06-15', 14, 'https://www.gutenberg.org/ebooks/59757', 'en', 7168), +(15109, 'The Adventure Girls in the Air', 'Blank, Clair', '2014-04-02', 16, 'https://www.gutenberg.org/ebooks/45308', 'en', 323), +(15110, 'The Girl Aviators\' Motor Butterfly', 'Burnham, Margaret', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/10936', 'en', 2279), +(15111, 'South and South Central Africa\nA record of fifteen years\' missionary labors among primitive peoples', 'Davidson, Hannah Frances', '2011-10-11', 14, 'https://www.gutenberg.org/ebooks/37728', 'en', 7169), +(15112, 'The privilege of pain', 'Everett, Leo, Mrs.', '2019-01-13', 9, 'https://www.gutenberg.org/ebooks/58685', 'en', 7170), +(15113, 'The Rise of the Dutch Republic — Volume 12: 1567, part I', 'Motley, John Lothrop', '2004-11-07', 35, 'https://www.gutenberg.org/ebooks/4813', 'en', 3372), +(15114, 'Raison et sensibilité, ou les deux manières d\'aimer (Tome 1)', 'Austen, Jane', '2010-08-09', 49, 'https://www.gutenberg.org/ebooks/33388', 'fr', 7171), +(15115, 'L\'Illustration, No. 3664, 17 Mai 1913', 'Various', '2012-02-04', 4, 'https://www.gutenberg.org/ebooks/38760', 'fr', 150), +(15116, 'Pennsylvania Dutch: A Dialect of South German With an Infusion of English', 'Haldeman, Samuel Stehman', '2015-03-05', 17, 'https://www.gutenberg.org/ebooks/48417', 'en', 7172), +(15117, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, No. 06, April 1878\r\nScribner\'s Illustrated', 'Various', '2007-12-19', 22, 'https://www.gutenberg.org/ebooks/23926', 'en', 563), +(15118, 'The Pickwick Papers', 'Dickens, Charles', '2006-01-01', 84, 'https://www.gutenberg.org/ebooks/9730', 'en', 45), +(15119, 'The Romany Rye\nA sequel to \"Lavengro\"', 'Borrow, George', '2017-01-24', 14, 'https://www.gutenberg.org/ebooks/54048', 'en', 3294), +(15120, 'Childéric, Roi des Francs, (tome premier)', 'Beaufort d’Hautpoul, Anne Marie, comtesse de', '2011-01-17', 16, 'https://www.gutenberg.org/ebooks/34991', 'fr', 7173), +(15121, 'Contes, Tome I', 'Aulnoy, Madame d\' (Marie-Catherine)', '2006-05-10', 49, 'https://www.gutenberg.org/ebooks/18367', 'fr', 7174), +(15122, 'The New Gresham Encyclopedia. Deposition to Eberswalde\r\nVolume 4, Part 1', 'Various', '2011-04-12', 33, 'https://www.gutenberg.org/ebooks/35843', 'en', 1081), +(15123, 'The Middle Temple Murder', 'Fletcher, J. S. (Joseph Smith)', '2008-09-01', 35, 'https://www.gutenberg.org/ebooks/26468', 'en', 128), +(15124, 'Lullaby-Land: Songs of Childhood', 'Field, Eugene', '2017-06-09', 40, 'https://www.gutenberg.org/ebooks/54874', 'en', 1209), +(15125, 'History of the Revolt of the Netherlands — Volume 03', 'Schiller, Friedrich', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6778', 'en', 7175), +(15126, 'American Rural Highways', 'Agg, T. R. (Thomas Radford)', '2009-07-16', 28, 'https://www.gutenberg.org/ebooks/29420', 'en', 5809), +(15127, 'Variations Chromatiques de Concert\nMP3, MIDI and PDF files', 'Bizet, Georges', '2013-06-11', 48, 'https://www.gutenberg.org/ebooks/42911', 'en', 7176), +(15128, 'Toinen lukukirja kansakoulujen tarpeiksi', NULL, '2009-01-12', 3, 'https://www.gutenberg.org/ebooks/27788', 'fi', 7177), +(15129, 'The Story of the Three Little Pigs', 'Brooke, L. Leslie (Leonard Leslie)', '2006-04-11', 259, 'https://www.gutenberg.org/ebooks/18155', 'en', 1007), +(15130, 'Il Professore Romualdo', 'Castelnuovo, Enrico', '2015-04-03', 6, 'https://www.gutenberg.org/ebooks/48625', 'it', 860), +(15131, 'The Room in the Dragon Volant', 'Le Fanu, Joseph Sheridan', '2005-12-01', 35, 'https://www.gutenberg.org/ebooks/9502', 'en', 461), +(15132, 'Manual of Surgery Volume First: General Surgery. Sixth Edition.', 'Miles, Alexander', '2006-03-04', 85, 'https://www.gutenberg.org/ebooks/17921', 'en', 4470), +(15133, 'The Armies of Labor: A Chronicle of the Organized Wage-Earners', 'Orth, Samuel Peter', '2002-01-01', 36, 'https://www.gutenberg.org/ebooks/3038', 'en', 7178), +(15134, 'The King Nobody Wanted', 'Langford, Norman F.', '2006-08-20', 43, 'https://www.gutenberg.org/ebooks/19087', 'en', 7179), +(15135, 'Platform Monologues', 'Tucker, T. G. (Thomas George)', '2006-08-02', 16, 'https://www.gutenberg.org/ebooks/18969', 'en', 2156), +(15136, 'Esmeralda', 'Burnett, Frances Hodgson', '2007-11-04', 25, 'https://www.gutenberg.org/ebooks/23328', 'en', 797), +(15137, 'Pierre and Jean', 'Maupassant, Guy de', '2006-04-13', 70, 'https://www.gutenberg.org/ebooks/3804', 'en', 4), +(15138, 'Tolstoi for the young: Select tales from Tolstoi', 'Tolstoy, Leo, graf', '2016-04-09', 32, 'https://www.gutenberg.org/ebooks/51708', 'en', 388), +(15139, 'Treatise on the Diseases of Women', 'Pinkham, Lydia Estes', '2009-08-05', 26, 'https://www.gutenberg.org/ebooks/29612', 'en', 3721), +(15140, 'Five Little Peppers Grown Up', 'Sidney, Margaret', '2005-02-01', 54, 'https://www.gutenberg.org/ebooks/7498', 'en', 3621), +(15141, 'Me: A Book of Remembrance', 'Eaton, Winnifred', '2019-05-21', 48, 'https://www.gutenberg.org/ebooks/59565', 'en', 7180), +(15142, 'Arsène Lupin, gentleman-cambrioleur', 'Leblanc, Maurice', '2010-06-17', 141, 'https://www.gutenberg.org/ebooks/32854', 'fr', 4343), +(15143, 'Making Both Ends Meet: The income and outlay of New York working girls', 'Clark, Sue Ainslie', '2005-01-25', 18, 'https://www.gutenberg.org/ebooks/14798', 'en', 7181), +(15144, 'Comic Tragedies\nWritten by \'Jo\' and \'Meg\' and Acted by The \'Little Women\'', 'Pratt, Anna Bronson Alcott', '2010-09-24', 48, 'https://www.gutenberg.org/ebooks/33986', 'en', 7182), +(15145, 'Elements of Agricultural Chemistry', 'Anderson, Thomas', '2008-03-28', 54, 'https://www.gutenberg.org/ebooks/24931', 'en', 7183), +(15146, 'Storia d\'Italia dal 1789 al 1814, tomo VI', 'Botta, Carlo', '2014-06-06', 19, 'https://www.gutenberg.org/ebooks/45906', 'it', 7184), +(15147, 'World of the Drone', 'Abernathy, Robert', '2010-04-20', 30, 'https://www.gutenberg.org/ebooks/32068', 'en', 26), +(15148, 'Das Nationaltheater des Neuen Deutschlands. Eine Reformschrift', 'Devrient, Eduard', '2012-04-19', 4, 'https://www.gutenberg.org/ebooks/39480', 'de', 7185), +(15149, 'Select List of Books ... Relating to the Far East', NULL, '2012-01-11', 7, 'https://www.gutenberg.org/ebooks/38552', 'en', 7186), +(15150, 'A Special Mortality among Infants at Loughton, in the Epping Rural Sanitary District', 'Power, William Henry, Sir', '2017-01-01', 4, 'https://www.gutenberg.org/ebooks/53863', 'en', 7187), +(15151, 'The Child\'s Book of the Seasons', 'Ransome, Arthur', '2012-08-08', 51, 'https://www.gutenberg.org/ebooks/40448', 'en', 7188), +(15152, 'With the Turks in Palestine', 'Aaronsohn, Alexander', '2003-11-01', 94, 'https://www.gutenberg.org/ebooks/10338', 'en', 449), +(15153, 'Mightier than the Sword', 'Courlander, Alphonse', '2017-09-13', 10, 'https://www.gutenberg.org/ebooks/55535', 'en', 560), +(15154, 'A Little Girl in Old San Francisco', 'Douglas, Amanda M.', '2013-04-22', 18, 'https://www.gutenberg.org/ebooks/42582', 'en', 7189), +(15155, 'Philosophie de la Liberté (Tome I)\r\nCours de philosophie morale', 'Secrétan, Charles', '2010-01-25', 16, 'https://www.gutenberg.org/ebooks/31070', 'fr', 7190), +(15156, 'Cabbages and Kings', 'Henry, O.', '2001-08-01', 250, 'https://www.gutenberg.org/ebooks/2777', 'en', 2999), +(15157, 'The Settler', 'Whitaker, Herman', '2013-09-14', 16, 'https://www.gutenberg.org/ebooks/43450', 'en', 1358), +(15158, 'Cuore (Heart): An Italian Schoolboy\'s Journal', 'De Amicis, Edmondo', '2009-05-24', 146, 'https://www.gutenberg.org/ebooks/28961', 'en', 5227), +(15159, 'Juan Masili o Ang pinuno ng tulisan', 'Mariano, Patricio', '2004-08-29', 14, 'https://www.gutenberg.org/ebooks/13320', 'tl', 48), +(15160, 'The Cattle-Baron\'s Daughter', 'Bindloss, Harold', '2008-11-01', 46, 'https://www.gutenberg.org/ebooks/27115', 'en', 315), +(15161, 'The Story of the Pullman Car', 'Husband, Joseph', '2014-06-28', 12, 'https://www.gutenberg.org/ebooks/46122', 'en', 7191), +(15162, 'Also sprach Zarathustra: Ein Buch für Alle und Keinen', 'Nietzsche, Friedrich Wilhelm', '2005-01-01', 609, 'https://www.gutenberg.org/ebooks/7205', 'de', 7192), +(15163, 'Sand Doom', 'Leinster, Murray', '2007-08-31', 41, 'https://www.gutenberg.org/ebooks/22467', 'en', 26), +(15164, 'The Cretan Insurrection of 1866-7-8', 'Stillman, William James', '2015-09-13', 9, 'https://www.gutenberg.org/ebooks/49956', 'en', 7193), +(15165, 'Camp, Court and Siege\r\nA Narrative of Personal Adventure and Observation During Two Wars: 1861-1865; 1870-1871', 'Hoffman, Wickham', '2016-02-13', 10, 'https://www.gutenberg.org/ebooks/51195', 'en', 7194), +(15166, 'Yrjänä Kailanen ja hänen poikansa\r\nKuvauksia Ruotsin suomalaisten elämästä ja eränkäynnistä Wermlannin ja Taalain metsäseuduilla', 'Schröder, Gustaf', '2005-09-05', 10, 'https://www.gutenberg.org/ebooks/16652', 'fi', 2168), +(15167, 'Scenes of Clerical Life', 'Eliot, George', '2006-02-16', 101, 'https://www.gutenberg.org/ebooks/17780', 'en', 45), +(15168, 'The Old Sixth Regiment, Its War Record, 1861-5', 'Cadwell, Charles K.', '2015-09-23', 10, 'https://www.gutenberg.org/ebooks/50047', 'en', 7195), +(15169, 'Love in a Mask; Or, Imprudence and Happiness', 'Balzac, Honoré de', '2015-05-09', 18, 'https://www.gutenberg.org/ebooks/48884', 'en', 58), +(15170, 'Charles Lyell and Modern Geology', 'Bonney, T. G. (Thomas George)', '2010-11-29', 28, 'https://www.gutenberg.org/ebooks/34502', 'en', 7196), +(15171, 'The Lady of Loyalty House: A Novel', 'McCarthy, Justin H. (Justin Huntly)', '2009-01-29', 26, 'https://www.gutenberg.org/ebooks/27929', 'en', 323), +(15172, 'Histoire du Consulat et de l\'Empire, (Vol. 07 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2014-01-15', 11, 'https://www.gutenberg.org/ebooks/44675', 'fr', 2051), +(15173, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 01', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5552', 'en', 5290), +(15174, 'Letters to Severall Persons of Honour', 'Donne, John', '2011-09-11', 22, 'https://www.gutenberg.org/ebooks/37387', 'en', 7197), +(15175, 'The Black Wolf\'s Breed\r\nA Story of France in the Old World and the New, happening in the Reign of Louis XIV', 'Dickson, Harris', '2007-01-11', 9, 'https://www.gutenberg.org/ebooks/20330', 'en', 1127), +(15176, 'Im grünen Tann', 'Achleitner, Arthur', '2004-11-20', 31, 'https://www.gutenberg.org/ebooks/14105', 'de', 179), +(15177, 'Räfskinnet: Berättelse från trettioåriga kriget', 'Åberg, J. O. (Johan Olof)', '2016-08-03', 10, 'https://www.gutenberg.org/ebooks/52710', 'sv', 98), +(15178, 'Lord Ormont and His Aminta — Volume 4', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4480', 'en', 137), +(15179, 'The Corner House Girls\' Odd Find\nWhere they made it, and What the Strange Discovery led to', 'Hill, Grace Brooks', '2011-05-29', 17, 'https://www.gutenberg.org/ebooks/36255', 'en', 1625), +(15180, 'Early English Meals and Manners', NULL, '2008-03-09', 115, 'https://www.gutenberg.org/ebooks/24790', 'en', 788), +(15181, 'Diane de Lancy; Les pretendus de la meunière', 'Ponson du Terrail', '2018-06-03', 5, 'https://www.gutenberg.org/ebooks/57262', 'fr', 298), +(15182, 'Punch, or the London Charivari, Volume 1, December 4, 1841', 'Various', '2005-02-07', 11, 'https://www.gutenberg.org/ebooks/14939', 'en', 134), +(15183, 'Creative Intelligence: Essays in the Pragmatic Attitude', 'Kallen, Horace Meyer', '2010-09-14', 107, 'https://www.gutenberg.org/ebooks/33727', 'en', 779), +(15184, 'Nous marions Virginie', 'Chavette, Eugène', '2012-11-06', 11, 'https://www.gutenberg.org/ebooks/41307', 'fr', 61), +(15185, 'Family Cares\nDeep Waters, Part 7.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11477', 'en', 72), +(15186, 'Historic Tales: The Romance of Reality. Vol. 10 (of 15), Greek', 'Morris, Charles', '2008-05-29', 23, 'https://www.gutenberg.org/ebooks/25642', 'en', 6424), +(15187, 'The International Monthly Magazine - Volume V - No II', 'Various', '2006-12-13', 12, 'https://www.gutenberg.org/ebooks/20102', 'en', 162), +(15188, 'The Rod in Pickle; or, An Answer to the Appeal of John Church, the Obelisk Preacher\r\nContaining an Authentic Narrative of the Cause of His Leaving Banbury, in Oxfordshire: Together With the Charges Exhibited Against Him, the Meeting of His Friends in Consequence of Those Charges, and the Result of That Meeting. To Which Are Added, His Letters, Written to the Managers of the Banbury Meeting-House, Begging Them Not to Let the Cause of His Dismissal Be Known in London.', 'Latham, T.', '2018-10-03', 3, 'https://www.gutenberg.org/ebooks/58018', 'en', 7198), +(15189, 'Jaana Rönty', 'Leino, Eino', '2004-12-13', 19, 'https://www.gutenberg.org/ebooks/14337', 'fi', 61), +(15190, 'Fairy Realm: A Collection of the Favourite Old Tales Told in Verse', 'Hood, Tom', '2013-12-16', 19, 'https://www.gutenberg.org/ebooks/44447', 'en', 2495), +(15191, 'Two Trips to Gorilla Land and the Cataracts of the Congo, Volume 1', 'Burton, Richard Francis, Sir', '2004-05-01', 63, 'https://www.gutenberg.org/ebooks/5760', 'en', 1332), +(15192, 'Chattanooga and Chickamauga\r\nReprint of Gen. H. V. Boynton\'s letters to the Cincinnati Commercial Gazette, August, 1888.', 'Boynton, Henry V. (Henry Van)', '2011-05-09', 12, 'https://www.gutenberg.org/ebooks/36067', 'en', 7199), +(15193, 'Donne e poeti', 'Panzacchi, Enrico', '2014-05-06', 10, 'https://www.gutenberg.org/ebooks/45595', 'it', 7200), +(15194, 'The Gold Coast Regiment in the East African Campaign', 'Clifford, Hugh Charles, Sir', '2016-07-07', 8, 'https://www.gutenberg.org/ebooks/52522', 'en', 4056), +(15195, 'A Sovereign Remedy', 'Steel, Flora Annie Webster', '2012-05-27', 9, 'https://www.gutenberg.org/ebooks/39813', 'en', 61), +(15196, 'The Crimson Thread: An Adventure Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-01-24', 8, 'https://www.gutenberg.org/ebooks/41909', 'en', 7201), +(15197, 'Misread Passages of Scriptures', 'Brown, James Baldwin', '2010-08-23', 18, 'https://www.gutenberg.org/ebooks/33515', 'en', 7202), +(15198, 'Index of the Project Gutenberg Works of James Matthew Barrie', 'Barrie, J. M. (James Matthew)', '2019-02-04', 10, 'https://www.gutenberg.org/ebooks/58824', 'en', 198), +(15199, 'Stavrogin\'s Confession and The Plan of The Life of a Great Sinner\nWith Introductory and Explanatory Notes', 'Dostoyevsky, Fyodor', '2018-04-25', 145, 'https://www.gutenberg.org/ebooks/57050', 'en', 7203), +(15200, 'The Wits and Beaux of Society. Volume 2', 'Thomson, A. T., Mrs.', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10797', 'en', 7204), +(15201, 'Lettres d\'un voyageur', 'Sand, George', '2011-11-12', 25, 'https://www.gutenberg.org/ebooks/37989', 'fr', 5041), +(15202, 'La rôtisserie de la Reine Pédauque', 'France, Anatole', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11645', 'fr', 4359), +(15203, 'Die Religion innerhalb der Grenzen der bloßen Vernunft\nText der Ausgabe 1793, mit Beifügung der Abweichungen der Ausgabe 1794', 'Kant, Immanuel', '2017-12-15', 37, 'https://www.gutenberg.org/ebooks/56182', 'de', 5449), +(15204, 'Mud and Khaki: Sketches from Flanders and France', 'Bartlett, Vernon', '2008-05-14', 21, 'https://www.gutenberg.org/ebooks/25470', 'en', 449), +(15205, 'The Theory and Practice of Model Aeroplaning', 'Johnson, V. E. (Valentine Edward)', '2012-10-21', 11, 'https://www.gutenberg.org/ebooks/41135', 'en', 7205), +(15206, 'The Cyr Readers: Book 8\nArranged by grades', 'Cyr, Ellen M.', '2015-07-04', 8, 'https://www.gutenberg.org/ebooks/49358', 'en', 1019), +(15207, 'Critical Remarks on Sir Charles Grandison, Clarissa, and Pamela (1754)', NULL, '2010-02-10', 9, 'https://www.gutenberg.org/ebooks/31242', 'en', 7206), +(15208, 'The Swiss Twins', 'Perkins, Lucy Fitch', '2002-10-01', 20, 'https://www.gutenberg.org/ebooks/3497', 'en', 1661), +(15209, 'Le nostalgie', 'Gualdo, Luigi', '2006-10-01', 17, 'https://www.gutenberg.org/ebooks/19428', 'it', 8), +(15210, 'John Brown the Hero: Personal Reminiscences', 'Winkley, J. W. (Jonathan Wingate)', '2017-10-08', 7, 'https://www.gutenberg.org/ebooks/55707', 'en', 4763), +(15211, 'Speeches from the Dock, Part I\r\nOr, Protests of Irish Patriotism\r\nSpeeches delivered after conviction by Theobald Wolfe Tone, William Orr, the brothers Sheares, Robert Emmet, John Martin, William Smith O\'Brien, Thomas Francis Meagher, Terence Bellew McManus, John Mitchel, Thomas C. Luby, John O\'Leary, Charles J. Kickham, Colonel Thomas F. Burke, and Captain Mackay', NULL, '2004-08-04', 27, 'https://www.gutenberg.org/ebooks/13112', 'en', 7207), +(15212, 'Agricultural Implements and Machines in the Collection of the National Museum of History and Technology\r\nSmithsonian Studies in History and Technology, No. 17', 'Schlebecker, John T.', '2008-11-25', 10, 'https://www.gutenberg.org/ebooks/27327', 'en', 7208), +(15213, 'Dickens\' London', 'Mansfield, M. F. (Milburg Francisco)', '2009-11-01', 16, 'https://www.gutenberg.org/ebooks/30390', 'en', 7209), +(15214, 'When God Laughs, and Other Stories', 'London, Jack', '2001-03-01', 67, 'https://www.gutenberg.org/ebooks/2545', 'en', 179), +(15215, 'Myths and Legends of Ancient Egypt', 'Spence, Lewis', '2013-09-07', 183, 'https://www.gutenberg.org/ebooks/43662', 'en', 673), +(15216, 'Nelka\nMrs. Helen de Smirnoff Moukhanoff, 1878-1963, a Biographical Sketch', 'Moukhanoff, Michael', '2007-09-17', 6, 'https://www.gutenberg.org/ebooks/22655', 'en', 7210), +(15217, 'From Aldershot to Pretoria\nA Story of Christian Work among Our Troops in South Africa', 'Sellers, William E.', '2005-08-07', 9, 'https://www.gutenberg.org/ebooks/16460', 'en', 7211), +(15218, 'Weymouth New Testament in Modern Speech, 2 Timothy', 'Weymouth, Richard Francis', '2005-09-01', 15, 'https://www.gutenberg.org/ebooks/8843', 'en', 7212), +(15219, 'The Greville Memoirs, Part 2 (of 3), Volume 3 (of 3)\r\nA Journal of the Reign of Queen Victoria from 1837 to 1852', 'Greville, Charles', '2014-07-17', 2, 'https://www.gutenberg.org/ebooks/46310', 'en', 2135), +(15220, 'Beric the Briton : a Story of the Roman Invasion', 'Henty, G. A. (George Alfred)', '2004-12-01', 79, 'https://www.gutenberg.org/ebooks/7037', 'en', 4480), +(15221, 'Charles Darwin', 'Allen, Grant', '2010-12-23', 17, 'https://www.gutenberg.org/ebooks/34730', 'en', 5315), +(15222, 'Dick Kent on Special Duty', 'Oblinger, M. M. (Milo Milton)', '2015-10-22', 9, 'https://www.gutenberg.org/ebooks/50275', 'en', 7213), +(15223, 'Ancient Man: The Beginning of Civilizations', 'Van Loon, Hendrik Willem', '2006-02-01', 67, 'https://www.gutenberg.org/ebooks/9991', 'en', 7214), +(15224, 'Märchen-Sammlung', NULL, '2007-12-09', 53, 'https://www.gutenberg.org/ebooks/23787', 'de', 900), +(15225, 'Titan: A Romance. v. 2 (of 2)', 'Jean Paul', '2011-06-12', 13, 'https://www.gutenberg.org/ebooks/36403', 'en', 61), +(15226, 'History of Australia and New Zealand\nFrom 1606 to 1890', 'Sutherland, Alexander', '2008-06-18', 40, 'https://www.gutenberg.org/ebooks/25828', 'en', 7215), +(15227, 'The Juvenile Bible: Being a brief concordance of the Holy Scriptures, in verse.\r\nContaining a summary of all the chapters in the books of the Old and New Testament, from Genesis to the Revelation, alphabetically arranged, and admirably adapted to the comprehension and retention of young readers.', 'Anonymous', '2016-05-23', 21, 'https://www.gutenberg.org/ebooks/52146', 'en', 7216), +(15228, 'Constructive Imperialism', 'Milner, Alfred Milner, Viscount', '2005-04-22', 13, 'https://www.gutenberg.org/ebooks/15681', 'en', 7217), +(15229, 'Rogers-isms, the Cowboy Philosopher on the Peace Conference', 'Rogers, Will', '2007-02-11', 24, 'https://www.gutenberg.org/ebooks/20566', 'en', 568), +(15230, 'Blackwood\'s Edinburgh Magazine — Volume 54, No. 335, September 1843', 'Various', '2005-01-21', 7, 'https://www.gutenberg.org/ebooks/14753', 'en', 274), +(15231, 'Outline of the history of the English language and literature', 'Anonymous', '2016-09-19', 26, 'https://www.gutenberg.org/ebooks/53094', 'en', 7218), +(15232, 'Les Romanciers d\'Aujourd\'hui', 'Le Goffic, Charles', '2013-10-23', 3, 'https://www.gutenberg.org/ebooks/44023', 'fr', 629), +(15233, 'My Robin', 'Burnett, Frances Hodgson', '2004-03-01', 52, 'https://www.gutenberg.org/ebooks/5304', 'en', 318), +(15234, 'The Bent Twig', 'Fisher, Dorothy Canfield', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/11221', 'en', 348), +(15235, 'Bouvard and Pécuchet: A Tragi-comic Novel of Bourgeois Life, part 1', 'Flaubert, Gustave', '2008-04-07', 82, 'https://www.gutenberg.org/ebooks/25014', 'en', 58), +(15236, 'Catania', 'De Roberto, Federico', '2012-12-04', 13, 'https://www.gutenberg.org/ebooks/41551', 'it', 7219), +(15237, 'These Twain', 'Bennett, Arnold', '2012-08-11', 67, 'https://www.gutenberg.org/ebooks/40483', 'en', 45), +(15238, 'One Day & Another: A Lyrical Eclogue', 'Cawein, Madison Julius', '2010-07-15', 9, 'https://www.gutenberg.org/ebooks/33171', 'en', 8), +(15239, 'The Miracle Songs of Jesus', 'MacDonald, Wilson', '2012-02-18', 9, 'https://www.gutenberg.org/ebooks/38599', 'en', 2689), +(15240, 'A Primer of the Art of Illumination for the Use of Beginners\r\nWith a rudimentary treatise on the art, practical directions for its exercise, and examples taken from illuminated mss.', 'Delamotte, F. (Freeman)', '2018-07-02', 15, 'https://www.gutenberg.org/ebooks/57434', 'en', 4378), +(15241, 'The Poor Gentleman', 'Conscience, Hendrik', '2004-10-02', 20, 'https://www.gutenberg.org/ebooks/13576', 'en', 3994), +(15242, 'Life in Southern Prisons\r\nFrom the Diary of Corporal Charles Smedley, of Company G, 90th Regiment Penn\'a Volunteers, Commencing a Few Days Before the \"Battle of the Wilderness\", In Which He Was Taken Prisoner ... Also, a Short Description of the March to and Battle of Gettysburg, Together with a Biographical Sketch of the Author', 'Smedley, Charles', '2019-08-10', 755, 'https://www.gutenberg.org/ebooks/60084', 'en', 444), +(15243, 'Through Finland in Carts', 'Alec-Tweedie, Mrs. (Ethel)', '2009-01-08', 46, 'https://www.gutenberg.org/ebooks/27743', 'en', 7220), +(15244, 'History of Friedrich II of Prussia — Volume 21', 'Carlyle, Thomas', '2008-06-16', 54, 'https://www.gutenberg.org/ebooks/2121', 'en', 5033), +(15245, 'The Breaking Crucible, and Other Translations of German Hymns', NULL, '2013-07-13', 10, 'https://www.gutenberg.org/ebooks/43206', 'en', 7221), +(15246, 'Valkoinen kameeli ja muita kertomuksia itämailta', 'Juva, Valter', '2005-10-09', 21, 'https://www.gutenberg.org/ebooks/16838', 'fi', 61), +(15247, 'The Vilbar Party', 'Smith, Evelyn E.', '2010-03-13', 28, 'https://www.gutenberg.org/ebooks/31626', 'en', 179), +(15248, 'Sanctification', 'Byers, J. W.', '2008-09-23', 13, 'https://www.gutenberg.org/ebooks/26691', 'en', 7222), +(15249, 'Wild Flowers of Zion and Bryce Canyon National Parks and Cedar Breaks National Monument', 'Allen, Leland F.', '2017-08-16', 10, 'https://www.gutenberg.org/ebooks/55363', 'en', 7223), +(15250, 'A Treatise on the Six-Nation Indians', 'Mackenzie, J. B.', '2004-09-01', 12, 'https://www.gutenberg.org/ebooks/6581', 'en', 7224), +(15251, 'The Cost of Kindness', 'Jerome, Jerome K. (Jerome Klapka)', '1997-04-01', 100, 'https://www.gutenberg.org/ebooks/866', 'en', 179), +(15252, 'Le Bossu Volume 4\r\nAventures de cape et d\'épée', 'Féval, Paul', '2010-11-17', 18, 'https://www.gutenberg.org/ebooks/34354', 'fr', 654), +(15253, 'The Pillar of Fire; or, Israel in Bondage', 'Ingraham, J. H. (Joseph Holt)', '2015-12-05', 15, 'https://www.gutenberg.org/ebooks/50611', 'en', 98), +(15254, 'Peak and Prairie\nFrom a Colorado Sketch-book', 'Fuller, Anna', '2007-08-03', 9, 'https://www.gutenberg.org/ebooks/22231', 'en', 7225), +(15255, 'The Evil Eye; Or, The Black Spector\nThe Works of William Carleton, Volume One', 'Carleton, William', '2005-06-07', 38, 'https://www.gutenberg.org/ebooks/16004', 'en', 440), +(15256, 'The Mission of Poubalov', 'Burton, Frederick R. (Frederick Russell)', '2014-09-05', 6, 'https://www.gutenberg.org/ebooks/46774', 'en', 7226), +(15257, 'The Dialect of the West of England; Particularly Somersetshire', 'Jennings, James', '2005-02-01', 13, 'https://www.gutenberg.org/ebooks/7453', 'en', 7227), +(15258, 'L\'Illustration, No. 3249, 3 Juin 1905', 'Various', '2011-02-14', 8, 'https://www.gutenberg.org/ebooks/35286', 'fr', 150), +(15259, 'Illuminated Manuscripts', 'Bradley, John William', '2006-11-19', 57, 'https://www.gutenberg.org/ebooks/19870', 'en', 4378), +(15260, 'Geschichte des Agathon. Teil 1', 'Wieland, Christoph Martin', '2000-09-01', 26, 'https://www.gutenberg.org/ebooks/2313', 'de', 6685), +(15261, 'Zes maanden bij de commando\'s', 'Hofmeyr, Nico J.', '2013-06-25', 24, 'https://www.gutenberg.org/ebooks/43034', 'nl', 1311), +(15262, 'The Octopus : A Story of California', 'Norris, Frank', '2008-07-11', 138, 'https://www.gutenberg.org/ebooks/268', 'en', 5500), +(15263, 'Sketch-Book of the North', 'Eyre-Todd, George', '2017-01-31', 10, 'https://www.gutenberg.org/ebooks/54083', 'en', 2714), +(15264, 'Isidora', 'Sand, George', '2004-10-14', 17, 'https://www.gutenberg.org/ebooks/13744', 'fr', 61), +(15265, 'Christianity and Greek Philosophy\r\nor, the relation between spontaneous and reflective thought in Greece and the positive teaching of Christ and His Apostles', 'Cocker, B. F. (Benjamin Franklin)', '2008-12-20', 26, 'https://www.gutenberg.org/ebooks/27571', 'en', 2286), +(15266, 'John Smith, U.S.A.', 'Field, Eugene', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12696', 'en', 178), +(15267, 'Notes and Letters on the Natural History of Norfolk\nMore Especially on the Birds and Fishes', 'Browne, Thomas, Sir', '2011-04-16', 11, 'https://www.gutenberg.org/ebooks/35888', 'en', 7228), +(15268, 'The Armed Ship America; Or, When We Sailed from Salem', 'Otis, James', '2017-07-19', 11, 'https://www.gutenberg.org/ebooks/55151', 'en', 3535), +(15269, 'Bear Brownie: The Life of a Bear', 'Robinson, Harry Perry', '2010-02-27', 18, 'https://www.gutenberg.org/ebooks/31414', 'en', 1611), +(15270, 'Sir Nigel', 'Doyle, Arthur Conan', '2005-08-01', 4, 'https://www.gutenberg.org/ebooks/8629', 'en', 7229), +(15271, 'Zachariah Chandler: An Outline Sketch of His Life and Public Services', NULL, '2015-11-10', 29, 'https://www.gutenberg.org/ebooks/50423', 'en', 7230), +(15272, 'Om Lars Johansson (Lucidor den olycklige)\nLitteraturhistoriskt utkast', 'Linck, Josef', '2009-04-10', 3, 'https://www.gutenberg.org/ebooks/28539', 'sv', 7231), +(15273, 'Mary\'s Little Lamb: A Picture Guessing Story for Little Children', 'Foster, Edith Francis', '2013-09-24', 5, 'https://www.gutenberg.org/ebooks/43808', 'en', 7232), +(15274, 'Capricious Caroline', 'Rowlands, Effie Adelaide', '2010-10-30', 73, 'https://www.gutenberg.org/ebooks/34166', 'en', 61), +(15275, 'Talks on Writing English. First Series', 'Bates, Arlo', '2014-11-29', 15, 'https://www.gutenberg.org/ebooks/47494', 'en', 664), +(15276, 'Method in the Study of Totemism', 'Lang, Andrew', '2014-08-10', 15, 'https://www.gutenberg.org/ebooks/46546', 'en', 3178), +(15277, 'What Will He Do with It? — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7661', 'en', 137), +(15278, 'The First Four Books of Xenophon\'s Anabasis', 'Xenophon', '2007-07-06', 42, 'https://www.gutenberg.org/ebooks/22003', 'en', 7233), +(15279, 'Le dernier des mohicans: Le roman de Bas-de-cuir', 'Cooper, James Fenimore', '2005-07-07', 15, 'https://www.gutenberg.org/ebooks/16236', 'fr', 893), +(15280, 'Kaksi mestaria: Kansannäytelmä 1:ssä näytöksessä', 'Walakorpi, Urho Wiljo', '2016-06-19', 6, 'https://www.gutenberg.org/ebooks/52374', 'fi', 382), +(15281, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 01', 'Stevenson, Robert Louis', '2007-06-06', 50, 'https://www.gutenberg.org/ebooks/21686', 'en', 232), +(15282, 'King Eric and the Outlaws, Vol. 1\r\nor, the Throne, the Church, and the People in the Thirteenth Century.', 'Ingemann, Bernhard Severin', '2011-07-05', 11, 'https://www.gutenberg.org/ebooks/36631', 'en', 7234), +(15283, 'Nocturnos', 'Crespo, Gonçalves', '2013-11-17', 6, 'https://www.gutenberg.org/ebooks/44211', 'pt', 5082), +(15284, 'Around the World on a Bicycle - Volume I\r\nFrom San Francisco to Teheran', 'Stevens, Thomas', '2004-02-01', 56, 'https://www.gutenberg.org/ebooks/5136', 'en', 819), +(15285, 'The Blunders of a Bashful Man', 'Victor, Metta Victoria Fuller', '2007-03-06', 24, 'https://www.gutenberg.org/ebooks/20754', 'en', 1351), +(15286, 'Reis naar de Fidsji-eilanden\r\nDe Aarde en haar Volken, 1892', 'Verschuur, Gerrit', '2005-01-02', 1, 'https://www.gutenberg.org/ebooks/14561', 'nl', 7235), +(15287, 'Paul Bunyan and His Loggers', 'Howd, Cloice R.', '2010-05-08', 18, 'https://www.gutenberg.org/ebooks/32291', 'en', 1839), +(15288, 'André le Savoyard', 'Kock, Paul de', '2012-05-12', 10, 'https://www.gutenberg.org/ebooks/39679', 'fr', 298), +(15289, 'Dissertatio inauguralis physico-medica de respiratione\r\nquam consensu & auctoritate gratiosissimi medicorum ordinis in universitate patria pro summis in arte medica honoribus & privilegiis doctoralibus rite consequendis....', 'Bernoulli, Daniel', '2013-01-03', 13, 'https://www.gutenberg.org/ebooks/41763', 'la', 7236), +(15290, 'Letters of a Traveller; Or, Notes of Things Seen in Europe and America', 'Bryant, William Cullen', '2004-02-01', 49, 'https://www.gutenberg.org/ebooks/11013', 'en', 747); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(15291, '負曝閒談', 'Quyuan', '2008-04-28', 20, 'https://www.gutenberg.org/ebooks/25226', 'zh', 1003), +(15292, 'Verdun to the Vosges: Impressions of the War on the Fortress Frontier of France', 'Campbell, Gerald', '2018-07-30', 6, 'https://www.gutenberg.org/ebooks/57606', 'en', 449), +(15293, 'Campmates: A Story of the Plains', 'Munroe, Kirk', '2010-08-03', 15, 'https://www.gutenberg.org/ebooks/33343', 'en', 1655), +(15294, 'Smoke Bellew', 'London, Jack', '1999-01-01', 119, 'https://www.gutenberg.org/ebooks/1596', 'en', 315), +(15295, 'Laperouse', 'Scott, Ernest, Sir', '2003-07-01', 13, 'https://www.gutenberg.org/ebooks/4222', 'en', 7237), +(15296, 'Punch, or the London Charivari, Volume 108, February 2, 1895', 'Various', '2014-03-10', 10, 'https://www.gutenberg.org/ebooks/45105', 'en', 134), +(15297, 'A Voyage to New Holland, Etc. in the Year 1699', 'Dampier, William', '2005-04-21', 53, 'https://www.gutenberg.org/ebooks/15675', 'en', 7238), +(15298, 'Allan Quatermain', 'Haggard, H. Rider (Henry Rider)', '2007-05-18', 16, 'https://www.gutenberg.org/ebooks/21440', 'en', 3825), +(15299, 'The Amateur Cracksman', 'Hornung, E. W. (Ernest William)', '2007-01-20', 13, 'https://www.gutenberg.org/ebooks/20592', 'en', 3511), +(15300, 'Humoristische Erinnerungen aus meinem academischen Leben, Erstes Bändchen\r\nin Heidelberg und Kiel in den Jahren 1817-1819', 'Kobbe, Theodor von', '2016-09-16', 9, 'https://www.gutenberg.org/ebooks/53060', 'de', 7239), +(15301, 'The Bay State Oologist, Vol. 1 No. 4, April 1888\nA Monthly Magazine Devoted to the Study of Birds, their Nests and Eggs', 'Various', '2018-12-17', 1, 'https://www.gutenberg.org/ebooks/58488', 'en', 7240), +(15302, 'Dvojník. Nétička Nezvánova a Malinký Hrdina', 'Dostoyevsky, Fyodor', '2011-09-24', 21, 'https://www.gutenberg.org/ebooks/37525', 'cs', 4896), +(15303, 'Schiff vor Anker: Erzählungen', 'Fock, Gorch', '2018-02-06', 8, 'https://www.gutenberg.org/ebooks/56512', 'de', 549), +(15304, 'Reliques of Ancient English Poetry, Volume 1 (of 3)\r\nConsisting of Old Heroic Ballads, Songs and Other Pieces of Our Earlier Poets Together With Some Few of Later Date', NULL, '2014-06-11', 33, 'https://www.gutenberg.org/ebooks/45939', 'en', 466), +(15305, 'Boys of The Fort; Or, A Young Captain\'s Pluck', 'Stratemeyer, Edward', '2010-04-19', 9, 'https://www.gutenberg.org/ebooks/32057', 'en', 2046), +(15306, 'With Fire and Sword', 'Byers, S. H. M. (Samuel Hawkins Marshall)', '2012-08-11', 16, 'https://www.gutenberg.org/ebooks/40477', 'en', 7241), +(15307, 'Laws', 'Plato', '1999-05-01', 179, 'https://www.gutenberg.org/ebooks/1750', 'en', 3559), +(15308, 'Fragments of an Autobiography', 'Moscheles, Felix', '2010-07-16', 3, 'https://www.gutenberg.org/ebooks/33185', 'en', 7242), +(15309, 'Autres Temps...\n1916', 'Wharton, Edith', '2008-01-03', 22, 'https://www.gutenberg.org/ebooks/24132', 'en', 2586), +(15310, 'At the Moving Picture Ball', NULL, '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10307', 'en', 7243), +(15311, 'The Excavations of Roman Baths at Bath', 'Davis, Charles Edward', '2004-10-02', 24, 'https://www.gutenberg.org/ebooks/13582', 'en', 1911), +(15312, 'Bygone Scotland: Historical and Social', 'Maxwell, David', '2017-02-26', 7, 'https://www.gutenberg.org/ebooks/54245', 'en', 1392), +(15313, 'Texas Gemstones', 'King, Elbert A.', '2019-08-06', 980, 'https://www.gutenberg.org/ebooks/60070', 'en', 7244), +(15314, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 04', 'Stevenson, Robert Louis', '2009-12-17', 67, 'https://www.gutenberg.org/ebooks/30700', 'en', 232), +(15315, 'The Shadow of a Sin', 'Brame, Charlotte M.', '2013-03-13', 13, 'https://www.gutenberg.org/ebooks/42320', 'en', 61), +(15316, 'The Smoky God; Or, A Voyage to the Inner World', 'Emerson, Willis George', '2002-01-01', 106, 'https://www.gutenberg.org/ebooks/3007', 'en', 2909), +(15317, 'The Cause of it All', 'Tolstoy, Leo, graf', '2008-09-20', 48, 'https://www.gutenberg.org/ebooks/26665', 'en', 4249), +(15318, 'Railroad Reorganization', 'Daggett, Stuart', '2017-08-21', 9, 'https://www.gutenberg.org/ebooks/55397', 'en', 1450), +(15319, 'The Reason Why', 'Glyn, Elinor', '2004-05-01', 45, 'https://www.gutenberg.org/ebooks/12450', 'en', 61), +(15320, 'History of the Decline and Fall of the Roman Empire — Volume 3', 'Gibbon, Edward', '2008-06-07', 96, 'https://www.gutenberg.org/ebooks/892', 'en', 7245), +(15321, 'Autobiography and Letters of Orville Dewey, D.D.\r\nEdited by His Daughter', 'Dewey, Orville', '2006-07-31', 28, 'https://www.gutenberg.org/ebooks/18956', 'en', 7246), +(15322, 'The Purple Parasol', 'McCutcheon, George Barr', '2004-09-01', 11, 'https://www.gutenberg.org/ebooks/6575', 'en', 48), +(15323, 'Runokokeita', 'Leino, Kasimir', '2014-12-13', 30, 'https://www.gutenberg.org/ebooks/47652', 'fi', 1171), +(15324, 'Twenty-Four Short Sermons On The Doctrine Of Universal Salvation', 'Dods, John Bovee', '2005-11-21', 16, 'https://www.gutenberg.org/ebooks/17122', 'en', 7247), +(15325, 'History of the English People, Volume IV', 'Green, John Richard', '2007-11-04', 12, 'https://www.gutenberg.org/ebooks/23317', 'en', 1953), +(15326, 'Wau-Bun: The \"Early Day\" of the North-West', 'Kinzie, John H., Mrs.', '2016-04-12', 8, 'https://www.gutenberg.org/ebooks/51737', 'en', 7248), +(15327, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 682\r\nJanuary 20, 1877.', 'Various', '2014-09-06', 15, 'https://www.gutenberg.org/ebooks/46780', 'en', 18), +(15328, 'Fante di picche', 'Farina, Salvatore', '2006-11-21', 11, 'https://www.gutenberg.org/ebooks/19884', 'it', 61), +(15329, 'A Catalogue of Books in English Later than 1700, Vol. 1\r\nForming a portion of the library of Robert Hoe', NULL, '2011-02-14', 9, 'https://www.gutenberg.org/ebooks/35272', 'en', 7249), +(15330, 'Astounding Stories, May, 1931', 'Various', '2009-11-23', 116, 'https://www.gutenberg.org/ebooks/30532', 'en', 2527), +(15331, 'America\'s Munitions 1917-1918', 'Crowell, Benedict', '2015-03-07', 37, 'https://www.gutenberg.org/ebooks/48428', 'en', 7250), +(15332, 'Cartas sobre a educação da mocidade', 'Sanches, António Nunes Ribeiro', '2007-12-19', 7, 'https://www.gutenberg.org/ebooks/23919', 'pt', 7251), +(15333, 'The Development of Certain Tendencies in Modern Opera\nThesis for the degree of Bachelor of Music', 'Browne, Kathryn Eleanor', '2017-01-31', 6, 'https://www.gutenberg.org/ebooks/54077', 'en', 4183), +(15334, 'Madame Chrysanthème', 'Loti, Pierre', '2006-05-09', 11, 'https://www.gutenberg.org/ebooks/18358', 'fr', 775), +(15335, 'Hilaire Belloc, the Man and His Work', 'Shanks, Edward', '2008-12-21', 39, 'https://www.gutenberg.org/ebooks/27585', 'en', 7252), +(15336, 'New observations on the natural history of bees', 'Huber, François', '2008-08-28', 20, 'https://www.gutenberg.org/ebooks/26457', 'en', 4644), +(15337, 'Four Girls at Chautauqua', 'Pansy', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/12662', 'en', 7253), +(15338, 'The Yellowstone National Park: Historical and Descriptive', 'Chittenden, Hiram Martin', '2013-02-17', 22, 'https://www.gutenberg.org/ebooks/42112', 'en', 2414), +(15339, 'A First Year in Canterbury Settlement', 'Butler, Samuel', '2002-05-01', 29, 'https://www.gutenberg.org/ebooks/3235', 'en', 7254), +(15340, 'Tablets of Bahá\'u\'lláh Revealed after the Kitab-i-Aqdas', 'Bahá\'u\'lláh', '2005-10-28', 17, 'https://www.gutenberg.org/ebooks/17310', 'en', 7255), +(15341, 'The Love Affairs of Pixie', 'Vaizey, George de Horne, Mrs.', '2007-10-20', 15, 'https://www.gutenberg.org/ebooks/23125', 'en', 7256), +(15342, 'The Glaciers of the Alps\r\nBeing a narrative of excursions and ascents, an account of the origin and phenomena of glaciers and an exposition of the physical principles to which they are related', 'Tyndall, John', '2010-11-02', 22, 'https://www.gutenberg.org/ebooks/34192', 'en', 7257), +(15343, 'The Log of the Empire State', 'Shaffer, Geneve L. A.', '2004-10-01', 6, 'https://www.gutenberg.org/ebooks/6747', 'en', 7258), +(15344, 'Practical Skunk Raising\nA Book of Information Concerning the Raising of Skunks for Profit', 'Pratt, William Edwin', '2014-11-26', 14, 'https://www.gutenberg.org/ebooks/47460', 'en', 7259), +(15345, 'Notes of an Itinerant Policeman', 'Flynt, Josiah', '2011-01-22', 14, 'https://www.gutenberg.org/ebooks/35040', 'en', 7260), +(15346, 'Die schöpferische Pause', 'Klatt, Fritz', '2017-11-19', 5, 'https://www.gutenberg.org/ebooks/55999', 'de', 973), +(15347, 'A Strange Story — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 23, 'https://www.gutenberg.org/ebooks/7695', 'en', 137), +(15348, 'Molière et Shakespeare', 'Stapfer, Paul', '2016-03-20', 11, 'https://www.gutenberg.org/ebooks/51505', 'fr', 7261), +(15349, 'A History of English Romanticism in the Eighteenth Century', 'Beers, Henry A. (Henry Augustin)', '2005-03-24', 23, 'https://www.gutenberg.org/ebooks/15447', 'en', 7262), +(15350, 'Chronique de 1831 à 1862, Tome 1 (de 4)', 'Dino, Dorothée, duchesse de', '2016-06-19', 7, 'https://www.gutenberg.org/ebooks/52380', 'fr', 7263), +(15351, 'Index of the Project Gutenberg Works of William Butler Yeats', 'Yeats, W. B. (William Butler)', '2019-06-16', 40, 'https://www.gutenberg.org/ebooks/59768', 'en', 198), +(15352, 'Westminster Abbey', 'Smith, A. Murray, Mrs.', '2007-06-04', 24, 'https://www.gutenberg.org/ebooks/21672', 'en', 7264), +(15353, 'Marmion: A Tale Of Flodden Field', 'Scott, Walter', '2003-05-01', 99, 'https://www.gutenberg.org/ebooks/4010', 'en', 7265), +(15354, 'Harper\'s Young People, April 26, 1881\nAn Illustrated Weekly', 'Various', '2014-04-06', 5, 'https://www.gutenberg.org/ebooks/45337', 'en', 479), +(15355, 'Los Amantes de Teruel\r\nDrama en cuatro actos en verso y prosa', 'Hartzenbusch, Juan Eugenio', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/10909', 'es', 7266), +(15356, 'Trees Worth Knowing', 'Rogers, Julia Ellen', '2011-10-11', 30, 'https://www.gutenberg.org/ebooks/37717', 'en', 7267), +(15357, 'The Boy Apprenticed to an Enchanter', 'Colum, Padraic', '2016-10-10', 19, 'https://www.gutenberg.org/ebooks/53252', 'en', 7268), +(15358, 'The Soldier Boy; or, Tom Somers in the Army: A Story of the Great Rebellion', 'Optic, Oliver', '2005-01-04', 14, 'https://www.gutenberg.org/ebooks/14595', 'en', 491), +(15359, 'Non dir quattro se non l\'hai nel sacco: Commedia in un atto', 'Giacosa, Giuseppe', '2010-05-05', 14, 'https://www.gutenberg.org/ebooks/32265', 'it', 407), +(15360, 'The Story Book Girls', 'Whyte, Christina Gowans', '2013-01-06', 21, 'https://www.gutenberg.org/ebooks/41797', 'en', 1679), +(15361, 'Lanagan, Amateur Detective', 'Hurlbut, Edward H.', '2018-03-11', 20, 'https://www.gutenberg.org/ebooks/56720', 'en', 128), +(15362, 'La danse macabre des femmes\r\ntoute hystoriee et augmentee de plusieurs personnages et beaux dictz en latin et francoys', 'Anonymous', '2008-01-15', 107, 'https://www.gutenberg.org/ebooks/24300', 'fr', 7269), +(15363, 'The Great English Short-Story Writers, Volume 1', NULL, '2003-11-01', 382, 'https://www.gutenberg.org/ebooks/10135', 'en', 179), +(15364, 'Punch, or the London Charivari, Vol. 93, November 26, 1887', 'Various', '2012-09-02', 22, 'https://www.gutenberg.org/ebooks/40645', 'en', 134), +(15365, 'Little Rivers: A Book of Essays in Profitable Idleness', 'Van Dyke, Henry', '2006-05-12', 16, 'https://www.gutenberg.org/ebooks/1562', 'en', 3350), +(15366, 'How I Know God Answers Prayer: The Personal Testimony of One Life-Time', 'Goforth, Rosalind', '2008-07-12', 60, 'https://www.gutenberg.org/ebooks/26033', 'en', 5230), +(15367, 'Breaking a Spell\nOdd Craft, Part 6.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/12206', 'en', 72), +(15368, 'The Common Spiders of the United States', 'Emerton, J. H. (James Henry)', '2013-04-22', 26, 'https://www.gutenberg.org/ebooks/42576', 'en', 7270), +(15369, 'The Paliser case', 'Saltus, Edgar', '2009-08-29', 20, 'https://www.gutenberg.org/ebooks/29847', 'en', 61), +(15370, 'The Square Root of 4 to a Million Places', 'De Forest, Norman L.', '2003-01-01', 24, 'https://www.gutenberg.org/ebooks/3651', 'en', 5180), +(15371, 'Neotropical Bats from Western México', 'Anderson, Sydney', '2010-01-26', 10, 'https://www.gutenberg.org/ebooks/31084', 'en', 2561), +(15372, 'The Trampling of the Lilies', 'Sabatini, Rafael', '2001-08-01', 55, 'https://www.gutenberg.org/ebooks/2783', 'en', 248), +(15373, 'Second Overture In Solomon\r\nSinfonia, The Arrival of the Queen of Sheba', 'Handel, George Frideric', '2009-10-01', 25, 'https://www.gutenberg.org/ebooks/30156', 'en', 7271), +(15374, 'Coinneach Odhar, Am Fiosaiche', 'Blair, D. B.', '2009-05-29', 36, 'https://www.gutenberg.org/ebooks/28995', 'gla', 6716), +(15375, 'Bill Bolton and Hidden Danger\nBill Bolton Naval Aviation Series #3', 'Sainsbury, Noel', '2017-03-23', 29, 'https://www.gutenberg.org/ebooks/54413', 'en', 4428), +(15376, 'Notes on the History of Argentine Independence', 'Whittemore, Charles W.', '2015-01-01', 13, 'https://www.gutenberg.org/ebooks/47838', 'en', 7272), +(15377, 'The Amethyst Box', 'Green, Anna Katharine', '2011-02-28', 28, 'https://www.gutenberg.org/ebooks/35424', 'en', 61), +(15378, 'Ein Heiratsantrag: Scherz in einem Aufzug', 'Chekhov, Anton Pavlovich', '2007-09-02', 29, 'https://www.gutenberg.org/ebooks/22493', 'de', 7273), +(15379, 'Degeneration', 'Nordau, Max Simon', '2016-02-09', 111, 'https://www.gutenberg.org/ebooks/51161', 'en', 7274), +(15380, 'The Poetry of Architecture\r\nOr, the Architecture of the Nations of Europe Considered in its Association with Natural Scenery and National Character', 'Ruskin, John', '2006-02-16', 250, 'https://www.gutenberg.org/ebooks/17774', 'en', 1352), +(15381, 'Dick, Marjorie and Fidge: A Search for the Wonderful Dodo', 'Farrow, G. E. (George Edward)', '2007-11-18', 23, 'https://www.gutenberg.org/ebooks/23541', 'en', 2203), +(15382, 'Early Lives of Charlemagne by Eginhard and the Monk of St Gall edited by Prof. A. J. Grant', 'Notker, Balbulus', '2015-05-03', 95, 'https://www.gutenberg.org/ebooks/48870', 'en', 7275), +(15383, 'The Junior Classics, Volume 4: Heroes and heroines of chivalry', NULL, '2004-08-01', 82, 'https://www.gutenberg.org/ebooks/6323', 'en', 1063), +(15384, 'The Mystery and Romance of Alchemy and Pharmacy', 'Thompson, C. J. S. (Charles John Samuel)', '2014-09-29', 51, 'https://www.gutenberg.org/ebooks/47004', 'en', 7276), +(15385, 'Notes of a Journey on the Upper Mekong, Siam', 'Smyth, H. Warington (Herbert Warington)', '2014-01-16', 14, 'https://www.gutenberg.org/ebooks/44681', 'en', 7277), +(15386, 'Indian Scout Talks: A Guide for Boy Scouts and Camp Fire Girls', 'Eastman, Charles Alexander', '2011-09-10', 22, 'https://www.gutenberg.org/ebooks/37373', 'en', 7278), +(15387, 'The Martyrdom of Belgium\r\nOfficial Report of Massacres of Peaceable Citizens, Women and Children by The German Army', 'Cooreman, Gerard', '2016-11-30', 10, 'https://www.gutenberg.org/ebooks/53636', 'en', 2936), +(15388, 'Tunnustus: Tosikuvaus elämästä', 'Nissinen, Alli', '2005-02-12', 4, 'https://www.gutenberg.org/ebooks/15023', 'fi', 61), +(15389, 'Catharine\'s Peril, or The Little Russian Girl Lost in a Forest\nAnd Other Stories', 'Bewsher, M. E., Mrs.', '2007-04-25', 6, 'https://www.gutenberg.org/ebooks/21216', 'en', 7279), +(15390, 'One of Our Conquerors — Volume 4', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4474', 'en', 137), +(15391, 'Tamaris', 'Sand, George', '2014-05-25', 19, 'https://www.gutenberg.org/ebooks/45753', 'fr', 298), +(15392, 'The World Peril of 1910', 'Griffith, George Chetwynd', '2008-03-06', 52, 'https://www.gutenberg.org/ebooks/24764', 'en', 5077), +(15393, 'Affair in Araby', 'Mundy, Talbot', '2003-12-01', 46, 'https://www.gutenberg.org/ebooks/10551', 'en', 7280), +(15394, 'Under Lock and Key: A Story. Volume 3 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-09', 7, 'https://www.gutenberg.org/ebooks/57296', 'en', 128), +(15395, 'Gedichte', 'Trakl, Georg', '2012-07-13', 26, 'https://www.gutenberg.org/ebooks/40221', 'de', 7281), +(15396, 'The Tragedy of Titus Andronicus', 'Shakespeare, William', '1997-11-01', 97, 'https://www.gutenberg.org/ebooks/1106', 'en', 7282), +(15397, 'Legends of Ma-ui—a demi god of Polynesia, and of his mother Hina', 'Westervelt, W. D. (William Drake)', '2010-05-30', 22, 'https://www.gutenberg.org/ebooks/32601', 'en', 7283), +(15398, 'Pigments, Paint and Painting: A practical book for practical men', 'Terry, George', '2018-01-09', 10, 'https://www.gutenberg.org/ebooks/56344', 'en', 7284), +(15399, 'The Life and Letters of Lewis Carroll (Rev. C. L. Dodgson)', 'Collingwood, Stuart Dodgson', '2004-03-01', 100, 'https://www.gutenberg.org/ebooks/11483', 'en', 7285), +(15400, 'The Album Writer\'s Friend\r\nComprising More Than Three Hundred Choice Selections of Poetry and Prose, Suitable for Writing in Autograph Albums, Valentines, Birthday, Christmas and New Year Cards.', NULL, '2016-10-30', 38, 'https://www.gutenberg.org/ebooks/53404', 'en', 2346), +(15401, 'L\'Illustration, No. 3670, 28 Juin 1913', 'Various', '2012-02-20', 1, 'https://www.gutenberg.org/ebooks/38935', 'fr', 150), +(15402, 'Useful Knowledge: Volume 1. Minerals\r\nOr, a familiar account of the various productions of nature', 'Bingley, William', '2018-09-14', 39, 'https://www.gutenberg.org/ebooks/57898', 'en', 7286), +(15403, 'Why I am in favor of socialism', NULL, '2011-08-21', 21, 'https://www.gutenberg.org/ebooks/37141', 'en', 254), +(15404, 'Rosa Alchemica', 'Yeats, W. B. (William Butler)', '2004-05-01', 82, 'https://www.gutenberg.org/ebooks/5794', 'en', 7287), +(15405, 'Tennyson\'s Life and Poetry: And Mistakes Concerning Tennyson', 'Parsons, Eugene', '2011-05-13', 6, 'https://www.gutenberg.org/ebooks/36093', 'en', 7288), +(15406, 'Their Silver Wedding Journey — Complete', 'Howells, William Dean', '2004-10-23', 13, 'https://www.gutenberg.org/ebooks/4646', 'en', 7289), +(15407, 'Punch, or the London Charivari, Volume 150, May 24, 1916', 'Various', '2014-05-02', 6, 'https://www.gutenberg.org/ebooks/45561', 'en', 134), +(15408, 'Some Broken Twigs', 'Beede, Clara Frances McKee', '2005-02-28', 7, 'https://www.gutenberg.org/ebooks/15211', 'en', 8), +(15409, 'The Angels\' Song', 'Guthrie, Thomas', '2007-04-10', 7, 'https://www.gutenberg.org/ebooks/21024', 'en', 7290), +(15410, 'The Master of Warlock: A Virginia War Story', 'Eggleston, George Cary', '2012-06-17', 13, 'https://www.gutenberg.org/ebooks/40013', 'en', 7291), +(15411, 'Paul Kelver', 'Jerome, Jerome K. (Jerome Klapka)', '1998-06-01', 36, 'https://www.gutenberg.org/ebooks/1334', 'en', 957), +(15412, 'Lecture on Artificial Flight\nGiven by request at the Academy of Natural Sciences', 'Krueger, William G.', '2011-11-23', 3, 'https://www.gutenberg.org/ebooks/38109', 'en', 927), +(15413, 'Mr. Faust', 'Ficke, Arthur Davison', '2008-02-25', 6, 'https://www.gutenberg.org/ebooks/24556', 'en', 427), +(15414, 'It Can Be Done\nPoems of Inspiration', NULL, '2004-01-01', 60, 'https://www.gutenberg.org/ebooks/10763', 'en', 54), +(15415, 'Guild Court: A London Story', 'MacDonald, George', '2017-12-13', 19, 'https://www.gutenberg.org/ebooks/56176', 'en', 1079), +(15416, 'Captain Horace', 'May, Sophie', '2008-05-16', 16, 'https://www.gutenberg.org/ebooks/25484', 'en', 153), +(15417, 'How to See a Play', 'Burton, Richard', '2010-05-19', 14, 'https://www.gutenberg.org/ebooks/32433', 'en', 7292), +(15418, 'Natalie Page', 'Haviland-Taylor, Katharine', '2019-07-11', 149, 'https://www.gutenberg.org/ebooks/59902', 'en', 48), +(15419, 'Punch, or the London Charivari, Vol. 104, February 11, 1893', 'Various', '2007-06-12', 6, 'https://www.gutenberg.org/ebooks/21818', 'en', 134), +(15420, 'Histoire de France 1547-1572 (Volume 11/19)', 'Michelet, Jules', '2013-05-20', 23, 'https://www.gutenberg.org/ebooks/42744', 'fr', 624), +(15421, 'The Boys\' Life of Mark Twain', 'Paine, Albert Bigelow', '2004-10-04', 31, 'https://www.gutenberg.org/ebooks/3463', 'en', 131), +(15422, 'The Story of Doctor Dolittle', 'Lofting, Hugh', '2008-08-01', 12, 'https://www.gutenberg.org/ebooks/26201', 'en', 7293), +(15423, 'Knights of Malta, 1523-1798', 'Cohen, Reuben', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12034', 'en', 7294), +(15424, 'Rupert\'s Ambition', 'Alger, Horatio, Jr.', '2017-04-28', 23, 'https://www.gutenberg.org/ebooks/54621', 'en', 1708), +(15425, 'Philotas', 'Lessing, Gotthold Ephraim', '2005-10-01', 28, 'https://www.gutenberg.org/ebooks/9159', 'de', 402), +(15426, 'An Account of The Kingdom of Nepal\r\nAnd of the Territories Annexed to this Dominion by the House of Gorkha', 'Hamilton, Francis', '2009-10-29', 37, 'https://www.gutenberg.org/ebooks/30364', 'en', 7295), +(15427, 'The Story of Mary MacLane', 'MacLane, Mary', '2013-09-11', 34, 'https://www.gutenberg.org/ebooks/43696', 'en', 4500), +(15428, 'Harper\'s Young People, 1880 Index\nAn Illustrated Weekly', 'Various', '2009-06-26', 19, 'https://www.gutenberg.org/ebooks/29249', 'en', 479), +(15429, 'The Transvaal from Within: A Private Record of Public Affairs', 'Fitzpatrick, Percy', '2005-08-09', 44, 'https://www.gutenberg.org/ebooks/16494', 'en', 7296), +(15430, 'Dr. Kometevsky\'s Day', 'Leiber, Fritz', '2016-03-05', 37, 'https://www.gutenberg.org/ebooks/51353', 'en', 179), +(15431, 'Frank on a Gun-Boat', 'Castlemon, Harry', '2004-07-03', 16, 'https://www.gutenberg.org/ebooks/12808', 'en', 7297), +(15432, 'Home Fires in France', 'Fisher, Dorothy Canfield', '2011-03-20', 18, 'https://www.gutenberg.org/ebooks/35616', 'en', 3960), +(15433, 'Over Prairie Trails', 'Grove, Frederick Philip', '2004-07-01', 30, 'https://www.gutenberg.org/ebooks/6111', 'en', 7298), +(15434, 'Studies of the Greek Poets (Vol 2 of 2)', 'Symonds, John Addington', '2014-10-30', 15, 'https://www.gutenberg.org/ebooks/47236', 'en', 7299), +(15435, 'An Enemy to the King\r\nFrom the Recently Discovered Memoirs of the Sieur de la Tournoire', 'Stephens, Robert Neilson', '2006-02-01', 22, 'https://www.gutenberg.org/ebooks/9965', 'en', 6798), +(15436, 'Diego Pinzon and the Fearful Voyage He Took Into the Unknown Ocean A.D. 1492', 'Coryell, John Russell', '2015-10-22', 7, 'https://www.gutenberg.org/ebooks/50281', 'en', 7300), +(15437, 'The Lion of Saint Mark: A Story of Venice in the Fourteenth Century', 'Henty, G. A. (George Alfred)', '2006-01-18', 76, 'https://www.gutenberg.org/ebooks/17546', 'en', 7301), +(15438, 'The Coming Wave; Or, The Hidden Treasure of High Rock', 'Optic, Oliver', '2007-12-08', 37, 'https://www.gutenberg.org/ebooks/23773', 'en', 3532), +(15439, 'Four Girls and a Compact', 'Donnell, Annie Hamilton', '2005-12-01', 14, 'https://www.gutenberg.org/ebooks/9505', 'en', 195), +(15440, 'Fians, Fairies and Picts', 'MacRitchie, David', '2006-03-05', 16, 'https://www.gutenberg.org/ebooks/17926', 'en', 7302), +(15441, 'Opera nova amorosa, vol. 1\nStrambotti, sonetti, capitoli, epistole et una disperata', 'Notturno, Napolitano', '2009-12-22', 6, 'https://www.gutenberg.org/ebooks/30738', 'it', 7303), +(15442, 'Grettir the Outlaw: A Story of Iceland', 'Baring-Gould, S. (Sabine)', '2015-03-31', 37, 'https://www.gutenberg.org/ebooks/48622', 'en', 2672), +(15443, 'Le Robinson suisse ou Histoire d\'une famille suisse naufragée', 'Wyss, Johann David', '2006-04-11', 16, 'https://www.gutenberg.org/ebooks/18152', 'fr', 1155), +(15444, 'The History of the Rifle Brigade (the Prince Consort\'s Own) Formerly the 95th', 'Cope, William Henry', '2019-08-03', 415, 'https://www.gutenberg.org/ebooks/60048', 'en', 7304), +(15445, 'Little Journeys to the Homes of the Great - Volume 12\nLittle Journeys to the Homes of Great Scientists', 'Hubbard, Elbert', '2006-08-19', 34, 'https://www.gutenberg.org/ebooks/19080', 'en', 2928), +(15446, 'Punch, or the London Charivari, Volume 99, October 25, 1890', 'Various', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12468', 'en', 134), +(15447, 'The Salem Witchcraft, the Planchette Mystery, and Modern Spiritualism\r\nWith Dr. Doddridge\'s Dream', 'Wells, Samuel R. (Samuel Roberts)', '2013-03-12', 29, 'https://www.gutenberg.org/ebooks/42318', 'en', 7305), +(15448, 'Mrs. Fitz', 'Snaith, J. C. (John Collis)', '2011-02-13', 13, 'https://www.gutenberg.org/ebooks/34398', 'en', 7306), +(15449, 'James Boswell', 'Leask, W. Keith (William Keith)', '2009-08-05', 18, 'https://www.gutenberg.org/ebooks/29615', 'en', 6841), +(15450, 'File No. 113', 'Gaboriau, Emile', '2006-04-13', 102, 'https://www.gutenberg.org/ebooks/3803', 'en', 128), +(15451, 'In the Cards', 'Cogan, Alan', '2010-06-17', 46, 'https://www.gutenberg.org/ebooks/32853', 'en', 2229), +(15452, 'Toveri', 'Anzengruber, Ludwig', '2019-05-20', 4, 'https://www.gutenberg.org/ebooks/59562', 'fi', 821), +(15453, 'Snow Shoes and Canoes\r\nOr, The Early Days of a Fur-Trader in the Hudson Bay Territory', 'Kingston, William Henry Giles', '2007-05-15', 25, 'https://www.gutenberg.org/ebooks/21478', 'en', 7307), +(15454, 'The Thunders of Silence', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2008-03-29', 9, 'https://www.gutenberg.org/ebooks/24936', 'en', 1238), +(15455, 'Eene schitterende \"carrière\"', 'Brink, Jan ten', '2010-09-22', 5, 'https://www.gutenberg.org/ebooks/33981', 'nl', 61), +(15456, 'The American Missionary — Volume 32, No. 01, January, 1878', 'Various', '2016-09-16', 9, 'https://www.gutenberg.org/ebooks/53058', 'en', 395), +(15457, 'Erasmus Against War', 'Erasmus, Desiderius', '2012-04-20', 30, 'https://www.gutenberg.org/ebooks/39487', 'en', 2481), +(15458, 'Storia d\'Italia dal 1789 al 1814, tomo I', 'Botta, Carlo', '2014-06-06', 23, 'https://www.gutenberg.org/ebooks/45901', 'it', 7184), +(15459, 'King Richard III', 'Shakespeare, William', '1999-06-01', 17, 'https://www.gutenberg.org/ebooks/1768', 'en', 599), +(15460, 'The Story of a Baby', 'Turner, Ethel Sybil', '2017-01-02', 17, 'https://www.gutenberg.org/ebooks/53864', 'en', 378), +(15461, 'Dorothy Dale in the City', 'Penrose, Margaret', '2012-01-12', 18, 'https://www.gutenberg.org/ebooks/38555', 'en', 585), +(15462, 'The Autobiography of Benvenuto Cellini', 'Cellini, Benvenuto', '2003-05-01', 155, 'https://www.gutenberg.org/ebooks/4028', 'en', 7308), +(15463, 'Ulysses of Ithaca', 'Homer', '2019-06-13', 59, 'https://www.gutenberg.org/ebooks/59750', 'en', 7309), +(15464, 'The Strand Magazine, Vol. 05, Issue 28, April 1893\r\nAn Illustrated Monthly', 'Various', '2007-03-11', 24, 'https://www.gutenberg.org/ebooks/20798', 'en', 4041), +(15465, 'Infinity\'s Child', 'De Vet, Charles V.', '2019-01-13', 25, 'https://www.gutenberg.org/ebooks/58682', 'en', 7310), +(15466, 'The Lullaby, with Original Engravings', 'Bolles, John R. (John Rogers)', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/10931', 'en', 8), +(15467, 'Catty Atkins, Sailorman', 'Kelland, Clarence Budington', '2018-03-10', 3, 'https://www.gutenberg.org/ebooks/56718', 'en', 4471), +(15468, 'The Rise of the Dutch Republic — Volume 13: 1567, part II', 'Motley, John Lothrop', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/4814', 'en', 6577), +(15469, 'Spanish Highways and Byways', 'Bates, Katharine Lee', '2012-02-04', 27, 'https://www.gutenberg.org/ebooks/38767', 'en', 1514), +(15470, 'O Vegetarismo e a Moralidade das raças', 'Lima, Jaime de Magalhães', '2008-01-17', 35, 'https://www.gutenberg.org/ebooks/24338', 'pt', 5839), +(15471, 'The Farmer\'s Boy\nOne of R. Caldecott\'s picture books', 'Caldecott, Randolph', '2006-05-09', 55, 'https://www.gutenberg.org/ebooks/18360', 'en', 672), +(15472, 'McClure\'s Magazine, Vol. 6, No. 3, February 1896', 'Various', '2004-10-18', 11, 'https://www.gutenberg.org/ebooks/13788', 'en', 883), +(15473, 'The Delafield Affair', 'Kelly, Florence Finch', '2011-01-17', 132, 'https://www.gutenberg.org/ebooks/34996', 'en', 48), +(15474, 'The Seven Poor Travellers', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9737', 'en', 4477), +(15475, 'Barometer and Weather Guide', NULL, '2007-12-19', 15, 'https://www.gutenberg.org/ebooks/23921', 'en', 5467), +(15476, 'The Boy Scouts of the Naval Reserve', 'Shaler, Robert', '2015-03-05', 16, 'https://www.gutenberg.org/ebooks/48410', 'en', 2994), +(15477, 'The New Gresham Encyclopedia. Ebert to Estremadura\r\nVolume 4, Part 2', 'Various', '2011-04-12', 29, 'https://www.gutenberg.org/ebooks/35844', 'en', 1081), +(15478, 'Vingt mille lieues sous les mers', 'Verne, Jules', '2017-06-09', 238, 'https://www.gutenberg.org/ebooks/54873', 'fr', 737), +(15479, 'Rakkaita muistoja', 'Lehtonen, Joel', '2014-11-25', 5, 'https://www.gutenberg.org/ebooks/47458', 'fi', 1171), +(15480, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 8 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 45, 'https://www.gutenberg.org/ebooks/17328', 'en', 7311), +(15481, 'Memoirs of Robert-Houdin, ambassador, author and conjurer', 'Robert-Houdin, Jean-Eugène', '2013-06-11', 36, 'https://www.gutenberg.org/ebooks/42916', 'en', 7312), +(15482, 'Lotus Buds', 'Carmichael, Amy', '2009-07-16', 33, 'https://www.gutenberg.org/ebooks/29427', 'en', 2422), +(15483, 'The Mesa Trail', 'Bedford-Jones, H. (Henry)', '2011-01-25', 453, 'https://www.gutenberg.org/ebooks/35078', 'en', 315), +(15484, 'The Old Peabody Pew: A Christmas Romance of a Country Church', 'Wiggin, Kate Douglas Smith', '1999-09-01', 16, 'https://www.gutenberg.org/ebooks/1902', 'en', 7313), +(15485, 'Our Legal Heritage: King AEthelbert - King George III, 600 A.D. - 1776\r\nJune 2011 (Sixth) Edition', 'Reilly, S. A.', '2011-06-02', 78, 'https://www.gutenberg.org/ebooks/36299', 'en', 6471), +(15486, 'May Day; or, Anecdotes of Miss Lydia Lively\nIntended to improve and amuse the rising generation', 'Unknown', '2019-04-22', 11, 'https://www.gutenberg.org/ebooks/59334', 'en', 450), +(15487, 'The Border Rifles: A Tale of the Texan War', 'Aimard, Gustave', '2012-07-12', 27, 'https://www.gutenberg.org/ebooks/40219', 'en', 315), +(15488, 'Ingersoll in Canada: A Reply to Wendling, Archbishop Lynch, Bystander; and Others', 'Pringle, Allen', '2011-12-14', 19, 'https://www.gutenberg.org/ebooks/38303', 'en', 7314), +(15489, 'Skilled Assistance\nShip\'s Company, Part 9.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10569', 'en', 72), +(15490, 'The Great Round World and What Is Going On In It, Vol. 1, No. 34, July 1, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-15', 6, 'https://www.gutenberg.org/ebooks/15827', 'en', 1), +(15491, 'The Medici Boots', 'Swet, Pearl Norton', '2010-06-01', 9, 'https://www.gutenberg.org/ebooks/32639', 'en', 1380), +(15492, 'A Woman-Hater', 'Reade, Charles', '2003-01-01', 45, 'https://www.gutenberg.org/ebooks/3669', 'en', 7315), +(15493, 'The World English Bible (WEB): 1 Timothy', 'Anonymous', '2005-06-01', 17, 'https://www.gutenberg.org/ebooks/8281', 'en', 6538), +(15494, 'Pawned', 'Packard, Frank L. (Frank Lucius)', '2016-05-02', 26, 'https://www.gutenberg.org/ebooks/51965', 'en', 332), +(15495, 'Pikku ihmisiä', 'Pakkala, Teuvo', '2006-06-27', 8, 'https://www.gutenberg.org/ebooks/18704', 'fi', 61), +(15496, 'Highways and Byways in the Border\r\nIllustrated', 'Lang, Andrew', '2014-12-29', 27, 'https://www.gutenberg.org/ebooks/47800', 'en', 7316), +(15497, 'The Mirror of the Sea', 'Conrad, Joseph', '2005-11-01', 4, 'https://www.gutenberg.org/ebooks/9353', 'en', 850), +(15498, 'Äkillinen kihlaus: Leikki-näytelmä yhdessä näytöksessä', 'Anonymous', '2015-01-25', 12, 'https://www.gutenberg.org/ebooks/48074', 'fi', 402), +(15499, 'Harper\'s Young People, July 20, 1880\nAn Illustrated Weekly', 'Various', '2009-06-05', 3, 'https://www.gutenberg.org/ebooks/29043', 'en', 479), +(15500, 'Turun linna', 'Jahnsson, Adolf Waldemar', '2016-02-09', 12, 'https://www.gutenberg.org/ebooks/51159', 'fi', 7317), +(15501, 'Physiology of the Opera', 'Scrici', '2010-04-04', 19, 'https://www.gutenberg.org/ebooks/31880', 'en', 7318), +(15502, 'Love—Marriage—Birth Control\r\nBeing a Speech delivered at the Church Congress at Birmingham, October, 1921', 'Dawson, Bertrand Edward Dawson, Viscount', '2008-10-07', 12, 'https://www.gutenberg.org/ebooks/26837', 'en', 7319), +(15503, 'With Ethan Allen at Ticonderoga', 'Foster, W. Bert (Walter Bertram)', '2010-01-13', 8, 'https://www.gutenberg.org/ebooks/30952', 'en', 7320), +(15504, 'Frank Armstrong at Queens', 'Colton, Matthew M.', '2015-05-02', 14, 'https://www.gutenberg.org/ebooks/48848', 'en', 845), +(15505, 'Opening Ceremonies of the New York and Brooklyn Bridge, May 24, 1883', 'Edson, Franklin', '2009-02-25', 15, 'https://www.gutenberg.org/ebooks/28191', 'en', 7321), +(15506, 'The Botanical Magazine Vol. 07\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2007-11-21', 33, 'https://www.gutenberg.org/ebooks/23579', 'en', 5898), +(15507, 'The Forester\'s Daughter: A Romance of the Bear-Tooth Range', 'Garland, Hamlin', '2008-08-09', 29, 'https://www.gutenberg.org/ebooks/26239', 'en', 7322), +(15508, 'Ricordi intorno alle Cinque Giornate di Milano (18-22 marzo 1848)\r\nSeconda edizione con aggiunte', 'Torelli, Luigi', '2015-07-08', 8, 'https://www.gutenberg.org/ebooks/49394', 'it', 7323), +(15509, 'The Experiences of a Bandmaster', 'Sousa, John Philip', '2001-04-01', 12, 'https://www.gutenberg.org/ebooks/2589', 'en', 7324), +(15510, 'Comedy of Marriage and Other Tales', 'Maupassant, Guy de', '2005-10-01', 26, 'https://www.gutenberg.org/ebooks/9161', 'en', 1112), +(15511, 'A Parody on Princess Ida', 'Dalziel, D. (Davison)', '2015-02-12', 10, 'https://www.gutenberg.org/ebooks/48246', 'en', 7325), +(15512, 'Farewell Love! A Novel', 'Serao, Matilde', '2017-04-28', 14, 'https://www.gutenberg.org/ebooks/54619', 'en', 1058), +(15513, 'Cahangahangang Buhay ni Santa Margarita de Cortona', 'Ignacio, Cleto R.', '2006-06-08', 7, 'https://www.gutenberg.org/ebooks/18536', 'tl', 7326), +(15514, 'In Camp on the Big Sunflower', 'Leslie, Lawrence J.', '2004-11-01', 7, 'https://www.gutenberg.org/ebooks/6915', 'en', 7327), +(15515, 'The Perfect Tribute', 'Andrews, Mary Raymond Shipman', '2004-07-06', 15, 'https://www.gutenberg.org/ebooks/12830', 'en', 1716), +(15516, 'The Issahar Artifacts', 'Bone, Jesse F. (Jesse Franklin)', '2009-06-29', 49, 'https://www.gutenberg.org/ebooks/29271', 'en', 179), +(15517, 'Pipefuls', 'Morley, Christopher', '2007-09-21', 47, 'https://www.gutenberg.org/ebooks/22699', 'en', 20), +(15518, 'Healthful Sports for Boys', 'Calhoun, A. R. (Alfred Rochefort)', '2004-07-01', 16, 'https://www.gutenberg.org/ebooks/6129', 'en', 1560), +(15519, 'Limbo, and Other Essays; To which is now added Ariadne in Mantua', 'Lee, Vernon', '2011-08-23', 15, 'https://www.gutenberg.org/ebooks/37179', 'en', 5270), +(15520, 'Dizionario storico-critico degli scrittori di musica e de\' più celebri artisti, vol. 1\r\nDi tutte le nazioni sì antiche che moderne', 'Bertini, Giuseppe', '2012-09-21', 11, 'https://www.gutenberg.org/ebooks/40817', 'it', 7328), +(15521, 'A Review of the Resources and Industries of the State of Washington, 1909', 'Howell, Ithamar', '2005-03-02', 18, 'https://www.gutenberg.org/ebooks/15229', 'en', 7329), +(15522, 'The Study of Plant Life', 'Stopes, Marie Carmichael', '2019-03-21', 19, 'https://www.gutenberg.org/ebooks/59106', 'en', 7330), +(15523, 'Light Ahead for the Negro', 'Johnson, Edward A. (Edward Austin)', '2018-04-12', 12, 'https://www.gutenberg.org/ebooks/56972', 'en', 2574), +(15524, 'The Pansy Magazine, February 1886', 'Various', '2014-05-02', 11, 'https://www.gutenberg.org/ebooks/45559', 'en', 522), +(15525, 'Untersuchungen über die radioaktiven Substanzen von Marie Curie, übersetzt und mit Litteratur-Ergänzungen versehen von W. Kaufmann', 'Curie, Marie', '2011-11-06', 44, 'https://www.gutenberg.org/ebooks/37945', 'de', 7331), +(15526, 'On Secret Service\r\nDetective-Mystery Stories Based on Real Cases Solved by Government Agents', 'Taft, William Nelson', '2011-11-25', 47, 'https://www.gutenberg.org/ebooks/38131', 'en', 5319), +(15527, 'Oh! Susannah!\nA Farcical Comedy in Three Acts', 'Ambient, Mark', '2007-06-12', 15, 'https://www.gutenberg.org/ebooks/21820', 'en', 907), +(15528, 'Are Women People? A Book of Rhymes for Suffrage Times', 'Miller, Alice Duer', '2004-03-01', 139, 'https://www.gutenberg.org/ebooks/11689', 'en', 7332), +(15529, 'Benjamin Franklin; Self-Revealed, Volume 2 (of 2)\r\nA Biographical and Critical Study Based Mainly on his own Writings', 'Bruce, Wiliam Cabell', '2011-08-15', 22, 'https://www.gutenberg.org/ebooks/36897', 'en', 854), +(15530, 'White Ashes', 'Kennedy, Sidney R. (Sidney Robinson)', '2007-01-07', 10, 'https://www.gutenberg.org/ebooks/20308', 'en', 7333), +(15531, 'The Noble and Gentle Men of England\r\nor, notes touching the arms and descents of the ancient knightly and gentle houses of England, arranged in their respective counties.', 'Shirley, Evelyn Philip', '2018-10-30', 25, 'https://www.gutenberg.org/ebooks/58212', 'en', 7334), +(15532, 'Bell\'s Cathedrals: St. David\'s', 'Robson, Philip A. (Philip Appleby)', '2016-08-05', 11, 'https://www.gutenberg.org/ebooks/52728', 'en', 7335), +(15533, 'Epilepsy, Hysteria, and Neurasthenia: Their Causes, Symptoms, & Treatment', 'Briggs, Isaac George', '2005-02-04', 18, 'https://www.gutenberg.org/ebooks/14901', 'en', 4917), +(15534, 'Investigation of Communist activities in Seattle, Wash., area. Hearings, Part 3', 'United States. Congress. House. Committee on Un-American Activities', '2018-01-18', 5, 'https://www.gutenberg.org/ebooks/56388', 'en', 7336), +(15535, 'Modern Machine-Shop Practice, Volumes I and II', 'Rose, Joshua', '2012-03-21', 58, 'https://www.gutenberg.org/ebooks/39225', 'en', 6285), +(15536, 'An Essay on Demonology, Ghosts and Apparitions, and Popular Superstitions\nAlso, an Account of the Witchcraft Delusion at Salem, in 1692', 'Thacher, James', '2015-06-06', 48, 'https://www.gutenberg.org/ebooks/49152', 'en', 5025), +(15537, 'A History of Dentistry from the most Ancient Times until the end of the Eighteenth Century', 'Guerini, Vincenzo', '2016-05-03', 19, 'https://www.gutenberg.org/ebooks/51991', 'en', 7337), +(15538, 'A Battery at Close Quarters\r\nA Paper Read before the Ohio Commandery of the Loyal Legion, October 6, 1909', 'Neil, Henry M. (Henry Moore)', '2010-01-23', 7, 'https://www.gutenberg.org/ebooks/31048', 'en', 7338), +(15539, 'The World English Bible (WEB): Galatians', 'Anonymous', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8275', 'en', 7339), +(15540, 'The Virgin in Judgment', 'Phillpotts, Eden', '2014-09-21', 10, 'https://www.gutenberg.org/ebooks/46926', 'en', 4305), +(15541, 'Aesop\'s Fables - Volume 07', 'Aesop', '2006-10-26', 12, 'https://www.gutenberg.org/ebooks/19622', 'en', 7140), +(15542, 'Runoelmia', 'Cajander, Paavo Emil', '2004-08-29', 20, 'https://www.gutenberg.org/ebooks/13318', 'fi', 8), +(15543, 'Miscellaneous Mathematical Constants', NULL, '1996-08-01', 82, 'https://www.gutenberg.org/ebooks/634', 'en', 7340), +(15544, 'The Mentor: Angels in Art, Vol. 1, Num. 40', 'Van Dyke, John Charles', '2016-01-04', 16, 'https://www.gutenberg.org/ebooks/50843', 'en', 7341), +(15545, 'The Chariot of the Flesh', 'Peek, Hedley', '2015-01-25', 19, 'https://www.gutenberg.org/ebooks/48080', 'en', 114), +(15546, 'The Illustrated Works of Gordon Home: A Linked Index to the Project Gutenberg Editions', 'Home, Gordon', '2009-05-24', 11, 'https://www.gutenberg.org/ebooks/28959', 'en', 198), +(15547, 'The Laurel Health Cookery\r\nA Collection of Practical Suggestions and Recipes for the Preparation of Non-Flesh Foods in Palatable and Attractive Ways', 'Perkins, Evora Bucknum', '2013-08-14', 43, 'https://www.gutenberg.org/ebooks/43468', 'en', 103), +(15548, 'Second Book of Verse', 'Field, Eugene', '2010-04-03', 8, 'https://www.gutenberg.org/ebooks/31874', 'en', 350), +(15549, 'The Giraffe Hunters', 'Reid, Mayne', '2009-01-27', 18, 'https://www.gutenberg.org/ebooks/27911', 'en', 176), +(15550, 'The Adventures of a Squirrel, Supposed to be Related by Himself', 'Anonymous', '2009-02-23', 22, 'https://www.gutenberg.org/ebooks/28165', 'en', 3264), +(15551, 'Samantha on the Woman Question', 'Holley, Marietta', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/7833', 'en', 2153), +(15552, 'Critical Miscellanies (Vol. 3 of 3), Essay 8: France in the Eighteenth Century', 'Morley, John', '2006-09-30', 28, 'https://www.gutenberg.org/ebooks/19410', 'en', 7342), +(15553, 'Harper\'s Young People, October 4, 1881\nAn Illustrated Weekly', 'Various', '2015-07-04', 3, 'https://www.gutenberg.org/ebooks/49360', 'en', 479), +(15554, 'Notes and Queries, Number 173, February 19, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 7, 'https://www.gutenberg.org/ebooks/42788', 'en', 105), +(15555, 'The Bible, King James version, Book 47: 2 Corinthians', 'Anonymous', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/8047', 'en', 7343), +(15556, 'The Slave of the Lamp', 'Merriman, Henry Seton', '2005-10-01', 19, 'https://www.gutenberg.org/ebooks/9195', 'en', 2283), +(15557, 'Appreciations of Richard Harding Davis', 'Various', '1996-01-01', 12, 'https://www.gutenberg.org/ebooks/406', 'en', 7344), +(15558, 'In the Old West', 'Ruxton, George Frederick Augustus', '2014-07-19', 12, 'https://www.gutenberg.org/ebooks/46328', 'en', 497), +(15559, 'The Migrations of an American Boat Type', 'Chapelle, Howard Irving', '2009-07-01', 37, 'https://www.gutenberg.org/ebooks/29285', 'en', 7345), +(15560, 'The Princess Pocahontas', 'Watson, Virginia', '2005-08-06', 19, 'https://www.gutenberg.org/ebooks/16458', 'en', 2259), +(15561, 'By Conduct and Courage: A Story of the Days of Nelson', 'Henty, G. A. (George Alfred)', '2009-03-19', 40, 'https://www.gutenberg.org/ebooks/28357', 'en', 7346), +(15562, 'Marie Bashkirtseff (From Childhood to Girlhood)', 'Bashkirtseff, Marie', '2004-11-01', 32, 'https://www.gutenberg.org/ebooks/13916', 'en', 7347), +(15563, 'Nord-Sud: Amérique; Angleterre; Corse; Spitzberg', 'Bazin, René', '2010-12-20', 14, 'https://www.gutenberg.org/ebooks/34708', 'fr', 7348), +(15564, 'Many Cargoes', 'Jacobs, W. W. (William Wymark)', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/5758', 'en', 1224), +(15565, 'What Norman Saw in the West', 'Anonymous', '2018-09-06', 10, 'https://www.gutenberg.org/ebooks/57854', 'en', 7349), +(15566, 'The Trial and Conviction of John Church\r\nThe Preacher of the Surrey Tabernacle, Borough Road, at the Surrey Assizes, at Croydon, on Saturday, the 16th of August, 1817, for an Assault With Intent to Commit an Unnatural Crime.', 'Anonymous', '2018-10-04', 6, 'https://www.gutenberg.org/ebooks/58020', 'en', 7198), +(15567, 'Sklaven der Liebe, und andere Novellen', 'Hamsun, Knut', '2013-01-27', 31, 'https://www.gutenberg.org/ebooks/41931', 'de', 179), +(15568, 'The Babe, B.A.\r\nBeing the Uneventful History of a Young Gentleman at Cambridge University', 'Benson, E. F. (Edward Frederic)', '2018-04-15', 15, 'https://www.gutenberg.org/ebooks/56986', 'en', 7350), +(15569, 'The Festival of Spring, from the Díván of Jeláleddín\r\nRendered in English Gazels after Rückert\'s Versions, with an Introduction and a Criticism of the Rubáiyát of Omar Khayyám', 'Jalal al-Din Rumi, Maulana', '2018-04-29', 125, 'https://www.gutenberg.org/ebooks/57068', 'en', 7351), +(15570, 'The Journal of Negro History, Volume 3, 1918', 'Various', '2007-03-26', 44, 'https://www.gutenberg.org/ebooks/20906', 'en', 7352), +(15571, 'Eight Lectures on Theoretical Physics, Delivered at Columbia University in 1909', 'Planck, Max', '2012-02-29', 129, 'https://www.gutenberg.org/ebooks/39017', 'en', 1194), +(15572, 'Ranskalaisia kansansatuja ja tarinoita', 'Sand, George', '2011-07-26', 9, 'https://www.gutenberg.org/ebooks/36863', 'fi', 1142), +(15573, 'Peggy', 'Richards, Laura Elizabeth Howe', '2008-05-12', 28, 'https://www.gutenberg.org/ebooks/25448', 'en', 62), +(15574, 'History of Friedrich II of Prussia — Volume 19', 'Carlyle, Thomas', '2008-06-16', 27, 'https://www.gutenberg.org/ebooks/2119', 'en', 5033), +(15575, 'Three Days on the Ohio River', 'Alcott, William A. (William Andrus)', '2017-03-06', 9, 'https://www.gutenberg.org/ebooks/54289', 'en', 7353), +(15576, 'Italy at War and the Allies in the West', 'Powell, E. Alexander (Edward Alexander)', '2006-08-18', 17, 'https://www.gutenberg.org/ebooks/19074', 'en', 449), +(15577, 'Protection from Fire and Thieves\r\nIncluding the construction of locks, safes, strong-rooms, and fireproof buildings; burglary, and the means of preventing it; fire, its detection, prevention, and extinction; etc.', 'Chubb, George Hayter', '2015-08-14', 20, 'https://www.gutenberg.org/ebooks/49704', 'en', 7354), +(15578, 'The Secret of a Happy Home (1896)', 'Harland, Marion', '2005-10-04', 8, 'https://www.gutenberg.org/ebooks/16800', 'en', 6150), +(15579, 'Blood Brothers: A Medic\'s Sketch Book', 'Jacobs, Eugene C.', '2005-07-01', 78, 'https://www.gutenberg.org/ebooks/8423', 'en', 7355), +(15580, 'An Account of the Abipones, an Equestrian People of Paraguay, (1 of 3)', 'Dobrizhoffer, Martin', '2015-12-06', 14, 'https://www.gutenberg.org/ebooks/50629', 'en', 7356), +(15581, 'The Conditions of Existence as Affecting the Perpetuation of Living Beings\r\nLecture V. (of VI.), \"Lectures to Working Men\", at the Museum of Practical Geology, 1863, on Darwin\'s Work: \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 21, 'https://www.gutenberg.org/ebooks/2925', 'en', 5473), +(15582, 'The Adventures of Sherlock Holmes', 'Doyle, Arthur Conan', '2009-05-01', 62, 'https://www.gutenberg.org/ebooks/28733', 'en', 834), +(15583, 'Woman and Womanhood: A Search for Principles', 'Saleeby, C. W. (Caleb Williams)', '2006-11-17', 20, 'https://www.gutenberg.org/ebooks/19848', 'en', 7357), +(15584, 'Siegfried, der Held', 'Herzog, Rudolf', '2007-08-01', 24, 'https://www.gutenberg.org/ebooks/22209', 'de', 7358), +(15585, 'Dresden und die Sächsische Schweiz', 'Ruge, Sophus', '2019-05-24', 14, 'https://www.gutenberg.org/ebooks/59596', 'de', 7359), +(15586, 'In Connection with the De Willoughby Claim', 'Burnett, Frances Hodgson', '2008-06-16', 21, 'https://www.gutenberg.org/ebooks/25810', 'en', 770), +(15587, 'Suppers: Novel Suggestions for Social Occasions', 'Pierce, Paul', '2010-09-26', 17, 'https://www.gutenberg.org/ebooks/33975', 'en', 1560), +(15588, 'The Modern Bicycle and Its Accessories', 'Wilcox, Julius', '2018-12-09', 46, 'https://www.gutenberg.org/ebooks/58444', 'en', 7360), +(15589, 'The Year after the Armada, and Other Historical Studies', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2016-08-30', 12, 'https://www.gutenberg.org/ebooks/52942', 'en', 7361), +(15590, 'The Young Sharpshooter at Antietam', 'Tomlinson, Everett T. (Everett Titsworth)', '2012-04-18', 5, 'https://www.gutenberg.org/ebooks/39473', 'en', 491), +(15591, 'Jerusalem Explored, Volume 1—Text\r\nBeing a Description of the Ancient and Modern City, with Numerous Illustrations Consisting of Views, Ground Plans and Sections', 'Pierotti, Ermete', '2012-12-06', 12, 'https://www.gutenberg.org/ebooks/41569', 'en', 7362), +(15592, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 384, August 8, 1829', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11219', 'en', 133), +(15593, 'Under the Witches\' Moon: A Romantic Tale of Mediaeval Rome', 'Gallizier, Nathan', '2014-02-04', 33, 'https://www.gutenberg.org/ebooks/44827', 'en', 7363), +(15594, 'The Independent Statesmen, and Liberal Landlord\nor a respectful tribute to T. W. Coke, M.P. for the County of Norfolk', 'Parkerson, James', '2010-07-13', 10, 'https://www.gutenberg.org/ebooks/33149', 'en', 4332), +(15595, 'Some of Our East Coast Towns', 'Ritchie, J. Ewing (James Ewing)', '2017-01-04', 18, 'https://www.gutenberg.org/ebooks/53890', 'en', 7364), +(15596, 'U.S. Copyright Renewals, 1958 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11817', 'en', 4170), +(15597, 'The Immortal Lure', 'Rice, Cale Young', '2011-07-04', 11, 'https://www.gutenberg.org/ebooks/36609', 'en', 402), +(15598, 'Index of the Project Gutenberg Works of Benjamin Franklin', 'Franklin, Benjamin', '2019-01-12', 8, 'https://www.gutenberg.org/ebooks/58676', 'en', 198), +(15599, 'Omzwervingen door de eilandenwereld van den Grooten-oceaan\r\nDe Aarde en haar Volken, 1887', 'Anonymous', '2005-01-02', 4, 'https://www.gutenberg.org/ebooks/14559', 'nl', 6743), +(15600, 'The Birth of the Nation, Jamestown, 1607', 'Pryor, Sara Agnes Rice', '2013-11-18', 31, 'https://www.gutenberg.org/ebooks/44229', 'en', 7365), +(15601, 'Georgina\'s Service Stars', 'Johnston, Annie F. (Annie Fellows)', '2012-05-07', 11, 'https://www.gutenberg.org/ebooks/39641', 'en', 7366), +(15602, 'Off to Sea: The Adventures of Jovial Jack Junker on his Road to Fame', 'Kingston, William Henry Giles', '2012-09-06', 11, 'https://www.gutenberg.org/ebooks/40689', 'en', 195), +(15603, 'South America and the War', 'Kirkpatrick, F. A. (Frederick Alexander)', '2012-02-09', 17, 'https://www.gutenberg.org/ebooks/38793', 'en', 7367), +(15604, 'The History of Don Quixote, Volume 2, Part 29', 'Cervantes Saavedra, Miguel de', '2004-07-24', 2, 'https://www.gutenberg.org/ebooks/5932', 'en', 361), +(15605, 'Boon, The Mind of the Race, The Wild Asses of the Devil, and The Last Trump;\r\nBeing a First Selection from the Literary Remains of George Boon, Appropriate to the Times', 'Wells, H. G. (Herbert George)', '2011-01-15', 38, 'https://www.gutenberg.org/ebooks/34962', 'en', 781), +(15606, 'A Brief History of the Internet\r\nThe Bright Side: The Dark Side', 'Fuller, Maxwell', '1995-04-01', 123, 'https://www.gutenberg.org/ebooks/250', 'en', 7368), +(15607, 'Cheerfulness as a Life Power', 'Marden, Orison Swett', '2006-05-15', 30, 'https://www.gutenberg.org/ebooks/18394', 'en', 7369), +(15608, 'The Seven Secrets', 'Le Queux, William', '2008-12-17', 17, 'https://www.gutenberg.org/ebooks/27549', 'en', 61), +(15609, 'A Difficult Problem\n1900', 'Green, Anna Katharine', '2007-09-29', 30, 'https://www.gutenberg.org/ebooks/22807', 'en', 5319), +(15610, 'Syyn sovitus: Murhenäytelmä yhdessä näytöksessä', 'Körner, Theodor', '2015-07-28', 12, 'https://www.gutenberg.org/ebooks/49536', 'fi', 4568), +(15611, 'The Prince and the Pauper', 'Twain, Mark', '2005-08-01', 1, 'https://www.gutenberg.org/ebooks/8611', 'en', 98), +(15612, 'The Young Pitcher', 'Grey, Zane', '2006-09-11', 63, 'https://www.gutenberg.org/ebooks/19246', 'en', 2840), +(15613, 'Life and Lillian Gish', 'Paine, Albert Bigelow', '2017-07-22', 3, 'https://www.gutenberg.org/ebooks/55169', 'en', 7370), +(15614, 'Beaufort Chums', 'Sabin, Edwin L. (Edwin Legrand)', '2017-06-11', 8, 'https://www.gutenberg.org/ebooks/54887', 'en', 7371); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(15615, 'White Wings: A Yachting Romance, Volume III', 'Black, William', '2013-09-27', 10, 'https://www.gutenberg.org/ebooks/43830', 'en', 7372), +(15616, 'Construction Work for Rural and Elementary Schools', 'McGaw, Virginia', '2009-04-05', 28, 'https://www.gutenberg.org/ebooks/28501', 'en', 7373), +(15617, 'What Will He Do with It? — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 5, 'https://www.gutenberg.org/ebooks/7659', 'en', 137), +(15618, 'Ports of Entry: Missionary Herald', 'Home Missions Council (U.S.)', '2017-11-13', 3, 'https://www.gutenberg.org/ebooks/55955', 'en', 7374), +(15619, 'The Leak', 'Futrelle, Jacques', '2011-08-21', 24, 'https://www.gutenberg.org/ebooks/37146', 'en', 7375), +(15620, 'Stories of Red Hanrahan', 'Yeats, W. B. (William Butler)', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5793', 'en', 440), +(15621, 'Steel: The Diary of a Furnace Worker', 'Walker, Charles R. (Charles Rumford)', '2012-02-19', 16, 'https://www.gutenberg.org/ebooks/38932', 'en', 7376), +(15622, 'Old Memories: Amusing and Historical', 'MacPherson, Daniel, Mrs.', '2016-10-29', 3, 'https://www.gutenberg.org/ebooks/53403', 'en', 7377), +(15623, 'The Closed Book: Concerning the Secret of the Borgias', 'Le Queux, William', '2012-09-22', 6, 'https://www.gutenberg.org/ebooks/40828', 'en', 759), +(15624, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon, Tome 3', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2007-04-10', 6, 'https://www.gutenberg.org/ebooks/21023', 'fr', 2666), +(15625, 'Notes and Queries, Number 55, November 16, 1850', 'Various', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/15216', 'en', 105), +(15626, 'Irvin Cobb, His Book:\r\nFriendly Tributes upon the Occasion of a Dinner Tendered to Irvin Shrewsbury Cobb at the Waldorf-Astoria Hotel, New York, April Twenty-Fifth, MCMXV', 'Various', '2019-03-27', 10, 'https://www.gutenberg.org/ebooks/59139', 'en', 7378), +(15627, 'La guerra dei pirati e la marina pontificia dal 1500 al 1560, vol. 2', 'Guglielmotti, Alberto P.', '2014-05-02', 11, 'https://www.gutenberg.org/ebooks/45566', 'it', 645), +(15628, 'Our Boys, and Other Poems', 'Strang, Alan L.', '2011-05-13', 15, 'https://www.gutenberg.org/ebooks/36094', 'en', 178), +(15629, 'Starr King in California', 'Simonds, William Day', '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/4641', 'en', 7379), +(15630, 'Lettres écrites d\'Égypte et de Nubie en 1828 et 1829', 'Champollion, Jean-François', '2004-01-01', 50, 'https://www.gutenberg.org/ebooks/10764', 'fr', 2589), +(15631, 'Oxford', 'How, F. D. (Frederick Douglas)', '2008-02-08', 14, 'https://www.gutenberg.org/ebooks/24551', 'en', 7380), +(15632, 'Robert F. Murray (Author of the Scarlet Gown): His Poems; with a Memoir', 'Murray, R. F. (Robert Fuller)', '1998-06-01', 22, 'https://www.gutenberg.org/ebooks/1333', 'en', 8), +(15633, 'John Burnet of Barns: A Romance', 'Buchan, John', '2012-06-17', 20, 'https://www.gutenberg.org/ebooks/40014', 'en', 98), +(15634, 'Plain-chant', 'Cocteau, Jean', '2019-07-12', 144, 'https://www.gutenberg.org/ebooks/59905', 'fr', 3718), +(15635, 'All In The Mind', 'Henderson, Gene L.', '2010-05-19', 26, 'https://www.gutenberg.org/ebooks/32434', 'en', 26), +(15636, 'In the Time That Was', 'Thorne, James Frederic', '2008-05-16', 16, 'https://www.gutenberg.org/ebooks/25483', 'en', 7381), +(15637, 'A Journey in Brazil', 'Agassiz, Elizabeth Cabot Cary', '2017-12-12', 15, 'https://www.gutenberg.org/ebooks/56171', 'en', 4395), +(15638, 'What\'s the Matter with Ireland?', 'Russell, Ruth', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12033', 'en', 7115), +(15639, 'Pandemic', 'Bone, Jesse F. (Jesse Franklin)', '2008-08-06', 51, 'https://www.gutenberg.org/ebooks/26206', 'en', 179), +(15640, 'Tish: The Chronicle of Her Escapades and Excursions', 'Rinehart, Mary Roberts', '2005-02-16', 71, 'https://www.gutenberg.org/ebooks/3464', 'en', 557), +(15641, 'Les Romans de la Table Ronde (1 / 5)\r\nMis en nouveau langage et accompagnés de recherches sur l\'origine et le caractère de ces grandes compositions', NULL, '2013-05-20', 16, 'https://www.gutenberg.org/ebooks/42743', 'fr', 5637), +(15642, 'Nouvelles Asiatiques', 'Gobineau, Arthur, comte de', '2015-02-16', 9, 'https://www.gutenberg.org/ebooks/48279', 'fr', 7280), +(15643, 'The History of the Catnach Press\r\nat Berwick-Upon-Tweed, Alnwick and Newcastle-Upon-Tyne, in Northumberland, and Seven Dials, London', 'Hindley, Charles', '2013-09-10', 18, 'https://www.gutenberg.org/ebooks/43691', 'en', 7382), +(15644, 'Souvenirs militaires de 1804 à 1814', 'Fezensac, Raymond-Aymery-Philippe-Joseph de Montesquiou, duc de', '2009-10-31', 20, 'https://www.gutenberg.org/ebooks/30363', 'fr', 7383), +(15645, 'Being a Summary Statement of the Investigation Made by the British Government of the \"Mormon\" Question in England', 'Beeley, Arthur L. (Arthur Lawton)', '2017-04-29', 10, 'https://www.gutenberg.org/ebooks/54626', 'en', 7384), +(15646, 'Nick Baba\'s Last Drink and Other Sketches', 'Goff, George Paul', '2006-06-05', 5, 'https://www.gutenberg.org/ebooks/18509', 'en', 179), +(15647, 'The Great Return', 'Machen, Arthur', '2011-03-18', 50, 'https://www.gutenberg.org/ebooks/35611', 'en', 7385), +(15648, 'The Man Without a Country', 'Hale, Edward Everett', '2005-08-08', 59, 'https://www.gutenberg.org/ebooks/16493', 'en', 98), +(15649, 'Patty\'s Fortune', 'Wells, Carolyn', '2016-03-04', 22, 'https://www.gutenberg.org/ebooks/51354', 'en', 7386), +(15650, 'La Asocio de la Junuloj: Dramo en kvin aktoj', 'Ibsen, Henrik', '2007-12-08', 4, 'https://www.gutenberg.org/ebooks/23774', 'eo', 402), +(15651, 'Punchinello, Volume 1, No. 08, May 21, 1870', 'Various', '2006-02-01', 14, 'https://www.gutenberg.org/ebooks/9962', 'en', 372), +(15652, 'The Wicker Work Woman: A Chronicle of Our Own Times', 'France, Anatole', '2015-10-23', 7, 'https://www.gutenberg.org/ebooks/50286', 'en', 58), +(15653, 'La culture des idées', 'Gourmont, Remy de', '2006-01-18', 8, 'https://www.gutenberg.org/ebooks/17541', 'fr', 20), +(15654, 'Who was the Commander at Bunker Hill?\nWith Remarks on Frothingham\'s History of the Battle', 'Swett, Samuel', '2014-10-29', 13, 'https://www.gutenberg.org/ebooks/47231', 'en', 7387), +(15655, 'Out of the Primitive', 'Bennet, Robert Ames', '2004-07-01', 15, 'https://www.gutenberg.org/ebooks/6116', 'en', 716), +(15656, 'Cyprus, as I Saw It in 1879', 'Baker, Samuel White, Sir', '2003-01-01', 45, 'https://www.gutenberg.org/ebooks/3656', 'en', 7388), +(15657, 'The Recipe for Diamonds', 'Hyne, Charles John Cutcliffe Wright', '2010-01-26', 36, 'https://www.gutenberg.org/ebooks/31083', 'en', 61), +(15658, 'A Nursery Rhyme Picture Book\nWith Drawings in Colour and Black and White', 'Brooke, L. Leslie (Leonard Leslie)', '2009-08-28', 65, 'https://www.gutenberg.org/ebooks/29840', 'en', 859), +(15659, 'Der schmale Weg zum Glück', 'Ernst, Paul', '2015-06-12', 8, 'https://www.gutenberg.org/ebooks/49199', 'de', 253), +(15660, 'Travels in South Kensington\nwith Notes on Decorative Art and Architecture in England', 'Conway, Moncure Daniel', '2013-04-22', 22, 'https://www.gutenberg.org/ebooks/42571', 'en', 7389), +(15661, 'The Money Box\nOdd Craft, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/12201', 'en', 1902), +(15662, 'Grey Town\nAn Australian Story', 'Baldwin, Gerald', '2008-07-12', 17, 'https://www.gutenberg.org/ebooks/26034', 'en', 792), +(15663, 'Courtship of Miles Standish\nMinnehaha Edition', 'Longfellow, Henry Wadsworth', '2017-03-23', 47, 'https://www.gutenberg.org/ebooks/54414', 'en', 7390), +(15664, 'James Madison', 'Gay, Sydney Howard', '2009-05-29', 13, 'https://www.gutenberg.org/ebooks/28992', 'en', 7391), +(15665, 'Colonel Starbottle\'s Client', 'Harte, Bret', '2006-03-27', 25, 'https://www.gutenberg.org/ebooks/2784', 'en', 315), +(15666, 'Macedonia: A Nation at a Crossroads', 'Vaknin, Samuel', '2009-10-01', 20, 'https://www.gutenberg.org/ebooks/30151', 'en', 7392), +(15667, 'Ferien an der Adria: Bilder aus Süd-Österreich', 'Heer, J. C. (Jakob Christoph)', '2016-01-10', 9, 'https://www.gutenberg.org/ebooks/50888', 'de', 7393), +(15668, 'Mrs. Loudon\'s Entertaining Naturalist\r\nBeing popular descriptions, tales, and anecdotes of more than Five Hundred Animals.', 'Loudon, Mrs. (Jane)', '2016-02-10', 7, 'https://www.gutenberg.org/ebooks/51166', 'en', 7394), +(15669, 'Der Bär: Groteske in einem Aufzug', 'Chekhov, Anton Pavlovich', '2007-09-02', 47, 'https://www.gutenberg.org/ebooks/22494', 'de', 7273), +(15670, 'The Storm Centre: A Novel', 'Murfree, Mary Noailles', '2011-02-27', 19, 'https://www.gutenberg.org/ebooks/35423', 'en', 403), +(15671, 'Ma conversion; ou le libertin de qualité', 'Mirabeau, Honoré-Gabriel de Riqueti, comte de', '2008-10-07', 44, 'https://www.gutenberg.org/ebooks/26808', 'fr', 7395), +(15672, 'Dimbie and I—and Amelia', 'Barnes-Grundy, Mabel', '2014-09-29', 18, 'https://www.gutenberg.org/ebooks/47003', 'en', 675), +(15673, 'The Story of a White Rocking Horse', 'Hope, Laura Lee', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/6324', 'en', 1235), +(15674, 'The Alberta Public School Speller\nAuthorized by the Minister of Education for Alberta', 'Anonymous', '2015-05-04', 16, 'https://www.gutenberg.org/ebooks/48877', 'en', 7396), +(15675, 'Wealth of the World\'s Waste Places and Oceania', 'Gilson, Jewett C. (Jewett Castello)', '2007-11-19', 52, 'https://www.gutenberg.org/ebooks/23546', 'en', 7397), +(15676, 'Slavery\'s Passed Away and Other Songs', 'Various', '2006-02-16', 24, 'https://www.gutenberg.org/ebooks/17773', 'en', 7398), +(15677, 'Canyon de Chelly: The Story of Its Ruins and People', 'Bradley, Zorro A.', '2016-11-29', 10, 'https://www.gutenberg.org/ebooks/53631', 'en', 7399), +(15678, 'The True Story of My Parliamentary Struggle', 'Bradlaugh, Charles', '2011-09-10', 11, 'https://www.gutenberg.org/ebooks/37374', 'en', 7400), +(15679, 'Life of Wm. Tecumseh Sherman.\nLate Retired General. U. S. A.', 'Johnson, Willis Fletcher', '2014-01-17', 14, 'https://www.gutenberg.org/ebooks/44686', 'en', 1177), +(15680, 'ABC Butter Making: A Hand-Book for the Beginner', 'Burch, Frederick S.', '2014-05-25', 31, 'https://www.gutenberg.org/ebooks/45754', 'en', 7401), +(15681, 'One of Our Conquerors — Volume 3', 'Meredith, George', '2003-09-01', 8, 'https://www.gutenberg.org/ebooks/4473', 'en', 137), +(15682, 'Silverpoints', 'Gray, John', '2007-04-24', 41, 'https://www.gutenberg.org/ebooks/21211', 'en', 54), +(15683, '\"Sämre folk\"\r\nEn berättelse', 'Sten, Daniel', '2005-02-12', 13, 'https://www.gutenberg.org/ebooks/15024', 'sv', 61), +(15684, 'The Second Part of King Henry the Sixth', 'Shakespeare, William', '1997-11-01', 22, 'https://www.gutenberg.org/ebooks/1101', 'en', 599), +(15685, 'The Fall of Prince Florestan of Monaco', 'Dilke, Charles Wentworth, Sir', '2012-07-14', 13, 'https://www.gutenberg.org/ebooks/40226', 'en', 7402), +(15686, 'The Old Man in the Corner', 'Orczy, Emmuska Orczy, Baroness', '2004-01-01', 215, 'https://www.gutenberg.org/ebooks/10556', 'en', 3511), +(15687, 'Keys to Fungi on Dung', 'Watling, Roy', '2018-06-08', 11, 'https://www.gutenberg.org/ebooks/57291', 'en', 7403), +(15688, 'La Kantistino', 'Hauff, Wilhelm', '2008-03-06', 6, 'https://www.gutenberg.org/ebooks/24763', 'eo', 3994), +(15689, 'Schen: Studien aus einer chinesischen Weltstadt', 'Secker, Fritz', '2018-01-09', 11, 'https://www.gutenberg.org/ebooks/56343', 'de', 2773), +(15690, 'Le pilote du Danube', 'Verne, Jules', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11484', 'fr', 7404), +(15691, 'The Melting of Molly', 'Daviess, Maria Thompson', '2005-05-12', 16, 'https://www.gutenberg.org/ebooks/15818', 'en', 48), +(15692, 'Dorothy on a House Boat', 'Raymond, Evelyn', '2010-05-30', 105, 'https://www.gutenberg.org/ebooks/32606', 'en', 7405), +(15693, '喻世明言', 'Feng, Menglong', '2008-12-21', 63, 'https://www.gutenberg.org/ebooks/27582', 'zh', 4473), +(15694, 'Il nuovo lume delle gioie\r\nOpera utilissima ad\'ogni persona, così a orefici, e speciali, per l\'arte pratico.', 'Caliari, Pietro', '2017-01-29', 13, 'https://www.gutenberg.org/ebooks/54070', 'it', 7406), +(15695, 'George Silverman\'s Explanation', 'Dickens, Charles', '2006-01-01', 0, 'https://www.gutenberg.org/ebooks/9708', 'en', 61), +(15696, 'El origen del pensamiento', 'Palacio Valdés, Armando', '2009-11-23', 94, 'https://www.gutenberg.org/ebooks/30535', 'es', 1696), +(15697, 'Songs of the Ridings', 'Moorman, F. W. (Frederic William)', '2002-05-01', 17, 'https://www.gutenberg.org/ebooks/3232', 'en', 7407), +(15698, 'The Trail-Hunter: A Tale of the Far West', 'Aimard, Gustave', '2013-02-17', 28, 'https://www.gutenberg.org/ebooks/42115', 'en', 61), +(15699, 'Galipettes', 'Galipaux, Félix', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12665', 'fr', 642), +(15700, 'The Story of Paris', 'Okey, Thomas', '2008-08-28', 34, 'https://www.gutenberg.org/ebooks/26450', 'en', 2972), +(15701, 'Lingam: Zwölf asiatische Novellen', 'Dauthendey, Max', '2014-11-26', 20, 'https://www.gutenberg.org/ebooks/47467', 'de', 1212), +(15702, 'Notes and Queries, Number 229, March 18, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-11-02', 5, 'https://www.gutenberg.org/ebooks/34195', 'en', 105), +(15703, 'Don Garcia of Navarre; Or, the Jealous Prince. A Heroic Comedy in Five Acts.', 'Molière', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6740', 'en', 901), +(15704, 'The Well in the Desert\nAn Old Legend of the House of Arundel', 'Holt, Emily Sarah', '2007-10-20', 14, 'https://www.gutenberg.org/ebooks/23122', 'en', 98), +(15705, 'Genio y figura', 'Valera, Juan', '2005-12-16', 25, 'https://www.gutenberg.org/ebooks/17317', 'es', 98), +(15706, 'The Mentor: The Ring of the Nibelung, Vol. 3, Num. 24, Serial No. 100, February 1, 1916', 'Finck, Henry T.', '2016-03-19', 14, 'https://www.gutenberg.org/ebooks/51502', 'en', 7408), +(15707, 'Sperduti nel buio: Dramma in tre atti', 'Bracco, Roberto', '2013-06-12', 14, 'https://www.gutenberg.org/ebooks/42929', 'it', 407), +(15708, 'The Man from Time', 'Long, Frank Belknap', '2009-07-15', 48, 'https://www.gutenberg.org/ebooks/29418', 'en', 179), +(15709, 'Little Robins\' Love One to Another', 'Leslie, Madeline', '2011-01-23', 6, 'https://www.gutenberg.org/ebooks/35047', 'en', 7409), +(15710, 'A Strange Story — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7692', 'en', 137), +(15711, 'Arvid Kurck och hans samtida', 'Lindman, Volmar', '2014-04-06', 11, 'https://www.gutenberg.org/ebooks/45330', 'sv', 7410), +(15712, 'The Hollow Needle; Further adventures of Arsene Lupin', 'Leblanc, Maurice', '2003-05-01', 146, 'https://www.gutenberg.org/ebooks/4017', 'en', 1286), +(15713, 'The Olden Time Series, Vol. 4: Quaint and Curious Advertisements\nGleanings Chiefly from Old Newspapers of Boston and Salem, Massachusetts', 'Brooks, Henry M. (Henry Mason)', '2007-06-04', 23, 'https://www.gutenberg.org/ebooks/21675', 'en', 4354), +(15714, 'Kansallista itsetutkistelua: Suomalaisia kulttuuri-ääriviivoja', 'Kilpi, Volter', '2005-03-23', 23, 'https://www.gutenberg.org/ebooks/15440', 'fi', 7411), +(15715, 'Gabriele Rossetti: A Versified Autobiography', 'Rossetti, Gabriele', '2016-06-21', 2, 'https://www.gutenberg.org/ebooks/52387', 'en', 7412), +(15716, 'Harper\'s Round Table, February 11, 1896', 'Various', '2016-10-11', 1, 'https://www.gutenberg.org/ebooks/53255', 'en', 668), +(15717, 'Punch, or the London Charivari, Volume 102, April 9, 1892', 'Various', '2005-01-04', 1, 'https://www.gutenberg.org/ebooks/14592', 'en', 134), +(15718, 'Mavis of Green Hill', 'Baldwin, Faith', '2011-10-11', 23, 'https://www.gutenberg.org/ebooks/37710', 'en', 48), +(15719, 'The Irish Crisis', 'Trevelyan, Charles E. (Charles Edward)', '2018-03-12', 15, 'https://www.gutenberg.org/ebooks/56727', 'en', 7413), +(15720, 'Quintus Oakes: A Detective Story', 'Jackson, Charles Ross', '2013-01-06', 25, 'https://www.gutenberg.org/ebooks/41790', 'en', 61), +(15721, 'English Verse: Specimens Illustrating its Principles and History', 'Alden, Raymond MacDonald', '2010-05-05', 19, 'https://www.gutenberg.org/ebooks/32262', 'en', 7414), +(15722, 'The Last Days of Pompeii', 'Lytton, Edward Bulwer Lytton, Baron', '2006-02-19', 156, 'https://www.gutenberg.org/ebooks/1565', 'en', 98), +(15723, 'Story of the Aeroplane', 'Galbreath, C. B. (Charles Burleigh)', '2012-02-03', 46, 'https://www.gutenberg.org/ebooks/38758', 'en', 7415), +(15724, 'Notes and Queries, Vol. V, Number 116, January 17, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-01', 12, 'https://www.gutenberg.org/ebooks/40642', 'en', 105), +(15725, 'The Sowers', 'Merriman, Henry Seton', '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/10132', 'en', 1014), +(15726, 'The Twenty-fifth Regiment Connecticut Volunteers in the War of the Rebellion\nHistory, Reminiscences, Description of Battle of Irish\nBend, Carrying of Pay Roll, Roster', 'Ellis, Samuel K.', '2008-01-15', 29, 'https://www.gutenberg.org/ebooks/24307', 'en', 2268), +(15727, 'The Three Admirals', 'Kingston, William Henry Giles', '2007-05-15', 36, 'https://www.gutenberg.org/ebooks/21447', 'en', 195), +(15728, 'Dictionary of the Chinook Jargon, or, Trade Language of Oregon', 'Gibbs, George', '2005-04-20', 54, 'https://www.gutenberg.org/ebooks/15672', 'en', 7416), +(15729, 'Salvador of the Twentieth Century', 'Martin, Percy F. (Percy Falcke)', '2014-03-09', 72, 'https://www.gutenberg.org/ebooks/45102', 'en', 7417), +(15730, 'First and Last Things: A Confession of Faith and Rule of Life', 'Wells, H. G. (Herbert George)', '2003-07-01', 37, 'https://www.gutenberg.org/ebooks/4225', 'en', 740), +(15731, 'Kort verhaal van eene aanmerkelijke luchtreis en nieuwe planeetontdekking', 'Bilderdijk, Willem', '2011-09-24', 19, 'https://www.gutenberg.org/ebooks/37522', 'nl', 26), +(15732, 'The Golden Magnet', 'Fenn, George Manville', '2008-03-24', 35, 'https://www.gutenberg.org/ebooks/24909', 'en', 2322), +(15733, 'Color Cement Handicraft', 'Lemos, Reta A.', '2016-09-17', 9, 'https://www.gutenberg.org/ebooks/53067', 'en', 7418), +(15734, 'The Awful German Language', 'Twain, Mark', '2007-01-20', 46, 'https://www.gutenberg.org/ebooks/20595', 'en', 190), +(15735, 'Peter Camenzind', 'Hesse, Hermann', '2016-09-05', 18, 'https://www.gutenberg.org/ebooks/52989', 'fi', 1080), +(15736, 'The Plants of Michigan\r\nSimple Keys for the Identification of the Native Seed Plants of the State', 'Gleason, Henry A. (Henry Allan)', '2010-04-19', 20, 'https://www.gutenberg.org/ebooks/32050', 'en', 7419), +(15737, 'Fleurs sauvages: Poésies', 'Valois, Léonise', '2018-02-07', 7, 'https://www.gutenberg.org/ebooks/56515', 'fr', 7420), +(15738, 'Snyder, Does Your Mother Know You\'re Out?', NULL, '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10300', 'en', 7421), +(15739, 'The Measure of a Man', 'Garrett, Randall', '2008-01-03', 56, 'https://www.gutenberg.org/ebooks/24135', 'en', 26), +(15740, 'The Cruise of the Dolphin', 'Aldrich, Thomas Bailey', '1999-05-01', 16, 'https://www.gutenberg.org/ebooks/1757', 'en', 7422), +(15741, 'Entre o caffé e o cognac', 'Pimentel, Alberto', '2010-07-16', 27, 'https://www.gutenberg.org/ebooks/33182', 'pt', 410), +(15742, 'Expositor\'s Bible: The Book of Job', 'Watson, Robert A. (Robert Alexander)', '2012-08-10', 31, 'https://www.gutenberg.org/ebooks/40470', 'en', 7423), +(15743, 'The story of Burnt Njal: From the Icelandic of the Njals Saga', NULL, '2006-03-04', 95, 'https://www.gutenberg.org/ebooks/17919', 'en', 7424), +(15744, 'Cyrus the Great\nMakers of History', 'Abbott, Jacob', '2009-12-18', 78, 'https://www.gutenberg.org/ebooks/30707', 'en', 7425), +(15745, 'The Millennium, and Other Poems\r\nTo Which is Annexed, a Treatise on the Regeneration and Eternal Duration of Matter', 'Pratt, Parley P. (Parley Parker)', '2019-08-09', 800, 'https://www.gutenberg.org/ebooks/60077', 'en', 377), +(15746, 'De profundis', 'Wilde, Oscar', '2004-10-03', 43, 'https://www.gutenberg.org/ebooks/13585', 'nl', 7170), +(15747, 'Väinämöiset: Yksi kokous meijän nykyisten runojain virren-teoista', 'Gottlund, C. A. (Carl Axel)', '2017-02-26', 7, 'https://www.gutenberg.org/ebooks/54242', 'fi', 7426), +(15748, 'Triumphs and Wonders of the 19th Century: The True Mirror of a Phenomenal Era\r\nA volume of original, entertaining and instructive historic and descriptive writings, showing the many and marvellous achievements which distinguish an hundred years of material, intellectual, social and moral progress', 'Boyd, James P. (James Penny)', '2017-08-20', 41, 'https://www.gutenberg.org/ebooks/55390', 'en', 7427), +(15749, 'El Diablo Cojuelo', 'Vélez de Guevara, Luis', '2004-05-01', 40, 'https://www.gutenberg.org/ebooks/12457', 'es', 5436), +(15750, 'The First Distiller', 'Tolstoy, Leo, graf', '2008-09-20', 21, 'https://www.gutenberg.org/ebooks/26662', 'en', 4249), +(15751, 'A l\'ombre des jeunes filles en fleurs — Troisième partie', 'Proust, Marcel', '2001-12-01', 85, 'https://www.gutenberg.org/ebooks/3000', 'fr', 957), +(15752, 'Peter of New Amsterdam: A Story of Old New York', 'Otis, James', '2013-03-13', 9, 'https://www.gutenberg.org/ebooks/42327', 'en', 1708), +(15753, 'Bird Stories and Dog Stories', 'Anonymous', '2007-11-03', 16, 'https://www.gutenberg.org/ebooks/23310', 'en', 1602), +(15754, 'More William', 'Crompton, Richmal', '2005-11-21', 132, 'https://www.gutenberg.org/ebooks/17125', 'en', 637), +(15755, 'Six Girls and Bob: A Story of Patty-Pans and Green Fields', 'Taggart, Marion Ames', '2014-12-13', 35, 'https://www.gutenberg.org/ebooks/47655', 'en', 1123), +(15756, 'Benefits Forgot\nA Story of Lincoln and Mother Love', 'Morrow, Honoré', '2006-07-31', 18, 'https://www.gutenberg.org/ebooks/18951', 'en', 1457), +(15757, 'History of the Decline and Fall of the Roman Empire — Volume 6', 'Gibbon, Edward', '2008-06-07', 60, 'https://www.gutenberg.org/ebooks/895', 'en', 1292), +(15758, 'Haste and Waste; Or, the Young Pilot of Lake Champlain. A Story for Young People', 'Optic, Oliver', '2004-09-01', 17, 'https://www.gutenberg.org/ebooks/6572', 'en', 4837), +(15759, '30,000 Locked Out: The Great Strike of the Building Trades in Chicago', 'Beeks, James C.', '2011-02-14', 26, 'https://www.gutenberg.org/ebooks/35275', 'en', 7428), +(15760, 'Speranze e glorie; Le tre capitali: Torino, Firenze, Roma', 'De Amicis, Edmondo', '2006-11-21', 18, 'https://www.gutenberg.org/ebooks/19883', 'it', 2452), +(15761, 'Grapes of wrath', 'Cable, Boyd', '2014-09-06', 384, 'https://www.gutenberg.org/ebooks/46787', 'en', 7429), +(15762, 'Life of David W. Patten, the First Apostolic Martyr', 'Wilson, Lycurgus A. (Lycurgus Arnold)', '2016-04-11', 17, 'https://www.gutenberg.org/ebooks/51730', 'en', 7430), +(15763, 'Little Folks (September 1884)\r\nA Magazine for the Young', 'Various', '2008-12-20', 22, 'https://www.gutenberg.org/ebooks/27576', 'en', 1860), +(15764, 'List of Post Offices in Canada, with the Names of the Postmasters ... 1865', 'Canada. Post Office Department', '2017-01-31', 3, 'https://www.gutenberg.org/ebooks/54084', 'en', 4740), +(15765, 'Le Côté de Guermantes - Troisième partie', 'Proust, Marcel', '2004-10-14', 60, 'https://www.gutenberg.org/ebooks/13743', 'fr', 957), +(15766, 'La lucha por la vida: Mala hierba', 'Baroja, Pío', '2013-06-25', 20, 'https://www.gutenberg.org/ebooks/43033', 'es', 1384), +(15767, 'Geschichte des Agathon. Teil 2', 'Wieland, Christoph Martin', '2000-09-01', 23, 'https://www.gutenberg.org/ebooks/2314', 'de', 1080), +(15768, 'The Story of Extinct Civilizations of the West', 'Anderson, Robert E. (Robert Edward), M.A., F.A.S.', '2010-02-26', 31, 'https://www.gutenberg.org/ebooks/31413', 'en', 1368), +(15769, 'Country Lodgings', 'Mitford, Mary Russell', '2007-10-02', 12, 'https://www.gutenberg.org/ebooks/22838', 'en', 500), +(15770, 'My Escape from Germany', 'Keith, Eric A.', '2015-07-23', 7, 'https://www.gutenberg.org/ebooks/49509', 'en', 1390), +(15771, 'Memorials of the Faithful', '`Abdu\'l-Bahá', '2006-09-17', 18, 'https://www.gutenberg.org/ebooks/19279', 'en', 7431), +(15772, 'The High School Left End; or, Dick & Co. Grilling on the Football Gridiron', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/12691', 'en', 5031), +(15773, 'The American Missionary — Volume 33, No. 11, November, 1879', 'Various', '2017-07-20', 3, 'https://www.gutenberg.org/ebooks/55156', 'en', 395), +(15774, 'Fort Pulaski National Monument, Georgia', 'Lattimore, Ralston B.', '2014-11-29', 11, 'https://www.gutenberg.org/ebooks/47493', 'en', 3543), +(15775, 'The Story of the Great War, Volume 7\r\nAmerican Food and Ships; Palestine; Italy invaded; Great German Offensive; Americans in Picardy; Americans on the Marne; Foch\'s Counteroffensive.', NULL, '2010-11-05', 51, 'https://www.gutenberg.org/ebooks/34161', 'en', 335), +(15776, 'The Impending Crisis\nConditions Resulting from the Concentration of Wealth in the United States', 'Bouroff, Basil A.', '2015-11-10', 10, 'https://www.gutenberg.org/ebooks/50424', 'en', 7432), +(15777, '\"Forward, March\": A Tale of the Spanish-American War', 'Munroe, Kirk', '2005-07-07', 14, 'https://www.gutenberg.org/ebooks/16231', 'en', 7433), +(15778, 'The Genius', 'Potter, Margaret Horton', '2007-07-05', 10, 'https://www.gutenberg.org/ebooks/22004', 'en', 7434), +(15779, 'What Will He Do with It? — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7666', 'en', 137), +(15780, 'Le Tour du monde en quatre-vingts jours', 'Verne, Jules', '2014-08-09', 48, 'https://www.gutenberg.org/ebooks/46541', 'fr', 1158), +(15781, 'U.S. Copyright Renewals, 1963 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11828', 'en', 4170), +(15782, 'A Night in Avignon', 'Rice, Cale Young', '2011-07-05', 11, 'https://www.gutenberg.org/ebooks/36636', 'en', 402), +(15783, 'A Little Traitor to the South\r\nA War Time Comedy with a Tragic Interlude', 'Brady, Cyrus Townsend', '2007-06-05', 25, 'https://www.gutenberg.org/ebooks/21681', 'en', 403), +(15784, 'Die Milchstraße', 'Kahn, Fritz', '2016-06-19', 19, 'https://www.gutenberg.org/ebooks/52373', 'de', 7435), +(15785, 'Three Great Epoch-Makers in Music', 'Farnsworth, Edward Clarence', '2019-01-07', 10, 'https://www.gutenberg.org/ebooks/58649', 'en', 7436), +(15786, 'Elsie\'s Motherhood', 'Finley, Martha', '2005-01-03', 56, 'https://www.gutenberg.org/ebooks/14566', 'en', 1410), +(15787, 'The Wonder Island Boys: The Tribesmen', 'Finlay, Roger Thompson', '2007-03-06', 31, 'https://www.gutenberg.org/ebooks/20753', 'en', 550), +(15788, 'Childe Harold\'s Pilgrimage', 'Byron, George Gordon Byron, Baron', '2004-02-01', 571, 'https://www.gutenberg.org/ebooks/5131', 'en', 54), +(15789, 'Téli zöld: Válogatott elbeszélések az ifjuság számára', 'Jókai, Mór', '2013-11-18', 15, 'https://www.gutenberg.org/ebooks/44216', 'hu', 234), +(15790, 'Philippian Studies\nLessons in Faith and Love from St. Paul\'s Epistle to the Philippians', 'Moule, H. C. G. (Handley Carr Glyn)', '2008-04-28', 17, 'https://www.gutenberg.org/ebooks/25221', 'en', 3399), +(15791, 'Christmas in Legend and Story\nA Book for Boys and Girls', 'Smith, Elva Sophronia', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11014', 'en', 949), +(15792, 'Albrecht', 'Bates, Arlo', '2013-01-03', 18, 'https://www.gutenberg.org/ebooks/41764', 'en', 61), +(15793, 'Pero da Covilhan: Episodio Romantico do Seculo XV', 'Brandão, Zephyrino', '2010-05-08', 6, 'https://www.gutenberg.org/ebooks/32296', 'pt', 7437), +(15794, 'Narrative of Mr. John Dodge during his Captivity at Detroit', 'Dodge, John', '2010-08-03', 8, 'https://www.gutenberg.org/ebooks/33344', 'en', 7438), +(15795, 'Protagoras', 'Plato', '1999-01-01', 182, 'https://www.gutenberg.org/ebooks/1591', 'en', 7439), +(15796, 'Democracy in France. January 1849', 'Guizot, François', '2018-07-29', 14, 'https://www.gutenberg.org/ebooks/57601', 'en', 3003), +(15797, 'Under the White Ensign: A Naval Story of the Great War', 'Westerman, Percy F. (Percy Francis)', '2016-05-23', 20, 'https://www.gutenberg.org/ebooks/52141', 'en', 7440), +(15798, 'La belle Gabrielle — Tome 3', 'Maquet, Auguste', '2005-04-23', 10, 'https://www.gutenberg.org/ebooks/15686', 'fr', 687), +(15799, 'The Handbook of Conundrums', 'Ordway, Edith B. (Edith Bertha)', '2010-06-19', 48, 'https://www.gutenberg.org/ebooks/32898', 'en', 5882), +(15800, 'Memoria hydrografica das ilhas de Cabo Verde\r\npara servir de instrucção a carta das mesmas ilhas, publicada em o anno de 1790', 'Cabral, F. A. (Francisco Antonio)', '2011-06-12', 7, 'https://www.gutenberg.org/ebooks/36404', 'pt', 7441), +(15801, 'The Little Hunchback Zia', 'Burnett, Frances Hodgson', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5303', 'en', 585), +(15802, 'The Book of War: The Military Classic of the Far East\nThe Articles of Suntzu; The Sayings of Wutzu', 'Wu, Qi', '2013-10-23', 267, 'https://www.gutenberg.org/ebooks/44024', 'en', 5135), +(15803, 'An Illustrated History of Ireland from AD 400 to 1800', 'Cusack, Mary Frances', '2005-01-22', 30, 'https://www.gutenberg.org/ebooks/14754', 'en', 7442), +(15804, 'The Defence of Lucknow\r\nA Diary Recording the Daily Events during the Siege of the European Residency, from 31st May to 25th September, 1857', 'Wilson, T. F. (Thomas Fourness)', '2016-09-19', 18, 'https://www.gutenberg.org/ebooks/53093', 'en', 7443), +(15805, 'Little Ferns For Fanny\'s Little Friends', 'Fern, Fanny', '2007-02-11', 18, 'https://www.gutenberg.org/ebooks/20561', 'en', 1817), +(15806, 'The Celebrity at Home', 'Hunt, Violet', '2012-12-04', 11, 'https://www.gutenberg.org/ebooks/41556', 'en', 406), +(15807, 'How to Make a Shoe', 'Headley, John Parker', '2008-04-07', 69, 'https://www.gutenberg.org/ebooks/25013', 'en', 7444), +(15808, 'Building a State in Apache Land', 'Poston, Charles D. (Charles Debrille)', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11226', 'en', 7445), +(15809, 'The Southern Literary Messenger, Vol. I., No. 7, March, 1835', 'Various', '2018-07-02', 13, 'https://www.gutenberg.org/ebooks/57433', 'en', 522), +(15810, 'Christ Legends', 'Lagerlöf, Selma', '2014-02-01', 35, 'https://www.gutenberg.org/ebooks/44818', 'en', 179), +(15811, 'Tappet and Dobby Looms: Their Mechanism and Management', 'Roberts, Thomas', '2010-07-15', 8, 'https://www.gutenberg.org/ebooks/33176', 'en', 7446), +(15812, 'Black Star\'s Campaign: A Detective Story', 'McCulley, Johnston', '2012-08-12', 26, 'https://www.gutenberg.org/ebooks/40484', 'en', 61), +(15813, 'Multiplied Blessings: Eighteen Short Readings', 'Hoare, Edward', '2013-07-12', 14, 'https://www.gutenberg.org/ebooks/43201', 'en', 7447), +(15814, 'The Quest of the Sacred Slipper', 'Rohmer, Sax', '2000-03-01', 81, 'https://www.gutenberg.org/ebooks/2126', 'en', 128), +(15815, 'Harper\'s Round Table, December 8, 1896', 'Various', '2019-08-09', 215, 'https://www.gutenberg.org/ebooks/60083', 'en', 668), +(15816, 'Remarks on Clarissa (1749)', 'Fielding, Sarah', '2009-01-08', 18, 'https://www.gutenberg.org/ebooks/27744', 'en', 7448), +(15817, 'Le Collier de la Reine, Tome I', 'Dumas, Alexandre', '2006-04-18', 34, 'https://www.gutenberg.org/ebooks/18199', 'fr', 984), +(15818, 'Notes and Queries, Index of Volume 2, May-December, 1850\r\nA Medium of Inter-Communication for Literary Men, Artists, Antiquaries, Genealogists, Etc.', 'Various', '2004-10-01', 25, 'https://www.gutenberg.org/ebooks/13571', 'en', 105), +(15819, 'Under King Henry\'s Banners: A story of the days of Agincourt', 'Westerman, Percy F. (Percy Francis)', '2017-08-16', 13, 'https://www.gutenberg.org/ebooks/55364', 'en', 7449), +(15820, 'Spaens Heydinnetie', 'Cats, Jacob', '2008-09-24', 10, 'https://www.gutenberg.org/ebooks/26696', 'nl', 7450), +(15821, 'Description of a New Softshell Turtle from the Southeastern United States', 'Webb, Robert G.', '2010-03-13', 24, 'https://www.gutenberg.org/ebooks/31621', 'en', 7451), +(15822, 'Die Technik des Dramas', 'Freytag, Gustav', '2015-12-05', 16, 'https://www.gutenberg.org/ebooks/50616', 'de', 489), +(15823, 'The Cruise of the Kawa: Wanderings in the South Seas', 'Chappell, George S. (George Shepard)', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6586', 'en', 108), +(15824, 'The Forest Habitat of the University of Kansas Natural History Reservation', 'Fitch, Henry S. (Henry Sheldon)', '2010-11-17', 7, 'https://www.gutenberg.org/ebooks/34353', 'en', 7452), +(15825, 'The Dominion of the Air: The Story of Aerial Navigation', 'Bacon, John M. (John Mackenzie)', '1997-03-01', 140, 'https://www.gutenberg.org/ebooks/861', 'en', 7453), +(15826, '顔氏家訓 — Volume 01 and 02', 'Yan, Zhitui', '2005-02-01', 9, 'https://www.gutenberg.org/ebooks/7454', 'zh', 7454), +(15827, 'Jack Haydon\'s Quest', 'Finnemore, John', '2006-11-20', 18, 'https://www.gutenberg.org/ebooks/19877', 'en', 4548), +(15828, 'The Joyous Story of Toto', 'Richards, Laura Elizabeth Howe', '2011-02-14', 23, 'https://www.gutenberg.org/ebooks/35281', 'en', 1817), +(15829, 'Pietro Mascagni, con nota delle opere e ritratto', 'Bastianelli, Giannotto', '2014-09-05', 17, 'https://www.gutenberg.org/ebooks/46773', 'it', 7455), +(15830, 'The Black Baronet; or, The Chronicles Of Ballytrain\nThe Works of William Carleton, Volume One', 'Carleton, William', '2005-06-07', 17, 'https://www.gutenberg.org/ebooks/16003', 'en', 440), +(15831, 'Flag of the Free', 'Jones, Edward Smyth', '2007-08-04', 8, 'https://www.gutenberg.org/ebooks/22236', 'en', 7456), +(15832, 'The Fireside Chats of Franklin Delano Roosevelt\r\nRadio Addresses to the American People Broadcast Between 1933 and 1944', 'Roosevelt, Franklin D. (Franklin Delano)', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5767', 'en', 7457), +(15833, 'Mother Nature\'s Toy-Shop', 'Beard, Lina', '2013-12-16', 27, 'https://www.gutenberg.org/ebooks/44440', 'en', 132), +(15834, 'Die Äbtissin von Castro', 'Stendhal', '2004-12-11', 23, 'https://www.gutenberg.org/ebooks/14330', 'de', 642), +(15835, 'The Land We Live In\nThe Story of Our Country', 'Mann, Henry', '2006-12-13', 145, 'https://www.gutenberg.org/ebooks/20105', 'en', 207), +(15836, 'The Church on the Changing Frontier: A Study of the Homesteader and His Church', 'Belknap, Helen Olive', '2012-05-27', 12, 'https://www.gutenberg.org/ebooks/39814', 'en', 7458), +(15837, 'Kalevala näyttämöllä: I sarja (of 3)', NULL, '2016-07-08', 17, 'https://www.gutenberg.org/ebooks/52525', 'fi', 382), +(15838, 'Reflections on the Rise and Fall of the Ancient Republicks\nAdapted to the Present State of Great Britain', 'Montagu, Edward Wortley', '2014-05-05', 10, 'https://www.gutenberg.org/ebooks/45592', 'en', 7459), +(15839, 'Dal profondo', 'Negri, Ada', '2011-05-08', 28, 'https://www.gutenberg.org/ebooks/36060', 'it', 739), +(15840, 'Healthful Sports for Young Ladies', 'St. Sernin, Mademoiselle', '2018-04-27', 6, 'https://www.gutenberg.org/ebooks/57057', 'en', 755), +(15841, 'Prize Money\nSailor\'s Knots, Part 10.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/10790', 'en', 1902), +(15842, 'The Scottish Journal of Topography, Antiquities, Traditions, &c., Vol. I, No. 22, January 29, 1848', 'Various', '2019-02-04', 7, 'https://www.gutenberg.org/ebooks/58823', 'en', 274), +(15843, 'Hard Pressed', 'White, Fred M. (Fred Merrick)', '2010-08-23', 29, 'https://www.gutenberg.org/ebooks/33512', 'en', 432), +(15844, 'The Song of the Exile—A Canadian Epic', 'Skeats, Wilfred S.', '2007-03-29', 8, 'https://www.gutenberg.org/ebooks/20939', 'en', 28), +(15845, 'The Bomb-Makers\r\nBeing Some Curious Records Concerning the Craft and Cunning of Theodore Drost, an Enemy Alien in London, Together with Certain Revelations Regarding His Daughter Ella', 'Le Queux, William', '2012-10-21', 25, 'https://www.gutenberg.org/ebooks/41132', 'en', 167), +(15846, 'Servian Popular Poetry', NULL, '2012-03-02', 10, 'https://www.gutenberg.org/ebooks/39028', 'en', 7460), +(15847, 'The Curlytops on Star Island; Or, Camping out with Grandpa', 'Garis, Howard Roger', '2008-05-15', 25, 'https://www.gutenberg.org/ebooks/25477', 'en', 3), +(15848, 'What to See in England\r\nA Guide to Places of Historic Interest, Natural Beauty or Literary Association', 'Home, Gordon', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11642', 'en', 7461), +(15849, 'The Abounding American', 'Crosland, T. W. H. (Thomas William Hodgson)', '2017-12-16', 15, 'https://www.gutenberg.org/ebooks/56185', 'en', 7462), +(15850, 'Nouvel atlas de poche des champignons Comestibles et Vénéneux les plus répandus. Série II (Première édition)', 'Dumée, Paul', '2017-12-02', 12, 'https://www.gutenberg.org/ebooks/55700', 'fr', 6834), +(15851, 'Acadian Reminiscences : The True Story of Evangeline', 'Voorhies, Felix', '2010-02-10', 14, 'https://www.gutenberg.org/ebooks/31245', 'en', 7463), +(15852, 'The Admirable Crichton', 'Barrie, J. M. (James Matthew)', '2002-10-01', 118, 'https://www.gutenberg.org/ebooks/3490', 'en', 7464), +(15853, 'The Old Homestead', 'Stephens, Ann S. (Ann Sophia)', '2005-05-01', 41, 'https://www.gutenberg.org/ebooks/8078', 'en', 539), +(15854, 'Java, Facts and Fancies', 'Wit, Augusta de', '2013-09-07', 17, 'https://www.gutenberg.org/ebooks/43665', 'en', 7465), +(15855, 'The Philippine Islands, 1493-1898 - Volume 41 of 55, 1691-1700\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2009-11-02', 21, 'https://www.gutenberg.org/ebooks/30397', 'en', 7466), +(15856, 'A Doll\'s House : a play', 'Ibsen, Henrik', '2001-03-01', 3740, 'https://www.gutenberg.org/ebooks/2542', 'en', 798), +(15857, 'St. John\'s College, Cambridge', 'Scott, Robert Forsyth', '2008-11-24', 20, 'https://www.gutenberg.org/ebooks/27320', 'en', 7467), +(15858, 'Anahuac : or, Mexico and the Mexicans, Ancient and Modern', 'Tylor, Edward B. (Edward Burnett)', '2004-08-04', 21, 'https://www.gutenberg.org/ebooks/13115', 'en', 7468), +(15859, 'The Vital Message', 'Doyle, Arthur Conan', '1996-02-01', 94, 'https://www.gutenberg.org/ebooks/439', 'en', 504), +(15860, 'Field and Hedgerow: Being the Last Essays of Richard Jefferies', 'Jefferies, Richard', '2004-12-01', 43, 'https://www.gutenberg.org/ebooks/7030', 'en', 776), +(15861, 'Ella Clinton; or, By Their Fruits Ye Shall Know Them', 'Finley, Martha', '2014-07-18', 34, 'https://www.gutenberg.org/ebooks/46317', 'en', 470), +(15862, 'Musicians of To-Day', 'Rolland, Romain', '2005-08-07', 45, 'https://www.gutenberg.org/ebooks/16467', 'en', 7469), +(15863, 'Weymouth New Testament in Modern Speech, Titus', 'Weymouth, Richard Francis', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8844', 'en', 7470), +(15864, 'A Campfire Girl\'s Test of Friendship', 'Stewart, Jane L.', '2007-09-17', 31, 'https://www.gutenberg.org/ebooks/22652', 'en', 622), +(15865, 'La sorella', 'Porta, Giambattista della', '2009-03-20', 9, 'https://www.gutenberg.org/ebooks/28368', 'it', 407), +(15866, 'A Little Girl in Old New York', 'Douglas, Amanda M.', '2007-12-09', 31, 'https://www.gutenberg.org/ebooks/23780', 'en', 7471), +(15867, 'The Cruise of The Violetta', 'Colton, Arthur', '2015-10-21', 7, 'https://www.gutenberg.org/ebooks/50272', 'en', 7472), +(15868, '\"\'Tis Sixty Years Since\"\r\nAddress of Charles Francis Adams; Founders\' Day, January 16, 1913', 'Adams, Charles Francis', '2006-02-01', 27, 'https://www.gutenberg.org/ebooks/9996', 'en', 2694), +(15869, 'Ilka on the Hill-Top and Other Stories', 'Boyesen, Hjalmar Hjorth', '2004-11-02', 8, 'https://www.gutenberg.org/ebooks/13929', 'en', 179), +(15870, 'Beethoven : The story of a little boy who was forced to practice', 'Tapper, Thomas', '2010-12-23', 129, 'https://www.gutenberg.org/ebooks/34737', 'en', 7473), +(15871, 'Raggio di Dio: Romanzo', 'Barrili, Anton Giulio', '2010-01-25', 22, 'https://www.gutenberg.org/ebooks/31077', 'it', 61), +(15872, 'The Ballads & Songs of Derbyshire\nWith Illustrative Notes, and Examples of the Original Music, etc.', NULL, '2013-04-23', 17, 'https://www.gutenberg.org/ebooks/42585', 'en', 7474), +(15873, 'The Story of Viteau', 'Stockton, Frank Richard', '2017-09-12', 18, 'https://www.gutenberg.org/ebooks/55532', 'en', 7475), +(15874, 'Die Höhe des Gefühls: Ein Akt', 'Brod, Max', '2014-09-21', 6, 'https://www.gutenberg.org/ebooks/46919', 'de', 3978), +(15875, 'Children\'s Books and Their Illustrators', 'White, Gleeson', '2008-11-01', 76, 'https://www.gutenberg.org/ebooks/27112', 'en', 1063), +(15876, 'Punch, or the London Charivari, Volume 101, Jubilee Issue, July 18, 1891', 'Various', '2004-08-30', 2, 'https://www.gutenberg.org/ebooks/13327', 'en', 134), +(15877, 'A Dear Little Girl at School', 'Blanchard, Amy Ella', '2009-05-25', 23, 'https://www.gutenberg.org/ebooks/28966', 'en', 62), +(15878, 'The Popular Story of Blue Beard', 'Perrault, Charles', '2013-08-13', 20, 'https://www.gutenberg.org/ebooks/43457', 'en', 7476), +(15879, 'Five Little Peppers and How They Grew', 'Sidney, Margaret', '2001-08-01', 171, 'https://www.gutenberg.org/ebooks/2770', 'en', 389), +(15880, 'Gloria and Treeless Street', 'Donnell, Annie Hamilton', '2005-11-01', 14, 'https://www.gutenberg.org/ebooks/9398', 'en', 348), +(15881, 'Erään miehen omatunto: Romaani', 'Koskimaa, Juho', '2016-02-12', 5, 'https://www.gutenberg.org/ebooks/51192', 'fi', 175), +(15882, 'Artist and Public, and Other Essays on Art Subjects', 'Cox, Kenyon', '2005-09-05', 33, 'https://www.gutenberg.org/ebooks/16655', 'en', 787), +(15883, 'Polly of Lady Gay Cottage', 'Dowd, Emma C.', '2009-06-10', 12, 'https://www.gutenberg.org/ebooks/29088', 'en', 3621), +(15884, 'Wawenock Myth Texts from Maine\r\nForty-third Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1925-26, Government Printing Office, Washington, 1928, pages 165-198', 'Speck, Frank G. (Frank Gouldsmith)', '2015-09-13', 11, 'https://www.gutenberg.org/ebooks/49951', 'en', 7477), +(15885, 'New York Times Current History; The European War, Vol 2, No. 5, August, 1915', 'Various', '2007-08-30', 21, 'https://www.gutenberg.org/ebooks/22460', 'en', 335), +(15886, 'Ecce homo, Wie man wird, was man ist', 'Nietzsche, Friedrich Wilhelm', '2005-01-01', 192, 'https://www.gutenberg.org/ebooks/7202', 'de', 5723), +(15887, 'Pablo de Segovia, the Spanish Sharper', 'Quevedo, Francisco de', '2014-06-28', 26, 'https://www.gutenberg.org/ebooks/46125', 'en', 2308), +(15888, 'Seldwyla Folks: Three Singular Tales', 'Keller, Gottfried', '2010-11-29', 32, 'https://www.gutenberg.org/ebooks/34505', 'en', 7478), +(15889, 'Sea-gift: A Novel', 'Fuller, Edwin W. (Edwin Wiley)', '2015-05-05', 7, 'https://www.gutenberg.org/ebooks/48883', 'en', 7479), +(15890, 'Dating Pilipinas', 'Calderón, Sofronio G.', '2006-02-18', 43, 'https://www.gutenberg.org/ebooks/17787', 'tl', 7480), +(15891, 'A New Chipmunk (Genus Eutamias) from the Black Hills', 'White, John A.', '2010-01-17', 9, 'https://www.gutenberg.org/ebooks/30999', 'en', 7481), +(15892, 'St. Benedict’s Rule for Monasteries', 'Benedict, Saint, Abbot of Monte Cassino', '2015-09-22', 238, 'https://www.gutenberg.org/ebooks/50040', 'en', 7482), +(15893, 'The American Missionary — Volume 42, No. 08, August, 1888', 'Various', '2004-11-20', 4, 'https://www.gutenberg.org/ebooks/14102', 'en', 562), +(15894, 'A Narrative Of The Mutiny, On Board His Majesty\'s Ship Bounty; And The Subsequent Voyage Of Part Of The Crew, In The Ship\'s Boat', 'Bligh, William', '2007-01-11', 102, 'https://www.gutenberg.org/ebooks/20337', 'en', 7483), +(15895, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 04', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5555', 'en', 803), +(15896, 'The Student\'s Mythology\nA Compendium of Greek, Roman, Egyptian, Assyrian, Persian, Hindoo, Chinese, Thibetian, Scandinavian, Celtic, Aztec, and Peruvian Mythologies', 'White, Catherine Ann', '2011-09-10', 42, 'https://www.gutenberg.org/ebooks/37380', 'en', 75), +(15897, 'Stronghand; or, The Noble Revenge', 'Aimard, Gustave', '2014-01-15', 31, 'https://www.gutenberg.org/ebooks/44672', 'en', 5254), +(15898, 'The Amazing Marriage — Volume 5', 'Meredith, George', '2003-09-01', 14, 'https://www.gutenberg.org/ebooks/4487', 'en', 675), +(15899, 'Sounding the Ocean of Air\r\nBeing Six Lectures Delivered Before the Lowell Institute of Boston, in December 1898', 'Rotch, Abbott Lawrence', '2011-05-29', 14, 'https://www.gutenberg.org/ebooks/36252', 'en', 7484), +(15900, 'The Scape-Goat: A Farce in One Act', 'Poole, John', '2016-08-04', 12, 'https://www.gutenberg.org/ebooks/52717', 'en', 1281), +(15901, 'De Kennemer Vrijbuiter', 'Kieviet, Cornelis Johannes', '2010-09-13', 19, 'https://www.gutenberg.org/ebooks/33720', 'nl', 4128), +(15902, 'The Rāmāyana, Volume One. Bālakāndam and Ayodhyākāndam', 'Valmiki', '2018-06-03', 29, 'https://www.gutenberg.org/ebooks/57265', 'en', 7485), +(15903, 'A History of Sea Power', 'Westcott, Allan F. (Allan Ferguson)', '2008-03-10', 27, 'https://www.gutenberg.org/ebooks/24797', 'en', 2121), +(15904, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 13\r\nAmerica, Part II', 'Hakluyt, Richard', '2008-05-29', 51, 'https://www.gutenberg.org/ebooks/25645', 'en', 885), +(15905, 'His Big Opportunity', 'Le Feuvre, Amy', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/11470', 'en', 5372), +(15906, 'Daniel Webster for Young Americans\nComprising the greatest speeches of the defender of the Constitution', 'Webster, Daniel', '2012-11-05', 15, 'https://www.gutenberg.org/ebooks/41300', 'en', 429), +(15907, 'Aesop\'s Fables: A New Revised Version From Original Sources', 'Aesop', '2006-07-01', 177, 'https://www.gutenberg.org/ebooks/18732', 'en', 7140), +(15908, 'The Matron\'s Manual of Midwifery, and the Diseases of Women During Pregnancy and in Childbed\r\nBeing a Familiar and Practical Treatise, More Especially Intended for the Instruction of Females Themselves, but Adapted Also for Popular Use among Students and Practitioners of Medicine', 'Hollick, Frederick', '2015-01-01', 61, 'https://www.gutenberg.org/ebooks/47836', 'en', 7486), +(15909, 'The Works of Charles and Mary Lamb — Volume 5\r\nThe Letters of Charles and Mary Lamb, 1796-1820', 'Lamb, Mary', '2005-11-01', 25, 'https://www.gutenberg.org/ebooks/9365', 'en', 4842), +(15910, 'The American Missionary — Volume 39, No. 07, July, 1885', 'Various', '2009-10-02', 13, 'https://www.gutenberg.org/ebooks/30158', 'en', 562), +(15911, '\'Possum', 'Bruce, Mary Grant', '2016-01-08', 26, 'https://www.gutenberg.org/ebooks/50881', 'en', 7487), +(15912, 'Main Currents in Nineteenth Century Literature - 6. Young Germany', 'Brandes, Georg', '2015-01-22', 23, 'https://www.gutenberg.org/ebooks/48042', 'en', 7488), +(15913, 'Private Letters of Edward Gibbon (1753-1794) Volume 1 (of 2)', 'Gibbon, Edward', '2013-04-22', 24, 'https://www.gutenberg.org/ebooks/42578', 'en', 7489), +(15914, 'Daughters of the Revolution and Their Times\n1769 - 1776 A Historical Romance', 'Coffin, Charles Carleton', '2009-08-29', 23, 'https://www.gutenberg.org/ebooks/29849', 'en', 7490), +(15915, 'Dave Dashaway the Young Aviator; Or, In the Clouds for Fame and Fortune', 'Rockwood, Roy', '2015-06-11', 7, 'https://www.gutenberg.org/ebooks/49190', 'en', 2279), +(15916, 'The Manager of the B. & A.: A Novel', 'Kester, Vaughan', '2016-05-02', 16, 'https://www.gutenberg.org/ebooks/51953', 'en', 1239), +(15917, 'The Changing Numbers\nOdd Craft, Part 8.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12208', 'en', 3421), +(15918, 'The Ethical Engineer', 'Harrison, Harry', '2010-01-14', 221, 'https://www.gutenberg.org/ebooks/30964', 'en', 26), +(15919, 'Dante en Beatrice, en andere verzen', 'Eeden, Frederik van', '2009-06-08', 8, 'https://www.gutenberg.org/ebooks/29075', 'nl', 8), +(15920, 'Village Improvements and Farm Villages', 'Waring, George E. (George Edwin)', '2008-10-07', 14, 'https://www.gutenberg.org/ebooks/26801', 'en', 1190), +(15921, 'Pioneers', 'Wells, Basil', '2019-04-18', 52, 'https://www.gutenberg.org/ebooks/59302', 'en', 179), +(15922, 'Mayfair, Belgravia, and Bayswater', 'Mitton, G. E. (Geraldine Edith)', '2007-04-26', 28, 'https://www.gutenberg.org/ebooks/21218', 'en', 7491), +(15923, 'Songs of Innocence, and Songs of Experience', 'Blake, William', '1999-10-01', 1015, 'https://www.gutenberg.org/ebooks/1934', 'en', 3947), +(15924, 'The Gentle Art of Faking\r\nA history of the methods of producing imitations & spurious works of art from the earliest times up to the present day', 'Nobili, Riccardo', '2016-11-30', 21, 'https://www.gutenberg.org/ebooks/53638', 'en', 7492), +(15925, 'Le serment des hommes rouges: Aventures d\'un enfant de Paris', 'Ponson du Terrail', '2005-05-10', 14, 'https://www.gutenberg.org/ebooks/15811', 'fr', 61), +(15926, 'The Two Gentlemen of Verona', 'Shakespeare, William', '1997-11-01', 63, 'https://www.gutenberg.org/ebooks/1108', 'en', 907), +(15927, 'Lettres à Madame Viardot', 'Turgenev, Ivan Sergeevich', '2011-12-18', 14, 'https://www.gutenberg.org/ebooks/38335', 'fr', 7493), +(15928, 'Scott Burton, Forester', 'Cheyney, Edward G. (Edward Gheen)', '2018-06-09', 12, 'https://www.gutenberg.org/ebooks/57298', 'en', 6027), +(15929, 'Turkish Memories', 'Whitman, Sidney', '2019-03-26', 27, 'https://www.gutenberg.org/ebooks/59130', 'en', 7494), +(15930, 'Pikku Lallin maapallo', 'Bergh, John', '2018-04-08', 2, 'https://www.gutenberg.org/ebooks/56944', 'fi', 388), +(15931, 'Memnon ou la sagesse humaine', 'Voltaire', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/4648', 'fr', 642), +(15932, 'Luncheons: A Cook\'s Picture Book', 'Ronald, Mary', '2018-09-13', 25, 'https://www.gutenberg.org/ebooks/57896', 'en', 7495), +(15933, 'Fighting Byng: A Novel of Mystery, Intrigue and Adventure', 'Stone, A.', '2012-09-21', 26, 'https://www.gutenberg.org/ebooks/40821', 'en', 128), +(15934, 'The Confidence-Man: His Masquerade', 'Melville, Herman', '2007-06-12', 553, 'https://www.gutenberg.org/ebooks/21816', 'en', 7496), +(15935, 'Forward from Babylon', 'Golding, Louis', '2017-12-13', 17, 'https://www.gutenberg.org/ebooks/56178', 'en', 7497), +(15936, 'Watch the Sky', 'Schmitz, James H.', '2008-02-09', 68, 'https://www.gutenberg.org/ebooks/24558', 'en', 179); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(15937, 'Diana Tempest, Volume I', 'Cholmondeley, Mary', '2011-11-10', 27, 'https://www.gutenberg.org/ebooks/37973', 'en', 376), +(15938, 'The Gods\nFrom \'The Gods and Other Lectures\'', 'Ingersoll, Robert Green', '2011-11-22', 32, 'https://www.gutenberg.org/ebooks/38107', 'en', 1616), +(15939, 'Miss Sara Sampson', 'Lessing, Gotthold Ephraim', '2005-10-01', 28, 'https://www.gutenberg.org/ebooks/9157', 'de', 402), +(15940, 'Les français au pôle Nord', 'Boussenard, Louis', '2013-09-11', 18, 'https://www.gutenberg.org/ebooks/43698', 'fr', 2144), +(15941, 'The Motor Rangers\' Cloud Cruiser', 'Goldfrap, John Henry', '2015-02-15', 15, 'https://www.gutenberg.org/ebooks/48270', 'en', 557), +(15942, 'The Complete Works of Robert Burns: Containing his Poems, Songs, and Correspondence.\r\nWith a New Life of the Poet, and Notices, Critical and Biographical by Allan Cunningham', 'Cunningham, Allan', '2006-06-04', 136, 'https://www.gutenberg.org/ebooks/18500', 'en', 7498), +(15943, 'The Miser', 'Molière', '2004-11-01', 113, 'https://www.gutenberg.org/ebooks/6923', 'en', 7499), +(15944, 'Die Göttliche Komödie', 'Dante Alighieri', '2005-05-01', 179, 'https://www.gutenberg.org/ebooks/8085', 'de', 1906), +(15945, 'Letters Concerning Poetical Translations\nAnd Virgil\'s and Milton\'s Arts of Verse, &c.', 'Benson, William', '2006-01-18', 14, 'https://www.gutenberg.org/ebooks/17548', 'en', 7500), +(15946, 'Harper\'s Young People, March 2, 1880\nAn Illustrated Weekly', 'Various', '2009-03-24', 18, 'https://www.gutenberg.org/ebooks/28395', 'en', 479), +(15947, 'The Popular Science Monthly, July, 1900\nVol. 57, May, 1900 to October, 1900', 'Various', '2014-10-30', 10, 'https://www.gutenberg.org/ebooks/47238', 'en', 210), +(15948, 'Dick Prescott\'s Third Year at West Point; Or, Standing Firm for Flag and Honor', 'Hancock, H. Irving (Harrie Irving)', '2004-07-03', 10, 'https://www.gutenberg.org/ebooks/12806', 'en', 7501), +(15949, 'Fast as the Wind: A Novel', 'Gould, Nat', '2011-03-20', 37, 'https://www.gutenberg.org/ebooks/35618', 'en', 4835), +(15950, 'The Academic Questions, Treatise De Finibus, and Tusculan Disputations, of M.T. Cicero, With a Sketch of the Greek Philosophers Mentioned by Cicero', 'Cicero, Marcus Tullius', '2009-06-26', 56, 'https://www.gutenberg.org/ebooks/29247', 'en', 7502), +(15951, 'The Annual Catalogue: Numb. II. (1738)\r\nOr, A new and compleat List of All The New Books, New Editions of Books, Pamphlets, &c.', 'Various', '2008-03-24', 5, 'https://www.gutenberg.org/ebooks/24900', 'en', 7503), +(15952, 'The Rajah\'s Heir\nA Novel in 3 volumes', 'Despard, C. (Charlotte)', '2018-12-17', 14, 'https://www.gutenberg.org/ebooks/58486', 'en', 1228), +(15953, 'House Flies', 'Howard, L. O. (Leland Ossian)', '2019-05-19', 29, 'https://www.gutenberg.org/ebooks/59554', 'en', 7504), +(15954, 'En adelig Opdager', 'Marsh, Richard', '2010-06-17', 18, 'https://www.gutenberg.org/ebooks/32865', 'da', 7505), +(15955, 'The Lost Chord', NULL, '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10309', 'en', 7506), +(15956, 'In the Foreign Legion', 'Rosen, Erwin', '2012-08-11', 32, 'https://www.gutenberg.org/ebooks/40479', 'en', 873), +(15957, 'Sajóvölgyi eredeti népmesék (1. kötet)', 'Merényi, László', '2012-01-13', 12, 'https://www.gutenberg.org/ebooks/38563', 'hu', 2), +(15958, 'Letters to Catherine E. Beecher, in reply to an essay on slavery and abolitionism, addressed to A. E. Grimké', 'Grimké, Angelina Emily', '2016-12-31', 9, 'https://www.gutenberg.org/ebooks/53852', 'en', 125), +(15959, 'The Philosophy of Art', 'Taine, Hippolyte', '2016-09-04', 43, 'https://www.gutenberg.org/ebooks/52980', 'en', 2250), +(15960, 'The Pirates of Shan: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-04-19', 38, 'https://www.gutenberg.org/ebooks/32059', 'en', 1006), +(15961, 'Polnische Geschichte', 'Brandenburger, Clemens', '2014-06-11', 6, 'https://www.gutenberg.org/ebooks/45937', 'de', 7507), +(15962, 'The Rhymer', 'McAulay, Allan', '2017-08-20', 12, 'https://www.gutenberg.org/ebooks/55399', 'en', 7508), +(15963, 'Truth and the Myth: Couplet Quips', 'Narayanan, A. R.', '2002-01-01', 19, 'https://www.gutenberg.org/ebooks/3009', 'en', 5938), +(15964, 'Little Travels and Roadside Sketches', 'Thackeray, William Makepeace', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9533', 'en', 772), +(15965, 'The Mafulu: Mountain People of British New Guinea', 'Williamson, Robert Wood', '2006-03-04', 23, 'https://www.gutenberg.org/ebooks/17910', 'en', 7509), +(15966, 'Women\'s Suffrage: A Short History of a Great Movement', 'Fawcett, Millicent Garrett, Dame', '2015-03-31', 19, 'https://www.gutenberg.org/ebooks/48614', 'en', 4223), +(15967, 'Potash & Perlmutter: Their Copartnership Ventures and Adventures', 'Glass, Montague', '2006-04-13', 18, 'https://www.gutenberg.org/ebooks/18164', 'en', 2120), +(15968, 'The Cuckoo Clock', 'Barefoot, Wesley', '2009-08-06', 55, 'https://www.gutenberg.org/ebooks/29623', 'en', 26), +(15969, 'Correspondence of Wagner and Liszt — Volume 1', 'Wagner, Richard', '2003-03-01', 47, 'https://www.gutenberg.org/ebooks/3835', 'en', 7510), +(15970, 'The Romance of the London Directory', 'Bardsley, Charles Wareing Endell', '2016-04-12', 33, 'https://www.gutenberg.org/ebooks/51739', 'en', 7511), +(15971, 'Mechanical Drawing Self-Taught\r\nComprising instructions in the selection and preparation of drawing instruments, elementary instruction in practical mechanical drawing; together with examples in simple geometry and elementary mechanism, including screw threads, gear wheels, mechanical motions, engines and boilers', 'Rose, Joshua', '2007-11-04', 164, 'https://www.gutenberg.org/ebooks/23319', 'en', 7512), +(15972, 'The Brother Clerks\nA Tale of New-Orleans', 'Townsend, Mary Ashley', '2006-07-31', 8, 'https://www.gutenberg.org/ebooks/18958', 'en', 4475), +(15973, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2008-09-01', 10, 'https://www.gutenberg.org/ebooks/26459', 'en', 2951), +(15974, 'Paris Talks', '`Abdu\'l-Bahá', '2006-09-18', 8, 'https://www.gutenberg.org/ebooks/19284', 'en', 4457), +(15975, 'Cuba Past and Present', 'Davey, Richard', '2011-04-14', 11, 'https://www.gutenberg.org/ebooks/35872', 'en', 747), +(15976, 'Beauty and the Beast, and Tales of Home', 'Taylor, Bayard', '2008-06-29', 54, 'https://www.gutenberg.org/ebooks/292', 'en', 179), +(15977, 'Sinners and Saints\r\nA Tour Across the States and Round Them, with Three Months Among the Mormons', 'Robinson, Phil', '2017-01-31', 13, 'https://www.gutenberg.org/ebooks/54079', 'en', 6873), +(15978, 'Orange and Green: A Tale of the Boyne and Limerick', 'Henty, G. A. (George Alfred)', '2006-05-08', 28, 'https://www.gutenberg.org/ebooks/18356', 'en', 98), +(15979, 'I. Beowulf: an Anglo-Saxon poem. II. The fight at Finnsburh: a fragment.', NULL, '2006-01-01', 186, 'https://www.gutenberg.org/ebooks/9701', 'en', 7513), +(15980, 'The Heroic Age', 'Chadwick, H. Munro (Hector Munro)', '2015-03-07', 21, 'https://www.gutenberg.org/ebooks/48426', 'en', 7514), +(15981, 'Salomé', 'Wilde, Oscar', '2007-12-19', 16, 'https://www.gutenberg.org/ebooks/23917', 'fr', 4263), +(15982, 'Scientific American magazine Vol 2. No. 3 Oct 10 1846\nThe Advocate of Industry and Journal of Scientific,\nMechanical and Other Improvements', 'Various', '2009-07-14', 16, 'https://www.gutenberg.org/ebooks/29411', 'en', 352), +(15983, 'The Good Wolf', 'Burnett, Frances Hodgson', '2013-06-12', 9, 'https://www.gutenberg.org/ebooks/42920', 'en', 195), +(15984, 'An Illustrated Handbook of Mount Vernon, the Home of Washington', 'Mount Vernon Ladies\' Association of the Union', '2017-11-19', 8, 'https://www.gutenberg.org/ebooks/55997', 'en', 7515), +(15985, 'Marie Grubbe, a Lady of the Seventeenth Century', 'Jacobsen, J. P. (Jens Peter)', '2017-06-04', 17, 'https://www.gutenberg.org/ebooks/54845', 'en', 7516), +(15986, 'Voyages of Samuel De Champlain — Volume 02', 'Champlain, Samuel de', '2004-10-01', 23, 'https://www.gutenberg.org/ebooks/6749', 'en', 1643), +(15987, 'The History of Rome, Books 09 to 26', 'Livy', '2004-02-01', 88, 'https://www.gutenberg.org/ebooks/10907', 'en', 6793), +(15988, 'La vita in Palermo cento e più anni fa, Volume 1', 'Pitrè, Giuseppe', '2011-10-11', 17, 'https://www.gutenberg.org/ebooks/37719', 'it', 7517), +(15989, 'The Practical Ostrich Feather Dyer', 'Paul, Alexander (Instructor in feather dyeing)', '2014-04-06', 16, 'https://www.gutenberg.org/ebooks/45339', 'en', 7518), +(15990, 'New Faces', 'Kelly, Myra', '2005-03-24', 15, 'https://www.gutenberg.org/ebooks/15449', 'en', 179), +(15991, 'Index of the Project Gutenberg Works of Bayard Taylor', 'Taylor, Bayard', '2019-06-16', 15, 'https://www.gutenberg.org/ebooks/59766', 'en', 198), +(15992, 'The Irish Ecclesiastical Record, Volume 1, November 1864', NULL, '2012-02-02', 4, 'https://www.gutenberg.org/ebooks/38751', 'en', 3437), +(15993, 'The Rise of the Dutch Republic — Volume 21: 1573-74', 'Motley, John Lothrop', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/4822', 'en', 3372), +(15994, 'Memoranda on the Maya Calendars Used in the Books of Chilan Balam', 'Bowditch, Charles P. (Charles Pickering)', '2012-05-12', 13, 'https://www.gutenberg.org/ebooks/39683', 'en', 7519), +(15995, 'The Old Pike\r\nA History of the National Road, with Incidents, Accidents, and Anecdotes Thereon', 'Searight, Thomas B. (Thomas Brownfield)', '2013-01-07', 6, 'https://www.gutenberg.org/ebooks/41799', 'en', 7520), +(15996, 'Hombres (Hommes)', 'Verlaine, Paul', '2007-02-11', 39, 'https://www.gutenberg.org/ebooks/20568', 'fr', 8), +(15997, 'Saint Vincent, with notes and publishers\' prices', 'Napier, Francis John Hamilton Scott', '2018-12-14', 12, 'https://www.gutenberg.org/ebooks/58472', 'en', 7521), +(15998, 'Woman', 'Marx, Magdeleine', '2010-10-05', 21, 'https://www.gutenberg.org/ebooks/33943', 'en', 3994), +(15999, 'Dorothy South: A Love Story of Virginia Just Before the War', 'Eggleston, George Cary', '2016-05-23', 10, 'https://www.gutenberg.org/ebooks/52148', 'en', 4850), +(16000, 'Phantom of the Forest', 'Yerxa, Leroy', '2010-06-19', 21, 'https://www.gutenberg.org/ebooks/32891', 'en', 176), +(16001, 'The Gospel of the Hereafter', 'Smyth, J. Paterson (John Paterson)', '2008-06-17', 9, 'https://www.gutenberg.org/ebooks/25826', 'en', 7522), +(16002, 'Het Leven der Dieren. Derde Deel, Hoofdstuk 1 tot 4, De Kruipende Dieren', 'Brehm, Alfred Edmund', '2014-02-01', 9, 'https://www.gutenberg.org/ebooks/44811', 'nl', 2360), +(16003, 'Martha; or, The Fair at Richmond', NULL, '2012-01-17', 9, 'https://www.gutenberg.org/ebooks/38597', 'en', 1966), +(16004, 'Hoyle\'s Games Modernized', 'Hoffmann, Professor', '2012-04-13', 115, 'https://www.gutenberg.org/ebooks/39445', 'en', 7523), +(16005, 'The British Army from Within', 'Vivian, Evelyn Charles', '2016-09-04', 4, 'https://www.gutenberg.org/ebooks/52974', 'en', 2006), +(16006, 'Animal Figures in the Maya Codices', 'Allen, Glover M. (Glover Morrill)', '2006-08-14', 49, 'https://www.gutenberg.org/ebooks/19042', 'en', 4895), +(16007, 'Florence Nightingale to Her Nurses\r\nA selection from Miss Nightingale\'s addresses to probationers and nurses of the Nightingale school at St. Thomas\'s hospital', 'Nightingale, Florence', '2015-08-18', 29, 'https://www.gutenberg.org/ebooks/49732', 'en', 7524), +(16008, 'Mark Hurdlestone; Or, The Two Brothers', 'Moodie, Susanna', '2005-10-09', 5, 'https://www.gutenberg.org/ebooks/16836', 'en', 61), +(16009, 'Œuvres de P. Corneille, Tome 01', 'Corneille, Pierre', '2010-03-13', 43, 'https://www.gutenberg.org/ebooks/31628', 'fr', 5816), +(16010, 'The Magician\'s Show Box, and Other Stories', 'Child, Lydia Maria', '2005-07-01', 95, 'https://www.gutenberg.org/ebooks/8415', 'en', 388), +(16011, 'Music in the History of the Western Church\r\nWith an Introduction on Religious Music Among Primitive and Ancient Peoples', 'Dickinson, Edward', '2013-07-13', 18, 'https://www.gutenberg.org/ebooks/43208', 'en', 7525), +(16012, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 361, Supplementary Issue (1829)', 'Various', '2004-10-02', 7, 'https://www.gutenberg.org/ebooks/13578', 'en', 133), +(16013, 'Raggedy Ann Stories', 'Gruelle, Johnny', '2006-04-17', 163, 'https://www.gutenberg.org/ebooks/18190', 'en', 2849), +(16014, 'Two Years in Oregon', 'Nash, Wallis', '2011-02-15', 12, 'https://www.gutenberg.org/ebooks/35288', 'en', 4029), +(16015, 'The Pigeon: A Fantasy in Three Acts', 'Galsworthy, John', '2004-09-26', 25, 'https://www.gutenberg.org/ebooks/2913', 'en', 7526), +(16016, 'The God in the Box', 'Wright, Sewell Peaslee', '2009-05-06', 41, 'https://www.gutenberg.org/ebooks/28705', 'en', 26), +(16017, 'The Philosopher\'s Joke', 'Jerome, Jerome K. (Jerome Klapka)', '1997-04-01', 61, 'https://www.gutenberg.org/ebooks/868', 'en', 179), +(16018, 'Life and Treason of Benedict Arnold', 'Sparks, Jared', '2015-07-21', 21, 'https://www.gutenberg.org/ebooks/49500', 'en', 1433), +(16019, 'As A Chinaman Saw Us: Passages from His Letters to a Friend at Home', NULL, '2007-10-02', 24, 'https://www.gutenberg.org/ebooks/22831', 'en', 1110), +(16020, 'The Adventure of the Cardboard Box', 'Doyle, Arthur Conan', '2005-08-01', 12, 'https://www.gutenberg.org/ebooks/8627', 'en', 834), +(16021, 'Stuk', 'Bang, Herman', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/12698', 'da', 7527), +(16022, 'Det stille Vand: En Fortælling om Ungdom', 'Gnudtzmann, Albert Theodor', '2011-04-16', 5, 'https://www.gutenberg.org/ebooks/35886', 'da', 61), +(16023, 'Directives from the Guardian', 'Shoghi, Effendi', '2006-09-16', 5, 'https://www.gutenberg.org/ebooks/19270', 'en', 4457), +(16024, 'Confessio Amantis; Or, Tales of the Seven Deadly Sins', 'Gower, John', '2008-07-03', 121, 'https://www.gutenberg.org/ebooks/266', 'en', 7528), +(16025, 'Systematic Status of the Colubrid Snake, Leptodeira discolor Günther', 'Duellman, William Edward', '2011-01-14', 14, 'https://www.gutenberg.org/ebooks/34954', 'en', 7529), +(16026, 'Poésies Allemandes', 'Klopstock, Friedrich Gottlieb', '2005-07-07', 10, 'https://www.gutenberg.org/ebooks/16238', 'fr', 7530), +(16027, 'Children of the Dear Cotswolds', 'Harker, L. Allen (Lizzie Allen)', '2014-07-09', 12, 'https://www.gutenberg.org/ebooks/46548', 'en', 7531), +(16028, 'Shepherd Singing Ragtime, and Other Poems', 'Golding, Louis', '2017-11-14', 4, 'https://www.gutenberg.org/ebooks/55963', 'en', 1594), +(16029, 'Zula', 'Lindley, H. Esselstyn', '2010-10-30', 10, 'https://www.gutenberg.org/ebooks/34168', 'en', 61), +(16030, 'Soldier Stories', 'Kipling, Rudyard', '2009-04-08', 36, 'https://www.gutenberg.org/ebooks/28537', 'en', 2244), +(16031, 'Sarah Dillard\'s Ride: A Story of the Carolinas in 1780', 'Otis, James', '2013-09-23', 20, 'https://www.gutenberg.org/ebooks/43806', 'en', 1655), +(16032, 'Reise ins heilige Land: Im Jahr 1829', 'Prokesch von Osten, Anton, Graf', '2019-01-07', 5, 'https://www.gutenberg.org/ebooks/58640', 'de', 723), +(16033, 'Le Monde comme il va, vision de Babouc', 'Voltaire', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/5138', 'fr', 642), +(16034, 'U.S. Copyright Renewals, 1960 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/11821', 'en', 4170), +(16035, 'Hume\'s Political Discourses', 'Hume, David', '2019-06-22', 129, 'https://www.gutenberg.org/ebooks/59792', 'en', 1745), +(16036, 'Scottish Cathedrals and Abbeys', 'Butler, Dugald', '2007-06-06', 31, 'https://www.gutenberg.org/ebooks/21688', 'en', 7532), +(16037, 'Euthydemus', 'Plato', '1999-01-01', 101, 'https://www.gutenberg.org/ebooks/1598', 'en', 7533), +(16038, 'The History of Don Quixote, Volume 1, Part 02', 'Cervantes Saavedra, Miguel de', '2004-07-27', 15, 'https://www.gutenberg.org/ebooks/5904', 'en', 89), +(16039, 'Church Needlework: A manual of practical instruction', 'Hands, Hinda M.', '2018-07-30', 44, 'https://www.gutenberg.org/ebooks/57608', 'en', 6945), +(16040, '樂章集', 'Liu, Yong, jin shi 1034', '2008-04-29', 26, 'https://www.gutenberg.org/ebooks/25228', 'zh', 7534), +(16041, 'A Classified Catalogue of Works in General Literature Published by Longmans, Green, & Co.', 'Longmans, Green, and Co.', '2012-05-12', 11, 'https://www.gutenberg.org/ebooks/39677', 'en', 2663), +(16042, 'Pharsalia; Dramatic Episodes of the Civil Wars', 'Lucan', '1996-07-01', 96, 'https://www.gutenberg.org/ebooks/602', 'en', 7535), +(16043, 'The Business Library: What it is and what it does', 'Krause, Louise B. (Louise Beerstecher)', '2016-01-07', 6, 'https://www.gutenberg.org/ebooks/50875', 'en', 7536), +(16044, 'The Atlantic Monthly, Volume 04, No. 25, November, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9391', 'en', 1227), +(16045, 'Mein Leben und Streben', 'May, Karl', '2001-08-01', 33, 'https://www.gutenberg.org/ebooks/2779', 'de', 7537), +(16046, '\'t Bolleken', 'Buysse, Cyriel', '2015-06-07', 12, 'https://www.gutenberg.org/ebooks/49164', 'nl', 61), +(16047, 'The World English Bible (WEB): Nehemiah', 'Anonymous', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8243', 'en', 7538), +(16048, '\"Nuori Kotka\" ja vanha metsästäjä', 'Cooper, James Fenimore', '2014-09-20', 9, 'https://www.gutenberg.org/ebooks/46910', 'fi', 7539), +(16049, 'The Dark Forest', 'Walpole, Hugh', '2006-10-24', 42, 'https://www.gutenberg.org/ebooks/19614', 'en', 2564), +(16050, 'Het Leven der Dieren: Deel 2, Hoofdstuk 04: De Hoendervogels', 'Brehm, Alfred Edmund', '2009-01-29', 3, 'https://www.gutenberg.org/ebooks/27927', 'nl', 2360), +(16051, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 16', 'Stevenson, Robert Louis', '2010-01-16', 33, 'https://www.gutenberg.org/ebooks/30990', 'en', 7540), +(16052, 'King René d\'Anjou and His Seven Queens', 'Staley, Edgcumbe', '2015-09-24', 9, 'https://www.gutenberg.org/ebooks/50049', 'en', 1870), +(16053, 'Grażyna: Powieść Litewska', 'Mickiewicz, Adam', '2009-02-22', 10, 'https://www.gutenberg.org/ebooks/28153', 'pl', 8), +(16054, 'A morte do athleta', 'Leal, António Duarte Gomes', '2007-08-31', 13, 'https://www.gutenberg.org/ebooks/22469', 'pt', 8), +(16055, 'Viimeinen Algonquini: Kertomus', 'Lilla, Felix', '2009-06-09', 7, 'https://www.gutenberg.org/ebooks/29081', 'fi', 179), +(16056, 'The Dinner Year-Book', 'Harland, Marion', '2015-09-14', 30, 'https://www.gutenberg.org/ebooks/49958', 'en', 103), +(16057, 'Der Schleier der Pierrette: Pantomime in drei Bildern', 'Schnitzler, Arthur', '2010-03-31', 35, 'https://www.gutenberg.org/ebooks/31842', 'de', 3978), +(16058, 'The Greek Philosophers, Vol. 2 (of 2)', 'Benn, Alfred William', '2018-11-03', 23, 'https://www.gutenberg.org/ebooks/58224', 'en', 2286), +(16059, 'Chlorination of Water', 'Race, Joseph', '2011-09-11', 29, 'https://www.gutenberg.org/ebooks/37389', 'en', 7541), +(16060, 'The Substitute\nDeep Waters, Part 9.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11479', 'en', 3421), +(16061, 'Skönhet för alla: Fyra uppsatser', 'Key, Ellen', '2012-03-20', 49, 'https://www.gutenberg.org/ebooks/39213', 'sv', 2250), +(16062, 'Love Letters of Nathaniel Hawthorne, Volume 1 (of 2)', 'Hawthorne, Nathaniel', '2012-11-06', 33, 'https://www.gutenberg.org/ebooks/41309', 'en', 7542), +(16063, 'Punch, or the London Charivari, Volume 1, November 20, 1841', 'Various', '2005-02-07', 10, 'https://www.gutenberg.org/ebooks/14937', 'en', 134), +(16064, 'The Lost Temples of Xantoos', 'Calhoun, Howell', '2010-09-14', 6, 'https://www.gutenberg.org/ebooks/33729', 'en', 6193), +(16065, 'Demian: Die Geschichte von Emil Sinclairs Jugend', 'Hesse, Hermann', '2013-01-24', 302, 'https://www.gutenberg.org/ebooks/41907', 'de', 7543), +(16066, 'Explorers and Travellers', 'Greely, A. W. (Adolphus Washington)', '2011-05-09', 36, 'https://www.gutenberg.org/ebooks/36069', 'en', 7544), +(16067, 'Ruins of Ancient Cities (Vol. 2 of 2)\r\nWith General and Particular Accounts of Their Rise, Fall, and Present Condition', 'Bucke, Charles', '2013-12-16', 12, 'https://www.gutenberg.org/ebooks/44449', 'en', 4613), +(16068, 'Popular misgovernment in the United States', 'Cruikshank, Alfred Byron', '2018-09-07', 6, 'https://www.gutenberg.org/ebooks/57862', 'en', 1720), +(16069, 'Peeps at Many Lands: Newfoundland', 'Fairford, Ford', '2018-10-03', 19, 'https://www.gutenberg.org/ebooks/58016', 'en', 815), +(16070, 'Music Talks with Children', 'Tapper, Thomas', '2004-12-13', 75, 'https://www.gutenberg.org/ebooks/14339', 'en', 6664), +(16071, 'The Story of the Rome, Watertown, and Ogdensburg Railroad', 'Hungerford, Edward', '2012-03-01', 42, 'https://www.gutenberg.org/ebooks/39021', 'en', 7545), +(16072, 'Gabriel: A Story of the Jews in Prague', 'Kohn, S. (Salomon)', '2011-07-25', 6, 'https://www.gutenberg.org/ebooks/36855', 'en', 7546), +(16073, 'Clarissa Harlowe; or the history of a young lady — Volume 5', 'Richardson, Samuel', '2004-01-01', 89, 'https://www.gutenberg.org/ebooks/10799', 'en', 7547), +(16074, 'Correspondance diplomatique de Bertrand de Salignac de La Mothe Fénélon, Tome Second\nAmbassadeur de France en Angleterre de 1568 à 1575', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2011-11-12', 60, 'https://www.gutenberg.org/ebooks/37987', 'fr', 7548), +(16075, 'Cosmografía', 'Guillemin, Amédée', '2007-03-29', 53, 'https://www.gutenberg.org/ebooks/20930', 'es', 4516), +(16076, 'Jacob Hamblin: A Narrative of His Personal Experience as a Frontiersman, Missionary to the Indians and Explorer, Disclosing Interpositions of Providence, Severe Privations, Perilous Situations and Remarkable Escapes\r\nFifth Book of the Faith-Promoting Series, Designed for the Instruction and Encouragement of Young Latter-day Saints', 'Hamblin, Jacob', '2015-02-16', 40, 'https://www.gutenberg.org/ebooks/48284', 'en', 7549), +(16077, 'The Grain of Dust: A Novel', 'Phillips, David Graham', '2004-12-15', 90, 'https://www.gutenberg.org/ebooks/430', 'en', 48), +(16078, '唐鍾馗平鬼傳', 'Dongshanyunzhongdaoren', '2008-11-26', 20, 'https://www.gutenberg.org/ebooks/27329', 'zh', NULL), +(16079, 'First Plays', 'Milne, A. A. (Alan Alexander)', '2005-04-01', 57, 'https://www.gutenberg.org/ebooks/7805', 'en', 402), +(16080, 'I moribondi del Palazzo Carignano', 'Petruccelli della Gattina, Ferdinando', '2006-10-01', 11, 'https://www.gutenberg.org/ebooks/19426', 'it', 7550), +(16081, 'The Crimson Azaleas: A Novel', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-10-08', 9, 'https://www.gutenberg.org/ebooks/55709', 'en', 7551), +(16082, 'Hero Tales from History', 'Burnham, Smith', '2015-07-03', 21, 'https://www.gutenberg.org/ebooks/49356', 'en', 6171), +(16083, 'Expositions of Holy Scripture: St. Mark', 'Maclaren, Alexander', '2005-05-01', 31, 'https://www.gutenberg.org/ebooks/8071', 'en', 7552), +(16084, 'Jo\'s Boys', 'Alcott, Louisa May', '2002-10-01', 321, 'https://www.gutenberg.org/ebooks/3499', 'en', 1779), +(16085, 'Cruel As The Grave', 'Southworth, Emma Dorothy Eliza Nevitte', '2007-12-09', 17, 'https://www.gutenberg.org/ebooks/23789', 'en', 61), +(16086, 'British Socialism\nAn Examination of Its Doctrines, Policy, Aims and Practical Proposals', 'Barker, J. Ellis', '2009-03-19', 9, 'https://www.gutenberg.org/ebooks/28361', 'en', 254), +(16087, 'Kevät ja takatalvi', 'Aho, Juhani', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/13920', 'fi', 456), +(16088, 'The Angel Adjutant of \"Twice Born Men\"', 'Carpenter, Minnie Lindsay Rowell', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/7039', 'en', 3336), +(16089, 'The Mystery of M. Felix', 'Farjeon, B. L. (Benjamin Leopold)', '2016-10-12', 11, 'https://www.gutenberg.org/ebooks/53263', 'en', 128), +(16090, 'For Love of Country: A Story of Land and Sea in the Days of the Revolution', 'Brady, Cyrus Townsend', '2007-03-10', 16, 'https://www.gutenberg.org/ebooks/20791', 'en', 1293), +(16091, 'The Headsman; Or, The Abbaye des Vignerons', 'Cooper, James Fenimore', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/10938', 'en', 1661), +(16092, 'In God\'s Way: A Novel', 'Bjørnson, Bjørnstjerne', '2011-10-11', 17, 'https://www.gutenberg.org/ebooks/37726', 'en', 286), +(16093, 'An American Hobo in Europe\r\nA True Narrative of the Adventures of a Poor American at Home and in the Old Country', 'Goodkind, Ben', '2014-04-02', 14, 'https://www.gutenberg.org/ebooks/45306', 'en', 2550), +(16094, 'Dear Brutus', 'Barrie, J. M. (James Matthew)', '2003-05-01', 42, 'https://www.gutenberg.org/ebooks/4021', 'en', 1275), +(16095, 'The Kensington District', 'Mitton, G. E. (Geraldine Edith)', '2007-05-30', 20, 'https://www.gutenberg.org/ebooks/21643', 'en', 7553), +(16096, 'The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 3\nBooks 8, 9, 10, 11 and 12', NULL, '2005-03-26', 73, 'https://www.gutenberg.org/ebooks/15476', 'en', 1804), +(16097, 'The Executor\nBlackwood\'s Edinburgh Magazine vol. LXXXIX', 'Oliphant, Mrs. (Margaret)', '2019-06-15', 76, 'https://www.gutenberg.org/ebooks/59759', 'en', 45), +(16098, 'The Hidden Masterpiece', 'Balzac, Honoré de', '2004-11-01', 45, 'https://www.gutenberg.org/ebooks/1553', 'en', 7554), +(16099, 'The Tremendous Event', 'Leblanc, Maurice', '2010-08-09', 61, 'https://www.gutenberg.org/ebooks/33386', 'en', 7555), +(16100, 'Sawn Off: A Tale of a Family Tree', 'Fenn, George Manville', '2012-09-05', 8, 'https://www.gutenberg.org/ebooks/40674', 'en', 61), +(16101, 'Punchinello, Volume 2, No. 32, November 5, 1870', 'Various', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10104', 'en', 372), +(16102, 'An Old Sweetheart of Mine', 'Riley, James Whitcomb', '2008-01-16', 6, 'https://www.gutenberg.org/ebooks/24331', 'en', 2185), +(16103, 'Poems of Giosuè Carducci, Translated with two introductory essays:\r\nI. Giosuè Carducci and the Hellenic reaction in Italy. II. Carducci and the classic realism', 'Carducci, Giosuè', '2018-03-09', 16, 'https://www.gutenberg.org/ebooks/56711', 'en', 7556), +(16104, 'World Without War', 'Von Wald, E. G.', '2010-05-05', 37, 'https://www.gutenberg.org/ebooks/32254', 'en', 179), +(16105, 'Moby Hyphenation List', 'Ward, Grady', '2002-05-01', 48, 'https://www.gutenberg.org/ebooks/3204', 'en', 7557), +(16106, 'The Templeton Teapot: A Farce in One Act', 'Strong, Grace Cooke', '2013-02-18', 14, 'https://www.gutenberg.org/ebooks/42123', 'en', 907), +(16107, 'George Washington, Volume II', 'Lodge, Henry Cabot', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/12653', 'en', 7558), +(16108, 'The Chautauquan, Vol. 04, June 1884, No. 9', 'Chautauqua Literary and Scientific Circle', '2017-07-24', 5, 'https://www.gutenberg.org/ebooks/55194', 'en', 1453), +(16109, 'Idle Thoughts of an Idle Fellow', 'Jerome, Jerome K. (Jerome Klapka)', '2008-09-01', 7, 'https://www.gutenberg.org/ebooks/26466', 'en', 1697), +(16110, 'Mountaineering in the Sierra Nevada', 'King, Clarence', '2017-01-24', 10, 'https://www.gutenberg.org/ebooks/54046', 'en', 7559), +(16111, 'The Life of James Renwick\nA Historical Sketch Of His Life, Labours And Martyrdom And A\nVindication Of His Character And Testimony', 'Houston, Thomas', '2004-10-18', 22, 'https://www.gutenberg.org/ebooks/13781', 'en', 7560), +(16112, 'Westminster Sermons\nwith a Preface', 'Kingsley, Charles', '2006-05-10', 88, 'https://www.gutenberg.org/ebooks/18369', 'en', 2386), +(16113, 'Kansantaruja Laatokan luoteis-rannikolta: kesällä 1879', 'Schvindt, Theodor', '2015-03-06', 7, 'https://www.gutenberg.org/ebooks/48419', 'fi', 5323), +(16114, 'The Short Life', 'Donovan, Francis', '2007-12-20', 43, 'https://www.gutenberg.org/ebooks/23928', 'en', 179), +(16115, 'The Truth About America', 'Money, Edward', '2009-11-19', 8, 'https://www.gutenberg.org/ebooks/30503', 'en', 1110), +(16116, 'Self Portrait', 'Wolfe, Bernard', '2016-03-23', 28, 'https://www.gutenberg.org/ebooks/51534', 'en', 7561), +(16117, 'The Boy Scouts on the Range', 'Goldfrap, John Henry', '2011-01-25', 18, 'https://www.gutenberg.org/ebooks/35071', 'en', 2994), +(16118, 'Punch, or the London Charivari, Vol. 109, September 14th, 1895', 'Various', '2014-08-14', 21, 'https://www.gutenberg.org/ebooks/46583', 'en', 134), +(16119, 'The Putnam Hall Rebellion; or, The Rival Runaways', 'Stratemeyer, Edward', '2014-11-25', 22, 'https://www.gutenberg.org/ebooks/47451', 'en', 3593), +(16120, 'History of the Revolt of the Netherlands — Volume 01', 'Schiller, Friedrich', '2004-10-01', 31, 'https://www.gutenberg.org/ebooks/6776', 'en', 7175), +(16121, 'Our Frank\nand other stories', 'Walton, Amy', '2007-10-20', 13, 'https://www.gutenberg.org/ebooks/23114', 'en', 651), +(16122, 'History of Egypt, Chaldea, Syria, Babylonia, and Assyria in the Light of Recent Discovery', 'Hall, H. R. (Harry Reginald)', '2006-07-08', 230, 'https://www.gutenberg.org/ebooks/17321', 'en', 1368), +(16123, 'Castles in the Air', 'Orczy, Emmuska Orczy, Baroness', '2004-05-01', 77, 'https://www.gutenberg.org/ebooks/12461', 'en', 560), +(16124, 'A Pagan of the Hills', 'Buck, Charles Neville', '2006-08-20', 24, 'https://www.gutenberg.org/ebooks/19089', 'en', 4872), +(16125, 'Peter and Wendy', 'Barrie, J. M. (James Matthew)', '2008-09-18', 569, 'https://www.gutenberg.org/ebooks/26654', 'en', 2203), +(16126, 'The Railroad Builders: A Chronicle of the Welding of the States', 'Moody, John', '2002-01-01', 25, 'https://www.gutenberg.org/ebooks/3036', 'en', 3869), +(16127, 'Eine Stunde hinter Mitternacht', 'Hesse, Hermann', '2013-03-12', 54, 'https://www.gutenberg.org/ebooks/42311', 'de', 422), +(16128, 'Industrial Conspiracies', 'Darrow, Clarence', '2009-12-21', 14, 'https://www.gutenberg.org/ebooks/30731', 'en', 7562), +(16129, 'Hampshire Days', 'Hudson, W. H. (William Henry)', '2019-08-02', 624, 'https://www.gutenberg.org/ebooks/60041', 'en', 7563), +(16130, 'The Rough Road', 'Locke, William John', '2009-01-12', 65, 'https://www.gutenberg.org/ebooks/27786', 'en', 579), +(16131, 'Shakespeare\'s Christmas, and other stories', 'Quiller-Couch, Arthur', '2017-03-03', 19, 'https://www.gutenberg.org/ebooks/54274', 'en', 409), +(16132, 'Right off the Bat: Baseball Ballads', 'Kirk, William Frederick', '2011-02-12', 13, 'https://www.gutenberg.org/ebooks/35243', 'en', 7564), +(16133, 'Jack Ranger\'s Western Trip; Or, from Boarding School to Ranch and Range', 'Young, Clarence', '2005-02-01', 13, 'https://www.gutenberg.org/ebooks/7496', 'en', 515), +(16134, 'La vita Italiana nel Rinascimento: Conferenze tenute a Firenze nel 1892', NULL, '2016-04-09', 53, 'https://www.gutenberg.org/ebooks/51706', 'it', 3484), +(16135, 'Mère Giraud\'s Little Daughter', 'Burnett, Frances Hodgson', '2007-11-04', 13, 'https://www.gutenberg.org/ebooks/23326', 'en', 797), +(16136, 'Indian Ghost Stories\nSecond Edition', 'Mukerji, S.', '2005-11-20', 428, 'https://www.gutenberg.org/ebooks/17113', 'en', 7565), +(16137, 'Mr. Oseba\'s Last Discovery', 'Bell, George W. (George William)', '2014-12-14', 21, 'https://www.gutenberg.org/ebooks/47663', 'en', 3572), +(16138, 'De vliegende Hollander', 'Visser, Piet', '2010-11-21', 30, 'https://www.gutenberg.org/ebooks/34391', 'nl', 324), +(16139, 'The Bastonnais\nTale of the American Invasion of Canada in 1775-76', 'Lespérance, John', '2006-08-02', 25, 'https://www.gutenberg.org/ebooks/18967', 'en', 7566), +(16140, 'Aaron\'s Rod', 'Lawrence, D. H. (David Herbert)', '2004-09-01', 5, 'https://www.gutenberg.org/ebooks/6544', 'en', 7567), +(16141, 'Jemima Placid; or, The Advantage of Good-Nature', 'Kilner, Mary Ann', '2011-09-23', 9, 'https://www.gutenberg.org/ebooks/37514', 'en', 4424), +(16142, 'El Consejo de los Dioses', 'Rizal, José', '2005-01-25', 28, 'https://www.gutenberg.org/ebooks/14796', 'es', 61), +(16143, 'To Win the Love He Sought\nThe Great Awakening: Volume 3', 'Oppenheim, E. Phillips (Edward Phillips)', '2010-09-23', 42, 'https://www.gutenberg.org/ebooks/33988', 'en', 128), +(16144, 'Vähäinen kertomus Muinais-Suomalaisten pyhistä menoista', 'Salmelainen, Eero', '2016-09-14', 6, 'https://www.gutenberg.org/ebooks/53051', 'fi', 7568), +(16145, 'Mountain Moggy: The Stoning of the Witch', 'Kingston, William Henry Giles', '2007-05-15', 11, 'https://www.gutenberg.org/ebooks/21471', 'en', 31), +(16146, 'Unser täglich Gift: Gedichte', 'Krzyzanowski, Otfried', '2016-05-29', 4, 'https://www.gutenberg.org/ebooks/52183', 'de', 8), +(16147, 'Thirteen Months in the Rebel Army\r\nBeing a Narrative of Personal Adventures in the Infantry, Ordnance, Cavalry, Courier, and Hospital Services; With an Exhibition of the Power, Purposes, Earnestness, Military Despotism, and Demoralization of the South', 'Stevenson, William G.', '2005-04-17', 16, 'https://www.gutenberg.org/ebooks/15644', 'en', 83), +(16148, 'Punch or the London Charivari, Vol. 109, September 21, 1895', 'Various', '2014-03-14', 9, 'https://www.gutenberg.org/ebooks/45134', 'en', 134), +(16149, 'The Founder of New France : A Chronicle of Champlain', 'Colby, Charles W. (Charles William)', '2003-07-01', 69, 'https://www.gutenberg.org/ebooks/4213', 'en', 3998), +(16150, 'A Select Collection of Old English Plays, Volume 07', NULL, '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10336', 'en', 1088), +(16151, 'Cousin Henry', 'Trollope, Anthony', '2008-01-01', 55, 'https://www.gutenberg.org/ebooks/24103', 'en', 378), +(16152, 'My Buried Treasure', 'Davis, Richard Harding', '1999-05-01', 8, 'https://www.gutenberg.org/ebooks/1761', 'en', 61), +(16153, 'Red Palmer: A Practical Treatise on Fly Fishing', 'Tayler, James', '2012-08-08', 37, 'https://www.gutenberg.org/ebooks/40446', 'en', 7569), +(16154, 'The Disputed V.C.: A Tale of the Indian Mutiny', 'Gibbon, Frederick P.', '2012-12-10', 17, 'https://www.gutenberg.org/ebooks/41594', 'en', 4504), +(16155, 'The Fundamental Principles of Old and New World Civilizations\r\nA Comparative Research Based on a Study of the Ancient Mexican Religious, Sociological, and Calendrical Systems', 'Nuttall, Zelia', '2010-04-20', 48, 'https://www.gutenberg.org/ebooks/32066', 'en', 4895), +(16156, 'Peggy Raymond\'s Way; Or, Blossom Time at Friendly Terrace', 'Smith, Harriet L. (Harriet Lummis)', '2014-06-07', 20, 'https://www.gutenberg.org/ebooks/45908', 'en', 7570), +(16157, 'Œuvres complètes de Guy de Maupassant - volume 12', 'Maupassant, Guy de', '2018-02-08', 21, 'https://www.gutenberg.org/ebooks/56523', 'fr', 642), +(16158, 'The Three Cities Trilogy: Paris, Volume 5', 'Zola, Émile', '2005-10-01', 12, 'https://www.gutenberg.org/ebooks/9168', 'en', 3319), +(16159, 'The French Revolution - Volume 3', 'Taine, Hippolyte', '2008-06-22', 53, 'https://www.gutenberg.org/ebooks/2580', 'en', 1536), +(16160, 'O senhor Dom Miguel I, e a senhora Dona Maria II\r\nComparações, reflexões, desengano', 'Novaes Vieira, João Augusto', '2009-10-29', 2, 'https://www.gutenberg.org/ebooks/30355', 'pt', 7571), +(16161, 'Te Tohunga: The ancient legends and traditions of the Maoris', 'Dittmer, W. (Wilhelm)', '2017-04-26', 23, 'https://www.gutenberg.org/ebooks/54610', 'en', 7572), +(16162, 'Les Chants de Maldoror', 'Lautréamont, comte de', '2004-04-01', 222, 'https://www.gutenberg.org/ebooks/12005', 'fr', 7573), +(16163, 'The Picture of Dorian Gray', 'Wilde, Oscar', '2008-08-01', 33, 'https://www.gutenberg.org/ebooks/26230', 'en', 2065), +(16164, 'Tea Leaves', 'Francis H. Leggett & Co.', '2002-10-01', 19, 'https://www.gutenberg.org/ebooks/3452', 'en', 7574), +(16165, 'Turnover Point', 'Coppel, Alfred', '2010-02-16', 49, 'https://www.gutenberg.org/ebooks/31287', 'en', 179), +(16166, 'Il secolo che muore, vol. I', 'Guerrazzi, Francesco Domenico', '2013-05-23', 11, 'https://www.gutenberg.org/ebooks/42775', 'it', 61), +(16167, 'Charley\'s Museum\nA Story for Young People', 'Unknown', '2007-12-05', 16, 'https://www.gutenberg.org/ebooks/23742', 'en', 37), +(16168, 'The Story of the Invention of Steel Pens\r\nWith a Description of the Manufacturing Process by Which They Are Produced', 'Bore, Henry', '2006-02-01', 33, 'https://www.gutenberg.org/ebooks/9954', 'en', 7575), +(16169, 'La patrie française', 'Coppée, François', '2006-01-23', 17, 'https://www.gutenberg.org/ebooks/17577', 'fr', 7576), +(16170, 'Plaisirs d\'auto', 'Corday, Michel', '2014-10-26', 13, 'https://www.gutenberg.org/ebooks/47207', 'fr', 6642), +(16171, 'Soldiers Three', 'Kipling, Rudyard', '2004-07-01', 74, 'https://www.gutenberg.org/ebooks/6120', 'en', 2224), +(16172, 'The Young Wireless Operator—As a Fire Patrol\r\nOr, The Story of a Young Wireless Amateur Who Made Good as a Fire Patrol', 'Theiss, Lewis E. (Lewis Edwin)', '2004-07-07', 21, 'https://www.gutenberg.org/ebooks/12839', 'en', 7577), +(16173, 'A Philosophical Dictionary, Volume 07', 'Voltaire', '2011-03-28', 26, 'https://www.gutenberg.org/ebooks/35627', 'en', 7578), +(16174, 'A Rough Shaking', 'MacDonald, George', '2005-09-01', 47, 'https://www.gutenberg.org/ebooks/8886', 'en', 7579), +(16175, 'Lex', 'Haggert, W. T.', '2016-03-05', 27, 'https://www.gutenberg.org/ebooks/51362', 'en', 7580), +(16176, 'Rembrandt and His Works\nComprising a Short Account of His Life; with a Critical Examination into His Principles and Practice of Design, Light, Shade, and Colour. Illustrated by Examples from the Etchings of Rembrandt.', 'Burnet, John', '2007-09-20', 41, 'https://www.gutenberg.org/ebooks/22690', 'en', 596), +(16177, 'The Innocent Adventuress', 'Bradley, Mary Hastings', '2009-06-30', 10, 'https://www.gutenberg.org/ebooks/29278', 'en', 348), +(16178, 'The Adventures of Jimmy Skunk', 'Burgess, Thornton W. (Thornton Waldo)', '2007-04-08', 55, 'https://www.gutenberg.org/ebooks/21015', 'en', 625), +(16179, 'The Life and Work of Susan B. Anthony (Volume 1 of 2)\r\nIncluding Public Addresses, Her Own Letters and Many From Her Contemporaries During Fifty Years', 'Harper, Ida Husted', '2005-03-01', 43, 'https://www.gutenberg.org/ebooks/15220', 'en', 2700), +(16180, 'Mémoires d\'Outre-Tombe, Tome 3', 'Chateaubriand, François-René, vicomte de', '2014-05-01', 36, 'https://www.gutenberg.org/ebooks/45550', 'fr', 840), +(16181, 'Our World; Or, the Slaveholder\'s Daughter', 'Adams, F. Colburn (Francis Colburn)', '2003-11-01', 35, 'https://www.gutenberg.org/ebooks/4677', 'en', 7581), +(16182, 'Lost Sir Massingberd: A Romance of Real Life. v. 1/2', 'Payn, James', '2011-08-23', 6, 'https://www.gutenberg.org/ebooks/37170', 'en', 61), +(16183, 'Ruukin jaloissa', 'Mäkelä, August Bernhard', '2013-12-21', 30, 'https://www.gutenberg.org/ebooks/44482', 'fi', 402), +(16184, 'At Minas Basin, and Other Poems', 'Rand, Theodore H. (Theodore Harding)', '2016-11-02', 3, 'https://www.gutenberg.org/ebooks/53435', 'en', 1237), +(16185, 'Our Flowering Shrubs, and How to Know Them', NULL, '2012-02-16', 70, 'https://www.gutenberg.org/ebooks/38904', 'en', 7582), +(16186, 'A Treatise on Domestic Economy; For the Use of Young Ladies at Home and at School', 'Beecher, Catharine Esther', '2007-06-14', 93, 'https://www.gutenberg.org/ebooks/21829', 'en', 3407), +(16187, 'The Story of Our Country\nEvery Child Can Read', NULL, '2010-05-16', 11, 'https://www.gutenberg.org/ebooks/32402', 'en', 7583), +(16188, 'The Struggle for Imperial Unity: Recollections & Experiences', 'Denison, George T. (George Taylor)', '2019-07-17', 65, 'https://www.gutenberg.org/ebooks/59933', 'en', 7584), +(16189, 'George Eliot; a Critical Study of Her Life, Writings and Philosophy', 'Cooke, George Willis', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11680', 'en', 5826), +(16190, 'General Anatomy, Applied to Physiology and Medicine, Vol. 2 (of 3)', 'Bichat, Xavier', '2017-12-08', 18, 'https://www.gutenberg.org/ebooks/56147', 'en', 7585), +(16191, 'A Chronicle of Jails', 'Figgis, Darrell', '2018-05-05', 12, 'https://www.gutenberg.org/ebooks/57095', 'en', 7586), +(16192, 'Мислите в главите', 'Stojan, Harry', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/10752', 'bg', 61), +(16193, 'Blind Man\'s Lantern', 'Lang, Allen Kim', '2008-02-10', 63, 'https://www.gutenberg.org/ebooks/24567', 'en', 5065), +(16194, 'The Ball at Sceaux', 'Balzac, Honoré de', '2004-06-01', 33, 'https://www.gutenberg.org/ebooks/1305', 'en', 58), +(16195, 'Socialism', 'Mill, John Stuart', '2011-11-25', 128, 'https://www.gutenberg.org/ebooks/38138', 'en', 254), +(16196, 'The History of Chivalry; Or, Knighthood and Its Times, Volume 2 (of 2)', 'Mills, Charles', '2012-06-17', 12, 'https://www.gutenberg.org/ebooks/40022', 'en', 7587), +(16197, 'Games and Songs of American Children', NULL, '2014-05-26', 16, 'https://www.gutenberg.org/ebooks/45762', 'en', 7588), +(16198, 'Ormond; Or, The Secret Witness. Volume 2 (of 3)', 'Brown, Charles Brockden', '2011-05-31', 33, 'https://www.gutenberg.org/ebooks/36290', 'en', 7589), +(16199, 'The Adventures of Harry Richmond — Volume 2', 'Meredith, George', '2003-09-01', 15, 'https://www.gutenberg.org/ebooks/4445', 'en', 2588), +(16200, 'Shenac\'s Work at Home', 'Robertson, Margaret M. (Margaret Murray)', '2007-04-27', 9, 'https://www.gutenberg.org/ebooks/21227', 'en', 7590), +(16201, 'Punch, or the London Charivari, Volume 152, March 14, 1917', 'Various', '2005-02-10', 6, 'https://www.gutenberg.org/ebooks/15012', 'en', 134), +(16202, 'A Hoodoo Machine; or, The Motor Boys\' Runabout No. 1313.\r\nBrave and Bold Weekly No. 363', NULL, '2016-11-26', 9, 'https://www.gutenberg.org/ebooks/53607', 'en', 4097), +(16203, 'Medieval English Literature', 'Ker, W. P. (William Paton)', '2011-09-07', 39, 'https://www.gutenberg.org/ebooks/37342', 'en', 7591), +(16204, 'The Story of My Life — Volume 05', 'Ebers, Georg', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/5597', 'en', 7159), +(16205, 'Tres Comedias Modernas\nen un acto y en prosa', 'Barranco, Mariano', '2008-06-03', 22, 'https://www.gutenberg.org/ebooks/25687', 'es', 2729), +(16206, 'Sir P.S.: His Astrophel and Stella\r\nWherein the excellence of sweete poesie is concluded', 'Sidney, Philip', '2018-01-14', 32, 'https://www.gutenberg.org/ebooks/56375', 'en', 6689), +(16207, 'Tiger Cat', 'Keller, David H. (David Henry)', '2010-05-31', 21, 'https://www.gutenberg.org/ebooks/32630', 'en', 461), +(16208, 'A Lover\'s Complaint', 'Shakespeare, William', '1997-12-01', 28, 'https://www.gutenberg.org/ebooks/1137', 'en', 8), +(16209, 'Thomas Paine, the Apostle of Liberty\r\nAn Address Delivered in Chicago, January 29, 1916; Including the Testimony of Five Hundred Witnesses', 'Remsburg, John E. (John Eleazer)', '2012-07-11', 35, 'https://www.gutenberg.org/ebooks/40210', 'en', 5548), +(16210, 'The Last of the Foresters\r\nOr, Humors on the Border; A story of the Old Virginia Frontier', 'Cooke, John Esten', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10560', 'en', 4850), +(16211, 'Captain Cook: His Life, Voyages, and Discoveries', 'Kingston, William Henry Giles', '2008-03-05', 37, 'https://www.gutenberg.org/ebooks/24755', 'en', 819), +(16212, 'Montreal, 1535-1914. Vol. 1. Under the French Régime, 1535-1760', 'Atherton, William H. (William Henry)', '2014-12-29', 30, 'https://www.gutenberg.org/ebooks/47809', 'en', 7592), +(16213, 'Californische Skizzen', 'Gerstäcker, Friedrich', '2017-03-25', 9, 'https://www.gutenberg.org/ebooks/54422', 'de', 7593), +(16214, 'Around the World in Seven Months', 'Gillis, Charles J.', '2013-08-18', 8, 'https://www.gutenberg.org/ebooks/43495', 'en', 885), +(16215, 'Royal Children of English History', 'Nesbit, E. (Edith)', '2009-10-04', 33, 'https://www.gutenberg.org/ebooks/30167', 'en', 7594), +(16216, 'The World English Bible (WEB): 2 Peter', 'Anonymous', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8288', 'en', 4082), +(16217, 'Out of the Triangle: A Story of the Far East', 'Bamford, Mary E. (Mary Ellen)', '2003-01-01', 18, 'https://www.gutenberg.org/ebooks/3660', 'en', 7595), +(16218, 'The Art and Practice of Silver Printing', 'Abney, William de Wiveleslie, Sir', '2013-04-10', 30, 'https://www.gutenberg.org/ebooks/42547', 'en', 7596), +(16219, 'Death Wish', 'Sheckley, Robert', '2009-08-31', 39, 'https://www.gutenberg.org/ebooks/29876', 'en', 26), +(16220, 'String Quartet No. 16 in F major Opus 135', 'Beethoven, Ludwig van', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12237', 'en', 909), +(16221, 'Linda Tressel', 'Trollope, Anthony', '2008-07-07', 40, 'https://www.gutenberg.org/ebooks/26002', 'en', 7597), +(16222, 'The History of Salt\r\nWith Observations on the Geographical Distribution, Geological Formation, and Medicinal and Dietetic Properties', 'Boddy, Evan Martlett', '2014-10-03', 17, 'https://www.gutenberg.org/ebooks/47035', 'en', 7598), +(16223, 'Representative Men: Seven Lectures', 'Emerson, Ralph Waldo', '2004-08-01', 172, 'https://www.gutenberg.org/ebooks/6312', 'en', 3088), +(16224, 'Stories About Indians', 'Anonymous', '2007-11-20', 5, 'https://www.gutenberg.org/ebooks/23570', 'en', 4248), +(16225, 'Life of Napoleon Bonaparte, Volume V.', 'Scott, Walter', '2015-05-02', 21, 'https://www.gutenberg.org/ebooks/48841', 'en', 840), +(16226, 'A Budget of Christmas Tales by Charles Dickens and Others', NULL, '2009-02-26', 74, 'https://www.gutenberg.org/ebooks/28198', 'en', 585), +(16227, 'The Courage of Marge O\'Doone', 'Curwood, James Oliver', '2006-02-10', 34, 'https://www.gutenberg.org/ebooks/17745', 'en', 61), +(16228, 'Talks on Teaching Literature', 'Bates, Arlo', '2015-09-30', 12, 'https://www.gutenberg.org/ebooks/50082', 'en', 4040), +(16229, 'Venus is a Man\'s World', 'Tenn, William', '2016-02-08', 41, 'https://www.gutenberg.org/ebooks/51150', 'en', 623), +(16230, 'Epistle to the Son of the Wolf', 'Bahá\'u\'lláh', '2005-06-23', 9, 'https://www.gutenberg.org/ebooks/16697', 'en', 4457), +(16231, 'The Great Mississippi Flood of 1874: Its Extent, Duration, and Effects', 'Wiltz, Louis Alfred', '2010-04-05', 13, 'https://www.gutenberg.org/ebooks/31889', 'en', 7599), +(16232, 'Polite Satires: Containing The Unknown Hand, The Volcanic Island, Square Pegs', 'Bax, Clifford', '2015-09-17', 12, 'https://www.gutenberg.org/ebooks/49993', 'en', 1088), +(16233, 'Jewish Immigration to the United States from 1881 to 1910\nStudies in History, Economics and Public Law, Vol. LIX, No. 4, 1914', 'Joseph, Samuel', '2011-02-27', 13, 'https://www.gutenberg.org/ebooks/35415', 'en', 5517), +(16234, 'Mikor a mécses már csak pislog: Elbeszélések', 'Mikszáth, Kálmán', '2013-09-06', 22, 'https://www.gutenberg.org/ebooks/43653', 'hu', 1532), +(16235, 'On the Frontier', 'Harte, Bret', '2006-05-18', 31, 'https://www.gutenberg.org/ebooks/2574', 'en', 50), +(16236, 'That Gospel Sermon on the Blessed Hope', 'Moody, Dwight Lyman', '2008-11-23', 18, 'https://www.gutenberg.org/ebooks/27316', 'en', 3021), +(16237, 'The Great Prince Shan', 'Oppenheim, E. Phillips (Edward Phillips)', '2004-08-06', 32, 'https://www.gutenberg.org/ebooks/13123', 'en', 1238), +(16238, 'In the Rocky Mountains: A Tale of Adventure', 'Kingston, William Henry Giles', '2006-10-01', 14, 'https://www.gutenberg.org/ebooks/19419', 'en', 7600), +(16239, 'The Catholic World, Vol. 07, April 1868 to September, 1868', 'Various', '2017-10-13', 1, 'https://www.gutenberg.org/ebooks/55736', 'en', 96), +(16240, 'The Arawack Language of Guiana in its Linguistic and Ethnological Relations', 'Brinton, Daniel G. (Daniel Garrison)', '2010-02-14', 28, 'https://www.gutenberg.org/ebooks/31273', 'en', 7601), +(16241, 'Notes and Queries, Number 166, January 1, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 14, 'https://www.gutenberg.org/ebooks/42781', 'en', 105), +(16242, 'A History of Lancashire', 'Fishwick, Henry', '2015-07-05', 19, 'https://www.gutenberg.org/ebooks/49369', 'en', 14), +(16243, 'Die Uhren: Ein Abriß der Geschichte der Zeitmessung', 'Kindler, Fintan', '2015-10-17', 16, 'https://www.gutenberg.org/ebooks/50244', 'de', 7602), +(16244, 'Els Herois', 'Bertrana, Prudenci', '2006-01-23', 24, 'https://www.gutenberg.org/ebooks/17583', 'ca', 61), +(16245, 'Steam Engines', 'Anonymous', '2010-12-19', 32, 'https://www.gutenberg.org/ebooks/34701', 'en', 7603), +(16246, 'Bonnie Prince Charlie : a Tale of Fontenoy and Culloden', 'Henty, G. A. (George Alfred)', '2004-12-01', 50, 'https://www.gutenberg.org/ebooks/7006', 'en', 7604), +(16247, 'The Spell of the Heart of France: The Towns, Villages and Chateaus about Paris', 'Hallays, André', '2014-07-19', 16, 'https://www.gutenberg.org/ebooks/46321', 'en', 1117), +(16248, 'The Philippine Islands, 1493-1898 — Volume 23 of 55\r\n1629-30\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2005-08-06', 47, 'https://www.gutenberg.org/ebooks/16451', 'en', 7466), +(16249, 'Not a Creature Was Stirring', 'Evans, Dean', '2016-03-08', 33, 'https://www.gutenberg.org/ebooks/51396', 'en', 5886), +(16250, 'Report on the Condition of the South', 'Schurz, Carl', '2005-09-01', 74, 'https://www.gutenberg.org/ebooks/8872', 'en', 5784), +(16251, 'The Severed Hand\nFrom \"German Tales\" Published by the American Publishers\' Corporation', 'Hauff, Wilhelm', '2007-09-18', 20, 'https://www.gutenberg.org/ebooks/22664', 'en', 179), +(16252, 'Principles and Practice of Fur Dressing and Fur Dyeing', 'Austin, William E.', '2013-01-28', 14, 'https://www.gutenberg.org/ebooks/41938', 'en', 7605), +(16253, 'Notes of a naturalist in South America', 'Ball, John', '2016-07-06', 7, 'https://www.gutenberg.org/ebooks/52513', 'en', 7606), +(16254, 'Tics and Their Treatment', 'Meige, Henry', '2012-05-27', 22, 'https://www.gutenberg.org/ebooks/39822', 'en', 7607), +(16255, 'Socrates', 'Voltaire', '2003-11-01', 105, 'https://www.gutenberg.org/ebooks/4683', 'en', 7608), +(16256, 'De zonderlinge avonturen van \"Zijne Excellentie de Generaal\"', 'Brusse, M. J. (Marie Joseph)', '2011-05-08', 15, 'https://www.gutenberg.org/ebooks/36056', 'nl', 61), +(16257, 'St. George and St. Michael, Volume 2', 'MacDonald, George', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/5751', 'en', 4665), +(16258, 'La filleule de Lagardère; II\nL\'héritière', 'Mahalin, Paul', '2011-08-23', 6, 'https://www.gutenberg.org/ebooks/37184', 'fr', 98), +(16259, 'Satan\'s Invisible World Displayed; or, Despairing Democracy\r\nA Study of Greater New York', 'Stead, W. T. (William Thomas)', '2013-12-21', 29, 'https://www.gutenberg.org/ebooks/44476', 'en', 1741), +(16260, 'Index of the Project Gutenberg Works of Oliver Goldsmith', 'Goldsmith, Oliver', '2018-10-05', 6, 'https://www.gutenberg.org/ebooks/58029', 'en', 198), +(16261, 'Väkinäinen naiminen', 'Molière', '2004-12-09', 15, 'https://www.gutenberg.org/ebooks/14306', 'fi', 907); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(16262, 'Bunny Brown and His Sister Sue at Aunt Lu\'s City Home', 'Hope, Laura Lee', '2006-12-19', 19, 'https://www.gutenberg.org/ebooks/20133', 'en', 1708), +(16263, 'The Amazing Argentine: A New Land of Enterprise', 'Fraser, John Foster', '2012-10-18', 16, 'https://www.gutenberg.org/ebooks/41104', 'en', 7609), +(16264, 'The Reckoning', 'Chambers, Robert W. (Robert William)', '2008-05-12', 34, 'https://www.gutenberg.org/ebooks/25441', 'en', 1293), +(16265, 'The Torrent (Entre Naranjos)', 'Blasco Ibáñez, Vicente', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11674', 'en', 61), +(16266, 'Moonlight Schools for the Emancipation of Adult Illiterates', 'Stewart, Cora Wilson', '2018-04-27', 5, 'https://www.gutenberg.org/ebooks/57061', 'en', 7610), +(16267, 'The Oriental Story Book: A Collection of Tales', 'Hauff, Wilhelm', '2008-02-13', 117, 'https://www.gutenberg.org/ebooks/24593', 'en', 3144), +(16268, 'The Belief in Immortality and the Worship of the Dead, Volume 2 (of 3)\r\nThe Belief Among the Polynesians', 'Frazer, James George', '2010-08-24', 43, 'https://www.gutenberg.org/ebooks/33524', 'en', 7611), +(16269, 'Sekasointuja: Runoja', 'Onerva, L.', '2019-02-03', 2, 'https://www.gutenberg.org/ebooks/58815', 'fi', 1171), +(16270, 'Twenty-Six Years Reminiscences of Scotch Grouse Moors', 'Adams, William Alexander', '2014-05-28', 13, 'https://www.gutenberg.org/ebooks/45796', 'en', 7612), +(16271, 'A Harmony of the Gospels for Students of the Life of Christ\nBased on the Broadus Harmony in the Revised Version', 'Broadus, John Albert', '2011-05-29', 85, 'https://www.gutenberg.org/ebooks/36264', 'en', 7613), +(16272, 'Rakkauden uhri', 'Zola, Émile', '2016-08-04', 4, 'https://www.gutenberg.org/ebooks/52721', 'fi', 7614), +(16273, 'Akbar, Emperor of India\r\nA Picture of Life and Customs from the Sixteenth Century', 'Garbe, Richard', '2004-11-23', 59, 'https://www.gutenberg.org/ebooks/14134', 'en', 7615), +(16274, 'A Museum for Young Gentlemen and Ladies\r\nOr, a Private Tutor for Little Masters and Misses', 'Unknown', '2007-01-09', 16, 'https://www.gutenberg.org/ebooks/20301', 'en', 4279), +(16275, 'Barbara Blomberg — Volume 03', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5563', 'en', 5057), +(16276, 'Philosophy of the Plan of Salvation: A Book for the Times', 'Walker, James B. (James Barr)', '2014-01-11', 14, 'https://www.gutenberg.org/ebooks/44644', 'en', 2313), +(16277, 'Historic Tales: The Romance of Reality. Vol. 11 (of 15), Roman', 'Morris, Charles', '2008-06-01', 13, 'https://www.gutenberg.org/ebooks/25673', 'en', 6793), +(16278, 'Guy Harris, the Runaway', 'Castlemon, Harry', '2018-01-16', 3, 'https://www.gutenberg.org/ebooks/56381', 'en', 5395), +(16279, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 400, November 21, 1829', 'Various', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11446', 'en', 133), +(16280, 'De la cruauté religieuse', 'Holbach, Paul Henri Thiry, baron d\'', '2012-11-10', 20, 'https://www.gutenberg.org/ebooks/41336', 'fr', 7616), +(16281, 'Recollections of Bytown and Its Old Inhabitants', 'Lett, William Pittman', '2005-02-04', 5, 'https://www.gutenberg.org/ebooks/14908', 'en', 7617), +(16282, 'Manners and Rules of Good Society; Or, Solecisms to be Avoided', 'Anonymous', '2010-09-13', 39, 'https://www.gutenberg.org/ebooks/33716', 'en', 7618), +(16283, 'Punch, or the London Charivari, Volume 153, September 12, 1917', 'Various', '2004-01-01', 17, 'https://www.gutenberg.org/ebooks/10594', 'en', 134), +(16284, 'Peeps at Many Lands: Siam', 'Young, Ernest', '2018-06-02', 22, 'https://www.gutenberg.org/ebooks/57253', 'en', 1893), +(16285, 'De Negerhut', 'Stowe, Harriet Beecher', '2008-11-02', 25, 'https://www.gutenberg.org/ebooks/27124', 'nl', 1238), +(16286, 'Three Articles on Metaphor\r\nSociety for Pure English, Tract 11', 'Society for Pure English', '2004-08-28', 30, 'https://www.gutenberg.org/ebooks/13311', 'en', 7619), +(16287, 'Ninth annual report of the St. Mary Abbott\'s, Kensington, Church of England District Visiting Society\nwith some account of the different societies subordinate or affiliated to it', 'Anonymous', '2013-08-13', 1, 'https://www.gutenberg.org/ebooks/43461', 'en', 7620), +(16288, 'The Fall of a Nation\nA Sequel to the Birth of a Nation', 'Dixon, Thomas, Jr.', '2015-01-26', 18, 'https://www.gutenberg.org/ebooks/48089', 'en', 26), +(16289, 'The Geneva Protocol', 'Miller, David Hunter', '2009-05-24', 30, 'https://www.gutenberg.org/ebooks/28950', 'en', 7621), +(16290, 'East of the Shadows', 'Barclay, Hubert, Mrs.', '2009-10-06', 17, 'https://www.gutenberg.org/ebooks/30193', 'en', 61), +(16291, 'Urbain Grandier\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 26, 'https://www.gutenberg.org/ebooks/2746', 'en', 5050), +(16292, 'Armenia immolata', 'Steele, Edward Strieby', '2016-05-04', 11, 'https://www.gutenberg.org/ebooks/51998', 'en', 7622), +(16293, 'The Day of Sir Wilfrid Laurier: A Chronicle of Our Own Time', 'Skelton, Oscar D. (Oscar Douglas)', '2010-01-21', 15, 'https://www.gutenberg.org/ebooks/31041', 'en', 7623), +(16294, 'Every Man in His Humour', 'Jonson, Ben', '2003-01-01', 40, 'https://www.gutenberg.org/ebooks/3694', 'en', 5266), +(16295, 'Astounding Stories of Super-Science, October, 1930', 'Various', '2009-09-01', 100, 'https://www.gutenberg.org/ebooks/29882', 'en', 2527), +(16296, 'The Tower of London', 'Poyser, Arthur', '2017-09-07', 6, 'https://www.gutenberg.org/ebooks/55504', 'en', 7624), +(16297, 'The Mines and its Wonders', 'Kingston, William Henry Giles', '2009-01-28', 19, 'https://www.gutenberg.org/ebooks/27918', 'en', 435), +(16298, 'Encyclopaedia Britannica, 11th Edition, \"Bedlam\" to \"Benson, George\"\r\nVolume 3, Slice 5', 'Various', '2010-12-01', 27, 'https://www.gutenberg.org/ebooks/34533', 'en', 1081), +(16299, 'The Gold of Chickaree', 'Warner, Susan', '2007-11-21', 18, 'https://www.gutenberg.org/ebooks/23584', 'en', 388), +(16300, 'A Memoir of Transactions That Took Place in St. Domingo, in the Spring of 1799\r\nAffording an Idea of the Present State of that Country, the Real Character of Its Black Governor, Toussaint L\'ouverture, and the Safety of our West-India Islands, from Attack or Revolt', 'Rainsford, Marcus, active 1805', '2015-09-29', 10, 'https://www.gutenberg.org/ebooks/50076', 'en', 7625), +(16301, 'The Tale of Solomon Owl', 'Bailey, Arthur Scott', '2005-09-05', 68, 'https://www.gutenberg.org/ebooks/16663', 'en', 5024), +(16302, 'The Aeneid of Virgil', 'Virgil', '2007-08-29', 277, 'https://www.gutenberg.org/ebooks/22456', 'en', 514), +(16303, 'The Boy Scouts as Forest Fire Fighters', 'Shaler, Robert', '2015-09-14', 7, 'https://www.gutenberg.org/ebooks/49967', 'en', 2994), +(16304, 'Species and Varieties, Their Origin by Mutation', 'Vries, Hugo de', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/7234', 'en', 5893), +(16305, 'Typesetting\r\nA primer of information about working at the case, justifying, spacing, correcting, making-up, and other operations employed in setting type by hand', 'Stewart, A. A. (Alexander A.)', '2014-06-27', 24, 'https://www.gutenberg.org/ebooks/46113', 'en', 7626), +(16306, 'Harper\'s Young People, February 14, 1882\nAn Illustrated Weekly', 'Various', '2016-10-17', 1, 'https://www.gutenberg.org/ebooks/53297', 'en', 479), +(16307, 'Two Hundred Sketches Humorous and Grotesque', 'Doré, Gustave', '2005-01-01', 57, 'https://www.gutenberg.org/ebooks/14550', 'en', 7627), +(16308, 'Diary of Anna Green Winslow, a Boston School Girl of 1771', 'Winslow, Anna Green', '2007-03-07', 47, 'https://www.gutenberg.org/ebooks/20765', 'en', 7628), +(16309, 'The Canadian Brothers; Or, The Prophecy Fulfilled: A Tale of the Late American War — Volume 2', 'Richardson, Major (John)', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/5107', 'en', 3858), +(16310, 'Dominie Dean: A Novel', 'Butler, Ellis Parker', '2013-11-18', 15, 'https://www.gutenberg.org/ebooks/44220', 'en', 7629), +(16311, 'The Golden Rock', 'Glanville, Ernest', '2011-07-03', 4, 'https://www.gutenberg.org/ebooks/36600', 'en', 2126), +(16312, 'The Primrose Ring', 'Sawyer, Ruth', '2005-03-27', 9, 'https://www.gutenberg.org/ebooks/15482', 'en', 1007), +(16313, 'The Scott Country', 'Geddie, John', '2016-06-15', 8, 'https://www.gutenberg.org/ebooks/52345', 'en', 7630), +(16314, 'The Peddler\'s Boy; Or, I\'ll Be Somebody', 'Woodworth, Francis C. (Francis Channing)', '2010-08-08', 8, 'https://www.gutenberg.org/ebooks/33372', 'en', 1817), +(16315, 'The Greville Memoirs, Part 3 (of 3), Volume 1 (of 2)\r\nA Journal of the Reign of Queen Victoria from 1852 to 1860', 'Greville, Charles', '2013-09-14', 10, 'https://www.gutenberg.org/ebooks/40680', 'en', 2135), +(16316, 'Zigzag Journeys in the White City. With Visits to the Neighboring Metropolis', 'Butterworth, Hezekiah', '2018-08-04', 10, 'https://www.gutenberg.org/ebooks/57637', 'en', 722), +(16317, '水滸後傳', 'Chen, Chen', '2008-04-28', 32, 'https://www.gutenberg.org/ebooks/25217', 'zh', 1003), +(16318, 'Sowing and Reaping: A Temperance Story', 'Harper, Frances Ellen Watkins', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11022', 'en', 716), +(16319, 'The City of Beautiful Nonsense', 'Thurston, E. Temple (Ernest Temple)', '2013-01-01', 70, 'https://www.gutenberg.org/ebooks/41752', 'en', 918), +(16320, 'Character and Conduct\nA Book of Helpful Thoughts by Great Writers of Past and Present Ages', NULL, '2012-05-07', 11, 'https://www.gutenberg.org/ebooks/39648', 'en', 7631), +(16321, 'Report of the Decision of the Supreme Court of the United States, and the Opinions of the Judges Thereof, in the Case of Dred Scott versus John F. A. Sandford\r\nDecember Term, 1856.', 'Howard, Benjamin C. (Benjamin Chew)', '2010-02-27', 39, 'https://www.gutenberg.org/ebooks/31425', 'en', 7632), +(16322, 'The Parasite', 'Doyle, Arthur Conan', '2005-08-01', 3, 'https://www.gutenberg.org/ebooks/8618', 'en', 461), +(16323, 'The War and the Gospel: Sermons and Addresses During the Present War', 'Wace, Henry', '2017-07-20', 9, 'https://www.gutenberg.org/ebooks/55160', 'en', 717), +(16324, 'Studies of American Fungi. Mushrooms, Edible, Poisonous, etc.', 'Atkinson, George Francis', '2008-08-30', 42, 'https://www.gutenberg.org/ebooks/26492', 'en', 7633), +(16325, 'Vasco da Gama\nLivro de Leitura para familias e escolas', NULL, '2008-12-16', 14, 'https://www.gutenberg.org/ebooks/27540', 'pt', 7634), +(16326, 'Ballads of a Cheechako', 'Service, Robert W. (Robert William)', '2008-07-02', 49, 'https://www.gutenberg.org/ebooks/259', 'en', 7635), +(16327, 'Every Step in Canning: The Cold-Pack Method', 'Gray, Grace Viall', '2004-10-17', 47, 'https://www.gutenberg.org/ebooks/13775', 'en', 7636), +(16328, 'The Inevitable', 'Couperus, Louis', '2013-06-21', 19, 'https://www.gutenberg.org/ebooks/43005', 'en', 109), +(16329, 'Hans Huckebein', 'Busch, Wilhelm', '2000-09-01', 40, 'https://www.gutenberg.org/ebooks/2322', 'de', 5789), +(16330, 'Adèle Dubois\nA Story of the Lovely Miramichi Valley in New Brunswick', 'Savage, William T., Mrs.', '2005-07-05', 14, 'https://www.gutenberg.org/ebooks/16207', 'en', 7637), +(16331, 'Later Poems', 'Meynell, Alice', '2007-07-09', 17, 'https://www.gutenberg.org/ebooks/22032', 'en', 8), +(16332, 'Kenelm Chillingly — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 17, 'https://www.gutenberg.org/ebooks/7650', 'en', 137), +(16333, 'Frauen', 'Edschmid, Kasimir', '2011-01-26', 7, 'https://www.gutenberg.org/ebooks/35085', 'de', 253), +(16334, 'Frederic Chopin: His Life, Letters, and Works, v. 1 (of 2)', 'Karasowski, Maurycy', '2014-08-13', 26, 'https://www.gutenberg.org/ebooks/46577', 'en', 392), +(16335, 'The Robbers', 'Schiller, Friedrich', '2004-12-08', 181, 'https://www.gutenberg.org/ebooks/6782', 'en', 402), +(16336, 'The Compleat Surgeon\r\nor, the whole Art of Surgery explain\'d in a most familiar Method.', 'Le Clerc, M. (Charles Gabriel)', '2010-10-28', 18, 'https://www.gutenberg.org/ebooks/34157', 'en', 7638), +(16337, 'The Comical Creatures from Wurtemberg\nSecond Edition', 'Unknown', '2009-04-06', 15, 'https://www.gutenberg.org/ebooks/28508', 'en', 625), +(16338, 'L\'Illustration, No. 0054, 9 Mars 1844', 'Various', '2013-09-28', 1, 'https://www.gutenberg.org/ebooks/43839', 'fr', 150), +(16339, 'The Americans in the Great War; v. 2. The Battle of Saint Mihiel\r\n(St. Mihiel, Pont-à-Mousson, Metz)', NULL, '2015-11-08', 11, 'https://www.gutenberg.org/ebooks/50412', 'en', 7639), +(16340, 'Schneeberger Schützenmittwoch vor fünfizig Jahren', 'Meyer, Guido', '2017-08-13', 5, 'https://www.gutenberg.org/ebooks/55352', 'de', 7640), +(16341, 'Casey Ryan', 'Bower, B. M.', '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/12495', 'en', 315), +(16342, 'The Story of Grenfell of the Labrador: A Boy\'s Life of Wilfred T. Grenfell', 'Wallace, Dillon', '2005-10-07', 10, 'https://www.gutenberg.org/ebooks/16809', 'en', 7641), +(16343, '刺靑', 'Tanizaki, Jun\'ichiro', '2010-03-13', 77, 'https://www.gutenberg.org/ebooks/31617', 'ja', 109), +(16344, 'The Spirit Land', 'Emmons, Samuel B. (Samuel Bulfinch)', '2013-07-17', 28, 'https://www.gutenberg.org/ebooks/43237', 'en', 504), +(16345, 'History of Friedrich II of Prussia — Volume 10', 'Carlyle, Thomas', '2008-06-16', 39, 'https://www.gutenberg.org/ebooks/2110', 'en', 6848), +(16346, 'Le Roman Comique', 'Scarron, Paul', '2009-01-11', 70, 'https://www.gutenberg.org/ebooks/27772', 'fr', 7642), +(16347, 'The Rocks of Valpré', 'Dell, Ethel M. (Ethel May)', '2004-09-27', 17, 'https://www.gutenberg.org/ebooks/13547', 'en', 61), +(16348, 'Ancient Egyptian, Assyrian, and Persian costumes and decorations', 'Hornblower, Florence S.', '2017-03-04', 31, 'https://www.gutenberg.org/ebooks/54280', 'en', 7643), +(16349, 'Contes à Ninon', 'Zola, Émile', '2005-02-01', 29, 'https://www.gutenberg.org/ebooks/7462', 'fr', 298), +(16350, 'Eve\'s Diary', 'Twain, Mark', '2006-11-18', 7, 'https://www.gutenberg.org/ebooks/19841', 'en', 2101), +(16351, 'The Action of Medicines in the System\r\nOr, on the mode in which therapeutic agents introduced into the stomach produce their peculiar effects on the animal economy', 'Headland, Frederick William', '2014-09-01', 19, 'https://www.gutenberg.org/ebooks/46745', 'en', 7644), +(16352, 'The Food of the Gods\nA Popular Account of Cocoa', 'Head, Brandon', '2005-06-10', 36, 'https://www.gutenberg.org/ebooks/16035', 'en', 7122), +(16353, 'Recollections\nWith Photogravure Portrait of the Author and a number of\nOriginal Letters, of which one by George Meredith and\nanother by Robert Louis Stevenson are reproduced in\nfacsimile', 'Murray, David Christie', '2007-08-01', 15, 'https://www.gutenberg.org/ebooks/22200', 'en', 5826), +(16354, 'Vagabond Life in Mexico', 'Ferry, Gabriel', '2015-12-05', 11, 'https://www.gutenberg.org/ebooks/50620', 'en', 7645), +(16355, 'Odette\'s Marriage\r\nA Novel, from the French of Albert Delpit, Translated from the \"Revue des Deux Mondes,\" by Emily Prescott', 'Delpit, Albert', '2014-12-18', 4, 'https://www.gutenberg.org/ebooks/47697', 'en', 61), +(16356, 'History of the World War: An Authentic Narrative of the World\'s Greatest War', 'March, Francis Andrew', '2006-08-06', 140, 'https://www.gutenberg.org/ebooks/18993', 'en', 335), +(16357, 'Evergreens', 'Jerome, Jerome K. (Jerome Klapka)', '1997-03-01', 35, 'https://www.gutenberg.org/ebooks/857', 'en', 7646), +(16358, 'Held for Orders: Being Stories of Railroad Life', 'Spearman, Frank H. (Frank Hamilton)', '2010-11-18', 51, 'https://www.gutenberg.org/ebooks/34365', 'en', 112), +(16359, 'Raspberry Jam', 'Wells, Carolyn', '2004-03-01', 57, 'https://www.gutenberg.org/ebooks/5335', 'en', 128), +(16360, 'Warren Commission (12 of 26): Hearings Vol. XII (of 15)', 'United States. Warren Commission', '2013-10-21', 17, 'https://www.gutenberg.org/ebooks/44012', 'en', 5206), +(16361, 'Now or Never; Or, The Adventures of Bobby Bright: A Story for Young Folks', 'Optic, Oliver', '2005-01-23', 13, 'https://www.gutenberg.org/ebooks/14762', 'en', 7371), +(16362, 'Ontario Teachers\' Manuals: Household Science in Rural Schools', 'Ontario. Department of Education', '2007-02-10', 47, 'https://www.gutenberg.org/ebooks/20557', 'en', 7647), +(16363, 'The Young Rajah', 'Kingston, William Henry Giles', '2007-05-15', 25, 'https://www.gutenberg.org/ebooks/21485', 'en', 1228), +(16364, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 02\r\nIsrael, India, Persia, Phoenicia, Minor Nations of Western Asia', NULL, '2016-05-28', 46, 'https://www.gutenberg.org/ebooks/52177', 'en', 346), +(16365, 'Buchanan\'s Journal of Man, March 1887\nVolume 1, Number 2', NULL, '2008-06-17', 16, 'https://www.gutenberg.org/ebooks/25819', 'en', 210), +(16366, 'The Coming of Coal', 'Bruère, Robert W. (Robert Walter)', '2011-06-15', 22, 'https://www.gutenberg.org/ebooks/36432', 'en', 6456), +(16367, 'All along the River: A Novel', 'Braddon, M. E. (Mary Elizabeth)', '2018-06-26', 20, 'https://www.gutenberg.org/ebooks/57405', 'en', 137), +(16368, 'Harper\'s Round Table, September 24, 1895', 'Various', '2010-07-12', 6, 'https://www.gutenberg.org/ebooks/33140', 'en', 668), +(16369, 'Eva\'s Adventures in Shadow-Land', 'Nauman, Mary D. (Mary Dummett)', '2017-01-06', 17, 'https://www.gutenberg.org/ebooks/53899', 'en', 388), +(16370, 'Macbeth', 'Shakespeare, William', '1999-06-01', 30, 'https://www.gutenberg.org/ebooks/1795', 'en', 1298), +(16371, 'The Playground of Satan', 'Baskerville, Beatrice C.', '2012-12-04', 17, 'https://www.gutenberg.org/ebooks/41560', 'en', 579), +(16372, 'The Technique of Fiction Writing', 'Dowst, Robert Saunders', '2010-04-22', 23, 'https://www.gutenberg.org/ebooks/32092', 'en', 7648), +(16373, 'The Story of Silk', 'Bassett, Sara Ware', '2008-04-09', 29, 'https://www.gutenberg.org/ebooks/25025', 'en', 7649), +(16374, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 338, November 1, 1828', 'Various', '2004-02-01', 80, 'https://www.gutenberg.org/ebooks/11210', 'en', 133), +(16375, 'How to Master the English Bible\r\nAn Experience, a Method, a Result, an Illustration', 'Gray, James M. (James Martin)', '2013-01-23', 35, 'https://www.gutenberg.org/ebooks/41900', 'en', 5113), +(16376, 'The Living Letter, Written with the Pen of Truth\r\nBeing the Substance of a Sermon, Preached at the Obelisk Chapel, St. George\'s Fields, on Sunday Morning, Sept. 26, 1813.', 'Church, J. (John)', '2018-10-02', 6, 'https://www.gutenberg.org/ebooks/58011', 'en', 2386), +(16377, 'The Shagganappi', 'Johnson, E. Pauline', '2004-06-24', 27, 'https://www.gutenberg.org/ebooks/5769', 'en', 7650), +(16378, 'Dictionnaire érotique Latin-Français', 'Blondeau, Nicolas', '2018-09-08', 64, 'https://www.gutenberg.org/ebooks/57865', 'fr', 1989), +(16379, 'Theóphilo Braga e a lenda do Crisfal', 'Guimarães, Delfim de Brito', '2008-05-15', 6, 'https://www.gutenberg.org/ebooks/25479', 'pt', 7651), +(16380, 'The Story of Antony Grace', 'Fenn, George Manville', '2011-07-25', 51, 'https://www.gutenberg.org/ebooks/36852', 'en', 95), +(16381, 'Our Journey to the Hebrides', 'Pennell, Joseph', '2012-03-01', 22, 'https://www.gutenberg.org/ebooks/39026', 'en', 2714), +(16382, 'Cannes und Genua: Vier Reden zum Reparationsproblem', 'Rathenau, Walther', '2007-03-29', 25, 'https://www.gutenberg.org/ebooks/20937', 'de', 659), +(16383, 'A Dominie Dismissed', 'Neill, Alexander Sutherland', '2018-04-27', 14, 'https://www.gutenberg.org/ebooks/57059', 'en', 7652), +(16384, 'A Day with Longfellow', 'Anonymous', '2011-11-11', 194, 'https://www.gutenberg.org/ebooks/37980', 'en', 7653), +(16385, 'The Life of Lazarillo of Tormes: His Fortunes and Misfortunes as Told by Himself', 'Anonymous', '1996-02-01', 135, 'https://www.gutenberg.org/ebooks/437', 'en', 7654), +(16386, 'Forest, Rock, and Stream\nA series of twenty steel line-engravings', 'Willis, Nathaniel Parker', '2015-02-16', 22, 'https://www.gutenberg.org/ebooks/48283', 'en', 7655), +(16387, 'Pythias', 'Pohl, Frederik', '2009-11-03', 79, 'https://www.gutenberg.org/ebooks/30399', 'en', 179), +(16388, 'The History of David Grieve', 'Ward, Humphry, Mrs.', '2005-05-01', 23, 'https://www.gutenberg.org/ebooks/8076', 'en', 137), +(16389, 'The Pictorial Field-Book of the Revolution, Vol. 1 (of 2)\r\nor, Illustrations, by Pen And Pencil, of the History, Biography, Scenery, Relics, and Traditions of the War for Independence', 'Lossing, Benson John', '2015-07-04', 26, 'https://www.gutenberg.org/ebooks/49351', 'en', 481), +(16390, 'Seven O\'Clock Stories', 'Anderson, Robert Gordon', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7802', 'en', 388), +(16391, 'The French Revolution: A Short History', 'Johnston, R. M. (Robert Matteson)', '2006-10-01', 54, 'https://www.gutenberg.org/ebooks/19421', 'en', 1536), +(16392, 'Punch, or the London Charivari, Volume 156, January 29, 1919', 'Various', '2004-11-02', 3, 'https://www.gutenberg.org/ebooks/13927', 'en', 134), +(16393, 'Naapurimme; Margreta: Kaksi kertomusta', 'Levetzow, Cornelia', '2010-12-23', 13, 'https://www.gutenberg.org/ebooks/34739', 'fi', 61), +(16394, 'Nancy Stair: A Novel', 'Lane, Elinor Macartney', '2009-03-20', 28, 'https://www.gutenberg.org/ebooks/28366', 'en', 348), +(16395, 'Poems', 'Betham, Matilda', '2006-02-01', 13, 'https://www.gutenberg.org/ebooks/9998', 'en', 8), +(16396, 'The Lives of the Poets of Great Britain and Ireland (1753) Volume II.', 'Cibber, Theophilus', '2005-08-07', 12, 'https://www.gutenberg.org/ebooks/16469', 'en', 7656), +(16397, 'The Vale of Lyvennet: Its Picturesque Peeps and Legendary Lore', 'Bland, John Salkeld', '2014-07-18', 23, 'https://www.gutenberg.org/ebooks/46319', 'en', 7657), +(16398, 'La Botistoj', 'Kivi, Aleksis', '2009-05-25', 14, 'https://www.gutenberg.org/ebooks/28968', 'eo', 402), +(16399, 'I Puritani di Scozia, vol. 2', 'Scott, Walter', '2013-08-13', 15, 'https://www.gutenberg.org/ebooks/43459', 'it', 6486), +(16400, 'Not Fit for Children', 'Smith, Evelyn E.', '2016-01-07', 35, 'https://www.gutenberg.org/ebooks/50872', 'en', 2169), +(16401, 'The Atlantic Monthly, Volume 05, No. 30, April, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-11-01', 9, 'https://www.gutenberg.org/ebooks/9396', 'en', 1227), +(16402, 'Pélléas and Mélisande; Alladine and Palomides; Home', 'Maeterlinck, Maurice', '2004-08-30', 57, 'https://www.gutenberg.org/ebooks/13329', 'en', 415), +(16403, 'Pellucidar', 'Burroughs, Edgar Rice', '1996-07-01', 236, 'https://www.gutenberg.org/ebooks/605', 'en', 323), +(16404, 'History of Dogma, Volume 2', 'Harnack, Adolf von', '2006-10-24', 40, 'https://www.gutenberg.org/ebooks/19613', 'en', 7658), +(16405, 'The Poem-Book of the Gael\nTranslations from Irish Gaelic Poetry into English Prose and Verse', NULL, '2014-09-20', 21, 'https://www.gutenberg.org/ebooks/46917', 'en', 7659), +(16406, 'Agide', 'Alfieri, Vittorio', '2010-01-25', 19, 'https://www.gutenberg.org/ebooks/31079', 'it', 7660), +(16407, 'The World English Bible (WEB): Esther', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8244', 'en', 4345), +(16408, 'Journal of a Soldier of the Seventy-First, or Glasgow Regiment, Highland Light Infantry, from 1806-1815', 'Anonymous', '2015-06-07', 8, 'https://www.gutenberg.org/ebooks/49163', 'en', 1360), +(16409, 'Petronio\nPeça livremente extrahida do romance Quo Vadis de Henryk Sienkiewicz', 'Mesquita, Marcelino', '2009-02-23', 20, 'https://www.gutenberg.org/ebooks/28154', 'pt', 7661), +(16410, 'Molly McDonald\nA Tale of the Old Frontier', 'Parrish, Randall', '2006-02-18', 17, 'https://www.gutenberg.org/ebooks/17789', 'en', 1569), +(16411, 'A New Bat (Genus Leptonycteris) From Coahuila', 'Stains, Howard J.', '2010-01-17', 4, 'https://www.gutenberg.org/ebooks/30997', 'en', 2561), +(16412, 'Ben Comee\nA Tale of Rogers\'s Rangers, 1758-59', 'Canavan, M. J. (Michael Joseph)', '2009-01-28', 25, 'https://www.gutenberg.org/ebooks/27920', 'en', 893), +(16413, 'Lives of the most Eminent Painters Sculptors and Architects, Vol. 07 (of 10)\r\nTribolo to Il Sodoma', 'Vasari, Giorgio', '2010-03-31', 68, 'https://www.gutenberg.org/ebooks/31845', 'en', 915), +(16414, 'The Mushroom, Edible and Otherwise\nIts Habitat and its Time of Growth', 'Hard, Miron Elisha', '2009-06-10', 50, 'https://www.gutenberg.org/ebooks/29086', 'en', 6834), +(16415, 'Four and Twenty Fairy Tales\r\nSelected from Those of Perrault, and Other Popular Writers', NULL, '2016-08-04', 100, 'https://www.gutenberg.org/ebooks/52719', 'en', 1007), +(16416, 'Celt and Saxon — Volume 1', 'Meredith, George', '2003-09-01', 13, 'https://www.gutenberg.org/ebooks/4489', 'en', 137), +(16417, 'Harper\'s Young People, June 20, 1882\nAn Illustrated Weekly', 'Various', '2018-11-03', 0, 'https://www.gutenberg.org/ebooks/58223', 'en', 479), +(16418, 'Pahassa pulassa\nYksinäytöksinen huvinäytelmä', 'Kiljander, Robert', '2007-01-11', 16, 'https://www.gutenberg.org/ebooks/20339', 'fi', 247), +(16419, 'When Love Calls', 'Weyman, Stanley John', '2012-03-20', 17, 'https://www.gutenberg.org/ebooks/39214', 'en', 409), +(16420, 'The Escape of Mr. Trimm\nHis Plight and other Plights', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2008-03-11', 25, 'https://www.gutenberg.org/ebooks/24799', 'en', 972), +(16421, 'Punch, or the London Charivari, Volume 1, October 2, 1841', 'Various', '2005-02-07', 5, 'https://www.gutenberg.org/ebooks/14930', 'en', 134), +(16422, 'Messages to America\r\nSelected Letters and Cablegrams Addressed to the Bahá\'í\'s of North America 1932–1946', 'Shoghi, Effendi', '2006-09-17', 13, 'https://www.gutenberg.org/ebooks/19277', 'en', 5429), +(16423, 'Verloving en Huwelijk in vroeger dagen', 'Knappert, Laurentius', '2011-04-16', 10, 'https://www.gutenberg.org/ebooks/35881', 'nl', 7662), +(16424, 'The Chautauquan, Vol. 04, May 1884, No. 8', 'Chautauqua Literary and Scientific Circle', '2017-07-20', 6, 'https://www.gutenberg.org/ebooks/55158', 'en', 1115), +(16425, 'The Vital Message', 'Doyle, Arthur Conan', '2005-08-01', 4, 'https://www.gutenberg.org/ebooks/8620', 'en', 504), +(16426, 'Town Versus Country', 'Mitford, Mary Russell', '2007-10-02', 7, 'https://www.gutenberg.org/ebooks/22836', 'en', 1383), +(16427, 'Siegfried & The Twilight of the Gods\r\nThe Ring of the Niblung, part 2', 'Wagner, Richard', '2015-07-22', 59, 'https://www.gutenberg.org/ebooks/49507', 'en', 1966), +(16428, 'Two Years with the Natives in the Western Pacific', 'Speiser, Felix', '2008-12-20', 29, 'https://www.gutenberg.org/ebooks/27578', 'en', 7663), +(16429, 'Quicksands', 'Streckfuss, Adolf', '2011-01-14', 11, 'https://www.gutenberg.org/ebooks/34953', 'en', 803), +(16430, 'A Dome of Many-Coloured Glass', 'Lowell, Amy', '2008-07-03', 105, 'https://www.gutenberg.org/ebooks/261', 'en', 178), +(16431, 'What Will He Do with It? — Volume 10', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 4, 'https://www.gutenberg.org/ebooks/7668', 'en', 137), +(16432, 'The Sapphire Signet', 'Seaman, Augusta Huiell', '2017-11-14', 15, 'https://www.gutenberg.org/ebooks/55964', 'en', 167), +(16433, 'Emberek: Elbeszélések', 'Bródy, Sándor', '2013-09-23', 9, 'https://www.gutenberg.org/ebooks/43801', 'hu', 1532), +(16434, 'Kings in Exile', 'Roberts, Charles G. D., Sir', '2009-04-07', 31, 'https://www.gutenberg.org/ebooks/28530', 'en', 1787), +(16435, 'Musta tulpaani: Romaani', 'Dumas, Alexandre', '2013-11-18', 11, 'https://www.gutenberg.org/ebooks/44218', 'fi', 1950), +(16436, 'Index of the Project Gutenberg Works of Sir Winston Spencer Churchill', 'Churchill, Winston', '2019-01-07', 69, 'https://www.gutenberg.org/ebooks/58647', 'en', 198), +(16437, 'Sir Gawayne and the Green Knight\nAn Alliterative Romance-Poem (c. 1360 A.D.)', NULL, '2005-01-03', 208, 'https://www.gutenberg.org/ebooks/14568', 'en', 7664), +(16438, 'A Finnish Grammar', 'Eliot, Charles', '2019-06-23', 40, 'https://www.gutenberg.org/ebooks/59795', 'en', 7665), +(16439, 'U.S. Copyright Renewals, 1962 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11826', 'en', 4170), +(16440, 'A Book of Ghosts', 'Baring-Gould, S. (Sabine)', '2011-07-06', 81, 'https://www.gutenberg.org/ebooks/36638', 'en', 1373), +(16441, 'The History of Don Quixote, Volume 1, Part 01', 'Cervantes Saavedra, Miguel de', '2004-07-27', 38, 'https://www.gutenberg.org/ebooks/5903', 'en', 89), +(16442, 'The Idiot: His Place in Creation, and His Claims on Society', 'Bateman, Frederick, Sir', '2012-05-11', 13, 'https://www.gutenberg.org/ebooks/39670', 'en', 7666), +(16443, 'Anciennes loix des François conservées dans les coutumes angloises recueillies par Littleton, Vol. II', 'Littleton, Thomas, Sir', '2010-05-08', 22, 'https://www.gutenberg.org/ebooks/32298', 'fr', 7667), +(16444, 'How to Observe: Morals and Manners', 'Martineau, Harriet', '2010-10-05', 73, 'https://www.gutenberg.org/ebooks/33944', 'en', 7668), +(16445, 'Sexual Life of Primitive People', 'Fehlinger, Hans', '2018-12-15', 29, 'https://www.gutenberg.org/ebooks/58475', 'en', 1381), +(16446, 'The Great Events by Famous Historians, Volume 11', NULL, '2008-06-19', 29, 'https://www.gutenberg.org/ebooks/25821', 'en', 346), +(16447, 'Punch, or the London Charivari, Volume 152, June 13, 1917', 'Various', '2005-04-23', 6, 'https://www.gutenberg.org/ebooks/15688', 'en', 134), +(16448, '\'Tween Snow and Fire: A Tale of the Last Kafir War', 'Mitford, Bertram', '2010-06-19', 121, 'https://www.gutenberg.org/ebooks/32896', 'en', 7669), +(16449, 'The Story of Anna Kingsford and Edward Maitland and of the new Gospel of Interpretation', 'Maitland, Edward', '2012-01-16', 16, 'https://www.gutenberg.org/ebooks/38590', 'en', 4632), +(16450, 'The Holy Earth', 'Bailey, L. H. (Liberty Hyde)', '2010-07-15', 22, 'https://www.gutenberg.org/ebooks/33178', 'en', 7670), +(16451, 'Stanley in Africa\r\nThe Wonderful Discoveries and Thrilling Adventures of the Great African Explorer, and Other Travelers, Pioneers and Missionaries', 'Boyd, James P. (James Penny)', '2014-02-01', 19, 'https://www.gutenberg.org/ebooks/44816', 'en', 484), +(16452, 'The Marrow of Tradition', 'Chesnutt, Charles W. (Charles Waddell)', '2004-02-01', 98, 'https://www.gutenberg.org/ebooks/11228', 'en', 98), +(16453, 'Dorothy Dale\'s Great Secret', 'Penrose, Margaret', '2012-12-05', 11, 'https://www.gutenberg.org/ebooks/41558', 'en', 4738), +(16454, 'Geology and Revelation\r\nor, the Ancient History of the Earth, considered in the geological facts and revealed religion.', 'Molloy, Gerald', '2016-09-04', 18, 'https://www.gutenberg.org/ebooks/52973', 'en', 1969), +(16455, 'A Study of the Bhâgavata Purâna; or, Esoteric Hinduism', NULL, '2012-04-12', 135, 'https://www.gutenberg.org/ebooks/39442', 'en', 7671), +(16456, 'The Improvement of Human Reason\nExhibited in the Life of Hai Ebn Yokdhan', 'Ibn Tufayl, Muhammad ibn \'Abd al-Malik', '2005-10-08', 134, 'https://www.gutenberg.org/ebooks/16831', 'en', 4660), +(16457, 'Seeing Europe with Famous Authors, Volume 3\nFrance and the Netherlands, Part 1', NULL, '2005-07-01', 9, 'https://www.gutenberg.org/ebooks/8412', 'en', 2236), +(16458, 'From Libau to Tsushima\r\nA narrative of the voyage of Admiral Rojdestvensky\'s fleet to eastern seas, including a detailed account of the Dogger Bank incident', 'Politovskii, Evgenii Sigizmundovich', '2015-08-19', 11, 'https://www.gutenberg.org/ebooks/49735', 'en', 7672), +(16459, 'Peaux-rouges et Peaux-blanches', 'Chevalier, H. Emile (Henri Emile)', '2006-08-14', 15, 'https://www.gutenberg.org/ebooks/19045', 'fr', 1357), +(16460, 'Privy Seal: His Last Venture', 'Ford, Ford Madox', '2008-09-24', 10, 'https://www.gutenberg.org/ebooks/26698', 'en', 984), +(16461, 'Notes d\'une mère: Cours d\'éducation maternelle', 'Alq, Louise d\'', '2006-04-18', 36, 'https://www.gutenberg.org/ebooks/18197', 'fr', 7673), +(16462, 'Narratives of New Netherland, 1609-1664', NULL, '2000-04-01', 41, 'https://www.gutenberg.org/ebooks/2128', 'en', 1255), +(16463, 'Charles Carleton Coffin: War Correspondent, Traveller, Author, and Statesman', 'Griffis, William Elliot', '2007-08-04', 21, 'https://www.gutenberg.org/ebooks/22238', 'en', 7674), +(16464, 'Five Pebbles from the Brook', 'English, George Bethune', '2006-11-20', 12, 'https://www.gutenberg.org/ebooks/19879', 'en', 1616), +(16465, 'Types of Children\'s Literature\r\nA Collection of the World\'s Best Literature for Children, For Use in Colleges, Normal Schools and Library Schools', NULL, '2004-09-01', 12, 'https://www.gutenberg.org/ebooks/6588', 'en', 1063), +(16466, 'Avicenne', 'Carra de Vaux, Bernard', '2009-05-06', 28, 'https://www.gutenberg.org/ebooks/28702', 'fr', 7675), +(16467, 'Oxford Days; or, How Ross Got His Degree', 'Weatherly, F. E. (Frederic Edward)', '2015-12-05', 9, 'https://www.gutenberg.org/ebooks/50618', 'en', 3139), +(16468, 'The Mob: A Play in Four Acts', 'Galsworthy, John', '2004-09-26', 31, 'https://www.gutenberg.org/ebooks/2914', 'en', 1088), +(16469, 'Reflections on War and Death', 'Freud, Sigmund', '2011-04-15', 59, 'https://www.gutenberg.org/ebooks/35875', 'en', 3640), +(16470, 'The Prosperity of Humankind', 'Bahá\'í International Community', '2006-09-18', 4, 'https://www.gutenberg.org/ebooks/19283', 'en', 7676), +(16471, '封神演義', 'Lu, Xixing', '2007-12-19', 76, 'https://www.gutenberg.org/ebooks/23910', 'zh', 5698), +(16472, 'Variétés Historiques et Littéraires (05/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2015-03-06', 8, 'https://www.gutenberg.org/ebooks/48421', 'fr', 642), +(16473, 'Speeches: Literary and Social', 'Dickens, Charles', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9706', 'en', 277), +(16474, 'A Woman\'s Love Letters', 'Hensley, Sophia Margaretta', '2006-05-08', 9, 'https://www.gutenberg.org/ebooks/18351', 'en', 8), +(16475, 'The Early Short Fiction of Edith Wharton — Part 1', 'Wharton, Edith', '1995-07-01', 119, 'https://www.gutenberg.org/ebooks/295', 'en', 61), +(16476, 'Spotted Deer', 'Gregor, Elmer Russell', '2011-01-23', 15, 'https://www.gutenberg.org/ebooks/35049', 'en', 676), +(16477, 'Post-Mediæval Preachers\r\nSome Account of the Most Celebrated Preachers of the 15th, 16th, & 17th Centuries; with outlines of their sermons, and specimens of their style', 'Baring-Gould, S. (Sabine)', '2017-11-17', 8, 'https://www.gutenberg.org/ebooks/55990', 'en', 7677), +(16478, 'Il diritto di vivere: Dramma in tre atti', 'Bracco, Roberto', '2013-06-12', 7, 'https://www.gutenberg.org/ebooks/42927', 'it', 407), +(16479, 'The Mind Master', 'Burks, Arthur J.', '2009-07-15', 48, 'https://www.gutenberg.org/ebooks/29416', 'en', 26), +(16480, 'Chateaubriand', 'Lemaître, Jules', '2005-12-16', 10, 'https://www.gutenberg.org/ebooks/17319', 'fr', 7678), +(16481, 'Variétés Historiques et Littéraires (03/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2014-11-26', 9, 'https://www.gutenberg.org/ebooks/47469', 'fr', 642), +(16482, 'Vanhanpojan moraali', 'Locke, William John', '2017-06-04', 12, 'https://www.gutenberg.org/ebooks/54842', 'fi', 1380), +(16483, 'The King James Bible', NULL, '2004-01-01', 186, 'https://www.gutenberg.org/ebooks/10900', 'en', 1185), +(16484, 'Natural Bridges National Monument (1954)', 'United States. National Park Service', '2019-06-16', 31, 'https://www.gutenberg.org/ebooks/59761', 'en', 7679), +(16485, 'Vestiges of the supremacy of Mercia in the south of England during the eighth century', 'Kerslake, T. (Thomas)', '2016-06-21', 7, 'https://www.gutenberg.org/ebooks/52389', 'en', 7680), +(16486, 'The Lure of the Labrador Wild', 'Wallace, Dillon', '2003-05-01', 22, 'https://www.gutenberg.org/ebooks/4019', 'en', 7681), +(16487, 'Irish Ned\nThe Winnipeg Newsy', 'Fea, Samuel', '2008-01-15', 3, 'https://www.gutenberg.org/ebooks/24309', 'en', 7682), +(16488, 'Geneviève', 'Karr, Alphonse', '2012-02-03', 13, 'https://www.gutenberg.org/ebooks/38756', 'fr', 687), +(16489, 'Albania: A Narrative of Recent Travel', 'Knight, E. F. (Edward Frederick)', '2012-05-13', 20, 'https://www.gutenberg.org/ebooks/39684', 'en', 1462), +(16490, 'Raamatun tutkisteluja 2: Aika on lähestynyt', 'Russell, C. T. (Charles Taze)', '2018-03-12', 3, 'https://www.gutenberg.org/ebooks/56729', 'fi', 3792), +(16491, 'The Rise of the Dutch Republic — Volume 23: 1576', 'Motley, John Lothrop', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/4825', 'en', 3372), +(16492, 'Jumalan etsijöitä', 'Farrar, F. W. (Frederic William)', '2018-12-16', 12, 'https://www.gutenberg.org/ebooks/58481', 'fi', 7683), +(16493, 'Taiteilijan tarina', 'Hesse, Hermann', '2016-09-17', 10, 'https://www.gutenberg.org/ebooks/53069', 'fi', 3676), +(16494, 'The Lady and the Pirate\nBeing the Plain Tale of a Diligent Pirate and a Fair Captive', 'Hough, Emerson', '2008-03-24', 30, 'https://www.gutenberg.org/ebooks/24907', 'en', 3828), +(16495, 'With Axe and Rifle', 'Kingston, William Henry Giles', '2007-05-15', 29, 'https://www.gutenberg.org/ebooks/21449', 'en', 7684), +(16496, 'Wilson\'s Tales of the Borders and of Scotland, Volume 01', NULL, '2010-06-17', 21, 'https://www.gutenberg.org/ebooks/32862', 'en', 3672), +(16497, 'The Southern Literary Messenger, Volume I., 1834-35', 'Various', '2019-05-19', 12, 'https://www.gutenberg.org/ebooks/59553', 'en', 522), +(16498, 'The Black-Bearded Barbarian : The Life of George Leslie Mackay of Formosa', 'MacGregor, Mary Esther Miller', '1999-05-01', 34, 'https://www.gutenberg.org/ebooks/1759', 'en', 7685), +(16499, 'Iberia Won; A poem descriptive of the Peninsular War\r\nWith impressions from recent visits to the battle-grounds, and copious historical and illustrative notes', 'Hughes, T. M. (Terence McMahon)', '2017-01-01', 6, 'https://www.gutenberg.org/ebooks/53855', 'en', 7686), +(16500, 'Happy Hearts', 'Isle, June', '2012-01-13', 4, 'https://www.gutenberg.org/ebooks/38564', 'en', 2086), +(16501, 'The Romance of Plant Life\nInteresting Descriptions of the Strange and Curious in the Plant World', 'Elliot, G. F. Scott (George Francis Scott)', '2014-06-10', 27, 'https://www.gutenberg.org/ebooks/45930', 'en', 4656), +(16502, 'Treatise on the Anatomy and Physiology of the Mucous Membranes\nWith Illustrative Pathological Observations', 'Bichat, Xavier', '2016-09-05', 10, 'https://www.gutenberg.org/ebooks/52987', 'en', 7687), +(16503, 'Facts and Fictions of Life', 'Gardener, Helen H. (Helen Hamilton)', '2013-03-13', 39, 'https://www.gutenberg.org/ebooks/42329', 'en', 620), +(16504, 'Contes et poésies de Prosper Jourdan: 1854-1866', 'Jourdan, Prosper', '2004-05-01', 40, 'https://www.gutenberg.org/ebooks/12459', 'fr', 8), +(16505, 'Le Grand Écart', 'Cocteau, Jean', '2019-08-09', 438, 'https://www.gutenberg.org/ebooks/60079', 'fr', 560), +(16506, 'Patriotic Plays and Pageants for Young People', 'Mackay, Constance D\'Arcy', '2006-04-13', 6, 'https://www.gutenberg.org/ebooks/18163', 'en', 7688), +(16507, 'Across the Andes\r\nA Tale of Wandering Days Among the Mountains of Bolivia and the Jungles of the Upper Amazon', 'Post, Charles Johnson', '2015-03-31', 24, 'https://www.gutenberg.org/ebooks/48613', 'en', 1128), +(16508, 'The Tremendous Adventures of Major Gahagan', 'Thackeray, William Makepeace', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9534', 'en', 1736), +(16509, 'Secret Band of Brothers\nA Full and True Exposition of All the Various Crimes, Villanies, and Misdeeds of This Powerful Organization in the United States.', 'Green, J. H. (Jonathan Harrington)', '2006-03-04', 31, 'https://www.gutenberg.org/ebooks/17917', 'en', 7689), +(16510, 'God and the World: A Survey of Thought', 'Robinson, Arthur William', '2009-12-19', 4, 'https://www.gutenberg.org/ebooks/30709', 'en', 347), +(16511, 'Australia Felix', 'Richardson, Henry Handel', '2003-03-01', 16, 'https://www.gutenberg.org/ebooks/3832', 'en', 792), +(16512, 'Sir Walter Scott', 'Saintsbury, George', '2009-08-06', 24, 'https://www.gutenberg.org/ebooks/29624', 'en', 1654), +(16513, 'Rubber', 'Browne, Edith A.', '2014-09-06', 14, 'https://www.gutenberg.org/ebooks/46789', 'en', 3767), +(16514, 'The Song of the Rappahannock: Sketches of the Civil War', 'Dodd, Ira Seymour', '2014-05-03', 10, 'https://www.gutenberg.org/ebooks/45568', 'en', 444), +(16515, 'Le origini degli Stati Uniti d\'America', 'Mondaini, Gennaro', '2018-04-08', 22, 'https://www.gutenberg.org/ebooks/56943', 'it', 2649), +(16516, 'The Woman Who Toils\nBeing the Experiences of Two Gentlewomen as Factory Girls', 'Van Vorst, John, Mrs.', '2005-03-01', 22, 'https://www.gutenberg.org/ebooks/15218', 'en', 7690), +(16517, 'Jean-Christophe IX\nPalava pensas', 'Rolland, Romain', '2019-03-27', 4, 'https://www.gutenberg.org/ebooks/59137', 'fi', 2986), +(16518, 'The Group Mind: A Sketch of the Principles of Collective Psychology\r\nWith Some Attempt to Apply Them to the Interpretation of National Life and Character', 'McDougall, William', '2012-09-22', 30, 'https://www.gutenberg.org/ebooks/40826', 'en', 7691), +(16519, 'The History Teacher\'s Magazine, Vol. I, No. 5, January 1910', 'Various', '2018-09-13', 9, 'https://www.gutenberg.org/ebooks/57891', 'en', 7692), +(16520, 'The Other Fellow', 'Smith, Francis Hopkinson', '2011-08-21', 18, 'https://www.gutenberg.org/ebooks/37148', 'en', 61), +(16521, 'The Works of Lord Byron. Vol. 3', 'Byron, George Gordon Byron, Baron', '2007-06-12', 108, 'https://www.gutenberg.org/ebooks/21811', 'en', 54), +(16522, 'Ancient Faiths And Modern\r\nA Dissertation upon Worships, Legends and Divinities in Central and Western Asia, Europe, and Elsewhere, Before the Christian Era. Showing Their Relations to Religious Customs as They Now Exist.', 'Inman, Thomas', '2011-11-22', 37, 'https://www.gutenberg.org/ebooks/38100', 'en', 1444), +(16523, 'Diana Tempest, Volume II', 'Cholmondeley, Mary', '2011-11-10', 18, 'https://www.gutenberg.org/ebooks/37974', 'en', 376), +(16524, 'The History Teacher\'s Magazine, Vol. I, No. 2, October, 1909', 'Various', '2017-04-29', 7, 'https://www.gutenberg.org/ebooks/54628', 'en', 7693), +(16525, 'Angelic Wisdom about Divine Providence', 'Swedenborg, Emanuel', '2006-06-05', 38, 'https://www.gutenberg.org/ebooks/18507', 'en', 7694), +(16526, 'Richard III', 'Shakespeare, William', '2004-11-01', 39, 'https://www.gutenberg.org/ebooks/6924', 'de', 2048), +(16527, 'Ben Stone at Oakdale', 'Scott, Morgan', '2015-02-17', 13, 'https://www.gutenberg.org/ebooks/48277', 'en', 5031), +(16528, 'Dick Sands, the Boy Captain', 'Verne, Jules', '2005-10-01', 40, 'https://www.gutenberg.org/ebooks/9150', 'en', 7695), +(16529, 'Canyons of the Colorado', 'Powell, John Wesley', '2005-05-01', 69, 'https://www.gutenberg.org/ebooks/8082', 'en', 3934), +(16530, 'Three Little Cousins', 'Blanchard, Amy Ella', '2008-08-07', 15, 'https://www.gutenberg.org/ebooks/26208', 'en', 5372), +(16531, 'The Rose in the Ring', 'McCutcheon, George Barr', '2004-07-01', 10, 'https://www.gutenberg.org/ebooks/6118', 'en', 7696), +(16532, 'Punch, or the London Charivari, Vol. 147, October 28, 1914', 'Various', '2009-03-23', 8, 'https://www.gutenberg.org/ebooks/28392', 'en', 564), +(16533, 'Rauhaton yö: Huvinäytelmä yhdessä näytöksessä', 'Lundström, Isidor', '2015-10-23', 5, 'https://www.gutenberg.org/ebooks/50288', 'fi', 5375), +(16534, 'Be It Ever Thus', 'Williams, Robert Moore', '2009-06-25', 39, 'https://www.gutenberg.org/ebooks/29240', 'en', 179), +(16535, 'Abraham Lincoln, Volume II', 'Morse, John Torrey', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/12801', 'en', 1009), +(16536, 'Charles Sumner: his complete works, volume 06 (of 20)', 'Sumner, Charles', '2015-01-22', 4, 'https://www.gutenberg.org/ebooks/48045', 'en', 429), +(16537, 'Birds of Prey', 'Braddon, M. E. (Mary Elizabeth)', '2005-11-01', 50, 'https://www.gutenberg.org/ebooks/9362', 'en', 61), +(16538, 'Katherine Lauderdale; Vol. 2 of 2', 'Crawford, F. Marion (Francis Marion)', '2016-01-10', 4, 'https://www.gutenberg.org/ebooks/50886', 'en', 4219), +(16539, 'Railroads: Rates and Regulations', 'Ripley, William Zebina', '2014-12-31', 16, 'https://www.gutenberg.org/ebooks/47831', 'en', 7697), +(16540, 'The Little Red Hen\nAn Old English Folk Tale', NULL, '2006-07-01', 217, 'https://www.gutenberg.org/ebooks/18735', 'en', 7698), +(16541, 'The Prospector: A Tale of the Crow\'s Nest Pass', 'Connor, Ralph', '2003-01-01', 8, 'https://www.gutenberg.org/ebooks/3658', 'en', 65), +(16542, 'A Man: His Mark. A Romance\r\nSecond Edition', 'Morrow, W. C.', '2016-05-02', 24, 'https://www.gutenberg.org/ebooks/51954', 'en', 211), +(16543, 'Motor Matt\'s Submarine; or, The Strange Cruise of the Grampus', 'Matthews, Stanley R.', '2015-06-12', 8, 'https://www.gutenberg.org/ebooks/49197', 'en', 4097), +(16544, 'Chapters on the History of the Southern Pacific', 'Daggett, Stuart', '2015-05-05', 18, 'https://www.gutenberg.org/ebooks/48879', 'en', 7699), +(16545, 'The Raid Of The Guerilla\n1911', 'Murfree, Mary Noailles', '2007-11-19', 18, 'https://www.gutenberg.org/ebooks/23548', 'en', 7700), +(16546, 'A Knyght Ther Was', 'Young, Robert F.', '2010-01-14', 27, 'https://www.gutenberg.org/ebooks/30963', 'en', 1329), +(16547, 'Gamiani, ou Une nuit d\'excès', 'Musset, Alfred de', '2008-10-07', 76, 'https://www.gutenberg.org/ebooks/26806', 'fr', 1989), +(16548, 'Operation Distress', 'Del Rey, Lester', '2016-02-10', 79, 'https://www.gutenberg.org/ebooks/51168', 'en', 7701), +(16549, 'Punch, or the London Charivari, Vol. 147, November 18, 1914', 'Various', '2009-06-08', 14, 'https://www.gutenberg.org/ebooks/29072', 'en', 134), +(16550, 'Erään rikoksen varjo', 'Caine, Hall, Sir', '2019-04-18', 4, 'https://www.gutenberg.org/ebooks/59305', 'fi', 7702), +(16551, 'To and Through Nebraska', 'Fulton, Frances I. Sims', '2014-01-17', 12, 'https://www.gutenberg.org/ebooks/44688', 'en', 7703), +(16552, 'The History of Samuel Titmarsh and the Great Hoggarty Diamond', 'Thackeray, William Makepeace', '1999-10-01', 35, 'https://www.gutenberg.org/ebooks/1933', 'en', 137), +(16553, 'La fabrique de crimes', 'Féval, Paul', '2005-05-11', 15, 'https://www.gutenberg.org/ebooks/15816', 'fr', 61), +(16554, 'Some War-time Lessons\nThe Soldier\'s Standards of Conduct; The War As a Practical Test of American Scholarship; What Have We Learned?', 'Keppel, Frederick P. (Frederick Paul)', '2010-05-30', 16, 'https://www.gutenberg.org/ebooks/32608', 'en', 335), +(16555, 'Audio: Vanity Fair', 'Thackeray, William Makepeace', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10558', 'en', 7704), +(16556, 'Frédérique, vol. 2', 'Kock, Paul de', '2011-12-17', 10, 'https://www.gutenberg.org/ebooks/38332', 'en', 58), +(16557, 'Italië in de Middeleeuwen: Gedurende duizend jaar (305-1313)', 'Cotterill, H. B. (Henry Bernard)', '2012-07-14', 18, 'https://www.gutenberg.org/ebooks/40228', 'nl', 4659), +(16558, 'The Books of Chilan Balam: The Prophetic and Historic Records of the Mayas of Yucatan', 'Brinton, Daniel G. (Daniel Garrison)', '2010-03-12', 12, 'https://www.gutenberg.org/ebooks/31610', 'en', 1608), +(16559, 'Leo Mechelinin elämä', 'Rein, Th. (Thiodolf)', '2017-08-14', 2, 'https://www.gutenberg.org/ebooks/55355', 'fi', 7705), +(16560, 'Recent Tendencies in Ethics\r\nThree Lectures to Clergy Given at Cambridge', 'Sorley, W. R. (William Ritchie)', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12492', 'en', 680), +(16561, 'Notes and Queries, Number 53, November 2, 1850', 'Various', '2004-09-27', 20, 'https://www.gutenberg.org/ebooks/13540', 'en', 105), +(16562, 'The life and times of George Villiers, duke of Buckingham, Volume 2 (of 3)\nFrom original and authentic sources', 'Thomson, A. T., Mrs.', '2017-03-06', 10, 'https://www.gutenberg.org/ebooks/54287', 'en', 7706), +(16563, 'Des Feldpredigers Schmelzle Reise nach Flätz mit fortgehenden Noten', 'Jean Paul', '2009-01-12', 19, 'https://www.gutenberg.org/ebooks/27775', 'de', 7707), +(16564, 'History of Friedrich II of Prussia — Volume 17', 'Carlyle, Thomas', '2008-06-16', 21, 'https://www.gutenberg.org/ebooks/2117', 'en', 3120), +(16565, 'Johnny Longbow', 'Snell, Roy J. (Roy Judson)', '2013-07-16', 11, 'https://www.gutenberg.org/ebooks/43230', 'en', 7708), +(16566, 'The Romance Of Giovanni Calvotti\nFrom Coals Of Fire And Other Stories, Volume II. (of III.)', 'Murray, David Christie', '2007-08-01', 13, 'https://www.gutenberg.org/ebooks/22207', 'en', 61), +(16567, 'The Great Round World and What Is Going On In It, Vol. 1, No. 51, October 28, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-09', 10, 'https://www.gutenberg.org/ebooks/16032', 'en', 1), +(16568, 'The Rivers and Streams of England', 'Bradley, A. G. (Arthur Granville)', '2014-08-31', 19, 'https://www.gutenberg.org/ebooks/46742', 'en', 776), +(16569, 'Richard of Jamestown : a Story of the Virginia Colony', 'Otis, James', '2005-02-01', 20, 'https://www.gutenberg.org/ebooks/7465', 'en', 7709), +(16570, 'Encyclopaedia Britannica, 11th Edition, \"Bulgaria\" to \"Calgary\"\r\nVolume 4, Part 4', 'Various', '2006-11-17', 57, 'https://www.gutenberg.org/ebooks/19846', 'en', 1081), +(16571, 'Joseph Smith as Scientist: A Contribution to Mormon Philosophy', 'Widtsoe, John Andreas', '2010-11-18', 51, 'https://www.gutenberg.org/ebooks/34362', 'en', 7710), +(16572, 'Tom Grogan', 'Smith, Francis Hopkinson', '1997-03-01', 104, 'https://www.gutenberg.org/ebooks/850', 'en', 1660), +(16573, 'Amalia ystävämme\nYksinäytöksinen huvinäytelmä', 'Kiljander, Robert', '2006-08-06', 6, 'https://www.gutenberg.org/ebooks/18994', 'fi', 247), +(16574, 'Canadian Scenery, Volume 1 (of 2)', 'Willis, Nathaniel Parker', '2014-12-17', 11, 'https://www.gutenberg.org/ebooks/47690', 'en', 5181), +(16575, 'Der alte Trapper', 'Cooper, James Fenimore', '2015-12-05', 20, 'https://www.gutenberg.org/ebooks/50627', 'de', 315), +(16576, 'Presten som ikke kunde brukes', 'Nordberg, Carl E. (Carl Edin)', '2007-02-09', 10, 'https://www.gutenberg.org/ebooks/20550', 'no', 6344), +(16577, 'El Gaucho Martín Fierro', 'Hernández, José', '2005-01-23', 174, 'https://www.gutenberg.org/ebooks/14765', 'es', 7711), +(16578, 'The Fatal Dowry', 'Field, Nathaniel', '2013-10-23', 484, 'https://www.gutenberg.org/ebooks/44015', 'en', 1088), +(16579, 'The Love Sonnets of a Car Conductor', 'Irwin, Wallace', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/5332', 'en', 7712), +(16580, 'Wonderland; or, Alaska and the Inside Passage\r\nWith a Description of the Country Traversed by the Northern Pacific Railroad', 'Hyde, John', '2011-06-16', 21, 'https://www.gutenberg.org/ebooks/36435', 'en', 5908), +(16581, 'Birds in Legend, Fable and Folklore', 'Ingersoll, Ernest', '2019-05-25', 66, 'https://www.gutenberg.org/ebooks/59598', 'en', 7713), +(16582, 'Memorias de José Garibaldi, volume 2\r\nTraduzidas do manuscripto original por Alexandre Dumas', 'Garibaldi, Giuseppe', '2016-05-27', 22, 'https://www.gutenberg.org/ebooks/52170', 'pt', 3731); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(16583, 'The Settlers: A Tale of Virginia', 'Kingston, William Henry Giles', '2007-05-15', 16, 'https://www.gutenberg.org/ebooks/21482', 'en', 7709), +(16584, 'Harper\'s Round Table, October 1, 1895', 'Various', '2010-07-13', 10, 'https://www.gutenberg.org/ebooks/33147', 'en', 668), +(16585, 'Measure for Measure', 'Shakespeare, William', '1999-06-01', 21, 'https://www.gutenberg.org/ebooks/1792', 'en', 907), +(16586, 'Rada: A Belgian Christmas Eve', 'Noyes, Alfred', '2014-02-04', 7, 'https://www.gutenberg.org/ebooks/44829', 'en', 612), +(16587, 'The Watcher by the Threshold', 'Buchan, John', '2018-06-26', 112, 'https://www.gutenberg.org/ebooks/57402', 'en', 2389), +(16588, 'The Visioning: A Novel', 'Glaspell, Susan', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/11217', 'en', 2358), +(16589, 'Narrative of the shipwreck of the brig Betsey, of Wiscasset, Maine, and murder of five of her crew, by pirates,\non the coast of Cuba, Dec. 1824.', 'Collins, Daniel', '2008-04-08', 14, 'https://www.gutenberg.org/ebooks/25022', 'en', 5584), +(16590, 'The Adventures of Puss in Boots, Jr.', 'Cory, David', '2010-04-22', 41, 'https://www.gutenberg.org/ebooks/32095', 'en', 625), +(16591, 'Encyclopaedia Britannica, 11th Edition, \"Letter\" to \"Lightfoot, John\"\r\nVolume 16, Slice 5', 'Various', '2012-12-06', 22, 'https://www.gutenberg.org/ebooks/41567', 'en', 1081), +(16592, 'The Flying Reporter', 'Theiss, Lewis E. (Lewis Edwin)', '2013-11-18', 23, 'https://www.gutenberg.org/ebooks/44227', 'en', 6791), +(16593, 'Alaeddin and the Enchanted Lamp', NULL, '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/5100', 'en', 3347), +(16594, 'Chancellorsville and Gettysburg\nCampaigns of the Civil War - VI', 'Doubleday, Abner', '2007-03-07', 58, 'https://www.gutenberg.org/ebooks/20762', 'en', 7714), +(16595, 'A Parisian Sultana, Vol. 2 (of 3)', 'Belot, Adolphe', '2019-01-12', 6, 'https://www.gutenberg.org/ebooks/58678', 'en', 560), +(16596, 'Engravings of Lions, Tigers, Panthers, Leopards, Dogs, &c.', NULL, '2016-10-16', 15, 'https://www.gutenberg.org/ebooks/53290', 'en', 7715), +(16597, 'The Conundrums of Psychology', 'Vaknin, Samuel', '2005-01-02', 84, 'https://www.gutenberg.org/ebooks/14557', 'en', 1151), +(16598, 'Catharine', 'Adams, Nehemiah', '2005-03-28', 15, 'https://www.gutenberg.org/ebooks/15485', 'en', 61), +(16599, 'The White Prophet, Volume 1 (of 2)', 'Caine, Hall, Sir', '2016-06-15', 8, 'https://www.gutenberg.org/ebooks/52342', 'en', 2938), +(16600, 'U.S. Copyright Renewals, 1959 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11819', 'en', 4170), +(16601, 'The Surrender of Calais: A Play, in Three Acts', 'Colman, George', '2011-07-03', 4, 'https://www.gutenberg.org/ebooks/36607', 'en', 7716), +(16602, 'Spons\' Household Manual\nA treasury of domestic receipts and a guide for home management', NULL, '2018-08-03', 25, 'https://www.gutenberg.org/ebooks/57630', 'en', 3407), +(16603, 'కొల్లాయి గట్టితే నేమి?', 'Ramamohan Rao, Mahidhara', '2012-09-06', 50, 'https://www.gutenberg.org/ebooks/40687', 'te', 61), +(16604, 'Watch (First 25,000 words)', 'Sawyer, Robert J.', '2010-08-08', 9, 'https://www.gutenberg.org/ebooks/33375', 'en', 7717), +(16605, 'Greater Britain: A Record of Travel in English-Speaking Countries During 1866-7', 'Dilke, Charles Wentworth, Sir', '2013-01-01', 12, 'https://www.gutenberg.org/ebooks/41755', 'en', 1110), +(16606, 'Phaethon: Loose Thoughts for Loose Thinkers', 'Kingsley, Charles', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11025', 'en', 965), +(16607, 'Distruzione: Poema Futurista', 'Marinetti, F. T.', '2008-04-28', 28, 'https://www.gutenberg.org/ebooks/25210', 'it', 8), +(16608, 'A System of Logic, Ratiocinative and Inductive (Vol. 1 of 2)', 'Mill, John Stuart', '2008-08-31', 41, 'https://www.gutenberg.org/ebooks/26495', 'en', 516), +(16609, 'Opinions sociales', 'France, Anatole', '2006-09-11', 15, 'https://www.gutenberg.org/ebooks/19248', 'fr', 7718), +(16610, 'Œuvres complètes de Guy de Maupassant - volume 10', 'Maupassant, Guy de', '2017-07-21', 23, 'https://www.gutenberg.org/ebooks/55167', 'fr', 642), +(16611, 'The Hermit Of ——— Street\n1898', 'Green, Anna Katharine', '2007-09-29', 22, 'https://www.gutenberg.org/ebooks/22809', 'en', 128), +(16612, 'Mexico, Aztec, Spanish and Republican, Vol. 2 of 2\r\nA Historical, Geographical, Political, Statistical and Social Account of that Country from the Period of the Invasion by the Spaniards to the Present Time.', 'Mayer, Brantz', '2015-07-28', 30, 'https://www.gutenberg.org/ebooks/49538', 'en', 7719), +(16613, 'The Kempton-Wace Letters', 'London, Jack', '2010-02-27', 41, 'https://www.gutenberg.org/ebooks/31422', 'en', 258), +(16614, 'The Iceberg Express', 'Cory, David', '2000-09-01', 23, 'https://www.gutenberg.org/ebooks/2325', 'en', 1007), +(16615, 'The Church of Grasmere: A History', 'Armitt, Mary L.', '2013-06-21', 14, 'https://www.gutenberg.org/ebooks/43002', 'en', 7720), +(16616, 'Les etranges noces de Rouletabille', 'Leroux, Gaston', '2004-10-17', 33, 'https://www.gutenberg.org/ebooks/13772', 'fr', 128), +(16617, 'British Borneo\nSketches of Brunai, Sarawak, Labuan, and North Borneo', 'Treacher, W. H. (William Hood), Sir', '2008-12-16', 19, 'https://www.gutenberg.org/ebooks/27547', 'en', 7721), +(16618, 'The Pastor\'s Fire-side Vol. 1 (of 4)', 'Porter, Jane', '2014-08-12', 11, 'https://www.gutenberg.org/ebooks/46570', 'en', 7722), +(16619, 'Kenelm Chillingly — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7657', 'en', 137), +(16620, 'Saboteurs on the River', 'Wirt, Mildred A. (Mildred Augustine)', '2011-01-26', 24, 'https://www.gutenberg.org/ebooks/35082', 'en', 557), +(16621, 'Dramatized Rhythm Plays\nMother Goose and Traditional', 'Richards, John N.', '2007-07-10', 79, 'https://www.gutenberg.org/ebooks/22035', 'en', 7723), +(16622, 'The Atlantic Monthly, Volume 13, No. 75, January, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-07-04', 13, 'https://www.gutenberg.org/ebooks/16200', 'en', 1227), +(16623, 'Famous Discoverers and Explores of America\nTheir Voyages, Battles, and Hardships in Traversing and Conquering the Unknown Territories of a New World', 'Johnston, Charles H. L. (Charles Haven Ladd)', '2015-11-09', 33, 'https://www.gutenberg.org/ebooks/50415', 'en', 3403), +(16624, 'Wallenstein\'s Camp: A Play', 'Schiller, Friedrich', '2004-12-08', 26, 'https://www.gutenberg.org/ebooks/6785', 'en', 2341), +(16625, 'Observations of a Naturalist in the Pacific Between 1896 and 1899, Volume 2\r\nPlant-Dispersal', 'Guppy, H. B. (Henry Brougham)', '2017-06-11', 13, 'https://www.gutenberg.org/ebooks/54889', 'en', 3815), +(16626, 'Wilson\'s Tales of the Borders and of Scotland, Volume 13', NULL, '2010-10-27', 67, 'https://www.gutenberg.org/ebooks/34150', 'en', 3672), +(16627, 'Neljä päivää', 'Zola, Émile', '2016-08-05', 2, 'https://www.gutenberg.org/ebooks/52726', 'fi', 3173), +(16628, 'Αριστοτέλης Βαλαωρίτης', 'Rhoides, Emmanouel D.', '2011-05-29', 5, 'https://www.gutenberg.org/ebooks/36263', 'el', 7724), +(16629, 'In Vanity Fair: A Tale of Frocks and Femininity', 'Brainerd, Eleanor Hoyt', '2014-05-28', 34, 'https://www.gutenberg.org/ebooks/45791', 'en', 2243), +(16630, 'The Funny Bone: Short Stories and Amusing Anecdotes for a Dull Hour', NULL, '2014-01-11', 37, 'https://www.gutenberg.org/ebooks/44643', 'en', 190), +(16631, 'Barbara Blomberg — Volume 04', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5564', 'en', 5057), +(16632, 'Europe After 8:15', 'Wright, Willard Huntington', '2007-01-07', 48, 'https://www.gutenberg.org/ebooks/20306', 'en', 7725), +(16633, 'David Balfour\r\nBeing Memoirs Of His Adventures At Home And Abroad, The Second Part: In Which Are Set Forth His Misfortunes Anent The Appin Murder; His Troubles With Lord Advocate Grant; Captivity On The Bass Rock; Journey Into Holland And France; And Singular Relations With James More Drummond Or Macgregor, A Son Of The Notorious Rob Roy, And His Daughter Catriona', 'Stevenson, Robert Louis', '2004-11-23', 77, 'https://www.gutenberg.org/ebooks/14133', 'en', 98), +(16634, 'Mrs. Dorriman: A Novel. Volume 3 of 3', 'Chetwynd, Henry Wayland, Mrs.', '2012-11-09', 6, 'https://www.gutenberg.org/ebooks/41331', 'en', 61), +(16635, 'The Catholic World, Vol. 23, April, 1876-September, 1876.\r\nA Monthly Magazine of General Literature and Science', 'Various', '2018-01-17', 0, 'https://www.gutenberg.org/ebooks/56386', 'en', 96), +(16636, 'The Solitary of Juan Fernandez, or the Real Robinson Crusoe', 'Xavier, M.', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11441', 'en', 3576), +(16637, 'USAF Fact Sheet 95-03\nUnidentified Flying Objects and Air Force Project Blue Book', 'United States. Air Force', '2008-06-01', 39, 'https://www.gutenberg.org/ebooks/25674', 'en', 7726), +(16638, 'Great Possessions', 'Grayson, David', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10593', 'en', 7727), +(16639, '\"Good-Morning, Rosamond!\"', 'Skinner, Constance Lindsay', '2018-06-02', 10, 'https://www.gutenberg.org/ebooks/57254', 'en', 4013), +(16640, 'L\'Illustration, No. 3234, 18 Février 1905', 'Various', '2010-09-12', 6, 'https://www.gutenberg.org/ebooks/33711', 'fr', 150), +(16641, 'Landmarks in the History of Early Christianity', 'Lake, Kirsopp', '2009-10-07', 15, 'https://www.gutenberg.org/ebooks/30194', 'en', 4198), +(16642, 'The Borgias\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 123, 'https://www.gutenberg.org/ebooks/2741', 'en', 5050), +(16643, 'The Acts Of The General Assemblies of the Church of Scotland', 'Church of Scotland. General Assembly', '2009-05-24', 26, 'https://www.gutenberg.org/ebooks/28957', 'en', 7728), +(16644, 'Not Guilty: A Defence of the Bottom Dog', 'Blatchford, Robert', '2013-08-14', 21, 'https://www.gutenberg.org/ebooks/43466', 'en', 6550), +(16645, 'The Theological Tractates and The Consolation of Philosophy', 'Boethius', '2004-08-29', 117, 'https://www.gutenberg.org/ebooks/13316', 'la', 4182), +(16646, '水調歌頭', 'Su, Shi', '2008-11-02', 18, 'https://www.gutenberg.org/ebooks/27123', 'zh', 7534), +(16647, 'Die Ursache: Erzählung', 'Frank, Leonhard', '2014-09-22', 12, 'https://www.gutenberg.org/ebooks/46928', 'de', 7729), +(16648, 'Horrors and Atrocities of the Great War\nIncluding the Tragic Destruction of the Lusitania', 'Marshall, Logan', '2017-09-07', 48, 'https://www.gutenberg.org/ebooks/55503', 'en', 2936), +(16649, 'The Cariboo Trail\nA Chronicle of the Gold-fields of British Columbia', 'Laut, Agnes C.', '2009-09-01', 16, 'https://www.gutenberg.org/ebooks/29885', 'en', 7730), +(16650, 'A New Pocket Mouse (Genus Perognathus) from Kansas', 'Cockrum, E. Lendell', '2010-01-22', 8, 'https://www.gutenberg.org/ebooks/31046', 'en', 7731), +(16651, 'Louisa of Prussia and Her Times: A Historical Novel', 'Mühlbach, L. (Luise)', '2003-01-01', 43, 'https://www.gutenberg.org/ebooks/3693', 'en', 7732), +(16652, 'Round about Bar-le-Duc', 'Day, Susanne R. (Susanne Rouviere)', '2015-09-28', 12, 'https://www.gutenberg.org/ebooks/50071', 'en', 3601), +(16653, 'Folla', 'Dombre, Roger', '2007-11-21', 5, 'https://www.gutenberg.org/ebooks/23583', 'fr', 61), +(16654, 'Britain for the British', 'Blatchford, Robert', '2010-12-01', 30, 'https://www.gutenberg.org/ebooks/34534', 'en', 254), +(16655, 'Canada in Flanders, Volume I', 'Beaverbrook, Max Aitken, Baron', '2014-06-27', 34, 'https://www.gutenberg.org/ebooks/46114', 'en', 3083), +(16656, 'Maaß für Maaß\r\nWie einer mißt, so wird ihm wieder gemessen', 'Shakespeare, William', '2005-01-01', 24, 'https://www.gutenberg.org/ebooks/7233', 'de', 7733), +(16657, 'Irish Historical Allusions, Curious Customs and Superstitions, County of Kerry, Corkaguiny', 'Foley, Patrick M.', '2015-09-14', 9, 'https://www.gutenberg.org/ebooks/49960', 'en', 7734), +(16658, 'Jack and Jill', 'Alcott, Louisa May', '2007-09-01', 51, 'https://www.gutenberg.org/ebooks/22451', 'en', 7735), +(16659, 'Town Life in Australia', 'Twopeny, Richard Ernest Nowell', '2005-09-06', 26, 'https://www.gutenberg.org/ebooks/16664', 'en', 7736), +(16660, 'History of Kershaw\'s Brigade\r\nWith Complete Roll of Companies, Biographical Sketches, Incidents, Anecdotes, etc.', 'Dickert, D. Augustus', '2004-08-06', 20, 'https://www.gutenberg.org/ebooks/13124', 'en', 1489), +(16661, 'The Souls of Black Folk', 'Du Bois, W. E. B. (William Edward Burghardt)', '1996-01-01', 1909, 'https://www.gutenberg.org/ebooks/408', 'en', 180), +(16662, 'Chronica de El-Rei D. Sancho II', 'Pina, Rui de', '2008-11-22', 12, 'https://www.gutenberg.org/ebooks/27311', 'pt', 6523), +(16663, 'The Caged Lion', 'Yonge, Charlotte M. (Charlotte Mary)', '2001-04-01', 23, 'https://www.gutenberg.org/ebooks/2573', 'en', 7737), +(16664, 'In Darkest Africa, Vol. 1; or, The Quest, Rescue, and Retreat of Emin, Governor of Equatoria', 'Stanley, Henry M. (Henry Morton)', '2013-09-06', 49, 'https://www.gutenberg.org/ebooks/43654', 'en', 7738), +(16665, 'Notes and Queries, Number 171, February 5, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 7, 'https://www.gutenberg.org/ebooks/42786', 'en', 105), +(16666, 'Lady Anna', 'Trollope, Anthony', '2010-02-14', 57, 'https://www.gutenberg.org/ebooks/31274', 'en', 378), +(16667, 'The Bible, King James version, Book 49: Ephesians', 'Anonymous', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/8049', 'en', 7739), +(16668, 'The Philosophy of Fine Art, volume 4 (of 4)\nHegel\'s Aesthetik', 'Hegel, Georg Wilhelm Friedrich', '2017-10-11', 32, 'https://www.gutenberg.org/ebooks/55731', 'en', 2250), +(16669, 'Secret Chambers and Hiding Places\r\nHistoric, Romantic, & Legendary Stories & Traditions About Hiding-Holes, Secret Chambers, Etc.', 'Fea, Allan', '2004-11-01', 71, 'https://www.gutenberg.org/ebooks/13918', 'en', 7740), +(16670, 'With God in the World: A Series of Papers', 'Brent, Charles Henry', '2010-12-20', 5, 'https://www.gutenberg.org/ebooks/34706', 'en', 2566), +(16671, 'The Subtropical Garden; or, beauty of form in the flower garden.', 'Robinson, W. (William)', '2015-10-17', 14, 'https://www.gutenberg.org/ebooks/50243', 'en', 1413), +(16672, 'Letters from Mesopotamia in 1915 and January, 1916\r\nFrom Robert Palmer, who was killed in the Battle of Um El Hannah, June 21, 1916, aged 27 years', 'Palmer, Robert Stafford Arthur', '2006-01-23', 31, 'https://www.gutenberg.org/ebooks/17584', 'en', 7741), +(16673, 'Applied Psychology: Making Your Own World\nBeing the Second of a Series of Twelve Volumes on the\nApplications of Psychology to the Problems of Personal and\nBusiness Efficiency', 'Hilton, Warren', '2009-03-19', 45, 'https://www.gutenberg.org/ebooks/28359', 'en', 5175), +(16674, 'A Ghetto Violet\nFrom \"Christian and Leah\"', 'Kompert, Leopold', '2007-09-18', 21, 'https://www.gutenberg.org/ebooks/22663', 'en', 2707), +(16675, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 06', 'Dryden, John', '2005-08-06', 27, 'https://www.gutenberg.org/ebooks/16456', 'en', 1201), +(16676, 'Famous Impostors', 'Stoker, Bram', '2016-03-08', 104, 'https://www.gutenberg.org/ebooks/51391', 'en', 6760), +(16677, 'The Road to Damascus, a Trilogy', 'Strindberg, August', '2005-09-01', 31, 'https://www.gutenberg.org/ebooks/8875', 'en', 402), +(16678, 'Brick and Marble in the Middle Ages: Notes of Tours in the North of Italy', 'Street, George Edmund', '2014-07-19', 32, 'https://www.gutenberg.org/ebooks/46326', 'en', 7742), +(16679, 'History of the Philippine Islands', 'Morga, Antonio de', '2004-12-01', 521, 'https://www.gutenberg.org/ebooks/7001', 'en', 7480), +(16680, 'The U. P. Trail', 'Grey, Zane', '2003-11-01', 108, 'https://www.gutenberg.org/ebooks/4684', 'en', 315), +(16681, 'Colors of Life: Poems and Songs and Sonnets', 'Eastman, Max', '2011-05-07', 13, 'https://www.gutenberg.org/ebooks/36051', 'en', 994), +(16682, 'Franciscus Columna\nThe Last Novella of Charles Nodier', 'Nodier, Charles', '2018-04-16', 12, 'https://www.gutenberg.org/ebooks/56988', 'en', 7743), +(16683, 'La coucaratcha (III/III)', 'Sue, Eugène', '2012-05-27', 10, 'https://www.gutenberg.org/ebooks/39825', 'fr', 687), +(16684, 'England and Napoleon (1801-1815)', NULL, '2016-07-06', 29, 'https://www.gutenberg.org/ebooks/52514', 'en', 7744), +(16685, 'Bunny Brown and His Sister Sue at Christmas Tree Cove', 'Hope, Laura Lee', '2006-12-19', 28, 'https://www.gutenberg.org/ebooks/20134', 'en', 31), +(16686, 'Atlantida', 'Benoît, Pierre', '2004-12-08', 63, 'https://www.gutenberg.org/ebooks/14301', 'en', 7745), +(16687, 'Life Aboard a British Privateer in the Time of Queen Anne\nBeing the Journal of Captain Woodes Rogers, Master Mariner', 'Rogers, Woodes', '2013-12-20', 32, 'https://www.gutenberg.org/ebooks/44471', 'en', 7746), +(16688, 'The Guest of Quesnay', 'Tarkington, Booth', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/5756', 'en', 4), +(16689, 'La filleule de Lagardère; I\nLa saltimbanque', 'Mahalin, Paul', '2011-08-23', 5, 'https://www.gutenberg.org/ebooks/37183', 'fr', 98), +(16690, 'Stickeen', 'Muir, John', '2004-03-01', 104, 'https://www.gutenberg.org/ebooks/11673', 'en', 7747), +(16691, 'Fernley House', 'Richards, Laura Elizabeth Howe', '2008-05-12', 18, 'https://www.gutenberg.org/ebooks/25446', 'en', 5372), +(16692, 'Long Odds', 'Bindloss, Harold', '2012-03-01', 26, 'https://www.gutenberg.org/ebooks/39019', 'en', 323), +(16693, 'Waterways of Westward Expansion - The Ohio River and its Tributaries', 'Hulbert, Archer Butler', '2012-10-18', 24, 'https://www.gutenberg.org/ebooks/41103', 'en', 7748), +(16694, 'Aan de kust van Malabar\nDe Aarde en haar Volken, 1909', 'Deschamps, Émile', '2007-03-26', 29, 'https://www.gutenberg.org/ebooks/20908', 'nl', 7749), +(16695, 'Sermons of the Rev. Francis A. Baker, Priest of the Congregation of St. Paul\r\nWith a Memoir of His Life', 'Baker, Francis A. (Francis Aloysius)', '2019-02-03', 8, 'https://www.gutenberg.org/ebooks/58812', 'en', 5091), +(16696, 'Little Frankie at School', 'Leslie, Madeline', '2010-08-24', 16, 'https://www.gutenberg.org/ebooks/33523', 'en', 195), +(16697, 'Letter to the Reverend Mr. Cary\nContaining Remarks upon his Review of the Grounds of\nChristianity Examined by Comparing the New Testament to\nthe Old', 'English, George Bethune', '2008-02-13', 10, 'https://www.gutenberg.org/ebooks/24594', 'en', 1616), +(16698, 'The Corner House', 'White, Fred M. (Fred Merrick)', '2018-04-28', 27, 'https://www.gutenberg.org/ebooks/57066', 'en', 128), +(16699, 'Sex and Society: Studies in the Social Psychology of Sex', 'Thomas, William Isaac', '2005-02-13', 59, 'https://www.gutenberg.org/ebooks/15015', 'en', 1650), +(16700, 'Notes and Queries, Number 180, April 9, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-04-27', 12, 'https://www.gutenberg.org/ebooks/21220', 'en', 105), +(16701, 'Visual Illusions: Their Causes, Characteristics and Applications', 'Luckiesh, Matthew', '2011-06-01', 26, 'https://www.gutenberg.org/ebooks/36297', 'en', 7750), +(16702, 'Vittoria — Volume 8', 'Meredith, George', '2003-09-01', 15, 'https://www.gutenberg.org/ebooks/4442', 'en', 4276), +(16703, 'Harper\'s New Monthly Magazine, Vol. V, No. XXIX., October, 1852', 'Various', '2014-05-26', 15, 'https://www.gutenberg.org/ebooks/45765', 'en', 387), +(16704, 'The Expositor\'s Bible: The Epistles of St. Paul to the Colossians and Philemon', 'Maclaren, Alexander', '2011-09-07', 28, 'https://www.gutenberg.org/ebooks/37345', 'en', 6732), +(16705, 'The Greylock: A Fairy Tale', 'Ebers, Georg', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/5590', 'en', 1007), +(16706, 'Breton Folk: An artistic tour in Brittany', 'Blackburn, Henry', '2016-11-26', 6, 'https://www.gutenberg.org/ebooks/53600', 'en', 2281), +(16707, 'Memories\nA Record of Personal Experience and Adventure During Four Years of War', 'Beers, Fannie A.', '2005-05-15', 33, 'https://www.gutenberg.org/ebooks/15829', 'en', 7751), +(16708, 'The Envoy, Her', 'Fyfe, H. B. (Horace Bowne)', '2010-06-01', 53, 'https://www.gutenberg.org/ebooks/32637', 'en', 179), +(16709, 'The Flower of the Flock, Volume 2 (of 3)', 'Egan, Pierce', '2018-01-14', 8, 'https://www.gutenberg.org/ebooks/56372', 'en', 61), +(16710, 'La boucle de cheveux enlevée\nPoème héroïcomique de Monsieur Pope', 'Pope, Alexander', '2008-06-02', 26, 'https://www.gutenberg.org/ebooks/25680', 'fr', 5878), +(16711, 'Achenwall\'s Observations on North America', 'Achenwall, Gottfried', '2008-03-04', 21, 'https://www.gutenberg.org/ebooks/24752', 'en', 1110), +(16712, 'The Guardian Angel\nShip\'s Company, Part 7.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/10567', 'en', 1902), +(16713, 'Der Abend: Ein kleines Gespräch', 'Hardekopf, Ferdinand', '2012-07-12', 16, 'https://www.gutenberg.org/ebooks/40217', 'de', 3978), +(16714, 'The Tragedy of Antony and Cleopatra', 'Shakespeare, William', '1997-12-01', 27, 'https://www.gutenberg.org/ebooks/1130', 'en', 7752), +(16715, 'Christ, Christianity and the Bible', 'Haldeman, Isaac Massey', '2009-10-02', 12, 'https://www.gutenberg.org/ebooks/30160', 'en', 7753), +(16716, 'The Five Knots', 'White, Fred M. (Fred Merrick)', '2013-08-17', 20, 'https://www.gutenberg.org/ebooks/43492', 'en', 48), +(16717, 'The English-American, His Travail by Sea and Land: or, A New Survey of the West-India\'s', 'Gage, Thomas', '2017-03-25', 8, 'https://www.gutenberg.org/ebooks/54425', 'en', 7754), +(16718, 'Armour\'s Monthly Cook Book, Volume 2, No. 12, October 1913\nA Monthly Magazine of Household Interest', 'Various', '2008-07-08', 138, 'https://www.gutenberg.org/ebooks/26005', 'en', 7755), +(16719, 'Œuvres de Napoléon Bonaparte, Tome I.', 'Napoleon I, Emperor of the French', '2004-05-01', 74, 'https://www.gutenberg.org/ebooks/12230', 'fr', 1943), +(16720, 'La camicia rossa\nEpisodi - Terza edizione riveduta e corretta', 'Mario, Alberto', '2009-08-31', 33, 'https://www.gutenberg.org/ebooks/29871', 'it', 7756), +(16721, 'The History of Peter the Great, Emperor of Russia', 'Voltaire', '2013-04-15', 55, 'https://www.gutenberg.org/ebooks/42540', 'en', 4891), +(16722, 'Wolfville Days', 'Lewis, Alfred Henry', '2003-01-01', 29, 'https://www.gutenberg.org/ebooks/3667', 'en', 2116), +(16723, 'Navajo weavers\r\nThird Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1881-\'82, Government Printing Office, Washington, 1884, pages 371-392.', 'Matthews, Washington', '2006-02-10', 22, 'https://www.gutenberg.org/ebooks/17742', 'en', 7757), +(16724, 'Harper\'s Young People, November 22, 1881\nAn Illustrated Weekly', 'Various', '2015-09-30', 2, 'https://www.gutenberg.org/ebooks/50085', 'en', 479), +(16725, 'Hawkins Electrical Guide v. 02 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-05-02', 15, 'https://www.gutenberg.org/ebooks/48846', 'en', 1863), +(16726, 'Taking Tales: Instructive and Entertaining Reading', 'Kingston, William Henry Giles', '2007-11-21', 13, 'https://www.gutenberg.org/ebooks/23577', 'en', 7758), +(16727, 'The Awakening of Helena Richie', 'Deland, Margaret Wade Campbell', '2004-08-01', 35, 'https://www.gutenberg.org/ebooks/6315', 'en', 3994), +(16728, 'Baudelaire: His Prose and Poetry', 'Baudelaire, Charles', '2014-10-03', 125, 'https://www.gutenberg.org/ebooks/47032', 'en', 7759), +(16729, 'Mathematical Recreations and Essays', 'Ball, W. W. Rouse (Walter William Rouse)', '2008-10-08', 193, 'https://www.gutenberg.org/ebooks/26839', 'en', 7760), +(16730, 'My Unknown Chum: \"Aguecheek\"', 'Fairbanks, Charles Bullard', '2011-02-27', 25, 'https://www.gutenberg.org/ebooks/35412', 'en', 1408), +(16731, 'Lauri Stenbäck', 'Aspelin-Haapkylä, Eliel', '2015-09-17', 6, 'https://www.gutenberg.org/ebooks/49994', 'fi', 7761), +(16732, 'Kristityn vaellus: Tästä maailmasta siihen kun tuleva on', 'Bunyan, John', '2016-02-09', 14, 'https://www.gutenberg.org/ebooks/51157', 'fi', 1633), +(16733, 'Five Months on a German Raider\nBeing the Adventures of an Englishman Captured by the \'Wolf\'', 'Trayes, Frederic George', '2005-09-14', 49, 'https://www.gutenberg.org/ebooks/16690', 'en', 449), +(16734, 'The Catholic World, Vol. 22, October, 1875, to March, 1876\nA Monthly Magazine of General Literature and Science', 'Various', '2017-04-27', 2, 'https://www.gutenberg.org/ebooks/54617', 'en', 96), +(16735, 'I Married a Ranger', 'Smith, Dama Margaret', '2006-06-08', 9, 'https://www.gutenberg.org/ebooks/18538', 'en', 7762), +(16736, 'Life Is a Dream', 'Calderón de la Barca, Pedro', '2006-03-31', 215, 'https://www.gutenberg.org/ebooks/2587', 'en', 402), +(16737, 'Santa Fé\'s Partner\nBeing Some Memorials of Events in a New-Mexican Track-end Town', 'Janvier, Thomas A. (Thomas Allibone)', '2009-10-28', 6, 'https://www.gutenberg.org/ebooks/30352', 'en', 179), +(16738, 'Indernas föreställningar om verldsskapelsen Jemförda med Finnarnes', 'Donner, Otto', '2015-02-13', 23, 'https://www.gutenberg.org/ebooks/48248', 'sv', 2572), +(16739, 'It Pays to Smile', 'Putnam, Nina Wilcox', '2013-05-23', 8, 'https://www.gutenberg.org/ebooks/42772', 'en', 61), +(16740, 'Nederlandsche Sagen en Legenden', 'Cohen, Josef', '2004-12-17', 66, 'https://www.gutenberg.org/ebooks/3455', 'nl', 7763), +(16741, 'Mammals of the Grand Mesa, Colorado', 'Anderson, Sydney', '2010-02-15', 22, 'https://www.gutenberg.org/ebooks/31280', 'en', 7764), +(16742, 'Vixen, Volume II.', 'Braddon, M. E. (Mary Elizabeth)', '2008-08-09', 20, 'https://www.gutenberg.org/ebooks/26237', 'en', 1061), +(16743, 'Review of the Work of Mr John Stuart Mill Entitled, \'Examination of Sir William Hamilton\'s Philosophy.\'', 'Grote, George', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12002', 'en', 7765), +(16744, 'The Great Stone of Sardis', 'Stockton, Frank Richard', '2004-07-01', 44, 'https://www.gutenberg.org/ebooks/6127', 'en', 26), +(16745, 'Oracles from the Poets: A Fanciful Diversion for the Drawing Room', NULL, '2014-10-26', 9, 'https://www.gutenberg.org/ebooks/47200', 'en', 5750), +(16746, 'Punchinello, Volume 1, No. 20, August 13, 1870', 'Various', '2006-02-01', 28, 'https://www.gutenberg.org/ebooks/9953', 'en', 372), +(16747, 'Religious Education in the Family', 'Cope, Henry Frederick', '2006-01-21', 14, 'https://www.gutenberg.org/ebooks/17570', 'en', 7766), +(16748, 'Aladdin & Co.: A Romance of Yankee Magic', 'Quick, Herbert', '2007-12-05', 20, 'https://www.gutenberg.org/ebooks/23745', 'en', 61), +(16749, 'Punch, or the London Charivari, Vol. 150, February 23, 1916', 'Various', '2007-09-21', 6, 'https://www.gutenberg.org/ebooks/22697', 'en', 134), +(16750, 'A Fleece of Gold; Five Lessons from the Fable of Jason and the Golden Fleece', 'Given, Charles Stewart', '2005-09-01', 21, 'https://www.gutenberg.org/ebooks/8881', 'en', 7767), +(16751, 'Ignaz Jan Paderewski', 'Baughan, Edward Algernon', '2016-03-05', 7, 'https://www.gutenberg.org/ebooks/51365', 'en', 7768), +(16752, 'Osceola the Seminole; or, The Red Fawn of the Flower Land', 'Reid, Mayne', '2011-03-20', 23, 'https://www.gutenberg.org/ebooks/35620', 'en', 7769), +(16753, 'Lightfoot the Deer', 'Burgess, Thornton W. (Thornton Waldo)', '2003-11-01', 21, 'https://www.gutenberg.org/ebooks/4670', 'en', 7770), +(16754, 'Green Eyes', 'Snell, Roy J. (Roy Judson)', '2014-05-01', 27, 'https://www.gutenberg.org/ebooks/45557', 'en', 4357), +(16755, 'The Adventures of Prince Lazybones, and Other Stories', 'Hays, Helen Ashe', '2005-03-01', 23, 'https://www.gutenberg.org/ebooks/15227', 'en', 195), +(16756, 'The Ornithologist and Oölogist. Vol. VIII, No. 11, November, 1883\nBirds: Their Nests and Eggs', 'Various', '2019-03-22', 4, 'https://www.gutenberg.org/ebooks/59108', 'en', 7771), +(16757, 'The Loyalists of America and Their Times, Vol. 1 of 2.\r\nFrom 1620-1816', 'Ryerson, Egerton', '2007-04-08', 10, 'https://www.gutenberg.org/ebooks/21012', 'en', 481), +(16758, 'Dizionario storico-critico degli scrittori di musica e de\' più celebri artisti, vol. 3\r\nDi tutte le nazioni sì antiche che moderne', 'Bertini, Giuseppe', '2012-09-21', 10, 'https://www.gutenberg.org/ebooks/40819', 'it', 7328), +(16759, 'The Business of Mining\r\nA brief non-technical exposition of the principles involved in the profitable operation of mines', 'Hoskin, Arthur J. (Arthur Joseph)', '2012-02-16', 14, 'https://www.gutenberg.org/ebooks/38903', 'en', 7772), +(16760, 'Flowers of the Southwest Deserts', 'Dodge, Natt N. (Natt Noyes)', '2016-11-02', 28, 'https://www.gutenberg.org/ebooks/53432', 'en', 7773), +(16761, 'Roy Blakeley: Lost, Strayed or Stolen', 'Fitzhugh, Percy Keese', '2013-12-22', 13, 'https://www.gutenberg.org/ebooks/44485', 'en', 323), +(16762, 'Ludvig Holberg, The Founder of Norwegian Literature and an Oxford Student', 'Hammer, S. C. (Simon Christian)', '2011-08-23', 7, 'https://www.gutenberg.org/ebooks/37177', 'en', 7774), +(16763, 'The Atlantic Monthly, Volume 03, No. 17, March, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11687', 'en', 1227), +(16764, 'Praying for Money', 'Conwell, Russell H.', '2011-07-29', 39, 'https://www.gutenberg.org/ebooks/36899', 'en', 5230), +(16765, 'In the Footprints of Charles Lamb', 'Martin, Benjamin Ellis', '2017-12-06', 1, 'https://www.gutenberg.org/ebooks/56140', 'en', 7775), +(16766, 'Looking Back', 'Fortescue, Seymour John, Sir', '2019-07-17', 68, 'https://www.gutenberg.org/ebooks/59934', 'en', 7776), +(16767, 'Augusta Triumphans\nOr, the Way to Make London the Most Flourishing City in the Universe', 'Defoe, Daniel', '2010-05-17', 39, 'https://www.gutenberg.org/ebooks/32405', 'en', 7777), +(16768, 'Recherches nouvelles sur l\'histoire ancienne, tome I', 'Volney, C.-F. (Constantin-François)', '2012-07-01', 7, 'https://www.gutenberg.org/ebooks/40025', 'fr', 5952), +(16769, 'The Enemies of Books', 'Blades, William', '1998-05-01', 54, 'https://www.gutenberg.org/ebooks/1302', 'en', 7778), +(16770, 'The Jingle Book', 'Wells, Carolyn', '2008-02-09', 81, 'https://www.gutenberg.org/ebooks/24560', 'en', 7712), +(16771, 'Golgatalta Roomaan: Historiallinen romaani', 'Heymann, Robert', '2018-05-05', 5, 'https://www.gutenberg.org/ebooks/57092', 'fi', 98), +(16772, 'The Broken Road', 'Mason, A. E. W. (Alfred Edward Woodley)', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/10755', 'en', 2244), +(16773, 'La conquista di Roma', 'Serao, Matilde', '2013-03-12', 15, 'https://www.gutenberg.org/ebooks/42316', 'it', 1314), +(16774, 'Wild Animals I Have Known', 'Seton, Ernest Thompson', '2002-01-01', 284, 'https://www.gutenberg.org/ebooks/3031', 'en', 1787), +(16775, 'Up The Baltic; Or, Young America in Norway, Sweden, and Denmark', 'Optic, Oliver', '2008-09-18', 17, 'https://www.gutenberg.org/ebooks/26653', 'en', 195), +(16776, 'Punch, or the London Charivari, Volume 99, September 20, 1890', 'Various', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12466', 'en', 134), +(16777, 'Locked Doors', 'Rinehart, Mary Roberts', '2017-03-03', 38, 'https://www.gutenberg.org/ebooks/54273', 'en', 7779), +(16778, 'Tatlings', 'Tremayne, Sydney', '2019-08-03', 708, 'https://www.gutenberg.org/ebooks/60046', 'en', 5536), +(16779, 'Revised Edition of Poems', 'Bill o\'th\' Hoylus End', '2009-01-12', 5, 'https://www.gutenberg.org/ebooks/27781', 'en', 2852), +(16780, 'The Influence of India and Persia on the Poetry of Germany', 'Remy, Arthur F. J.', '2006-03-05', 14, 'https://www.gutenberg.org/ebooks/17928', 'en', 7780), +(16781, 'Clark\'s Field', 'Herrick, Robert', '2009-12-22', 5, 'https://www.gutenberg.org/ebooks/30736', 'en', 61), +(16782, 'Grandmother: The Story of a Life That Never Was Lived', 'Richards, Laura Elizabeth Howe', '2016-04-08', 16, 'https://www.gutenberg.org/ebooks/51701', 'en', 7781), +(16783, 'Eugenics as a Factor in the Prevention of Mental Disease', 'Pollock, Horatio M. (Horatio Milo)', '2011-02-12', 10, 'https://www.gutenberg.org/ebooks/35244', 'en', 7357), +(16784, 'De Amicitia, Scipio\'s Dream', 'Cicero, Marcus Tullius', '2005-02-01', 63, 'https://www.gutenberg.org/ebooks/7491', 'en', 7782), +(16785, 'The King\'s Men: A Tale of To-morrow', 'O\'Reilly, John Boyle', '2006-08-01', 28, 'https://www.gutenberg.org/ebooks/18960', 'en', 26), +(16786, 'A Cry in the Wilderness', 'Waller, Mary E. (Mary Ella)', '2010-11-22', 28, 'https://www.gutenberg.org/ebooks/34396', 'en', 1660), +(16787, 'Droll Stories', 'Balzac, Honoré de', '2004-09-01', 17, 'https://www.gutenberg.org/ebooks/6543', 'en', 637), +(16788, 'Viaggi di Ali Bey el-Abbassi in Africa ed in Asia, v. 1', 'Ali Bey', '2014-12-14', 50, 'https://www.gutenberg.org/ebooks/47664', 'it', 6541), +(16789, 'Tieni varrella tapaamia 2', 'Friberg, Maikki', '2005-11-20', 7, 'https://www.gutenberg.org/ebooks/17114', 'fi', 5691), +(16790, 'The Choctaw Freedmen and the Story of Oak Hill Industrial Academy', 'Flickinger, Robert Elliott', '2007-11-04', 23, 'https://www.gutenberg.org/ebooks/23321', 'en', 7783), +(16791, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 1)', 'Guizot, François', '2005-01-24', 13, 'https://www.gutenberg.org/ebooks/14791', 'fr', 2003), +(16792, 'Tavallinen juttu II\nKaksi-osainen romaani', 'Goncharov, Ivan Aleksandrovich', '2016-09-16', 9, 'https://www.gutenberg.org/ebooks/53056', 'fi', 1014), +(16793, 'The Nursery, July 1873, Vol. XIV. No. 1', 'Various', '2008-03-29', 13, 'https://www.gutenberg.org/ebooks/24938', 'en', 4641), +(16794, 'Spencer\'s Philosophy of Science\nThe Herbert Spencer Lecture Delivered at the Museum 7 November, 1913', 'Morgan, C. Lloyd (Conwy Lloyd)', '2011-09-23', 32, 'https://www.gutenberg.org/ebooks/37513', 'en', 4775), +(16795, 'The Puritaine Widdow', 'Shakespeare (spurious and doubtful works)', '2003-07-01', 19, 'https://www.gutenberg.org/ebooks/4214', 'en', 1790), +(16796, 'The Helpers', 'Lynde, Francis', '2014-03-14', 23, 'https://www.gutenberg.org/ebooks/45133', 'en', 7322), +(16797, 'Sandwich Glass: A Technical Book for Collectors', 'Williams, Lenore Wheeler', '2016-05-29', 11, 'https://www.gutenberg.org/ebooks/52184', 'en', 7784), +(16798, 'Romeo ja Julia', 'Shakespeare, William', '2005-04-17', 30, 'https://www.gutenberg.org/ebooks/15643', 'fi', 7785), +(16799, 'Salt Water: The Sea Life and Adventures of Neil D\'Arcy the Midshipman', 'Kingston, William Henry Giles', '2007-05-15', 22, 'https://www.gutenberg.org/ebooks/21476', 'en', 3535), +(16800, 'A Day with William Shakespeare', 'Byron, May', '2012-08-08', 25, 'https://www.gutenberg.org/ebooks/40441', 'en', 3360), +(16801, 'The Aliens', 'Leinster, Murray', '2008-01-01', 122, 'https://www.gutenberg.org/ebooks/24104', 'en', 26), +(16802, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 324, July 26, 1828', 'Various', '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10331', 'en', 133), +(16803, 'Psychology and Crime', 'Holmes, Thomas', '2018-02-08', 26, 'https://www.gutenberg.org/ebooks/56524', 'en', 3735), +(16804, 'With Beatty off Jutland: A Romance of the Great Sea Fight', 'Westerman, Percy F. (Percy Francis)', '2012-04-19', 163, 'https://www.gutenberg.org/ebooks/39489', 'en', 4416), +(16805, 'The Daltons; Or, Three Roads In Life. Volume I (of II)', 'Lever, Charles James', '2010-04-19', 44, 'https://www.gutenberg.org/ebooks/32061', 'en', 137), +(16806, 'Unexplored Spain', 'Buck, Walter John', '2012-12-10', 11, 'https://www.gutenberg.org/ebooks/41593', 'en', 1514), +(16807, 'Ο Γάμος του Κρεντσίνσκη, Κωμωδία εις τρεις πράξεις - Πανδρολογήματα, Κωμωδία εις δύο πράξεις', 'Sukhovo-Kobylin, A. (Aleksandr)', '2011-10-11', 26, 'https://www.gutenberg.org/ebooks/37721', 'el', 7786), +(16808, 'The Colors of Space', 'Bradley, Marion Zimmer', '2007-03-11', 228, 'https://www.gutenberg.org/ebooks/20796', 'en', 26), +(16809, 'A History of the Peninsular War, Vol. 1, 1807-1809 \r\nFrom the Treaty of Fontainbleau to the Battle of Corunna', 'Oman, Charles', '2016-10-12', 69, 'https://www.gutenberg.org/ebooks/53264', 'en', 2488), +(16810, 'The Great Round World And What Is Going On In It, Vol. 1, No. 24, April 22, 1897\r\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-26', 19, 'https://www.gutenberg.org/ebooks/15471', 'en', 1), +(16811, 'Every Man for Himself', 'Moorhouse, Herbert Joseph', '2007-05-30', 21, 'https://www.gutenberg.org/ebooks/21644', 'en', 1219), +(16812, 'The First Man', 'O\'Neill, Eugene', '2003-05-01', 44, 'https://www.gutenberg.org/ebooks/4026', 'en', 427), +(16813, 'Mother Goose for Grown Folks', 'Whitney, A. D. T. (Adeline Dutton Train)', '2014-04-01', 16, 'https://www.gutenberg.org/ebooks/45301', 'en', 7787), +(16814, 'Little People: An Alphabet', 'Crosland, T. W. H. (Thomas William Hodgson)', '2008-01-17', 15, 'https://www.gutenberg.org/ebooks/24336', 'en', 7788), +(16815, 'The Great Events by Famous Historians, Volume 08\r\nThe Later Renaissance: from Gutenberg to the Reformation', NULL, '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10103', 'en', 346), +(16816, 'The Tiger Lily', 'Fenn, George Manville', '2012-09-05', 15, 'https://www.gutenberg.org/ebooks/40673', 'en', 61), +(16817, 'Adieu', 'Balzac, Honoré de', '2004-06-01', 40, 'https://www.gutenberg.org/ebooks/1554', 'en', 4), +(16818, 'A Course of Pure Mathematics\nThird Edition', 'Hardy, G. H. (Godfrey Harold)', '2012-02-05', 1063, 'https://www.gutenberg.org/ebooks/38769', 'en', 2460), +(16819, 'Penny Nichols Finds a Clue', 'Clark, Joan', '2010-08-08', 8, 'https://www.gutenberg.org/ebooks/33381', 'en', 5251), +(16820, 'The Frontier Boys in the Sierras; Or, The Lost Mine', 'Roosevelt, Wyn', '2010-05-04', 13, 'https://www.gutenberg.org/ebooks/32253', 'en', 7789), +(16821, 'Raamatun tutkisteluja 1: Jumalallinen aikakausien suunnitelma', 'Russell, C. T. (Charles Taze)', '2018-03-10', 8, 'https://www.gutenberg.org/ebooks/56716', 'fi', 3792), +(16822, 'Five Sci-Fi Short Stories', 'Piper, H. Beam', '2008-09-01', 23, 'https://www.gutenberg.org/ebooks/26461', 'en', 2797), +(16823, 'The Roll-Call', 'Bennett, Arnold', '2004-06-01', 49, 'https://www.gutenberg.org/ebooks/12654', 'en', 7790), +(16824, 'Wilhelms I. Briefe an seinen Vater König Friedrich Wilhelm III. (1827-1839)', 'William I, German Emperor', '2017-07-24', 14, 'https://www.gutenberg.org/ebooks/55193', 'de', 7791), +(16825, 'American Forest Trees', 'Gibson, Henry H.', '2013-02-18', 29, 'https://www.gutenberg.org/ebooks/42124', 'en', 3270), +(16826, 'Moby Part of Speech List', 'Ward, Grady', '2002-05-01', 46, 'https://www.gutenberg.org/ebooks/3203', 'en', 7557), +(16827, 'Cricket on the Hearth', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9739', 'en', 3397), +(16828, 'Eyeshine', 'Brown, Paul Cameron', '2009-11-19', 12, 'https://www.gutenberg.org/ebooks/30504', 'en', 8), +(16829, 'The Philippine Islands, 1493-1898; Volume 47, 1728-1759\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2017-01-22', 29, 'https://www.gutenberg.org/ebooks/54041', 'en', 7466), +(16830, 'The Influence of Old Norse Literature on English Literature', 'Nordby, Conrad Hjalmar', '2004-10-18', 25, 'https://www.gutenberg.org/ebooks/13786', 'en', 7792), +(16831, 'L\'Illustration, No. 0009, 29 Avril 1843', 'Various', '2011-01-18', 7, 'https://www.gutenberg.org/ebooks/34998', 'fr', 150), +(16832, 'Punch, or the London Charivari, Vol. 107, December 15th, 1894', 'Various', '2014-08-14', 12, 'https://www.gutenberg.org/ebooks/46584', 'en', 134), +(16833, 'Ghetto Tragedies', 'Zangwill, Israel', '2011-01-26', 16, 'https://www.gutenberg.org/ebooks/35076', 'en', 2707), +(16834, 'The Standard Light Operas, Their Plots and Their Music', 'Upton, George P. (George Putnam)', '2013-06-11', 12, 'https://www.gutenberg.org/ebooks/42918', 'en', 5808), +(16835, 'Papieren Kinderen: novellen en schetsen', 'Maurik, Justus van', '2009-07-17', 10, 'https://www.gutenberg.org/ebooks/29429', 'nl', 319), +(16836, 'The Celestial Hammerlock', 'Colvin, Donald', '2016-03-23', 33, 'https://www.gutenberg.org/ebooks/51533', 'en', 26), +(16837, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 6 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 47, 'https://www.gutenberg.org/ebooks/17326', 'en', 7793), +(16838, 'To My Younger Brethren: Chapters on Pastoral Life and Work', 'Moule, H. C. G. (Handley Carr Glyn)', '2007-10-20', 11, 'https://www.gutenberg.org/ebooks/23113', 'en', 7794), +(16839, 'The Thirty Years War — Volume 02', 'Schiller, Friedrich', '2004-10-01', 13, 'https://www.gutenberg.org/ebooks/6771', 'en', 4328), +(16840, 'Notes on Bookbinding for Libraries', 'Dana, John Cotton', '2014-11-25', 27, 'https://www.gutenberg.org/ebooks/47456', 'en', 3349), +(16841, 'The Carpenter\'s Daughter', 'Warner, Anna Bartlett', '2007-07-13', 20, 'https://www.gutenberg.org/ebooks/22061', 'en', 470), +(16842, 'Herbert Hoover: The Man and His Work', 'Kellogg, Vernon L. (Vernon Lyman)', '2009-07-22', 15, 'https://www.gutenberg.org/ebooks/29489', 'en', 7795), +(16843, 'Essays Literary, Critical and Historical', 'O\'Hagan, Thomas', '2016-03-28', 13, 'https://www.gutenberg.org/ebooks/51593', 'en', 7796), +(16844, 'The Fertility of the Unfit', 'Chapple, W. A. (William Allan)', '2005-07-10', 34, 'https://www.gutenberg.org/ebooks/16254', 'en', 5337), +(16845, 'The pleasant historie of the conquest of the VVeast India, now called new Spayne\r\natchieued by the vvorthy Prince Hernando Cortes, marques of the Valley of Huaxacac, most delectable to reade', 'López de Gómara, Francisco', '2014-08-07', 35, 'https://www.gutenberg.org/ebooks/46524', 'en', 7797), +(16846, 'The Caxtons: A Family Picture — Volume 17', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7603', 'en', 137), +(16847, 'Four Phases of Love', 'Heyse, Paul', '2010-10-19', 24, 'https://www.gutenberg.org/ebooks/34104', 'en', 803), +(16848, 'The Leading Facts of English History', 'Montgomery, D. H. (David Henry)', '2005-12-25', 17, 'https://www.gutenberg.org/ebooks/17386', 'en', 1953), +(16849, 'Master of Life and Death', 'Silverberg, Robert', '2015-11-12', 53, 'https://www.gutenberg.org/ebooks/50441', 'en', 7798), +(16850, 'The Silver Poppy', 'Stringer, Arthur', '2013-02-24', 11, 'https://www.gutenberg.org/ebooks/42184', 'en', 2999), +(16851, 'The Long Necked Bottle', 'Brown, Paul Cameron', '2010-03-02', 4, 'https://www.gutenberg.org/ebooks/31476', 'en', 28), +(16852, 'The Chautauquan, Vol. 04, March 1884, No. 6', 'Chautauqua Literary and Scientific Circle', '2017-07-17', 6, 'https://www.gutenberg.org/ebooks/55133', 'en', 1453), +(16853, 'Apology, Crito, and Phaedo of Socrates', 'Plato', '2004-10-12', 360, 'https://www.gutenberg.org/ebooks/13726', 'en', 4235), +(16854, 'Education: How Old The New', 'Walsh, James J. (James Joseph)', '2011-01-13', 23, 'https://www.gutenberg.org/ebooks/34938', 'en', 3474), +(16855, 'The Book of the National Parks', 'Yard, Robert Sterling', '2008-12-12', 15, 'https://www.gutenberg.org/ebooks/27513', 'en', 7799), +(16856, 'It Happened in Egypt', 'Williamson, A. M. (Alice Muriel)', '2006-01-01', 58, 'https://www.gutenberg.org/ebooks/9799', 'en', 109), +(16857, 'The Filigree Ball\r\nBeing a full and true account of the solution of the mystery concerning the Jeffrey-Moore affair', 'Green, Anna Katharine', '2000-10-01', 42, 'https://www.gutenberg.org/ebooks/2371', 'en', 128), +(16858, 'History of the Jews, Vol. 1 (of 6)', 'Graetz, Heinrich', '2013-06-29', 73, 'https://www.gutenberg.org/ebooks/43056', 'en', 5932), +(16859, 'Two plays for dancers', 'Yeats, W. B. (William Butler)', '2010-08-02', 27, 'https://www.gutenberg.org/ebooks/33321', 'en', 5104), +(16860, 'The Wesleyan Methodist Pulpit in Malvern\r\nSermons Preached at the Opening Services of the Wesleyan Methodist Chapel, in 1866', 'Punshon, William Morley', '2008-01-21', 6, 'https://www.gutenberg.org/ebooks/24396', 'en', 7800), +(16861, 'The English Lakes', 'Palmer, William T.', '2018-08-10', 9, 'https://www.gutenberg.org/ebooks/57664', 'en', 6570), +(16862, 'What\'s Mine\'s Mine — Volume 3', 'MacDonald, George', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/5968', 'en', 942), +(16863, 'Naufragios de Alvar Núñez Cabeza de Vaca', 'Núñez Cabeza de Vaca, Alvar, active 16th century', '2004-02-01', 103, 'https://www.gutenberg.org/ebooks/11071', 'es', 7801), +(16864, 'Aviation in Peace and War', 'Sykes, Frederick Hugh, Sir', '2008-04-30', 23, 'https://www.gutenberg.org/ebooks/25244', 'en', 927), +(16865, 'The Love Affairs of Lord Byron', 'Gribble, Francis Henry', '2012-12-24', 21, 'https://www.gutenberg.org/ebooks/41701', 'en', 6521), +(16866, 'The Girl Scouts at Home; or, Rosanna\'s Beautiful Day', 'Galt, Katherine Keene', '2007-03-03', 34, 'https://www.gutenberg.org/ebooks/20736', 'en', 2345), +(16867, 'A Paranoia', 'Matos, Júlio de', '2004-12-28', 10, 'https://www.gutenberg.org/ebooks/14503', 'pt', 7802), +(16868, 'Woman in Prison', 'Woods, Caroline H.', '2013-11-24', 9, 'https://www.gutenberg.org/ebooks/44273', 'en', 7803), +(16869, 'Notwithstanding', 'Cholmondeley, Mary', '2011-10-17', 22, 'https://www.gutenberg.org/ebooks/37781', 'en', 61), +(16870, 'La Bête humaine', 'Zola, Émile', '2004-02-01', 83, 'https://www.gutenberg.org/ebooks/5154', 'fr', 298), +(16871, 'Subspeciation in Pocket Gophers of Kansas, [KU. Vol. 1 No. 11]', 'Villa Ramírez, Bernardo', '2011-07-07', 11, 'https://www.gutenberg.org/ebooks/36653', 'en', 6337), +(16872, 'The Scotch Twins', 'Perkins, Lucy Fitch', '2003-05-01', 36, 'https://www.gutenberg.org/ebooks/4086', 'en', 309), +(16873, 'Vlissinger Michiel, of Neerlands glorie ter zee: Tweede omgewerkte Druk.', 'Louwerse, Pieter', '2016-06-12', 19, 'https://www.gutenberg.org/ebooks/52316', 'nl', 7804), +(16874, 'The Sufferings and Escape of Capt. Chas. H. Brown From an Awful Imprisonment by Chilian Convicts', 'Brown, Charles H., captain of the bark Florida', '2018-07-07', 16, 'https://www.gutenberg.org/ebooks/57456', 'en', 7805), +(16875, 'The Wolf\'s Long Howl', 'Waterloo, Stanley', '2003-12-01', 28, 'https://www.gutenberg.org/ebooks/10391', 'en', 179), +(16876, 'The Divorce of Catherine of Aragon\r\nThe Story as Told by the Imperial Ambassadors Resident at the Court of Henry VIII', 'Froude, James Anthony', '2010-07-08', 21, 'https://www.gutenberg.org/ebooks/33113', 'en', 7806), +(16877, 'Histoire du moyen âge 395-1270', 'Langlois, Charles Victor', '2012-04-11', 33, 'https://www.gutenberg.org/ebooks/39429', 'fr', 6411), +(16878, 'Eversti Chabert', 'Balzac, Honoré de', '2016-08-28', 9, 'https://www.gutenberg.org/ebooks/52918', 'fi', 98), +(16879, 'The History of Painting in Italy, Vol. 6 (of 6)\r\nFrom the Period of the Revival of the Fine Arts to the End of the Eighteenth Century (6 volumes)', 'Lanzi, Luigi', '2012-12-01', 12, 'https://www.gutenberg.org/ebooks/41533', 'en', 7807), +(16880, 'Miles Wallingford\nSequel to \"Afloat and Ashore\"', 'Cooper, James Fenimore', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11243', 'en', 3330), +(16881, 'Daily Training', 'Benson, E. F. (Edward Frederic)', '2018-02-17', 53, 'https://www.gutenberg.org/ebooks/56584', 'en', 5785), +(16882, 'Between the Lines', 'Cable, Boyd', '2008-04-15', 35, 'https://www.gutenberg.org/ebooks/25076', 'en', 335), +(16883, 'Concerning \"Bully\" Hayes\nFrom \"The Strange Adventure Of James Shervinton and Other\nStories\" - 1902', 'Becke, Louis', '2008-04-05', 11, 'https://www.gutenberg.org/ebooks/24998', 'en', 324), +(16884, 'The Mystery of Arnold Hall', 'Persons, Helen M.', '2013-10-26', 5, 'https://www.gutenberg.org/ebooks/44041', 'en', 5010), +(16885, 'Richard Carvel — Volume 02', 'Churchill, Winston', '2004-10-18', 26, 'https://www.gutenberg.org/ebooks/5366', 'en', 5772), +(16886, 'The Man of Uz, and Other Poems', 'Sigourney, L. H. (Lydia Howard)', '2007-02-02', 21, 'https://www.gutenberg.org/ebooks/20504', 'en', 8), +(16887, 'Hatchie, the Guardian Slave; or, The Heiress of Bellevue\r\nA Tale of the Mississippi and the South-west', 'Ashton, Warren T.', '2005-01-19', 20, 'https://www.gutenberg.org/ebooks/14731', 'en', 7808), +(16888, 'The Joyful Wisdom (\"La Gaya Scienza\")\r\nComplete Works, Volume Ten', 'Nietzsche, Friedrich Wilhelm', '2016-05-22', 106, 'https://www.gutenberg.org/ebooks/52124', 'en', 779), +(16889, 'The Female Soldier; Or, The Surprising Life and Adventures of Hannah Snell', 'Anonymous', '2011-06-18', 33, 'https://www.gutenberg.org/ebooks/36461', 'en', 7809), +(16890, 'Harper\'s Young People, March 22, 1881\nAn Illustrated Weekly', 'Various', '2014-03-23', 10, 'https://www.gutenberg.org/ebooks/45193', 'en', 479), +(16891, 'The Great North Road, the Old Mail Road to Scotland: London to York', 'Harper, Charles G. (Charles George)', '2014-08-28', 27, 'https://www.gutenberg.org/ebooks/46716', 'en', 7810), +(16892, 'The South and the National Government', 'Taft, William H. (William Howard)', '2006-11-14', 8, 'https://www.gutenberg.org/ebooks/19812', 'en', 7811), +(16893, 'Confessions and Criticisms', 'Hawthorne, Julian', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/7431', 'en', 4637), +(16894, 'L\'Humanité préhistorique', 'Morgan, J. de (Jacques)', '2007-08-06', 20, 'https://www.gutenberg.org/ebooks/22253', 'fr', 1381), +(16895, 'L\'ingénieux hidalgo Don Quichotte de la Manche - Tome I', 'Cervantes Saavedra, Miguel de', '2005-06-14', 48, 'https://www.gutenberg.org/ebooks/16066', 'fr', 2176), +(16896, 'The Mentor: American Mural Painters, vol. 2, Num 15, Serial No. 67, September 15, 1914', 'Hoeber, Arthur', '2015-12-12', 10, 'https://www.gutenberg.org/ebooks/50673', 'en', 7812), +(16897, 'The Thorogood Family', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 28, 'https://www.gutenberg.org/ebooks/23381', 'en', 470), +(16898, 'Ted Marsh on an Important Mission', 'Sherwood, Elmer', '2009-05-12', 25, 'https://www.gutenberg.org/ebooks/28769', 'en', 153), +(16899, 'Ο Πατούχας', 'Kondylakes, Ioannes', '2010-11-15', 13, 'https://www.gutenberg.org/ebooks/34336', 'el', 7813), +(16900, 'A Sentimental Journey Through France and Italy', 'Sterne, Laurence', '1997-02-01', 198, 'https://www.gutenberg.org/ebooks/804', 'en', 1061), +(16901, 'Freiland: Ein sociales Zukunftsbild', 'Hertzka, Theodor', '2017-08-08', 5, 'https://www.gutenberg.org/ebooks/55301', 'de', 1998); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(16902, 'Life on the Mississippi, Part 9.', 'Twain, Mark', '2004-07-10', 9, 'https://www.gutenberg.org/ebooks/8479', 'en', 261), +(16903, 'Eight Hundred Leagues on the Amazon', 'Verne, Jules', '2002-02-01', 116, 'https://www.gutenberg.org/ebooks/3091', 'en', 7814), +(16904, 'Helpfully Yours', 'Smith, Evelyn E.', '2010-03-14', 47, 'https://www.gutenberg.org/ebooks/31644', 'en', 26), +(16905, 'Bibelen, Det nye Testamente', NULL, '2000-04-01', 20, 'https://www.gutenberg.org/ebooks/2143', 'da', 2781), +(16906, 'Grace Harlowe\'s First Year at Overton College', 'Chase, Josephine', '2006-03-15', 31, 'https://www.gutenberg.org/ebooks/17988', 'en', 5010), +(16907, 'The Dueling Machine', 'Lewis, Myron R.', '2009-12-29', 94, 'https://www.gutenberg.org/ebooks/30796', 'en', 26), +(16908, 'The Phantom Airman', 'Walker, Rowland', '2013-07-20', 16, 'https://www.gutenberg.org/ebooks/43264', 'en', 7815), +(16909, 'Tales of a Traveller', 'Irving, Washington', '2004-09-23', 86, 'https://www.gutenberg.org/ebooks/13514', 'en', 4038), +(16910, 'De heele wereld rond\r\nEen leesboek ter bevordering van natuur-, landen- en volkenkennis, ten dienste der volksschool', 'Goeverneur, J. J. A. (Johan Jacob Antonie)', '2009-01-06', 10, 'https://www.gutenberg.org/ebooks/27721', 'nl', 7816), +(16911, 'The Bojabi Tree', 'Rickert, Edith', '2019-07-27', 998, 'https://www.gutenberg.org/ebooks/59994', 'en', 2296), +(16912, 'Democrazia futurista: dinamismo politico', 'Marinetti, F. T.', '2012-10-23', 13, 'https://www.gutenberg.org/ebooks/41157', 'it', 7817), +(16913, 'The World\'s Great Sermons, Volume 02: Hooker to South', NULL, '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11627', 'en', 3021), +(16914, 'Beknopte Geschiedenis van Friesland in Hoofdtrekken', 'Eekhoff, W. (Wopke)', '2011-07-24', 16, 'https://www.gutenberg.org/ebooks/36839', 'nl', 7818), +(16915, 'Addresses on the Revised Version of Holy Scripture', 'Ellicott, C. J. (Charles John)', '2008-05-09', 14, 'https://www.gutenberg.org/ebooks/25412', 'en', 7819), +(16916, 'Deutsche Flagge, sei gegrüsst!\r\nFriedens- und Kriegsfahrten der Hanse, Kriegs- und Friedenstaten der deutschen Marine', 'Satow, Hans', '2018-04-23', 21, 'https://www.gutenberg.org/ebooks/57032', 'de', 7820), +(16917, 'Le Bilan du Divorce', 'Le Roux, Hugues', '2012-06-26', 8, 'https://www.gutenberg.org/ebooks/40085', 'fr', 7821), +(16918, 'Η μαζώχτρα κι άλλες ιστορίες\r\nΟ Βουρκόλακας - Δράμα', 'Eftaliotis, Argyris', '2010-08-29', 13, 'https://www.gutenberg.org/ebooks/33577', 'el', 402), +(16919, 'Kate Aylesford: A Story of the Refugees', 'Peterson, Charles J. (Charles Jacobs)', '2019-02-09', 11, 'https://www.gutenberg.org/ebooks/58846', 'en', 7822), +(16920, 'The Grip of Honor: A Story of Paul Jones and the American Revolution', 'Brady, Cyrus Townsend', '2016-07-09', 6, 'https://www.gutenberg.org/ebooks/52540', 'en', 4024), +(16921, 'Teverino', 'Sand, George', '2005-03-08', 24, 'https://www.gutenberg.org/ebooks/15287', 'fr', 61), +(16922, 'Bikey the Skicycle and Other Tales of Jimmieboy', 'Bangs, John Kendrick', '2012-05-31', 29, 'https://www.gutenberg.org/ebooks/39871', 'en', 153), +(16923, 'My Treasure', NULL, '2011-05-01', 13, 'https://www.gutenberg.org/ebooks/36005', 'en', 388), +(16924, 'River Legends; Or, Father Thames and Father Rhine', 'Brabourne, Edward Hugessen Knatchbull-Hugessen, Baron', '2013-12-14', 21, 'https://www.gutenberg.org/ebooks/44425', 'en', 7823), +(16925, 'Masters of the Guild', 'Lamprey, Louise', '2004-05-01', 22, 'https://www.gutenberg.org/ebooks/5702', 'en', 7824), +(16926, 'A History of American Christianity', 'Bacon, Leonard Woolsey', '2006-12-22', 48, 'https://www.gutenberg.org/ebooks/20160', 'en', 7825), +(16927, '54-40 or Fight', 'Hough, Emerson', '2004-12-15', 40, 'https://www.gutenberg.org/ebooks/14355', 'en', 7826), +(16928, 'In Extremis', 'Melati, van Java', '2016-11-10', 12, 'https://www.gutenberg.org/ebooks/53492', 'nl', 319), +(16929, 'Dave Dawson with the Pacific Fleet', 'Bowen, Robert Sidney', '2015-10-14', 24, 'https://www.gutenberg.org/ebooks/50217', 'en', 1004), +(16930, 'Poems: With a Sketch of the Life and Experience of Annie R. Smith', 'Smith, Rebekah', '2010-12-25', 16, 'https://www.gutenberg.org/ebooks/34752', 'en', 7827), +(16931, 'Northern Lights, Volume 2.', 'Parker, Gilbert', '2004-07-01', 6, 'https://www.gutenberg.org/ebooks/6187', 'en', 2261), +(16932, 'Ocean\'s Story; or, Triumphs of Thirty Centuries\r\nMaritime Adventures, Achievements, Explorations, Discoveries and Inventions; and of the Rise and Progress of Ship-Building and Ocean Navigation, from the Ark to the Iron Steamships', 'Goodrich, Frank B. (Frank Boott)', '2014-07-22', 24, 'https://www.gutenberg.org/ebooks/46372', 'en', 2320), +(16933, 'One Year Abroad', 'Howard, Blanche Willis', '2011-03-25', 39, 'https://www.gutenberg.org/ebooks/35680', 'en', 1408), +(16934, 'Gone to Earth', 'Webb, Mary Gladys Meredith', '2004-12-01', 45, 'https://www.gutenberg.org/ebooks/7055', 'en', 7828), +(16935, 'A Little Window', 'Snyder, Jean M.', '2007-09-16', 4, 'https://www.gutenberg.org/ebooks/22637', 'en', 8), +(16936, 'To The Gold Coast for Gold: A Personal Narrative. Vol. I', 'Cameron, Verney Lovett', '2005-09-01', 41, 'https://www.gutenberg.org/ebooks/8821', 'en', 7829), +(16937, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 07', 'Dryden, John', '2005-07-31', 36, 'https://www.gutenberg.org/ebooks/16402', 'en', 1201), +(16938, 'The Sorrows of Young Werther', 'Goethe, Johann Wolfgang von', '2001-02-01', 904, 'https://www.gutenberg.org/ebooks/2527', 'en', 4038), +(16939, 'Wonderful Stories for Children', 'Andersen, H. C. (Hans Christian)', '2013-08-30', 36, 'https://www.gutenberg.org/ebooks/43600', 'en', 7830), +(16940, 'The Lake of the Sky\nLake Tahoe in the High Sierras of California and Nevada, its History, Indians, Discovery by Frémont, Legendary Lore, Various Namings, Physical Characteristics, Glacial Phenomena, Geology, Single Outlet, Automobile Routes, Historic Towns, Early Mining Excitements, Steamer Ride, Mineral Springs, Mountain and Lake Resorts, Trail and Camping Out Trips, Summer Residences, Fishing, Hunting, Flowers, Birds, Animals, Trees, and Chaparral, with a Full Account of the Tahoe National Forest, the Public Use of the Water of Lake Tahoe and Much Other Interesting Matter', 'James, George Wharton', '2004-08-13', 29, 'https://www.gutenberg.org/ebooks/13170', 'en', 7831), +(16941, 'Stories of Achievement, Volume IV, Authors and Journalists', NULL, '2006-06-15', 46, 'https://www.gutenberg.org/ebooks/18598', 'en', 4065), +(16942, 'La Russie en 1839, Volume IV', 'Custine, Astolphe, marquis de', '2008-11-28', 30, 'https://www.gutenberg.org/ebooks/27345', 'fr', 2408), +(16943, 'Little Women', 'Alcott, Louisa May', '2008-08-01', 119, 'https://www.gutenberg.org/ebooks/26297', 'en', 1080), +(16944, 'The Faery Queen and Her Knights: Stories Retold from Edmund Spenser', 'Church, Alfred John', '2017-10-17', 45, 'https://www.gutenberg.org/ebooks/55765', 'en', 1007), +(16945, 'A Tale of Two Cities', 'Dickens, Charles', '2005-04-01', 101, 'https://www.gutenberg.org/ebooks/7869', 'en', 2616), +(16946, 'A New Subspecies of Bat (Myotis velifer) from Southeastern California and Arizona', 'Vaughan, Terry A.', '2010-02-08', 4, 'https://www.gutenberg.org/ebooks/31220', 'en', 2561), +(16947, 'Mon oncle Benjamin', 'Tillier, Claude', '2010-12-04', 11, 'https://www.gutenberg.org/ebooks/34560', 'fr', 298), +(16948, 'Historia de la decadencia de España', 'Cánovas del Castillo, Antonio', '2014-10-11', 38, 'https://www.gutenberg.org/ebooks/47092', 'es', 7832), +(16949, 'The Dying Indian\'s Dream: A Poem', 'Rand, Silas Tertius', '2015-09-21', 8, 'https://www.gutenberg.org/ebooks/50025', 'en', 7833), +(16950, 'The Olden Time Series: Vol. 2: The Days of the Spinning-Wheel in New England\nGleanings Chiefly from old Newspapers of Boston and Salem, Massachusetts', 'Brooks, Henry M. (Henry Mason)', '2007-08-26', 16, 'https://www.gutenberg.org/ebooks/22405', 'en', 4354), +(16951, 'Perlen der heiligen Vorzeit\r\nJohann Ladislav Pyrker\'s sämmtliche Werke (3/3)', 'Pyrker, János László', '2015-09-10', 26, 'https://www.gutenberg.org/ebooks/49934', 'de', 8), +(16952, 'Empire Builders', 'Lynde, Francis', '2005-08-31', 12, 'https://www.gutenberg.org/ebooks/16630', 'en', 1239), +(16953, 'Myths of the Iroquois. (1883 N 02 / 1880-1881 (pages 47-116))', 'Smith, Erminnie A. (Erminnie Adele)', '2014-06-29', 12, 'https://www.gutenberg.org/ebooks/46140', 'en', 7834), +(16954, 'Notes and Queries, Number 79, May 3, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-12', 18, 'https://www.gutenberg.org/ebooks/26899', 'en', 105), +(16955, 'Cardello', 'Capuana, Luigi', '2005-01-01', 11, 'https://www.gutenberg.org/ebooks/7267', 'it', 61), +(16956, 'Symzonia: Voyage of Discovery', 'Seaborn, Adam, Captain', '2017-04-03', 18, 'https://www.gutenberg.org/ebooks/54485', 'en', 2909), +(16957, 'Robert Browning', 'Chesterton, G. K. (Gilbert Keith)', '2004-08-31', 53, 'https://www.gutenberg.org/ebooks/13342', 'en', 7835), +(16958, 'The Lost Ten Tribes, and 1882', 'Wild, Joseph', '2008-11-06', 41, 'https://www.gutenberg.org/ebooks/27177', 'en', 70), +(16959, 'The Real Thing and Other Tales', 'James, Henry', '2001-07-01', 100, 'https://www.gutenberg.org/ebooks/2715', 'en', 7836), +(16960, 'A Bad Day for Sales', 'Leiber, Fritz', '2016-01-01', 76, 'https://www.gutenberg.org/ebooks/50819', 'en', 1660), +(16961, 'La lucha por la vida: La busca', 'Baroja, Pío', '2013-08-09', 34, 'https://www.gutenberg.org/ebooks/43432', 'es', 1384), +(16962, 'All That Matters', 'Guest, Edgar A. (Edgar Albert)', '2009-05-21', 22, 'https://www.gutenberg.org/ebooks/28903', 'en', 8), +(16963, 'The Amethyst Ring', 'France, Anatole', '2015-06-02', 14, 'https://www.gutenberg.org/ebooks/49108', 'en', 58), +(16964, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 17', 'Stevenson, Robert Louis', '2010-01-18', 12, 'https://www.gutenberg.org/ebooks/31012', 'en', 179), +(16965, 'The Church and Modern Life', 'Gladden, Washington', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12290', 'en', 1816), +(16966, 'Ready About; or, Sailing the Boat', 'Optic, Oliver', '2017-09-16', 20, 'https://www.gutenberg.org/ebooks/55557', 'en', 2794), +(16967, 'The Call of the Wild', 'London, Jack', '2006-11-07', 84, 'https://www.gutenberg.org/ebooks/19678', 'en', 323), +(16968, 'The Atlantic Monthly, Volume 08, No. 49, November, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11415', 'en', 1227), +(16969, 'Asiatic Breezes; Or, Students on The Wing', 'Optic, Oliver', '2008-05-27', 21, 'https://www.gutenberg.org/ebooks/25620', 'en', 3242), +(16970, 'Scientific American Supplement, No. 613, October 1, 1887', 'Various', '2005-05-24', 23, 'https://www.gutenberg.org/ebooks/15889', 'en', 210), +(16971, 'The Sword', 'Quattrocchi, Frank', '2010-06-05', 35, 'https://www.gutenberg.org/ebooks/32697', 'en', 26), +(16972, 'The Colonial Cavalier; or, Southern Life before the Revolution', 'Goodwin, Maud Wilder', '2012-11-15', 13, 'https://www.gutenberg.org/ebooks/41365', 'en', 7837), +(16973, 'The Jolly Corner', 'James, Henry', '1998-02-01', 227, 'https://www.gutenberg.org/ebooks/1190', 'en', 61), +(16974, 'Mémoires authentiques de Latude,\nécrites par lui au donjon de Vincennes et à Charenton', 'Latude, Henri Masers de', '2010-09-18', 6, 'https://www.gutenberg.org/ebooks/33745', 'fr', 2626), +(16975, 'The Gyroscopic Compass: A Non-Mathematical Treatment', 'Chalmers, T. W. (Thomas Wightman)', '2018-05-22', 7, 'https://www.gutenberg.org/ebooks/57200', 'en', 7838), +(16976, 'The Mystery of the Locks', 'Howe, E. W. (Edgar Watson)', '2011-05-27', 16, 'https://www.gutenberg.org/ebooks/36237', 'en', 262), +(16977, 'Skräddarne i Greiffenhagen: Julberättelse från trettioåriga kriget', 'Åberg, J. O. (Johan Olof)', '2016-08-10', 1, 'https://www.gutenberg.org/ebooks/52772', 'sv', 5126), +(16978, 'Surgical Experiences in South Africa, 1899-1900\r\nBeing Mainly a Clinical Study of the Nature and Effects of Injuries Produced by Bullets of Small Calibre', 'Makins, George Henry', '2007-05-03', 27, 'https://www.gutenberg.org/ebooks/21280', 'en', 7839), +(16979, 'The Jest Book\nThe Choicest Anecdotes and Sayings', 'Lemon, Mark', '2007-01-13', 55, 'https://www.gutenberg.org/ebooks/20352', 'en', 7840), +(16980, 'The Red Redmaynes', 'Phillpotts, Eden', '2004-11-26', 26, 'https://www.gutenberg.org/ebooks/14167', 'en', 128), +(16981, 'Il Conte di Virtù vol. 2/2\nStoria italiana del secolo XIV', 'Belgiojoso, Carlo', '2018-11-07', 20, 'https://www.gutenberg.org/ebooks/58248', 'it', 7841), +(16982, 'Mémoires de Luther écrits par lui-même, Tome II', 'Luther, Martin', '2014-01-07', 14, 'https://www.gutenberg.org/ebooks/44617', 'fr', 1073), +(16983, 'A Thorny Path — Volume 01', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5530', 'en', 803), +(16984, 'Women of Early Christianity', 'Carroll, Mitchell', '2010-05-20', 121, 'https://www.gutenberg.org/ebooks/32451', 'en', 6346), +(16985, 'The Middle of the Road: A Novel', 'Gibbs, Philip', '2019-07-21', 728, 'https://www.gutenberg.org/ebooks/59960', 'en', 321), +(16986, 'Kuvaelmia itä-suomalaisten vanhoista tavoista 4: Talvitoimet', 'Häyhä, Johannes', '2017-12-03', 10, 'https://www.gutenberg.org/ebooks/56114', 'fi', 7842), +(16987, 'The Autobiography of St. Ignatius', 'Ignatius, of Loyola, Saint', '2008-02-06', 180, 'https://www.gutenberg.org/ebooks/24534', 'en', 7843), +(16988, 'The History of Rome, Book I\r\nThe Period Anterior to the Abolition of the Monarchy', 'Mommsen, Theodor', '2006-06-01', 145, 'https://www.gutenberg.org/ebooks/10701', 'en', 6793), +(16989, 'Blackwood\'s Edinburgh Magazine, Volume 63, No. 389, March 1848', 'Various', '2012-06-26', 18, 'https://www.gutenberg.org/ebooks/40071', 'en', 274), +(16990, 'L\'Arrabiata and Other Tales', 'Heyse, Paul', '2010-08-30', 30, 'https://www.gutenberg.org/ebooks/33583', 'en', 61), +(16991, 'The Cruise of the \"Cachalot\" Round the World After Sperm Whales', 'Bullen, Frank Thomas', '1998-06-01', 42, 'https://www.gutenberg.org/ebooks/1356', 'en', 7844), +(16992, 'Cours familier de Littérature - Volume 12', 'Lamartine, Alphonse de', '2012-06-02', 9, 'https://www.gutenberg.org/ebooks/39885', 'fr', 920), +(16993, 'Gedichten', 'Bastiaanse, Frans', '2005-03-07', 9, 'https://www.gutenberg.org/ebooks/15273', 'nl', 8), +(16994, 'Story Hour Readings: Seventh Year', 'Hartwell, E. C. (Ernest Clark)', '2007-04-12', 14, 'https://www.gutenberg.org/ebooks/21046', 'en', 1019), +(16995, 'Off-Hand Sketches, a Little Dashed with Humor', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/4624', 'en', 61), +(16996, 'History of Frederick the Second, Called Frederick the Great.', 'Abbott, John S. C. (John Stevens Cabot)', '2018-04-06', 22, 'https://www.gutenberg.org/ebooks/56928', 'en', 6848), +(16997, 'Roster and Statistical Record of Company D, of the Eleventh Regiment Maine Infantry Volunteers\r\nWith a Sketch of Its Services in the War of the Rebellion', 'Brady, Robert', '2014-04-26', 5, 'https://www.gutenberg.org/ebooks/45503', 'en', 1489), +(16998, 'San Pantaleone', 'D\'Annunzio, Gabriele', '2011-08-18', 18, 'https://www.gutenberg.org/ebooks/37123', 'it', 474), +(16999, 'The Petticoat Commando: Boer Women in Secret Service', 'Brandt, Johanna', '2006-12-26', 30, 'https://www.gutenberg.org/ebooks/20194', 'en', 7845), +(17000, 'Motor Matt\'s Mariner; or, Filling the Bill for Bunce', 'Matthews, Stanley R.', '2016-11-07', 8, 'https://www.gutenberg.org/ebooks/53466', 'en', 323), +(17001, 'Argentine Ornithology, Volume 2 (of 2)\r\nA descriptive catalogue of the birds of the Argentine Republic.', 'Sclater, Philip Lutley', '2012-02-25', 41, 'https://www.gutenberg.org/ebooks/38957', 'en', 7846), +(17002, 'Dramatische werken', 'Ibsen, Henrik', '2006-01-23', 43, 'https://www.gutenberg.org/ebooks/17524', 'nl', 7847), +(17003, 'The Raid from Beausejour; and How the Carter Boys Lifted the Mortgage\r\nTwo Stories of Acadie', 'Roberts, Charles G. D., Sir', '2006-02-01', 21, 'https://www.gutenberg.org/ebooks/9907', 'en', 7848), +(17004, 'A Little Princess', 'Burnett, Frances Hodgson', '2007-12-01', 14, 'https://www.gutenberg.org/ebooks/23711', 'en', 264), +(17005, 'The Note-Books of Samuel Butler', 'Butler, Samuel', '2004-07-01', 69, 'https://www.gutenberg.org/ebooks/6173', 'en', 7849), +(17006, 'Handbook of Summer Athletic Sports\r\nComprising: Walking, Running, Jumping, Hare and Hounds, Bicycling, Archery, Etc.', NULL, '2014-10-31', 20, 'https://www.gutenberg.org/ebooks/47254', 'en', 2524), +(17007, 'The Castaways of Pete\'s Patch\r\n(A Sequel to The Adopting of Rosa Marie)', 'Rankin, Carroll Watson', '2014-07-24', 21, 'https://www.gutenberg.org/ebooks/46386', 'en', 676), +(17008, 'Walks and Words of Jesus: A Paragraph Harmony of the Four Evangelists', NULL, '2011-03-24', 15, 'https://www.gutenberg.org/ebooks/35674', 'en', 2359), +(17009, 'Swenson, Dispatcher', 'Miller, R. De Witt (Richard De Witt)', '2016-02-29', 14, 'https://www.gutenberg.org/ebooks/51331', 'en', 7850), +(17010, 'Religion & Sex: Studies in the Pathology of Religious Development', 'Cohen, Chapman', '2009-10-21', 17, 'https://www.gutenberg.org/ebooks/30306', 'en', 7851), +(17011, 'Narrative and Lyric Poems (first series) for use in the Lower School', NULL, '2004-08-15', 14, 'https://www.gutenberg.org/ebooks/13184', 'en', 350), +(17012, 'Pictographs of the North American Indians. A preliminary paper\r\nFourth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1882-83, Government Printing Office, Washington, 1886, pages 3-256', 'Mallery, Garrick', '2017-05-02', 19, 'https://www.gutenberg.org/ebooks/54643', 'en', 7852), +(17013, 'Taistelu Roomasta I\nHistoriallinen romaani', 'Dahn, Felix', '2008-08-11', 31, 'https://www.gutenberg.org/ebooks/26263', 'fi', 7853), +(17014, 'Grundzüge der Perspektive nebst Anwendungen', 'Doehlemann, Karl', '2017-10-22', 11, 'https://www.gutenberg.org/ebooks/55791', 'de', 7854), +(17015, 'Phases of Faith; Or, Passages from the History of My Creed', 'Newman, Francis William', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12056', 'en', 7855), +(17016, 'The Philippine Islands', 'Lala, Ramon Reyes', '2013-05-17', 25, 'https://www.gutenberg.org/ebooks/42726', 'en', 4048), +(17017, 'The Elevator', 'Howells, William Dean', '2002-09-01', 20, 'https://www.gutenberg.org/ebooks/3401', 'en', 868), +(17018, 'Nachtstücke', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2004-08-01', 113, 'https://www.gutenberg.org/ebooks/6341', 'de', 580), +(17019, 'Fugitive Slaves (1619-1865)', 'McDougall, Marion Gleason', '2010-12-07', 14, 'https://www.gutenberg.org/ebooks/34594', 'en', 7856), +(17020, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 693\nApril 7, 1877', 'Various', '2014-10-06', 9, 'https://www.gutenberg.org/ebooks/47066', 'en', 18), +(17021, 'Le Négrier, Vol. III\r\nAventures de mer', 'Corbière, Edouard', '2006-02-08', 17, 'https://www.gutenberg.org/ebooks/17716', 'fr', 324), +(17022, 'The Bible in its Making: The most Wonderful Book in the World', 'Hope, Noel', '2010-01-09', 20, 'https://www.gutenberg.org/ebooks/30908', 'en', 7857), +(17023, 'Adventures in Toyland; What the Marionette Told Molly', 'Hall, Edith King', '2007-11-17', 24, 'https://www.gutenberg.org/ebooks/23523', 'en', 2203), +(17024, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 12 (1820)', 'Various', '2015-04-27', 7, 'https://www.gutenberg.org/ebooks/48812', 'en', 2757), +(17025, 'All Cats Are Gray', 'Norton, Andre', '2009-06-01', 234, 'https://www.gutenberg.org/ebooks/29019', 'en', 26), +(17026, 'A Chautauqua Idyl', 'Hill, Grace Livingston', '2016-02-01', 44, 'https://www.gutenberg.org/ebooks/51103', 'en', 7858), +(17027, 'The Opium Habit', 'Day, Horace B.', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7293', 'en', 7859), +(17028, 'L\'Illustration, No. 3254, 8 Juillet 1905', 'Various', '2011-03-01', 1, 'https://www.gutenberg.org/ebooks/35446', 'fr', 150), +(17029, 'El Viaje a Nicaragua é Historia de mis libros\nObras Completas, Vol. XVII', 'Darío, Rubén', '2017-04-01', 22, 'https://www.gutenberg.org/ebooks/54471', 'es', 7860), +(17030, 'The Gate of Appreciation: Studies in the Relation of Art to Life', 'Noyes, Carleton Eldredge', '2008-11-07', 11, 'https://www.gutenberg.org/ebooks/27183', 'en', 7861), +(17031, 'Elementary Theosophy', 'Rogers, L. W. (Louis William)', '2009-09-29', 22, 'https://www.gutenberg.org/ebooks/30134', 'en', 746), +(17032, 'In a Steamer Chair, and Other Stories', 'Barr, Robert', '2005-11-01', 41, 'https://www.gutenberg.org/ebooks/9309', 'en', 998), +(17033, 'Lectures on Bible Revision', 'Newth, Samuel', '2013-04-12', 11, 'https://www.gutenberg.org/ebooks/42514', 'en', 7862), +(17034, 'L\'étincelle', 'Delly, pseud.', '2009-08-28', 16, 'https://www.gutenberg.org/ebooks/29825', 'fr', 687), +(17035, 'Jezebel\'s Daughter', 'Collins, Wilkie', '2003-01-01', 35, 'https://www.gutenberg.org/ebooks/3633', 'en', 7863), +(17036, 'Mother West Wind \"When\" Stories', 'Burgess, Thornton W. (Thornton Waldo)', '2014-09-28', 38, 'https://www.gutenberg.org/ebooks/46988', 'en', 625), +(17037, 'Bolshevism: A Curse & Danger to the Workers', 'Lee, H. W. (Henry William)', '2008-07-14', 13, 'https://www.gutenberg.org/ebooks/26051', 'en', 260), +(17038, 'Father Payne', 'Benson, Arthur Christopher', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12264', 'en', 279), +(17039, 'The Poems of Madison Cawein, Volume 4 (of 5)\r\nPoems of mystery and of myth and romance', 'Cawein, Madison Julius', '2018-01-07', 6, 'https://www.gutenberg.org/ebooks/56326', 'en', 178), +(17040, 'Ye of Little Faith', 'Phillips, Rog', '2010-06-02', 20, 'https://www.gutenberg.org/ebooks/32663', 'en', 26), +(17041, 'Constantinople: The Story of the Old Capital of the Empire', 'Hutton, William Holden', '2012-11-17', 38, 'https://www.gutenberg.org/ebooks/41391', 'en', 7864), +(17042, 'The Hittites: The story of a Forgotten Empire', 'Sayce, A. H. (Archibald Henry)', '2012-07-15', 50, 'https://www.gutenberg.org/ebooks/40243', 'en', 7865), +(17043, 'Peeps at Postage Stamps', 'Johnson, Stanley C. (Stanley Currie)', '2011-12-21', 21, 'https://www.gutenberg.org/ebooks/38359', 'en', 1267), +(17044, 'The Iron Heel', 'London, Jack', '2006-05-03', 453, 'https://www.gutenberg.org/ebooks/1164', 'en', 7866), +(17045, 'James Cutbush, an American Chemist, 1788-1823', 'Smith, Edgar Fahs', '2008-02-27', 12, 'https://www.gutenberg.org/ebooks/24706', 'en', 7867), +(17046, 'Beacon Lights of History, Volume 07: Great Women', 'Lord, John', '2003-12-01', 39, 'https://www.gutenberg.org/ebooks/10533', 'en', 7868), +(17047, 'Sandra Belloni — Volume 4', 'Meredith, George', '2003-09-01', 13, 'https://www.gutenberg.org/ebooks/4416', 'en', 137), +(17048, 'Buffon\'s Natural History. Volume 06 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-23', 18, 'https://www.gutenberg.org/ebooks/45731', 'en', 871), +(17049, 'The Negro Problem', NULL, '2005-02-14', 99, 'https://www.gutenberg.org/ebooks/15041', 'en', 180), +(17050, 'The open sea', 'Masters, Edgar Lee', '2016-08-12', 13, 'https://www.gutenberg.org/ebooks/52786', 'en', 178), +(17051, 'The American Cyclops, the Hero of New Orleans, and Spoiler of Silver Spoons', 'McLaughlin, James Fairfax', '2007-05-02', 12, 'https://www.gutenberg.org/ebooks/21274', 'en', 7869), +(17052, 'Snowbound for Christmas', 'MacKenzie, Edna I.', '2016-12-03', 17, 'https://www.gutenberg.org/ebooks/53654', 'en', 3459), +(17053, 'Love Romances of the Aristocracy', 'Hall, Thornton', '2004-11-28', 32, 'https://www.gutenberg.org/ebooks/14193', 'en', 7870), +(17054, 'Hermann and Dorothea', 'Goethe, Johann Wolfgang von', '1999-11-01', 62, 'https://www.gutenberg.org/ebooks/1958', 'en', 1518), +(17055, 'The Journal, with Other Writings of John Woolman', 'Woolman, John', '2011-09-04', 60, 'https://www.gutenberg.org/ebooks/37311', 'en', 7871), +(17056, 'The Red Cross Girls with the Russian Army', 'Vandercook, Margaret', '2007-07-18', 13, 'https://www.gutenberg.org/ebooks/22095', 'en', 7872), +(17057, 'Die Geschichte der Dampfmaschine bis James Watt', 'Geitel, Max', '2016-03-26', 10, 'https://www.gutenberg.org/ebooks/51567', 'de', 7873), +(17058, 'The Diamond Pin', 'Wells, Carolyn', '2011-01-21', 140, 'https://www.gutenberg.org/ebooks/35022', 'en', 128), +(17059, 'Othello', 'Hauff, Wilhelm', '2004-10-01', 28, 'https://www.gutenberg.org/ebooks/6725', 'de', 5233), +(17060, 'Memorias Posthumas de Braz Cubas', 'Machado de Assis', '2017-06-02', 149, 'https://www.gutenberg.org/ebooks/54829', 'pt', 987), +(17061, 'Along Alaska\'s Great River\r\nA Popular Account of the Travels of an Alaska Exploring Expedition along the Great Yukon River, from Its Source to Its Mouth, in the British North-West Territory, and in the Territory of Alaska', 'Schwatka, Frederick', '2014-11-20', 17, 'https://www.gutenberg.org/ebooks/47402', 'en', 7874), +(17062, 'Marcof le Malouin', 'Capendu, Ernest', '2005-12-22', 14, 'https://www.gutenberg.org/ebooks/17372', 'fr', 324), +(17063, 'Untechnological Employment', 'Clinton, Ed M.', '2007-10-22', 30, 'https://www.gutenberg.org/ebooks/23147', 'en', 258), +(17064, 'Summer', 'Sharp, Dallas Lore', '2013-02-23', 24, 'https://www.gutenberg.org/ebooks/42170', 'en', 1216), +(17065, 'The Little Angel, and Other Stories', 'Andreyev, Leonid', '2015-08-04', 42, 'https://www.gutenberg.org/ebooks/49598', 'en', 7875), +(17066, 'Smeaton and Lighthouses\nA Popular Biography, with an Historical Introduction and Sequel', 'Anonymous', '2010-03-03', 21, 'https://www.gutenberg.org/ebooks/31482', 'en', 7876), +(17067, 'New Thought Pastels', 'Wilcox, Ella Wheeler', '2002-06-01', 14, 'https://www.gutenberg.org/ebooks/3257', 'en', 178), +(17068, 'L\'amant rendu cordelier a l\'observance d\'amour', 'Martial, d\'Auvergne', '2008-08-26', 12, 'https://www.gutenberg.org/ebooks/26435', 'fr', 8), +(17069, 'Old and New Masters', 'Lynd, Robert', '2004-06-01', 36, 'https://www.gutenberg.org/ebooks/12600', 'en', 2145), +(17070, 'Artistenleven', 'Broedelet, Joh. W.', '2017-01-22', 11, 'https://www.gutenberg.org/ebooks/54015', 'nl', 297), +(17071, 'Finn The Wolfhound', 'Dawson, A. J. (Alec John)', '2009-11-26', 33, 'https://www.gutenberg.org/ebooks/30550', 'en', 2464), +(17072, 'Gala-Days', 'Hamilton, Gail', '2000-11-01', 18, 'https://www.gutenberg.org/ebooks/2385', 'en', 7877), +(17073, 'Apró regények és esetek', 'Szemere, György', '2012-08-30', 18, 'https://www.gutenberg.org/ebooks/40627', 'hu', 1532), +(17074, 'King Henry VI, First Part', 'Shakespeare, William', '1998-10-01', 83, 'https://www.gutenberg.org/ebooks/1500', 'en', 7878), +(17075, 'The History of Tasmania, Volume I', 'West, John', '2008-01-18', 25, 'https://www.gutenberg.org/ebooks/24362', 'en', 5787), +(17076, 'Which Switch is the Switch, Miss, for Ipswich?\r\nFrom Rosy Rapture', NULL, '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10157', 'en', 7243), +(17077, 'The Luck of the Vails: A Novel', 'Benson, E. F. (Edward Frederic)', '2018-08-14', 19, 'https://www.gutenberg.org/ebooks/57690', 'en', 1902), +(17078, 'Survey of the High Roads of England and Wales. Part the First.\r\nComprising the counties of Kent, Surrey, Sussex, Hants, Wilts, Dorset, Somerset, Devon, and Cornwall. etc.', 'Mogg, Edward S.', '2018-03-15', 8, 'https://www.gutenberg.org/ebooks/56742', 'en', 7879), +(17079, 'M. or N. \"Similia similibus curantur.\"', 'Whyte-Melville, G. J. (George John)', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11085', 'en', 128), +(17080, 'A Mixture of Genius', 'Castle, Arnold', '2010-05-02', 37, 'https://www.gutenberg.org/ebooks/32207', 'en', 26), +(17081, 'Ancient Streets and Homesteads of England', 'Rimmer, Alfred', '2016-10-07', 18, 'https://www.gutenberg.org/ebooks/53230', 'en', 5409), +(17082, 'The Insect', 'Michelet, Jules', '2013-11-26', 30, 'https://www.gutenberg.org/ebooks/44287', 'en', 2667), +(17083, 'Etidorhpa; or, The End of Earth.\r\nThe Strange History of a Mysterious Being and the Account of a Remarkable Journey', 'Lloyd, John Uri', '2011-10-16', 141, 'https://www.gutenberg.org/ebooks/37775', 'en', 580), +(17084, 'Songs Before Sunrise', 'Swinburne, Algernon Charles', '2003-05-01', 27, 'https://www.gutenberg.org/ebooks/4072', 'en', 532), +(17085, 'Koning Oedipus, van Sophocles: tragedie', 'Sophocles', '2014-04-09', 25, 'https://www.gutenberg.org/ebooks/45355', 'nl', 7880), +(17086, 'A General History and Collection of Voyages and Travels, Volume 17\nArranged in Systematic Order: Forming a Complete History\nof the Origin and Progress of Navigation, Discovery, and\nCommerce, by Sea and Land, from the Earliest Ages to the\nPresent Time', 'Kerr, Robert', '2005-03-21', 9, 'https://www.gutenberg.org/ebooks/15425', 'en', 885), +(17087, 'The Secret of the Creation', 'Pollyen, Howard D.', '2007-05-25', 25, 'https://www.gutenberg.org/ebooks/21610', 'en', 8), +(17088, 'Disturbing Sun', 'Richardson, Robert S. (Robert Shirley)', '2008-01-03', 39, 'https://www.gutenberg.org/ebooks/24150', 'en', 26), +(17089, 'The Story of a Confederate Boy in the Civil War', 'Johnston, David E. (David Emmons)', '2014-02-13', 13, 'https://www.gutenberg.org/ebooks/44889', 'en', 83), +(17090, 'Precaution: A Novel', 'Cooper, James Fenimore', '2003-12-01', 42, 'https://www.gutenberg.org/ebooks/10365', 'en', 1902), +(17091, 'Tower\'s Little Primer, for the youngest class in primary school', 'Tower, Anna E.', '2012-08-05', 12, 'https://www.gutenberg.org/ebooks/40415', 'en', 294), +(17092, 'The Schoolmistress, and Other Stories', 'Chekhov, Anton Pavlovich', '2006-02-22', 270, 'https://www.gutenberg.org/ebooks/1732', 'en', 934), +(17093, 'Laŭroj\r\nKolekto de la originalaj verkoj premiitaj en la unua literatura konkurso de \"La Revuo\"', 'Various', '2010-04-18', 5, 'https://www.gutenberg.org/ebooks/32035', 'eo', 7881), +(17094, 'Breaking into the movies', 'Loos, Anita', '2018-02-15', 14, 'https://www.gutenberg.org/ebooks/56570', 'en', 2396), +(17095, 'The Yellow Horde', 'Evarts, Hal G. (Hal George)', '2008-04-17', 13, 'https://www.gutenberg.org/ebooks/25082', 'en', 3276), +(17096, 'The Crisis — Volume 05', 'Churchill, Winston', '2004-10-19', 25, 'https://www.gutenberg.org/ebooks/5392', 'en', 403), +(17097, 'The Fairies and the Christmas Child', 'Gask, Lilian', '2011-09-27', 29, 'https://www.gutenberg.org/ebooks/37547', 'en', 1007), +(17098, 'A Legend of Goat Island', 'Porter, Peter A. (Peter Augustus)', '2016-09-07', 4, 'https://www.gutenberg.org/ebooks/53002', 'en', 7882), +(17099, 'Portraits of the Nineties', 'Raymond, E. T.', '2019-05-18', 31, 'https://www.gutenberg.org/ebooks/59538', 'en', 2816), +(17100, 'Cyclopedia of Telephony and Telegraphy, Vol. 1\r\nA General Reference Work on Telephony, etc. etc.', 'American School of Correspondence', '2005-04-14', 34, 'https://www.gutenberg.org/ebooks/15617', 'en', 6843), +(17101, 'The West Indies and the Spanish Main', 'Rodway, James', '2010-06-14', 13, 'https://www.gutenberg.org/ebooks/32809', 'en', 7883), +(17102, 'Novelle lombarde', 'Avancini, Avancinio', '2007-05-12', 18, 'https://www.gutenberg.org/ebooks/21422', 'it', 179), +(17103, 'Women in Love', 'Lawrence, D. H. (David Herbert)', '2003-07-01', 341, 'https://www.gutenberg.org/ebooks/4240', 'en', 7171), +(17104, 'Astronomical Myths: Based on Flammarions\'s \"History of the Heavens\"', 'Flammarion, Camille', '2011-06-22', 42, 'https://www.gutenberg.org/ebooks/36495', 'en', 7884), +(17105, 'The Siberian Overland Route from Peking to Petersburg,\nThrough the Deserts and Steppes of Mongolia, Tartary, &c.', 'Michie, Alexander', '2014-03-18', 34, 'https://www.gutenberg.org/ebooks/45167', 'en', 2773), +(17106, 'Socialism and the Social Movement in the 19th Century', 'Sombart, Werner', '2011-02-08', 17, 'https://www.gutenberg.org/ebooks/35210', 'en', 254), +(17107, 'The Wharf by the Docks: A Novel', 'Warden, Florence', '2005-06-19', 34, 'https://www.gutenberg.org/ebooks/16092', 'en', 7885), +(17108, 'Hawaiian Sea Hunt Mystery: A Biff Brewster Mystery Adventure', 'Adams, Andy', '2016-04-14', 20, 'https://www.gutenberg.org/ebooks/51755', 'en', 167), +(17109, 'Memoirs of the Court of Louis XIV. and of the Regency — Complete', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2004-08-25', 35, 'https://www.gutenberg.org/ebooks/3859', 'en', 1870), +(17110, 'The History of the Twenty-ninth Regiment of Massachusetts Volunteer Infantry\nin the Late War of the Rebellion', 'Osborne, William H.', '2015-12-14', 10, 'https://www.gutenberg.org/ebooks/50687', 'en', 7886), +(17111, 'Le roman de la rose - Tome II', 'Guillaume, de Lorris, active 1230', '2005-11-20', 54, 'https://www.gutenberg.org/ebooks/17140', 'fr', 1338), +(17112, 'Jack at Sea: All Work and No Play Made Him a Dull Boy', 'Fenn, George Manville', '2007-11-06', 26, 'https://www.gutenberg.org/ebooks/23375', 'en', 323), +(17113, 'The Grey Lady', 'Merriman, Henry Seton', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6517', 'en', 61), +(17114, 'My Lady Nicotine: A Study in Smoke', 'Barrie, J. M. (James Matthew)', '2006-07-29', 48, 'https://www.gutenberg.org/ebooks/18934', 'en', 7887), +(17115, 'Birth of a Reformation; Or, The Life and Labors of Daniel S. Warner', 'Byers, A. L. (Andrew L.)', '2014-12-11', 14, 'https://www.gutenberg.org/ebooks/47630', 'en', 7888), +(17116, 'Catéchisme libertin\r\nà l\'usage des filles de joie et des jeunes demoiselles qui se destinent à embrasser cette profession', 'Théroigne de Méricourt', '2008-09-13', 41, 'https://www.gutenberg.org/ebooks/26607', 'fr', 7889), +(17117, 'Kalevalan avain', 'Ervast, Pekka', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12432', 'fi', 2572), +(17118, 'Encyclopaedia Britannica, 11th Edition, \"Logarithm\" to \"Lord Advocate\"\r\nVolume 16, Slice 8', 'Various', '2013-03-15', 28, 'https://www.gutenberg.org/ebooks/42342', 'en', 1081), +(17119, 'Römische Geschichte — Band 8', 'Mommsen, Theodor', '2002-02-01', 31, 'https://www.gutenberg.org/ebooks/3065', 'de', 6793), +(17120, 'Der Moses des Michelangelo', 'Freud, Sigmund', '2009-12-26', 39, 'https://www.gutenberg.org/ebooks/30762', 'de', 7890), +(17121, 'Hyld og Humle: Fortællinger', 'Breum, Sophie', '2013-07-24', 16, 'https://www.gutenberg.org/ebooks/43290', 'da', 7891), +(17122, 'Dutch Bulbs and Gardens', 'Lyall, Sophie', '2015-04-11', 17, 'https://www.gutenberg.org/ebooks/48678', 'en', 7892), +(17123, 'Jean-nu-pieds, Vol. 2\nchronique de 1832', 'Delpit, Albert', '2006-04-03', 18, 'https://www.gutenberg.org/ebooks/18108', 'fr', 5511), +(17124, 'De afstamming van den mensch\r\nNaar voordrachten in populair-wetenschappelijken vorm bewerkt', 'Boeke, Jan', '2017-02-23', 5, 'https://www.gutenberg.org/ebooks/54227', 'nl', 1109), +(17125, 'Index of the Project Gutenberg Works of George T. Ferris', 'Ferris, George T. (George Titus)', '2019-07-12', 30, 'https://www.gutenberg.org/ebooks/60012', 'en', 198), +(17126, 'L\'Illustration, No. 3675, 2 Août 1913', 'Various', '2012-03-24', 6, 'https://www.gutenberg.org/ebooks/39240', 'fr', 150), +(17127, 'L\'Illustration, No. 0026, 26 Août 1843', 'Various', '2011-12-23', 9, 'https://www.gutenberg.org/ebooks/38392', 'fr', 150), +(17128, 'From Canal Boy to President; Or, the Boyhood and Manhood of James A. Garfield', 'Alger, Horatio, Jr.', '2005-02-07', 41, 'https://www.gutenberg.org/ebooks/14964', 'en', 1009), +(17129, 'The Modes of Ancient Greek Music', 'Monro, D. B. (David Binning)', '2012-07-20', 35, 'https://www.gutenberg.org/ebooks/40288', 'en', 7893), +(17130, 'Lectures on the true, the beautiful and the good', 'Cousin, Victor', '2011-05-23', 48, 'https://www.gutenberg.org/ebooks/36208', 'en', 7894), +(17131, 'Told After Supper', 'Jerome, Jerome K. (Jerome Klapka)', '1999-12-01', 46, 'https://www.gutenberg.org/ebooks/1993', 'en', 179), +(17132, 'De l\'origine des espèces', 'Darwin, Charles', '2004-11-26', 59, 'https://www.gutenberg.org/ebooks/14158', 'fr', 4602), +(17133, 'Afrodite: Kertomus vanhan Hellaan ajoilta', 'Eckstein, Ernst', '2018-11-12', 9, 'https://www.gutenberg.org/ebooks/58277', 'fi', 6685), +(17134, 'Nineteenth Century Questions', 'Clarke, James Freeman', '2014-01-08', 32, 'https://www.gutenberg.org/ebooks/44628', 'en', 2156), +(17135, 'Vlci proti Mustangům', 'Omelka, František', '2009-02-03', 15, 'https://www.gutenberg.org/ebooks/27974', 'cs', 7895), +(17136, 'Heilige Zeiten\nWeihnachtsblätter', 'Speidel, Ludwig', '2009-02-17', 26, 'https://www.gutenberg.org/ebooks/28100', 'de', 949), +(17137, 'Wanderings in South America', 'Waterton, Charles', '2010-03-28', 11, 'https://www.gutenberg.org/ebooks/31811', 'en', 2031), +(17138, 'Dreams, Waking Thoughts, and Incidents', 'Beckford, William', '2005-01-01', 35, 'https://www.gutenberg.org/ebooks/7258', 'en', 7896), +(17139, '蕉葉帕', 'Shan, Ben', '2008-11-04', 21, 'https://www.gutenberg.org/ebooks/27148', 'zh', 5698), +(17140, 'Veronica Cybo', 'Guerrazzi, Francesco Domenico', '2015-01-06', 9, 'https://www.gutenberg.org/ebooks/47891', 'it', 860), +(17141, 'Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910\r\nAddress at the 42d Annual Convention, Chicago, Illinois, June 21st, 1910, Paper No. 1178', 'Bensel, J. A. (John Anderson)', '2006-07-08', 10, 'https://www.gutenberg.org/ebooks/18795', 'en', 659), +(17142, 'Phantasmagoria and Other Poems', 'Carroll, Lewis', '1996-09-01', 222, 'https://www.gutenberg.org/ebooks/651', 'en', 532), +(17143, 'The Moons of Mars', 'Evans, Dean', '2016-01-02', 42, 'https://www.gutenberg.org/ebooks/50826', 'en', 179), +(17144, 'Biographia Epistolaris, Volume 1', 'Coleridge, Samuel Taylor', '2005-06-01', 20, 'https://www.gutenberg.org/ebooks/8210', 'en', 7897), +(17145, 'Cassell\'s Book of In-door Amusements, Card Games, and Fireside Fun', 'Various', '2015-06-04', 37, 'https://www.gutenberg.org/ebooks/49137', 'en', 7523), +(17146, 'The Journal of Prison Discipline and Philanthropy 1919 (New Series, No. 58)', 'Pennsylvania Prison Society', '2017-09-17', 5, 'https://www.gutenberg.org/ebooks/55568', 'en', 2509), +(17147, 'A Hero and Some Other Folks', 'Quayle, William A. (William Alfred)', '2006-10-27', 18, 'https://www.gutenberg.org/ebooks/19647', 'en', 20), +(17148, 'Blackwood\'s Edinburgh Magazine, Volume 69, No. 427, May, 1851', 'Various', '2014-09-23', 14, 'https://www.gutenberg.org/ebooks/46943', 'en', 274), +(17149, 'Journal d\'une femme de cinquante ans (1/2)', 'La Tour du Pin Gouvernet, Henriette Lucie Dillon, marquise de', '2009-03-15', 13, 'https://www.gutenberg.org/ebooks/28332', 'fr', 7898), +(17150, 'Illustrations of Shakspeare, and of Ancient Manners:\r\nwith Dissertations on the Clowns and Fools of Shakspeare; on a Collection of Popular Tales Entitled Gesta Romanorum; and on the English Morris dance.', 'Douce, Francis', '2015-10-16', 26, 'https://www.gutenberg.org/ebooks/50228', 'en', 7899), +(17151, 'Whistler Stories', NULL, '2004-11-08', 6, 'https://www.gutenberg.org/ebooks/13973', 'en', 3772), +(17152, 'A Book for All Readers\r\nAn Aid to the Collection, Use, and Preservation of Books and the Formation of Public and Private Libraries', 'Spofford, Ainsworth Rand', '2007-09-15', 38, 'https://www.gutenberg.org/ebooks/22608', 'en', 7900), +(17153, 'The Hungry Stones, and Other Stories', 'Tagore, Rabindranath', '2001-02-01', 230, 'https://www.gutenberg.org/ebooks/2518', 'en', 7901), +(17154, 'The American Missionary — Volume 34, No. 04, April, 1880', 'Various', '2017-05-09', 6, 'https://www.gutenberg.org/ebooks/54688', 'en', 562), +(17155, 'The Red Badge of Courage: An Episode of the American Civil War', 'Crane, Stephen', '1996-03-01', 115, 'https://www.gutenberg.org/ebooks/463', 'en', 7902), +(17156, 'The Pothunters', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 127, 'https://www.gutenberg.org/ebooks/6984', 'en', 432), +(17157, 'Tenting To-night\r\nA Chronicle of Sport and Adventure in Glacier Park and the Cascade Mountains', 'Rinehart, Mary Roberts', '2006-10-05', 58, 'https://www.gutenberg.org/ebooks/19475', 'en', 7903), +(17158, 'The Cheerful Cricket and Others', 'Marks, Jeannette Augustus', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7856', 'en', 195), +(17159, 'The Bible, King James version, Book 22: Song of Solomon', 'Anonymous', '2005-04-01', 15, 'https://www.gutenberg.org/ebooks/8022', 'en', 2945), +(17160, 'Princess Napraxine, Volume 1 (of 3)', 'Ouida', '2015-06-28', 14, 'https://www.gutenberg.org/ebooks/49305', 'en', 61), +(17161, 'The Siege of Norwich Castle: A story of the last struggle against the Conqueror', 'Blake, M. M. (Matilda Maria)', '2012-10-24', 26, 'https://www.gutenberg.org/ebooks/41168', 'en', 7904), +(17162, 'The A. E. F.: With General Pershing and the American Forces', 'Broun, Heywood', '2012-03-07', 27, 'https://www.gutenberg.org/ebooks/39072', 'en', 449), +(17163, 'From Chaucer to Tennyson\r\nWith Twenty-Nine Portraits and Selections from Thirty Authors', 'Beers, Henry A. (Henry Augustin)', '2004-03-01', 26, 'https://www.gutenberg.org/ebooks/11618', 'en', 1694), +(17164, 'L\'Illustration, No. 3277, 16 Décembre 1905', 'Various', '2011-07-21', 6, 'https://www.gutenberg.org/ebooks/36806', 'fr', 150), +(17165, 'Prosastücke', 'Walser, Robert', '2010-08-27', 26, 'https://www.gutenberg.org/ebooks/33548', 'de', 7092), +(17166, 'Hertfordshire', 'Lydekker, Richard', '2019-02-13', 5, 'https://www.gutenberg.org/ebooks/58879', 'en', 7905), +(17167, 'Grandmother Dear: A Book for Boys and Girls', 'Molesworth, Mrs.', '2007-04-02', 21, 'https://www.gutenberg.org/ebooks/20963', 'en', 7906), +(17168, 'The Wheel of Fortune', 'Gandhi, Mahatma', '2013-01-31', 66, 'https://www.gutenberg.org/ebooks/41954', 'en', 7907), +(17169, 'Angels\' Shoes, and Other Stories', 'Pickthall, Marjorie L. C. (Marjorie Lowry Christie)', '2019-04-03', 14, 'https://www.gutenberg.org/ebooks/59197', 'en', 332), +(17170, 'Kivisydän: Seikkailuja kaukaisessa Lännessä', 'Aimard, Gustave', '2018-09-01', 6, 'https://www.gutenberg.org/ebooks/57831', 'fi', 1850), +(17171, 'Travels in the Interior of Brazil\r\nPrincipally through the northern provinces, and the gold and diamond districts, during the years 1836-1841', 'Gardner, George', '2018-10-08', 4, 'https://www.gutenberg.org/ebooks/58045', 'en', 7908), +(17172, 'The Works of John Knox, Volume 2 (of 6)', 'Knox, John', '2012-09-28', 21, 'https://www.gutenberg.org/ebooks/40886', 'en', 7909), +(17173, 'The History of Yiddish Literature in the Nineteenth Century', 'Wiener, Leo', '2014-08-29', 12, 'https://www.gutenberg.org/ebooks/46729', 'en', 7910), +(17174, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 1', 'Goldsmith, Lewis', '2004-12-04', 20, 'https://www.gutenberg.org/ebooks/3892', 'en', 840), +(17175, 'Modern Spanish Lyrics', NULL, '2005-06-14', 69, 'https://www.gutenberg.org/ebooks/16059', 'es', 7911), +(17176, 'Prefaces to Terence\'s Comedies and Plautus\'s Comedies (1694)', 'Echard, Lawrence', '2009-08-13', 15, 'https://www.gutenberg.org/ebooks/29684', 'en', 7912), +(17177, 'The Interesting Narrative of the Life of Olaudah Equiano,\nOr Gustavus Vassa, The African, Written By Himself', 'Equiano, Olaudah', '2009-05-01', 15, 'https://www.gutenberg.org/ebooks/28756', 'en', 7913), +(17178, 'Evolution and Ethics, and Other Essays', 'Huxley, Thomas Henry', '2001-11-01', 77, 'https://www.gutenberg.org/ebooks/2940', 'en', 4060), +(17179, 'An Outline of Sexual Morality', 'Ingram, Kenneth', '2010-11-14', 21, 'https://www.gutenberg.org/ebooks/34309', 'en', 5443), +(17180, 'Charlotte Brontë and Her Circle', 'Shorter, Clement King', '2006-08-08', 34, 'https://www.gutenberg.org/ebooks/19011', 'en', 53), +(17181, 'The Enormous Room', 'Cummings, E. E. (Edward Estlin)', '2005-07-01', 240, 'https://www.gutenberg.org/ebooks/8446', 'en', 2118), +(17182, 'Pinocchio: The Tale of a Puppet', 'Collodi, Carlo', '2005-10-13', 244, 'https://www.gutenberg.org/ebooks/16865', 'en', 4810), +(17183, 'The Pirate\nAndrew Lang Edition', 'Scott, Walter', '2013-03-23', 135, 'https://www.gutenberg.org/ebooks/42389', 'en', 4714), +(17184, 'Le Roi au Masque d\'Or', 'Schwob, Marcel', '2015-08-22', 33, 'https://www.gutenberg.org/ebooks/49761', 'fr', 298), +(17185, 'The Works of John Greenleaf Whittier, Volume VI. (Of VII)\r\nOld Portraits and Modern Sketches, Plus Personal Sketches and Tributes and Historical Papers', 'Whittier, John Greenleaf', '2005-12-01', 21, 'https://www.gutenberg.org/ebooks/9594', 'en', 7868), +(17186, 'Doctor Rabbit and Tom Wildcat', 'Hinkle, Thomas C. (Thomas Clark)', '2018-07-08', 8, 'https://www.gutenberg.org/ebooks/57469', 'en', 625), +(17187, 'Three Years in Western China\nA Narrative of Three Journeys in Ssu-ch\'uan, Kuei-chow, and Yün-nan', 'Hosie, Alexander, Sir', '2014-02-08', 26, 'https://www.gutenberg.org/ebooks/44842', 'en', 2773), +(17188, 'Gainsborough', 'Rothschild, Max', '2012-04-10', 21, 'https://www.gutenberg.org/ebooks/39416', 'en', 6787), +(17189, 'L\'Odyssée', 'Homer', '2016-08-29', 86, 'https://www.gutenberg.org/ebooks/52927', 'fr', 5897), +(17190, 'Bobby Blake on the School Nine; Or, The Champions of the Monatook Lake League', 'Warner, Frank A.', '2014-06-15', 12, 'https://www.gutenberg.org/ebooks/45990', 'en', 7914), +(17191, 'My Reminiscences of the Anglo-Boer War', 'Viljoen, Ben J. (Ben Johannis)', '2008-04-11', 20, 'https://www.gutenberg.org/ebooks/25049', 'en', 7915), +(17192, 'The Inside of the Cup — Volume 04', 'Churchill, Winston', '2004-10-17', 1, 'https://www.gutenberg.org/ebooks/5359', 'en', 7916), +(17193, 'The Child\'s Book of Nature\nThree parts in one', 'Hooker, Worthington', '2018-12-07', 240, 'https://www.gutenberg.org/ebooks/58421', 'en', 4329), +(17194, 'The Jolliest Term on Record: A Story of School Life', 'Brazil, Angela', '2010-10-20', 125, 'https://www.gutenberg.org/ebooks/33910', 'en', 621), +(17195, 'The Woman from Outside\r\n[On Swan River]', 'Footner, Hulbert', '2008-06-22', 22, 'https://www.gutenberg.org/ebooks/25875', 'en', 65), +(17196, 'The Art of the Story-Teller', 'Shedlock, Marie L.', '2004-06-01', 55, 'https://www.gutenberg.org/ebooks/5957', 'en', 7917), +(17197, 'Az élet komédiásai (2. rész)\r\nRegény', 'Jókai, Mór', '2018-03-19', 1, 'https://www.gutenberg.org/ebooks/56789', 'hu', 234), +(17198, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce — Complete (1584-1609)', 'Motley, John Lothrop', '2004-11-08', 28, 'https://www.gutenberg.org/ebooks/4885', 'en', 3372), +(17199, 'Der Kinderkreuzzug', 'Schwob, Marcel', '2012-05-05', 9, 'https://www.gutenberg.org/ebooks/39624', 'de', 7918), +(17200, 'The Phoenix of Sodom; or, the Vere Street Coterie\r\nBeing an Exhibition of the Gambols Practised by the Ancient Lechers of Sodom and Gomorrah, Embellished and Improved with the Modern Refinements in Sodomitical Practices, by the Members of the Vere Street Coterie, of Detestable Memory.', 'Holloway, Robert', '2019-01-04', 40, 'https://www.gutenberg.org/ebooks/58613', 'en', 7134), +(17201, 'From Pole to Pole: A Book for Young People', 'Hedin, Sven Anders', '2007-02-28', 46, 'https://www.gutenberg.org/ebooks/20709', 'en', 2832), +(17202, 'Punch, or the London Charivari, Volume 156, April 23, 1919', 'Various', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/11872', 'en', 134), +(17203, 'Under Blue Skies: Verses & Pictures', 'Brigham, Sarah Jeannette Lathbury', '2016-06-14', 7, 'https://www.gutenberg.org/ebooks/52329', 'en', 859), +(17204, 'Nightmare Planet', 'Leinster, Murray', '2013-06-19', 62, 'https://www.gutenberg.org/ebooks/42987', 'en', 26), +(17205, 'Section-Cutting\r\nA Practical Guide to the Preparation and Mounting of Sections for the Microscope, Special Prominence Being given to the Subject of Animal Sections', 'Marsh, Sylvester', '2017-11-10', 14, 'https://www.gutenberg.org/ebooks/55930', 'en', 2420), +(17206, 'A Bunch of Cherries: A Story of Cherry Court School', 'Meade, L. T.', '2009-04-12', 29, 'https://www.gutenberg.org/ebooks/28564', 'en', 62), +(17207, 'Franklin\'s Way to Wealth; or, \"Poor Richard Improved\"', 'Franklin, Benjamin', '2013-10-01', 251, 'https://www.gutenberg.org/ebooks/43855', 'en', 7919), +(17208, 'Charles O\'Malley, The Irish Dragoon, Volume 2', 'Lever, Charles James', '2007-02-02', 13, 'https://www.gutenberg.org/ebooks/8674', 'en', 7920), +(17209, 'Across the Plains to California in 1852: Journal of Mrs. Lodisa Frizzell', 'Frizell, Lodisa', '2010-02-28', 20, 'https://www.gutenberg.org/ebooks/31449', 'en', 1181), +(17210, 'Love of the Wild', 'McKishnie, Archie P.', '2015-07-30', 17, 'https://www.gutenberg.org/ebooks/49553', 'en', 1219), +(17211, 'The First Epistle of Paul the Apostle to Timothy', NULL, '2007-10-01', 4, 'https://www.gutenberg.org/ebooks/22862', 'en', 7921), +(17212, 'At War with Pontiac; Or, The Totem of the Bear: A Tale of Redcoat and Redskin', 'Munroe, Kirk', '2006-09-09', 14, 'https://www.gutenberg.org/ebooks/19223', 'en', 1203), +(17213, 'Blackwood\'s Edinburgh Magazine — Volume 56, No. 345, July, 1844', 'Various', '2004-10-12', 31, 'https://www.gutenberg.org/ebooks/13719', 'en', 711), +(17214, 'The Irish on the Somme\nBeing a Second Series of \'The Irish at the Front\'', 'MacDonagh, Michael', '2011-01-10', 31, 'https://www.gutenberg.org/ebooks/34907', 'en', 7922), +(17215, 'William Gibson Interviewed', 'Salza, Giuseppe', '1995-03-01', 106, 'https://www.gutenberg.org/ebooks/235', 'en', 7923), +(17216, 'The Hundredth Chance', 'Dell, Ethel M. (Ethel May)', '2013-06-30', 22, 'https://www.gutenberg.org/ebooks/43069', 'en', 7924), +(17217, 'James\'s Account of S. H. Long\'s Expedition, 1819-1820, part 4', 'James, Edwin', '2015-03-13', 16, 'https://www.gutenberg.org/ebooks/48481', 'en', 497), +(17218, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 07', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 4, 'https://www.gutenberg.org/ebooks/3866', 'en', 1247), +(17219, 'Practical Mechanics for Boys', 'Zerbe, James Slough', '2007-08-11', 87, 'https://www.gutenberg.org/ebooks/22298', 'en', 7925), +(17220, 'Against Odds: A Detective Story', 'Lynch, Lawrence L.', '2009-08-11', 36, 'https://www.gutenberg.org/ebooks/29670', 'en', 128), +(17221, 'Sagradas Escrituras Version Antigua', 'Stendal, Russell', '2004-09-01', 31, 'https://www.gutenberg.org/ebooks/6528', 'es', 1185), +(17222, 'Pictorial Composition and the Critical Judgment of Pictures', 'Poore, Henry Rankin', '2008-09-16', 157, 'https://www.gutenberg.org/ebooks/26638', 'en', 7926); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(17223, 'Peter Parley\'s Tales About America and Australia', 'Goodrich, Samuel G. (Samuel Griswold)', '2005-10-17', 30, 'https://www.gutenberg.org/ebooks/16891', 'en', 7927), +(17224, 'The Master; a Novel', 'Zangwill, Israel', '2015-08-27', 14, 'https://www.gutenberg.org/ebooks/49795', 'en', 297), +(17225, 'The Mornin\'-Glory Girl', 'Pocklington, Kathryn', '2015-04-06', 10, 'https://www.gutenberg.org/ebooks/48647', 'en', 774), +(17226, 'The Observations of Henry', 'Jerome, Jerome K. (Jerome Klapka)', '2006-03-07', 21, 'https://www.gutenberg.org/ebooks/17943', 'en', 1902), +(17227, 'The Vaudois Teacher, and other poems\r\nPart 1 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 10, 'https://www.gutenberg.org/ebooks/9560', 'en', 350), +(17228, 'Die Aufzeichnungen des Malte Laurids Brigge', 'Rilke, Rainer Maria', '2000-05-01', 114, 'https://www.gutenberg.org/ebooks/2188', 'de', 560), +(17229, 'Little Fuzzy', 'Piper, H. Beam', '2006-04-09', 282, 'https://www.gutenberg.org/ebooks/18137', 'en', 26), +(17230, 'A Lady of England: The Life and Letters of Charlotte Maria Tucker', 'Giberne, Agnes', '2017-02-21', 11, 'https://www.gutenberg.org/ebooks/54218', 'en', 7928), +(17231, 'Legends & Romances of Spain', 'Spence, Lewis', '2012-01-08', 26, 'https://www.gutenberg.org/ebooks/38530', 'en', 4785), +(17232, 'La moglie di Sua Eccellenza', 'Rovetta, Gerolamo', '2016-12-24', 9, 'https://www.gutenberg.org/ebooks/53801', 'it', 892), +(17233, 'Day and Night Stories', 'Blackwood, Algernon', '2014-06-14', 114, 'https://www.gutenberg.org/ebooks/45964', 'en', 1747), +(17234, 'Ons Vaderland van de vroegste tijden tot de 15de eeuw', 'Lievevrouw-Coopman, M.', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11288', 'nl', 3937), +(17235, 'The Later Life', 'Couperus, Louis', '2011-09-30', 5, 'https://www.gutenberg.org/ebooks/37578', 'en', 7929), +(17236, 'The Flemmings And \"Flash Harry\" Of Savait\nFrom \"The Strange Adventure Of James Shervinton and Other\nStories\" - 1902', 'Becke, Louis', '2008-03-29', 17, 'https://www.gutenberg.org/ebooks/24953', 'en', 108), +(17237, 'Index of the Project Gutenberg Works of Gustave Flaubert', 'Flaubert, Gustave', '2019-05-14', 16, 'https://www.gutenberg.org/ebooks/59507', 'en', 198), +(17238, 'Sa Ano Nabubuhay Ang Tao', 'Tolstoy, Leo, graf', '2005-04-15', 15, 'https://www.gutenberg.org/ebooks/15628', 'tl', 7930), +(17239, 'When the Mountain Shook', 'Abernathy, Robert', '2010-06-16', 26, 'https://www.gutenberg.org/ebooks/32836', 'en', 26), +(17240, 'The Persian Mystics: Jámí', 'Jami', '2014-03-17', 20, 'https://www.gutenberg.org/ebooks/45158', 'en', 7931), +(17241, 'Kohtaloonsa kompastunut', 'Järnefelt Rauanheimo, Akseli', '2008-06-23', 12, 'https://www.gutenberg.org/ebooks/25881', 'fi', NULL), +(17242, 'The Maker of Opportunities', 'Gibbs, George', '2012-01-28', 13, 'https://www.gutenberg.org/ebooks/38702', 'en', 61), +(17243, 'The Surprises of Life', 'Clemenceau, Georges', '2012-08-29', 19, 'https://www.gutenberg.org/ebooks/40618', 'en', 1112), +(17244, 'Kaiser Frederick March', NULL, '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10168', 'en', 7932), +(17245, 'History of the United Netherlands, 1598-99', 'Motley, John Lothrop', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/4871', 'en', 3372), +(17246, 'A Thought For Tomorrow', 'Gilbert, Robert E.', '2010-05-03', 14, 'https://www.gutenberg.org/ebooks/32238', 'en', 179), +(17247, 'The Girl Aviators\' Sky Cruise', 'Burnham, Margaret', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/10954', 'en', 3242), +(17248, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 538, March 17, 1832', 'Various', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/11886', 'en', 133), +(17249, 'History of the Discovery of the Northwest by John Nicolet in 1634\nWith a Sketch of his Life', 'Butterfield, Consul Willshire', '2011-07-11', 15, 'https://www.gutenberg.org/ebooks/36698', 'en', 7933), +(17250, 'Mother\'s Little Rhyme Book', NULL, '2019-06-11', 37, 'https://www.gutenberg.org/ebooks/59735', 'en', 343), +(17251, 'Die Entwicklung des gutsherrlich-bäuerlichen Verhältnisses in Galizien (1772-1848)', 'Von Mises, Ludwig', '2016-03-25', 10, 'https://www.gutenberg.org/ebooks/51558', 'de', 7934), +(17252, 'Urhot: Historiallinen novelli \"Ison vihan\" ajoilta', 'Karikko, Kaarle', '2009-07-18', 18, 'https://www.gutenberg.org/ebooks/29442', 'fi', 41), +(17253, 'The House of the White Shadows', 'Farjeon, B. L. (Benjamin Leopold)', '2013-06-18', 14, 'https://www.gutenberg.org/ebooks/42973', 'en', 3730), +(17254, 'My .75: Reminiscences of a Gunner of a .75m/m Battery in 1914', 'Lintier, Paul', '2017-06-01', 8, 'https://www.gutenberg.org/ebooks/54816', 'en', 5289), +(17255, 'The Indian\'s Hand\n1892', 'Stoddard, Lorimer', '2007-10-24', 14, 'https://www.gutenberg.org/ebooks/23178', 'en', 3196), +(17256, 'The Dust Flower', 'King, Basil', '2009-04-22', 12, 'https://www.gutenberg.org/ebooks/28590', 'en', 109), +(17257, 'The Story of Kennett', 'Taylor, Bayard', '2005-08-01', 22, 'https://www.gutenberg.org/ebooks/8680', 'en', 7935), +(17258, 'The Mysteries of Udolpho', 'Radcliffe, Ann Ward', '2002-06-01', 522, 'https://www.gutenberg.org/ebooks/3268', 'en', 2530), +(17259, 'Little Stories for Little Children', 'Anonymous', '2007-10-05', 30, 'https://www.gutenberg.org/ebooks/22896', 'en', 1817), +(17260, 'Leo the Circus Boy; or, Life under the great white canvas', 'Stratemeyer, Edward', '2011-04-10', 9, 'https://www.gutenberg.org/ebooks/35821', 'en', 3133), +(17261, 'Keltische Mythen en Legenden', 'Rolleston, T. W. (Thomas William)', '2006-05-04', 25, 'https://www.gutenberg.org/ebooks/18305', 'nl', 7936), +(17262, 'On the Stage--and Off: The Brief Career of a Would-Be Actor', 'Jerome, Jerome K. (Jerome Klapka)', '2015-03-12', 16, 'https://www.gutenberg.org/ebooks/48475', 'en', 7937), +(17263, 'Bulbs and Blossoms', 'Le Feuvre, Amy', '2007-12-20', 6, 'https://www.gutenberg.org/ebooks/23944', 'en', 31), +(17264, 'Night and Morning, Volume 3', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 8, 'https://www.gutenberg.org/ebooks/9752', 'en', 401), +(17265, 'Bobby in Movieland', 'Finn, Francis J. (Francis James)', '2018-01-05', 13, 'https://www.gutenberg.org/ebooks/56319', 'en', 7938), +(17266, 'Valtaset\n3-näytöksinen näytelmä', 'Järnefelt, Arvid', '2005-05-16', 5, 'https://www.gutenberg.org/ebooks/15842', 'fi', 402), +(17267, 'Scientific American Supplement No. 819, September 12, 1891', 'Various', '2005-02-09', 33, 'https://www.gutenberg.org/ebooks/14990', 'en', 210), +(17268, 'A New Subspecies of Ground Squirrel (Spermophilus spilosoma) from Tamaulipas, Mexico', 'Alvarez, Ticul', '2011-12-22', 9, 'https://www.gutenberg.org/ebooks/38366', 'en', 7939), +(17269, 'Bidwell\'s Travels, from Wall Street to London Prison: Fifteen Years in Solitude', 'Bidwell, Austin', '2008-03-02', 20, 'https://www.gutenberg.org/ebooks/24739', 'en', 7940), +(17270, 'Evan Harrington — Volume 3', 'Meredith, George', '2003-09-01', 11, 'https://www.gutenberg.org/ebooks/4429', 'en', 6153), +(17271, 'A History of Domestic Manners and Sentiments in England During the Middle Ages', 'Wright, Thomas', '2019-04-25', 28, 'https://www.gutenberg.org/ebooks/59351', 'en', 4822), +(17272, 'The Southern Literary Messenger, Vol. I., No. 10, June, 1835', 'Various', '2018-11-14', 6, 'https://www.gutenberg.org/ebooks/58283', 'en', 522), +(17273, 'The Brotherhood of Consolation', 'Balzac, Honoré de', '2004-06-01', 75, 'https://www.gutenberg.org/ebooks/1967', 'en', 58), +(17274, 'Kate Carnegie and Those Ministers', 'Maclaren, Ian', '2007-01-19', 26, 'https://www.gutenberg.org/ebooks/20399', 'en', 5681), +(17275, 'Wood Rangers: The Trappers of Sonora', 'Reid, Mayne', '2009-02-03', 39, 'https://www.gutenberg.org/ebooks/27980', 'en', 7941), +(17276, 'Meteorology: The Science of the Atmosphere', 'Talman, Charles Fitzhugh', '2014-10-05', 28, 'https://www.gutenberg.org/ebooks/47059', 'en', 7109), +(17277, 'Dagboek van mijne reis door het binnenland van Honduras naar Guatemala\nDe Aarde en haar Volken, 1918', 'Drielst, J. van', '2006-02-09', 9, 'https://www.gutenberg.org/ebooks/17729', 'nl', 7942), +(17278, 'Punch, or the London Charivari, Volume 98, May 17, 1890.', 'Various', '2010-01-11', 25, 'https://www.gutenberg.org/ebooks/30937', 'en', 134), +(17279, 'Harper\'s Young People, July 6, 1880\nAn Illustrated Weekly', 'Various', '2009-06-03', 7, 'https://www.gutenberg.org/ebooks/29026', 'en', 479), +(17280, 'Songs and Ballads of the Southern People: 1861-1865', NULL, '2011-03-04', 21, 'https://www.gutenberg.org/ebooks/35479', 'en', 7943), +(17281, 'The Blue Germ', 'Nicoll, Maurice', '2008-10-09', 38, 'https://www.gutenberg.org/ebooks/26852', 'en', 26), +(17282, 'On the Construction of Catalogues of Libraries and Their Publication by Means of Separate, Stereotyped Titles\r\nWith Rules and Examples', 'Jewett, Charles C. (Charles Coffin)', '2015-01-03', 15, 'https://www.gutenberg.org/ebooks/47865', 'en', 7944), +(17283, 'Notes and Queries, Number 40, August 3, 1850', 'Various', '2004-09-07', 5, 'https://www.gutenberg.org/ebooks/13389', 'en', 105), +(17284, 'The Circular Study', 'Green, Anna Katharine', '2006-07-05', 137, 'https://www.gutenberg.org/ebooks/18761', 'en', 128), +(17285, 'Le Premier Livre', 'Méras, B. (Baptiste)', '2015-01-18', 27, 'https://www.gutenberg.org/ebooks/48011', 'fr', 2216), +(17286, 'To-morrow', 'Conrad, Joseph', '2005-11-01', 4, 'https://www.gutenberg.org/ebooks/9336', 'en', 61), +(17287, 'Biography of Percival Lowell', 'Lowell, A. Lawrence (Abbott Lawrence)', '2016-04-30', 10, 'https://www.gutenberg.org/ebooks/51900', 'en', 7945), +(17288, 'Woman\'s Institute Library of Cookery. Volume 4: Salads and Sandwiches; Cold and Frozen Desserts; Cakes, Cookies and Puddings; Pastries and Pies', 'Woman\'s Institute of Domestic Arts and Sciences', '2006-02-01', 81, 'https://www.gutenberg.org/ebooks/9938', 'en', 103), +(17289, 'Speech of John Hossack, Convicted of a Violation of the Fugitive Slave Law\nBefore Judge Drummond, Of The United States District Court, Chicago, Ill.', 'Hossack, John', '2004-11-09', 12, 'https://www.gutenberg.org/ebooks/13987', 'en', 125), +(17290, 'A Runaway Brig; Or, An Accidental Cruise', 'Otis, James', '2010-12-31', 13, 'https://www.gutenberg.org/ebooks/34799', 'en', 3532), +(17291, 'Elizabethan Sea-Dogs: A Chronicle of Drake and His Companions', 'Wood, William', '2004-07-08', 17, 'https://www.gutenberg.org/ebooks/12855', 'en', 7946), +(17292, 'Dialogues in French and English', 'Caxton, William', '2009-06-24', 40, 'https://www.gutenberg.org/ebooks/29214', 'en', 7947), +(17293, 'The History of Gambling in England', 'Ashton, John', '2015-02-09', 23, 'https://www.gutenberg.org/ebooks/48223', 'en', 226), +(17294, 'Status Quo', 'Reynolds, Mack', '2009-10-26', 73, 'https://www.gutenberg.org/ebooks/30339', 'en', 26), +(17295, 'The Naval War of 1812\r\nOr the History of the United States Navy during the Last War with Great Britain to Which Is Appended an Account of the Battle of New Orleans', 'Roosevelt, Theodore', '2005-10-01', 116, 'https://www.gutenberg.org/ebooks/9104', 'en', 3462), +(17296, 'The History of a Mouthful of Bread\r\nAnd its effect on the organization of men and animals', 'Macé, Jean', '2004-11-01', 27, 'https://www.gutenberg.org/ebooks/6970', 'en', 973), +(17297, 'From Isolation to Leadership, Revised\nA Review of American Foreign Policy', 'Latané, John Holladay', '2006-06-11', 61, 'https://www.gutenberg.org/ebooks/18553', 'en', 225), +(17298, 'Tracks of a Rolling Stone', 'Coke, Henry J. (Henry John)', '1996-04-01', 30, 'https://www.gutenberg.org/ebooks/497', 'en', 497), +(17299, 'Joe Tilden\'s Recipes for Epicures', 'Tilden, Joe', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/12069', 'en', 1369), +(17300, '\"Everyman,\" with other interludes, including eight miracle plays', NULL, '2006-10-06', 177, 'https://www.gutenberg.org/ebooks/19481', 'en', 7948), +(17301, 'A Treatise on Wood Engraving, Historical and Practical', 'Chatto, William Andrew', '2013-05-16', 35, 'https://www.gutenberg.org/ebooks/42719', 'en', 7949), +(17302, 'The Tale of Peter Mink\nSleepy-Time Tales', 'Bailey, Arthur Scott', '2007-06-16', 18, 'https://www.gutenberg.org/ebooks/21845', 'en', 7950), +(17303, 'Educação nova: As bases', 'Alves dos Santos, Augusto Joaquim', '2012-03-09', 9, 'https://www.gutenberg.org/ebooks/39086', 'pt', 7251), +(17304, 'The South American Republics, Part 1 of 2', 'Dawson, Thomas Cleland', '2011-11-04', 38, 'https://www.gutenberg.org/ebooks/37920', 'en', 2894), +(17305, 'Text books of art education, v. 4 of 7. Book IV, Fourth Year', 'Snow, Bonnie E.', '2011-11-27', 34, 'https://www.gutenberg.org/ebooks/38154', 'en', 7951), +(17306, 'Paz (La Fausse Maitresse)', 'Balzac, Honoré de', '1998-07-01', 22, 'https://www.gutenberg.org/ebooks/1369', 'en', 58), +(17307, 'The Nürnberg Stove', 'Ouida', '2007-04-06', 31, 'https://www.gutenberg.org/ebooks/20997', 'en', 7952), +(17308, 'The Trawler', 'Connolly, James B. (James Brendan)', '2007-04-15', 17, 'https://www.gutenberg.org/ebooks/21079', 'en', 324), +(17309, 'Index of the Project Gutenberg Works of Francis Bacon', 'Bacon, Francis', '2019-03-30', 17, 'https://www.gutenberg.org/ebooks/59163', 'en', 198), +(17310, 'Addresses: by John A. Martin. Delivered in Kansas.', 'Martin, John Alexander', '2018-04-04', 10, 'https://www.gutenberg.org/ebooks/56917', 'en', 7953), +(17311, 'Deutsche Humoristen, 7. Band (von 8)', 'Thoma, Ludwig', '2016-11-06', 11, 'https://www.gutenberg.org/ebooks/53459', 'de', 543), +(17312, 'First at the North Pole; Or, Two Boys in the Arctic Circle', 'Stratemeyer, Edward', '2012-02-25', 42, 'https://www.gutenberg.org/ebooks/38968', 'en', 323), +(17313, 'The History of the Hen Fever. A Humorous Record', 'Burnham, Geo. P. (George Pickering)', '2012-09-27', 7, 'https://www.gutenberg.org/ebooks/40872', 'en', 6966), +(17314, 'Tragic Romances\r\nRe-issue of the Shorter Stories of Fiona Macleod; Rearranged, with Additional Tales', 'Sharp, William', '2016-12-30', 13, 'https://www.gutenberg.org/ebooks/53839', 'en', 1922), +(17315, 'Empires and Emperors of Russia, China, Korea, and Japan\nNotes and Recollections by Monsignor Count Vay de Vaya and Luskod', 'Vay, Péter', '2012-01-06', 138, 'https://www.gutenberg.org/ebooks/38508', 'en', 7954), +(17316, 'Sophist', 'Plato', '1999-05-01', 198, 'https://www.gutenberg.org/ebooks/1735', 'en', 7533), +(17317, 'Through the Year with Famous Authors', 'Patterson, Mabel', '2013-01-05', 9, 'https://www.gutenberg.org/ebooks/40412', 'en', 7955), +(17318, 'Sketches of the East Africa Campaign', 'Dolbey, Robert Valentine', '2003-12-01', 30, 'https://www.gutenberg.org/ebooks/10362', 'en', 7956), +(17319, 'Punch, or the London Charivari, May 27, 1914', 'Various', '2008-01-04', 11, 'https://www.gutenberg.org/ebooks/24157', 'en', 134), +(17320, 'The Stars and Stripes, Vol. 1, No. 1, February 8, 1918\r\nThe American Soldiers\' Newspaper of World War I, 1918-1919', 'United States. Army. American Expeditionary Forces', '2008-04-17', 35, 'https://www.gutenberg.org/ebooks/25085', 'en', 7957), +(17321, 'Adrian Savage: A Novel', 'Malet, Lucas', '2018-02-16', 22, 'https://www.gutenberg.org/ebooks/56577', 'en', 7958), +(17322, 'Second Variety', 'Dick, Philip K.', '2010-04-17', 707, 'https://www.gutenberg.org/ebooks/32032', 'en', 26), +(17323, 'Walpole and Chatham (1714-1760)', NULL, '2016-09-07', 19, 'https://www.gutenberg.org/ebooks/53005', 'en', 7959), +(17324, 'The Crisis — Volume 08', 'Churchill, Winston', '2004-10-19', 10, 'https://www.gutenberg.org/ebooks/5395', 'en', 403), +(17325, 'The Hearth-Stone: Thoughts Upon Home-Life in Our Cities', 'Osgood, Samuel', '2011-09-26', 12, 'https://www.gutenberg.org/ebooks/37540', 'en', 740), +(17326, 'The Shakespeare-Expositor: An Aid to the Perfect Understanding of Shakespeare\'s Plays', 'Keightley, Thomas', '2014-03-17', 11, 'https://www.gutenberg.org/ebooks/45160', 'en', 7960), +(17327, 'A Briefe and True Report of the New Found Land of Virginia', 'Harriot, Thomas', '2003-07-01', 45, 'https://www.gutenberg.org/ebooks/4247', 'en', 7961), +(17328, 'The Kidnapped President', 'Boothby, Guy', '2011-06-22', 18, 'https://www.gutenberg.org/ebooks/36492', 'en', 7962), +(17329, 'Le rive della Bormida nel 1794', 'Abba, Giuseppe Cesare', '2007-05-12', 196, 'https://www.gutenberg.org/ebooks/21425', 'it', 61), +(17330, 'First Love, and Other Fascinating Stories of Spanish Life\r\nLittle Blue Book No. 1195', NULL, '2005-04-12', 87, 'https://www.gutenberg.org/ebooks/15610', 'en', 7963), +(17331, 'The Northern Light', 'Werner, E.', '2005-06-20', 20, 'https://www.gutenberg.org/ebooks/16095', 'en', 48), +(17332, 'If You Was a Moklin', 'Leinster, Murray', '2016-04-13', 68, 'https://www.gutenberg.org/ebooks/51752', 'en', 7964), +(17333, 'Štafeta', 'Omelka, František', '2009-08-09', 4, 'https://www.gutenberg.org/ebooks/29648', 'cs', 7965), +(17334, 'The Oyster', 'Peer', '2011-02-08', 32, 'https://www.gutenberg.org/ebooks/35217', 'en', 61), +(17335, 'Birds and Nature Vol. 11 No. 5 [May 1902]\nIllustrated by Color Photography', 'Various', '2014-12-12', 13, 'https://www.gutenberg.org/ebooks/47637', 'en', 1584), +(17336, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 4, Nicodemus', 'Wake, William', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6510', 'en', 7966), +(17337, 'Man to Man', 'Gregory, Jackson', '2006-07-29', 33, 'https://www.gutenberg.org/ebooks/18933', 'en', 315), +(17338, 'The Buffalo Runners: A Tale of the Red River Plains', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 33, 'https://www.gutenberg.org/ebooks/23372', 'en', 7967), +(17339, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 722\nOctober 27, 1877', 'Various', '2015-12-13', 4, 'https://www.gutenberg.org/ebooks/50680', 'en', 18), +(17340, 'Theodicy\nEssays on the Goodness of God, the Freedom of Man and the Origin of Evil', 'Leibniz, Gottfried Wilhelm, Freiherr von', '2005-11-24', 230, 'https://www.gutenberg.org/ebooks/17147', 'en', 2903), +(17341, 'Römische Geschichte — Band 3', 'Mommsen, Theodor', '2002-02-01', 36, 'https://www.gutenberg.org/ebooks/3062', 'de', 6793), +(17342, 'Children\'s Stories in American History', 'Wright, Henrietta Christian', '2013-03-16', 18, 'https://www.gutenberg.org/ebooks/42345', 'en', 7968), +(17343, 'Paginas Sudamericanas', 'Phipps, Helen', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/12435', 'es', 188), +(17344, 'Mother Earth, Vol. 1 No. 1, March 1906', 'Various', '2008-09-12', 136, 'https://www.gutenberg.org/ebooks/26600', 'en', 7969), +(17345, 'Textile Fabrics', 'Rock, Daniel', '2019-07-29', 646, 'https://www.gutenberg.org/ebooks/60015', 'en', 7970), +(17346, 'Oxford: A Sketch-Book', 'Richards, Fred', '2017-02-22', 11, 'https://www.gutenberg.org/ebooks/54220', 'en', 7971), +(17347, 'The Natural History of Clay', 'Searle, Alfred B. (Alfred Broadhead)', '2013-07-25', 34, 'https://www.gutenberg.org/ebooks/43297', 'en', 7972), +(17348, 'News Writing\nThe Gathering , Handling and Writing of News Stories', 'Spencer, M. Lyle (Matthew Lyle)', '2009-12-26', 17, 'https://www.gutenberg.org/ebooks/30765', 'en', 7973), +(17349, 'The Sign of the Four', 'Doyle, Arthur Conan', '2005-12-01', 25, 'https://www.gutenberg.org/ebooks/9558', 'en', 128), +(17350, 'Self-Determining Haiti\r\nFour articles reprinted from The Nation embodying a report of an investigation made for the National Association for the Advancement of Colored People.', 'Johnson, James Weldon', '2011-01-21', 22, 'https://www.gutenberg.org/ebooks/35025', 'en', 7974), +(17351, 'The Mentor: American Novelists, Vol. 1, No. 25', 'Mabie, Hamilton Wright', '2016-03-26', 9, 'https://www.gutenberg.org/ebooks/51560', 'en', 7975), +(17352, 'Pasarse de listo', 'Valera, Juan', '2007-07-17', 30, 'https://www.gutenberg.org/ebooks/22092', 'es', 61), +(17353, 'Et Ægteskabs Historie: En Virkelighedsskildring', 'Østergaard, Vilhelm', '2013-10-05', 19, 'https://www.gutenberg.org/ebooks/43899', 'da', 6055), +(17354, 'The Death Shot: A Story Retold', 'Reid, Mayne', '2007-10-21', 39, 'https://www.gutenberg.org/ebooks/23140', 'en', 1357), +(17355, 'The Works of Guy de Maupassant, Volume 2', 'Maupassant, Guy de', '2005-12-22', 21, 'https://www.gutenberg.org/ebooks/17375', 'en', 1112), +(17356, '\"Short Sixes\": Stories to be Read While the Candle Burns', 'Bunner, H. C. (Henry Cuyler)', '2014-11-20', 40, 'https://www.gutenberg.org/ebooks/47405', 'en', 112), +(17357, 'The Seven Who Were Hanged', 'Andreyev, Leonid', '2004-10-01', 47, 'https://www.gutenberg.org/ebooks/6722', 'en', 7976), +(17358, 'You Can Search Me', 'Hobart, George V. (George Vere)', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/12607', 'en', 637), +(17359, 'Lonesome Town', 'Dorrance, James French', '2011-04-10', 39, 'https://www.gutenberg.org/ebooks/35819', 'en', 48), +(17360, 'L\'esclave religieux, et ses avantures', 'Quartier, Antoine', '2008-08-25', 18, 'https://www.gutenberg.org/ebooks/26432', 'fr', NULL), +(17361, 'The Blue Goose', 'Nason, Frank Lewis', '2010-03-03', 5, 'https://www.gutenberg.org/ebooks/31485', 'en', 48), +(17362, 'How to Tell a Story, and Other Essays', 'Twain, Mark', '2004-09-19', 331, 'https://www.gutenberg.org/ebooks/3250', 'en', 6258), +(17363, 'Histoire de Flandre (T. 3/4)', 'Kervyn de Lettenhove, Joseph Marie Bruno Constantin, Baron', '2013-02-23', 6, 'https://www.gutenberg.org/ebooks/42177', 'fr', 3813), +(17364, 'LILRC Interlibrary Loan Manual: January, 1976', 'Long Island Library Resources Council (N.Y.)', '2009-11-28', 13, 'https://www.gutenberg.org/ebooks/30557', 'en', 7977), +(17365, 'Memoir of the Proposed Territory of Arizona', 'Mowry, Sylvester', '2000-11-01', 9, 'https://www.gutenberg.org/ebooks/2382', 'en', 7978), +(17366, 'The Younger Sister: A Novel, Vol. III.', 'Hubback, Mrs. (Catherine-Anne Austen)', '2017-01-20', 5, 'https://www.gutenberg.org/ebooks/54012', 'en', 95), +(17367, 'Dracula\'s Guest', 'Stoker, Bram', '2003-11-01', 351, 'https://www.gutenberg.org/ebooks/10150', 'en', 179), +(17368, 'Prometheus Geboeid', 'Aeschylus', '2018-08-14', 38, 'https://www.gutenberg.org/ebooks/57697', 'nl', 2127), +(17369, 'The Voyage of the Vega round Asia and Europe, Volume I and Volume II', 'Nordenskiöld, A. E. (Adolf Erik)', '2008-01-20', 24, 'https://www.gutenberg.org/ebooks/24365', 'en', 7979), +(17370, 'The Tragedy of Titus Andronicus', 'Shakespeare, William', '1998-10-01', 29, 'https://www.gutenberg.org/ebooks/1507', 'en', 7980), +(17371, 'Hilda\'s Mascot: A Tale of \"Maryland, My Maryland\"', 'Ireland, Mary E. (Mary Eliza)', '2012-08-29', 10, 'https://www.gutenberg.org/ebooks/40620', 'en', 4929), +(17372, 'Sowing and Sewing: A Sexagesima Story', 'Yonge, Charlotte M. (Charlotte Mary)', '2010-05-02', 12, 'https://www.gutenberg.org/ebooks/32200', 'en', 7981), +(17373, 'History of the United Netherlands, 1586d', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4849', 'en', 3372), +(17374, 'Elektra', 'Sophocles', '2018-03-15', 9, 'https://www.gutenberg.org/ebooks/56745', 'hu', 3723), +(17375, 'Old Saint Paul\'s: A Tale of the Plague and the Fire', 'Ainsworth, William Harrison', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/11082', 'en', 7982), +(17376, 'Pioneer Day Exercises', 'Ladies\' Library Association (Schoolcraft, Mich.)', '2011-10-17', 7, 'https://www.gutenberg.org/ebooks/37772', 'en', 7983), +(17377, 'The Life of the Rev. George Whitefield, Volume 1 (of 2)', 'Tyerman, L. (Luke)', '2013-11-25', 11, 'https://www.gutenberg.org/ebooks/44280', 'en', 7984), +(17378, 'Luja kuin kuolema', 'Maupassant, Guy de', '2016-10-09', 15, 'https://www.gutenberg.org/ebooks/53237', 'fi', 109), +(17379, 'That Affair Next Door', 'Green, Anna Katharine', '2007-05-26', 65, 'https://www.gutenberg.org/ebooks/21617', 'en', 1660), +(17380, 'Israel Potter: His Fifty Years of Exile', 'Melville, Herman', '2005-03-20', 90, 'https://www.gutenberg.org/ebooks/15422', 'en', 7985), +(17381, 'Fräulein Doktor: Roman', 'Lehne, Fr.', '2014-04-09', 4, 'https://www.gutenberg.org/ebooks/45352', 'de', 61), +(17382, 'The Intrusion of Jimmy', 'Wodehouse, P. G. (Pelham Grenville)', '2003-05-01', 102, 'https://www.gutenberg.org/ebooks/4075', 'en', 6124), +(17383, 'Mistress Spitfire\nA Plain Account of Certain Episodes in the History of Richard Coope, Gent., and of His Cousin, Mistress Alison French, at the Time of the Revolution, 1642-1644', NULL, '2015-04-27', 34, 'https://www.gutenberg.org/ebooks/48815', 'en', 4665), +(17384, 'The Origins of Contemporary France, Complete Table of Contents', 'Taine, Hippolyte', '2008-06-22', 23, 'https://www.gutenberg.org/ebooks/23524', 'en', 1536), +(17385, 'Hindustani Lyrics', NULL, '2006-02-07', 26, 'https://www.gutenberg.org/ebooks/17711', 'en', 7986), +(17386, 'Mr. Incoul\'s Misadventure', 'Saltus, Edgar', '2014-10-06', 12, 'https://www.gutenberg.org/ebooks/47061', 'en', 847), +(17387, 'Cecilia; Or, Memoirs of an Heiress — Volume 1', 'Burney, Fanny', '2004-08-01', 73, 'https://www.gutenberg.org/ebooks/6346', 'en', 1380), +(17388, 'Famous Flyers and Their Famous Flights', 'Wright, Jack', '2010-12-07', 140, 'https://www.gutenberg.org/ebooks/34593', 'en', 6791), +(17389, 'Battle Studies; Ancient and Modern Battle', 'Ardant du Picq, Charles Jean Jacques Joseph', '2005-01-01', 42, 'https://www.gutenberg.org/ebooks/7294', 'en', 5326), +(17390, 'The Dodd Family Abroad, Vol. I', 'Lever, Charles James', '2011-03-01', 8, 'https://www.gutenberg.org/ebooks/35441', 'en', 61), +(17391, 'Allen & Morton\'s West-London Directory for 1867', 'Allen & Morton', '2016-02-01', 7, 'https://www.gutenberg.org/ebooks/51104', 'en', 5690), +(17392, 'Best Stories of the 1914 European War', 'Various', '2015-01-19', 7, 'https://www.gutenberg.org/ebooks/48029', 'en', 335), +(17393, 'Notes and Queries, Number 217, December 24, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-09-29', 6, 'https://www.gutenberg.org/ebooks/30133', 'en', 105), +(17394, '癡人福', 'Mountain, Plum Rocky', '2008-11-07', 22, 'https://www.gutenberg.org/ebooks/27184', 'zh', NULL), +(17395, 'From the Ball-Room to Hell', 'Faulkner, Thomas A.', '2006-07-05', 21, 'https://www.gutenberg.org/ebooks/18759', 'en', 6327), +(17396, 'The Art & Practice of Typography\r\nA Manual of American Printing, Including a Brief History up to the Twentieth Century, with Reproductions of the Work of Early Masters of the Craft, and a Practical Discussion and an Extensive Demonstration of the Modern Use of Type-faces and Methods of Arrangement', 'Gress, Edmund G. (Edmund Geiger)', '2017-04-02', 84, 'https://www.gutenberg.org/ebooks/54476', 'en', 7987), +(17397, 'Blackwood\'s Edinburgh Magazine — Volume 53, No. 331, May, 1843', 'Various', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12263', 'en', 274), +(17398, 'A booke called the Foundacion of Rhetorike\r\nbecause all other partes of Rhetorike are grounded thereupon, euery parte sette forthe in an Oracion vpon questions, verie profitable to bee knowen and redde', 'Rainolde, Richard', '2008-07-14', 30, 'https://www.gutenberg.org/ebooks/26056', 'en', 7988), +(17399, 'Daireen. Complete', 'Moore, Frank Frankfort', '2016-05-02', 8, 'https://www.gutenberg.org/ebooks/51938', 'en', 61), +(17400, 'The Guilty River', 'Collins, Wilkie', '2003-01-01', 42, 'https://www.gutenberg.org/ebooks/3634', 'en', 4219), +(17401, 'Rescue Squad', 'O\'Hara, Thomas J.', '2009-08-27', 28, 'https://www.gutenberg.org/ebooks/29822', 'en', 179), +(17402, 'Le vergini delle rocce', 'D\'Annunzio, Gabriele', '2013-04-12', 48, 'https://www.gutenberg.org/ebooks/42513', 'it', 16), +(17403, 'The Boys of 1812 and Other Naval Heroes', 'Soley, James Russell', '2012-11-18', 16, 'https://www.gutenberg.org/ebooks/41396', 'en', 7989), +(17404, 'Black Amazon of Mars', 'Brackett, Leigh Douglass', '2010-06-02', 175, 'https://www.gutenberg.org/ebooks/32664', 'en', 613), +(17405, 'A Tour Through South America', 'Forrest, A. S. (Archibald Stevenson)', '2018-01-06', 13, 'https://www.gutenberg.org/ebooks/56321', 'en', 227), +(17406, 'The Double Traitor', 'Oppenheim, E. Phillips (Edward Phillips)', '2003-12-01', 31, 'https://www.gutenberg.org/ebooks/10534', 'en', 1319), +(17407, 'A dissolução do regimen capitalista', 'Bastos, Teixeira', '2008-02-26', 16, 'https://www.gutenberg.org/ebooks/24701', 'pt', 6394), +(17408, 'Adventure', 'London, Jack', '1998-01-01', 79, 'https://www.gutenberg.org/ebooks/1163', 'en', 108), +(17409, 'The History of the Thirteen Colonies of North America 1497-1763', 'Jeffery, Reginald W. (Reginald Welbury)', '2012-07-15', 16, 'https://www.gutenberg.org/ebooks/40244', 'en', 2649), +(17410, 'The Atlantic Monthly, Volume 2, No. 14, December 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2007-05-02', 14, 'https://www.gutenberg.org/ebooks/21273', 'en', 1227), +(17411, 'Murder in Black Letter', 'Anderson, Poul', '2019-04-26', 200, 'https://www.gutenberg.org/ebooks/59369', 'en', 1425), +(17412, 'Un paseo por Paris, retratos al natural', 'Barcia, Roque', '2005-02-14', 76, 'https://www.gutenberg.org/ebooks/15046', 'es', 2243), +(17413, 'Fortune\'s My Foe: A Romance', 'Bloundelle-Burton, John', '2016-08-12', 13, 'https://www.gutenberg.org/ebooks/52781', 'en', 137), +(17414, 'Ballades and Rondeaus, Chants Royal, Sestinas, Villanelles, etc.', NULL, '2014-05-24', 14, 'https://www.gutenberg.org/ebooks/45736', 'en', 7414), +(17415, 'The Ordeal of Richard Feverel — Volume 6', 'Meredith, George', '2003-09-01', 23, 'https://www.gutenberg.org/ebooks/4411', 'en', 2079), +(17416, 'De Ellendigen (Deel 1 van 5)', 'Hugo, Victor', '2011-09-05', 47, 'https://www.gutenberg.org/ebooks/37316', 'nl', 264), +(17417, 'Our Home and Personal Duty', 'Fryer, Jane Eayre', '2016-12-03', 13, 'https://www.gutenberg.org/ebooks/53653', 'en', 7990), +(17418, 'France in the Nineteenth Century', 'Latimer, Elizabeth Wormeley', '2004-11-28', 13, 'https://www.gutenberg.org/ebooks/14194', 'en', 1169), +(17419, 'Irrigation Works\r\nThe Principles on Which Their Design and Working Should Be Based, with Special Details Relating to Indian Canals and Some Proposed Improvements', 'Bellasis, E. S. (Edward Skelton)', '2017-12-03', 3, 'https://www.gutenberg.org/ebooks/56113', 'en', 7991), +(17420, 'On Angels\' Wings', 'Greene, Mrs. (Louisa Lilias)', '2019-07-22', 865, 'https://www.gutenberg.org/ebooks/59967', 'en', 7992), +(17421, 'R.E.H.', 'Barlow, R. H. (Robert Hayward)', '2010-05-20', 35, 'https://www.gutenberg.org/ebooks/32456', 'en', 7993), +(17422, 'Women as World Builders: Studies in Modern Feminism', 'Dell, Floyd', '2010-08-30', 30, 'https://www.gutenberg.org/ebooks/33584', 'en', 7994), +(17423, 'The Chignecto Isthmus and Its First Settlers', 'Trueman, Howard', '1998-06-01', 29, 'https://www.gutenberg.org/ebooks/1351', 'en', 5181), +(17424, 'Atrocious Judges : Lives of Judges Infamous as Tools of Tyrants and Instruments of Oppression', 'Campbell, John Campbell, Baron', '2012-06-24', 21, 'https://www.gutenberg.org/ebooks/40076', 'en', 7995), +(17425, 'The History of Rome (Volumes 1-5)', 'Mommsen, Theodor', '2005-03-16', 136, 'https://www.gutenberg.org/ebooks/10706', 'en', 6793), +(17426, 'Rocky Mountain National Park [Colorado]', 'United States. Department of the Interior', '2011-11-04', 33, 'https://www.gutenberg.org/ebooks/37918', 'en', 7996), +(17427, 'O Infante D. Henrique e a arte de navegar dos portuguezes', 'Eça, Vicente de Almeida de', '2008-02-06', 7, 'https://www.gutenberg.org/ebooks/24533', 'pt', 7997), +(17428, 'Where Art Begins', 'Nisbet, Hume', '2014-04-26', 40, 'https://www.gutenberg.org/ebooks/45504', 'en', 787), +(17429, 'The Son of My Friend', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/4623', 'en', 716), +(17430, 'Seen and Unseen', 'Bates, E. Katherine (Emily Katherine)', '2007-04-12', 48, 'https://www.gutenberg.org/ebooks/21041', 'en', 7998), +(17431, 'Pottery of the ancient Pueblos. (1886 N 04 / 1882-1883 (pages 257-360))', 'Holmes, William Henry', '2013-02-04', 8, 'https://www.gutenberg.org/ebooks/41998', 'en', 7999), +(17432, 'The Girl from Montana', 'Hill, Grace Livingston', '2005-03-07', 83, 'https://www.gutenberg.org/ebooks/15274', 'en', 48), +(17433, 'The Beginners of a Nation\r\nA History of the Source and Rise of the Earliest English Settlements in America, with Special Reference to the Life and Character of the People', 'Eggleston, Edward', '2012-06-02', 32, 'https://www.gutenberg.org/ebooks/39882', 'en', 2649), +(17434, 'Fletcher of Madeley', 'Macdonald, Frederic W. (Frederic William)', '2012-02-22', 7, 'https://www.gutenberg.org/ebooks/38950', 'en', 5963), +(17435, 'Index of the Project Gutenberg Works of Wilkie Collins', 'Collins, Wilkie', '2018-10-13', 15, 'https://www.gutenberg.org/ebooks/58089', 'en', 198), +(17436, 'Ikuiseen rauhaan: Valtio-oikeudellinen tutkielma', 'Kant, Immanuel', '2016-11-06', 10, 'https://www.gutenberg.org/ebooks/53461', 'fi', 1122), +(17437, 'Mary\'s Rainbow', 'Feehan, Mary Edward', '2006-12-26', 18, 'https://www.gutenberg.org/ebooks/20193', 'en', 62), +(17438, 'A Foreword to the Panama-Pacific International Exposition', 'James, Juliet Helena Lumbard', '2011-08-20', 9, 'https://www.gutenberg.org/ebooks/37124', 'en', 3035), +(17439, 'Sport in Vancouver and Newfoundland', 'Rogers, John Godfrey, Sir', '2014-10-31', 17, 'https://www.gutenberg.org/ebooks/47253', 'en', 8000), +(17440, 'Pierre and His People: Tales of the Far North. Volume 1.', 'Parker, Gilbert', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6174', 'en', 2261), +(17441, 'Alice\'s Adventures in Wonderland', 'Carroll, Lewis', '2007-12-01', 125, 'https://www.gutenberg.org/ebooks/23716', 'en', 5900), +(17442, 'Een twaalftal samenspraken\r\nTot inleiding: Cd. Busken Huet\'s beschouwing over Erasmus', 'Erasmus, Desiderius', '2006-01-23', 10, 'https://www.gutenberg.org/ebooks/17523', 'nl', 4705), +(17443, 'The Grand Old Man\r\nOr, the Life and Public Services of the Right Honorable William Ewart Gladstone, Four Times Prime Minister of England', 'Cook, Richard B. (Richard Briscoe)', '2006-02-01', 40, 'https://www.gutenberg.org/ebooks/9900', 'en', 3346), +(17444, 'What is POSAT?', 'Smith, Phyllis Sterling', '2016-03-01', 21, 'https://www.gutenberg.org/ebooks/51336', 'en', 26), +(17445, 'Our Own Set: A Novel', 'Schubin, Ossip', '2011-03-24', 19, 'https://www.gutenberg.org/ebooks/35673', 'en', 1949), +(17446, 'The Lead of Honour', 'Richardson, Norval', '2014-07-22', 7, 'https://www.gutenberg.org/ebooks/46381', 'en', 847), +(17447, 'The Secrets of the German War Office', 'Graves, Armgaard Karl', '2004-11-01', 22, 'https://www.gutenberg.org/ebooks/6948', 'en', 8001), +(17448, 'In the Days of Chivalry: A Tale of the Times of the Black Prince', 'Everett-Green, Evelyn', '2004-08-15', 43, 'https://www.gutenberg.org/ebooks/13183', 'en', 6668), +(17449, 'Obedience to the Articles and Rubrics of the Church of England\na Bond of Union between the Established Clergy', 'Denniss, Edwin Proctor', '2017-05-02', 1, 'https://www.gutenberg.org/ebooks/54644', 'en', 8002), +(17450, 'The Side Of The Angels: A Novel', 'King, Basil', '2009-10-20', 35, 'https://www.gutenberg.org/ebooks/30301', 'en', 1563), +(17451, 'Ragged Lady — Volume 2', 'Howells, William Dean', '2004-10-24', 26, 'https://www.gutenberg.org/ebooks/3406', 'en', 348), +(17452, 'A German deserter\'s war experience', 'Anonymous', '2013-05-16', 54, 'https://www.gutenberg.org/ebooks/42721', 'en', 5356), +(17453, 'Historia de Gil Blas de Santillana: Novela (Vol 3 de 3)', 'Le Sage, Alain René', '2017-10-23', 10, 'https://www.gutenberg.org/ebooks/55796', 'es', 1211), +(17454, 'Dick Sand: A Captain at Fifteen', 'Verne, Jules', '2004-04-01', 57, 'https://www.gutenberg.org/ebooks/12051', 'en', 7695), +(17455, 'The Return of the Native', 'Hardy, Thomas', '2008-08-01', 8, 'https://www.gutenberg.org/ebooks/26264', 'en', 8003), +(17456, 'The Nursery, October 1877, Vol. XXII. No. 4\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 13, 'https://www.gutenberg.org/ebooks/28138', 'en', 4641), +(17457, 'The Wailing Asteroid', 'Leinster, Murray', '2015-09-20', 69, 'https://www.gutenberg.org/ebooks/50022', 'en', 26), +(17458, 'Huckleberry Finnin (Tom Sawyerin toverin) seikkailut', 'Twain, Mark', '2014-10-12', 25, 'https://www.gutenberg.org/ebooks/47095', 'fi', 1043), +(17459, 'Paradise Bend', 'White, William Patterson', '2010-12-04', 13, 'https://www.gutenberg.org/ebooks/34567', 'en', 61), +(17460, '搜神記 volume 1-3', 'Gan, Bao, active 317-322', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7260', 'zh', 4247), +(17461, 'Pörssiylimys: Erään amerikalaisen miljoonamiehen elämäntarina', 'Sinclair, Upton', '2014-06-30', 13, 'https://www.gutenberg.org/ebooks/46147', 'fi', 8004), +(17462, 'Sleep-Book\nSome of the Poetry of Slumber', NULL, '2005-09-03', 17, 'https://www.gutenberg.org/ebooks/16637', 'en', 8005), +(17463, 'A Translation of the New Testament from the original Greek\r\nHumbly Attempted with a View to Assist the Unlearned with Clearer and More Explicit Views of the Mind of the Spirit in the Scriptures of Truth', 'Haweis, Thomas', '2010-03-30', 19, 'https://www.gutenberg.org/ebooks/31829', 'en', 2781), +(17464, 'The Mentor: Two Early German Painters, Dürer and Holbein, Vol. 1, Num. 48, Serial No. 48', 'Mather, Frank Jewett', '2015-09-10', 4, 'https://www.gutenberg.org/ebooks/49933', 'en', 6306), +(17465, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 11, No. 24, March, 1873', 'Various', '2007-08-26', 13, 'https://www.gutenberg.org/ebooks/22402', 'en', 162), +(17466, 'Correspondencia Oficial e Inedita sobre la Demarcacion de Limites entre el Paraguay y el Brasil', 'Azara, Félix de', '2009-05-21', 32, 'https://www.gutenberg.org/ebooks/28904', 'es', 8006), +(17467, 'Shakespeare as a Dramatic Artist\nA Popular Illustration of the Principles of Scientific Criticism', 'Moulton, Richard G. (Richard Green)', '2013-08-10', 20, 'https://www.gutenberg.org/ebooks/43435', 'en', 489), +(17468, 'A Drift from Redwood Camp', 'Harte, Bret', '2006-05-25', 16, 'https://www.gutenberg.org/ebooks/2712', 'en', 50), +(17469, 'Jeppe sur la Monto; aŭ la Transformita Kamparano', 'Holberg, Ludvig', '2008-11-06', 7, 'https://www.gutenberg.org/ebooks/27170', 'eo', 8007), +(17470, 'The Gutenberg Webster\'s Unabridged Dictionary: Section T, U, V, and W', 'Webster, Noah', '1996-09-01', 49, 'https://www.gutenberg.org/ebooks/669', 'en', 1481), +(17471, 'Dictionnaire de la langue verte', 'Delvau, Alfred', '2017-04-03', 23, 'https://www.gutenberg.org/ebooks/54482', 'fr', 2899), +(17472, 'Vanguards of the Plains: A Romance of the Old Santa Fé Trail', 'McCarter, Margaret Hill', '2004-08-31', 19, 'https://www.gutenberg.org/ebooks/13345', 'en', 8008), +(17473, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nFlorida Narratives', 'United States. Work Projects Administration', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/12297', 'en', 8009), +(17474, 'A Valiant Ignorance; vol. 3 of 3\r\nA Novel in Three Volumes', 'Dickens, Mary Angela', '2017-09-14', 4, 'https://www.gutenberg.org/ebooks/55550', 'en', 61), +(17475, 'The World English Bible (WEB): Genesis', 'Anonymous', '2005-06-01', 30, 'https://www.gutenberg.org/ebooks/8228', 'en', 4202), +(17476, 'The Poetical Works of Elizabeth Barrett Browning, Volume 4', 'Browning, Elizabeth Barrett', '2010-01-18', 30, 'https://www.gutenberg.org/ebooks/31015', 'en', 8010), +(17477, 'The Gospel of St. John: A Series of Discourses.\r\nNew Edition', 'Maurice, Frederick Denison', '2012-11-14', 15, 'https://www.gutenberg.org/ebooks/41362', 'en', 717), +(17478, 'The Portland Sketch Book', NULL, '2012-03-27', 22, 'https://www.gutenberg.org/ebooks/39278', 'en', 8011), +(17479, 'The Great Events by Famous Historians, Volume 14', NULL, '2010-06-04', 29, 'https://www.gutenberg.org/ebooks/32690', 'en', 346), +(17480, 'The Hunted Heroes', 'Silverberg, Robert', '2008-05-27', 37, 'https://www.gutenberg.org/ebooks/25627', 'en', 112), +(17481, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 286, December 8, 1827', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11412', 'en', 133), +(17482, 'In a Syrian Saddle', 'Goodrich-Freer, A. (Ada)', '2018-05-24', 20, 'https://www.gutenberg.org/ebooks/57207', 'en', 7022), +(17483, 'Taras Bulba, and Other Tales', 'Gogol, Nikolai Vasilevich', '1998-02-01', 197, 'https://www.gutenberg.org/ebooks/1197', 'en', 179), +(17484, 'Dialogues on the Supersensual Life', 'Böhme, Jakob', '2010-09-17', 38, 'https://www.gutenberg.org/ebooks/33742', 'en', 4632), +(17485, 'Pranto de Maria Parda\r\nPorque vio as ruas de Lisboa com tão poucos ramos nas tavernas, e o vinho tão caro e ella não podia passar sem elle', 'Vicente, Gil', '2007-05-04', 18, 'https://www.gutenberg.org/ebooks/21287', 'pt', 8), +(17486, 'Ellis\'s Primary Physiology; Or, Good Health for Boys and Girls', 'Ellis, Edward Sylvester', '2016-08-11', 7, 'https://www.gutenberg.org/ebooks/52775', 'en', 8012), +(17487, 'Molly Brown\'s Post-Graduate Days', 'Speed, Nell', '2011-05-26', 14, 'https://www.gutenberg.org/ebooks/36230', 'en', 389), +(17488, 'A Thorny Path — Volume 08', 'Ebers, Georg', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/5537', 'en', 1814), +(17489, 'Kobolz: Grotesken', 'Reimann, Hans', '2014-01-07', 15, 'https://www.gutenberg.org/ebooks/44610', 'de', 60), +(17490, 'In het Balkanbergland van Bulgarije\r\nDe Aarde en haar Volken, 1906', 'Launay, L. de (Louis)', '2004-11-26', 2, 'https://www.gutenberg.org/ebooks/14160', 'nl', 8013), +(17491, 'Vrouw Grobelaar and Her Leading Cases: Seventeen Short Stories', 'Gibbon, Perceval', '2007-01-14', 12, 'https://www.gutenberg.org/ebooks/20355', 'en', 797), +(17492, 'Charlie Scott\nor, There\'s Time Enough', 'Unknown', '2008-05-10', 8, 'https://www.gutenberg.org/ebooks/25415', 'en', 1817), +(17493, 'My Brilliant Career', 'Franklin, Miles', '2004-03-01', 85, 'https://www.gutenberg.org/ebooks/11620', 'en', 792), +(17494, 'Peter the Great', 'Abbott, Jacob', '2007-06-21', 73, 'https://www.gutenberg.org/ebooks/21889', 'en', 8014), +(17495, 'Italy; with sketches of Spain and Portugal', 'Beckford, William', '2012-10-23', 16, 'https://www.gutenberg.org/ebooks/41150', 'en', 1514), +(17496, 'The Restoration of the Gospel', 'Widtsoe, Osborne J. P.', '2019-07-27', 551, 'https://www.gutenberg.org/ebooks/59993', 'en', 8015), +(17497, 'Frederica and her Guardians; Or, The Perils of Orphanhood', 'Robertson, Margaret M. (Margaret Murray)', '2011-12-03', 9, 'https://www.gutenberg.org/ebooks/38198', 'en', 264), +(17498, 'The Holyhead Road: The Mail-coach Road to Dublin. Vol. 2', 'Harper, Charles G. (Charles George)', '2019-02-08', 7, 'https://www.gutenberg.org/ebooks/58841', 'en', 776), +(17499, 'Bill the Minder', 'Robinson, W. Heath (William Heath)', '2010-08-29', 29, 'https://www.gutenberg.org/ebooks/33570', 'en', 637), +(17500, 'The Thirty Years\' War, 1618-1648', 'Gardiner, Samuel Rawson', '2012-06-25', 26, 'https://www.gutenberg.org/ebooks/40082', 'en', 4328), +(17501, 'Comedias inéditas', 'Vega, Lope de', '2018-04-24', 41, 'https://www.gutenberg.org/ebooks/57035', 'es', 206), +(17502, 'Time in the Play of Hamlet', 'Vining, Edward Payson', '2011-04-30', 15, 'https://www.gutenberg.org/ebooks/36002', 'en', 8016), +(17503, 'Histoire de France 1598-1628 (Volume 13/19)', 'Michelet, Jules', '2012-06-01', 23, 'https://www.gutenberg.org/ebooks/39876', 'fr', 624), +(17504, 'Normalarbetsdagen', 'Steffen, Gustaf Fredrik', '2016-07-10', 6, 'https://www.gutenberg.org/ebooks/52547', 'sv', 8017), +(17505, 'Lulu, Alice and Jimmie Wibblewobble', 'Garis, Howard Roger', '2005-03-07', 44, 'https://www.gutenberg.org/ebooks/15280', 'en', 8018), +(17506, 'Patty and Azalea', 'Wells, Carolyn', '2004-12-14', 20, 'https://www.gutenberg.org/ebooks/14352', 'en', 51), +(17507, 'Italian Villas and Their Gardens', 'Wharton, Edith', '2016-11-10', 45, 'https://www.gutenberg.org/ebooks/53495', 'en', 8019), +(17508, 'Nieuw-Guinee en de exploratie der \"Meervlakte\"\nDe Aarde en haar Volken, 1918', 'Langeler, J. W.', '2006-12-23', 8, 'https://www.gutenberg.org/ebooks/20167', 'nl', 8020), +(17509, 'Das deutsche Wunder: Roman', 'Stratz, Rudolph', '2018-08-29', 15, 'https://www.gutenberg.org/ebooks/57809', 'de', 579), +(17510, 'The Queen of Sheba, and My Cousin the Colonel', 'Aldrich, Thomas Bailey', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/5705', 'en', 61), +(17511, 'Eccentricities of the Animal Creation.', 'Timbs, John', '2013-12-14', 33, 'https://www.gutenberg.org/ebooks/44422', 'en', 1787), +(17512, 'O Romance da Rainha Mercedes', 'Pimentel, Alberto', '2010-12-26', 13, 'https://www.gutenberg.org/ebooks/34755', 'pt', 8021), +(17513, 'A Romany of the Snows, vol. 1\r\nBeing a Continuation of the Personal Histories of \"Pierre and His People\" and the Last Existing Records of Pretty Pierre', 'Parker, Gilbert', '2004-07-01', 22, 'https://www.gutenberg.org/ebooks/6180', 'en', 1887), +(17514, 'The Story of Venus and Tannhäuser: A Romantic Novel', 'Beardsley, Aubrey', '2015-10-14', 54, 'https://www.gutenberg.org/ebooks/50210', 'en', 48), +(17515, 'Hyvä naapuri', 'Anonymous', '2019-05-06', 5, 'https://www.gutenberg.org/ebooks/59445', 'fi', 470), +(17516, 'Tales and Novels — Volume 01\r\nMoral Tales', 'Edgeworth, Maria', '2005-09-01', 41, 'https://www.gutenberg.org/ebooks/8826', 'en', 61), +(17517, 'Stories of Mystery', NULL, '2005-08-01', 32, 'https://www.gutenberg.org/ebooks/16405', 'en', 179), +(17518, 'Der Roman eines geborenen Verbrechers\nSelbstbiographie des Strafgefangenen Antonino M...', 'M., Antonino', '2007-09-16', 26, 'https://www.gutenberg.org/ebooks/22630', 'de', 6776), +(17519, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 366, April 18, 1829', 'Various', '2004-07-12', 3, 'https://www.gutenberg.org/ebooks/12899', 'en', 133), +(17520, 'History of American Socialisms', 'Noyes, John Humphrey', '2011-03-26', 24, 'https://www.gutenberg.org/ebooks/35687', 'en', 8022), +(17521, 'Dr. Heidenhoff\'s Process', 'Bellamy, Edward', '2004-12-01', 38, 'https://www.gutenberg.org/ebooks/7052', 'en', 8023), +(17522, 'The Phantom Treasure', 'Grove, Harriet Pyne', '2014-07-22', 9, 'https://www.gutenberg.org/ebooks/46375', 'en', 3621), +(17523, 'Athalie', 'Chambers, Robert W. (Robert William)', '2008-11-27', 20, 'https://www.gutenberg.org/ebooks/27342', 'en', 109), +(17524, 'Chocolate and Cocoa Recipes and Home Made Candy Recipes', 'Hill, Janet McKenzie', '2004-08-13', 122, 'https://www.gutenberg.org/ebooks/13177', 'en', 8024), +(17525, 'Builders of United Italy', 'Holland, Rupert Sargent', '2013-08-31', 16, 'https://www.gutenberg.org/ebooks/43607', 'en', 7026), +(17526, 'The Man', 'Stoker, Bram', '2001-02-01', 124, 'https://www.gutenberg.org/ebooks/2520', 'en', 428), +(17527, 'Stories by American Authors, Volume 10', 'Various', '2010-02-08', 10, 'https://www.gutenberg.org/ebooks/31227', 'en', 1426), +(17528, 'Outpost in the Wilderness: Fort Wayne, 1706-1828', 'Poinsatte, Charles R.', '2017-10-17', 19, 'https://www.gutenberg.org/ebooks/55762', 'en', 8025), +(17529, 'War of the Worlds', 'Wells, H. G. (Herbert George)', '2008-08-01', 20, 'https://www.gutenberg.org/ebooks/26290', 'en', 2627), +(17530, 'The Iron Pincers; or, Mylio and Karvel: A Tale of the Albigensian Crusades', 'Sue, Eugène', '2010-07-08', 20, 'https://www.gutenberg.org/ebooks/33114', 'en', 8026), +(17531, 'Woodcock\'s Little Game: A Comedy-Farce, In Two Acts', 'Morton, John Maddison', '2018-07-06', 14, 'https://www.gutenberg.org/ebooks/57451', 'en', 907), +(17532, 'Andy the Acrobat\r\nOr, Out with the Greatest Show on Earth', 'Harkness, Peter T.', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10396', 'en', 3133), +(17533, 'The Romany Rye\nA Sequel to \'Lavengro\'', 'Borrow, George', '2008-04-14', 23, 'https://www.gutenberg.org/ebooks/25071', 'en', 323), +(17534, 'A Project for Flying: In Earnest at Last!', 'Hardley, Robert', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11244', 'en', 8027), +(17535, 'Patty in the City', 'Wells, Carolyn', '2018-02-17', 13, 'https://www.gutenberg.org/ebooks/56583', 'en', 8028), +(17536, 'Langford of the Three Bars', 'Boyles, Virgil D. (Virgil Dillin)', '2012-12-01', 22, 'https://www.gutenberg.org/ebooks/41534', 'en', 2418), +(17537, 'Elämän hawainnoita 02: Waimoni; Puutteen Matti', 'Päivärinta, Pietari', '2005-01-19', 4, 'https://www.gutenberg.org/ebooks/14736', 'fi', 456), +(17538, 'Bel Ami (A Ladies\' Man)\r\nThe Works of Guy de Maupassant, Vol. 6', 'Maupassant, Guy de', '2010-10-13', 146, 'https://www.gutenberg.org/ebooks/33928', 'en', 658), +(17539, 'An Address Given in to the Late King James by the Titular Archbishop of Dublin\r\nFrom the General Meeting of the Romish Bishops and Clergy of Ireland, Held in May Last, by That King\'s Order. Wherein Several Things Relating to the Popish Designs upon These Three Kingdoms, Are Discovered. The Original Whereof Was Found in the Late King James\'s Closet, in the Castle of Dublin, at His Leaving That City: And the Copy Whereof Was Found in the Titular Archbishop\'s Lodgings. Now Publish\'d with Reflections on Each Paragraph.', NULL, '2018-12-06', 6, 'https://www.gutenberg.org/ebooks/58419', 'en', 8029), +(17540, 'The Nation\'s River: A report on the Potomac\r\nFrom the U.S. Department of the Interior', 'United States. Department of the Interior', '2007-02-02', 17, 'https://www.gutenberg.org/ebooks/20503', 'en', 8030), +(17541, 'The Inside of the Cup — Volume 06', 'Churchill, Winston', '2004-10-17', 17, 'https://www.gutenberg.org/ebooks/5361', 'en', 4927), +(17542, 'Munster', 'Gwynn, Stephen Lucius', '2013-10-26', 9, 'https://www.gutenberg.org/ebooks/44046', 'en', 8031), +(17543, 'Harper\'s Young People, March 29, 1881\nAn Illustrated Weekly', 'Various', '2014-03-23', 5, 'https://www.gutenberg.org/ebooks/45194', 'en', 479), +(17544, 'Välskärin kertomuksia 4.2\nVaasan prinsessa', 'Topelius, Zacharias', '2011-06-19', 8, 'https://www.gutenberg.org/ebooks/36466', 'fi', 8032), +(17545, 'Poèmes (nouvelle série): Les soirs, Les débacles, Les flambeaux noirs', 'Verhaeren, Emile', '2016-05-22', 12, 'https://www.gutenberg.org/ebooks/52123', 'fr', 3130), +(17546, 'Op de olifantenjacht in Oeganda\r\nDe Aarde en haar Volken, 1910', 'Langsdorff, Baron de', '2005-06-14', 6, 'https://www.gutenberg.org/ebooks/16061', 'nl', 8033), +(17547, 'The Substance of a Journal During a Residence at the Red River Colony, British North America\nand Frequent Excursions Among the North-West American\nIndians, In the Years 1820, 1821, 1822, 1823.', 'West, John', '2007-08-06', 16, 'https://www.gutenberg.org/ebooks/22254', 'en', 4781); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(17548, 'Roy Blakely, Pathfinder', 'Fitzhugh, Percy Keese', '2006-11-14', 10, 'https://www.gutenberg.org/ebooks/19815', 'en', 2994), +(17549, 'The Development of Religious Liberty in Connecticut', 'Greene, M. Louise (Maria Louise)', '2005-02-01', 7, 'https://www.gutenberg.org/ebooks/7436', 'en', 8034), +(17550, 'Secrets of Wise Men, Chemists and Great Physicians', 'David, William K. (William King)', '2014-08-28', 75, 'https://www.gutenberg.org/ebooks/46711', 'en', 2161), +(17551, 'La Duchesse De Palliano', 'Stendhal', '1997-02-01', 54, 'https://www.gutenberg.org/ebooks/803', 'fr', 48), +(17552, 'Minor Poems', NULL, '2010-11-15', 15, 'https://www.gutenberg.org/ebooks/34331', 'en', 2346), +(17553, 'In the King\'s Name: The Cruise of the \"Kestrel\"', 'Fenn, George Manville', '2007-11-06', 24, 'https://www.gutenberg.org/ebooks/23386', 'en', 246), +(17554, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 28: Rome', 'Casanova, Giacomo', '2004-12-12', 22, 'https://www.gutenberg.org/ebooks/2978', 'en', 4391), +(17555, 'Viaggio a Costantinopoli (1609-1621)', 'Alberti, Tommaso', '2015-12-12', 112, 'https://www.gutenberg.org/ebooks/50674', 'it', 2570), +(17556, 'Beatrice', 'Haggard, H. Rider (Henry Rider)', '2006-04-06', 55, 'https://www.gutenberg.org/ebooks/3096', 'en', 401), +(17557, 'Asparagus, its culture for home use and for market\r\nA practical treatise on the planting, cultivation, harvesting, marketing, and preserving of asparagus, with notes on its history', 'Hexamer, F. M. (Fred Maier)', '2010-03-14', 28, 'https://www.gutenberg.org/ebooks/31643', 'en', 8035), +(17558, 'Spiritismo?', 'Capuana, Luigi', '2015-08-22', 16, 'https://www.gutenberg.org/ebooks/49759', 'it', 504), +(17559, 'The Irish Penny Journal, Vol. 1 No. 45, May 8, 1841', 'Various', '2017-08-08', 2, 'https://www.gutenberg.org/ebooks/55306', 'en', 81), +(17560, 'The Gifts of Asti', 'Norton, Andre', '2006-08-11', 102, 'https://www.gutenberg.org/ebooks/19029', 'en', 26), +(17561, 'Tolstoy on Shakespeare: A Critical Essay on Shakespeare', 'Tolstoy, Leo, graf', '2009-01-07', 315, 'https://www.gutenberg.org/ebooks/27726', 'en', 1735), +(17562, 'Notes and Queries, Number 04, November 24, 1849', 'Various', '2004-09-23', 13, 'https://www.gutenberg.org/ebooks/13513', 'en', 105), +(17563, 'The Arrow of Fire\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-07-20', 16, 'https://www.gutenberg.org/ebooks/43263', 'en', 2014), +(17564, 'Det Gamle Testamente af 1931', NULL, '2000-04-01', 18, 'https://www.gutenberg.org/ebooks/2144', 'da', 8036), +(17565, 'With Joffre at Verdun: A Story of the Western Front', 'Brereton, F. S. (Frederick Sadleir)', '2009-12-28', 16, 'https://www.gutenberg.org/ebooks/30791', 'en', 579), +(17566, 'Our Town and Civic Duty', 'Fryer, Jane Eayre', '2017-11-07', 16, 'https://www.gutenberg.org/ebooks/55908', 'en', 8037), +(17567, 'The Caxtons: A Family Picture — Volume 18', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7604', 'en', 376), +(17568, 'The Spruce Street Tragedy; or, Old Spicer Handles a Double Mystery', NULL, '2014-08-07', 19, 'https://www.gutenberg.org/ebooks/46523', 'en', 128), +(17569, '\"The Greatest Failure in All History\"\r\nA Critical Examination of the Actual Workings of Bolshevism in Russia', 'Spargo, John', '2016-03-28', 13, 'https://www.gutenberg.org/ebooks/51594', 'en', 3112), +(17570, 'Madge Morton, Captain of the Merry Maid', 'Chalmers, Amy D. V.', '2005-07-09', 15, 'https://www.gutenberg.org/ebooks/16253', 'en', 7405), +(17571, 'The Long Roll', 'Johnston, Mary', '2007-07-13', 59, 'https://www.gutenberg.org/ebooks/22066', 'en', 2564), +(17572, 'What Timmy Did', 'Lowndes, Marie Belloc', '2005-12-23', 17, 'https://www.gutenberg.org/ebooks/17381', 'en', 167), +(17573, 'Dictionary of Explosives', 'Marshall, Arthur', '2015-11-13', 25, 'https://www.gutenberg.org/ebooks/50446', 'en', 1803), +(17574, 'Korvetten Heimdals Togt til de vestindiske Farvande i Aarene 1861 & 1862', 'Holm, Jacob', '2010-10-19', 7, 'https://www.gutenberg.org/ebooks/34103', 'da', 8038), +(17575, 'The Chautauquan, Vol. 04, April 1884, No. 7', 'Chautauqua Literary and Scientific Circle', '2017-07-17', 4, 'https://www.gutenberg.org/ebooks/55134', 'en', 1453), +(17576, 'The Girl in the Mirror', 'Jordan, Elizabeth Garver', '2010-03-02', 14, 'https://www.gutenberg.org/ebooks/31471', 'en', 8039), +(17577, 'Queen of the Black Coast', 'Howard, Robert E. (Robert Ervin)', '2013-02-24', 194, 'https://www.gutenberg.org/ebooks/42183', 'en', 4698), +(17578, 'Up the Mazaruni for Diamonds', 'La Varre, William', '2013-06-28', 16, 'https://www.gutenberg.org/ebooks/43051', 'en', 8040), +(17579, 'The Man Who Lost Himself', 'Stacpoole, H. De Vere (Henry De Vere)', '2007-12-23', 31, 'https://www.gutenberg.org/ebooks/23988', 'en', 8041), +(17580, 'Up from Slavery: An Autobiography', 'Washington, Booker T.', '2000-10-01', 590, 'https://www.gutenberg.org/ebooks/2376', 'en', 384), +(17581, 'A Handful of Stars: Texts That Have Moved Great Minds', 'Boreham, Frank', '2008-12-13', 50, 'https://www.gutenberg.org/ebooks/27514', 'en', 8042), +(17582, 'Mardi: and A Voyage Thither, Vol. II', 'Melville, Herman', '2004-10-12', 88, 'https://www.gutenberg.org/ebooks/13721', 'en', 2022), +(17583, 'Historical record of the Sixty-Seventh, or the South Hampshire Regiment\r\nContaining an account of the formation of the regiment in 1758, and of its subsequent services to 1849', 'Cannon, Richard', '2018-08-09', 2, 'https://www.gutenberg.org/ebooks/57663', 'en', 8043), +(17584, 'Short Sketches from Oldest America', 'Driggs, John B. (John Beach)', '2008-01-21', 6, 'https://www.gutenberg.org/ebooks/24391', 'en', 8044), +(17585, 'Die Amazone', 'Edschmid, Kasimir', '2010-08-02', 18, 'https://www.gutenberg.org/ebooks/33326', 'de', 61), +(17586, 'Verbrüderung: Gedichte', 'Becher, Johannes Robert', '2012-12-26', 7, 'https://www.gutenberg.org/ebooks/41706', 'de', 4162), +(17587, '海遊記', 'Wugenzi, active 1573', '2008-04-30', 14, 'https://www.gutenberg.org/ebooks/25243', 'zh', 3304), +(17588, 'Punch, or the London Charivari, Volume 153, October 24, 1917', 'Various', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11076', 'en', 134), +(17589, 'A Catechism of the Steam Engine', 'Bourne, John, C.E.', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/10998', 'en', 8045), +(17590, 'The Influence of the Organ in History\r\nInaugural Lecture of the Department of the Organ in the College of Music of Boston University', 'Buck, Dudley', '2011-10-18', 7, 'https://www.gutenberg.org/ebooks/37786', 'en', 8046), +(17591, 'Rung Ho! A Novel', 'Mundy, Talbot', '2004-02-01', 42, 'https://www.gutenberg.org/ebooks/5153', 'en', 1228), +(17592, 'My Adventures with Your Money', 'Rice, George Graham', '2013-11-24', 16, 'https://www.gutenberg.org/ebooks/44274', 'en', 8047), +(17593, 'Experiments and Considerations Touching Colours (1664)', 'Boyle, Robert', '2004-12-28', 35, 'https://www.gutenberg.org/ebooks/14504', 'en', 8048), +(17594, 'Quiet Talks on Power', 'Gordon, S. D. (Samuel Dickey)', '2007-03-03', 34, 'https://www.gutenberg.org/ebooks/20731', 'en', 1130), +(17595, 'The Little Navajo Herder', 'Clark, Ann Nolan', '2016-06-12', 6, 'https://www.gutenberg.org/ebooks/52311', 'en', 8049), +(17596, 'Cruisings in the Cascades\nA Narrative of Travel, Exploration, Amateur Photography,\nHunting, and Fishing', 'Shields, G. O. (George O.)', '2011-07-07', 9, 'https://www.gutenberg.org/ebooks/36654', 'en', 8050), +(17597, 'The Alchemist', 'Jonson, Ben', '2003-05-01', 1159, 'https://www.gutenberg.org/ebooks/4081', 'en', 8051), +(17598, 'Mappo, the Merry Monkey: His Many Adventures', 'Barnum, Richard', '2004-11-08', 30, 'https://www.gutenberg.org/ebooks/13980', 'en', 25), +(17599, 'An Essay on the Application of the Lunar Caustic in the Cure of Certain Wounds and Ulcers', 'Higginbottom, John', '2007-12-04', 20, 'https://www.gutenberg.org/ebooks/23729', 'en', 8052), +(17600, 'Vamiré: Romance dos tempos primitivos', 'Rosny, J.-H., aîné', '2009-06-24', 6, 'https://www.gutenberg.org/ebooks/29213', 'pt', 5072), +(17601, 'Aisopolaisia Satuja', 'Phaedrus', '2016-02-27', 6, 'https://www.gutenberg.org/ebooks/51309', 'fi', 8053), +(17602, 'A Trip to Manitoba', 'FitzGibbon, Mary Agnes', '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/7099', 'en', 7298), +(17603, 'Creation and Its Records\r\nA Brief Statement of Christian Belief with Reference to Modern Facts and Ancient Scripture', 'Baden-Powell, B. H. (Baden Henry)', '2004-07-08', 32, 'https://www.gutenberg.org/ebooks/12852', 'en', 2713), +(17604, 'Flying for France: With the American Escadrille at Verdun', 'McConnell, James R. (James Rogers)', '2004-11-01', 28, 'https://www.gutenberg.org/ebooks/6977', 'en', 4704), +(17605, 'Life and Adventures of Calamity Jane', 'Calamity Jane', '1996-04-01', 109, 'https://www.gutenberg.org/ebooks/490', 'en', 8054), +(17606, 'The Continental Monthly, Vol. 5, No. 2, February, 1864\r\nDevoted To Literature And National Policy', 'Various', '2006-06-11', 23, 'https://www.gutenberg.org/ebooks/18554', 'en', 162), +(17607, 'Ίων', 'Euripides', '2008-12-02', 20, 'https://www.gutenberg.org/ebooks/27389', 'el', 1298), +(17608, 'Miracles of Our Lord', 'MacDonald, George', '2005-10-01', 81, 'https://www.gutenberg.org/ebooks/9103', 'en', 8055), +(17609, 'The Girl\'s Own Paper, Vol. VIII, No. 359, November 13, 1886', 'Various', '2015-02-09', 15, 'https://www.gutenberg.org/ebooks/48224', 'en', 563), +(17610, 'The Book of the Thousand Nights and a Night — Volume 05', NULL, '2002-09-01', 91, 'https://www.gutenberg.org/ebooks/3439', 'en', 1007), +(17611, 'Irish Wonders\r\nThe Ghosts, Giants, Pooka, Demons, Leprechawns, Banshees, Fairies, Witches, Widows, Old Maids, and other Marvels of the Emerald Isle', 'McAnally, D. R. (David Russell)', '2006-10-07', 150, 'https://www.gutenberg.org/ebooks/19486', 'en', 8056), +(17612, 'La filosofia italiana nelle sue relazioni con la filosofia europea', 'Spaventa, Bertrando', '2019-07-21', 237, 'https://www.gutenberg.org/ebooks/59958', 'it', 8057), +(17613, 'The Dorrance Domain', 'Wells, Carolyn', '2012-03-08', 14, 'https://www.gutenberg.org/ebooks/39081', 'en', 751), +(17614, 'Here Lies', 'Wandrei, Howard', '2010-05-21', 16, 'https://www.gutenberg.org/ebooks/32469', 'en', 61), +(17615, 'The Boy Scouts of Lenox; Or, The Hike Over Big Bear Mountain', 'Webster, Frank V.', '2007-06-15', 36, 'https://www.gutenberg.org/ebooks/21842', 'en', 8058), +(17616, 'Histoire Anecdotique de l\'Ancien Théâtre en France, Tome Second\r\nThéâtre-Français, Opéra, Opéra-Comique, Théâtre-Italien, Vaudeville, Théâtres forains, etc...', 'Du Casse, Albert', '2012-06-20', 17, 'https://www.gutenberg.org/ebooks/40049', 'fr', 8059), +(17617, 'London and the Kingdom - Volume 2\r\nA History Derived Mainly from the Archives at Guildhall in the Custody of the Corporation of the City of London.', 'Sharpe, Reginald R. (Reginald Robinson)', '2007-04-05', 25, 'https://www.gutenberg.org/ebooks/20990', 'en', 4685), +(17618, 'Stars of the Opera\r\nA Description of Operas & a Series of Personal Interviews with Marcela Sembrich, Emma Eames, Emma Calvé, Lillian Nordica, Lilli Lehmann, Geraldine Farrar & Nellie Melba', 'Wagnalls, Mabel', '2011-11-27', 15, 'https://www.gutenberg.org/ebooks/38153', 'en', 8060), +(17619, 'The Essays of Arthur Schopenhauer; On Human Nature', 'Schopenhauer, Arthur', '2004-01-01', 153, 'https://www.gutenberg.org/ebooks/10739', 'en', 8061), +(17620, 'The Boy Volunteers with the French Airmen', 'Ward, Kenneth', '2011-11-05', 18, 'https://www.gutenberg.org/ebooks/37927', 'en', 2564), +(17621, 'The American Missionary — Volume 41, No. 2, February, 1887', 'Various', '2018-04-03', 3, 'https://www.gutenberg.org/ebooks/56910', 'en', 395), +(17622, 'Index of the Project Gutenberg Works of George Gibbs', 'Gibbs, George', '2019-03-30', 7, 'https://www.gutenberg.org/ebooks/59164', 'en', 198), +(17623, 'Adventurings in the Psychical', 'Bruce, H. Addington (Henry Addington)', '2012-09-27', 40, 'https://www.gutenberg.org/ebooks/40875', 'en', 6363), +(17624, 'Ce que disait la flamme', 'Bernier, Hector', '2004-12-20', 15, 'https://www.gutenberg.org/ebooks/14399', 'fr', 8062), +(17625, 'Florante at Laura', 'Balagtas, Francisco', '2005-05-17', 202, 'https://www.gutenberg.org/ebooks/15845', 'tl', 8063), +(17626, 'Les historiettes de Tallemant des Réaux, tome second\r\nMémoires pour servir à l\'histoire du XVIIe siècle', 'Tallemant des Réaux', '2011-12-21', 72, 'https://www.gutenberg.org/ebooks/38361', 'fr', 3746), +(17627, 'Friedrich v. Schiller\'s Biographie', 'Döring, Heinrich', '2005-02-09', 20, 'https://www.gutenberg.org/ebooks/14997', 'de', 4298), +(17628, 'Barbarossa, and Other Tales', 'Heyse, Paul', '2010-09-21', 36, 'https://www.gutenberg.org/ebooks/33789', 'en', 803), +(17629, 'The Almost-Men', 'Cox, Irving E.', '2019-04-25', 52, 'https://www.gutenberg.org/ebooks/59356', 'en', 424), +(17630, 'Green Fields and Running Brooks, and Other Poems', 'Riley, James Whitcomb', '2005-02-16', 14, 'https://www.gutenberg.org/ebooks/15079', 'en', 8), +(17631, 'Montrose', 'Morris, Mowbray', '2014-05-21', 7, 'https://www.gutenberg.org/ebooks/45709', 'en', 8064), +(17632, 'The Domestic Cat', 'Stables, Gordon', '2011-09-06', 116, 'https://www.gutenberg.org/ebooks/37329', 'en', 1576), +(17633, 'The Architecture of Provence and the Riviera', 'MacGibbon, David', '2018-11-14', 12, 'https://www.gutenberg.org/ebooks/58284', 'en', 8065), +(17634, 'Sight Unseen', 'Rinehart, Mary Roberts', '1999-11-01', 48, 'https://www.gutenberg.org/ebooks/1960', 'en', 128), +(17635, 'L\'idée de Dieu dans la philosophie religieuse de la Chine', 'Rosny, Lucien de', '2010-01-11', 20, 'https://www.gutenberg.org/ebooks/30930', 'fr', 8066), +(17636, 'The Net', 'Beach, Rex', '2004-08-01', 24, 'https://www.gutenberg.org/ebooks/6379', 'en', 8067), +(17637, 'Glory and the Other Girl', 'Donnell, Annie Hamilton', '2009-02-04', 18, 'https://www.gutenberg.org/ebooks/27987', 'en', 62), +(17638, 'Hard Guy', 'Browne, Howard', '2008-10-09', 31, 'https://www.gutenberg.org/ebooks/26855', 'en', 179), +(17639, 'The Fairy Tales of Charles Perrault', 'Perrault, Charles', '2009-06-01', 343, 'https://www.gutenberg.org/ebooks/29021', 'en', 1007), +(17640, 'The Hunted Outlaw, or, Donald Morrison, the Canadian Rob Roy', 'Anonymous', '2005-11-01', 8, 'https://www.gutenberg.org/ebooks/9331', 'en', 8068), +(17641, 'An Elementary Text-book of the Microscope\r\nincluding a description of the methods of preparing and mounting objects, etc.', 'Griffith, J. W. (John William)', '2015-01-18', 36, 'https://www.gutenberg.org/ebooks/48016', 'en', 2420), +(17642, 'Early Reviews of English Poets', 'Haney, John Louis', '2006-07-06', 16, 'https://www.gutenberg.org/ebooks/18766', 'en', 8069), +(17643, 'Suomen Kansan Vanhoja Runoja ynnä myös Nykyisempiä Lauluja 1', 'Topelius, Zacharias', '2017-03-28', 29, 'https://www.gutenberg.org/ebooks/54449', 'fi', 1171), +(17644, 'Chapter of Autobiography', 'Gladstone, W. E. (William Ewart)', '2015-01-03', 18, 'https://www.gutenberg.org/ebooks/47862', 'en', 4282), +(17645, 'Robert Toombs\nStatesman, Speaker, Soldier, Sage', 'Stovall, Pleasant A.', '2008-07-16', 15, 'https://www.gutenberg.org/ebooks/26069', 'en', 8070), +(17646, 'Verses of a V.A.D.', 'Brittain, Vera', '2016-05-01', 20, 'https://www.gutenberg.org/ebooks/51907', 'en', 2100), +(17647, 'Robinson Crusoe (I/II)', 'Defoe, Daniel', '2012-01-29', 53, 'https://www.gutenberg.org/ebooks/38705', 'fr', 1592), +(17648, 'Cymbeline', 'Shakespeare, William', '1998-11-01', 43, 'https://www.gutenberg.org/ebooks/1538', 'en', 8071), +(17649, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1603-04', 'Motley, John Lothrop', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/4876', 'en', 3372), +(17650, '山海經', 'Anonymous', '2008-05-02', 156, 'https://www.gutenberg.org/ebooks/25288', 'zh', 8072), +(17651, 'The Library', 'Crabbe, George', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/5198', 'en', 8073), +(17652, 'Histoire de la Révolution française, Tome 05', 'Thiers, Adolphe', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/10953', 'fr', 1536), +(17653, 'Momenti: Liriche', 'Aleramo, Sibilla', '2016-10-04', 35, 'https://www.gutenberg.org/ebooks/53208', 'it', 644), +(17654, 'Hernando Cortes', 'Campe, Joachim Heinrich', '2019-06-11', 28, 'https://www.gutenberg.org/ebooks/59732', 'en', 8074), +(17655, 'Imaginary Conversations and Poems: A Selection', 'Landor, Walter Savage', '2007-05-28', 67, 'https://www.gutenberg.org/ebooks/21628', 'en', 8), +(17656, 'The Shadow of the North: A Story of Old New York and a Lost Campaign', 'Altsheler, Joseph A. (Joseph Alexander)', '2004-04-01', 50, 'https://www.gutenberg.org/ebooks/11881', 'en', 4783), +(17657, 'Toilers of Babylon: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2013-06-18', 6, 'https://www.gutenberg.org/ebooks/42974', 'en', 1380), +(17658, 'The Hour of Battle', 'Sheckley, Robert', '2009-07-18', 76, 'https://www.gutenberg.org/ebooks/29445', 'en', 179), +(17659, 'Historic Tales: The Romance of Reality. Vol. 01 (of 15), American (1)', 'Morris, Charles', '2005-07-15', 10, 'https://www.gutenberg.org/ebooks/16298', 'en', 207), +(17660, 'A Man to His Mate', 'Dunn, J. Allan, (Joseph Allan)', '2009-04-24', 29, 'https://www.gutenberg.org/ebooks/28597', 'en', 324), +(17661, 'Luther, vol. 6 of 6', 'Grisar, Hartmann', '2017-05-30', 20, 'https://www.gutenberg.org/ebooks/54811', 'en', 1073), +(17662, 'Public Lands and Agrarian Laws of the Roman Republic', 'Stephenson, Andrew', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/12638', 'en', 8075), +(17663, 'Die doppelköpfige Nymphe\nAufsätze über die Literatur und die Gegenwart', 'Edschmid, Kasimir', '2011-04-11', 8, 'https://www.gutenberg.org/ebooks/35826', 'de', 8076), +(17664, 'Simple Simon\nSilhouette Series', 'Anonymous', '2007-10-05', 18, 'https://www.gutenberg.org/ebooks/22891', 'en', 343), +(17665, 'Three Plays', 'Pirandello, Luigi', '2013-02-21', 107, 'https://www.gutenberg.org/ebooks/42148', 'en', 8077), +(17666, 'Scientific American Supplement, No. 362, December 9, 1882', 'Various', '2005-08-01', 24, 'https://www.gutenberg.org/ebooks/8687', 'en', 210), +(17667, 'Kipling Stories and Poems Every Child Should Know, Book II', 'Kipling, Rudyard', '2009-11-30', 185, 'https://www.gutenberg.org/ebooks/30568', 'en', 179), +(17668, 'Night and Morning, Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 33, 'https://www.gutenberg.org/ebooks/9755', 'en', 401), +(17669, 'The Chickens of Fowl Farm', 'Barksdale, Lena E.', '2007-12-20', 13, 'https://www.gutenberg.org/ebooks/23943', 'en', 7698), +(17670, 'Foxglove Manor: A Novel, Volume 2 (of 3)', 'Buchanan, Robert Williams', '2015-03-12', 6, 'https://www.gutenberg.org/ebooks/48472', 'en', 55), +(17671, 'L\'argent des autres: 2. La pêche en eau trouble', 'Gaboriau, Emile', '2006-05-02', 20, 'https://www.gutenberg.org/ebooks/18302', 'fr', 687), +(17672, 'Heath\'s Modern Language Series: El trovador', 'García Gutiérrez, Antonio', '2009-08-12', 30, 'https://www.gutenberg.org/ebooks/29677', 'es', 2729), +(17673, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 02', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 9, 'https://www.gutenberg.org/ebooks/3861', 'en', 1247), +(17674, 'Airy Fairy Lilian', 'Duchess', '2011-02-09', 11, 'https://www.gutenberg.org/ebooks/35228', 'en', 348), +(17675, 'Die Jobsiade: Ein komisches Heldengedicht in drei Teilen', 'Kortum, Karl Arnold', '2014-12-09', 2, 'https://www.gutenberg.org/ebooks/47608', 'de', 8078), +(17676, 'Westerfelt', 'Harben, Will N. (Will Nathaniel)', '2005-11-28', 11, 'https://www.gutenberg.org/ebooks/17178', 'en', 8079), +(17677, 'Personal Sketches of His Own Times, Vol. 1 (of 3)', 'Barrington, Jonah, Sir', '2015-08-27', 5, 'https://www.gutenberg.org/ebooks/49792', 'en', 8080), +(17678, 'Corinne; Or, Italy. Volume 1 (of 2)', 'Staël, Madame de (Anne-Louise-Germaine)', '2005-10-17', 42, 'https://www.gutenberg.org/ebooks/16896', 'en', 8081), +(17679, 'What Shall I Be? A Chat With Young People', 'Cassilly, Francis Bernard', '2010-03-18', 10, 'https://www.gutenberg.org/ebooks/31688', 'en', 8082), +(17680, 'Oorlogsvisioenen', 'Buysse, Cyriel', '2006-04-08', 10, 'https://www.gutenberg.org/ebooks/18130', 'nl', 579), +(17681, 'The House of Rimmon: A Drama in Four Acts', 'Van Dyke, Henry', '2006-03-08', 4, 'https://www.gutenberg.org/ebooks/17944', 'en', 8083), +(17682, 'Narrative and Legendary Poems, Complete\r\nVolume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 28, 'https://www.gutenberg.org/ebooks/9567', 'en', 350), +(17683, 'Spartacus: Viisinäytöksinen näytelmä ynnä Epilogi', 'Lehtimäki, Konrad', '2015-04-05', 8, 'https://www.gutenberg.org/ebooks/48640', 'fi', 8084), +(17684, 'Suburban Residences, and How to Circumvent Them', 'Panton, J. E. (Jane Ellen)', '2016-12-26', 10, 'https://www.gutenberg.org/ebooks/53806', 'en', 4442), +(17685, 'Church and State as Seen in the Formation of Christendom', 'Allies, T. W. (Thomas William)', '2012-01-09', 9, 'https://www.gutenberg.org/ebooks/38537', 'en', 8085), +(17686, 'A Little Miss Nobody; Or, With the Girls of Pinewood Hall', 'Marlowe, Amy Bell', '2008-01-04', 32, 'https://www.gutenberg.org/ebooks/24168', 'en', 62), +(17687, 'Punainen jumala', 'London, Jack', '2018-02-11', 7, 'https://www.gutenberg.org/ebooks/56548', 'fi', 3558), +(17688, 'Mildred at Home: With Something About Her Relatives and Friends.', 'Finley, Martha', '2014-06-14', 22, 'https://www.gutenberg.org/ebooks/45963', 'en', 3129), +(17689, '\"Pig-Headed\" Sailor Men\r\nFrom \"The Strange Adventure Of James Shervinton and Other\r\nStories\" - 1902', 'Becke, Louis', '2008-03-29', 14, 'https://www.gutenberg.org/ebooks/24954', 'en', 179), +(17690, 'An Introduction to Yoga', 'Besant, Annie', '2003-07-01', 148, 'https://www.gutenberg.org/ebooks/4278', 'en', 8086), +(17691, 'The Young Lieutenant; or, The Adventures of an Army Officer', 'Optic, Oliver', '2008-06-23', 29, 'https://www.gutenberg.org/ebooks/25886', 'en', 403), +(17692, 'The Lost Door', 'Quick, Dorothy', '2010-06-16', 9, 'https://www.gutenberg.org/ebooks/32831', 'en', 6896), +(17693, 'Narrative of William W. Brown, a Fugitive Slave. Second Edition', 'Brown, William Wells', '2019-05-13', 14, 'https://www.gutenberg.org/ebooks/59500', 'en', 8087), +(17694, 'The Fortunes of Nigel', 'Scott, Walter', '2004-06-01', 61, 'https://www.gutenberg.org/ebooks/5950', 'en', 98), +(17695, 'Zigzag Journeys in Europe: Vacation Rambles in Historic Lands', 'Butterworth, Hezekiah', '2010-08-01', 15, 'https://www.gutenberg.org/ebooks/33319', 'en', 8088), +(17696, 'Der Held unserer Zeit: Kaukasische Lebensbilder', 'Lermontov, Mikhail Iurevich', '2012-05-05', 20, 'https://www.gutenberg.org/ebooks/39623', 'de', 8089), +(17697, 'A Christmas Carol; Or, The Miser\'s Warning!\r\n(Adapted from Charles Dickens\' Celebrated Work.)', 'Dickens, Charles', '2012-12-30', 58, 'https://www.gutenberg.org/ebooks/41739', 'en', 8090), +(17698, 'Eugénie Grandet', 'Balzac, Honoré de', '2004-02-01', 104, 'https://www.gutenberg.org/ebooks/11049', 'fr', 642), +(17699, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1608b', 'Motley, John Lothrop', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/4882', 'en', 3372), +(17700, 'Mediæval London, Volume 2: Ecclesiastical', 'Besant, Walter', '2019-01-04', 8, 'https://www.gutenberg.org/ebooks/58614', 'en', 1487), +(17701, 'The Blood Red Dawn', 'Dobie, Charles Caldwell', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/11875', 'en', 6391), +(17702, 'Punch, or the London Charivari, Vol. 109, November 2nd, 1895', 'Various', '2014-04-15', 6, 'https://www.gutenberg.org/ebooks/45399', 'en', 134), +(17703, 'Satuja ja tarinoita V', 'Andersen, H. C. (Hans Christian)', '2017-11-11', 16, 'https://www.gutenberg.org/ebooks/55937', 'fi', 1007), +(17704, 'Balthasar and Other Works - 1909', 'France, Anatole', '2008-05-09', 16, 'https://www.gutenberg.org/ebooks/22059', 'en', 58), +(17705, 'Publications of the Mississippi Historical Society, Volume 01 (of 14), 1898', 'Mississippi Historical Society', '2013-06-18', 11, 'https://www.gutenberg.org/ebooks/42980', 'en', 8091), +(17706, 'Far-away Stories', 'Locke, William John', '2015-11-18', 48, 'https://www.gutenberg.org/ebooks/50479', 'en', 409), +(17707, 'The Revolutions of Portugal', 'Vertot, abbé de', '2013-09-30', 2, 'https://www.gutenberg.org/ebooks/43852', 'en', 8092), +(17708, 'Hints on Horsemanship, to a Nephew and Niece\nor, Common Sense and Common Errors in Common Riding', 'Greenwood, George', '2009-04-12', 23, 'https://www.gutenberg.org/ebooks/28563', 'en', 2240), +(17709, 'The Alchemist\'s Secret', 'Williams, Isabel Cecilia', '2006-09-09', 43, 'https://www.gutenberg.org/ebooks/19224', 'en', 61), +(17710, 'Critical Miscellanies (Vol. 2 of 3), Essay 2: Turgot', 'Morley, John', '2007-10-03', 12, 'https://www.gutenberg.org/ebooks/22865', 'en', 8093), +(17711, 'Bravo, Bob! De padvinder uit Canada', 'Home, Andrew', '2015-07-30', 4, 'https://www.gutenberg.org/ebooks/49554', 'nl', 2154), +(17712, 'A Columbus of Space', 'Serviss, Garrett Putman', '2005-08-01', 29, 'https://www.gutenberg.org/ebooks/8673', 'en', 26), +(17713, 'The Adventure of the Devil\'s Foot', 'Doyle, Arthur Conan', '2000-10-01', 253, 'https://www.gutenberg.org/ebooks/2349', 'en', 430), +(17714, 'Duality of Voice', 'Sutro, Emil', '2015-03-13', 10, 'https://www.gutenberg.org/ebooks/48486', 'en', 3663), +(17715, 'The Georgics', 'Virgil', '1995-03-01', 133, 'https://www.gutenberg.org/ebooks/232', 'en', 8094), +(17716, 'Irish Nationality', 'Green, Alice Stopford', '2011-01-09', 15, 'https://www.gutenberg.org/ebooks/34900', 'en', 7442), +(17717, 'The Little Girl Lost\nA Tale for Little Girls', 'Raper, Eleanor', '2009-08-13', 26, 'https://www.gutenberg.org/ebooks/29683', 'en', 4014), +(17718, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 4', 'Goldsmith, Lewis', '2004-12-04', 13, 'https://www.gutenberg.org/ebooks/3895', 'en', 840), +(17719, 'Farmer', 'Reynolds, Mack', '2016-04-19', 39, 'https://www.gutenberg.org/ebooks/51799', 'en', 8095), +(17720, 'An Essay on Criticism', 'Pope, Alexander', '2005-02-01', 131, 'https://www.gutenberg.org/ebooks/7409', 'en', 5878), +(17721, 'Die von denen Faunen gepeitschte Laster', 'Zäunemann, Sidonia Hedwig', '2001-12-01', 39, 'https://www.gutenberg.org/ebooks/2947', 'de', 1518), +(17722, 'Gösta Berling: Erzählungen aus dem alten Wermland', 'Lagerlöf, Selma', '2009-05-10', 40, 'https://www.gutenberg.org/ebooks/28751', 'de', 1674), +(17723, 'Some Famous Women', 'Creighton, Louise', '2015-08-23', 6, 'https://www.gutenberg.org/ebooks/49766', 'en', 8096), +(17724, 'Between Friends', 'Chambers, Robert W. (Robert William)', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/8441', 'en', 8097), +(17725, 'Le monsieur au parapluie', 'Moinaux, Jules', '2005-10-12', 9, 'https://www.gutenberg.org/ebooks/16862', 'fr', 61), +(17726, 'The Lawton Girl', 'Frederic, Harold', '2017-08-11', 11, 'https://www.gutenberg.org/ebooks/55339', 'en', 8098), +(17727, 'Dave Porter at Star Ranch; Or, The Cowboy\'s Secret', 'Stratemeyer, Edward', '2006-08-09', 27, 'https://www.gutenberg.org/ebooks/19016', 'en', 2046), +(17728, 'Tiranni minimi', 'Rovetta, Gerolamo', '2009-01-06', 8, 'https://www.gutenberg.org/ebooks/27719', 'it', 860), +(17729, 'Historical Papers\r\nPart 3 from Volume VI of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 15, 'https://www.gutenberg.org/ebooks/9593', 'en', 7868), +(17730, 'Myrsky', 'Shakespeare, William', '2014-02-08', 18, 'https://www.gutenberg.org/ebooks/44845', 'fi', 8099), +(17731, 'Louis Spohr\'s Autobiography\nTranslated from the German', 'Spohr, Louis', '2014-06-16', 30, 'https://www.gutenberg.org/ebooks/45997', 'en', 8100), +(17732, 'The Crimson Conquest: A Romance of Pizarro and Peru', 'Hudson, Charles B. (Charles Bradford)', '2016-08-28', 12, 'https://www.gutenberg.org/ebooks/52920', 'en', 8101), +(17733, 'Henry of Guise; or, The States of Blois (Vol. 1 of 3)', 'James, G. P. R. (George Payne Rainsford)', '2012-04-09', 17, 'https://www.gutenberg.org/ebooks/39411', 'en', 8102), +(17734, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 15, No. 86, February, 1875', 'Various', '2005-01-17', 4, 'https://www.gutenberg.org/ebooks/14709', 'en', 210), +(17735, 'The Science of Being Well', 'Wattles, W. D.', '2010-10-18', 142, 'https://www.gutenberg.org/ebooks/33917', 'en', 4795), +(17736, 'The Speeches & Table-Talk of the Prophet Mohammad', 'Muhammad, Prophet', '2018-12-08', 32, 'https://www.gutenberg.org/ebooks/58426', 'en', 8103), +(17737, 'Sudden Jim', 'Kelland, Clarence Budington', '2013-10-31', 24, 'https://www.gutenberg.org/ebooks/44079', 'en', 8004), +(17738, '羹', 'Tanizaki, Jun\'ichiro', '2011-06-18', 26, 'https://www.gutenberg.org/ebooks/36459', 'ja', 61), +(17739, 'Girls of the Forest', 'Meade, L. T.', '2008-06-22', 8, 'https://www.gutenberg.org/ebooks/25872', 'en', 7735), +(17740, 'The Last West and Paolo\'s Virginia', 'Warren, G. B.', '2004-11-08', 3, 'https://www.gutenberg.org/ebooks/13974', 'en', 8), +(17741, 'Parzival: A Knightly Epic (vol. 2 of 2)', 'Wolfram, von Eschenbach, active 12th century', '2014-11-06', 55, 'https://www.gutenberg.org/ebooks/47298', 'en', 8104), +(17742, 'How Two Boys Made Their Own Electrical Apparatus\nContaining Complete Directions for Making All Kinds of Simple Apparatus for the Study of Elementary Electricity', 'St. John, Thomas M. (Thomas Matthew)', '2009-03-15', 29, 'https://www.gutenberg.org/ebooks/28335', 'en', 3966), +(17743, 'In Troubadour-Land: A Ramble in Provence and Languedoc', 'Baring-Gould, S. (Sabine)', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8819', 'en', 209), +(17744, 'In the South Seas\r\nBeing an Account of Experiences and Observations in the Marquesas, Paumotus and Gilbert Islands in the Course of Two Cruises on the Yacht \"Casco\" (1888) and the Schooner \"Equator\" (1889)', 'Stevenson, Robert Louis', '1996-03-01', 123, 'https://www.gutenberg.org/ebooks/464', 'en', 6743), +(17745, 'Peter Simple; and, The Three Cutters, Vol. 1-2', 'Marryat, Frederick', '2004-08-09', 29, 'https://www.gutenberg.org/ebooks/13148', 'en', 252), +(17746, 'Missionary Work Among the Ojebway Indians', 'Wilson, Edward Francis', '2004-11-01', 21, 'https://www.gutenberg.org/ebooks/6983', 'en', 8105), +(17747, 'Our Little Swedish Cousin', 'Coburn, Claire Martha', '2013-09-04', 11, 'https://www.gutenberg.org/ebooks/43638', 'en', 5152), +(17748, 'Sweet Clover: Growing the Crop', 'Coe, H. S.', '2015-06-28', 6, 'https://www.gutenberg.org/ebooks/49302', 'en', 8106), +(17749, 'The Bible, King James version, Book 25: Lamentations', 'Anonymous', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/8025', 'en', 8107), +(17750, 'Flöten und Dolche: Novellen', 'Mann, Heinrich', '2010-02-08', 30, 'https://www.gutenberg.org/ebooks/31218', 'de', 179), +(17751, 'Branded', 'Lynde, Francis', '2006-10-05', 16, 'https://www.gutenberg.org/ebooks/19472', 'en', 61), +(17752, 'Memoirs of Aaron Burr, Volume 2.', 'Burr, Aaron', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7851', 'en', 1371), +(17753, 'A Logic of Facts; Or, Every-day Reasoning', 'Holyoake, George Jacob', '2011-07-20', 20, 'https://www.gutenberg.org/ebooks/36801', 'en', 4797), +(17754, 'Mending and Repair of Books', 'Brown, Margaret Wright', '2012-03-07', 22, 'https://www.gutenberg.org/ebooks/39075', 'en', 8108), +(17755, 'Pauvre petite!', 'Bourget, Paul', '2007-04-03', 12, 'https://www.gutenberg.org/ebooks/20964', 'fr', 61), +(17756, 'The Auk: A Quarterly Journal of Ornithology, Vol. XXXVI APRIL, 1919 No. 2', 'Various', '2019-04-02', 4, 'https://www.gutenberg.org/ebooks/59190', 'en', 490), +(17757, 'Gearr-sgeoil air Sir Seoras Uilleam Ros', 'Fraser, Alexander', '2012-05-29', 18, 'https://www.gutenberg.org/ebooks/39849', 'gla', 8109), +(17758, 'Harry Harding—Messenger \"45\"', 'Raymond, Alfred', '2016-07-15', 3, 'https://www.gutenberg.org/ebooks/52578', 'en', 195), +(17759, 'Cyrus Hall McCormick: His Life and Work', 'Casson, Herbert Newton', '2013-01-31', 19, 'https://www.gutenberg.org/ebooks/41953', 'en', 157), +(17760, 'Workhouse Characters, and other sketches of the life of the poor.', 'Nevinson, Margaret Wynne', '2012-09-28', 25, 'https://www.gutenberg.org/ebooks/40881', 'en', 4562), +(17761, 'The Works of Lord Byron. Vol. 4', 'Byron, George Gordon Byron, Baron', '2006-12-22', 129, 'https://www.gutenberg.org/ebooks/20158', 'en', 8), +(17762, 'Princess White Flame', 'Crownfield, Gertrude', '2018-10-06', 14, 'https://www.gutenberg.org/ebooks/58042', 'en', 1007), +(17763, 'Jinny the Carrier', 'Zangwill, Israel', '2018-09-02', 8, 'https://www.gutenberg.org/ebooks/57836', 'en', 95), +(17764, 'Der Spaziergang', 'Walser, Robert', '2012-03-24', 76, 'https://www.gutenberg.org/ebooks/39247', 'de', 5108), +(17765, 'The Second Battalion Royal Dublin Fusiliers in the South African War\nWith a Description of the Operations in the Aden Hinterland', 'Romer, Cecil Francis', '2008-05-26', 21, 'https://www.gutenberg.org/ebooks/25618', 'en', 8110), +(17766, '白兔記', 'Ming, I', '2018-05-30', 14, 'https://www.gutenberg.org/ebooks/57238', 'zh', 2312), +(17767, 'The World As I Have Found It\nSequel to Incidents in the Life of a Blind Girl', 'Day, Mary L.', '2005-02-07', 6, 'https://www.gutenberg.org/ebooks/14963', 'en', 8111), +(17768, 'Erstes Kapitel des Buches \"Richard und Samuel\"\nDie erste lange Eisenbahnfahrt (Prag-Zürich)', 'Brod, Max', '2011-12-23', 36, 'https://www.gutenberg.org/ebooks/38395', 'de', 533), +(17769, 'Arachne — Volume 01', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5508', 'en', 6232), +(17770, 'Adventures Among Books', 'Lang, Andrew', '1999-12-01', 31, 'https://www.gutenberg.org/ebooks/1994', 'en', 1694), +(17771, 'Blue Jackets; or, The Adventures of J. Thompson, A.B., Among \"the Heathen Chinee\"\r\nA Nautical Novel', 'Greey, Edward', '2018-11-11', 20, 'https://www.gutenberg.org/ebooks/58270', 'en', 3039), +(17772, 'Life and public services of Martin R. Delany\r\nSub-Assistant Commissioner Bureau Relief of Refugees, Freedmen, and of Abandoned Lands, and late Major 104th U.S. Colored Troops', 'Rollin, Frank A.', '2016-12-08', 9, 'https://www.gutenberg.org/ebooks/53698', 'en', 8112), +(17773, 'The Complete Golfer', 'Vardon, Harry', '2009-02-17', 97, 'https://www.gutenberg.org/ebooks/28107', 'en', 4846), +(17774, 'Defending the Island: A story of Bar Harbor in 1758', 'Otis, James', '2010-12-04', 8, 'https://www.gutenberg.org/ebooks/34558', 'en', 8113), +(17775, 'Der Mantel: Eine Novelle', 'Gogol, Nikolai Vasilevich', '2009-02-03', 21, 'https://www.gutenberg.org/ebooks/27973', 'de', 85), +(17776, 'Flower of the Gorse', 'Tracy, Louis', '2014-07-02', 35, 'https://www.gutenberg.org/ebooks/46178', 'en', 557), +(17777, 'Bruvver Jim\'s Baby', 'Mighels, Philip Verrill', '2005-08-27', 27, 'https://www.gutenberg.org/ebooks/16608', 'en', 6135), +(17778, 'The History of the Medical Department of Transylvania University', 'Peter, Robert', '2010-03-29', 10, 'https://www.gutenberg.org/ebooks/31816', 'en', 8114), +(17779, 'The Causes of the Successes of the Ottoman Turks', 'Phillpotts, J. Surtees (James Surtees)', '2016-01-01', 18, 'https://www.gutenberg.org/ebooks/50821', 'en', 8115), +(17780, 'Life of Robert Browning', 'Sharp, William', '1996-09-01', 10, 'https://www.gutenberg.org/ebooks/656', 'en', 7835), +(17781, 'John Gabriel Borkman', 'Ibsen, Henrik', '2006-07-08', 41, 'https://www.gutenberg.org/ebooks/18792', 'en', 3671), +(17782, 'Droll stories of Isthmian life', 'Saxton, Evelyn', '2015-01-06', 6, 'https://www.gutenberg.org/ebooks/47896', 'en', 8116), +(17783, 'The Golden Maiden, and other folk tales and fairy stories told in Armenia', 'Seklemian, A. K.', '2014-09-23', 57, 'https://www.gutenberg.org/ebooks/46944', 'en', 8117), +(17784, 'Adventures of Huckleberry Finn', 'Twain, Mark', '2006-10-28', 63, 'https://www.gutenberg.org/ebooks/19640', 'en', 3210), +(17785, 'Hovey\'s Handbook of the Mammoth Cave of Kentucky\r\nA Practical Guide to the Regulation Routes', 'Hovey, Horace Carver', '2015-06-03', 8, 'https://www.gutenberg.org/ebooks/49130', 'en', 5378), +(17786, 'The Belgian Curtain: Europe after Communism', 'Vaknin, Samuel', '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8217', 'en', 8118), +(17787, 'Vecchie Storie', 'De Marchi, Emilio', '2003-12-01', 23, 'https://www.gutenberg.org/ebooks/10502', 'it', 179), +(17788, 'The Children of Odin: The Book of Northern Myths', 'Colum, Padraic', '2008-03-02', 538, 'https://www.gutenberg.org/ebooks/24737', 'en', 8119), +(17789, 'The Haunted Pajamas', 'Elliott, Francis Perry', '2010-09-20', 22, 'https://www.gutenberg.org/ebooks/33780', 'en', 61), +(17790, 'A Knight on Wheels', 'Hay, Ian', '2011-12-22', 83, 'https://www.gutenberg.org/ebooks/38368', 'en', 61), +(17791, 'The Secret Adversary', 'Christie, Agatha', '1998-01-01', 1968, 'https://www.gutenberg.org/ebooks/1155', 'en', 834), +(17792, 'L\'élite: écrivains, orateurs sacrés, peintres, sculpteurs', 'Rodenbach, Georges', '2012-07-18', 14, 'https://www.gutenberg.org/ebooks/40272', 'fr', 8120), +(17793, 'The Chameleon Man', 'McGivern, William P.', '2010-06-02', 28, 'https://www.gutenberg.org/ebooks/32652', 'en', 8121), +(17794, 'Unsere Haustiere vom Standpunkte ihrer wilden Verwandten', 'Zell, Th.', '2018-01-05', 6, 'https://www.gutenberg.org/ebooks/56317', 'de', 6662), +(17795, 'Tiny Luttrell', 'Hornung, E. W. (Ernest William)', '2011-09-05', 18, 'https://www.gutenberg.org/ebooks/37320', 'en', 757), +(17796, 'Historiallisia pikakuvia', 'Strindberg, August', '2016-12-04', 8, 'https://www.gutenberg.org/ebooks/53665', 'fi', 179), +(17797, 'Catherine: A Story', 'Thackeray, William Makepeace', '1999-11-01', 28, 'https://www.gutenberg.org/ebooks/1969', 'en', 984), +(17798, 'Jouluvieraita', 'Nervander, Emil Fredrik', '2007-01-19', 5, 'https://www.gutenberg.org/ebooks/20397', 'fi', 61), +(17799, 'Three Boys in the Wild North Land', 'Young, Egerton Ryerson', '2007-04-27', 9, 'https://www.gutenberg.org/ebooks/21245', 'en', 676), +(17800, 'Von der Seele', 'Schleich, Carl Ludwig', '2005-02-15', 26, 'https://www.gutenberg.org/ebooks/15070', 'de', 243), +(17801, 'Mr. Punch on the Continong', NULL, '2014-05-20', 13, 'https://www.gutenberg.org/ebooks/45700', 'en', 2965), +(17802, 'Evan Harrington — Volume 1', 'Meredith, George', '2003-09-01', 18, 'https://www.gutenberg.org/ebooks/4427', 'en', 137), +(17803, 'Makers of Modern Medicine', 'Walsh, James J. (James Joseph)', '2011-03-03', 17, 'https://www.gutenberg.org/ebooks/35477', 'en', 8122), +(17804, 'The Devil', 'Molnár, Ferenc', '2014-07-03', 20, 'https://www.gutenberg.org/ebooks/46185', 'en', 8123), +(17805, 'Whiskaboom', 'Arkin, Alan', '2016-02-05', 32, 'https://www.gutenberg.org/ebooks/51132', 'en', 8124), +(17806, 'Louisiana Lou\r\nA Western Story', 'Winter, William West', '2009-06-03', 35, 'https://www.gutenberg.org/ebooks/29028', 'en', 315), +(17807, 'Mam\' Lyddy\'s Recognition\n1908', 'Page, Thomas Nelson', '2007-11-16', 17, 'https://www.gutenberg.org/ebooks/23512', 'en', 1958), +(17808, 'Spies and Secret Service\nThe story of espionage, its main systems and chief exponents', 'Grant, Hamil', '2015-04-29', 22, 'https://www.gutenberg.org/ebooks/48823', 'en', 8125), +(17809, 'The School of Recreation (1696 edition)\r\nOr a Guide to the Most Ingenious Exercises of Hunting, Riding, Racing, Fireworks, Military Discipline, the Science of Defence', 'R. H. (Robert Howlett)', '2006-02-09', 28, 'https://www.gutenberg.org/ebooks/17727', 'en', 8126), +(17810, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 12', 'Stevenson, Robert Louis', '2010-01-11', 16, 'https://www.gutenberg.org/ebooks/30939', 'en', 654), +(17811, 'Las inquietudes de Shanti Andía', 'Baroja, Pío', '2014-10-05', 13, 'https://www.gutenberg.org/ebooks/47057', 'es', 324), +(17812, 'The Story of the Odyssey', 'Church, Alfred John', '2004-08-01', 27, 'https://www.gutenberg.org/ebooks/6370', 'en', 7309), +(17813, 'The Egyptian Conception of Immortality\r\nThe Ingersoll Lecture, 1911', 'Reisner, George Andrew', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12255', 'en', 1509), +(17814, 'Good stories for great birthdays\r\narranged for story-telling and reading aloud and for the children\'s own reading', 'Olcott, Frances Jenkins', '2017-09-21', 8, 'https://www.gutenberg.org/ebooks/55592', 'en', 8127), +(17815, 'Complete Version of ye Three Blind Mice', 'Ivimey, John W. (John William)', '2008-07-15', 55, 'https://www.gutenberg.org/ebooks/26060', 'en', 2990), +(17816, 'Cupid\'s Understudy', 'Field, Salisbury', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3602', 'en', 211), +(17817, 'Anciennes loix des François, conservées dans les coutumes angloises, recueillies par Littleton, Vol. I', 'Littleton, Thomas, Sir', '2013-04-13', 15, 'https://www.gutenberg.org/ebooks/42525', 'fr', 8128), +(17818, 'De komedianten', 'Couperus, Louis', '2009-08-26', 9, 'https://www.gutenberg.org/ebooks/29814', 'nl', 8129), +(17819, 'The Strand Magazine, Vol. 05, Issue 26, February 1893\r\nAn Illustrated Monthly', 'Various', '2009-09-27', 26, 'https://www.gutenberg.org/ebooks/30105', 'en', 2998), +(17820, 'The Secret Agent', 'Conrad, Joseph', '2005-11-01', 3, 'https://www.gutenberg.org/ebooks/9338', 'en', 8130), +(17821, 'Jüdisches Leben in Wort und Bild', 'Sacher-Masoch, Leopold, Ritter von', '2017-03-26', 12, 'https://www.gutenberg.org/ebooks/54440', 'de', 8131), +(17822, 'Shakespeare: His Life, Art, And Characters, Volume I.\r\nWith An Historical Sketch Of The Origin And Growth Of The Drama In England', 'Hudson, Henry Norman', '2004-09-07', 30, 'https://www.gutenberg.org/ebooks/13387', 'en', 8132), +(17823, 'Spanish America, Vol. 2 (of 2)', 'Bonnycastle, Richard Henry, Sir', '2016-02-25', 20, 'https://www.gutenberg.org/ebooks/51300', 'en', 1589), +(17824, 'The Little Immigrant', 'Stern, Eva', '2004-12-01', 10, 'https://www.gutenberg.org/ebooks/7090', 'en', 8133), +(17825, 'The Cavaliers of Virginia, vol. 1 of 2\nor, The Recluse of Jamestown; An historical romance of the Old Dominion', 'Caruthers, William Alexander', '2011-03-21', 14, 'https://www.gutenberg.org/ebooks/35645', 'en', 4969), +(17826, 'Pixies\' Plot', 'Phillpotts, Eden', '2014-01-01', 7, 'https://www.gutenberg.org/ebooks/47265', 'en', 1594), +(17827, 'A Girl of the People', 'Meade, L. T.', '2004-07-01', 43, 'https://www.gutenberg.org/ebooks/6142', 'en', 8134), +(17828, 'The Duty of Disobedience to the Fugitive Slave Act\r\nAn Appeal To The Legislators Of Massachusetts, Anti-Slavery Tracts No. 9', 'Child, Lydia Maria', '2004-11-09', 14, 'https://www.gutenberg.org/ebooks/13989', 'en', 7856), +(17829, 'The Man from Archangel, and Other Tales of Adventure', 'Doyle, Arthur Conan', '2010-12-31', 122, 'https://www.gutenberg.org/ebooks/34797', 'en', 2809), +(17830, 'To Lesbia', 'Catullus, Gaius Valerius', '2007-12-01', 16, 'https://www.gutenberg.org/ebooks/23720', 'en', 2185), +(17831, 'A Relíquia', 'Queirós, Eça de', '2006-01-14', 76, 'https://www.gutenberg.org/ebooks/17515', 'pt', 61), +(17832, 'Woman\'s Institute Library of Cookery. Volume 2: Milk, Butter and Cheese; Eggs; Vegetables', 'Woman\'s Institute of Domestic Arts and Sciences', '2006-02-01', 62, 'https://www.gutenberg.org/ebooks/9936', 'en', 103), +(17833, 'The Suitors of Yvonne: being a portion of the memoirs of the Sieur Gaston de Luynes', 'Sabatini, Rafael', '2002-09-01', 53, 'https://www.gutenberg.org/ebooks/3430', 'en', 323), +(17834, 'Regulations for the establishment and government of the Royal Military Asylum', 'Duke of York\'s Royal Military School', '2013-05-16', 6, 'https://www.gutenberg.org/ebooks/42717', 'en', 8135), +(17835, 'The Bee-Man of Orn and Other Fanciful Tales', 'Stockton, Frank Richard', '2004-04-01', 40, 'https://www.gutenberg.org/ebooks/12067', 'en', 1007), +(17836, 'The Prince and the Pauper', 'Twain, Mark', '2008-08-01', 10, 'https://www.gutenberg.org/ebooks/26252', 'en', 154), +(17837, 'Histoire du Consulat et de l\'Empire, (Vol. 01 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2008-12-01', 15, 'https://www.gutenberg.org/ebooks/27380', 'fr', 2051), +(17838, 'Les Bijoux Indiscrets, or, The Indiscreet Toys', 'Diderot, Denis', '2017-05-06', 384, 'https://www.gutenberg.org/ebooks/54672', 'en', 8136), +(17839, 'Tom Swift in the Land of Wonders; Or, The Underground Search for the Idol of Gold', 'Appleton, Victor', '1996-04-01', 86, 'https://www.gutenberg.org/ebooks/499', 'en', 679), +(17840, 'Fifty Per Cent Prophet', 'Garrett, Randall', '2009-10-25', 75, 'https://www.gutenberg.org/ebooks/30337', 'en', 784), +(17841, 'The Men of Boru', 'Nelson, Jack A.', '2019-02-13', 15, 'https://www.gutenberg.org/ebooks/58883', 'en', 8137), +(17842, 'Findelkind', 'Ouida', '1998-06-01', 13, 'https://www.gutenberg.org/ebooks/1367', 'en', 3526), +(17843, 'Flowers, Shown to the Children', 'Smith, C. E.', '2012-06-19', 16, 'https://www.gutenberg.org/ebooks/40040', 'en', 7330), +(17844, 'Á hora do crime\r\nphantasia dramatica em 1 acto a proposito do assassinato do General Prim', 'Miranda, Francisco Luís Coutinho de', '2007-04-06', 61, 'https://www.gutenberg.org/ebooks/20999', 'pt', 402), +(17845, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 344 (Supplementary Issue)', 'Various', '2004-01-01', 1, 'https://www.gutenberg.org/ebooks/10730', 'en', 133), +(17846, 'The Forest of Dean: An Historical and Descriptive Account', 'Nicholls, H. G. (Henry George)', '2008-02-03', 48, 'https://www.gutenberg.org/ebooks/24505', 'en', 2011), +(17847, 'Kuvia ja kuvitelmia Suomen historiasta III', NULL, '2017-12-04', 6, 'https://www.gutenberg.org/ebooks/56125', 'fi', 6994), +(17848, 'Animal Proteins', 'Bennett, Hugh Garner', '2012-10-26', 11, 'https://www.gutenberg.org/ebooks/41192', 'en', 8138), +(17849, 'The Boy Scouts for Uncle Sam', 'Goldfrap, John Henry', '2010-05-20', 14, 'https://www.gutenberg.org/ebooks/32460', 'en', 2994), +(17850, 'New Witnesses for God (Volume 3 of 3)', 'Roberts, B. H. (Brigham Henry)', '2019-07-19', 175, 'https://www.gutenberg.org/ebooks/59951', 'en', 2107), +(17851, 'On the study and difficulties of mathematics', 'De Morgan, Augustus', '2012-03-09', 90, 'https://www.gutenberg.org/ebooks/39088', 'en', 4325), +(17852, 'Punch, Or The London Charivari, Volume 102, April 2, 1892', 'Various', '2004-12-20', 2, 'https://www.gutenberg.org/ebooks/14390', 'en', 134), +(17853, 'Mümmelmann: Ein Tierbuch', 'Löns, Hermann', '2016-11-06', 15, 'https://www.gutenberg.org/ebooks/53457', 'de', 625), +(17854, 'The Manifestation of the Miraculous Medal\r\nA Brief Account of Its History and of the Establishment of the Association', 'Association of the Miraculous Medal', '2012-02-24', 15, 'https://www.gutenberg.org/ebooks/38966', 'en', 8139), +(17855, 'Life in the Confederate Army\r\nBeing Personal Experiences of a Private Soldier in the Confederate Army, and Some Experiences and Sketches of Southern Life', 'Ford, Marion Johnstone', '2011-08-17', 9, 'https://www.gutenberg.org/ebooks/37112', 'en', 83), +(17856, 'History of Julius Cæsar, Vol. 2 of 2', 'Napoleon III, Emperor of the French', '2014-04-29', 72, 'https://www.gutenberg.org/ebooks/45532', 'en', 2904), +(17857, 'The Upton Letters', 'Benson, Arthur Christopher', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/4615', 'en', 5532), +(17858, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 4/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2018-04-04', 18, 'https://www.gutenberg.org/ebooks/56919', 'fr', 2972), +(17859, 'The Mind and the Brain\nBeing the Authorised Translation of L\'Âme et le Corps', 'Binet, Alfred', '2007-04-14', 212, 'https://www.gutenberg.org/ebooks/21077', 'en', 8140), +(17860, 'La Cendre: Roman', 'Vandérem, Fernand', '2016-07-16', 5, 'https://www.gutenberg.org/ebooks/52585', 'fr', 298), +(17861, 'Desert Love', 'Conquest, Joan', '2005-03-03', 11, 'https://www.gutenberg.org/ebooks/15242', 'en', 2387), +(17862, 'Illustrations of Exotic Entomology, Volume 3', 'Drury, Dru', '2014-12-23', 7, 'https://www.gutenberg.org/ebooks/47601', 'en', 1629), +(17863, 'Any Coincidence Is\r\nOr, The Day Julia & Cecil the Cat Faced a Fate Worse Than Death', 'Callahan, Daniel', '2004-09-01', 11, 'https://www.gutenberg.org/ebooks/6526', 'en', 61), +(17864, 'The War and Unity\r\nBeing Lectures Delivered At The Local Lectures Summer Meeting Of The University Of Cambridge, 1918', NULL, '2006-07-25', 16, 'https://www.gutenberg.org/ebooks/18905', 'en', 8141), +(17865, 'The Magic Fishbone\nA Holiday Romance from the Pen of Miss Alice Rainbird, Aged 7', 'Dickens, Charles', '2007-11-05', 159, 'https://www.gutenberg.org/ebooks/23344', 'en', 637), +(17866, 'New England Salmon Hatcheries and Salmon Fisheries in the Late 19th Century', 'Various', '2005-11-28', 30, 'https://www.gutenberg.org/ebooks/17171', 'en', 8142), +(17867, 'Fiue Hundred Pointes of Good Husbandrie', 'Tusser, Thomas', '2016-04-15', 19, 'https://www.gutenberg.org/ebooks/51764', 'en', 8143), +(17868, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 09', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 7, 'https://www.gutenberg.org/ebooks/3868', 'en', 4778), +(17869, 'Un tros de paper\r\nTwo Volumes', NULL, '2007-08-10', 18, 'https://www.gutenberg.org/ebooks/22296', 'ca', 8144), +(17870, 'The Nation Behind Prison Bars', 'Herr, George L. (George Lewis)', '2011-02-09', 15, 'https://www.gutenberg.org/ebooks/35221', 'en', 8145), +(17871, 'The Girl\'s Own Paper, Vol. XX. No. 1012, May 20, 1899', 'Various', '2019-07-31', 492, 'https://www.gutenberg.org/ebooks/60023', 'en', 563), +(17872, 'Rip Foster in Ride the Gray Planet', 'Goodwin, Harold L. (Harold Leland)', '2006-04-10', 39, 'https://www.gutenberg.org/ebooks/18139', 'en', 8146), +(17873, 'The Mary Frances First Aid Book\nWith Ready Reference List of Ordinary Accidents and Illnesses, and Approved Home Remedies', 'Fryer, Jane Eayre', '2017-02-21', 40, 'https://www.gutenberg.org/ebooks/54216', 'en', 1091), +(17874, 'The Rosetta Stone', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2015-04-06', 31, 'https://www.gutenberg.org/ebooks/48649', 'en', 8147), +(17875, 'Der Mord', 'Kafka, Franz', '2009-12-25', 83, 'https://www.gutenberg.org/ebooks/30753', 'de', 179), +(17876, '\"Captains Courageous\": A Story of the Grand Banks', 'Kipling, Rudyard', '2000-05-01', 152, 'https://www.gutenberg.org/ebooks/2186', 'en', 8148), +(17877, 'Hand and Ring', 'Green, Anna Katharine', '2010-03-17', 64, 'https://www.gutenberg.org/ebooks/31681', 'en', 128); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(17878, 'Volcanic Islands', 'Darwin, Charles', '2002-02-01', 16, 'https://www.gutenberg.org/ebooks/3054', 'en', 8149), +(17879, 'Gli ingenui', 'Panzini, Alfredo', '2013-03-19', 6, 'https://www.gutenberg.org/ebooks/42373', 'it', 1544), +(17880, 'Fenwick\'s Career', 'Ward, Humphry, Mrs.', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12403', 'en', 3850), +(17881, 'Paavolan kauhu: eli Rikkaus ja rakkaus', 'Niemi, Herman', '2008-09-16', 13, 'https://www.gutenberg.org/ebooks/26636', 'fi', 41), +(17882, 'Meesterstukken van Rembrandt Harmensz. Van Rijn\nLeesboek voor het Lager en Voortgezet Onderwijs', 'Kielder, G.', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/11286', 'nl', 596), +(17883, 'The Joy of Life [La joie de vivre]', 'Zola, Émile', '2018-02-11', 41, 'https://www.gutenberg.org/ebooks/56541', 'en', 58), +(17884, 'The Knights of Arthur', 'Pohl, Frederik', '2010-04-16', 82, 'https://www.gutenberg.org/ebooks/32004', 'en', 26), +(17885, 'Dead Men Tell No Tales', 'Hornung, E. W. (Ernest William)', '1999-04-01', 183, 'https://www.gutenberg.org/ebooks/1703', 'en', 128), +(17886, 'Surgical Instruments in Greek and Roman Times', 'Milne, John Stewart', '2012-08-06', 63, 'https://www.gutenberg.org/ebooks/40424', 'en', 8150), +(17887, 'The Natural History of Pliny, Volume 1 (of 6)', 'Pliny, the Elder', '2018-07-12', 116, 'https://www.gutenberg.org/ebooks/57493', 'en', 8151), +(17888, 'Die Laune des Verliebten\r\nEin Schäferspiel in Versen und einem Akt', 'Goethe, Johann Wolfgang von', '2003-12-01', 35, 'https://www.gutenberg.org/ebooks/10354', 'de', 3557), +(17889, 'All Day September', 'Kuykendall, Roger', '2008-01-04', 50, 'https://www.gutenberg.org/ebooks/24161', 'en', 8152), +(17890, 'Sinopah, the Indian Boy', 'Schultz, James Willard', '2014-03-17', 10, 'https://www.gutenberg.org/ebooks/45156', 'en', 8153), +(17891, 'A Modern Telemachus', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-07-01', 33, 'https://www.gutenberg.org/ebooks/4271', 'en', 8154), +(17892, 'Où va le monde?\r\nConsidérations philosophiques sur l\'organisation sociale de demain', 'Rathenau, Walther', '2007-05-11', 23, 'https://www.gutenberg.org/ebooks/21413', 'fr', 8155), +(17893, 'Index of the Project Gutenberg Works of Edward Gibbon', 'Gibbon, Edward', '2019-05-14', 20, 'https://www.gutenberg.org/ebooks/59509', 'en', 198), +(17894, 'Contes et historiettes à l\'usage des jeunes enfants\nQui commencent à savoir lire', 'Carraud, Zulma', '2005-04-15', 45, 'https://www.gutenberg.org/ebooks/15626', 'fr', 294), +(17895, 'The Canadian Curler\'s Manual\r\nOr, an account of curling, as practised in Canada: with remarks on the history of the game', 'Bicket, James', '2010-06-16', 34, 'https://www.gutenberg.org/ebooks/32838', 'en', 8156), +(17896, 'The Turquoise Story Book: Stories and Legends of Summer and Nature', NULL, '2016-09-12', 17, 'https://www.gutenberg.org/ebooks/53033', 'en', 8157), +(17897, 'The Golden Hope: A Story of the Time of King Alexander the Great', 'Fuller, Robert H. (Robert Higginson)', '2011-09-30', 55, 'https://www.gutenberg.org/ebooks/37576', 'en', 323), +(17898, 'Langs lijnen van geleidelijkheid', 'Couperus, Louis', '2013-11-01', 11, 'https://www.gutenberg.org/ebooks/44084', 'nl', 109), +(17899, 'The Story of the Trapper', 'Laut, Agnes C.', '2010-05-03', 21, 'https://www.gutenberg.org/ebooks/32236', 'en', 8158), +(17900, 'Briefless Ballads and Legal Lyrics\nSecond Series', 'Williams, James', '2008-05-02', 21, 'https://www.gutenberg.org/ebooks/25281', 'en', 8159), +(17901, 'The Polly Page Ranch Club', 'Forrester, Izola L. (Izola Louise)', '2018-03-18', 15, 'https://www.gutenberg.org/ebooks/56773', 'en', 8160), +(17902, 'What Germany Thinks\r\nOr, The War as Germans see it', 'Smith, Thomas F. A.', '2003-11-01', 27, 'https://www.gutenberg.org/ebooks/10166', 'en', 335), +(17903, 'Wired Love\nA Romance of Dots and Dashes', 'Thayer, Ella Cheever', '2008-01-18', 211, 'https://www.gutenberg.org/ebooks/24353', 'en', 8161), +(17904, 'Othello, the Moor of Venice', 'Shakespeare, William', '1998-11-01', 190, 'https://www.gutenberg.org/ebooks/1531', 'en', 5469), +(17905, 'Fiends, Ghosts, and Sprites\r\nIncluding an Account of the Origin and Nature of Belief in the Supernatural', 'Radcliffe, John Netten', '2012-08-29', 22, 'https://www.gutenberg.org/ebooks/40616', 'en', 75), +(17906, 'The Story of Garfield\nFarm-boy, Soldier, and President', 'Rutherford, William G. (William Gunion)', '2007-05-27', 13, 'https://www.gutenberg.org/ebooks/21621', 'en', 8162), +(17907, 'The Littlest Rebel', 'Peple, Edward', '2005-03-19', 9, 'https://www.gutenberg.org/ebooks/15414', 'en', 491), +(17908, 'Alaskan tyttö', 'London, Jack', '2014-04-12', 19, 'https://www.gutenberg.org/ebooks/45364', 'fi', 535), +(17909, 'The Dynasts: An Epic-Drama of the War with Napoleon', 'Hardy, Thomas', '2003-05-01', 82, 'https://www.gutenberg.org/ebooks/4043', 'en', 8163), +(17910, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 575, November 10, 1832', 'Various', '2004-04-01', 3, 'https://www.gutenberg.org/ebooks/11888', 'en', 133), +(17911, 'Old Deccan Days; or, Hindoo Fairy Legends Current in Southern India', NULL, '2011-07-11', 40, 'https://www.gutenberg.org/ebooks/36696', 'en', 1772), +(17912, 'The Case of Summerfield', 'Rhodes, W. H. (William Henry)', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/5191', 'en', 26), +(17913, 'Recollections and Impressions, 1822-1890', 'Frothingham, Octavius Brooks', '2011-10-13', 14, 'https://www.gutenberg.org/ebooks/37744', 'en', 8164), +(17914, 'Jumalallista ja inhimillistä eli vielä kolme kuolemaa', 'Tolstoy, Leo, graf', '2016-10-03', 5, 'https://www.gutenberg.org/ebooks/53201', 'fi', 147), +(17915, 'A Michigan Man\n1891', 'Peattie, Elia Wilkinson', '2007-10-24', 15, 'https://www.gutenberg.org/ebooks/23176', 'en', 179), +(17916, 'Brendan\'s Fabulous Voyage\r\nA Lecture delivered on January 19, 1893, before the Scottish Society of Literature and Art', 'Bute, John Patrick Crichton-Stuart, Marquess of', '2005-12-18', 45, 'https://www.gutenberg.org/ebooks/17343', 'en', 8165), +(17917, 'The First Days of Man, as Narrated Quite Simply for Young Readers', 'Kummer, Frederic Arnold', '2015-11-18', 8, 'https://www.gutenberg.org/ebooks/50484', 'en', 8166), +(17918, 'Babylon, Volume 3', 'Allen, Grant', '2014-11-22', 15, 'https://www.gutenberg.org/ebooks/47433', 'en', 2287), +(17919, 'Dave Dashaway and His Hydroplane; Or, Daring Adventures over the Great Lake', 'Rockwood, Roy', '2004-10-01', 20, 'https://www.gutenberg.org/ebooks/6714', 'en', 2797), +(17920, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 11, July 3, 1858', NULL, '2017-05-31', 8, 'https://www.gutenberg.org/ebooks/54818', 'en', 1741), +(17921, 'Chopin : The Story of the Boy Who Made Beautiful Melodies', 'Tapper, Thomas', '2011-01-20', 50, 'https://www.gutenberg.org/ebooks/35013', 'en', 8167), +(17922, 'The Mentor: The Cradle of Liberty, Vol. 6, Num. 10, Serial No. 158, July 1, 1918', 'Hart, Albert Bushnell', '2016-03-25', 6, 'https://www.gutenberg.org/ebooks/51556', 'en', 8168), +(17923, 'The Story of the Other Wise Man', 'Van Dyke, Henry', '2005-07-14', 12, 'https://www.gutenberg.org/ebooks/16291', 'en', 8169), +(17924, 'Coaching, with Anecdotes of the Road', 'Lennox, William Pitt, Lord', '2013-07-05', 29, 'https://www.gutenberg.org/ebooks/43093', 'en', 8170), +(17925, 'His Last Week\r\nThe Story of the Passion and Resurrection of Jesus in the Words of the Four Gospels', 'Soares, Theodore Gerald', '2009-11-29', 12, 'https://www.gutenberg.org/ebooks/30561', 'en', 8171), +(17926, 'Graham\'s Magazine, Vol. XXXVII, No. 2, August 1850', 'Various', '2017-01-19', 12, 'https://www.gutenberg.org/ebooks/54024', 'en', 162), +(17927, 'The Seven Little Sisters Who Live on the Round Ball That Floats in the Air', 'Andrews, Jane', '2004-06-01', 62, 'https://www.gutenberg.org/ebooks/12631', 'en', 5191), +(17928, 'La nariz de un notario', 'About, Edmond', '2008-08-23', 85, 'https://www.gutenberg.org/ebooks/26404', 'es', 4966), +(17929, 'Miss Billy', 'Porter, Eleanor H. (Eleanor Hodgman)', '2006-06-03', 42, 'https://www.gutenberg.org/ebooks/3266', 'en', 264), +(17930, 'Elegia', 'Bocage, Manuel Maria Barbosa du', '2007-10-05', 32, 'https://www.gutenberg.org/ebooks/22898', 'pt', 1638), +(17931, 'Histoire de France 1516-1547 (Volume 10/19)', 'Michelet, Jules', '2013-02-20', 20, 'https://www.gutenberg.org/ebooks/42141', 'fr', 624), +(17932, 'Condensed Guide for the Stanford Revision of the Binet-Simon Intelligence Tests', 'Terman, Lewis M. (Lewis Madison)', '2010-11-13', 13, 'https://www.gutenberg.org/ebooks/34307', 'en', 8172), +(17933, 'The Grey Brethren, and Other Fragments in Prose and Verse', 'Fairless, Michael', '1997-03-01', 88, 'https://www.gutenberg.org/ebooks/835', 'en', 8), +(17934, 'Philosophical Transactions of the Royal Society - Vol 1 - 1666\nGiving some Accompt of the present Undertakings, Studies,\nand Labours of the Ingenious in many considerable parts\nof the World', 'Various', '2009-05-11', 25, 'https://www.gutenberg.org/ebooks/28758', 'en', 210), +(17935, 'Istoria civile del Regno di Napoli, v. 2', 'Giannone, Pietro', '2015-12-07', 10, 'https://www.gutenberg.org/ebooks/50642', 'it', 8173), +(17936, 'Stories about the Instinct of Animals, Their Characters, and Habits', 'Bingley, Thomas', '2005-11-29', 26, 'https://www.gutenberg.org/ebooks/17185', 'en', 4424), +(17937, 'The Atlantic Monthly, Volume 14, No. 82, August, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-06-14', 9, 'https://www.gutenberg.org/ebooks/16057', 'en', 1227), +(17938, 'Pariisin Notre-Dame 1482', 'Hugo, Victor', '2016-04-19', 17, 'https://www.gutenberg.org/ebooks/51790', 'fi', 98), +(17939, 'Sans-peur le corsaire', 'La Landelle, G. de', '2007-08-07', 4, 'https://www.gutenberg.org/ebooks/22262', 'fr', 98), +(17940, 'Gebete für Israeliten', 'Wolff, A. A. (Abraham Alexander)', '2006-11-16', 18, 'https://www.gutenberg.org/ebooks/19823', 'de', 8174), +(17941, 'The Poetical Works of Oliver Wendell Holmes — Complete', 'Holmes, Oliver Wendell', '2004-09-30', 29, 'https://www.gutenberg.org/ebooks/7400', 'en', 178), +(17942, 'An Epitome of the History of Medicine', 'Park, Roswell', '2014-08-29', 28, 'https://www.gutenberg.org/ebooks/46727', 'en', 8175), +(17943, 'Lives of the Engineers\nThe Locomotive. George and Robert Stephenson', 'Smiles, Samuel', '2009-01-05', 33, 'https://www.gutenberg.org/ebooks/27710', 'en', 8176), +(17944, 'Maria Chapdelaine', 'Hémon, Louis', '2004-09-25', 45, 'https://www.gutenberg.org/ebooks/13525', 'fr', 589), +(17945, 'Domesday Book and Beyond: Three Essays in the Early History of England', 'Maitland, Frederic William', '2013-07-19', 28, 'https://www.gutenberg.org/ebooks/43255', 'en', 8177), +(17946, 'That Mainwaring Affair', 'Barbour, A. Maynard (Anna Maynard)', '2000-05-01', 33, 'https://www.gutenberg.org/ebooks/2172', 'en', 1660), +(17947, 'Honor Edgeworth; Or, Ottawa\'s Present Tense', 'Vera', '2005-07-01', 2, 'https://www.gutenberg.org/ebooks/8448', 'en', 65), +(17948, 'The Annals of Willenhall', 'Hackwood, Frederick William', '2010-03-17', 29, 'https://www.gutenberg.org/ebooks/31675', 'en', 8178), +(17949, 'Casta diva', 'Rovetta, Gerolamo', '2013-03-22', 11, 'https://www.gutenberg.org/ebooks/42387', 'it', 1544), +(17950, 'A Biography of Rev. Henry Ward Beecher', 'Beecher, H. W., Mrs.', '2017-08-10', 12, 'https://www.gutenberg.org/ebooks/55330', 'en', 8179), +(17951, 'Blackwood\'s Edinburgh Magazine - Volume 55, No. 343, May 1844', 'Various', '2008-04-11', 7, 'https://www.gutenberg.org/ebooks/25047', 'en', 711), +(17952, 'The Anti-Slavery Examiner, Part 2 of 4', 'American Anti-Slavery Society', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11272', 'en', 8180), +(17953, 'The All-Sufficiency of Christ. Miscellaneous Writings of C. H. Mackintosh, vol. I', 'Mackintosh, Charles Henry', '2012-11-28', 27, 'https://www.gutenberg.org/ebooks/41502', 'en', 3575), +(17954, 'Kansakoulu-opettajan nuoruudenvaiheet', 'De Amicis, Edmondo', '2012-04-10', 12, 'https://www.gutenberg.org/ebooks/39418', 'fi', 8181), +(17955, 'Mémoires touchant la vie et les écrits de Marie de Rabutin-Chantal, (6/6)', 'Aubenas, Joseph-Adolphe', '2016-08-29', 17, 'https://www.gutenberg.org/ebooks/52929', 'fr', 1870), +(17956, 'An Impromptu Ascent of Mont Blanc', 'Le Mesurier, W. H.', '2010-07-09', 18, 'https://www.gutenberg.org/ebooks/33122', 'en', 1791), +(17957, 'Lauds and libels', 'Graves, Charles L. (Charles Larcom)', '2018-07-08', 7, 'https://www.gutenberg.org/ebooks/57467', 'en', 2100), +(17958, 'History of the 159th Regiment, N.Y.S.V.', 'Duffy, Edward', '2008-01-07', 13, 'https://www.gutenberg.org/ebooks/24195', 'en', 8182), +(17959, 'Psychotherapy\r\nIncluding the History of the Use of Mental Influence, Directly and Indirectly, in Healing and the Principles for the Application of Energies Derived from the Mind to the Treatment of Disease', 'Walsh, James J. (James Joseph)', '2011-06-17', 25, 'https://www.gutenberg.org/ebooks/36450', 'en', 4795), +(17960, 'The Master-Christian', 'Corelli, Marie', '2003-07-01', 38, 'https://www.gutenberg.org/ebooks/4285', 'en', 942), +(17961, 'Songs for All Seasons, and Other Poems', 'Bass, Cora C.', '2016-05-21', 8, 'https://www.gutenberg.org/ebooks/52115', 'en', 178), +(17962, 'Die Menschen der Ehe', 'Mackay, John Henry', '2005-01-15', 34, 'https://www.gutenberg.org/ebooks/14700', 'de', 48), +(17963, 'The Merry-Thought: or the Glass-Window and Bog-House Miscellany\nParts 2, 3 and 4', 'Hurlothrumbo', '2007-02-06', 27, 'https://www.gutenberg.org/ebooks/20535', 'en', 3947), +(17964, 'The Coast of Adventure', 'Bindloss, Harold', '2011-10-01', 53, 'https://www.gutenberg.org/ebooks/37582', 'en', 8183), +(17965, 'The Inside of the Cup — Volume 02', 'Churchill, Winston', '2004-10-19', 16, 'https://www.gutenberg.org/ebooks/5357', 'en', 7916), +(17966, 'Le ménagier de Paris (v. 1 & 2)', 'Anonymous', '2013-10-29', 66, 'https://www.gutenberg.org/ebooks/44070', 'fr', 8184), +(17967, 'Dixie After the War\nAn Exposition of Social Conditions Existing in the South, During the Twelve Years Succeeding the Fall of Richmond', 'Avary, Myrta Lockett', '2012-12-29', 31, 'https://www.gutenberg.org/ebooks/41730', 'en', 8185), +(17968, 'Margaret of Anjou\nMakers of History', 'Abbott, Jacob', '2008-05-01', 31, 'https://www.gutenberg.org/ebooks/25275', 'en', 8186), +(17969, '7 to 12: A Detective Story', 'Green, Anna Katharine', '2018-03-19', 54, 'https://www.gutenberg.org/ebooks/56787', 'en', 50), +(17970, 'Le passage, suivi de Transfiguration (Nouvelle)', 'Aleramo, Sibilla', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11040', 'fr', 8187), +(17971, 'Interruptions\r\nComic Sketch', 'Woottwell, Tom', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10192', 'en', 8188), +(17972, 'L\'amiral Du Casse, Chevalier de la Toison d\'Or (1646-1715)\r\nÉtude sur la France maritime et coloniale (règne de Louis XIV)', 'Du Casse, Robert Emmanuel Léon, baron', '2018-08-07', 7, 'https://www.gutenberg.org/ebooks/57655', 'fr', 4320), +(17973, 'Peveril of the Peak', 'Scott, Walter', '2004-06-01', 51, 'https://www.gutenberg.org/ebooks/5959', 'en', 8189), +(17974, 'On The Principles of Political Economy, and Taxation', 'Ricardo, David', '2010-07-31', 179, 'https://www.gutenberg.org/ebooks/33310', 'en', 1745), +(17975, 'Die Gnadenwahl: Erzählung', 'Thies, Hans Arthur', '2016-06-14', 8, 'https://www.gutenberg.org/ebooks/52327', 'de', 549), +(17976, 'Winter', 'Anonymous', '2014-04-14', 7, 'https://www.gutenberg.org/ebooks/45390', 'en', 8190), +(17977, 'The Palm Tree Blessing', 'Shepard, William Edward', '2011-07-09', 16, 'https://www.gutenberg.org/ebooks/36662', 'en', 1130), +(17978, 'Innocent : her fancy and his fact', 'Corelli, Marie', '2004-02-01', 50, 'https://www.gutenberg.org/ebooks/5165', 'en', 61), +(17979, 'Note sur l\'invasion des Sarrasins dans le Lyonnais', 'Vingtrinier, Aimé', '2013-11-21', 2, 'https://www.gutenberg.org/ebooks/44242', 'fr', 8191), +(17980, 'The Honorable Peter Stirling and What People Thought of Him', 'Ford, Paul Leicester', '2004-12-30', 28, 'https://www.gutenberg.org/ebooks/14532', 'en', 1238), +(17981, 'The Black Star Passes', 'Campbell, John W., Jr. (John Wood)', '2007-02-27', 161, 'https://www.gutenberg.org/ebooks/20707', 'en', 424), +(17982, 'The Brigade Commander', 'De Forest, John William', '2007-10-24', 20, 'https://www.gutenberg.org/ebooks/23182', 'en', 403), +(17983, 'The Long Journey', 'Singmaster, Elsie', '2015-11-17', 11, 'https://www.gutenberg.org/ebooks/50470', 'en', 8192), +(17984, 'A Book-Lover\'s Holidays in the Open', 'Roosevelt, Theodore', '2010-10-26', 93, 'https://www.gutenberg.org/ebooks/34135', 'en', 4240), +(17985, 'The Disowned — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 4, 'https://www.gutenberg.org/ebooks/7632', 'en', 137), +(17986, 'The Blue Poetry Book\n7th. Ed.', NULL, '2014-08-06', 35, 'https://www.gutenberg.org/ebooks/46515', 'en', 859), +(17987, 'Riley Songs of Home', 'Riley, James Whitcomb', '2005-07-12', 14, 'https://www.gutenberg.org/ebooks/16265', 'en', 178), +(17988, 'Life and Conduct', 'Lees, J. Cameron (James Cameron)', '2007-07-11', 4, 'https://www.gutenberg.org/ebooks/22050', 'en', 740), +(17989, 'The Plattner Story, and Others', 'Wells, H. G. (Herbert George)', '2013-06-20', 92, 'https://www.gutenberg.org/ebooks/42989', 'en', 26), +(17990, 'In the Hands of the Cave-Dwellers', 'Henty, G. A. (George Alfred)', '2013-06-30', 20, 'https://www.gutenberg.org/ebooks/43067', 'en', 31), +(17991, 'Wilhelm Meisters Lehrjahre — Band 6', 'Goethe, Johann Wolfgang von', '2000-09-01', 25, 'https://www.gutenberg.org/ebooks/2340', 'de', 1080), +(17992, 'Notes and Queries, Number 216, December 17, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-12-04', 10, 'https://www.gutenberg.org/ebooks/30595', 'en', 105), +(17993, 'Virginia of Elk Creek Valley', 'Chase, Mary Ellen', '2008-12-13', 13, 'https://www.gutenberg.org/ebooks/27522', 'en', 8193), +(17994, 'Ted Strong\'s Motor Car\r\nOr, Fast and Furious', 'Taylor, Edward C.', '2004-10-11', 29, 'https://www.gutenberg.org/ebooks/13717', 'en', 4365), +(17995, 'Ancient Chinese account of the Grand Canyon, or course of the Colorado', 'McAllan, Alexander', '2011-01-10', 21, 'https://www.gutenberg.org/ebooks/34909', 'en', 3944), +(17996, 'The Wooden Hand: A Detective Story', 'Hume, Fergus', '2017-07-12', 16, 'https://www.gutenberg.org/ebooks/55102', 'en', 128), +(17997, 'The Clever Woman of the Family', 'Yonge, Charlotte M. (Charlotte Mary)', '2002-06-01', 38, 'https://www.gutenberg.org/ebooks/3292', 'en', 3213), +(17998, 'Encyclopaedia Britannica, 11th Edition, \"Chitral\" to \"Cincinnati\"\r\nVolume 6, Slice 3', 'Various', '2010-02-28', 56, 'https://www.gutenberg.org/ebooks/31447', 'en', 1081), +(17999, 'The Hermitage, Home of Old Hickory', 'Horn, Stanley F.', '2018-05-29', 4, 'https://www.gutenberg.org/ebooks/57231', 'en', 5460), +(18000, 'Mice & Other Poems', 'Bullett, Gerald', '2010-09-20', 16, 'https://www.gutenberg.org/ebooks/33774', 'en', 1594), +(18001, 'The Decoration of Leather\nFrom the French of Georges de Récy', 'Récy, Georges de', '2012-07-20', 58, 'https://www.gutenberg.org/ebooks/40286', 'en', 8194), +(18002, 'The Incredible Honeymoon', 'Nesbit, E. (Edith)', '2012-11-12', 26, 'https://www.gutenberg.org/ebooks/41354', 'en', 8195), +(18003, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2008-05-26', 69, 'https://www.gutenberg.org/ebooks/25611', 'en', 2951), +(18004, 'The Trade Union Woman', 'Henry, Alice', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11424', 'en', 8196), +(18005, 'Serapis — Volume 01', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5501', 'en', 803), +(18006, 'Plantation Reminiscences', 'Burwell, Letitia M.', '2014-01-08', 17, 'https://www.gutenberg.org/ebooks/44626', 'en', 6508), +(18007, 'Men We Meet in the Field; or, The Bullshire Hounds', 'Bagot, A. G.', '2016-12-07', 13, 'https://www.gutenberg.org/ebooks/53691', 'en', 8197), +(18008, 'Dictionnaire des idées reçues', 'Flaubert, Gustave', '2004-11-26', 82, 'https://www.gutenberg.org/ebooks/14156', 'fr', 1032), +(18009, 'Modern French Masters', 'Van Vorst, Marie', '2018-11-13', 16, 'https://www.gutenberg.org/ebooks/58279', 'en', 8120), +(18010, 'Continental Monthly , Vol. 5, No. 6, June, 1864\nDevoted to Literature and National Policy', 'Various', '2007-01-15', 12, 'https://www.gutenberg.org/ebooks/20363', 'en', 162), +(18011, 'Recent Developments in European Thought', NULL, '2005-02-16', 18, 'https://www.gutenberg.org/ebooks/15084', 'en', 5720), +(18012, 'The Believer Not Ashamed of the Gospel', 'Hoare, Edward', '2016-08-07', 5, 'https://www.gutenberg.org/ebooks/52743', 'en', 2745), +(18013, 'Norfolk Annals, Vol. 2\r\nA Chronological Record of Remarkable Events in the Nineteeth Century', 'Mackie, Charles', '2011-05-23', 28, 'https://www.gutenberg.org/ebooks/36206', 'en', 2406), +(18014, 'The Go Ahead Boys on Smugglers\' Island', 'Kay, Ross', '2011-03-05', 8, 'https://www.gutenberg.org/ebooks/35483', 'en', 8198), +(18015, 'The Gift of the Magi', 'Henry, O.', '2005-01-01', 479, 'https://www.gutenberg.org/ebooks/7256', 'en', 585), +(18016, 'Florida Caverns State Park\nMarianna, Florida', 'Vernon, Robert O. (Robert Orion)', '2014-07-02', 22, 'https://www.gutenberg.org/ebooks/46171', 'en', 8199), +(18017, 'The Death-Wake\nor Lunacy; a Necromaunt in Three Chimeras', 'Stoddart, Thomas Tod', '2005-08-27', 22, 'https://www.gutenberg.org/ebooks/16601', 'en', 8), +(18018, 'The Tale of Timothy Turtle', 'Bailey, Arthur Scott', '2007-08-01', 3, 'https://www.gutenberg.org/ebooks/22434', 'en', 8200), +(18019, 'The Mentor: Historic Spots of America, Vol. 1, Num. 32, Serial No. 32', 'McElroy, Robert McNutt', '2015-09-07', 9, 'https://www.gutenberg.org/ebooks/49905', 'en', 207), +(18020, 'The Trail of the Green Doll\nA Judy Bolton Mystery', 'Sutton, Margaret', '2015-09-19', 10, 'https://www.gutenberg.org/ebooks/50014', 'en', 8201), +(18021, 'Witch Winnie: The Story of a \"King\'s Daughter\"', 'Champney, Elizabeth W. (Elizabeth Williams)', '2010-12-02', 16, 'https://www.gutenberg.org/ebooks/34551', 'en', 1655), +(18022, 'That Printer of Udell\'s: A Story of the Middle West', 'Wright, Harold Bell', '2004-08-01', 60, 'https://www.gutenberg.org/ebooks/6384', 'en', 942), +(18023, 'I Go A-Marketing', 'Sowle, Henrietta', '2017-09-17', 23, 'https://www.gutenberg.org/ebooks/55566', 'en', 103), +(18024, 'The Captain of the Kansas', 'Tracy, Louis', '2006-10-28', 25, 'https://www.gutenberg.org/ebooks/19649', 'en', 194), +(18025, 'Hebrew Heroes: A Tale Founded on Jewish History', 'A. L. O. E.', '2008-07-20', 37, 'https://www.gutenberg.org/ebooks/26094', 'en', 8202), +(18026, 'The First Airplane Diesel Engine: Packard Model DR-980 of 1928', 'Meyer, Robert B.', '2010-01-20', 31, 'https://www.gutenberg.org/ebooks/31023', 'en', 8203), +(18027, 'The Life of Carmen Sylva (Queen of Roumania)', 'Stackelberg, Natalie', '2015-06-05', 10, 'https://www.gutenberg.org/ebooks/49139', 'en', 8204), +(18028, 'Seaward: An Elegy on the Death of Thomas William Parsons', 'Hovey, Richard', '2013-08-05', 5, 'https://www.gutenberg.org/ebooks/43403', 'en', 8205), +(18029, 'Eskimo Folk-Tales', NULL, '2009-05-23', 53, 'https://www.gutenberg.org/ebooks/28932', 'en', 8206), +(18030, 'Theodore Roosevelt and His Times: A Chronicle of the Progressive Movement', 'Howland, Harold', '2001-07-01', 19, 'https://www.gutenberg.org/ebooks/2724', 'en', 4594), +(18031, 'The Bark Canoes and Skin Boats of North America', 'Chapelle, Howard Irving', '2016-01-02', 98, 'https://www.gutenberg.org/ebooks/50828', 'en', 8207), +(18032, 'Select Temperance Tracts', 'American Tract Society', '2008-11-04', 21, 'https://www.gutenberg.org/ebooks/27146', 'en', 6241), +(18033, 'Punch, or the London Charivari, Volume 100, June 13, 1891', 'Various', '2004-09-04', 10, 'https://www.gutenberg.org/ebooks/13373', 'en', 134), +(18034, 'Ben-Hur: A tale of the Christ', 'Wallace, Lew', '2005-09-01', 11, 'https://www.gutenberg.org/ebooks/8810', 'en', 609), +(18035, 'The Gay Cockade', 'Bailey, Temple', '2005-08-04', 45, 'https://www.gutenberg.org/ebooks/16433', 'en', 179), +(18036, 'The Booklover and His Books', 'Koopman, Harry Lyman', '2007-09-15', 36, 'https://www.gutenberg.org/ebooks/22606', 'en', 7900), +(18037, 'A Half-Century of Conflict - Volume II', 'Parkman, Francis', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/7064', 'en', 2649), +(18038, 'The Man with the Black Feather', 'Leroux, Gaston', '2014-07-20', 32, 'https://www.gutenberg.org/ebooks/46343', 'en', 8208), +(18039, 'The Storehouses of the King; Or, the Pyramids of Egypt\r\nWhat They Are and Who Built Them', 'Gelder, Jane (Trill) van', '2014-11-05', 17, 'https://www.gutenberg.org/ebooks/47291', 'en', 5813), +(18040, 'The Cat and Fiddle Book\nEight Dramatised Nursery Rhymes for Nursery Performers', 'Bell, Florence Eveleen Eleanore Olliffe, Lady', '2010-12-27', 33, 'https://www.gutenberg.org/ebooks/34763', 'en', 364), +(18041, 'Serge Prokofieff and His Orchestral Music', 'Biancolli, Louis Leopold', '2015-10-15', 10, 'https://www.gutenberg.org/ebooks/50226', 'en', 8209), +(18042, 'Cavalry of the Clouds', 'Bott, Alan', '2010-02-07', 22, 'https://www.gutenberg.org/ebooks/31211', 'en', 8210), +(18043, 'The O. S. U. Naturalist (Vol. I, No. 1)', 'Ohio State University. Biological Club', '2017-10-15', 5, 'https://www.gutenberg.org/ebooks/55754', 'en', 210), +(18044, 'The Song of the Stone Wall', 'Keller, Helen', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/12093', 'en', 994), +(18045, 'L\'Arrabbiata', 'Heyse, Paul', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/7858', 'de', 16), +(18046, 'A Young Man in a Hurry, and Other Short Stories', 'Chambers, Robert W. (Robert William)', '2008-12-01', 22, 'https://www.gutenberg.org/ebooks/27374', 'en', 1426), +(18047, 'The Princess Priscilla\'s Fortnight', 'Von Arnim, Elizabeth', '2004-08-08', 50, 'https://www.gutenberg.org/ebooks/13141', 'en', 3208), +(18048, 'Piping Hot! (Pot-Bouille): A Realistic Novel', 'Zola, Émile', '2017-05-08', 20, 'https://www.gutenberg.org/ebooks/54686', 'en', 2373), +(18049, 'The Vice Bondage of a Great City; or, the Wickedest City in the World', 'Harland, Robert O.', '2013-09-03', 21, 'https://www.gutenberg.org/ebooks/43631', 'en', 8211), +(18050, 'Redgauntlet: A Tale Of The Eighteenth Century', 'Scott, Walter', '2001-02-01', 71, 'https://www.gutenberg.org/ebooks/2516', 'en', 8212), +(18051, 'Amours De Voyage', 'Clough, Arthur Hugh', '1998-07-01', 49, 'https://www.gutenberg.org/ebooks/1393', 'en', 8213), +(18052, 'The Missioner', 'Oppenheim, E. Phillips (Edward Phillips)', '2010-08-27', 14, 'https://www.gutenberg.org/ebooks/33546', 'en', 128), +(18053, 'Washington and the Riddle of Peace', 'Wells, H. G. (Herbert George)', '2019-02-12', 16, 'https://www.gutenberg.org/ebooks/58877', 'en', 6956), +(18054, 'The Intimate Letters of Hester Piozzi and Penelope Pennington, 1788-1821', 'Pennington, Penelope', '2018-04-19', 33, 'https://www.gutenberg.org/ebooks/57003', 'en', 3136), +(18055, '狂人日記', 'Lu, Xun', '2008-05-11', 127, 'https://www.gutenberg.org/ebooks/25423', 'zh', 8214), +(18056, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 552, June 16, 1832', 'Various', '2004-03-01', 37, 'https://www.gutenberg.org/ebooks/11616', 'en', 133), +(18057, 'Crying for the Light; Or, Fifty Years Ago. Vol. 1 [of 3]', 'Ritchie, J. Ewing (James Ewing)', '2011-07-21', 12, 'https://www.gutenberg.org/ebooks/36808', 'en', 8215), +(18058, 'Trails and Tramps in Alaska and Newfoundland', 'Thomas, William S.', '2012-10-24', 6, 'https://www.gutenberg.org/ebooks/41166', 'en', 318), +(18059, 'Doktor Nikola', 'Boothby, Guy', '2010-05-23', 32, 'https://www.gutenberg.org/ebooks/32494', 'da', 114), +(18060, 'Black Tales for White Children', 'Stigand, C. H. (Chauncy Hugh)', '2012-02-26', 33, 'https://www.gutenberg.org/ebooks/38992', 'en', 8216), +(18061, 'Punch, Or The London Charivari, Volume 102, March 12, 1892', 'Various', '2004-12-16', 2, 'https://www.gutenberg.org/ebooks/14364', 'en', 134), +(18062, 'Jethro Wood, Inventor of the Modern Plow.\r\nA Brief Account of His Life, Services, and Trials; Together with Facts Subsequent to his Death, and Incident to His Great Invention', 'Gilbert, Frank', '2012-09-28', 18, 'https://www.gutenberg.org/ebooks/40888', 'en', 8217), +(18063, 'Hidden Treasures; Or, Why Some Succeed While Others Fail', 'Lewis, Harry A.', '2006-12-20', 203, 'https://www.gutenberg.org/ebooks/20151', 'en', 4065), +(18064, 'Autobiography: Truth and Fiction Relating to My Life', 'Goethe, Johann Wolfgang von', '2004-05-01', 62, 'https://www.gutenberg.org/ebooks/5733', 'en', 7537), +(18065, 'The Mormon Prophet and His Harem\r\nOr, An Authentic History of Brigham Young, His Numerous Wives and Children', 'Waite, C. V. (Catherine Van Valkenburg)', '2013-12-12', 42, 'https://www.gutenberg.org/ebooks/44414', 'en', 8218), +(18066, 'White Nights and Other Stories\nThe Novels of Fyodor Dostoevsky, Volume X', 'Dostoyevsky, Fyodor', '2011-05-05', 429, 'https://www.gutenberg.org/ebooks/36034', 'en', 7203), +(18067, 'Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910\nThe Bergen Hill Tunnels. Paper No. 1154', 'Lavis, F.', '2007-04-15', 11, 'https://www.gutenberg.org/ebooks/21083', 'en', 8219), +(18068, 'Evolution', 'Watson, James A. S. (James Anderson Scott)', '2016-07-14', 10, 'https://www.gutenberg.org/ebooks/52571', 'en', 1315), +(18069, 'The Desert Healer', 'Hull, E. M. (Edith Maude)', '2019-04-03', 36, 'https://www.gutenberg.org/ebooks/59199', 'en', 8220), +(18070, 'The Esperantist, Vol. 2, No. 1', NULL, '2012-05-29', 10, 'https://www.gutenberg.org/ebooks/39840', 'en', 3912), +(18071, 'Erämaan nuijamiehet: Historiallinen romaani', 'Ivalo, Santeri', '2013-10-05', 22, 'https://www.gutenberg.org/ebooks/43890', 'fi', 98), +(18072, 'In the Control Tower', 'Mohler, Will', '2007-10-22', 40, 'https://www.gutenberg.org/ebooks/23149', 'en', 179), +(18073, 'Leonardo da Vinci, Pathfinder of Science', 'Gillette, Henry S.', '2017-06-02', 24, 'https://www.gutenberg.org/ebooks/54827', 'en', 8221), +(18074, 'Blood and Iron\r\nOrigin of German Empire As Revealed by Character of Its Founder, Bismarck', 'Greusel, John Hubert', '2009-07-21', 21, 'https://www.gutenberg.org/ebooks/29473', 'en', 8222), +(18075, 'O Primo Bazilio: Episodio Domestico', 'Queirós, Eça de', '2013-06-13', 41, 'https://www.gutenberg.org/ebooks/42942', 'pt', 4147), +(18076, 'Poema del Otoño y otros poemas\nObras Completas Vol. XI', 'Darío, Rubén', '2016-03-26', 20, 'https://www.gutenberg.org/ebooks/51569', 'es', 3817), +(18077, 'Alice, or the Mysteries — Book 01', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 85, 'https://www.gutenberg.org/ebooks/9763', 'en', 137), +(18078, 'A Modern Aladdin; or, The Wonderful Adventures of Oliver Munier\r\nAn Extravaganza in Four Acts', 'Pyle, Howard', '2015-03-09', 40, 'https://www.gutenberg.org/ebooks/48444', 'en', 7287), +(18079, 'Spirits in Bondage', 'Lewis, C. S. (Clive Staples)', '2007-12-01', 31, 'https://www.gutenberg.org/ebooks/23975', 'en', 8223), +(18080, 'The Illustrated War News, Number 21, Dec. 30, 1914', 'Various', '2006-05-07', 46, 'https://www.gutenberg.org/ebooks/18334', 'en', 8224), +(18081, 'Captain Kyd; or, The Wizard of the Sea. Vol. II', 'Ingraham, J. H. (Joseph Holt)', '2011-04-09', 22, 'https://www.gutenberg.org/ebooks/35810', 'en', 3039), +(18082, 'The Sorrows of Belgium: A Play in Six Scenes', 'Andreyev, Leonid', '2015-08-04', 12, 'https://www.gutenberg.org/ebooks/49596', 'en', 7875), +(18083, 'Countess Kate', 'Yonge, Charlotte M. (Charlotte Mary)', '2002-06-01', 15, 'https://www.gutenberg.org/ebooks/3259', 'en', 8225), +(18084, 'Assignment\'s End', 'Aycock, Roger D.', '2010-05-02', 53, 'https://www.gutenberg.org/ebooks/32209', 'en', 26), +(18085, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1585c', 'Motley, John Lothrop', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/4840', 'en', 3372), +(18086, 'Station Amusements in New Zealand', 'Barker, Lady (Mary Anne)', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5992', 'en', 3572), +(18087, 'England and the War', 'Raleigh, Walter Alexander, Sir', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/10159', 'en', 335), +(18088, 'Punch, or the London Charivari, Volume 93, December 17, 1887', 'Various', '2012-08-30', 7, 'https://www.gutenberg.org/ebooks/40629', 'en', 134), +(18089, 'Father Bear and Bobby Bear', 'Lowe, Samuel E. (Samuel Edward)', '2012-02-01', 3, 'https://www.gutenberg.org/ebooks/38733', 'en', 76), +(18090, 'Seikkailujen saari', 'Tracy, Louis', '2019-06-08', 4, 'https://www.gutenberg.org/ebooks/59704', 'fi', 8226), +(18091, 'An Outline of English Speech-craft', 'Barnes, William', '2013-11-26', 24, 'https://www.gutenberg.org/ebooks/44289', 'en', 1979), +(18092, 'The World Turned Upside Down\r\nOr, No News, and Strange News', 'Anonymous', '2004-02-01', 52, 'https://www.gutenberg.org/ebooks/10965', 'en', 859), +(18093, 'A-B-C of Electricity', 'Meadowcroft, Wm. H. (William Henry)', '2014-06-13', 51, 'https://www.gutenberg.org/ebooks/45955', 'en', 2979), +(18094, 'The Memoirs of Charles-Lewis, Baron de Pollnitz, Volume II\r\nBeing the Observations He Made in His Late Travels from Prussia Thro\' Germany, Italy, France, Flanders, Holland, England, &c. in Letters to His Friend. Discovering Not Only the Present State of the Chief Cities and Towns; but the Characters of the Principal Persons at the Several Courts.', 'Pöllnitz, Karl Ludwig, Freiherr von', '2012-01-05', 16, 'https://www.gutenberg.org/ebooks/38501', 'en', 1408), +(18095, 'Natchez, Symbol of the Old South', 'Oliver, Nola Nance', '2016-12-30', 12, 'https://www.gutenberg.org/ebooks/53830', 'en', 8227), +(18096, 'Punch, or the London Charivari, Vol. 108, April 6, 1895', 'Various', '2014-02-13', 11, 'https://www.gutenberg.org/ebooks/44887', 'en', 134), +(18097, 'The Autobiography of a Thief', 'Hapgood, Hutchins', '2014-03-18', 27, 'https://www.gutenberg.org/ebooks/45169', 'en', 8228), +(18098, 'Captain Lucy and Lieutenant Bob', 'Havard, Aline', '2019-05-18', 31, 'https://www.gutenberg.org/ebooks/59536', 'en', 3621), +(18099, 'The Great Round World and What Is Going On In It, Vol. 1, No. 30, June 3, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-14', 20, 'https://www.gutenberg.org/ebooks/15619', 'en', 1), +(18100, 'Freehold Land Societies: Their History, Present Position, and Claims', 'Ritchie, J. Ewing (James Ewing)', '2010-06-14', 7, 'https://www.gutenberg.org/ebooks/32807', 'en', 8229), +(18101, 'Aventures extraordinaires d\'un savant russe\nII. Le Soleil et les petites planètes', 'Graffigny, H. de (Henry)', '2008-03-30', 27, 'https://www.gutenberg.org/ebooks/24962', 'fr', 623), +(18102, 'The Beauty', 'Woodrow, Wilson, Mrs.', '2011-09-26', 17, 'https://www.gutenberg.org/ebooks/37549', 'en', 434), +(18103, 'Songs of Kabir', 'Kabir', '2004-09-01', 169, 'https://www.gutenberg.org/ebooks/6519', 'en', 8230), +(18104, 'One in a Thousand; or, The Days of Henri Quatre', 'James, G. P. R. (George Payne Rainsford)', '2015-12-14', 8, 'https://www.gutenberg.org/ebooks/50689', 'en', 6798), +(18105, 'Mark Twain: A Biography. Volume II, Part 2: 1886-1900', 'Paine, Albert Bigelow', '2004-10-04', 32, 'https://www.gutenberg.org/ebooks/2985', 'en', 8231), +(18106, 'Oomphel in the Sky', 'Piper, H. Beam', '2009-05-01', 13, 'https://www.gutenberg.org/ebooks/28793', 'en', 26), +(18107, 'The business career in its public relations', 'Shaw, Albert', '2009-08-09', 11, 'https://www.gutenberg.org/ebooks/29641', 'en', 7151), +(18108, 'Memoirs of the Court of Louis XIV. and of the Regency — Volume 03', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2004-12-03', 7, 'https://www.gutenberg.org/ebooks/3857', 'en', 8232), +(18109, 'Lettres de Marie Bashkirtseff\nPréface de François Coppée', 'Bashkirtseff, Marie', '2006-04-02', 20, 'https://www.gutenberg.org/ebooks/18106', 'fr', 8233), +(18110, 'Kuningattaren kaulanauha: Historiallinen romaani Ludvig XVI:n hovista', 'Dumas, Alexandre', '2017-02-24', 8, 'https://www.gutenberg.org/ebooks/54229', 'fi', 984), +(18111, 'Round About the Carpathians', 'Crosse, Andrew F.', '2006-03-12', 20, 'https://www.gutenberg.org/ebooks/17972', 'en', 8234), +(18112, 'The Adventures of Sherlock Holmes', 'Doyle, Arthur Conan', '2005-12-01', 309, 'https://www.gutenberg.org/ebooks/9551', 'en', 834), +(18113, 'Den bergtagna: En kärlekens tragedi', 'Lundegård, Axel', '2015-04-10', 9, 'https://www.gutenberg.org/ebooks/48676', 'sv', 8235), +(18114, 'Scientific American Supplement, No. 324, March 18, 1882', 'Various', '2005-07-01', 11, 'https://www.gutenberg.org/ebooks/8483', 'en', 210), +(18115, 'Essai sur l\'éducation des aveugles', 'Haüy, Valentin', '2008-09-13', 9, 'https://www.gutenberg.org/ebooks/26609', 'fr', 8236), +(18116, 'The Cabin [La barraca]', 'Blasco Ibáñez, Vicente', '2011-11-29', 35, 'https://www.gutenberg.org/ebooks/38165', 'en', 480), +(18117, 'Enoch Arden, &c.', 'Tennyson, Alfred Tennyson, Baron', '1998-06-01', 121, 'https://www.gutenberg.org/ebooks/1358', 'en', 532), +(18118, 'The Motor Girls at Lookout Beach; Or, In Quest of the Runaways', 'Penrose, Margaret', '2011-11-02', 3, 'https://www.gutenberg.org/ebooks/37911', 'en', 2096), +(18119, 'The Bay and Padie Book\nKiddie Songs', 'Maurice, Furnley', '2007-06-20', 13, 'https://www.gutenberg.org/ebooks/21874', 'en', 8237), +(18120, 'Notes and Queries, Vol. V, Number 124, March 13, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-22', 17, 'https://www.gutenberg.org/ebooks/40843', 'en', 105), +(18121, 'Pam and the Countess', 'Cowper, E. E. (Edith Elise)', '2016-11-06', 6, 'https://www.gutenberg.org/ebooks/53468', 'en', 389), +(18122, 'Comparative Ecology of Pinyon Mice and Deer Mice in Mesa Verde National Park, Colorado', 'Douglas, Charles L.', '2012-02-22', 86, 'https://www.gutenberg.org/ebooks/38959', 'en', 8238), +(18123, 'poems of yes and no', 'Bartlett, Elizabeth', '2018-10-11', 18, 'https://www.gutenberg.org/ebooks/58080', 'en', 994), +(18124, 'Robin Hood\r\nA collection of all the ancient poems, songs, and ballads, now extant, relative to that celebrated English outlaw. To which are prefixed historical anecdotes of his life.', NULL, '2018-04-05', 57, 'https://www.gutenberg.org/ebooks/56926', 'en', 8239), +(18125, 'The American Bee Journal. Volume XVII No. 11, March 1881', 'Various', '2019-03-29', 5, 'https://www.gutenberg.org/ebooks/59152', 'en', 2825), +(18126, 'Just Patty', 'Webster, Jean', '2007-04-12', 48, 'https://www.gutenberg.org/ebooks/21048', 'en', 1655), +(18127, 'Mathématiques et Mathématiciens: Pensées et Curiosités', NULL, '2013-02-03', 38, 'https://www.gutenberg.org/ebooks/41991', 'fr', 8240), +(18128, 'The Battle of Bunkers-Hill', 'Brackenridge, H. H. (Hugh Henry)', '2009-06-26', 10, 'https://www.gutenberg.org/ebooks/29225', 'en', 508), +(18129, 'The Story of the Alphabet', 'Clodd, Edward', '2014-07-24', 23, 'https://www.gutenberg.org/ebooks/46388', 'en', 8241), +(18130, 'A Collection of College Words and Customs', 'Hall, Benjamin Homer', '2004-07-09', 15, 'https://www.gutenberg.org/ebooks/12864', 'en', 8242), +(18131, 'Nightmare Abbey', 'Peacock, Thomas Love', '2006-02-01', 143, 'https://www.gutenberg.org/ebooks/9909', 'en', 637), +(18132, 'Forbidden Cargoes', 'Snell, Roy J. (Roy Judson)', '2013-05-18', 88, 'https://www.gutenberg.org/ebooks/42728', 'en', 8243), +(18133, 'Hide and Seek', 'Collins, Wilkie', '2005-04-01', 83, 'https://www.gutenberg.org/ebooks/7893', 'en', 1061), +(18134, 'The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose \r\nVirata Parva', NULL, '2004-04-01', 56, 'https://www.gutenberg.org/ebooks/12058', 'en', 1804), +(18135, 'Old Mortality, Complete', 'Scott, Walter', '2004-08-22', 98, 'https://www.gutenberg.org/ebooks/6941', 'en', 2564), +(18136, 'Outlines of the Earth\'s History: A Popular Study in Physiography', 'Shaler, Nathaniel Southgate', '2006-06-12', 15, 'https://www.gutenberg.org/ebooks/18562', 'en', 4250), +(18137, 'Hanging by a Thread', 'Garrett, Randall', '2009-10-21', 57, 'https://www.gutenberg.org/ebooks/30308', 'en', 26), +(18138, 'Le feu (Journal d\'une Escouade)', 'Barbusse, Henri', '2015-02-09', 37, 'https://www.gutenberg.org/ebooks/48212', 'fr', 579), +(18139, 'Nélida; Hervé; Julien', 'Stern, Daniel', '2008-10-10', 20, 'https://www.gutenberg.org/ebooks/26863', 'fr', 100), +(18140, 'Herd Record of the Association of Breeders of Thorough-Bred Neat Stock\nShort Horns, Ayrshires and Devons', 'Various', '2011-03-02', 6, 'https://www.gutenberg.org/ebooks/35448', 'en', 8244), +(18141, 'Purimossa: Viisinäytöksinen näytelmä', 'Halme, Kaarle', '2009-06-01', 14, 'https://www.gutenberg.org/ebooks/29017', 'fi', 247), +(18142, 'Infelice', 'Evans, Augusta J. (Augusta Jane)', '2006-02-08', 15, 'https://www.gutenberg.org/ebooks/17718', 'en', 770), +(18143, 'Mémoires inédits de Mademoiselle George, publiés d\'après le manuscrit original', 'Weimer, Marguerite-Joséphine (Mademoiselle George)', '2010-01-09', 17, 'https://www.gutenberg.org/ebooks/30906', 'fr', 642), +(18144, 'The Growth of the English Constitution from the Earliest Times', 'Freeman, Edward A. (Edward Augustus)', '2014-10-06', 18, 'https://www.gutenberg.org/ebooks/47068', 'en', 445), +(18145, 'The Christ: A Critical Review and Analysis of the Evidences of His Existence', 'Remsburg, John E. (John Eleazer)', '2014-09-28', 78, 'https://www.gutenberg.org/ebooks/46986', 'en', 1616), +(18146, 'Chapters from My Autobiography', 'Twain, Mark', '2006-11-14', 2, 'https://www.gutenberg.org/ebooks/19682', 'en', 836), +(18147, 'How to bring men to Christ', 'Torrey, R. A. (Reuben Archer)', '2016-05-01', 57, 'https://www.gutenberg.org/ebooks/51931', 'en', 8245), +(18148, 'Life: Its True Genesis', 'Flaccus, Horatius', '2005-11-01', 25, 'https://www.gutenberg.org/ebooks/9307', 'en', 6175), +(18149, 'Aurora Floyd, Vol. 1\r\nFifth Edition', 'Braddon, M. E. (Mary Elizabeth)', '2015-01-19', 50, 'https://www.gutenberg.org/ebooks/48020', 'en', 434), +(18150, 'Stories from Everybody\'s Magazine', 'Various', '1996-10-01', 84, 'https://www.gutenberg.org/ebooks/694', 'en', 61), +(18151, 'Wandering Heath', 'Quiller-Couch, Arthur', '2006-07-03', 16, 'https://www.gutenberg.org/ebooks/18750', 'en', 179), +(18152, 'Greenacre Girls', 'Forrester, Izola L. (Izola Louise)', '2015-06-11', 13, 'https://www.gutenberg.org/ebooks/47854', 'en', 62), +(18153, 'The Biology, Physiology and Sociology of Reproduction\nAlso Sexual Hygiene with Special Reference to the Male', 'Hall, Winfield Scott', '2008-02-27', 68, 'https://www.gutenberg.org/ebooks/24708', 'en', 3128), +(18154, 'By Right of Sword', 'Marchmont, Arthur W.', '2011-12-20', 13, 'https://www.gutenberg.org/ebooks/38357', 'en', 2004), +(18155, 'William Shakespere, of Stratford-on-Avon\nHis Epitaph Unearthed, and the Author of the Plays run to Ground', 'Surtees, Scott F. (Scott Frederick)', '2012-03-28', 19, 'https://www.gutenberg.org/ebooks/39285', 'en', 8246), +(18156, 'The Day of Days: An Extravaganza', 'Vance, Louis Joseph', '2005-05-20', 15, 'https://www.gutenberg.org/ebooks/15873', 'en', 323), +(18157, 'General Anatomy, Applied to Physiology and Medicine, Vol. 3 (of 3)', 'Bichat, Xavier', '2018-01-07', 17, 'https://www.gutenberg.org/ebooks/56328', 'en', 8247), +(18158, 'And Even Now', 'Beerbohm, Max, Sir', '1999-11-01', 59, 'https://www.gutenberg.org/ebooks/1956', 'en', 472), +(18159, 'Midnight Jack, or The road-agent', 'Harbaugh, T. C. (Thomas Chalmers)', '2016-08-12', 7, 'https://www.gutenberg.org/ebooks/52788', 'en', 1357), +(18160, 'Index of the Project Gutenberg Works of George Alfred Henty', 'Henty, G. A. (George Alfred)', '2019-04-25', 22, 'https://www.gutenberg.org/ebooks/59360', 'en', 198), +(18161, 'Sandra Belloni — Volume 6', 'Meredith, George', '2003-09-01', 14, 'https://www.gutenberg.org/ebooks/4418', 'en', 137), +(18162, 'A Jolly Jingle-Book', NULL, '2007-03-21', 6, 'https://www.gutenberg.org/ebooks/20952', 'en', 859), +(18163, 'Last Words', 'Crane, Stephen', '2010-08-30', 68, 'https://www.gutenberg.org/ebooks/33579', 'en', 20), +(18164, 'The Boyhood of Great Inventors', 'Robertson, A. Fraser', '2011-12-03', 17, 'https://www.gutenberg.org/ebooks/38191', 'en', 8248), +(18165, 'Nick Tappoli', 'Heer, J. C. (Jakob Christoph)', '2019-02-09', 5, 'https://www.gutenberg.org/ebooks/58848', 'de', 7092), +(18166, 'Punch, or the London Charivari, Volume 153, December 26, 1917', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11629', 'en', 134), +(18167, 'The Lure of the Pen: A Book for Would-Be Authors', 'Klickmann, Flora', '2011-07-24', 15, 'https://www.gutenberg.org/ebooks/36837', 'en', 8249), +(18168, 'Die Kakomonade\nEin Nachlaß vom Doktor Panglos, als ein Supplement des Kandide', 'Linguet, Simon Nicolas Henri', '2012-03-04', 15, 'https://www.gutenberg.org/ebooks/39043', 'de', 8250), +(18169, 'The Medallic History of the United States of America 1776-1876', 'Loubat, J. F. (Joseph Florimond)', '2007-06-20', 11, 'https://www.gutenberg.org/ebooks/21880', 'en', 8251), +(18170, 'The Red Battle Flyer', 'Richthofen, Manfred, Freiherr von', '2012-10-24', 71, 'https://www.gutenberg.org/ebooks/41159', 'en', 5356), +(18171, 'Travels Into Bokhara (Volume 1 of 3)\r\nBeing the Account of A Journey from India to Cabool, Tartary, and Persia; Also, Narrative of a Voyage on the Indus, From the Sea to Lahore, With Presents From the King of Great Britain; Performed Under the Orders of the Supreme Government of India, in the Years 1831, 1832, and 1833', 'Burnes, Alexander, Sir', '2018-10-11', 44, 'https://www.gutenberg.org/ebooks/58074', 'en', 1992), +(18172, 'The Flow of Time in the Connecticut Valley: Geological Imprints', 'Bain, George W. (George William)', '2018-08-29', 10, 'https://www.gutenberg.org/ebooks/57800', 'en', 8252), +(18173, 'The Truce of God\nA Tale of the Eleventh Century', 'Miles, George Henry', '2005-03-08', 8, 'https://www.gutenberg.org/ebooks/15289', 'en', 8253), +(18174, 'Histoire du Consulat et de l\'Empire, (Vol. 05 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2013-02-02', 35, 'https://www.gutenberg.org/ebooks/41965', 'fr', 2051), +(18175, 'Notes and Queries, Number 68, February 15, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-09-16', 34, 'https://www.gutenberg.org/ebooks/22639', 'en', 105), +(18176, 'Elizabethan Demonology\r\nAn Essay in Illustration of the Belief in the Existence of Devils, and the Powers Possessed By Them, as It Was Generally Held during the Period of the Reformation, and the Times Immediately Succeeding; with Special Reference to Shakspere and His Works', 'Spalding, Thomas Alfred', '2004-07-12', 48, 'https://www.gutenberg.org/ebooks/12890', 'en', 8254), +(18177, 'Brave Men and Women: Their Struggles, Failures, And Triumphs', 'Fuller, Osgood E. (Osgood Eaton)', '2004-11-03', 45, 'https://www.gutenberg.org/ebooks/13942', 'en', 122), +(18178, 'Northern Lights, Volume 4.', 'Parker, Gilbert', '2004-07-01', 9, 'https://www.gutenberg.org/ebooks/6189', 'en', 1887), +(18179, 'A Journal of the Disasters in Affghanistan, 1841-2', 'Sale, Florentia Wynch', '2015-10-15', 24, 'https://www.gutenberg.org/ebooks/50219', 'en', 8255), +(18180, 'The Smart Set: Correspondence & Conversations', 'Fitch, Clyde', '2009-03-10', 12, 'https://www.gutenberg.org/ebooks/28303', 'en', 2688), +(18181, 'Radioisotopes and Life Processes (Revised)', 'Baserga, Renato', '2015-06-30', 5, 'https://www.gutenberg.org/ebooks/49334', 'en', 8256), +(18182, 'The Bible, King James version, Book 13: 1 Chronicles', 'Anonymous', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/8013', 'en', 808), +(18183, 'Onder Moeders Vleugels', 'Alcott, Louisa May', '2008-08-01', 25, 'https://www.gutenberg.org/ebooks/26299', 'nl', 7171), +(18184, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 06, June 1895\r\nRenaissance Panels from Perugia', 'Various', '2006-10-02', 19, 'https://www.gutenberg.org/ebooks/19444', 'en', 2140), +(18185, 'Crooked Trails', 'Remington, Frederic', '2005-04-01', 34, 'https://www.gutenberg.org/ebooks/7867', 'en', 315), +(18186, 'Lavengro: The Scholar, the Gypsy, the Priest', 'Borrow, George', '1996-03-01', 62, 'https://www.gutenberg.org/ebooks/452', 'en', 3294), +(18187, 'Ride A Cock-Horse To Banbury Cross & A Farmer Went Trotting Upon His Grey Mare\nR. Caldecott\'s Picture Books', NULL, '2006-06-15', 31, 'https://www.gutenberg.org/ebooks/18596', 'en', 2296), +(18188, 'The Analysis of Mind', 'Russell, Bertrand', '2001-02-01', 495, 'https://www.gutenberg.org/ebooks/2529', 'en', 354), +(18189, 'Notes and Queries, Number 77, April 19, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-12', 16, 'https://www.gutenberg.org/ebooks/26897', 'en', 105), +(18190, 'Macbeth', 'Shakespeare, William', '2005-01-01', 38, 'https://www.gutenberg.org/ebooks/7269', 'de', 8257), +(18191, 'The Serapion Brethren, Vol. I.', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2010-03-29', 56, 'https://www.gutenberg.org/ebooks/31820', 'en', 61), +(18192, 'The Nursery, March 1877, Vol. XXI. No. 3\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 14, 'https://www.gutenberg.org/ebooks/28131', 'en', 4641), +(18193, 'Het Leven der Dieren: Deel 2, Hoofdstuk 02: De Papegaaien; Hoofdstuk 03: De Duifvogels', 'Brehm, Alfred Edmund', '2009-01-31', 7, 'https://www.gutenberg.org/ebooks/27945', 'nl', 2360), +(18194, 'Eskimo Life', 'Nansen, Fridtjof', '2014-09-26', 38, 'https://www.gutenberg.org/ebooks/46972', 'en', 8258), +(18195, 'Von Wundern und Tieren: Neue naturwissenschaftliche Plaudereien', 'Bölsche, Wilhelm', '2017-09-16', 23, 'https://www.gutenberg.org/ebooks/55559', 'de', 2560), +(18196, 'Shakespeare and Music\nWith Illustrations from the Music of the 16th and 17th centuries', 'Naylor, Edward W. (Edward Woodall)', '2006-10-31', 61, 'https://www.gutenberg.org/ebooks/19676', 'en', 8259), +(18197, 'Luther, vol. 3 of 6', 'Grisar, Hartmann', '2015-06-02', 12, 'https://www.gutenberg.org/ebooks/49106', 'en', 1073), +(18198, 'A Study of Poetry', 'Perry, Bliss', '2005-06-01', 46, 'https://www.gutenberg.org/ebooks/8221', 'en', 8), +(18199, 'Juvenile Sports; or, Youth\'s Pastimes', 'Anonymous', '2016-01-01', 9, 'https://www.gutenberg.org/ebooks/50817', 'en', 8260), +(18200, 'The Gutenberg Webster\'s Unabridged Dictionary: Section A and B', 'Webster, Noah', '1996-09-01', 183, 'https://www.gutenberg.org/ebooks/660', 'en', 1481); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(18201, 'Laments', 'Kochanowski, Jan', '2008-11-06', 34, 'https://www.gutenberg.org/ebooks/27179', 'en', 8261), +(18202, 'The Kings and Queens of England with Other Poems', 'Bigelow, Mary Ann H. T. (Mary Ann Hubbard Townsend)', '2005-02-07', 13, 'https://www.gutenberg.org/ebooks/14955', 'en', 178), +(18203, 'The American Missionary — Volume 49, No. 03, March, 1895', 'Various', '2005-05-24', 7, 'https://www.gutenberg.org/ebooks/15887', 'en', 395), +(18204, 'The Makers of Canada: Index and Dictionary of Canadian History', NULL, '2010-06-05', 24, 'https://www.gutenberg.org/ebooks/32699', 'en', 8262), +(18205, 'Edward Hoare, M.A.: A record of his life based upon a brief autobiography', 'Hoare, Edward', '2012-03-26', 6, 'https://www.gutenberg.org/ebooks/39271', 'en', 8263), +(18206, 'The Expositor\'s Bible: The Second Book of Samuel', 'Blaikie, William Garden', '2014-01-07', 15, 'https://www.gutenberg.org/ebooks/44619', 'en', 8264), +(18207, 'Ethel Hollister\'s Second Summer as a Campfire Girl', 'Benson, Irene Elliott', '2004-11-26', 10, 'https://www.gutenberg.org/ebooks/14169', 'en', 622), +(18208, 'Dagonet Ditties', 'Sims, George R.', '2018-11-07', 60, 'https://www.gutenberg.org/ebooks/58246', 'en', 532), +(18209, 'The Margenes', 'De Ford, Miriam Allen', '2019-04-29', 49, 'https://www.gutenberg.org/ebooks/59394', 'en', 26), +(18210, 'Fatalità', 'Negri, Ada', '2011-05-27', 34, 'https://www.gutenberg.org/ebooks/36239', 'it', 739), +(18211, 'Andrew Marvell', 'Birrell, Augustine', '2005-12-25', 45, 'https://www.gutenberg.org/ebooks/17388', 'en', 8265), +(18212, 'The Virginia Company Of London, 1606-1624', 'Craven, Wesley Frank', '2009-04-11', 25, 'https://www.gutenberg.org/ebooks/28555', 'en', 7365), +(18213, 'Running Fox', 'Gregor, Elmer Russell', '2013-10-02', 8, 'https://www.gutenberg.org/ebooks/43864', 'en', 676), +(18214, 'Critical, Historical, and Miscellaneous Essays; Vol. 1\r\nWith a Memoir and Index', 'Macaulay, Thomas Babington Macaulay, Baron', '2017-11-06', 18, 'https://www.gutenberg.org/ebooks/55901', 'en', 1694), +(18215, 'Forever', 'Sheckley, Robert', '2009-07-22', 64, 'https://www.gutenberg.org/ebooks/29487', 'en', 179), +(18216, 'Punchinello, Volume 1, No. 15, July 9, 1870', 'Various', '2006-01-01', 8, 'https://www.gutenberg.org/ebooks/9797', 'en', 372), +(18217, 'Marie Tarnowska', 'Vivanti, Annie', '2013-06-29', 5, 'https://www.gutenberg.org/ebooks/43058', 'en', 8266), +(18218, '瀛涯勝覽', 'Ma, Huan, active 1414-1451', '2007-12-23', 9, 'https://www.gutenberg.org/ebooks/23981', 'zh', 5856), +(18219, 'Marcella', 'Ward, Humphry, Mrs.', '2004-10-12', 24, 'https://www.gutenberg.org/ebooks/13728', 'en', 7779), +(18220, 'The Blood of Rachel, a Dramatization of Esther, and Other Poems', 'Noe, Cotton', '2011-01-12', 1, 'https://www.gutenberg.org/ebooks/34936', 'en', 8), +(18221, 'The Innocence of Father Brown', 'Chesterton, G. K. (Gilbert Keith)', '2008-07-09', 944, 'https://www.gutenberg.org/ebooks/204', 'en', 3319), +(18222, 'The History of England in Three Volumes, Vol. I., Part B.\r\nFrom Henry III. to Richard III.', 'Hume, David', '2006-09-08', 46, 'https://www.gutenberg.org/ebooks/19212', 'en', 1953), +(18223, 'Vaimo, jonka minulle annoit', 'Caine, Hall, Sir', '2015-08-01', 5, 'https://www.gutenberg.org/ebooks/49562', 'fi', 434), +(18224, 'The Epistle of Paul the Apostle to the Galatians', NULL, '2007-10-01', 14, 'https://www.gutenberg.org/ebooks/22853', 'en', 7339), +(18225, 'Prue and I', 'Curtis, George William', '2005-08-01', 8, 'https://www.gutenberg.org/ebooks/8645', 'en', 8267), +(18226, 'Rollo in Society: A Guide for Youth', 'Chappell, George S. (George Shepard)', '2010-03-03', 9, 'https://www.gutenberg.org/ebooks/31478', 'en', 8268), +(18227, 'The Life and Adventures of Bruce, the African Traveller', 'Head, Francis Bond, Sir', '2012-05-04', 21, 'https://www.gutenberg.org/ebooks/39615', 'en', 1936), +(18228, 'Punch, or the London Charivari, Vol. 104, April 22, 1893', 'Various', '2008-01-22', 10, 'https://www.gutenberg.org/ebooks/24398', 'en', 134), +(18229, 'What\'s Mine\'s Mine — Volume 1', 'MacDonald, George', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5966', 'en', 942), +(18230, 'Harper\'s Young People, January 10, 1882\nAn Illustrated Weekly', 'Various', '2016-06-13', 1, 'https://www.gutenberg.org/ebooks/52318', 'en', 479), +(18231, 'U.S. Copyright Renewals, 1971 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11843', 'en', 4170), +(18232, 'Sir Walter Scott and the Border Minstrelsy', 'Lang, Andrew', '2003-05-01', 18, 'https://www.gutenberg.org/ebooks/4088', 'en', 8269), +(18233, 'Dogs and All about Them', 'Leighton, Robert', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/10991', 'en', 1636), +(18234, 'Diccionario Ingles-Español-Tagalog\r\nCon partes de la oracion y pronunciacion figurada', 'Calderón, Sofronio G.', '2007-03-04', 290, 'https://www.gutenberg.org/ebooks/20738', 'tl', 8270), +(18235, 'The Briary Bush: A Novel', 'Dell, Floyd', '2019-01-06', 15, 'https://www.gutenberg.org/ebooks/58622', 'en', 23), +(18236, 'No Moving Parts', 'Yaco, Murray F.', '2008-04-16', 55, 'https://www.gutenberg.org/ebooks/25078', 'en', 179), +(18237, 'Annouchka: A Tale', 'Turgenev, Ivan Sergeevich', '2012-04-11', 33, 'https://www.gutenberg.org/ebooks/39427', 'en', 1377), +(18238, 'Geyer und das Obererzgebirge in Sage und Geschichte', 'Lungwitz, Hermann', '2016-08-28', 9, 'https://www.gutenberg.org/ebooks/52916', 'de', 8271), +(18239, 'Third Warning\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2014-02-11', 12, 'https://www.gutenberg.org/ebooks/44873', 'en', 557), +(18240, 'Sacred Mysteries Among the Mayas and the Quiches, 11,500 Years Ago\r\nTheir relation to the sacred mysteries of Egypt, Greece, Chaldea and India. Free Masonry in times anterior to the Temple of Solomon.', 'Le Plongeon, Augustus', '2018-07-07', 57, 'https://www.gutenberg.org/ebooks/57458', 'en', 8272), +(18241, 'Voltareis ó Christo?', 'Castelo Branco, Camilo', '2008-06-19', 18, 'https://www.gutenberg.org/ebooks/25844', 'pt', 3856), +(18242, 'A Little Girl in Old Chicago', 'Douglas, Amanda M.', '2018-12-04', 11, 'https://www.gutenberg.org/ebooks/58410', 'en', 1080), +(18243, 'Cacao Culture in the Philippines', 'Lyon, William Scrugham', '2010-10-16', 74, 'https://www.gutenberg.org/ebooks/33921', 'en', 8273), +(18244, 'The Tapu Of Banderah\n1901', 'Becke, Louis', '2008-04-05', 14, 'https://www.gutenberg.org/ebooks/24996', 'en', 108), +(18245, 'Richard Carvel — Volume 04', 'Churchill, Winston', '2004-10-18', 9, 'https://www.gutenberg.org/ebooks/5368', 'en', 5772), +(18246, 'Monsieur Cherami', 'Kock, Paul de', '2010-11-16', 11, 'https://www.gutenberg.org/ebooks/34338', 'en', 58), +(18247, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 21: South of France', 'Casanova, Giacomo', '2004-12-12', 10, 'https://www.gutenberg.org/ebooks/2971', 'en', 4391), +(18248, 'The Defenders', 'Dick, Philip K.', '2009-05-12', 242, 'https://www.gutenberg.org/ebooks/28767', 'en', 26), +(18249, 'Tehtaan tytöt', 'Maria', '2005-06-14', 2, 'https://www.gutenberg.org/ebooks/16068', 'fi', 61), +(18250, 'Au bord de la Bièvre: impressions et souvenirs', 'Delvau, Alfred', '2014-08-29', 13, 'https://www.gutenberg.org/ebooks/46718', 'fr', 8274), +(18251, 'Dialogo sopra la generatione de venti, baleni, tuoni, fulgori, fiumi, laghi, valli et montagne', 'Agrippa, Camillo', '2006-03-14', 42, 'https://www.gutenberg.org/ebooks/17986', 'it', 8275), +(18252, 'Sonny', 'Raphael, Rick', '2009-12-29', 17, 'https://www.gutenberg.org/ebooks/30798', 'en', 784), +(18253, 'I mattoidi al primo concorso pel monumento in Roma a Vittorio Emanuele', 'Dossi, Carlo', '2015-04-11', 16, 'https://www.gutenberg.org/ebooks/48682', 'it', 8276), +(18254, 'The Golden-Breasted Kootoo, and Other Stories', 'Richards, Laura Elizabeth Howe', '2015-08-21', 24, 'https://www.gutenberg.org/ebooks/49750', 'en', 1007), +(18255, 'Life on the Mississippi, Part 7.', 'Twain, Mark', '2004-07-10', 11, 'https://www.gutenberg.org/ebooks/8477', 'en', 261), +(18256, 'Mäkelän Liisu', 'Hahnsson, Theodolinda', '2005-10-10', 9, 'https://www.gutenberg.org/ebooks/16854', 'fi', 61), +(18257, 'The Danvers Jewels, and Sir Charles Danvers', 'Cholmondeley, Mary', '2006-08-10', 15, 'https://www.gutenberg.org/ebooks/19020', 'en', 128), +(18258, 'Eighty-fourth Regiment, Pennsylvania Volunteers (Infantry.)', 'Merchant, Thomas Edward', '2014-07-20', 6, 'https://www.gutenberg.org/ebooks/46344', 'en', 8277), +(18259, 'A Terrible Secret: A Novel', 'Fleming, May Agnes', '2004-12-01', 37, 'https://www.gutenberg.org/ebooks/7063', 'en', 61), +(18260, 'Hiawatha and the Iroquois Confederation\nA Study in Anthropology. A Paper Read at the Cincinnati Meeting of the American Association for the Advancement of Science, in August, 1881, under the Title of \"A Lawgiver of the Stone Age.\"', 'Hale, Horatio', '2007-09-14', 14, 'https://www.gutenberg.org/ebooks/22601', 'en', 8278), +(18261, 'The Game', 'London, Jack', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/8817', 'en', 4171), +(18262, 'Autobiography of Friedrich Froebel translated and annotated by Emilie Michaelis ... and H. Keatley Moore.', 'Fröbel, Friedrich', '2005-08-04', 13, 'https://www.gutenberg.org/ebooks/16434', 'en', 8279), +(18263, 'Die moderne Wohnung und ihre Ausstattung', 'Lux, Joseph Aug. (Joseph August)', '2015-10-15', 7, 'https://www.gutenberg.org/ebooks/50221', 'de', 4442), +(18264, 'Quisisana; or, Rest at Last', 'Spielhagen, Friedrich', '2010-12-27', 2, 'https://www.gutenberg.org/ebooks/34764', 'en', 803), +(18265, 'The Popular Science Monthly, October, 1900\nVol. 57, May, 1900 to October, 1900', 'Various', '2014-11-06', 11, 'https://www.gutenberg.org/ebooks/47296', 'en', 210), +(18266, 'The Review, Vol. 1, No. 10, October, 1911', 'Various', '2017-10-15', 2, 'https://www.gutenberg.org/ebooks/55753', 'en', 4611), +(18267, 'O. Henry Memorial Award Prize Stories of 1919', NULL, '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/12094', 'en', 8280), +(18268, 'Briefe Schillers und Goethes an A. W. Schlegel\r\nAus den Jahren 1795 bis 1801, und 1797 bis 1824, nebst einem Briefe Schlegels an Schiller', 'Goethe, Johann Wolfgang von', '2010-02-08', 40, 'https://www.gutenberg.org/ebooks/31216', 'de', 8281), +(18269, 'The History of Henry Esmond, Esq., a Colonel in the Service of Her Majesty Queen Anne', 'Thackeray, William Makepeace', '2006-05-18', 90, 'https://www.gutenberg.org/ebooks/2511', 'en', 98), +(18270, 'Our Little Cuban Cousin', 'Wade, Mary Hazelton Blanchard', '2013-09-04', 23, 'https://www.gutenberg.org/ebooks/43636', 'en', 4581), +(18271, 'The Beauty and the Bolshevist', 'Miller, Alice Duer', '2004-08-09', 16, 'https://www.gutenberg.org/ebooks/13146', 'en', 48), +(18272, 'Kuolema: Novelleja', 'Lehtimäki, Konrad', '2017-05-08', 5, 'https://www.gutenberg.org/ebooks/54681', 'fi', 665), +(18273, 'Flora Lyndsay; or, Passages in an Eventful Life, Vol. I.', 'Moodie, Susanna', '2008-12-01', 12, 'https://www.gutenberg.org/ebooks/27373', 'en', 61), +(18274, 'The Trossachs', 'Mitton, G. E. (Geraldine Edith)', '2018-04-19', 12, 'https://www.gutenberg.org/ebooks/57004', 'en', 8282), +(18275, 'The Holly-Tree', 'Dickens, Charles', '1998-07-01', 35, 'https://www.gutenberg.org/ebooks/1394', 'en', 401), +(18276, 'The Midlander', 'Tarkington, Booth', '2019-02-11', 30, 'https://www.gutenberg.org/ebooks/58870', 'en', 2358), +(18277, 'Galgenlieder nebst dem \'Gingganz\'', 'Morgenstern, Christian', '2010-08-26', 37, 'https://www.gutenberg.org/ebooks/33541', 'de', 4162), +(18278, 'Witch-Burning', 'Counselman, Mary Elizabeth', '2010-05-23', 14, 'https://www.gutenberg.org/ebooks/32493', 'en', 8), +(18279, 'La vida en los campos: novelas cortas', 'Verga, Giovanni', '2012-10-24', 23, 'https://www.gutenberg.org/ebooks/41161', 'es', 8283), +(18280, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 374, June 6, 1829', 'Various', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11611', 'en', 133), +(18281, 'In the Mayor\'s Parlour', 'Fletcher, J. S. (Joseph Smith)', '2008-05-11', 39, 'https://www.gutenberg.org/ebooks/25424', 'en', 128), +(18282, 'The Sea Rovers', 'Wilson, Rufus Rockwell', '2013-12-12', 9, 'https://www.gutenberg.org/ebooks/44413', 'en', 750), +(18283, 'The Wild Irishman', 'Crosland, T. W. H. (Thomas William Hodgson)', '2018-09-03', 9, 'https://www.gutenberg.org/ebooks/57838', 'en', 8284), +(18284, 'Life in the Grey Nunnery at Montreal\r\nAn Authentic Narrative of the Horrors, Mysteries, and Cruelties of Convent Life', 'Richardson, Sarah J.', '2004-05-01', 31, 'https://www.gutenberg.org/ebooks/5734', 'en', 8285), +(18285, 'Strife and Peace', 'Bremer, Fredrika', '2006-12-21', 9, 'https://www.gutenberg.org/ebooks/20156', 'en', 8286), +(18286, 'The Worst Journey in the World\r\nAntarctic 1910-1913', 'Cherry-Garrard, Apsley', '2004-12-15', 180, 'https://www.gutenberg.org/ebooks/14363', 'en', 619), +(18287, 'The Sheep and Lamb', 'Miller, Thomas', '2012-02-27', 11, 'https://www.gutenberg.org/ebooks/38995', 'en', 1123), +(18288, 'In the Tideway', 'Steel, Flora Annie Webster', '2012-05-29', 12, 'https://www.gutenberg.org/ebooks/39847', 'en', 109), +(18289, 'A Manual of American Literature', NULL, '2016-07-14', 35, 'https://www.gutenberg.org/ebooks/52576', 'en', 3043), +(18290, 'Jokes For All Occasions\nSelected and Edited by One of America\'s Foremost Public Speakers', 'Anonymous', '2007-04-15', 130, 'https://www.gutenberg.org/ebooks/21084', 'en', 190), +(18291, 'Overshadowed: A Novel', 'Griggs, Sutton E. (Sutton Elbert)', '2011-05-05', 16, 'https://www.gutenberg.org/ebooks/36033', 'en', 1958), +(18292, 'Retrospect of Western Travel, Volume 2 (of 2)', 'Martineau, Harriet', '2012-07-19', 16, 'https://www.gutenberg.org/ebooks/40281', 'en', 8287), +(18293, 'A Yankee from the West: A Novel', 'Read, Opie Percival', '2010-09-20', 12, 'https://www.gutenberg.org/ebooks/33773', 'en', 8288), +(18294, 'Thieves\' Wit: An Everyday Detective Story', 'Footner, Hulbert', '2018-05-30', 18, 'https://www.gutenberg.org/ebooks/57236', 'en', 332), +(18295, 'Histoire de la Révolution française, Tome 06', 'Thiers, Adolphe', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11423', 'fr', 1536), +(18296, 'Les Cent Jours (1/2)\r\nMémoires pour servir à l\'histoire de la vie privée, du\r\nretour et du règne de Napoléon en 1815.', 'Fleury de Chaboulon, Pierre Alexandre Édouard, baron', '2008-05-26', 18, 'https://www.gutenberg.org/ebooks/25616', 'fr', 6534), +(18297, 'Beaumont and Fletcher\'s Works, Vol. 03 of 10: The Loyal Subject', 'Fletcher, John', '2012-03-24', 15, 'https://www.gutenberg.org/ebooks/39249', 'en', 5737), +(18298, 'Gedichte', 'Kraft, Paul', '2012-11-12', 9, 'https://www.gutenberg.org/ebooks/41353', 'de', 8), +(18299, 'Notes and Queries, Number 189, June 11, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-15', 19, 'https://www.gutenberg.org/ebooks/20364', 'en', 105), +(18300, 'Baden-Powell of Mafeking', 'Fletcher, J. S. (Joseph Smith)', '2016-12-08', 36, 'https://www.gutenberg.org/ebooks/53696', 'en', 8289), +(18301, 'Le vieux muet, ou, Un héros de Châteauguay', 'Caouette, J. B. (Jean Baptiste)', '2004-11-25', 11, 'https://www.gutenberg.org/ebooks/14151', 'fr', 3858), +(18302, 'Motion Pictures, 1960-1969: Catalog of Copyright Entries', 'Library of Congress. Copyright Office', '2014-01-08', 8, 'https://www.gutenberg.org/ebooks/44621', 'en', 6700), +(18303, 'Serapis — Volume 06', 'Ebers, Georg', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5506', 'en', 1814), +(18304, 'Francis Drake and the California Indians, 1579', 'Heizer, Robert F. (Robert Fleming)', '2011-05-24', 42, 'https://www.gutenberg.org/ebooks/36201', 'en', 4181), +(18305, 'Jerusalem', 'Haan, Jacob Israël de', '2005-02-16', 17, 'https://www.gutenberg.org/ebooks/15083', 'nl', 7362), +(18306, 'Il trampolino per le stelle: Tre dialoghi e due racconti', 'D\'Ambra, Lucio', '2016-08-07', 20, 'https://www.gutenberg.org/ebooks/52744', 'it', 1544), +(18307, 'Piccolo romanzo', 'Serao, Matilde', '2015-09-07', 6, 'https://www.gutenberg.org/ebooks/49902', 'it', 1544), +(18308, 'Breaking Away; or, The Fortunes of a Student', 'Optic, Oliver', '2007-08-29', 39, 'https://www.gutenberg.org/ebooks/22433', 'en', 5086), +(18309, 'Elizabeth Fry', 'Pitman, Emma Raymond', '2005-08-27', 19, 'https://www.gutenberg.org/ebooks/16606', 'en', 8290), +(18310, 'Opera nova amorosa, vol. 3\nComedia nova', 'Notturno, Napolitano', '2010-03-29', 6, 'https://www.gutenberg.org/ebooks/31818', 'it', 8), +(18311, 'The Knights of the Round Table: Stories of King Arthur and the Holy Grail', 'Frost, William Henry', '2014-07-02', 27, 'https://www.gutenberg.org/ebooks/46176', 'en', 8291), +(18312, 'The Black Eagle Mystery', 'Bonner, Geraldine', '2011-03-05', 67, 'https://www.gutenberg.org/ebooks/35484', 'en', 61), +(18313, 'Sweet Cicely — or Josiah Allen as a Politician', 'Holley, Marietta', '2005-01-01', 28, 'https://www.gutenberg.org/ebooks/7251', 'en', 8292), +(18314, 'Phylogeny of the Waxwings and Allied Birds', 'Arvey, M. Dale (Martin Dale)', '2010-12-03', 15, 'https://www.gutenberg.org/ebooks/34556', 'en', 8293), +(18315, 'Die Jungfrau von Orleans', 'Schiller, Friedrich', '2004-08-01', 101, 'https://www.gutenberg.org/ebooks/6383', 'de', 8294), +(18316, 'Harper\'s Young People, November 15, 1881\nAn Illustrated Weekly', 'Various', '2015-09-19', 5, 'https://www.gutenberg.org/ebooks/50013', 'en', 479), +(18317, 'How to make rugs', 'Wheeler, Candace', '2009-02-18', 36, 'https://www.gutenberg.org/ebooks/28109', 'en', 8295), +(18318, 'The Desert and the Sown', 'Foote, Mary Hallock', '2005-06-01', 25, 'https://www.gutenberg.org/ebooks/8219', 'en', 2287), +(18319, 'Mine Pumping in Agricola\'s Time and Later', 'Multhauf, Robert P.', '2010-01-20', 18, 'https://www.gutenberg.org/ebooks/31024', 'en', 8296), +(18320, 'The Memory of Mars', 'Jones, Raymond F.', '2008-07-19', 41, 'https://www.gutenberg.org/ebooks/26093', 'en', 1061), +(18321, 'Fort Ticonderoga: A Short History', 'Pell, Stephen H. P.', '2017-09-16', 6, 'https://www.gutenberg.org/ebooks/55561', 'en', 8297), +(18322, 'The Fall of Troy', 'Quintus, Smyrnaeus, active 4th century', '1996-09-01', 176, 'https://www.gutenberg.org/ebooks/658', 'en', 7047), +(18323, 'Consuelo, Tome 3 (1861)', 'Sand, George', '2004-09-05', 38, 'https://www.gutenberg.org/ebooks/13374', 'fr', 2295), +(18324, 'Adenoids: What They Are, How to Recognize Them, What to Do for Them', 'United States. Public Health Service', '2008-11-03', 24, 'https://www.gutenberg.org/ebooks/27141', 'en', 8298), +(18325, 'Grasses: A Handbook for use in the Field and Laboratory', 'Ward, H. Marshall (Harry Marshall)', '2015-01-06', 14, 'https://www.gutenberg.org/ebooks/47898', 'en', 8299), +(18326, 'A First Family of Tasajara', 'Harte, Bret', '2006-05-25', 10, 'https://www.gutenberg.org/ebooks/2723', 'en', 50), +(18327, 'Captain Dieppe', 'Hope, Anthony', '2009-05-23', 11, 'https://www.gutenberg.org/ebooks/28935', 'en', 8300), +(18328, 'The Days of My Life: An Autobiography', 'Oliphant, Mrs. (Margaret)', '2013-08-05', 27, 'https://www.gutenberg.org/ebooks/43404', 'en', 8301), +(18329, 'The Hemlock Avenue Mystery', 'Long, Lily A. (Lily Augusta)', '2018-03-18', 23, 'https://www.gutenberg.org/ebooks/56780', 'en', 128), +(18330, 'Libro segundo de lectura', 'Cyr, Ellen M.', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/11047', 'es', 188), +(18331, 'The Varmint', 'Johnson, Owen', '2008-05-01', 24, 'https://www.gutenberg.org/ebooks/25272', 'en', 1779), +(18332, 'Burton of the Flying Corps', 'Strang, Herbert', '2012-12-29', 79, 'https://www.gutenberg.org/ebooks/41737', 'en', 325), +(18333, 'Abriss einer Theorie der Abelschen Functionen von drei Variabeln', 'Schottky, Friedrich', '2010-08-01', 7, 'https://www.gutenberg.org/ebooks/33317', 'de', 1156), +(18334, 'Lonesome Road Blues', 'Blue Ridge Duo', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10195', 'en', 3717), +(18335, 'The Girl\'s Own Paper, Vol. XX. No. 1003, March 18, 1899', 'Various', '2018-08-07', 20, 'https://www.gutenberg.org/ebooks/57652', 'en', 563), +(18336, 'R. Caldecott\'s Picture Book (No. 1)', NULL, '2011-07-08', 14, 'https://www.gutenberg.org/ebooks/36665', 'en', 343), +(18337, 'A Boy Crusoe; or, The Golden Treasure of the Virgin Islands', 'Eric, Allan', '2014-04-14', 46, 'https://www.gutenberg.org/ebooks/45397', 'en', 8302), +(18338, 'Vocabulum; or The Rogue\'s Lexicon\r\nCompiled from the Most Authentic Sources', 'Matsell, George W. (George Washington)', '2016-06-13', 56, 'https://www.gutenberg.org/ebooks/52320', 'en', 8303), +(18339, 'Études sur la Littérature française au XIXe siècle - Tome 1\r\nMadame de Staël, Chateaubriand', 'Vinet, Alexandre Rodolphe', '2007-02-27', 5, 'https://www.gutenberg.org/ebooks/20700', 'fr', 642), +(18340, 'A Christmas Sermon', 'Stevenson, Robert Louis', '2004-12-30', 37, 'https://www.gutenberg.org/ebooks/14535', 'en', 740), +(18341, 'Historic Oddities and Strange Events', 'Baring-Gould, S. (Sabine)', '2013-11-21', 71, 'https://www.gutenberg.org/ebooks/44245', 'en', 4632), +(18342, 'Agatha Webb', 'Green, Anna Katharine', '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/5162', 'en', 539), +(18343, 'Όταν σπάση τα δεσμά του: Δράμα σε μέρη τρία', 'Nirvanas, Paulos', '2010-10-25', 16, 'https://www.gutenberg.org/ebooks/34132', 'el', 402), +(18344, 'Notre Coeur; or, A Woman\'s Pastime: A Novel', 'Maupassant, Guy de', '2015-11-18', 24, 'https://www.gutenberg.org/ebooks/50477', 'en', 5101), +(18345, 'The Glory of Ippling', 'Urban, Helen M.', '2007-10-24', 28, 'https://www.gutenberg.org/ebooks/23185', 'en', 26), +(18346, 'Kid Wolf of Texas\r\nA Western Story', 'Powers, Paul S. (Paul Sylvester)', '2008-08-26', 19, 'https://www.gutenberg.org/ebooks/22057', 'en', 315), +(18347, 'Nathan Viisas: Viisinäytöksinen näytelmäruno', 'Lessing, Gotthold Ephraim', '2005-07-11', 3, 'https://www.gutenberg.org/ebooks/16262', 'fi', 402), +(18348, 'How to Succeed as an Inventor\r\nShowing the Wonderful Possibilities in the Field of Invention; the Dangers to Be Avoided; the Inventions Needed; How to Perfect and Develop New Ideas to the Money Making Stage', 'Smith, Goodwin Brooke', '2014-08-05', 103, 'https://www.gutenberg.org/ebooks/46512', 'en', 1739), +(18349, 'When I Was a Boy in Japan', 'Shioya, Sakae', '2017-11-11', 32, 'https://www.gutenberg.org/ebooks/55939', 'en', 1809), +(18350, 'The Disowned — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7635', 'en', 137), +(18351, 'Punch, or the London Charivari, Volume 101, September 12, 1891', 'Various', '2004-10-11', 3, 'https://www.gutenberg.org/ebooks/13710', 'en', 134), +(18352, 'Bones in London', 'Wallace, Edgar', '2008-12-13', 101, 'https://www.gutenberg.org/ebooks/27525', 'en', 1079), +(18353, 'The Adventure of the Dying Detective', 'Doyle, Arthur Conan', '2000-10-01', 229, 'https://www.gutenberg.org/ebooks/2347', 'en', 430), +(18354, 'Achter de schermen', 'Schürmann, Joseph J.', '2009-12-03', 11, 'https://www.gutenberg.org/ebooks/30592', 'nl', 8304), +(18355, 'Reise durch den Stillen Ozean', 'Buchner, Max', '2015-03-14', 17, 'https://www.gutenberg.org/ebooks/48488', 'de', 8305), +(18356, 'Encyclopaedia Britannica, 11th Edition, \"McKinley, William\" to \"Magnetism, Terrestrial\"\r\nVolume 17, Slice 3', 'Various', '2013-06-29', 35, 'https://www.gutenberg.org/ebooks/43060', 'en', 1081), +(18357, 'The Poems of Emma Lazarus, Volume 1', 'Lazarus, Emma', '2002-06-01', 42, 'https://www.gutenberg.org/ebooks/3295', 'en', 19), +(18358, 'Souvenirs d\'enfance et de jeunesse', 'Renan, Ernest', '2010-02-28', 17, 'https://www.gutenberg.org/ebooks/31440', 'fr', 152), +(18359, 'Niagara, and Other Poems', 'Copeland, Benjamin', '2017-07-12', 2, 'https://www.gutenberg.org/ebooks/55105', 'en', 178), +(18360, 'Stories of a Western Town', 'Thanet, Octave', '2001-12-01', 33, 'https://www.gutenberg.org/ebooks/2949', 'en', 315), +(18361, 'Istoria civile del Regno di Napoli, v. 5', 'Giannone, Pietro', '2015-12-07', 6, 'https://www.gutenberg.org/ebooks/50645', 'it', 8306), +(18362, 'Within the Temple of Isis', 'Wagner, Belle M.', '2005-11-29', 43, 'https://www.gutenberg.org/ebooks/17182', 'en', 3324), +(18363, 'Robin Hood', 'McSpadden, J. Walker (Joseph Walker)', '2006-01-21', 201, 'https://www.gutenberg.org/ebooks/832', 'en', 8307), +(18364, 'Leonardo da Vinci: A Psychosexual Study of an Infantile Reminiscence', 'Freud, Sigmund', '2010-11-12', 115, 'https://www.gutenberg.org/ebooks/34300', 'en', 3898), +(18365, 'The Border Spy; or, The Beautiful Captive of the Rebel Camp\r\nA Story of the War', 'Hazelton, Harry', '2014-08-29', 16, 'https://www.gutenberg.org/ebooks/46720', 'en', 336), +(18366, 'Horses Nine\nStories of Harness and Saddle', 'Ford, Sewell', '2006-11-16', 27, 'https://www.gutenberg.org/ebooks/19824', 'en', 8308), +(18367, '棋經', 'Zhang, Ni', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7407', 'zh', 8309), +(18368, 'Frank Merriwell\'s Cruise', 'Standish, Burt L.', '2007-08-08', 26, 'https://www.gutenberg.org/ebooks/22265', 'en', 4471), +(18369, 'The Gold Hunters\' Adventures; Or, Life in Australia', 'Thomes, William Henry', '2005-06-13', 33, 'https://www.gutenberg.org/ebooks/16050', 'en', 792), +(18370, 'To the Highest Bidder', 'Kingsley, Florence Morse', '2016-04-19', 17, 'https://www.gutenberg.org/ebooks/51797', 'en', 109), +(18371, 'You Never Can Tell', 'Shaw, Bernard', '2000-05-01', 86, 'https://www.gutenberg.org/ebooks/2175', 'en', 8310), +(18372, 'Tessa, Our Little Italian Cousin', 'Wade, Mary Hazelton Blanchard', '2013-07-19', 9, 'https://www.gutenberg.org/ebooks/43252', 'en', 8311), +(18373, 'Superseded', 'Sinclair, May', '2004-09-24', 17, 'https://www.gutenberg.org/ebooks/13522', 'en', 3305), +(18374, 'Buchanan\'s Journal of Man, October 1887\nVolume 1, Number 9', NULL, '2009-01-06', 13, 'https://www.gutenberg.org/ebooks/27717', 'en', 1974), +(18375, 'Lady Kilpatrick', 'Buchanan, Robert Williams', '2017-08-11', 7, 'https://www.gutenberg.org/ebooks/55337', 'en', 61), +(18376, 'Lady Inger of Ostrat: Henrik Ibsen\'s Prose Dramas Vol III', 'Ibsen, Henrik', '2006-08-10', 59, 'https://www.gutenberg.org/ebooks/19018', 'en', 5096), +(18377, 'Erämiehet: Historiallinen kertomus Pirkkalanpohjasta', 'Voionmaa, Väinö', '2015-08-24', 25, 'https://www.gutenberg.org/ebooks/49768', 'fi', 175), +(18378, 'Primitive Man', 'Figuier, Louis', '2013-03-20', 13, 'https://www.gutenberg.org/ebooks/42380', 'en', 2011), +(18379, 'The Triads of Ireland', NULL, '2010-03-17', 17, 'https://www.gutenberg.org/ebooks/31672', 'en', 8312), +(18380, 'Picture-Work', 'Hervey, Walter Lowrie', '2012-11-28', 9, 'https://www.gutenberg.org/ebooks/41505', 'en', 8313), +(18381, 'The Anti-Slavery Examiner, Omnibus', 'American Anti-Slavery Society', '2004-02-01', 35, 'https://www.gutenberg.org/ebooks/11275', 'en', 8314), +(18382, 'Taivaallisia tarinoita', 'Lampén, Ernst', '2014-06-16', 15, 'https://www.gutenberg.org/ebooks/45999', 'fi', 175), +(18383, 'Bilingualism: Address delivered before the Quebec Canadian Club\r\nAt Quebec, Tuesday, March 28th, 1916', 'Belcourt, N. A. (Napoléon-Antoine)', '2008-04-11', 17, 'https://www.gutenberg.org/ebooks/25040', 'en', 8315), +(18384, 'The First One', 'Kastle, Herbert D.', '2008-01-07', 41, 'https://www.gutenberg.org/ebooks/24192', 'en', 26), +(18385, 'The genetic and the operative evidence relating to secondary sexual characters', 'Morgan, Thomas Hunt', '2018-07-07', 10, 'https://www.gutenberg.org/ebooks/57460', 'en', 5374), +(18386, 'Wild Birds in City Parks\r\nBeing hints on identifying 145 birds, prepared primarily for the spring migration in Lincoln Park, Chicago', 'Walter, Herbert Eugene', '2010-07-09', 14, 'https://www.gutenberg.org/ebooks/33125', 'en', 8316), +(18387, 'Chats on Autographs', 'Broadley, Alexander Meyrick', '2016-05-20', 12, 'https://www.gutenberg.org/ebooks/52112', 'en', 8317), +(18388, 'A Treatise on Meteorological Instruments\r\nExplanatory of Their Scientific Principles, Method of Construction, and Practical Utility', 'Negretti, Enrico Angelo Lodovico', '2011-06-18', 13, 'https://www.gutenberg.org/ebooks/36457', 'en', 8318), +(18389, 'Don Rodriguez; Chronicles of Shadow Valley', 'Dunsany, Lord', '2003-07-01', 94, 'https://www.gutenberg.org/ebooks/4282', 'en', 1813), +(18390, 'Adventures in Alaska', 'Young, Samuel Hall', '2013-11-01', 207, 'https://www.gutenberg.org/ebooks/44077', 'en', 8319), +(18391, 'Διηγήματα, Τόμος Γ', 'Moraitides, Alexandros', '2011-09-26', 3, 'https://www.gutenberg.org/ebooks/37585', 'el', 1348), +(18392, 'Farmers of Forty Centuries; Or, Permanent Agriculture in China, Korea, and Japan', 'King, F. H. (Franklin Hiram)', '2004-03-01', 83, 'https://www.gutenberg.org/ebooks/5350', 'en', 8320), +(18393, 'Love Among the Chickens\nA Story of the Haps and Mishaps on an English Chicken Farm', 'Wodehouse, P. G. (Pelham Grenville)', '2007-02-06', 127, 'https://www.gutenberg.org/ebooks/20532', 'en', 8321), +(18394, 'Punch, or the London Charivari, Volume 102, June 11, 1892', 'Various', '2005-01-16', 6, 'https://www.gutenberg.org/ebooks/14707', 'en', 134), +(18395, 'Suzy', 'Parker, Watson', '2010-10-17', 35, 'https://www.gutenberg.org/ebooks/33919', 'en', 109), +(18396, 'Hallatunturin lapset', 'Fitinghoff, Laura', '2018-12-08', 9, 'https://www.gutenberg.org/ebooks/58428', 'fi', 31), +(18397, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1605-07', 'Motley, John Lothrop', '2004-01-01', 30, 'https://www.gutenberg.org/ebooks/4878', 'en', 3372), +(18398, 'Baconian Essays', 'Smithson, E. W. (Edward Walter), active 19th century', '2018-03-18', 40, 'https://www.gutenberg.org/ebooks/56774', 'en', 8322), +(18399, '歡喜冤家', 'Xihuyuyinzhuren', '2008-05-02', 113, 'https://www.gutenberg.org/ebooks/25286', 'zh', 8323), +(18400, 'Among the Wild Tribes of the Afghan Frontier\r\nA Record of Sixteen Years\' Close Intercourse with the Natives of the Indian Marches', 'Pennell, T. L. (Theodore Leighton)', '2010-05-03', 147, 'https://www.gutenberg.org/ebooks/32231', 'en', 8324), +(18401, 'Prince Charlie', 'Delannoy, Burford', '2012-08-30', 19, 'https://www.gutenberg.org/ebooks/40611', 'en', 61), +(18402, 'The Life of Timon of Athens', 'Shakespeare, William', '1998-11-01', 43, 'https://www.gutenberg.org/ebooks/1536', 'en', 5046), +(18403, 'Historic Boyhoods', 'Holland, Rupert Sargent', '2008-01-18', 19, 'https://www.gutenberg.org/ebooks/24354', 'en', 3300), +(18404, 'English Poets of the Eighteenth Century', NULL, '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10161', 'en', 3947), +(18405, 'What the Animals Do and Say', 'Follen, Eliza Lee Cabot', '2003-05-01', 9, 'https://www.gutenberg.org/ebooks/4044', 'en', 4576), +(18406, 'Conversations on Natural Philosophy, in which the Elements of that Science are Familiarly Explained', 'Jones, Thomas P.', '2011-07-10', 20, 'https://www.gutenberg.org/ebooks/36691', 'en', 1194), +(18407, 'The Secret of the Totem', 'Lang, Andrew', '2014-04-11', 38, 'https://www.gutenberg.org/ebooks/45363', 'en', 3178), +(18408, 'The Book of Three Hundred Anecdotes\nHistorical, Literary, and Humorous—A New Selection', 'Various', '2005-03-19', 18, 'https://www.gutenberg.org/ebooks/15413', 'en', 311), +(18409, 'Adrift in the Wilds; Or, The Adventures of Two Shipwrecked Boys', 'Ellis, Edward Sylvester', '2007-05-27', 22, 'https://www.gutenberg.org/ebooks/21626', 'en', 1246), +(18410, 'Selections from Modern Poets\r\nMade by J. C. Squire', NULL, '2016-10-04', 35, 'https://www.gutenberg.org/ebooks/53206', 'en', 1594), +(18411, 'Their Mariposa Legend: A Romance of Santa Catalina', 'Herr, Charlotte B. (Charlotte Bronte)', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/5196', 'en', 8325), +(18412, 'The Attitudes of Animals in Motion, Illustrated with the Zoopraxiscope', 'Muybridge, Eadweard', '2011-10-13', 22, 'https://www.gutenberg.org/ebooks/37743', 'en', 1767), +(18413, 'God\'s Answers\r\nA Record of Miss Annie Macpherson\'s Work at the Home of Industry, Spitalfields, London, and in Canada', 'Lowe, Clara M. S.', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6713', 'en', 8326), +(18414, 'Infatuation', 'Osbourne, Lloyd', '2014-11-22', 8, 'https://www.gutenberg.org/ebooks/47434', 'en', 4905), +(18415, 'Rose d\'Amour', 'Assollant, Alfred', '2005-12-18', 25, 'https://www.gutenberg.org/ebooks/17344', 'fr', 61), +(18416, 'Reminiscences of a Soldier of the Orphan Brigade', 'Young, Lot D.', '2015-11-18', 3, 'https://www.gutenberg.org/ebooks/50483', 'en', 8327), +(18417, 'Australian Writers', 'Byrne, Desmond', '2009-04-24', 16, 'https://www.gutenberg.org/ebooks/28599', 'en', 8328), +(18418, 'The Tipster\n1901, From \"Wall Street Stories\"', 'Lefevre, Edwin', '2007-10-24', 16, 'https://www.gutenberg.org/ebooks/23171', 'en', 4419), +(18419, 'The Russian Campaign, April to August, 1915\r\nBeing the Second Volume of \"Field Notes from the Russian Front\"', 'Washburn, Stanley', '2016-03-25', 12, 'https://www.gutenberg.org/ebooks/51551', 'en', 8329), +(18420, 'Sketches From My Life\nBy The Late Admiral Hobart Pasha', 'Hobart-Hampden, Augustus Charles', '2005-07-15', 17, 'https://www.gutenberg.org/ebooks/16296', 'en', 8330), +(18421, 'Among the Night People', 'Pierson, Clara Dillingham', '2011-01-20', 38, 'https://www.gutenberg.org/ebooks/35014', 'en', 625), +(18422, 'Cambridge Papers', 'Ball, W. W. Rouse (Walter William Rouse)', '2017-01-19', 47, 'https://www.gutenberg.org/ebooks/54023', 'en', 2098), +(18423, 'Opúsculos por Alexandre Herculano - Tomo 03', 'Herculano, Alexandre', '2009-11-30', 26, 'https://www.gutenberg.org/ebooks/30566', 'pt', 410), +(18424, 'Thy Sea is Great, Our Boats are Small, and Other Hymns of To-Day', 'Van Dyke, Henry', '2013-07-05', 6, 'https://www.gutenberg.org/ebooks/43094', 'en', 197), +(18425, 'Western Himalaya and Tibet\nA Narrative of a Journey Through the Mountains of Northern India During the Years 1847-8', 'Thomson, Thomas', '2013-02-20', 21, 'https://www.gutenberg.org/ebooks/42146', 'en', 8331), +(18426, 'News from Nowhere; Or, An Epoch of Rest\r\nBeing Some Chapters from a Utopian Romance', 'Morris, William', '2002-06-01', 170, 'https://www.gutenberg.org/ebooks/3261', 'en', 1998), +(18427, 'The Eleven Comedies, Volume 2', 'Aristophanes', '2005-08-01', 79, 'https://www.gutenberg.org/ebooks/8689', 'en', 8332), +(18428, 'Juutalaisten puolustukseksi', 'Zola, Émile', '2008-08-23', 15, 'https://www.gutenberg.org/ebooks/26403', 'fi', 8333), +(18429, 'Katharina von Bora: Geschichtliches Lebensbild', 'Thoma, Albrecht', '2004-06-01', 35, 'https://www.gutenberg.org/ebooks/12636', 'de', 1073), +(18430, 'By Wit of Woman', 'Marchmont, Arthur W.', '2011-04-11', 12, 'https://www.gutenberg.org/ebooks/35828', 'en', 348), +(18431, 'The Ghost: A Modern Fantasy', 'Bennett, Arnold', '2005-11-28', 28, 'https://www.gutenberg.org/ebooks/17176', 'en', 8334), +(18432, 'Lines in Pleasant Places: Being the Aftermath of an Old Angler', 'Senior, William', '2007-11-05', 11, 'https://www.gutenberg.org/ebooks/23343', 'en', 1945), +(18433, 'The King of the Dark Chamber', 'Tagore, Rabindranath', '2004-09-01', 44, 'https://www.gutenberg.org/ebooks/6521', 'en', 8335), +(18434, 'Flood Tide', 'Bassett, Sara Ware', '2006-07-23', 20, 'https://www.gutenberg.org/ebooks/18902', 'en', 48), +(18435, 'Punch, or the London Charivari, Vol. 109, October 19 1895', 'Various', '2014-12-08', 9, 'https://www.gutenberg.org/ebooks/47606', 'en', 134), +(18436, 'The Atlantic Monthly, Volume 11, No. 68, June, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2011-02-09', 8, 'https://www.gutenberg.org/ebooks/35226', 'en', 1227), +(18437, 'Punch or the London Charivari, Vol. 93, September 3, 1887', 'Various', '2009-08-12', 10, 'https://www.gutenberg.org/ebooks/29679', 'en', 134), +(18438, 'Odd', 'Le Feuvre, Amy', '2007-08-10', 17, 'https://www.gutenberg.org/ebooks/22291', 'en', 31), +(18439, 'Noorsche Volksvertellingen', 'Asbjørnsen, Peter Christen', '2016-04-15', 21, 'https://www.gutenberg.org/ebooks/51763', 'nl', 8336), +(18440, 'The Stones of Venice, Volume 1 (of 3)', 'Ruskin, John', '2009-12-27', 257, 'https://www.gutenberg.org/ebooks/30754', 'en', 1036), +(18441, 'The Marble Faun; Or, The Romance of Monte Beni - Volume 1', 'Hawthorne, Nathaniel', '2006-02-26', 82, 'https://www.gutenberg.org/ebooks/2181', 'en', 297), +(18442, 'Mountain Pictures, and other poems\r\nPart 2 From Volume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 10, 'https://www.gutenberg.org/ebooks/9569', 'en', 350), +(18443, 'American War Ballads and Lyrics, Volume 2 (of 2)\r\nA Collection of the Songs and Ballads of the Colonial Wars, the Revolutions, the War of 1812-15, the War with Mexico and the Civil War', NULL, '2017-02-19', 8, 'https://www.gutenberg.org/ebooks/54211', 'en', 8337), +(18444, 'Jingle in the Jungle', 'Giunta, Aldo', '2019-07-31', 984, 'https://www.gutenberg.org/ebooks/60024', 'en', 4171), +(18445, 'A Virginia Scout', 'Pendexter, Hugh', '2008-09-16', 24, 'https://www.gutenberg.org/ebooks/26631', 'en', 7095), +(18446, 'Seeing Europe with Famous Authors, Volume 5\r\nGermany, Austria-Hungary, and Switzerland, Part 1', NULL, '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/12404', 'en', 1307), +(18447, 'To Kiel in the \'Hercules\'', 'Freeman, Lewis R. (Lewis Ransome)', '2013-03-19', 20, 'https://www.gutenberg.org/ebooks/42374', 'en', 8338), +(18448, 'Green Bays. Verses and Parodies', 'Quiller-Couch, Arthur', '2005-10-18', 18, 'https://www.gutenberg.org/ebooks/16898', 'en', 3449), +(18449, 'Collector\'s Item', 'Smith, Evelyn E.', '2010-03-18', 41, 'https://www.gutenberg.org/ebooks/31686', 'en', 67), +(18450, 'Signs of Change', 'Morris, William', '2002-02-01', 34, 'https://www.gutenberg.org/ebooks/3053', 'en', 787), +(18451, 'A espada de Alexandre\nCorte profundo da questão do Homem-Mulher e Mulher-Homem', 'Castelo Branco, Camilo', '2010-04-15', 24, 'https://www.gutenberg.org/ebooks/32003', 'pt', 2716), +(18452, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 334, October 4, 1828', 'Various', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/11281', 'en', 133), +(18453, 'Nietzsche, sein Leben und seine Lehre', 'Heckel, Karl', '2018-02-11', 18, 'https://www.gutenberg.org/ebooks/56546', 'de', 5723), +(18454, 'The Destroyers', 'Garrett, Randall', '2008-01-04', 65, 'https://www.gutenberg.org/ebooks/24166', 'en', 2564), +(18455, 'Trolley Folly', 'Phillips, Henry Wallace', '2018-07-12', 13, 'https://www.gutenberg.org/ebooks/57494', 'en', 112), +(18456, 'Satyros oder Der vergötterte Waldteufel', 'Goethe, Johann Wolfgang von', '2003-12-01', 29, 'https://www.gutenberg.org/ebooks/10353', 'de', 402), +(18457, 'Lessons in the Art of Illuminating\r\nA Series of Examples selected from Works in the British Museum, Lambeth Palace Library, and the South Kensington Museum. With Practical Instructions, and a Sketch of the History of the Art', 'Loftie, W. J. (William John)', '2012-08-06', 45, 'https://www.gutenberg.org/ebooks/40423', 'en', 4378), +(18458, 'The Hope of the Katzekopfs; or, The Sorrows of Selfishness. A Fairy Tale.', 'Paget, Francis Edward', '2016-12-26', 14, 'https://www.gutenberg.org/ebooks/53808', 'en', 3909), +(18459, 'Encyclopaedia Britannica, 11th Edition, \"Gichtel, Johann\" to \"Glory\"\r\nVolume 12, Slice 1', 'Various', '2012-01-10', 15, 'https://www.gutenberg.org/ebooks/38539', 'en', 1081), +(18460, 'Pierrette', 'Balzac, Honoré de', '2005-08-10', 28, 'https://www.gutenberg.org/ebooks/1704', 'en', 58), +(18461, 'The Story of Jack and the Giants', NULL, '2005-04-14', 27, 'https://www.gutenberg.org/ebooks/15621', 'en', 1007), +(18462, 'Culinary Herbs: Their Cultivation Harvesting Curing and Uses', 'Kains, M. G. (Maurice Grenville)', '2007-05-11', 74, 'https://www.gutenberg.org/ebooks/21414', 'en', 8339), +(18463, 'North and South', 'Gaskell, Elizabeth Cleghorn', '2003-07-01', 1109, 'https://www.gutenberg.org/ebooks/4276', 'en', 7497), +(18464, 'Historia de la Conquista de la Habana (1762)', 'Guiteras, Pedro José', '2014-03-16', 17, 'https://www.gutenberg.org/ebooks/45151', 'es', 8340), +(18465, 'Edge of the Jungle', 'Beebe, William', '2008-06-24', 28, 'https://www.gutenberg.org/ebooks/25888', 'en', 8341), +(18466, 'The Count of the Saxon Shore; or The Villa in Vectis.\r\nA Tale of the Departure of the Romans from Britain', 'Church, Alfred John', '2013-10-31', 17, 'https://www.gutenberg.org/ebooks/44083', 'en', 98), +(18467, 'Secret History of the Court of England, from the Accession of George the Third to the Death of George the Fourth, Volume 2 (of 2)\r\nIncluding, Among Other Important Matters, Full Particulars of the Mysterious Death of the Princess Charlotte', 'Hamilton, Anne, Lady', '2011-09-30', 49, 'https://www.gutenberg.org/ebooks/37571', 'en', 8342), +(18468, 'The God-Plllnk', 'Bixby, Jerome', '2016-09-12', 24, 'https://www.gutenberg.org/ebooks/53034', 'en', 26), +(18469, 'Autobiography of Ma-ka-tai-me-she-kia-kiak, or Black Hawk', 'Black Hawk, Sauk chief', '2004-12-01', 158, 'https://www.gutenberg.org/ebooks/7097', 'en', 8343), +(18470, 'The Bible in Spain, Vol. 1 [of 2]\r\nOr, the Journeys, Adventures, and Imprisonments of an Englishman in an Attempt to Circulate the Scriptures in the Peninsula', 'Borrow, George', '2011-03-21', 19, 'https://www.gutenberg.org/ebooks/35642', 'en', 8344), +(18471, 'This House to Let', 'Le Queux, William', '2016-02-24', 24, 'https://www.gutenberg.org/ebooks/51307', 'en', 128), +(18472, 'Prairie Farmer, Vol. 56: No. 1, January 5, 1884.\nA Weekly Journal for the Farm, Orchard and Fireside', 'Various', '2006-01-14', 42, 'https://www.gutenberg.org/ebooks/17512', 'en', 1987), +(18473, 'K', 'Rinehart, Mary Roberts', '2006-02-01', 60, 'https://www.gutenberg.org/ebooks/9931', 'en', 3432), +(18474, 'The Lost Girl', 'Lawrence, D. H. (David Herbert)', '2007-12-03', 127, 'https://www.gutenberg.org/ebooks/23727', 'en', 348), +(18475, 'Tales of the Punjab: Folklore of India', 'Steel, Flora Annie Webster', '2004-07-01', 52, 'https://www.gutenberg.org/ebooks/6145', 'en', 8345), +(18476, 'Perverted Proverbs: A Manual of Immorals for the Many', 'Graham, Harry', '2010-12-30', 45, 'https://www.gutenberg.org/ebooks/34790', 'en', 5509), +(18477, 'Old Times on the Upper Mississippi\r\nThe Recollections of a Steamboat Pilot from 1854 to 1863', 'Merrick, George Byron', '2014-11-01', 35, 'https://www.gutenberg.org/ebooks/47262', 'en', 8346), +(18478, 'Sonny Boy', 'Swett, Sophie Miriam', '2008-08-10', 11, 'https://www.gutenberg.org/ebooks/26255', 'en', 153), +(18479, 'The Life of Joan of Arc, Vol. 1 and 2', 'France, Anatole', '2006-10-07', 54, 'https://www.gutenberg.org/ebooks/19488', 'en', 3907), +(18480, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 04\r\nMasterpieces of German Literature Translated into English. in Twenty Volumes', NULL, '2004-04-01', 211, 'https://www.gutenberg.org/ebooks/12060', 'en', 652), +(18481, 'Bizarre', 'Mackall, Lawton', '2013-05-13', 37, 'https://www.gutenberg.org/ebooks/42710', 'en', 190), +(18482, 'The Book of the Thousand Nights and a Night — Volume 03', NULL, '2002-09-01', 101, 'https://www.gutenberg.org/ebooks/3437', 'en', 3347), +(18483, 'High Dragon Bump', 'Thompson, Don', '2009-10-25', 19, 'https://www.gutenberg.org/ebooks/30330', 'en', 26), +(18484, 'The Little Regiment, and Other Episodes of the American Civil War', 'Crane, Stephen', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/6979', 'en', 8347), +(18485, 'Harper\'s Round Table, March 10, 1896', 'Various', '2017-05-07', 8, 'https://www.gutenberg.org/ebooks/54675', 'en', 668), +(18486, 'Biographia do Padre José Agostinho de Macedo\nSeguida d\'um catalogo alfabetico de todas as suas obras', 'Melo, Joaquim Lopes Carreira de', '2008-12-02', 6, 'https://www.gutenberg.org/ebooks/27387', 'pt', 8348), +(18487, 'Owen Hartley; or, Ups and Downs: A Tale of Land and Sea', 'Kingston, William Henry Giles', '2008-02-03', 29, 'https://www.gutenberg.org/ebooks/24502', 'en', 323), +(18488, 'Book about Animals', 'Merrill, Rufus', '2004-01-01', 54, 'https://www.gutenberg.org/ebooks/10737', 'en', 1423), +(18489, 'Fenn Masterson\'s Discovery; or, The Darewell Chums on a Cruise', 'Chapman, Allen', '2011-11-05', 5, 'https://www.gutenberg.org/ebooks/37929', 'en', 153), +(18490, 'Punch, or the London Charivari, Vol. 107, October 20, 1894', 'Various', '2012-06-20', 10, 'https://www.gutenberg.org/ebooks/40047', 'en', 134), +(18491, 'The Osbornes', 'Benson, E. F. (Edward Frederic)', '2019-02-14', 11, 'https://www.gutenberg.org/ebooks/58884', 'en', 432), +(18492, 'Historical Lectures and Essays', 'Kingsley, Charles', '1998-06-01', 30, 'https://www.gutenberg.org/ebooks/1360', 'en', 7868), +(18493, 'Gods and Heroes', 'Becker, Karl Friedrich', '2019-07-21', 1112, 'https://www.gutenberg.org/ebooks/59956', 'en', 2139), +(18494, 'The Medley', 'Anonymous', '2010-05-21', 11, 'https://www.gutenberg.org/ebooks/32467', 'en', 294), +(18495, 'Historical Description of Westminster Abbey, Its Monuments and Curiosities', 'Anonymous', '2012-10-27', 14, 'https://www.gutenberg.org/ebooks/41195', 'en', 7264), +(18496, 'Harper\'s Young People, March 14, 1882\nAn Illustrated Weekly', 'Various', '2017-12-04', 0, 'https://www.gutenberg.org/ebooks/56122', 'en', 479), +(18497, 'The Moral and Intellectual Diversity of Races\nWith Particular Reference to Their Respective Influence in the Civil and Political History of Mankind', 'Gobineau, Arthur, comte de', '2011-08-17', 52, 'https://www.gutenberg.org/ebooks/37115', 'en', 8349), +(18498, 'Narrative of the surveying voyages of His Majesty\'s ships Adventure and Beagle, between the years 1826 and 1836. Volume I. Proceedings of the First Expedition, 1826-1830', 'King, Philip Parker', '2012-02-23', 48, 'https://www.gutenberg.org/ebooks/38961', 'en', 227), +(18499, 'Le roman de Miraut - Chien de chasse', 'Pergaud, Louis', '2004-12-20', 10, 'https://www.gutenberg.org/ebooks/14397', 'fr', 2464), +(18500, 'The London Medical Gazette; December 27, 1828\nBeing a Weekly Journal of Medicine and the Collateral Sciences', 'Various', '2016-11-05', 23, 'https://www.gutenberg.org/ebooks/53450', 'en', 3905), +(18501, 'Drake; or, the Transfer of the Trident: A National Drama', 'MacOubrey, William', '2016-07-15', 9, 'https://www.gutenberg.org/ebooks/52582', 'en', 8350), +(18502, 'Twenty-Seven Years in Canada West\nThe Experience of an Early Settler (Volume I)', 'Strickland, Samuel', '2005-03-03', 9, 'https://www.gutenberg.org/ebooks/15245', 'en', 8351), +(18503, 'A Middy of the Slave Squadron: A West African Story', 'Collingwood, Harry', '2007-04-13', 18, 'https://www.gutenberg.org/ebooks/21070', 'en', 8352), +(18504, 'The Altar Fire', 'Benson, Arthur Christopher', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/4612', 'en', 918), +(18505, 'Mesa Verde [Colorado] National Park', 'Anonymous', '2014-04-29', 17, 'https://www.gutenberg.org/ebooks/45535', 'en', 8353), +(18506, 'The Celtic Magazine, Vol. I No. V\r\nA Monthly Periodical Devoted to the Literature, History, Antiquities, Folk Lore, Traditions, and the Social and Material Interests of the Celt at Home and Abroad', 'Various', '2012-07-19', 12, 'https://www.gutenberg.org/ebooks/40275', 'en', 274), +(18507, 'A Briefe Introduction to Geography', 'Pemble, William', '2005-02-09', 14, 'https://www.gutenberg.org/ebooks/14999', 'en', 8354), +(18508, 'Rockhaven', 'Munn, Charles Clark', '2010-09-21', 23, 'https://www.gutenberg.org/ebooks/33787', 'en', 539), +(18509, 'The Story of the Volsungs (Volsunga Saga); with Excerpts from the Poetic Edda', NULL, '1997-12-01', 203, 'https://www.gutenberg.org/ebooks/1152', 'en', 8355), +(18510, 'Daniel Boone\nTaming the Wilds', 'Wilkie, Katharine Elliott', '2008-03-02', 19, 'https://www.gutenberg.org/ebooks/24730', 'en', 8356), +(18511, 'Waltzing Matilda', 'McGuinn, Roger', '2003-12-01', 11, 'https://www.gutenberg.org/ebooks/10505', 'en', 8357), +(18512, 'The Undercurrent', 'Grant, Robert', '2018-01-04', 10, 'https://www.gutenberg.org/ebooks/56310', 'en', 705), +(18513, 'The Last Gentleman', 'Magill, Rory', '2010-06-02', 32, 'https://www.gutenberg.org/ebooks/32655', 'en', 26), +(18514, 'Elements of Structural and Systematic Botany\nFor High Schools and Elementary College Courses', 'Campbell, Douglas Houghton', '2007-01-17', 43, 'https://www.gutenberg.org/ebooks/20390', 'en', 8358), +(18515, 'Ein Volk in Waffen', 'Hedin, Sven Anders', '2016-12-04', 13, 'https://www.gutenberg.org/ebooks/53662', 'de', 8359), +(18516, 'O\'er Many Lands, on Many Seas', 'Stables, Gordon', '2011-09-06', 32, 'https://www.gutenberg.org/ebooks/37327', 'en', 388), +(18517, 'Sandra Belloni (originally Emilia in England) — Complete', 'Meredith, George', '2004-11-03', 11, 'https://www.gutenberg.org/ebooks/4420', 'en', 137), +(18518, 'De Leeuw van Modderspruit\r\nEen verhaal uit den Engelsch-Zuid-Afrikaanschen Oorlog 1899-1900', 'Penning, L. (Louwrens)', '2014-05-20', 22, 'https://www.gutenberg.org/ebooks/45707', 'nl', 2564), +(18519, 'All About Your Canary', 'French, George Jackson', '2019-04-25', 11, 'https://www.gutenberg.org/ebooks/59358', 'en', 8360), +(18520, 'The Tale of Mr. Jeremy Fisher', 'Potter, Beatrix', '2005-02-16', 116, 'https://www.gutenberg.org/ebooks/15077', 'en', 8361), +(18521, 'On the Irrawaddy: A Story of the First Burmese War', 'Henty, G. A. (George Alfred)', '2007-04-27', 33, 'https://www.gutenberg.org/ebooks/21242', 'en', 625), +(18522, 'The Most Extraordinary Trial of William Palmer, for the Rugeley Poisonings, which lasted Twelve Days', 'Anonymous', '2016-02-06', 17, 'https://www.gutenberg.org/ebooks/51135', 'en', 8362), +(18523, 'Sonata de otoño; Sonata de invierno: memorias del Marqués de Bradomín', 'Valle-Inclán, Ramón del', '2014-07-03', 19, 'https://www.gutenberg.org/ebooks/46182', 'es', 1384), +(18524, 'Key to the Science of Theology', 'Pratt, Parley P. (Parley Parker)', '2011-03-03', 116, 'https://www.gutenberg.org/ebooks/35470', 'en', 310), +(18525, 'Thaïs', 'France, Anatole', '2004-08-01', 20, 'https://www.gutenberg.org/ebooks/6377', 'fr', 1159), +(18526, 'Taavetti Livingstone, hänen elämänsä ja toimensa', 'Lagus, F. H. B.', '2009-02-04', 9, 'https://www.gutenberg.org/ebooks/27989', 'fi', 8363), +(18527, 'The Slavery Question', 'Lawrence, John', '2014-10-05', 13, 'https://www.gutenberg.org/ebooks/47050', 'en', 8364), +(18528, 'History Of Ancient Civilization', 'Seignobos, Charles', '2006-02-09', 68, 'https://www.gutenberg.org/ebooks/17720', 'en', 1368), +(18529, 'Countess Vera; or, The Oath of Vengeance', 'Miller, Alex. McVeigh, Mrs.', '2015-04-29', 17, 'https://www.gutenberg.org/ebooks/48824', 'en', 264); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(18530, 'The Spectre In The Cart\n1908', 'Page, Thomas Nelson', '2007-11-16', 6, 'https://www.gutenberg.org/ebooks/23515', 'en', 1439), +(18531, 'The Big Nightcap Letters\nBeing the Fifth Book of the Series', 'Fanny, Aunt', '2009-08-26', 15, 'https://www.gutenberg.org/ebooks/29813', 'en', 195), +(18532, 'Extracts from the Diary and Correspondence of the Late Amos Lawrence; with a brief account of some incidents of his life', 'Lawrence, Amos', '2013-04-13', 10, 'https://www.gutenberg.org/ebooks/42522', 'en', 8365), +(18533, 'The Apaches of New York', 'Lewis, Alfred Henry', '2016-05-01', 13, 'https://www.gutenberg.org/ebooks/51909', 'en', 177), +(18534, 'On the Firing Line', 'Fuller, Hamilton Brock', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3605', 'en', 1207), +(18535, 'The Life of Thomas, Lord Cochrane, Tenth Earl of Dundonald, Vol. II', 'Bourne, H. R. Fox (Henry Richard Fox)', '2008-07-15', 14, 'https://www.gutenberg.org/ebooks/26067', 'en', 8366), +(18536, 'The Prose Works of Jonathan Swift, D.D. — Volume 03\r\nSwift\'s Writings on Religion and the Church — Volume 1', 'Swift, Jonathan', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12252', 'en', 2566), +(18537, 'A Catalogue of Books Published by Methuen and Company, November 1907', 'Methuen & Co.', '2017-09-21', 5, 'https://www.gutenberg.org/ebooks/55595', 'en', 6345), +(18538, 'The Sky Is Falling', 'Del Rey, Lester', '2006-07-06', 132, 'https://www.gutenberg.org/ebooks/18768', 'en', 2827), +(18539, 'Vankilasta ja Siperiasta', 'Relander, Oskar', '2017-03-28', 19, 'https://www.gutenberg.org/ebooks/54447', 'fi', 8367), +(18540, 'Gabriel', 'Sand, George', '2004-09-06', 58, 'https://www.gutenberg.org/ebooks/13380', 'fr', 415), +(18541, 'Hethadenee waunauyaunee vadan Luke vanenana\nThe Gospel According to Saint Luke', NULL, '2009-09-26', 15, 'https://www.gutenberg.org/ebooks/30102', 'arp', 8368), +(18542, 'Hildebrand; or, The Days of Queen Elizabeth, An Historic Romance, Vol. 2 of 3', 'Anonymous', '2015-01-18', 18, 'https://www.gutenberg.org/ebooks/48018', 'en', 4434), +(18543, 'The Chronicles of Enguerrand de Monstrelet, Vol. 03 [of 13]\r\nContaining an account of the cruel civil wars between the houses of Orleans and Burgundy, of the possession of Paris and Normandy by the English, their expulsion thence, and of other memorable events that happened in the kingdom of France, as well as in other countries', 'Monstrelet, Enguerrand de', '2016-08-28', 8, 'https://www.gutenberg.org/ebooks/52911', 'en', 8369), +(18544, 'Punch, or the London Charivari, Vol. 105, November 11, 1893', 'Various', '2012-04-10', 3, 'https://www.gutenberg.org/ebooks/39420', 'en', 134), +(18545, 'The American Child', 'McCracken, Elizabeth', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10398', 'en', 3401), +(18546, 'Les belles-de-nuit; ou, les anges de la famille. tome 3', 'Féval, Paul', '2014-02-11', 11, 'https://www.gutenberg.org/ebooks/44874', 'fr', 298), +(18547, 'De Klucht der Vergissingen', 'Shakespeare, William', '2008-06-19', 17, 'https://www.gutenberg.org/ebooks/25843', 'nl', 6697), +(18548, 'Voyage d\'un jeune grec à Paris (Vol. 1 of 2)', 'Mazier du Heaume, Hippolyte', '2011-06-19', 53, 'https://www.gutenberg.org/ebooks/36468', 'fr', 2972), +(18549, 'Aunt Amy; or, How Minnie Brown learned to be a Sunbeam', 'Wise, Daniel', '2008-04-05', 13, 'https://www.gutenberg.org/ebooks/24991', 'en', 1817), +(18550, 'Legal Chemistry\r\nA Guide to the Detection of Poisons, Examination of Tea, Stains, Etc., as Applied to Chemical Jurisprudence', 'Naquet, Alfred', '2013-10-27', 22, 'https://www.gutenberg.org/ebooks/44048', 'en', 8370), +(18551, 'Kellarikerroksessa: Viisinäytöksinen näytelmä', 'Willman, Elvira', '2005-01-19', 17, 'https://www.gutenberg.org/ebooks/14738', 'fi', 382), +(18552, 'Dick Hamilton\'s Cadet Days; Or, The Handicap of a Millionaire\'s Son', 'Garis, Howard Roger', '2010-10-14', 26, 'https://www.gutenberg.org/ebooks/33926', 'en', 3593), +(18553, 'The Battle of the Rivers', 'Dane, Edmund (Military historian)', '2018-12-06', 26, 'https://www.gutenberg.org/ebooks/58417', 'en', 4411), +(18554, 'The Works of John Galsworthy\nAn Index of the Project Gutenberg Works of Galsworthy', 'Galsworthy, John', '2009-05-11', 17, 'https://www.gutenberg.org/ebooks/28760', 'en', 198), +(18555, 'Wrecked but not Ruined', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 44, 'https://www.gutenberg.org/ebooks/23388', 'en', 8371), +(18556, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 26: Spain', 'Casanova, Giacomo', '2004-12-12', 18, 'https://www.gutenberg.org/ebooks/2976', 'en', 4391), +(18557, 'Friends in Council — First Series', 'Helps, Arthur, Sir', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7438', 'en', 740), +(18558, 'Spinster of This Parish', 'Maxwell, W. B. (William Babington)', '2015-04-12', 15, 'https://www.gutenberg.org/ebooks/48685', 'en', 109), +(18559, 'Under Handicap\nA Novel', 'Gregory, Jackson', '2006-03-14', 19, 'https://www.gutenberg.org/ebooks/17981', 'en', 2042), +(18560, 'In Court and Kampong\nBeing Tales and Sketches of Native Life in the Malay Peninsula', 'Clifford, Hugh Charles, Sir', '2009-01-07', 27, 'https://www.gutenberg.org/ebooks/27728', 'en', 8372), +(18561, 'Progress and Poverty, Volumes I and II\r\nAn Inquiry into the Cause of Industrial Depressions and of Increase of Want with Increase of Wealth', 'George, Henry', '2017-08-08', 226, 'https://www.gutenberg.org/ebooks/55308', 'en', 8373), +(18562, 'The Revolt on Venus', 'Rockwell, Carey', '2006-08-11', 59, 'https://www.gutenberg.org/ebooks/19027', 'en', 8374), +(18563, 'The Paths of Inland Commerce; A Chronicle of Trail, Road, and Waterway', 'Hulbert, Archer Butler', '2002-02-01', 19, 'https://www.gutenberg.org/ebooks/3098', 'en', 8375), +(18564, 'The Life of John Clare', 'Martin, Frederick', '2005-07-01', 11, 'https://www.gutenberg.org/ebooks/8470', 'en', 8376), +(18565, 'Fern\'s Hollow', 'Stretton, Hesba', '2005-10-10', 16, 'https://www.gutenberg.org/ebooks/16853', 'en', 2024), +(18566, 'The Man Who Lived in a Shoe', 'Forman, Henry James', '2015-08-21', 4, 'https://www.gutenberg.org/ebooks/49757', 'en', 61), +(18567, 'Child Life in Colonial Days', 'Earle, Alice Morse', '2013-10-01', 28, 'https://www.gutenberg.org/ebooks/43863', 'en', 8377), +(18568, 'Twinkle and Chubbins: Their Astonishing Adventures in Nature-Fairyland', 'Baum, L. Frank (Lyman Frank)', '2009-04-10', 47, 'https://www.gutenberg.org/ebooks/28552', 'en', 3087), +(18569, 'The Coronado Expedition, 1540-1542.\r\nExcerpted from the Fourteenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1892-1893, Part 1.', 'Winship, George Parker', '2015-11-14', 19, 'https://www.gutenberg.org/ebooks/50448', 'en', 4240), +(18570, 'Hymns from the Morningland\r\nBeing Translations, Centos and Suggestions from the Service Books of the Holy Eastern Church', NULL, '2009-07-21', 12, 'https://www.gutenberg.org/ebooks/29480', 'en', 8378), +(18571, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon\nTome Sixième', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2007-07-13', 13, 'https://www.gutenberg.org/ebooks/22068', 'fr', 2666), +(18572, 'Critical, Historical, and Miscellaneous Essays; Vol. 6\r\nWith a Memoir and Index', 'Macaulay, Thomas Babington Macaulay, Baron', '2017-11-06', 17, 'https://www.gutenberg.org/ebooks/55906', 'en', 1694), +(18573, 'Uncle Tom\'s Cabin', 'Stowe, Harriet Beecher', '2006-01-13', 2392, 'https://www.gutenberg.org/ebooks/203', 'en', 6156), +(18574, 'The Woman of Mystery', 'Leblanc, Maurice', '2011-01-13', 52, 'https://www.gutenberg.org/ebooks/34931', 'en', 579), +(18575, 'Cast Away in the Cold\nAn Old Man\'s Story of a Young Man\'s Adventures, as Related by Captain John Hardy, Mariner', 'Hayes, I. I. (Isaac Israel)', '2007-12-23', 14, 'https://www.gutenberg.org/ebooks/23986', 'en', 1246), +(18576, 'Select Epigrams from the Greek Anthology', NULL, '2000-10-01', 58, 'https://www.gutenberg.org/ebooks/2378', 'en', 3866), +(18577, 'Traffics and Discoveries', 'Kipling, Rudyard', '2006-01-01', 47, 'https://www.gutenberg.org/ebooks/9790', 'en', 4448), +(18578, 'Woman in the Nineteenth Century\r\nand Kindred Papers Relating to the Sphere, Condition and Duties, of Woman.', 'Fuller, Margaret', '2005-08-01', 142, 'https://www.gutenberg.org/ebooks/8642', 'en', 8379), +(18579, 'The Gospel According to Saint John', 'John, the Apostle, Saint', '2007-10-01', 6, 'https://www.gutenberg.org/ebooks/22854', 'en', 5364), +(18580, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 713, August 25, 1877', 'Various', '2015-08-01', 3, 'https://www.gutenberg.org/ebooks/49565', 'en', 18), +(18581, 'The History of England in Three Volumes, Vol. I., Part E.\r\nFrom Charles I. to Cromwell', 'Hume, David', '2006-09-08', 38, 'https://www.gutenberg.org/ebooks/19215', 'en', 8380), +(18582, 'What Dress Makes of Us', 'Quigley, Dorothy', '2004-02-01', 35, 'https://www.gutenberg.org/ebooks/11078', 'en', 1520), +(18583, 'Jack the Hunchback: A Story of Adventure on the Coast of Maine', 'Otis, James', '2012-12-26', 26, 'https://www.gutenberg.org/ebooks/41708', 'en', 3129), +(18584, 'The Life of a Conspirator\nBeing a Biography of Sir Everard Digby by One of His Descendants', 'Longueville, Thomas', '2012-05-04', 14, 'https://www.gutenberg.org/ebooks/39612', 'en', 8381), +(18585, 'Flaubert und die Herkunft des modernen Romans', 'Mann, Heinrich', '2010-08-02', 21, 'https://www.gutenberg.org/ebooks/33328', 'de', 1047), +(18586, 'Samuel the Seeker', 'Sinclair, Upton', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/5961', 'en', 1351), +(18587, 'U.S. Copyright Renewals, 1971 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11844', 'en', 4170), +(18588, 'Hours in a Library, Volume 3\r\nNew Edition, with Additions', 'Stephen, Leslie', '2019-01-06', 11, 'https://www.gutenberg.org/ebooks/58625', 'en', 1694), +(18589, 'Whig Against Tory\r\nOr, The Military Adventures of a Shoemaker, a Tale of the Revolution', 'Unknown', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/10996', 'en', 2843), +(18590, 'Judith Shakespeare: Her love affairs and other adventures', 'Black, William', '2011-10-18', 12, 'https://www.gutenberg.org/ebooks/37788', 'en', 984), +(18591, '\"The Fotygraft Album\"\r\nShown to the New Neighbor by Rebecca Sparks Peters Aged Eleven', 'Wing, Francis Marion', '2005-09-04', 12, 'https://www.gutenberg.org/ebooks/16639', 'en', 8382), +(18592, 'Etna: A History of the Mountain and of its Eruptions', 'Rodwell, G. F. (George Farrer)', '2010-03-30', 6, 'https://www.gutenberg.org/ebooks/31827', 'en', 8383), +(18593, 'Mediæval Heresy & the Inquisition', 'Turberville, Arthur Stanley', '2014-06-30', 21, 'https://www.gutenberg.org/ebooks/46149', 'en', 8384), +(18594, 'The Rat Racket', 'Keller, David H. (David Henry)', '2008-10-12', 30, 'https://www.gutenberg.org/ebooks/26890', 'en', 8385), +(18595, 'A System of Logic, Ratiocinative and Inductive', 'Mill, John Stuart', '2009-01-31', 222, 'https://www.gutenberg.org/ebooks/27942', 'en', 516), +(18596, 'Life Everlasting', 'Fiske, John', '2010-12-05', 5, 'https://www.gutenberg.org/ebooks/34569', 'en', 1509), +(18597, 'The Nursery, August 1877, Vol. XXII, No. 2\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 12, 'https://www.gutenberg.org/ebooks/28136', 'en', 4641), +(18598, 'Fairy Tales, Their Origin and Meaning; With Some Account of Dwellers in Fairyland', 'Bunce, John Thackray', '2005-06-01', 19, 'https://www.gutenberg.org/ebooks/8226', 'en', 8386), +(18599, 'A Middy\'s Recollections, 1853-1860', 'Montagu, Victor Alexander', '2015-05-31', 12, 'https://www.gutenberg.org/ebooks/49101', 'en', 8387), +(18600, 'The Annals of the Poor', 'Richmond, Legh', '2006-10-30', 21, 'https://www.gutenberg.org/ebooks/19671', 'en', 195), +(18601, 'The Mechanical Properties of Wood\r\nIncluding a Discussion of the Factors Affecting the Mechanical Properties, and Methods of Timber Testing', 'Record, Samuel J. (Samuel James)', '2004-05-01', 201, 'https://www.gutenberg.org/ebooks/12299', 'en', 8388), +(18602, 'The Expositor\'s Bible: The Book of Ezekiel', 'Skinner, John', '2014-09-27', 20, 'https://www.gutenberg.org/ebooks/46975', 'en', 8389), +(18603, 'The Gutenberg Webster\'s Unabridged Dictionary: Section R', 'Project Gutenberg', '1996-09-01', 115, 'https://www.gutenberg.org/ebooks/667', 'en', 1481), +(18604, 'Patience Worth: A Psychic Mystery', 'Yost, Casper S. (Casper Salathiel)', '2015-12-31', 12, 'https://www.gutenberg.org/ebooks/50810', 'en', 8390), +(18605, 'An Anthology of Australian Verse', NULL, '1998-02-01', 16, 'https://www.gutenberg.org/ebooks/1199', 'en', 2474), +(18606, 'Selections from Wordsworth and Tennyson', 'Tennyson, Alfred Tennyson, Baron', '2005-02-07', 91, 'https://www.gutenberg.org/ebooks/14952', 'en', 532), +(18607, 'Tähtien alla: Romaani', 'Talvio, Maila', '2018-05-24', 32, 'https://www.gutenberg.org/ebooks/57209', 'fi', 175), +(18608, 'Postmark Ganymede', 'Silverberg, Robert', '2008-05-27', 64, 'https://www.gutenberg.org/ebooks/25629', 'en', 112), +(18609, 'Briefe eines Soldaten: Deutsche Ausgabe der Lettres d\'un soldat', 'Lemercier, Eugène Emmanuel', '2012-03-27', 15, 'https://www.gutenberg.org/ebooks/39276', 'de', 5289), +(18610, 'The Atlantic Monthly, Volume 13, No. 78, April, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-05-23', 18, 'https://www.gutenberg.org/ebooks/15880', 'en', 1227), +(18611, 'Library Essays; Papers Related to the Work of Public Libraries', 'Bostwick, Arthur E. (Arthur Elmore)', '2018-11-06', 9, 'https://www.gutenberg.org/ebooks/58241', 'en', 2059), +(18612, 'A Thorny Path — Volume 10', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5539', 'en', 803), +(18613, 'Album chulo-gaiato ou collecção de receitas para fazer rir', 'Anonymous', '2007-05-04', 37, 'https://www.gutenberg.org/ebooks/21289', 'pt', 8391), +(18614, 'Index of the Project Gutenberg Works of Herbert Spencer', 'Spencer, Herbert', '2019-04-29', 11, 'https://www.gutenberg.org/ebooks/59393', 'en', 198), +(18615, 'Eunice', 'Robertson, Margaret M. (Margaret Murray)', '2011-12-03', 4, 'https://www.gutenberg.org/ebooks/38196', 'en', 378), +(18616, 'The International Monthly Magazine, Volume 5, No. 1, January, 1852', 'Various', '2007-03-31', 16, 'https://www.gutenberg.org/ebooks/20955', 'en', 2522), +(18617, 'Blacksheep! Blacksheep!', 'Nicholson, Meredith', '2007-06-21', 39, 'https://www.gutenberg.org/ebooks/21887', 'en', 323), +(18618, 'Advice to the people in general, with regard to their health', 'Tissot, S. A. D. (Samuel Auguste David)', '2012-03-09', 17, 'https://www.gutenberg.org/ebooks/39044', 'en', 8392), +(18619, 'The Badger: A Monograph', 'Pease, Alfred E. (Alfred Edward), Sir', '2011-07-24', 21, 'https://www.gutenberg.org/ebooks/36830', 'en', 8393), +(18620, 'Christuslegenden', 'Lagerlöf, Selma', '2018-08-29', 8, 'https://www.gutenberg.org/ebooks/57807', 'de', 179), +(18621, 'Secrets of Radar', 'Snell, Roy J. (Roy Judson)', '2018-10-11', 24, 'https://www.gutenberg.org/ebooks/58073', 'en', 8394), +(18622, 'A bihari remete, és egyéb történetek', 'Kárpáti, Aurél', '2006-12-23', 15, 'https://www.gutenberg.org/ebooks/20169', 'hu', 61), +(18623, 'Law of the North (Originally published as Empery)\r\nA Story of Love and Battle in Rupert\'s Land', 'White, Samuel Alexander', '2013-02-01', 17, 'https://www.gutenberg.org/ebooks/41962', 'en', 323), +(18624, 'Miser Farebrother: A Novel (vol. 2 of 3)', 'Farjeon, B. L. (Benjamin Leopold)', '2012-06-01', 11, 'https://www.gutenberg.org/ebooks/39878', 'en', 61), +(18625, 'Bloemensprookjes van Tante Jo', 'Alcott, Louisa May', '2016-07-10', 41, 'https://www.gutenberg.org/ebooks/52549', 'nl', 179), +(18626, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 357, February 21, 1829', 'Various', '2004-07-12', 12, 'https://www.gutenberg.org/ebooks/12897', 'en', 133), +(18627, 'Anti-Suffrage Essays', NULL, '2011-03-26', 25, 'https://www.gutenberg.org/ebooks/35689', 'en', 3357), +(18628, 'Weymouth New Testament in Modern Speech, Matthew', 'Weymouth, Richard Francis', '2005-09-01', 18, 'https://www.gutenberg.org/ebooks/8828', 'en', 228), +(18629, 'Harper\'s Young People, January 13, 1880\nAn Illustrated Weekly', 'Various', '2009-03-11', 21, 'https://www.gutenberg.org/ebooks/28304', 'en', 479), +(18630, 'Sunny Memories Of Foreign Lands, Volume 1', 'Stowe, Harriet Beecher', '2004-11-04', 33, 'https://www.gutenberg.org/ebooks/13945', 'en', 1408), +(18631, 'Our Profession and Other Poems', 'Barhite, Jared', '2006-10-02', 5, 'https://www.gutenberg.org/ebooks/19443', 'en', 8), +(18632, 'Die unheilbringende Krone\r\n(oder König ohne Reich, Held ohne Mut, Schönheit ohne Jugend)', 'Raimund, Ferdinand', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7860', 'de', 402), +(18633, 'The Bible, King James version, Book 14: 2 Chronicles', 'Anonymous', '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/8014', 'en', 1121), +(18634, 'Pot-Boilers', 'Bell, Clive', '2010-02-08', 24, 'https://www.gutenberg.org/ebooks/31229', 'en', 2156), +(18635, 'Coplas por la muerte de su padre', 'Manrique, Jorge', '2015-06-30', 28, 'https://www.gutenberg.org/ebooks/49333', 'es', 8261), +(18636, 'Castles and Chateaux of Old Navarre and the Basque Provinces', 'Mansfield, M. F. (Milburg Francisco)', '2013-08-31', 18, 'https://www.gutenberg.org/ebooks/43609', 'en', 1150), +(18637, 'The Life of George Washington, Vol. 1\r\nCommander in Chief of the American Forces During the War\r\nwhich Established the Independence of his Country and First\r\nPresident of the United States', 'Marshall, John', '2006-06-15', 38, 'https://www.gutenberg.org/ebooks/18591', 'en', 7558), +(18638, 'The University of Hard Knocks', 'Parlette, Ralph Albert', '1996-03-01', 59, 'https://www.gutenberg.org/ebooks/455', 'en', 740), +(18639, 'The Poems of William Watson', 'Watson, William', '2004-08-15', 18, 'https://www.gutenberg.org/ebooks/13179', 'en', 532), +(18640, 'The Religion of Ancient Egypt', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2009-05-31', 39, 'https://www.gutenberg.org/ebooks/29010', 'en', 5651), +(18641, 'Poems for Pale People\nA Volume of Verse', 'Ranck, Edwin Carty', '2008-10-09', 17, 'https://www.gutenberg.org/ebooks/26864', 'en', 178), +(18642, 'Copyright Renewals 1953', 'Library of Congress. Copyright Office', '2004-08-01', 20, 'https://www.gutenberg.org/ebooks/6348', 'en', 4170), +(18643, 'Fee of the Frontier', 'Fyfe, H. B. (Horace Bowne)', '2010-01-09', 35, 'https://www.gutenberg.org/ebooks/30901', 'en', 613), +(18644, 'Daireen. Volume 1 of 2', 'Moore, Frank Frankfort', '2016-05-02', 8, 'https://www.gutenberg.org/ebooks/51936', 'en', 61), +(18645, 'Country of the Pointed Firs', 'Jewett, Sarah Orne', '2006-11-07', 6, 'https://www.gutenberg.org/ebooks/19685', 'en', 4598), +(18646, 'Psicologia criminale', 'Longo, Michele', '2014-09-27', 63, 'https://www.gutenberg.org/ebooks/46981', 'it', 8395), +(18647, 'The Starvation Treatment of Diabetes', 'Eckman, Rena Sarah', '2008-07-14', 55, 'https://www.gutenberg.org/ebooks/26058', 'en', 8396), +(18648, 'Rimpisuon usvapatsas: Seikkailukertomus Pohjan periltä', 'Ingman, A. E. (Alfred Emil)', '2015-01-08', 14, 'https://www.gutenberg.org/ebooks/47853', 'fi', 3242), +(18649, 'Prince Henry the Navigator, the Hero of Portugal and of Modern Discovery, 1394-1460 A.D.\nWith an Account of Geographical Progress Throughout the Middle Ages As the Preparation for His Work.', 'Beazley, C. Raymond (Charles Raymond)', '2006-07-04', 99, 'https://www.gutenberg.org/ebooks/18757', 'en', 2320), +(18650, 'The Autobiography of a Quack, and The Case of George Dedlow', 'Mitchell, S. Weir (Silas Weir)', '2006-01-21', 55, 'https://www.gutenberg.org/ebooks/693', 'en', 2612), +(18651, 'Harper\'s Round Table, February 25, 1896', 'Various', '2017-04-02', 1, 'https://www.gutenberg.org/ebooks/54478', 'en', 668), +(18652, 'On the Ethics of Naturalism', 'Sorley, W. R. (William Ritchie)', '2015-01-19', 13, 'https://www.gutenberg.org/ebooks/48027', 'en', 4060), +(18653, 'Jennie Baxter, Journalist', 'Barr, Robert', '2005-11-01', 44, 'https://www.gutenberg.org/ebooks/9300', 'en', 8397), +(18654, 'Notes and Queries, Vol. IV, Number 94, August 16, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-12-20', 15, 'https://www.gutenberg.org/ebooks/38350', 'en', 105), +(18655, 'Generals of the British Army\nPortraits in Colour with Introductory and Biographical Notes', NULL, '2012-11-18', 15, 'https://www.gutenberg.org/ebooks/41398', 'en', 8398), +(18656, 'Old Testament Legends\r\nBeing stories out of some of the less-known apocryphal books of the Old Testament', 'James, M. R. (Montague Rhodes)', '2005-05-21', 60, 'https://www.gutenberg.org/ebooks/15874', 'en', 8399), +(18657, 'The Adopted Son: The Story of Moses', 'Willard, J. H. (James Hartwell)', '2012-03-27', 16, 'https://www.gutenberg.org/ebooks/39282', 'en', 8400), +(18658, 'The Coming Race', 'Lytton, Edward Bulwer Lytton, Baron', '2006-02-19', 393, 'https://www.gutenberg.org/ebooks/1951', 'en', 8401), +(18659, 'Helena: Romaani', 'Järnefelt, Arvid', '2011-09-05', 6, 'https://www.gutenberg.org/ebooks/37318', 'fi', 61), +(18660, 'Dissertations on the English Language, with Notes, Historical and Critical;\r\nto Which is Added, by Way of Appendix, an Essay on a Reformed Mode of Spelling, With Dr. Franklin\'s Arguments on that Subject', 'Webster, Noah', '2014-05-24', 40, 'https://www.gutenberg.org/ebooks/45738', 'en', 8402), +(18661, 'Guatemala and Her People of To-day\nBeing an Account of the Land, Its History and Development; the People, Their Customs and Characteristics; to Which Are Added Chapters on British Honduras and the Republic of Honduras, with References to the Other Countries of Central America, Salvador, Nicaragua, and Costa Rica', 'Winter, Nevin O. (Nevin Otto)', '2019-04-26', 34, 'https://www.gutenberg.org/ebooks/59367', 'en', 8403), +(18662, 'Mijnheer Snepvangers', 'Baekelmans, Lode', '2005-02-14', 16, 'https://www.gutenberg.org/ebooks/15048', 'nl', 4918), +(18663, 'Miscellaneous Essays', 'De Quincey, Thomas', '2004-01-01', 187, 'https://www.gutenberg.org/ebooks/10708', 'en', 20), +(18664, 'The Star People', 'Johnson, Gaylord', '2011-11-04', 21, 'https://www.gutenberg.org/ebooks/37916', 'en', 1488), +(18665, 'Practical Religion\nBeing Plain Papers on the Daily Duties, Experience, Dangers, and Privileges of Professing Christians', 'Ryle, J. C. (John Charles)', '2011-11-28', 164, 'https://www.gutenberg.org/ebooks/38162', 'en', 3301), +(18666, 'My Life', 'Flynt, Josiah', '2012-06-25', 27, 'https://www.gutenberg.org/ebooks/40078', 'en', 8404), +(18667, 'Planet of the Damned', 'Harrison, Harry', '2007-06-20', 203, 'https://www.gutenberg.org/ebooks/21873', 'en', 26), +(18668, 'A Selection of Books Published by Methuen and Co. Ltd. London, June 1919.', 'Methuen & Co.', '2019-07-22', 286, 'https://www.gutenberg.org/ebooks/59969', 'en', 6345), +(18669, 'After Two Nights of the Ear-ache', 'Wright, Farnsworth', '2010-05-20', 13, 'https://www.gutenberg.org/ebooks/32458', 'en', 8005), +(18670, 'Kaunis ja sen lait', 'Rydberg, Viktor', '2018-10-13', 4, 'https://www.gutenberg.org/ebooks/58087', 'fi', 2250), +(18671, 'The Diva\'s Ruby', 'Crawford, F. Marion (Francis Marion)', '2012-09-23', 7, 'https://www.gutenberg.org/ebooks/40844', 'en', 2828), +(18672, 'Frank Merriwell\'s Athletes; Or, The Boys Who Won', 'Standish, Burt L.', '2013-02-03', 22, 'https://www.gutenberg.org/ebooks/41996', 'en', 2150), +(18673, 'Pueblo Bonito: Chaco Culture National Historic Park, New Mexico', 'Southwest Parks and Monuments Association', '2019-03-29', 14, 'https://www.gutenberg.org/ebooks/59155', 'en', 8405), +(18674, 'Pierrot, Dog of Belgium', 'Dyer, Walter A. (Walter Alden)', '2018-04-04', 29, 'https://www.gutenberg.org/ebooks/56921', 'en', 2464), +(18675, 'Campaign of the Indus\r\nIn a Series of Letters from an Officer of the Bombay Division', 'Holdsworth, T. W. E.', '2004-07-09', 18, 'https://www.gutenberg.org/ebooks/12863', 'en', 3631), +(18676, 'L\'autre monde; ou, Histoire comique des Etats et Empires de la Lune', 'Cyrano de Bergerac', '2016-03-01', 67, 'https://www.gutenberg.org/ebooks/51338', 'fr', 8406), +(18677, 'The Prince of Parthia\nA Tragedy', 'Godfrey, Thomas', '2009-06-26', 20, 'https://www.gutenberg.org/ebooks/29222', 'en', 508), +(18678, 'Through the Looking-Glass', 'Carroll, Lewis', '2007-12-01', 31, 'https://www.gutenberg.org/ebooks/23718', 'en', 388), +(18679, 'The Fallen Leaves', 'Collins, Wilkie', '2005-04-01', 59, 'https://www.gutenberg.org/ebooks/7894', 'en', 1079), +(18680, 'False Evidence', 'Oppenheim, E. Phillips (Edward Phillips)', '2017-10-24', 14, 'https://www.gutenberg.org/ebooks/55798', 'en', 2224), +(18681, 'The Shame of Motley: being the memoir of certain transactions in the life of Lazzaro Biancomonte, of Biancomonte, sometime fool of the court of Pesaro', 'Sabatini, Rafael', '2002-09-01', 34, 'https://www.gutenberg.org/ebooks/3408', 'en', 8407), +(18682, 'A Sheaf of Roses', 'Gordon, Elizabeth', '2015-02-09', 8, 'https://www.gutenberg.org/ebooks/48215', 'en', 8408), +(18683, 'The Complete Works of Artemus Ward (HTML edition)', 'Ward, Artemus', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/6946', 'en', 190), +(18684, 'A Little Swiss Sojourn', 'Howells, William Dean', '2006-06-12', 20, 'https://www.gutenberg.org/ebooks/18565', 'en', 1307), +(18685, 'The Evolution of Old Testament Religion', 'Orchard, W. E. (William Edwin)', '2014-06-12', 46, 'https://www.gutenberg.org/ebooks/45952', 'en', 8409), +(18686, 'The Countess of Lowndes Square, and Other Stories', 'Benson, E. F. (Edward Frederic)', '2018-02-16', 50, 'https://www.gutenberg.org/ebooks/56579', 'en', 230), +(18687, 'Customs and Fashions in Old New England', 'Earle, Alice Morse', '2008-01-04', 38, 'https://www.gutenberg.org/ebooks/24159', 'en', 8410), +(18688, 'Appletons\' Popular Science Monthly, May 1899\nVolume LV, No. 1, May 1899', 'Various', '2014-02-12', 3, 'https://www.gutenberg.org/ebooks/44880', 'en', 210), +(18689, 'Antología de prosistas castellanos', NULL, '2016-12-30', 39, 'https://www.gutenberg.org/ebooks/53837', 'es', 8411), +(18690, 'Lesestücke', 'Hardekopf, Ferdinand', '2012-01-06', 18, 'https://www.gutenberg.org/ebooks/38506', 'de', 422), +(18691, 'The Romance of Natural History, Second Series', 'Gosse, Philip Henry', '2010-06-13', 12, 'https://www.gutenberg.org/ebooks/32800', 'en', 871), +(18692, 'Norway', 'Sörensen, Sigvart', '2019-05-18', 60, 'https://www.gutenberg.org/ebooks/59531', 'en', 5200), +(18693, 'In the Sweet Dry and Dry', 'Haley, Bart', '2003-07-01', 17, 'https://www.gutenberg.org/ebooks/4249', 'en', 637), +(18694, 'The Deadly Daughters', 'Marks, Winston K. (Winston Kinney)', '2008-03-30', 35, 'https://www.gutenberg.org/ebooks/24965', 'en', 1238), +(18695, 'Moby Dick; Or, The Whale', 'Melville, Herman', '2009-05-01', 179, 'https://www.gutenberg.org/ebooks/28794', 'en', 8412), +(18696, 'Creative Chemistry: Descriptive of Recent Achievements in the Chemical Industries', 'Slosson, Edwin E. (Edwin Emery)', '2005-11-24', 53, 'https://www.gutenberg.org/ebooks/17149', 'en', 8413), +(18697, 'Mark Twain: A Biography. Volume I, Part 1: 1835-1866', 'Paine, Albert Bigelow', '2004-10-04', 26, 'https://www.gutenberg.org/ebooks/2982', 'en', 131), +(18698, 'Hints on Wolf and Coyote Trapping', 'Young, Stanley Paul', '2014-12-12', 9, 'https://www.gutenberg.org/ebooks/47639', 'en', 8414), +(18699, 'Korte beschrijving van Leiden: wegwijzer voor vreemdeling en stadgenoot', 'Dercksen, Jacobus Marinus Everhardus', '2011-02-08', 8, 'https://www.gutenberg.org/ebooks/35219', 'nl', 8415), +(18700, 'Memoirs of Madame la Marquise de Montespan — Volume 4', 'Montespan, Madame de', '2004-12-02', 15, 'https://www.gutenberg.org/ebooks/3850', 'en', 6965), +(18701, 'Once to Every Man', 'Evans, Larry', '2009-08-09', 12, 'https://www.gutenberg.org/ebooks/29646', 'en', 61), +(18702, 'Risti ja noitarumpu: Olaus Sirman tarina', 'Järventaus, Arvi', '2015-04-09', 36, 'https://www.gutenberg.org/ebooks/48671', 'fi', 175), +(18703, 'Square Pegs: A Rhymed Fantasy For Two Girls', 'Bax, Clifford', '2013-07-25', 18, 'https://www.gutenberg.org/ebooks/43299', 'en', 1088), +(18704, 'Kuningas Lear arolla', 'Turgenev, Ivan Sergeevich', '2006-03-13', 5, 'https://www.gutenberg.org/ebooks/17975', 'fi', 85), +(18705, 'A Study in Scarlet', 'Doyle, Arthur Conan', '2005-12-01', 247, 'https://www.gutenberg.org/ebooks/9556', 'en', 430), +(18706, '[Einleitung zu:] Thomas Carlyle, Leben Schillers', 'Carlyle, Thomas', '2006-04-02', 14, 'https://www.gutenberg.org/ebooks/18101', 'de', 8416), +(18707, 'Scientific American Supplement, No. 430, March 29, 1884', 'Various', '2005-07-01', 5, 'https://www.gutenberg.org/ebooks/8484', 'en', 210), +(18708, 'Brief Account of the English Character', 'Marjoribanks, Charles', '2017-05-31', 17, 'https://www.gutenberg.org/ebooks/54820', 'en', 8417), +(18709, 'Antoine of Oregon: A Story of the Oregon Trail', 'Otis, James', '2013-10-05', 29, 'https://www.gutenberg.org/ebooks/43897', 'en', 497), +(18710, 'The Lumberjack Sky Pilot', 'Whittles, Thomas D. (Thomas Davis)', '2013-06-14', 18, 'https://www.gutenberg.org/ebooks/42945', 'en', 8418), +(18711, 'Lebensbeschreibung des k. k. Kapellmeisters Wolfgang Amadeus Mozart', 'Niemetschek, Franz Xaver', '2009-07-21', 15, 'https://www.gutenberg.org/ebooks/29474', 'de', 3143), +(18712, 'The Illustrated War News, Number 15, Nov. 18, 1914', 'Various', '2006-05-07', 47, 'https://www.gutenberg.org/ebooks/18333', 'en', 8224), +(18713, 'The Book of Humorous Verse', NULL, '2007-12-22', 32, 'https://www.gutenberg.org/ebooks/23972', 'en', 7712), +(18714, 'A Singular Life', 'Phelps, Elizabeth Stuart', '2015-03-09', 31, 'https://www.gutenberg.org/ebooks/48443', 'en', 716), +(18715, 'Eighth Reader', NULL, '2009-11-28', 24, 'https://www.gutenberg.org/ebooks/30559', 'en', 1019), +(18716, 'Alice, or the Mysteries — Book 02', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 60, 'https://www.gutenberg.org/ebooks/9764', 'en', 137), +(18717, 'In African Forest and Jungle', 'Du Chaillu, Paul B. (Paul Belloni)', '2015-08-04', 12, 'https://www.gutenberg.org/ebooks/49591', 'en', 4589), +(18718, 'Constitutional History of England, Henry VII to George II. Volume 2 of 3', 'Hallam, Henry', '2013-02-23', 20, 'https://www.gutenberg.org/ebooks/42179', 'en', 445), +(18719, 'Back to the Woods\r\nThe Story of a Fall from Grace', 'Hobart, George V. (George Vere)', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/12609', 'en', 1426), +(18720, 'Tradicions religiosas de Catalunya', 'Valldaura, Agna de', '2011-04-11', 16, 'https://www.gutenberg.org/ebooks/35817', 'ca', 8419), +(18721, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce — Complete (1584-86)', 'Motley, John Lothrop', '2004-11-08', 18, 'https://www.gutenberg.org/ebooks/4847', 'en', 3372), +(18722, 'Mémoires du Baron de Bonnefoux, Capitaine de vaisseau, 1782-1855', 'Bonnefoux, Pierre-Marie-Joseph, baron de', '2012-02-01', 15, 'https://www.gutenberg.org/ebooks/38734', 'fr', 8420), +(18723, 'The Two Gentlemen of Verona', 'Shakespeare, William', '1998-10-01', 33, 'https://www.gutenberg.org/ebooks/1509', 'en', 8421), +(18724, 'Chapters of Opera\r\nBeing historical and critical observations and records concerning the lyric drama in New York from its earliest days down to the present time', 'Krehbiel, Henry Edward', '2005-05-29', 27, 'https://www.gutenberg.org/ebooks/5995', 'en', 8422), +(18725, 'The Young Scout: The Story of a West Point Lieutenant', 'Ellis, Edward Sylvester', '2018-08-14', 14, 'https://www.gutenberg.org/ebooks/57699', 'en', 8423), +(18726, 'The Tale of Nimble Deer\nSleepy-Time Tales', 'Bailey, Arthur Scott', '2007-05-26', 32, 'https://www.gutenberg.org/ebooks/21619', 'en', 625), +(18727, 'Nor Dust Corrupt', 'McConnell, James V.', '2019-06-08', 123, 'https://www.gutenberg.org/ebooks/59703', 'en', 26), +(18728, 'Gesichte: Essays und andere Geschichten', 'Lasker-Schüler, Else', '2016-10-09', 21, 'https://www.gutenberg.org/ebooks/53239', 'de', 60), +(18729, 'Concerning Animals and Other Matters', 'Aitken, Edward Hamilton', '2004-02-01', 40, 'https://www.gutenberg.org/ebooks/10962', 'en', 2422), +(18730, 'Cornish Catches, and Other Verses', 'Moore, Bernard', '2012-01-13', 5, 'https://www.gutenberg.org/ebooks/38565', 'en', 54), +(18731, 'Forge Work', 'Ilgen, William L. (William Lewis)', '2016-12-31', 22, 'https://www.gutenberg.org/ebooks/53854', 'en', 8424), +(18732, 'Marjorie Daw', 'Aldrich, Thomas Bailey', '1999-05-01', 24, 'https://www.gutenberg.org/ebooks/1758', 'en', 258), +(18733, 'Deutsche Humoristen, 4. und 5. Band (von 8)', 'Various', '2016-09-05', 16, 'https://www.gutenberg.org/ebooks/52986', 'de', 543), +(18734, 'Wounded and a Prisoner of War, by an Exchanged Officer', 'Hay, Malcolm V. (Malcolm Vivian)', '2014-06-10', 22, 'https://www.gutenberg.org/ebooks/45931', 'en', 3601), +(18735, 'History of the Eighty-sixth Regiment, Illinois Volunteer Infantry, during its term of service', 'Kinnear, John R.', '2008-03-24', 6, 'https://www.gutenberg.org/ebooks/24906', 'en', 8425), +(18736, 'Rakkautta ja politiikkaa: Huvinäytelmä 1:ssä näytöksessä', 'Turunen, Armas E.', '2016-09-17', 11, 'https://www.gutenberg.org/ebooks/53068', 'fi', 382), +(18737, 'Perry\'s Saints; Or, The Fighting Parson\'s Regiment in the War of the Rebellion', 'Nichols, James Moses', '2018-12-17', 3, 'https://www.gutenberg.org/ebooks/58480', 'en', 1489), +(18738, 'The African Trader; Or, The Adventures of Harry Bayford', 'Kingston, William Henry Giles', '2007-05-15', 27, 'https://www.gutenberg.org/ebooks/21448', 'en', 1646), +(18739, 'The life and correspondence of Sir Anthony Panizzi, K.C.B., Vol. 2 (of 2)\r\nLate principal librarian of the British museum, senator of Italy, etc.', 'Fagan, Louis', '2019-05-19', 6, 'https://www.gutenberg.org/ebooks/59552', 'en', 8426), +(18740, 'Cottage Economy, to Which is Added The Poor Man\'s Friend', 'Cobbett, William', '2010-06-17', 70, 'https://www.gutenberg.org/ebooks/32863', 'en', 8427), +(18741, 'The Story of the \"Britannia\"\r\nThe training ship for naval cadets. With some account of previous methods of naval education, and of the new scheme of 1903.', 'Statham, Edward Phillips', '2014-09-06', 25, 'https://www.gutenberg.org/ebooks/46788', 'en', 8428), +(18742, 'Australian Legendary Tales: folk-lore of the Noongahburrahs as told to the Piccaninnies', 'Parker, K. Langloh (Katie Langloh)', '2003-03-01', 51, 'https://www.gutenberg.org/ebooks/3833', 'en', 8429), +(18743, 'Teething Ring', 'Causey, James', '2009-08-06', 31, 'https://www.gutenberg.org/ebooks/29625', 'en', 26), +(18744, 'The Talisman, from the Russian of Alexander Pushkin; With Other Pieces', 'Borrow, George', '2004-05-01', 16, 'https://www.gutenberg.org/ebooks/12458', 'en', 8430), +(18745, 'An Unofficial Patriot', 'Gardener, Helen H. (Helen Hamilton)', '2013-03-13', 24, 'https://www.gutenberg.org/ebooks/42328', 'en', 403), +(18746, 'Psychological Warfare', 'Linebarger, Paul Myron Anthony', '2015-03-30', 122, 'https://www.gutenberg.org/ebooks/48612', 'en', 8431), +(18747, 'Les vaines tendresses\r\nÉtudes et Portraits littéraires, premier série', 'Sully Prudhomme', '2006-03-04', 18, 'https://www.gutenberg.org/ebooks/17916', 'fr', 8), +(18748, 'History of the Rise of the Huguenots, Vol. 2', 'Baird, Henry Martyn', '2009-12-18', 14, 'https://www.gutenberg.org/ebooks/30708', 'en', 7175), +(18749, 'Men\'s Wives', 'Thackeray, William Makepeace', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9535', 'en', 3092), +(18750, 'The White Heart of Mojave: An Adventure with the Outdoors of the Desert', 'Perkins, Edna Brush', '2019-08-09', 855, 'https://www.gutenberg.org/ebooks/60078', 'en', 8432), +(18751, 'Comme il vous plaira', 'Shakespeare, William', '2006-04-13', 26, 'https://www.gutenberg.org/ebooks/18162', 'fr', 3502), +(18752, 'D. Antonio Alves Martins: bispo de Vizeu: esboço biographico', 'Castelo Branco, Camilo', '2009-07-15', 14, 'https://www.gutenberg.org/ebooks/29417', 'pt', 8433), +(18753, 'The Last of Their Race', 'Swan, Annie S.', '2013-06-12', 14, 'https://www.gutenberg.org/ebooks/42926', 'en', 61), +(18754, 'I pazzi: dramma in quattro atti', 'Bracco, Roberto', '2011-01-23', 19, 'https://www.gutenberg.org/ebooks/35048', 'it', 407), +(18755, 'Kazan susikoira: Seikkailukirja suurilta saloseuduilta', 'Curwood, James Oliver', '2017-11-18', 5, 'https://www.gutenberg.org/ebooks/55991', 'fi', 2464), +(18756, 'Variétés Historiques et Littéraires (02/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2014-11-26', 12, 'https://www.gutenberg.org/ebooks/47468', 'fr', 642), +(18757, 'A Short Discourse Concerning Pestilential Contagion, and the Methods to Be Used to Prevent It', 'Mead, Richard', '2017-06-04', 9, 'https://www.gutenberg.org/ebooks/54843', 'en', 1792), +(18758, 'Public Speaking', 'Stratton, Clarence', '2005-12-16', 30, 'https://www.gutenberg.org/ebooks/17318', 'en', 3906), +(18759, 'The Promised Day Is Come', 'Shoghi, Effendi', '2006-09-17', 16, 'https://www.gutenberg.org/ebooks/19282', 'en', 5429), +(18760, 'Mr. Punch in Bohemia', 'Various', '2011-04-14', 26, 'https://www.gutenberg.org/ebooks/35874', 'en', 564), +(18761, 'The Captain of the Polestar, and Other Tales', 'Doyle, Arthur Conan', '1995-07-01', 224, 'https://www.gutenberg.org/ebooks/294', 'en', 409), +(18762, 'Social Life in the Insect World', 'Fabre, Jean-Henri', '2006-05-08', 112, 'https://www.gutenberg.org/ebooks/18350', 'en', 1968), +(18763, 'Three Little Kittens', 'Pyle, Katharine', '2015-03-06', 27, 'https://www.gutenberg.org/ebooks/48420', 'en', 1430), +(18764, '國語', 'Zuoqiu, Ming', '2007-12-19', 17, 'https://www.gutenberg.org/ebooks/23911', 'zh', 8434), +(18765, 'Going into Society', 'Dickens, Charles', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9707', 'en', 61), +(18766, 'New, Old, and Forgotten Remedies: Papers by Many Writers', NULL, '2012-02-04', 56, 'https://www.gutenberg.org/ebooks/38757', 'en', 2911), +(18767, 'Poetry for Poetry\'s Sake\nAn Inaugural Lecture Delivered on June 5, 1901', 'Bradley, A. C. (Andrew Cecil)', '2008-01-15', 12, 'https://www.gutenberg.org/ebooks/24308', 'en', 8), +(18768, 'The Rise of the Dutch Republic — Volume 22: 1574-76', 'Motley, John Lothrop', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/4824', 'en', 3372), +(18769, 'A Modern Purgatory', 'Fornaro, Carlo de', '2018-03-12', 7, 'https://www.gutenberg.org/ebooks/56728', 'en', 8435), +(18770, 'Nooks and Corners of Old England', 'Fea, Allan', '2012-05-13', 33, 'https://www.gutenberg.org/ebooks/39685', 'en', 776), +(18771, 'Three Young Knights', 'Donnell, Annie Hamilton', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/10901', 'en', 527), +(18772, 'Japanese Fairy Tales', 'Ozaki, Yei Theodora', '2003-05-01', 780, 'https://www.gutenberg.org/ebooks/4018', 'en', 8436), +(18773, 'Whiteladies', 'Oliphant, Mrs. (Margaret)', '2016-06-21', 34, 'https://www.gutenberg.org/ebooks/52388', 'en', 1380), +(18774, 'The Detective\'s Clew: Or, The Tragedy of Elm Grove', 'Adams, O. S.', '2019-06-15', 92, 'https://www.gutenberg.org/ebooks/59760', 'en', 61), +(18775, 'Wolf\'s Head\n1911', 'Murfree, Mary Noailles', '2007-11-19', 10, 'https://www.gutenberg.org/ebooks/23549', 'en', 179), +(18776, 'Chansons de France pour les petits Français\r\nAccompagnements de J.B. Weckerlin; Illustrations de M. Boutet de Monvel', NULL, '2015-05-05', 36, 'https://www.gutenberg.org/ebooks/48878', 'fr', 8437), +(18777, 'An Apology for the Life of Mrs. Shamela Andrews', 'Fielding, Henry', '2010-01-14', 93, 'https://www.gutenberg.org/ebooks/30962', 'en', 8438), +(18778, 'Section Cutting and Staining\r\nA practical introduction to histological methods for students and practitioners', 'Colman, Walter S.', '2016-02-10', 10, 'https://www.gutenberg.org/ebooks/51169', 'en', 2420), +(18779, 'Rosinante to the Road Again', 'Dos Passos, John', '2009-06-08', 20, 'https://www.gutenberg.org/ebooks/29073', 'en', 8439), +(18780, 'Hic et Hec', 'Mirabeau, Honoré-Gabriel de Riqueti, comte de', '2008-10-07', 43, 'https://www.gutenberg.org/ebooks/26807', 'fr', 7395), +(18781, 'The Burgomaster of Stilemonde: A Play in Three Acts', 'Maeterlinck, Maurice', '2014-12-31', 13, 'https://www.gutenberg.org/ebooks/47830', 'en', 612), +(18782, 'The Wit and Humor of America, Volume III. (of X.)', NULL, '2006-07-01', 76, 'https://www.gutenberg.org/ebooks/18734', 'en', 190), +(18783, 'Facts in Jingles', 'Stoner, Winifred Sackville', '2015-01-22', 12, 'https://www.gutenberg.org/ebooks/48044', 'en', 8), +(18784, 'Ligeia und andere Novellen; Sieben Gedichte', 'Poe, Edgar Allan', '2016-01-10', 34, 'https://www.gutenberg.org/ebooks/50887', 'de', 8440), +(18785, 'The Best British Short Stories of 1922', NULL, '2005-11-01', 254, 'https://www.gutenberg.org/ebooks/9363', 'en', 409), +(18786, 'The Man of Last Resort; Or, The Clients of Randolph Mason', 'Post, Melville Davisson', '2016-05-02', 25, 'https://www.gutenberg.org/ebooks/51955', 'en', 8441), +(18787, 'The Rosary', 'Barclay, Florence L. (Florence Louisa)', '2003-01-01', 66, 'https://www.gutenberg.org/ebooks/3659', 'en', 95), +(18788, 'Elements of Physiophilosophy', 'Oken, Lorenz', '2015-06-11', 14, 'https://www.gutenberg.org/ebooks/49196', 'en', 871), +(18789, 'The Melting of Molly', 'Daviess, Maria Thompson', '2005-05-12', 27, 'https://www.gutenberg.org/ebooks/15817', 'en', 8442), +(18790, 'The Children of the Poor', 'Riis, Jacob A. (Jacob August)', '2010-05-30', 14, 'https://www.gutenberg.org/ebooks/32609', 'en', 8443), +(18791, 'Savon sydämessä: Kansantapojen kuvaus. Kolminäytöksinen huvinäytelmä', 'Wuori, Martti', '2011-12-18', 12, 'https://www.gutenberg.org/ebooks/38333', 'fi', 247), +(18792, 'History of Randolph-Macon College, Virginia\nThe Oldest Incorporated Methodist College in America', 'Irby, Richard', '2012-07-14', 1, 'https://www.gutenberg.org/ebooks/40229', 'en', 8444), +(18793, 'Ballads', 'Stevenson, Robert Louis', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/10559', 'en', 4390), +(18794, 'Bright Islands', 'Riley, Frank', '2019-04-18', 57, 'https://www.gutenberg.org/ebooks/59304', 'en', 179), +(18795, 'Early Kings of Norway', 'Carlyle, Thomas', '1999-10-01', 37, 'https://www.gutenberg.org/ebooks/1932', 'en', 8445), +(18796, 'Histoire de la Monarchie de Juillet (Volume 6 / 7)', 'Thureau-Dangin, Paul', '2014-01-17', 4, 'https://www.gutenberg.org/ebooks/44689', 'fr', 8446), +(18797, 'The Wonder Island Boys: Treasures of the Islands', 'Finlay, Roger Thompson', '2007-06-11', 22, 'https://www.gutenberg.org/ebooks/21810', 'en', 550), +(18798, 'Diana Tempest, Volume III', 'Cholmondeley, Mary', '2011-11-11', 15, 'https://www.gutenberg.org/ebooks/37975', 'en', 376), +(18799, 'Thomas Paine\nFrom \'The Gods and Other Lectures\'', 'Ingersoll, Robert Green', '2011-11-22', 14, 'https://www.gutenberg.org/ebooks/38101', 'en', 5548), +(18800, 'Finkler\'s Field: A Story of School and Baseball', 'Barbour, Ralph Henry', '2019-03-27', 13, 'https://www.gutenberg.org/ebooks/59136', 'en', 3669), +(18801, 'If Only etc.', 'Philips, F. C. (Francis Charles)', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/15219', 'en', 402), +(18802, 'Wanderbilder aus Central-Amerika. Skizzen eines deutschen Malers', 'Heine, Wilhelm', '2014-05-03', 21, 'https://www.gutenberg.org/ebooks/45569', 'de', 7754), +(18803, 'Ancient, Curious, and Famous Wills', 'Harris, Virgil M. (Virgil McClure)', '2018-04-08', 30, 'https://www.gutenberg.org/ebooks/56942', 'en', 8447), +(18804, 'The Comanches: A History of White\'s Battalion, Virginia Cavalry', 'Myers, Frank M.', '2018-09-12', 10, 'https://www.gutenberg.org/ebooks/57890', 'en', 1489), +(18805, 'Fritz to the Front, or, the Ventriloquist Scamp-Hunter', 'Wheeler, Edward L. (Edward Lytton)', '2011-08-21', 10, 'https://www.gutenberg.org/ebooks/37149', 'en', 5211), +(18806, 'La voz de la conseja, t.1\r\nSelección de las mejores novelas breves y cuentos de los más esclarecidos literatos', 'Reyes, Arturo', '2012-09-22', 62, 'https://www.gutenberg.org/ebooks/40827', 'es', 1696), +(18807, 'China, Japan and the U.S.A.\r\nPresent-Day Conditions in the Far East and Their Bearing on the Washington Conference', 'Dewey, John', '2009-03-23', 15, 'https://www.gutenberg.org/ebooks/28393', 'en', 8448), +(18808, 'Social Environment and Moral Progress', 'Wallace, Alfred Russel', '2015-10-23', 14, 'https://www.gutenberg.org/ebooks/50289', 'en', 8449), +(18809, 'An Outback Marriage: A Story of Australian Life', 'Paterson, A. B. (Andrew Barton)', '2004-07-01', 27, 'https://www.gutenberg.org/ebooks/6119', 'en', 792), +(18810, 'Abraham Lincoln, Volume I', 'Morse, John Torrey', '2004-07-01', 23, 'https://www.gutenberg.org/ebooks/12800', 'en', 1009), +(18811, 'Little Masterpieces of Science: Invention and Discovery', NULL, '2009-06-25', 23, 'https://www.gutenberg.org/ebooks/29241', 'en', 1739), +(18812, 'The Hand of Providence\nAs Shown in the History of Nations and Individuals, From\nthe Great Apostasy to the Restoration of the Gospel', 'Ward, J. H. (Joseph Harvey)', '2015-02-16', 12, 'https://www.gutenberg.org/ebooks/48276', 'en', 8450), +(18813, 'Ruggles of Red Gap', 'Wilson, Harry Leon', '2005-10-01', 36, 'https://www.gutenberg.org/ebooks/9151', 'en', 8451), +(18814, 'The History of Thomas Ellwood Written By Himself', 'Ellwood, Thomas', '2004-11-01', 8, 'https://www.gutenberg.org/ebooks/6925', 'en', 8452), +(18815, 'To The Gold Coast for Gold: A Personal Narrative. Vol. II', 'Burton, Richard Francis, Sir', '2006-06-05', 16, 'https://www.gutenberg.org/ebooks/18506', 'en', 7829), +(18816, 'Frank Reade, Jr., and His Electric Ice Ship; or, Driven Adrift in the Frozen Sky.', 'Senarens, Luis', '2017-04-29', 8, 'https://www.gutenberg.org/ebooks/54629', 'en', 26), +(18817, 'The Golden Age Cook Book', 'Dwight, Henrietta Latham', '2008-08-07', 71, 'https://www.gutenberg.org/ebooks/26209', 'en', 3321), +(18818, 'The Allis Family; or, Scenes of Western Life', 'Eddy, Velda Allis', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8083', 'en', 8453), +(18819, 'The Love of Frank Nineteen', 'Knight, David C.', '2009-01-28', 29, 'https://www.gutenberg.org/ebooks/27921', 'en', 831), +(18820, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 09 (de 12)', 'Castelo Branco, Camilo', '2009-02-23', 13, 'https://www.gutenberg.org/ebooks/28155', 'pt', 410), +(18821, 'Pikku Eyolf: Kolminäytöksinen näytelmä', 'Ibsen, Henrik', '2006-02-18', 25, 'https://www.gutenberg.org/ebooks/17788', 'fi', 3671), +(18822, 'Il re dei re, vol. 2\r\nConvoglio diretto nell\'XI secolo', 'Petruccelli della Gattina, Ferdinando', '2010-01-16', 15, 'https://www.gutenberg.org/ebooks/30996', 'it', 8454), +(18823, 'The Unconstitutionality of Slavery', 'Spooner, Lysander', '2010-03-31', 18, 'https://www.gutenberg.org/ebooks/31844', 'en', 125), +(18824, 'Harper\'s Young People, August 10, 1880\nAn Illustrated Weekly', 'Various', '2009-06-10', 9, 'https://www.gutenberg.org/ebooks/29087', 'en', 479), +(18825, 'Torquato Tasso', 'Goethe, Johann Wolfgang von', '2004-08-30', 12, 'https://www.gutenberg.org/ebooks/13328', 'fi', 8455), +(18826, 'Gulliver of Mars', 'Arnold, Edwin Lester Linden', '1996-07-01', 225, 'https://www.gutenberg.org/ebooks/604', 'en', 613), +(18827, 'I Puritani di Scozia, vol. 1', 'Scott, Walter', '2013-08-13', 29, 'https://www.gutenberg.org/ebooks/43458', 'it', 8456), +(18828, 'The Illustrated Works of Friedrich Schiller\r\nA Linked Index to the Project Gutenberg Editions', 'Schiller, Friedrich', '2009-05-25', 20, 'https://www.gutenberg.org/ebooks/28969', 'en', 198), +(18829, 'The Green Satin Gown', 'Richards, Laura Elizabeth Howe', '2005-11-01', 30, 'https://www.gutenberg.org/ebooks/9397', 'en', 388), +(18830, 'Mediaeval Church Vaulting', 'Ward, Clarence', '2016-01-07', 10, 'https://www.gutenberg.org/ebooks/50873', 'en', 8457), +(18831, 'The World English Bible (WEB): Job', 'Anonymous', '2005-06-01', 20, 'https://www.gutenberg.org/ebooks/8245', 'en', 8458), +(18832, 'Curiosities of Literature, Vol. 3', 'Disraeli, Isaac', '2010-01-25', 29, 'https://www.gutenberg.org/ebooks/31078', 'en', 1282), +(18833, 'The Speedwell Boys and Their Ice Racer; Or, Lost in the Great Blizzard', 'Rockwood, Roy', '2015-06-07', 5, 'https://www.gutenberg.org/ebooks/49162', 'en', 8459), +(18834, 'History of Dogma, Volume 1', 'Harnack, Adolf von', '2006-10-24', 58, 'https://www.gutenberg.org/ebooks/19612', 'en', 7658), +(18835, 'L\'Illustration, No. 1592, 30 Août 1873', 'Various', '2014-09-20', 4, 'https://www.gutenberg.org/ebooks/46916', 'fr', 150), +(18836, 'The New Rector', 'Weyman, Stanley John', '2012-03-20', 11, 'https://www.gutenberg.org/ebooks/39215', 'en', 3014), +(18837, 'Punch, or the London Charivari, Volume 1, October 9, 1841', 'Various', '2005-02-07', 6, 'https://www.gutenberg.org/ebooks/14931', 'en', 134), +(18838, 'America First: Patriotic Readings', NULL, '2008-03-10', 13, 'https://www.gutenberg.org/ebooks/24798', 'en', 8460), +(18839, 'The Amazing Marriage — Complete', 'Meredith, George', '2004-11-05', 16, 'https://www.gutenberg.org/ebooks/4488', 'en', 675), +(18840, 'Abaellino der große Bandit', 'Zschokke, Heinrich', '2016-08-04', 13, 'https://www.gutenberg.org/ebooks/52718', 'de', 2295), +(18841, 'The Destinies of the Stars', 'Arrhenius, Svante', '2018-11-02', 12, 'https://www.gutenberg.org/ebooks/58222', 'en', 7435), +(18842, 'Punch, or the London Charivari, Volume 103, December 24, 1892', 'Various', '2007-01-11', 18, 'https://www.gutenberg.org/ebooks/20338', 'en', 134), +(18843, 'An Historical View of the Philippine Islands, Vol 2 (of 2)\r\nExhibiting their discovery, population, language, government, manners, customs, productions and commerce.', 'Martínez de Zúñiga, Joaquín', '2012-03-01', 9, 'https://www.gutenberg.org/ebooks/39027', 'en', 7136), +(18844, 'The Boy Artist.\nA Tale for the Young', 'F. M. S.', '2008-05-15', 10, 'https://www.gutenberg.org/ebooks/25478', 'en', 31), +(18845, 'A Very Naughty Girl', 'Meade, L. T.', '2011-07-25', 37, 'https://www.gutenberg.org/ebooks/36853', 'en', 8461), +(18846, 'Őszi fény: Ujabb elbeszélések', 'Jókai, Mór', '2018-04-27', 8, 'https://www.gutenberg.org/ebooks/57058', 'hu', 234), +(18847, 'May Flowers', 'Alcott, Louisa May', '2011-11-11', 44, 'https://www.gutenberg.org/ebooks/37981', 'en', 2711), +(18848, 'The New Society', 'Rathenau, Walther', '2007-03-29', 34, 'https://www.gutenberg.org/ebooks/20936', 'en', 8462), +(18849, 'The Victorious Attitude', 'Marden, Orison Swett', '2013-01-23', 77, 'https://www.gutenberg.org/ebooks/41901', 'en', 740); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(18850, 'Dictionary of Historical Allusions', 'Harbottle, Thomas Benfield', '2018-09-08', 21, 'https://www.gutenberg.org/ebooks/57864', 'en', 8463), +(18851, 'Free as in Freedom: Richard Stallman\'s Crusade for Free Software', 'Williams, Sam', '2004-05-01', 65, 'https://www.gutenberg.org/ebooks/5768', 'en', 8464), +(18852, 'A Feast for Serpents\r\nBeing the substance of a sermon, preached at the Obelisk Chapel, on Sunday evening, March 21, 1813', 'Church, J. (John)', '2018-10-02', 8, 'https://www.gutenberg.org/ebooks/58010', 'en', 2386), +(18853, 'Rambles Beyond Railways; or, Notes in Cornwall taken A-foot', 'Collins, Wilkie', '2009-03-20', 27, 'https://www.gutenberg.org/ebooks/28367', 'en', 2082), +(18854, 'Harriet, the Moses of Her People', 'Bradford, Sarah H. (Sarah Hopkins)', '2006-02-01', 51, 'https://www.gutenberg.org/ebooks/9999', 'en', 8465), +(18855, 'An History of Birmingham (1783)', 'Hutton, William', '2004-11-02', 30, 'https://www.gutenberg.org/ebooks/13926', 'en', 8466), +(18856, 'The Ivory Gate, a new edition', 'Besant, Walter', '2010-12-23', 26, 'https://www.gutenberg.org/ebooks/34738', 'en', 61), +(18857, 'Jungle Folk: Indian Natural History Sketches', 'Dewar, Douglas', '2014-07-18', 26, 'https://www.gutenberg.org/ebooks/46318', 'en', 88), +(18858, 'The Pot of Gold, and Other Stories', 'Freeman, Mary Eleanor Wilkins', '2005-08-07', 59, 'https://www.gutenberg.org/ebooks/16468', 'en', 13), +(18859, 'Les cavaliers de la nuit, deuxième partie (t. 4/4)', 'Ponson du Terrail', '2015-02-16', 7, 'https://www.gutenberg.org/ebooks/48282', 'fr', 298), +(18860, 'The Other Likeness', 'Schmitz, James H.', '2009-11-03', 53, 'https://www.gutenberg.org/ebooks/30398', 'en', 179), +(18861, 'The Master Key\r\nAn Electrical Fairy Tale Founded Upon the Mysteries of Electricity', 'Baum, L. Frank (Lyman Frank)', '1996-02-01', 275, 'https://www.gutenberg.org/ebooks/436', 'en', 7815), +(18862, 'Bell\'s Cathedrals: The Cathedral Church of York\r\nA Description of Its Fabric and A Brief History of the Archi-Episcopal See', 'Clutton-Brock, A. (Arthur)', '2006-10-01', 19, 'https://www.gutenberg.org/ebooks/19420', 'en', 8467), +(18863, 'The Story of Sugar', 'Bassett, Sara Ware', '2005-04-01', 37, 'https://www.gutenberg.org/ebooks/7803', 'en', 8468), +(18864, 'The Mind in the Making: The Relation of Intelligence to Social Reform', 'Robinson, James Harvey', '2005-05-01', 39, 'https://www.gutenberg.org/ebooks/8077', 'en', 2170), +(18865, 'My Three Years in a German Prison', 'Beland, Henri Severin', '2015-07-04', 7, 'https://www.gutenberg.org/ebooks/49350', 'en', 4962), +(18866, 'Muistelmia matkoilta Venäjällä vuosina 1854-1858', 'Ahlqvist, August', '2014-02-01', 11, 'https://www.gutenberg.org/ebooks/44817', 'fi', 2408), +(18867, 'Personal Recollections of the Civil War\r\nBy One Who Took Part in It as a Private Soldier in the 21st Volunteer Regiment of Infantry from Massachusetts', 'Stone, James Madison', '2010-07-15', 13, 'https://www.gutenberg.org/ebooks/33179', 'en', 1489), +(18868, 'The Life and Writings of Henry Fuseli, Volume 1 (of 3)', 'Fuseli, Henry', '2012-01-16', 13, 'https://www.gutenberg.org/ebooks/38591', 'en', 8469), +(18869, 'The New Christianity; or, The Religion of the New Age', 'Bland, Salem Goldworth', '2012-12-04', 18, 'https://www.gutenberg.org/ebooks/41559', 'en', 6478), +(18870, 'Mrs. Balfame: A Novel', 'Atherton, Gertrude Franklin Horn', '2012-04-13', 17, 'https://www.gutenberg.org/ebooks/39443', 'en', 828), +(18871, 'Letters from Muskoka', 'King, Charles Gerrard, Mrs.', '2016-09-03', 17, 'https://www.gutenberg.org/ebooks/52972', 'en', 8470), +(18872, 'The Purple Cloud', 'Shiel, M. P. (Matthew Phipps)', '2004-02-01', 173, 'https://www.gutenberg.org/ebooks/11229', 'en', 8471), +(18873, 'Lumeen haudattuna', 'Hoffmann, Franz', '2018-12-15', 13, 'https://www.gutenberg.org/ebooks/58474', 'fi', 8472), +(18874, 'The Unknown Sea', 'Housman, Clemence', '2010-10-05', 17, 'https://www.gutenberg.org/ebooks/33945', 'en', 61), +(18875, 'Gascoyne, The Sandal-Wood Trader: A Tale of the Pacific', 'Ballantyne, R. M. (Robert Michael)', '2005-04-23', 39, 'https://www.gutenberg.org/ebooks/15689', 'en', 1391), +(18876, 'Young Wallingford', 'Chester, George Randolph', '2010-06-19', 20, 'https://www.gutenberg.org/ebooks/32897', 'en', 2308), +(18877, 'The Silver Butterfly', 'Woodrow, Wilson, Mrs.', '2008-06-17', 12, 'https://www.gutenberg.org/ebooks/25820', 'en', 167), +(18878, 'The Passaic Flood of 1903', 'Leighton, Marshall Ora', '2006-11-20', 9, 'https://www.gutenberg.org/ebooks/19878', 'en', 8473), +(18879, 'Security', 'Anderson, Poul', '2007-08-04', 107, 'https://www.gutenberg.org/ebooks/22239', 'en', 26), +(18880, 'Aunt Fanny\'s Story-Book for Little Boys and Girls', 'Fanny, Aunt', '2009-05-06', 12, 'https://www.gutenberg.org/ebooks/28703', 'en', 388), +(18881, 'A Bit O\' Love', 'Galsworthy, John', '2004-09-26', 15, 'https://www.gutenberg.org/ebooks/2915', 'en', 1088), +(18882, 'The Sufism of the Rubáiyát, or, the Secret of the Great Paradox', 'Omar Khayyam', '2015-12-05', 48, 'https://www.gutenberg.org/ebooks/50619', 'en', 7351), +(18883, 'A History of Modern Europe, 1792-1878', 'Fyffe, Charles Alan', '2004-09-01', 24, 'https://www.gutenberg.org/ebooks/6589', 'en', 8474), +(18884, 'Adrift on an Ice-Pan', 'Grenfell, Wilfred Thomason, Sir', '2006-08-14', 38, 'https://www.gutenberg.org/ebooks/19044', 'en', 3252), +(18885, 'The Woman and the Right to Vote', 'Palma, Rafael', '2008-09-24', 18, 'https://www.gutenberg.org/ebooks/26699', 'en', 8475), +(18886, 'The Bishop\'s Shadow', 'Thurston, I. T. (Ida Treadwell)', '2005-07-01', 32, 'https://www.gutenberg.org/ebooks/8413', 'en', 1655), +(18887, 'Een klein heldendicht', 'Gorter, Herman', '2005-10-08', 12, 'https://www.gutenberg.org/ebooks/16830', 'nl', 2651), +(18888, 'The Boy Aviators in Nicaragua; or, In League with the Insurgents', 'Goldfrap, John Henry', '2015-08-18', 12, 'https://www.gutenberg.org/ebooks/49734', 'en', 8476), +(18889, 'Murad the Unlucky, and Other Tales', 'Edgeworth, Maria', '2000-04-01', 21, 'https://www.gutenberg.org/ebooks/2129', 'en', 179), +(18890, 'Life and Public Services of John Quincy Adams\r\nSixth President of the Unied States\r\nWith the Eulogy Delivered Before the Legislature of New York', 'Seward, William Henry', '2006-04-18', 50, 'https://www.gutenberg.org/ebooks/18196', 'en', 1340), +(18891, 'Air Monster', 'Green, Edwin, active 1880-1932', '2017-11-14', 20, 'https://www.gutenberg.org/ebooks/55965', 'en', 323), +(18892, 'What Will He Do with It? — Volume 11', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7669', 'en', 137), +(18893, 'The Banner Boy Scouts Snowbound; or, A Tour on Skates and Iceboats', 'Warren, George A.', '2009-04-07', 11, 'https://www.gutenberg.org/ebooks/28531', 'en', 845), +(18894, 'A Christian Directory, Part 2: Christian Economics', 'Baxter, Richard', '2013-09-23', 22, 'https://www.gutenberg.org/ebooks/43800', 'en', 6478), +(18895, 'Tales of Terror and Mystery', 'Doyle, Arthur Conan', '2005-08-01', 2, 'https://www.gutenberg.org/ebooks/8621', 'en', 3511), +(18896, 'A Summer in the Wilderness\nembracing a canoe voyage up the Mississippi and around Lake Superior', 'Lanman, Charles', '2015-07-22', 11, 'https://www.gutenberg.org/ebooks/49506', 'en', 8477), +(18897, 'The Lost Dahlia', 'Mitford, Mary Russell', '2007-10-02', 14, 'https://www.gutenberg.org/ebooks/22837', 'en', 5530), +(18898, 'L\'Illustration, No. 3261, 26 Août 1905', 'Various', '2011-04-16', 8, 'https://www.gutenberg.org/ebooks/35880', 'fr', 150), +(18899, 'Nachbarsleute', 'Thoma, Ludwig', '2017-07-20', 21, 'https://www.gutenberg.org/ebooks/55159', 'de', 1212), +(18900, 'High Endeavours: Messages to Alaska', 'Shoghi, Effendi', '2006-09-17', 9, 'https://www.gutenberg.org/ebooks/19276', 'en', 5429), +(18901, 'Stephen Arnold Douglas', 'Brown, William Garrott', '2008-12-20', 12, 'https://www.gutenberg.org/ebooks/27579', 'en', 6996), +(18902, 'Nas trevas: Sonetos sentimentaes e humoristicos', 'Castelo Branco, Camilo', '2011-01-13', 21, 'https://www.gutenberg.org/ebooks/34952', 'pt', 6193), +(18903, 'An Introduction to the Study of Robert Browning\'s Poetry', 'Browning, Robert', '2008-07-05', 53, 'https://www.gutenberg.org/ebooks/260', 'en', 8478), +(18904, 'Journeys Through Bookland, Vol. 3', 'Sylvester, Charles Herbert', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5902', 'en', 1063), +(18905, 'Women of England', 'James, Bartlett Burleigh', '2010-05-08', 25, 'https://www.gutenberg.org/ebooks/32299', 'en', 8479), +(18906, 'Handel', 'Rolland, Romain', '2012-05-11', 25, 'https://www.gutenberg.org/ebooks/39671', 'en', 8480), +(18907, 'Lapsuuteni muistoja', 'Pakkala, Teuvo', '2005-01-03', 17, 'https://www.gutenberg.org/ebooks/14569', 'fi', 8481), +(18908, 'Index of the Project Gutenberg Works of Edmund Burke', 'Burke, Edmund', '2019-01-07', 47, 'https://www.gutenberg.org/ebooks/58646', 'en', 198), +(18909, 'The Incubator Baby', 'Butler, Ellis Parker', '2013-11-18', 33, 'https://www.gutenberg.org/ebooks/44219', 'en', 8482), +(18910, 'U.S. Copyright Renewals, 1963 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11827', 'en', 4170), +(18911, 'Chickamauga. Useless, Disastrous Battle', 'Atkins, Smith D. (Smith Dykins)', '2011-07-06', 6, 'https://www.gutenberg.org/ebooks/36639', 'en', 1717), +(18912, 'The World Crisis, Volume 1 (of 6)', 'Churchill, Winston', '2019-06-23', 264, 'https://www.gutenberg.org/ebooks/59794', 'en', 6554), +(18913, 'Piano Tuning: A Simple and Accurate Method for Amateurs', 'Fischer, J. Cree (Jerry Cree)', '2006-01-22', 77, 'https://www.gutenberg.org/ebooks/17571', 'en', 8483), +(18914, 'The Faery Tales of Weir', 'Sholl, Anna McClure', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/9952', 'en', 1007), +(18915, 'Ahead of the Army', 'Stoddard, William O.', '2007-12-05', 16, 'https://www.gutenberg.org/ebooks/23744', 'en', 8484), +(18916, 'Quotations from Georg Ebers', 'Ebers, Georg', '2004-07-01', 11, 'https://www.gutenberg.org/ebooks/6126', 'en', 1026), +(18917, 'Kentucky\'s Famous Feuds and Tragedies\r\nAuthentic History of the World Renowned Vendettas of the Dark and Bloody Ground', 'Mutzenberg, Charles Gustavus', '2014-10-26', 19, 'https://www.gutenberg.org/ebooks/47201', 'en', 8485), +(18918, 'A Philosophical Dictionary, Volume 01', 'Voltaire', '2011-03-28', 100, 'https://www.gutenberg.org/ebooks/35621', 'en', 7152), +(18919, 'Colonel Crockett\'s Co-operative Christmas', 'Hughes, Rupert', '2007-09-21', 38, 'https://www.gutenberg.org/ebooks/22696', 'en', 258), +(18920, 'Mémoires touchant la vie et les écrits de Marie de Rabutin-Chantal, (2/6)', 'Walckenaer, C. A. (Charles Athanase)', '2016-03-05', 5, 'https://www.gutenberg.org/ebooks/51364', 'fr', 2648), +(18921, 'Satanstoe; Or, the Littlepage Manuscripts. A Tale of the Colony', 'Cooper, James Fenimore', '2005-09-01', 37, 'https://www.gutenberg.org/ebooks/8880', 'en', 8486), +(18922, 'The Smiler', 'Hernhuter, Albert', '2009-10-28', 29, 'https://www.gutenberg.org/ebooks/30353', 'en', 179), +(18923, 'The First 498 Bernoulli Numbers', NULL, '2001-04-01', 37, 'https://www.gutenberg.org/ebooks/2586', 'en', 8487), +(18924, 'Signing the Contract, and What It Cost', 'Finley, Martha', '2015-02-13', 20, 'https://www.gutenberg.org/ebooks/48249', 'en', 50), +(18925, 'Nature Mysticism', 'Mercer, John Edward', '2006-06-09', 41, 'https://www.gutenberg.org/ebooks/18539', 'en', 8488), +(18926, 'The Mythology of the British Islands\nAn Introduction to Celtic Myth, Legend, Poetry, and Romance', 'Squire, Charles', '2017-04-27', 53, 'https://www.gutenberg.org/ebooks/54616', 'en', 3203), +(18927, 'Vixen, Volume I.', 'Braddon, M. E. (Mary Elizabeth)', '2008-08-09', 32, 'https://www.gutenberg.org/ebooks/26236', 'en', 2019), +(18928, 'Extaze: Een Boek van Geluk', 'Couperus, Louis', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12003', 'nl', 8489), +(18929, 'Talks on the study of literature.', 'Bates, Arlo', '2013-05-23', 24, 'https://www.gutenberg.org/ebooks/42773', 'en', 4040), +(18930, '500 Rätsel und Rätselscherze für jung und alt\nEin Bringmichraus für Schul und Haus', 'Frick, Joseph', '2010-02-15', 68, 'https://www.gutenberg.org/ebooks/31281', 'de', 8490), +(18931, 'The Lilac Fairy Book', 'Lang, Andrew', '2002-10-01', 140, 'https://www.gutenberg.org/ebooks/3454', 'en', 1223), +(18932, 'Second Thoughts are Best: Or a Further Improvement of a Late Scheme to Prevent Street Robberies', 'Defoe, Daniel', '2010-05-17', 47, 'https://www.gutenberg.org/ebooks/32404', 'en', 8491), +(18933, 'Pegeen', 'Brainerd, Eleanor Hoyt', '2019-07-17', 156, 'https://www.gutenberg.org/ebooks/59935', 'en', 109), +(18934, 'Without Dogma: A Novel of Modern Poland', 'Sienkiewicz, Henryk', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11686', 'en', 1316), +(18935, 'Increasing Personal Efficiency', 'Conwell, Russell H.', '2011-07-29', 79, 'https://www.gutenberg.org/ebooks/36898', 'en', 5175), +(18936, 'The British Interned in Switzerland', 'Picot, Henry Philip', '2017-12-06', 73, 'https://www.gutenberg.org/ebooks/56141', 'en', 8492), +(18937, 'A Report of the Debates and Proceedings in the Secret Sessions of the Conference Convention\r\nFor Proposing Amendments to the Constitution of the United States, Held at Washington, D.C., in February, A.D. 1861', 'Chittenden, L. E. (Lucius Eugene)', '2008-02-09', 26, 'https://www.gutenberg.org/ebooks/24561', 'en', 8493), +(18938, 'De Dochter van de Zeekapitein: Een Histories Verhaal', 'D\'Arbez', '2018-05-05', 37, 'https://www.gutenberg.org/ebooks/57093', 'nl', 98), +(18939, 'Little Sarah', 'Unknown', '2004-01-01', 26, 'https://www.gutenberg.org/ebooks/10754', 'en', 7051), +(18940, 'Rebecca\'s Promise', 'Sterrett, Frances R. (Frances Roberta)', '2012-06-18', 14, 'https://www.gutenberg.org/ebooks/40024', 'en', 348), +(18941, 'The Scapegoat', 'Caine, Hall, Sir', '2006-02-15', 37, 'https://www.gutenberg.org/ebooks/1303', 'en', 8494), +(18942, 'The Orchid Album, Volume 2\r\nComprising Coloured Figures and Descriptions of New, Rare, and Beautiful Orchidaceous Plants', 'Moore, Thomas', '2019-03-22', 26, 'https://www.gutenberg.org/ebooks/59109', 'en', 6438), +(18943, 'Nanon\nLa bibliothèque précieuse', 'Sand, George', '2005-03-01', 40, 'https://www.gutenberg.org/ebooks/15226', 'fr', 61), +(18944, 'Histoire de la magie', 'Lévi, Éliphas', '2007-04-08', 65, 'https://www.gutenberg.org/ebooks/21013', 'fr', 8495), +(18945, 'The Story of the Pony Express', 'Bradley, Glenn D. (Glenn Danford)', '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/4671', 'en', 8496), +(18946, 'Pappina, the Little Wanderer: A Story of Southern Italy', 'Davis, Katherine Wallace', '2014-05-01', 11, 'https://www.gutenberg.org/ebooks/45556', 'en', 62), +(18947, 'With the Dyaks of Borneo: A Tale of the Head Hunters', 'Brereton, F. S. (Frederick Sadleir)', '2013-12-21', 29, 'https://www.gutenberg.org/ebooks/44484', 'en', 8497), +(18948, 'Marjorie Dean, College Junior', 'Chase, Josephine', '2011-08-23', 13, 'https://www.gutenberg.org/ebooks/37176', 'en', 1655), +(18949, 'Dizionario storico-critico degli scrittori di musica e de\' più celebri artisti, vol. 2\r\nDi tutte le nazioni sì antiche che moderne', 'Bertini, Giuseppe', '2012-09-21', 4, 'https://www.gutenberg.org/ebooks/40818', 'it', 7328), +(18950, 'West Virginia Trees', 'Brooks, A. B. (Alonzo Beecher)', '2016-11-02', 7, 'https://www.gutenberg.org/ebooks/53433', 'en', 8498), +(18951, 'Buzz a Buzz; Or, The Bees', 'Busch, Wilhelm', '2012-02-16', 12, 'https://www.gutenberg.org/ebooks/38902', 'en', 859), +(18952, 'The Flower of the Flock, Volume 3 (of 3)', 'Egan, Pierce', '2018-01-14', 3, 'https://www.gutenberg.org/ebooks/56373', 'en', 61), +(18953, 'The Quadrupeds\' Pic-Nic', 'Anonymous', '2008-06-02', 5, 'https://www.gutenberg.org/ebooks/25681', 'en', 1801), +(18954, 'The Great Round World and What Is Going On In It, Vol. 1, No. 37, July 22, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-15', 16, 'https://www.gutenberg.org/ebooks/15828', 'en', 1), +(18955, 'The Salesman', 'Boyd, Waldo T.', '2010-06-01', 30, 'https://www.gutenberg.org/ebooks/32636', 'en', 8499), +(18956, 'The Patriarchs\nBeing Meditations upon Enoch, Noah, Abraham, Isaac, Jacob, Joseph, Job; The Canticles, Heaven and Earth.', 'Bellett, J. G. (John Gifford)', '2012-07-11', 11, 'https://www.gutenberg.org/ebooks/40216', 'en', 6367), +(18957, 'The Tragedy of Coriolanus', 'Shakespeare, William', '1997-12-01', 26, 'https://www.gutenberg.org/ebooks/1131', 'en', 7282), +(18958, 'Who Are Happiest? and Other Stories', 'Arthur, T. S. (Timothy Shay)', '2008-03-04', 18, 'https://www.gutenberg.org/ebooks/24753', 'en', 195), +(18959, 'The Bequest\nShip\'s Company, Part 6.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/10566', 'en', 72), +(18960, 'Vittoria — Complete', 'Meredith, George', '2004-11-03', 10, 'https://www.gutenberg.org/ebooks/4443', 'en', 2564), +(18961, 'The Childhood of Rome', 'Lamprey, Louise', '2011-05-31', 19, 'https://www.gutenberg.org/ebooks/36296', 'en', 8500), +(18962, 'Harper\'s New Monthly Magazine, Vol. V, No. XXV, June, 1852', 'Various', '2014-05-26', 40, 'https://www.gutenberg.org/ebooks/45764', 'en', 4316), +(18963, 'Winnie Childs, the Shop Girl', 'Williamson, A. M. (Alice Muriel)', '2005-02-10', 31, 'https://www.gutenberg.org/ebooks/15014', 'en', 8501), +(18964, 'Conversion des Sauvages qui ont esté baptizés en la Nouvelle France, cette année 1610\r\nAvec un bref recit du voyage du Sieur de Poutrincourt', 'Lescarbot, Marc', '2007-04-27', 17, 'https://www.gutenberg.org/ebooks/21221', 'fr', 992), +(18965, 'The Academic Gregories', 'Stewart, Agnes Grainger', '2016-11-26', 8, 'https://www.gutenberg.org/ebooks/53601', 'en', 8502), +(18966, 'The Nuts: A Christmas Story for my Children and Grandchildren', 'Ebers, Georg', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/5591', 'en', 803), +(18967, 'Four Years in France\r\nor, Narrative of an English Family\'s Residence there during that Period; Preceded by some Account of the Conversion of the Author to the Catholic Faith', 'Beste, Henry Digby', '2011-09-07', 8, 'https://www.gutenberg.org/ebooks/37344', 'en', 1117), +(18968, 'Biographical Essays', 'De Quincey, Thomas', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6314', 'en', 8503), +(18969, 'Deutsche Lebensbilder', 'Treitschke, Heinrich von', '2014-10-03', 20, 'https://www.gutenberg.org/ebooks/47033', 'de', 8504), +(18970, 'Rosemary: A Christmas story', 'Williamson, A. M. (Alice Muriel)', '2006-02-10', 24, 'https://www.gutenberg.org/ebooks/17743', 'en', 6336), +(18971, 'Atala: Seikkailu aarniometsässä', 'Chateaubriand, François-René, vicomte de', '2015-09-30', 8, 'https://www.gutenberg.org/ebooks/50084', 'fi', 1850), +(18972, 'Quadrupeds, What They Are and Where Found: A Book of Zoology for Boys', 'Reid, Mayne', '2007-11-21', 42, 'https://www.gutenberg.org/ebooks/23576', 'en', 8505), +(18973, 'The History of the Island of Dominica\r\nContaining a Description of Its Situation, Extent, Climate, Mountains, Rivers, Natural Productions, &c. &c.', 'Atwood, Thomas', '2015-05-02', 12, 'https://www.gutenberg.org/ebooks/48847', 'en', 8506), +(18974, '»1906«. Der Zusammenbruch der alten Welt', 'Grautoff, Ferdinand Heinrich', '2015-09-17', 18, 'https://www.gutenberg.org/ebooks/49995', 'de', 8507), +(18975, 'Delphine Gay, Mme de Girardin, dans ses rapports avec Lamartine, Victor Hugo, Balzac, Rachel, Jules Sandeau, Dumas, Eugène Sue et George Sand (documents inédits)', 'Séché, Léon', '2016-02-08', 2, 'https://www.gutenberg.org/ebooks/51156', 'fr', 8508), +(18976, 'Fifth Avenue', 'Maurice, Arthur Bartlett', '2005-09-15', 32, 'https://www.gutenberg.org/ebooks/16691', 'en', 8509), +(18977, 'A History of the French Novel, Vol. 1\nFrom the Beginning to 1800', 'Saintsbury, George', '2008-10-08', 24, 'https://www.gutenberg.org/ebooks/26838', 'en', 8510), +(18978, 'A Review of the Middle American Tree Frogs of the Genus Ptychohyla', 'Duellman, William Edward', '2011-02-26', 15, 'https://www.gutenberg.org/ebooks/35413', 'en', 8511), +(18979, 'Lotta Schmidt, and Other Stories', 'Trollope, Anthony', '2017-03-25', 22, 'https://www.gutenberg.org/ebooks/54424', 'en', 409), +(18980, 'A agua profunda', 'Bourget, Paul', '2009-10-02', 9, 'https://www.gutenberg.org/ebooks/30161', 'pt', 61), +(18981, 'La Experiencia Abolicionista de Puerto Rico', 'Sociedad Abolicionista Española', '2013-08-17', 26, 'https://www.gutenberg.org/ebooks/43493', 'es', 8512), +(18982, 'Ricordi del 1870-71', 'De Amicis, Edmondo', '2013-04-15', 21, 'https://www.gutenberg.org/ebooks/42541', 'it', 8513), +(18983, 'The History of Woman Suffrage, Volume IV', NULL, '2009-08-31', 45, 'https://www.gutenberg.org/ebooks/29870', 'en', 8514), +(18984, 'Andreas Hofer: An Historical Novel', 'Mühlbach, L. (Luise)', '2003-01-01', 11, 'https://www.gutenberg.org/ebooks/3666', 'en', 2165), +(18985, 'The Philippine Islands, 1493-1898 — Volume 27 of 55\r\n1636-37\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2008-07-08', 42, 'https://www.gutenberg.org/ebooks/26004', 'en', 8515), +(18986, 'Punch, or the London Charivari, Volume 156, May 21, 1919', 'Various', '2004-05-01', 8, 'https://www.gutenberg.org/ebooks/12231', 'en', 134), +(18987, 'The White Virgin', 'Fenn, George Manville', '2012-09-05', 13, 'https://www.gutenberg.org/ebooks/40672', 'en', 61), +(18988, 'Love\'s Usuries', 'Creswicke, Louis', '2010-08-08', 17, 'https://www.gutenberg.org/ebooks/33380', 'en', 61), +(18989, 'South Africa and the Transvaal War, Vol. 4 (of 8)\r\nFrom Lord Roberts\' Entry into the Free State to the Battle of Karree', 'Creswicke, Louis', '2012-02-04', 15, 'https://www.gutenberg.org/ebooks/38768', 'en', 2724), +(18990, 'A Passion in the Desert', 'Balzac, Honoré de', '1998-12-01', 67, 'https://www.gutenberg.org/ebooks/1555', 'en', 8516), +(18991, 'Capitola\'s Peril\nA Sequel to \'The Hidden Hand\'', 'Southworth, Emma Dorothy Eliza Nevitte', '2008-01-17', 17, 'https://www.gutenberg.org/ebooks/24337', 'en', 8517), +(18992, 'The Czar\'s Spy: The Mystery of a Silent Love', 'Le Queux, William', '2003-11-01', 46, 'https://www.gutenberg.org/ebooks/10102', 'en', 1319), +(18993, 'Members of the Family', 'Wister, Owen', '2018-03-10', 26, 'https://www.gutenberg.org/ebooks/56717', 'en', 774), +(18994, 'The Stages in the Social History of Capitalism', 'Pirenne, Henri', '2010-05-04', 18, 'https://www.gutenberg.org/ebooks/32252', 'en', 6394), +(18995, 'Chambers\'s Edinburgh Journal, No. 445\nVolume 18, New Series, July 10, 1852', 'Various', '2007-03-11', 4, 'https://www.gutenberg.org/ebooks/20797', 'en', 18), +(18996, 'Agricola', 'Tacitus, Cornelius', '2016-10-12', 6, 'https://www.gutenberg.org/ebooks/53265', 'fi', 3707), +(18997, 'La vita in Palermo cento e più anni fa, Volume 2', 'Pitrè, Giuseppe', '2011-10-11', 12, 'https://www.gutenberg.org/ebooks/37720', 'it', 8518), +(18998, 'Little Songs', 'Follen, Eliza Lee Cabot', '2003-05-01', 11, 'https://www.gutenberg.org/ebooks/4027', 'en', 1209), +(18999, 'Once Upon a Time, and Other Child-Verses', 'Freeman, Mary Eleanor Wilkins', '2014-04-01', 10, 'https://www.gutenberg.org/ebooks/45300', 'en', 859), +(19000, 'Inez: A Tale of the Alamo', 'Evans, Augusta J. (Augusta Jane)', '2005-03-26', 21, 'https://www.gutenberg.org/ebooks/15470', 'en', 8519), +(19001, 'The Romance of Old New England Rooftrees', 'Crawford, Mary Caroline', '2007-05-30', 16, 'https://www.gutenberg.org/ebooks/21645', 'en', 8520), +(19002, 'O descobrimento da Australia pelos portuguezes em 1601', 'Major, Richard Henry', '2009-07-17', 23, 'https://www.gutenberg.org/ebooks/29428', 'pt', 2471), +(19003, 'Angel Unawares: A Story of Christmas Eve', 'Williamson, C. N. (Charles Norris)', '2013-06-12', 26, 'https://www.gutenberg.org/ebooks/42919', 'en', 585), +(19004, 'In the Land of Cave and Cliff Dwellers', 'Schwatka, Frederick', '2016-03-22', 34, 'https://www.gutenberg.org/ebooks/51532', 'en', 8521), +(19005, 'The Chronicles of Crime or The New Newgate Calendar. v. 1/2\r\nbeing a series of memoirs and anecdotes of notorious characters who have outraged the laws of Great Britain from the earliest period to 1841.', 'Pelham, Camden', '2014-08-14', 38, 'https://www.gutenberg.org/ebooks/46585', 'en', 8522), +(19006, 'Girl Alone', 'Austin, Anne', '2011-01-25', 27, 'https://www.gutenberg.org/ebooks/35077', 'en', 61), +(19007, 'The Thirty Years War — Volume 01', 'Schiller, Friedrich', '2004-10-01', 8, 'https://www.gutenberg.org/ebooks/6770', 'en', 4328), +(19008, 'Jaros Hygienic Wear: The therapeutic and prophylactic application.', 'Jaros, I.', '2014-11-25', 14, 'https://www.gutenberg.org/ebooks/47457', 'en', 8523), +(19009, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 7 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 47, 'https://www.gutenberg.org/ebooks/17327', 'en', 7793), +(19010, 'The Kitchen Cat, and other Tales', 'Walton, Amy', '2007-10-20', 14, 'https://www.gutenberg.org/ebooks/23112', 'en', 651), +(19011, 'Armorel of Lyonesse: A Romance of To-day', 'Besant, Walter', '2013-02-18', 15, 'https://www.gutenberg.org/ebooks/42125', 'en', 1079), +(19012, 'Moby Thesaurus List', 'Ward, Grady', '2002-05-01', 110, 'https://www.gutenberg.org/ebooks/3202', 'en', 7557), +(19013, 'English Fairy Tales', 'Jacobs, Joseph', '2008-09-01', 4, 'https://www.gutenberg.org/ebooks/26460', 'en', 3600), +(19014, 'The Boy Mechanic, Volume 1: 700 Things for Boys to Do', NULL, '2004-06-01', 193, 'https://www.gutenberg.org/ebooks/12655', 'en', 8524), +(19015, 'A History of North American Birds; Land Birds; Vol. 2 of 3', 'Baird, Spencer Fullerton', '2017-07-24', 8, 'https://www.gutenberg.org/ebooks/55192', 'en', 1333), +(19016, 'Graham\'s Magazine, Vol. XXXVII, No. 6, December 1850', 'Various', '2017-01-22', 15, 'https://www.gutenberg.org/ebooks/54040', 'en', 380), +(19017, 'Taormina\r\nDe Aarde en haar Volken, 1906', 'Lugt, Johanna G.', '2004-10-18', 10, 'https://www.gutenberg.org/ebooks/13787', 'nl', 8525), +(19018, 'The Count of Nideck\nadapted from the French of Erckmann-Chartrian', 'Fiske, Ralph Browning', '2011-01-18', 11, 'https://www.gutenberg.org/ebooks/34999', 'en', 61), +(19019, 'Jane Shore\nA Tragedy', 'Rowe, Nicholas', '2009-11-20', 53, 'https://www.gutenberg.org/ebooks/30505', 'en', 8526), +(19020, 'The Chimes\r\nA Goblin Story of Some Bells That Rang an Old Year out and a New Year In', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9738', 'en', 3397), +(19021, 'Dryden\'s Palamon and Arcite', 'Dryden, John', '2005-02-01', 38, 'https://www.gutenberg.org/ebooks/7490', 'en', 466), +(19022, 'The World and Its People, Book VII: Views in Africa', 'Badlam, Anna B.', '2011-02-12', 39, 'https://www.gutenberg.org/ebooks/35245', 'en', 708), +(19023, 'Gift Card Designing', 'Lemos, Pedro J. (Pedro Joseph)', '2016-04-08', 17, 'https://www.gutenberg.org/ebooks/51700', 'en', 8527), +(19024, 'Fruits of Toil in the London Missionary Society', NULL, '2005-11-20', 19, 'https://www.gutenberg.org/ebooks/17115', 'en', 8528), +(19025, 'The Deaf\r\nTheir Position in Society and the Provision for Their Education in the United States', 'Best, Harry', '2007-11-04', 9, 'https://www.gutenberg.org/ebooks/23320', 'en', 8529), +(19026, 'Frankenstein', 'Shelley, Mary Wollstonecraft', '2004-09-01', 141, 'https://www.gutenberg.org/ebooks/6542', 'en', 461), +(19027, 'A Short History of Germany', 'Parmele, Mary Platt', '2011-02-13', 31, 'https://www.gutenberg.org/ebooks/34397', 'en', 1921), +(19028, 'The Craft of Fiction', 'Lubbock, Percy', '2006-08-01', 70, 'https://www.gutenberg.org/ebooks/18961', 'en', 7648), +(19029, 'Viaggi di Ali Bey el-Abbassi in Africa ed in Asia, v. 2', 'Ali Bey', '2014-12-14', 26, 'https://www.gutenberg.org/ebooks/47665', 'it', 6541), +(19030, 'Standards of Life and Service', 'Howard, Thomas Henry', '2008-09-18', 20, 'https://www.gutenberg.org/ebooks/26652', 'en', 8530), +(19031, 'Punch, or the London Charivari, Volume 99, October 11, 1890', 'Various', '2004-05-01', 6, 'https://www.gutenberg.org/ebooks/12467', 'en', 134), +(19032, 'Industrial Arts Design\nA Textbook of Practical Methods for Students, Teachers, and Craftsmen', 'Varnum, William H. (William Harrison)', '2013-03-12', 33, 'https://www.gutenberg.org/ebooks/42317', 'en', 6162), +(19033, 'The Tavern Knight', 'Sabatini, Rafael', '2002-01-01', 60, 'https://www.gutenberg.org/ebooks/3030', 'en', 98), +(19034, 'The Life of Admiral Viscount Exmouth', 'Osler, Edward', '2006-03-05', 27, 'https://www.gutenberg.org/ebooks/17929', 'en', 8531), +(19035, 'My Schools and Schoolmasters; Or, The Story of My Education', 'Miller, Hugh', '2009-12-22', 20, 'https://www.gutenberg.org/ebooks/30737', 'en', 8532), +(19036, 'The Triumph of Death', 'D\'Annunzio, Gabriele', '2017-03-02', 38, 'https://www.gutenberg.org/ebooks/54272', 'en', 16), +(19037, 'Wandering in Northern China', NULL, '2019-08-03', 1052, 'https://www.gutenberg.org/ebooks/60047', 'en', 2773), +(19038, 'Treasure Island', 'Stevenson, Robert Louis', '2009-01-12', 315, 'https://www.gutenberg.org/ebooks/27780', 'en', 324), +(19039, 'For the Master\'s Sake: A Story of the Days of Queen Mary', 'Holt, Emily Sarah', '2008-01-01', 8, 'https://www.gutenberg.org/ebooks/24105', 'en', 98), +(19040, 'Fruitfulness', 'Zola, Émile', '2003-11-01', 34, 'https://www.gutenberg.org/ebooks/10330', 'en', 58), +(19041, 'A Day with Browning', NULL, '2012-08-08', 5, 'https://www.gutenberg.org/ebooks/40440', 'en', 7835), +(19042, 'Confessions Of Con Cregan, the Irish Gil Blas', 'Lever, Charles James', '2010-04-19', 31, 'https://www.gutenberg.org/ebooks/32060', 'en', 669), +(19043, 'The Airship \"Golden Hind\"', 'Westerman, Percy F. (Percy Francis)', '2012-04-19', 143, 'https://www.gutenberg.org/ebooks/39488', 'en', 3291), +(19044, 'The Laughing Mill, and Other Stories', 'Hawthorne, Julian', '2012-12-10', 18, 'https://www.gutenberg.org/ebooks/41592', 'en', 50), +(19045, 'Délvirágok; Oceánia', 'Jókai, Mór', '2018-02-08', 4, 'https://www.gutenberg.org/ebooks/56525', 'hu', 234), +(19046, 'The Nursery, August 1873, Vol. XIV. No. 2', 'Various', '2008-03-29', 22, 'https://www.gutenberg.org/ebooks/24939', 'en', 4641), +(19047, 'A Revision of Snakes of the Genus Conophis (Family Colubridae, from Middle America)', 'Wellman, John', '2011-09-23', 17, 'https://www.gutenberg.org/ebooks/37512', 'en', 8533), +(19048, 'Contes du jour et de la nuit', 'Maupassant, Guy de', '2005-01-24', 113, 'https://www.gutenberg.org/ebooks/14790', 'fr', 100), +(19049, 'Furniture of the Olden Time', 'Morse, Frances Clary', '2016-09-15', 15, 'https://www.gutenberg.org/ebooks/53057', 'en', 8534), +(19050, 'Die deutsche Karikatur im 19. Jahrhundert', 'Hermann, Georg', '2016-05-30', 21, 'https://www.gutenberg.org/ebooks/52185', 'de', 8535), +(19051, 'Mémoires de Mme la marquise de La Rochejaquelein\nécrits par elle-même', 'La Rochejaquelein, Marie-Louise-Victoire marquise de', '2005-04-17', 44, 'https://www.gutenberg.org/ebooks/15642', 'fr', 8536), +(19052, 'Mark Seaworth', 'Kingston, William Henry Giles', '2007-05-15', 14, 'https://www.gutenberg.org/ebooks/21477', 'en', 8537), +(19053, 'Oak Openings', 'Cooper, James Fenimore', '2003-07-01', 39, 'https://www.gutenberg.org/ebooks/4215', 'en', 98), +(19054, 'Studies of Travel: Greece', 'Freeman, Edward A. (Edward Augustus)', '2014-03-14', 13, 'https://www.gutenberg.org/ebooks/45132', 'en', 4713), +(19055, 'Demonology and Devil-lore', 'Conway, Moncure Daniel', '2012-09-06', 685, 'https://www.gutenberg.org/ebooks/40686', 'en', 75), +(19056, 'Wake (First 25,000 words)', 'Sawyer, Robert J.', '2010-08-08', 23, 'https://www.gutenberg.org/ebooks/33374', 'en', 7580), +(19057, 'The Power-House', 'Buchan, John', '2018-08-03', 66, 'https://www.gutenberg.org/ebooks/57631', 'en', 128), +(19058, 'Max Havelaar\nOf de koffiveilingen der Nederlandsche Handelsmaatschappy', 'Multatuli', '2004-02-01', 221, 'https://www.gutenberg.org/ebooks/11024', 'nl', 8538), +(19059, 'Il processo e l\'assoluzione di \"Mafarka il Futurista\"', 'Marinetti, F. T.', '2008-04-28', 46, 'https://www.gutenberg.org/ebooks/25211', 'it', 8539), +(19060, 'Jimmy Quixote: A Novel', 'Gallon, Tom', '2013-01-01', 18, 'https://www.gutenberg.org/ebooks/41754', 'en', 95), +(19061, 'Carpentry for Boys\r\nIn a Simple Language, Including Chapters on Drawing, Laying Out Work, Designing and Architecture With 250 Original Illustrations', 'Zerbe, James Slough', '2007-03-07', 129, 'https://www.gutenberg.org/ebooks/20763', 'en', 8540), +(19062, '\"Huone\" ja \"Timon\"', 'Lucian, of Samosata', '2016-10-16', 11, 'https://www.gutenberg.org/ebooks/53291', 'fi', 8541), +(19063, 'An Encounter in Atlanta', 'Howdershelt, Ed', '2005-01-01', 27, 'https://www.gutenberg.org/ebooks/14556', 'en', 26), +(19064, 'A Parisian Sultana, Vol. 3 (of 3)', 'Belot, Adolphe', '2019-01-12', 6, 'https://www.gutenberg.org/ebooks/58679', 'en', 560), +(19065, 'The Abandoned Farmers\nHis Humorous Account of a Retreat from the City to the Farm', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2013-11-18', 21, 'https://www.gutenberg.org/ebooks/44226', 'en', 8542), +(19066, 'Lives of the English Poets : Prior, Congreve, Blackmore, Pope', 'Johnson, Samuel', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/5101', 'en', 7153), +(19067, 'U.S. Copyright Renewals, 1958 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11818', 'en', 4170), +(19068, 'The Ruby Sword: A Romance of Baluchistan', 'Mitford, Bertram', '2011-07-03', 4, 'https://www.gutenberg.org/ebooks/36606', 'en', 8543), +(19069, 'The Care and Feeding of Children\nA Catechism for the Use of Mothers and Children\'s Nurses', 'Holt, L. Emmett (Luther Emmett)', '2005-03-27', 54, 'https://www.gutenberg.org/ebooks/15484', 'en', 4690), +(19070, 'The White Prophet, Volume 2 (of 2)', 'Caine, Hall, Sir', '2016-06-15', 5, 'https://www.gutenberg.org/ebooks/52343', 'en', 2387), +(19071, 'A Narrative of some of the Lord\'s Dealings with George Müller. Part 2', 'Müller, George', '2007-07-10', 27, 'https://www.gutenberg.org/ebooks/22034', 'en', 5230), +(19072, 'Parnaso Filipino\r\nAntología de Poetas del Archipelago Magellanico', 'Martín de la Cámara, Eduardo', '2005-07-04', 21, 'https://www.gutenberg.org/ebooks/16201', 'es', 8544), +(19073, 'Saunterings in and about London', 'Schlesinger, Max', '2014-08-12', 12, 'https://www.gutenberg.org/ebooks/46571', 'en', 856), +(19074, 'Swamp Island', 'Wirt, Mildred A. (Mildred Augustine)', '2011-01-26', 30, 'https://www.gutenberg.org/ebooks/35083', 'en', 454), +(19075, 'Kenelm Chillingly — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7656', 'en', 137), +(19076, 'The Clock and the Key', 'Vesey, A. H. (Arthur Henry)', '2017-06-11', 7, 'https://www.gutenberg.org/ebooks/54888', 'en', 2295), +(19077, 'Wilson\'s Tales of the Borders and of Scotland, Volume 14', NULL, '2010-10-27', 8, 'https://www.gutenberg.org/ebooks/34151', 'en', 3672), +(19078, 'Love and Intrigue: A Tragedy', 'Schiller, Friedrich', '2004-12-08', 58, 'https://www.gutenberg.org/ebooks/6784', 'en', 493), +(19079, 'Right End Emerson', 'Barbour, Ralph Henry', '2015-11-09', 8, 'https://www.gutenberg.org/ebooks/50414', 'en', 2154), +(19080, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 712\nAugust 18, 1877', 'Various', '2015-07-28', 4, 'https://www.gutenberg.org/ebooks/49539', 'en', 18), +(19081, 'The Gray Madam\n1899', 'Green, Anna Katharine', '2007-09-29', 16, 'https://www.gutenberg.org/ebooks/22808', 'en', 128), +(19082, 'In-Door Gardening for Every Week in the Year\r\nShowing the Most Successful Treatment for all Plants Cultivated in the Greenhouse, Conservatory, Stove, Pit, Orchid, and Forcing-house', 'Keane, William, gardener', '2010-02-27', 39, 'https://www.gutenberg.org/ebooks/31423', 'en', 8545), +(19083, 'Vera; Or, The Nihilists', 'Wilde, Oscar', '2008-08-30', 48, 'https://www.gutenberg.org/ebooks/26494', 'en', 1088), +(19084, 'The Unjust Steward; or, The Minister\'s Debt', 'Oliphant, Mrs. (Margaret)', '2017-07-21', 18, 'https://www.gutenberg.org/ebooks/55166', 'en', 2389), +(19085, 'La vie littéraire. Première série', 'France, Anatole', '2006-09-11', 12, 'https://www.gutenberg.org/ebooks/19249', 'fr', 1765), +(19086, 'Ang Mestisa\nIkalawang Bahagi (Second Volume)', 'Valmonte, Engracio L.', '2004-10-17', 23, 'https://www.gutenberg.org/ebooks/13773', 'tl', 61), +(19087, 'Különféle magyarok meg egyéb népek', 'Tömörkény, István', '2008-12-16', 18, 'https://www.gutenberg.org/ebooks/27546', 'hu', 5299), +(19088, 'A House to Let', 'Dickens, Charles', '2000-09-01', 113, 'https://www.gutenberg.org/ebooks/2324', 'en', 137), +(19089, 'La Mère de Dieu', 'Sacher-Masoch, Leopold, Ritter von', '2013-06-21', 33, 'https://www.gutenberg.org/ebooks/43003', 'fr', 61), +(19090, 'The Methods of Ethics', 'Sidgwick, Henry', '2014-09-01', 85, 'https://www.gutenberg.org/ebooks/46743', 'en', 680), +(19091, 'Don Francisco de Quevedo: Drama en Cuatro Actos', 'Sanz, Eulogio Florentino', '2006-11-17', 18, 'https://www.gutenberg.org/ebooks/19847', 'es', 8546), +(19092, 'The Adventures of Sally', 'Wodehouse, P. G. (Pelham Grenville)', '2005-02-01', 239, 'https://www.gutenberg.org/ebooks/7464', 'en', 1380), +(19093, 'An Old Meerschaum\nFrom Coals Of Fire And Other Stories, Volume II. (of III.)', 'Murray, David Christie', '2007-08-01', 10, 'https://www.gutenberg.org/ebooks/22206', 'en', 61), +(19094, 'The Atlantic Monthly, Volume 12, No. 70, August, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-06-09', 27, 'https://www.gutenberg.org/ebooks/16033', 'en', 1227), +(19095, 'Manual of Oriental Antiquities', 'Babelon, Ernest', '2015-12-05', 20, 'https://www.gutenberg.org/ebooks/50626', 'en', 8547), +(19096, 'L\'île des rêves: Aventures d\'un Anglais qui s\'ennuie', 'Ulbach, Louis', '2006-08-06', 12, 'https://www.gutenberg.org/ebooks/18995', 'fr', 687), +(19097, 'L\'Illustration, No. 3241, 8 Avril 1905', 'Various', '2010-11-18', 5, 'https://www.gutenberg.org/ebooks/34363', 'fr', 150), +(19098, 'Narrative of the Captivity and Restoration of Mrs. Mary Rowlandson', 'Rowlandson, Mary White', '1997-03-01', 916, 'https://www.gutenberg.org/ebooks/851', 'en', 8548), +(19099, 'Canadian Scenery, Volume 2 (of 2)', 'Willis, Nathaniel Parker', '2014-12-17', 15, 'https://www.gutenberg.org/ebooks/47691', 'en', 2655), +(19100, 'What Does History Teach?\nTwo Edinburgh Lectures', 'Blackie, John Stuart', '2017-08-14', 14, 'https://www.gutenberg.org/ebooks/55354', 'en', 8549), +(19101, 'How John Became a Man: Life Story of a Motherless Boy', 'Byrum, Isabel C. (Isabel Coston)', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12493', 'en', 470), +(19102, 'Robots of the World! Arise!', 'Wolf, Mari', '2010-03-12', 55, 'https://www.gutenberg.org/ebooks/31611', 'en', 2169), +(19103, 'History of Friedrich II of Prussia — Volume 16', 'Carlyle, Thomas', '2008-06-16', 36, 'https://www.gutenberg.org/ebooks/2116', 'en', 3120), +(19104, 'Legends of the Bastille', 'Funck-Brentano, Frantz', '2013-07-16', 14, 'https://www.gutenberg.org/ebooks/43231', 'en', 8550), +(19105, 'The Collected Works of Ambrose Bierce, Volume 1', 'Bierce, Ambrose', '2004-09-27', 124, 'https://www.gutenberg.org/ebooks/13541', 'en', 61), +(19106, 'The life and times of George Villiers, duke of Buckingham, Volume 1 (of 3)\nFrom original and authentic sources', 'Thomson, A. T., Mrs.', '2017-03-06', 6, 'https://www.gutenberg.org/ebooks/54286', 'en', 7706), +(19107, 'Fils d\'émigré', 'Daudet, Ernest', '2009-01-11', 37, 'https://www.gutenberg.org/ebooks/27774', 'fr', 298), +(19108, 'Wild Margaret', 'Garvice, Charles', '2014-02-04', 18, 'https://www.gutenberg.org/ebooks/44828', 'en', 61), +(19109, 'The Letters of a Portuguese Nun', 'Guilleragues, Gabriel Joseph de Lavergne, vicomte de', '2018-06-26', 63, 'https://www.gutenberg.org/ebooks/57403', 'fr', 8551), +(19110, 'Othello', 'Shakespeare, William', '1999-06-01', 67, 'https://www.gutenberg.org/ebooks/1793', 'en', 8552), +(19111, 'Careers of Danger and Daring', 'Moffett, Cleveland', '2010-07-13', 23, 'https://www.gutenberg.org/ebooks/33146', 'en', 8553), +(19112, 'The Patchwork Girl of Oz', 'Baum, L. Frank (Lyman Frank)', '2010-04-22', 84, 'https://www.gutenberg.org/ebooks/32094', 'en', 1430), +(19113, 'Curiosities of Superstition, and Sketches of Some Unrevealed Religions', 'Adams, W. H. Davenport (William Henry Davenport)', '2012-12-05', 84, 'https://www.gutenberg.org/ebooks/41566', 'en', 1444), +(19114, 'The Happy Venture', 'Price, Edith Ballinger', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11216', 'en', 31), +(19115, 'The Biography of a Grizzly', 'Seton, Ernest Thompson', '2008-04-08', 52, 'https://www.gutenberg.org/ebooks/25023', 'en', 8554), +(19116, 'Antique Works of Art from Benin\nCollected by Lieutenant-General Pitt Rivers', 'Pitt-Rivers, Augustus Henry Lane-Fox', '2013-10-22', 16, 'https://www.gutenberg.org/ebooks/44014', 'en', 8555), +(19117, 'Every Man in His Humor', 'Jonson, Ben', '2004-03-01', 126, 'https://www.gutenberg.org/ebooks/5333', 'en', 3416), +(19118, 'The White Invaders', 'Cummings, Ray', '2007-02-10', 53, 'https://www.gutenberg.org/ebooks/20551', 'en', 26), +(19119, 'The Grey Book\r\nA collection of protests against anti-semitism and the persecution of Jews issued by non-Roman Catholic churches and church leaders during Hitlers rule', 'Snoek, Johan M.', '2005-01-23', 60, 'https://www.gutenberg.org/ebooks/14764', 'en', 8556), +(19120, 'Sturz der Verdammten: Gedichte', 'Urzidil, Johannes', '2016-05-28', 12, 'https://www.gutenberg.org/ebooks/52171', 'de', 8), +(19121, 'Farmhouse Plans', 'Ashby, Wallace', '2019-05-25', 78, 'https://www.gutenberg.org/ebooks/59599', 'en', 8557), +(19122, 'The Wanderers; Or, Adventures in the Wilds of Trinidad and Orinoco', 'Kingston, William Henry Giles', '2007-05-15', 19, 'https://www.gutenberg.org/ebooks/21483', 'en', 3242), +(19123, 'Publications of the Society for Promoting Christian Knowledge [1902 Catalog]', 'Society for Promoting Christian Knowledge (Great Britain)', '2011-06-15', 2, 'https://www.gutenberg.org/ebooks/36434', 'en', 2663), +(19124, 'Ludwig van Beethoven', 'Sanborn, Pitts', '2015-10-17', 9, 'https://www.gutenberg.org/ebooks/50242', 'en', 1807), +(19125, 'English Embroidered Bookbindings', 'Davenport, Cyril', '2006-01-23', 67, 'https://www.gutenberg.org/ebooks/17585', 'en', 8558), +(19126, 'Le roi du Klondike', 'Auzias-Turenne, Raymond', '2009-03-19', 18, 'https://www.gutenberg.org/ebooks/28358', 'fr', 4264), +(19127, 'Muistelmia ja matkakuvia', 'Aho, Juhani', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/13919', 'fi', 20), +(19128, 'Metsä-kukkia: Runoa ja Proosaa', 'Mäkinen, Antti', '2010-12-20', 20, 'https://www.gutenberg.org/ebooks/34707', 'fi', 6994), +(19129, 'The Cherries of New York', 'Hedrick, U. P.', '2014-07-19', 14, 'https://www.gutenberg.org/ebooks/46327', 'en', 8559), +(19130, 'Kalevala', NULL, '2004-11-01', 153, 'https://www.gutenberg.org/ebooks/7000', 'fi', 1171), +(19131, 'The Mummy\'s Foot', 'Gautier, Théophile', '2007-09-18', 65, 'https://www.gutenberg.org/ebooks/22662', 'en', 461), +(19132, 'Queechy', 'Warner, Susan', '2005-09-01', 34, 'https://www.gutenberg.org/ebooks/8874', 'en', 195), +(19133, 'All Around the Moon', 'Verne, Jules', '2005-08-06', 170, 'https://www.gutenberg.org/ebooks/16457', 'en', 26), +(19134, 'Sixth annual report of the Bureau of ethnology. (1888 N 06 / 1884-1885)', NULL, '2016-03-08', 16, 'https://www.gutenberg.org/ebooks/51390', 'en', 8560), +(19135, 'On the Decay of the Art of Lying', 'Twain, Mark', '2004-09-15', 211, 'https://www.gutenberg.org/ebooks/2572', 'en', 8561), +(19136, 'In Darkest Africa, Vol. 2; or, The Quest, Rescue, and Retreat of Emin, Governor of Equatoria', 'Stanley, Henry M. (Henry Morton)', '2013-09-06', 29, 'https://www.gutenberg.org/ebooks/43655', 'en', 7738), +(19137, 'Deer Godchild', 'Serrell, Edith', '2004-08-06', 12, 'https://www.gutenberg.org/ebooks/13125', 'en', 8562), +(19138, 'Poems on various subjects, religious and moral', 'Wheatley, Phillis', '1996-01-01', 182, 'https://www.gutenberg.org/ebooks/409', 'en', 8563), +(19139, 'O Oraculo do Passado, do presente e do Futuro (2/7)\r\nParte Segunda: O oraculo das Salas', 'Serrano, Bento', '2008-11-22', 11, 'https://www.gutenberg.org/ebooks/27310', 'pt', 185), +(19140, 'Joe Wayring at Home; or, The Adventures of a Fly-Rod', 'Castlemon, Harry', '2017-10-11', 20, 'https://www.gutenberg.org/ebooks/55730', 'en', 3), +(19141, 'Notes and Queries, Number 172, February 12, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 10, 'https://www.gutenberg.org/ebooks/42787', 'en', 105), +(19142, 'The Bible, King James version, Book 48: Galatians', 'Anonymous', '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/8048', 'en', 7339), +(19143, 'Letters to Eugenia; Or, A Preservative Against Religious Prejudices', 'Holbach, Paul Henri Thiry, baron d\'', '2010-02-14', 24, 'https://www.gutenberg.org/ebooks/31275', 'en', 1759), +(19144, 'Mr. Marx\'s Secret', 'Oppenheim, E. Phillips (Edward Phillips)', '2012-02-29', 114, 'https://www.gutenberg.org/ebooks/39018', 'en', 61), +(19145, 'The King\'s Threshold; and On Baile\'s Strand', 'Yeats, W. B. (William Butler)', '2012-10-18', 38, 'https://www.gutenberg.org/ebooks/41102', 'en', 5104), +(19146, 'A Short History of Women\'s Rights\r\nFrom the Days of Augustus to the Present Time. with Special Reference to England and the United States. Second Edition Revised, With Additions.', 'Hecker, Eugene A. (Eugene Arthur)', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11672', 'en', 7165), +(19147, 'Mysticism and Logic and Other Essays', 'Russell, Bertrand', '2008-05-12', 418, 'https://www.gutenberg.org/ebooks/25447', 'en', 814), +(19148, 'Cobb\'s Bill-of-Fare', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2008-02-13', 18, 'https://www.gutenberg.org/ebooks/24595', 'en', 20), +(19149, 'Miles Standish, the Puritan Captain', 'Abbott, John S. C. (John Stevens Cabot)', '2018-04-28', 23, 'https://www.gutenberg.org/ebooks/57067', 'en', 8564), +(19150, 'Under the Tree', 'Roberts, Elizabeth Madox', '2007-03-26', 27, 'https://www.gutenberg.org/ebooks/20909', 'en', 1209), +(19151, 'Little Frankie and His Cousin', 'Leslie, Madeline', '2010-08-24', 13, 'https://www.gutenberg.org/ebooks/33522', 'en', 8565), +(19152, 'Cartoons on the War', 'Robinson, Boardman', '2019-02-03', 21, 'https://www.gutenberg.org/ebooks/58813', 'en', 5749), +(19153, 'The White Elephant, and Other Tales From India', 'Faulkner, Georgene', '2016-07-07', 14, 'https://www.gutenberg.org/ebooks/52515', 'en', 8566), +(19154, 'Miss Dividends: A Novel', 'Gunter, Archibald Clavering', '2012-05-27', 12, 'https://www.gutenberg.org/ebooks/39824', 'en', 1071), +(19155, 'Rodney Stone', 'Doyle, Arthur Conan', '2011-05-07', 10, 'https://www.gutenberg.org/ebooks/36050', 'en', 4171), +(19156, 'Ornithological Biography, Volume 1 (of 5)\nAn Account of the Habits of the Birds of the United States of America', 'Audubon, John James', '2018-04-16', 14, 'https://www.gutenberg.org/ebooks/56989', 'en', 1333), +(19157, 'After the Rain : how the West lost the East', 'Vaknin, Samuel', '2003-11-01', 71, 'https://www.gutenberg.org/ebooks/4685', 'en', 8567), +(19158, 'Trooper 3809: A Private Soldier of the Third Republic', 'Decle, Lionel', '2013-12-20', 11, 'https://www.gutenberg.org/ebooks/44470', 'en', 5209), +(19159, 'Colorado—The Bright Romance of American History', 'Grable, F. C.', '2011-08-23', 5, 'https://www.gutenberg.org/ebooks/37182', 'en', 8568), +(19160, 'The Maid of Maiden Lane', 'Barr, Amelia E.', '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/5757', 'en', 48), +(19161, 'The Angel of Death', 'Wallin, Johan Olof', '2006-12-20', 19, 'https://www.gutenberg.org/ebooks/20135', 'en', 8), +(19162, 'The Life of Napoleon I (Complete)', 'Rose, J. Holland (John Holland)', '2004-12-08', 54, 'https://www.gutenberg.org/ebooks/14300', 'en', 8569), +(19163, 'Frederick the Great and the Rise of Prussia', 'Reddaway, William Fiddian', '2018-01-17', 23, 'https://www.gutenberg.org/ebooks/56387', 'en', 5033), +(19164, 'Tales of Three Hemispheres', 'Dunsany, Lord', '2004-03-01', 129, 'https://www.gutenberg.org/ebooks/11440', 'en', 580), +(19165, 'Northern Nut Growers Association Report of the Proceedings at the Fourteenth Annual Meeting\nWashington D.C. September 26, 27 and 28 1923', NULL, '2008-06-02', 4, 'https://www.gutenberg.org/ebooks/25675', 'en', 8570), +(19166, 'Mrs. Dorriman: A Novel. Volume 2 of 3', 'Chetwynd, Henry Wayland, Mrs.', '2012-11-09', 14, 'https://www.gutenberg.org/ebooks/41330', 'en', 61), +(19167, 'Comments on the Taxonomy and Geographic Distribution of Some North American Marsupials, Insectivores and Carnivores', 'Kelson, Keith R.', '2010-09-12', 28, 'https://www.gutenberg.org/ebooks/33710', 'en', 5582), +(19168, 'Adventures in Friendship', 'Grayson, David', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/10592', 'en', 1195), +(19169, 'A History of the Trial of Castner Hanway and Others, for Treason, at Philadelphia in November, 1851\nWith an Introduction upon the History of the Slave Question', 'Member of the Philadelphia bar', '2018-06-02', 4, 'https://www.gutenberg.org/ebooks/57255', 'en', 8571), +(19170, 'Νόμοι και Επινομίς, Τόμος Ε', 'Plato', '2011-05-29', 13, 'https://www.gutenberg.org/ebooks/36262', 'el', 5325), +(19171, 'Winged Wheels in France', 'Shoemaker, Michael Myers', '2014-05-27', 13, 'https://www.gutenberg.org/ebooks/45790', 'en', 1117), +(19172, 'Lääkäri vastoin tahtoansa: Kolminäytöksinen komedia', 'Molière', '2016-08-05', 9, 'https://www.gutenberg.org/ebooks/52727', 'fi', 8572), +(19173, 'Kate\'s Ordeal', 'Leslie, Emma', '2007-01-07', 27, 'https://www.gutenberg.org/ebooks/20307', 'en', 195), +(19174, 'The Bay State Monthly — Volume 2, No. 5, February, 1885', 'Various', '2004-11-23', 9, 'https://www.gutenberg.org/ebooks/14132', 'en', 1593), +(19175, 'Kleine deutsche Sprachlehre', 'Bohm, Hermann', '2014-01-11', 47, 'https://www.gutenberg.org/ebooks/44642', 'de', 8573), +(19176, 'Barbara Blomberg — Volume 05', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5565', 'en', 803), +(19177, 'Digby Heathcote: The Early Days of a Country Gentleman\'s Son and Heir', 'Kingston, William Henry Giles', '2010-12-01', 32, 'https://www.gutenberg.org/ebooks/34535', 'en', 195); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(19178, 'Dave Dashaway and His Giant Airship; or, A Marvellous Trip Across the Atlantic', 'Rockwood, Roy', '2015-09-28', 14, 'https://www.gutenberg.org/ebooks/50070', 'en', 8574), +(19179, 'La Mare au Diable', 'Sand, George', '2007-11-21', 63, 'https://www.gutenberg.org/ebooks/23582', 'fr', 8575), +(19180, 'My Mark Twain', 'Howells, William Dean', '2007-09-01', 11, 'https://www.gutenberg.org/ebooks/22450', 'en', 1172), +(19181, 'John Smith\'s Funny Adventures on a Crutch\nOr The Remarkable Peregrinations of a One-legged Soldier after the War', 'Hill, A. F. (Ashbel Fairchild)', '2015-09-14', 13, 'https://www.gutenberg.org/ebooks/49961', 'en', 8576), +(19182, 'Catilina', 'Ibsen, Henrik', '2005-09-06', 29, 'https://www.gutenberg.org/ebooks/16665', 'no', 8577), +(19183, 'Canada in Flanders, Volume II', 'Beaverbrook, Max Aitken, Baron', '2014-06-27', 19, 'https://www.gutenberg.org/ebooks/46115', 'en', 1056), +(19184, 'Romeo und Juliette', 'Shakespeare, William', '2005-01-01', 34, 'https://www.gutenberg.org/ebooks/7232', 'de', 7785), +(19185, 'Door Holland met pen en camera\r\nDe Aarde en haar Volken, 1906', 'Hamön, Lud. Georges', '2004-08-29', 31, 'https://www.gutenberg.org/ebooks/13317', 'nl', 2236), +(19186, '老學庵筆記', 'Lu, You', '2008-11-02', 18, 'https://www.gutenberg.org/ebooks/27122', 'zh', 2525), +(19187, 'More Letters of Charles Darwin — Volume 2\r\nA Record of His Work in a Series of Hitherto Unpublished Letters', 'Darwin, Charles', '2001-07-01', 38, 'https://www.gutenberg.org/ebooks/2740', 'en', 5893), +(19188, 'L\'Illustration, No. 3732, 5 Septembre 1914', 'Various', '2009-10-07', 3, 'https://www.gutenberg.org/ebooks/30195', 'fr', 335), +(19189, 'How Music Developed\nA Critical and Explanatory Account of the Growth of Modern Music', 'Henderson, W. J. (William James)', '2013-08-14', 25, 'https://www.gutenberg.org/ebooks/43467', 'en', 250), +(19190, 'Tharon of Lost Valley', 'Roe, Vingie E. (Vingie Eve)', '2009-05-24', 31, 'https://www.gutenberg.org/ebooks/28956', 'en', 315), +(19191, 'Rogações de Eremita', 'Lima, Jaime de Magalhães', '2009-09-01', 25, 'https://www.gutenberg.org/ebooks/29884', 'pt', 2716), +(19192, 'The House of Life', 'Rossetti, Dante Gabriel', '2003-01-01', 64, 'https://www.gutenberg.org/ebooks/3692', 'en', 532), +(19193, 'Tjensteqvinnans son: En själs utvecklingshistoria', 'Strindberg, August', '2010-01-22', 24, 'https://www.gutenberg.org/ebooks/31047', 'sv', 957), +(19194, 'Totuus', 'Zola, Émile', '2014-09-22', 11, 'https://www.gutenberg.org/ebooks/46929', 'fi', 2118), +(19195, 'In the World', 'Gorky, Maksim', '2017-09-07', 24, 'https://www.gutenberg.org/ebooks/55502', 'en', 6352), +(19196, 'The Willing Horse: A Novel', 'Hay, Ian', '2014-08-09', 15, 'https://www.gutenberg.org/ebooks/46549', 'en', 579), +(19197, 'Kate Meredith, Financier', 'Hyne, Charles John Cutcliffe Wright', '2017-11-14', 10, 'https://www.gutenberg.org/ebooks/55962', 'en', 8578), +(19198, 'Colomba', 'Mérimée, Prosper', '2005-07-07', 19, 'https://www.gutenberg.org/ebooks/16239', 'fr', 1335), +(19199, 'Little Bessie, the Careless Girl, or, Squirrels, Nuts, and Water-Cresses', 'Franklin, Josephine', '2013-09-24', 6, 'https://www.gutenberg.org/ebooks/43807', 'en', 1817), +(19200, 'The Astronomy of the Bible\r\nAn Elementary Commentary on the Astronomical References of Holy Scripture', 'Maunder, E. Walter (Edward Walter)', '2009-04-08', 83, 'https://www.gutenberg.org/ebooks/28536', 'en', 7884), +(19201, 'Έργα Ποιήματα - Πεζά Τόμος Πρώτος', 'Krystalles, Kostas', '2010-10-30', 6, 'https://www.gutenberg.org/ebooks/34169', 'el', 988), +(19202, 'Dawn of a New Day', 'Shoghi, Effendi', '2006-09-16', 14, 'https://www.gutenberg.org/ebooks/19271', 'en', 4457), +(19203, 'The Works of Aristotle the Famous Philosopher\r\nContaining his Complete Masterpiece and Family Physician; his Experienced Midwife, his Book of Problems and his Remarks on Physiognomy', NULL, '2004-06-01', 120, 'https://www.gutenberg.org/ebooks/12699', 'en', 8140), +(19204, 'Een Zwerver Verliefd', 'Schendel, Arthur van', '2011-04-16', 38, 'https://www.gutenberg.org/ebooks/35887', 'nl', 61), +(19205, 'La terrible et merveilleuse vie de Robert le Diable', 'Anonymous', '2007-10-02', 22, 'https://www.gutenberg.org/ebooks/22830', 'fr', 8579), +(19206, 'Anzeiger für Kunde der deutschen Vorzeit (Jg. 26, 1879)\nNeue Folge', 'Various', '2015-07-21', 12, 'https://www.gutenberg.org/ebooks/49501', 'de', 8580), +(19207, 'The Adventure of Wisteria Lodge', 'Doyle, Arthur Conan', '2005-08-01', 9, 'https://www.gutenberg.org/ebooks/8626', 'en', 128), +(19208, 'The Touchstone', 'Wharton, Edith', '1995-05-01', 134, 'https://www.gutenberg.org/ebooks/267', 'en', 8581), +(19209, 'Woordenboek der Grieksche en Romeinsche oudheid', 'Boer, Zacharias Cohen de', '2011-01-15', 22, 'https://www.gutenberg.org/ebooks/34955', 'nl', 8582), +(19210, 'The Bookbinder in Eighteenth-Century Williamsburg\r\nAn Account of His Life & Times, & of His Craft', 'Ford, Thomas K.', '2018-07-30', 20, 'https://www.gutenberg.org/ebooks/57609', 'en', 8583), +(19211, 'The History of Don Quixote, Volume 1, Part 03', 'Cervantes Saavedra, Miguel de', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/5905', 'en', 89), +(19212, 'Cinderella; Or, The Little Glass Slipper, and Other Stories', 'Anonymous', '1999-01-01', 63, 'https://www.gutenberg.org/ebooks/1599', 'en', 388), +(19213, 'Blackwood\'s Edinburgh Magazine, Vol. 64 No. 396 October 1848', 'Various', '2012-05-13', 59, 'https://www.gutenberg.org/ebooks/39676', 'en', 274), +(19214, '飛龍全傳', 'Wu, Xuan, active 18th century', '2008-04-29', 9, 'https://www.gutenberg.org/ebooks/25229', 'zh', 8584), +(19215, 'Tales', 'Ewald, Carl', '2004-02-01', 42, 'https://www.gutenberg.org/ebooks/5139', 'he', 8585), +(19216, 'Wenn Landsleute sich begegnen, und andere Novellen', 'Torrund, Jassy', '2019-01-07', 3, 'https://www.gutenberg.org/ebooks/58641', 'de', 1212), +(19217, 'Collections of the Minnesota Historical Society for the Year 1867', 'Pond, Gideon H. (Gideon Hollister)', '2019-06-22', 19, 'https://www.gutenberg.org/ebooks/59793', 'en', 8586), +(19218, 'The Tyranny of Weakness', 'Buck, Charles Neville', '2007-06-06', 12, 'https://www.gutenberg.org/ebooks/21689', 'en', 61), +(19219, 'U.S. Copyright Renewals, 1959 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11820', 'en', 4170), +(19220, 'Notable Women Authors of the Day: Biographical Sketches', 'Black, Helen C.', '2012-01-17', 39, 'https://www.gutenberg.org/ebooks/38596', 'en', 547), +(19221, 'Chats in the Book-Room', 'Pym, Horace N.', '2014-01-31', 12, 'https://www.gutenberg.org/ebooks/44810', 'en', 7900), +(19222, 'Elämän tarkoitus ja arvo', 'Eucken, Rudolf', '2016-09-04', 5, 'https://www.gutenberg.org/ebooks/52975', 'fi', 279), +(19223, 'Páginas escogidas', 'Palacio Valdés, Armando', '2012-04-13', 19, 'https://www.gutenberg.org/ebooks/39444', 'es', 1696), +(19224, 'Dulcibel: A Tale of Old Salem', 'Peterson, Henry', '2007-02-11', 30, 'https://www.gutenberg.org/ebooks/20569', 'en', 4923), +(19225, 'Beatrice Boville and Other Stories', 'Ouida', '2010-10-06', 24, 'https://www.gutenberg.org/ebooks/33942', 'en', 401), +(19226, 'The Good Hope\n(In \"The Drama: A Quarterly Review of Dramatic Literature\")', 'Heijermans, Herman', '2018-12-14', 4, 'https://www.gutenberg.org/ebooks/58473', 'en', 8587), +(19227, 'Leslie Ross; or, Fond of a Lark', 'Bruce, Charles', '2008-06-17', 15, 'https://www.gutenberg.org/ebooks/25827', 'en', 470), +(19228, 'Conformity to the World', 'Hoare, Edward', '2016-05-23', 4, 'https://www.gutenberg.org/ebooks/52149', 'en', 3301), +(19229, 'Home is Where You Left It', 'Marlowe, Stephen', '2010-06-19', 35, 'https://www.gutenberg.org/ebooks/32890', 'en', 179), +(19230, 'Hospital Sketches', 'Peabody, Robert Swain', '2011-02-15', 16, 'https://www.gutenberg.org/ebooks/35289', 'en', 8588), +(19231, 'The Soul of Nicholas Snyders; Or, The Miser of Zandam', 'Jerome, Jerome K. (Jerome Klapka)', '1997-04-01', 134, 'https://www.gutenberg.org/ebooks/869', 'en', 61), +(19232, 'The Fugitive: A Play in Four Acts', 'Galsworthy, John', '2004-09-26', 16, 'https://www.gutenberg.org/ebooks/2912', 'en', 1088), +(19233, 'Free Ships: The Restoration of the American Carrying Trade', 'Codman, John', '2009-05-06', 4, 'https://www.gutenberg.org/ebooks/28704', 'en', 8589), +(19234, 'Teste quadre', 'Panzacchi, Enrico', '2015-08-18', 21, 'https://www.gutenberg.org/ebooks/49733', 'it', 8590), +(19235, 'Freedom Talks No. II', 'Seton, Julia', '2005-07-01', 11, 'https://www.gutenberg.org/ebooks/8414', 'en', 43), +(19236, 'Ryöstölapsi: Kertomus David Balfourin seikkailuista', 'Stevenson, Robert Louis', '2005-10-09', 15, 'https://www.gutenberg.org/ebooks/16837', 'fi', 98), +(19237, 'Scotland Yard: The methods and organisation of the Metropolitan Police', 'Dilnot, George', '2010-03-13', 9, 'https://www.gutenberg.org/ebooks/31629', 'en', 4532), +(19238, 'The Terrible Twins', 'Jepson, Edgar', '2006-08-14', 20, 'https://www.gutenberg.org/ebooks/19043', 'en', 8591), +(19239, 'Essays on the work entitled \"Supernatural Religion\"', 'Lightfoot, J. B. (Joseph Barber)', '2006-04-17', 19, 'https://www.gutenberg.org/ebooks/18191', 'en', 8592), +(19240, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nIndiana Narratives', 'United States. Work Projects Administration', '2004-10-02', 34, 'https://www.gutenberg.org/ebooks/13579', 'en', 8593), +(19241, 'In the Track of R. L. Stevenson and Elsewhere in Old France', 'Hammerton, John Alexander, Sir', '2013-07-13', 5, 'https://www.gutenberg.org/ebooks/43209', 'en', 1117), +(19242, 'The Chief Justice: A Novel', 'Franzos, Karl Emil', '2011-07-25', 7, 'https://www.gutenberg.org/ebooks/36854', 'en', 6085), +(19243, 'Bert Wilson\'s Fadeaway Ball', 'Duffield, J. W.', '2012-03-01', 11, 'https://www.gutenberg.org/ebooks/39020', 'en', 3529), +(19244, 'Tri Noveloj de Usona Verkisto Bret Harte', 'Harte, Bret', '2007-03-29', 9, 'https://www.gutenberg.org/ebooks/20931', 'eo', 315), +(19245, 'Paths of Glory: Impressions of War Written at and Near the Front', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/10798', 'en', 449), +(19246, 'L\'Imperatore Giuliano l\'Apostata: studio storico', 'Negri, Gaetano', '2011-11-11', 6, 'https://www.gutenberg.org/ebooks/37986', 'it', 8594), +(19247, 'Poems of James McIntyre', 'McIntyre, James', '2011-05-09', 38, 'https://www.gutenberg.org/ebooks/36068', 'en', 28), +(19248, 'Princess Sarah, and Other Stories', 'Winter, John Strange', '2013-01-23', 34, 'https://www.gutenberg.org/ebooks/41906', 'en', 62), +(19249, 'Books and Habits, from the Lectures of Lafcadio Hearn', 'Hearn, Lafcadio', '2004-12-13', 33, 'https://www.gutenberg.org/ebooks/14338', 'en', 8595), +(19250, 'A Few Remarks on the Scripture History of Saul and the Witch of Endor', 'Church, J. (John)', '2018-10-03', 5, 'https://www.gutenberg.org/ebooks/58017', 'en', 8596), +(19251, 'The Queen of the Savannah: A Story of the Mexican War', 'Aimard, Gustave', '2013-12-16', 37, 'https://www.gutenberg.org/ebooks/44448', 'en', 3945), +(19252, 'The Praise of Shakespeare: An English Anthology', NULL, '2018-09-07', 21, 'https://www.gutenberg.org/ebooks/57863', 'en', 1201), +(19253, 'Volks-Kochbuch\r\nfür Schule, Fortbildungsschule und Haus', 'Heyl, Hedwig', '2004-11-01', 91, 'https://www.gutenberg.org/ebooks/13921', 'de', 1369), +(19254, 'Punch, or the London Charivari, Vol. 147, October 14, 1914', 'Various', '2009-03-19', 16, 'https://www.gutenberg.org/ebooks/28360', 'en', 134), +(19255, 'The Posthumous Works of Thomas De Quincey, Vol. 1', 'De Quincey, Thomas', '2007-12-09', 140, 'https://www.gutenberg.org/ebooks/23788', 'en', 472), +(19256, 'Personal Experiences of S. O. Susag', 'Susag, S. O.', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/7038', 'en', 8597), +(19257, 'The Fortune Hunter', 'Phillips, David Graham', '1996-02-01', 31, 'https://www.gutenberg.org/ebooks/431', 'en', 109), +(19258, '駐春園小史', 'Wuhangyeke', '2008-11-26', 23, 'https://www.gutenberg.org/ebooks/27328', 'zh', NULL), +(19259, 'Charles Sumner: his complete works, volume 10 (of 20)', 'Sumner, Charles', '2015-02-17', 15, 'https://www.gutenberg.org/ebooks/48285', 'en', 429), +(19260, 'Outlines of Mormon Philosophy\r\nOr the Answers Given by the Gospel, as Revealed Through the Prophet Joseph Smith, to the Questions of Life', 'Wilson, Lycurgus A. (Lycurgus Arnold)', '2015-07-04', 19, 'https://www.gutenberg.org/ebooks/49357', 'en', 377), +(19261, 'Buch der Lieder', 'Heine, Heinrich', '2002-10-01', 65, 'https://www.gutenberg.org/ebooks/3498', 'de', 510), +(19262, 'Expositions of Holy Scripture: St. John Chapters I to XIV', 'Maclaren, Alexander', '2005-05-01', 22, 'https://www.gutenberg.org/ebooks/8070', 'en', 8598), +(19263, 'Death, the Knight, and the Lady: A Ghost Story', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-10-09', 22, 'https://www.gutenberg.org/ebooks/55708', 'en', 61), +(19264, 'Galatea', 'Barrili, Anton Giulio', '2006-10-01', 30, 'https://www.gutenberg.org/ebooks/19427', 'it', 1544), +(19265, 'Expressive Voice Culture, Including the Emerson System', 'Southwick, Jessie Eldridge', '2005-04-01', 6, 'https://www.gutenberg.org/ebooks/7804', 'en', 3663), +(19266, 'The Esperantist, Vol. 1, No. 4', NULL, '2010-01-16', 1, 'https://www.gutenberg.org/ebooks/30991', 'eo', 3912), +(19267, 'The Diary of a Turk', 'Çerkesseyhizade Halil Halit', '2015-09-24', 16, 'https://www.gutenberg.org/ebooks/50048', 'en', 8599), +(19268, 'Sword and Pen\nVentures and Adventures of Willard Glazier', 'Owens, John Algernon', '2009-02-21', 15, 'https://www.gutenberg.org/ebooks/28152', 'en', 444), +(19269, 'In Eastern Seas\r\nOr, the Commission of H.M.S. \'Iron Duke,\' flag-ship in China, 1878-83', 'Smith, J. J.', '2009-01-29', 52, 'https://www.gutenberg.org/ebooks/27926', 'en', 885), +(19270, 'Plain Words for Christ, Being a Series of Readings for Working Men', 'Dutton, Reginald G.', '2009-06-09', 65, 'https://www.gutenberg.org/ebooks/29080', 'en', 655), +(19271, 'Katsokaa peiliin!: Yksinäytöksinen huvinäytelmä', NULL, '2015-09-14', 9, 'https://www.gutenberg.org/ebooks/49959', 'fi', 1552), +(19272, 'Cintra', 'Beirão, Mário Pires Gomes', '2007-08-31', 11, 'https://www.gutenberg.org/ebooks/22468', 'pt', 8), +(19273, 'Of Six Mediæval Women; To Which Is Added A Note on Mediæval Gardens', 'Kemp-Welch, Alice', '2010-03-31', 102, 'https://www.gutenberg.org/ebooks/31843', 'en', 8600), +(19274, 'Jewel: A Chapter in Her Life', 'Burnham, Clara Louise', '2006-03-31', 22, 'https://www.gutenberg.org/ebooks/2778', 'en', 8601), +(19275, 'Fifteen Years with the Outcast', 'Roberts, Fflorens', '2005-11-01', 18, 'https://www.gutenberg.org/ebooks/9390', 'en', 8602), +(19276, 'Humour, Wit, & Satire of the Seventeenth Century', NULL, '2016-01-07', 28, 'https://www.gutenberg.org/ebooks/50874', 'en', 8603), +(19277, 'Letters of George Borrow to the British and Foreign Bible Society', 'Borrow, George', '1996-07-01', 61, 'https://www.gutenberg.org/ebooks/603', 'en', 8604), +(19278, 'Wonders of the Yellowstone', 'Richardson, James (Geologist)', '2014-09-20', 19, 'https://www.gutenberg.org/ebooks/46911', 'en', 2414), +(19279, 'The Dairyman\'s Daughter', 'Richmond, Legh', '2006-10-24', 13, 'https://www.gutenberg.org/ebooks/19615', 'en', 8605), +(19280, 'Brightside Crossing', 'Nourse, Alan Edward', '2015-06-07', 37, 'https://www.gutenberg.org/ebooks/49165', 'en', 8606), +(19281, 'The World English Bible (WEB): Ezra', 'Anonymous', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8242', 'en', 2432), +(19282, 'There is No Death', 'Marryat, Florence', '2012-03-20', 38, 'https://www.gutenberg.org/ebooks/39212', 'en', 8607), +(19283, 'The Soul of a Nation', 'Gibbs, Philip', '2012-11-06', 15, 'https://www.gutenberg.org/ebooks/41308', 'en', 8608), +(19284, 'Bedridden and the Winter Offensive\nDeep Waters, Part 8.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11478', 'en', 72), +(19285, 'Punch, or the London Charivari, Volume 1, November 13, 1841', 'Various', '2005-02-07', 6, 'https://www.gutenberg.org/ebooks/14936', 'en', 134), +(19286, 'Believe You Me!', 'Putnam, Nina Wilcox', '2010-09-14', 31, 'https://www.gutenberg.org/ebooks/33728', 'en', 637), +(19287, 'Tobacco Leaves: Being a Book of Facts for Smokers', 'Brennan, William Augustine', '2011-09-11', 21, 'https://www.gutenberg.org/ebooks/37388', 'en', 8609), +(19288, 'Primes to One Trillion', NULL, '2018-11-03', 5, 'https://www.gutenberg.org/ebooks/58225', 'en', 2497), +(19289, 'The Boy Volunteers with the British Artillery', 'Ward, Kenneth', '2017-12-14', 5, 'https://www.gutenberg.org/ebooks/56179', 'en', 5798), +(19290, 'Handy Andy, Volume One\nA Tale of Irish Life, in Two Volumes', 'Lover, Samuel', '2007-06-12', 16, 'https://www.gutenberg.org/ebooks/21817', 'en', 669), +(19291, 'Ingersollia\r\nGems of Thought from the Lectures, Speeches, and Conversations of Col. Robert G. Ingersoll, Representative of His Opinions and Beliefs', 'Ingersoll, Robert Green', '2011-11-22', 24, 'https://www.gutenberg.org/ebooks/38106', 'en', 8610), +(19292, 'Northern Nut Growers Association Report of the Proceedings at the Fifth Annual Meeting\nEvansville, Indiana, August 20 and 21, 1914', NULL, '2008-02-09', 3, 'https://www.gutenberg.org/ebooks/24559', 'en', 1486), +(19293, 'Sunshine Jane', 'Warner, Anne', '2011-11-10', 25, 'https://www.gutenberg.org/ebooks/37972', 'en', 8611), +(19294, 'Micromégas', 'Voltaire', '2003-11-01', 62, 'https://www.gutenberg.org/ebooks/4649', 'fr', 642), +(19295, 'The Yellow Typhoon', 'MacGrath, Harold', '2018-04-08', 13, 'https://www.gutenberg.org/ebooks/56945', 'en', 579), +(19296, 'The Natural History of Pliny, Volume 3 (of 6)', 'Pliny, the Elder', '2019-03-26', 44, 'https://www.gutenberg.org/ebooks/59131', 'en', 8151), +(19297, 'Dizionario storico-critico degli scrittori di musica e de\' più celebri artisti, vol. 4\r\nDi tutte le nazioni sì antiche che moderne', 'Bertini, Giuseppe', '2012-09-21', 21, 'https://www.gutenberg.org/ebooks/40820', 'it', 7328), +(19298, 'The Story of the Highland Regiments', 'Watson, Frederick', '2018-09-13', 5, 'https://www.gutenberg.org/ebooks/57897', 'en', 2006), +(19299, 'The Great North Road, the Old Mail Road to Scotland: York to Edinburgh', 'Harper, Charles G. (Charles George)', '2014-10-30', 12, 'https://www.gutenberg.org/ebooks/47239', 'en', 226), +(19300, 'Krates: Een Levensbeeld', 'Maurik, Justus van', '2006-01-19', 13, 'https://www.gutenberg.org/ebooks/17549', 'nl', 61), +(19301, 'William Penn', 'Hodges, George', '2009-03-24', 16, 'https://www.gutenberg.org/ebooks/28394', 'en', 8612), +(19302, 'The International Monthly, Volume 3, No. 2, May, 1851', 'Various', '2009-06-26', 17, 'https://www.gutenberg.org/ebooks/29246', 'en', 3080), +(19303, 'Dick Prescotts\'s Fourth Year at West Point\r\nOr, Ready to Drop the Gray for Shoulder Straps', 'Hancock, H. Irving (Harrie Irving)', '2004-07-03', 14, 'https://www.gutenberg.org/ebooks/12807', 'en', 8423), +(19304, 'The Prophet of the Great Smoky Mountains', 'Murfree, Mary Noailles', '2011-03-20', 11, 'https://www.gutenberg.org/ebooks/35619', 'en', 8613), +(19305, 'De Liereman', 'Schipper, Lieuwe', '2004-11-01', 5, 'https://www.gutenberg.org/ebooks/6922', 'nl', 8), +(19306, 'The Girl\'s Own Paper, Vol. VIII, No. 357, October 30, 1886', 'Various', '2006-06-04', 18, 'https://www.gutenberg.org/ebooks/18501', 'en', 563), +(19307, 'Life and Remains of John Clare, The \"Northamptonshire Peasant Poet\"', 'Clare, John', '2005-10-01', 17, 'https://www.gutenberg.org/ebooks/9156', 'en', 8376), +(19308, 'Old People and the Things That Pass', 'Couperus, Louis', '2015-02-15', 16, 'https://www.gutenberg.org/ebooks/48271', 'en', 8614), +(19309, 'The Phantom Town Mystery', 'Norton, Carol', '2013-09-12', 16, 'https://www.gutenberg.org/ebooks/43699', 'en', 8615), +(19310, 'Hunting with the Bow & Arrow', 'Pope, Saxton T. (Saxton Temple)', '2005-05-01', 92, 'https://www.gutenberg.org/ebooks/8084', 'en', 8616), +(19311, 'Birds, Illustrated by Color Photography, Vol. 2, No. 6\r\nDecember, 1897', 'Various', '2010-01-14', 14, 'https://www.gutenberg.org/ebooks/30965', 'en', 1584), +(19312, 'Hortus Vitae\nEssays on the Gardening of Life', 'Lee, Vernon', '2008-10-07', 53, 'https://www.gutenberg.org/ebooks/26800', 'en', 20), +(19313, 'The American Missionary — Volume 39, No. 02, February, 1885', 'Various', '2009-06-08', 8, 'https://www.gutenberg.org/ebooks/29074', 'en', 562), +(19314, 'The True-Born Englishman: A Satire', 'Defoe, Daniel', '2009-10-02', 113, 'https://www.gutenberg.org/ebooks/30159', 'en', 8617), +(19315, 'Treatise on Thermodynamics', 'Planck, Max', '2016-01-09', 137, 'https://www.gutenberg.org/ebooks/50880', 'en', 8618), +(19316, 'Life in Mexico', 'Calderón de la Barca, Madame (Frances Erskine Inglis)', '2005-11-01', 29, 'https://www.gutenberg.org/ebooks/9364', 'en', 7645), +(19317, 'A Graduated English-Welsh Spelling Book', 'Lewis, John', '2015-01-22', 6, 'https://www.gutenberg.org/ebooks/48043', 'en', 8619), +(19318, 'Die Italienische Plastik', 'Bode, Wilhelm', '2006-07-01', 46, 'https://www.gutenberg.org/ebooks/18733', 'de', 8620), +(19319, 'The Mysteryes of Nature and Art\r\nConteined in foure severall Tretises, The first of water workes, The second of Fyer workes, The third of Drawing, Colouring, Painting, and Engraving, The fourth of divers Experiments, as wel serviceable as delightful: partly Collected, and partly of the Authors Peculiar Practice,\r\nand Invention', 'Bate, John', '2015-01-01', 66, 'https://www.gutenberg.org/ebooks/47837', 'en', 8621), +(19320, 'The Persecution of Bob Pretty\nOdd Craft, Part 9.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12209', 'en', 1902), +(19321, 'Astounding Stories of Super-Science, June, 1930', 'Various', '2009-08-29', 136, 'https://www.gutenberg.org/ebooks/29848', 'en', 2527), +(19322, 'Chambers\'s Edinburgh Journal, No. 309\nNew Series, Saturday, December 8, 1849', 'Various', '2015-06-11', 9, 'https://www.gutenberg.org/ebooks/49191', 'en', 18), +(19323, 'Scenic Mount Lowe and Its Wonderful Railway', 'James, George Wharton', '2013-04-22', 14, 'https://www.gutenberg.org/ebooks/42579', 'en', 2845), +(19324, 'A Journalist\'s Note-Book', 'Moore, Frank Frankfort', '2016-05-02', 7, 'https://www.gutenberg.org/ebooks/51952', 'en', 8622), +(19325, 'The Age of Erasmus\nLectures Delivered in the Universities of Oxford and London', 'Allen, P. S. (Percy Stafford)', '2005-05-10', 20, 'https://www.gutenberg.org/ebooks/15810', 'en', 6882), +(19326, 'The Peak District', 'Gilchrist, Murray', '2018-06-10', 17, 'https://www.gutenberg.org/ebooks/57299', 'en', 8623), +(19327, 'The Homilies of the Anglo-Saxon Church\r\nContaining the Sermones Catholici, or Homilies of Ælfric, in the Original Anglo-Saxon, with an English Version. Volume I.', 'Aelfric, Abbot of Eynsham', '2011-12-18', 52, 'https://www.gutenberg.org/ebooks/38334', 'en', 8624), +(19328, 'Love\'s Labour\'s Lost', 'Shakespeare, William', '1997-11-01', 68, 'https://www.gutenberg.org/ebooks/1109', 'en', 907), +(19329, 'A Vagabond\'s Odyssey\r\nbeing further reminiscences of a wandering sailor-troubadour in many lands', 'Safroni-Middleton, A. (Arnold)', '2019-04-18', 18, 'https://www.gutenberg.org/ebooks/59303', 'en', 885), +(19330, 'A Voice in the Wilderness', 'Hill, Grace Livingston', '2007-04-27', 62, 'https://www.gutenberg.org/ebooks/21219', 'en', 8625), +(19331, 'Last Words on Evolution: A Popular Retrospect and Summary', 'Haeckel, Ernst', '2016-11-30', 12, 'https://www.gutenberg.org/ebooks/53639', 'en', 2713), +(19332, 'The Tremendous Adventures of Major Gahagan', 'Thackeray, William Makepeace', '1999-10-01', 13, 'https://www.gutenberg.org/ebooks/1935', 'en', 1736), +(19333, 'Godey\'s Lady\'s Book, Philadelphia, Volume 48, March, 1854', 'Various', '2017-11-18', 24, 'https://www.gutenberg.org/ebooks/55996', 'en', 6704), +(19334, 'A World of Wonders, with Anecdotes and Opinions Concerning Popular Superstitions', NULL, '2013-06-12', 10, 'https://www.gutenberg.org/ebooks/42921', 'en', 5025), +(19335, 'The End of Time', 'West, Wallace', '2009-07-15', 40, 'https://www.gutenberg.org/ebooks/29410', 'en', 26), +(19336, 'Fulco de Minstreel: Een historisch verhaal uit den tijd van Graaf Jan I voor jongelieden', 'Kieviet, Cornelis Johannes', '2005-06-16', 17, 'https://www.gutenberg.org/ebooks/6748', 'nl', 1063), +(19337, 'Puhe kunniaseppeleestä', 'Demosthenes', '2017-06-04', 7, 'https://www.gutenberg.org/ebooks/54844', 'fi', 8626), +(19338, 'Age of Innocence', 'Wharton, Edith', '2008-09-01', 21, 'https://www.gutenberg.org/ebooks/26458', 'en', 4330), +(19339, 'Henry Martyn, Saint and Scholar\r\nFirst Modern Missionary to the Mohammedans, 1781-1812', 'Smith, George', '2011-04-14', 12, 'https://www.gutenberg.org/ebooks/35873', 'en', 8627), +(19340, 'The Promulgation of Universal Peace', '`Abdu\'l-Bahá', '2006-09-18', 22, 'https://www.gutenberg.org/ebooks/19285', 'en', 7676), +(19341, 'I. Beówulf: an Anglo-Saxon poem. II. The fight at Finnsburh: a fragment.', NULL, '2006-01-01', 145, 'https://www.gutenberg.org/ebooks/9700', 'en', 8628), +(19342, 'Blue Bonnet in Boston; or, Boarding-School Days at Miss North\'s', 'Richards, Lela Horn', '2007-12-19', 13, 'https://www.gutenberg.org/ebooks/23916', 'en', 1877), +(19343, 'Supplement to Commerce Reports Daily Consular and Trade Reports: Turkey, Harput', 'Davis, Leslie A.', '2015-03-07', 15, 'https://www.gutenberg.org/ebooks/48427', 'en', 8629), +(19344, 'A Jacobite Exile\r\nBeing the Adventures of a Young Englishman in the Service of Charles the Twelfth of Sweden', 'Henty, G. A. (George Alfred)', '2006-05-08', 34, 'https://www.gutenberg.org/ebooks/18357', 'en', 8630), +(19345, 'Paul Prescott\'s Charge', 'Alger, Horatio, Jr.', '2006-03-15', 152, 'https://www.gutenberg.org/ebooks/293', 'en', 658), +(19346, 'Ruth Erskine\'s Crosses', 'Pansy', '2017-01-31', 8, 'https://www.gutenberg.org/ebooks/54078', 'en', 195), +(19347, 'Current History: A Monthly Magazine of the New York Times, May 1918\nVol. VIII, Part I, No. 2', 'Various', '2012-02-02', 38, 'https://www.gutenberg.org/ebooks/38750', 'en', 335), +(19348, 'The Idiot at Home', 'Bangs, John Kendrick', '2012-05-12', 25, 'https://www.gutenberg.org/ebooks/39682', 'en', 637), +(19349, 'Van Eyck', 'Weale, J. Cyril M. (James Cyril M.)', '2013-01-07', 16, 'https://www.gutenberg.org/ebooks/41798', 'en', 8631), +(19350, 'The Rise of the Dutch Republic — Complete (1566-74)', 'Motley, John Lothrop', '2004-11-07', 21, 'https://www.gutenberg.org/ebooks/4823', 'en', 6577), +(19351, 'Quinze Jours en Égypte', 'Neuray, Fernand', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/10906', 'fr', 8632), +(19352, 'Elias: An Epic of the Ages', 'Whitney, Orson F. (Orson Ferguson)', '2011-10-11', 19, 'https://www.gutenberg.org/ebooks/37718', 'en', 8633), +(19353, 'Index of the Project Gutenberg Works of William Wood', 'Wood, William', '2019-06-16', 13, 'https://www.gutenberg.org/ebooks/59767', 'en', 198), +(19354, 'Elizabethan Sonnet Cycles: Idea, Fidesa and Chloris', 'Drayton, Michael', '2005-03-24', 28, 'https://www.gutenberg.org/ebooks/15448', 'en', 6689), +(19355, 'Through Bosnia and Herzegovina with a Paint Brush', 'Whitwell, Edward Robson, Mrs.', '2014-04-06', 7, 'https://www.gutenberg.org/ebooks/45338', 'en', 8634), +(19356, 'Αττικαί ημέραι', 'Anninos, Bampes', '2012-08-11', 15, 'https://www.gutenberg.org/ebooks/40478', 'el', 988), +(19357, 'Språket en spegel av kulturen', 'Odhner, Einar', '2016-12-31', 6, 'https://www.gutenberg.org/ebooks/53853', 'sv', 8635), +(19358, 'The Big Book of Nursery Rhymes', NULL, '2012-01-13', 31, 'https://www.gutenberg.org/ebooks/38562', 'en', 859), +(19359, 'Handel Festival\r\nIsrael in Egypt (excerpt)', NULL, '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10308', 'en', 7271), +(19360, 'Das grüne Gesicht: Ein Roman', 'Meyrink, Gustav', '2014-06-11', 23, 'https://www.gutenberg.org/ebooks/45936', 'de', 8636), +(19361, 'Lapsuus, Poika-ikä, Nuoruus 1: Lapsuus', 'Tolstoy, Leo, graf', '2016-09-04', 6, 'https://www.gutenberg.org/ebooks/52981', 'fi', 417), +(19362, 'American Slave Trade\r\nOr, An Account of the Manner in which the Slave Dealers take Free People from some of the United States of America, and carry them away, and sell them as Slaves in other of the States; and of the horrible Cruelties practised in the carrying on of this most infamous Traffic', 'Torrey, Jesse, active 1787-1834', '2010-04-19', 24, 'https://www.gutenberg.org/ebooks/32058', 'en', 125), +(19363, 'De kleine Zwerveling', 'Plaatsman, D. P.', '2018-12-17', 16, 'https://www.gutenberg.org/ebooks/58487', 'nl', 3532), +(19364, 'The American Type of Isthmian Canal\r\nSpeech by Hon. John Fairfield Dryden in the Senate of the United States, June 14, 1906', 'Dryden, John F. (John Fairfield)', '2008-03-23', 3, 'https://www.gutenberg.org/ebooks/24901', 'en', 1232), +(19365, 'Bedside Manner', 'Samachson, Joseph', '2010-06-17', 24, 'https://www.gutenberg.org/ebooks/32864', 'en', 8637), +(19366, 'Poison-ivy, Poison-oak and Poison Sumac: Identification, Precautions and Eradication', 'Kephart, Leonard Wheeler', '2019-05-19', 29, 'https://www.gutenberg.org/ebooks/59555', 'en', 8638), +(19367, 'The Book of Common Prayer\nand The Scottish Liturgy', 'Episcopal Church in Scotland', '2009-08-06', 64, 'https://www.gutenberg.org/ebooks/29622', 'en', 8639), +(19368, 'Julian Mortimer: A Brave Boy\'s Struggle for Home and Fortune', 'Castlemon, Harry', '2016-04-12', 10, 'https://www.gutenberg.org/ebooks/51738', 'en', 5512), +(19369, 'Hassan : the story of Hassan of Bagdad, and how he came to make the golden journey to Samarkand : a play in five acts', 'Flecker, James Elroy', '2003-03-01', 71, 'https://www.gutenberg.org/ebooks/3834', 'en', 8640), +(19370, 'A Journal From Our Legation in Belgium', 'Gibson, Hugh', '2006-08-01', 24, 'https://www.gutenberg.org/ebooks/18959', 'en', 8641), +(19371, 'The Nine Lives of A Cat: A Tale of Wonder', 'Bennett, Charles H. (Charles Henry)', '2007-11-04', 33, 'https://www.gutenberg.org/ebooks/23318', 'en', 8642), +(19372, 'The Jargon File, Version 4.2.2, 20 Aug 2000', NULL, '2002-01-01', 84, 'https://www.gutenberg.org/ebooks/3008', 'en', 8643), +(19373, 'Phyllis', 'Duchess', '2017-08-21', 20, 'https://www.gutenberg.org/ebooks/55398', 'en', 61), +(19374, 'Russian Rambles', 'Hapgood, Isabel Florence', '2006-04-13', 19, 'https://www.gutenberg.org/ebooks/18165', 'en', 2408), +(19375, 'Légendes rustiques', 'Sand, George', '2006-03-04', 49, 'https://www.gutenberg.org/ebooks/17911', 'fr', 1142), +(19376, 'The Lock and Key Library: Classic Mystery and Detective Stories: Old Time English', NULL, '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9532', 'en', 128), +(19377, 'The Shogun\'s Daughter', 'Bennet, Robert Ames', '2015-03-31', 15, 'https://www.gutenberg.org/ebooks/48615', 'en', 8644), +(19378, 'Catálogo Monumental de España; Provincia de Álava\r\nInventario general de los monumentos históricos y artísticos de al nación.', 'Castro, Cristóbal de', '2012-11-10', 8, 'https://www.gutenberg.org/ebooks/41337', 'es', 8645), +(19379, 'In The Boyhood of Lincoln\nA Tale of the Tunker Schoolmaster and the Times of Black Hawk', 'Butterworth, Hezekiah', '2008-06-01', 11, 'https://www.gutenberg.org/ebooks/25672', 'en', 1457), +(19380, 'Doctor Mead\'s Short discourse explain\'d\nBeing a clearer account of pestilential contagion, and preventing.', NULL, '2018-01-16', 3, 'https://www.gutenberg.org/ebooks/56380', 'en', 1792), +(19381, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 401, November 28, 1829', 'Various', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11447', 'en', 133), +(19382, 'Punch, or the London Charivari, Volume 153, September 19, 1917', 'Various', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10595', 'en', 134), +(19383, 'The Indians of the Pike\'s Peak Region\nIncluding an Account of the Battle of Sand Creek, and of Occurrences in El Paso County, Colorado, during the War with the Cheyennes and Arapahoes, in 1864 and 1868', 'Howbert, Irving', '2018-06-02', 10, 'https://www.gutenberg.org/ebooks/57252', 'en', 8646), +(19384, 'Elsie\'s New Relations\r\nWhat They Did and How They Fared at Ion; A Sequel to Grandmother Elsie', 'Finley, Martha', '2005-02-04', 50, 'https://www.gutenberg.org/ebooks/14909', 'en', 470), +(19385, 'Punch, or the London Charivari, Vol. 93. September 17, 1887', 'Various', '2010-09-13', 14, 'https://www.gutenberg.org/ebooks/33717', 'en', 134), +(19386, 'Extraction of the Teeth', 'Colyer, Frank', '2016-08-04', 27, 'https://www.gutenberg.org/ebooks/52720', 'en', 8647), +(19387, 'Jose: Our Little Portuguese Cousin', 'Sawyer, Edith A. (Edith Augusta)', '2014-05-28', 13, 'https://www.gutenberg.org/ebooks/45797', 'en', 8648), +(19388, 'The Impeachment of the House of Brunswick', 'Bradlaugh, Charles', '2011-05-29', 11, 'https://www.gutenberg.org/ebooks/36265', 'en', 8342), +(19389, 'Barbara Blomberg — Volume 02', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5562', 'en', 803), +(19390, 'A Short View of the Immorality, and Profaneness of the English Stage\r\nTogether with the Sense of Antiquity on this Argument', 'Collier, Jeremy', '2014-01-11', 67, 'https://www.gutenberg.org/ebooks/44645', 'en', 8649), +(19391, 'Punch, or the London Charivari, Volume 152, January 10, 1917', 'Various', '2004-11-23', 9, 'https://www.gutenberg.org/ebooks/14135', 'en', 134), +(19392, 'Henry VIII.', 'Pollard, A. F. (Albert Frederick)', '2007-01-06', 33, 'https://www.gutenberg.org/ebooks/20300', 'en', 2157), +(19393, '佛說四十二章經', 'Buddha', '2007-11-22', 65, 'https://www.gutenberg.org/ebooks/23585', 'zh', 765), +(19394, 'Maternity: Letters from Working-Women', NULL, '2015-09-29', 13, 'https://www.gutenberg.org/ebooks/50077', 'en', 8650), +(19395, 'Abissinia: Giornale di un viaggio', 'Vigoni, Giuseppe', '2009-01-28', 32, 'https://www.gutenberg.org/ebooks/27919', 'it', 1936), +(19396, 'A Synopsis of the American Bats of the Genus Pipistrellus', 'Dalquest, Walter Woelber', '2010-12-01', 17, 'https://www.gutenberg.org/ebooks/34532', 'en', 8651), +(19397, 'The Bride of Fort Edward: Founded on an Incident of the Revolution', 'Bacon, Delia Salter', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7235', 'en', 8652), +(19398, 'The Dark Ages, and Other Poems', 'L.', '2014-06-27', 18, 'https://www.gutenberg.org/ebooks/46112', 'en', 8), +(19399, 'Bad Hugh', 'Holmes, Mary Jane', '2005-09-05', 12, 'https://www.gutenberg.org/ebooks/16662', 'en', 61), +(19400, 'Geology of Devils Tower National Monument, Wyoming\nA Contribution to General Geology', 'Robinson, Charles Sherwood', '2015-09-14', 18, 'https://www.gutenberg.org/ebooks/49966', 'en', 8653), +(19401, 'The Verbalist\r\nA Manual Devoted to Brief Discussions of the Right and the Wrong Use of Words and to Some Other Matters of Interest to Those Who Would Speak and Write with Propriety.', 'Ayres, Alfred', '2007-08-30', 20, 'https://www.gutenberg.org/ebooks/22457', 'en', 5238), +(19402, 'Oorlogsfilosofie', 'Polak, Leo', '2015-01-26', 10, 'https://www.gutenberg.org/ebooks/48088', 'nl', 8654), +(19403, 'Frontier service during the rebellion\nor, A history of Company K, First Infantry, California Volunteers', 'Pettis, George H.', '2009-05-24', 7, 'https://www.gutenberg.org/ebooks/28951', 'en', 8655), +(19404, 'I Puritani di Scozia, vol. 3', 'Scott, Walter', '2013-08-13', 19, 'https://www.gutenberg.org/ebooks/43460', 'it', 98), +(19405, 'Nisida\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 17, 'https://www.gutenberg.org/ebooks/2747', 'en', 5050), +(19406, 'Chips from a German Workshop, Volume 4\r\nEssays Chiefly on the Science of Language', 'Müller, F. Max (Friedrich Max)', '2009-10-06', 29, 'https://www.gutenberg.org/ebooks/30192', 'en', 8656), +(19407, 'The Splash of a Drop', 'Worthington, A. M. (Arthur Mason)', '2008-11-02', 8, 'https://www.gutenberg.org/ebooks/27125', 'en', 6967), +(19408, 'The Complete Poetical Works of James Russell Lowell', 'Lowell, James Russell', '2004-08-28', 38, 'https://www.gutenberg.org/ebooks/13310', 'en', 178), +(19409, 'Nequa; or, The Problem of the Ages', 'Grigsby, Alcanoan O.', '2017-09-08', 14, 'https://www.gutenberg.org/ebooks/55505', 'en', 5147), +(19410, 'Every Man out of His Humour', 'Jonson, Ben', '2003-01-01', 60, 'https://www.gutenberg.org/ebooks/3695', 'en', 5266), +(19411, 'Life and Military Career of Major-General William Tecumseh Sherman', 'Headley, P. C. (Phineas Camp)', '2016-05-05', 10, 'https://www.gutenberg.org/ebooks/51999', 'en', 1177), +(19412, 'The Pigmy Woodrat, Neotoma goldmani, Its Distribution and Systematic Position', 'Baker, Rollin H. (Rollin Harold)', '2010-01-22', 10, 'https://www.gutenberg.org/ebooks/31040', 'en', 8657), +(19413, 'Blackwoods Edinburgh Magazine, Volume 59, No. 366, April, 1846', 'Various', '2009-09-01', 33, 'https://www.gutenberg.org/ebooks/29883', 'en', 711), +(19414, 'God\'s Green Country: A Novel of Canadian Rural Life', 'Chapman, Ethel M.', '2010-12-20', 9, 'https://www.gutenberg.org/ebooks/34700', 'en', 8658), +(19415, 'The Philippine Islands, 1493-1898, Volume 45, 1736\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2015-10-17', 24, 'https://www.gutenberg.org/ebooks/50245', 'en', 1334), +(19416, 'Round-about Rambles in Lands of Fact and Fancy', 'Stockton, Frank Richard', '2006-01-23', 26, 'https://www.gutenberg.org/ebooks/17582', 'en', 8659), +(19417, 'The Isle of Unrest', 'Merriman, Henry Seton', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8873', 'en', 8660), +(19418, 'The Reminiscences of an Irish Land Agent', 'Hussey, Samuel Murray', '2005-08-05', 20, 'https://www.gutenberg.org/ebooks/16450', 'en', 8661), +(19419, 'People Soup', 'Arkin, Alan', '2016-03-08', 53, 'https://www.gutenberg.org/ebooks/51397', 'en', 2811), +(19420, 'Christian Gellert\'s Last Christmas\nFrom \"German Tales\" Published by the American Publishers\' Corporation', 'Auerbach, Berthold', '2007-09-18', 24, 'https://www.gutenberg.org/ebooks/22665', 'en', 585), +(19421, 'The True Story of My Life: A Sketch', 'Andersen, H. C. (Hans Christian)', '2004-12-01', 41, 'https://www.gutenberg.org/ebooks/7007', 'en', 8662), +(19422, 'Wulnoth the Wanderer: A Story of King Alfred of England', 'Inman, Herbert', '2014-07-18', 25, 'https://www.gutenberg.org/ebooks/46320', 'en', 8663), +(19423, 'The Cheerful Smugglers', 'Butler, Ellis Parker', '2008-11-23', 10, 'https://www.gutenberg.org/ebooks/27317', 'en', 8664), +(19424, 'Trois Héros de la colonie de Montréal', 'Dupuy, Paul', '2004-08-06', 18, 'https://www.gutenberg.org/ebooks/13122', 'fr', 2163), +(19425, 'Les mystères d\'Udolphe', 'Radcliffe, Ann Ward', '2013-09-05', 19, 'https://www.gutenberg.org/ebooks/43652', 'fr', 264), +(19426, 'Confessions of an Inquiring Spirit and Some Miscellaneous Pieces', 'Coleridge, Samuel Taylor', '2001-04-01', 38, 'https://www.gutenberg.org/ebooks/2575', 'en', 8665), +(19427, 'Threads of Grey and Gold', 'Reed, Myrtle', '2010-02-14', 8, 'https://www.gutenberg.org/ebooks/31272', 'en', 8), +(19428, 'The Political Institutions of the Ancient Greeks', 'Hammond, Basil Edward', '2015-07-05', 21, 'https://www.gutenberg.org/ebooks/49368', 'en', 8666), +(19429, 'Notes and Queries, Number 139, June 26, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 14, 'https://www.gutenberg.org/ebooks/42780', 'en', 105), +(19430, 'Queen Zixi of Ix; Or, the Story of the Magic Cloak', 'Baum, L. Frank (Lyman Frank)', '2017-10-13', 58, 'https://www.gutenberg.org/ebooks/55737', 'en', 2513), +(19431, 'Confessions of Boyhood', 'Albee, John', '2006-10-01', 18, 'https://www.gutenberg.org/ebooks/19418', 'en', 8667), +(19432, 'An Undivided Union', 'Optic, Oliver', '2008-05-12', 19, 'https://www.gutenberg.org/ebooks/25440', 'en', 491), +(19433, 'Vanishing Roads and Other Essays', 'Le Gallienne, Richard', '2004-03-01', 40, 'https://www.gutenberg.org/ebooks/11675', 'en', 472), +(19434, 'The Secret of Charlotte Brontë\nFollowed by Remiiscences of the real Monsieur and Madame Heger', 'Macdonald, Frederika', '2012-10-18', 18, 'https://www.gutenberg.org/ebooks/41105', 'en', 8668), +(19435, 'A Short History of the Royal Navy, 1217-1815. Volume II, 1689-1815', 'Hannay, David', '2019-02-03', 10, 'https://www.gutenberg.org/ebooks/58814', 'en', 8669), +(19436, 'Stories from Tagore', 'Tagore, Rabindranath', '2010-08-24', 928, 'https://www.gutenberg.org/ebooks/33525', 'en', 8670), +(19437, 'London Labour and the London Poor (Vol. 3 of 4)', 'Mayhew, Henry', '2018-04-27', 50, 'https://www.gutenberg.org/ebooks/57060', 'en', 8671), +(19438, 'The Tale of Snowball Lamb', 'Bailey, Arthur Scott', '2008-02-13', 29, 'https://www.gutenberg.org/ebooks/24592', 'en', 195), +(19439, 'The Boy Grew Older', 'Broun, Heywood', '2011-05-08', 17, 'https://www.gutenberg.org/ebooks/36057', 'en', 2079), +(19440, 'Nonsense Novels', 'Leacock, Stephen', '2003-11-01', 76, 'https://www.gutenberg.org/ebooks/4682', 'en', 5688), +(19441, 'Rosa Bonheur', 'Crastre, François', '2013-01-28', 17, 'https://www.gutenberg.org/ebooks/41939', 'en', 8672), +(19442, 'History of the National Flag of the United States of America', 'Hamilton, Schuyler', '2012-05-27', 12, 'https://www.gutenberg.org/ebooks/39823', 'en', 1618), +(19443, 'The Duchess of Dublin: A Farce', 'Baker, George M. (George Melville)', '2016-07-06', 12, 'https://www.gutenberg.org/ebooks/52512', 'en', 868), +(19444, 'Reseña Veridica de la Revolución Filipina', 'Aguinaldo, Emilio', '2004-12-09', 69, 'https://www.gutenberg.org/ebooks/14307', 'es', 8673), +(19445, 'She Blows! And Sparm at That!', 'Hopkins, William John', '2018-10-05', 30, 'https://www.gutenberg.org/ebooks/58028', 'en', 3261), +(19446, 'The Wizard of the Sea; Or, A Trip Under the Ocean', 'Rockwood, Roy', '2006-12-19', 29, 'https://www.gutenberg.org/ebooks/20132', 'en', 5086), +(19447, 'The Adventures of a Widow: A Novel', 'Fawcett, Edgar', '2011-08-23', 21, 'https://www.gutenberg.org/ebooks/37185', 'en', 4013), +(19448, 'St. George and St. Michael, Volume 1', 'MacDonald, George', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/5750', 'en', 4665), +(19449, 'Hints on Dairying', 'Curtis, T. D. (Thomas Day)', '2013-12-21', 3, 'https://www.gutenberg.org/ebooks/44477', 'en', 8674), +(19450, 'Jouluilta: Kolmilauluinen runoelma', 'Runeberg, Johan Ludvig', '2005-06-10', 37, 'https://www.gutenberg.org/ebooks/16034', 'fi', 585), +(19451, 'The Butterfly\'s Funeral\nA Sequel to the Butterfly\'s Ball and Grasshopper\'s Feast', 'J. L. B.', '2007-08-01', 13, 'https://www.gutenberg.org/ebooks/22201', 'en', 1801), +(19452, 'Euthyphro', 'Plato', '2006-11-18', 12, 'https://www.gutenberg.org/ebooks/19840', 'en', 2286), +(19453, 'Darkness and Dawn', 'England, George Allan', '2005-02-01', 73, 'https://www.gutenberg.org/ebooks/7463', 'en', 26), +(19454, 'The Camp of Refuge: A Tale of the Conquest of the Isle of Ely', 'MacFarlane, Charles', '2014-09-01', 10, 'https://www.gutenberg.org/ebooks/46744', 'en', 404), +(19455, 'Barry Blake of the Flying Fortress', 'Du Bois, Gaylord', '2014-12-18', 34, 'https://www.gutenberg.org/ebooks/47696', 'en', 1064), +(19456, 'Dreams', 'Jerome, Jerome K. (Jerome Klapka)', '1997-03-01', 94, 'https://www.gutenberg.org/ebooks/856', 'en', 6758), +(19457, 'Le moulin du Frau', 'Le Roy, Eugène', '2010-11-18', 9, 'https://www.gutenberg.org/ebooks/34364', 'fr', 687), +(19458, 'Current Superstitions\nCollected from the Oral Tradition of English Speaking Folk', NULL, '2006-08-05', 14, 'https://www.gutenberg.org/ebooks/18992', 'en', 3600), +(19459, 'An Account of the Abipones, an Equestrian People of Paraguay, (2 of 3)', 'Dobrizhoffer, Martin', '2015-12-05', 8, 'https://www.gutenberg.org/ebooks/50621', 'en', 992), +(19460, 'The Story of the Guides', 'Younghusband, G. J. (George John)', '2005-10-07', 11, 'https://www.gutenberg.org/ebooks/16808', 'en', 8675), +(19461, 'Health Lessons, Book 1', 'Davison, Alvin', '2010-03-13', 21, 'https://www.gutenberg.org/ebooks/31616', 'en', 8012), +(19462, 'Boys Who Became Famous Men\nStories of the Childhood of Poets, Artists, and Musicians', 'Skinner, Harriet Pearl', '2017-08-13', 48, 'https://www.gutenberg.org/ebooks/55353', 'en', 8676), +(19463, 'Note-Book of Anton Chekhov', 'Chekhov, Anton Pavlovich', '2004-06-01', 44, 'https://www.gutenberg.org/ebooks/12494', 'en', 8677), +(19464, 'Mémoires de Marmontel (Volume 2 of 3)\nMémoires d\'un Père pour servir à l\'Instruction de ses enfans', 'Marmontel, Jean-François', '2009-01-11', 6, 'https://www.gutenberg.org/ebooks/27773', 'fr', 1240), +(19465, 'The Dark House', 'Wylie, I. A. R. (Ida Alexa Ross)', '2004-09-27', 19, 'https://www.gutenberg.org/ebooks/13546', 'en', 61), +(19466, 'The Voiage and Travayle of Sir John Maundeville Knight\r\nWhich treateth of the way towards Hierusalem and of marvayles of Inde with other ilands and countreys', 'Mandeville, John, Sir', '2017-03-05', 29, 'https://www.gutenberg.org/ebooks/54281', 'en', 8678), +(19467, 'Kuninkaan tuomio: Näytelmä 3:ssa näytöksessä lauluineen', 'Jaatinen, Otto Engb. (Otto Engelbert)', '2013-07-17', 25, 'https://www.gutenberg.org/ebooks/43236', 'fi', 247), +(19468, 'History of Friedrich II of Prussia — Volume 11', 'Carlyle, Thomas', '2008-06-16', 16, 'https://www.gutenberg.org/ebooks/2111', 'en', 6848), +(19469, 'King Lear', 'Shakespeare, William', '1999-06-01', 89, 'https://www.gutenberg.org/ebooks/1794', 'en', 8679), +(19470, 'Blackwood\'s Edinburgh Magazine, Volume 57, No. 355, May 1845', 'Various', '2010-07-12', 11, 'https://www.gutenberg.org/ebooks/33141', 'en', 711), +(19471, 'Thomas Campbell', 'Hadden, J. Cuthbert (James Cuthbert)', '2017-01-05', 12, 'https://www.gutenberg.org/ebooks/53898', 'en', 8680), +(19472, 'Through the Casentino with Hints for the Traveller', 'Eckenstein, Lina', '2018-06-26', 6, 'https://www.gutenberg.org/ebooks/57404', 'en', 8681), +(19473, 'The Night of the Long Knives', 'Leiber, Fritz', '2008-04-09', 127, 'https://www.gutenberg.org/ebooks/25024', 'en', 2797), +(19474, 'A Minstrel in France', 'Lauder, Harry, Sir', '2004-02-01', 33, 'https://www.gutenberg.org/ebooks/11211', 'en', 449), +(19475, 'Picturesque Pala\nThe Story of the Mission Chapel of San Antonio de Padua Connected with Mission San Luis Rey', 'James, George Wharton', '2012-12-05', 6, 'https://www.gutenberg.org/ebooks/41561', 'en', 8682), +(19476, 'Loyal to the School', 'Brazil, Angela', '2010-04-22', 51, 'https://www.gutenberg.org/ebooks/32093', 'en', 3248), +(19477, 'Winston of the Prairie', 'Bindloss, Harold', '2005-01-23', 22, 'https://www.gutenberg.org/ebooks/14763', 'en', 1219), +(19478, 'Lamarck, the Founder of Evolution\nHis Life and Work', 'Packard, A. S. (Alpheus Spring)', '2007-02-10', 60, 'https://www.gutenberg.org/ebooks/20556', 'en', 3664), +(19479, 'Journals of Two Expeditions into the Interior of New South Wales', 'Oxley, John', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/5334', 'en', 8683), +(19480, 'Tom Fairfield at Sea; or, The Wreck of the Silver Star', 'Chapman, Allen', '2013-10-22', 9, 'https://www.gutenberg.org/ebooks/44013', 'en', 324), +(19481, 'The First Mate: The Story of a Strange Cruise', 'Collingwood, Harry', '2008-06-17', 23, 'https://www.gutenberg.org/ebooks/25818', 'en', 324), +(19482, 'Chronicles of the Schonberg-Cotta Family', 'Charles, Elizabeth Rundle', '2011-06-15', 15, 'https://www.gutenberg.org/ebooks/36433', 'en', 942), +(19483, 'Roger Willoughby: A Story of the Times of Benbow', 'Kingston, William Henry Giles', '2007-05-15', 37, 'https://www.gutenberg.org/ebooks/21484', 'en', 3532), +(19484, 'Tik-Tok of Oz', 'Baum, L. Frank (Lyman Frank)', '2016-05-28', 74, 'https://www.gutenberg.org/ebooks/52176', 'en', 246), +(19485, 'Die Technik der Lastenförderung einst und jetzt\r\nEine Studie über die Entwicklung der Hebemaschinen und ihren Einfluß auf Wirtschaftsleben und Kulturgeschichte', 'Kammerer, Otto', '2018-08-04', 10, 'https://www.gutenberg.org/ebooks/57636', 'de', 8684), +(19486, 'Kyphosis and other Variations in Soft-shelled Turtles', 'Smith, Hobart M. (Hobart Muir)', '2010-08-08', 9, 'https://www.gutenberg.org/ebooks/33373', 'en', 7451), +(19487, 'The Greville Memoirs, Part 3 (of 3), Volume 2 (of 2)\r\nA Journal of the Reign of Queen Victoria from 1852 to 1860', 'Greville, Charles', '2013-10-09', 27, 'https://www.gutenberg.org/ebooks/40681', 'en', 2135), +(19488, 'Dave Dawson at Truk', 'Bowen, Robert Sidney', '2013-01-01', 30, 'https://www.gutenberg.org/ebooks/41753', 'en', 1004), +(19489, 'Népdalok és mondák (3. kötet)', 'Erdélyi, János', '2012-05-07', 7, 'https://www.gutenberg.org/ebooks/39649', 'hu', 2), +(19490, 'The Atlantic Monthly, Volume 18, No. 108, October, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2008-04-28', 24, 'https://www.gutenberg.org/ebooks/25216', 'en', 1227), +(19491, 'Gems of Poetry, for Girls and Boys', 'Unknown', '2004-02-01', 49, 'https://www.gutenberg.org/ebooks/11023', 'en', 1209), +(19492, 'The Canadian Brothers; Or, The Prophecy Fulfilled: A Tale of the Late American War — Volume 1', 'Richardson, Major (John)', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/5106', 'en', 2564), +(19493, 'The Revolt: A Play In One Act', 'Butler, Ellis Parker', '2013-11-18', 5, 'https://www.gutenberg.org/ebooks/44221', 'en', 427), +(19494, 'A Fair Jewess', 'Farjeon, B. L. (Benjamin Leopold)', '2016-10-16', 14, 'https://www.gutenberg.org/ebooks/53296', 'en', 137), +(19495, 'A Catechism of Christian Doctrine', 'Anonymous', '2005-01-01', 111, 'https://www.gutenberg.org/ebooks/14551', 'en', 8685), +(19496, 'The Death of Saul and other Eisteddfod Prize Poems and Miscellaneous Verses', 'Manning, J. C.', '2007-03-15', 8, 'https://www.gutenberg.org/ebooks/20764', 'en', 8), +(19497, 'Rambles and Recollections of an Indian Official', 'Sleeman, William', '2005-03-27', 98, 'https://www.gutenberg.org/ebooks/15483', 'en', 1975), +(19498, 'Science and Culture, and Other Essays', 'Huxley, Thomas Henry', '2016-06-15', 38, 'https://www.gutenberg.org/ebooks/52344', 'en', 814), +(19499, 'A Vendetta of the Desert', 'Scully, W. C. (William Charles)', '2011-07-03', 13, 'https://www.gutenberg.org/ebooks/36601', 'en', 1207); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(19500, 'London in Modern Times\r\nor, Sketches of the English Metropolis during the Seventeenth and Eighteenth Centuries.', 'Unknown', '2011-01-26', 18, 'https://www.gutenberg.org/ebooks/35084', 'en', 8686), +(19501, 'Kenelm Chillingly — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7651', 'en', 137), +(19502, 'Thekla, oder die Flucht nach der Türkei.\nEpilog zum Staatsgefängniß. Nebst zwei andern Novellen.', 'Schrader, August', '2014-08-13', 11, 'https://www.gutenberg.org/ebooks/46576', 'de', 61), +(19503, 'Analytical Studies', 'Balzac, Honoré de', '2005-07-04', 29, 'https://www.gutenberg.org/ebooks/16206', 'en', 1451), +(19504, 'Plotting in Pirate Seas', 'Rolt-Wheeler, Francis', '2007-07-10', 29, 'https://www.gutenberg.org/ebooks/22033', 'en', 8687), +(19505, 'The Pearl of the Andes: A Tale of Love and Adventure', 'Aimard, Gustave', '2013-09-28', 21, 'https://www.gutenberg.org/ebooks/43838', 'en', 48), +(19506, 'The Brass Bound Box', 'Raymond, Evelyn', '2009-04-06', 23, 'https://www.gutenberg.org/ebooks/28509', 'en', 61), +(19507, 'Kalliit hunajan pisarat Kalliosta Kristuksesta\neli Lyhykäinen varoitussana kaikille pyhille ja syntisille', 'T. W. (Thomas Wilcox)', '2015-11-09', 5, 'https://www.gutenberg.org/ebooks/50413', 'fi', 6957), +(19508, 'The Undying Past', 'Sudermann, Hermann', '2010-10-28', 11, 'https://www.gutenberg.org/ebooks/34156', 'en', 282), +(19509, 'Fiesco; or, the Genoese Conspiracy: A Tragedy', 'Schiller, Friedrich', '2004-12-08', 38, 'https://www.gutenberg.org/ebooks/6783', 'en', 5127), +(19510, 'The Madness of Philip, and Other Tales of Childhood', 'Bacon, Josephine Daskam', '2017-07-21', 13, 'https://www.gutenberg.org/ebooks/55161', 'en', 2811), +(19511, 'The Life of Gordon, Volume II', 'Boulger, Demetrius Charles', '2008-08-30', 9, 'https://www.gutenberg.org/ebooks/26493', 'en', 8688), +(19512, 'Round the Red Lamp', 'Doyle, Arthur Conan', '2005-08-01', 4, 'https://www.gutenberg.org/ebooks/8619', 'en', 1563), +(19513, 'Report of the Proceedings at the Examination of Charles G. Davis, Esq., on the Charge of Aiding and Abetting in the Rescue of a Fugitive Slave: Held in Boston, in February, 1851.', 'United States. Circuit Court (Massachusetts)', '2010-02-27', 22, 'https://www.gutenberg.org/ebooks/31424', 'en', 8689), +(19514, 'La pêcheuse d\'âmes', 'Sacher-Masoch, Leopold, Ritter von', '2013-06-21', 10, 'https://www.gutenberg.org/ebooks/43004', 'fr', 61), +(19515, 'Recollections and Letters of General Robert E. Lee', 'Lee, Robert E. (Robert Edward)', '2000-09-01', 92, 'https://www.gutenberg.org/ebooks/2323', 'en', 8690), +(19516, 'Agulha em Palheiro\nQuinta edição', 'Castelo Branco, Camilo', '2008-12-16', 22, 'https://www.gutenberg.org/ebooks/27541', 'pt', 3856), +(19517, 'Poems by Adam Lindsay Gordon', 'Gordon, Adam Lindsay', '2008-06-29', 88, 'https://www.gutenberg.org/ebooks/258', 'en', 8691), +(19518, 'Rosa Mundi and Other Stories', 'Dell, Ethel M. (Ethel May)', '2004-10-17', 23, 'https://www.gutenberg.org/ebooks/13774', 'en', 797), +(19519, 'The Ontario Readers: Third Reader', 'Ontario. Department of Education', '2016-04-09', 3, 'https://www.gutenberg.org/ebooks/51707', 'en', 1019), +(19520, 'Further Adventures of Quincy Adams Sawyer and Mason Corner Folks', 'Pidgin, Charles Felton', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7497', 'en', 539), +(19521, 'The Awakening of Spring: A Tragedy of Childhood', 'Wedekind, Frank', '2011-02-11', 246, 'https://www.gutenberg.org/ebooks/35242', 'en', 493), +(19522, 'Life of Sir William Wallace of Elderslie, Vol. 2 (of 2)', 'Carrick, John D. (John Donald)', '2014-12-14', 12, 'https://www.gutenberg.org/ebooks/47662', 'en', 8692), +(19523, 'Frederick Douglass on Reconstruction', 'Douglass, Frederick', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6545', 'en', 5784), +(19524, 'Abdallah eli nelilehtinen apila: Arabialainen kertomus', 'Laboulaye, Édouard', '2006-08-02', 14, 'https://www.gutenberg.org/ebooks/18966', 'fi', 8693), +(19525, 'The Iron Trevet; or, Jocelyn the Champion: A Tale of the Jacquerie', 'Sue, Eugène', '2010-11-21', 12, 'https://www.gutenberg.org/ebooks/34390', 'en', 8694), +(19526, 'Lodusky', 'Burnett, Frances Hodgson', '2007-11-04', 18, 'https://www.gutenberg.org/ebooks/23327', 'en', 797), +(19527, 'Many Thoughts of Many Minds\nA Treasury of Quotations from the Literature of Every Land and Every Age', NULL, '2005-11-20', 49, 'https://www.gutenberg.org/ebooks/17112', 'en', 1026), +(19528, 'The Age of Big Business: A Chronicle of the Captains of Industry', 'Hendrick, Burton Jesse', '2002-01-01', 30, 'https://www.gutenberg.org/ebooks/3037', 'en', 8695), +(19529, 'Gaston Darboux: Biographie, Bibliographie analytique des écrits', 'Lebon, Ernest', '2013-03-11', 8, 'https://www.gutenberg.org/ebooks/42310', 'fr', 8696), +(19530, 'Maksimilian Aukusti Myhrberg', 'Krohn, Julius', '2006-08-20', 17, 'https://www.gutenberg.org/ebooks/19088', 'fi', 8697), +(19531, 'Pomona\'s Travels\r\nA Series of Letters to the Mistress of Rudder Grange from her Former Handmaiden', 'Stockton, Frank Richard', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/12460', 'en', 533), +(19532, 'Tristán o el pesimismo', 'Palacio Valdés, Armando', '2008-09-19', 23, 'https://www.gutenberg.org/ebooks/26655', 'es', 1696), +(19533, 'Notes on Novelists, with Some Other Notes', 'James, Henry', '2019-08-01', 484, 'https://www.gutenberg.org/ebooks/60040', 'en', 8698), +(19534, 'The American Empire', 'Nearing, Scott', '2009-01-12', 33, 'https://www.gutenberg.org/ebooks/27787', 'en', 207), +(19535, 'The Fleets at War', 'Hurd, Archibald', '2017-03-03', 20, 'https://www.gutenberg.org/ebooks/54275', 'en', 8699), +(19536, 'The Hound of Heaven', 'Thompson, Francis', '2009-12-21', 85, 'https://www.gutenberg.org/ebooks/30730', 'en', 54), +(19537, 'The Man Who Could Not Lose', 'Davis, Richard Harding', '1999-05-01', 9, 'https://www.gutenberg.org/ebooks/1760', 'en', 179), +(19538, 'Pond and Stream', 'Ransome, Arthur', '2012-08-08', 95, 'https://www.gutenberg.org/ebooks/40447', 'en', 8700), +(19539, 'Lady into Fox', 'Garnett, David', '2003-11-01', 87, 'https://www.gutenberg.org/ebooks/10337', 'en', 2634), +(19540, 'Owen Clancy\'s Happy Trail; Or, The Motor Wizard in California', 'Standish, Burt L.', '2008-01-01', 10, 'https://www.gutenberg.org/ebooks/24102', 'en', 128), +(19541, 'The Cathedral Towns and Intervening Places of England, Ireland and Scotland:\r\nA Description of Cities, Cathedrals, Lakes, Mountains, Ruins, and Watering-places.', 'Silloway, Thomas W. (Thomas William)', '2014-06-07', 19, 'https://www.gutenberg.org/ebooks/45909', 'en', 2364), +(19542, 'Mazeppa', 'Whishaw, Frederick', '2018-02-08', 5, 'https://www.gutenberg.org/ebooks/56522', 'en', 8701), +(19543, 'The Funny Side of Physic\r\nOr, The Mysteries of Medicine, Presenting the Humorous and Serious Sides of Medical Practice. An Exposé of Medical Humbugs, Quacks, and Charlatans in All Ages and All Countries.', 'Crabtre, Addison Darre', '2012-12-10', 48, 'https://www.gutenberg.org/ebooks/41595', 'en', 3854), +(19544, 'Atom Drive', 'Fontenay, Charles L.', '2010-04-20', 95, 'https://www.gutenberg.org/ebooks/32067', 'en', 4350), +(19545, 'The Tale of Timmy Tiptoes', 'Potter, Beatrix', '2005-01-25', 97, 'https://www.gutenberg.org/ebooks/14797', 'en', 625), +(19546, 'Love Works Wonders: A Novel', 'Brame, Charlotte M.', '2010-09-24', 8, 'https://www.gutenberg.org/ebooks/33989', 'en', 61), +(19547, 'Tietoja maailman kansoista, heidän tavoista, uskonnoista ja vaiheista', 'Forsman, Jaakko', '2016-09-14', 11, 'https://www.gutenberg.org/ebooks/53050', 'fi', 7033), +(19548, 'In a Mysterious Way', 'Warner, Anne', '2011-09-23', 15, 'https://www.gutenberg.org/ebooks/37515', 'en', 61), +(19549, 'The Thick of the Fray at Zeebrugge, April 1918', 'Westerman, Percy F. (Percy Francis)', '2014-03-14', 17, 'https://www.gutenberg.org/ebooks/45135', 'en', 8702), +(19550, 'Culture and Anarchy', 'Arnold, Matthew', '2003-07-01', 238, 'https://www.gutenberg.org/ebooks/4212', 'en', 4089), +(19551, 'The Missing Ship: The Log of the \"Ouzel\" Galley', 'Kingston, William Henry Giles', '2007-05-15', 19, 'https://www.gutenberg.org/ebooks/21470', 'en', 324), +(19552, 'Erwachen und Bestimmung: Eine Station: Gedichte', 'Weber, Carl Maria', '2016-05-29', 7, 'https://www.gutenberg.org/ebooks/52182', 'de', 8), +(19553, 'Port-Tarascon\nDernières aventures de l\'illustre Tartarin', 'Daudet, Alphonse', '2005-04-17', 27, 'https://www.gutenberg.org/ebooks/15645', 'fr', 687), +(19554, 'Punchinello, Volume 2, No. 33, November 12, 1870', 'Various', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10105', 'en', 372), +(19555, 'Iron Making in the Olden Times\nas instanced in the Ancient Mines, Forges, and Furnaces of The Forest of Dean', 'Nicholls, H. G. (Henry George)', '2008-01-16', 15, 'https://www.gutenberg.org/ebooks/24330', 'en', 8703), +(19556, 'The Fortunes of Philippa: A School Story', 'Brazil, Angela', '2010-08-09', 31, 'https://www.gutenberg.org/ebooks/33387', 'en', 62), +(19557, 'The Lock and Key Library: The Most Interesting Stories of All Nations: North Europe — Russian — Swedish — Danish — Hungarian', NULL, '1998-12-01', 153, 'https://www.gutenberg.org/ebooks/1552', 'en', 61), +(19558, 'Nurse Elisia', 'Fenn, George Manville', '2012-09-05', 5, 'https://www.gutenberg.org/ebooks/40675', 'en', 7779), +(19559, 'Cathedral Cities of Spain: 60 Reproductions from Original Water Colours', 'Collins, W. W. (William Wiehe)', '2010-05-05', 11, 'https://www.gutenberg.org/ebooks/32255', 'en', 8704), +(19560, 'Venomous Arthropod Handbook\nEnvenomization Symptoms/Treatment, Identification, Biology and Control', 'Biery, Terry L.', '2018-03-09', 41, 'https://www.gutenberg.org/ebooks/56710', 'en', 8705), +(19561, 'After Waterloo: Reminiscences of European Travel 1815-1819', 'Frye, William Edward', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/10939', 'en', 1408), +(19562, 'Ovind: A Story of Country Life in Norway', 'Bjørnson, Bjørnstjerne', '2011-10-11', 7, 'https://www.gutenberg.org/ebooks/37727', 'en', 286), +(19563, 'Manners for Men', 'Humphry, Mrs.', '2016-10-11', 23, 'https://www.gutenberg.org/ebooks/53262', 'en', 8706), +(19564, 'Nouvelles histoires extraordinaires', 'Poe, Edgar Allan', '2007-03-10', 36, 'https://www.gutenberg.org/ebooks/20790', 'fr', 8707), +(19565, 'Lady Cadogan\'s Illustrated Games of Solitaire or Patience\nNew Revised Edition, including American Games', 'Cadogan, Adelaide, Lady', '2007-05-30', 66, 'https://www.gutenberg.org/ebooks/21642', 'en', 8708), +(19566, 'Väter und Söhne', 'Turgenev, Ivan Sergeevich', '2019-06-15', 39, 'https://www.gutenberg.org/ebooks/59758', 'de', 1582), +(19567, 'The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 4\nBooks 13, 14, 15, 16, 17 and 18', NULL, '2005-03-26', 73, 'https://www.gutenberg.org/ebooks/15477', 'en', 1804), +(19568, 'Riverby', 'Burroughs, John', '2014-04-02', 34, 'https://www.gutenberg.org/ebooks/45307', 'en', 318), +(19569, 'Arcadian Adventures with the Idle Rich', 'Leacock, Stephen', '2003-05-01', 55, 'https://www.gutenberg.org/ebooks/4020', 'en', 781), +(19570, 'Franz Schubert : The Story of the Boy Who Wrote Beautiful Songs', 'Tapper, Thomas', '2011-01-25', 39, 'https://www.gutenberg.org/ebooks/35070', 'en', 8709), +(19571, 'Clutterbuck\'s Treasure', 'Whishaw, Frederick', '2014-08-13', 18, 'https://www.gutenberg.org/ebooks/46582', 'en', 1380), +(19572, 'Gedancken von Schertzen', 'Meier, Georg Friedrich', '2016-03-23', 6, 'https://www.gutenberg.org/ebooks/51535', 'de', 5399), +(19573, 'The Billow and the Rock', 'Martineau, Harriet', '2007-10-20', 73, 'https://www.gutenberg.org/ebooks/23115', 'en', 2389), +(19574, 'Political and Literary essays, 1908-1913', 'Cromer, Evelyn Baring, Earl of', '2005-12-16', 28, 'https://www.gutenberg.org/ebooks/17320', 'en', 7868), +(19575, 'The Gamekeeper at Home: Sketches of natural history and rural life (Illustrated)', 'Jefferies, Richard', '2014-11-24', 12, 'https://www.gutenberg.org/ebooks/47450', 'en', 8710), +(19576, 'History of the Revolt of the Netherlands — Volume 02', 'Schiller, Friedrich', '2004-10-01', 10, 'https://www.gutenberg.org/ebooks/6777', 'en', 3372), +(19577, 'George Washington, Volume I', 'Lodge, Henry Cabot', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/12652', 'en', 1009), +(19578, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 03\r\nGreece to the Peloponnesian War', NULL, '2017-07-24', 31, 'https://www.gutenberg.org/ebooks/55195', 'en', 346), +(19579, 'The Merry Adventures of Robin Hood', 'Pyle, Howard', '2008-09-01', 8, 'https://www.gutenberg.org/ebooks/26467', 'en', 8307), +(19580, 'Moby Pronunciation List', 'Ward, Grady', '2002-05-01', 21, 'https://www.gutenberg.org/ebooks/3205', 'en', 7557), +(19581, 'Atchoo! Sneezes from a Hilarious Vaudevillian', 'Niblo, George', '2013-02-18', 5, 'https://www.gutenberg.org/ebooks/42122', 'en', 190), +(19582, 'Revolution', 'Reynolds, Mack', '2007-12-20', 39, 'https://www.gutenberg.org/ebooks/23929', 'en', 8711), +(19583, 'Susan', 'Oldmeadow, Ernest', '2015-03-05', 13, 'https://www.gutenberg.org/ebooks/48418', 'en', 348), +(19584, 'The Gorgeous Isle: A Romance; Scene-- Nevis, B.W.I. 1842', 'Atherton, Gertrude Franklin Horn', '2009-11-19', 17, 'https://www.gutenberg.org/ebooks/30502', 'en', 8712), +(19585, 'Contes, Tome II', 'Aulnoy, Madame d\' (Marie-Catherine)', '2006-05-10', 18, 'https://www.gutenberg.org/ebooks/18368', 'fr', 7174), +(19586, 'Best Lincoln stories, tersely told', 'Gallaher, J. E. (James Ernst)', '2017-01-24', 2, 'https://www.gutenberg.org/ebooks/54047', 'en', 2597), +(19587, 'Minkä mitäkin Italiasta', 'Aho, Juhani', '2004-10-18', 32, 'https://www.gutenberg.org/ebooks/13780', 'fi', 1896), +(19588, 'Restricted Tool', 'Morehart, Malcolm B.', '2010-05-31', 28, 'https://www.gutenberg.org/ebooks/32631', 'en', 179), +(19589, 'The Iraq Study Group Report', 'Iraq Study Group (U.S.)', '2008-06-03', 21, 'https://www.gutenberg.org/ebooks/25686', 'en', 8713), +(19590, 'Œuvres complètes de Guy de Maupassant - volume 11', 'Maupassant, Guy de', '2018-01-14', 32, 'https://www.gutenberg.org/ebooks/56374', 'fr', 642), +(19591, 'Fine Feathers\nShip\'s Company, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/10561', 'en', 1902), +(19592, 'Wit and Wisdom of Don Quixote', 'Cervantes Saavedra, Miguel de', '2008-03-04', 73, 'https://www.gutenberg.org/ebooks/24754', 'en', 8714), +(19593, 'King Henry the Eighth', 'Shakespeare, William', '1997-12-01', 16, 'https://www.gutenberg.org/ebooks/1136', 'en', 8715), +(19594, 'Church Reform\r\nThe Only Means to That End, Stated in a Letter to Sir Robert Peel, Bart., First Lord of the Treasury', 'Carlile, Richard', '2012-07-11', 11, 'https://www.gutenberg.org/ebooks/40211', 'en', 3792), +(19595, 'Christie Redfern\'s Troubles', 'Robertson, Margaret M. (Margaret Murray)', '2007-04-27', 13, 'https://www.gutenberg.org/ebooks/21226', 'en', 8716), +(19596, 'The Keeper of the Door', 'Dell, Ethel M. (Ethel May)', '2005-02-10', 18, 'https://www.gutenberg.org/ebooks/15013', 'en', 61), +(19597, 'The New England Historical & Genealogical Register, Vol. 1, No. 2, April 1847', 'Various', '2014-05-26', 24, 'https://www.gutenberg.org/ebooks/45763', 'en', 8717), +(19598, 'The Adventures of Harry Richmond — Volume 1', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4444', 'en', 2588), +(19599, 'Ormond; Or, The Secret Witness. Volume 3 (of 3)', 'Brown, Charles Brockden', '2011-05-31', 13, 'https://www.gutenberg.org/ebooks/36291', 'en', 348), +(19600, 'The Story of My Life — Volume 04', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5596', 'en', 7159), +(19601, 'Caught by the Turks', 'Yeats-Brown, Francis', '2011-09-07', 26, 'https://www.gutenberg.org/ebooks/37343', 'en', 8718), +(19602, 'Burlesque Plays and Poems', NULL, '2016-11-26', 11, 'https://www.gutenberg.org/ebooks/53606', 'en', 1088), +(19603, 'Life of Napoleon Bonaparte, Volume IV.', 'Scott, Walter', '2015-05-02', 27, 'https://www.gutenberg.org/ebooks/48840', 'en', 1941), +(19604, 'Louis Philippe\nMakers of History Series', 'Abbott, John S. C. (John Stevens Cabot)', '2009-02-26', 32, 'https://www.gutenberg.org/ebooks/28199', 'en', 8719), +(19605, 'General Max Shorter', 'Neville, Kris', '2007-11-20', 25, 'https://www.gutenberg.org/ebooks/23571', 'en', 26), +(19606, 'The Moving Picture Boys on the War Front\nOr, The Hunt for the Stolen Army Films', 'Appleton, Victor', '2006-02-10', 26, 'https://www.gutenberg.org/ebooks/17744', 'en', 3200), +(19607, 'Mémoires touchant la vie et les écrits de Marie de Rabutin-Chantal, (1/6)', 'Walckenaer, C. A. (Charles Athanase)', '2015-09-30', 12, 'https://www.gutenberg.org/ebooks/50083', 'fr', 1870), +(19608, 'Liukas-kielinen: Komedia viidessä näytöksessä', 'Picard, L.-B. (Louis-Benoît)', '2014-10-03', 23, 'https://www.gutenberg.org/ebooks/47034', 'fi', 907), +(19609, 'Masterpieces of American Wit and Humor', NULL, '2004-08-01', 48, 'https://www.gutenberg.org/ebooks/6313', 'en', 190), +(19610, 'The Little Vanities of Mrs. Whittaker: A Novel', 'Winter, John Strange', '2011-02-27', 16, 'https://www.gutenberg.org/ebooks/35414', 'en', 434), +(19611, 'Das Nest der Zaunkönige\nErzählung aus dem Anfang des 11. Jahrhunderts', 'Freytag, Gustav', '2016-02-08', 11, 'https://www.gutenberg.org/ebooks/51151', 'de', 4038), +(19612, 'Leiðarvísir í ástamálum\r\nII. fyrir ungar stúlkur', 'Jónína Sigríður Jónsdóttir', '2005-09-15', 6, 'https://www.gutenberg.org/ebooks/16696', 'is', 8720), +(19613, 'Some Conditions of Child Life in England', 'Waugh, Benjamin', '2010-04-05', 16, 'https://www.gutenberg.org/ebooks/31888', 'en', 8721), +(19614, 'Die Ströme des Namenlos', 'Waiblinger, Emma', '2015-09-17', 23, 'https://www.gutenberg.org/ebooks/49992', 'de', 549), +(19615, 'Congregationalism in the Court Suburb', 'Stoughton, John', '2013-08-18', 5, 'https://www.gutenberg.org/ebooks/43494', 'en', 8722), +(19616, 'Astounding Stories, March, 1931', 'Various', '2009-10-03', 132, 'https://www.gutenberg.org/ebooks/30166', 'en', 2527), +(19617, 'Dog Breaking\r\nThe Most Expeditious, Certain, and Easy Method, Whether Great Excellence or Only Mediocrity Be Required, With Odds and Ends for Those Who Love the Dog and Gun', 'Hutchinson, W. N. (William Nelson)', '2014-12-29', 26, 'https://www.gutenberg.org/ebooks/47808', 'en', 8723), +(19618, 'Realidad: Novela en cinco Jornadas', 'Pérez Galdós, Benito', '2017-03-25', 56, 'https://www.gutenberg.org/ebooks/54423', 'es', 2729), +(19619, 'Death Valley in \'49\r\nImportant chapter of California pioneer history. The autobiography of a pioneer, detailing his life from a humble home in the Green Mountains to the gold mines of California; and particularly reciting the sufferings of the band of men, women and children who gave \"Death Valley\" its name', 'Manly, William Lewis', '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/12236', 'en', 8724), +(19620, '\'Jesus Himself\'', 'Murray, Andrew', '2008-07-07', 33, 'https://www.gutenberg.org/ebooks/26003', 'en', 8725), +(19621, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of Montaigne', 'Montaigne, Michel de', '2003-01-01', 10, 'https://www.gutenberg.org/ebooks/3661', 'en', 1026), +(19622, 'The World English Bible (WEB): 1 John', 'Anonymous', '2005-06-01', 28, 'https://www.gutenberg.org/ebooks/8289', 'en', 3902), +(19623, 'The Million-Dollar Suitcase', 'Newberry, Perry', '2009-08-31', 39, 'https://www.gutenberg.org/ebooks/29877', 'en', 128), +(19624, 'Punch, or the London Charivari, Volume 107, August 11, 1894', 'Various', '2013-04-15', 7, 'https://www.gutenberg.org/ebooks/42546', 'en', 134), +(19625, 'Nineteen Centuries of Drink in England: A History', 'French, Richard Valpy', '2014-10-26', 46, 'https://www.gutenberg.org/ebooks/47206', 'en', 8726), +(19626, 'Jack Winters\' Gridiron Chums', 'Overton, Mark', '2004-07-01', 16, 'https://www.gutenberg.org/ebooks/6121', 'en', 5031), +(19627, 'The Atlantic Monthly, Volume 18, No. 107, September, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-12-05', 23, 'https://www.gutenberg.org/ebooks/23743', 'en', 1227), +(19628, 'A Rudimentary Treatise on Clocks, Watches and Bells', 'Grimthorpe, Edmund Beckett, Baron', '2006-01-22', 67, 'https://www.gutenberg.org/ebooks/17576', 'en', 8727), +(19629, 'Bertha Garlan', 'Schnitzler, Arthur', '2006-02-01', 22, 'https://www.gutenberg.org/ebooks/9955', 'en', 6085), +(19630, 'Double Standard', 'Coppel, Alfred', '2016-03-05', 39, 'https://www.gutenberg.org/ebooks/51363', 'en', 2004), +(19631, 'Marjorie\'s New Friend', 'Wells, Carolyn', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/8887', 'en', 62), +(19632, 'Sophonisba\nTragedie tresexcellente, tant pour l\'argument, que pour\nle poly langage et graves sentences dont elle est ornée', 'Trissino, Giovanni Giorgio', '2009-06-30', 23, 'https://www.gutenberg.org/ebooks/29279', 'fr', 8728), +(19633, 'Punch, or the London Charivari, Vol. 104, March 11, 1893', 'Various', '2007-09-20', 11, 'https://www.gutenberg.org/ebooks/22691', 'en', 134), +(19634, 'Kirot: Yhdeksan-katkelmainen unelma', 'Linnankoski, Johannes', '2004-07-07', 41, 'https://www.gutenberg.org/ebooks/12838', 'fi', 402), +(19635, 'A Philosophical Dictionary, Volume 06', 'Voltaire', '2011-03-28', 17, 'https://www.gutenberg.org/ebooks/35626', 'en', 7152), +(19636, 'Mental diseases: a public health problem', 'May, James Vance', '2017-04-26', 52, 'https://www.gutenberg.org/ebooks/54611', 'en', 6555), +(19637, 'The Broom-Squire', 'Baring-Gould, S. (Sabine)', '2009-10-28', 24, 'https://www.gutenberg.org/ebooks/30354', 'en', 8729), +(19638, 'The Modern Regime, Volume 1', 'Taine, Hippolyte', '2008-06-22', 31, 'https://www.gutenberg.org/ebooks/2581', 'en', 8730), +(19639, 'The Three Cities Trilogy: Paris, Complete', 'Zola, Émile', '2005-10-01', 35, 'https://www.gutenberg.org/ebooks/9169', 'en', 560), +(19640, 'Let \'Em Breathe Space!', 'Del Rey, Lester', '2010-02-16', 76, 'https://www.gutenberg.org/ebooks/31286', 'en', 26), +(19641, 'The Royal Road to Health; Or, the Secret of Health Without Drugs', 'Tyrrell, Chas. A. (Charles Alfred)', '2002-10-01', 13, 'https://www.gutenberg.org/ebooks/3453', 'en', 8731), +(19642, 'Mondo kaj koro\nPoemoj de K. de Kalocsay', 'Kalocsay, K. (Kálmán)', '2013-05-23', 24, 'https://www.gutenberg.org/ebooks/42774', 'eo', 8), +(19643, 'Essays on some unsettled Questions of Political Economy', 'Mill, John Stuart', '2004-04-01', 80, 'https://www.gutenberg.org/ebooks/12004', 'en', 1745), +(19644, 'Transfusión', 'Vedia, Enrique de', '2008-08-08', 20, 'https://www.gutenberg.org/ebooks/26231', 'es', 1353), +(19645, 'Marco Paul\'s Voyages and Travels; Vermont', 'Abbott, Jacob', '2004-03-01', 39, 'https://www.gutenberg.org/ebooks/11681', 'en', 8732), +(19646, 'The Two Maps of Europe, and Some Other Aspects of the Great War', 'Belloc, Hilaire', '2017-12-08', 19, 'https://www.gutenberg.org/ebooks/56146', 'en', 335), +(19647, 'The Life of St. Paul', 'Stalker, James', '2007-06-14', 63, 'https://www.gutenberg.org/ebooks/21828', 'en', 8733), +(19648, 'Canada To-day and To-morrow', 'Copping, Arthur E. (Arthur Edward)', '2019-07-17', 118, 'https://www.gutenberg.org/ebooks/59932', 'en', 8734), +(19649, 'Human Error', 'Jones, Raymond F.', '2010-05-17', 16, 'https://www.gutenberg.org/ebooks/32403', 'en', 26), +(19650, 'The History of Cuba, vol. 3', 'Johnson, Willis Fletcher', '2011-11-26', 13, 'https://www.gutenberg.org/ebooks/38139', 'en', 995), +(19651, 'Bulchevy\'s Book of English Verse', NULL, '1998-05-01', 117, 'https://www.gutenberg.org/ebooks/1304', 'en', 54), +(19652, 'Monograms & Ciphers', 'Turbayne, A. A. (Albert Angus)', '2012-06-18', 78, 'https://www.gutenberg.org/ebooks/40023', 'en', 8735), +(19653, 'The Autobiography of Lieutenant-General Sir Harry Smith, Baronet of Aliwal on the Sutlej, G.C.B.', 'Smith, Harry George Wakelyn, Sir', '2018-05-05', 51, 'https://www.gutenberg.org/ebooks/57094', 'en', 8736), +(19654, 'Open Source Democracy: How online communication is changing offline politics', 'Rushkoff, Douglas', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/10753', 'en', 3003), +(19655, 'Faithfully Yours', 'Tabakow, Lou', '2008-02-10', 29, 'https://www.gutenberg.org/ebooks/24566', 'en', 179), +(19656, 'Aunt Affable\'s Story of Old Mother Bantry and Her Cat', 'Anonymous', '2014-05-01', 4, 'https://www.gutenberg.org/ebooks/45551', 'en', 8642), +(19657, 'Outpost', 'Austin, Jane G. (Jane Goodwin)', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/4676', 'en', 61), +(19658, 'Wonder-Box Tales', 'Ingelow, Jean', '2007-04-08', 24, 'https://www.gutenberg.org/ebooks/21014', 'en', 1007), +(19659, 'A New Conscience and an Ancient Evil', 'Addams, Jane', '2005-03-01', 32, 'https://www.gutenberg.org/ebooks/15221', 'en', 2611), +(19660, 'England in the Days of Old', 'Andrews, William', '2012-02-17', 24, 'https://www.gutenberg.org/ebooks/38905', 'en', 226), +(19661, 'Film Truth; November, 1920', 'Anonymous', '2016-11-02', 31, 'https://www.gutenberg.org/ebooks/53434', 'en', 8737), +(19662, 'Lost Sir Massingberd: A Romance of Real Life. v. 2/2', 'Payn, James', '2011-08-23', 8, 'https://www.gutenberg.org/ebooks/37171', 'en', 61), +(19663, 'Bellefleur: Roman d\'un comédien au XVIIe siècle', 'Nion, François de', '2013-12-21', 6, 'https://www.gutenberg.org/ebooks/44483', 'fr', 687), +(19664, 'An Encore', 'Deland, Margaret Wade Campbell', '2009-07-01', 32, 'https://www.gutenberg.org/ebooks/29284', 'en', 48), +(19665, 'Musical Memories', 'Saint-Saëns, Camille', '2005-08-07', 46, 'https://www.gutenberg.org/ebooks/16459', 'en', 8738), +(19666, 'The Swamp Doctor\'s Adventures in The South-West\r\nContaining the Whole of The Louisiana Swamp Doctor; Streaks of Squatter Life; and Far-Western Scenes; In a Series of Forty-Two Humorous Southern and Western Sketches, Descriptive of Incidents and Character', 'Robb, John S.', '2014-07-19', 48, 'https://www.gutenberg.org/ebooks/46329', 'en', 8739), +(19667, 'La Daniella, Vol. I.', 'Sand, George', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/13917', 'fr', 298), +(19668, 'The Man with the Double Heart', 'Hine, Muriel', '2010-12-20', 8, 'https://www.gutenberg.org/ebooks/34709', 'en', 61), +(19669, 'The Ranch at the Wolverine', 'Bower, B. M.', '2009-03-19', 23, 'https://www.gutenberg.org/ebooks/28356', 'en', 315), +(19670, 'Notes and Queries, Number 174, February 26, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 9, 'https://www.gutenberg.org/ebooks/42789', 'en', 105), +(19671, 'Mam\'selle Jo', 'Comstock, Harriet T. (Harriet Theresa)', '2015-07-04', 8, 'https://www.gutenberg.org/ebooks/49361', 'en', 8740), +(19672, 'The Bible, King James version, Book 46: 1 Corinthians', 'Anonymous', '2005-04-01', 27, 'https://www.gutenberg.org/ebooks/8046', 'en', 8741), +(19673, 'The Woman\'s Way', 'Garvice, Charles', '2006-09-30', 20, 'https://www.gutenberg.org/ebooks/19411', 'en', 48), +(19674, 'The Deluge', 'Phillips, David Graham', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/7832', 'en', 1660), +(19675, 'The Reporter Who Made Himself King', 'Davis, Richard Harding', '1996-01-01', 12, 'https://www.gutenberg.org/ebooks/407', 'en', 8742), +(19676, 'The Second Deluge', 'Serviss, Garrett Putman', '2005-10-01', 37, 'https://www.gutenberg.org/ebooks/9194', 'en', 26), +(19677, 'The Best of the World\'s Classics, Restricted to prose. Volume I (of X) - Greece', NULL, '2007-03-26', 55, 'https://www.gutenberg.org/ebooks/20907', 'en', 19), +(19678, 'Obesity, or Excessive Corpulence: The Various Causes and the Rational Means of Cure', 'Dancel, J.-F. (Jean-François)', '2018-04-29', 21, 'https://www.gutenberg.org/ebooks/57069', 'en', 8743), +(19679, 'Nicht da, nicht dort', 'Ehrenstein, Albert', '2011-07-26', 19, 'https://www.gutenberg.org/ebooks/36862', 'de', 422), +(19680, 'The Young Castellan: A Tale of the English Civil War', 'Fenn, George Manville', '2008-05-12', 47, 'https://www.gutenberg.org/ebooks/25449', 'en', 4665), +(19681, 'La guerre injuste: lettres d\'un Espagnol', 'Palacio Valdés, Armando', '2012-02-29', 19, 'https://www.gutenberg.org/ebooks/39016', 'fr', 6227), +(19682, 'My Queen: A Weekly Journal for Young Women. Issue 4, October 20, 1900\nMarion Marlowe\'s Noble Work; or, The Tragedy at the Hospital', 'Sheldon, Lurana', '2018-10-04', 7, 'https://www.gutenberg.org/ebooks/58021', 'en', 8744), +(19683, 'Universal Brotherhood, Volume XIII, No. 11, February 1899\r\nA Magazine Devoted to the Brotherhood of Humanity, the Theosophical Movement, Philosophy, Science and Art', 'Various', '2018-09-06', 7, 'https://www.gutenberg.org/ebooks/57855', 'en', 4225), +(19684, 'The Day of the Dog', 'McCutcheon, George Barr', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/5759', 'en', 323), +(19685, 'Money (L\'Argent)', 'Zola, Émile', '2018-04-16', 44, 'https://www.gutenberg.org/ebooks/56987', 'en', 6781), +(19686, 'A Select Collection of Old English Plays, Volume 11', NULL, '2013-01-27', 11, 'https://www.gutenberg.org/ebooks/41930', 'en', 1088), +(19687, 'The Black Man\'s Place in South Africa', 'Nielsen, Peter, active 1922-1937', '2005-02-04', 30, 'https://www.gutenberg.org/ebooks/14900', 'en', 8745), +(19688, 'Ειρηνικά', 'Polemes, Ioannes', '2012-03-21', 17, 'https://www.gutenberg.org/ebooks/39224', 'el', 8746), +(19689, 'Jules of the Great Heart\r\n\"Free\" Trapper and Outlaw in the Hudson Bay Region in the Early Days', 'Mott, Lawrence', '2018-01-18', 7, 'https://www.gutenberg.org/ebooks/56389', 'en', 8747), +(19690, 'Bunny Brown and His Sister Sue in the Sunny South', 'Hope, Laura Lee', '2007-01-07', 20, 'https://www.gutenberg.org/ebooks/20309', 'en', 8748), +(19691, 'The Rosary', 'Anonymous', '2018-10-30', 17, 'https://www.gutenberg.org/ebooks/58213', 'en', 6891), +(19692, 'Round the Corner\r\nBeing the Life and Death of Francis Christopher Folyat, Bachelor of Divinity, and Father of a Large Family', 'Cannan, Gilbert', '2016-08-05', 27, 'https://www.gutenberg.org/ebooks/52729', 'en', 55), +(19693, 'An Introduction to the Study of Comparative Religion', 'Jevons, F. B. (Frank Byron)', '2010-04-03', 34, 'https://www.gutenberg.org/ebooks/31875', 'en', 655), +(19694, 'The Big Bow Mystery', 'Zangwill, Israel', '2009-02-23', 105, 'https://www.gutenberg.org/ebooks/28164', 'en', 128), +(19695, 'Under the Ensign of the Rising Sun: A Story of the Russo-Japanese War', 'Collingwood, Harry', '2009-01-27', 26, 'https://www.gutenberg.org/ebooks/27910', 'en', 6190), +(19696, 'Life and marvelous adventures of Wild Bill, the Scout\r\nbeing a true an exact history of all the sanguinary combats and hair-breadth escapes of the most famous scout and spy America ever produced.', 'Buel, James W. (James William)', '2014-09-21', 43, 'https://www.gutenberg.org/ebooks/46927', 'en', 8749), +(19697, 'Aesop\'s Fables - Volume 08', 'Aesop', '2006-10-26', 7, 'https://www.gutenberg.org/ebooks/19623', 'en', 7140), +(19698, 'Culture & Ethnology', 'Lowie, Robert Harry', '2015-06-06', 23, 'https://www.gutenberg.org/ebooks/49153', 'en', 5720), +(19699, 'The World English Bible (WEB): 2 Corinthians', 'Anonymous', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8274', 'en', 7343), +(19700, 'A Thrilling Narrative of the Minnesota Massacre and the Sioux War of 1862-63\r\nGraphic Accounts of the Siege of Fort Ridgely, Battles of Birch Coolie, Wood Lake, Big Mound, Stony Lake, Dead Buffalo Lake and Missouri River', 'Connolly, A. P. (Alonzo P.)', '2016-05-03', 10, 'https://www.gutenberg.org/ebooks/51990', 'en', 4838), +(19701, 'Bugle Blasts\r\nRead before the Ohio Commandery of the Military Order of the Loyal Legion of the United States', 'Crane, William E. (William Edmund)', '2010-01-23', 6, 'https://www.gutenberg.org/ebooks/31049', 'en', 8750), +(19702, 'Green Grew the Lasses', 'Wainwright, Ruth Laura', '2016-01-04', 23, 'https://www.gutenberg.org/ebooks/50842', 'en', 424), +(19703, 'A Counterfeit Presentment; and, The Parlour Car', 'Howells, William Dean', '2013-08-14', 10, 'https://www.gutenberg.org/ebooks/43469', 'en', 2455), +(19704, 'Ruecas de Marfil (Novelas)', 'Espina, Concha', '2015-01-26', 18, 'https://www.gutenberg.org/ebooks/48081', 'es', 1384), +(19705, 'The Road to Frontenac', 'Merwin, Samuel', '2009-05-24', 9, 'https://www.gutenberg.org/ebooks/28958', 'en', 1890), +(19706, 'The Return of Peter Grimm', 'Belasco, David', '2004-08-29', 55, 'https://www.gutenberg.org/ebooks/13319', 'en', 8751), +(19707, 'The Square Root of 10', 'Nemiroff, Robert J.', '1996-08-01', 17, 'https://www.gutenberg.org/ebooks/635', 'en', 1044), +(19708, 'Literary Fables of Yriarte', 'Iriarte, Tomás de', '2012-05-07', 24, 'https://www.gutenberg.org/ebooks/39640', 'en', 8752), +(19709, 'The History of Don Quixote, Volume 2, Part 30', 'Cervantes Saavedra, Miguel de', '2004-07-24', 4, 'https://www.gutenberg.org/ebooks/5933', 'en', 89), +(19710, 'The School Friends; Or, Nothing New', 'Kingston, William Henry Giles', '2012-09-06', 20, 'https://www.gutenberg.org/ebooks/40688', 'en', 195), +(19711, 'For the Major: A Novelette', 'Woolson, Constance Fenimore', '2012-02-08', 42, 'https://www.gutenberg.org/ebooks/38792', 'en', 1061), +(19712, 'U.S. Copyright Renewals, 1957 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11816', 'en', 4170), +(19713, 'Obras posthumas', 'Tolentino, Nicolau', '2011-07-03', 8, 'https://www.gutenberg.org/ebooks/36608', 'pt', 1638), +(19714, 'Boat-Building and Boating', 'Beard, Daniel Carter', '2013-11-18', 113, 'https://www.gutenberg.org/ebooks/44228', 'en', 2355), +(19715, 'Darwinism (1889)\r\nAn exposition of the theory of natural selection, with some of its applications', 'Wallace, Alfred Russel', '2005-01-02', 59, 'https://www.gutenberg.org/ebooks/14558', 'en', 4602), +(19716, 'A Parisian Sultana, Vol. 1 (of 3)', 'Belot, Adolphe', '2019-01-12', 8, 'https://www.gutenberg.org/ebooks/58677', 'en', 560), +(19717, 'All About Coffee', 'Ukers, William H. (William Harrison)', '2009-04-04', 278, 'https://www.gutenberg.org/ebooks/28500', 'en', 8753), +(19718, 'Our Little French Cousin', 'McManus, Blanche', '2013-09-28', 15, 'https://www.gutenberg.org/ebooks/43831', 'en', 8754), +(19719, 'Brazil and La Plata: The personal record of a cruise', 'Stewart, C. S. (Charles Samuel)', '2017-06-11', 12, 'https://www.gutenberg.org/ebooks/54886', 'en', 8755), +(19720, 'Stranga heredaĵo: Romano originale verkita', 'Luyken, Heinrich August', '2017-11-13', 22, 'https://www.gutenberg.org/ebooks/55954', 'eo', 8756), +(19721, 'Kenelm Chillingly — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-24', 32, 'https://www.gutenberg.org/ebooks/7658', 'en', 137), +(19722, 'The Girl\'s Own Paper, Vol. VIII: No. 356, October 23, 1886.', 'Various', '2006-05-15', 22, 'https://www.gutenberg.org/ebooks/18395', 'en', 563), +(19723, 'Ao de Leve', 'Camacho, Brito', '2011-01-15', 8, 'https://www.gutenberg.org/ebooks/34963', 'pt', 2716), +(19724, '1995 United States Congressional Address Book', 'United States', '1995-04-01', 23, 'https://www.gutenberg.org/ebooks/251', 'en', 8757), +(19725, 'The art of promoting the growth of the cucumber and melon\nin a series of directions for the best means to be adopted\nin bringing them to a complete state of perfection', 'Watkins, Thomas', '2008-12-16', 22, 'https://www.gutenberg.org/ebooks/27548', 'en', 8758), +(19726, 'Fossils: A Story of the Rocks and Their Record of Prehistoric Life', 'Markman, Harvey C.', '2017-07-22', 17, 'https://www.gutenberg.org/ebooks/55168', 'en', 8759), +(19727, 'Dotty Dimple\'s Flyaway', 'May, Sophie', '2006-09-11', 13, 'https://www.gutenberg.org/ebooks/19247', 'en', 195), +(19728, 'The Spider and the Fly; or, An Undesired Love', 'Garvice, Charles', '2015-07-28', 15, 'https://www.gutenberg.org/ebooks/49537', 'en', 61), +(19729, 'The Bronze Hand\n1897', 'Green, Anna Katharine', '2007-09-29', 25, 'https://www.gutenberg.org/ebooks/22806', 'en', 574), +(19730, 'Howard Pyle\'s Book of Pirates\r\nFiction, Fact & Fancy Concerning the Buccaneers & Marooners of the Spanish Main', 'Pyle, Howard', '2005-08-01', 0, 'https://www.gutenberg.org/ebooks/8610', 'en', 255), +(19731, 'The Perpetuation of Living Beings, Hereditary Transmission and Variation\r\nLecture IV. (of VI.), \"Lectures to Working Men\", at the Museum of Practical Geology, 1863, on Darwin\'s Work: \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 10, 'https://www.gutenberg.org/ebooks/2924', 'en', 5893), +(19732, 'Lexikon baltischer Künstler', NULL, '2015-12-05', 12, 'https://www.gutenberg.org/ebooks/50628', 'de', 8760), +(19733, 'Fables de La Fontaine, livre second', 'La Fontaine, Jean de', '2009-05-01', 5, 'https://www.gutenberg.org/ebooks/28732', 'en', 4590), +(19734, 'Cruel Barbara Allen\nFrom Coals Of Fire And Other Stories, Volume II. (of III.)', 'Murray, David Christie', '2007-08-01', 27, 'https://www.gutenberg.org/ebooks/22208', 'en', 61), +(19735, 'Flag and Fleet: How the British Navy Won the Freedom of the Seas', 'Wood, William', '2006-11-17', 23, 'https://www.gutenberg.org/ebooks/19849', 'en', 8761), +(19736, 'The life and times of George Villiers, duke of Buckingham, Volume 3 (of 3)\nFrom original and authentic sources', 'Thomson, A. T., Mrs.', '2017-03-06', 8, 'https://www.gutenberg.org/ebooks/54288', 'en', 7706), +(19737, 'History of Friedrich II of Prussia — Volume 18', 'Carlyle, Thomas', '2008-06-16', 31, 'https://www.gutenberg.org/ebooks/2118', 'en', 5033), +(19738, 'The Chautauquan, Vol. 03, June 1883', 'Chautauqua Literary and Scientific Circle', '2015-08-15', 7, 'https://www.gutenberg.org/ebooks/49705', 'en', 1453), +(19739, 'Moral Deliberations in Modern Cinema', 'Vaknin, Samuel', '2005-07-01', 29, 'https://www.gutenberg.org/ebooks/8422', 'en', 8762), +(19740, 'Horace and His Influence', 'Showerman, Grant', '2005-10-04', 17, 'https://www.gutenberg.org/ebooks/16801', 'en', 8763), +(19741, 'Aristophane; Traduction nouvelle, tome premier', 'Aristophanes', '2006-08-18', 80, 'https://www.gutenberg.org/ebooks/19075', 'fr', 8332), +(19742, 'Highroads of Geography\r\nIntroductory Book: Round the World with Father', 'Anonymous', '2004-02-01', 55, 'https://www.gutenberg.org/ebooks/11218', 'en', 7816), +(19743, 'Zoological Illustrations, Volume 2\r\nor, Original Figures and Descriptions of New, Rare, or Interesting Animals', 'Swainson, William', '2012-04-17', 10, 'https://www.gutenberg.org/ebooks/39472', 'en', 8764), +(19744, 'På Scenen — Ifrån Salongen!\nEller Hvad Onkel Blasius Sett Med Obeväpnat Öga Under 40 År', 'Bothén, Gustaf Herman', '2016-08-31', 22, 'https://www.gutenberg.org/ebooks/52943', 'sv', 420), +(19745, 'An Introduction to Mathematics', 'Whitehead, Alfred North', '2012-12-06', 396, 'https://www.gutenberg.org/ebooks/41568', 'en', 1044), +(19746, 'My First Book:\r\nthe experiences of Walter Besant, James Payn, W. Clark Russell, Grant Allen, Hall Caine, George R. Sims, Rudyard Kipling, A. Conan Doyle, M.E. Braddon, F.W. Robinson, H. Rider Haggard, R.M. Ballantyne, I. Zangwill, Morley Roberts, David Christie Murray, Marie Corelli, Jerome K. Jerome, John Strange Winter, Bret Harte, \"Q.\", Robert Buchanan, Robert Louis Stevenson, with an introduction by Jerome K. Jerome.', 'Various', '2010-07-13', 63, 'https://www.gutenberg.org/ebooks/33148', 'en', 8765), +(19747, 'Bobbie, General Manager: A Novel', 'Prouty, Olive Higgins', '2017-01-05', 10, 'https://www.gutenberg.org/ebooks/53891', 'en', 7071), +(19748, 'Iloiset Windsorin rouvat', 'Shakespeare, William', '2014-02-04', 24, 'https://www.gutenberg.org/ebooks/44826', 'fi', 907), +(19749, 'The Automobile Girls in the Berkshires; Or, The Ghost of Lost Man\'s Trail', 'Crane, Laura Dent', '2008-06-16', 24, 'https://www.gutenberg.org/ebooks/25811', 'en', 8766), +(19750, 'Vergißmeinnicht\r\nEin Taschenbuch für den Besuch der sächsischen Schweiz und der angränzenden Theile Böhmens', 'Lindau, Wilhelm Adolf', '2019-05-24', 16, 'https://www.gutenberg.org/ebooks/59597', 'de', 8767), +(19751, 'The Market Reporter, Vol. 4, No. 15', 'Various', '2018-12-09', 6, 'https://www.gutenberg.org/ebooks/58445', 'en', 8768), +(19752, 'Candy-Making Revolutionized: Confectionery from Vegetables', 'Hall, Mary Elizabeth', '2010-09-25', 27, 'https://www.gutenberg.org/ebooks/33974', 'en', 1372), +(19753, 'The Rise of the Dutch Republic — Volume 14: 1568, part I', 'Motley, John Lothrop', '2004-01-01', 48, 'https://www.gutenberg.org/ebooks/4815', 'en', 6577), +(19754, 'Mimi\'s Marriage', 'Veselitskaia, Lidiia Ivanovna', '2018-03-11', 10, 'https://www.gutenberg.org/ebooks/56719', 'en', 1377), +(19755, 'Suicida', 'Castelo Branco, Camilo', '2008-01-17', 19, 'https://www.gutenberg.org/ebooks/24339', 'pt', 8769), +(19756, 'Songs of the Mexican Seas', 'Miller, Joaquin', '2012-02-04', 16, 'https://www.gutenberg.org/ebooks/38766', 'en', 178), +(19757, 'Arnold of Winkelried, the Hero of Sempach', 'Höcker, Gustav', '2019-06-13', 12, 'https://www.gutenberg.org/ebooks/59751', 'en', 8770), +(19758, 'True Stories about Dogs and Cats', 'Follen, Eliza Lee Cabot', '2003-05-01', 28, 'https://www.gutenberg.org/ebooks/4029', 'en', 8771), +(19759, 'The Buccaneer Farmer\nPublished in England under the Title \"Askew\'s Victory\"', 'Bindloss, Harold', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/10930', 'en', 6069), +(19760, 'Novelleja II', 'Suomalainen, Samuli', '2007-03-12', 10, 'https://www.gutenberg.org/ebooks/20799', 'fi', 179), +(19761, 'Flora von Deutschland\r\nEin Hilfsbuch zum Bestimmen der zwischen den deutschen Meeren und den Alpen wildwachsenden und angebauten Pflanzen', 'Fitschen, Jost', '2019-01-13', 11, 'https://www.gutenberg.org/ebooks/58683', 'de', 8772), +(19762, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 9 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 41, 'https://www.gutenberg.org/ebooks/17329', 'en', 7793), +(19763, 'The Life Story of an Otter', 'Tregarthen, J. C. (John Coulson)', '2017-06-09', 11, 'https://www.gutenberg.org/ebooks/54872', 'en', 8773), +(19764, 'Essais d\'un dictionnaire universel\r\ncontenant généralement tous les mots François tant vieux que modernes, & les termes de toutes les Sciences & des Arts', 'Furetière, Antoine', '2014-11-26', 29, 'https://www.gutenberg.org/ebooks/47459', 'fr', 8774), +(19765, 'The Rustle of Silk', 'Hamilton, Cosmo', '2011-01-25', 13, 'https://www.gutenberg.org/ebooks/35079', 'en', 61), +(19766, 'Things as They Are\nMission Work in Southern India', 'Carmichael, Amy', '2009-07-16', 79, 'https://www.gutenberg.org/ebooks/29426', 'en', 2422), +(19767, 'The Eagle\'s Nest\nTen Lectures on the Relation of Natural Science to Art, Given Before the University of Oxford, in Lent Term, 1872', 'Ruskin, John', '2013-06-11', 35, 'https://www.gutenberg.org/ebooks/42917', 'en', 8775), +(19768, 'Sunday under Three Heads', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9736', 'en', 8776), +(19769, 'Studies in the Epistle of James', 'Robertson, A. T.', '2015-03-05', 12, 'https://www.gutenberg.org/ebooks/48411', 'en', 8777), +(19770, 'A Matter of Proportion', 'Walker, Anne', '2007-12-19', 37, 'https://www.gutenberg.org/ebooks/23920', 'en', 2564), +(19771, 'Great Britain and the American Civil War', 'Adams, Ephraim Douglass', '2004-10-18', 49, 'https://www.gutenberg.org/ebooks/13789', 'en', 3522), +(19772, 'A Narrative of the expedition of Hernando de Soto into Florida published at Evora in 1557', 'Knight of Elvas', '2011-01-18', 45, 'https://www.gutenberg.org/ebooks/34997', 'en', 8778), +(19773, 'Operation: Outer Space', 'Leinster, Murray', '2006-05-10', 81, 'https://www.gutenberg.org/ebooks/18361', 'en', 8779), +(19774, 'The New Gresham Encyclopedia. Estremoz to Felspar\r\nVolume 4, Part 3', 'Various', '2011-04-12', 14, 'https://www.gutenberg.org/ebooks/35845', 'en', 1081), +(19775, 'The Westerners', 'White, Stewart Edward', '2011-02-13', 14, 'https://www.gutenberg.org/ebooks/34399', 'en', 7095), +(19776, 'The Game of Rat and Dragon', 'Linebarger, Paul Myron Anthony', '2009-08-05', 162, 'https://www.gutenberg.org/ebooks/29614', 'en', 26), +(19777, 'The Lerouge Case', 'Gaboriau, Emile', '2006-04-13', 122, 'https://www.gutenberg.org/ebooks/3802', 'en', 128), +(19778, 'Oscar\nThe Boy Who Had His Own Way', 'Aimwell, Walter', '2006-04-11', 8, 'https://www.gutenberg.org/ebooks/18153', 'en', 8780), +(19779, 'Lehtisiä mietekirjastani', 'Topelius, Zacharias', '2019-08-03', 82, 'https://www.gutenberg.org/ebooks/60049', 'fi', 1130), +(19780, 'A Queda d\'um Anjo: Romance', 'Castelo Branco, Camilo', '2006-03-05', 40, 'https://www.gutenberg.org/ebooks/17927', 'pt', 671), +(19781, 'Punch, or the London Charivari, Vol. 98, March 29, 1890', 'Various', '2009-12-22', 14, 'https://www.gutenberg.org/ebooks/30739', 'en', 134), +(19782, 'Micah Clarke\r\nHis Statement as made to his three grandchildren Joseph, Gervas and Reuben During the Hard Winter of 1734', 'Doyle, Arthur Conan', '2005-12-01', 69, 'https://www.gutenberg.org/ebooks/9504', 'en', 1982), +(19783, 'Paroni von Münchhausenin retket ja seikkailut', 'Raspe, Rudolf Erich', '2015-04-01', 7, 'https://www.gutenberg.org/ebooks/48623', 'fi', 637), +(19784, 'The Expositor\'s Bible: The Book of Joshua', 'Blaikie, William Garden', '2013-03-13', 15, 'https://www.gutenberg.org/ebooks/42319', 'en', 8781), +(19785, 'Punch, or the London Charivari, Volume 99, November 8, 1890', 'Various', '2004-05-01', 1, 'https://www.gutenberg.org/ebooks/12469', 'en', 134), +(19786, 'The Great Round World and What Is Going On In It, Vol. 2, No. 11, March 17, 1898\nA Weekly Magazine for Boys and Girls', 'Various', '2006-08-19', 20, 'https://www.gutenberg.org/ebooks/19081', 'en', 1), +(19787, 'Record of Medals of Honor issued to the officers and enlisted men of the United States Navy, Marine Corps and Coast Guard, 1862-1923', 'United States. Bureau of Naval Personnel', '2014-06-06', 16, 'https://www.gutenberg.org/ebooks/45900', 'en', 8782), +(19788, 'Sidelights on Chinese Life', 'Macgowan, J. (John)', '2012-04-20', 24, 'https://www.gutenberg.org/ebooks/39486', 'en', 8783), +(19789, 'The Crisis of Eighteen Hundred and Sixty-One in the Government of the United States.\r\nIts Cause, and How It Should Be Met', 'Streight, Abel D.', '2012-01-11', 8, 'https://www.gutenberg.org/ebooks/38554', 'en', 8784), +(19790, 'Harper\'s Round Table, February 18, 1896', 'Various', '2017-01-02', 0, 'https://www.gutenberg.org/ebooks/53865', 'en', 668), +(19791, 'The Comedy of Errors', 'Shakespeare, William', '1999-06-01', 46, 'https://www.gutenberg.org/ebooks/1769', 'en', 8785), +(19792, 'A Military Dictionary and Gazetteer\r\nComprising ancient and modern military technical terms, historical accounts of all North American Indians, as well as ancient warlike tribes; also notices of battles from the earliest period to the present time, with a concise explanation of terms used in heraldry and the offices thereof. The work also gives valuable geographical information. Compiled from the best authorities of all nations. With an appendix containing the Articles of war, etc.', 'Wilhelm, Thomas', '2019-05-20', 69, 'https://www.gutenberg.org/ebooks/59563', 'en', 5252), +(19793, 'Αθανάσης Διάκος - Αστραπόγιαννος', 'Valaorites, Aristoteles', '2010-06-17', 19, 'https://www.gutenberg.org/ebooks/32852', 'el', 8786), +(19794, 'The South Sea Whaler', 'Kingston, William Henry Giles', '2007-05-15', 20, 'https://www.gutenberg.org/ebooks/21479', 'en', 195), +(19795, 'In Story-land', 'Harrison, Elizabeth', '2010-09-22', 8, 'https://www.gutenberg.org/ebooks/33980', 'en', 1817), +(19796, 'To Save Earth', 'Ludwig, Edward W.', '2016-09-16', 28, 'https://www.gutenberg.org/ebooks/53059', 'en', 26), +(19797, 'Mike Marble: His Crotchets and Oddities.', 'Woodworth, Francis C. (Francis Channing)', '2008-03-29', 13, 'https://www.gutenberg.org/ebooks/24937', 'en', 1123), +(19798, 'Punch, or the London Charivari, Vol. 104, April 1, 1893', 'Various', '2007-09-21', 13, 'https://www.gutenberg.org/ebooks/22698', 'en', 134), +(19799, 'The Story of the Great War, Volume 2\r\nHistory of the European War from Official Sources', NULL, '2009-06-29', 90, 'https://www.gutenberg.org/ebooks/29270', 'en', 335), +(19800, 'Det hvide Hus', 'Bang, Herman', '2004-07-06', 7, 'https://www.gutenberg.org/ebooks/12831', 'da', 6055), +(19801, 'His Sombre Rivals', 'Roe, Edward Payson', '2004-07-01', 29, 'https://www.gutenberg.org/ebooks/6128', 'en', 403), +(19802, 'Oesterreich im Jahre 2020: Socialpolitischer Roman', 'Neupauer, Josef von', '2015-07-08', 11, 'https://www.gutenberg.org/ebooks/49395', 'de', 8787), +(19803, 'Vixen, Volume III.', 'Braddon, M. E. (Mary Elizabeth)', '2008-08-09', 19, 'https://www.gutenberg.org/ebooks/26238', 'en', 2019), +(19804, 'The Last of the Huggermuggers', 'Cranch, Christopher Pearse', '2004-11-01', 27, 'https://www.gutenberg.org/ebooks/6914', 'en', 323), +(19805, 'Scènes de la vie de jeunesse: Nouvelles', 'Murger, Henri', '2006-06-08', 10, 'https://www.gutenberg.org/ebooks/18537', 'fr', 8788), +(19806, 'Æsthetic as science of expression and general linguistic', 'Croce, Benedetto', '2017-04-28', 13, 'https://www.gutenberg.org/ebooks/54618', 'en', 8789), +(19807, 'Die Erziehung des Menschengeschlechts', 'Lessing, Gotthold Ephraim', '2005-10-01', 35, 'https://www.gutenberg.org/ebooks/9160', 'de', 8790), +(19808, 'Stories by English Authors: Scotland (Selected by Scribners)', NULL, '2006-04-04', 49, 'https://www.gutenberg.org/ebooks/2588', 'en', 8791), +(19809, 'Prayers of the Early Church', NULL, '2015-02-12', 96, 'https://www.gutenberg.org/ebooks/48247', 'en', 8792), +(19810, 'Legends of Loudoun\r\nAn account of the history and homes of a border county of Virginia\'s Northern Neck', 'Williams, Harrison', '2011-11-25', 23, 'https://www.gutenberg.org/ebooks/38130', 'en', 8793), +(19811, 'Southern Spain, Painted by Trevor Haddon, Described by A. F. Calvert', 'Calvert, Albert Frederick', '2011-11-06', 21, 'https://www.gutenberg.org/ebooks/37944', 'en', 1514), +(19812, 'History of Julius Caesar', 'Abbott, Jacob', '2004-03-01', 175, 'https://www.gutenberg.org/ebooks/11688', 'en', 2904), +(19813, 'Benjamin Franklin, Self-Revealed, Volume 1 (of 2)\r\nA Biographical and Critical Study Based Mainly on his own Writings', 'Bruce, Wiliam Cabell', '2011-08-15', 16, 'https://www.gutenberg.org/ebooks/36896', 'en', 854), +(19814, 'The Mark of Cain', 'Lang, Andrew', '2007-06-12', 29, 'https://www.gutenberg.org/ebooks/21821', 'en', 61), +(19815, 'Punch, or the London Charivari, Vol. 107, September 8, 1894', 'Various', '2012-09-21', 28, 'https://www.gutenberg.org/ebooks/40816', 'en', 134); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(19816, 'Cecil Castlemaine\'s Gage, Lady Marabout\'s Troubles, and Other Stories', 'Ouida', '2011-08-23', 14, 'https://www.gutenberg.org/ebooks/37178', 'en', 3092), +(19817, 'Adrift in the City; or, Oliver Conrad\'s Plucky Fight', 'Alger, Horatio, Jr.', '2018-04-12', 29, 'https://www.gutenberg.org/ebooks/56973', 'en', 195), +(19818, 'The History of the Fifty-ninth Regiment Illinois Volunteers', 'Lathrop, David', '2014-05-01', 16, 'https://www.gutenberg.org/ebooks/45558', 'en', 8794), +(19819, 'Aristophanes', 'Collins, W. Lucas (William Lucas)', '2019-03-21', 15, 'https://www.gutenberg.org/ebooks/59107', 'en', 8795), +(19820, 'Lady Good-for-Nothing: A Man\'s Portrait of a Woman', 'Quiller-Couch, Arthur', '2005-03-02', 24, 'https://www.gutenberg.org/ebooks/15228', 'en', 98), +(19821, 'Dual Control\nShip\'s Company, Part 8.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/10568', 'en', 1902), +(19822, 'Die letzte Freude', 'Ball-Hennings, Emmy', '2012-07-12', 23, 'https://www.gutenberg.org/ebooks/40218', 'de', 549), +(19823, 'The Lonely Ones', 'Ludwig, Edward W.', '2011-12-12', 13, 'https://www.gutenberg.org/ebooks/38302', 'en', 616), +(19824, 'Uncle Noah\'s Christmas Inspiration', 'Dalrymple, Leona', '2005-05-15', 21, 'https://www.gutenberg.org/ebooks/15826', 'en', 585), +(19825, 'In the Dark', 'Clark, Dale', '2010-06-01', 14, 'https://www.gutenberg.org/ebooks/32638', 'en', 179), +(19826, 'Everybody\'s Guide to Money Matters\r\nWith a description of the various investments chiefly dealt in on the stock exchange, and the mode of dealing therein', 'Cotton, William, F.S.A., of Exeter', '1999-09-01', 20, 'https://www.gutenberg.org/ebooks/1903', 'en', 8796), +(19827, 'Harper\'s Round Table, September 15, 1896', 'Various', '2019-04-23', 6, 'https://www.gutenberg.org/ebooks/59335', 'en', 668), +(19828, 'Amenities of Literature\nConsisting of Sketches and Characters of English Literature', 'Disraeli, Isaac', '2011-06-01', 52, 'https://www.gutenberg.org/ebooks/36298', 'en', 8765), +(19829, 'Cases of Organic Diseases of the Heart', 'Warren, John Collins', '2008-10-07', 11, 'https://www.gutenberg.org/ebooks/26836', 'en', 2813), +(19830, 'A Tangled Tale', 'Carroll, Lewis', '2009-06-05', 155, 'https://www.gutenberg.org/ebooks/29042', 'en', 8797), +(19831, 'The Train Wire: A Discussion of the Science of Train Dispatching\r\n(Second Edition)', 'Anderson, John Alexander', '2016-02-09', 12, 'https://www.gutenberg.org/ebooks/51158', 'en', 8798), +(19832, 'Cours de philosophie positive. (1/6)', 'Comte, Auguste', '2010-04-04', 47, 'https://www.gutenberg.org/ebooks/31881', 'fr', 3926), +(19833, 'The Boy Scout and Other Stories for Boys', 'Davis, Richard Harding', '2010-01-13', 8, 'https://www.gutenberg.org/ebooks/30953', 'en', 179), +(19834, 'L\'escapade du Miquette', 'Camo, Sans', '2007-11-21', 25, 'https://www.gutenberg.org/ebooks/23578', 'fr', 168), +(19835, 'Frank Armstrong, Drop Kicker', 'Colton, Matthew M.', '2015-05-02', 5, 'https://www.gutenberg.org/ebooks/48849', 'en', 1189), +(19836, 'A Chapter of Adventures', 'Henty, G. A. (George Alfred)', '2009-02-25', 41, 'https://www.gutenberg.org/ebooks/28190', 'en', 8799), +(19837, 'A Georgian Pageant', 'Moore, Frank Frankfort', '2016-05-02', 11, 'https://www.gutenberg.org/ebooks/51964', 'en', 8800), +(19838, 'The World English Bible (WEB): 2 Thessalonians', 'Anonymous', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8280', 'en', 6723), +(19839, 'The Albert N\'Yanza, Great Basin of the Nile, And Explorations of the Nile Sources', 'Baker, Samuel White, Sir', '2003-01-01', 29, 'https://www.gutenberg.org/ebooks/3668', 'en', 8801), +(19840, 'The End of the Tether', 'Conrad, Joseph', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9352', 'en', 1391), +(19841, 'Aus Berg und Tal: Charakterbilder aus dem schweizer. Bauernleben', 'Kiebler, Ulrich', '2015-01-25', 11, 'https://www.gutenberg.org/ebooks/48075', 'de', 8802), +(19842, 'The Poor Plutocrats', 'Jókai, Mór', '2006-06-27', 23, 'https://www.gutenberg.org/ebooks/18705', 'en', 61), +(19843, 'Birds and All Nature, Vol. 5, No. 2, February 1899\r\nIllustrated by Color Photography', 'Various', '2014-12-28', 13, 'https://www.gutenberg.org/ebooks/47801', 'en', 490), +(19844, 'The Case of Wagner, Nietzsche Contra Wagner, and Selected Aphorisms.', 'Nietzsche, Friedrich Wilhelm', '2008-04-07', 260, 'https://www.gutenberg.org/ebooks/25012', 'en', 1464), +(19845, 'Ten Boys from Dickens', 'Sweetser, Kate Dickinson', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11227', 'en', 8803), +(19846, 'Burial Mounds of the Northern Sections of the United States', 'Thomas, Cyrus', '2012-12-04', 14, 'https://www.gutenberg.org/ebooks/41557', 'en', 8804), +(19847, 'Narrative of the March of Co. A, Engineers from Fort Leavenworth, Kansas, to Fort Bridger, Utah, and Return, May 6 to October 3, 1858', 'Seville, William P.', '2010-07-15', 6, 'https://www.gutenberg.org/ebooks/33177', 'en', 8805), +(19848, 'The Missing Link in Modern Spiritualism', 'Underhill, A. Leah (Ann Leah)', '2012-08-13', 25, 'https://www.gutenberg.org/ebooks/40485', 'en', 504), +(19849, 'On Mule Back Thru Central America with the Gospel', 'Crawford, Mattie', '2018-07-01', 9, 'https://www.gutenberg.org/ebooks/57432', 'en', 8806), +(19850, 'Kathleen\'s Diamonds; or, She Loved a Handsome Actor', 'Miller, Alex. McVeigh, Mrs.', '2014-02-01', 28, 'https://www.gutenberg.org/ebooks/44819', 'en', 61), +(19851, 'The International Monthly, Volume 4, No. 2, September, 1851', 'Various', '2011-06-12', 12, 'https://www.gutenberg.org/ebooks/36405', 'en', 162), +(19852, 'Les protestants à Nîmes au temps de l\'Édit de Nantes', 'Boulenger, Jacques', '2016-05-23', 15, 'https://www.gutenberg.org/ebooks/52140', 'fr', 8807), +(19853, 'Little Essays of Love and Virtue', 'Ellis, Havelock', '2005-04-23', 38, 'https://www.gutenberg.org/ebooks/15687', 'en', 5443), +(19854, 'The Cosmic Deflector', 'Coblentz, Stanton A. (Stanton Arthur)', '2010-06-19', 22, 'https://www.gutenberg.org/ebooks/32899', 'en', 179), +(19855, 'Father Stafford', 'Hope, Anthony', '2005-01-22', 20, 'https://www.gutenberg.org/ebooks/14755', 'en', 757), +(19856, 'The Ancient Bronze Implements, Weapons, and Ornaments, of Great Britain and Ireland.', 'Evans, John', '2016-09-19', 22, 'https://www.gutenberg.org/ebooks/53092', 'en', 8808), +(19857, 'Letters to His Friends', 'Robinson, Forbes', '2007-02-11', 6, 'https://www.gutenberg.org/ebooks/20560', 'en', 8809), +(19858, 'The Land of the Blue Flower', 'Burnett, Frances Hodgson', '2004-03-01', 79, 'https://www.gutenberg.org/ebooks/5302', 'en', 1007), +(19859, 'August Strindberg, the Spirit of Revolt: Studies and Impressions', 'Lind-af-Hageby, L. (Lizzy)', '2013-10-24', 14, 'https://www.gutenberg.org/ebooks/44025', 'en', 8810), +(19860, 'La Repubblica di Venezia e la Persia', 'Berchet, Guglielmo', '2010-11-17', 24, 'https://www.gutenberg.org/ebooks/34352', 'it', 8811), +(19861, 'Baby Mine', 'Mayo, Margaret', '1997-03-01', 36, 'https://www.gutenberg.org/ebooks/860', 'en', 705), +(19862, 'King Arthur\'s Socks and Other Village Plays', 'Dell, Floyd', '2004-09-01', 67, 'https://www.gutenberg.org/ebooks/6587', 'en', 402), +(19863, 'Maailman loppu: Romaani ankarasta elämästä avaruudessa', 'Rauhala, K. N. (Kalle Nikodemus)', '2015-12-05', 6, 'https://www.gutenberg.org/ebooks/50617', 'fi', 175), +(19864, 'Fardorougha, The Miser\nThe Works of William Carleton, Volume One', 'Carleton, William', '2005-06-07', 12, 'https://www.gutenberg.org/ebooks/16002', 'en', 440), +(19865, 'Messages from the Epistle to the Hebrews', 'Moule, H. C. G. (Handley Carr Glyn)', '2007-08-04', 16, 'https://www.gutenberg.org/ebooks/22237', 'en', 8812), +(19866, 'Ο Αγαθούλης', 'Voltaire', '2011-02-14', 35, 'https://www.gutenberg.org/ebooks/35280', 'el', 781), +(19867, 'On the Fringe of the Great Fight', 'Nasmith, George Gallie', '2006-11-20', 15, 'https://www.gutenberg.org/ebooks/19876', 'en', 3601), +(19868, '顔氏家訓 — Volume 03 and 04', 'Yan, Zhitui', '2005-02-01', 17, 'https://www.gutenberg.org/ebooks/7455', 'zh', 740), +(19869, 'Across Iceland', 'Bisiker, W. (William)', '2014-09-05', 38, 'https://www.gutenberg.org/ebooks/46772', 'en', 8813), +(19870, 'The Stock Exchange from Within', 'Van Antwerp, William C. (William Clarkson)', '2019-08-09', 631, 'https://www.gutenberg.org/ebooks/60082', 'en', 8814), +(19871, 'The True Story of the American Flag', 'Fow, John Henry', '2009-01-08', 8, 'https://www.gutenberg.org/ebooks/27745', 'en', 1618), +(19872, 'Sketches of the Covenanters', 'McFeeters, J. C. (James Calvin)', '2004-10-01', 16, 'https://www.gutenberg.org/ebooks/13570', 'en', 8815), +(19873, 'Els camins del paradís perdut', 'Riber, Llorenç', '2006-04-18', 14, 'https://www.gutenberg.org/ebooks/18198', 'ca', 61), +(19874, 'Cornell Nature-Study Leaflets\r\nBeing a selection, with revision, from the teachers\' leaflets, home nature-study lessons, junior naturalist monthlies and other publications from the College of Agriculture, Cornell University, Ithaca, N.Y., 1896-1904', 'New York State College of Agriculture', '2013-07-12', 10, 'https://www.gutenberg.org/ebooks/43200', 'en', 5689), +(19875, 'Paul and Virginia', 'Saint-Pierre, Bernardin de', '2006-03-26', 54, 'https://www.gutenberg.org/ebooks/2127', 'en', 48), +(19876, 'Vashti; Or, Until Death Us Do Part', 'Evans, Augusta J. (Augusta Jane)', '2010-03-13', 18, 'https://www.gutenberg.org/ebooks/31620', 'en', 50), +(19877, 'The American Missionary — Volume 35, No. 4, April, 1881', 'Various', '2017-08-16', 2, 'https://www.gutenberg.org/ebooks/55365', 'en', 562), +(19878, 'Principles of Mining: Valuation, Organization and Administration', 'Hoover, Herbert', '2008-09-24', 45, 'https://www.gutenberg.org/ebooks/26697', 'en', 7772), +(19879, 'Four-Fifty Miles to Freedom', 'Yearsley, Kenneth Darlaston', '2015-11-10', 29, 'https://www.gutenberg.org/ebooks/50425', 'en', 8816), +(19880, 'Old Fort Garland', 'Forrest, James T. (James Taylor)', '2014-11-29', 11, 'https://www.gutenberg.org/ebooks/47492', 'en', 8817), +(19881, 'Lives of Eminent Zoologists, from Aristotle to Linnæus\nwith Introductory remarks on the Study of Natural History', 'MacGillivray, William', '2010-10-29', 21, 'https://www.gutenberg.org/ebooks/34160', 'en', 8818), +(19882, 'What Will He Do with It? — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 6, 'https://www.gutenberg.org/ebooks/7667', 'en', 137), +(19883, 'Elsie\'s Winter Trip', 'Finley, Martha', '2014-08-09', 16, 'https://www.gutenberg.org/ebooks/46540', 'en', 246), +(19884, 'Fat and Blood\nAn Essay on the Treatment of Certain Forms of Neurasthenia and Hysteria', 'Mitchell, S. Weir (Silas Weir)', '2005-07-07', 35, 'https://www.gutenberg.org/ebooks/16230', 'en', 8819), +(19885, 'How to Add Ten Years to your Life and to Double Its Satisfactions', 'Curry, S. S. (Samuel Silas)', '2007-07-05', 21, 'https://www.gutenberg.org/ebooks/22005', 'en', 5785), +(19886, 'The Catholic World, Vol. 04, October, 1866 to March, 1867', 'Various', '2013-06-25', 19, 'https://www.gutenberg.org/ebooks/43032', 'en', 96), +(19887, 'The Flag-Raising', 'Wiggin, Kate Douglas Smith', '2000-09-01', 10, 'https://www.gutenberg.org/ebooks/2315', 'en', 179), +(19888, 'The Works of Lord Byron, Vol. 7. Poetry', 'Byron, George Gordon Byron, Baron', '2008-12-20', 53, 'https://www.gutenberg.org/ebooks/27577', 'en', 8), +(19889, 'Ilmojen valloittaja', 'Verne, Jules', '2017-01-31', 11, 'https://www.gutenberg.org/ebooks/54085', 'fi', 8820), +(19890, 'The Philippine Islands, 1493-1898 — Volume 08 of 55\r\n1591-1593\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2004-10-14', 74, 'https://www.gutenberg.org/ebooks/13742', 'en', 8515), +(19891, 'The High School Pitcher; or, Dick & Co. on the Gridley Diamond', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12690', 'en', 6620), +(19892, 'Las Furias', 'Baroja, Pío', '2017-07-20', 24, 'https://www.gutenberg.org/ebooks/55157', 'es', 731), +(19893, 'Messages to Canada', 'Shoghi, Effendi', '2006-09-17', 10, 'https://www.gutenberg.org/ebooks/19278', 'en', 5429), +(19894, 'Old and New London, Volume I\r\nA Narrative of Its History, Its People, and Its Places', 'Thornbury, Walter', '2010-02-26', 81, 'https://www.gutenberg.org/ebooks/31412', 'en', 856), +(19895, 'Arrows of the Chace, vol. 1/2\r\nbeing a collection of scattered letters published chiefly in the daily newspapers 1840-1880', 'Ruskin, John', '2015-07-22', 19, 'https://www.gutenberg.org/ebooks/49508', 'en', 3830), +(19896, 'Jesse Cliffe', 'Mitford, Mary Russell', '2007-10-02', 14, 'https://www.gutenberg.org/ebooks/22839', 'en', 1383), +(19897, 'Half a Hundred Hero Tales of Ulysses and The Men of Old', NULL, '2013-01-03', 41, 'https://www.gutenberg.org/ebooks/41765', 'en', 8821), +(19898, 'La philosophie zoologique avant Darwin', 'Perrier, Edmond', '2010-05-08', 19, 'https://www.gutenberg.org/ebooks/32297', 'fr', 2878), +(19899, 'Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910\nExpansion of Pipes, Paper No. 1167', 'Taggart, Ralph C.', '2008-04-28', 5, 'https://www.gutenberg.org/ebooks/25220', 'en', 8822), +(19900, 'Pantheism, Its Story and Significance\nReligions Ancient and Modern', 'Picton, J. Allanson (James Allanson)', '2004-02-01', 40, 'https://www.gutenberg.org/ebooks/11015', 'en', 8823), +(19901, 'The Chinese Kitten', 'Brown, Edna A.', '2018-07-29', 13, 'https://www.gutenberg.org/ebooks/57600', 'en', 4428), +(19902, 'The Amazing Interlude', 'Rinehart, Mary Roberts', '1999-01-01', 75, 'https://www.gutenberg.org/ebooks/1590', 'en', 579), +(19903, 'Lafcadio Hearn', 'Kennard, Nina H.', '2010-08-03', 16, 'https://www.gutenberg.org/ebooks/33345', 'en', 8824), +(19904, 'Die Jungfrau von Treiden', 'Cammerer, Adelbert', '2007-06-04', 49, 'https://www.gutenberg.org/ebooks/21680', 'de', 510), +(19905, 'Zion: Gedichte', 'Becher, Johannes Robert', '2016-06-19', 8, 'https://www.gutenberg.org/ebooks/52372', 'de', 4162), +(19906, 'U.S. Copyright Renewals, 1964 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11829', 'en', 4170), +(19907, 'A Key to Lord Tennyson\'s \'In Memoriam\'', 'Gatty, Alfred', '2011-07-06', 27, 'https://www.gutenberg.org/ebooks/36637', 'en', 8825), +(19908, 'Don Juan, ou le Festin de pierre', 'Molière', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/5130', 'fr', 907), +(19909, 'Libahunt: Draama wiies vaatuses', 'Kitzberg, August', '2013-11-18', 21, 'https://www.gutenberg.org/ebooks/44217', 'et', 8826), +(19910, 'The Reconstructed School', 'Pearson, Francis B. (Francis Bail)', '2005-01-03', 15, 'https://www.gutenberg.org/ebooks/14567', 'en', 8827), +(19911, 'Elegìe Romane', 'D\'Annunzio, Gabriele', '2019-01-07', 21, 'https://www.gutenberg.org/ebooks/58648', 'it', 8828), +(19912, 'The Journal of Negro History, Volume 2, 1917', 'Various', '2007-03-06', 24, 'https://www.gutenberg.org/ebooks/20752', 'en', 7352), +(19913, 'Götzen-Dämmerung', 'Nietzsche, Friedrich Wilhelm', '2005-01-01', 114, 'https://www.gutenberg.org/ebooks/7203', 'de', 902), +(19914, 'The Copperhead', 'Frederic, Harold', '2014-06-28', 28, 'https://www.gutenberg.org/ebooks/46124', 'en', 8829), +(19915, 'Pictures Don\'t Lie', 'MacLean, Katherine', '2016-02-12', 45, 'https://www.gutenberg.org/ebooks/51193', 'en', 424), +(19916, 'The Lost Treasure of Trevlyn: A Story of the Days of the Gunpowder Plot', 'Everett-Green, Evelyn', '2005-09-05', 39, 'https://www.gutenberg.org/ebooks/16654', 'en', 8830), +(19917, 'Union and Democracy', 'Johnson, Allen', '2007-08-30', 7, 'https://www.gutenberg.org/ebooks/22461', 'en', 8831), +(19918, 'Testimony of the Sonnets as to the Authorship of the Shakespearean Plays and Poems', 'Johnson, Jesse', '2009-06-10', 11, 'https://www.gutenberg.org/ebooks/29089', 'en', 8246), +(19919, 'Papers from Lilliput', 'Priestley, J. B. (John Boynton)', '2015-09-12', 49, 'https://www.gutenberg.org/ebooks/49950', 'en', 3835), +(19920, 'The Mystery of the Ravenspurs\nA Romance and Detective Story of Thibet and England', 'White, Fred M. (Fred Merrick)', '2015-05-05', 44, 'https://www.gutenberg.org/ebooks/48882', 'en', 3909), +(19921, 'Mga Dakilang Pilipino; o ang kaibigan ng mga nagaaral', 'Sevilla, Jose N.', '2006-02-18', 48, 'https://www.gutenberg.org/ebooks/17786', 'tl', 8832), +(19922, 'A New Bat (Genus Pipistrellus) from Northeastern Mexico', 'Baker, Rollin H. (Rollin Harold)', '2010-01-17', 9, 'https://www.gutenberg.org/ebooks/30998', 'en', 2561), +(19923, 'Beadle\'s Dime Song Book No. 4\nA Collection of New and Popular Comic and Sentimental Songs.', 'Various', '2015-09-23', 8, 'https://www.gutenberg.org/ebooks/50041', 'en', 8833), +(19924, 'Seven Legends', 'Keller, Gottfried', '2010-11-29', 27, 'https://www.gutenberg.org/ebooks/34504', 'en', 179), +(19925, 'Le flâneur des deux rives', 'Apollinaire, Guillaume', '2017-09-13', 35, 'https://www.gutenberg.org/ebooks/55533', 'fr', 4252), +(19926, 'Single Life: A Comedy, in Three Acts', 'Buckstone, John Baldwin', '2014-09-21', 9, 'https://www.gutenberg.org/ebooks/46918', 'en', 907), +(19927, 'Elliptic Functions: An Elementary Text-Book for Students of Mathematics', 'Baker, Arthur Latham', '2010-01-25', 70, 'https://www.gutenberg.org/ebooks/31076', 'en', 2584), +(19928, 'Extinct Monsters\nA Popular Account of Some of the Larger Forms of Ancient Animal Life', 'Hutchinson, H. N. (Henry Neville)', '2013-04-23', 29, 'https://www.gutenberg.org/ebooks/42584', 'en', 339), +(19929, 'Intimate China: The Chinese as I Have Seen Them', 'Little, Archibald, Mrs.', '2013-08-13', 26, 'https://www.gutenberg.org/ebooks/43456', 'en', 2773), +(19930, 'Diario de la expedicion reduccional del ano 1780, mandada practicar por orden del Virey de Buenos Aires', 'Arias, Francisco Gavino de', '2009-05-25', 45, 'https://www.gutenberg.org/ebooks/28967', 'es', 8834), +(19931, 'A Roman Lawyer in Jerusalem : First Century', 'Story, William Wetmore', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9399', 'en', 8835), +(19932, 'The Island Pharisees', 'Galsworthy, John', '2006-06-14', 23, 'https://www.gutenberg.org/ebooks/2771', 'en', 8836), +(19933, 'Narrative of a Voyage to India; of a Shipwreck on board the Lady Castlereagh; and a Description of New South Wales', 'Cramp, W. B.', '2008-11-01', 11, 'https://www.gutenberg.org/ebooks/27113', 'en', 885), +(19934, 'Van vijf moderne dichters', 'Scharten, C. Th. (Carel Theodorus)', '2004-08-30', 21, 'https://www.gutenberg.org/ebooks/13326', 'nl', 8), +(19935, 'El Doctor Centeno (Tomo II)', 'Pérez Galdós, Benito', '2018-06-03', 6, 'https://www.gutenberg.org/ebooks/57264', 'es', 1353), +(19936, 'Kuninkaita maanpaossa II', 'Daudet, Alphonse', '2008-03-10', 21, 'https://www.gutenberg.org/ebooks/24796', 'fi', 560), +(19937, 'The Barren Ground Caribou of Keewatin', 'Harper, Francis', '2010-09-14', 10, 'https://www.gutenberg.org/ebooks/33721', 'en', 8837), +(19938, 'Kvinnlighet och erotik II.', 'Leffler, Anne Charlotte', '2012-11-05', 26, 'https://www.gutenberg.org/ebooks/41301', 'sv', 420), +(19939, 'The Man Who Hated Mars', 'Garrett, Randall', '2008-05-30', 50, 'https://www.gutenberg.org/ebooks/25644', 'en', 26), +(19940, 'Shareholders\nDeep Waters, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11471', 'en', 3421), +(19941, 'Snowdrop & Other Tales', 'Grimm, Wilhelm', '2011-09-10', 142, 'https://www.gutenberg.org/ebooks/37381', 'en', 1817), +(19942, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 03', 'Ebers, Georg', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/5554', 'en', 5290), +(19943, 'Punch, or the London Charivari, Vol. 109, July 20, 1895', 'Various', '2014-01-15', 10, 'https://www.gutenberg.org/ebooks/44673', 'en', 134), +(19944, 'Prose Fancies (Second Series)', 'Le Gallienne, Richard', '2004-11-20', 10, 'https://www.gutenberg.org/ebooks/14103', 'en', 472), +(19945, 'The Miraculous Revenge\nLittle Blue Book #215', 'Shaw, Bernard', '2007-01-11', 40, 'https://www.gutenberg.org/ebooks/20336', 'en', 8838), +(19946, 'The Business of Being a Housewife\nA Manual to Promote Household Efficiency and Economy', 'Adams, Jean Prescott', '2016-08-04', 44, 'https://www.gutenberg.org/ebooks/52716', 'en', 3407), +(19947, 'Historia de la literatura y del arte dramático en España, tomo III', 'Schack, Adolf Friedrich von', '2011-05-29', 28, 'https://www.gutenberg.org/ebooks/36253', 'es', 8839), +(19948, 'The Amazing Marriage — Volume 4', 'Meredith, George', '2003-09-01', 12, 'https://www.gutenberg.org/ebooks/4486', 'en', 675), +(19949, 'The Frightened Planet', 'Austen, Sidney', '2010-08-23', 25, 'https://www.gutenberg.org/ebooks/33513', 'en', 179), +(19950, 'The Early Life of Washington\nDesigned for the Instruction and Amusement of the Young', 'Clark, Mary', '2019-02-04', 15, 'https://www.gutenberg.org/ebooks/58822', 'en', 8840), +(19951, '\"Stops\", Or How to Punctuate\r\nA Practical Handbook for Writers and Students', 'Allardyce, Paul', '2007-03-29', 23, 'https://www.gutenberg.org/ebooks/20938', 'en', 8841), +(19952, 'Winning His Wings: A Story of the R.A.F.', 'Westerman, Percy F. (Percy Francis)', '2018-04-27', 39, 'https://www.gutenberg.org/ebooks/57056', 'en', 325), +(19953, 'Double Dealing\nSailor\'s Knots, Part 11.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/10791', 'en', 1902), +(19954, 'Golden Deeds\nStories from History', 'Anonymous', '2008-05-15', 21, 'https://www.gutenberg.org/ebooks/25476', 'en', 8842), +(19955, 'John Caldigate', 'Trollope, Anthony', '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/11643', 'en', 792), +(19956, 'Brother Van', 'Brummitt, Stella Wyatt', '2017-12-16', 2, 'https://www.gutenberg.org/ebooks/56184', 'en', 8843), +(19957, 'Studies in the Art of Rat-catching', 'Barkley, Henry C.', '2012-10-21', 14, 'https://www.gutenberg.org/ebooks/41133', 'en', 6759), +(19958, 'Encyclopaedia Britannica, 11th Edition, \"Horticulture\" to \"Hudson Bay\"\r\nVolume 13, Slice 7', 'Various', '2012-03-02', 22, 'https://www.gutenberg.org/ebooks/39029', 'en', 1081), +(19959, 'Judith of the Godless Valley', 'Morrow, Honoré', '2004-12-12', 9, 'https://www.gutenberg.org/ebooks/14331', 'en', 1426), +(19960, 'The Cross-Cut', 'Cooper, Courtney Ryley', '2006-12-13', 17, 'https://www.gutenberg.org/ebooks/20104', 'en', 8844), +(19961, 'Praetor\'s Lunch', 'Dom', '2004-05-01', 11, 'https://www.gutenberg.org/ebooks/5766', 'en', 3720), +(19962, 'The World\'s Great Sermons, Volume 07: Hale to Farrar', NULL, '2013-12-16', 21, 'https://www.gutenberg.org/ebooks/44441', 'en', 3021), +(19963, 'Chronicles of England, Scotland and Ireland (3 of 6): England (4 of 9)\r\nEdward the Fourth, Earle of March, Sonne and Heire to Richard Duke of Yorke', 'Holinshed, Raphael', '2014-05-05', 32, 'https://www.gutenberg.org/ebooks/45593', 'en', 8845), +(19964, 'Maternità', 'Negri, Ada', '2011-05-08', 12, 'https://www.gutenberg.org/ebooks/36061', 'it', 739), +(19965, 'Clara Barton National Historic Site, Maryland\nHandbook 110', 'United States. National Park Service', '2016-07-08', 8, 'https://www.gutenberg.org/ebooks/52524', 'en', 8846), +(19966, 'My Fire Opal, and Other Tales', 'Brooks, Sarah Warner', '2012-05-27', 5, 'https://www.gutenberg.org/ebooks/39815', 'en', 4448), +(19967, 'Weymouth New Testament in Modern Speech, Philemon', 'Weymouth, Richard Francis', '2005-09-01', 15, 'https://www.gutenberg.org/ebooks/8845', 'en', 7921), +(19968, 'Four Months Besieged: The Story of Ladysmith', 'Pearse, Henry H. S.', '2005-08-07', 24, 'https://www.gutenberg.org/ebooks/16466', 'en', 8847), +(19969, 'Punch, or the London Charivari, Vol. 158, 1920-04-28', 'Various', '2007-09-17', 14, 'https://www.gutenberg.org/ebooks/22653', 'en', 134), +(19970, 'The Sheik: A Novel', 'Hull, E. M. (Edith Maude)', '2004-12-01', 184, 'https://www.gutenberg.org/ebooks/7031', 'en', 48), +(19971, 'Verdi: Man and Musician\nHis Biography with Especial Reference to His English Experiences', 'Crowest, Frederick James', '2014-07-17', 30, 'https://www.gutenberg.org/ebooks/46316', 'en', 5411), +(19972, 'Plays, Acting and Music: A Book Of Theory', 'Symons, Arthur', '2004-11-02', 49, 'https://www.gutenberg.org/ebooks/13928', 'en', 5475), +(19973, 'True Christianity\r\nA Treatise on Sincere Repentence, True Faith, the Holy Walk of the True Christian, Etc.', 'Arndt, Johann', '2010-12-23', 65, 'https://www.gutenberg.org/ebooks/34736', 'en', 2566), +(19974, 'A Little Girl of Long Ago; Or, Hannah Ann\r\nA Sequel to a Little Girl in Old New York', 'Douglas, Amanda M.', '2007-12-09', 45, 'https://www.gutenberg.org/ebooks/23781', 'en', 7471), +(19975, 'Hebrew Literature', NULL, '2009-03-20', 22, 'https://www.gutenberg.org/ebooks/28369', 'en', 8848), +(19976, 'France and England in North America, Part III: The Discovery of the Great West (1870)', 'Parkman, Francis', '2006-02-01', 25, 'https://www.gutenberg.org/ebooks/9997', 'en', 2163), +(19977, 'The Adventures of M. D\'Haricot', 'Clouston, J. Storer (Joseph Storer)', '2015-10-21', 16, 'https://www.gutenberg.org/ebooks/50273', 'en', 637), +(19978, 'Pamela Giraud: A Play in Five Acts', 'Balzac, Honoré de', '2005-05-01', 8, 'https://www.gutenberg.org/ebooks/8079', 'en', 3521), +(19979, 'Missy', 'Gatlin, Dana', '2002-10-01', 17, 'https://www.gutenberg.org/ebooks/3491', 'en', 2739), +(19980, 'A Dear Little Girl', 'Blanchard, Amy Ella', '2010-02-10', 19, 'https://www.gutenberg.org/ebooks/31244', 'en', 62), +(19981, 'Under Many Flags', 'Cronk, Katharine Scherer', '2017-10-08', 3, 'https://www.gutenberg.org/ebooks/55701', 'en', 8849), +(19982, 'Fairy Book', 'May, Sophie', '2008-11-24', 25, 'https://www.gutenberg.org/ebooks/27321', 'en', 1007), +(19983, 'The Collectors\r\nBeing Cases mostly under the Ninth and Tenth Commandments', 'Mather, Frank Jewett', '2004-08-04', 15, 'https://www.gutenberg.org/ebooks/13114', 'en', 4535), +(19984, 'Underwoods', 'Stevenson, Robert Louis', '1996-02-01', 147, 'https://www.gutenberg.org/ebooks/438', 'en', 8), +(19985, 'Theorie und Praxis des Generalstreiks in der modernen Arbeiterbewegung\nInauguraldissertation', 'Georgi, Elsbeth', '2013-09-07', 14, 'https://www.gutenberg.org/ebooks/43664', 'de', 8850), +(19986, 'Polyeucte', 'Corneille, Pierre', '2006-04-04', 65, 'https://www.gutenberg.org/ebooks/2543', 'en', 8851), +(19987, 'Books and Authors\nCurious Facts and Characteristic Sketches', 'Anonymous', '2009-11-02', 27, 'https://www.gutenberg.org/ebooks/30396', 'en', 6170), +(19988, 'The Two Goats and the Sick Monkey', 'Anonymous', '2011-02-27', 10, 'https://www.gutenberg.org/ebooks/35422', 'en', 1423), +(19989, 'Le Rideau levé; ou l\'Education de Laure', 'Mirabeau, Honoré-Gabriel de Riqueti, comte de', '2008-10-07', 104, 'https://www.gutenberg.org/ebooks/26809', 'fr', 1989), +(19990, 'Butterfly 9', 'Keith, Donald', '2016-02-10', 56, 'https://www.gutenberg.org/ebooks/51167', 'en', 26), +(19991, 'The New Pun Book', NULL, '2007-09-03', 64, 'https://www.gutenberg.org/ebooks/22495', 'en', 8852), +(19992, 'Sam Lambert and the New Way Store: A Book for Clothiers and Their Clerks', 'Unknown', '2007-11-19', 12, 'https://www.gutenberg.org/ebooks/23547', 'en', 8853), +(19993, 'Outlines of Creation', 'Noyce, Elisha', '2015-05-04', 6, 'https://www.gutenberg.org/ebooks/48876', 'en', 37), +(19994, 'Mrs. Overtheway\'s Remembrances', 'Ewing, Juliana Horatia Gatty', '2006-02-16', 33, 'https://www.gutenberg.org/ebooks/17772', 'en', 8854), +(19995, 'The Usurper: An Episode in Japanese History', 'Gautier, Judith', '2014-09-29', 39, 'https://www.gutenberg.org/ebooks/47002', 'en', 58), +(19996, 'A Fool and His Money', 'McCutcheon, George Barr', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/6325', 'en', 8855), +(19997, 'Delsarte System of Oratory', 'Delaumosne', '2004-04-01', 30, 'https://www.gutenberg.org/ebooks/12200', 'en', 3184), +(19998, 'Religion and Theology: A Sermon for the Times\r\nPreached in the Parish Church of Crathie, fifth September and in the College Church, St Andrews', 'Tulloch, John', '2008-07-12', 10, 'https://www.gutenberg.org/ebooks/26035', 'en', 2386), +(19999, 'The Mermaid of Druid Lake, and Other Stories', 'Bump, Charles Weathers', '2010-01-26', 32, 'https://www.gutenberg.org/ebooks/31082', 'en', 61), +(20000, 'Wild Beasts and Their Ways, Reminiscences of Europe, Asia, Africa and America — Volume 1', 'Baker, Samuel White, Sir', '2003-01-01', 18, 'https://www.gutenberg.org/ebooks/3657', 'en', 2441), +(20001, 'Johtavat aatteet ihmiskunnan historiassa', 'Yrjö-Koskinen, Yrjö Sakari', '2013-04-21', 10, 'https://www.gutenberg.org/ebooks/42570', 'fi', 2170), +(20002, 'Anecdotes & Incidents of the Deaf and Dumb', 'Roe, W. R. (William Robert)', '2009-08-29', 27, 'https://www.gutenberg.org/ebooks/29841', 'en', 8856), +(20003, 'Past Redemption: A Drama in Four Acts', 'Baker, George M. (George Melville)', '2015-06-12', 9, 'https://www.gutenberg.org/ebooks/49198', 'en', 868), +(20004, 'L\'Immorale: Racconto', 'Butti, Enrico Annibale', '2009-05-29', 24, 'https://www.gutenberg.org/ebooks/28993', 'it', 61), +(20005, 'Prize Orations of the Intercollegiate Peace Association', 'Intercollegiate Peace Association', '2009-10-01', 17, 'https://www.gutenberg.org/ebooks/30150', 'en', 1122), +(20006, 'Half past Alligator', 'Colvin, Donald', '2016-01-10', 30, 'https://www.gutenberg.org/ebooks/50889', 'en', 424), +(20007, 'The Elusive Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2001-08-01', 112, 'https://www.gutenberg.org/ebooks/2785', 'en', 98), +(20008, 'Nuggets in the Devil\'s Punch Bowl, and Other Australian Tales', 'Robertson, Andrew', '2017-03-23', 10, 'https://www.gutenberg.org/ebooks/54415', 'en', 792), +(20009, 'Johnny Crow\'s Party', 'Brooke, L. Leslie (Leonard Leslie)', '2004-01-01', 55, 'https://www.gutenberg.org/ebooks/10557', 'en', 1801), +(20010, 'The Draughtsman\'s Handbook of Plan and Map Drawing\r\nIncluding instructions for the preparation of engineering, architectural, and mechanical drawings.', 'André, George G.', '2018-06-08', 42, 'https://www.gutenberg.org/ebooks/57290', 'en', 8857), +(20011, 'Diggers in the Earth', 'Tappan, Eva March', '2008-03-06', 40, 'https://www.gutenberg.org/ebooks/24762', 'en', 1019), +(20012, 'The First Part of Henry the Sixth', 'Shakespeare, William', '1997-11-01', 31, 'https://www.gutenberg.org/ebooks/1100', 'en', 599), +(20013, 'The love letters of Abelard and Heloise', 'Abelard, Peter', '2012-07-14', 126, 'https://www.gutenberg.org/ebooks/40227', 'en', 8858), +(20014, 'The Atlantic Monthly, Volume 13, No. 76, February, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-05-12', 10, 'https://www.gutenberg.org/ebooks/15819', 'en', 1227), +(20015, 'Encyclopaedia Britannica, 11th Edition, \"Diameter\" to \"Dinarchus\"\r\nVolume 8, Slice 4', 'Various', '2010-05-30', 29, 'https://www.gutenberg.org/ebooks/32607', 'en', 1081), +(20016, 'History of Greece, Volume 01 (of 12)', 'Grote, George', '2018-01-09', 50, 'https://www.gutenberg.org/ebooks/56342', 'en', 6424), +(20017, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nKansas Narratives', 'United States. Work Projects Administration', '2004-03-01', 30, 'https://www.gutenberg.org/ebooks/11485', 'en', 8859), +(20018, 'Legends of the North: The Guidman O\' Inglismill and The Fairy Bride', 'Buchan, Patrick', '2011-09-10', 11, 'https://www.gutenberg.org/ebooks/37375', 'en', 8860), +(20019, 'Sorretun voitto: Historiallinen kertomus', 'Ljungberg, Eva', '2014-01-17', 14, 'https://www.gutenberg.org/ebooks/44687', 'fi', 98), +(20020, 'The Life and Letters of Ogier Ghiselin de Busbecq, Vol. 2 (of 2)', 'Busbecq, Ogier Ghislain de', '2016-11-30', 16, 'https://www.gutenberg.org/ebooks/53630', 'en', 8861), +(20021, 'Thomas Davis, Selections from his Prose and Poetry', 'Davis, Thomas Osborne', '2007-04-24', 28, 'https://www.gutenberg.org/ebooks/21210', 'en', 8), +(20022, 'Prose Fancies', 'Le Gallienne, Richard', '2005-02-12', 11, 'https://www.gutenberg.org/ebooks/15025', 'en', 20), +(20023, 'The Burning Secret', 'Zweig, Stefan', '2014-05-25', 168, 'https://www.gutenberg.org/ebooks/45755', 'en', 6085), +(20024, 'One of Our Conquerors — Volume 2', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4472', 'en', 8862), +(20025, 'Peter Pan in Kensington Gardens', 'Barrie, J. M. (James Matthew)', '1998-05-01', 56, 'https://www.gutenberg.org/ebooks/1332', 'en', 8863), +(20026, 'A Boy Scout\'s Courage', 'Griggs, Edward Howard', '2012-06-17', 24, 'https://www.gutenberg.org/ebooks/40015', 'en', 1002), +(20027, 'Thrilling Adventures by Land and Sea', 'Brayman, James O.', '2004-01-01', 28, 'https://www.gutenberg.org/ebooks/10765', 'en', 8864), +(20028, 'The Rise of Canada, from Barbarism to Wealth and Civilisation. Volume 1', 'Roger, Charles', '2008-02-08', 22, 'https://www.gutenberg.org/ebooks/24550', 'en', 5181), +(20029, 'The Armed Forces Officer\nDepartment of the Army Pamphlet 600-2', 'United States. Department of Defense', '2008-05-15', 34, 'https://www.gutenberg.org/ebooks/25482', 'en', 8865), +(20030, 'The Surprise Book', 'Beard, Patten', '2017-12-12', 13, 'https://www.gutenberg.org/ebooks/56170', 'en', 388), +(20031, 'Every-Day Errors of Speech', 'Meredith, L. P.', '2010-05-19', 13, 'https://www.gutenberg.org/ebooks/32435', 'en', 5238), +(20032, 'Tony, the Hero; Or, A Brave Boy\'s Adventures with a Tramp', 'Alger, Horatio, Jr.', '2019-07-12', 177, 'https://www.gutenberg.org/ebooks/59904', 'en', 1080), +(20033, 'Brotherly House', 'Richmond, Grace S. (Grace Smith)', '2016-10-29', 16, 'https://www.gutenberg.org/ebooks/53402', 'en', 376), +(20034, 'By Canadian Streams', 'Burpee, Lawrence J. (Lawrence Johnstone)', '2012-07-02', 17, 'https://www.gutenberg.org/ebooks/38933', 'en', 8866), +(20035, 'Devil\'s Dice', 'Le Queux, William', '2012-09-22', 19, 'https://www.gutenberg.org/ebooks/40829', 'en', 1079), +(20036, 'The Stories Mother Nature Told Her Children', 'Andrews, Jane', '2004-05-01', 36, 'https://www.gutenberg.org/ebooks/5792', 'en', 37), +(20037, 'The Cricket\'s Friends: Tales Told by the Cricket, Teapot, and Saucepan', 'Johnson, Virginia W. (Virginia Wales)', '2011-08-21', 14, 'https://www.gutenberg.org/ebooks/37147', 'en', 1817), +(20038, 'On Old-World Highways\r\nA Book of Motor Rambles in France and Germany and the Record of a Pilgrimage from Land\'s End to John O\'Groats in Britain', 'Murphy, Thos. D. (Thomas Dowler)', '2014-05-02', 10, 'https://www.gutenberg.org/ebooks/45567', 'en', 3386), +(20039, 'San Francisco During the Eventful Days of April 1906', 'Stetson, James B. (James Burgess)', '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/4640', 'en', 8867), +(20040, 'Ο Αυτοκράτωρ Ηράκλειος', 'Karolides, Paulos', '2011-05-13', 15, 'https://www.gutenberg.org/ebooks/36095', 'el', 8868), +(20041, 'Lessons on Soil', 'Russell, Edward J. (Edward John), Sir', '2007-04-10', 11, 'https://www.gutenberg.org/ebooks/21022', 'en', 3309), +(20042, 'The Real Charlotte', 'Somerville, E. Oe. (Edith Oenone)', '2019-03-27', 19, 'https://www.gutenberg.org/ebooks/59138', 'en', 8869), +(20043, 'Sillankorvan emäntä\nNelinäytöksinen näytelmä - Tapaus länsisuomalaisessa\ntalonpoikaissuvussa 1860-1870-luvulla', 'Kilpi, Hilja', '2005-03-01', 36, 'https://www.gutenberg.org/ebooks/15217', 'fi', 402), +(20044, 'Biribi\nDiscipline militaire', 'Darien, Georges', '2005-08-08', 18, 'https://www.gutenberg.org/ebooks/16492', 'fr', 8870), +(20045, 'The Iliads of Homer\nTranslated according to the Greek', 'Homer', '2016-03-04', 92, 'https://www.gutenberg.org/ebooks/51355', 'en', 4266), +(20046, 'McClure\'s Magazine, Vol. 1, No. 3, August, 1893', 'Various', '2011-03-18', 14, 'https://www.gutenberg.org/ebooks/35610', 'en', 883), +(20047, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 697\nMay 5, 1877', 'Various', '2014-10-29', 9, 'https://www.gutenberg.org/ebooks/47230', 'en', 18), +(20048, 'Success with Small Fruits', 'Roe, Edward Payson', '2004-07-01', 21, 'https://www.gutenberg.org/ebooks/6117', 'en', 8871), +(20049, 'Der Totentanz', NULL, '2007-12-09', 31, 'https://www.gutenberg.org/ebooks/23775', 'de', 6719), +(20050, 'The Flying Machine Boys in the Wilds; Or, The Mystery of the Andes', 'Walton, Frank', '2015-10-23', 19, 'https://www.gutenberg.org/ebooks/50287', 'en', 8872), +(20051, 'Poésies populaires Serbes\nTraduites sur les originaux avec une introduction et des notes', 'Dozon, Auguste', '2006-01-18', 7, 'https://www.gutenberg.org/ebooks/17540', 'fr', 8873), +(20052, 'Elsie\'s Girlhood\nA Sequel to \"Elsie Dinsmore\" and \"Elsie\'s Holidays at Roselands\"', 'Finley, Martha', '2006-02-01', 82, 'https://www.gutenberg.org/ebooks/9963', 'en', 1410), +(20053, 'Under Two Flags', 'Ouida', '2006-04-06', 39, 'https://www.gutenberg.org/ebooks/3465', 'en', 8220), +(20054, 'The Indian Chief: The Story of a Revolution', 'Aimard, Gustave', '2013-05-20', 12, 'https://www.gutenberg.org/ebooks/42742', 'en', 323), +(20055, 'Collected Poems 1901-1918 in Two Volumes. Volume II.', 'De la Mare, Walter', '2004-04-01', 40, 'https://www.gutenberg.org/ebooks/12032', 'en', 54), +(20056, 'In Our Town', 'White, William Allen', '2008-08-07', 14, 'https://www.gutenberg.org/ebooks/26207', 'en', 1426), +(20057, 'Arthur Mervyn; Or, Memoirs of the Year 1793', 'Brown, Charles Brockden', '2006-06-05', 36, 'https://www.gutenberg.org/ebooks/18508', 'en', 8874), +(20058, 'The Scripture Club of Valley Rest; or, Sketches of Everybody\'s Neighbours', 'Habberton, John', '2017-04-29', 17, 'https://www.gutenberg.org/ebooks/54627', 'en', 8875), +(20059, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 02 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-09-12', 7, 'https://www.gutenberg.org/ebooks/43690', 'it', 6107), +(20060, 'Rites and Ritual: A Plea for Apostolic Doctrine and Worship', 'Freeman, Philip', '2015-02-16', 25, 'https://www.gutenberg.org/ebooks/48278', 'en', 3295), +(20061, 'Paul Gerhardt\'s Spiritual Songs\r\nTranslated by John Kelly', 'Gerhardt, Paul', '2009-10-30', 27, 'https://www.gutenberg.org/ebooks/30362', 'en', 8876), +(20062, 'Wild Roses: A Tale of the Rockies', 'Driggs, Howard R. (Howard Roscoe)', '2018-02-07', 5, 'https://www.gutenberg.org/ebooks/56514', 'en', 4872), +(20063, 'The White Wampum', 'Johnson, E. Pauline', '2016-09-05', 14, 'https://www.gutenberg.org/ebooks/52988', 'en', 8877), +(20064, 'On the right of the British line', 'Nobbs, Gilbert', '2010-04-19', 19, 'https://www.gutenberg.org/ebooks/32051', 'en', 2223), +(20065, 'Kodaks and Kodak Supplies, 1914', 'Canadian Kodak Company', '2010-07-16', 40, 'https://www.gutenberg.org/ebooks/33183', 'en', 8878), +(20066, 'Uncle Vanya: Scenes from Country Life in Four Acts', 'Chekhov, Anton Pavlovich', '1999-05-01', 542, 'https://www.gutenberg.org/ebooks/1756', 'en', 4249), +(20067, 'Alamo Ranch: A Story of New Mexico', 'Brooks, Sarah Warner', '2012-08-10', 14, 'https://www.gutenberg.org/ebooks/40471', 'en', 2478), +(20068, 'Who Threw the Overalls in Mrs. Murphy\'s Chowder?', NULL, '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10301', 'en', 8879), +(20069, 'Mushrooms on the Moor', 'Boreham, Frank', '2008-01-03', 17, 'https://www.gutenberg.org/ebooks/24134', 'en', 1130), +(20070, 'In the Heart of the Christmas Pines', 'Dalrymple, Leona', '2014-03-10', 15, 'https://www.gutenberg.org/ebooks/45103', 'en', 585), +(20071, 'Mr. Hogarth\'s Will', 'Spence, Catherine Helen', '2003-07-01', 11, 'https://www.gutenberg.org/ebooks/4224', 'en', 7171), +(20072, 'Favourite Fables in Prose and Verse', NULL, '2007-05-15', 20, 'https://www.gutenberg.org/ebooks/21446', 'en', 1141), +(20073, 'The Day of the Beast', 'Grey, Zane', '2005-04-21', 82, 'https://www.gutenberg.org/ebooks/15673', 'en', 8880), +(20074, 'Kanervaisilta kankahilta 1: Kertomuksia ja kuvauksia', 'Salokannel, Akseli', '2016-09-17', 13, 'https://www.gutenberg.org/ebooks/53066', 'fi', 665), +(20075, 'The Art of War', 'Sunzi, active 6th century B.C.', '2007-01-20', 19, 'https://www.gutenberg.org/ebooks/20594', 'en', 465), +(20076, 'Encyclopaedia Britannica, 11th Edition, \"Geoponici\" to \"Germany\"\r\nVolume 11, Slice 7', 'Various', '2011-09-24', 40, 'https://www.gutenberg.org/ebooks/37523', 'en', 1081), +(20077, 'Le Tour du Monde; Sicile\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Charton, Édouard', '2008-03-24', 13, 'https://www.gutenberg.org/ebooks/24908', 'fr', 1182), +(20078, 'The Monster', 'Saltus, Edgar', '2014-12-13', 13, 'https://www.gutenberg.org/ebooks/47654', 'en', 109), +(20079, 'The Boy Ranchers on the Trail; Or, The Diamond X After Cattle Rustlers', 'Baker, Willard F.', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6573', 'en', 8881), +(20080, 'History of the Decline and Fall of the Roman Empire — Volume 5', 'Gibbon, Edward', '2008-06-07', 216, 'https://www.gutenberg.org/ebooks/894', 'en', 1292), +(20081, 'The Short Cut', 'Gregory, Jackson', '2006-07-31', 57, 'https://www.gutenberg.org/ebooks/18950', 'en', 315), +(20082, 'Beauty and the Beast', 'Unknown', '2007-11-03', 74, 'https://www.gutenberg.org/ebooks/23311', 'en', 1007), +(20083, 'The Atlas of Ancient and Classical Geography', 'Butler, Samuel', '2005-11-21', 136, 'https://www.gutenberg.org/ebooks/17124', 'en', 8882), +(20084, 'The Mentor: American Pioneer Prose Writers,\nVol. 4, Num. 6, Serial No. 106, May 1, 1916', 'Mabie, Hamilton Wright', '2016-04-11', 6, 'https://www.gutenberg.org/ebooks/51731', 'en', 8883), +(20085, 'Itinerary through Corsica\nby its Rail, Carriage & Forest Roads', 'Black, C. B.', '2006-11-20', 18, 'https://www.gutenberg.org/ebooks/19882', 'en', 7348), +(20086, 'A Catalogue of Books in English Later than 1700, Vol. 3\r\nForming a portion of the library of Robert Hoe', NULL, '2011-02-14', 22, 'https://www.gutenberg.org/ebooks/35274', 'en', 8884), +(20087, 'Why I Believe in Poverty as the Richest Experience That Can Come to a Boy', 'Bok, Edward William', '2014-09-06', 22, 'https://www.gutenberg.org/ebooks/46786', 'en', 4065), +(20088, 'An Englishwoman in Utah: The Story of a Life\'s Experience in Mormonism', 'Stenhouse, T. B. H., Mrs.', '2019-08-09', 1025, 'https://www.gutenberg.org/ebooks/60076', 'en', 8885), +(20089, 'The American Missionary — Volume 42, No. 11, November, 1888', 'Various', '2004-10-03', 2, 'https://www.gutenberg.org/ebooks/13584', 'en', 562), +(20090, 'Demoniality; or, Incubi and Succubi', 'Sinistrari, Ludovico Maria', '2017-02-26', 57, 'https://www.gutenberg.org/ebooks/54243', 'en', 8886), +(20091, 'One Young Man\nThe simple and true story of a clerk who enlisted in 1914, who fought on the western front for nearly two years, was severely wounded at the battle of the Somme, and is now on his way back to his desk.', NULL, '2006-03-04', 17, 'https://www.gutenberg.org/ebooks/17918', 'en', 2223), +(20092, 'The Rain Cloud\r\nor, An Account of the Nature, Properties, Dangers and Uses of Rain in Various Parts of the World', 'Tomlinson, Charles', '2009-12-18', 8, 'https://www.gutenberg.org/ebooks/30706', 'en', 8887), +(20093, 'Society\'s Child (lyrics)', 'Ian, Janis', '2002-01-01', 8, 'https://www.gutenberg.org/ebooks/3001', 'en', 8888), +(20094, 'Régi magyar vitézi énekek és elegyes dalok (2. kötet)', 'Thaly, Kálmán', '2013-03-13', 5, 'https://www.gutenberg.org/ebooks/42326', 'hu', 1645), +(20095, 'Historical Record of the Fourth, or the King\'s Own, Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1680, and of Its Subsequent Services to 1839', 'Cannon, Richard', '2017-08-20', 6, 'https://www.gutenberg.org/ebooks/55391', 'en', 8889), +(20096, 'The Troubadours', 'Chaytor, H. J. (Henry John)', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12456', 'en', 8890), +(20097, 'Fruits of Culture', 'Tolstoy, Leo, graf', '2008-09-20', 58, 'https://www.gutenberg.org/ebooks/26663', 'en', 4249), +(20098, 'Old Daniel', 'Hodson, Thomas', '2007-10-20', 11, 'https://www.gutenberg.org/ebooks/23123', 'en', 636), +(20099, 'Letters of a Soldier, 1914-1915', 'Lemercier, Eugène Emmanuel', '2005-12-15', 23, 'https://www.gutenberg.org/ebooks/17316', 'en', 5289), +(20100, 'Edinburgh\nPainted by John Fulleylove; described by Rosaline Masson', 'Masson, Rosaline', '2014-11-26', 18, 'https://www.gutenberg.org/ebooks/47466', 'en', 4460), +(20101, 'Memoirs of the Life of the Rt. Hon. Richard Brinsley Sheridan — Volume 01', 'Moore, Thomas', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6741', 'en', 6196), +(20102, 'Higgins, a Man\'s Christian', 'Duncan, Norman', '2010-11-02', 16, 'https://www.gutenberg.org/ebooks/34194', 'en', 8891), +(20103, 'A Strange Story — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 23, 'https://www.gutenberg.org/ebooks/7693', 'en', 137), +(20104, 'Teddy and Carrots: Two Merchants of Newpaper Row', 'Otis, James', '2011-01-23', 21, 'https://www.gutenberg.org/ebooks/35046', 'en', 3334), +(20105, 'Uran aukaisijat', 'Kauppis-Heikki', '2016-03-20', 12, 'https://www.gutenberg.org/ebooks/51503', 'fi', 175), +(20106, 'The Book of Anecdotes and Budget of Fun;\ncontaining a collection of over one thousand of the most\nlaughable sayings and jokes of celebrated wits and\nhumorists.', 'Various', '2009-07-15', 12, 'https://www.gutenberg.org/ebooks/29419', 'en', 311), +(20107, 'Uno degli onesti: Commedia in un atto', 'Bracco, Roberto', '2013-06-12', 10, 'https://www.gutenberg.org/ebooks/42928', 'it', 407), +(20108, 'Punch, or the London Charivari, Vol. 98, April 12, 1890', 'Various', '2009-11-23', 7, 'https://www.gutenberg.org/ebooks/30534', 'en', 134), +(20109, 'Hard Times', 'Dickens, Charles', '2006-01-01', 10, 'https://www.gutenberg.org/ebooks/9709', 'en', 8892), +(20110, 'The Importance of the Proof-reader\nA Paper read before the Club of Odd Volumes, in Boston, by John Wilson', 'Wilson, John', '2008-12-21', 19, 'https://www.gutenberg.org/ebooks/27583', 'en', 8841), +(20111, 'Ludwig Richter. Ein deutscher Maler und Hausfreund.\nSeine Lebensgeschichte für Jung und Alt erzählt', 'Ninck, Johannes', '2017-01-29', 6, 'https://www.gutenberg.org/ebooks/54071', 'de', 8893), +(20112, 'Lyrics of Earth', 'Lampman, Archibald', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12664', 'en', 8), +(20113, 'A Stable for Nightmares; or, Weird Tales', 'Le Fanu, Joseph Sheridan', '2008-08-28', 71, 'https://www.gutenberg.org/ebooks/26451', 'en', 580), +(20114, 'In the Heart of Africa', 'Baker, Samuel White, Sir', '2002-05-01', 55, 'https://www.gutenberg.org/ebooks/3233', 'en', 8894), +(20115, 'Franz Hals', 'Staley, Edgcumbe', '2013-02-17', 19, 'https://www.gutenberg.org/ebooks/42114', 'en', 8895), +(20116, 'The House by the River', 'Herbert, A. P. (Alan Patrick)', '2013-01-06', 27, 'https://www.gutenberg.org/ebooks/41791', 'en', 1335), +(20117, 'Storia vecchia: Commedia in due atti', 'Giacosa, Giuseppe', '2010-05-05', 17, 'https://www.gutenberg.org/ebooks/32263', 'it', 407), +(20118, 'Harper\'s Round Table, April 7, 1896', 'Various', '2018-03-12', 4, 'https://www.gutenberg.org/ebooks/56726', 'en', 668), +(20119, 'The Vigil of Venus and Other Poems by \"Q\"', 'Quiller-Couch, Arthur', '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10133', 'en', 8), +(20120, 'The Flaming Jewel', 'Chambers, Robert W. (Robert William)', '2008-01-15', 8, 'https://www.gutenberg.org/ebooks/24306', 'en', 323), +(20121, 'Next Door Neighbours: A Comedy; In Three Acts', 'Destouches, Néricault', '2012-02-04', 6, 'https://www.gutenberg.org/ebooks/38759', 'en', 5266), +(20122, 'Boswell\'s Life of Johnson\r\nAbridged and edited, with an introduction by Charles Grosvenor Osgood', 'Boswell, James', '2006-05-12', 290, 'https://www.gutenberg.org/ebooks/1564', 'en', 5466), +(20123, 'The Life of Johannes Brahms (Vol 1 of 2)', 'May, Florence', '2012-09-27', 43, 'https://www.gutenberg.org/ebooks/40643', 'en', 8896), +(20124, 'The Making of a Soul', 'Rhodes, Kathlyn', '2007-06-04', 18, 'https://www.gutenberg.org/ebooks/21674', 'en', 61), +(20125, 'Punch, or the London Charivari, Volume 103, October 8, 1892', 'Various', '2005-03-23', 6, 'https://www.gutenberg.org/ebooks/15441', 'en', 134), +(20126, 'The Gun Club Boys of Lakeport; Or, The Island Camp', 'Stratemeyer, Edward', '2016-06-23', 3, 'https://www.gutenberg.org/ebooks/52386', 'en', 323), +(20127, 'The Library of Work and Play: Electricity and Its Everyday Uses', 'Woodhull, John F. (John Francis)', '2014-04-06', 15, 'https://www.gutenberg.org/ebooks/45331', 'en', 8897), +(20128, 'Prince Eugene and His Times', 'Mühlbach, L. (Luise)', '2003-05-01', 10, 'https://www.gutenberg.org/ebooks/4016', 'en', 8898), +(20129, 'Astronomical Lore in Chaucer', 'Grimm, Florence M. (Florence Marie)', '2011-10-11', 11, 'https://www.gutenberg.org/ebooks/37711', 'en', 8899), +(20130, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 04 (of 17)', NULL, '2016-10-10', 32, 'https://www.gutenberg.org/ebooks/53254', 'en', 1113), +(20131, 'Norse Tales and Sketches', 'Kielland, Alexander Lange', '2005-01-04', 22, 'https://www.gutenberg.org/ebooks/14593', 'en', 8900), +(20132, 'Endurance Test; or, How Clear Grit Won the Day', 'Douglas, Alan, Captain', '2011-12-14', 17, 'https://www.gutenberg.org/ebooks/38305', 'en', 2994), +(20133, 'The Research Magnificent', 'Wells, H. G. (Herbert George)', '1997-12-01', 31, 'https://www.gutenberg.org/ebooks/1138', 'en', 658), +(20134, 'The Transformation of Job\nA Tale of the High Sierras', 'Fisher, Frederick Vining', '2008-06-03', 8, 'https://www.gutenberg.org/ebooks/25688', 'en', 8901), +(20135, 'Elsa Finne I-II', 'Lundegård, Axel', '2005-05-12', 12, 'https://www.gutenberg.org/ebooks/15821', 'sv', 420), +(20136, 'The History of Saint Augustine, Florida', 'Dewhurst, William W. (William Whitwell)', '2016-11-26', 6, 'https://www.gutenberg.org/ebooks/53608', 'en', 8902), +(20137, 'The Life and Perambulations of a Mouse', 'Kilner, Dorothy', '1999-09-01', 14, 'https://www.gutenberg.org/ebooks/1904', 'en', 1096), +(20138, 'The Story of My Life — Volume 06', 'Ebers, Georg', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/5598', 'en', 7159), +(20139, 'White Lilac; or the Queen of the May', 'Walton, Amy', '2007-04-27', 9, 'https://www.gutenberg.org/ebooks/21228', 'en', 5372), +(20140, 'Abaft the Funnel', 'Kipling, Rudyard', '2019-04-22', 71, 'https://www.gutenberg.org/ebooks/59332', 'en', 137); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(20141, 'The King\'s Arrow: A Tale of the United Empire Loyalists', 'Cody, H. A. (Hiram Alfred)', '2005-09-15', 13, 'https://www.gutenberg.org/ebooks/16698', 'en', 8903), +(20142, 'Pretty Michal', 'Jókai, Mór', '2010-04-04', 20, 'https://www.gutenberg.org/ebooks/31886', 'en', 8904), +(20143, 'From the St. Lawrence to the Yser with the 1st Canadian brigade', 'Curry, Frederic C.', '2009-06-05', 8, 'https://www.gutenberg.org/ebooks/29045', 'en', 3601), +(20144, 'Marsk Stig: a ballad', NULL, '2008-10-07', 7, 'https://www.gutenberg.org/ebooks/26831', 'en', 54), +(20145, 'The Trial of Reuben Crandall, M.D.\r\nCharged with Publishing and Circulating Seditious and Incendiary Papers, &c. in the District of Columbia, with the Intent of Exciting Servile Insurrection. Carefully Reported, and Compiled from the Written Statements of the Court and the Counsel.', 'Unknown', '2009-02-26', 9, 'https://www.gutenberg.org/ebooks/28197', 'en', 8905), +(20146, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 13', 'Stevenson, Robert Louis', '2010-01-13', 31, 'https://www.gutenberg.org/ebooks/30954', 'en', 194), +(20147, 'The Other World', 'Moore, Frank Frankfort', '2016-05-02', 11, 'https://www.gutenberg.org/ebooks/51963', 'en', 114), +(20148, 'The World English Bible (WEB): 1 Peter', 'Anonymous', '2005-06-01', 12, 'https://www.gutenberg.org/ebooks/8287', 'en', 1626), +(20149, 'The Poetical Works of William Collins; With a Memoir', 'Collins, William', '2009-08-31', 6, 'https://www.gutenberg.org/ebooks/29879', 'en', 8), +(20150, 'The Camp Fire Girls on a Yacht', 'Sanderson, Margaret Love', '2013-04-15', 11, 'https://www.gutenberg.org/ebooks/42548', 'en', 550), +(20151, 'Science in the Kitchen\r\nA Scientific Treatise On Food Substances and Their Dietetic Properties, Together with a Practical Explanation of the Principles of Healthful Cookery, and a Large Number of Original, Palatable, and Wholesome Recipes', 'Kellogg, E. E. (Ella Ervilla)', '2004-05-01', 156, 'https://www.gutenberg.org/ebooks/12238', 'en', 103), +(20152, 'Under Cæsars\' Shadow', 'Colby, Henry Francis', '2014-12-29', 11, 'https://www.gutenberg.org/ebooks/47806', 'en', 8906), +(20153, 'The Ontario Readers: Fourth Book', 'Ontario. Department of Education', '2006-06-27', 20, 'https://www.gutenberg.org/ebooks/18702', 'en', 1019), +(20154, 'The Modern Malady; Or, Sufferers from \"Nerves\"', 'Bennett, Cyril', '2015-01-25', 10, 'https://www.gutenberg.org/ebooks/48072', 'en', 8907), +(20155, 'A History of Giggleswick School from its Foundation, 1499 to 1912', 'Bell, Edward Allen', '2009-10-03', 24, 'https://www.gutenberg.org/ebooks/30168', 'en', 8908), +(20156, 'The Rescue', 'Conrad, Joseph', '2005-11-01', 11, 'https://www.gutenberg.org/ebooks/9355', 'en', 8909), +(20157, 'Good Stories Reprinted from the Ladies\' Home Journal of Philadelphia', 'Various', '2004-07-07', 8, 'https://www.gutenberg.org/ebooks/12836', 'en', 190), +(20158, 'A Philosophical Dictionary, Volume 08', 'Voltaire', '2011-03-28', 39, 'https://www.gutenberg.org/ebooks/35628', 'en', 7152), +(20159, 'Aquis Submersus', 'Storm, Theodor', '2005-09-01', 29, 'https://www.gutenberg.org/ebooks/8889', 'de', 8910), +(20160, 'Mountain Meditations, and some subjects of the day and the war', 'Lind-af-Hageby, L. (Lizzy)', '2009-06-30', 13, 'https://www.gutenberg.org/ebooks/29277', 'en', 20), +(20161, 'Sacountala (1858)\nballet-pantomime en deux actes / tiré du drame indien de Calidasâ', 'Gautier, Théophile', '2006-01-23', 28, 'https://www.gutenberg.org/ebooks/17578', 'fr', 8911), +(20162, 'Publications of the Mississippi Historical Society, Volume 02 (of 14), 1899', 'Mississippi Historical Society', '2014-10-27', 18, 'https://www.gutenberg.org/ebooks/47208', 'en', 8091), +(20163, 'The Conscript: A Story of the French war of 1813', 'Erckmann-Chatrian', '2010-02-15', 7, 'https://www.gutenberg.org/ebooks/31288', 'en', 4854), +(20164, 'Harper\'s Young People, October 11, 1881\nAn Illustrated Weekly', 'Various', '2015-07-07', 3, 'https://www.gutenberg.org/ebooks/49392', 'en', 479), +(20165, 'Fort Gibson: A Brief History', 'Foreman, Carolyn Thomas', '2015-02-11', 5, 'https://www.gutenberg.org/ebooks/48240', 'en', 8912), +(20166, 'The Three Cities Trilogy: Paris, Volume 4', 'Zola, Émile', '2005-10-01', 10, 'https://www.gutenberg.org/ebooks/9167', 'en', 109), +(20167, 'Voyages of Peter Esprit Radisson\r\nBeing an Account of His Travels and Experiences Among the North American Indians, from 1652 to 1684', 'Radisson, Pierre Esprit', '2004-11-01', 54, 'https://www.gutenberg.org/ebooks/6913', 'en', 1643), +(20168, 'Elsie Inglis: The Woman with the Torch', 'McLaren, Eva Shaw', '2006-06-07', 22, 'https://www.gutenberg.org/ebooks/18530', 'en', 8913), +(20169, 'The Pike\'s Peak Rush; Or, Terry in the New Gold Fields', 'Sabin, Edwin L. (Edwin Legrand)', '2011-11-06', 77, 'https://www.gutenberg.org/ebooks/37943', 'en', 8914), +(20170, 'Aboriginal American Weaving', 'Kissell, Mary Lois', '2008-02-11', 58, 'https://www.gutenberg.org/ebooks/24568', 'en', 3494), +(20171, 'Stories of the Badger State', 'Thwaites, Reuben Gold', '2011-11-25', 24, 'https://www.gutenberg.org/ebooks/38137', 'en', 8915), +(20172, 'My Pet Recipes, Tried and True\nContributed by the Ladies and Friends of St. Andrew\'s Church, Quebec', 'Various', '2007-06-13', 45, 'https://www.gutenberg.org/ebooks/21826', 'en', 8916), +(20173, 'Health, Healing, and Faith', 'Conwell, Russell H.', '2011-07-29', 26, 'https://www.gutenberg.org/ebooks/36891', 'en', 5230), +(20174, 'Erakkomaisteri: Romaani', 'Lajula, Osmo', '2017-12-08', 3, 'https://www.gutenberg.org/ebooks/56148', 'fi', 175), +(20175, 'Expositor\'s Bible: The Gospel of Matthew', 'Gibson, John Monro', '2012-09-20', 20, 'https://www.gutenberg.org/ebooks/40811', 'en', 8917), +(20176, 'Josiah\'s Alarm, and Abel Perry\'s Funeral', 'Holley, Marietta', '2019-03-19', 4, 'https://www.gutenberg.org/ebooks/59100', 'en', 770), +(20177, 'Johnson\'s Lives of the Poets — Volume 2', 'Johnson, Samuel', '2003-11-01', 35, 'https://www.gutenberg.org/ebooks/4678', 'en', 8918), +(20178, 'A London Plane-Tree, and Other Verse', 'Levy, Amy', '2018-04-13', 37, 'https://www.gutenberg.org/ebooks/56974', 'en', 532), +(20179, '\"Le Monsieur de la Petite Dame\"', 'Burnett, Frances Hodgson', '2007-11-04', 25, 'https://www.gutenberg.org/ebooks/23329', 'en', 797), +(20180, 'Adventure of a Kite', 'Myrtle, Harriet', '2006-08-02', 32, 'https://www.gutenberg.org/ebooks/18968', 'en', 388), +(20181, 'Through Five Republics on Horseback, Being an Account of Many Wanderings in South America', 'Ray, George Whitfield', '2005-02-01', 13, 'https://www.gutenberg.org/ebooks/7499', 'en', 227), +(20182, 'Le nez d\'un notaire', 'About, Edmond', '2016-04-09', 41, 'https://www.gutenberg.org/ebooks/51709', 'fr', 298), +(20183, 'The Vultures', 'Merriman, Henry Seton', '2006-04-13', 30, 'https://www.gutenberg.org/ebooks/3805', 'en', 8919), +(20184, 'Récits d\'une tante (Vol. 1 de 4)\nMémoires de la Comtesse de Boigne, née d\'Osmond', 'Boigne, Louise-Eléonore-Charlotte-Adélaide d\'Osmond, comtesse de', '2009-08-05', 29, 'https://www.gutenberg.org/ebooks/29613', 'fr', 6735), +(20185, 'Della guerra nazionale d\'insurrezione per bande, applicata all\'Italia\nTrattato dedicato ai buoni Italiani da un amico del Paese', 'Bianco, Carlo', '2015-04-01', 17, 'https://www.gutenberg.org/ebooks/48624', 'it', 8920), +(20186, 'The Number-System of Algebra (2nd edition)\nTreated Theoretically and Historically', 'Fine, Henry B. (Henry Burchard)', '2006-03-04', 72, 'https://www.gutenberg.org/ebooks/17920', 'en', 4325), +(20187, 'Seeing Europe with Famous Authors, Volume 2\r\nGreat Britain and Ireland, Part 2', NULL, '2005-07-01', 13, 'https://www.gutenberg.org/ebooks/9503', 'en', 117), +(20188, 'A Royal Prisoner', 'Souvestre, Pierre', '2009-01-13', 27, 'https://www.gutenberg.org/ebooks/27789', 'en', 6348), +(20189, 'Calumet \"K\"', 'Merwin, Samuel', '2006-04-11', 31, 'https://www.gutenberg.org/ebooks/18154', 'en', 8921), +(20190, 'Vijf weken in een luchtballon', 'Verne, Jules', '2006-08-20', 37, 'https://www.gutenberg.org/ebooks/19086', 'nl', 323), +(20191, 'Forty-Two Poems', 'Flecker, James Elroy', '2002-01-01', 37, 'https://www.gutenberg.org/ebooks/3039', 'en', 54), +(20192, 'L\'Illustration, No. 0037, 11 Novembre 1843', 'Various', '2012-04-19', 6, 'https://www.gutenberg.org/ebooks/39481', 'fr', 150), +(20193, 'Letters from a Cat\r\nPublished by Her Mistress for the Benefit of All Cats and the Amusement of Little Children', 'Jackson, Helen Hunt', '2010-04-20', 54, 'https://www.gutenberg.org/ebooks/32069', 'en', 8922), +(20194, 'Edmund Dulac\'s Picture-Book for the French Red Cross', 'Dulac, Edmund', '2014-06-07', 49, 'https://www.gutenberg.org/ebooks/45907', 'en', 1007), +(20195, 'An Antarctic Mystery', 'Verne, Jules', '2003-11-01', 116, 'https://www.gutenberg.org/ebooks/10339', 'en', 8923), +(20196, 'Loughton, Essex: A brief account of the Manor and Parish', 'Waller, William Chapman', '2017-01-01', 7, 'https://www.gutenberg.org/ebooks/53862', 'en', 8924), +(20197, 'Emmy Lou\'s Road to Grace: Being a Little Pilgrim\'s Progress', 'Martin, George Madden', '2012-01-11', 5, 'https://www.gutenberg.org/ebooks/38553', 'en', 8925), +(20198, 'The Woman with One Hand, and Mr. Ely\'s Engagement', 'Marsh, Richard', '2012-08-08', 17, 'https://www.gutenberg.org/ebooks/40449', 'en', 757), +(20199, 'Natural History of the Bell Vireo, Vireo bellii Audubon', 'Barlow, Jon C.', '2010-06-17', 14, 'https://www.gutenberg.org/ebooks/32855', 'en', 8926), +(20200, 'Memories of the Russian Court', 'Vyrubova, Anna Aleksandrovna', '2019-05-20', 32, 'https://www.gutenberg.org/ebooks/59564', 'es', 507), +(20201, 'Glances at Europe\r\nIn a Series of Letters from Great Britain, France, Italy, Switzerland, &c. During the Summer of 1851.', 'Greeley, Horace', '2008-03-28', 28, 'https://www.gutenberg.org/ebooks/24930', 'en', 1408), +(20202, 'Journal des Goncourt (Premier Volume)\r\nMémoires de la vie littéraire', 'Goncourt, Edmond de', '2005-01-25', 38, 'https://www.gutenberg.org/ebooks/14799', 'fr', 8927), +(20203, 'Beautiful Shells of New Zealand\r\nAn Illustrated Work for Amateur Collectors of New Zealand Marine Shells, with Directions for Collecting and Cleaning them', 'Moss, Edward George Britton', '2010-09-23', 6, 'https://www.gutenberg.org/ebooks/33987', 'en', 8928), +(20204, 'The Rise of the Dutch Republic — Volume 11: 1566, part II', 'Motley, John Lothrop', '2004-11-07', 62, 'https://www.gutenberg.org/ebooks/4812', 'en', 3372), +(20205, 'The Man with the Pan-Pipes, and Other Stories', 'Molesworth, Mrs.', '2012-02-04', 17, 'https://www.gutenberg.org/ebooks/38761', 'en', 388), +(20206, 'A Pair of Schoolgirls: A Story of School Days', 'Brazil, Angela', '2010-08-09', 36, 'https://www.gutenberg.org/ebooks/33389', 'en', 62), +(20207, 'The Cause of the Charge of Balaclava', 'Morley, Thomas', '2014-04-02', 20, 'https://www.gutenberg.org/ebooks/45309', 'en', 3217), +(20208, 'Poems', 'Cushag', '2019-06-15', 28, 'https://www.gutenberg.org/ebooks/59756', 'en', 8929), +(20209, 'New York Times Current History; The European War, Vol 2, No. 2, May, 1915\nApril-September, 1915', 'Various', '2005-03-27', 42, 'https://www.gutenberg.org/ebooks/15479', 'en', 335), +(20210, 'Finding Themselves\r\nThe Letters of an American Amy Chief Nurse in the British Hospital in France', 'Stimson, Julia C. (Julia Catherine)', '2019-01-13', 6, 'https://www.gutenberg.org/ebooks/58684', 'en', 8930), +(20211, 'The Life of St. Mochuda of Lismore', NULL, '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/10937', 'en', 8931), +(20212, 'A Discourse Presented to the Most Serene Don Cosimo II., Great Duke of Tuscany, Concerning the Natation of Bodies Vpon, and Submersion In, the Water.', 'Galilei, Galileo', '2011-10-12', 38, 'https://www.gutenberg.org/ebooks/37729', 'en', 8932), +(20213, 'History of the Revolt of the Netherlands — Volume 04', 'Schiller, Friedrich', '2004-10-01', 8, 'https://www.gutenberg.org/ebooks/6779', 'en', 7175), +(20214, 'Kreuz und Quer, Zweiter Band\nNeue gesammelte Erzählungen', 'Gerstäcker, Friedrich', '2017-06-09', 6, 'https://www.gutenberg.org/ebooks/54875', 'de', 138), +(20215, 'The Mystery of Mary Stuart', 'Lang, Andrew', '2013-06-10', 33, 'https://www.gutenberg.org/ebooks/42910', 'en', 6347), +(20216, 'The Floating Island of Madness', 'Kirby, Jason', '2009-07-16', 50, 'https://www.gutenberg.org/ebooks/29421', 'en', 26), +(20217, 'The Challenge of the North', 'Hendryx, James B. (James Beardsley)', '2006-05-10', 11, 'https://www.gutenberg.org/ebooks/18366', 'en', 65), +(20218, 'Sailor Jack, the Trader', 'Castlemon, Harry', '2017-01-24', 2, 'https://www.gutenberg.org/ebooks/54049', 'en', 8201), +(20219, 'Canoeing in the wilderness', 'Thoreau, Henry David', '2011-01-17', 95, 'https://www.gutenberg.org/ebooks/34990', 'en', 8933), +(20220, 'A Tame Surrender, A Story of The Chicago Strike', 'King, Charles', '2007-12-20', 12, 'https://www.gutenberg.org/ebooks/23927', 'en', 8934), +(20221, 'Jenkkejä maailmalla II\nHeidän toivioretkensä Pyhälle Maalle', 'Twain, Mark', '2015-03-05', 13, 'https://www.gutenberg.org/ebooks/48416', 'fi', 1408), +(20222, 'To Be Read at Dusk', 'Dickens, Charles', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9731', 'en', 179), +(20223, 'Microscopes and Accessory Apparatus: Catalogue No. 40', 'Leitz, Ernst', '2011-04-12', 23, 'https://www.gutenberg.org/ebooks/35842', 'en', 8935), +(20224, 'Rainbow Valley', 'Montgomery, L. M. (Lucy Maud)', '2008-09-01', 4, 'https://www.gutenberg.org/ebooks/26469', 'en', 751), +(20225, 'The Radio Boys with the Revenue Guards', 'Breckenridge, Gerald', '2009-05-09', 12, 'https://www.gutenberg.org/ebooks/28735', 'en', 3343), +(20226, 'The Method by Which the Causes of the Present and Past Conditions of Organic Nature Are to Be Discovered; the Origination of Living Beings\r\nLecture III. (of VI.), \"Lectures to Working Men\", at the Museum of Practical Geology, 1863, on Darwin\'s Work: \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 30, 'https://www.gutenberg.org/ebooks/2923', 'en', 5893), +(20227, 'Transatlantische Reiseskizzen und Christopherus Bärenhäuter. Erstes Bändchen.', 'Sealsfield, Charles', '2014-12-18', 11, 'https://www.gutenberg.org/ebooks/47698', 'de', 1110), +(20228, 'Stage-Land', 'Jerome, Jerome K. (Jerome Klapka)', '1997-03-01', 116, 'https://www.gutenberg.org/ebooks/858', 'en', 8936), +(20229, 'Princes and Poisoners: Studies of the Court of Louis XIV', 'Funck-Brentano, Frantz', '2013-07-17', 23, 'https://www.gutenberg.org/ebooks/43238', 'en', 1247), +(20230, 'Cambridge Essays on Education', NULL, '2004-09-28', 35, 'https://www.gutenberg.org/ebooks/13548', 'en', 973), +(20231, 'Opuscula Selecta Neerlandicorum\nNederlandsch Tijdschrift voor Geneeskunde', NULL, '2006-08-18', 28, 'https://www.gutenberg.org/ebooks/19072', 'la', 8937), +(20232, 'Caesar: A Sketch', 'Froude, James Anthony', '2005-07-01', 28, 'https://www.gutenberg.org/ebooks/8425', 'en', 5985), +(20233, 'Rosmersholma: Nelinäytöksinen näytelmä', 'Ibsen, Henrik', '2005-10-07', 13, 'https://www.gutenberg.org/ebooks/16806', 'fi', 8938), +(20234, 'Silver Links\r\nA collection of salutatory, valedictory and other addresses delivered at the first five commencements of the female stenographic and typewriting class of the General Society of Mechanics and Tradesmen of the City of New York', NULL, '2010-03-13', 13, 'https://www.gutenberg.org/ebooks/31618', 'en', 8939), +(20235, 'Uusi katakombi ja muita kertoelmia', 'Doyle, Arthur Conan', '2015-08-14', 11, 'https://www.gutenberg.org/ebooks/49702', 'fi', 3092), +(20236, 'Prisons & Prisoners: Some Personal Experiences', 'Lytton, Constance, Lady', '2016-08-31', 9, 'https://www.gutenberg.org/ebooks/52944', 'en', 4079), +(20237, 'Night Fall in the Ti-Tree', 'Teague, Violet', '2012-04-18', 9, 'https://www.gutenberg.org/ebooks/39475', 'en', 8940), +(20238, 'Yhteiskunnallisen kysymyksen ydinkohdat\nNykyisyyden ja tulevaisuuden elämänvaatimuksena', 'Steiner, Rudolf', '2014-02-02', 11, 'https://www.gutenberg.org/ebooks/44821', 'fi', 1072), +(20239, 'Christmas Speakin\' at Skaggs\'s Skule', 'Irish, Marie', '2017-01-05', 14, 'https://www.gutenberg.org/ebooks/53896', 'en', 3459), +(20240, 'Studies and Exercises in Formal Logic', 'Keynes, John Neville', '2019-05-24', 58, 'https://www.gutenberg.org/ebooks/59590', 'en', 4797), +(20241, 'The Mentor: Rembrandt, Vol. 4, Num. 20, Serial No. 120, December 1, 1916', 'Van Dyke, John Charles', '2016-05-28', 10, 'https://www.gutenberg.org/ebooks/52178', 'en', 596), +(20242, 'With Airship and Submarine: A Tale of Adventure', 'Collingwood, Harry', '2008-06-17', 9, 'https://www.gutenberg.org/ebooks/25816', 'en', 5237), +(20243, 'The Mysterious Wanderer, Vol. I', 'Reeve, Sophia', '2010-09-24', 10, 'https://www.gutenberg.org/ebooks/33973', 'en', 61), +(20244, 'Grania, The Story of an Island; vol. 2/2', 'Lawless, Emily', '2018-12-09', 4, 'https://www.gutenberg.org/ebooks/58442', 'en', 669), +(20245, 'The Merry-Thought: or the Glass-Window and Bog-House Miscellany. Part 1', 'Hurlothrumbo', '2007-02-11', 12, 'https://www.gutenberg.org/ebooks/20558', 'en', 3947), +(20246, '六一詞', 'Ouyang, Xiu', '2008-04-28', 19, 'https://www.gutenberg.org/ebooks/25218', 'zh', 7534), +(20247, 'Heath\'s Modern Language Series: The Spanish American Reader', 'Nelson, Ernesto', '2012-05-07', 54, 'https://www.gutenberg.org/ebooks/39647', 'en', 188), +(20248, 'With Drake on the Spanish Main', 'Strang, Herbert', '2012-02-18', 60, 'https://www.gutenberg.org/ebooks/38795', 'en', 8941), +(20249, 'The Chartreuse of Parma\nTranslated from the French of Stendhal (Henri Beyle)', 'Stendhal', '2018-08-04', 113, 'https://www.gutenberg.org/ebooks/57638', 'en', 1238), +(20250, 'The History of Don Quixote, Volume 2, Part 31', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5934', 'en', 2176), +(20251, 'U.S. Copyright Renewals, 1955 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11811', 'en', 4170), +(20252, 'Dreamer\'s World', 'Walton, Bryce', '2019-01-11', 28, 'https://www.gutenberg.org/ebooks/58670', 'en', 26), +(20253, 'Taking the Census: A Farce', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2016-10-17', 8, 'https://www.gutenberg.org/ebooks/53298', 'en', 402), +(20254, 'The Canadian Brothers; Or, The Prophecy Fulfilled: A Tale of the Late American War — Complete', 'Richardson, Major (John)', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/5108', 'en', 2564), +(20255, 'The Laughing Bear, and Other Stories', 'Bell, Robert Bloomer Hare', '2017-06-10', 8, 'https://www.gutenberg.org/ebooks/54881', 'en', 388), +(20256, '入れかわった男', 'Oppenheim, E. Phillips (Edward Phillips)', '2010-10-29', 66, 'https://www.gutenberg.org/ebooks/34158', 'ja', 1319), +(20257, 'Oukkari: Kertomus kansan elämästä', 'Päivärinta, Pietari', '2013-09-28', 29, 'https://www.gutenberg.org/ebooks/43836', 'fi', 456), +(20258, 'The Mind of Jesus', 'Macduff, John R. (John Ross)', '2009-04-05', 19, 'https://www.gutenberg.org/ebooks/28507', 'en', 3941), +(20259, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 05', 'Dryden, John', '2005-07-05', 39, 'https://www.gutenberg.org/ebooks/16208', 'en', 1201), +(20260, 'Memoirs of the Late War, Vol 2 (of 2)\r\nComprising the Personal Narrative of Captain Cooke, of the 43rd Regiment Light Infantry; the History of the Campaign of 1809 in Portugal, by the Earl of Munster; and a Narrative of the Campaign of 1814 in Holland, by Lieut. T. W. D. Moodie, H. P. 21st Fusileers', 'Moodie, J. W. Dunbar (John Wedderburn Dunbar)', '2017-11-13', 13, 'https://www.gutenberg.org/ebooks/55953', 'en', 7120), +(20261, 'Decorative Art of Indian Tribes of Connecticut', 'Speck, Frank G. (Frank Gouldsmith)', '2014-08-13', 18, 'https://www.gutenberg.org/ebooks/46578', 'en', 8942), +(20262, 'Motion Picture of Rotating Earth', 'United States', '1995-05-01', 29, 'https://www.gutenberg.org/ebooks/256', 'en', 8943), +(20263, 'A Nuvem: Peça dramatica, em verso, com prologo, dois actos e epilogo', 'Couceiro, Luís', '2011-01-15', 54, 'https://www.gutenberg.org/ebooks/34964', 'pt', 3231), +(20264, 'Thoughts I Met on the Highway: Words of Friendly Cheer From \"The Life Books\"', 'Trine, Ralph Waldo', '2006-05-15', 25, 'https://www.gutenberg.org/ebooks/18392', 'en', 43), +(20265, 'The Captain of the Polestar, and Other Tales', 'Doyle, Arthur Conan', '2005-08-01', 0, 'https://www.gutenberg.org/ebooks/8617', 'en', 409), +(20266, 'A Invenção do Dia Claro', 'Almada Negreiros, José de', '2007-09-29', 27, 'https://www.gutenberg.org/ebooks/22801', 'pt', 8944), +(20267, 'The Battle of Gettysburg, 1863', 'Drake, Samuel Adams', '2015-07-26', 26, 'https://www.gutenberg.org/ebooks/49530', 'en', 8945), +(20268, 'Bahá\'í Prayers\r\nA Selection of Prayers Revealed by Bahá\'u\'lláh, the Báb, and ‘Abdu\'l-Bahá', 'Bab, `Ali Muhammad Shirazi', '2006-09-12', 46, 'https://www.gutenberg.org/ebooks/19240', 'en', 8946), +(20269, 'Living Alone', 'Benson, Stella', '2005-02-04', 51, 'https://www.gutenberg.org/ebooks/14907', 'en', 4923), +(20270, 'Martelaren van Rusland', 'Michelet, Jules', '2010-09-13', 6, 'https://www.gutenberg.org/ebooks/33719', 'nl', 8947), +(20271, 'An Enquiry into the Obligations of Christians to Use Means for the Conversion of the Heathens\r\nIn Which the Religious State of the Different Nations of the World, the Success of Former Undertakings, and the Practicability of Further Undertakings, Are Considered', 'Carey, William', '2004-03-01', 59, 'https://www.gutenberg.org/ebooks/11449', 'en', 8948), +(20272, 'Mount Royal: A Novel. Volume 1 of 3', 'Braddon, M. E. (Mary Elizabeth)', '2012-11-10', 21, 'https://www.gutenberg.org/ebooks/41339', 'en', 61), +(20273, 'Ortus Christi: Meditations for Advent', 'St. Paul, Mother', '2012-03-21', 6, 'https://www.gutenberg.org/ebooks/39223', 'en', 8949), +(20274, 'Public and Private Life of Animals\r\nAdapted from the French of Balzac, Droz, Jules Janin, E. Lemoine, A. De Musset, Georges Sand, &c.', NULL, '2018-10-31', 22, 'https://www.gutenberg.org/ebooks/58214', 'en', 4590), +(20275, 'The Golden Book of the Dutch Navigators', 'Van Loon, Hendrik Willem', '2014-05-28', 78, 'https://www.gutenberg.org/ebooks/45799', 'en', 885), +(20276, 'The Christian Church in These Islands before the Coming of Augustine\nThree Lectures Delivered at St. Paul\'s in January 1894', 'Browne, G. F. (George Forrest)', '2010-04-03', 11, 'https://www.gutenberg.org/ebooks/31872', 'en', 8950), +(20277, 'Fort Jefferson National Monument, Florida', 'United States. National Park Service', '2015-09-14', 21, 'https://www.gutenberg.org/ebooks/49968', 'en', 8951), +(20278, 'The Books of the New Testament', 'Pullan, Leighton', '2007-08-30', 16, 'https://www.gutenberg.org/ebooks/22459', 'en', 8952), +(20279, 'The Strange Adventures of Mr. Middleton', 'Curtis, Wardon Allan', '2009-01-28', 27, 'https://www.gutenberg.org/ebooks/27917', 'en', 5019), +(20280, 'The Higher Powers of Mind and Spirit', 'Trine, Ralph Waldo', '2009-02-23', 108, 'https://www.gutenberg.org/ebooks/28163', 'en', 43), +(20281, 'A Book on Vegetable Dyes', 'Mairet, Ethel', '2015-09-30', 33, 'https://www.gutenberg.org/ebooks/50079', 'en', 8953), +(20282, 'The World English Bible (WEB): 1 Corinthians', 'Anonymous', '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8273', 'en', 8741), +(20283, 'A Book of Poems, Al Que Quiere!', 'Williams, William Carlos', '2016-05-04', 34, 'https://www.gutenberg.org/ebooks/51997', 'en', 994), +(20284, 'Life of a Scotch Naturalist: Thomas Edward, Associate of the Linnean Society.\r\nFourth Edition', 'Smiles, Samuel', '2015-06-07', 9, 'https://www.gutenberg.org/ebooks/49154', 'en', 8954), +(20285, 'Aesop\'s Fables - Volume 09', 'Aesop', '2006-10-26', 16, 'https://www.gutenberg.org/ebooks/19624', 'en', 7140), +(20286, 'The Pony Rider Boys on the Blue Ridge; or, A Lucky Find in the Carolina Mountains', 'Patchin, Frank Gee', '2014-09-21', 27, 'https://www.gutenberg.org/ebooks/46920', 'en', 5911), +(20287, 'The Square Root of 8', 'Bonnell, Jerry T.', '1996-08-01', 9, 'https://www.gutenberg.org/ebooks/632', 'en', 1044), +(20288, 'Walther von der Vogelweide: Ein altdeutscher Dichter', 'Uhland, Ludwig', '2015-01-26', 14, 'https://www.gutenberg.org/ebooks/48086', 'de', 8955), +(20289, 'La Constantin\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 16, 'https://www.gutenberg.org/ebooks/2749', 'en', 5050), +(20290, 'Schriften 13: Märchen; Dramatische Gedichte; Fragmente', 'Tieck, Ludwig', '2016-01-04', 15, 'https://www.gutenberg.org/ebooks/50845', 'de', 422), +(20291, 'Monsieur De Pourceaugnac', 'Molière', '2004-12-01', 61, 'https://www.gutenberg.org/ebooks/7009', 'en', 901), +(20292, 'La vita Italiana nel Risorgimento (1831-1846), parte 1\r\nSeconda serie - Storia', 'Various', '2016-03-08', 7, 'https://www.gutenberg.org/ebooks/51399', 'it', 999), +(20293, 'Salvage in Space', 'Williamson, Jack', '2009-07-01', 99, 'https://www.gutenberg.org/ebooks/29283', 'en', 26), +(20294, 'Dick and His Cat and Other Tales', NULL, '2009-03-18', 10, 'https://www.gutenberg.org/ebooks/28351', 'en', 625), +(20295, 'A Book of Exposition', 'Nugent, Homer Heath', '2004-10-31', 18, 'https://www.gutenberg.org/ebooks/13910', 'en', 8956), +(20296, 'Artificial Limbs', 'Ducroquet, Charles', '2017-10-13', 7, 'https://www.gutenberg.org/ebooks/55739', 'en', 8957), +(20297, 'Illustrated Catalogue of a Portion of the Collections Made During the Field Season of 1881\r\nThird Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1881-82, Government Printing Office, Washington, 1884, pages 427-510', 'Holmes, William Henry', '2006-10-01', 12, 'https://www.gutenberg.org/ebooks/19416', 'en', 8958), +(20298, 'Lothair', 'Disraeli, Benjamin, Earl of Beaconsfield', '2005-04-01', 38, 'https://www.gutenberg.org/ebooks/7835', 'en', 1397), +(20299, 'The Bible, King James version, Book 41: Mark', 'Anonymous', '2005-04-01', 11, 'https://www.gutenberg.org/ebooks/8041', 'en', 3278), +(20300, 'Selections from Cassell & Company', 'Cassell & Company', '2015-07-05', 14, 'https://www.gutenberg.org/ebooks/49366', 'en', 8959), +(20301, 'The Angel of Lonesome Hill; A Story of a President', 'Landis, Frederick', '2005-10-01', 9, 'https://www.gutenberg.org/ebooks/9193', 'en', 6069), +(20302, 'Valkoisia öitä', 'Dostoyevsky, Fyodor', '2008-11-24', 7, 'https://www.gutenberg.org/ebooks/27319', 'fi', 147), +(20303, 'Helen of Troy, and Other Poems', 'Teasdale, Sara', '1996-01-01', 114, 'https://www.gutenberg.org/ebooks/400', 'en', 5081), +(20304, 'English Past and Present', 'Trench, Richard Chenevix', '2007-03-25', 86, 'https://www.gutenberg.org/ebooks/20900', 'en', 7218), +(20305, 'Disease in Plants', 'Ward, H. Marshall (Harry Marshall)', '2012-02-29', 20, 'https://www.gutenberg.org/ebooks/39011', 'en', 8960), +(20306, 'Responsibilities, and other poems', 'Yeats, W. B. (William Butler)', '2011-07-27', 53, 'https://www.gutenberg.org/ebooks/36865', 'en', 1136), +(20307, 'Ideals in Art: Papers Theoretical, Practical, Critical', 'Crane, Walter', '2018-09-05', 40, 'https://www.gutenberg.org/ebooks/57852', 'en', 787), +(20308, 'The Other Side of Evolution: Its Effects and Fallacy', 'Patterson, Alexander', '2013-12-21', 15, 'https://www.gutenberg.org/ebooks/44479', 'en', 1315), +(20309, 'Nouvelles et Contes pour la jeunesse', 'Guizot, Madame (Elisabeth Charlotte Pauline)', '2004-12-09', 27, 'https://www.gutenberg.org/ebooks/14309', 'fr', 168), +(20310, 'The Trial and Conviction of That Infamous Hypocrite John Church\r\nThe Surrey Tabernacle Preacher, Borough-road, St. George\'s Fields, for an Abominable Offence; Including the Whole of the Evidence; Tried Before Lord Ellenborough, at the Surrey Assizes, Croydon, Saturday, August 16, 1817. To Which Is Added, His Life, Confessions, Notes of One of His Sermons, the Whole of the Love-letters, &c. &c.', 'Anonymous', '2018-10-04', 9, 'https://www.gutenberg.org/ebooks/58026', 'en', 7198), +(20311, 'Camping', 'Lockwine, Alexandra Agusta Guttman', '2013-01-28', 27, 'https://www.gutenberg.org/ebooks/41937', 'en', 2155), +(20312, 'Lachesis Lapponica; Or, A Tour in Lapland, Volume 2', 'Linné, Carl von', '2011-05-08', 11, 'https://www.gutenberg.org/ebooks/36059', 'en', 8961), +(20313, 'Holden with the Cords', 'Jay, W. M. L.', '2018-04-15', 6, 'https://www.gutenberg.org/ebooks/56980', 'en', 942), +(20314, 'The Grey Fairy Book', NULL, '2004-10-01', 148, 'https://www.gutenberg.org/ebooks/6746', 'en', 1007), +(20315, 'The True Benjamin Franklin', 'Fisher, Sydney George', '2010-11-02', 18, 'https://www.gutenberg.org/ebooks/34193', 'en', 854), +(20316, 'Dalle Novelle di Canterbury', 'Chaucer, Geoffrey', '2014-11-26', 52, 'https://www.gutenberg.org/ebooks/47461', 'it', 1633), +(20317, 'Le jardinier de la Pompadour', 'Demolder, Eugène', '2005-12-15', 9, 'https://www.gutenberg.org/ebooks/17311', 'fr', 61), +(20318, 'The Lady of the Basement Flat', 'Vaizey, George de Horne, Mrs.', '2007-10-20', 29, 'https://www.gutenberg.org/ebooks/23124', 'en', 3305), +(20319, 'Kepponen: Huvinäytelmä kahdessa näytöksessä', 'Lundquist, Ernst', '2016-03-20', 3, 'https://www.gutenberg.org/ebooks/51504', 'fi', 5375), +(20320, 'A Strange Story — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 23, 'https://www.gutenberg.org/ebooks/7694', 'en', 137), +(20321, 'Johann Sebastian Bach: His Life, Art, and Work', 'Forkel, Johann Nikolaus', '2011-01-24', 125, 'https://www.gutenberg.org/ebooks/35041', 'en', 7436), +(20322, 'London Labour and the London Poor (Vol. 1 of 4)', 'Mayhew, Henry', '2017-11-19', 184, 'https://www.gutenberg.org/ebooks/55998', 'en', 8962), +(20323, 'The Story of My Boyhood and Youth', 'Muir, John', '2006-05-09', 87, 'https://www.gutenberg.org/ebooks/18359', 'en', 8963), +(20324, 'Essays: Scientific, Political, & Speculative; Vol. 3 of 3\r\nLibrary Edition (1891), Containing Seven Essays not before Republished, and Various other Additions.', 'Spencer, Herbert', '2017-01-30', 25, 'https://www.gutenberg.org/ebooks/54076', 'en', 779), +(20325, 'Baseball Joe in the Big League; or, A Young Pitcher\'s Hardest Struggles', 'Chadwick, Lester', '2008-12-21', 9, 'https://www.gutenberg.org/ebooks/27584', 'en', 8964), +(20326, 'Genera and Subgenera of Chipmunks', 'White, John A.', '2009-11-23', 6, 'https://www.gutenberg.org/ebooks/30533', 'en', 6833), +(20327, 'The Little Quaker; or, the Triumph of Virtue. A Tale for the Instruction of Youth', 'Moodie, Susanna', '2007-12-19', 17, 'https://www.gutenberg.org/ebooks/23918', 'en', 195), +(20328, 'Soliloquies in England, and Later Soliloquies', 'Santayana, George', '2015-03-07', 57, 'https://www.gutenberg.org/ebooks/48429', 'en', 8965), +(20329, 'The First Capture; or, Hauling Down the Flag of England', 'Castlemon, Harry', '2013-02-17', 6, 'https://www.gutenberg.org/ebooks/42113', 'en', 5512), +(20330, 'The Letters of the Younger Pliny, First Series — Volume 1', 'Pliny, the Younger', '2002-05-01', 55, 'https://www.gutenberg.org/ebooks/3234', 'en', 8966), +(20331, 'L\'oeuvre des conteurs allemands: mémoires d\'une chanteuse allemande\ntraduit pour la première fois en français avec des fragments inédits', 'Anonymous', '2008-08-28', 72, 'https://www.gutenberg.org/ebooks/26456', 'fr', 8334), +(20332, 'The Phantom Herd', 'Bower, B. M.', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12663', 'en', 315), +(20333, 'On Mr. Spencer\'s Data of Ethics', 'Guthrie, Malcolm (Writer on Herbert Spencer)', '2018-03-11', 11, 'https://www.gutenberg.org/ebooks/56721', 'en', 8967), +(20334, 'Acquazzoni in montagna: Commedia in due atti', 'Giacosa, Giuseppe', '2010-05-05', 10, 'https://www.gutenberg.org/ebooks/32264', 'it', 407), +(20335, 'The Brownie of Bodsbeck, and Other Tales (Vol. 2 of 2)', 'Hogg, James', '2013-01-06', 21, 'https://www.gutenberg.org/ebooks/41796', 'en', 1922), +(20336, 'The Life of Johannes Brahms (Vol 2 of 2)', 'May, Florence', '2012-09-27', 18, 'https://www.gutenberg.org/ebooks/40644', 'en', 4674), +(20337, 'The Crystal Stopper', 'Leblanc, Maurice', '1998-12-01', 89, 'https://www.gutenberg.org/ebooks/1563', 'en', 1286), +(20338, 'The Camp in the Snow; Or, Besieged by Danger', 'Graydon, William Murray', '2008-01-15', 18, 'https://www.gutenberg.org/ebooks/24301', 'en', 323), +(20339, 'John Wesley, Jr.\nThe Story of an Experiment', 'Brummitt, Dan B. (Dan Brearley)', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10134', 'en', 8968), +(20340, 'Epicoene; Or, The Silent Woman', 'Jonson, Ben', '2003-05-01', 60, 'https://www.gutenberg.org/ebooks/4011', 'en', 907), +(20341, 'Paris and Its Story', 'Okey, Thomas', '2014-04-06', 18, 'https://www.gutenberg.org/ebooks/45336', 'en', 2972), +(20342, 'Bealby; A Holiday', 'Wells, H. G. (Herbert George)', '2019-06-16', 83, 'https://www.gutenberg.org/ebooks/59769', 'en', 3210), +(20343, 'Vocal Mastery\r\nTalks with Master Singers and Teachers, Comprising Interviews with Caruso, Farrar, Maurel, Lehmann, and Others', 'Brower, Harriette', '2005-03-23', 44, 'https://www.gutenberg.org/ebooks/15446', 'en', 8969), +(20344, 'Die Kathedrale: Gedichte', 'Schaumann, Ruth', '2016-06-20', 6, 'https://www.gutenberg.org/ebooks/52381', 'de', 4162), +(20345, 'Iloisia juttuja III', 'Jääskeläinen, Kaapro', '2007-06-04', 4, 'https://www.gutenberg.org/ebooks/21673', 'fi', 61), +(20346, 'Leonna: En skildring ur lifvet', 'Falkman, Charlotta', '2016-10-10', 3, 'https://www.gutenberg.org/ebooks/53253', 'sv', 61), +(20347, 'Cassell\'s Vegetarian Cookery\r\nA Manual of Cheap and Wholesome Diet', 'Payne, A. G. (Arthur Gay)', '2005-01-04', 84, 'https://www.gutenberg.org/ebooks/14594', 'en', 3321), +(20348, 'Manual for Noncommissioned Officers and Privates of Infantry of the Army of the United States, 1917\r\nTo be used by Engineer companies (dismounted) and Coast Artillery companies for Infantry instruction and training', 'United States. War Department', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/10908', 'en', 8970), +(20349, 'Gedichte in Prosa', 'Turgenev, Ivan Sergeevich', '2011-10-11', 15, 'https://www.gutenberg.org/ebooks/37716', 'de', 85), +(20350, 'Les soirées de l\'orchestre', 'Berlioz, Hector', '2010-04-19', 16, 'https://www.gutenberg.org/ebooks/32056', 'fr', 250), +(20351, 'The Simple Adventures of a Memsahib', 'Duncan, Sara Jeannette', '2018-02-06', 10, 'https://www.gutenberg.org/ebooks/56513', 'en', 1736), +(20352, 'Appletons\' Popular Science Monthly, August 1899\nVolume LV', 'Various', '2014-06-11', 16, 'https://www.gutenberg.org/ebooks/45938', 'en', 352), +(20353, 'The Long Run\n1916', 'Wharton, Edith', '2008-01-03', 24, 'https://www.gutenberg.org/ebooks/24133', 'en', 109), +(20354, 'Moonlight Bay', NULL, '2003-11-01', 40, 'https://www.gutenberg.org/ebooks/10306', 'en', 8971), +(20355, 'Children of the Dawn : Old Tales of Greece', 'Buckley, E. F. (Elsie Finnimore)', '2012-08-11', 68, 'https://www.gutenberg.org/ebooks/40476', 'en', 2139), +(20356, 'Histoire littéraire d\'Italie (4/9)', 'Ginguené, Pierre Louis', '2010-07-16', 16, 'https://www.gutenberg.org/ebooks/33184', 'fr', 7200), +(20357, 'Twilight Land', 'Pyle, Howard', '1999-05-01', 139, 'https://www.gutenberg.org/ebooks/1751', 'en', 1007), +(20358, 'Chronica d\'El-Rei D. Affonso III', 'Pina, Rui de', '2005-04-21', 7, 'https://www.gutenberg.org/ebooks/15674', 'pt', 8972), +(20359, 'Don Juan: Canto I', 'Byron, George Gordon Byron, Baron', '2007-05-18', 6, 'https://www.gutenberg.org/ebooks/21441', 'en', 8973), +(20360, 'The Mystery of a Hansom Cab', 'Hume, Fergus', '2003-07-01', 98, 'https://www.gutenberg.org/ebooks/4223', 'en', 61), +(20361, '\"Farewell\"', 'Stacpoole, William Henry', '2014-03-10', 4, 'https://www.gutenberg.org/ebooks/45104', 'en', 61), +(20362, 'La dette de jeu (1572)', 'Jacob, P. L.', '2011-09-24', 9, 'https://www.gutenberg.org/ebooks/37524', 'fr', 2871), +(20363, 'Anne of Green Gables', 'Montgomery, L. M. (Lucy Maud)', '2007-01-20', 24, 'https://www.gutenberg.org/ebooks/20593', 'en', 3705), +(20364, 'A Short List of Scientific Books Published by E. & F. N. Spon, Limited. June 1913', 'E. & F. N. Spon', '2018-12-17', 5, 'https://www.gutenberg.org/ebooks/58489', 'en', 852), +(20365, 'Humoristische Erinnerungen aus meinem academischen Leben, Zweites Bändchen\r\nin Heidelberg und Kiel in den Jahren 1817-1819', 'Kobbe, Theodor von', '2016-09-16', 4, 'https://www.gutenberg.org/ebooks/53061', 'de', 7239), +(20366, 'Journal des Goncourt (Troisième volume)\nMémoires de la vie littéraire', 'Goncourt, Jules de', '2005-11-21', 15, 'https://www.gutenberg.org/ebooks/17123', 'fr', 8974), +(20367, 'Rose of Affection', 'Anonymous', '2007-11-04', 10, 'https://www.gutenberg.org/ebooks/23316', 'en', 859), +(20368, 'Watchers of the Sky', 'Noyes, Alfred', '2004-09-01', 74, 'https://www.gutenberg.org/ebooks/6574', 'en', 8975), +(20369, 'Strangers at Lisconnel', 'Barlow, Jane', '2006-07-31', 20, 'https://www.gutenberg.org/ebooks/18957', 'en', 440), +(20370, 'History of the Decline and Fall of the Roman Empire — Volume 4', 'Gibbon, Edward', '2008-06-07', 160, 'https://www.gutenberg.org/ebooks/893', 'en', 1292), +(20371, 'Emmalan Elli', 'Leino, Kasimir', '2014-12-13', 20, 'https://www.gutenberg.org/ebooks/47653', 'fi', 41), +(20372, 'Aus den Tiefen des Weltmeeres\nSchilderungen von der deutschen Tiefsee-Expedition', 'Chun, Carl', '2014-09-06', 17, 'https://www.gutenberg.org/ebooks/46781', 'de', 4467), +(20373, 'A Catalogue of Books in English Later than 1700, Vol. 2\r\nForming a portion of the library of Robert Hoe', NULL, '2011-02-14', 15, 'https://www.gutenberg.org/ebooks/35273', 'en', 8976), +(20374, 'L\'arte di prender marito', 'Mantegazza, Paolo', '2006-11-21', 33, 'https://www.gutenberg.org/ebooks/19885', 'it', 1451), +(20375, 'Star-Crossed Lover', 'Stuart, William W.', '2016-04-12', 27, 'https://www.gutenberg.org/ebooks/51736', 'en', 26), +(20376, 'A Critique of the Theory of Evolution', 'Morgan, Thomas Hunt', '2009-12-17', 51, 'https://www.gutenberg.org/ebooks/30701', 'en', 1315), +(20377, 'The Correspondence of Thomas Carlyle and Ralph Waldo Emerson, 1834-1872, Vol. I', 'Emerson, Ralph Waldo', '2004-10-03', 48, 'https://www.gutenberg.org/ebooks/13583', 'en', 8977), +(20378, 'Practical Methods of Sewage Disposal for Residences, Hotels and Institutions', 'Ogden, Henry N. (Henry Neely)', '2017-02-26', 6, 'https://www.gutenberg.org/ebooks/54244', 'en', 8978), +(20379, 'Principles of politeness, and of knowing the world', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2019-08-07', 1316, 'https://www.gutenberg.org/ebooks/60071', 'en', 8979), +(20380, 'The Live Corpse', 'Tolstoy, Leo, graf', '2008-09-20', 28, 'https://www.gutenberg.org/ebooks/26664', 'en', 4249), +(20381, 'Graham\'s Magazine, Vol. XXXV, No. 6, December 1849', 'Various', '2017-08-20', 12, 'https://www.gutenberg.org/ebooks/55396', 'en', 380), +(20382, 'De profundis!\nEpisode Maritime', 'Durand, Charles', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12451', 'fr', 179), +(20383, 'Lo que dice la historia\nCartas al señor Ministro de Ultramar', 'Brau, Salvador', '2013-03-13', 9, 'https://www.gutenberg.org/ebooks/42321', 'es', 8980), +(20384, 'Stalky & Co.', 'Kipling, Rudyard', '2002-01-01', 174, 'https://www.gutenberg.org/ebooks/3006', 'en', 1779), +(20385, 'The Boat Club; or, The Bunkers of Rippleton', 'Optic, Oliver', '2008-02-09', 19, 'https://www.gutenberg.org/ebooks/24557', 'en', 2794), +(20386, 'Impressions of Theophrastus Such', 'Eliot, George', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/10762', 'en', 95), +(20387, 'Ein Buch, das gern ein Volksbuch werden möchte', 'Ebner-Eschenbach, Marie von', '2012-06-16', 11, 'https://www.gutenberg.org/ebooks/40012', 'de', 549), +(20388, 'Further Experiences of an Irish R.M.', 'Somerville, E. Oe. (Edith Oenone)', '2011-11-22', 19, 'https://www.gutenberg.org/ebooks/38108', 'en', 8981), +(20389, 'The Ancien Régime', 'Kingsley, Charles', '1998-06-01', 24, 'https://www.gutenberg.org/ebooks/1335', 'en', 624), +(20390, 'Nuovi versi', 'Betteloni, Vittorio', '2019-07-11', 28, 'https://www.gutenberg.org/ebooks/59903', 'it', 721), +(20391, 'Fidelity: A Novel', 'Glaspell, Susan', '2010-05-19', 31, 'https://www.gutenberg.org/ebooks/32432', 'en', 348), +(20392, 'Kalli, the Esquimaux Christian: A Memoir', 'Murray, T. B. (Thomas Boyles)', '2007-06-12', 5, 'https://www.gutenberg.org/ebooks/21819', 'en', 8982), +(20393, 'The Island of Fantasy: A Romance', 'Hume, Fergus', '2017-12-13', 32, 'https://www.gutenberg.org/ebooks/56177', 'en', 6685), +(20394, 'Dikes and Ditches; Or, Young America in Holland and Belgium', 'Optic, Oliver', '2008-05-16', 25, 'https://www.gutenberg.org/ebooks/25485', 'en', 8983), +(20395, 'The Secret Rose', 'Yeats, W. B. (William Butler)', '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/5795', 'en', 8984), +(20396, 'Decisive Battles of America', NULL, '2018-09-14', 12, 'https://www.gutenberg.org/ebooks/57899', 'en', 8985), +(20397, 'A Proposal Under Difficulties: A Farce', 'Bangs, John Kendrick', '2011-08-20', 15, 'https://www.gutenberg.org/ebooks/37140', 'en', 8986), +(20398, 'The Camp Fire Girls\' Larks and Pranks; Or, The House of the Open Door', 'Frey, Hildegard G.', '2012-02-20', 14, 'https://www.gutenberg.org/ebooks/38934', 'en', 8987), +(20399, 'El libro rojo, 1520-1867, Tomo II', 'Payno, Manuel', '2016-10-30', 23, 'https://www.gutenberg.org/ebooks/53405', 'es', 5981), +(20400, 'Darkwater: Voices from Within the Veil', 'Du Bois, W. E. B. (William Edward Burghardt)', '2005-02-28', 470, 'https://www.gutenberg.org/ebooks/15210', 'en', 180), +(20401, 'The Village Wife\'s Lament', 'Hewlett, Maurice', '2007-04-10', 20, 'https://www.gutenberg.org/ebooks/21025', 'en', 8), +(20402, 'Zadig, ou la Destinée, histoire orientale', 'Voltaire', '2003-11-01', 119, 'https://www.gutenberg.org/ebooks/4647', 'fr', 742), +(20403, 'North Devon Pottery and Its Export to America in the 17th Century', 'Watkins, C. Malcolm', '2011-05-13', 18, 'https://www.gutenberg.org/ebooks/36092', 'en', 8988), +(20404, 'The Lake of Geneva', 'Morris, Joseph E. (Joseph Ernest)', '2014-05-02', 12, 'https://www.gutenberg.org/ebooks/45560', 'en', 8989), +(20405, 'Quiet Talks about Jesus', 'Gordon, S. D. (Samuel Dickey)', '2004-07-03', 48, 'https://www.gutenberg.org/ebooks/12809', 'en', 8990), +(20406, 'The Terror: A Mystery', 'Machen, Arthur', '2011-03-20', 101, 'https://www.gutenberg.org/ebooks/35617', 'en', 8991), +(20407, 'The Young Lady\'s Equestrian Manual', 'Anonymous', '2009-06-26', 15, 'https://www.gutenberg.org/ebooks/29248', 'en', 2240), +(20408, 'Your Boys', 'Smith, Gipsy', '2005-08-09', 11, 'https://www.gutenberg.org/ebooks/16495', 'en', 8992), +(20409, 'Agnes Sorel: A Novel', 'James, G. P. R. (George Payne Rainsford)', '2016-03-05', 9, 'https://www.gutenberg.org/ebooks/51352', 'en', 8993), +(20410, 'Latin Phrase-Book', 'Meissner, Carl', '2015-10-22', 257, 'https://www.gutenberg.org/ebooks/50280', 'la', 8994), +(20411, 'The Navy as a Fighting Machine', 'Fiske, Bradley A. (Bradley Allen)', '2006-01-18', 5, 'https://www.gutenberg.org/ebooks/17547', 'en', 8995), +(20412, 'The Centaur', 'Blackwood, Algernon', '2006-02-01', 78, 'https://www.gutenberg.org/ebooks/9964', 'en', 114), +(20413, 'Devotions Upon Emergent Occasions; Together with Death\'s Duel', 'Donne, John', '2007-12-08', 130, 'https://www.gutenberg.org/ebooks/23772', 'en', 2064), +(20414, 'Das hohe Ziel der Erkenntnis: Aranada Upanishad', 'al-Raschid, Omar, bey', '2004-07-01', 48, 'https://www.gutenberg.org/ebooks/6110', 'de', 6630), +(20415, 'Sybil Chase; or, The Valley Ranche: A Tale of California Life', 'Stephens, Ann S. (Ann Sophia)', '2014-10-30', 18, 'https://www.gutenberg.org/ebooks/47237', 'en', 211), +(20416, 'The Gettysburg Address', 'Lincoln, Abraham', '2008-08-01', 8, 'https://www.gutenberg.org/ebooks/26200', 'en', 8996), +(20417, 'Progressive Morality: An Essay in Ethics', 'Fowler, Thomas', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12035', 'en', 4060), +(20418, 'Gauss, ein Umriss seines Lebens und Wirkens', 'Winnecke, Friedrich August Theodor', '2013-05-20', 24, 'https://www.gutenberg.org/ebooks/42745', 'de', 8997), +(20419, 'More Hunting Wasps', 'Fabre, Jean-Henri', '2002-10-01', 41, 'https://www.gutenberg.org/ebooks/3462', 'en', 483), +(20420, 'In Desert and Wilderness', 'Sienkiewicz, Henryk', '2009-10-30', 76, 'https://www.gutenberg.org/ebooks/30365', 'en', 323), +(20421, 'Fabeln und Erzählungen', 'Lessing, Gotthold Ephraim', '2005-10-01', 25, 'https://www.gutenberg.org/ebooks/9158', 'de', 1141), +(20422, 'Nelly\'s First Schooldays', 'Franklin, Josephine', '2013-09-11', 8, 'https://www.gutenberg.org/ebooks/43697', 'en', 8998), +(20423, 'Rude Stone Monuments in All Countries: Their Age and Uses', 'Fergusson, James', '2017-04-28', 21, 'https://www.gutenberg.org/ebooks/54620', 'en', 8999), +(20424, 'Reise in die Aequinoctial-Gegenden des neuen Continents. Band 1.', 'Humboldt, Alexander von', '2007-09-03', 35, 'https://www.gutenberg.org/ebooks/22492', 'de', 8149), +(20425, 'XXXII Ballades in Blue China [1885]', 'Lang, Andrew', '2016-02-09', 20, 'https://www.gutenberg.org/ebooks/51160', 'en', 5860), +(20426, 'The Mad Planet', 'Leinster, Murray', '2011-02-28', 54, 'https://www.gutenberg.org/ebooks/35425', 'en', 26), +(20427, 'Personal Narrative of Travels to the Equinoctial Regions of America, During the Year 1799-1804 — Volume 1', 'Bonpland, Aimé', '2004-08-01', 140, 'https://www.gutenberg.org/ebooks/6322', 'en', 9000), +(20428, 'Syvyydestä', 'Lehtimäki, Konrad', '2014-09-29', 13, 'https://www.gutenberg.org/ebooks/47005', 'fi', 665), +(20429, 'Mrs. Whittelsey\'s Magazine for Mothers and Daughters, Volume 3', 'Various', '2006-02-16', 60, 'https://www.gutenberg.org/ebooks/17775', 'en', 9001), +(20430, 'Manual for the Solution of Military Ciphers', 'Hitt, Parker', '2015-05-04', 44, 'https://www.gutenberg.org/ebooks/48871', 'en', 9002), +(20431, 'The Twin Cousins', 'May, Sophie', '2007-11-18', 22, 'https://www.gutenberg.org/ebooks/23540', 'en', 3129), +(20432, 'I rossi e i neri, vol. 2', 'Barrili, Anton Giulio', '2009-08-29', 16, 'https://www.gutenberg.org/ebooks/29846', 'it', 9003), +(20433, 'Minerva oscura\nProlegomeni: la costruzione morale del poema di Dante', 'Pascoli, Giovanni', '2013-04-22', 6, 'https://www.gutenberg.org/ebooks/42577', 'it', 9004), +(20434, 'The Galaxy, Volume 23, No. 2, February, 1877', 'Various', '2010-01-26', 20, 'https://www.gutenberg.org/ebooks/31085', 'en', 883), +(20435, 'Selections from American poetry, with special reference to Poe, Longfellow, Lowell and Whittier', NULL, '2003-01-01', 10, 'https://www.gutenberg.org/ebooks/3650', 'en', 178), +(20436, 'American Cookery\nNovember, 1921', 'Various', '2008-07-11', 61, 'https://www.gutenberg.org/ebooks/26032', 'en', 9005), +(20437, 'Establishing Relations\nOdd Craft, Part 7.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12207', 'en', 72), +(20438, 'Maerten Harpertsz. Tromp: Een zeemanszoon uit de 17de eeuw', 'Been, Johannes Hendrik', '2017-03-22', 23, 'https://www.gutenberg.org/ebooks/54412', 'nl', 9006), +(20439, 'Onni Kalpa', 'Hemmer, Jarl', '2015-01-01', 18, 'https://www.gutenberg.org/ebooks/47839', 'fi', 9007), +(20440, 'The Atlantic Monthly, Volume 15, No. 88, February, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2009-10-02', 8, 'https://www.gutenberg.org/ebooks/30157', 'en', 1227), +(20441, 'Wilhelm Tell', 'Schiller, Friedrich', '2001-08-01', 113, 'https://www.gutenberg.org/ebooks/2782', 'en', 4640), +(20442, 'Latin Pronunciation: A Short Exposition of the Roman Method', 'Peck, Harry Thurston', '2009-05-29', 23, 'https://www.gutenberg.org/ebooks/28994', 'en', 9008), +(20443, 'How Women Should Ride', 'De Hurst, C.', '2012-07-12', 22, 'https://www.gutenberg.org/ebooks/40220', 'en', 2240), +(20444, 'The Taming of the Shrew', 'Shakespeare, William', '1997-11-01', 172, 'https://www.gutenberg.org/ebooks/1107', 'en', 2455), +(20445, 'A Treatise on the Tactical Use of the Three Arms: Infantry, Artillery, and Cavalry', 'Lippitt, Francis J. (Francis James)', '2008-03-06', 23, 'https://www.gutenberg.org/ebooks/24765', 'en', 9009), +(20446, 'A Select Collection of Old English Plays, Volume 09', NULL, '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/10550', 'en', 1088), +(20447, 'Veiled Women', 'Pickthall, Marmaduke William', '2018-06-09', 24, 'https://www.gutenberg.org/ebooks/57297', 'en', 4766), +(20448, 'The World\'s Greatest Military Spies and Secret Service Agents', 'Barton, George', '2018-01-09', 79, 'https://www.gutenberg.org/ebooks/56345', 'en', 9010), +(20449, 'Deep Waters, the Entire Collection', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 29, 'https://www.gutenberg.org/ebooks/11482', 'en', 1902), +(20450, 'History of the Reign of Philip the Second, King of Spain, Vols. 1 and 2', 'Prescott, William Hickling', '2010-05-30', 24, 'https://www.gutenberg.org/ebooks/32600', 'en', 565), +(20451, 'Marjorie Dean Macy', 'Chase, Josephine', '2016-11-30', 16, 'https://www.gutenberg.org/ebooks/53637', 'en', 2486), +(20452, 'Jungle and Stream; Or, The Adventures of Two Boys in Siam', 'Fenn, George Manville', '2014-01-16', 9, 'https://www.gutenberg.org/ebooks/44680', 'en', 195), +(20453, 'In the Russian Ranks: A Soldier\'s Account of the Fighting in Poland', 'Morse, John', '2011-09-10', 24, 'https://www.gutenberg.org/ebooks/37372', 'en', 9011), +(20454, 'One of Our Conquerors — Volume 5', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4475', 'en', 8862), +(20455, 'London', 'Besant, Walter', '2014-05-25', 22, 'https://www.gutenberg.org/ebooks/45752', 'en', 9012), +(20456, 'The Philippine Islands, 1493-1898 — Volume 12 of 55\r\n1601-1604\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-02-12', 81, 'https://www.gutenberg.org/ebooks/15022', 'en', 1334), +(20457, 'The One Moss-Rose', 'Power, Philip Bennett', '2007-04-26', 9, 'https://www.gutenberg.org/ebooks/21217', 'en', 9013), +(20458, 'Rooman miehä: Maailmankuva elämäkertoina', 'Birt, Theodor', '2018-04-25', 11, 'https://www.gutenberg.org/ebooks/57051', 'fi', 9014), +(20459, 'The Story of the Two Bulls', 'Bolles, John R. (John Rogers)', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10796', 'en', 3059), +(20460, 'The Ladies\' Guide to True Politeness and Perfect Manners\nor, Miss Leslie\'s Behaviour Book', 'Leslie, Eliza', '2011-11-12', 84, 'https://www.gutenberg.org/ebooks/37988', 'en', 5272); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(20461, 'Index of the Project Gutenberg Works of Jonathan Swift', 'Swift, Jonathan', '2019-02-04', 9, 'https://www.gutenberg.org/ebooks/58825', 'en', 198), +(20462, 'A Mechanico-Physiological Theory of Organic Evolution', 'Nägeli, Carl', '2010-08-23', 11, 'https://www.gutenberg.org/ebooks/33514', 'en', 1315), +(20463, 'The White Rose of Memphis', 'Falkner, William C. (Clark)', '2012-10-21', 38, 'https://www.gutenberg.org/ebooks/41134', 'en', 9015), +(20464, 'La notte del Commendatore', 'Barrili, Anton Giulio', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11644', 'it', 61), +(20465, 'Andein tytär', 'West, Erkki', '2017-12-16', 4, 'https://www.gutenberg.org/ebooks/56183', 'fi', 41), +(20466, '闲情偶寄', 'Li, Yu', '2008-05-14', 101, 'https://www.gutenberg.org/ebooks/25471', 'zh', NULL), +(20467, 'Kungahällan kuningattaria ynnä muita kertomuksia', 'Lagerlöf, Selma', '2013-12-16', 4, 'https://www.gutenberg.org/ebooks/44446', 'fi', 2168), +(20468, 'Two Trips to Gorilla Land and the Cataracts of the Congo, Volume 2', 'Burton, Richard Francis, Sir', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/5761', 'en', 1332), +(20469, 'A princeza na berlinda\nRattazzi a vol d\'oiseau, com a biographia de sua Alteza', 'Castro, Urbano de', '2006-12-13', 23, 'https://www.gutenberg.org/ebooks/20103', 'pt', 9016), +(20470, 'Paavo Kontio', 'Leino, Eino', '2004-12-13', 21, 'https://www.gutenberg.org/ebooks/14336', 'fi', 61), +(20471, 'The Infamous Life of John Church, the St. George\'s Fields Preacher\r\nFrom His Infancy Up to His Trial and Conviction, With His Confession, Sent in a Letter to the Rev. Mr. L--, Two Days After His Attack on Adam Foreman, at Vauxhall, With Clerical Remarks by the Same Gentleman; to Which Is Added, His Love Epistles to E**** B****. Together With Various Other Letters, Particularly One to Cook, of Vere-Street Notoriety.', 'Anonymous', '2018-10-03', 7, 'https://www.gutenberg.org/ebooks/58019', 'en', 7134), +(20472, 'The Oriel Window', 'Molesworth, Mrs.', '2012-05-27', 15, 'https://www.gutenberg.org/ebooks/39812', 'en', 9017), +(20473, 'Indian Palmistry', 'Dale, J. B., Mrs.', '2016-07-08', 51, 'https://www.gutenberg.org/ebooks/52523', 'en', 9018), +(20474, 'The Visions of Dom Francisco de Quevedo Villegas', 'Quevedo, Francisco de', '2013-01-24', 32, 'https://www.gutenberg.org/ebooks/41908', 'en', 9019), +(20475, 'Hermann Stieffel, Soldier Artist of the West', 'Howell, Edgar M.', '2011-05-09', 13, 'https://www.gutenberg.org/ebooks/36066', 'en', 9020), +(20476, 'Sotto il velame: Saggio di un\'interpretazione generale del poema sacro', 'Pascoli, Giovanni', '2014-05-05', 11, 'https://www.gutenberg.org/ebooks/45594', 'it', 3406), +(20477, 'The Works of John Marston. Volume 2', 'Marston, John', '2014-07-17', 19, 'https://www.gutenberg.org/ebooks/46311', 'en', 126), +(20478, 'The Poorhouse Waif and His Divine Teacher: A True Story', 'Byrum, Isabel C. (Isabel Coston)', '2004-12-01', 8, 'https://www.gutenberg.org/ebooks/7036', 'en', 4927), +(20479, 'The Doctor of Pimlico: Being the Disclosure of a Great Crime', 'Le Queux, William', '2007-09-17', 10, 'https://www.gutenberg.org/ebooks/22654', 'en', 9021), +(20480, 'Weymouth New Testament in Modern Speech, 1 Timothy', 'Weymouth, Richard Francis', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/8842', 'en', 7212), +(20481, 'A Bird\'s-Eye View of the Bible\nSecond Edition', 'Palmer, Frank Nelson', '2005-08-07', 22, 'https://www.gutenberg.org/ebooks/16461', 'en', 5113), +(20482, 'Brave and Bold; Or, The Fortunes of Robert Rushton', 'Alger, Horatio, Jr.', '2006-02-01', 70, 'https://www.gutenberg.org/ebooks/9990', 'en', 195), +(20483, 'The Little House', 'Dawson, Coningsby', '2015-10-21', 12, 'https://www.gutenberg.org/ebooks/50274', 'en', 2224), +(20484, 'A Little Girl in Old Boston', 'Douglas, Amanda M.', '2007-12-09', 30, 'https://www.gutenberg.org/ebooks/23786', 'en', 9022), +(20485, '40 years / 40 años / 40 ans', 'Lebert, Marie', '2010-12-23', 21, 'https://www.gutenberg.org/ebooks/34731', 'fr', 340), +(20486, 'My Lady Clancarty\nBeing the True Story of the Earl of Clancarty and Lady Elizabeth Spencer', 'Taylor, Mary Imlay', '2017-10-08', 10, 'https://www.gutenberg.org/ebooks/55706', 'en', 9023), +(20487, 'Poesie inedite vol. I', 'Pellico, Silvio', '2006-10-01', 18, 'https://www.gutenberg.org/ebooks/19429', 'it', 8), +(20488, 'El Campesino Puertorriqueño\r\nSus Condiciones Físicas, Intelectuales y Morales, Causas que la Determinan y Medios Para Mejorarlas', 'Valle Atiles, Francisco del', '2015-07-04', 10, 'https://www.gutenberg.org/ebooks/49359', 'es', 9024), +(20489, 'The Japanese Twins', 'Perkins, Lucy Fitch', '2002-10-01', 37, 'https://www.gutenberg.org/ebooks/3496', 'en', 309), +(20490, 'Twentieth Century Inventions: A Forecast', 'Sutherland, George', '2010-02-10', 14, 'https://www.gutenberg.org/ebooks/31243', 'en', 1739), +(20491, 'From Sand Hill to Pine', 'Harte, Bret', '2006-05-18', 22, 'https://www.gutenberg.org/ebooks/2544', 'en', 179), +(20492, 'Betelguese\nA Trip Through Hell', 'de Esque, Jean', '2009-11-01', 11, 'https://www.gutenberg.org/ebooks/30391', 'en', 8), +(20493, 'A Simple Explanation of Modern Banking Customs', 'Robinson, Humphrey', '2013-09-07', 13, 'https://www.gutenberg.org/ebooks/43663', 'en', 2767), +(20494, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 495, June 25, 1831', 'Various', '2004-08-04', 2, 'https://www.gutenberg.org/ebooks/13113', 'en', 133), +(20495, 'Diccionario Bagobo-Español', 'Gisbert, Mateo', '2008-11-25', 71, 'https://www.gutenberg.org/ebooks/27326', 'bgs', 9025), +(20496, 'Mary Jane in New England', 'Judson, Clara Ingram', '2015-09-13', 5, 'https://www.gutenberg.org/ebooks/49957', 'en', 9026), +(20497, 'The Ultimate Experiment', 'DeKy, Thornton', '2007-08-31', 36, 'https://www.gutenberg.org/ebooks/22466', 'en', 179), +(20498, 'Made to Measure', 'Gault, William Campbell', '2016-02-12', 25, 'https://www.gutenberg.org/ebooks/51194', 'en', 26), +(20499, 'Myths of Babylonia and Assyria', 'Mackenzie, Donald A. (Donald Alexander)', '2005-09-05', 231, 'https://www.gutenberg.org/ebooks/16653', 'en', 9027), +(20500, 'Belle Powers\' Locket', 'Mathews, Joanna H. (Joanna Hooe)', '2014-06-28', 14, 'https://www.gutenberg.org/ebooks/46123', 'en', 5372), +(20501, 'Jenseits von Gut und Böse', 'Nietzsche, Friedrich Wilhelm', '2005-01-01', 260, 'https://www.gutenberg.org/ebooks/7204', 'de', 680), +(20502, 'The Green Book; Or, Freedom Under the Snow: A Novel', 'Jókai, Mór', '2010-11-29', 29, 'https://www.gutenberg.org/ebooks/34503', 'en', 9028), +(20503, 'Pobudka: zbiorek poezji', 'Asnyk, Adam', '2009-01-29', 12, 'https://www.gutenberg.org/ebooks/27928', 'pl', 8), +(20504, 'The Golden Censer\r\nOr, the duties of to-day, the hopes of the future', 'McGovern, John', '2006-02-17', 4, 'https://www.gutenberg.org/ebooks/17781', 'en', 9029), +(20505, 'The Writings of Thomas Jefferson, Vol. 2 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2015-09-23', 32, 'https://www.gutenberg.org/ebooks/50046', 'en', 3311), +(20506, 'The Curse of Pocahontas', 'Gilman, Wenona', '2015-05-05', 13, 'https://www.gutenberg.org/ebooks/48885', 'en', 61), +(20507, 'A History of Banks for Savings in Great Britain and Ireland', 'Lewins, William', '2013-04-22', 7, 'https://www.gutenberg.org/ebooks/42583', 'en', 9030), +(20508, 'Punch, or the London Charivari, Volume 158, June 2, 1920', 'Various', '2010-01-25', 5, 'https://www.gutenberg.org/ebooks/31071', 'en', 134), +(20509, 'The Aeroplane Express; or, The Boy Aeronaut\'s Grit', 'Sayler, H. L. (Harry Lincoln)', '2017-09-13', 9, 'https://www.gutenberg.org/ebooks/55534', 'en', 2279), +(20510, 'In the Footprints of the Padres', 'Stoddard, Charles Warren', '2004-08-29', 22, 'https://www.gutenberg.org/ebooks/13321', 'en', 6248), +(20511, 'Ancient States and Empires\r\nFor Colleges and Schools', 'Lord, John', '2008-11-01', 105, 'https://www.gutenberg.org/ebooks/27114', 'en', 1368), +(20512, 'The Four Million', 'Henry, O.', '2001-08-01', 275, 'https://www.gutenberg.org/ebooks/2776', 'en', 112), +(20513, 'The Backwoodsmen', 'Roberts, Charles G. D., Sir', '2009-05-24', 40, 'https://www.gutenberg.org/ebooks/28960', 'en', 2261), +(20514, 'The Discovery and Conquest of the Molucco and Philippine Islands.\r\nContaining their History, Ancient and Modern, Natural and Political: Their Description, Product, Religion, Government, Laws, Languages, Customs, Manners, Habits, Shape, and Inclinations of the Natives. With an Account of many other adjacent Islands, and several remarkable Voyages through the Streights of Magellan, and in other Parts.', 'Leonardo de Argensola, Bartolomé', '2013-08-12', 26, 'https://www.gutenberg.org/ebooks/43451', 'en', 9031), +(20515, 'Punch, or the London Charivari, Volume 1, November 27, 1841', 'Various', '2005-02-07', 9, 'https://www.gutenberg.org/ebooks/14938', 'en', 134), +(20516, 'Die hauptsächlichsten Theorien der Geometrie', 'Loria, Gino', '2010-09-14', 18, 'https://www.gutenberg.org/ebooks/33726', 'de', 9032), +(20517, 'The Marooner', 'Stearns, Charles A.', '2008-03-09', 25, 'https://www.gutenberg.org/ebooks/24791', 'en', 179), +(20518, 'El Doctor Centeno (Tomo I)', 'Pérez Galdós, Benito', '2018-06-03', 9, 'https://www.gutenberg.org/ebooks/57263', 'es', 1353), +(20519, 'Husbandry\nDeep Waters, Part 6.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11476', 'en', 1902), +(20520, '\'He Giveth His Beloved Sleep\'', 'Browning, Elizabeth Barrett', '2008-05-30', 7, 'https://www.gutenberg.org/ebooks/25643', 'en', 8), +(20521, 'Hamsun / Flaubert: Zwei Reden', 'Edschmid, Kasimir', '2012-11-06', 10, 'https://www.gutenberg.org/ebooks/41306', 'de', 9033), +(20522, 'Het Geheimzinnige Eiland\r\nDe Luchtschipbreukelingen', 'Verne, Jules', '2007-01-11', 19, 'https://www.gutenberg.org/ebooks/20331', 'nl', 4731), +(20523, 'Our Changing Constitution', 'Pierson, Charles W. (Charles Wheeler)', '2004-11-20', 10, 'https://www.gutenberg.org/ebooks/14104', 'en', 3472), +(20524, 'Kuvauksia ruotsalaisesta talonpojan kodista', 'Sigurd', '2014-01-15', 13, 'https://www.gutenberg.org/ebooks/44674', 'fi', 2168), +(20525, 'Cultus Arborum: A Descriptive Account of Phallic Tree Worship', 'Anonymous', '2011-09-11', 21, 'https://www.gutenberg.org/ebooks/37386', 'en', 4980), +(20526, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 02', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5553', 'en', 803), +(20527, 'Phallic Miscellanies\r\nFacts and Phases of Ancient and Modern Sex Worship, as Illustrated Chiefly in the Religions of India', 'Jennings, Hargrave', '2011-05-29', 30, 'https://www.gutenberg.org/ebooks/36254', 'en', 9034), +(20528, 'Lord Ormont and His Aminta — Volume 5', 'Meredith, George', '2003-09-01', 15, 'https://www.gutenberg.org/ebooks/4481', 'en', 137), +(20529, 'Kapina', 'Balzac, Honoré de', '2016-08-03', 15, 'https://www.gutenberg.org/ebooks/52711', 'fi', 5307), +(20530, 'A Lady\'s Captivity among Chinese Pirates in the Chinese Seas', 'Loviot, Fanny', '2010-10-30', 36, 'https://www.gutenberg.org/ebooks/34167', 'en', 9035), +(20531, 'Jaakko Ilkka ja Klaus Fleming\nViisinäytöksinen historiallinen näytelmä 9:ssä kuvaelmassa', 'Leino, Kasimir', '2014-11-29', 29, 'https://www.gutenberg.org/ebooks/47495', 'fi', 247), +(20532, 'History of the Thirty-sixth Regiment Massachusetts Volunteers. 1862-1865', 'Noyes, Edmund W.', '2015-11-10', 11, 'https://www.gutenberg.org/ebooks/50422', 'en', 9036), +(20533, 'Benjamin Franklin and the First Balloons', 'Franklin, Benjamin', '2013-09-24', 11, 'https://www.gutenberg.org/ebooks/43809', 'en', 9037), +(20534, 'A Bookful of Girls', 'Fuller, Anna', '2009-04-08', 19, 'https://www.gutenberg.org/ebooks/28538', 'en', 179), +(20535, 'A Simple Story', 'Inchbald, Mrs.', '2007-07-05', 61, 'https://www.gutenberg.org/ebooks/22002', 'en', 95), +(20536, 'Les stratagèmes', 'Frontinus, Sextus Julius', '2005-07-07', 26, 'https://www.gutenberg.org/ebooks/16237', 'fr', 9038), +(20537, 'A Voyage to the Moon', 'Cyrano de Bergerac', '2014-08-10', 60, 'https://www.gutenberg.org/ebooks/46547', 'en', 8406), +(20538, 'What Will He Do with It? — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7660', 'en', 137), +(20539, 'Beasts and Super-Beasts', 'Saki', '1995-05-01', 347, 'https://www.gutenberg.org/ebooks/269', 'en', 409), +(20540, 'The New Map of Europe (1911-1914)\r\nThe Story of the Recent European Diplomatic Crises and Wars and of Europe\'s Present Catastrophe', 'Gibbons, Herbert Adams', '2017-01-31', 16, 'https://www.gutenberg.org/ebooks/54082', 'en', 4773), +(20541, 'Lastuja IV-VII', 'Aho, Juhani', '2004-10-14', 16, 'https://www.gutenberg.org/ebooks/13745', 'fi', 665), +(20542, 'Buchanan\'s Journal of Man, July 1887\r\nVolume 1, Number 6', NULL, '2008-12-19', 38, 'https://www.gutenberg.org/ebooks/27570', 'en', 3905), +(20543, 'Hermann und Dorothea', 'Goethe, Johann Wolfgang von', '2000-09-01', 135, 'https://www.gutenberg.org/ebooks/2312', 'de', 1518), +(20544, 'My African Journey', 'Churchill, Winston', '2013-06-25', 118, 'https://www.gutenberg.org/ebooks/43035', 'en', 9039), +(20545, 'The Adventure of the Red Circle', 'Doyle, Arthur Conan', '2005-08-01', 4, 'https://www.gutenberg.org/ebooks/8628', 'en', 128), +(20546, 'Stained Glass Work: A text-book for students and workers in glass', 'Whall, Christopher', '2010-02-27', 42, 'https://www.gutenberg.org/ebooks/31415', 'en', 9040), +(20547, 'The Splendid Idle Forties: Stories of Old California', 'Atherton, Gertrude Franklin Horn', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12697', 'en', 9041), +(20548, 'Seed-time and Harvest: A Novel', 'Reuter, Fritz', '2011-04-16', 4, 'https://www.gutenberg.org/ebooks/35889', 'en', 5500), +(20549, 'Many-Storied Mountains: The Life of Glacier National Park', 'Beaumont, Greg', '2017-07-19', 17, 'https://www.gutenberg.org/ebooks/55150', 'en', 9042), +(20550, 'The Autobiography of an Ex-Colored Man', 'Johnson, James Weldon', '2004-02-01', 166, 'https://www.gutenberg.org/ebooks/11012', 'en', 3762), +(20551, 'Sur quelques applications des fonctions elliptiques', 'Hermite, Charles', '2008-04-29', 11, 'https://www.gutenberg.org/ebooks/25227', 'fr', 2584), +(20552, 'In Dingsda', 'Schlaf, Johannes', '2012-05-12', 137, 'https://www.gutenberg.org/ebooks/39678', 'de', 422), +(20553, 'A Letter to a Gentleman in the Country, from His Friend in London\r\nGiving an Authentick and Circumstantial Account of the Confinement, Behaviour, and Death of Admiral Byng, as Attested by the Gentlemen Who Were Present', 'Anonymous', '2010-05-08', 8, 'https://www.gutenberg.org/ebooks/32290', 'en', 9043), +(20554, 'The Queer, the Quaint and the Quizzical: A Cabinet for the Curious', 'Stauffer, Frank H.', '2013-01-02', 20, 'https://www.gutenberg.org/ebooks/41762', 'en', 813), +(20555, 'Andersen\'s Fairy Tales', 'Andersen, H. C. (Hans Christian)', '1999-01-01', 1378, 'https://www.gutenberg.org/ebooks/1597', 'en', 7830), +(20556, 'Old New Zealand: Being Incidents of Native Customs and Character in the Old Times', 'Maning, Frederick Edward', '2010-08-03', 27, 'https://www.gutenberg.org/ebooks/33342', 'en', 3572), +(20557, 'La fabrique de mariages, Vol. 4', 'Féval, Paul', '2018-07-30', 7, 'https://www.gutenberg.org/ebooks/57607', 'fr', 298), +(20558, 'L\'Illustration, No. 3269, 21 Octobre 1905', 'Various', '2011-07-05', 2, 'https://www.gutenberg.org/ebooks/36630', 'fr', 150), +(20559, 'Blue-Stocking Hall, (Vol. 2 of 3)', 'Scargill, William Pitt', '2016-06-19', 14, 'https://www.gutenberg.org/ebooks/52375', 'en', 9044), +(20560, 'The Youngest Girl in the Fifth: A School Story', 'Brazil, Angela', '2007-06-06', 69, 'https://www.gutenberg.org/ebooks/21687', 'en', 1779), +(20561, 'Short Studies on Great Subjects', 'Froude, James Anthony', '2007-03-06', 46, 'https://www.gutenberg.org/ebooks/20755', 'en', 9045), +(20562, 'Omzwervingen door de eilandenwereld van den Grooten Oceaan: De Fidji-eilanden\r\nDe Aarde en haar Volken, 1888', 'Anonymous', '2005-01-02', 9, 'https://www.gutenberg.org/ebooks/14560', 'nl', 7235), +(20563, 'The Angel of Pain', 'Benson, E. F. (Edward Frederic)', '2013-11-17', 32, 'https://www.gutenberg.org/ebooks/44210', 'en', 109), +(20564, 'Fair Em', 'Shakespeare (spurious and doubtful works)', '2004-02-01', 33, 'https://www.gutenberg.org/ebooks/5137', 'en', 9046), +(20565, 'Nests and Eggs of Familiar British Birds, Second Series\nDescribed and Illustrated; with an Account of the Haunts and Habits of the Feathered Architects, and their Times and Modes of Building', 'Adams, H. G. (Henry Gardiner)', '2012-12-04', 9, 'https://www.gutenberg.org/ebooks/41550', 'en', 9047), +(20566, 'Project Gutenberg \"Best Of\" CD August 2003', NULL, '2003-08-01', 27, 'https://www.gutenberg.org/ebooks/11220', 'en', NULL), +(20567, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 11', NULL, '2008-04-07', 17, 'https://www.gutenberg.org/ebooks/25015', 'en', 19), +(20568, 'Lucerne', 'Flemwell, G. (George)', '2018-07-02', 3, 'https://www.gutenberg.org/ebooks/57435', 'en', 9048), +(20569, 'The Meaning of Faith', 'Fosdick, Harry Emerson', '2012-08-11', 24, 'https://www.gutenberg.org/ebooks/40482', 'en', 3046), +(20570, 'Talvi-iltain tarinoita 4\nNuoruuden unelmia. Vernan ruusut.', 'Topelius, Zacharias', '2012-01-17', 8, 'https://www.gutenberg.org/ebooks/38598', 'fi', 2168), +(20571, 'The Itching Palm: A Study of the Habit of Tipping in America', 'Scott, William R. (William Rufus)', '2010-07-15', 50, 'https://www.gutenberg.org/ebooks/33170', 'en', 9049), +(20572, 'Chronicles of England, Scotland and Ireland (2 of 6): England (12 of 12)\r\nRichard the Second, the Second Sonne to Edward Prince of Wales', 'Holinshed, Raphael', '2016-05-23', 21, 'https://www.gutenberg.org/ebooks/52147', 'en', 9050), +(20573, 'De Usu Ratiocinii Mechanici in Medicina', 'Boerhaave, Herman', '2005-04-22', 10, 'https://www.gutenberg.org/ebooks/15680', 'la', 2403), +(20574, 'On Union with God', NULL, '2011-06-12', 50, 'https://www.gutenberg.org/ebooks/36402', 'en', 9051), +(20575, 'The Dark Tower', 'Bottome, Phyllis', '2008-06-18', 39, 'https://www.gutenberg.org/ebooks/25829', 'en', 579), +(20576, 'On the Development and Distribution of Primitive Locks and Keys', 'Pitt-Rivers, Augustus Henry Lane-Fox', '2013-10-25', 15, 'https://www.gutenberg.org/ebooks/44022', 'en', 9052), +(20577, 'Travels in the Interior of Africa — Volume 02', 'Park, Mungo', '2004-03-01', 40, 'https://www.gutenberg.org/ebooks/5305', 'en', 9053), +(20578, 'The Pigeon Tale', 'Bennett, Virginia', '2007-02-11', 26, 'https://www.gutenberg.org/ebooks/20567', 'en', 2203), +(20579, 'The Children\'s Hour, Volume 3 (of 10)\r\nStories from the Classics', NULL, '2005-01-21', 58, 'https://www.gutenberg.org/ebooks/14752', 'en', 388), +(20580, 'Digging for Gold: A Story of California', 'Alger, Horatio, Jr.', '2016-09-20', 11, 'https://www.gutenberg.org/ebooks/53095', 'en', 3334), +(20581, 'Muoto- ja muistikuvia III', 'Aspelin-Haapkylä, Eliel', '2015-12-05', 15, 'https://www.gutenberg.org/ebooks/50610', 'fi', 7411), +(20582, 'Mrs. Korner Sins Her Mercies', 'Jerome, Jerome K. (Jerome Klapka)', '1997-04-01', 77, 'https://www.gutenberg.org/ebooks/867', 'en', 378), +(20583, 'Marching on Niagara; Or, The Soldier Boys of the Old Frontier', 'Stratemeyer, Edward', '2010-11-17', 13, 'https://www.gutenberg.org/ebooks/34355', 'en', 9054), +(20584, 'Charter and Supplemental Charter of the Hudson\'s Bay Company', 'Hudson\'s Bay Company', '2004-09-01', 12, 'https://www.gutenberg.org/ebooks/6580', 'en', 9055), +(20585, 'Tea Drinking in 18th-Century America: Its Etiquette and Equipage\nUnited States National Museum Bulletin 225, Contributions from the Museum of History and Technology Paper 14, pages 61-91, Smithsonian Institution, Washington, DC, 1961', 'Roth, Rodris', '2014-09-13', 43, 'https://www.gutenberg.org/ebooks/46775', 'en', 9056), +(20586, 'Serbia in Light and Darkness\nWith Preface by the Archbishop of Canterbury, (1916)', 'Velimirović, Nikolaj', '2006-11-19', 35, 'https://www.gutenberg.org/ebooks/19871', 'en', 9057), +(20587, 'Awd Isaac, The Steeple Chase, and Other Poems\r\nWith a glossary of the Yorkshire Dialect', 'Castillo, John', '2011-02-14', 6, 'https://www.gutenberg.org/ebooks/35287', 'en', 54), +(20588, 'Autobiography of a Yogi', 'Yogananda, Paramahansa', '2005-02-01', 670, 'https://www.gutenberg.org/ebooks/7452', 'en', 9058), +(20589, 'Hortus Inclusus\nMessages from the Wood to the Garden, Sent in Happy Days\nto the Sister Ladies of the Thwaite, Coniston', 'Ruskin, John', '2007-08-03', 20, 'https://www.gutenberg.org/ebooks/22230', 'en', 9059), +(20590, 'Jane Sinclair; Or, The Fawn Of Springvale\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 8, 'https://www.gutenberg.org/ebooks/16005', 'en', 440), +(20591, 'History of Friedrich II of Prussia — Volume 20', 'Carlyle, Thomas', '2008-06-16', 28, 'https://www.gutenberg.org/ebooks/2120', 'en', 6848), +(20592, 'Scenes and Characters from the Works of Charles Dickens\r\nBeing Eight Hundred and Sixty-six Pictures Printed from the Original Wood Blocks', 'Dickens, Charles', '2013-07-13', 53, 'https://www.gutenberg.org/ebooks/43207', 'en', 9060), +(20593, 'The Meadow-Brook Girls Afloat; Or, the Stormy Cruise of the Red Rover', 'Aldridge, Janet', '2004-10-02', 20, 'https://www.gutenberg.org/ebooks/13577', 'en', 51), +(20594, 'Il Parlamento Nazionale Napoletano per gli anni 1820 e 1821: memorie e documenti', NULL, '2019-08-10', 120, 'https://www.gutenberg.org/ebooks/60085', 'it', 9061), +(20595, 'Popular Education\nFor the use of Parents and Teachers, and for Young Persons of Both Sexes', 'Mayhew, Ira', '2009-01-08', 18, 'https://www.gutenberg.org/ebooks/27742', 'en', 973), +(20596, 'The Pirates of Panama\nor, The Buccaneers of America; a True Account of the Famous Adventures and Daring Deeds of Sir Henry Morgan and Other Notorious Freebooters of the Spanish Main', 'Exquemelin, A. O. (Alexandre Olivier)', '2008-09-23', 105, 'https://www.gutenberg.org/ebooks/26690', 'en', 9062), +(20597, 'Graham\'s Magazine, Vol. XXXV, No. 1, July 1849', 'Various', '2017-08-15', 15, 'https://www.gutenberg.org/ebooks/55362', 'en', 162), +(20598, 'Sixteen Poems', 'Allingham, William', '2005-10-09', 26, 'https://www.gutenberg.org/ebooks/16839', 'en', 8), +(20599, 'Volcanoes: Past and Present', 'Hull, Edward', '2010-03-13', 19, 'https://www.gutenberg.org/ebooks/31627', 'en', 9063), +(20600, 'The Principles of Chemistry, Volume II', 'Mendeleyev, Dmitry Ivanovich', '2017-02-19', 30, 'https://www.gutenberg.org/ebooks/54210', 'en', 292), +(20601, 'Miss Leslie\'s Complete Cookery\nDirections for Cookery, in Its Various Branches', 'Leslie, Eliza', '2019-07-31', 1159, 'https://www.gutenberg.org/ebooks/60025', 'en', 103), +(20602, 'The Frost Spirit, and other poems\r\nPart 1 From Volume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 20, 'https://www.gutenberg.org/ebooks/9568', 'en', 350), +(20603, 'In a Hollow of the Hills', 'Harte, Bret', '2000-05-01', 24, 'https://www.gutenberg.org/ebooks/2180', 'en', 211), +(20604, 'The Stones of Venice, Volume 2 (of 3),', 'Ruskin, John', '2009-12-31', 183, 'https://www.gutenberg.org/ebooks/30755', 'en', 1036), +(20605, 'Chincha Plain-Weave Cloths', 'O\'Neale, Lila M. (Lila Morris)', '2013-03-19', 11, 'https://www.gutenberg.org/ebooks/42375', 'en', 9064), +(20606, 'Complete Works of Plutarch — Volume 3: Essays and Miscellanies', 'Plutarch', '2002-02-01', 81, 'https://www.gutenberg.org/ebooks/3052', 'en', 6031), +(20607, 'Sa Tabi ng Bangin\nKasaysayan Tagalog', 'Rivera, Jose Maria', '2005-10-18', 3, 'https://www.gutenberg.org/ebooks/16899', 'tl', 9065), +(20608, 'Stories of the Foot-hills', 'Graham, Margaret Collier', '2010-03-18', 14, 'https://www.gutenberg.org/ebooks/31687', 'en', 770), +(20609, 'A Cousin\'s Conspiracy; Or, A Boy\'s Struggle for an Inheritance', 'Alger, Horatio, Jr.', '2008-08-16', 30, 'https://www.gutenberg.org/ebooks/26630', 'en', 9066), +(20610, 'Frank, the Young Naturalist', 'Castlemon, Harry', '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12405', 'en', 1447), +(20611, 'The Last Harvest', 'Burroughs, John', '2006-07-25', 23, 'https://www.gutenberg.org/ebooks/18903', 'en', 4637), +(20612, 'The Crescent Moon', NULL, '2004-09-01', 66, 'https://www.gutenberg.org/ebooks/6520', 'en', 7901), +(20613, 'The Ballads and Songs of Yorkshire\r\nTranscribed from Private Manuscripts, Rare Broadsides, and Scarce Publications; with Notes and a Glossary', NULL, '2014-12-09', 20, 'https://www.gutenberg.org/ebooks/47607', 'en', 9067), +(20614, 'Opúsculos por Alexandre Herculano - Tomo 04', 'Herculano, Alexandre', '2005-11-28', 19, 'https://www.gutenberg.org/ebooks/17177', 'pt', 410), +(20615, 'Sisar Rosa', 'Collins, Wilkie', '2007-11-05', 4, 'https://www.gutenberg.org/ebooks/23342', 'fi', 61), +(20616, '\'Me and Nobbles\'', 'Le Feuvre, Amy', '2007-08-10', 24, 'https://www.gutenberg.org/ebooks/22290', 'en', 9068), +(20617, 'The Epistles of St. Peter and St. Jude Preached and Explained', 'Luther, Martin', '2009-08-12', 32, 'https://www.gutenberg.org/ebooks/29678', 'en', 9069), +(20618, 'Manx Fairy Tales', 'Morrison, Sophia', '2016-04-15', 217, 'https://www.gutenberg.org/ebooks/51762', 'en', 1007), +(20619, 'A Selection from the Poems of William Morris', 'Morris, William', '2011-02-09', 15, 'https://www.gutenberg.org/ebooks/35227', 'en', 532), +(20620, 'Two Years Before the Mast', 'Dana, Richard Henry', '2003-07-01', 363, 'https://www.gutenberg.org/ebooks/4277', 'en', 750), +(20621, 'Dictionnaire érotique moderne', 'Delvau, Alfred', '2014-03-16', 82, 'https://www.gutenberg.org/ebooks/45150', 'fr', 940), +(20622, 'Washington and the American Republic, Vol. 3.', 'Lossing, Benson John', '2008-06-24', 13, 'https://www.gutenberg.org/ebooks/25889', 'en', 9070), +(20623, 'Recreations in Astronomy\nWith Directions for Practical Experiments and Telescopic Work', 'Warren, Henry White', '2005-04-14', 33, 'https://www.gutenberg.org/ebooks/15620', 'en', 1683), +(20624, 'The Young Visiters or, Mr. Salteena\'s Plan', 'Ashford, Daisy', '2007-05-11', 99, 'https://www.gutenberg.org/ebooks/21415', 'en', 637), +(20625, 'When You Giffle...', 'Stecher, L. J., Jr.', '2016-09-12', 15, 'https://www.gutenberg.org/ebooks/53035', 'en', 179), +(20626, 'The History of Modern Painting, Volume 3 (of 4)\nRevised edition continued by the author to the end of the XIX century', 'Muther, Richard', '2013-10-31', 22, 'https://www.gutenberg.org/ebooks/44082', 'en', 2227), +(20627, 'Secret History of the Court of England, from the Accession of George the Third to the Death of George the Fourth, Volume 1 (of 2)\r\nIncluding, Among Other Important Matters, Full Particulars of the Mysterious Death of the Princess Charlotte', 'Hamilton, Anne, Lady', '2011-09-29', 104, 'https://www.gutenberg.org/ebooks/37570', 'en', 9071), +(20628, 'Maggie Miller: The Story of Old Hagar\'s Secret', 'Holmes, Mary Jane', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11280', 'en', 61), +(20629, 'Orestes', 'Euripides', '2018-02-11', 46, 'https://www.gutenberg.org/ebooks/56547', 'sv', 2254), +(20630, 'A Chave do Enigma', 'Castilho, Antonio Feliciano de', '2010-04-15', 13, 'https://www.gutenberg.org/ebooks/32002', 'pt', 2716), +(20631, 'Voyages loin de ma chambre t.2', 'Dondel Du Faouëdic, Noémie', '2012-08-04', 6, 'https://www.gutenberg.org/ebooks/40422', 'fr', 885), +(20632, 'A History of Science — Volume 1', 'Williams, Henry Smith', '1999-04-01', 49, 'https://www.gutenberg.org/ebooks/1705', 'en', 186), +(20633, 'Chambers\'s Twentieth Century Dictionary (part 2 of 4: E-M)', NULL, '2012-01-10', 74, 'https://www.gutenberg.org/ebooks/38538', 'en', 1481), +(20634, 'Saint John Chrysostom, His Life and Times\r\nA sketch of the church and the empire in the fourth century', 'Stephens, W. R. W. (William Richard Wood)', '2016-12-27', 20, 'https://www.gutenberg.org/ebooks/53809', 'en', 9072), +(20635, 'Careless Jane and Other Tales', 'Pyle, Katharine', '2008-01-04', 19, 'https://www.gutenberg.org/ebooks/24167', 'en', 1209), +(20636, 'Visser\'s Nederlandsch-Indisch Vegetarisch Kookboek', 'Catenius-van der Meijden, J. M. J.', '2018-07-13', 20, 'https://www.gutenberg.org/ebooks/57495', 'nl', 9073), +(20637, 'The Works of Samuel Johnson, LL.D. Volume 11.\r\nParlimentary Debates II.', 'Johnson, Samuel', '2003-12-01', 23, 'https://www.gutenberg.org/ebooks/10352', 'en', 9074), +(20638, 'The Virgin-Birth of Our Lord\r\nA paper read (in substance) before the confraternity of the Holy Trinity at Cambridge', 'Randolph, B. W. (Berkeley William)', '2005-03-19', 18, 'https://www.gutenberg.org/ebooks/15412', 'en', 9075), +(20639, 'Gambler\'s World', 'Laumer, Keith', '2007-05-28', 116, 'https://www.gutenberg.org/ebooks/21627', 'en', 9076), +(20640, 'Anarchism', 'Eltzbacher, Paul', '2011-07-10', 29, 'https://www.gutenberg.org/ebooks/36690', 'en', 9077), +(20641, 'Omoo: Adventures in the South Seas', 'Melville, Herman', '2003-05-01', 216, 'https://www.gutenberg.org/ebooks/4045', 'en', 323), +(20642, 'The Ghost World', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2014-04-11', 28, 'https://www.gutenberg.org/ebooks/45362', 'en', 1245), +(20643, 'Fishes of the Big Blue River Basin, Kansas', 'Minckley, W. L.', '2011-10-13', 8, 'https://www.gutenberg.org/ebooks/37742', 'en', 9078), +(20644, 'My Life — Volume 1', 'Wagner, Richard', '2004-02-01', 80, 'https://www.gutenberg.org/ebooks/5197', 'en', 1464), +(20645, 'Dramas de Guillermo Shakspeare [vol. 1]', 'Shakespeare, William', '2016-10-04', 90, 'https://www.gutenberg.org/ebooks/53207', 'es', 9079), +(20646, 'Wainer', 'Shaara, Michael', '2010-05-03', 32, 'https://www.gutenberg.org/ebooks/32230', 'en', 179), +(20647, 'Un cavallo nella luna: Novelle', 'Pirandello, Luigi', '2018-03-18', 74, 'https://www.gutenberg.org/ebooks/56775', 'it', 892), +(20648, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1607a', 'Motley, John Lothrop', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/4879', 'en', 3372), +(20649, '續世說', 'Kong, Pingzhong', '2008-05-02', 14, 'https://www.gutenberg.org/ebooks/25287', 'zh', 1682), +(20650, 'Rosmersholm: Dramo en kvar aktoj', 'Ibsen, Henrik', '2008-01-18', 35, 'https://www.gutenberg.org/ebooks/24355', 'eo', 9080), +(20651, 'Pierre Nozière', 'France, Anatole', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10160', 'fr', 687), +(20652, 'Notes on the Book of Leviticus', 'Mackintosh, Charles Henry', '2012-08-29', 45, 'https://www.gutenberg.org/ebooks/40610', 'en', 6473), +(20653, 'Pericles, Prince of Tyre', 'Shakespeare, William', '1998-11-01', 83, 'https://www.gutenberg.org/ebooks/1537', 'en', 9081), +(20654, 'The Bondboy', 'Ogden, George W. (George Washington)', '2009-11-30', 22, 'https://www.gutenberg.org/ebooks/30567', 'en', 315), +(20655, 'Dust of New York', 'Bercovici, Konrad', '2013-07-05', 24, 'https://www.gutenberg.org/ebooks/43095', 'en', 1660), +(20656, 'Dorothy Dale in the West', 'Penrose, Margaret', '2017-01-19', 13, 'https://www.gutenberg.org/ebooks/54022', 'en', 389), +(20657, 'Engelhart Ratgeber: Roman', 'Wassermann, Jakob', '2008-08-23', 19, 'https://www.gutenberg.org/ebooks/26402', 'de', 253), +(20658, 'Joris Komijn op de Tentoonstelling\nHumoristische schets van Justus van Maurik', 'Maurik, Justus van', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12637', 'nl', 9082), +(20659, 'The 2009 CIA World Factbook', 'United States. Central Intelligence Agency', '2011-04-11', 59, 'https://www.gutenberg.org/ebooks/35829', 'en', 1407), +(20660, 'Louise Chandler Moulton, Poet and Friend', 'Whiting, Lilian', '2013-02-21', 2, 'https://www.gutenberg.org/ebooks/42147', 'en', 9083), +(20661, 'The Eleven Comedies, Volume 1', 'Aristophanes', '2005-08-01', 81, 'https://www.gutenberg.org/ebooks/8688', 'en', 9084), +(20662, 'A Short History of Wales', 'Edwards, Owen Morgan, Sir', '2002-06-01', 37, 'https://www.gutenberg.org/ebooks/3260', 'en', 9085), +(20663, 'Histoire comique', 'France, Anatole', '2005-12-18', 10, 'https://www.gutenberg.org/ebooks/17345', 'fr', 687), +(20664, 'Mitä meidän siis on tekeminen?', 'Tolstoy, Leo, graf', '2015-11-18', 3, 'https://www.gutenberg.org/ebooks/50482', 'fi', 2380), +(20665, 'A Brace Of Boys\n1867, From \"Little Brother\"', 'Ludlow, Fitz Hugh', '2007-10-24', 10, 'https://www.gutenberg.org/ebooks/23170', 'en', 179), +(20666, 'Religion in Japan', 'Cobbold, George A. (George Augustus)', '2009-04-24', 29, 'https://www.gutenberg.org/ebooks/28598', 'en', 3297), +(20667, 'Akbar: een oosterse roman', 'Limburg Brouwer, P. A. S. van (Petrus Abraham Samuel)', '2004-10-01', 15, 'https://www.gutenberg.org/ebooks/6712', 'nl', 9086), +(20668, 'British Canals: Is their resuscitation practicable?', 'Pratt, Edwin A.', '2014-11-23', 13, 'https://www.gutenberg.org/ebooks/47435', 'en', 9087), +(20669, 'Wrinkles in Electric Lighting', 'Stephen, Vincent', '2011-01-20', 9, 'https://www.gutenberg.org/ebooks/35015', 'en', 9088), +(20670, 'The Long, Silvery Day', 'Ludens, Magnus', '2016-03-25', 20, 'https://www.gutenberg.org/ebooks/51550', 'en', 1660), +(20671, 'The Philippine Islands, 1493-1898 — Volume 22 of 55 \r\n1625-29\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2005-07-15', 51, 'https://www.gutenberg.org/ebooks/16297', 'en', 8515), +(20672, 'Turkish and Other Baths: A Guide to Good Health and Longevity', 'Stables, Gordon', '2011-09-06', 11, 'https://www.gutenberg.org/ebooks/37326', 'en', 9089), +(20673, 'De Prins en Johan de Witt\r\nof ons land in het tweede tijdperk der eerste stadhouderlooze regeering', 'Andriessen, P. J. (Pieter Jacob)', '2007-01-18', 17, 'https://www.gutenberg.org/ebooks/20391', 'nl', 9090), +(20674, 'Sweet P\'s', 'Lippmann, Julie M.', '2016-12-04', 12, 'https://www.gutenberg.org/ebooks/53663', 'en', 1817), +(20675, 'Some Principles of Maritime Strategy', 'Corbett, Julian Stafford', '2005-02-16', 193, 'https://www.gutenberg.org/ebooks/15076', 'en', 9091), +(20676, 'Index of the Project Gutenberg Works of Fergus Hume', 'Hume, Fergus', '2019-04-25', 14, 'https://www.gutenberg.org/ebooks/59359', 'en', 198), +(20677, 'The Madigans', 'Michelson, Miriam', '2007-04-27', 21, 'https://www.gutenberg.org/ebooks/21243', 'en', 7171), +(20678, 'Rhoda Fleming — Volume 1', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4421', 'en', 706), +(20679, 'The Overland Guide-book\nA complete vade-mecum for the overland traveller, to India viâ Egypt.', 'Barber, James, active 1837-1839', '2014-05-20', 27, 'https://www.gutenberg.org/ebooks/45706', 'en', 9092), +(20680, 'The Tale of Grunty Pig\nSlumber-Town Tales', 'Bailey, Arthur Scott', '2008-03-02', 24, 'https://www.gutenberg.org/ebooks/24731', 'en', 195), +(20681, 'Liverpool Gals', 'McGuinn, Roger', '2003-12-01', 7, 'https://www.gutenberg.org/ebooks/10504', 'en', 9093), +(20682, 'Maps of Old London', NULL, '2012-07-19', 21, 'https://www.gutenberg.org/ebooks/40274', 'en', 9094), +(20683, 'The Chessmen of Mars', 'Burroughs, Edgar Rice', '1998-01-01', 357, 'https://www.gutenberg.org/ebooks/1153', 'en', 26), +(20684, 'The Go Ahead Boys and Simon\'s Mine', 'Kay, Ross', '2005-02-09', 19, 'https://www.gutenberg.org/ebooks/14998', 'en', 9095), +(20685, 'Readings from Latin Verse; With Notes', 'Bushnell, Curtis C. (Curtis Clark)', '2010-09-21', 11, 'https://www.gutenberg.org/ebooks/33786', 'en', 9096), +(20686, 'Project Hush', 'Tenn, William', '2010-06-02', 57, 'https://www.gutenberg.org/ebooks/32654', 'en', 179), +(20687, 'The Book of the Ocean', 'Ingersoll, Ernest', '2018-01-05', 52, 'https://www.gutenberg.org/ebooks/56311', 'en', 2735), +(20688, 'The Cosmic Express', 'Williamson, Jack', '2008-07-15', 91, 'https://www.gutenberg.org/ebooks/26066', 'en', 179), +(20689, 'Wholesale Price List of Newspapers and Periodicals', 'D. D. Cottrell\'s Subscription Agency', '2004-05-01', 4, 'https://www.gutenberg.org/ebooks/12253', 'en', 9097), +(20690, 'My Opinions and Betsey Bobbet\'s\r\nDesigned as a Beacon Light to Guide Women to Life, Liberty, and the Pursuit of Happiness, But Which May Be Read by Members of the Sterner Sect, without Injury to Themselves or the Book', 'Holley, Marietta', '2017-09-21', 18, 'https://www.gutenberg.org/ebooks/55594', 'en', 4236), +(20691, 'Box and Cox: A Romance of Real Life in One Act.', 'Morton, John Maddison', '2013-04-13', 32, 'https://www.gutenberg.org/ebooks/42523', 'en', 1281), +(20692, 'The Little Nightcap Letters', 'Fanny, Aunt', '2009-08-26', 22, 'https://www.gutenberg.org/ebooks/29812', 'en', 195), +(20693, 'Jailed for Freedom', 'Stevens, Doris', '2003-01-01', 41, 'https://www.gutenberg.org/ebooks/3604', 'en', 3357), +(20694, 'In Indian Tents\r\nStories Told by Penobscot, Passamaquoddy and Micmac Indians to Abby L. Alger', 'Alger, Abby Langdon', '2016-05-01', 12, 'https://www.gutenberg.org/ebooks/51908', 'en', 9098), +(20695, 'Birds, Illustrated by Color Photography, Vol. 1, No. 3\r\nMarch 1897', 'Various', '2009-09-26', 24, 'https://www.gutenberg.org/ebooks/30103', 'en', 1584), +(20696, 'Hildebrand; or, The Days of Queen Elizabeth, An Historic Romance, Vol. 3 of 3', 'Anonymous', '2015-01-18', 9, 'https://www.gutenberg.org/ebooks/48019', 'en', 4434), +(20697, 'The Radio Boys Seek the Lost Atlantis', 'Breckenridge, Gerald', '2017-03-28', 22, 'https://www.gutenberg.org/ebooks/54446', 'en', 9099), +(20698, 'A General History and Collection of Voyages and Travels — Volume 14', 'Kerr, Robert', '2004-09-06', 13, 'https://www.gutenberg.org/ebooks/13381', 'en', 885), +(20699, 'The Autobiography of a Play\nPapers on Play-Making, II', 'Howard, Bronson', '2006-07-06', 18, 'https://www.gutenberg.org/ebooks/18769', 'en', 9100), +(20700, 'La maison d\'un artiste, Tome 1', 'Goncourt, Edmond de', '2014-07-03', 15, 'https://www.gutenberg.org/ebooks/46183', 'fr', 642), +(20701, 'Through Mountains and Canyons - The Canadian Rockies', NULL, '2011-03-03', 14, 'https://www.gutenberg.org/ebooks/35471', 'en', 9101), +(20702, 'A Book of Dartmoor\nSecond Edition', 'Baring-Gould, S. (Sabine)', '2016-02-06', 23, 'https://www.gutenberg.org/ebooks/51134', 'en', 9102), +(20703, 'The Bay State Monthly, Volume 3, No. 1', 'Various', '2006-02-09', 35, 'https://www.gutenberg.org/ebooks/17721', 'en', 5522), +(20704, 'The Long Hillside\nA Christmas Hare-Hunt In Old Virginia\n1908', 'Page, Thomas Nelson', '2007-11-16', 19, 'https://www.gutenberg.org/ebooks/23514', 'en', 4850), +(20705, 'Punaiset ja valkoiset: Kuvaus Suomen luokkasodasta', 'Kaatra, Kössi', '2015-04-29', 11, 'https://www.gutenberg.org/ebooks/48825', 'fi', 9103), +(20706, 'Self-Raised; Or, From the Depths', 'Southworth, Emma Dorothy Eliza Nevitte', '2004-08-01', 31, 'https://www.gutenberg.org/ebooks/6376', 'en', 61), +(20707, 'Museum of Antiquity: A Description of Ancient Life', 'Haines, T. L. (Thomas Louis)', '2009-02-04', 36, 'https://www.gutenberg.org/ebooks/27988', 'en', 9104), +(20708, 'Descrittione del regno di Scotia', 'Ubaldini, Petruccio', '2014-10-05', 24, 'https://www.gutenberg.org/ebooks/47051', 'en', 9105), +(20709, 'Vieilles chansons pour les petits enfants\navec accompagnements de Ch. M. Widor', NULL, '2013-05-13', 62, 'https://www.gutenberg.org/ebooks/42711', 'fr', 2990), +(20710, 'The Book of the Thousand Nights and a Night — Volume 02', NULL, '2002-09-01', 157, 'https://www.gutenberg.org/ebooks/3436', 'en', 3347), +(20711, 'The Heart of the Rose', 'McKee, Mabel Anne', '2008-08-10', 8, 'https://www.gutenberg.org/ebooks/26254', 'en', 1663), +(20712, 'Dio\'s Rome, Volume 6\r\nAn Historical Narrative Originally Composed in Greek During The\r\nReigns of Septimius Severus, Geta and Caracalla, Macrinus, Elagabalus\r\nAnd Alexander Severus', 'Cassius Dio Cocceianus', '2004-04-01', 41, 'https://www.gutenberg.org/ebooks/12061', 'en', 6793), +(20713, 'Canoe Mates in Canada; Or, Three Boys Afloat on the Saskatchewan', 'Rathborne, St. George', '2006-10-07', 30, 'https://www.gutenberg.org/ebooks/19489', 'en', 9106), +(20714, 'White Motley: A Novel', 'Pemberton, Max', '2017-05-07', 10, 'https://www.gutenberg.org/ebooks/54674', 'en', 61), +(20715, 'Made-Over Dishes', 'Rorer, S. T.', '2004-11-01', 38, 'https://www.gutenberg.org/ebooks/6978', 'en', 103), +(20716, 'House of John Procter, Witchcraft Martyr, 1692', 'Upham, William P. (William Phineas)', '2008-12-02', 22, 'https://www.gutenberg.org/ebooks/27386', 'en', 9107), +(20717, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Vierter Band', 'Macaulay, Thomas Babington Macaulay, Baron', '2009-10-25', 11, 'https://www.gutenberg.org/ebooks/30331', 'de', 3001), +(20718, 'A Dog Day; or, The Angel in the House', 'Emanuel, Walter', '2016-02-26', 8, 'https://www.gutenberg.org/ebooks/51306', 'en', 9108), +(20719, 'Les grandes chroniques de France (3/6)\nselon que elles sont conservées en l\'Eglise de Saint-Denis', NULL, '2011-03-21', 13, 'https://www.gutenberg.org/ebooks/35643', 'fr', 1168), +(20720, 'The Babylonian Story of the Deluge as Told by Assyrian Tablets from Nineveh\r\nThe Discovery of the Tablets at Nineveh by Layard, Rassam and Smith', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2004-12-01', 33, 'https://www.gutenberg.org/ebooks/7096', 'en', 9109), +(20721, 'The Song of Songs', 'Sudermann, Hermann', '2010-12-30', 48, 'https://www.gutenberg.org/ebooks/34791', 'en', 803), +(20722, 'Report of Commemorative Services with the Sermons and Addresses at the Seabury Centenary, 1883-1885.', 'Episcopal Church. Diocese of Connecticut', '2004-07-01', 8, 'https://www.gutenberg.org/ebooks/6144', 'en', 9110), +(20723, 'The Peaches of New York', 'Hedrick, U. P.', '2014-11-01', 20, 'https://www.gutenberg.org/ebooks/47263', 'en', 9111), +(20724, 'Groups of the Order p^m', 'Neikirk, Lewis Irving', '2006-02-01', 24, 'https://www.gutenberg.org/ebooks/9930', 'en', 9112), +(20725, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, Nov 1877-Nov 1878\nNo 1, Nov 1877', 'Various', '2006-01-14', 40, 'https://www.gutenberg.org/ebooks/17513', 'en', 563), +(20726, 'Punch, or the London Charivari, Vol. 146, March 11, 1914', 'Various', '2007-12-03', 5, 'https://www.gutenberg.org/ebooks/23726', 'en', 134), +(20727, 'His Family', 'Poole, Ernest', '2004-12-20', 50, 'https://www.gutenberg.org/ebooks/14396', 'en', 9113), +(20728, 'Technik der Bronzeplastik', 'Lüer, Hermann', '2016-11-05', 6, 'https://www.gutenberg.org/ebooks/53451', 'de', 9114), +(20729, 'The Traditional Text of the Holy Gospels', 'Burgon, John William', '2012-02-22', 49, 'https://www.gutenberg.org/ebooks/38960', 'en', 3111), +(20730, 'A History of the Cries of London, Ancient and Modern', 'Hindley, Charles', '2011-08-17', 61, 'https://www.gutenberg.org/ebooks/37114', 'en', 9115), +(20731, 'At Large', 'Benson, Arthur Christopher', '2003-11-01', 17, 'https://www.gutenberg.org/ebooks/4613', 'en', 20), +(20732, 'Unter Palmen und Buchen. Zweiter Band.\nUnter Palmen. Gesammelte Erzählungen.', 'Gerstäcker, Friedrich', '2014-04-29', 13, 'https://www.gutenberg.org/ebooks/45534', 'de', 1212), +(20733, 'Cupid of Campion', 'Finn, Francis J. (Francis James)', '2016-07-16', 8, 'https://www.gutenberg.org/ebooks/52583', 'en', 1877), +(20734, 'Lewie; Or, The Bended Twig', 'Bradford, Sarah H. (Sarah Hopkins)', '2005-03-03', 8, 'https://www.gutenberg.org/ebooks/15244', 'en', 61), +(20735, 'The Rover\'s Secret: A Tale of the Pirate Cays and Lagoons of Cuba', 'Collingwood, Harry', '2007-04-13', 17, 'https://www.gutenberg.org/ebooks/21071', 'en', 7815), +(20736, 'The Dispatch Carrier and Memoirs of Andersonville Prison', 'Tyler, William N. (William Nelson)', '2012-06-20', 6, 'https://www.gutenberg.org/ebooks/40046', 'en', 9116), +(20737, 'Tom Swift and His Giant Cannon; Or, The Longest Shots on Record', 'Appleton, Victor', '1998-06-01', 64, 'https://www.gutenberg.org/ebooks/1361', 'en', 1456), +(20738, 'Aarnihauta ja muita juttuja', 'Wells, H. G. (Herbert George)', '2019-02-16', 7, 'https://www.gutenberg.org/ebooks/58885', 'fi', 7020), +(20739, 'The Boy Slaves', 'Reid, Mayne', '2008-02-03', 74, 'https://www.gutenberg.org/ebooks/24503', 'en', 9117), +(20740, 'Children of the Frost', 'London, Jack', '2004-01-01', 97, 'https://www.gutenberg.org/ebooks/10736', 'en', 323), +(20741, 'Gas Burners Old and New\r\nA historical and descriptive treatise on the progress of invention in gas lighting, embracing an account of the theory of luminous combustion', 'Merriman, Owen', '2011-11-05', 13, 'https://www.gutenberg.org/ebooks/37928', 'en', 9118), +(20742, 'Kuvia ja kuvitelmia Suomen historiasta I', NULL, '2017-12-04', 11, 'https://www.gutenberg.org/ebooks/56123', 'fi', 6994), +(20743, 'The Wouldbegoods', 'Nesbit, E. (Edith)', '2010-05-21', 54, 'https://www.gutenberg.org/ebooks/32466', 'en', 4426), +(20744, 'The Shetland Pony', 'Douglas, Charles', '2019-07-21', 486, 'https://www.gutenberg.org/ebooks/59957', 'en', 9119), +(20745, 'The Speeches (In Full) of the Rt. Hon. W. E. Gladstone, M.P., and William O\'Brien, M.P., on Home Rule, Delivered in Parliament, Feb. 16 and 17, 1888.', 'Gladstone, W. E. (William Ewart)', '2012-10-27', 16, 'https://www.gutenberg.org/ebooks/41194', 'en', 3673), +(20746, 'Le crime d\'Orcival', 'Gaboriau, Emile', '2014-01-07', 24, 'https://www.gutenberg.org/ebooks/44620', 'fr', 61), +(20747, 'Serapis — Complete', 'Ebers, Georg', '2004-11-15', 35, 'https://www.gutenberg.org/ebooks/5507', 'en', 1814), +(20748, 'The Young Mountaineers: Short Stories', 'Murfree, Mary Noailles', '2007-01-15', 24, 'https://www.gutenberg.org/ebooks/20365', 'en', 112), +(20749, 'The House of Armour', 'Saunders, Marshall', '2016-12-08', 26, 'https://www.gutenberg.org/ebooks/53697', 'en', 9120), +(20750, 'The Light in the Clearing: A Tale of the North Country in the Time of Silas Wright', 'Bacheller, Irving', '2004-11-25', 53, 'https://www.gutenberg.org/ebooks/14150', 'en', 9121), +(20751, 'The Life of the Spirit and the Life of To-day', 'Underhill, Evelyn', '2005-02-16', 43, 'https://www.gutenberg.org/ebooks/15082', 'en', 3344), +(20752, 'Harper\'s Round Table, January 24, 1882', 'Various', '2016-08-07', 1, 'https://www.gutenberg.org/ebooks/52745', 'en', 668), +(20753, 'History of the DeWitt guard, company A, 50th regiment National guard, state of New York', 'Unknown', '2011-05-23', 10, 'https://www.gutenberg.org/ebooks/36200', 'en', 9122), +(20754, 'David Cusick’s Sketches of Ancient History of the Six Nations\nComprising First—A Tale of the Foundation of the Great Island, (Now North America), The Two Infants Born, and the Creation of the Universe. Second—A Real Account of the Early Settlers of north America, and Their Dissensions. Third—Origin of the Kingdom of the Five Nations, Which Was Called a Long House: the Wars, Fierce Animals, &c.', 'Cusick, David', '2018-05-30', 28, 'https://www.gutenberg.org/ebooks/57237', 'en', 9123), +(20755, 'Retrospect of Western Travel, Volume 1 (of 2)', 'Martineau, Harriet', '2012-07-19', 33, 'https://www.gutenberg.org/ebooks/40280', 'en', 8287), +(20756, 'Hawk Eye', 'Cory, David', '2010-09-20', 19, 'https://www.gutenberg.org/ebooks/33772', 'en', 676), +(20757, 'Nuova; or, The New Bee', 'Kellogg, Vernon L. (Vernon Lyman)', '2012-03-24', 20, 'https://www.gutenberg.org/ebooks/39248', 'en', 9124), +(20758, 'The Art of Cookery Made Easy and Refined', 'Mollard, John', '2012-11-12', 34, 'https://www.gutenberg.org/ebooks/41352', 'en', 4911), +(20759, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nArkansas Narratives, Part 7', 'United States. Work Projects Administration', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11422', 'en', 9125), +(20760, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2008-05-27', 84, 'https://www.gutenberg.org/ebooks/25617', 'en', 2951), +(20761, 'Œuvres complètes de lord Byron, Tome 1\r\navec notes et commentaires, comprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2008-07-19', 30, 'https://www.gutenberg.org/ebooks/26092', 'fr', 4272), +(20762, 'The Mercer Boys\' Mystery Case', 'Wyckoff, Capwell', '2017-09-16', 16, 'https://www.gutenberg.org/ebooks/55560', 'en', 2154), +(20763, 'A New Species of Pocket Gopher (Genus Pappogeomys) From Jalisco, México', 'Russell, Robert J.', '2010-01-20', 4, 'https://www.gutenberg.org/ebooks/31025', 'en', 6337), +(20764, 'Wars and Empire', 'Vaknin, Samuel', '2005-06-01', 47, 'https://www.gutenberg.org/ebooks/8218', 'en', 9126), +(20765, 'Morning Star', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 82, 'https://www.gutenberg.org/ebooks/2722', 'en', 580), +(20766, 'Ethics and Modern Thought: A Theory of Their Relations', 'Eucken, Rudolf', '2013-08-06', 23, 'https://www.gutenberg.org/ebooks/43405', 'en', 680), +(20767, 'The Surrender of Napoleon\r\nBeing the narrative of the surrender of Buonaparte, and of his residence on board H.M.S. Bellerophon, with a detail of the principal events that occurred in that ship between the 24th of May and the 8th of August 1815', 'Maitland, Frederick Lewis, Sir', '2009-05-23', 38, 'https://www.gutenberg.org/ebooks/28934', 'en', 2362), +(20768, 'Paul the Peddler; Or, The Fortunes of a Young Street Merchant', 'Alger, Horatio, Jr.', '2006-03-18', 101, 'https://www.gutenberg.org/ebooks/659', 'en', 9127), +(20769, 'The Rival Heirs; being the Third and Last Chronicle of Aescendune', 'Crake, A. D. (Augustine David)', '2004-09-05', 24, 'https://www.gutenberg.org/ebooks/13375', 'en', 9128), +(20770, 'Kreivi ja karhuntanssittaja', 'Hoffmann, Franz', '2008-11-03', 11, 'https://www.gutenberg.org/ebooks/27140', 'fi', 2079), +(20771, 'The Forbidden Way', 'Gibbs, George', '2015-01-06', 26, 'https://www.gutenberg.org/ebooks/47899', 'en', 9129), +(20772, 'Punainen huone: Kuvituksia taiteilija- ja kirjailijaelämästä', 'Strindberg, August', '2014-07-02', 25, 'https://www.gutenberg.org/ebooks/46177', 'fi', 6023), +(20773, 'A Connecticut Yankee in King Arthur\'s Court, Part 9.', 'Twain, Mark', '2004-07-07', 26, 'https://www.gutenberg.org/ebooks/7250', 'en', 781), +(20774, 'The Doctor\'s Wife: A Novel', 'Braddon, M. E. (Mary Elizabeth)', '2011-03-04', 49, 'https://www.gutenberg.org/ebooks/35485', 'en', 706), +(20775, 'Parables of the Christ-life', 'Trotter, I. Lilias (Isabella Lilias)', '2007-08-29', 44, 'https://www.gutenberg.org/ebooks/22432', 'en', 6957); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(20776, 'My Lady Nobody: A Novel', 'Maartens, Maarten', '2015-09-07', 26, 'https://www.gutenberg.org/ebooks/49903', 'en', 1380), +(20777, 'Blackwood\'s Edinburgh Magazine — Volume 54, No. 337, November, 1843', 'Various', '2005-08-27', 18, 'https://www.gutenberg.org/ebooks/16607', 'en', 711), +(20778, 'Ku Klux Klan: Its Origin, Growth and Disbandment', 'Wilson, D. L. (Daniel Love)', '2010-03-29', 40, 'https://www.gutenberg.org/ebooks/31819', 'en', 1515), +(20779, 'A Duel in the Dark: An Original Farce, in One Act', 'Coyne, J. Stirling (Joseph Stirling)', '2015-09-19', 16, 'https://www.gutenberg.org/ebooks/50012', 'en', 907), +(20780, 'The Pennyles Pilgrimage\nOr The Money-lesse Perambulation of John Taylor', 'Taylor, John', '2009-02-18', 9, 'https://www.gutenberg.org/ebooks/28108', 'en', 5226), +(20781, 'Bat Wing', 'Rohmer, Sax', '2004-08-01', 91, 'https://www.gutenberg.org/ebooks/6382', 'en', 128), +(20782, 'Happiness in Purgatory', 'Anonymous', '2010-12-03', 16, 'https://www.gutenberg.org/ebooks/34557', 'en', 9130), +(20783, 'Household Papers and Stories', 'Stowe, Harriet Beecher', '2010-02-08', 22, 'https://www.gutenberg.org/ebooks/31217', 'en', 179), +(20784, 'Dom Casmurro', 'Machado de Assis', '2017-10-15', 288, 'https://www.gutenberg.org/ebooks/55752', 'pt', 6360), +(20785, 'More Bywords', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12095', 'en', 8), +(20786, 'Savva and the Life of Man: Two plays by Leonid Andreyev', 'Andreyev, Leonid', '2004-08-09', 17, 'https://www.gutenberg.org/ebooks/13147', 'en', 4249), +(20787, 'Peacemakers—Blessed and Otherwise\nObservations, Reflections and Irritations at an International Conference', 'Tarbell, Ida M. (Ida Minerva)', '2017-05-07', 13, 'https://www.gutenberg.org/ebooks/54680', 'en', 9131), +(20788, 'The Diplomatic Correspondence of the American Revolution, Vol. 08', NULL, '2008-12-01', 6, 'https://www.gutenberg.org/ebooks/27372', 'en', 330), +(20789, 'The Invention of a New Religion', 'Chamberlain, Basil Hall', '2001-02-01', 42, 'https://www.gutenberg.org/ebooks/2510', 'en', 3297), +(20790, 'Our Little Roumanian Cousin', 'Winlow, Clara Vostrovsky', '2013-09-04', 16, 'https://www.gutenberg.org/ebooks/43637', 'en', 9132), +(20791, 'How to Write Clearly: Rules and Exercises on English Composition', 'Abbott, Edwin Abbott', '2007-09-14', 132, 'https://www.gutenberg.org/ebooks/22600', 'en', 664), +(20792, 'The Atlantic Book of Modern Plays', NULL, '2005-08-04', 112, 'https://www.gutenberg.org/ebooks/16435', 'en', 1088), +(20793, 'Quo Vadis, a Narrative of the Time of Nero', 'Sienkiewicz, Henryk', '2005-09-01', 13, 'https://www.gutenberg.org/ebooks/8816', 'en', 942), +(20794, 'Sir Quixote of the Moors\nBeing some account of an episode in the life of the Sieur de Rohaine', 'Buchan, John', '2014-07-20', 40, 'https://www.gutenberg.org/ebooks/46345', 'en', 98), +(20795, 'A Daughter of Fife', 'Barr, Amelia E.', '2004-12-01', 22, 'https://www.gutenberg.org/ebooks/7062', 'en', 2389), +(20796, 'The Story of the Atlantic Telegraph', 'Field, Henry M. (Henry Martyn)', '2010-12-27', 35, 'https://www.gutenberg.org/ebooks/34765', 'en', 2608), +(20797, 'Parzival: A Knightly Epic (vol. 1 of 2)', 'Wolfram, von Eschenbach, active 12th century', '2014-11-06', 152, 'https://www.gutenberg.org/ebooks/47297', 'en', 8104), +(20798, 'The Railway Library, 1909\r\nA Collection of Noteworthy Chapters, Addresses, and Papers Relating to Railways, Mostly Published During the Year', NULL, '2015-10-15', 12, 'https://www.gutenberg.org/ebooks/50220', 'en', 9133), +(20799, 'The Call of the Blood', 'Hichens, Robert', '2006-12-21', 25, 'https://www.gutenberg.org/ebooks/20157', 'en', 9134), +(20800, 'The Iron Boys as Foremen; or, Heading the Diamond Drill Shift', 'Mears, James R.', '2012-02-27', 16, 'https://www.gutenberg.org/ebooks/38994', 'en', 9135), +(20801, 'The Way of a Man', 'Hough, Emerson', '2004-12-15', 52, 'https://www.gutenberg.org/ebooks/14362', 'en', 9136), +(20802, 'The Devil in Britain and America', 'Ashton, John', '2013-12-12', 24, 'https://www.gutenberg.org/ebooks/44412', 'en', 9137), +(20803, 'The Valley of the Giants', 'Kyne, Peter B. (Peter Bernard)', '2004-05-01', 53, 'https://www.gutenberg.org/ebooks/5735', 'en', 315), +(20804, 'Les Romanesques: comédie en trois actes en vers', 'Rostand, Edmond', '2018-09-03', 7, 'https://www.gutenberg.org/ebooks/57839', 'fr', 3017), +(20805, 'The Great Steel Strike and its Lessons', 'Foster, William Z.', '2011-05-05', 63, 'https://www.gutenberg.org/ebooks/36032', 'en', 9138), +(20806, 'Verkaro de V. N. Devjatnin, Libro Unua', 'Devjatnin, V. N. (Vasilij Nikolaevic)', '2016-07-14', 8, 'https://www.gutenberg.org/ebooks/52577', 'eo', 402), +(20807, 'St. Nicholas Vol XIII. No. 8 June 1886\r\nAn Illustrated Magazine for Young Folks', 'Various', '2012-05-29', 10, 'https://www.gutenberg.org/ebooks/39846', 'en', 479), +(20808, 'The Wreck of the Nancy Bell; Or, Cast Away on Kerguelen Land', 'Hutcheson, John C. (John Conroy)', '2007-04-15', 28, 'https://www.gutenberg.org/ebooks/21085', 'en', 533), +(20809, 'View of the State of Europe during the Middle Ages, Vol. 3', 'Hallam, Henry', '2010-08-26', 18, 'https://www.gutenberg.org/ebooks/33540', 'en', 6411), +(20810, 'My Musical Life', 'Damrosch, Walter', '2019-02-11', 5, 'https://www.gutenberg.org/ebooks/58871', 'en', 9139), +(20811, 'Letters on Literature', 'Lang, Andrew', '1998-07-01', 40, 'https://www.gutenberg.org/ebooks/1395', 'en', 2156), +(20812, 'The History of the Pyrates. Vol. II.\r\nContaining the lives of Captain Misson, Captain Bowen, Captain Kidd, Captain Tew, Captain Halsey, Captain White, Captain Condent, Captain Bellamy, Captain Fly, Captain Howard, Captain Lewis, Captain Cornelius, Captain Williams, Captain Burgess, Captain North, and their several crews', 'Defoe, Daniel', '2018-04-20', 54, 'https://www.gutenberg.org/ebooks/57005', 'en', 1954), +(20813, 'Madam Crowl\'s Ghost and the Dead Sexton', 'Le Fanu, Joseph Sheridan', '2004-03-01', 62, 'https://www.gutenberg.org/ebooks/11610', 'en', 531), +(20814, 'Vrouwenbelangen\nDrie vraagstukken van actueelen aard', 'Jacobs, Aletta H. (Aletta Henriette)', '2008-05-11', 14, 'https://www.gutenberg.org/ebooks/25425', 'nl', 9140), +(20815, 'Endless Amusement\r\nA Collection of Nearly 400 Entertaining Experiments in Various Branches of Science; Including Acoustics, Electricity, Magnetism, Arithmetic, Hydraulics, Mechanics, Chemistry, Hydrostatics, Optics; Wonders of the Air-Pump; All the Popular Tricks and Changes of the Cards, &c., &c. to Which is Added, a Complete System of Pyrotechny; Or, the Art of Making Fire-works.', 'Unknown', '2010-05-23', 64, 'https://www.gutenberg.org/ebooks/32492', 'en', 5705), +(20816, 'The Romance of Modern Invention\r\nContaining Interesting Descriptions in Non-technical Language of Wireless Telegraphy, Liquid Air, Modern Artillery, Submarines, Dirigible Torpedoes, Solar Motors, Airships, &c. &c.', 'Williams, Archibald', '2012-10-24', 49, 'https://www.gutenberg.org/ebooks/41160', 'en', 1739), +(20817, 'Les Pardaillan — Tome 04 : Fausta Vaincue', 'Zévaco, Michel', '2004-09-25', 9, 'https://www.gutenberg.org/ebooks/13523', 'fr', 642), +(20818, 'A Portrait of Old George Town', 'Peter, Grace Dunlop', '2009-01-06', 22, 'https://www.gutenberg.org/ebooks/27716', 'en', 9141), +(20819, 'Frau und Kindern auf der Spur', 'Rohner, Gerold K.', '2000-05-01', 24, 'https://www.gutenberg.org/ebooks/2174', 'de', 61), +(20820, 'Punch, or the London Charivari, Vol. 108, March 30th 1895', 'Various', '2013-07-19', 13, 'https://www.gutenberg.org/ebooks/43253', 'en', 134), +(20821, 'Watched by Wild Animals', 'Mills, Enos A.', '2013-03-21', 21, 'https://www.gutenberg.org/ebooks/42381', 'en', 2560), +(20822, 'Hawkins Electrical Guide v. 03 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-08-24', 18, 'https://www.gutenberg.org/ebooks/49769', 'en', 1863), +(20823, 'The Rose of Paradise\r\nBeing a detailed account of certain adventures that happened to captain John Mackra, in connection with the famous pirate, Edward England, in the year 1720, off the Island of Juanna in the Mozambique Channel; writ by himself, and now for the first time published', 'Pyle, Howard', '2010-03-17', 30, 'https://www.gutenberg.org/ebooks/31673', 'en', 3828), +(20824, 'Aids to Forensic Medicine and Toxicology', 'Robertson, W. G. Aitchison (William George Aitchison )', '2006-08-10', 35, 'https://www.gutenberg.org/ebooks/19019', 'en', 5064), +(20825, 'From Job to Job around the World', 'Fletcher, Alfred C. B. (Alfred Charles Benson)', '2017-08-11', 10, 'https://www.gutenberg.org/ebooks/55336', 'en', 819), +(20826, 'The Theory of the Leisure Class', 'Veblen, Thorstein', '1997-03-01', 389, 'https://www.gutenberg.org/ebooks/833', 'en', 9142), +(20827, 'Le Bossu Volume 3\nAventures de cape et d\'épée', 'Féval, Paul', '2010-11-12', 15, 'https://www.gutenberg.org/ebooks/34301', 'fr', 654), +(20828, 'Istoria civile del Regno di Napoli, v. 4', 'Giannone, Pietro', '2015-12-07', 6, 'https://www.gutenberg.org/ebooks/50644', 'it', 8173), +(20829, 'Atmâ\nA Romance', 'Frazer, C. A. (Caroline Augusta)', '2005-11-29', 11, 'https://www.gutenberg.org/ebooks/17183', 'en', 98), +(20830, 'Where Angels Fear to Tread', 'Forster, E. M. (Edward Morgan)', '2001-12-01', 184, 'https://www.gutenberg.org/ebooks/2948', 'en', 637), +(20831, 'Irish Books and Irish People', 'Gwynn, Stephen Lucius', '2007-08-08', 21, 'https://www.gutenberg.org/ebooks/22264', 'en', 9143), +(20832, 'The Voice in the Fog', 'MacGrath, Harold', '2005-06-13', 24, 'https://www.gutenberg.org/ebooks/16051', 'en', 5319), +(20833, 'The Secret Battleplane', 'Westerman, Percy F. (Percy Francis)', '2016-04-19', 14, 'https://www.gutenberg.org/ebooks/51796', 'en', 146), +(20834, 'L\'Illustration, No. 0065, 25 Mai 1844', 'Various', '2014-08-29', 4, 'https://www.gutenberg.org/ebooks/46721', 'fr', 150), +(20835, '茶經', 'Lu, Yu', '2005-02-01', 22, 'https://www.gutenberg.org/ebooks/7406', 'zh', 9144), +(20836, 'Herself: Talks with Women Concerning Themselves', 'Lowry, E. B. (Edith Belle)', '2006-11-16', 14, 'https://www.gutenberg.org/ebooks/19825', 'en', 5443), +(20837, 'Brazilian Sketches', 'Ray, T. B. (T. Bronson)', '2003-07-01', 8, 'https://www.gutenberg.org/ebooks/4283', 'en', 4395), +(20838, 'The Autobiography of an Electron\r\nWherein the Scientific Ideas of the Present Time Are Explained in an Interesting and Novel Fashion', 'Gibson, Charles R. (Charles Robert)', '2011-06-17', 21, 'https://www.gutenberg.org/ebooks/36456', 'en', 9145), +(20839, 'Fifteen Days: An Extract from Edward Colvil\'s Journal', 'Putnam, Mary Lowell', '2016-05-20', 6, 'https://www.gutenberg.org/ebooks/52113', 'en', 1566), +(20840, 'Jill the Reckless', 'Wodehouse, P. G. (Pelham Grenville)', '2007-02-06', 162, 'https://www.gutenberg.org/ebooks/20533', 'en', 6509), +(20841, 'Kuninkaantytär', 'Schorsch, Luise', '2018-12-08', 7, 'https://www.gutenberg.org/ebooks/58429', 'fi', 98), +(20842, 'Greybeards at Play: Literature and Art for Old Gentlemen', 'Chesterton, G. K. (Gilbert Keith)', '2005-01-16', 35, 'https://www.gutenberg.org/ebooks/14706', 'en', 3625), +(20843, 'Mr. Punch with the Children', NULL, '2010-10-18', 24, 'https://www.gutenberg.org/ebooks/33918', 'en', 9146), +(20844, 'Autumn Impressions of the Gironde', 'Sieveking, I. Giberne (Isabel Giberne)', '2013-10-30', 17, 'https://www.gutenberg.org/ebooks/44076', 'en', 1117), +(20845, 'If I Were King', 'McCarthy, Justin H. (Justin Huntly)', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5351', 'en', 9147), +(20846, 'A Crooked Mile', 'Onions, Oliver', '2011-10-01', 35, 'https://www.gutenberg.org/ebooks/37584', 'en', 675), +(20847, 'The Anti-Slavery Examiner, Part 4 of 4', 'American Anti-Slavery Society', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11274', 'en', 8314), +(20848, 'Peru in the Guano Age\r\nBeing a Short Account of a Recent Visit to the Guano Deposits, with Some Reflections on the Money They Have Produced and the Uses to Which It Has Been Applied', 'Duffield, A. J. (Alexander James)', '2014-06-16', 9, 'https://www.gutenberg.org/ebooks/45998', 'en', 9148), +(20849, 'Humour of the North', 'Burpee, Lawrence J. (Lawrence Johnstone)', '2008-04-11', 21, 'https://www.gutenberg.org/ebooks/25041', 'en', 3963), +(20850, 'Petőfi Sándor összes költeményei\nHazai művészek rajzaival díszített negyedik népies kiadás', 'Petőfi, Sándor', '2012-11-28', 26, 'https://www.gutenberg.org/ebooks/41504', 'hu', 1645), +(20851, 'Hunted Down; or, Five Days in the Fog\r\nA Thrilling Narrative of the Escape of Young Granice from a Drunken, Infuriated Mob', 'Granice, Harry', '2010-07-09', 7, 'https://www.gutenberg.org/ebooks/33124', 'en', 9149), +(20852, '燕子箋', 'Ruan, Dacheng', '2008-01-07', 12, 'https://www.gutenberg.org/ebooks/24193', 'zh', 2312), +(20853, 'Ed. Manet: étude biographique et critique', 'Zola, Émile', '2018-07-13', 11, 'https://www.gutenberg.org/ebooks/57461', 'fr', 9150), +(20854, 'Twelve Months with the Eighth Massachusetts Infantry in the Service of the United States', 'Webber, Harry Endicott', '2016-06-13', 1, 'https://www.gutenberg.org/ebooks/52321', 'en', 9151), +(20855, 'Goops and How to Be Them', 'Burgess, Gelett', '2011-07-08', 34, 'https://www.gutenberg.org/ebooks/36664', 'en', 9152), +(20856, 'From the Cape to Cairo: The First Traverse of Africa from South to North', 'Grogan, Ewart Scott', '2014-04-14', 128, 'https://www.gutenberg.org/ebooks/45396', 'en', 708), +(20857, 'Souvenirs de l\'armée américaine en France\nSouvenir of the American Army in France', 'Berne-Bellecour, Jean', '2013-11-21', 39, 'https://www.gutenberg.org/ebooks/44244', 'fr', 2071), +(20858, 'Guy Garrick', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/5163', 'en', 4714), +(20859, 'Viamos e não veremos\r\nalegoria moral, acompanhada de outras diversas maximas relativas a nossa liberdade constitucional', 'Anonymous', '2007-02-27', 11, 'https://www.gutenberg.org/ebooks/20701', 'pt', 9153), +(20860, 'Christmas with Grandma Elsie', 'Finley, Martha', '2004-12-30', 49, 'https://www.gutenberg.org/ebooks/14534', 'en', 1410), +(20861, 'The Girl of the Period, and Other Social Essays, Vol. 2 (of 2)', 'Linton, E. Lynn (Elizabeth Lynn)', '2012-12-30', 10, 'https://www.gutenberg.org/ebooks/41736', 'en', 1485), +(20862, 'Midnight Sunbeams; or, Bits of Travel Through the Land of the Norseman', 'Kimball, Edwin Coolidge', '2018-03-18', 7, 'https://www.gutenberg.org/ebooks/56781', 'en', 581), +(20863, 'La vie d\'Ernest Psichari', 'Massis, Henri', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11046', 'fr', 9154), +(20864, '天工開物', 'Song, Yingxing', '2008-05-01', 19, 'https://www.gutenberg.org/ebooks/25273', 'zh', 9155), +(20865, 'Opera Reel with Calls', NULL, '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10194', 'en', 9156), +(20866, 'The Girl\'s Own Paper, Vol. XX. No. 1004, March 25, 1899', 'Various', '2018-08-07', 7, 'https://www.gutenberg.org/ebooks/57653', 'en', 563), +(20867, 'Jérusalem', 'Loti, Pierre', '2010-08-01', 15, 'https://www.gutenberg.org/ebooks/33316', 'fr', 9157), +(20868, 'Punch, or the London Charivari, Vol. CLVIII, January 7, 1920', 'Various', '2009-12-03', 38, 'https://www.gutenberg.org/ebooks/30593', 'en', 134), +(20869, 'The Adventure of the Bruce-Partington Plans', 'Doyle, Arthur Conan', '2000-10-01', 194, 'https://www.gutenberg.org/ebooks/2346', 'en', 430), +(20870, 'In the West Country', 'Knight, Francis A. (Francis Arnold)', '2013-06-29', 10, 'https://www.gutenberg.org/ebooks/43061', 'en', 2379), +(20871, 'Merisusi', 'London, Jack', '2015-03-14', 16, 'https://www.gutenberg.org/ebooks/48489', 'fi', 1391), +(20872, 'International Weekly Miscellany of Literature, Art and Science - Volume 1, No. 7, August 12, 1850', 'Various', '2004-10-11', 14, 'https://www.gutenberg.org/ebooks/13711', 'en', 380), +(20873, 'Hampton Court', 'Jerrold, Walter', '2008-12-13', 26, 'https://www.gutenberg.org/ebooks/27524', 'en', 9158), +(20874, 'Colony Treatment of the Insane and Other Defectives', 'Murphy, P. L. (Patrick Livingston)', '2017-07-12', 8, 'https://www.gutenberg.org/ebooks/55104', 'en', 9159), +(20875, 'Louis David, Son Ecole et Son Temps: Souvenirs', 'Delécluze, E. J. (Etienne Jean)', '2010-02-28', 26, 'https://www.gutenberg.org/ebooks/31441', 'fr', 9160), +(20876, 'The Sea-Hawk', 'Sabatini, Rafael', '2002-06-01', 167, 'https://www.gutenberg.org/ebooks/3294', 'en', 4482), +(20877, 'The Three Miss Kings: An Australian Story', 'Cambridge, Ada', '2015-11-18', 17, 'https://www.gutenberg.org/ebooks/50476', 'en', 348), +(20878, 'Monte-Cristo\'s Daughter', 'Flagg, Edmund', '2007-10-24', 18, 'https://www.gutenberg.org/ebooks/23184', 'en', 2118), +(20879, 'Ποίος ήτον ο φονεύς του αδελφού μου', 'Vizyenos, G. M. (Georgios M.)', '2010-10-25', 22, 'https://www.gutenberg.org/ebooks/34133', 'el', 1348), +(20880, 'The Westward Movement', NULL, '2014-08-05', 14, 'https://www.gutenberg.org/ebooks/46513', 'en', 9161), +(20881, 'The Disowned — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7634', 'en', 137), +(20882, 'Kiljusen herrasväki', 'Finne, Jalmari', '2017-11-11', 3, 'https://www.gutenberg.org/ebooks/55938', 'fi', 5797), +(20883, 'The Mountain that was \'God\'\r\nBeing a Little Book About the Great Peak Which the Indians Named \'Tacoma\' but Which is Officially Called \'Rainier\'', 'Williams, John H. (John Harvey)', '2007-07-12', 13, 'https://www.gutenberg.org/ebooks/22056', 'en', 9162), +(20884, 'Punch, or the London Charivari, Volume 103, December 3, 1892', 'Various', '2005-07-11', 11, 'https://www.gutenberg.org/ebooks/16263', 'en', 134), +(20885, 'Roland Yorke\nA Sequel to \"The Channings\"', 'Wood, Henry, Mrs.', '2018-10-12', 29, 'https://www.gutenberg.org/ebooks/58086', 'en', 137), +(20886, 'The Connexion Between Taste and Morals: Two lectures', 'Hopkins, Mark', '2012-09-23', 16, 'https://www.gutenberg.org/ebooks/40845', 'en', 680), +(20887, 'Ajas: Szomorujáték', 'Sophocles', '2018-04-04', 5, 'https://www.gutenberg.org/ebooks/56920', 'hu', 9163), +(20888, 'The Light Keepers: A Story of the United States Light-house Service', 'Otis, James', '2013-02-03', 18, 'https://www.gutenberg.org/ebooks/41997', 'en', 9164), +(20889, 'El Niño de la Bola: Novela', 'Alarcón, Pedro Antonio de', '2019-03-29', 46, 'https://www.gutenberg.org/ebooks/59154', 'es', 1353), +(20890, 'De Ellendigen (Deel 5 van 5)', 'Hugo, Victor', '2011-11-28', 15, 'https://www.gutenberg.org/ebooks/38163', 'nl', 98), +(20891, 'The Philosophy of Disenchantment', 'Saltus, Edgar', '2012-06-25', 42, 'https://www.gutenberg.org/ebooks/40079', 'en', 9165), +(20892, 'Prince Zaleski', 'Shiel, M. P. (Matthew Phipps)', '2004-01-01', 43, 'https://www.gutenberg.org/ebooks/10709', 'en', 834), +(20893, 'Across the Stream', 'Benson, E. F. (Edward Frederic)', '2011-11-03', 35, 'https://www.gutenberg.org/ebooks/37917', 'en', 432), +(20894, 'The Life of David: As Reflected in His Psalms', 'Maclaren, Alexander', '2007-06-19', 65, 'https://www.gutenberg.org/ebooks/21872', 'en', 9166), +(20895, 'The Poetical Works of William Wordsworth — Volume 4 (of 8)', 'Wordsworth, William', '2010-05-20', 60, 'https://www.gutenberg.org/ebooks/32459', 'en', 532), +(20896, 'American Indian life', NULL, '2019-07-22', 1409, 'https://www.gutenberg.org/ebooks/59968', 'en', 9167), +(20897, 'Barchester Towers', 'Trollope, Anthony', '2002-09-01', 212, 'https://www.gutenberg.org/ebooks/3409', 'en', 55), +(20898, 'Lassen Trails: A Brief Guide to the Trails of Lassen Volcanic National Park', 'Matteson, Stephen Halsey', '2017-10-24', 6, 'https://www.gutenberg.org/ebooks/55799', 'en', 9168), +(20899, 'A Terrible Temptation: A Story of To-Day', 'Reade, Charles', '2005-04-01', 25, 'https://www.gutenberg.org/ebooks/7895', 'en', 95), +(20900, 'The Religion of Ancient Rome', 'Bailey, Cyril', '2006-06-12', 77, 'https://www.gutenberg.org/ebooks/18564', 'en', 5745), +(20901, 'The Rangers; or, The Tory\'s Daughter\r\nA Tale Illustrative of the Revolutionary History of Vermont and the Northern Campaign of 1777', 'Thompson, Daniel P. (Daniel Pierce)', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/6947', 'en', 9169), +(20902, 'The Rhinegold & The Valkyrie\r\nThe Ring of the Niblung, part 1', 'Wagner, Richard', '2015-02-09', 68, 'https://www.gutenberg.org/ebooks/48214', 'en', 1966), +(20903, 'Huutolaistyttö: Kuvaus kovilta ajoilta', 'Meriläinen, Heikki', '2016-03-01', 1, 'https://www.gutenberg.org/ebooks/51339', 'fi', 41), +(20904, 'Ponteach\nThe Savages of America', 'Rogers, Robert', '2009-06-26', 23, 'https://www.gutenberg.org/ebooks/29223', 'en', 9170), +(20905, 'Aldo le rimeur', 'Sand, George', '2004-07-09', 20, 'https://www.gutenberg.org/ebooks/12862', 'fr', 402), +(20906, 'The Gospel According to St. Matthew', NULL, '2007-12-01', 0, 'https://www.gutenberg.org/ebooks/23719', 'en', 228), +(20907, 'Columbus', 'Miller, Joaquin', '2006-11-07', 2, 'https://www.gutenberg.org/ebooks/19684', 'en', 8), +(20908, 'Muinaisten suomalaisten pakanalliset epäjumalat', 'Eurén, Gustaf Erik', '2014-09-27', 16, 'https://www.gutenberg.org/ebooks/46980', 'fi', 7568), +(20909, 'The Ascent of Denali (Mount McKinley)\nA Narrative of the First Complete Ascent of the Highest\nPeak in North America', 'Stuck, Hudson', '2008-07-15', 30, 'https://www.gutenberg.org/ebooks/26059', 'en', 9171), +(20910, 'Daireen. Volume 2 of 2', 'Moore, Frank Frankfort', '2016-05-02', 7, 'https://www.gutenberg.org/ebooks/51937', 'en', 61), +(20911, 'The Sir Roger de Coverley Papers', 'Steele, Richard, Sir', '2015-01-19', 30, 'https://www.gutenberg.org/ebooks/48026', 'en', 472), +(20912, 'Ranald Bannerman\'s Boyhood', 'MacDonald, George', '2004-08-15', 48, 'https://www.gutenberg.org/ebooks/9301', 'en', 9172), +(20913, 'Graham\'s Magazine, Vol. XLI, No. 5, November 1852', 'Various', '2015-01-02', 25, 'https://www.gutenberg.org/ebooks/47852', 'en', 380), +(20914, 'The Complete Works of James Whitcomb Riley — Volume 10', 'Riley, James Whitcomb', '1996-10-01', 25, 'https://www.gutenberg.org/ebooks/692', 'en', 112), +(20915, 'Faery Lands of the South Seas', 'Hall, James Norman', '2017-04-02', 22, 'https://www.gutenberg.org/ebooks/54479', 'en', 6743), +(20916, 'The Heart\'s Kingdom', 'Daviess, Maria Thompson', '2006-07-04', 25, 'https://www.gutenberg.org/ebooks/18756', 'en', 9173), +(20917, 'The Corsair King', 'Jókai, Mór', '2008-10-09', 17, 'https://www.gutenberg.org/ebooks/26865', 'en', 3828), +(20918, 'Ηθικά Νικομάχεια, Τόμος Δεύτερος', 'Aristotle', '2009-05-31', 40, 'https://www.gutenberg.org/ebooks/29011', 'el', 680), +(20919, 'The Tyranny of God', 'Lewis, Joseph', '2010-01-09', 32, 'https://www.gutenberg.org/ebooks/30900', 'en', 1191), +(20920, 'Copyright Renewals 1954', 'Library of Congress. Copyright Office', '2004-08-01', 9, 'https://www.gutenberg.org/ebooks/6349', 'en', 4170), +(20921, 'L\'Illustration, No. 0017, 24 Juin 1843', 'Various', '2011-09-05', 8, 'https://www.gutenberg.org/ebooks/37319', 'fr', 150), +(20922, 'A Woman of Thirty', 'Balzac, Honoré de', '2005-11-16', 51, 'https://www.gutenberg.org/ebooks/1950', 'en', 675), +(20923, 'Punch, or the London Charivari, Volume 103, August 20, 1892', 'Various', '2005-02-14', 4, 'https://www.gutenberg.org/ebooks/15049', 'en', 134), +(20924, 'Running the Gauntlet: A Novel', 'Yates, Edmund', '2019-04-26', 29, 'https://www.gutenberg.org/ebooks/59366', 'en', 95), +(20925, 'Rosvot: Viisinäytöksinen näytelmä', 'Schiller, Friedrich', '2014-05-24', 12, 'https://www.gutenberg.org/ebooks/45739', 'fi', 4568), +(20926, 'A Trip to California in 1853\nRecollections of a Gold Seeking Trip by Ox Train across the Plains and Mountains by an Old Illinois Pioneer', 'Bailey, Washington', '2011-12-20', 22, 'https://www.gutenberg.org/ebooks/38351', 'en', 1181), +(20927, 'Admirals of the British Navy\nPortraits in Colours with Introductory and Biographical Notes', NULL, '2012-11-18', 20, 'https://www.gutenberg.org/ebooks/41399', 'en', 9174), +(20928, 'Letters to the Clergy on the Lord\'s Prayer and the Church', 'Ruskin, John', '2012-03-27', 14, 'https://www.gutenberg.org/ebooks/39283', 'en', 9175), +(20929, 'The Unseen Bridegroom; Or, Wedded For a Week', 'Fleming, May Agnes', '2005-05-22', 8, 'https://www.gutenberg.org/ebooks/15875', 'en', 61), +(20930, 'A Pioneer Mother', 'Garland, Hamlin', '2015-03-09', 17, 'https://www.gutenberg.org/ebooks/48442', 'en', 9176), +(20931, 'Mrs. Christy\'s Bridge Party', 'Bassett, Sara Ware', '2007-12-22', 12, 'https://www.gutenberg.org/ebooks/23973', 'en', 9177), +(20932, 'Alice, or the Mysteries — Book 03', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 65, 'https://www.gutenberg.org/ebooks/9765', 'en', 137), +(20933, 'Claim Number One', 'Ogden, George W. (George Washington)', '2009-11-29', 29, 'https://www.gutenberg.org/ebooks/30558', 'en', 315), +(20934, 'The Harvest of Years', 'Ewell, Martha Lewis Beckwith', '2006-05-06', 16, 'https://www.gutenberg.org/ebooks/18332', 'en', 4927), +(20935, 'Get Next!', 'Hobart, George V. (George Vere)', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12608', 'en', 1426), +(20936, 'The Philippine Agricultural Review. Vol. VIII, First Quarter, 1915 No. 1', 'Various', '2011-04-11', 28, 'https://www.gutenberg.org/ebooks/35816', 'en', 9178), +(20937, 'Leonarda: Näytelmä neljässä tapauksessa', 'Bjørnson, Bjørnstjerne', '2013-02-24', 12, 'https://www.gutenberg.org/ebooks/42178', 'fi', 9179), +(20938, 'The Man in Ratcatcher, and Other Stories', 'McNeile, H. C. (Herman Cyril)', '2015-08-03', 17, 'https://www.gutenberg.org/ebooks/49590', 'en', 3511), +(20939, 'Church and Nation\nThe Bishop Paddock Lectures for 1914-15', 'Temple, William', '2013-10-05', 14, 'https://www.gutenberg.org/ebooks/43896', 'en', 8549), +(20940, 'Rheinische Seher und Propheten: Ein Beitrag zur Kulturgeschichte', 'Bahlmann, Paul', '2017-05-31', 15, 'https://www.gutenberg.org/ebooks/54821', 'de', 9180), +(20941, 'Under Arctic Ice', 'Bates, Harry', '2009-07-21', 65, 'https://www.gutenberg.org/ebooks/29475', 'en', 737), +(20942, 'A Rainy June, and Other Stories', 'Ouida', '2013-06-14', 24, 'https://www.gutenberg.org/ebooks/42944', 'en', 401), +(20943, 'The Aztec Treasure-House', 'Janvier, Thomas A. (Thomas Allibone)', '2007-05-26', 27, 'https://www.gutenberg.org/ebooks/21618', 'en', 2335), +(20944, 'Excursions to Cairo, Jerusalem, Damascus, and Balbec From the United States Ship Delaware, During Her Recent Cruise\r\nWith an Attempt to Discriminate Between Truth and Error in Regard to the Sacred Places of the Holy City', 'Jones, George', '2019-06-08', 17, 'https://www.gutenberg.org/ebooks/59702', 'en', 2204), +(20945, 'The Grip of Desire\r\nThe Story Of A Parish-Priest', 'France, Hector', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/10963', 'en', 4811), +(20946, 'Runoudesta', 'Horace', '2016-10-09', 5, 'https://www.gutenberg.org/ebooks/53238', 'fi', 5317), +(20947, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1586c', 'Motley, John Lothrop', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/4846', 'en', 3372), +(20948, 'De Talisman; of, Richard Leeuwenhard in Palestina', 'Scott, Walter', '2018-08-14', 17, 'https://www.gutenberg.org/ebooks/57698', 'nl', 98), +(20949, 'Our Nervous Friends — Illustrating the Mastery of Nervousness', 'Carroll, Robert S. (Robert Sproul)', '2004-06-01', 74, 'https://www.gutenberg.org/ebooks/5994', 'en', 9181), +(20950, 'The Taming of the Shrew', 'Shakespeare, William', '1998-10-01', 101, 'https://www.gutenberg.org/ebooks/1508', 'en', 3523), +(20951, 'Highways and Byways in Cambridge and Ely', 'Conybeare, John William Edward', '2012-02-01', 50, 'https://www.gutenberg.org/ebooks/38735', 'en', 9182), +(20952, 'The Problem of the Ohio Mounds', 'Thomas, Cyrus', '2003-07-01', 39, 'https://www.gutenberg.org/ebooks/4248', 'en', 4882), +(20953, 'Wine-Dark Seas and Tropic Skies: Reminiscences and a Romance of the South Seas', 'Safroni-Middleton, A. (Arnold)', '2019-05-17', 25, 'https://www.gutenberg.org/ebooks/59530', 'en', 4355), +(20954, 'The Plotters', 'Blade, Alexander', '2010-06-13', 21, 'https://www.gutenberg.org/ebooks/32801', 'en', 67), +(20955, 'Handbook of Embroidery', 'Higgin, L.', '2008-03-30', 158, 'https://www.gutenberg.org/ebooks/24964', 'en', 9183), +(20956, 'Mémoires de Luther écrits par lui-même, Tome I', 'Michelet, Jules', '2014-06-13', 21, 'https://www.gutenberg.org/ebooks/45953', 'fr', 1073), +(20957, 'The Writings of Thomas Jefferson, Vol. 9 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2018-02-16', 29, 'https://www.gutenberg.org/ebooks/56578', 'en', 1648), +(20958, 'The Memoirs of Charles-Lewis, Baron de Pollnitz, Volume III\r\nBeing the Observations He Made in His Late Travels from Prussia thro\' Germany, Italy, France, Flanders, Holland, England, &C. in Letters to His Friend. Discovering Not Only the Present State of the Chief Cities and Towns; but the Characters of the Principal Persons at the Several Courts.', 'Pöllnitz, Karl Ludwig, Freiherr von', '2012-01-06', 11, 'https://www.gutenberg.org/ebooks/38507', 'en', 1408), +(20959, 'Intestinal Irrigation: Why, How and When to Flush the Colon', 'Jamison, Alcinous B. (Alcinous Burton)', '2016-12-30', 5, 'https://www.gutenberg.org/ebooks/53836', 'en', 9184), +(20960, 'Chambers\'s Edinburgh Journal, No. 460\nVolume 18, New Series, October 23, 1852', 'Various', '2008-01-04', 10, 'https://www.gutenberg.org/ebooks/24158', 'en', 18), +(20961, 'Confessions of a Thug', 'Taylor, Meadows', '2014-02-12', 145, 'https://www.gutenberg.org/ebooks/44881', 'en', 98), +(20962, 'Roads from Rome', 'Allinson, Anne C. E. (Anne Crosby Emery)', '2006-04-01', 18, 'https://www.gutenberg.org/ebooks/18100', 'en', 2050), +(20963, 'The Riddle and the Ring; or, Won by Nerve', 'MacLaren, Gordon', '2013-07-24', 4, 'https://www.gutenberg.org/ebooks/43298', 'en', 336), +(20964, 'Teatro galante', 'Zamacois, Eduardo', '2015-04-09', 8, 'https://www.gutenberg.org/ebooks/48670', 'es', 2729), +(20965, 'The Valley of Fear', 'Doyle, Arthur Conan', '2005-12-01', 34, 'https://www.gutenberg.org/ebooks/9557', 'en', 834), +(20966, 'Filosofía Fundamental, Tomo III', 'Balmes, Jaime Luciano', '2006-03-13', 30, 'https://www.gutenberg.org/ebooks/17974', 'es', 779), +(20967, 'Books Fatal to Their Authors', 'Ditchfield, P. H. (Peter Hampson)', '2005-07-01', 50, 'https://www.gutenberg.org/ebooks/8485', 'en', 6170), +(20968, 'A treatise on the culture of the tobacco plant with the manner in which it is usually cured\r\nAdapted to northern climates, and designed for the use of the landholders of Great-Britain.', 'Carver, Jonathan', '2014-12-12', 7, 'https://www.gutenberg.org/ebooks/47638', 'en', 8609), +(20969, 'Otto of the Silver Hand', 'Pyle, Howard', '2009-05-01', 6, 'https://www.gutenberg.org/ebooks/28795', 'en', 282), +(20970, 'Mark Twain: A Biography. Volume I, Part 2: 1835-1866', 'Paine, Albert Bigelow', '2004-10-04', 9, 'https://www.gutenberg.org/ebooks/2983', 'en', 836), +(20971, 'Cessions of Land by Indian Tribes to the United States: Illustrated by Those in the State of Indiana\r\nFirst Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1879-80, Government Printing Office, Washington, 1881, pages 247-262', 'Royce, Charles C.', '2005-11-24', 9, 'https://www.gutenberg.org/ebooks/17148', 'en', 9185), +(20972, 'Memoirs of Madame la Marquise de Montespan — Volume 5', 'Montespan, Madame de', '2004-12-02', 13, 'https://www.gutenberg.org/ebooks/3851', 'en', 9186), +(20973, 'The Eighteenth Century in English Caricature', 'Brinton, Selwyn', '2009-08-09', 16, 'https://www.gutenberg.org/ebooks/29647', 'en', 1688), +(20974, 'The Setons', 'Douglas, O.', '2011-02-08', 46, 'https://www.gutenberg.org/ebooks/35218', 'en', 55), +(20975, 'The Torch Bearer: A Camp Fire Girls\' Story', 'Thurston, I. T. (Ida Treadwell)', '2007-12-23', 35, 'https://www.gutenberg.org/ebooks/23987', 'en', 622), +(20976, 'Harrigan', 'Brand, Max', '2006-01-01', 31, 'https://www.gutenberg.org/ebooks/9791', 'en', 315), +(20977, 'Chastelard, a Tragedy', 'Swinburne, Algernon Charles', '2000-11-01', 26, 'https://www.gutenberg.org/ebooks/2379', 'en', 1298), +(20978, 'My Bondage and My Freedom', 'Douglass, Frederick', '2008-07-02', 384, 'https://www.gutenberg.org/ebooks/202', 'en', 5168), +(20979, 'Thomas Moore', 'Gwynn, Stephen Lucius', '2011-01-12', 30, 'https://www.gutenberg.org/ebooks/34930', 'en', 9187), +(20980, 'The History of England in Three Volumes, Vol. I., Part D.\r\nFrom Elizabeth to James I.', 'Hume, David', '2006-09-08', 24, 'https://www.gutenberg.org/ebooks/19214', 'en', 9188), +(20981, 'Punch, or the London Charivari, Volume 153, July 4, 1917', 'Various', '2005-08-01', 7, 'https://www.gutenberg.org/ebooks/8643', 'en', 134), +(20982, 'A Treatise of Buggs', 'Southall, John', '2015-08-01', 8, 'https://www.gutenberg.org/ebooks/49564', 'en', 9189), +(20983, 'The Gospel According to Saint Mark', NULL, '2007-10-01', 5, 'https://www.gutenberg.org/ebooks/22855', 'en', 3278), +(20984, 'How it Works\r\nDealing in simple language with steam, electricity, light, heat, sound, hydraulics, optics, etc., and with their applications to apparatus in common use', 'Williams, Archibald', '2009-04-10', 193, 'https://www.gutenberg.org/ebooks/28553', 'en', 4329), +(20985, 'In the Morning Glow: Short Stories', 'Gilson, Roy Rolfe', '2013-10-01', 15, 'https://www.gutenberg.org/ebooks/43862', 'en', 179), +(20986, 'Recruit for Andromeda', 'Marlowe, Stephen', '2015-11-13', 30, 'https://www.gutenberg.org/ebooks/50449', 'en', 9190), +(20987, 'The Golden Circle\r\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2017-11-07', 25, 'https://www.gutenberg.org/ebooks/55907', 'en', 6767), +(20988, 'The Works of Guy de Maupassant, Volume VIII.', 'Maupassant, Guy de', '2007-07-14', 15, 'https://www.gutenberg.org/ebooks/22069', 'en', 1112), +(20989, 'The Fifth String', 'Sousa, John Philip', '2009-07-22', 5, 'https://www.gutenberg.org/ebooks/29481', 'en', 9191), +(20990, 'U.S. Copyright Renewals, 1972 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11845', 'en', 4170), +(20991, 'The World of Waters\r\nOr, A Peaceful Progress o\'er the Unpathed Sea', 'Osborne, David, Mrs. (Fanny)', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/10997', 'en', 7816), +(20992, 'Wilde Bob', 'Kieviet, Cornelis Johannes', '2011-10-18', 12, 'https://www.gutenberg.org/ebooks/37789', 'nl', 511), +(20993, 'Sailor and beachcomber\r\nConfessions of a life at sea, in Australia, and amid the islands of the Pacific', 'Safroni-Middleton, A. (Arnold)', '2019-01-06', 17, 'https://www.gutenberg.org/ebooks/58624', 'en', 9192), +(20994, 'A Girl\'s Life in Virginia before the War', 'Burwell, Letitia M.', '2012-12-26', 9, 'https://www.gutenberg.org/ebooks/41709', 'en', 125), +(20995, 'Papeles del doctor Angélico', 'Palacio Valdés, Armando', '2012-05-04', 17, 'https://www.gutenberg.org/ebooks/39613', 'es', 1696), +(20996, 'Essays in Rebellion', 'Nevinson, Henry Woodd', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/11079', 'en', 472), +(20997, 'Little Sister Snow', 'Little, Frances', '2004-08-16', 14, 'https://www.gutenberg.org/ebooks/5960', 'en', 3303), +(20998, 'Der Vater', 'Mann, Heinrich', '2010-08-02', 38, 'https://www.gutenberg.org/ebooks/33329', 'de', 61), +(20999, 'Royal Palaces and Parks of France', 'Mansfield, M. F. (Milburg Francisco)', '2008-06-19', 52, 'https://www.gutenberg.org/ebooks/25842', 'en', 9193), +(21000, 'Voyage d\'un jeune grec à Paris (Vol. 2 of 2)', 'Mazier du Heaume, Hippolyte', '2011-06-19', 62, 'https://www.gutenberg.org/ebooks/36469', 'fr', 2972), +(21001, 'By the Way: Travel Letters Written During Several Journeys Abroad', 'Foster, Agness Greene', '2018-12-06', 10, 'https://www.gutenberg.org/ebooks/58416', 'en', 1408), +(21002, 'The Altar Steps', 'MacKenzie, Compton', '2005-01-20', 31, 'https://www.gutenberg.org/ebooks/14739', 'en', 3014), +(21003, 'Not Quite Eighteen', 'Coolidge, Susan', '2010-10-14', 23, 'https://www.gutenberg.org/ebooks/33927', 'en', 195), +(21004, 'Thirteen Chapters of American History\r\nrepresented by the Edward Moran series of Thirteen Historical Marine Paintings', 'Sutro, Theodore', '2008-04-04', 12, 'https://www.gutenberg.org/ebooks/24990', 'en', 9194), +(21005, 'Die Hessen und die andern deutschen Hilfstruppen im Kriege gross-britanniens gegen Amerika, 1776-1783', 'Lowell, Edward J. (Edward Jackson)', '2013-10-27', 22, 'https://www.gutenberg.org/ebooks/44049', 'de', 9195), +(21006, 'Mount Everest, the Reconnaissance, 1921', 'Wollaston, A. F. R. (Alexander Frederick Richmond)', '2012-04-10', 47, 'https://www.gutenberg.org/ebooks/39421', 'en', 9196), +(21007, 'Pansy\'s Sunday Book', NULL, '2016-08-28', 12, 'https://www.gutenberg.org/ebooks/52910', 'en', 4424), +(21008, 'The Story of Louis Riel: The Rebel Chief', 'Collins, J. E. (Joseph Edmund)', '2003-12-07', 16, 'https://www.gutenberg.org/ebooks/10399', 'en', 9197), +(21009, 'The Cruise of the Midge (Vol. 1 of 2)', 'Scott, Michael', '2014-02-12', 14, 'https://www.gutenberg.org/ebooks/44875', 'en', 3039), +(21010, 'Bajki', 'Mickiewicz, Adam', '2009-01-07', 34, 'https://www.gutenberg.org/ebooks/27729', 'pl', 9198), +(21011, 'Analectabiblion, Tome 2 (of 2)\nou extraits critiques de divers livres rares, oubliés ou peu connus', 'Du Roure, Auguste François Louis Scipion de Grimoard Beauvoir', '2015-04-11', 12, 'https://www.gutenberg.org/ebooks/48684', 'fr', 9199), +(21012, 'Les caractères', 'La Bruyère, Jean de', '2006-03-14', 40, 'https://www.gutenberg.org/ebooks/17980', 'fr', 6571), +(21013, 'Au bonheur des dames', 'Zola, Émile', '2005-10-10', 117, 'https://www.gutenberg.org/ebooks/16852', 'fr', 9200), +(21014, 'Life on the Mississippi, Part 1.', 'Twain, Mark', '2004-07-08', 18, 'https://www.gutenberg.org/ebooks/8471', 'en', 131), +(21015, 'The Old Merchant Marine: A Chronicle of American Ships and Sailors', 'Paine, Ralph Delahaye', '2002-02-01', 29, 'https://www.gutenberg.org/ebooks/3099', 'en', 9201), +(21016, 'La Quimera', 'Pardo Bazán, Emilia, condesa de', '2015-08-21', 25, 'https://www.gutenberg.org/ebooks/49756', 'es', 1384), +(21017, 'The Boss of the Lazy Y', 'Seltzer, Charles Alden', '2006-08-10', 30, 'https://www.gutenberg.org/ebooks/19026', 'en', 315), +(21018, 'The Crimson Cryptogram: A Detective Story', 'Hume, Fergus', '2017-08-09', 31, 'https://www.gutenberg.org/ebooks/55309', 'en', 95), +(21019, 'Handbook to the new Gold-fields', 'Ballantyne, R. M. (Robert Michael)', '2007-11-07', 30, 'https://www.gutenberg.org/ebooks/23389', 'en', 7730), +(21020, 'Life in Mexico', 'Calderón de la Barca, Madame (Frances Erskine Inglis)', '2009-05-01', 10, 'https://www.gutenberg.org/ebooks/28761', 'en', 7645), +(21021, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 27: Expelled from Spain', 'Casanova, Giacomo', '2004-12-12', 29, 'https://www.gutenberg.org/ebooks/2977', 'en', 4164), +(21022, 'English Fairy Tales', NULL, '2005-02-01', 549, 'https://www.gutenberg.org/ebooks/7439', 'en', 4483), +(21023, 'The Unity of the Church Essential to the Conversion of the World\r\nA Sermon, Preached Before the Directors and Friends of the London Missionary Society, During Their Anniversary in May, 1846, in the Church of St. Mary, Spital Square, London', 'Gwyther, James Henry Alexander', '2018-10-10', 13, 'https://www.gutenberg.org/ebooks/58072', 'en', 2386), +(21024, 'Guano: A Treatise of Practical Information for Farmers', 'Robinson, Solon', '2006-12-23', 9, 'https://www.gutenberg.org/ebooks/20168', 'en', 9148), +(21025, 'Maiolica', 'Fortnum, C. Drury E. (Charles Drury Edward)', '2018-08-29', 4, 'https://www.gutenberg.org/ebooks/57806', 'en', 9202), +(21026, '\"The Debatable Land\": A Novel', 'Colton, Arthur', '2013-02-01', 14, 'https://www.gutenberg.org/ebooks/41963', 'en', 61), +(21027, 'The Seafarers', 'Bloundelle-Burton, John', '2016-07-10', 9, 'https://www.gutenberg.org/ebooks/52548', 'en', 7132), +(21028, 'Miser Farebrother: A Novel (vol. 3 of 3)', 'Farjeon, B. L. (Benjamin Leopold)', '2012-06-01', 10, 'https://www.gutenberg.org/ebooks/39879', 'en', 61), +(21029, 'The Twa Miss Dawsons', 'Robertson, Margaret M. (Margaret Murray)', '2011-12-03', 10, 'https://www.gutenberg.org/ebooks/38197', 'en', 1922), +(21030, 'Notes and Queries, Number 179, April 2, 1853.\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-03-31', 18, 'https://www.gutenberg.org/ebooks/20954', 'en', 105), +(21031, 'A Tree with a Bird in it:\r\nA Symposium of Contemporary American Poets on Being Shown a Pear-tree on Which Sat a Grackle', 'Widdemer, Margaret', '2011-07-24', 19, 'https://www.gutenberg.org/ebooks/36831', 'en', 2529), +(21032, 'Prisoners of Hope: A Tale of Colonial Virginia', 'Johnston, Mary', '2007-06-21', 12, 'https://www.gutenberg.org/ebooks/21886', 'en', 4969), +(21033, 'Mr Punch\'s Model Music Hall Songs and Dramas\nCollected, Improved and Re-arranged from Punch', 'Anstey, F.', '2012-03-04', 27, 'https://www.gutenberg.org/ebooks/39045', 'en', 9203), +(21034, 'The House by the Lock', NULL, '2010-02-08', 24, 'https://www.gutenberg.org/ebooks/31228', 'en', 167), +(21035, 'The Bible, King James version, Book 15: Ezra', 'Anonymous', '2005-04-01', 15, 'https://www.gutenberg.org/ebooks/8015', 'en', 2432), +(21036, 'The Epicurean: A Tale', 'Moore, Thomas', '2015-06-29', 39, 'https://www.gutenberg.org/ebooks/49332', 'en', 401), +(21037, 'Moisasurs Zauberfluch', 'Raimund, Ferdinand', '2005-04-01', 11, 'https://www.gutenberg.org/ebooks/7861', 'de', 907), +(21038, 'Il fallo d\'una donna onesta', 'Castelnuovo, Enrico', '2006-10-02', 22, 'https://www.gutenberg.org/ebooks/19442', 'it', 61), +(21039, 'The Breitmann Ballads', 'Leland, Charles Godfrey', '1996-03-01', 35, 'https://www.gutenberg.org/ebooks/454', 'en', 1784), +(21040, 'Broken to the Plow\r\nA Novel', 'Dobie, Charles Caldwell', '2004-08-14', 10, 'https://www.gutenberg.org/ebooks/13178', 'en', 61), +(21041, 'The Letters of Cassiodorus\r\nBeing a Condensed Translation of the Variae Epistolae of Magnus Aurelius Cassiodorus Senator', 'Cassiodorus, Senator', '2006-06-15', 117, 'https://www.gutenberg.org/ebooks/18590', 'en', 9204), +(21042, 'The Great Frozen Sea: A Personal Narrative of the Voyage of the \"Alert\"', 'Markham, Albert Hastings, Sir', '2013-08-31', 13, 'https://www.gutenberg.org/ebooks/43608', 'en', 9205), +(21043, 'Weymouth New Testament in Modern Speech, Mark', 'Weymouth, Richard Francis', '2005-09-01', 35, 'https://www.gutenberg.org/ebooks/8829', 'en', 3278), +(21044, 'Essays Æsthetical', 'Calvert, George Henry', '2004-07-12', 24, 'https://www.gutenberg.org/ebooks/12896', 'en', 2250), +(21045, 'Alice in Wonderland\r\nA Dramatization of Lewis Carroll\'s \"Alice\'s Adventures in Wonderland\" and \"Through the Looking Glass\"', 'Gerstenberg, Alice', '2011-03-26', 620, 'https://www.gutenberg.org/ebooks/35688', 'en', 364), +(21046, 'After London; Or, Wild England', 'Jefferies, Richard', '2004-11-03', 95, 'https://www.gutenberg.org/ebooks/13944', 'en', 95), +(21047, 'A Likely Story', 'Howells, William Dean', '2009-03-11', 8, 'https://www.gutenberg.org/ebooks/28305', 'en', 868), +(21048, 'The Grand Cañon of the Colorado', 'Muir, John', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/12298', 'en', 1780), +(21049, '\"Pikku poikani\": Yksinäytöksinen näytelmä', 'Nervander, Emil Fredrik', '2006-10-30', 1, 'https://www.gutenberg.org/ebooks/19670', 'fi', 247), +(21050, 'Rays of Living Light on the One Way of Salvation', 'Penrose, Charles W. (Charles William)', '2014-09-27', 22, 'https://www.gutenberg.org/ebooks/46974', 'en', 3434), +(21051, 'Middlemarch', 'Eliot, George', '2005-06-01', 42, 'https://www.gutenberg.org/ebooks/8227', 'en', 705), +(21052, 'Harper\'s Round Table, November 26, 1895', 'Various', '2015-05-31', 5, 'https://www.gutenberg.org/ebooks/49100', 'en', 668), +(21053, 'What Happened at Quasi: The Story of a Carolina Cruise', 'Eggleston, George Cary', '2015-12-31', 8, 'https://www.gutenberg.org/ebooks/50811', 'en', 9206), +(21054, 'The Gutenberg Webster\'s Unabridged Dictionary: Section P and Q', 'Project Gutenberg', '1996-09-01', 78, 'https://www.gutenberg.org/ebooks/666', 'en', 1481), +(21055, 'The Child in the Midst\r\nA Comparative Study of Child Welfare in Christian and Non-Christian Lands', 'Platt, Mary Schauffler', '2014-06-30', 13, 'https://www.gutenberg.org/ebooks/46148', 'en', 8326), +(21056, 'L\'eau profonde; Les pas dans les pas', 'Bourget, Paul', '2008-10-12', 19, 'https://www.gutenberg.org/ebooks/26891', 'fr', 61), +(21057, 'Golden Days for Boys and Girls, Vol. XIII, Nov. 28, 1891', 'Various', '2005-09-04', 24, 'https://www.gutenberg.org/ebooks/16638', 'en', 563), +(21058, 'Tales from \"Blackwood,\" Volume 1', 'Various', '2010-03-30', 37, 'https://www.gutenberg.org/ebooks/31826', 'en', 61), +(21059, 'The Nursery, September 1877, Vol. XXII, No. 3\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 15, 'https://www.gutenberg.org/ebooks/28137', 'en', 4641), +(21060, 'The Home Medical Library, Volume 1 (of 6)', NULL, '2009-01-31', 22, 'https://www.gutenberg.org/ebooks/27943', 'en', 2925), +(21061, 'Johann Sebastian Bach : The story of the boy who sang in the streets', 'Tapper, Thomas', '2010-12-04', 155, 'https://www.gutenberg.org/ebooks/34568', 'en', 9207), +(21062, 'A Thorny Path — Volume 09', 'Ebers, Georg', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5538', 'en', 1814), +(21063, 'Mahtran sota', 'Vilde, Eduard', '2018-11-06', 1, 'https://www.gutenberg.org/ebooks/58240', 'fi', 98), +(21064, 'The Atlantic Monthly, Volume 17, No. 101, March, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-05-04', 5, 'https://www.gutenberg.org/ebooks/21288', 'en', 1227), +(21065, 'Index of the Project Gutenberg Works of John Ruskin', 'Ruskin, John', '2019-04-29', 13, 'https://www.gutenberg.org/ebooks/59392', 'en', 198), +(21066, 'The Jew, The Gypsy and El Islam', 'Burton, Richard Francis, Sir', '2018-05-24', 42, 'https://www.gutenberg.org/ebooks/57208', 'en', 6428), +(21067, 'Oklahoma and Other Poems', 'Miller, Freeman Edwin', '2005-02-07', 23, 'https://www.gutenberg.org/ebooks/14953', 'en', 9208), +(21068, 'Robbery under Arms\r\nA Story of Life and Adventure in the Bush and in the Australian Goldfields', 'Boldrewood, Rolf', '1998-02-01', 60, 'https://www.gutenberg.org/ebooks/1198', 'en', 9209), +(21069, 'The Flower of the Chapdelaines', 'Cable, George Washington', '2005-05-23', 32, 'https://www.gutenberg.org/ebooks/15881', 'en', 4475), +(21070, 'Die Achatnen Kugeln: Roman', 'Edschmid, Kasimir', '2012-03-27', 12, 'https://www.gutenberg.org/ebooks/39277', 'de', 61), +(21071, 'The Nothing Equation', 'Godwin, Tom', '2008-05-27', 111, 'https://www.gutenberg.org/ebooks/25628', 'en', 2797), +(21072, 'Southerly Busters', 'Gibson, George Herbert', '2014-04-14', 6, 'https://www.gutenberg.org/ebooks/45391', 'en', 9210), +(21073, 'John Leech, His Life and Work. Vol. 1 [of 2]', 'Frith, William Powell', '2011-07-08', 102, 'https://www.gutenberg.org/ebooks/36663', 'en', 9211), +(21074, 'The Radio Planet', 'Farley, Ralph Milne', '2016-06-14', 54, 'https://www.gutenberg.org/ebooks/52326', 'en', 26), +(21075, 'Hocken and Hunken\r\nA Tale of Troy', 'Quiller-Couch, Arthur', '2004-12-30', 12, 'https://www.gutenberg.org/ebooks/14533', 'en', 166), +(21076, 'Reisherinneringen van een bestuursambtenaar in Zuid-Celebes\nDe Aarde en haar Volken, 1918', 'Klaveren, L. M. van', '2007-02-27', 9, 'https://www.gutenberg.org/ebooks/20706', 'nl', 9212), +(21077, 'The Beetle: A Mystery', 'Marsh, Richard', '2004-02-01', 189, 'https://www.gutenberg.org/ebooks/5164', 'en', 9213), +(21078, 'Zarastro: Westliche Tage', 'Kolb, Annette', '2013-11-21', 7, 'https://www.gutenberg.org/ebooks/44243', 'de', 9214), +(21079, 'Rollo at Work', 'Abbott, Jacob', '2008-05-01', 28, 'https://www.gutenberg.org/ebooks/25274', 'en', 1817), +(21080, 'Onnen suosikki: Romaani', 'London, Jack', '2018-03-19', 7, 'https://www.gutenberg.org/ebooks/56786', 'fi', 9215), +(21081, 'The Half-Back: A Story of School, Football, and Golf', 'Barbour, Ralph Henry', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11041', 'en', 9216), +(21082, 'Code galant, ou, Art de Conter fleurette', 'Raisson, Horace', '2012-12-29', 11, 'https://www.gutenberg.org/ebooks/41731', 'fr', 1663), +(21083, 'Selections from Viri Romae', 'L\'Homond, C. F.', '2010-08-01', 42, 'https://www.gutenberg.org/ebooks/33311', 'la', 9217), +(21084, 'The Physiology of Marriage, Part 3', 'Balzac, Honoré de', '2005-07-04', 6, 'https://www.gutenberg.org/ebooks/5958', 'en', 2642), +(21085, 'Backyard Conversation Between Mrs. Reilly and Mrs. Finnegan', NULL, '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10193', 'en', 9218), +(21086, 'La Ilíada', 'Homer', '2018-08-07', 172, 'https://www.gutenberg.org/ebooks/57654', 'es', 9219), +(21087, 'Masterpieces of Mystery in Four Volumes: Detective Stories', NULL, '2008-12-13', 139, 'https://www.gutenberg.org/ebooks/27523', 'en', 531), +(21088, 'A Trip to Venus: A Novel', 'Munro, John', '2004-10-11', 101, 'https://www.gutenberg.org/ebooks/13716', 'en', 26), +(21089, 'Torpan tyttö II: Kuvauksia kansan elämästä', 'Lindgren, Anton Wilhelm', '2011-01-10', 8, 'https://www.gutenberg.org/ebooks/34908', 'fi', 61), +(21090, 'Griselda: a society novel in rhymed verse', 'Blunt, Wilfrid Scawen', '2013-06-30', 10, 'https://www.gutenberg.org/ebooks/43066', 'en', 2164), +(21091, 'Notes and Queries, Number 215, December 10, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-12-04', 12, 'https://www.gutenberg.org/ebooks/30594', 'en', 105), +(21092, 'Wilhelm Meisters Lehrjahre — Band 7', 'Goethe, Johann Wolfgang von', '2000-09-01', 43, 'https://www.gutenberg.org/ebooks/2341', 'de', 1080), +(21093, 'Διηγήματα', 'Karkavitsas, Andreas', '2010-02-28', 12, 'https://www.gutenberg.org/ebooks/31446', 'el', 61), +(21094, 'Chronicle of the Conquest of Granada, from the mss. of Fray Antonio Agapida', 'Irving, Washington', '2002-06-01', 56, 'https://www.gutenberg.org/ebooks/3293', 'en', 9220), +(21095, 'Erdgeist', 'Wedekind, Frank', '2017-07-12', 15, 'https://www.gutenberg.org/ebooks/55103', 'de', 5137), +(21096, 'The Great Mogul', 'Tracy, Louis', '2010-10-26', 34, 'https://www.gutenberg.org/ebooks/34134', 'en', 9221); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(21097, 'Edmond Dantès', 'Flagg, Edmund', '2007-10-24', 20, 'https://www.gutenberg.org/ebooks/23183', 'en', 9222), +(21098, 'Two Little Pilgrims\' Progress: A Story of the City Beautiful', 'Burnett, Frances Hodgson', '2015-11-17', 12, 'https://www.gutenberg.org/ebooks/50471', 'en', 9223), +(21099, 'Deutsches Leben der Gegenwart', 'Sommerfeld, Arnold', '2005-07-11', 60, 'https://www.gutenberg.org/ebooks/16264', 'de', 6075), +(21100, 'Punch, or the London Charivari, Vol. 98, February 1, 1890', 'Various', '2007-07-12', 7, 'https://www.gutenberg.org/ebooks/22051', 'en', 134), +(21101, 'Nursing as Caring: A Model for Transforming Practice', 'Boykin, Anne', '2013-06-20', 160, 'https://www.gutenberg.org/ebooks/42988', 'en', 9224), +(21102, 'The Disowned — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 2, 'https://www.gutenberg.org/ebooks/7633', 'en', 137), +(21103, 'Our Edible Toadstools and Mushrooms and How to Distinguish Them\r\nA Selection of Thirty Native Food Varieties Easily Recognizable by their Marked Individualities, with Simple Rules for the Identification of Poisonous Species', 'Gibson, W. Hamilton (William Hamilton)', '2014-08-05', 29, 'https://www.gutenberg.org/ebooks/46514', 'en', 7633), +(21104, 'Encyclopaedia Britannica, 11th Edition, \"Luray Cavern\" to \"Mackinac Island\"\r\nVolume 17, Slice 2', 'Various', '2013-07-20', 18, 'https://www.gutenberg.org/ebooks/43254', 'en', 1081), +(21105, 'Thoughts on the Present Discontents, and Speeches', 'Burke, Edmund', '2000-05-01', 35, 'https://www.gutenberg.org/ebooks/2173', 'en', 2721), +(21106, 'Germinie Lacerteux', 'Goncourt, Edmond de', '2009-01-05', 22, 'https://www.gutenberg.org/ebooks/27711', 'en', 954), +(21107, 'Les Pardaillan — Tome 05 : Pardaillan et Fausta', 'Zévaco, Michel', '2004-09-25', 13, 'https://www.gutenberg.org/ebooks/13524', 'fr', 642), +(21108, 'The Chautauquan, Vol. 05, May 1885, No. 8', 'Chautauqua Institution', '2017-08-10', 6, 'https://www.gutenberg.org/ebooks/55331', 'en', 1115), +(21109, 'Comments on the Taxonomic Status of Apodemus peninsulae, with Description of a New Subspecies from North China', 'Jones, J. Knox', '2010-03-17', 10, 'https://www.gutenberg.org/ebooks/31674', 'en', 9225), +(21110, 'A Traveler from Altruria: Romance', 'Howells, William Dean', '2005-07-01', 36, 'https://www.gutenberg.org/ebooks/8449', 'en', 2677), +(21111, 'Sixty Years a Queen: The Story of Her Majesty\'s Reign', 'Maxwell, Herbert, Sir', '2013-03-22', 12, 'https://www.gutenberg.org/ebooks/42386', 'en', 7002), +(21112, 'Neiti Klairon', 'Mühlbach, L. (Luise)', '2009-05-11', 8, 'https://www.gutenberg.org/ebooks/28759', 'fi', 1103), +(21113, 'Istoria civile del Regno di Napoli, v. 3', 'Giannone, Pietro', '2015-12-07', 11, 'https://www.gutenberg.org/ebooks/50643', 'it', 8306), +(21114, 'Le lys noir', 'Gastyne, Jules de', '2005-11-29', 12, 'https://www.gutenberg.org/ebooks/17184', 'fr', 61), +(21115, 'Fighting in Cuban Waters; Or, Under Schley on the Brooklyn', 'Stratemeyer, Edward', '2010-11-13', 20, 'https://www.gutenberg.org/ebooks/34306', 'en', 9226), +(21116, 'The Memoirs of Sherlock Holmes', 'Doyle, Arthur Conan', '1997-03-01', 1675, 'https://www.gutenberg.org/ebooks/834', 'en', 834), +(21117, 'A Crystal Age', 'Hudson, W. H. (William Henry)', '2005-02-01', 79, 'https://www.gutenberg.org/ebooks/7401', 'en', 1483), +(21118, 'With the British Army in The Holy Land', 'Lock, H. O. (Henry Osmond)', '2006-11-16', 30, 'https://www.gutenberg.org/ebooks/19822', 'en', 1176), +(21119, 'La plebe, parte IV', 'Bersezio, Vittorio', '2014-08-29', 8, 'https://www.gutenberg.org/ebooks/46726', 'it', 860), +(21120, 'A Soldier\'s Sketches Under Fire', 'Harvey, Harold', '2005-06-14', 19, 'https://www.gutenberg.org/ebooks/16056', 'en', 3601), +(21121, 'Taavetti Anttilan kohtalo: y.m. kertomuksia Ameriikan suomalaisten elämästä', 'Zilliacus, Konni', '2016-04-19', 9, 'https://www.gutenberg.org/ebooks/51791', 'fi', 9227), +(21122, 'John Baptist Jackson: 18th-Century Master of the Color Woodcut', 'Kainen, Jacob', '2007-08-07', 20, 'https://www.gutenberg.org/ebooks/22263', 'en', 9228), +(21123, 'Spanish Prisons\r\nThe Inquisition at Home and Abroad, Prisons Past and Present', 'Griffiths, Arthur', '2016-05-21', 4, 'https://www.gutenberg.org/ebooks/52114', 'en', 4232), +(21124, 'The Window-Gazer', 'Mackay, Isabel Ecclestone', '2003-07-01', 9, 'https://www.gutenberg.org/ebooks/4284', 'en', 65), +(21125, 'Richard III: His Life & Character, Reviewed in the Light of Recent Research', 'Markham, Clements R. (Clements Robert), Sir', '2011-06-17', 34, 'https://www.gutenberg.org/ebooks/36451', 'en', 9229), +(21126, 'The Inside of the Cup — Volume 01', 'Churchill, Winston', '2004-10-17', 8, 'https://www.gutenberg.org/ebooks/5356', 'en', 7916), +(21127, 'The Baptist Magazine, Vol. 27, 1835', 'Various', '2011-10-01', 2, 'https://www.gutenberg.org/ebooks/37583', 'en', 1768), +(21128, 'The Sin and Danger of Self-Love\nDescribed by a Sermon Preached At Plymouth, in New-England, 1621', 'Cushman, Robert', '2013-10-30', 14, 'https://www.gutenberg.org/ebooks/44071', 'en', 9230), +(21129, 'Roof and Meadow', 'Sharp, Dallas Lore', '2005-01-16', 21, 'https://www.gutenberg.org/ebooks/14701', 'en', 6059), +(21130, 'A Sermon Preached at the Quaker\'s Meeting House, in Gracechurch-Street, London, Eighth Month 12th, 1694.', 'Penn, William', '2007-02-06', 13, 'https://www.gutenberg.org/ebooks/20534', 'en', 9231), +(21131, 'De Slavernij: Vervolg en Sleutel op De Negerhut', 'Stowe, Harriet Beecher', '2012-11-28', 9, 'https://www.gutenberg.org/ebooks/41503', 'nl', 1819), +(21132, 'The Poetry of South Africa', NULL, '2016-08-29', 9, 'https://www.gutenberg.org/ebooks/52928', 'en', 9232), +(21133, 'Eredeti népmesék (1. rész)', 'Merényi, László', '2012-04-10', 23, 'https://www.gutenberg.org/ebooks/39419', 'hu', 2), +(21134, 'The Canadian Girl at Work: A Book of Vocational Guidance', 'Willison, Marjory MacMurchy, Lady', '2008-04-11', 23, 'https://www.gutenberg.org/ebooks/25046', 'en', 9233), +(21135, 'The Anti-Slavery Examiner, Part 3 of 4', 'American Anti-Slavery Society', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11273', 'en', 8180), +(21136, 'Jacqueline of the Carrier Pigeons', 'Seaman, Augusta Huiell', '2018-07-08', 8, 'https://www.gutenberg.org/ebooks/57466', 'en', 4128), +(21137, 'No Compromise with Slavery\nAn Address Delivered to the Broadway Tabernacle, New York', 'Garrison, William Lloyd', '2008-01-07', 19, 'https://www.gutenberg.org/ebooks/24194', 'en', 125), +(21138, 'A Transient Guest, and Other Episodes', 'Saltus, Edgar', '2010-07-09', 10, 'https://www.gutenberg.org/ebooks/33123', 'en', 61), +(21139, 'Der Diamant des Geisterkönigs', 'Raimund, Ferdinand', '2005-04-01', 24, 'https://www.gutenberg.org/ebooks/7859', 'de', 907), +(21140, 'Eerik XIV ja Juhana III: II. Pimeys\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-10-15', 9, 'https://www.gutenberg.org/ebooks/55755', 'fi', 9234), +(21141, 'The Oxford Movement; Twelve Years, 1833-1845', 'Church, R. W. (Richard William)', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12092', 'en', 4372), +(21142, 'The Redskins; or, Indian and Injin, Volume 1.\nBeing the Conclusion of the Littlepage Manuscripts', 'Cooper, James Fenimore', '2010-02-07', 20, 'https://www.gutenberg.org/ebooks/31210', 'en', 9235), +(21143, 'Pagan Origin of Partialist Doctrines', 'Pitrat, John Claudius', '2013-09-03', 15, 'https://www.gutenberg.org/ebooks/43630', 'en', 9236), +(21144, 'Lincoln\'s Yarns and Stories\r\nA Complete Collection of the Funny and Witty Anecdotes That Made Lincoln Famous as America\'s Greatest Story Teller', 'McClure, Alexander K. (Alexander Kelly)', '2001-02-01', 84, 'https://www.gutenberg.org/ebooks/2517', 'en', 2597), +(21145, 'If Winter Don\'t\r\nA.B.C.D.E.F. Notsomuchinson', 'Pain, Barry', '2008-12-01', 20, 'https://www.gutenberg.org/ebooks/27375', 'en', 2529), +(21146, 'Hanna', 'Canth, Minna', '2004-08-08', 15, 'https://www.gutenberg.org/ebooks/13140', 'fi', 61), +(21147, 'The Ladies\' Paradise: A Realistic Novel', 'Zola, Émile', '2017-05-08', 31, 'https://www.gutenberg.org/ebooks/54687', 'en', 9237), +(21148, 'Children of the Bush', 'Lawson, Henry', '2004-12-01', 46, 'https://www.gutenberg.org/ebooks/7065', 'en', 9238), +(21149, 'Ancient Armour and Weapons in Europe\r\nFrom the Iron Period of the Northern Nations to the End of the Thirteenth Century', 'Hewitt, John', '2014-07-21', 45, 'https://www.gutenberg.org/ebooks/46342', 'en', 9239), +(21150, 'Esperanto: Hearings before the Committee on Education', 'Bartholdt, Richard', '2005-08-04', 21, 'https://www.gutenberg.org/ebooks/16432', 'en', 2493), +(21151, 'Captain Cook\'s Journal During His First Voyage Round the World\r\nMade in H. M. Bark \"Endeavour\", 1768-71', 'Cook, James', '2005-09-01', 12, 'https://www.gutenberg.org/ebooks/8811', 'en', 9240), +(21152, 'The Book-Hunter in London\nHistorical and Other Studies of Collectors and Collecting', 'Roberts, W. (William)', '2007-09-15', 19, 'https://www.gutenberg.org/ebooks/22607', 'en', 4118), +(21153, 'Richard Strauss', 'Peyser, Herbert F. (Herbert Francis)', '2015-10-15', 12, 'https://www.gutenberg.org/ebooks/50227', 'en', 9241), +(21154, 'Barney Blake, the Boy Privateer; or, The Cruise of the Queer Fish', 'Johnstone, Herrick', '2014-11-05', 10, 'https://www.gutenberg.org/ebooks/47290', 'en', 9242), +(21155, 'Fanny, with Other Poems', 'Halleck, Fitz-Greene', '2010-12-30', 13, 'https://www.gutenberg.org/ebooks/34762', 'en', 178), +(21156, 'Bunny Brown and His Sister Sue', 'Hope, Laura Lee', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/5732', 'en', 9243), +(21157, 'Robber and hero: the story of the raid on the First National Bank of Northfield, Minnesota, by the James-Younger band of robbers, in 1876.', 'Huntington, George', '2013-12-12', 20, 'https://www.gutenberg.org/ebooks/44415', 'en', 9244), +(21158, 'Punch, Or The London Charivari, Volume 102, March 19, 1892', 'Various', '2004-12-16', 1, 'https://www.gutenberg.org/ebooks/14365', 'en', 134), +(21159, 'The Integration of Functions of a Single Variable', 'Hardy, G. H. (Godfrey Harold)', '2012-03-03', 131, 'https://www.gutenberg.org/ebooks/38993', 'en', 9245), +(21160, 'Tyrol and Its People', 'Holland, Clive', '2012-09-28', 7, 'https://www.gutenberg.org/ebooks/40889', 'en', 9246), +(21161, 'Notes on My Books', 'Conrad, Joseph', '2006-12-20', 38, 'https://www.gutenberg.org/ebooks/20150', 'en', 9247), +(21162, 'Salmos do prisioneiro', 'Lima, Jaime de Magalhães', '2007-04-15', 9, 'https://www.gutenberg.org/ebooks/21082', 'pt', 2716), +(21163, 'The Seven Conundrums', 'Oppenheim, E. Phillips (Edward Phillips)', '2019-04-03', 44, 'https://www.gutenberg.org/ebooks/59198', 'en', 230), +(21164, 'The Esperantist, Vol. 2, No. 2', NULL, '2012-05-29', 3, 'https://www.gutenberg.org/ebooks/39841', 'eo', 3912), +(21165, 'Ten years\' digging in Egypt, 1881-1891', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2016-07-13', 26, 'https://www.gutenberg.org/ebooks/52570', 'en', 673), +(21166, 'St. Nicholas Vol. XIII, September, 1886, No. 11\nAn Illustrated Magazine for Young Folks', 'Various', '2011-05-05', 25, 'https://www.gutenberg.org/ebooks/36035', 'en', 479), +(21167, 'The Challoners', 'Benson, E. F. (Edward Frederic)', '2018-04-19', 13, 'https://www.gutenberg.org/ebooks/57002', 'en', 5118), +(21168, 'Judith Moore; or, Fashioning a Pipe', 'Wood, Joanna E. (Joanna Ellen)', '2019-02-11', 16, 'https://www.gutenberg.org/ebooks/58876', 'en', 65), +(21169, 'The Grey Fairy Book', NULL, '2010-08-27', 67, 'https://www.gutenberg.org/ebooks/33547', 'en', 1223), +(21170, 'The Seven Poor Travellers', 'Dickens, Charles', '1998-07-01', 59, 'https://www.gutenberg.org/ebooks/1392', 'en', 4477), +(21171, 'Military Roads of the Mississippi Basin', 'Hulbert, Archer Butler', '2012-10-24', 15, 'https://www.gutenberg.org/ebooks/41167', 'en', 9248), +(21172, 'Notes and Queries, Number 80, May 10, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-05-23', 7, 'https://www.gutenberg.org/ebooks/32495', 'en', 105), +(21173, '玉樓春', 'Baiyundaoren', '2008-05-11', 39, 'https://www.gutenberg.org/ebooks/25422', 'zh', NULL), +(21174, 'Punch, or the London Charivari, Volume 156, April 2, 1919', 'Various', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11617', 'en', 134), +(21175, 'Crying for the Light; Or, Fifty Years Ago. Vol. 2 [of 3]', 'Ritchie, J. Ewing (James Ewing)', '2011-07-21', 4, 'https://www.gutenberg.org/ebooks/36809', 'en', 8215), +(21176, 'Elämäni', 'Hindenburg, Paul von', '2018-11-12', 4, 'https://www.gutenberg.org/ebooks/58278', 'fi', 932), +(21177, 'Lamia\'s Winter-Quarters', 'Austin, Alfred', '2016-12-07', 8, 'https://www.gutenberg.org/ebooks/53690', 'en', 1896), +(21178, 'Bouvard et Pécuchet', 'Flaubert, Gustave', '2004-11-26', 73, 'https://www.gutenberg.org/ebooks/14157', 'fr', 9249), +(21179, 'Girls and Women', 'Paine, Harriet E. (Harriet Eliza)', '2007-01-15', 30, 'https://www.gutenberg.org/ebooks/20362', 'en', 1557), +(21180, 'The Advancement of Learning', 'Bacon, Francis', '2004-04-01', 319, 'https://www.gutenberg.org/ebooks/5500', 'en', 5717), +(21181, 'The Indians of the Painted Desert Region: Hopis, Navahoes, Wallapais, Havasupais', 'James, George Wharton', '2014-01-08', 17, 'https://www.gutenberg.org/ebooks/44627', 'en', 9250), +(21182, 'Histoire d\'Attila et de ses successeurs (1/2)\njusqu\'à l\'établissement des Hongrois en Europe', 'Thierry, Amédée', '2011-05-23', 22, 'https://www.gutenberg.org/ebooks/36207', 'fr', 9251), +(21183, 'Metodin esitys\nMielenliikutuksien tutkistelu. Metafyysillisiä mietelmiä.', 'Descartes, René', '2005-02-16', 13, 'https://www.gutenberg.org/ebooks/15085', 'fi', 779), +(21184, 'The Atonement, as taught by the Church of England: A Sermon', 'Hoare, Edward', '2016-08-07', 6, 'https://www.gutenberg.org/ebooks/52742', 'en', 2745), +(21185, 'Little Robins Learning to Fly', 'Leslie, Madeline', '2010-09-20', 1, 'https://www.gutenberg.org/ebooks/33775', 'en', 7409), +(21186, 'The Treatment of Hay Fever by rosin-weed, ichthyol and faradic electricity\r\nWith a discussion of the old theory of gout and the new theory of anaphylaxis', 'Laidlaw, George Frederick', '2012-07-20', 16, 'https://www.gutenberg.org/ebooks/40287', 'en', 9252), +(21187, 'The Golden Boys Along the River Allagash', 'Wyman, L. P. (Levi Parker)', '2018-05-29', 10, 'https://www.gutenberg.org/ebooks/57230', 'en', 128), +(21188, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2008-05-26', 45, 'https://www.gutenberg.org/ebooks/25610', 'en', 2951), +(21189, 'Punch, or the London Charivari, Volume 153, December 5, 1917', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11425', 'en', 134), +(21190, 'Miss Ravenel\'s conversion from secession to loyalty', 'De Forest, John William', '2012-11-12', 12, 'https://www.gutenberg.org/ebooks/41355', 'en', 8517), +(21191, 'Reproduction, par les procédés héliographiques Motteroz, du Carnet de Robespierre trouvé sur lui au moment de son arrestation', 'Robespierre, Maximilien', '2010-01-20', 10, 'https://www.gutenberg.org/ebooks/31022', 'fr', 9253), +(21192, 'Harper\'s Young People, September 6, 1881\nAn Illustrated Weekly', 'Various', '2015-06-04', 3, 'https://www.gutenberg.org/ebooks/49138', 'en', 479), +(21193, 'Mingo, and Other Sketches in Black and White', 'Harris, Joel Chandler', '2006-10-28', 30, 'https://www.gutenberg.org/ebooks/19648', 'en', 9254), +(21194, 'The Journal of Prison Discipline and Philanthropy, January, 1863', 'Pennsylvania Prison Society', '2017-09-17', 3, 'https://www.gutenberg.org/ebooks/55567', 'en', 4611), +(21195, 'The Athenian Constitution', 'Aristotle', '2008-07-21', 131, 'https://www.gutenberg.org/ebooks/26095', 'en', 9255), +(21196, 'The Stretton Street Affair', 'Le Queux, William', '2008-11-04', 43, 'https://www.gutenberg.org/ebooks/27147', 'en', 128), +(21197, 'The Gloved Hand', 'Stevenson, Burton Egbert', '2004-09-04', 66, 'https://www.gutenberg.org/ebooks/13372', 'en', 128), +(21198, 'One Out of Ten', 'Ferlaine, J. Anthony', '2009-05-23', 31, 'https://www.gutenberg.org/ebooks/28933', 'en', 26), +(21199, 'The Cathedrals of Great Britain: Their History and Architecture', 'Ditchfield, P. H. (Peter Hampson)', '2013-08-05', 67, 'https://www.gutenberg.org/ebooks/43402', 'en', 9256), +(21200, 'Onnen kultapoika: Romaani. 1/2', 'Jókai, Mór', '2016-01-02', 3, 'https://www.gutenberg.org/ebooks/50829', 'fi', 2326), +(21201, 'Red Pepper Burns', 'Richmond, Grace S. (Grace Smith)', '2001-07-01', 21, 'https://www.gutenberg.org/ebooks/2725', 'en', 1563), +(21202, 'Cecil Rhodes, Man and Empire-Maker', 'Radziwill, Catherine, Princess', '2005-08-26', 58, 'https://www.gutenberg.org/ebooks/16600', 'en', 9257), +(21203, 'The Mentor: Furniture and its Makers, Vol. 1, Num. 30, Serial No. 30', 'Richards, Charles R. (Charles Russell)', '2015-09-07', 15, 'https://www.gutenberg.org/ebooks/49904', 'en', 8534), +(21204, 'The Story of a Stuffed Elephant', 'Hope, Laura Lee', '2007-08-01', 41, 'https://www.gutenberg.org/ebooks/22435', 'en', 388), +(21205, 'Reflections and Comments 1865-1895', 'Godkin, Edwin Lawrence', '2005-01-01', 24, 'https://www.gutenberg.org/ebooks/7257', 'en', 20), +(21206, 'L\'Illustration, No. 3255, 15 Juillet 1905', 'Various', '2011-03-04', 7, 'https://www.gutenberg.org/ebooks/35482', 'fr', 150), +(21207, 'Fathers of Men', 'Hornung, E. W. (Ernest William)', '2014-07-02', 21, 'https://www.gutenberg.org/ebooks/46170', 'en', 3210), +(21208, 'Simple Italian Cookery', 'McGinnis, Mabel Earl', '2004-08-01', 55, 'https://www.gutenberg.org/ebooks/6385', 'en', 1881), +(21209, 'Franz Joseph Haydn : The Story of the Choir Boy who became a Great Composer', 'Tapper, Thomas', '2010-12-02', 42, 'https://www.gutenberg.org/ebooks/34550', 'en', 9258), +(21210, 'On the Edge of the Primeval Forest\nExperiences and Observations of a Doctor in Equatorial Africa', 'Schweitzer, Albert', '2015-09-19', 21, 'https://www.gutenberg.org/ebooks/50015', 'en', 9259), +(21211, 'The Atlantic Monthly, Volume 09, No. 52, February, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/12066', 'en', 1227), +(21212, 'The Prince', 'Machiavelli, Niccolò', '2008-08-01', 23, 'https://www.gutenberg.org/ebooks/26253', 'en', 9260), +(21213, 'The Gadfly', 'Voynich, E. L. (Ethel Lillian)', '2002-09-01', 241, 'https://www.gutenberg.org/ebooks/3431', 'en', 9261), +(21214, 'Recollections of a Long Life', 'Stoughton, John', '2013-05-16', 17, 'https://www.gutenberg.org/ebooks/42716', 'en', 9262), +(21215, 'Hours in a Library, Volume 2\r\nNew Edition, with Additions', 'Stephen, Leslie', '2009-10-25', 42, 'https://www.gutenberg.org/ebooks/30336', 'en', 1694), +(21216, 'Histoire du Consulat et de l\'Empire, (Vol. 02 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2008-12-01', 30, 'https://www.gutenberg.org/ebooks/27381', 'fr', 2051), +(21217, 'Sir Harry: A Love Story', 'Marshall, Archibald', '2017-05-07', 8, 'https://www.gutenberg.org/ebooks/54673', 'en', 1902), +(21218, 'Rebecca of Sunnybrook Farm', 'Wiggin, Kate Douglas Smith', '1996-04-01', 258, 'https://www.gutenberg.org/ebooks/498', 'en', 62), +(21219, 'The Taming of the Jungle', 'Doyle, C. W. (Charles William)', '2011-03-21', 18, 'https://www.gutenberg.org/ebooks/35644', 'en', 9263), +(21220, 'The Yosemite', 'Muir, John', '2004-12-01', 133, 'https://www.gutenberg.org/ebooks/7091', 'en', 9264), +(21221, 'Mehiläinen 1839', NULL, '2016-02-26', 8, 'https://www.gutenberg.org/ebooks/51301', 'fi', 9265), +(21222, 'Chronicles of Canada Volume 6 - The Great Intendant\r\nA Chronicle of Jean Talon in Canada 1665-1672', 'Chapais, Thomas', '2007-12-01', 6, 'https://www.gutenberg.org/ebooks/23721', 'en', 9266), +(21223, 'Woman\'s Institute Library of Cookery. Volume 3: Soup; Meat; Poultry and Game; Fish and Shell Fish', 'Woman\'s Institute of Domestic Arts and Sciences', '2006-02-01', 45, 'https://www.gutenberg.org/ebooks/9937', 'en', 103), +(21224, 'The Garden, You, and I', 'Wright, Mabel Osgood', '2006-01-14', 63, 'https://www.gutenberg.org/ebooks/17514', 'en', 1413), +(21225, 'The Argentine Republic: Its Development and Progress', 'Denis, Pierre', '2014-11-02', 19, 'https://www.gutenberg.org/ebooks/47264', 'en', 7609), +(21226, 'Fugitive Slave Law\r\nThe Religious Duty of Obedience to Law : A Sermon by Ichabod S. Spencer Preached In The Second Presbyterian Church In Brooklyn, Nov. 24, 1850', 'Spencer, Ichabod S. (Ichabod Smith)', '2004-11-09', 7, 'https://www.gutenberg.org/ebooks/13988', 'en', 5591), +(21227, 'William Shakespeare as He Lived: An Historical Tale', 'Curling, Henry', '2010-12-30', 10, 'https://www.gutenberg.org/ebooks/34796', 'en', 9267), +(21228, 'Essays on Work and Culture', 'Mabie, Hamilton Wright', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6143', 'en', 740), +(21229, 'The Sixty-First Second', 'Johnson, Owen', '2015-03-12', 7, 'https://www.gutenberg.org/ebooks/37113', 'en', 9268), +(21230, 'The History of Painting in Italy, Vol. 4 (of 6)\r\nFrom the Period of the Revival of the Fine Arts to the End of the Eighteenth Century', 'Lanzi, Luigi', '2012-02-24', 19, 'https://www.gutenberg.org/ebooks/38967', 'en', 7807), +(21231, 'The Cattle-Raid of Cualnge (Tain Bo Cualnge) : An Old Irish Prose-Epic', NULL, '2004-12-20', 64, 'https://www.gutenberg.org/ebooks/14391', 'en', 9269), +(21232, 'Young Readers Science Fiction Stories', 'Elam, Richard M. (Richard Mace)', '2016-11-05', 105, 'https://www.gutenberg.org/ebooks/53456', 'en', 26), +(21233, 'The First Six Books of the Elements of Euclid', 'Euclid', '2007-04-14', 619, 'https://www.gutenberg.org/ebooks/21076', 'en', 9270), +(21234, 'Tides: A Book of Poems', 'Drinkwater, John', '2016-07-16', 19, 'https://www.gutenberg.org/ebooks/52584', 'en', 1594), +(21235, 'Over Paradise Ridge\nA Romance', 'Daviess, Maria Thompson', '2005-03-03', 12, 'https://www.gutenberg.org/ebooks/15243', 'en', 48), +(21236, 'L\'Illustration, No. 2504, 21 février 1891', 'Various', '2014-04-29', 6, 'https://www.gutenberg.org/ebooks/45533', 'fr', 150), +(21237, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 3/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2018-04-04', 15, 'https://www.gutenberg.org/ebooks/56918', 'fr', 2972), +(21238, 'From a College Window', 'Benson, Arthur Christopher', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/4614', 'en', 740), +(21239, 'The Essays of Arthur Schopenhauer; the Art of Controversy', 'Schopenhauer, Arthur', '2004-01-01', 142, 'https://www.gutenberg.org/ebooks/10731', 'en', 30), +(21240, 'The Greville Memoirs, Part 2 (of 3), Volume 1 (of 3)\r\nA Journal of the Reign of Queen Victoria from 1837 to 1852', 'Greville, Charles', '2008-02-03', 22, 'https://www.gutenberg.org/ebooks/24504', 'en', 2135), +(21241, 'The Cloister and the Hearth', 'Reade, Charles', '2006-02-15', 127, 'https://www.gutenberg.org/ebooks/1366', 'en', 2442), +(21242, 'Our Family Affairs, 1867-1896', 'Benson, E. F. (Edward Frederic)', '2019-02-13', 7, 'https://www.gutenberg.org/ebooks/58882', 'en', 9271), +(21243, 'The Secret of the Sundial\nMadge Sterling Series, #3', 'Wirt, Mildred A. (Mildred Augustine)', '2012-06-19', 26, 'https://www.gutenberg.org/ebooks/40041', 'en', 9066), +(21244, 'A fundação da monarchia portugueza\r\nnarração anti-iberica', 'Vasconcelos, António Augusto Teixeira de', '2007-04-06', 14, 'https://www.gutenberg.org/ebooks/20998', 'pt', 9272), +(21245, 'Työmiehiä: Romaani', 'Kielland, Alexander Lange', '2012-10-27', 11, 'https://www.gutenberg.org/ebooks/41193', 'fi', 7), +(21246, 'Junior Park Ranger Program: Montezuma Castle and Tuzigoot National Monuments', 'United States. National Park Service', '2019-07-19', 84, 'https://www.gutenberg.org/ebooks/59950', 'en', 9273), +(21247, 'Descriptive Catalogue of Photographs of North American Indians', 'Jackson, William Henry', '2012-03-10', 9, 'https://www.gutenberg.org/ebooks/39089', 'en', 9274), +(21248, 'The Scarlet Banner', 'Dahn, Felix', '2010-05-20', 22, 'https://www.gutenberg.org/ebooks/32461', 'en', 9275), +(21249, 'Kuvia ja kuvitelmia Suomen historiasta II', NULL, '2017-12-04', 7, 'https://www.gutenberg.org/ebooks/56124', 'fi', 6994), +(21250, 'The Human Comedy: Introductions and Appendix', 'Balzac, Honoré de', '1999-11-01', 106, 'https://www.gutenberg.org/ebooks/1968', 'en', 687), +(21251, 'Viimeinen tuomio', 'Sinclair, Upton', '2016-12-04', 8, 'https://www.gutenberg.org/ebooks/53664', 'fi', 9276), +(21252, 'La fiancée du rebelle: Épisode de la Guerre des Bostonnais, 1775', 'Marmette, Joseph', '2007-01-19', 48, 'https://www.gutenberg.org/ebooks/20396', 'fr', 9277), +(21253, 'Remarks on a Pamphlet Lately published by the Rev. Mr. Maskelyne, Under the Authority of the Board of Longitude', 'Harrison, John', '2011-09-05', 17, 'https://www.gutenberg.org/ebooks/37321', 'en', 9278), +(21254, 'Christianity and Problems of To-day: Lectures Delivered Before Lake Forest College on the Foundation of the Late William Bross', 'Kent, Charles Foster', '2014-05-20', 13, 'https://www.gutenberg.org/ebooks/45701', 'en', 7753), +(21255, 'Rhoda Fleming — Complete', 'Meredith, George', '2004-11-03', 26, 'https://www.gutenberg.org/ebooks/4426', 'en', 3092), +(21256, 'By Canoe and Dog Train Among The Cree and Salteaux Indians', 'Young, Egerton Ryerson', '2007-04-27', 16, 'https://www.gutenberg.org/ebooks/21244', 'en', 9279), +(21257, 'La Tempête', 'Shakespeare, William', '2005-02-15', 45, 'https://www.gutenberg.org/ebooks/15071', 'fr', 8099), +(21258, 'The Voyages of Doctor Dolittle', 'Lofting, Hugh', '1998-01-01', 262, 'https://www.gutenberg.org/ebooks/1154', 'en', 625), +(21259, 'A Journal of Two Campaigns of the Fourth Regiment of U.S. Infantry\r\nIn the Michigan and Indiana Territories, Under the Command of Col. John P. Boyd, and Lt. Col. James Miller During the Years 1811, & 12.', NULL, '2011-12-26', 5, 'https://www.gutenberg.org/ebooks/38369', 'en', 9280), +(21260, 'I misteri del castello d\'Udolfo, vol. 1', 'Radcliffe, Ann Ward', '2010-09-20', 28, 'https://www.gutenberg.org/ebooks/33781', 'it', 1380), +(21261, 'The Bolsheviki and World Peace', 'Trotsky, Leon', '2012-07-18', 76, 'https://www.gutenberg.org/ebooks/40273', 'en', 5953), +(21262, 'John Henry', 'McGuinn, Roger', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10503', 'en', 3198), +(21263, 'Peter Pry\'s Puppet Show\nPart the II.', 'Unknown', '2008-03-02', 12, 'https://www.gutenberg.org/ebooks/24736', 'en', 859), +(21264, 'The Campaign Round Liège', 'Kennedy, J. M. (John McFarland)', '2018-01-05', 6, 'https://www.gutenberg.org/ebooks/56316', 'en', 3333), +(21265, 'A Review of the Frogs of the Hyla bistincta Group', 'Duellman, William Edward', '2010-06-02', 10, 'https://www.gutenberg.org/ebooks/32653', 'en', 9281), +(21266, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of Guy de Maupassant', 'Maupassant, Guy de', '2003-01-01', 17, 'https://www.gutenberg.org/ebooks/3603', 'en', 1026), +(21267, 'The Declaration of the Rights of Man and of Citizens', 'Jellinek, Georg', '2009-08-26', 29, 'https://www.gutenberg.org/ebooks/29815', 'en', 9282), +(21268, 'L\'ingénieux chevalier Don Quichotte de la Manche', 'Cervantes Saavedra, Miguel de', '2013-04-13', 67, 'https://www.gutenberg.org/ebooks/42524', 'fr', 3761), +(21269, 'Illustrated History of Furniture: From the Earliest to the Present Time', 'Litchfield, Frederick', '2004-05-01', 104, 'https://www.gutenberg.org/ebooks/12254', 'en', 9283), +(21270, 'Travels in Peru and India\r\nWhile Superintending the Collection of Chinchona Plants and Seeds in South America, and Their Introduction into India.', 'Markham, Clements R. (Clements Robert), Sir', '2017-09-21', 6, 'https://www.gutenberg.org/ebooks/55593', 'en', 9284), +(21271, 'The Gold Girl', 'Hendryx, James B. (James Beardsley)', '2008-07-15', 26, 'https://www.gutenberg.org/ebooks/26061', 'en', 315), +(21272, 'The British Navy in Battle', 'Pollen, Arthur Joseph Hungerford', '2017-03-26', 6, 'https://www.gutenberg.org/ebooks/54441', 'en', 4131), +(21273, 'Vechter', 'Angelkot, Hermannus', '2004-09-07', 17, 'https://www.gutenberg.org/ebooks/13386', 'nl', 402), +(21274, 'A Personal Record', 'Conrad, Joseph', '2005-11-01', 9, 'https://www.gutenberg.org/ebooks/9339', 'en', 4965), +(21275, 'Species Plantarum, Sections VI-X', 'Linné, Carl von', '2009-09-27', 24, 'https://www.gutenberg.org/ebooks/30104', 'la', 9285), +(21276, 'How to Use the Popular Science Library; History of Science; General Index', 'Selwyn-Brown, Arthur', '2016-02-06', 2, 'https://www.gutenberg.org/ebooks/51133', 'en', 186), +(21277, 'A Nest of Spies', 'Souvestre, Pierre', '2009-06-03', 57, 'https://www.gutenberg.org/ebooks/29029', 'en', 128), +(21278, 'La Nation canadienne\nÉtude Historique sur les Populations Françaises du Nord de L\'Amérique', 'Gailly de Taurines, Ch.', '2011-03-03', 13, 'https://www.gutenberg.org/ebooks/35476', 'fr', 8734), +(21279, 'Frau Jenny Treibel: Roman aus der Berliner Gesellschaft', 'Fontane, Theodor', '2014-07-03', 32, 'https://www.gutenberg.org/ebooks/46184', 'de', 138), +(21280, 'Cyprus: Historical and Descriptive', 'Löher, Franz von', '2014-10-05', 25, 'https://www.gutenberg.org/ebooks/47056', 'en', 9286), +(21281, 'The Purgatory of St. Patrick', 'Calderón de la Barca, Pedro', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6371', 'en', 9287), +(21282, 'Three Years in the Service\nA Record of the Doings of the 11th Reg. Missouri Vols.', 'McCall, D.', '2015-04-29', 6, 'https://www.gutenberg.org/ebooks/48822', 'en', 1981), +(21283, 'Old Jabe\'s Marital Experiments\n1908', 'Page, Thomas Nelson', '2007-11-16', 12, 'https://www.gutenberg.org/ebooks/23513', 'en', 179), +(21284, 'The Bay State Monthly, Volume 3, No. 6', 'Various', '2006-02-09', 8, 'https://www.gutenberg.org/ebooks/17726', 'en', 5522), +(21285, 'Polly\'s Senior Year at Boarding School', 'Whitehill, Dorothy', '2010-01-13', 6, 'https://www.gutenberg.org/ebooks/30938', 'en', 6556), +(21286, 'Josh Billings, Hiz Sayings', 'Billings, Josh', '2014-04-12', 13, 'https://www.gutenberg.org/ebooks/45365', 'en', 190), +(21287, 'Clarissa Harlowe; or the history of a young lady — Volume 7', 'Richardson, Samuel', '2004-04-01', 69, 'https://www.gutenberg.org/ebooks/11889', 'en', 258), +(21288, 'Revisiting the Earth', 'Hill, James Langdon', '2011-07-11', 8, 'https://www.gutenberg.org/ebooks/36697', 'en', 9288), +(21289, 'Mozart: The Man and the Artist, as Revealed in His Own Words', 'Mozart, Wolfgang Amadeus', '2003-05-01', 77, 'https://www.gutenberg.org/ebooks/4042', 'en', 3143), +(21290, 'The Myth of Hiawatha, and Other Oral Legends, Mythologic and Allegoric, of the North American Indians', 'Schoolcraft, Henry Rowe', '2007-05-27', 68, 'https://www.gutenberg.org/ebooks/21620', 'en', 9289), +(21291, 'Tramping on Life\nAn Autobiographical Narrative', 'Kemp, Harry', '2005-03-19', 24, 'https://www.gutenberg.org/ebooks/15415', 'en', 9290), +(21292, 'The Camp Fire Girls by the Blue Lagoon', 'Vandercook, Margaret', '2016-10-02', 7, 'https://www.gutenberg.org/ebooks/53200', 'en', 9291), +(21293, 'Manners & Cvstoms of ye Englyshe\r\nDrawn from ye Qvick', 'Doyle, Richard', '2011-10-13', 20, 'https://www.gutenberg.org/ebooks/37745', 'en', 1688), +(21294, 'Brandenburg Concerto No. 5 in D Major, BWV 1050', 'Bach, Johann Sebastian', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/5190', 'en', 9292), +(21295, '大唐新語', 'Liu, Su, active 806-820', '2008-05-02', 14, 'https://www.gutenberg.org/ebooks/25280', 'zh', 2918), +(21296, 'The Land of Riddles (Russia of To-day)', 'Ganz, Hugo', '2018-03-18', 8, 'https://www.gutenberg.org/ebooks/56772', 'en', 9293), +(21297, 'Assassin', 'Bone, Jesse F. (Jesse Franklin)', '2010-05-03', 64, 'https://www.gutenberg.org/ebooks/32237', 'en', 9294), +(21298, 'Measure for Measure', 'Shakespeare, William', '1998-11-01', 76, 'https://www.gutenberg.org/ebooks/1530', 'en', 907), +(21299, 'The Teaching and Cultivation of the French Language in England during Tudor and Stuart Times\nWith an Introductory Chapter on the Preceding Period', 'Lambley, K. Rebillon (Kathleen Rebillon)', '2012-08-29', 21, 'https://www.gutenberg.org/ebooks/40617', 'en', 9295), +(21300, 'Mr. Thomas Cat', 'Edison Concert Band', '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10167', 'en', 9296), +(21301, 'Land of the Burnt Thigh', 'Kohl, Edith Eudora', '2008-01-17', 10, 'https://www.gutenberg.org/ebooks/24352', 'en', 9297), +(21302, 'The Writer\'s Desk Book\r\nBeing a Reference Volume upon Questions of Punctuation, Capitalization, Spelling, Division of Words, Indention, Spacing, Italics, Abbreviations, Accents, Numerals, Faulty Diction, Letter Writing, Postal Regulations, Etc.', 'Orcutt, William Dana', '2017-01-19', 37, 'https://www.gutenberg.org/ebooks/54025', 'en', 9298), +(21303, 'The Dead Secret: A Novel', 'Collins, Wilkie', '2013-07-05', 62, 'https://www.gutenberg.org/ebooks/43092', 'en', 166), +(21304, 'Music: An Art and a Language', 'Spalding, Walter Raymond', '2009-11-28', 168, 'https://www.gutenberg.org/ebooks/30560', 'en', 9299), +(21305, 'Old Love Stories Retold', 'Le Gallienne, Richard', '2002-06-01', 17, 'https://www.gutenberg.org/ebooks/3267', 'en', 9300), +(21306, 'Ariel', 'Rodó, José Enrique', '2007-10-05', 43, 'https://www.gutenberg.org/ebooks/22899', 'es', 3003), +(21307, 'Greuze', 'Macklin, Alys Eyre', '2013-02-20', 7, 'https://www.gutenberg.org/ebooks/42140', 'en', 9301), +(21308, 'The Adventures of Old Mr. Toad', 'Burgess, Thornton W. (Thornton Waldo)', '2004-06-01', 84, 'https://www.gutenberg.org/ebooks/12630', 'en', 1045), +(21309, 'Penguin Persons & Peppermints', 'Eaton, Walter Prichard', '2008-08-23', 13, 'https://www.gutenberg.org/ebooks/26405', 'en', 20), +(21310, 'Babylon, Volume 2', 'Allen, Grant', '2014-11-22', 18, 'https://www.gutenberg.org/ebooks/47432', 'en', 2287), +(21311, 'Les Contes; ou, Les nouvelles récréations et joyeux devis', 'Des Périers, Bonaventure', '2017-05-31', 16, 'https://www.gutenberg.org/ebooks/54819', 'fr', 642), +(21312, 'Isobel : A Romance of the Northern Trail', 'Curwood, James Oliver', '2004-10-01', 26, 'https://www.gutenberg.org/ebooks/6715', 'en', 551), +(21313, 'The Inmate Of The Dungeon\n1894', 'Morrow, W. C.', '2007-10-24', 7, 'https://www.gutenberg.org/ebooks/23177', 'en', 179), +(21314, 'The Motor Maid', 'Williamson, A. M. (Alice Muriel)', '2005-12-17', 29, 'https://www.gutenberg.org/ebooks/17342', 'en', 533), +(21315, 'Petit histoire des grandes rois de Angleterre', 'Chouinard, Ephrem', '2015-11-18', 10, 'https://www.gutenberg.org/ebooks/50485', 'fr', 7420), +(21316, 'The Colloquies of Edward Osborne, Citizen and Clothworker of London', 'Manning, Anne', '2016-03-25', 16, 'https://www.gutenberg.org/ebooks/51557', 'en', 9302), +(21317, 'The Bible Book by Book\nA Manual for the Outline Study of the Bible by Books', 'Tidwell, Josiah Blake', '2005-07-13', 140, 'https://www.gutenberg.org/ebooks/16290', 'en', 9303), +(21318, 'A Search For A Secret: A Novel. Vol. 1', 'Henty, G. A. (George Alfred)', '2011-01-20', 160, 'https://www.gutenberg.org/ebooks/35012', 'en', 167), +(21319, 'Doctor Papa', 'May, Sophie', '2015-04-06', 10, 'https://www.gutenberg.org/ebooks/48648', 'en', 1625), +(21320, 'Oberon', 'Wieland, Christoph Martin', '2000-05-01', 28, 'https://www.gutenberg.org/ebooks/2187', 'de', 1518), +(21321, 'Vestiges of the Mayas\r\nor, Facts Tending to Prove That Communications and Intimate Relations Must Have Existed, in Very Remote Times, Between the Inhabitants of Mayab and Those of Asia and Africa', 'Le Plongeon, Augustus', '2009-12-25', 15, 'https://www.gutenberg.org/ebooks/30752', 'en', 9304), +(21322, 'The Log of the Water Wagon; or, The Cruise of the Good Ship \"Lithia\"', 'Taylor, Bert Leston', '2019-07-31', 718, 'https://www.gutenberg.org/ebooks/60022', 'en', 9305), +(21323, 'The Farmer\'s Own Book: A treatise on the numerous diseases of the horse\r\nwith an explanation of their symptoms, and the course of treatment to be pursued; also a treatise on the diseases of horned cattle', 'Koogle, J. D.', '2017-02-21', 7, 'https://www.gutenberg.org/ebooks/54217', 'en', 2161), +(21324, 'The Loves of Great Composers', 'Kobbé, Gustav', '2006-04-10', 42, 'https://www.gutenberg.org/ebooks/18138', 'en', 6048), +(21325, 'The Poets and Poetry of Cecil County, Maryland', NULL, '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12402', 'en', 9306), +(21326, 'The Mystery of the Green Ray', 'Le Queux, William', '2008-09-16', 17, 'https://www.gutenberg.org/ebooks/26637', 'en', 26), +(21327, 'The Wood Beyond the World', 'Morris, William', '2002-02-01', 135, 'https://www.gutenberg.org/ebooks/3055', 'en', 580), +(21328, 'Generals Help Themselves', 'Pease, M. C.', '2010-03-17', 18, 'https://www.gutenberg.org/ebooks/31680', 'en', 9307), +(21329, 'Az igazi humoristák: Cikkek a magyar nép humoráról', 'Mikszáth, Kálmán', '2013-03-19', 10, 'https://www.gutenberg.org/ebooks/42372', 'hu', 9308), +(21330, 'A Gratidão', 'Castelo Branco, Camilo', '2007-11-06', 23, 'https://www.gutenberg.org/ebooks/23345', 'pt', 3856), +(21331, 'A Study of Pueblo Pottery as Illustrative of Zuñi Culture Growth.\r\nFourth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1882-83, Government Printing Office, Washington, 1886, pages 467-522', 'Cushing, Frank Hamilton', '2005-11-28', 12, 'https://www.gutenberg.org/ebooks/17170', 'en', 9309), +(21332, 'Illustrations of Exotic Entomology, Volume 2', 'Drury, Dru', '2014-12-23', 22, 'https://www.gutenberg.org/ebooks/47600', 'en', 1629), +(21333, 'Pohjan-Piltti: Kuvaus lopulta 13:tta vuosisataa', 'Yrjö-Koskinen, Yrjö Sakari', '2006-07-25', 15, 'https://www.gutenberg.org/ebooks/18904', 'fi', 61), +(21334, 'Debian GNU/Linux : Guide to Installation and Usage', 'Goerzen, John', '2004-09-01', 95, 'https://www.gutenberg.org/ebooks/6527', 'en', 9310), +(21335, 'Door duisternis tot licht: Gedachten over en voor het Javaansche volk', 'Kartini, Raden Adjeng', '2011-02-08', 24, 'https://www.gutenberg.org/ebooks/35220', 'nl', 9311), +(21336, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 10', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 19, 'https://www.gutenberg.org/ebooks/3869', 'en', 1247), +(21337, 'A Book of North Wales', 'Baring-Gould, S. (Sabine)', '2016-04-15', 17, 'https://www.gutenberg.org/ebooks/51765', 'en', 9312), +(21338, 'The Coast of Bohemia', 'Howells, William Dean', '2007-08-10', 16, 'https://www.gutenberg.org/ebooks/22297', 'en', 297), +(21339, 'The Tale of Bobby Bobolink\nTuck-me-In Tales', 'Bailey, Arthur Scott', '2007-05-09', 35, 'https://www.gutenberg.org/ebooks/21412', 'en', 625), +(21340, 'Verner\'s Pride', 'Wood, Henry, Mrs.', '2005-04-15', 26, 'https://www.gutenberg.org/ebooks/15627', 'en', 1380), +(21341, 'Punch, or the London Charivari, Volume 93. July 30, 1887', 'Various', '2010-06-16', 10, 'https://www.gutenberg.org/ebooks/32839', 'en', 134), +(21342, 'Index of the Project Gutenberg Works of the Brothers Grimm', 'Grimm, Jacob', '2019-05-14', 57, 'https://www.gutenberg.org/ebooks/59508', 'en', 198), +(21343, 'Reminiscences of a Liverpool Shipowner, 1850-1920', 'Forwood, William Bower, Sir', '2014-03-17', 23, 'https://www.gutenberg.org/ebooks/45157', 'en', 9313), +(21344, 'Ragged Lady — Complete', 'Howells, William Dean', '2004-10-24', 25, 'https://www.gutenberg.org/ebooks/4270', 'en', 348), +(21345, 'L\'Illustration, No. 3651, 15 Février 1913', 'Various', '2011-09-30', 7, 'https://www.gutenberg.org/ebooks/37577', 'fr', 150), +(21346, 'Psychoanalysis, Sleep and Dreams', 'Tridon, André', '2013-11-01', 13, 'https://www.gutenberg.org/ebooks/44085', 'en', 3640), +(21347, 'William—An Englishman', 'Hamilton, Cicely', '2016-09-11', 23, 'https://www.gutenberg.org/ebooks/53032', 'en', 579), +(21348, 'Border Raids and Reivers', 'Borland, Robert', '2010-04-16', 19, 'https://www.gutenberg.org/ebooks/32005', 'en', 9314), +(21349, 'De omwenteling van 1830', 'Conscience, Hendrik', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11287', 'nl', 9315), +(21350, 'Miss Parloa\'s Young Housekeeper\r\nDesigned Especially to Aid Beginners; Economical Receipts for Those Who Are Cooking for Two or Three', 'Parloa, Maria', '2018-02-11', 20, 'https://www.gutenberg.org/ebooks/56540', 'en', 103), +(21351, 'Engraved Gems', 'Sommerville, Maxwell', '2018-07-12', 7, 'https://www.gutenberg.org/ebooks/57492', 'en', 7406), +(21352, 'Travels in Morocco, Volume 1.', 'Richardson, James', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/10355', 'en', 6762), +(21353, 'The Basket of Flowers', 'Schmid, Christoph von', '2008-01-04', 50, 'https://www.gutenberg.org/ebooks/24160', 'en', 195), +(21354, 'Little Masterpieces of Autobiography: Actors', 'Iles, George', '1999-04-01', 37, 'https://www.gutenberg.org/ebooks/1702', 'en', 6975), +(21355, 'Chinese Mother Goose Rhymes', NULL, '2012-08-06', 23, 'https://www.gutenberg.org/ebooks/40425', 'en', 2822), +(21356, 'A History of Matrimonial Institutions, Vol. 1 of 3', 'Howard, George Elliott', '2015-06-02', 50, 'https://www.gutenberg.org/ebooks/49107', 'en', 42), +(21357, 'Remarks', 'Nye, Bill', '2005-06-01', 33, 'https://www.gutenberg.org/ebooks/8220', 'en', 190), +(21358, 'The Maya Indians of Southern Yucatan and Northern British Honduras', 'Gann, Thomas William Francis', '2014-09-26', 28, 'https://www.gutenberg.org/ebooks/46973', 'en', 9316), +(21359, 'Caedmon\'s Hymn', 'Caedmon', '2006-11-07', 14, 'https://www.gutenberg.org/ebooks/19677', 'en', 9317), +(21360, 'The Boarding School; Lessons of a Preceptress to Her Pupils\r\nConsisting of Information, Instruction and Advice, Calculated to Improve the Manners and Form the Character of Young Ladies. To Which Is Added, a Collection of Letters, Written by the Pupils to Their Instructress, Their Friends, and Each Other.', 'Foster, Hannah Webster', '2017-09-16', 12, 'https://www.gutenberg.org/ebooks/55558', 'en', 9318), +(21361, 'The Gutenberg Webster\'s Unabridged Dictionary: Section C', 'Project Gutenberg', '1996-09-01', 94, 'https://www.gutenberg.org/ebooks/661', 'en', 1481), +(21362, 'Na śmierć, 1863', 'Gnatowski, Jan', '2008-11-06', 47, 'https://www.gutenberg.org/ebooks/27178', 'pl', 9319), +(21363, 'Dick Kent with the Eskimos', 'Oblinger, M. M. (Milo Milton)', '2016-01-01', 10, 'https://www.gutenberg.org/ebooks/50816', 'en', 323), +(21364, 'Sónnica', 'Blasco Ibáñez, Vicente', '2010-03-29', 17, 'https://www.gutenberg.org/ebooks/31821', 'en', 9320), +(21365, 'Notes and Queries, Number 76, April 12, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-12', 10, 'https://www.gutenberg.org/ebooks/26896', 'en', 105), +(21366, 'Monsieur Bergeret à Paris: Histoire Contemporaine', 'France, Anatole', '2005-01-01', 18, 'https://www.gutenberg.org/ebooks/7268', 'fr', 689), +(21367, 'The Home Medical Library, Volume 2 (of 6)', NULL, '2009-01-31', 23, 'https://www.gutenberg.org/ebooks/27944', 'en', 2925), +(21368, 'The Nursery, February 1877, Vol. XXI. No. 2\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 17, 'https://www.gutenberg.org/ebooks/28130', 'en', 4641), +(21369, 'Il Conte di Virtù vol. 1/2\r\nStoria italiana del secolo XIV', 'Belgiojoso, Carlo', '2018-11-07', 22, 'https://www.gutenberg.org/ebooks/58247', 'it', 7841), +(21370, 'Widdershins', 'Onions, Oliver', '2004-11-26', 224, 'https://www.gutenberg.org/ebooks/14168', 'en', 1373), +(21371, 'Blackwood\'s Edinburgh Magazine, Vol. 68, No 420, October 1850', 'Various', '2014-01-07', 22, 'https://www.gutenberg.org/ebooks/44618', 'en', 711), +(21372, 'The Mantle, and Other Stories', 'Gogol, Nikolai Vasilevich', '2011-05-27', 413, 'https://www.gutenberg.org/ebooks/36238', 'en', 9321), +(21373, 'Keskinäinen ihmisyys', 'Ruskin, John', '2019-04-30', 1, 'https://www.gutenberg.org/ebooks/59395', 'fi', 9322), +(21374, 'The Cid', 'Corneille, Pierre', '2005-02-07', 76, 'https://www.gutenberg.org/ebooks/14954', 'en', 9323), +(21375, 'The Life and Opinions of Tristram Shandy, Gentleman', 'Sterne, Laurence', '2012-03-26', 157, 'https://www.gutenberg.org/ebooks/39270', 'en', 9324), +(21376, 'The Strength of Gideon and Other Stories', 'Dunbar, Paul Laurence', '2005-05-23', 24, 'https://www.gutenberg.org/ebooks/15886', 'en', 1958), +(21377, 'Thoughts on the Religious Instruction of the Negroes of this Country', 'Plumer, William S. (William Swan)', '2010-06-05', 11, 'https://www.gutenberg.org/ebooks/32698', 'en', 9325), +(21378, 'Early Days in Fort Worth, Much of Which I saw and Part of Which I Was', 'Paddock, B. B. (Buckley B.)', '2018-08-29', 14, 'https://www.gutenberg.org/ebooks/57801', 'en', 9326), +(21379, 'Index of the Project Gutenberg Works of Arnold Bennett', 'Bennett, Arnold', '2018-10-11', 7, 'https://www.gutenberg.org/ebooks/58075', 'en', 198), +(21380, 'Sodome et Gomorrhe - Première partie', 'Proust, Marcel', '2005-03-08', 67, 'https://www.gutenberg.org/ebooks/15288', 'fr', 4), +(21381, 'Mark Tidd, Editor', 'Kelland, Clarence Budington', '2013-02-01', 62, 'https://www.gutenberg.org/ebooks/41964', 'en', 1655), +(21382, 'By the Christmas Fire', 'Crothers, Samuel McChord', '2007-03-31', 20, 'https://www.gutenberg.org/ebooks/20953', 'en', 20), +(21383, 'Cornwall', 'Baring-Gould, S. (Sabine)', '2011-12-03', 39, 'https://www.gutenberg.org/ebooks/38190', 'en', 9327), +(21384, 'Steam Navigation and Its Relation to the Commerce of Canada and the United States', 'Croil, James', '2019-02-10', 5, 'https://www.gutenberg.org/ebooks/58849', 'en', 9328), +(21385, 'Comments on the Taxonomy and Geographic Distribution of Some North American Rodents', 'Kelson, Keith R.', '2010-08-30', 16, 'https://www.gutenberg.org/ebooks/33578', 'en', 9329), +(21386, 'In Morocco', 'Wharton, Edith', '2012-03-04', 117, 'https://www.gutenberg.org/ebooks/39042', 'en', 9330), +(21387, 'The Life of the Waiting Soul in the Intermediate State', 'Sanderson, R. E. (Robert Edward)', '2007-06-20', 21, 'https://www.gutenberg.org/ebooks/21881', 'en', 9331), +(21388, 'Golden Alaska: A Complete Account to Date of the Yukon Valley', 'Ingersoll, Ernest', '2012-10-24', 17, 'https://www.gutenberg.org/ebooks/41158', 'en', 9332), +(21389, 'Gossip in a Library', 'Gosse, Edmund', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11628', 'en', 1694), +(21390, 'The Men Who Wrought', 'Cullum, Ridgwell', '2011-07-24', 31, 'https://www.gutenberg.org/ebooks/36836', 'en', 26), +(21391, 'The Metamorphosis', 'Kafka, Franz', '2008-08-01', 92, 'https://www.gutenberg.org/ebooks/26298', 'en', 1061), +(21392, 'An Ambitious Man', 'Wilcox, Ella Wheeler', '2005-04-01', 15, 'https://www.gutenberg.org/ebooks/7866', 'en', 61), +(21393, 'Omnilingual', 'Piper, H. Beam', '2006-10-02', 249, 'https://www.gutenberg.org/ebooks/19445', 'en', 26), +(21394, 'Conservation of marine birds of northern North America:\npapers from the international symposium held at the Seattle Hyatt House', NULL, '2015-06-30', 9, 'https://www.gutenberg.org/ebooks/49335', 'en', 9333), +(21395, 'The Bible, King James version, Book 12: 2 Kings', 'Anonymous', '2005-04-01', 11, 'https://www.gutenberg.org/ebooks/8012', 'en', 2725), +(21396, 'The Women of the French Salons', 'Mason, Amelia Gere', '2001-02-01', 31, 'https://www.gutenberg.org/ebooks/2528', 'en', 9334), +(21397, 'Stories of Achievement, Volume III, Orators and Reformers', NULL, '2006-06-15', 13, 'https://www.gutenberg.org/ebooks/18597', 'en', 4065), +(21398, 'Emma McChesney and Co.', 'Ferber, Edna', '1996-03-01', 67, 'https://www.gutenberg.org/ebooks/453', 'en', 9200), +(21399, 'Running Water', 'Mason, A. E. W. (Alfred Edward Woodley)', '2004-07-12', 22, 'https://www.gutenberg.org/ebooks/12891', 'en', 61), +(21400, 'The Straw', 'O\'Neill, Eugene', '2007-09-16', 73, 'https://www.gutenberg.org/ebooks/22638', 'en', 508), +(21401, 'Old Court Life in France, vol. 1/2', 'Elliot, Frances Minto Dickinson', '2015-10-14', 10, 'https://www.gutenberg.org/ebooks/50218', 'en', 1870), +(21402, 'The Arkansaw Bear: A Tale of Fanciful Adventure', 'Paine, Albert Bigelow', '2009-03-10', 13, 'https://www.gutenberg.org/ebooks/28302', 'en', 76), +(21403, 'Northern Lights, Volume 3.', 'Parker, Gilbert', '2004-07-01', 6, 'https://www.gutenberg.org/ebooks/6188', 'en', 1887), +(21404, 'Political Pamphlets', NULL, '2004-11-03', 41, 'https://www.gutenberg.org/ebooks/13943', 'en', 5067), +(21405, 'Sá de Miranda\r\nCom uma carta ácerca da \"Bibliographia Camilliana\" de Henrique Marques', 'Quental, Antero de', '2008-06-19', 16, 'https://www.gutenberg.org/ebooks/25845', 'pt', 9335), +(21406, 'The Beginning Of The Sea Story Of Australia\n1901', 'Becke, Louis', '2008-04-05', 14, 'https://www.gutenberg.org/ebooks/24997', 'en', 20), +(21407, 'Richard Carvel — Volume 05', 'Churchill, Winston', '2004-10-18', 10, 'https://www.gutenberg.org/ebooks/5369', 'en', 1293), +(21408, 'The Menace of Prohibition', 'Wightman, Lulu', '2010-10-17', 16, 'https://www.gutenberg.org/ebooks/33920', 'en', 9336), +(21409, 'The Play of Man', 'Groos, Karl', '2018-12-04', 33, 'https://www.gutenberg.org/ebooks/58411', 'en', 9337), +(21410, 'A Bible History of Baptism', 'Baird, Samuel J. (Samuel John)', '2016-08-28', 20, 'https://www.gutenberg.org/ebooks/52917', 'en', 9338), +(21411, 'Rupert, Prince Palatine', 'Scott, Eva', '2012-04-11', 9, 'https://www.gutenberg.org/ebooks/39426', 'en', 9339), +(21412, 'Queensland Cousins', 'Haverfield, Eleanor Luisa', '2008-04-16', 12, 'https://www.gutenberg.org/ebooks/25079', 'en', 421), +(21413, 'The Man Who Fell Through the Earth', 'Wells, Carolyn', '2014-02-13', 63, 'https://www.gutenberg.org/ebooks/44872', 'en', 61), +(21414, 'Reprint of Two Tracts\r\n1. An essay on gleets. 2. An enquiry into the nature, cause, and cure of a singular disease of the eyes', 'Marat, Jean Paul', '2018-07-08', 14, 'https://www.gutenberg.org/ebooks/57459', 'en', 9340), +(21415, 'The Mound Builders', 'Bryce, George', '2006-03-15', 70, 'https://www.gutenberg.org/ebooks/17987', 'en', 9341), +(21416, 'The Gnôsis of the Light', 'Lamplugh, F.', '2009-12-29', 27, 'https://www.gutenberg.org/ebooks/30799', 'en', 9342), +(21417, 'Analectabiblion, Tome 1 (of 2)\nou extraits critiques de diveres livres rares, oubliés ou peu connus', 'Du Roure, Auguste François Louis Scipion de Grimoard Beauvoir', '2015-04-11', 11, 'https://www.gutenberg.org/ebooks/48683', 'fr', 9343), +(21418, 'Le bonheur à cinq sous', 'Boylesve, René', '2006-08-10', 23, 'https://www.gutenberg.org/ebooks/19021', 'fr', 100), +(21419, 'Three Minute Stories', 'Richards, Laura Elizabeth Howe', '2015-08-21', 24, 'https://www.gutenberg.org/ebooks/49751', 'en', 859), +(21420, 'The Land of Mystery', 'Ellis, Edward Sylvester', '2005-10-10', 46, 'https://www.gutenberg.org/ebooks/16855', 'en', 323); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(21421, 'Life on the Mississippi, Part 6.', 'Twain, Mark', '2004-07-09', 11, 'https://www.gutenberg.org/ebooks/8476', 'en', 5482), +(21422, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 20: Milan', 'Casanova, Giacomo', '2004-12-12', 11, 'https://www.gutenberg.org/ebooks/2970', 'en', 4391), +(21423, 'Elements of Gaelic Grammar', 'Stewart, Alexander', '2009-05-12', 43, 'https://www.gutenberg.org/ebooks/28766', 'en', 9344), +(21424, 'The Princess and the Goblin', 'MacDonald, George', '2010-11-16', 222, 'https://www.gutenberg.org/ebooks/34339', 'en', 1007), +(21425, 'Het beleg en de verdediging van Haarlem, in 1572-1573 (deel 3 van 3)', 'Capelle, J. van de', '2014-08-29', 13, 'https://www.gutenberg.org/ebooks/46719', 'nl', 3372), +(21426, 'Kuningasverta\nKaksinäytöksinen kuvaus', 'Herlevi, Helvi', '2005-06-14', 15, 'https://www.gutenberg.org/ebooks/16069', 'fi', 402), +(21427, 'Notes and Queries, Number 37, July 13, 1850', 'Various', '2004-10-12', 25, 'https://www.gutenberg.org/ebooks/13729', 'en', 105), +(21428, 'Tieck\'s Essay on the Boydell Shakspere Gallery', 'Danton, George H. (George Henry)', '2011-01-12', 18, 'https://www.gutenberg.org/ebooks/34937', 'en', 9345), +(21429, 'Walden, and On The Duty Of Civil Disobedience', 'Thoreau, Henry David', '1995-01-01', 4061, 'https://www.gutenberg.org/ebooks/205', 'en', 9346), +(21430, 'The Master Detective: Being Some Further Investigations of Christopher Quarles', 'Brebner, Percy James', '2006-01-01', 10, 'https://www.gutenberg.org/ebooks/9796', 'en', 128), +(21431, 'Rumanian Bird and Beast Stories Rendered into English', NULL, '2013-06-29', 18, 'https://www.gutenberg.org/ebooks/43059', 'en', 9347), +(21432, 'The Velveteen Rabbit', 'Bianco, Margery Williams', '2007-12-01', 19, 'https://www.gutenberg.org/ebooks/23980', 'en', 1235), +(21433, 'The Epistle of Paul the Apostle to the Romans', NULL, '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22852', 'en', 4669), +(21434, 'The Lost Land of King Arthur', 'Walters, John Cuming', '2015-08-01', 18, 'https://www.gutenberg.org/ebooks/49563', 'en', 6459), +(21435, 'Celebrated Women Travellers of the Nineteenth Century', 'Adams, W. H. Davenport (William Henry Davenport)', '2010-03-03', 45, 'https://www.gutenberg.org/ebooks/31479', 'en', 9348), +(21436, 'The Story of Ab: A Tale of the Time of the Cave Man', 'Waterloo, Stanley', '2005-08-01', 47, 'https://www.gutenberg.org/ebooks/8644', 'en', 26), +(21437, 'The History of England in Three Volumes, Vol. I., Part C.\r\nFrom Henry VII. to Mary', 'Hume, David', '2006-09-08', 38, 'https://www.gutenberg.org/ebooks/19213', 'en', 9349), +(21438, 'The Dreamer: A Romantic Rendering of the Life-Story of Edgar Allan Poe', 'Stanard, Mary Newton', '2005-12-25', 28, 'https://www.gutenberg.org/ebooks/17389', 'en', 9350), +(21439, 'The Old Inns of Old England, Volume 1 (of 2)\r\nA Picturesque Account of the Ancient and Storied Hostelries of Our Own Country', 'Harper, Charles G. (Charles George)', '2013-10-02', 30, 'https://www.gutenberg.org/ebooks/43865', 'en', 226), +(21440, 'Beyond Lies the Wub', 'Dick, Philip K.', '2009-04-11', 459, 'https://www.gutenberg.org/ebooks/28554', 'en', 179), +(21441, 'A Forest Hearth: A Romance of Indiana in the Thirties', 'Major, Charles', '2009-07-22', 11, 'https://www.gutenberg.org/ebooks/29486', 'en', 3016), +(21442, 'Gids bij de studie der Nederlandsche letterkunde\r\nVoor leerlingen der gymnasia, H. B. scholen en studeerenden voor de hoofdacte', 'Rijpma, E. (Enneus)', '2017-11-07', 4, 'https://www.gutenberg.org/ebooks/55900', 'nl', 9351), +(21443, 'The American Nation: A History — Volume 1: European Background of American History, 1300-1600', 'Cheyney, Edward Potts', '2003-05-01', 16, 'https://www.gutenberg.org/ebooks/4089', 'en', 827), +(21444, 'U.S. Copyright Renewals, 1970 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11842', 'en', 4170), +(21445, 'The Genealogy of Morals\nThe Complete Works, Volume Thirteen, edited by Dr. Oscar Levy.', 'Nietzsche, Friedrich Wilhelm', '2016-06-13', 563, 'https://www.gutenberg.org/ebooks/52319', 'en', 680), +(21446, 'Rebels of the Red Planet', 'Fontenay, Charles L.', '2007-03-04', 103, 'https://www.gutenberg.org/ebooks/20739', 'en', 1564), +(21447, 'Open Letter to President McKinley by Colored People of Massachusetts', 'Colored National League', '2019-01-06', 8, 'https://www.gutenberg.org/ebooks/58623', 'en', 584), +(21448, 'Selected Speeches on British Foreign Policy 1738-1914', NULL, '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/10990', 'en', 9352), +(21449, 'Ardours and Endurances; Also, A Faun\'s Holiday & Poems and Phantasies', 'Nichols, Robert', '2012-05-04', 10, 'https://www.gutenberg.org/ebooks/39614', 'en', 2100), +(21450, 'Criminal Negligence', 'McComas, J. Francis', '2008-01-22', 27, 'https://www.gutenberg.org/ebooks/24399', 'en', 26), +(21451, 'What\'s Mine\'s Mine — Volume 2', 'MacDonald, George', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/5967', 'en', 314), +(21452, 'The Loving Ballad of Lord Bateman', 'Dickens, Charles', '2005-04-14', 15, 'https://www.gutenberg.org/ebooks/15618', 'en', 54), +(21453, 'Christopher Crayon\'s Recollections\nThe Life and Times of the late James Ewing Ritchie as told by himself', 'Ritchie, J. Ewing (James Ewing)', '2010-06-14', 8, 'https://www.gutenberg.org/ebooks/32806', 'en', 9353), +(21454, 'Der Sohn einer Magd', 'Strindberg, August', '2019-05-18', 11, 'https://www.gutenberg.org/ebooks/59537', 'de', 4184), +(21455, 'Rhymes for Harry and His Nurse-Maid', 'Arthington, Maria', '2014-03-18', 11, 'https://www.gutenberg.org/ebooks/45168', 'en', 9354), +(21456, 'Allison Bain; Or, By a Way She Knew Not', 'Robertson, Margaret M. (Margaret Murray)', '2008-03-30', 14, 'https://www.gutenberg.org/ebooks/24963', 'en', 1219), +(21457, 'Notes and Queries, Vol. IV, Number 88, July 5, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-09-27', 8, 'https://www.gutenberg.org/ebooks/37548', 'en', 105), +(21458, 'Charles Sumner: his complete works, volume 04 (of 20)', 'Sumner, Charles', '2014-06-13', 9, 'https://www.gutenberg.org/ebooks/45954', 'en', 125), +(21459, 'The Geography of Strabo, Volume 3 (of 3)\r\nLiterally Translated, with Notes', 'Strabo', '2014-02-13', 44, 'https://www.gutenberg.org/ebooks/44886', 'en', 8354), +(21460, 'Christmas at Punkin Holler', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2016-12-30', 15, 'https://www.gutenberg.org/ebooks/53831', 'en', 3459), +(21461, 'The Great Painters\' Gospel\r\nPictures Representing Scenes and Incidents in the Life of Our Lord Jesus Christ', 'Bailey, Henry Turner', '2012-01-05', 20, 'https://www.gutenberg.org/ebooks/38500', 'en', 9355), +(21462, 'Manual of Gardening (Second Edition)\r\nA Practical Guide to the Making of Home Grounds and the Growing of Flowers, Fruits, and Vegetables for Home Use', 'Bailey, L. H. (Liberty Hyde)', '2005-12-01', 142, 'https://www.gutenberg.org/ebooks/9550', 'en', 1413), +(21463, 'The World of Romance\nbeing Contributions to The Oxford and Cambridge Magazine, 1856', 'Morris, William', '2006-03-12', 33, 'https://www.gutenberg.org/ebooks/17973', 'en', 2442), +(21464, 'A Year with the Birds\nThird Edition, Enlarged', 'Fowler, W. Warde (William Warde)', '2015-04-10', 19, 'https://www.gutenberg.org/ebooks/48677', 'en', 9356), +(21465, 'El buey suelto... Cuadros edificantes de la vida de un solterón', 'Pereda, José María de', '2017-02-24', 20, 'https://www.gutenberg.org/ebooks/54228', 'es', 1353), +(21466, 'American Lutheranism Vindicated; or, Examination of the Lutheran Symbols, on Certain Disputed Topics\nIncluding a Reply to the Plea of Rev. W. J. Mann', 'Schmucker, S. S. (Samuel Simon)', '2006-04-02', 22, 'https://www.gutenberg.org/ebooks/18107', 'en', 4988), +(21467, 'Le trésor de la cité des dames de degré en degré et de tous estatz', 'Christine, de Pisan', '2008-09-13', 108, 'https://www.gutenberg.org/ebooks/26608', 'fr', 1485), +(21468, 'Life on the Mississippi, Part 12.', 'Twain, Mark', '2004-07-10', 16, 'https://www.gutenberg.org/ebooks/8482', 'en', 5482), +(21469, 'Mark Twain: A Biography. Volume II, Part 1: 1886-1900', 'Paine, Albert Bigelow', '2001-12-01', 5, 'https://www.gutenberg.org/ebooks/2984', 'en', 9357), +(21470, 'De L\'Orme.\nThe Works of G. P. R. James, Esq., Vol. XVI.', 'James, G. P. R. (George Payne Rainsford)', '2015-12-14', 18, 'https://www.gutenberg.org/ebooks/50688', 'en', 61), +(21471, 'Omnilingual', 'Piper, H. Beam', '2009-05-01', 18, 'https://www.gutenberg.org/ebooks/28792', 'en', 26), +(21472, 'Wallensteins Lager', 'Schiller, Friedrich', '2004-09-01', 32, 'https://www.gutenberg.org/ebooks/6518', 'de', 2341), +(21473, 'Germana', 'About, Edmond', '2009-08-08', 74, 'https://www.gutenberg.org/ebooks/29640', 'es', 4966), +(21474, 'Memoirs of the Court of Louis XIV. and of the Regency — Volume 02', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2004-12-03', 17, 'https://www.gutenberg.org/ebooks/3856', 'en', 9358), +(21475, 'The Breath of Life', 'Burroughs, John', '2006-05-07', 41, 'https://www.gutenberg.org/ebooks/18335', 'en', 4564), +(21476, 'Calderon the Courtier, a Tale', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 28, 'https://www.gutenberg.org/ebooks/9762', 'en', 9359), +(21477, 'The Tao Teh King, or the Tao and its Characteristics', 'Laozi', '2007-12-01', 46, 'https://www.gutenberg.org/ebooks/23974', 'en', 9360), +(21478, 'L\'assedio di Firenze', 'Guerrazzi, Francesco Domenico', '2015-03-09', 20, 'https://www.gutenberg.org/ebooks/48445', 'it', 98), +(21479, 'It was a Lover and His Lass', 'Oliphant, Mrs. (Margaret)', '2015-08-04', 8, 'https://www.gutenberg.org/ebooks/49597', 'en', 5681), +(21480, 'A Laodicean : A Story of To-day', 'Hardy, Thomas', '2002-06-01', 57, 'https://www.gutenberg.org/ebooks/3258', 'en', 7790), +(21481, 'Matelda and the Cloister of Hellfde\nExtracts from the Book of Matilda of Magdeburg', 'Mechthild, of Magdeburg', '2011-04-09', 24, 'https://www.gutenberg.org/ebooks/35811', 'en', 9361), +(21482, 'The Mystery at Camp Lenape', 'Saxon, Carl', '2017-06-02', 5, 'https://www.gutenberg.org/ebooks/54826', 'en', 7327), +(21483, 'Du deutsches Kind! Eine Gabe für unsere Jugend', NULL, '2013-10-05', 5, 'https://www.gutenberg.org/ebooks/43891', 'de', 6086), +(21484, 'Droozle', 'Banta, Frank', '2007-10-22', 52, 'https://www.gutenberg.org/ebooks/23148', 'en', 179), +(21485, 'Frank Forester: A Story of the Dardanelles', 'Strang, Herbert', '2013-06-13', 11, 'https://www.gutenberg.org/ebooks/42943', 'en', 9362), +(21486, 'Select Conversations with an Uncle (Now Extinct) and Two Other Reminiscences', 'Wells, H. G. (Herbert George)', '2009-07-21', 24, 'https://www.gutenberg.org/ebooks/29472', 'en', 564), +(21487, 'Some Haunted Houses of England & Wales.', 'O\'Donnell, Elliott', '2016-03-26', 45, 'https://www.gutenberg.org/ebooks/51568', 'en', 9363), +(21488, 'The Story of Blue-Beard', 'Perrault, Charles', '2013-11-26', 65, 'https://www.gutenberg.org/ebooks/44288', 'en', 7476), +(21489, 'Punch, or the London Charivari, Volume 156, Jan. 1, 1919', 'Various', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/10964', 'en', 134), +(21490, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1585d', 'Motley, John Lothrop', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/4841', 'en', 3372), +(21491, 'The Star Lord', 'Ellanby, Boyd', '2010-05-02', 69, 'https://www.gutenberg.org/ebooks/32208', 'en', 26), +(21492, 'The Iron Ration: Three Years in Warring Central Europe', 'Schreiner, George Abel', '2012-08-30', 15, 'https://www.gutenberg.org/ebooks/40628', 'en', 9364), +(21493, 'The Old Testament in the Light of the Historical Records and Legends of Assyria and Babylonia', 'Pinches, Theophilus G. (Theophilus Goldridge)', '2012-01-31', 19, 'https://www.gutenberg.org/ebooks/38732', 'en', 9365), +(21494, 'Daybreak at Calamity Farm', 'Girard, Gilbert', '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10158', 'en', 190), +(21495, 'Walter Sherwood\'s Probation', 'Alger, Horatio, Jr.', '2004-06-01', 28, 'https://www.gutenberg.org/ebooks/5993', 'en', 9366), +(21496, 'Satyrische Abhandlung von den Krankheiten der Frauenspersonen, welche sie sich durch ihren Putz und Anzug zuziehen', 'Reinhard, Christian Tobias Ephraim', '2016-05-01', 13, 'https://www.gutenberg.org/ebooks/51930', 'de', 9367), +(21497, 'Die Armen: Ein Roman', 'Mann, Heinrich', '2014-09-28', 40, 'https://www.gutenberg.org/ebooks/46987', 'de', 9368), +(21498, 'China and the Chinese', 'Giles, Herbert Allen', '2006-11-07', 12, 'https://www.gutenberg.org/ebooks/19683', 'en', 3304), +(21499, 'A Text-book of Assaying: For the Use of Those Connected with Mines.', 'Beringer, C. (Cornelius)', '2006-07-03', 35, 'https://www.gutenberg.org/ebooks/18751', 'en', 9369), +(21500, 'Glaucus; Or, The Wonders of the Shore', 'Kingsley, Charles', '1996-10-01', 51, 'https://www.gutenberg.org/ebooks/695', 'en', 9370), +(21501, 'Esperanta sintakso\r\nLaŭ verkoj de S-ro D-ro Zamenhof kaj aliaj aŭtoroj', 'Fruictier, Paul', '2015-01-03', 16, 'https://www.gutenberg.org/ebooks/47855', 'eo', 2493), +(21502, 'Aesthetic as Science of Expression and General Linguistic', 'Croce, Benedetto', '2005-11-01', 39, 'https://www.gutenberg.org/ebooks/9306', 'en', 779), +(21503, 'Aurora Floyd, Vol. 2\r\nFifth Edition', 'Braddon, M. E. (Mary Elizabeth)', '2015-01-19', 24, 'https://www.gutenberg.org/ebooks/48021', 'en', 348), +(21504, 'Harper\'s Young People, June 29, 1880\nAn Illustrated Weekly', 'Various', '2009-05-31', 9, 'https://www.gutenberg.org/ebooks/29016', 'en', 479), +(21505, 'Howard Pyle\'s Book of Pirates\r\nFiction, Fact & Fancy Concerning the Buccaneers & Marooners of the Spanish Main', 'Pyle, Howard', '2008-10-10', 103, 'https://www.gutenberg.org/ebooks/26862', 'en', 3175), +(21506, 'The Negro and the elective franchise. A series of papers and a sermon', 'Hope, John', '2011-03-01', 4, 'https://www.gutenberg.org/ebooks/35449', 'en', 9371), +(21507, 'Un bel sogno', 'Cagna, Achille Giovanni', '2014-10-06', 23, 'https://www.gutenberg.org/ebooks/47069', 'it', 860), +(21508, 'Henrik Ibsen\nA Bibliography of Criticism and Biography with an Index to Characters', 'Firkins, Ina Ten Eyck', '2006-02-08', 15, 'https://www.gutenberg.org/ebooks/17719', 'en', 9372), +(21509, 'Rosemary in Search of a Father', 'Williamson, A. M. (Alice Muriel)', '2010-01-09', 15, 'https://www.gutenberg.org/ebooks/30907', 'en', 6336), +(21510, 'Beatrix', 'Balzac, Honoré de', '2004-06-01', 38, 'https://www.gutenberg.org/ebooks/1957', 'en', 58), +(21511, 'Sandra Belloni — Volume 7', 'Meredith, George', '2003-09-01', 20, 'https://www.gutenberg.org/ebooks/4419', 'en', 137), +(21512, 'Index of the Project Gutenberg Works of Aldous Huxley', 'Huxley, Aldous', '2019-04-25', 126, 'https://www.gutenberg.org/ebooks/59361', 'en', 198), +(21513, 'Nordmanna-Mystik: Bilder Från Nordens Forntid', 'Bååth, A. U. (Albert Ulrik)', '2016-08-12', 28, 'https://www.gutenberg.org/ebooks/52789', 'sv', 9373), +(21514, 'Speciation of the Wandering Shrew', 'Findley, James S. (James Smith)', '2011-12-20', 11, 'https://www.gutenberg.org/ebooks/38356', 'en', 9374), +(21515, 'Bamboo Tales', 'Reeves, Ira L. (Ira Louis)', '2008-02-27', 38, 'https://www.gutenberg.org/ebooks/24709', 'en', 7480), +(21516, 'Ennen Aatamia', 'London, Jack', '2018-01-07', 11, 'https://www.gutenberg.org/ebooks/56329', 'fi', 5072), +(21517, 'The Memories of Fifty Years\nContaining Brief Biographical Notices of Distinguished Americans, and Anecdotes of Remarkable Men; Interspersed with Scenes and Incidents Occurring during a Long Life of Observation Chiefly Spent in the Southwest', 'Sparks, W. H. (William Henry)', '2005-05-20', 16, 'https://www.gutenberg.org/ebooks/15872', 'en', 414), +(21518, 'Curiosities of Puritan Nomenclature', 'Bardsley, Charles Wareing Endell', '2012-03-28', 58, 'https://www.gutenberg.org/ebooks/39284', 'en', 9375), +(21519, 'A Watcher in The Woods', 'Sharp, Dallas Lore', '2012-09-22', 37, 'https://www.gutenberg.org/ebooks/40842', 'en', 1216), +(21520, 'Cardigan', 'Chambers, Robert W. (Robert William)', '2012-02-22', 78, 'https://www.gutenberg.org/ebooks/38958', 'en', 1293), +(21521, 'The French in Algiers\r\nThe Soldier of the Foreign Legion; and The Prisoners of Abd-el-Kader', 'Alby, Ernest', '2018-10-11', 31, 'https://www.gutenberg.org/ebooks/58081', 'en', 9376), +(21522, 'Leeni: Kertomus', 'Tihlä, Hilda', '2016-11-07', 5, 'https://www.gutenberg.org/ebooks/53469', 'fi', 175), +(21523, 'The Original Poems of Edward Edwin Foot, of Her Majesty\'s Customs, London', 'Foot, Edward Edwin', '2019-03-29', 12, 'https://www.gutenberg.org/ebooks/59153', 'en', 532), +(21524, 'The Curlytops and Their Pets; Or, Uncle Toby\'s Strange Collection', 'Garis, Howard Roger', '2007-04-12', 29, 'https://www.gutenberg.org/ebooks/21049', 'en', 9377), +(21525, 'The Cid Campeador: A Historical Romance', 'Trueba, Antonio de', '2013-02-03', 26, 'https://www.gutenberg.org/ebooks/41990', 'en', 9378), +(21526, 'The Spanish Armada, 1588\r\nThe Tapestry Hangings of the House of Lords Representing the Several Engagements Between the English and Spanish Fleets.', 'Pine, John', '2018-04-06', 13, 'https://www.gutenberg.org/ebooks/56927', 'en', 9379), +(21527, 'Homes of American Statesmen; With Anecdotical, Personal, and Descriptive Sketches', 'Various', '2011-11-02', 9, 'https://www.gutenberg.org/ebooks/37910', 'en', 414), +(21528, 'A Guide to the Best Historical Novels and Tales', 'Nield, Jonathan', '1998-06-01', 64, 'https://www.gutenberg.org/ebooks/1359', 'en', 9380), +(21529, 'English Book-Illustration of To-day\r\nAppreciations of the Work of Living English Illustrators, with Lists of Their Books', 'Sketchley, R. E. D. (Rose Esther Dorothea)', '2011-11-29', 23, 'https://www.gutenberg.org/ebooks/38164', 'en', 9381), +(21530, 'De schat in het Zilvermeer', 'May, Karl', '2007-06-20', 52, 'https://www.gutenberg.org/ebooks/21875', 'nl', 315), +(21531, 'The World\'s Greatest Books — Volume 09 — Lives and Letters', NULL, '2004-04-01', 202, 'https://www.gutenberg.org/ebooks/12059', 'en', 122), +(21532, 'Heart and Science: A Story of the Present Time', 'Collins, Wilkie', '2005-04-01', 35, 'https://www.gutenberg.org/ebooks/7892', 'en', 500), +(21533, 'Stand Fast, Craig-Royston! (Volume I)', 'Black, William', '2013-05-17', 8, 'https://www.gutenberg.org/ebooks/42729', 'en', 376), +(21534, 'How to Study', 'Swain, George Fillmore', '2009-10-21', 30, 'https://www.gutenberg.org/ebooks/30309', 'en', 9382), +(21535, 'Religious Studies, Sketches and Poems', 'Stowe, Harriet Beecher', '2015-02-09', 24, 'https://www.gutenberg.org/ebooks/48213', 'en', 655), +(21536, 'Raw Gold: A Novel', 'Sinclair, Bertrand W.', '2006-06-12', 20, 'https://www.gutenberg.org/ebooks/18563', 'en', 9383), +(21537, 'Old Mortality, Volume 2.', 'Scott, Walter', '2004-08-22', 15, 'https://www.gutenberg.org/ebooks/6940', 'en', 6486), +(21538, 'The Sayings of Confucius\nA New Translation of the Greater Part of the Confucian Analects', 'Confucius', '2014-07-24', 94, 'https://www.gutenberg.org/ebooks/46389', 'en', 1493), +(21539, 'Mattea', 'Sand, George', '2004-07-09', 25, 'https://www.gutenberg.org/ebooks/12865', 'fr', 298), +(21540, 'The Group\nA Farce', 'Warren, Mercy Otis', '2009-06-26', 27, 'https://www.gutenberg.org/ebooks/29224', 'en', 508), +(21541, 'The False Faces: Further Adventures from the History of the Lone Wolf', 'Vance, Louis Joseph', '2006-02-01', 34, 'https://www.gutenberg.org/ebooks/9908', 'en', 3657), +(21542, 'Poems', 'Shastid, Thomas Hall', '2016-07-10', 8, 'https://www.gutenberg.org/ebooks/52546', 'en', 9384), +(21543, 'Uncle Wiggily\'s Adventures', 'Garis, Howard Roger', '2005-03-07', 121, 'https://www.gutenberg.org/ebooks/15281', 'en', 625), +(21544, 'Histoire de France 1661-1690 (Volume 15/19)', 'Michelet, Jules', '2012-06-01', 18, 'https://www.gutenberg.org/ebooks/39877', 'fr', 624), +(21545, 'Degeneracy: Its Causes, Signs and Results', 'Talbot, Eugene S. (Eugene Solomon)', '2011-05-01', 45, 'https://www.gutenberg.org/ebooks/36003', 'en', 2187), +(21546, 'The Physiology of Marriage, Part 1', 'Balzac, Honoré de', '2005-07-04', 19, 'https://www.gutenberg.org/ebooks/5704', 'en', 2642), +(21547, 'The Englishwoman in Italy\r\nImpressions of life in the Roman states and Sardinia, during a ten years\' residence', 'Gretton, G., Mrs.', '2018-08-29', 10, 'https://www.gutenberg.org/ebooks/57808', 'en', 9385), +(21548, 'Kertomuksia', 'Heman, Gustaf Adolf', '2013-12-14', 6, 'https://www.gutenberg.org/ebooks/44423', 'fi', 61), +(21549, 'The Poems of Jonathan Swift, D.D., Volume 1', 'Swift, Jonathan', '2004-12-14', 50, 'https://www.gutenberg.org/ebooks/14353', 'en', 8), +(21550, 'New Edition of Hints on Silver-Glass Reflecting Telescopes Manufactured by Mr. G. Calver, F.R.A.S.\nwith Directions for Silvering, Adjusting, &c.', 'Calver, George', '2016-11-10', 7, 'https://www.gutenberg.org/ebooks/53494', 'en', 3147), +(21551, 'Lyyra ja paimenhuilu: Runosuomennoksia', NULL, '2006-12-23', 11, 'https://www.gutenberg.org/ebooks/20166', 'fi', 8), +(21552, 'Canoe Boys and Campfires; Or, Adventures on Winding Waters', 'Graydon, William Murray', '2007-06-21', 17, 'https://www.gutenberg.org/ebooks/21888', 'en', 153), +(21553, 'The Mystery of the Hidden Room', 'Harvey, Marion', '2012-10-23', 32, 'https://www.gutenberg.org/ebooks/41151', 'en', 128), +(21554, 'La mandragore', 'Lorrain, Jean', '2019-07-27', 531, 'https://www.gutenberg.org/ebooks/59992', 'fr', 259), +(21555, '列仙傳', 'Liu, Xiang', '2008-05-10', 24, 'https://www.gutenberg.org/ebooks/25414', 'zh', 9386), +(21556, 'Le Mauvais Génie', 'Ségur, Sophie, comtesse de', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11621', 'fr', 2118), +(21557, 'Captain Billy\'s Whiz Bang, Vol. II. No. 19, April, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2018-04-23', 13, 'https://www.gutenberg.org/ebooks/57034', 'en', 372), +(21558, 'The Green Fairy Book', NULL, '2010-08-29', 47, 'https://www.gutenberg.org/ebooks/33571', 'en', 1007), +(21559, 'Kenneth McAlpine: A Tale of Mountain, Moorland and Sea', 'Stables, Gordon', '2011-12-03', 4, 'https://www.gutenberg.org/ebooks/38199', 'en', 61), +(21560, 'Colour Decoration of Architecture', 'Ward, James', '2019-02-07', 63, 'https://www.gutenberg.org/ebooks/58840', 'en', 6162), +(21561, 'Mollie\'s Prince: A Novel', 'Carey, Rosa Nouchette', '2012-06-25', 18, 'https://www.gutenberg.org/ebooks/40083', 'en', 45), +(21562, 'Sport in Abyssinia; Or, The Mareb and Tackazzee', 'Mayo, Dermot Robert Wyndham Bourke, Earl of', '2013-08-31', 12, 'https://www.gutenberg.org/ebooks/43606', 'en', 9387), +(21563, 'Lizzie Leigh', 'Gaskell, Elizabeth Cleghorn', '2001-02-01', 37, 'https://www.gutenberg.org/ebooks/2521', 'en', 45), +(21564, 'Fireside Stories for Girls in Their Teens', 'Eggleston, Margaret W. (Margaret White)', '2008-11-27', 24, 'https://www.gutenberg.org/ebooks/27343', 'en', 179), +(21565, 'The Abolitionists\r\nTogether With Personal Memories Of The Struggle For Human Rights, 1830-1864', 'Hume, John F. (John Ferguson)', '2004-08-13', 43, 'https://www.gutenberg.org/ebooks/13176', 'en', 9388), +(21566, 'The Boy Fortune Hunters in the South Seas', 'Baum, L. Frank (Lyman Frank)', '2017-10-17', 38, 'https://www.gutenberg.org/ebooks/55763', 'en', 4321), +(21567, 'The War of the Worlds', 'Wells, H. G. (Herbert George)', '2008-08-01', 25, 'https://www.gutenberg.org/ebooks/26291', 'en', 1564), +(21568, 'Rulers of India: Albuquerque', 'Stephens, H. Morse (Henry Morse)', '2010-02-08', 35, 'https://www.gutenberg.org/ebooks/31226', 'en', 9389), +(21569, 'La chambre obscure', 'Hildebrand', '2015-10-14', 9, 'https://www.gutenberg.org/ebooks/50211', 'fr', 9390), +(21570, 'A Romany of the Snows, vol. 2\r\nBeing a Continuation of the Personal Histories of \"Pierre and His People\" and the Last Existing Records of Pretty Pierre', 'Parker, Gilbert', '2004-07-01', 11, 'https://www.gutenberg.org/ebooks/6181', 'en', 1887), +(21571, 'The Orpheus C. Kerr Papers, Series 2', 'Newell, R. H. (Robert Henry)', '2010-12-26', 4, 'https://www.gutenberg.org/ebooks/34754', 'en', 403), +(21572, 'Pages from a Journal with Other Papers', 'White, William Hale', '2004-12-01', 48, 'https://www.gutenberg.org/ebooks/7053', 'en', 472), +(21573, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 358, February 28, 1829', 'Various', '2004-07-12', 4, 'https://www.gutenberg.org/ebooks/12898', 'en', 133), +(21574, 'Mississippi Outlaws and the Detectives\nDon Pedro and the Detectives; Poisoner and the Detectives', 'Pinkerton, Allan', '2011-03-26', 21, 'https://www.gutenberg.org/ebooks/35686', 'en', 1833), +(21575, '\"Mr. Punch\'s\" Book of Arms', 'Reed, Edward Tennyson', '2014-07-22', 17, 'https://www.gutenberg.org/ebooks/46374', 'en', 2965), +(21576, 'Notes and Queries, Number 61, December 28, 1850', 'Various', '2005-07-31', 12, 'https://www.gutenberg.org/ebooks/16404', 'en', 105), +(21577, 'Weymouth New Testament in Modern Speech, Preface and Introductions', 'Weymouth, Richard Francis', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8827', 'en', 2781), +(21578, 'An Account of Timbuctoo and Housa Territories in the Interior of Africa', 'Shabeeny, Abd Salam, active 1820', '2007-09-16', 38, 'https://www.gutenberg.org/ebooks/22631', 'en', 9391), +(21579, '鬼谷四友志', 'Yang, Jingchang, active 18th century-19th century', '2008-11-06', 24, 'https://www.gutenberg.org/ebooks/27171', 'zh', 9392), +(21580, 'The Gutenberg Webster\'s Unabridged Dictionary: Section S', 'Webster, Noah', '1996-09-01', 70, 'https://www.gutenberg.org/ebooks/668', 'en', 1481), +(21581, 'The Rapin', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-04-03', 15, 'https://www.gutenberg.org/ebooks/54483', 'en', 560), +(21582, 'The Moral Picture Book', 'Anonymous', '2004-08-31', 16, 'https://www.gutenberg.org/ebooks/13344', 'en', 1817), +(21583, 'Harper\'s Young People, November 23, 1880\nAn Illustrated Monthly', 'Various', '2013-08-10', 7, 'https://www.gutenberg.org/ebooks/43434', 'en', 479), +(21584, 'The Works of Edward Bulwer-Lytton: A Linked Index to the Project Gutenberg Editions', 'Lytton, Edward Bulwer Lytton, Baron', '2009-05-21', 26, 'https://www.gutenberg.org/ebooks/28905', 'en', 198), +(21585, 'Maiwa\'s Revenge; Or, The War of the Little Hand', 'Haggard, H. Rider (Henry Rider)', '2006-03-31', 79, 'https://www.gutenberg.org/ebooks/2713', 'en', 2126), +(21586, 'Den Underbara Spegeln', 'Witt, Otto', '2010-01-18', 14, 'https://www.gutenberg.org/ebooks/31014', 'sv', 26), +(21587, 'The World English Bible (WEB): Exodus', 'Anonymous', '2005-06-01', 23, 'https://www.gutenberg.org/ebooks/8229', 'en', 9393), +(21588, 'Camps and Trails in China\nA Narrative of Exploration, Adventure, and Sport in Little-Known China', 'Andrews, Roy Chapman', '2004-05-01', 39, 'https://www.gutenberg.org/ebooks/12296', 'en', 9394), +(21589, 'The American Missionary — Volume 35, No. 6, June, 1881', 'Various', '2017-09-15', 1, 'https://www.gutenberg.org/ebooks/55551', 'en', 395), +(21590, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 695\nApril 21, 1877.', 'Various', '2014-10-11', 10, 'https://www.gutenberg.org/ebooks/47094', 'en', 18), +(21591, 'Reminiscences of Service with the First Volunteer Regiment of Georgia, Charleston Harbor, in 1863\r\nAn address delivered before the Georgia Historical Society, March 3, 1879', 'Olmstead, Charles H.', '2010-12-04', 11, 'https://www.gutenberg.org/ebooks/34566', 'en', 1489), +(21592, 'The Nursery, November 1877, Vol. XXII. No. 5\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 9, 'https://www.gutenberg.org/ebooks/28139', 'en', 4641), +(21593, 'The Economics of the Russian Village', 'Hourwich, Isaac A. (Isaac Aaronovich)', '2015-09-20', 8, 'https://www.gutenberg.org/ebooks/50023', 'en', 9395), +(21594, 'Makers of Madness\nA Play in One Act and Three Scenes', 'Hagedorn, Hermann', '2005-09-03', 26, 'https://www.gutenberg.org/ebooks/16636', 'en', 9396), +(21595, 'Vocal Expression: A Class-book of Voice Training and Interpretation', 'Everts, Katherine Jewell', '2010-03-30', 26, 'https://www.gutenberg.org/ebooks/31828', 'en', 3663), +(21596, 'Poems of Gerard Manley Hopkins\nNow First Published', 'Hopkins, Gerard Manley', '2007-08-26', 162, 'https://www.gutenberg.org/ebooks/22403', 'en', 8), +(21597, 'The Mentor: Makers of Modern Opera, Vol. 1, Num. 47, Serial No. 47', 'Krehbiel, Henry Edward', '2015-09-10', 10, 'https://www.gutenberg.org/ebooks/49932', 'en', 4183), +(21598, 'The Siksha-Patri of the Svami-Narayana Sect', NULL, '2005-01-01', 10, 'https://www.gutenberg.org/ebooks/7261', 'en', 9397), +(21599, 'The Riverpark Rebellion', 'Greene, Homer', '2014-06-30', 20, 'https://www.gutenberg.org/ebooks/46146', 'en', 1361), +(21600, 'L\'Abrandament', 'Soldevila, Carles', '2011-05-26', 12, 'https://www.gutenberg.org/ebooks/36231', 'ca', 61), +(21601, 'Mother West Wind \"How\" Stories', 'Burgess, Thornton W. (Thornton Waldo)', '2007-05-04', 55, 'https://www.gutenberg.org/ebooks/21286', 'en', 625), +(21602, 'Sevastopoli', 'Tolstoy, Leo, graf', '2016-08-11', 5, 'https://www.gutenberg.org/ebooks/52774', 'fi', 2558), +(21603, 'Koskenlaskijan morsian', 'Kataja, Väinö', '2004-11-26', 20, 'https://www.gutenberg.org/ebooks/14161', 'fi', 175), +(21604, 'Jack of Both Sides: The Story of a School War', 'Coombe, Florence', '2007-01-13', 24, 'https://www.gutenberg.org/ebooks/20354', 'en', 1779), +(21605, 'A Thorny Path — Volume 07', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5536', 'en', 803), +(21606, 'Polnische Gedichte', 'Leonhard, Rudolf', '2014-01-07', 7, 'https://www.gutenberg.org/ebooks/44611', 'de', 9398), +(21607, 'The Girl Scouts at Bellaire; Or, Maid Mary\'s Awakening', 'Garis, Lilian', '2008-05-27', 18, 'https://www.gutenberg.org/ebooks/25626', 'en', 82), +(21608, 'The Refugees\r\nA Tale of Two Continents', 'Doyle, Arthur Conan', '2004-03-01', 77, 'https://www.gutenberg.org/ebooks/11413', 'en', 98), +(21609, 'Salaperäinen saari: Seikkailukertomus', 'Verne, Jules', '2012-11-14', 10, 'https://www.gutenberg.org/ebooks/41363', 'fi', 323), +(21610, 'El Tresor del Vell Cavaller', 'Erckmann-Chatrian', '2010-06-04', 13, 'https://www.gutenberg.org/ebooks/32691', 'ca', 1811), +(21611, 'Mysterious Psychic Forces\r\nAn Account of the Author\'s Investigations in Psychical Research, Together with Those of Other European Savants', 'Flammarion, Camille', '2012-03-27', 31, 'https://www.gutenberg.org/ebooks/39279', 'en', 504), +(21612, 'The History and Antiquities of the Doric Race, Vol. 1 of 2', 'Müller, Karl Otfried', '2010-09-17', 25, 'https://www.gutenberg.org/ebooks/33743', 'en', 9399), +(21613, 'The Purse', 'Balzac, Honoré de', '2005-07-11', 46, 'https://www.gutenberg.org/ebooks/1196', 'en', 58), +(21614, 'Morocco, Its People and Places', 'De Amicis, Edmondo', '2018-05-25', 14, 'https://www.gutenberg.org/ebooks/57206', 'en', 6762), +(21615, 'John March, Southerner', 'Cable, George Washington', '2010-03-02', 12, 'https://www.gutenberg.org/ebooks/31470', 'en', 6156), +(21616, 'The Hyborian Age', 'Howard, Robert E. (Robert Ervin)', '2013-02-24', 192, 'https://www.gutenberg.org/ebooks/42182', 'en', 4698), +(21617, 'P\'tit-bonhomme', 'Verne, Jules', '2017-07-17', 29, 'https://www.gutenberg.org/ebooks/55135', 'fr', 6069), +(21618, 'State Trials, Political and Social. Volume 1 (of 2)', NULL, '2008-12-13', 29, 'https://www.gutenberg.org/ebooks/27515', 'en', 9400), +(21619, 'Mardi: and A Voyage Thither, Vol. I', 'Melville, Herman', '2004-10-12', 118, 'https://www.gutenberg.org/ebooks/13720', 'en', 323), +(21620, 'A New History of Blue Beard\r\nFor the Amusement of Little Lack Beard, and His Pretty Sisters', 'Gaffer Black Beard', '2013-06-28', 7, 'https://www.gutenberg.org/ebooks/43050', 'en', 9401), +(21621, 'Caleb in the Country', 'Abbott, Jacob', '2007-12-24', 34, 'https://www.gutenberg.org/ebooks/23989', 'en', 1123), +(21622, 'The Son of the Wolf', 'London, Jack', '2000-10-01', 78, 'https://www.gutenberg.org/ebooks/2377', 'en', 3036), +(21623, 'Stirring Incidents in the Life of a British Soldier: An Autobiography', 'Faughnan, Thomas, active 1835-1883', '2016-03-29', 15, 'https://www.gutenberg.org/ebooks/51595', 'en', 9402), +(21624, 'Jan: A Dog and a Romance', 'Dawson, A. J. (Alec John)', '2005-07-09', 27, 'https://www.gutenberg.org/ebooks/16252', 'en', 61), +(21625, 'The Story of a Cannoneer Under Stonewall Jackson\r\nIn Which is Told the Part Taken by the Rockbridge Artillery in the Army of Northern Virginia', 'Moore, Edward Alexander', '2007-07-13', 22, 'https://www.gutenberg.org/ebooks/22067', 'en', 9403), +(21626, 'The Caxtons: A Family Picture — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-22', 45, 'https://www.gutenberg.org/ebooks/7605', 'en', 376), +(21627, 'Kustaa II Aadolf ja hänen aikalaisensa II: Jumalan valittu sankari\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-11-08', 11, 'https://www.gutenberg.org/ebooks/55909', 'fi', 2168), +(21628, 'The Alden Catalogue of Choice Books, May 30, 1889', 'Alden, John B. (John Berry)', '2014-08-07', 13, 'https://www.gutenberg.org/ebooks/46522', 'en', 9404), +(21629, 'A Divided Heart and Other Stories', 'Heyse, Paul', '2010-10-19', 17, 'https://www.gutenberg.org/ebooks/34102', 'en', 803), +(21630, 'Palestiinassa\nMatkamuistelmia', 'Hildén, Kaarle August', '2005-12-23', 4, 'https://www.gutenberg.org/ebooks/17380', 'fi', 723), +(21631, 'Un tel de l\'armée française', 'Franconi, Gabriel Tristan', '2015-11-13', 10, 'https://www.gutenberg.org/ebooks/50447', 'fr', 335), +(21632, 'Elämäni', 'Päivärinta, Pietari', '2004-12-29', 22, 'https://www.gutenberg.org/ebooks/14505', 'fi', 9405), +(21633, 'For the Sake of the School', 'Brazil, Angela', '2007-03-03', 83, 'https://www.gutenberg.org/ebooks/20730', 'en', 3248), +(21634, 'One Thousand Questions in California Agriculture Answered', 'Wickson, Edward J. (Edward James)', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/5152', 'en', 9406), +(21635, 'Tales of Bengal', 'Banerjea, S. B.', '2004-02-01', 47, 'https://www.gutenberg.org/ebooks/10999', 'en', 9407), +(21636, 'Birds and Man', 'Hudson, W. H. (William Henry)', '2011-10-18', 88, 'https://www.gutenberg.org/ebooks/37787', 'en', 318), +(21637, 'Fru Marie Grubbe: Interieurer fra det syttende Aarhundrede', 'Jacobsen, J. P. (Jens Peter)', '2013-11-24', 17, 'https://www.gutenberg.org/ebooks/44275', 'da', 9408), +(21638, 'Gyges und sein Ring', 'Hebbel, Friedrich', '2003-05-01', 16, 'https://www.gutenberg.org/ebooks/4080', 'de', 9409), +(21639, 'Pleasure & Profit in Bible Study', 'Moody, Dwight Lyman', '2011-07-07', 17, 'https://www.gutenberg.org/ebooks/36655', 'en', 5113), +(21640, 'A Beacon for the Blind: Being a Life of Henry Fawcett, the Blind Postmaster-General', 'Holt, Winifred', '2016-06-12', 17, 'https://www.gutenberg.org/ebooks/52310', 'en', 9410), +(21641, 'Das Werk Heinrich Manns', 'Leonhard, Rudolf', '2010-08-02', 27, 'https://www.gutenberg.org/ebooks/33327', 'de', 9411), +(21642, 'It\'s Your Fairy Tale, You Know', 'Jackson, Elizabeth Rhodes', '2018-08-09', 27, 'https://www.gutenberg.org/ebooks/57662', 'en', 153), +(21643, 'Irmela\nEine Geschichte aus alter Zeit', 'Steinhausen, Heinrich', '2008-01-21', 8, 'https://www.gutenberg.org/ebooks/24390', 'de', 9412), +(21644, '野草', 'Lu, Xun', '2008-04-30', 25, 'https://www.gutenberg.org/ebooks/25242', 'zh', 4723), +(21645, 'Ebooks: Neither E, Nor Books\r\nPaper for the O\'Reilly Emerging Technologies Conference, 2004', 'Doctorow, Cory', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/11077', 'en', 2047), +(21646, 'The Development of Metaphysics in Persia\nA Contribution to the History of Muslim Philosophy', 'Iqbal, Muhammad, Sir', '2012-12-26', 33, 'https://www.gutenberg.org/ebooks/41707', 'en', 9413), +(21647, 'The Inside of the Cup — Volume 05', 'Churchill, Winston', '2004-10-17', 15, 'https://www.gutenberg.org/ebooks/5360', 'en', 4927), +(21648, 'Historisch dagverhaal der reize van den heer De Lesseps\r\nZedert het verlaten van den Heer Graaf de la Perouse en zyne togtgenooten in de haven van St. Pieter & Paulus op Kamchatka, enz.', 'Lesseps, Jean-Baptiste-Barthélemy, baron de', '2013-10-27', 6, 'https://www.gutenberg.org/ebooks/44047', 'nl', 9414), +(21649, 'Cicero: Letters to Atticus, Vol. 1 of 3', 'Cicero, Marcus Tullius', '2018-12-06', 73, 'https://www.gutenberg.org/ebooks/58418', 'en', 9415), +(21650, 'Lyyli: Viisinäytöksinen näytelmä', 'Willman, Elvira', '2005-01-19', 11, 'https://www.gutenberg.org/ebooks/14737', 'fi', 382), +(21651, 'Dixmude: The epic of the French marines (October 17-November 10, 1914)', 'Le Goffic, Charles', '2010-10-13', 35, 'https://www.gutenberg.org/ebooks/33929', 'en', 9416), +(21652, 'De Groote Pyramide', 'Ginkel, H. J. van', '2007-02-02', 3, 'https://www.gutenberg.org/ebooks/20502', 'nl', 746), +(21653, 'Hospital Transports\r\nA memoir of the Embarkation of the Sick and Wounded from the Peninsula of Virginia in the Summer of 1862', 'Olmsted, Frederick Law', '2016-05-22', 21, 'https://www.gutenberg.org/ebooks/52122', 'en', 9417), +(21654, 'The Bible for Young People', NULL, '2014-03-24', 27, 'https://www.gutenberg.org/ebooks/45195', 'en', 4241), +(21655, 'A Butterfly on the Wheel: A Novel', 'Thorne, Guy', '2011-06-19', 10, 'https://www.gutenberg.org/ebooks/36467', 'en', 61), +(21656, 'Cassell\'s Book of Birds, Volume 2 (of 4)', 'Brehm, Alfred Edmund', '2018-07-05', 26, 'https://www.gutenberg.org/ebooks/57450', 'en', 318), +(21657, 'Affairs of State\r\nBeing an Account of Certain Surprising Adventures Which Befell an American Family in the Land of Windmills', 'Stevenson, Burton Egbert', '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/10397', 'en', 9418), +(21658, 'Harper\'s Round Table, August 20, 1895', 'Various', '2010-07-08', 9, 'https://www.gutenberg.org/ebooks/33115', 'en', 668), +(21659, 'Pistol and Revolver Shooting', 'Himmelwright, A. L. A. (Abraham Lincoln Artman)', '2012-12-01', 20, 'https://www.gutenberg.org/ebooks/41535', 'en', 9419), +(21660, 'Mr. Opp', 'Rice, Alice Caldwell Hegan', '2008-04-14', 17, 'https://www.gutenberg.org/ebooks/25070', 'en', 2024), +(21661, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 393, October 10, 1829', 'Various', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/11245', 'en', 133), +(21662, 'The Gentle Persuasion: Sketches of Scottish Life', 'Gray, Alan', '2018-02-17', 12, 'https://www.gutenberg.org/ebooks/56582', 'en', 3518), +(21663, 'Irish Plays and Playwrights', 'Weygandt, Cornelius', '2006-08-11', 27, 'https://www.gutenberg.org/ebooks/19028', 'en', 9420), +(21664, 'The Black Monk, and Other Stories', 'Chekhov, Anton Pavlovich', '2017-08-08', 105, 'https://www.gutenberg.org/ebooks/55307', 'en', 85), +(21665, 'Eyes Like the Sea: A Novel', 'Jókai, Mór', '2010-03-14', 22, 'https://www.gutenberg.org/ebooks/31642', 'en', 109), +(21666, 'The Wanderer\'s Necklace', 'Haggard, H. Rider (Henry Rider)', '2006-04-06', 73, 'https://www.gutenberg.org/ebooks/3097', 'en', 8208), +(21667, 'Etelämeren seikkailuja', 'London, Jack', '2015-08-22', 12, 'https://www.gutenberg.org/ebooks/49758', 'fi', 179), +(21668, 'The Broken Font: A Story of the Civil War, Vol. 2 (of 2)', 'Sherer, Moyle', '2013-07-20', 8, 'https://www.gutenberg.org/ebooks/43262', 'en', 4665), +(21669, 'Kuningas Richard Toinen', 'Shakespeare, William', '2009-12-28', 15, 'https://www.gutenberg.org/ebooks/30790', 'fi', 4726), +(21670, 'Ben-Hur: A tale of the Christ', 'Wallace, Lew', '2000-04-01', 390, 'https://www.gutenberg.org/ebooks/2145', 'en', 9421), +(21671, 'Within the Golden Gate\r\nA Souvenir of San Francisco Bay', 'Pinney, Laura Ann Young', '2009-01-07', 7, 'https://www.gutenberg.org/ebooks/27727', 'en', 9422), +(21672, 'Three Voyages for the Discovery of a Northwest Passage from the Atlantic to the Pacific, and Narrative of an Attempt to Reach the North Pole, Volume 1', 'Parry, William Edward, Sir', '2004-09-22', 14, 'https://www.gutenberg.org/ebooks/13512', 'en', 9423), +(21673, 'A Peep Behind the Scenes', 'Walton, O. F., Mrs.', '2005-02-01', 48, 'https://www.gutenberg.org/ebooks/7437', 'en', 4738), +(21674, 'Three years in France with the Guns: Being Episodes in the life of a Field Battery', 'Rose, C. A.', '2006-11-14', 36, 'https://www.gutenberg.org/ebooks/19814', 'en', 3601), +(21675, 'Appletons\' Popular Science Monthly, October 1899\nVol. LV, May to October, 1899', 'Various', '2014-08-28', 7, 'https://www.gutenberg.org/ebooks/46710', 'en', 210), +(21676, 'The American Missionary — Volume 45, No. 02, February, 1891', 'Various', '2005-06-14', 18, 'https://www.gutenberg.org/ebooks/16060', 'en', 562), +(21677, 'The Counts of Gruyère', 'De Koven, Anna', '2007-08-06', 24, 'https://www.gutenberg.org/ebooks/22255', 'en', 9424), +(21678, 'Washed Ashore; Or, The Tower of Stormount Bay', 'Kingston, William Henry Giles', '2007-11-06', 26, 'https://www.gutenberg.org/ebooks/23387', 'en', 31), +(21679, 'Geschiedenis van een Neger\nZyn Reize met de Heer N.... van Surinamen naar Holland.... enz.', 'Anonymous', '2015-12-12', 21, 'https://www.gutenberg.org/ebooks/50675', 'nl', 2909), +(21680, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 29: Florence to Trieste', 'Casanova, Giacomo', '2004-12-12', 17, 'https://www.gutenberg.org/ebooks/2979', 'en', 4391), +(21681, 'Vittoria Accoramboni', 'Stendhal', '1997-02-01', 38, 'https://www.gutenberg.org/ebooks/802', 'fr', 16), +(21682, 'Gossip', 'Gould, Mona', '2010-11-15', 7, 'https://www.gutenberg.org/ebooks/34330', 'en', 28), +(21683, 'The Man That Corrupted Hadleyburg, and Other Stories', 'Twain, Mark', '2004-09-20', 155, 'https://www.gutenberg.org/ebooks/3251', 'en', 179), +(21684, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 08', 'Stevenson, Robert Louis', '2010-03-03', 27, 'https://www.gutenberg.org/ebooks/31484', 'en', 1080), +(21685, 'Long Will', 'Converse, Florence', '2013-02-25', 26, 'https://www.gutenberg.org/ebooks/42176', 'en', 9425), +(21686, 'The Great Speeches and Orations of Daniel Webster\r\nWith an Essay on Daniel Webster as a Master of English Style', 'Webster, Daniel', '2004-06-01', 31, 'https://www.gutenberg.org/ebooks/12606', 'en', 429), +(21687, 'Doors of the Night', 'Packard, Frank L. (Frank Lucius)', '2011-04-10', 62, 'https://www.gutenberg.org/ebooks/35818', 'en', 167), +(21688, 'Blackwood\'s Edinburgh Magazine, Volume 62, Number 385. November, 1847.', 'Various', '2008-08-25', 9, 'https://www.gutenberg.org/ebooks/26433', 'en', 711), +(21689, 'Satuja', 'Strindberg, August', '2017-01-22', 21, 'https://www.gutenberg.org/ebooks/54013', 'fi', 4836), +(21690, 'The Canterbury Tales, and Other Poems', 'Chaucer, Geoffrey', '2000-11-01', 1294, 'https://www.gutenberg.org/ebooks/2383', 'en', 9426), +(21691, 'Sleep Walking and Moon Walking: A Medico-Literary Study', 'Sadger, J.', '2009-11-28', 19, 'https://www.gutenberg.org/ebooks/30556', 'en', 9427), +(21692, 'Puritanism and Liberty (1603-1660)\nThird Edition', NULL, '2016-03-26', 11, 'https://www.gutenberg.org/ebooks/51561', 'en', 9428), +(21693, 'The Sagas of Olaf Tryggvason and of Harald The Tyrant (Harald Haardraade)', 'Snorri Sturluson', '2007-07-17', 64, 'https://www.gutenberg.org/ebooks/22093', 'en', 9429), +(21694, 'Development of Gravity Pendulums in the 19th Century\nContributions from the Museum of History and Technology, Papers 34-44 On Science and Technology, Smithsonian Institution, 1966', 'Multhauf, Robert P.', '2011-01-21', 6, 'https://www.gutenberg.org/ebooks/35024', 'en', 9430), +(21695, 'Le collier des jours: Le troisième rang du collier', 'Gautier, Judith', '2014-11-20', 8, 'https://www.gutenberg.org/ebooks/47404', 'fr', 1464), +(21696, 'Prinz Friedrich von Homburg', 'Kleist, Heinrich von', '2004-10-01', 63, 'https://www.gutenberg.org/ebooks/6723', 'de', 9431), +(21697, 'Florence Nightingale, the Angel of the Crimea: A Story for Young People', 'Richards, Laura Elizabeth Howe', '2013-10-05', 17, 'https://www.gutenberg.org/ebooks/43898', 'en', 9432), +(21698, 'The Island Treasure', 'Hutcheson, John C. (John Conroy)', '2007-10-21', 12, 'https://www.gutenberg.org/ebooks/23141', 'en', 324), +(21699, 'Bank of the Manhattan Company, Chartered 1799: A Progressive Commercial Bank', 'Anonymous', '2005-12-22', 22, 'https://www.gutenberg.org/ebooks/17374', 'en', 9433), +(21700, 'A Thanksgiving Dream: A One Act Play for Primary Children', 'Preston, Effa E. (Effa Estelle)', '2016-10-09', 10, 'https://www.gutenberg.org/ebooks/53236', 'en', 364), +(21701, 'A Memoir of Sir Edmund Andros, Knt.,\nGovernor of New England, New York and Virginia, &c., &c.', 'Whitmore, William Henry', '2011-10-17', 9, 'https://www.gutenberg.org/ebooks/37773', 'en', 9434), +(21702, 'Recollections of the War of 1812', 'Dunlop, William', '2013-11-25', 9, 'https://www.gutenberg.org/ebooks/44281', 'en', 4776), +(21703, 'A History of American Literature', 'Boynton, Percy Holmes', '2014-04-09', 29, 'https://www.gutenberg.org/ebooks/45353', 'en', 3043), +(21704, 'Swallow: A Tale of the Great Trek', 'Haggard, H. Rider (Henry Rider)', '2006-04-13', 67, 'https://www.gutenberg.org/ebooks/4074', 'en', 1226), +(21705, 'The Ape, the Idiot & Other People', 'Morrow, W. C.', '2007-05-26', 29, 'https://www.gutenberg.org/ebooks/21616', 'en', 50), +(21706, 'Samuel Cröell\nNäytelmä neljässä näytöksessä', 'Järnefelt, Arvid', '2005-03-21', 4, 'https://www.gutenberg.org/ebooks/15423', 'fi', 247), +(21707, 'The Rape of Lucrece', 'Shakespeare, William', '1998-10-01', 13, 'https://www.gutenberg.org/ebooks/1506', 'en', 8), +(21708, 'Little Tony of Italy', 'Brandeis, Madeline', '2012-08-30', 5, 'https://www.gutenberg.org/ebooks/40621', 'en', 4426), +(21709, 'The Great Events by Famous Historians, Volume 05\r\n(From Charlemagne to Frederick Barbarossa)', NULL, '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10151', 'en', 346), +(21710, 'Index of the Project Gutenberg Works of Charles A. Eastman', 'Eastman, Charles Alexander', '2018-08-14', 9, 'https://www.gutenberg.org/ebooks/57696', 'en', 198), +(21711, 'The Defeat of Youth, and Other Poems', 'Huxley, Aldous', '2008-01-20', 60, 'https://www.gutenberg.org/ebooks/24364', 'en', 54), +(21712, 'Puer romanus', 'Jones, W. H. S. (William Henry Samuel)', '2018-03-15', 132, 'https://www.gutenberg.org/ebooks/56744', 'la', 3450), +(21713, 'The Parables of the Saviour\nThe Good Child\'s Library, Tenth Book', 'Anonymous', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11083', 'en', 9435), +(21714, 'History of the United Netherlands, 1586c', 'Motley, John Lothrop', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/4848', 'en', 3372), +(21715, 'Geologische Beobachtungen über die Vulcanischen Inseln\r\nMit kurzen Bemerkungen über die Geologie von Australien und dem Cap der guten Hoffnung', 'Darwin, Charles', '2010-05-01', 36, 'https://www.gutenberg.org/ebooks/32201', 'de', 9436), +(21716, 'Sinivuokkoja Suomen salomailta', 'Tanner, Nestor', '2011-09-26', 6, 'https://www.gutenberg.org/ebooks/37541', 'fi', 433), +(21717, 'The Crisis — Volume 07', 'Churchill, Winston', '2004-10-19', 12, 'https://www.gutenberg.org/ebooks/5394', 'en', 403), +(21718, 'Studies on Homer and the Homeric Age, Vol. 3 of 3\r\nI. Agorè: Polities of the Homeric Age. II. Ilios: Trojans and Greeks Compared. III. Thalassa: The Outer Geography. IV. Aoidos: Some Points of the Poetry of Homer.', 'Gladstone, W. E. (William Ewart)', '2016-09-07', 19, 'https://www.gutenberg.org/ebooks/53004', 'en', 6031), +(21719, 'Il Comento alla Divina Commedia, e gli altri scritti intorno a Dante, vol. 1', 'Boccaccio, Giovanni', '2007-05-12', 58, 'https://www.gutenberg.org/ebooks/21424', 'it', 3406), +(21720, 'Auringon noustessa\nKasvavalle nuorisolle', 'Roschier, Tekla', '2005-04-13', 3, 'https://www.gutenberg.org/ebooks/15611', 'fi', 61), +(21721, 'Aavoilla ulapoilla', 'London, Jack', '2014-03-17', 12, 'https://www.gutenberg.org/ebooks/45161', 'fi', 998), +(21722, 'Owen\'s Fortune; Or, \"Durable Riches\"', 'West, Frederic, Mrs.', '2011-06-22', 22, 'https://www.gutenberg.org/ebooks/36493', 'en', 751), +(21723, 'Beulah', 'Evans, Augusta J. (Augusta Jane)', '2003-07-01', 19, 'https://www.gutenberg.org/ebooks/4246', 'en', 3994), +(21724, 'The Bravo: A Tale', 'Cooper, James Fenimore', '2003-12-01', 36, 'https://www.gutenberg.org/ebooks/10363', 'en', 2295), +(21725, '中國十大禁書之國色天香', 'Wu, Jingsuo, active 16th century', '2008-01-04', 470, 'https://www.gutenberg.org/ebooks/24156', 'zh', 8323), +(21726, 'The Secret Places of the Heart', 'Wells, H. G. (Herbert George)', '2006-02-22', 46, 'https://www.gutenberg.org/ebooks/1734', 'en', 1061), +(21727, 'La Giovine Italia', 'Mazzini, Giuseppe', '2012-01-06', 22, 'https://www.gutenberg.org/ebooks/38509', 'it', 999), +(21728, 'Virginia of Virginia: A Story', 'Rives, Amélie', '2016-12-30', 7, 'https://www.gutenberg.org/ebooks/53838', 'en', 4850), +(21729, 'Voyages loin de ma chambre t.1', 'Dondel Du Faouëdic, Noémie', '2012-08-04', 10, 'https://www.gutenberg.org/ebooks/40413', 'fr', 885), +(21730, 'Vivisection', 'Leffingwell, Albert', '2010-04-17', 4, 'https://www.gutenberg.org/ebooks/32033', 'en', 5852), +(21731, 'Bell\'s Cathedrals: The Cathedral Church of Rochester\nA Description of its Fabric and a Brief History of the Episcopal See', 'Palmer, G. H. (George Henry)', '2008-04-17', 18, 'https://www.gutenberg.org/ebooks/25084', 'en', 9437), +(21732, 'Legends of Fire Island Beach and the South Side', 'Shaw, Edward R. (Edward Richard)', '2018-02-17', 16, 'https://www.gutenberg.org/ebooks/56576', 'en', 9438), +(21733, 'Twelve Studies on the Making of a Nation: The Beginnings of Israel\'s History', 'Kent, Charles Foster', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/12434', 'en', 5932), +(21734, 'Gambia', 'Melville, Frederick John', '2008-09-12', 24, 'https://www.gutenberg.org/ebooks/26601', 'en', 9439), +(21735, 'Römische Geschichte — Band 4', 'Mommsen, Theodor', '2002-02-01', 32, 'https://www.gutenberg.org/ebooks/3063', 'de', 6793), +(21736, 'My Airships; The Story of My Life', 'Santos-Dumont, Alberto', '2013-03-16', 10, 'https://www.gutenberg.org/ebooks/42344', 'en', 9440), +(21737, 'A History of the Inquisition of Spain; vol. 1', 'Lea, Henry Charles', '2013-07-24', 31, 'https://www.gutenberg.org/ebooks/43296', 'en', 4232), +(21738, 'The Ride to the Lady, and Other Poems', 'Cone, Helen Gray', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9559', 'en', 178), +(21739, 'Ham Sandwich', 'Schmitz, James H.', '2009-12-26', 56, 'https://www.gutenberg.org/ebooks/30764', 'en', 784), +(21740, 'Index of the Project Gutenberg Works of Michel De Montaigne', 'Montaigne, Michel de', '2019-07-12', 53, 'https://www.gutenberg.org/ebooks/60014', 'en', 198); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(21741, 'Induction Coils, How to Make, Use, and Repair Them.\r\nIncluding Ruhmkorff, Tesla, and Medical Coils, Roentgen Radiography, Etc. Etc.', 'Norrie, H. S.', '2017-02-22', 60, 'https://www.gutenberg.org/ebooks/54221', 'en', 9441), +(21742, 'Historic Handbook of the Northern Tour\r\nLakes George and Champlain; Niagara; Montreal; Quebec', 'Parkman, Francis', '2011-02-08', 33, 'https://www.gutenberg.org/ebooks/35216', 'en', 9442), +(21743, 'For Woman\'s Love', 'Southworth, Emma Dorothy Eliza Nevitte', '2005-06-20', 27, 'https://www.gutenberg.org/ebooks/16094', 'en', 61), +(21744, 'Toen de duisternis dreigde...', 'Flier, A. van der (Alida)', '2016-04-13', 6, 'https://www.gutenberg.org/ebooks/51753', 'nl', 98), +(21745, 'The Serpent Knight, and Other Ballads', 'Borrow, George', '2009-08-09', 7, 'https://www.gutenberg.org/ebooks/29649', 'en', 4390), +(21746, 'The Eagle Cliff', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 42, 'https://www.gutenberg.org/ebooks/23373', 'en', 1120), +(21747, 'Deutsche Humoristen, 6. Band (von 8)\r\nHumoristische Erzählungen', 'Thoma, Ludwig', '2015-12-13', 66, 'https://www.gutenberg.org/ebooks/50681', 'de', 543), +(21748, 'Diddie, Dumps & Tot; or, Plantation child-life', 'Pyrnelle, Louise Clarke', '2005-11-24', 9, 'https://www.gutenberg.org/ebooks/17146', 'en', 8998), +(21749, 'Birds and Nature Vol. 09 No. 5 [May 1901]\r\nIllustrated by Color Photography', 'Various', '2014-12-12', 9, 'https://www.gutenberg.org/ebooks/47636', 'en', 490), +(21750, 'Mental Defectives and Sexual Offenders\r\nReport of the Committee of Inquiry Appointed by the Hon. Sir Maui Pomare, K.B.E., C.M.G., Minister of Health', 'New Zealand. Committee of Inquiry into Mental Defectives and Sexual Offenders', '2006-07-29', 41, 'https://www.gutenberg.org/ebooks/18932', 'en', 9443), +(21751, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 5, St. Paul', 'Wake, William', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6511', 'en', 7966), +(21752, 'Brazilian Tales', 'Dolores, Carmen', '2007-04-12', 54, 'https://www.gutenberg.org/ebooks/21040', 'en', 9444), +(21753, 'Notes and Queries, Number 220, January 14, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 9, 'https://www.gutenberg.org/ebooks/41999', 'en', 105), +(21754, 'Alsace-Lorraine\r\nA Study of the Relations of the Two Provinces to France and to Germany and a Presentation of the Just Claims of Their People', 'Blumenthal, Daniel', '2012-06-02', 13, 'https://www.gutenberg.org/ebooks/39883', 'en', 9445), +(21755, 'Bessie\'s Fortune: A Novel', 'Holmes, Mary Jane', '2005-03-07', 39, 'https://www.gutenberg.org/ebooks/15275', 'en', 61), +(21756, 'The Mission to Siam, and Hué, the Capital of Cochin China, in the Years 1821-2', 'Finlayson, George', '2014-04-27', 24, 'https://www.gutenberg.org/ebooks/45505', 'en', 9446), +(21757, 'Trials and Confessions of a Housekeeper', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/4622', 'en', 9447), +(21758, 'Punch, or the London Charivari, Vol. 93, October 29, 1887', 'Various', '2011-08-18', 1, 'https://www.gutenberg.org/ebooks/37125', 'en', 134), +(21759, 'Dick Hamilton\'s Steam Yacht; Or, A Young Millionaire and the Kidnappers', 'Garis, Howard Roger', '2016-11-06', 15, 'https://www.gutenberg.org/ebooks/53460', 'en', 9448), +(21760, 'The Curiosities of Heraldry', 'Lower, Mark Antony', '2012-02-22', 19, 'https://www.gutenberg.org/ebooks/38951', 'en', 9449), +(21761, 'Les trois pirates (1/2)', 'Corbière, Edouard', '2018-10-13', 10, 'https://www.gutenberg.org/ebooks/58088', 'fr', 3828), +(21762, 'Orrain: A Romance', 'Levett Yeats, S. (Sidney)', '2006-12-26', 16, 'https://www.gutenberg.org/ebooks/20192', 'en', 9450), +(21763, 'Pioneer', 'Hardy, William', '2010-05-20', 23, 'https://www.gutenberg.org/ebooks/32457', 'en', 616), +(21764, 'The Old Printer and the Modern Press', 'Knight, Charles', '2019-07-22', 764, 'https://www.gutenberg.org/ebooks/59966', 'en', 9451), +(21765, 'The Man Behind the Bars', 'Taylor, Winifred Louise', '2017-12-03', 7, 'https://www.gutenberg.org/ebooks/56112', 'en', 7066), +(21766, 'A Christmas Mystery: The Story of Three Wise Men', 'Locke, William John', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/10707', 'en', 585), +(21767, 'In Accordance with the Evidence', 'Onions, Oliver', '2011-11-04', 35, 'https://www.gutenberg.org/ebooks/37919', 'en', 61), +(21768, 'Journeys Through Bookland, Vol. 8', 'Sylvester, Charles Herbert', '2008-02-06', 25, 'https://www.gutenberg.org/ebooks/24532', 'en', 1063), +(21769, 'The Country Doctor', 'Balzac, Honoré de', '2004-07-06', 48, 'https://www.gutenberg.org/ebooks/1350', 'en', 2221), +(21770, 'Reply of the Philadelphia Brigade Association to the Foolish and Absurd Narrative of Lieutenant Frank A. Haskell', 'Philadelphia Brigade Association', '2010-08-30', 4, 'https://www.gutenberg.org/ebooks/33585', 'en', 9452), +(21771, 'The Principles of Economics, with Applications to Practical Problems', 'Fetter, Frank A. (Frank Albert)', '2012-06-24', 48, 'https://www.gutenberg.org/ebooks/40077', 'en', 1745), +(21772, 'Orphans of the Storm', 'MacMahon, Henry', '2009-10-20', 12, 'https://www.gutenberg.org/ebooks/30300', 'en', 248), +(21773, 'Prefaces and Prologues to Famous Books\nwith Introductions, Notes and Illustrations', NULL, '2004-08-15', 121, 'https://www.gutenberg.org/ebooks/13182', 'en', 8416), +(21774, 'The True Ministers of Christ Accredited by the Holy Spirit: A Sermon', 'Gell, Philip', '2017-05-02', 11, 'https://www.gutenberg.org/ebooks/54645', 'en', 9453), +(21775, 'Fiat Money Inflation in France: How it Came, What it Brought, and How it Ended', 'White, Andrew Dickson', '2004-11-01', 60, 'https://www.gutenberg.org/ebooks/6949', 'en', 9454), +(21776, 'Memorial de Ayres', 'Machado de Assis', '2017-10-23', 30, 'https://www.gutenberg.org/ebooks/55797', 'pt', 987), +(21777, 'The Works of Samuel Johnson, LL.D. in Nine Volumes, Volume 04\r\nThe Adventurer; The Idler', 'Johnson, Samuel', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/12050', 'en', 5416), +(21778, 'Rilla of Ingleside', 'Montgomery, L. M. (Lucy Maud)', '2008-08-01', 8, 'https://www.gutenberg.org/ebooks/26265', 'en', 9455), +(21779, 'The Spell of Egypt', 'Hichens, Robert', '2006-04-06', 44, 'https://www.gutenberg.org/ebooks/3407', 'en', 2589), +(21780, 'Speciation in the Brazilian Spiny Rats', 'Moojen, João', '2013-05-16', 1, 'https://www.gutenberg.org/ebooks/42720', 'en', 9456), +(21781, 'Jabberwocky', 'Carroll, Lewis', '2007-12-01', 52, 'https://www.gutenberg.org/ebooks/23717', 'en', 2981), +(21782, 'Grace Harlowe\'s Return to Overton Campus', 'Chase, Josephine', '2006-02-01', 43, 'https://www.gutenberg.org/ebooks/9901', 'en', 51), +(21783, 'Practical Essays', 'Bain, Alexander', '2006-01-23', 17, 'https://www.gutenberg.org/ebooks/17522', 'en', 20), +(21784, 'Mother Earth\'s Children: The Frolics of the Fruits and Vegetables', 'Gordon, Elizabeth', '2014-10-31', 12, 'https://www.gutenberg.org/ebooks/47252', 'en', 1209), +(21785, 'Pierre and His People: Tales of the Far North. Volume 2.', 'Parker, Gilbert', '2004-07-01', 8, 'https://www.gutenberg.org/ebooks/6175', 'en', 2261), +(21786, '\'Gloria Victis!\' A Romance', 'Schubin, Ossip', '2011-03-24', 15, 'https://www.gutenberg.org/ebooks/35672', 'en', 1949), +(21787, 'Vanishing Landmarks: The Trend Toward Bolshevism', 'Shaw, Leslie M. (Leslie Mortier)', '2014-07-23', 9, 'https://www.gutenberg.org/ebooks/46380', 'en', 9457), +(21788, 'The Man Outside', 'Smith, Evelyn E.', '2016-03-01', 30, 'https://www.gutenberg.org/ebooks/51337', 'en', 2229), +(21789, '宛如約', 'Xihuazhuren', '2008-11-07', 16, 'https://www.gutenberg.org/ebooks/27185', 'zh', NULL), +(21790, 'The Story of Live Dolls', 'Gates, Josephine Scribner', '2017-04-02', 20, 'https://www.gutenberg.org/ebooks/54477', 'en', 1817), +(21791, 'By Berwen Banks', 'Raine, Allen', '2006-07-04', 15, 'https://www.gutenberg.org/ebooks/18758', 'en', 7828), +(21792, 'The Metaphysic of Christianity and Buddhism: A Symphony', 'Strong, D. M. (Dawsonne Melanchthon)', '2015-01-19', 46, 'https://www.gutenberg.org/ebooks/48028', 'en', 2566), +(21793, 'The Canon of the Bible', 'Davidson, Samuel', '2009-09-29', 12, 'https://www.gutenberg.org/ebooks/30132', 'en', 9458), +(21794, 'Mother: A Story', 'Norris, Kathleen Thompson', '2003-01-01', 36, 'https://www.gutenberg.org/ebooks/3635', 'en', 9459), +(21795, 'From Now On', 'Packard, Frank L. (Frank Lucius)', '2016-05-02', 47, 'https://www.gutenberg.org/ebooks/51939', 'en', 177), +(21796, 'Θάνατος Παλληκαριού', 'Palamas, Kostes', '2013-04-12', 11, 'https://www.gutenberg.org/ebooks/42512', 'el', 1348), +(21797, 'Le carnet de Robespierre (septembre-décembre 1793)', 'Robespierre, Maximilien', '2009-08-28', 16, 'https://www.gutenberg.org/ebooks/29823', 'fr', 9253), +(21798, 'Punch, or the London Charivari, Volume 99, September 27, 1890', 'Various', '2004-05-01', 4, 'https://www.gutenberg.org/ebooks/12262', 'en', 134), +(21799, 'Marjorie', 'McCarthy, Justin H. (Justin Huntly)', '2008-07-16', 27, 'https://www.gutenberg.org/ebooks/26057', 'en', 9460), +(21800, 'Years of My Youth', 'Howells, William Dean', '2014-10-05', 27, 'https://www.gutenberg.org/ebooks/47060', 'en', 9461), +(21801, 'Behind the Green Door', 'Wirt, Mildred A. (Mildred Augustine)', '2010-12-07', 66, 'https://www.gutenberg.org/ebooks/34592', 'en', 9462), +(21802, 'Hobson\'s Choice: A Lancashire Comedy in Four Acts', 'Brighouse, Harold', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6347', 'en', 317), +(21803, 'As Saudades do Bardo Orthodoxo', 'Coutinho, Henrique Ernesto de Almeida', '2007-11-17', 11, 'https://www.gutenberg.org/ebooks/23525', 'pt', 8), +(21804, '\"Suurlakkokuvia\" y.m. työväenlauluja', 'Kaatra, Kössi', '2015-04-27', 9, 'https://www.gutenberg.org/ebooks/48814', 'fi', 1171), +(21805, 'The Devil\'s Own: A Romance of the Black Hawk War', 'Parrish, Randall', '2006-02-07', 23, 'https://www.gutenberg.org/ebooks/17710', 'en', 9463), +(21806, 'My Memoirs, Vol. VI, 1832 to 1833', 'Dumas, Alexandre', '2016-02-02', 15, 'https://www.gutenberg.org/ebooks/51105', 'en', 9464), +(21807, 'A Little Book of Profitable Tales', 'Field, Eugene', '2011-03-01', 17, 'https://www.gutenberg.org/ebooks/35440', 'en', 1028), +(21808, 'A Woman\'s Life-Work — Labors and Experiences of Laura S. Haviland', 'Haviland, Laura S. (Laura Smith)', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7295', 'en', 9465), +(21809, 'A Popular Handbook to the National Gallery, Volume I, Foreign Schools\r\nIncluding by Special Permission Notes Collected from the Works of John Ruskin', NULL, '2014-05-24', 14, 'https://www.gutenberg.org/ebooks/45737', 'en', 9466), +(21810, 'The Ordeal of Richard Feverel — Volume 5', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4410', 'en', 95), +(21811, 'The Bibliotaph, and Other People', 'Vincent, Leon H. (Leon Henry)', '2007-05-02', 15, 'https://www.gutenberg.org/ebooks/21272', 'en', 9467), +(21812, 'Bases da ortografia portuguesa', 'Abreu, Guilherme Augusto de Vasconcelos', '2005-02-14', 50, 'https://www.gutenberg.org/ebooks/15047', 'pt', 4370), +(21813, 'Sagor af Z. Topelius.', 'Topelius, Zacharias', '2016-08-11', 11, 'https://www.gutenberg.org/ebooks/52780', 'sv', 388), +(21814, 'Juvenile Delinquent', 'Ludwig, Edward W.', '2019-04-26', 51, 'https://www.gutenberg.org/ebooks/59368', 'en', 376), +(21815, 'The Chautauquan, Vol. 04, January 1884\r\nA Monthly Magazine Devoted to the Promotion of True Culture.\r\nOrgan of the Chautauqua Literary and Scientific Circle.', 'Chautauqua Institution', '2016-12-03', 3, 'https://www.gutenberg.org/ebooks/53652', 'en', 1115), +(21816, 'The Haunted and the Haunters; Or, The House and the Brain', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-28', 59, 'https://www.gutenberg.org/ebooks/14195', 'en', 461), +(21817, 'Geographic Variation in the Pocket Gopher, Thomomys bottae, in Colorado', 'Youngman, Phillip M.', '2011-09-05', 4, 'https://www.gutenberg.org/ebooks/37317', 'en', 6337), +(21818, 'British Policy in the Illinois Country, 1763-1768', 'Carter, Clarence Edwin', '2018-01-05', 0, 'https://www.gutenberg.org/ebooks/56320', 'en', 9468), +(21819, 'Uncle Walt [Walt Mason], the Poet Philosopher', 'Mason, Walt', '2012-11-18', 21, 'https://www.gutenberg.org/ebooks/41397', 'en', 8), +(21820, 'The Anglers of Arz', 'Aycock, Roger D.', '2010-06-02', 62, 'https://www.gutenberg.org/ebooks/32665', 'en', 67), +(21821, 'The Jacket (The Star-Rover)', 'London, Jack', '1998-01-01', 139, 'https://www.gutenberg.org/ebooks/1162', 'en', 8208), +(21822, 'When the Owl Cries', 'Bartlett, Paul Alexander', '2012-07-15', 20, 'https://www.gutenberg.org/ebooks/40245', 'en', 9469), +(21823, 'Jingle Bells\r\nOr, The One Horse Open Sleigh', 'Pierpont, James', '2003-12-01', 11, 'https://www.gutenberg.org/ebooks/10535', 'en', 583), +(21824, 'A History of French Literature\nShort Histories of the Literatures of the World: II.', 'Dowden, Edward', '2008-02-27', 26, 'https://www.gutenberg.org/ebooks/24700', 'en', 1765), +(21825, 'Tales of Destiny', 'Mitchell, Edmund', '2006-08-10', 25, 'https://www.gutenberg.org/ebooks/19017', 'en', 179), +(21826, 'The Martyrdom of Madeline', 'Buchanan, Robert Williams', '2017-08-11', 10, 'https://www.gutenberg.org/ebooks/55338', 'en', 61), +(21827, 'Business For the Lawyers', 'Robin, Ralph', '2015-08-23', 38, 'https://www.gutenberg.org/ebooks/49767', 'en', 26), +(21828, 'Lives of the Three Mrs. Judsons', 'Willson, Arabella M.', '2005-10-13', 19, 'https://www.gutenberg.org/ebooks/16863', 'en', 9470), +(21829, 'Men in War', 'Latzko, Andreas', '2005-07-01', 27, 'https://www.gutenberg.org/ebooks/8440', 'en', 579), +(21830, 'Personal Sketches and Tributes\r\nPart 2 from Volume VI of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 11, 'https://www.gutenberg.org/ebooks/9592', 'en', 122), +(21831, 'Parables from Flowers', 'Dyer, Gertrude P.', '2009-01-06', 8, 'https://www.gutenberg.org/ebooks/27718', 'en', 9471), +(21832, '申鑒', 'Xun, Yue', '2005-02-01', 16, 'https://www.gutenberg.org/ebooks/7408', 'zh', 1493), +(21833, 'Erdgeist (Earth-Spirit): A Tragedy in Four Acts', 'Wedekind, Frank', '2009-08-13', 46, 'https://www.gutenberg.org/ebooks/29682', 'en', 1298), +(21834, 'When Santiago Fell; or, The War Adventures of Two Chums', 'Stratemeyer, Edward', '2016-04-19', 16, 'https://www.gutenberg.org/ebooks/51798', 'en', 1266), +(21835, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 3', 'Goldsmith, Lewis', '2004-12-04', 17, 'https://www.gutenberg.org/ebooks/3894', 'en', 2051), +(21836, 'Howards End', 'Forster, E. M. (Edward Morgan)', '2001-12-01', 221, 'https://www.gutenberg.org/ebooks/2946', 'en', 9472), +(21837, 'The Fairfax County Courthouse', 'Netherton, Ross De Witt', '2009-05-10', 11, 'https://www.gutenberg.org/ebooks/28750', 'en', 9473), +(21838, 'The Trail Boys of the Plains; Or, The Hunt for the Big Buffalo', 'Allen, Jay Winthrop', '2013-10-31', 8, 'https://www.gutenberg.org/ebooks/44078', 'en', 2046), +(21839, 'La San-Felice, Tome 07, Emma Lyonna, tome 3', 'Dumas, Alexandre', '2018-12-08', 17, 'https://www.gutenberg.org/ebooks/58427', 'fr', 4110), +(21840, 'The Laurel Bush: An Old-Fashioned Love Story', 'Craik, Dinah Maria Mulock', '2005-01-17', 19, 'https://www.gutenberg.org/ebooks/14708', 'en', 61), +(21841, 'The Dead Lake, and Other Tales', 'Heyse, Paul', '2010-10-18', 20, 'https://www.gutenberg.org/ebooks/33916', 'en', 803), +(21842, 'Mentally Defective Children', 'Simon, Théodore', '2011-06-18', 16, 'https://www.gutenberg.org/ebooks/36458', 'en', 9474), +(21843, 'The Motor Girls on Crystal Bay; or, The Secret of the Red Oar', 'Penrose, Margaret', '2008-06-22', 20, 'https://www.gutenberg.org/ebooks/25873', 'en', 128), +(21844, 'The Evolution of Culture, and Other Essays', 'Pitt-Rivers, Augustus Henry Lane-Fox', '2014-02-08', 28, 'https://www.gutenberg.org/ebooks/44844', 'en', 3105), +(21845, 'Méthode d\'équitation basée sur de nouveaux principes', 'Baucher, François', '2012-04-09', 7, 'https://www.gutenberg.org/ebooks/39410', 'fr', 9475), +(21846, 'Science for the School and Family, Part I. Natural Philosophy', 'Hooker, Worthington', '2016-08-28', 17, 'https://www.gutenberg.org/ebooks/52921', 'en', 1194), +(21847, 'Der Aether gegen den Schmerz', 'Dieffenbach, Johann Friedrich', '2014-06-16', 7, 'https://www.gutenberg.org/ebooks/45996', 'de', 9476), +(21848, 'Lirica', 'Vivanti, Annie', '2019-01-04', 16, 'https://www.gutenberg.org/ebooks/58615', 'it', 739), +(21849, 'Hodge and His Masters', 'Jefferies, Richard', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/11874', 'en', 9477), +(21850, 'The Girls of Friendly Terrace; or, Peggy Raymond\'s Success', 'Smith, Harriet L. (Harriet Lummis)', '2014-04-14', 52, 'https://www.gutenberg.org/ebooks/45398', 'en', 62), +(21851, 'The Book of Buried Treasure\r\nBeing a True History of the Gold, Jewels, and Plate of Pirates, Galleons, etc., which are sought for to this day', 'Paine, Ralph Delahaye', '2010-08-01', 49, 'https://www.gutenberg.org/ebooks/33318', 'en', 9478), +(21852, 'Reno — a Book of Short Stories and Information', 'Stratton, Lilyan', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/5951', 'en', 9479), +(21853, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1609', 'Motley, John Lothrop', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/4883', 'en', 3372), +(21854, 'La Presse Clandestine dans la Belgique Occupée', 'Massart, Jean', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11048', 'fr', 9480), +(21855, 'The Church In Politics—Americans Beware!', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2012-05-05', 5, 'https://www.gutenberg.org/ebooks/39622', 'en', 8549), +(21856, 'Deux essais: Octave Mirbeau, Romain Rolland', 'Elder, Marc', '2012-12-30', 8, 'https://www.gutenberg.org/ebooks/41738', 'fr', 9481), +(21857, 'The Hermit Doctor of Gaya: A Love Story of Modern India', 'Wylie, I. A. R. (Ida Alexa Ross)', '2015-07-30', 15, 'https://www.gutenberg.org/ebooks/49555', 'en', 48), +(21858, 'The Epistle of Paul to Titus', NULL, '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22864', 'en', 7470), +(21859, 'Poems Chiefly from Manuscript', 'Clare, John', '2005-08-01', 37, 'https://www.gutenberg.org/ebooks/8672', 'en', 8), +(21860, 'Joyce of the North Woods', 'Comstock, Harriet T. (Harriet Theresa)', '2006-09-09', 35, 'https://www.gutenberg.org/ebooks/19225', 'en', 61), +(21861, 'Sister Carrie: A Novel', 'Dreiser, Theodore', '1995-03-01', 340, 'https://www.gutenberg.org/ebooks/233', 'en', 9482), +(21862, 'On Liberty', 'Mill, John Stuart', '2011-01-10', 1425, 'https://www.gutenberg.org/ebooks/34901', 'en', 4559), +(21863, 'The Disappearance of Lady Frances Carfax', 'Doyle, Arthur Conan', '2000-10-01', 221, 'https://www.gutenberg.org/ebooks/2348', 'en', 430), +(21864, 'Young Earnest: The Romance of a Bad Start in Life', 'Cannan, Gilbert', '2015-03-14', 20, 'https://www.gutenberg.org/ebooks/48487', 'en', 230), +(21865, 'Cornelius O\'Dowd Upon Men And Women And Other Things In General', 'Lever, Charles James', '2008-05-20', 34, 'https://www.gutenberg.org/ebooks/22058', 'en', 20), +(21866, 'The Folk-Tales of the Magyars\nCollected by Kriza, Erdélyi, Pap, and Others', NULL, '2013-06-18', 131, 'https://www.gutenberg.org/ebooks/42981', 'en', 2), +(21867, 'Kotipellon kynnökseltä: Kertomuksia', 'Nikkinen, Jaakko', '2017-11-11', 14, 'https://www.gutenberg.org/ebooks/55936', 'fi', 175), +(21868, 'The Girl\'s Own Paper, Vol. XX, No. 984, November 5, 1898', 'Various', '2015-11-18', 5, 'https://www.gutenberg.org/ebooks/50478', 'en', 563), +(21869, 'Wild Life on the Rockies', 'Mills, Enos A.', '2009-04-12', 11, 'https://www.gutenberg.org/ebooks/28562', 'en', 9483), +(21870, 'The Galloping Ghost\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-09-30', 18, 'https://www.gutenberg.org/ebooks/43853', 'en', 9484), +(21871, 'A Code for the Government of Armies in the Field,\nas authorized by the laws and usages of war on land.', 'Lieber, Francis', '2016-12-08', 14, 'https://www.gutenberg.org/ebooks/53699', 'en', 9485), +(21872, 'The Tower of London', 'Benham, William', '2018-11-11', 26, 'https://www.gutenberg.org/ebooks/58271', 'en', 7624), +(21873, 'The Divine Comedy, Volume 1, Hell', 'Dante Alighieri', '1999-12-01', 162, 'https://www.gutenberg.org/ebooks/1995', 'en', 365), +(21874, 'Arachne — Volume 02', 'Ebers, Georg', '2004-04-01', 3, 'https://www.gutenberg.org/ebooks/5509', 'en', 6232), +(21875, 'Mystic London; or, Phases of occult life in the metropolis', 'Davies, Charles Maurice', '2008-05-27', 18, 'https://www.gutenberg.org/ebooks/25619', 'en', 3324), +(21876, 'Heroic Spain', 'O\'Reilly, Elizabeth Boyle', '2012-03-24', 9, 'https://www.gutenberg.org/ebooks/39246', 'en', 1514), +(21877, 'The Fourth Estate, vol. 2', 'Palacio Valdés, Armando', '2011-12-23', 14, 'https://www.gutenberg.org/ebooks/38394', 'en', 480), +(21878, 'Der Pilger Kamanita: Ein Legendenroman', 'Gjellerup, Karl', '2005-02-07', 27, 'https://www.gutenberg.org/ebooks/14962', 'de', 9486), +(21879, 'Japanese Plays and Playfellows', 'Edwards, Osman', '2018-05-31', 12, 'https://www.gutenberg.org/ebooks/57239', 'en', 9487), +(21880, 'Broeder en Zuster', 'Buysse, Cyriel', '2006-07-08', 17, 'https://www.gutenberg.org/ebooks/18793', 'nl', 179), +(21881, 'The Anglo-Saxon Chronicle', NULL, '1996-09-01', 665, 'https://www.gutenberg.org/ebooks/657', 'en', 9488), +(21882, 'The Yule Log: A Series of Stories for the Young', 'Bishop, Georgianna M.', '2015-01-06', 8, 'https://www.gutenberg.org/ebooks/47897', 'en', 470), +(21883, 'Mrs. Dot: A Farce', 'Maugham, W. Somerset (William Somerset)', '2016-01-01', 30, 'https://www.gutenberg.org/ebooks/50820', 'en', 8421), +(21884, 'Wings over England', 'Snell, Roy J. (Roy Judson)', '2015-06-03', 39, 'https://www.gutenberg.org/ebooks/49131', 'en', 2564), +(21885, 'Issues in Ethics', 'Vaknin, Samuel', '2005-06-01', 30, 'https://www.gutenberg.org/ebooks/8216', 'en', 680), +(21886, 'Rich Man, Poor Man', 'Foster, Maximilian', '2014-09-23', 81, 'https://www.gutenberg.org/ebooks/46945', 'en', 1380), +(21887, 'Relaçam dedicada A Serenissima Senhora Rainha da Gram Bretanha da Jornada que fes de Lixboa the Por-ts Mouth', 'Fonseca, Sebastião da', '2006-10-27', 17, 'https://www.gutenberg.org/ebooks/19641', 'pt', 8), +(21888, 'Le Bossu Volume 5\nAventures de cape et d\'épée', 'Féval, Paul', '2010-12-04', 14, 'https://www.gutenberg.org/ebooks/34559', 'fr', 654), +(21889, 'Van Batavia naar Atjeh, dwars door Sumatra\nDe Aarde en haar Volken, 1904', 'Bernard, F.', '2009-02-03', 20, 'https://www.gutenberg.org/ebooks/27972', 'nl', 5306), +(21890, 'Heath\'s Modern Language Series: Tres Comedias\nSin querer; De pequenas causas...; Los intereses creados', 'Benavente, Jacinto', '2009-02-17', 19, 'https://www.gutenberg.org/ebooks/28106', 'es', 907), +(21891, 'Life of Lord Byron, Vol. 5\r\nWith His Letters and Journals', 'Moore, Thomas', '2005-08-27', 28, 'https://www.gutenberg.org/ebooks/16609', 'en', 6521), +(21892, 'Monsieur de Camors — Complet', 'Feuillet, Octave', '2010-03-29', 16, 'https://www.gutenberg.org/ebooks/31817', 'fr', 687), +(21893, 'Two Years and Four Months in a Lunatic Asylum\nfrom August 20th, 1863 to December 20th, 1865', 'Chase, Hiram', '2014-07-02', 13, 'https://www.gutenberg.org/ebooks/46179', 'en', 9489), +(21894, 'Our Little Swiss Cousin', 'Wade, Mary Hazelton Blanchard', '2013-09-04', 11, 'https://www.gutenberg.org/ebooks/43639', 'en', 9490), +(21895, 'Hawthorne and His Circle', 'Hawthorne, Julian', '2004-11-01', 20, 'https://www.gutenberg.org/ebooks/6982', 'en', 6216), +(21896, 'The Mountains', 'White, Stewart Edward', '1996-03-01', 63, 'https://www.gutenberg.org/ebooks/465', 'en', 1623), +(21897, 'Hélika\r\nMemoire d\'un vieux maître d\'école', 'DeGuise, Charles', '2004-08-10', 63, 'https://www.gutenberg.org/ebooks/13149', 'fr', 65), +(21898, 'Memoirs of Aaron Burr, Volume 1.', 'Burr, Aaron', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/7850', 'en', 9491), +(21899, 'Now or Never; Or, The Adventures of Bobby Bright', 'Optic, Oliver', '2006-10-05', 24, 'https://www.gutenberg.org/ebooks/19473', 'en', 9492), +(21900, 'Harper\'s Young People, September 27. 1881\nAn Illustrated Weekly', 'Various', '2015-06-28', 2, 'https://www.gutenberg.org/ebooks/49303', 'en', 479), +(21901, 'Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves, North Carolina Narratives, Part 2', 'United States. Work Projects Administration', '2010-02-08', 47, 'https://www.gutenberg.org/ebooks/31219', 'en', 9493), +(21902, 'The Bible, King James version, Book 24: Jeremiah', 'Anonymous', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/8024', 'en', 5144), +(21903, 'The New Hudson Shakespeare: Julius Cæsar', 'Shakespeare, William', '2009-03-15', 7, 'https://www.gutenberg.org/ebooks/28334', 'en', 6377), +(21904, 'Qventin Durward', 'Scott, Walter', '2004-11-08', 8, 'https://www.gutenberg.org/ebooks/13975', 'fi', 9494), +(21905, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 701\nJune 2, 1877', 'Various', '2014-11-06', 10, 'https://www.gutenberg.org/ebooks/47299', 'en', 18), +(21906, 'The Last Days of Pompeii', 'Lytton, Edward Bulwer Lytton, Baron', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/8818', 'en', 98), +(21907, 'Honor Bright: A Story for Girls', 'Richards, Laura Elizabeth Howe', '2016-07-15', 11, 'https://www.gutenberg.org/ebooks/52579', 'en', 62), +(21908, 'Four Mystery Plays', 'Steiner, Rudolf', '2019-04-02', 45, 'https://www.gutenberg.org/ebooks/59191', 'en', 9495), +(21909, 'India Through the Ages: A Popular and Picturesque History of Hindustan', 'Steel, Flora Annie Webster', '2012-05-29', 25, 'https://www.gutenberg.org/ebooks/39848', 'en', 9496), +(21910, 'Scott Greenwood and Co. Catalogue of Special Technical Works, 1903\nFor Manufacturers, Students, and Technical Schools, by Expert Writers', 'Scott, Greenwood & Co.', '2013-01-31', 14, 'https://www.gutenberg.org/ebooks/41952', 'en', 6172), +(21911, 'The gift of friendship', NULL, '2018-09-02', 222, 'https://www.gutenberg.org/ebooks/57837', 'en', 2215), +(21912, 'Our British Snails', 'Horsley, J. W. (John William)', '2012-09-27', 17, 'https://www.gutenberg.org/ebooks/40880', 'en', 9497), +(21913, 'Catálogo Instructivo de las Colecciones Mineralógicas', 'Bodenbender, Guillermo', '2006-12-22', 58, 'https://www.gutenberg.org/ebooks/20159', 'es', 9498), +(21914, 'The Century Illustrated Monthly Magazine, August, 1913\nVol. LXXXVI. New Series: Vol. LXIV. May to October, 1913', 'Various', '2018-10-06', 25, 'https://www.gutenberg.org/ebooks/58043', 'en', 18), +(21915, 'Curiosities of Medical Experience', 'Millingen, J. G. (John Gideon)', '2012-03-07', 92, 'https://www.gutenberg.org/ebooks/39074', 'en', 9499), +(21916, 'Ludicrous Aspects Of Christianity\nA Response To The Challenge Of The Bishop Of Manchester', 'Holyoake, Austin', '2011-07-20', 20, 'https://www.gutenberg.org/ebooks/36800', 'en', 1191), +(21917, 'Die Kugel\nEine Philosophie in Versen', 'Zur Linde, Otto', '2007-04-03', 17, 'https://www.gutenberg.org/ebooks/20965', 'de', 4162), +(21918, 'Spring notes from Tennessee', 'Torrey, Bradford', '2014-05-21', 22, 'https://www.gutenberg.org/ebooks/45708', 'en', 1216), +(21919, 'Idle Hour Stories', 'Potts, Eugenia Dunlap', '2005-02-16', 15, 'https://www.gutenberg.org/ebooks/15078', 'en', 179), +(21920, 'Introduction to Anatomy, 1532\r\nWith English translation and an introductory essay on anatomical studies in Tudor England by C.D. O\'Malley and K.F. Russell.', 'Edguard, David', '2019-04-25', 25, 'https://www.gutenberg.org/ebooks/59357', 'la', 9500), +(21921, 'Books and Bookmen', 'Lang, Andrew', '1999-11-01', 33, 'https://www.gutenberg.org/ebooks/1961', 'en', 7900), +(21922, 'Girls of \'64', 'Knipe, Emilie Benson', '2018-11-14', 14, 'https://www.gutenberg.org/ebooks/58285', 'en', 403), +(21923, 'Medical Life in the Navy', 'Stables, Gordon', '2011-09-06', 12, 'https://www.gutenberg.org/ebooks/37328', 'en', 9501), +(21924, 'Escal-Vigor', 'Eekhoud, Georges', '2005-05-17', 16, 'https://www.gutenberg.org/ebooks/15844', 'fr', 2394), +(21925, 'Painted Windows\nStudies in Religious Personality', 'Begbie, Harold', '2005-02-09', 24, 'https://www.gutenberg.org/ebooks/14996', 'en', 9502), +(21926, 'Estrellas Propícias', 'Castelo Branco, Camilo', '2010-09-21', 22, 'https://www.gutenberg.org/ebooks/33788', 'pt', 3856), +(21927, 'Il ponte del paradiso: racconto', 'Barrili, Anton Giulio', '2011-12-21', 30, 'https://www.gutenberg.org/ebooks/38360', 'it', 61), +(21928, 'Hastings & Environs: A Sketch-Book', 'Hampton, H. G.', '2017-03-28', 19, 'https://www.gutenberg.org/ebooks/54448', 'en', 9503), +(21929, 'Stories about Animals: with Pictures to Match', 'Woodworth, Francis C. (Francis Channing)', '2006-07-06', 51, 'https://www.gutenberg.org/ebooks/18767', 'en', 8771), +(21930, 'Kahden taalarin raha', 'Ingman, A. E. (Alfred Emil)', '2015-01-03', 13, 'https://www.gutenberg.org/ebooks/47863', 'fi', 3535), +(21931, 'The Biography of a Grizzly', 'Seton, Ernest Thompson', '2005-11-01', 45, 'https://www.gutenberg.org/ebooks/9330', 'en', 8554), +(21932, 'Jonas Durmanin testamentti', 'Sigurd', '2015-01-18', 9, 'https://www.gutenberg.org/ebooks/48017', 'fi', 2168), +(21933, 'Suuri oppi: Johdatus kungfutselaiseen elämänkatsomukseen', 'Confucius', '2016-05-01', 15, 'https://www.gutenberg.org/ebooks/51906', 'fi', 3528), +(21934, 'The Bath Tatting Book', 'Anonymous', '2008-07-16', 55, 'https://www.gutenberg.org/ebooks/26068', 'en', 9504), +(21935, 'Victory: An Island Tale', 'Conrad, Joseph', '2006-01-09', 121, 'https://www.gutenberg.org/ebooks/6378', 'en', 9505), +(21936, 'Judith Lynn: A Story of the Sea', 'Donnell, Annie Hamilton', '2009-02-04', 6, 'https://www.gutenberg.org/ebooks/27986', 'en', 324), +(21937, 'The Ethnology of the British Islands', 'Latham, R. G. (Robert Gordon)', '2010-01-11', 25, 'https://www.gutenberg.org/ebooks/30931', 'en', 9506), +(21938, 'A Boy I Knew and Four Dogs', 'Hutton, Laurence', '2009-06-01', 14, 'https://www.gutenberg.org/ebooks/29020', 'en', 9507), +(21939, 'The Trembling of a Leaf: Little Stories of the South Sea Islands', 'Maugham, W. Somerset (William Somerset)', '2008-10-09', 151, 'https://www.gutenberg.org/ebooks/26854', 'en', 108), +(21940, 'Run to Earth: A Novel', 'Braddon, M. E. (Mary Elizabeth)', '2005-10-01', 20, 'https://www.gutenberg.org/ebooks/9102', 'en', 401), +(21941, 'Collected Papers on Analytical Psychology', 'Jung, C. G. (Carl Gustav)', '2015-02-10', 635, 'https://www.gutenberg.org/ebooks/48225', 'en', 3640), +(21942, 'A Chance Acquaintance', 'Howells, William Dean', '2006-06-11', 10, 'https://www.gutenberg.org/ebooks/18555', 'en', 348), +(21943, 'Rezanov', 'Atherton, Gertrude Franklin Horn', '1996-04-01', 33, 'https://www.gutenberg.org/ebooks/491', 'en', 9508), +(21944, 'Metlakahtla and the North Pacific Mission of the Church Missionary Society', 'Stock, Eugene', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/6976', 'en', 9509), +(21945, 'Sociologia Chinesa: Autoplastia', 'Macgowan, Daniel Jerome', '2008-12-02', 16, 'https://www.gutenberg.org/ebooks/27388', 'pt', 9510), +(21946, 'Bell\'s Cathedrals: The Cathedral Church of Hereford\r\nA Description of Its Fabric and a Brief History of the Episcopal See', 'Fisher, A. Hugh (Alfred Hugh)', '2006-10-07', 19, 'https://www.gutenberg.org/ebooks/19487', 'en', 9511), +(21947, 'The Book of the Thousand Nights and a Night — Volume 04', NULL, '2002-09-01', 100, 'https://www.gutenberg.org/ebooks/3438', 'en', 1007), +(21948, 'Walter and the Wireless', 'Bassett, Sara Ware', '2007-12-04', 21, 'https://www.gutenberg.org/ebooks/23728', 'en', 3343), +(21949, 'Histoire du Chevalier d\'Iberville (1663-1706)', 'Desmazures, Adam Charles Gustave', '2004-11-08', 21, 'https://www.gutenberg.org/ebooks/13981', 'fr', 2163), +(21950, 'The \"Wearing of the Green,\" or The Prosecuted Funeral Procession', 'Sullivan, A.M. (Alexander Martin)', '2004-07-08', 23, 'https://www.gutenberg.org/ebooks/12853', 'en', 3673), +(21951, 'Tales of the Enchanted Islands of the Atlantic', 'Higginson, Thomas Wentworth', '2004-12-01', 82, 'https://www.gutenberg.org/ebooks/7098', 'en', 7823), +(21952, 'Prehistoric Structures of Central America: Who Erected Them?', 'Townsend, Martin I. (Martin Ingham)', '2009-06-24', 17, 'https://www.gutenberg.org/ebooks/29212', 'en', 9512), +(21953, 'My Strange Rescue, and Other Stories of Sport and Adventure in Canada', 'Oxley, J. Macdonald (James Macdonald)', '2016-02-26', 9, 'https://www.gutenberg.org/ebooks/51308', 'en', 5027), +(21954, 'Uncanny Stories', 'Sinclair, May', '2019-03-31', 84, 'https://www.gutenberg.org/ebooks/59165', 'en', 409), +(21955, 'The New Century Standard Letter-Writer\r\nBusiness, Family and Social Correspondence, Love-Letters, Etiquette, Synonyms, Legal Forms, Etc.', 'Chambers, Alfred B.', '2018-04-03', 31, 'https://www.gutenberg.org/ebooks/56911', 'en', 6638), +(21956, 'Wenderholme: A Story of Lancashire and Yorkshire', 'Hamerton, Philip Gilbert', '2012-09-27', 28, 'https://www.gutenberg.org/ebooks/40874', 'en', 46), +(21957, 'La fée des grèves', 'Féval, Paul', '2004-12-20', 20, 'https://www.gutenberg.org/ebooks/14398', 'fr', 9513), +(21958, 'The Last of Mrs. DeBrugh', 'Sivia, H.', '2010-05-21', 12, 'https://www.gutenberg.org/ebooks/32468', 'en', 179), +(21959, 'English Surnames: Their Sources and Significations', 'Bardsley, Charles Wareing Endell', '2019-07-21', 2161, 'https://www.gutenberg.org/ebooks/59959', 'en', 9375), +(21960, 'My Mother\'s Gold Ring: Founded on Fact\r\nEighth Edition', 'Sargent, Lucius M. (Lucius Manlius)', '2012-03-08', 7, 'https://www.gutenberg.org/ebooks/39080', 'en', 716), +(21961, 'The Botanical Magazine, Vol. 06\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2007-06-15', 33, 'https://www.gutenberg.org/ebooks/21843', 'en', 9514), +(21962, 'Mahomet, Founder of Islam', 'Draycott, Gladys M.', '2004-01-01', 54, 'https://www.gutenberg.org/ebooks/10738', 'en', 3852), +(21963, '\"As Gold in the Furnace\" : A College Story', 'Copus, J. E. (John Edwin)', '2011-11-05', 11, 'https://www.gutenberg.org/ebooks/37926', 'en', 7350), +(21964, 'The Newcastle Song Book; or, Tyne-Side Songster\r\nBeing a Collection of Comic and Satirical Songs, Descriptive of Eccentric Characters, and the Manners and Customs of a Portion of the Labouring Population of Newcastle and the Neighbourhood', 'Various', '2012-06-20', 16, 'https://www.gutenberg.org/ebooks/40048', 'en', 9515), +(21965, 'Follow My Leader: The Boys of Templeton', 'Reed, Talbot Baines', '2007-04-05', 19, 'https://www.gutenberg.org/ebooks/20991', 'en', 621), +(21966, 'The Girl Scouts Rally; or, Rosanna Wins', 'Galt, Katherine Keene', '2011-11-27', 10, 'https://www.gutenberg.org/ebooks/38152', 'en', 2345), +(21967, 'Personal Sketches of His Own Times, Vol. 2 (of 3)', 'Barrington, Jonah, Sir', '2015-08-27', 9, 'https://www.gutenberg.org/ebooks/49793', 'en', 9516), +(21968, 'The Tables Turned; or, Nupkins Awakened. A Socialist Interlude', 'Morris, William', '2005-10-18', 11, 'https://www.gutenberg.org/ebooks/16897', 'en', 9517), +(21969, 'Membership Drive', 'Yaco, Murray F.', '2010-03-18', 19, 'https://www.gutenberg.org/ebooks/31689', 'en', 26), +(21970, 'Bay of Seven Islands, and other poems\r\nPart 7 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 14, 'https://www.gutenberg.org/ebooks/9566', 'en', 350), +(21971, 'Mark Twain: Tri Noveloj', 'Twain, Mark', '2006-03-08', 36, 'https://www.gutenberg.org/ebooks/17945', 'eo', 179), +(21972, 'Monsieur Lecoq, v. 2', 'Gaboriau, Emile', '2015-04-05', 35, 'https://www.gutenberg.org/ebooks/48641', 'en', 128), +(21973, 'The Rescue of the Princess Winsome: A Fairy Play for Old and Young', 'Johnston, Annie F. (Annie Fellows)', '2006-04-08', 16, 'https://www.gutenberg.org/ebooks/18131', 'en', 9518), +(21974, 'The Alpine Fay: A Romance', 'Werner, E.', '2011-02-09', 49, 'https://www.gutenberg.org/ebooks/35229', 'en', 803), +(21975, 'Identity', 'Blade, Zoë', '2009-08-12', 17, 'https://www.gutenberg.org/ebooks/29676', 'en', 179), +(21976, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 01', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 9, 'https://www.gutenberg.org/ebooks/3860', 'en', 1247), +(21977, 'The Book of Quinte Essence or the Fifth Being (1889)\r\nEdited from British Museum MS. Sloane 73 about 1460-70 A.D.', NULL, '2005-11-29', 53, 'https://www.gutenberg.org/ebooks/17179', 'enm', 9519), +(21978, 'Nursery Comedies: Twelve Tiny Plays for Children', 'Bell, Florence Eveleen Eleanore Olliffe, Lady', '2014-12-09', 17, 'https://www.gutenberg.org/ebooks/47609', 'en', 364), +(21979, 'Man Made', 'Teichner, Albert', '2008-03-30', 40, 'https://www.gutenberg.org/ebooks/24955', 'en', 179), +(21980, 'Hieroglyfic: or, a Grammatical Introduction to an Universal Hieroglyfic Language', 'Jones, Rowland', '2019-05-13', 17, 'https://www.gutenberg.org/ebooks/59501', 'en', 9520), +(21981, 'The State of the Blessed Dead', 'Alford, Henry', '2010-06-16', 7, 'https://www.gutenberg.org/ebooks/32830', 'en', 8607), +(21982, 'Winter Sunshine', 'Burroughs, John', '2003-07-01', 12, 'https://www.gutenberg.org/ebooks/4279', 'en', 1216), +(21983, 'Lola; Or, The Thought and Speech of Animals', 'Kindermann, Henny', '2008-06-23', 46, 'https://www.gutenberg.org/ebooks/25887', 'en', 729), +(21984, '李太白集', 'Li, Bai', '2008-01-05', 51, 'https://www.gutenberg.org/ebooks/24169', 'zh', 9521), +(21985, 'A Review of Algebra', 'Rivenburg, Romeyn Henry', '2012-01-09', 64, 'https://www.gutenberg.org/ebooks/38536', 'en', 9522), +(21986, 'Glossarium eroticum linguae Latinae\nsive Theogoniae, legum et morum nuptialium apud Romanos explanatio nova', 'Pierrugues, P. (Pierre)', '2016-12-26', 38, 'https://www.gutenberg.org/ebooks/53807', 'la', 8994), +(21987, 'Graham\'s Magazine, Vol. XXX, No. 3, March 1847', 'Various', '2018-02-11', 8, 'https://www.gutenberg.org/ebooks/56549', 'en', 380), +(21988, 'The Organism as a Whole, from a Physicochemical Viewpoint', 'Loeb, Jacques', '2014-06-14', 10, 'https://www.gutenberg.org/ebooks/45962', 'en', 6175), +(21989, 'Kolme ystävystä I', 'Gorky, Maksim', '2016-10-04', 9, 'https://www.gutenberg.org/ebooks/53209', 'fi', 147), +(21990, 'Punch, or the London Charivari, Volume 156, Jan. 15, 1919', 'Various', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/10952', 'en', 134), +(21991, 'South! The Story of Shackleton\'s Last Expedition, 1914-1917; Includes both text and audio files', 'Shackleton, Ernest Henry, Sir', '2004-02-01', 432, 'https://www.gutenberg.org/ebooks/5199', 'en', 9523), +(21992, 'Ronicky Doone', 'Brand, Max', '2004-04-01', 36, 'https://www.gutenberg.org/ebooks/11880', 'en', 9524), +(21993, 'Prince Eugene, the Noble Knight', 'Würdig, L. (Ludwig)', '2019-06-11', 30, 'https://www.gutenberg.org/ebooks/59733', 'en', 9525), +(21994, 'The Best of the World\'s Classics, Restricted to prose. Volume II (of X) - Rome', NULL, '2007-05-28', 36, 'https://www.gutenberg.org/ebooks/21629', 'en', 19), +(21995, 'The Winter\'s Tale', 'Shakespeare, William', '1998-11-01', 151, 'https://www.gutenberg.org/ebooks/1539', 'en', 5737), +(21996, 'La case de l\'oncle Tom; ou, vie des nègres en Amérique', 'Stowe, Harriet Beecher', '2012-01-30', 26, 'https://www.gutenberg.org/ebooks/38704', 'fr', 9526), +(21997, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1604-05', 'Motley, John Lothrop', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/4877', 'en', 3372), +(21998, '滄浪詩話', 'Yan, Yu, active 12th century', '2008-05-02', 6, 'https://www.gutenberg.org/ebooks/25289', 'zh', 9527), +(21999, 'The Worlds of If', 'Weinbaum, Stanley G. (Stanley Grauman)', '2007-10-05', 53, 'https://www.gutenberg.org/ebooks/22890', 'en', 26), +(22000, 'Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad.\nThe North River Tunnels. Paper No. 1155', 'Brown, W. L.', '2013-02-21', 15, 'https://www.gutenberg.org/ebooks/42149', 'en', 8219), +(22001, 'The Delicious Vice', 'Allison, Young Ewing', '2005-08-01', 23, 'https://www.gutenberg.org/ebooks/8686', 'en', 1047), +(22002, 'Spanish Doubloons', 'Kenyon, Camilla', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/12639', 'en', 9528), +(22003, 'L\'Illustration, No. 3259, 12 Août 1905', 'Various', '2011-04-11', 6, 'https://www.gutenberg.org/ebooks/35827', 'fr', 150), +(22004, 'Dityrambeja', 'Nietzsche, Friedrich Wilhelm', '2006-05-03', 16, 'https://www.gutenberg.org/ebooks/18303', 'fi', 8), +(22005, 'Night and Morning, Volume 5', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 83, 'https://www.gutenberg.org/ebooks/9754', 'en', 401), +(22006, 'Punch, or the London Charivari, Vol. 98, 19 April 1890', 'Various', '2009-11-30', 27, 'https://www.gutenberg.org/ebooks/30569', 'en', 134), +(22007, 'Foxglove Manor: A Novel, Volume 3 (of 3)', 'Buchanan, Robert Williams', '2015-03-12', 3, 'https://www.gutenberg.org/ebooks/48473', 'en', 109), +(22008, 'Unborn Tomorrow', 'Reynolds, Mack', '2007-12-20', 47, 'https://www.gutenberg.org/ebooks/23942', 'en', 26), +(22009, 'The Machinery of the Universe: Mechanical Conceptions of Physical Phenomena', 'Dolbear, A. E. (Amos Emerson)', '2009-07-18', 113, 'https://www.gutenberg.org/ebooks/29444', 'en', 2018), +(22010, 'Mediæval Byways', 'Salzman, L. F. (Louis Francis)', '2013-06-18', 13, 'https://www.gutenberg.org/ebooks/42975', 'en', 6026), +(22011, 'A Critical Essay on Characteristic-Writings\nFrom his translation of The Moral Characters of Theophrastus (1725)', 'Gally, Henry', '2005-07-15', 12, 'https://www.gutenberg.org/ebooks/16299', 'en', 9529), +(22012, 'Nederland en de Islâm', 'Snouck Hurgronje, C. (Christiaan)', '2017-05-30', 17, 'https://www.gutenberg.org/ebooks/54810', 'nl', 9530), +(22013, 'Punch or the London Charivari, Vol. 147, November 11, 1914', 'Various', '2009-04-24', 18, 'https://www.gutenberg.org/ebooks/28596', 'en', 134), +(22014, 'New York at the Louisiana Purchase Exposition, St. Louis 1904\r\nReport of the New York State Commission', 'Ellis, DeLancey M.', '2005-11-01', 43, 'https://www.gutenberg.org/ebooks/9308', 'en', 9531), +(22015, 'Walter Pieterse: A Story of Holland', 'Multatuli', '2009-09-29', 21, 'https://www.gutenberg.org/ebooks/30135', 'en', 7929), +(22016, 'Tar Heel Tales', 'Bryant, H. E. C. (Henry Edward Cowan)', '2017-04-01', 17, 'https://www.gutenberg.org/ebooks/54470', 'en', 1958), +(22017, 'More Peers : Verses', 'Belloc, Hilaire', '2008-11-07', 44, 'https://www.gutenberg.org/ebooks/27182', 'en', 5509), +(22018, 'A Soldier\'s Experience; or, A Voice from the Ranks\r\nShowing the Cost of War in Blood and Treasure. A Personal Narrative of the Crimean Campaign, from the Standpoint of the Ranks; the Indian Mutiny, and Some of its Atrocities; the Afghan Campaigns of 1863', 'Gowing, T. (Timothy)', '2014-09-28', 30, 'https://www.gutenberg.org/ebooks/46989', 'en', 9532), +(22019, 'A Description of Millenium Hall\nAnd the Country Adjacent Together with the Characters of the Inhabitants and Such Historical Anecdotes and Reflections As May Excite in the Reader Proper Sentiments of Humanity, and Lead the Mind to the Love of Virtue', 'Scott, Sarah', '2008-07-13', 20, 'https://www.gutenberg.org/ebooks/26050', 'en', 5147), +(22020, 'The Flying Legion', 'England, George Allan', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12265', 'en', 26), +(22021, 'Diana', 'Warner, Susan', '2009-08-28', 21, 'https://www.gutenberg.org/ebooks/29824', 'en', 9533), +(22022, 'The book of the ladies\nIllustrious Dames: The Reign and Amours of the Bourbon Régime', 'Brantôme, Pierre de Bourdeille', '2013-04-12', 47, 'https://www.gutenberg.org/ebooks/42515', 'en', 2874), +(22023, 'Poor Miss Finch', 'Collins, Wilkie', '2003-01-01', 75, 'https://www.gutenberg.org/ebooks/3632', 'en', 378), +(22024, 'Le Négrier, Vol. IV\r\nAventures de mer', 'Corbière, Edouard', '2006-02-08', 10, 'https://www.gutenberg.org/ebooks/17717', 'fr', 3828), +(22025, 'The Church: Her Books and Her Sacraments', 'Holmes, E. E. (Ernest Edward)', '2010-01-09', 9, 'https://www.gutenberg.org/ebooks/30909', 'en', 9534), +(22026, 'The Black Diamond', 'Young, Francis Brett', '2015-04-27', 10, 'https://www.gutenberg.org/ebooks/48813', 'en', 95), +(22027, 'Whiffet Squirrel', 'Greene, Julia', '2007-11-17', 17, 'https://www.gutenberg.org/ebooks/23522', 'en', 3264), +(22028, 'The English Language', 'Latham, R. G. (Robert Gordon)', '2010-12-07', 30, 'https://www.gutenberg.org/ebooks/34595', 'en', 7218), +(22029, 'Literary Lapses', 'Leacock, Stephen', '2004-06-01', 64, 'https://www.gutenberg.org/ebooks/6340', 'en', 5688), +(22030, 'Margaret Mahaney Talks About Turkeys', 'Mahaney, Margaret', '2014-10-06', 11, 'https://www.gutenberg.org/ebooks/47067', 'en', 5095), +(22031, 'Comrades: A Story of Social Adventure in California', 'Dixon, Thomas, Jr.', '2011-03-01', 33, 'https://www.gutenberg.org/ebooks/35447', 'en', 211), +(22032, 'Leben und Tod des Königs Johann', 'Shakespeare, William', '2005-01-01', 17, 'https://www.gutenberg.org/ebooks/7292', 'de', 9535), +(22033, 'Critical Miscellanies (Vol. 3 of 3), Essay 9: The Expansion of England', 'Morley, John', '2009-06-01', 17, 'https://www.gutenberg.org/ebooks/29018', 'en', 9536), +(22034, 'The Sentimentalists', 'Leinster, Murray', '2016-02-01', 48, 'https://www.gutenberg.org/ebooks/51102', 'en', 67), +(22035, 'McGuffey\'s Fifth Eclectic Reader', 'McGuffey, William Holmes', '2005-02-14', 130, 'https://www.gutenberg.org/ebooks/15040', 'en', 1019), +(22036, 'Pussy Black-Face; Or, The Story of a Kitten and Her Friends', 'Saunders, Marshall', '2016-08-12', 28, 'https://www.gutenberg.org/ebooks/52787', 'en', 1430), +(22037, 'The Goat and Her Kid', 'Myrtle, Harriet', '2007-05-02', 21, 'https://www.gutenberg.org/ebooks/21275', 'en', 1602), +(22038, 'Sandra Belloni — Volume 5', 'Meredith, George', '2003-09-01', 11, 'https://www.gutenberg.org/ebooks/4417', 'en', 137), +(22039, 'Buffon\'s Natural History. Volume 05 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-23', 11, 'https://www.gutenberg.org/ebooks/45730', 'en', 871), +(22040, 'The Blue Grass Seminary Girls on the Water\r\nOr, Exciting Adventures on a Summer Cruise Through the Panama Canal', 'Burnett, Carolyn Judson', '2011-09-04', 57, 'https://www.gutenberg.org/ebooks/37310', 'en', 9537), +(22041, 'The Crown of Thorns: A Token for the Sorrowing', 'Chapin, E. H. (Edwin Hubbell)', '1999-11-01', 10, 'https://www.gutenberg.org/ebooks/1959', 'en', 710), +(22042, 'Telephoning to Santa Claus', 'MacDonald, John D.', '2016-12-03', 26, 'https://www.gutenberg.org/ebooks/53655', 'en', 3459), +(22043, 'Le portrait de Dorian Gray', 'Wilde, Oscar', '2004-11-28', 67, 'https://www.gutenberg.org/ebooks/14192', 'fr', 658), +(22044, 'Eight Stories for Isabel', 'Anonymous', '2010-06-02', 9, 'https://www.gutenberg.org/ebooks/32662', 'en', 294), +(22045, 'Schuhlin: Eine Erzählung', 'Sternheim, Carl', '2012-11-17', 17, 'https://www.gutenberg.org/ebooks/41390', 'de', 179), +(22046, 'Fables de La Fontaine', 'La Fontaine, Jean de', '2018-01-07', 153, 'https://www.gutenberg.org/ebooks/56327', 'fr', 4590), +(22047, 'By Proxy', 'Garrett, Randall', '2008-02-27', 74, 'https://www.gutenberg.org/ebooks/24707', 'en', 4350), +(22048, 'Beacon Lights of History, Volume 06: Renaissance and Reformation', 'Lord, John', '2003-12-01', 30, 'https://www.gutenberg.org/ebooks/10532', 'en', 7868), +(22049, 'The Modern Railroad', 'Hungerford, Edward', '2012-07-15', 28, 'https://www.gutenberg.org/ebooks/40242', 'en', 1450), +(22050, 'The Little Book of Modern Verse\r\nA Selection from the Work of Contemporaneous American Poets', NULL, '1998-01-01', 6, 'https://www.gutenberg.org/ebooks/1165', 'en', 178), +(22051, 'L\'Illustration, No. 0025, 19 Août 1843', 'Various', '2011-12-21', 7, 'https://www.gutenberg.org/ebooks/38358', 'fr', 150), +(22052, 'Pictures of Hellas: Five Tales of Ancient Greece', 'Mariager, Peder', '2018-04-06', 15, 'https://www.gutenberg.org/ebooks/56929', 'en', 9538), +(22053, 'Lizzy Glenn; Or, The Trials of a Seamstress', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/4625', 'en', 9539), +(22054, 'How the Other Half Lives: Studies Among the Tenements of New York', 'Riis, Jacob A. (Jacob August)', '2014-04-26', 279, 'https://www.gutenberg.org/ebooks/45502', 'en', 9540), +(22055, 'Spenser\'s The Faerie Queene, Book I', 'Spenser, Edmund', '2005-03-07', 508, 'https://www.gutenberg.org/ebooks/15272', 'en', 9541), +(22056, 'L\'Instruction Théorique du Soldat par lui-même (1914)', 'Chapuis, Félix', '2012-06-02', 14, 'https://www.gutenberg.org/ebooks/39884', 'fr', 9542), +(22057, 'The Nursery, No. 109, January, 1876, Vol. XIX.\nA Monthly Magazine for Youngest Readers', 'Various', '2007-04-12', 20, 'https://www.gutenberg.org/ebooks/21047', 'en', 4641), +(22058, 'Wood-Block Printing\nA Description of the Craft of Woodcutting and Colour Printing Based on the Japanese Practice', 'Fletcher, F. Morley (Frank Morley)', '2006-12-26', 116, 'https://www.gutenberg.org/ebooks/20195', 'en', 9543), +(22059, 'Argentine Ornithology, Volume 1 (of 2)\r\nA descriptive catalogue of the birds of the Argentine Republic.', 'Hudson, W. H. (William Henry)', '2012-02-25', 48, 'https://www.gutenberg.org/ebooks/38956', 'en', 7846), +(22060, 'Prejudices, Second Series', 'Mencken, H. L. (Henry Louis)', '2016-11-07', 71, 'https://www.gutenberg.org/ebooks/53467', 'en', 3043), +(22061, 'Hunting in Many Lands: The Book of the Boone and Crockett Club', NULL, '2011-08-18', 60, 'https://www.gutenberg.org/ebooks/37122', 'en', 2441), +(22062, 'Kuvaelmia itä-suomalaisten vanhoista tavoista 5: Kesäaskareet', 'Häyhä, Johannes', '2017-12-03', 12, 'https://www.gutenberg.org/ebooks/56115', 'fi', 9544), +(22063, 'England and the Orléans Monarchy', 'Hall, John', '2019-07-21', 367, 'https://www.gutenberg.org/ebooks/59961', 'en', 9545), +(22064, 'Über den Expressionismus in der Literatur und die neue Dichtung', 'Edschmid, Kasimir', '2010-05-20', 10, 'https://www.gutenberg.org/ebooks/32450', 'de', 8076), +(22065, 'Kuningas Henrik Kuudes I', 'Shakespeare, William', '2012-06-26', 17, 'https://www.gutenberg.org/ebooks/40070', 'fi', 2048), +(22066, 'Madame Firmiani', 'Balzac, Honoré de', '2005-02-07', 21, 'https://www.gutenberg.org/ebooks/1357', 'en', 58); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(22067, 'Rhyme? And Reason?', 'Carroll, Lewis', '2010-08-30', 40, 'https://www.gutenberg.org/ebooks/33582', 'en', 986), +(22068, 'The Path to Honour', 'Grier, Sydney C.', '2008-02-06', 6, 'https://www.gutenberg.org/ebooks/24535', 'en', 1736), +(22069, 'The History of England from the First Invasion by the Romans to the Accession of King George the Fifth. Volume 08 of 11.', 'Lingard, John', '2004-01-01', 64, 'https://www.gutenberg.org/ebooks/10700', 'en', 1953), +(22070, 'Punch, or the London Charivari, Volume 100, March 7, 1891', 'Various', '2004-08-15', 6, 'https://www.gutenberg.org/ebooks/13185', 'en', 134), +(22071, 'Theory & History of Historiography', 'Croce, Benedetto', '2017-05-02', 27, 'https://www.gutenberg.org/ebooks/54642', 'en', 9546), +(22072, 'Hawk Carse', 'Gilmore, Anthony', '2009-10-21', 44, 'https://www.gutenberg.org/ebooks/30307', 'en', 26), +(22073, 'La alegría del capitán Ribot', 'Palacio Valdés, Armando', '2013-05-17', 42, 'https://www.gutenberg.org/ebooks/42727', 'es', 1696), +(22074, 'Complete Project Gutenberg William Dean Howells Works', 'Howells, William Dean', '2002-08-01', 104, 'https://www.gutenberg.org/ebooks/3400', 'en', 5574), +(22075, 'Utility of Quaternions in Physics', 'McAulay, Alexander', '2008-08-11', 64, 'https://www.gutenberg.org/ebooks/26262', 'en', 9547), +(22076, 'Captain Billy\'s Whiz Bang, Vol. 2. No. 13, October, 1920\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2017-10-22', 10, 'https://www.gutenberg.org/ebooks/55790', 'en', 372), +(22077, 'Yolanda: Maid of Burgundy', 'Major, Charles', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12057', 'en', 9548), +(22078, 'God and My Neighbour', 'Blatchford, Robert', '2004-07-01', 33, 'https://www.gutenberg.org/ebooks/6172', 'en', 5036), +(22079, 'L\'Illustration, No. 1593, 6 Septembre 1873', 'Various', '2014-10-31', 7, 'https://www.gutenberg.org/ebooks/47255', 'fr', 150), +(22080, 'In the Sargasso Sea\nA Novel', 'Janvier, Thomas A. (Thomas Allibone)', '2006-02-01', 22, 'https://www.gutenberg.org/ebooks/9906', 'en', 26), +(22081, 'De Zwarte Kost', 'Buysse, Cyriel', '2006-01-23', 12, 'https://www.gutenberg.org/ebooks/17525', 'nl', 61), +(22082, 'Little Lord Fauntleroy', 'Burnett, Frances Hodgson', '2007-12-01', 19, 'https://www.gutenberg.org/ebooks/23710', 'en', 3526), +(22083, 'I Am a Nucleus', 'Barr, Stephen', '2016-02-29', 43, 'https://www.gutenberg.org/ebooks/51330', 'en', 1660), +(22084, 'Œuvres complètes de Guy de Maupassant - volume 03', 'Maupassant, Guy de', '2014-07-24', 60, 'https://www.gutenberg.org/ebooks/46387', 'fr', 642), +(22085, 'Peeps at People', 'Holliday, Robert Cortes', '2011-03-24', 17, 'https://www.gutenberg.org/ebooks/35675', 'en', 20), +(22086, 'La Veleta de Gastizar', 'Baroja, Pío', '2016-09-07', 7, 'https://www.gutenberg.org/ebooks/53003', 'es', 731), +(22087, 'The Female Wits', 'Anonymous', '2011-09-27', 37, 'https://www.gutenberg.org/ebooks/37546', 'en', 9549), +(22088, 'The Crisis — Volume 06', 'Churchill, Winston', '2004-10-19', 11, 'https://www.gutenberg.org/ebooks/5393', 'en', 403), +(22089, 'The Devil\'s Elixir, Vol. 1 (of 2)', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2011-06-22', 65, 'https://www.gutenberg.org/ebooks/36494', 'en', 428), +(22090, 'Se-quo-yah; from Harper\'s New Monthly, V.41', 'Unknown', '2003-07-01', 10, 'https://www.gutenberg.org/ebooks/4241', 'en', 9550), +(22091, 'How Robin Hood Once Was a Wait: A Miracle Play or Christmas Masque', 'Hazard, Rowland Gibson', '2014-03-18', 7, 'https://www.gutenberg.org/ebooks/45166', 'en', 9551), +(22092, 'Hero Tales', 'Baldwin, James', '2005-04-14', 49, 'https://www.gutenberg.org/ebooks/15616', 'en', 9552), +(22093, 'Oberman', 'Senancour, Etienne Pivert de', '2010-06-14', 27, 'https://www.gutenberg.org/ebooks/32808', 'fr', 298), +(22094, 'Relation des choses de Yucatan de Diego de Landa\r\nTexte espagnol et traduction française en regard, comprenant les signes du calendrier et de l\'alphabet hiéroglyphique de la langue maya; accompagné de documents divers historiques et chronologiques, avec une grammaire et un vocabulaire abrégés français-maya, précédés d\'un essai sur les sources de l\'histoire primitive du Mexique et de l\'Amérique Centrale, etc., d\'après les monuments égyptiens, et de l\'histoire primitive de l\'égypte d\'après les monuments américains par l\'abbé Brasseur de Bourbourg', 'Brasseur de Bourbourg, abbé', '2019-05-18', 44, 'https://www.gutenberg.org/ebooks/59539', 'myn', 9553), +(22095, 'L\'infedele', 'Serao, Matilde', '2007-05-12', 12, 'https://www.gutenberg.org/ebooks/21423', 'it', 1544), +(22096, 'Sophy of Kravonia: A Novel', 'Hope, Anthony', '2012-08-04', 26, 'https://www.gutenberg.org/ebooks/40414', 'en', 321), +(22097, 'The Red Cross Girl', 'Davis, Richard Harding', '1999-05-01', 25, 'https://www.gutenberg.org/ebooks/1733', 'en', 1426), +(22098, 'The Sky Trap', 'Long, Frank Belknap', '2008-01-03', 27, 'https://www.gutenberg.org/ebooks/24151', 'en', 26), +(22099, 'The Diary of a Freshman', 'Flandrau, Charles Macomb', '2014-02-12', 12, 'https://www.gutenberg.org/ebooks/44888', 'en', 4642), +(22100, 'Yeast: a Problem', 'Kingsley, Charles', '2003-12-01', 34, 'https://www.gutenberg.org/ebooks/10364', 'en', 9554), +(22101, 'The Birth of Civilization in the Near East', 'Frankfort, Henri', '2018-02-15', 28, 'https://www.gutenberg.org/ebooks/56571', 'en', 673), +(22102, 'The Idler Magazine, Volume III, March 1893\nAn Illustrated Monthly', 'Various', '2008-04-17', 48, 'https://www.gutenberg.org/ebooks/25083', 'en', 2370), +(22103, 'König Nußknacker und der arme Reinhold\nEin Kindermährchen in Bildern', 'Hoffmann, Heinrich', '2010-04-17', 61, 'https://www.gutenberg.org/ebooks/32034', 'de', 3059), +(22104, 'Life and Times of David. Miscellaneous Writings of C. H. Mackintosh, vol. VI', 'Mackintosh, Charles Henry', '2013-03-15', 28, 'https://www.gutenberg.org/ebooks/42343', 'en', 3575), +(22105, 'Römische Geschichte — Band 5', 'Mommsen, Theodor', '2002-02-01', 32, 'https://www.gutenberg.org/ebooks/3064', 'de', 6793), +(22106, 'Uncanny Tales', 'Various', '2008-09-13', 51, 'https://www.gutenberg.org/ebooks/26606', 'en', 179), +(22107, 'Narrative of the Voyage of H.M.S. Rattlesnake, Commanded By the Late Captain Owen Stanley, R.N., F.R.S. Etc. During the Years 1846-1850.\r\nIncluding Discoveries and Surveys in New Guinea, the Louisiade Archipelago, Etc. to Which Is Added the Account of Mr. E.B. Kennedy\'s Expedition for the Exploration of the Cape York Peninsula. By John Macgillivray, F.R.G.S. Naturalist to the Expedition. — Volume 1', 'MacGillivray, John', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/12433', 'en', 9555), +(22108, 'Servetus and Calvin\nA Study of an Important Epoch in the Early History of the Reformation', 'Willis, Robert', '2017-02-23', 10, 'https://www.gutenberg.org/ebooks/54226', 'en', 9556), +(22109, 'Graveyard of Dreams', 'Piper, H. Beam', '2006-04-03', 77, 'https://www.gutenberg.org/ebooks/18109', 'en', 26), +(22110, 'Index of the Project Gutenberg Works of M. M. Mangasarian', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2019-07-12', 32, 'https://www.gutenberg.org/ebooks/60013', 'en', 198), +(22111, 'Am I Still There?', 'Hall, James R.', '2009-12-26', 27, 'https://www.gutenberg.org/ebooks/30763', 'en', 179), +(22112, 'Taras Bulba: Kertomus kasakkavallan mahtavuuden ajoilta', 'Gogol, Nikolai Vasilevich', '2015-04-11', 10, 'https://www.gutenberg.org/ebooks/48679', 'fi', 5222), +(22113, 'Procès-verbaux de l\'Assemblée générale de la section des Postes\n4 Décembre 1790 - 5 Septembre 1792', 'Braesch, F. (Frédéric)', '2013-07-24', 7, 'https://www.gutenberg.org/ebooks/43291', 'fr', 9557), +(22114, 'Memoirs of the Court of Louis XIV. and of the Regency — Volume 04', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2004-12-03', 22, 'https://www.gutenberg.org/ebooks/3858', 'en', 9358), +(22115, 'The Eternal Maiden', 'Harré, T. Everett (Thomas Everett)', '2005-06-20', 10, 'https://www.gutenberg.org/ebooks/16093', 'en', 9558), +(22116, 'The Road to En-Dor\nBeing an Account of How Two Prisoners of War at Yozgad in Turkey Won Their Way to Freedom', 'Jones, E. H. (Elias Henry)', '2016-04-13', 18, 'https://www.gutenberg.org/ebooks/51754', 'en', 9559), +(22117, 'War', 'Loti, Pierre', '2011-02-08', 26, 'https://www.gutenberg.org/ebooks/35211', 'en', 335), +(22118, 'Vanity, All Is Vanity: A Lecture on Tobacco and its effects', NULL, '2006-07-29', 14, 'https://www.gutenberg.org/ebooks/18935', 'en', 9560), +(22119, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Complete', 'Wake, William', '2004-12-18', 123, 'https://www.gutenberg.org/ebooks/6516', 'en', 7966), +(22120, 'El libro de las mil noches y una noche; t. 2', 'Anonymous', '2014-12-11', 79, 'https://www.gutenberg.org/ebooks/47631', 'es', 3756), +(22121, 'Köyhiä ja rikkaita', 'Lassinen, Emil', '2015-12-13', 9, 'https://www.gutenberg.org/ebooks/50686', 'fi', 41), +(22122, 'Destiny', 'Buck, Charles Neville', '2005-11-23', 33, 'https://www.gutenberg.org/ebooks/17141', 'en', 61), +(22123, 'The Dingo Boys: The Squatters of Wallaby Range', 'Fenn, George Manville', '2007-11-06', 9, 'https://www.gutenberg.org/ebooks/23374', 'en', 421), +(22124, 'The Boys of Crawford\'s Basin\nThe Story of a Mountain Ranch in the Early Days of Colorado', 'Hamp, Sidford F. (Sidford Frederick)', '2008-08-26', 22, 'https://www.gutenberg.org/ebooks/26434', 'en', 3946), +(22125, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 528, January 7, 1832', 'Various', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12601', 'en', 133), +(22126, 'Scritti editi e postumi', 'Bini, Carlo', '2015-08-04', 18, 'https://www.gutenberg.org/ebooks/49599', 'it', 3942), +(22127, 'Gypsy Verses', 'Whitney, Helen Hay', '2013-02-23', 9, 'https://www.gutenberg.org/ebooks/42171', 'en', 178), +(22128, 'Books and Bookmen', 'Maclaren, Ian', '2002-06-01', 19, 'https://www.gutenberg.org/ebooks/3256', 'en', 9561), +(22129, 'The First Little Pet Book with Ten Short Stories in Words of Three and Four Letters', 'Fanny, Aunt', '2010-03-03', 91, 'https://www.gutenberg.org/ebooks/31483', 'en', 388), +(22130, 'The Deliverance: A Romance of the Virginia Tobacco Fields', 'Glasgow, Ellen Anderson Gholson', '2000-11-01', 44, 'https://www.gutenberg.org/ebooks/2384', 'en', 7015), +(22131, 'The Humourous Story of Farmer Bumpkin\'s Lawsuit', 'Harris, Richard', '2009-11-27', 10, 'https://www.gutenberg.org/ebooks/30551', 'en', 9562), +(22132, 'The Merchant Prince of Cornville: A Comedy', 'Gross, Samuel Eberly', '2017-01-22', 10, 'https://www.gutenberg.org/ebooks/54014', 'en', 2455), +(22133, 'Garrick\'s Pupil', 'Filon, Augustin', '2011-01-21', 22, 'https://www.gutenberg.org/ebooks/35023', 'en', 9563), +(22134, 'Travels in the Great Desert of Sahara, in the Years of 1845 and 1846', 'Richardson, James', '2007-07-17', 15, 'https://www.gutenberg.org/ebooks/22094', 'en', 9564), +(22135, 'The Admirable Crichton', 'Barrie, J. M. (James Matthew)', '2016-04-02', 17, 'https://www.gutenberg.org/ebooks/51566', 'en', 9565), +(22136, 'The Madonna in Art', 'Hurll, Estelle M. (Estelle May)', '2005-12-22', 50, 'https://www.gutenberg.org/ebooks/17373', 'en', 9566), +(22137, 'And All the Earth a Grave', 'MacApp, C. C.', '2007-10-22', 61, 'https://www.gutenberg.org/ebooks/23146', 'en', 179), +(22138, 'Hemsöläiset: Kertomus saaristosta', 'Strindberg, August', '2017-06-02', 5, 'https://www.gutenberg.org/ebooks/54828', 'fi', 9567), +(22139, 'Kater Martinchen', 'Arndt, Ernst Moritz', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6724', 'de', 900), +(22140, 'Children Above 180 IQ Stanford-Binet: Origin and Development', 'Hollingworth, Leta Stetter', '2014-11-20', 103, 'https://www.gutenberg.org/ebooks/47403', 'en', 9568), +(22141, '\"If Youth but Knew!\"', 'Castle, Egerton', '2013-11-25', 8, 'https://www.gutenberg.org/ebooks/44286', 'en', 9569), +(22142, 'Considerations on Religion and Public Education\r\nWith remarks on the speech of M. Dupont delivered in the National Convention of France, together with an address to the ladies, &c. of Great Britain and Ireland', 'More, Hannah', '2011-10-17', 12, 'https://www.gutenberg.org/ebooks/37774', 'en', 9570), +(22143, 'The Southern States, March, 1894\nAn illustrated monthly magazine devoted to the South', 'Various', '2016-10-08', 12, 'https://www.gutenberg.org/ebooks/53231', 'en', 9571), +(22144, 'Ella Barnwell\nA Historical Romance of Border Life', 'Bennett, Emerson', '2005-03-21', 17, 'https://www.gutenberg.org/ebooks/15424', 'en', 1996), +(22145, 'The Runaway\r\nOr, The Adventures of Rodney Roverton', 'Unknown', '2007-05-25', 10, 'https://www.gutenberg.org/ebooks/21611', 'en', 9572), +(22146, 'Ex Voto: An Account of the Sacro Monte or New Jerusalem at Varallo-Sesia\r\nWith Some Notice of Tabachetti\'s Remaining Work at the Sanctuary of Crea', 'Butler, Samuel', '2003-05-01', 15, 'https://www.gutenberg.org/ebooks/4073', 'en', 9573), +(22147, 'New Zealanders at Gallipoli', 'Waite, Fred', '2014-04-09', 26, 'https://www.gutenberg.org/ebooks/45354', 'en', 1074), +(22148, 'The Song of the Sword, and Other Verses', 'Henley, William Ernest', '2008-01-18', 22, 'https://www.gutenberg.org/ebooks/24363', 'en', 54), +(22149, 'M\'appari - Martha', NULL, '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10156', 'it', 4227), +(22150, 'Index of the Project Gutenberg Memoirs of Casanova', 'Casanova, Giacomo', '2018-08-14', 22, 'https://www.gutenberg.org/ebooks/57691', 'en', 198), +(22151, 'Punch, or the London Charivari, Volume 93, December 24, 1887', 'Various', '2012-08-30', 14, 'https://www.gutenberg.org/ebooks/40626', 'en', 134), +(22152, 'History of King Henry the Sixth, Second Part', 'Shakespeare, William', '1998-10-01', 48, 'https://www.gutenberg.org/ebooks/1501', 'en', 2048), +(22153, 'The Utah Batteries: A History\r\nA complete account of the muster-in, sea voyage, battles, skirmishes and barrack life of the Utah batteries, together with biographies of officers and muster-out rolls.', 'Mabey, Charles Rendell', '2010-05-02', 22, 'https://www.gutenberg.org/ebooks/32206', 'en', 9574), +(22154, 'Larry Dexter and the Stolen Boy; or, A Young Reporter on the Lakes', 'Garis, Howard Roger', '2018-03-16', 17, 'https://www.gutenberg.org/ebooks/56743', 'en', 9575), +(22155, 'Sonny, a Christmas Guest', 'Stuart, Ruth McEnery', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11084', 'en', 585), +(22156, 'What\'s in the New York Evening Journal\nAmerica\'s Greatest Evening Newspaper', 'New York evening journal', '2007-02-02', 17, 'https://www.gutenberg.org/ebooks/20505', 'en', 9576), +(22157, 'The Redemption of David Corson', 'Goss, Charles Frederic', '2005-01-19', 12, 'https://www.gutenberg.org/ebooks/14730', 'en', 9577), +(22158, 'The Strange Adventure Of James Shervinton\n1902', 'Becke, Louis', '2008-04-05', 16, 'https://www.gutenberg.org/ebooks/24999', 'en', 324), +(22159, 'Worcestershire in the Nineteenth Century\nA Complete Digest of Facts Occuring in the County since the Commencement of the year 1800', 'Turberville, T. C.', '2013-10-26', 20, 'https://www.gutenberg.org/ebooks/44040', 'en', 9578), +(22160, 'Richard Carvel — Volume 03', 'Churchill, Winston', '2004-10-18', 10, 'https://www.gutenberg.org/ebooks/5367', 'en', 5772), +(22161, 'Cœur de panthère', 'Aimard, Gustave', '2011-06-18', 22, 'https://www.gutenberg.org/ebooks/36460', 'fr', 315), +(22162, 'Among the Esquimaux; or, Adventures under the Arctic Circle', 'Ellis, Edward Sylvester', '2014-03-23', 15, 'https://www.gutenberg.org/ebooks/45192', 'en', 246), +(22163, 'Nell and Her Grandfather, Told from Charles Dickens\'s \"The Old Curiosity Shop\"', 'Anonymous', '2016-05-21', 8, 'https://www.gutenberg.org/ebooks/52125', 'en', 5989), +(22164, 'Shapes and Shadows', 'Cawein, Madison Julius', '2010-07-08', 39, 'https://www.gutenberg.org/ebooks/33112', 'en', 178), +(22165, 'The Book of Husbandry', 'Fitzherbert, Anthony', '2018-07-07', 22, 'https://www.gutenberg.org/ebooks/57457', 'en', 9579), +(22166, 'The Edinburgh Lectures on Mental Science', 'Troward, T. (Thomas)', '2003-12-01', 98, 'https://www.gutenberg.org/ebooks/10390', 'en', 43), +(22167, 'The Life of Michelangelo Buonarroti', 'Symonds, John Addington', '2004-02-01', 73, 'https://www.gutenberg.org/ebooks/11242', 'en', 3594), +(22168, 'The Use of Ropes and Tackle', 'Dana, Homer J. (Homer Jackson)', '2018-02-17', 41, 'https://www.gutenberg.org/ebooks/56585', 'en', 7053), +(22169, 'Castellinaria, and Other Sicilian Diversions', 'Jones, Henry Festing', '2008-04-15', 16, 'https://www.gutenberg.org/ebooks/25077', 'en', 9580), +(22170, 'Âmes d\'automne', 'Lorrain, Jean', '2016-08-28', 40, 'https://www.gutenberg.org/ebooks/52919', 'fr', 298), +(22171, 'A Hymn on the Life, Virtues and Miracles of St. Patrick\nComposed by his Disciple, Saint Fiech, Bishop of Sletty', 'Fiech, Saint, Bishop of Sletty, active 6th century', '2012-04-11', 8, 'https://www.gutenberg.org/ebooks/39428', 'en', 4519), +(22172, 'Swift', 'Stephen, Leslie', '2012-12-01', 25, 'https://www.gutenberg.org/ebooks/41532', 'en', 4242), +(22173, 'The Tatler, Volume 3', 'Addison, Joseph', '2010-03-15', 41, 'https://www.gutenberg.org/ebooks/31645', 'en', 134), +(22174, 'Complete Original Short Stories of Guy De Maupassant', 'Maupassant, Guy de', '2004-10-02', 769, 'https://www.gutenberg.org/ebooks/3090', 'en', 58), +(22175, 'Life on the Mississippi, Part 8.', 'Twain, Mark', '2004-07-10', 4, 'https://www.gutenberg.org/ebooks/8478', 'en', 131), +(22176, 'Society as I Have Found It', 'McAllister, Ward', '2017-08-08', 12, 'https://www.gutenberg.org/ebooks/55300', 'en', 9581), +(22177, 'Bracebridge Hall, or The Humorists', 'Irving, Washington', '2004-09-23', 9, 'https://www.gutenberg.org/ebooks/13515', 'en', 9582), +(22178, 'La serpicina', 'Guerrazzi, Francesco Domenico', '2009-01-06', 16, 'https://www.gutenberg.org/ebooks/27720', 'it', 1544), +(22179, 'Le comte de Monte-Cristo, Tome I', 'Dumas, Alexandre', '2006-03-15', 511, 'https://www.gutenberg.org/ebooks/17989', 'fr', 3828), +(22180, 'The Thirst Quenchers', 'Raphael, Rick', '2009-12-29', 17, 'https://www.gutenberg.org/ebooks/30797', 'en', 26), +(22181, 'Childhood', 'Tolstoy, Leo, graf', '2006-03-22', 503, 'https://www.gutenberg.org/ebooks/2142', 'en', 957), +(22182, 'Under Wolfe\'s Flag; or, The Fight for the Canadas', 'Walker, Rowland', '2013-07-20', 13, 'https://www.gutenberg.org/ebooks/43265', 'en', 9583), +(22183, 'Rollo on the Atlantic', 'Abbott, Jacob', '2007-08-06', 14, 'https://www.gutenberg.org/ebooks/22252', 'en', 9584), +(22184, 'L\'ingénieux hidalgo Don Quichotte de la Manche - Tome II', 'Cervantes Saavedra, Miguel de', '2005-06-14', 34, 'https://www.gutenberg.org/ebooks/16067', 'fr', 89), +(22185, 'La Dora', 'Regaldi, Giuseppe', '2014-08-28', 6, 'https://www.gutenberg.org/ebooks/46717', 'it', 9585), +(22186, 'Familiar Spanish Travels', 'Howells, William Dean', '2005-02-01', 21, 'https://www.gutenberg.org/ebooks/7430', 'en', 1514), +(22187, 'Ade\'s Fables', 'Ade, George', '2006-11-14', 48, 'https://www.gutenberg.org/ebooks/19813', 'en', 1141), +(22188, 'Birds Found on the Arctic Slope of Northern Alaska', 'Bee, James W.', '2010-11-16', 9, 'https://www.gutenberg.org/ebooks/34337', 'en', 9586), +(22189, 'This Side of Paradise', 'Fitzgerald, F. Scott (Francis Scott)', '1997-02-01', 968, 'https://www.gutenberg.org/ebooks/805', 'en', 4405), +(22190, 'The Harmsworth Magazine, v. 1, 1898-1899', 'Magazine, The Harmsworth', '2015-12-12', 10, 'https://www.gutenberg.org/ebooks/50672', 'en', 2370), +(22191, 'The History of Little King Pippin\r\nWith an Account of the Melancholy Death of Four Naughty Boys, Who were Devoured by Wild Beasts. And the Wonderful Delivery of Master Harry Harmless, by a Little White Horse.', 'Bewick, Thomas', '2009-05-12', 87, 'https://www.gutenberg.org/ebooks/28768', 'en', 195), +(22192, 'Fighting the Flames', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 46, 'https://www.gutenberg.org/ebooks/23380', 'en', 9587), +(22193, 'The Chautauquan, Vol. 04, February 1884, No. 5.', 'Chautauqua Institution', '2017-07-17', 7, 'https://www.gutenberg.org/ebooks/55132', 'en', 1115), +(22194, 'Mantegna', 'D\'Anvers, N.', '2013-02-24', 19, 'https://www.gutenberg.org/ebooks/42185', 'en', 9588), +(22195, 'Point Spread Poems', 'Brown, Paul Cameron', '2010-03-02', 3, 'https://www.gutenberg.org/ebooks/31477', 'en', 28), +(22196, 'Sir Gibbie', 'MacDonald, George', '2000-10-01', 108, 'https://www.gutenberg.org/ebooks/2370', 'en', 5479), +(22197, 'Clarissa Harlowe; or the history of a young lady — Volume 2', 'Richardson, Samuel', '2006-01-01', 70, 'https://www.gutenberg.org/ebooks/9798', 'en', 258), +(22198, 'History of the Jews, Vol. 2 (of 6)', 'Graetz, Heinrich', '2013-06-29', 36, 'https://www.gutenberg.org/ebooks/43057', 'en', 5932), +(22199, 'Les Pardaillan — Tome 06 : Les amours du Chico', 'Zévaco, Michel', '2004-10-12', 13, 'https://www.gutenberg.org/ebooks/13727', 'fr', 642), +(22200, 'The Secret of Sarek', 'Leblanc, Maurice', '2011-01-13', 42, 'https://www.gutenberg.org/ebooks/34939', 'en', 9589), +(22201, 'Laatste verzen', 'Gezelle, Guido', '2008-12-12', 12, 'https://www.gutenberg.org/ebooks/27512', 'nl', 8), +(22202, 'L\'Illustration, No. 1587, 26 Juillet 1873', 'Various', '2014-08-07', 10, 'https://www.gutenberg.org/ebooks/46525', 'fr', 150), +(22203, 'The Caxtons: A Family Picture — Volume 16', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7602', 'en', 137), +(22204, 'We\'re Friends, Now', 'Hasse, Henry', '2009-07-22', 28, 'https://www.gutenberg.org/ebooks/29488', 'en', 26), +(22205, 'The Young Franc Tireurs, and Their Adventures in the Franco-Prussian War', 'Henty, G. A. (George Alfred)', '2007-07-13', 142, 'https://www.gutenberg.org/ebooks/22060', 'en', 1180), +(22206, 'Poems in Many Lands', 'Rodd, Rennell', '2016-03-29', 3, 'https://www.gutenberg.org/ebooks/51592', 'en', 532), +(22207, 'Dickey Downy: The Autobiography of a Bird', 'Patterson, Virginia Sharpe', '2005-07-10', 9, 'https://www.gutenberg.org/ebooks/16255', 'en', 6059), +(22208, 'Mr. Bamboo and the Honorable Little God\nA Christmas Story', 'Little, Frances', '2005-12-25', 11, 'https://www.gutenberg.org/ebooks/17387', 'en', 585), +(22209, 'Leslie\'s Loyalty', 'Garvice, Charles', '2015-11-12', 24, 'https://www.gutenberg.org/ebooks/50440', 'en', 61), +(22210, 'Idonia: A Romance of Old London', 'Wallis, Arthur Frederick', '2010-10-20', 15, 'https://www.gutenberg.org/ebooks/34105', 'en', 4434), +(22211, 'Schwarz-Weiß-Rot: Grotesken', 'Mynona', '2013-11-24', 3, 'https://www.gutenberg.org/ebooks/44272', 'de', 9590), +(22212, 'Cæsar\'s Column: A Story of the Twentieth Century', 'Donnelly, Ignatius', '2004-02-01', 48, 'https://www.gutenberg.org/ebooks/5155', 'en', 2612), +(22213, 'The Chronicle of Jocelin of Brakelond: A Picture of Monastic Life in the Days of Abbot Samson', 'Jocelin, de Brakelond, active 1173-1215', '2011-10-17', 11, 'https://www.gutenberg.org/ebooks/37780', 'en', 9591), +(22214, 'Madge Morton\'s Secret', 'Chalmers, Amy D. V.', '2007-03-03', 9, 'https://www.gutenberg.org/ebooks/20737', 'en', 7405), +(22215, 'Chambers\'s Edinburgh Journal, No. 419\r\nVolume 17, New Series, January 10, 1852', 'Various', '2004-12-28', 4, 'https://www.gutenberg.org/ebooks/14502', 'en', 18), +(22216, 'Heart\'s Kindred', 'Gale, Zona', '2016-06-12', 19, 'https://www.gutenberg.org/ebooks/52317', 'en', 109), +(22217, 'An Essay Upon Projects', 'Defoe, Daniel', '2003-05-01', 80, 'https://www.gutenberg.org/ebooks/4087', 'en', 9592), +(22218, 'Pokanoket\'in Filip', 'Irving, Washington', '2011-07-07', 1, 'https://www.gutenberg.org/ebooks/36652', 'fi', 9593), +(22219, 'Hex', 'Janifer, Laurence M.', '2008-01-22', 28, 'https://www.gutenberg.org/ebooks/24397', 'en', 784), +(22220, 'What\'s Mine\'s Mine — Complete', 'MacDonald, George', '2004-06-01', 28, 'https://www.gutenberg.org/ebooks/5969', 'en', 942), +(22221, 'Säilykekuningas', 'Elvestad, Sven', '2018-08-10', 2, 'https://www.gutenberg.org/ebooks/57665', 'fi', 286), +(22222, 'Across the Continent by the Lincoln Highway', 'Gladding, Effie Price', '2010-08-02', 34, 'https://www.gutenberg.org/ebooks/33320', 'en', 9594), +(22223, 'Hi Jolly!', 'Kjelgaard, Jim', '2012-12-24', 19, 'https://www.gutenberg.org/ebooks/41700', 'en', 5512), +(22224, 'La Fontana de Oro', 'Pérez Galdós, Benito', '2004-02-01', 40, 'https://www.gutenberg.org/ebooks/11070', 'es', 2564), +(22225, '子不語', 'Yuan, Mei', '2008-04-30', 29, 'https://www.gutenberg.org/ebooks/25245', 'zh', 9595), +(22226, 'How to Make Friends', 'Harmon, Jim', '2016-01-01', 35, 'https://www.gutenberg.org/ebooks/50818', 'en', 9596), +(22227, 'Long Live the King!', 'Rinehart, Mary Roberts', '2001-07-01', 40, 'https://www.gutenberg.org/ebooks/2714', 'en', 1907), +(22228, 'José Estevão', 'Lima, Jaime de Magalhães', '2009-05-21', 26, 'https://www.gutenberg.org/ebooks/28902', 'pt', 9597), +(22229, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 11 of 12)', 'Frazer, James George', '2013-07-09', 43, 'https://www.gutenberg.org/ebooks/43433', 'en', 5025), +(22230, 'Cardinal Pole; Or, The Days of Philip and Mary: An Historical Romance', 'Ainsworth, William Harrison', '2017-04-07', 10, 'https://www.gutenberg.org/ebooks/54484', 'en', 6270), +(22231, 'The Rim of the Desert', 'Anderson, Ada Woodruff', '2004-08-31', 19, 'https://www.gutenberg.org/ebooks/13343', 'en', 918), +(22232, 'More Beasts (For Worse Children)', 'Belloc, Hilaire', '2008-11-06', 59, 'https://www.gutenberg.org/ebooks/27176', 'en', 1801), +(22233, 'Cathay', 'Li, Bai', '2006-11-07', 12, 'https://www.gutenberg.org/ebooks/19679', 'en', 8), +(22234, 'The Teacher\r\nMoral Influences Employed in the Instruction and Government of the Young', 'Abbott, Jacob', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12291', 'en', 1302), +(22235, 'The Transient Lake; or, Frank Reade, Jr.\'s Adventures in a Mysterious Country', 'Senarens, Luis', '2017-09-16', 14, 'https://www.gutenberg.org/ebooks/55556', 'en', 26), +(22236, 'John Sherman; and, Dhoya', 'Yeats, W. B. (William Butler)', '2015-06-02', 8, 'https://www.gutenberg.org/ebooks/49109', 'en', 9598), +(22237, 'La hermana San Sulpicio', 'Palacio Valdés, Armando', '2010-01-18', 64, 'https://www.gutenberg.org/ebooks/31013', 'es', 1696), +(22238, 'Scènes de la vie Hollandaise, par Hildebrand', 'Hildebrand', '2015-09-21', 16, 'https://www.gutenberg.org/ebooks/50024', 'fr', 9599), +(22239, 'L\'Émigré', 'Sénac de Meilhan, Gabriel', '2010-12-04', 12, 'https://www.gutenberg.org/ebooks/34561', 'fr', 5128), +(22240, 'Jussi ja Lassi', 'Jotuni, Maria', '2014-10-11', 11, 'https://www.gutenberg.org/ebooks/47093', 'fi', 175), +(22241, 'Reise in Südamerika. Erster Band.', 'Bibra, Ernst, Freiherr von', '2014-06-29', 8, 'https://www.gutenberg.org/ebooks/46141', 'de', 227), +(22242, 'Notes and Queries, Number 78, April 26, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-12', 10, 'https://www.gutenberg.org/ebooks/26898', 'en', 105), +(22243, '搜神後記', 'Tao, Qian', '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/7266', 'zh', 9595), +(22244, 'Bull-dog Drummond: The Adventures of a Demobilised Officer Who Found Peace Dull', 'McNeile, H. C. (Herman Cyril)', '2015-09-10', 42, 'https://www.gutenberg.org/ebooks/49935', 'en', 128), +(22245, 'The Story of the White-Rock Cove', 'Anonymous', '2007-08-26', 20, 'https://www.gutenberg.org/ebooks/22404', 'en', 5372), +(22246, 'The Skipper and the Skipped: Being the Shore Log of Cap\'n Aaron Sproul', 'Day, Holman', '2005-09-01', 13, 'https://www.gutenberg.org/ebooks/16631', 'en', 1391), +(22247, 'Harper\'s Young People, January 31, 1882\nAn Illustrated Weekly', 'Various', '2016-08-11', 1, 'https://www.gutenberg.org/ebooks/52773', 'en', 479), +(22248, 'The Colored Inventor: A Record of Fifty Years', 'Baker, Henry E. (Henry Edwin)', '2007-05-03', 36, 'https://www.gutenberg.org/ebooks/21281', 'en', 9600), +(22249, 'Dorothy\'s Double. Volume 2 (of 3)', 'Henty, G. A. (George Alfred)', '2011-05-27', 21, 'https://www.gutenberg.org/ebooks/36236', 'en', 2496), +(22250, 'Mary of Plymouth: A Story of the Pilgrim Settlement', 'Otis, James', '2014-01-07', 21, 'https://www.gutenberg.org/ebooks/44616', 'en', 9601), +(22251, 'A Thorny Path — Volume 02', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5531', 'en', 1814), +(22252, 'The Best Nonsense Verses', NULL, '2007-01-15', 51, 'https://www.gutenberg.org/ebooks/20353', 'en', 2981), +(22253, 'Index of the Project Gutenberg Works of Henry Fielding', 'Fielding, Henry', '2018-11-07', 6, 'https://www.gutenberg.org/ebooks/58249', 'en', 198), +(22254, 'Punch, or the London Charivari, Volume 102, January 9, 1892', 'Various', '2004-11-26', 6, 'https://www.gutenberg.org/ebooks/14166', 'en', 134), +(22255, 'The Unwritten Literature of the Hopi', 'Lockett, Hattie Greene', '2005-05-24', 96, 'https://www.gutenberg.org/ebooks/15888', 'en', 3949), +(22256, 'Planet of the Gods', 'Williams, Robert Moore', '2010-06-05', 37, 'https://www.gutenberg.org/ebooks/32696', 'en', 67), +(22257, 'De waarheid over Esperanto en Ido = La vérité sur l\'Esperanto et l\'Ido', 'Witteryck, Antoon Jozef', '2012-11-14', 14, 'https://www.gutenberg.org/ebooks/41364', 'fr', 9602), +(22258, 'In the Claws of the German Eagle', 'Williams, Albert Rhys', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11414', 'en', 449), +(22259, 'Merry Words for Merry Children', 'Hoatson, A.', '2008-05-27', 15, 'https://www.gutenberg.org/ebooks/25621', 'en', 1801), +(22260, 'Seventeen Years Among the Sea Dyaks of Borneo\nA Record of Intimate Association with the Natives of the Bornean Jungles', 'Gomes, Edwin Herbert', '2018-05-23', 9, 'https://www.gutenberg.org/ebooks/57201', 'en', 9603), +(22261, 'Œuvres complètes de lord Byron, Tome 12\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2010-09-17', 11, 'https://www.gutenberg.org/ebooks/33744', 'fr', 3504), +(22262, 'The Double-Dealer: A Comedy', 'Congreve, William', '1998-02-01', 34, 'https://www.gutenberg.org/ebooks/1191', 'en', 907), +(22263, 'The Pullman Boycott: A Complete History of the R.R. Strike', 'Burns, W. F.', '2011-05-01', 8, 'https://www.gutenberg.org/ebooks/36004', 'en', 9604), +(22264, 'Bert Wilson, Marathon Winner', 'Duffield, J. W.', '2012-05-31', 20, 'https://www.gutenberg.org/ebooks/39870', 'en', 3529), +(22265, 'An Essay on the Effects of Opium. Considered as a Poison', 'Awsiter, John', '2016-07-09', 19, 'https://www.gutenberg.org/ebooks/52541', 'en', 9605), +(22266, 'Réflexions sur le sort des Noirs dans nos colonies', 'Lescallier, Daniel, baron', '2005-03-08', 15, 'https://www.gutenberg.org/ebooks/15286', 'fr', 9606), +(22267, 'Sophisms of the Protectionists', 'Bastiat, Frédéric', '2006-12-22', 63, 'https://www.gutenberg.org/ebooks/20161', 'en', 1312), +(22268, 'Gwaith Samuel Roberts', 'Roberts, Samuel', '2004-12-14', 12, 'https://www.gutenberg.org/ebooks/14354', 'cy', 9607), +(22269, 'Die Philosophie der Freiheit: Grundzüge einer modernen Weltanschauung', 'Steiner, Rudolf', '2016-11-10', 26, 'https://www.gutenberg.org/ebooks/53493', 'de', 279), +(22270, 'Der Gärtner', 'Tagore, Rabindranath', '2013-12-14', 21, 'https://www.gutenberg.org/ebooks/44424', 'de', 9608), +(22271, 'The Lord of Death and the Queen of Life', 'Flint, Homer Eon', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/5703', 'en', 9609), +(22272, 'The Dawn of All', 'Benson, Robert Hugh', '2004-03-01', 55, 'https://www.gutenberg.org/ebooks/11626', 'en', 26), +(22273, 'Camp Fires of the Wolf Patrol', 'Douglas, Alan, Captain', '2011-07-24', 11, 'https://www.gutenberg.org/ebooks/36838', 'en', 1002), +(22274, 'Blue Ridge Country', 'Thomas, Jean', '2008-05-10', 28, 'https://www.gutenberg.org/ebooks/25413', 'en', 9610), +(22275, 'An Historical Sketch of the Conceptions of Memory among the Ancients', 'Burnham, William Henry', '2019-07-28', 865, 'https://www.gutenberg.org/ebooks/59995', 'en', 9611), +(22276, 'Encyclopaedia Britannica, 11th Edition, \"Japan\" (part) to \"Jeveros\"\r\nVolume 15, Slice 3', 'Various', '2012-10-23', 20, 'https://www.gutenberg.org/ebooks/41156', 'en', 1081), +(22277, 'The Strand Magazine, Vol. 01, No. 03, March 1891\r\nAn Illustrated Monthly', 'Various', '2012-06-26', 22, 'https://www.gutenberg.org/ebooks/40084', 'en', 4041), +(22278, 'Jean-Christophe IV\r\nKapinoitsija', 'Rolland, Romain', '2019-02-09', 3, 'https://www.gutenberg.org/ebooks/58847', 'fi', 1061), +(22279, 'Ticknor and Company Book Catalog (1887)', 'Ticknor and Company', '2010-08-29', 6, 'https://www.gutenberg.org/ebooks/33576', 'en', 9612), +(22280, 'The Harmonicon. Part the First', 'Various', '2018-04-23', 6, 'https://www.gutenberg.org/ebooks/57033', 'en', 9613), +(22281, 'Bully and Bawly No-Tail (the Jumping Frogs)', 'Garis, Howard Roger', '2006-06-16', 8, 'https://www.gutenberg.org/ebooks/18599', 'en', 625), +(22282, 'Tapani Löfvingin seikkailut', 'Wilkuna, Kyösti', '2004-08-13', 10, 'https://www.gutenberg.org/ebooks/13171', 'fi', 61), +(22283, 'The Faithful Promiser', 'Macduff, John R. (John Ross)', '2008-11-28', 11, 'https://www.gutenberg.org/ebooks/27344', 'en', 3046), +(22284, 'The Yoga Sutras of Patanjali: The Book of the Spiritual Man', 'Patañjali', '2001-02-01', 727, 'https://www.gutenberg.org/ebooks/2526', 'en', 9614), +(22285, 'Freaks of Fanaticism, and Other Strange Events', 'Baring-Gould, S. (Sabine)', '2013-08-30', 75, 'https://www.gutenberg.org/ebooks/43601', 'en', 4632), +(22286, 'The Genera of Phyllomedusine Frogs (Anura: Hylidae)', 'Duellman, William Edward', '2010-02-08', 26, 'https://www.gutenberg.org/ebooks/31221', 'en', 9615), +(22287, 'Les mille et une nuits, tome premier', NULL, '2008-08-01', 13, 'https://www.gutenberg.org/ebooks/26296', 'en', 3347), +(22288, 'A Child\'s Story Garden', NULL, '2005-04-01', 12, 'https://www.gutenberg.org/ebooks/7868', 'en', 388), +(22289, 'Dave Porter\'s Great Search; Or, The Perils of a Young Civil Engineer', 'Stratemeyer, Edward', '2017-10-17', 23, 'https://www.gutenberg.org/ebooks/55764', 'en', 9616), +(22290, 'Northern Lights, Volume 1.', 'Parker, Gilbert', '2004-07-01', 16, 'https://www.gutenberg.org/ebooks/6186', 'en', 2261), +(22291, 'Romantic Spain: A Record of Personal Experiences (Vol. I)', 'O\'Shea, John Augustus', '2010-12-25', 65, 'https://www.gutenberg.org/ebooks/34753', 'en', 1514), +(22292, 'Der Dreispitz', 'Alarcón, Pedro Antonio de', '2015-10-14', 20, 'https://www.gutenberg.org/ebooks/50216', 'de', 1463), +(22293, 'A Middle High German Primer\nThird Edition', 'Wright, Joseph', '2007-09-16', 109, 'https://www.gutenberg.org/ebooks/22636', 'en', 9617), +(22294, 'Led Astray and The Sphinx\nTwo Novellas In One Volume', 'Feuillet, Octave', '2005-07-31', 10, 'https://www.gutenberg.org/ebooks/16403', 'en', 61), +(22295, 'A Treasury of War Poetry: British and American Poems of the World War 1914-1917', NULL, '2005-09-01', 104, 'https://www.gutenberg.org/ebooks/8820', 'en', 2100), +(22296, 'L\'Illustration, No. 0062, 4 Mai 1844', 'Various', '2014-07-22', 3, 'https://www.gutenberg.org/ebooks/46373', 'fr', 150), +(22297, 'World\'s Best Histories — Volume 7: France', 'Witt, Madame de (Henriette Elizabeth)', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/7054', 'en', 624), +(22298, 'Psycho-Phone Messages', 'Grierson, Francis', '2011-03-25', 15, 'https://www.gutenberg.org/ebooks/35681', 'en', 504), +(22299, 'The Gospels in the Second Century\nAn Examination of the Critical Part of a Work Entitled \'Supernatural Religion\'', 'Sanday, W. (William)', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/10955', 'en', 9618), +(22300, 'Daddy\'s Little Rhyme Book', NULL, '2019-06-11', 38, 'https://www.gutenberg.org/ebooks/59734', 'en', 343), +(22301, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 568, September 29, 1832', 'Various', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/11887', 'en', 133), +(22302, 'Barnaby: A Novel', 'Ramsay, Rina', '2011-07-11', 3, 'https://www.gutenberg.org/ebooks/36699', 'en', 2004), +(22303, 'Semper Fidelis March', NULL, '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10169', 'en', 9296), +(22304, 'The Black Moth: A Romance of the XVIIIth Century', 'Heyer, Georgette', '2012-01-29', 240, 'https://www.gutenberg.org/ebooks/38703', 'en', 48), +(22305, 'Camilla; or, A Picture of Youth', 'Burney, Fanny', '2012-08-29', 63, 'https://www.gutenberg.org/ebooks/40619', 'en', 9619), +(22306, 'Dissertation on Slavery\r\nWith a Proposal for the Gradual Abolition of it, in the State of Virginia', 'Tucker, St. George', '2010-05-03', 13, 'https://www.gutenberg.org/ebooks/32239', 'en', 3779), +(22307, 'History of the United Netherlands, 1598', 'Motley, John Lothrop', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/4870', 'en', 3372), +(22308, 'Granny\'s Wonderful Chair & Its Tales of Fairy Times', 'Browne, Frances', '2011-04-10', 31, 'https://www.gutenberg.org/ebooks/35820', 'en', 651), +(22309, 'The Autobiography of Mark Rutherford, Edited by his friend Reuben Shapcott', 'White, William Hale', '2002-06-01', 26, 'https://www.gutenberg.org/ebooks/3269', 'en', 1397), +(22310, 'The Face and the Mask', 'Barr, Robert', '2004-11-14', 72, 'https://www.gutenberg.org/ebooks/8681', 'en', 179), +(22311, 'The Ideal', 'Weinbaum, Stanley G. (Stanley Grauman)', '2007-10-05', 32, 'https://www.gutenberg.org/ebooks/22897', 'en', 179), +(22312, '新序', 'Liu, Xiang', '2007-12-21', 19, 'https://www.gutenberg.org/ebooks/23945', 'zh', 1682), +(22313, 'Scorn of Women: A Play In Three Acts', 'London, Jack', '2015-03-12', 13, 'https://www.gutenberg.org/ebooks/48474', 'en', 9620), +(22314, 'Night and Morning, Volume 4', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 16, 'https://www.gutenberg.org/ebooks/9753', 'en', 401), +(22315, 'American Adventures: A Second Trip \'Abroad at home\'', 'Street, Julian', '2006-05-03', 43, 'https://www.gutenberg.org/ebooks/18304', 'en', 9621), +(22316, 'The Fledgling', 'Nordhoff, Charles', '2016-03-25', 10, 'https://www.gutenberg.org/ebooks/51559', 'en', 449), +(22317, 'Aaron the Jew: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2013-06-18', 45, 'https://www.gutenberg.org/ebooks/42972', 'en', 9622), +(22318, 'The New York Stock Exchange in the Crisis of 1914', 'Noble, Henry George Stebbins', '2009-07-18', 13, 'https://www.gutenberg.org/ebooks/29443', 'en', 8814), +(22319, 'Poems with Power to Strengthen the Soul', NULL, '2009-04-22', 19, 'https://www.gutenberg.org/ebooks/28591', 'en', 54), +(22320, 'Frictional Electricity\nFrom \"The Saturday Evening Post.\"', 'Clark, Charles Heber', '2007-10-24', 7, 'https://www.gutenberg.org/ebooks/23179', 'en', 179), +(22321, 'Auskultantin päiväkirja: Pöytälaatikon salaisuuksia', 'Kianto, Ilmari', '2017-05-31', 6, 'https://www.gutenberg.org/ebooks/54817', 'fi', 1566), +(22322, 'Hetty Wesley', 'Quiller-Couch, Arthur', '2005-10-17', 19, 'https://www.gutenberg.org/ebooks/16890', 'en', 98), +(22323, 'Personal Sketches of His Own Times, Vol. 3 (of 3)', 'Barrington, Jonah, Sir', '2015-08-27', 5, 'https://www.gutenberg.org/ebooks/49794', 'en', 8080), +(22324, 'A Brief Commentary on the Apocalypse', 'Bliss, Sylvester', '2008-09-16', 32, 'https://www.gutenberg.org/ebooks/26639', 'en', 9623), +(22325, 'A Little English Gallery', 'Guiney, Louise Imogen', '2017-02-21', 7, 'https://www.gutenberg.org/ebooks/54219', 'en', 8765), +(22326, 'The Mysteries of Free Masonry\nContaining All the Degrees of the Order Conferred in a Master\'s Lodge', 'Morgan, William', '2006-04-09', 136, 'https://www.gutenberg.org/ebooks/18136', 'en', 9624), +(22327, 'Harper\'s Round Table, November 19, 1895', 'Various', '2015-04-05', 2, 'https://www.gutenberg.org/ebooks/48646', 'en', 668), +(22328, 'Der G\'wissenswurm: Bauernkomödie in drei Akten', 'Anzengruber, Ludwig', '2000-05-01', 36, 'https://www.gutenberg.org/ebooks/2189', 'de', 907), +(22329, 'The Bridal of Pennacook\r\nPart 2 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 8, 'https://www.gutenberg.org/ebooks/9561', 'en', 350), +(22330, 'Fables de La Fontaine. Tome Second', 'La Fontaine, Jean de', '2006-03-07', 22, 'https://www.gutenberg.org/ebooks/17942', 'fr', 4590), +(22331, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 08', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 4, 'https://www.gutenberg.org/ebooks/3867', 'en', 4778), +(22332, 'Nobody', 'Vance, Louis Joseph', '2009-08-12', 26, 'https://www.gutenberg.org/ebooks/29671', 'en', 61), +(22333, 'Cantos Sagrados', 'Arriaga, Manuel de', '2007-08-11', 15, 'https://www.gutenberg.org/ebooks/22299', 'pt', 8), +(22334, 'The Gospel of Luke for Readers', NULL, '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6529', 'en', 2260), +(22335, 'Aufsätze', 'Walser, Robert', '2011-09-30', 35, 'https://www.gutenberg.org/ebooks/37579', 'de', 7092), +(22336, 'Âmona; The Child; And The Beast; And Others\nFrom \"The Strange Adventure Of James Shervinton and Other\nStories\" - 1902', 'Becke, Louis', '2008-03-29', 10, 'https://www.gutenberg.org/ebooks/24952', 'en', 179), +(22337, 'The Persian Mystics: Jalálu\'d-dín Rúmí', 'Jalal al-Din Rumi, Maulana', '2014-03-17', 296, 'https://www.gutenberg.org/ebooks/45159', 'en', 5437), +(22338, 'American Poetry, 1922: A Miscellany', NULL, '2008-06-23', 121, 'https://www.gutenberg.org/ebooks/25880', 'en', 994), +(22339, 'The Southern Cross\nA Play in Four Acts', 'Daingerfield, Foxhall', '2005-04-15', 24, 'https://www.gutenberg.org/ebooks/15629', 'en', 427), +(22340, 'Check and Checkmate', 'Miller, Walter M.', '2010-06-16', 35, 'https://www.gutenberg.org/ebooks/32837', 'en', 1238), +(22341, 'The Collected Works of William Hazlitt, Vol. 08 of 12', 'Hazlitt, William', '2019-05-14', 36, 'https://www.gutenberg.org/ebooks/59506', 'en', 5270), +(22342, 'Orpheus and Other Poems', 'Brownlow, Edward Burrough', '2016-12-24', 12, 'https://www.gutenberg.org/ebooks/53800', 'en', 1237), +(22343, 'The Beckoning Hand, and Other Stories', 'Allen, Grant', '2012-01-09', 43, 'https://www.gutenberg.org/ebooks/38531', 'en', 179), +(22344, 'Clementine', 'Lewald, Fanny', '2014-06-14', 15, 'https://www.gutenberg.org/ebooks/45965', 'de', 61), +(22345, 'What is Coming? A Forecast of Things after the War', 'Wells, H. G. (Herbert George)', '2004-02-01', 49, 'https://www.gutenberg.org/ebooks/11289', 'en', 335), +(22346, 'The Little Lame Prince', 'Craik, Dinah Maria Mulock', '2006-01-16', 130, 'https://www.gutenberg.org/ebooks/496', 'en', 1007), +(22347, 'Der Wendekreis - Zweite Folge : Oberlins drei Stufen, Sturreganz', 'Wassermann, Jakob', '2006-06-11', 17, 'https://www.gutenberg.org/ebooks/18552', 'de', 1661), +(22348, 'Judaism', 'Abrahams, Israel', '2004-11-01', 38, 'https://www.gutenberg.org/ebooks/6971', 'en', 851), +(22349, 'Fir-Flower Tablets: Poems Translated from the Chinese', NULL, '2015-02-09', 44, 'https://www.gutenberg.org/ebooks/48222', 'en', 2822), +(22350, 'Reflections; or Sentences and Moral Maxims', 'La Rochefoucauld, François duc de', '2005-10-01', 492, 'https://www.gutenberg.org/ebooks/9105', 'en', 5699), +(22351, 'Freedom', 'Reynolds, Mack', '2009-10-26', 78, 'https://www.gutenberg.org/ebooks/30338', 'en', 1238), +(22352, 'Field Mice as Farm and Orchard Pests', 'Lantz, David E. (David Ernest)', '2013-05-16', 17, 'https://www.gutenberg.org/ebooks/42718', 'en', 9625), +(22353, 'Ray\'s Daughter: A Story of Manila', 'King, Charles', '2006-10-06', 25, 'https://www.gutenberg.org/ebooks/19480', 'en', 9626), +(22354, 'Camp-Fire and Cotton-Field: Southern Adventure in Time of War.\r\nLife with the Union Armies, and Residence on a Louisiana Plantation', 'Knox, Thomas Wallace', '2004-04-01', 37, 'https://www.gutenberg.org/ebooks/12068', 'en', 9627), +(22355, 'Speech of Mr. Cushing, of Massachusetts, on the Right of Petition,\nas Connected with Petitions for the Abolition of Slavery and the Slave Trade\nin the District of Columbia. In The House Of Representatives, January 25, 1836.', 'Cushing, Caleb', '2004-11-09', 0, 'https://www.gutenberg.org/ebooks/13986', 'en', 9628), +(22356, 'Torpan tyttö I: Kuvauksia kansan elämästä', 'Lindgren, Anton Wilhelm', '2010-12-31', 7, 'https://www.gutenberg.org/ebooks/34798', 'fi', 61), +(22357, 'Woman\'s Institute Library of Cookery. Volume 5: Fruit and Fruit Desserts; Canning and Drying; Jelly Making, Preserving and Pickling; Confections; Beverages; the Planning of Meals', 'Woman\'s Institute of Domestic Arts and Sciences', '2006-02-01', 68, 'https://www.gutenberg.org/ebooks/9939', 'en', 103), +(22358, 'Some Observations on the Ethnography and Archaeology of the American Aborigines', 'Morton, Samuel George', '2009-06-24', 14, 'https://www.gutenberg.org/ebooks/29215', 'en', 2635), +(22359, 'The Master\'s Indwelling', 'Murray, Andrew', '2004-07-08', 83, 'https://www.gutenberg.org/ebooks/12854', 'en', 1130), +(22360, 'Vanhasta kylästä ynnä muita kertomuksia', 'Krag, Thomas Peter', '2018-04-03', 4, 'https://www.gutenberg.org/ebooks/56916', 'fi', 1606), +(22361, 'The Tale of Miss Kitty Cat\nSlumber-Town Tales', 'Bailey, Arthur Scott', '2007-04-15', 40, 'https://www.gutenberg.org/ebooks/21078', 'en', 625), +(22362, 'The French Revolution of 1789, as Viewed in the Light of Republican Institutions', 'Abbott, John S. C. (John Stevens Cabot)', '2019-03-30', 39, 'https://www.gutenberg.org/ebooks/59162', 'en', 1536), +(22363, 'Ralph, the Train Dispatcher; Or, The Mystery of the Pay Car', 'Chapman, Allen', '2012-02-27', 17, 'https://www.gutenberg.org/ebooks/38969', 'en', 557), +(22364, 'The Chemistry of Cookery', 'Williams, W. Mattieu (William Mattieu)', '2016-11-06', 89, 'https://www.gutenberg.org/ebooks/53458', 'en', 1369), +(22365, 'Paths of the Mound-Building Indians and Great Game Animals', 'Hulbert, Archer Butler', '2012-09-27', 26, 'https://www.gutenberg.org/ebooks/40873', 'en', 9629), +(22366, 'The Tale of Turkey Proudfoot\nSlumber-Town Tales', 'Bailey, Arthur Scott', '2007-06-16', 19, 'https://www.gutenberg.org/ebooks/21844', 'en', 9630), +(22367, 'On the Supply of Printed Books from the Library to the Reading Room of the British Museum', 'Panizzi, Anthony, Sir', '2012-03-09', 9, 'https://www.gutenberg.org/ebooks/39087', 'en', 9631), +(22368, 'When the World Shook\r\nBeing an Account of the Great Adventure of Bastin, Bickley and Arbuthnot', 'Haggard, H. Rider (Henry Rider)', '1998-06-01', 54, 'https://www.gutenberg.org/ebooks/1368', 'en', 323), +(22369, 'Norway', 'Jungman, Beatrix', '2011-11-28', 10, 'https://www.gutenberg.org/ebooks/38155', 'en', 3611), +(22370, 'An Epoch in History', 'Eley, P. H. (Peter Harden)', '2007-04-05', 25, 'https://www.gutenberg.org/ebooks/20996', 'en', 9632), +(22371, 'The Bath Road: History, Fashion, & Frivolity on an Old Highway', 'Harper, Charles G. (Charles George)', '2011-11-04', 27, 'https://www.gutenberg.org/ebooks/37921', 'en', 226), +(22372, 'Rabindranath Tagore: Een biografische Schets', 'Noto Soeroto', '2019-04-25', 8, 'https://www.gutenberg.org/ebooks/59350', 'nl', 9633), +(22373, 'Evan Harrington — Volume 2', 'Meredith, George', '2003-09-01', 21, 'https://www.gutenberg.org/ebooks/4428', 'en', 6153), +(22374, 'The Path of the King', 'Buchan, John', '1999-11-01', 48, 'https://www.gutenberg.org/ebooks/1966', 'en', 98), +(22375, 'To London Town', 'Morrison, Arthur', '2018-11-14', 35, 'https://www.gutenberg.org/ebooks/58282', 'en', 1079), +(22376, 'Benjamin Constant', 'Castille, Hippolyte', '2007-01-19', 8, 'https://www.gutenberg.org/ebooks/20398', 'fr', 5643), +(22377, 'Slippy McGee, Sometimes Known as the Butterfly Man', 'Oemler, Marie Conway', '2005-05-17', 16, 'https://www.gutenberg.org/ebooks/15843', 'en', 177), +(22378, 'Wellington\'s Army, 1809-1814', 'Oman, Charles', '2018-01-05', 40, 'https://www.gutenberg.org/ebooks/56318', 'en', 9634), +(22379, 'Pleasing Stories for Good Children with Pictures', 'Anonymous', '2008-03-02', 21, 'https://www.gutenberg.org/ebooks/24738', 'en', 388), +(22380, 'Knowledge Is Power:\r\nA View of the Productive Forces of Modern Society and the Results of Labor, Capital and Skill.', 'Knight, Charles', '2011-12-22', 52, 'https://www.gutenberg.org/ebooks/38367', 'en', 9635), +(22381, 'Punch, or the London Charivari, Volume 103, July 9, 1892', 'Various', '2005-02-09', 7, 'https://www.gutenberg.org/ebooks/14991', 'en', 134), +(22382, 'Animal Parasites and Messmates', 'Beneden, P. J. van (Pierre Joseph)', '2015-01-18', 15, 'https://www.gutenberg.org/ebooks/48010', 'en', 6898), +(22383, 'Amy Foster', 'Conrad, Joseph', '2005-11-01', 8, 'https://www.gutenberg.org/ebooks/9337', 'en', 109), +(22384, 'The Assyrian and Hebrew Hymns of Praise', 'Cumming, Charles Gordon', '2015-01-03', 20, 'https://www.gutenberg.org/ebooks/47864', 'en', 9636), +(22385, 'Wee Peter Pug\nThe Story of a Bit of Mischief and What Came of It', 'Aris, Ernest A. (Ernest Alfred)', '2006-07-05', 16, 'https://www.gutenberg.org/ebooks/18760', 'en', 766), +(22386, 'The Religious Spirit of the Slavs\r\nThree Lectures Given in Lent, 1916', 'Velimirović, Nikolaj', '2004-09-07', 34, 'https://www.gutenberg.org/ebooks/13388', 'en', 9637), +(22387, 'Novellen\r\nHausgenossen. — Und Doch! — Der tolle Junker. — Finderlohn. — Glück muß man haben!', 'Arnold, Hans', '2016-04-30', 12, 'https://www.gutenberg.org/ebooks/51901', 'de', 1212), +(22388, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 577, July 7, 1827', 'Various', '2006-02-09', 5, 'https://www.gutenberg.org/ebooks/17728', 'en', 133), +(22389, 'Handboek voor den kaasmaker in Nederland', 'Hollman, Pierre Jean', '2010-01-11', 16, 'https://www.gutenberg.org/ebooks/30936', 'nl', 9638), +(22390, 'The Plant Hunters: Adventures Among the Himalaya Mountains', 'Reid, Mayne', '2009-02-03', 25, 'https://www.gutenberg.org/ebooks/27981', 'en', 2588), +(22391, 'Le notti degli emigrati a Londra', 'Petruccelli della Gattina, Ferdinando', '2014-10-05', 21, 'https://www.gutenberg.org/ebooks/47058', 'it', 860), +(22392, 'Neighbours', 'Stead, Robert J. C.', '2011-03-03', 29, 'https://www.gutenberg.org/ebooks/35478', 'en', 9639), +(22393, 'Vice Versa; or, A Lesson to Fathers', 'Anstey, F.', '2008-10-09', 86, 'https://www.gutenberg.org/ebooks/26853', 'en', 2079), +(22394, 'Spawn of the Comet', 'Rich, H. Thompson (Harold Thompson)', '2009-06-03', 33, 'https://www.gutenberg.org/ebooks/29027', 'en', 26), +(22395, 'A Prefect\'s Uncle', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 149, 'https://www.gutenberg.org/ebooks/6985', 'en', 777), +(22396, 'The American Missionary — Volume 34, No. 06, June, 1880', 'Various', '2017-05-09', 4, 'https://www.gutenberg.org/ebooks/54689', 'en', 562), +(22397, 'The Errand Boy; Or, How Phil Brent Won Success', 'Alger, Horatio, Jr.', '2006-03-15', 123, 'https://www.gutenberg.org/ebooks/462', 'en', 9640); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(22398, 'A Popular Account of Dr. Livingstone\'s Expedition to the Zambesi and Its Tributaries\r\nAnd of the Discovery of Lakes Shirwa and Nyassa, 1858-1864', 'Livingstone, David', '2001-02-01', 40, 'https://www.gutenberg.org/ebooks/2519', 'en', 484), +(22399, 'The Bible, King James version, Book 23: Isaiah', 'Anonymous', '2005-04-01', 21, 'https://www.gutenberg.org/ebooks/8023', 'en', 7052), +(22400, 'Days Before history', 'Hall, H. R. (Harry Reginald)', '2015-06-28', 27, 'https://www.gutenberg.org/ebooks/49304', 'en', 8166), +(22401, 'The Way of an Indian', 'Remington, Frederic', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/7857', 'en', 1357), +(22402, 'Uller Uprising', 'Piper, H. Beam', '2006-10-05', 140, 'https://www.gutenberg.org/ebooks/19474', 'en', 26), +(22403, 'The Fifteen Comforts of Matrimony: Responses From Women', 'Various', '2004-11-08', 156, 'https://www.gutenberg.org/ebooks/13972', 'en', 9641), +(22404, 'Messengers of Evil\nBeing a Further Account of the Lures and Devices of Fantômas', 'Souvestre, Pierre', '2009-03-15', 48, 'https://www.gutenberg.org/ebooks/28333', 'en', 6348), +(22405, 'Miscellanea Curiosa, Vol. 3\r\ncontaining a collection of curious travels, voyages, and natural histories of countries as they have been delivered in to the Royal Society', 'Royal Society (Great Britain)', '2015-10-16', 7, 'https://www.gutenberg.org/ebooks/50229', 'en', 8678), +(22406, 'The Writings of James Russell Lowell in Prose and Poetry, Volume V\nPolitical Essays', 'Lowell, James Russell', '2007-09-15', 11, 'https://www.gutenberg.org/ebooks/22609', 'en', 2268), +(22407, 'The Ship in the Desert', 'Miller, Joaquin', '2013-01-31', 12, 'https://www.gutenberg.org/ebooks/41955', 'en', 178), +(22408, 'Index of the Project Gutenberg Works of Fyodor Dostoevsky', 'Dostoyevsky, Fyodor', '2019-04-03', 106, 'https://www.gutenberg.org/ebooks/59196', 'en', 198), +(22409, 'Napaseudun yössä: Romaani Huippuvuorilta', 'Frich, Øvre Richter', '2018-10-06', 1, 'https://www.gutenberg.org/ebooks/58044', 'fi', 7), +(22410, 'On the Trail of the Immigrant', 'Steiner, Edward Alfred', '2012-09-28', 20, 'https://www.gutenberg.org/ebooks/40887', 'en', 9642), +(22411, 'The Common Lot', 'Herrick, Robert', '2018-09-01', 27, 'https://www.gutenberg.org/ebooks/57830', 'en', 1238), +(22412, 'Punch, or the London Charivari, Volume 153, November 21, 1917', 'Various', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11619', 'en', 134), +(22413, 'L\'Illustration, No. 3279, 30 Décembre 1905', 'Various', '2011-07-21', 5, 'https://www.gutenberg.org/ebooks/36807', 'fr', 150), +(22414, 'Sharps and Flats\r\nA Complete Revelation of the Secrets of Cheating at Games of Chance and Skill', 'Maskelyne, John Nevil', '2012-10-24', 29, 'https://www.gutenberg.org/ebooks/41169', 'en', 2473), +(22415, 'Χοηφόροι', 'Aeschylus', '2012-03-07', 22, 'https://www.gutenberg.org/ebooks/39073', 'el', 1298), +(22416, 'Donahey\'s Cartoons', 'Donahey, J. H. (James Harrison)', '2019-02-12', 18, 'https://www.gutenberg.org/ebooks/58878', 'en', 9643), +(22417, 'Underground Man', 'Tarde, Gabriel de', '2010-08-27', 48, 'https://www.gutenberg.org/ebooks/33549', 'en', 9644), +(22418, 'Sandman\'s Goodnight Stories', 'Walker, Abbie Phillips', '2007-04-02', 31, 'https://www.gutenberg.org/ebooks/20962', 'en', 179), +(22419, 'The Franco-German War of 1870-71', 'Moltke, Helmuth, Graf von', '2011-05-24', 46, 'https://www.gutenberg.org/ebooks/36209', 'en', 3798), +(22420, 'The Seashore Book: Bob and Betty\'s Summer with Captain Hawes', 'Smith, E. Boyd (Elmer Boyd)', '2014-01-08', 29, 'https://www.gutenberg.org/ebooks/44629', 'en', 2794), +(22421, 'The Florist and Horticultural Journal, Vol. II. No. 7, July, 1853\r\nA Monthly Magazine of Horticulture, Agriculture, Botany, Agricultural Chemistry, Entomology, &c.', 'Various', '2018-11-11', 25, 'https://www.gutenberg.org/ebooks/58276', 'en', 9645), +(22422, 'Les Roquevillard', 'Bordeaux, Henry', '2004-11-26', 14, 'https://www.gutenberg.org/ebooks/14159', 'fr', 687), +(22423, 'Travels in England During the Reign of Queen Elizabeth, and Fragmenta Regalia; Or, Observations on Queen Elizabeth, Her Times and Favourites', 'Hentzner, Paul', '1999-12-01', 34, 'https://www.gutenberg.org/ebooks/1992', 'en', 7946), +(22424, 'L\'Illustration, No. 3676, 9 Août 1913', 'Various', '2012-03-24', 1, 'https://www.gutenberg.org/ebooks/39241', 'fr', 150), +(22425, 'Punch, or the London Charivari, Volume 103, July 23, 1892', 'Various', '2005-02-07', 4, 'https://www.gutenberg.org/ebooks/14965', 'en', 134), +(22426, 'The Fourth Estate, vol. 1', 'Palacio Valdés, Armando', '2011-12-23', 6, 'https://www.gutenberg.org/ebooks/38393', 'en', 6050), +(22427, 'The Violin\nSome Account of That Leading Instrument and Its Most Eminent Professors, from Its Earliest Date to the Present Time; with Hints to Amateurs, Anecdotes, etc.', 'Dubourg, George', '2012-07-21', 25, 'https://www.gutenberg.org/ebooks/40289', 'en', 9646), +(22428, 'Orphans of the Void', 'Shaara, Michael', '2016-01-02', 33, 'https://www.gutenberg.org/ebooks/50827', 'en', 831), +(22429, 'Italian Harpsichord-Building in the 16th and 17th Centuries', 'Shortridge, John D.', '2008-11-04', 39, 'https://www.gutenberg.org/ebooks/27149', 'en', 9647), +(22430, 'Traduzioni', 'Guerrazzi, Francesco Domenico', '2015-01-06', 22, 'https://www.gutenberg.org/ebooks/47890', 'it', 9648), +(22431, 'Pictures from Italy', 'Dickens, Charles', '1996-09-01', 164, 'https://www.gutenberg.org/ebooks/650', 'en', 5826), +(22432, 'Three Years\' War', 'De Wet, Christiaan Rudolf', '2006-07-08', 40, 'https://www.gutenberg.org/ebooks/18794', 'en', 1311), +(22433, 'Valoa kansalle\nDraamallinen kuvaelma kolmessa näytöksessä', 'Soini, Wilho', '2006-10-27', 15, 'https://www.gutenberg.org/ebooks/19646', 'fi', 402), +(22434, 'Calligrammes: Poèmes de la paix et de la guerre (1913-1916)', 'Apollinaire, Guillaume', '2017-09-17', 126, 'https://www.gutenberg.org/ebooks/55569', 'fr', 2100), +(22435, 'Metapsychical Phenomena: Methods and Observations', 'Maxwell, J. (Joseph)', '2014-09-23', 11, 'https://www.gutenberg.org/ebooks/46942', 'en', 9649), +(22436, 'The Outdoor Girls at Wild Rose Lodge; or, the Hermit of Moonlight Falls', 'Hope, Laura Lee', '2005-06-01', 20, 'https://www.gutenberg.org/ebooks/8211', 'en', 62), +(22437, 'Kun ruusut kukkivat: 5-näytöksinen huvinäytelmä', 'Lassila, Maiju', '2015-06-04', 13, 'https://www.gutenberg.org/ebooks/49136', 'fi', 382), +(22438, 'The Van Dwellers: A Strenuous Quest for a Home', 'Paine, Albert Bigelow', '2009-02-17', 20, 'https://www.gutenberg.org/ebooks/28101', 'en', 9650), +(22439, 'Delineations of the Ox Tribe: The Natural History of Bulls, Bisons, and Buffaloes.\r\nExhibiting all the Known Species and the More Remarkable Varieties of the Genus Bos.', 'Vasey, George', '2009-02-03', 10, 'https://www.gutenberg.org/ebooks/27975', 'en', 9651), +(22440, 'Shock and Awe — Achieving Rapid Dominance', 'Ullman, Harlan', '2005-01-01', 34, 'https://www.gutenberg.org/ebooks/7259', 'en', 9652), +(22441, 'The Everett Massacre: A history of the class struggle in the lumber industry', 'Smith, Walker C.', '2010-03-28', 15, 'https://www.gutenberg.org/ebooks/31810', 'en', 9653), +(22442, 'The Ornithologist and Oölogist. Vol. VIII No. 3, March 1883\nBirds: Their Nests and Eggs', 'Various', '2019-01-04', 9, 'https://www.gutenberg.org/ebooks/58612', 'en', 7771), +(22443, 'A Son of the City\nA Story of Boy Life', 'Seely, Herman Gastrell', '2007-02-28', 30, 'https://www.gutenberg.org/ebooks/20708', 'en', 8611), +(22444, 'The Royal Road to Health; or, the Secret of Health Without Drugs', 'Tyrrell, Chas. A. (Charles Alfred)', '2016-06-14', 21, 'https://www.gutenberg.org/ebooks/52328', 'en', 9654), +(22445, 'A Holiday in the Happy Valley with Pen and Pencil', 'Swinburne, T. R.', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11873', 'en', 3479), +(22446, 'Gallegher and Other Stories', 'Davis, Richard Harding', '2004-06-01', 32, 'https://www.gutenberg.org/ebooks/5956', 'en', 770), +(22447, 'History of Llangollen and Its Vicinity\r\nIncluding a Circuit of About Seven Miles', 'Simpson, W. T. (Wilfrid Tord)', '2012-05-05', 3, 'https://www.gutenberg.org/ebooks/39625', 'en', 9655), +(22448, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce — Complete (1600-1609)', 'Motley, John Lothrop', '2004-11-08', 28, 'https://www.gutenberg.org/ebooks/4884', 'en', 3372), +(22449, 'Az élet komédiásai (1. rész)\r\nRegény', 'Jókai, Mór', '2018-03-19', 5, 'https://www.gutenberg.org/ebooks/56788', 'hu', 234), +(22450, 'Modern English Books of Power', 'Fitch, George Hamlin', '2006-09-09', 18, 'https://www.gutenberg.org/ebooks/19222', 'en', 2644), +(22451, 'Mammals from Tamaulipas, Mexico', 'Baker, Rollin H. (Rollin Harold)', '2010-02-28', 18, 'https://www.gutenberg.org/ebooks/31448', 'en', 130), +(22452, 'Welsh Fairy-Tales and Other Stories', NULL, '2005-08-01', 70, 'https://www.gutenberg.org/ebooks/8675', 'en', 9656), +(22453, 'The Second Epistle of Paul the Apostle to Timothy', NULL, '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22863', 'en', 7921), +(22454, 'Kavaluus ja rakkaus: Murhenäytelmä viidessä näytöksessä', 'Schiller, Friedrich', '2015-07-30', 4, 'https://www.gutenberg.org/ebooks/49552', 'fi', 1298), +(22455, 'Montreal from 1535 to 1914. Vol. 3. Biographical', 'Atherton, William H. (William Henry)', '2015-03-13', 11, 'https://www.gutenberg.org/ebooks/48480', 'en', 7592), +(22456, 'Millet', 'Turner, Percy Moore', '2013-06-30', 20, 'https://www.gutenberg.org/ebooks/43068', 'en', 9657), +(22457, 'Manual of Ship Subsidies\r\nAn Historical Summary of the Systems of All Nations', 'Bacon, Edwin M. (Edwin Monroe)', '2004-10-11', 17, 'https://www.gutenberg.org/ebooks/13718', 'en', 9658), +(22458, 'The Jumblies, and Other Nonsense Verses', 'Lear, Edward', '2011-01-10', 89, 'https://www.gutenberg.org/ebooks/34906', 'en', 986), +(22459, 'Child Christopher and Goldilind the Fair', 'Morris, William', '2008-07-02', 144, 'https://www.gutenberg.org/ebooks/234', 'en', 580), +(22460, 'California Missions: A Guide to the Historic Trails of the Padres', 'Brown, Karl F. (Karl Frederick)', '2017-11-11', 13, 'https://www.gutenberg.org/ebooks/55931', 'en', 9659), +(22461, 'La Cour de Lunéville au XVIIIe siècle\r\nLes marquises de Boufflers et du Châtelet, Voltaire, Devau, Saint-Lambert, etc.', 'Maugras, Gaston', '2013-06-19', 8, 'https://www.gutenberg.org/ebooks/42986', 'fr', 9660), +(22462, 'The Blossoms of Morality\nIntended for the Amusement and Instruction of Young Ladies and Gentlemen', 'Berquin, M. (Arnaud)', '2013-09-30', 5, 'https://www.gutenberg.org/ebooks/43854', 'en', 6279), +(22463, 'Good Luck', 'Meade, L. T.', '2009-04-12', 8, 'https://www.gutenberg.org/ebooks/28565', 'en', 3621), +(22464, 'Notes of a Twenty-Five Years\' Service in the Hudson\'s Bay Territory. Volume II.', 'McLean, John', '2005-10-13', 7, 'https://www.gutenberg.org/ebooks/16864', 'en', 9661), +(22465, 'Morien: A Metrical Romance Rendered into English Prose from the Mediæval Dutch', 'Weston, Jessie L. (Jessie Laidlay)', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/8447', 'en', 9662), +(22466, 'The adventures of Hernan Cortes, the conqueror of Mexico', 'Hawks, Francis L. (Francis Lister)', '2015-08-22', 23, 'https://www.gutenberg.org/ebooks/49760', 'en', 9663), +(22467, 'The Solomon Islands and Their Natives', 'Guppy, H. B. (Henry Brougham)', '2013-03-22', 14, 'https://www.gutenberg.org/ebooks/42388', 'en', 9664), +(22468, 'The Admirable Tinker\nChild of the World', 'Jepson, Edgar', '2006-08-08', 25, 'https://www.gutenberg.org/ebooks/19010', 'en', 1902), +(22469, 'The Conflict with Slavery\r\nPart 1 from The Works of John Greenleaf Whittier, Volume VII', 'Whittier, John Greenleaf', '2005-12-01', 13, 'https://www.gutenberg.org/ebooks/9595', 'en', 1174), +(22470, 'Occult Chemistry: Clairvoyant Observations on the Chemical Elements', 'Besant, Annie', '2005-06-14', 118, 'https://www.gutenberg.org/ebooks/16058', 'en', 3324), +(22471, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 2', 'Goldsmith, Lewis', '2004-12-04', 5, 'https://www.gutenberg.org/ebooks/3893', 'en', 8569), +(22472, 'Submarine Warfare of To-day\r\nHow the Submarine Menace Was Met and Vanquished, with Descriptions of the Inventions and Devices Used, Fast Boats, Mystery Ships, Nets, Aircraft, &c. &c., Also Describing the Selection and Training of the Enormous Personnel Used in This New Branch of the Navy', 'Domville-Fife, Charles W. (Charles William)', '2009-08-13', 41, 'https://www.gutenberg.org/ebooks/29685', 'en', 2511), +(22473, 'Decadence, and Other Essays on the Culture of Ideas', 'Gourmont, Remy de', '2014-08-29', 25, 'https://www.gutenberg.org/ebooks/46728', 'en', 1964), +(22474, 'Avarice--Anger: Two of the Seven Cardinal Sins', 'Sue, Eugène', '2010-11-13', 14, 'https://www.gutenberg.org/ebooks/34308', 'en', 58), +(22475, 'Divided Skates', 'Raymond, Evelyn', '2009-05-11', 15, 'https://www.gutenberg.org/ebooks/28757', 'en', 3621), +(22476, 'The Chinese Classics — Prolegomena', NULL, '2001-12-01', 17, 'https://www.gutenberg.org/ebooks/2941', 'en', 4497), +(22477, 'Beggars on Horseback', 'Jesse, F. Tennyson (Fryniwyd Tennyson)', '2010-10-20', 32, 'https://www.gutenberg.org/ebooks/33911', 'en', 61), +(22478, 'The Mystery Boys and the Secret of the Golden Sun', 'Powell, Van', '2018-12-06', 9, 'https://www.gutenberg.org/ebooks/58420', 'en', 9665), +(22479, 'The Inside of the Cup — Volume 03', 'Churchill, Winston', '2004-10-17', 22, 'https://www.gutenberg.org/ebooks/5358', 'en', 9666), +(22480, 'Birds, Illustrated by Color Photography, Vol. 1, No. 4\r\nApril, 1897', 'Various', '2008-06-22', 49, 'https://www.gutenberg.org/ebooks/25874', 'en', 490), +(22481, 'A Group of Eastern Romances and Stories from the Persian, Tamil and Urdu', NULL, '2018-07-08', 51, 'https://www.gutenberg.org/ebooks/57468', 'en', 9667), +(22482, 'The Book of Bulbs', 'Arnott, Samuel', '2014-02-08', 17, 'https://www.gutenberg.org/ebooks/44843', 'en', 7892), +(22483, 'The Boy Aviators on Secret Service; Or, Working with Wireless', 'Goldfrap, John Henry', '2014-06-15', 23, 'https://www.gutenberg.org/ebooks/45991', 'en', 9668), +(22484, 'Soldan\'s Geschichte der Hexenprozesse. Zweiter Band', 'Soldan, Wilhelm Gottlieb', '2008-04-11', 27, 'https://www.gutenberg.org/ebooks/25048', 'de', 9669), +(22485, 'Kuvauksia', 'Järvi, K. A. (Kaarlo August)', '2016-08-29', 1, 'https://www.gutenberg.org/ebooks/52926', 'fi', 665), +(22486, 'A Gamble with Life', 'Hocking, Silas K. (Silas Kitto)', '2012-04-10', 14, 'https://www.gutenberg.org/ebooks/39417', 'en', 61), +(22487, 'The Truants', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-27', 26, 'https://www.gutenberg.org/ebooks/38685', 'en', 61), +(22488, 'The Girl\'s Own Paper, Vol. XX. No. 1006, April 8, 1899', 'Various', '2018-08-19', 22, 'https://www.gutenberg.org/ebooks/57728', 'en', 563), +(22489, 'The Gilded Age, Part 7.', 'Twain, Mark', '2004-06-20', 11, 'https://www.gutenberg.org/ebooks/5824', 'en', 1238), +(22490, 'Eugenics and Other Evils', 'Chesterton, G. K. (Gilbert Keith)', '2008-05-03', 148, 'https://www.gutenberg.org/ebooks/25308', 'en', 7357), +(22491, 'Half-Hours with Jimmieboy', 'Bangs, John Kendrick', '2012-05-22', 16, 'https://www.gutenberg.org/ebooks/39757', 'en', 112), +(22492, 'Hirsipuumies: Sydäntalven tarina', 'Schildt, Runar', '2019-01-23', 7, 'https://www.gutenberg.org/ebooks/58760', 'fi', 5375), +(22493, 'Answering the Phone: A Farce', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2016-10-28', 14, 'https://www.gutenberg.org/ebooks/53388', 'en', 9670), +(22494, 'State of the Union Addresses', 'Tyler, John', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/5018', 'en', 1926), +(22495, 'Tommy and Grizel', 'Barrie, J. M. (James Matthew)', '2004-04-01', 56, 'https://www.gutenberg.org/ebooks/11901', 'en', 9671), +(22496, 'Tee työtä eläkä joudu epätoivoon!', 'Carlyle, Thomas', '2005-07-17', 13, 'https://www.gutenberg.org/ebooks/16318', 'fi', 779), +(22497, 'Snagged and Sunk; Or, The Adventures of a Canvas Canoe', 'Castlemon, Harry', '2017-10-28', 3, 'https://www.gutenberg.org/ebooks/55843', 'en', 246), +(22498, 'A Voyage Round the World, from 1806 to 1812\r\nIn Which Japan, Kamschatka, the Aleutian islands, and the Sandwich Islands were Visited; Including a Narrative of the Author\'s Shipwreck on the Island of Sannack, and His Subsequent Wreck in the Ship\'s Long-Boat; with an Account of the Present State of the Sandwich Islands, and a Vocabulary of Their Language.', 'Campbell, Archibald', '2014-08-01', 24, 'https://www.gutenberg.org/ebooks/46468', 'en', 9672), +(22499, 'Op den Uitkijk, Jaargang 1909\nBijblad bij De Aarde en haar Volken', 'Various', '2010-10-08', 4, 'https://www.gutenberg.org/ebooks/34048', 'nl', 3550), +(22500, 'Poems\nWith Introduction and Notes', 'Pushkin, Aleksandr Sergeevich', '2017-06-27', 81, 'https://www.gutenberg.org/ebooks/54991', 'en', 867), +(22501, 'Dictionnaire du bon langage\r\nContenant les difficultés de la langue française, les règles et les fautes de prononciation, les locutions vicieuses, les wallonnismes, les flandricismes, etc.', 'Carpentier, N.-J.', '2013-10-10', 35, 'https://www.gutenberg.org/ebooks/43926', 'fr', 9673), +(22502, 'Harper\'s Young People, March 23, 1880\nAn Illustrated Weekly', 'Various', '2009-03-26', 3, 'https://www.gutenberg.org/ebooks/28417', 'en', 479), +(22503, 'The Doré Bible Gallery, Volume 7', NULL, '2004-07-28', 8, 'https://www.gutenberg.org/ebooks/8707', 'en', 9674), +(22504, 'Where We Live\nA Home Geography', 'Jacobs, Emilie Van Beil', '2007-10-07', 36, 'https://www.gutenberg.org/ebooks/22911', 'en', 2578), +(22505, 'Brandelli', 'Guerrini, Olindo', '2015-07-11', 5, 'https://www.gutenberg.org/ebooks/49420', 'it', 3942), +(22506, 'Punch, or the London Charivari, Volume 159, December 22, 1920', 'Various', '2006-09-22', 18, 'https://www.gutenberg.org/ebooks/19350', 'en', 134), +(22507, 'Φαίδων', 'Plato', '2011-01-07', 29, 'https://www.gutenberg.org/ebooks/34874', 'el', 9675), +(22508, 'The Troll Garden, and Selected Stories', 'Cather, Willa', '1995-10-01', 157, 'https://www.gutenberg.org/ebooks/346', 'en', 179), +(22509, 'Buhay at Mga Ginawâ ni Dr. José Rizal', 'Poblete, Pascual Hicaro', '2006-04-29', 172, 'https://www.gutenberg.org/ebooks/18282', 'tl', 6564), +(22510, 'Battling the Clouds; or, For a Comrade\'s Honor', 'Cobb, Frank', '2009-04-27', 25, 'https://www.gutenberg.org/ebooks/28625', 'en', 2279), +(22511, 'The Portrait of a Lady — Volume 1', 'James, Henry', '2001-09-01', 445, 'https://www.gutenberg.org/ebooks/2833', 'en', 1061), +(22512, 'Motor Matt\'s Triumph; or, Three Speeds Forward', 'Matthews, Stanley R.', '2014-12-27', 12, 'https://www.gutenberg.org/ebooks/47788', 'en', 4097), +(22513, 'Ethics — Part 3', 'Spinoza, Benedictus de', '1997-06-01', 23, 'https://www.gutenberg.org/ebooks/948', 'en', 680), +(22514, 'The Lost Valley', 'Walsh, J. M. (James Morgan)', '2006-09-02', 26, 'https://www.gutenberg.org/ebooks/19162', 'en', 9676), +(22515, 'The Sisters-In-Law: A Novel of Our Time', 'Atherton, Gertrude Franklin Horn', '2005-07-01', 18, 'https://www.gutenberg.org/ebooks/8535', 'en', 2118), +(22516, 'The Fatal Jealousie (1673)', 'Payne, Henry Neville, active 1672-1710', '2005-10-21', 11, 'https://www.gutenberg.org/ebooks/16916', 'en', 1088), +(22517, 'The Pond', 'Ewald, Carl', '2010-03-20', 16, 'https://www.gutenberg.org/ebooks/31708', 'en', 37), +(22518, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 5 (of 8)\nThe Celtic Twilight and Stories of Red Hanrahan', 'Yeats, W. B. (William Butler)', '2015-08-05', 65, 'https://www.gutenberg.org/ebooks/49612', 'en', 1728), +(22519, 'The Lost Faith, and Difficulties of the Bible, as Tested by the Laws of Evidence', 'Childs, Thomas S. (Thomas Spencer)', '2013-07-27', 7, 'https://www.gutenberg.org/ebooks/43328', 'en', 9677), +(22520, 'Derroteros y viages à la Ciudad Encantada, ó de los Césares.\nQue se creia existiese en la Cordillera, al sud de Valdivia.', NULL, '2004-09-14', 28, 'https://www.gutenberg.org/ebooks/13458', 'es', 7609), +(22521, 'The Picture of Dorian Gray', 'Wilde, Oscar', '1994-10-01', 6470, 'https://www.gutenberg.org/ebooks/174', 'en', 9678), +(22522, 'Les vieilles villes des Flandres: Belgique et Flandre française', 'Robida, Albert', '2014-02-16', 18, 'https://www.gutenberg.org/ebooks/44931', 'fr', 9679), +(22523, 'Right Half Hollins', 'Barbour, Ralph Henry', '2017-01-17', 12, 'https://www.gutenberg.org/ebooks/53986', 'en', 2154), +(22524, 'Knights in Armour', 'Woods, Edward S. (Edward Sydney)', '2016-08-19', 5, 'https://www.gutenberg.org/ebooks/52854', 'en', 1130), +(22525, 'In Purpurner Finsterniß\nRoman-Improvisation aus dem dreißigsten Jahrhundert', 'Conrad, M. G. (Michael Georg)', '2012-04-29', 8, 'https://www.gutenberg.org/ebooks/39565', 'de', 138), +(22526, 'Neue Gedichte', 'Rilke, Rainer Maria', '2010-10-15', 68, 'https://www.gutenberg.org/ebooks/33863', 'de', 8), +(22527, 'Harper\'s Young People, July 18, 1882\nAn Illustrated Weekly', 'Various', '2018-12-27', 1, 'https://www.gutenberg.org/ebooks/58552', 'en', 479), +(22528, 'The Wit of a Duck and Other Papers', 'Burroughs, John', '2007-01-25', 19, 'https://www.gutenberg.org/ebooks/20448', 'en', 1216), +(22529, 'The Malthusian Handbook\r\nDesigned to Induce Married People to Limit Their Families Within Their Means.', 'Anonymous', '2019-05-11', 49, 'https://www.gutenberg.org/ebooks/59480', 'en', 6100), +(22530, 'Jim of Hellas, or In Durance Vile; The Troubling of Bethesda Pool', 'Richards, Laura Elizabeth Howe', '2016-05-14', 10, 'https://www.gutenberg.org/ebooks/52068', 'en', 48), +(22531, 'The American Missionary — Volume 50, No. 09, September, 1896', 'Various', '2008-06-26', 14, 'https://www.gutenberg.org/ebooks/25906', 'en', 562), +(22532, 'A Padre in France', 'Birmingham, George A.', '2009-03-03', 33, 'https://www.gutenberg.org/ebooks/28241', 'en', 3601), +(22533, 'The Pleasures of a Single Life, Or, The Miseries of Matrimony\r\nOccasionally writ upon the many divorces lately granted by Parliament. With The choice, or, the pleasures of a country-life. Dedicated to the beaus against the next vacation.', NULL, '2004-10-19', 14, 'https://www.gutenberg.org/ebooks/13800', 'en', 1930), +(22534, 'The Dolliver Romance', 'Hawthorne, Nathaniel', '2004-12-01', 11, 'https://www.gutenberg.org/ebooks/7119', 'en', 61), +(22535, 'Bibliotheca Gynaecologica et Obstetricia, oder, Verzeichniss aller auf dem Gebiete der Gynaekologie und Geburtshülfe in den letzten 20 jahren 1847-1866\r\nIm deutschen Buchhandel erschienenen Bücher und Zeitschriften: Ein bibliographisches Handbüchlein für Aerzte und Buchhändler', NULL, '2016-02-23', 12, 'https://www.gutenberg.org/ebooks/51289', 'de', 9680), +(22536, 'Social Justice Without Socialism', 'Clark, John Bates', '2009-10-24', 29, 'https://www.gutenberg.org/ebooks/29393', 'en', 1347), +(22537, 'Die Einsamen', 'Heyse, Paul', '2005-10-01', 15, 'https://www.gutenberg.org/ebooks/9083', 'de', 16), +(22538, 'The La Chance Mine Mystery', 'Jones, Susan Morrow', '2008-11-09', 21, 'https://www.gutenberg.org/ebooks/27209', 'en', 1219), +(22539, 'The Purcell Papers — Volume 2', 'Le Fanu, Joseph Sheridan', '2008-05-24', 50, 'https://www.gutenberg.org/ebooks/510', 'en', 2634), +(22540, 'Historical Record of the Sixth, or Royal First Warwickshire Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in the Year 1674, and of Its Subsequent Services to 1838', 'Cannon, Richard', '2017-09-26', 5, 'https://www.gutenberg.org/ebooks/55629', 'en', 9681), +(22541, 'A Connecticut Yankee in King Arthur\'s Court', 'Twain, Mark', '2006-10-14', 11, 'https://www.gutenberg.org/ebooks/19506', 'en', 4480), +(22542, 'Expositions of Holy Scripture: Psalms', 'Maclaren, Alexander', '2005-04-01', 44, 'https://www.gutenberg.org/ebooks/7925', 'en', 1852), +(22543, 'Miss Merivale\'s Mistake', 'Clarke, Henry, Mrs.', '2005-05-01', 10, 'https://www.gutenberg.org/ebooks/8151', 'en', 9682), +(22544, 'A History of Matrimonial Institutions, Vol. 3 of 3', 'Howard, George Elliott', '2015-06-25', 7, 'https://www.gutenberg.org/ebooks/49276', 'en', 9683), +(22545, 'Histoire de ma Vie, Livre 1 (Vol. 1 - 4)', 'Sand, George', '2012-03-11', 64, 'https://www.gutenberg.org/ebooks/39101', 'fr', 1285), +(22546, 'The Lost Heir', 'Henty, G. A. (George Alfred)', '2011-08-05', 43, 'https://www.gutenberg.org/ebooks/36975', 'en', 9684), +(22547, 'The \"Ladies of Llangollen\"\r\nas Sketched by Many Hands; with Notices of Other Objects of Interest in \"That Sweetest of Vales\"', 'Hicklin, John', '2007-03-13', 19, 'https://www.gutenberg.org/ebooks/20810', 'en', 9685), +(22548, 'Dick Merriwell Abroad; Or, The Ban of the Terrible Ten', 'Standish, Burt L.', '2013-01-12', 10, 'https://www.gutenberg.org/ebooks/41827', 'en', 323), +(22549, 'Fra Tommaso Campanella, Vol. 1\nla sua congiura, i suoi processi e la sua pazzia', 'Amabile, Luigi', '2018-04-01', 25, 'https://www.gutenberg.org/ebooks/56890', 'it', 9686), +(22550, 'Songs and Satires', 'Masters, Edgar Lee', '2011-05-18', 16, 'https://www.gutenberg.org/ebooks/36149', 'en', 178), +(22551, 'Tent life with English Gipsies in Norway', 'Smith, Hubert (Solicitor)', '2018-09-21', 15, 'https://www.gutenberg.org/ebooks/57942', 'en', 5145), +(22552, 'The Diatomaceæ of Philadelphia and Vicinity', 'Boyer, Charles S. (Charles Sumner)', '2014-01-03', 8, 'https://www.gutenberg.org/ebooks/44569', 'en', 9687), +(22553, 'The Helmet of Navarre', 'Runkle, Bertha', '2004-11-30', 77, 'https://www.gutenberg.org/ebooks/14219', 'en', 48), +(22554, 'Conscience & Fanaticism: An Essay on Moral Values', 'Pitt-Rivers, George Henry Lane Fox', '2018-10-19', 10, 'https://www.gutenberg.org/ebooks/58136', 'en', 9688), +(22555, 'Renaissance in Italy, Volume 3 (of 7)\r\nThe Fine Arts', 'Symonds, John Addington', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11559', 'en', 9689), +(22556, 'Guy Deverell, v. 2 of 2', 'Le Fanu, Joseph Sheridan', '2012-10-29', 17, 'https://www.gutenberg.org/ebooks/41229', 'en', 5925), +(22557, 'Curiosities of Human Nature', 'Goodrich, Samuel G. (Samuel Griswold)', '2012-04-01', 104, 'https://www.gutenberg.org/ebooks/39333', 'en', 122), +(22558, 'The White Wolf and Other Fireside Tales', 'Quiller-Couch, Arthur', '2005-01-27', 20, 'https://www.gutenberg.org/ebooks/14817', 'en', 409), +(22559, 'Marguerite de Valois', 'Dumas, Alexandre', '2010-09-02', 116, 'https://www.gutenberg.org/ebooks/33609', 'en', 9690), +(22560, 'The Arrival of Jimpson, and Other Stories for Boys about Boys', 'Barbour, Ralph Henry', '2014-05-18', 19, 'https://www.gutenberg.org/ebooks/45689', 'en', 2526), +(22561, 'Falling in with Fortune; Or, The Experiences of a Young Secretary', 'Stratemeyer, Edward', '2018-11-18', 26, 'https://www.gutenberg.org/ebooks/58304', 'en', 3334), +(22562, 'Mémoires de Marmontel (Volume 3 of 3)\r\nMémoires d\'un père pour servir à l\'Instruction de ses enfans', 'Marmontel, Jean-François', '2009-01-14', 29, 'https://www.gutenberg.org/ebooks/27807', 'fr', 1240), +(22563, 'A Yacht Voyage to Norway, Denmark, and Sweden\n2nd edition', 'Ross, William A.', '2009-02-14', 19, 'https://www.gutenberg.org/ebooks/28073', 'en', 581), +(22564, 'Hermia Suydam', 'Atherton, Gertrude Franklin Horn', '2015-10-10', 14, 'https://www.gutenberg.org/ebooks/50169', 'en', 376), +(22565, 'The Ethical Way', 'Farrell, Joseph', '2010-04-12', 31, 'https://www.gutenberg.org/ebooks/31962', 'en', 26), +(22566, 'Le sabbat des sorciers', 'Teinturier, E. (Edmond)', '2015-09-04', 30, 'https://www.gutenberg.org/ebooks/49878', 'fr', 7074), +(22567, 'Space Prison', 'Godwin, Tom', '2007-09-09', 112, 'https://www.gutenberg.org/ebooks/22549', 'en', 26), +(22568, 'James Otis, the Pre-Revolutionist', 'Adam, G. Mercer (Graeme Mercer)', '1996-11-01', 86, 'https://www.gutenberg.org/ebooks/722', 'en', 9691), +(22569, 'Zoölogy: The Science of Animal Life\r\nPopular Science Library, Volume XII (of 16), P. F. Collier & Son Company, 1922', 'Ingersoll, Ernest', '2015-02-08', 23, 'https://www.gutenberg.org/ebooks/48196', 'en', 2360), +(22570, 'The Papers and Writings of Abraham Lincoln — Volume 7: 1863-1865', 'Lincoln, Abraham', '2004-09-30', 34, 'https://www.gutenberg.org/ebooks/2659', 'en', 2268), +(22571, 'The Cities of the Sun\r\nStories of Ancient America founded on historical incidents in the Book of Mormon', 'Porter, Elizabeth Cannon', '2016-01-17', 8, 'https://www.gutenberg.org/ebooks/50955', 'en', 9692), +(22572, 'The Bible, Douay-Rheims, Book 63: Titus\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8363', 'en', 7470), +(22573, 'Etiquette Made Easy', 'Squier, Edward Summers', '2016-04-29', 13, 'https://www.gutenberg.org/ebooks/51887', 'en', 788), +(22574, 'Die Reden Gotamo Buddhos. Mittlere Sammlung, dritter Band', NULL, '2015-05-24', 8, 'https://www.gutenberg.org/ebooks/49044', 'de', 639), +(22575, 'The Fairy Book\nThe Best Popular Stories Selected and Rendered Anew', 'Craik, Dinah Maria Mulock', '2006-11-07', 97, 'https://www.gutenberg.org/ebooks/19734', 'en', 1223), +(22576, 'The Roadmender', 'Fairless, Michael', '2014-09-10', 20, 'https://www.gutenberg.org/ebooks/46830', 'en', 61), +(22577, 'Relikwieën uit onzen Heldentijd\r\nDe Aarde en haar Volken, 1873', 'Anonymous', '2006-01-05', 7, 'https://www.gutenberg.org/ebooks/17468', 'nl', 1498), +(22578, 'Deutsche Humoristen, 2. Band (von 8)', 'Zschokke, Heinrich', '2014-11-09', 23, 'https://www.gutenberg.org/ebooks/47318', 'de', 543), +(22579, 'The Morris Book, Part 1\r\nA History of Morris Dancing, With a Description of Eleven Dances as Performed by the Morris-Men of England', 'Sharp, Cecil J. (Cecil James)', '2004-07-17', 26, 'https://www.gutenberg.org/ebooks/12926', 'en', 9693), +(22580, 'The Chronicle of the Discovery and Conquest of Guinea. Vol. I', 'Zurara, Gomes Eannes de', '2011-04-01', 32, 'https://www.gutenberg.org/ebooks/35738', 'en', 9694), +(22581, 'Das Kloster bei Sendomir', 'Grillparzer, Franz', '2005-09-01', 41, 'https://www.gutenberg.org/ebooks/8999', 'de', 1316), +(22582, 'Humpty Dumpty\'s Little Son', 'Cross, Helen Reid', '2009-07-10', 35, 'https://www.gutenberg.org/ebooks/29367', 'en', 388), +(22583, 'Six Little Ducklings', 'Pyle, Katharine', '2015-02-24', 13, 'https://www.gutenberg.org/ebooks/48350', 'en', 9695), +(22584, 'The Tragicall Historie of Hamlet, Prince of Denmarke\r\nThe First (\'Bad\') Quarto', 'Shakespeare, William', '2005-10-01', 40, 'https://www.gutenberg.org/ebooks/9077', 'en', 9696), +(22585, 'Algonquin Legends of New England', 'Leland, Charles Godfrey', '2004-11-01', 36, 'https://www.gutenberg.org/ebooks/6803', 'en', 9697), +(22586, 'The Bobbsey Twins at Home', 'Hope, Laura Lee', '2006-05-19', 64, 'https://www.gutenberg.org/ebooks/18420', 'en', 309), +(22587, 'Notes and Queries, Number 238, May 20, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-02-25', 8, 'https://www.gutenberg.org/ebooks/31398', 'en', 105), +(22588, 'The Chronicles of the Imp: A Romance', 'Farnol, Jeffery', '2015-06-25', 30, 'https://www.gutenberg.org/ebooks/49282', 'en', 432), +(22589, 'Theft: A Play In Four Acts', 'London, Jack', '2007-06-25', 38, 'https://www.gutenberg.org/ebooks/21936', 'en', 402), +(22590, 'Lost in the Atlantic Valley; Or, Frank Reade, Jr., and His Wonder, the \"Dart\"', 'Senarens, Luis', '2017-11-27', 6, 'https://www.gutenberg.org/ebooks/56058', 'en', 737), +(22591, 'Punch, or The London Charivari, Vol. 150, April 19, 1916', 'Various', '2011-08-05', 3, 'https://www.gutenberg.org/ebooks/36981', 'en', 134), +(22592, 'Present Irish Questions', 'Morris, William O\'Connor', '2011-10-26', 4, 'https://www.gutenberg.org/ebooks/37853', 'en', 9698), +(22593, 'The Nursery, May 1873, Vol. XIII.\r\nA Monthly Magazine for Youngest Readers', 'Various', '2008-01-31', 28, 'https://www.gutenberg.org/ebooks/24478', 'en', 4641), +(22594, 'Autobiography of Countess Tolstoy', 'Tolstaia, S. A. (Sofia Andreevna)', '2011-11-15', 28, 'https://www.gutenberg.org/ebooks/38027', 'en', 9699), +(22595, 'Dreamtown, U.S.A.', 'Kelley, Leo P.', '2019-03-04', 82, 'https://www.gutenberg.org/ebooks/59010', 'en', 26), +(22596, 'Let\'s Collect Rocks and Shells', 'Shell Union Oil Corporation', '2003-12-01', 16, 'https://www.gutenberg.org/ebooks/4768', 'en', 9700), +(22597, 'Captain Billy\'s Whiz Bang, Vol. 2. No. 17, February, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2018-03-28', 12, 'https://www.gutenberg.org/ebooks/56864', 'en', 372), +(22598, 'The Gentleman and Lady\'s Book of Politeness and Propriety of Deportment, Dedicated to the Youth of Both Sexes', 'Celnart, Elisabeth', '2012-09-30', 49, 'https://www.gutenberg.org/ebooks/40901', 'en', 788), +(22599, 'Boy Scouts in the North Sea; Or, The Mystery of a Sub', 'Ralphson, G. Harvey (George Harvey)', '2008-06-15', 21, 'https://www.gutenberg.org/ebooks/25798', 'en', 2994), +(22600, 'A History of English Romanticism in the Nineteenth Century', 'Beers, Henry A. (Henry Augustin)', '2005-05-28', 55, 'https://www.gutenberg.org/ebooks/15931', 'en', 9701), +(22601, 'The Mary Frances Cook Book; Or, Adventures Among the Kitchen People', 'Fryer, Jane Eayre', '2011-12-04', 66, 'https://www.gutenberg.org/ebooks/38215', 'en', 9702), +(22602, 'The Professor', 'Brontë, Charlotte', '1997-08-01', 247, 'https://www.gutenberg.org/ebooks/1028', 'en', 9703), +(22603, 'The Vnfortunate Traveller, or The Life Of Jack Wilton\nWith An Essay On The Life And Writings Of Thomas Nash By Edmund Gosse', 'Nash, Thomas', '2007-05-05', 61, 'https://www.gutenberg.org/ebooks/21338', 'en', 323), +(22604, 'Schwedenklees Erlebnis', 'Kellermann, Bernhard', '2019-04-08', 3, 'https://www.gutenberg.org/ebooks/59222', 'de', 549), +(22605, 'Revista de Filosofía, Año V - Nº 3 - May/1919\nCultura—Ciencias—Educación', 'Various', '2016-12-12', 21, 'https://www.gutenberg.org/ebooks/53718', 'es', 9704), +(22606, 'The Agony Column', 'Biggers, Earl Derr', '1999-07-01', 35, 'https://www.gutenberg.org/ebooks/1814', 'en', 128), +(22607, 'The Emperor — Volume 06', 'Ebers, Georg', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/5488', 'en', 803), +(22608, 'Tuskegee & Its People: Their Ideals and Achievements', NULL, '2009-02-15', 32, 'https://www.gutenberg.org/ebooks/28087', 'en', 9705), +(22609, '\"To Invade New York....\"', 'Lewis, Irwin', '2010-01-04', 15, 'https://www.gutenberg.org/ebooks/30844', 'en', 1660), +(22610, 'My Little Lady', 'Poynter, E. Frances (Eleanor Frances)', '2005-10-02', 6, 'https://www.gutenberg.org/ebooks/16788', 'en', 61), +(22611, 'Is There a Santa Claus?', 'Riis, Jacob A. (Jacob August)', '2010-04-15', 20, 'https://www.gutenberg.org/ebooks/31996', 'en', 585), +(22612, 'Blake\'s Burden', 'Bindloss, Harold', '2009-06-18', 13, 'https://www.gutenberg.org/ebooks/29155', 'en', 65), +(22613, '引鳳蕭', 'Banyunyou', '2008-10-14', 26, 'https://www.gutenberg.org/ebooks/26921', 'zh', 3187), +(22614, 'The Brochure Series of Architectural Illustration, vol. 06, No. 10, October 1900\r\nThe Château of Chambord: France; Louis XVI. Sconces', 'Various', '2015-01-08', 4, 'https://www.gutenberg.org/ebooks/47916', 'en', 2140), +(22615, 'From the Housetops', 'McCutcheon, George Barr', '2006-06-17', 17, 'https://www.gutenberg.org/ebooks/18612', 'en', 109), +(22616, 'The Pennycomequicks, Volume 2 (of 3)', 'Baring-Gould, S. (Sabine)', '2015-02-04', 15, 'https://www.gutenberg.org/ebooks/48162', 'en', 45), +(22617, 'Hemsöborna', 'Strindberg, August', '2009-09-25', 34, 'https://www.gutenberg.org/ebooks/30078', 'sv', 9706), +(22618, 'Biographical Sketches\n(From: \"Fanshawe and Other Pieces\")', 'Hawthorne, Nathaniel', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9245', 'en', 9707), +(22619, 'Practical Guide to English Versification\nWith a Compendious Dictionary of Rhymes, an Examination\nof Classical Measures, and Comments Upon Burlesque and\nComic Verse, Vers de Société, and Song-writing', 'Hood, Tom', '2016-04-26', 17, 'https://www.gutenberg.org/ebooks/51873', 'en', 7414), +(22620, 'Expositions of Holy Scripture: the Acts', 'Maclaren, Alexander', '2005-06-01', 29, 'https://www.gutenberg.org/ebooks/8397', 'en', 9708), +(22621, 'The Celtic Magazine, Vol. 1, No. 3, January 1876\r\nA Monthly Periodical Devoted to the Literature, History, Antiquities, Folk Lore, Traditions, and the Social and Material Interests of the Celt at Home and Abroad', 'Various', '2009-09-12', 19, 'https://www.gutenberg.org/ebooks/29969', 'en', 274), +(22622, 'The Philippine Islands, 1493-1898: Volume 32, 1640\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', 'Aduarte, Diego', '2013-04-01', 28, 'https://www.gutenberg.org/ebooks/42458', 'en', 745), +(22623, 'Tent Life in Siberia\r\nA New Account of an Old Undertaking; Adventures among the Koraks and Other Tribes In Kamchatka and Northern Asia', 'Kennan, George', '2004-05-01', 64, 'https://www.gutenberg.org/ebooks/12328', 'en', 9709), +(22624, 'Punch, or the London Charivari, Vol. 105 September 23, 1893', 'Various', '2012-01-25', 7, 'https://www.gutenberg.org/ebooks/38671', 'en', 134), +(22625, 'The Five Giants', 'Kidder, Daniel P. (Daniel Parish)', '2010-07-31', 15, 'https://www.gutenberg.org/ebooks/33299', 'en', 388), +(22626, 'Chess History and Reminiscences', 'Bird, H. E. (Henry Edward)', '2004-01-01', 62, 'https://www.gutenberg.org/ebooks/4902', 'en', 3733), +(22627, 'The Englishwoman in Russia\nImpressions of the Society and Manners of the Russians at Home', 'A lady', '2019-01-31', 14, 'https://www.gutenberg.org/ebooks/58794', 'en', 9710), +(22628, 'Discourses on the First Decade of Titus Livius', 'Machiavelli, Niccolò', '2004-01-01', 222, 'https://www.gutenberg.org/ebooks/10827', 'en', 9711), +(22629, 'Punch, or The London Charivari, Vol. 62, January 20, 1872', 'Various', '2011-10-05', 8, 'https://www.gutenberg.org/ebooks/37639', 'en', 134), +(22630, 'Storia della decadenza e rovina dell\'impero romano, volume 05', 'Gibbon, Edward', '2014-03-26', 33, 'https://www.gutenberg.org/ebooks/45219', 'it', 7245), +(22631, 'Reseanteckningar från Orienten åren 1843-1849 I', 'Wallin, Georg August', '2019-06-01', 10, 'https://www.gutenberg.org/ebooks/59646', 'sv', 885), +(22632, 'The Cuckoo Clock', 'Molesworth, Mrs.', '2005-04-06', 20, 'https://www.gutenberg.org/ebooks/15569', 'en', 2203), +(22633, 'Buck Peters, Ranchman\r\nBeing the Story of What Happened When Buck Peters, Hopalong Cassidy, and Their Bar-20 Associates Went to Montana', 'Mulford, Clarence Edward', '2013-05-24', 54, 'https://www.gutenberg.org/ebooks/42800', 'en', 315), +(22634, 'Silhouettes', 'Symons, Arthur', '2009-07-28', 34, 'https://www.gutenberg.org/ebooks/29531', 'en', 8), +(22635, 'Godliness : being reports of a series of addresses delivered at James\'s Hall, London, W. during 1881', 'Booth, Catherine Mumford', '2004-10-01', 20, 'https://www.gutenberg.org/ebooks/6669', 'en', 9712), +(22636, 'Miss Beecher\'s Domestic Receipt Book\nDesigned as a Supplement to Her Treatise on Domestic Economy', 'Beecher, Catharine Esther', '2017-06-23', 30, 'https://www.gutenberg.org/ebooks/54965', 'en', 103), +(22637, 'The Sun Dance of the Blackfoot Indians', 'Wissler, Clark', '2011-04-24', 15, 'https://www.gutenberg.org/ebooks/35952', 'en', 9713), +(22638, 'Love Among the Chickens', 'Wodehouse, P. G. (Pelham Grenville)', '2008-09-01', 46, 'https://www.gutenberg.org/ebooks/26579', 'en', 5500), +(22639, 'Essays in Literature and History', 'Froude, James Anthony', '2006-04-28', 34, 'https://www.gutenberg.org/ebooks/18276', 'en', 3720), +(22640, 'Ιππίας, Μείζων και Ελάσσων', 'Plato', '2011-01-08', 10, 'https://www.gutenberg.org/ebooks/34880', 'el', 8561), +(22641, 'Busy Brownies', 'Veale, E.', '2017-02-12', 9, 'https://www.gutenberg.org/ebooks/54159', 'en', 580), +(22642, 'Eta Eyolf', 'Ibsen, Henrik', '2007-12-13', 5, 'https://www.gutenberg.org/ebooks/23837', 'eo', 3671), +(22643, 'Harper\'s Round Table, November 5, 1895', 'Various', '2015-03-16', 7, 'https://www.gutenberg.org/ebooks/48506', 'en', 668), +(22644, 'Georgian Poetry 1918-19', NULL, '2006-01-01', 19, 'https://www.gutenberg.org/ebooks/9621', 'en', 1594), +(22645, 'The Caxtons: A Family Picture — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 3, 'https://www.gutenberg.org/ebooks/7589', 'en', 376), +(22646, 'Absalomin tukka', 'Bjørnson, Bjørnstjerne', '2016-04-01', 9, 'https://www.gutenberg.org/ebooks/51619', 'fi', 376), +(22647, 'Serge Panine — Volume 02', 'Ohnet, Georges', '2003-04-01', 6, 'https://www.gutenberg.org/ebooks/3915', 'en', 560), +(22648, 'El Abate Constantin', 'Halévy, Ludovic', '2009-08-15', 9, 'https://www.gutenberg.org/ebooks/29703', 'es', 48), +(22649, 'La copa de Verlaine', 'Carrere, Emilio', '2007-10-29', 20, 'https://www.gutenberg.org/ebooks/23239', 'es', 61), +(22650, 'Return-Loads Bureaus To Save Waste In Transportation', 'United States. Council of National Defense. Highways Transport Committee', '2006-07-20', 14, 'https://www.gutenberg.org/ebooks/18878', 'en', 9714), +(22651, 'Homeburg Memories', 'Fitch, George', '2006-09-07', 19, 'https://www.gutenberg.org/ebooks/19196', 'en', 262), +(22652, 'The Story of Pocahontas', 'Warner, Charles Dudley', '2004-10-10', 41, 'https://www.gutenberg.org/ebooks/3129', 'en', 9715), +(22653, 'Les Misérables, v. 4/5: The Idyll and the Epic', 'Hugo, Victor', '2015-04-18', 16, 'https://www.gutenberg.org/ebooks/48734', 'en', 98), +(22654, 'Ruines et fantômes', 'Claretie, Jules', '2006-02-22', 9, 'https://www.gutenberg.org/ebooks/17830', 'fr', 2508), +(22655, 'The Poetical Works of Alexander Pope, Volume 1', 'Pope, Alexander', '2005-12-01', 50, 'https://www.gutenberg.org/ebooks/9413', 'en', 3947), +(22656, 'McClure\'s Magazine, Vol 31, No 2, June 1908', 'Various', '2009-01-04', 27, 'https://www.gutenberg.org/ebooks/27699', 'en', 380), +(22657, 'The 1994 CIA World Factbook', 'United States. Central Intelligence Agency', '1994-11-01', 152, 'https://www.gutenberg.org/ebooks/180', 'en', 9716), +(22658, 'Wine, Women, and Song\nMediaeval Latin Students\' songs; Now first translated into English verse', NULL, '2006-03-24', 35, 'https://www.gutenberg.org/ebooks/18044', 'en', 9717), +(22659, 'My South Polar Expedition', 'Shackleton, Ernest Henry, Sir', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10229', 'en', 1448), +(22660, 'Anteckningar öfver Fälttågen emot Ryssland åren 1808 och 1809', 'Holm, Carl Johan', '2017-01-16', 7, 'https://www.gutenberg.org/ebooks/53972', 'sv', 9718), +(22661, 'The Croxley Master: A Great Tale Of The Prize Ring', 'Doyle, Arthur Conan', '2011-12-30', 50, 'https://www.gutenberg.org/ebooks/38443', 'en', 4171), +(22662, 'The Güegüence; A Comedy Ballet in the Nahuatl-Spanish Dialect of Nicaragua', NULL, '2012-08-22', 9, 'https://www.gutenberg.org/ebooks/40559', 'en', 9719), +(22663, 'Keeping Tryst: A Tale of King Arthur\'s Time', 'Johnston, Annie F. (Annie Fellows)', '2012-05-02', 12, 'https://www.gutenberg.org/ebooks/39591', 'en', 6668), +(22664, 'Η βοσκοπούλα με τα μαργαριτάρια και άλλες μικρές ιστορίες', 'Nirvanas, Paulos', '2010-04-29', 9, 'https://www.gutenberg.org/ebooks/32179', 'el', 61), +(22665, 'The House on the Moor, v. 2/3', 'Oliphant, Mrs. (Margaret)', '2014-05-29', 24, 'https://www.gutenberg.org/ebooks/45817', 'en', 61), +(22666, 'Die Philippinen und ihre Bewohner\nSechs Skizzen', 'Semper, C. (Carl)', '2008-03-13', 21, 'https://www.gutenberg.org/ebooks/24820', 'de', 9720), +(22667, 'The Bay State Monthly — Volume 2, No. 6, March, 1885', 'Various', '2005-01-14', 11, 'https://www.gutenberg.org/ebooks/14689', 'en', 1593), +(22668, 'The Red Mustang', 'Stoddard, William O.', '2010-10-30', 18, 'https://www.gutenberg.org/ebooks/33897', 'en', 1361), +(22669, 'Harper\'s New Monthly Magazine, February, 1852', NULL, '2010-06-22', 21, 'https://www.gutenberg.org/ebooks/32945', 'en', 387), +(22670, 'The harp-weaver, and other poems', 'Millay, Edna St. Vincent', '2019-05-10', 46, 'https://www.gutenberg.org/ebooks/59474', 'en', 994), +(22671, 'The Love Letters of Mary Wollstonecraft to Gilbert Imlay', 'Wollstonecraft, Mary', '2010-11-23', 44, 'https://www.gutenberg.org/ebooks/34413', 'en', 9721), +(22672, 'A Bachelor\'s Dream', 'Duchess', '2009-01-19', 65, 'https://www.gutenberg.org/ebooks/27838', 'en', 61), +(22673, 'Anecdotes about Authors, and Artists', 'Timbs, John', '2015-10-08', 10, 'https://www.gutenberg.org/ebooks/50156', 'en', 9722), +(22674, 'Le tour de France en aéroplane', 'Graffigny, H. de (Henry)', '2006-02-06', 22, 'https://www.gutenberg.org/ebooks/17691', 'fr', 9723), +(22675, 'Luther, vol. 1 of 6', 'Grisar, Hartmann', '2015-05-19', 19, 'https://www.gutenberg.org/ebooks/48995', 'en', 1073), +(22676, 'The Pilgrim of Castile; or, El Pelegrino in Su Patria', 'Vega, Lope de', '2015-09-01', 20, 'https://www.gutenberg.org/ebooks/49847', 'en', 480), +(22677, 'Punch, or the London Charivari, Vol. 146, February 18, 1914', 'Various', '2007-09-11', 8, 'https://www.gutenberg.org/ebooks/22576', 'en', 134), +(22678, 'Aventures merveilleuses mais authentiques du capitaine Corcoran, Première Partie', 'Assollant, Alfred', '2005-09-24', 53, 'https://www.gutenberg.org/ebooks/16743', 'fr', 323), +(22679, 'Le chevalier Sarti', 'Scudo, Paul', '2016-01-30', 4, 'https://www.gutenberg.org/ebooks/51084', 'fr', 9724), +(22680, 'La Flandre pendant des trois derniers siècles', 'Kervyn de Lettenhove, Joseph Marie Bruno Constantin, Baron', '2014-06-19', 9, 'https://www.gutenberg.org/ebooks/46033', 'fr', 9725), +(22681, '夢溪筆談, Volume 11-16', 'Shen, Kuo', '2005-01-01', 26, 'https://www.gutenberg.org/ebooks/7314', 'zh', 2525), +(22682, 'Œuvres Complètes de Alfred de Musset — Tome 6.', 'Musset, Alfred de', '2004-08-20', 15, 'https://www.gutenberg.org/ebooks/13231', 'fr', 642), +(22683, 'Notes and Queries, Number 204, September 24, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 12, 'https://www.gutenberg.org/ebooks/27004', 'en', 105), +(22684, 'The Poet at the Breakfast-Table', 'Holmes, Oliver Wendell', '2004-09-29', 56, 'https://www.gutenberg.org/ebooks/2666', 'en', 50), +(22685, 'The Cabin on the Prairie', 'Pearson, C. H. (Charles Henry)', '2009-05-18', 16, 'https://www.gutenberg.org/ebooks/28870', 'en', 1259), +(22686, 'A Diplomat in Japan\r\nThe inner history of the critical years in the evolution of Japan when the ports were opened and the monarchy restored, recorded by a diplomatist who took an active part in the events of the time, with an account of his personal experiences during that period', 'Satow, Ernest Mason', '2013-08-23', 81, 'https://www.gutenberg.org/ebooks/43541', 'en', 118), +(22687, 'Lady Eureka; or, The Mystery: A Prophecy of the Future. Volume 3', 'Williams, Robert Folkestone', '2013-04-08', 9, 'https://www.gutenberg.org/ebooks/42493', 'en', 61), +(22688, 'German Problems and Personalities', 'Sarolea, Charles', '2010-02-03', 24, 'https://www.gutenberg.org/ebooks/31161', 'en', 335), +(22689, 'Francis Parkman.', NULL, '2017-08-25', 6, 'https://www.gutenberg.org/ebooks/55424', 'en', 9726), +(22690, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 533, February 11, 1832', 'Various', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11566', 'en', 133), +(22691, 'Radio Boys Loyalty; Or, Bill Brown Listens In', 'Whipple, Wayne', '2008-06-10', 26, 'https://www.gutenberg.org/ebooks/25753', 'en', 3343), +(22692, 'Sonnets of a Budding Bard', 'Waterman, Nixon', '2012-10-28', 12, 'https://www.gutenberg.org/ebooks/41216', 'en', 6193), +(22693, 'Les îles\r\nPromenades dans le golfe Saint-Laurent: une partie de la Côte Nord,\r\nl\'île aux Oeufs, l\'Anticosti, l\'île Saint-Paul, l\'archipel de la\r\nMadeleine', 'Faucher de Saint-Maurice', '2005-01-28', 16, 'https://www.gutenberg.org/ebooks/14828', 'fr', 9727), +(22694, 'Stand Up, Ye Dead', 'Maclean, Norman', '2010-09-04', 5, 'https://www.gutenberg.org/ebooks/33636', 'en', 9728), +(22695, 'Opportunities in Engineering', 'Horton, Charles M. (Charles Marcus)', '2008-02-24', 89, 'https://www.gutenberg.org/ebooks/24681', 'en', 9729), +(22696, 'Œuvres complètes de Gustave Flaubert, tome 5: La tentation de saint Antoine', 'Flaubert, Gustave', '2018-06-22', 20, 'https://www.gutenberg.org/ebooks/57373', 'fr', 942), +(22697, 'The Mentor: The Weather\nSerial Number 110; 1 July, 1916', 'Talman, Charles Fitzhugh', '2011-06-07', 8, 'https://www.gutenberg.org/ebooks/36344', 'en', 7109), +(22698, 'After a Shadow and Other Stories', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 51, 'https://www.gutenberg.org/ebooks/4591', 'en', 50), +(22699, 'Poems', 'Clare, John', '2016-07-18', 53, 'https://www.gutenberg.org/ebooks/52601', 'en', 532), +(22700, 'Northern Nut Growers Association Report of the Proceedings at the Twenty-Fourth Annual Meeting\nDownington, Pennsylvania, September 11 and 12, 1933', NULL, '2006-12-29', 5, 'https://www.gutenberg.org/ebooks/20221', 'en', 1486), +(22701, 'Dangers on the Ice Off the Coast of Labrador\r\nWith Some Interesting Particulars Respecting the Natives of that Country', 'Anonymous', '2004-11-10', 12, 'https://www.gutenberg.org/ebooks/14014', 'en', 9730), +(22702, 'California: The Land of the Sun', 'Austin, Mary Hunter', '2014-01-26', 23, 'https://www.gutenberg.org/ebooks/44764', 'en', 1623), +(22703, 'Samboe; or, The African Boy', 'Hedge, Mary Ann', '2011-09-02', 22, 'https://www.gutenberg.org/ebooks/37296', 'en', 9731), +(22704, 'Uarda : a Romance of Ancient Egypt — Volume 05', 'Ebers, Georg', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/5443', 'en', 803), +(22705, 'The Paston Letters, A.D. 1422-1509. Volume 3 (of 6)\r\nNew Complete Library Edition', NULL, '2012-10-11', 18, 'https://www.gutenberg.org/ebooks/41024', 'en', 9732), +(22706, 'Kuvaelmia itä-suomalaisten vanhoista tavoista 3: Kylänluvut', 'Häyhä, Johannes', '2017-11-30', 8, 'https://www.gutenberg.org/ebooks/56093', 'fi', 9733), +(22707, 'Forty Years in South China: The Life of Rev. John Van Nest Talmage, D.D.', 'Fagg, John Gerardus', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11754', 'en', 9734), +(22708, '癡人說夢記', 'Lü, Sheng', '2008-05-22', 10, 'https://www.gutenberg.org/ebooks/25561', 'zh', 3187), +(22709, 'Tine', 'Bang, Herman', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/10686', 'da', 2564); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(22710, 'The Diplomatic Correspondence of the American Revolution, Vol. 07', NULL, '2011-11-01', 13, 'https://www.gutenberg.org/ebooks/37898', 'en', 330), +(22711, 'A Daughter of Japan', 'Bone, F. D.', '2018-05-12', 10, 'https://www.gutenberg.org/ebooks/57141', 'en', 9735), +(22712, 'The causes of prostitution', 'Warbasse, James Peter', '2019-02-22', 19, 'https://www.gutenberg.org/ebooks/58935', 'en', 9736), +(22713, 'Wit and Mirth: or Pills to Purge Melancholy, Vol. 6 of 6', NULL, '2010-08-10', 450, 'https://www.gutenberg.org/ebooks/33404', 'en', 3400), +(22714, 'La moglie ideale: commedia in tre atti', 'Praga, Marco', '2012-06-02', 20, 'https://www.gutenberg.org/ebooks/39902', 'it', 9737), +(22715, 'Lyhyt tarina nuoresta tytöstä', 'Salmela, Marja', '2016-06-29', 7, 'https://www.gutenberg.org/ebooks/52433', 'fi', 175), +(22716, 'Hermann Lauscher', 'Hesse, Hermann', '2013-01-11', 42, 'https://www.gutenberg.org/ebooks/41818', 'de', 9738), +(22717, 'Nan Sherwood\'s Summer Holidays', 'Carr, Annie Roe', '2011-05-20', 10, 'https://www.gutenberg.org/ebooks/36176', 'en', 9739), +(22718, 'The Raven\nIllustrated', 'Poe, Edgar Allan', '2014-04-24', 116, 'https://www.gutenberg.org/ebooks/45484', 'en', 2193), +(22719, 'Blackie & Son\'s Books for Young People, Catalogue - 1898', 'Blackie & Son', '2014-01-01', 5, 'https://www.gutenberg.org/ebooks/44556', 'en', 9740), +(22720, 'The Visions of the Sleeping Bard', 'Wynne, Ellis', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/5671', 'en', 9741), +(22721, 'Formules pour l\'esprit', 'Smarandache, Florentin', '2006-12-04', 11, 'https://www.gutenberg.org/ebooks/20013', 'fr', 8), +(22722, 'Lobo, Rag and Vixen\nBeing The Personal Histories Of Lobo, Redruff, Raggylug & Vixen', 'Seton, Ernest Thompson', '2004-12-01', 27, 'https://www.gutenberg.org/ebooks/14226', 'en', 1787), +(22723, 'History of biology', 'Miall, L. C. (Louis Compton)', '2018-10-16', 16, 'https://www.gutenberg.org/ebooks/58109', 'en', 9742), +(22724, 'The Woman\'s Bible', 'Stanton, Elizabeth Cady', '2006-02-01', 160, 'https://www.gutenberg.org/ebooks/9880', 'en', 9743), +(22725, 'The Roman Wall\r\nA historical, topographical, and descriptive account of the barrier of the lower isthmus, extending from the Tyne to the Solway, deduced from numerous personal surveys', 'Bruce, J. Collingwood (John Collingwood)', '2015-11-01', 15, 'https://www.gutenberg.org/ebooks/50364', 'en', 1161), +(22726, 'A Gentleman\'s Gentleman\n1909', 'Smith, Francis Hopkinson', '2007-12-03', 17, 'https://www.gutenberg.org/ebooks/23696', 'en', 179), +(22727, 'Alocução ao Senhor Presidente da República', 'Oliveira, João Duarte', '2010-12-11', 7, 'https://www.gutenberg.org/ebooks/34621', 'pt', 9744), +(22728, 'Orlando Furioso, Tomo I', 'Ariosto, Lodovico', '2014-07-06', 32, 'https://www.gutenberg.org/ebooks/46201', 'es', 1535), +(22729, 'The Treaties of Canada with the Indians of Manitoba and the North-West Territories\r\nIncluding the Negotiations on Which They Were Based, and Other Information Relating Thereto', 'Morris, Alexander', '2004-12-01', 35, 'https://www.gutenberg.org/ebooks/7126', 'en', 9745), +(22730, 'The Adventurous Seven: Their Hazardous Undertaking', 'Marchant, Bessie', '2007-09-23', 20, 'https://www.gutenberg.org/ebooks/22744', 'en', 421), +(22731, 'Scientific American, Volume 22, No. 1, January 1, 1870\r\nA Weekly Journal of Practical Information, Art, Science, Mechanics, Chemistry, and Manufactures.', 'Various', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8952', 'en', 210), +(22732, 'Chronica d\'el rei D. Diniz (Vol. I)', 'Pina, Rui de', '2005-08-21', 12, 'https://www.gutenberg.org/ebooks/16571', 'pt', 9746), +(22733, 'The Silent Bullet', 'Reeve, Arthur B. (Arthur Benjamin)', '2001-01-01', 50, 'https://www.gutenberg.org/ebooks/2454', 'en', 9747), +(22734, 'Die Räuberbande', 'Frank, Leonhard', '2009-10-19', 31, 'https://www.gutenberg.org/ebooks/30281', 'de', 61), +(22735, 'Shifting Sands', 'Bassett, Sara Ware', '2013-09-20', 10, 'https://www.gutenberg.org/ebooks/43773', 'en', 7071), +(22736, 'Pioneers in Canada', 'Johnston, Harry', '2004-07-23', 38, 'https://www.gutenberg.org/ebooks/13003', 'en', 9748), +(22737, 'Os Lusíadas', 'Camões, Luís de', '2008-11-11', 34, 'https://www.gutenberg.org/ebooks/27236', 'pt', 3425), +(22738, 'Prosa Dispersa\nObras Completas Vol. XX', 'Darío, Rubén', '2017-09-24', 9, 'https://www.gutenberg.org/ebooks/55616', 'es', 2730), +(22739, 'The Stowaway Girl', 'Tracy, Louis', '2006-10-14', 30, 'https://www.gutenberg.org/ebooks/19539', 'en', 9749), +(22740, 'Folk-Lore and Legends: Russian and Polish', NULL, '2015-06-21', 26, 'https://www.gutenberg.org/ebooks/49249', 'en', 9750), +(22741, 'Essays of Michel de Montaigne — Volume 06', 'Montaigne, Michel de', '2004-11-01', 51, 'https://www.gutenberg.org/ebooks/3586', 'en', 1964), +(22742, 'Personal Recollections of the War of 1861\nAs Private, Sergeant and Lieutenant in the Sixty-First Regiment, New York Volunteer Infantry', 'Fuller, Charles A.', '2010-02-22', 31, 'https://www.gutenberg.org/ebooks/31353', 'en', 9751), +(22743, 'Œuvres complètes de Gustave Flaubert, tome 6: Trois contes, suivis de mélanges inédits', 'Flaubert, Gustave', '2018-07-17', 21, 'https://www.gutenberg.org/ebooks/57525', 'fr', 100), +(22744, 'The Little Spanish Dancer', 'Brandeis, Madeline', '2012-08-28', 8, 'https://www.gutenberg.org/ebooks/40592', 'en', 4426), +(22745, 'Folk-Tales of Bengal', 'Day, Lal Behari', '2012-01-03', 98, 'https://www.gutenberg.org/ebooks/38488', 'en', 9752), +(22746, 'A Living from the Land', 'Duryee, William Budington', '2010-07-03', 14, 'https://www.gutenberg.org/ebooks/33060', 'en', 2757), +(22747, 'Poppea of the Post-Office', 'Wright, Mabel Osgood', '2012-11-22', 33, 'https://www.gutenberg.org/ebooks/41440', 'en', 262), +(22748, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 274, September 22, 1827', 'Various', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11330', 'en', 133), +(22749, 'Pâkia\n1901', 'Becke, Louis', '2008-04-19', 9, 'https://www.gutenberg.org/ebooks/25105', 'en', 108), +(22750, 'Tom Strong, Lincoln\'s Scout\r\nA Story of the United States in the Times That Tried Men\'s Souls', 'Mason, Alfred Bishop', '2013-11-08', 10, 'https://www.gutenberg.org/ebooks/44132', 'en', 491), +(22751, 'Film: Several Different Atomic Detonations', NULL, '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/5215', 'en', 9753), +(22752, 'The Book of Ballads, edited by Bon Gaultier [pseud.]', 'Aytoun, William Edmondstoune', '2007-01-28', 24, 'https://www.gutenberg.org/ebooks/20477', 'en', 2529), +(22753, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 3, De Las Islas Filipinas, II', NULL, '2016-10-01', 39, 'https://www.gutenberg.org/ebooks/53185', 'es', 8515), +(22754, 'McGuffey\'s Eclectic Primer, Revised Edition', 'McGuffey, William Holmes', '2005-06-29', 357, 'https://www.gutenberg.org/ebooks/14642', 'en', 294), +(22755, 'Esther', 'Racine, Jean', '2005-05-07', 38, 'https://www.gutenberg.org/ebooks/15790', 'en', 9754), +(22756, 'Abandonment; or, Absolute Surrender to Divine Providence', 'Caussade, Jean Pierre de', '2016-05-13', 41, 'https://www.gutenberg.org/ebooks/52057', 'en', 3181), +(22757, 'Second Edition of A Discovery Concerning Ghosts\nWith a Rap at the \"Spirit-Rappers\"', 'Cruikshank, George', '2011-06-24', 22, 'https://www.gutenberg.org/ebooks/36512', 'en', 504), +(22758, 'A Bibliography of the writings in Prose and Verse of George Henry Borrow', 'Wise, Thomas James', '2008-06-30', 9, 'https://www.gutenberg.org/ebooks/25939', 'en', 9755), +(22759, 'Blackwood\'s Edinburgh Magazine, Volume 65, No. 402, April, 1849', 'Various', '2014-08-24', 20, 'https://www.gutenberg.org/ebooks/46665', 'en', 274), +(22760, 'Aboriginal Remains in Verde Valley, Arizona\r\nThirteenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1891-92, Government Printing Office, Washington, 1896, pages 179-262', 'Mindeleff, Cosmos', '2006-11-29', 15, 'https://www.gutenberg.org/ebooks/19961', 'en', 5225), +(22761, 'Christmas Stories\r\nContaining John Wildgoose the Poacher, the Smuggler, and Good-nature, or Parish Matters', 'Berens, Edward', '2011-02-25', 4, 'https://www.gutenberg.org/ebooks/35397', 'en', 8198), +(22762, 'Quotes and Images From The Novels of Georg Ebers', 'Ebers, Georg', '2004-04-29', 7, 'https://www.gutenberg.org/ebooks/7542', 'en', 1026), +(22763, 'Oldtown Fireside Stories', 'Stowe, Harriet Beecher', '2007-08-14', 37, 'https://www.gutenberg.org/ebooks/22320', 'en', 770), +(22764, 'Red Pepper\'s Patients\nWith an Account of Anne Linton\'s Case in Particular', 'Richmond, Grace S. (Grace Smith)', '2005-06-23', 16, 'https://www.gutenberg.org/ebooks/16115', 'en', 1563), +(22765, 'The Story Teller of the Desert—\"Backsheesh!\"\nor, Life and Adventures in the Orient', 'Knox, Thomas Wallace', '2015-12-15', 18, 'https://www.gutenberg.org/ebooks/50700', 'en', 2204), +(22766, 'The Khedive\'s Country', 'Fenn, George Manville', '2010-11-08', 16, 'https://www.gutenberg.org/ebooks/34245', 'en', 2589), +(22767, 'American Notes', 'Kipling, Rudyard', '1997-07-01', 143, 'https://www.gutenberg.org/ebooks/977', 'en', 1110), +(22768, 'The Betrothed', 'Scott, Walter', '2004-09-01', 46, 'https://www.gutenberg.org/ebooks/6490', 'en', 4003), +(22769, 'Petite légende dorée de la Haute-Bretagne', 'Sébillot, Paul', '2008-10-05', 26, 'https://www.gutenberg.org/ebooks/26780', 'fr', 9756), +(22770, 'Kings-at-Arms', 'Bowen, Marjorie', '2017-08-06', 19, 'https://www.gutenberg.org/ebooks/55272', 'en', 9757), +(22771, 'Treat \'em Rough: Letters from Jack the Kaiser Killer', 'Lardner, Ring', '2005-10-23', 19, 'https://www.gutenberg.org/ebooks/16929', 'en', 190), +(22772, 'The Sloths of Kruvny', 'Fearing, Vern', '2010-03-22', 11, 'https://www.gutenberg.org/ebooks/31737', 'en', 637), +(22773, 'Legends of Babylon and Egypt in Relation to Hebrew Tradition', 'King, L. W. (Leonard William)', '2006-03-28', 127, 'https://www.gutenberg.org/ebooks/2030', 'en', 5161), +(22774, 'Lord Lyons: A Record of British Diplomacy, Vol. 1 of 2', 'Newton, Thomas Wodehouse Legh, Baron', '2013-07-26', 19, 'https://www.gutenberg.org/ebooks/43317', 'en', 9758), +(22775, 'Study of Child Life', 'Washburne, Marion Foster', '2004-09-15', 25, 'https://www.gutenberg.org/ebooks/13467', 'en', 973), +(22776, 'Door het land der Skipetaren', 'May, Karl', '2008-12-29', 24, 'https://www.gutenberg.org/ebooks/27652', 'nl', 7280), +(22777, 'A Child\'s Book of Saints', 'Canton, William', '2007-07-20', 11, 'https://www.gutenberg.org/ebooks/22112', 'en', 2025), +(22778, 'At Home And Abroad; Or, Things And Thoughts In America and Europe', 'Fuller, Margaret', '2005-07-18', 25, 'https://www.gutenberg.org/ebooks/16327', 'en', 9759), +(22779, 'White Wolf\'s Law: A Western Story', 'Dunning, Hal', '2014-07-31', 25, 'https://www.gutenberg.org/ebooks/46457', 'en', 61), +(22780, 'Les Quarante-Cinq — Tome 1', 'Dumas, Alexandre', '2005-03-01', 38, 'https://www.gutenberg.org/ebooks/7770', 'fr', 9760), +(22781, 'On Germinal Selection as a Source of Definite Variation', 'Weismann, August', '2010-10-15', 9, 'https://www.gutenberg.org/ebooks/34077', 'en', 3546), +(22782, 'Clothing and Health: An Elementary Textbook of Home Making', 'Cooley, Anna M. (Anna Maria)', '2014-12-08', 54, 'https://www.gutenberg.org/ebooks/47585', 'en', 1520), +(22783, 'Jacquard Machines: Instruction Paper', 'Nelson, H. William (Hector William)', '2015-11-22', 3, 'https://www.gutenberg.org/ebooks/50532', 'en', 9761), +(22784, 'Ali Baba en de veertig roovers (Verhaal uit de Duizend en een Nacht)', NULL, '2013-10-09', 14, 'https://www.gutenberg.org/ebooks/43919', 'nl', 9762), +(22785, 'Manual of Surgery Volume Second: Extremities—Head—Neck. Sixth Edition.', 'Thomson, Alexis', '2009-03-29', 33, 'https://www.gutenberg.org/ebooks/28428', 'en', 4470), +(22786, 'Fasti', 'Ovid', '2005-08-01', 115, 'https://www.gutenberg.org/ebooks/8738', 'la', 9763), +(22787, 'Psychologie de l\'éducation', 'Le Bon, Gustave', '2010-03-04', 34, 'https://www.gutenberg.org/ebooks/31505', 'fr', 9764), +(22788, 'The Nursery \"Alice\"', 'Carroll, Lewis', '2017-07-03', 53, 'https://www.gutenberg.org/ebooks/55040', 'en', 580), +(22789, 'An Introductory Course of Quantitative Chemical Analysis\nWith Explanatory Notes', 'Talbot, Henry Paul', '2004-06-30', 68, 'https://www.gutenberg.org/ebooks/12787', 'en', 9765), +(22790, 'Seelenverkäufer: Das Schicksal einer Deutsch-Amerikanerin', 'Gontard-Schuck, M.', '2011-04-30', 18, 'https://www.gutenberg.org/ebooks/35999', 'de', 61), +(22791, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 17, No. 099, March, 1876', 'Various', '2004-10-06', 25, 'https://www.gutenberg.org/ebooks/13655', 'en', 162), +(22792, 'Majakanvartija y.m. kertomuksia', 'Sienkiewicz, Henryk', '2017-02-18', 14, 'https://www.gutenberg.org/ebooks/54192', 'fi', 4971), +(22793, 'Worldly Ways & Byways', 'Gregory, Eliot', '1995-12-01', 39, 'https://www.gutenberg.org/ebooks/379', 'en', 620), +(22794, 'Il Vanzeli di Mateo', NULL, '2008-12-09', 6, 'https://www.gutenberg.org/ebooks/27460', 'fur', 6631), +(22795, 'Human Genome Project, rough draft, Chromosome Number 02', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2202', 'en', 2318), +(22796, 'Blanche: A Story for Girls', 'Molesworth, Mrs.', '2013-07-08', 12, 'https://www.gutenberg.org/ebooks/43125', 'en', 9766), +(22797, 'The Perfect Wagnerite: A Commentary on the Niblung\'s Ring', 'Shaw, Bernard', '1998-10-01', 90, 'https://www.gutenberg.org/ebooks/1487', 'en', 7408), +(22798, 'Tuscan Sculpture of the Fifteenth Century\nA Collection of Sixteen Pictures Reproducing Works by Donatello, the Della Robia, Mino da Fiesole, and Others, with Introduction', 'Hurll, Estelle M. (Estelle May)', '2010-07-24', 29, 'https://www.gutenberg.org/ebooks/33252', 'en', 9767), +(22799, 'Jacopo Ortisin Viimeiset Kirjeet', 'Foscolo, Ugo', '2018-08-18', 8, 'https://www.gutenberg.org/ebooks/57717', 'fi', 1885), +(22800, 'History of Negro Soldiers in the Spanish-American War, and Other Items of Interest', 'Johnson, Edward A. (Edward Austin)', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11102', 'en', 3634), +(22801, 'Genuine Mediumship; or, The Invisible Powers', 'Atkinson, William Walker', '2008-05-05', 61, 'https://www.gutenberg.org/ebooks/25337', 'en', 9768), +(22802, 'Vassall Morton: A Novel', 'Parkman, Francis', '2012-05-23', 17, 'https://www.gutenberg.org/ebooks/39768', 'en', 61), +(22803, 'O Romance d\'uma cantora', 'Sirven, Alfred', '2010-05-15', 9, 'https://www.gutenberg.org/ebooks/32380', 'pt', 61), +(22804, 'A Changed Heart: A Novel', 'Fleming, May Agnes', '2012-12-20', 25, 'https://www.gutenberg.org/ebooks/41672', 'en', 61), +(22805, 'The Family and its Members', 'Spencer, Anna Garlin', '2007-02-21', 18, 'https://www.gutenberg.org/ebooks/20645', 'en', 9683), +(22806, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 12', NULL, '2004-12-26', 120, 'https://www.gutenberg.org/ebooks/14470', 'en', 4972), +(22807, 'Dernières Années de la Cour de Lunéville\nMme de Boufflers, ses enfants et ses amis', 'Maugras, Gaston', '2013-11-27', 5, 'https://www.gutenberg.org/ebooks/44300', 'fr', 9660), +(22808, 'State of the Union Addresses', 'Hayes, Rutherford Birchard', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/5027', 'en', 1276), +(22809, 'Recollections of a Varied Life', 'Eggleston, George Cary', '2011-07-13', 20, 'https://www.gutenberg.org/ebooks/36720', 'en', 9769), +(22810, 'Observations on an Anonymous Pamphlet, Which Has Been Distributed in Lowestoft, and Its Neighbourhood, Entitled Reasons Why a Churchman May with Great Justice Refuse to Subscribe to the British and Foreign Bible Society', 'Cunningham, Francis', '2016-06-07', 1, 'https://www.gutenberg.org/ebooks/52265', 'en', 9770), +(22811, 'A Sailor\'s Lass', 'Leslie, Emma', '2007-06-10', 32, 'https://www.gutenberg.org/ebooks/21797', 'en', 9771), +(22812, 'History of the United States, Volume 6', 'Andrews, Elisha Benjamin', '2007-12-24', 27, 'https://www.gutenberg.org/ebooks/24023', 'en', 207), +(22813, 'Poems', 'Holley, Marietta', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10216', 'en', 8), +(22814, 'Moth and Rust; Together with Geoffrey\'s Wife and The Pitfall', 'Cholmondeley, Mary', '2012-08-23', 9, 'https://www.gutenberg.org/ebooks/40566', 'en', 61), +(22815, 'The Cutting of an Agate', 'Yeats, W. B. (William Butler)', '2010-07-06', 34, 'https://www.gutenberg.org/ebooks/33094', 'en', 2156), +(22816, 'The Lesser Bourgeoisie', 'Balzac, Honoré de', '2004-12-09', 94, 'https://www.gutenberg.org/ebooks/1641', 'en', 58), +(22817, 'Fugitive Poetry', 'Willis, Nathaniel Parker', '2010-04-26', 23, 'https://www.gutenberg.org/ebooks/32146', 'en', 178), +(22818, 'The Future of the Women\'s Movement', 'Swanwick, Helena M. (Helena Maria)', '2018-01-19', 14, 'https://www.gutenberg.org/ebooks/56403', 'en', 5066), +(22819, 'Ways of War and Peace', 'Austrian, Delia', '2014-05-30', 16, 'https://www.gutenberg.org/ebooks/45828', 'en', 449), +(22820, 'The Motor Maids\' School Days', 'Stokes, Katherine', '2011-09-15', 5, 'https://www.gutenberg.org/ebooks/37434', 'en', 9772), +(22821, 'Artillery Through the Ages\nA Short Illustrated History of Cannon, Emphasizing Types Used in America', 'Manucy, Albert C.', '2007-01-30', 77, 'https://www.gutenberg.org/ebooks/20483', 'en', 9773), +(22822, 'The Devil and Parson Church; or, Birds of a feather', 'Anonymous', '2019-01-02', 12, 'https://www.gutenberg.org/ebooks/58599', 'en', 7134), +(22823, 'Historia de las Indias (vol. 3 de 5)', 'Casas, Bartolomé de las', '2016-09-30', 36, 'https://www.gutenberg.org/ebooks/53171', 'es', 3984), +(22824, 'Kullankaivajat ja indiaanit: Kertomus Pohjois-Meksikosta', 'Reid, Mayne', '2005-05-03', 15, 'https://www.gutenberg.org/ebooks/15764', 'fi', 3), +(22825, 'The Little Savage', 'Marryat, Frederick', '2007-05-21', 27, 'https://www.gutenberg.org/ebooks/21551', 'en', 3972), +(22826, 'Studies from Court and Cloister: being essays, historical and literary dealing mainly with subjects relating to the XVIth and XVIIth centuries', 'Stone, J. M. (Jean Mary)', '2003-08-01', 16, 'https://www.gutenberg.org/ebooks/4333', 'en', 9774), +(22827, 'Histoire du Consulat et de l\'Empire, (Vol. 10 / 20)\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2014-02-25', 13, 'https://www.gutenberg.org/ebooks/45014', 'fr', 2051), +(22828, 'Biography for Beginners\nBeing a Collection of Miscellaneous Examples for the Use of Upper Forms', NULL, '2014-08-26', 84, 'https://www.gutenberg.org/ebooks/46691', 'en', 2008), +(22829, 'A Short History of Italy (476-1900)', 'Sedgwick, Henry Dwight', '2011-02-22', 22, 'https://www.gutenberg.org/ebooks/35363', 'en', 6107), +(22830, 'The Atlantic Monthly, Volume 05, No. 28, February, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2006-12-02', 22, 'https://www.gutenberg.org/ebooks/19995', 'en', 1227), +(22831, 'Jacobean Furniture and English Styles in Oak and Walnut', 'Candee, Helen Churchill', '2016-04-02', 16, 'https://www.gutenberg.org/ebooks/51626', 'en', 9775), +(22832, 'Lukinverkkoja: Pieniä tomupiiloja jotka kotionneamme haittaavat', 'Stowe, Harriet Beecher', '2005-11-08', 19, 'https://www.gutenberg.org/ebooks/17033', 'fi', 1650), +(22833, 'La moza de cántaro', 'Vega, Lope de', '2007-10-26', 45, 'https://www.gutenberg.org/ebooks/23206', 'es', 2729), +(22834, 'Shop Management', 'Taylor, Frederick Winslow', '2004-09-01', 41, 'https://www.gutenberg.org/ebooks/6464', 'en', 9776), +(22835, 'The White Sister', 'Crawford, F. Marion (Francis Marion)', '2006-07-16', 12, 'https://www.gutenberg.org/ebooks/18847', 'en', 9777), +(22836, 'Tour through the Eastern Counties of England, 1722', 'Defoe, Daniel', '1997-07-01', 90, 'https://www.gutenberg.org/ebooks/983', 'en', 4627), +(22837, 'Les origines de la Renaissance en Italie', 'Gebhart, Emile', '2014-12-22', 24, 'https://www.gutenberg.org/ebooks/47743', 'fr', 9778), +(22838, 'Alcohol: A Dangerous and Unnecessary Medicine, How and Why\nWhat Medical Writers Say', 'Allen, Martha Meir', '2008-10-04', 42, 'https://www.gutenberg.org/ebooks/26774', 'en', 6241), +(22839, 'The American Indian as Participant in the Civil War', 'Abel, Annie Heloise', '2004-06-01', 48, 'https://www.gutenberg.org/ebooks/12541', 'en', 9779), +(22840, 'Three Lancashire Plays: The Game; The Northerners; Zack', 'Brighouse, Harold', '2017-08-07', 11, 'https://www.gutenberg.org/ebooks/55286', 'en', 317), +(22841, 'Old and New Paris: Its History, Its People, and Its Places, v. 1', 'Edwards, H. Sutherland (Henry Sutherland)', '2013-02-28', 13, 'https://www.gutenberg.org/ebooks/42231', 'en', 1993), +(22842, 'Literary Copyright', 'Warner, Charles Dudley', '2004-12-05', 4, 'https://www.gutenberg.org/ebooks/3116', 'en', 9780), +(22843, 'The Atlantic Monthly, Volume 15, No. 90, April, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2009-12-06', 9, 'https://www.gutenberg.org/ebooks/30611', 'en', 1227), +(22844, 'Glasgow: A Sketch Book', 'Nisbet, John', '2017-03-13', 11, 'https://www.gutenberg.org/ebooks/54354', 'en', 9781), +(22845, 'The American Frugal Housewife', 'Child, Lydia Maria', '2004-09-18', 188, 'https://www.gutenberg.org/ebooks/13493', 'en', 3407), +(22846, 'Rajalahden torppa\nKertomus viimeisestä Suomen sodasta', 'Åberg, J. O. (Johan Olof)', '2019-08-24', 7, 'https://www.gutenberg.org/ebooks/60161', 'fi', NULL), +(22847, '...So They Baked a Cake', 'Marks, Winston K. (Winston Kinney)', '2016-03-10', 37, 'https://www.gutenberg.org/ebooks/51414', 'en', 179), +(22848, 'From the Lips of the Sea', 'Scollard, Clinton', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7784', 'en', 1118), +(22849, 'Pennsylvania Dutch Rip Van Winkle: A romantic drama in two acts', 'Irving, Washington', '2017-11-04', 21, 'https://www.gutenberg.org/ebooks/55888', 'en', 9782), +(22850, 'Raison et sensibilité, ou les deux manières d\'aimer (Tome 2)', 'Austen, Jane', '2011-02-03', 22, 'https://www.gutenberg.org/ebooks/35151', 'fr', 45), +(22851, 'The Kiltartan Poetry Book; prose translations from the Irish', 'Gregory, Lady', '2004-10-01', 13, 'https://www.gutenberg.org/ebooks/6656', 'en', 9783), +(22852, 'Stories of the Olden Time\n(Historical Series—Book IV Part I)', NULL, '2010-10-16', 24, 'https://www.gutenberg.org/ebooks/34083', 'en', 1019), +(22853, 'Neæra: A Tale of Ancient Rome', 'Graham, John W. (John William), active 1886-1887', '2014-12-06', 28, 'https://www.gutenberg.org/ebooks/47571', 'en', 9784), +(22854, 'Is Life Worth Living?', 'Mallock, W. H. (William Hurrell)', '2005-12-02', 30, 'https://www.gutenberg.org/ebooks/17201', 'en', 680), +(22855, 'Captain Canot; Or, Twenty Years of an African Slaver', 'Mayer, Brantz', '2007-10-14', 45, 'https://www.gutenberg.org/ebooks/23034', 'en', 9785), +(22856, 'Notes and Queries, Number 224, February 11, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 3, 'https://www.gutenberg.org/ebooks/42003', 'en', 105), +(22857, 'A Rebellious Heroine', 'Bangs, John Kendrick', '2002-07-01', 14, 'https://www.gutenberg.org/ebooks/3324', 'en', 918), +(22858, 'Noveller', 'Canth, Minna', '2008-09-06', 17, 'https://www.gutenberg.org/ebooks/26546', 'sv', 61), +(22859, 'Mr. Prohack', 'Bennett, Arnold', '2004-06-29', 22, 'https://www.gutenberg.org/ebooks/12773', 'en', 637), +(22860, 'Some Summer Days in Iowa', 'Lazell, Frederick John', '2006-04-24', 15, 'https://www.gutenberg.org/ebooks/18249', 'en', 9786), +(22861, 'London at Night: A sketch-book', 'Carter, Frederick', '2017-02-14', 8, 'https://www.gutenberg.org/ebooks/54166', 'en', 9787), +(22862, 'The Patriotic Poems of Walt Whitman', 'Whitman, Walt', '2008-12-11', 32, 'https://www.gutenberg.org/ebooks/27494', 'en', 8), +(22863, 'L\'Internet et les langues', 'Lebert, Marie', '2009-11-08', 8, 'https://www.gutenberg.org/ebooks/30423', 'fr', 2069), +(22864, 'A Romance Of Tompkins Square\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 9, 'https://www.gutenberg.org/ebooks/23808', 'en', 770), +(22865, 'A System of Pyrotechny\r\nComprehending the theory and practice, with the application of chemistry; designed for exhibition and for war.', 'Cutbush, James', '2015-03-21', 10, 'https://www.gutenberg.org/ebooks/48539', 'en', 9788), +(22866, 'The Nursery, March 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2012-09-14', 27, 'https://www.gutenberg.org/ebooks/40754', 'en', 4641), +(22867, 'The Absentee', 'Edgeworth, Maria', '2006-03-18', 57, 'https://www.gutenberg.org/ebooks/1473', 'en', 9789), +(22868, 'The Settlers in Canada', 'Marryat, Frederick', '2008-01-07', 23, 'https://www.gutenberg.org/ebooks/24211', 'en', 9790), +(22869, 'Beneath the Banner: Being Narratives of Noble Lives and Brave Deeds', 'Cross, F. J. (Frederick J.)', '2003-11-01', 27, 'https://www.gutenberg.org/ebooks/10024', 'en', 8676), +(22870, 'The Catholic World, Vol. 08, October, 1868, to March, 1869.', 'Various', '2018-02-24', 1, 'https://www.gutenberg.org/ebooks/56631', 'en', 96), +(22871, 'Dick Hamilton\'s Fortune; Or, The Stirring Doings of a Millionaire\'s Son', 'Garis, Howard Roger', '2010-05-15', 18, 'https://www.gutenberg.org/ebooks/32374', 'en', 985), +(22872, 'Kylistä, kodeista ja vainioilta: Kertomuksia ja kuvaelmia', 'Alkio, Santeri', '2012-12-22', 15, 'https://www.gutenberg.org/ebooks/41686', 'fi', 665), +(22873, 'The Seven Plays in English Verse', 'Sophocles', '2004-12-27', 124, 'https://www.gutenberg.org/ebooks/14484', 'en', 9791), +(22874, 'Kardinalens frieri: En fågelhistoria', 'Stratton-Porter, Gene', '2016-10-22', 24, 'https://www.gutenberg.org/ebooks/53343', 'sv', 5689), +(22875, 'Sport and Work on the Nepaul Frontier\nTwelve Years Sporting Reminiscences of an Indigo Planter', 'Inglis, James', '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/10818', 'en', 9792), +(22876, 'Left to Ourselves; or, John Headley\'s Promise.', 'Shaw, Catharine', '2011-10-03', 8, 'https://www.gutenberg.org/ebooks/37606', 'en', 470), +(22877, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 1', 'Ames, Azel', '2003-06-01', 14, 'https://www.gutenberg.org/ebooks/4101', 'en', 7031), +(22878, 'Storia della decadenza e rovina dell\'impero romano, volume 12', 'Gibbon, Edward', '2014-03-26', 29, 'https://www.gutenberg.org/ebooks/45226', 'it', 1292), +(22879, 'The Rumble and the Roar', 'Bartholomew, Stephen', '2019-06-05', 132, 'https://www.gutenberg.org/ebooks/59679', 'en', 179), +(22880, 'Om medeltidens skådespel\r\noch deras fortgång till sednare tider, med särskildt fästadt afseende vid Finlands äldste dramatiske författare Jakob Pehrsson Chronander', 'Ingelius, Gustaf Edvard', '2016-06-10', 3, 'https://www.gutenberg.org/ebooks/52291', 'sv', 7292), +(22881, 'Voyages en France pendant les années 1787, 1788, 1789', 'Young, Arthur', '2005-04-05', 17, 'https://www.gutenberg.org/ebooks/15556', 'fr', 9793), +(22882, 'The Brentons', 'Ray, Anna Chapin', '2007-06-08', 9, 'https://www.gutenberg.org/ebooks/21763', 'en', 1463), +(22883, 'The Battle of the Strong: A Romance of Two Kingdoms — Volume 3', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6232', 'en', 9794), +(22884, 'British Sea Birds', 'Dixon, Charles', '2014-10-14', 14, 'https://www.gutenberg.org/ebooks/47115', 'en', 9356), +(22885, 'Mia Kontrabandulo', 'Alcott, Louisa May', '2006-02-03', 21, 'https://www.gutenberg.org/ebooks/17665', 'eo', 403), +(22886, 'En piga bland pigor', 'Nordström, Ester Blenda', '2015-05-15', 11, 'https://www.gutenberg.org/ebooks/48961', 'sv', 9795), +(22887, 'The Book of Ornamental Alphabets, Ancient and Medieval, from the Eighth Century\nWith Numerals, including Gothic; Church Text, Large and\nSmall; German Arabesque; Initials for Illumination,\nMonograms, Crosses, &c.', 'Delamotte, F. (Freeman)', '2007-11-11', 69, 'https://www.gutenberg.org/ebooks/23450', 'en', 9796), +(22888, 'Harrison\'s Amusing Picture and Poetry Book', 'Unknown', '2007-09-12', 16, 'https://www.gutenberg.org/ebooks/22582', 'en', 2296), +(22889, 'Raiders of the Sarhad\nBeing an Account of the Campaign of Arms and Bluff Against the Brigands of the Persian-Baluchi Border during the Great War', 'Dyer, R. E. H. (Reginald Edward Harry)', '2016-01-29', 20, 'https://www.gutenberg.org/ebooks/51070', 'en', 9797), +(22890, 'Feeding the Mind', 'Carroll, Lewis', '2011-03-09', 91, 'https://www.gutenberg.org/ebooks/35535', 'en', 6644), +(22891, 'Vacation Rambles', 'Hughes, Thomas', '2017-04-07', 16, 'https://www.gutenberg.org/ebooks/54502', 'en', 1408), +(22892, 'Little Masterpieces of American Wit and Humor, Volume II', NULL, '2015-01-10', 67, 'https://www.gutenberg.org/ebooks/47929', 'en', 190), +(22893, 'Aircraft and Submarines\r\nThe Story of the Invention, Development, and Present-Day Uses of War\'s Newest Weapons', 'Abbot, Willis J. (Willis John)', '2009-09-20', 94, 'https://www.gutenberg.org/ebooks/30047', 'en', 2511), +(22894, 'A Protegee of Jack Hamlin\'s, and Other Stories', 'Harte, Bret', '2006-05-25', 22, 'https://www.gutenberg.org/ebooks/2692', 'en', 179), +(22895, 'A History of England from Early Times: A Linked Index to the Project Gutenberg Editions', 'Farr, Edward', '2009-05-19', 27, 'https://www.gutenberg.org/ebooks/28884', 'en', 198), +(22896, 'Le Tour du Monde; Aux ruines d\'Angkor\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-10', 10, 'https://www.gutenberg.org/ebooks/29956', 'fr', 1673), +(22897, 'The College Freshman\'s Don\'t Book\r\nin the interests of freshmen at large, especially those whose remaining at large uninstructed & unguided appears a worry and a menace to college & university society these remarks and hints are set forth by G. F. E. (A. B.) a sympathizer', 'Evans, George Fullerton', '2013-04-04', 13, 'https://www.gutenberg.org/ebooks/42467', 'en', 9798), +(22898, 'English Caricaturists and Graphic Humourists of the Nineteenth Century.\nHow they Illustrated and Interpreted their Times.', 'Everitt, Graham', '2010-02-06', 33, 'https://www.gutenberg.org/ebooks/31195', 'en', 9799), +(22899, 'Complete Project Gutenberg Collection of Memoirs of Napoleon', 'Various', '2004-10-26', 24, 'https://www.gutenberg.org/ebooks/3740', 'en', 840), +(22900, 'Five Little Peppers at School', 'Sidney, Margaret', '2008-07-25', 38, 'https://www.gutenberg.org/ebooks/26122', 'en', 9800), +(22901, 'Two Little Knights of Kentucky', 'Johnston, Annie F. (Annie Fellows)', '2004-05-01', 22, 'https://www.gutenberg.org/ebooks/12317', 'en', 9801), +(22902, 'Children\'s Hour with Red Riding Hood and Other Stories', NULL, '2004-03-01', 151, 'https://www.gutenberg.org/ebooks/11592', 'en', 1007), +(22903, 'All But Lost: A Novel. Vol. 2 of 3', 'Henty, G. A. (George Alfred)', '2017-12-26', 25, 'https://www.gutenberg.org/ebooks/56255', 'en', 61), +(22904, 'Doom of the House of Duryea', 'Peirce, Earl', '2010-06-06', 28, 'https://www.gutenberg.org/ebooks/32710', 'en', 179), +(22905, 'Inchbracken: The Story of a Fama Clamosa', 'Cleland, Robert', '2012-07-25', 5, 'https://www.gutenberg.org/ebooks/40330', 'en', 98), +(22906, 'The Soul of Man under Socialism', 'Wilde, Oscar', '1997-08-01', 333, 'https://www.gutenberg.org/ebooks/1017', 'en', 254), +(22907, 'Ontboezemingen', 'Nievelt, Carel van', '2008-02-23', 5, 'https://www.gutenberg.org/ebooks/24675', 'nl', 885), +(22908, 'Women Students in the University of North Carolina: 1897-1922', 'Anonymous', '2018-06-24', 9, 'https://www.gutenberg.org/ebooks/57387', 'en', 9802), +(22909, 'Tutt and Mr. Tutt', 'Train, Arthur Cheney', '2003-12-01', 39, 'https://www.gutenberg.org/ebooks/10440', 'en', 9562), +(22910, 'Jusqu\'à l\'extrême regard: Poésie', 'Bertrand, Huguette', '2003-10-01', 15, 'https://www.gutenberg.org/ebooks/4565', 'fr', 8), +(22911, 'The Lake of Lucerne', 'Morris, Joseph E. (Joseph Ernest)', '2014-05-14', 21, 'https://www.gutenberg.org/ebooks/45642', 'en', 9803), +(22912, 'Narrative of William W. Brown, a Fugitive Slave', 'Brown, William Wells', '2005-02-21', 36, 'https://www.gutenberg.org/ebooks/15132', 'en', 9804), +(22913, 'Fire Island\nBeing the Adventures of Uncertain Naturalists in an Unknown Track', 'Fenn, George Manville', '2007-05-04', 16, 'https://www.gutenberg.org/ebooks/21307', 'en', 4321), +(22914, 'Azalea: The Story of a Little Girl in the Blue Ridge Mountains', 'Peattie, Elia Wilkinson', '2016-12-13', 13, 'https://www.gutenberg.org/ebooks/53727', 'en', 62), +(22915, 'Punch, or the London Charivari, Vol. 108, May 18th, 1895', 'Various', '2014-01-29', 4, 'https://www.gutenberg.org/ebooks/44790', 'en', 134), +(22916, 'The Shadow of the Past', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-08-29', 4, 'https://www.gutenberg.org/ebooks/37262', 'en', 713), +(22917, 'The Footpath Way: An Anthology for Walkers', NULL, '2019-06-25', 362, 'https://www.gutenberg.org/ebooks/59813', 'en', 9805), +(22918, 'Mr. Spaceship', 'Dick, Philip K.', '2010-05-25', 285, 'https://www.gutenberg.org/ebooks/32522', 'en', 2564), +(22919, 'A Military Genius\nLife of Anna Ella Carroll of Maryland', 'Blackwell, Sarah Ellen', '2007-06-23', 27, 'https://www.gutenberg.org/ebooks/21909', 'en', 9806), +(22920, 'Der Luftpirat und sein lenkbares Luftschiff 56: Die Weltenfahrer auf dem Riesen-Planeten', 'Anonymous', '2017-11-28', 8, 'https://www.gutenberg.org/ebooks/56067', 'de', 26), +(22921, 'A Queen\'s Error', 'Curties, Henry', '2008-05-25', 3, 'https://www.gutenberg.org/ebooks/25595', 'en', 9807), +(22922, 'En Nihilist', 'Stepniak, S.', '2008-01-28', 8, 'https://www.gutenberg.org/ebooks/24447', 'da', 9808), +(22923, 'Game and Playe of the Chesse\nA Verbatim Reprint of the First Edition, 1474', 'Caxton, William', '2004-01-01', 91, 'https://www.gutenberg.org/ebooks/10672', 'en', 9809), +(22924, 'The Passion for Life', 'Hocking, Joseph', '2012-06-28', 16, 'https://www.gutenberg.org/ebooks/40102', 'en', 48), +(22925, 'Girl Scouts in the Rockies', 'Roy, Lillian Elizabeth', '2011-11-15', 101, 'https://www.gutenberg.org/ebooks/38018', 'en', 315), +(22926, 'Faraday as a Discoverer', 'Tyndall, John', '1998-03-01', 48, 'https://www.gutenberg.org/ebooks/1225', 'en', 9810), +(22927, 'Mike Flannery On Duty and Off', 'Butler, Ellis Parker', '2005-03-09', 15, 'https://www.gutenberg.org/ebooks/15300', 'en', 9811), +(22928, 'Nearly Lost but Dearly Won', 'Wilson, Theodore P.', '2007-04-18', 14, 'https://www.gutenberg.org/ebooks/21135', 'en', 716), +(22929, 'The Long Ago', 'Wright, J. W. (Jacob William)', '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/4757', 'en', 20), +(22930, 'The Whale House of the Chilkat', 'Emmons, George Thornton', '2011-05-21', 15, 'https://www.gutenberg.org/ebooks/36182', 'en', 857), +(22931, 'The Love Poems\n(From Les Heures claires, Les Heures d\'après-midi, Les Heures du Soir)', 'Verhaeren, Emile', '2014-04-24', 26, 'https://www.gutenberg.org/ebooks/45470', 'en', 2185), +(22932, 'The Conservation of Races', 'Du Bois, W. E. B. (William Edward Burghardt)', '2004-05-01', 40, 'https://www.gutenberg.org/ebooks/5685', 'en', 2574), +(22933, 'Le Roi de Rome (1811-1832)', 'Welschinger, Henri', '2011-08-12', 11, 'https://www.gutenberg.org/ebooks/37050', 'fr', 9812), +(22934, 'The Sea Monarch', 'Westerman, Percy F. (Percy Francis)', '2018-09-29', 17, 'https://www.gutenberg.org/ebooks/57989', 'en', 324), +(22935, 'Punch, or the London Charivari, Vol. 150, June 14, 1916', 'Various', '2012-02-10', 12, 'https://www.gutenberg.org/ebooks/38824', 'en', 134), +(22936, 'The Mystery Boys and Captain Kidd\'s Message', 'Powell, Van', '2016-11-12', 13, 'https://www.gutenberg.org/ebooks/53515', 'en', 128), +(22937, 'Une vie', 'Maupassant, Guy de', '2006-01-04', 63, 'https://www.gutenberg.org/ebooks/17457', 'fr', 9813), +(22938, 'A History of Sinai', 'Eckenstein, Lina', '2015-11-05', 8, 'https://www.gutenberg.org/ebooks/50390', 'en', 9814), +(22939, 'A Visit to Three Fronts: June 1916', 'Doyle, Arthur Conan', '2006-02-01', 41, 'https://www.gutenberg.org/ebooks/9874', 'en', 449), +(22940, 'The Heart of Unaga', 'Cullum, Ridgwell', '2007-11-30', 18, 'https://www.gutenberg.org/ebooks/23662', 'en', 65), +(22941, 'Ironia Pozorów', 'Łubieński, Maciej', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/6000', 'pl', 61), +(22942, 'Thomas More: Een treurspel in verzen', 'Roland Holst-Van der Schalk, Henriette', '2014-11-11', 6, 'https://www.gutenberg.org/ebooks/47327', 'nl', 6779), +(22943, 'A Texas Matchmaker', 'Adams, Andy', '2004-07-16', 44, 'https://www.gutenberg.org/ebooks/12919', 'en', 9815), +(22944, 'Popular Rhymes and Nursery Tales\nA Sequel to the Nursery Rhymes of England', 'Halliwell-Phillipps, J. O. (James Orchard)', '2011-03-30', 29, 'https://www.gutenberg.org/ebooks/35707', 'en', 651), +(22945, 'The Æneids of Virgil, Done into English Verse', 'Virgil', '2009-07-09', 37, 'https://www.gutenberg.org/ebooks/29358', 'en', 9816), +(22946, 'Electricity in Locomotion\r\nAn Account of Its Mechanism, Its Achievements, and Its Prospects', 'Whyte, Adam Gowens', '2016-02-17', 11, 'https://www.gutenberg.org/ebooks/51242', 'en', 9817), +(22947, 'Charred Wood', 'Kelley, Francis Clement, Bp.', '2005-08-23', 12, 'https://www.gutenberg.org/ebooks/16585', 'en', 942), +(22948, 'La rana viajera', 'Camba, Julio', '2009-10-17', 39, 'https://www.gutenberg.org/ebooks/30275', 'es', 9818), +(22949, 'Ballads, Founded on Anecdotes Relating to Animals', 'Hayley, William', '2005-10-01', 6, 'https://www.gutenberg.org/ebooks/9048', 'en', 9819), +(22950, 'Madame Corentine', 'Bazin, René', '2013-09-21', 18, 'https://www.gutenberg.org/ebooks/43787', 'fr', 298), +(22951, 'Paradise Lost', 'Milton, John', '1991-10-01', 1916, 'https://www.gutenberg.org/ebooks/20', 'en', 9820), +(22952, 'Faust: Ein Gedicht', 'Nürnberger, Woldemar', '2017-05-15', 10, 'https://www.gutenberg.org/ebooks/54730', 'de', 8), +(22953, 'My New Home', 'Molesworth, Mrs.', '2008-08-14', 15, 'https://www.gutenberg.org/ebooks/26310', 'en', 195), +(22954, 'Cupboard Love\nThe Lady of the Barge and Others, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12125', 'en', 1902), +(22955, 'The Civil War Through the Camera', 'Elson, Henry W. (Henry William)', '2013-05-07', 27, 'https://www.gutenberg.org/ebooks/42655', 'en', 1717), +(22956, 'Recollections of the Private Life of Napoleon — Volume 05', 'Wairy, Louis Constant', '2002-12-01', 12, 'https://www.gutenberg.org/ebooks/3572', 'en', 840), +(22957, 'Masterpieces of Mystery in Four Volumes: Riddle Stories', NULL, '2009-08-15', 91, 'https://www.gutenberg.org/ebooks/29704', 'en', 179), +(22958, 'The Confessions of Jean Jacques Rousseau — Volume 12', 'Rousseau, Jean-Jacques', '2004-12-06', 31, 'https://www.gutenberg.org/ebooks/3912', 'en', 608), +(22959, 'Influencia da Religião sobre a Politica do Estado', 'Macedo, Inácio José de', '2010-11-12', 12, 'https://www.gutenberg.org/ebooks/34289', 'pt', 8549), +(22960, 'The Devil in Iron', 'Howard, Robert E. (Robert Ervin)', '2013-02-26', 174, 'https://www.gutenberg.org/ebooks/42209', 'en', 4698), +(22961, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1883-06)', NULL, '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12579', 'pt', 6941), +(22962, 'The Fruit of the Tree', 'Wharton, Edith', '2006-09-06', 94, 'https://www.gutenberg.org/ebooks/19191', 'en', 9821), +(22963, 'Göteborgsflickor\noch andra historier', 'Strömberg, Sigge', '2006-03-23', 31, 'https://www.gutenberg.org/ebooks/18043', 'sv', 637), +(22964, 'Identification of the Larger Fungi', 'Watling, Roy', '2019-08-24', 126, 'https://www.gutenberg.org/ebooks/60159', 'en', NULL), +(22965, 'Beatrice Cenci: Storia del secolo XVI', 'Guerrazzi, Francesco Domenico', '2006-02-23', 49, 'https://www.gutenberg.org/ebooks/17837', 'it', 9822), +(22966, 'Chicken Little Jane on the Big John', 'Ritchie, Lily Munsell', '2009-12-08', 3, 'https://www.gutenberg.org/ebooks/30629', 'en', 2063), +(22967, 'Tales and Novels — Volume 05\r\nTales of a Fashionable Life', 'Edgeworth, Maria', '2005-12-01', 32, 'https://www.gutenberg.org/ebooks/9414', 'en', 61), +(22968, 'Les Misérables, v. 3/5: Marius', 'Hugo, Victor', '2015-04-18', 29, 'https://www.gutenberg.org/ebooks/48733', 'en', 2986), +(22969, 'A Discourse Being Introductory to his Course of Lectures on Elocution and the English Language (1759)', 'Sheridan, Thomas', '2011-12-30', 12, 'https://www.gutenberg.org/ebooks/38444', 'en', 9823), +(22970, 'Annie Laurie and Azalea', 'Peattie, Elia Wilkinson', '2017-01-16', 5, 'https://www.gutenberg.org/ebooks/53975', 'en', 62), +(22971, 'Hiram the Young Farmer', 'Todd, Burbank L.', '1999-03-01', 13, 'https://www.gutenberg.org/ebooks/1679', 'en', 9824), +(22972, 'Over Periscope Pond\nLetters from Two American Girls in Paris October 1916-January 1918', 'Root, Esther Sayles', '2014-05-29', 9, 'https://www.gutenberg.org/ebooks/45810', 'en', 8930), +(22973, 'Georgina of the Rainbows', 'Johnston, Annie F. (Annie Fellows)', '2012-05-02', 15, 'https://www.gutenberg.org/ebooks/39596', 'en', 62), +(22974, 'The Dyak chief, and other verses', 'Garrett, Erwin Clarkson', '2016-09-26', 10, 'https://www.gutenberg.org/ebooks/53149', 'en', 994), +(22975, 'On the Kentucky Frontier: A Story of the Fighting Pioneers of the West', 'Otis, James', '2010-10-29', 16, 'https://www.gutenberg.org/ebooks/33890', 'en', 2843), +(22976, 'Rita', 'Richards, Laura Elizabeth Howe', '2008-03-14', 14, 'https://www.gutenberg.org/ebooks/24827', 'en', 2588), +(22977, 'The Story of Dutch Painting', 'Caffin, Charles H. (Charles Henry)', '2019-05-10', 32, 'https://www.gutenberg.org/ebooks/59473', 'en', 9825), +(22978, 'The Red City: A Novel of the Second Administration of President Washington', 'Mitchell, S. Weir (Silas Weir)', '2010-06-22', 19, 'https://www.gutenberg.org/ebooks/32942', 'en', 9826), +(22979, 'Southern Arabia', 'Bent, Theodore, Mrs.', '2007-05-22', 29, 'https://www.gutenberg.org/ebooks/21569', 'en', 5489), +(22980, '舊唐書', 'Liu, Xu', '2008-01-10', 8, 'https://www.gutenberg.org/ebooks/24229', 'zh', 9827), +(22981, 'Adenoids and Diseased Tonsils: Their Effect on General Intelligence', 'Rogers, Margaret Cobb', '2012-01-26', 23, 'https://www.gutenberg.org/ebooks/38676', 'en', 9828), +(22982, 'Galusha the Magnificent', 'Lincoln, Joseph Crosby', '2006-06-06', 23, 'https://www.gutenberg.org/ebooks/4905', 'en', 4374), +(22983, 'A History of the British Army, Vol. 2\r\nFirst Part—to the Close of the Seven Years\' War', 'Fortescue, J. W. (John William), Sir', '2018-02-20', 18, 'https://www.gutenberg.org/ebooks/56609', 'en', 6517), +(22984, 'Een liefde', 'Deyssel, Lodewijk van', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10820', 'nl', 61), +(22985, 'Ragged Dick', 'Alger, Horatio, Jr.', '2007-02-03', 33, 'https://www.gutenberg.org/ebooks/20689', 'en', 3210), +(22986, 'The Daughter of Virginia Dare', 'Wall, Mary Virginia', '2019-01-30', 8, 'https://www.gutenberg.org/ebooks/58793', 'en', 4969), +(22987, 'Figures in Verse and Simple Rhymes, for Little Learners (Second Series; No. 2)', 'Anonymous', '2019-05-31', 23, 'https://www.gutenberg.org/ebooks/59641', 'en', 859), +(22988, 'Diary of Samuel Pepys — Volume 20: January/February 1662-63', 'Pepys, Samuel', '2004-11-30', 26, 'https://www.gutenberg.org/ebooks/4139', 'en', 2197), +(22989, 'Encyclopaedia Britannica, 11th Edition, \"Electrostatics\" to \"Engis\"\r\nVolume 9, Slice 3', 'Various', '2011-02-04', 40, 'https://www.gutenberg.org/ebooks/35169', 'en', 1081), +(22990, 'Le Tour du Monde; Kachmir\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-07-29', 13, 'https://www.gutenberg.org/ebooks/29536', 'fr', 1294), +(22991, 'The Mystery of the Clasped Hands: A Novel', 'Boothby, Guy', '2013-05-25', 16, 'https://www.gutenberg.org/ebooks/42807', 'en', 61), +(22992, 'The Destiny of Man, Viewed in the Light of His Origin', 'Fiske, John', '2005-12-06', 17, 'https://www.gutenberg.org/ebooks/17239', 'en', 1509), +(22993, 'Retail Shoe Salesmanship', 'Geuting, A. H.', '2017-06-22', 13, 'https://www.gutenberg.org/ebooks/54962', 'en', 9829), +(22994, 'Bonnie Scotland\nPainted by Sutton Palmer; Described by A.R. Hope Moncrieff', 'Moncrieff, A. R. Hope (Ascott Robert Hope)', '2014-12-06', 27, 'https://www.gutenberg.org/ebooks/47549', 'en', 2714), +(22995, 'L\'Illustration, No. 3266, 30 Septembre 1905', 'Various', '2011-04-25', 5, 'https://www.gutenberg.org/ebooks/35955', 'fr', 150), +(22996, 'Buried Cities, Volume 2: Olympia', 'Hall, Jennie', '2004-08-10', 10, 'https://www.gutenberg.org/ebooks/9626', 'en', 9830), +(22997, 'Katy Gaumer', 'Singmaster, Elsie', '2015-03-16', 15, 'https://www.gutenberg.org/ebooks/48501', 'en', 9831), +(22998, 'Le duel au balai\r\nExtrait du quotitien \"La Patrie\", éditions du 27 et 28 février 1879.', 'Wilhelm, Ch.', '2007-12-12', 5, 'https://www.gutenberg.org/ebooks/23830', 'fr', 61), +(22999, 'In Zuid-Bretagne\r\nDe Aarde en haar Volken, 1906', 'Geffroy, Gustave', '2004-10-10', 16, 'https://www.gutenberg.org/ebooks/13699', 'nl', 2281), +(23000, 'Australasian Democracy', 'Walker, Henry de Rosenbach', '2011-01-08', 12, 'https://www.gutenberg.org/ebooks/34887', 'en', 9832), +(23001, 'Georges', 'Dumas, Alexandre', '2006-04-27', 57, 'https://www.gutenberg.org/ebooks/18271', 'fr', 9833), +(23002, 'The Sad Shepherd: A Christmas Story', 'Van Dyke, Henry', '2005-05-29', 4, 'https://www.gutenberg.org/ebooks/15936', 'en', 585), +(23003, 'The English in the West Indies; Or, The Bow of Ulysses', 'Froude, James Anthony', '2010-06-07', 51, 'https://www.gutenberg.org/ebooks/32728', 'en', 9834), +(23004, 'Beacon Lights of History, Volume 02: Jewish Heroes and Prophets', 'Lord, John', '2003-12-01', 37, 'https://www.gutenberg.org/ebooks/10478', 'en', 1368), +(23005, 'L\'Illustration, No. 0046, 13 Janvier 1844.', 'Various', '2012-07-23', 1, 'https://www.gutenberg.org/ebooks/40308', 'fr', 150), +(23006, 'The Making of William Edwards; or, The Story of the Bridge of Beauty', 'Banks, G. Linnaeus (George Linnaeus), Mrs.', '2011-12-05', 8, 'https://www.gutenberg.org/ebooks/38212', 'en', 61), +(23007, 'The Lyrical Dramas of Aeschylus Translated into English Verse', 'Aeschylus', '2019-04-08', 34, 'https://www.gutenberg.org/ebooks/59225', 'en', 9835), +(23008, 'Airship Andy; Or, The Luck of a Brave Boy', 'Webster, Frank V.', '2011-06-12', 84, 'https://www.gutenberg.org/ebooks/36388', 'en', 9836), +(23009, 'A Man of Business', 'Balzac, Honoré de', '2005-02-24', 25, 'https://www.gutenberg.org/ebooks/1813', 'en', 58), +(23010, 'Massenpsychologie und Ich-Analyse', 'Freud, Sigmund', '2010-01-04', 31, 'https://www.gutenberg.org/ebooks/30843', 'de', 3640), +(23011, 'Observations on the Causes, Symptoms, and Nature of Scrofula or King\'s Evil, Scurvy, and Cancer\nWith Cases Illustrative of a Peculiar Mode of Treatment', 'Kent, John', '2007-11-13', 19, 'https://www.gutenberg.org/ebooks/23468', 'en', 9837), +(23012, 'Œuvres complètes de lord Byron, Tome 2\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-02-14', 12, 'https://www.gutenberg.org/ebooks/28080', 'fr', 3504), +(23013, 'Moorland Idylls', 'Allen, Grant', '2015-05-14', 8, 'https://www.gutenberg.org/ebooks/48959', 'en', 9838), +(23014, 'Riita-asia: Ilveilys yhdessä näytöksessä', 'Benedix, Roderich', '2008-10-15', 15, 'https://www.gutenberg.org/ebooks/26926', 'fi', 9839), +(23015, 'Fifty Glimpses of Washington\nand Its Neighborhood', 'Unknown', '2009-06-17', 31, 'https://www.gutenberg.org/ebooks/29152', 'en', 9840), +(23016, 'Some of My War Stories\nA Paper Read before the Ohio Commandery of the Loyal legion', 'Foote, Allen Ripley', '2010-04-14', 6, 'https://www.gutenberg.org/ebooks/31991', 'en', 444), +(23017, 'The Geologic Story of Canyonlands National Park', 'Lohman, Stanley William', '2016-01-27', 14, 'https://www.gutenberg.org/ebooks/51048', 'en', 9841), +(23018, 'Old Ticonderoga, a Picture of the Past\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9242', 'en', 3175), +(23019, 'The Chautauquan, Vol. 03, January 1883\r\nA Monthly Magazine Devoted to the Promotion of True Culture.\r\nOrgan of the Chautauqua Literary and Scientific Circle', 'Chautauqua Literary and Scientific Circle', '2015-02-05', 15, 'https://www.gutenberg.org/ebooks/48165', 'en', 1115), +(23020, 'Hugh: Memoirs of a Brother', 'Benson, Arthur Christopher', '2006-06-17', 14, 'https://www.gutenberg.org/ebooks/18615', 'en', 1299), +(23021, 'Dactylography; Or, The Study of Finger-prints', 'Faulds, Henry', '2015-01-08', 18, 'https://www.gutenberg.org/ebooks/47911', 'en', 1935), +(23022, 'University of California Library Handbook 1918-1919', 'University of California (1868-1952). Library', '2016-04-27', 7, 'https://www.gutenberg.org/ebooks/51874', 'en', 9842), +(23023, 'Buddhism and Buddhists in China', 'Hodous, Lewis', '2005-06-01', 38, 'https://www.gutenberg.org/ebooks/8390', 'en', 639), +(23024, 'The Interdependence of Literature', 'Curtis, Georgina Pell', '2003-02-01', 14, 'https://www.gutenberg.org/ebooks/3778', 'en', 9843), +(23025, 'The Great Doctrines of the Bible', 'Evans, William', '2004-07-01', 87, 'https://www.gutenberg.org/ebooks/6038', 'en', 9844), +(23026, 'The Federalist Papers', 'Jay, John', '2007-09-01', 49, 'https://www.gutenberg.org/ebooks/22788', 'en', 9845), +(23027, 'The Bad Family & Other Stories', 'Fenwick, E. (Eliza)', '2009-07-09', 18, 'https://www.gutenberg.org/ebooks/29360', 'en', 195), +(23028, 'Gesammelte Werke in fünf Bänden — 1. Band', 'Bjørnson, Bjørnstjerne', '2004-07-16', 50, 'https://www.gutenberg.org/ebooks/12921', 'de', 179), +(23029, 'General History for Colleges and High Schools', 'Myers, P. V. N. (Philip Van Ness)', '2004-11-01', 67, 'https://www.gutenberg.org/ebooks/6804', 'en', 346), +(23030, 'The Federalist Papers', 'Jay, John', '1991-08-01', 966, 'https://www.gutenberg.org/ebooks/18', 'en', 187), +(23031, 'Mon frère Yves', 'Loti, Pierre', '2006-05-20', 16, 'https://www.gutenberg.org/ebooks/18427', 'fr', 3603), +(23032, 'Camperdown; or, News from our neighbourhood', 'Griffith, Mary', '2017-05-11', 19, 'https://www.gutenberg.org/ebooks/54708', 'en', 5147), +(23033, 'The Imaginary Invalid', 'Molière', '2005-10-01', 110, 'https://www.gutenberg.org/ebooks/9070', 'en', 1467), +(23034, 'Addresses by Henry Drummond', 'Drummond, Henry', '2001-02-01', 23, 'https://www.gutenberg.org/ebooks/2498', 'en', 659), +(23035, 'Elsie and Her Loved Ones', 'Finley, Martha', '2015-02-25', 26, 'https://www.gutenberg.org/ebooks/48357', 'en', 9846), +(23036, 'The Romance of the Commonplace', 'Burgess, Gelett', '2015-06-25', 40, 'https://www.gutenberg.org/ebooks/49285', 'en', 4637); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(23037, 'Intercession: A Sermon Preached by the Rev. B. N. Michelson, B.A.', 'Michelson, B. N.', '2008-08-16', 13, 'https://www.gutenberg.org/ebooks/26328', 'en', 9847), +(23038, 'Human Genome Project, Build 34, Chromosome Y', 'Human Genome Project', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11798', 'en', 1385), +(23039, 'El ebook tiene 40 años (1971-2011)', 'Lebert, Marie', '2011-08-06', 13, 'https://www.gutenberg.org/ebooks/36986', 'es', 2047), +(23040, 'Sea Urchins', 'Jacobs, W. W. (William Wymark)', '2007-06-25', 21, 'https://www.gutenberg.org/ebooks/21931', 'en', 72), +(23041, 'The Transgression of Andrew Vane: A Novel', 'Carryl, Guy Wetmore', '2011-11-15', 27, 'https://www.gutenberg.org/ebooks/38020', 'en', 560), +(23042, 'Le Poème du Rhône, en XII chants. Texte Provençal et Traduction Française', 'Mistral, Frédéric', '2011-10-26', 15, 'https://www.gutenberg.org/ebooks/37854', 'fr', 9848), +(23043, 'Onkel Toms Hytte', 'Stowe, Harriet Beecher', '2018-03-28', 40, 'https://www.gutenberg.org/ebooks/56863', 'no', 9849), +(23044, 'Monte-Criston kreivi', 'Dumas, Alexandre', '2014-04-21', 36, 'https://www.gutenberg.org/ebooks/45448', 'fi', 323), +(23045, 'Blackwood\'s Edinburgh Magazine, Volume 60, Number 371, September 1846', 'Various', '2019-03-06', 12, 'https://www.gutenberg.org/ebooks/59017', 'en', 274), +(23046, 'More Toasts\r\nJokes, Stories and Quotations', NULL, '2005-03-12', 15, 'https://www.gutenberg.org/ebooks/15338', 'en', 190), +(23047, 'Merlin: A Poem', 'Robinson, Edwin Arlington', '2012-09-30', 9, 'https://www.gutenberg.org/ebooks/40906', 'en', 9850), +(23048, 'Successward: A Young Man\'s Book for Young Men', 'Bok, Edward William', '2011-08-14', 22, 'https://www.gutenberg.org/ebooks/37068', 'en', 9851), +(23049, 'Blazing the Way; Or, True Stories, Songs and Sketches of Puget Sound', 'Denny, Emily Inez', '2012-04-01', 16, 'https://www.gutenberg.org/ebooks/39334', 'en', 99), +(23050, 'From Convent to Conflict; Or, A Nun\'s Account of the Invasion of Belgium', 'Marie Antoine, Sister', '2018-01-03', 7, 'https://www.gutenberg.org/ebooks/56299', 'en', 3333), +(23051, 'La maison à vapeur: Voyage à travers l\'Inde septentrionale', 'Verne, Jules', '2005-01-26', 15, 'https://www.gutenberg.org/ebooks/14810', 'fr', 6733), +(23052, 'Moses and Aaron: Civil and Ecclesiastical Rites, Used by the Ancient Hebrews', 'Goodwin, Thomas', '2016-07-24', 17, 'https://www.gutenberg.org/ebooks/52639', 'en', 9852), +(23053, 'The Lion\'s Brood', 'Osborne, Duffield', '2006-12-29', 29, 'https://www.gutenberg.org/ebooks/20219', 'en', 98), +(23054, 'Swetnam, the Woman-hater, arraigned by women\nA new comedie, acted at the Red Bull, by the late Queenes seruants.', 'Anonymous', '2018-11-18', 12, 'https://www.gutenberg.org/ebooks/58303', 'en', 9853), +(23055, 'The Buccaneer: A Tale', 'Hall, S. C., Mrs.', '2009-02-14', 18, 'https://www.gutenberg.org/ebooks/28074', 'en', 6161), +(23056, 'Brieven uit en over Amerika', 'Gerritsen, C. V. (Carel Victor)', '2009-01-13', 9, 'https://www.gutenberg.org/ebooks/27800', 'nl', 1110), +(23057, 'The Cathedrals of Northern Spain\r\nTheir History and Their Architecture; Together with Much of Interest Concerning the Bishops, Rulers and Other Personages Identified with Them', 'Rudy, Charles', '2010-04-12', 27, 'https://www.gutenberg.org/ebooks/31965', 'en', 8704), +(23058, 'The Heart of the Alleghanies; or, Western North Carolina', 'Zeigler, Wilbur Gleason', '2016-01-17', 16, 'https://www.gutenberg.org/ebooks/50952', 'en', 9854), +(23059, 'An Introduction to Entomology: Vol. 4\r\nor Elements of the Natural History of the Insects', 'Kirby, William', '2013-08-27', 13, 'https://www.gutenberg.org/ebooks/43579', 'en', 9855), +(23060, 'The River Prophet', 'Spears, Raymond S. (Raymond Smiley)', '2009-05-16', 5, 'https://www.gutenberg.org/ebooks/28848', 'en', 1224), +(23061, 'Christina of Denmark, Duchess of Milan and Lorraine, 1522-1590', 'Cartwright, Julia', '2015-02-07', 10, 'https://www.gutenberg.org/ebooks/48191', 'en', 2426), +(23062, 'Men of Invention and Industry', 'Smiles, Samuel', '1996-11-01', 95, 'https://www.gutenberg.org/ebooks/725', 'en', 9856), +(23063, 'The Second Violin', 'Richmond, Grace S. (Grace Smith)', '2004-08-17', 13, 'https://www.gutenberg.org/ebooks/13209', 'en', 376), +(23064, 'A Propos de l\'Assommoir', 'Rod, Édouard', '2014-09-10', 8, 'https://www.gutenberg.org/ebooks/46837', 'fr', 9857), +(23065, 'Das kleine Dummerle und andere Erzählungen zum Vorlesen im Familienkreise', 'Sapper, Agnes', '2006-11-07', 20, 'https://www.gutenberg.org/ebooks/19733', 'de', 179), +(23066, 'American Scenery, Vol. 2 (of 2)\r\nor, Land, lake, and river illustrations of transatlantic nature', 'Willis, Nathaniel Parker', '2015-05-24', 16, 'https://www.gutenberg.org/ebooks/49043', 'en', 1110), +(23067, 'The Bible, Douay-Rheims, Book 64: Philemon\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8364', 'en', 9858), +(23068, 'Essentials of Economic Theory\nAs Applied to Modern Problems of Industry and Public Policy', 'Clark, John Bates', '2010-02-02', 55, 'https://www.gutenberg.org/ebooks/31159', 'en', 1745), +(23069, 'Buddhist birth stories; or, Jataka tales, Volume 1', NULL, '2016-04-28', 54, 'https://www.gutenberg.org/ebooks/51880', 'en', 9859), +(23070, 'Abélard, Tome II', 'Rémusat, Charles de', '2004-10-20', 17, 'https://www.gutenberg.org/ebooks/13807', 'fr', 9860), +(23071, 'The Gateless Barrier', 'Malet, Lucas', '2010-12-11', 18, 'https://www.gutenberg.org/ebooks/34619', 'en', 531), +(23072, 'Harper\'s Young People, December 2, 1879\nAn Illustrated Weekly', 'Various', '2009-03-04', 17, 'https://www.gutenberg.org/ebooks/28246', 'en', 479), +(23073, 'Historia alegre de Portugal: leitura para o povo e para as escolas', 'Chagas, Manuel Pinheiro', '2009-07-13', 34, 'https://www.gutenberg.org/ebooks/29394', 'pt', 6414), +(23074, 'Life of Lord Byron, Vol. 4\r\nWith His Letters and Journals', 'Moore, Thomas', '2005-08-19', 26, 'https://www.gutenberg.org/ebooks/16549', 'en', 6521), +(23075, 'A Modest Meane to Mariage\r\npleasauntly set foorth by that famous Clarke Erasmus Roterodamus, and translated into Englishe by N.L.', 'Erasmus, Desiderius', '2014-07-09', 15, 'https://www.gutenberg.org/ebooks/46239', 'en', 3806), +(23076, 'The Emerald City of Oz', 'Baum, L. Frank (Lyman Frank)', '1996-05-01', 402, 'https://www.gutenberg.org/ebooks/517', 'en', 8630), +(23077, 'Ein Ring', 'Heyse, Paul', '2005-10-01', 20, 'https://www.gutenberg.org/ebooks/9084', 'de', 9861), +(23078, 'The Gilded Man: A Romance of the Andes', 'Smyth, Clifford', '2013-05-13', 38, 'https://www.gutenberg.org/ebooks/42699', 'en', 9862), +(23079, 'Common Minerals and Rocks', 'Crosby, William O. (William Otis)', '2015-06-24', 39, 'https://www.gutenberg.org/ebooks/49271', 'en', 9863), +(23080, 'Twilight and Dawn; Or, Simple Talks on the Six Days of Creation', 'Pridham, Caroline', '2005-05-01', 9, 'https://www.gutenberg.org/ebooks/8156', 'en', 9864), +(23081, 'The Boy Scout', 'Davis, Richard Harding', '2006-10-08', 9, 'https://www.gutenberg.org/ebooks/19501', 'en', 1002), +(23082, 'American Historical and Literary Curiosities, Part 22.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-16', 5, 'https://www.gutenberg.org/ebooks/7922', 'en', 453), +(23083, 'L\'Abbé de l\'Épée: sa vie, son apostolat, ses travaux, sa lutte et ses succès', 'Berthier, Ferdinand', '2011-08-04', 23, 'https://www.gutenberg.org/ebooks/36972', 'fr', 9865), +(23084, '中國小說史略', 'Lu, Xun', '2008-05-22', 52, 'https://www.gutenberg.org/ebooks/25559', 'zh', 9866), +(23085, 'Creation Myths of Primitive America\nIn relation to the Religious History and Mental Development of Mankind', 'Curtin, Jeremiah', '2012-03-11', 18, 'https://www.gutenberg.org/ebooks/39106', 'en', 1749), +(23086, 'The Mother and Her Child', 'Sadler, William S. (William Samuel)', '2007-03-14', 50, 'https://www.gutenberg.org/ebooks/20817', 'en', 9867), +(23087, 'The Flowing Bowl\nA Treatise on Drinks of All Kinds and of All Periods, Interspersed with Sundry Anecdotes and Reminiscences', 'Spencer, Edward', '2018-05-18', 15, 'https://www.gutenberg.org/ebooks/57179', 'en', 9868), +(23088, 'Raamatun tutkisteluja 3: Tulkoon valtakuntasi', 'Russell, C. T. (Charles Taze)', '2018-04-02', 6, 'https://www.gutenberg.org/ebooks/56897', 'fi', 9869), +(23089, 'The Champagne Standard', 'Lane, John, Mrs.', '2013-01-11', 14, 'https://www.gutenberg.org/ebooks/41820', 'en', 9870), +(23090, 'Through Hell with Hiprah Hunt\r\nA Series of Pictures and Notes of Travel Illustrating the Adventures of a Modern Dante in the Infernal Regions; Also Other Pictures of the Same Subterranean World', 'Young, Art', '2018-10-18', 26, 'https://www.gutenberg.org/ebooks/58131', 'en', 9871), +(23091, 'In the Dead of Night: A Novel. Volume 1 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-09-21', 14, 'https://www.gutenberg.org/ebooks/57945', 'en', 137), +(23092, 'Sketches by Seymour — Volume 05', 'Seymour, Robert', '2004-07-13', 13, 'https://www.gutenberg.org/ebooks/5649', 'en', 1688), +(23093, 'Crocker\'s Hole\nFrom \"Slain By The Doones\" By R. D. Blackmore', 'Blackmore, R. D. (Richard Doddridge)', '2007-08-14', 12, 'https://www.gutenberg.org/ebooks/22318', 'en', 45), +(23094, 'The Mabinogion Vol. 1', NULL, '2006-11-28', 94, 'https://www.gutenberg.org/ebooks/19959', 'en', 1948), +(23095, 'The Portrait of a Lady — Volume 2', 'James, Henry', '2001-09-01', 240, 'https://www.gutenberg.org/ebooks/2834', 'en', 1380), +(23096, 'Geneva\nPainted by J. Hardwicke Lewis & May Hardwicke Lewis.\nDescribed by Francis Gribble.', 'Gribble, Francis Henry', '2015-12-21', 7, 'https://www.gutenberg.org/ebooks/50738', 'en', 9872), +(23097, 'Œuvres complètes de lord Byron, Tome 7\r\ncomprenant ses mémoires publiées par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-04-27', 10, 'https://www.gutenberg.org/ebooks/28622', 'fr', 3504), +(23098, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 8 (of 8)\r\nDiscoveries. Edmund Spenser. Poetry and Tradition; and Other Essays. Bibliography', 'Yeats, W. B. (William Butler)', '2015-08-05', 63, 'https://www.gutenberg.org/ebooks/49615', 'en', 1728), +(23099, 'Andivius Hedulio: Adventures of a Roman Nobleman in the Days of the Empire', 'White, Edward Lucas', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/8532', 'en', 98), +(23100, 'The Romance of the Coast', 'Runciman, James', '2005-10-19', 12, 'https://www.gutenberg.org/ebooks/16911', 'en', 252), +(23101, 'Eulogy on Chief-Justice Chase\nDelivered by William M. Evarts before the Alumni of\nDartmouth College, at Hanover', 'Evarts, William Maxwell', '2006-09-03', 12, 'https://www.gutenberg.org/ebooks/19165', 'en', 9873), +(23102, 'The Insidious Dr. Fu Manchu', 'Rohmer, Sax', '1994-10-01', 349, 'https://www.gutenberg.org/ebooks/173', 'en', 177), +(23103, 'Kertomuksia Intiasta', 'Kipling, Rudyard', '2017-03-21', 14, 'https://www.gutenberg.org/ebooks/54398', 'fi', 1585), +(23104, 'Mazelli, and Other Poems', 'Sands, George W.', '1999-12-01', 10, 'https://www.gutenberg.org/ebooks/2008', 'en', 9874), +(23105, 'The Irish Penny Journal, Vol. 1 No. 06, August 8, 1840', 'Various', '2017-01-17', 11, 'https://www.gutenberg.org/ebooks/53981', 'en', 81), +(23106, 'Gabriel Tolliver: A Story of Reconstruction', 'Harris, Joel Chandler', '2010-07-03', 22, 'https://www.gutenberg.org/ebooks/33058', 'en', 793), +(23107, 'Jälkipoimintoja 1: Volmari', 'Päivärinta, Pietari', '2014-02-16', 35, 'https://www.gutenberg.org/ebooks/44936', 'fi', 456), +(23108, 'The Book of Enterprise and Adventure\nBeing an Excitement to Reading. for Young People. a New and Condensed Edition.', 'Anonymous', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11308', 'en', 9875), +(23109, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Sechster Band: enthaltend Kapitel 11 und 12', 'Macaulay, Thomas Babington Macaulay, Baron', '2012-04-29', 10, 'https://www.gutenberg.org/ebooks/39562', 'de', 3001), +(23110, 'Sketches of St. Augustine\r\nWith a view of its history and advantages as a resort for invalids', 'Sewall, Rufus King', '2016-08-19', 11, 'https://www.gutenberg.org/ebooks/52853', 'en', 4634), +(23111, 'Memory: How to Develop, Train, and Use It', 'Atkinson, William Walker', '2012-11-25', 159, 'https://www.gutenberg.org/ebooks/41478', 'en', 9876), +(23112, 'Religion & Morality Vindicated, Against Hypocrisy and Pollution\r\nOr, an Account of the Life and Character of John Church the Obelisk Preacher, Who Was Formerly a Frequenter of Vere-street, and Who Has Been Charged With Unnatural Practices in Various Places. To Which Is Annexed, a Fac-simile of a Letter, Written by Him to James Cook, Who Kept the Infamous House in Vere-street.', 'Bell, Robert', '2018-12-27', 6, 'https://www.gutenberg.org/ebooks/58555', 'en', 7198), +(23113, 'Der Neuen Gedichte: Anderer Teil', 'Rilke, Rainer Maria', '2010-10-15', 33, 'https://www.gutenberg.org/ebooks/33864', 'de', 8), +(23114, 'The New Testament\r\nTranslated From the Original Greek, With Chronological Arrangement of the Sacred Books, and Improved Divisions of Chapters and Verses.', NULL, '2008-06-26', 28, 'https://www.gutenberg.org/ebooks/25901', 'en', 2781), +(23115, 'Elämäni muistoja', 'Tagore, Rabindranath', '2019-05-12', 2, 'https://www.gutenberg.org/ebooks/59487', 'fi', 9633), +(23116, 'The Gilded Age, Part 6.', 'Warner, Charles Dudley', '2004-06-20', 21, 'https://www.gutenberg.org/ebooks/5823', 'en', 9877), +(23117, 'A History of the Reformation (Vol. 2 of 2)', 'Lindsay, Thomas M. (Thomas Martin)', '2012-09-18', 17, 'https://www.gutenberg.org/ebooks/40798', 'en', 9878), +(23118, 'The Life of Saint Columba, Abbot, and Apostle of the Northern Picts', 'Anonymous', '2012-01-27', 11, 'https://www.gutenberg.org/ebooks/38682', 'en', 9879), +(23119, 'To Your Dog and to My Dog', NULL, '2012-05-21', 19, 'https://www.gutenberg.org/ebooks/39750', 'en', 9880), +(23120, 'Blackwood\'s Edinburgh Magazine, Volume 68, No. 417, July, 1850', 'Various', '2013-12-03', 16, 'https://www.gutenberg.org/ebooks/44338', 'en', 711), +(23121, 'Cromwell\r\nA Drama, in Five Acts', 'Richards, Alfred Bate', '2004-12-24', 12, 'https://www.gutenberg.org/ebooks/14448', 'en', 9881), +(23122, 'The Preacher\'s Complete Homiletic Commentary on the Books of the Bible, Volume 13 (of 32)\nThe Preacher\'s Complete Homiletic Commentary on the Book of the Proverbs', 'Harris, W., Rev.', '2019-01-25', 13, 'https://www.gutenberg.org/ebooks/58767', 'en', 9743), +(23123, 'Four-Dimensional Vistas', 'Bragdon, Claude Fayette', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/11906', 'en', 9882), +(23124, 'Das Trottelbuch', 'Jung, Franz', '2011-07-12', 25, 'https://www.gutenberg.org/ebooks/36718', 'de', 549), +(23125, 'Military Service and Adventures in the Far East: Vol. 1 (of 2)\r\nIncluding Sketches of the Campaigns Against the Afghans in 1839, and the Sikhs in 1845-6.', 'MacKinnon, Daniel Henry', '2017-10-29', 13, 'https://www.gutenberg.org/ebooks/55844', 'en', 1505), +(23126, 'The Parisians — Volume 12', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 2, 'https://www.gutenberg.org/ebooks/7748', 'en', 137), +(23127, 'Harper\'s Young People, March 16, 1880\nAn Illustrated Weekly', 'Various', '2009-03-25', 5, 'https://www.gutenberg.org/ebooks/28410', 'en', 479), +(23128, 'One Irish Summer', 'Curtis, William Eleroy', '2013-10-09', 11, 'https://www.gutenberg.org/ebooks/43921', 'en', 117), +(23129, 'The Yale Cup', 'Dudley, Albertus T. (Albertus True)', '2017-06-28', 50, 'https://www.gutenberg.org/ebooks/54996', 'en', 4642), +(23130, 'The Birthplace', 'James, Henry', '2017-07-09', 33, 'https://www.gutenberg.org/ebooks/55078', 'en', 9883), +(23131, 'The New Penelope, and Other Stories and Poems', 'Victor, Frances Fuller', '2006-09-22', 5, 'https://www.gutenberg.org/ebooks/19357', 'en', 9884), +(23132, 'Consecrated Womanhood\nA Sermon Preached in the First Congregational Church, Portland, Oregon', 'Marvin, Frederic Rowland', '2015-07-12', 10, 'https://www.gutenberg.org/ebooks/49427', 'en', 9885), +(23133, 'Left at Home\r\nor, The Heart\'s Resting Place', 'Code, Mary L.', '2007-10-08', 7, 'https://www.gutenberg.org/ebooks/22916', 'en', 470), +(23134, 'The Evolution of Man', 'Haeckel, Ernst', '2005-08-01', 54, 'https://www.gutenberg.org/ebooks/8700', 'en', 1315), +(23135, 'Tales from the Hindu Dramatists', 'Dutta, R. N.', '2006-04-29', 72, 'https://www.gutenberg.org/ebooks/18285', 'en', 9886), +(23136, 'Myths and Legends of the Sioux', 'McLaughlin, Marie L.', '1995-10-01', 104, 'https://www.gutenberg.org/ebooks/341', 'en', 370), +(23137, 'Historic Homes of New England', 'Northend, Mary Harrod', '2011-01-07', 11, 'https://www.gutenberg.org/ebooks/34873', 'en', 8520), +(23138, 'Aeschylus\' Prometheus Bound and the Seven Against Thebes', 'Aeschylus', '2008-12-08', 207, 'https://www.gutenberg.org/ebooks/27458', 'en', 9887), +(23139, 'Life and Adventures of Mr. Pig and Miss Crane\nA Nursery Tale', 'Unknown', '2008-05-25', 7, 'https://www.gutenberg.org/ebooks/25592', 'en', 1801), +(23140, 'Presidential Problems', 'Cleveland, Grover', '2017-11-27', 7, 'https://www.gutenberg.org/ebooks/56060', 'en', 1720), +(23141, 'The Curlytops at Uncle Frank\'s Ranch; Or, Little Folks on Ponyback', 'Garis, Howard Roger', '2010-05-25', 18, 'https://www.gutenberg.org/ebooks/32525', 'en', 4365), +(23142, 'Brainchild', 'Slesar, Henry', '2019-06-26', 192, 'https://www.gutenberg.org/ebooks/59814', 'en', 26), +(23143, 'Cobb\'s Anatomy', 'Cobb, Irvin S. (Irvin Shrewsbury)', '1998-02-01', 24, 'https://www.gutenberg.org/ebooks/1222', 'en', 9888), +(23144, 'Baseball Joe at Yale; or, Pitching for the College Championship', 'Chadwick, Lester', '2012-06-29', 31, 'https://www.gutenberg.org/ebooks/40105', 'en', 9889), +(23145, 'Pebbles on the shore [by] Alpha of the plough', 'Gardiner, A. G. (Alfred George)', '2004-01-01', 50, 'https://www.gutenberg.org/ebooks/10675', 'en', 20), +(23146, 'Surgical Anatomy', 'Maclise, Joseph', '2008-01-28', 269, 'https://www.gutenberg.org/ebooks/24440', 'en', 9890), +(23147, 'Curly Locks', 'Anonymous', '2014-04-24', 14, 'https://www.gutenberg.org/ebooks/45477', 'en', 388), +(23148, 'String Quartet No. 1 in G major, K. 80', 'Mozart, Wolfgang Amadeus', '2003-12-01', 7, 'https://www.gutenberg.org/ebooks/4750', 'en', 909), +(23149, 'The Sandman: His Farm Stories', 'Hopkins, William John', '2011-05-22', 23, 'https://www.gutenberg.org/ebooks/36185', 'en', 625), +(23150, 'Frank Oldfield\nLost and Found', 'Wilson, Theodore P.', '2007-04-18', 40, 'https://www.gutenberg.org/ebooks/21132', 'en', 9891), +(23151, 'Hüben und Drüben; Erster Band (1/3)\nNeue gesammelte Erzählungen', 'Gerstäcker, Friedrich', '2019-03-07', 5, 'https://www.gutenberg.org/ebooks/59028', 'de', 138), +(23152, 'The Narrative of Gordon Sellar Who Emigrated to Canada in 1825', 'Sellar, Gordon', '2005-03-09', 12, 'https://www.gutenberg.org/ebooks/15307', 'en', 2697), +(23153, 'Hyviä päätöksiä: Kohtaus elämästä yhdessä näytöksessä', 'Vuokko, Väikkö', '2016-11-12', 1, 'https://www.gutenberg.org/ebooks/53512', 'fi', 247), +(23154, 'Clayton\'s Quaker Cook-Book\r\nBeing a Practical Treatise on the Culinary Art Adapted to the Tastes and Wants of All Classes', 'Clayton, H. J.', '2012-02-10', 62, 'https://www.gutenberg.org/ebooks/38823', 'en', 103), +(23155, 'Under Cover', 'Megrue, Roi Cooper', '2012-10-05', 9, 'https://www.gutenberg.org/ebooks/40939', 'en', 5831), +(23156, 'Fundamental Principles of the Metaphysic of Morals', 'Kant, Immanuel', '2004-05-01', 457, 'https://www.gutenberg.org/ebooks/5682', 'en', 902), +(23157, 'Observations on Insanity\r\nWith Practical Remarks on the Disease and an Account of the Morbid Appearances on Dissection', 'Haslam, John', '2011-08-13', 4, 'https://www.gutenberg.org/ebooks/37057', 'en', 9892), +(23158, 'Perjantaina 13 p:nä: Romaani', 'Lawson, Thomas William', '2014-11-09', 7, 'https://www.gutenberg.org/ebooks/47320', 'fi', 9893), +(23159, 'The Two Sides of the Shield', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6007', 'en', 45), +(23160, 'The Peacock \'At Home\' AND The Butterfly\'s Ball AND The Fancy Fair', 'Roscoe, William', '2007-11-30', 6, 'https://www.gutenberg.org/ebooks/23665', 'en', 1801), +(23161, 'The Part Borne by the Dutch in the Discovery of Australia 1606-1765', 'Heeres, J. E. (Jan Ernst)', '2006-01-03', 145, 'https://www.gutenberg.org/ebooks/17450', 'en', 2471), +(23162, 'Kylätohtori', 'Svetlá, Karolina', '2015-11-06', 21, 'https://www.gutenberg.org/ebooks/50397', 'fi', 9894), +(23163, 'Till the Clock Stops', 'Bell, J. J. (John Joy)', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/9873', 'en', 323), +(23164, 'Journal of Small Things', 'Mackay, Helen', '2016-02-18', 19, 'https://www.gutenberg.org/ebooks/51245', 'en', 8930), +(23165, 'Korpelan seppä', 'Meriläinen, Heikki', '2005-08-22', 21, 'https://www.gutenberg.org/ebooks/16582', 'fi', 61), +(23166, 'My Cave Life in Vicksburg, with Letters of Trial and Travel', 'Loughborough, Mary Ann Webster', '2011-03-28', 24, 'https://www.gutenberg.org/ebooks/35700', 'en', 83), +(23167, 'Far from the Madding Crowd', 'Hardy, Thomas', '1992-03-01', 566, 'https://www.gutenberg.org/ebooks/27', 'en', 9895), +(23168, 'A Crooked Path: A Novel', 'Alexander, Mrs.', '2006-05-18', 26, 'https://www.gutenberg.org/ebooks/18418', 'en', 1380), +(23169, 'Out for Business; or, Robert Frost\'s Strange Career', 'Stratemeyer, Edward', '2017-05-17', 21, 'https://www.gutenberg.org/ebooks/54737', 'en', 9896), +(23170, 'The Lettsomian Lectures on Diseases and Disorders of the Heart and Arteries in Middle and Advanced Life [1900-1901]', 'Bruce, J. Mitchell (John Mitchell)', '2013-09-21', 9, 'https://www.gutenberg.org/ebooks/43780', 'en', 9897), +(23171, 'Théâtre 1\nLa Princesse Maleine (1890) - L\'Intruse (1890) - Les Aveugles (1891)', 'Maeterlinck, Maurice', '2015-02-28', 17, 'https://www.gutenberg.org/ebooks/48368', 'fr', 3017), +(23172, 'Very Short Stories and Verses For Children', 'Clifford, W. K., Mrs.', '2009-10-16', 65, 'https://www.gutenberg.org/ebooks/30272', 'en', 651), +(23173, 'Recollections of the Private Life of Napoleon — Volume 08', 'Wairy, Louis Constant', '2002-12-01', 21, 'https://www.gutenberg.org/ebooks/3575', 'en', 9898), +(23174, 'Scott, Greenwood Catalogue of Special Technical Works, January 1905', 'Scott, Greenwood & Co.', '2013-05-06', 7, 'https://www.gutenberg.org/ebooks/42652', 'en', 2663), +(23175, 'The Monkey\'s Paw\nThe Lady of the Barge and Others, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 531, 'https://www.gutenberg.org/ebooks/12122', 'en', 461), +(23176, 'Buchanan\'s Journal of Man, May 1887\nVolume 1, Number 4', NULL, '2008-08-15', 20, 'https://www.gutenberg.org/ebooks/26317', 'en', 3905), +(23177, 'The Keepsake\nor, Poems and Pictures for Childhood and Youth', 'Anonymous', '2007-11-12', 9, 'https://www.gutenberg.org/ebooks/23457', 'en', 859), +(23178, 'The Provinces of the Roman Empire, from Caesar to Diocletian. v. 1', 'Mommsen, Theodor', '2015-05-15', 36, 'https://www.gutenberg.org/ebooks/48966', 'en', 9899), +(23179, 'L\'Illustration, No. 3729, 15 Août 1914', 'Various', '2006-02-02', 12, 'https://www.gutenberg.org/ebooks/17662', 'fr', 335), +(23180, 'Der Jesuit\nCharakter-Gemälde aus dem ersten Viertel des 18. Jahrhunderts', 'Spindler, Carl', '2014-10-14', 22, 'https://www.gutenberg.org/ebooks/47112', 'de', 98), +(23181, 'The Battle of the Strong: A Romance of Two Kingdoms — Volume 6', 'Parker, Gilbert', '2004-08-01', 9, 'https://www.gutenberg.org/ebooks/6235', 'en', 9794), +(23182, 'The Letters of the Duke of Wellington to Miss J., 1834-1851\r\nEdited, with Extracts from the Diary of the Latter', 'Wellington, Arthur Wellesley, Duke of', '2011-03-09', 13, 'https://www.gutenberg.org/ebooks/35532', 'en', 9900), +(23183, 'The New Education\nA Review of Progressive Educational Movements of the Day (1915)', 'Nearing, Scott', '2008-10-14', 21, 'https://www.gutenberg.org/ebooks/26919', 'en', 973), +(23184, 'The Amateur Diplomat: A Novel', 'Costain, Thomas B. (Thomas Bertram)', '2016-01-30', 11, 'https://www.gutenberg.org/ebooks/51077', 'en', 9901), +(23185, '—And Devious the Line of Duty', 'Godwin, Tom', '2007-09-12', 49, 'https://www.gutenberg.org/ebooks/22585', 'en', 26), +(23186, 'The Copper-Clad World', 'Vincent, Harl', '2009-05-19', 61, 'https://www.gutenberg.org/ebooks/28883', 'en', 26), +(23187, 'Med Ship Man', 'Leinster, Murray', '2016-01-22', 59, 'https://www.gutenberg.org/ebooks/50999', 'en', 26), +(23188, 'The Red River Colony\nA Chronicle of the Beginnings of Manitoba', 'Wood, Louis Aubrey', '2009-09-20', 10, 'https://www.gutenberg.org/ebooks/30040', 'en', 4781), +(23189, 'Jeff Briggs\'s Love Story', 'Harte, Bret', '2006-05-25', 11, 'https://www.gutenberg.org/ebooks/2695', 'en', 50), +(23190, 'Poems', 'Anderson, William', '2017-04-07', 10, 'https://www.gutenberg.org/ebooks/54505', 'en', 8), +(23191, 'The Atlantic Monthly, Volume 09, No. 56, June, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 4, 'https://www.gutenberg.org/ebooks/12310', 'en', 1227), +(23192, 'Hoodie', 'Molesworth, Mrs.', '2008-07-25', 16, 'https://www.gutenberg.org/ebooks/26125', 'en', 195), +(23193, 'From the Rapidan to Richmond and the Spottsylvania Campaign\nA Sketch in Personal Narration of the Scenes a Soldier Saw', 'Dame, William Meade', '2010-02-07', 19, 'https://www.gutenberg.org/ebooks/31192', 'en', 83), +(23194, 'Orlando Furioso', 'Ariosto, Lodovico', '2003-02-01', 202, 'https://www.gutenberg.org/ebooks/3747', 'it', 1535), +(23195, 'The Truth of Christianity\r\nBeing an Examination of the More Important Arguments For and Against Believing in That Religion', 'Turton, W. H. (William Harry)', '2013-04-02', 25, 'https://www.gutenberg.org/ebooks/42460', 'en', 4608), +(23196, 'Zwischen Himmel und Erde', 'Ludwig, Otto', '2015-05-30', 8, 'https://www.gutenberg.org/ebooks/49088', 'de', 138), +(23197, 'The Mayflower, January, 1905', 'Various', '2009-09-10', 33, 'https://www.gutenberg.org/ebooks/29951', 'en', 9902), +(23198, 'The American Missionary — Volume 44, No. 01, January, 1890', 'Various', '2005-05-26', 4, 'https://www.gutenberg.org/ebooks/15909', 'en', 562), +(23199, 'Wait for Weight', 'McKenty, Jack', '2010-06-06', 20, 'https://www.gutenberg.org/ebooks/32717', 'en', 179), +(23200, 'The Pearl Box\r\nContaining One Hundred Beautiful Stories for Young People, by a Pastor', 'Anonymous', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11595', 'en', 388), +(23201, 'Elias Lönnrot', 'Kallio, O. A. (Oskar Albin)', '2017-12-25', 7, 'https://www.gutenberg.org/ebooks/56252', 'fi', 3424), +(23202, 'Eastern Stories and Legends', NULL, '2018-06-23', 50, 'https://www.gutenberg.org/ebooks/57380', 'en', 9903), +(23203, 'October Vagabonds', 'Le Gallienne, Richard', '2003-12-01', 22, 'https://www.gutenberg.org/ebooks/10447', 'en', 9904), +(23204, 'The God of Love', 'McCarthy, Justin H. (Justin Huntly)', '2008-02-23', 19, 'https://www.gutenberg.org/ebooks/24672', 'en', 9905), +(23205, 'La Divina Commedia di Dante: Purgatorio', 'Dante Alighieri', '1997-08-01', 38, 'https://www.gutenberg.org/ebooks/1010', 'it', 1082), +(23206, 'Connie Morgan in Alaska', 'Hendryx, James B. (James Beardsley)', '2012-07-26', 13, 'https://www.gutenberg.org/ebooks/40337', 'en', 9906), +(23207, 'Cowboy Songs, and Other Frontier Ballads', 'Various', '2007-05-04', 119, 'https://www.gutenberg.org/ebooks/21300', 'en', 9907), +(23208, 'The Three Black Pennys: A Novel', 'Hergesheimer, Joseph', '2005-02-21', 16, 'https://www.gutenberg.org/ebooks/15135', 'en', 7935), +(23209, 'Japan: From the Japanese Government History', NULL, '2014-05-14', 54, 'https://www.gutenberg.org/ebooks/45645', 'en', 52), +(23210, 'Anatomie Du Mouvement: Poésie', 'Bertrand, Huguette', '2003-10-01', 14, 'https://www.gutenberg.org/ebooks/4562', 'fr', 8), +(23211, 'An I.D.B. in South Africa', 'Sheldon, Louise Vescelius', '2011-08-29', 9, 'https://www.gutenberg.org/ebooks/37265', 'en', 1207), +(23212, 'Ettore Fieramosca: ossia, La disfida di Barletta', 'Azeglio, Massimo d\'', '2014-01-30', 34, 'https://www.gutenberg.org/ebooks/44797', 'it', 9908), +(23213, 'On Love', 'Stendhal', '2016-12-12', 209, 'https://www.gutenberg.org/ebooks/53720', 'en', 5136), +(23214, 'Birch Bark Legends of Niagara', 'Owahyah', '2005-03-01', 19, 'https://www.gutenberg.org/ebooks/7783', 'en', 9123), +(23215, 'The South-West, by a Yankee. In Two Volumes. Volume 2', 'Ingraham, J. H. (Joseph Holt)', '2011-02-03', 13, 'https://www.gutenberg.org/ebooks/35156', 'en', 9909), +(23216, 'The Ignoble Savages', 'Smith, Evelyn E.', '2016-03-10', 40, 'https://www.gutenberg.org/ebooks/51413', 'en', 9910), +(23217, 'Warm', 'Sheckley, Robert', '2009-07-25', 63, 'https://www.gutenberg.org/ebooks/29509', 'en', 179), +(23218, 'Fromentin', 'Beaume, Georges', '2013-05-29', 35, 'https://www.gutenberg.org/ebooks/42838', 'en', 9911), +(23219, 'Classic French Course in English', 'Wilkinson, William Cleaver', '2007-10-14', 143, 'https://www.gutenberg.org/ebooks/23033', 'en', 1765), +(23220, '\"Over There\" with the Australians', 'Knyvett, R. Hugh (Reginald Hugh)', '2005-12-03', 23, 'https://www.gutenberg.org/ebooks/17206', 'en', 3601), +(23221, 'The Moon Colony', 'Bell, William Dixon', '2014-12-07', 41, 'https://www.gutenberg.org/ebooks/47576', 'en', 5917), +(23222, 'Immensee', 'Storm, Theodor', '2004-10-01', 67, 'https://www.gutenberg.org/ebooks/6651', 'de', 906), +(23223, '法螺男爵旅土産', 'Sasaki, Kuni', '2010-10-16', 28, 'https://www.gutenberg.org/ebooks/34084', 'ja', 9912), +(23224, 'Dave Darrin\'s First Year at Annapolis\r\nTwo Plebe Midshipmen at the United States Naval Academy', 'Hancock, H. Irving (Harrie Irving)', '2004-06-29', 41, 'https://www.gutenberg.org/ebooks/12774', 'en', 9913), +(23225, 'The Vicar of Bullhampton', 'Trollope, Anthony', '2008-09-05', 164, 'https://www.gutenberg.org/ebooks/26541', 'en', 95), +(23226, 'The Ward of King Canute: A Romance of the Danish Conquest', 'Liljencrantz, Ottilie A. (Ottilia Adelina)', '2002-07-01', 20, 'https://www.gutenberg.org/ebooks/3323', 'en', 9914), +(23227, 'Notes and Queries, Number 225, February 18, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 4, 'https://www.gutenberg.org/ebooks/42004', 'en', 105), +(23228, 'As relações luso-brasileiras\r\na immigração e a «desnacionalização» do Brasil', 'Barbosa, José', '2009-11-08', 11, 'https://www.gutenberg.org/ebooks/30424', 'pt', 9915), +(23229, 'Who Can Be Happy and Free in Russia?', 'Nekrasov, Nikolai Alekseevich', '2006-01-01', 52, 'https://www.gutenberg.org/ebooks/9619', 'en', 9916), +(23230, 'Punch or the London Charivari, Vol. 104, May 27, 1893', 'Various', '2008-12-11', 11, 'https://www.gutenberg.org/ebooks/27493', 'en', 134), +(23231, 'The republic of Cicero\r\nTranslated from the Latin; and Accompanied With a Critical and Historical Introduction.', 'Cicero, Marcus Tullius', '2017-02-12', 281, 'https://www.gutenberg.org/ebooks/54161', 'en', 5325), +(23232, 'There\'s Pippins and Cheese to Come', 'Brooks, Charles S. (Charles Stephen)', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10023', 'en', 20), +(23233, 'Poems', 'Kemble, Fanny', '2008-01-07', 12, 'https://www.gutenberg.org/ebooks/24216', 'en', 8), +(23234, 'Early Days in North Queensland', 'Palmer, Edward', '2012-01-23', 11, 'https://www.gutenberg.org/ebooks/38649', 'en', 9917), +(23235, 'The Illustrious Gaudissart', 'Balzac, Honoré de', '1998-09-01', 21, 'https://www.gutenberg.org/ebooks/1474', 'en', 58), +(23236, 'The Nursery, February 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2012-09-14', 18, 'https://www.gutenberg.org/ebooks/40753', 'en', 4641), +(23237, 'Breton Legends\nTranslated from the French', 'Anonymous', '2012-12-21', 20, 'https://www.gutenberg.org/ebooks/41681', 'en', 9756), +(23238, 'The Golden Treasury\r\nSelected from the Best Songs and Lyrical Poems in the English Language and arranged with Notes', NULL, '2010-05-14', 26, 'https://www.gutenberg.org/ebooks/32373', 'en', 54), +(23239, 'Kárpáthy Zoltán: Regény', 'Jókai, Mór', '2018-02-24', 6, 'https://www.gutenberg.org/ebooks/56636', 'hu', 234), +(23240, 'La fabrique de mariages, Vol. 1', 'Féval, Paul', '2011-10-03', 11, 'https://www.gutenberg.org/ebooks/37601', 'fr', 298), +(23241, 'Punch, Or The London Charivari, Volume 102, March 5, 1892', 'Various', '2004-12-27', 19, 'https://www.gutenberg.org/ebooks/14483', 'en', 134), +(23242, 'Kammweg-Führer von der Jeschkenkoppe bei Reichenberg bis zum Rosenberg bei Tetschen\nmit Berücksichtigung der anschliessenden Kammwege', 'Hantschel, Franz', '2016-10-22', 16, 'https://www.gutenberg.org/ebooks/53344', 'de', 9918), +(23243, 'Child Stories from the Masters\nBeing a Few Modest Interpretations of Some Phases of the\nMaster Works Done in a Child Way', 'Menefee, Maud', '2007-06-08', 22, 'https://www.gutenberg.org/ebooks/21764', 'en', 9919), +(23244, 'The Deaf Shoemaker: To Which Are Added Other Stories for the Young', 'Barrett, Philip', '2016-06-10', 12, 'https://www.gutenberg.org/ebooks/52296', 'en', 859), +(23245, 'Stories from Le Morte D\'Arthur and the Mabinogion', 'Clay, Beatrice E. (Beatrice Elizabeth)', '2005-04-05', 43, 'https://www.gutenberg.org/ebooks/15551', 'en', 3600), +(23246, 'Storia della decadenza e rovina dell\'impero romano, volume 07', 'Gibbon, Edward', '2014-03-26', 31, 'https://www.gutenberg.org/ebooks/45221', 'it', 7245), +(23247, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 6', 'Ames, Azel', '2003-06-01', 8, 'https://www.gutenberg.org/ebooks/4106', 'en', 7031), +(23248, 'The Path-Way to Knowledg, Containing the First Principles of Geometrie', 'Record, Robert', '2010-07-05', 17, 'https://www.gutenberg.org/ebooks/33093', 'en', 9920), +(23249, 'Roads of Destiny', 'Henry, O.', '1999-02-01', 156, 'https://www.gutenberg.org/ebooks/1646', 'en', 1426), +(23250, 'A przemysli repülő: Regény a nagy háborúból', 'Matull, Kurt', '2012-08-22', 12, 'https://www.gutenberg.org/ebooks/40561', 'hu', 579), +(23251, 'At Whispering Pine Lodge', 'Leslie, Lawrence J.', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10211', 'en', 1376), +(23252, 'Ups and Downs in the Life of a Distressed Gentleman', 'Stone, William L. (William Leete)', '2007-12-24', 13, 'https://www.gutenberg.org/ebooks/24024', 'en', 2287), +(23253, 'Abraham Lincoln\'s First Inaugural Address', 'Lincoln, Abraham', '1979-12-01', 228, 'https://www.gutenberg.org/ebooks/9', 'en', 9921), +(23254, 'A Book of Gems, or, Choice selections from the writings of Benjamin Franklin', 'Franklin, Benjamin', '2018-01-20', 26, 'https://www.gutenberg.org/ebooks/56404', 'en', 9922), +(23255, 'Garden and Forest Weekly, Volume 1 No. 1, February 29, 1888', 'Various', '2010-04-26', 98, 'https://www.gutenberg.org/ebooks/32141', 'en', 9923), +(23256, 'The Magic House, and Other Poems', 'Scott, Duncan Campbell', '2016-08-25', 10, 'https://www.gutenberg.org/ebooks/52898', 'en', 1237), +(23257, 'Kasba (White Partridge): A Story of Hudson Bay', 'Ray, George R.', '2016-09-30', 2, 'https://www.gutenberg.org/ebooks/53176', 'en', 5457), +(23258, 'Real Life In London, Volumes I. and II.\r\nOr, The Rambles and Adventures of Bob Tallyho, Esq., and His Cousin, the Hon. Tom Dashall, Through the Metropolis; Exhibiting a Living Picture of Fashionable Characters, Manners, and Amusements in High and Low Life (1821)', 'Egan, Pierce', '2007-01-30', 122, 'https://www.gutenberg.org/ebooks/20484', 'en', 9924), +(23259, 'The Motor Maids Across the Continent', 'Stokes, Katherine', '2011-09-15', 9, 'https://www.gutenberg.org/ebooks/37433', 'en', 9925), +(23260, 'Sketches of Travel in Normandy and Maine', 'Freeman, Edward A. (Edward Augustus)', '2008-03-13', 14, 'https://www.gutenberg.org/ebooks/24818', 'en', 9926), +(23261, 'Cours familier de Littérature - Volume 18', 'Lamartine, Alphonse de', '2014-02-25', 6, 'https://www.gutenberg.org/ebooks/45013', 'fr', 1765), +(23262, 'Observations on the Effects of the Corn Laws, and of a Rise or Fall in the Price of Corn on the Agriculture and General Wealth of the Country', 'Malthus, T. R. (Thomas Robert)', '2003-08-01', 34, 'https://www.gutenberg.org/ebooks/4334', 'en', 9927), +(23263, 'Travels and Adventures of Monsieur Violet', 'Marryat, Frederick', '2007-05-21', 24, 'https://www.gutenberg.org/ebooks/21556', 'en', 270), +(23264, 'Count Hannibal: A Romance of the Court of France', 'Weyman, Stanley John', '2005-05-03', 6, 'https://www.gutenberg.org/ebooks/15763', 'en', 4583), +(23265, 'Sinhalese Folklore Notes, Ceylon', 'Perera, Arthur A.', '2016-04-01', 15, 'https://www.gutenberg.org/ebooks/51621', 'en', 9928), +(23266, 'Rimes familières', 'Saint-Saëns, Camille', '2006-12-02', 9, 'https://www.gutenberg.org/ebooks/19992', 'fr', 701), +(23267, 'Ethel Morton at Sweetbrier Lodge', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2011-02-23', 16, 'https://www.gutenberg.org/ebooks/35364', 'en', 9929), +(23268, 'A New System of Horsemanship', 'Bourgelat, Claude', '2014-08-26', 16, 'https://www.gutenberg.org/ebooks/46696', 'en', 2240), +(23269, 'Sekhet', 'Miller, Irene', '2014-12-22', 4, 'https://www.gutenberg.org/ebooks/47744', 'en', 61), +(23270, 'A Handbook of Ethical Theory', 'Fullerton, George Stuart', '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6463', 'en', 680), +(23271, 'Who Was Who: 5000 B. C. to Date\r\nBiographical Dictionary of the Famous and Those Who Wanted to Be', NULL, '1997-07-01', 148, 'https://www.gutenberg.org/ebooks/984', 'en', 2529), +(23272, 'A Dream of Empire\nOr, The House of Blennerhassett', 'Venable, William Henry', '2006-07-16', 20, 'https://www.gutenberg.org/ebooks/18840', 'en', 9930), +(23273, 'Apontamentos sobre a via de communicação do rio Madeira', 'Rebouças, Antonio Pereira', '2007-10-26', 11, 'https://www.gutenberg.org/ebooks/23201', 'pt', 9931), +(23274, 'English Fairy Tales', 'Steel, Flora Annie Webster', '2005-11-09', 121, 'https://www.gutenberg.org/ebooks/17034', 'en', 4483), +(23275, 'Certain Diversities of American Life', 'Warner, Charles Dudley', '2004-12-05', 6, 'https://www.gutenberg.org/ebooks/3111', 'en', 20), +(23276, 'Jewels of Gwahlur', 'Howard, Robert E. (Robert Ervin)', '2013-03-01', 139, 'https://www.gutenberg.org/ebooks/42236', 'en', 4698), +(23277, 'Jumalainen näytelmä', 'Dante Alighieri', '2004-06-01', 61, 'https://www.gutenberg.org/ebooks/12546', 'fi', 8), +(23278, 'The Christmas Dream of Little Charles', NULL, '2017-08-06', 8, 'https://www.gutenberg.org/ebooks/55281', 'en', 9932), +(23279, 'Honkakannel 1\nKielten viritys', 'Paavo-Kallio, Esa', '2008-10-04', 7, 'https://www.gutenberg.org/ebooks/26773', 'fi', 1171), +(23280, 'The Ordeal by Fire\nBy a Sergeant in the French Army', 'Berger, Marcel', '2019-08-24', 109, 'https://www.gutenberg.org/ebooks/60166', 'en', NULL), +(23281, 'Des Vaters Sünde, der Mutter Fluch', 'Clauren, H. (Heinrich)', '2017-03-13', 6, 'https://www.gutenberg.org/ebooks/54353', 'de', 138), +(23282, 'Fables for the Times', 'Phillips, Henry Wallace', '2004-09-18', 25, 'https://www.gutenberg.org/ebooks/13494', 'en', 9933), +(23283, 'Belle-Rose', 'Achard, Amédée', '2006-02-20', 64, 'https://www.gutenberg.org/ebooks/17808', 'fr', 1127), +(23284, 'Ομήρου Οδύσσεια Τόμος Δ', 'Homer', '2009-12-06', 30, 'https://www.gutenberg.org/ebooks/30616', 'el', 2905), +(23285, 'Narrative of the Voyages Round the World, Performed by Captain James Cook\r\nWith an Account of His Life During the Previous and Intervening Periods', 'Kippis, Andrew', '2005-03-01', 137, 'https://www.gutenberg.org/ebooks/7777', 'en', 9934), +(23286, 'Manual of the Trees of North America (Exclusive of Mexico) 2nd ed.', 'Sargent, Charles Sprague', '2014-07-30', 19, 'https://www.gutenberg.org/ebooks/46450', 'en', 9935), +(23287, 'If Not Silver, What?', 'Bookwalter, John W. (John Wesley)', '2005-07-17', 7, 'https://www.gutenberg.org/ebooks/16320', 'en', 9936), +(23288, 'A Fantasy of Mediterranean Travel', 'Bayne, Samuel G. (Samuel Gamble)', '2007-07-22', 5, 'https://www.gutenberg.org/ebooks/22115', 'en', 6863), +(23289, 'Blood Atonement and the Origin of Plural Marriage: A Discussion', 'Evans, R. C. (Richard C.)', '2015-11-22', 28, 'https://www.gutenberg.org/ebooks/50535', 'en', 1440), +(23290, 'The Adventures of Captain Mago; Or, A Phoenician Expedition, B.C. 1000', 'Cahun, David-Léon', '2014-12-07', 114, 'https://www.gutenberg.org/ebooks/47582', 'en', 9937), +(23291, 'The American Nations, Vol. I.\r\nOr, Outlines of a National History of the Ancient and Modern Nations of North and South America', 'Rafinesque, C. S. (Constantine Samuel)', '2010-10-14', 45, 'https://www.gutenberg.org/ebooks/34070', 'en', 2027), +(23292, 'The Gallery of Portraits: with Memoirs. Volume 1 (of 7)', 'Malkin, Arthur Thomas', '2017-07-05', 9, 'https://www.gutenberg.org/ebooks/55047', 'en', 122), +(23293, 'Laulu tulipunaisesta kukasta', 'Linnankoski, Johannes', '2004-06-29', 20, 'https://www.gutenberg.org/ebooks/12780', 'fi', 61), +(23294, 'The Mide\'wiwin or \"Grand Medicine Society\" of the Ojibwa\r\nSeventh Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1885-1886, Government Printing Office, Washington, 1891, pages 143-300', 'Hoffman, Walter James', '2006-09-25', 68, 'https://www.gutenberg.org/ebooks/19368', 'en', 9938), +(23295, 'Two Indian Children of Long Ago', 'Taylor, Frances Lilian', '2010-03-04', 11, 'https://www.gutenberg.org/ebooks/31502', 'en', 676), +(23296, 'Las máscaras, vol. 2/2', 'Pérez de Ayala, Ramón', '2015-07-12', 21, 'https://www.gutenberg.org/ebooks/49418', 'es', 7292), +(23297, 'The Epistle of Philemon', NULL, '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22929', 'en', 7921), +(23298, 'Silverthorns', 'Molesworth, Mrs.', '2013-07-07', 7, 'https://www.gutenberg.org/ebooks/43122', 'en', 195), +(23299, 'Human Genome Project, rough draft, Chromosome Number 05', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2205', 'en', 1841), +(23300, 'Stories to Read or Tell from Fairy Tales and Folklore', NULL, '2008-12-09', 43, 'https://www.gutenberg.org/ebooks/27467', 'en', 1223), +(23301, 'Exposition of the Apostles\' Creed', 'Dodds, James', '2004-10-06', 30, 'https://www.gutenberg.org/ebooks/13652', 'en', 9939), +(23302, 'Grit; or, The Young Boatman of Pine Point', 'Alger, Horatio, Jr.', '2017-02-19', 20, 'https://www.gutenberg.org/ebooks/54195', 'en', 9940), +(23303, 'A Son of the State', 'Ridge, W. Pett (William Pett)', '2018-08-16', 9, 'https://www.gutenberg.org/ebooks/57710', 'en', 264), +(23304, 'Tom Brown\'s School Days', 'Hughes, Thomas', '2006-02-15', 227, 'https://www.gutenberg.org/ebooks/1480', 'en', 1080), +(23305, 'Within Prison Walls\r\nbeing a narrative during a week of voluntary confinement in the state prison at Auburn, New York', 'Osborne, Thomas Mott', '2010-07-25', 40, 'https://www.gutenberg.org/ebooks/33255', 'en', 9941), +(23306, 'Uit Ons Dorp: Drie Verhalen voor Meisjes', 'Andriessen, P. J. (Pieter Jacob)', '2012-12-20', 23, 'https://www.gutenberg.org/ebooks/41675', 'nl', 511), +(23307, 'Poetas do Minho I - João Penha', 'Pimentel, Alberto', '2010-05-15', 13, 'https://www.gutenberg.org/ebooks/32387', 'pt', 9942), +(23308, 'A Casa dos Fantasmas - Volume I\nEpisodio do Tempo dos Francezes', 'Silva, Luiz Augusto Rebello da', '2008-05-05', 203, 'https://www.gutenberg.org/ebooks/25330', 'pt', 9943), +(23309, 'Jack Mason, the Old Sailor', 'Woodworth, Francis C. (Francis Channing)', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11105', 'en', 7708), +(23310, 'State of the Union Addresses', 'Taylor, Zachary', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/5020', 'en', 1926), +(23311, 'A. D. 2000', 'Fuller, Alvarado M. (Alvarado Mortimer)', '2013-11-29', 28, 'https://www.gutenberg.org/ebooks/44307', 'en', 5147), +(23312, 'The Inside Story of the Peace Conference', 'Dillon, Emile Joseph', '2004-12-26', 29, 'https://www.gutenberg.org/ebooks/14477', 'en', 9944), +(23313, 'First Stage: Moon', 'Hetschel, Dick', '2019-01-23', 17, 'https://www.gutenberg.org/ebooks/58758', 'en', 8406), +(23314, 'The Assemble of Goddes', 'Anonymous', '2007-02-21', 24, 'https://www.gutenberg.org/ebooks/20642', 'en', 9945), +(23315, 'The Dance of Death', 'Vauzelles, Jean de', '2007-06-10', 37, 'https://www.gutenberg.org/ebooks/21790', 'en', 6719), +(23316, 'Cuentos de la Alhambra', 'Irving, Washington', '2016-06-07', 47, 'https://www.gutenberg.org/ebooks/52262', 'es', 4023), +(23317, 'Life\'s Enthusiasms', 'Jordan, David Starr', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/11939', 'en', 740), +(23318, 'Dr. Teodoro Herzl\r\nDiscorso Commemorativo tenuto in Trieste la sera del 12 Luglio 1904', 'Lattes, Dante A.', '2011-07-13', 8, 'https://www.gutenberg.org/ebooks/36727', 'it', 9946), +(23319, 'Chronicas de Viagem', 'Pimentel, Alberto', '2010-07-03', 7, 'https://www.gutenberg.org/ebooks/33067', 'pt', 1923), +(23320, 'Cocina cómica: Recetas de guisos y postres, poesías culinarias, y otros excesos', 'Pérez Zúñiga, Juan', '2012-08-27', 51, 'https://www.gutenberg.org/ebooks/40595', 'es', 9947), +(23321, 'The Junior Classics, Volume 9: Stories of To-day', NULL, '2018-07-16', 74, 'https://www.gutenberg.org/ebooks/57522', 'en', 388), +(23322, 'The New Forest', 'Godfrey, Elizabeth', '2014-02-14', 7, 'https://www.gutenberg.org/ebooks/44909', 'en', 4018), +(23323, 'Nobody\'s Boy\nSans Famille', 'Malot, Hector', '2008-04-19', 211, 'https://www.gutenberg.org/ebooks/25102', 'en', 9948), +(23324, 'Cowmen and Rustlers: A Story of the Wyoming Cattle Ranges', 'Ellis, Edward Sylvester', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11337', 'en', 9949), +(23325, 'Curly: A Tale of the Arizona Desert', 'Pocock, Roger', '2012-11-23', 15, 'https://www.gutenberg.org/ebooks/41447', 'en', 6200), +(23326, 'The Sorceress, v. 3 of 3', 'Oliphant, Mrs. (Margaret)', '2016-10-01', 14, 'https://www.gutenberg.org/ebooks/53182', 'en', 61), +(23327, 'Unleavened Bread', 'Grant, Robert', '2005-01-10', 41, 'https://www.gutenberg.org/ebooks/14645', 'en', 1426), +(23328, 'Etiquette', 'Morton, Agnes H.', '2007-01-28', 18, 'https://www.gutenberg.org/ebooks/20470', 'en', 788), +(23329, 'Film: Trinity Shot (first US Atomic Test)', NULL, '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/5212', 'en', 9753), +(23330, 'Albert Ballin', 'Huldermann, Bernhard', '2013-11-08', 24, 'https://www.gutenberg.org/ebooks/44135', 'en', 9950), +(23331, 'The Battle of Hexham; or, Days of Old: a play in three acts', 'Colman, George', '2011-06-25', 12, 'https://www.gutenberg.org/ebooks/36515', 'en', 9951), +(23332, 'The Seeker', 'Wilson, Harry Leon', '2005-05-08', 34, 'https://www.gutenberg.org/ebooks/15797', 'en', 61), +(23333, 'Zu Guter Letzt', 'Busch, Wilhelm', '2010-06-27', 32, 'https://www.gutenberg.org/ebooks/32989', 'de', 5045), +(23334, 'Autobiografía\nObras Completas Vol. XV', 'Darío, Rubén', '2016-05-11', 16, 'https://www.gutenberg.org/ebooks/52050', 'es', 9952), +(23335, 'Edward Barnett, a Neglected Child of South Carolina, Who Rose to Be a Peer of Great Britain,—and the Stormy Life of His Grandfather, Captain Williams\r\nor, The Earl\'s Victims: with an Account of the Terrible End of the Proud Earl De Montford, the Lamentable Fate of the Victim of His Passion, and the Shadow\'s Punishment', 'Aconite, Tobias', '2005-06-23', 12, 'https://www.gutenberg.org/ebooks/16112', 'en', 61), +(23336, 'Development of the Digestive Canal of the American Alligator', 'Reese, A. M. (Albert Moore)', '2007-08-15', 15, 'https://www.gutenberg.org/ebooks/22327', 'en', 9953), +(23337, 'Œuvres Complètes de Frédéric Bastiat, tome 1\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2011-02-24', 34, 'https://www.gutenberg.org/ebooks/35390', 'fr', 1745), +(23338, 'The Statesmen Snowbound', 'Fitzgerald, Robert', '2006-11-30', 16, 'https://www.gutenberg.org/ebooks/19966', 'en', 637), +(23339, 'Quotes and Images From the Works of Oliver Wendell Holmes, Sr.', 'Holmes, Oliver Wendell', '2004-09-03', 27, 'https://www.gutenberg.org/ebooks/7545', 'en', 1026), +(23340, 'The Story of Chartres', 'Headlam, Cecil', '2014-08-23', 24, 'https://www.gutenberg.org/ebooks/46662', 'en', 9954), +(23341, 'Uncle Josh\'s Punkin Centre Stories', 'Stewart, Cal', '1997-07-01', 39, 'https://www.gutenberg.org/ebooks/970', 'en', 190), +(23342, 'Chattanooga or Lookout Mountain and Missionary Ridge from Moccasin Point', 'Wood, Bradford Ripley, Jr.', '2010-11-08', 4, 'https://www.gutenberg.org/ebooks/34242', 'en', 9955), +(23343, 'L\'Assommoir', 'Zola, Émile', '2004-09-01', 55, 'https://www.gutenberg.org/ebooks/6497', 'fr', 560), +(23344, 'Schriften 17: Novellen 1', 'Tieck, Ludwig', '2015-12-17', 10, 'https://www.gutenberg.org/ebooks/50707', 'de', 422), +(23345, 'Subspeciation in the Meadow Mouse, Microtus montanus, in Wyoming and Colorado', 'Anderson, Sydney', '2010-03-22', 7, 'https://www.gutenberg.org/ebooks/31730', 'en', 1214), +(23346, 'Indian Fights and Fighters: The Soldier and the Sioux', 'Brady, Cyrus Townsend', '2017-08-06', 13, 'https://www.gutenberg.org/ebooks/55275', 'en', 3540), +(23347, 'Alf the Freebooter, Little Danneved and Swayne Trost, and Other Ballads', NULL, '2008-10-06', 9, 'https://www.gutenberg.org/ebooks/26787', 'en', 4390), +(23348, 'De Rariorum Animalium atque Stirpium Historia', 'Caius, John', '2008-12-29', 4, 'https://www.gutenberg.org/ebooks/27655', 'la', 1205), +(23349, 'How to become like Christ', 'Dods, Marcus', '2004-09-15', 40, 'https://www.gutenberg.org/ebooks/13460', 'en', 9956), +(23350, 'Libro bizzarro', 'Ghislanzoni, Antonio', '2006-03-31', 14, 'https://www.gutenberg.org/ebooks/18088', 'it', 191), +(23351, 'Histoire de la Monarchie de Juillet (Volume 4 / 7)', 'Thureau-Dangin, Paul', '2013-07-26', 9, 'https://www.gutenberg.org/ebooks/43310', 'fr', 8446), +(23352, 'Novel Notes', 'Jerome, Jerome K. (Jerome Klapka)', '2000-01-01', 47, 'https://www.gutenberg.org/ebooks/2037', 'en', 9957), +(23353, 'Northern Nut Growers Association Report of the Proceedings at the Fifteenth Annual Meeting\nNew York City, September 3, 4 and 5, 1924', NULL, '2008-05-23', 5, 'https://www.gutenberg.org/ebooks/25566', 'en', 8570), +(23354, 'Allegheny Episodes\r\nFolk Lore and Legends Collected in Northern and Western Pennsylvania', 'Shoemaker, Henry W.', '2017-11-30', 17, 'https://www.gutenberg.org/ebooks/56094', 'en', 9958), +(23355, 'Experimental Determination of the Velocity of Light\nMade at the U.S. Naval Academy, Annapolis', 'Michelson, Albert A. (Albert Abraham)', '2004-03-01', 38, 'https://www.gutenberg.org/ebooks/11753', 'en', 9959), +(23356, 'From Workhouse to Westminster: The Life Story of Will Crooks, M.P.', 'Haw, George', '2012-10-11', 12, 'https://www.gutenberg.org/ebooks/41023', 'en', 9960); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(23357, 'A Letter to the Right Hon. Lord Bexley\r\ncontaining a statement to the committee of the British and Foreign Bible Society, as to the relations of that institution, with France, the valleys of Piedmont, Switzerland and Germany', 'Cunningham, Francis', '2012-03-14', 1, 'https://www.gutenberg.org/ebooks/39139', 'en', 2277), +(23358, 'Geography and Plays', 'Stein, Gertrude', '2010-08-10', 142, 'https://www.gutenberg.org/ebooks/33403', 'en', 4723), +(23359, 'A Vagabond in the Caucasus\nWith Some Notes of His Experiences Among the Russians', 'Graham, Stephen', '2019-02-21', 37, 'https://www.gutenberg.org/ebooks/58932', 'en', 2408), +(23360, 'Traditions of the North American Indians, Vol. 3', 'Jones, James Athearn', '2007-03-15', 22, 'https://www.gutenberg.org/ebooks/20828', 'en', 1749), +(23361, 'Roget\'s Thesaurus of English Words and Phrases', 'Roget, Peter Mark', '2004-04-01', 394, 'https://www.gutenberg.org/ebooks/10681', 'en', 9961), +(23362, 'Puhe runoilija Archiaan puolustukseksi', 'Cicero, Marcus Tullius', '2018-05-12', 3, 'https://www.gutenberg.org/ebooks/57146', 'fi', 9962), +(23363, 'The Story of My Mind; Or, How I Became a Rationalist', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-04-24', 13, 'https://www.gutenberg.org/ebooks/45483', 'en', 1616), +(23364, 'Told on the Pagoda: Tales of Burmah', 'Mimosa', '2011-05-20', 21, 'https://www.gutenberg.org/ebooks/36171', 'en', 9963), +(23365, 'Deadly Adulteration and Slow Poisoning Unmasked\nDisease and Death in the Pot and Bottle', 'Anonymous', '2016-06-29', 17, 'https://www.gutenberg.org/ebooks/52434', 'en', 9964), +(23366, 'Upsidonia', 'Marshall, Archibald', '2012-06-03', 11, 'https://www.gutenberg.org/ebooks/39905', 'en', 781), +(23367, 'Aladdin und die Wunderlampe\r\nTausend und einer Nacht nacherzaehlt', 'Fulda, Ludwig', '2004-11-30', 137, 'https://www.gutenberg.org/ebooks/14221', 'de', 5789), +(23368, 'Canada and the Canadians, Vol. 1', 'Bonnycastle, Richard Henry, Sir', '2006-12-04', 35, 'https://www.gutenberg.org/ebooks/20014', 'en', 2655), +(23369, 'A Double Story', 'MacDonald, George', '2004-05-01', 79, 'https://www.gutenberg.org/ebooks/5676', 'en', 9013), +(23370, 'New Zealand Moths and Butterflies (Macro-Lepidoptera)', 'Hudson, G. V. (George Vernon)', '2013-12-31', 13, 'https://www.gutenberg.org/ebooks/44551', 'en', 9965), +(23371, 'Correspondance, 1812-1876 — Tome 3', 'Sand, George', '2004-10-23', 25, 'https://www.gutenberg.org/ebooks/13838', 'fr', 5041), +(23372, 'Sustos da Vida nos Perigos da Cura', 'Morganti, Bento', '2010-12-11', 23, 'https://www.gutenberg.org/ebooks/34626', 'pt', 9499), +(23373, 'Archeological Expedition to Arizona in 1895\r\nSeventeenth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1895-1896, Government Printing Office, Washington, 1898, pages 519-744', 'Fewkes, Jesse Walter', '2007-12-03', 55, 'https://www.gutenberg.org/ebooks/23691', 'en', 5225), +(23374, 'Woher die Kindlein kommen', 'Hoppeler, Hans', '2009-03-08', 25, 'https://www.gutenberg.org/ebooks/28279', 'de', 9966), +(23375, 'Essays in War-Time: Further Studies in the Task of Social Hygiene', 'Ellis, Havelock', '2006-02-01', 35, 'https://www.gutenberg.org/ebooks/9887', 'en', 3052), +(23376, 'Vijftien dagen te Londen, op het einde van 1815.', 'Defauconpret, A.-J.-B. (Auguste-Jean-Baptiste)', '2015-11-01', 11, 'https://www.gutenberg.org/ebooks/50363', 'nl', 9924), +(23377, 'Far Above Rubies', 'MacDonald, George', '2005-09-01', 39, 'https://www.gutenberg.org/ebooks/8955', 'en', 2389), +(23378, 'Connor Magan\'s Luck and Other Stories', 'M. T. W.', '2005-08-21', 13, 'https://www.gutenberg.org/ebooks/16576', 'en', 388), +(23379, 'Ruth Fielding and the Gypsies; Or, The Missing Pearl Necklace', 'Emerson, Alice B.', '2007-09-23', 23, 'https://www.gutenberg.org/ebooks/22743', 'en', 4357), +(23380, 'Da Firenze a Digione: Impressioni di un reduce Garibaldino', 'Socci, Ettore', '2004-12-01', 11, 'https://www.gutenberg.org/ebooks/7121', 'it', 7026), +(23381, 'Ford Manual for Owners and Operators of Ford Cars and Trucks (1919)', 'Ford Motor Company', '2014-07-07', 19, 'https://www.gutenberg.org/ebooks/46206', 'en', 9967), +(23382, 'The Riflemen of the Miami', 'Ellis, Edward Sylvester', '2008-11-11', 20, 'https://www.gutenberg.org/ebooks/27231', 'en', 9968), +(23383, 'Joe the Hotel Boy; Or, Winning out by Pluck', 'Alger, Horatio, Jr.', '2006-03-18', 91, 'https://www.gutenberg.org/ebooks/528', 'en', 658), +(23384, 'More Goops and How Not to Be Them: A Manual of Manners for Impolite Infants', 'Burgess, Gelett', '2004-07-23', 58, 'https://www.gutenberg.org/ebooks/13004', 'en', 9152), +(23385, 'The Expeditions of Zebulon Montgomery Pike, Volume 1 (of 3)\r\nTo Headwaters of the Mississippi River Through Louisiana Territory, and in New Spain, During the Years 1805-6-7.', 'Pike, Zebulon Montgomery', '2013-09-21', 22, 'https://www.gutenberg.org/ebooks/43774', 'en', 9969), +(23386, 'Beyond', 'Galsworthy, John', '2006-06-14', 23, 'https://www.gutenberg.org/ebooks/2453', 'en', 434), +(23387, 'The Phantom Lover', 'Ayres, Ruby M. (Ruby Mildred)', '2009-10-19', 32, 'https://www.gutenberg.org/ebooks/30286', 'en', 61), +(23388, 'Gargantua and Pantagruel, Illustrated, Book 4', 'Rabelais, François', '2004-08-08', 29, 'https://www.gutenberg.org/ebooks/8169', 'en', 9970), +(23389, 'Essays of Michel de Montaigne — Volume 01', 'Montaigne, Michel de', '2004-11-01', 55, 'https://www.gutenberg.org/ebooks/3581', 'en', 1964), +(23390, 'Death', 'Maeterlinck, Maurice', '2010-02-22', 29, 'https://www.gutenberg.org/ebooks/31354', 'en', 9971), +(23391, 'Karma: A Re-incarnation Play\r\nIn Prologue, Epilogue & Three Acts', 'Pearn, V. A. (Violet A.)', '2017-09-23', 10, 'https://www.gutenberg.org/ebooks/55611', 'en', 9972), +(23392, 'From Pekin to Calais by Land', 'De Windt, Harry', '2015-05-18', 18, 'https://www.gutenberg.org/ebooks/48992', 'en', 4683), +(23393, 'The Philippine Islands, 1493-1898, Volume 44, 1700-1736\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2015-10-07', 27, 'https://www.gutenberg.org/ebooks/50151', 'en', 745), +(23394, 'Simone\nHistoire d\'une jeune fille moderne', 'Tissot, Victor', '2006-02-07', 7, 'https://www.gutenberg.org/ebooks/17696', 'fr', 61), +(23395, 'The American Church Dictionary and Cyclopedia', 'Miller, William James', '2010-01-07', 15, 'https://www.gutenberg.org/ebooks/30888', 'en', 9973), +(23396, 'Just William', 'Crompton, Richmal', '2010-11-23', 221, 'https://www.gutenberg.org/ebooks/34414', 'en', 9974), +(23397, '夢溪筆談, Volume 07-10', 'Shen, Kuo', '2005-01-01', 6, 'https://www.gutenberg.org/ebooks/7313', 'zh', 2525), +(23398, 'Gibraltar', 'Field, Henry M. (Henry Martyn)', '2014-06-19', 8, 'https://www.gutenberg.org/ebooks/46034', 'en', 9975), +(23399, 'Pratt\'s Practical Pointers on the Care of Livestock and Poultry', 'Pratt Food Company', '2005-09-25', 27, 'https://www.gutenberg.org/ebooks/16744', 'en', 9976), +(23400, 'Le meurtre d\'une âme', 'Lesueur, Daniel', '2016-01-30', 5, 'https://www.gutenberg.org/ebooks/51083', 'fr', 259), +(23401, 'Frank Merriwell\'s Bravery', 'Standish, Burt L.', '2007-09-11', 46, 'https://www.gutenberg.org/ebooks/22571', 'en', 3242), +(23402, 'The Present Method of Inoculating for the Small-Pox\r\nTo which are added, some experiments, instituted with a view to discover the effects of a similar treatment in the natural small-pox', 'Dimsdale, Thomas', '2015-09-01', 12, 'https://www.gutenberg.org/ebooks/49840', 'en', 9977), +(23403, 'The Siege of Boston', 'French, Allen', '2009-06-21', 4, 'https://www.gutenberg.org/ebooks/29199', 'en', 9978), +(23404, 'Our Little Scotch Cousin', 'McManus, Blanche', '2013-08-24', 16, 'https://www.gutenberg.org/ebooks/43546', 'en', 9979), +(23405, 'Penelope\'s Progress\nBeing Such Extracts from the Commonplace Book of Penelope Hamilton As Relate to Her Experiences in Scotland', 'Wiggin, Kate Douglas Smith', '2009-05-19', 13, 'https://www.gutenberg.org/ebooks/28877', 'en', 9980), +(23406, 'Tales of Men and Ghosts', 'Wharton, Edith', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9289', 'en', 1516), +(23407, 'The Story of a Mine', 'Harte, Bret', '2006-05-22', 19, 'https://www.gutenberg.org/ebooks/2661', 'en', 8226), +(23408, 'Notes and Queries, Number 203, September 17, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 19, 'https://www.gutenberg.org/ebooks/27003', 'en', 105), +(23409, 'Een reis naar de Philippijnen\r\nDe Aarde en haar Volken, 1886', 'Montano, Joseph', '2004-08-21', 7, 'https://www.gutenberg.org/ebooks/13236', 'nl', 4048), +(23410, 'Le Coq d\'Or (The Golden Cock): An Opera in Three Acts', NULL, '2017-08-24', 17, 'https://www.gutenberg.org/ebooks/55423', 'fr', 1966), +(23411, 'Lyman\'s History of old Walla Walla County, Vol. 2\r\nEmbracing Walla Walla, Columbia, Garfield and Asotin counties', 'Lyman, William Denison', '2014-09-08', 14, 'https://www.gutenberg.org/ebooks/46808', 'en', 9981), +(23412, 'A India Portugueza\nConferencia feita em 16 de março de 1908', 'Brion, Hypacio de', '2010-02-03', 30, 'https://www.gutenberg.org/ebooks/31166', 'pt', 9982), +(23413, 'The Paston Letters, A.D. 1422-1509. Volume 6 (of 6), Part 2 (Index)\r\nNew Complete Library Edition', NULL, '2013-04-08', 21, 'https://www.gutenberg.org/ebooks/42494', 'en', 9983), +(23414, 'La Comédie humaine - Volume 01', 'Balzac, Honoré de', '2012-10-28', 245, 'https://www.gutenberg.org/ebooks/41211', 'fr', 642), +(23415, 'The Range Boss', 'Seltzer, Charles Alden', '2008-06-10', 43, 'https://www.gutenberg.org/ebooks/25754', 'en', 315), +(23416, 'People of the Whirlpool\r\nFrom The Experience Book of a Commuter\'s Wife', 'Wright, Mabel Osgood', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11561', 'en', 1566), +(23417, 'Annals and Antiquities of Rajasthan, v. 1 of 3\nor the Central and Western Rajput States of India', 'Tod, James', '2018-07-04', 57, 'https://www.gutenberg.org/ebooks/57374', 'en', 9984), +(23418, 'Chips from a German Workshop, Volume 1\r\nEssays on the Science of Religion', 'Müller, F. Max (Friedrich Max)', '2008-02-26', 30, 'https://www.gutenberg.org/ebooks/24686', 'en', 8656), +(23419, 'The Story of a Strange Career: Being the Autobiography of a Convict\r\nAn Authentic Document', NULL, '2010-09-04', 18, 'https://www.gutenberg.org/ebooks/33631', 'en', 444), +(23420, 'Daughters of Belgravia; vol. 3 of 3', 'Fraser, Alexander, Mrs.', '2016-07-19', 4, 'https://www.gutenberg.org/ebooks/52606', 'en', 61), +(23421, 'The Universe a Vast Electric Organism', 'Warder, Geo. W. (George Woodward)', '2011-06-07', 43, 'https://www.gutenberg.org/ebooks/36343', 'en', 6770), +(23422, 'Unknown to History: A Story of the Captivity of Mary of Scotland', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-10-01', 59, 'https://www.gutenberg.org/ebooks/4596', 'en', 9985), +(23423, 'The Heroes of the School; or, The Darewell Chums Through Thick and Thin', 'Chapman, Allen', '2011-09-02', 6, 'https://www.gutenberg.org/ebooks/37291', 'en', 1655), +(23424, 'Uarda : a Romance of Ancient Egypt — Volume 06', 'Ebers, Georg', '2004-04-01', 38, 'https://www.gutenberg.org/ebooks/5444', 'en', 1802), +(23425, 'Gli animali alla guerra', 'Caprin, Giulio', '2014-01-26', 12, 'https://www.gutenberg.org/ebooks/44763', 'it', 93), +(23426, 'Almoran and Hamet: An Oriental Tale', 'Hawkesworth, John', '2004-11-10', 4, 'https://www.gutenberg.org/ebooks/14013', 'en', 1529), +(23427, 'Snow-Bound\nA Winter Idyll', 'Whittier, John Greenleaf', '2006-12-30', 30, 'https://www.gutenberg.org/ebooks/20226', 'en', 9986), +(23428, 'Stories of Authors, British and American', 'Chubb, Edwin Watts', '2008-10-13', 16, 'https://www.gutenberg.org/ebooks/26910', 'en', 8765), +(23429, 'Journal d\'une femme de cinquante ans, Tome 2', 'La Tour du Pin Gouvernet, Henriette Lucie Dillon, marquise de', '2009-06-19', 24, 'https://www.gutenberg.org/ebooks/29164', 'fr', 8730), +(23430, 'Maria Antoinette\nMakers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2010-01-06', 32, 'https://www.gutenberg.org/ebooks/30875', 'en', 4453), +(23431, 'The Atlantic Monthly, Volume 01, No. 04, February, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12319', 'en', 1227), +(23432, 'Reube Dare\'s Shad Boat: A Tale of the Tide Country', 'Roberts, Charles G. D., Sir', '2015-05-30', 9, 'https://www.gutenberg.org/ebooks/49081', 'en', 9987), +(23433, 'The Law-Breakers', 'Cullum, Ridgwell', '2009-09-10', 11, 'https://www.gutenberg.org/ebooks/29958', 'en', 2662), +(23434, 'Convenient Houses, With Fifty Plans for the Housekeeper', 'Gibson, Louis H. (Louis Henry)', '2013-04-05', 85, 'https://www.gutenberg.org/ebooks/42469', 'en', 2800), +(23435, 'Beyond Bedlam', 'Guin, Wyman', '2016-04-23', 43, 'https://www.gutenberg.org/ebooks/51842', 'en', 26), +(23436, 'Spanish and Portuguese South America during the Colonial Period; Vol. 1 of 2', 'Watson, Robert Grant', '2016-01-21', 9, 'https://www.gutenberg.org/ebooks/50990', 'en', 3403), +(23437, 'Het huiselik en maatschappelik leven van de Zuid-Afrikaner\r\nin de eerste helft der 18de eeuw', 'Dominicus, F. C. (Foort Cornelis)', '2009-09-21', 9, 'https://www.gutenberg.org/ebooks/30049', 'nl', 9988), +(23438, 'The Journal to Stella', 'Swift, Jonathan', '2005-11-01', 3, 'https://www.gutenberg.org/ebooks/9274', 'en', 9989), +(23439, 'Fables', 'Ross, Ronald, Sir', '2015-02-04', 11, 'https://www.gutenberg.org/ebooks/48153', 'en', 5509), +(23440, 'Le saucisson à pattes I\r\nFil-à-beurre', 'Chavette, Eugène', '2006-06-19', 22, 'https://www.gutenberg.org/ebooks/18623', 'fr', 61), +(23441, 'The Philippine Islands, 1493-1898—Volume 34 of 55, 1519-1522; 1280-1605\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', 'Pigafetta, Antonio', '2015-01-09', 71, 'https://www.gutenberg.org/ebooks/47927', 'en', 7466), +(23442, 'Jeanne d\'Arc, Maid of Orleans, Deliverer of France\r\nBeing the Story of Her Life, Her Achievements, and Her Death, as Attested on Oath and Set Forth in the Original Documents', NULL, '2018-06-25', 20, 'https://www.gutenberg.org/ebooks/57389', 'en', 9990), +(23443, 'Suomalaisen talonpojan koti-lääkäri', 'Lönnrot, Elias', '2011-12-05', 31, 'https://www.gutenberg.org/ebooks/38224', 'fi', 9499), +(23444, 'Poems by Currer, Ellis, and Acton Bell', 'Brontë, Charlotte', '1997-08-01', 189, 'https://www.gutenberg.org/ebooks/1019', 'en', 532), +(23445, 'His Masterpiece', 'Zola, Émile', '2005-05-25', 98, 'https://www.gutenberg.org/ebooks/15900', 'en', 957), +(23446, 'In Partnership: Studies in story-telling', 'Matthews, Brander', '2016-12-14', 18, 'https://www.gutenberg.org/ebooks/53729', 'en', 112), +(23447, 'The Adventures of Reddy Fox', 'Burgess, Thornton W. (Thornton Waldo)', '1999-07-01', 189, 'https://www.gutenberg.org/ebooks/1825', 'en', 625), +(23448, 'W. Kent & Co\'s Annual Catalogue, April 1859', 'W. Kent and Co.', '2019-04-05', 12, 'https://www.gutenberg.org/ebooks/59213', 'en', 9991), +(23449, 'Fitz the Filibuster', 'Fenn, George Manville', '2007-05-04', 14, 'https://www.gutenberg.org/ebooks/21309', 'en', 9992), +(23450, 'Chaitanya\'s Life And Teachings\nFrom his contemporary Begali biography the Chaitanya-charit-amrita', 'Kṛṣṇadāsa Kavirāja Gosvāmi', '2011-11-14', 51, 'https://www.gutenberg.org/ebooks/38016', 'en', 6243), +(23451, 'Queen Summer; Or, The Tourney of the Lily and the Rose', 'Crane, Walter', '2008-01-28', 40, 'https://www.gutenberg.org/ebooks/24449', 'en', 9993), +(23452, 'Saul of Tarsus: A Tale of the Early Christians', 'Miller, Elizabeth', '2011-10-26', 23, 'https://www.gutenberg.org/ebooks/37862', 'en', 984), +(23453, 'Der Luftpirat und sein lenkbares Luftschiff 66: Das Weltenfahrzeug zwischen den Riesen-Kometen', 'Anonymous', '2017-11-28', 10, 'https://www.gutenberg.org/ebooks/56069', 'de', 26), +(23454, 'An Investigation into the Nature of Black Phthisis\r\nor Ulceration Induced by Carbonaceous Accumulation in the Lungs of Coal Miners', 'Makellar, Archibald', '2007-06-23', 11, 'https://www.gutenberg.org/ebooks/21907', 'en', 9994), +(23455, 'Paul and His Dog, v.2 (Novels of Paul de Kock Volume XIV)', 'Kock, Paul de', '2012-10-03', 17, 'https://www.gutenberg.org/ebooks/40930', 'en', 58), +(23456, 'The Present State of the British Interest in India\r\nWith a Plan for Establishing a Regular System of Government in That Country', 'Anonymous', '2018-09-28', 12, 'https://www.gutenberg.org/ebooks/57987', 'en', 9995), +(23457, 'The Romance of Rubber', 'United States Rubber Company', '2003-12-01', 19, 'https://www.gutenberg.org/ebooks/4759', 'en', 3767), +(23458, 'A kik kétszer halnak meg (2. rész)\nRegény', 'Jókai, Mór', '2018-03-27', 5, 'https://www.gutenberg.org/ebooks/56855', 'hu', 234), +(23459, 'The Boy Travellers in the Far East, Part Fifth\r\nAdventures of Two Youths in a Journey through Africa', 'Knox, Thomas Wallace', '2019-03-06', 15, 'https://www.gutenberg.org/ebooks/59021', 'en', 9996), +(23460, 'Such Blooming Talk', 'Reynolds, L. Major', '2009-07-08', 28, 'https://www.gutenberg.org/ebooks/29356', 'en', 26), +(23461, 'Punch, or the London Charivari, Volume 99, December 20, 1890', 'Various', '2004-07-16', 3, 'https://www.gutenberg.org/ebooks/12917', 'en', 134), +(23462, 'Making Your Camera Pay', 'Davis, Frederick C.', '2011-03-29', 54, 'https://www.gutenberg.org/ebooks/35709', 'en', 9997), +(23463, 'L\'Illustration, No. 1595, 20 Septembre 1873', 'Various', '2014-11-11', 6, 'https://www.gutenberg.org/ebooks/47329', 'fr', 150), +(23464, 'Florence historique, monumentale, artistique', 'Niké, Marcel', '2006-01-04', 15, 'https://www.gutenberg.org/ebooks/17459', 'fr', 9998), +(23465, 'The Evolution of Modern Capitalism: A Study of Machine Production', 'Hobson, J. A. (John Atkinson)', '2009-03-09', 24, 'https://www.gutenberg.org/ebooks/28284', 'en', 9999), +(23466, 'Yr Hwiangerddi', 'Edwards, Owen Morgan, Sir', '2005-05-01', 5, 'https://www.gutenberg.org/ebooks/8194', 'cy', 10000), +(23467, 'Die Soldaten', 'Lenz, Jakob Michael Reinhold', '2004-11-01', 48, 'https://www.gutenberg.org/ebooks/6832', 'de', 402), +(23468, 'Sata runoa: Valikoituja maailmankirjallisuudesta', NULL, '2006-05-18', 8, 'https://www.gutenberg.org/ebooks/18411', 'fi', 8), +(23469, 'König Ottokars Glück und Ende\nTrauerspiel in fünf Aufzügen', 'Grillparzer, Franz', '2005-10-01', 30, 'https://www.gutenberg.org/ebooks/9046', 'de', 10001), +(23470, 'In faccia al destino', 'Albertazzi, Adolfo', '2015-02-25', 67, 'https://www.gutenberg.org/ebooks/48361', 'it', 61), +(23471, 'La Germanie\nTexte latin avec introduction, notes et lexique des noms propres', 'Tacitus, Cornelius', '2013-09-21', 15, 'https://www.gutenberg.org/ebooks/43789', 'fr', 6091), +(23472, 'Holland en de oorlog', 'Verwey, Albert', '2014-05-30', 8, 'https://www.gutenberg.org/ebooks/45826', 'nl', 335), +(23473, 'International Incidents for Discussion in Conversation Classes', 'Oppenheim, L. (Lassa)', '2010-04-27', 11, 'https://www.gutenberg.org/ebooks/32148', 'en', 10002), +(23474, 'Motor Matt\'s Make Up; or, Playing a New Rôle', 'Matthews, Stanley R.', '2016-08-25', 9, 'https://www.gutenberg.org/ebooks/52891', 'en', 3133), +(23475, 'Ruhtinas Serebrjani: Kertomus Iivana Julman ajoilta', 'Tolstoy, Aleksey Konstantinovich, graf', '2012-08-23', 10, 'https://www.gutenberg.org/ebooks/40568', 'fi', 10003), +(23476, 'The Southern Literary Messenger, Vol. I., No. 5, January, 1835', 'Various', '2017-01-11', 5, 'https://www.gutenberg.org/ebooks/53943', 'en', 522), +(23477, 'The Money Gods', 'Clark, Ellery H. (Ellery Harding)', '2012-01-02', 7, 'https://www.gutenberg.org/ebooks/38472', 'en', 1719), +(23478, 'Stauder', 'Brandt, G. N. (Gudmund Nyeland)', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10218', 'da', 10004), +(23479, 'The Elements of Blowpipe Analysis', 'Getman, Frederick Hutton', '2010-06-25', 20, 'https://www.gutenberg.org/ebooks/32974', 'en', 10005), +(23480, 'Hyvä naapuri', 'Anonymous', '2019-05-06', 4, 'https://www.gutenberg.org/ebooks/59445', 'fi', 10006), +(23481, 'The Meredith Mystery', 'Lincoln, Natalie Sumner', '2019-01-02', 16, 'https://www.gutenberg.org/ebooks/58597', 'en', 1425), +(23482, 'Viking Tales', 'Hall, Jennie', '2008-03-12', 579, 'https://www.gutenberg.org/ebooks/24811', 'en', 10007), +(23483, 'La piraterie dans l\'antiquité', 'Sestier, Jules M.', '2006-07-17', 34, 'https://www.gutenberg.org/ebooks/18849', 'fr', 645), +(23484, 'How Janice Day Won', 'Long, Helen Beecher', '2007-10-27', 30, 'https://www.gutenberg.org/ebooks/23208', 'en', 10008), +(23485, 'The Old Arm-Chair', 'Cook, Eliza', '2009-11-06', 1, 'https://www.gutenberg.org/ebooks/29732', 'en', 8), +(23486, 'Delaware; or, The Ruined Family. Vol. 1', 'James, G. P. R. (George Payne Rainsford)', '2016-04-02', 7, 'https://www.gutenberg.org/ebooks/51628', 'en', 61), +(23487, 'Monsieur, Madame, and Bébé — Volume 02', 'Droz, Gustave', '2003-04-01', 14, 'https://www.gutenberg.org/ebooks/3924', 'en', 1155), +(23488, 'Mademoiselle La Quintinie', 'Sand, George', '2006-03-29', 29, 'https://www.gutenberg.org/ebooks/18075', 'fr', 61), +(23489, 'Milly Darrell', 'Braddon, M. E. (Mary Elizabeth)', '2006-02-19', 23, 'https://www.gutenberg.org/ebooks/17801', 'en', 167), +(23490, 'A Laodicean', 'Hardy, Thomas', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9422', 'en', 8003), +(23491, 'Wanderungen durch die interessantesten Gegenden des Sächsischen Obererzgebirges (Erstes Heft)\r\nEin Beitrag zur specielleren Kenntniß desselben, seines Volkslebens, seiner Gewerbsarten, Sitten und Gebräuche', 'Lindner, Johann Traugott', '2015-04-14', 8, 'https://www.gutenberg.org/ebooks/48705', 'de', 4957), +(23492, 'Equality', 'Warner, Charles Dudley', '2004-12-05', 18, 'https://www.gutenberg.org/ebooks/3118', 'en', 20), +(23493, 'Hepplestall\'s', 'Brighouse, Harold', '2017-08-07', 4, 'https://www.gutenberg.org/ebooks/55288', 'en', 46), +(23494, 'Owindia : a true tale of the MacKenzie River Indians, North-West America', 'Bompas, Charlotte Selina', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6658', 'en', 7650), +(23495, 'Oscar in Africa', 'Castlemon, Harry', '2017-06-21', 0, 'https://www.gutenberg.org/ebooks/54954', 'en', 10009), +(23496, 'On Molecular and Microscopic Science, Volume 1 (of 2)', 'Somerville, Mary', '2017-11-04', 28, 'https://www.gutenberg.org/ebooks/55886', 'en', 10010), +(23497, 'Love in a Cloud: A Comedy in Filigree', 'Bates, Arlo', '2013-05-28', 13, 'https://www.gutenberg.org/ebooks/42831', 'en', 3435), +(23498, 'Mummery: A Tale of Three Idealists', 'Cannan, Gilbert', '2009-07-23', 10, 'https://www.gutenberg.org/ebooks/29500', 'en', 1079), +(23499, 'The Elegies of Tibullus\nBeing the Consolations of a Roman Lover Done in English Verse', 'Tibullus', '2006-01-01', 64, 'https://www.gutenberg.org/ebooks/9610', 'en', 10011), +(23500, 'A Temporary Dead-Lock\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 21, 'https://www.gutenberg.org/ebooks/23806', 'en', 770), +(23501, 'Billy Bounce', 'Bragdon, Dudley A.', '2015-03-20', 26, 'https://www.gutenberg.org/ebooks/48537', 'en', 10012), +(23502, 'The Last Man', 'Shelley, Mary Wollstonecraft', '2006-04-24', 510, 'https://www.gutenberg.org/ebooks/18247', 'en', 26), +(23503, 'English Lands, Letters and Kings, vol. 1: From Celt to Tudor', 'Mitchell, Donald Grant', '2017-02-15', 15, 'https://www.gutenberg.org/ebooks/54168', 'en', 1694), +(23504, 'She Stoops to Conquer; Or, The Mistakes of a Night: A Comedy', 'Goldsmith, Oliver', '1995-12-01', 586, 'https://www.gutenberg.org/ebooks/383', 'en', 907), +(23505, 'The Tale of a Trooper', 'Mackenzie, Clutha N. (Clutha Nantes)', '2008-09-06', 14, 'https://www.gutenberg.org/ebooks/26548', 'en', 3601), +(23506, 'Courtship and Marriage, and the Gentle Art of Home-Making', 'Swan, Annie S.', '2011-04-25', 57, 'https://www.gutenberg.org/ebooks/35963', 'en', 3407), +(23507, 'The New Heavens', 'Hale, George Ellery', '2006-09-28', 27, 'https://www.gutenberg.org/ebooks/19395', 'en', 1683), +(23508, 'Das Lied vom blöden Ritter', 'Heine, Heinrich', '2012-05-25', 39, 'https://www.gutenberg.org/ebooks/39792', 'de', 510), +(23509, 'Keats', 'Colvin, Sidney', '2012-12-22', 11, 'https://www.gutenberg.org/ebooks/41688', 'en', 6521), +(23510, 'L\'Escalier d\'Or', 'Jaloux, Edmond', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/4933', 'fr', 61), +(23511, 'Euclid\'s Book on Divisions of Figures\r\nWith a Restoration Based on Woepcke\'s Text and on the Practica Geometriae of Leonardo Pisano', 'Fibonacci, Leonardo', '2012-01-21', 82, 'https://www.gutenberg.org/ebooks/38640', 'en', 10013), +(23512, 'The Costume of China\r\nPicturesque Representations of the Dress and Manners of the Chinese', 'Alexander, William', '2019-06-05', 58, 'https://www.gutenberg.org/ebooks/59677', 'en', 3304), +(23513, 'La nouvelle Carthage', 'Eekhoud, Georges', '2005-04-05', 16, 'https://www.gutenberg.org/ebooks/15558', 'fr', 61), +(23514, 'Such is Life: A Play in Five Acts', 'Wedekind, Frank', '2014-03-26', 15, 'https://www.gutenberg.org/ebooks/45228', 'en', 493), +(23515, 'The Giant Hands; or, the Reward of Industry', 'Crowquill, Alfred', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10816', 'en', 10014), +(23516, 'Cours familier de Littérature - Volume 15', 'Lamartine, Alphonse de', '2011-10-04', 4, 'https://www.gutenberg.org/ebooks/37608', 'fr', 2156), +(23517, 'Home Poems', 'Wheeler, Kate Louise', '2016-08-21', 7, 'https://www.gutenberg.org/ebooks/52865', 'en', 1010), +(23518, 'The House That Grew', 'Molesworth, Mrs.', '2012-04-28', 29, 'https://www.gutenberg.org/ebooks/39554', 'en', 3087), +(23519, 'Rule of the Monk; Or, Rome in the Nineteenth Century', 'Garibaldi, Giuseppe', '2012-01-03', 12, 'https://www.gutenberg.org/ebooks/38486', 'en', 10015), +(23520, 'The Life of Sir John Falstaff', 'Brough, Robert B. (Robert Barnabas)', '2014-02-14', 16, 'https://www.gutenberg.org/ebooks/44900', 'en', 10016), +(23521, 'Studies in Literature and History', 'Lyall, Alfred Comyn, Sir', '2008-06-30', 30, 'https://www.gutenberg.org/ebooks/25937', 'en', 7868), +(23522, 'Confessions of an Opera Singer', 'Howard, Kathleen', '2010-06-26', 27, 'https://www.gutenberg.org/ebooks/32980', 'en', 10017), +(23523, 'Anthologica Rarissima: The Way of a Virgin\r\nBeing excerpts from rare, curious and diverting books', NULL, '2016-05-13', 495, 'https://www.gutenberg.org/ebooks/52059', 'en', 4185), +(23524, 'Le Râmâyana - tome premier\r\nPoème sanscrit de Valmiky', 'Valmiki', '2007-01-29', 29, 'https://www.gutenberg.org/ebooks/20479', 'fr', 7485), +(23525, 'British Butterflies: Figures and Descriptions of Every Native Species', 'Coleman, W. S. (William Stephen)', '2010-10-11', 18, 'https://www.gutenberg.org/ebooks/33852', 'en', 10018), +(23526, 'De vlegeljaren van Pietje Bell', 'Abkoude, Christiaan van', '2018-12-29', 93, 'https://www.gutenberg.org/ebooks/58563', 'nl', 511), +(23527, 'Heroes of the Telegraph', 'Munro, John', '1997-07-01', 261, 'https://www.gutenberg.org/ebooks/979', 'en', 10019), +(23528, 'Ramona', 'Jackson, Helen Hunt', '2001-09-01', 107, 'https://www.gutenberg.org/ebooks/2802', 'en', 2815), +(23529, 'Ave Roma Immortalis, Vol. 1\nStudies from the Chronicles of Rome', 'Crawford, F. Marion (Francis Marion)', '2009-04-26', 12, 'https://www.gutenberg.org/ebooks/28614', 'en', 2452), +(23530, 'The Negro in the South\nHis Economic Progress in Relation to his Moral and Religious Development', 'Washington, Booker T.', '2011-02-25', 49, 'https://www.gutenberg.org/ebooks/35399', 'en', 10020), +(23531, 'Nouveaux souvenirs entomologiques - Livre II\nÉtude sur l\'instinct et les moeurs des insectes', 'Fabre, Jean-Henri', '2006-03-30', 34, 'https://www.gutenberg.org/ebooks/18081', 'fr', 2667), +(23532, 'A History of Pantomime', 'Broadbent, R. J.', '2004-09-15', 21, 'https://www.gutenberg.org/ebooks/13469', 'en', 10021), +(23533, 'Middlemarch', 'Eliot, George', '1994-07-01', 1933, 'https://www.gutenberg.org/ebooks/145', 'en', 378), +(23534, 'The Symbolism of Churches and Church Ornaments\r\nA Translation of the First Book of the Rationale Divinorum Officiorum', 'Durand, Guillaume', '2013-07-27', 37, 'https://www.gutenberg.org/ebooks/43319', 'en', 4368), +(23535, 'Juhana Hus', 'Almberg, Emil August', '2015-08-05', 9, 'https://www.gutenberg.org/ebooks/49623', 'fi', 10022), +(23536, 'Scientific American Supplement, No. 358, November 11, 1882', 'Various', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8504', 'en', 210), +(23537, 'Tacitus: The Histories, Volumes I and II', 'Tacitus, Cornelius', '2005-10-23', 207, 'https://www.gutenberg.org/ebooks/16927', 'en', 10023), +(23538, 'The Rebellion in the Cevennes, an Historical Novel. Vol. II.', 'Tieck, Ludwig', '2010-03-22', 10, 'https://www.gutenberg.org/ebooks/31739', 'en', 803), +(23539, 'A New System; or, an Analysis of Antient Mythology. Volume I.', 'Bryant, Jacob', '2006-08-31', 41, 'https://www.gutenberg.org/ebooks/19153', 'en', 75), +(23540, 'The Motor Rangers Through the Sierras', 'Goldfrap, John Henry', '2013-10-09', 25, 'https://www.gutenberg.org/ebooks/43917', 'en', 8766), +(23541, 'The Italian Twins', 'Perkins, Lucy Fitch', '2009-03-28', 25, 'https://www.gutenberg.org/ebooks/28426', 'en', 10024), +(23542, 'Tajemnica Baskerville\'ów: dziwne przygody Sherlocka Holmes', 'Doyle, Arthur Conan', '2010-10-15', 96, 'https://www.gutenberg.org/ebooks/34079', 'pl', 430), +(23543, 'Ljocht en Skaed: In mennich biskôgings', 'Kalma, Douwe', '2014-07-31', 27, 'https://www.gutenberg.org/ebooks/46459', 'fy', 10025), +(23544, 'A History of Architecture in All Countries, Volume 2, 3rd ed.\nFrom the Earliest Times to the Present Day', 'Fergusson, James', '2017-11-01', 11, 'https://www.gutenberg.org/ebooks/55872', 'en', 10026), +(23545, 'The Other Girls', 'Whitney, A. D. T. (Adeline Dutton Train)', '2005-07-19', 28, 'https://www.gutenberg.org/ebooks/16329', 'en', 3994), +(23546, 'The Evolution of Fashion', 'Gardiner, Florence Mary', '2011-01-04', 64, 'https://www.gutenberg.org/ebooks/34845', 'en', 10027), +(23547, 'Kansas Women in Literature', 'Barker, Nettie Garmer', '2008-07-09', 18, 'https://www.gutenberg.org/ebooks/377', 'en', 10028), +(23548, 'The Babes in the Wood\nOne of R. Caldecott\'s Picture Books', NULL, '2006-09-23', 77, 'https://www.gutenberg.org/ebooks/19361', 'en', 10029), +(23549, 'Ladies Must Live', 'Miller, Alice Duer', '2004-06-30', 19, 'https://www.gutenberg.org/ebooks/12789', 'en', 2999), +(23550, 'The Jungle Book', 'Kipling, Rudyard', '2011-04-30', 726, 'https://www.gutenberg.org/ebooks/35997', 'en', 7163), +(23551, 'Le procès des Templiers, Tome II.', NULL, '2007-10-08', 23, 'https://www.gutenberg.org/ebooks/22920', 'la', 10030), +(23552, 'The Women of The American Revolution, Vol. 1', 'Ellet, E. F. (Elizabeth Fries)', '2015-07-10', 11, 'https://www.gutenberg.org/ebooks/49411', 'en', 3643), +(23553, 'Gaspar Ruiz', 'Conrad, Joseph', '2005-08-01', 34, 'https://www.gutenberg.org/ebooks/8736', 'en', 2564), +(23554, 'English and Scottish Ballads, Volume 6 (of 8)', NULL, '2012-05-22', 16, 'https://www.gutenberg.org/ebooks/39766', 'en', 4582), +(23555, 'Atheism Among the People', 'Lamartine, Alphonse de', '2008-05-05', 26, 'https://www.gutenberg.org/ebooks/25339', 'en', 471), +(23556, 'Les adevineaux amoureux', 'Anonymous', '2018-08-18', 64, 'https://www.gutenberg.org/ebooks/57719', 'fr', 10031), +(23557, 'The Great Impersonation', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-04-22', 52, 'https://www.gutenberg.org/ebooks/5815', 'en', 1319), +(23558, 'The New McGuffey First Reader', 'McGuffey, William Holmes', '1998-10-01', 40, 'https://www.gutenberg.org/ebooks/1489', 'en', 1019), +(23559, 'De lynch-wet', 'Aimard, Gustave', '2019-06-05', 36, 'https://www.gutenberg.org/ebooks/59683', 'nl', 7600), +(23560, 'Dispersão\n12 poesias por Mario de Sá-Carneiro', 'Sá-Carneiro, Mário de', '2007-06-11', 31, 'https://www.gutenberg.org/ebooks/21799', 'pt', 1638), +(23561, 'More Fables', 'Ade, George', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/11930', 'en', 1141), +(23562, 'State of the Union Addresses', 'Cleveland, Grover', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/5029', 'en', 1276), +(23563, 'The Friendly Five: A Story', 'Hungerford, Mary C. (Mary Churchill)', '2019-01-22', 23, 'https://www.gutenberg.org/ebooks/58751', 'en', 9671), +(23564, 'The Beginnings of Libraries', 'Richardson, Ernest Cushing', '2015-09-02', 6, 'https://www.gutenberg.org/ebooks/49849', 'en', 10032), +(23565, 'The Great Dome on Mercury', 'Zagat, Arthur Leo', '2009-06-21', 45, 'https://www.gutenberg.org/ebooks/29190', 'en', 8606), +(23566, 'The Girl and the Kingdom\nLearning to Teach', 'Wiggin, Kate Douglas Smith', '2007-09-11', 15, 'https://www.gutenberg.org/ebooks/22578', 'en', 10033), +(23567, 'Merchantmen-at-arms : the British merchants\' service in the war', 'Bone, David W. (David William)', '2010-04-11', 52, 'https://www.gutenberg.org/ebooks/31953', 'en', 10034), +(23568, 'The Journal of Joachim Hane\r\ncontaining his escapes and sufferings during his employment by Oliver Cromwell in France from November 1653 to February 1654', 'Hane, Joachim', '2015-10-08', 13, 'https://www.gutenberg.org/ebooks/50158', 'en', 5129), +(23569, 'Two Little Women', 'Wells, Carolyn', '2010-01-07', 23, 'https://www.gutenberg.org/ebooks/30881', 'en', 82), +(23570, 'Die Leute von Seldwyla — Band 2', 'Keller, Gottfried', '2009-02-09', 35, 'https://www.gutenberg.org/ebooks/28042', 'de', 4038), +(23571, 'Het Geldersch Byenboek\r\nof pratyk der byen, langs den kant der Maes, Peel en Niers, in het overkwartier van Gelderland', 'Hendrix, Petrus', '2009-01-19', 7, 'https://www.gutenberg.org/ebooks/27836', 'nl', 4644), +(23572, 'The Hardy Country: Literary landmarks of the Wessex Novels', 'Harper, Charles G. (Charles George)', '2014-09-07', 30, 'https://www.gutenberg.org/ebooks/46801', 'en', 10035), +(23573, 'Border and Bastille', 'Lawrence, George A. (George Alfred)', '2006-11-03', 20, 'https://www.gutenberg.org/ebooks/19705', 'en', 2363), +(23574, 'Alice Lorraine: A Tale of the South Downs', 'Blackmore, R. D. (Richard Doddridge)', '2015-05-29', 34, 'https://www.gutenberg.org/ebooks/49075', 'en', 10036), +(23575, 'The Bible, Douay-Rheims, Book 52: Romans\nThe Challoner Revision', NULL, '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8352', 'en', 4669), +(23576, 'The Life and Adventures of Baron Trenck, Volume 1', 'Trenck, Friedrich, Freiherr von der', '2001-06-01', 19, 'https://www.gutenberg.org/ebooks/2668', 'en', 8864), +(23577, 'The House of Mirth', 'Wharton, Edith', '2005-11-01', 10, 'https://www.gutenberg.org/ebooks/9280', 'en', 1061), +(23578, 'Leonora D\'Orco: A Historical Romance', 'James, G. P. R. (George Payne Rainsford)', '2016-01-18', 8, 'https://www.gutenberg.org/ebooks/50964', 'en', 5714), +(23579, 'Memoirs of Extraordinary Popular Delusions — Volume 2', 'Mackay, Charles', '1996-11-01', 101, 'https://www.gutenberg.org/ebooks/713', 'en', 10037), +(23580, 'Mythen en Legenden van Egypte', 'Spence, Lewis', '2005-01-28', 25, 'https://www.gutenberg.org/ebooks/14826', 'nl', 5651), +(23581, 'Constitution of the State of North Carolina and Copy of the Act of the General Assembly Entitled An Act to Amend the Constitution of the State of North Carolina', 'North Carolina', '2010-09-05', 3, 'https://www.gutenberg.org/ebooks/33638', 'en', 10038), +(23582, 'The Memoirs of Jacques Casanova de Seingalt, Vol. II (of VI), \"To Paris and Prison\"\r\nThe First Complete and Unabridged English Translation, Illustrated with Old Engravings', 'Casanova, Giacomo', '2012-03-29', 15, 'https://www.gutenberg.org/ebooks/39302', 'en', 4391), +(23583, 'The Diary of John Evelyn (Volume 1 of 2)', 'Evelyn, John', '2012-10-29', 104, 'https://www.gutenberg.org/ebooks/41218', 'en', 10039), +(23584, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 562, Saturday, August 18, 1832.', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11568', 'en', 133), +(23585, 'Garcia the Centenarian and His Times\r\nBeing a Memoir of Manuel Garcia\'s Life and Labours for the Advancement of Music and Science', 'Mackinlay, M. (Malcolm) Sterling', '2011-09-03', 6, 'https://www.gutenberg.org/ebooks/37298', 'en', 10040), +(23586, 'The Knitting Book', 'Riego de la Branchardière, Eléonore', '2018-11-24', 44, 'https://www.gutenberg.org/ebooks/58335', 'en', 948), +(23587, 'Betty Wales, Senior', 'Dunton, Edith K. (Edith Kellogg)', '2007-03-14', 16, 'https://www.gutenberg.org/ebooks/20821', 'en', 10041), +(23588, 'The Camp Fire Girls at Camp Keewaydin; Or, Paddles Down', 'Frey, Hildegard G.', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10688', 'en', 622), +(23589, 'Les derniers paysans - Tome 2', 'Souvestre, Émile', '2011-10-31', 24, 'https://www.gutenberg.org/ebooks/37896', 'fr', 61), +(23590, 'Ο κατά φαντασίαν ασθενής', 'Molière', '2011-08-02', 27, 'https://www.gutenberg.org/ebooks/36944', 'el', 907), +(23591, 'Dr. Grenfell\'s Parish: The Deep Sea Fisherman', 'Duncan, Norman', '2012-03-13', 4, 'https://www.gutenberg.org/ebooks/39130', 'en', 10042), +(23592, 'Bracebridge Hall', 'Irving, Washington', '2004-12-01', 93, 'https://www.gutenberg.org/ebooks/14228', 'en', 45), +(23593, 'For the Story Teller: Story Telling and Stories to Tell', 'Bailey, Carolyn Sherwin', '2018-10-15', 13, 'https://www.gutenberg.org/ebooks/58107', 'en', 10043), +(23594, 'The Wonderful Story of Blue Beard, and His Last Wife', NULL, '2014-01-01', 24, 'https://www.gutenberg.org/ebooks/44558', 'en', 1007), +(23595, 'The Hurricane Hunters', 'Tannehill, Ivan Ray', '2018-09-25', 19, 'https://www.gutenberg.org/ebooks/57973', 'en', 10044), +(23596, 'The Little Dog Trusty; The Orange Man; and the Cherry Orchard; Being the Tenth Part of Early Lessons (1801)', 'Edgeworth, Maria', '2011-05-21', 11, 'https://www.gutenberg.org/ebooks/36178', 'en', 10045), +(23597, 'Ann Arbor Tales', 'Harriman, Karl Edwin', '2013-01-10', 19, 'https://www.gutenberg.org/ebooks/41816', 'en', 10046), +(23598, 'Indian Fairy Tales', NULL, '2004-12-01', 261, 'https://www.gutenberg.org/ebooks/7128', 'en', 10047), +(23599, 'Evolution Of The Japanese, Social And Psychic', 'Gulick, Sidney Lewis', '2004-10-22', 44, 'https://www.gutenberg.org/ebooks/13831', 'en', 983), +(23600, 'Hypolympia; Or, The Gods in the Island, an Ironic Fantasy', 'Gosse, Edmund', '2009-03-07', 8, 'https://www.gutenberg.org/ebooks/28270', 'en', 10048), +(23601, 'Fiddles\n1909', 'Smith, Francis Hopkinson', '2007-12-03', 17, 'https://www.gutenberg.org/ebooks/23698', 'en', 3744), +(23602, 'A History of Matrimonial Institutions, Vol. 2 of 3', 'Howard, George Elliott', '2015-06-20', 12, 'https://www.gutenberg.org/ebooks/49247', 'en', 42), +(23603, 'Essays of Michel de Montaigne — Volume 08', 'Montaigne, Michel de', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/3588', 'en', 1964), +(23604, 'Recollections of My Childhood and Youth', 'Brandes, Georg', '2005-05-01', 11, 'https://www.gutenberg.org/ebooks/8160', 'en', 6776), +(23605, 'The Key to Theosophy\r\nBeing a Clear Exposition, in the Form of Question and Answer, of the Ethics, Science and Philosophy for the Study of Which the Theosophical Society Has Been Founded', 'Blavatsky, H. P. (Helena Petrovna)', '2017-09-24', 111, 'https://www.gutenberg.org/ebooks/55618', 'en', 746), +(23606, 'Punky Dunk and the Gold Fish', 'Anonymous', '2006-10-13', 27, 'https://www.gutenberg.org/ebooks/19537', 'en', 859), +(23607, 'American Historical and Literary Curiosities, Part 14.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 4, 'https://www.gutenberg.org/ebooks/7914', 'en', 1587), +(23608, 'The Life and Adventures of Robinson Crusoe', 'Defoe, Daniel', '1996-05-01', 2723, 'https://www.gutenberg.org/ebooks/521', 'en', 4731), +(23609, 'Woodworking Tools 1600-1900', 'Welsh, Peter C.', '2008-11-12', 146, 'https://www.gutenberg.org/ebooks/27238', 'en', 10049), +(23610, 'The Lives of the Saints, Volume 03 (of 16): March', 'Baring-Gould, S. (Sabine)', '2015-03-01', 32, 'https://www.gutenberg.org/ebooks/48395', 'en', 662), +(23611, 'The Animated Pinup', 'Parker, Lewis', '2010-05-12', 17, 'https://www.gutenberg.org/ebooks/32345', 'en', 26), +(23612, 'Lewis Arundel; Or, The Railroad Of Life', 'Smedley, Frank E. (Frank Edward)', '2018-02-18', 10, 'https://www.gutenberg.org/ebooks/56600', 'en', 137), +(23613, 'Punchinello, Volume 1, No. 19, August 6, 1870', 'Various', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10015', 'en', 372), +(23614, 'The Tyranny of the Dark', 'Garland, Hamlin', '2008-01-08', 30, 'https://www.gutenberg.org/ebooks/24220', 'en', 2300), +(23615, 'Van Aardappel-mes tot Officiersdegen\nUit het Dagboek van een Landstormplichtige.', 'Stoke, Melis', '2010-07-31', 13, 'https://www.gutenberg.org/ebooks/33297', 'nl', 10050), +(23616, 'The Kingdom of the Blind', 'Oppenheim, E. Phillips (Edward Phillips)', '1998-09-01', 29, 'https://www.gutenberg.org/ebooks/1442', 'en', 1319), +(23617, 'The Story of Our Submarines', 'Bower, John Graham', '2012-09-15', 12, 'https://www.gutenberg.org/ebooks/40765', 'en', 2511), +(23618, 'My Doggie and I', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 33, 'https://www.gutenberg.org/ebooks/21752', 'en', 195), +(23619, 'The Jester', 'LM (Leslie Moore)', '2019-06-01', 58, 'https://www.gutenberg.org/ebooks/59648', 'en', 323), +(23620, 'An Account of the Customs and Manners of the Micmakis and Maricheets Savage Nations, Now Dependent on the Government of Cape-Breton', 'Maillard, Antoine Simon', '2005-04-06', 22, 'https://www.gutenberg.org/ebooks/15567', 'en', 10051), +(23621, 'Storia della decadenza e rovina dell\'impero romano, volume 03', 'Gibbon, Edward', '2014-03-26', 25, 'https://www.gutenberg.org/ebooks/45217', 'it', 7245), +(23622, 'Diary of Samuel Pepys — Volume 13: November/December 1661', 'Pepys, Samuel', '2004-11-29', 7, 'https://www.gutenberg.org/ebooks/4130', 'en', 478), +(23623, 'Ludvigsbakke', 'Bang, Herman', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/10829', 'da', 7779), +(23624, 'Los majos de Cádiz', 'Palacio Valdés, Armando', '2011-10-05', 48, 'https://www.gutenberg.org/ebooks/37637', 'es', 1696), +(23625, 'Star of India', 'Perrin, Alice', '2016-10-26', 144, 'https://www.gutenberg.org/ebooks/53372', 'en', 1736), +(23626, 'The Key of Gold: 23 Czech Folk Tales', NULL, '2007-02-03', 15, 'https://www.gutenberg.org/ebooks/20680', 'en', 10052), +(23627, 'Eli\nFirst published in the \"Century Magazine\"', 'Chaplin, Heman White', '2007-10-12', 10, 'https://www.gutenberg.org/ebooks/23005', 'en', 13), +(23628, 'Alsace, Lorraine et France rhénane\r\nExposé des droits historiques de la France sur toute la rive gauche du Rhin', 'Coubé, Stéphen', '2005-12-06', 11, 'https://www.gutenberg.org/ebooks/17230', 'fr', 9445), +(23629, 'Ruunulinna: Murhekuvaus 5:ssä Tapauksessa', 'Lagervall, Jacob Fredrik', '2014-12-05', 6, 'https://www.gutenberg.org/ebooks/47540', 'fi', 433), +(23630, 'Poems of Power', 'Wilcox, Ella Wheeler', '2004-10-01', 24, 'https://www.gutenberg.org/ebooks/6667', 'en', 8), +(23631, 'From Crow-Scaring to Westminster: An Autobiography', 'Edwards, George', '2011-02-04', 11, 'https://www.gutenberg.org/ebooks/35160', 'en', 10053), +(23632, 'The Death of the Gods\n(Christ and Antichrist, 1 of 3)', 'Merezhkovsky, Dmitry Sergeyevich', '2014-08-03', 31, 'https://www.gutenberg.org/ebooks/46492', 'en', 10054), +(23633, 'The Autobiography of a Super-Tramp', 'Davies, W. H. (William Henry)', '2016-03-11', 70, 'https://www.gutenberg.org/ebooks/51425', 'en', 10055), +(23634, '論語', 'Confucius', '2007-12-13', 63, 'https://www.gutenberg.org/ebooks/23839', 'zh', 1437), +(23635, 'Nigelin vaiheet: Historiallinen romaani kuningas Jaakko I:n ajoilta', 'Scott, Walter', '2015-03-16', 9, 'https://www.gutenberg.org/ebooks/48508', 'fi', 10056), +(23636, 'On the Execution of Music, and Principally of Ancient Music', 'Saint-Saëns, Camille', '2009-11-07', 33, 'https://www.gutenberg.org/ebooks/30412', 'en', 1395), +(23637, 'Blackwood\'s Edinburgh Magazine - Volume 61, No. 376, February, 1847', 'Various', '2006-04-28', 17, 'https://www.gutenberg.org/ebooks/18278', 'en', 274), +(23638, 'Aus meinem Leben — Zweiter Teil', 'Bebel, August', '2004-10-10', 19, 'https://www.gutenberg.org/ebooks/13690', 'de', 10057), +(23639, 'Fjällbyfolk: Bilder från öfre Norrland', 'Rieck-Müller, Maria', '2017-02-12', 14, 'https://www.gutenberg.org/ebooks/54157', 'sv', 5198), +(23640, 'Vanha kauppiaskoti', 'Freytag, Gustav', '2017-07-10', 2, 'https://www.gutenberg.org/ebooks/55085', 'fi', 1103), +(23641, 'Minstrelsy of the Scottish border, Volume 1', 'Scott, Walter', '2004-06-25', 55, 'https://www.gutenberg.org/ebooks/12742', 'en', 10058), +(23642, 'How to Speak and Write Correctly', 'Devlin, Joseph', '2008-09-01', 51, 'https://www.gutenberg.org/ebooks/26577', 'en', 1979), +(23643, 'Down the Mother Lode', 'Hemphill, Vivia', '2002-07-01', 27, 'https://www.gutenberg.org/ebooks/3315', 'en', 10059), +(23644, 'The Trail of the Seneca', 'Braden, James A. (James Andrew)', '2013-02-06', 16, 'https://www.gutenberg.org/ebooks/42032', 'en', 10060), +(23645, 'Mirk Abbey, Volume 2 (of 3)', 'Payn, James', '2014-12-24', 11, 'https://www.gutenberg.org/ebooks/47772', 'en', 61), +(23646, 'The Little Lady of the Big House', 'London, Jack', '2004-09-01', 93, 'https://www.gutenberg.org/ebooks/6455', 'en', 847), +(23647, 'Woman Triumphant (La Maja Desnuda)', 'Blasco Ibáñez, Vicente', '2006-07-19', 16, 'https://www.gutenberg.org/ebooks/18876', 'en', 109), +(23648, 'Lightnin\'\r\nAfter the Play of the Same Name by Winchell Smith and Frank Bacon', 'Bacon, Frank', '2010-11-11', 19, 'https://www.gutenberg.org/ebooks/34280', 'en', 705), +(23649, 'Liv', 'Janson, Kristofer', '2007-10-29', 10, 'https://www.gutenberg.org/ebooks/23237', 'fi', 7), +(23650, 'History and Ecclesiastical Relations of the Churches of the Presbyterial Order at Amoy, China', 'Talmage, John Van Nest', '2005-11-04', 6, 'https://www.gutenberg.org/ebooks/17002', 'en', 10061), +(23651, 'The Sorceress; v. 1 of 3', 'Oliphant, Mrs. (Margaret)', '2016-04-01', 15, 'https://www.gutenberg.org/ebooks/51617', 'en', 61), +(23652, 'The Caxtons: A Family Picture — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/7587', 'en', 137), +(23653, 'Papers of the American Negro Academy. (The American Negro Academy. Occasional Papers, No. 18-19.)', 'Steward, T. G. (Theophilus Gould)', '2011-02-21', 19, 'https://www.gutenberg.org/ebooks/35352', 'en', 10062), +(23654, 'The Mouse and The Moonbeam', 'Field, Eugene', '2009-01-04', 10, 'https://www.gutenberg.org/ebooks/27697', 'en', 585), +(23655, 'Selling Latin America\nA Problem in International Salesmanship. What to Sell and How to Sell It', 'Aughinbaugh, William E.', '2019-08-22', 0, 'https://www.gutenberg.org/ebooks/60150', 'en', NULL), +(23656, 'A History of the Old English Letter Foundries\r\nwith Notes, Historical and Bibliographical, on the Rise and Progress of English Typography.', 'Reed, Talbot Baines', '2017-03-14', 11, 'https://www.gutenberg.org/ebooks/54365', 'en', 10063), +(23657, 'Two New Pelycosaurs from the Lower Permian of Oklahoma', 'Fox, Richard C.', '2009-12-07', 6, 'https://www.gutenberg.org/ebooks/30620', 'en', 10064), +(23658, 'Being a Boy', 'Warner, Charles Dudley', '2004-10-10', 11, 'https://www.gutenberg.org/ebooks/3127', 'en', 10065), +(23659, 'The Shadow of Ashlydyat', 'Wood, Henry, Mrs.', '2013-02-25', 20, 'https://www.gutenberg.org/ebooks/42200', 'en', 45), +(23660, 'Aliens or Americans?', 'Grose, Howard B. (Howard Benjamin)', '2006-09-07', 34, 'https://www.gutenberg.org/ebooks/19198', 'en', 9642), +(23661, 'Starr, of the Desert', 'Bower, B. M.', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12570', 'en', 315), +(23662, 'Travels in Peru, on the Coast, in the Sierra, Across the Cordilleras and the Andes, into the Primeval Forests', 'Tschudi, Johann Jakob von', '2008-10-03', 20, 'https://www.gutenberg.org/ebooks/26745', 'en', 10066), +(23663, 'Cressy and Poictiers: The Story of the Black Prince\'s Page', 'Edgar, John G. (John George)', '2014-05-29', 13, 'https://www.gutenberg.org/ebooks/45819', 'en', 10067), +(23664, 'The Peacock of Jewels', 'Hume, Fergus', '2018-01-25', 9, 'https://www.gutenberg.org/ebooks/56432', 'en', 128), +(23665, 'Makers and Romance of Alabama History', 'Riley, B. F. (Benjamin Franklin)', '2012-11-25', 14, 'https://www.gutenberg.org/ebooks/41485', 'en', 10068), +(23666, 'A \"Y\" Girl in France: Letters of Katherine Shortall', 'Shortall, Katherine', '2010-04-29', 8, 'https://www.gutenberg.org/ebooks/32177', 'en', 449), +(23667, 'Luther\'s Little Instruction Book: The Small Catechism of Martin Luther', 'Luther, Martin', '1999-03-01', 62, 'https://www.gutenberg.org/ebooks/1670', 'en', 4841), +(23668, 'Kvinnlighet och erotik I.', 'Leffler, Anne Charlotte', '2012-08-22', 24, 'https://www.gutenberg.org/ebooks/40557', 'sv', 420), +(23669, 'Tolstoy\'s Plower Story', NULL, '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10227', 'en', 10069), +(23670, 'The Peter Pan Alphabet', 'Herford, Oliver', '2007-12-24', 26, 'https://www.gutenberg.org/ebooks/24012', 'en', 10070), +(23671, 'Imperial Federation: The Problem of National Unity', 'Parkin, George R. (George Robert)', '2014-02-26', 7, 'https://www.gutenberg.org/ebooks/45025', 'en', 10071), +(23672, 'Thyrza', 'Gissing, George', '2003-08-01', 20, 'https://www.gutenberg.org/ebooks/4302', 'en', 137), +(23673, 'Papers on Health', 'Kirk, John', '2007-05-21', 5, 'https://www.gutenberg.org/ebooks/21560', 'en', 2925), +(23674, 'English Dialects From the Eighth Century to the Present Day', 'Skeat, Walter W. (Walter William)', '2005-05-03', 39, 'https://www.gutenberg.org/ebooks/15755', 'en', 10072), +(23675, 'Der zerstörte Tasso: Ausgewählte Gedichte', 'Bruckner, Ferdinand', '2016-05-17', 10, 'https://www.gutenberg.org/ebooks/52092', 'de', 8), +(23676, 'Chickamauga and Chattanooga Battlefields\nChickamauga and Chattanooga National Military Park—Georgia, Tennessee', 'Sullivan, James R.', '2016-09-24', 15, 'https://www.gutenberg.org/ebooks/53140', 'en', 1717); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(23677, 'Christian\'s Mistake', 'Craik, Dinah Maria Mulock', '2005-01-13', 24, 'https://www.gutenberg.org/ebooks/14687', 'en', 61), +(23678, 'Optical Projection. Part 1: The Projection of Lantern Slides', 'Wright, Lewis', '2010-10-31', 5, 'https://www.gutenberg.org/ebooks/33899', 'en', 10073), +(23679, 'A Maid at King Alfred\'s Court: A Story for Girls', 'Madison, Lucy Foster', '2011-09-11', 7, 'https://www.gutenberg.org/ebooks/37405', 'en', 10074), +(23680, 'Advance Agent', 'Anvil, Christopher', '2016-02-21', 69, 'https://www.gutenberg.org/ebooks/51273', 'en', 9910), +(23681, 'Ritchie\'s Fabulae Faciles: A First Latin Reader', 'Ritchie, Francis', '2005-09-01', 189, 'https://www.gutenberg.org/ebooks/8997', 'la', 10075), +(23682, 'Merkwaardige Kasteelen in Nederland, Deel II (van VI)', 'Hofdijk, W. J. (Willem Jacobszoon)', '2009-07-10', 15, 'https://www.gutenberg.org/ebooks/29369', 'nl', 10076), +(23683, '32 Caliber', 'McGibeny, Donald', '2007-09-27', 73, 'https://www.gutenberg.org/ebooks/22781', 'en', 61), +(23684, 'Three Expeditions into the Interior of Eastern Australia, Volume 1\r\nWith Descriptions of the Recently Explored Region of Australia Felix, and of the Present Colony of New South Wales', 'Mitchell, T. L. (Thomas Livingstone)', '2004-07-17', 54, 'https://www.gutenberg.org/ebooks/12928', 'en', 2471), +(23685, 'Life and Death, and Other Legends and Stories', 'Sienkiewicz, Henryk', '2011-04-01', 44, 'https://www.gutenberg.org/ebooks/35736', 'en', 1676), +(23686, 'New Witnesses for God (Volume 2 of 3)', 'Roberts, B. H. (Brigham Henry)', '2014-11-09', 34, 'https://www.gutenberg.org/ebooks/47316', 'en', 2107), +(23687, 'Memoirs of My Life and Writings', 'Gibbon, Edward', '2004-07-01', 81, 'https://www.gutenberg.org/ebooks/6031', 'en', 6239), +(23688, 'How It All Came Round', 'Meade, L. T.', '2007-11-28', 10, 'https://www.gutenberg.org/ebooks/23653', 'en', 1380), +(23689, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, October 1878, No. 12', 'Various', '2006-01-05', 18, 'https://www.gutenberg.org/ebooks/17466', 'en', 563), +(23690, 'The Spy', 'Cooper, James Fenimore', '2006-02-01', 165, 'https://www.gutenberg.org/ebooks/9845', 'en', 2564), +(23691, 'Jack Winters\' Baseball Team; Or, The Rivals of the Diamond', 'Overton, Mark', '2010-02-25', 11, 'https://www.gutenberg.org/ebooks/31396', 'en', 6620), +(23692, 'Heartbreak House', 'Shaw, Bernard', '2002-11-01', 154, 'https://www.gutenberg.org/ebooks/3543', 'en', 10077), +(23693, 'Gods of the North', 'Howard, Robert E. (Robert Ervin)', '2013-05-08', 151, 'https://www.gutenberg.org/ebooks/42664', 'en', 179), +(23694, 'Punch, or the London Charivari, Volume 156, May 14, 1919', 'Various', '2004-04-01', 3, 'https://www.gutenberg.org/ebooks/12114', 'en', 134), +(23695, 'Life and Matter: A Criticism of Professor Haeckel\'s \"Riddle of the Universe\"', 'Lodge, Oliver, Sir', '2008-08-15', 24, 'https://www.gutenberg.org/ebooks/26321', 'en', 5449), +(23696, 'Gothic Architecture', 'Corroyer, Edouard', '2017-05-10', 29, 'https://www.gutenberg.org/ebooks/54701', 'en', 10078), +(23697, 'Alice\'s Adventures in Wonderland', 'Carroll, Lewis', '2008-06-27', 13525, 'https://www.gutenberg.org/ebooks/11', 'en', 10012), +(23698, 'The Land of the Miamis\r\nAn Account of the Struggle to Secure Possession of the North-West from the End of the Revolution until 1812', 'Barce, Elmore', '2009-10-13', 92, 'https://www.gutenberg.org/ebooks/30244', 'en', 10079), +(23699, 'Love or Fame; and Other Poems', 'Sherrick, Fannie Isabelle', '2001-02-01', 12, 'https://www.gutenberg.org/ebooks/2491', 'en', 178), +(23700, 'The Man Shakespeare and His Tragic Life Story', 'Harris, Frank', '2005-10-01', 19, 'https://www.gutenberg.org/ebooks/9079', 'en', 10080), +(23701, 'Three Little Women: A Story for Girls', 'Jackson, Gabrielle E. (Gabrielle Emilie)', '2011-11-15', 18, 'https://www.gutenberg.org/ebooks/38029', 'en', 6828), +(23702, 'The Street of Seven Stars', 'Rinehart, Mary Roberts', '1998-02-01', 66, 'https://www.gutenberg.org/ebooks/1214', 'en', 10081), +(23703, 'Sister Anne (Novels of Paul de Kock, Volume X)', 'Kock, Paul de', '2012-07-03', 4, 'https://www.gutenberg.org/ebooks/40133', 'en', 58), +(23704, 'The World\'s Greatest Books — Volume 02 — Fiction', NULL, '2004-01-01', 251, 'https://www.gutenberg.org/ebooks/10643', 'en', 61), +(23705, 'Dokumentoj de Esperanto\nInformilo pri la historio kaj organizo de la Esperanta movado', NULL, '2018-05-19', 4, 'https://www.gutenberg.org/ebooks/57184', 'eo', 10082), +(23706, 'The Nursery, March 1873, Vol. XIII.\r\nA Monthly Magazine for Youngest Readers', 'Various', '2008-01-31', 20, 'https://www.gutenberg.org/ebooks/24476', 'en', 4641), +(23707, 'The Young Circus Rider; or, the Mystery of Robert Rudd', NULL, '2017-11-27', 31, 'https://www.gutenberg.org/ebooks/56056', 'en', 751), +(23708, 'Human Genome Project, Build 34, Chromosome Number 17', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11791', 'en', 1385), +(23709, 'The Works of John Knox, Volume 1 (of 6)', 'Knox, John', '2007-06-26', 37, 'https://www.gutenberg.org/ebooks/21938', 'en', 10083), +(23710, 'Epidemics Resulting from Wars', 'Prinzing, Friedrich', '2019-06-27', 63, 'https://www.gutenberg.org/ebooks/59822', 'en', 10084), +(23711, 'The Third Little Pet Book, with the Tale of Mop and Frisk', 'Fanny, Aunt', '2010-05-24', 20, 'https://www.gutenberg.org/ebooks/32513', 'en', 1123), +(23712, 'Prowling about Panama', 'Miller, George A. (George Amos)', '2012-02-09', 16, 'https://www.gutenberg.org/ebooks/38815', 'en', 10085), +(23713, 'A Persian Pearl, and Other Essays', 'Darrow, Clarence', '2016-11-13', 15, 'https://www.gutenberg.org/ebooks/53524', 'en', 2156), +(23714, 'Kyttyrä-selkäinen tahi Työn voima: Porvarillinen näytelmä neljässä näytöksessä', NULL, '2011-08-13', 9, 'https://www.gutenberg.org/ebooks/37061', 'fi', 402), +(23715, 'The Oxford Book of Ballads', NULL, '2014-01-05', 22, 'https://www.gutenberg.org/ebooks/44593', 'en', 10086), +(23716, 'In Sunny Spain with Pilarica and Rafael', 'Bates, Katharine Lee', '2014-04-20', 25, 'https://www.gutenberg.org/ebooks/45441', 'en', 10087), +(23717, 'Windows', 'Galsworthy, John', '2004-09-26', 18, 'https://www.gutenberg.org/ebooks/4766', 'en', 5266), +(23718, 'Afloat at Last\nA Sailor Boy\'s Log of his Life at Sea', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 39, 'https://www.gutenberg.org/ebooks/21104', 'en', 10088), +(23719, 'St. Nicholas, Vol. 5, No. 4, February 1878', 'Various', '2005-03-12', 14, 'https://www.gutenberg.org/ebooks/15331', 'en', 479), +(23720, 'The World\'s Greatest Books — Volume 01 — Fiction', NULL, '2003-12-01', 265, 'https://www.gutenberg.org/ebooks/10471', 'en', 61), +(23721, 'Harry\'s Ladder to Learning', 'Anonymous', '2008-02-19', 83, 'https://www.gutenberg.org/ebooks/24644', 'en', 2296), +(23722, 'The Diary of a Nobody', 'Grossmith, Weedon', '1997-08-01', 324, 'https://www.gutenberg.org/ebooks/1026', 'en', 706), +(23723, 'Sporting Society; or, Sporting Chat and Sporting Memories, Vol. 1 (of 2)', NULL, '2012-07-23', 7, 'https://www.gutenberg.org/ebooks/40301', 'en', 10089), +(23724, 'The History of Virginia, in Four Parts', 'Beverley, Robert', '2010-06-06', 17, 'https://www.gutenberg.org/ebooks/32721', 'en', 5546), +(23725, 'Blicke in das Leben der Zigeuner\nVon einem Zigeuner', 'Wittich, Engelbert', '2008-06-15', 15, 'https://www.gutenberg.org/ebooks/25796', 'de', 5145), +(23726, 'Italian Fantasies', 'Zangwill, Israel', '2017-12-28', 11, 'https://www.gutenberg.org/ebooks/56264', 'en', 5931), +(23727, 'The Emperor — Volume 04', 'Ebers, Georg', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/5486', 'en', 10090), +(23728, 'In the Land of the Great Snow Bear: A Tale of Love and Heroism', 'Stables, Gordon', '2011-08-29', 16, 'https://www.gutenberg.org/ebooks/37253', 'en', 10091), +(23729, 'The Tuzuk-i-Jahangiri: or, Memoirs of Jahangir (Volume 2 of 2)', 'Jahangir, Emperor of Hindustan', '2016-12-11', 28, 'https://www.gutenberg.org/ebooks/53716', 'en', 10092), +(23730, 'The Skipper\'s Wooing, and The Brown Man\'s Servant', 'Jacobs, W. W. (William Wymark)', '2007-05-05', 8, 'https://www.gutenberg.org/ebooks/21336', 'en', 3421), +(23731, 'The Imaginary Marriage', 'Cooper, Henry St. John', '2005-02-18', 18, 'https://www.gutenberg.org/ebooks/15103', 'en', 61), +(23732, 'A brief Journal of what passed in the City of Marseilles, while it was afflicted with the Plague, in the Year 1720', 'Pichatty de Croislainte', '2014-05-17', 21, 'https://www.gutenberg.org/ebooks/45673', 'en', 10093), +(23733, 'Lover\'s Vows', 'Kotzebue, August von', '2003-10-01', 35, 'https://www.gutenberg.org/ebooks/4554', 'en', 493), +(23734, 'Op de Levensreis', 'Snethlage, Hendrik Anne Constantijn', '2011-06-11', 13, 'https://www.gutenberg.org/ebooks/36381', 'nl', 1130), +(23735, 'Miss Maitland, Private Secretary', 'Bonner, Geraldine', '2011-03-06', 35, 'https://www.gutenberg.org/ebooks/35504', 'en', 10094), +(23736, 'The World\'s Best Poetry, Volume 03: Sorrow and Consolation', NULL, '2005-10-01', 73, 'https://www.gutenberg.org/ebooks/16786', 'en', 2346), +(23737, 'A History of the Army Experience of William A. Canfield', 'Canfield, William A.', '2010-04-15', 5, 'https://www.gutenberg.org/ebooks/31998', 'en', 1489), +(23738, 'The Horses of the Sahara and the Manners of the Desert', 'Daumas, E.‏ (Eugène)', '2016-01-25', 10, 'https://www.gutenberg.org/ebooks/51041', 'en', 10095), +(23739, 'A Day Well Spent: A Farce, in One Act', 'Oxenford, John', '2015-09-05', 13, 'https://www.gutenberg.org/ebooks/49882', 'en', 907), +(23740, 'Tatterdemalion', 'Galsworthy, John', '2009-02-15', 24, 'https://www.gutenberg.org/ebooks/28089', 'en', 579), +(23741, 'English Translations from the Greek: A Bibliographical Survey', 'Foster, Finley Melville Kendall', '2015-05-12', 15, 'https://www.gutenberg.org/ebooks/48950', 'en', 1821), +(23742, 'Vilun-ihana', 'Auerbach, Berthold', '2007-11-12', 8, 'https://www.gutenberg.org/ebooks/23461', 'fi', 61), +(23743, 'The Messenger of the Black Prince', 'Mawhinney, Thomas A. H.', '2015-10-13', 5, 'https://www.gutenberg.org/ebooks/50193', 'en', 10096), +(23744, 'Punch, or the London Charivari, Vol. 159, 1920-09-15', 'Various', '2006-01-31', 8, 'https://www.gutenberg.org/ebooks/17654', 'en', 134), +(23745, 'L\'Illustration, No. 0069, 22 Juin 1844', 'Various', '2014-10-15', 6, 'https://www.gutenberg.org/ebooks/47124', 'fr', 150), +(23746, 'When Valmond Came to Pontiac: The Story of a Lost Napoleon. Volume 2.', 'Parker, Gilbert', '2004-08-01', 14, 'https://www.gutenberg.org/ebooks/6203', 'en', 1219), +(23747, 'The Story of My Life: Recollections and Reflections', 'Terry, Ellen', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/12326', 'en', 10097), +(23748, 'Handbook of Wool Knitting and Crochet', 'Anonymous', '2008-07-23', 197, 'https://www.gutenberg.org/ebooks/26113', 'en', 1016), +(23749, 'Cynthia\'s Revels; Or, The Fountain of Self-Love', 'Jonson, Ben', '2003-02-01', 68, 'https://www.gutenberg.org/ebooks/3771', 'en', 126), +(23750, 'Manners and Social Usages', 'Sherwood, M. E. W. (Mary Elizabeth Wilson)', '2005-06-01', 23, 'https://www.gutenberg.org/ebooks/8399', 'en', 788), +(23751, 'Het Haarlemmer-Meer-Boek', 'Hasselt, Willem Jan Cornelis van', '2009-09-12', 16, 'https://www.gutenberg.org/ebooks/29967', 'nl', 10098), +(23752, 'El Jayón: Drama en tres actos', 'Espina, Concha', '2013-04-01', 9, 'https://www.gutenberg.org/ebooks/42456', 'es', 402), +(23753, 'The Mystery of the Secret Band', 'Lavell, Edith', '2013-08-28', 23, 'https://www.gutenberg.org/ebooks/43584', 'en', 10099), +(23754, 'Graham\'s Magazine Vol XXXIII No. 3 September 1848', 'Various', '2009-09-24', 12, 'https://www.gutenberg.org/ebooks/30076', 'en', 380), +(23755, 'L\'Illustration, No. 0070, 29 Juin 1844', 'Various', '2015-01-08', 5, 'https://www.gutenberg.org/ebooks/47918', 'fr', 150), +(23756, 'The Cruise of the Dream Ship', 'Stock, Ralph', '2017-04-10', 11, 'https://www.gutenberg.org/ebooks/54533', 'en', 6743), +(23757, 'Maggie, a Girl of the Streets', 'Crane, Stephen', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8963', 'en', 4352), +(23758, 'Haaksirikkoisen pelastus; Äitipuolen kertomus; Kaitalan Matti; Jokapaikan Eeron Helsingin-matka', 'Lassinen, Emil', '2016-02-23', 8, 'https://www.gutenberg.org/ebooks/51287', 'fi', 41), +(23759, 'Melchior\'s Dream and Other Tales', 'Ewing, Juliana Horatia Gatty', '2005-08-17', 18, 'https://www.gutenberg.org/ebooks/16540', 'en', 195), +(23760, 'Psychotherapy', 'Münsterberg, Hugo', '2007-09-27', 81, 'https://www.gutenberg.org/ebooks/22775', 'en', 4795), +(23761, 'Memoirs of Sir Wemyss Reid 1842-1885', 'Reid, T. Wemyss (Thomas Wemyss)', '2004-12-01', 9, 'https://www.gutenberg.org/ebooks/7117', 'en', 10100), +(23762, 'Our Little Austrian Cousin', 'Mendel, Florence Emma Voigt', '2014-07-09', 13, 'https://www.gutenberg.org/ebooks/46230', 'en', 10101), +(23763, 'How to Appreciate Music', 'Kobbé, Gustav', '2010-12-09', 25, 'https://www.gutenberg.org/ebooks/34610', 'en', 3385), +(23764, 'Six Little Bunkers at Cousin Tom\'s', 'Hope, Laura Lee', '2006-01-11', 14, 'https://www.gutenberg.org/ebooks/17492', 'en', 10102), +(23765, 'Titan of Chasms: The Grand Canyon of Arizona', 'Lummis, Charles Fletcher', '2015-10-31', 16, 'https://www.gutenberg.org/ebooks/50355', 'en', 7762), +(23766, 'The Weans at Rowallan', 'Fitzpatrick, Kathleen', '2010-02-22', 16, 'https://www.gutenberg.org/ebooks/31362', 'en', 9113), +(23767, 'The Soldier and Death\nA Russian Folk Tale Told in English by Arthur Ransome', 'Ransome, Arthur', '2015-06-25', 12, 'https://www.gutenberg.org/ebooks/49278', 'en', 10103), +(23768, 'The Mesmerist\'s Victim', 'Dumas, Alexandre', '2013-05-11', 38, 'https://www.gutenberg.org/ebooks/42690', 'en', 2643), +(23769, 'Emmeline', 'Singmaster, Elsie', '2017-09-25', 19, 'https://www.gutenberg.org/ebooks/55627', 'en', 10104), +(23770, 'A Modest Proposal', 'Swift, Jonathan', '2006-10-10', 13, 'https://www.gutenberg.org/ebooks/19508', 'en', 10105), +(23771, '封氏聞見記', 'Feng, Yan, jin shi 756', '2008-11-09', 21, 'https://www.gutenberg.org/ebooks/27207', 'zh', 10106), +(23772, 'The Book of Noodles\r\nStories of Simpletons; or, Fools and Their Follies', 'Clouston, W. A. (William Alexander)', '2004-07-26', 17, 'https://www.gutenberg.org/ebooks/13032', 'en', 10107), +(23773, 'To Tell You the Truth', 'Merrick, Leonard', '2013-09-16', 30, 'https://www.gutenberg.org/ebooks/43742', 'en', 409), +(23774, 'Carmen', 'Mérimée, Prosper', '2006-03-28', 233, 'https://www.gutenberg.org/ebooks/2465', 'en', 6050), +(23775, 'Index of the Project Gutenberg Works of Edgar Rice Burroughs', 'Burroughs, Edgar Rice', '2019-02-17', 85, 'https://www.gutenberg.org/ebooks/58904', 'en', 198), +(23776, 'The Dramatic Works of G. E. Lessing\nMiss Sara Sampson, Philotas, Emilia Galotti, Nathan the Wise', 'Lessing, Gotthold Ephraim', '2010-08-15', 147, 'https://www.gutenberg.org/ebooks/33435', 'en', 493), +(23777, 'Louhilinna: Tarina vanhasta talosta', 'Talvio, Maila', '2018-05-16', 3, 'https://www.gutenberg.org/ebooks/57170', 'fi', 175), +(23778, 'Zip, the Adventures of a Frisky Fox Terrier', 'Montgomery, Frances Trego', '2008-01-31', 24, 'https://www.gutenberg.org/ebooks/24482', 'en', 766), +(23779, 'The Defiant Agents', 'Norton, Andre', '2008-05-21', 185, 'https://www.gutenberg.org/ebooks/25550', 'en', 26), +(23780, 'Between You and Me', 'Lauder, Harry, Sir', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/11765', 'en', 10108), +(23781, 'Shaun O\'Day of Ireland', 'Brandeis, Madeline', '2012-10-10', 9, 'https://www.gutenberg.org/ebooks/41015', 'en', 4426), +(23782, 'Punch, Or The London Charivari, Volume 102, January 16, 1892', 'Various', '2004-11-30', 2, 'https://www.gutenberg.org/ebooks/14217', 'en', 134), +(23783, 'The Anatomy of Vegetables Begun\nWith a General Account of Vegetation founded thereon', 'Grew, Nehemiah', '2018-10-19', 14, 'https://www.gutenberg.org/ebooks/58138', 'en', 10109), +(23784, '\"Sequil\"; Or, Things Whitch Aint Finished in the First', 'Shute, Henry A. (Henry Augustus)', '2006-12-05', 18, 'https://www.gutenberg.org/ebooks/20022', 'en', 1566), +(23785, 'Historia de la literatura y del arte dramático en España, tomo V', 'Schack, Adolf Friedrich von', '2011-08-15', 15, 'https://www.gutenberg.org/ebooks/37095', 'es', 8839), +(23786, 'Báró Podmaniczky Pál és a norvég Biblia\r\nElbeszélés a 18 nyelvü nagyapáról 77 nyelven és rovásírással', 'Kutas, Ilona', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/5640', 'hu', 179), +(23787, 'A Practical Treatise on Gas-light\r\nExhibiting a Summary Description of the Apparatus and Machinery Best Calculated for Illuminating Streets, Houses, and Manufactories, with Carburetted Hydrogen, or Coal-Gas, with Remarks on the Utility, Safety, and General Nature of this new Branch of Civil Economy.', 'Accum, Friedrich Christian', '2014-01-02', 33, 'https://www.gutenberg.org/ebooks/44567', 'en', 10110), +(23788, 'George Gemünder\'s Progress in Violin Making\nWith Interesting Facts Concerning the Art and Its Critics in General', 'Gemünder, George', '2011-05-18', 11, 'https://www.gutenberg.org/ebooks/36147', 'en', 3704), +(23789, 'In Freedom\'s Cause : A Story of Wallace and Bruce', 'Henty, G. A. (George Alfred)', '2003-12-01', 100, 'https://www.gutenberg.org/ebooks/4792', 'en', 2588), +(23790, 'The Serf', 'Thorne, Guy', '2013-01-12', 26, 'https://www.gutenberg.org/ebooks/41829', 'en', 654), +(23791, 'The Amazing Inheritance', 'Sterrett, Frances R. (Frances Roberta)', '2012-06-06', 14, 'https://www.gutenberg.org/ebooks/39933', 'en', 757), +(23792, 'The Princess Pourquoi', 'Sherwood, Margaret Pollock', '2016-06-23', 14, 'https://www.gutenberg.org/ebooks/52402', 'en', 797), +(23793, 'The Lives and Opinions of Eminent Philosophers', 'Diogenes Laertius', '2018-06-16', 268, 'https://www.gutenberg.org/ebooks/57342', 'en', 10111), +(23794, 'Experiments in Government and the Essentials of the Constitution', 'Root, Elihu', '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/10485', 'en', 1720), +(23795, 'Elämän hawainnoita 04: Kontti=Anna; Ruoti=ukko', 'Päivärinta, Pietari', '2005-01-27', 31, 'https://www.gutenberg.org/ebooks/14819', 'fi', 456), +(23796, 'The Mother of St. Nicholas: A Story of Duty and Peril', 'Balfour, Grant', '2010-09-02', 11, 'https://www.gutenberg.org/ebooks/33607', 'en', 10112), +(23797, 'Gairloch in North-West Ross-Shire\r\nIts Records, Traditions, Inhabitants, and Natural History, with a Guide to Gairloch and Loch Maree, and a Map and Illustrations', 'Dixon, John H. (John Henry)', '2012-10-29', 32, 'https://www.gutenberg.org/ebooks/41227', 'en', 10113), +(23798, 'Billie Bradley on Lighthouse Island; Or, The Mystery of the Wreck', 'Wheeler, Janet D.', '2008-06-12', 16, 'https://www.gutenberg.org/ebooks/25762', 'en', 5086), +(23799, 'On Compromise', 'Morley, John', '2004-03-01', 43, 'https://www.gutenberg.org/ebooks/11557', 'en', 10114), +(23800, 'Men and Measures', 'Nicholson, Edward', '2018-01-02', 8, 'https://www.gutenberg.org/ebooks/56290', 'en', 10115), +(23801, 'Joshua — Complete', 'Ebers, Georg', '2004-11-15', 40, 'https://www.gutenberg.org/ebooks/5472', 'en', 803), +(23802, 'Eighteen Months\' Imprisonment', 'Shaw, Donald, late captain', '2014-01-26', 17, 'https://www.gutenberg.org/ebooks/44755', 'en', 10116), +(23803, 'Mount Music', 'Ross, Martin', '2004-11-11', 26, 'https://www.gutenberg.org/ebooks/14025', 'en', 440), +(23804, 'Shakespeare\'s Christmas Gift to Queen Bess', 'McMahan, Anna Benneson', '2006-12-28', 11, 'https://www.gutenberg.org/ebooks/20210', 'en', 7946), +(23805, 'Harper\'s Young People, January 24, 1882\nAn Illustrated Weekly', 'Various', '2016-07-23', 1, 'https://www.gutenberg.org/ebooks/52630', 'en', 479), +(23806, 'Friendship and Folly: A Novel', 'Pool, Maria Louise', '2014-05-18', 22, 'https://www.gutenberg.org/ebooks/45687', 'en', 10117), +(23807, 'Fifty Years In The Northwest\r\nWith An Introduction And Appendix Containing Reminiscences, Incidents And Notes', 'Folsom, William H. C. (William Henry Carman)', '2011-06-11', 104, 'https://www.gutenberg.org/ebooks/36375', 'en', 8586), +(23808, 'Dreams and Days: Poems', 'Lathrop, George Parsons', '2005-01-01', 22, 'https://www.gutenberg.org/ebooks/7325', 'en', 178), +(23809, 'Motor tours in Yorkshire', 'Stawell, Rodolph, Mrs.', '2014-06-16', 8, 'https://www.gutenberg.org/ebooks/46002', 'en', 10118), +(23810, 'The Story of a Soul (L\'Histoire d\'une Âme): The Autobiography of St. Thérèse of Lisieux\nWith Additional Writings and Sayings of St. Thérèse', 'Thérèse, de Lisieux, Saint', '2005-09-28', 327, 'https://www.gutenberg.org/ebooks/16772', 'en', 10119), +(23811, 'The Mentor: Game Birds of America, Vol. 1, Num. 34, Serial No. 34', 'Forbush, Edward Howe', '2015-09-04', 7, 'https://www.gutenberg.org/ebooks/49876', 'en', 10120), +(23812, 'The Rover Boys on Treasure Isle; or, The Strange Cruise of the Steam Yacht', 'Stratemeyer, Edward', '2007-09-09', 35, 'https://www.gutenberg.org/ebooks/22547', 'en', 10121), +(23813, 'The Story of the Greeks', 'Guerber, H. A. (Hélène Adeline)', '2007-12-05', 176, 'https://www.gutenberg.org/ebooks/23495', 'en', 10122), +(23814, 'Charles Sumner: his complete works, volume 16 (of 20)', 'Sumner, Charles', '2015-10-09', 7, 'https://www.gutenberg.org/ebooks/50167', 'en', 125), +(23815, 'Mémoires de Frédérique Sophie Wilhelmine de Prusse, margrave de Bareith. Tome 2', 'Wilhelmine, Margravine, consort of Friedrich, Margrave of Bayreuth', '2009-01-14', 8, 'https://www.gutenberg.org/ebooks/27809', 'fr', 10123), +(23816, 'Lautrec; ou, Quinze ans de mœurs Parisiennes, 1885-1900', 'Coquiot, Gustave', '2010-11-23', 12, 'https://www.gutenberg.org/ebooks/34422', 'fr', 10124), +(23817, 'The Boy Scout Explorers at Treasure Mountain', 'Palmer, Don', '2017-08-23', 8, 'https://www.gutenberg.org/ebooks/55415', 'en', 10125), +(23818, 'In the Reign of Terror: The Adventures of a Westminster Boy', 'Henty, G. A. (George Alfred)', '2003-02-01', 59, 'https://www.gutenberg.org/ebooks/3785', 'en', 248), +(23819, 'Gottfried Keller', 'Huch, Ricarda', '2010-02-01', 22, 'https://www.gutenberg.org/ebooks/31150', 'de', 10126), +(23820, 'Robert Emmet: A Survey of His Rebellion and of His Romance', 'Guiney, Louise Imogen', '2016-04-29', 8, 'https://www.gutenberg.org/ebooks/51889', 'en', 10127), +(23821, 'Poems', 'Howells, William Dean', '2009-09-15', 14, 'https://www.gutenberg.org/ebooks/29993', 'en', 178), +(23822, 'Current Superstitions', 'Bergen, Fanny D. (Fanny Dickerson)', '2009-05-01', 9, 'https://www.gutenberg.org/ebooks/28841', 'en', 725), +(23823, 'Hester: A Story of Contemporary Life, Volume 2 (of 3)', 'Oliphant, Mrs. (Margaret)', '2015-02-08', 23, 'https://www.gutenberg.org/ebooks/48198', 'en', 95), +(23824, 'Der jüngste Tag: Ein groteskes Spiel', 'Matthias, Leo', '2013-08-27', 23, 'https://www.gutenberg.org/ebooks/43570', 'de', 3978), +(23825, 'The Papers and Writings of Abraham Lincoln — Volume 5: 1858-1862', 'Lincoln, Abraham', '2004-09-30', 33, 'https://www.gutenberg.org/ebooks/2657', 'en', 155), +(23826, 'Westward with the Prince of Wales', 'Newton, W. Douglas (Wilfrid Douglas)', '2009-09-25', 12, 'https://www.gutenberg.org/ebooks/30082', 'en', 2655), +(23827, 'Entretiens / Interviews / Entrevistas', 'Lebert, Marie', '2008-10-26', 65, 'https://www.gutenberg.org/ebooks/27035', 'fr', 2599), +(23828, 'Act, Declaration, & Testimony for the Whole of our Covenanted Reformation, as Attained to, and Established in Britain and Ireland; Particularly Betwixt the Years 1638 and 1649, Inclusive', 'Reformed Presbytery of North America', '2004-08-17', 22, 'https://www.gutenberg.org/ebooks/13200', 'en', 10128), +(23829, 'The Theory and Practice of Archery', 'Butt, W.', '2012-12-17', 31, 'https://www.gutenberg.org/ebooks/41643', 'en', 8616), +(23830, 'Wilson\'s Tales of the Borders and of Scotland, Volume 18', NULL, '2012-05-22', 8, 'https://www.gutenberg.org/ebooks/39759', 'en', 3672), +(23831, 'A Dominie in Doubt', 'Neill, Alexander Sutherland', '2008-05-02', 10, 'https://www.gutenberg.org/ebooks/25306', 'en', 10129), +(23832, 'Punch, or the London Charivari, Volume 156, Jan. 8, 1919', 'Various', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11133', 'en', 134), +(23833, 'The Quakers, Past and Present', 'Richardson, Dorothy M. (Dorothy Miller)', '2018-08-19', 24, 'https://www.gutenberg.org/ebooks/57726', 'en', 4759), +(23834, 'The Third Class at Miss Kaye\'s: A School Story', 'Brazil, Angela', '2010-07-26', 40, 'https://www.gutenberg.org/ebooks/33263', 'en', 1655), +(23835, 'Life of Edward the Black Prince', 'Creighton, Louise', '2012-09-18', 12, 'https://www.gutenberg.org/ebooks/40791', 'en', 10130), +(23836, 'The Brownie Scouts at Windmill Farm', 'Wirt, Mildred A. (Mildred Augustine)', '2016-06-07', 10, 'https://www.gutenberg.org/ebooks/52254', 'en', 527), +(23837, 'Les aventures de M. Colin-Tampon', 'Girardin, Jules', '2005-04-09', 8, 'https://www.gutenberg.org/ebooks/15593', 'fr', 168), +(23838, 'Hookers', 'Mann, Richard F.', '2011-07-12', 25, 'https://www.gutenberg.org/ebooks/36711', 'en', 10131), +(23839, 'State of the Union Addresses', 'Jackson, Andrew', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/5016', 'en', 1276), +(23840, 'Prehistoric Man', 'Duckworth, W. L. H. (Wynfrid Laurence Henry)', '2013-12-01', 24, 'https://www.gutenberg.org/ebooks/44331', 'en', 1381), +(23841, 'Wagner', 'Runciman, John F.', '2004-12-24', 13, 'https://www.gutenberg.org/ebooks/14441', 'en', 1464), +(23842, 'The Flying Girl', 'Baum, L. Frank (Lyman Frank)', '2016-10-28', 100, 'https://www.gutenberg.org/ebooks/53386', 'en', 4484), +(23843, 'The Triumphs of Eugene Valmont', 'Barr, Robert', '2007-02-03', 4, 'https://www.gutenberg.org/ebooks/20674', 'en', 3511), +(23844, 'The British Woodlice\r\nBeing a Monograph of the Terrestrial Isopod Crustacea Occurring in the British Islands', 'Sillem, Charles', '2013-10-10', 6, 'https://www.gutenberg.org/ebooks/43928', 'en', 10132), +(23845, 'Twenty-Five Cent Dinners for Families of Six', 'Corson, Juliet', '2009-03-27', 48, 'https://www.gutenberg.org/ebooks/28419', 'en', 103), +(23846, 'Forty-Eighth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1930-1931, Government Printing Office, Washington, 1933.', NULL, '2015-11-20', 10, 'https://www.gutenberg.org/ebooks/50503', 'en', 198), +(23847, 'Whispering Wires', 'Leverage, Henry', '2010-10-08', 18, 'https://www.gutenberg.org/ebooks/34046', 'en', 128), +(23848, 'People of Africa', 'How, Edith A.', '2004-10-01', 46, 'https://www.gutenberg.org/ebooks/6693', 'en', 10133), +(23849, 'The Niagara River', 'Hulbert, Archer Butler', '2011-02-07', 17, 'https://www.gutenberg.org/ebooks/35194', 'en', 10134), +(23850, 'The Parisians — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 21, 'https://www.gutenberg.org/ebooks/7741', 'en', 1165), +(23851, 'Arrigo il savio', 'Barrili, Anton Giulio', '2014-08-01', 10, 'https://www.gutenberg.org/ebooks/46466', 'it', 860), +(23852, 'Outdoor Sports and Games', 'Miller, Claude Harris', '2005-07-16', 31, 'https://www.gutenberg.org/ebooks/16316', 'en', 1560), +(23853, 'Zum wilden Mann', 'Raabe, Wilhelm', '2007-07-23', 25, 'https://www.gutenberg.org/ebooks/22123', 'de', 906), +(23854, 'The Gold Kloof', 'Bryden, H. A. (Henry Anderson)', '2013-07-06', 10, 'https://www.gutenberg.org/ebooks/43114', 'en', 10135), +(23855, 'A Damsel in Distress', 'Wodehouse, P. G. (Pelham Grenville)', '2000-06-01', 280, 'https://www.gutenberg.org/ebooks/2233', 'en', 637), +(23856, 'Robert Burns. Vol. 2, Les Oeuvres', 'Angellier, Auguste', '2008-12-08', 18, 'https://www.gutenberg.org/ebooks/27451', 'fr', 5193), +(23857, 'Selections from the Writings of Lord Dunsany', 'Dunsany, Lord', '2004-10-07', 78, 'https://www.gutenberg.org/ebooks/13664', 'en', 2203), +(23858, 'Hesiod, the Homeric Hymns, and Homerica', 'Hesiod', '2008-07-05', 441, 'https://www.gutenberg.org/ebooks/348', 'en', 10136), +(23859, 'Captivity of the Oatman Girls\r\nBeing an Interesting Narrative of Life Among the Apache and Mohave Indians', 'Stratton, R. B. (Royal Byron)', '2017-07-08', 37, 'https://www.gutenberg.org/ebooks/55071', 'en', 10137), +(23860, 'The Fortunes and Misfortunes of the Famous Moll Flanders', 'Defoe, Daniel', '2008-09-01', 14, 'https://www.gutenberg.org/ebooks/26583', 'en', 1079), +(23861, 'The Doré Bible Gallery, Volume 9', NULL, '2004-07-28', 12, 'https://www.gutenberg.org/ebooks/8709', 'en', 9674), +(23862, 'Fifty-Two Sunday Dinners: A Book of Recipes', 'Hiller, Elizabeth O.', '2010-03-07', 170, 'https://www.gutenberg.org/ebooks/31534', 'en', 103), +(23863, 'Una Donna', 'Aleramo, Sibilla', '2014-12-26', 167, 'https://www.gutenberg.org/ebooks/47786', 'it', 16), +(23864, 'Liberdade de Imprensa', 'Magalhães, José Maria Barbosa de', '2010-11-11', 5, 'https://www.gutenberg.org/ebooks/34274', 'pt', 10138), +(23865, 'Lady Susan', 'Austen, Jane', '1997-06-01', 812, 'https://www.gutenberg.org/ebooks/946', 'en', 258), +(23866, 'The Isles of Sunset', 'Benson, Arthur Christopher', '2006-07-21', 11, 'https://www.gutenberg.org/ebooks/18882', 'en', 179), +(23867, 'The Boys\' Nelson', 'Wheeler, Harold', '2015-12-20', 7, 'https://www.gutenberg.org/ebooks/50731', 'en', 10139), +(23868, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. XVI., December, 1880.', 'Various', '2005-06-24', 49, 'https://www.gutenberg.org/ebooks/16124', 'en', 162), +(23869, 'Followers of the Trail', 'Meyer, Zoe', '2007-08-13', 12, 'https://www.gutenberg.org/ebooks/22311', 'en', 1423), +(23870, 'Summa Theologica, Part III (Tertia Pars)\nFrom the Complete American Edition', 'Thomas, Aquinas, Saint', '2006-11-28', 126, 'https://www.gutenberg.org/ebooks/19950', 'en', 2182), +(23871, 'Widger\'s Quotes and Images from Fromont and Risler by Alphonse Daudet\r\nThe French Immortals: Quotes and Images', 'Daudet, Alphonse', '2009-07-13', 7, 'https://www.gutenberg.org/ebooks/7573', 'en', 2391), +(23872, 'On an Irish Jaunting-Car Through Donegal and Connemara', 'Bayne, Samuel G. (Samuel Gamble)', '2014-08-22', 11, 'https://www.gutenberg.org/ebooks/46654', 'en', 117), +(23873, 'Original sonnets on various subjects; and odes paraphrased from Horace', 'Seward, Anna', '2008-12-30', 22, 'https://www.gutenberg.org/ebooks/27663', 'en', 10140), +(23874, 'Schilderungen des Treibens im Leben und Handel in den Vereinigten Staaten und Havana.\nGezeichnet auf Reisen in den Jahren 1838 und 1839', 'Ries, Julius', '2017-03-19', 7, 'https://www.gutenberg.org/ebooks/54391', 'de', 7432), +(23875, 'Les deux nigauds', 'Ségur, Sophie, comtesse de', '2004-09-14', 16, 'https://www.gutenberg.org/ebooks/13456', 'fr', 637), +(23876, 'Joe Miller\'s Jests, with Copious Additions', NULL, '2013-07-27', 21, 'https://www.gutenberg.org/ebooks/43326', 'en', 564), +(23877, 'Hills of the Shatemuc', 'Warner, Susan', '2005-10-23', 22, 'https://www.gutenberg.org/ebooks/16918', 'en', 31), +(23878, 'Milton: Minor Poems', 'Milton, John', '2010-03-20', 76, 'https://www.gutenberg.org/ebooks/31706', 'en', 466), +(23879, 'Phebe, Her Profession\nA Sequel to Teddy: Her Book', 'Ray, Anna Chapin', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/12584', 'en', 62), +(23880, 'The Puzzle in the Pond\r\nA Judy Bolton Mystery', 'Sutton, Margaret', '2017-08-02', 28, 'https://www.gutenberg.org/ebooks/55243', 'en', 751), +(23881, '九尾狐', 'Pinghuazhuren', '2008-04-22', 33, 'https://www.gutenberg.org/ebooks/25134', 'zh', 3187), +(23882, 'Les gens de bureau', 'Gaboriau, Emile', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11301', 'fr', 687), +(23883, 'Callias: A Tale of the Fall of Athens', 'Church, Alfred John', '2012-11-24', 13, 'https://www.gutenberg.org/ebooks/41471', 'en', 10141), +(23884, 'Folk-lore of Shakespeare', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2010-04-29', 24, 'https://www.gutenberg.org/ebooks/32183', 'en', 10142), +(23885, 'The Egoist: A Comedy in Narrative', 'Meredith, George', '1999-03-01', 78, 'https://www.gutenberg.org/ebooks/1684', 'en', 10143), +(23886, 'The Bride of the Sun', 'Leroux, Gaston', '2017-01-17', 22, 'https://www.gutenberg.org/ebooks/53988', 'en', 580), +(23887, 'Momotaro; or, Little Peachling\r\nJapanese Fairy Tale Series No. 1', 'Anonymous', '2010-07-02', 43, 'https://www.gutenberg.org/ebooks/33051', 'en', 8436), +(23888, 'Index for Works of Bill Nye\nHyperlinks to all Chapters of all Individual Ebooks', 'Nye, Bill', '2018-07-15', 10, 'https://www.gutenberg.org/ebooks/57514', 'en', 198), +(23889, 'Washington Irving', 'Boynton, Henry Walcott', '2008-06-26', 15, 'https://www.gutenberg.org/ebooks/25908', 'en', 10144), +(23890, 'The Last Straw', 'Titus, Harold', '2011-06-26', 19, 'https://www.gutenberg.org/ebooks/36523', 'en', 315), +(23891, 'Fred Fenton on the Crew; Or, The Young Oarsmen of Riverport School', 'Chapman, Allen', '2007-05-24', 29, 'https://www.gutenberg.org/ebooks/21594', 'en', 1779), +(23892, 'Verses popular and humorous', 'Lawson, Henry', '2016-05-14', 25, 'https://www.gutenberg.org/ebooks/52066', 'en', 2474), +(23893, 'The Copyright Question: A Letter to the Toronto Board of Trade', 'Morang, George N. (George Nathaniel)', '2005-01-12', 10, 'https://www.gutenberg.org/ebooks/14673', 'en', 2983), +(23894, '\"America for Americans!\"\r\nThe Typical American, Thanksgiving Sermon', 'Newman, John Philip', '2007-01-25', 12, 'https://www.gutenberg.org/ebooks/20446', 'en', 10145), +(23895, 'The Satyricon — Volume 07: Marchena Notes', 'Petronius Arbiter', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/5224', 'en', 10146), +(23896, 'The Expositor\'s Bible: The Book of Daniel', 'Farrar, F. W. (Frederic William)', '2013-11-04', 26, 'https://www.gutenberg.org/ebooks/44103', 'en', 10147), +(23897, 'Bygone Cumberland and Westmorland', 'Scott, Daniel', '2011-10-31', 22, 'https://www.gutenberg.org/ebooks/37891', 'en', 10148), +(23898, 'Cigar-Box Dioramas: A \"How-to-do-it\" Handbook', 'Neal, Arminta', '2018-05-13', 15, 'https://www.gutenberg.org/ebooks/57148', 'en', 10149), +(23899, 'Traditions of the North American Indians, Vol. 1', 'Jones, James Athearn', '2007-03-15', 40, 'https://www.gutenberg.org/ebooks/20826', 'en', 1749), +(23900, 'Shrewsbury: A Romance', 'Weyman, Stanley John', '2012-03-14', 26, 'https://www.gutenberg.org/ebooks/39137', 'en', 10150), +(23901, 'Domesticated Animals\nTheir Relation to Man and to his Advancement in Civilization', 'Shaler, Nathaniel Southgate', '2008-05-23', 33, 'https://www.gutenberg.org/ebooks/25568', 'en', 6662), +(23902, 'Twenty Quick Soups', 'Rorer, S. T.', '2011-08-02', 22, 'https://www.gutenberg.org/ebooks/36943', 'en', 10151), +(23903, 'The American Missionary — Volume 36, No. 6, June, 1882', 'Various', '2018-09-25', 1, 'https://www.gutenberg.org/ebooks/57974', 'en', 562), +(23904, 'Heroic Romances of Ireland, Translated into English Prose and Verse — Volume 1', 'Leahy, Arthur Herbert', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/5678', 'en', 10152), +(23905, 'Words; Their Use and Abuse', 'Mathews, William', '2018-10-14', 26, 'https://www.gutenberg.org/ebooks/58100', 'en', 10153), +(23906, 'Life of Thomas à Becket', 'Milman, Henry Hart', '2013-01-10', 16, 'https://www.gutenberg.org/ebooks/41811', 'en', 10154), +(23907, 'A Voice from Jerusalem\r\nOr, A Sketch of the Travels and Ministry of Elder Orson Hyde', 'Hyde, Orson', '2014-07-07', 20, 'https://www.gutenberg.org/ebooks/46208', 'en', 2204), +(23908, 'The Kipling Reader\nSelections from the Books of Rudyard Kipling', 'Kipling, Rudyard', '2005-08-21', 138, 'https://www.gutenberg.org/ebooks/16578', 'en', 54), +(23909, 'My First Battle: A Sergeant\'s Story', 'Mickiewicz, Adam', '2009-03-07', 16, 'https://www.gutenberg.org/ebooks/28277', 'en', 10155), +(23910, 'Songs and Other Verse', 'Field, Eugene', '2006-02-01', 23, 'https://www.gutenberg.org/ebooks/9889', 'en', 8), +(23911, 'Wide Courses', 'Connolly, James B. (James Brendan)', '2004-10-22', 16, 'https://www.gutenberg.org/ebooks/13836', 'en', 324), +(23912, 'I, Thou, and the Other One: A Love Story', 'Barr, Amelia E.', '2010-12-12', 14, 'https://www.gutenberg.org/ebooks/34628', 'en', 48), +(23913, 'Strix: Die Geschichte eines Uhus', 'Fleuron, Svend', '2006-10-13', 29, 'https://www.gutenberg.org/ebooks/19530', 'de', 1063), +(23914, 'American Historical and Literary Curiosities, Part 13.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 10, 'https://www.gutenberg.org/ebooks/7913', 'en', 1587), +(23915, 'Gargantua and Pantagruel, Illustrated, Book 2', 'Rabelais, François', '2004-08-08', 51, 'https://www.gutenberg.org/ebooks/8167', 'en', 9970), +(23916, 'Worth While Stories for Every Day', NULL, '2015-06-20', 5, 'https://www.gutenberg.org/ebooks/49240', 'en', 388), +(23917, 'Chats on Old Sheffield Plate', 'Hayden, Arthur', '2015-03-01', 6, 'https://www.gutenberg.org/ebooks/48392', 'en', 10156), +(23918, 'Sight Gag', 'Janifer, Laurence M.', '2009-10-19', 34, 'https://www.gutenberg.org/ebooks/30288', 'en', 179), +(23919, 'Heart of Darkness', 'Conrad, Joseph', '2006-01-09', 1323, 'https://www.gutenberg.org/ebooks/526', 'en', 2126), +(23920, 'Noorsche mythen uit de Edda\'s en de sagen', 'Guerber, H. A. (Hélène Adeline)', '2010-04-11', 33, 'https://www.gutenberg.org/ebooks/31954', 'nl', 6418), +(23921, 'A Short History of Spain', 'Parmele, Mary Platt', '2009-06-21', 29, 'https://www.gutenberg.org/ebooks/29197', 'en', 6250), +(23922, 'Les deux paradis d\'Abd-Er-Rhaman', 'Tellier, Jules', '2009-01-18', 4, 'https://www.gutenberg.org/ebooks/27831', 'fr', 298), +(23923, 'Walls of Acid', 'Hasse, Henry', '2009-02-10', 28, 'https://www.gutenberg.org/ebooks/28045', 'en', 26), +(23924, 'Bella Donna: A Novel', 'Hichens, Robert', '2006-02-07', 28, 'https://www.gutenberg.org/ebooks/17698', 'en', 61), +(23925, 'Vampyrismus', 'Swieten, Gerard, Freiherr van', '2010-01-07', 41, 'https://www.gutenberg.org/ebooks/30886', 'de', 2683), +(23926, 'The Bible, Douay-Rheims, Book 55: Galatians\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8355', 'en', 7339), +(23927, 'Astounding Stories, July, 1931', 'Various', '2010-02-03', 141, 'https://www.gutenberg.org/ebooks/31168', 'en', 2527), +(23928, 'The Yser and the Belgian Coast: An Illustrated History and Guide', 'Pneu Michelin (Firm)', '2015-05-29', 16, 'https://www.gutenberg.org/ebooks/49072', 'en', 4804), +(23929, 'The Rector of St. Mark\'s', 'Holmes, Mary Jane', '2006-11-02', 15, 'https://www.gutenberg.org/ebooks/19702', 'en', 55), +(23930, 'Punch, Or the London Charivari Volume 107, November 17, 1894', 'Various', '2014-09-08', 7, 'https://www.gutenberg.org/ebooks/46806', 'en', 134), +(23931, 'The Bobbsey Twins in the Country', 'Hope, Laura Lee', '1996-11-01', 81, 'https://www.gutenberg.org/ebooks/714', 'en', 1123), +(23932, 'Six Women', 'Cross, Victoria', '2004-08-21', 10, 'https://www.gutenberg.org/ebooks/13238', 'en', 61), +(23933, 'The Illustrated Key to the Tarot: The Veil of Divination', 'De Laurence, L. W. (Lauron William)', '2013-08-24', 213, 'https://www.gutenberg.org/ebooks/43548', 'en', 10157), +(23934, 'A Popular History of France from the Earliest Times\r\nA Linked Index to the Project Gutenberg Editions', 'Guizot, François', '2009-05-19', 14, 'https://www.gutenberg.org/ebooks/28879', 'en', 624), +(23935, 'The Glimpses of the Moon', 'Wharton, Edith', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9287', 'en', 10158), +(23936, 'Future Development of Japanese Dwelling Houses', 'Shiga, Shigetsura', '2016-01-18', 17, 'https://www.gutenberg.org/ebooks/50963', 'en', 10159), +(23937, 'A Spray of Kentucky Pine\r\nPlaced at the Feet of the Dead Poet James Whitcomb Riley', 'Sherley, Douglass', '2005-01-28', 8, 'https://www.gutenberg.org/ebooks/14821', 'en', 10160), +(23938, 'The Making of a Trade School', 'Woolman, Mary Schenck', '2008-02-26', 12, 'https://www.gutenberg.org/ebooks/24688', 'en', 5746), +(23939, 'The Memoirs of Jacques Casanova de Seingalt, Vol. V (of VI), \"In London and Moscow\"\r\nThe First Complete and Unabridged English Translation, Illustrated with Old Engravings', 'Casanova, Giacomo', '2012-03-29', 9, 'https://www.gutenberg.org/ebooks/39305', 'en', 4391), +(23940, 'Autobiography of Miss Cornelia Knight, lady companion to the Princess Charlotte of Wales, Volume 1 (of 2)\nwith extracts from her journals and anecdote books', 'Knight, Ellis Cornelia', '2018-11-24', 7, 'https://www.gutenberg.org/ebooks/58332', 'en', 10161), +(23941, 'Noli Me Tangere', 'Rizal, José', '2006-12-30', 1032, 'https://www.gutenberg.org/ebooks/20228', 'tl', 98), +(23942, 'The Story of Creation as Told By Theology and By Science', 'Ackland, T. S. (Thomas Suter)', '2003-10-01', 51, 'https://www.gutenberg.org/ebooks/4598', 'en', 9677), +(23943, 'For His Country, and Grandmother and the Crow', 'Saunders, Marshall', '2016-07-20', 12, 'https://www.gutenberg.org/ebooks/52608', 'en', 10162), +(23944, 'Lives of the Most Eminent Painters Sculptors and Architects, Vol. 05 (of 10)\r\nAndrea da Fiesole to Lorenzo Lotto', 'Vasari, Giorgio', '2009-03-27', 65, 'https://www.gutenberg.org/ebooks/28421', 'en', 915), +(23945, 'The Danes in Lancashire and Yorkshire', 'Partington, S. W.', '2013-10-08', 15, 'https://www.gutenberg.org/ebooks/43910', 'en', 10163), +(23946, 'Uit de ontwikkelingsgeschiedenis van het Menschelijk Denken, Deel 1 van 2', 'Casimir, R. (Rommert)', '2017-11-02', 7, 'https://www.gutenberg.org/ebooks/55875', 'nl', 3566), +(23947, 'Of Captain Mission', 'Defoe, Daniel', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7779', 'en', 3828), +(23948, 'Radio Shack TRS-80 Expansion Interface: Operator\'s Manual\nCatalog Numbers: 26-1140, 26-1141, 26-1142', 'Anonymous', '2008-12-09', 32, 'https://www.gutenberg.org/ebooks/27469', 'en', 10164), +(23949, 'The Fortunes and Misfortunes of the Famous Moll Flanders', 'Defoe, Daniel', '1995-12-01', 527, 'https://www.gutenberg.org/ebooks/370', 'en', 4850), +(23950, 'Greek Sculpture\r\nA collection of sixteen pictures of Greek marbles with introduction and interpretation', 'Hurll, Estelle M. (Estelle May)', '2011-01-03', 81, 'https://www.gutenberg.org/ebooks/34842', 'en', 10165), +(23951, 'Five Sermons', 'Whipple, Henry Benjamin', '2005-08-01', 9, 'https://www.gutenberg.org/ebooks/8731', 'en', 2248), +(23952, 'The Airship Boys\' Ocean Flyer; Or, New York to London in Twelve Hours', 'Sayler, H. L. (Harry Lincoln)', '2015-07-11', 9, 'https://www.gutenberg.org/ebooks/49416', 'en', 557), +(23953, 'The Atlantic Monthly, Volume 18, No. 105, July 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-10-08', 9, 'https://www.gutenberg.org/ebooks/22927', 'en', 1227), +(23954, 'The Poems of Madison Cawein, Volume 1 (of 5)\r\nLyrics and old world idylls', 'Cawein, Madison Julius', '2017-07-05', 10, 'https://www.gutenberg.org/ebooks/55049', 'en', 178), +(23955, 'The Story of Lewis Carroll\nTold for Young People by the Real Alice in Wonderland', 'Bowman, Isa', '2011-04-29', 40, 'https://www.gutenberg.org/ebooks/35990', 'en', 10166), +(23956, 'Punky Dunk and the Spotted Pup', 'Anonymous', '2006-09-24', 11, 'https://www.gutenberg.org/ebooks/19366', 'en', 859), +(23957, 'Favorite Fairy Tales: The Childhood Choice of Representative Men and Women', 'Various', '2010-05-15', 49, 'https://www.gutenberg.org/ebooks/32389', 'en', 1007), +(23958, 'The Knack of Managing', 'Urquhart, Lewis K.', '2012-05-22', 27, 'https://www.gutenberg.org/ebooks/39761', 'en', 4870), +(23959, 'Following the Equator: A Journey Around the World. Part 5', 'Twain, Mark', '2004-06-24', 4, 'https://www.gutenberg.org/ebooks/5812', 'en', 3614), +(23960, 'The Symbolism of Freemasonry\r\nIllustrating and Explaining Its Science and Philosophy, Its Legends, Myths and Symbols', 'Mackey, Albert Gallatin', '2004-04-01', 159, 'https://www.gutenberg.org/ebooks/11937', 'en', 10167), +(23961, 'Mes souvenirs', 'Massenet, Jules', '2011-07-14', 14, 'https://www.gutenberg.org/ebooks/36729', 'fr', 10168), +(23962, 'Life and Adventure in the South Pacific', 'Jones, John D.', '2019-06-06', 57, 'https://www.gutenberg.org/ebooks/59684', 'en', 3259), +(23963, 'Narrative of Services in the Liberation of Chili, Peru and Brazil,\nfrom Spanish and Portuguese Domination, Volume 2', 'Dundonald, Thomas Cochrane, Earl of', '2004-12-27', 7, 'https://www.gutenberg.org/ebooks/14479', 'en', 10169), +(23964, 'A Manual of Pyrotechny; or, A Familiar System of Recreative Fire-works', 'Mortimer, G. W.', '2019-01-22', 7, 'https://www.gutenberg.org/ebooks/58756', 'en', 5705), +(23965, 'Escuela de Humorismo: Novelas.—Cuentos.', 'Díaz-Caneja, Guillermo', '2013-11-30', 23, 'https://www.gutenberg.org/ebooks/44309', 'es', 10170), +(23966, 'Runot', 'Siljo, Juhani', '2012-11-23', 7, 'https://www.gutenberg.org/ebooks/41449', 'fi', 1171), +(23967, 'Einiges aus der Geschichte der Astronomie im Alterthum\r\nRede zur Feier des Geburtstags Sr. Maj. des Deutschen Kaisers Königs von Preussen Wilhelm I. gehalten an der Christian-Albrechts', 'Blass, Friedrich', '2012-04-28', 29, 'https://www.gutenberg.org/ebooks/39553', 'de', 1590), +(23968, 'Biographical Anecdotes of William Hogarth, With a Catalogue of His Works', 'Nichols, John', '2016-08-21', 17, 'https://www.gutenberg.org/ebooks/52862', 'en', 2557), +(23969, 'Aesop\'s Fables; a new translation', 'Aesop', '2004-02-01', 705, 'https://www.gutenberg.org/ebooks/11339', 'en', 7140), +(23970, 'An Interesting Account of Several Remarkable Visions\nAnd of the Late Discovery of Ancient American Records', 'Pratt, Orson', '2014-02-14', 27, 'https://www.gutenberg.org/ebooks/44907', 'en', 7710), +(23971, 'L\'Illustration, No. 3229, 14 Janvier 1905', 'Various', '2010-07-03', 8, 'https://www.gutenberg.org/ebooks/33069', 'fr', 150), +(23972, 'Scientific American, Vol. XXXVII.—No. 2. [New Series.], July 14, 1877\r\nA Weekly Journal of Practical Information, Art, Science, Mechanics, Chemistry, and Manufactures', 'Various', '2012-01-03', 18, 'https://www.gutenberg.org/ebooks/38481', 'en', 352), +(23973, 'Walter Harland\r\nOr, Memories of the Past', 'Caswell, Harriet S.', '2005-05-08', 5, 'https://www.gutenberg.org/ebooks/15799', 'en', 61), +(23974, 'The Student\'s Life of Washington; Condensed from the Larger Work of Washington Irving\nFor Young Persons and for the Use of Schools', 'Irving, Washington', '2010-06-27', 30, 'https://www.gutenberg.org/ebooks/32987', 'en', 7083), +(23975, 'The Philippine Islands, 1493-1898 — Volume 28 of 55\r\n1637-38\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2008-06-29', 45, 'https://www.gutenberg.org/ebooks/25930', 'en', 1334), +(23976, 'Hirvenhovin Elisa', 'Beskow, Elisabeth Maria', '2018-12-29', 3, 'https://www.gutenberg.org/ebooks/58564', 'fi', 2168), +(23977, 'Provocations', 'Bristowe, Sibyl', '2010-10-12', 14, 'https://www.gutenberg.org/ebooks/33855', 'en', 8), +(23978, 'Pioneers of Science', 'Lodge, Oliver, Sir', '2009-04-26', 56, 'https://www.gutenberg.org/ebooks/28613', 'en', 10171), +(23979, 'With Lee in Virginia: A Story of the American Civil War', 'Henty, G. A. (George Alfred)', '2001-09-01', 103, 'https://www.gutenberg.org/ebooks/2805', 'en', 10172), +(23980, 'Fromont nuorempi ja Risler vanhempi: Parisin tapoja', 'Daudet, Alphonse', '2015-12-17', 4, 'https://www.gutenberg.org/ebooks/50709', 'fi', 560), +(23981, 'Die Verschwörung des Fiesco zu Genua: Ein republikanisches Trauerspiel', 'Schiller, Friedrich', '2004-09-01', 34, 'https://www.gutenberg.org/ebooks/6499', 'de', 5127), +(23982, 'A Busy Year at the Old Squire\'s', 'Stephens, C. A. (Charles Asbury)', '2006-11-29', 22, 'https://www.gutenberg.org/ebooks/19968', 'en', 10173), +(23983, 'A Daughter of the Middle Border', 'Garland, Hamlin', '2007-08-15', 35, 'https://www.gutenberg.org/ebooks/22329', 'en', 131), +(23984, 'Evangeline: A Tale of Acadie', 'Longfellow, Henry Wadsworth', '2000-01-01', 186, 'https://www.gutenberg.org/ebooks/2039', 'en', 178), +(23985, 'The $30,000 Bequest, and Other Stories', 'Twain, Mark', '2004-09-14', 464, 'https://www.gutenberg.org/ebooks/142', 'en', 2116), +(23986, 'A Dozen Ways Of Love', 'Dougall, L. (Lily)', '2006-03-30', 23, 'https://www.gutenberg.org/ebooks/18086', 'en', 179), +(23987, 'With Lee in Virginia: A Story of the American Civil War', 'Henty, G. A. (George Alfred)', '2006-09-01', 34, 'https://www.gutenberg.org/ebooks/19154', 'en', 403), +(23988, 'Emelian the Fool: a tale', NULL, '2008-10-06', 10, 'https://www.gutenberg.org/ebooks/26789', 'en', 10174), +(23989, 'Among My Books. First Series', 'Lowell, James Russell', '2005-07-01', 24, 'https://www.gutenberg.org/ebooks/8503', 'en', 608), +(23990, 'Venere ed Imene al tribunale della penitenza: manuale dei confessori', 'Bouvier, J. B. (Jean Baptiste)', '2005-10-23', 38, 'https://www.gutenberg.org/ebooks/16920', 'it', 5443), +(23991, 'Ballad of the Lost Hare', 'Sidney, Margaret', '2015-08-05', 15, 'https://www.gutenberg.org/ebooks/49624', 'en', 861), +(23992, 'Country Rambles, and Manchester Walks and Wild Flowers\r\nBeing Rural Wanderings in Cheshire, Lancashire, Derbyshire, and Yorkshire', 'Grindon, Leo H. (Leo Hartley)', '2014-12-07', 27, 'https://www.gutenberg.org/ebooks/47578', 'en', 776), +(23993, 'The Minority of Henry the Third', 'Norgate, Kate', '2017-06-21', 6, 'https://www.gutenberg.org/ebooks/54953', 'en', 10175), +(23994, 'The Tales of Mother Goose\nAs First Collected by Charles Perrault in 1696', 'Perrault, Charles', '2005-12-03', 289, 'https://www.gutenberg.org/ebooks/17208', 'en', 1007), +(23995, 'Reisbrieven uit Afrika en Azië\nbenevens eenige brieven uit Zweden en Noorwegen', 'Jacobs, Aletta H. (Aletta Henriette)', '2009-07-25', 22, 'https://www.gutenberg.org/ebooks/29507', 'nl', 885), +(23996, 'Les Peintres Provençaux\nLoubon et son temps - Aiguier - Ricard - Monticelli - Paul Guigou', 'Gouirand, André', '2013-05-29', 11, 'https://www.gutenberg.org/ebooks/42836', 'fr', 10176), +(23997, 'Sämmtliche Werke 6: Arabesken, Prosaschriften, Rom', 'Gogol, Nikolai Vasilevich', '2017-11-03', 14, 'https://www.gutenberg.org/ebooks/55881', 'de', 10177), +(23998, 'Verdi : The Story of the Little Boy who Loved the Hand Organ', 'Tapper, Thomas', '2011-02-04', 43, 'https://www.gutenberg.org/ebooks/35158', 'en', 10178), +(23999, 'The Lost Prince', 'Burnett, Frances Hodgson', '1996-01-01', 201, 'https://www.gutenberg.org/ebooks/384', 'en', 905), +(24000, 'Roumania Past and Present', 'Samuelson, James', '2006-04-24', 26, 'https://www.gutenberg.org/ebooks/18240', 'en', 10179); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(24001, 'Giardino di Ricreatione', 'Florio, John', '2015-03-19', 23, 'https://www.gutenberg.org/ebooks/48530', 'it', 10180), +(24002, 'Relation originale du voyage de Jacques Cartier au Canada en 1534', 'Cartier, Jacques', '2007-12-10', 22, 'https://www.gutenberg.org/ebooks/23801', 'fr', 278), +(24003, 'Echoes of the War', 'Barrie, J. M. (James Matthew)', '2006-01-01', 60, 'https://www.gutenberg.org/ebooks/9617', 'en', 612), +(24004, 'The Little Tea Book', NULL, '2006-09-27', 88, 'https://www.gutenberg.org/ebooks/19392', 'en', 2245), +(24005, 'The Go Ahead Boys and the Mysterious Old House', 'Kay, Ross', '2011-04-25', 18, 'https://www.gutenberg.org/ebooks/35964', 'en', 10181), +(24006, 'The Natural History of Wiltshire', 'Aubrey, John', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/4934', 'en', 10182), +(24007, 'Hand Grenades: A handbook on rifle and hand grenades', NULL, '2018-02-25', 15, 'https://www.gutenberg.org/ebooks/56638', 'en', 10183), +(24008, 'In the Guardianship of God', 'Steel, Flora Annie Webster', '2012-05-25', 13, 'https://www.gutenberg.org/ebooks/39795', 'en', 1228), +(24009, 'The Honour of the Clintons', 'Marshall, Archibald', '2012-01-23', 7, 'https://www.gutenberg.org/ebooks/38647', 'en', 1902), +(24010, 'The Works of Samuel Johnson, LL.D. in Nine Volumes, Volume 08\r\nThe Lives of the Poets, Volume II', 'Johnson, Samuel', '2008-01-08', 41, 'https://www.gutenberg.org/ebooks/24218', 'en', 10184), +(24011, 'Christopher Columbus and the New World of His Discovery — Volume 1', 'Young, Filson', '2004-12-05', 9, 'https://www.gutenberg.org/ebooks/4108', 'en', 2036), +(24012, 'Budge & Toddie; Or, Helen\'s Babies at Play', 'Habberton, John', '2016-06-10', 16, 'https://www.gutenberg.org/ebooks/52298', 'en', 400), +(24013, 'Index of the Project Gutenberg Works of Upton Sinclair', 'Sinclair, Upton', '2019-06-03', 27, 'https://www.gutenberg.org/ebooks/59670', 'en', 198), +(24014, 'De La Salle Fifth Reader', 'Christian Brothers', '2004-01-01', 51, 'https://www.gutenberg.org/ebooks/10811', 'en', 1019), +(24015, 'Life and Travel in India\r\nBeing Recollections of a Journey Before the Days of Railroads', 'Leonowens, Anna Harriette', '2016-08-25', 22, 'https://www.gutenberg.org/ebooks/52896', 'en', 1975), +(24016, 'Buffon\'s Natural History. Volume 08 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-29', 16, 'https://www.gutenberg.org/ebooks/45821', 'en', 871), +(24017, 'The Mayflower Compact', NULL, '1977-12-01', 46, 'https://www.gutenberg.org/ebooks/7', 'en', 10185), +(24018, 'The Poems of Philip Freneau, Poet of the American Revolution. Volume 1 (of 3)', 'Freneau, Philip Morin', '2012-01-02', 13, 'https://www.gutenberg.org/ebooks/38475', 'en', 178), +(24019, 'Erotopægnion, sive Priapeia Veterum et Recentiorum', NULL, '2017-01-11', 10, 'https://www.gutenberg.org/ebooks/53944', 'la', 10186), +(24020, 'The Children of the New Forest', 'Marryat, Frederick', '2007-05-21', 86, 'https://www.gutenberg.org/ebooks/21558', 'en', 10187), +(24021, 'L\'Illustration, No. 3740, 7 Novembre 1914', 'Various', '2019-05-05', 20, 'https://www.gutenberg.org/ebooks/59442', 'fr', 335), +(24022, 'Elements of Plane Trigonometry\r\nFor the use of the junior class of mathematics in the University of Glasgow', 'Blackburn, Hugh', '2010-06-25', 100, 'https://www.gutenberg.org/ebooks/32973', 'en', 10188), +(24023, 'Life at Puget Sound: With Sketches of Travel in Washington Territory, British Columbia, Oregon and California', 'Leighton, Caroline C.', '2008-03-13', 16, 'https://www.gutenberg.org/ebooks/24816', 'en', 1623), +(24024, 'Stories and Sketches by our best authors', 'Various', '2016-09-30', 18, 'https://www.gutenberg.org/ebooks/53178', 'en', 112), +(24025, 'La Réunion, a French Settlement in Texas', 'Hammond, Margaret F.', '2019-01-01', 5, 'https://www.gutenberg.org/ebooks/58590', 'en', 10189), +(24026, 'Some Noble Sisters', 'Lee, Edmund', '2014-08-26', 15, 'https://www.gutenberg.org/ebooks/46698', 'en', 4289), +(24027, 'Monsieur, Madame, and Bébé — Volume 01', 'Droz, Gustave', '2003-04-01', 11, 'https://www.gutenberg.org/ebooks/3923', 'en', 58), +(24028, 'Martians Never Die', 'Daniel, Lucius', '2009-08-19', 48, 'https://www.gutenberg.org/ebooks/29735', 'en', 26), +(24029, 'English Grammar and Composition for Public Schools', 'Armstrong, G. H. (George Henry)', '2015-04-14', 86, 'https://www.gutenberg.org/ebooks/48702', 'en', 1979), +(24030, 'Foes in Ambush', 'King, Charles', '2006-02-20', 23, 'https://www.gutenberg.org/ebooks/17806', 'en', 61), +(24031, 'Wings of the Wind', 'Harris, Credo Fitch', '2009-12-06', 25, 'https://www.gutenberg.org/ebooks/30618', 'en', 61), +(24032, 'The Mayor of Casterbridge', 'Hardy, Thomas', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9425', 'en', 10190), +(24033, 'Mrs. Ames', 'Benson, E. F. (Edward Frederic)', '2019-08-25', 0, 'https://www.gutenberg.org/ebooks/60168', 'en', NULL), +(24034, 'Dierenleven in de wildernis\r\nSchetsen uit het leven der dieren hun natuurlijke aanleg en wat zij leeren moeten', 'Long, William J. (William Joseph)', '2006-03-29', 18, 'https://www.gutenberg.org/ebooks/18072', 'nl', 2560), +(24035, 'The Secret Memoirs of the Courts of Europe: William II, Germany; Francis Joseph, Austria-Hungary, Volume I. (of 2)', 'Fontenoy, marquise de', '2004-06-01', 26, 'https://www.gutenberg.org/ebooks/12548', 'en', 10191), +(24036, 'The Articles of Faith\r\nA Series of Lectures on the Principal Doctrines of the Church of Jesus Christ of Latter-Day Saints', 'Talmage, James E. (James Edward)', '2013-03-01', 211, 'https://www.gutenberg.org/ebooks/42238', 'en', 377), +(24037, 'Studies in Mediæval Life and Literature', 'McLaughlin, Edward T. (Edward Tompkins)', '2011-10-27', 21, 'https://www.gutenberg.org/ebooks/37865', 'en', 10192), +(24038, 'The Epic of Hades, in Three Books', 'Morris, Lewis', '2011-11-14', 29, 'https://www.gutenberg.org/ebooks/38011', 'en', 10193), +(24039, 'The Principles of Breeding\r\nor, Glimpses at the Physiological Laws involved in the Reproduction and Improvement of Domestic Animals', 'Goodale, S. L. (Stephen Lincoln)', '2007-06-22', 24, 'https://www.gutenberg.org/ebooks/21900', 'en', 9976), +(24040, 'Life of Mary Queen of Scots, Volume 2 (of 2)', 'Bell, Henry Glassford', '2011-08-13', 11, 'https://www.gutenberg.org/ebooks/37059', 'en', 6347), +(24041, 'The Magic and Science of Jewels and Stones', 'Kozminsky, Isidore', '2018-10-04', 50, 'https://www.gutenberg.org/ebooks/57980', 'en', 10194), +(24042, 'A New Sensation', 'Ross, Albert', '2012-10-05', 17, 'https://www.gutenberg.org/ebooks/40937', 'en', 10195), +(24043, 'The Pennsylvania Journal of Prison Discipline and Philanthropy (Vol. VII, No. III, July 1852)', 'Pennsylvania Prison Society', '2019-03-07', 3, 'https://www.gutenberg.org/ebooks/59026', 'en', 2509), +(24044, 'Rabinal-Achi\nvepu Xahoh-tun u bi xahoh rech vae tinamit Rabinal', NULL, '2005-03-10', 13, 'https://www.gutenberg.org/ebooks/15309', 'myn', 10196), +(24045, 'The Story of Joan of Arc the Witch-Saint', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-04-24', 17, 'https://www.gutenberg.org/ebooks/45479', 'en', 3907), +(24046, 'Time and Free Will: An Essay on the Immediate Data of Consciousness', 'Bergson, Henri', '2018-03-27', 138, 'https://www.gutenberg.org/ebooks/56852', 'en', 10197), +(24047, 'Early Britain—Roman Britain', 'Conybeare, John William Edward', '2004-07-14', 30, 'https://www.gutenberg.org/ebooks/12910', 'en', 3100), +(24048, 'Punch or the London Charivari, Vol. 147, December 2, 1914', 'Various', '2009-07-08', 33, 'https://www.gutenberg.org/ebooks/29351', 'en', 134), +(24049, 'Mary Queen of Scots\r\nMakers of History', 'Abbott, Jacob', '2009-03-09', 51, 'https://www.gutenberg.org/ebooks/28283', 'en', 6347), +(24050, 'Our Eternity', 'Maeterlinck, Maurice', '2015-11-06', 22, 'https://www.gutenberg.org/ebooks/50399', 'en', 9971), +(24051, 'The Valley of Vision : A Book of Romance and Some Half-Told Tales', 'Van Dyke, Henry', '2004-07-01', 14, 'https://www.gutenberg.org/ebooks/6009', 'en', 112), +(24052, 'A Text-Book of the History of Architecture\nSeventh Edition, revised', 'Hamlin, A. D. F. (Alfred Dwight Foster)', '2008-08-15', 36, 'https://www.gutenberg.org/ebooks/26319', 'en', 10026), +(24053, 'The Sceptics of the Old Testament: Job - Koheleth - Agur', 'Dillon, Emile Joseph', '2005-05-01', 7, 'https://www.gutenberg.org/ebooks/8193', 'en', 10198), +(24054, 'Chats on Military Curios', 'Johnson, Stanley C. (Stanley Currie)', '2015-02-26', 20, 'https://www.gutenberg.org/ebooks/48366', 'en', 1359), +(24055, 'What Is Man? and Other Essays', 'Twain, Mark', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/9041', 'en', 20), +(24056, 'Zerbin, oder die neuere Philosophie', 'Lenz, Jakob Michael Reinhold', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6835', 'de', 10199), +(24057, 'Histoires incroyables, Tome II', 'Lermina, Jules', '2006-05-18', 9, 'https://www.gutenberg.org/ebooks/18416', 'fr', 61), +(24058, 'Noidan kirot: Kuvaus Lapin rajoilta', 'Kataja, Väinö', '2017-05-17', 13, 'https://www.gutenberg.org/ebooks/54739', 'fi', 175), +(24059, 'The 1990 United States Census', 'United States. Bureau of the Census', '1992-04-01', 35, 'https://www.gutenberg.org/ebooks/29', 'en', 10200), +(24060, 'Ned, Bob and Jerry at Boxwood Hall; Or, The Motor Boys as Freshmen', 'Young, Clarence', '2016-01-30', 11, 'https://www.gutenberg.org/ebooks/51079', 'en', 4887), +(24061, 'The Aural System\r\nBeing the Most Direct, the Straight-Line Method for the Simultaneous Fourfold Mastery of a Foreign Language.', 'Hardy, Charles', '2009-06-19', 14, 'https://www.gutenberg.org/ebooks/29163', 'en', 6261), +(24062, 'Zehru of Xollar', 'Wells, Hal K.', '2008-10-14', 38, 'https://www.gutenberg.org/ebooks/26917', 'en', 26), +(24063, 'Fishy-Winkle', 'Archer, Jean C.', '2007-11-12', 14, 'https://www.gutenberg.org/ebooks/23459', 'en', 859), +(24064, 'Jumalat janoavat: Romaani', 'France, Anatole', '2015-05-15', 7, 'https://www.gutenberg.org/ebooks/48968', 'fi', 248), +(24065, 'A Collection of State-papers, Relative to the First Acknowledgment of the Sovereignty of the United States of America, and the Reception of Their Minister Plenipotentiary, by Their High Mightinesses the States General of the United Netherlands : to Which is Prefixed, the Political Character of John Adams, Ambassador Plenipotentiary from the States of North America, to Their High Mightinesses the States General of the United Provinces of the Netherlands ... Likewise, an Essay on Canon and Feudal Law', NULL, '2010-01-06', 17, 'https://www.gutenberg.org/ebooks/30872', 'en', 10201), +(24066, 'Wolfbane', 'Kornbluth, C. M. (Cyril M.)', '2016-04-23', 111, 'https://www.gutenberg.org/ebooks/51845', 'en', 26), +(24067, 'Widger\'s Quotations from Project Gutenberg Edition of The Confessions of Jean Jacques Rousseau', 'Rousseau, Jean-Jacques', '2003-02-01', 22, 'https://www.gutenberg.org/ebooks/3749', 'en', 1026), +(24068, 'Life and Letters of Thomas Cromwell, Vol. 1 of 2\nLife, Letters to 1535', 'Merriman, Roger Bigelow', '2015-05-30', 24, 'https://www.gutenberg.org/ebooks/49086', 'en', 10202), +(24069, 'The Knickerbocker, Vol. 22, No. 2, August 1843', 'Various', '2015-01-09', 7, 'https://www.gutenberg.org/ebooks/47920', 'en', 18), +(24070, 'Rouva Katariina Boije ja hänen tyttärensä: Kertomus ison vihan ajoilta', 'Runeberg, Fredrika Charlotta Tengström', '2006-06-19', 10, 'https://www.gutenberg.org/ebooks/18624', 'fi', 10203), +(24071, 'History of Ancient Pottery: Greek, Etruscan, and Roman. Volume 1 (of 2)', 'Walters, H. B. (Henry Beauchamp)', '2015-02-07', 29, 'https://www.gutenberg.org/ebooks/48154', 'en', 10204), +(24072, 'Le marquis de Valcor', 'Lesueur, Daniel', '2016-01-22', 6, 'https://www.gutenberg.org/ebooks/50997', 'fr', 259), +(24073, 'A Modest Proposal', 'Swift, Jonathan', '2005-11-01', 3, 'https://www.gutenberg.org/ebooks/9273', 'en', 10205), +(24074, 'The History of Mendelssohn\'s Oratorio \'Elijah\'', 'Edwards, F. G. (Frederick George)', '2011-12-05', 85, 'https://www.gutenberg.org/ebooks/38223', 'en', 10206), +(24075, 'Selections from the Observator (1681-1687)', 'L\'Estrange, Roger, Sir', '2012-07-26', 16, 'https://www.gutenberg.org/ebooks/40339', 'en', 10207), +(24076, 'Burnham Breaker', 'Greene, Homer', '2003-12-01', 15, 'https://www.gutenberg.org/ebooks/10449', 'en', 10208), +(24077, 'De la littérature des nègres, ou Recherches sur leurs facultés intellectuelles, leurs qualités morales et leur littérature', 'Grégoire, Henri', '2005-05-26', 20, 'https://www.gutenberg.org/ebooks/15907', 'fr', 10209), +(24078, 'Mr. President', 'Arr, Stephen', '2010-06-06', 26, 'https://www.gutenberg.org/ebooks/32719', 'en', 1238), +(24079, 'The Amateur', 'Davis, Richard Harding', '2006-05-12', 23, 'https://www.gutenberg.org/ebooks/1822', 'en', 61), +(24080, 'Benjamin Disraeli, the Earl of Beaconsfield, K.G.\r\nCartoons from \"Punch\" 1843-1878', NULL, '2014-01-30', 17, 'https://www.gutenberg.org/ebooks/44799', 'en', 10210), +(24081, 'The World of Dreams', 'Ellis, Havelock', '2019-04-06', 53, 'https://www.gutenberg.org/ebooks/59214', 'en', 6758), +(24082, 'Address: Centauri', 'Wallace, F. L. (Floyd L.)', '2015-12-21', 54, 'https://www.gutenberg.org/ebooks/50736', 'en', 26), +(24083, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 22, August, 1878', 'Various', '2006-07-22', 25, 'https://www.gutenberg.org/ebooks/18885', 'en', 210), +(24084, 'Just Folks', 'Guest, Edgar A. (Edgar Albert)', '1997-06-01', 90, 'https://www.gutenberg.org/ebooks/941', 'en', 178), +(24085, 'Gleanings in Graveyards: A Collection of Curious Epitaphs', 'Norfolk, Horatio Edward', '2010-11-10', 13, 'https://www.gutenberg.org/ebooks/34273', 'en', 10211), +(24086, 'Main Currents in Nineteenth Century Literature - 2. The Romantic School in Germany', 'Brandes, Georg', '2014-12-26', 32, 'https://www.gutenberg.org/ebooks/47781', 'en', 536), +(24087, 'The Slave of the Mine; or, Jack Harkaway in \'Frisco', 'Hemyng, Bracebridge', '2014-08-22', 17, 'https://www.gutenberg.org/ebooks/46653', 'en', 2939), +(24088, 'Facing the German Foe', 'Fiske, James', '2006-11-28', 9, 'https://www.gutenberg.org/ebooks/19957', 'en', 146), +(24089, 'Widger\'s Quotes and Images from Cinq Mars by Alfred de Vigny\r\nThe French Immortals: Quotes and Images', 'Vigny, Alfred de', '2009-07-13', 9, 'https://www.gutenberg.org/ebooks/7574', 'en', 2391), +(24090, 'Frida; Or, The Lover\'s Leap: A Legend Of The West Country\r\nFrom \"Slain By The Doones\" By R. D. Blackmore', 'Blackmore, R. D. (Richard Doddridge)', '2007-08-14', 18, 'https://www.gutenberg.org/ebooks/22316', 'en', 45), +(24091, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, No. 08, June 1878\r\nScribner\'s Illustrated', 'Various', '2005-06-23', 17, 'https://www.gutenberg.org/ebooks/16123', 'en', 563), +(24092, 'A Fair Penitent', 'Collins, Wilkie', '1999-12-01', 46, 'https://www.gutenberg.org/ebooks/2006', 'en', 401), +(24093, 'Histoire de France 814-1189 (Volume 2/19)', 'Michelet, Jules', '2013-07-27', 36, 'https://www.gutenberg.org/ebooks/43321', 'fr', 624), +(24094, 'The Irish Penny Journal, Vol. 1 No. 21, November 21, 1840', 'Various', '2017-03-20', 2, 'https://www.gutenberg.org/ebooks/54396', 'en', 81), +(24095, 'Der Mann im Mond\r\nOder der Zug des Herzens ist des Schicksals Stimme, nebst der Kontrovers-Predigt über H. Clauren und den Mann im Mond', 'Hauff, Wilhelm', '2004-09-13', 38, 'https://www.gutenberg.org/ebooks/13451', 'de', 900), +(24096, 'Zoölogische Philosophie\nOf beschouwingen over de Natuurlijke Historie der dieren etc.', 'Lamarck, Jean Baptiste Pierre Antoine de Monet de', '2008-12-30', 8, 'https://www.gutenberg.org/ebooks/27664', 'nl', 10212), +(24097, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 557, July 14, 1832', 'Various', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12583', 'en', 133), +(24098, 'The Prophet\'s Mantle', 'Bland, Hubert', '2017-08-02', 16, 'https://www.gutenberg.org/ebooks/55244', 'en', 10213), +(24099, 'Noble Redman', 'Bone, Jesse F. (Jesse Franklin)', '2010-03-19', 30, 'https://www.gutenberg.org/ebooks/31701', 'en', 179), +(24100, 'The Lion\'s Masquerade\nA Sequel to The Peacock at Home', 'Dorset, Catherine Ann Turner', '2010-04-30', 9, 'https://www.gutenberg.org/ebooks/32184', 'en', 859), +(24101, 'Notes and Queries, Vol. V, Number 134, May 22, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-11-24', 18, 'https://www.gutenberg.org/ebooks/41476', 'en', 105), +(24102, 'Catalanisches Streitgedicht zwischen En Buc und seinem Pferd', NULL, '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11306', 'de', 8144), +(24103, 'Spiritual Torrents', 'Guyon, Jeanne Marie Bouvier de la Motte', '2008-04-22', 46, 'https://www.gutenberg.org/ebooks/25133', 'en', 2750), +(24104, 'Jälkipoimintoja 3: Kanttilaiset; Muistelmia katovuosilta', 'Päivärinta, Pietari', '2014-02-16', 34, 'https://www.gutenberg.org/ebooks/44938', 'fi', 456), +(24105, 'Plutarch\'s Romane Questions\r\nWith dissertations on Italian cults, myths, taboos, man-worship, aryan marriage, sympathetic magic and the eating of beans', 'Plutarch', '2018-07-15', 29, 'https://www.gutenberg.org/ebooks/57513', 'en', 10214), +(24106, 'Honorine', 'Balzac, Honoré de', '2004-11-06', 27, 'https://www.gutenberg.org/ebooks/1683', 'en', 58), +(24107, 'Historias Sem Data', 'Machado de Assis', '2010-07-03', 53, 'https://www.gutenberg.org/ebooks/33056', 'pt', 61), +(24108, 'A Book of the Pyrenees', 'Baring-Gould, S. (Sabine)', '2016-05-14', 11, 'https://www.gutenberg.org/ebooks/52061', 'en', 10215), +(24109, 'Memoirs of Sergeant Bourgogne, 1812-1813', 'Bourgogne, Adrien-Jean-Baptiste-François', '2019-05-12', 34, 'https://www.gutenberg.org/ebooks/59489', 'en', 10216), +(24110, 'Das Urteil: Eine Geschichte', 'Kafka, Franz', '2007-05-24', 193, 'https://www.gutenberg.org/ebooks/21593', 'de', 2079), +(24111, 'The History of Peru', 'Beebe, Henry S.', '2011-06-26', 19, 'https://www.gutenberg.org/ebooks/36524', 'en', 10217), +(24112, 'The Native Races [of the Pacific states], Volume 4, Antiquities\r\nThe Works of Hubert Howe Bancroft, Volume 4', 'Bancroft, Hubert Howe', '2013-11-04', 25, 'https://www.gutenberg.org/ebooks/44104', 'en', 10218), +(24113, 'The Satyricon — Volume 06: Editor\'s Notes', 'Petronius Arbiter', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5223', 'en', 10219), +(24114, 'Adieu à la France\nSur l\'embarquement du sieur de Poutrincourt et de son\nÉquipage faisant voile en la terre de Canadas dicte la\nFrance Occidentalle', 'Lescarbot, Marc', '2007-01-26', 30, 'https://www.gutenberg.org/ebooks/20441', 'fr', 8), +(24115, 'Ten Great Religions: An Essay in Comparative Theology', 'Clarke, James Freeman', '2005-01-12', 97, 'https://www.gutenberg.org/ebooks/14674', 'en', 1444), +(24116, 'The Atlantic Monthly, Volume 07, No. 41, March, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/11134', 'en', 1227), +(24117, 'The Adventures of Danny Meadow Mouse', 'Burgess, Thornton W. (Thornton Waldo)', '2008-05-04', 68, 'https://www.gutenberg.org/ebooks/25301', 'en', 625), +(24118, 'Correspondance diplomatique de Bertrand de Salignac de la Motte Fénélon, Tome Sixième\nAmbassadeur de France en Angleterre de 1568 à 1575', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2012-12-17', 57, 'https://www.gutenberg.org/ebooks/41644', 'fr', 5196), +(24119, 'Foods and Household Management: A Textbook of the Household Arts', 'Cooley, Anna M. (Anna Maria)', '2012-09-18', 97, 'https://www.gutenberg.org/ebooks/40796', 'en', 3407), +(24120, 'Living Up to Billy', 'Cooper, Elizabeth', '2010-07-26', 10, 'https://www.gutenberg.org/ebooks/33264', 'en', 258), +(24121, 'Index of the Project Gutenberg Works of Booth Tarkington', 'Tarkington, Booth', '2018-08-18', 26, 'https://www.gutenberg.org/ebooks/57721', 'en', 198), +(24122, 'Punch, or the London Charivari, Volume 156, March 19, 1919', 'Various', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/11908', 'en', 134), +(24123, 'Een verheugd volk en een jubelende stad', 'Sielof, Johanna Maria', '2011-07-12', 12, 'https://www.gutenberg.org/ebooks/36716', 'nl', 98), +(24124, 'Vainottu: Romaani', 'Doyle, Arthur Conan', '2016-06-07', 16, 'https://www.gutenberg.org/ebooks/52253', 'fi', 834), +(24125, 'Punch, or the London Charivari, Volume 103, October 22, 1892', 'Various', '2005-04-09', 7, 'https://www.gutenberg.org/ebooks/15594', 'en', 134), +(24126, 'A Christmas Carol', 'Dickens, Charles', '2007-08-01', 25, 'https://www.gutenberg.org/ebooks/20673', 'en', 531), +(24127, 'A Supplement to A Compilation of the Messages and Papers of the Presidents: William McKinley', 'McKinley, William', '2004-12-24', 25, 'https://www.gutenberg.org/ebooks/14446', 'en', 337), +(24128, 'Ylhäisiä naisia', 'Hardy, Thomas', '2016-10-27', 13, 'https://www.gutenberg.org/ebooks/53381', 'fi', 8003), +(24129, 'The Life of a Fox, Written by Himself', 'Smith, Thomas', '2019-01-26', 4, 'https://www.gutenberg.org/ebooks/58769', 'en', 7064), +(24130, 'The Shadow', 'Stringer, Arthur', '2013-12-02', 18, 'https://www.gutenberg.org/ebooks/44336', 'en', 128), +(24131, 'State of the Union Addresses', 'Adams, John', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/5011', 'en', 1276), +(24132, 'Relatorio de uma viagem ás terras dos Landins', 'Paiva de Andrada, Joaquim Carlos', '2010-10-07', 14, 'https://www.gutenberg.org/ebooks/34041', 'pt', 10220), +(24133, 'Götalaiset huoneet: Sukutarinoita vuosisadan vaihteesta', 'Strindberg, August', '2017-06-28', 4, 'https://www.gutenberg.org/ebooks/54998', 'fi', 6023), +(24134, 'In Midsummer Days, and Other Tales', 'Strindberg, August', '2004-10-01', 26, 'https://www.gutenberg.org/ebooks/6694', 'en', 4675), +(24135, 'The Battle of Gettysburg: The Country, the Contestants, the Results', 'Storrick, W. C. (William Clayton)', '2015-11-20', 9, 'https://www.gutenberg.org/ebooks/50504', 'en', 10221), +(24136, 'The Golden Shoemaker\nor \'Cobbler\' Horn', 'Keyworth, J. W.', '2007-07-23', 23, 'https://www.gutenberg.org/ebooks/22124', 'en', 10222), +(24137, 'Cinematografo', 'Rivera, Jose Maria', '2005-07-16', 4, 'https://www.gutenberg.org/ebooks/16311', 'tl', 9065), +(24138, 'L\'Illustration, No. 0063, 11 Mai 1844', 'Various', '2014-07-31', 13, 'https://www.gutenberg.org/ebooks/46461', 'fr', 150), +(24139, 'A Season at Harrogate\r\nIn a Series of Poetical Epistles, from Benjamin Blunderhead, Esquire, to His Mother, in Derbyshire. With Useful and Copious Notes, Descriptive of the Objects Most Worthy of Attention in the Vicinity of Harrogate', 'Hofland, Mrs. (Barbara)', '2011-02-07', 13, 'https://www.gutenberg.org/ebooks/35193', 'en', 10223), +(24140, 'The Parisians — Volume 10', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7746', 'en', 1165), +(24141, 'Papin rouva', 'Aho, Juhani', '2004-10-06', 14, 'https://www.gutenberg.org/ebooks/13663', 'fi', 61), +(24142, 'The Mouse\'s Wedding', 'Unknown', '2008-12-08', 29, 'https://www.gutenberg.org/ebooks/27456', 'en', 10224), +(24143, 'Sketches in Lavender, Blue and Green', 'Jerome, Jerome K. (Jerome Klapka)', '2000-06-01', 39, 'https://www.gutenberg.org/ebooks/2234', 'en', 797), +(24144, 'A Blind Esperantist\'s Trip to Finland and Sweden, to Attend the Fourteenth International Esperanto Congress', 'Merrick, W. Percy', '2013-07-07', 11, 'https://www.gutenberg.org/ebooks/43113', 'en', 4301), +(24145, 'Mezzo secolo di patriotismo: Saggi storici', 'Bonfadini, Romualdo', '2015-07-12', 13, 'https://www.gutenberg.org/ebooks/49429', 'it', 10225), +(24146, 'Lettres à un ami, 1865-1872', 'Bizet, Georges', '2007-10-08', 18, 'https://www.gutenberg.org/ebooks/22918', 'fr', 10226), +(24147, 'Sockerpullor och Pepparkorn: Små bilder ur skånska folklifvet förr och nu', 'Wranér, Henrik', '2010-03-07', 33, 'https://www.gutenberg.org/ebooks/31533', 'sv', 10227), +(24148, 'Night and Day', 'Woolf, Virginia', '2008-09-01', 68, 'https://www.gutenberg.org/ebooks/26584', 'en', 2586), +(24149, 'Bahama Bill, Mate of the Wrecking Sloop Sea-Horse', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-07-09', 29, 'https://www.gutenberg.org/ebooks/55076', 'en', 324), +(24150, 'The Patient Observer and His Friends', 'Strunsky, Simeon', '2006-09-22', 22, 'https://www.gutenberg.org/ebooks/19359', 'en', 20), +(24151, 'Punch, or the London Charivari. Volume 93, September 10, 1887', 'Various', '2010-09-01', 14, 'https://www.gutenberg.org/ebooks/33600', 'en', 134), +(24152, 'The Silver Caves: A Mining Story', 'Ingersoll, Ernest', '2018-06-17', 9, 'https://www.gutenberg.org/ebooks/57345', 'en', 6374), +(24153, 'The Young Mother: Management of Children in Regard to Health', 'Alcott, William A. (William Andrus)', '2003-12-01', 33, 'https://www.gutenberg.org/ebooks/10482', 'en', 6446), +(24154, 'Squash Tennis', 'Squires, Richard C.', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11550', 'en', 10228), +(24155, 'A Boy of Old Japan', 'Van Bergen, R. (Robert)', '2018-01-03', 7, 'https://www.gutenberg.org/ebooks/56297', 'en', 10229), +(24156, 'A Dixie School Girl', 'Jackson, Gabrielle E. (Gabrielle Emilie)', '2008-06-12', 17, 'https://www.gutenberg.org/ebooks/25765', 'en', 1877), +(24157, 'Military Career of Napoleon the Great\r\nAn Account of the Remarkable Campaigns of the \"Man of Destiny\"; Authentic Anecdotes of the Battlefield as Told by the Famous Marshals and Generals of the First Empire', 'Gibbs, Montgomery B.', '2012-10-29', 33, 'https://www.gutenberg.org/ebooks/41220', 'en', 10230), +(24158, 'The Stranger: A Drama, in Five Acts', 'Kotzebue, August von', '2006-12-29', 24, 'https://www.gutenberg.org/ebooks/20217', 'en', 402), +(24159, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 479, March 5, 1831', 'Various', '2004-11-11', 4, 'https://www.gutenberg.org/ebooks/14022', 'en', 133), +(24160, 'The Smuggler\'s Cave', 'Birmingham, George A.', '2014-01-25', 23, 'https://www.gutenberg.org/ebooks/44752', 'en', 10231), +(24161, 'Cleopatra — Volume 03', 'Ebers, Georg', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/5475', 'en', 984), +(24162, 'Type: A Primer of Information About the Mechanical Features of Printing Types\r\nTheir Sizes, Font Schemes, &c. with a Brief Description of Their Manufacture', 'Stewart, A. A. (Alexander A.)', '2011-06-10', 49, 'https://www.gutenberg.org/ebooks/36372', 'en', 10232), +(24163, 'Flying the Coast Skyways; Or, Jack Ralston\'s Swift Patrol', 'Newcomb, Ambrose', '2014-05-18', 1, 'https://www.gutenberg.org/ebooks/45680', 'en', 6791), +(24164, 'The Dreadnought Boys on Aero Service', 'Goldfrap, John Henry', '2016-07-24', 21, 'https://www.gutenberg.org/ebooks/52637', 'en', 4678), +(24165, 'The K-Factor', 'Harrison, Harry', '2007-09-08', 85, 'https://www.gutenberg.org/ebooks/22540', 'en', 26), +(24166, 'Der Postsekretär im Himmel, und andere Geschichten', 'Thoma, Ludwig', '2015-09-03', 10, 'https://www.gutenberg.org/ebooks/49871', 'de', 549), +(24167, 'Biographies of Distinguished Scientific Men\r\nFirst Series', 'Arago, François', '2005-09-30', 27, 'https://www.gutenberg.org/ebooks/16775', 'en', 2928), +(24168, 'Red Fox\r\nThe Story of His Adventurous Career in the Ringwaak Wilds and of His Final Triumph over the Enemies of His Kind', 'Roberts, Charles G. D., Sir', '2014-06-16', 14, 'https://www.gutenberg.org/ebooks/46005', 'en', 10233), +(24169, 'Our Hundred Days in Europe', 'Holmes, Oliver Wendell', '2005-01-01', 12, 'https://www.gutenberg.org/ebooks/7322', 'en', 776), +(24170, 'Johnstone of the Border', 'Bindloss, Harold', '2010-11-24', 16, 'https://www.gutenberg.org/ebooks/34425', 'en', 1107), +(24171, 'Charles Sumner: his complete works, volume 14 (of 20)', 'Sumner, Charles', '2015-10-08', 8, 'https://www.gutenberg.org/ebooks/50160', 'en', 429), +(24172, 'Fast in the Ice: Adventures in the Polar Regions', 'Ballantyne, R. M. (Robert Michael)', '2007-11-15', 23, 'https://www.gutenberg.org/ebooks/23492', 'en', 10234), +(24173, 'Irresistible Weapon', 'Fyfe, H. B. (Horace Bowne)', '2009-09-15', 32, 'https://www.gutenberg.org/ebooks/29994', 'en', 26), +(24174, 'Huntingtower', 'Buchan, John', '2003-02-01', 123, 'https://www.gutenberg.org/ebooks/3782', 'en', 3208), +(24175, 'Hymns from the Greek Office Books\nTogether with Centos and Suggestions', 'Brownlie, John', '2010-02-02', 10, 'https://www.gutenberg.org/ebooks/31157', 'en', 8378), +(24176, 'The Heart of Wessex', 'Heath, Sidney', '2014-09-10', 13, 'https://www.gutenberg.org/ebooks/46839', 'en', 10235), +(24177, 'A list of books published by Chatto & Windus, October 1892', 'Chatto & Windus (Firm)', '2017-08-22', 3, 'https://www.gutenberg.org/ebooks/55412', 'en', 2663), +(24178, 'Les Pardaillan — Tome 01', 'Zévaco, Michel', '2004-08-17', 29, 'https://www.gutenberg.org/ebooks/13207', 'fr', 642), +(24179, 'Interviews (1998-2001)', 'Lebert, Marie', '2008-10-26', 13, 'https://www.gutenberg.org/ebooks/27032', 'en', 2599), +(24180, 'Du côté de chez Swann', 'Proust, Marcel', '2001-05-01', 441, 'https://www.gutenberg.org/ebooks/2650', 'fr', 957), +(24181, 'Life of Henry Martyn, Missionary to India and Persia, 1781 to 1812', 'Rhea, Sarah J.', '2009-09-25', 13, 'https://www.gutenberg.org/ebooks/30085', 'en', 10236), +(24182, 'An Introduction to Entomology: Vol. 2\r\nor Elements of the Natural History of the Insects', 'Kirby, William', '2013-08-27', 19, 'https://www.gutenberg.org/ebooks/43577', 'en', 2667), +(24183, 'Little Jack Rabbit\'s Adventures', 'Cory, David', '2009-05-16', 25, 'https://www.gutenberg.org/ebooks/28846', 'en', 625), +(24184, 'The Romance of Book-Collecting', 'Slater, J. Herbert (John Herbert)', '2014-07-09', 15, 'https://www.gutenberg.org/ebooks/46237', 'en', 1705), +(24185, 'Rose and Roof-Tree — Poems', 'Lathrop, George Parsons', '2004-12-01', 4, 'https://www.gutenberg.org/ebooks/7110', 'en', 178), +(24186, 'Camões e o amor\r\nno aniversario 304 da morte do poeta', 'Pires, Ernesto', '2007-09-26', 24, 'https://www.gutenberg.org/ebooks/22772', 'pt', 10237), +(24187, 'Ein Bruderzwist in Habsburg', 'Grillparzer, Franz', '2005-09-01', 23, 'https://www.gutenberg.org/ebooks/8964', 'de', 10238), +(24188, 'Newfoundland to Cochin China\nBy the Golden Wave, New Nippon, and the Forbidden City', 'Vincent, Ethel Gwendoline', '2016-02-23', 10, 'https://www.gutenberg.org/ebooks/51280', 'en', 885), +(24189, 'Sequential Problem Solving\r\nA Student Handbook with Checklists for Successful Critical Thinking', 'Lozo, Fredric B.', '2005-08-19', 50, 'https://www.gutenberg.org/ebooks/16547', 'en', 10239), +(24190, 'The Stolen Singer', 'Bellinger, Martha Idell Fletcher', '2006-01-11', 20, 'https://www.gutenberg.org/ebooks/17495', 'en', 1380), +(24191, 'Spanish Papers', 'Irving, Washington', '2015-10-31', 11, 'https://www.gutenberg.org/ebooks/50352', 'en', 6250), +(24192, 'The Testimony of the Rocks\nor, Geology in Its Bearings on the Two Theologies, Natural and Revealed', 'Miller, Hugh', '2009-03-04', 37, 'https://www.gutenberg.org/ebooks/28248', 'en', 2713), +(24193, 'Mountain Idylls, and Other Poems', 'King, Alfred Castner', '2004-10-20', 7, 'https://www.gutenberg.org/ebooks/13809', 'en', 8), +(24194, 'The Jews of Barnow: Stories', 'Franzos, Karl Emil', '2010-12-10', 25, 'https://www.gutenberg.org/ebooks/34617', 'en', 2120), +(24195, 'Histories of two hundred and fifty-one divisions of the German army which participated in the war (1914-1918)', 'United States. War Department. General Staff', '2017-09-24', 13, 'https://www.gutenberg.org/ebooks/55620', 'en', 10240), +(24196, 'Anna Fleming: Historiallinen romaani', 'Ivalo, Santeri', '2013-05-12', 10, 'https://www.gutenberg.org/ebooks/42697', 'fi', 456), +(24197, 'Barlasch of the Guard', 'Merriman, Henry Seton', '2005-05-01', 20, 'https://www.gutenberg.org/ebooks/8158', 'en', 5734), +(24198, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 26, July 1880.', 'Various', '2010-02-23', 8, 'https://www.gutenberg.org/ebooks/31365', 'en', 162), +(24199, 'Dona Perfecta', 'Pérez Galdós, Benito', '2006-03-31', 30, 'https://www.gutenberg.org/ebooks/2462', 'en', 10241), +(24200, 'With the World\'s Great Travellers, Volume 4', NULL, '2013-09-16', 76, 'https://www.gutenberg.org/ebooks/43745', 'en', 885), +(24201, 'A Kidnapped Santa Claus', 'Baum, L. Frank (Lyman Frank)', '1996-05-01', 75, 'https://www.gutenberg.org/ebooks/519', 'en', 2203), +(24202, 'The Goop Directory of Juvenile Offenders Famous for their Misdeeds and Serving as a Salutary Example for all Virtuous Children', 'Burgess, Gelett', '2004-07-28', 69, 'https://www.gutenberg.org/ebooks/13035', 'en', 10242), +(24203, 'Fairy Tales of Hans Christian Andersen', 'Andersen, H. C. (Hans Christian)', '2008-11-08', 496, 'https://www.gutenberg.org/ebooks/27200', 'en', 1007), +(24204, 'A Floral Fantasy in an Old English Garden', 'Crane, Walter', '2008-02-02', 73, 'https://www.gutenberg.org/ebooks/24485', 'en', 5694), +(24205, 'Australia at War\r\nA Winter Record Made by Will Dyson on the Somme and at Ypres, During the Campaigns of 1916 and 1917', 'Dyson, Will', '2018-05-18', 15, 'https://www.gutenberg.org/ebooks/57177', 'en', 10243), +(24206, 'Aims and Aids for Girls and Young Women\nOn the Various Duties of Life, Physical, Intellectual, And\nMoral Development; Self-Culture, Improvement, Dress, Beauty,\nFashion, Employment, Education, The Home Relations, Their\nDuties To Young Men, Marriage, Womanhood And Happiness.', 'Weaver, G. S. (George Sumner)', '2007-03-14', 43, 'https://www.gutenberg.org/ebooks/20819', 'en', 740), +(24207, 'Mr. Munchausen \nBeing a True Account of Some of the Recent Adventures beyond the Styx of the Late Hieronymus Carl Friedrich, Sometime Baron Munchausen of Bodenwerder', 'Bangs, John Kendrick', '2010-08-14', 52, 'https://www.gutenberg.org/ebooks/33432', 'en', 2116), +(24208, 'The Monthly Review of Dental Surgery, No. VIII. October, 1880. Vol. I.\r\nThe Journal of the British Dental Association', 'Various', '2019-02-17', 30, 'https://www.gutenberg.org/ebooks/58903', 'en', 10244), +(24209, 'True Tales of Arctic Heroism in the New World', 'Greely, A. W. (Adolphus Washington)', '2012-03-11', 26, 'https://www.gutenberg.org/ebooks/39108', 'en', 5605), +(24210, 'The Wonderful Story of Washington\nand the Meaning of His Life for the Youth and Patriotism of America', 'Stevens, C. M. (Charles McClellan)', '2012-10-10', 5, 'https://www.gutenberg.org/ebooks/41012', 'en', 10245), +(24211, 'The American Missionary — Volume 42, No. 01, January, 1888', 'Various', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/11762', 'en', 395), +(24212, '臺灣通史\r\n唐山過海的故事', 'Lian, Heng', '2008-05-22', 40, 'https://www.gutenberg.org/ebooks/25557', 'zh', 10246), +(24213, 'Three Courses and a Dessert\r\nComprising Three Sets of Tales, West Country, Irish, and Legal; and a Melange', 'Clarke, William', '2014-01-01', 22, 'https://www.gutenberg.org/ebooks/44560', 'en', 10247), +(24214, 'The Bradys\' Chinese Clew; Or, The Secret Dens of Pell Street', 'Doughty, Francis Worcester', '2011-08-15', 8, 'https://www.gutenberg.org/ebooks/37092', 'en', 336), +(24215, 'Sketches by Seymour — Volume 03', 'Seymour, Robert', '2004-07-12', 10, 'https://www.gutenberg.org/ebooks/5647', 'en', 1688), +(24216, 'Pirate Gold', 'Stimson, Frederic Jesup', '2006-12-05', 19, 'https://www.gutenberg.org/ebooks/20025', 'en', 10248), +(24217, 'In het bergland van Tripolis\r\nDe Aarde en haar Volken, 1906', 'Mathuisieulx, A. de', '2004-11-29', 4, 'https://www.gutenberg.org/ebooks/14210', 'nl', 10249), +(24218, 'W. & R. Chambers\' Catalogue. - 1897\r\nBooks Suitable for Prizes and Presentation', 'W. & R. Chambers Ltd.', '2016-06-25', 5, 'https://www.gutenberg.org/ebooks/52405', 'en', 10250), +(24219, 'Traditions, Superstitions and Folk-lore\r\n(Chiefly Lancashire and the North of England:) Their Affinity to Others in Widely-Distributed Localities; Their Eastern Origin and Mythical Significance.', 'Hardwick, Charles', '2012-06-06', 17, 'https://www.gutenberg.org/ebooks/39934', 'en', 226), +(24220, 'The Vicar of Morwenstow: Being a Life of Robert Stephen Hawker, M.A.', 'Baring-Gould, S. (Sabine)', '2018-04-02', 11, 'https://www.gutenberg.org/ebooks/56899', 'en', 10251), +(24221, 'Punch, or the London Charivari, Vol. 105, August 12th 1893', 'Various', '2011-05-19', 6, 'https://www.gutenberg.org/ebooks/36140', 'en', 134), +(24222, 'The Circassian Slave, or, the Sultan\'s favorite : a story of Constantinople and the Caucasus', 'Ballou, Maturin M. (Maturin Murray)', '2003-12-01', 19, 'https://www.gutenberg.org/ebooks/4795', 'en', 61), +(24223, 'Nooks & Corners of Old Paris', 'Cain, Georges', '2012-07-23', 16, 'https://www.gutenberg.org/ebooks/40306', 'en', 2972), +(24224, 'The Congo, and Other Poems', 'Lindsay, Vachel', '1997-08-01', 100, 'https://www.gutenberg.org/ebooks/1021', 'en', 178), +(24225, 'A Treatise on the Art of Dancing', 'Gallini, Giovanni-Andrea', '2008-02-19', 21, 'https://www.gutenberg.org/ebooks/24643', 'en', 10252), +(24226, 'The Vanishing Man: A Detective Romance', 'Freeman, R. Austin (Richard Austin)', '2003-12-01', 81, 'https://www.gutenberg.org/ebooks/10476', 'en', 128), +(24227, 'How to Be a Man\nA Book for Boys, Containing Useful Hints on the Formation of Character', 'Newcomb, Harvey', '2017-12-28', 12, 'https://www.gutenberg.org/ebooks/56263', 'en', 740), +(24228, 'In der Strafkolonie', 'Kafka, Franz', '2008-06-14', 136, 'https://www.gutenberg.org/ebooks/25791', 'de', 10253), +(24229, 'The Yankee Tea-party; Or, Boston in 1773', 'Watson, Henry C. (Henry Clay)', '2005-05-29', 22, 'https://www.gutenberg.org/ebooks/15938', 'en', 2336), +(24230, 'Death of a B.E.M.', 'Livingston, Berkeley', '2010-06-07', 19, 'https://www.gutenberg.org/ebooks/32726', 'en', 10254), +(24231, 'The Orchid', 'Grant, Robert', '2016-12-11', 14, 'https://www.gutenberg.org/ebooks/53711', 'en', 109), +(24232, 'Cleopatra — Volume 09', 'Ebers, Georg', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5481', 'en', 984), +(24233, 'The Gentleman Cadet\nHis Career and Adventures at the Royal Military Academy Woolwich', 'Drayson, Alfred W. (Alfred Wilks)', '2011-08-29', 10, 'https://www.gutenberg.org/ebooks/37254', 'en', 10255), +(24234, 'St. Elmo', 'Evans, Augusta J. (Augusta Jane)', '2003-10-01', 105, 'https://www.gutenberg.org/ebooks/4553', 'en', 10256), +(24235, 'The Mythologies of Ancient Mexico and Peru', 'Spence, Lewis', '2011-06-11', 22, 'https://www.gutenberg.org/ebooks/36386', 'en', 10257), +(24236, 'Prison Poetry', 'McKnight, Hiram Peck', '2014-05-17', 12, 'https://www.gutenberg.org/ebooks/45674', 'en', 10258), +(24237, 'Silmänkääntäjä\neli Jussi Oluvisen matka Hölmölään; ilveilys 2:ssa näytöksessä', 'Hannikainen, Pietari', '2005-02-18', 20, 'https://www.gutenberg.org/ebooks/15104', 'fi', 402), +(24238, 'The Adventures of Hajji Baba of Ispahan', 'Morier, James Justinian', '2007-05-05', 41, 'https://www.gutenberg.org/ebooks/21331', 'en', 10259), +(24239, 'Il Cavaliere dello Spirito Santo: Storia d\'una giornata', 'Verona, Guido da', '2015-09-05', 9, 'https://www.gutenberg.org/ebooks/49885', 'it', 892), +(24240, 'Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 1', 'Jefferson, Thomas', '2005-09-30', 66, 'https://www.gutenberg.org/ebooks/16781', 'en', 1648), +(24241, '...And It Comes Out Here', 'Del Rey, Lester', '2016-01-26', 111, 'https://www.gutenberg.org/ebooks/51046', 'en', 179), +(24242, 'Ladies-In-Waiting', 'Wiggin, Kate Douglas Smith', '2008-10-15', 14, 'https://www.gutenberg.org/ebooks/26928', 'en', 500), +(24243, 'The Girl at Central', 'Bonner, Geraldine', '2011-03-06', 27, 'https://www.gutenberg.org/ebooks/35503', 'en', 348), +(24244, 'When Valmond Came to Pontiac: The Story of a Lost Napoleon. Volume 3.', 'Parker, Gilbert', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/6204', 'en', 1219), +(24245, 'Agnes Strickland\'s Queens of England, Vol. 3. (of 3)\r\nAbridged and Fully Illustrated', 'Strickland, Agnes', '2014-10-15', 17, 'https://www.gutenberg.org/ebooks/47123', 'en', 1583), +(24246, 'The Magic of Oz', 'Baum, L. Frank (Lyman Frank)', '2015-10-13', 69, 'https://www.gutenberg.org/ebooks/50194', 'en', 550), +(24247, 'Punch, or the London Charivari, Volume 159, September 22, 1920', 'Various', '2006-01-31', 23, 'https://www.gutenberg.org/ebooks/17653', 'en', 134), +(24248, 'Bartholomew de Las Casas; his life, apostolate, and writings', 'MacNutt, Francis Augustus', '2007-11-13', 44, 'https://www.gutenberg.org/ebooks/23466', 'en', 2792), +(24249, 'Mustalaistytön ennustus: Romaani Pärttylinyön ajoilta', 'Mérimée, Prosper', '2015-05-14', 13, 'https://www.gutenberg.org/ebooks/48957', 'fi', 1850), +(24250, 'Heroines of Service\r\nMary Lyon, Alice Freeman Palmer, Clara Barton, Frances Willard, Julia Ward Howe, Anna Shaw, Mary Antin, Alice C. Fletcher, Mary Slessor of Calabar, Madame Curie, Jane Addams', 'Parkman, Mary Rosetta', '2013-04-01', 12, 'https://www.gutenberg.org/ebooks/42451', 'en', 10260), +(24251, 'Oudheid en Middeleeuwen. Verhalen en schetsen', 'Nuiver, A.', '2009-09-11', 19, 'https://www.gutenberg.org/ebooks/29960', 'nl', 7868), +(24252, 'The Valley of Fear', 'Doyle, Arthur Conan', '2003-02-01', 138, 'https://www.gutenberg.org/ebooks/3776', 'en', 834), +(24253, 'Church Cooperation in Community Life', 'Vogt, Paul L. (Paul Leroy)', '2008-07-23', 4, 'https://www.gutenberg.org/ebooks/26114', 'en', 3533), +(24254, 'Rudimental Divine Science', 'Eddy, Mary Baker', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12321', 'en', 1206), +(24255, 'The Irish Penny Journal, Vol. 1 No. 25, December 19, 1840', 'Various', '2017-04-10', 2, 'https://www.gutenberg.org/ebooks/54534', 'en', 81), +(24256, 'Paginas Archeologicas III - Situação conjectural de Talabriga', 'Pereira, Félix Alves', '2009-09-23', 5, 'https://www.gutenberg.org/ebooks/30071', 'pt', 10261), +(24257, 'The Mystery of the Fires', 'Lavell, Edith', '2013-08-28', 36, 'https://www.gutenberg.org/ebooks/43583', 'en', 10262), +(24258, 'Blackwood\'s Edinburgh Magazine, Volume 60, No. 370, August 1846', 'Various', '2011-03-31', 12, 'https://www.gutenberg.org/ebooks/35731', 'en', 274), +(24259, 'Rautatie', 'Aho, Juhani', '2007-09-01', 37, 'https://www.gutenberg.org/ebooks/22786', 'fi', 61), +(24260, 'Ambition', 'Bade, William L.', '2016-02-21', 23, 'https://www.gutenberg.org/ebooks/51274', 'en', 179), +(24261, 'The Underground City; Or, The Black Indies\r\n(Sometimes Called The Child of the Cavern)', 'Verne, Jules', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/8990', 'en', 3777), +(24262, 'The Great German Composers', 'Ferris, George T. (George Titus)', '2006-01-04', 36, 'https://www.gutenberg.org/ebooks/17461', 'en', 10263), +(24263, 'Y Gododin: A Poem of the Battle of Cattraeth', 'Aneirin', '2006-02-01', 140, 'https://www.gutenberg.org/ebooks/9842', 'cy', 10264), +(24264, 'Mémoires d\'Outre-Tombe, Tome 2', 'Chateaubriand, François-René, vicomte de', '2007-11-28', 68, 'https://www.gutenberg.org/ebooks/23654', 'fr', 3338), +(24265, 'The Kasîdah of Hâjî Abdû El-Yezdî', 'Burton, Richard Francis, Sir', '2004-07-01', 89, 'https://www.gutenberg.org/ebooks/6036', 'en', 532), +(24266, 'Wanderungen durch die Mark Brandenburg, Dritter Teil\nHavelland', 'Fontane, Theodor', '2014-11-08', 166, 'https://www.gutenberg.org/ebooks/47311', 'de', 10265), +(24267, 'Sonetos de Anthero', 'Quental, Antero de', '2008-08-16', 8, 'https://www.gutenberg.org/ebooks/26326', 'pt', 1638), +(24268, 'Eine vornehme Frau', 'Heiberg, Hermann', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12113', 'de', 10266), +(24269, 'Histoire des salons de Paris (Tome 3/6)\r\nTableaux et portraits du grand monde sous Louis XVI, Le Directoire, le Consulat et l\'Empire, la Restauration et le règne de Louis-Philippe Ier', 'Abrantès, Laure Junot, duchesse d\'', '2013-05-08', 27, 'https://www.gutenberg.org/ebooks/42663', 'fr', 4122), +(24270, 'An Isle in the Water', 'Tynan, Katharine', '2010-02-25', 24, 'https://www.gutenberg.org/ebooks/31391', 'en', 669), +(24271, 'How He Lied to Her Husband', 'Shaw, Bernard', '2002-11-01', 165, 'https://www.gutenberg.org/ebooks/3544', 'en', 537), +(24272, 'ABC of Fox Hunting', 'Paul, John Dean, Sir', '2009-10-13', 26, 'https://www.gutenberg.org/ebooks/30243', 'en', 2777), +(24273, 'Our Village', 'Mitford, Mary Russell', '2001-02-01', 49, 'https://www.gutenberg.org/ebooks/2496', 'en', 6777), +(24274, 'Œuvres complètes de Gustave Flaubert, tome 1 (of 8): Madame Bovary', 'Flaubert, Gustave', '2015-02-25', 57, 'https://www.gutenberg.org/ebooks/48359', 'fr', 434), +(24275, 'Zonnestralen in School en Huis', 'Leopold, Katharina', '2006-05-21', 11, 'https://www.gutenberg.org/ebooks/18429', 'nl', 511), +(24276, 'Perintö: Nelinäytöksinen näytelmä', 'Lehtimäki, Konrad', '2017-05-11', 7, 'https://www.gutenberg.org/ebooks/54706', 'fi', 382), +(24277, 'Peter Pan', 'Barrie, J. M. (James Matthew)', '2008-06-25', 6349, 'https://www.gutenberg.org/ebooks/16', 'en', 3828), +(24278, 'Tobacco; Its History, Varieties, Culture, Manufacture and Commerce', 'Billings, E. R.', '2008-01-31', 28, 'https://www.gutenberg.org/ebooks/24471', 'en', 10267), +(24279, 'Beacon Lights of History, Volume 11: American Founders', 'Lord, John', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10644', 'en', 414), +(24280, 'Pimeyden ääniä: Romaani', 'Elvestad, Sven', '2018-05-19', 37, 'https://www.gutenberg.org/ebooks/57183', 'fi', 4285), +(24281, 'A Moral Alphabet', 'Belloc, Hilaire', '2012-07-03', 38, 'https://www.gutenberg.org/ebooks/40134', 'en', 3625), +(24282, 'The Man That Corrupted Hadleyburg', 'Twain, Mark', '1998-02-01', 229, 'https://www.gutenberg.org/ebooks/1213', 'en', 2116), +(24283, 'Pledged to the Dead', 'Quinn, Seabury', '2010-05-24', 66, 'https://www.gutenberg.org/ebooks/32514', 'en', 109), +(24284, 'A Case of Sunburn', 'Fontenay, Charles L.', '2019-06-27', 270, 'https://www.gutenberg.org/ebooks/59825', 'en', 2564), +(24285, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 1, Isla de Cuba', NULL, '2017-11-26', 36, 'https://www.gutenberg.org/ebooks/56051', 'es', 2194), +(24286, 'Human Genome Project, Build 34, Chromosome Number 22', 'Human Genome Project', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11796', 'en', 1385), +(24287, 'An Englishman\'s View of the Battle between the Alabama and the Kearsarge\r\nAn Account of the Naval Engagement in the British Channel, on Sunday June 19th, 1864', 'Edge, Frederick Milnes', '2011-08-06', 11, 'https://www.gutenberg.org/ebooks/36988', 'en', 36), +(24288, 'Explanatory Notes of a Pack of Cavalier Playing Cards, Temp. Charles II.\r\nForming a Complete Political Satire of the Commonwealth', 'Goldsmid, Edmund', '2014-01-05', 12, 'https://www.gutenberg.org/ebooks/44594', 'en', 10268), +(24289, 'Die Inzestscheu\r\nÜber einige Übereinstimmungen im Seelenleben der Wilden und der Neurotiker I', 'Freud, Sigmund', '2011-08-13', 17, 'https://www.gutenberg.org/ebooks/37066', 'de', 10269), +(24290, 'Jane Allen, Center', 'Bancroft, Edith', '2012-10-01', 27, 'https://www.gutenberg.org/ebooks/40908', 'en', 51), +(24291, 'Chronique de 1831 à 1862, Tome 4 (de 4)', 'Dino, Dorothée, duchesse de', '2016-11-13', 7, 'https://www.gutenberg.org/ebooks/53523', 'fr', 7263), +(24292, 'The Works of Robert G. Ingersoll, Vol. 12 (of 12)\nDresden Edition—Miscellany', 'Ingersoll, Robert Green', '2012-02-09', 51, 'https://www.gutenberg.org/ebooks/38812', 'en', 1191), +(24293, 'The Road Away from Revolution', 'Wilson, Woodrow', '2019-03-06', 15, 'https://www.gutenberg.org/ebooks/59019', 'en', 5804), +(24294, 'The Life of Columbus', 'Helps, Arthur, Sir', '2005-03-12', 23, 'https://www.gutenberg.org/ebooks/15336', 'en', 4786), +(24295, 'Sisters Three', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 19, 'https://www.gutenberg.org/ebooks/21103', 'en', 378), +(24296, 'The Cossacks: A Tale of 1852', 'Tolstoy, Leo, graf', '2003-12-01', 139, 'https://www.gutenberg.org/ebooks/4761', 'en', 1684), +(24297, 'Makers of Electricity', 'Potamian, Brother', '2014-04-21', 70, 'https://www.gutenberg.org/ebooks/45446', 'en', 10270), +(24298, 'Lendas e Narrativas (Tomo II)', 'Herculano, Alexandre', '2005-11-04', 28, 'https://www.gutenberg.org/ebooks/17005', 'pt', 410), +(24299, 'Boys: their Work and Influence', 'Anonymous', '2007-10-28', 13, 'https://www.gutenberg.org/ebooks/23230', 'en', 1130), +(24300, 'Right Royal', 'Masefield, John', '2004-09-01', 15, 'https://www.gutenberg.org/ebooks/6452', 'en', 8), +(24301, 'Crates Mallotes ou Critica Dialogistica dos Grammaticos Defuntos contra a pedantaria do tempo', 'Guliver, Robert', '2010-11-12', 67, 'https://www.gutenberg.org/ebooks/34287', 'pt', 10271), +(24302, 'A Channel Passage and Other Poems\nTaken from The Collected Poetical Works of Algernon Charles\nSwinburne—Vol VI', 'Swinburne, Algernon Charles', '2006-07-19', 28, 'https://www.gutenberg.org/ebooks/18871', 'en', 54), +(24303, 'Kitty Carter, Canteen Girl', 'Radford, Ruby Lorraine', '2014-12-26', 20, 'https://www.gutenberg.org/ebooks/47775', 'en', 1004), +(24304, 'Widger\'s Quotes and Images from Conscience by Hector Malot\r\nThe French Immortals: Quotes and Images', 'Malot, Hector', '2009-07-13', 10, 'https://www.gutenberg.org/ebooks/7580', 'en', 2391), +(24305, 'The Childrens\' Story of the War, Volume 3 (of 10)\nFrom the First Battle of Ypres to the End of the Year 1914', 'Parrott, Edward', '2011-02-22', 12, 'https://www.gutenberg.org/ebooks/35355', 'en', 1250), +(24306, 'Solid Solution', 'Stamers, James', '2016-03-31', 20, 'https://www.gutenberg.org/ebooks/51610', 'en', 179), +(24307, 'Οιδίπους Τύραννος', 'Sophocles', '2006-02-23', 57, 'https://www.gutenberg.org/ebooks/17839', 'el', 1298), +(24308, 'In the Heart of a Fool', 'White, William Allen', '2009-12-08', 22, 'https://www.gutenberg.org/ebooks/30627', 'en', 61), +(24309, 'Lakiasia: Näytelmä kolmessa näytöksessä', 'Karikko, Kaarle', '2017-03-14', 16, 'https://www.gutenberg.org/ebooks/54362', 'fi', 382), +(24310, 'Nobody\'s Girl\n(En Famille)', 'Malot, Hector', '2009-01-03', 101, 'https://www.gutenberg.org/ebooks/27690', 'en', 3075), +(24311, 'On the Plains with Custer\nThe Western Life and Deeds of the Chief with the Yellow\nHair, under whom Served Boy Bugler Ned Fletcher', 'Sabin, Edwin L. (Edwin Legrand)', '2019-08-24', 0, 'https://www.gutenberg.org/ebooks/60157', 'en', NULL), +(24312, 'The Chautauqua Girls At Home', 'Pansy', '2008-10-01', 38, 'https://www.gutenberg.org/ebooks/26742', 'en', 658); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(24313, 'Strange True Stories of Louisiana', 'Cable, George Washington', '2004-06-01', 56, 'https://www.gutenberg.org/ebooks/12577', 'en', 10272), +(24314, 'Thury Zoltán összes művei (3. kötet)\r\nA kapitány és egyéb elbeszélések', 'Thury, Zoltán', '2013-02-26', 6, 'https://www.gutenberg.org/ebooks/42207', 'hu', 61), +(24315, 'Modern Fiction', 'Warner, Charles Dudley', '2004-12-05', 9, 'https://www.gutenberg.org/ebooks/3120', 'en', 3720), +(24316, 'The Last Cruise of the Saginaw', 'Read, George H. (George Henry)', '2010-04-28', 16, 'https://www.gutenberg.org/ebooks/32170', 'en', 5584), +(24317, 'Asa Holmes; or, At the Cross-Roads', 'Johnston, Annie F. (Annie Fellows)', '2012-05-02', 8, 'https://www.gutenberg.org/ebooks/39598', 'en', 10273), +(24318, 'Syteen taikka saveen\nHuvinäytelmä 1:ssä näytöksessä', 'Alkio, Santeri', '2012-11-25', 10, 'https://www.gutenberg.org/ebooks/41482', 'fi', 402), +(24319, 'The Manoeuvring Mother (vol. 3 of 3)', 'Bury, Charlotte Campbell, Lady', '2018-01-25', 6, 'https://www.gutenberg.org/ebooks/56435', 'en', 137), +(24320, 'A Masque of Days\nFrom the Last Essays of Elia: Newly Dressed & Decorated', 'Lamb, Charles', '2007-12-24', 14, 'https://www.gutenberg.org/ebooks/24015', 'en', 10274), +(24321, 'Daddy Takes Us Skating', 'Garis, Howard Roger', '2003-11-01', 35, 'https://www.gutenberg.org/ebooks/10220', 'en', 10275), +(24322, 'Plain English', 'Wharton, Marian', '2012-08-21', 25, 'https://www.gutenberg.org/ebooks/40550', 'en', 10276), +(24323, 'Alcibiades II', 'Plato (spurious and doubtful works)', '1999-03-01', 49, 'https://www.gutenberg.org/ebooks/1677', 'en', 4117), +(24324, 'Personal Reminiscences of Early Days in California with Other Sketches; To Which Is Added the Story of His Attempted Assassination by a Former Associate on the Supreme Bench of the State', 'Field, Stephen J. (Stephen Johnson)', '2005-05-02', 6, 'https://www.gutenberg.org/ebooks/15752', 'en', 3750), +(24325, 'Dave Dawson with the Air Corps', 'Bowen, Robert Sidney', '2016-05-17', 16, 'https://www.gutenberg.org/ebooks/52095', 'en', 1004), +(24326, 'Miniaturas Romanticas', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2007-05-22', 17, 'https://www.gutenberg.org/ebooks/21567', 'pt', 179), +(24327, 'The Unclassed', 'Gissing, George', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4305', 'en', 45), +(24328, 'Bernard Brooks\' Adventures: The Experience of a Plucky Boy', 'Alger, Horatio, Jr.', '2014-02-26', 18, 'https://www.gutenberg.org/ebooks/45022', 'en', 9572), +(24329, 'The Uses of Italic\nA Primer of Information Regarding the Origin and Uses of Italic Letters', 'Hamilton, Frederick W. (Frederick William)', '2008-03-14', 9, 'https://www.gutenberg.org/ebooks/24829', 'en', 10277), +(24330, 'Vermakelijke anekdoten, en historische herinneringen', 'Lennep, J. van (Jacob)', '2011-09-11', 9, 'https://www.gutenberg.org/ebooks/37402', 'nl', 311), +(24331, 'Albert Durer a Venise et dans les Pays-Bas\nautobiographie, lettres, journal de voyages, papiers divers', 'Dürer, Albrecht', '2016-09-26', 21, 'https://www.gutenberg.org/ebooks/53147', 'fr', 10278), +(24332, 'The Continental Monthly, Vol. 1, No. 5, May, 1862\r\nDevoted To Literature And National Policy', 'Various', '2005-01-13', 11, 'https://www.gutenberg.org/ebooks/14680', 'en', 558), +(24333, 'Dauber: A Poem', 'Masefield, John', '2018-02-20', 23, 'https://www.gutenberg.org/ebooks/56607', 'en', 10279), +(24334, 'Davenport Dunn, a Man of Our Day. Volume 2 (of 2)', 'Lever, Charles James', '2010-05-11', 26, 'https://www.gutenberg.org/ebooks/32342', 'en', 3373), +(24335, 'Dodo\'s Daughter: A Sequel to Dodo', 'Benson, E. F. (Edward Frederic)', '2012-09-14', 16, 'https://www.gutenberg.org/ebooks/40762', 'en', 8836), +(24336, 'The Door of Heaven: A Manual for Holy Communion', 'Burgett, Arthur Edward', '2010-07-30', 9, 'https://www.gutenberg.org/ebooks/33290', 'en', 10280), +(24337, 'Green Stockings: A Comedy in Three Acts', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-26', 13, 'https://www.gutenberg.org/ebooks/38678', 'en', 4001), +(24338, 'Aeroplanes', 'Zerbe, James Slough', '1998-09-01', 8, 'https://www.gutenberg.org/ebooks/1445', 'en', 1577), +(24339, '情變', 'Wu, Jianren', '2008-01-10', 13, 'https://www.gutenberg.org/ebooks/24227', 'zh', 1003), +(24340, 'The Mountains of California', 'Muir, John', '2003-11-01', 99, 'https://www.gutenberg.org/ebooks/10012', 'en', 10281), +(24341, 'Diary of Samuel Pepys — Volume 19: November/December 1662', 'Pepys, Samuel', '2004-11-29', 11, 'https://www.gutenberg.org/ebooks/4137', 'en', 2197), +(24342, 'Legends of the Pike\'s Peak Region; The Sacred Myths of the Manitou', 'Alexander, William S.', '2014-03-25', 13, 'https://www.gutenberg.org/ebooks/45210', 'en', 10282), +(24343, 'Young Folks Treasury, Volume 3 (of 12)\r\nClassic Tales and Old-Fashioned Stories', NULL, '2005-04-06', 50, 'https://www.gutenberg.org/ebooks/15560', 'en', 388), +(24344, 'Personal Reminiscences in Book Making, and Some Short Stories', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 19, 'https://www.gutenberg.org/ebooks/21755', 'en', 10283), +(24345, 'Pride and Prejudice', 'Austen, Jane', '2007-02-03', 52, 'https://www.gutenberg.org/ebooks/20687', 'en', 378), +(24346, 'Occoneechee, the Maid of the Mystic Lake', 'Jarrett, Robert Frank', '2016-10-27', 22, 'https://www.gutenberg.org/ebooks/53375', 'en', 10284), +(24347, 'Cours familier de Littérature - Volume 20', 'Lamartine, Alphonse de', '2011-10-05', 8, 'https://www.gutenberg.org/ebooks/37630', 'fr', 2156), +(24348, 'Theological Essays and Other Papers — Volume 2', 'De Quincey, Thomas', '2004-10-01', 33, 'https://www.gutenberg.org/ebooks/6660', 'en', 5270), +(24349, 'Reise eines Erdbewohners in den Mars', 'Geiger, Carl Ignaz', '2014-12-06', 11, 'https://www.gutenberg.org/ebooks/47547', 'de', 10285), +(24350, 'A Man for the Ages: A Story of the Builders of Democracy', 'Bacheller, Irving', '2005-12-05', 29, 'https://www.gutenberg.org/ebooks/17237', 'en', 1457), +(24351, 'Saint Patrick\n1887', 'Chaplin, Heman White', '2007-10-12', 18, 'https://www.gutenberg.org/ebooks/23002', 'en', 13), +(24352, 'Le Tour du Monde; Côte d\'Ivoire\r\nJournal des voyages et des voyageurs; 2. sem. 1905', 'Various', '2009-07-29', 15, 'https://www.gutenberg.org/ebooks/29538', 'fr', 1294), +(24353, 'A Treatise on the Incubus, or Night-Mare, Disturbed Sleep, Terrific Dreams and Nocturnal Visions', 'Waller, John Augustine', '2013-05-26', 22, 'https://www.gutenberg.org/ebooks/42809', 'en', 10286), +(24354, 'In the path of the alphabet\r\nan historical account of the ancient beginnings and evolution of the modern alphabet', 'Jermain, Frances Delavan Page', '2016-03-11', 9, 'https://www.gutenberg.org/ebooks/51422', 'en', 1278), +(24355, 'Memorie di Giuda, vol. II', 'Petruccelli della Gattina, Ferdinando', '2014-08-03', 10, 'https://www.gutenberg.org/ebooks/46495', 'it', 10287), +(24356, 'Philological Proofs of the Original Unity and Recent Origin of the Human Race', 'Johnes, Arthur James', '2011-02-04', 24, 'https://www.gutenberg.org/ebooks/35167', 'en', 6054), +(24357, 'Pondichéry, hoofdstad van Fransch-Indië\r\nDe Aarde en haar Volken, 1906', 'Verschuur, Gerrit', '2004-10-10', 22, 'https://www.gutenberg.org/ebooks/13697', 'nl', 10288), +(24358, 'Reminiscences, Incidents, Battles, Marches and Camp Life of the Old 4th Michigan Infantry in War of Rebellion, 1861 to 1864', 'Barrett, Orvey S.', '2011-01-08', 7, 'https://www.gutenberg.org/ebooks/34889', 'en', 444), +(24359, 'The Medieval Latin Hymn', 'Messenger, Ruth Ellis', '2017-02-10', 15, 'https://www.gutenberg.org/ebooks/54150', 'en', 10289), +(24360, 'The Galaxy, January, 1877\r\nVol. 23, No. 1', 'Various', '2009-11-07', 65, 'https://www.gutenberg.org/ebooks/30415', 'en', 883), +(24361, 'Buried Cities: Pompeii, Olympia, Mycenae (Complete)', 'Hall, Jennie', '2004-08-10', 75, 'https://www.gutenberg.org/ebooks/9628', 'en', 10290), +(24362, 'Dooryard Stories', 'Pierson, Clara Dillingham', '2013-02-06', 28, 'https://www.gutenberg.org/ebooks/42035', 'en', 388), +(24363, 'The Native Son', 'Gillmore, Inez Haynes', '2002-07-01', 10, 'https://www.gutenberg.org/ebooks/3312', 'en', 7593), +(24364, 'De Pronunciatione Graecae & Latinae Linguae', 'Caius, John', '2008-09-11', 11, 'https://www.gutenberg.org/ebooks/26570', 'la', 10291), +(24365, 'Everybody\'s Book of Luck', 'Anonymous', '2017-07-10', 49, 'https://www.gutenberg.org/ebooks/55082', 'en', 10292), +(24366, 'The World\'s Greatest Books — Volume 11 — Ancient and Mediæval History', NULL, '2004-06-25', 75, 'https://www.gutenberg.org/ebooks/12745', 'en', 2555), +(24367, 'Titus Andronicus', 'Shakespeare, William', '2000-07-01', 54, 'https://www.gutenberg.org/ebooks/2260', 'en', 10293), +(24368, 'Tour through the Eastern Counties of England', 'Defoe, Daniel', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9688', 'en', 4627), +(24369, 'A World of Girls: The Story of a School', 'Meade, L. T.', '2013-07-08', 18, 'https://www.gutenberg.org/ebooks/43147', 'en', 5086), +(24370, 'McClure\'s Magazine, Vol. 6, No. 2, January, 1896', 'Various', '2004-10-05', 37, 'https://www.gutenberg.org/ebooks/13637', 'en', 883), +(24371, 'The Sick-a-Bed Lady\nAnd Also Hickory Dock, The Very Tired Girl, The Happy-Day, Something That Happened in October, The Amateur Lover, Heart of The City, The Pink Sash, Woman\'s Only Business', 'Abbott, Eleanor Hallowell', '2011-01-03', 27, 'https://www.gutenberg.org/ebooks/34829', 'en', 61), +(24372, '風流悟', 'Zuohuasanren', '2008-12-04', 16, 'https://www.gutenberg.org/ebooks/27402', 'zh', 3187), +(24373, 'The Brain of an Army: A Popular Account of the German General Staff', 'Wilkinson, Spenser', '2017-07-01', 10, 'https://www.gutenberg.org/ebooks/55022', 'en', 10294), +(24374, 'The Eve of All-Hallows; Or, Adelaide of Tyrconnel, v. 2 of 3', 'Hartstonge, Matthew Weld', '2013-02-15', 12, 'https://www.gutenberg.org/ebooks/42095', 'en', 61), +(24375, 'The Lawyers, A Drama in Five Acts', 'Iffland, August Wilhelm', '2010-03-09', 6, 'https://www.gutenberg.org/ebooks/31567', 'en', 493), +(24376, 'Captain William Kidd and Others of the Buccaneers', 'Abbott, John S. C. (John Stevens Cabot)', '2015-11-25', 32, 'https://www.gutenberg.org/ebooks/50550', 'en', 645), +(24377, 'British Highways and Byways from a Motor Car\r\nBeing a Record of a Five Thousand Mile Tour in England, Wales and Scotland', 'Murphy, Thos. D. (Thomas Dowler)', '2005-12-13', 16, 'https://www.gutenberg.org/ebooks/17297', 'en', 2364), +(24378, 'The Coast of Bohemia', 'Page, Thomas Nelson', '2010-10-01', 8, 'https://www.gutenberg.org/ebooks/34015', 'en', 178), +(24379, 'Practical Instruction for Detectives: A Complete Course in Secret Service Study', 'Manning, Emmerson Wain', '2014-07-28', 26, 'https://www.gutenberg.org/ebooks/46435', 'en', 1833), +(24380, '\"My Novel\" — Volume 11', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7712', 'en', 6875), +(24381, 'Four Little Blossoms at Brookside Farm', 'Hawley, Mabel C.', '2009-08-03', 16, 'https://www.gutenberg.org/ebooks/29598', 'en', 1123), +(24382, 'Five Lectures on Blindness', 'Foley, Kate M.', '2007-07-30', 20, 'https://www.gutenberg.org/ebooks/22170', 'en', 10295), +(24383, 'Ellen Walton\r\nOr, The Villain and His Victims', 'Addison, Alvin', '2005-07-22', 28, 'https://www.gutenberg.org/ebooks/16345', 'en', 61), +(24384, 'Perfect Answer', 'Stecher, L. J., Jr.', '2016-03-17', 47, 'https://www.gutenberg.org/ebooks/51482', 'en', 67), +(24385, 'Dick Kent, Fur Trader', 'Oblinger, M. M. (Milo Milton)', '2016-06-01', 5, 'https://www.gutenberg.org/ebooks/52207', 'en', 323), +(24386, 'Diary of Samuel Pepys — Volume 72: February/March 1668-69', 'Pepys, Samuel', '2003-06-01', 10, 'https://www.gutenberg.org/ebooks/4197', 'en', 478), +(24387, 'L\'Illustration, No. 3276, 9 Décembre 1905', 'Various', '2011-07-15', 3, 'https://www.gutenberg.org/ebooks/36742', 'fr', 150), +(24388, 'The Adventures of Harry Rochester: A Tale of the Days of Marlborough and Eugene', 'Strang, Herbert', '2013-12-05', 13, 'https://www.gutenberg.org/ebooks/44362', 'en', 10296), +(24389, 'State of the Union Addresses', 'Carter, Jimmy', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/5045', 'en', 1926), +(24390, 'The Babes in the Wood\nMay Bells Series', 'Anonymous', '2011-10-10', 10, 'https://www.gutenberg.org/ebooks/37690', 'en', 859), +(24391, 'Torchy, Private Sec.', 'Ford, Sewell', '2007-02-19', 35, 'https://www.gutenberg.org/ebooks/20627', 'en', 637), +(24392, 'The History of the Great Irish Famine of 1847 (3rd ed.) (1902)\r\nWith Notices of Earlier Irish Famines', 'O\'Rourke, John, Canon', '2004-12-21', 68, 'https://www.gutenberg.org/ebooks/14412', 'en', 10297), +(24393, 'The Modern Pistol and How to Shoot It', 'Winans, Walter', '2012-12-12', 26, 'https://www.gutenberg.org/ebooks/41610', 'en', 10298), +(24394, 'A Cotswold Village; Or, Country Life and Pursuits in Gloucestershire', 'Gibbs, J. Arthur (Joseph Arthur)', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/11160', 'en', 10299), +(24395, 'Rollo in Geneva', 'Abbott, Jacob', '2008-05-06', 33, 'https://www.gutenberg.org/ebooks/25355', 'en', 10300), +(24396, 'The Man from the Bitter Roots', 'Lockhart, Caroline', '2008-01-14', 80, 'https://www.gutenberg.org/ebooks/24287', 'en', 315), +(24397, 'Reina Valera New Testament of the Bible 1862', NULL, '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/5879', 'es', 2781), +(24398, 'Le jardin des supplices', 'Mirbeau, Octave', '2018-08-26', 24, 'https://www.gutenberg.org/ebooks/57775', 'fr', 10253), +(24399, 'The Gray Mask', 'Camp, Wadsworth', '2010-07-22', 13, 'https://www.gutenberg.org/ebooks/33230', 'en', 323), +(24400, 'The Heiress; a comedy, in five acts', 'Burgoyne, John', '2011-06-30', 18, 'https://www.gutenberg.org/ebooks/36570', 'en', 3619), +(24401, 'The Daisy, or, Cautionary Stories in Verse.\nAdapted to the Ideas of Children from Four to Eight Years Old.', 'Turner, Mrs. (Elizabeth)', '2014-03-08', 10, 'https://www.gutenberg.org/ebooks/45082', 'en', 4299), +(24402, 'Karhu-Antin Anni ja Spof\'in pistooli: Kertomus Suomen sodan ajoilta 1808-09', 'Åberg, J. O. (Johan Olof)', '2016-05-10', 3, 'https://www.gutenberg.org/ebooks/52035', 'fi', 890), +(24403, 'Histoire de France 1180-1304 (Volume 3/19)', 'Michelet, Jules', '2007-01-22', 36, 'https://www.gutenberg.org/ebooks/20415', 'fr', 624), +(24404, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1873-01/02)', NULL, '2005-01-06', 17, 'https://www.gutenberg.org/ebooks/14620', 'pt', 10301), +(24405, 'The Jack-Knife Man', 'Butler, Ellis Parker', '2013-11-10', 19, 'https://www.gutenberg.org/ebooks/44150', 'en', 2079), +(24406, 'The Greater Love', 'McCarthy, George T.', '2008-03-25', 26, 'https://www.gutenberg.org/ebooks/24889', 'en', 3872), +(24407, 'Tales and Novels of J. de La Fontaine — Volume 03', 'La Fontaine, Jean de', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/5277', 'en', 2629), +(24408, 'Our Women in the War', 'Dawson, Francis Warrington', '2018-02-04', 4, 'https://www.gutenberg.org/ebooks/56495', 'en', 10302), +(24409, 'Germany and the Next War', 'Bernhardi, Friedrich von', '2004-02-01', 84, 'https://www.gutenberg.org/ebooks/11352', 'en', 10303), +(24410, '司馬法', 'Sima, Rangju, active 4th century B.C.', '2008-04-25', 12, 'https://www.gutenberg.org/ebooks/25167', 'zh', 5135), +(24411, 'The Banner Boy Scouts Mystery', 'Warren, George A.', '2016-08-15', 6, 'https://www.gutenberg.org/ebooks/52809', 'en', 1002), +(24412, 'A Soldier\'s Son', 'Butler, Maude Mary', '2012-04-25', 4, 'https://www.gutenberg.org/ebooks/39538', 'en', 942), +(24413, 'Barbara Lynn: A Tale of the Dales and Fells.', 'Jenkinson, Emily J.', '2012-11-21', 8, 'https://www.gutenberg.org/ebooks/41422', 'en', 10304), +(24414, 'The Shoemaker\'s Apron: A Second Book of Czechoslovak Fairy Tales and Folk Tales', 'Fillmore, Parker', '2010-06-27', 51, 'https://www.gutenberg.org/ebooks/33002', 'en', 10305), +(24415, 'In de Mornin\' and Jes Gib Him One Ob Mine', 'Dunbar, Paul Laurence', '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10280', 'en', 8), +(24416, 'Introduction à la méthode de Léonard de Vinci', 'Valéry, Paul', '2018-07-20', 45, 'https://www.gutenberg.org/ebooks/57547', 'fr', 8221), +(24417, 'The Square Root of 2', 'Nemiroff, Robert J.', '1994-05-01', 81, 'https://www.gutenberg.org/ebooks/129', 'en', 5180), +(24418, 'The Travels and Adventures of Monsieur Violet in California, Sonora, and Western Texas', 'Marryat, Frederick', '2004-09-09', 28, 'https://www.gutenberg.org/ebooks/13405', 'en', 10306), +(24419, 'A Princess in Calico', 'Black, Edith Ferguson', '2008-12-26', 13, 'https://www.gutenberg.org/ebooks/27630', 'en', 470), +(24420, 'Poésies choisies de André Chénier', 'Chénier, André', '2006-03-02', 53, 'https://www.gutenberg.org/ebooks/17899', 'fr', 8), +(24421, 'The Lord of Misrule, and Other Poems', 'Noyes, Alfred', '2009-12-16', 9, 'https://www.gutenberg.org/ebooks/30687', 'en', 8), +(24422, 'Everybody\'s Business Is Nobody\'s Business\r\nOr, Private Abuses, Public Grievances; Exemplified in the Pride, Insolence, and Exorbitant Wages of Our Women, Servants, Footmen, &c.', 'Defoe, Daniel', '2000-01-01', 32, 'https://www.gutenberg.org/ebooks/2052', 'en', 10307), +(24423, 'Measuring Tools', 'Unknown', '2013-08-01', 129, 'https://www.gutenberg.org/ebooks/43375', 'en', 10308), +(24424, 'Political Application', 'Peterson, John Victor', '2010-03-24', 18, 'https://www.gutenberg.org/ebooks/31755', 'en', 179), +(24425, 'A Double Barrelled Detective Story', 'Twain, Mark', '2004-09-16', 103, 'https://www.gutenberg.org/ebooks/3180', 'en', 128), +(24426, 'Des Meeres und der Liebe Wellen: Trauerspiel in fünf Aufzügen', 'Grillparzer, Franz', '2005-07-01', 30, 'https://www.gutenberg.org/ebooks/8568', 'de', 10309), +(24427, 'Arsène Lupin miljoonaperillisenä', 'Leblanc, Maurice', '2017-07-27', 17, 'https://www.gutenberg.org/ebooks/55210', 'fi', 4343), +(24428, 'Library Work with Children', 'Hazeltine, Alice Isabel', '1997-05-01', 34, 'https://www.gutenberg.org/ebooks/915', 'en', 10310), +(24429, 'Her Letter, His Answer & Her Last Letter', 'Harte, Bret', '2010-11-07', 20, 'https://www.gutenberg.org/ebooks/34227', 'en', 178), +(24430, 'Sketches of Fifteen Members of Worcester Fire Society', 'Davis, Isaac', '2015-12-24', 4, 'https://www.gutenberg.org/ebooks/50762', 'en', 10311), +(24431, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 12, December, 1880', 'Various', '2009-05-03', 8, 'https://www.gutenberg.org/ebooks/28678', 'en', 1829), +(24432, 'The Dogs\' Dinner Party', 'Unknown', '2007-11-02', 9, 'https://www.gutenberg.org/ebooks/23290', 'en', 766), +(24433, 'Supermind', 'Garrett, Randall', '2007-08-16', 74, 'https://www.gutenberg.org/ebooks/22342', 'en', 784), +(24434, 'The Great Round World and What Is Going On In It, Vol. 1, No. 54, November 18, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-07-02', 18, 'https://www.gutenberg.org/ebooks/16177', 'en', 1), +(24435, 'Jelly-Fish, Star-Fish, and Sea-Urchins: Being a Research on Primitive Nervous Systems', 'Romanes, George John', '2014-08-17', 18, 'https://www.gutenberg.org/ebooks/46607', 'en', 10312), +(24436, 'Snow-Blind', 'Burt, Katharine Newlin', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7520', 'en', 10313), +(24437, 'The American Missionary — Volume 49, No. 05, May, 1895', 'Various', '2006-11-23', 2, 'https://www.gutenberg.org/ebooks/19903', 'en', 395), +(24438, 'Sue, A Little Heroine', 'Meade, L. T.', '2006-12-09', 44, 'https://www.gutenberg.org/ebooks/20071', 'en', 5076), +(24439, 'Ombra', 'Oliphant, Mrs. (Margaret)', '2016-11-23', 11, 'https://www.gutenberg.org/ebooks/53583', 'en', 4444), +(24440, 'The Romance of Tristan and Iseult', 'Bédier, Joseph', '2004-12-03', 195, 'https://www.gutenberg.org/ebooks/14244', 'en', 303), +(24441, 'A Trip to Mars', 'Aubrey, Frank', '2013-12-28', 21, 'https://www.gutenberg.org/ebooks/44534', 'en', 26), +(24442, 'Relativity: The Special & the General Theory\r\nA Popular Exposition, 3rd ed.', 'Einstein, Albert', '2011-05-15', 125, 'https://www.gutenberg.org/ebooks/36114', 'en', 2846), +(24443, 'The Works of Sir Thomas Browne, Volume 1', 'Browne, Thomas, Sir', '2012-07-24', 60, 'https://www.gutenberg.org/ebooks/39960', 'en', 10314), +(24444, 'Tender Buttons\nObjects—Food—Rooms', 'Stein, Gertrude', '2005-03-17', 299, 'https://www.gutenberg.org/ebooks/15396', 'en', 4723), +(24445, 'Living Bayonets: A Record of the Last Push', 'Dawson, Coningsby', '2016-06-30', 7, 'https://www.gutenberg.org/ebooks/52451', 'en', 3601), +(24446, 'La Vie de Madame Élisabeth, soeur de Louis XVI, Volume 1', 'Beauchesne, A. de (Alcide)', '2012-07-10', 18, 'https://www.gutenberg.org/ebooks/40194', 'fr', 10315), +(24447, 'Karlsschüler und Dichter: Geschichtliche Erzählung für die deutsche Jugend', 'Ohorn, Anton', '2019-02-24', 5, 'https://www.gutenberg.org/ebooks/58957', 'de', 98), +(24448, 'The Social Gangster', 'Reeve, Arthur B. (Arthur Benjamin)', '2010-08-19', 42, 'https://www.gutenberg.org/ebooks/33466', 'en', 6236), +(24449, 'Kellogg\'s Great Crops of Strawberries, and How to Grow Them the Kellogg Way', 'R. M. Kellogg Co.', '2018-05-09', 8, 'https://www.gutenberg.org/ebooks/57123', 'en', 10316), +(24450, 'Scientific American Supplement, No. 586, March 26, 1887', 'Various', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11736', 'en', 210), +(24451, 'Memoir of Mary L. Ware, Wife of Henry Ware, Jr.', 'Hall, Edward B. (Edward Brooks)', '2011-07-31', 8, 'https://www.gutenberg.org/ebooks/36928', 'en', 10317), +(24452, 'Le Tour du Monde; Scandinavie\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-05-17', 7, 'https://www.gutenberg.org/ebooks/25503', 'fr', 1182), +(24453, 'Wild Animals of the Rockies\nWith a List of Mammals found in Rocky Mountain National Park', 'Gilligan, James P. (James Pershing)', '2019-07-10', 81, 'https://www.gutenberg.org/ebooks/59885', 'en', 10318), +(24454, 'International Law. A Treatise. Volume 1 (of 2)\r\nPeace. Second Edition', 'Oppenheim, L. (Lassa)', '2012-10-16', 143, 'https://www.gutenberg.org/ebooks/41046', 'en', 4333), +(24455, 'The Ballotless Victim of One-Party Governments\nThe American Negro Academy, Occasional Papers No. 16', 'Grimké, Archibald Henry', '2010-02-20', 6, 'https://www.gutenberg.org/ebooks/31331', 'en', 10319), +(24456, 'Laboulaye\'s Fairy Book', 'Laboulaye, Édouard', '2008-08-21', 30, 'https://www.gutenberg.org/ebooks/26386', 'en', 1007), +(24457, 'Legends, Traditions, and Laws of the Iroquois, or Six Nations, and History of the Tuscarora Indians', 'Johnson, Elias', '2005-04-01', 36, 'https://www.gutenberg.org/ebooks/7978', 'en', 6429), +(24458, 'The Sacred Books and Early Literature of the East, Volume 6 (of 14)\r\nMedieval Arabic, Moorish, and Turkish', NULL, '2017-10-02', 26, 'https://www.gutenberg.org/ebooks/55674', 'en', 10320), +(24459, 'A Court of Inquiry', 'Richmond, Grace S. (Grace Smith)', '2006-06-02', 15, 'https://www.gutenberg.org/ebooks/18489', 'en', 61), +(24460, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 15, No. 87, March, 1875', 'Various', '2004-07-31', 10, 'https://www.gutenberg.org/ebooks/13061', 'en', 162), +(24461, 'Die Romantik der Chemie', 'Nagel, Oskar', '2008-11-13', 17, 'https://www.gutenberg.org/ebooks/27254', 'de', 292), +(24462, 'The Marriages', 'James, Henry', '2000-12-01', 32, 'https://www.gutenberg.org/ebooks/2436', 'en', 675), +(24463, 'A History of Chinese Literature', 'Giles, Herbert Allen', '2013-09-13', 45, 'https://www.gutenberg.org/ebooks/43711', 'en', 2350), +(24464, 'New Poems', 'Lawrence, D. H. (David Herbert)', '2007-09-22', 74, 'https://www.gutenberg.org/ebooks/22726', 'en', 8), +(24465, 'World\'s War Events Volume 3\r\nBeginning with the departure of the first American destroyers for service abroad in April, 1917, and closing with the treaties of peace in 1919.', NULL, '2005-08-12', 50, 'https://www.gutenberg.org/ebooks/16513', 'en', 335), +(24466, 'Counter-Attack and Other Poems', 'Sassoon, Siegfried', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8930', 'en', 2100), +(24467, 'Kabouters in het Bosch', 'Valkenstein, Kees', '2014-07-12', 6, 'https://www.gutenberg.org/ebooks/46263', 'nl', 10321), +(24468, 'While the Billy Boils', 'Lawson, Henry', '2004-12-01', 103, 'https://www.gutenberg.org/ebooks/7144', 'en', 3237), +(24469, 'Babylonian-Assyrian Birth-Omens and Their Cultural Significance', 'Jastrow, Morris', '2011-04-08', 25, 'https://www.gutenberg.org/ebooks/35791', 'en', 10322), +(24470, 'Amelia — Volume 2', 'Fielding, Henry', '2004-07-01', 29, 'https://www.gutenberg.org/ebooks/6096', 'en', 434), +(24471, 'Carmen', 'Mérimée, Prosper', '2010-12-13', 21, 'https://www.gutenberg.org/ebooks/34643', 'nl', 6050), +(24472, 'Rinaldo ardito: Frammenti inediti pubblicati sul manoscritto originale', 'Ariosto, Lodovico', '2015-10-25', 22, 'https://www.gutenberg.org/ebooks/50306', 'it', 739), +(24473, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 08, August 1895\r\nFragments of Greek Detail', 'Various', '2006-11-12', 12, 'https://www.gutenberg.org/ebooks/19769', 'en', 2140), +(24474, 'L\'Illustration, No. 3739, 31 October 1914', 'Various', '2017-08-27', 3, 'https://www.gutenberg.org/ebooks/55446', 'fr', 335), +(24475, 'The Auchensaugh Renovation of the National Covenant and\nSolemn League and Covenant\nWith the Acknowledgment of Sins and Engagement to Duties, as They\nWere Renewed at Auchensaugh, Near Douglas, July 24, 1712. (Compared\nWith the Editions of Paisley, 1820, and Belfast, 1835.) Also, The\nRenovation of These Public Federal Deeds Ordained at Philadelphia,\nOctober 8, 1880, by the Reformed Presbytery, with Accommodation of\nthe Original Covenants, in Both Transactions, to Their Times and\nPositions Respectively', 'Reformed Presbytery of North America', '2004-05-01', 8, 'https://www.gutenberg.org/ebooks/12381', 'en', 5848), +(24476, 'Kirkcaldy of Grange', 'Barbé, Louis A.', '2015-05-22', 15, 'https://www.gutenberg.org/ebooks/49019', 'en', 10323), +(24477, 'A Christmas Greeting: A Series of Stories', 'Andersen, H. C. (Hans Christian)', '2010-01-27', 42, 'https://www.gutenberg.org/ebooks/31103', 'en', 10324), +(24478, 'A Relic of the Revolution', 'Herbert, Charles', '2016-01-12', 18, 'https://www.gutenberg.org/ebooks/50908', 'en', 10325), +(24479, 'The Longest Journey', 'Forster, E. M. (Edward Morgan)', '2001-04-01', 206, 'https://www.gutenberg.org/ebooks/2604', 'en', 95), +(24480, 'Every Girl\'s Book', 'Butler, George Frank', '2009-05-14', 30, 'https://www.gutenberg.org/ebooks/28812', 'en', 2378), +(24481, 'Familiar Letters\r\nThe Writings of Henry David Thoreau, Volume 06 (of 20)', 'Thoreau, Henry David', '2013-08-20', 44, 'https://www.gutenberg.org/ebooks/43523', 'en', 2518), +(24482, 'Punch, or the London Charivari, Volume 100, February 21, 1891', 'Various', '2004-08-22', 5, 'https://www.gutenberg.org/ebooks/13253', 'en', 134), +(24483, 'Adventures of an Aide-de-Camp; or, A Campaign in Calabria, Volume 2 (of 3)', 'Grant, James', '2017-04-23', 8, 'https://www.gutenberg.org/ebooks/54594', 'en', 10326), +(24484, 'Making a Lawn', 'Doogue, Luke Joseph', '2008-10-27', 22, 'https://www.gutenberg.org/ebooks/27066', 'en', 10327), +(24485, 'Amor de Salvação', 'Castelo Branco, Camilo', '2008-10-21', 20, 'https://www.gutenberg.org/ebooks/26988', 'pt', 3856), +(24486, 'South American Jungle Tales', 'Quiroga, Horacio', '2014-06-20', 38, 'https://www.gutenberg.org/ebooks/46051', 'en', 625), +(24487, '中庸 章句', 'Zhu, Xi', '2005-01-01', 33, 'https://www.gutenberg.org/ebooks/7376', 'zh', 10328), +(24488, 'Niilo Bonpoika Sture 2: Kuninkaankruunu', 'Starbäck, C. Georg (Carl Georg)', '2015-08-30', 7, 'https://www.gutenberg.org/ebooks/49825', 'fi', 98), +(24489, 'Perth\'in kaupungin kaunotar', 'Scott, Walter', '2007-09-05', 17, 'https://www.gutenberg.org/ebooks/22514', 'fi', 974), +(24490, 'A Place so Foreign', 'Doctorow, Cory', '2005-09-19', 33, 'https://www.gutenberg.org/ebooks/16721', 'en', 26), +(24491, 'Running the Blockade\r\nA Personal Narrative of Adventures, Risks, and Escapes During the American Civil War', 'Taylor, Thomas E.', '2015-10-05', 19, 'https://www.gutenberg.org/ebooks/50134', 'en', 10329), +(24492, 'The Government of England (Vol. I)', 'Lowell, A. Lawrence (Abbott Lawrence)', '2010-11-28', 11, 'https://www.gutenberg.org/ebooks/34471', 'en', 5067), +(24493, 'Appletons\' Popular Science Monthly, April 1900\nVol. 56, Nov. 1899 to April, 1900', 'Various', '2014-10-23', 10, 'https://www.gutenberg.org/ebooks/47183', 'en', 352), +(24494, 'Punch, or the London Charivari, Vol. 108, April 13, 1895', 'Various', '2014-01-19', 15, 'https://www.gutenberg.org/ebooks/44706', 'en', 134), +(24495, 'The Metropolis', 'Sinclair, Upton', '2004-04-01', 37, 'https://www.gutenberg.org/ebooks/5421', 'en', 4330), +(24496, 'Dross', 'Merriman, Henry Seton', '2007-01-01', 17, 'https://www.gutenberg.org/ebooks/20243', 'en', 2373), +(24497, 'The Mythology of All Races, Vol. 11: Latin-American', 'Alexander, Hartley Burr', '2018-11-26', 28, 'https://www.gutenberg.org/ebooks/58359', 'en', 75), +(24498, 'The Elephant God', 'Casserly, Gordon', '2004-11-17', 24, 'https://www.gutenberg.org/ebooks/14076', 'en', 1736), +(24499, 'American Journal of Science, Vol. 1.', 'Various', '2016-07-28', 15, 'https://www.gutenberg.org/ebooks/52663', 'en', 210), +(24500, 'Great African Travellers: From Mungo Park to Livingstone and Stanley', 'Kingston, William Henry Giles', '2007-05-08', 28, 'https://www.gutenberg.org/ebooks/21391', 'en', 9053), +(24501, 'Sciogli la treccia, Maria Maddalena; romanzo', 'Verona, Guido da', '2011-06-04', 7, 'https://www.gutenberg.org/ebooks/36326', 'it', 1544), +(24502, 'The Heart of a Mystery', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-12', 15, 'https://www.gutenberg.org/ebooks/57311', 'en', 137), +(24503, 'The Old English Herbals', 'Rohde, Eleanour Sinclair', '2010-09-06', 59, 'https://www.gutenberg.org/ebooks/33654', 'en', 10330), +(24504, 'Dead Souls', 'Gogol, Nikolai Vasilevich', '1997-10-01', 296, 'https://www.gutenberg.org/ebooks/1081', 'en', 781), +(24505, 'Alfred Russel Wallace: Letters and Reminiscences, Vol. 2', 'Wallace, Alfred Russel', '2005-06-07', 24, 'https://www.gutenberg.org/ebooks/15998', 'en', 10331), +(24506, 'Legends of Florence: Collected from the People, First Series', 'Leland, Charles Godfrey', '2010-06-12', 32, 'https://www.gutenberg.org/ebooks/32786', 'en', 10332), +(24507, 'A New Catalogue of Vulgar Errors', 'Fovargue, Stephen', '2012-11-03', 10, 'https://www.gutenberg.org/ebooks/41274', 'en', 5881), +(24508, 'Further Foolishness', 'Leacock, Stephen', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/11504', 'en', 10333), +(24509, 'Ancient Egyptian and Greek Looms', 'Roth, H. Ling (Henry Ling)', '2008-06-08', 47, 'https://www.gutenberg.org/ebooks/25731', 'en', 3494), +(24510, 'The Tragic Muse', 'James, Henry', '2006-12-10', 53, 'https://www.gutenberg.org/ebooks/20085', 'en', 109), +(24511, 'The Wreckers', 'Lynde, Francis', '2012-02-12', 92, 'https://www.gutenberg.org/ebooks/38846', 'en', 10334), +(24512, 'The Saturday Magazine, No. 66, July 1833', 'Various', '2016-11-22', 5, 'https://www.gutenberg.org/ebooks/53577', 'en', 10335), +(24513, 'Religion And Health', 'Walsh, James J. (James Joseph)', '2011-08-10', 34, 'https://www.gutenberg.org/ebooks/37032', 'en', 10336), +(24514, 'The Century Illustrated Monthly Magazine, July, 1913\nVol. LXXXVI. New Series: Vol. LXIV. May to October, 1913', 'Various', '2018-03-25', 14, 'https://www.gutenberg.org/ebooks/56839', 'en', 18), +(24515, 'The Shepherd of the Hills', 'Wright, Harold Bell', '2003-12-01', 69, 'https://www.gutenberg.org/ebooks/4735', 'en', 4187), +(24516, '\"Broke,\" The Man Without the Dime', 'Brown, Edwin A.', '2014-04-16', 5, 'https://www.gutenberg.org/ebooks/45412', 'en', 10337), +(24517, 'The American Missionary — Volume 44, No. 03, March, 1890', 'Various', '2005-03-14', 3, 'https://www.gutenberg.org/ebooks/15362', 'en', 562), +(24518, 'Mountain: A Novel', 'Wood, Clement', '2012-06-14', 14, 'https://www.gutenberg.org/ebooks/39994', 'en', 6156), +(24519, 'Queen Lucia', 'Benson, E. F. (Edward Frederic)', '2007-04-24', 29, 'https://www.gutenberg.org/ebooks/21157', 'en', 432), +(24520, 'Manners: A Novel, Vol 3', 'Panache, Madame', '2012-07-07', 16, 'https://www.gutenberg.org/ebooks/40160', 'en', 1902), +(24521, 'Second April', 'Millay, Edna St. Vincent', '1998-03-01', 51, 'https://www.gutenberg.org/ebooks/1247', 'en', 178), +(24522, 'The Christian Use of the Psalter', 'Whitham, A. R. (Arthur Richard)', '2010-08-22', 13, 'https://www.gutenberg.org/ebooks/33492', 'en', 9166), +(24523, 'Frits Millioen en zijne vrienden', 'Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida)', '2008-01-25', 14, 'https://www.gutenberg.org/ebooks/24425', 'nl', 61), +(24524, 'Letters and Journals of James, Eighth Earl of Elgin', 'Elgin, James Bruce, Earl of', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/10610', 'en', 10338), +(24525, 'Marsena, and Other Stories of the Wartime', 'Frederic, Harold', '2017-11-19', 3, 'https://www.gutenberg.org/ebooks/56005', 'en', 403), +(24526, 'Suomalaisia keskiajan tutkimuksia: Veroja, laitoksia, virkamiehiä', 'Voionmaa, Väinö', '2019-07-07', 8, 'https://www.gutenberg.org/ebooks/59871', 'fi', 1578), +(24527, 'My First Summer in the Sierra', 'Muir, John', '2010-05-26', 242, 'https://www.gutenberg.org/ebooks/32540', 'en', 6476), +(24528, 'Histoire de la Monarchie de Juillet (Volume 3 / 7)', 'Thureau-Dangin, Paul', '2013-05-03', 10, 'https://www.gutenberg.org/ebooks/42637', 'fr', 8446), +(24529, 'Human Genome Project, Chromosome Number 10', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3510', 'en', 1041), +(24530, 'Panther Eye', 'Snell, Roy J. (Roy Judson)', '2008-08-20', 28, 'https://www.gutenberg.org/ebooks/26372', 'en', 128), +(24531, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 565, September 8, 1832', 'Various', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/12147', 'en', 133), +(24532, 'Transmission; or, Variation of Character Through the Mother', 'Kirby, Georgiana Bruce', '2017-10-05', 21, 'https://www.gutenberg.org/ebooks/55680', 'en', 2187), +(24533, 'The Strange Case of Dr. Jekyll and Mr. Hyde', 'Stevenson, Robert Louis', '1992-10-01', 1616, 'https://www.gutenberg.org/ebooks/42', 'en', 1061), +(24534, 'Catalogue of Practical and Scientific Books', 'Henry Carey Baird & Co.', '2017-05-21', 7, 'https://www.gutenberg.org/ebooks/54752', 'en', 10339), +(24535, 'Journal of a Voyage across the Atlantic\r\nWith Notes on Canada & the United States, and Return to Great Britain in 1844', 'Moore, George', '2004-08-03', 45, 'https://www.gutenberg.org/ebooks/13095', 'en', 1110), +(24536, 'Pleistocene Bats from San Josecito Cave, Nuevo Leon, Mexico', 'Jones, J. Knox', '2009-10-09', 12, 'https://www.gutenberg.org/ebooks/30217', 'en', 10340), +(24537, 'Crito', 'Plato', '2016-02-14', 30, 'https://www.gutenberg.org/ebooks/51220', 'la', 104), +(24538, 'La quaderna di Nanni\nLe Commedie, vol. 1', 'Carrera, Valentino', '2014-07-15', 6, 'https://www.gutenberg.org/ebooks/46297', 'it', 4296), +(24539, 'Lily Pearl and The Mistress of Rosedale', 'Glenwood, Ida', '2011-04-04', 6, 'https://www.gutenberg.org/ebooks/35765', 'en', 61), +(24540, 'Pike County Ballads and Other Poems', 'Hay, John', '2004-07-01', 25, 'https://www.gutenberg.org/ebooks/6062', 'en', 350), +(24541, 'Mémoires d\'un Éléphant blanc', 'Gautier, Judith', '2014-11-14', 20, 'https://www.gutenberg.org/ebooks/47345', 'fr', 10341), +(24542, 'Lo, Michael!', 'Hill, Grace Livingston', '2006-02-01', 36, 'https://www.gutenberg.org/ebooks/9816', 'en', 1397), +(24543, 'The Days of Mohammed', 'Wilson, Anna May', '2005-12-31', 18, 'https://www.gutenberg.org/ebooks/17435', 'en', 10342), +(24544, 'La gaviota', 'Caballero, Fernán', '2007-11-23', 47, 'https://www.gutenberg.org/ebooks/23600', 'es', 1353), +(24545, 'Security', 'Kenyon, Ernest M.', '2008-07-28', 20, 'https://www.gutenberg.org/ebooks/26140', 'en', 179), +(24546, 'Dithyramben', 'Goll, Yvan', '2014-09-19', 7, 'https://www.gutenberg.org/ebooks/46899', 'de', 60), +(24547, 'Masters of Space\r\nMorse and the Telegraph; Thompson and the Cable; Bell and the Telephone; Marconi and the Wireless Telegraph; Carty and the Wireless Telephone', 'Towers, Walter Kellogg', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/12375', 'en', 6843), +(24548, 'The Auburndale Watch Company\nFirst American Attempt Toward the Dollar Watch', 'Battison, Edwin A.', '2009-09-08', 16, 'https://www.gutenberg.org/ebooks/29934', 'en', 10343), +(24549, 'Monumental Java', 'Scheltema, J. F. (Johann Friedrich )', '2013-03-24', 28, 'https://www.gutenberg.org/ebooks/42405', 'en', 10344), +(24550, 'A Daughter of the Land', 'Stratton-Porter, Gene', '2003-02-01', 53, 'https://www.gutenberg.org/ebooks/3722', 'en', 3016), +(24551, 'Footprints on the Sea-Shore (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9218', 'en', 179), +(24552, 'Rugs: Oriental and Occidental, Antique & Modern\nA Handbook for Ready Reference', 'Holt, Rosa Belle', '2009-09-19', 19, 'https://www.gutenberg.org/ebooks/30025', 'en', 8295), +(24553, 'Sewastopol', 'Tolstoy, Leo, graf', '2017-04-17', 26, 'https://www.gutenberg.org/ebooks/54560', 'de', 1871), +(24554, '括異志', 'Zhang, Shizheng, active 11th century', '2008-10-29', 35, 'https://www.gutenberg.org/ebooks/27092', 'zh', 2525), +(24555, 'Outa Karel\'s Stories: South African Folk-Lore Tales', 'Metelerkamp, Sanni', '2011-03-12', 20, 'https://www.gutenberg.org/ebooks/35557', 'en', 10345), +(24556, 'The Life of the Rt. Hon. Sir Charles W. Dilke, Volume 1', 'Gwynn, Stephen Lucius', '2005-01-01', 31, 'https://www.gutenberg.org/ebooks/7382', 'en', 10346), +(24557, 'Harper\'s Young People, August 24, 1880\nAn Illustrated Weekly', 'Various', '2009-06-13', 10, 'https://www.gutenberg.org/ebooks/29108', 'en', 479), +(24558, 'L\'otage: Drame en trois actes', 'Claudel, Paul', '2016-01-23', 15, 'https://www.gutenberg.org/ebooks/51012', 'fr', 2870), +(24559, 'Superstition In All Ages (1732)\nCommon Sense', 'Holbach, Paul Henri Thiry, baron d\'', '2006-01-25', 172, 'https://www.gutenberg.org/ebooks/17607', 'en', 471), +(24560, 'Old Roads and New Roads', 'Donne, William Bodham', '2009-12-31', 9, 'https://www.gutenberg.org/ebooks/30819', 'en', 4067), +(24561, 'El libro de las mil noches y una noche; t. 3', 'Anonymous', '2015-05-09', 75, 'https://www.gutenberg.org/ebooks/48903', 'es', 3347), +(24562, 'Masterpieces of Mystery in Four Volumes: Mystic-Humorous Stories', NULL, '2007-11-10', 109, 'https://www.gutenberg.org/ebooks/23432', 'en', 128), +(24563, 'The Circassian Chief: A Romance of Russia', 'Kingston, William Henry Giles', '2010-11-29', 26, 'https://www.gutenberg.org/ebooks/34485', 'en', 10347), +(24564, 'Michel and Angele [A Ladder of Swords] — Volume 1', 'Parker, Gilbert', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6250', 'en', 10348), +(24565, 'The Sunbonnet Babies in Italy', 'Grover, Eulalie Osgood', '2014-10-23', 15, 'https://www.gutenberg.org/ebooks/47177', 'en', 4426), +(24566, 'Διηγήματα, Τόμος Α', 'Moraitides, Alexandros', '2011-08-24', 13, 'https://www.gutenberg.org/ebooks/37200', 'el', 179), +(24567, 'The Yellow Crayon', 'Oppenheim, E. Phillips (Edward Phillips)', '1999-08-01', 35, 'https://www.gutenberg.org/ebooks/1849', 'en', 128), +(24568, 'Le Corbeau = The Raven', 'Poe, Edgar Allan', '2004-11-18', 134, 'https://www.gutenberg.org/ebooks/14082', 'fr', 10349), +(24569, 'Persialaisia kirjeitä', 'Montesquieu, Charles de Secondat, baron de', '2016-12-16', 14, 'https://www.gutenberg.org/ebooks/53745', 'fi', 258), +(24570, 'Five Years in the Alleghanies', 'Cross, Jonathan', '2016-08-02', 6, 'https://www.gutenberg.org/ebooks/52697', 'en', 3292), +(24571, 'La maison de la courtisane: Nouveaux Poèmes', 'Wilde, Oscar', '2005-02-22', 20, 'https://www.gutenberg.org/ebooks/15150', 'fr', 8), +(24572, 'Rob Harlow\'s Adventures: A Story of the Grand Chaco', 'Fenn, George Manville', '2007-05-08', 26, 'https://www.gutenberg.org/ebooks/21365', 'en', 10350), +(24573, 'As a Man Thinketh', 'Allen, James', '2003-10-01', 1713, 'https://www.gutenberg.org/ebooks/4507', 'en', 43), +(24574, 'The Lost and Hostile Gospels\r\nAn Essay on the Toledoth Jeschu, and the Petrine and Pauline Gospels of the First Three Centuries of Which Fragments Remain', 'Baring-Gould, S. (Sabine)', '2014-05-08', 67, 'https://www.gutenberg.org/ebooks/45620', 'en', 10351), +(24575, 'The Wild Man of the West: A Tale of the Rocky Mountains', 'Ballantyne, R. M. (Robert Michael)', '2008-02-15', 26, 'https://www.gutenberg.org/ebooks/24617', 'en', 195), +(24576, 'Caesar Dies', 'Mundy, Talbot', '2003-12-01', 48, 'https://www.gutenberg.org/ebooks/10422', 'en', 10352), +(24577, 'Punch, or the London Charivari, Vol. 107. August 4, 1894.', 'Various', '2012-07-27', 13, 'https://www.gutenberg.org/ebooks/40352', 'en', 134), +(24578, 'The Strength of the Strong', 'London, Jack', '1997-10-01', 73, 'https://www.gutenberg.org/ebooks/1075', 'en', 2186), +(24579, 'Pottery, for Artists, Craftsmen & Teachers', 'Cox, George James', '2011-12-08', 20, 'https://www.gutenberg.org/ebooks/38248', 'en', 4784), +(24580, 'Rewards and Fairies', 'Kipling, Rudyard', '2010-06-11', 54, 'https://www.gutenberg.org/ebooks/32772', 'en', 54), +(24581, 'Christianity and Modern Thought', 'Peabody, Andrew P. (Andrew Preston)', '2012-11-03', 18, 'https://www.gutenberg.org/ebooks/41280', 'en', 2706), +(24582, 'The Pink Shop', 'Hume, Fergus', '2017-12-23', 43, 'https://www.gutenberg.org/ebooks/56237', 'en', 1425), +(24583, 'Anthology of Massachusetts Poets', NULL, '2000-08-01', 8, 'https://www.gutenberg.org/ebooks/2294', 'en', 994), +(24584, 'Canned Fruit, Preserves, and Jellies: Household Methods of Preparation', 'Parloa, Maria', '2009-11-09', 62, 'https://www.gutenberg.org/ebooks/30441', 'en', 7636), +(24585, 'The Redemption of Kenneth Galt', 'Harben, Will N. (Will Nathaniel)', '2017-02-04', 6, 'https://www.gutenberg.org/ebooks/54104', 'en', 8079), +(24586, 'The Huguenots in France', 'Smiles, Samuel', '2008-09-04', 20, 'https://www.gutenberg.org/ebooks/26524', 'en', 10353), +(24587, 'On the Decay of the Art of Lying', 'Twain, Mark', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12711', 'en', 20), +(24588, 'The Boy\'s Book of Industrial Information', 'Noyce, Elisha', '2015-07-19', 12, 'https://www.gutenberg.org/ebooks/49489', 'en', 10354), +(24589, 'The American Egypt: A Record of Travel in Yucatan', 'Arnold, Channing', '2013-02-10', 52, 'https://www.gutenberg.org/ebooks/42061', 'en', 4339), +(24590, 'The Wandering Jew — Volume 08', 'Sue, Eugène', '2004-10-25', 9, 'https://www.gutenberg.org/ebooks/3346', 'en', 1380), +(24591, 'Wilson\'s Tales of the Borders and of Scotland, Volume 03', NULL, '2010-03-10', 7, 'https://www.gutenberg.org/ebooks/31593', 'en', 3672), +(24592, 'The Astonishing History of Troy Town', 'Quiller-Couch, Arthur', '2005-12-09', 32, 'https://www.gutenberg.org/ebooks/17263', 'en', 166), +(24593, 'The Rendezvous\n1907', 'Turgenev, Ivan Sergeevich', '2007-10-17', 23, 'https://www.gutenberg.org/ebooks/23056', 'en', 85), +(24594, 'The Philosophy of the Practical: Economic and Ethic', 'Croce, Benedetto', '2017-06-19', 11, 'https://www.gutenberg.org/ebooks/54938', 'en', 4680), +(24595, 'A Popular History of Ireland : from the Earliest Period to the Emancipation of the Catholics — Complete', 'McGee, Thomas D\'Arcy', '2004-10-01', 45, 'https://www.gutenberg.org/ebooks/6634', 'en', 7442), +(24596, 'The Flea', 'Russell, Harold', '2014-12-02', 33, 'https://www.gutenberg.org/ebooks/47513', 'en', 10355), +(24597, 'The South-West, by a Yankee. In Two Volumes. Volume 1', 'Ingraham, J. H. (Joseph Holt)', '2011-01-31', 18, 'https://www.gutenberg.org/ebooks/35133', 'en', 10356), +(24598, 'More Tales in the Land of Nursery Rhyme', 'Marzials, Ada M.', '2007-07-31', 9, 'https://www.gutenberg.org/ebooks/22184', 'en', 1007), +(24599, 'Der Golem', 'Meyrink, Gustav', '2016-03-16', 65, 'https://www.gutenberg.org/ebooks/51476', 'de', 5483), +(24600, 'Children of the Market Place', 'Masters, Edgar Lee', '2005-04-04', 13, 'https://www.gutenberg.org/ebooks/15534', 'en', 10357), +(24601, 'The Settler and the Savage', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 32, 'https://www.gutenberg.org/ebooks/21701', 'en', 195), +(24602, 'Diary of Samuel Pepys — Volume 41: January/February 1665-66', 'Pepys, Samuel', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/4163', 'en', 201), +(24603, 'Popular British Ballads, Ancient and Modern, Vol. 4 (of 4)', NULL, '2014-03-28', 3, 'https://www.gutenberg.org/ebooks/45244', 'en', 4582), +(24604, 'Child Labor in City Streets', 'Clopper, Edward Nicholas', '2013-12-09', 11, 'https://www.gutenberg.org/ebooks/44396', 'en', 10358), +(24605, 'The Sins of the Children: A Novel', 'Hamilton, Cosmo', '2011-10-07', 27, 'https://www.gutenberg.org/ebooks/37664', 'en', 61), +(24606, 'Le Satyricon', 'Petronius Arbiter', '2016-10-19', 37, 'https://www.gutenberg.org/ebooks/53321', 'fr', 10359), +(24607, 'The Honored Prophet', 'Bentley, William E.', '2010-05-10', 25, 'https://www.gutenberg.org/ebooks/32316', 'en', 26), +(24608, 'Vignettes in Verse', 'Betham, Matilda', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/11194', 'en', 8), +(24609, 'The German Fleet\r\nBeing The Companion Volume to \"The Fleets At War\" and \"From Heligoland To Keeling Island', 'Hurd, Archibald', '2018-02-27', 11, 'https://www.gutenberg.org/ebooks/56653', 'en', 8699), +(24610, '西湖佳話', 'Mo, Langzi, pseud.', '2008-01-14', 20, 'https://www.gutenberg.org/ebooks/24273', 'zh', 10360), +(24611, 'Cañas y barro: Novela', 'Blasco Ibáñez, Vicente', '2018-08-27', 47, 'https://www.gutenberg.org/ebooks/57781', 'es', 1384), +(24612, 'Salute to Adventurers', 'Buchan, John', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/10046', 'en', 4969), +(24613, 'The Second Mrs. Tanqueray: A Play in Four Acts', 'Pinero, Arthur Wing', '2012-09-11', 25, 'https://www.gutenberg.org/ebooks/40736', 'en', 10361), +(24614, 'Domestic Peace', 'Balzac, Honoré de', '2004-08-02', 25, 'https://www.gutenberg.org/ebooks/1411', 'en', 58), +(24615, 'The Blind Beggar of Jericho', 'Mortimer, Favell Lee', '2011-07-02', 7, 'https://www.gutenberg.org/ebooks/36584', 'en', 6859), +(24616, 'The English Constitution', 'Bagehot, Walter', '2003-08-01', 266, 'https://www.gutenberg.org/ebooks/4351', 'en', 5067), +(24617, 'Peregrine in France: A Lounger\'s Journal, in Familiar Letters to His Friend', 'Bromet, William', '2014-03-08', 4, 'https://www.gutenberg.org/ebooks/45076', 'en', 1117), +(24618, 'Winchester', 'Heath, Sidney', '2005-04-25', 13, 'https://www.gutenberg.org/ebooks/15706', 'en', 10362), +(24619, 'With Rifle and Bayonet: A Story of the Boer War', 'Brereton, F. S. (Frederick Sadleir)', '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32918', 'en', 10363), +(24620, 'Fighting Joe; Or, The Fortunes of a Staff Officer. A Story of the Great Rebellion', 'Optic, Oliver', '2019-05-04', 17, 'https://www.gutenberg.org/ebooks/59429', 'en', 1889), +(24621, 'Reincarnation: A Study in Human Evolution', 'Pascal, Théophile', '2007-05-19', 19, 'https://www.gutenberg.org/ebooks/21533', 'en', 10364), +(24622, 'Myths and Tales from the White Mountain Apache\r\nAnthropological Papers of the American Museum of Natural History Vol. XXIV, Part II', 'Goddard, Pliny Earle', '2016-09-21', 20, 'https://www.gutenberg.org/ebooks/53113', 'en', 10365), +(24623, 'Cycling and Shooting Knickerbocker Stockings\nHow to Knit Them With Plain and Fancy Turnover Tops', 'Ryder, H. P.', '2011-09-16', 32, 'https://www.gutenberg.org/ebooks/37456', 'en', 948), +(24624, 'Tales and Novels of J. de La Fontaine — Volume 09', 'La Fontaine, Jean de', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/5283', 'en', 2629), +(24625, 'La première canadienne du Nord-ouest', 'Dugas, Georges', '2018-01-29', 5, 'https://www.gutenberg.org/ebooks/56461', 'fr', 10366), +(24626, 'Blackwood\'s Edinburgh Magazine - Volume 54, No. 338, December 1843', 'Various', '2008-04-27', 23, 'https://www.gutenberg.org/ebooks/25193', 'en', 274), +(24627, 'To Choke an Ocean', 'Bone, Jesse F. (Jesse Franklin)', '2010-04-24', 43, 'https://www.gutenberg.org/ebooks/32124', 'en', 26), +(24628, 'Ginger-Snaps', 'Fern, Fanny', '2012-08-14', 54, 'https://www.gutenberg.org/ebooks/40504', 'en', 620), +(24629, 'The New Magdalen', 'Collins, Wilkie', '1999-02-01', 33, 'https://www.gutenberg.org/ebooks/1623', 'en', 2004), +(24630, 'The Gentleman from San Francisco, and Other Stories', 'Bunin, Ivan Alekseevich', '2014-02-24', 149, 'https://www.gutenberg.org/ebooks/44998', 'en', 10367), +(24631, '洛神賦', 'Cao, Zhi', '2007-12-26', 58, 'https://www.gutenberg.org/ebooks/24041', 'zh', 3616), +(24632, 'Sermons on Evil-Speaking', 'Barrow, Isaac', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10274', 'en', 10368), +(24633, 'Bath and Wells: A Sketch-Book', 'Andrews, D. S. (Douglas S.)', '2017-03-10', 8, 'https://www.gutenberg.org/ebooks/54336', 'en', 10369), +(24634, 'The Luckiest Girl in the School', 'Brazil, Angela', '2006-03-19', 111, 'https://www.gutenberg.org/ebooks/18019', 'en', 1779), +(24635, 'What a Colored Man Should Do to Vote', 'Anonymous', '2019-08-15', 684, 'https://www.gutenberg.org/ebooks/60103', 'en', 10370), +(24636, 'Sound of Terror', 'Berry, Don', '2009-12-14', 33, 'https://www.gutenberg.org/ebooks/30673', 'en', 26), +(24637, 'Compendio di psicologia', 'Wundt, Wilhelm Max', '2015-04-23', 178, 'https://www.gutenberg.org/ebooks/48769', 'it', 1151), +(24638, 'The Story of Rolf and the Viking\'s Bow', 'French, Allen', '2013-08-02', 60, 'https://www.gutenberg.org/ebooks/43381', 'en', 10371), +(24639, 'Danza macàbra', 'Antona-Traversi, Camillo', '2013-03-03', 35, 'https://www.gutenberg.org/ebooks/42253', 'it', 407), +(24640, 'A Dog\'s Tale', 'Twain, Mark', '2004-06-01', 140, 'https://www.gutenberg.org/ebooks/3174', 'en', 2464), +(24641, 'The Crown of Wild Olive\nalso Munera Pulveris; Pre-Raphaelitism; Aratra Pentelici; The Ethics of the Dust; Fiction, Fair and Foul; The Elements of Drawing', 'Ruskin, John', '2008-09-28', 57, 'https://www.gutenberg.org/ebooks/26716', 'en', 1694), +(24642, 'Crusaders of New France\nA Chronicle of the Fleur-de-Lis in the Wilderness\nChronicles of America, Volume 4', 'Munro, William Bennett', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12523', 'en', 6591), +(24643, 'Quentin Durward', 'Scott, Walter', '2006-07-13', 7, 'https://www.gutenberg.org/ebooks/18825', 'fr', 10372), +(24644, 'The Monastery', 'Scott, Walter', '2004-09-01', 65, 'https://www.gutenberg.org/ebooks/6406', 'en', 10373); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(24645, 'Southern Hearts', 'Winterburn, Florence Hull', '2014-12-20', 14, 'https://www.gutenberg.org/ebooks/47721', 'en', 179), +(24646, 'The Argosy, Vol. 51, No. 1, January, 1891', 'Various', '2005-11-11', 28, 'https://www.gutenberg.org/ebooks/17051', 'en', 5498), +(24647, 'Shipping Clerk', 'Samachson, Joseph', '2015-12-30', 28, 'https://www.gutenberg.org/ebooks/50796', 'en', 1763), +(24648, 'The Settlers at Home', 'Martineau, Harriet', '2007-10-31', 15, 'https://www.gutenberg.org/ebooks/23264', 'en', 6016), +(24649, 'Cinq Mars — Volume 2', 'Vigny, Alfred de', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3948', 'en', 2895), +(24650, 'The Vicissitudes of Evangeline', 'Glyn, Elinor', '2016-04-03', 18, 'https://www.gutenberg.org/ebooks/51644', 'en', 348), +(24651, 'In Indian Mexico (1908)', 'Starr, Frederick', '2005-07-02', 11, 'https://www.gutenberg.org/ebooks/16183', 'en', 2487), +(24652, 'Łąka', 'Leśmian, Bolesław', '2011-02-17', 20, 'https://www.gutenberg.org/ebooks/35301', 'pl', 10374), +(24653, 'The Odd Volume; Or, Book of Variety', NULL, '2014-01-23', 20, 'https://www.gutenberg.org/ebooks/44739', 'en', 564), +(24654, 'Les aventures du jeune Comte Potowski, Vol. 2 (of 2)\r\nUn roman de coeœur par Marat, l\'ami du peuple', 'Marat, Jean Paul', '2018-11-28', 7, 'https://www.gutenberg.org/ebooks/58366', 'fr', 10375), +(24655, 'The Pointing Man\nA Burmese Mystery', 'Douie, Marjorie', '2004-11-15', 8, 'https://www.gutenberg.org/ebooks/14049', 'en', 10376), +(24656, 'The Young Forester', 'Grey, Zane', '1999-09-01', 37, 'https://www.gutenberg.org/ebooks/1882', 'en', 1080), +(24657, 'De drooglegging der Zuiderzee. Het plan J. Ulehake contra het plan C. Lely', 'Ulehake, J.', '2011-06-03', 2, 'https://www.gutenberg.org/ebooks/36319', 'nl', 5497), +(24658, 'Elsie\'s children', 'Finley, Martha', '2005-02-02', 66, 'https://www.gutenberg.org/ebooks/14875', 'en', 1397), +(24659, 'Schopenhauer', 'Whittaker, Thomas', '2011-12-12', 31, 'https://www.gutenberg.org/ebooks/38283', 'en', 1356), +(24660, 'Les Usages du Siècle : lettres, conseils pratiques, le Savoir-vivre', NULL, '2012-08-03', 9, 'https://www.gutenberg.org/ebooks/40399', 'fr', 10377), +(24661, 'Punch, or the London Charivari, October 21st 1893', 'Various', '2012-04-02', 15, 'https://www.gutenberg.org/ebooks/39351', 'en', 134), +(24662, 'La réforme postale en France', 'Barrillon, François-Guillaume', '2006-11-11', 16, 'https://www.gutenberg.org/ebooks/19756', 'fr', 10378), +(24663, 'Report on the Dominion Government Expedition to Hudson Bay and the Arctic Islands on board the D.G.S. Neptune, 1903-1904', 'Low, A. P. (Albert Peter)', '2017-09-03', 14, 'https://www.gutenberg.org/ebooks/55479', 'en', 10379), +(24664, 'The Hills of Desire', 'Maher, Richard Aumerle', '2014-09-14', 83, 'https://www.gutenberg.org/ebooks/46852', 'en', 1463), +(24665, 'The Bible, Douay-Rheims, Book 01: Genesis\r\nThe Challoner Revision', NULL, '2005-06-01', 16, 'https://www.gutenberg.org/ebooks/8301', 'en', 4202), +(24666, 'Schubert and His Work', 'Peyser, Herbert F. (Herbert Francis)', '2015-05-23', 21, 'https://www.gutenberg.org/ebooks/49026', 'en', 10380), +(24667, 'Die Universität Basel in den fünfzig Jahren seit ihrer Reorganisation im Jahre 1835', 'Teichmann, Albert', '2016-01-15', 18, 'https://www.gutenberg.org/ebooks/50937', 'de', 10381), +(24668, 'Trafalgar: A Tale', 'Pérez Galdós, Benito', '2015-01-16', 22, 'https://www.gutenberg.org/ebooks/47980', 'en', 1160), +(24669, 'Hu Die Mei\r\nYuan Yang Meng', 'Nanyuedaoren', '2008-10-26', 29, 'https://www.gutenberg.org/ebooks/27059', 'zh', NULL), +(24670, 'Remarks of Mr. Calhoun of South Carolina on the bill to prevent the interference of certain federal officers in elections: delivered in the Senate of the United States February 22, 1839', 'Calhoun, John C. (John Caldwell)', '1996-12-01', 16, 'https://www.gutenberg.org/ebooks/740', 'en', 187), +(24671, 'A Certain Rich Man', 'White, William Allen', '2006-06-26', 8, 'https://www.gutenberg.org/ebooks/18684', 'en', 2612), +(24672, '孫子兵法道家新註解', 'Tang, Jingwu', '2005-01-01', 30, 'https://www.gutenberg.org/ebooks/7349', 'zh', 5135), +(24673, 'Historic Tales: The Romance of Reality. Vol. 13 (of 15), King Arthur (1)', 'Malory, Thomas, Sir', '2010-04-06', 36, 'https://www.gutenberg.org/ebooks/31900', 'en', 5637), +(24674, 'Tomato Culture: A Practical Treatise on the Tomato', 'Tracy, W. W. (William Warner)', '2009-02-06', 19, 'https://www.gutenberg.org/ebooks/28011', 'en', 2491), +(24675, 'George Borrow in East Anglia', 'Dutt, William A. (William Alfred)', '2009-01-21', 16, 'https://www.gutenberg.org/ebooks/27865', 'en', 2192), +(24676, 'Glimpses of Unfamiliar Japan: Second Series', 'Hearn, Lafcadio', '2005-05-01', 73, 'https://www.gutenberg.org/ebooks/8133', 'en', 10382), +(24677, 'Sir Isaac Brock', 'Eayrs, Hugh S. (Hugh Sterling)', '2015-06-14', 3, 'https://www.gutenberg.org/ebooks/49214', 'en', 10383), +(24678, 'The Diary of a U-boat Commander\nWith an Introduction and Explanatory Notes by Etienne', 'King-Hall, Stephen, Sir', '2005-04-01', 78, 'https://www.gutenberg.org/ebooks/7947', 'en', 737), +(24679, 'The Pirates\' Who\'s Who\nGiving Particulars Of The Lives and Deaths Of The Pirates And Buccaneers', 'Gosse, Philip', '2006-10-17', 103, 'https://www.gutenberg.org/ebooks/19564', 'en', 645), +(24680, 'The Camp Fire Girls Go Motoring; Or, Along the Road That Leads the Way', 'Frey, Hildegard G.', '2004-11-01', 21, 'https://www.gutenberg.org/ebooks/6895', 'en', 622), +(24681, 'North American Free Trade Agreement, 1992 Oct. 7 Tariff Phasing Descriptions', 'Canada', '1993-11-01', 172, 'https://www.gutenberg.org/ebooks/89', 'en', 10384), +(24682, 'The Great Big Treasury of Beatrix Potter', 'Potter, Beatrix', '1996-06-01', 352, 'https://www.gutenberg.org/ebooks/572', 'en', 651), +(24683, 'Balloons, Airships, and Flying Machines', 'Bacon, Gertrude', '2017-05-27', 18, 'https://www.gutenberg.org/ebooks/54799', 'en', 927), +(24684, 'Wilhelm Meisters Wanderjahre — Band 1', 'Goethe, Johann Wolfgang von', '2000-11-01', 40, 'https://www.gutenberg.org/ebooks/2409', 'de', 1080), +(24685, 'Old Fort Snelling, 1819-1858', 'Hansen, Marcus Lee', '2007-09-22', 20, 'https://www.gutenberg.org/ebooks/22719', 'en', 3629), +(24686, 'Le neveu de Rameau', 'Diderot, Denis', '2004-10-25', 49, 'https://www.gutenberg.org/ebooks/13862', 'fr', 7269), +(24687, 'Quaker Hill\nA Sociological Study', 'Wilson, Warren H. (Warren Hugh)', '2009-03-01', 32, 'https://www.gutenberg.org/ebooks/28223', 'en', 10385), +(24688, 'The Spider Web: The Romance of a Flying-Boat War Flight', 'Hallam, T. D.', '2015-10-30', 18, 'https://www.gutenberg.org/ebooks/50339', 'en', 4962), +(24689, 'La femme assise', 'Apollinaire, Guillaume', '2018-10-23', 45, 'https://www.gutenberg.org/ebooks/58154', 'fr', 259), +(24690, 'As We Forgive Them', 'Le Queux, William', '2012-10-09', 20, 'https://www.gutenberg.org/ebooks/40997', 'en', 167), +(24691, 'Marion: The Story of an Artist\'s Model', 'Eaton, Winnifred', '2018-09-17', 30, 'https://www.gutenberg.org/ebooks/57920', 'en', 7836), +(24692, 'ఓనమాలు', 'Ramamohan Rao, Mahidhara', '2013-01-14', 24, 'https://www.gutenberg.org/ebooks/41845', 'te', 61), +(24693, 'Life and Travel in Lower Burmah: A Retrospect', 'Paske, C. T. (Charles Thomas)', '2019-03-18', 11, 'https://www.gutenberg.org/ebooks/59086', 'en', 1354), +(24694, 'Aristocracy & Evolution\r\nA Study of the Rights, the Origin, and the Social Functions of the Wealthier Classes', 'Mallock, W. H. (William Hurrell)', '2019-02-26', 11, 'https://www.gutenberg.org/ebooks/58968', 'en', 10386), +(24695, 'Punch, or the London Charivari. Volume 93. August 27, 1887', 'Various', '2010-08-18', 7, 'https://www.gutenberg.org/ebooks/33459', 'en', 134), +(24696, 'The Best Short Stories of 1917, and the Yearbook of the American Short Story', NULL, '2007-03-22', 146, 'https://www.gutenberg.org/ebooks/20872', 'en', 1516), +(24697, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nArkansas Narratives, Part 6', 'United States. Work Projects Administration', '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/11709', 'en', 10387), +(24698, 'The Story of Fifty-Seven Cents', 'Shackleton, Robert', '2011-07-31', 10, 'https://www.gutenberg.org/ebooks/36917', 'en', 10388), +(24699, 'Cours familier de Littérature - Volume 21', 'Lamartine, Alphonse de', '2012-10-16', 10, 'https://www.gutenberg.org/ebooks/41079', 'fr', 2156), +(24700, 'The War Tiger\r\nOr, Adventures and Wonderful Fortunes of the Young Sea Chief and His Lad Chow: A Tale of the Conquest of China', 'Dalton, William', '2012-03-16', 21, 'https://www.gutenberg.org/ebooks/39163', 'en', 10389), +(24701, 'Motion Pictures of the Apollo 11 Lunar Landing', 'United States', '1994-03-01', 40, 'https://www.gutenberg.org/ebooks/116', 'en', 10390), +(24702, 'A Little Book of Profitable Tales', 'Field, Eugene', '2005-12-01', 48, 'https://www.gutenberg.org/ebooks/9485', 'en', 112), +(24703, 'The Story of the \"9th King\'s\" in France', 'Roberts, Enos Herbert Glynne', '2005-10-31', 12, 'https://www.gutenberg.org/ebooks/16974', 'en', 4056), +(24704, 'Synge and the Ireland of His Time', 'Yeats, W. B. (William Butler)', '2005-07-01', 33, 'https://www.gutenberg.org/ebooks/8557', 'en', 10391), +(24705, 'Tre racconti: Il cane del cieco - Un genio sconosciuto - Galatea', 'Bersezio, Vittorio', '2015-08-10', 24, 'https://www.gutenberg.org/ebooks/49670', 'it', 860), +(24706, 'Histoire du Consulat et de l\'Empire, (Vol. 06 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2013-03-10', 38, 'https://www.gutenberg.org/ebooks/42298', 'fr', 2051), +(24707, 'The Covenants And The Covenanters\nCovenants, Sermons, and Documents of the Covenanted Reformation', NULL, '2006-08-22', 23, 'https://www.gutenberg.org/ebooks/19100', 'en', 10392), +(24708, 'Hildegarde\'s Home', 'Richards, Laura Elizabeth Howe', '2010-11-06', 15, 'https://www.gutenberg.org/ebooks/34218', 'en', 2086), +(24709, 'Texas Week', 'Hernhuter, Albert', '2009-04-30', 28, 'https://www.gutenberg.org/ebooks/28647', 'en', 179), +(24710, 'Sixes and Sevens', 'Henry, O.', '2001-10-01', 118, 'https://www.gutenberg.org/ebooks/2851', 'en', 1516), +(24711, 'Fray Luis de León: A Biographical Fragment', 'Fitzmaurice-Kelly, James', '2005-06-29', 18, 'https://www.gutenberg.org/ebooks/16148', 'en', 10393), +(24712, 'Gerfaut — Volume 3', 'Bernard, Charles de', '2003-04-01', 12, 'https://www.gutenberg.org/ebooks/3983', 'en', 58), +(24713, 'An Ode\r\nRead August 15, 1907, at the dedication of the monument erected at Gloucester, Massachusetts, in commemoration of the founding of the Massachusetts Bay colony in the year sixteen hundred and twenty-three', 'Cawein, Madison Julius', '2009-08-25', 9, 'https://www.gutenberg.org/ebooks/29795', 'en', 8), +(24714, 'Näkymätön mies', 'Wells, H. G. (Herbert George)', '2014-08-20', 20, 'https://www.gutenberg.org/ebooks/46638', 'fi', 26), +(24715, 'Batalo pri la Domo Heikkilä', 'Linnankoski, Johannes', '2008-07-04', 12, 'https://www.gutenberg.org/ebooks/25964', 'eo', 10394), +(24716, 'The Mysteries of Paris, Volume 2 of 6', 'Sue, Eugène', '2010-09-22', 22, 'https://www.gutenberg.org/ebooks/33801', 'en', 560), +(24717, 'English Wayfaring Life in the Middle Ages (XIVth Century)', 'Jusserand, J. J. (Jean Jules)', '2018-12-24', 14, 'https://www.gutenberg.org/ebooks/58530', 'en', 10395), +(24718, 'The \"Dock Rats\" of New York; Or, The Smuggler Band\'s Last Stand', 'Old Sleuth', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5248', 'en', 5831), +(24719, 'Stubble', 'Looms, George', '2008-04-24', 7, 'https://www.gutenberg.org/ebooks/25158', 'en', 109), +(24720, 'A Secret Inheritance (Volume 2 of 3)', 'Farjeon, B. L. (Benjamin Leopold)', '2014-06-04', 13, 'https://www.gutenberg.org/ebooks/45881', 'en', 10396), +(24721, 'The Poetical Works of William Wordsworth — Volume 8 (of 8)', 'Wordsworth, William', '2016-08-18', 50, 'https://www.gutenberg.org/ebooks/52836', 'en', 532), +(24722, 'Støv og Stjærner', 'Hjortø, Knud', '2012-04-22', 7, 'https://www.gutenberg.org/ebooks/39507', 'da', 6055), +(24723, 'A Noszty fiu esete Tóth Marival (1. kötet)', 'Mikszáth, Kálmán', '2018-07-25', 6, 'https://www.gutenberg.org/ebooks/57578', 'hu', 5299), +(24724, 'Punch, or the London Charivari, Vol. 109, July 6, 1895', 'Various', '2014-02-18', 7, 'https://www.gutenberg.org/ebooks/44953', 'en', 134), +(24725, '枕中記', 'Shen, Jiji', '2016-06-05', 14, 'https://www.gutenberg.org/ebooks/52238', 'zh', 947), +(24726, 'Punch, or the London Charivari, Volume 156, June 4, 1919.', 'Various', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/11963', 'en', 134), +(24727, 'The Cricket of Abel, Hirst, and Shrewsbury', NULL, '2019-01-15', 10, 'https://www.gutenberg.org/ebooks/58702', 'en', 2802), +(24728, 'The Boy Land Boomer; Or, Dick Arbuckle\'s Adventures in Oklahoma', 'Stratemeyer, Edward', '2007-02-18', 16, 'https://www.gutenberg.org/ebooks/20618', 'en', 10397), +(24729, 'Ti-Ping Tien-Kwoh: The History of the Ti-Ping Revolution (Volume II)', 'Lindley, Augustus F.', '2012-05-19', 14, 'https://www.gutenberg.org/ebooks/39735', 'en', 10398), +(24730, 'Five Thousand Miles Underground; Or, the Mystery of the Centre of the Earth', 'Rockwood, Roy', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/4994', 'en', 26), +(24731, 'The Latter-Day Prophet: History of Joseph Smith Written for Young People', 'Cannon, George Q. (George Quayle)', '2018-03-07', 13, 'https://www.gutenberg.org/ebooks/56698', 'en', 10399), +(24732, 'The Adventures of Poor Mrs. Quack', 'Burgess, Thornton W. (Thornton Waldo)', '2004-06-01', 27, 'https://www.gutenberg.org/ebooks/5846', 'en', 8018), +(24733, 'Œuvres de P. Corneille, Tome 06', 'Corneille, Pierre', '2015-03-26', 24, 'https://www.gutenberg.org/ebooks/48590', 'fr', 5816), +(24734, 'Giacomo Leopardi (1798-1837)\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Pascoli, Giovanni', '2013-07-10', 20, 'https://www.gutenberg.org/ebooks/43178', 'it', 1941), +(24735, 'A Knight of the Cumberland', 'Fox, John, Jr.', '2008-07-09', 39, 'https://www.gutenberg.org/ebooks/324', 'en', 1996), +(24736, 'Filosofía Fundamental, Tomo I', 'Balmes, Jaime Luciano', '2004-10-05', 98, 'https://www.gutenberg.org/ebooks/13608', 'es', 779), +(24737, 'Notice of Runic Inscriptions Discovered during Recent Excavations in the Orkneys', 'Farrer, James', '2011-01-01', 15, 'https://www.gutenberg.org/ebooks/34816', 'en', 10400), +(24738, 'Michael Angelo Buonarroti\r\nWith Translations Of The Life Of The Master By His Scholar, Ascanio Condivi, And Three Dialogues From The Portugese By Francisco d\'Ollanda', 'Holroyd, Charles, Sir', '2006-09-19', 30, 'https://www.gutenberg.org/ebooks/19332', 'en', 915), +(24739, 'A Monograph on the Sub-class Cirripedia (Volume 1 of 2)\r\nThe Lepadidae; Or, Pedunculated Cirripedes', 'Darwin, Charles', '2010-03-08', 14, 'https://www.gutenberg.org/ebooks/31558', 'en', 10401), +(24740, 'Pellucidar', 'Burroughs, Edgar Rice', '2005-08-01', 8, 'https://www.gutenberg.org/ebooks/8765', 'en', 26), +(24741, 'The English Husbandman\r\nThe First Part: Contayning the Knowledge of the true Nature of euery Soyle within this Kingdome: how to Plow it; and the manner of the Plough, and other Instruments', 'Markham, Gervase', '2007-10-12', 49, 'https://www.gutenberg.org/ebooks/22973', 'en', 10402), +(24742, 'Crusoe in New York, and other tales', 'Hale, Edward Everett', '2015-07-14', 7, 'https://www.gutenberg.org/ebooks/49442', 'en', 770), +(24743, 'The Devil-Tree of El Dorado: A Novel', 'Aubrey, Frank', '2013-10-13', 40, 'https://www.gutenberg.org/ebooks/43944', 'en', 26), +(24744, 'Notes and Queries, Number 193, July 9, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-04-02', 19, 'https://www.gutenberg.org/ebooks/28475', 'en', 105), +(24745, 'From the Angle of Seventeen', 'Phillpotts, Eden', '2017-10-26', 8, 'https://www.gutenberg.org/ebooks/55821', 'en', 6223), +(24746, 'Angèle Méraud', 'Mérouvel, Charles', '2013-06-09', 3, 'https://www.gutenberg.org/ebooks/42896', 'fr', 61), +(24747, 'Ancient Apostles', 'McKay, David O. (David Oman)', '2017-03-08', 16, 'https://www.gutenberg.org/ebooks/54309', 'en', 310), +(24748, 'Chronica de el-rei D. Affonso Henriques', 'Galvão, Duarte', '2006-03-20', 39, 'https://www.gutenberg.org/ebooks/18026', 'pt', 10403), +(24749, 'By Blow and Kiss: The Love Story of a Man with a Bad Name.\r\n(Published serially under the title Unstable as Water).', 'Cable, Boyd', '2015-04-20', 10, 'https://www.gutenberg.org/ebooks/48756', 'en', 792), +(24750, 'A History of the Moravian Church', 'Hutton, J. E. (Joseph Edmund)', '2000-03-01', 36, 'https://www.gutenberg.org/ebooks/2099', 'en', 10404), +(24751, 'The Vicar\'s Daughter', 'MacDonald, George', '2005-12-01', 53, 'https://www.gutenberg.org/ebooks/9471', 'en', 2389), +(24752, 'Senz\'Amore', 'Colombi, marchesa', '2006-02-24', 15, 'https://www.gutenberg.org/ebooks/17852', 'it', 61), +(24753, 'Mia\nRomanzo', 'Memini', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/16980', 'it', 61), +(24754, 'Puck on Pegasus\nFourth Edition', 'Cholmondeley-Pennell, H. (Henry)', '2015-08-11', 18, 'https://www.gutenberg.org/ebooks/49684', 'en', 3625), +(24755, '二刻拍案驚奇', 'Ling, Mengchu', '2008-09-30', 9, 'https://www.gutenberg.org/ebooks/26729', 'zh', 5698), +(24756, 'Nan Sherwood at Rose Ranch; Or, The Old Mexican\'s Treasure', 'Carr, Annie Roe', '2004-09-01', 27, 'https://www.gutenberg.org/ebooks/6439', 'en', 6766), +(24757, 'Fromont and Risler — Volume 2', 'Daudet, Alphonse', '2003-04-01', 3, 'https://www.gutenberg.org/ebooks/3977', 'en', 58), +(24758, 'Sympathetic Magic', 'Brown, Paul Cameron', '2009-08-22', 15, 'https://www.gutenberg.org/ebooks/29761', 'en', 8), +(24759, 'Minna von Barnhelm\nViisinäytöksinen huvinäytelmä', 'Lessing, Gotthold Ephraim', '2007-08-25', 17, 'https://www.gutenberg.org/ebooks/22389', 'fi', 907), +(24760, 'Bird Houses Boys Can Build', 'Siepert, Albert Frederick', '2008-07-07', 122, 'https://www.gutenberg.org/ebooks/25990', 'en', 10405), +(24761, 'My First Mission', 'Cannon, George Q. (George Quayle)', '2014-03-02', 33, 'https://www.gutenberg.org/ebooks/45049', 'en', 10406), +(24762, 'Traité de la Vérité de la Religion Chrétienne', 'Grotius, Hugo', '2005-04-30', 15, 'https://www.gutenberg.org/ebooks/15739', 'fr', 10407), +(24763, 'The Induna\'s Wife', 'Mitford, Bertram', '2010-06-20', 19, 'https://www.gutenberg.org/ebooks/32927', 'en', 10408), +(24764, 'Nuovi studii sul genio vol. I (da Colombo a Manzoni)', 'Lombroso, Cesare', '2019-05-02', 26, 'https://www.gutenberg.org/ebooks/59416', 'it', 10409), +(24765, 'Some Imagist Poets, 1916: An Annual Anthology', 'Fletcher, John Gould', '2011-09-18', 22, 'https://www.gutenberg.org/ebooks/37469', 'en', 2623), +(24766, 'The Defence of Duffer\'s Drift', 'Swinton, E. D. (Ernest Dunlop)', '2008-03-16', 148, 'https://www.gutenberg.org/ebooks/24842', 'en', 10410), +(24767, 'Duizend en één Nacht. Arabische vertellingen. Tweede deel', 'Anonymous', '2014-06-04', 21, 'https://www.gutenberg.org/ebooks/45875', 'nl', 3347), +(24768, 'The Pirates of Malabar, and an Englishwoman in India Two Hundred Years Ago', 'Biddulph, J. (John)', '2004-03-01', 50, 'https://www.gutenberg.org/ebooks/11399', 'en', 10411), +(24769, 'The School and Society\nBeing three lectures', 'Dewey, John', '2017-01-07', 246, 'https://www.gutenberg.org/ebooks/53910', 'en', 10412), +(24770, 'A Little Boy Lost', 'Hudson, W. H. (William Henry)', '2011-12-27', 168, 'https://www.gutenberg.org/ebooks/38421', 'en', 2203), +(24771, 'The Chicago Massacre of 1812\r\nWith Illustrations and Historical Documents', 'Kirkland, Joseph', '2019-05-28', 45, 'https://www.gutenberg.org/ebooks/59624', 'en', 10413), +(24772, 'Crusoes of the Frozen North', 'Stables, Gordon', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11997', 'en', 10414), +(24773, 'A Twofold Life', 'Hillern, Wilhelmine von', '2011-07-19', 10, 'https://www.gutenberg.org/ebooks/36789', 'en', 803), +(24774, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 332, September 20, 1828', 'Various', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/10845', 'en', 133), +(24775, 'Guy in the Jungle; Or, A Boy\'s Adventure in the Wilds of Africa', 'Graydon, William Murray', '2010-05-11', 20, 'https://www.gutenberg.org/ebooks/32329', 'en', 10415), +(24776, 'On Picket Duty, and Other Tales', 'Alcott, Louisa May', '2004-01-01', 63, 'https://www.gutenberg.org/ebooks/4960', 'en', 112), +(24777, 'The Atlantic Monthly, Volume 02, No. 09, July, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10079', 'en', 1227), +(24778, 'The Life of Saint Bridget, Virgin and Abbess', 'Anonymous', '2012-01-18', 10, 'https://www.gutenberg.org/ebooks/38613', 'en', 10416), +(24779, 'Facts and Figures Concerning the Hoosac Tunnel', 'Piper, John J.', '2012-09-08', 17, 'https://www.gutenberg.org/ebooks/40709', 'en', 10417), +(24780, '明夷待訪錄', 'Huang, Zongxi', '2007-12-14', 24, 'https://www.gutenberg.org/ebooks/23855', 'zh', 10418), +(24781, 'Marcus O\'Brienin kohtalo', 'London, Jack', '2015-03-23', 7, 'https://www.gutenberg.org/ebooks/48564', 'fi', 61), +(24782, 'Histoire des Montagnards', 'Esquiros, Alphonse', '2006-01-01', 20, 'https://www.gutenberg.org/ebooks/9643', 'fr', 1536), +(24783, 'Our Friend the Dog', 'Maeterlinck, Maurice', '2006-04-20', 44, 'https://www.gutenberg.org/ebooks/18214', 'en', 1636), +(24784, 'Bevis: The Story of a Boy', 'Jefferies, Richard', '2011-08-11', 12, 'https://www.gutenberg.org/ebooks/35930', 'en', 7579), +(24785, 'Short Stories and Essays (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 45, 'https://www.gutenberg.org/ebooks/3379', 'en', 2641), +(24786, 'The Divine Comedy by Dante, Illustrated, Purgatory, Volume 2', 'Dante Alighieri', '2004-08-03', 11, 'https://www.gutenberg.org/ebooks/8791', 'en', 365), +(24787, 'Authentic Narrative of the Death of Lord Nelson', 'Beatty, William', '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22987', 'en', 6991), +(24788, 'History of Company F, 1st Regiment, R.I. Volunteers, during the Spring and Summer of 1861', 'Clarke, Charles H.', '2009-04-02', 5, 'https://www.gutenberg.org/ebooks/28481', 'en', 1489), +(24789, 'Janet McLaren, the Faithful Nurse', 'Kingston, William Henry Giles', '2007-10-17', 13, 'https://www.gutenberg.org/ebooks/23069', 'en', 31), +(24790, 'The White Sail, and Other Poems', 'Guiney, Louise Imogen', '2017-06-14', 17, 'https://www.gutenberg.org/ebooks/54907', 'en', 350), +(24791, 'Moral Equivalent', 'Neville, Kris', '2016-03-14', 21, 'https://www.gutenberg.org/ebooks/51449', 'en', 2564), +(24792, 'King of Ranleigh: A School Story', 'Brereton, F. S. (Frederick Sadleir)', '2013-06-02', 11, 'https://www.gutenberg.org/ebooks/42862', 'en', 153), +(24793, 'Bunte Steine: Ein Festgeschenk', 'Stifter, Adalbert', '2009-07-31', 54, 'https://www.gutenberg.org/ebooks/29553', 'de', 1212), +(24794, 'The Shape of Fear', 'Peattie, Elia Wilkinson', '1999-09-01', 50, 'https://www.gutenberg.org/ebooks/1876', 'en', 3480), +(24795, 'The Babees\' Book: Medieval Manners for the Young', 'Furnivall, Frederick James', '2018-12-01', 23, 'https://www.gutenberg.org/ebooks/58392', 'en', 10419), +(24796, 'Edward the Second', 'Marlowe, Christopher', '2007-01-04', 208, 'https://www.gutenberg.org/ebooks/20288', 'en', 10420), +(24797, 'Snow-shoes and Sledges\nA Sequel to \"The Fur-Seal\'s Tooth\"', 'Munroe, Kirk', '2019-04-10', 21, 'https://www.gutenberg.org/ebooks/59240', 'en', 323), +(24798, 'Little Lucy\'s Wonderful Globe', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-10-01', 9, 'https://www.gutenberg.org/ebooks/4538', 'en', 7816), +(24799, 'The Tale of Jimmy Rabbit\nSleepy-TimeTales', 'Bailey, Arthur Scott', '2008-02-16', 24, 'https://www.gutenberg.org/ebooks/24628', 'en', 195), +(24800, 'From Squire to Squatter: A Tale of the Old Land and the New', 'Stables, Gordon', '2011-12-11', 11, 'https://www.gutenberg.org/ebooks/38277', 'en', 527), +(24801, 'The Log School-House on the Columbia', 'Butterworth, Hezekiah', '2005-02-02', 38, 'https://www.gutenberg.org/ebooks/14881', 'en', 10421), +(24802, 'The City of Delight: A Love Drama of the Siege and Fall of Jerusalem', 'Miller, Elizabeth', '2005-05-31', 34, 'https://www.gutenberg.org/ebooks/15953', 'en', 6881), +(24803, 'Philip Hale\'s Boston Symphony Programme Notes', 'Hale, Philip', '2017-12-20', 8, 'https://www.gutenberg.org/ebooks/56208', 'en', 10422), +(24804, 'An abridged list of Commercial Handbooks of Sir Isaac Pitman & Sons, Ltd.', 'Isaac Pitman & Sons', '2016-04-20', 16, 'https://www.gutenberg.org/ebooks/51811', 'en', 10423), +(24805, 'The Sabbath-School Index\r\nPointing out the history and progress of Sunday-schools, with approved modes of instruction.', 'Pardee, R. G. (Richard Gay)', '2015-01-27', 17, 'https://www.gutenberg.org/ebooks/48100', 'en', 2149), +(24806, 'The New Adam and Eve (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 21, 'https://www.gutenberg.org/ebooks/9227', 'en', 13), +(24807, 'For the Honor of the School: A Story of School Life and Interscholastic Sport', 'Barbour, Ralph Henry', '2015-01-15', 33, 'https://www.gutenberg.org/ebooks/47974', 'en', 5031), +(24808, 'Bruges and West Flanders', 'Omond, George W. T. (George William Thomson)', '2006-06-23', 9, 'https://www.gutenberg.org/ebooks/18670', 'en', 10424), +(24809, 'The California Birthday Book\r\nProse and Poetical Selections from the Writings of Living California Authors with a Brief Biographical Sketch of each', NULL, '2004-08-27', 20, 'https://www.gutenberg.org/ebooks/13298', 'en', 1623), +(24810, 'Le Désespéré', 'Bloy, Léon', '2011-03-13', 42, 'https://www.gutenberg.org/ebooks/35568', 'fr', 687), +(24811, 'Le Vaisseau fantôme (Der Fliegende Holländer)', 'Wagner, Richard', '2008-10-18', 27, 'https://www.gutenberg.org/ebooks/26943', 'fr', 4183), +(24812, 'El enemigo', 'Picón, Jacinto Octavio', '2009-06-17', 49, 'https://www.gutenberg.org/ebooks/29137', 'es', 1353), +(24813, 'Hattu\nYksinäytöksinen huvinäytelmä', 'Agrell, Alfhild', '2006-01-30', 17, 'https://www.gutenberg.org/ebooks/17638', 'fi', 402), +(24814, 'Gold', 'White, Stewart Edward', '2010-01-01', 50, 'https://www.gutenberg.org/ebooks/30826', 'en', 315), +(24815, '\"Boy Wanted\": A Book of Cheerful Counsel', 'Waterman, Nixon', '2014-10-19', 9, 'https://www.gutenberg.org/ebooks/47148', 'en', 4065), +(24816, 'Die moderne Ehe und wie man sie ertragen soll', 'Braby, Maud Churton', '2009-01-26', 20, 'https://www.gutenberg.org/ebooks/27891', 'de', 1451), +(24817, 'Nuove \"Paesane\"', 'Capuana, Luigi', '2013-04-28', 4, 'https://www.gutenberg.org/ebooks/42608', 'it', 474), +(24818, 'Tom Slade\'s Double Dare', 'Fitzhugh, Percy Keese', '2006-10-20', 17, 'https://www.gutenberg.org/ebooks/19590', 'en', 7327), +(24819, 'Tuuli ja tähkä ynnä muita runoja', 'Kailas, Uuno', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12178', 'fi', 8), +(24820, 'Religio Medici, Hydriotaphia, and the Letter to a Friend', 'Browne, Thomas, Sir', '1996-07-01', 150, 'https://www.gutenberg.org/ebooks/586', 'en', 10425), +(24821, 'Fifty Famous Stories Retold', 'Baldwin, James', '2006-05-23', 519, 'https://www.gutenberg.org/ebooks/18442', 'en', 1019), +(24822, 'Vautrin: A Drama in Five Acts', 'Balzac, Honoré de', '2005-10-28', 25, 'https://www.gutenberg.org/ebooks/6861', 'en', 3521), +(24823, 'Fra Tommaso Campanella, Vol. 2\nla sua congiura, i suoi processi e la sua pazzia', 'Amabile, Luigi', '2015-02-21', 17, 'https://www.gutenberg.org/ebooks/48332', 'it', 10426), +(24824, 'The Curious Republic of Gondour, and Other Whimsical Sketches', 'Twain, Mark', '2005-09-01', 0, 'https://www.gutenberg.org/ebooks/9015', 'en', 20), +(24825, 'Officer 666', 'McHugh, Augustin', '2009-10-10', 17, 'https://www.gutenberg.org/ebooks/30228', 'en', 61), +(24826, 'Sielanka: An Idyll', 'Sienkiewicz, Henryk', '2009-07-04', 7, 'https://www.gutenberg.org/ebooks/29305', 'en', 179), +(24827, 'Punch, or the London Charivari, Volume 99, December 27, 1890', 'Various', '2004-07-19', 3, 'https://www.gutenberg.org/ebooks/12944', 'en', 134), +(24828, 'Jacques Bonneval; Or, The Days of the Dragonnades', 'Manning, Anne', '2004-10-30', 13, 'https://www.gutenberg.org/ebooks/13896', 'en', 10427), +(24829, 'Speeches, Addresses, and Occasional Sermons, Volume 3 (of 3)', 'Parker, Theodore', '2010-12-18', 17, 'https://www.gutenberg.org/ebooks/34688', 'en', 2706), +(24830, 'The Jewel Merchants: A Comedy in One Act', 'Cabell, James Branch', '2006-02-01', 44, 'https://www.gutenberg.org/ebooks/9829', 'en', 402), +(24831, 'The Seven Periods of English Architecture Defined and Illustrated', 'Sharpe, Edmund', '2012-02-14', 45, 'https://www.gutenberg.org/ebooks/38879', 'en', 10428), +(24832, 'Jean Cabot at Ashton', 'Scott, Gertrude Fisher', '2016-11-18', 9, 'https://www.gutenberg.org/ebooks/53548', 'en', 4642), +(24833, 'Johnny Ludlow, Sixth Series', 'Wood, Henry, Mrs.', '2012-10-07', 20, 'https://www.gutenberg.org/ebooks/40963', 'en', 45), +(24834, 'Nuori-Viro: Muotokuvia ja suuntaviivoja', 'Kallas, Aino Krohn', '2018-03-21', 8, 'https://www.gutenberg.org/ebooks/56806', 'fi', 10429), +(24835, 'The Goop Directory of Juvenile Offenders Famous for their Misdeeds and Serving as a Salutary Example for all Virtuous Children', 'Burgess, Gelett', '2007-04-24', 7, 'https://www.gutenberg.org/ebooks/21168', 'en', 10242), +(24836, 'The Secret Tomb', 'Leblanc, Maurice', '2019-03-16', 87, 'https://www.gutenberg.org/ebooks/59072', 'en', 167), +(24837, 'Penelope\'s English Experiences\r\nBeing Extracts from the Commonplace Book of Penelope Hamilton', 'Wiggin, Kate Douglas Smith', '1998-04-01', 24, 'https://www.gutenberg.org/ebooks/1278', 'en', 843), +(24838, 'Marvels of Scientific Invention\r\nAn Interesting Account in Non-Technical Language of the Invention of Guns, Torpedoes, Submarine Mines, Up-to-Date Smelting, Freezing, Colour Photography, and Many Other Recent Discoveries of Science', 'Corbin, Thomas W.', '2011-11-18', 33, 'https://www.gutenberg.org/ebooks/38045', 'en', 1739), +(24839, 'Frédéric', 'Fiévée, Joseph', '2007-03-23', 16, 'https://www.gutenberg.org/ebooks/20886', 'fr', 5128), +(24840, 'The Danes, Sketched by Themselves. Vol. 1 (of 3)\r\nA Series of Popular Stories by the Best Danish Authors', NULL, '2011-10-23', 10, 'https://www.gutenberg.org/ebooks/37831', 'en', 61), +(24841, 'Het moderne Egypte: Wat er te zien en te hooren valt tusschen Kaïro en Faschoda\r\nDe Aarde en haar Volken, 1908', 'Guerville, A. B. de (Amédée Baillot de)', '2007-06-28', 16, 'https://www.gutenberg.org/ebooks/21954', 'nl', 2589), +(24842, 'Notes and Queries, Vol. IV, Number 108, November 22, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-03-19', 12, 'https://www.gutenberg.org/ebooks/39197', 'en', 105), +(24843, 'Textiles and Clothing', 'Watson, Kate Heintz', '2007-05-19', 134, 'https://www.gutenberg.org/ebooks/21534', 'en', 10430), +(24844, 'The Works of the Right Honourable Edmund Burke, Vol. 05 (of 12)', 'Burke, Edmund', '2005-04-24', 66, 'https://www.gutenberg.org/ebooks/15701', 'en', 4505), +(24845, 'The Lost Army', 'Knox, Thomas Wallace', '2014-03-07', 23, 'https://www.gutenberg.org/ebooks/45071', 'en', 1817), +(24846, 'Hania', 'Sienkiewicz, Henryk', '2011-07-02', 24, 'https://www.gutenberg.org/ebooks/36583', 'en', 1676), +(24847, 'Sky Island\r\nBeing the further exciting adventures of Trot and Cap\'n Bill after their visit to the sea fairies', 'Baum, L. Frank (Lyman Frank)', '2003-08-01', 79, 'https://www.gutenberg.org/ebooks/4356', 'en', 2203), +(24848, 'Rough-Hewn', 'Fisher, Dorothy Canfield', '2011-09-18', 16, 'https://www.gutenberg.org/ebooks/37451', 'en', 61), +(24849, 'Tales and Novels of J. de La Fontaine — Volume 10', 'La Fontaine, Jean de', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/5284', 'en', 506), +(24850, 'Om mordet på Karl XII: Historisk och juridisk undersökning', 'Hultgren, Olaf Johan', '2016-09-21', 8, 'https://www.gutenberg.org/ebooks/53114', 'sv', 10431), +(24851, 'The Scrap Book, Volume 1, No. 6\nAugust 1906', 'Various', '2010-04-24', 21, 'https://www.gutenberg.org/ebooks/32123', 'en', 18), +(24852, '飲水詞集', 'Nalan, Xingde', '2008-04-27', 17, 'https://www.gutenberg.org/ebooks/25194', 'zh', 10432), +(24853, 'Poems', 'Bridges, Robert', '2018-01-30', 14, 'https://www.gutenberg.org/ebooks/56466', 'en', 532), +(24854, 'Ah! Fors\' é Lui (La Traviata)', NULL, '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10273', 'it', 4227), +(24855, 'John Eliot\'s First Indian Teacher and Interpreter Cockenoe-de-Long Island and The Story of His Career from the Early Records', 'Tooker, William Wallace', '2007-12-26', 12, 'https://www.gutenberg.org/ebooks/24046', 'en', 10433), +(24856, 'The Two Destinies', 'Collins, Wilkie', '1999-02-01', 33, 'https://www.gutenberg.org/ebooks/1624', 'en', 48), +(24857, 'Out of Mulberry Street: Stories of Tenement life in New York City', 'Riis, Jacob A. (Jacob August)', '2011-12-27', 13, 'https://www.gutenberg.org/ebooks/38419', 'en', 10434), +(24858, 'The Wide World Magazine, Vol. 22, No. 129, December, 1908', 'Various', '2017-01-09', 22, 'https://www.gutenberg.org/ebooks/53928', 'en', 10435), +(24859, 'History of the State of California\r\nFrom the Period of the Conquest by Spain to Her Occupation by the United States of America', 'Frost, John', '2012-08-14', 7, 'https://www.gutenberg.org/ebooks/40503', 'en', 10436), +(24860, 'Macmillan & Co.\'s Catalogue. November 1878\r\nOf Works in Belles Lettres, Including Poetry, Fiction, Etc.', 'Macmillan & Co.', '2013-08-02', 8, 'https://www.gutenberg.org/ebooks/43386', 'en', 2663), +(24861, 'Samantha among the Brethren — Volume 7', 'Holley, Marietta', '2004-08-10', 13, 'https://www.gutenberg.org/ebooks/9449', 'en', 10437), +(24862, 'Famous Firesides of French Canada', 'Alloway, Mary Wilson', '2009-12-14', 6, 'https://www.gutenberg.org/ebooks/30674', 'en', 10438), +(24863, 'Pilgrimages to the Spas in Pursuit of Health and Recreation\r\nWith an inquiry into the comparative merits of different mineral waters: the maladies to which they are applicable, and those in which they are injurious', 'Johnson, James', '2019-08-15', 357, 'https://www.gutenberg.org/ebooks/60104', 'en', 10439), +(24864, 'Life of a Pioneer: Being the Autobiography of James S. Brown', 'Brown, James S. (James Stephens)', '2017-03-09', 13, 'https://www.gutenberg.org/ebooks/54331', 'en', 10440), +(24865, 'The Englishing of French Words; the Dialectal Words in Blunden\'s Poems\r\nSociety for Pure English, Tract 05', 'Society for Pure English', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12524', 'en', 10441), +(24866, 'Jewish Fairy Tales and Legends', 'Landa, Gertrude', '2008-09-27', 138, 'https://www.gutenberg.org/ebooks/26711', 'en', 1007), +(24867, 'Essays on Paul Bourget', 'Twain, Mark', '2004-09-16', 42, 'https://www.gutenberg.org/ebooks/3173', 'en', 1765), +(24868, 'Beyond the Black River', 'Howard, Robert E. (Robert Ervin)', '2013-03-03', 181, 'https://www.gutenberg.org/ebooks/42254', 'en', 2513), +(24869, 'The Fugitives: The Tyrant Queen of Madagascar', 'Ballantyne, R. M. (Robert Michael)', '2007-10-31', 17, 'https://www.gutenberg.org/ebooks/23263', 'en', 10442), +(24870, 'The Submarine Boys and the Middies\nThe Prize Detail at Annapolis', 'Durham, Victor G.', '2005-11-13', 16, 'https://www.gutenberg.org/ebooks/17056', 'en', 5237), +(24871, 'The Angevins and the Charter (1154-1216)\r\nThe Beginning of English Law, the Invasion of Ireland and the Crusades', NULL, '2015-12-30', 18, 'https://www.gutenberg.org/ebooks/50791', 'en', 10443), +(24872, 'The Rivers of Great Britain, Descriptive, Historical, Pictorial: Rivers of the East Coast', 'Various', '2014-12-20', 14, 'https://www.gutenberg.org/ebooks/47726', 'en', 10444), +(24873, 'The House of Martha', 'Stockton, Frank Richard', '2006-07-13', 20, 'https://www.gutenberg.org/ebooks/18822', 'en', 61), +(24874, 'Harlequin and Columbine', 'Tarkington, Booth', '2004-09-01', 35, 'https://www.gutenberg.org/ebooks/6401', 'en', 10445), +(24875, 'Encyclopaedia Britannica, 11th Edition, \"English Language\" to \"Epsom Salts\"\r\nVolume 9, Slice 6', 'Various', '2011-02-17', 45, 'https://www.gutenberg.org/ebooks/35306', 'en', 1081), +(24876, 'Book-plates of To-day', NULL, '2016-04-03', 17, 'https://www.gutenberg.org/ebooks/51643', 'en', 4936), +(24877, 'His Life: A Complete Story in the Words of the Four Gospels', 'Barton, William Eleazar', '2005-07-02', 30, 'https://www.gutenberg.org/ebooks/16184', 'en', 10446), +(24878, 'Architecture: Classic and Early Christian', 'Smith, T. Roger (Thomas Roger)', '2009-08-22', 18, 'https://www.gutenberg.org/ebooks/29759', 'en', 10026), +(24879, 'His Little World: The Story of Hunch Badeau', 'Merwin, Samuel', '2017-02-03', 11, 'https://www.gutenberg.org/ebooks/54103', 'en', 10447), +(24880, 'A New England Girlhood, Outlined from Memory (Beverly, MA)', 'Larcom, Lucy', '2000-08-01', 40, 'https://www.gutenberg.org/ebooks/2293', 'en', 10448), +(24881, 'The Bountiful Lady\r\nOr, How Mary was changed from a very Miserable Little Girl to a very Happy One', 'Cobb, Thomas', '2009-11-10', 9, 'https://www.gutenberg.org/ebooks/30446', 'en', 62), +(24882, 'The Wandering Jew — Volume 03', 'Sue, Eugène', '2004-10-25', 6, 'https://www.gutenberg.org/ebooks/3341', 'en', 4728), +(24883, 'The Song of Lancaster, Kentucky\r\nTo the statesmen, soldiers, and citizens of Garrard County.', 'Potts, Eugenia Dunlap', '2010-03-10', 3, 'https://www.gutenberg.org/ebooks/31594', 'en', 10449), +(24884, 'The Young Marooners on the Florida Coast', 'Goulding, F. R. (Francis Robert)', '2013-02-10', 48, 'https://www.gutenberg.org/ebooks/42066', 'en', 550), +(24885, 'Dedication', 'Kipling, Rudyard', '2004-06-01', 0, 'https://www.gutenberg.org/ebooks/12716', 'en', 8), +(24886, 'L\'Illustration, No. 3263, 9 Septembre 1905', 'Various', '2011-04-19', 4, 'https://www.gutenberg.org/ebooks/35908', 'fr', 150), +(24887, 'The Jessica Letters: An Editor\'s Romance', 'Harris, Corra', '2008-09-04', 6, 'https://www.gutenberg.org/ebooks/26523', 'en', 3015), +(24888, 'L\'Illustration, No. 1599, 18 Octobre 1873', 'Various', '2014-12-02', 3, 'https://www.gutenberg.org/ebooks/47514', 'fr', 150), +(24889, 'A Popular History of Ireland : from the Earliest Period to the Emancipation of the Catholics - Volume 2', 'McGee, Thomas D\'Arcy', '2004-10-01', 3, 'https://www.gutenberg.org/ebooks/6633', 'en', 7442), +(24890, 'The Two Shipmates', 'Kingston, William Henry Giles', '2007-10-17', 18, 'https://www.gutenberg.org/ebooks/23051', 'en', 7815), +(24891, 'Titian', 'Bensusan, S. L. (Samuel Levy)', '2013-10-21', 22, 'https://www.gutenberg.org/ebooks/43988', 'en', 4742), +(24892, 'La sirène\nSouvenir de Capri', 'Toudouze, Gustave', '2005-12-09', 7, 'https://www.gutenberg.org/ebooks/17264', 'fr', 61), +(24893, 'Eversti Stålhammar: Kuvauksia Ruotsin suuruuden ajoilta', 'Starbäck, C. Georg (Carl Georg)', '2016-03-16', 5, 'https://www.gutenberg.org/ebooks/51471', 'fi', 98), +(24894, 'Wilton School; or, Harry Campbell\'s Revenge', 'Weatherly, F. E. (Frederic Edward)', '2007-07-31', 8, 'https://www.gutenberg.org/ebooks/22183', 'en', 1330), +(24895, 'L\'Amérique sous le nom de Fou-Sang', 'Paravey, Charles Hippolyte, chevalier de', '2011-01-31', 64, 'https://www.gutenberg.org/ebooks/35134', 'fr', 10450), +(24896, 'Popular British Ballads, Ancient and Modern, Vol. 3 (of 4)', NULL, '2014-03-28', 6, 'https://www.gutenberg.org/ebooks/45243', 'en', 4582), +(24897, 'Diary of Samuel Pepys — Volume 42: March/April 1665-66', 'Pepys, Samuel', '2004-12-01', 8, 'https://www.gutenberg.org/ebooks/4164', 'en', 2197), +(24898, 'Twice Bought', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 23, 'https://www.gutenberg.org/ebooks/21706', 'en', 1655), +(24899, 'The Present Picture of New South Wales (1811)', 'Mann, D. D. (David Dickinson)', '2005-04-04', 28, 'https://www.gutenberg.org/ebooks/15533', 'en', 10451), +(24900, 'Sotilaskertomuksia', 'Kipling, Rudyard', '2016-10-19', 3, 'https://www.gutenberg.org/ebooks/53326', 'fi', 2224), +(24901, 'De Ellendigen (Deel 2 van 5)', 'Hugo, Victor', '2011-10-07', 17, 'https://www.gutenberg.org/ebooks/37663', 'nl', 264), +(24902, 'The Arts and Crafts of Older Spain, Volume 1 (of 3)', 'Williams, Leonard', '2013-12-10', 30, 'https://www.gutenberg.org/ebooks/44391', 'en', 10452), +(24903, 'Elegies and Other Small Poems', 'Betham, Matilda', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11193', 'en', 3947), +(24904, 'His Excellency [Son Exc. Eugène Rougon]', 'Zola, Émile', '2018-02-27', 22, 'https://www.gutenberg.org/ebooks/56654', 'en', 2373), +(24905, 'Justice in the By-Ways, a Tale of Life', 'Adams, F. Colburn (Francis Colburn)', '2004-01-01', 30, 'https://www.gutenberg.org/ebooks/4958', 'en', 9849), +(24906, 'A Soldier\'s Trial: An Episode of the Canteen Crusade', 'King, Charles', '2010-05-09', 13, 'https://www.gutenberg.org/ebooks/32311', 'en', 10453), +(24907, 'Mrs. Lirriper\'s Lodgings', 'Dickens, Charles', '1998-08-01', 33, 'https://www.gutenberg.org/ebooks/1416', 'en', 2255), +(24908, 'Tenting on the Plains; or, General Custer in Kansas and Texas', 'Custer, Elizabeth Bacon', '2012-09-11', 23, 'https://www.gutenberg.org/ebooks/40731', 'en', 10454), +(24909, 'French Ways and Their Meaning', 'Wharton, Edith', '2018-08-28', 48, 'https://www.gutenberg.org/ebooks/57786', 'en', 10455), +(24910, 'The Rivet in Grandfather\'s Neck: A Comedy of Limitations', 'Cabell, James Branch', '2003-11-01', 45, 'https://www.gutenberg.org/ebooks/10041', 'en', 1439), +(24911, 'The Native Soil', 'Nourse, Alan Edward', '2008-01-14', 34, 'https://www.gutenberg.org/ebooks/24274', 'en', 179), +(24912, 'Famous Men of the Middle Ages', 'Poland, Addison B.', '2003-02-01', 248, 'https://www.gutenberg.org/ebooks/3725', 'en', 6411), +(24913, 'The Old Chelsea Bun-House: A Tale of the Last Century', 'Manning, Anne', '2016-04-22', 12, 'https://www.gutenberg.org/ebooks/51829', 'en', 5842), +(24914, 'Horse Laughs', 'Marshall, Charles Hunt', '2013-03-24', 88, 'https://www.gutenberg.org/ebooks/42402', 'en', 2777), +(24915, 'Le Tour du Monde; Shangaï, la métropole chinoise\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-08', 7, 'https://www.gutenberg.org/ebooks/29933', 'fr', 1182), +(24916, 'The Atlantic Monthly, Volume 01, No. 06, April, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 6, 'https://www.gutenberg.org/ebooks/12372', 'en', 1227), +(24917, 'Publications of the Astronomical Society of the Pacific, Volume 1', 'Astronomical Society of the Pacific', '2008-07-29', 7, 'https://www.gutenberg.org/ebooks/26147', 'en', 10456), +(24918, 'The Boy Ranchers at Spur Creek; Or, Fighting the Sheep Herders', 'Baker, Willard F.', '2008-10-29', 14, 'https://www.gutenberg.org/ebooks/27095', 'en', 3946), +(24919, '二十年目睹之怪現狀', 'Wu, Jianren', '2017-04-18', 54, 'https://www.gutenberg.org/ebooks/54567', 'zh', 1003), +(24920, 'Bumper the White Rabbit', 'Walsh, George Ethelbert', '2006-06-21', 26, 'https://www.gutenberg.org/ebooks/18648', 'en', 625), +(24921, 'The Complete Works in Philosophy, Politics and Morals of the late Dr. Benjamin Franklin, Vol. 3 [of 3]', 'Franklin, Benjamin', '2015-02-02', 56, 'https://www.gutenberg.org/ebooks/48138', 'en', 3754), +(24922, 'Graham of Claverhouse', 'Maclaren, Ian', '2009-09-18', 10, 'https://www.gutenberg.org/ebooks/30022', 'en', 10457), +(24923, 'Moral Poison in Modern Fiction', 'Johnson, R. Brimley (Reginald Brimley)', '2016-01-23', 56, 'https://www.gutenberg.org/ebooks/51015', 'en', 10458), +(24924, 'Archimedes', 'Heath, Thomas Little, Sir', '2011-03-11', 25, 'https://www.gutenberg.org/ebooks/35550', 'en', 10459), +(24925, 'Old Calabria', 'Douglas, Norman', '2005-01-01', 44, 'https://www.gutenberg.org/ebooks/7385', 'en', 10460), +(24926, 'A Select Collection of Old English Plays, Volume 03', NULL, '2014-10-22', 22, 'https://www.gutenberg.org/ebooks/47170', 'en', 1088), +(24927, 'The Rosery Folk', 'Fenn, George Manville', '2010-11-29', 6, 'https://www.gutenberg.org/ebooks/34482', 'en', 61), +(24928, 'Donovan Pasha, and Some People of Egypt — Volume 2', 'Parker, Gilbert', '2004-08-01', 33, 'https://www.gutenberg.org/ebooks/6257', 'en', 179), +(24929, 'Farm drainage\r\nThe Principles, Processes, and Effects of Draining Land with Stones, Wood, Plows, and Open Ditches, and Especially with Tiles', 'French, Henry F. (Henry Flagg)', '2007-11-10', 22, 'https://www.gutenberg.org/ebooks/23435', 'en', 10461), +(24930, 'Arthur Brown, The Young Captain\r\nThe Pleasant Cove Series', 'Kellogg, Elijah', '2015-05-09', 8, 'https://www.gutenberg.org/ebooks/48904', 'en', 141), +(24931, 'Von Tripolis nach Alexandrien - 2. Band', 'Rohlfs, Gerhard', '2006-01-24', 14, 'https://www.gutenberg.org/ebooks/17600', 'de', 6541), +(24932, 'Partners of Chance', 'Knibbs, Henry Herbert', '2004-11-18', 28, 'https://www.gutenberg.org/ebooks/14085', 'en', 315), +(24933, 'Recuerdos de Italia (parte 2 de 2)', 'Castelar, Emilio', '2016-12-15', 14, 'https://www.gutenberg.org/ebooks/53742', 'es', 2452), +(24934, 'Winona of the Camp Fire', 'Widdemer, Margaret', '2011-08-26', 33, 'https://www.gutenberg.org/ebooks/37207', 'en', 10462), +(24935, 'Wings Over the Rockies; Or, Jack Ralston\'s New Cloud Chaser', 'Newcomb, Ambrose', '2014-05-10', 10, 'https://www.gutenberg.org/ebooks/45627', 'en', 10463), +(24936, 'Complete Project Gutenberg Works of George Meredith', 'Meredith, George', '2004-11-06', 44, 'https://www.gutenberg.org/ebooks/4500', 'en', 137), +(24937, 'The Powder Monkey', 'Fenn, George Manville', '2007-05-08', 26, 'https://www.gutenberg.org/ebooks/21362', 'en', 10464), +(24938, 'Martva III', 'Lassila, Maiju', '2016-08-01', 5, 'https://www.gutenberg.org/ebooks/52690', 'fi', 175), +(24939, 'The Philippine Islands, 1493-1898 — Volume 16 of 55 \r\n1609\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-02-24', 90, 'https://www.gutenberg.org/ebooks/15157', 'en', 8515), +(24940, 'Kalevalan laulumailta: Elias Lönnrotin poluilla Vienan Karjalassa\r\nKuvaus Vienan Karjalan maasta, kansasta, siellä tapahtuneesta runonkeruusta ja runoista itsestään', 'Inha, Into Konrad', '2019-04-14', 2, 'https://www.gutenberg.org/ebooks/59278', 'fi', 10465), +(24941, 'Nooks and Corners of Shropshire', 'Timmins, H. Thornhill (Henry Thornhill)', '2012-07-27', 17, 'https://www.gutenberg.org/ebooks/40355', 'en', 3597), +(24942, 'Torquato Tasso\r\nEin Schauspiel', 'Goethe, Johann Wolfgang von', '2003-12-01', 88, 'https://www.gutenberg.org/ebooks/10425', 'de', 8455), +(24943, 'Dumpy Proverbs\r\nDumpy Books for Children #24', 'Appleton, Honor C.', '2008-02-14', 28, 'https://www.gutenberg.org/ebooks/24610', 'en', 2296), +(24944, 'The Amethyst Cross', 'Hume, Fergus', '2017-12-23', 20, 'https://www.gutenberg.org/ebooks/56230', 'en', 167), +(24945, 'Geschiedenis der Noordsche Compagnie', 'Muller, Samuel', '2012-11-04', 13, 'https://www.gutenberg.org/ebooks/41287', 'nl', 3261), +(24946, 'The Ties That Bind', 'Miller, Walter M.', '2010-06-11', 30, 'https://www.gutenberg.org/ebooks/32775', 'en', 26), +(24947, 'Journal of Dr. Elias Cornelius, a Revolutionary Surgeon', 'Cornelius, Elias', '2011-08-11', 4, 'https://www.gutenberg.org/ebooks/37035', 'en', 10466), +(24948, 'Hellät sukulaiset: Huvinäytelmä kolmessa näytöksessä', 'Benedix, Roderich', '2016-11-21', 13, 'https://www.gutenberg.org/ebooks/53570', 'fi', 907), +(24949, 'Pic the Weapon-Maker', 'Langford, George', '2018-10-30', 23, 'https://www.gutenberg.org/ebooks/58198', 'en', 5072), +(24950, 'The Commercial Restraints of Ireland', 'Hely-Hutchinson, John', '2012-02-12', 13, 'https://www.gutenberg.org/ebooks/38841', 'en', 10467), +(24951, 'Warrior Gap: A Story of the Sioux Outbreak of \'68.', 'King, Charles', '2006-12-10', 31, 'https://www.gutenberg.org/ebooks/20082', 'en', 315), +(24952, 'Benton of the Royal Mounted: A Tale of the Royal Northwest Mounted Police', 'Kendall, Ralph S. (Ralph Selwood)', '2013-01-20', 22, 'https://www.gutenberg.org/ebooks/41889', 'en', 2662), +(24953, 'Mother Goose in Prose', 'Baum, L. Frank (Lyman Frank)', '2007-04-24', 5, 'https://www.gutenberg.org/ebooks/21150', 'en', 1223), +(24954, 'Gardening for Little Girls', 'Foster, Olive Hyde', '2012-06-14', 19, 'https://www.gutenberg.org/ebooks/39993', 'en', 1413), +(24955, 'A Psychiatric Milestone: Bloomingdale Hospital Centenary, 1821-1921', NULL, '2005-03-14', 17, 'https://www.gutenberg.org/ebooks/15365', 'en', 10468), +(24956, 'The Chimney-Corner', 'Stowe, Harriet Beecher', '2014-04-18', 6, 'https://www.gutenberg.org/ebooks/45415', 'en', 1619), +(24957, 'Prolegomena to the History of Israel', 'Wellhausen, Julius', '2003-12-01', 95, 'https://www.gutenberg.org/ebooks/4732', 'en', 10469), +(24958, 'Within the Deep\nCassell\'s \"Eyes and No Eyes\" Series, Book VIII.', 'Smith, R. Cadwallader', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/10617', 'en', 10470), +(24959, 'A Taxonomic Revision of the Leptodactylid Frog Genus Syrrhophus Cope', 'Lynch, John D.', '2011-10-21', 16, 'https://www.gutenberg.org/ebooks/37809', 'en', 823), +(24960, '定情人', 'Tianhuazangzhuren', '2008-01-02', 19, 'https://www.gutenberg.org/ebooks/24422', 'zh', 1003), +(24961, 'The Playboy of the Western World: A Comedy in Three Acts', 'Synge, J. M. (John Millington)', '1998-03-01', 151, 'https://www.gutenberg.org/ebooks/1240', 'en', 5104), +(24962, 'Lukkarin Mari\nKynäily', 'Thomasson, Pehr', '2010-08-23', 12, 'https://www.gutenberg.org/ebooks/33495', 'fi', 61), +(24963, 'The Archaeology of the Yakima Valley', 'Smith, Harlan Ingersoll', '2012-07-08', 8, 'https://www.gutenberg.org/ebooks/40167', 'en', 10471), +(24964, 'Essays in Radical Empiricism', 'James, William', '2010-05-26', 128, 'https://www.gutenberg.org/ebooks/32547', 'en', 10472), +(24965, 'Rago and Goni, the Tree-Dweller Children', 'Wiley, Belle', '2019-07-09', 83, 'https://www.gutenberg.org/ebooks/59876', 'en', 10473), +(24966, 'Studies in Greek Scenery, Legend and History\r\nSelected from His Commentary on Pausanias\' \'Description of Greece,\'', 'Frazer, James George', '2017-11-19', 25, 'https://www.gutenberg.org/ebooks/56002', 'en', 4713), +(24967, 'Roman Farm Management: The Treatises of Cato and Varro', 'Varro, Marcus Terentius', '2004-04-01', 90, 'https://www.gutenberg.org/ebooks/12140', 'en', 10474); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(24968, 'The Initiates of the Flame', 'Hall, Manly P. (Manly Palmer)', '2017-10-06', 219, 'https://www.gutenberg.org/ebooks/55687', 'en', 10475), +(24969, 'Les Cent Jours (2/2)\r\nMémoires pour servir à l\'histoire de la vie privée, du\r\nretour et du règne de Napoléon en 1815.', 'Fleury de Chaboulon, Pierre Alexandre Édouard, baron', '2008-08-20', 23, 'https://www.gutenberg.org/ebooks/26375', 'fr', 6534), +(24970, 'Human Genome Project, Chromosome Number 17', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3517', 'en', 1385), +(24971, 'The Outdoor Chums in the Big Woods; Or, Rival Hunters of Lumber Run', 'Allen, Quincy', '2013-05-02', 27, 'https://www.gutenberg.org/ebooks/42630', 'en', 176), +(24972, 'Comic Bible Sketches, Reprinted from \"The Freethinker\"', 'Foote, G. W. (George William)', '2009-10-06', 122, 'https://www.gutenberg.org/ebooks/30210', 'en', 1191), +(24973, 'Anne of Green Gables', 'Montgomery, L. M. (Lucy Maud)', '2008-06-27', 3764, 'https://www.gutenberg.org/ebooks/45', 'en', 2549), +(24974, 'The Boy Scouts of Woodcraft Camp', 'Burgess, Thornton W. (Thornton Waldo)', '2017-05-21', 15, 'https://www.gutenberg.org/ebooks/54755', 'en', 1002), +(24975, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1878-01)', NULL, '2004-08-02', 10, 'https://www.gutenberg.org/ebooks/13092', 'pt', 10301), +(24976, 'Songs of Labor, and Other Poems', 'Rosenfeld, Morris', '2004-11-01', 23, 'https://www.gutenberg.org/ebooks/6859', 'en', 8), +(24977, 'Memórias', 'Brandão, Raul', '2011-04-03', 45, 'https://www.gutenberg.org/ebooks/35762', 'pt', 10476), +(24978, 'Pan', 'Hamsun, Knut', '2014-07-15', 10, 'https://www.gutenberg.org/ebooks/46290', 'fi', 286), +(24979, 'Émancipées', 'Cim, Albert', '2016-02-16', 10, 'https://www.gutenberg.org/ebooks/51227', 'fr', 298), +(24980, 'A Circuit Rider\'s Wife', 'Harris, Corra', '2007-11-24', 10, 'https://www.gutenberg.org/ebooks/23607', 'en', 10477), +(24981, 'The Adventures of Hugh Trevor', 'Holcroft, Thomas', '2006-02-01', 23, 'https://www.gutenberg.org/ebooks/9811', 'en', 1902), +(24982, 'Van Peking naar Parijs per auto\r\nDe Aarde en haar Volken, 1908', 'Borghese, Scipione', '2005-12-31', 26, 'https://www.gutenberg.org/ebooks/17432', 'nl', 10478), +(24983, 'Gadsby: A Story of Over 50,000 Words Without Using the Letter \"E\"', 'Wright, Ernest Vincent', '2014-11-13', 153, 'https://www.gutenberg.org/ebooks/47342', 'en', 6827), +(24984, 'The Perils of Pauline', 'Goddard, Charles', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6065', 'en', 2530), +(24985, 'The Place of Anarchism in Socialistic Evolution\nAn Address Delivered in Paris', 'Kropotkin, Petr Alekseevich, kniaz', '2010-01-27', 56, 'https://www.gutenberg.org/ebooks/31104', 'en', 10479), +(24986, 'The Bible, Douay-Rheims, Book 39: Nahum\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8339', 'en', 6728), +(24987, 'Vanina Vanini; Pallianon herttuatar: Kaksi kertomusta', 'Stendhal', '2017-08-27', 35, 'https://www.gutenberg.org/ebooks/55441', 'fi', 1152), +(24988, 'Samantha at the St. Louis Exposition', 'Holley, Marietta', '2004-05-01', 16, 'https://www.gutenberg.org/ebooks/12386', 'en', 10480), +(24989, 'The Rider of Waroona', 'Scott, G. Firth', '2008-10-27', 12, 'https://www.gutenberg.org/ebooks/27061', 'en', 792), +(24990, 'The Dollar Hen', 'Hastings, Milo', '2004-08-22', 31, 'https://www.gutenberg.org/ebooks/13254', 'en', 6966), +(24991, 'Adventures of an Aide-de-Camp; or, A Campaign in Calabria, Volume 1 (of 3)', 'Grant, James', '2017-04-23', 26, 'https://www.gutenberg.org/ebooks/54593', 'en', 10326), +(24992, 'Five Children and It', 'Nesbit, E. (Edith)', '1997-01-01', 275, 'https://www.gutenberg.org/ebooks/778', 'en', 10481), +(24993, 'The Catholic World, Vol. 10, October, 1869 to March, 1870', 'Various', '2013-08-21', 14, 'https://www.gutenberg.org/ebooks/43524', 'en', 96), +(24994, 'The Bridge of the Gods\nA Romance of Indian Oregon. 19th Edition.', 'Balch, Frederic Homer', '2009-05-14', 28, 'https://www.gutenberg.org/ebooks/28815', 'en', 1357), +(24995, 'Questionable Amusements and Worthy Substitutes', 'Judy, J. M.', '2001-04-01', 29, 'https://www.gutenberg.org/ebooks/2603', 'en', 10425), +(24996, 'Four Weird Tales', 'Blackwood, Algernon', '2005-09-20', 256, 'https://www.gutenberg.org/ebooks/16726', 'en', 2354), +(24997, 'Lives of the most Eminent Painters Sculptors and Architects, Vol. 08 (of 10)\r\nBastiano to Taddeo Zucchero', 'Vasari, Giorgio', '2010-04-10', 53, 'https://www.gutenberg.org/ebooks/31938', 'en', 915), +(24998, 'Sense from Thought Divide', 'Clifton, Mark', '2007-09-05', 40, 'https://www.gutenberg.org/ebooks/22513', 'en', 784), +(24999, 'He Knew Lincoln, and Other Billy Brown Stories', 'Tarbell, Ida M. (Ida Minerva)', '2015-08-30', 8, 'https://www.gutenberg.org/ebooks/49822', 'en', 2597), +(25000, 'A Sicilian Romance', 'Radcliffe, Ann Ward', '2005-01-01', 140, 'https://www.gutenberg.org/ebooks/7371', 'en', 428), +(25001, 'Our Little Quebec Cousin', 'Saxe, Mary S. (Mary Sollace)', '2014-06-21', 11, 'https://www.gutenberg.org/ebooks/46056', 'en', 10482), +(25002, 'Antología portorriqueña: Prosa y verso', 'Fernández Juncos, Manuel', '2014-10-23', 16, 'https://www.gutenberg.org/ebooks/47184', 'es', 10483), +(25003, 'The Admirable Lady Biddy Fane\r\nHer Surprising Curious Adventures In Strange Parts & Happy Deliverance From Pirates, Battle, Captivity, & Other Terrors; Together With Divers Romantic & Moving Accidents As Set Forth By Benet Pengilly (Her Companion In Misfortune & Joy), & Now First Done Into Print', 'Barrett, Frank', '2010-11-29', 19, 'https://www.gutenberg.org/ebooks/34476', 'en', 323), +(25004, 'Het Nieuwe Leven (La Vita Nuova)', 'Dante Alighieri', '2009-02-09', 19, 'https://www.gutenberg.org/ebooks/28029', 'nl', 10484), +(25005, 'The Dunwich Horror', 'Lovecraft, H. P. (Howard Phillips)', '2015-10-04', 1157, 'https://www.gutenberg.org/ebooks/50133', 'en', 580), +(25006, 'Les Portes de l\'Enfer', 'Level, Maurice', '2004-11-17', 10, 'https://www.gutenberg.org/ebooks/14071', 'fr', 10485), +(25007, 'Le Voluptueux Voyage', 'Comminges, Aimery de, comte de', '2007-01-01', 14, 'https://www.gutenberg.org/ebooks/20244', 'fr', 61), +(25008, 'Princess Polly\'s Playmates', 'Brooks, Amy', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5426', 'en', 62), +(25009, 'British Regiments at the Front, The Story of Their Battle Honours', 'Hodder, Reginald', '2014-01-18', 29, 'https://www.gutenberg.org/ebooks/44701', 'en', 462), +(25010, 'Misrepresentative Men', 'Graham, Harry', '2011-06-03', 10, 'https://www.gutenberg.org/ebooks/36321', 'en', 2981), +(25011, 'The Three Lieutenants', 'Kingston, William Henry Giles', '2007-05-08', 22, 'https://www.gutenberg.org/ebooks/21396', 'en', 10486), +(25012, 'Prehistoric Men', 'Braidwood, Robert J. (Robert John)', '2016-07-28', 19, 'https://www.gutenberg.org/ebooks/52664', 'en', 1381), +(25013, 'A New Pocket Gopher (Genus Thomomys) From Wyoming and Colorado', 'Hall, E. Raymond (Eugene Raymond)', '2010-09-06', 18, 'https://www.gutenberg.org/ebooks/33653', 'en', 6337), +(25014, 'A Horse\'s Tale', 'Twain, Mark', '1997-10-01', 80, 'https://www.gutenberg.org/ebooks/1086', 'en', 61), +(25015, 'West Point\r\nAn Intimate Picture of the National Military Academy and of the Life of the Cadet', 'Richardson, Robert C. (Robert Charlwood)', '2018-06-13', 14, 'https://www.gutenberg.org/ebooks/57316', 'en', 10487), +(25016, 'Rauta-kallo: Historiallinen kertomus nuorisolle', 'Hoffmann, Franz', '2008-06-09', 15, 'https://www.gutenberg.org/ebooks/25736', 'fi', 10488), +(25017, 'Keeping up with Lizzie', 'Bacheller, Irving', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11503', 'en', 712), +(25018, 'The Story of Tonty', 'Catherwood, Mary Hartwell', '2012-11-02', 17, 'https://www.gutenberg.org/ebooks/41273', 'en', 10489), +(25019, 'Blackboard Drawing', 'Whitney, Frederick', '2010-06-11', 34, 'https://www.gutenberg.org/ebooks/32781', 'en', 10490), +(25020, 'The Second War with England, Vol. 2 of 2', 'Headley, Joel Tyler', '2012-04-04', 55, 'https://www.gutenberg.org/ebooks/39369', 'en', 7149), +(25021, 'Chess Strategy', 'Lasker, Edward', '2004-05-01', 211, 'https://www.gutenberg.org/ebooks/5614', 'en', 3733), +(25022, 'The Pirate of Jasper Peak', 'Meigs, Cornelia', '2018-09-17', 15, 'https://www.gutenberg.org/ebooks/57918', 'en', 6027), +(25023, 'Blackwood\'s Edinburgh Magazine, Volume 64, No. 393, July 1848', 'Various', '2013-12-28', 11, 'https://www.gutenberg.org/ebooks/44533', 'en', 274), +(25024, 'Vankila', 'Gorky, Maksim', '2016-11-23', 12, 'https://www.gutenberg.org/ebooks/53584', 'fi', 147), +(25025, 'Christopher Carson, Familiarly Known as Kit Carson', 'Abbott, John S. C. (John Stevens Cabot)', '2004-12-03', 27, 'https://www.gutenberg.org/ebooks/14243', 'en', 10491), +(25026, 'Rimrock Jones', 'Coolidge, Dane', '2006-12-10', 12, 'https://www.gutenberg.org/ebooks/20076', 'en', 315), +(25027, 'American Eloquence, Volume 1\r\nStudies In American Political History (1896)', NULL, '2005-03-17', 21, 'https://www.gutenberg.org/ebooks/15391', 'en', 1720), +(25028, 'Harps Hung up in Babylon', 'Colton, Arthur', '2016-06-30', 9, 'https://www.gutenberg.org/ebooks/52456', 'en', 994), +(25029, 'Sources of the Synoptic Gospels', 'Patton, Carl S. (Carl Safford)', '2012-06-10', 30, 'https://www.gutenberg.org/ebooks/39967', 'en', 3111), +(25030, 'Christian Sects in the Nineteenth Century', 'Cornwallis, Caroline Frances', '2011-05-15', 2, 'https://www.gutenberg.org/ebooks/36113', 'en', 10492), +(25031, 'Chats on English China', 'Hayden, Arthur', '2018-05-09', 10, 'https://www.gutenberg.org/ebooks/57124', 'en', 10493), +(25032, 'Booknología: El libro digital (1971-2010)', 'Lebert, Marie', '2010-08-18', 32, 'https://www.gutenberg.org/ebooks/33461', 'es', 2047), +(25033, 'The Tale of the Spinning Wheel', 'Buel, Elizabeth C. Barney (Elizabeth Cynthia Barney)', '2019-02-23', 14, 'https://www.gutenberg.org/ebooks/58950', 'en', 10494), +(25034, 'L\'Illustration, No. 0020, 15 Juillet 1843', 'Various', '2011-11-23', 3, 'https://www.gutenberg.org/ebooks/38089', 'fr', 150), +(25035, 'Histoire de la Monarchie de Juillet (Volume 1 / 7)', 'Thureau-Dangin, Paul', '2012-07-10', 6, 'https://www.gutenberg.org/ebooks/40193', 'fr', 8446), +(25036, 'The Cumberland Road', 'Hulbert, Archer Butler', '2012-10-13', 13, 'https://www.gutenberg.org/ebooks/41041', 'en', 7520), +(25037, 'The Lion\'s Mouse', 'Williamson, C. N. (Charles Norris)', '2007-07-04', 13, 'https://www.gutenberg.org/ebooks/21998', 'en', 323), +(25038, 'Charlemagne', 'Schmidt, Ferdinand', '2019-07-10', 171, 'https://www.gutenberg.org/ebooks/59882', 'en', 3875), +(25039, 'Khartoum Campaign, 1898; or the Re-Conquest of the Soudan', 'Burleigh, Bennet', '2008-05-17', 32, 'https://www.gutenberg.org/ebooks/25504', 'en', 10495), +(25040, 'Virginia: the Old Dominion\r\nAs seen from its colonial waterway, the historic river James, whose every succeeding turn reveals country replete with monuments and scenes recalling the march of history and its figures from the days of Captain John Smith to the present time', 'Hutchins, Frank W.', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11731', 'en', 10496), +(25041, 'List of Post Offices in Canada, with the Names of the Postmasters ... 1872', 'Canada. Post Office Department', '2017-10-02', 2, 'https://www.gutenberg.org/ebooks/55673', 'en', 4740), +(25042, 'Uncle Sam\'s Boys as Lieutenants; or, Serving Old Glory as Line Officers', 'Hancock, H. Irving (Harrie Irving)', '2008-08-21', 25, 'https://www.gutenberg.org/ebooks/26381', 'en', 3466), +(25043, 'Rautakanki ja kuinka viimein kävi : tosikertomus', 'Tayler, Charles B. (Charles Benjamin)', '2010-02-21', 8, 'https://www.gutenberg.org/ebooks/31336', 'fi', 10497), +(25044, 'The Adventurers', 'Aimard, Gustave', '2013-09-14', 19, 'https://www.gutenberg.org/ebooks/43716', 'en', 61), +(25045, 'Is Shakespeare Dead?\r\nFrom My Autobiography', 'Twain, Mark', '2000-12-01', 142, 'https://www.gutenberg.org/ebooks/2431', 'en', 2784), +(25046, 'The Discovery of America Vol. 1 (of 2)\nwith some account of Ancient America and the Spanish Conquest', 'Fiske, John', '2008-11-13', 56, 'https://www.gutenberg.org/ebooks/27253', 'en', 10498), +(25047, 'Lord Elgin', 'Bourinot, John George', '2004-07-31', 3, 'https://www.gutenberg.org/ebooks/13066', 'en', 10499), +(25048, 'The Strange Cabin on Catamount Island', 'Leslie, Lawrence J.', '2004-12-01', 9, 'https://www.gutenberg.org/ebooks/7143', 'en', 550), +(25049, 'Representative Plays by American Dramatists: 1856-1911: In Mizzoura', 'Thomas, Augustus', '2004-07-22', 3, 'https://www.gutenberg.org/ebooks/12988', 'en', 508), +(25050, 'I Walked in Arden', 'Crawford, Jack Randall', '2011-04-08', 16, 'https://www.gutenberg.org/ebooks/35796', 'en', 6124), +(25051, 'Songs from the Smoke', 'Miller, Madeleine S. (Madeleine Sweeny)', '2014-07-12', 8, 'https://www.gutenberg.org/ebooks/46264', 'en', 10500), +(25052, 'A Little Cook Book for a Little Girl', 'Benton, Caroline French', '2005-08-12', 43, 'https://www.gutenberg.org/ebooks/16514', 'en', 1369), +(25053, 'Tales and Novels — Volume 07\r\nPatronage [part 1]', 'Edgeworth, Maria', '2005-09-01', 47, 'https://www.gutenberg.org/ebooks/8937', 'en', 8215), +(25054, 'Northern Nut Growers Association Report of the Proceedings at the Thirty-Eighth Annual Meeting\nGuelph, Ontario, September 3, 4, 5, 1947', NULL, '2007-09-22', 11, 'https://www.gutenberg.org/ebooks/22721', 'en', 1486), +(25055, 'The History of the 7th Battalion Queen\'s Own Cameron Highlanders', 'MacLeod, Norman', '2015-10-25', 10, 'https://www.gutenberg.org/ebooks/50301', 'en', 10501), +(25056, 'Senator North', 'Atherton, Gertrude Franklin Horn', '2004-07-01', 20, 'https://www.gutenberg.org/ebooks/6091', 'en', 9877), +(25057, 'De Dageraad der Volksvrijheid\r\nGeschiedenis van de wording der Nederlandsche Republiek', 'Streckfuss, Adolf', '2010-12-13', 6, 'https://www.gutenberg.org/ebooks/34644', 'nl', 3372), +(25058, 'A Dissertation on the Books of Origen against Celsus', 'Cunningham, Francis', '2016-05-09', 26, 'https://www.gutenberg.org/ebooks/52032', 'en', 10502), +(25059, 'History of the Jews, Vol. 5 (of 6)', 'Graetz, Heinrich', '2014-03-09', 40, 'https://www.gutenberg.org/ebooks/45085', 'en', 5932), +(25060, 'A Claim on Klondyke: A Romance of the Arctic El Dorado', 'Roper, Edward', '2011-07-02', 6, 'https://www.gutenberg.org/ebooks/36577', 'en', 2144), +(25061, 'The Film Mystery', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-03-01', 46, 'https://www.gutenberg.org/ebooks/5270', 'en', 128), +(25062, 'Entre Nous: Lectures françaises à l\'usage des écoles primaires - I', 'Ligthart, Jan', '2013-11-10', 33, 'https://www.gutenberg.org/ebooks/44157', 'nl', 2216), +(25063, 'Index of the Project Gutenberg Works of Pelham Grenville Wodehouse', 'Wodehouse, P. G. (Pelham Grenville)', '2018-12-21', 107, 'https://www.gutenberg.org/ebooks/58508', 'en', 198), +(25064, 'Veronica', 'Spyri, Johanna', '2005-01-07', 43, 'https://www.gutenberg.org/ebooks/14627', 'en', 195), +(25065, 'Problem on Balak', 'Aycock, Roger D.', '2010-10-04', 56, 'https://www.gutenberg.org/ebooks/33839', 'en', 179), +(25066, 'Tahiti: Roman aus der Südsee. Erster Band.', 'Gerstäcker, Friedrich', '2007-01-22', 16, 'https://www.gutenberg.org/ebooks/20412', 'de', 2123), +(25067, 'Under the Star-Spangled Banner: A Tale of the Spanish-American War', 'Brereton, F. S. (Frederick Sadleir)', '2012-11-21', 14, 'https://www.gutenberg.org/ebooks/41425', 'en', 7433), +(25068, '三字經', 'Wang, Yinglin', '2008-04-25', 15, 'https://www.gutenberg.org/ebooks/25160', 'zh', 10503), +(25069, 'Monsoreaun kreivitär I: Historiallinen romaani', 'Dumas, Alexandre', '2018-02-03', 4, 'https://www.gutenberg.org/ebooks/56492', 'fi', 9760), +(25070, 'Pallieter', 'Timmermans, Felix', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11355', 'nl', 319), +(25071, 'New York Blues', NULL, '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10287', 'en', 10504), +(25072, 'A Primer of Mayan Hieroglyphics', 'Brinton, Daniel G. (Daniel Garrison)', '2018-07-19', 31, 'https://www.gutenberg.org/ebooks/57540', 'en', 4956), +(25073, 'An Outline of Russian Literature', 'Baring, Maurice', '2010-06-27', 42, 'https://www.gutenberg.org/ebooks/33005', 'en', 3923), +(25074, 'The Kingdom of God is Within You / Christianity and Patriotism / Miscellanies', 'Tolstoy, Leo, graf', '2013-08-01', 22, 'https://www.gutenberg.org/ebooks/43372', 'en', 10505), +(25075, 'All Day Wednesday', 'Olin, Richard', '2009-12-14', 22, 'https://www.gutenberg.org/ebooks/30680', 'en', 26), +(25076, 'Two Years Before the Mast', 'Dana, Richard Henry', '2000-02-01', 125, 'https://www.gutenberg.org/ebooks/2055', 'en', 885), +(25077, 'A correspondência de Fradique Mendes\nmemórias e notas', 'Queirós, Eça de', '2008-12-27', 28, 'https://www.gutenberg.org/ebooks/27637', 'pt', 10506), +(25078, 'The Hindu-Yogi Science of Breath', 'Atkinson, William Walker', '2004-09-09', 153, 'https://www.gutenberg.org/ebooks/13402', 'en', 10507), +(25079, 'Resonance in Singing and Speaking', 'Fillebrown, Thomas', '2006-08-29', 58, 'https://www.gutenberg.org/ebooks/19138', 'en', 5276), +(25080, 'Making His Mark', 'Alger, Horatio, Jr.', '2017-07-29', 13, 'https://www.gutenberg.org/ebooks/55217', 'en', 9066), +(25081, 'The Gold Sickle; Or, Hena, The Virgin of The Isle of Sen. A Tale of Druid Gaul', 'Sue, Eugène', '2010-03-23', 31, 'https://www.gutenberg.org/ebooks/31752', 'en', 10508), +(25082, 'Christian Science', 'Twain, Mark', '2004-09-16', 212, 'https://www.gutenberg.org/ebooks/3187', 'en', 10509), +(25083, 'Red Rock: A Chronicle of Reconstruction', 'Page, Thomas Nelson', '2015-08-07', 14, 'https://www.gutenberg.org/ebooks/49648', 'en', 793), +(25084, 'La Gioconda', 'D\'Annunzio, Gabriele', '2007-11-03', 36, 'https://www.gutenberg.org/ebooks/23297', 'it', 4296), +(25085, 'The National Geographic Magazine, Vol. II., No. 1, April, 1890', 'Various', '2015-12-25', 12, 'https://www.gutenberg.org/ebooks/50765', 'en', 3550), +(25086, 'The Point of View', 'James, Henry', '2001-10-01', 102, 'https://www.gutenberg.org/ebooks/2869', 'en', 10510), +(25087, 'Two Royal Foes', 'Madden, Eva Annie', '2010-11-06', 9, 'https://www.gutenberg.org/ebooks/34220', 'en', 282), +(25088, 'Mudfog and Other Sketches', 'Dickens, Charles', '1997-05-01', 231, 'https://www.gutenberg.org/ebooks/912', 'en', 45), +(25089, 'The Little Daisy Girl and Other Poems', 'Cheney, Roland', '2005-02-01', 11, 'https://www.gutenberg.org/ebooks/7527', 'en', 8), +(25090, 'The Noble Lord\nA Comedy in One Act', 'Wilde, Percival', '2006-11-23', 21, 'https://www.gutenberg.org/ebooks/19904', 'en', 402), +(25091, 'By the World Forgot: A Double Romance of the East and West', 'Brady, Cyrus Townsend', '2014-08-16', 11, 'https://www.gutenberg.org/ebooks/46600', 'en', 4731), +(25092, 'Elements of Military Art and Science\r\nOr, Course Of Instruction In Strategy, Fortification, Tactics Of Battles, &C.; Embracing The Duties Of Staff, Infantry, Cavalry, Artillery, And Engineers; Adapted To The Use Of Volunteers And Militia; Third Edition; With Critical Notes On The Mexican And Crimean Wars.', 'Halleck, H. W. (Henry Wager)', '2005-07-01', 52, 'https://www.gutenberg.org/ebooks/16170', 'en', 1359), +(25093, 'Memoirs of the Private Life, Return, and Reign of Napoleon in 1815, Vol. I', 'Fleury de Chaboulon, Pierre Alexandre Édouard, baron', '2007-08-17', 44, 'https://www.gutenberg.org/ebooks/22345', 'en', 6534), +(25094, 'Ulf Van Yern, and Other Ballads', NULL, '2008-12-04', 10, 'https://www.gutenberg.org/ebooks/27405', 'en', 54), +(25095, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1882-06/07)', NULL, '2004-10-06', 16, 'https://www.gutenberg.org/ebooks/13630', 'pt', 10301), +(25096, 'Psmith in the City', 'Wodehouse, P. G. (Pelham Grenville)', '2007-12-01', 38, 'https://www.gutenberg.org/ebooks/23899', 'en', 637), +(25097, 'The Little School-Mothers', 'Meade, L. T.', '2013-07-08', 14, 'https://www.gutenberg.org/ebooks/43140', 'en', 1877), +(25098, 'Othello', 'Shakespeare, William', '2000-07-01', 498, 'https://www.gutenberg.org/ebooks/2267', 'en', 6612), +(25099, 'Traum und Telepathie: Vortrag in der Wiener psychoanalytischen Vereinigung', 'Freud, Sigmund', '2010-03-08', 24, 'https://www.gutenberg.org/ebooks/31560', 'de', 6758), +(25100, 'Memoirs of a Surrey Labourer: A Record of the Last Years of Frederick Bettesworth', 'Sturt, George', '2013-02-13', 8, 'https://www.gutenberg.org/ebooks/42092', 'en', 8729), +(25101, 'Celtic Folklore: Welsh and Manx (Volume 1 of 2)', 'Rhys, John, Sir', '2017-07-02', 53, 'https://www.gutenberg.org/ebooks/55025', 'en', 10511), +(25102, 'Labor and Freedom: The Voice and Pen of Eugene V. Debs', 'Debs, Eugene V. (Eugene Victor)', '2010-09-29', 26, 'https://www.gutenberg.org/ebooks/34012', 'en', 10512), +(25103, 'Silver Cross', 'Johnston, Mary', '2015-11-26', 11, 'https://www.gutenberg.org/ebooks/50557', 'en', 10513), +(25104, 'The Wonders of Pompeii', 'Monnier, Marc', '2005-12-12', 29, 'https://www.gutenberg.org/ebooks/17290', 'en', 10290), +(25105, 'A Treatise on Simple Counterpoint in Forty Lessons', 'Lehmann, Friedrich J. (Friedrich Johann)', '2005-07-21', 40, 'https://www.gutenberg.org/ebooks/16342', 'en', 10514), +(25106, 'Päiväkirja matkaltani Venäjällä, ja käynti Leo Tolstoin luona keväällä 1899', 'Järnefelt, Arvid', '2016-03-17', 7, 'https://www.gutenberg.org/ebooks/51485', 'fi', 10515), +(25107, 'Morality as a Religion\nAn exposition of some first principles', 'Sullivan, W. R. Washington (William Robert Washington)', '2007-07-30', 8, 'https://www.gutenberg.org/ebooks/22177', 'en', 10516), +(25108, 'The Last of the Barons — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7715', 'en', 10517), +(25109, 'The Story of Lutheran Missions', 'Singmaster, Elsie', '2017-10-26', 6, 'https://www.gutenberg.org/ebooks/55819', 'en', 10518), +(25110, 'Hanging in Chains', 'Hartshorne, Albert', '2014-07-27', 20, 'https://www.gutenberg.org/ebooks/46432', 'en', 4353), +(25111, 'Diary of Samuel Pepys — Volume 66: June/July 1668', 'Pepys, Samuel', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/4190', 'en', 738), +(25112, 'McClure\'s Magazine, Vol. 1, No. 1', 'Various', '2011-07-16', 28, 'https://www.gutenberg.org/ebooks/36745', 'en', 883), +(25113, '金瓶梅', 'Xiaoxiaosheng', '2016-05-31', 311, 'https://www.gutenberg.org/ebooks/52200', 'zh', 5698), +(25114, 'From John O\'Groats to Land\'s End\r\nOr, 1372 miles on foot; A book of days and chronicle of adventures by two pedestrians on tour', 'Naylor, John Anderton', '2004-12-22', 22, 'https://www.gutenberg.org/ebooks/14415', 'en', 10519), +(25115, 'Rosemary', 'Lawrence, Josephine', '2007-02-19', 21, 'https://www.gutenberg.org/ebooks/20620', 'en', 2154), +(25116, 'State of the Union Addresses', 'Johnson, Lyndon B. (Lyndon Baines)', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/5042', 'en', 1276), +(25117, 'The Life and Romances of Mrs. Eliza Haywood', 'Whicher, George Frisbie', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/10889', 'en', 10520), +(25118, 'Creed and Deed: A Series of Discourses', 'Adler, Felix', '2011-10-10', 65, 'https://www.gutenberg.org/ebooks/37697', 'en', 655), +(25119, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 16 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-12-05', 11, 'https://www.gutenberg.org/ebooks/44365', 'it', 6107), +(25120, '長恨歌', 'Bai, Juyi', '2008-05-06', 70, 'https://www.gutenberg.org/ebooks/25352', 'zh', 10521), +(25121, 'Deccan Nursery Tales; or, Fairy Tales from the South', 'Kincaid, C. A. (Charles Augustus)', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/11167', 'en', 8566), +(25122, 'A Complete Guide to Heraldry', 'Fox-Davies, Arthur Charles', '2012-12-13', 187, 'https://www.gutenberg.org/ebooks/41617', 'en', 10522), +(25123, 'The Call of the World; or, Every Man\'s Supreme Opportunity', 'Doughty, William E. (William Ellison)', '2010-07-23', 16, 'https://www.gutenberg.org/ebooks/33237', 'en', 10523), +(25124, 'De Hoovenier', 'Tagore, Rabindranath', '2018-08-25', 13, 'https://www.gutenberg.org/ebooks/57772', 'nl', 10524), +(25125, 'Endymion: A Poetic Romance', 'Keats, John', '2008-01-14', 127, 'https://www.gutenberg.org/ebooks/24280', 'en', 10525), +(25126, 'National Character\nA Thanksgiving Discourse Delivered November 15th, 1855,\nin the Franklin Street Presbyterian Church', 'Burt, Nathaniel Clark', '2006-10-21', 17, 'https://www.gutenberg.org/ebooks/19597', 'en', 10526), +(25127, 'Beethoven, the Man and the Artist, as Revealed in His Own Words', 'Beethoven, Ludwig van', '2002-11-01', 68, 'https://www.gutenberg.org/ebooks/3528', 'en', 4674), +(25128, 'A Burlesque Autobiography', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9012', 'en', 190), +(25129, 'Viaggio pel lago di Como', 'Giovio, Giambatista, conte', '2015-02-21', 17, 'https://www.gutenberg.org/ebooks/48335', 'it', 10527), +(25130, 'Bohemians of the Latin Quarter', 'Murger, Henri', '2006-05-27', 95, 'https://www.gutenberg.org/ebooks/18445', 'en', 10528), +(25131, 'Ginx\'s Baby: His Birth and Other Misfortunes; a Satire', 'Jenkins, Edward', '1996-07-01', 34, 'https://www.gutenberg.org/ebooks/581', 'en', 264), +(25132, 'The Story of Siegfried', 'Baldwin, James', '2004-11-01', 45, 'https://www.gutenberg.org/ebooks/6866', 'en', 10529), +(25133, 'Marvel Carbureter and Heat Control\nAs Used on Series 691 Nash Sixes Booklet S', 'Anonymous', '2008-11-20', 11, 'https://www.gutenberg.org/ebooks/27298', 'en', 10530), +(25134, 'The Hilltop Boys on the River', 'Burleigh, Cyril', '2004-07-19', 9, 'https://www.gutenberg.org/ebooks/12943', 'en', 6840), +(25135, 'Higher Lessons in English: A work on English grammar and composition', 'Reed, Alonzo', '2004-12-01', 164, 'https://www.gutenberg.org/ebooks/7188', 'en', 1979), +(25136, 'Poésies complètes,\r\navec préface de Paul Verlaine et notes de l\'éditeur', 'Rimbaud, Arthur', '2009-07-03', 123, 'https://www.gutenberg.org/ebooks/29302', 'fr', 4086), +(25137, 'Proceedings of the New York Historical Association [1906]', 'New York State Historical Association. Meeting', '2016-02-14', 11, 'https://www.gutenberg.org/ebooks/51218', 'en', 10531), +(25138, 'Reminiscences of a South African Pioneer', 'Scully, W. C. (William Charles)', '2007-11-26', 14, 'https://www.gutenberg.org/ebooks/23638', 'en', 6548), +(25139, 'A Compilation of the Messages and Papers of the Presidents. Section 2 (of 2) of Supplemental Volume: Theodore Roosevelt, Supplement', 'Roosevelt, Theodore', '2004-10-29', 10, 'https://www.gutenberg.org/ebooks/13891', 'en', 447), +(25140, 'Tony and the Beetles', 'Dick, Philip K.', '2012-10-07', 183, 'https://www.gutenberg.org/ebooks/40964', 'en', 2564), +(25141, 'Mademoiselle de Maupin', 'Gautier, Théophile', '2004-12-07', 64, 'https://www.gutenberg.org/ebooks/14288', 'fr', 298), +(25142, 'The Life and Work of James A. Garfield, Twentieth President of the United States\r\nEmbracing an Account of the Scenes and Incidents of His Boyhood; the Struggles of His Youth; the Might of His Early Manhood; His Valor As a Soldier; His Career As a Statesman; His Election to the Presidency; and the Tragic Story of His Death.', 'Ridpath, John Clark', '2019-03-17', 15, 'https://www.gutenberg.org/ebooks/59075', 'en', 8162), +(25143, 'Anicet; ou, le panorama', 'Aragon', '2018-03-21', 38, 'https://www.gutenberg.org/ebooks/56801', 'fr', 259), +(25144, 'Andrew Golding: A Tale of the Great Plague', 'Keeling, Annie E.', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10628', 'en', 10532), +(25145, 'Contes Fantastiques et Contes Littéraires', 'Janin, Jules Gabriel', '2011-10-24', 25, 'https://www.gutenberg.org/ebooks/37836', 'fr', 61), +(25146, 'Säveliä: Hämeestä ja muualta', 'Various', '2007-03-23', 7, 'https://www.gutenberg.org/ebooks/20881', 'fi', 8), +(25147, 'Manners: A Novel, Vol 1', 'Panache, Madame', '2012-07-07', 5, 'https://www.gutenberg.org/ebooks/40158', 'en', 1902), +(25148, 'L\'Illustration, No. 0019, 8 Juillet 1843', 'Various', '2011-11-18', 17, 'https://www.gutenberg.org/ebooks/38042', 'fr', 150), +(25149, 'Religious Perplexities', 'Jacks, L. P. (Lawrence Pearsall)', '2010-05-31', 26, 'https://www.gutenberg.org/ebooks/32578', 'en', 4608), +(25150, 'Harper\'s New Monthly Magazine, Vol. 1. No 1, June 1850', 'Various', '2012-03-19', 64, 'https://www.gutenberg.org/ebooks/39190', 'en', 387), +(25151, 'Filthy Rich', 'Sheinbaum, Fred', '2019-07-03', 500, 'https://www.gutenberg.org/ebooks/59849', 'en', 10533), +(25152, 'Aurelian; or, Rome in the Third Century', 'Ware, William', '2007-06-28', 34, 'https://www.gutenberg.org/ebooks/21953', 'en', 258), +(25153, 'The Deputy of Arcis', 'Balzac, Honoré de', '2004-07-26', 24, 'https://www.gutenberg.org/ebooks/1871', 'en', 10534), +(25154, 'In Pursuit of Spring', 'Thomas, Edward', '2018-12-01', 21, 'https://www.gutenberg.org/ebooks/58395', 'en', 10535), +(25155, 'The History of the Post Office in British North America', 'Smith, William', '2011-08-29', 72, 'https://www.gutenberg.org/ebooks/37238', 'en', 10536), +(25156, 'Deadwood Dick Jr. Branded; or, Red Rover at Powder Pocket.', 'Wheeler, Edward L. (Edward Lytton)', '2014-05-09', 16, 'https://www.gutenberg.org/ebooks/45618', 'en', 315), +(25157, 'Bowser the Hound', 'Burgess, Thornton W. (Thornton Waldo)', '2005-02-25', 46, 'https://www.gutenberg.org/ebooks/15168', 'en', 766), +(25158, 'Pee-wee Harris in Luck', 'Fitzhugh, Percy Keese', '2019-04-11', 10, 'https://www.gutenberg.org/ebooks/59247', 'en', 2994), +(25159, 'England\'s Case Against Home Rule', 'Dicey, Albert Venn', '2005-02-03', 24, 'https://www.gutenberg.org/ebooks/14886', 'en', 1751), +(25160, 'Encyclopaedia Britannica, 11th Edition, \"Borgia, Lucrezia\" to \"Bradford, John\"\r\nVolume 4, Slice 3', 'Various', '2010-09-10', 36, 'https://www.gutenberg.org/ebooks/33698', 'en', 1081), +(25161, 'The Atlantic Monthly, Volume 20, No. 120, October, 1867\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2011-12-11', 23, 'https://www.gutenberg.org/ebooks/38270', 'en', 1227), +(25162, 'Mary Jane—Her Visit', 'Judson, Clara Ingram', '2005-05-31', 4, 'https://www.gutenberg.org/ebooks/15954', 'en', 62), +(25163, 'The Sorceress, v. 2 of 3', 'Oliphant, Mrs. (Margaret)', '2016-04-21', 12, 'https://www.gutenberg.org/ebooks/51816', 'en', 61), +(25164, 'The Mirror of Taste, and Dramatic Censor, Vol. I, No. 3, March 1810', NULL, '2008-08-03', 6, 'https://www.gutenberg.org/ebooks/26178', 'en', 5140), +(25165, 'The Life of Henry Bradley Plant\r\nFounder and President of the Plant System of Railroads and Steamships and Also of the Southern Express Company', 'Smyth, G. Hutchinson (George Hutchinson)', '2017-04-17', 13, 'https://www.gutenberg.org/ebooks/54558', 'en', 10537), +(25166, 'The Ghost of Jerry Bundler', 'Jacobs, W. W. (William Wymark)', '2006-06-24', 28, 'https://www.gutenberg.org/ebooks/18677', 'en', 402), +(25167, 'Haïti\nDe Aarde en haar volken, Jaargang 1881', 'La Selve, Edgar', '2015-01-14', 7, 'https://www.gutenberg.org/ebooks/47973', 'nl', 266), +(25168, 'The Threefold Destiny (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 19, 'https://www.gutenberg.org/ebooks/9220', 'en', 179), +(25169, 'In the Line of Battle: Soldiers\' Stories of the War', NULL, '2015-01-29', 58, 'https://www.gutenberg.org/ebooks/48107', 'en', 449), +(25170, 'Billy Topsail & Company: A Story for Boys', 'Duncan, Norman', '2009-06-15', 23, 'https://www.gutenberg.org/ebooks/29130', 'en', 10538), +(25171, 'The Magic Soap Bubble', 'Cory, David', '2008-10-17', 22, 'https://www.gutenberg.org/ebooks/26944', 'en', 2203), +(25172, 'Embers, Volume 1.', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6268', 'en', 28), +(25173, 'Μικρά Φυσικά, Τόμος Δεύτερος', 'Aristotle', '2009-01-26', 21, 'https://www.gutenberg.org/ebooks/27896', 'el', 5380), +(25174, 'Beantwortung der Frage: Was ist Aufklärung?', 'Kant, Immanuel', '2009-12-31', 85, 'https://www.gutenberg.org/ebooks/30821', 'de', 10539), +(25175, 'Shakespeare\'s Insomnia, and the Causes Thereof', 'Head, Franklin H. (Franklin Harvey)', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11990', 'en', 5532), +(25176, 'Change Signals: A Story of the New Football', 'Barbour, Ralph Henry', '2019-05-28', 25, 'https://www.gutenberg.org/ebooks/59623', 'en', 2154), +(25177, 'Hunting the Lions', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 25, 'https://www.gutenberg.org/ebooks/21739', 'en', 1096), +(25178, 'Initiative in Evolution', 'Kidd, Walter', '2016-10-19', 13, 'https://www.gutenberg.org/ebooks/53319', 'en', 1315), +(25179, 'The Life of Captain James Cook, the Circumnavigator', 'Kitson, Arthur', '2004-01-01', 45, 'https://www.gutenberg.org/ebooks/10842', 'en', 754), +(25180, 'Boris Godunov: a drama in verse', 'Pushkin, Aleksandr Sergeevich', '2004-02-01', 104, 'https://www.gutenberg.org/ebooks/5089', 'en', 10540), +(25181, 'Luck, or Cunning, as the Main Means of Organic Modification', 'Butler, Samuel', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4967', 'en', 1315), +(25182, '石點頭', 'Tianranchisou', '2008-05-09', 33, 'https://www.gutenberg.org/ebooks/25399', 'zh', 5698), +(25183, 'The Garden Party, and Other Stories', 'Mansfield, Katherine', '1998-08-01', 359, 'https://www.gutenberg.org/ebooks/1429', 'en', 2754), +(25184, 'Cornwall', 'Mitton, G. E. (Geraldine Edith)', '2012-01-18', 22, 'https://www.gutenberg.org/ebooks/38614', 'en', 2082), +(25185, 'The Story of the Great War, Volume III (of 12)\nThe War Begins, Invasion of Belgium, Battle of the Marne', NULL, '2006-04-19', 19, 'https://www.gutenberg.org/ebooks/18213', 'en', 335), +(25186, 'Littérature et Philosophie mêlées', 'Hugo, Victor', '2006-01-01', 21, 'https://www.gutenberg.org/ebooks/9644', 'fr', 1882), +(25187, 'The Camerons of Highboro', 'Gilchrist, Beth Bradford', '2009-11-15', 15, 'https://www.gutenberg.org/ebooks/30479', 'en', 2273), +(25188, 'Interpretations of Poetry and Religion', 'Santayana, George', '2015-03-23', 48, 'https://www.gutenberg.org/ebooks/48563', 'en', 8), +(25189, 'Canadian Postal Guide', 'Canada. Post Office Department', '2007-12-13', 14, 'https://www.gutenberg.org/ebooks/23852', 'en', 10541), +(25190, 'Christopher Columbus and How He Received and Imparted the Spirit of Discovery', 'Winsor, Justin', '2013-02-10', 26, 'https://www.gutenberg.org/ebooks/42059', 'en', 3403), +(25191, 'The Golden Dream', 'Ballantyne, R. M. (Robert Michael)', '2007-10-01', 26, 'https://www.gutenberg.org/ebooks/22980', 'en', 2057), +(25192, 'The Divine Comedy by Dante, Illustrated, Paradise, Volume 1', 'Dante Alighieri', '2004-08-01', 14, 'https://www.gutenberg.org/ebooks/8796', 'en', 2212), +(25193, 'The High School Boys in Summer Camp', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12729', 'en', 7327), +(25194, 'Are the Planets Inhabited?', 'Maunder, E. Walter (Edward Walter)', '2011-04-23', 102, 'https://www.gutenberg.org/ebooks/35937', 'en', 10542), +(25195, 'The Return of the O\'Mahony: A Novel', 'Frederic, Harold', '2017-06-13', 6, 'https://www.gutenberg.org/ebooks/54900', 'en', 669), +(25196, 'The Weakling', 'Cole, Everett B.', '2009-04-03', 27, 'https://www.gutenberg.org/ebooks/28486', 'en', 26), +(25197, 'An Ethnologist\'s View of History\r\nAn Address Before the Annual Meeting of the New Jersey Historical Society, at Trenton, New Jersey, January 28, 1896', 'Brinton, Daniel G. (Daniel Garrison)', '2009-07-31', 13, 'https://www.gutenberg.org/ebooks/29554', 'en', 7868), +(25198, 'English Conferences of Ernest Renan: Rome and Christianity. Marcus Aurelius', 'Renan, Ernest', '2013-06-03', 23, 'https://www.gutenberg.org/ebooks/42865', 'en', 10543), +(25199, 'The Enchanted April', 'Von Arnim, Elizabeth', '2005-07-29', 187, 'https://www.gutenberg.org/ebooks/16389', 'en', 9134), +(25200, 'Ridgeway: An Historical Romance of the Fenian Invasion of Canada', 'Dubh, Scian', '2005-12-01', 20, 'https://www.gutenberg.org/ebooks/9476', 'en', 10544), +(25201, 'Hemp Hurds as Paper-Making Material', 'Merrill, Jason L.', '2006-02-25', 51, 'https://www.gutenberg.org/ebooks/17855', 'en', 10545), +(25202, 'Suomen kansan muinaisia loitsurunoja', 'Lönnrot, Elias', '2015-04-20', 53, 'https://www.gutenberg.org/ebooks/48751', 'fi', 10546), +(25203, 'China and the Chinese', 'Giles, Herbert Allen', '2006-03-20', 56, 'https://www.gutenberg.org/ebooks/18021', 'en', 3304), +(25204, 'Cruikshank\'s Water Colours', 'Dickens, Charles', '2015-08-11', 46, 'https://www.gutenberg.org/ebooks/49683', 'en', 9799), +(25205, 'Craftsmanship in Teaching', 'Bagley, William C. (William Chandler)', '2005-11-02', 32, 'https://www.gutenberg.org/ebooks/16987', 'en', 973), +(25206, 'Sketch of a New Esthetic of Music', 'Busoni, Ferruccio', '2010-03-27', 47, 'https://www.gutenberg.org/ebooks/31799', 'en', 3582), +(25207, 'A Great Emergency and Other Tales', 'Ewing, Juliana Horatia Gatty', '2005-11-15', 34, 'https://www.gutenberg.org/ebooks/17069', 'en', 1817), +(25208, 'Railway Rates: English and Foreign', 'Grierson, James', '2014-12-20', 7, 'https://www.gutenberg.org/ebooks/47719', 'en', 10547), +(25209, 'Arme Leute', 'Dostoyevsky, Fyodor', '2011-02-20', 67, 'https://www.gutenberg.org/ebooks/35339', 'de', 1763), +(25210, 'Audrey Craven', 'Sinclair, May', '2009-08-23', 19, 'https://www.gutenberg.org/ebooks/29766', 'en', 61), +(25211, 'Jacqueline — Volume 3', 'Bentzon, Th.', '2003-04-01', 16, 'https://www.gutenberg.org/ebooks/3970', 'en', 560), +(25212, 'The Orchid Album, Volume 3\r\nComprising Coloured Figures and Descriptions of New, Rare, and Beautiful Orchidaceous Plants', 'Moore, Thomas', '2019-05-01', 26, 'https://www.gutenberg.org/ebooks/59411', 'en', 10548), +(25213, 'A Question of Marriage', 'Vaizey, George de Horne, Mrs.', '2010-06-20', 12, 'https://www.gutenberg.org/ebooks/32920', 'en', 3305), +(25214, 'The Verse of Alfred Lichtenstein', 'Lichtenstein, Alfred', '2003-08-01', 23, 'https://www.gutenberg.org/ebooks/4369', 'en', 1867), +(25215, 'Air Service Boys Flying for Victory; Or, Bombing the Last German Stronghold', 'Beach, Charles Amory', '2008-07-07', 15, 'https://www.gutenberg.org/ebooks/25997', 'en', 2279), +(25216, 'A estatua do poeta\nOde nacional', 'Araújo, Joaquim de', '2008-03-16', 5, 'https://www.gutenberg.org/ebooks/24845', 'pt', 10237), +(25217, 'Dekameron (2. rész)\nSzáz novella', 'Jókai, Mór', '2018-01-28', 8, 'https://www.gutenberg.org/ebooks/56459', 'hu', 234), +(25218, 'Pretty Geraldine, the New York Salesgirl; or, Wedded to Her Choice', 'Miller, Alex. McVeigh, Mrs.', '2014-06-03', 28, 'https://www.gutenberg.org/ebooks/45872', 'en', 61), +(25219, '商界現形記', 'Tianzhuisheng', '2007-12-31', 8, 'https://www.gutenberg.org/ebooks/24079', 'zh', 1003), +(25220, 'De afsluiting en droogmaking der Zuiderzee. Weerlegging van bezwaren.\r\nuitgegeven door de Zuiderzee-Vereeniging', 'Beekman, A. A. (Anton Albert)', '2011-12-27', 23, 'https://www.gutenberg.org/ebooks/38426', 'nl', 10549), +(25221, 'Disraeli: A Study in Personality and Ideas', 'Sichel, Walter', '2017-01-07', 6, 'https://www.gutenberg.org/ebooks/53917', 'en', 10210), +(25222, 'Histoire de la Révolution française, Tome 07', 'Thiers, Adolphe', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/11964', 'fr', 1536), +(25223, 'Jack and the Bean-Stalk: English Hexameters', 'Tennyson, Hallam Tennyson, Baron', '2014-04-01', 21, 'https://www.gutenberg.org/ebooks/45288', 'en', 859), +(25224, 'Memoirs of the Reign of King George the Second, Volume 3 (of 3)', 'Walpole, Horace', '2019-01-16', 6, 'https://www.gutenberg.org/ebooks/58705', 'en', 4492), +(25225, 'A Texas Ranger', 'Raine, William MacLeod', '2004-01-01', 70, 'https://www.gutenberg.org/ebooks/4993', 'en', 9815), +(25226, 'The Atlantic Monthly, Volume 10, No. 61, November, 1862\r\nMagazine of Literature, Art, and Politics', 'Various', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11158', 'en', 1227), +(25227, 'Budd Boyd\'s Triumph; or, The Boy-Firm of Fox Island', 'Chipman, William P. (William Pendleton)', '2012-05-18', 6, 'https://www.gutenberg.org/ebooks/39732', 'en', 3334), +(25228, 'Dave Darrin and the German Submarines\r\nOr, Making a Clean-up of the Hun Sea Monsters', 'Hancock, H. Irving (Harrie Irving)', '2012-12-15', 20, 'https://www.gutenberg.org/ebooks/41628', 'en', 146), +(25229, 'The Laughing Cavalier: The Story of the Ancestor of the Scarlet Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2010-07-20', 61, 'https://www.gutenberg.org/ebooks/33208', 'en', 98), +(25230, 'Sketches New and Old, Part 6.', 'Twain, Mark', '2004-06-26', 19, 'https://www.gutenberg.org/ebooks/5841', 'en', 1426), +(25231, 'Buddenbrooks: Verfall einer Familie', 'Mann, Thomas', '2011-01-01', 507, 'https://www.gutenberg.org/ebooks/34811', 'de', 378), +(25232, 'Verses 1889-1896', 'Kipling, Rudyard', '2008-06-29', 112, 'https://www.gutenberg.org/ebooks/323', 'en', 8), +(25233, 'Henry VIII', 'Shakespeare, William', '2000-07-01', 56, 'https://www.gutenberg.org/ebooks/2258', 'en', 10550), +(25234, 'Harper\'s Young People, August 2, 1881\nAn Illustrated Weekly', 'Various', '2015-03-28', 5, 'https://www.gutenberg.org/ebooks/48597', 'en', 479), +(25235, 'Mechanics: The Science of Machinery', 'Bond, A. Russell (Alexander Russell)', '2015-07-15', 39, 'https://www.gutenberg.org/ebooks/49445', 'en', 10551), +(25236, 'The City Bride (1696)\r\nOr, The Merry Cuckold', 'Harris, Joseph', '2007-10-12', 16, 'https://www.gutenberg.org/ebooks/22974', 'en', 1088), +(25237, 'The Outlaw of Torn', 'Burroughs, Edgar Rice', '2005-08-01', 9, 'https://www.gutenberg.org/ebooks/8762', 'en', 10552), +(25238, 'Oscar the Detective; Or, Dudie Dunne, The Exquisite Detective', 'Old Sleuth', '2006-09-19', 21, 'https://www.gutenberg.org/ebooks/19335', 'en', 128), +(25239, 'The Art of the Bone-Setter: A Testimony and a Vindication', 'Bennett, George Matthews', '2015-11-28', 18, 'https://www.gutenberg.org/ebooks/50568', 'en', 10553), +(25240, 'Patrician and Plebeian\nOr The Origin and Development of the Social Classes of the Old Dominion', 'Wertenbaker, Thomas Jefferson', '2009-04-02', 19, 'https://www.gutenberg.org/ebooks/28472', 'en', 7365), +(25241, 'A Comprehensive Guide-Book to Natural, Hygienic and Humane Diet', 'Beard, Sidney Hartnoll', '2013-10-13', 55, 'https://www.gutenberg.org/ebooks/43943', 'en', 3463), +(25242, 'The Expositor\'s Bible: The First Book of Kings', 'Farrar, F. W. (Frederic William)', '2013-06-07', 24, 'https://www.gutenberg.org/ebooks/42891', 'en', 10554), +(25243, 'A Narrative of some of the Lord\'s Dealings with George Müller. Part 3', 'Müller, George', '2007-07-25', 10, 'https://www.gutenberg.org/ebooks/22148', 'en', 10555), +(25244, 'Peggy Goes Straw Hat', 'Hughes, Virginia', '2017-10-27', 5, 'https://www.gutenberg.org/ebooks/55826', 'en', 10556), +(25245, 'What Sami Sings with the Birds', 'Spyri, Johanna', '2005-12-01', 33, 'https://www.gutenberg.org/ebooks/9482', 'en', 3427), +(25246, 'Freckles', 'Stratton-Porter, Gene', '2006-03-08', 208, 'https://www.gutenberg.org/ebooks/111', 'en', 3016), +(25247, 'Bollettino del Club Alpino Italiano 1895-96\nVol. 29 Num. 62', 'Various', '2008-12-24', 11, 'https://www.gutenberg.org/ebooks/27608', 'it', 10557), +(25248, 'An Arkansas Planter', 'Read, Opie Percival', '2006-08-23', 9, 'https://www.gutenberg.org/ebooks/19107', 'en', 5049), +(25249, 'Notes on the New Testament, Explanatory and Practical: Revelation', 'Barnes, Albert', '2017-07-30', 14, 'https://www.gutenberg.org/ebooks/55228', 'en', 10558), +(25250, 'A Lincoln Conscript', 'Greene, Homer', '2015-08-11', 12, 'https://www.gutenberg.org/ebooks/49677', 'en', 10559), +(25251, 'Studies in Song', 'Swinburne, Algernon Charles', '2005-10-31', 18, 'https://www.gutenberg.org/ebooks/16973', 'en', 8), +(25252, 'T. Haviland Hicks, Senior', 'Elderdice, James Raymond', '2005-07-01', 15, 'https://www.gutenberg.org/ebooks/8550', 'en', 4642), +(25253, 'Moon of Israel: A Tale of the Exodus', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 119, 'https://www.gutenberg.org/ebooks/2856', 'en', 6691), +(25254, 'O amor offendido, e vingado', 'Unknown', '2009-04-29', 10, 'https://www.gutenberg.org/ebooks/28640', 'pt', 179), +(25255, 'More Jataka Tales', 'Babbitt, Ellen C.', '2005-02-01', 52, 'https://www.gutenberg.org/ebooks/7518', 'en', 9859), +(25256, 'Buffalo Bill\'s Spy Trailer; Or, The Stranger in Camp', 'Ingraham, Prentiss', '2009-08-24', 11, 'https://www.gutenberg.org/ebooks/29792', 'en', 10560), +(25257, 'The Air of Castor Oil', 'Harmon, Jim', '2016-04-07', 36, 'https://www.gutenberg.org/ebooks/51688', 'en', 179), +(25258, 'Gerfaut — Volume 4', 'Bernard, Charles de', '2003-04-01', 16, 'https://www.gutenberg.org/ebooks/3984', 'en', 58), +(25259, 'A Plain Introduction to the Criticism of the New Testament, Vol. I.', 'Scrivener, Frederick Henry Ambrose', '2011-06-28', 10, 'https://www.gutenberg.org/ebooks/36548', 'en', 10561), +(25260, 'World\'s War Events, Vol. II', NULL, '2008-07-04', 25, 'https://www.gutenberg.org/ebooks/25963', 'en', 335), +(25261, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 11 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-11-12', 12, 'https://www.gutenberg.org/ebooks/44168', 'it', 6107), +(25262, 'The Fall of Jerusalem: A Poem', 'Church, John, Jr.', '2018-12-26', 5, 'https://www.gutenberg.org/ebooks/58537', 'en', 10562), +(25263, 'Robert Browning', 'Herford, C. H. (Charles Harold)', '2005-01-06', 8, 'https://www.gutenberg.org/ebooks/14618', 'en', 7835), +(25264, 'The Camp Fire Girls Across the Seas', 'Vandercook, Margaret', '2010-09-23', 16, 'https://www.gutenberg.org/ebooks/33806', 'en', 622), +(25265, 'Beauties and Antiquities of Ireland\r\nBeing a Tourist\'s Guide to Its Most Beautiful Scenery & an Archæologist\'s Manual for Its Most Interesting Ruins', 'Russell, Thomas O’Neill', '2012-04-21', 22, 'https://www.gutenberg.org/ebooks/39500', 'en', 10563), +(25266, 'La Comédie humaine - Volume 07. Scènes de la vie de Province - Tome 03', 'Balzac, Honoré de', '2016-08-18', 54, 'https://www.gutenberg.org/ebooks/52831', 'fr', 642), +(25267, 'Poésies Complètes - Tome 2', 'Gautier, Théophile', '2014-06-05', 17, 'https://www.gutenberg.org/ebooks/45886', 'fr', 701), +(25268, 'Bessie in the City', 'Mathews, Joanna H. (Joanna Hooe)', '2014-02-18', 12, 'https://www.gutenberg.org/ebooks/44954', 'en', 1625), +(25269, 'The Native Born; or, the Rajah\'s People', 'Wylie, I. A. R. (Ida Alexa Ross)', '2005-04-01', 7, 'https://www.gutenberg.org/ebooks/7940', 'en', 1228), +(25270, 'Eline Vere: Een Haagsche roman', 'Couperus, Louis', '2006-10-17', 40, 'https://www.gutenberg.org/ebooks/19563', 'nl', 10564), +(25271, 'Harper\'s Young People, September 20, 1881\nAn Illustrated Weekly', 'Various', '2015-06-14', 5, 'https://www.gutenberg.org/ebooks/49213', 'en', 479), +(25272, 'Der Trotzkopf: Eine Pensionsgeschichte für erwachsene Mädchen', 'Rhoden, Emmy von', '2010-02-17', 43, 'https://www.gutenberg.org/ebooks/31309', 'de', 62), +(25273, 'Together', 'Herrick, Robert', '2005-05-01', 13, 'https://www.gutenberg.org/ebooks/8134', 'en', 675), +(25274, 'The Lost Pibroch, and other Sheiling Stories', 'Munro, Neil', '2013-09-15', 24, 'https://www.gutenberg.org/ebooks/43729', 'en', 179), +(25275, 'Mitteilungen aus den Memoiren des Satan', 'Hauff, Wilhelm', '2004-11-01', 24, 'https://www.gutenberg.org/ebooks/6892', 'de', 10565), +(25276, 'Le Cap au Diable, Légende Canadienne', 'DeGuise, Charles', '2004-07-30', 15, 'https://www.gutenberg.org/ebooks/13059', 'fr', 61), +(25277, 'The Essays or Counsels, Civil and Moral', 'Bacon, Francis', '1996-06-01', 295, 'https://www.gutenberg.org/ebooks/575', 'en', 10566), +(25278, 'The Ignatian Epistles Entirely Spurious: A Reply to the Right Rev. Dr. Lightfoot', 'Killen, W. D. (William Dool)', '2005-09-01', 20, 'https://www.gutenberg.org/ebooks/8908', 'en', 10567), +(25279, 'Achter den Sluier in Perzië en Turksch Arabië\nDe Aarde en haar Volken, 1917', 'Hume-Griffith, M. E.', '2009-03-01', 15, 'https://www.gutenberg.org/ebooks/28224', 'nl', 10568), +(25280, 'Chambers\'s Edinburgh Journal, No. 418\r\nVolume 17, New Series, January 3, 1852', 'Various', '2004-10-25', 11, 'https://www.gutenberg.org/ebooks/13865', 'en', 18), +(25281, 'Blackwood\'s Edinburgh Magazine, Volume 71, No. 437, March 1852', 'Various', '2014-11-18', 11, 'https://www.gutenberg.org/ebooks/47389', 'en', 711), +(25282, 'The Boy and His Gang', 'Puffer, Joseph Adams', '2018-09-18', 8, 'https://www.gutenberg.org/ebooks/57927', 'en', 3300), +(25283, 'Great Big Treasury of Beatrix Potter', 'Potter, Beatrix', '2006-12-08', 15, 'https://www.gutenberg.org/ebooks/20049', 'en', 4589), +(25284, 'Punch, or the London Charivari, Vol. 108, June 8, 1895', 'Various', '2012-10-09', 1, 'https://www.gutenberg.org/ebooks/40990', 'en', 134), +(25285, 'The Cambrian Directory [1800]; Or, Cursory Sketches of the Welsh Territories.\r\nWith a Chart, Comprehending at One View, the Advisable Route, Best Inns, Distances, and Objects Most Worthy of Attention.', 'Anonymous', '2018-10-23', 9, 'https://www.gutenberg.org/ebooks/58153', 'en', 7461), +(25286, 'La Anexión de Puerto-Rico a los Estados Unidos de America', 'Nieves, Juan B.', '2016-07-01', 17, 'https://www.gutenberg.org/ebooks/52469', 'es', 10569), +(25287, 'Life History and Ecology of the Five-Lined Skink, Eumeces fasciatus', 'Fitch, Henry S. (Henry Sheldon)', '2012-06-10', 14, 'https://www.gutenberg.org/ebooks/39958', 'en', 10570), +(25288, 'Geschichte der Belagerung, Eroberung und Zerstörung Magdeburg\'s', 'Guericke, Otto von', '2019-03-17', 19, 'https://www.gutenberg.org/ebooks/59081', 'de', 10571), +(25289, 'El aceite de olivas\r\nSu extracción, clarificación, depuración, conservación y envases para su exportación, decoloración y medios propuestos para quitarle la rancidez', 'Bizzarri, Alejandro', '2013-01-13', 20, 'https://www.gutenberg.org/ebooks/41842', 'es', 10572), +(25290, 'Een goudzoeker op Madagascar\r\nDe Aarde en haar Volken, 1908', 'Lagrange, S.', '2007-03-22', 2, 'https://www.gutenberg.org/ebooks/20875', 'nl', 10573), +(25291, 'The Pocket Gophers (Genus Thomomys) of Utah\r\nUniversity of Kansas Publications, Museum of Natural History, Vol. 1 No. 1', 'Durrant, Stephen David', '2012-03-17', 11, 'https://www.gutenberg.org/ebooks/39164', 'en', 10574), +(25292, 'Mémoires du général baron de Marbot (2/3)', 'Marbot, Jean-Baptiste-Antoine-Marcelin, baron de', '2011-07-31', 18, 'https://www.gutenberg.org/ebooks/36910', 'fr', 7120), +(25293, 'Pikku lordi', 'Burnett, Frances Hodgson', '2016-12-22', 20, 'https://www.gutenberg.org/ebooks/53789', 'fi', 4901); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(25294, 'Armenia: A year at Erzeroom, and on the frontiers of Russia, Turkey, and Persia', 'Curzon, Robert', '2018-11-26', 10, 'https://www.gutenberg.org/ebooks/58361', 'en', 10575), +(25295, 'Bunyan Characters (1st Series)', 'Whyte, Alexander', '1999-09-01', 30, 'https://www.gutenberg.org/ebooks/1885', 'en', 5288), +(25296, 'The Satires, Epistles, and Art of Poetry of Horace', 'Horace', '2004-04-01', 69, 'https://www.gutenberg.org/ebooks/5419', 'en', 2673), +(25297, 'The Heart of Denise, and Other Tales', 'Levett Yeats, S. (Sidney)', '2011-12-12', 8, 'https://www.gutenberg.org/ebooks/38284', 'en', 61), +(25298, 'The Tale of Squirrel Nutkin', 'Potter, Beatrix', '2005-02-02', 165, 'https://www.gutenberg.org/ebooks/14872', 'en', 3264), +(25299, 'Knuckles and Gloves', 'Lynch, Bohun', '2018-06-14', 16, 'https://www.gutenberg.org/ebooks/57329', 'en', 10576), +(25300, 'A Practical View of the Prevailing Religious System of Professed Christians, in the Middle and Higher Classes in this Country, Contrasted with Real Christianity.', 'Wilberforce, William', '2008-06-06', 91, 'https://www.gutenberg.org/ebooks/25709', 'en', 10577), +(25301, 'The Political Doctrines of Sun Yat-sen: An Exposition of the San Min Chu I', 'Linebarger, Paul Myron Anthony', '2012-04-02', 18, 'https://www.gutenberg.org/ebooks/39356', 'en', 10578), +(25302, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 06, May 29, 1858', NULL, '2015-05-22', 9, 'https://www.gutenberg.org/ebooks/49021', 'en', 1741), +(25303, 'The Bible, Douay-Rheims, Book 06: Josue\r\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8306', 'en', 4190), +(25304, 'Under the Flag of France: A Tale of Bertrand du Guesclin', 'Ker, David', '2014-09-14', 24, 'https://www.gutenberg.org/ebooks/46855', 'en', 10579), +(25305, 'The Mayor of Troy', 'Quiller-Couch, Arthur', '2006-11-10', 21, 'https://www.gutenberg.org/ebooks/19751', 'en', 10580), +(25306, 'Ralph Granger\'s Fortunes', 'Brown, William Perry', '2006-06-26', 10, 'https://www.gutenberg.org/ebooks/18683', 'en', 3242), +(25307, 'Anomalies and Curiosities of Medicine', 'Pyle, Walter L. (Walter Lytle)', '1996-12-01', 254, 'https://www.gutenberg.org/ebooks/747', 'en', 741), +(25308, 'Les Idoles d\'argile.', 'Reybaud, Louis', '2015-01-16', 6, 'https://www.gutenberg.org/ebooks/47987', 'fr', 298), +(25309, 'Armand de Pontmartin, sa vie et ses oeuvres, 1811-1890', 'Biré, Edmond', '2016-01-15', 10, 'https://www.gutenberg.org/ebooks/50930', 'fr', 10581), +(25310, 'The Husbands of Edith', 'McCutcheon, George Barr', '2005-09-18', 30, 'https://www.gutenberg.org/ebooks/16719', 'en', 61), +(25311, 'Ancient Pottery of the Mississippi Valley\r\nFourth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1882-83, Government Printing Office, Washington, 1886, pages 361-436', 'Holmes, William Henry', '2010-04-07', 27, 'https://www.gutenberg.org/ebooks/31907', 'en', 10582), +(25312, 'Vanished Halls and Cathedrals of France', 'Edwards, George Wharton', '2014-06-22', 16, 'https://www.gutenberg.org/ebooks/46069', 'en', 1117), +(25313, 'A New Extinct Emydid Turtle from the Lower Pliocene of Oklahoma', 'Galbreath, Edwin C. (Edwin Carter)', '2010-11-26', 15, 'https://www.gutenberg.org/ebooks/34449', 'en', 10583), +(25314, 'The Cauliflower', 'Crozier, A. A. (Arthur Alger)', '2009-01-21', 14, 'https://www.gutenberg.org/ebooks/27862', 'en', 10584), +(25315, 'In the Tail of the Peacock', 'Savory, Isabel', '2009-02-07', 14, 'https://www.gutenberg.org/ebooks/28016', 'en', 6762), +(25316, 'Chronicles of England, Scotland and Ireland (3 of 6): England (6 of 9)\r\nRichard the Third, Third Sonne to Richard Duke of Yorke, and Uncle to Edward the Fift', 'Holinshed, Raphael', '2014-05-08', 34, 'https://www.gutenberg.org/ebooks/45611', 'en', 10585), +(25317, 'Sylvia\'s Lovers — Volume 3', 'Gaskell, Elizabeth Cleghorn', '2003-10-01', 18, 'https://www.gutenberg.org/ebooks/4536', 'en', 2019), +(25318, 'Menhardoc', 'Fenn, George Manville', '2007-05-08', 23, 'https://www.gutenberg.org/ebooks/21354', 'en', 10586), +(25319, 'Great Fortunes, and How They Were Made', 'McCabe, James Dabney', '2005-02-24', 16, 'https://www.gutenberg.org/ebooks/15161', 'en', 414), +(25320, 'A Millionaire of Yesterday', 'Oppenheim, E. Phillips (Edward Phillips)', '1999-09-01', 27, 'https://www.gutenberg.org/ebooks/1878', 'en', 61), +(25321, 'The Mercer Boys in the Ghost Patrol', 'Wyckoff, Capwell', '2016-12-20', 8, 'https://www.gutenberg.org/ebooks/53774', 'en', 3), +(25322, 'Funny Alphabet\nUncle Franks\' Series', 'Cogger, Edward P.', '2007-01-04', 45, 'https://www.gutenberg.org/ebooks/20286', 'en', 10587), +(25323, 'Supernatural Religion, Vol. 1 (of 3)\r\nAn Inquiry into the Reality of Divine Revelation', 'Cassels, Walter Richard', '2011-08-28', 35, 'https://www.gutenberg.org/ebooks/37231', 'en', 10588), +(25324, 'My Book of Ten Fishes', 'Mendel, Rosalie G.', '2017-12-19', 15, 'https://www.gutenberg.org/ebooks/56206', 'en', 10589), +(25325, 'The Silver Cross; Or, The Carpenter of Nazareth', 'Sue, Eugène', '2010-06-08', 10, 'https://www.gutenberg.org/ebooks/32743', 'en', 942), +(25326, 'Extract from Captain Stormfield\'s Visit to Heaven', 'Twain, Mark', '1997-09-01', 134, 'https://www.gutenberg.org/ebooks/1044', 'en', 781), +(25327, 'How John Norton the Trapper Kept His Christmas', 'Murray, W. H. H. (William Henry Harrison)', '2011-12-11', 9, 'https://www.gutenberg.org/ebooks/38279', 'en', 7941), +(25328, 'Sandman Time', 'Gaylord, Ilsien Nathalie', '2010-09-10', 10, 'https://www.gutenberg.org/ebooks/33691', 'en', 1209), +(25329, 'An Alphabet of Quadrupeds\nComprising descriptions of their appearance and habits', 'Anonymous', '2012-07-29', 4, 'https://www.gutenberg.org/ebooks/40363', 'en', 10590), +(25330, 'Fancy Little Nancy', NULL, '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/10413', 'en', 3011), +(25331, 'A Journey to America in 1834', 'Heywood, Robert', '2008-02-15', 21, 'https://www.gutenberg.org/ebooks/24626', 'en', 1110), +(25332, 'Promenades of an Impressionist', 'Huneker, James', '2004-08-26', 32, 'https://www.gutenberg.org/ebooks/13296', 'en', 1990), +(25333, 'Chronique du crime et de l\'innocence, tome 5/8\r\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2017-04-14', 19, 'https://www.gutenberg.org/ebooks/54551', 'fr', 824), +(25334, 'The Intelligence Office (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 24, 'https://www.gutenberg.org/ebooks/9229', 'en', 179), +(25335, 'Native Son', 'Hamm, T. D.', '2009-09-17', 77, 'https://www.gutenberg.org/ebooks/30014', 'en', 179), +(25336, 'Aaron Trow', 'Trollope, Anthony', '2003-02-01', 36, 'https://www.gutenberg.org/ebooks/3713', 'en', 10591), +(25337, 'Viribus unitis: Wie könnte die europäische Cultur nach Bosnien verpflanzt werden?', 'Neupauer, Josef von', '2009-09-04', 11, 'https://www.gutenberg.org/ebooks/29905', 'de', 10592), +(25338, 'The Religious Persecution in France 1900-1906', 'Brodhead, J. Napier (Jane Napier)', '2013-03-29', 11, 'https://www.gutenberg.org/ebooks/42434', 'en', 2780), +(25339, 'Condillac: sa vie, sa philosophie, son influence', 'Baguenault de Puchesse, Gustave, comte', '2017-09-04', 24, 'https://www.gutenberg.org/ebooks/55483', 'fr', 10593), +(25340, 'Sir Robert Hart\nThe Romance of a Great Career, 2nd Edition', 'Bredon, Juliet', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12344', 'en', 10594), +(25341, 'La volpe di Sparta', 'Zùccoli, Luciano', '2008-08-02', 19, 'https://www.gutenberg.org/ebooks/26171', 'it', 892), +(25342, 'Myths and Legends of Alaska', NULL, '2014-10-18', 33, 'https://www.gutenberg.org/ebooks/47146', 'en', 10595), +(25343, 'The Weavers: a tale of England and Egypt of fifty years ago - Volume 1', 'Parker, Gilbert', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6261', 'en', 9577), +(25344, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 04, May 15, 1858', NULL, '2015-05-11', 7, 'https://www.gutenberg.org/ebooks/48932', 'en', 1741), +(25345, 'Special Report on Diseases of the Horse', 'Pearson, Leonard', '2007-11-07', 36, 'https://www.gutenberg.org/ebooks/23403', 'en', 6845), +(25346, 'The Mystery at Putnam Hall: The School Chums\' Strange Discovery', 'Stratemeyer, Edward', '2006-01-29', 41, 'https://www.gutenberg.org/ebooks/17636', 'en', 2154), +(25347, 'The Barbarians', 'Budrys, Algis', '2010-01-02', 97, 'https://www.gutenberg.org/ebooks/30828', 'en', 26), +(25348, 'Le musée du Louvre, tome 1 (of 2)', 'Dayot, Armand', '2016-01-24', 26, 'https://www.gutenberg.org/ebooks/51023', 'fr', 4154), +(25349, 'No Pets Allowed', 'Cummings, M. A. (Monette A.)', '2009-06-17', 35, 'https://www.gutenberg.org/ebooks/29139', 'en', 179), +(25350, 'History of the Postage Stamps of the United States of America', 'Tiffany, John K. (John Kerr)', '2011-03-13', 22, 'https://www.gutenberg.org/ebooks/35566', 'en', 10596), +(25351, 'The Romance of Modern Mechanism\r\nWith Interesting Descriptions in Non-technical Language of Wonderful Machinery and Mechanical Devices and Marvellously Delicate Scientific Instruments', 'Williams, Archibald', '2014-06-25', 130, 'https://www.gutenberg.org/ebooks/46094', 'en', 6285), +(25352, 'Coquecigrues', 'Renard, Jules', '2009-10-10', 23, 'https://www.gutenberg.org/ebooks/30226', 'fr', 100), +(25353, '文中子中說', 'Wang, Tong', '2008-11-18', 13, 'https://www.gutenberg.org/ebooks/27291', 'zh', 1493), +(25354, 'Master Humphrey\'s Clock', 'Dickens, Charles', '1996-07-01', 105, 'https://www.gutenberg.org/ebooks/588', 'en', 10597), +(25355, 'Little Homespun', 'Ogden, Ruth', '2017-05-23', 10, 'https://www.gutenberg.org/ebooks/54763', 'en', 1817), +(25356, 'The Red Badge of Courage: An Episode of the American Civil War', 'Crane, Stephen', '1993-07-01', 734, 'https://www.gutenberg.org/ebooks/73', 'en', 403), +(25357, 'The Gate of the Giant Scissors', 'Johnston, Annie F. (Annie Fellows)', '2004-04-01', 34, 'https://www.gutenberg.org/ebooks/12176', 'en', 195), +(25358, 'Taistelu Roomasta II\nHistoriallinen romaani', 'Dahn, Felix', '2008-08-18', 23, 'https://www.gutenberg.org/ebooks/26343', 'fi', 6461), +(25359, 'Human Genome Project, Chromosome Number 21', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3521', 'en', 1841), +(25360, 'Mimicry in Butterflies', 'Punnett, Reginald Crundall', '2013-04-27', 7, 'https://www.gutenberg.org/ebooks/42606', 'en', 10598), +(25361, 'The Moonshiners At Hoho-Hebee Falls\n1895', 'Murfree, Mary Noailles', '2007-11-26', 36, 'https://www.gutenberg.org/ebooks/23631', 'en', 61), +(25362, 'De vandrande djäknarne', 'Rydberg, Viktor', '2006-02-01', 16, 'https://www.gutenberg.org/ebooks/9827', 'sv', 420), +(25363, 'Kinship Organisations and Group Marriage in Australia', 'Thomas, Northcote Whitridge', '2005-12-28', 32, 'https://www.gutenberg.org/ebooks/17404', 'en', 10599), +(25364, 'The Strand Magazine, Vol. 07, Issue 39, March 1894\r\nAn Illustrated Monthly', 'Various', '2014-11-17', 13, 'https://www.gutenberg.org/ebooks/47374', 'en', 4041), +(25365, 'Don Strong, Patrol Leader', 'Heyliger, William', '2004-10-31', 3, 'https://www.gutenberg.org/ebooks/13898', 'en', 2994), +(25366, 'Vestigia. Vol. II.', 'Fleming, George', '2011-02-03', 65, 'https://www.gutenberg.org/ebooks/34686', 'en', 1028), +(25367, 'Evelina, Or, the History of a Young Lady\'s Entrance into the World', 'Burney, Fanny', '2004-07-01', 254, 'https://www.gutenberg.org/ebooks/6053', 'en', 348), +(25368, 'Mémoire sur l\'origine Japonaise, Arabe et Basque de la civilisation des peuples du plateau de Bogota', 'Paravey, Charles Hippolyte, chevalier de', '2011-04-02', 8, 'https://www.gutenberg.org/ebooks/35754', 'fr', 2027), +(25369, 'The Bushman — Life in a New Country', 'Landor, Edward Wilson', '2004-12-01', 28, 'https://www.gutenberg.org/ebooks/7181', 'en', 10600), +(25370, 'A Rebel\'s Recollections', 'Eggleston, George Cary', '2016-02-14', 18, 'https://www.gutenberg.org/ebooks/51211', 'en', 9769), +(25371, 'The Flag Goes By', 'Bennett, Henry Holcomb', '2007-04-04', 3, 'https://www.gutenberg.org/ebooks/21166', 'en', 7456), +(25372, 'A First Spanish Reader', 'Remy, Alfred', '2005-03-13', 440, 'https://www.gutenberg.org/ebooks/15353', 'es', 188), +(25373, 'The English Rogue: Continued in the Life of Meriton Latroon, and Other Extravagants, Comprehending the most Eminent Cheats of Both Sexes: The Third Part', 'Kirkman, Francis', '2016-07-04', 20, 'https://www.gutenberg.org/ebooks/52494', 'en', 1490), +(25374, 'Letters of John Calvin, Volume I\r\nCompiled from the Original Manuscripts and Edited with Historical Notes', 'Calvin, Jean', '2014-04-17', 50, 'https://www.gutenberg.org/ebooks/45423', 'en', 10601), +(25375, 'La vérité en marche: L\'affaire Dreyfus', 'Zola, Émile', '2018-03-21', 18, 'https://www.gutenberg.org/ebooks/56808', 'fr', 10602), +(25376, 'Nomads of the North: A Story of Romance and Adventure under the Open Stars', 'Curwood, James Oliver', '2003-12-01', 41, 'https://www.gutenberg.org/ebooks/4704', 'en', 323), +(25377, 'Tessa Wadsworth\'s Discipline: A Story of the Development of a Young Girl\'s Life', 'Conklin, Nathaniel, Mrs.', '2011-08-07', 13, 'https://www.gutenberg.org/ebooks/37003', 'en', 757), +(25378, 'Poems', 'Yeats, W. B. (William Butler)', '2012-02-14', 284, 'https://www.gutenberg.org/ebooks/38877', 'en', 10603), +(25379, 'Tulella ja miekalla: Kuvaus menneiltä ajoilta. 2', 'Sienkiewicz, Henryk', '2016-11-17', 4, 'https://www.gutenberg.org/ebooks/53546', 'fi', 1202), +(25380, 'Grashalmen', 'Whitman, Walt', '2004-12-06', 20, 'https://www.gutenberg.org/ebooks/14281', 'nl', 8), +(25381, 'My Neighbor Raymond (Novels of Paul de Kock Volume XI)', 'Kock, Paul de', '2012-10-17', 22, 'https://www.gutenberg.org/ebooks/41083', 'en', 58), +(25382, 'The Fortunate Isles: Life and Travel in Majorca, Minorca and Iviza', 'Boyd, Mary Stuart', '2012-03-19', 74, 'https://www.gutenberg.org/ebooks/39199', 'en', 5578), +(25383, 'Island Trail at Walnut Canyon\nWalnut Canyon National Monument', 'Southwestern Monuments Association', '2019-06-30', 27, 'https://www.gutenberg.org/ebooks/59840', 'en', 10604), +(25384, 'Hans Andersen\'s Fairy Tales. First Series', 'Andersen, H. C. (Hans Christian)', '2010-05-28', 302, 'https://www.gutenberg.org/ebooks/32571', 'en', 1007), +(25385, 'Folklore of Scottish Lochs and Springs', 'Mackinlay, James M. (James Murray)', '2017-11-22', 25, 'https://www.gutenberg.org/ebooks/56034', 'en', 10605), +(25386, 'Birthright: A Novel', 'Stribling, T. S. (Thomas Sigismund)', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10621', 'en', 1958), +(25387, 'Punch, or the London Charivari, June 10, 1914', 'Various', '2008-01-24', 15, 'https://www.gutenberg.org/ebooks/24414', 'en', 134), +(25388, 'The Rhythm of Life, and Other Essays', 'Meynell, Alice', '1998-04-01', 31, 'https://www.gutenberg.org/ebooks/1276', 'en', 472), +(25389, 'Modern American Poetry', NULL, '2019-03-01', 15, 'https://www.gutenberg.org/ebooks/58992', 'en', 994), +(25390, 'The Blood of the Conquerors', 'Fergusson, Harvey', '2007-03-23', 17, 'https://www.gutenberg.org/ebooks/20888', 'en', 10606), +(25391, 'Constance Sherwood: An Autobiography of the Sixteenth Century', 'Fullerton, Georgiana', '2012-07-07', 20, 'https://www.gutenberg.org/ebooks/40151', 'en', 4434), +(25392, 'The Deacon of Dobbinsville\nA Story Based on Actual Happenings', 'Morrison, John Arch', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/12512', 'en', 4927), +(25393, 'The Political History of England - Vol XI\r\nFrom Addington\'s Administration to the close of William IV.\'s Reign (1801-1837)', 'Fotheringham, John Knight', '2008-09-30', 13, 'https://www.gutenberg.org/ebooks/26727', 'en', 10607), +(25394, 'The Author of Beltraffio', 'James, Henry', '2002-03-01', 36, 'https://www.gutenberg.org/ebooks/3145', 'en', 1155), +(25395, 'Family Limitation', 'Sanger, Margaret', '2010-03-26', 30, 'https://www.gutenberg.org/ebooks/31790', 'en', 5722), +(25396, 'Piepkuikentje', 'Hubert van Beusekom, Anna Christina Helena', '2013-03-04', 6, 'https://www.gutenberg.org/ebooks/42262', 'nl', 61), +(25397, 'France and England in North America, Part VII, Vol 2: A Half-Century of Conflict', 'Parkman, Francis', '2015-04-20', 23, 'https://www.gutenberg.org/ebooks/48758', 'en', 2163), +(25398, 'The Sign of the Four', 'Doyle, Arthur Conan', '2000-03-01', 1334, 'https://www.gutenberg.org/ebooks/2097', 'en', 430), +(25399, 'Aurora the Magnificent', 'Brownell, Gertrude Hall', '2009-12-10', 11, 'https://www.gutenberg.org/ebooks/30642', 'en', 61), +(25400, 'Wild Animals of Yellowstone National Park', 'Brodrick, Harold J.', '2019-08-18', 230, 'https://www.gutenberg.org/ebooks/60132', 'en', 10608), +(25401, 'Tarzanin paluu: Seikkailukirja Afrikan aarniometsistä', 'Burroughs, Edgar Rice', '2017-03-08', 11, 'https://www.gutenberg.org/ebooks/54307', 'fi', 323), +(25402, 'Le chevalier d\'Harmental', 'Dumas, Alexandre', '2006-03-20', 26, 'https://www.gutenberg.org/ebooks/18028', 'fr', 10609), +(25403, 'The Spanish Tragedy', 'Kyd, Thomas', '2011-02-19', 74, 'https://www.gutenberg.org/ebooks/35330', 'en', 1088), +(25404, 'Fromont and Risler — Volume 4', 'Daudet, Alphonse', '2003-04-01', 17, 'https://www.gutenberg.org/ebooks/3979', 'en', 58), +(25405, 'Yosemite National Park, California', 'United States. National Park Service', '2016-04-06', 17, 'https://www.gutenberg.org/ebooks/51675', 'en', 10610), +(25406, 'A Tour in Ireland. 1776-1779', 'Young, Arthur', '2007-08-25', 28, 'https://www.gutenberg.org/ebooks/22387', 'en', 117), +(25407, 'A British Islander\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 11, 'https://www.gutenberg.org/ebooks/23255', 'en', 1426), +(25408, 'Death and Burial of Poor Cock Robin', NULL, '2005-11-13', 53, 'https://www.gutenberg.org/ebooks/17060', 'en', 343), +(25409, 'Bübü vom Montparnasse\nEin Roman mit zwanzig Holzschnitten von Frans Masereel', 'Philippe, Charles-Louis', '2014-12-20', 15, 'https://www.gutenberg.org/ebooks/47710', 'de', 10611), +(25410, 'The Mercenaries', 'Piper, H. Beam', '2006-07-12', 61, 'https://www.gutenberg.org/ebooks/18814', 'en', 26), +(25411, 'The Splendid Spur\r\nBeing Memoirs of the Adventures of Mr. John Marvel, a Servant of His Late Majesty King Charles I, in the Years 1642-3', 'Quiller-Couch, Arthur', '2004-09-01', 26, 'https://www.gutenberg.org/ebooks/6437', 'en', 10612), +(25412, 'Daisy Thornton', 'Holmes, Mary Jane', '2011-09-17', 12, 'https://www.gutenberg.org/ebooks/37467', 'en', 61), +(25413, 'Flower o\' the Peach', 'Gibbon, Perceval', '2013-11-16', 10, 'https://www.gutenberg.org/ebooks/44195', 'en', 835), +(25414, 'The Story of the American Merchant Marine', 'Spears, John Randolph', '2016-09-22', 23, 'https://www.gutenberg.org/ebooks/53122', 'en', 8589), +(25415, 'Fundamentals of Prosperity: What They Are and Whence They Come', 'Babson, Roger Ward', '2007-05-16', 21, 'https://www.gutenberg.org/ebooks/21502', 'en', 4065), +(25416, 'The Torch and Other Tales', 'Phillpotts, Eden', '2005-04-30', 27, 'https://www.gutenberg.org/ebooks/15737', 'en', 4288), +(25417, 'Thereby Hangs a Tale. Volume One', 'Fenn, George Manville', '2010-06-20', 15, 'https://www.gutenberg.org/ebooks/32929', 'en', 61), +(25418, 'The Happy Clown', 'Jones, Alice Eleanor', '2019-05-03', 52, 'https://www.gutenberg.org/ebooks/59418', 'en', 10613), +(25419, 'The Red River Half-Breed: A Tale of the Wild North-West', 'Aimard, Gustave', '2014-03-01', 22, 'https://www.gutenberg.org/ebooks/45047', 'en', 61), +(25420, 'Vendetta: A Story of One Forgotten', 'Corelli, Marie', '2003-08-01', 61, 'https://www.gutenberg.org/ebooks/4360', 'en', 1909), +(25421, 'Jazz de Luxe\r\nFox Trot', NULL, '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10245', 'en', 1095), +(25422, 'My Queen: A Weekly Journal for Young Women. Issue 3, October 13, 1900\nMarion Marlowe\'s True Heart; or, How a Daughter Forgave', 'Sheldon, Lurana', '2018-07-26', 3, 'https://www.gutenberg.org/ebooks/57582', 'en', 6530), +(25423, 'The Girls at Mount Morris', 'Douglas, Amanda M.', '2007-12-29', 25, 'https://www.gutenberg.org/ebooks/24070', 'en', 3621), +(25424, 'Poems By a Little Girl', 'Conkling, Hilda', '1999-01-01', 35, 'https://www.gutenberg.org/ebooks/1612', 'en', 1209), +(25425, 'They Who Knock at Our Gates: A Complete Gospel of Immigration', 'Antin, Mary', '2012-08-19', 33, 'https://www.gutenberg.org/ebooks/40535', 'en', 10614), +(25426, 'Rose MacLeod', 'Brown, Alice', '2010-04-24', 14, 'https://www.gutenberg.org/ebooks/32115', 'en', 61), +(25427, 'Pleiades Club—Telegraphers\' Paradise on Planet Mars', 'Hayes, J. W. (Jeff W.)', '2018-01-28', 3, 'https://www.gutenberg.org/ebooks/56450', 'en', 8161), +(25428, 'The Works of Samuel Johnson, LL.D. in Nine Volumes, Volume 03\r\nThe Rambler, Volume II', 'Johnson, Samuel', '2004-03-01', 59, 'https://www.gutenberg.org/ebooks/11397', 'en', 5416), +(25429, 'La femme affranchie, vol. 2 of 2\r\nRéponse à MM. Michelet, Proudhon, E. de Girardin, A. Comte et aux autres novateurs modernes', 'Héricourt, Madame d\'', '2016-10-18', 15, 'https://www.gutenberg.org/ebooks/53310', 'fr', 10615), +(25430, 'Bye-a Baby Bunting, and Other Rhymes', 'Anonymous', '2011-10-07', 7, 'https://www.gutenberg.org/ebooks/37655', 'en', 10616), +(25431, 'Magnum Bonum; Or, Mother Carey\'s Brood', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-02-01', 33, 'https://www.gutenberg.org/ebooks/5080', 'en', 45), +(25432, 'The Cowslip; Or, More Cautionary Stories, in Verse', 'Turner, Mrs. (Elizabeth)', '2014-03-31', 5, 'https://www.gutenberg.org/ebooks/45275', 'en', 4299), +(25433, 'The Servant in the House', 'Kennedy, Charles Rann', '2004-04-01', 31, 'https://www.gutenberg.org/ebooks/11999', 'en', 427), +(25434, 'Tee työtä uskollisesti, Jumala auttaa ihmeellisesti: Kertomus nuorisolle', 'Hoffmann, Franz', '2011-07-19', 18, 'https://www.gutenberg.org/ebooks/36787', 'fi', 179), +(25435, 'Diary of Samuel Pepys — Volume 32: December 1664', 'Pepys, Samuel', '2004-11-30', 7, 'https://www.gutenberg.org/ebooks/4152', 'en', 1231), +(25436, 'Erling the Bold', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 31, 'https://www.gutenberg.org/ebooks/21730', 'en', 8630), +(25437, 'Die Tugend auf der Schaubühne\noder: Harlekins Heirath; Ein Nachspiel in einem Aufzuge', 'Möser, Justus', '2005-03-30', 38, 'https://www.gutenberg.org/ebooks/15505', 'de', 907), +(25438, 'London\'s Underworld', 'Holmes, Thomas', '1998-08-01', 28, 'https://www.gutenberg.org/ebooks/1420', 'en', 904), +(25439, 'Midi à quatorze heures\nHistoire d\'un voisin—Voyage dans Paris—Une visite à\nl\'Arsenal—Un homme et une femme', 'Karr, Alphonse', '2012-09-07', 12, 'https://www.gutenberg.org/ebooks/40707', 'fr', 2508), +(25440, 'The Atlantic Monthly, Volume 10, No. 60, October, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10077', 'en', 1227), +(25441, 'Broken Bread, from an Evangelist\'s Wallet', 'Champness, Thomas', '2008-01-11', 16, 'https://www.gutenberg.org/ebooks/24242', 'en', 10617), +(25442, 'Tabitha at Ivy Hall', 'MacArthur, Ruth Brown', '2008-05-08', 13, 'https://www.gutenberg.org/ebooks/25390', 'en', 1655), +(25443, 'Hangok a vihar után', 'Jókai, Mór', '2018-02-28', 11, 'https://www.gutenberg.org/ebooks/56662', 'hu', 234), +(25444, 'The Seventh Order', 'Sohl, Jerry', '2010-05-11', 25, 'https://www.gutenberg.org/ebooks/32327', 'en', 179), +(25445, 'Criticism and Fiction', 'Howells, William Dean', '2004-10-22', 43, 'https://www.gutenberg.org/ebooks/3377', 'en', 1047), +(25446, 'For the White Christ: A Story of the Days of Charlemagne', 'Bennet, Robert Ames', '2013-02-08', 24, 'https://www.gutenberg.org/ebooks/42050', 'en', 385), +(25447, 'Punch, or the London Charivari, Vol. 146, April 1, 1914', 'Various', '2007-10-12', 21, 'https://www.gutenberg.org/ebooks/22989', 'en', 134), +(25448, 'Sonnet #40', 'Shakespeare, William', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12720', 'en', 6689), +(25449, 'L\'isthme de Panama', 'Chevalier, Michel', '2008-09-03', 8, 'https://www.gutenberg.org/ebooks/26515', 'fr', 10618), +(25450, 'Whist; or, Bumblepuppy? Thirteen Lectures Addressed to Children', 'Hewby, John Petch', '2017-02-08', 5, 'https://www.gutenberg.org/ebooks/54135', 'en', 1420), +(25451, 'Napoleone: La vita italiana durante la Rivoluzione francese e l\'Impero', 'Barrili, Anton Giulio', '2013-07-10', 24, 'https://www.gutenberg.org/ebooks/43182', 'it', 5931), +(25452, 'The Winning of Popular Government\nA Chronicle of the Union of 1841', 'MacMechan, Archibald', '2009-11-13', 24, 'https://www.gutenberg.org/ebooks/30470', 'en', 1805), +(25453, 'The Odds\nAnd Other Stories', 'Dell, Ethel M. (Ethel May)', '2005-07-28', 22, 'https://www.gutenberg.org/ebooks/16380', 'en', 179), +(25454, 'Rautakylän vanha parooni', 'Topelius, Zacharias', '2016-03-14', 5, 'https://www.gutenberg.org/ebooks/51447', 'fi', 2168), +(25455, 'Udvalgte Digtninger', 'Heiberg, J. L. (Johan Ludvig)', '2011-01-28', 6, 'https://www.gutenberg.org/ebooks/35102', 'da', 2653), +(25456, 'Légendes démocratiques du Nord', 'Michelet, Jules', '2014-12-03', 14, 'https://www.gutenberg.org/ebooks/47522', 'fr', 10179), +(25457, 'Harry\'s Island', 'Barbour, Ralph Henry', '2017-06-15', 30, 'https://www.gutenberg.org/ebooks/54909', 'en', 2794), +(25458, 'Unconscious Memory', 'Butler, Samuel', '2004-10-01', 168, 'https://www.gutenberg.org/ebooks/6605', 'en', 10619), +(25459, 'Stories of Animal Sagacity', 'Kingston, William Henry Giles', '2007-10-17', 14, 'https://www.gutenberg.org/ebooks/23067', 'en', 1096), +(25460, 'Bohemian Grammar', 'Nigrin, Jaroslav Victor', '2015-12-02', 10, 'https://www.gutenberg.org/ebooks/50595', 'en', 10620), +(25461, 'Le sergent Renaud\r\nAventures parisiennes', 'Sales, Pierre', '2005-12-08', 16, 'https://www.gutenberg.org/ebooks/17252', 'fr', 560), +(25462, 'The Battle of the Marne', 'Perris, G. H. (George Herbert)', '2017-07-29', 18, 'https://www.gutenberg.org/ebooks/55221', 'en', 3083), +(25463, 'Days and Dreams: Poems', 'Cawein, Madison Julius', '2010-03-25', 8, 'https://www.gutenberg.org/ebooks/31764', 'en', 178), +(25464, 'Scientific American Supplement, No. 360, November 25, 1882', 'Various', '2005-07-01', 5, 'https://www.gutenberg.org/ebooks/8559', 'en', 210), +(25465, 'The Duchess of Trajetto', 'Manning, Anne', '2013-03-10', 7, 'https://www.gutenberg.org/ebooks/42296', 'en', 10621), +(25466, 'Don Hale with the Flying Squadron', 'Sheppard, W. Crispin (William Crispin)', '2013-07-28', 12, 'https://www.gutenberg.org/ebooks/43344', 'en', 146), +(25467, 'The Trail of the White Mule', 'Bower, B. M.', '2000-02-01', 40, 'https://www.gutenberg.org/ebooks/2063', 'en', 315), +(25468, 'Hawtrey\'s Deputy', 'Bindloss, Harold', '2008-12-23', 16, 'https://www.gutenberg.org/ebooks/27601', 'en', 10622), +(25469, 'Big Dummy\'s Guide to the Internet', 'Electronic Frontier Foundation', '1994-03-01', 174, 'https://www.gutenberg.org/ebooks/118', 'en', 2599), +(25470, 'Regeneration\r\nBeing an Account of the Social Work of The Salvation Army in Great Britain', 'Haggard, H. Rider (Henry Rider)', '2004-09-11', 30, 'https://www.gutenberg.org/ebooks/13434', 'en', 3336), +(25471, 'Heidis Lehr- und Wanderjahre', 'Spyri, Johanna', '2005-02-01', 67, 'https://www.gutenberg.org/ebooks/7511', 'de', 10623), +(25472, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nTennessee Narratives', 'United States. Work Projects Administration', '2006-11-27', 42, 'https://www.gutenberg.org/ebooks/19932', 'en', 10624), +(25473, 'The Three Days\' Tournament: A Study in Romance and Folk-Lore\r\nBeing an Appendix to the Author\'s \'Legend of Sir Lancelot\'', 'Weston, Jessie L. (Jessie Laidlay)', '2014-08-20', 15, 'https://www.gutenberg.org/ebooks/46636', 'en', 10625), +(25474, 'Amateur in Chancery', 'Smith, George O. (George Oliver)', '2016-04-07', 28, 'https://www.gutenberg.org/ebooks/51681', 'en', 67), +(25475, 'Petty Troubles of Married Life, Complete', 'Balzac, Honoré de', '2005-06-29', 15, 'https://www.gutenberg.org/ebooks/16146', 'en', 1451), +(25476, 'Russian Fairy Tales: A Choice Collection of Muscovite Folk-lore', NULL, '2007-08-22', 294, 'https://www.gutenberg.org/ebooks/22373', 'en', 10103), +(25477, 'The Letters of Queen Victoria : A Selection from Her Majesty\'s Correspondence between the Years 1837 and 1861. Volume 3, 1854-1861', 'Victoria, Queen of Great Britain', '2009-05-03', 28, 'https://www.gutenberg.org/ebooks/28649', 'en', 10626), +(25478, 'The Story of the Red Cross as told to The Little Colonel', 'Johnston, Annie F. (Annie Fellows)', '2005-11-18', 10, 'https://www.gutenberg.org/ebooks/17094', 'en', 10627), +(25479, 'Later Than You Think', 'Leiber, Fritz', '2015-12-23', 54, 'https://www.gutenberg.org/ebooks/50753', 'en', 179), +(25480, 'To Be Read at Dusk', 'Dickens, Charles', '1997-05-01', 148, 'https://www.gutenberg.org/ebooks/924', 'en', 531), +(25481, 'Notes of a staff officer of our First New Jersey Brigade on the Seven Day\'s Battle on the peninsula in 1862', 'Grubb, E. Burd (Edward Burd)', '2010-11-05', 13, 'https://www.gutenberg.org/ebooks/34216', 'en', 10628), +(25482, 'Modern French Philosophy: a Study of the Development Since Comte', 'Gunn, John Alexander', '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/5246', 'en', 2694), +(25483, 'Fast Nine; or, A Challenge from Fairfield', 'Douglas, Alan, Captain', '2011-09-21', 9, 'https://www.gutenberg.org/ebooks/37493', 'en', 6620), +(25484, 'Un Coeur de femme', 'Bourget, Paul', '2013-11-11', 17, 'https://www.gutenberg.org/ebooks/44161', 'fr', 1165), +(25485, 'A General History and Collection of Voyages and Travels — Volume 15\r\nForming A Complete History Of The Origin And Progress Of Navigation, Discovery, And Commerce, By Sea And Land, From The Earliest Ages To The Present Time', 'Kerr, Robert', '2005-01-06', 21, 'https://www.gutenberg.org/ebooks/14611', 'en', 885), +(25486, 'A Son of the Hills', 'Comstock, Harriet T. (Harriet Theresa)', '2007-01-22', 8, 'https://www.gutenberg.org/ebooks/20424', 'en', 61), +(25487, 'Saaren orvon seikkailut', 'Marryat, Frederick', '2016-05-05', 14, 'https://www.gutenberg.org/ebooks/52004', 'fi', 10629), +(25488, 'A Romance of Two Worlds: A Novel', 'Corelli, Marie', '2003-08-01', 56, 'https://www.gutenberg.org/ebooks/4394', 'en', 1397), +(25489, 'Unto This Last, and Other Essays on Political Economy', 'Ruskin, John', '2011-06-27', 131, 'https://www.gutenberg.org/ebooks/36541', 'en', 1745), +(25490, 'A Method of Tanning without Bark', 'Maple, William', '2018-07-24', 16, 'https://www.gutenberg.org/ebooks/57576', 'en', 10630), +(25491, 'Chambers\'s Edinburgh Journal, No. 458\nVolume 18, New Series, October 9, 1852', 'Various', '2007-12-31', 15, 'https://www.gutenberg.org/ebooks/24084', 'en', 18), +(25492, 'Les historiettes de Tallemant des Réaux, tome premier\r\nMémoires pour servir à l\'histoire du XVIIe siècle', 'Tallemant des Réaux', '2010-07-01', 28, 'https://www.gutenberg.org/ebooks/33033', 'fr', 3746), +(25493, 'Monsieur de Phocas, Astarté: Roman', 'Lorrain, Jean', '2012-11-20', 50, 'https://www.gutenberg.org/ebooks/41413', 'fr', 687), +(25494, 'Creation of the Teton Landscape: The Geologic Story of Grand Teton National Park', 'Reed, John C. (John Calvin)', '2016-08-18', 15, 'https://www.gutenberg.org/ebooks/52838', 'en', 10631), +(25495, 'The Black Man, the Father of Civilization, Proven by Biblical History', 'Webb, James Morris', '2012-04-22', 38, 'https://www.gutenberg.org/ebooks/39509', 'en', 7793), +(25496, 'An Introduction to Nonassociative Algebras', 'Schafer, Richard D. (Richard Donald)', '2008-04-24', 65, 'https://www.gutenberg.org/ebooks/25156', 'en', 10632), +(25497, 'Bayard: the Good Knight Without Fear and Without Reproach', 'Hare, Christopher', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11363', 'en', 10633), +(25498, 'A General History and Collection of Voyages and Travels — Volume 12\r\nArranged in Systematic Order: Forming a Complete History of the\r\nOrigin and Progress of Navigation, Discovery, and Commerce, by Sea\r\nand Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-12-22', 20, 'https://www.gutenberg.org/ebooks/14423', 'en', 885), +(25499, 'The Old Front Line', 'Masefield, John', '2007-02-18', 24, 'https://www.gutenberg.org/ebooks/20616', 'en', 10634), +(25500, 'Aunt Judy\'s Tales', 'Gatty, Alfred, Mrs.', '2004-02-01', 71, 'https://www.gutenberg.org/ebooks/5074', 'en', 388), +(25501, 'A Ticket to Adventure\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-12-05', 18, 'https://www.gutenberg.org/ebooks/44353', 'en', 557), +(25502, 'Harum Scarum\'s Fortune', 'Stuart, Esmè', '2014-03-31', 12, 'https://www.gutenberg.org/ebooks/45281', 'en', 1902), +(25503, 'Oxford Lectures on Poetry', 'Bradley, A. C. (Andrew Cecil)', '2011-07-17', 72, 'https://www.gutenberg.org/ebooks/36773', 'en', 8), +(25504, 'Poems, 1914-1919', 'Baring, Maurice', '2016-06-04', 22, 'https://www.gutenberg.org/ebooks/52236', 'en', 2100), +(25505, 'The Complete Club Book for Women\r\nIncluding Subjects, Material and References for Study Programs; together with a Constitution and By-Laws; Rules of Order; Instructions how to make a Year Book; Suggestions for Practical Community Work; a Resume of what Some Clubs are Doing, etc., etc.', 'Benton, Caroline French', '2010-07-20', 19, 'https://www.gutenberg.org/ebooks/33201', 'en', 10635), +(25506, 'The Flyers', 'McCutcheon, George Barr', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5848', 'en', 61), +(25507, 'A Woman Rice Planter', 'Pringle, Elizabeth W. Allston (Elizabeth Waties Allston)', '2018-08-24', 9, 'https://www.gutenberg.org/ebooks/57744', 'en', 10636), +(25508, 'The House of the Whispering Pines', 'Green, Anna Katharine', '2003-11-01', 46, 'https://www.gutenberg.org/ebooks/10083', 'en', 128), +(25509, 'Le Japon en 1866', 'Montblanc, Charles, comte de', '2008-05-07', 7, 'https://www.gutenberg.org/ebooks/25364', 'fr', 4331), +(25510, 'The Lost Trail', 'Ellis, Edward Sylvester', '2004-02-01', 44, 'https://www.gutenberg.org/ebooks/11151', 'en', 336), +(25511, 'Arqtiq: A Study of the Marvels at the North Pole', 'Adolph, Anna', '2018-03-07', 17, 'https://www.gutenberg.org/ebooks/56696', 'en', 10637), +(25512, 'Watteau', 'Hind, C. Lewis (Charles Lewis)', '2012-12-14', 22, 'https://www.gutenberg.org/ebooks/41621', 'en', 10638), +(25513, 'Dick in the Desert', 'Otis, James', '2010-03-08', 15, 'https://www.gutenberg.org/ebooks/31556', 'en', 1096), +(25514, 'Spanish Prisoners of War (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 14, 'https://www.gutenberg.org/ebooks/3383', 'en', 10639), +(25515, 'Jacobine von Baiern Gräfin von Hennegau, Holland, Friesland und Zeeland\nEine vaterländische Geschichte aus dem fünfzehenden Jahrhundert', 'Heinse, Gottlob Heinrich', '2017-06-30', 15, 'https://www.gutenberg.org/ebooks/55013', 'de', 10640), +(25516, 'Il Quadriregio', 'Frezzi, Federico', '2008-12-07', 13, 'https://www.gutenberg.org/ebooks/27433', 'it', 8), +(25517, 'A General History and Collection of Voyages and Travels - Volume 18\r\nHistorical Sketch of the Progress of Discovery, Navigation, and\r\nCommerce, from the Earliest Records to the Beginning of the Nineteenth\r\nCentury, By William Stevenson', 'Stevenson, William', '2004-10-05', 33, 'https://www.gutenberg.org/ebooks/13606', 'en', 885), +(25518, 'Stained Glass Tours in England', 'Sherrill, Charles Hitchcock', '2011-01-02', 15, 'https://www.gutenberg.org/ebooks/34818', 'en', 10641), +(25519, 'I Francesi in Italia (1796-1815)\r\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Fiorini, Vittorio', '2013-07-10', 13, 'https://www.gutenberg.org/ebooks/43176', 'it', 10642), +(25520, 'Nouveau voyage en France\nConversations familières, instructives et amusantes par un Papa', 'Anonymous', '2009-11-16', 32, 'https://www.gutenberg.org/ebooks/30484', 'fr', 10643), +(25521, 'Henry IV, Part 1', 'Shakespeare, William', '2000-07-01', 131, 'https://www.gutenberg.org/ebooks/2251', 'en', 1665), +(25522, 'Kuppari-Maija', 'Meriläinen, Heikki', '2005-07-27', 12, 'https://www.gutenberg.org/ebooks/16374', 'fi', 179), +(25523, 'Paljo melua tyhjästä', 'Shakespeare, William', '2013-06-09', 10, 'https://www.gutenberg.org/ebooks/42898', 'fi', 5155), +(25524, 'Joy in Service; Forgetting, and Pressing Onward; Until the Day Dawn', 'Purves, George Tybout', '2007-07-25', 11, 'https://www.gutenberg.org/ebooks/22141', 'en', 10644), +(25525, 'The Last of the Barons — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7723', 'en', 10645), +(25526, 'Mimi at Sheridan School', 'Davis, Anne Pence', '2014-07-25', 16, 'https://www.gutenberg.org/ebooks/46404', 'en', 62), +(25527, 'Ruth Fielding at Lighthouse Point; or, Nita, the Girl Castaway', 'Emerson, Alice B.', '2010-10-03', 25, 'https://www.gutenberg.org/ebooks/34024', 'en', 10646), +(25528, 'Princo Vanc\'', 'Bates, Arlo', '2007-10-20', 12, 'https://www.gutenberg.org/ebooks/23093', 'eo', 2203), +(25529, 'The Dark Other', 'Weinbaum, Stanley G. (Stanley Grauman)', '2015-11-27', 82, 'https://www.gutenberg.org/ebooks/50561', 'en', 4351), +(25530, 'Ontwerp van wet tot afsluiting en droogmaking van de Zuiderzee met toelichtende memorie', 'Lely, Cornelis', '2011-06-03', 6, 'https://www.gutenberg.org/ebooks/36317', 'nl', 5497), +(25531, 'The Busy Life of Eighty-Five Years of Ezra Meeker\r\nVentures and adventures; sixty-three years of pioneer life in the old Oregon country; an account of the author\'s trip across the plains with an ox team; return trip, 1906-7; his cruise on Puget Sound, 1853; trip through the Natchess pass, 1854; over the Chilcoot pass; flat-boating on the Yukon, 1898. The Oregon trail.', 'Meeker, Ezra', '2016-07-26', 17, 'https://www.gutenberg.org/ebooks/52652', 'en', 1181), +(25532, 'Rose of Old Harpeth', 'Daviess, Maria Thompson', '2005-02-28', 29, 'https://www.gutenberg.org/ebooks/15195', 'en', 10647), +(25533, 'Samlade dikter', 'Wecksell, J. J. (Josef Julius)', '2018-11-28', 11, 'https://www.gutenberg.org/ebooks/58368', 'sv', 10648), +(25534, 'A Letter to A.H. Esq.; Concerning the Stage (1698) and The Occasional Paper No. IX (1698)', NULL, '2004-11-15', 2, 'https://www.gutenberg.org/ebooks/14047', 'en', 4997), +(25535, 'Der Weihnacht-Abend', 'Schilling, Gustav', '2016-12-21', 7, 'https://www.gutenberg.org/ebooks/53780', 'de', 138), +(25536, 'Helsinkiin', 'Aho, Juhani', '2007-01-05', 10, 'https://www.gutenberg.org/ebooks/20272', 'fi', 10649), +(25537, 'The Memoirs of Count Grammont — Volume 02', 'Hamilton, Anthony, Count', '2004-12-04', 2, 'https://www.gutenberg.org/ebooks/5410', 'en', 10650), +(25538, 'Im Sattel durch Zentralasien: 6000 Kilometer in 176 Tagen', 'Salzmann, Erich von', '2014-01-23', 13, 'https://www.gutenberg.org/ebooks/44737', 'de', 2773), +(25539, 'The Greville Memoirs, Part 1 (of 3), Volume 1 (of 3)\r\nA Journal of the Reigns of King George IV and King William IV', 'Greville, Charles', '2008-06-05', 25, 'https://www.gutenberg.org/ebooks/25700', 'en', 10651), +(25540, 'Views A-foot; Or, Europe Seen with Knapsack and Staff', 'Taylor, Bayard', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/11535', 'en', 1408), +(25541, 'A Guide to the Virginia Springs\r\nGiving, in addition to the routes and distances, a description of the springs and also of the natural curiosities of the state', 'Moorman, J. J. (John Jennings)', '2012-10-30', 10, 'https://www.gutenberg.org/ebooks/41245', 'en', 1983), +(25542, 'The Preliminaries, and Other Stories', 'Comer, Cornelia A. P. (Cornelia Atwood Pratt)', '2010-09-07', 22, 'https://www.gutenberg.org/ebooks/33665', 'en', 179), +(25543, 'Blackwood\'s Edinburgh Magazine, Volume 65, No. 403, May, 1849', 'Various', '2012-08-03', 8, 'https://www.gutenberg.org/ebooks/40397', 'en', 274), +(25544, 'Telescopic Work for Starlight Evenings', 'Denning, William F. (William Frederick)', '2018-06-13', 20, 'https://www.gutenberg.org/ebooks/57320', 'en', 10652), +(25545, 'Ireland and Poland: A Comparison', 'Rolleston, T. W. (Thomas William)', '2008-10-26', 18, 'https://www.gutenberg.org/ebooks/27057', 'en', 10653), +(25546, 'The Personal Life of David Livingstone\r\nChiefly from his Unpublished Journals and Correspondence in the Possession of His Family', 'Blaikie, William Garden', '2004-08-23', 36, 'https://www.gutenberg.org/ebooks/13262', 'en', 8363), +(25547, 'The Works of George Meredith: A Linked Index to the Project Gutenberg Editions', 'Meredith, George', '2009-05-15', 10, 'https://www.gutenberg.org/ebooks/28823', 'en', 198), +(25548, 'Nellina: Dramma in tre atti\r\n(Taken from Roberto Bracco Teatro, Vol. VII)', 'Bracco, Roberto', '2013-08-19', 11, 'https://www.gutenberg.org/ebooks/43512', 'it', 407), +(25549, 'The High Hander', 'Turner, William Oliver', '2016-01-16', 27, 'https://www.gutenberg.org/ebooks/50939', 'en', 10654), +(25550, 'Clarence', 'Harte, Bret', '2006-05-22', 20, 'https://www.gutenberg.org/ebooks/2635', 'en', 8226), +(25551, 'Hazlitt on English Literature: An Introduction to the Appreciation of Literature', 'Hazlitt, William', '2010-01-31', 136, 'https://www.gutenberg.org/ebooks/31132', 'en', 1694), +(25552, 'Suomalaisten runojen uskonto', 'Krohn, Kaarle', '2015-05-23', 13, 'https://www.gutenberg.org/ebooks/49028', 'fi', 7568), +(25553, 'Address by Honorable William C. Redfield, Secretary of Commerce at Conference of Regional Chairmen of the Highways Transport Committee Council of National Defense', 'United States. Council of National Defense. Highways Transport Committee', '2006-11-11', 6, 'https://www.gutenberg.org/ebooks/19758', 'en', 4067), +(25554, 'Wies Ongeluk', 'Jehu, Felicie', '2017-09-02', 26, 'https://www.gutenberg.org/ebooks/55477', 'nl', 511), +(25555, 'Lippincott\'s Magazine, November 1885', 'Various', '2008-08-04', 13, 'https://www.gutenberg.org/ebooks/26185', 'en', 210), +(25556, 'No Defense, Complete', 'Parker, Gilbert', '2004-11-20', 10, 'https://www.gutenberg.org/ebooks/6295', 'en', 61), +(25557, 'A Jewish Chaplain in France', 'Levinger, Lee J. (Lee Joseph)', '2010-11-25', 24, 'https://www.gutenberg.org/ebooks/34440', 'en', 4928), +(25558, 'Grace Harlowe\'s Overland Riders on the Old Apache Trail', 'Chase, Josephine', '2015-10-01', 23, 'https://www.gutenberg.org/ebooks/50105', 'en', 10655), +(25559, 'Les Deux Gentilshommes de Vérone', 'Shakespeare, William', '2005-09-17', 10, 'https://www.gutenberg.org/ebooks/16710', 'fr', 10656), +(25560, 'A correct and authentic narrative of the Indian war in Florida\r\nwith a description of Maj. Dade\'s massacre, and an account of the extreme suffering, for want of provision, of the army—having been obliged to eat horses\' and dogs\' flesh, &c, &c.', 'Barr, James, Captain', '2015-08-29', 12, 'https://www.gutenberg.org/ebooks/49814', 'en', 10657), +(25561, 'John Lyly', 'Wilson, John Dover', '2007-09-06', 26, 'https://www.gutenberg.org/ebooks/22525', 'en', 10658), +(25562, 'The Lincoln Story Book\r\nA Judicious Collection of the Best Stories and Anecdotes of the Great President, Many Appearing Here for the First Time in Book Form', NULL, '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/7347', 'en', 2597), +(25563, 'Some Current Folk-Songs of the Negro', 'Thomas, W. H. (William Henry)', '2011-03-16', 8, 'https://www.gutenberg.org/ebooks/35592', 'en', 10659), +(25564, 'Of the Injustice of Counterfeiting Books\r\nFrom: Essays and Treaties on Moral, Political and various Philosophical Subjects', 'Kant, Immanuel', '2014-06-21', 30, 'https://www.gutenberg.org/ebooks/46060', 'en', 9780), +(25565, 'The Child\'s Rainy Day Book', 'White, Mary', '2013-09-14', 35, 'https://www.gutenberg.org/ebooks/43720', 'en', 10660), +(25566, 'Die Leiden des jungen Werther — Band 1', 'Goethe, Johann Wolfgang von', '2000-11-01', 253, 'https://www.gutenberg.org/ebooks/2407', 'de', 4038), +(25567, 'The Wagnerian Romances', 'Brownell, Gertrude Hall', '2008-11-15', 13, 'https://www.gutenberg.org/ebooks/27265', 'en', 1464), +(25568, 'The Jesuit Relations and Allied Documents, Vol. 8: Quebec, Hurons, Cape Breton, 1634-1636', NULL, '2017-05-27', 36, 'https://www.gutenberg.org/ebooks/54797', 'en', 2163), +(25569, 'The Easiest Way\r\nRepresentative Plays by American Dramatists: 1856-1911', 'Walter, Eugene', '2004-07-29', 19, 'https://www.gutenberg.org/ebooks/13050', 'en', 10661), +(25570, 'The 1993 CIA World Factbook', 'United States. Central Intelligence Agency', '1993-10-01', 135, 'https://www.gutenberg.org/ebooks/87', 'en', 10662), +(25571, 'The Historical Nights\' Entertainment: Second Series', 'Sabatini, Rafael', '2005-04-01', 45, 'https://www.gutenberg.org/ebooks/7949', 'en', 10663), +(25572, 'Veneh\'ojalaiset', 'Järnefelt, Arvid', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12182', 'fi', 61), +(25573, 'The Valley of Gold: A Tale of the Saskatchewan', 'Howarth, David', '2017-09-27', 23, 'https://www.gutenberg.org/ebooks/55645', 'en', 332), +(25574, 'Peonage', 'Hershaw, Lafayette M.', '2010-02-17', 8, 'https://www.gutenberg.org/ebooks/31300', 'en', 10664), +(25575, 'Niobe: Nykyajan romaani', 'Lie, Jonas', '2015-10-29', 25, 'https://www.gutenberg.org/ebooks/50337', 'fi', 7), +(25576, 'Recollections of Thirty-nine Years in the Army\r\nGwalior and the Battle of Maharajpore, 1843; the Gold Coast of Africa, 1847-48; the Indian Mutiny, 1857-58; the expedition to China, 1860-61; the Siege of Paris, 1870-71; etc.', 'Gordon, Charles Alexander, Sir', '2014-11-17', 28, 'https://www.gutenberg.org/ebooks/47380', 'en', 10665), +(25577, 'Fish Stories', 'Abbott, Henry', '2010-12-16', 33, 'https://www.gutenberg.org/ebooks/34672', 'en', 1945), +(25578, 'The Tattva-Muktavali', 'Gaudapurnanandacakravarti, active 17th century', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/7175', 'en', 10666), +(25579, 'The Highflyers', 'Kelland, Clarence Budington', '2014-07-11', 10, 'https://www.gutenberg.org/ebooks/46252', 'en', 579), +(25580, 'The Nursery, No. 106, October, 1875. Vol. XVIII.\nA Monthly Magazine for Youngest Readers', 'Various', '2005-08-13', 9, 'https://www.gutenberg.org/ebooks/16522', 'en', 4641), +(25581, 'The Works of Lord Byron: Letters and Journals. Vol. 1', 'Byron, George Gordon Byron, Baron', '2005-09-01', 110, 'https://www.gutenberg.org/ebooks/8901', 'en', 10667), +(25582, 'Lundy\'s Lane, and Other Poems', 'Scott, Duncan Campbell', '2007-09-22', 18, 'https://www.gutenberg.org/ebooks/22717', 'en', 919), +(25583, 'The Life and Adventures of Santa Claus', 'Baum, L. Frank (Lyman Frank)', '2007-04-24', 2, 'https://www.gutenberg.org/ebooks/21192', 'en', 585), +(25584, 'Punch, or the London Charivari, Vol. 107 July 7, 1894, by Various', 'Various', '2012-06-09', 9, 'https://www.gutenberg.org/ebooks/39951', 'en', 134), +(25585, 'Elf Jahre Gouverneur in Deutsch-Südwestafrika', 'Leutwein, Theodor Gotthilf von', '2019-03-18', 13, 'https://www.gutenberg.org/ebooks/59088', 'de', 10668), +(25586, 'Emerson on Sound Money\nA Speech, 1896', 'Emerson, Willis George', '2016-06-30', 9, 'https://www.gutenberg.org/ebooks/52460', 'en', 5149), +(25587, 'Omituisia sairaita\nIlveily 1:ssä näytöksessä', 'Helander, Mikko Akseli', '2011-05-16', 10, 'https://www.gutenberg.org/ebooks/36125', 'fi', 402), +(25588, 'At Last: A Novel', 'Harland, Marion', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/5622', 'en', 61), +(25589, 'Across America by Motor-cycle', 'Shepherd, C. K.', '2013-12-25', 18, 'https://www.gutenberg.org/ebooks/44505', 'en', 1110), +(25590, 'The Necromancers', 'Benson, Robert Hugh', '2004-12-06', 50, 'https://www.gutenberg.org/ebooks/14275', 'en', 114), +(25591, 'L\'Illustration, No. 3668, 14 Juin 1913', 'Various', '2012-02-15', 5, 'https://www.gutenberg.org/ebooks/38883', 'fr', 150), +(25592, 'The Call of the Beaver Patrol; Or, A Break in the Glacier', 'Sherman, V. T.', '2006-12-06', 16, 'https://www.gutenberg.org/ebooks/20040', 'en', 1586), +(25593, 'Stolen Souls', 'Le Queux, William', '2012-10-09', 12, 'https://www.gutenberg.org/ebooks/40999', 'en', 61), +(25594, 'May Carols', 'De Vere, Aubrey', '2012-10-16', 15, 'https://www.gutenberg.org/ebooks/41077', 'en', 2246), +(25595, 'Minerva e lo scimmione', 'Romagnoli, Ettore', '2010-05-29', 25, 'https://www.gutenberg.org/ebooks/32585', 'it', 10669), +(25596, 'The Detection of Forgery\r\nA Practical Handbook for the Use of Bankers, Solicitors, Magistrates\' Clerks, and All Handling Suspected Documents', 'Caddell, W. Waithman', '2008-05-20', 27, 'https://www.gutenberg.org/ebooks/25532', 'en', 10670), +(25597, 'Notes and Queries, Number 13, January 26, 1850', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11707', 'en', 105), +(25598, 'The Heart\'s Country', 'Vorse, Mary Heaton', '2011-07-31', 16, 'https://www.gutenberg.org/ebooks/36919', 'en', 109), +(25599, 'The Loss of His Majesty\'s Frigate Anson\r\nWhich was Wrecked within Three Miles of Helston, December 28, 1807 ... Also, an Authentic Narrative of the Loss of the Sidney, Which Ran upon a Dangerous Rock or Shoal, May 20, 1808', 'Unknown', '2018-05-08', 6, 'https://www.gutenberg.org/ebooks/57112', 'en', 5584), +(25600, 'The Girl\'s Own Paper. Vol. XX. No. 1007. April 15, 1899', 'Various', '2019-02-26', 15, 'https://www.gutenberg.org/ebooks/58966', 'en', 563), +(25601, 'An Elogy to the Memory of the late Wm. Palgrave, Esq., with Other Pieces', 'Parkerson, James', '2010-08-17', 3, 'https://www.gutenberg.org/ebooks/33457', 'en', 10671), +(25602, 'Tom Swift Among the Diamond Makers; Or, The Secret of Phantom Mountain', 'Appleton, Victor', '1998-04-01', 50, 'https://www.gutenberg.org/ebooks/1282', 'en', 1456), +(25603, 'Anna Karenina', 'Tolstoy, Leo, graf', '2015-07-19', 41, 'https://www.gutenberg.org/ebooks/49487', 'fi', 1014), +(25604, 'The Wandering Jew — Volume 10', 'Sue, Eugène', '2004-10-25', 10, 'https://www.gutenberg.org/ebooks/3348', 'en', 10672), +(25605, 'Heriot\'s Choice: A Tale', 'Carey, Rosa Nouchette', '2011-04-18', 18, 'https://www.gutenberg.org/ebooks/35901', 'en', 376), +(25606, 'The Shield of Silence', 'Comstock, Harriet T. (Harriet Theresa)', '2006-04-22', 9, 'https://www.gutenberg.org/ebooks/18225', 'en', 10673), +(25607, 'Adam Bede', 'Eliot, George', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9672', 'en', 847), +(25608, '孫子兵法', 'Sunzi, active 6th century B.C.', '2007-12-15', 57, 'https://www.gutenberg.org/ebooks/23864', 'zh', 465), +(25609, 'The History of the Most Noble Order of the Garter', 'Ashmole, Elias', '2015-03-22', 18, 'https://www.gutenberg.org/ebooks/48555', 'en', 10674), +(25610, 'Punch, or the London Charivari, Vol. 107, December 22, 1894', 'Various', '2013-06-01', 11, 'https://www.gutenberg.org/ebooks/42853', 'en', 134); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(25611, 'The Clock that Had no Hands\nAnd Nineteen Other Essays About Advertising', 'Kaufman, Herbert', '2009-08-01', 114, 'https://www.gutenberg.org/ebooks/29562', 'en', 4046), +(25612, 'Dumbwaiter', 'Stamers, James', '2016-03-16', 41, 'https://www.gutenberg.org/ebooks/51478', 'en', 1248), +(25613, 'History of Greece, Volume 06 (of 12)', 'Grote, George', '2017-06-19', 16, 'https://www.gutenberg.org/ebooks/54936', 'en', 6424), +(25614, 'The Queen Of Spades', 'Pushkin, Aleksandr Sergeevich', '2007-10-17', 71, 'https://www.gutenberg.org/ebooks/23058', 'en', 85), +(25615, 'Punch, or the London Charivari, Vol. 108, June 29, 1895', 'Various', '2013-10-19', 6, 'https://www.gutenberg.org/ebooks/43981', 'en', 134), +(25616, 'Poems on Slavery', 'Longfellow, Henry Wadsworth', '2013-12-09', 21, 'https://www.gutenberg.org/ebooks/44398', 'en', 4777), +(25617, 'At Sunwich Port, Part 4.\nContents: Chapters 16-20', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/10874', 'en', 1391), +(25618, 'Index of the Project Gutenberg Works of George Jacob Holyoake', 'Holyoake, George Jacob', '2019-05-26', 9, 'https://www.gutenberg.org/ebooks/59615', 'en', 198), +(25619, 'Punch, or the London Charivari, Volume 107, August 18, 1894', 'Various', '2012-09-12', 9, 'https://www.gutenberg.org/ebooks/40738', 'en', 134), +(25620, 'Encyclopaedia Britannica, 11th Edition, \"Crocoite\" to \"Cuba\"\r\nVolume 7, Slice 7', 'Various', '2012-01-20', 17, 'https://www.gutenberg.org/ebooks/38622', 'en', 1081), +(25621, 'Billie Bradley and Her Inheritance; Or, The Queer Homestead at Cherry Corners', 'Wheeler, Janet D.', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10048', 'en', 9066), +(25622, 'The Flying Saucers are Real', 'Keyhoe, Donald E. (Donald Edward)', '2004-06-01', 95, 'https://www.gutenberg.org/ebooks/5883', 'en', 7726), +(25623, 'String Quartet No. 17 in B flat major, \"Hunt\", K. 458', 'Mozart, Wolfgang Amadeus', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/4951', 'en', 909), +(25624, 'Greek Women', 'Carroll, Mitchell', '2010-05-10', 53, 'https://www.gutenberg.org/ebooks/32318', 'en', 10675), +(25625, 'Lucy Maud Montgomery Short Stories, 1896 to 1901', 'Montgomery, L. M. (Lucy Maud)', '2008-03-19', 149, 'https://www.gutenberg.org/ebooks/24873', 'en', 2261), +(25626, 'Natalie: A Garden Scout', 'Roy, Lillian Elizabeth', '2011-09-17', 24, 'https://www.gutenberg.org/ebooks/37458', 'en', 10676), +(25627, 'Scientific American Supplement, No. 794, March 21, 1891', 'Various', '2005-04-25', 10, 'https://www.gutenberg.org/ebooks/15708', 'en', 210), +(25628, 'A Secret of the Lebombo', 'Mitford, Bertram', '2010-06-20', 28, 'https://www.gutenberg.org/ebooks/32916', 'en', 1207), +(25629, 'Gleanings in Bee Culture, Vol. III. No. 3', 'Various', '2019-05-03', 9, 'https://www.gutenberg.org/ebooks/59427', 'en', 2825), +(25630, 'How the World Travels', 'Methley, Alice A.', '2014-03-08', 12, 'https://www.gutenberg.org/ebooks/45078', 'en', 10677), +(25631, 'Rank and Talent; A Novel, Vol. 2 (of 3)', 'Scargill, William Pitt', '2014-02-24', 7, 'https://www.gutenberg.org/ebooks/44996', 'en', 45), +(25632, 'Menneiden vuosisatain vaiheita', 'Strindberg, August', '2017-01-10', 11, 'https://www.gutenberg.org/ebooks/53921', 'fi', 2168), +(25633, 'The Star-Treader, and other poems', 'Smith, Clark Ashton', '2011-12-25', 81, 'https://www.gutenberg.org/ebooks/38410', 'en', 178), +(25634, 'Our Little Persian Cousin', 'Shedd, E. Cutler (Ephraim Cutler)', '2014-05-31', 17, 'https://www.gutenberg.org/ebooks/45844', 'en', 10678), +(25635, 'Health on the Farm: A Manual of Rural Sanitation and Hygiene', 'Harris, H. F. (Henry Fauntleroy)', '2008-09-28', 23, 'https://www.gutenberg.org/ebooks/26718', 'en', 10679), +(25636, 'Poetical Works', 'Churchill, Charles', '2005-07-01', 19, 'https://www.gutenberg.org/ebooks/8592', 'en', 3947), +(25637, 'The Further Adventures of Jimmie Dale', 'Packard, Frank L. (Frank Lucius)', '2005-12-01', 36, 'https://www.gutenberg.org/ebooks/9440', 'en', 128), +(25638, 'Blackbeard; Or, The Pirate of Roanoke.', 'Barker, B. (Benjamin)', '2006-02-26', 30, 'https://www.gutenberg.org/ebooks/17863', 'en', 10680), +(25639, 'The Quest of Glory', 'Bowen, Marjorie', '2015-04-23', 20, 'https://www.gutenberg.org/ebooks/48767', 'en', 2643), +(25640, 'Q-Ships and Their Story', 'Chatterton, E. Keble (Edward Keble)', '2017-03-10', 21, 'https://www.gutenberg.org/ebooks/54338', 'en', 10034), +(25641, 'Om viljans frihet: Ett föredrag', 'Schéele, Frans von', '2006-03-19', 21, 'https://www.gutenberg.org/ebooks/18017', 'sv', 6550), +(25642, 'Zen', 'Bixby, Jerome', '2009-08-21', 67, 'https://www.gutenberg.org/ebooks/29750', 'en', 26), +(25643, 'Monsieur de Camors — Complete', 'Feuillet, Octave', '2004-10-30', 11, 'https://www.gutenberg.org/ebooks/3946', 'en', 560), +(25644, 'Short Stories', 'Botev, Khristo', '2001-11-01', 43, 'https://www.gutenberg.org/ebooks/2894', 'bg', 10681), +(25645, 'The Girl\'s Own Paper, Vol. XX, No. 991, December 24, 1898', 'Various', '2015-12-30', 19, 'https://www.gutenberg.org/ebooks/50798', 'en', 563), +(25646, 'Minnie\'s Pet Cat', 'Leslie, Madeline', '2009-05-04', 11, 'https://www.gutenberg.org/ebooks/28682', 'en', 10682), +(25647, 'Letters of Anton Chekhov to His Family and Friends', 'Chekhov, Anton Pavlovich', '2004-09-01', 155, 'https://www.gutenberg.org/ebooks/6408', 'en', 10683), +(25648, 'For Yardley: A Story of Track and Field', 'Barbour, Ralph Henry', '2019-03-10', 9, 'https://www.gutenberg.org/ebooks/59043', 'en', 1877), +(25649, 'Wild Folk', 'Scoville, Samuel', '2013-01-19', 16, 'https://www.gutenberg.org/ebooks/41880', 'en', 1787), +(25650, 'Sky Island', 'Baum, L. Frank (Lyman Frank)', '2007-04-24', 9, 'https://www.gutenberg.org/ebooks/21159', 'en', 10684), +(25651, 'Historical Record of the Fifty-Third, or the Shropshire Regiment of Foot\r\nContaining an account of the formation of the regiment in 1755 and of its subsequent services to 1848', 'Cannon, Richard', '2018-03-25', 3, 'https://www.gutenberg.org/ebooks/56837', 'en', 10685), +(25652, 'Mushroom Culture: Its Extension and Improvement', 'Robinson, W. (William)', '2012-10-06', 22, 'https://www.gutenberg.org/ebooks/40952', 'en', 6834), +(25653, 'The American Bee-Keeper, Vol. II, Number 3, March, 1892', 'Various', '2018-10-30', 14, 'https://www.gutenberg.org/ebooks/58191', 'en', 2825), +(25654, 'Paul Gauguin, His Life and Art', 'Fletcher, John Gould', '2012-02-12', 24, 'https://www.gutenberg.org/ebooks/38848', 'en', 10686), +(25655, 'The Wisdom of Fools', 'Deland, Margaret Wade Campbell', '2016-11-23', 22, 'https://www.gutenberg.org/ebooks/53579', 'en', 770), +(25656, 'Preventable Diseases', 'Hutchinson, Woods', '2007-06-29', 21, 'https://www.gutenberg.org/ebooks/21965', 'en', 295), +(25657, 'Girl Scouts at Dandelion Camp', 'Roy, Lillian Elizabeth', '2011-10-19', 16, 'https://www.gutenberg.org/ebooks/37800', 'en', 3), +(25658, 'Anthem', 'Rand, Ayn', '1998-03-01', 160, 'https://www.gutenberg.org/ebooks/1249', 'en', 2229), +(25659, 'Victor Hugo, son oeuvre poétique', 'Dupuy, Ernest', '2011-11-21', 12, 'https://www.gutenberg.org/ebooks/38074', 'fr', 10687), +(25660, 'The Man That Corrupted Hadleyburg and Other Stories', 'Twain, Mark', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/9024', 'en', 262), +(25661, 'Monophysitism Past and Present: A Study in Christology', 'Luce, A. A. (Arthur Aston)', '2009-12-01', 7, 'https://www.gutenberg.org/ebooks/30219', 'en', 10688), +(25662, 'The Campaign of the Forty-fifth Regiment, Massachusetts Volunteer Militia\r\n\"The Cadet Regiment\"', 'Hubbard, Charles Eustis', '2015-02-18', 18, 'https://www.gutenberg.org/ebooks/48303', 'en', 10689), +(25663, 'Prosper Mérimée\nElämäkerta ja teokset kirjallisuushistorialliselta kannalta', 'Leino, Kasimir', '2006-05-30', 39, 'https://www.gutenberg.org/ebooks/18473', 'fi', 10690), +(25664, 'Esther : a book for girls', 'Carey, Rosa Nouchette', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/6850', 'en', 45), +(25665, 'String Quartet No. 03 in D major Opus 18', 'Beethoven, Ludwig van', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12149', 'en', 3385), +(25666, 'A Traveller in Little Things', 'Hudson, W. H. (William Henry)', '2005-04-01', 42, 'https://www.gutenberg.org/ebooks/7982', 'en', 4356), +(25667, 'The Expositor\'s Bible: The Book of Numbers', 'Watson, Robert A. (Robert Alexander)', '2013-05-03', 25, 'https://www.gutenberg.org/ebooks/42639', 'en', 10691), +(25668, 'Les grandes journées de la Constituante', 'Mathiez, Albert', '2006-02-01', 15, 'https://www.gutenberg.org/ebooks/9818', 'fr', 1536), +(25669, 'With the French Flying Corps', 'Winslow, Carroll Dana', '2014-07-16', 20, 'https://www.gutenberg.org/ebooks/46299', 'en', 449), +(25670, 'International Weekly Miscellany of Literature, Art and Science — Volume 1, No. 2, July 8, 1850', 'Various', '2004-07-21', 13, 'https://www.gutenberg.org/ebooks/12975', 'en', 380), +(25671, 'The Colonial Architecture of Philadelphia', 'Cousins, Frank', '2009-07-06', 62, 'https://www.gutenberg.org/ebooks/29334', 'en', 10692), +(25672, 'Hunter Patrol', 'McGuire, John Joseph', '2006-06-21', 96, 'https://www.gutenberg.org/ebooks/18641', 'en', 26), +(25673, 'On the Nature of Things', 'Lucretius Carus, Titus', '1997-01-01', 549, 'https://www.gutenberg.org/ebooks/785', 'en', 10693), +(25674, 'Beyträge zur Kenntniss der altdeutschen Sprache und Litteratur. Erster Band. Theil 1.', 'Benecke, Georg Friedrich', '2015-01-11', 20, 'https://www.gutenberg.org/ebooks/47945', 'de', 10694), +(25675, 'Beneath an Umbrella (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 31, 'https://www.gutenberg.org/ebooks/9216', 'en', 13), +(25676, 'L\'Arte', 'De Roberto, Federico', '2015-02-01', 14, 'https://www.gutenberg.org/ebooks/48131', 'it', 787), +(25677, 'Honoré de Balzac', 'Balzac, Honoré de', '2016-04-21', 35, 'https://www.gutenberg.org/ebooks/51820', 'en', 1112), +(25678, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 686\r\nFebruary 17, 1877', 'Various', '2014-09-18', 7, 'https://www.gutenberg.org/ebooks/46897', 'en', 18), +(25679, 'Der tolle Mensch', 'Nietzsche, Friedrich Wilhelm', '2006-11-15', 22, 'https://www.gutenberg.org/ebooks/19793', 'de', 902), +(25680, 'Motor Matt\'s Mystery; or, Foiling a Secret Plot', 'Matthews, Stanley R.', '2014-10-23', 11, 'https://www.gutenberg.org/ebooks/47179', 'en', 4887), +(25681, 'Our Deportment\nOr the Manners, Conduct and Dress of the Most Refined Society', 'Young, John H.', '2006-01-25', 35, 'https://www.gutenberg.org/ebooks/17609', 'en', 788), +(25682, 'The Beggar Man', 'Ayres, Ruby M. (Ruby Mildred)', '2009-12-31', 36, 'https://www.gutenberg.org/ebooks/30817', 'en', 61), +(25683, 'A Bride of the Plains', 'Orczy, Emmuska Orczy, Baroness', '2009-06-12', 38, 'https://www.gutenberg.org/ebooks/29106', 'en', 8904), +(25684, 'Die Theorie des Romans\nEin geschichtsphilosophischer Versuch über die Formen der großen Epik', 'Lukács, György', '2008-10-20', 39, 'https://www.gutenberg.org/ebooks/26972', 'de', 1047), +(25685, 'The Reconstruction of Georgia\nStudies in History, Economics and Public Law, Vol. 13, No. 3, 1901', 'Woolley, Edwin C. (Edwin Campbell)', '2011-03-12', 12, 'https://www.gutenberg.org/ebooks/35559', 'en', 3455), +(25686, 'Three Acres and Liberty', 'Hall, Bolton', '2003-10-01', 37, 'https://www.gutenberg.org/ebooks/4509', 'en', 2757), +(25687, 'Betsey Bobbett: A Drama', 'Holley, Marietta', '2019-04-13', 12, 'https://www.gutenberg.org/ebooks/59271', 'en', 427), +(25688, 'The Chinese Coat', 'Lee, Jennette', '2016-08-02', 21, 'https://www.gutenberg.org/ebooks/52699', 'en', 109), +(25689, 'Songs, Merry and Sad', 'McNeill, John Charles', '1999-08-01', 22, 'https://www.gutenberg.org/ebooks/1847', 'en', 178), +(25690, 'Festländer und Meere im Wechsel der Zeiten', 'Bölsche, Wilhelm', '2017-12-23', 6, 'https://www.gutenberg.org/ebooks/56239', 'de', 10695), +(25691, 'Essays on Political Economy', 'Bastiat, Frédéric', '2005-05-31', 64, 'https://www.gutenberg.org/ebooks/15962', 'en', 1745), +(25692, 'The Expositor\'s Bible: The First Book of Samuel', 'Blaikie, William Garden', '2012-04-07', 17, 'https://www.gutenberg.org/ebooks/39394', 'en', 8596), +(25693, 'Heroes of Science: Chemists', 'Muir, M. M. Pattison (Matthew Moncrieff Pattison)', '2011-12-07', 15, 'https://www.gutenberg.org/ebooks/38246', 'en', 10696), +(25694, 'O passeio dos bardos ao Baldeador', 'Costa, Floriano Alves da', '2008-02-15', 22, 'https://www.gutenberg.org/ebooks/24619', 'pt', 1638), +(25695, 'Narrative of the Life and Adventures of Henry Bibb, an American Slave, Written by Himself', 'Bibb, Henry', '2005-03-17', 46, 'https://www.gutenberg.org/ebooks/15398', 'en', 56), +(25696, 'Turha voitto: Kertomus', 'Chekhov, Anton Pavlovich', '2013-01-19', 3, 'https://www.gutenberg.org/ebooks/41874', 'fi', 147), +(25697, 'Outlines of Jewish History from B.C. 586 to C.E. 1885', 'Magnus, Katie, Lady', '2018-09-16', 24, 'https://www.gutenberg.org/ebooks/57911', 'en', 10697), +(25698, 'When You Were a Boy', 'Sabin, Edwin L. (Edwin Legrand)', '2018-10-25', 13, 'https://www.gutenberg.org/ebooks/58165', 'en', 112), +(25699, 'A Biographical Sketch of some of the Most Eminent Individuals which the Principality of Wales has produced since the Reformation', 'Williams, Robert', '2012-03-15', 12, 'https://www.gutenberg.org/ebooks/39152', 'en', 10698), +(25700, 'The Church Index\nA Book of Metropolitan Churches and Church Enterprise: Part I. Kensington', 'Pepperell, William', '2012-10-14', 16, 'https://www.gutenberg.org/ebooks/41048', 'en', 10699), +(25701, 'Face to Face with Kaiserism', 'Gerard, James W. (James Watson)', '2007-07-03', 51, 'https://www.gutenberg.org/ebooks/21991', 'en', 10700), +(25702, 'Hindoo Tales\nOr, the Adventures of Ten Princes', 'Dandin, active 7th century', '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/11738', 'en', 10701), +(25703, 'Man\'s Redemption of Man: A Lay Sermon', 'Osler, William', '2011-07-31', 14, 'https://www.gutenberg.org/ebooks/36926', 'en', 9499), +(25704, 'An Estimate of the Value and Influence of Works of Fiction in Modern Times', 'Green, Thomas Hill', '2007-03-17', 30, 'https://www.gutenberg.org/ebooks/20843', 'en', 1047), +(25705, 'Jean-Christophe Pariisissa I\nV. Markkinatori', 'Rolland, Romain', '2019-02-24', 3, 'https://www.gutenberg.org/ebooks/58959', 'fi', 560), +(25706, 'Fædrene æde Druer, Roman\r\nSlægten, Opus 2', 'Wied, Gustav', '2011-11-21', 15, 'https://www.gutenberg.org/ebooks/38080', 'da', 6055), +(25707, 'Roland Cashel, Volume I (of II)', 'Lever, Charles James', '2010-08-19', 10, 'https://www.gutenberg.org/ebooks/33468', 'en', 61), +(25708, 'Daphne: An Autumn Pastoral', 'Sherwood, Margaret Pollock', '2000-12-01', 15, 'https://www.gutenberg.org/ebooks/2438', 'en', 16), +(25709, 'Food Remedies: Facts About Foods And Their Medicinal Uses', 'Daniel, Florence', '2006-06-01', 108, 'https://www.gutenberg.org/ebooks/18487', 'en', 7010), +(25710, 'Main Street', 'Lewis, Sinclair', '2006-01-21', 342, 'https://www.gutenberg.org/ebooks/543', 'en', 10702), +(25711, 'A Humorous History of England', 'Harrison, Charles', '2008-08-22', 76, 'https://www.gutenberg.org/ebooks/26388', 'en', 1688), +(25712, 'Mr. Dooley\'s Philosophy', 'Dunne, Finley Peter', '2005-04-01', 34, 'https://www.gutenberg.org/ebooks/7976', 'en', 9218), +(25713, 'Bunny Brown and His Sister Sue on Grandpa\'s Farm', 'Hope, Laura Lee', '2006-10-16', 20, 'https://www.gutenberg.org/ebooks/19555', 'en', 31), +(25714, 'Bandelier National Monument, New Mexico', 'Wing, Kittridge A.', '2015-06-17', 13, 'https://www.gutenberg.org/ebooks/49225', 'en', 10703), +(25715, 'The Forme of Cury: A Roll of Ancient English Cookery Compiled, about A.D. 1390', 'Pegge, Samuel', '2005-05-01', 422, 'https://www.gutenberg.org/ebooks/8102', 'enm', 6316), +(25716, 'Romney', 'Davies, Randall', '2015-10-25', 10, 'https://www.gutenberg.org/ebooks/50308', 'en', 2956), +(25717, 'La vistosa', 'Picón, Jacinto Octavio', '2009-02-28', 13, 'https://www.gutenberg.org/ebooks/28212', 'es', 3452), +(25718, 'Amelia — Complete', 'Fielding, Henry', '2004-07-01', 75, 'https://www.gutenberg.org/ebooks/6098', 'en', 378), +(25719, 'New National First Reader', 'Thayer, S. Proctor', '2004-10-25', 54, 'https://www.gutenberg.org/ebooks/13853', 'en', 1019), +(25720, 'The Thirsty Sword: A Story of the Norse Invasion of Scotland (1262-1263)', 'Leighton, Robert', '2004-07-22', 27, 'https://www.gutenberg.org/ebooks/12981', 'en', 10704), +(25721, 'The Foundations of the Origin of Species\nTwo Essays written in 1842 and 1844', 'Darwin, Charles', '2007-09-22', 91, 'https://www.gutenberg.org/ebooks/22728', 'en', 4602), +(25722, 'Biographical Notes on the Pseudonymous Bells', 'Brontë, Charlotte', '1997-01-01', 89, 'https://www.gutenberg.org/ebooks/771', 'en', 10705), +(25723, 'The Dead Command\nFrom the Spanish Los Muertos Mandan', 'Blasco Ibáñez, Vicente', '2008-10-27', 109, 'https://www.gutenberg.org/ebooks/27068', 'en', 480), +(25724, 'Savrola: A Tale of the Revolution in Laurania', 'Churchill, Winston', '2016-01-24', 58, 'https://www.gutenberg.org/ebooks/50906', 'en', 10706), +(25725, 'Travels in Kamtschatka, during the years 1787 and 1788, Volume 2', 'Lesseps, Jean-Baptiste-Barthélemy, baron de', '2015-05-21', 8, 'https://www.gutenberg.org/ebooks/49017', 'en', 9709), +(25726, 'The Bible, Douay-Rheims, Book 30: Baruch\nThe Challoner Revision', NULL, '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/8330', 'en', 10707), +(25727, 'Old-World Japan: Legends of the Land of the Gods', 'Rinder, Frank', '2014-09-15', 132, 'https://www.gutenberg.org/ebooks/46863', 'en', 10708), +(25728, 'George Borrow and His Circle\r\nWherein May Be Found Many Hitherto Unpublished Letters of Borrow and His Friends', 'Shorter, Clement King', '2006-11-12', 23, 'https://www.gutenberg.org/ebooks/19767', 'en', 2192), +(25729, 'La media noche: visión estelar de un momento de guerra', 'Valle-Inclán, Ramón del', '2017-08-28', 21, 'https://www.gutenberg.org/ebooks/55448', 'es', 579), +(25730, 'Colas Breugnon: Récit bourguignon', 'Rolland, Romain', '2009-01-20', 20, 'https://www.gutenberg.org/ebooks/27854', 'fr', 259), +(25731, 'History of Woman Suffrage, Volume I', NULL, '2009-02-07', 187, 'https://www.gutenberg.org/ebooks/28020', 'en', 10709), +(25732, 'La politique du Paraguay\r\nIdentité de cette politique avec celle de la France et de la Grande-Bretagne dans le Rio de La Plata', 'La Poëpe, Claude de', '2010-04-09', 10, 'https://www.gutenberg.org/ebooks/31931', 'fr', 10710), +(25733, 'The Ghost Girl', 'Stacpoole, H. De Vere (Henry De Vere)', '2008-10-21', 23, 'https://www.gutenberg.org/ebooks/26986', 'en', 2530), +(25734, 'Chantry House', 'Yonge, Charlotte M. (Charlotte Mary)', '2005-01-01', 19, 'https://www.gutenberg.org/ebooks/7378', 'en', 378), +(25735, 'Välskärin kertomuksia 3\nSiniset. Pakolainen. Erään nimen varjo.', 'Topelius, Zacharias', '2011-06-05', 39, 'https://www.gutenberg.org/ebooks/36328', 'fi', 10711), +(25736, 'Until Life Do Us Part', 'Marks, Winston K. (Winston Kinney)', '2019-04-15', 63, 'https://www.gutenberg.org/ebooks/59285', 'en', 10712), +(25737, 'Harper\'s Young People, June 27, 1882\nAn Illustrated Weekly', 'Various', '2018-11-26', 0, 'https://www.gutenberg.org/ebooks/58357', 'en', 479), +(25738, 'The Liberation of Italy, 1815-1870', 'Martinengo-Cesaresco, Evelyn Lilian Hazeldine Carrington, contessa', '2004-11-17', 23, 'https://www.gutenberg.org/ebooks/14078', 'en', 999), +(25739, 'Punch, or the London Charivari, Vol. 108, April 27, 1895', 'Various', '2014-01-19', 5, 'https://www.gutenberg.org/ebooks/44708', 'en', 134), +(25740, 'Napoléon et l\'Amérique\r\nHistoire des relations franco-américaines spécialement envisagée au point de vue de l\'influence napoléonienne (1688-1815)', 'Schalck de la Faverie, A. (Alfred)', '2012-04-03', 10, 'https://www.gutenberg.org/ebooks/39360', 'fr', 10713), +(25741, 'Notes and Queries, Number 32, June 8, 1850', 'Various', '2005-06-06', 17, 'https://www.gutenberg.org/ebooks/15996', 'en', 105), +(25742, 'More Conjuring: Simple Tricks for Social Gatherings', 'Hercat', '2010-06-13', 36, 'https://www.gutenberg.org/ebooks/32788', 'en', 1530), +(25743, 'The Taming of Red Butte Western', 'Lynde, Francis', '2005-01-31', 57, 'https://www.gutenberg.org/ebooks/14844', 'en', 315), +(25744, 'Clare Avery: A Story of the Spanish Armada', 'Holt, Emily Sarah', '2007-10-11', 22, 'https://www.gutenberg.org/ebooks/22942', 'en', 10714), +(25745, 'The Little Ball O\' Fire; or, the Life and Adventures of John Marston Hall\r\nThe Works of G. P. R. James, Vol. XV.', 'James, G. P. R. (George Payne Rainsford)', '2015-07-18', 15, 'https://www.gutenberg.org/ebooks/49473', 'en', 1127), +(25746, 'Graham\'s Magazine Vol XXXIII No. 5 November 1848', 'Various', '2010-03-09', 8, 'https://www.gutenberg.org/ebooks/31569', 'en', 380), +(25747, 'The Son of Tarzan', 'Burroughs, Edgar Rice', '2005-08-01', 8, 'https://www.gutenberg.org/ebooks/8754', 'en', 635), +(25748, 'Raftmates: A Story of the Great River', 'Munroe, Kirk', '2006-09-16', 33, 'https://www.gutenberg.org/ebooks/19303', 'en', 3729), +(25749, 'Rhymes of a Red Cross Man', 'Service, Robert W. (Robert William)', '1995-08-01', 94, 'https://www.gutenberg.org/ebooks/315', 'en', 2100), +(25750, 'Punch, or the London Charivari, Volume 1, July 17, 1841', 'Various', '2004-10-05', 20, 'https://www.gutenberg.org/ebooks/13639', 'en', 134), +(25751, 'Memoirs of Service Afloat, During the War Between the States', 'Semmes, Raphael', '2011-01-02', 45, 'https://www.gutenberg.org/ebooks/34827', 'en', 10715), +(25752, 'The Further Adventures of Robinson Crusoe', 'Defoe, Daniel', '2006-01-01', 6, 'https://www.gutenberg.org/ebooks/9686', 'en', 2588), +(25753, 'Skandinaviasta: Novelli-kirja', 'Various', '2007-12-18', 14, 'https://www.gutenberg.org/ebooks/23890', 'fi', 179), +(25754, 'Waynflete', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-08', 16, 'https://www.gutenberg.org/ebooks/43149', 'en', 45), +(25755, 'Funny Big Socks\nBeing the Fifth Book of the Series', 'Barrow, Sarah L.', '2009-08-03', 21, 'https://www.gutenberg.org/ebooks/29596', 'en', 195), +(25756, 'Kaarle ja Sigismund I: Protestanttiko vai katolinen?\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-10-25', 6, 'https://www.gutenberg.org/ebooks/55810', 'fi', 98), +(25757, 'Fifty Years of Railway Life in England, Scotland and Ireland', 'Tatlow, Joseph', '2005-12-13', 33, 'https://www.gutenberg.org/ebooks/17299', 'en', 8176), +(25758, 'The Lost Cabin Mine', 'Niven, Frederick', '2013-10-18', 26, 'https://www.gutenberg.org/ebooks/43975', 'en', 8226), +(25759, 'Turn About Eleanor', 'Kelley, Ethel M. (Ethel May)', '2009-03-29', 24, 'https://www.gutenberg.org/ebooks/28444', 'en', 264), +(25760, 'Torchy As A Pa', 'Ford, Sewell', '2007-02-19', 17, 'https://www.gutenberg.org/ebooks/20629', 'en', 10716), +(25761, 'Spatial Delivery', 'Garrett, Randall', '2019-01-20', 44, 'https://www.gutenberg.org/ebooks/58733', 'en', 6782), +(25762, 'Teddy\'s Button', 'Le Feuvre, Amy', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/10880', 'en', 7579), +(25763, 'Diary of Samuel Pepys — Complete 1669 N.S.', 'Pepys, Samuel', '2004-10-31', 10, 'https://www.gutenberg.org/ebooks/4199', 'en', 201), +(25764, 'A Popular History of France from the Earliest Times, Volume 2', 'Guizot, François', '2004-04-01', 47, 'https://www.gutenberg.org/ebooks/11952', 'en', 624), +(25765, 'The Silent Shore: A Romance', 'Bloundelle-Burton, John', '2016-06-01', 6, 'https://www.gutenberg.org/ebooks/52209', 'en', 137), +(25766, 'Ley, porque V. Magestade ha por bem restituir aos indios do Grão Pará, e Maranhão a liberdade das suas pessoas, e bens etc.', 'Anonymous', '2008-01-15', 8, 'https://www.gutenberg.org/ebooks/24289', 'pt', 10717), +(25767, 'Reina Valera New Testament of the Bible 1602, Book of Matthew', NULL, '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/5877', 'es', 2781), +(25768, 'Annali d\'Italia, vol. 1\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2012-05-15', 37, 'https://www.gutenberg.org/ebooks/39704', 'it', 6107), +(25769, 'Ulrich Schmidel\nDer erste Geschichtschreiber der La Plata-Länder (1535-1555)', 'Lehmann-Nitsche, Robert', '2008-03-21', 19, 'https://www.gutenberg.org/ebooks/24887', 'de', 10718), +(25770, 'Tales and Novels of J. de La Fontaine — Volume 05', 'La Fontaine, Jean de', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/5279', 'en', 2629), +(25771, 'Fur Farming\r\nA book of Information about Fur Bearing Animals, Enclosures, Habits, Care, etc.', 'Harding, A. R. (Arthur Robert)', '2010-10-02', 28, 'https://www.gutenberg.org/ebooks/33830', 'en', 10719), +(25772, 'L\'Atelier de Marie-Claire', 'Audoux, Marguerite', '2018-12-19', 40, 'https://www.gutenberg.org/ebooks/58501', 'fr', 9539), +(25773, 'The Bronze Eagle: A Story of the Hundred Days', 'Orczy, Emmuska Orczy, Baroness', '2008-07-03', 62, 'https://www.gutenberg.org/ebooks/25955', 'en', 10720), +(25774, 'Early American Poetry 1610-1820: A List of Works in the New York Public Library', NULL, '2014-02-19', 2, 'https://www.gutenberg.org/ebooks/44962', 'en', 10721), +(25775, 'Annali d\'Italia, vol. 7\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2018-07-20', 13, 'https://www.gutenberg.org/ebooks/57549', 'it', 6107), +(25776, 'Tartuffe: Viisinäytöksinen huvinäytelmä', 'Molière', '2016-08-15', 5, 'https://www.gutenberg.org/ebooks/52807', 'fi', 907), +(25777, 'Αγαμέμνων', 'Aeschylus', '2012-04-25', 47, 'https://www.gutenberg.org/ebooks/39536', 'el', 704), +(25778, '關尹子', 'Yin, Xi, active 6th century B.C.', '2008-04-25', 10, 'https://www.gutenberg.org/ebooks/25169', 'zh', 10722), +(25779, 'Golden Lads', 'Gleason, Helen Hayes', '2006-08-28', 23, 'https://www.gutenberg.org/ebooks/19131', 'en', 449), +(25780, 'Whole Body Counters', 'Woodburn, John H.', '2015-08-06', 7, 'https://www.gutenberg.org/ebooks/49641', 'en', 10723), +(25781, 'The White Road to Verdun', 'Burke, Kathleen', '2005-10-25', 17, 'https://www.gutenberg.org/ebooks/16945', 'en', 93), +(25782, 'The Origin and Permanent Value of the Old Testament', 'Kent, Charles Foster', '2005-07-01', 35, 'https://www.gutenberg.org/ebooks/8566', 'en', 10724), +(25783, 'Summa Theologica, Part I-II (Pars Prima Secundae)\nFrom the Complete American Edition', 'Thomas, Aquinas, Saint', '2006-03-01', 254, 'https://www.gutenberg.org/ebooks/17897', 'en', 10725), +(25784, 'The Brass Bottle', 'Anstey, F.', '2009-12-16', 48, 'https://www.gutenberg.org/ebooks/30689', 'en', 7087), +(25785, 'Bacteria\r\nEspecially as they are related to the economy of nature, to industrial processes, and to the public health', 'Newman, George, Sir', '2015-04-25', 7, 'https://www.gutenberg.org/ebooks/48793', 'en', 10726), +(25786, 'The Number \"e\"', 'Nemiroff, Robert J.', '1994-04-01', 83, 'https://www.gutenberg.org/ebooks/127', 'en', 1044), +(25787, 'The Book-Lovers\' Anthology', NULL, '2014-08-17', 20, 'https://www.gutenberg.org/ebooks/46609', 'en', 10727), +(25788, 'The Great Round World and What Is Going On In It, Vol. 1, No. 55, November 25, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-07-02', 13, 'https://www.gutenberg.org/ebooks/16179', 'en', 1), +(25789, 'Framley Parsonage', 'Trollope, Anthony', '2001-10-01', 131, 'https://www.gutenberg.org/ebooks/2860', 'en', 10728), +(25790, 'The Life of Cicero, Volume II.', 'Trollope, Anthony', '2009-05-03', 42, 'https://www.gutenberg.org/ebooks/28676', 'en', 10729), +(25791, 'Steel Traps\r\nDescribes the Various Makes and Tells How to Use Them, Also Chapters on Care of Pelts, Etc.', 'Harding, A. R. (Arthur Robert)', '2010-11-07', 97, 'https://www.gutenberg.org/ebooks/34229', 'en', 1904), +(25792, 'The Raisin Industry\r\nA practical treatise on the raisin grapes, their history, culture and curing', 'Eisen, Gustavus A.', '2017-05-26', 15, 'https://www.gutenberg.org/ebooks/54790', 'en', 10730), +(25793, 'The Philanderers', 'Mason, A. E. W. (Alfred Edward Woodley)', '2004-07-30', 16, 'https://www.gutenberg.org/ebooks/13057', 'en', 61), +(25794, 'The Online World', 'De Presno, Odd', '1993-09-01', 69, 'https://www.gutenberg.org/ebooks/80', 'en', 2599), +(25795, 'Mother Earth, Vol. 1 No. 3, May 1906\nMonthly Magazine Devoted to Social Science and Literature', 'Various', '2008-11-14', 76, 'https://www.gutenberg.org/ebooks/27262', 'en', 7969), +(25796, 'Vikram and the Vampire: Classic Hindu Tales of Adventure, Magic, and Romance', 'Burton, Richard Francis, Sir', '2000-11-01', 194, 'https://www.gutenberg.org/ebooks/2400', 'en', 10731), +(25797, 'His Majesty Baby and Some Common People', 'Maclaren, Ian', '2013-09-15', 8, 'https://www.gutenberg.org/ebooks/43727', 'en', 179), +(25798, 'One Purple Hope!', 'Hasse, Henry', '2010-02-17', 19, 'https://www.gutenberg.org/ebooks/31307', 'en', 26), +(25799, 'My Home in the Field of Honor', 'Huard, Frances Wilson', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/12185', 'en', 449), +(25800, 'The Sacred Herb', 'Hume, Fergus', '2017-09-27', 39, 'https://www.gutenberg.org/ebooks/55642', 'en', 1079), +(25801, 'Adventures Among the Red Indians\r\nRomantic Incidents and Perils Amongst the Indians of North and South America', 'Wright, Sidney Harry', '2010-12-16', 18, 'https://www.gutenberg.org/ebooks/34675', 'en', 10732), +(25802, 'Fissure of the Anus and Fistula in Ano', 'Adler, Lewis H., Jr.', '2014-11-17', 18, 'https://www.gutenberg.org/ebooks/47387', 'en', 10733), +(25803, 'The Substance of Faith Allied with Science (6th Ed.)\nA Catechism for Parents and Teachers', 'Lodge, Oliver, Sir', '2015-10-27', 23, 'https://www.gutenberg.org/ebooks/50330', 'en', 2713), +(25804, 'The Old Folks\' Party\n1898', 'Bellamy, Edward', '2007-09-21', 17, 'https://www.gutenberg.org/ebooks/22710', 'en', 770), +(25805, 'The Fat of the Land: The Story of an American Farm', 'Streeter, John Williams', '2005-08-13', 11, 'https://www.gutenberg.org/ebooks/16525', 'en', 2757), +(25806, 'Mary Slessor of Calabar: Pioneer Missionary', 'Livingstone, W. P. (William Pringle)', '2005-09-01', 36, 'https://www.gutenberg.org/ebooks/8906', 'en', 10734), +(25807, 'Yvonne Müller', 'Flake, Otto', '2014-07-12', 5, 'https://www.gutenberg.org/ebooks/46255', 'de', 60), +(25808, 'Early Plays — Catiline, the Warrior\'s Barrow, Olaf Liljekrans', 'Ibsen, Henrik', '2004-12-01', 29, 'https://www.gutenberg.org/ebooks/7172', 'en', 798), +(25809, 'The Winning of the Golden Spurs', 'Westerman, Percy F. (Percy Francis)', '2011-05-16', 24, 'https://www.gutenberg.org/ebooks/36122', 'en', 10735), +(25810, 'Tunnustus: Novelli', 'Gorky, Maksim', '2016-07-01', 11, 'https://www.gutenberg.org/ebooks/52467', 'fi', 147), +(25811, 'The Expositor\'s Bible: Ezra, Nehemiah, and Esther', 'Adeney, Walter F. (Walter Frederic)', '2012-06-09', 36, 'https://www.gutenberg.org/ebooks/39956', 'en', 10736), +(25812, 'Tri Noveloj', 'Irving, Washington', '2007-04-20', 18, 'https://www.gutenberg.org/ebooks/21195', 'eo', 50), +(25813, 'Four Max Carrados Detective Stories', 'Bramah, Ernest', '2006-12-08', 20, 'https://www.gutenberg.org/ebooks/20047', 'en', 2242), +(25814, 'Shoshone-Bannock Subsistence and Society', 'Murphy, Robert F. (Robert Francis)', '2012-02-15', 22, 'https://www.gutenberg.org/ebooks/38884', 'en', 10737), +(25815, 'Punch, Or The London Charivari, Volume 102, January 30, 1892', 'Various', '2004-12-06', 3, 'https://www.gutenberg.org/ebooks/14272', 'en', 134), +(25816, 'Every-day Science: Volume 6. The Conquest of Nature', 'Williams, Edward Huntington', '2013-12-24', 10, 'https://www.gutenberg.org/ebooks/44502', 'en', 6285), +(25817, 'Flint and Feather: Collected Verse', 'Johnson, E. Pauline', '2004-06-24', 46, 'https://www.gutenberg.org/ebooks/5625', 'en', 8), +(25818, 'Selections from Saint-Simon', 'Saint-Simon, Louis de Rouvroy, duc de', '2018-09-18', 20, 'https://www.gutenberg.org/ebooks/57929', 'fr', 1247), +(25819, 'J. S. Le Fanu\'s Ghostly Tales, Volume 2', 'Le Fanu, Joseph Sheridan', '2004-03-01', 53, 'https://www.gutenberg.org/ebooks/11700', 'en', 531), +(25820, 'Montaigne and Shakspere', 'Robertson, J. M. (John Mackinnon)', '2008-05-20', 19, 'https://www.gutenberg.org/ebooks/25535', 'en', 10738), +(25821, 'Of Stegner\'s Folly', 'Shaver, Richard S.', '2010-05-29', 29, 'https://www.gutenberg.org/ebooks/32582', 'en', 26), +(25822, 'The Native Races [of the Pacific states], Volume 1, Wild Tribes\r\nThe Works of Hubert Howe Bancroft, Volume 1', 'Bancroft, Hubert Howe', '2012-10-15', 44, 'https://www.gutenberg.org/ebooks/41070', 'en', 10739), +(25823, 'Journal of a Trip to California\nAcross the Continent from Weston, Mo., to Weber Creek, Cal., in the Summer of 1850', 'Smith, Charles W.', '2010-08-16', 11, 'https://www.gutenberg.org/ebooks/33450', 'en', 10740), +(25824, 'The American Bee Journal. Vol. XVII. No. 14. April 6, 1881', 'Various', '2019-02-25', 4, 'https://www.gutenberg.org/ebooks/58961', 'en', 2825), +(25825, 'The Water Goats, and Other Troubles', 'Butler, Ellis Parker', '1998-04-01', 26, 'https://www.gutenberg.org/ebooks/1285', 'en', 637), +(25826, 'Katinka Rabe: Kirja lapsesta', 'Kallas, Aino Krohn', '2018-05-08', 5, 'https://www.gutenberg.org/ebooks/57115', 'fi', 175), +(25827, 'The Ornithosauria\r\nAn elementary study of the bones of Pterodactyles made from fossil remains found in the Cambridge Upper Greensand, and arranged in the Woodwardian Museum of the University of Cambridge', 'Seeley, H. G. (Harry Govier)', '2016-07-27', 10, 'https://www.gutenberg.org/ebooks/52655', 'en', 10741), +(25828, 'Salomy Jane', 'Harte, Bret', '2005-02-27', 28, 'https://www.gutenberg.org/ebooks/15192', 'en', 109), +(25829, 'Die Analyse des Zufalls', 'Timerding, H. E. (Heinrich Emil)', '2011-06-04', 17, 'https://www.gutenberg.org/ebooks/36310', 'de', 2410), +(25830, 'Memorabilia Mathematica; or, the Philomath\'s Quotation-Book', NULL, '2014-01-22', 29, 'https://www.gutenberg.org/ebooks/44730', 'en', 8240), +(25831, 'Struggling Upward, or Luke Larkin\'s Luck', 'Alger, Horatio, Jr.', '2004-04-01', 57, 'https://www.gutenberg.org/ebooks/5417', 'en', 3242), +(25832, 'The History of England, from the Accession of\r\nJames II, vol1, chapter 03', 'Macaulay, Thomas Babington Macaulay, Baron', '2007-01-05', 34, 'https://www.gutenberg.org/ebooks/20275', 'en', 3001), +(25833, 'Household Gods\r\nA Comedy', 'Crowley, Aleister', '2004-11-14', 172, 'https://www.gutenberg.org/ebooks/14040', 'en', 1088), +(25834, 'Renascence: A Book of Verse', 'Crane, Walter', '2016-12-22', 17, 'https://www.gutenberg.org/ebooks/53787', 'en', 532), +(25835, 'A Winter Nosegay: Being Tales for Children at Christmastide', 'Crane, Walter', '2012-04-03', 19, 'https://www.gutenberg.org/ebooks/39358', 'en', 388), +(25836, 'The Americans', 'Schoonmaker, Edwin Davies', '2012-10-30', 4, 'https://www.gutenberg.org/ebooks/41242', 'en', 10742), +(25837, 'A Kentucky Cardinal: A Story', 'Allen, James Lane', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11532', 'en', 1996), +(25838, 'Titus Andronicus', 'Shakespeare, William', '2008-06-05', 12, 'https://www.gutenberg.org/ebooks/25707', 'fr', 7282), +(25839, 'The Military Sketch-Book, Vol. 2 (of 2)\r\nReminiscences of seventeen years in the service abroad and at home', 'Maginn, William', '2018-06-14', 14, 'https://www.gutenberg.org/ebooks/57327', 'en', 10743), +(25840, 'Cathedral Cities of France', 'Marshall, Hester', '2012-08-01', 20, 'https://www.gutenberg.org/ebooks/40390', 'en', 10744), +(25841, 'A Republic Without a President, and Other Stories', 'Ward, Herbert D. (Herbert Dickinson)', '2010-09-07', 19, 'https://www.gutenberg.org/ebooks/33662', 'en', 179), +(25842, 'The Lights of the Church and the Light of Science\r\nEssay #6 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 16, 'https://www.gutenberg.org/ebooks/2632', 'en', 1315), +(25843, 'Visual Signaling', 'United States. Army. Signal Corps', '2013-08-20', 19, 'https://www.gutenberg.org/ebooks/43515', 'en', 10745), +(25844, 'The Mermaid\'s Prophecy\nand Other Songs Relating to Queen Dagmar', 'Borrow, George', '2009-05-15', 21, 'https://www.gutenberg.org/ebooks/28824', 'en', 8), +(25845, 'A Book of Fruits and Flowers', 'Anonymous', '2004-08-23', 77, 'https://www.gutenberg.org/ebooks/13265', 'en', 10746), +(25846, 'Barlaam and Ioasaph', 'John of Damascus, Saint', '1996-12-01', 67, 'https://www.gutenberg.org/ebooks/749', 'en', 10747), +(25847, 'The Yellow Phantom\nA Judy Bolton Mystery', 'Sutton, Margaret', '2015-01-16', 31, 'https://www.gutenberg.org/ebooks/47989', 'en', 454), +(25848, 'De Canibus Britannicis: Of Englishe Dogges', 'Caius, John', '2008-10-26', 13, 'https://www.gutenberg.org/ebooks/27050', 'en', 10748), +(25849, 'The Rover Boys on the Plains; Or, The Mystery of Red Rock Ranch', 'Stratemeyer, Edward', '2008-08-03', 18, 'https://www.gutenberg.org/ebooks/26182', 'en', 3946), +(25850, 'Slaves of Freedom', 'Dawson, Coningsby', '2017-08-31', 3, 'https://www.gutenberg.org/ebooks/55470', 'en', 109), +(25851, 'The Adventures of the Eleven Cuff-Buttons\r\nBeing one of the exciting episodes in the career of the famous detective Hemlock Holmes, as recorded by his friend Dr. Watson', 'Thierry, James Francis', '2010-01-31', 20, 'https://www.gutenberg.org/ebooks/31135', 'en', 128), +(25852, 'The Bible, Douay-Rheims, Book 08: Ruth\r\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8308', 'en', 4924), +(25853, 'The River Motor Boat Boys on the Amazon; Or, The Secret of Cloud Island', 'Gordon, Harry', '2015-10-01', 4, 'https://www.gutenberg.org/ebooks/50102', 'en', 10749), +(25854, 'Λουκιανός - Άπαντα, Τόμος Τρίτος', 'Lucian, of Samosata', '2009-02-07', 41, 'https://www.gutenberg.org/ebooks/28018', 'el', 1635), +(25855, 'No Defense, Volume 1.', 'Parker, Gilbert', '2004-08-01', 5, 'https://www.gutenberg.org/ebooks/6292', 'en', 61), +(25856, 'Across the Prairie in a Motor Caravan\nA 3,000 Mile Tour by Two Englishwomen on Behalf of Religious Education', 'Sayle, Iris Eugenie Friend', '2010-11-26', 12, 'https://www.gutenberg.org/ebooks/34447', 'en', 10750), +(25857, 'How To Ski and How Not To', 'Caulfeild, Vivian', '2014-06-21', 14, 'https://www.gutenberg.org/ebooks/46067', 'en', 10751), +(25858, '六韜', 'Lü, Shang', '2005-01-01', 26, 'https://www.gutenberg.org/ebooks/7340', 'zh', 7055), +(25859, 'Voltaire\'s Romances, Complete in One Volume', 'Voltaire', '2011-03-17', 59, 'https://www.gutenberg.org/ebooks/35595', 'en', 58), +(25860, 'Artists\' Wives', 'Daudet, Alphonse', '2007-09-05', 43, 'https://www.gutenberg.org/ebooks/22522', 'en', 179), +(25861, 'Au clair de la dune', 'Hannon, Théodore', '2015-08-29', 15, 'https://www.gutenberg.org/ebooks/49813', 'fr', 8), +(25862, 'Punch, or the London Charivari, Vol. 159, 1920-09-01', 'Various', '2005-09-18', 10, 'https://www.gutenberg.org/ebooks/16717', 'en', 134), +(25863, 'Doctor Bolus and His Patients', 'Unknown', '2010-04-07', 15, 'https://www.gutenberg.org/ebooks/31909', 'en', 195), +(25864, 'Dictionnaire de nos fautes contre la langue française', 'Rinfret, Raoul', '2013-12-05', 16, 'https://www.gutenberg.org/ebooks/44354', 'fr', 10752), +(25865, 'The War Terror', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 35, 'https://www.gutenberg.org/ebooks/5073', 'en', 128), +(25866, 'Mr. Grex of Monte Carlo', 'Oppenheim, E. Phillips (Edward Phillips)', '2007-02-17', 10, 'https://www.gutenberg.org/ebooks/20611', 'en', 6336), +(25867, 'The Eventful History of the Mutiny and Piratical Seizure of H.M.S. Bounty: Its Cause and Consequences', 'Barrow, John, Sir', '2004-12-23', 51, 'https://www.gutenberg.org/ebooks/14424', 'en', 10753), +(25868, 'Little Folks\' Christmas Stories and Plays', NULL, '2016-06-03', 3, 'https://www.gutenberg.org/ebooks/52231', 'en', 585), +(25869, 'The Teacher: Essays and Addresses on Education', 'Palmer, George Herbert', '2011-07-17', 34, 'https://www.gutenberg.org/ebooks/36774', 'en', 973), +(25870, 'Eläinten sankareita', 'Seton, Ernest Thompson', '2014-04-01', 5, 'https://www.gutenberg.org/ebooks/45286', 'fi', 4589), +(25871, 'La fabrique de mariages, Vol. 5', 'Féval, Paul', '2018-08-22', 16, 'https://www.gutenberg.org/ebooks/57743', 'fr', 298), +(25872, 'Kazan', 'Curwood, James Oliver', '2003-11-01', 71, 'https://www.gutenberg.org/ebooks/10084', 'en', 2464), +(25873, 'Plashers Mead: A Novel', 'MacKenzie, Compton', '2010-07-20', 36, 'https://www.gutenberg.org/ebooks/33206', 'en', 6875), +(25874, 'Tukkijunkkari: Kertomus Karjalasta', 'Ahrenberg, Jacob', '2012-12-15', 6, 'https://www.gutenberg.org/ebooks/41626', 'fi', 61), +(25875, 'Buddy and Brighteyes Pigg: Bed Time Stories', 'Garis, Howard Roger', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11156', 'en', 10754), +(25876, 'Saturday Night Thoughts\r\nA Series of Dissertations on Spiritual, Historical, and Philosophic Themes', 'Whitney, Orson F. (Orson Ferguson)', '2018-03-06', 17, 'https://www.gutenberg.org/ebooks/56691', 'en', 310), +(25877, 'Half Hours in Bible Lands, Volume 2\nPatriarchs, Kings, and Kingdoms', 'Headley, P. C. (Phineas Camp)', '2008-05-07', 8, 'https://www.gutenberg.org/ebooks/25363', 'en', 6367), +(25878, 'Moderne Probleme', 'Hartmann, Eduard von', '2017-06-30', 9, 'https://www.gutenberg.org/ebooks/55014', 'de', 779), +(25879, 'Pirates and Piracy', 'Herrmann, Oscar', '2010-03-08', 21, 'https://www.gutenberg.org/ebooks/31551', 'en', 10755), +(25880, 'Some Anomalies of the Short Story (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 21, 'https://www.gutenberg.org/ebooks/3384', 'en', 3720), +(25881, 'Outside Inn', 'Kelley, Ethel M. (Ethel May)', '2009-11-16', 18, 'https://www.gutenberg.org/ebooks/30483', 'en', 61), +(25882, 'Henry VI, Part 3', 'Shakespeare, William', '2000-07-01', 58, 'https://www.gutenberg.org/ebooks/2256', 'en', 2613), +(25883, 'Antonio Canova (1757-1822), e l\'arte de\' suoi tempi\r\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Venturi, Adolfo', '2013-07-09', 7, 'https://www.gutenberg.org/ebooks/43171', 'it', 1941), +(25884, 'Norma Kent of the WACS', 'Snell, Roy J. (Roy Judson)', '2015-03-29', 15, 'https://www.gutenberg.org/ebooks/48599', 'en', 1004), +(25885, 'Expositions of Holy Scripture: Romans Corinthians (To II Corinthians, Chap. V)', 'Maclaren, Alexander', '2004-10-05', 47, 'https://www.gutenberg.org/ebooks/13601', 'en', 10756), +(25886, 'Doctor Jones\' Picnic', 'Chapman, S. E. (Samuel E.)', '2008-12-07', 11, 'https://www.gutenberg.org/ebooks/27434', 'en', 26), +(25887, 'The Cruise of the Make-Believes', 'Gallon, Tom', '2014-07-25', 24, 'https://www.gutenberg.org/ebooks/46403', 'en', 1079), +(25888, 'The Last of the Barons — Volume 10', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7724', 'en', 10517), +(25889, 'The Confession: A Novel', 'Gorky, Maksim', '2017-10-27', 36, 'https://www.gutenberg.org/ebooks/55828', 'en', 1377), +(25890, 'De Turkey and De Law\r\nA Comedy in Three Acts', 'Hurston, Zora Neale', '2007-07-25', 27, 'https://www.gutenberg.org/ebooks/22146', 'en', 508), +(25891, 'Mrs. Red Pepper', 'Richmond, Grace S. (Grace Smith)', '2005-07-27', 24, 'https://www.gutenberg.org/ebooks/16373', 'en', 1563), +(25892, 'Falcons of Narabedla', 'Bradley, Marion Zimmer', '2015-11-28', 136, 'https://www.gutenberg.org/ebooks/50566', 'en', 26), +(25893, 'The Boy Nihilist\nor, Young America in Russia', 'Arnold, Allan', '2007-10-20', 20, 'https://www.gutenberg.org/ebooks/23094', 'en', 10757), +(25894, 'The Bread Line: A Story of a Paper', 'Paine, Albert Bigelow', '2010-10-03', 7, 'https://www.gutenberg.org/ebooks/34023', 'en', 10758), +(25895, 'The Christian Mother; or, Notes for Mothers\' Meetings', 'Hoare, Maria Eliza', '2013-03-10', 2, 'https://www.gutenberg.org/ebooks/42291', 'en', 10759), +(25896, '\"Honest Abe\": A Study in Integrity Based on the Early Life of Abraham Lincoln', 'Rothschild, Alonzo', '2015-08-11', 13, 'https://www.gutenberg.org/ebooks/49679', 'en', 10760), +(25897, 'Irish Fairy Tales', NULL, '2010-03-25', 75, 'https://www.gutenberg.org/ebooks/31763', 'en', 3430), +(25898, 'Poems, Vol. IV', 'Howard, Hattie', '2006-08-23', 13, 'https://www.gutenberg.org/ebooks/19109', 'en', 178), +(25899, 'Superior Fishing\r\nOr, the Striped Bass, Trout, and Black Bass of the Northern States', 'Roosevelt, Robert Barnwell', '2017-07-30', 24, 'https://www.gutenberg.org/ebooks/55226', 'en', 10761), +(25900, 'A Reply to Dr. Lightfoot\'s Essays, by the Author of \"Supernatural religion\"', 'Cassels, Walter Richard', '2004-09-11', 15, 'https://www.gutenberg.org/ebooks/13433', 'en', 10561), +(25901, 'The Library of William Congreve', 'Congreve, William', '2008-12-24', 49, 'https://www.gutenberg.org/ebooks/27606', 'en', 10762), +(25902, 'A Journey to the Western Islands of Scotland', 'Johnson, Samuel', '2000-02-01', 130, 'https://www.gutenberg.org/ebooks/2064', 'en', 10763), +(25903, 'The Vegetable Lamb of Tartary: A Curious Fable of the Cotton Plant.\r\nTo Which Is Added a Sketch of the History of Cotton and the Cotton Trade', 'Lee, Henry', '2013-07-28', 11, 'https://www.gutenberg.org/ebooks/43343', 'en', 5504), +(25904, 'Caw! Caw! Or, The Chronicle of Crows, A Tale of the Spring-time', 'R. M.', '2007-08-22', 17, 'https://www.gutenberg.org/ebooks/22374', 'en', 10764), +(25905, 'Marjorie Dean, Post-Graduate', 'Chase, Josephine', '2016-04-07', 10, 'https://www.gutenberg.org/ebooks/51686', 'en', 1655), +(25906, 'The American Missionary — Volume 43, No. 06, June, 1889', 'Various', '2005-06-28', 14, 'https://www.gutenberg.org/ebooks/16141', 'en', 562), +(25907, 'Histoire de la République de Venise (Vol. 1)', 'Daru, Pierre-Antoine-Noël-Bruno, comte', '2014-08-19', 21, 'https://www.gutenberg.org/ebooks/46631', 'fr', 10765), +(25908, 'Crucial Instances', 'Wharton, Edith', '2005-02-01', 83, 'https://www.gutenberg.org/ebooks/7516', 'en', 112), +(25909, 'Critical Miscellanies, Vol. 1, Essay 5: Emerson', 'Morley, John', '2006-11-27', 17, 'https://www.gutenberg.org/ebooks/19935', 'en', 10766), +(25910, 'A Treatise on Physiology and Hygiene\nFor Educational Institutions and General Readers', 'Hutchison, Joseph C. (Joseph Chrisman)', '2010-11-05', 15, 'https://www.gutenberg.org/ebooks/34211', 'en', 3536), +(25911, 'A Sketch of the Life of Brig. Gen. Francis Marion and a History of His Brigade', 'James, William Dobein', '1997-05-01', 101, 'https://www.gutenberg.org/ebooks/923', 'en', 481), +(25912, 'Camp Life in the Woods and the Tricks of Trapping and Trap Making', 'Gibson, W. Hamilton (William Hamilton)', '2005-11-18', 97, 'https://www.gutenberg.org/ebooks/17093', 'en', 1904), +(25913, 'Tuhat ja yksi yötä', NULL, '2015-12-23', 15, 'https://www.gutenberg.org/ebooks/50754', 'fi', 3347), +(25914, 'Cressy', 'Harte, Bret', '2006-03-27', 35, 'https://www.gutenberg.org/ebooks/2858', 'en', 10767), +(25915, 'Joyous Gard', 'Benson, Arthur Christopher', '2007-01-22', 25, 'https://www.gutenberg.org/ebooks/20423', 'en', 20), +(25916, 'The Elder Son Explained, and the Romish Church Exposed', 'Church, J. (John)', '2018-12-26', 4, 'https://www.gutenberg.org/ebooks/58539', 'en', 10768), +(25917, 'Thoughts, Moods and Ideals: Crimes of Leisure', 'Lighthall, W. D. (William Douw)', '2005-01-06', 12, 'https://www.gutenberg.org/ebooks/14616', 'en', 28), +(25918, 'Dominique', 'Fromentin, Eugène', '2010-09-24', 15, 'https://www.gutenberg.org/ebooks/33808', 'fr', 48), +(25919, 'Life of Abraham Lincoln, Sixteenth President of the United States', 'Crosby, Frank', '2013-11-12', 18, 'https://www.gutenberg.org/ebooks/44166', 'en', 1716), +(25920, 'The Eye of Zeitoon', 'Mundy, Talbot', '2004-03-01', 55, 'https://www.gutenberg.org/ebooks/5241', 'en', 10769), +(25921, 'The Gospel According to Peter: A Study', 'Cassels, Walter Richard', '2011-09-20', 77, 'https://www.gutenberg.org/ebooks/37494', 'en', 5300), +(25922, 'Wakulla: a story of adventure in Florida', 'Munroe, Kirk', '2003-08-01', 16, 'https://www.gutenberg.org/ebooks/4393', 'en', 10770), +(25923, 'Los pescadores de \"Trépang\"', 'Salgari, Emilio', '2011-06-28', 28, 'https://www.gutenberg.org/ebooks/36546', 'es', 323), +(25924, 'Memoirs of the Marchioness of Pompadour (vol. 1 of 2)', 'Pompadour, Jeanne Antoinette Poisson, marquise de', '2016-05-05', 10, 'https://www.gutenberg.org/ebooks/52003', 'en', 10771), +(25925, 'Premo Cameras, 1914', 'Canadian Kodak Company', '2010-06-30', 15, 'https://www.gutenberg.org/ebooks/33034', 'en', 10772), +(25926, 'Every Man His Own Poet; Or, The Inspired Singer\'s Recipe Book', 'Mallock, W. H. (William Hurrell)', '2007-12-31', 13, 'https://www.gutenberg.org/ebooks/24083', 'en', 8595), +(25927, 'Älä hellitä!', 'Lie, Jonas', '2018-07-23', 7, 'https://www.gutenberg.org/ebooks/57571', 'fi', 7), +(25928, 'Clarissa Harlowe; or the history of a young lady — Volume 6', 'Richardson, Samuel', '2004-02-01', 61, 'https://www.gutenberg.org/ebooks/11364', 'en', 10773), +(25929, 'Slow and Sure: The Story of Paul Hoffman the Young Street-Merchant', 'Alger, Horatio, Jr.', '2008-04-23', 40, 'https://www.gutenberg.org/ebooks/25151', 'en', 2526), +(25930, 'Scott\'s Lady of the Lake', 'Scott, Walter', '2014-06-05', 27, 'https://www.gutenberg.org/ebooks/45888', 'en', 10774), +(25931, 'The Girl from the Marsh Croft', 'Lagerlöf, Selma', '2012-11-20', 25, 'https://www.gutenberg.org/ebooks/41414', 'en', 4184), +(25932, 'The Nameless Island: A Story of Some Modern Robinson Crusoes', 'Westerman, Percy F. (Percy Francis)', '2011-10-07', 13, 'https://www.gutenberg.org/ebooks/37652', 'en', 5634), +(25933, 'The Treasure-Train', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/5087', 'en', 5319), +(25934, 'The Novel on the Tram', 'Pérez Galdós, Benito', '2016-10-18', 13, 'https://www.gutenberg.org/ebooks/53317', 'en', 941), +(25935, 'The Desert Valley', 'Gregory, Jackson', '2005-03-30', 13, 'https://www.gutenberg.org/ebooks/15502', 'en', 315), +(25936, 'The Garret and the Garden; Or, Low Life High Up', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 22, 'https://www.gutenberg.org/ebooks/21737', 'en', 128), +(25937, 'Lettres de mon moulin', 'Daudet, Alphonse', '2011-07-18', 61, 'https://www.gutenberg.org/ebooks/36780', 'fr', 4), +(25938, 'Diary of Samuel Pepys — Volume 34: March/April 1664-65', 'Pepys, Samuel', '2004-11-30', 11, 'https://www.gutenberg.org/ebooks/4155', 'en', 2197), +(25939, 'Nine O\'Clock Talks', 'Kellogg, Frederic B.', '2014-03-31', 6, 'https://www.gutenberg.org/ebooks/45272', 'en', 1130), +(25940, 'A viagem da Índia: poemeto em dois cantos', 'Costa, Fernandes', '2008-01-11', 47, 'https://www.gutenberg.org/ebooks/24245', 'pt', 8), +(25941, 'Stories of Great Americans for Little Americans', 'Eggleston, Edward', '2003-11-01', 118, 'https://www.gutenberg.org/ebooks/10070', 'en', 10775); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(25942, 'Dandy Dick: A Play in Three Acts', 'Pinero, Arthur Wing', '2012-09-07', 16, 'https://www.gutenberg.org/ebooks/40700', 'en', 1281), +(25943, 'A Drama on the Seashore', 'Balzac, Honoré de', '1998-08-01', 26, 'https://www.gutenberg.org/ebooks/1427', 'en', 58), +(25944, 'The Art of Illustration\n2nd ed.', 'Blackburn, Henry', '2010-05-10', 48, 'https://www.gutenberg.org/ebooks/32320', 'en', 2020), +(25945, 'Tales and Stories\nNow First Collected', 'Shelley, Mary Wollstonecraft', '2018-03-01', 127, 'https://www.gutenberg.org/ebooks/56665', 'en', 137), +(25946, 'The Belton Estate', 'Trollope, Anthony', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/4969', 'en', 9807), +(25947, '論衡', 'Wang, Chong', '2008-05-09', 23, 'https://www.gutenberg.org/ebooks/25397', 'zh', 1493), +(25948, 'Description of a New Vespertilionine Bat from Yucatan\nAuthor\'s Edition, extracted from Bulletin of the American\nMuseum of Natural History, Vol. IX, September 28, 1897', 'Allen, J. A. (Joel Asaph)', '2008-09-03', 6, 'https://www.gutenberg.org/ebooks/26512', 'en', 10776), +(25949, 'Le nabab, tome II', 'Daudet, Alphonse', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12727', 'fr', 3075), +(25950, 'Beobachtungen über Oesterreichs Aufklärung und Litteratur', 'Blumauer, Aloys', '2011-04-23', 26, 'https://www.gutenberg.org/ebooks/35939', 'de', 10777), +(25951, 'Bill Biddon, Trapper; or, Life in the Northwest', 'Ellis, Edward Sylvester', '2013-02-09', 23, 'https://www.gutenberg.org/ebooks/42057', 'en', 315), +(25952, 'The Divine Comedy by Dante, Illustrated, Paradise, Volume 3', 'Dante Alighieri', '2004-08-02', 16, 'https://www.gutenberg.org/ebooks/8798', 'en', 365), +(25953, 'A Hazard of New Fortunes — Volume 5', 'Howells, William Dean', '2004-10-23', 16, 'https://www.gutenberg.org/ebooks/3370', 'en', 1660), +(25954, 'The Sign of Silence', 'Le Queux, William', '2009-11-15', 14, 'https://www.gutenberg.org/ebooks/30477', 'en', 128), +(25955, 'By Force of Impulse: A Drama in Five Acts', 'Vogt, Harry V.', '2013-07-10', 3, 'https://www.gutenberg.org/ebooks/43185', 'en', 402), +(25956, 'A Loyal Little Red-Coat: A Story of Child-life in New York a Hundred Years Ago', 'Ogden, Ruth', '2017-02-26', 12, 'https://www.gutenberg.org/ebooks/54132', 'en', 3133), +(25957, 'Shakespeare\'s England', 'Winter, William', '2011-01-28', 7, 'https://www.gutenberg.org/ebooks/35105', 'en', 776), +(25958, 'Pinnock\'s improved edition of Dr. Goldsmith\'s History of Rome\r\n to which is prefixed an introduction to the study of Roman history, and a great variety of valuable information added throughout the work, on the manners, institutions, and antiquities of the Romans; with numerous biographical and historical notes; and questions for examination at the end of each section.\r\n By Wm. C. Taylor.', 'Goldsmith, Oliver', '2005-07-29', 16, 'https://www.gutenberg.org/ebooks/16387', 'en', 6793), +(25959, 'Valda Berättelser\r\nWith Notes and Vocabulary', 'Lagerlöf, Selma', '2016-03-13', 29, 'https://www.gutenberg.org/ebooks/51440', 'sv', 10778), +(25960, 'Selected Letters of Saint Jane Frances de Chantal', 'Chantal, Jeanne-Françoise de, Saint', '2015-12-02', 42, 'https://www.gutenberg.org/ebooks/50592', 'en', 10779), +(25961, 'The Wings of Icarus: Being the Life of one Emilia Fletcher', 'Alma-Tadema, Laurence', '2005-12-08', 16, 'https://www.gutenberg.org/ebooks/17255', 'en', 258), +(25962, 'The Unknown Masterpiece\n1845', 'Balzac, Honoré de', '2007-10-17', 174, 'https://www.gutenberg.org/ebooks/23060', 'en', 2118), +(25963, 'Tartuffe; Or, The Hypocrite', 'Molière', '2009-04-03', 129, 'https://www.gutenberg.org/ebooks/28488', 'en', 907), +(25964, 'Mysteries of Paris — Volume 02', 'Sue, Eugène', '2004-10-01', 7, 'https://www.gutenberg.org/ebooks/6602', 'en', 560), +(25965, 'Aunt Crete\'s Emancipation', 'Hill, Grace Livingston', '2014-12-04', 80, 'https://www.gutenberg.org/ebooks/47525', 'en', 3305), +(25966, 'The Comet, and Other Verses', 'Dix, Irving Sidney', '2013-03-05', 2, 'https://www.gutenberg.org/ebooks/42265', 'en', 178), +(25967, 'Plays and Puritans', 'Kingsley, Charles', '2002-03-01', 17, 'https://www.gutenberg.org/ebooks/3142', 'en', 10780), +(25968, 'Poésies', 'Lautréamont, comte de', '2005-11-03', 26, 'https://www.gutenberg.org/ebooks/16989', 'fr', 8), +(25969, 'Αμλέτος', 'Shakespeare, William', '2010-03-27', 31, 'https://www.gutenberg.org/ebooks/31797', 'el', 1298), +(25970, 'Souvenirs d\'une actrice (2/3)', 'Fusil, Louise', '2008-09-28', 10, 'https://www.gutenberg.org/ebooks/26720', 'fr', 10781), +(25971, 'Selected English Letters (XV - XIX Centuries)', NULL, '2004-06-01', 57, 'https://www.gutenberg.org/ebooks/12515', 'en', 8604), +(25972, 'Marks\' first lessons in geometry\r\nIn two parts. Objectively presented, and designed for the use of primary classes in grammar schools, academies, etc.', 'Marks, Bernhard', '2017-03-08', 21, 'https://www.gutenberg.org/ebooks/54300', 'en', 10782), +(25973, 'Mexico and Her People of To-day\nAn Account of the Customs, Characteristics, Amusements, History and Advancement of the Mexicans, and the Development and Resources of Their Country', 'Winter, Nevin O. (Nevin Otto)', '2019-08-21', 39, 'https://www.gutenberg.org/ebooks/60135', 'en', NULL), +(25974, 'The Dog', 'Youatt, William', '2005-12-01', 22, 'https://www.gutenberg.org/ebooks/9478', 'en', 1636), +(25975, 'Peach Blossom Shangri-la: Tao Hua Yuan Ji', 'Tao, Qian', '2000-02-01', 57, 'https://www.gutenberg.org/ebooks/2090', 'zh', 10783), +(25976, 'Stories of Boys and Girls Who Loved the Saviour\nA Token for Children', 'Janeway, James', '2009-12-10', 12, 'https://www.gutenberg.org/ebooks/30645', 'en', 10784), +(25977, 'Punch, or the London Charivari, Volume 104, March 4, 1893', 'Various', '2007-08-23', 9, 'https://www.gutenberg.org/ebooks/22380', 'en', 134), +(25978, 'Astounding Stories of Super-Science, August 1930', 'Various', '2009-08-23', 124, 'https://www.gutenberg.org/ebooks/29768', 'en', 2527), +(25979, 'Copyright Renewals 1978', 'Library of Congress. Copyright Office', '2016-04-06', 3, 'https://www.gutenberg.org/ebooks/51672', 'en', 4170), +(25980, 'Miss Theodora: A West End Story', 'Reed, Helen Leah', '2011-02-24', 5, 'https://www.gutenberg.org/ebooks/35337', 'en', 1612), +(25981, 'The Tiger of Mysore: A Story of the War with Tippoo Saib', 'Henty, G. A. (George Alfred)', '2006-07-12', 77, 'https://www.gutenberg.org/ebooks/18813', 'en', 10785), +(25982, 'The Evolution of Man — Volume 1', 'Haeckel, Ernst', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6430', 'en', 1315), +(25983, 'Carnet d\'une femme', 'Lano, Pierre de', '2014-12-20', 19, 'https://www.gutenberg.org/ebooks/47717', 'fr', 298), +(25984, 'The House of the Combrays', 'Lenotre, G.', '2005-11-15', 22, 'https://www.gutenberg.org/ebooks/17067', 'en', 2051), +(25985, 'The Indian On The Trail\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 15, 'https://www.gutenberg.org/ebooks/23252', 'en', 223), +(25986, 'The War of Women, Volume 2', 'Dumas, Alexandre', '2016-09-22', 23, 'https://www.gutenberg.org/ebooks/53125', 'en', 1127), +(25987, 'The Crystal Palace: Its Architectural History and Constructive Marvels', 'Fowler, Charles, Jr.', '2013-11-16', 15, 'https://www.gutenberg.org/ebooks/44192', 'en', 10786), +(25988, 'Blackie & Son\'s Books for Young People, Catalogue - 1891', 'Blackie & Son', '2011-09-17', 5, 'https://www.gutenberg.org/ebooks/37460', 'en', 2663), +(25989, 'Personal Memoirs of U. S. Grant, Complete', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 984, 'https://www.gutenberg.org/ebooks/4367', 'en', 1433), +(25990, 'Der Hansische Stahlhof in London\nEin Vortrag, gehalten im Saale des goldenen Sterns zu Bonn am 11. März 1856', 'Pauli, Reinhold', '2008-07-08', 35, 'https://www.gutenberg.org/ebooks/25999', 'de', 10787), +(25991, 'Menticulture; or, the A-B-C of True Living', 'Fletcher, Horace', '2014-02-28', 20, 'https://www.gutenberg.org/ebooks/45040', 'en', 5316), +(25992, 'A Short History of a Long Travel from Babylon to Bethel', 'Crisp, Stephen', '2005-04-29', 7, 'https://www.gutenberg.org/ebooks/15730', 'en', 10788), +(25993, 'Will Weatherhelm: The Yarn of an Old Sailor', 'Kingston, William Henry Giles', '2007-05-16', 14, 'https://www.gutenberg.org/ebooks/21505', 'en', 324), +(25994, 'Portrait Miniatures', 'Williamson, George Charles', '2012-08-19', 24, 'https://www.gutenberg.org/ebooks/40532', 'en', 10789), +(25995, 'Old English Libraries\r\nThe Making, Collection, and Use of Books During the Middle Ages', 'Savage, Ernest Albert', '1999-01-01', 47, 'https://www.gutenberg.org/ebooks/1615', 'en', 10790), +(25996, 'Through a Microscope\r\nSomething of the Science, Together with many Curious Observations Indoor and Out and Directions for a Home-made Microscope.', 'Wells, Samuel', '2011-12-28', 61, 'https://www.gutenberg.org/ebooks/38428', 'en', 10791), +(25997, 'Sister Gertrude: A Tale of the West Riding', 'Sykes, D. F. E.', '2017-01-08', 8, 'https://www.gutenberg.org/ebooks/53919', 'en', 10792), +(25998, 'Textiles, for Commercial, Industrial, and Domestic Arts Schools\r\nAlso Adapted to Those Engaged in Wholesale and Retail Dry Goods, Wool, Cotton, and Dressmaker\'s Trades', 'Dooley, William H. (William Henry)', '2007-12-30', 64, 'https://www.gutenberg.org/ebooks/24077', 'en', 10793), +(25999, 'Plaque No. 6\r\nExp. No. 27, Recorder #20', 'Losey\'s Orchestra', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10242', 'en', 10794), +(26000, 'George Washington; or, Life in America One Hundred Years Ago.', 'Abbott, John S. C. (John Stevens Cabot)', '2018-07-26', 25, 'https://www.gutenberg.org/ebooks/57585', 'en', 7558), +(26001, 'Faery Lands of the South Seas', 'Nordhoff, Charles', '2018-01-30', 13, 'https://www.gutenberg.org/ebooks/56457', 'en', 6743), +(26002, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 353, January 24, 1829', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11390', 'en', 133), +(26003, 'Records of Harvest Mice, Reithrodontomys, from Central America, with Description of a New Subspecies from Nicaragua', 'Jones, J. Knox', '2010-04-24', 5, 'https://www.gutenberg.org/ebooks/32112', 'en', 1214), +(26004, 'In the Sixties', 'Frederic, Harold', '2017-05-23', 9, 'https://www.gutenberg.org/ebooks/54764', 'en', 403), +(26005, 'The Adventures of Tom Sawyer', 'Twain, Mark', '2004-07-01', 7750, 'https://www.gutenberg.org/ebooks/74', 'en', 1080), +(26006, 'Why and How : a hand-book for the use of the W.C.T. unions in Canada', 'Chisholm, Addie', '2004-11-01', 9, 'https://www.gutenberg.org/ebooks/6868', 'en', 10795), +(26007, 'La Becquée', 'Boylesve, René', '2008-11-19', 32, 'https://www.gutenberg.org/ebooks/27296', 'fr', 687), +(26008, 'Birds, Illustrated by Color Photography, Vol. 1, No. 1\r\nJanuary, 1897', 'Various', '2009-10-09', 135, 'https://www.gutenberg.org/ebooks/30221', 'en', 490), +(26009, 'The Expositor\'s Bible: The Prophecies of Jeremiah\nWith a Sketch of His Life and Times', 'Ball, C. J. (Charles James)', '2013-04-26', 24, 'https://www.gutenberg.org/ebooks/42601', 'en', 3169), +(26010, 'Five Weeks in a Balloon\r\nOr, Journeys and Discoveries in Africa by Three Englishmen', 'Verne, Jules', '2002-11-01', 289, 'https://www.gutenberg.org/ebooks/3526', 'en', 323), +(26011, 'Letters of a Dakota Divorcee', 'Burr, Jane', '2008-08-18', 10, 'https://www.gutenberg.org/ebooks/26344', 'en', 10796), +(26012, 'Women Workers in Seven Professions\r\nA Survey of Their Economic Conditions and Prospects', NULL, '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/12171', 'en', 10797), +(26013, 'Troublous Times in Canada\nA History of the Fenian Raids of 1866 and 1870', 'MacDonald, John A. (John Alexander)', '2006-10-22', 21, 'https://www.gutenberg.org/ebooks/19599', 'en', 10798), +(26014, 'The Frontier Angel: A Romance of Kentucky Rangers\' Life', 'Ellis, Edward Sylvester', '2010-12-18', 16, 'https://www.gutenberg.org/ebooks/34681', 'en', 1996), +(26015, 'Mrs. Caudle\'s Curtain Lectures', 'Jerrold, Douglas William', '2004-07-01', 19, 'https://www.gutenberg.org/ebooks/6054', 'en', 564), +(26016, 'The Strand Magazine, Vol. 07, Issue 38, February, 1894\r\nAn Illustrated Monthly', 'Various', '2014-11-17', 23, 'https://www.gutenberg.org/ebooks/47373', 'en', 4041), +(26017, 'A Writer\'s Recollections — Volume 1', 'Ward, Humphry, Mrs.', '2006-02-01', 24, 'https://www.gutenberg.org/ebooks/9820', 'en', 10799), +(26018, 'The Cornet of Horse: A Tale of Marlborough\'s Wars', 'Henty, G. A. (George Alfred)', '2005-12-27', 78, 'https://www.gutenberg.org/ebooks/17403', 'en', 98), +(26019, 'A Matter of Importance', 'Leinster, Murray', '2007-11-26', 29, 'https://www.gutenberg.org/ebooks/23636', 'en', 26), +(26020, 'Advanced Bridge; The Higher Principles of the Game Analysed and Explained', 'Elwell, J. B. (Joseph Bowne)', '2016-02-14', 22, 'https://www.gutenberg.org/ebooks/51216', 'en', 10800), +(26021, 'War Posters Issued by Belligerent and Neutral Nations 1914-1919', NULL, '2011-04-02', 36, 'https://www.gutenberg.org/ebooks/35753', 'en', 10801), +(26022, 'Was ihr wollt', 'Shakespeare, William', '2004-12-01', 33, 'https://www.gutenberg.org/ebooks/7186', 'de', 10802), +(26023, 'Flower of the North: A Modern Romance', 'Curwood, James Oliver', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/4703', 'en', 65), +(26024, 'Taking the Bastile; Or, Pitou the Peasant\r\nA Historical Story of the Great French Revolution', 'Dumas, Alexandre', '2014-04-17', 38, 'https://www.gutenberg.org/ebooks/45424', 'en', 248), +(26025, 'Notes and Queries, Number 56, November 23, 1850', 'Various', '2005-03-13', 11, 'https://www.gutenberg.org/ebooks/15354', 'en', 105), +(26026, 'Susan Gets Ready for Church: A Monologue', 'MacKenzie, Edna I.', '2016-07-04', 13, 'https://www.gutenberg.org/ebooks/52493', 'en', 10803), +(26027, 'Sonnet 43', 'Browning, Elizabeth Barrett', '2007-04-24', 6, 'https://www.gutenberg.org/ebooks/21161', 'en', 8), +(26028, 'The Law of the Sea\r\nA manual of the principles of admiralty law for students, mariners, and ship operators', 'Dalzell, George W. (George Walton)', '2016-11-17', 14, 'https://www.gutenberg.org/ebooks/53541', 'en', 10804), +(26029, 'L\'Odyssée', 'Homer', '2004-12-07', 62, 'https://www.gutenberg.org/ebooks/14286', 'fr', 10805), +(26030, 'West African studies', 'Kingsley, Mary Henrietta', '2012-02-13', 27, 'https://www.gutenberg.org/ebooks/38870', 'en', 10806), +(26031, 'Three Accounts of Peterloo by Eyewitnesses\r\nBishop Stanley, Lord Hylton, John Benjamin Smith; with Bishop Stanley\'s Evidence at the Trial', 'Hylton, William George Hylton Jolliffe, Sir, 1st Baron', '2011-08-07', 29, 'https://www.gutenberg.org/ebooks/37004', 'en', 10807), +(26032, 'Old Virginia and Her Neighbours, Vol. 2 (of 2)', 'Fiske, John', '2017-11-22', 15, 'https://www.gutenberg.org/ebooks/56033', 'en', 7365), +(26033, 'A Novelist on Novels', 'George, W. L.', '2010-05-28', 17, 'https://www.gutenberg.org/ebooks/32576', 'en', 61), +(26034, 'Rainbolt, the Ranger; or, The Aerial Demon of the Mountain', 'Coomes, Oll', '2019-07-03', 84, 'https://www.gutenberg.org/ebooks/59847', 'en', 1357), +(26035, 'The Metal Moon', 'Smith, Everett C.', '2012-10-17', 33, 'https://www.gutenberg.org/ebooks/41084', 'en', 10808), +(26036, 'Encyclopaedia Britannica, 11th Edition, \"Ichthyology\" to \"Independence\"\r\nVolume 14, Slice 3', 'Various', '2012-07-07', 38, 'https://www.gutenberg.org/ebooks/40156', 'en', 1081), +(26037, 'Bygone Beliefs: Being a Series of Excursions in the Byways of Thought', 'Redgrove, H. Stanley (Herbert Stanley)', '1998-04-01', 36, 'https://www.gutenberg.org/ebooks/1271', 'en', 7276), +(26038, 'Seller of the Sky', 'Dryfoos, Dave', '2019-03-01', 23, 'https://www.gutenberg.org/ebooks/58995', 'en', 26), +(26039, 'Tante Toni und ihre Bande', 'Brochowska, Alberta von', '2008-01-23', 27, 'https://www.gutenberg.org/ebooks/24413', 'de', 10809), +(26040, 'The Atlantic Monthly, Volume 02, No. 10, August, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10626', 'en', 1227), +(26041, 'The Story of Louie', 'Onions, Oliver', '2011-10-24', 29, 'https://www.gutenberg.org/ebooks/37838', 'en', 61), +(26042, 'Punch, or the London Charivari, Volume 103, September 3, 1892', 'Various', '2005-02-25', 4, 'https://www.gutenberg.org/ebooks/15166', 'en', 134), +(26043, 'The Flower Beneath the Foot\r\nBeing a record of the early life of St. Laura de Nazianzi and the times in which she lived', 'Firbank, Ronald', '2019-04-11', 56, 'https://www.gutenberg.org/ebooks/59249', 'en', 4583), +(26044, 'Civics and Health', 'Allen, William H. (WIlliam Harvey)', '2007-05-08', 17, 'https://www.gutenberg.org/ebooks/21353', 'en', 295), +(26045, 'The Secret Passage', 'Hume, Fergus', '2003-10-01', 45, 'https://www.gutenberg.org/ebooks/4531', 'en', 3511), +(26046, 'Our Little Czecho-Slovak Cousin', 'Winlow, Clara Vostrovsky', '2014-05-08', 11, 'https://www.gutenberg.org/ebooks/45616', 'en', 10810), +(26047, 'The Tigress', 'Warner, Anne', '2011-08-28', 18, 'https://www.gutenberg.org/ebooks/37236', 'en', 109), +(26048, 'The Arena, Volume 4, No. 21, August, 1891', 'Various', '2007-01-04', 23, 'https://www.gutenberg.org/ebooks/20281', 'en', 883), +(26049, 'Eine deutsche Frau im Innern Deutsch-Ostafrikas\nElf Jahre nach Tagebuchblättern erzählt', 'Prince, Magdalene', '2016-12-20', 9, 'https://www.gutenberg.org/ebooks/53773', 'de', 1649), +(26050, 'The Valley', 'Stockham, Richard', '2010-06-08', 11, 'https://www.gutenberg.org/ebooks/32744', 'en', 26), +(26051, 'British Bees\r\nAn Introduction into the Studies of the Natural History and Economy of the Bees Indigenous to the British Isles', 'Shuckard, William Edward', '2017-12-18', 11, 'https://www.gutenberg.org/ebooks/56201', 'en', 10811), +(26052, 'The American Family Robinson\nor, The Adventures of a Family lost in the Great Desert of the West', 'Belisle, D. W. (David W.)', '2008-02-15', 13, 'https://www.gutenberg.org/ebooks/24621', 'en', 676), +(26053, 'I Love You, California\r\nMarch Song', NULL, '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/10414', 'en', 7243), +(26054, 'The Blue Raider: A Tale of Adventure in the Southern Seas', 'Strang, Herbert', '2012-07-28', 481, 'https://www.gutenberg.org/ebooks/40364', 'en', 323), +(26055, 'The Story of Evolution', 'McCabe, Joseph', '1997-09-01', 27, 'https://www.gutenberg.org/ebooks/1043', 'en', 5893), +(26056, 'The Inheritors', 'Ford, Ford Madox', '2005-02-03', 112, 'https://www.gutenberg.org/ebooks/14888', 'en', 26), +(26057, 'The Alternative: A Separate Nationality; or, The Africanization of the South', 'Holcombe, William H. (William Henry)', '2010-09-10', 16, 'https://www.gutenberg.org/ebooks/33696', 'en', 8784), +(26058, 'Mémoires du maréchal Marmont, duc de Raguse (3/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2009-09-17', 7, 'https://www.gutenberg.org/ebooks/30013', 'fr', 1169), +(26059, 'De koraal-eilanden: fragment uit het dagboek van een natuuronderzoeker\r\nDe Aarde en haar Volken, 1875', 'Darwin, Charles', '2015-01-29', 6, 'https://www.gutenberg.org/ebooks/48109', 'nl', 5680), +(26060, 'The World\'s Great Men of Music: Story-Lives of Master Musicians', 'Brower, Harriette', '2004-08-25', 132, 'https://www.gutenberg.org/ebooks/13291', 'en', 5339), +(26061, 'Rahanvaihtajat', 'Sinclair, Upton', '2017-04-17', 10, 'https://www.gutenberg.org/ebooks/54556', 'fi', 10812), +(26062, 'Historical Mysteries', 'Lang, Andrew', '2006-06-25', 91, 'https://www.gutenberg.org/ebooks/18679', 'en', 7868), +(26063, 'The Secret House', 'Wallace, Edgar', '2008-08-03', 125, 'https://www.gutenberg.org/ebooks/26176', 'en', 3511), +(26064, 'Lucian the dreamer', 'Fletcher, J. S. (Joseph Smith)', '2017-09-04', 34, 'https://www.gutenberg.org/ebooks/55484', 'en', 230), +(26065, 'The Art of Iugling or Legerdemaine\r\nWherein is Deciphered All the Conueyances of Legerdemaine and Iugling, How They Are Effected, and Wherin They Chiefly Consist; Cautions to Beware of Cheating at Cardes and Dice, the Detection of the Beggerly Art of Alcumistry, and the Foppery of Foolish Cousoning Charmes, All Tending to Mirth and Recreation, Especially for Those That Desire to Haue the Insight and Priuate Practise Thereof', 'Rid, Samuel', '2004-05-01', 139, 'https://www.gutenberg.org/ebooks/12343', 'en', 10813), +(26066, 'Warda: Roman uit het oude Egypte', 'Ebers, Georg', '2013-03-29', 16, 'https://www.gutenberg.org/ebooks/42433', 'nl', 1802), +(26067, 'Changing Winds\nA Novel', 'Ervine, St. John G. (St. John Greer)', '2009-09-04', 12, 'https://www.gutenberg.org/ebooks/29902', 'en', 61), +(26068, 'Undine', 'La Motte-Fouqué, Friedrich Heinrich Karl, Freiherr de', '2003-02-01', 63, 'https://www.gutenberg.org/ebooks/3714', 'en', 3230), +(26069, 'Kadonnut maailma', 'Doyle, Arthur Conan', '2016-04-21', 19, 'https://www.gutenberg.org/ebooks/51818', 'fi', 580), +(26070, 'Histoire d\'un baiser', 'Cim, Albert', '2006-01-29', 9, 'https://www.gutenberg.org/ebooks/17631', 'fr', 298), +(26071, 'A Little Girl to her Flowers in Verse', 'Anonymous', '2007-11-07', 18, 'https://www.gutenberg.org/ebooks/23404', 'en', 859), +(26072, 'Kruunu ja okaita: Romantillinen kertomus suomalais-venäläisestä sodasta 1808-1809', 'Trolle, H. af (Henrik)', '2015-05-11', 12, 'https://www.gutenberg.org/ebooks/48935', 'fi', 890), +(26073, 'The Weavers: a tale of England and Egypt of fifty years ago - Volume 6', 'Parker, Gilbert', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6266', 'en', 9577), +(26074, 'Painted Veils', 'Huneker, James', '2014-10-18', 24, 'https://www.gutenberg.org/ebooks/47141', 'en', 1516), +(26075, 'Runoelmia 1', 'Brummer, F. F.', '2009-01-26', 4, 'https://www.gutenberg.org/ebooks/27898', 'fi', 1171), +(26076, 'Secrets of the Sword', 'Bazancourt, César Lecat, baron de', '2014-06-24', 21, 'https://www.gutenberg.org/ebooks/46093', 'en', 6466), +(26077, 'Encyclopaedia Britannica, 11th Edition, \"Fenton, Edward\" to \"Finistere\"\r\nVolume 10, Slice 3', 'Various', '2011-03-12', 33, 'https://www.gutenberg.org/ebooks/35561', 'en', 1081), +(26078, 'The Diggers: The Australians in France', 'MacGill, Patrick', '2016-01-24', 15, 'https://www.gutenberg.org/ebooks/51024', 'en', 10814), +(26079, 'Was mir das Sternenlicht erzählt: Eine populäre Himmelskunde für die Jugend', 'Erber, Felix', '2018-12-20', 12, 'https://www.gutenberg.org/ebooks/58506', 'de', 1488), +(26080, 'A Wonderful Night; An Interpretation Of Christmas', 'Snowden, James H. (James Henry)', '2005-01-07', 22, 'https://www.gutenberg.org/ebooks/14629', 'en', 949), +(26081, 'Architecture: Gothic and Renaissance', 'Smith, T. Roger (Thomas Roger)', '2010-10-03', 165, 'https://www.gutenberg.org/ebooks/33837', 'en', 6804), +(26082, 'Penelope: or, Love\'s Labour Lost, Vol. 2 (of 3)', 'Scargill, William Pitt', '2013-11-11', 9, 'https://www.gutenberg.org/ebooks/44159', 'en', 45), +(26083, 'The Wreck of the Titan\nor, Futility', 'Robertson, Morgan', '2008-03-20', 171, 'https://www.gutenberg.org/ebooks/24880', 'en', 6077), +(26084, 'The Celtic Magazine, Vol. 1, No. 1, November 1875\r\nA Monthly Periodical Devoted to the Literature, History, Antiquities, Folk Lore, Traditions, and the Social and Material Interests of the Celt at Home and Abroad.', 'Various', '2008-07-02', 94, 'https://www.gutenberg.org/ebooks/25952', 'en', 2075), +(26085, 'Teaching the Child Patriotism', 'Clark, Kate Upson', '2011-07-02', 7, 'https://www.gutenberg.org/ebooks/36579', 'en', 10815), +(26086, 'Le Chat du Neptune', 'Hervilly, Ernest d\'', '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10289', 'fr', 61), +(26087, 'Random Shots from a Rifleman', 'Kincaid, J. (John)', '2014-02-19', 27, 'https://www.gutenberg.org/ebooks/44965', 'en', 6506), +(26088, 'The Smuggler: A Tale. Volumes I-III', 'James, G. P. R. (George Payne Rainsford)', '2012-04-24', 11, 'https://www.gutenberg.org/ebooks/39531', 'en', 5842), +(26089, 'Lowney\'s Cook Book\nIllustrated in Colors', 'Howard, Maria Willett', '2016-08-14', 17, 'https://www.gutenberg.org/ebooks/52800', 'en', 1369), +(26090, 'Thoughts on Religion', 'Romanes, George John', '2005-10-25', 17, 'https://www.gutenberg.org/ebooks/16942', 'en', 2713), +(26091, 'Une page d\'amour', 'Zola, Émile', '2005-07-01', 32, 'https://www.gutenberg.org/ebooks/8561', 'fr', 607), +(26092, 'Sketches New and Old', 'Twain, Mark', '2004-06-27', 229, 'https://www.gutenberg.org/ebooks/3189', 'en', 1426), +(26093, 'Lauluja Anakreonilta, ynnä myös Laulu Sapfolta', 'Anacreon', '2015-08-07', 7, 'https://www.gutenberg.org/ebooks/49646', 'fi', 10816), +(26094, 'Hayslope Grange\nA Tale of the Civil War', 'Leslie, Emma', '2006-08-28', 18, 'https://www.gutenberg.org/ebooks/19136', 'en', 2521), +(26095, 'The Prose Tales of Alexander Pushkin', 'Pushkin, Aleksandr Sergeevich', '2017-07-29', 151, 'https://www.gutenberg.org/ebooks/55219', 'en', 4078), +(26096, 'New Vegetarian Dishes', 'Bowdich, Mrs.', '2008-12-27', 60, 'https://www.gutenberg.org/ebooks/27639', 'en', 149), +(26097, 'Treasure Island', 'Stevenson, Robert Louis', '2006-02-26', 4635, 'https://www.gutenberg.org/ebooks/120', 'en', 3828), +(26098, 'Pioneer Imprints from Fifty States', 'Trienens, Roger J.', '2015-04-26', 9, 'https://www.gutenberg.org/ebooks/48794', 'en', 10817), +(26099, 'When Wilderness Was King\nA Tale of the Illinois Country', 'Parrish, Randall', '2006-03-01', 56, 'https://www.gutenberg.org/ebooks/17890', 'en', 8288), +(26100, 'The Reverberator', 'James, Henry', '2005-02-01', 60, 'https://www.gutenberg.org/ebooks/7529', 'en', 607), +(26101, 'Stradella', 'Crawford, F. Marion (Francis Marion)', '2007-11-03', 12, 'https://www.gutenberg.org/ebooks/23299', 'en', 10818), +(26102, 'The Adventures of a Bear, and a Great Bear Too', 'Elwes, Alfred', '2009-05-03', 8, 'https://www.gutenberg.org/ebooks/28671', 'en', 76), +(26103, 'A Sappho of Green Springs', 'Harte, Bret', '2006-05-30', 34, 'https://www.gutenberg.org/ebooks/2867', 'en', 315), +(26104, 'Secret History Revealed By Lady Peggy O\'Malley', 'Williamson, C. N. (Charles Norris)', '2006-09-17', 18, 'https://www.gutenberg.org/ebooks/19304', 'en', 109), +(26105, 'The Beasts of Tarzan', 'Burroughs, Edgar Rice', '2005-08-01', 13, 'https://www.gutenberg.org/ebooks/8753', 'en', 580), +(26106, 'Pedal and Path: Across the Continent Awheel and Afoot', 'Thayer, George B. (George Burton)', '2015-07-18', 10, 'https://www.gutenberg.org/ebooks/49474', 'en', 10819), +(26107, 'The Revelation of Saint John', 'John, the Apostle, Saint', '2007-10-01', 9, 'https://www.gutenberg.org/ebooks/22945', 'en', 5644), +(26108, 'The Owl and the Pussycat', 'Lear, Edward', '2007-12-01', 14, 'https://www.gutenberg.org/ebooks/23897', 'en', 1801), +(26109, 'Everybody\'s Business is Nobody\'s Business', 'Defoe, Daniel', '2006-01-01', 7, 'https://www.gutenberg.org/ebooks/9681', 'en', 10307), +(26110, 'Cymbeline', 'Shakespeare, William', '2000-07-01', 26, 'https://www.gutenberg.org/ebooks/2269', 'en', 3502), +(26111, 'Πρωταγόρας', 'Plato', '2011-01-02', 17, 'https://www.gutenberg.org/ebooks/34820', 'el', 7533), +(26112, 'Young Adventure: A Book of Poems', 'Benét, Stephen Vincent', '1995-08-01', 164, 'https://www.gutenberg.org/ebooks/312', 'en', 178), +(26113, 'Automata Old and New', 'Cooke, Conrad William', '2017-10-26', 14, 'https://www.gutenberg.org/ebooks/55817', 'en', 10820), +(26114, 'Old Rail Fence Corners: The A. B. C\'s. of Minnesota History', NULL, '2007-07-30', 23, 'https://www.gutenberg.org/ebooks/22179', 'en', 10821), +(26115, 'Getting to know Spain', 'Day, Dee', '2009-08-03', 9, 'https://www.gutenberg.org/ebooks/29591', 'en', 1514), +(26116, 'The Readjustment', 'Irwin, Will', '2009-03-29', 6, 'https://www.gutenberg.org/ebooks/28443', 'en', 109), +(26117, 'A Journey in Southeastern Mexico', 'Harper, Henry Howard', '2013-10-18', 33, 'https://www.gutenberg.org/ebooks/43972', 'en', 10822), +(26118, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 3 of 9]', 'Shakespeare, William', '2015-11-27', 25, 'https://www.gutenberg.org/ebooks/50559', 'en', 1088), +(26119, 'Babylonian and Assyrian Literature', NULL, '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/10887', 'en', 10823), +(26120, 'Hell: Warm Words on the Cheerful and Comforting Doctrine of Eternal Damnation', 'Ingersoll, Robert Green', '2011-10-10', 27, 'https://www.gutenberg.org/ebooks/37699', 'en', 5036), +(26121, 'Pleasing Poetry and Pictures: For the Mind and the Eye', NULL, '2019-01-20', 20, 'https://www.gutenberg.org/ebooks/58734', 'en', 4299), +(26122, 'A Popular History of France from the Earliest Times, Volume 5', 'Guizot, François', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/11955', 'en', 624), +(26123, 'Hidden Treasure: The Story of a Chore Boy Who Made the Old Farm Pay', 'Simpson, John Thomas', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5870', 'en', 1190), +(26124, 'Encyclopaedia Britannica, 11th Edition, \"Cat\" to \"Celt\"\r\nVolume 5, Slice 5', 'Various', '2010-07-23', 29, 'https://www.gutenberg.org/ebooks/33239', 'en', 1081), +(26125, 'The Haunting of Low Fennel', 'Rohmer, Sax', '2012-12-14', 53, 'https://www.gutenberg.org/ebooks/41619', 'en', 167), +(26126, 'The First Boke of Moses called Genesis', NULL, '2012-05-15', 31, 'https://www.gutenberg.org/ebooks/39703', 'en', 4202), +(26127, 'Punch, or the London Charivari, Volume 153, August 15, 1917', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11169', 'en', 134), +(26128, 'Das Abendmahl im Zusammenhang mit dem Leben Jesu und der Geschichte des Urchristentums\r\nZweites Heft. Das Messianitäts- und Leidensgeheimnis. Eine Skizze des Lebens Jesu', 'Schweitzer, Albert', '2016-01-11', 12, 'https://www.gutenberg.org/ebooks/50901', 'de', 3460), +(26129, 'Hermione and Her Little Group of Serious Thinkers', 'Marquis, Don', '1997-01-01', 35, 'https://www.gutenberg.org/ebooks/776', 'en', 781), +(26130, 'The Courage of Captain Plum', 'Curwood, James Oliver', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/12388', 'en', 315), +(26131, 'Auf Gottes Wegen', 'Bjørnson, Bjørnstjerne', '2006-11-11', 19, 'https://www.gutenberg.org/ebooks/19760', 'de', 470), +(26132, 'The Fortunes of Hector O\'Halloran, and His Man, Mark Antony O\'Toole', 'Maxwell, W. H. (William Hamilton)', '2014-09-15', 11, 'https://www.gutenberg.org/ebooks/46864', 'en', 2044), +(26133, 'The Bible, Douay-Rheims, Book 37: Jonas\nThe Challoner Revision', NULL, '2005-06-01', 2, 'https://www.gutenberg.org/ebooks/8337', 'en', 6420), +(26134, 'Æsop\'s Fables: A Version for Young Readers', 'Stickney, J. H. (Jenny H.)', '2015-05-21', 138, 'https://www.gutenberg.org/ebooks/49010', 'en', 10824), +(26135, 'Dwellers in Arcady: The Story of an Abandoned Farm', 'Paine, Albert Bigelow', '2009-02-08', 29, 'https://www.gutenberg.org/ebooks/28027', 'en', 5500), +(26136, 'How the Flag Became Old Glory', 'Scott, Emma Look, Mrs.', '2009-01-20', 31, 'https://www.gutenberg.org/ebooks/27853', 'en', 207), +(26137, 'The Modern Ku Klux Klan', 'Fry, Henry P. (Henry Peck)', '2010-11-29', 33, 'https://www.gutenberg.org/ebooks/34478', 'en', 10825), +(26138, 'Pan-Islam', 'Bury, G. Wyman (George Wyman)', '2008-10-20', 35, 'https://www.gutenberg.org/ebooks/26981', 'en', 3852), +(26139, 'Two Tragedies of Seneca: Medea and The Daughters of Troy\r\nRendered into English Verse', 'Seneca, Lucius Annaeus', '2014-06-21', 35, 'https://www.gutenberg.org/ebooks/46058', 'en', 10826), +(26140, 'A Catechism of Familiar Things;\r\nTheir History, and the Events Which Led to Their Discovery.\r\nWith a Short Explanation of Some of the Principal Natural Phenomena. For the Use of Schools and Families. Enlarged and Revised Edition.', 'Anonymous', '2005-09-20', 84, 'https://www.gutenberg.org/ebooks/16728', 'en', 667), +(26141, 'The Cathedrals and Churches of the Rhine', 'Mansfield, M. F. (Milburg Francisco)', '2010-04-10', 16, 'https://www.gutenberg.org/ebooks/31936', 'en', 10827), +(26142, 'Black Bruin: The Biography of a Bear', 'Hawkes, Clarence', '2007-05-09', 12, 'https://www.gutenberg.org/ebooks/21398', 'en', 76), +(26143, 'Buster Bear\'s Twins', 'Burgess, Thornton W. (Thornton Waldo)', '2019-04-14', 39, 'https://www.gutenberg.org/ebooks/59282', 'en', 76), +(26144, 'A Defence of Poetry and Other Essays', 'Shelley, Percy Bysshe', '2004-04-01', 174, 'https://www.gutenberg.org/ebooks/5428', 'en', 472), +(26145, 'The Chinese Opium-Smoker', 'Anonymous', '2018-11-25', 24, 'https://www.gutenberg.org/ebooks/58350', 'en', 10828), +(26146, 'Japhet, in Search of a Father', 'Marryat, Frederick', '2005-06-05', 8, 'https://www.gutenberg.org/ebooks/15991', 'en', 3389), +(26147, 'The Catholic World, Vol. 01, April to September, 1865\r\nA Monthly Eclectic Magazine', 'Various', '2012-04-04', 55, 'https://www.gutenberg.org/ebooks/39367', 'en', 96), +(26148, 'Timeline: A Terran Empire timeline', 'Wilson, Ann', '2008-06-09', 10, 'https://www.gutenberg.org/ebooks/25738', 'en', 26), +(26149, 'The Scriptures Able to Make Us Wise Unto Salvation\nOr the Bible a Sufficient Creed', 'Berick, F. H. (Francis H.)', '2018-06-13', 14, 'https://www.gutenberg.org/ebooks/57318', 'en', 5161), +(26150, 'The Manor House of Lacolle\r\nA description and historical sketch of the Manoir of the Seigniory\r\nof de Beaujeu of Lacolle', 'Lighthall, W. D. (William Douw)', '2005-01-31', 9, 'https://www.gutenberg.org/ebooks/14843', 'en', 10829), +(26151, 'Rolf in the Woods', 'Seton, Ernest Thompson', '1997-10-01', 25, 'https://www.gutenberg.org/ebooks/1088', 'en', 10830), +(26152, 'The History of Prostitution: Its Extent, Causes, and Effects throughout the World', 'Sanger, William W.', '2013-01-19', 38, 'https://www.gutenberg.org/ebooks/41873', 'en', 2611), +(26153, 'My \"Pardner\" and I (Gray Rocks): A Story of the Middle-West', 'Emerson, Willis George', '2016-06-30', 7, 'https://www.gutenberg.org/ebooks/52458', 'en', 10647), +(26154, 'A Civic Biology, Presented in Problems', 'Hunter, George W. (George William)', '2012-06-11', 32, 'https://www.gutenberg.org/ebooks/39969', 'en', 10831), +(26155, 'Index of the Project Gutenberg Works of R. D. Blackmore', 'Blackmore, R. D. (Richard Doddridge)', '2018-10-25', 7, 'https://www.gutenberg.org/ebooks/58162', 'en', 198), +(26156, 'Merely Mary Ann', 'Zangwill, Israel', '2006-12-10', 22, 'https://www.gutenberg.org/ebooks/20078', 'en', 1432), +(26157, 'Poetical Works of Robert Bridges, Volume 6', 'Bridges, Robert', '2018-09-17', 5, 'https://www.gutenberg.org/ebooks/57916', 'en', 1088), +(26158, 'The Deipnosophists; or, Banquet of the Learned of Athenæus', 'Athenaeus, of Naucratis', '2011-07-31', 70, 'https://www.gutenberg.org/ebooks/36921', 'en', 10832), +(26159, 'Riviera Towns', 'Gibbons, Herbert Adams', '2007-07-04', 4, 'https://www.gutenberg.org/ebooks/21996', 'en', 6325), +(26160, 'A Review of the Systems of Ethics Founded on the Theory of Evolution', 'Williams, Cora May', '2012-03-15', 65, 'https://www.gutenberg.org/ebooks/39155', 'en', 4060), +(26161, 'The Boy Ranchers of Puget Sound', 'Bindloss, Harold', '2011-11-22', 14, 'https://www.gutenberg.org/ebooks/38087', 'en', 323), +(26162, 'Critical Miscellanies (Vol. 3 of 3), Essay 5: On Pattison\'s Memoirs', 'Morley, John', '2007-03-17', 34, 'https://www.gutenberg.org/ebooks/20844', 'en', 10833), +(26163, 'Twenty-One Days in India, or, the Tour Of Sir Ali Baba K.C.B.; and, the Teapot Series', 'Aberigh-Mackay, George', '2004-07-31', 52, 'https://www.gutenberg.org/ebooks/13068', 'en', 1975), +(26164, 'Anne\'s House of Dreams', 'Montgomery, L. M. (Lucy Maud)', '1996-05-01', 730, 'https://www.gutenberg.org/ebooks/544', 'en', 796), +(26165, 'Boulogne-Sur-Mer\r\nSt. Patrick\'s Native Town', 'Fleming, William', '2006-06-01', 13, 'https://www.gutenberg.org/ebooks/18480', 'en', 4519), +(26166, 'Les Divins Oracles de Zoroastre, ancien Philosophe Grec, Interpretez en Rime Françoise, par François Habert de Berry; Avec un Commentaire moral sur ledit Zoroastre, en Poesie Françoise, et Latine.', 'Habert, François', '2013-09-14', 75, 'https://www.gutenberg.org/ebooks/43718', 'fr', 10834), +(26167, 'An Account of the Diseases which were most frequent in the British military hospitals in Germany', 'Monro, Donald', '2010-02-21', 16, 'https://www.gutenberg.org/ebooks/31338', 'en', 10835), +(26168, 'Imaginations and Reveries', 'Russell, George William', '2005-05-01', 36, 'https://www.gutenberg.org/ebooks/8105', 'en', 10836), +(26169, 'John Silence, Physician Extraordinary', 'Blackwood, Algernon', '2015-06-16', 93, 'https://www.gutenberg.org/ebooks/49222', 'en', 10837), +(26170, 'The Fugitive', 'Tagore, Rabindranath', '2005-04-01', 48, 'https://www.gutenberg.org/ebooks/7971', 'en', 8230), +(26171, 'The Plattsburg Manual: A Handbook for Military Training', 'Garey, E. B. (Enoch Barton)', '2006-10-16', 48, 'https://www.gutenberg.org/ebooks/19552', 'en', 10838), +(26172, 'The Old Franciscan Missions Of California', 'James, George Wharton', '2004-10-25', 26, 'https://www.gutenberg.org/ebooks/13854', 'en', 10839), +(26173, 'Empire', 'Simak, Clifford D.', '2009-02-28', 118, 'https://www.gutenberg.org/ebooks/28215', 'en', 26), +(26174, 'With Edged Tools', 'Merriman, Henry Seton', '2005-09-01', 25, 'https://www.gutenberg.org/ebooks/8939', 'en', 1079), +(26175, 'The Card, a Story of Adventure in the Five Towns', 'Bennett, Arnold', '2004-07-22', 63, 'https://www.gutenberg.org/ebooks/12986', 'en', 1567), +(26176, 'L\'Illustration, No. 3256, 22 Juillet 1905', 'Various', '2011-04-08', 3, 'https://www.gutenberg.org/ebooks/35798', 'fr', 150), +(26177, 'The Complete Works in Philosophy, Politics and Morals of the late Dr. Benjamin Franklin, Vol. 1 [of 3]', 'Franklin, Benjamin', '2015-02-02', 46, 'https://www.gutenberg.org/ebooks/48136', 'en', 3754), +(26178, 'The Sister Years (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9211', 'en', 13), +(26179, 'Chats on Oriental China', 'Blacker, J. F.', '2015-01-12', 33, 'https://www.gutenberg.org/ebooks/47942', 'en', 10840), +(26180, 'Jane Austen and Her Country-house Comedy', 'Helm, W. H. (William Henry)', '2017-04-18', 18, 'https://www.gutenberg.org/ebooks/54569', 'en', 10841), +(26181, 'The Travels of Sir John Mandeville', 'Mandeville, John, Sir', '1997-01-01', 237, 'https://www.gutenberg.org/ebooks/782', 'en', 10842), +(26182, 'Gypsy\'s Cousin Joy', 'Phelps, Elizabeth Stuart', '2006-06-21', 9, 'https://www.gutenberg.org/ebooks/18646', 'en', 1123), +(26183, 'Die Leiden des jungen Werther', 'Goethe, Johann Wolfgang von', '2006-11-15', 22, 'https://www.gutenberg.org/ebooks/19794', 'de', 4038), +(26184, 'Left Guard Gilbert', 'Barbour, Ralph Henry', '2008-07-29', 10, 'https://www.gutenberg.org/ebooks/26149', 'en', 5031), +(26185, 'Die Dinge, die unendlich uns umkreisen', 'Roth, Eugen', '2014-09-18', 8, 'https://www.gutenberg.org/ebooks/46890', 'de', 4162), +(26186, 'Die Moral des Hotels: Tischgespräche', 'Vehling, Paul', '2016-04-22', 6, 'https://www.gutenberg.org/ebooks/51827', 'de', 10843), +(26187, 'The Wolf Patrol: A Tale of Baden-Powell\'s Boy Scouts', 'Finnemore, John', '2009-12-31', 11, 'https://www.gutenberg.org/ebooks/30810', 'en', 1002), +(26188, 'Donovan Pasha, and Some People of Egypt — Volume 4', 'Parker, Gilbert', '2004-08-01', 26, 'https://www.gutenberg.org/ebooks/6259', 'en', 179), +(26189, 'Chapters in Rural Progress', 'Butterfield, Kenyon L. (Kenyon Leech)', '2008-10-20', 15, 'https://www.gutenberg.org/ebooks/26975', 'en', 10844), +(26190, 'Einige Charaktertypen aus der psychoanalytischen Arbeit', 'Freud, Sigmund', '2009-06-12', 42, 'https://www.gutenberg.org/ebooks/29101', 'de', 3640), +(26191, 'Heart\'s Desire\r\nThe Story of a Contented Town, Certain Peculiar Citizens, and Two Fortunate Lovers\r\nA Novel', 'Hough, Emerson', '2005-02-24', 19, 'https://www.gutenberg.org/ebooks/15159', 'en', 315), +(26192, 'Poems', 'Mansfield, Katherine', '2019-04-14', 42, 'https://www.gutenberg.org/ebooks/59276', 'en', 10845), +(26193, 'The Sky Pilot\'s Great Chase; Or, Jack Ralston\'s Dead Stick Landing', 'Newcomb, Ambrose', '2014-05-11', 5, 'https://www.gutenberg.org/ebooks/45629', 'en', 128), +(26194, 'The Turner Twins', 'Barbour, Ralph Henry', '2011-08-26', 23, 'https://www.gutenberg.org/ebooks/37209', 'en', 153), +(26195, 'The Financier: A Novel', 'Dreiser, Theodore', '2006-02-26', 225, 'https://www.gutenberg.org/ebooks/1840', 'en', 1061), +(26196, 'The Magazine Style-Code', 'Irvine, Leigh H. (Leigh Hadley)', '2012-11-04', 10, 'https://www.gutenberg.org/ebooks/41289', 'en', 10846), +(26197, 'Notes and Queries, Vol. IV, Number 111, December 13, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-04-06', 11, 'https://www.gutenberg.org/ebooks/39393', 'en', 105), +(26198, 'In Friendship\'s Guise', 'Graydon, William Murray', '2005-05-31', 17, 'https://www.gutenberg.org/ebooks/15965', 'en', 10847), +(26199, 'Uncle\'s Dream; and The Permanent Husband', 'Dostoyevsky, Fyodor', '2011-12-06', 83, 'https://www.gutenberg.org/ebooks/38241', 'en', 417), +(26200, 'The Flags of Our Fighting Army\r\nIncluding standards, guidons, colours and drum banners', 'Johnson, Stanley C. (Stanley Currie)', '2018-03-24', 19, 'https://www.gutenberg.org/ebooks/56830', 'en', 1600), +(26201, 'Filippo Lippi', 'Konody, Paul G. (Paul George)', '2013-01-20', 21, 'https://www.gutenberg.org/ebooks/41887', 'en', 10848), +(26202, 'Tales of English Minsters: St. Paul\'s', 'Grierson, Elizabeth W. (Elizabeth Wilson)', '2019-03-10', 9, 'https://www.gutenberg.org/ebooks/59044', 'en', 10849), +(26203, 'The Journal of Electricity, Power and Gas, Volume XX, No. 18, May 2, 1908\nDevoted to the Conversion, Transmission and Distribution of Energy', 'Various', '2018-10-30', 17, 'https://www.gutenberg.org/ebooks/58196', 'en', 10850), +(26204, 'The Brownie of Bodsbeck, and Other Tales (Vol. 1 of 2)', 'Hogg, James', '2012-10-06', 14, 'https://www.gutenberg.org/ebooks/40955', 'en', 1922), +(26205, 'Harvard Classics Volume 28\nEssays English and American', NULL, '2007-06-29', 93, 'https://www.gutenberg.org/ebooks/21962', 'en', 4637), +(26206, 'Declaration of Faith, in Latin and the Original Greek', 'Athanasius, Saint, Patriarch of Alexandria', '2010-05-27', 27, 'https://www.gutenberg.org/ebooks/32549', 'la', 2182), +(26207, 'La prigione; Acqua sul fuoco', 'Morselli, Ercole Luigi', '2019-07-09', 39, 'https://www.gutenberg.org/ebooks/59878', 'it', 10851), +(26208, 'Thomas Jefferson, the Apostle of Americanism', 'Chinard, Gilbert', '2011-11-21', 18, 'https://www.gutenberg.org/ebooks/38073', 'en', 2887), +(26209, 'De Drie Musketiers dl. I en II', 'Dumas, Alexandre', '2012-07-08', 49, 'https://www.gutenberg.org/ebooks/40169', 'nl', 2588), +(26210, 'An Englishman\'s Travels in America\nHis Observations of Life and Manners in the Free and Slave States', 'Benwell, John', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/10619', 'en', 455), +(26211, 'Mountain-Laurel and Maidenhair', 'Alcott, Louisa May', '2011-10-21', 33, 'https://www.gutenberg.org/ebooks/37807', 'en', 10852), +(26212, 'Piru: Historiallinen katsaus pirun alkuperään, elämään ja toimintaan', 'Kujala, Juho', '2006-05-30', 21, 'https://www.gutenberg.org/ebooks/18474', 'fi', 10853), +(26213, 'Indian Games : an historical research', 'Davis, Andrew McFarland', '2004-11-01', 8, 'https://www.gutenberg.org/ebooks/6857', 'en', 10854), +(26214, 'The Family at Misrule', 'Turner, Ethel Sybil', '2015-02-18', 25, 'https://www.gutenberg.org/ebooks/48304', 'en', 3621), +(26215, 'The Gilded Age', 'Warner, Charles Dudley', '2005-09-01', 12, 'https://www.gutenberg.org/ebooks/9023', 'en', 3493), +(26216, 'Human Genome Project, Chromosome Number 19', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3519', 'en', 1385), +(26217, 'The Clock Struck One', 'Hume, Fergus', '2017-10-07', 22, 'https://www.gutenberg.org/ebooks/55689', 'en', 557), +(26218, 'Zur freundlichen Erinnerung', 'Graf, Oskar Maria', '2005-04-01', 28, 'https://www.gutenberg.org/ebooks/7985', 'de', 10855), +(26219, 'Searchlights on Health: Light on Dark Corners\r\nA Complete Sexual Science and a Guide to Purity and Physical Manhood, Advice To Maiden, Wife, And Mother, Love, Courtship, And Marriage', 'Nichols, J. L. (James Lawrence)', '2007-11-24', 40, 'https://www.gutenberg.org/ebooks/23609', 'en', 5443), +(26220, 'The Reformation and the Renaissance (1485-1547)\nSecond Edition', NULL, '2016-02-16', 15, 'https://www.gutenberg.org/ebooks/51229', 'en', 10856), +(26221, 'War Letters of a Public-School Boy', 'Jones, Henry Paul Mainwaring', '2009-07-06', 27, 'https://www.gutenberg.org/ebooks/29333', 'en', 2223), +(26222, 'People Like That: A Novel', 'Bosher, Kate Langley', '2004-07-20', 9, 'https://www.gutenberg.org/ebooks/12972', 'en', 61), +(26223, 'Lucy Maud Montgomery Short Stories, 1902 to 1903', 'Montgomery, L. M. (Lucy Maud)', '2008-03-19', 287, 'https://www.gutenberg.org/ebooks/24874', 'en', 2261), +(26224, 'The Sea Fairies', 'Baum, L. Frank (Lyman Frank)', '2003-08-01', 170, 'https://www.gutenberg.org/ebooks/4358', 'en', 2909), +(26225, 'Use of Mines in Trench Warfare (From the French School of St. Cyr)', 'Army War College (U.S.)', '2019-05-02', 30, 'https://www.gutenberg.org/ebooks/59420', 'en', 10857), +(26226, 'The White Hand and the Black: A Story of the Natal Rising', 'Mitford, Bertram', '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32911', 'en', 1207), +(26227, 'Curiosities of History: Boston, September Seventeenth, 1630-1880', 'Wheildon, William W. (William Willder)', '2011-12-27', 8, 'https://www.gutenberg.org/ebooks/38417', 'en', 10858), +(26228, 'Jacob Martens: Een verhaal uit de zestiende eeuw', 'Hoogewerff, G. C.', '2017-01-08', 9, 'https://www.gutenberg.org/ebooks/53926', 'nl', 98), +(26229, 'Lily Norris\' Enemy', 'Mathews, Joanna H. (Joanna Hooe)', '2014-02-24', 8, 'https://www.gutenberg.org/ebooks/44991', 'en', 1817), +(26230, '禮記', 'Anonymous', '2007-12-27', 23, 'https://www.gutenberg.org/ebooks/24048', 'zh', 3304), +(26231, 'Writings in Connection with the Donatist Controversy', 'Augustine, Saint, Bishop of Hippo', '2014-05-31', 22, 'https://www.gutenberg.org/ebooks/45843', 'en', 10859), +(26232, 'Nunnery life in the Church of England; or, Seventeen years with Father Ignatius', 'Mary Agnes, Sister, O.S.B.', '2018-01-31', 2, 'https://www.gutenberg.org/ebooks/56468', 'en', 10860), +(26233, 'Normandy, Illustrated, Part 3', 'Home, Gordon', '2004-08-12', 19, 'https://www.gutenberg.org/ebooks/8595', 'en', 6545), +(26234, 'Marie Gourdon\nA Romance of the Lower St. Lawrence', 'Ogilvy, Maud', '2006-03-18', 10, 'https://www.gutenberg.org/ebooks/18010', 'en', 10861), +(26235, 'Een Vluchtige Blik op het oude en hedendaagsche Vianen', 'Van Harn, W. J.', '2013-08-02', 4, 'https://www.gutenberg.org/ebooks/43388', 'nl', 10862), +(26236, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 06 (1820)', 'Various', '2015-04-22', 17, 'https://www.gutenberg.org/ebooks/48760', 'en', 57), +(26237, 'Samantha among the Brethren — Volume 5', 'Holley, Marietta', '2004-08-10', 21, 'https://www.gutenberg.org/ebooks/9447', 'en', 10437), +(26238, 'Memories of Childhood\'s Slavery Days', 'Burton, Annie L.', '2006-02-26', 28, 'https://www.gutenberg.org/ebooks/17864', 'en', 125), +(26239, 'The Confession of a Child of the Century — Volume 3', 'Musset, Alfred de', '2003-04-01', 24, 'https://www.gutenberg.org/ebooks/3941', 'en', 58), +(26240, 'The Story of a Tinder-box', 'Tidy, Charles Meymott', '2009-08-22', 19, 'https://www.gutenberg.org/ebooks/29757', 'en', 10863), +(26241, 'The Cape and the Kaffirs: A Diary of Five Years\' Residence in Kaffirland', 'Ward, Mrs.', '2011-02-17', 12, 'https://www.gutenberg.org/ebooks/35308', 'en', 10864), +(26242, 'Birds and All Nature, Vol. 4, No. 6, December 1898\r\nIllustrated by Color Photography', 'Various', '2014-12-20', 7, 'https://www.gutenberg.org/ebooks/47728', 'en', 490), +(26243, 'Kuuriruhtinas ja Raharuhtinas', 'Mühlbach, L. (Luise)', '2009-05-04', 8, 'https://www.gutenberg.org/ebooks/28685', 'fi', 98), +(26244, 'The Wizard', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 49, 'https://www.gutenberg.org/ebooks/2893', 'en', 519), +(26245, 'The Submarine Boys\' Lightning Cruise\nThe Young Kings of the Deep', 'Durham, Victor G.', '2005-11-13', 14, 'https://www.gutenberg.org/ebooks/17058', 'en', 3242), +(26246, 'Song of Myself Selections', 'Whitman, Walt', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12718', 'en', 8), +(26247, 'The Orpheus C. Kerr Papers, Series 1', 'Newell, R. H. (Robert Henry)', '2011-04-19', 9, 'https://www.gutenberg.org/ebooks/35906', 'en', 403), +(26248, 'The Tyranny of Tears: A Comedy in Four Acts', 'Chambers, C. Haddon (Charles Haddon)', '2013-02-11', 10, 'https://www.gutenberg.org/ebooks/42068', 'en', 402), +(26249, 'Poison: A Farce', 'Baker, George M. (George Melville)', '2015-07-18', 11, 'https://www.gutenberg.org/ebooks/49480', 'en', 868), +(26250, 'The Blissylvania Post-Office', 'Taggart, Marion Ames', '2015-03-22', 9, 'https://www.gutenberg.org/ebooks/48552', 'en', 1655), +(26251, '水滸傳', 'Shi, Nai\'an', '2007-12-15', 88, 'https://www.gutenberg.org/ebooks/23863', 'zh', 10865), +(26252, 'The Mill on the Floss', 'Eliot, George', '2006-01-01', 8, 'https://www.gutenberg.org/ebooks/9675', 'en', 48), +(26253, 'The Lieutenant-Governor: A Novel', 'Carryl, Guy Wetmore', '2009-11-10', 9, 'https://www.gutenberg.org/ebooks/30448', 'en', 61), +(26254, 'The Religion of Numa\nAnd Other Essays on the Religion of Ancient Rome', 'Carter, Jesse Benedict', '2006-04-21', 35, 'https://www.gutenberg.org/ebooks/18222', 'en', 10866), +(26255, 'Les derniers jours de Pékin', 'Loti, Pierre', '2009-08-01', 14, 'https://www.gutenberg.org/ebooks/29565', 'fr', 10867), +(26256, 'Encyclopaedia Britannica, 11th Edition, \"Magnetite\" to \"Malt\"\r\nVolume 17, Slice 4', 'Various', '2013-06-01', 26, 'https://www.gutenberg.org/ebooks/42854', 'en', 1081), +(26257, 'The Criminal & the Community', 'Devon, James', '2013-10-20', 11, 'https://www.gutenberg.org/ebooks/43986', 'en', 2839), +(26258, 'Mendel: A Story of Youth', 'Cannan, Gilbert', '2017-06-19', 11, 'https://www.gutenberg.org/ebooks/54931', 'en', 109), +(26259, 'At Sunwich Port, Part 3.\nContents: Chapters 11-15', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10873', 'en', 3991), +(26260, 'Saban kuningatar sekä muita kertomuksia', 'Hamsun, Knut', '2016-10-20', 21, 'https://www.gutenberg.org/ebooks/53328', 'fi', 1606), +(26261, 'Up in the Clouds: Balloon Voyages', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 23, 'https://www.gutenberg.org/ebooks/21708', 'en', 7453), +(26262, 'Hehkuvan kevään maa', 'Haahti, Hilja', '2019-05-26', 5, 'https://www.gutenberg.org/ebooks/59612', 'fi', 175); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(26263, 'Avis pour les religieuses de l\'ordre de l\'Annonciade celeste, fondé à Genes l\'année de notre Salut 1604\r\nR\'imprimés en ladite Ville, & accomodés à la pratique de l\'observance des Constitutions; pour l\'instruction des exercices spirituels, à l\'usage des Monasteres du même Ordre.', 'Ordine della Santissima Annunziata', '2018-08-28', 8, 'https://www.gutenberg.org/ebooks/57788', 'fr', 10868), +(26264, 'The Flying Saucers are Real', 'Keyhoe, Donald E. (Donald Edward)', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5884', 'en', 7726), +(26265, 'Country Sentiment', 'Graves, Robert', '1998-08-01', 42, 'https://www.gutenberg.org/ebooks/1418', 'en', 3557), +(26266, 'The Story of Charles Strange: A Novel. Vol. 3 (of 3)', 'Wood, Henry, Mrs.', '2012-01-20', 22, 'https://www.gutenberg.org/ebooks/38625', 'en', 61), +(26267, 'The Duke\'s Prize; a Story of Art and Heart in Florence', 'Ballou, Maturin M. (Maturin Murray)', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/4956', 'en', 7567), +(26268, 'The Three Cutters', 'Marryat, Frederick', '2007-05-21', 17, 'https://www.gutenberg.org/ebooks/21559', 'en', 324), +(26269, 'Round the World in Eighty Days', 'Verne, Jules', '2010-06-25', 26, 'https://www.gutenberg.org/ebooks/32972', 'en', 323), +(26270, 'A Day with a Tramp, and Other Days', 'Wyckoff, Walter A. (Walter Augustus)', '2019-05-06', 21, 'https://www.gutenberg.org/ebooks/59443', 'en', 10869), +(26271, 'Hygiene: a manual of personal and public health (New Edition)', 'Newsholme, Arthur, Sir', '2019-01-01', 55, 'https://www.gutenberg.org/ebooks/58591', 'en', 10870), +(26272, 'Sea Plunder', 'Stacpoole, H. De Vere (Henry De Vere)', '2016-10-01', 12, 'https://www.gutenberg.org/ebooks/53179', 'en', 3421), +(26273, 'Ueber die Geometrie der alten Aegypter.\r\nVortrag, gehalten in der feierlichen Sitzung der Kaiserlichen Akademie der Wissenschaften am 29. Mai 1884.', 'Weyr, Emil', '2008-03-13', 40, 'https://www.gutenberg.org/ebooks/24817', 'de', 9032), +(26274, 'Buffon\'s Natural History. Volume 07 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-29', 14, 'https://www.gutenberg.org/ebooks/45820', 'en', 871), +(26275, 'The Colonial Clippers', 'Lubbock, Basil', '2016-08-25', 38, 'https://www.gutenberg.org/ebooks/52897', 'en', 10871), +(26276, 'Ferragus, Chief of the Dévorants', 'Balzac, Honoré de', '2004-09-19', 26, 'https://www.gutenberg.org/ebooks/1649', 'en', 58), +(26277, 'A Book of the Cevennes', 'Baring-Gould, S. (Sabine)', '2017-01-11', 13, 'https://www.gutenberg.org/ebooks/53945', 'en', 1117), +(26278, 'Loaded Dice', 'Clark, Ellery H. (Ellery Harding)', '2012-01-02', 10, 'https://www.gutenberg.org/ebooks/38474', 'en', 61), +(26279, 'Give Me Liberty or Give Me Death', 'Henry, Patrick', '1976-12-01', 330, 'https://www.gutenberg.org/ebooks/6', 'en', 429), +(26280, 'The House of Helen', 'Harris, Corra', '2019-08-25', 0, 'https://www.gutenberg.org/ebooks/60169', 'en', NULL), +(26281, 'Marchand de Poison: Les Batailles de la Vie', 'Ohnet, Georges', '2006-03-29', 26, 'https://www.gutenberg.org/ebooks/18073', 'fr', 61), +(26282, 'John Porter Fort: A Memorial, and Personal Reminiscences', 'Fort, John Porter', '2015-04-14', 7, 'https://www.gutenberg.org/ebooks/48703', 'en', 10872), +(26283, 'Late Lyrics and Earlier', 'Hardy, Thomas', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9424', 'en', 54), +(26284, 'Uncle Wiggily in the Woods', 'Garis, Howard Roger', '2006-02-20', 50, 'https://www.gutenberg.org/ebooks/17807', 'en', 10873), +(26285, 'Epistle Sermons, Vol. 3: Trinity Sunday to Advent', 'Luther, Martin', '2009-12-07', 20, 'https://www.gutenberg.org/ebooks/30619', 'en', 5781), +(26286, 'The Paston Letters, A.D. 1422-1509. Volume 5 (of 6)\r\nNew Complete Library Edition', NULL, '2013-03-01', 17, 'https://www.gutenberg.org/ebooks/42239', 'en', 8604), +(26287, 'Recollections of a Long Life: An Autobiography', 'Cuyler, Theodore L. (Theodore Ledyard)', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/12549', 'en', 10874), +(26288, 'The Red Lily — Complete', 'France, Anatole', '2004-10-30', 39, 'https://www.gutenberg.org/ebooks/3922', 'en', 58), +(26289, 'Experiments and Observations on Different Kinds of Air', 'Priestley, Joseph', '2009-08-19', 13, 'https://www.gutenberg.org/ebooks/29734', 'en', 10875), +(26290, 'Judge Elbridge', 'Read, Opie Percival', '2014-08-26', 26, 'https://www.gutenberg.org/ebooks/46699', 'en', 10876), +(26291, 'Contemporary American Composers\nBeing a Study of the Music of This Country, Its Present\nConditions and Its Future, with Critical Estimates and\nBiographies of the Principal Living Composers; and an\nAbundance of Portraits, Fac-simile Musical Autographs, and\nCompositions', 'Hughes, Rupert', '2007-12-10', 58, 'https://www.gutenberg.org/ebooks/23800', 'en', 10877), +(26292, 'The Romaunce of the Sowdone of Babylone and of Ferumbras His Sone Who Conquerede Rome', NULL, '2015-03-19', 11, 'https://www.gutenberg.org/ebooks/48531', 'en', 10878), +(26293, 'Ramuntcho', 'Loti, Pierre', '2006-01-01', 24, 'https://www.gutenberg.org/ebooks/9616', 'en', 10879), +(26294, 'Tea-Cup Reading and Fortune-Telling by Tea Leaves, by a Highland Seer', NULL, '2006-04-24', 346, 'https://www.gutenberg.org/ebooks/18241', 'en', 10880), +(26295, 'The Redheaded Outfield, and Other Baseball Stories', 'Grey, Zane', '1996-01-01', 82, 'https://www.gutenberg.org/ebooks/385', 'en', 61), +(26296, 'Abroad at Home: American Ramblings, Observations, and Adventures of Julian Street', 'Street, Julian', '2011-04-25', 16, 'https://www.gutenberg.org/ebooks/35965', 'en', 6389), +(26297, 'Plays of Near & Far', 'Dunsany, Lord', '2006-09-27', 37, 'https://www.gutenberg.org/ebooks/19393', 'en', 402), +(26298, 'A Treatise of Witchcraft', 'Roberts, Alexander', '2005-12-03', 62, 'https://www.gutenberg.org/ebooks/17209', 'en', 10881), +(26299, 'Birds and All Nature, Vol. 4, No. 4, October 1898\r\nIllustrated by Color Photography', 'Various', '2014-12-07', 12, 'https://www.gutenberg.org/ebooks/47579', 'en', 1584), +(26300, 'Chanteraine', 'Theuriet, André', '2017-06-21', 8, 'https://www.gutenberg.org/ebooks/54952', 'fr', 687), +(26301, 'The Young Train Master', 'Stevenson, Burton Egbert', '2017-11-03', 21, 'https://www.gutenberg.org/ebooks/55880', 'en', 1239), +(26302, 'An Essay on Criticism', 'Oldmixon, Mr. (John)', '2011-02-04', 4, 'https://www.gutenberg.org/ebooks/35159', 'en', 2641), +(26303, 'Aunt Kitty\'s Tales', 'McIntosh, Maria J. (Maria Jane)', '2013-05-29', 24, 'https://www.gutenberg.org/ebooks/42837', 'en', 388), +(26304, 'El sombrero de tres picos\r\nHistoria verdadera de un sucedido que anda en romances escrita ahora tal y como pasó', 'Alarcón, Pedro Antonio de', '2009-07-25', 78, 'https://www.gutenberg.org/ebooks/29506', 'es', 1463), +(26305, 'Index of the Project Gutenberg Works of Bram Stoker', 'Stoker, Bram', '2019-06-03', 36, 'https://www.gutenberg.org/ebooks/59671', 'en', 198), +(26306, 'Die Karikatur im Weltkriege', 'Schulz-Besser, Ernst', '2016-06-10', 11, 'https://www.gutenberg.org/ebooks/52299', 'de', 5749), +(26307, 'Christopher Columbus and the New World of His Discovery — Volume 2', 'Young, Filson', '2004-12-05', 22, 'https://www.gutenberg.org/ebooks/4109', 'en', 2036), +(26308, 'The Young Trail Hunters\r\nOr, the Wild Riders of the Plains. The Veritable Adventures of Hal Hyde and Ned Brown, on Their Journey Across the Great Plains of the South-West', 'Cozzens, Samuel Woodworth', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10810', 'en', 10882), +(26309, 'King-Errant', 'Steel, Flora Annie Webster', '2012-05-25', 4, 'https://www.gutenberg.org/ebooks/39794', 'en', 10883), +(26310, 'The Republic of the Future; or, Socialism a Reality', 'Dodd, Anna Bowman', '2018-02-25', 13, 'https://www.gutenberg.org/ebooks/56639', 'en', 1998), +(26311, 'Pathologie Verbale, ou Lésions de certains mots dans le cours de l\'usage', 'Littré, Emile', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/4935', 'fr', 10884), +(26312, 'The Royal Guide to Wax Flower Modelling', 'Peachey, Emma', '2008-01-08', 29, 'https://www.gutenberg.org/ebooks/24219', 'en', 10885), +(26313, 'The Eldest Son', 'Marshall, Archibald', '2012-01-23', 9, 'https://www.gutenberg.org/ebooks/38646', 'en', 1380), +(26314, 'A Journey into the Interior of the Earth', 'Verne, Jules', '2003-02-01', 304, 'https://www.gutenberg.org/ebooks/3748', 'en', 2399), +(26315, 'Someone to Watch Over Me', 'Gold, H. L. (Horace Leonard)', '2016-04-23', 31, 'https://www.gutenberg.org/ebooks/51844', 'en', 26), +(26316, 'The Abbeys of Great Britain', 'Dixon, H. Claiborne', '2015-05-30', 16, 'https://www.gutenberg.org/ebooks/49087', 'en', 10886), +(26317, 'History of Ancient Pottery: Greek, Etruscan, and Roman. Volume 2 (of 2)', 'Walters, H. B. (Henry Beauchamp)', '2015-02-07', 34, 'https://www.gutenberg.org/ebooks/48155', 'en', 10887), +(26318, 'Gulliver\'s Travels', 'Swift, Jonathan', '2005-11-01', 56, 'https://www.gutenberg.org/ebooks/9272', 'en', 580), +(26319, 'Verso la cuna del mondo: Lettere dall\'India', 'Gozzano, Guido', '2016-01-22', 31, 'https://www.gutenberg.org/ebooks/50996', 'it', 2422), +(26320, 'The Brochure Series of Architectural Illustration, vol. 06, No. 11, November 1900\nThe Work of Sir Christopher Wren', 'Various', '2015-01-09', 5, 'https://www.gutenberg.org/ebooks/47921', 'en', 2140), +(26321, 'Contemporary American Literature\nBibliographies and Study Outlines', 'Rickert, Edith', '2006-06-19', 35, 'https://www.gutenberg.org/ebooks/18625', 'en', 10888), +(26322, 'Song-waves', 'Rand, Theodore H. (Theodore Harding)', '2008-10-14', 11, 'https://www.gutenberg.org/ebooks/26916', 'en', 28), +(26323, 'Venoms: Venomous Animals and Antivenomous Serum-therapeutics', 'Calmette, A. (Albert)', '2016-01-30', 9, 'https://www.gutenberg.org/ebooks/51078', 'en', 10889), +(26324, 'The Traitors', 'Oppenheim, E. Phillips (Edward Phillips)', '2009-06-19', 15, 'https://www.gutenberg.org/ebooks/29162', 'en', 1319), +(26325, 'A Close Encounter: The Marine Landing on Tinian', 'Harwood, Richard', '2015-05-16', 33, 'https://www.gutenberg.org/ebooks/48969', 'en', 4861), +(26326, 'Little Journeys to the Homes of the Great - Volume 13\r\nLittle Journeys to the Homes of Great Lovers', 'Hubbard, Elbert', '2007-11-12', 30, 'https://www.gutenberg.org/ebooks/23458', 'en', 122), +(26327, 'His Lordship\'s Leopard: A Truthful Narration of Some Impossible Facts', 'Wells, David Dwight', '2010-01-06', 21, 'https://www.gutenberg.org/ebooks/30873', 'en', 10890), +(26328, 'The Book of Ballads\r\nEleventh Edition, 1870', 'Martin, Theodore, Sir', '2014-01-30', 13, 'https://www.gutenberg.org/ebooks/44798', 'en', 2529), +(26329, 'The Make-Believe Man', 'Davis, Richard Harding', '1999-07-01', 14, 'https://www.gutenberg.org/ebooks/1823', 'en', 61), +(26330, 'Rules for a Dictionary Catalogue\nU. S. Bureau of Education Special Report on Public Libraries—Part II, Third Edition', 'Cutter, Charles A. (Charles Ammi)', '2019-04-08', 7, 'https://www.gutenberg.org/ebooks/59215', 'en', 10891), +(26331, 'The Anti-Slavery Harp: A Collection of Songs for Anti-Slavery Meetings', NULL, '2003-12-01', 21, 'https://www.gutenberg.org/ebooks/10448', 'en', 4777), +(26332, 'The Quest of the \'Golden Hope\': A Seventeenth Century Story of Adventure', 'Westerman, Percy F. (Percy Francis)', '2011-12-04', 27, 'https://www.gutenberg.org/ebooks/38222', 'en', 324), +(26333, 'The Further Adventures of Mr. Verdant Green, an Oxford Under-Graduate\r\nBeing a Continuation of \"The Adventures of Mr. Verdant Green, an Oxford Freshman\"', 'Bede, Cuthbert', '2012-07-26', 19, 'https://www.gutenberg.org/ebooks/40338', 'en', 10892), +(26334, 'A Good Samaritan', 'Andrews, Mary Raymond Shipman', '2005-05-26', 18, 'https://www.gutenberg.org/ebooks/15906', 'en', 2999), +(26335, 'The Trap', 'Curtis, Betsy', '2010-06-06', 14, 'https://www.gutenberg.org/ebooks/32718', 'en', 3447), +(26336, 'Johnny Ludlow, Third Series', 'Wood, Henry, Mrs.', '2012-10-04', 16, 'https://www.gutenberg.org/ebooks/40936', 'en', 409), +(26337, 'Life of Mary Queen of Scots, Volume 1 (of 2)', 'Bell, Henry Glassford', '2011-08-13', 14, 'https://www.gutenberg.org/ebooks/37058', 'en', 6347), +(26338, 'Brethyn Cartref: Ystraeon Cymreig', 'Jones, T. Gwynn (Thomas Gwynn)', '2018-09-27', 20, 'https://www.gutenberg.org/ebooks/57981', 'cy', 10893), +(26339, 'The Good Girl', 'Anonymous', '2014-04-24', 596, 'https://www.gutenberg.org/ebooks/45478', 'en', 10894), +(26340, 'Journal of a Cavalry Officer; Including the Memorable Sikh Campaign of 1845-1846', 'Humbley, W. W. W. (William Wellington Waterloo)', '2018-03-27', 17, 'https://www.gutenberg.org/ebooks/56853', 'en', 10895), +(26341, 'Nitro-Explosives: A Practical Treatise', 'Sanford, P. Gerald (Percy Gerald)', '2005-03-10', 59, 'https://www.gutenberg.org/ebooks/15308', 'en', 1803), +(26342, 'Jean-Christophe Pariisissa III\r\nVII. Saman katon alla', 'Rolland, Romain', '2019-03-07', 4, 'https://www.gutenberg.org/ebooks/59027', 'fi', 1061), +(26343, 'The Adventures of John Jewitt\nOnly Survivor of the Crew of the Ship Boston During a Captivity of Nearly Three Years Among the Indians of Nootka Sound in Vancouver Island', 'Jewitt, John Rodgers', '2011-11-14', 31, 'https://www.gutenberg.org/ebooks/38010', 'en', 10896), +(26344, 'Know the Truth: A Critique on the Hamiltonian Theory of Limitation\r\nIncluding Some Strictures Upon the Theories of Rev. Henry L. Mansel and Mr. Herbert Spencer', 'Jones, Jesse Henry', '2011-10-27', 9, 'https://www.gutenberg.org/ebooks/37864', 'en', 5456), +(26345, 'The Birthday Party: A Story for Little Folks', 'Optic, Oliver', '2007-06-22', 23, 'https://www.gutenberg.org/ebooks/21901', 'en', 388), +(26346, 'The Bakchesarian Fountain and Other Poems', NULL, '2005-05-01', 37, 'https://www.gutenberg.org/ebooks/8192', 'en', 867), +(26347, 'The Horsewoman: A Practical Guide to Side-Saddle Riding, 2nd. Ed.', 'Hayes, Alice M.', '2008-08-15', 13, 'https://www.gutenberg.org/ebooks/26318', 'en', 10897), +(26348, 'Aesop\'s Fables', 'Aesop', '1992-03-01', 1097, 'https://www.gutenberg.org/ebooks/28', 'en', 4125), +(26349, 'Aus meinem Jugendland', 'Kurz, Isolde', '2017-05-17', 5, 'https://www.gutenberg.org/ebooks/54738', 'de', 9738), +(26350, 'The Great Panjandrum Himself', 'Foote, Samuel', '2006-05-18', 57, 'https://www.gutenberg.org/ebooks/18417', 'en', 2296), +(26351, 'Wissenschaft der Logik — Band 2', 'Hegel, Georg Wilhelm Friedrich', '2004-11-01', 58, 'https://www.gutenberg.org/ebooks/6834', 'de', 902), +(26352, 'Birds and All Nature, Vol 7, No. 3, March 1900\r\nIllustrated by Color Photography', 'Various', '2015-02-26', 26, 'https://www.gutenberg.org/ebooks/48367', 'en', 1584), +(26353, 'A Tramp Abroad', 'Twain, Mark', '2005-09-01', 21, 'https://www.gutenberg.org/ebooks/9040', 'en', 2035), +(26354, 'The Ancient Monuments of North and South America, 2nd ed.', 'Rafinesque, C. S. (Constantine Samuel)', '2009-07-08', 13, 'https://www.gutenberg.org/ebooks/29350', 'en', 10898), +(26355, 'A Backward Glance at Eighty\r\nRecollections & comment', 'Murdock, Charles A. (Charles Albert)', '2004-07-14', 33, 'https://www.gutenberg.org/ebooks/12911', 'en', 6248), +(26356, 'The Midnight Passenger : A Novel', 'Savage, Richard', '2004-07-01', 33, 'https://www.gutenberg.org/ebooks/6008', 'en', 50), +(26357, 'Egyptian Literature\r\nComprising Egyptian tales, hymns, litanies, invocations, the Book of the Dead, and cuneiform writings', NULL, '2009-03-08', 47, 'https://www.gutenberg.org/ebooks/28282', 'en', 6339), +(26358, 'Aventures de Baron de Münchausen', 'Raspe, Rudolf Erich', '2015-11-06', 51, 'https://www.gutenberg.org/ebooks/50398', 'fr', 10899), +(26359, 'Madame Delphine', 'Cable, George Washington', '2006-11-02', 6, 'https://www.gutenberg.org/ebooks/19703', 'en', 4475), +(26360, 'Lyman\'s History of old Walla Walla County, Vol. 1\r\nEmbracing Walla Walla, Columbia, Garfield and Asotin counties', 'Lyman, William Denison', '2014-09-08', 14, 'https://www.gutenberg.org/ebooks/46807', 'en', 10900), +(26361, 'The American Missionary — Volume 39, No. 08, August, 1885', 'Various', '2010-02-03', 8, 'https://www.gutenberg.org/ebooks/31169', 'en', 562), +(26362, 'The Bible, Douay-Rheims, Book 54: 2 Corinthians\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8354', 'en', 7343), +(26363, 'Venezuela, an economic report\r\nPresented by students of the School of Foreign Service, as an aid to the foreign trade of the United States', 'Georgetown University. School of Foreign Service', '2015-05-29', 7, 'https://www.gutenberg.org/ebooks/49073', 'en', 10901), +(26364, 'Four Little Blossoms at Oak Hill School', 'Hawley, Mabel C.', '2009-05-19', 16, 'https://www.gutenberg.org/ebooks/28878', 'en', 31), +(26365, 'Trans-Himalaya: Discoveries and Adventurers in Tibet. Vol. 2 (of 2)', 'Hedin, Sven Anders', '2013-08-24', 29, 'https://www.gutenberg.org/ebooks/43549', 'en', 10902), +(26366, 'Brighter Britain! (Volume 2 of 2)\nor Settler and Maori in Northern New Zealand', 'Hay, W. Delisle (William Delisle)', '2016-01-18', 3, 'https://www.gutenberg.org/ebooks/50962', 'en', 10903), +(26367, 'The Descent of Man and Other Stories', 'Wharton, Edith', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9286', 'en', 179), +(26368, 'The Moon Endureth: Tales and Fancies', 'Buchan, John', '1996-11-01', 79, 'https://www.gutenberg.org/ebooks/715', 'en', 179), +(26369, 'Grain and Chaff from an English Manor', 'Savory, Arthur Herbert', '2004-08-21', 14, 'https://www.gutenberg.org/ebooks/13239', 'en', 10904), +(26370, 'Niagara: An Aboriginal Center of Trade', 'Porter, Peter A. (Peter Augustus)', '2010-04-12', 3, 'https://www.gutenberg.org/ebooks/31955', 'en', 10905), +(26371, 'Mutineer', 'Shea, Robert', '2009-06-21', 19, 'https://www.gutenberg.org/ebooks/29196', 'en', 26), +(26372, 'Kopciuszek\r\nBaśń fantastyczna', 'Grimm, Jacob', '2009-02-10', 33, 'https://www.gutenberg.org/ebooks/28044', 'pl', 1007), +(26373, 'The Evolution of Love', 'Lucka, Emil', '2006-02-07', 100, 'https://www.gutenberg.org/ebooks/17699', 'en', 5136), +(26374, 'George Borrow\nTimes Literary Supplement, 10th July 1903', 'Seccombe, Thomas', '2010-01-07', 3, 'https://www.gutenberg.org/ebooks/30887', 'en', 53), +(26375, 'Conversation\nWhat to Say and How to Say it', 'Conklin, Mary Greer', '2009-01-18', 18, 'https://www.gutenberg.org/ebooks/27830', 'en', 3977), +(26376, 'The Fall of Man; Or, The Loves of the Gorillas\r\nA Popular Scientific Lecture Upon the Darwinian Theory of Development by Sexual Selection', 'White, Richard Grant', '2018-11-24', 20, 'https://www.gutenberg.org/ebooks/58333', 'en', 4602), +(26377, 'Stories of Comedy', NULL, '2006-12-30', 12, 'https://www.gutenberg.org/ebooks/20229', 'en', 1697), +(26378, 'Captain Carey; or, Fighting the Indians at Pine Ridge', 'Lounsberry, Lionel', '2016-07-20', 9, 'https://www.gutenberg.org/ebooks/52609', 'en', 10906), +(26379, 'The Small House at Allington', 'Trollope, Anthony', '2003-10-01', 184, 'https://www.gutenberg.org/ebooks/4599', 'en', 55), +(26380, 'New Italian sketches', 'Symonds, John Addington', '2008-02-26', 35, 'https://www.gutenberg.org/ebooks/24689', 'en', 1896), +(26381, 'Une femme d\'argent', 'Malot, Hector', '2005-01-27', 13, 'https://www.gutenberg.org/ebooks/14820', 'fr', 61), +(26382, 'The Memoirs of Jacques Casanova de Seingalt, Vol. IV (of VI), \"Adventures In The South\"\r\nThe First Complete and Unabridged English Translation, Illustrated with Old Engravings', 'Casanova, Giacomo', '2012-03-29', 17, 'https://www.gutenberg.org/ebooks/39304', 'en', 4164), +(26383, 'Ragged Homes and How to Mend Them', 'Bayly, Mrs. (Mary)', '2018-10-14', 16, 'https://www.gutenberg.org/ebooks/58101', 'en', 10907), +(26384, 'Heroic Romances of Ireland, Translated into English Prose and Verse — Volume 2', 'Leahy, Arthur Herbert', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/5679', 'en', 193), +(26385, 'Excavating a Husband', 'Wallis, Ella Bell', '2018-09-25', 18, 'https://www.gutenberg.org/ebooks/57975', 'en', 10908), +(26386, 'A Spanish Anthology \r\nA Collection of Lyrics from the Thirteenth Century Down to the Present Time', NULL, '2013-01-10', 20, 'https://www.gutenberg.org/ebooks/41810', 'en', 7911), +(26387, 'Traditions of the North American Indians, Vol. 2', 'Jones, James Athearn', '2007-03-15', 28, 'https://www.gutenberg.org/ebooks/20827', 'en', 1749), +(26388, 'The Brothers\' War', 'Reed, John C. (John Calvin)', '2011-10-31', 90, 'https://www.gutenberg.org/ebooks/37890', 'en', 2574), +(26389, 'The Camp Fire Girls at Driftwood Heights', 'Sanderson, Margaret Love', '2018-05-13', 5, 'https://www.gutenberg.org/ebooks/57149', 'en', 622), +(26390, 'An African Adventure', 'Marcosson, Isaac Frederick', '2008-05-23', 32, 'https://www.gutenberg.org/ebooks/25569', 'en', 6548), +(26391, 'Kongens Fald', 'Jensen, Johannes V. (Johannes Vilhelm)', '2011-08-02', 53, 'https://www.gutenberg.org/ebooks/36942', 'da', 10909), +(26392, 'Historical Romances: Under the Red Robe, Count Hannibal, A Gentleman of France', 'Weyman, Stanley John', '2012-03-14', 6, 'https://www.gutenberg.org/ebooks/39136', 'en', 98), +(26393, 'Gargantua and Pantagruel, Illustrated, Book 1', 'Rabelais, François', '2005-05-01', 103, 'https://www.gutenberg.org/ebooks/8166', 'en', 10910), +(26394, 'The Girl\'s Own Paper, Vol. XX, No. 981, October 15, 1898', 'Various', '2015-06-20', 13, 'https://www.gutenberg.org/ebooks/49241', 'en', 563), +(26395, 'American Historical and Literary Curiosities, Part 12.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 23, 'https://www.gutenberg.org/ebooks/7912', 'en', 453), +(26396, 'Punky Dunk and the Mouse', 'Anonymous', '2006-10-13', 18, 'https://www.gutenberg.org/ebooks/19531', 'en', 10911), +(26397, 'The End of the Tether', 'Conrad, Joseph', '2006-01-09', 50, 'https://www.gutenberg.org/ebooks/527', 'en', 1391), +(26398, 'Anecdotes of the Great War, Gathered from European Sources', NULL, '2015-03-01', 15, 'https://www.gutenberg.org/ebooks/48393', 'en', 5749), +(26399, 'Nach Amerika! Ein Volksbuch. Sechster Band', 'Gerstäcker, Friedrich', '2009-10-19', 17, 'https://www.gutenberg.org/ebooks/30289', 'de', 10912), +(26400, 'On The Art of Reading', 'Quiller-Couch, Arthur', '2005-08-22', 73, 'https://www.gutenberg.org/ebooks/16579', 'en', 6644), +(26401, 'Concord Days', 'Alcott, Amos Bronson', '2014-07-07', 29, 'https://www.gutenberg.org/ebooks/46209', 'en', 10913), +(26402, 'Correspondance, 1812-1876 — Tome 2', 'Sand, George', '2004-10-23', 31, 'https://www.gutenberg.org/ebooks/13837', 'fr', 4127), +(26403, 'The Mysterious Wanderer; Vol. II', 'Reeve, Sophia', '2010-12-12', 5, 'https://www.gutenberg.org/ebooks/34629', 'en', 61), +(26404, 'The End of the Rainbow', 'MacGregor, Mary Esther Miller', '2009-03-08', 12, 'https://www.gutenberg.org/ebooks/28276', 'en', 10914), +(26405, 'The Spread Eagle and Other Stories', 'Morris, Gouverneur', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9888', 'en', 61), +(26406, 'Science and the Infinite; or, Through a Window in the Blank Wall', 'Klein, Sydney T. (Sydney Turner)', '2008-06-29', 14, 'https://www.gutenberg.org/ebooks/25931', 'en', 2713), +(26407, 'Clover', 'Coolidge, Susan', '2005-05-08', 121, 'https://www.gutenberg.org/ebooks/15798', 'en', 1625), +(26408, 'Thomas Stanley: His Original Lyrics, Complete, In Their Collated Readings of 1647, 1651, 1657.\r\nWith an Introduction, Textual Notes, a List of Editions, an Appendix of Translations, and a Portrait.', 'Stanley, Thomas', '2010-06-27', 9, 'https://www.gutenberg.org/ebooks/32986', 'en', 466), +(26409, 'Ask a Foolish Question', 'Sheckley, Robert', '2010-10-11', 156, 'https://www.gutenberg.org/ebooks/33854', 'en', 10915), +(26410, 'History of Greece, Volume 03 (of 12)', 'Grote, George', '2018-12-29', 14, 'https://www.gutenberg.org/ebooks/58565', 'en', 6424), +(26411, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 373, Supplementary Number', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11338', 'en', 133), +(26412, 'The Oppressed English', 'Hay, Ian', '2012-11-23', 9, 'https://www.gutenberg.org/ebooks/41448', 'en', 7115), +(26413, 'The New Sunday Liquor Law Vindicated', 'Ritchie, J. Ewing (James Ewing)', '2016-08-21', 7, 'https://www.gutenberg.org/ebooks/52863', 'en', 8776), +(26414, 'Mortomley\'s Estate: A Novel. Vol. 2 (of 3)', 'Riddell, J. H., Mrs.', '2012-04-28', 20, 'https://www.gutenberg.org/ebooks/39552', 'en', 9215), +(26415, 'Scientific American, Vol. XXXIX.—No. 24. [New Series.], December 14, 1878\r\nA Weekly Journal of Practical Information, Art, Science, Mechanics, Chemistry, and Manufactures', 'Various', '2012-01-03', 12, 'https://www.gutenberg.org/ebooks/38480', 'en', 352), +(26416, 'Da importancia da Historia Universal Philosophica na esphera dos conhecimentos humanos', 'Pimentel, Alberto', '2010-07-03', 14, 'https://www.gutenberg.org/ebooks/33068', 'pt', 7868), +(26417, 'L\'Histoire de France racontée par les Contemporains (Tome 3/4))\r\nExtraits des Chroniques, des Mémoires et des Documents originaux, avec des sommaires et des résumés chronologiques', NULL, '2014-02-14', 8, 'https://www.gutenberg.org/ebooks/44906', 'fr', 6457), +(26418, 'Historic Doubts Relative To Napoleon Buonaparte', 'Whately, Richard', '2006-03-30', 33, 'https://www.gutenberg.org/ebooks/18087', 'en', 840), +(26419, 'The Mayor of Casterbridge', 'Hardy, Thomas', '2006-03-11', 591, 'https://www.gutenberg.org/ebooks/143', 'en', 8003), +(26420, 'The Lock and Key Library: Classic Mystery and Detective Stories: Modern English', NULL, '2005-06-04', 466, 'https://www.gutenberg.org/ebooks/2038', 'en', 61), +(26421, 'Plague Ship', 'Norton, Andre', '2005-10-23', 200, 'https://www.gutenberg.org/ebooks/16921', 'en', 1564), +(26422, 'Common Diseases of Farm Animals', 'Craig, Robert Alexander', '2005-07-01', 37, 'https://www.gutenberg.org/ebooks/8502', 'en', 10916), +(26423, 'The Mentor: Butterflies, Vol. 3, Num. 12, Serial No. 88, August 2, 1915', 'Holland, W. J. (William Jacob)', '2015-08-05', 7, 'https://www.gutenberg.org/ebooks/49625', 'en', 10917), +(26424, 'The Seminole Indians of Florida\r\nFifth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1883-84, Government Printing Office, Washington, 1887, pages 469-532', 'MacCauley, Clay', '2006-09-01', 47, 'https://www.gutenberg.org/ebooks/19155', 'en', 10918), +(26425, 'Brown William, The Power of the Harp, and Other Ballads', NULL, '2008-10-06', 10, 'https://www.gutenberg.org/ebooks/26788', 'en', 4390), +(26426, 'Kabale und Liebe: Ein bürgerliches Trauerspiel', 'Schiller, Friedrich', '2004-09-01', 89, 'https://www.gutenberg.org/ebooks/6498', 'de', 10919), +(26427, 'A New Illustrated Edition of J. S. Rarey\'s Art of Taming Horses\r\nWith the Substance of the Lectures at the Round House, and Additional Chapters on Horsemanship and Hunting, for the Young and Timid', 'Rarey, J. S. (John Solomon)', '2009-04-26', 36, 'https://www.gutenberg.org/ebooks/28612', 'en', 2240), +(26428, 'Lettres du prince de Metternich à la comtesse de Lieven, 1818-1819', 'Metternich, Clemens Wenzel Lothar, Fürst von', '2015-12-17', 10, 'https://www.gutenberg.org/ebooks/50708', 'fr', 10920), +(26429, 'Rose in Bloom\r\nA Sequel to \"Eight Cousins\"', 'Alcott, Louisa May', '2001-09-01', 242, 'https://www.gutenberg.org/ebooks/2804', 'en', 4444), +(26430, 'Oh, You Tex!', 'Raine, William MacLeod', '2007-08-15', 41, 'https://www.gutenberg.org/ebooks/22328', 'en', 9815), +(26431, 'The Moving Picture Girls at Oak Farm\nor, Queer Happenings While Taking Rural Plays', 'Hope, Laura Lee', '2006-11-29', 40, 'https://www.gutenberg.org/ebooks/19969', 'en', 3200), +(26432, 'IBM 1401 Programming Systems', 'Anonymous', '2008-12-09', 98, 'https://www.gutenberg.org/ebooks/27468', 'en', 10921), +(26433, 'Literary Blunders: A Chapter in the \"History of Human Error\"', 'Wheatley, Henry B. (Henry Benjamin)', '1995-12-01', 62, 'https://www.gutenberg.org/ebooks/371', 'en', 10922), +(26434, 'The Boys of \'61\nor, Four Years of Fighting, Personal Observations with the Army and Navy', 'Coffin, Charles Carleton', '2011-01-03', 28, 'https://www.gutenberg.org/ebooks/34843', 'en', 2723), +(26435, 'Romance: Two Lectures', 'Raleigh, Walter Alexander, Sir', '2006-09-25', 14, 'https://www.gutenberg.org/ebooks/19367', 'en', 10923), +(26436, 'The Retreat from Mons\r\nBy one who shared in it', 'Corbett-Smith, Arthur', '2017-07-05', 24, 'https://www.gutenberg.org/ebooks/55048', 'en', 4411), +(26437, 'Domesday Book', 'Masters, Edgar Lee', '2011-04-29', 42, 'https://www.gutenberg.org/ebooks/35991', 'en', 5319), +(26438, 'A Little Bush Maid', 'Bruce, Mary Grant', '2005-08-01', 34, 'https://www.gutenberg.org/ebooks/8730', 'en', 10924), +(26439, 'The Continental Monthly, Vol. 6, No 3, September 1864\nDevoted To Literature And National Policy', 'Various', '2007-10-08', 10, 'https://www.gutenberg.org/ebooks/22926', 'en', 558), +(26440, 'Las máscaras, vol. 1/2', 'Pérez de Ayala, Ramón', '2015-07-10', 22, 'https://www.gutenberg.org/ebooks/49417', 'es', 7292), +(26441, 'A Dreadful Temptation; or, A Young Wife\'s Ambition', 'Miller, Alex. McVeigh, Mrs.', '2013-10-08', 13, 'https://www.gutenberg.org/ebooks/43911', 'en', 654), +(26442, 'Lives of the Most Eminent Painters Sculptors and Architects, Vol. 04 (of 10)\r\nFilippino Lippi to Domenico Puligo', 'Vasari, Giorgio', '2009-03-27', 104, 'https://www.gutenberg.org/ebooks/28420', 'en', 9689), +(26443, 'History of California', 'Bandini, Helen Elliott', '2005-03-01', 29, 'https://www.gutenberg.org/ebooks/7778', 'en', 10436), +(26444, 'Der Weg zur Zeichenkunst\nEin Büchlein für theoretische und praktische Selbstbildung', 'Weber, Ernst', '2017-11-01', 13, 'https://www.gutenberg.org/ebooks/55874', 'de', 4259), +(26445, 'Original Plays, Second Series', 'Gilbert, W. S. (William Schwenck)', '2019-06-06', 27, 'https://www.gutenberg.org/ebooks/59685', 'en', 1088), +(26446, 'The Wise Mamma Goose', 'Herr, Charlotte B. (Charlotte Bronte)', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/11936', 'en', 10925), +(26447, 'My Recollections', 'Massenet, Jules', '2011-07-14', 14, 'https://www.gutenberg.org/ebooks/36728', 'en', 10926), +(26448, 'The Art of War in the Middle Ages A.D. 378-1515', 'Oman, Charles', '2013-11-30', 113, 'https://www.gutenberg.org/ebooks/44308', 'en', 10927), +(26449, 'Chats on Old Silver', 'Hayden, Arthur', '2019-01-23', 6, 'https://www.gutenberg.org/ebooks/58757', 'en', 10928), +(26450, 'The Story of The American Legion: The Birth of the Legion', 'Wheat, George Seay', '2004-12-26', 8, 'https://www.gutenberg.org/ebooks/14478', 'en', 10929), +(26451, 'Saddle and Mocassin', 'Francis, Francis', '2012-05-22', 14, 'https://www.gutenberg.org/ebooks/39760', 'en', 1110), +(26452, 'The New Warden', 'Ritchie, David G. (David George), Mrs.', '2010-05-15', 14, 'https://www.gutenberg.org/ebooks/32388', 'en', 401), +(26453, 'Following the Equator: A Journey Around the World. Part 6', 'Twain, Mark', '2004-06-24', 5, 'https://www.gutenberg.org/ebooks/5813', 'en', 3614), +(26454, 'Histoire de France 1484-1515 (Volume 9/19)', 'Michelet, Jules', '2013-05-08', 27, 'https://www.gutenberg.org/ebooks/42662', 'fr', 624), +(26455, 'The Complete Poetical Works of Oliver Goldsmith', 'Goldsmith, Oliver', '2002-11-01', 27, 'https://www.gutenberg.org/ebooks/3545', 'en', 19), +(26456, 'The May Flower, and Miscellaneous Writings', 'Stowe, Harriet Beecher', '2010-02-25', 36, 'https://www.gutenberg.org/ebooks/31390', 'en', 770), +(26457, 'Casa Braccio, Volumes 1 and 2', 'Crawford, F. Marion (Francis Marion)', '2008-08-16', 15, 'https://www.gutenberg.org/ebooks/26327', 'en', 16), +(26458, 'The Boy Scouts of the Eagle Patrol', 'Goldfrap, John Henry', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12112', 'en', 6595), +(26459, 'The Book of Mormon\r\nAn Account Written by the Hand of Mormon Upon Plates Taken from the Plates of Nephi', 'Church of Jesus Christ of Latter-day Saints', '2008-06-25', 627, 'https://www.gutenberg.org/ebooks/17', 'en', 10930), +(26460, 'Going Afoot: A book on walking.', 'Christy, Bayard Henderson', '2017-05-11', 11, 'https://www.gutenberg.org/ebooks/54707', 'en', 9805), +(26461, 'The Feast at Solhoug', 'Ibsen, Henrik', '2006-05-21', 64, 'https://www.gutenberg.org/ebooks/18428', 'en', 798), +(26462, 'Put Yourself in His Place', 'Reade, Charles', '2006-05-17', 27, 'https://www.gutenberg.org/ebooks/2497', 'en', 10931), +(26463, 'Prologue to an Analogue', 'Richmond, Leigh', '2009-10-13', 51, 'https://www.gutenberg.org/ebooks/30242', 'en', 26), +(26464, 'A Tour to the River Saguenay, in Lower Canada', 'Lanman, Charles', '2015-02-25', 6, 'https://www.gutenberg.org/ebooks/48358', 'en', 8933), +(26465, 'Little Men', 'Alcott, Louisa May', '2007-09-01', 61, 'https://www.gutenberg.org/ebooks/22787', 'en', 1779), +(26466, 'The Fur Country: Or, Seventy Degrees North Latitude', 'Verne, Jules', '2005-09-01', 57, 'https://www.gutenberg.org/ebooks/8991', 'en', 10932), +(26467, 'The Sleeping Beauty and other fairy tales from the Old French', 'Quiller-Couch, Arthur', '2016-02-21', 148, 'https://www.gutenberg.org/ebooks/51275', 'en', 1007), +(26468, 'Peggy Parsons at Prep School', 'Sharp, Annabel', '2011-03-30', 14, 'https://www.gutenberg.org/ebooks/35730', 'en', 2086), +(26469, 'The One Woman: A Story of Modern Utopia', 'Dixon, Thomas, Jr.', '2004-07-01', 21, 'https://www.gutenberg.org/ebooks/6037', 'en', 5147), +(26470, 'A Treatise on Gunshot Wounds', 'Longmore, T. (Thomas), Sir', '2014-11-07', 29, 'https://www.gutenberg.org/ebooks/47310', 'en', 10933), +(26471, 'Fra det moderne Frankrig', 'Kaufmann, Richard', '2006-02-01', 11, 'https://www.gutenberg.org/ebooks/9843', 'da', 1117), +(26472, 'Lorna Doone: A Romance of Exmoor', 'Blackmore, R. D. (Richard Doddridge)', '2006-01-04', 190, 'https://www.gutenberg.org/ebooks/17460', 'en', 10934), +(26473, 'Chambers\'s Edinburgh Journal, No. 456\nVolume 18, New Series, September 25, 1852', 'Various', '2007-11-28', 17, 'https://www.gutenberg.org/ebooks/23655', 'en', 18), +(26474, 'Anthony Trent, Master Criminal', 'Martyn, Wyndham', '2012-10-01', 63, 'https://www.gutenberg.org/ebooks/40909', 'en', 177), +(26475, 'The Works of Robert G. Ingersoll, Complete Contents\nDresden Edition—Twelve Volumes', 'Ingersoll, Robert Green', '2012-02-09', 116, 'https://www.gutenberg.org/ebooks/38813', 'en', 1191), +(26476, 'Ann and Her Mother', 'Douglas, O.', '2016-11-13', 47, 'https://www.gutenberg.org/ebooks/53522', 'en', 2625), +(26477, 'Harper\'s Young People, December 14, 1880\nAn Illustrated Monthly', 'Various', '2014-01-05', 1, 'https://www.gutenberg.org/ebooks/44595', 'en', 479), +(26478, 'Historia de la literatura y del arte dramático en España, tomo IV', 'Schack, Adolf Friedrich von', '2011-08-13', 14, 'https://www.gutenberg.org/ebooks/37067', 'es', 8839), +(26479, 'Tillie, a Mennonite Maid; a Story of the Pennsylvania Dutch', 'Martin, Helen Reimensnyder', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/4760', 'en', 6069), +(26480, 'A Viking of the Sky: A Story of a Boy Who Gained Success in Aeronautics', 'McAlister, Hugh', '2014-04-21', 7, 'https://www.gutenberg.org/ebooks/45447', 'en', 2279), +(26481, 'A Source Book of Australian History', NULL, '2005-03-12', 32, 'https://www.gutenberg.org/ebooks/15337', 'en', 10935), +(26482, 'Points of View', 'Repplier, Agnes', '2019-03-06', 9, 'https://www.gutenberg.org/ebooks/59018', 'en', 3720), +(26483, 'Tom and Some Other Girls: A Public School Story', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 32, 'https://www.gutenberg.org/ebooks/21102', 'en', 2154), +(26484, 'The Makers of Modern Rome, in Four Books', 'Oliphant, Mrs. (Margaret)', '2012-07-03', 21, 'https://www.gutenberg.org/ebooks/40135', 'en', 10936), +(26485, 'Love and Freindship [sic]', 'Austen, Jane', '1998-02-01', 565, 'https://www.gutenberg.org/ebooks/1212', 'en', 5842), +(26486, 'Japhet in Search of a Father', 'Marryat, Frederick', '2008-01-31', 17, 'https://www.gutenberg.org/ebooks/24470', 'en', 95), +(26487, 'Go Tell Aunt Rhodie', 'McGuinn, Roger', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/10645', 'en', 1379), +(26488, 'Les metteurs en scène', 'Wharton, Edith', '2018-05-19', 17, 'https://www.gutenberg.org/ebooks/57182', 'fr', 1411), +(26489, 'Castillo de San Marcos\nA Guide to Castillo de San Marcos National Monument, Florida', 'United States. National Park Service', '2017-11-25', 12, 'https://www.gutenberg.org/ebooks/56050', 'en', 4634), +(26490, 'Human Genome Project, Build 34, Chromosome X', 'Human Genome Project', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11797', 'en', 1385), +(26491, 'Some Phases of Sexual Morality and Church Discipline in Colonial New England', 'Adams, Charles Francis', '2011-08-06', 18, 'https://www.gutenberg.org/ebooks/36989', 'en', 5443), +(26492, 'Selected Poems', 'Frost, Robert', '2019-06-27', 345, 'https://www.gutenberg.org/ebooks/59824', 'en', 994), +(26493, 'The Maner of the Tryumphe of Caleys and Bulleyn and The Noble Tryumphant Coronacyon of Quene Anne, Wyfe unto the Most Noble Kynge Henry VIII', NULL, '2010-05-24', 14, 'https://www.gutenberg.org/ebooks/32515', 'en', 9774), +(26494, 'The Young Dragoon: Every Day Life of a Soldier', 'Drayson, Alfred W. (Alfred Wilks)', '2011-08-29', 11, 'https://www.gutenberg.org/ebooks/37255', 'en', 1361), +(26495, 'Cleopatra — Volume 08', 'Ebers, Georg', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/5480', 'en', 10937), +(26496, 'Genièvre', 'Tennyson, Alfred Tennyson, Baron', '2016-12-11', 17, 'https://www.gutenberg.org/ebooks/53710', 'fr', 5139), +(26497, 'Jutelmia läheltä ja kaukaa I: Etelän ja Pohjoisen Tytär; Punainen Lähde', 'Hannikainen, Pietari', '2005-02-18', 37, 'https://www.gutenberg.org/ebooks/15105', 'fi', 61), +(26498, 'Robert Burns', 'Shairp, John Campbell', '2007-05-05', 16, 'https://www.gutenberg.org/ebooks/21330', 'en', 10938), +(26499, 'Colonial Expeditions to the Interior of California Central Valley, 1800-1820', 'Cook, Sherburne Friend', '2011-06-12', 11, 'https://www.gutenberg.org/ebooks/36387', 'en', 10939), +(26500, 'The Border Legion', 'Grey, Zane', '2003-10-01', 111, 'https://www.gutenberg.org/ebooks/4552', 'en', 847), +(26501, 'Punch, or the London Charivari, Volume 107, September 15, 1894', 'Various', '2014-05-17', 11, 'https://www.gutenberg.org/ebooks/45675', 'en', 134), +(26502, '\"Five-Head\" Creek; and Fish Drugging In The Pacific\r\n1901', 'Becke, Louis', '2008-02-18', 16, 'https://www.gutenberg.org/ebooks/24642', 'en', 2357), +(26503, 'Beacon Lights of History, Volume 01: The Old Pagan Civilizations', 'Lord, John', '2003-12-01', 146, 'https://www.gutenberg.org/ebooks/10477', 'en', 1368), +(26504, 'The Letters of William James, Vol. 1', 'James, William', '2012-07-23', 51, 'https://www.gutenberg.org/ebooks/40307', 'en', 10940), +(26505, 'Sword Blades and Poppy Seed', 'Lowell, Amy', '1997-08-01', 51, 'https://www.gutenberg.org/ebooks/1020', 'en', 178), +(26506, 'Definition & Reality in the General Theory of Political Economy', 'Cool, Thomas', '2005-05-30', 8, 'https://www.gutenberg.org/ebooks/15939', 'en', 8061), +(26507, 'Women of Modern France (Illustrated)\nWoman: In all ages and in all countries Vol. 7 (of 10)', 'Thieme, Hugo P. (Hugo Paul)', '2010-06-07', 13, 'https://www.gutenberg.org/ebooks/32727', 'en', 848), +(26508, 'When We Were Strolling Players in the East', 'Miln, Louise Jordan', '2017-12-27', 11, 'https://www.gutenberg.org/ebooks/56262', 'en', 10941), +(26509, 'Muistoja ja toiveita ystäville jouluksi', 'Genetz, Arvid', '2008-06-14', 8, 'https://www.gutenberg.org/ebooks/25790', 'fi', 1171), +(26510, 'A Small Boy and Others', 'James, Henry', '2008-07-24', 47, 'https://www.gutenberg.org/ebooks/26115', 'en', 10942), +(26511, 'Civilization and Beyond: Learning from History', 'Nearing, Scott', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/12320', 'en', 2170), +(26512, 'Tre Donne', 'Sperani, Bruno', '2009-09-12', 22, 'https://www.gutenberg.org/ebooks/29961', 'it', 61), +(26513, 'Housekeeping in Old Virginia', NULL, '2013-03-31', 41, 'https://www.gutenberg.org/ebooks/42450', 'en', 10943), +(26514, 'Tom Swift and His Electric Rifle; Or, Daring Adventures in Elephant Land', 'Appleton, Victor', '2003-02-01', 82, 'https://www.gutenberg.org/ebooks/3777', 'en', 1023), +(26515, 'Bom-senso e bom-gosto\r\ncarta ao excelentissimo senhor Antonio Feliciano de Castilho', 'Quental, Antero de', '2009-09-23', 54, 'https://www.gutenberg.org/ebooks/30070', 'pt', 10944), +(26516, 'The Mystery at Dark Cedars', 'Lavell, Edith', '2013-08-28', 23, 'https://www.gutenberg.org/ebooks/43582', 'en', 3831), +(26517, 'The Changed Valentines, and Other Plays for St. Valentine\'s Day', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2017-04-10', 5, 'https://www.gutenberg.org/ebooks/54535', 'en', 10945), +(26518, 'Cuentos de mi tiempo', 'Picón, Jacinto Octavio', '2008-10-15', 21, 'https://www.gutenberg.org/ebooks/26929', 'es', 1353), +(26519, 'The Basket Woman: A Book of Indian Tales for Children', 'Austin, Mary Hunter', '2011-03-07', 24, 'https://www.gutenberg.org/ebooks/35502', 'en', 676), +(26520, 'The Æneid of Virgil Translated Into Scottish Verse. Volumes 1 & 2', 'Virgil', '2015-09-05', 11, 'https://www.gutenberg.org/ebooks/49884', 'en', 4571), +(26521, 'The Declaration of Independence of The United States of America', 'Jefferson, Thomas', '2005-10-12', 151, 'https://www.gutenberg.org/ebooks/16780', 'en', 5768), +(26522, 'Pollony Undiverted', 'Van Scyoc, Sydney J.', '2016-01-26', 18, 'https://www.gutenberg.org/ebooks/51047', 'en', 797), +(26523, 'Practical Etiquette', 'Klein, Cora C.', '2015-10-13', 11, 'https://www.gutenberg.org/ebooks/50195', 'en', 788), +(26524, 'The History of Sir Richard Whittington', NULL, '2006-01-31', 24, 'https://www.gutenberg.org/ebooks/17652', 'en', 10946), +(26525, 'De complete werken van Joost van Vondel. De Vaderen', 'Vondel, Joost van den', '2015-05-14', 13, 'https://www.gutenberg.org/ebooks/48956', 'nl', 2651), +(26526, 'Fairy\'s Album\nWith Rhymes of Fairyland', 'Anonymous', '2007-11-13', 8, 'https://www.gutenberg.org/ebooks/23467', 'en', 2951), +(26527, 'When Valmond Came to Pontiac: The Story of a Lost Napoleon. Complete', 'Parker, Gilbert', '2004-11-16', 12, 'https://www.gutenberg.org/ebooks/6205', 'en', 1219), +(26528, 'Agnes Strickland\'s Queens of England, Vol. 2. (of 3)\r\nAbridged and Fully Illustrated', 'Strickland, Elisabeth', '2014-10-15', 16, 'https://www.gutenberg.org/ebooks/47122', 'en', 1583), +(26529, 'The Boer in Peace and War', 'Mann, Arthur M.', '2005-04-06', 7, 'https://www.gutenberg.org/ebooks/15561', 'en', 10947), +(26530, 'The Ocean and Its Wonders', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 42, 'https://www.gutenberg.org/ebooks/21754', 'en', 2735), +(26531, 'Diary of Samuel Pepys — Volume 18: September/October 1662', 'Pepys, Samuel', '2004-11-29', 15, 'https://www.gutenberg.org/ebooks/4136', 'en', 1231), +(26532, 'Histoire du Consulat et de l\'Empire, (Vol. 14 / 20)\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2014-03-25', 14, 'https://www.gutenberg.org/ebooks/45211', 'fr', 2051), +(26533, 'Memoirs of the Life of Sir Walter Scott, Volume 6 (of 10)', 'Lockhart, J. G. (John Gibson)', '2011-10-05', 11, 'https://www.gutenberg.org/ebooks/37631', 'en', 3485), +(26534, 'Pride and Prejudice', 'Austen, Jane', '2007-02-03', 237, 'https://www.gutenberg.org/ebooks/20686', 'en', 348), +(26535, 'Le livre de Monelle', 'Schwob, Marcel', '2016-10-27', 27, 'https://www.gutenberg.org/ebooks/53374', 'fr', 607), +(26536, 'An Englishman in Paris: Notes and Recollections', 'Vandam, Albert D. (Albert Dresden)', '2010-05-12', 11, 'https://www.gutenberg.org/ebooks/32343', 'en', 8730), +(26537, 'Aesthetische Farbenlehre', 'Hermann, Conrad', '2018-02-19', 23, 'https://www.gutenberg.org/ebooks/56606', 'de', 2250), +(26538, '史記', 'Sima, Qian', '2008-01-10', 89, 'https://www.gutenberg.org/ebooks/24226', 'zh', 10948), +(26539, 'Punchinello, Volume 1, No. 09, May 28, 1870', 'Various', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10013', 'en', 372), +(26540, 'Les Cent Nouvelles Nouvelles, tome I', NULL, '2012-09-14', 17, 'https://www.gutenberg.org/ebooks/40763', 'fr', 642), +(26541, 'The Voice of the City: Further Stories of the Four Million', 'Henry, O.', '1998-09-01', 77, 'https://www.gutenberg.org/ebooks/1444', 'en', 2999), +(26542, 'Miranda of the Balcony: A Story', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-26', 16, 'https://www.gutenberg.org/ebooks/38679', 'en', 61), +(26543, 'Pitching in a Pinch; or, Baseball from the Inside', 'Mathewson, Christy', '2010-07-30', 38, 'https://www.gutenberg.org/ebooks/33291', 'en', 10949), +(26544, 'Ghost Stories of an Antiquary Part 2: More Ghost Stories', 'James, M. R. (Montague Rhodes)', '2006-01-01', 196, 'https://www.gutenberg.org/ebooks/9629', 'en', 409), +(26545, 'Punch, or the London Charivari, Volume 98, March 22, 1890', 'Various', '2009-11-07', 8, 'https://www.gutenberg.org/ebooks/30414', 'en', 134), +(26546, 'Reis door Tunis en Algiers\r\nDe Aarde en haar Volken, 1906', 'Brondgeest, M. G.', '2004-10-10', 17, 'https://www.gutenberg.org/ebooks/13696', 'nl', 10950), +(26547, 'Romain Rolland: The Man and His Work', 'Zweig, Stefan', '2011-01-08', 39, 'https://www.gutenberg.org/ebooks/34888', 'en', 10951), +(26548, 'Shakespeare the Boy\nWith Sketches of the Home and School Life, Games and Sports, Manners, Customs and Folk-lore of the Time', 'Rolfe, W. J. (William James)', '2017-02-11', 25, 'https://www.gutenberg.org/ebooks/54151', 'en', 10952), +(26549, 'Petits Poèmes d\'Automne', 'Merrill, Stuart', '2008-09-10', 33, 'https://www.gutenberg.org/ebooks/26571', 'fr', 8), +(26550, 'Ontto neula: Arsène Lupinin merkilliset seikkailut', 'Leblanc, Maurice', '2017-07-10', 14, 'https://www.gutenberg.org/ebooks/55083', 'fi', 1286), +(26551, 'In His Image', 'Bryan, William Jennings', '2004-06-25', 26, 'https://www.gutenberg.org/ebooks/12744', 'en', 2566), +(26552, 'Poems', 'Draper, John William', '2013-02-06', 7, 'https://www.gutenberg.org/ebooks/42034', 'en', 8), +(26553, 'A Bit of Old China', 'Stoddard, Charles Warren', '2002-07-01', 25, 'https://www.gutenberg.org/ebooks/3313', 'en', 10953), +(26554, 'Antiquités d\'Herculanum, Tome VI.\r\nLampes et candélabres', 'Piroli, Tommaso', '2005-12-05', 14, 'https://www.gutenberg.org/ebooks/17236', 'fr', 10954), +(26555, 'The New Minister\'s Great Opportunity\nFirst published in the \"Century Magazine\"', 'Chaplin, Heman White', '2007-10-12', 3, 'https://www.gutenberg.org/ebooks/23003', 'en', 13), +(26556, 'Waverley Novels — Volume 12', 'Scott, Walter', '2004-10-01', 29, 'https://www.gutenberg.org/ebooks/6661', 'en', 10938), +(26557, 'Iconoclasts: A Book of Dramatists\r\nIbsen, Strindberg, Becque, Hauptmann, Sudermann, Hervieu, Gorky, Duse and D\'Annunzio, Maeterlinck and Bernard Shaw', 'Huneker, James', '2014-12-06', 36, 'https://www.gutenberg.org/ebooks/47546', 'en', 10955), +(26558, 'Memorie di Giuda, vol. I', 'Petruccelli della Gattina, Ferdinando', '2014-08-03', 21, 'https://www.gutenberg.org/ebooks/46494', 'it', 10956), +(26559, 'L\'Illustration, No. 0012, 20 Mai 1843', 'Various', '2011-02-04', 7, 'https://www.gutenberg.org/ebooks/35166', 'fr', 150), +(26560, 'The Native Races [of the Pacific states], Volume 2, Civilized Nations\r\nThe Works of Hubert Howe Bancroft, Volume 2', 'Bancroft, Hubert Howe', '2013-05-25', 16, 'https://www.gutenberg.org/ebooks/42808', 'en', 10218), +(26561, 'Le Tour du Monde; Afrique Centrale\nJournal des voyages et des voyageurs; 2em. sem. 1860', 'Various', '2009-07-29', 21, 'https://www.gutenberg.org/ebooks/29539', 'fr', 1294), +(26562, 'Œuvres complètes de Guy de Maupassant - volume 07', 'Maupassant, Guy de', '2016-03-11', 27, 'https://www.gutenberg.org/ebooks/51423', 'fr', 642), +(26563, 'Kolmimasto \"Tulevaisuus\" eli elämää Pohjolassa', 'Lie, Jonas', '2017-03-14', 2, 'https://www.gutenberg.org/ebooks/54363', 'fi', 7), +(26564, 'Silva Porto e Livingstone\nmanuscripto de Silva Porto encontrado no seu espólio', 'Porto, António Francisco Ferreira da Silva', '2009-01-03', 12, 'https://www.gutenberg.org/ebooks/27691', 'pt', 9053), +(26565, 'Dictionary of Battles', 'Harbottle, Thomas Benfield', '2019-08-23', 57, 'https://www.gutenberg.org/ebooks/60156', 'en', NULL), +(26566, 'L\'aeroplano del papa: Romanzo profetico in versi liberi', 'Marinetti, F. T.', '2006-02-23', 36, 'https://www.gutenberg.org/ebooks/17838', 'it', 8), +(26567, 'Birds, Illustrated by Color Photography, Vol. 1, No. 2\r\nFebruary, 1897', 'Various', '2009-12-08', 25, 'https://www.gutenberg.org/ebooks/30626', 'en', 490), +(26568, 'The Camp Fire Girls at the End of the Trail', 'Vandercook, Margaret', '2013-02-26', 4, 'https://www.gutenberg.org/ebooks/42206', 'en', 2486), +(26569, 'Thoughts Suggested by Mr. Froude\'s \"Progress\"', 'Warner, Charles Dudley', '2004-12-05', 13, 'https://www.gutenberg.org/ebooks/3121', 'en', 20), +(26570, 'The Putnam Tradition', 'Dorman, Sonya', '2008-10-01', 90, 'https://www.gutenberg.org/ebooks/26743', 'en', 9113), +(26571, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 478, February 26, 1831', 'Various', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/12576', 'en', 133), +(26572, 'Soitannollisia satuja ja jutelmia', 'Polko, Elise', '2006-07-19', 15, 'https://www.gutenberg.org/ebooks/18870', 'fi', 10957), +(26573, 'Alexandre Herculano\r\nConferencia pública realizada no Atheneu Commercial de Lisboa, na noite de 15 de Julho de 1900', 'Machado, Diogo Rosa', '2010-11-12', 19, 'https://www.gutenberg.org/ebooks/34286', 'pt', 10958), +(26574, 'The Potiphar Papers', 'Curtis, George William', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6453', 'en', 781), +(26575, 'The Observations of Henry\nIllustrated', 'Jerome, Jerome K. (Jerome Klapka)', '2014-12-24', 23, 'https://www.gutenberg.org/ebooks/47774', 'en', 10959), +(26576, 'Histoire des plus célèbres amateurs italiens et de leurs relations avec les artistes\nTome IV', 'Dumesnil, Antoine Jules', '2005-11-04', 13, 'https://www.gutenberg.org/ebooks/17004', 'fr', 10960), +(26577, 'Rich Enough\na tale of the times', 'Lee, Hannah Farnham Sawyer', '2007-10-29', 22, 'https://www.gutenberg.org/ebooks/23231', 'en', 658), +(26578, 'The Silent Call', 'Royle, Edwin Milton', '2016-03-30', 15, 'https://www.gutenberg.org/ebooks/51611', 'en', 315), +(26579, 'Moral Theology\r\nA Complete Course Based on St. Thomas Aquinas and the Best Modern Authorities', 'Callan, Charles J. (Charles Jerome)', '2011-02-22', 109, 'https://www.gutenberg.org/ebooks/35354', 'en', 10961); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(26580, 'Widger\'s Quotes and Images from Zibeline by Phillipe de Massa\r\nThe French Immortals: Quotes and Images', 'Massa, Philippe, marquis de', '2009-07-13', 6, 'https://www.gutenberg.org/ebooks/7581', 'en', 2391), +(26581, 'Our Friend the Charlatan', 'Gissing, George', '2003-08-01', 41, 'https://www.gutenberg.org/ebooks/4304', 'en', 137), +(26582, 'The Pictorial Grammar', 'Crowquill, Alfred', '2014-02-26', 13, 'https://www.gutenberg.org/ebooks/45023', 'en', 1979), +(26583, 'Svensk diktning II\nSelections from Swedish Poets with Brief Monographies', NULL, '2005-05-02', 15, 'https://www.gutenberg.org/ebooks/15753', 'sv', 10648), +(26584, 'War and Misrule (1307-1399)', NULL, '2016-05-17', 8, 'https://www.gutenberg.org/ebooks/52094', 'en', 10962), +(26585, 'The Good Old Songs We Used to Sing, \'61 to \'65', 'Oldroyd, Osborn H. (Osborn Hamiline)', '2007-05-22', 159, 'https://www.gutenberg.org/ebooks/21566', 'en', 10963), +(26586, 'Jorden och solsystemet\nNågra blad ur historien om vetenskapens strider', 'Brohlin, Karl', '2016-09-25', 7, 'https://www.gutenberg.org/ebooks/53146', 'sv', 1590), +(26587, 'The Art of Travel; Or, Shifts and Contrivances Available in Wild Countries', 'Galton, Francis', '2005-01-13', 43, 'https://www.gutenberg.org/ebooks/14681', 'en', 7877), +(26588, 'Margaret Montfort', 'Richards, Laura Elizabeth Howe', '2008-03-14', 27, 'https://www.gutenberg.org/ebooks/24828', 'en', 777), +(26589, 'Notes and Queries, Number 85, June 14, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-09-11', 20, 'https://www.gutenberg.org/ebooks/37403', 'en', 105), +(26590, 'The Manoeuvring Mother (vol. 2 of 3)', 'Bury, Charlotte Campbell, Lady', '2018-01-25', 1, 'https://www.gutenberg.org/ebooks/56434', 'en', 137), +(26591, 'The Little Colonel in Arizona', 'Johnston, Annie F. (Annie Fellows)', '2012-05-02', 21, 'https://www.gutenberg.org/ebooks/39599', 'en', 1655), +(26592, 'A Discourse on the Plague', 'Mead, Richard', '2010-04-28', 10, 'https://www.gutenberg.org/ebooks/32171', 'en', 1792), +(26593, 'The Yazoo Mystery: A Novel', 'Craddock, Irving', '2012-11-25', 11, 'https://www.gutenberg.org/ebooks/41483', 'en', 61), +(26594, 'La débâcle impériale: Juan Fernandez', 'Scheff, Werner', '2012-08-21', 7, 'https://www.gutenberg.org/ebooks/40551', 'fr', 61), +(26595, 'Alcibiades I', 'Plato (spurious and doubtful works)', '1999-03-01', 183, 'https://www.gutenberg.org/ebooks/1676', 'en', 4117), +(26596, 'In Blue Creek Cañon', 'Ray, Anna Chapin', '2007-12-24', 16, 'https://www.gutenberg.org/ebooks/24014', 'en', 1155), +(26597, 'Purple Springs', 'McClung, Nellie L.', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10221', 'en', 10964), +(26598, 'Spanish and Portuguese South America during the Colonial Period; Vol. 2 of 2', 'Watson, Robert Grant', '2016-06-06', 14, 'https://www.gutenberg.org/ebooks/52252', 'en', 3403), +(26599, 'Vocational Guidance for Girls', 'Dickson, Marguerite', '2005-04-09', 37, 'https://www.gutenberg.org/ebooks/15595', 'en', 10797), +(26600, 'Bob the Castaway; Or, The Wreck of the Eagle', 'Webster, Frank V.', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/11909', 'en', 3532), +(26601, 'Molly Brown\'s Junior Days', 'Speed, Nell', '2011-07-12', 28, 'https://www.gutenberg.org/ebooks/36717', 'en', 10965), +(26602, 'The Lily and the Totem; or, The Huguenots in Florida', 'Simms, William Gilmore', '2013-12-02', 17, 'https://www.gutenberg.org/ebooks/44337', 'en', 10966), +(26603, 'State of the Union Addresses', 'Washington, George', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/5010', 'en', 1926), +(26604, 'Eirik the Red\'s Saga', NULL, '2007-01-03', 16, 'https://www.gutenberg.org/ebooks/20672', 'en', 1942), +(26605, 'On Horseback Through Asia Minor, Volume 1 (of 2)', 'Burnaby, Fred', '2019-01-25', 14, 'https://www.gutenberg.org/ebooks/58768', 'en', 213), +(26606, 'Letters to \"The Times\" upon War and Neutrality (1881-1920)', 'Holland, Thomas Erskine, Sir', '2004-12-24', 24, 'https://www.gutenberg.org/ebooks/14447', 'en', 6943), +(26607, 'The Republic of the Southern Cross, and other stories', 'Bryusov, Valery Yakovlevich', '2016-10-27', 19, 'https://www.gutenberg.org/ebooks/53380', 'en', 1377), +(26608, 'The Milkmaid of Montfermeil (Novels of Paul de Kock Volume XX)', 'Kock, Paul de', '2012-12-17', 7, 'https://www.gutenberg.org/ebooks/41645', 'en', 58), +(26609, 'Monarch, the Big Bear of Tallac', 'Seton, Ernest Thompson', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11135', 'en', 4517), +(26610, 'The Causes of the Rebellion in Ireland Disclosed\nIn an Address to the People of England, in Which It Is Proved by Incontrovertible Facts, That the System for Some Years Pursued in That Country, Has Driven It into Its Present Dreadful Situation', 'Anonymous', '2008-05-02', 15, 'https://www.gutenberg.org/ebooks/25300', 'en', 10967), +(26611, 'Index of the Project Gutenberg Works of George R. Sims', 'Sims, George R.', '2018-08-18', 7, 'https://www.gutenberg.org/ebooks/57720', 'en', 198), +(26612, 'Mammon and Co.', 'Benson, E. F. (Edward Frederic)', '2012-09-18', 30, 'https://www.gutenberg.org/ebooks/40797', 'en', 8836), +(26613, 'Woman\'s Club Work and Programs; Or, First Aid to Club Women', NULL, '2010-07-26', 13, 'https://www.gutenberg.org/ebooks/33265', 'en', 10635), +(26614, 'The Tempest', 'Shakespeare, William', '2000-07-01', 178, 'https://www.gutenberg.org/ebooks/2235', 'en', 8099), +(26615, 'Sweet Content', 'Molesworth, Mrs.', '2013-07-06', 14, 'https://www.gutenberg.org/ebooks/43112', 'en', 1001), +(26616, 'Papin tytär', 'Aho, Juhani', '2004-10-06', 38, 'https://www.gutenberg.org/ebooks/13662', 'fi', 61), +(26617, 'The Woman Who Dared', 'Sargent, Epes', '2008-12-08', 22, 'https://www.gutenberg.org/ebooks/27457', 'en', 8), +(26618, 'Perpetual Peace: A Philosophic Essay', 'Kant, Immanuel', '2008-09-01', 8, 'https://www.gutenberg.org/ebooks/26585', 'en', 1122), +(26619, 'War Rhymes by Wayfarer', 'Cosens, Abner', '2006-09-22', 7, 'https://www.gutenberg.org/ebooks/19358', 'en', 2100), +(26620, 'The Yellow Dove', 'Gibbs, George', '2017-07-09', 16, 'https://www.gutenberg.org/ebooks/55077', 'en', 579), +(26621, 'Le procès des Templiers, Tome I.', NULL, '2007-10-08', 33, 'https://www.gutenberg.org/ebooks/22919', 'la', 10030), +(26622, 'Die Träger des deutschen Idealismus', 'Eucken, Rudolf', '2015-07-12', 17, 'https://www.gutenberg.org/ebooks/49428', 'de', 2191), +(26623, 'Romantic Spain: A Record of Personal Experiences (Vol. II)', 'O\'Shea, John Augustus', '2010-03-07', 15, 'https://www.gutenberg.org/ebooks/31532', 'en', 1514), +(26624, 'Dick Kent in the Far North', 'Oblinger, M. M. (Milo Milton)', '2015-11-20', 12, 'https://www.gutenberg.org/ebooks/50505', 'en', 7213), +(26625, 'Tales of the Jazz Age', 'Fitzgerald, F. Scott (Francis Scott)', '2004-10-01', 388, 'https://www.gutenberg.org/ebooks/6695', 'en', 828), +(26626, 'Relatorio de uma viagem ás terras do Changamira', 'Paiva de Andrada, Joaquim Carlos', '2010-10-07', 13, 'https://www.gutenberg.org/ebooks/34040', 'pt', 9039), +(26627, 'Music and Its Masters', 'Boise, O. B. (Otis Bardwell)', '2017-06-28', 8, 'https://www.gutenberg.org/ebooks/54999', 'en', 10957), +(26628, 'Gunboat and Gun-runner: A Tale of the Persian Gulf', 'Jeans, T. T. (Thomas Tendron)', '2014-07-31', 12, 'https://www.gutenberg.org/ebooks/46460', 'en', 10968), +(26629, 'The Parisians — Volume 11', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7747', 'en', 137), +(26630, 'Kant und Goethe', 'Simmel, Georg', '2011-02-06', 23, 'https://www.gutenberg.org/ebooks/35192', 'de', 10969), +(26631, 'The Venetian Painters of the Renaissance\nThird Edition', 'Berenson, Bernard', '2007-07-23', 46, 'https://www.gutenberg.org/ebooks/22125', 'en', 10970), +(26632, 'Cinderella, and Other Stories', 'Davis, Richard Harding', '2005-07-16', 34, 'https://www.gutenberg.org/ebooks/16310', 'en', 770), +(26633, 'Lois psychologiques de l\'évolution des peuples', 'Le Bon, Gustave', '2017-03-20', 24, 'https://www.gutenberg.org/ebooks/54397', 'fr', 1771), +(26634, 'The Motor Maids in Fair Japan', 'Stokes, Katherine', '2004-09-13', 11, 'https://www.gutenberg.org/ebooks/13450', 'en', 6872), +(26635, 'Junior Achievement', 'Lee, William M.', '2008-12-30', 32, 'https://www.gutenberg.org/ebooks/27665', 'en', 26), +(26636, 'We Two: A Novel', 'Lyall, Edna', '1999-12-01', 31, 'https://www.gutenberg.org/ebooks/2007', 'en', 1397), +(26637, 'The Wonder Book of Volcanoes and Earthquakes', 'Houston, Edwin J. (Edwin James)', '2013-07-27', 23, 'https://www.gutenberg.org/ebooks/43320', 'en', 9063), +(26638, 'Reflections of a Bachelor Girl', 'Rowland, Helen', '2010-03-19', 39, 'https://www.gutenberg.org/ebooks/31700', 'en', 8379), +(26639, 'The History of Rome, Books 27 to 36', 'Livy', '2004-06-01', 82, 'https://www.gutenberg.org/ebooks/12582', 'en', 6793), +(26640, 'Poro-kirja', 'Kianto, Ilmari', '2017-08-02', 9, 'https://www.gutenberg.org/ebooks/55245', 'fi', 10971), +(26641, 'The Last of the Mohicans; A narrative of 1757', 'Cooper, James Fenimore', '2006-02-05', 592, 'https://www.gutenberg.org/ebooks/940', 'en', 98), +(26642, 'Beretning om Folke-Høiskolen i Rødding', 'Flor, Christian', '2010-11-10', 9, 'https://www.gutenberg.org/ebooks/34272', 'da', 10972), +(26643, 'Ducks at a Distance: A Waterfowl Identification Guide', 'Hines, Bob', '2006-07-21', 33, 'https://www.gutenberg.org/ebooks/18884', 'en', 10973), +(26644, 'The Story of the Crusades', 'Wilmot-Buxton, E. M. (Ethel Mary)', '2014-12-25', 37, 'https://www.gutenberg.org/ebooks/47780', 'en', 10974), +(26645, 'Confederate Military History - Volume 5 (of 12)\nA Library of Confederate States History', 'Capers, Ellison', '2015-12-21', 12, 'https://www.gutenberg.org/ebooks/50737', 'en', 2263), +(26646, 'George Bowring - A Tale Of Cader Idris\nFrom \"Slain By The Doones\" By R. D. Blackmore', 'Blackmore, R. D. (Richard Doddridge)', '2007-08-14', 16, 'https://www.gutenberg.org/ebooks/22317', 'en', 45), +(26647, 'Leabhráin an Irisleabhair—III\nSeanaid na nGaedheal', 'Gruagach an Tobair', '2005-06-23', 38, 'https://www.gutenberg.org/ebooks/16122', 'ga', 10975), +(26648, 'The Wonders of Life: A Popular Study of Biological Philosophy', 'Haeckel, Ernst', '2014-08-22', 29, 'https://www.gutenberg.org/ebooks/46652', 'en', 6175), +(26649, 'Widger\'s Quotes and Images from Monsieur, Madame, and Bébé by Gustave Droz\r\nThe French Immortals: Quotes and Images', 'Droz, Gustave', '2009-07-13', 15, 'https://www.gutenberg.org/ebooks/7575', 'en', 2391), +(26650, 'Histoire d\'une jeune fille sauvage trouvée dans les bois à l\'âge de dix ans', 'Hecquet, Mme., active 1755', '2006-11-28', 34, 'https://www.gutenberg.org/ebooks/19956', 'fr', 10976), +(26651, 'Notes on Recent Researches in Electricity and Magnetism\r\nIntended as a Sequel to Professor Clerk-Maxwell\'s Treatise on Electricity and Magnetism', 'Thomson, J. J. (Joseph John)', '2011-06-26', 77, 'https://www.gutenberg.org/ebooks/36525', 'en', 10977), +(26652, 'Le livree dei nostri volatili domestici\nin rapporto allo sport, alla produttività ed alla rusticità', 'Pascal, Teodoro', '2019-05-12', 7, 'https://www.gutenberg.org/ebooks/59488', 'it', 10978), +(26653, 'The Sorceress (complete)', 'Oliphant, Mrs. (Margaret)', '2016-05-13', 27, 'https://www.gutenberg.org/ebooks/52060', 'en', 61), +(26654, 'The Art of Making Whiskey\r\nSo As to Obtain a Better, Purer, Cheaper and Greater Quantity of Spirit, From a Given Quantity of Grain. Also, the Art of Converting It into Gin, after the Process of the Holland Distillers', 'Boucherie, Anthony', '2007-05-24', 66, 'https://www.gutenberg.org/ebooks/21592', 'en', 10979), +(26655, 'Une Intrigante sous le règne de Frontenac', 'Caouette, J. B. (Jean Baptiste)', '2007-01-25', 23, 'https://www.gutenberg.org/ebooks/20440', 'fr', 10980), +(26656, 'Secret Enemies of True Republicanism\r\nMost important developments regarding the inner life of man and the spirit world, in order to abolish revolutions and wars and to establish permanent peace on earth, also: the plan for redemption of nations from monarchical and other oppresive [sic] speculations and for the introduction of the promised new era of harmony, truth and righteousness on the whole globe', 'Smolnikar, Andrew B. (Andreas Bernardus)', '2005-01-12', 21, 'https://www.gutenberg.org/ebooks/14675', 'en', 10981), +(26657, 'The Arabian Nights, Volume 3 (of 4)', 'Anonymous', '2013-11-05', 31, 'https://www.gutenberg.org/ebooks/44105', 'en', 9762), +(26658, 'The Satyricon — Volume 05: Crotona Affairs', 'Petronius Arbiter', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/5222', 'en', 10219), +(26659, 'El la Biblio\nElektitaj ĉapitroj de la Psalmaro, Sentencoj de Salomono kaj Predikanto', 'Zamenhof, L. L. (Ludwik Lejzer)', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11307', 'eo', 10982), +(26660, 'The Candidate: A Political Romance', 'Altsheler, Joseph A. (Joseph Alexander)', '2008-04-22', 21, 'https://www.gutenberg.org/ebooks/25132', 'en', 1238), +(26661, 'Lord Stranleigh Abroad', 'Barr, Robert', '2010-04-30', 23, 'https://www.gutenberg.org/ebooks/32185', 'en', 533), +(26662, 'Humphrey, Duke of Gloucester: A Biography', 'Vickers, Kenneth Hotham', '2012-11-25', 9, 'https://www.gutenberg.org/ebooks/41477', 'en', 10983), +(26663, 'O Marquez de Pombal (folheto para poucos)', 'Cordeiro, Manoel Caldas', '2010-07-03', 9, 'https://www.gutenberg.org/ebooks/33057', 'pt', 10984), +(26664, 'Menexenus', 'Plato', '1999-03-01', 76, 'https://www.gutenberg.org/ebooks/1682', 'en', 4117), +(26665, 'Children of the Soil', 'Sienkiewicz, Henryk', '2014-02-17', 35, 'https://www.gutenberg.org/ebooks/44939', 'en', 376), +(26666, 'John Bull\'s Womankind (Les Filles de John Bull)', 'O\'Rell, Max', '2018-07-15', 8, 'https://www.gutenberg.org/ebooks/57512', 'en', 10985), +(26667, 'Field and Woodland Plants', 'Furneaux, William S.', '2013-05-11', 38, 'https://www.gutenberg.org/ebooks/42696', 'en', 10986), +(26668, 'B-12\'s Moon Glow', 'Stearns, Charles A.', '2010-02-23', 67, 'https://www.gutenberg.org/ebooks/31364', 'en', 831), +(26669, 'Wanderings in South America', 'Waterton, Charles', '2005-05-01', 40, 'https://www.gutenberg.org/ebooks/8159', 'en', 2031), +(26670, 'Humors Looking Glasse', 'Rowlands, Samuel', '2017-09-24', 7, 'https://www.gutenberg.org/ebooks/55621', 'en', 10987), +(26671, 'The Enchanted Island of Yew\r\nWhereon Prince Marvel Encountered the High Ki of Twi and Other Surprising People', 'Baum, L. Frank (Lyman Frank)', '1996-05-01', 130, 'https://www.gutenberg.org/ebooks/518', 'en', 580), +(26672, 'Mary Minds Her Business', 'Weston, George', '2004-07-27', 12, 'https://www.gutenberg.org/ebooks/13034', 'en', 5367), +(26673, 'Woman on Her Own, False Gods and The Red Robe\r\nThree Plays By Brieux', 'Brieux, Eugène', '2008-11-08', 29, 'https://www.gutenberg.org/ebooks/27201', 'en', 415), +(26674, 'The Prophet of Berkeley Square', 'Hichens, Robert', '2006-04-04', 26, 'https://www.gutenberg.org/ebooks/2463', 'en', 10988), +(26675, 'Pikku Mari ja muita kertomuksia', 'Päivärinta, Pietari', '2013-09-16', 29, 'https://www.gutenberg.org/ebooks/43744', 'fi', 456), +(26676, 'Reis door Nieuw-Grenada en Venezuela\nDe Aarde en haar Volken, 1887', 'Crevaux, Jules', '2007-09-26', 6, 'https://www.gutenberg.org/ebooks/22773', 'nl', 227), +(26677, 'Elijah Kellogg, the Man and His Work\r\nChapters from His Life and Selections from His Writings', NULL, '2016-02-22', 2, 'https://www.gutenberg.org/ebooks/51281', 'en', 10989), +(26678, 'Hinduism and Buddhism, An Historical Sketch, Vol. 2', 'Eliot, Charles', '2005-08-19', 51, 'https://www.gutenberg.org/ebooks/16546', 'en', 6243), +(26679, 'Floor Games', 'Wells, H. G. (Herbert George)', '2005-09-01', 6, 'https://www.gutenberg.org/ebooks/8965', 'en', 1560), +(26680, 'The Red Widow; or, The Death-Dealers of London', 'Le Queux, William', '2014-07-09', 48, 'https://www.gutenberg.org/ebooks/46236', 'en', 167), +(26681, 'The Land of Midian (Revisited) — Volume 1', 'Burton, Richard Francis, Sir', '2004-12-01', 34, 'https://www.gutenberg.org/ebooks/7111', 'en', 10990), +(26682, 'L\'assassinat du pont-rouge', 'Barbara, Charles', '2004-10-20', 30, 'https://www.gutenberg.org/ebooks/13808', 'fr', 1351), +(26683, 'Barren Honour: A Novel', 'Lawrence, George A. (George Alfred)', '2010-12-10', 22, 'https://www.gutenberg.org/ebooks/34616', 'en', 61), +(26684, 'Les misérables Tome III: Marius', 'Hugo, Victor', '2006-01-11', 129, 'https://www.gutenberg.org/ebooks/17494', 'fr', 264), +(26685, 'Troubled Waters\nSandy Steele Adventures #6', 'Leckie, Robert', '2015-10-31', 19, 'https://www.gutenberg.org/ebooks/50353', 'en', 10991), +(26686, 'Histoire Médicale de l\'Armée d\'Orient. Volume 2', 'Desgenettes, R. (René)', '2009-03-05', 25, 'https://www.gutenberg.org/ebooks/28249', 'fr', 10992), +(26687, 'Crankisms', 'Matthewman, Lisle de Vaux', '2006-12-05', 19, 'https://www.gutenberg.org/ebooks/20024', 'en', 3769), +(26688, 'Wanted—A Match Maker', 'Ford, Paul Leicester', '2004-12-09', 7, 'https://www.gutenberg.org/ebooks/14211', 'en', 48), +(26689, 'Tales of Humour, Gallantry & Romance, Selected and Translated from the Italian', NULL, '2014-01-01', 23, 'https://www.gutenberg.org/ebooks/44561', 'en', 1058), +(26690, 'Sketches by Seymour — Volume 02', 'Seymour, Robert', '2004-07-12', 15, 'https://www.gutenberg.org/ebooks/5646', 'en', 1688), +(26691, 'De avonturen van Oliver Twist', 'Dickens, Charles', '2011-08-15', 59, 'https://www.gutenberg.org/ebooks/37093', 'nl', 3210), +(26692, 'Dawn', 'Adams, H. A., Mrs.', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/4794', 'en', 61), +(26693, 'Raamatun tutkisteluja 4: Harmagedonin taistelu', 'Russell, C. T. (Charles Taze)', '2018-04-02', 4, 'https://www.gutenberg.org/ebooks/56898', 'fi', 9869), +(26694, 'Punch, or the London Charivari, Vol. 105, August 19th 1893', 'Various', '2011-05-19', 8, 'https://www.gutenberg.org/ebooks/36141', 'en', 134), +(26695, 'Twelve Good Musicians: From John Bull to Henry Purcell', 'Bridge, Frederick', '2012-06-07', 40, 'https://www.gutenberg.org/ebooks/39935', 'en', 10993), +(26696, 'The Girl Philippa', 'Chambers, Robert W. (Robert William)', '2016-06-24', 27, 'https://www.gutenberg.org/ebooks/52404', 'en', 579), +(26697, 'On the Genesis of Species', 'Mivart, St. George Jackson', '2007-03-14', 36, 'https://www.gutenberg.org/ebooks/20818', 'en', 5893), +(26698, 'A View of Society and Manners in Italy, Volume 2 (of 2)\r\nWith Anecdotes Relating to some Eminent Characters', 'Moore, John', '2019-02-17', 7, 'https://www.gutenberg.org/ebooks/58902', 'en', 10994), +(26699, 'Sketches of Aboriginal Life\nAmerican Tableaux, No. 1', 'Vide, V. V.', '2010-08-14', 15, 'https://www.gutenberg.org/ebooks/33433', 'en', 1357), +(26700, 'The Journal of Negro History, Volume 7, 1922', 'Various', '2008-02-01', 19, 'https://www.gutenberg.org/ebooks/24484', 'en', 7352), +(26701, 'The Wisconsin Magazine of History, Volume 1, 1917-1918', 'Various', '2018-05-18', 7, 'https://www.gutenberg.org/ebooks/57176', 'en', 10995), +(26702, 'The American Missionary — Volume 42, No. 02, February, 1888', 'Various', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/11763', 'en', 562), +(26703, 'Heroes of the Middle West: The French', 'Catherwood, Mary Hartwell', '2008-05-22', 2, 'https://www.gutenberg.org/ebooks/25556', 'en', 10996), +(26704, 'The Gold Diggings of Cape Horn: A Study of Life in Tierra del Fuego and Patagonia', 'Spears, John Randolph', '2012-03-11', 20, 'https://www.gutenberg.org/ebooks/39109', 'en', 3639), +(26705, 'Advice to Singers', 'Crowest, Frederick James', '2012-10-10', 18, 'https://www.gutenberg.org/ebooks/41013', 'en', 5276), +(26706, 'Harper\'s Young People, February 1, 1881\nAn Illustrated Weekly', 'Various', '2014-01-25', 5, 'https://www.gutenberg.org/ebooks/44753', 'en', 479), +(26707, 'Cleopatra — Volume 02', 'Ebers, Georg', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/5474', 'en', 6232), +(26708, 'Old-Time Makers of Medicine\r\nThe Story of The Students And Teachers of the Sciences Related to Medicine During the Middle Ages', 'Walsh, James J. (James Joseph)', '2006-12-30', 74, 'https://www.gutenberg.org/ebooks/20216', 'en', 10997), +(26709, 'Life of Daniel Boone, the Great Western Hunter and Pioneer', 'Hartley, Cecil B.', '2004-11-11', 21, 'https://www.gutenberg.org/ebooks/14023', 'en', 3812), +(26710, 'The Queen Who Flew: A Fairy Tale', 'Ford, Ford Madox', '2016-07-24', 30, 'https://www.gutenberg.org/ebooks/52636', 'en', 1007), +(26711, 'H. P. Blavatsky; A Great Betrayal', 'Cleather, Alice Leighton', '2011-06-11', 33, 'https://www.gutenberg.org/ebooks/36373', 'en', 10998), +(26712, 'Chronicles of England, Scotland and Ireland (3 of 6): England (7 of 9)\r\nHenrie the Seauenth, Sonne to Edmund Earle of Richmond, Which Edmund was Brother by the Moothers Side to Henrie the Sixt', 'Holinshed, Raphael', '2014-05-18', 35, 'https://www.gutenberg.org/ebooks/45681', 'en', 288), +(26713, 'Captain Cook in New South Wales; Or, The Mystery of Naming Botany Bay', 'Bonwick, James', '2018-06-17', 10, 'https://www.gutenberg.org/ebooks/57344', 'en', 10999), +(26714, 'Short Stories Old and New', NULL, '2003-12-01', 37, 'https://www.gutenberg.org/ebooks/10483', 'en', 179), +(26715, 'The Master\'s Violin', 'Reed, Myrtle', '2010-09-01', 21, 'https://www.gutenberg.org/ebooks/33601', 'en', 712), +(26716, 'The Pre-Columbian Discovery of America by the Northmen\r\nIllustrated by Translations from Icelandic Sagas', 'DeCosta, B. F. (Benjamin Franklin)', '2012-10-29', 26, 'https://www.gutenberg.org/ebooks/41221', 'en', 11000), +(26717, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 546, May 12, 1832', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11551', 'en', 133), +(26718, 'Török világ Magyarországon (2. rész)\r\nTörténeti regény', 'Jókai, Mór', '2018-01-02', 9, 'https://www.gutenberg.org/ebooks/56296', 'hu', 2490), +(26719, 'Reminiscences of Two Years in the United States Navy', 'Batten, John M. (John Mullin)', '2008-06-12', 17, 'https://www.gutenberg.org/ebooks/25764', 'en', 444), +(26720, 'The Isle of Man', 'Morris, Joseph E. (Joseph Ernest)', '2014-09-10', 14, 'https://www.gutenberg.org/ebooks/46838', 'en', 11001), +(26721, 'Antietam National Battlefield, Maryland', 'Tilberg, Frederick', '2017-08-23', 18, 'https://www.gutenberg.org/ebooks/55413', 'en', 11002), +(26722, 'Galleria dos Vice-reis e Governadores da India Portugueza', 'Delorme Colaço, José Maria', '2009-09-15', 16, 'https://www.gutenberg.org/ebooks/29995', 'pt', 11003), +(26723, 'Encyclopaedia Britannica, 11th Edition, \"Châtelet\" to \"Chicago\"\r\nVolume 6, Slice 1', 'Various', '2010-02-02', 56, 'https://www.gutenberg.org/ebooks/31156', 'en', 1081), +(26724, 'Mother', 'Gorky, Maksim', '2003-02-01', 149, 'https://www.gutenberg.org/ebooks/3783', 'en', 11004), +(26725, 'Norwegische Volksmährchen vol. 2\ngesammelt von P. Asbjörnsen und Jörgen Moe', 'Asbjørnsen, Peter Christen', '2009-09-25', 35, 'https://www.gutenberg.org/ebooks/30084', 'de', 1007), +(26726, 'Personal Memoirs of P. H. Sheridan, General, United States Army — Volume 1', 'Sheridan, Philip Henry', '2005-03-27', 12, 'https://www.gutenberg.org/ebooks/2651', 'en', 758), +(26727, 'Max and Maurice: A Juvenile History in Seven Tricks', 'Busch, Wilhelm', '2009-05-16', 35, 'https://www.gutenberg.org/ebooks/28847', 'en', 1697), +(26728, 'An Introduction to Entomology: Vol. 1\r\nor Elements of the Natural History of the Insects', 'Spence, William', '2013-08-27', 77, 'https://www.gutenberg.org/ebooks/43576', 'en', 11005), +(26729, 'A Short History of Monks and Monasteries', 'Wishart, Alfred Wesley', '2004-08-17', 33, 'https://www.gutenberg.org/ebooks/13206', 'en', 11006), +(26730, 'Entretiens (1998-2001)', 'Lebert, Marie', '2008-10-26', 33, 'https://www.gutenberg.org/ebooks/27033', 'fr', 2069), +(26731, 'Neighbors Unknown', 'Roberts, Charles G. D., Sir', '2014-06-16', 17, 'https://www.gutenberg.org/ebooks/46004', 'en', 1787), +(26732, 'Leben und Tod Königs Richard des zweyten', 'Shakespeare, William', '2005-01-01', 27, 'https://www.gutenberg.org/ebooks/7323', 'de', 11007), +(26733, 'The Silence of Colonel Bramble', 'Maurois, André', '2015-09-03', 31, 'https://www.gutenberg.org/ebooks/49870', 'en', 579), +(26734, 'The Misplaced Battleship', 'Harrison, Harry', '2007-09-08', 139, 'https://www.gutenberg.org/ebooks/22541', 'en', 26), +(26735, 'Teuvo Pakkala: Kirjailijakuva', 'Siljo, Juhani', '2005-09-29', 11, 'https://www.gutenberg.org/ebooks/16774', 'fi', 8481), +(26736, 'Charles Sumner: his complete works, volume 15 (of 20)', 'Sumner, Charles', '2015-10-08', 9, 'https://www.gutenberg.org/ebooks/50161', 'en', 429), +(26737, 'Under the Waves: Diving in Deep Waters', 'Ballantyne, R. M. (Robert Michael)', '2007-11-15', 42, 'https://www.gutenberg.org/ebooks/23493', 'en', 11008), +(26738, 'Ludwig Fugeler: Roman', 'Schieber, Anna', '2010-11-23', 6, 'https://www.gutenberg.org/ebooks/34424', 'de', 61), +(26739, 'Collection of Nebraska Pioneer Reminiscences', 'Daughters of the American Revolution. Nebraska', '2011-01-04', 84, 'https://www.gutenberg.org/ebooks/34844', 'en', 11009), +(26740, 'A Journal of the Plague Year\r\nWritten by a Citizen Who Continued All the While in London', 'Defoe, Daniel', '2006-01-16', 547, 'https://www.gutenberg.org/ebooks/376', 'en', 5120), +(26741, 'The Works of Garcilasso de la Vega, Surnamed the Prince of Castilian Poets, Translated into English Verse \r\nWith a Critical and Historical Essay on Spanish Poetry and a Life of the Author', 'Vega, Garcilaso de la', '2015-07-10', 18, 'https://www.gutenberg.org/ebooks/49410', 'en', 11010), +(26742, 'The Death and Burial of Cock Robin', 'Anonymous', '2007-10-08', 31, 'https://www.gutenberg.org/ebooks/22921', 'en', 343), +(26743, 'Robert Elsmere', 'Ward, Humphry, Mrs.', '2005-08-01', 65, 'https://www.gutenberg.org/ebooks/8737', 'en', 1397), +(26744, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 2', NULL, '2004-06-30', 29, 'https://www.gutenberg.org/ebooks/12788', 'en', 19), +(26745, 'The Dawn Patrol, and other poems of an aviator', 'Bewsher, Paul', '2011-04-30', 7, 'https://www.gutenberg.org/ebooks/35996', 'en', 2100), +(26746, 'Six to Sixteen: A Story for Girls', 'Ewing, Juliana Horatia Gatty', '2006-09-23', 33, 'https://www.gutenberg.org/ebooks/19360', 'en', 7579), +(26747, 'Dissertatiunculae Quaedam Critico-Theologicae', 'Newman, John Henry', '2010-10-15', 13, 'https://www.gutenberg.org/ebooks/34078', 'la', 11011), +(26748, 'Mémoires du prince de Talleyrand, Volume 2 (of 5)', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2009-03-29', 28, 'https://www.gutenberg.org/ebooks/28427', 'fr', 4438), +(26749, 'Nothing But the Truth', 'Isham, Frederic Stewart', '2013-10-09', 42, 'https://www.gutenberg.org/ebooks/43916', 'en', 637), +(26750, 'Beowulf: An Anglo-Saxon Epic Poem', NULL, '2005-07-19', 6798, 'https://www.gutenberg.org/ebooks/16328', 'en', 8628), +(26751, 'Laughing Last', 'Abbott, Jane', '2014-07-31', 23, 'https://www.gutenberg.org/ebooks/46458', 'en', 751), +(26752, 'Eri uria', 'Maria', '2017-11-01', 4, 'https://www.gutenberg.org/ebooks/55873', 'fi', 61), +(26753, 'The Mystery of Monastery Farm', 'Naylor, H. R.', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11931', 'en', 61), +(26754, 'The Practitioner. May, 1869.\nA Monthly Journal of Therapeutics', 'Various', '2019-06-05', 20, 'https://www.gutenberg.org/ebooks/59682', 'en', 3905), +(26755, 'Winnetou I', 'May, Karl', '2007-04-12', 65, 'https://www.gutenberg.org/ebooks/21798', 'de', 5458), +(26756, 'Superstition and Force\r\nEssays on the Wager of Law, the Wager of Battle, the Ordeal, Torture', 'Lea, Henry Charles', '2019-01-22', 9, 'https://www.gutenberg.org/ebooks/58750', 'en', 11012), +(26757, 'State of the Union Addresses', 'Arthur, Chester Alan', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/5028', 'en', 1926), +(26758, 'The Idea of God in Early Religions', 'Jevons, F. B. (Frank Byron)', '2008-05-05', 13, 'https://www.gutenberg.org/ebooks/25338', 'en', 8066), +(26759, 'The Expositor\'s Bible: The Book of Isaiah, Volume 1 (of 2)', 'Smith, George Adam', '2012-05-22', 32, 'https://www.gutenberg.org/ebooks/39767', 'en', 11013), +(26760, 'The True Story of Christopher Columbus, Called the Great Admiral', 'Brooks, Elbridge S. (Elbridge Streeter)', '2006-02-15', 43, 'https://www.gutenberg.org/ebooks/1488', 'en', 11014), +(26761, 'Following the Equator: A Journey Around the World. Part 7', 'Twain, Mark', '2004-06-24', 7, 'https://www.gutenberg.org/ebooks/5814', 'en', 3614), +(26762, 'Index of the Project Gutenberg Works of Frank L. Packard', 'Packard, Frank L. (Frank Lucius)', '2018-08-18', 8, 'https://www.gutenberg.org/ebooks/57718', 'en', 198), +(26763, 'Trevethlan: A Cornish Story. Volume 1 (of 3)', 'Watson, William Davy', '2010-06-27', 15, 'https://www.gutenberg.org/ebooks/32981', 'en', 166), +(26764, 'Isle of Wight', 'Moncrieff, A. R. Hope (Ascott Robert Hope)', '2016-05-13', 4, 'https://www.gutenberg.org/ebooks/52058', 'en', 2869), +(26765, 'Kaleri-orja: Kertomus rahvaan perheille', 'Zschokke, Heinrich', '2008-06-30', 3, 'https://www.gutenberg.org/ebooks/25936', 'fi', 61), +(26766, 'Strong Souls\nA Sermon', 'Beard, Charles', '2007-01-29', 17, 'https://www.gutenberg.org/ebooks/20478', 'en', 2386), +(26767, 'From Grieg to Brahms: Studies of Some Modern Composers and Their Art', 'Mason, Daniel Gregory', '2018-12-29', 11, 'https://www.gutenberg.org/ebooks/58562', 'en', 5339), +(26768, 'Jessica Trent: Her Life on a Ranch', 'Raymond, Evelyn', '2010-10-11', 12, 'https://www.gutenberg.org/ebooks/33853', 'en', 6766), +(26769, 'Un Cadet de Famille, v. 3/3', 'Trelawny, Edward John', '2012-04-28', 14, 'https://www.gutenberg.org/ebooks/39555', 'fr', 11015), +(26770, 'Bessbrook and Its Linen Mills: A Short Narrative of a Model Temperance Town', 'Ritchie, J. Ewing (James Ewing)', '2016-08-21', 3, 'https://www.gutenberg.org/ebooks/52864', 'en', 11016), +(26771, 'Colin Clink, Volume 1 (of 3)', 'Hooton, Charles', '2014-02-14', 45, 'https://www.gutenberg.org/ebooks/44901', 'en', 45), +(26772, 'The Critical Game', 'Macy, John Albert', '2012-01-03', 31, 'https://www.gutenberg.org/ebooks/38487', 'en', 2156), +(26773, 'Tarnished Silver', 'Outram, Mary Frances', '2013-07-26', 3, 'https://www.gutenberg.org/ebooks/43318', 'en', 4927), +(26774, 'The New Jerusalem', 'Chesterton, G. K. (Gilbert Keith)', '2004-09-15', 159, 'https://www.gutenberg.org/ebooks/13468', 'en', 3997), +(26775, 'The Voyage Out', 'Woolf, Virginia', '2006-01-12', 418, 'https://www.gutenberg.org/ebooks/144', 'en', 348), +(26776, 'Normandy Picturesque', 'Blackburn, Henry', '2006-03-30', 8, 'https://www.gutenberg.org/ebooks/18080', 'en', 6545), +(26777, 'Le journal d\'une pensionnaire en vacances', 'Dondel Du Faouëdic, Noémie', '2006-08-31', 18, 'https://www.gutenberg.org/ebooks/19152', 'fr', 885), +(26778, 'Handbook of Birmingham\nPrepared for the Members of the British Association, 1886', 'British Association for the Advancement of Science', '2015-08-05', 9, 'https://www.gutenberg.org/ebooks/49622', 'en', 11017), +(26779, 'Skookum Chuck Fables: Bits of History, Through the Microscope', 'Cumming, R. D. (Robert Dalziel)', '2005-10-23', 12, 'https://www.gutenberg.org/ebooks/16926', 'en', 3963), +(26780, 'The Rebellion in the Cevennes, an Historical Novel. Vol. I.', 'Tieck, Ludwig', '2010-03-22', 6, 'https://www.gutenberg.org/ebooks/31738', 'en', 11018), +(26781, 'Normandy, Illustrated, Complete', 'Home, Gordon', '2004-08-12', 12, 'https://www.gutenberg.org/ebooks/8505', 'en', 6545), +(26782, 'The Rise of David Levinsky', 'Cahan, Abraham', '2001-09-01', 33, 'https://www.gutenberg.org/ebooks/2803', 'en', 11019), +(26783, 'The Flaw in the Crystal', 'Sinclair, May', '2009-04-26', 21, 'https://www.gutenberg.org/ebooks/28615', 'en', 114), +(26784, 'The Yates Pride: A Romance', 'Freeman, Mary Eleanor Wilkins', '1997-07-01', 41, 'https://www.gutenberg.org/ebooks/978', 'en', 61), +(26785, 'Encyclopaedia Britannica, 11th Edition, \"Equation\" to \"Ethics\"\r\nVolume 9, Slice 7', 'Various', '2011-02-25', 40, 'https://www.gutenberg.org/ebooks/35398', 'en', 1081), +(26786, 'Nightmare Tales', 'Blavatsky, H. P. (Helena Petrovna)', '2014-01-01', 99, 'https://www.gutenberg.org/ebooks/44559', 'en', 408), +(26787, 'Acid Rain and Our Nation\'s Capital: A Guide to Effects on Buildings and Monuments', 'McGee, E. S.', '2018-09-25', 12, 'https://www.gutenberg.org/ebooks/57972', 'en', 11020), +(26788, 'A Second Letter to the Bishop of Exeter', 'Alderson, Edward Hall, Sir', '2018-10-15', 8, 'https://www.gutenberg.org/ebooks/58106', 'en', 11021), +(26789, 'Punch, or the London Charivari, Volume 101, November 21, 1891', 'Various', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/14229', 'en', 134), +(26790, 'John Marvel, Assistant', 'Page, Thomas Nelson', '2013-01-10', 23, 'https://www.gutenberg.org/ebooks/41817', 'en', 61), +(26791, 'The Rover Boys on a Tour; or, Last Days at Brill College', 'Stratemeyer, Edward', '2011-05-22', 21, 'https://www.gutenberg.org/ebooks/36179', 'en', 3529), +(26792, 'La Cour de Louis XIV', 'Imbert de Saint-Amand', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10689', 'fr', 1870), +(26793, 'Villages of the Algonquian, Siouan, and Caddoan Tribes West of the Mississippi', 'Bushnell, David I. (David Ives)', '2011-11-01', 11, 'https://www.gutenberg.org/ebooks/37897', 'en', 11022), +(26794, 'Larawan: Mga Sugilanon ug Dinalídalí', 'Rama, Vincente', '2007-03-14', 9, 'https://www.gutenberg.org/ebooks/20820', 'ceb', 61), +(26795, 'The Book of the Little Past', 'Peabody, Josephine Preston', '2012-03-13', 3, 'https://www.gutenberg.org/ebooks/39131', 'en', 8), +(26796, 'A Tatter of Scarlet: Adventurous Episodes of the Commune in the Midi 1871', 'Crockett, S. R. (Samuel Rutherford)', '2011-08-02', 11, 'https://www.gutenberg.org/ebooks/36945', 'en', 323), +(26797, 'American Historical and Literary Curiosities, Part 15.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 10, 'https://www.gutenberg.org/ebooks/7915', 'en', 1587), +(26798, 'Le pacha trompé ou Les deux ours\r\nPièce comique en un acte', 'Doin, Ernest', '2006-10-13', 10, 'https://www.gutenberg.org/ebooks/19536', 'fr', 11023), +(26799, 'The Theory of Environment\r\nAn Outline of the History of the Idea of Milieu, and Its Present Status, part 1', 'Koller, Armin Hajman', '2017-09-24', 7, 'https://www.gutenberg.org/ebooks/55619', 'en', 11024), +(26800, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 707, July 14, 1877', 'Various', '2015-06-20', 7, 'https://www.gutenberg.org/ebooks/49246', 'en', 18), +(26801, 'Fragments of Ancient Poetry', 'Macpherson, James', '2005-05-01', 43, 'https://www.gutenberg.org/ebooks/8161', 'en', 11025), +(26802, 'Essays of Michel de Montaigne — Volume 09', 'Montaigne, Michel de', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/3589', 'en', 1964), +(26803, 'An Account of the Insects Noxious to Agriculture and Plants in New Zealand\nThe Scale Insects (Coccididae)', 'Maskell, William Miles', '2015-03-01', 11, 'https://www.gutenberg.org/ebooks/48394', 'en', 11026), +(26804, 'The Life and Adventures of Santa Claus', 'Baum, L. Frank (Lyman Frank)', '1996-05-01', 256, 'https://www.gutenberg.org/ebooks/520', 'en', 585), +(26805, 'Little Downy: The History of a Field-Mouse', 'Traill, Catharine Parr Strickland', '2008-11-12', 18, 'https://www.gutenberg.org/ebooks/27239', 'en', 1132), +(26806, 'The Prospective Mother, a Handbook for Women During Pregnancy', 'Slemons, J. Morris (Josiah Morris)', '2004-12-01', 93, 'https://www.gutenberg.org/ebooks/7129', 'en', 3793), +(26807, 'Abijah\'s Bubble', 'Smith, Francis Hopkinson', '2007-12-03', 12, 'https://www.gutenberg.org/ebooks/23699', 'en', 6202), +(26808, 'Seven Miles to Arden', 'Sawyer, Ruth', '2009-03-07', 16, 'https://www.gutenberg.org/ebooks/28271', 'en', 348), +(26809, 'The Wreck of the Hesperus', 'Longfellow, Henry Wadsworth', '2004-10-22', 96, 'https://www.gutenberg.org/ebooks/13830', 'en', 11027), +(26810, 'The Garden of Memories', 'Cooper, Henry St. John', '2015-05-29', 10, 'https://www.gutenberg.org/ebooks/49074', 'en', 1902), +(26811, 'The Bible, Douay-Rheims, Book 53: 1 Corinthians\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8353', 'en', 8741), +(26812, 'The Legendary History of the Cross\r\nA Series of Sixty-four Woodcuts from a Dutch Book Published by Veldener, A.D. 1483', NULL, '2014-09-07', 27, 'https://www.gutenberg.org/ebooks/46800', 'en', 11028), +(26813, 'A Pocket Dictionary: Welsh-English', 'Richards, William', '2006-11-02', 45, 'https://www.gutenberg.org/ebooks/19704', 'cy', 11029), +(26814, 'Thomas Jefferson, a Character Sketch', 'Ellis, Edward Sylvester', '2006-01-21', 78, 'https://www.gutenberg.org/ebooks/712', 'en', 1009), +(26815, 'Märchen (Illustriert von Alfred Kubin)', 'Andersen, H. C. (Hans Christian)', '2016-01-19', 79, 'https://www.gutenberg.org/ebooks/50965', 'de', 1007), +(26816, 'The Hermit and the Wild Woman, and Other Stories', 'Wharton, Edith', '2005-11-01', 8, 'https://www.gutenberg.org/ebooks/9281', 'en', 112), +(26817, 'The Life and Adventures of Baron Trenck, Volume 2', 'Trenck, Friedrich, Freiherr von der', '2001-06-01', 19, 'https://www.gutenberg.org/ebooks/2669', 'en', 11030), +(26818, 'Bread Overhead', 'Leiber, Fritz', '2007-09-11', 79, 'https://www.gutenberg.org/ebooks/22579', 'en', 179), +(26819, 'The Man Who Ended War', 'Godfrey, Hollis', '2015-09-01', 11, 'https://www.gutenberg.org/ebooks/49848', 'en', 26), +(26820, 'Le cheval sauvage', 'Reid, Mayne', '2009-06-21', 10, 'https://www.gutenberg.org/ebooks/29191', 'fr', 323), +(26821, 'Mémoires du prince de Talleyrand, Volume 4 (of 5)', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2010-04-11', 22, 'https://www.gutenberg.org/ebooks/31952', 'fr', 4438), +(26822, 'Adèle de Sénange', 'Souza-Botelho, Adélaïde-Marie-Emilie Filleul, marquise de', '2009-01-19', 14, 'https://www.gutenberg.org/ebooks/27837', 'fr', 5128), +(26823, 'Charles Sumner: his complete works, volume 13 (of 20)', 'Sumner, Charles', '2015-10-08', 31, 'https://www.gutenberg.org/ebooks/50159', 'en', 125), +(26824, 'Pope Adrian IV: An Historical Sketch', 'Raby, Richard', '2010-01-07', 12, 'https://www.gutenberg.org/ebooks/30880', 'en', 11031), +(26825, 'Ships in Harbour', 'Morton, David', '2009-02-09', 5, 'https://www.gutenberg.org/ebooks/28043', 'en', 8), +(26826, 'The Jewel House: An Account of the Many Romances Connected with the Royal Regalia\r\nTogether with Sir Gilbert Talbot\'s Account of Colonel Blood\'s Plot', 'Younghusband, G. J. (George John)', '2018-11-24', 7, 'https://www.gutenberg.org/ebooks/58334', 'en', 11032), +(26827, 'Talks to Freshman Girls', 'Brown, Helen Dawes', '2011-09-03', 16, 'https://www.gutenberg.org/ebooks/37299', 'en', 3605), +(26828, 'Étude sur Shakspeare', 'Guizot, François', '2005-01-28', 21, 'https://www.gutenberg.org/ebooks/14827', 'fr', 3360), +(26829, 'The Subspecific Status of Two Central American Sloths', 'Kelson, Keith R.', '2010-09-05', 10, 'https://www.gutenberg.org/ebooks/33639', 'en', 11033), +(26830, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 547, May 19, 1832', 'Various', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11569', 'en', 133), +(26831, 'The Memoirs of Jacques Casanova de Seingalt, Vol. III (of VI), \"The Eternal Quest\"\r\nThe First Complete and Unabridged English Translation, Illustrated with Old Engravings', 'Casanova, Giacomo', '2012-03-29', 11, 'https://www.gutenberg.org/ebooks/39303', 'en', 4164), +(26832, 'Stories of Useful Inventions', 'Forman, S. E. (Samuel Eagle)', '2012-10-29', 12, 'https://www.gutenberg.org/ebooks/41219', 'en', 1739), +(26833, 'The Emigrant', 'Dostoevskaia, L. F. (Liubov Fedorovna)', '2018-09-28', 38, 'https://www.gutenberg.org/ebooks/57986', 'en', 109), +(26834, 'The Early History of the Scottish Union Question\nBi-Centenary Edition', 'Omond, George W. T. (George William Thomson)', '2012-10-04', 12, 'https://www.gutenberg.org/ebooks/40931', 'en', 11034), +(26835, 'Fifty Years Ago', 'Besant, Walter', '2019-03-06', 24, 'https://www.gutenberg.org/ebooks/59020', 'en', 3967), +(26836, 'A kik kétszer halnak meg (1. rész)\nRegény', 'Jókai, Mór', '2018-03-27', 3, 'https://www.gutenberg.org/ebooks/56854', 'hu', 234), +(26837, 'Late Lyrics and Earlier, With Many Other Verses', 'Hardy, Thomas', '2003-12-01', 48, 'https://www.gutenberg.org/ebooks/4758', 'en', 54), +(26838, 'Om en door den Peloponnesus\nDe Aarde en haar Volken, 1909', 'Jandin, B. de', '2008-01-28', 14, 'https://www.gutenberg.org/ebooks/24448', 'nl', 4713), +(26839, 'Essex Terraplane Six 1933 Owner\'s Manual of Information', 'Hudson Motor Car Company', '2011-10-27', 12, 'https://www.gutenberg.org/ebooks/37863', 'en', 11035), +(26840, 'Schools, School-Books and Schoolmasters\r\nA Contribution to the History of Educational Development in Great Britain', 'Hazlitt, William Carew', '2011-11-15', 15, 'https://www.gutenberg.org/ebooks/38017', 'en', 11036), +(26841, 'Cádiz', 'Pérez Galdós, Benito', '2007-06-23', 46, 'https://www.gutenberg.org/ebooks/21906', 'es', 11037), +(26842, 'Der Luftpirat und sein lenkbares Luftschiff 63: Die Schreckensreise des Weltenfahrzeuges', 'Anonymous', '2017-11-28', 13, 'https://www.gutenberg.org/ebooks/56068', 'de', 26), +(26843, 'Scientific American Supplement, No. 275, April 9, 1881', 'Various', '2005-05-01', 22, 'https://www.gutenberg.org/ebooks/8195', 'en', 210), +(26844, 'The Banks of Wye: A Poem', 'Bloomfield, Robert', '2005-10-01', 17, 'https://www.gutenberg.org/ebooks/9047', 'en', 11038), +(26845, 'Vrakets hemmelighet', 'Stevenson, Robert Louis', '2013-09-21', 33, 'https://www.gutenberg.org/ebooks/43788', 'no', 11039), +(26846, 'Chimneys & Fireplaces\r\nThey Contribute to the Health Comfort and Happiness of the Farm Family - How to Build Them', 'Daniels, Ara Marcus', '2015-02-25', 26, 'https://www.gutenberg.org/ebooks/48360', 'en', 5534), +(26847, 'The Canadian\r\nPhotoplay title of The Land of Promise', 'Torbett, D.', '2006-05-17', 24, 'https://www.gutenberg.org/ebooks/18410', 'en', 65), +(26848, 'Der Waldbruder, ein Pendant zu Werthers Leiden', 'Lenz, Jakob Michael Reinhold', '2004-11-01', 28, 'https://www.gutenberg.org/ebooks/6833', 'de', 5532), +(26849, 'The Secret History of the Court of Justinian', 'Procopius', '2004-07-16', 132, 'https://www.gutenberg.org/ebooks/12916', 'en', 11040), +(26850, 'A Character of King Charles the Second\r\nAnd Political, Moral and Miscellaneous Thoughts and Reflections', 'Halifax, George Savile, Marquis of', '2011-03-29', 10, 'https://www.gutenberg.org/ebooks/35708', 'en', 11041), +(26851, 'Our Young Folks at Home and Abroad', NULL, '2009-07-08', 10, 'https://www.gutenberg.org/ebooks/29357', 'en', 4424), +(26852, 'Le Roman Historique a l\'Epoque Romantique - Essai sur l\'Influence de Walter Scott', 'Maigron, Louis', '2006-01-04', 10, 'https://www.gutenberg.org/ebooks/17458', 'fr', 4512), +(26853, 'The Atlantic Monthly, Volume 20, No. 121, November, 1867\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2009-03-09', 12, 'https://www.gutenberg.org/ebooks/28285', 'en', 1227), +(26854, 'Cronaca della rivoluzione di Milano', 'Tettoni, Leone', '2014-11-11', 6, 'https://www.gutenberg.org/ebooks/47328', 'it', 11042), +(26855, 'Catalogue of Messrs Blackwood and Sons\' Publications\r\nPublished in 1868 as a Part of The Handy Horse-Book by Maurice Hartland Mahon', 'William Blackwood and Sons', '2013-04-04', 12, 'https://www.gutenberg.org/ebooks/42468', 'en', 11043), +(26856, 'Closing In: Marines in the Seizure of Iwo Jima', 'Alexander, Joseph H.', '2015-05-30', 73, 'https://www.gutenberg.org/ebooks/49080', 'en', 4861), +(26857, 'Graham\'s Magazine Vol XXXIII No. 2 August 1848', 'Various', '2009-09-10', 15, 'https://www.gutenberg.org/ebooks/29959', 'en', 162), +(26858, 'The Oregon Question', 'Gallatin, Albert', '2016-04-23', 8, 'https://www.gutenberg.org/ebooks/51843', 'en', 11044), +(26859, 'A Compilation of the Messages and Papers of the Presidents. Volume 8, part 1: James A. Garfield', NULL, '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12318', 'en', 1720), +(26860, 'Captain Sam: The Boy Scouts of 1814', 'Eggleston, George Cary', '2006-06-19', 13, 'https://www.gutenberg.org/ebooks/18622', 'en', 3858), +(26861, 'Harper\'s Young People, July 5, 1881\nAn Illustrated Weekly', 'Various', '2015-01-09', 11, 'https://www.gutenberg.org/ebooks/47926', 'en', 479), +(26862, 'A Tale of a Tub', 'Swift, Jonathan', '2005-11-01', 1, 'https://www.gutenberg.org/ebooks/9275', 'en', 1971), +(26863, 'Fifteen Months in Dixie; Or, My Personal Experience in Rebel Prisons', 'Day, William W.', '2016-01-21', 1, 'https://www.gutenberg.org/ebooks/50991', 'en', 2363), +(26864, 'The Contemporary Review, Volume 36, September 1879', 'Various', '2009-09-20', 7, 'https://www.gutenberg.org/ebooks/30048', 'en', 11045), +(26865, 'A History of Inventions, Discoveries, and Origins, Volume 2 (of 2)', 'Beckmann, Johann', '2015-02-04', 33, 'https://www.gutenberg.org/ebooks/48152', 'en', 6792), +(26866, 'The American Missionary — Volume 38, No. 01, January, 1884', 'Various', '2009-06-19', 8, 'https://www.gutenberg.org/ebooks/29165', 'en', 395), +(26867, 'Crooked Trails and Straight', 'Raine, William MacLeod', '2008-10-13', 47, 'https://www.gutenberg.org/ebooks/26911', 'en', 315), +(26868, 'The Land of Look Behind', 'Brown, Paul Cameron', '2010-01-06', 11, 'https://www.gutenberg.org/ebooks/30874', 'en', 2261), +(26869, 'Peace Manoeuvres', 'Davis, Richard Harding', '2006-05-12', 3, 'https://www.gutenberg.org/ebooks/1824', 'en', 61), +(26870, 'Asiatic Cholera: A treatise on its origin, pathology, treatment, and cure', 'Whitney, Elijah', '2016-12-14', 10, 'https://www.gutenberg.org/ebooks/53728', 'en', 11046), +(26871, 'A Short History of Astronomy', 'Berry, Arthur', '2019-04-05', 33, 'https://www.gutenberg.org/ebooks/59212', 'en', 1590), +(26872, 'First in the Field: A Story of New South Wales', 'Fenn, George Manville', '2007-05-04', 14, 'https://www.gutenberg.org/ebooks/21308', 'en', 11047), +(26873, 'The Water-Babies', 'Kingsley, Charles', '1997-08-01', 198, 'https://www.gutenberg.org/ebooks/1018', 'en', 11048), +(26874, 'Le notaire de Chantilly', 'Gozlan, Léon', '2011-12-05', 9, 'https://www.gutenberg.org/ebooks/38225', 'fr', 11049), +(26875, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 6, De La Isla De Cuba, III', NULL, '2018-06-24', 23, 'https://www.gutenberg.org/ebooks/57388', 'es', 2194), +(26876, 'A Minniature ov Inglish Orthoggraphy', 'Elphinston, James', '2005-05-25', 15, 'https://www.gutenberg.org/ebooks/15901', 'en', 11050), +(26877, 'A History of North American Birds; Land Birds; Vol. 3 of 3', 'Ridgway, Robert', '2017-02-15', 7, 'https://www.gutenberg.org/ebooks/54169', 'en', 1333), +(26878, 'Edinburgh: Picturesque Notes', 'Stevenson, Robert Louis', '1995-12-01', 60, 'https://www.gutenberg.org/ebooks/382', 'en', 4460), +(26879, 'Kuninkaan-alut: Historiallinen näytelmä viidessä näytöksessä', 'Ibsen, Henrik', '2006-04-24', 17, 'https://www.gutenberg.org/ebooks/18246', 'fi', 3671), +(26880, 'Joseph Andrews, Vol. 1', 'Fielding, Henry', '2006-01-01', 168, 'https://www.gutenberg.org/ebooks/9611', 'en', 1080), +(26881, 'The Motor Boys on the Border; Or, Sixty Nuggets of Gold', 'Young, Clarence', '2015-03-20', 12, 'https://www.gutenberg.org/ebooks/48536', 'en', 5027), +(26882, 'The Uncle Of An Angel\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 17, 'https://www.gutenberg.org/ebooks/23807', 'en', 770), +(26883, 'Caps and Capers: A Story of Boarding-School Life', 'Jackson, Gabrielle E. (Gabrielle Emilie)', '2008-09-07', 21, 'https://www.gutenberg.org/ebooks/26549', 'en', 1388), +(26884, 'You\'ll git dar in de mornin\'', 'Stanton, Frank Lebby', '2006-09-27', 33, 'https://www.gutenberg.org/ebooks/19394', 'en', 11051), +(26885, 'Socialism, Revolution and Internationalism', 'Deville, Gabriel Pierre', '2011-04-25', 20, 'https://www.gutenberg.org/ebooks/35962', 'en', 254), +(26886, 'The Suffragette: The History of the Women\'s Militant Suffrage Movement, 1905-1910', 'Pankhurst, E. Sylvia (Estelle Sylvia)', '2017-06-21', 39, 'https://www.gutenberg.org/ebooks/54955', 'en', 4223), +(26887, 'History of King Charles the Second of England', 'Abbott, Jacob', '2004-10-01', 47, 'https://www.gutenberg.org/ebooks/6659', 'en', 11052), +(26888, 'Negro Migration during the War', 'Scott, Emmett J. (Emmett Jay)', '2009-07-24', 23, 'https://www.gutenberg.org/ebooks/29501', 'en', 11053), +(26889, 'Chicago, Satan\'s Sanctum', 'Curon, L. O.', '2013-05-28', 32, 'https://www.gutenberg.org/ebooks/42830', 'en', 11054), +(26890, 'Manual of Library Cataloguing', 'Quinn, John Henry', '2017-11-04', 5, 'https://www.gutenberg.org/ebooks/55887', 'en', 11055), +(26891, 'Mesopotamian Archaeology\nAn introduction to the archaeology of Mesopotamia and Assyria', 'Handcock, Percy S. P. (Percy Stuart Peache)', '2014-03-26', 55, 'https://www.gutenberg.org/ebooks/45229', 'en', 11056), +(26892, 'Robur der Sieger', 'Verne, Jules', '2005-04-06', 37, 'https://www.gutenberg.org/ebooks/15559', 'de', 26), +(26893, 'Busy Ben and Idle Isaac', 'Unknown', '2019-06-05', 32, 'https://www.gutenberg.org/ebooks/59676', 'en', 1817), +(26894, 'Anne Severn and the Fieldings', 'Sinclair, May', '2004-01-01', 54, 'https://www.gutenberg.org/ebooks/10817', 'en', 5530), +(26895, 'The Story of Great Inventions', 'Burns, Elmer Ellsworth', '2011-10-03', 40, 'https://www.gutenberg.org/ebooks/37609', 'en', 6792), +(26896, 'A Knight of the White Cross: A Tale of the Siege of Rhodes', 'Henty, G. A. (George Alfred)', '2004-01-01', 79, 'https://www.gutenberg.org/ebooks/4932', 'en', 11057), +(26897, 'Gioia!', 'Vivanti, Annie', '2012-05-25', 17, 'https://www.gutenberg.org/ebooks/39793', 'it', 474), +(26898, 'With an Ambulance During the Franco-German War\r\nPersonal Experiences and Adventures with Both Armies, 1870-1871', 'Ryan, Charles Edward', '2012-12-22', 6, 'https://www.gutenberg.org/ebooks/41689', 'en', 11058), +(26899, 'Édes anyaföldem! : Egy nép s egy ember története (1. kötet)', 'Benedek, Elek', '2012-01-22', 14, 'https://www.gutenberg.org/ebooks/38641', 'hu', 11059), +(26900, 'William the Conqueror and the Rule of the Normans', 'Stenton, F. M. (Frank Merry)', '2019-05-08', 49, 'https://www.gutenberg.org/ebooks/59444', 'en', 11060), +(26901, 'Encyclopaedia Britannica, 11th Edition, \"Calhoun\" to \"Camoens\"\r\nVolume 5, Slice 1', 'Various', '2010-06-25', 37, 'https://www.gutenberg.org/ebooks/32975', 'en', 1081); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(26902, 'The Better Germany in War Time: Being Some Facts Towards Fellowship', 'Picton, Harold W. (Harold Williams)', '2008-03-12', 15, 'https://www.gutenberg.org/ebooks/24810', 'en', 1390), +(26903, 'Character Sketches of Romance, Fiction, and the Drama, Vol. 2 (of 4)\r\nA Revised American Edition of the Reader\'s Handbook', 'Brewer, Ebenezer Cobham', '2019-01-01', 5, 'https://www.gutenberg.org/ebooks/58596', 'en', 11061), +(26904, 'Unbegotten Child', 'Marks, Winston K. (Winston Kinney)', '2010-04-27', 32, 'https://www.gutenberg.org/ebooks/32149', 'en', 179), +(26905, 'Kuinka meistä tuli kirjailijoita: Suomalaisten kirjailijoiden nuoruudenmuistelmia', 'Various', '2016-08-25', 6, 'https://www.gutenberg.org/ebooks/52890', 'fi', 11062), +(26906, 'The Impossibilities of Anarchism', 'Shaw, Bernard', '2014-05-30', 38, 'https://www.gutenberg.org/ebooks/45827', 'en', 11063), +(26907, 'The Declaration of Independence of the United States of America', 'Jefferson, Thomas', '1971-12-01', 840, 'https://www.gutenberg.org/ebooks/1', 'en', 5768), +(26908, 'The Poetical Works of William Wordsworth — Volume 1 (of 8)', 'Wordsworth, William', '2003-11-01', 134, 'https://www.gutenberg.org/ebooks/10219', 'en', 532), +(26909, 'Tales of Mean Streets', 'Morrison, Arthur', '2012-08-23', 53, 'https://www.gutenberg.org/ebooks/40569', 'en', 11064), +(26910, 'Talvi-iltain tarinoita 2\r\nVinsentti Aallonhalkoja. Aulangon pastorinvaali. Mirabeau täti.', 'Topelius, Zacharias', '2012-01-02', 12, 'https://www.gutenberg.org/ebooks/38473', 'fi', 2168), +(26911, 'Letters from a Landscape Painter', 'Lanman, Charles', '2017-01-11', 16, 'https://www.gutenberg.org/ebooks/53942', 'en', 11065), +(26912, 'Life\'s Little Ironies\r\nA set of tales with some colloquial sketches entitled A Few Crusted Characters', 'Hardy, Thomas', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9423', 'en', 409), +(26913, 'Wych Hazel', 'Warner, Susan', '2006-02-19', 30, 'https://www.gutenberg.org/ebooks/17800', 'en', 2530), +(26914, 'Autobiography of Matthew Scott, Jumbo\'s Keeper; Also Jumbo\'s Biography, by the same Author', 'Scott, Matthew', '2015-04-14', 8, 'https://www.gutenberg.org/ebooks/48704', 'en', 11066), +(26915, 'Le cycle patibulaire', 'Eekhoud, Georges', '2006-03-29', 21, 'https://www.gutenberg.org/ebooks/18074', 'fr', 61), +(26916, 'Dealing in Futures: A Play in Three Acts', 'Brighouse, Harold', '2017-08-07', 5, 'https://www.gutenberg.org/ebooks/55289', 'en', 11067), +(26917, 'What Is Your Culture to Me?', 'Warner, Charles Dudley', '2004-12-05', 15, 'https://www.gutenberg.org/ebooks/3119', 'en', 20), +(26918, 'The Life of Friedrich Schiller\nComprehending an Examination of His Works', 'Carlyle, Thomas', '2007-10-27', 19, 'https://www.gutenberg.org/ebooks/23209', 'en', 4298), +(26919, 'The Continental Monthly, Vol. 5, No. 3, March, 1864\r\nDevoted to Literature and National Policy', 'Various', '2006-07-17', 8, 'https://www.gutenberg.org/ebooks/18848', 'en', 558), +(26920, 'The Farmer and His Community', 'Sanderson, Dwight', '2009-08-19', 18, 'https://www.gutenberg.org/ebooks/29733', 'en', 2087), +(26921, 'Monsieur, Madame, and Bébé — Volume 03', 'Droz, Gustave', '2003-04-01', 14, 'https://www.gutenberg.org/ebooks/3925', 'en', 1155), +(26922, 'Delaware; or, The Ruined Family. Vol. 2', 'James, G. P. R. (George Payne Rainsford)', '2016-04-02', 3, 'https://www.gutenberg.org/ebooks/51629', 'en', 61), +(26923, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 566, September 15, 1832', 'Various', '2004-11-11', 4, 'https://www.gutenberg.org/ebooks/14024', 'en', 133), +(26924, 'Die schönsten Geschichten der Lagerlöf', 'Lagerlöf, Selma', '2006-12-29', 27, 'https://www.gutenberg.org/ebooks/20211', 'de', 4184), +(26925, 'Cleopatra — Volume 01', 'Ebers, Georg', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/5473', 'en', 984), +(26926, 'A Manual for Teaching Biblical History', 'Kohn, Eugene', '2014-01-26', 9, 'https://www.gutenberg.org/ebooks/44754', 'en', 11068), +(26927, 'Blackwood\'s Edinburgh Magazine, Vol. 68, No 422, December 1850', 'Various', '2014-05-18', 8, 'https://www.gutenberg.org/ebooks/45686', 'en', 274), +(26928, 'Wives and Widows; or, The Broken Life', 'Stephens, Ann S. (Ann Sophia)', '2011-06-11', 17, 'https://www.gutenberg.org/ebooks/36374', 'en', 61), +(26929, 'The Far North: Exploration in the Arctic Regions', 'Kane, Elisha Kent', '2016-07-23', 9, 'https://www.gutenberg.org/ebooks/52631', 'en', 11069), +(26930, 'The Daughter of Anderson Crow', 'McCutcheon, George Barr', '2005-01-27', 13, 'https://www.gutenberg.org/ebooks/14818', 'en', 2287), +(26931, 'The Fairy School of Castle Frank', 'Balfour, Grant', '2010-09-02', 9, 'https://www.gutenberg.org/ebooks/33606', 'en', 625), +(26932, 'The Negro in Chicago: A Study of Race Relations and a Race Riot', 'Chicago Commission on Race Relations', '2018-06-17', 80, 'https://www.gutenberg.org/ebooks/57343', 'en', 11070), +(26933, 'Beacon Lights of History, Volume 03: Ancient Achievements', 'Lord, John', '2003-12-01', 41, 'https://www.gutenberg.org/ebooks/10484', 'en', 7868), +(26934, '\'Murphy\': A Message to Dog Lovers', 'Gambier-Parry, Ernest', '2008-06-12', 20, 'https://www.gutenberg.org/ebooks/25763', 'en', 729), +(26935, 'Facing the Flag', 'Verne, Jules', '2004-03-01', 37, 'https://www.gutenberg.org/ebooks/11556', 'en', 11071), +(26936, '老殘遊記續集', 'Liu, E', '2018-01-02', 31, 'https://www.gutenberg.org/ebooks/56291', 'zh', 1003), +(26937, 'Correspondance diplomatique de Bertrand de Salignac de La Mothe Fénélon, Tome Cinquième\nAmbassadeur de France en Angleterre de 1568 à 1575', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2012-10-29', 47, 'https://www.gutenberg.org/ebooks/41226', 'fr', 7548), +(26938, 'The English Novel in the Time of Shakespeare', 'Jusserand, J. J. (Jean Jules)', '2010-02-01', 26, 'https://www.gutenberg.org/ebooks/31151', 'en', 11072), +(26939, 'The New Eschatology\r\nShowing the Indestructibility of the Earth and the Wide Difference Between the Letter and Spirit of Holy Scripture.', 'Pegg, J. G. Broughton', '2016-04-29', 3, 'https://www.gutenberg.org/ebooks/51888', 'en', 7522), +(26940, 'The Sheridan Road Mystery', 'Thorne, Mabel', '2003-02-01', 26, 'https://www.gutenberg.org/ebooks/3784', 'en', 5319), +(26941, 'Punch, or the London Charivari, Volume 98, March 1, 1890', 'Various', '2009-09-14', 9, 'https://www.gutenberg.org/ebooks/29992', 'en', 134), +(26942, 'Grand Teton: A Guide to Grand Teton National Park, Wyoming', 'United States. National Park Service', '2017-08-23', 27, 'https://www.gutenberg.org/ebooks/55414', 'en', 11073), +(26943, 'Entrevistas (1998-2001)', 'Lebert, Marie', '2008-10-26', 21, 'https://www.gutenberg.org/ebooks/27034', 'es', 2069), +(26944, 'Evelyn Innes', 'Moore, George', '2004-08-17', 33, 'https://www.gutenberg.org/ebooks/13201', 'en', 1397), +(26945, 'The Mother of Washington and Her Times', 'Pryor, Sara Agnes Rice', '2013-08-27', 16, 'https://www.gutenberg.org/ebooks/43571', 'en', 11074), +(26946, 'The Island of Dr. Moreau', 'Wells, H. G. (Herbert George)', '2009-05-01', 22, 'https://www.gutenberg.org/ebooks/28840', 'en', 1592), +(26947, 'Hester: A Story of Contemporary Life, Volume 3 (of 3)', 'Oliphant, Mrs. (Margaret)', '2015-02-08', 29, 'https://www.gutenberg.org/ebooks/48199', 'en', 48), +(26948, 'Letters of Madam Guyon', 'Guyon, Jeanne Marie Bouvier de la Motte', '2009-09-25', 26, 'https://www.gutenberg.org/ebooks/30083', 'en', 11075), +(26949, 'The Papers and Writings of Abraham Lincoln — Volume 4: The Lincoln-Douglas Debates', 'Lincoln, Abraham', '2004-09-30', 23, 'https://www.gutenberg.org/ebooks/2656', 'en', 11076), +(26950, 'Scientific American Supplement, No. 443, June 28, 1884', 'Various', '2005-09-29', 13, 'https://www.gutenberg.org/ebooks/16773', 'en', 210), +(26951, 'The Reign of Mary Tudor', 'Froude, James Anthony', '2007-09-09', 37, 'https://www.gutenberg.org/ebooks/22546', 'en', 11077), +(26952, 'The Mentor: The Revolution, Vol. 1, Num. 43, Serial No. 43\nThe Story of America in Pictures', 'Hart, Albert Bushnell', '2015-09-04', 6, 'https://www.gutenberg.org/ebooks/49877', 'en', 481), +(26953, 'Tropic Days', 'Banfield, E. J. (Edmund James)', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7324', 'en', 11078), +(26954, 'L\'Illustration, No. 2521, 20 Juin 1891', 'Various', '2014-06-16', 6, 'https://www.gutenberg.org/ebooks/46003', 'fr', 150), +(26955, 'Mémoires de Frédérique Sophie Wilhelmine de Prusse, margrave de Bareith. Tome 1', 'Wilhelmine, Margravine, consort of Friedrich, Margrave of Bayreuth', '2009-01-14', 13, 'https://www.gutenberg.org/ebooks/27808', 'fr', 11079), +(26956, 'Jack and the Check Book', 'Bangs, John Kendrick', '2010-11-23', 25, 'https://www.gutenberg.org/ebooks/34423', 'en', 11080), +(26957, 'Notable Voyagers, From Columbus to Nordenskiold', 'Frith, Henry', '2007-11-15', 33, 'https://www.gutenberg.org/ebooks/23494', 'en', 7544), +(26958, 'The Boy Allies with Marshal Foch; or, The Closing Days of the Great World War', 'Hayes, Clair W. (Clair Wallace)', '2015-10-08', 8, 'https://www.gutenberg.org/ebooks/50166', 'en', 146), +(26959, 'The Opinions of a Philosopher', 'Grant, Robert', '2006-10-09', 17, 'https://www.gutenberg.org/ebooks/19509', 'en', 1155), +(26960, 'Science in Short Chapters', 'Williams, W. Mattieu (William Mattieu)', '2017-09-25', 101, 'https://www.gutenberg.org/ebooks/55626', 'en', 814), +(26961, 'British Supremacy & Canadian Self-Government, 1839-1854', 'Morison, J. L. (John Lyle)', '2010-02-23', 10, 'https://www.gutenberg.org/ebooks/31363', 'en', 11081), +(26962, 'The Joys of Being a Woman, and Other Papers', 'Kirkland, Winifred Margaretta', '2013-05-11', 40, 'https://www.gutenberg.org/ebooks/42691', 'en', 1485), +(26963, 'Health: How to get it and keep it.\r\nThe hygiene of dress, food, exercise, rest, bathing, breathing, and ventilation.', 'Woods, Walter V.', '2015-06-25', 29, 'https://www.gutenberg.org/ebooks/49279', 'en', 4793), +(26964, 'Munster Village', 'Hamilton, Mary, Lady', '2013-09-16', 15, 'https://www.gutenberg.org/ebooks/43743', 'en', 61), +(26965, 'History of Florence and of the Affairs of Italy\r\nFrom the Earliest Times to the Death of Lorenzo the Magnificent', 'Machiavelli, Niccolò', '2006-03-31', 156, 'https://www.gutenberg.org/ebooks/2464', 'en', 11082), +(26966, 'Neugesammelte Volkssagen aus dem Lande Baden und den angrenzenden Gegenden', NULL, '2008-11-09', 40, 'https://www.gutenberg.org/ebooks/27206', 'de', 11083), +(26967, 'Three Expeditions into the Interior of Eastern Australia, Volume 2\r\nWith Descriptions of the Recently Explored Region of Australia Felix, and of the Present Colony of New South Wales', 'Mitchell, T. L. (Thomas Livingstone)', '2004-07-27', 48, 'https://www.gutenberg.org/ebooks/13033', 'en', 11084), +(26968, 'Vestiges of the Natural History of Creation', 'Chambers, Robert', '2004-12-01', 73, 'https://www.gutenberg.org/ebooks/7116', 'en', 4538), +(26969, 'Der brennende Dornbusch; Mörder: Hoffnung der Frauen', 'Kokoschka, Oskar', '2014-07-09', 18, 'https://www.gutenberg.org/ebooks/46231', 'de', 402), +(26970, 'Pen Pal', 'Marlowe, Stephen', '2016-02-23', 46, 'https://www.gutenberg.org/ebooks/51286', 'en', 179), +(26971, 'Poor Man\'s Rock', 'Sinclair, Bertrand W.', '2005-08-17', 26, 'https://www.gutenberg.org/ebooks/16541', 'en', 48), +(26972, 'The Four Million', 'Henry, O.', '2005-09-01', 10, 'https://www.gutenberg.org/ebooks/8962', 'en', 2999), +(26973, 'Barbara in Brittany', 'Gillie, E. A.', '2007-09-26', 17, 'https://www.gutenberg.org/ebooks/22774', 'en', 51), +(26974, 'Les misérables Tome II: Cosette', 'Hugo, Victor', '2006-01-11', 157, 'https://www.gutenberg.org/ebooks/17493', 'fr', 98), +(26975, 'Argot and Slang\r\nA New French and English Dictionary of the Cant Words, Quaint Expressions, Slang Terms and Flash Phrases Used in the High and Low Life of Old and New Paris', 'Barrère, Albert', '2015-10-31', 45, 'https://www.gutenberg.org/ebooks/50354', 'en', 11085), +(26976, 'Geoffrey Hampstead: A Novel', 'Jarvis, Stinson', '2010-12-09', 8, 'https://www.gutenberg.org/ebooks/34611', 'en', 11086), +(26977, 'Man or Matter\r\nIntroduction to a Spiritual Understanding of Nature on the Basis of Goethe\'s Method of Training Observation and Thought', 'Lehrs, Ernst', '2004-05-01', 54, 'https://www.gutenberg.org/ebooks/5641', 'en', 5192), +(26978, 'Kölliskö', NULL, '2011-08-15', 21, 'https://www.gutenberg.org/ebooks/37094', 'fi', 61), +(26979, 'A History of Caricature and Grotesque in Literature and Art', 'Wright, Thomas', '2014-01-02', 40, 'https://www.gutenberg.org/ebooks/44566', 'en', 11087), +(26980, 'Vagabonding Through Changing Germany', 'Franck, Harry Alverson', '2018-10-20', 28, 'https://www.gutenberg.org/ebooks/58139', 'en', 3386), +(26981, 'St. George\'s Cross; Or, England Above All', 'Keene, H. G. (Henry George)', '2004-11-30', 18, 'https://www.gutenberg.org/ebooks/14216', 'en', 7048), +(26982, 'The Letters of Queen Victoria : A Selection from Her Majesty\'s Correspondence between the Years 1837 and 1861. Volume 1, 1837-1843', 'Victoria, Queen of Great Britain', '2006-12-05', 110, 'https://www.gutenberg.org/ebooks/20023', 'en', 2135), +(26983, 'General Bounce; Or, The Lady and the Locusts', 'Whyte-Melville, G. J. (George John)', '2013-01-12', 26, 'https://www.gutenberg.org/ebooks/41828', 'en', 45), +(26984, 'Arvannosto: 3 näytöksinen kuvaus sortovuosilta', 'Heilala, Yrjö', '2016-06-23', 2, 'https://www.gutenberg.org/ebooks/52403', 'fi', 382), +(26985, 'The Lure of Old London', 'Cole, Sophie', '2012-06-06', 12, 'https://www.gutenberg.org/ebooks/39932', 'en', 856), +(26986, 'The Fiend\'s Delight', 'Bierce, Ambrose', '2003-12-01', 47, 'https://www.gutenberg.org/ebooks/4793', 'en', 190), +(26987, 'Dr. John McLoughlin, the Father of Oregon', 'Holman, Frederick V.', '2011-05-18', 13, 'https://www.gutenberg.org/ebooks/36146', 'en', 99), +(26988, 'The Camp Fire Girls; Or, The Secret of an Old Mill', 'Garis, Howard Roger', '2018-05-16', 15, 'https://www.gutenberg.org/ebooks/57171', 'en', 11088), +(26989, 'The Justice of the King', 'Drummond, Hamilton', '2008-02-01', 6, 'https://www.gutenberg.org/ebooks/24483', 'en', 1418), +(26990, 'The Squirrels and other animals\r\nOr, Illustrations of the habits and instincts of many of the smaller British quadrupeds', 'Waring, George', '2010-08-14', 22, 'https://www.gutenberg.org/ebooks/33434', 'en', 2271), +(26991, 'Index of the Project Gutenberg Works of August Strindberg', 'Strindberg, August', '2019-02-17', 9, 'https://www.gutenberg.org/ebooks/58905', 'en', 198), +(26992, 'Abolition a Sedition, by a Northern Man', 'Colton, Calvin', '2012-10-10', 43, 'https://www.gutenberg.org/ebooks/41014', 'en', 9388), +(26993, 'Six Girls: A Home Story', 'Irving, Fannie Belle', '2008-05-21', 24, 'https://www.gutenberg.org/ebooks/25551', 'en', 7735), +(26994, 'The American Missionary — Volume 42, No. 03, March, 1888', 'Various', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/11764', 'en', 395), +(26995, 'Rodin: The Man and His Art, with Leaves from His Note-book', 'Cladel, Judith', '2013-07-27', 14, 'https://www.gutenberg.org/ebooks/43327', 'en', 3006), +(26996, 'Don Quijote', 'Cervantes Saavedra, Miguel de', '1999-12-01', 1716, 'https://www.gutenberg.org/ebooks/2000', 'es', 361), +(26997, 'Scientific American Supplement, No. 488, May 9, 1885', 'Various', '2008-12-30', 19, 'https://www.gutenberg.org/ebooks/27662', 'en', 210), +(26998, 'Köyhäin aarteet', 'Maeterlinck, Maurice', '2017-03-19', 3, 'https://www.gutenberg.org/ebooks/54390', 'fi', 4632), +(26999, 'The Bed-Book of Happiness\r\nBeing a colligation or assemblage of cheerful writings brought together from many quarters into this one compass for the diversion, distraction, and delight of those who lie abed,—a friend to the invalid, a companion to the sleepless, an excuse to the tired', 'Begbie, Harold', '2004-09-14', 23, 'https://www.gutenberg.org/ebooks/13457', 'en', 19), +(27000, 'Seaward Sussex\nThe South Downs from End to End', 'Holmes, Edric', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12585', 'en', 3948), +(27001, 'The Black Ghost of the Highway', 'Linnell, Gertrude', '2017-08-02', 16, 'https://www.gutenberg.org/ebooks/55242', 'en', 2035), +(27002, 'The Bradys and the Girl Smuggler; Or, Working for the Custom House', 'Doughty, Francis Worcester', '2005-10-23', 11, 'https://www.gutenberg.org/ebooks/16919', 'en', 336), +(27003, 'Carlos Broschi', 'Scribe, Eugène', '2010-03-20', 40, 'https://www.gutenberg.org/ebooks/31707', 'es', 4966), +(27004, 'The Fleet: Its Rivers, Prison, and Marriages', 'Ashton, John', '2015-12-21', 15, 'https://www.gutenberg.org/ebooks/50730', 'en', 11089), +(27005, 'Brief Lives, Vol. 1', 'Aubrey, John', '2014-12-26', 72, 'https://www.gutenberg.org/ebooks/47787', 'en', 5312), +(27006, 'The Four Feathers', 'Mason, A. E. W. (Alfred Edward Woodley)', '2006-07-21', 92, 'https://www.gutenberg.org/ebooks/18883', 'en', 11090), +(27007, 'Da Loucura e das Manias em Portugal', 'Machado, Júlio César', '2010-11-11', 11, 'https://www.gutenberg.org/ebooks/34275', 'pt', 5399), +(27008, 'The Life of Horatio, Lord Nelson', 'Southey, Robert', '2006-02-05', 62, 'https://www.gutenberg.org/ebooks/947', 'en', 8366), +(27009, 'Widger\'s Quotes and Images from A Romance of Youth by François Coppée\r\nThe French Immortals: Quotes And Images', 'Coppée, François', '2009-07-13', 19, 'https://www.gutenberg.org/ebooks/7572', 'en', 2391), +(27010, 'Ted Strong in Montana\r\nOr, With Lariat and Spur', 'Taylor, Edward C.', '2006-11-28', 32, 'https://www.gutenberg.org/ebooks/19951', 'en', 315), +(27011, 'Rakas isänmaani: Kosketuksia raskaitten vuosien varrelta', 'Sillanpää, Frans Eemil', '2014-08-22', 10, 'https://www.gutenberg.org/ebooks/46655', 'fi', 175), +(27012, 'The Judge', 'West, Rebecca', '2005-06-24', 31, 'https://www.gutenberg.org/ebooks/16125', 'en', 5681), +(27013, 'In the Border Country', 'Bacon, Josephine Daskam', '2007-08-13', 26, 'https://www.gutenberg.org/ebooks/22310', 'en', 61), +(27014, 'The American Missionary — Volume 50, No. 02, February, 1896', 'Various', '2007-05-24', 6, 'https://www.gutenberg.org/ebooks/21595', 'en', 562), +(27015, 'Vieras rouva', 'Dostoyevsky, Fyodor', '2016-05-14', 18, 'https://www.gutenberg.org/ebooks/52067', 'fi', 85), +(27016, 'The Arena, Volume 4, No. 24, November, 1891', 'Various', '2008-06-27', 7, 'https://www.gutenberg.org/ebooks/25909', 'en', 883), +(27017, 'The Trail of the Axe: A Story of Red Sand Valley', 'Cullum, Ridgwell', '2011-06-26', 13, 'https://www.gutenberg.org/ebooks/36522', 'en', 11091), +(27018, 'The Satyricon — Complete', 'Petronius Arbiter', '2004-06-01', 943, 'https://www.gutenberg.org/ebooks/5225', 'en', 10146), +(27019, 'School Credit for Home Work', 'Alderman, L. R. (Lewis Raymond)', '2013-11-04', 6, 'https://www.gutenberg.org/ebooks/44102', 'en', 11092), +(27020, 'The Religion of the Ancient Celts', 'MacCulloch, J. A. (John Arnott)', '2005-01-12', 146, 'https://www.gutenberg.org/ebooks/14672', 'en', 11093), +(27021, 'The Works of Robert G. Ingersoll, Volume VIII.\nInterviews', 'Ingersoll, Robert Green', '2007-01-25', 10, 'https://www.gutenberg.org/ebooks/20447', 'en', 1191), +(27022, 'History of the Reformation in the Sixteenth Century, Volume 2', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2012-11-24', 70, 'https://www.gutenberg.org/ebooks/41470', 'en', 827), +(27023, 'Encyclopaedia Britannica, 11th Edition, \"Coquelin, Benoît Constant\" to \"Costume\"\r\nVolume 7, Slice 4', 'Various', '2010-04-29', 28, 'https://www.gutenberg.org/ebooks/32182', 'en', 1081), +(27024, 'With the Guards\' Brigade from Bloemfontein to Koomati Poort and Back', 'Lowry, Edward P.', '2008-04-22', 21, 'https://www.gutenberg.org/ebooks/25135', 'en', 1311), +(27025, 'La belle Gabrielle — Tome 1', 'Maquet, Auguste', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11300', 'fr', 687), +(27026, 'The Shipwrecked Orphans\r\nA true narrative of the shipwreck and sufferings of John Ireland and William Doyley, who were wrecked in the ship Charles Eaton, on an island in the South Seas', 'Ireland, John (Seaman)', '2018-07-15', 25, 'https://www.gutenberg.org/ebooks/57515', 'en', 11094), +(27027, 'The Double Life', 'Leroux, Gaston', '2017-01-17', 14, 'https://www.gutenberg.org/ebooks/53989', 'en', 11095), +(27028, 'Drainage Modifications and Glaciation in the Danbury Region Connecticut\r\nState of Connecticut State Geological and Natural History Survey Bulletin No. 30', 'Harvey, Ruth Sawyer', '2010-07-03', 15, 'https://www.gutenberg.org/ebooks/33050', 'en', 11096), +(27029, 'The Mystery of the Yellow Room', 'Leroux, Gaston', '1999-03-01', 326, 'https://www.gutenberg.org/ebooks/1685', 'en', 128), +(27030, 'The Black Opal', 'Prichard, Katharine Susannah', '2011-07-12', 28, 'https://www.gutenberg.org/ebooks/36710', 'en', 11097), +(27031, 'The Brownie Scouts and Their Tree House', 'Wirt, Mildred A. (Mildred Augustine)', '2016-06-07', 16, 'https://www.gutenberg.org/ebooks/52255', 'en', 11098), +(27032, 'Old-Fashioned Fairy Tales', 'Ewing, Juliana Horatia Gatty', '2005-04-09', 86, 'https://www.gutenberg.org/ebooks/15592', 'en', 1007), +(27033, 'Alla kasvon kaikkivallan: Mystillinen trilogia', 'Leino, Eino', '2004-12-24', 16, 'https://www.gutenberg.org/ebooks/14440', 'fi', 6994), +(27034, 'The Two Christmas Boxes: A Play for Girls', 'Yale, Elsie Duncan', '2016-10-28', 3, 'https://www.gutenberg.org/ebooks/53387', 'en', 3459), +(27035, 'Galatians', NULL, '2007-02-03', 2, 'https://www.gutenberg.org/ebooks/20675', 'en', 7921), +(27036, 'State of the Union Addresses', 'Van Buren, Martin', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/5017', 'en', 1276), +(27037, 'Valerius. A Roman Story', 'Lockhart, J. G. (John Gibson)', '2013-12-01', 30, 'https://www.gutenberg.org/ebooks/44330', 'en', 10146), +(27038, 'Drolls From Shadowland', 'Pearce, J. H. (Joseph Henry)', '2008-05-02', 15, 'https://www.gutenberg.org/ebooks/25307', 'en', 166), +(27039, 'Robert Ier et Raoul de Bourgogne, rois de France (923-936)', 'Lauer, Philippe', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/11132', 'fr', 11099), +(27040, 'The Court of Cacus; Or, The Story of Burke and Hare', 'Leighton, Alexander', '2012-12-17', 9, 'https://www.gutenberg.org/ebooks/41642', 'en', 11100), +(27041, 'Matilda Montgomerie; Or, The Prophecy Fulfilled', 'Richardson, Major (John)', '2012-05-22', 11, 'https://www.gutenberg.org/ebooks/39758', 'en', 3858), +(27042, 'The Atlantic Monthly, Volume 17, No. 99, January, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2010-07-26', 12, 'https://www.gutenberg.org/ebooks/33262', 'en', 1227), +(27043, 'Lolo', 'Edschmid, Kasimir', '2012-09-18', 5, 'https://www.gutenberg.org/ebooks/40790', 'de', 60), +(27044, 'Arkansasin sissit: Seikkailuromaani suurilta ruoholakeuksilta', 'Aimard, Gustave', '2018-08-19', 12, 'https://www.gutenberg.org/ebooks/57727', 'fi', 7941), +(27045, 'A History of Elizabethan Literature', 'Saintsbury, George', '2008-12-08', 31, 'https://www.gutenberg.org/ebooks/27450', 'en', 11101), +(27046, 'War in the Garden of Eden', 'Roosevelt, Kermit', '2004-10-11', 45, 'https://www.gutenberg.org/ebooks/13665', 'en', 449), +(27047, 'The Harvester', 'Stratton-Porter, Gene', '1995-10-01', 117, 'https://www.gutenberg.org/ebooks/349', 'en', 2815), +(27048, '...Sorella di Messalina: Romanzo', 'Vivanti, Annie', '2013-07-07', 15, 'https://www.gutenberg.org/ebooks/43115', 'it', 1544), +(27049, 'The Duchess of Malfi', 'Webster, John', '2000-06-01', 499, 'https://www.gutenberg.org/ebooks/2232', 'en', 4465), +(27050, 'A Monk of Cruta', 'Oppenheim, E. Phillips (Edward Phillips)', '2010-03-07', 9, 'https://www.gutenberg.org/ebooks/31535', 'en', 128), +(27051, 'The Doré Bible Gallery, Volume 8', NULL, '2004-07-28', 19, 'https://www.gutenberg.org/ebooks/8708', 'en', 9674), +(27052, 'The Memoirs of François René Vicomte de Chateaubriand sometime Ambassador to England. volume 5 (of 6)\nMémoires d\'outre-tombe volume 5', 'Chateaubriand, François-René, vicomte de', '2017-07-08', 13, 'https://www.gutenberg.org/ebooks/55070', 'en', 7678), +(27053, 'Michael O\'Halloran', 'Stratton-Porter, Gene', '2008-09-01', 2, 'https://www.gutenberg.org/ebooks/26582', 'en', 262), +(27054, 'The Swiss Family Robinson, Told in Words of One Syllable', 'Wyss, Johann David', '2004-10-01', 36, 'https://www.gutenberg.org/ebooks/6692', 'en', 550), +(27055, 'Encyclopaedia Britannica, 11th Edition, \"Apollodorus\" to \"Aral\"\r\nVolume 2, Slice 3', 'Various', '2010-10-08', 34, 'https://www.gutenberg.org/ebooks/34047', 'en', 1081), +(27056, 'The Black Buccaneer', 'Meader, Stephen W. (Stephen Warren)', '2009-03-27', 12, 'https://www.gutenberg.org/ebooks/28418', 'en', 323), +(27057, 'The Collector\r\nEssays on Books, Newspapers, Pictures, Inns, Authors, Doctors, Holidays, Actors, Preachers', 'Tuckerman, Henry T. (Henry Theodore)', '2013-10-11', 27, 'https://www.gutenberg.org/ebooks/43929', 'en', 20), +(27058, 'Harper\'s Young People, December 13, 1881\nAn Illustrated Weekly', 'Various', '2015-11-19', 1, 'https://www.gutenberg.org/ebooks/50502', 'en', 479), +(27059, 'The Art of Public Speaking', 'Esenwein, J. Berg (Joseph Berg)', '2005-07-17', 657, 'https://www.gutenberg.org/ebooks/16317', 'en', 11102), +(27060, 'Elias Lönnrot: Biografiskt utkast', 'Ahlqvist, August', '2007-07-23', 4, 'https://www.gutenberg.org/ebooks/22122', 'sv', 3424), +(27061, 'The Parisians — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7740', 'en', 137), +(27062, 'The Fatal Cord, and The Falcon Rover', 'Reid, Mayne', '2011-02-07', 97, 'https://www.gutenberg.org/ebooks/35195', 'en', 5049), +(27063, 'The Remarkable History of Sir Thomas Upmore, bart., M.P., formerly known as \"Tommy Upmore\"', 'Blackmore, R. D. (Richard Doddridge)', '2014-08-01', 22, 'https://www.gutenberg.org/ebooks/46467', 'en', 8862), +(27064, 'Ancient art of the province of Chiriqui, Colombia\nSixth Annual Report of the Bureau of Ethnology to the\nSecretary of the Smithsonian Institution, 1884-1885,\nGovernment Printing Office, Washington, 1888, pages 3-188', 'Holmes, William Henry', '2009-12-07', 13, 'https://www.gutenberg.org/ebooks/30621', 'en', 11103), +(27065, 'A Fine Fix', 'Noll, Ray C.', '2009-01-03', 27, 'https://www.gutenberg.org/ebooks/27696', 'en', 26), +(27066, 'Annals of the Turkish Empire, from 1591 to 1659', 'Naima, Mustafa', '2019-08-22', 0, 'https://www.gutenberg.org/ebooks/60151', 'en', NULL), +(27067, 'The Brighton Boys in the Submarine Treasure Ship', 'Driscoll, James R.', '2017-03-14', 17, 'https://www.gutenberg.org/ebooks/54364', 'en', 2322), +(27068, 'The Boy Allies in the Trenches; Or, Midst Shot and Shell Along the Aisne', 'Hayes, Clair W. (Clair Wallace)', '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/12571', 'en', 146), +(27069, 'The Friendships of Women', 'Alger, William Rounseville', '2006-09-08', 9, 'https://www.gutenberg.org/ebooks/19199', 'en', 1485), +(27070, 'A Retrospect', 'Taylor, James Hudson', '2008-10-01', 52, 'https://www.gutenberg.org/ebooks/26744', 'en', 9734), +(27071, 'On Horseback', 'Warner, Charles Dudley', '2004-10-10', 16, 'https://www.gutenberg.org/ebooks/3126', 'en', 11104), +(27072, 'The Irish Penny Journal, Vol. 1 No. 02, July 11, 1840', 'Various', '2013-02-25', 7, 'https://www.gutenberg.org/ebooks/42201', 'en', 81), +(27073, 'Mare nostrum', 'Blasco Ibáñez, Vicente', '2007-10-29', 18, 'https://www.gutenberg.org/ebooks/23236', 'es', 1696), +(27074, 'Indiscreet Letters From Peking\r\nBeing the Notes of an Eye-Witness, Which Set Forth in Some Detail, from Day to Day, the Real Story of the Siege and Sack of a Distressed Capital in 1900—The Year of Great Tribulation', NULL, '2005-11-04', 20, 'https://www.gutenberg.org/ebooks/17003', 'en', 11105), +(27075, 'Mirk Abbey, Volume 3 (of 3)', 'Payn, James', '2014-12-24', 15, 'https://www.gutenberg.org/ebooks/47773', 'en', 61), +(27076, 'The Sheriff of Badger: A Tale of the Southwest Borderland', 'Pattullo, George', '2010-11-11', 18, 'https://www.gutenberg.org/ebooks/34281', 'en', 315), +(27077, 'In het Schemeruur', 'Louwerse, Pieter', '2006-07-20', 7, 'https://www.gutenberg.org/ebooks/18877', 'nl', 388), +(27078, 'George Leatrim', 'Moodie, Susanna', '2004-09-01', 25, 'https://www.gutenberg.org/ebooks/6454', 'en', 1397), +(27079, 'The Riverside Bulletin, March, 1910\r\nHoughton Mifflin Company Books for Spring and Summer', 'Anonymous', '2011-02-22', 11, 'https://www.gutenberg.org/ebooks/35353', 'en', 9612), +(27080, 'The Caxtons: A Family Picture — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 7, 'https://www.gutenberg.org/ebooks/7586', 'en', 376), +(27081, 'Sales Talk', 'Blomberg, Con', '2016-04-01', 39, 'https://www.gutenberg.org/ebooks/51616', 'en', 11106), +(27082, 'Fra Angelico', 'Supino, I. B. (Igino Benvenuto)', '2007-05-21', 22, 'https://www.gutenberg.org/ebooks/21561', 'en', 3701), +(27083, 'Ihmekös tuo\nHuvinäytelmä 1:ssä näytöksessä', 'Kurikka, Matti', '2005-05-02', 27, 'https://www.gutenberg.org/ebooks/15754', 'fi', 247), +(27084, 'Las Ilusiones del Doctor Faustino, v.1', 'Valera, Juan', '2016-05-17', 18, 'https://www.gutenberg.org/ebooks/52093', 'es', 1353), +(27085, 'A Boy Trooper with Sheridan', 'Allen, Stanton P.', '2014-02-26', 17, 'https://www.gutenberg.org/ebooks/45024', 'en', 1717), +(27086, 'Denzil Quarrier', 'Gissing, George', '2003-08-01', 18, 'https://www.gutenberg.org/ebooks/4303', 'en', 137), +(27087, 'Church History, Volume 3 (of 3)', 'Kurtz, J. H. (Johann Heinrich)', '2011-09-11', 9, 'https://www.gutenberg.org/ebooks/37404', 'en', 958), +(27088, 'Popular Official Guide to the New York Zoological Park (September 1915)\nThirteenth Edition', 'Hornaday, William T. (William Temple)', '2016-09-24', 3, 'https://www.gutenberg.org/ebooks/53141', 'en', 11107), +(27089, 'Hærmændene på Helgeland\nMed anmerkninger av stud. mag. Birger Knudsen', 'Ibsen, Henrik', '2005-01-13', 34, 'https://www.gutenberg.org/ebooks/14686', 'no', 3671), +(27090, 'The Haunted Sentry Box of Porto Rico', 'Miller, Lewis', '2010-10-31', 4, 'https://www.gutenberg.org/ebooks/33898', 'en', 179), +(27091, 'History of the Reformation in the Sixteenth Century, Volume 5\r\nThe Reformation in England', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2012-11-25', 122, 'https://www.gutenberg.org/ebooks/41484', 'en', 827), +(27092, 'Witch Stories', 'Linton, E. Lynn (Elizabeth Lynn)', '2010-04-29', 45, 'https://www.gutenberg.org/ebooks/32176', 'en', 9137), +(27093, 'The House on the Moor, v. 3/3', 'Oliphant, Mrs. (Margaret)', '2014-05-29', 18, 'https://www.gutenberg.org/ebooks/45818', 'en', 61), +(27094, 'The Manoeuvring Mother (vol. 1 of 3)', 'Bury, Charlotte Campbell, Lady', '2018-01-25', 8, 'https://www.gutenberg.org/ebooks/56433', 'en', 137), +(27095, 'Beautiful Joe: An Autobiography', 'Saunders, Marshall', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/10226', 'en', 11108), +(27096, 'The Telegraph Boy', 'Alger, Horatio, Jr.', '2007-12-24', 57, 'https://www.gutenberg.org/ebooks/24013', 'en', 11109), +(27097, 'When a Man Marries', 'Rinehart, Mary Roberts', '1999-03-01', 70, 'https://www.gutenberg.org/ebooks/1671', 'en', 675), +(27098, 'The Lord\'s Coming. Miscellaneous Writings of C. H. Mackintosh, vol. II', 'Mackintosh, Charles Henry', '2012-08-22', 31, 'https://www.gutenberg.org/ebooks/40556', 'en', 3575), +(27099, 'Storia della decadenza e rovina dell\'impero romano, volume 02', 'Gibbon, Edward', '2014-03-26', 30, 'https://www.gutenberg.org/ebooks/45216', 'it', 1292), +(27100, 'Diary of Samuel Pepys — Complete 1661 N.S.', 'Pepys, Samuel', '2004-10-31', 21, 'https://www.gutenberg.org/ebooks/4131', 'en', 478), +(27101, 'The Norsemen in the West', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 34, 'https://www.gutenberg.org/ebooks/21753', 'en', 11110), +(27102, 'Notes to Shakespeare, Volume III: The Tragedies', 'Johnson, Samuel', '2005-04-06', 53, 'https://www.gutenberg.org/ebooks/15566', 'en', 1735), +(27103, 'Harper\'s Young People, October 17, 1882\nAn Illustrated Weekly', 'Various', '2019-06-01', 13, 'https://www.gutenberg.org/ebooks/59649', 'en', 479), +(27104, 'A Manual of Historic Ornament\r\nTreating upon the evolution, tradition, and development of architecture and other applied arts. Prepared for the use of students and craftsmen', 'Glazier, Richard', '2016-10-26', 82, 'https://www.gutenberg.org/ebooks/53373', 'en', 11111), +(27105, 'Matthew', NULL, '2007-01-03', 8, 'https://www.gutenberg.org/ebooks/20681', 'en', 228), +(27106, 'Roman History, Books I-III', 'Livy', '2004-01-01', 97, 'https://www.gutenberg.org/ebooks/10828', 'en', 6793), +(27107, 'Charles Lewis Cocke, Founder of Hollins College', 'Smith, William Robert Lee', '2011-10-06', 9, 'https://www.gutenberg.org/ebooks/37636', 'en', 11112), +(27108, 'A Text-book of Tanning\r\nA treatise on the conversion of skins into leather, both practical and theoretical.', 'Procter, H. R. (Henry Richardson)', '2018-02-19', 54, 'https://www.gutenberg.org/ebooks/56601', 'en', 10630), +(27109, 'Pet Farm', 'Aycock, Roger D.', '2010-05-12', 75, 'https://www.gutenberg.org/ebooks/32344', 'en', 26), +(27110, 'Two Poets', 'Balzac, Honoré de', '2004-08-11', 22, 'https://www.gutenberg.org/ebooks/1443', 'en', 58), +(27111, 'Five Young Men: Messages of Yesterday for the Young Men of To-day', 'Brown, Charles Reynolds', '2010-07-30', 8, 'https://www.gutenberg.org/ebooks/33296', 'en', 11113), +(27112, 'Barty Crusoe and His Man Saturday', 'Burnett, Frances Hodgson', '2012-09-15', 15, 'https://www.gutenberg.org/ebooks/40764', 'en', 7815), +(27113, 'Punchinello, Volume 1, No. 18, July 30, 1870', 'Various', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10014', 'en', 372), +(27114, 'The Untouchable', 'Kallis, Stephen A.', '2008-01-08', 47, 'https://www.gutenberg.org/ebooks/24221', 'en', 179), +(27115, 'Lastuja I-III', 'Aho, Juhani', '2004-10-10', 35, 'https://www.gutenberg.org/ebooks/13691', 'fi', 665), +(27116, 'The Irish Penny Journal, Vol. 1 No. 10, September 5, 1840', 'Various', '2017-02-12', 4, 'https://www.gutenberg.org/ebooks/54156', 'en', 81), +(27117, 'The Composition of Indian Geographical Names\nIllustrated from the Algonkin Languages', 'Trumbull, J. Hammond (James Hammond)', '2006-04-28', 30, 'https://www.gutenberg.org/ebooks/18279', 'en', 11114), +(27118, 'Reminiscences of the King of Roumania', 'Kremnitz, Mite', '2015-03-17', 14, 'https://www.gutenberg.org/ebooks/48509', 'en', 11115), +(27119, '楊家將', 'Xiong, Damu, active 16th century', '2007-12-13', 23, 'https://www.gutenberg.org/ebooks/23838', 'zh', 3870), +(27120, 'Mundanismos', 'Diniz, Almachio', '2009-11-07', 9, 'https://www.gutenberg.org/ebooks/30413', 'pt', 61), +(27121, 'The City That Was: A Requiem of Old San Francisco', 'Irwin, Will', '2002-07-01', 20, 'https://www.gutenberg.org/ebooks/3314', 'en', 8867), +(27122, 'Assyria: Its Princes, Priests and People\r\nBy-Paths of Bible Knowledge VII', 'Sayce, A. H. (Archibald Henry)', '2013-02-06', 27, 'https://www.gutenberg.org/ebooks/42033', 'en', 931), +(27123, 'The Homing Pigeon', 'United States. War Department', '2017-07-10', 41, 'https://www.gutenberg.org/ebooks/55084', 'en', 11116), +(27124, 'The Author\'s Craft', 'Bennett, Arnold', '2004-06-25', 27, 'https://www.gutenberg.org/ebooks/12743', 'en', 935), +(27125, 'History of England from the Accession of James II, vol2 chapter 6', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-09-01', 6, 'https://www.gutenberg.org/ebooks/26576', 'en', 3001), +(27126, 'Mire megvénülünk (1. kötet)', 'Jókai, Mór', '2014-12-05', 9, 'https://www.gutenberg.org/ebooks/47541', 'hu', 847), +(27127, 'Hello, Boys!', 'Wilcox, Ella Wheeler', '2004-10-01', 11, 'https://www.gutenberg.org/ebooks/6666', 'en', 2100), +(27128, 'In Madeira Place\n1887', 'Chaplin, Heman White', '2007-10-12', 9, 'https://www.gutenberg.org/ebooks/23004', 'en', 179), +(27129, 'Antiquités d\'Herculanum, Tome I.\r\nPeintures', 'Piroli, Tommaso', '2005-12-05', 11, 'https://www.gutenberg.org/ebooks/17231', 'fr', 10954), +(27130, 'The Southern Literary Messenger, Vol. I., No. 1, August, 1834', 'Various', '2016-03-11', 5, 'https://www.gutenberg.org/ebooks/51424', 'en', 522), +(27131, 'Tales from Spenser, Chosen from the Faerie Queene', 'Spenser, Edmund', '2011-02-04', 28, 'https://www.gutenberg.org/ebooks/35161', 'en', 4616), +(27132, 'The Cherokee Nation of Indians. (1887 N 05 / 1883-1884 (pages 121-378))', 'Royce, Charles C.', '2014-08-03', 23, 'https://www.gutenberg.org/ebooks/46493', 'en', 11117), +(27133, 'Through the Sikh War: A Tale of the Conquest of the Punjaub', 'Henty, G. A. (George Alfred)', '2017-01-11', 32, 'https://www.gutenberg.org/ebooks/53717', 'en', 11118), +(27134, 'Born to Wander: A Boy\'s Book of Nomadic Adventures', 'Stables, Gordon', '2011-08-29', 11, 'https://www.gutenberg.org/ebooks/37252', 'en', 1817), +(27135, 'The Emperor — Volume 05', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5487', 'en', 803), +(27136, 'Aus der Jugendzeit; Historie von der schönen Lau', 'Mörike, Eduard', '2014-05-17', 14, 'https://www.gutenberg.org/ebooks/45672', 'de', 61), +(27137, 'L\'Illustration, No. 3690, 15 Novembre 1913', 'Various', '2011-06-11', 7, 'https://www.gutenberg.org/ebooks/36380', 'fr', 150), +(27138, 'Percy Bysshe Shelley', 'Symonds, John Addington', '2003-10-01', 28, 'https://www.gutenberg.org/ebooks/4555', 'en', 6521), +(27139, '\'That Very Mab\'', 'Kendall, May', '2007-05-05', 29, 'https://www.gutenberg.org/ebooks/21337', 'en', 781), +(27140, 'Proposals for Building, in Every County, a Working-Alms-House or Hospital\r\nas the Best Expedient to Perfect the Trade and Manufactory of Linnen Cloth', 'Haines, Richard', '2005-02-18', 7, 'https://www.gutenberg.org/ebooks/15102', 'en', 11119), +(27141, 'The Lone Star Ranger: A Romance of the Border', 'Grey, Zane', '1997-08-01', 150, 'https://www.gutenberg.org/ebooks/1027', 'en', 11120), +(27142, 'Dorothy', 'Raymond, Evelyn', '2012-07-22', 41, 'https://www.gutenberg.org/ebooks/40300', 'en', 11121), +(27143, 'Nine Hundred Miles', 'McGuinn, Roger', '2003-12-01', 15, 'https://www.gutenberg.org/ebooks/10470', 'en', 1379), +(27144, 'A harum-scarum schoolgirl', 'Brazil, Angela', '2008-02-19', 34, 'https://www.gutenberg.org/ebooks/24645', 'en', 2154), +(27145, 'The School and the World', 'Somervell, D. C. (David Churchill)', '2008-06-15', 7, 'https://www.gutenberg.org/ebooks/25797', 'en', 11122), +(27146, 'La mythologie du Rhin', 'Xavier, M.', '2017-12-29', 24, 'https://www.gutenberg.org/ebooks/56265', 'fr', 3860), +(27147, 'What We Saw in Egypt', 'Anonymous', '2010-06-06', 18, 'https://www.gutenberg.org/ebooks/32720', 'en', 11123), +(27148, 'The Sign at Six', 'White, Stewart Edward', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8398', 'en', 128), +(27149, 'A Second Book of Operas', 'Krehbiel, Henry Edward', '2003-02-01', 38, 'https://www.gutenberg.org/ebooks/3770', 'en', 5808), +(27150, 'Owen Glyndwr and the Last Struggle for Welsh Independence\nWith a Brief Sketch of Welsh History', 'Bradley, A. G. (Arthur Granville)', '2013-04-01', 18, 'https://www.gutenberg.org/ebooks/42457', 'en', 11124), +(27151, 'Slaves of Mercury', 'Schachner, Nathan', '2009-09-12', 44, 'https://www.gutenberg.org/ebooks/29966', 'en', 26), +(27152, 'The Jewish Manual\r\nPractical Information in Jewish and Modern Cookery with a Collection of Valuable Recipes & Hints Relating to the Toilette', 'Montefiore, Judith Cohen, Lady', '2004-05-01', 96, 'https://www.gutenberg.org/ebooks/12327', 'en', 2997), +(27153, 'A Tar-Heel Baron', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2008-07-23', 19, 'https://www.gutenberg.org/ebooks/26112', 'en', 4872), +(27154, 'Recueil de chansons en patois de la Bresse', 'La Gelière, P.-C. de', '2015-01-09', 10, 'https://www.gutenberg.org/ebooks/47919', 'fr', 11125), +(27155, 'The Night-Side of Nature; Or, Ghosts and Ghost-Seers', 'Crowe, Catherine', '2017-04-10', 71, 'https://www.gutenberg.org/ebooks/54532', 'en', 6363), +(27156, 'Our Little Jewish Cousin', 'Wade, Mary Hazelton Blanchard', '2013-08-28', 22, 'https://www.gutenberg.org/ebooks/43585', 'en', 11126), +(27157, 'Die Hanse und England von Eduards III. bis auf Heinrichs VIII. Zeit', 'Schulz, Friedrich', '2009-09-24', 17, 'https://www.gutenberg.org/ebooks/30077', 'de', 11127), +(27158, 'Life of Charles Dickens', 'Marzials, Frank T. (Frank Thomas), Sir', '2005-10-01', 21, 'https://www.gutenberg.org/ebooks/16787', 'en', 5826), +(27159, 'The Natural Philosophy of William Gilbert and His Predecessors', 'King, W. James (William James)', '2010-04-15', 22, 'https://www.gutenberg.org/ebooks/31999', 'en', 763), +(27160, 'Cuban Folk-Lore', 'Terwilliger, L. Roy', '2016-01-25', 22, 'https://www.gutenberg.org/ebooks/51040', 'en', 11128), +(27161, 'Niilo Bonpoika Sture 3: Testamentti', 'Starbäck, C. Georg (Carl Georg)', '2015-09-05', 7, 'https://www.gutenberg.org/ebooks/49883', 'fi', 2168), +(27162, 'Anna of the Five Towns', 'Bennett, Arnold', '2011-03-06', 40, 'https://www.gutenberg.org/ebooks/35505', 'en', 11129), +(27163, 'Spain', 'Ober, Frederick A. (Frederick Albion)', '2014-10-15', 16, 'https://www.gutenberg.org/ebooks/47125', 'en', 6250), +(27164, 'When Valmond Came to Pontiac: The Story of a Lost Napoleon. Volume 1.', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6202', 'en', 1219), +(27165, 'Abroad', NULL, '2007-11-12', 17, 'https://www.gutenberg.org/ebooks/23460', 'en', 388), +(27166, 'The Beth Book\nBeing a Study of the Life of Elizabeth Caldwell Maclure, a Woman of Genius', 'Grand, Sarah', '2009-02-15', 36, 'https://www.gutenberg.org/ebooks/28088', 'en', 11130), +(27167, 'Dotty Dimple at School', 'May, Sophie', '2015-05-13', 9, 'https://www.gutenberg.org/ebooks/48951', 'en', 62), +(27168, 'The Boy Scouts for Home Protection', 'Shaler, Robert', '2015-10-13', 14, 'https://www.gutenberg.org/ebooks/50192', 'en', 2994), +(27169, 'Observations of an Orderly\nSome Glimpses of Life and Work in an English War Hospital', 'Muir, Ward', '2006-02-01', 23, 'https://www.gutenberg.org/ebooks/17655', 'en', 8930), +(27170, 'Discoveries in Australia, Volume 1.\nWith an Account of the Coasts and Rivers Explored and Surveyed During\nThe Voyage of H.M.S. Beagle, in the Years 1837-38-39-40-41-42-43.\nBy Command of the Lords Commissioners of the Admiralty. Also a Narrative\nOf Captain Owen Stanley\'s Visits to the Islands in the Arafura Sea.', 'Stokes, John Lort', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/12115', 'en', 767), +(27171, 'The Merry-Go-Round', 'Van Vechten, Carl', '2008-08-15', 13, 'https://www.gutenberg.org/ebooks/26320', 'en', 3385), +(27172, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of Jacques Casanova', 'Casanova, Giacomo', '2002-11-01', 15, 'https://www.gutenberg.org/ebooks/3542', 'en', 1026), +(27173, 'The Earl of Essex: A Tragedy, in Five Acts', 'Jones, Henry', '2010-02-25', 15, 'https://www.gutenberg.org/ebooks/31397', 'en', 11131), +(27174, 'Satan\'s Diary', 'Andreyev, Leonid', '2013-05-08', 72, 'https://www.gutenberg.org/ebooks/42665', 'en', 1377), +(27175, 'Sanders\' Union Fourth Reader\r\nEmbracing a Full Exposition of the Principles of Rhetorical Reading; with Numerous Exercises for Practice, Both in Prose and Poetry, Various in Style, and Carefully Adapted to the Purposes of Teaching in Schools of Every Grade', 'Sanders, Charles W. (Charles Walton)', '2005-10-01', 23, 'https://www.gutenberg.org/ebooks/9078', 'en', 1019), +(27176, 'Lamia', 'Keats, John', '2001-01-01', 160, 'https://www.gutenberg.org/ebooks/2490', 'en', 532), +(27177, 'Phemie Frost\'s Experiences', 'Stephens, Ann S. (Ann Sophia)', '2009-10-13', 7, 'https://www.gutenberg.org/ebooks/30245', 'en', 61), +(27178, 'The King James Version of the Bible', NULL, '1989-08-01', 4640, 'https://www.gutenberg.org/ebooks/10', 'en', 1185), +(27179, 'Oblomov', 'Goncharov, Ivan Aleksandrovich', '2017-05-10', 201, 'https://www.gutenberg.org/ebooks/54700', 'en', 417), +(27180, 'A Voyage to Terra Australis — Volume 1\r\nUndertaken for the purpose of completing the discovery of that vast country, and prosecuted in the years 1801, 1802 and 1803, in His Majesty\'s ship the Investigator, and subsequently in the armed vessel Porpoise and Cumberland schooner', 'Flinders, Matthew', '2004-07-17', 73, 'https://www.gutenberg.org/ebooks/12929', 'en', 2471), +(27181, 'The Little Treasure of Prayers\r\nBeing a Translation of the Epitome from the German Larger \"Treasure of Prayers\" [\"Gebets-Schatz\"] of the Evangelical Lutheran Church', 'Anonymous', '2011-04-01', 16, 'https://www.gutenberg.org/ebooks/35737', 'en', 11132), +(27182, 'Practical Suggestions for Mother and Housewife', 'Miller, Marion Mills', '2005-09-01', 45, 'https://www.gutenberg.org/ebooks/8996', 'en', 3407), +(27183, 'Pohjoisnavalta päiväntasaajalle: Helppotajuisia esitelmiä', 'Brehm, Alfred Edmund', '2016-02-21', 7, 'https://www.gutenberg.org/ebooks/51272', 'fi', 4683), +(27184, 'Voyages dans la basse et la haute Egypte\npendant les campagnes de Bonaparte en 1798 et 1799', 'Denon, Vivant', '2007-09-27', 49, 'https://www.gutenberg.org/ebooks/22780', 'fr', 2589), +(27185, 'Patrick Henry', 'Tyler, Moses Coit', '2009-07-10', 28, 'https://www.gutenberg.org/ebooks/29368', 'en', 11133), +(27186, 'The Entertaining History of Jobson & Nell', 'Anonymous', '2007-11-28', 26, 'https://www.gutenberg.org/ebooks/23652', 'en', 343), +(27187, 'W. A. G.\'s Tale', 'Turnbull, Margaret', '2006-02-01', 18, 'https://www.gutenberg.org/ebooks/9844', 'en', 153), +(27188, 'Effie Maurice\nOr What do I Love Best', 'Forester, Fanny', '2006-01-05', 7, 'https://www.gutenberg.org/ebooks/17467', 'en', 195), +(27189, 'Letters and Literary Memorials of Samuel J. Tilden, v. 2', 'Tilden, Samuel J. (Samuel Jones)', '2014-11-09', 6, 'https://www.gutenberg.org/ebooks/47317', 'en', 11134), +(27190, 'The Iron Star — And What It Saw on Its Journey Through the Ages\r\nFrom Myth to History', 'True, John Preston', '2004-07-01', 19, 'https://www.gutenberg.org/ebooks/6030', 'en', 11135), +(27191, 'Through These Eyes\r\nThe courageous struggle to find meaning in a life stressed with cancer', 'Isaacson, Lauren Ann', '2011-08-13', 65, 'https://www.gutenberg.org/ebooks/37060', 'en', 11136), +(27192, 'Light for Little Ones', 'Waterbury, Mary F.', '2014-01-05', 6, 'https://www.gutenberg.org/ebooks/44592', 'en', 11137), +(27193, 'A Handbook of Fish Cookery: How to buy, dress, cook, and eat fish', 'Yates, Lucy H. (Lucy Helen)', '2016-11-13', 40, 'https://www.gutenberg.org/ebooks/53525', 'en', 11138), +(27194, 'La novela de un novelista', 'Palacio Valdés, Armando', '2012-02-09', 24, 'https://www.gutenberg.org/ebooks/38814', 'es', 1696), +(27195, 'Teddy\nThe Story of a Little Pickle', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 16, 'https://www.gutenberg.org/ebooks/21105', 'en', 31), +(27196, 'Punch, or the London Charivari, Volume 152, May 9, 1917', 'Various', '2005-03-11', 3, 'https://www.gutenberg.org/ebooks/15330', 'en', 134), +(27197, 'Note-book No. 1 of the Kickapoo Club', 'Kickapoo Club', '2014-04-19', 10, 'https://www.gutenberg.org/ebooks/45440', 'en', 11139), +(27198, 'The Mayor\'s Wife', 'Green, Anna Katharine', '2003-12-01', 47, 'https://www.gutenberg.org/ebooks/4767', 'en', 128), +(27199, 'Towards the Great Peace', 'Cram, Ralph Adams', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/10642', 'en', 3120), +(27200, 'Napoleon\'s Russian Campaign of 1812', 'Foord, Edward (Edward A.)', '2018-05-20', 19, 'https://www.gutenberg.org/ebooks/57185', 'en', 4415), +(27201, 'The Nursery, April 1873, Vol. XIII.\r\nA Monthly Magazine for Youngest Readers', 'Various', '2008-01-31', 17, 'https://www.gutenberg.org/ebooks/24477', 'en', 4641), +(27202, 'The Elixir of Life', 'Balzac, Honoré de', '2004-08-30', 48, 'https://www.gutenberg.org/ebooks/1215', 'en', 58), +(27203, 'The World Masters', 'Griffith, George Chetwynd', '2011-11-16', 19, 'https://www.gutenberg.org/ebooks/38028', 'en', 26), +(27204, 'A Report on Washington Territory', 'Ruffner, William Henry', '2012-07-03', 4, 'https://www.gutenberg.org/ebooks/40132', 'en', 11140), +(27205, 'Chambers\'s Edinburgh Journal, No. 449\nVolume 18, New Series, August 7, 1852', 'Various', '2007-06-26', 6, 'https://www.gutenberg.org/ebooks/21939', 'en', 18), +(27206, 'Historia Amoris: A History of Love, Ancient and Modern', 'Saltus, Edgar', '2010-05-24', 13, 'https://www.gutenberg.org/ebooks/32512', 'en', 5136), +(27207, 'The White Flag', 'Stratton-Porter, Gene', '2019-06-28', 112, 'https://www.gutenberg.org/ebooks/59823', 'en', 2815), +(27208, 'Hétfalusi csángó népmesék (Népköltési gyüjtemény 10. kötet)', NULL, '2017-11-27', 3, 'https://www.gutenberg.org/ebooks/56057', 'hu', 2), +(27209, 'Human Genome Project, Build 34, Chromosome Number 16', 'Human Genome Project', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11790', 'en', 1385), +(27210, 'Das Mädchen von Treppi', 'Heyse, Paul', '2005-10-01', 11, 'https://www.gutenberg.org/ebooks/9085', 'de', 16), +(27211, 'The Silverado Squatters', 'Stevenson, Robert Louis', '1996-05-01', 182, 'https://www.gutenberg.org/ebooks/516', 'en', 11141), +(27212, 'American Historical and Literary Curiosities, Series One', 'Smith, J. Jay (John Jay)', '2004-07-15', 13, 'https://www.gutenberg.org/ebooks/7923', 'en', 453), +(27213, 'Can You Forgive Her?', 'Trollope, Anthony', '2006-11-16', 178, 'https://www.gutenberg.org/ebooks/19500', 'en', 1238), +(27214, 'African Nature Notes and Reminiscences', 'Selous, Frederick Courteney', '2015-06-24', 27, 'https://www.gutenberg.org/ebooks/49270', 'en', 11142), +(27215, 'Eh! la vita....: Novelle', 'Capuana, Luigi', '2013-05-13', 12, 'https://www.gutenberg.org/ebooks/42698', 'it', 474), +(27216, 'Esther Waters', 'Moore, George', '2005-05-01', 76, 'https://www.gutenberg.org/ebooks/8157', 'en', 11143), +(27217, 'A Popular History of Astronomy During the Nineteenth Century\nFourth Edition', 'Clerke, Agnes M. (Agnes Mary)', '2009-03-04', 43, 'https://www.gutenberg.org/ebooks/28247', 'en', 11144), +(27218, 'Overland through Asia; Pictures of Siberian, Chinese, and Tartar Life', 'Knox, Thomas Wallace', '2004-10-20', 79, 'https://www.gutenberg.org/ebooks/13806', 'en', 4683), +(27219, 'Twenty-Four Unusual Stories for Boys and Girls', 'Tyler, Anna Cogswell', '2010-12-11', 29, 'https://www.gutenberg.org/ebooks/34618', 'en', 179), +(27220, 'Mazes and Labyrinths: A General Account of Their History and Development', 'Matthews, W. H.', '2014-07-09', 45, 'https://www.gutenberg.org/ebooks/46238', 'en', 11145), +(27221, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 26, October, 1880', 'Various', '2009-07-13', 8, 'https://www.gutenberg.org/ebooks/29395', 'en', 210); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(27222, 'Life of Lord Byron, Vol. 3\r\nWith His Letters and Journals', 'Moore, Thomas', '2005-08-19', 36, 'https://www.gutenberg.org/ebooks/16548', 'en', 6521), +(27223, 'Politica estera: memorie e documenti', 'Crispi, Francesco', '2013-01-11', 26, 'https://www.gutenberg.org/ebooks/41821', 'it', 11146), +(27224, 'Tom Thatcher\'s Fortune', 'Alger, Horatio, Jr.', '2018-04-02', 40, 'https://www.gutenberg.org/ebooks/56896', 'en', 11147), +(27225, 'Sketches by Seymour — Volume 04', 'Seymour, Robert', '2004-07-12', 4, 'https://www.gutenberg.org/ebooks/5648', 'en', 1688), +(27226, 'Burgo\'s Romance', 'Speight, T. W. (Thomas Wilkinson)', '2018-09-21', 14, 'https://www.gutenberg.org/ebooks/57944', 'en', 757), +(27227, 'Tähtisen perhe ja Tilhispesä', 'Topelius, Toini', '2018-10-18', 14, 'https://www.gutenberg.org/ebooks/58130', 'fi', 5797), +(27228, 'Noções botanicas das especies de Nicociana mais usadas nas fabricas de tabaco, e da sua cultura', NULL, '2012-03-11', 4, 'https://www.gutenberg.org/ebooks/39107', 'pt', 11148), +(27229, 'Onder de Mooren\r\nAvontuurlijke reizen door alle werelddeelen', 'Balen, J. Hendrik van', '2011-08-04', 21, 'https://www.gutenberg.org/ebooks/36973', 'nl', 61), +(27230, '呻吟語', 'Lü, Kun', '2008-05-22', 15, 'https://www.gutenberg.org/ebooks/25558', 'zh', 740), +(27231, 'The Life of a Fossil Hunter', 'Sternberg, Charles H. (Charles Hazelius)', '2018-05-18', 13, 'https://www.gutenberg.org/ebooks/57178', 'en', 11149), +(27232, 'Socialism As It Is\nA Survey of The World-Wide Revolutionary Movement', 'Walling, William English', '2007-03-14', 14, 'https://www.gutenberg.org/ebooks/20816', 'en', 254), +(27233, 'Archag, the Little Armenian', 'Schnapps, Charles H.', '2016-07-24', 16, 'https://www.gutenberg.org/ebooks/52638', 'en', 11150), +(27234, 'History of the Incas', 'Sarmiento de Gamboa, Pedro', '2006-12-29', 56, 'https://www.gutenberg.org/ebooks/20218', 'en', 11151), +(27235, 'Index of the Project Gutenberg Works of Baroness Orczy', 'Orczy, Emmuska Orczy, Baroness', '2018-11-17', 29, 'https://www.gutenberg.org/ebooks/58302', 'en', 198), +(27236, 'The Four Roads', 'Kaye-Smith, Sheila', '2018-01-03', 21, 'https://www.gutenberg.org/ebooks/56298', 'en', 2902), +(27237, 'Histoire de France 1573-1598 (Volume 12/19)', 'Michelet, Jules', '2012-04-01', 20, 'https://www.gutenberg.org/ebooks/39335', 'fr', 624), +(27238, 'The New Freedom\nA Call For the Emancipation of the Generous Energies of a People', 'Wilson, Woodrow', '2005-01-26', 125, 'https://www.gutenberg.org/ebooks/14811', 'en', 1035), +(27239, 'The Man of Letters as a Man of Business', 'Howells, William Dean', '1996-11-01', 65, 'https://www.gutenberg.org/ebooks/724', 'en', 3043), +(27240, 'Characters and events of Roman History', 'Ferrero, Guglielmo', '2004-08-17', 15, 'https://www.gutenberg.org/ebooks/13208', 'en', 11152), +(27241, 'The making of a bigot', 'Macaulay, Rose', '2016-01-17', 14, 'https://www.gutenberg.org/ebooks/50953', 'en', 432), +(27242, 'Smugglers\' Reef: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2009-05-16', 28, 'https://www.gutenberg.org/ebooks/28849', 'en', 128), +(27243, 'Poganuc People: Their Loves and Lives', 'Stowe, Harriet Beecher', '2015-02-07', 150, 'https://www.gutenberg.org/ebooks/48190', 'en', 13), +(27244, 'An Introduction to Entomology: Vol. 3\r\nor Elements of the Natural History of the Insects', 'Kirby, William', '2013-08-27', 16, 'https://www.gutenberg.org/ebooks/43578', 'en', 11153), +(27245, 'American Scenery, Vol. 1 (of 2)\r\nor, Land, lake, and river illustrations of transatlantic nature', 'Willis, Nathaniel Parker', '2015-05-24', 18, 'https://www.gutenberg.org/ebooks/49042', 'en', 1110), +(27246, 'Campaigning in Cuba', 'Kennan, George', '2010-02-02', 13, 'https://www.gutenberg.org/ebooks/31158', 'en', 10639), +(27247, 'The Lost Atlantis and Other Ethnographic Studies', 'Wilson, Daniel, Sir', '2016-04-28', 46, 'https://www.gutenberg.org/ebooks/51881', 'en', 7111), +(27248, 'The Bible, Douay-Rheims, Book 65: Hebrews\nThe Challoner Revision', NULL, '2005-06-01', 2, 'https://www.gutenberg.org/ebooks/8365', 'en', 11154), +(27249, 'Mechanical Devices in the Home', 'Allen, Edith', '2014-09-10', 104, 'https://www.gutenberg.org/ebooks/46836', 'en', 11155), +(27250, 'The Eternal City', 'Caine, Hall, Sir', '2006-11-07', 34, 'https://www.gutenberg.org/ebooks/19732', 'en', 1314), +(27251, 'Children of Borneo', 'Gomes, Edwin Herbert', '2009-01-14', 14, 'https://www.gutenberg.org/ebooks/27801', 'en', 11156), +(27252, 'The Christian Foundation, Or, Scientific and Religious Journal, March, 1880', 'Various', '2009-02-14', 13, 'https://www.gutenberg.org/ebooks/28075', 'en', 1829), +(27253, 'Brknk\'s Bounty', 'Sohl, Jerry', '2010-04-12', 22, 'https://www.gutenberg.org/ebooks/31964', 'en', 67), +(27254, 'Suicide: Its History, Literature, Jurisprudence, Causation, and Prevention', 'Westcott, W. Wynn (William Wynn)', '2019-01-24', 19, 'https://www.gutenberg.org/ebooks/58766', 'en', 11157), +(27255, 'Dutch Courage and Other Stories', 'London, Jack', '2004-12-24', 113, 'https://www.gutenberg.org/ebooks/14449', 'en', 323), +(27256, 'Aarresaari', 'Stevenson, Robert Louis', '2013-12-03', 13, 'https://www.gutenberg.org/ebooks/44339', 'fi', 324), +(27257, 'Punch, or the London Charivari, Volume 99, July 12, 1890', 'Various', '2004-04-01', 1, 'https://www.gutenberg.org/ebooks/11907', 'en', 134), +(27258, 'The Scapegoat', 'Maples, Richard', '2011-07-13', 17, 'https://www.gutenberg.org/ebooks/36719', 'en', 2004), +(27259, 'An Address to Free Coloured Americans', 'Anti-slavery Convention of American Women', '2012-09-19', 10, 'https://www.gutenberg.org/ebooks/40799', 'en', 180), +(27260, 'Mr. Punch\'s Golf Stories', NULL, '2012-01-27', 90, 'https://www.gutenberg.org/ebooks/38683', 'en', 2965), +(27261, 'The Gilded Age, Part 5.', 'Warner, Charles Dudley', '2004-06-20', 15, 'https://www.gutenberg.org/ebooks/5822', 'en', 1238), +(27262, 'Being Well-Born: An Introduction to Eugenics', 'Guyer, Michael F. (Michael Frederic)', '2012-05-21', 25, 'https://www.gutenberg.org/ebooks/39751', 'en', 7357), +(27263, 'Leçons de cosmographie\r\nà l\'usage des lycées et collèges et de tous les établissements d\'instruction publique', 'Guilmin, Adrien', '2007-10-08', 29, 'https://www.gutenberg.org/ebooks/22917', 'fr', 11158), +(27264, 'A Country Idyl, and Other Stories', 'Bolton, Sarah Knowles', '2015-07-12', 17, 'https://www.gutenberg.org/ebooks/49426', 'en', 770), +(27265, 'The Doré Bible Gallery, Volume 1', NULL, '2004-07-28', 17, 'https://www.gutenberg.org/ebooks/8701', 'en', 9674), +(27266, 'Golden Stories\nA Selection of the Best Fiction by the Foremost Writers', 'Various', '2006-09-22', 20, 'https://www.gutenberg.org/ebooks/19356', 'en', 179), +(27267, 'Poems', 'Maynard, Theodore', '2017-07-09', 23, 'https://www.gutenberg.org/ebooks/55079', 'en', 1594), +(27268, 'The Soul of the Indian: An Interpretation', 'Eastman, Charles Alexander', '2008-07-05', 79, 'https://www.gutenberg.org/ebooks/340', 'en', 11159), +(27269, 'Mme de La Fayette (6e édition)', 'Haussonville, comte d\'', '2011-01-07', 16, 'https://www.gutenberg.org/ebooks/34872', 'fr', 11160), +(27270, 'For Every Music Lover\nA Series of Practical Essays on Music', 'Moore, Aubertine Woodward', '2006-04-29', 120, 'https://www.gutenberg.org/ebooks/18284', 'en', 250), +(27271, '耳食錄', 'Yue, Jun', '2008-12-09', 8, 'https://www.gutenberg.org/ebooks/27459', 'zh', 1003), +(27272, 'The Parisians — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 18, 'https://www.gutenberg.org/ebooks/7749', 'en', 1165), +(27273, 'The Boy Fortune Hunters in Egypt', 'Baum, L. Frank (Lyman Frank)', '2017-10-29', 35, 'https://www.gutenberg.org/ebooks/55845', 'en', 11161), +(27274, 'Mémoires de Céleste Mogador, Volume 2 (of 4)', 'Chabrillan, Céleste Vénard de, comtesse', '2017-06-28', 8, 'https://www.gutenberg.org/ebooks/54997', 'fr', 11162), +(27275, 'Höherzüchtung des Menschen auf biologischer Grundlage.\nVortrag', 'Franze, Paul Christian', '2013-10-09', 7, 'https://www.gutenberg.org/ebooks/43920', 'de', 7357), +(27276, 'Deutsche Lyrik seit Liliencron', NULL, '2009-03-25', 20, 'https://www.gutenberg.org/ebooks/28411', 'de', 510), +(27277, 'Lectures on Art, Delivered Before the University of Oxford in Hilary Term, 1870', 'Ruskin, John', '2006-09-03', 44, 'https://www.gutenberg.org/ebooks/19164', 'en', 787), +(27278, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 7 (of 8)\r\nThe Secret Rose. Rosa Alchemica. The Tables of the Law. The Adoration of the Magi. John Sherman and Dhoya', 'Yeats, W. B. (William Butler)', '2015-08-05', 53, 'https://www.gutenberg.org/ebooks/49614', 'en', 1728), +(27279, 'A Short History of France', 'Parmele, Mary Platt', '2005-10-20', 25, 'https://www.gutenberg.org/ebooks/16910', 'en', 624), +(27280, 'The Literary Remains of Samuel Taylor Coleridge, Volume 2', 'Coleridge, Samuel Taylor', '2005-07-01', 55, 'https://www.gutenberg.org/ebooks/8533', 'en', 1735), +(27281, 'The Origin of Species by Means of Natural Selection\r\nOr, the Preservation of Favoured Races in the Struggle for Life, 6th Edition', 'Darwin, Charles', '1999-12-01', 697, 'https://www.gutenberg.org/ebooks/2009', 'en', 4602), +(27282, 'The Haunted Bookshop', 'Morley, Christopher', '1994-10-01', 128, 'https://www.gutenberg.org/ebooks/172', 'en', 557), +(27283, 'Gasoline and Oil Stoves, \"New Process\" and \"Standard.\" 1901', 'Standard Lighting Company', '2017-03-22', 17, 'https://www.gutenberg.org/ebooks/54399', 'en', 11163), +(27284, 'Some Forerunners of Italian Opera', 'Henderson, W. J. (William James)', '2006-11-28', 91, 'https://www.gutenberg.org/ebooks/19958', 'en', 11164), +(27285, 'Mezzerow Loves Company', 'Wallace, F. L. (Floyd L.)', '2007-08-14', 28, 'https://www.gutenberg.org/ebooks/22319', 'en', 26), +(27286, 'Our Monthly Devotions', 'Lings, Albert A.', '2015-12-21', 20, 'https://www.gutenberg.org/ebooks/50739', 'en', 3214), +(27287, 'The Canadian Dominion: A Chronicle of Our Northern Neighbor', 'Skelton, Oscar D. (Oscar Douglas)', '2001-09-01', 36, 'https://www.gutenberg.org/ebooks/2835', 'en', 11165), +(27288, 'Le poëme de Myrza - Hamlet', 'Sand, George', '2009-04-27', 34, 'https://www.gutenberg.org/ebooks/28623', 'fr', 100), +(27289, 'Resa a discrezione\nTeatro in prosa vol. II', 'Giacosa, Giuseppe', '2010-10-15', 12, 'https://www.gutenberg.org/ebooks/33865', 'it', 4296), +(27290, 'The Thirteen Names of the First Patriarchs, Considered as Figurative of the Progressive Influence of the Spirit.\r\nBeing the Substance of Two Sermons, Preached on Wednesday March 24, and April 3, 1811, at the Obelisk Chapel', 'Church, J. (John)', '2018-12-27', 9, 'https://www.gutenberg.org/ebooks/58554', 'en', 2386), +(27291, 'Ely\'s Automatic Housemaid', 'Bellamy, Elizabeth W. (Elizabeth Whitfield)', '2019-05-12', 44, 'https://www.gutenberg.org/ebooks/59486', 'en', 11166), +(27292, 'Senatorial Character\r\nA Sermon in West Church, Boston, Sunday, 15th of March, After the Decease of Charles Sumner.', 'Bartol, C. A. (Cyrus Augustus)', '2008-06-25', 3, 'https://www.gutenberg.org/ebooks/25900', 'en', 640), +(27293, 'Jälkipoimintoja 2: Omistaan eläjiä', 'Päivärinta, Pietari', '2014-02-16', 37, 'https://www.gutenberg.org/ebooks/44937', 'fi', 456), +(27294, 'Graham\'s Magazine, Vol. XXXVII, No. 1, July 1850', 'Various', '2017-01-17', 8, 'https://www.gutenberg.org/ebooks/53980', 'en', 380), +(27295, 'The Towns of Roman Britain', 'Bevan, J. O. (James Oliver)', '2010-07-03', 23, 'https://www.gutenberg.org/ebooks/33059', 'en', 11167), +(27296, 'Kertomuksia I', 'Chekhov, Anton Pavlovich', '2016-08-19', 6, 'https://www.gutenberg.org/ebooks/52852', 'fi', 4710), +(27297, 'And the Kaiser abdicates: The German Revolution November 1918-August 1919', 'Bouton, S. Miles (Stephen Miles)', '2012-04-29', 9, 'https://www.gutenberg.org/ebooks/39563', 'en', 11168), +(27298, 'Current History, Vol. VIII, No. 3, June 1918\nA Monthly Magazine of the New York Times', 'Various', '2012-11-25', 19, 'https://www.gutenberg.org/ebooks/41479', 'en', 335), +(27299, 'The Booming of Acre Hill, and Other Reminiscences of Urban and Suburban Life', 'Bangs, John Kendrick', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11309', 'en', 262), +(27300, 'Psalms - Selections from the World English Bible Translation', 'Unknown', '2007-02-03', 3, 'https://www.gutenberg.org/ebooks/20688', 'en', 11169), +(27301, 'Anatole France', 'George, W. L.', '2019-01-30', 9, 'https://www.gutenberg.org/ebooks/58792', 'en', 11170), +(27302, 'Manfredo\nDrama en tres actos', 'Byron, George Gordon Byron, Baron', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10821', 'es', 402), +(27303, 'Diary of Samuel Pepys — Complete 1662 N.S.', 'Pepys, Samuel', '2004-10-31', 21, 'https://www.gutenberg.org/ebooks/4138', 'en', 478), +(27304, 'The Tenants: An Episode of the \'80s', 'Watts, Mary S. (Mary Stanbery)', '2019-05-31', 31, 'https://www.gutenberg.org/ebooks/59640', 'en', 728), +(27305, 'The History of Antiquity, Vol. 1 (of 6)', 'Duncker, Max', '2012-01-26', 79, 'https://www.gutenberg.org/ebooks/38677', 'en', 1368), +(27306, '列女傳', 'Liu, Xiang', '2008-01-10', 17, 'https://www.gutenberg.org/ebooks/24228', 'zh', 11171), +(27307, 'Songs Unsung', 'Morris, Lewis', '2018-02-20', 8, 'https://www.gutenberg.org/ebooks/56608', 'en', 11172), +(27308, 'Quotations from the Project Gutenberg Editions of the Collected Works of George Meredith', 'Meredith, George', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/4904', 'en', 1026), +(27309, 'The Handbook to the Rivers and Broads of Norfolk & Suffolk', 'Davies, G. Christopher (George Christopher)', '2011-04-25', 16, 'https://www.gutenberg.org/ebooks/35954', 'en', 11173), +(27310, 'Confession and Absolution', 'Capel, T. J. (Thomas John)', '2006-04-27', 9, 'https://www.gutenberg.org/ebooks/18270', 'en', 6970), +(27311, 'Bij de ruïnen van Angkor\r\nDe Aarde en haar Volken, 1906', 'Miramon-Fargues, Vicomte de', '2004-10-10', 28, 'https://www.gutenberg.org/ebooks/13698', 'nl', 11174), +(27312, 'St. George for England: A Tale of Cressy and Poitiers', 'Henty, G. A. (George Alfred)', '2011-01-08', 24, 'https://www.gutenberg.org/ebooks/34886', 'en', 7229), +(27313, 'Buried Cities, Volume 3: Mycenae', 'Hall, Jennie', '2004-08-10', 13, 'https://www.gutenberg.org/ebooks/9627', 'en', 11175), +(27314, 'The Seed of the Toc-Toc Birds', 'Weiss, George Henry', '2007-12-12', 26, 'https://www.gutenberg.org/ebooks/23831', 'en', 26), +(27315, 'Sir Wilfrid Laurier', 'McArthur, Peter', '2015-03-16', 7, 'https://www.gutenberg.org/ebooks/48500', 'en', 7623), +(27316, 'Mary and I: Forty Years with the Sioux', 'Riggs, Stephen Return', '2013-05-25', 6, 'https://www.gutenberg.org/ebooks/42806', 'en', 11176), +(27317, 'Le Tour du Monde; Île d\'Elbe\r\nJournal des voyages et des voyageurs; 2. sem. 1905', 'Various', '2009-07-29', 6, 'https://www.gutenberg.org/ebooks/29537', 'fr', 1673), +(27318, 'Danira', 'Werner, E.', '2011-02-04', 6, 'https://www.gutenberg.org/ebooks/35168', 'en', 803), +(27319, 'L\'expédition de la Jeannette au pôle Nord, racontée par tous les membres de l\'expédition - volume 2\r\nouvrage composé des documents reçus par le \'New-York Herald\' de 1878 à 1882', NULL, '2017-06-23', 11, 'https://www.gutenberg.org/ebooks/54963', 'fr', 11177), +(27320, 'Human Bullets: A Soldier\'s Story of Port Arthur', 'Sakurai, Tadayoshi', '2014-12-06', 35, 'https://www.gutenberg.org/ebooks/47548', 'en', 4765), +(27321, 'Journal des Goncourt (Deuxième série, premier volume)\nMémoires de la vie littéraire', 'Goncourt, Edmond de', '2005-12-06', 10, 'https://www.gutenberg.org/ebooks/17238', 'fr', 3713), +(27322, 'Men Called Him Master', 'Smith, Elwyn A. (Elwyn Allen)', '2006-09-06', 20, 'https://www.gutenberg.org/ebooks/19190', 'en', 7179), +(27323, 'Shakespeare\'s play of the Merchant of Venice\r\nArranged for Representation at the Princess\'s Theatre, with Historical and Explanatory Notes by Charles Kean, F.S.A.', 'Shakespeare, William', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12578', 'en', 4869), +(27324, 'German philosophy and politics', 'Dewey, John', '2013-02-26', 36, 'https://www.gutenberg.org/ebooks/42208', 'en', 902), +(27325, 'Olaf the Glorious: A Story of the Viking Age', 'Leighton, Robert', '2005-12-01', 47, 'https://www.gutenberg.org/ebooks/9415', 'en', 2703), +(27326, 'Nel paese dei dollari\nTre anni a New-York', 'Rossi, Adolfo', '2006-02-23', 17, 'https://www.gutenberg.org/ebooks/17836', 'it', 11178), +(27327, 'Das rasende Leben: Zwei Novellen', 'Edschmid, Kasimir', '2009-12-08', 4, 'https://www.gutenberg.org/ebooks/30628', 'de', 61), +(27328, 'Les Misérables, v. 2/5: Cosette', 'Hugo, Victor', '2015-04-18', 24, 'https://www.gutenberg.org/ebooks/48732', 'en', 264), +(27329, 'A General Sketch of the European War: The First Phase', 'Belloc, Hilaire', '2006-03-23', 24, 'https://www.gutenberg.org/ebooks/18042', 'en', 335), +(27330, 'Cocke Lorelles Bote', 'Anonymous', '2019-08-24', 113, 'https://www.gutenberg.org/ebooks/60158', 'en', NULL), +(27331, 'Interference and Other Football Stories', 'Sherman, Harold M. (Harold Morrow)', '2009-11-05', 6, 'https://www.gutenberg.org/ebooks/29705', 'en', 5031), +(27332, 'The Confessions of Jean Jacques Rousseau — Complete', 'Rousseau, Jean-Jacques', '2004-08-15', 492, 'https://www.gutenberg.org/ebooks/3913', 'en', 1419), +(27333, 'Fialho d\'Almeida', 'Villa-Moura, Bento de Oliveira Cardoso, Visconde de', '2010-11-12', 5, 'https://www.gutenberg.org/ebooks/34288', 'pt', 11179), +(27334, 'Hildegarde\'s Holiday: A Story for Girls', 'Richards, Laura Elizabeth Howe', '2008-03-13', 34, 'https://www.gutenberg.org/ebooks/24826', 'en', 1817), +(27335, 'Ballads of Bravery', NULL, '2016-09-26', 12, 'https://www.gutenberg.org/ebooks/53148', 'en', 8), +(27336, 'Bartholomew Sastrow: Being the Memoirs of a German Burgomaster', 'Sastrow, Bartholomäus', '2010-10-29', 17, 'https://www.gutenberg.org/ebooks/33891', 'en', 3899), +(27337, 'Harper\'s Round Table, April 30, 1895', 'Various', '2010-06-22', 8, 'https://www.gutenberg.org/ebooks/32943', 'en', 668), +(27338, 'The Journal of Ophthalmology, Otology and Laryngology. Vol. XII. July, 1900. Part 3.', 'Various', '2019-05-10', 10, 'https://www.gutenberg.org/ebooks/59472', 'en', 11180), +(27339, 'Sweet Their Blood and Sticky', 'Teichner, Albert', '2007-05-22', 27, 'https://www.gutenberg.org/ebooks/21568', 'en', 26), +(27340, 'An Historical Mystery (The Gondreville Mystery)', 'Balzac, Honoré de', '2004-11-06', 44, 'https://www.gutenberg.org/ebooks/1678', 'en', 58), +(27341, 'Principles of Public Health\r\nA Simple Text Book on Hygiene, Presenting the Principles Fundamental to the Conservation of Individual and Community Health', 'Tuttle, Thomas Dyer', '2017-01-16', 34, 'https://www.gutenberg.org/ebooks/53974', 'en', 11181), +(27342, 'San Cristóbal de la Habana', 'Hergesheimer, Joseph', '2011-12-30', 21, 'https://www.gutenberg.org/ebooks/38445', 'en', 11182), +(27343, 'British Quarterly Review, American Edition, Vol. LIII\nJanuary and April, 1871', 'Various', '2012-05-02', 10, 'https://www.gutenberg.org/ebooks/39597', 'en', 5498), +(27344, 'A Chesterton Calendar\r\nCompiled from the writings of \'G.K.C.\' both in verse and in prose. With a section apart for the moveable feasts.', 'Chesterton, G. K. (Gilbert Keith)', '2014-05-29', 39, 'https://www.gutenberg.org/ebooks/45811', 'en', 11183), +(27345, 'Siddhartha: eine indische Dichtung', 'Hesse, Hermann', '2001-02-01', 468, 'https://www.gutenberg.org/ebooks/2499', 'de', 11184), +(27346, 'The Non-Christian Cross\nAn Enquiry into the Origin and History of the Symbol Eventually Adopted as That of Our Religion', 'Parsons, John Denham', '2005-10-01', 59, 'https://www.gutenberg.org/ebooks/9071', 'en', 5684), +(27347, 'Elsie at Ion', 'Finley, Martha', '2015-02-25', 17, 'https://www.gutenberg.org/ebooks/48356', 'en', 195), +(27348, 'The Galleon\'s Gold; or, Frank Reade, Jr.\'s Deep Sea Search.', 'Senarens, Luis', '2017-05-11', 18, 'https://www.gutenberg.org/ebooks/54709', 'en', 26), +(27349, 'Sunny Slopes', 'Hueston, Ethel', '2006-05-20', 21, 'https://www.gutenberg.org/ebooks/18426', 'en', 7171), +(27350, 'The Song of Hiawatha', 'Longfellow, Henry Wadsworth', '2004-06-01', 398, 'https://www.gutenberg.org/ebooks/19', 'en', 11185), +(27351, 'The Mill Mystery', 'Green, Anna Katharine', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/6805', 'en', 128), +(27352, 'The Inquisition\nA Critical and Historical Study of the Coercive Power of the Church', 'Vacandard, E. (Elphège)', '2008-08-16', 8, 'https://www.gutenberg.org/ebooks/26329', 'en', 6646), +(27353, 'A Maid of Brittany: A Romance', 'Knowles, Mabel Winifred', '2015-06-25', 9, 'https://www.gutenberg.org/ebooks/49284', 'en', 11186), +(27354, 'Stories by English Authors: England', NULL, '2004-07-01', 115, 'https://www.gutenberg.org/ebooks/6039', 'en', 409), +(27355, 'The \"Goldfish\"\r\nBeing the Confessions af a Successful Man', 'Train, Arthur Cheney', '2004-07-16', 26, 'https://www.gutenberg.org/ebooks/12920', 'en', 11187), +(27356, 'A Day with Felix Mendelssohn Bartholdy', 'Sampson, George', '2009-07-09', 18, 'https://www.gutenberg.org/ebooks/29361', 'en', 11188), +(27357, 'On the Duties of the Clergy', 'Ambrose, Saint, Bishop of Milan', '2007-09-01', 23, 'https://www.gutenberg.org/ebooks/22789', 'en', 11189), +(27358, 'Vieraita odottaessa\nHuvinäytelmä yhdessä näytöksessä', 'Kiljander, Robert', '2005-03-12', 12, 'https://www.gutenberg.org/ebooks/15339', 'fi', 247), +(27359, 'Post Exchange Methods\r\nA Manual for Exchange Stewards, Exchange Officers, Members of Exchange Councils, Commanding Officers, Being an Exposition of a Simple and Efficient System of Accounting Which Is Applicable to Large and to Small Exchanges Alike.', 'Bunker, Paul D. (Paul Delmont)', '2019-03-05', 4, 'https://www.gutenberg.org/ebooks/59016', 'en', 11190), +(27360, 'Market Harborough, and Inside the Bar', 'Whyte-Melville, G. J. (George John)', '2018-03-28', 4, 'https://www.gutenberg.org/ebooks/56862', 'en', 137), +(27361, 'Abraham Lincoln: The Practical Mystic', 'Grierson, Francis', '2014-04-21', 24, 'https://www.gutenberg.org/ebooks/45449', 'en', 5269), +(27362, 'Das Tabu und die Ambivalenz der Gefühlsregungen\r\nÜber einige Übereinstimmungen im Seelenleben der Wilden und der Neurotiker II', 'Freud, Sigmund', '2011-08-14', 12, 'https://www.gutenberg.org/ebooks/37069', 'de', 10269), +(27363, 'A Dash for a Throne', 'Marchmont, Arthur W.', '2012-10-01', 8, 'https://www.gutenberg.org/ebooks/40907', 'en', 323), +(27364, 'Salthaven', 'Jacobs, W. W. (William Wymark)', '2007-06-25', 13, 'https://www.gutenberg.org/ebooks/21930', 'en', 1391), +(27365, 'Human Genome Project, Build 34, Human Genome Supplemental Data', 'Human Genome Project', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11799', 'en', 1385), +(27366, 'L\'ebook a 40 ans (1971-2011)', 'Lebert, Marie', '2011-08-06', 35, 'https://www.gutenberg.org/ebooks/36987', 'fr', 2047), +(27367, 'Climatic Changes: Their Nature and Causes', 'Visher, Stephen Sargent', '2011-10-26', 43, 'https://www.gutenberg.org/ebooks/37855', 'en', 11191), +(27368, 'The Baculum in Microtine Rodents', 'Anderson, Sydney', '2011-11-15', 11, 'https://www.gutenberg.org/ebooks/38021', 'en', 5946), +(27369, 'Drei Meister: Balzac, Dickens, Dostojewski', 'Zweig, Stefan', '2011-06-12', 46, 'https://www.gutenberg.org/ebooks/36389', 'de', 11192), +(27370, 'They Were Different', 'Kenney, Neil J.', '2019-04-08', 56, 'https://www.gutenberg.org/ebooks/59224', 'en', 26), +(27371, 'A Prince of Bohemia', 'Balzac, Honoré de', '2005-07-06', 13, 'https://www.gutenberg.org/ebooks/1812', 'en', 58), +(27372, '\"I was there\" with the Yanks on the western front, 1917-1919', 'Baldridge, Cyrus Leroy', '2005-05-29', 19, 'https://www.gutenberg.org/ebooks/15937', 'en', 2071), +(27373, 'Ντόπιες Ζωγραφιές', 'Chatzopoulos, D.', '2010-06-07', 6, 'https://www.gutenberg.org/ebooks/32729', 'el', 179), +(27374, 'The Art of Amusing\r\nBeing a Collection of Graceful Arts, Merry Games, Odd Tricks, Curious Puzzles, and New Charades. Together with Suggestions for Private Theatricals, Tableaux, and All Sorts of Parlor and Family Amusements.', 'Bellew, Frank', '2012-07-23', 46, 'https://www.gutenberg.org/ebooks/40309', 'en', 11193), +(27375, 'Ιστορίαι Ηροδότου, Τόμος 2', 'Herodotus', '2011-12-04', 23, 'https://www.gutenberg.org/ebooks/38213', 'el', 5663), +(27376, 'Our Churches and Chapels: Their Parsons, Priests, & Congregations\r\nBeing a Critical and Historical Account of Every Place of Worship in Preston', 'Atticus', '2003-12-01', 28, 'https://www.gutenberg.org/ebooks/10479', 'en', 11194), +(27377, 'At the Back of the North Wind', 'MacDonald, George', '2006-06-17', 92, 'https://www.gutenberg.org/ebooks/18614', 'en', 1007), +(27378, 'The Wasted Generation', 'Johnson, Owen', '2015-01-08', 23, 'https://www.gutenberg.org/ebooks/47910', 'en', 11195), +(27379, 'The Wives of the Dead\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9243', 'en', 3175), +(27380, 'The Boy Scouts of the Life Saving Crew', 'Shaler, Robert', '2015-02-05', 18, 'https://www.gutenberg.org/ebooks/48164', 'en', 124), +(27381, 'A History of the Nations and Empires Involved and a Study of the Events Culminating in the Great Conflict', 'Marshall, Logan', '2003-02-01', 28, 'https://www.gutenberg.org/ebooks/3779', 'en', 8474), +(27382, 'Scientific American Supplement, No. 288, July 9, 1881', 'Various', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8391', 'en', 210), +(27383, 'A Treatise on Chancel Screens and Rood Lofts\nTheir Antiquity, Use, and Symbolic Signification', 'Pugin, Augustus Welby Northmore', '2016-04-27', 16, 'https://www.gutenberg.org/ebooks/51875', 'en', 11196), +(27384, 'Poems of West & East', 'Sackville-West, V. (Victoria)', '2010-01-04', 37, 'https://www.gutenberg.org/ebooks/30842', 'en', 8), +(27385, 'Œuvres complètes de lord Byron, Tome 4\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-02-14', 15, 'https://www.gutenberg.org/ebooks/28081', 'fr', 3504), +(27386, 'Mestari Nyke: Romaani, merkkiteos', 'Lassila, Maiju', '2015-05-14', 12, 'https://www.gutenberg.org/ebooks/48958', 'fi', 175), +(27387, 'A History of the Four Georges, Volume I', 'McCarthy, Justin', '2007-11-13', 7, 'https://www.gutenberg.org/ebooks/23469', 'en', 4000), +(27388, 'Poppy\'s Presents', 'Walton, O. F., Mrs.', '2009-06-18', 21, 'https://www.gutenberg.org/ebooks/29153', 'en', 470), +(27389, 'A History of the Town of Fairfax', 'Rust, Jeanne Johnson', '2010-04-14', 9, 'https://www.gutenberg.org/ebooks/31990', 'en', 11197), +(27390, 'Modern French Prisons\r\nBicêtre; St. Pélagie; St. Lazare; La Force; The Conciergerie; La Grande and La Petite Roquettes; Mazas; La Santé', 'Griffiths, Arthur', '2016-01-27', 3, 'https://www.gutenberg.org/ebooks/51049', 'en', 11198), +(27391, 'Opiksi ja huviksi: Lukemisia Suomen perheille', 'Yrjö-Koskinen, Yrjö Sakari', '2008-10-15', 9, 'https://www.gutenberg.org/ebooks/26927', 'fi', 11199), +(27392, 'Film: the Bikini Island ABLE Atomic Test', NULL, '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/5213', 'en', 11200), +(27393, 'The Origin of the Werewolf Superstition', 'Stewart, Caroline Taylor', '2013-11-08', 40, 'https://www.gutenberg.org/ebooks/44134', 'en', 11201), +(27394, 'La maniere d\'amolir les os, et de faire cuire toutes sortes de viandes en fort peu de temps, & à peu de frais.', 'Papin, Denis', '2016-10-01', 10, 'https://www.gutenberg.org/ebooks/53183', 'fr', 11202), +(27395, 'The Development of the European Nations, 1870-1914 (5th ed.)', 'Rose, J. Holland (John Holland)', '2005-01-09', 20, 'https://www.gutenberg.org/ebooks/14644', 'en', 11203), +(27396, 'Grace Harlowe\'s Golden Summer', 'Chase, Josephine', '2007-01-28', 25, 'https://www.gutenberg.org/ebooks/20471', 'en', 51), +(27397, 'Joy in the Morning', 'Andrews, Mary Raymond Shipman', '2005-05-08', 26, 'https://www.gutenberg.org/ebooks/15796', 'en', 579), +(27398, 'Ewing\'s Lady', 'Wilson, Harry Leon', '2010-06-27', 76, 'https://www.gutenberg.org/ebooks/32988', 'en', 376), +(27399, 'How to Amuse Youself and Others: The American Girl\'s Handy Book', 'Beard, Lina', '2016-05-12', 29, 'https://www.gutenberg.org/ebooks/52051', 'en', 11204), +(27400, 'Our Army at the Front', 'Broun, Heywood', '2011-06-25', 12, 'https://www.gutenberg.org/ebooks/36514', 'en', 699), +(27401, 'Confidential Chats with Boys', 'Howard, William Lee', '2018-07-17', 32, 'https://www.gutenberg.org/ebooks/57523', 'en', 2378), +(27402, 'The Law of Civilization and Decay: An Essay on History', 'Adams, Brooks', '2014-02-14', 41, 'https://www.gutenberg.org/ebooks/44908', 'en', 4612), +(27403, 'The Garden of Eden', 'Brand, Max', '2010-07-03', 49, 'https://www.gutenberg.org/ebooks/33066', 'en', 5836), +(27404, 'Into the Highways and Hedges', 'Montrésor, F. F. (Frances Frederica)', '2012-08-27', 39, 'https://www.gutenberg.org/ebooks/40594', 'en', 4448), +(27405, 'The Heart of Pinocchio: New Adventures of the Celebrated Little Puppet', 'Nipote, Collodi', '2012-11-23', 29, 'https://www.gutenberg.org/ebooks/41446', 'en', 1266), +(27406, 'Historic Tales: The Romance of Reality. Vol. 02 (of 15), American (2)', 'Morris, Charles', '2008-04-19', 20, 'https://www.gutenberg.org/ebooks/25103', 'en', 207), +(27407, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 337, October 25, 1828', 'Various', '2004-02-01', 1, 'https://www.gutenberg.org/ebooks/11336', 'en', 133), +(27408, 'The Wind-Jammers', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-08-06', 23, 'https://www.gutenberg.org/ebooks/55274', 'en', 3421), +(27409, 'Pompeijin viimeiset päivät', 'Lytton, Edward Bulwer Lytton, Baron', '2008-10-06', 22, 'https://www.gutenberg.org/ebooks/26786', 'fi', 98), +(27410, 'Aus meinem Königreich: Tales from the Carpathian Mountains', 'Sylva, Carmen', '2010-03-22', 21, 'https://www.gutenberg.org/ebooks/31731', 'en', 9347), +(27411, 'Histoire de France 1466-1483 (Volume 8/19)', 'Michelet, Jules', '2013-07-26', 23, 'https://www.gutenberg.org/ebooks/43311', 'fr', 624), +(27412, 'Eight Years\' Wanderings in Ceylon', 'Baker, Samuel White, Sir', '2000-01-01', 32, 'https://www.gutenberg.org/ebooks/2036', 'en', 144), +(27413, 'The Story Of The Prophet Jonas', NULL, '2008-12-29', 21, 'https://www.gutenberg.org/ebooks/27654', 'en', 6420), +(27414, 'Infernaliana\r\nAnecdotes, petits romans, nouvelles et contes sur les revenans, les spectres, les démons et les vampires', 'Nodier, Charles', '2006-03-31', 53, 'https://www.gutenberg.org/ebooks/18089', 'fr', 10485), +(27415, 'Mistress and Maid: A Household Story', 'Craik, Dinah Maria Mulock', '2004-09-15', 35, 'https://www.gutenberg.org/ebooks/13461', 'en', 11205), +(27416, 'Quotes and Images From the Works of John Galsworthy', 'Galsworthy, John', '2005-04-29', 27, 'https://www.gutenberg.org/ebooks/7544', 'en', 1026), +(27417, 'Beauty and the Beast', 'Anonymous', '2006-11-30', 382, 'https://www.gutenberg.org/ebooks/19967', 'en', 1007), +(27418, 'The Philippine Islands, 1493-1898, Volume 43, 1670-1700\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2011-02-24', 33, 'https://www.gutenberg.org/ebooks/35391', 'en', 745), +(27419, 'L\'Antologia di Gian Pietro Vieusseux', 'Prunas, Paolo', '2014-08-23', 14, 'https://www.gutenberg.org/ebooks/46663', 'it', 11206), +(27420, 'Punch, or the London Charivari, Volume 152, June 27, 1917', 'Various', '2005-06-23', 17, 'https://www.gutenberg.org/ebooks/16113', 'en', 134), +(27421, 'The cõforte of louers\nThe Comfort of Lovers', 'Hawes, Stephen', '2007-08-15', 8, 'https://www.gutenberg.org/ebooks/22326', 'en', 8), +(27422, 'The Social Life of the Blackfoot Indians', 'Wissler, Clark', '2015-12-17', 19, 'https://www.gutenberg.org/ebooks/50706', 'en', 9713), +(27423, 'Die Braut von Messina', 'Schiller, Friedrich', '2004-09-01', 41, 'https://www.gutenberg.org/ebooks/6496', 'de', 11207), +(27424, 'Ethics — Part 4', 'Spinoza, Benedictus de', '1997-07-01', 59, 'https://www.gutenberg.org/ebooks/971', 'en', 680), +(27425, 'The Headswoman', 'Grahame, Kenneth', '2010-11-08', 34, 'https://www.gutenberg.org/ebooks/34243', 'en', 781), +(27426, 'Contemporary Russian Novelists', 'Persky, Serge', '2010-03-04', 34, 'https://www.gutenberg.org/ebooks/31503', 'en', 11208), +(27427, 'Sacrifice', 'Whitman, Stephen French', '2007-10-09', 47, 'https://www.gutenberg.org/ebooks/22928', 'en', 61), +(27428, 'English Interference with Irish Industries', 'MacNeill, J. G. Swift (John Gordon Swift)', '2015-07-10', 7, 'https://www.gutenberg.org/ebooks/49419', 'en', 11209), +(27429, 'The Triumphs of Eugène Valmont', 'Barr, Robert', '2006-09-25', 268, 'https://www.gutenberg.org/ebooks/19369', 'en', 11210), +(27430, 'First Principles', 'Spencer, Herbert', '2017-07-05', 104, 'https://www.gutenberg.org/ebooks/55046', 'en', 354), +(27431, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 485, April 16, 1831', 'Various', '2004-06-29', 8, 'https://www.gutenberg.org/ebooks/12781', 'en', 133), +(27432, 'El Kab', 'Quibell, James Edward', '2008-12-09', 20, 'https://www.gutenberg.org/ebooks/27466', 'en', 11211), +(27433, 'Elle et lui', 'Sand, George', '2004-10-06', 32, 'https://www.gutenberg.org/ebooks/13653', 'fr', 298), +(27434, 'Some Longer Elizabethan Poems', NULL, '2017-02-19', 9, 'https://www.gutenberg.org/ebooks/54194', 'en', 466), +(27435, 'The Native Races [of the Pacific states], Volume 3, Myths and Languages\r\nThe Works of Hubert Howe Bancroft, Volume 3', 'Bancroft, Hubert Howe', '2013-07-07', 28, 'https://www.gutenberg.org/ebooks/43123', 'en', 4502), +(27436, 'Human Genome Project, rough draft, Chromosome Number 04', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2204', 'en', 2318), +(27437, 'The Bread-winners: A Social Study', 'Hay, John', '2005-07-17', 27, 'https://www.gutenberg.org/ebooks/16321', 'en', 8934), +(27438, 'A Plain Cookery Book for the Working Classes', 'Francatelli, Charles Elmé', '2007-07-21', 109, 'https://www.gutenberg.org/ebooks/22114', 'en', 6071), +(27439, 'The Call of the Cumberlands', 'Buck, Charles Neville', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7776', 'en', 4872), +(27440, 'Nasby in Exile\r\nor, Six Months of Travel in England, Ireland, Scotland, France, Germany, Switzerland and Belgium, with many things not of travel', 'Locke, David Ross', '2014-07-30', 26, 'https://www.gutenberg.org/ebooks/46451', 'en', 1408), +(27441, 'The Curlytops at Silver Lake; Or, On the Water with Uncle Ben', 'Garis, Howard Roger', '2014-12-07', 21, 'https://www.gutenberg.org/ebooks/47583', 'en', 766), +(27442, 'The Evolution of an Empire: A Brief Historical Sketch of France', 'Parmele, Mary Platt', '2010-10-15', 10, 'https://www.gutenberg.org/ebooks/34071', 'en', 624), +(27443, 'The Three Impostors', NULL, '2015-11-22', 22, 'https://www.gutenberg.org/ebooks/50534', 'en', 1616), +(27444, 'The British Journal of Dermatology, April 1905', 'Various', '2019-01-23', 6, 'https://www.gutenberg.org/ebooks/58759', 'en', 11212), +(27445, 'Life of Robert Browning', 'Sharp, William', '2004-12-26', 15, 'https://www.gutenberg.org/ebooks/14476', 'en', 6521), +(27446, 'The Character and Influence of the Indian Trade in Wisconsin', 'Turner, Frederick Jackson', '2007-02-21', 25, 'https://www.gutenberg.org/ebooks/20643', 'en', 11213), +(27447, 'State of the Union Addresses', 'Fillmore, Millard', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/5021', 'en', 1276), +(27448, 'A Noble Queen: A Romance of Indian History (Volume 1 of 3)', 'Taylor, Meadows', '2013-11-28', 15, 'https://www.gutenberg.org/ebooks/44306', 'en', 11214), +(27449, 'Folklore of the Santal Parganas', 'Bompas, Cecil Henry', '2004-04-01', 63, 'https://www.gutenberg.org/ebooks/11938', 'en', 8566), +(27450, 'America First', 'Greene, Frances Nimmo', '2011-07-14', 24, 'https://www.gutenberg.org/ebooks/36726', 'en', 146), +(27451, 'The Aeroplane Speaks. Fifth Edition', 'Barber, H. (Horatio)', '2007-06-10', 25, 'https://www.gutenberg.org/ebooks/21791', 'en', 1577), +(27452, 'The Twilight of the Idols; or, How to Philosophize with the Hammer. The Antichrist\r\nComplete Works, Volume Sixteen', 'Nietzsche, Friedrich Wilhelm', '2016-06-07', 244, 'https://www.gutenberg.org/ebooks/52263', 'en', 779), +(27453, 'De schipbreuk van de \"Berlin\" 21 Februari 1907.\r\nVolledig verhaal van de scheepsramp aan den Hoek van Holland', 'Pisuisse, Jean-Louis', '2010-07-25', 13, 'https://www.gutenberg.org/ebooks/33254', 'nl', 11215), +(27454, 'A Daughter of Eve', 'Balzac, Honoré de', '1998-10-01', 37, 'https://www.gutenberg.org/ebooks/1481', 'en', 58), +(27455, 'Hudson Tercentenary\r\nAn historical retrospect regarding the object and quest of an all-water route from Europe to India; the obstacles in the way; and also Hudson\'s voyage to America in 1609 and some of its results', 'Chamberlain, Frank', '2018-08-17', 77, 'https://www.gutenberg.org/ebooks/57711', 'en', 11216), +(27456, 'Carinus: Historiallinen novelli', 'Jókai, Mór', '2008-05-05', 15, 'https://www.gutenberg.org/ebooks/25331', 'fi', 2326), +(27457, 'In Morocco', 'Wharton, Edith', '2004-02-01', 66, 'https://www.gutenberg.org/ebooks/11104', 'en', 6762), +(27458, 'Corot', 'Allnutt, Sidney', '2012-12-20', 18, 'https://www.gutenberg.org/ebooks/41674', 'en', 11217), +(27459, 'Το συναξάρι του Παπά-Παρθένη κι\' άλλες νησιώτικες ιστορίες', 'Nirvanas, Paulos', '2010-05-15', 19, 'https://www.gutenberg.org/ebooks/32386', 'el', 1348), +(27460, 'Narrative of Richard Lee Mason in the Pioneer West, 1819', 'Mason, Richard Lee', '2008-10-24', 15, 'https://www.gutenberg.org/ebooks/27002', 'en', 1110), +(27461, 'Strange Visitors\r\nA series of original papers, embracing philosophy, science, government, religion, poetry, art, fiction, satire, humor, narrative, and prophecy, by the spirits of Irving, Willis, Thackeray, Brontë, Richter, Byron, Humboldt, Hawthorne, Wesley, Browning, and others now dwelling in the spirit world; dictated through a clairvoyant, while in an abnormal or trance state', 'Horn, Henry J.', '2004-08-21', 30, 'https://www.gutenberg.org/ebooks/13237', 'en', 10981), +(27462, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria\r\nA Linked Index to the Project Gutenberg Editions', 'Maspero, G. (Gaston)', '2009-05-19', 58, 'https://www.gutenberg.org/ebooks/28876', 'en', 11218), +(27463, 'Ansa\r\nYhteiskunnallinen kuvaus Pariisin työväen elämästä toisen keisarikunnan aikana', 'Zola, Émile', '2013-08-24', 5, 'https://www.gutenberg.org/ebooks/43547', 'fi', 434), +(27464, 'Early Australian Voyages: Pelsart, Tasman, Dampier', 'Pinkerton, John', '2001-06-01', 38, 'https://www.gutenberg.org/ebooks/2660', 'en', 885), +(27465, 'Ethan Frome', 'Wharton, Edith', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9288', 'en', 705), +(27466, 'The Old Willow Tree, and Other Stories', 'Ewald, Carl', '2010-02-03', 25, 'https://www.gutenberg.org/ebooks/31167', 'en', 6089), +(27467, 'The Channel Islands', 'Morris, Joseph E. (Joseph Ernest)', '2013-04-08', 9, 'https://www.gutenberg.org/ebooks/42495', 'en', 11219), +(27468, 'Kuningatar Hanhenjalan ravintola', 'France, Anatole', '2017-08-24', 19, 'https://www.gutenberg.org/ebooks/55422', 'fi', 11220), +(27469, 'Six Major Prophets', 'Slosson, Edwin E. (Edwin Emery)', '2014-09-08', 36, 'https://www.gutenberg.org/ebooks/46809', 'en', 5883), +(27470, 'For the Allinson Honor', 'Bindloss, Harold', '2010-11-23', 20, 'https://www.gutenberg.org/ebooks/34415', 'en', 61), +(27471, 'Crater Lake National Park, Oregon', 'Anonymous', '2015-05-19', 9, 'https://www.gutenberg.org/ebooks/48993', 'en', 11221), +(27472, 'The Devil is an Ass', 'Jonson, Ben', '2015-10-07', 45, 'https://www.gutenberg.org/ebooks/50150', 'en', 907), +(27473, 'The Trumpeter Swan', 'Bailey, Temple', '2006-02-07', 40, 'https://www.gutenberg.org/ebooks/17697', 'en', 109), +(27474, 'The Mechanism of the Human Voice', 'Behnke, Emil', '2010-01-08', 59, 'https://www.gutenberg.org/ebooks/30889', 'en', 8969), +(27475, 'Matthew Arnold', 'Russell, George William Erskine', '2005-09-25', 21, 'https://www.gutenberg.org/ebooks/16745', 'en', 6521), +(27476, 'Coming Attraction', 'Leiber, Fritz', '2016-01-30', 54, 'https://www.gutenberg.org/ebooks/51082', 'en', 179), +(27477, 'Famous Persons and Places', 'Willis, Nathaniel Parker', '2015-09-01', 19, 'https://www.gutenberg.org/ebooks/49841', 'en', 2364), +(27478, 'Astounding Stories of Super-Science July 1930', 'Various', '2009-06-21', 112, 'https://www.gutenberg.org/ebooks/29198', 'en', 2527), +(27479, 'Wo Gritlis Kinder hingekommen sind\nGeschichten für Kinder und auch für solche, welche die\nKinder lieb haben, 8. Band', 'Spyri, Johanna', '2007-09-10', 42, 'https://www.gutenberg.org/ebooks/22570', 'de', 1661), +(27480, '夢溪筆談, Volume 01-06', 'Shen, Kuo', '2005-01-01', 54, 'https://www.gutenberg.org/ebooks/7312', 'zh', 2525), +(27481, 'A Spring Walk in Provence', 'Marshall, Archibald', '2014-06-19', 8, 'https://www.gutenberg.org/ebooks/46035', 'en', 209), +(27482, 'Eclectic School Readings: Stories from Life', 'Marden, Orison Swett', '2003-10-01', 21, 'https://www.gutenberg.org/ebooks/4597', 'en', 1019), +(27483, 'In Both Worlds', 'Holcombe, William H. (William Henry)', '2011-06-06', 24, 'https://www.gutenberg.org/ebooks/36342', 'en', 11222), +(27484, 'The Chronicles of Enguerrand de Monstrelet, Vol. 02 [of 13]\r\nContaining an account of the cruel civil wars between the houses of Orleans and Burgundy, of the possession of Paris and Normandy by the English, their expulsion thence, and of other memorable events that happened in the kingdom of France, as well as in other countries', 'Monstrelet, Enguerrand de', '2016-07-19', 10, 'https://www.gutenberg.org/ebooks/52607', 'en', 6786), +(27485, 'Ice-Caves of France and Switzerland', 'Browne, G. F. (George Forrest)', '2004-11-10', 51, 'https://www.gutenberg.org/ebooks/14012', 'en', 11223), +(27486, 'Runoelmia', 'Heine, Heinrich', '2006-12-30', 10, 'https://www.gutenberg.org/ebooks/20227', 'fi', 11224), +(27487, 'Uarda : a Romance of Ancient Egypt — Volume 07', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5445', 'en', 803), +(27488, 'The life and teaching of Karl Marx', 'Beer, Max', '2011-09-02', 57, 'https://www.gutenberg.org/ebooks/37290', 'en', 11225), +(27489, 'Chacune son Rêve', 'Lesueur, Daniel', '2014-01-26', 14, 'https://www.gutenberg.org/ebooks/44762', 'fr', 687), +(27490, 'La Russie en 1839, Volume I', 'Custine, Astolphe, marquis de', '2008-06-10', 56, 'https://www.gutenberg.org/ebooks/25755', 'fr', 2408), +(27491, 'The Barbarism of Berlin', 'Chesterton, G. K. (Gilbert Keith)', '2004-03-01', 79, 'https://www.gutenberg.org/ebooks/11560', 'en', 4773), +(27492, 'The life of Isambard Kingdom Brunel, Civil Engineer', 'Brunel, Isambard', '2012-10-28', 31, 'https://www.gutenberg.org/ebooks/41210', 'en', 11226), +(27493, 'Geological Report on Asbestos and its Indications, in the Province of Quebec, Canada', 'Boyd, Lucius J.', '2010-09-04', 19, 'https://www.gutenberg.org/ebooks/33630', 'en', 11227), +(27494, 'Annals and Antiquities of Rajasthan, v. 2 of 3\nor the Central and Western Rajput States of India', 'Tod, James', '2018-07-05', 21, 'https://www.gutenberg.org/ebooks/57375', 'en', 9984), +(27495, 'Alroy: Romani', 'Disraeli, Benjamin, Earl of Beaconsfield', '2008-02-26', 14, 'https://www.gutenberg.org/ebooks/24687', 'fi', 11228), +(27496, 'The Life of Crustacea', 'Calman, W. T. (William Thomas)', '2012-06-03', 15, 'https://www.gutenberg.org/ebooks/39904', 'en', 11229), +(27497, 'With ski & sledge over Arctic glaciers', 'Conway, William Martin, Sir', '2016-06-29', 15, 'https://www.gutenberg.org/ebooks/52435', 'en', 5605), +(27498, 'The New Book of Nonsense\nContribution to the Great Central Fair in Aid of the Sanitary Commission', 'Anonymous', '2014-04-24', 10, 'https://www.gutenberg.org/ebooks/45482', 'en', 11230), +(27499, 'The Son of his Father', 'Cullum, Ridgwell', '2011-05-30', 12, 'https://www.gutenberg.org/ebooks/36170', 'en', 9129), +(27500, 'Jimmie Higgins', 'Sinclair, Upton', '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/5677', 'en', 2612), +(27501, 'The Hammer: A Story of the Maccabean Times', 'Church, Alfred John', '2013-12-31', 28, 'https://www.gutenberg.org/ebooks/44550', 'en', 11231), +(27502, 'The Tale of the Flopsy Bunnies', 'Potter, Beatrix', '2004-11-30', 114, 'https://www.gutenberg.org/ebooks/14220', 'en', 1045), +(27503, 'The Child of Pleasure', 'D\'Annunzio, Gabriele', '2006-12-04', 72, 'https://www.gutenberg.org/ebooks/20015', 'en', 61), +(27504, 'Clara Vaughan, Volume 3 (of 3)', 'Blackmore, R. D. (Richard Doddridge)', '2012-10-10', 39, 'https://www.gutenberg.org/ebooks/41022', 'en', 167), +(27505, 'Starvecrow Farm', 'Weyman, Stanley John', '2012-03-14', 6, 'https://www.gutenberg.org/ebooks/39138', 'en', 45), +(27506, 'Impact', 'Cox, Irving E.', '2008-05-23', 44, 'https://www.gutenberg.org/ebooks/25567', 'en', 26), +(27507, 'Janus in Modern Life', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2017-12-01', 15, 'https://www.gutenberg.org/ebooks/56095', 'en', 7427), +(27508, 'Chivalry: Dizain des Reines', 'Cabell, James Branch', '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/11752', 'en', 2442), +(27509, 'La Bretagne. Paysages et Récits.', 'Loudun, Eugène', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/10680', 'fr', 11232), +(27510, 'Scott Burton and the Timber Thieves', 'Cheyney, Edward G. (Edward Gheen)', '2018-05-12', 5, 'https://www.gutenberg.org/ebooks/57147', 'en', 124), +(27511, 'Early Voyages to Terra Australis, Now Called Australia:\r\nA Collection of Documents, and Extracts from Early Manuscript Maps, Illustrative of the History of Discovery on the Coasts of That Vast Island, from the Beginning of the Sixteenth Century to the Time of Captain Cook.', 'Major, Richard Henry', '2019-02-22', 14, 'https://www.gutenberg.org/ebooks/58933', 'en', 885), +(27512, 'Henry Wadsworth Longfellow', 'Higginson, Thomas Wentworth', '2010-08-11', 13, 'https://www.gutenberg.org/ebooks/33402', 'en', 7653), +(27513, 'Souvenirs de voyage\r\ndans le midi de la France... dans la Ligurie, à Gênes, Rome, Naples... sur l\'Adriatique, dans l\'Albanie... la Dalmatie, l\'Illyri', 'Mercier-Thoinnet', '2007-03-15', 9, 'https://www.gutenberg.org/ebooks/20829', 'fr', 1408), +(27514, 'The Expeditions of Zebulon Montgomery Pike, Volume 2 (of 3)\r\nTo Headwaters of the Mississippi River Through Louisiana Territory, and in New Spain, During the Years 1805-6-7.', 'Coues, Elliott', '2013-09-21', 33, 'https://www.gutenberg.org/ebooks/43775', 'en', 4523), +(27515, 'Modern Americans\r\nA Biographical School Reader for the Upper Grades', 'Owen, Grace Arlington', '2009-10-19', 17, 'https://www.gutenberg.org/ebooks/30287', 'en', 414), +(27516, 'Shavings: A Novel', 'Lincoln, Joseph Crosby', '2004-08-28', 44, 'https://www.gutenberg.org/ebooks/2452', 'en', 3249), +(27517, 'The Voyage of The First Hessian Army from Portsmouth to New York, 1776', 'Seume, Johann Gottfried', '2008-11-10', 21, 'https://www.gutenberg.org/ebooks/27230', 'en', 9195), +(27518, 'Knights of Art: Stories of the Italian Painters', 'Steedman, Amy', '1996-05-01', 145, 'https://www.gutenberg.org/ebooks/529', 'en', 11233), +(27519, 'Representative Plays by American Dramatists: 1856-1911: Francesca da Rimini', 'Boker, George H. (George Henry)', '2004-07-23', 18, 'https://www.gutenberg.org/ebooks/13005', 'en', 11234), +(27520, 'Why Men Fight: A method of abolishing the international duel', 'Russell, Bertrand', '2017-09-23', 127, 'https://www.gutenberg.org/ebooks/55610', 'en', 3120), +(27521, 'To Each His Star', 'Walton, Bryce', '2010-02-22', 39, 'https://www.gutenberg.org/ebooks/31355', 'en', 179), +(27522, 'Recollections of the Private Life of Napoleon — Complete', 'Wairy, Louis Constant', '2004-09-07', 52, 'https://www.gutenberg.org/ebooks/3580', 'en', 840), +(27523, 'Gargantua and Pantagruel, Illustrated, Book 3', 'Rabelais, François', '2004-08-08', 21, 'https://www.gutenberg.org/ebooks/8168', 'en', 3777), +(27524, 'Liberalism', 'Hobhouse, L. T. (Leonard Trelawny)', '2009-03-08', 50, 'https://www.gutenberg.org/ebooks/28278', 'en', 3346), +(27525, 'Blackwood\'s Edinburgh Magazine, Volume 61, No. 378, April, 1847', 'Various', '2007-12-03', 15, 'https://www.gutenberg.org/ebooks/23690', 'en', 711), +(27526, 'Matkustus Brasiliassa: Kuvaus luonnosta ja kansoista Brasiliasta', 'Vainio, Edv. A. (Edvard August)', '2015-11-01', 6, 'https://www.gutenberg.org/ebooks/50362', 'fi', 11235), +(27527, 'The Book of Delight and Other Papers', 'Abrahams, Israel', '2006-02-01', 29, 'https://www.gutenberg.org/ebooks/9886', 'en', 11236), +(27528, 'Correspondance, 1812-1876 — Tome 5', 'Sand, George', '2004-10-23', 22, 'https://www.gutenberg.org/ebooks/13839', 'fr', 4127), +(27529, 'The Dealings of Captain Sharkey, and Other Tales of Pirates', 'Doyle, Arthur Conan', '2010-12-12', 57, 'https://www.gutenberg.org/ebooks/34627', 'en', 3828), +(27530, 'Knock, Knock, Knock and Other Stories', 'Turgenev, Ivan Sergeevich', '2004-12-01', 48, 'https://www.gutenberg.org/ebooks/7120', 'en', 1747), +(27531, 'A Vision of Venus; Or, A Midsummer-Night\'s Nightmare', 'Pleon, Harry', '2014-07-07', 12, 'https://www.gutenberg.org/ebooks/46207', 'en', 1281), +(27532, 'The Business of Being a Woman', 'Tarbell, Ida M. (Ida Minerva)', '2005-08-21', 36, 'https://www.gutenberg.org/ebooks/16577', 'en', 1619), +(27533, 'Lady Audley\'s Secret', 'Braddon, M. E. (Mary Elizabeth)', '2005-09-01', 281, 'https://www.gutenberg.org/ebooks/8954', 'en', 95), +(27534, 'A Harpa do Crente\r\nTentativas poeticas pelo auctor da Voz do Propheta', 'Herculano, Alexandre', '2007-09-23', 40, 'https://www.gutenberg.org/ebooks/22742', 'pt', 8), +(27535, 'Master and Maid', 'Harker, L. Allen (Lizzie Allen)', '2017-04-07', 19, 'https://www.gutenberg.org/ebooks/54504', 'en', 348), +(27536, 'Harper\'s Young People, May 11, 1880\nAn Illustrated Weekly', 'Various', '2009-05-19', 3, 'https://www.gutenberg.org/ebooks/28882', 'en', 479), +(27537, 'I and My Chimney', 'Melville, Herman', '2001-07-01', 92, 'https://www.gutenberg.org/ebooks/2694', 'en', 1155), +(27538, 'Delay in Transit', 'Wallace, F. L. (Floyd L.)', '2016-01-22', 42, 'https://www.gutenberg.org/ebooks/50998', 'en', 9190), +(27539, 'Mlle. Fouchette: A Novel of French Life', 'Murray, Charles Theodore', '2009-09-20', 22, 'https://www.gutenberg.org/ebooks/30041', 'en', 2118); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(27540, 'The Judgment House', 'Parker, Gilbert', '2003-02-01', 23, 'https://www.gutenberg.org/ebooks/3746', 'en', 705), +(27541, 'Manifesto of the Communist Party', 'Engels, Friedrich', '2010-02-05', 173, 'https://www.gutenberg.org/ebooks/31193', 'en', 254), +(27542, 'Recollections of a Pioneer', 'Gibson, J. W. (J. Watt)', '2015-05-31', 15, 'https://www.gutenberg.org/ebooks/49089', 'en', 83), +(27543, 'Le Tour du Monde; À travers la Perse Orientale\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-10', 11, 'https://www.gutenberg.org/ebooks/29950', 'fr', 1673), +(27544, 'The Motor Boys; or, Chums Through Thick and Thin', 'Young, Clarence', '2013-04-03', 24, 'https://www.gutenberg.org/ebooks/42461', 'en', 9836), +(27545, 'Christ: The Way, the Truth, and the Life', 'Brown, John', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/12311', 'en', 7222), +(27546, 'Le jugement dernier des rois', 'Maréchal, Sylvain', '2008-07-25', 7, 'https://www.gutenberg.org/ebooks/26124', 'fr', 5508), +(27547, 'The Message', 'Tracy, Louis', '2014-10-14', 27, 'https://www.gutenberg.org/ebooks/47113', 'en', 323), +(27548, 'The Battle of the Strong: A Romance of Two Kingdoms — Volume 5', 'Parker, Gilbert', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6234', 'en', 11237), +(27549, 'Mythology among the Hebrews and Its Historical Development', 'Goldziher, Ignác', '2015-05-15', 33, 'https://www.gutenberg.org/ebooks/48967', 'en', 11238), +(27550, 'More Dollies', 'Hunter, Richard', '2007-11-12', 13, 'https://www.gutenberg.org/ebooks/23456', 'en', 11239), +(27551, 'McClure\'s Magazine, Vol. 31, No. 1, May 1908', 'Various', '2006-02-02', 22, 'https://www.gutenberg.org/ebooks/17663', 'en', 380), +(27552, 'Aaron Rodd, Diviner', 'Oppenheim, E. Phillips (Edward Phillips)', '2016-01-29', 55, 'https://www.gutenberg.org/ebooks/51076', 'en', 3511), +(27553, 'Four Years in Rebel Capitals\nAn Inside View of Life in the Southern Confederacy from Birth to Death', 'De Leon, T. C. (Thomas Cooper)', '2007-09-12', 30, 'https://www.gutenberg.org/ebooks/22584', 'en', 83), +(27554, 'The Haunted Room: A Tale', 'A. L. O. E.', '2011-03-09', 34, 'https://www.gutenberg.org/ebooks/35533', 'en', 61), +(27555, 'Spectra: A Book of Poetic Experiments', 'Bynner, Witter', '2008-10-14', 10, 'https://www.gutenberg.org/ebooks/26918', 'en', 178), +(27556, 'Guirlanden um Die Urnen der Zukunft\r\nEine interessante, originelle Familiengeschichte aus dem drei und zwanzigsten Jahrhunderte', 'Ruh, A. K.', '2014-05-14', 10, 'https://www.gutenberg.org/ebooks/45644', 'de', 61), +(27557, 'La Mort Amoureuse: Poésie', 'Bertrand, Huguette', '2003-10-01', 12, 'https://www.gutenberg.org/ebooks/4563', 'fr', 8), +(27558, 'Bunyip Land: A Story of Adventure in New Guinea', 'Fenn, George Manville', '2007-05-04', 25, 'https://www.gutenberg.org/ebooks/21301', 'en', 1655), +(27559, 'Supplement to Animal Sanctuaries in Labrador\r\nSupplement to an Address Presented by Lt.-Colonel William Wood, F.R.S.C. Before the Second Annual Meeting of the Commission of Conservation in January, 1911', 'Wood, William', '2005-02-21', 10, 'https://www.gutenberg.org/ebooks/15134', 'en', 2732), +(27560, 'Kaksi husaaria', 'Tolstoy, Leo, graf', '2016-12-12', 8, 'https://www.gutenberg.org/ebooks/53721', 'fi', 147), +(27561, 'Yankee Girls in Zulu Land', 'Sheldon, Louise Vescelius', '2011-08-29', 4, 'https://www.gutenberg.org/ebooks/37264', 'en', 6548), +(27562, 'The Prodigal Village: A Christmas Tale', 'Bacheller, Irving', '2014-01-30', 29, 'https://www.gutenberg.org/ebooks/44796', 'en', 61), +(27563, 'The Autobiography of a Journalist, Volume II', 'Stillman, William James', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11594', 'en', 11240), +(27564, 'Vihdoinkin kotona', 'Malot, Hector', '2017-12-25', 15, 'https://www.gutenberg.org/ebooks/56253', 'fi', 10623), +(27565, 'Johdanto Suomen kirjallishistoriaan', 'Polén, Rietrik', '2005-05-26', 5, 'https://www.gutenberg.org/ebooks/15908', 'fi', 11241), +(27566, 'Cancer World', 'Warner, Harry', '2010-06-06', 33, 'https://www.gutenberg.org/ebooks/32716', 'en', 26), +(27567, 'La Divina Commedia di Dante: Paradiso', 'Dante Alighieri', '1997-08-01', 44, 'https://www.gutenberg.org/ebooks/1011', 'it', 1906), +(27568, 'The Agrarian Problem in the Sixteenth Century', 'Tawney, R. H. (Richard Henry)', '2012-07-26', 25, 'https://www.gutenberg.org/ebooks/40336', 'en', 11242), +(27569, 'Diary Kept by Rifleman B. C. Stubbs of the Second Draft Sent to the Queen Victoria Rifles in France', 'Stubbs, Bernard C.', '2018-06-23', 7, 'https://www.gutenberg.org/ebooks/57381', 'en', 2223), +(27570, 'The Green Flag, and Other Stories of War and Sport', 'Doyle, Arthur Conan', '2003-12-01', 43, 'https://www.gutenberg.org/ebooks/10446', 'en', 11243), +(27571, 'A Phenomenal Fauna', 'Wells, Carolyn', '2008-02-23', 11, 'https://www.gutenberg.org/ebooks/24673', 'en', 5509), +(27572, 'True to his Colours\nThe Life that Wears Best', 'Wilson, Theodore P.', '2007-04-18', 9, 'https://www.gutenberg.org/ebooks/21133', 'en', 4927), +(27573, 'The Mirrors of Downing Street\nSome Political Reflections by a Gentleman with a Duster', 'Begbie, Harold', '2005-03-09', 22, 'https://www.gutenberg.org/ebooks/15306', 'en', 11244), +(27574, 'Hüben und Drüben; Zweiter Band (2/3)\nNeue gesammelte Erzählungen', 'Gerstäcker, Friedrich', '2019-03-07', 8, 'https://www.gutenberg.org/ebooks/59029', 'de', 138), +(27575, 'Bowery Life', 'Connors, Chuck', '2014-04-24', 6, 'https://www.gutenberg.org/ebooks/45476', 'en', 11245), +(27576, 'Great Englishwomen: An Historical Reading Book for Schools', 'Synge, M. B. (Margaret Bertha)', '2011-05-22', 8, 'https://www.gutenberg.org/ebooks/36184', 'en', 11246), +(27577, 'String Quartet No. 2 in D major, K. 155', 'Mozart, Wolfgang Amadeus', '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/4751', 'en', 909), +(27578, 'Baseball Joe of the Silver Stars; or, The Rivals of Riverside', 'Chadwick, Lester', '2011-08-12', 12, 'https://www.gutenberg.org/ebooks/37056', 'en', 3669), +(27579, 'The Critique of Practical Reason', 'Kant, Immanuel', '2004-05-01', 514, 'https://www.gutenberg.org/ebooks/5683', 'en', 902), +(27580, 'The Genius of Scotland; or, Sketches of Scottish Scenery, Literature and Religion', 'Turnbull, Robert', '2012-02-10', 61, 'https://www.gutenberg.org/ebooks/38822', 'en', 2714), +(27581, 'Hands Around [Reigen]: A Cycle of Ten Dialogues', 'Schnitzler, Arthur', '2016-11-12', 27, 'https://www.gutenberg.org/ebooks/53513', 'en', 11247), +(27582, 'Wigwam and War-path; Or, the Royal Chief in Chains\r\nSecond and Revised Edition', 'Meacham, A. B. (Alfred Benjamin)', '2012-10-05', 16, 'https://www.gutenberg.org/ebooks/40938', 'en', 869), +(27583, 'French and German Socialism in Modern Times', 'Ely, Richard T. (Richard Theodore)', '2019-06-25', 58, 'https://www.gutenberg.org/ebooks/59815', 'en', 11248), +(27584, 'A Fourth Form Friendship: A School Story', 'Brazil, Angela', '2010-05-25', 35, 'https://www.gutenberg.org/ebooks/32524', 'en', 1655), +(27585, 'Contos escolhidos de D. Antonio de Trueba', 'Trueba, Antonio de', '2008-05-25', 9, 'https://www.gutenberg.org/ebooks/25593', 'pt', 20), +(27586, 'In Tamal Land', 'Bingham, Helen', '2017-11-27', 7, 'https://www.gutenberg.org/ebooks/56061', 'en', 11249), +(27587, 'How to Use Your Mind\r\nA Psychology of Study: Being a Manual for the Use of Students and Teachers in the Administration of Supervised Study', 'Kitson, Harry Dexter', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/10674', 'en', 9382), +(27588, 'The Stoker\'s Catechism', 'Connor, W. J.', '2008-01-27', 11, 'https://www.gutenberg.org/ebooks/24441', 'en', 11250), +(27589, 'Ursula', 'Balzac, Honoré de', '2005-10-20', 49, 'https://www.gutenberg.org/ebooks/1223', 'en', 58), +(27590, 'Tobias o\' the Light: A Story of Cape Cod', 'Cooper, James A.', '2012-06-28', 10, 'https://www.gutenberg.org/ebooks/40104', 'en', 6349), +(27591, 'Veripunainen ruusu: Kertomuksia Italiasta', 'Salmela, Marja', '2015-02-28', 16, 'https://www.gutenberg.org/ebooks/48369', 'fi', 665), +(27592, 'Bjørneæt: Nationalhistorisk Roman', 'Etlar, Carit', '2013-09-21', 16, 'https://www.gutenberg.org/ebooks/43781', 'da', 6055), +(27593, 'Tom and Maggie Tulliver', 'Eliot, George', '2009-10-17', 39, 'https://www.gutenberg.org/ebooks/30273', 'en', 11251), +(27594, 'Bible Characters', 'Parker, Joseph', '2017-05-17', 17, 'https://www.gutenberg.org/ebooks/54736', 'en', 6367), +(27595, 'Liberalism and the Social Problem', 'Churchill, Winston', '2006-05-18', 59, 'https://www.gutenberg.org/ebooks/18419', 'en', 7217), +(27596, 'Paradise Lost', 'Milton, John', '1992-02-01', 2558, 'https://www.gutenberg.org/ebooks/26', 'en', 11252), +(27597, 'Bill\'s Paper Chase\nLady of the Barge and Others, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12123', 'en', 1902), +(27598, 'Virginia', 'Glasgow, Ellen Anderson Gholson', '2008-08-14', 35, 'https://www.gutenberg.org/ebooks/26316', 'en', 675), +(27599, 'Recollections of the Private Life of Napoleon — Volume 07', 'Wairy, Louis Constant', '2002-12-01', 19, 'https://www.gutenberg.org/ebooks/3574', 'en', 9898), +(27600, 'Full-Back Foster', 'Barbour, Ralph Henry', '2013-05-06', 18, 'https://www.gutenberg.org/ebooks/42653', 'en', 5031), +(27601, 'Flamsted quarries', 'Waller, Mary E. (Mary Ella)', '2007-11-30', 26, 'https://www.gutenberg.org/ebooks/23664', 'en', 61), +(27602, 'The Great Secret', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-02-01', 24, 'https://www.gutenberg.org/ebooks/9872', 'en', 128), +(27603, 'Sign Language Among North American Indians Compared With That Among Other Peoples And Deaf-Mutes\r\nFirst Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1879-1880, Government Printing Office, Washington, 1881, pages 263-552', 'Mallery, Garrick', '2006-01-03', 75, 'https://www.gutenberg.org/ebooks/17451', 'en', 11253), +(27604, 'Harper\'s Young People, December 6, 1881\nAn Illustrated Weekly', 'Various', '2015-11-06', 4, 'https://www.gutenberg.org/ebooks/50396', 'en', 479), +(27605, 'Les cavaliers de la nuit, 1er partie (t. 1/4)', 'Ponson du Terrail', '2014-11-09', 9, 'https://www.gutenberg.org/ebooks/47321', 'fr', 298), +(27606, 'Under the Storm', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-07-01', 25, 'https://www.gutenberg.org/ebooks/6006', 'en', 4665), +(27607, 'Sekavia solmuja: Huvinäytelmä 3:ssa näytöksessä', 'Lamberg, J.', '2011-03-28', 9, 'https://www.gutenberg.org/ebooks/35701', 'fi', 402), +(27608, 'The Livestock Producer and Armour', NULL, '2016-02-18', 19, 'https://www.gutenberg.org/ebooks/51244', 'en', 11254), +(27609, 'The Yoke\r\nA Romance of the Days when the Lord Redeemed the Children of Israel from the Bondage of Egypt', 'Miller, Elizabeth', '2005-08-22', 17, 'https://www.gutenberg.org/ebooks/16583', 'en', 11255), +(27610, 'Short Stories of the New America\nInterpreting the America of this age to high school boys and girls', NULL, '2011-09-15', 28, 'https://www.gutenberg.org/ebooks/37432', 'en', 579), +(27611, 'Hesperus\nand Other Poems and Lyrics', 'Sangster, Charles', '2008-03-13', 22, 'https://www.gutenberg.org/ebooks/24819', 'en', 28), +(27612, 'Travels on the Amazon', 'Wallace, Alfred Russel', '2016-09-30', 34, 'https://www.gutenberg.org/ebooks/53177', 'en', 11256), +(27613, 'The Lunatic at Large', 'Clouston, J. Storer (Joseph Storer)', '2007-01-30', 10, 'https://www.gutenberg.org/ebooks/20485', 'en', 11257), +(27614, 'Newton Forster; Or, The Merchant Service', 'Marryat, Frederick', '2007-05-21', 26, 'https://www.gutenberg.org/ebooks/21557', 'en', 1398), +(27615, 'Side Lights', 'Runciman, James', '2005-05-03', 31, 'https://www.gutenberg.org/ebooks/15762', 'en', 3120), +(27616, 'Cours familier de Littérature - Volume 02', 'Lamartine, Alphonse de', '2014-02-25', 10, 'https://www.gutenberg.org/ebooks/45012', 'fr', 920), +(27617, 'The Grounds of an Opinion on the Policy of Restricting the Importation of Foreign Corn\r\nIntended as an appendix to \"Observations on the corn laws\"', 'Malthus, T. R. (Thomas Robert)', '2003-08-01', 14, 'https://www.gutenberg.org/ebooks/4335', 'en', 9927), +(27618, 'Wolves of the Sea\r\nBeing a Tale of the Colonies from the Manuscript of One Geoffry Carlyle, Seaman, Narrating Certain Strange Adventures Which Befell Him Aboard the Pirate Craft \"Namur\"', 'Parrish, Randall', '2003-11-01', 55, 'https://www.gutenberg.org/ebooks/10210', 'en', 324), +(27619, 'Abraham Lincoln\'s Second Inaugural Address', 'Lincoln, Abraham', '1978-12-01', 195, 'https://www.gutenberg.org/ebooks/8', 'en', 9921), +(27620, 'The New Girl at St. Chad\'s: A Story of School Life', 'Brazil, Angela', '2007-12-24', 57, 'https://www.gutenberg.org/ebooks/24025', 'en', 62), +(27621, 'No title', NULL, '2018-09-06', 3, 'https://www.gutenberg.org/ebooks/1647', 'en', NULL), +(27622, 'Harper\'s Round Table, August 6, 1895', 'Various', '2010-07-05', 12, 'https://www.gutenberg.org/ebooks/33092', 'en', 668), +(27623, 'The Bee\'s Bayonet (a Little Honey and a Little Sting)\r\nCamouflage in Word Painting', 'Watrous, Edwin Alfred', '2012-08-22', 8, 'https://www.gutenberg.org/ebooks/40560', 'en', 994), +(27624, 'A New Snake of the Genus Geophis From Chihuahua, Mexico', 'Legler, John M.', '2010-04-26', 10, 'https://www.gutenberg.org/ebooks/32140', 'en', 7529), +(27625, 'The Wonderful Stories of Fuz-Buz the Fly and Mother Grabem the Spider', 'Mitchell, S. Weir (Silas Weir)', '2016-08-26', 10, 'https://www.gutenberg.org/ebooks/52899', 'en', 11258), +(27626, 'Hämähäkkilaakso ja muita kertomuksia', 'Wells, H. G. (Herbert George)', '2018-01-20', 18, 'https://www.gutenberg.org/ebooks/56405', 'fi', 26), +(27627, 'Jumalainen näytelmä: Paratiisi', 'Dante Alighieri', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12547', 'fi', 8), +(27628, 'An Enquiry into the Life and Legend of Michael Scot', 'Brown, J. Wood (James Wood)', '2017-08-06', 6, 'https://www.gutenberg.org/ebooks/55280', 'en', 11259), +(27629, 'A Question of Courage', 'Bone, Jesse F. (Jesse Franklin)', '2008-10-04', 32, 'https://www.gutenberg.org/ebooks/26772', 'en', 2564), +(27630, 'The American Newspaper', 'Warner, Charles Dudley', '2004-12-05', 33, 'https://www.gutenberg.org/ebooks/3110', 'en', 11260), +(27631, 'Cristina', 'Serao, Matilde', '2013-03-01', 13, 'https://www.gutenberg.org/ebooks/42237', 'it', 474), +(27632, 'Sous le burnous', 'France, Hector', '2006-02-20', 88, 'https://www.gutenberg.org/ebooks/17809', 'fr', 8154), +(27633, 'A Danish Parsonage', 'Vicary, John Fulford', '2009-12-06', 11, 'https://www.gutenberg.org/ebooks/30617', 'en', 61), +(27634, 'Three Plays', 'Milne, A. A. (Alan Alexander)', '2019-08-24', 48, 'https://www.gutenberg.org/ebooks/60167', 'en', NULL), +(27635, 'Istruzioni popolari per la buona tenuta dei bachi da seta', 'Poggi, Tito', '2017-03-13', 8, 'https://www.gutenberg.org/ebooks/54352', 'it', 11261), +(27636, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 470, January 8, 1831', 'Various', '2004-09-18', 10, 'https://www.gutenberg.org/ebooks/13495', 'en', 133), +(27637, 'Philip Massinger', 'Cruickshank, Alfred Hamilton', '2011-02-23', 1, 'https://www.gutenberg.org/ebooks/35365', 'en', 11262), +(27638, 'Childhood\'s Favorites and Fairy Stories\nThe Young Folks Treasury, Volume 1', NULL, '2006-12-02', 191, 'https://www.gutenberg.org/ebooks/19993', 'en', 859), +(27639, 'The Pastor\'s Fire-side Vol. 4 (of 4)', 'Porter, Jane', '2014-08-26', 6, 'https://www.gutenberg.org/ebooks/46697', 'en', 11263), +(27640, '爾雅', 'Unknown', '2016-04-01', 38, 'https://www.gutenberg.org/ebooks/51620', 'zh', 11264), +(27641, 'The Journal of Negro History, Volume 5, 1920', 'Various', '2007-10-26', 16, 'https://www.gutenberg.org/ebooks/23200', 'en', 7352), +(27642, 'Il Principe della Marsiliana\r\nRomanzo romano', 'Perodi, Emma', '2005-11-09', 9, 'https://www.gutenberg.org/ebooks/17035', 'it', 61), +(27643, 'A Sub and a Submarine: The Story of H.M. Submarine R19 in the Great War', 'Westerman, Percy F. (Percy Francis)', '2014-12-22', 24, 'https://www.gutenberg.org/ebooks/47745', 'en', 11265), +(27644, 'Elizabethan Sonnet Cycles: Phillis - Licia', 'Fletcher, Giles', '2006-07-16', 19, 'https://www.gutenberg.org/ebooks/18841', 'en', 6689), +(27645, 'Father Sergius', 'Tolstoy, Leo, graf', '2006-02-05', 153, 'https://www.gutenberg.org/ebooks/985', 'en', 6360), +(27646, 'An Introduction to the mortuary customs of the North American Indians', 'Yarrow, H. C. (Harry Crécy)', '2004-09-01', 21, 'https://www.gutenberg.org/ebooks/6462', 'en', 11266), +(27647, 'East Lynne', 'Wood, Henry, Mrs.', '2006-04-06', 103, 'https://www.gutenberg.org/ebooks/3322', 'en', 378), +(27648, 'Notes and Queries, Number 226, February 25, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 9, 'https://www.gutenberg.org/ebooks/42005', 'en', 105), +(27649, 'Dave Darrin\'s Fourth Year at Annapolis: Headed for Graduation and the Big Cruise', 'Hancock, H. Irving (Harrie Irving)', '2004-06-29', 29, 'https://www.gutenberg.org/ebooks/12775', 'en', 9913), +(27650, 'Boy Scouts in the Canal Zone; Or, The Plot Against Uncle Sam', 'Ralphson, G. Harvey (George Harvey)', '2008-09-05', 14, 'https://www.gutenberg.org/ebooks/26540', 'en', 323), +(27651, 'Upstarts', 'Stecher, L. J., Jr.', '2008-12-11', 23, 'https://www.gutenberg.org/ebooks/27492', 'en', 26), +(27652, 'The Lushei Kuki Clans', 'Shakespear, John', '2017-02-12', 40, 'https://www.gutenberg.org/ebooks/54160', 'en', 11267), +(27653, 'The Field of Ice\nPart II of the Adventures of Captain Hatteras', 'Verne, Jules', '2006-01-01', 65, 'https://www.gutenberg.org/ebooks/9618', 'en', 324), +(27654, 'El maestrante', 'Palacio Valdés, Armando', '2009-11-08', 39, 'https://www.gutenberg.org/ebooks/30425', 'es', 1696), +(27655, 'Hamewith', 'Murray, Charles', '2016-03-09', 11, 'https://www.gutenberg.org/ebooks/51412', 'en', 11268), +(27656, 'Popular Tales', 'Guizot, Madame (Elisabeth Charlotte Pauline)', '2013-05-29', 12, 'https://www.gutenberg.org/ebooks/42839', 'en', 1817), +(27657, 'The Ethics of Coöperation', 'Tufts, James Hayden', '2009-07-25', 6, 'https://www.gutenberg.org/ebooks/29508', 'en', 8449), +(27658, 'Handel : The Story of a Little Boy who Practiced in an Attic', 'Tapper, Thomas', '2011-02-04', 58, 'https://www.gutenberg.org/ebooks/35157', 'en', 11269), +(27659, 'The Last Tournament', 'Tennyson, Alfred Tennyson, Baron', '2005-03-01', 25, 'https://www.gutenberg.org/ebooks/7782', 'en', 11270), +(27660, 'The Jesuit Relations and Allied Documents, Vol. 4: Acadia and Quebec, 1616-1629', NULL, '2014-12-07', 20, 'https://www.gutenberg.org/ebooks/47577', 'en', 5131), +(27661, 'Shelley and the Marriage Question', 'Todhunter, John', '2010-10-16', 10, 'https://www.gutenberg.org/ebooks/34085', 'en', 3072), +(27662, 'Immensee', 'Storm, Theodor', '2004-10-01', 104, 'https://www.gutenberg.org/ebooks/6650', 'en', 48), +(27663, 'Punch, or the London Charivari, Vol. 146, April 8, 1914', 'Various', '2007-10-14', 5, 'https://www.gutenberg.org/ebooks/23032', 'en', 134), +(27664, 'Chambers\'s Edinburgh Journal, No. 431\nVolume 17, New Series, April 3, 1852', 'Various', '2005-12-03', 7, 'https://www.gutenberg.org/ebooks/17207', 'en', 18), +(27665, 'The Story of the Foss River Ranch: A Tale of the Northwest', 'Cullum, Ridgwell', '2004-12-27', 21, 'https://www.gutenberg.org/ebooks/14482', 'en', 315), +(27666, 'Dan, the Newsboy', 'Alger, Horatio, Jr.', '2016-10-22', 46, 'https://www.gutenberg.org/ebooks/53345', 'en', 11271), +(27667, 'The Fight for Constantinople: A Story of the Gallipoli Peninsula', 'Westerman, Percy F. (Percy Francis)', '2011-10-02', 30, 'https://www.gutenberg.org/ebooks/37600', 'en', 323), +(27668, 'Storia della decadenza e rovina dell\'impero romano, volume 06', 'Gibbon, Edward', '2014-03-26', 24, 'https://www.gutenberg.org/ebooks/45220', 'it', 1292), +(27669, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Complete', 'Ames, Azel', '2003-06-01', 120, 'https://www.gutenberg.org/ebooks/4107', 'en', 7031), +(27670, 'The Metamorphoses of Ovid, Books I-VII', 'Ovid', '2007-06-08', 743, 'https://www.gutenberg.org/ebooks/21765', 'en', 6382), +(27671, 'Medical Women: Two Essays', 'Jex-Blake, Sophia', '2016-06-10', 6, 'https://www.gutenberg.org/ebooks/52297', 'en', 11272), +(27672, 'Ethel Morton at Rose House', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2005-04-05', 16, 'https://www.gutenberg.org/ebooks/15550', 'en', 3621), +(27673, 'Gaudissart II', 'Balzac, Honoré de', '2004-10-18', 18, 'https://www.gutenberg.org/ebooks/1475', 'en', 58), +(27674, 'Julia Ward Howe, 1819-1910', 'Hall, Florence Howe', '2012-01-23', 33, 'https://www.gutenberg.org/ebooks/38648', 'en', 11273), +(27675, 'The Nursery, January 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2012-09-14', 12, 'https://www.gutenberg.org/ebooks/40752', 'en', 4641), +(27676, 'White Queen of the Cannibals: the Story of Mary Slessor of Calabar', 'Bueltmann, A. J.', '2003-11-01', 39, 'https://www.gutenberg.org/ebooks/10022', 'en', 11274), +(27677, 'La Maison du Chat-qui-pelote', 'Balzac, Honoré de', '2008-01-07', 26, 'https://www.gutenberg.org/ebooks/24217', 'fr', 642), +(27678, 'Natural & Artificial Sewage Treatment', 'Roechling, H. Alfred', '2018-02-24', 3, 'https://www.gutenberg.org/ebooks/56637', 'en', 11275), +(27679, 'Civil War and Reconstruction in Alabama', 'Fleming, Walter L. (Walter Lynwood)', '2012-12-21', 45, 'https://www.gutenberg.org/ebooks/41680', 'en', 11276), +(27680, 'Dickens\'s Children: Ten Drawings', NULL, '2010-05-14', 27, 'https://www.gutenberg.org/ebooks/32372', 'en', 9060), +(27681, 'The Works of Aphra Behn, Volume I', 'Behn, Aphra', '2007-05-05', 133, 'https://www.gutenberg.org/ebooks/21339', 'en', 126), +(27682, 'Flower and Jewel; or, Daisy Forrest\'s Daughter', 'Miller, Alex. McVeigh, Mrs.', '2019-04-08', 15, 'https://www.gutenberg.org/ebooks/59223', 'en', 7171), +(27683, 'The Emperor — Volume 07', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5489', 'en', 10090), +(27684, 'The Boys\' Life of Abraham Lincoln', 'Nicolay, Helen', '1999-07-01', 34, 'https://www.gutenberg.org/ebooks/1815', 'en', 1009), +(27685, 'The Nootka Sound Controversy: A dissertation', 'Manning, William R. (William Ray)', '2016-12-12', 15, 'https://www.gutenberg.org/ebooks/53719', 'en', 11277), +(27686, 'A Dutch Boy Fifty Years After', 'Bok, Edward William', '2005-05-28', 14, 'https://www.gutenberg.org/ebooks/15930', 'en', 11278), +(27687, 'The Girl and the Bill\r\nAn American Story of Mystery, Romance and Adventure', 'Merwin, Bannister', '2008-06-15', 7, 'https://www.gutenberg.org/ebooks/25799', 'en', 23), +(27688, 'The Night-Born', 'London, Jack', '1997-09-01', 51, 'https://www.gutenberg.org/ebooks/1029', 'en', 179), +(27689, 'Letters of Lord Acton to Mary, Daughter of the Right Hon. W. E. Gladstone', 'Acton, John Emerich Edward Dalberg Acton, Baron', '2011-12-04', 6, 'https://www.gutenberg.org/ebooks/38214', 'en', 11279), +(27690, 'The Pennycomequicks, Volume 3 (of 3)', 'Baring-Gould, S. (Sabine)', '2015-02-04', 22, 'https://www.gutenberg.org/ebooks/48163', 'en', 5365), +(27691, 'Little Daffydowndilly\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9244', 'en', 13), +(27692, 'Skärkarlsliv', 'Strindberg, August', '2009-09-25', 17, 'https://www.gutenberg.org/ebooks/30079', 'sv', 5198), +(27693, 'The Old Furniture Book, with a Sketch of Past Days and Ways', 'Moore, N. Hudson', '2015-01-08', 23, 'https://www.gutenberg.org/ebooks/47917', 'en', 8534), +(27694, 'The Golden Scorpion', 'Rohmer, Sax', '2006-06-17', 80, 'https://www.gutenberg.org/ebooks/18613', 'en', 128), +(27695, 'Heart of Man', 'Woodberry, George Edward', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12329', 'en', 3003), +(27696, 'The Gentleman: A Romance of the Sea', 'Ollivant, Alfred', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8396', 'en', 61), +(27697, 'Vanhoillinen: Romaani', 'Kivinen, Niilo', '2016-04-26', 17, 'https://www.gutenberg.org/ebooks/51872', 'fi', 41), +(27698, 'Bernard Treves\'s Boots: A Novel of the Secret Service', 'Clarke, Laurence (Laurence Ayscough)', '2013-04-01', 8, 'https://www.gutenberg.org/ebooks/42459', 'en', 95), +(27699, 'Quatro Novelas', 'Osório, Ana de Castro', '2009-11-06', 22, 'https://www.gutenberg.org/ebooks/29968', 'pt', 26), +(27700, 'De moedige vrouw', 'Key, Ellen', '2009-02-15', 13, 'https://www.gutenberg.org/ebooks/28086', 'nl', 1619), +(27701, 'The Boys and I: A Child\'s Story for Children', 'Molesworth, Mrs.', '2010-01-04', 14, 'https://www.gutenberg.org/ebooks/30845', 'en', 1001), +(27702, '鹽鐵論', 'Huan, Kuan, active 1st century B.C.', '2008-10-14', 20, 'https://www.gutenberg.org/ebooks/26920', 'zh', 11280), +(27703, 'Hyacinthe', 'Assollant, Alfred', '2005-10-02', 73, 'https://www.gutenberg.org/ebooks/16789', 'fr', 61), +(27704, 'Miss Muffet\'s Christmas Party', 'Crothers, Samuel McChord', '2010-04-15', 6, 'https://www.gutenberg.org/ebooks/31997', 'en', 585), +(27705, 'Harper\'s Young People, September 28, 1880\nAn Illustrated Weekly', 'Various', '2009-06-18', 1, 'https://www.gutenberg.org/ebooks/29154', 'en', 479), +(27706, 'Bunny Brown and His Sister Sue Keeping Store', 'Hope, Laura Lee', '2006-05-19', 18, 'https://www.gutenberg.org/ebooks/18421', 'en', 9243), +(27707, 'White Slaves; or, the Oppression of the Worthy Poor', 'Banks, Louis Albert', '2004-11-01', 12, 'https://www.gutenberg.org/ebooks/6802', 'en', 11281), +(27708, 'Wonder Tales from Many Lands', 'Pyle, Katharine', '2015-02-24', 80, 'https://www.gutenberg.org/ebooks/48351', 'en', 11282), +(27709, 'Scientific American Supplement, No. 433, April 19, 1884', 'Various', '2005-10-01', 13, 'https://www.gutenberg.org/ebooks/9076', 'en', 210), +(27710, 'Banked Fires', 'Savi, E. W. (Ethel Winifred)', '2010-02-25', 18, 'https://www.gutenberg.org/ebooks/31399', 'en', 2244), +(27711, 'Edgar the Ready: A Tale of the Third Edward\'s Reign', 'Shervill, W. P.', '2015-06-25', 9, 'https://www.gutenberg.org/ebooks/49283', 'en', 10735), +(27712, 'The Intrusions of Peggy', 'Hope, Anthony', '2014-11-09', 27, 'https://www.gutenberg.org/ebooks/47319', 'en', 11283), +(27713, 'Berry and Co.', 'Yates, Dornford', '2006-01-05', 39, 'https://www.gutenberg.org/ebooks/17469', 'en', 95), +(27714, 'Paris as It Was and as It Is\r\nA Sketch Of The French Capital, Illustrative Of The Effects Of The Revolution', 'Blagdon, Francis William', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8998', 'en', 2972), +(27715, 'The Prisoner', 'Brown, Alice', '2009-07-10', 18, 'https://www.gutenberg.org/ebooks/29366', 'en', 61), +(27716, 'Charaktere und Schicksale', 'Heiberg, Hermann', '2004-07-17', 12, 'https://www.gutenberg.org/ebooks/12927', 'de', 11284), +(27717, 'The American Quarterly Review, No. 18, June 1831 (Vol 9)', 'Various', '2011-04-01', 9, 'https://www.gutenberg.org/ebooks/35739', 'en', 11285), +(27718, 'Early London: Prehistoric, Roman, Saxon and Norman', 'Besant, Walter', '2018-03-28', 33, 'https://www.gutenberg.org/ebooks/56865', 'en', 4685), +(27719, 'Young Folks\' History of England', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-12-01', 98, 'https://www.gutenberg.org/ebooks/4769', 'en', 4279), +(27720, 'The Last Crusade', 'Smith, George H. (George Henry)', '2019-03-04', 29, 'https://www.gutenberg.org/ebooks/59011', 'en', 2564), +(27721, 'A Literary and Historical Atlas of Asia', 'Bartholomew, J. G. (John George)', '2012-09-30', 29, 'https://www.gutenberg.org/ebooks/40900', 'en', 11286), +(27722, 'Old Crosses and Lychgates', 'Vallance, Aymer', '2017-11-27', 12, 'https://www.gutenberg.org/ebooks/56059', 'en', 11287), +(27723, 'Papers from Overlook-House', 'Beasley, Frederic W.', '2011-08-05', 18, 'https://www.gutenberg.org/ebooks/36980', 'en', 112), +(27724, 'Modern Icelandic Plays\nEyvind of the Hills; The Hraun Farm', 'Sigurjónsson, Jóhann', '2007-06-25', 19, 'https://www.gutenberg.org/ebooks/21937', 'en', 11288), +(27725, 'Fridtjof Nansen: A Book for the Young', 'Bull, Jacob B. (Jacob Breda)', '2011-11-15', 34, 'https://www.gutenberg.org/ebooks/38026', 'en', 5605), +(27726, 'Chimneysmoke', 'Morley, Christopher', '2011-10-26', 16, 'https://www.gutenberg.org/ebooks/37852', 'en', 994), +(27727, 'The Nursery, June 1873, Vol. XIII.\r\nA Monthly Magazine for Youngest Readers', 'Various', '2008-01-31', 25, 'https://www.gutenberg.org/ebooks/24479', 'en', 4641), +(27728, 'Saunterings', 'Warner, Charles Dudley', '2004-10-10', 13, 'https://www.gutenberg.org/ebooks/3128', 'en', 1896), +(27729, 'How Freckle Frog Made Herself Pretty', 'Herr, Charlotte B. (Charlotte Bronte)', '2006-09-07', 113, 'https://www.gutenberg.org/ebooks/19197', 'en', 8361), +(27730, 'Principles of Political Economy, Vol. 1', 'Roscher, Wilhelm', '2009-01-04', 12, 'https://www.gutenberg.org/ebooks/27698', 'en', 1745), +(27731, 'Rudyard Kipling', 'Palmer, John', '2006-03-24', 32, 'https://www.gutenberg.org/ebooks/18045', 'en', 11289), +(27732, 'The Project Gutenberg RST Manual', 'Perathoner, Marcello', '2001-01-01', 79, 'https://www.gutenberg.org/ebooks/181', 'en', 11290), +(27733, 'Les Misérables, v. 5/5: Jean Valjean', 'Hugo, Victor', '2015-04-18', 25, 'https://www.gutenberg.org/ebooks/48735', 'en', 98), +(27734, 'A Woman Tenderfoot', 'Seton-Thompson, Grace Gallatin', '2005-12-01', 19, 'https://www.gutenberg.org/ebooks/9412', 'en', 3350), +(27735, 'La Débâcle', 'Zola, Émile', '2006-02-22', 48, 'https://www.gutenberg.org/ebooks/17831', 'fr', 1180), +(27736, 'Serge Panine — Volume 01', 'Ohnet, Georges', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3914', 'en', 560), +(27737, 'Eläinten nahoissa: Tarina Ruijasta', 'Aikio, Matti', '2016-04-01', 6, 'https://www.gutenberg.org/ebooks/51618', 'fi', 1929), +(27738, 'The Space Rover', 'Sloat, Edwin K.', '2009-08-15', 46, 'https://www.gutenberg.org/ebooks/29702', 'en', 26), +(27739, 'The Caxtons: A Family Picture — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/7588', 'en', 376), +(27740, 'The Age of the Reformation', 'Smith, Preserved', '2006-07-20', 20, 'https://www.gutenberg.org/ebooks/18879', 'en', 827), +(27741, 'Sexueele Zeden in Woord en Beeld: Liefde en Zinnelijkheid', 'Vloten Elderinck, D. Ph. van', '2007-10-29', 49, 'https://www.gutenberg.org/ebooks/23238', 'nl', 11291), +(27742, 'Un hiver à Majorque', 'Sand, George', '2005-01-13', 76, 'https://www.gutenberg.org/ebooks/14688', 'fr', 5578), +(27743, 'Dante. An essay. To which is added a translation of De Monarchia.', 'Church, R. W. (Richard William)', '2010-10-30', 43, 'https://www.gutenberg.org/ebooks/33896', 'en', 11292), +(27744, 'Diamond Dyke\nThe Lone Farm on the Veldt - Story of South African Adventure', 'Fenn, George Manville', '2008-03-13', 25, 'https://www.gutenberg.org/ebooks/24821', 'en', 1207), +(27745, 'Wild Animals of North America\nIntimate Studies of Big and Little Creatures of the Mammal Kingdom', 'Nelson, Edward William', '2019-05-10', 29, 'https://www.gutenberg.org/ebooks/59475', 'en', 5582), +(27746, 'Rubáiyát of Doc Sifers', 'Riley, James Whitcomb', '2010-06-22', 10, 'https://www.gutenberg.org/ebooks/32944', 'en', 3449), +(27747, 'L\'Illustration, No. 0027, 2 Septembre 1843', 'Various', '2011-12-30', 8, 'https://www.gutenberg.org/ebooks/38442', 'fr', 150), +(27748, 'Max Butziwackel der Ameisenkaiser: Ein Buch für Kinder und große Leute', 'Vamba', '2017-01-16', 14, 'https://www.gutenberg.org/ebooks/53973', 'de', 11293), +(27749, 'Huntley: A Mason Family Country House', 'Wrenn, Tony P.', '2012-08-22', 10, 'https://www.gutenberg.org/ebooks/40558', 'en', 11294), +(27750, 'El Presidente Díaz al Señor Edison', 'Díaz, Porfirio', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10228', 'es', 1406), +(27751, 'The House on the Moor, v. 1/3', 'Oliphant, Mrs. (Margaret)', '2014-05-29', 22, 'https://www.gutenberg.org/ebooks/45816', 'en', 61), +(27752, 'Los Gringos\nOr, An Inside View of Mexico and California, with Wanderings in Peru, Chili, and Polynesia', 'Wise, H. A. (Henry Augustus)', '2010-04-29', 18, 'https://www.gutenberg.org/ebooks/32178', 'en', 1623), +(27753, 'Some Account of Llangollen and Its Vicinity\r\nIncluding a Circuit of About Seven Miles', 'Simpson, W. T. (Wilfrid Tord)', '2012-05-01', 12, 'https://www.gutenberg.org/ebooks/39590', 'en', 9655), +(27754, 'The Book-Bills of Narcissus\nAn Account Rendered by Richard Le Gallienne', 'Le Gallienne, Richard', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/10826', 'en', 61), +(27755, 'Child of the Regiment', 'Anonymous', '2011-10-05', 16, 'https://www.gutenberg.org/ebooks/37638', 'en', 751), +(27756, 'Memoir of a Brother', 'Hughes, Thomas', '2019-01-31', 3, 'https://www.gutenberg.org/ebooks/58795', 'en', 11295), +(27757, 'The Law and the Word', 'Troward, T. (Thomas)', '2005-04-06', 36, 'https://www.gutenberg.org/ebooks/15568', 'en', 43), +(27758, 'New Bodies for Old', 'Renard, Maurice', '2019-06-01', 24, 'https://www.gutenberg.org/ebooks/59647', 'en', 11296), +(27759, 'Storia della decadenza e rovina dell\'impero romano, volume 04', 'Gibbon, Edward', '2014-03-26', 26, 'https://www.gutenberg.org/ebooks/45218', 'it', 7245), +(27760, 'Spies of the Kaiser: Plotting the Downfall of England', 'Le Queux, William', '2010-07-31', 33, 'https://www.gutenberg.org/ebooks/33298', 'en', 11297), +(27761, 'For Jacinta', 'Bindloss, Harold', '2012-01-25', 25, 'https://www.gutenberg.org/ebooks/38670', 'en', 11298), +(27762, 'Hilda Wade, a Woman with Tenacity of Purpose', 'Allen, Grant', '2006-06-06', 20, 'https://www.gutenberg.org/ebooks/4903', 'en', 61), +(27763, 'Pope Pius the Tenth', 'Forbes, F. A. (Frances Alice)', '2011-04-25', 10, 'https://www.gutenberg.org/ebooks/35953', 'en', 11299), +(27764, 'Little Wars (A Game for Boys from twelve years of age to one hundred\nand fifty and for that more intelligent sort of girl who likes boys\'\ngames and books)', 'Wells, H. G. (Herbert George)', '2008-09-01', 9, 'https://www.gutenberg.org/ebooks/26578', 'en', 11300), +(27765, 'Devonshire Characters and Strange Events', 'Baring-Gould, S. (Sabine)', '2015-03-16', 45, 'https://www.gutenberg.org/ebooks/48507', 'en', 11301), +(27766, 'The French Prisoners of Norman Cross: A Tale', 'Brown, Arthur, Rev.', '2007-12-12', 10, 'https://www.gutenberg.org/ebooks/23836', 'en', 11302), +(27767, 'Tales and Novels — Volume 06', 'Edgeworth, Maria', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9620', 'en', 61), +(27768, 'Μένων', 'Plato', '2011-01-08', 21, 'https://www.gutenberg.org/ebooks/34881', 'el', 11303), +(27769, 'Myrkkyvyöhyke', 'Doyle, Arthur Conan', '2017-02-12', 23, 'https://www.gutenberg.org/ebooks/54158', 'fi', 26), +(27770, 'The Training of a Public Speaker', 'Kleiser, Grenville', '2006-04-28', 45, 'https://www.gutenberg.org/ebooks/18277', 'en', 3906), +(27771, 'Achtundvierzig Briefe von Johann Gottlieb Fichte und seinen Verwandten', 'Fichte, Johann Gottlieb', '2009-07-28', 34, 'https://www.gutenberg.org/ebooks/29530', 'de', 11304), +(27772, 'The Young Lovell: A Romance', 'Ford, Ford Madox', '2013-05-24', 12, 'https://www.gutenberg.org/ebooks/42801', 'en', 98), +(27773, 'The Desert Mounted Corps\r\nAn Account of the Cavalry Operations in Palestine and Syria 1917-1918', 'Preston, R. M. P. (Richard Martin Peter)', '2017-06-23', 32, 'https://www.gutenberg.org/ebooks/54964', 'en', 4056), +(27774, 'Annette, the Metis Spy: A Heroine of the N.W. Rebellion', 'Collins, J. E. (Joseph Edmund)', '2004-10-01', 3, 'https://www.gutenberg.org/ebooks/6668', 'en', 98), +(27775, 'Art', 'Bell, Clive', '2005-10-21', 107, 'https://www.gutenberg.org/ebooks/16917', 'en', 2250), +(27776, 'Our Southern Highlanders', 'Kephart, Horace', '2010-03-20', 133, 'https://www.gutenberg.org/ebooks/31709', 'en', 11305), +(27777, 'Daily Strength for Daily Needs', 'Tileston, Mary Wilder', '2005-07-01', 73, 'https://www.gutenberg.org/ebooks/8534', 'en', 3046), +(27778, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 6 (of 8)\nIdeas of Good and Evil', 'Yeats, W. B. (William Butler)', '2015-08-05', 55, 'https://www.gutenberg.org/ebooks/49613', 'en', 1728), +(27779, 'Märchen für Kinder', 'Andersen, H. C. (Hans Christian)', '2006-09-03', 289, 'https://www.gutenberg.org/ebooks/19163', 'de', 7830), +(27780, 'The Waters of Edera', 'Ouida', '2004-09-15', 25, 'https://www.gutenberg.org/ebooks/13459', 'en', 11306), +(27781, 'The Phantom of the Opera', 'Leroux, Gaston', '1994-10-01', 968, 'https://www.gutenberg.org/ebooks/175', 'en', 7434), +(27782, 'The Life of Jefferson Davis', 'Alfriend, Frank H. (Frank Heath)', '2013-07-27', 11, 'https://www.gutenberg.org/ebooks/43329', 'en', 6789), +(27783, 'The Doctor\'s Red Lamp\nA Book of Short Stories Concerning the Doctor\'s Daily Life', NULL, '2014-12-27', 97, 'https://www.gutenberg.org/ebooks/47789', 'en', 179), +(27784, 'Tom Swift and His Submarine Boat; Or, Under the Ocean for Sunken Treasure', 'Appleton, Victor', '1997-06-01', 111, 'https://www.gutenberg.org/ebooks/949', 'en', 5237), +(27785, 'Mémoires d\'une contemporaine. Tome 3\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-04-27', 7, 'https://www.gutenberg.org/ebooks/28624', 'fr', 1941), +(27786, 'Myth, Ritual and Religion, Vol. 1 (of 2)', 'Lang, Andrew', '2001-09-01', 152, 'https://www.gutenberg.org/ebooks/2832', 'en', 11307), +(27787, 'An Astronomer\'s Wife: The Biography of Angeline Hall', 'Hall, Angelo', '2018-12-27', 14, 'https://www.gutenberg.org/ebooks/58553', 'en', 11308), +(27788, 'The Mechanism of Life', 'Leduc, Stéphane', '2010-10-15', 35, 'https://www.gutenberg.org/ebooks/33862', 'en', 4564), +(27789, 'The Plum Tree', 'Phillips, David Graham', '2007-01-25', 32, 'https://www.gutenberg.org/ebooks/20449', 'en', 2815), +(27790, 'Indian Child Life', 'Eastman, Charles Alexander', '2008-06-27', 23, 'https://www.gutenberg.org/ebooks/25907', 'en', 1824), +(27791, 'Lives of Boulton and Watt. Principally from the Original Soho Mss.\r\nComprising also a history of the invention and introduction of the steam engine', 'Smiles, Samuel', '2016-05-15', 10, 'https://www.gutenberg.org/ebooks/52069', 'en', 7873), +(27792, 'Kertomuksia ja kuvauksia', 'Tavaststjerna, Karl August', '2019-05-11', 5, 'https://www.gutenberg.org/ebooks/59481', 'fi', 4836), +(27793, 'Marjorie Dean Macy\'s Hamilton Colony', 'Chase, Josephine', '2017-01-17', 27, 'https://www.gutenberg.org/ebooks/53987', 'en', 5843), +(27794, 'Palissy the Huguenot Potter: A True Tale', 'Brightwell, C. L. (Cecilia Lucy)', '2014-02-16', 11, 'https://www.gutenberg.org/ebooks/44930', 'en', 11309), +(27795, 'The Broncho Rider Boys Along the Border\r\nOr, The Hidden Treasure of the Zuni Medicine Man', 'Fowler, Frank', '2012-04-29', 12, 'https://www.gutenberg.org/ebooks/39564', 'en', 11310), +(27796, 'The Star-Sent Knaves', 'Laumer, Keith', '2016-08-20', 93, 'https://www.gutenberg.org/ebooks/52855', 'en', 26), +(27797, 'State of the Union Addresses', 'Polk, James K. (James Knox)', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/5019', 'en', 1926), +(27798, 'An Uninvited Member: A Play for Girls in Two Scenes', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2016-10-28', 11, 'https://www.gutenberg.org/ebooks/53389', 'en', 11311), +(27799, 'The Precious Name, Proofs of the Godhead, and a Hymn', 'Church, J. (John)', '2019-01-23', 7, 'https://www.gutenberg.org/ebooks/58761', 'en', 3941), +(27800, 'Elizabeth Visits America', 'Glyn, Elinor', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/11900', 'en', 258), +(27801, 'The Courage of the Commonplace', 'Andrews, Mary Raymond Shipman', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/5825', 'en', 11312), +(27802, 'Bumper the White Rabbit and His Friends', 'Walsh, George Ethelbert', '2018-08-19', 21, 'https://www.gutenberg.org/ebooks/57729', 'en', 1045), +(27803, 'Parson Kelly', 'Lang, Andrew', '2012-01-27', 23, 'https://www.gutenberg.org/ebooks/38684', 'en', 98), +(27804, 'Valkoisia kanervakukkia', 'Roos, Mathilda', '2012-05-22', 9, 'https://www.gutenberg.org/ebooks/39756', 'fi', 2168), +(27805, 'Child\'s Story of the Bible', 'Lathbury, Mary A. (Mary Artemisia)', '2008-05-03', 22, 'https://www.gutenberg.org/ebooks/25309', 'en', 4241), +(27806, 'Curlie Carson Listens In', 'Snell, Roy J. (Roy Judson)', '2006-09-22', 21, 'https://www.gutenberg.org/ebooks/19351', 'en', 3343), +(27807, 'The Doré Bible Gallery, Volume 6', NULL, '2004-07-28', 13, 'https://www.gutenberg.org/ebooks/8706', 'en', 9674), +(27808, 'The Big Fight (Gallipoli to the Somme)', 'Fallon, David', '2015-07-12', 22, 'https://www.gutenberg.org/ebooks/49421', 'en', 2223), +(27809, 'Ancient Law: Its Connection to the History of Early Society', 'Maine, Henry Sumner, Sir', '2007-10-07', 44, 'https://www.gutenberg.org/ebooks/22910', 'en', 11313), +(27810, 'Life of Father Hecker', 'Elliott, Walter', '2006-04-29', 19, 'https://www.gutenberg.org/ebooks/18283', 'en', 11314), +(27811, 'Spain', 'Webster, Wentworth', '2011-01-07', 15, 'https://www.gutenberg.org/ebooks/34875', 'en', 6250), +(27812, 'The Saga of Grettir the Strong: Grettir\'s Saga', 'Unknown', '2008-07-05', 126, 'https://www.gutenberg.org/ebooks/347', 'en', 4764), +(27813, 'The Pennsylvania Journal of Prison Discipline and Philanthropy, April 1853', 'Pennsylvania Prison Society', '2017-10-28', 2, 'https://www.gutenberg.org/ebooks/55842', 'en', 4611), +(27814, 'Voyage en Égypte et en Syrie - Tome 2', 'Volney, C.-F. (Constantin-François)', '2014-08-01', 11, 'https://www.gutenberg.org/ebooks/46469', 'fr', 11315), +(27815, 'Impresiones, Poesías', 'Campo Arana, José', '2005-07-17', 12, 'https://www.gutenberg.org/ebooks/16319', 'es', 8), +(27816, 'Days of Heaven Upon Earth', 'Simpson, A. B. (Albert B.)', '2009-03-27', 126, 'https://www.gutenberg.org/ebooks/28416', 'en', 7631), +(27817, 'A Sermon Delivered before His Excellency Levi Lincoln, Governor, His Honor Thomas L. Winthrop, Lieutenant Governor, the Hon. Council, the Senate, and House of Representatives of the Commonwealth of Massachusetts, on the day of General Election, May 28, 1828', 'Walker, James', '2013-10-10', 4, 'https://www.gutenberg.org/ebooks/43927', 'en', 4730), +(27818, 'The Settlement of Illinois, 1778-1830', 'Boggess, Arthur Clinton', '2010-10-09', 15, 'https://www.gutenberg.org/ebooks/34049', 'en', 11316), +(27819, 'The Brown Brethren', 'MacGill, Patrick', '2017-06-27', 17, 'https://www.gutenberg.org/ebooks/54990', 'en', 579), +(27820, 'The adventures of Kimble Bent: A story of wild life in the New Zealand bush', 'Cowan, James', '2014-05-18', 18, 'https://www.gutenberg.org/ebooks/45688', 'en', 3572), +(27821, 'Miss Numè of Japan: A Japanese-American Romance', 'Eaton, Winnifred', '2018-11-18', 16, 'https://www.gutenberg.org/ebooks/58305', 'en', 109), +(27822, 'Guy Deverell, v. 1 of 2', 'Le Fanu, Joseph Sheridan', '2012-10-29', 31, 'https://www.gutenberg.org/ebooks/41228', 'en', 95), +(27823, 'Punch, or the London Charivari, Vol. 105 October 7, 1893', 'Various', '2012-04-01', 1, 'https://www.gutenberg.org/ebooks/39332', 'en', 134), +(27824, 'Poems', 'Goodrich, Samuel G. (Samuel Griswold)', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11558', 'en', 178), +(27825, 'La Mare-Balena', 'Català, Víctor', '2005-01-27', 27, 'https://www.gutenberg.org/ebooks/14816', 'ca', 179), +(27826, 'Bride Roses', 'Howells, William Dean', '2010-09-02', 13, 'https://www.gutenberg.org/ebooks/33608', 'en', 11317), +(27827, 'Hester: A Story of Contemporary Life, Volume 1 (of 3)', 'Oliphant, Mrs. (Margaret)', '2015-02-08', 28, 'https://www.gutenberg.org/ebooks/48197', 'en', 95), +(27828, 'The Complete Poetic and Dramatic Works of Robert Browning\nCambridge Edition', 'Browning, Robert', '2016-01-17', 161, 'https://www.gutenberg.org/ebooks/50954', 'en', 1281), +(27829, 'The Papers and Writings of Abraham Lincoln — Volume 6: 1862-1863', 'Lincoln, Abraham', '2004-09-30', 34, 'https://www.gutenberg.org/ebooks/2658', 'en', 155), +(27830, 'Henry James, Jr.', 'Howells, William Dean', '1996-11-01', 18, 'https://www.gutenberg.org/ebooks/723', 'en', 11318), +(27831, 'Phantom Wires: A Novel', 'Stringer, Arthur', '2006-11-07', 17, 'https://www.gutenberg.org/ebooks/19735', 'en', 705), +(27832, 'Empörung + Andacht, Ewigkeit', 'Herrmann-Neisse, Max', '2014-09-10', 7, 'https://www.gutenberg.org/ebooks/46831', 'de', 8), +(27833, 'Down at Caxton\'s', 'McDermott, William A.', '2016-04-29', 13, 'https://www.gutenberg.org/ebooks/51886', 'en', 1172), +(27834, 'The Bible, Douay-Rheims, Book 62: 2 Timothy\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8362', 'en', 5687), +(27835, 'The Expositor\'s Bible: The Book of Deuteronomy', 'Harper, Andrew', '2015-05-25', 16, 'https://www.gutenberg.org/ebooks/49045', 'en', 11319), +(27836, 'A History of Art in Chaldæa & Assyria, v. 1', 'Chipiez, Charles', '2009-02-14', 30, 'https://www.gutenberg.org/ebooks/28072', 'en', 11320), +(27837, 'Vekkulit ja kekkulit: Leikki-näytelmä kahdessa näytöksessä', 'Warelius, Antero', '2015-10-09', 21, 'https://www.gutenberg.org/ebooks/50168', 'fi', 433), +(27838, 'Le dernier chevalier', 'Féval, Paul', '2009-01-14', 13, 'https://www.gutenberg.org/ebooks/27806', 'fr', 298), +(27839, 'The Flying Dutchman (Der Fliegende Hollaender): Romantic Opera in Three Acts', 'Wagner, Richard', '2010-04-12', 105, 'https://www.gutenberg.org/ebooks/31963', 'de', 1966), +(27840, 'Choix de Poesies\nA Collection of French Poetry for Memorizing', NULL, '2007-09-09', 14, 'https://www.gutenberg.org/ebooks/22548', 'fr', 701), +(27841, 'Uit den Indischen Archipel\nDe Aarde en haar volken, Jaargang 1875', 'Wallace, Alfred Russel', '2015-09-04', 12, 'https://www.gutenberg.org/ebooks/49879', 'nl', 11321), +(27842, 'Threny', 'Kochanowski, Jan', '2008-11-09', 13, 'https://www.gutenberg.org/ebooks/27208', 'pl', 8261), +(27843, 'The Purcell Papers — Volume 3', 'Le Fanu, Joseph Sheridan', '2008-05-24', 58, 'https://www.gutenberg.org/ebooks/511', 'en', 669), +(27844, 'Muistatko—? Kukkia Keväiseltä Niityltä', 'Aho, Juhani', '2005-10-01', 32, 'https://www.gutenberg.org/ebooks/9082', 'fi', 61), +(27845, 'A Street of Paris and Its Inhabitant', 'Balzac, Honoré de', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/8150', 'en', 560), +(27846, '\'Twixt Earth and Stars: Poems', 'Hall, Radclyffe', '2015-06-25', 17, 'https://www.gutenberg.org/ebooks/49277', 'en', 1594), +(27847, 'American Historical and Literary Curiosities: Second Series, Complete', 'Smith, J. Jay (John Jay)', '2004-07-16', 18, 'https://www.gutenberg.org/ebooks/7924', 'en', 1587), +(27848, 'Lanier of the Cavalry; or, A Week\'s Arrest', 'King, Charles', '2006-10-09', 19, 'https://www.gutenberg.org/ebooks/19507', 'en', 4806), +(27849, 'Dealings with the Inquisition; Or, Papal Rome, Her Priests, and Her Jesuits', 'Achilli, Giacinto', '2017-09-26', 38, 'https://www.gutenberg.org/ebooks/55628', 'en', 8384), +(27850, 'Harvest', 'Ward, Humphry, Mrs.', '2004-10-19', 7, 'https://www.gutenberg.org/ebooks/13801', 'en', 61), +(27851, 'Pan Tadeusz\r\nOr, the Last Foray in Lithuania; a Story of Life Among Polish Gentlefolk in the Years 1811 and 1812', 'Mickiewicz, Adam', '2009-03-02', 105, 'https://www.gutenberg.org/ebooks/28240', 'en', 11322), +(27852, 'Man of Distinction', 'Shaara, Michael', '2016-02-23', 38, 'https://www.gutenberg.org/ebooks/51288', 'en', 26), +(27853, 'Etienne Gerards Bedrifter', 'Doyle, Arthur Conan', '2009-07-12', 17, 'https://www.gutenberg.org/ebooks/29392', 'da', 4751), +(27854, 'What Maisie Knew', 'James, Henry', '2004-12-01', 146, 'https://www.gutenberg.org/ebooks/7118', 'en', 6871), +(27855, 'Helon\'s Pilgrimage to Jerusalem, Volume 2 (of 2)\r\nA picture of Judaism, in the century which preceded the advent of our Savior.', 'Strauss, Friedrich', '2018-04-01', 2, 'https://www.gutenberg.org/ebooks/56891', 'en', 6691), +(27856, 'Hoosier Mosaics', 'Thompson, Maurice', '2011-05-18', 17, 'https://www.gutenberg.org/ebooks/36148', 'en', 11323), +(27857, 'Wild Heather', 'Meade, L. T.', '2013-01-12', 20, 'https://www.gutenberg.org/ebooks/41826', 'en', 273), +(27858, 'Lawn-tennis', 'Dwight, James', '2018-10-19', 7, 'https://www.gutenberg.org/ebooks/58137', 'en', 4022), +(27859, 'The Story of Alchemy and the Beginnings of Chemistry', 'Muir, M. M. Pattison (Matthew Moncrieff Pattison)', '2004-11-30', 178, 'https://www.gutenberg.org/ebooks/14218', 'en', 10696), +(27860, 'A Treatyse of Fysshynge wyth an Angle\r\nBeing a facsimile reproduction of the first book on the subject of fishing printed in England by Wynkyn de Worde at Westminster in 1496', 'Berners, Juliana', '2018-09-21', 26, 'https://www.gutenberg.org/ebooks/57943', 'en', 1945), +(27861, 'A Comprehensive History of Norwich', 'Bayne, A. D.', '2014-01-02', 20, 'https://www.gutenberg.org/ebooks/44568', 'en', 11324), +(27862, 'Old Trails on the Niagara Frontier', 'Severance, Frank H. (Frank Hayward)', '2011-08-05', 15, 'https://www.gutenberg.org/ebooks/36974', 'en', 11325), +(27863, 'Naples, Past and Present', 'Norway, Arthur H. (Arthur Hamilton)', '2012-03-11', 14, 'https://www.gutenberg.org/ebooks/39100', 'en', 7008), +(27864, 'Two Decades\r\nA History of the First Twenty Years\' Work of the Woman\'s Christian Temperance Union of the State of New York', 'Graham, Frances W.', '2007-03-13', 8, 'https://www.gutenberg.org/ebooks/20811', 'en', 11326), +(27865, 'Blindskär', 'Canth, Minna', '2008-09-06', 13, 'https://www.gutenberg.org/ebooks/26547', 'sv', 61), +(27866, 'Cowper', 'Smith, Goldwin', '2004-06-29', 16, 'https://www.gutenberg.org/ebooks/12772', 'en', 11327), +(27867, 'Notes and Queries, Number 222, January 28, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 10, 'https://www.gutenberg.org/ebooks/42002', 'en', 105), +(27868, 'Locrine: A Tragedy', 'Swinburne, Algernon Charles', '2002-07-01', 15, 'https://www.gutenberg.org/ebooks/3325', 'en', 1298), +(27869, 'The Internet and Languages [around the year 2000]', 'Lebert, Marie', '2009-11-08', 14, 'https://www.gutenberg.org/ebooks/30422', 'en', 2069), +(27870, 'Comrades: A Drama in Three Acts', 'Baker, George M. (George Melville)', '2015-03-20', 11, 'https://www.gutenberg.org/ebooks/48538', 'en', 868), +(27871, 'An Idyl Of The East Side\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 6, 'https://www.gutenberg.org/ebooks/23809', 'en', 770), +(27872, 'Commentario de le piu notabili, & mostruose cose d\'Italia, & di altri luoghi di lingua aramea in Italiana tradotto, nelquale si impara, & prendesi estremo piacere', 'Landi, Ortensio', '2017-02-14', 15, 'https://www.gutenberg.org/ebooks/54167', 'it', 11328); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(27873, 'Lucy Raymond; Or, The Children\'s Watchword', 'Machar, Agnes Maule', '2006-04-24', 9, 'https://www.gutenberg.org/ebooks/18248', 'en', 11329), +(27874, 'The Girls of St. Olave\'s', 'Mackintosh, Mabel', '2008-12-11', 18, 'https://www.gutenberg.org/ebooks/27495', 'en', 470), +(27875, 'Tjuvbandet i Dägerö skärgård', 'Melin, Karl Alfred', '2017-11-04', 23, 'https://www.gutenberg.org/ebooks/55889', 'sv', 11330), +(27876, 'Chignole (la guerre aérienne)', 'Nadaud, Marcel', '2011-02-02', 13, 'https://www.gutenberg.org/ebooks/35150', 'fr', 335), +(27877, 'Leonardo Da Vinci', 'Brockwell, Maurice W.', '2005-03-01', 141, 'https://www.gutenberg.org/ebooks/7785', 'en', 8221), +(27878, 'Poems', 'Coleman, Jamie Harris', '2016-03-10', 13, 'https://www.gutenberg.org/ebooks/51415', 'en', 994), +(27879, 'Angel Agnes\r\nThe Heroine of the Yellow Fever Plague in Shreveport', 'Alexander, Charles Wesley', '2005-12-02', 28, 'https://www.gutenberg.org/ebooks/17200', 'en', 11331), +(27880, 'Quilito', 'Ocantos, Carlos María', '2007-10-14', 41, 'https://www.gutenberg.org/ebooks/23035', 'es', 61), +(27881, 'Encyclopaedia Britannica, 11th Edition, \"Aram, Eugene\" to \"Arcueil\"\r\nVolume 2, Slice 4', 'Various', '2010-10-16', 42, 'https://www.gutenberg.org/ebooks/34082', 'en', 1081), +(27882, 'The Theology of Holiness', 'Clark, Dougan', '2004-10-01', 22, 'https://www.gutenberg.org/ebooks/6657', 'en', 7222), +(27883, 'Birds and Nature Vol. 11 No. 4 [April 1902]\nIllustrated by Color Photography', 'Various', '2014-12-07', 27, 'https://www.gutenberg.org/ebooks/47570', 'en', 490), +(27884, 'De kleine Johannes', 'Eeden, Frederik van', '2004-01-01', 59, 'https://www.gutenberg.org/ebooks/10819', 'nl', 319), +(27885, 'Garden Design and Architects\' Gardens\r\nTwo reviews, illustrated, to show, by actual examples from British gardens, that clipping and aligning trees to make them \'harmonise\' with architecture is barbarous, needless, and inartistic', 'Robinson, W. (William)', '2011-10-03', 161, 'https://www.gutenberg.org/ebooks/37607', 'en', 11332), +(27886, 'Notes on the Apocalypse', 'Steele, David', '2004-12-27', 26, 'https://www.gutenberg.org/ebooks/14485', 'en', 10558), +(27887, 'Naisia', 'Chekhov, Anton Pavlovich', '2016-10-22', 15, 'https://www.gutenberg.org/ebooks/53342', 'fi', 147), +(27888, 'Studies in the South and West, with Comments on Canada', 'Warner, Charles Dudley', '2016-06-09', 8, 'https://www.gutenberg.org/ebooks/52290', 'en', 2655), +(27889, 'Carnet d\'un inconnu\n(Stépantchikovo)', 'Dostoyevsky, Fyodor', '2005-04-05', 31, 'https://www.gutenberg.org/ebooks/15557', 'fr', 2004), +(27890, 'Woman\'s work in municipalities', 'Beard, Mary Ritter', '2019-06-05', 16, 'https://www.gutenberg.org/ebooks/59678', 'en', 11333), +(27891, 'On the Firing Line in Education', 'Ladd, Adoniram Judson', '2007-06-07', 14, 'https://www.gutenberg.org/ebooks/21762', 'en', 8827), +(27892, 'Όραμα και Μεταμόρφωση : Μια εισαγωγή στο Ευγενές Οκταπλό Μονοπάτι του Βούδδα', 'Sangharakshita, Bhikshu', '2003-05-01', 18, 'https://www.gutenberg.org/ebooks/4100', 'el', 11334), +(27893, 'Storia della decadenza e rovina dell\'impero romano, volume 13', 'Gibbon, Edward', '2014-03-26', 29, 'https://www.gutenberg.org/ebooks/45227', 'it', 1292), +(27894, 'Deerbrook', 'Martineau, Harriet', '2008-01-07', 36, 'https://www.gutenberg.org/ebooks/24210', 'en', 11335), +(27895, 'Gaslight Sonatas', 'Hurst, Fannie', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/10025', 'en', 1468), +(27896, 'The Nursery, April 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2012-09-14', 9, 'https://www.gutenberg.org/ebooks/40755', 'en', 4641), +(27897, 'In a German Pension', 'Mansfield, Katherine', '1998-09-01', 71, 'https://www.gutenberg.org/ebooks/1472', 'en', 4038), +(27898, 'Shan Folk Lore Stories from the Hill and Water Country', 'Griggs, William Charles', '2010-05-15', 54, 'https://www.gutenberg.org/ebooks/32375', 'en', 11336), +(27899, 'How France Built Her Cathedrals: A Study in the Twelfth and Thirteenth Centuries', 'O\'Reilly, Elizabeth Boyle', '2012-12-22', 9, 'https://www.gutenberg.org/ebooks/41687', 'en', 10078), +(27900, 'Rome', 'Fowler, W. Warde (William Warde)', '2018-02-23', 12, 'https://www.gutenberg.org/ebooks/56630', 'en', 6793), +(27901, 'A José Estevão', 'Pato, Raimundo António de Bulhão', '2007-01-29', 22, 'https://www.gutenberg.org/ebooks/20482', 'pt', 11337), +(27902, 'Betrayed Armenia', 'Apcar, Diana Agabeg', '2016-09-30', 17, 'https://www.gutenberg.org/ebooks/53170', 'en', 11338), +(27903, 'Another Brownie Book', 'Cox, Palmer', '2019-01-02', 6, 'https://www.gutenberg.org/ebooks/58598', 'en', 859), +(27904, 'Verfall und Triumph, Erster Teil: Gedichte', 'Becher, Johannes Robert', '2011-09-15', 14, 'https://www.gutenberg.org/ebooks/37435', 'de', 5045), +(27905, 'The Ghetto, and Other Poems', 'Ridge, Lola', '2003-08-01', 18, 'https://www.gutenberg.org/ebooks/4332', 'en', 11339), +(27906, 'Histoire du Consulat et de l\'Empire, (Vol. 11 / 20)\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2014-02-25', 11, 'https://www.gutenberg.org/ebooks/45015', 'fr', 2051), +(27907, 'Kaukonäkijä: eli kuvauksia Ruijasta', 'Lie, Jonas', '2005-05-03', 6, 'https://www.gutenberg.org/ebooks/15765', 'fi', 286), +(27908, 'The King\'s Own', 'Marryat, Frederick', '2007-05-21', 31, 'https://www.gutenberg.org/ebooks/21550', 'en', 11340), +(27909, 'The Mercenary: A Tale of The Thirty Years\' War', 'Eccott, W. J.', '2012-08-23', 36, 'https://www.gutenberg.org/ebooks/40567', 'en', 5126), +(27910, 'Lilith: A Romance', 'MacDonald, George', '1999-02-01', 208, 'https://www.gutenberg.org/ebooks/1640', 'en', 580), +(27911, 'The Spanish Pioneers', 'Lummis, Charles Fletcher', '2010-07-06', 23, 'https://www.gutenberg.org/ebooks/33095', 'en', 11341), +(27912, 'A Christmas Carol', 'Dickens, Charles', '2007-12-24', 258, 'https://www.gutenberg.org/ebooks/24022', 'en', 1079), +(27913, 'The Land of Little Rain', 'Austin, Mary Hunter', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10217', 'en', 3481), +(27914, 'Brazil, the River Plate, and the Falkland Islands\r\nWith the Cape Horn route to Australia. Including notices of Lisbon, Madeira, the Canaries, and Cape Verde.', 'Hadfield, William', '2018-01-19', 24, 'https://www.gutenberg.org/ebooks/56402', 'en', 11342), +(27915, 'La araña negra, t. 1/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 42, 'https://www.gutenberg.org/ebooks/45829', 'es', 98), +(27916, 'The Scrap Book, Volume 1, No. 1\nMarch 1906', 'Various', '2010-04-26', 35, 'https://www.gutenberg.org/ebooks/32147', 'en', 18), +(27917, 'Esther\'s Charge: A Story for Girls', 'Everett-Green, Evelyn', '2013-02-28', 30, 'https://www.gutenberg.org/ebooks/42230', 'en', 5372), +(27918, 'The Relation of Literature to Life', 'Warner, Charles Dudley', '2004-12-05', 15, 'https://www.gutenberg.org/ebooks/3117', 'en', 3720), +(27919, 'Lewis and Clark\nMeriwether Lewis and William Clark', 'Lighton, William R. (William Rheem)', '2008-10-04', 32, 'https://www.gutenberg.org/ebooks/26775', 'en', 11343), +(27920, 'George Washington', 'Thayer, William Roscoe', '2004-06-01', 77, 'https://www.gutenberg.org/ebooks/12540', 'en', 7558), +(27921, 'The Price of Coal\r\nA Play', 'Brighouse, Harold', '2017-08-07', 12, 'https://www.gutenberg.org/ebooks/55287', 'en', 11344), +(27922, 'Harrow: A Sketch Book', 'Keesey, Walter M.', '2017-03-13', 10, 'https://www.gutenberg.org/ebooks/54355', 'en', 11345), +(27923, 'Viajes por Europa y América', 'Petano y Mazariegos, Gorgonio', '2004-09-18', 25, 'https://www.gutenberg.org/ebooks/13492', 'es', 227), +(27924, 'Lea', 'Cavallotti, Felice', '2019-08-24', 33, 'https://www.gutenberg.org/ebooks/60160', 'it', NULL), +(27925, 'History of Human Society', 'Blackmar, Frank W. (Frank Wilson)', '2009-12-06', 36, 'https://www.gutenberg.org/ebooks/30610', 'en', 3503), +(27926, 'Cuentos y crónicas\nObras Completas Vol. XIV', 'Darío, Rubén', '2016-04-02', 34, 'https://www.gutenberg.org/ebooks/51627', 'es', 2730), +(27927, 'Cornish Saints & Sinners', 'Harris, J. Henry', '2014-08-26', 15, 'https://www.gutenberg.org/ebooks/46690', 'en', 1565), +(27928, 'The Aesop for Children\r\nWith pictures by Milo Winter', 'Aesop', '2006-12-02', 779, 'https://www.gutenberg.org/ebooks/19994', 'en', 1223), +(27929, 'Billy Barcroft, R.N.A.S.: A Story of the Great War', 'Westerman, Percy F. (Percy Francis)', '2011-02-22', 17, 'https://www.gutenberg.org/ebooks/35362', 'en', 325), +(27930, 'The Book of Nonsense', 'Lear, Edward', '1997-07-01', 424, 'https://www.gutenberg.org/ebooks/982', 'en', 11346), +(27931, 'Voodoo Planet', 'Norton, Andre', '2006-07-16', 143, 'https://www.gutenberg.org/ebooks/18846', 'en', 26), +(27932, 'Short Cruises', 'Jacobs, W. W. (William Wymark)', '2004-09-01', 33, 'https://www.gutenberg.org/ebooks/6465', 'en', 1902), +(27933, 'Suutarin oppi-poika: Kertoelma lapsille', 'Gumpert, Thekla von', '2014-12-22', 6, 'https://www.gutenberg.org/ebooks/47742', 'fi', 8472), +(27934, 'The Lieutenant and Commander\r\nBeing Autobigraphical Sketches of His Own Career, from Fragments of Voyages and Travels', 'Hall, Basil', '2005-11-08', 18, 'https://www.gutenberg.org/ebooks/17032', 'en', 885), +(27935, 'Americans All\nStories of American Life of To-Day', NULL, '2007-10-26', 18, 'https://www.gutenberg.org/ebooks/23207', 'en', 112), +(27936, 'The Life of George Washington. In Words of One Syllable', 'Pollard, Josephine', '2011-05-22', 57, 'https://www.gutenberg.org/ebooks/36183', 'en', 10245), +(27937, 'The Love Sonnets of a Hoodlum', 'Irwin, Wallace', '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/4756', 'en', 6193), +(27938, 'The History of the Revolutions of Portugal', 'Boisgelin de Kerdu, Pierre Marie Louis de', '2014-04-24', 10, 'https://www.gutenberg.org/ebooks/45471', 'en', 11347), +(27939, 'Narratives of Shipwrecks of the Royal Navy; between 1793 and 1849', 'Gilly, William O. S.', '2005-03-09', 20, 'https://www.gutenberg.org/ebooks/15301', 'en', 11348), +(27940, 'Working in the Shade\nLowly Sowing brings Glorious Reaping', 'Wilson, Theodore P.', '2007-04-18', 13, 'https://www.gutenberg.org/ebooks/21134', 'en', 94), +(27941, 'Die Welt auf Schienen\r\nEine Darstellung der Einrichtungen und des Betriebs auf den Eisenbahnen des Fernverkehrs, Nebst einer Geschichte der Eisenbahn', 'Fürst, Artur', '2016-11-12', 25, 'https://www.gutenberg.org/ebooks/53514', 'de', 11349), +(27942, 'Letters of a Diplomat\'s Wife, 1883-1900', 'Waddington, Mary King', '2012-02-10', 88, 'https://www.gutenberg.org/ebooks/38825', 'en', 7725), +(27943, 'Préfaces et manifestes littéraires', 'Goncourt, Edmond de', '2011-08-12', 16, 'https://www.gutenberg.org/ebooks/37051', 'fr', 1765), +(27944, 'A Son of the Soil', 'Oliphant, Mrs. (Margaret)', '2018-09-28', 22, 'https://www.gutenberg.org/ebooks/57988', 'en', 2389), +(27945, 'The Metaphysical Elements of Ethics', 'Kant, Immanuel', '2004-05-01', 124, 'https://www.gutenberg.org/ebooks/5684', 'en', 680), +(27946, 'Der Luftpirat und sein lenkbares Luftschiff 42: Im Todeskrater des neuen Planeten', 'Anonymous', '2017-11-28', 12, 'https://www.gutenberg.org/ebooks/56066', 'de', 26), +(27947, 'O Engeitado', 'Braga, Alberto Leal Barradas Monteiro', '2008-05-25', 9, 'https://www.gutenberg.org/ebooks/25594', 'pt', 179), +(27948, 'Mrs. Turner\'s Cautionary Stories', 'Turner, Mrs. (Elizabeth)', '2010-05-25', 19, 'https://www.gutenberg.org/ebooks/32523', 'en', 2951), +(27949, 'Nursie\'s Little Rhyme Book', NULL, '2019-06-25', 39, 'https://www.gutenberg.org/ebooks/59812', 'en', 343), +(27950, 'Chums of the Camp Fire', 'Leslie, Lawrence J.', '2007-06-23', 25, 'https://www.gutenberg.org/ebooks/21908', 'en', 153), +(27951, 'Denry the Audacious', 'Bennett, Arnold', '2012-06-28', 100, 'https://www.gutenberg.org/ebooks/40103', 'en', 323), +(27952, 'Sidney Lanier', 'Mims, Edwin', '1998-02-01', 12, 'https://www.gutenberg.org/ebooks/1224', 'en', 11350), +(27953, 'An Oregon Girl: A Tale of American Life in the New West', 'Rice, Alfred Ernest', '2011-11-15', 18, 'https://www.gutenberg.org/ebooks/38019', 'en', 315), +(27954, 'John Corwell, Sailor And Miner; and, Poisonous Fish\n1901', 'Becke, Louis', '2008-01-28', 8, 'https://www.gutenberg.org/ebooks/24446', 'en', 324), +(27955, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 09\r\nAsia, Part II', 'Hakluyt, Richard', '2004-01-01', 52, 'https://www.gutenberg.org/ebooks/10673', 'en', 2528), +(27956, 'The Sieges of Vienna by the Turks', 'Schimmer, Karl August', '2017-05-16', 17, 'https://www.gutenberg.org/ebooks/54731', 'en', 11351), +(27957, 'Aesop\'s Fables\r\nTranslated by George Fyler Townsend', 'Aesop', '2008-06-25', 437, 'https://www.gutenberg.org/ebooks/21', 'en', 4125), +(27958, 'Libussa\nTrauerspiel in fünf Aufzügen', 'Grillparzer, Franz', '2005-10-01', 28, 'https://www.gutenberg.org/ebooks/9049', 'de', 402), +(27959, 'The History of Sandford and Merton', 'Day, Thomas', '2009-10-17', 27, 'https://www.gutenberg.org/ebooks/30274', 'en', 658), +(27960, 'A Gentleman-at-Arms: Being Passages in the Life of Sir Christopher Rudd, Knight', 'Strang, Herbert', '2013-09-21', 14, 'https://www.gutenberg.org/ebooks/43786', 'en', 323), +(27961, 'The Topanga Culture: Final Report on Excavations, 1948', 'Bierman, Agnes', '2013-05-06', 13, 'https://www.gutenberg.org/ebooks/42654', 'en', 11352), +(27962, 'Recollections of the Private Life of Napoleon — Volume 06', 'Wairy, Louis Constant', '2002-12-01', 13, 'https://www.gutenberg.org/ebooks/3573', 'en', 840), +(27963, 'Choice Cookery', 'Owen, Catherine', '2008-08-14', 28, 'https://www.gutenberg.org/ebooks/26311', 'en', 103), +(27964, 'The Well\nThe Lady of the Barge and Others, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/12124', 'en', 1902), +(27965, 'Polly of Pebbly Pit', 'Roy, Lillian Elizabeth', '2004-07-01', 12, 'https://www.gutenberg.org/ebooks/6001', 'en', 62), +(27966, 'Birds Illustrated by Color Photography, Vol. 3, No. 4.', 'Various', '2014-11-11', 13, 'https://www.gutenberg.org/ebooks/47326', 'en', 1584), +(27967, 'Julius Caesar', 'Shakespeare, William', '2006-02-01', 51, 'https://www.gutenberg.org/ebooks/9875', 'de', 6377), +(27968, 'The Romance of a Christmas Card', 'Wiggin, Kate Douglas Smith', '2006-01-04', 18, 'https://www.gutenberg.org/ebooks/17456', 'en', 585), +(27969, 'The Travelling Thirds', 'Atherton, Gertrude Franklin Horn', '2015-11-05', 14, 'https://www.gutenberg.org/ebooks/50391', 'en', 11353), +(27970, 'Tom Slade on a Transport', 'Fitzhugh, Percy Keese', '2007-11-30', 18, 'https://www.gutenberg.org/ebooks/23663', 'en', 579), +(27971, 'De Koopman van Venetië: Drama in vijf bedrijven', 'Shakespeare, William', '2009-07-09', 6, 'https://www.gutenberg.org/ebooks/29359', 'nl', 5469), +(27972, 'The life of Midhat Pasha; a record of his services, political reforms, banishment, and judicial murder', 'Ali Haydar Mithat', '2016-02-17', 60, 'https://www.gutenberg.org/ebooks/51243', 'en', 11354), +(27973, 'Bartholdus Simonis\nHistoriallis-romantillinen näytelmä kolmessa näytöksessä', 'Jahnsson, Evald Ferdinand', '2005-08-23', 23, 'https://www.gutenberg.org/ebooks/16584', 'fi', 247), +(27974, 'Iranian Influence on Moslem Literature, Part I', 'Inostrantzev, Konstantin Aleksandrovich', '2004-07-16', 49, 'https://www.gutenberg.org/ebooks/12918', 'en', 11355), +(27975, 'All the Days of My Life: An Autobiography\nThe Red Leaves of a Human Heart', 'Barr, Amelia E.', '2011-03-29', 18, 'https://www.gutenberg.org/ebooks/35706', 'en', 11356), +(27976, 'Greyfriars Bobby', 'Atkinson, Eleanor', '2001-07-01', 38, 'https://www.gutenberg.org/ebooks/2693', 'en', 2389), +(27977, 'Le Tour du Monde; Abydos\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-20', 11, 'https://www.gutenberg.org/ebooks/30046', 'fr', 1182), +(27978, 'Alice\'s Adventures in Wonderland\nIllustrated by Arthur Rackham. With a Proem by Austin Dobson', 'Carroll, Lewis', '2009-05-19', 2619, 'https://www.gutenberg.org/ebooks/28885', 'en', 10012), +(27979, 'Life of James Buchanan, Fifteenth President of the United States. v. 2 (of 2)', 'Curtis, George Ticknor', '2017-04-07', 6, 'https://www.gutenberg.org/ebooks/54503', 'en', 11357), +(27980, 'Time Telling through the Ages', 'Brearley, Harry Chase', '2015-01-09', 23, 'https://www.gutenberg.org/ebooks/47928', 'en', 11358), +(27981, 'An Essay on Slavery and Abolitionism\nWith reference to the duty of American females', 'Beecher, Catharine Esther', '2008-07-25', 12, 'https://www.gutenberg.org/ebooks/26123', 'en', 1174), +(27982, 'True Tilda', 'Quiller-Couch, Arthur', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12316', 'en', 264), +(27983, 'Facts and fancies in modern science\r\nStudies of the relations of science to prevalent speculations and religious belief', 'Dawson, John William, Sir', '2013-04-03', 15, 'https://www.gutenberg.org/ebooks/42466', 'en', 1315), +(27984, 'Ein Stück Lebensgeschichte, und andere Erzählungen', 'Lagerlöf, Selma', '2009-09-10', 12, 'https://www.gutenberg.org/ebooks/29957', 'de', 61), +(27985, 'The Writings of Thomas Paine — Volume 1 (1774-1779): The American Crisis', 'Paine, Thomas', '2003-02-01', 128, 'https://www.gutenberg.org/ebooks/3741', 'en', 8061), +(27986, 'Stories by American Authors, Volume 9', 'Various', '2010-02-06', 10, 'https://www.gutenberg.org/ebooks/31194', 'en', 112), +(27987, 'Kampagne in Frankreich', 'Goethe, Johann Wolfgang von', '2006-02-02', 52, 'https://www.gutenberg.org/ebooks/17664', 'de', 11359), +(27988, 'Little Yellow Wang-lo', 'Bell, M. C.', '2007-11-12', 13, 'https://www.gutenberg.org/ebooks/23451', 'en', 5716), +(27989, 'Travels in Brazil', 'Koster, Henry', '2015-05-15', 10, 'https://www.gutenberg.org/ebooks/48960', 'en', 4395), +(27990, 'The Battle of the Strong: A Romance of Two Kingdoms — Volume 4', 'Parker, Gilbert', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6233', 'en', 11237), +(27991, 'La guerra del Vespro Siciliano vol. 2\nUn periodo delle storie Siciliane del secolo XIII', 'Amari, Michele', '2014-10-14', 24, 'https://www.gutenberg.org/ebooks/47114', 'it', 6935), +(27992, 'How to be Happy Though Married: Being a Handbook to Marriage', 'Hardy, E. J. (Edward John)', '2011-03-09', 53, 'https://www.gutenberg.org/ebooks/35534', 'en', 1451), +(27993, 'The Highgrader', 'Raine, William MacLeod', '2007-09-12', 42, 'https://www.gutenberg.org/ebooks/22583', 'en', 315), +(27994, 'Sampo: Runollisto vuonna 1847', 'Gottlund, C. A. (Carl Axel)', '2016-01-29', 22, 'https://www.gutenberg.org/ebooks/51071', 'fi', 1171), +(27995, 'Campfire Girls in the Allegheny Mountains; or, A Christmas Success against Odds', 'Francis, Stella M.', '2005-02-21', 30, 'https://www.gutenberg.org/ebooks/15133', 'en', 622), +(27996, 'Dick o\' the Fens: A Tale of the Great East Swamp', 'Fenn, George Manville', '2007-05-04', 15, 'https://www.gutenberg.org/ebooks/21306', 'en', 11360), +(27997, 'Rouge mémoire: Poésie', 'Bertrand, Huguette', '2003-10-01', 11, 'https://www.gutenberg.org/ebooks/4564', 'fr', 8), +(27998, 'Poems', 'Tree, Iris', '2014-05-14', 17, 'https://www.gutenberg.org/ebooks/45643', 'en', 1594), +(27999, 'Lady Byron Vindicated: A History of the Byron Controversy', 'Stowe, Harriet Beecher', '2014-01-29', 17, 'https://www.gutenberg.org/ebooks/44791', 'en', 11361), +(28000, 'Coelebs: The Love Story of a Bachelor', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-08-29', 5, 'https://www.gutenberg.org/ebooks/37263', 'en', 48), +(28001, 'Cædwalla; or, The Saxons in the Isle of Wight: A Tale', 'Cowper, Frank Cadogan', '2016-12-12', 7, 'https://www.gutenberg.org/ebooks/53726', 'en', 246), +(28002, 'Disaster Revisited', 'Marlowe, Stephen', '2010-06-06', 20, 'https://www.gutenberg.org/ebooks/32711', 'en', 179), +(28003, 'The Purchase Price; Or, The Cause of Compromise', 'Hough, Emerson', '2004-03-01', 37, 'https://www.gutenberg.org/ebooks/11593', 'en', 7826), +(28004, 'The flowers and gardens of Japan', 'Du Cane, Florence', '2017-12-26', 27, 'https://www.gutenberg.org/ebooks/56254', 'en', 11362), +(28005, 'Expositions of Holy Scripture\nEphesians; Epistles of St. Peter and St. John', 'Maclaren, Alexander', '2008-02-23', 79, 'https://www.gutenberg.org/ebooks/24674', 'en', 11363), +(28006, 'Kahden reportterin seikkailut: Seikkailuromaani', 'Karila, Olli', '2018-06-24', 1, 'https://www.gutenberg.org/ebooks/57386', 'fi', 175), +(28007, 'The Green Mouse', 'Chambers, Robert W. (Robert William)', '2003-12-01', 21, 'https://www.gutenberg.org/ebooks/10441', 'en', 500), +(28008, 'A Rich Man\'s Relatives (Vol. 1 of 3)', 'Cleland, Robert', '2012-07-25', 6, 'https://www.gutenberg.org/ebooks/40331', 'en', 65), +(28009, 'On the Improvement of the Understanding', 'Spinoza, Benedictus de', '1997-08-01', 152, 'https://www.gutenberg.org/ebooks/1016', 'en', 5449), +(28010, 'Mr. Punch on Tour: The Humour of Travel at Home and Abroad', NULL, '2011-05-20', 28, 'https://www.gutenberg.org/ebooks/36177', 'en', 2965), +(28011, 'The Sky Trail', 'Dean, Graham M.', '2014-04-24', 21, 'https://www.gutenberg.org/ebooks/45485', 'en', 2279), +(28012, 'Samuel Titmarsh: Tarina isosta Hoggartyn timantista', 'Thackeray, William Makepeace', '2016-06-29', 16, 'https://www.gutenberg.org/ebooks/52432', 'fi', 4288), +(28013, 'Star of Mercia: Historical Tales of Wales and the Marches', 'Devereux, Blanche', '2012-06-02', 20, 'https://www.gutenberg.org/ebooks/39903', 'en', 98), +(28014, 'The Political Future of India', 'Lajpat Rai, Lala', '2013-01-11', 9, 'https://www.gutenberg.org/ebooks/41819', 'en', 1707), +(28015, 'The Hawarden Visitors\' Hand-Book\nRevised Edition, 1890', 'Gladstone, William Henry', '2006-12-03', 21, 'https://www.gutenberg.org/ebooks/20012', 'en', 11364), +(28016, 'Facts and Assertions: or a Brief and Plain Exhibition of the Incongruity of the Peculiar Doctrines of the Church of Rome\r\nWith Those Both of the Sacred Scriptures and of the Early Writers of the Christian Church Catholic', 'Faber, George Stanley', '2018-10-15', 10, 'https://www.gutenberg.org/ebooks/58108', 'en', 4859), +(28017, 'On English Homophones\r\nSociety for Pure English, Tract 02', 'Bridges, Robert', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/14227', 'en', 11365), +(28018, 'An Unsentimental Journey through Cornwall', 'Craik, Dinah Maria Mulock', '2014-01-01', 15, 'https://www.gutenberg.org/ebooks/44557', 'en', 2082), +(28019, 'Jacob\'s Room', 'Woolf, Virginia', '2004-05-01', 438, 'https://www.gutenberg.org/ebooks/5670', 'en', 11366), +(28020, 'Kuvaelmia itä-suomalaisten vanhoista tavoista 2: Maahanpanijaiset', 'Häyhä, Johannes', '2017-11-30', 2, 'https://www.gutenberg.org/ebooks/56092', 'fi', 9733), +(28021, 'String Quartet No. 10 in E flat major Opus 74 \"Harp\"', 'Beethoven, Ludwig van', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11755', 'en', 3385), +(28022, 'Punch, or the London Charivari, Vol. 146, June 24, 1914', 'Various', '2008-05-22', 33, 'https://www.gutenberg.org/ebooks/25560', 'en', 134), +(28023, 'Josh Billings on Ice, and Other Things', 'Billings, Josh', '2012-10-11', 5, 'https://www.gutenberg.org/ebooks/41025', 'en', 190), +(28024, 'Familiar Talks on Science: World-Building and Life; Earth, Air and Water.', 'Gray, Elisha', '2010-08-11', 16, 'https://www.gutenberg.org/ebooks/33405', 'en', 814), +(28025, 'The Somerset Coast', 'Harper, Charles G. (Charles George)', '2019-02-22', 10, 'https://www.gutenberg.org/ebooks/58934', 'en', 11367), +(28026, 'Tartarin de Tarascon', 'Daudet, Alphonse', '2004-01-01', 62, 'https://www.gutenberg.org/ebooks/10687', 'fr', 11368), +(28027, 'Life\'s Minor Collisions', 'Warner, Gertrude Chandler', '2011-11-01', 10, 'https://www.gutenberg.org/ebooks/37899', 'en', 740), +(28028, 'Memoirs of the Reign of King George the Third, Volume 2 (of 4)', 'Walpole, Horace', '2018-05-12', 10, 'https://www.gutenberg.org/ebooks/57140', 'en', 2610), +(28029, 'What I Saw in California\r\nA Description of Its Soil, Climate, Productions, and Gold Mines, with the Best Routes and Latest Information for Intending Emigrants; to Which is Annexed an Appendix Containing Official Documents and Letters Authenticating the Accounts of the Quantities of Gold Found, with Its Actual Value Ascertained by Chemical Assay; also Late Communications Containing Accounts of the Highest Interest and Importance from the Gold Districts; with a Map', 'Bryant, Edwin', '2004-07-23', 29, 'https://www.gutenberg.org/ebooks/13002', 'en', 1181), +(28030, 'An Essay on the Scriptural Doctrine of Immortality', 'Challis, James', '2008-11-11', 20, 'https://www.gutenberg.org/ebooks/27237', 'en', 1509), +(28031, 'Vida y obras de don Diego Velázquez', 'Picón, Jacinto Octavio', '2009-10-18', 43, 'https://www.gutenberg.org/ebooks/30280', 'es', 11369), +(28032, 'History of the Catholic Church from the Renaissance to the French Revolution — Volume 2', 'MacCaffrey, James', '2001-01-01', 23, 'https://www.gutenberg.org/ebooks/2455', 'en', 5948), +(28033, 'Histoire de la prostitution chez tous les peuples du monde depuis l\'antiquité la plus reculée jusqu\'à nos jours, tome 4/6', 'Jacob, P. L.', '2013-09-20', 23, 'https://www.gutenberg.org/ebooks/43772', 'fr', 2611), +(28034, 'Balboa: Ein Trauerspiel in fünf Aufzügen', 'Collin, Heinrich Joseph von', '2015-06-21', 12, 'https://www.gutenberg.org/ebooks/49248', 'de', 11370), +(28035, 'Sex-education\r\nA series of lectures concerning knowledge of sex in its relation to human life', 'Bigelow, Maurice A. (Maurice Alpheus)', '2010-02-22', 105, 'https://www.gutenberg.org/ebooks/31352', 'en', 2378), +(28036, 'Essays of Michel de Montaigne — Volume 07', 'Montaigne, Michel de', '2004-11-01', 24, 'https://www.gutenberg.org/ebooks/3587', 'en', 1964), +(28037, 'The Broncho Rider Boys with Funston at Vera Cruz\nOr, Upholding the Honor of the Stars and Stripes', 'Fowler, Frank', '2006-10-14', 25, 'https://www.gutenberg.org/ebooks/19538', 'en', 9537), +(28038, 'Monsieur Judas: A Paradox', 'Hume, Fergus', '2017-09-24', 20, 'https://www.gutenberg.org/ebooks/55617', 'en', 128), +(28039, 'Mémoires du maréchal Marmont, duc de Raguse (9/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2010-12-11', 7, 'https://www.gutenberg.org/ebooks/34620', 'fr', 3053), +(28040, 'Los Raros\nObras Completas Vol. VI', 'Darío, Rubén', '2015-11-01', 27, 'https://www.gutenberg.org/ebooks/50365', 'es', 536), +(28041, 'Clarissa Harlowe; or the history of a young lady — Volume 3', 'Richardson, Samuel', '2006-02-01', 74, 'https://www.gutenberg.org/ebooks/9881', 'en', 258), +(28042, 'Forty Minutes Late\n1909', 'Smith, Francis Hopkinson', '2007-12-03', 9, 'https://www.gutenberg.org/ebooks/23697', 'en', 11371), +(28043, 'Fair Harbor', 'Lincoln, Joseph Crosby', '2007-09-23', 27, 'https://www.gutenberg.org/ebooks/22745', 'en', 6349), +(28044, 'Life of Lord Byron, Vol. 2\r\nWith His Letters and Journals', 'Moore, Thomas', '2005-08-19', 17, 'https://www.gutenberg.org/ebooks/16570', 'en', 2265), +(28045, 'The Norsk Nightingale; Being the Lyrics of a \"Lumberyack\"', 'Kirk, William Frederick', '2005-09-01', 21, 'https://www.gutenberg.org/ebooks/8953', 'en', 11372), +(28046, 'Plowing On Sunday', 'North, Sterling', '2014-07-06', 12, 'https://www.gutenberg.org/ebooks/46200', 'en', 828), +(28047, 'Malcolm', 'MacDonald, George', '2004-12-01', 97, 'https://www.gutenberg.org/ebooks/7127', 'en', 4251), +(28048, 'The Vicar of Wakefield', 'Goldsmith, Oliver', '2001-06-01', 175, 'https://www.gutenberg.org/ebooks/2667', 'en', 11373), +(28049, 'Letters from Palestine\nWritten during a residence there in the years 1836, 7 and 8', 'Paxton, J. D. (John D.)', '2013-08-22', 12, 'https://www.gutenberg.org/ebooks/43540', 'en', 723), +(28050, 'The Seven Great Monarchies of the Ancient Asian World\r\nA Linked Index to the Project Gutenberg Editions', 'Rawlinson, George', '2009-05-18', 28, 'https://www.gutenberg.org/ebooks/28871', 'en', 931), +(28051, 'Glossaire franco-canadien et vocabulaire de locutions vicieuses usitées au Canada', 'Dunn, Oscar', '2004-08-20', 29, 'https://www.gutenberg.org/ebooks/13230', 'fr', 10752), +(28052, 'Notes and Queries, Number 206, October 8, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 21, 'https://www.gutenberg.org/ebooks/27005', 'en', 105), +(28053, 'War and the Arme Blanche', 'Childers, Erskine', '2017-08-25', 10, 'https://www.gutenberg.org/ebooks/55425', 'en', 2000), +(28054, 'Lady Eureka; or, The Mystery: A Prophecy of the Future. Volume 2', 'Williams, Robert Folkestone', '2013-04-08', 18, 'https://www.gutenberg.org/ebooks/42492', 'en', 61), +(28055, 'Free Joe and Other Georgian Sketches', 'Harris, Joel Chandler', '2010-02-02', 35, 'https://www.gutenberg.org/ebooks/31160', 'en', 9254), +(28056, 'Billie Bradley and the School Mystery; Or, The Girl From Oklahoma', 'Wheeler, Janet D.', '2015-10-08', 7, 'https://www.gutenberg.org/ebooks/50157', 'en', 128), +(28057, 'The Master of Appleby\nA Novel Tale Concerning Itself in Part with the Great Struggle in the Two Carolinas; but Chiefly with the Adventures Therein of Two Gentlemen Who Loved One and the Same Lady', 'Lynde, Francis', '2006-02-06', 13, 'https://www.gutenberg.org/ebooks/17690', 'en', 11374), +(28058, 'The Old Humanities and the New Science', 'Osler, William', '2015-05-19', 8, 'https://www.gutenberg.org/ebooks/48994', 'en', 11375), +(28059, 'A New Species of Heteromyid Rodent from the Middle Oligocene of Northeast Colorado with Remarks on the Skull', 'Galbreath, Edwin C. (Edwin Carter)', '2010-11-23', 19, 'https://www.gutenberg.org/ebooks/34412', 'en', 11376), +(28060, 'Only an Irish Girl', 'Duchess', '2009-01-19', 22, 'https://www.gutenberg.org/ebooks/27839', 'en', 11377), +(28061, 'Vitus Bering: the Discoverer of Bering Strait', 'Lauridsen, Peter', '2014-06-19', 16, 'https://www.gutenberg.org/ebooks/46032', 'en', 11378), +(28062, '夢溪筆談, Volume 17-21', 'Shen, Kuo', '2005-01-01', 11, 'https://www.gutenberg.org/ebooks/7315', 'zh', 2525), +(28063, 'Practical Grammar and Composition', 'Wood, Thomas', '2007-09-11', 73, 'https://www.gutenberg.org/ebooks/22577', 'en', 664), +(28064, 'Florizel\'s Folly', 'Ashton, John', '2015-09-01', 16, 'https://www.gutenberg.org/ebooks/49846', 'en', 11379), +(28065, 'Dan Merrithew', 'Perry, Lawrence', '2005-09-24', 12, 'https://www.gutenberg.org/ebooks/16742', 'en', 11380), +(28066, 'Helen\'s Babies', 'Habberton, John', '2016-01-30', 20, 'https://www.gutenberg.org/ebooks/51085', 'en', 777), +(28067, 'Bird Portraits', NULL, '2016-07-18', 9, 'https://www.gutenberg.org/ebooks/52600', 'en', 318), +(28068, 'After the Storm', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 19, 'https://www.gutenberg.org/ebooks/4590', 'en', 50), +(28069, 'Letters of David Ricardo to Thomas Robert Malthus, 1810-1823', 'Ricardo, David', '2011-06-07', 27, 'https://www.gutenberg.org/ebooks/36345', 'en', 11381), +(28070, '\'Round the Year in Myth and Song', 'Holbrook, Florence', '2014-01-26', 20, 'https://www.gutenberg.org/ebooks/44765', 'en', 11382), +(28071, 'Uarda : a Romance of Ancient Egypt — Volume 04', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5442', 'en', 803), +(28072, 'Beknopte geschiedenis van het vaderland', 'Wijnne, J. A. (Johan Adam)', '2011-09-02', 4, 'https://www.gutenberg.org/ebooks/37297', 'nl', 1498), +(28073, 'The Mind and Its Education', 'Betts, George Herbert', '2006-12-29', 148, 'https://www.gutenberg.org/ebooks/20220', 'en', 1947), +(28074, 'The Discovery of Witches', 'Hopkins, Matthew', '2004-11-10', 288, 'https://www.gutenberg.org/ebooks/14015', 'en', 11383), +(28075, 'English-French and French-English dictionary of the motor car, cycle, and boat', 'Lucas, Frederick', '2012-10-29', 16, 'https://www.gutenberg.org/ebooks/41217', 'en', 11085), +(28076, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 543, Saturday, April 21, 1832.', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11567', 'en', 133), +(28077, 'Souvenirs de la duchesse de Dino\npubliés par sa petite fille, la Comtesse Jean de Castellane.', 'Dino, Dorothée, duchesse de', '2008-06-10', 15, 'https://www.gutenberg.org/ebooks/25752', 'fr', 6776), +(28078, 'The Martyr of the Catacombs\nA Tale of Ancient Rome', 'De Mille, James', '2008-02-23', 26, 'https://www.gutenberg.org/ebooks/24680', 'en', 98), +(28079, 'The Literary History of the Adelphi and Its Neighbourhood', 'Brereton, Austin', '2018-06-22', 7, 'https://www.gutenberg.org/ebooks/57372', 'en', 11384), +(28080, 'Our Holidays\nTheir Meaning and Spirit; retold from St. Nicholas', 'Various', '2005-01-29', 21, 'https://www.gutenberg.org/ebooks/14829', 'en', 11385), +(28081, 'Victory out of Ruin', 'Maclean, Norman', '2010-09-04', 9, 'https://www.gutenberg.org/ebooks/33637', 'en', 10577), +(28082, 'Algeria and Tunis', 'Nesbitt, Frances E.', '2017-07-04', 13, 'https://www.gutenberg.org/ebooks/55041', 'en', 11386), +(28083, 'The Khasis', 'Gurdon, P. R. T. (Philip Richard Thornhagh)', '2004-06-30', 25, 'https://www.gutenberg.org/ebooks/12786', 'en', 11387), +(28084, 'Manual of the Enumeration\r\nA Text Book on the Sciences of the Enumeration, Book one', 'Coffman, C. J. (Casper James)', '2011-04-30', 31, 'https://www.gutenberg.org/ebooks/35998', 'en', 11388), +(28085, 'Concerning Justice', 'Emery, Lucilius A. (Lucilius Alonzo)', '2010-03-04', 22, 'https://www.gutenberg.org/ebooks/31504', 'en', 11389), +(28086, 'Thermidor: d\'après les sources originales et les documents authentiques', 'Hamel, Ernest', '2005-08-01', 31, 'https://www.gutenberg.org/ebooks/8739', 'fr', 11390), +(28087, 'Human Genome Project, rough draft, Chromosome Number 03', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2203', 'en', 2318), +(28088, 'The Flaming Sword in Serbia and Elsewhere', 'Stobart, M. A. (Mabel Annie)', '2013-07-07', 50, 'https://www.gutenberg.org/ebooks/43124', 'en', 449), +(28089, 'Ida et Carmelita', 'Malot, Hector', '2004-10-06', 6, 'https://www.gutenberg.org/ebooks/13654', 'fr', 61), +(28090, 'The Jacquard Machine Analyzed and Explained\r\nWith an appendix on the preparation of jacquard cards, and practical hints to learners of jacquard designing', 'Posselt, E. A. (Emanuel Anthony)', '2017-02-19', 5, 'https://www.gutenberg.org/ebooks/54193', 'en', 9761), +(28091, 'The White Knight: Tirant Lo Blanc', 'Galba, Martí Joan de', '1995-12-01', 160, 'https://www.gutenberg.org/ebooks/378', 'en', 2588), +(28092, 'The Orchard of Tears', 'Rohmer, Sax', '2008-12-09', 38, 'https://www.gutenberg.org/ebooks/27461', 'en', 109), +(28093, 'Mysterium Arcae Boulé', 'Stevenson, Burton Egbert', '2014-07-30', 57, 'https://www.gutenberg.org/ebooks/46456', 'la', 128), +(28094, 'Les Quarante-Cinq — Tome 2', 'Dumas, Alexandre', '2005-03-01', 29, 'https://www.gutenberg.org/ebooks/7771', 'fr', 9760), +(28095, 'Peggy Stewart at School', 'Jackson, Gabrielle E. (Gabrielle Emilie)', '2007-07-20', 13, 'https://www.gutenberg.org/ebooks/22113', 'en', 11391), +(28096, 'Väljemmillä vesillä\nUusia Runoja', 'Leino, Kasimir', '2005-07-18', 26, 'https://www.gutenberg.org/ebooks/16326', 'fi', 8), +(28097, 'Motor Matt\'s Launch; or, A Friend in Need', 'Matthews, Stanley R.', '2015-11-22', 8, 'https://www.gutenberg.org/ebooks/50533', 'en', 323), +(28098, 'Mémoires d\'une contemporaine. Tome 2\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-03-29', 18, 'https://www.gutenberg.org/ebooks/28429', 'fr', 1941), +(28099, 'The Penitent Boy; or, Sin Brings Sorrow', NULL, '2013-10-09', 1, 'https://www.gutenberg.org/ebooks/43918', 'en', 4099), +(28100, 'Fox Trapping: A Book of Instruction Telling How to Trap, Snare, Poison and Shoot\r\nA Valuable Book for Trappers', 'Harding, A. R. (Arthur Robert)', '2010-10-15', 32, 'https://www.gutenberg.org/ebooks/34076', 'en', 11392), +(28101, 'Noli me tángere\nNovela Tagala, Edición completa con notas de R. Sempau', 'Rizal, José', '2014-12-07', 156, 'https://www.gutenberg.org/ebooks/47584', 'es', 11393), +(28102, 'Fierabras', NULL, '2013-11-27', 15, 'https://www.gutenberg.org/ebooks/44301', 'fr', 10878), +(28103, 'State of the Union Addresses', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/5026', 'en', 1926), +(28104, 'The Book of Hallowe\'en', 'Kelley, Ruth Edna', '2007-02-21', 77, 'https://www.gutenberg.org/ebooks/20644', 'en', 1405), +(28105, 'The Empty House and Other Ghost Stories', 'Blackwood, Algernon', '2004-12-26', 206, 'https://www.gutenberg.org/ebooks/14471', 'en', 1373), +(28106, 'Trial of William Palmer', NULL, '2016-06-09', 11, 'https://www.gutenberg.org/ebooks/52264', 'en', 11394), +(28107, 'The Story of Atlantis and the Lost Lemuria', 'Scott-Elliot, W. (William)', '2007-06-10', 151, 'https://www.gutenberg.org/ebooks/21796', 'en', 7111), +(28108, 'House of Torment\nA Tale of the Remarkable Adventures of Mr. John Commendone, Gentleman to King Phillip II of Spain at the English Court', 'Thorne, Guy', '2011-07-13', 11, 'https://www.gutenberg.org/ebooks/36721', 'en', 11395), +(28109, 'Index of the Project Gutenberg Works of Samuel Merwin', 'Merwin, Samuel', '2018-08-17', 4, 'https://www.gutenberg.org/ebooks/57716', 'en', 198), +(28110, 'Gala-Day Luncheons: A Little Book of Suggestions', 'Benton, Caroline French', '2010-07-25', 20, 'https://www.gutenberg.org/ebooks/33253', 'en', 103), +(28111, 'The Unseen World, and Other Essays', 'Fiske, John', '1998-10-01', 44, 'https://www.gutenberg.org/ebooks/1486', 'en', 4637), +(28112, 'Christo não volta (Resposta ao «Voltareis, ó Christo?» de Camillo Castello-Branco)', 'Pimentel, Alberto', '2010-05-15', 16, 'https://www.gutenberg.org/ebooks/32381', 'pt', 11396), +(28113, 'Ghosts I Have Seen, and Other Psychic Experiences', 'Tweedale, Violet', '2012-05-23', 46, 'https://www.gutenberg.org/ebooks/39769', 'en', 6363), +(28114, 'Nullification, Secession, Webster\'s Argument, and the Kentucky and Virginia Resolutions\r\nConsidered in Reference to the Constitution and Historically', 'Loring, Caleb William', '2012-12-20', 7, 'https://www.gutenberg.org/ebooks/41673', 'en', 8784), +(28115, 'The Atlantic Monthly, Volume 06, No. 37, November, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11103', 'en', 1227), +(28116, 'A Traviata: Operetta buffa em 1 acto em verso', 'Leroy, Nicolau T.', '2008-05-05', 15, 'https://www.gutenberg.org/ebooks/25336', 'pt', 1966), +(28117, 'Hymns for Christian Devotion\nEspecially Adapted to the Universalist Denomination', 'Adams, John G. (John Greenleaf)', '2007-01-29', 14, 'https://www.gutenberg.org/ebooks/20476', 'en', 8876), +(28118, 'Le Novelle della Pescara', 'D\'Annunzio, Gabriele', '2016-10-01', 40, 'https://www.gutenberg.org/ebooks/53184', 'it', 6658), +(28119, 'The Farmer Boy: The Story of Jacob', 'Willard, J. H. (James Hartwell)', '2005-01-09', 14, 'https://www.gutenberg.org/ebooks/14643', 'en', 11397), +(28120, 'The Girl Warriors: A Book for Girls', 'Williams, Adene', '2013-11-08', 21, 'https://www.gutenberg.org/ebooks/44133', 'en', 2096), +(28121, 'Film: the Bikini Island BAKER Atomic Test', NULL, '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/5214', 'en', 11398), +(28122, 'Water Wizardry: A collection of tricks in which water is the chief agent', 'Ainslie, Arthur', '2011-06-24', 25, 'https://www.gutenberg.org/ebooks/36513', 'en', 3590), +(28123, 'Nancy McVeigh of the Monk Road', 'Mainer, R. Henry (Robert Henry)', '2008-06-30', 15, 'https://www.gutenberg.org/ebooks/25938', 'en', 3885), +(28124, 'Први Српски Буквар', 'Karadžić, Vuk Stefanović', '2005-05-07', 43, 'https://www.gutenberg.org/ebooks/15791', 'sr', 11399), +(28125, 'The Mysteries of London, v. 3/4', 'Reynolds, George W. M. (George William MacArthur)', '2016-05-13', 18, 'https://www.gutenberg.org/ebooks/52056', 'en', 1079), +(28126, 'School-Room Humour', 'Macnamara, T. J. (Thomas James)', '2012-08-27', 15, 'https://www.gutenberg.org/ebooks/40593', 'en', 11400), +(28127, 'Clover and Blue Grass', 'Hall, Eliza Calvert', '2010-07-03', 19, 'https://www.gutenberg.org/ebooks/33061', 'en', 3008), +(28128, 'Gargoyles', 'Hecht, Ben', '2012-01-03', 112, 'https://www.gutenberg.org/ebooks/38489', 'en', 61), +(28129, 'Index for Works of Mary Gaunt\r\nHyperlinks to All Chapters of All Individual Ebooks', 'Gaunt, Mary', '2018-07-17', 7, 'https://www.gutenberg.org/ebooks/57524', 'en', 198), +(28130, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 363, March 28, 1829', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11331', 'en', 133), +(28131, 'Ocean Steam Navigation and the Ocean Post', 'Rainey, Thomas', '2008-04-19', 23, 'https://www.gutenberg.org/ebooks/25104', 'en', 11401), +(28132, 'Alkuperäisiä suomalaisia uuteloita I', 'Gummerus, K. J. (Kaarle Jaakko)', '2012-11-22', 7, 'https://www.gutenberg.org/ebooks/41441', 'fi', 456), +(28133, 'The Romance of a Pro-Consul\r\nBeing the Personal Life and Memoirs of the Right Hon. Sir George Grey, K.C.B.', 'Milne, James', '2005-10-23', 11, 'https://www.gutenberg.org/ebooks/16928', 'en', 11402), +(28134, 'Star Performer', 'Shea, Robert', '2010-03-22', 31, 'https://www.gutenberg.org/ebooks/31736', 'en', 179), +(28135, 'Letters on the Nicobar islands, their natural productions, and the manners, customs, and superstitions of the natives\nwith an account of an attempt made by the Church of the\nUnited Brethren, to convert them to Christianity', 'Haensel, Johann Gottfried', '2008-10-05', 12, 'https://www.gutenberg.org/ebooks/26781', 'en', 9730), +(28136, 'The American Missionary — Volume 35, No. 2, February, 1881', 'Various', '2017-08-06', 1, 'https://www.gutenberg.org/ebooks/55273', 'en', 395), +(28137, 'Punch, or the London Charivari, Volume 101, August 1, 1891', 'Various', '2004-09-15', 3, 'https://www.gutenberg.org/ebooks/13466', 'en', 134), +(28138, 'Historiallinen lukukirja: Vanha ja Keski-aika', 'Sjögren, Otto', '2008-12-29', 19, 'https://www.gutenberg.org/ebooks/27653', 'fi', 10122), +(28139, 'The Lock and Key Library: The Most Interesting Stories of All Nations: Real Life', NULL, '2000-01-01', 220, 'https://www.gutenberg.org/ebooks/2031', 'en', 128), +(28140, 'Serate d\'inverno', 'Colombi, marchesa', '2013-07-26', 16, 'https://www.gutenberg.org/ebooks/43316', 'it', 474), +(28141, 'John Splendid: The Tale of a Poor Gentleman, and the Little Wars of Lorn', 'Munro, Neil', '2007-08-15', 105, 'https://www.gutenberg.org/ebooks/22321', 'en', 10612), +(28142, 'The Knight of the Golden Melice\nA Historical Romance', 'Adams, John Turvill', '2005-06-23', 21, 'https://www.gutenberg.org/ebooks/16114', 'en', 11403), +(28143, 'William Harvey', 'Power, D\'Arcy, Sir', '2014-08-23', 20, 'https://www.gutenberg.org/ebooks/46664', 'en', 11404), +(28144, 'Quotes and Images From The Tales and Novels of Jean de La Fontaine', 'La Fontaine, Jean de', '2004-08-27', 34, 'https://www.gutenberg.org/ebooks/7543', 'en', 1026), +(28145, 'Asbeïn: From the Life of a Virtuoso', 'Schubin, Ossip', '2011-02-25', 27, 'https://www.gutenberg.org/ebooks/35396', 'en', 1949), +(28146, 'Húsabætur á sveitabæjum: Uppdrættir og áætlanir', 'Jón Sveinsson', '2006-11-29', 14, 'https://www.gutenberg.org/ebooks/19960', 'is', 11405), +(28147, 'The Head of the House of Coombe', 'Burnett, Frances Hodgson', '2004-09-01', 52, 'https://www.gutenberg.org/ebooks/6491', 'en', 1902), +(28148, 'The Star-Gazers', 'Fenn, George Manville', '2010-11-08', 8, 'https://www.gutenberg.org/ebooks/34244', 'en', 61), +(28149, 'Tanglewood Tales', 'Hawthorne, Nathaniel', '1997-07-01', 296, 'https://www.gutenberg.org/ebooks/976', 'en', 8821), +(28150, 'On the Plantation: A Story of a Georgia Boy\'s Adventures during the War', 'Harris, Joel Chandler', '2015-12-15', 25, 'https://www.gutenberg.org/ebooks/50701', 'en', 173), +(28151, 'The Lady Evelyn: A Story of To-day', 'Pemberton, Max', '2011-07-23', 18, 'https://www.gutenberg.org/ebooks/35336', 'en', 61), +(28152, 'Jugurtha', 'Sallust', '2009-08-23', 18, 'https://www.gutenberg.org/ebooks/29769', 'fi', 11406), +(28153, 'Myths and Legends of Ancient Greece and Rome', 'Berens, E. M.', '2007-08-23', 1215, 'https://www.gutenberg.org/ebooks/22381', 'en', 11407), +(28154, 'Pankinjohtajan tytär: Romaani Suomen suurlakon ajalta', 'Anttila, Selma', '2016-04-06', 17, 'https://www.gutenberg.org/ebooks/51673', 'fi', 456), +(28155, 'Tangled Trails: A Western Detective Story', 'Raine, William MacLeod', '2005-11-14', 59, 'https://www.gutenberg.org/ebooks/17066', 'en', 128), +(28156, 'The Mothers Of Honoré\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 8, 'https://www.gutenberg.org/ebooks/23253', 'en', 1426), +(28157, 'The Law of the Land\r\nOf Miss Lady, Whom It Involved in Mystery, and of John Eddring, Gentleman of the South, Who Read Its Deeper Meaning: A Novel', 'Hough, Emerson', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6431', 'en', 6156), +(28158, 'Douze ans de séjour dans la Haute-Éthiopie', 'Abbadie, Arnauld d\'', '2006-07-12', 110, 'https://www.gutenberg.org/ebooks/18812', 'fr', 1936), +(28159, 'Schetsen uit Amerika en Tafereelen uit Italië', 'Dickens, Charles', '2014-12-20', 12, 'https://www.gutenberg.org/ebooks/47716', 'nl', 1110), +(28160, 'Souvenirs d\'une actrice (3/3)', 'Fusil, Louise', '2008-09-28', 10, 'https://www.gutenberg.org/ebooks/26721', 'fr', 5208), +(28161, 'A General History and Collection of Voyages and Travels — Volume 04\r\nArranged in Systematic Order: Forming a Complete History of the Origin and Progress of Navigation, Discovery, and Commerce, by Sea and Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12514', 'en', 885), +(28162, 'Magyarok: Elbeszélések', 'Móricz, Zsigmond', '2013-03-05', 21, 'https://www.gutenberg.org/ebooks/42264', 'hu', 189), +(28163, 'Le IIe livre des masques', 'Gourmont, Remy de', '2005-11-03', 15, 'https://www.gutenberg.org/ebooks/16988', 'fr', 629), +(28164, 'Logic, Inductive and Deductive', 'Minto, William', '2010-03-27', 108, 'https://www.gutenberg.org/ebooks/31796', 'en', 4797), +(28165, 'Sir Walter Raleigh and His Time', 'Kingsley, Charles', '2002-03-01', 22, 'https://www.gutenberg.org/ebooks/3143', 'en', 1953), +(28166, 'Notes and Queries, Number 233, April 15, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-12-10', 11, 'https://www.gutenberg.org/ebooks/30644', 'en', 105), +(28167, 'The Boy Life of Napoleon, Afterwards Emperor of the French', 'Foa, Eugénie', '2004-09-07', 22, 'https://www.gutenberg.org/ebooks/9479', 'en', 11408), +(28168, 'Biografia di Giuseppe Garibaldi', 'Cuneo, Gian Battista', '2017-03-08', 19, 'https://www.gutenberg.org/ebooks/54301', 'it', 488), +(28169, 'Lumber Legal Opinions', NULL, '2019-08-18', 238, 'https://www.gutenberg.org/ebooks/60134', 'en', 11409), +(28170, 'Vegetable Dyes: Being a Book of Recipes and Other Information Useful to the Dyer', 'Mairet, Ethel', '2007-12-30', 81, 'https://www.gutenberg.org/ebooks/24076', 'en', 11410), +(28171, 'Radio Program for WAAM, Newark, New Jersey', NULL, '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10243', 'en', 11411), +(28172, 'The Book of the Homeless (Le livre des sans-foyer)', NULL, '2018-07-27', 217, 'https://www.gutenberg.org/ebooks/57584', 'en', 335), +(28173, 'The Life of John Marshall, Volume 4: The building of the nation, 1815-1835', 'Beveridge, Albert J. (Albert Jeremiah)', '2012-08-19', 17, 'https://www.gutenberg.org/ebooks/40533', 'en', 3754), +(28174, 'The Woman & the Priest', 'Deledda, Grazia', '2017-01-08', 13, 'https://www.gutenberg.org/ebooks/53918', 'en', 16), +(28175, 'Frank Merriwell\'s Alarm; Or, Doing His Best', 'Standish, Burt L.', '2011-12-28', 20, 'https://www.gutenberg.org/ebooks/38429', 'en', 11412), +(28176, 'The Golden Fleece: A Romance', 'Hawthorne, Julian', '1999-01-01', 13, 'https://www.gutenberg.org/ebooks/1614', 'en', 770), +(28177, 'Madeleine', 'Kock, Paul de', '2010-04-24', 10, 'https://www.gutenberg.org/ebooks/32113', 'fr', 61), +(28178, 'Three Men: A Novel', 'Gorky, Maksim', '2018-01-28', 13, 'https://www.gutenberg.org/ebooks/56456', 'en', 1377), +(28179, 'Lectures on Art', 'Allston, Washington', '2004-03-01', 41, 'https://www.gutenberg.org/ebooks/11391', 'en', 787), +(28180, 'Byron\'s Narrative of the Loss of the Wager\r\nWith an account of the great distresses suffered by himself and his companions on the coast of Patagonia from the year 1740 till their arrival in England 1746', 'Byron, John', '2013-11-16', 10, 'https://www.gutenberg.org/ebooks/44193', 'en', 11413), +(28181, 'Encyclopaedia Britannica, 11th Edition, \"Geodesy\" to \"Geometry\"\r\nVolume 11, Slice 6', 'Various', '2011-09-17', 55, 'https://www.gutenberg.org/ebooks/37461', 'en', 1081), +(28182, 'The War of Women, Volume 1', 'Dumas, Alexandre', '2016-09-22', 30, 'https://www.gutenberg.org/ebooks/53124', 'en', 11414), +(28183, 'Allvarsord om allting och ingenting', 'Bülow, Waldemar', '2005-04-29', 28, 'https://www.gutenberg.org/ebooks/15731', 'sv', 6503), +(28184, 'My First Voyage to Southern Seas', 'Kingston, William Henry Giles', '2007-05-16', 15, 'https://www.gutenberg.org/ebooks/21504', 'en', 4321), +(28185, 'Can Such Things Be?', 'Bierce, Ambrose', '2003-08-01', 222, 'https://www.gutenberg.org/ebooks/4366', 'en', 114), +(28186, 'The Riflemen of the Ohio: A Story of the Early Days along \"The Beautiful River\"', 'Altsheler, Joseph A. (Joseph Alexander)', '2008-07-07', 23, 'https://www.gutenberg.org/ebooks/25998', 'en', 6477), +(28187, 'Mental Philosophy: Including the Intellect, Sensibilities, and Will', 'Haven, Joseph', '2014-02-28', 35, 'https://www.gutenberg.org/ebooks/45041', 'en', 1151), +(28188, 'The Book of the Aquarium and Water Cabinet\r\nor Practical Instructions on the Formation, Stocking, and Mangement, in all Seasons, of Collections of Fresh Water and Marine Life', 'Hibberd, Shirley', '2012-09-07', 21, 'https://www.gutenberg.org/ebooks/40701', 'en', 11415), +(28189, 'The Recruit', 'Balzac, Honoré de', '2005-07-13', 39, 'https://www.gutenberg.org/ebooks/1426', 'en', 58), +(28190, 'A Girl of the Commune', 'Henty, G. A. (George Alfred)', '2008-01-11', 61, 'https://www.gutenberg.org/ebooks/24244', 'en', 11416), +(28191, 'By-Ways of Bombay', 'Edwardes, S. M. (Stephen Meredyth)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10071', 'en', 11417), +(28192, 'Les Cinq Cents Millions De La Bégum', 'Verne, Jules', '2004-01-01', 51, 'https://www.gutenberg.org/ebooks/4968', 'fr', 3458), +(28193, 'Honeycomb: Pilgrimage, Volume 3', 'Richardson, Dorothy M. (Dorothy Miller)', '2018-03-01', 23, 'https://www.gutenberg.org/ebooks/56664', 'en', 2019); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(28194, 'Dotty Dimple At Home', 'May, Sophie', '2008-05-08', 18, 'https://www.gutenberg.org/ebooks/25396', 'en', 195), +(28195, 'The Book', 'Shaara, Michael', '2010-05-10', 56, 'https://www.gutenberg.org/ebooks/32321', 'en', 179), +(28196, 'Statement of the Provision for the Poor, and of the Condition of the Labouring Classes in a Considerable Portion of America and Europe\r\nBeing the preface to the foreign communications contained in the appendix to the Poor-Law Report', 'Senior, Nassau William', '2016-10-18', 8, 'https://www.gutenberg.org/ebooks/53316', 'en', 11418), +(28197, 'Rainbow\'s End', 'Beach, Rex', '2004-02-01', 28, 'https://www.gutenberg.org/ebooks/5086', 'en', 11419), +(28198, 'Sentiment, Inc.', 'Anderson, Poul', '2011-10-07', 97, 'https://www.gutenberg.org/ebooks/37653', 'en', 109), +(28199, 'Diary of Samuel Pepys — Volume 33: January/February 1664-65', 'Pepys, Samuel', '2004-11-30', 6, 'https://www.gutenberg.org/ebooks/4154', 'en', 2197), +(28200, 'Household Administration, Its Place in the Higher Education of Women', NULL, '2011-07-19', 26, 'https://www.gutenberg.org/ebooks/36781', 'en', 3605), +(28201, 'The Cabots and the Discovery of America\r\nWith a Brief Description and History of Brandon Hill, the Site of the Cabot Memorial Tower', 'Hodges, Elizabeth, active 1895-1897', '2014-03-31', 12, 'https://www.gutenberg.org/ebooks/45273', 'en', 11420), +(28202, 'The Underworld\nThe Story of Robert Sinclair, Miner', 'Welsh, James C.', '2005-03-30', 15, 'https://www.gutenberg.org/ebooks/15503', 'en', 11421), +(28203, 'The Gorilla Hunters', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 45, 'https://www.gutenberg.org/ebooks/21736', 'en', 11422), +(28204, 'Búhay na Pinagdaanan ni Juan Tamad na Anac ni Fabio at ni Sofia\r\nSa Caharian nang Portugal, na Hinañgo sa Novela', 'Anonymous', '2005-07-29', 17, 'https://www.gutenberg.org/ebooks/16386', 'tl', 11423), +(28205, 'Third Reader: The Alexandra Readers', 'McIntyre, W. A. (William Albert)', '2016-03-14', 10, 'https://www.gutenberg.org/ebooks/51441', 'en', 294), +(28206, 'Over Here: Impressions of America by a British officer', 'MacQuarrie, Hector', '2011-01-28', 13, 'https://www.gutenberg.org/ebooks/35104', 'en', 6389), +(28207, 'Our Legal Heritage : 600-1776 King Aethelbert - King George III', 'Reilly, S. A.', '2004-10-01', 15, 'https://www.gutenberg.org/ebooks/6603', 'en', 6471), +(28208, 'Elsket and Other Stories', 'Page, Thomas Nelson', '2014-12-03', 18, 'https://www.gutenberg.org/ebooks/47524', 'en', 112), +(28209, 'La chair et le sang', 'Mauriac, François', '2015-12-02', 31, 'https://www.gutenberg.org/ebooks/50593', 'fr', 2118), +(28210, 'The Slant Book', 'Newell, Peter', '2005-12-08', 32, 'https://www.gutenberg.org/ebooks/17254', 'en', 5509), +(28211, 'The Belovéd Vagabond', 'Locke, William John', '2009-04-04', 47, 'https://www.gutenberg.org/ebooks/28489', 'en', 11424), +(28212, 'The Dead Are Silent\n1907', 'Schnitzler, Arthur', '2007-10-17', 30, 'https://www.gutenberg.org/ebooks/23061', 'en', 6360), +(28213, 'The Red Window', 'Hume, Fergus', '2013-02-09', 11, 'https://www.gutenberg.org/ebooks/42056', 'en', 167), +(28214, 'Their Silver Wedding Journey — Volume 1', 'Howells, William Dean', '2004-10-23', 23, 'https://www.gutenberg.org/ebooks/3371', 'en', 2035), +(28215, 'The Divine Comedy by Dante, Illustrated, Paradise, Complete', 'Dante Alighieri', '2004-08-02', 522, 'https://www.gutenberg.org/ebooks/8799', 'en', 365), +(28216, 'A Spelling-Book for Advanced Classes', 'Optic, Oliver', '2008-09-03', 13, 'https://www.gutenberg.org/ebooks/26513', 'en', 7396), +(28217, 'Le nabab, tome I', 'Daudet, Alphonse', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12726', 'fr', 3075), +(28218, 'L\'Illustration, No. 3265, 23 Septembre 1905', 'Various', '2011-04-23', 3, 'https://www.gutenberg.org/ebooks/35938', 'fr', 150), +(28219, 'A Little Queen of Hearts: An International Story', 'Ogden, Ruth', '2017-02-26', 8, 'https://www.gutenberg.org/ebooks/54133', 'en', 1889), +(28220, 'Zero Hour', 'Blade, Alexander', '2009-11-14', 53, 'https://www.gutenberg.org/ebooks/30476', 'en', 26), +(28221, 'La trasformazione sociale\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Nitti, Francesco Saverio', '2013-07-10', 10, 'https://www.gutenberg.org/ebooks/43184', 'it', 5931), +(28222, 'Queen Anna\'s New World of Words; or, Dictionarie of the Italian and English Tongues', 'Florio, John', '2017-12-18', 35, 'https://www.gutenberg.org/ebooks/56200', 'en', 11425), +(28223, 'The Unlearned', 'Jones, Raymond F.', '2010-06-08', 26, 'https://www.gutenberg.org/ebooks/32745', 'en', 26), +(28224, 'Anarchy', 'Malatesta, Errico', '2012-07-28', 41, 'https://www.gutenberg.org/ebooks/40365', 'en', 11063), +(28225, 'The Meadow-Brook Girls Under Canvas; Or, Fun and Frolic in the Summer Camp', 'Aldridge, Janet', '2005-02-03', 30, 'https://www.gutenberg.org/ebooks/14889', 'en', 2760), +(28226, 'The Children of the World', 'Heyse, Paul', '2010-09-10', 31, 'https://www.gutenberg.org/ebooks/33697', 'en', 803), +(28227, 'A Reading of Life, with Other Poems', 'Meredith, George', '1997-09-01', 8, 'https://www.gutenberg.org/ebooks/1042', 'en', 54), +(28228, 'José Estevão\n(Edição do centenario)', 'Sousa, Eduardo de', '2008-02-15', 17, 'https://www.gutenberg.org/ebooks/24620', 'pt', 9597), +(28229, 'Nights of Gladness: Waltz', 'National Promenade Band', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/10415', 'en', 5539), +(28230, 'Precipitations', 'Scott, Evelyn', '2003-10-01', 11, 'https://www.gutenberg.org/ebooks/4530', 'en', 994), +(28231, 'Redskin and Cow-Boy: A Tale of the Western Plains', 'Henty, G. A. (George Alfred)', '2014-05-08', 49, 'https://www.gutenberg.org/ebooks/45617', 'en', 4365), +(28232, 'The Mathematical Theory of Relativity', 'Eddington, Arthur Stanley, Sir', '2019-04-11', 172, 'https://www.gutenberg.org/ebooks/59248', 'en', 2846), +(28233, 'London River', 'Tomlinson, H. M. (Henry Major)', '2005-02-25', 16, 'https://www.gutenberg.org/ebooks/15167', 'en', 11426), +(28234, 'Fragments of Two Centuries: Glimpses of Country Life when George III. was King', 'Kingston, Alfred', '2007-05-08', 8, 'https://www.gutenberg.org/ebooks/21352', 'en', 10904), +(28235, 'The Hill: A Romance of Friendship', 'Vachell, Horace Annesley', '2007-01-04', 9, 'https://www.gutenberg.org/ebooks/20280', 'en', 1655), +(28236, 'Eclectic Magazine of Foreign Literature, Science, and Art, May 1885', 'Various', '2016-12-20', 3, 'https://www.gutenberg.org/ebooks/53772', 'en', 380), +(28237, 'Digital PDP15 Price List, April, 1970', 'Digital Equipment Corporation', '2011-08-28', 16, 'https://www.gutenberg.org/ebooks/37237', 'en', 11427), +(28238, 'The Weavers: a tale of England and Egypt of fifty years ago - Complete', 'Parker, Gilbert', '2004-11-18', 26, 'https://www.gutenberg.org/ebooks/6267', 'en', 9577), +(28239, 'Halbtier: Roman', 'Böhlau, Helene', '2014-10-18', 15, 'https://www.gutenberg.org/ebooks/47140', 'de', 253), +(28240, 'Runoelmia 2', 'Brummer, F. F.', '2009-01-26', 8, 'https://www.gutenberg.org/ebooks/27899', 'fi', 1171), +(28241, 'Christmas Tales and Christmas Verse', 'Field, Eugene', '2006-01-29', 21, 'https://www.gutenberg.org/ebooks/17630', 'en', 585), +(28242, 'I primi due secoli della storia di Firenze, v. 2', 'Villari, Pasquale', '2015-05-11', 14, 'https://www.gutenberg.org/ebooks/48934', 'it', 3000), +(28243, 'Journeys Through Bookland, Vol. 7', 'Sylvester, Charles Herbert', '2007-11-07', 23, 'https://www.gutenberg.org/ebooks/23405', 'en', 19), +(28244, 'Charles Sumner: his complete works, volume 20 (of 20)', 'Sumner, Charles', '2016-01-24', 6, 'https://www.gutenberg.org/ebooks/51025', 'en', 429), +(28245, 'A Little Pilgrimage in Italy', 'Potter, Olave M. (Olave Muriel)', '2014-06-24', 30, 'https://www.gutenberg.org/ebooks/46092', 'en', 1896), +(28246, 'Quo Vadis (Πού πηγαίνεις): Μυθιστόρημα της Νερωνικής Εποχής', 'Sienkiewicz, Henryk', '2011-03-12', 18, 'https://www.gutenberg.org/ebooks/35560', 'el', 4407), +(28247, 'A Victorious Union', 'Optic, Oliver', '2006-06-25', 18, 'https://www.gutenberg.org/ebooks/18678', 'en', 491), +(28248, 'Martin Rattler', 'Ballantyne, R. M. (Robert Michael)', '2004-08-25', 12, 'https://www.gutenberg.org/ebooks/13290', 'en', 1096), +(28249, 'Rough Ways Made Smooth: A series of familiar essays on scientific subjects', 'Proctor, Richard A. (Richard Anthony)', '2017-04-17', 13, 'https://www.gutenberg.org/ebooks/54557', 'en', 814), +(28250, 'L\'Aiglon', 'Rostand, Edmond', '2009-09-17', 18, 'https://www.gutenberg.org/ebooks/30012', 'en', 11428), +(28251, 'Insurgent Mexico', 'Reed, John', '2015-01-29', 51, 'https://www.gutenberg.org/ebooks/48108', 'en', 11429), +(28252, 'The Sexual Question\nA Scientific, psychological, hygienic and sociological study', 'Forel, Auguste', '2009-09-04', 73, 'https://www.gutenberg.org/ebooks/29903', 'en', 3052), +(28253, 'Supplément à la Correspondance Diplomatique de Bertrand de Salignac de La Mothe Fénélon, Tome Septième\nAmbassadeur de France en Angleterre de 1568 à 1575', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2013-03-29', 37, 'https://www.gutenberg.org/ebooks/42432', 'fr', 7548), +(28254, 'A Journey through Persia, Armenia, and Asia Minor, to Constantinople, in the Years 1808 and 1809\nIn Which is Included, Some Account of the Proceedings of His Majesty\'s Mission, under Sir Harford Jones, Bart. K. C. to the Court of Persia', 'Morier, James Justinian', '2016-04-21', 13, 'https://www.gutenberg.org/ebooks/51819', 'en', 11430), +(28255, 'The Parenticide Club', 'Bierce, Ambrose', '2003-02-01', 77, 'https://www.gutenberg.org/ebooks/3715', 'en', 11431), +(28256, 'The Book of Stories for the Story-teller', 'Coe, Fanny E.', '2008-08-03', 10, 'https://www.gutenberg.org/ebooks/26177', 'en', 5019), +(28257, 'Het Granaatappelhuis', 'Wilde, Oscar', '2017-09-04', 13, 'https://www.gutenberg.org/ebooks/55485', 'nl', 1007), +(28258, 'The Nuttall Encyclopædia\r\nBeing a Concise and Comprehensive Dictionary of General Knowledge', 'Nuttall, P. Austin', '2004-05-01', 90, 'https://www.gutenberg.org/ebooks/12342', 'en', 1081), +(28259, 'The Adventures of Kathlyn', 'MacGrath, Harold', '2005-12-27', 15, 'https://www.gutenberg.org/ebooks/17402', 'en', 61), +(28260, 'A Writer\'s Recollections — Volume 2', 'Ward, Humphry, Mrs.', '2006-02-01', 18, 'https://www.gutenberg.org/ebooks/9821', 'en', 5826), +(28261, 'The Bishop of Cottontown: A Story of the Southern Cotton Mills', 'Moore, John Trotwood', '2007-11-26', 20, 'https://www.gutenberg.org/ebooks/23637', 'en', 1958), +(28262, 'The Bobbsey Twins at Snow Lodge', 'Hope, Laura Lee', '2004-07-01', 48, 'https://www.gutenberg.org/ebooks/6055', 'en', 31), +(28263, 'The Messiah in Moses and the Prophets', 'Lord, Eleazar', '2010-12-18', 37, 'https://www.gutenberg.org/ebooks/34680', 'en', 4149), +(28264, 'For Love of a Bedouin Maid', 'Voleur', '2014-11-16', 14, 'https://www.gutenberg.org/ebooks/47372', 'en', 4854), +(28265, 'Seven English Cities', 'Howells, William Dean', '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/7187', 'en', 2364), +(28266, 'Blacker\'s Art of Fly Making, &c.\r\nComprising Angling, & Dyeing of Colours, with Engravings of Salmon & Trout Flies', 'Blacker, W. (William)', '2011-04-02', 45, 'https://www.gutenberg.org/ebooks/35752', 'en', 1945), +(28267, 'Footprints of the Red Men\r\nIndian geographical names in the valley of Hudson\'s river, the valley of the Mohawk, and on the Delaware: their location and the probable meaning of some of them.', 'Ruttenber, Edward Manning', '2016-02-14', 11, 'https://www.gutenberg.org/ebooks/51217', 'en', 11114), +(28268, 'Evangelists of Art: Picture-Sermons for Children', 'Patrick, James', '2009-12-02', 5, 'https://www.gutenberg.org/ebooks/30220', 'en', 2248), +(28269, 'The American Goliah', 'Anonymous', '2004-11-01', 14, 'https://www.gutenberg.org/ebooks/6869', 'en', 11432), +(28270, 'E-mail 101', 'Goodwin, John E.', '1993-07-01', 217, 'https://www.gutenberg.org/ebooks/75', 'en', 11433), +(28271, 'The Leopard\'s Spots: A Romance of the White Man\'s Burden—1865-1900', 'Dixon, Thomas, Jr.', '2017-05-23', 34, 'https://www.gutenberg.org/ebooks/54765', 'en', 793), +(28272, 'Path Flower, and Other Verses', 'Dargan, Olive Tilford', '2008-11-20', 12, 'https://www.gutenberg.org/ebooks/27297', 'en', 178), +(28273, 'Girl Scouts in the Adirondacks', 'Roy, Lillian Elizabeth', '2008-08-18', 20, 'https://www.gutenberg.org/ebooks/26345', 'en', 2287), +(28274, 'How to Live: Rules for Healthful Living Based on Modern Science', 'Fisher, Irving', '2006-10-21', 40, 'https://www.gutenberg.org/ebooks/19598', 'en', 295), +(28275, 'The Wolf Hunters: A Tale of Adventure in the Wilderness', 'Curwood, James Oliver', '2004-04-01', 52, 'https://www.gutenberg.org/ebooks/12170', 'en', 11434), +(28276, 'Under St Paul\'s: A Romance', 'Dowling, Richard', '2013-04-26', 8, 'https://www.gutenberg.org/ebooks/42600', 'en', 109), +(28277, 'The Blue Moon', 'Housman, Laurence', '2002-11-01', 22, 'https://www.gutenberg.org/ebooks/3527', 'en', 1007), +(28278, 'A Comparative View of the Mortality of the Human Species, at All Ages\r\nAnd of the Diseases and Casualties by Which They Are Destroyed or Annoyed. Illustrated With Charts and Tables', 'Black, William', '2019-07-02', 71, 'https://www.gutenberg.org/ebooks/59846', 'en', 11435), +(28279, 'Dorothy Page', 'Hatcher, Eldridge B. (Eldridge Burwell)', '2010-05-28', 11, 'https://www.gutenberg.org/ebooks/32577', 'en', 942), +(28280, 'The New Life (La Vita Nuova)', 'Dante Alighieri', '2012-10-17', 267, 'https://www.gutenberg.org/ebooks/41085', 'en', 6949), +(28281, 'Paras vihollinen\n\"Setä Pitkäsäären\" jatkoa', 'Webster, Jean', '2017-11-22', 9, 'https://www.gutenberg.org/ebooks/56032', 'fi', 264), +(28282, 'O credito agricola em Portugal', 'Lima, Jaime de Magalhães', '2008-01-23', 10, 'https://www.gutenberg.org/ebooks/24412', 'pt', 11436), +(28283, 'Beacon Lights of History, Volume 08: Great Rulers', 'Lord, John', '2004-01-01', 38, 'https://www.gutenberg.org/ebooks/10627', 'en', 7868), +(28284, 'My Experiences in Manipur and the Naga Hills', 'Johnstone, James, Sir', '2011-10-24', 64, 'https://www.gutenberg.org/ebooks/37839', 'en', 11437), +(28285, 'Breeding minks in Louisiana for their fur: A profitable industry', 'Elfer, William André', '2012-07-07', 5, 'https://www.gutenberg.org/ebooks/40157', 'en', 11438), +(28286, 'Index of the Project Gutenberg Works of Ralph Waldo Emerson', 'Emerson, Ralph Waldo', '2019-03-01', 21, 'https://www.gutenberg.org/ebooks/58994', 'en', 198), +(28287, 'In Defense of Women', 'Mencken, H. L. (Henry Louis)', '1998-04-01', 132, 'https://www.gutenberg.org/ebooks/1270', 'en', 11439), +(28288, 'Nautilus', 'Richards, Laura Elizabeth Howe', '2005-03-13', 17, 'https://www.gutenberg.org/ebooks/15355', 'en', 751), +(28289, 'James Watt und die Erfindung der Dampfmaschine', 'Biedenkapp, Georg', '2016-07-03', 20, 'https://www.gutenberg.org/ebooks/52492', 'de', 7873), +(28290, 'Songs of Innocence, and Songs of Experience', 'Blake, William', '2007-04-24', 14, 'https://www.gutenberg.org/ebooks/21160', 'en', 3947), +(28291, 'The Flaming Forest', 'Curwood, James Oliver', '2003-12-01', 48, 'https://www.gutenberg.org/ebooks/4702', 'en', 551), +(28292, 'Guilds in the Middle Ages', 'Renard, Georges François', '2014-04-17', 15, 'https://www.gutenberg.org/ebooks/45425', 'en', 11440), +(28293, 'The Devil\'s Elixir, Vol. 2 (of 2)', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2011-08-08', 39, 'https://www.gutenberg.org/ebooks/37005', 'en', 428), +(28294, 'Chippinge Borough', 'Weyman, Stanley John', '2012-02-13', 51, 'https://www.gutenberg.org/ebooks/38871', 'en', 1238), +(28295, 'Introduction à la vie dévote', 'Francis, de Sales, Saint', '2016-11-17', 22, 'https://www.gutenberg.org/ebooks/53540', 'fr', 11441), +(28296, 'L\'île mystérieuse', 'Verne, Jules', '2004-12-07', 135, 'https://www.gutenberg.org/ebooks/14287', 'fr', 26), +(28297, 'Theocritus, translated into English Verse', 'Theocritus', '2004-03-01', 75, 'https://www.gutenberg.org/ebooks/11533', 'en', 1930), +(28298, 'Federal Bureau of Investigation FOIA Documents - Unidentified Flying Objects', 'United States. Federal Bureau of Investigation', '2008-06-05', 31, 'https://www.gutenberg.org/ebooks/25706', 'en', 7726), +(28299, 'Mabel: A Novel. Vol. 3 (of 3)', 'Newby, C. J., Mrs.', '2012-04-03', 6, 'https://www.gutenberg.org/ebooks/39359', 'en', 61), +(28300, 'Brooks\'s Readers: First Year', 'Brooks, Stratton D. (Stratton Duluth)', '2012-10-30', 17, 'https://www.gutenberg.org/ebooks/41243', 'en', 1019), +(28301, 'Der Dichter in Dollarica', 'Wolzogen, Ernst von', '2012-08-01', 10, 'https://www.gutenberg.org/ebooks/40391', 'de', 8460), +(28302, 'The Origin and Development of the Quantum Theory', 'Planck, Max', '2010-09-07', 97, 'https://www.gutenberg.org/ebooks/33663', 'en', 11442), +(28303, 'The History of Duelling. Vol. 1 (of 2)', 'Millingen, J. G. (John Gideon)', '2018-06-14', 23, 'https://www.gutenberg.org/ebooks/57326', 'en', 2823), +(28304, 'The Problem of \'Edwin Drood\': A Study in the Methods of Dickens', 'Nicoll, W. Robertson (William Robertson), Sir', '2011-06-03', 7, 'https://www.gutenberg.org/ebooks/36311', 'en', 11443), +(28305, 'The Autobiography of Goethe\nTruth and Poetry: From My Own Life', 'Goethe, Johann Wolfgang von', '2016-07-26', 88, 'https://www.gutenberg.org/ebooks/52654', 'en', 11444), +(28306, 'Scientific American Supplement, No. 841, February 13, 1892', 'Various', '2005-02-27', 229, 'https://www.gutenberg.org/ebooks/15193', 'en', 210), +(28307, 'The History of England, from the Accession of James II, Volume 1, Chapter 02', 'Macaulay, Thomas Babington Macaulay, Baron', '2007-01-05', 4, 'https://www.gutenberg.org/ebooks/20274', 'en', 3001), +(28308, 'Scientific American Supplement, No. 470, January 3, 1885', 'Various', '2004-11-14', 30, 'https://www.gutenberg.org/ebooks/14041', 'en', 210), +(28309, 'The Dolls on Dress Parade', 'Preston, Effa E. (Effa Estelle)', '2016-12-22', 8, 'https://www.gutenberg.org/ebooks/53786', 'en', 364), +(28310, 'Nabul, Our Little Egyptian Cousin', 'McManus, Blanche', '2014-01-23', 18, 'https://www.gutenberg.org/ebooks/44731', 'en', 11445), +(28311, 'The Memoirs of Count Grammont — Complete', 'Hamilton, Anthony, Count', '2004-10-27', 34, 'https://www.gutenberg.org/ebooks/5416', 'en', 10650), +(28312, 'Cottontail Rabbits in Relation to Trees and Farm Crops', 'Lantz, David E. (David Ernest)', '2010-11-25', 25, 'https://www.gutenberg.org/ebooks/34446', 'en', 11446), +(28313, 'No Defense, Volume 2.', 'Parker, Gilbert', '2004-08-01', 4, 'https://www.gutenberg.org/ebooks/6293', 'en', 61), +(28314, 'The Dwindling Years', 'Del Rey, Lester', '2015-10-01', 82, 'https://www.gutenberg.org/ebooks/50103', 'en', 11447), +(28315, 'Birds in the Bush', 'Torrey, Bradford', '2009-02-07', 13, 'https://www.gutenberg.org/ebooks/28019', 'en', 318), +(28316, 'Anna ystävämme', 'Montgomery, L. M. (Lucy Maud)', '2015-08-29', 11, 'https://www.gutenberg.org/ebooks/49812', 'fi', 3705), +(28317, 'The History of the American Expedition Fighting the Bolsheviki\nCampaigning in North Russia 1918-1919', 'Mead, Harry H.', '2007-09-05', 156, 'https://www.gutenberg.org/ebooks/22523', 'en', 11448), +(28318, 'The Going of the White Swan', 'Parker, Gilbert', '2005-09-18', 5, 'https://www.gutenberg.org/ebooks/16716', 'en', 65), +(28319, 'With the World\'s Great Travellers, Volume 1', NULL, '2010-04-07', 115, 'https://www.gutenberg.org/ebooks/31908', 'en', 885), +(28320, 'Manual of Taxidermy\nA Complete Guide in Collecting and Preserving Birds and Mammals', 'Maynard, C. J. (Charles Johnson)', '2014-06-21', 24, 'https://www.gutenberg.org/ebooks/46066', 'en', 2132), +(28321, 'The Radio Boys at Ocean Point; Or, The Message that Saved the Ship', 'Chapman, Allen', '2011-03-17', 21, 'https://www.gutenberg.org/ebooks/35594', 'en', 3343), +(28322, '列子', 'Liezi, active 4th century B.C.', '2005-01-01', 28, 'https://www.gutenberg.org/ebooks/7341', 'zh', 11449), +(28323, 'Zalacaín El Aventurero\r\n(Historia de las buenas andanzas y fortunas de Martín Zalacaín el Aventurero)', 'Baroja, Pío', '2004-08-23', 81, 'https://www.gutenberg.org/ebooks/13264', 'es', 11450), +(28324, 'The Brother of Daphne', 'Yates, Dornford', '1996-12-01', 48, 'https://www.gutenberg.org/ebooks/748', 'en', 637), +(28325, 'Heroes of To-Day', 'Parkman, Mary Rosetta', '2015-01-16', 21, 'https://www.gutenberg.org/ebooks/47988', 'en', 414), +(28326, 'The Trail to Yesterday', 'Seltzer, Charles Alden', '2008-10-26', 23, 'https://www.gutenberg.org/ebooks/27051', 'en', 315), +(28327, 'Hasisadra\'s Adventure\r\nEssay #7 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 23, 'https://www.gutenberg.org/ebooks/2633', 'en', 814), +(28328, 'The Verner Raven, The Count of Vendel\'s Daughter, and Other Ballads', 'Borrow, George', '2009-05-15', 8, 'https://www.gutenberg.org/ebooks/28825', 'en', 4390), +(28329, 'Chinese Diamonds for the King of Kings', 'Goforth, Rosalind', '2013-08-19', 9, 'https://www.gutenberg.org/ebooks/43514', 'en', 9734), +(28330, 'The Bible, Douay-Rheims, Book 09: 1 Kings\r\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8309', 'en', 5806), +(28331, 'Stories by American Authors, Volume 7', 'Various', '2010-01-31', 13, 'https://www.gutenberg.org/ebooks/31134', 'en', 112), +(28332, 'Laurence Sterne in Germany\nA Contribution to the Study of the Literary Relations of\nEngland and Germany in the Eighteenth Century', 'Hewett-Thayer, Harvey W. (Harvey Waterman)', '2008-08-03', 26, 'https://www.gutenberg.org/ebooks/26183', 'en', 11451), +(28333, 'The Black Lion Inn', 'Lewis, Alfred Henry', '2017-08-31', 25, 'https://www.gutenberg.org/ebooks/55471', 'en', 112), +(28334, 'The Honeymoon: A comedy in three acts', 'Bennett, Arnold', '2015-10-28', 14, 'https://www.gutenberg.org/ebooks/50331', 'en', 907), +(28335, 'The Baron\'s Sons: A Romance of the Hungarian Revolution of 1848', 'Jókai, Mór', '2010-12-16', 85, 'https://www.gutenberg.org/ebooks/34674', 'en', 11452), +(28336, 'Yorkshire Oddities, Incidents, and Strange Events', 'Baring-Gould, S. (Sabine)', '2014-11-17', 92, 'https://www.gutenberg.org/ebooks/47386', 'en', 11453), +(28337, 'Mrs. Hale\'s Receipts for the Million\r\nContaining Four Thousand Five Hundred and Forty-five Receipts, Facts, Directions, etc. in the Useful, Ornamental, and Domestic Arts', 'Hale, Sarah Josepha Buell', '2014-07-12', 36, 'https://www.gutenberg.org/ebooks/46254', 'en', 3407), +(28338, 'Sur la pierre blanche', 'France, Anatole', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/7173', 'fr', 687), +(28339, 'A Love Story Reversed\n1898', 'Bellamy, Edward', '2007-09-21', 13, 'https://www.gutenberg.org/ebooks/22711', 'en', 770), +(28340, 'Pot-Bouille', 'Zola, Émile', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8907', 'fr', 2373), +(28341, 'The Nursery, No. 107, November, 1875, Vol. XVIII.\nA Monthly Magazine for Youngest Readers', 'Various', '2005-08-13', 18, 'https://www.gutenberg.org/ebooks/16524', 'en', 4641), +(28342, 'The Memoirs of General Baron de Marbot', 'Marbot, Jean-Baptiste-Antoine-Marcelin, baron de', '2000-11-01', 67, 'https://www.gutenberg.org/ebooks/2401', 'en', 3630), +(28343, 'The Days of Auld Lang Syne', 'Maclaren, Ian', '2013-09-15', 20, 'https://www.gutenberg.org/ebooks/43726', 'en', 179), +(28344, 'The Return of Tarzan', 'Burroughs, Edgar Rice', '1993-09-01', 579, 'https://www.gutenberg.org/ebooks/81', 'en', 323), +(28345, 'El Tesoro de Gastón: Novela', 'Pardo Bazán, Emilia, condesa de', '2017-05-26', 26, 'https://www.gutenberg.org/ebooks/54791', 'es', 1353), +(28346, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 10\r\nPrince Otto Von Bismarck, Count Helmuth Von Moltke, Ferdinand Lassalle', NULL, '2004-07-30', 53, 'https://www.gutenberg.org/ebooks/13056', 'en', 652), +(28347, '張載集', 'Zhang, Zai', '2008-11-15', 11, 'https://www.gutenberg.org/ebooks/27263', 'zh', 1493), +(28348, 'Abroad with the Jimmies', 'Bell, Lilian', '2004-04-01', 38, 'https://www.gutenberg.org/ebooks/12184', 'en', 1408), +(28349, 'The English Peasantry and the Enclosure of Common Fields', 'Slater, Gilbert', '2017-09-27', 16, 'https://www.gutenberg.org/ebooks/55643', 'en', 11454), +(28350, 'Bride of the Dark One', 'Brown, Florence Verbell', '2010-02-17', 28, 'https://www.gutenberg.org/ebooks/31306', 'en', 26), +(28351, 'Tape Jockey', 'Leahy, Tom', '2010-05-29', 27, 'https://www.gutenberg.org/ebooks/32583', 'en', 179), +(28352, 'A Son of Perdition: An Occult Romance', 'Hume, Fergus', '2012-10-15', 26, 'https://www.gutenberg.org/ebooks/41071', 'en', 11455), +(28353, 'The Makers and Teachers of Judaism\r\nFrom the Fall of Jerusalem to the Death of Herod the Great', 'Kent, Charles Foster', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11701', 'en', 2181), +(28354, 'Little Folks\nA Magazine for the Young (Date of issue unknown)', 'Various', '2008-05-20', 15, 'https://www.gutenberg.org/ebooks/25534', 'en', 1860), +(28355, 'Vögelchen', 'Zweig, Friderike Maria Burger Winternitz', '2018-05-08', 8, 'https://www.gutenberg.org/ebooks/57114', 'de', 6952), +(28356, 'Tom Swift and His Air Scout; Or, Uncle Sam\'s Mastery of the Sky', 'Appleton, Victor', '1998-04-01', 57, 'https://www.gutenberg.org/ebooks/1284', 'en', 1456), +(28357, 'The pathology of influenza', 'McNamara, Frank P.', '2019-02-24', 5, 'https://www.gutenberg.org/ebooks/58960', 'en', 3851), +(28358, 'The Atlantic Monthly, Volume 20, No. 119, September, 1867\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2010-08-17', 14, 'https://www.gutenberg.org/ebooks/33451', 'en', 1227), +(28359, 'Prairie Gold', 'Iowa Press and Authors\' Club', '2012-06-10', 95, 'https://www.gutenberg.org/ebooks/39957', 'en', 4961), +(28360, 'The Subterranean World', 'Hartwig, G. (Georg)', '2016-07-01', 65, 'https://www.gutenberg.org/ebooks/52466', 'en', 11456), +(28361, 'Tri Noveloj', 'Hawthorne, Nathaniel', '2007-04-20', 10, 'https://www.gutenberg.org/ebooks/21194', 'eo', 50), +(28362, 'The Comstock Club', 'Goodwin, C. C. (Charles Carroll)', '2011-05-16', 16, 'https://www.gutenberg.org/ebooks/36123', 'en', 8152), +(28363, 'The Ocean Wireless Boys on the Pacific', 'Goldfrap, John Henry', '2013-12-24', 17, 'https://www.gutenberg.org/ebooks/44503', 'en', 4471), +(28364, 'Griechischer Frühling', 'Hauptmann, Gerhart', '2018-09-18', 12, 'https://www.gutenberg.org/ebooks/57928', 'de', 4713), +(28365, 'The Inhumanity of Socialism', 'Adams, Edward F. (Edward Francis)', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/5624', 'en', 254), +(28366, 'Give Me Liberty or Give Me Death', 'Henry, Patrick', '2006-12-08', 6, 'https://www.gutenberg.org/ebooks/20046', 'en', 11457), +(28367, 'Invisible Links', 'Lagerlöf, Selma', '2004-12-06', 34, 'https://www.gutenberg.org/ebooks/14273', 'en', 179), +(28368, 'Tratado de Paz, Amistad, Comercio y navegacion entre la Confederación Argentina y la República del Paraguay', 'Paraguay', '2012-02-15', 14, 'https://www.gutenberg.org/ebooks/38885', 'es', 11458), +(28369, 'The Supernatural in the New Testament, Possible, Credible, and Historical\r\nOr, An Examination of the Validity of Some Recent Objections Against Christianity as a Divine Revelation', 'Row, C. A. (Charles Adolphus)', '2014-08-19', 9, 'https://www.gutenberg.org/ebooks/46630', 'en', 11459), +(28370, 'Ilman menestyksettä\nJoulukertomus', 'Dickens, Charles', '2006-11-27', 66, 'https://www.gutenberg.org/ebooks/19934', 'fi', 45), +(28371, 'Sanctuary', 'Wharton, Edith', '2005-02-01', 62, 'https://www.gutenberg.org/ebooks/7517', 'en', 2833), +(28372, 'The Atlantic Monthly, Volume 17, No. 104, June, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-08-22', 10, 'https://www.gutenberg.org/ebooks/22375', 'en', 1227), +(28373, 'The Spy in the Elevator', 'Westlake, Donald E.', '2016-04-07', 43, 'https://www.gutenberg.org/ebooks/51687', 'en', 5886), +(28374, 'The Curious Book of Birds', 'Brown, Abbie Farwell', '2005-06-27', 68, 'https://www.gutenberg.org/ebooks/16140', 'en', 318), +(28375, 'A Little Dinner at Timmins\'s', 'Thackeray, William Makepeace', '2006-03-27', 17, 'https://www.gutenberg.org/ebooks/2859', 'en', 45), +(28376, 'Inger, Östråtin rouva: Viisinäytöksinen murhenäytelmä', 'Ibsen, Henrik', '2005-11-18', 12, 'https://www.gutenberg.org/ebooks/17092', 'fi', 5096), +(28377, 'The Most Bitter Foe of Nations, and the Way to Its Permanent Overthrow', 'White, Andrew Dickson', '2015-12-23', 7, 'https://www.gutenberg.org/ebooks/50755', 'en', 10386), +(28378, 'Cathedral Cities of England', 'Gilbert, George', '2010-11-05', 19, 'https://www.gutenberg.org/ebooks/34210', 'en', 3244), +(28379, 'Sunday Under Three Heads', 'Dickens, Charles', '1997-05-01', 68, 'https://www.gutenberg.org/ebooks/922', 'en', 8776), +(28380, 'Margareeta: Sydämmen säveliä', 'Kianto, Ilmari', '2017-07-30', 8, 'https://www.gutenberg.org/ebooks/55227', 'fi', 1171), +(28381, 'The Golden Silence', 'Williamson, C. N. (Charles Norris)', '2006-08-23', 42, 'https://www.gutenberg.org/ebooks/19108', 'en', 8154), +(28382, 'My Memoirs, Vol. I, 1802 to 1821', 'Dumas, Alexandre', '2015-08-11', 36, 'https://www.gutenberg.org/ebooks/49678', 'en', 9464), +(28383, 'A Hundred and Seventy Chinese Poems', NULL, '2013-03-10', 131, 'https://www.gutenberg.org/ebooks/42290', 'en', 2822), +(28384, 'The Record of Currupira', 'Abernathy, Robert', '2010-03-24', 25, 'https://www.gutenberg.org/ebooks/31762', 'en', 179), +(28385, 'Dick Hamilton\'s Airship; Or, A Young Millionaire in the Clouds', 'Garis, Howard Roger', '2000-02-01', 29, 'https://www.gutenberg.org/ebooks/2065', 'en', 3124), +(28386, 'Round Cape Horn\r\nVoyage of the Passenger-Ship James W. Paige, from Maine to California in the Year 1852', 'Lamson, J. (Joseph)', '2013-07-28', 24, 'https://www.gutenberg.org/ebooks/43342', 'en', 11460), +(28387, 'Miss Bretherton', 'Ward, Humphry, Mrs.', '2004-09-11', 7, 'https://www.gutenberg.org/ebooks/13432', 'en', 61), +(28388, 'Rosin the Beau', 'Richards, Laura Elizabeth Howe', '2008-12-24', 10, 'https://www.gutenberg.org/ebooks/27607', 'en', 1817), +(28389, 'A Broader Mission for Liberal Education\r\nBaccalaureate Address, Delivered in Agricultural College Chapel, Sunday June 9, 1901', 'Worst, John H. (John Henry)', '2007-12-31', 4, 'https://www.gutenberg.org/ebooks/24082', 'en', 11461), +(28390, 'Famous Composers and Their Works, Vol. 2', NULL, '2018-07-23', 4, 'https://www.gutenberg.org/ebooks/57570', 'en', 250), +(28391, 'The Bright Side of Prison Life\nExperience, In Prison and Out, of an Involuntary Soujouner in Rebellion', 'Swiggett, S. A. (Samuel A.)', '2010-06-30', 23, 'https://www.gutenberg.org/ebooks/33035', 'en', 444), +(28392, 'Studies in Wives', 'Lowndes, Marie Belloc', '2012-11-20', 16, 'https://www.gutenberg.org/ebooks/41415', 'en', 11462), +(28393, 'The Fern Lover\'s Companion\nA Guide for the Northeastern States and Canada', 'Tilton, George Henry', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/11365', 'en', 11463), +(28394, 'The Young Bank Messenger', 'Alger, Horatio, Jr.', '2008-04-23', 31, 'https://www.gutenberg.org/ebooks/25150', 'en', 177), +(28395, 'Rakentaja Solness: Kolminäytöksinen murhenäytelmä', 'Ibsen, Henrik', '2014-06-05', 11, 'https://www.gutenberg.org/ebooks/45889', 'fi', 11464), +(28396, 'The Royal Observatory, Greenwich: A Glance at Its History and Work', 'Maunder, E. Walter (Edward Walter)', '2013-11-12', 20, 'https://www.gutenberg.org/ebooks/44167', 'en', 11465), +(28397, 'Text books of art education, v. 2 of 7. Book II, Second Year', 'Froehlich, Hugo B.', '2011-09-21', 18, 'https://www.gutenberg.org/ebooks/37495', 'en', 11466), +(28398, 'The Confessions of Harry Lorrequer — Complete', 'Lever, Charles James', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/5240', 'en', 61), +(28399, 'Runoelmia', 'Goethe, Johann Wolfgang von', '2007-01-22', 21, 'https://www.gutenberg.org/ebooks/20422', 'fi', 8), +(28400, 'Poems, &c. (1790)\r\nWherein It Is Attempted To Describe Certain Views Of Nature And Of Rustic Manners; And Also, To Point Out, In Some Instances, The Different Influence Which The Same Circumstances Produce On Different Characters', 'Baillie, Joanna', '2005-01-06', 11, 'https://www.gutenberg.org/ebooks/14617', 'en', 3947), +(28401, 'Tratado metódico y práctico de Materia Médica y de Terapéutica, tomo primero', 'Espanet, Alexis', '2010-09-25', 17, 'https://www.gutenberg.org/ebooks/33809', 'es', 2911), +(28402, 'Is This Your Likeness? A Scriptural Definition of Hypocrisy and Sincerity', 'Church, J. (John)', '2018-12-26', 5, 'https://www.gutenberg.org/ebooks/58538', 'en', 1130), +(28403, 'Mitchelhurst Place: A Novel. Vol. 2 (of 2)', 'Veley, Margaret', '2016-05-05', 14, 'https://www.gutenberg.org/ebooks/52002', 'en', 61), +(28404, 'The Seven Follies of Science [2nd ed.]\r\nA popular account of the most famous scientific impossibilities and the attempts which have been made to solve them. To which is added a small budget of interesting paradoxes, illusions, and marvels', 'Phin, John', '2011-06-28', 51, 'https://www.gutenberg.org/ebooks/36547', 'en', 11467), +(28405, 'Martie, the Unconquered', 'Norris, Kathleen Thompson', '2003-08-01', 19, 'https://www.gutenberg.org/ebooks/4392', 'en', 3994), +(28406, 'The Perfume of Eros: A Fifth Avenue Incident', 'Saltus, Edgar', '2010-07-20', 27, 'https://www.gutenberg.org/ebooks/33207', 'en', 1335), +(28407, 'Robert Fulton', 'Sutcliffe, Alice Crary', '2018-08-22', 8, 'https://www.gutenberg.org/ebooks/57742', 'en', 11468), +(28408, 'Moorish Literature\r\nComprising Romantic Ballads, Tales of the Berbers, Stories of the Kabyles, Folk-Lore, and National Traditions', NULL, '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10085', 'en', 9019), +(28409, 'The Atlantic Monthly, Volume 08, No. 46, August, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11157', 'en', 1227), +(28410, 'Adventures of the Teenie Weenies', 'Donahey, William', '2018-03-06', 9, 'https://www.gutenberg.org/ebooks/56690', 'en', 580), +(28411, '搜神記', 'Gan, Bao, active 317-322', '2008-05-07', 39, 'https://www.gutenberg.org/ebooks/25362', 'zh', 11469), +(28412, 'Futuria Fantasia, Winter 1940', 'Bradbury, Ray', '2012-12-15', 62, 'https://www.gutenberg.org/ebooks/41627', 'en', 2527), +(28413, 'The Complete Prose Works of Martin Farquhar Tupper', 'Tupper, Martin Farquhar', '2007-02-16', 15, 'https://www.gutenberg.org/ebooks/20610', 'en', 4608), +(28414, 'Mona; Or, The Secret of a Royal Mirror', 'Sheldon, Georgie, Mrs.', '2004-12-23', 5, 'https://www.gutenberg.org/ebooks/14425', 'en', 61), +(28415, 'Il re dei re, vol. 3\r\nConvoglio diretto nell\'XI secolo', 'Petruccelli della Gattina, Ferdinando', '2013-12-05', 15, 'https://www.gutenberg.org/ebooks/44355', 'it', 8454), +(28416, 'Dantons Tod', 'Büchner, Georg', '2004-02-01', 83, 'https://www.gutenberg.org/ebooks/5072', 'de', 11470), +(28417, 'Humorous Readings and Recitations, in Prose and Verse', NULL, '2011-07-18', 86, 'https://www.gutenberg.org/ebooks/36775', 'en', 6187), +(28418, 'The A B C of Mining: A Handbook for Prospectors', 'Bramble, Charles A.', '2014-04-01', 38, 'https://www.gutenberg.org/ebooks/45287', 'en', 11471), +(28419, 'Catalogue of the Manuscripts in the Spanish Language in the British Museum. Vol. 4', 'British Museum. Department of Manuscripts', '2016-06-05', 8, 'https://www.gutenberg.org/ebooks/52230', 'en', 11472), +(28420, 'Peter the Hermit: A Tale of Enthusiasm', 'Goodsell, Daniel A. (Daniel Ayres)', '2007-07-25', 11, 'https://www.gutenberg.org/ebooks/22147', 'en', 11473), +(28421, 'Fortuna', 'Pérez Escrich, Enrique', '2005-07-27', 27, 'https://www.gutenberg.org/ebooks/16372', 'es', 2464), +(28422, 'Harry Blount, the Detective; Or, The Martin Mystery Solved', 'Flanagan, T. J.', '2014-07-24', 20, 'https://www.gutenberg.org/ebooks/46402', 'en', 128), +(28423, 'History of Spanish and Portuguese Literature (Vol 1 of 2)', 'Bouterwek, Friedrich', '2017-10-27', 8, 'https://www.gutenberg.org/ebooks/55829', 'en', 5336), +(28424, 'The Last of the Barons — Volume 11', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 5, 'https://www.gutenberg.org/ebooks/7725', 'en', 10645), +(28425, 'An Essay in Aid of a Grammar of Assent', 'Newman, John Henry', '2010-10-01', 71, 'https://www.gutenberg.org/ebooks/34022', 'en', 2903), +(28426, 'The Truth About the Congo: The Chicago Tribune Articles', 'Starr, Frederick', '2015-11-28', 11, 'https://www.gutenberg.org/ebooks/50567', 'en', 11474), +(28427, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 11, No. 26, May, 1873', 'Various', '2007-10-20', 17, 'https://www.gutenberg.org/ebooks/23095', 'en', 162), +(28428, 'Last Days in a Dutch Hotel (from Literature and Life)', 'Howells, William Dean', '2002-08-01', 7, 'https://www.gutenberg.org/ebooks/3385', 'en', 2236), +(28429, 'The First Essay on the Political Rights of Women', 'Condorcet, Jean-Antoine-Nicolas de Caritat, marquis de', '2010-03-08', 15, 'https://www.gutenberg.org/ebooks/31550', 'en', 3505), +(28430, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 23, September 25, 1858', NULL, '2017-06-30', 4, 'https://www.gutenberg.org/ebooks/55015', 'en', 1741), +(28431, 'Encyclopaedia Britannica, 11th Edition, \"Andros, Sir Edmund\" to \"Anise\"\r\nVolume 2, Part 1, Slice 1', 'Various', '2004-10-08', 89, 'https://www.gutenberg.org/ebooks/13600', 'en', 1081), +(28432, 'The Faith of Our Fathers', 'Gibbons, James', '2008-12-07', 87, 'https://www.gutenberg.org/ebooks/27435', 'en', 4859), +(28433, 'Richard III', 'Shakespeare, William', '2000-07-01', 58, 'https://www.gutenberg.org/ebooks/2257', 'en', 1298), +(28434, 'The International Spy\nBeing the Secret History of the Russo-Japanese War', 'Upward, Allen', '2009-11-16', 21, 'https://www.gutenberg.org/ebooks/30482', 'en', 11475), +(28435, 'Sun, Sand and Somals\r\nLeaves from the note-book of a District Commissioner in British Somaliland', 'Rayne, Henry A.', '2015-03-28', 9, 'https://www.gutenberg.org/ebooks/48598', 'en', 11476), +(28436, 'Prentice Hugh', 'Peard, Frances Mary', '2013-07-09', 10, 'https://www.gutenberg.org/ebooks/43170', 'en', 11477), +(28437, 'Halsey & Co.\nor, The Young Bankers and Speculators', 'Shackleford, H. K. (Harvey King)', '2007-06-29', 13, 'https://www.gutenberg.org/ebooks/21963', 'en', 153), +(28438, 'Américo Vespucio', 'Pérez Gomar, G. (Gregorio)', '2019-07-09', 58, 'https://www.gutenberg.org/ebooks/59879', 'es', 11478), +(28439, 'Rambling Recollections of Chelsea and the Surrounding District as a Village in the Early Part of the Past Century\r\nBy an Old Inhabitant', 'Ellenor, J. B.', '2010-05-26', 5, 'https://www.gutenberg.org/ebooks/32548', 'en', 11479), +(28440, '\"Jesus Says So\"\r\nOr, a Memorial of Little Sarah G--', 'Unknown', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/10618', 'en', 10784), +(28441, 'Encyclopaedia Britannica, 11th Edition, \"Franciscans\" to \"French Language\"\r\nVolume 11, Slice 1', 'Various', '2011-10-20', 18, 'https://www.gutenberg.org/ebooks/37806', 'en', 1081), +(28442, 'Wind and Weather', 'McAdie, Alexander', '2011-11-21', 14, 'https://www.gutenberg.org/ebooks/38072', 'en', 5467), +(28443, 'The Old Adam: A Story of Adventure', 'Bennett, Arnold', '2012-07-08', 60, 'https://www.gutenberg.org/ebooks/40168', 'en', 95), +(28444, 'Chardin', 'Konody, Paul G. (Paul George)', '2013-01-20', 16, 'https://www.gutenberg.org/ebooks/41886', 'en', 11480), +(28445, 'Harper\'s Round Table, August 18, 1896', 'Various', '2019-03-10', 2, 'https://www.gutenberg.org/ebooks/59045', 'en', 668), +(28446, 'The King of the Park', 'Saunders, Marshall', '2018-03-24', 6, 'https://www.gutenberg.org/ebooks/56831', 'en', 11481), +(28447, 'Popular Superstitions, and the Truths Contained Therein\nWith an Account of Mesmerism', 'Mayo, Herbert', '2018-10-30', 16, 'https://www.gutenberg.org/ebooks/58197', 'en', 11482), +(28448, 'Potential Enemy', 'Reynolds, Mack', '2012-10-06', 57, 'https://www.gutenberg.org/ebooks/40954', 'en', 26), +(28449, 'The Day of Wrath', 'Jókai, Mór', '2007-11-24', 17, 'https://www.gutenberg.org/ebooks/23608', 'en', 11452), +(28450, 'Personal Recollections of Pardee Butler', 'Butler, Pardee', '2004-07-21', 20, 'https://www.gutenberg.org/ebooks/12973', 'en', 11483), +(28451, 'The Flower-Patch Among the Hills', 'Klickmann, Flora', '2016-02-16', 7, 'https://www.gutenberg.org/ebooks/51228', 'en', 9870), +(28452, 'Histoire de France 1715-1723 (Volume 17/19)', 'Michelet, Jules', '2009-07-06', 27, 'https://www.gutenberg.org/ebooks/29332', 'fr', 624), +(28453, 'The Fleets Behind the Fleet\nThe Work of the Merchant Seamen and Fishermen in the War', 'Dixon, W. MacNeile (William MacNeile)', '2015-02-18', 15, 'https://www.gutenberg.org/ebooks/48305', 'en', 11484), +(28454, 'Goldsmith\'s Friend Abroad Again', 'Twain, Mark', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/9022', 'en', 5114), +(28455, 'The Great Riots of New York, 1712 to 1873', 'Headley, Joel Tyler', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/6856', 'en', 11485), +(28456, 'Nach Amerika! Ein Volksbuch. Erster Band', 'Gerstäcker, Friedrich', '2006-05-01', 37, 'https://www.gutenberg.org/ebooks/18475', 'de', 1468), +(28457, 'The Old Santa Fe Trail: The Story of a Great Highway', 'Inman, Henry', '2005-04-01', 34, 'https://www.gutenberg.org/ebooks/7984', 'en', 930), +(28458, 'The Gallery of Portraits: with Memoirs. Volume 4 (of 7)', 'Malkin, Arthur Thomas', '2017-10-07', 13, 'https://www.gutenberg.org/ebooks/55688', 'en', 122), +(28459, 'Human Genome Project, Chromosome Number 18', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3518', 'en', 1841), +(28460, 'Donovan Pasha, and Some People of Egypt — Volume 3', 'Parker, Gilbert', '2004-08-01', 44, 'https://www.gutenberg.org/ebooks/6258', 'en', 2938), +(28461, 'The Moving Finger', 'Oppenheim, E. Phillips (Edward Phillips)', '2009-12-31', 24, 'https://www.gutenberg.org/ebooks/30811', 'en', 128), +(28462, 'The Wild Geese', 'Weyman, Stanley John', '2009-06-11', 35, 'https://www.gutenberg.org/ebooks/29100', 'en', 669), +(28463, 'Prisoners Their Own Warders\r\nA Record of the Convict Prison at Singapore in the Straits Settlements Established 1825', 'McNair, John Frederick Adolphus', '2008-10-20', 37, 'https://www.gutenberg.org/ebooks/26974', 'en', 11486), +(28464, 'The Curiosities of Dudley and the Black Country, From 1800 to 1860\r\nAlso an Account of the Trials and Sufferings of Dud Dudley, with His Mettallum Martis: Etc.', 'Clark, C. F. G.', '2015-01-11', 16, 'https://www.gutenberg.org/ebooks/47943', 'en', 11487), +(28465, 'Peeps at Many Lands: Egypt', 'Kelly, R. Talbot (Robert Talbot)', '2006-06-21', 34, 'https://www.gutenberg.org/ebooks/18647', 'en', 2589), +(28466, 'A Handbook of Invalid Cooking\r\nFor the Use of Nurses in Training, Nurses in Private Practice, and Others Who Care for the Sick', 'Boland, Mary A.', '2017-04-18', 51, 'https://www.gutenberg.org/ebooks/54568', 'en', 11488), +(28467, 'The Lost City', 'Badger, Jos. E. (Joseph Edward)', '1997-01-01', 74, 'https://www.gutenberg.org/ebooks/783', 'en', 580), +(28468, 'The Complete Works in Philosophy, Politics and Morals of the late Dr. Benjamin Franklin, Vol. 2 [of 3]', 'Franklin, Benjamin', '2015-02-02', 42, 'https://www.gutenberg.org/ebooks/48137', 'en', 11489), +(28469, 'The Village Uncle (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 18, 'https://www.gutenberg.org/ebooks/9210', 'en', 179), +(28470, 'Aymeris', 'Blanche, Jacques-Émile', '2016-04-22', 10, 'https://www.gutenberg.org/ebooks/51826', 'fr', 259), +(28471, 'Die schwarze Galeere', 'Raabe, Wilhelm', '2006-11-15', 7, 'https://www.gutenberg.org/ebooks/19795', 'de', 1167), +(28472, 'De vrouw en de vredesbeweging in verband met het vrouwenkiesrecht', 'Jacobs, Aletta H. (Aletta Henriette)', '2008-07-29', 6, 'https://www.gutenberg.org/ebooks/26148', 'nl', 11490), +(28473, 'Les chats: Histoire; Moeurs; Observations; Anecdotes.', 'Champfleury', '2014-09-18', 26, 'https://www.gutenberg.org/ebooks/46891', 'fr', 1576), +(28474, 'Beginners\' Book in Language. A Book for the Third Grade', 'Jeschke, Harry Jewett', '2012-11-04', 12, 'https://www.gutenberg.org/ebooks/41288', 'en', 664), +(28475, 'The Child of the Dawn', 'Benson, Arthur Christopher', '2005-05-31', 18, 'https://www.gutenberg.org/ebooks/15964', 'en', 1397), +(28476, 'The Secrets of a Savoyard', 'Lytton, Henry A.', '2012-04-06', 8, 'https://www.gutenberg.org/ebooks/39392', 'en', 11491), +(28477, 'The Esperantist, Complete', NULL, '2011-12-06', 73, 'https://www.gutenberg.org/ebooks/38240', 'eo', 3912), +(28478, 'A Desperate Game: A Comic Drama in One Act', 'Morton, John Maddison', '2014-05-11', 14, 'https://www.gutenberg.org/ebooks/45628', 'en', 907), +(28479, 'Redeemed', 'Downs, George Sheldon, Mrs.', '2019-04-14', 20, 'https://www.gutenberg.org/ebooks/59277', 'en', 658), +(28480, 'In Time of Emergency\r\nA Citizen\'s Handbook on Nuclear Attack, Natural Disasters (1968)', 'United States. Office of Civil Defense', '2005-02-24', 28, 'https://www.gutenberg.org/ebooks/15158', 'en', 11492), +(28481, 'Z. Marcas', 'Balzac, Honoré de', '2005-11-19', 64, 'https://www.gutenberg.org/ebooks/1841', 'en', 58), +(28482, 'The Wayfarers', 'Cutting, Mary Stewart', '2011-08-26', 20, 'https://www.gutenberg.org/ebooks/37208', 'en', 61), +(28483, 'Assassination of Lincoln: a History of the Great Conspiracy\r\nTrial of the Conspirators by a Military Commission, and a Review of the Trial of John H. Surratt', 'Harris, T. M. (Thomas Mealey)', '2013-06-01', 30, 'https://www.gutenberg.org/ebooks/42855', 'en', 11493), +(28484, 'The Pearl of the Antilles, or An Artist in Cuba', 'Goodman, Walter', '2009-08-01', 15, 'https://www.gutenberg.org/ebooks/29564', 'en', 747), +(28485, 'Little Snap the Postboy; Or, Working for Uncle Sam', 'Browne, George Waldo', '2017-06-18', 5, 'https://www.gutenberg.org/ebooks/54930', 'en', 11494), +(28486, 'Die drei Sprünge des Wang-lun: Chinesischer Roman', 'Döblin, Alfred', '2013-10-21', 30, 'https://www.gutenberg.org/ebooks/43987', 'de', 11495), +(28487, 'Twice Killed: A Farce in One Act', 'Oxenford, John', '2015-07-18', 4, 'https://www.gutenberg.org/ebooks/49481', 'en', 1281), +(28488, 'Janet Hardy in Hollywood', 'Wheeler, Ruthe S.', '2013-02-11', 14, 'https://www.gutenberg.org/ebooks/42069', 'en', 557), +(28489, 'Sonnet # 29', 'Shakespeare, William', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12719', 'en', 54), +(28490, 'Love, Worship and Death: Some Renderings from the Greek Anthology', 'Rodd, Rennell', '2011-04-19', 20, 'https://www.gutenberg.org/ebooks/35907', 'en', 3866), +(28491, 'The Essence of Buddhism', NULL, '2006-04-21', 134, 'https://www.gutenberg.org/ebooks/18223', 'en', 639), +(28492, 'Merauke, en wat daaraan voorafging\nDe Aarde en haar Volken, 1908', 'Snelleman, Johannes François', '2007-12-14', 4, 'https://www.gutenberg.org/ebooks/23862', 'nl', 8020), +(28493, 'Emblematic Illumination; or Forms, Colours and Emblems\r\nSuitable for Illuminating Texts of Holy Scripture in Large Style, in Oils or Water-colours.', NULL, '2015-03-22', 15, 'https://www.gutenberg.org/ebooks/48553', 'en', 4378), +(28494, 'The Way to God and How to Find It', 'Moody, Dwight Lyman', '2009-11-10', 14, 'https://www.gutenberg.org/ebooks/30449', 'en', 11496), +(28495, 'The Lifted Veil', 'Eliot, George', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9674', 'en', 114), +(28496, 'The Story of Charles Strange: A Novel. Vol. 2 (of 3)', 'Wood, Henry, Mrs.', '2012-01-20', 36, 'https://www.gutenberg.org/ebooks/38624', 'en', 61), +(28497, 'Mugby Junction', 'Dickens, Charles', '1998-08-01', 37, 'https://www.gutenberg.org/ebooks/1419', 'en', 11497), +(28498, 'Prelude and Fugue in E-Flat Major, Op. 99 no.3', 'Saint-Saëns, Camille', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/5885', 'en', 11498), +(28499, 'Constitutions pour les religieuses de l\'ordre de l\'annonciade céleste, fondé à Genes en l\'Année 1604.', 'Ordine della Santissima Annunziata', '2018-08-28', 4, 'https://www.gutenberg.org/ebooks/57789', 'fr', 10868), +(28500, 'The Heart\'s Secret; Or, the Fortunes of a Soldier: a Story of Love and the Low Latitudes.', 'Ballou, Maturin M. (Maturin Murray)', '2004-01-01', 48, 'https://www.gutenberg.org/ebooks/4957', 'en', 11419), +(28501, 'Plain Concrete for Farm Use', 'Miller, T. A. H. (Thomas Arrington Huntington)', '2019-04-28', 19, 'https://www.gutenberg.org/ebooks/59379', 'en', 11499), +(28502, 'Daimoni: Itämainen tarina', 'Lermontov, Mikhail Iurevich', '2016-10-20', 7, 'https://www.gutenberg.org/ebooks/53329', 'fi', 11500), +(28503, 'At Sunwich Port, Part 2.\nContents: Chapters 6-10', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10872', 'en', 11501), +(28504, 'The Walrus Hunters: A Romance of the Realms of Ice', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 23, 'https://www.gutenberg.org/ebooks/21709', 'en', 10234), +(28505, 'Der Silbergarten. Der Stein des Pietro. Zwei Erzählungen', 'Külpe, Frances James', '2019-05-26', 7, 'https://www.gutenberg.org/ebooks/59613', 'de', 549), +(28506, 'Torpedoes and Torpedo Warfare\r\nContaining a Complete and Concise Account of the Rise and Progress of Submarine Warfare', 'Sleeman, Charles William', '2014-02-24', 30, 'https://www.gutenberg.org/ebooks/44990', 'en', 6293), +(28507, '韩非子', 'Han, Fei', '2007-12-27', 43, 'https://www.gutenberg.org/ebooks/24049', 'zh', 1493), +(28508, 'Apuntes biograficos de escritores, oradores y hombres de estado de la Republica Argentina', 'Gutiérrez, Juan María', '2017-01-09', 9, 'https://www.gutenberg.org/ebooks/53927', 'es', 11502), +(28509, 'English and Scottish Ballads, Volume 4 (of 8)', NULL, '2011-12-26', 13, 'https://www.gutenberg.org/ebooks/38416', 'en', 5478), +(28510, 'The Erratic Flame', 'De Teresa, Ysabel', '2014-05-31', 15, 'https://www.gutenberg.org/ebooks/45842', 'en', 109), +(28511, 'Five Years in a Persian Town', 'Malcolm, Napier', '2018-01-31', 8, 'https://www.gutenberg.org/ebooks/56469', 'en', 11503), +(28512, 'Lucy Maud Montgomery Short Stories, 1904', 'Montgomery, L. M. (Lucy Maud)', '2008-03-19', 111, 'https://www.gutenberg.org/ebooks/24875', 'en', 2261), +(28513, 'With Wolseley to Kumasi: A Tale of the First Ashanti War', 'Brereton, F. S. (Frederick Sadleir)', '2010-06-20', 11, 'https://www.gutenberg.org/ebooks/32910', 'en', 1023), +(28514, 'Chushingura; Or, The Treasury of Loyal Retainers', 'Miyoshi, Shoraku', '2019-05-02', 20, 'https://www.gutenberg.org/ebooks/59421', 'en', 11504), +(28515, 'Lombard Street: A Description of the Money Market', 'Bagehot, Walter', '2003-08-01', 287, 'https://www.gutenberg.org/ebooks/4359', 'en', 11505); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(28516, 'L\'Illustration, No. 3250, 10 Juin 1905', 'Various', '2011-02-17', 10, 'https://www.gutenberg.org/ebooks/35309', 'fr', 150), +(28517, 'The Confession of a Child of the Century — Volume 2', 'Musset, Alfred de', '2003-04-01', 8, 'https://www.gutenberg.org/ebooks/3940', 'en', 58), +(28518, 'The Cat of Bubastes: A Tale of Ancient Egypt', 'Henty, G. A. (George Alfred)', '2009-08-22', 199, 'https://www.gutenberg.org/ebooks/29756', 'en', 1802), +(28519, 'Library of the World\'s Best Literature, Ancient and Modern, Vol. 7', NULL, '2009-05-04', 30, 'https://www.gutenberg.org/ebooks/28684', 'en', 19), +(28520, 'The Submarine Boys for the Flag\nDeeding Their Lives to Uncle Sam', 'Durham, Victor G.', '2005-11-15', 17, 'https://www.gutenberg.org/ebooks/17059', 'en', 5237), +(28521, 'Irish Fairy Tales', 'Stephens, James', '2001-11-01', 491, 'https://www.gutenberg.org/ebooks/2892', 'en', 2500), +(28522, 'Harper\'s Young People, June 21, 1881\nAn Illustrated Weekly', 'Various', '2014-12-20', 15, 'https://www.gutenberg.org/ebooks/47729', 'en', 479), +(28523, 'Normandy, Illustrated, Part 2', 'Home, Gordon', '2004-08-12', 71, 'https://www.gutenberg.org/ebooks/8594', 'en', 6545), +(28524, 'Sixty Folk-Tales from Exclusively Slavonic Sources', NULL, '2015-04-22', 24, 'https://www.gutenberg.org/ebooks/48761', 'en', 11506), +(28525, 'Une Maladie Morale: Le mal du siècle', 'Charpentier, Paul', '2013-08-02', 18, 'https://www.gutenberg.org/ebooks/43389', 'fr', 629), +(28526, 'The Meadow-Brook Girls in the Hills; Or, The Missing Pilot of the White Mountains', 'Aldridge, Janet', '2006-02-26', 24, 'https://www.gutenberg.org/ebooks/17865', 'en', 11507), +(28527, 'Samantha among the Brethren — Volume 4', 'Holley, Marietta', '2004-08-10', 9, 'https://www.gutenberg.org/ebooks/9446', 'en', 11508), +(28528, 'The Portion of Labor', 'Freeman, Mary Eleanor Wilkins', '2006-03-18', 23, 'https://www.gutenberg.org/ebooks/18011', 'en', 539), +(28529, 'Uit Sowjet-Rusland: Beelden en beschouwingen', 'Roland Holst-Van der Schalk, Henriette', '2009-08-03', 16, 'https://www.gutenberg.org/ebooks/29590', 'nl', 11509), +(28530, 'Chambers\'s Edinburgh Journal, No. 451\nVolume 18, New Series, August 21, 1852', 'Various', '2007-07-30', 9, 'https://www.gutenberg.org/ebooks/22178', 'en', 18), +(28531, 'The Bird in the Box', 'Mears, Mary M. (Mary Martha)', '2017-10-26', 8, 'https://www.gutenberg.org/ebooks/55816', 'en', 1463), +(28532, 'Visions and Beliefs in the West of Ireland, First Series', NULL, '2013-10-18', 44, 'https://www.gutenberg.org/ebooks/43973', 'en', 3430), +(28533, 'Ned, Bob and Jerry on the Firing Line; Or, The Motor Boys Fighting for Uncle Sam', 'Young, Clarence', '2009-03-29', 29, 'https://www.gutenberg.org/ebooks/28442', 'en', 1361), +(28534, 'A Tramp\'s Scraps', 'Self, H. I. M.', '2015-11-27', 9, 'https://www.gutenberg.org/ebooks/50558', 'en', 5547), +(28535, 'The Return of Tarzan', 'Burroughs, Edgar Rice', '2005-08-01', 6, 'https://www.gutenberg.org/ebooks/8752', 'en', 635), +(28536, 'The History of Little Peter, the Ship Boy', 'Kingston, William Henry Giles', '2007-10-11', 8, 'https://www.gutenberg.org/ebooks/22944', 'en', 3535), +(28537, 'An Estimate of the True Value of Vaccination as a Security Against Small Pox', 'Greenhow, T. M. (Thomas Michael)', '2015-07-18', 8, 'https://www.gutenberg.org/ebooks/49475', 'en', 11510), +(28538, 'Van Toledo naar Granada, deel 2\nDe Aarde en haar Volken, 1907', 'Dieulafoy, Jane', '2006-09-17', 9, 'https://www.gutenberg.org/ebooks/19305', 'nl', 1514), +(28539, 'The Scribleriad, and The Difference Between Verbal and Practical Virtue', 'Hervey, John Hervey, Baron', '2011-01-03', 8, 'https://www.gutenberg.org/ebooks/34821', 'en', 11511), +(28540, 'Children of the Night', 'Robinson, Edwin Arlington', '2008-07-02', 109, 'https://www.gutenberg.org/ebooks/313', 'en', 8), +(28541, 'The Secret Agent', 'Conrad, Joseph', '2007-12-01', 24, 'https://www.gutenberg.org/ebooks/23896', 'en', 235), +(28542, 'Antony and Cleopatra', 'Shakespeare, William', '2000-07-01', 104, 'https://www.gutenberg.org/ebooks/2268', 'en', 11512), +(28543, 'Dickory Cronke', 'Defoe, Daniel', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9680', 'en', 11513), +(28544, 'Nervosos, Lymphaticos e Sanguineos', 'Pimentel, Alberto', '2010-07-23', 8, 'https://www.gutenberg.org/ebooks/33238', 'pt', 5336), +(28545, 'Green Fancy', 'McCutcheon, George Barr', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5871', 'en', 323), +(28546, 'Life of St. Declan of Ardmore and Life of St. Mochuda of Lismore', NULL, '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11168', 'en', 11514), +(28547, 'Chronological Retrospect of the History of Yarmouth and Neighbourhood\nfrom A.D. 46 to 1884', 'Finch-Crisp, William', '2012-12-13', 5, 'https://www.gutenberg.org/ebooks/41618', 'en', 3964), +(28548, 'The philosophy of mathematics', 'Comte, Auguste', '2012-05-15', 87, 'https://www.gutenberg.org/ebooks/39702', 'en', 11515), +(28549, 'Peace', 'Arkawy, Norman', '2019-01-20', 25, 'https://www.gutenberg.org/ebooks/58735', 'en', 2564), +(28550, 'The Untamed', 'Brand, Max', '2004-01-01', 124, 'https://www.gutenberg.org/ebooks/10886', 'en', 315), +(28551, 'Dawn of the Morning', 'Hill, Grace Livingston', '2013-04-07', 61, 'https://www.gutenberg.org/ebooks/37698', 'en', 2287), +(28552, 'A Popular History of France from the Earliest Times, Volume 4', 'Guizot, François', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/11954', 'en', 624), +(28553, 'Ragtime Echoes', NULL, '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10288', 'en', 11516), +(28554, 'Battles of the Civil War', 'Vineyard, Thomas Elbert', '2014-02-19', 27, 'https://www.gutenberg.org/ebooks/44964', 'en', 2723), +(28555, 'The Factors of Organic Evolution', 'Spencer, Herbert', '2016-08-14', 5, 'https://www.gutenberg.org/ebooks/52801', 'en', 1315), +(28556, 'Πολιτεία, Τόμος 4', 'Plato', '2012-04-24', 19, 'https://www.gutenberg.org/ebooks/39530', 'el', 104), +(28557, 'Hairauksia', 'Shakespeare, William', '2013-11-10', 20, 'https://www.gutenberg.org/ebooks/44158', 'fi', 907), +(28558, 'The Tale of Grumpy Weasel\nSleepy-Time Tales', 'Bailey, Arthur Scott', '2008-03-20', 28, 'https://www.gutenberg.org/ebooks/24881', 'en', 2296), +(28559, 'The Sweet and Touching Tale of Fleur & Blanchefleur\r\nA Mediæval Legend Translated from the French', 'Leighton, Mrs.', '2005-01-07', 14, 'https://www.gutenberg.org/ebooks/14628', 'en', 1142), +(28560, 'The New Conspiracy Against the Jesuits Detected and Briefly Exposed\r\nwith a short account of their institute; and observations on the danger of systems of education independent of religion', 'Dallas, Robert Charles', '2010-10-03', 11, 'https://www.gutenberg.org/ebooks/33836', 'en', 11517), +(28561, 'My Colored Battalion', 'Ross, Warner A.', '2018-12-21', 5, 'https://www.gutenberg.org/ebooks/58507', 'en', 3083), +(28562, 'Kalevala, The Land of the Heroes, Volume One', NULL, '2008-07-02', 84, 'https://www.gutenberg.org/ebooks/25953', 'en', 4087), +(28563, 'The Warden of the Plains, and Other Stories of Life in the Canadian North-west', 'MacLean, John', '2011-07-02', 20, 'https://www.gutenberg.org/ebooks/36578', 'en', 551), +(28564, 'The Roman Pronunciation of Latin: Why We Use It and How to Use It', 'Lord, Frances E. (Frances Ellen)', '2005-02-01', 38, 'https://www.gutenberg.org/ebooks/7528', 'en', 9008), +(28565, 'Arizona\'s Yesterday\nBeing the Narrative of John H. Cady, Pioneer', 'Woon, Basil', '2009-05-03', 12, 'https://www.gutenberg.org/ebooks/28670', 'en', 11518), +(28566, 'Een spoorwegreis in Korea\r\nDe Aarde en haar Volken, 1908', 'Kalff, S.', '2007-11-03', 11, 'https://www.gutenberg.org/ebooks/23298', 'nl', 2039), +(28567, 'Windsor Castle', 'Ainsworth, William Harrison', '2001-10-01', 54, 'https://www.gutenberg.org/ebooks/2866', 'en', 98), +(28568, 'The Chautauquan, Vol. 05, October 1884, No. 1', 'Chautauqua Institution', '2017-07-29', 2, 'https://www.gutenberg.org/ebooks/55218', 'en', 1115), +(28569, 'Kumarrusmatka\nKolminäytöksinen huvinäytelmä', 'Kiljander, Robert', '2006-08-28', 6, 'https://www.gutenberg.org/ebooks/19137', 'fi', 247), +(28570, 'Mark Twain\'s Speeches', 'Twain, Mark', '2004-09-17', 201, 'https://www.gutenberg.org/ebooks/3188', 'en', 429), +(28571, 'Le Docteur Pascal', 'Zola, Émile', '2005-07-01', 28, 'https://www.gutenberg.org/ebooks/8560', 'fr', 607), +(28572, 'Paris: With Pen and Pencil\nIts People and Literature, Its Life and Business', 'Bartlett, D. W. (David W.)', '2005-10-25', 25, 'https://www.gutenberg.org/ebooks/16943', 'en', 2243), +(28573, 'Hanuumanin tytär: 3-näytöksinen apinakomedia', 'Haarla, Lauri', '2015-08-07', 13, 'https://www.gutenberg.org/ebooks/49647', 'fi', 382), +(28574, 'Sylvie and Bruno Concluded (Illustrated)', 'Carroll, Lewis', '2015-04-26', 55, 'https://www.gutenberg.org/ebooks/48795', 'en', 580), +(28575, 'Evelina\'s Garden', 'Freeman, Mary Eleanor Wilkins', '2006-03-01', 16, 'https://www.gutenberg.org/ebooks/17891', 'en', 48), +(28576, 'The 2001 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-27', 61, 'https://www.gutenberg.org/ebooks/27638', 'en', 1407), +(28577, 'Northanger Abbey', 'Austen, Jane', '1994-04-01', 1953, 'https://www.gutenberg.org/ebooks/121', 'en', 48), +(28578, 'Christie\'s Old Organ\r\nOr, \"Home, Sweet Home\"', 'Walton, O. F., Mrs.', '2007-07-04', 34, 'https://www.gutenberg.org/ebooks/21997', 'en', 470), +(28579, 'Special Method in the Reading of Complete English Classics\nIn the Grades of the Common School', 'McMurry, Charles A. (Charles Alexander)', '2012-03-15', 14, 'https://www.gutenberg.org/ebooks/39154', 'en', 11519), +(28580, '\"Vaikka kokee, eipä hylkää herra\"\r\nTosikuvaus erään kansanlapsen elämäntaistelusta', 'Wesala, Kaarlo', '2011-07-31', 6, 'https://www.gutenberg.org/ebooks/36920', 'fi', 61), +(28581, 'The Social Evolution of the Argentine Republic', 'Quesada, Ernesto', '2011-11-22', 23, 'https://www.gutenberg.org/ebooks/38086', 'en', 11520), +(28582, 'The Knickerbocker, or New-York Monthly Magazine, April 1844\nVolume 23, Number 4', 'Various', '2007-03-17', 9, 'https://www.gutenberg.org/ebooks/20845', 'en', 18), +(28583, 'Le Peuple de la mer', 'Elder, Marc', '2013-01-19', 10, 'https://www.gutenberg.org/ebooks/41872', 'fr', 61), +(28584, 'Lancashire Humour', 'Newbigging, Thomas', '2012-06-11', 18, 'https://www.gutenberg.org/ebooks/39968', 'en', 564), +(28585, 'Saint Abe and His Seven Wives\r\nA Tale of Salt Lake City, with a Bibliographical Note', 'Buchanan, Robert Williams', '2016-06-30', 4, 'https://www.gutenberg.org/ebooks/52459', 'en', 11521), +(28586, 'The Boy\'s Hakluyt: English Voyages of Adventure and Discovery', 'Bacon, Edwin M. (Edwin Monroe)', '2018-09-17', 13, 'https://www.gutenberg.org/ebooks/57917', 'en', 9584), +(28587, 'Index of the Project Gutenberg Works of Henry Rider Haggard', 'Haggard, H. Rider (Henry Rider)', '2018-10-25', 18, 'https://www.gutenberg.org/ebooks/58163', 'en', 198), +(28588, 'Légendes pour les enfants', NULL, '2006-12-10', 32, 'https://www.gutenberg.org/ebooks/20079', 'fr', 1142), +(28589, 'Notes and Queries, Number 236, May 6, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-02-28', 8, 'https://www.gutenberg.org/ebooks/28214', 'en', 105), +(28590, 'Une politique européenne : la France, la Russie, l\'Allemagne et la guerre au Transvaal', 'Grosclaude, Etienne', '2004-10-25', 9, 'https://www.gutenberg.org/ebooks/13855', 'fr', 11522), +(28591, 'Det graa Hus', 'Bang, Herman', '2004-07-22', 17, 'https://www.gutenberg.org/ebooks/12987', 'da', 61), +(28592, 'Caos del Triperuno\nOpere Italiane Vol. 1', 'Folengo, Teofilo', '2011-04-08', 28, 'https://www.gutenberg.org/ebooks/35799', 'it', 3942), +(28593, 'Zenobia; or, the Fall of Palmyra', 'Ware, William', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8938', 'en', 11523), +(28594, 'Life\'s Basis and Life\'s Ideal: The Fundamentals of a New Philosophy of Life', 'Eucken, Rudolf', '2013-09-14', 25, 'https://www.gutenberg.org/ebooks/43719', 'en', 3782), +(28595, 'Oppikirja suomalaisen kirjallisuuden historiassa', 'Godenhjelm, B. F. (Bernhard Fredrik)', '2006-06-01', 19, 'https://www.gutenberg.org/ebooks/18481', 'fi', 11241), +(28596, 'The Minister and the Boy: A Handbook for Churchmen Engaged in Boys\' Work', 'Hoben, Allan', '2004-07-31', 11, 'https://www.gutenberg.org/ebooks/13069', 'en', 3300), +(28597, 'At the Earth\'s Core', 'Burroughs, Edgar Rice', '1996-06-01', 129, 'https://www.gutenberg.org/ebooks/545', 'en', 2399), +(28598, 'The Private Diary of Dr. John Dee, and the Catalog of His Library of Manuscripts', 'Dee, John', '2006-10-16', 147, 'https://www.gutenberg.org/ebooks/19553', 'en', 11524), +(28599, 'Life of Luther', 'Köstlin, Julius', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7970', 'en', 1073), +(28600, 'The National Being: Some Thoughts on an Irish Polity', 'Russell, George William', '2005-05-01', 12, 'https://www.gutenberg.org/ebooks/8104', 'en', 11525), +(28601, 'The Black Phalanx\r\nAfrican American soldiers in the War of Independence, the War of 1812, and the Civil War', 'Wilson, Joseph T. (Joseph Thomas)', '2010-02-21', 28, 'https://www.gutenberg.org/ebooks/31339', 'en', 11526), +(28602, 'Fuochi di bivacco', 'Oriani, Alfredo', '2015-06-16', 12, 'https://www.gutenberg.org/ebooks/49223', 'it', 3942), +(28603, 'Gold Dust: A Collection of Golden Counsels for the Sanctification of Daily Life', 'Sylvain, Adrien', '2009-01-20', 6, 'https://www.gutenberg.org/ebooks/27852', 'en', 2064), +(28604, 'The History of Painting in Italy, Vol. 1 (of 6)\r\nFrom the Period of the Revival of the Fine Arts to the End of the Eighteenth Century', 'Lanzi, Luigi', '2010-11-29', 46, 'https://www.gutenberg.org/ebooks/34479', 'en', 7807), +(28605, 'Great Pianists on Piano Playing\nStudy Talks with Foremost Virtuosos. A Series of Personal Educational Conferences with Renowned Masters of the Keyboard, Presenting the Most Modern Ideas upon the Subjects of Technic, Interpretation, Style and Expression', 'Cooke, James Francis', '2009-02-08', 59, 'https://www.gutenberg.org/ebooks/28026', 'en', 11527), +(28606, 'Lay Sermons, Addresses and Reviews', 'Huxley, Thomas Henry', '2005-09-21', 32, 'https://www.gutenberg.org/ebooks/16729', 'en', 4775), +(28607, 'Evil Out of Onzar', 'Ganes, Mark', '2010-04-10', 24, 'https://www.gutenberg.org/ebooks/31937', 'en', 26), +(28608, 'Frank H. Nelson of Cincinnati', 'Herrick, Warren Crocker', '2008-10-20', 5, 'https://www.gutenberg.org/ebooks/26980', 'en', 11528), +(28609, 'The Adopting of Rosa Marie\r\n(A Sequel to Dandelion Cottage)', 'Rankin, Carroll Watson', '2014-06-21', 31, 'https://www.gutenberg.org/ebooks/46059', 'en', 11529), +(28610, 'The Mastery of the Air', 'Claxton, William J.', '1997-01-01', 87, 'https://www.gutenberg.org/ebooks/777', 'en', 927), +(28611, 'Miekka ja sana I: Historiallisia kertomuksia', 'Wilkuna, Kyösti', '2016-01-12', 8, 'https://www.gutenberg.org/ebooks/50900', 'fi', 175), +(28612, 'The Bible, Douay-Rheims, Book 36: Abdias\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8336', 'en', 5593), +(28613, 'The Annals of the Barber-Surgeons of London', NULL, '2015-05-23', 24, 'https://www.gutenberg.org/ebooks/49011', 'en', 11530), +(28614, 'A Girl in Ten Thousand', 'Meade, L. T.', '2006-11-11', 46, 'https://www.gutenberg.org/ebooks/19761', 'en', 51), +(28615, 'Sappho: One Hundred Lyrics', 'Carman, Bliss', '2004-05-01', 224, 'https://www.gutenberg.org/ebooks/12389', 'en', 11531), +(28616, 'War Days in Brittany', 'Jarves, Elsie Deming', '2014-09-15', 27, 'https://www.gutenberg.org/ebooks/46865', 'en', 11532), +(28617, 'The Alembic Plot: A Terran Empire novel', 'Wilson, Ann', '2008-06-09', 35, 'https://www.gutenberg.org/ebooks/25739', 'en', 26), +(28618, 'The Tree of Knowledge: A Novel', 'Reynolds, Baillie, Mrs.', '2012-04-04', 61, 'https://www.gutenberg.org/ebooks/39366', 'en', 45), +(28619, 'Akten voor en na de Heilige Communie\nVoor de kleine kinderen', 'Gibergues, Emmanuel de', '2005-06-05', 7, 'https://www.gutenberg.org/ebooks/15990', 'nl', 11533), +(28620, 'Moon-Face, and Other Stories', 'London, Jack', '1997-11-01', 45, 'https://www.gutenberg.org/ebooks/1089', 'en', 828), +(28621, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 26, September, 1880', 'Various', '2005-01-30', 7, 'https://www.gutenberg.org/ebooks/14842', 'en', 162), +(28622, 'San Isidro', 'Crowninshield, Schuyler, Mrs.', '2018-06-13', 6, 'https://www.gutenberg.org/ebooks/57319', 'en', 109), +(28623, 'Dick and His Cat\nAn Old Tale in a New Garb', 'Ellis, Mary', '2007-05-09', 10, 'https://www.gutenberg.org/ebooks/21399', 'en', 11271), +(28624, 'Josiah Allen on the Woman Question', 'Holley, Marietta', '2019-04-14', 19, 'https://www.gutenberg.org/ebooks/59283', 'en', 2153), +(28625, 'Solidarismus: Natürliche wirtschaftliche Erlösung des Menschen', 'Diesel, Rudolf', '2018-11-25', 57, 'https://www.gutenberg.org/ebooks/58351', 'de', 11534), +(28626, 'Preface to Shakespeare', 'Johnson, Samuel', '2004-04-01', 179, 'https://www.gutenberg.org/ebooks/5429', 'en', 3360), +(28627, 'La forêt, ou l\'abbaye de Saint-Clair (tome 1/3)\ntraduit de l\'anglais sur la seconde édition', 'Radcliffe, Ann Ward', '2018-08-22', 18, 'https://www.gutenberg.org/ebooks/57745', 'fr', 428), +(28628, 'The Hampstead Mystery', 'Rees, Arthur J. (Arthur John)', '2003-11-01', 48, 'https://www.gutenberg.org/ebooks/10082', 'en', 128), +(28629, 'The Philosophy of Style', 'Spencer, Herbert', '2004-06-01', 74, 'https://www.gutenberg.org/ebooks/5849', 'en', 11535), +(28630, 'The Women of Tomorrow', 'Hard, William', '2010-07-19', 20, 'https://www.gutenberg.org/ebooks/33200', 'en', 1619), +(28631, 'French Book-plates', 'Hamilton, Walter', '2012-12-14', 8, 'https://www.gutenberg.org/ebooks/41620', 'en', 11536), +(28632, '顔氏家訓', 'Yan, Zhitui', '2008-05-07', 9, 'https://www.gutenberg.org/ebooks/25365', 'zh', 740), +(28633, 'Gems Gathered in Haste\nA New Year\'s Gift for Sunday Schools', 'Anonymous', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11150', 'en', 388), +(28634, 'A Little Book of Bores', 'Herford, Oliver', '2018-03-07', 15, 'https://www.gutenberg.org/ebooks/56697', 'en', 5509), +(28635, 'The Lion of the North: A Tale of the Times of Gustavus Adolphus', 'Henty, G. A. (George Alfred)', '2004-02-01', 52, 'https://www.gutenberg.org/ebooks/5075', 'en', 2002), +(28636, 'The Shadow Passes\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-12-05', 15, 'https://www.gutenberg.org/ebooks/44352', 'en', 11537), +(28637, 'The Promise of American Life', 'Croly, Herbert David', '2004-12-22', 74, 'https://www.gutenberg.org/ebooks/14422', 'en', 11538), +(28638, 'Young Wild West at \"Forbidden Pass\"\nand, How Arietta Paid the Toll', 'Old scout', '2007-02-18', 23, 'https://www.gutenberg.org/ebooks/20617', 'en', 315), +(28639, 'His Most Gracious Majesty King Edward VII', 'Lowndes, Marie Belloc', '2016-06-04', 17, 'https://www.gutenberg.org/ebooks/52237', 'en', 11539), +(28640, 'The Wonderful \"One-Hoss-Shay\", and Other Poems', 'Holmes, Oliver Wendell', '2014-03-31', 12, 'https://www.gutenberg.org/ebooks/45280', 'en', 350), +(28641, 'The Hearts of Men', 'Fielding, H. (Harold)', '2011-07-17', 15, 'https://www.gutenberg.org/ebooks/36772', 'en', 655), +(28642, 'The Last of the Barons — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7722', 'en', 10645), +(28643, 'Basil Everman', 'Singmaster, Elsie', '2014-07-25', 18, 'https://www.gutenberg.org/ebooks/46405', 'en', 770), +(28644, 'The King\'s Achievement', 'Benson, Robert Hugh', '2005-07-27', 20, 'https://www.gutenberg.org/ebooks/16375', 'en', 11540), +(28645, 'Rambles in Normandy', 'Mansfield, M. F. (Milburg Francisco)', '2013-06-09', 20, 'https://www.gutenberg.org/ebooks/42899', 'en', 6545), +(28646, 'The Wrong Woman', 'Stewart, Charles D. (Charles David)', '2007-07-25', 12, 'https://www.gutenberg.org/ebooks/22140', 'en', 9815), +(28647, 'The Simple Life', 'Wagner, Charles', '2007-10-20', 66, 'https://www.gutenberg.org/ebooks/23092', 'en', 740), +(28648, 'A Century of Dishonor\r\nA Sketch of the United States Government\'s Dealings with Some of the Indian Tribes', 'Jackson, Helen Hunt', '2015-11-27', 73, 'https://www.gutenberg.org/ebooks/50560', 'en', 11541), +(28649, 'Ancient Rome: The Lives of Great Men', 'Hamilton, Mary Agnes', '2010-10-03', 21, 'https://www.gutenberg.org/ebooks/34025', 'en', 3574), +(28650, 'Dred: A Tale of the Great Dismal Swamp', 'Stowe, Harriet Beecher', '2017-06-30', 61, 'https://www.gutenberg.org/ebooks/55012', 'en', 5351), +(28651, 'American Literary Centers (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 20, 'https://www.gutenberg.org/ebooks/3382', 'en', 2645), +(28652, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 18', 'Stevenson, Robert Louis', '2010-03-08', 20, 'https://www.gutenberg.org/ebooks/31557', 'en', 11542), +(28653, 'The Protection of Fresh-Water Mussels', 'Coker, R. E. (Robert Ervin)', '2013-07-10', 1, 'https://www.gutenberg.org/ebooks/43177', 'en', 11543), +(28654, 'Richard II', 'Shakespeare, William', '2000-07-01', 110, 'https://www.gutenberg.org/ebooks/2250', 'en', 4726), +(28655, 'The Rustler of Wind River', 'Ogden, George W. (George Washington)', '2009-11-16', 49, 'https://www.gutenberg.org/ebooks/30485', 'en', 315), +(28656, 'The Fifth Queen Crowned', 'Ford, Ford Madox', '2008-12-07', 17, 'https://www.gutenberg.org/ebooks/27432', 'en', 5696), +(28657, 'Histoire de la Révolution française, Tome 10', 'Thiers, Adolphe', '2004-10-05', 16, 'https://www.gutenberg.org/ebooks/13607', 'fr', 1536), +(28658, 'The Village Notary: A Romance of Hungarian Life', 'Eötvös, József, báró', '2011-01-02', 9, 'https://www.gutenberg.org/ebooks/34819', 'en', 8904), +(28659, 'History of the Life of Gustavus Adolphus II., the Hero-General of the Reformation', 'Monroe, Harriet Earhart', '2016-04-06', 15, 'https://www.gutenberg.org/ebooks/51680', 'en', 11544), +(28660, 'The American Missionary — Volume 43, No. 07, July, 1889', 'Various', '2005-06-29', 3, 'https://www.gutenberg.org/ebooks/16147', 'en', 562), +(28661, 'A Labrador Doctor\nThe Autobiography of Wilfred Thomason Grenfell', 'Grenfell, Wilfred Thomason, Sir', '2007-08-22', 22, 'https://www.gutenberg.org/ebooks/22372', 'en', 10042), +(28662, 'Cluthe\'s Advice to the Ruptured', 'Cluthe Rupture Institute', '2006-11-27', 51, 'https://www.gutenberg.org/ebooks/19933', 'en', 11545), +(28663, 'Keith of the Border: A Tale of the Plains', 'Parrish, Randall', '2005-02-01', 17, 'https://www.gutenberg.org/ebooks/7510', 'en', 48), +(28664, 'The Pastor\'s Fire-side Vol. 3 (of 4)', 'Porter, Jane', '2014-08-20', 22, 'https://www.gutenberg.org/ebooks/46637', 'en', 11263), +(28665, 'United States Presidents\' Inaugural Speeches: From Washington to George W. Bush', 'United States. Presidents', '1997-05-01', 98, 'https://www.gutenberg.org/ebooks/925', 'en', 9921), +(28666, 'The Life and Public Services of James A. Garfield\r\nTwentieth President of the United States, Including Full and Accurate Details of His Eventful Administration, Assassination, Last Hours, Death, Etc., Together with Notable Extracts from His Speeches and Letters', 'Brown, E. E. (Emma Elizabeth)', '2010-11-06', 19, 'https://www.gutenberg.org/ebooks/34217', 'en', 8162), +(28667, 'A Little Girl in Old Philadelphia', 'Douglas, Amanda M.', '2009-04-30', 20, 'https://www.gutenberg.org/ebooks/28648', 'en', 8874), +(28668, 'Bunny Brown and His Sister Sue on an Auto Tour', 'Hope, Laura Lee', '2005-11-18', 13, 'https://www.gutenberg.org/ebooks/17095', 'en', 8766), +(28669, 'Anthropological Survey in Alaska', 'Hrdlička, Aleš', '2015-12-23', 11, 'https://www.gutenberg.org/ebooks/50752', 'en', 8982), +(28670, 'L\'Assommoir', 'Zola, Émile', '2005-07-01', 53, 'https://www.gutenberg.org/ebooks/8558', 'en', 434), +(28671, 'My Lady of the Chimney Corner', 'Irvine, Alexander', '2010-03-25', 21, 'https://www.gutenberg.org/ebooks/31765', 'en', 11546), +(28672, 'La Cryptographie, ou, l\'art d\'écrire en chiffres', 'Jacob, P. L.', '2013-03-10', 16, 'https://www.gutenberg.org/ebooks/42297', 'fr', 9002), +(28673, 'Five Acres Too Much\r\nA truthful elucidation of the attractions of the country, and a careful consideration of the question of profit and loss as involved in amateur farming, with much valuable advice and instruction to those about purchasing large or small places in the rural districts', 'Roosevelt, Robert Barnwell', '2017-07-29', 14, 'https://www.gutenberg.org/ebooks/55220', 'en', 2503), +(28674, 'Zoonomia; Or, the Laws of Organic Life, Vol. II', 'Darwin, Erasmus', '2008-12-23', 44, 'https://www.gutenberg.org/ebooks/27600', 'en', 11547), +(28675, 'A Tramp Abroad', 'Twain, Mark', '2004-06-19', 519, 'https://www.gutenberg.org/ebooks/119', 'en', 637), +(28676, 'On the Choice of Books', 'Carlyle, Thomas', '2004-09-11', 34, 'https://www.gutenberg.org/ebooks/13435', 'en', 6644), +(28677, 'The Other World; or, Glimpses of the Supernatural (Vol. 1 of 2)\r\nBeing Facts, Records, and Traditions Relating to Dreams, Omens, Miraculous Occurrences, Apparitions, Wraiths, Warnings, Second-sight, Witchcraft, Necromancy, etc.', NULL, '2013-07-29', 60, 'https://www.gutenberg.org/ebooks/43345', 'en', 10588), +(28678, 'All for Love; Or, The World Well Lost: A Tragedy', 'Dryden, John', '2000-02-01', 121, 'https://www.gutenberg.org/ebooks/2062', 'en', 11548), +(28679, 'Les bases de la morale évolutionniste', 'Spencer, Herbert', '2010-06-30', 16, 'https://www.gutenberg.org/ebooks/33032', 'fr', 779), +(28680, 'Admiral\'s Light', 'Rideout, Henry Milner', '2018-07-25', 7, 'https://www.gutenberg.org/ebooks/57577', 'en', 3682), +(28681, 'Earl Hubert\'s Daughter\nThe Polishing of the Pearl - A Tale of the 13th Century', 'Holt, Emily Sarah', '2007-12-31', 38, 'https://www.gutenberg.org/ebooks/24085', 'en', 11549), +(28682, 'Über Integralinvarianten und Differentialgleichungen', 'Lie, Sophus', '2008-04-24', 14, 'https://www.gutenberg.org/ebooks/25157', 'de', 3253), +(28683, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 322, July 12, 1828', 'Various', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11362', 'en', 133), +(28684, 'A History of Philosophy in Epitome', 'Schwegler, Albert', '2012-11-19', 24, 'https://www.gutenberg.org/ebooks/41412', 'en', 3566), +(28685, 'Popular scientific lectures', 'Mach, Ernst', '2012-04-22', 38, 'https://www.gutenberg.org/ebooks/39508', 'en', 1194), +(28686, 'Texas Rocks and Minerals: An Amateur\'s Guide', 'Girard, Roselle M.', '2016-08-18', 27, 'https://www.gutenberg.org/ebooks/52839', 'en', 11550), +(28687, 'Miss Elliot\'s Girls\r\nStories of Beasts, Birds, and Butterflies', 'Corning, Mary Spring', '2005-01-06', 21, 'https://www.gutenberg.org/ebooks/14610', 'en', 388), +(28688, 'The Peace Egg and Other tales', 'Ewing, Juliana Horatia Gatty', '2007-01-23', 26, 'https://www.gutenberg.org/ebooks/20425', 'en', 11551), +(28689, 'The Chalice Of Courage: A Romance of Colorado', 'Brady, Cyrus Townsend', '2011-09-20', 35, 'https://www.gutenberg.org/ebooks/37492', 'en', 7322), +(28690, 'The Old Wives\' Tale', 'Bennett, Arnold', '2004-03-01', 129, 'https://www.gutenberg.org/ebooks/5247', 'en', 378), +(28691, 'Émaux et camées', 'Gautier, Théophile', '2013-11-11', 8, 'https://www.gutenberg.org/ebooks/44160', 'fr', 4086), +(28692, 'Myths and Folk Tales of Ireland', 'Curtin, Jeremiah', '2011-06-27', 26, 'https://www.gutenberg.org/ebooks/36540', 'en', 2500), +(28693, 'In Wicklow and West Kerry', 'Synge, J. M. (John Millington)', '2003-08-01', 16, 'https://www.gutenberg.org/ebooks/4395', 'en', 11552), +(28694, 'Sorrettuja ja solvaistuja: Romaani', 'Dostoyevsky, Fyodor', '2016-05-05', 2, 'https://www.gutenberg.org/ebooks/52005', 'fi', 147), +(28695, 'Samasta kodista', 'Salmela, Marja', '2014-11-17', 6, 'https://www.gutenberg.org/ebooks/47381', 'fi', 175), +(28696, 'The Chief Engineer', 'Abbott, Henry', '2010-12-16', 17, 'https://www.gutenberg.org/ebooks/34673', 'en', 3073), +(28697, 'A Gothic Grammar, with selections for reading and a glossary', 'Braune, Wilhelm', '2015-10-29', 35, 'https://www.gutenberg.org/ebooks/50336', 'en', 11553), +(28698, 'The London and Country Brewer', 'Anonymous', '2005-09-01', 53, 'https://www.gutenberg.org/ebooks/8900', 'en', 11554), +(28699, 'The Kitáb-i-Aqdas', 'Bahá\'u\'lláh', '2005-08-13', 61, 'https://www.gutenberg.org/ebooks/16523', 'en', 4457), +(28700, 'The Book-Hunter at Home', 'Allan, P. B. M. (Philip Bertram Murray)', '2007-09-22', 22, 'https://www.gutenberg.org/ebooks/22716', 'en', 4118), +(28701, 'The Marquis of Lossie', 'MacDonald, George', '2004-12-01', 32, 'https://www.gutenberg.org/ebooks/7174', 'en', 2389), +(28702, 'Mariages d\'aventure', 'Gaboriau, Emile', '2014-07-11', 12, 'https://www.gutenberg.org/ebooks/46253', 'fr', 61), +(28703, 'William Shakespeare', 'Masefield, John', '2008-11-15', 26, 'https://www.gutenberg.org/ebooks/27264', 'en', 1735), +(28704, 'A Connecticut Yankee in King Arthur\'s Court', 'Twain, Mark', '2004-07-07', 1767, 'https://www.gutenberg.org/ebooks/86', 'en', 4480), +(28705, 'A Christian Woman', 'Pardo Bazán, Emilia, condesa de', '2017-05-27', 6, 'https://www.gutenberg.org/ebooks/54796', 'en', 480), +(28706, 'Sketches of Japanese Manners and Customs', 'Silver, J. M. W. (Jacob Mortimer Wier)', '2004-07-29', 55, 'https://www.gutenberg.org/ebooks/13051', 'en', 1809), +(28707, 'Blackwood\'s Edinburgh Magazine, Vol. 66, No 405, July 1849', 'Various', '2013-09-14', 8, 'https://www.gutenberg.org/ebooks/43721', 'en', 274), +(28708, 'Die Geschwister: Ein Schauspiel in einem Akt', 'Goethe, Johann Wolfgang von', '2000-11-01', 22, 'https://www.gutenberg.org/ebooks/2406', 'de', 402), +(28709, 'A Comparative Study of the Negro Problem\nThe American Negro Academy. Occasional Papers No. 4', 'Cook, Charles C.', '2010-02-17', 5, 'https://www.gutenberg.org/ebooks/31301', 'en', 2574), +(28710, 'Wau-Bun: The Early Day in the Northwest', 'Kinzie, John H., Mrs.', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12183', 'en', 11555), +(28711, 'Pedestrianism; or, An Account of the Performances of Celebrated Pedestrians During the Last and Present Century.\r\nWith a full narrative of Captain Barclay\'s public and private matches; and an essay on training.', 'Thom, Walter', '2017-09-27', 10, 'https://www.gutenberg.org/ebooks/55644', 'en', 9805), +(28712, 'Abbotsford and Newstead Abbey', 'Irving, Washington', '2005-04-01', 40, 'https://www.gutenberg.org/ebooks/7948', 'en', 11556), +(28713, 'History of the English People, Index', 'Green, John Richard', '2008-05-20', 15, 'https://www.gutenberg.org/ebooks/25533', 'en', 198), +(28714, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 559, July 28, 1832', 'Various', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11706', 'en', 133), +(28715, 'Die Schaffnerin; Die Mächtigen: Novellen', 'Wassermann, Jakob', '2011-07-31', 37, 'https://www.gutenberg.org/ebooks/36918', 'de', 253), +(28716, 'Poems (1686)', 'Killigrew, Anne', '2012-10-16', 13, 'https://www.gutenberg.org/ebooks/41076', 'en', 466), +(28717, 'The Secret of Kralitz', 'Kuttner, Henry', '2010-05-29', 53, 'https://www.gutenberg.org/ebooks/32584', 'en', 11557), +(28718, 'Tom Swift and His Wizard Camera; Or, Thrilling Adventures While Taking Moving Pictures', 'Appleton, Victor', '1998-04-01', 45, 'https://www.gutenberg.org/ebooks/1283', 'en', 1456), +(28719, 'An Address to a Wealthy Libertine\r\nor, the Melancholy Effects of Seduction; with a Letter from an Unfortunate Farmer\'s Daughter, to her Parents in Norfolk', 'Parkerson, James', '2010-08-17', 17, 'https://www.gutenberg.org/ebooks/33456', 'en', 54), +(28720, 'The Procurator of Judea', 'France, Anatole', '2019-02-26', 21, 'https://www.gutenberg.org/ebooks/58967', 'en', 58), +(28721, 'Red Cloud, the Solitary Sioux: A Story of the Great Prairie', 'Butler, William Francis, Sir', '2018-05-08', 46, 'https://www.gutenberg.org/ebooks/57113', 'en', 1129), +(28722, 'The International Monthly, Volume 4, No. 1, August, 1851', 'Various', '2011-05-16', 22, 'https://www.gutenberg.org/ebooks/36124', 'en', 2522), +(28723, 'Chambers\'s Edinburgh Journal, No. 448\nVolume 18, New Series, July 31, 1852', 'Various', '2007-04-20', 10, 'https://www.gutenberg.org/ebooks/21193', 'en', 18), +(28724, 'The Treasure of Hidden Valley', 'Emerson, Willis George', '2016-06-30', 11, 'https://www.gutenberg.org/ebooks/52461', 'en', 1238), +(28725, 'People of Destiny: Americans as I saw them at Home and Abroad', 'Gibbs, Philip', '2012-06-08', 21, 'https://www.gutenberg.org/ebooks/39950', 'en', 7462), +(28726, 'The Powers of Europe and Fall of Sebastopol', 'A British officer', '2019-03-18', 17, 'https://www.gutenberg.org/ebooks/59089', 'en', 8474), +(28727, 'Miehuullisuutta', 'De Amicis, Edmondo', '2012-02-15', 10, 'https://www.gutenberg.org/ebooks/38882', 'fi', 179), +(28728, 'Lincoln\'s Inaugurals, Addresses and Letters (Selections)', 'Lincoln, Abraham', '2004-12-06', 12, 'https://www.gutenberg.org/ebooks/14274', 'en', 1716), +(28729, 'Men\'s Sewed Straw Hats\r\nReport of the United Stated Tariff Commission to the President of the United States (1926)', 'United States Tariff Commission', '2006-12-06', 16, 'https://www.gutenberg.org/ebooks/20041', 'en', 1531), +(28730, 'The Day of Temptation', 'Le Queux, William', '2012-10-09', 17, 'https://www.gutenberg.org/ebooks/40998', 'en', 61), +(28731, 'The Young Explorer; Or, Claiming His Fortune', 'Alger, Horatio, Jr.', '2004-05-01', 42, 'https://www.gutenberg.org/ebooks/5623', 'en', 751), +(28732, 'L\'Histoire de France racontée par les Contemporains (Tome 2/4)\r\nExtraits des Chroniques, des Mémoires et des Documents originaux, avec des sommaires et des résumés chronologiques', NULL, '2013-12-24', 12, 'https://www.gutenberg.org/ebooks/44504', 'fr', 1168), +(28733, 'With the Battle Fleet\r\nCruise of the Sixteen Battleships of the United States Atlantic Fleet from Hampton Roads to the Golden Gate, December, 1907-May, 1908', 'Matthews, Franklin', '2012-10-30', 17, 'https://www.gutenberg.org/ebooks/41244', 'en', 11558), +(28734, 'Royal Edinburgh: Her Saints, Kings, Prophets and Poets', 'Oliphant, Mrs. (Margaret)', '2008-06-05', 17, 'https://www.gutenberg.org/ebooks/25701', 'en', 11559), +(28735, 'The Lions of the Lord: A Tale of the Old West', 'Wilson, Harry Leon', '2004-03-01', 41, 'https://www.gutenberg.org/ebooks/11534', 'en', 315), +(28736, 'Proverb Stories', 'Alcott, Louisa May', '2018-06-13', 39, 'https://www.gutenberg.org/ebooks/57321', 'en', 1817), +(28737, 'Norine\'s Revenge, and, Sir Noel\'s Heir', 'Fleming, May Agnes', '2010-09-07', 85, 'https://www.gutenberg.org/ebooks/33664', 'en', 61), +(28738, 'Jack Harvey\'s Adventures; or, The Rival Campers Among the Oyster Pirates', 'Smith, Ruel Perley', '2012-08-02', 19, 'https://www.gutenberg.org/ebooks/40396', 'en', 7815), +(28739, 'Sanitary Statistics of Native Colonial Schools and Hospitals', 'Nightingale, Florence', '2016-07-26', 9, 'https://www.gutenberg.org/ebooks/52653', 'en', 11560), +(28740, 'Out To Win: The Story of America in France', 'Dawson, Coningsby', '2005-02-27', 5, 'https://www.gutenberg.org/ebooks/15194', 'en', 699), +(28741, 'L\'esprit de la révolution de 1789', 'Roederer, P.-L. (Pierre-Louis)', '2011-06-03', 20, 'https://www.gutenberg.org/ebooks/36316', 'fr', 5208), +(28742, 'The Memoirs of Count Grammont — Volume 03', 'Hamilton, Anthony, Count', '2004-12-04', 23, 'https://www.gutenberg.org/ebooks/5411', 'en', 11561), +(28743, 'Slavery', 'Channing, William Ellery', '2014-01-23', 25, 'https://www.gutenberg.org/ebooks/44736', 'en', 8180), +(28744, 'Punch, or the London Charivari, Volume 101, September 26, 1891', 'Various', '2004-11-14', 2, 'https://www.gutenberg.org/ebooks/14046', 'en', 134), +(28745, 'Weihnachtsabend', 'Mügge, Theodor', '2016-12-21', 5, 'https://www.gutenberg.org/ebooks/53781', 'de', 138), +(28746, 'Tuen, Slave and Empress', 'Nelson, Kathleen Gray', '2018-11-28', 11, 'https://www.gutenberg.org/ebooks/58369', 'en', 11562), +(28747, 'The History of England, from the Accession\r\nof James the II (Volume 1, Chapter 1)', 'Macaulay, Thomas Babington Macaulay, Baron', '2007-01-05', 8, 'https://www.gutenberg.org/ebooks/20273', 'en', 3001), +(28748, 'Jessica\'s First Prayer; and, Jessica\'s Mother', 'Stretton, Hesba', '2015-10-01', 30, 'https://www.gutenberg.org/ebooks/50104', 'en', 8225), +(28749, 'The Cry at Midnight', 'Wirt, Mildred A. (Mildred Augustine)', '2010-11-25', 47, 'https://www.gutenberg.org/ebooks/34441', 'en', 1842), +(28750, 'No Defense, Volume 3.', 'Parker, Gilbert', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6294', 'en', 61), +(28751, 'Jane Lends A Hand', 'Watkins, Shirley', '2011-03-17', 37, 'https://www.gutenberg.org/ebooks/35593', 'en', 11563), +(28752, 'Among Malay Pirates : a Tale of Adventure and Peril', 'Henty, G. A. (George Alfred)', '2005-01-01', 60, 'https://www.gutenberg.org/ebooks/7346', 'en', 7815), +(28753, 'Der Kunstreiter, 2. Band', 'Gerstäcker, Friedrich', '2014-06-21', 12, 'https://www.gutenberg.org/ebooks/46061', 'de', 138), +(28754, 'Life and Labors of Elder John Kline, the Martyr Missionary\nCollated from his Diary by Benjamin Funk', 'Kline, John', '2005-09-17', 20, 'https://www.gutenberg.org/ebooks/16711', 'en', 11564), +(28755, 'The Hunters', 'Samachson, Joseph', '2007-09-06', 31, 'https://www.gutenberg.org/ebooks/22524', 'en', 26), +(28756, 'The Mentor: Spain and Gibraltar, Vol. 1, Num. 31, Serial No. 31, September 15, 1913', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2015-08-29', 8, 'https://www.gutenberg.org/ebooks/49815', 'en', 1514), +(28757, 'Our Little Polish Cousin', 'Mendel, Florence Emma Voigt', '2013-08-20', 18, 'https://www.gutenberg.org/ebooks/43513', 'en', 11565), +(28758, 'The Works of Winston Churchill: A Linked Index of the Project Gutenberg Editions', 'Churchill, Winston', '2009-05-15', 38, 'https://www.gutenberg.org/ebooks/28822', 'en', 198), +(28759, 'The Evolution of Theology: an Anthropological Study\r\nEssay #8 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 55, 'https://www.gutenberg.org/ebooks/2634', 'en', 9677), +(28760, 'Sign Talk\r\nA Universal Signal Code, Without Apparatus, for Use in the Army, the Navy, Camping, Hunting, and Daily Life', 'Seton, Ernest Thompson', '2016-01-16', 18, 'https://www.gutenberg.org/ebooks/50938', 'en', 11253), +(28761, 'Louis XIV.\r\nMakers of History Series', 'Abbott, John S. C. (John Stevens Cabot)', '2008-10-26', 42, 'https://www.gutenberg.org/ebooks/27056', 'en', 1247), +(28762, 'Valvèdre', 'Sand, George', '2004-08-23', 20, 'https://www.gutenberg.org/ebooks/13263', 'fr', 61), +(28763, 'Ships at Work', 'Elting, Mary', '2017-09-02', 3, 'https://www.gutenberg.org/ebooks/55476', 'en', 11566), +(28764, 'Address by Honorable Franklin K. Lane, Secretary of the Interior at Conference of Regional Chairmen of the Highways Transport Committee Council of National Defense', 'United States. Council of National Defense. Highways Transport Committee', '2006-11-11', 11, 'https://www.gutenberg.org/ebooks/19759', 'en', 4067), +(28765, 'Simple Sabotage Field Manual', 'United States. Office of Strategic Services', '2008-08-04', 605, 'https://www.gutenberg.org/ebooks/26184', 'en', 11567), +(28766, 'Home Life of Great Authors', 'Griswold, Hattie Tyng', '2010-01-31', 43, 'https://www.gutenberg.org/ebooks/31133', 'en', 11568), +(28767, 'Harper\'s Young People, August 23, 1881\nAn Illustrated Weekly', 'Various', '2015-05-23', 5, 'https://www.gutenberg.org/ebooks/49029', 'en', 479), +(28768, 'The Strand Magazine, Vol. 07, Issue 40, April, 1894\r\nAn Illustrated Monthly', 'Various', '2014-11-17', 16, 'https://www.gutenberg.org/ebooks/47375', 'en', 2998), +(28769, 'The Minds and Manners of Wild Animals: A Book of Personal Observations', 'Hornaday, William T. (William Temple)', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6052', 'en', 2560), +(28770, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 291 - Supplement to Vol 10', 'Various', '2004-10-31', 10, 'https://www.gutenberg.org/ebooks/13899', 'en', 133), +(28771, 'Kaukasische vertellingen\r\nEene overvalling; Een houtkapping in het bosch; Een ontmoeting te velde met een moskousch kameraad', 'Tolstoy, Leo, graf', '2010-12-18', 21, 'https://www.gutenberg.org/ebooks/34687', 'nl', 2224), +(28772, 'The Phantoms Of The Foot-Bridge\n1895', 'Murfree, Mary Noailles', '2007-11-26', 7, 'https://www.gutenberg.org/ebooks/23630', 'en', 61), +(28773, 'The Art of War', 'Sunzi, active 6th century B.C.', '2005-12-28', 1583, 'https://www.gutenberg.org/ebooks/17405', 'en', 5135), +(28774, 'Homeward Bound; Or, the Chase: A Tale of the Sea', 'Cooper, James Fenimore', '2006-02-01', 54, 'https://www.gutenberg.org/ebooks/9826', 'en', 998), +(28775, 'I, the Unspeakable', 'Sheldon, Walter J.', '2016-02-14', 29, 'https://www.gutenberg.org/ebooks/51210', 'en', 109), +(28776, 'Handy Andy, Volume 2 — a Tale of Irish Life', 'Lover, Samuel', '2004-12-01', 10, 'https://www.gutenberg.org/ebooks/7180', 'en', 669), +(28777, 'The Knight Of Gwynne, Vol. 1 (of 2)', 'Lever, Charles James', '2011-04-02', 5, 'https://www.gutenberg.org/ebooks/35755', 'en', 11569), +(28778, 'Kauneuden kirous', 'Riehl, Wilhelm Heinrich', '2008-11-17', 7, 'https://www.gutenberg.org/ebooks/27290', 'fi', 1103), +(28779, 'Thuvia, Maid of Mars', 'Burroughs, Edgar Rice', '1993-07-01', 559, 'https://www.gutenberg.org/ebooks/72', 'en', 613), +(28780, 'Catriona', 'Stevenson, Robert Louis', '1996-07-01', 212, 'https://www.gutenberg.org/ebooks/589', 'en', 323), +(28781, 'Die krankheiterregenden Bakterien\r\nEntstehung, Heilung und Bekämpfung der bakteriellen Infektionskrankheiten des Menschen', 'Löhlein, Max', '2017-05-22', 8, 'https://www.gutenberg.org/ebooks/54762', 'de', 11570), +(28782, 'Eighteenth Century Essays on Shakespeare', 'Smith, David Nichol', '2009-10-10', 19, 'https://www.gutenberg.org/ebooks/30227', 'en', 11571), +(28783, 'Human Genome Project, Chromosome Number 20', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3520', 'en', 1841), +(28784, 'The Shepheard\'s Calender: Twelve Aeglogues Proportionable to the Twelve Monethes', 'Spenser, Edmund', '2013-04-27', 23, 'https://www.gutenberg.org/ebooks/42607', 'en', 466), +(28785, 'The Precipice: A Novel', 'Peattie, Elia Wilkinson', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/12177', 'en', 10637), +(28786, 'Chronicles of Strathearn', NULL, '2008-08-18', 13, 'https://www.gutenberg.org/ebooks/26342', 'en', 11572), +(28787, 'The Writings of Thomas Jefferson, Vol. 7 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2017-11-23', 22, 'https://www.gutenberg.org/ebooks/56035', 'en', 3311), +(28788, 'The Golden Bough: A Study in Comparative Religion (Vol. 1 of 2)', 'Frazer, James George', '2012-10-16', 210, 'https://www.gutenberg.org/ebooks/41082', 'en', 5025), +(28789, 'Zeppelin: The Story of a Great Achievement', 'Vissering, Harry', '2010-05-28', 25, 'https://www.gutenberg.org/ebooks/32570', 'en', 8210), +(28790, 'Random Rhymes and Rambles', 'Bill o\'th\' Hoylus End', '2012-03-19', 5, 'https://www.gutenberg.org/ebooks/39198', 'en', 2852), +(28791, 'Sestrina: A romance of the South Seas', 'Safroni-Middleton, A. (Arnold)', '2019-06-30', 65, 'https://www.gutenberg.org/ebooks/59841', 'en', 108), +(28792, 'Index of the Project Gutenberg Works of John Burroughs', 'Burroughs, John', '2019-03-01', 6, 'https://www.gutenberg.org/ebooks/58993', 'en', 198), +(28793, 'Melmoth Reconciled', 'Balzac, Honoré de', '2005-04-03', 33, 'https://www.gutenberg.org/ebooks/1277', 'en', 58), +(28794, 'Facts About Champagne and Other Sparkling Wines', 'Vizetelly, Henry', '2007-03-24', 16, 'https://www.gutenberg.org/ebooks/20889', 'en', 11573), +(28795, 'Η Ευρώπη κατά τον 19ον αιώνα', 'Karolides, Paulos', '2012-07-07', 11, 'https://www.gutenberg.org/ebooks/40150', 'el', 8474), +(28796, 'The Works of Francis Beaumont and John Fletcher in Ten Volumes: Volume 01.', 'Beaumont, Francis', '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/10620', 'en', 1790), +(28797, 'Proud and Lazy: A Story for Little Folks', 'Optic, Oliver', '2008-01-24', 19, 'https://www.gutenberg.org/ebooks/24415', 'en', 1817), +(28798, 'The Quest of the Historical Jesus\r\nA Critical Study of its Progress from Reimarus to Wrede', 'Schweitzer, Albert', '2014-04-16', 139, 'https://www.gutenberg.org/ebooks/45422', 'en', 11574), +(28799, 'A Treatise of Human Nature', 'Hume, David', '2003-12-01', 853, 'https://www.gutenberg.org/ebooks/4705', 'en', 354), +(28800, 'Turgenev: A Study', 'Garnett, Edward', '2018-03-22', 14, 'https://www.gutenberg.org/ebooks/56809', 'en', 11575), +(28801, 'The Golden Goose Book', 'Brooke, L. Leslie (Leonard Leslie)', '2007-04-24', 4, 'https://www.gutenberg.org/ebooks/21167', 'en', 1007), +(28802, 'Venereal Diseases in New Zealand (1922)\r\nReport of the Special Committee of the Board of Health appointed by the Hon. Minister of Health', 'New Zealand. Committee of the Board of Health', '2005-03-13', 16, 'https://www.gutenberg.org/ebooks/15352', 'en', 11576), +(28803, 'Amurath to Amurath', 'Bell, Gertrude Lowthian', '2016-07-04', 54, 'https://www.gutenberg.org/ebooks/52495', 'en', 2204), +(28804, 'The American Missionary — Volume 32, No. 11, November, 1878', 'Various', '2016-11-18', 2, 'https://www.gutenberg.org/ebooks/53547', 'en', 562), +(28805, 'Holidays at Roselands\r\nA Sequel to Elsie Dinsmore', 'Finley, Martha', '2004-12-06', 54, 'https://www.gutenberg.org/ebooks/14280', 'en', 1410), +(28806, 'Villainage in England: Essays in English Mediaeval History', 'Vinogradoff, Paul', '2012-02-14', 83, 'https://www.gutenberg.org/ebooks/38876', 'en', 11577), +(28807, 'Tales of the Sun; or, Folklore of Southern India', 'Cleeve, Lucas', '2011-08-07', 147, 'https://www.gutenberg.org/ebooks/37002', 'en', 8566), +(28808, 'The Auto Boys\' Mystery', 'Braden, James A. (James Andrew)', '2010-06-08', 9, 'https://www.gutenberg.org/ebooks/32742', 'en', 167), +(28809, 'Strive and Succeed; or, The Progress of Walter Conrad', 'Alger, Horatio, Jr.', '2017-12-19', 33, 'https://www.gutenberg.org/ebooks/56207', 'en', 11578), +(28810, 'El Choclo Tango', NULL, '2003-12-01', 3, 'https://www.gutenberg.org/ebooks/10412', 'en', 11579), +(28811, 'Booker T. Washington, Builder of a Civilization', 'Stowe, Lyman Beecher', '2008-02-16', 20, 'https://www.gutenberg.org/ebooks/24627', 'en', 11580), +(28812, 'Historia de la literatura y del arte dramático en España, tomo I', 'Schack, Adolf Friedrich von', '2010-09-10', 29, 'https://www.gutenberg.org/ebooks/33690', 'es', 8839), +(28813, 'Talvi-iltain tarinoita 1\nKuninkaan hansikas. Linnaisten kartanon viheriä kamari.', 'Topelius, Zacharias', '2011-12-21', 13, 'https://www.gutenberg.org/ebooks/38278', 'fi', 2168), +(28814, 'Venus and Adonis', 'Shakespeare, William', '1997-09-01', 178, 'https://www.gutenberg.org/ebooks/1045', 'en', 11581), +(28815, 'Stories of the Universe: Animal Life', 'Lindsay, B.', '2012-07-28', 43, 'https://www.gutenberg.org/ebooks/40362', 'en', 2360), +(28816, 'Middy and Ensign', 'Fenn, George Manville', '2007-05-08', 32, 'https://www.gutenberg.org/ebooks/21355', 'en', 11582), +(28817, 'On Commando', 'Van Warmelo, Dietlof', '2005-02-24', 18, 'https://www.gutenberg.org/ebooks/15160', 'en', 1311), +(28818, 'Little Pilgrimages Among the Men Who Have Written Famous Books', 'Harkins, E. F. (Edward Francis)', '2014-05-07', 20, 'https://www.gutenberg.org/ebooks/45610', 'en', 131), +(28819, 'Sylvia\'s Lovers — Complete', 'Gaskell, Elizabeth Cleghorn', '2003-10-01', 81, 'https://www.gutenberg.org/ebooks/4537', 'en', 98), +(28820, 'Frauds and Follies of the Fathers\r\nA Review of the Worth of Their Testimony to the Four Gospels', 'Wheeler, J. M. (Joseph Mazzini)', '2011-08-28', 23, 'https://www.gutenberg.org/ebooks/37230', 'en', 1759), +(28821, 'A Bible School Manual: Studies in the Book of Revelation\r\nAn introduction, analysis, and notes, containing a concise interpretation according to the symbolic view, numerous references to authorities, and general mention of other interpretations, with the text of the American revised version edited in paragraphs, for the use of Bible students', 'Hunter, Stephen Alexander', '2016-12-20', 22, 'https://www.gutenberg.org/ebooks/53775', 'en', 10558), +(28822, 'Royalty Restored; Or, London Under Charles II', 'Molloy, J. Fitzgerald (Joseph Fitzgerald)', '1999-09-01', 28, 'https://www.gutenberg.org/ebooks/1879', 'en', 11583), +(28823, 'A Night in the Snow\nor, A Struggle for Life', 'Carr, E. Donald (Edmund Donald)', '2007-01-04', 15, 'https://www.gutenberg.org/ebooks/20287', 'en', 11584), +(28824, 'Notes and Queries, Number 75, April 5, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-11-07', 11, 'https://www.gutenberg.org/ebooks/23402', 'en', 105), +(28825, 'Histoire de la peinture en Italie', 'Stendhal', '2015-05-11', 24, 'https://www.gutenberg.org/ebooks/48933', 'fr', 7807), +(28826, 'De muis, of De gestoorde nachtrust\r\neen berijmde geschiedenis in twaalf tafereelen voor jong en oud', 'Busch, Wilhelm', '2006-01-29', 15, 'https://www.gutenberg.org/ebooks/17637', 'nl', 11585), +(28827, 'Our Young Folks—Vol. I, No. II, February 1865\nAn Illustrated Magazine for Boys and Girls', 'Various', '2010-01-02', 18, 'https://www.gutenberg.org/ebooks/30829', 'en', 563), +(28828, 'An Introduction to the Study of Meteorites\nWith a List of the Meteorites Represented in the Collection', 'British Museum (Natural History). Department of Mineralogy', '2014-10-19', 14, 'https://www.gutenberg.org/ebooks/47147', 'en', 11586), +(28829, 'Donovan Pasha, and Some People of Egypt — Complete', 'Parker, Gilbert', '2004-11-18', 15, 'https://www.gutenberg.org/ebooks/6260', 'en', 2938), +(28830, 'A Course of Lectures on the Principles of Domestic Economy and Cookery', 'Corson, Juliet', '2011-03-13', 19, 'https://www.gutenberg.org/ebooks/35567', 'en', 1369), +(28831, 'Private Journal of Henry Francis Brooke\r\nLate Brigadier-General Commanding 2nd Infantry Brigade, Kandahar Field Force, Southern Afghanistan, from April 22nd to August 16th, 1880', 'Brooke, Henry Francis', '2014-06-25', 11, 'https://www.gutenberg.org/ebooks/46095', 'en', 11587), +(28832, 'Brittany', 'Baring-Gould, S. (Sabine)', '2016-01-24', 24, 'https://www.gutenberg.org/ebooks/51022', 'en', 11588), +(28833, 'The Doorway', 'Smith, Evelyn E.', '2009-06-17', 37, 'https://www.gutenberg.org/ebooks/29138', 'en', 179), +(28834, 'Stopover Planet', 'Gilbert, Robert E.', '2009-09-17', 33, 'https://www.gutenberg.org/ebooks/30015', 'en', 26); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(28835, 'The Christmas Banquet (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 34, 'https://www.gutenberg.org/ebooks/9228', 'en', 13), +(28836, 'Punch, or the London Charivari, Volume 100, April 4, 1891', 'Various', '2004-08-26', 10, 'https://www.gutenberg.org/ebooks/13297', 'en', 134), +(28837, 'Ancient Civilizations of Mexico and Central America\nThird and Revised Edition', 'Spinden, Herbert Joseph', '2017-04-14', 22, 'https://www.gutenberg.org/ebooks/54550', 'en', 11589), +(28838, 'Machines at Work', 'Elting, Mary', '2017-09-03', 11, 'https://www.gutenberg.org/ebooks/55482', 'en', 11590), +(28839, 'Friday, the Thirteenth: A Novel', 'Lawson, Thomas William', '2005-08-31', 82, 'https://www.gutenberg.org/ebooks/12345', 'en', 11591), +(28840, 'Diaries of Sir Moses and Lady Montefiore, Volume 1 (of 2)\r\nComprising Their Life and Work as Recorded in Their Diaries, from 1812 to 1883', 'Montefiore, Moses, Sir', '2008-08-02', 42, 'https://www.gutenberg.org/ebooks/26170', 'en', 11592), +(28841, 'The Chateau of Prince Polignac', 'Trollope, Anthony', '2003-02-01', 11, 'https://www.gutenberg.org/ebooks/3712', 'en', 797), +(28842, 'Alcohol and the Human Brain', 'Cook, Joseph', '2013-03-30', 19, 'https://www.gutenberg.org/ebooks/42435', 'en', 6241), +(28843, 'Thoughts on Art and Life', 'Leonardo, da Vinci', '2009-09-04', 155, 'https://www.gutenberg.org/ebooks/29904', 'en', 814), +(28844, 'Lister\'s Great Adventure', 'Bindloss, Harold', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/10076', 'en', 2126), +(28845, 'Six mois dans les Montagnes-Rocheuses', 'Beaugrand, Honoré', '2008-01-11', 18, 'https://www.gutenberg.org/ebooks/24243', 'fr', 3971), +(28846, 'Mrs. Lirriper\'s Legacy', 'Dickens, Charles', '1998-08-01', 38, 'https://www.gutenberg.org/ebooks/1421', 'en', 2255), +(28847, 'An Introduction to the History of Science', 'Libby, Walter', '2012-09-07', 50, 'https://www.gutenberg.org/ebooks/40706', 'en', 186), +(28848, 'Tales of Troy and Greece', 'Lang, Andrew', '2010-05-10', 201, 'https://www.gutenberg.org/ebooks/32326', 'en', 11593), +(28849, '甌北詩話', 'Zhao, Yi', '2008-05-08', 6, 'https://www.gutenberg.org/ebooks/25391', 'zh', 9527), +(28850, 'Joseph Priestley', 'Thorpe, T. E. (Thomas Edward)', '2018-02-28', 2, 'https://www.gutenberg.org/ebooks/56663', 'en', 11594), +(28851, 'Les Indes Noires', 'Verne, Jules', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5081', 'fr', 5828), +(28852, 'Les pianistes célèbres: silhouettes & médaillons', 'Marmontel, A. (Antoine)', '2011-10-07', 16, 'https://www.gutenberg.org/ebooks/37654', 'fr', 11595), +(28853, 'The Life of Sir Isaac Newton', 'Brewster, David', '2016-10-18', 69, 'https://www.gutenberg.org/ebooks/53311', 'en', 1671), +(28854, 'Fighting the Whales', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 20, 'https://www.gutenberg.org/ebooks/21731', 'en', 195), +(28855, 'Mr. Edward Arnold\'s New and Popular Books, December, 1901', NULL, '2005-03-30', 10, 'https://www.gutenberg.org/ebooks/15504', 'en', 6345), +(28856, 'Ye Book of Copperheads', 'Leland, Charles Godfrey', '2014-03-31', 12, 'https://www.gutenberg.org/ebooks/45274', 'en', 9643), +(28857, 'Diary of Samuel Pepys — Complete 1664 N.S.', 'Pepys, Samuel', '2004-10-31', 23, 'https://www.gutenberg.org/ebooks/4153', 'en', 738), +(28858, 'Sight to the Blind', 'Furman, Lucy S.', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/11998', 'en', 11596), +(28859, 'L\'Illustration, No. 3278, 23 Décembre 1905', 'Various', '2011-07-19', 6, 'https://www.gutenberg.org/ebooks/36786', 'fr', 150), +(28860, 'La Vie Électrique', 'Robida, Albert', '2011-01-28', 73, 'https://www.gutenberg.org/ebooks/35103', 'fr', 26), +(28861, 'The Summons', 'Mason, A. E. W. (Alfred Edward Woodley)', '2005-07-28', 21, 'https://www.gutenberg.org/ebooks/16381', 'en', 61), +(28862, 'Kun talonpojasta tuli herra', 'Kajander, Kalle', '2016-03-14', 6, 'https://www.gutenberg.org/ebooks/51446', 'fi', 41), +(28863, 'The Prairie Traveler: A Hand-book for Overland Expeditions', 'Marcy, Randolph Barnes', '2007-10-17', 80, 'https://www.gutenberg.org/ebooks/23066', 'en', 497), +(28864, 'Visages', 'Chevassu, Francis', '2015-12-02', 14, 'https://www.gutenberg.org/ebooks/50594', 'fr', 629), +(28865, 'Dewey and Other Naval Commanders', 'Ellis, Edward Sylvester', '2005-12-08', 32, 'https://www.gutenberg.org/ebooks/17253', 'en', 7989), +(28866, 'The Bishop\'s Apron: A study in the origins of a great family', 'Maugham, W. Somerset (William Somerset)', '2014-12-03', 42, 'https://www.gutenberg.org/ebooks/47523', 'en', 3014), +(28867, 'Two Months in the Camp of Big Bear', 'Delaney, Theresa', '2004-10-01', 17, 'https://www.gutenberg.org/ebooks/6604', 'en', 11597), +(28868, 'Historical Record of the Thirteenth Regiment of Light Dragoons\r\nContaining an Account of the Formation of the Regiment in 1715, and of Its Subsequent Services to 1842', 'Cannon, Richard', '2017-06-14', 8, 'https://www.gutenberg.org/ebooks/54908', 'en', 11598), +(28869, 'Sonnet #55', 'Shakespeare, William', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/12721', 'en', 54), +(28870, 'The Iron Pirate: A Plain Tale of Strange Happenings on the Sea', 'Pemberton, Max', '2008-09-03', 29, 'https://www.gutenberg.org/ebooks/26514', 'en', 324), +(28871, 'The Landlord at Lion\'s Head — Volume 2', 'Howells, William Dean', '2004-10-23', 35, 'https://www.gutenberg.org/ebooks/3376', 'en', 297), +(28872, 'Akra the Slave', 'Gibson, Wilfrid Wilson', '2013-02-08', 25, 'https://www.gutenberg.org/ebooks/42051', 'en', 8), +(28873, 'Punch, or the London Charivari, Vol. 150, March 15, 1916', 'Various', '2007-10-12', 21, 'https://www.gutenberg.org/ebooks/22988', 'en', 134), +(28874, 'La Repubblica partenopea\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Pompilj, Guido', '2013-07-10', 9, 'https://www.gutenberg.org/ebooks/43183', 'it', 1941), +(28875, 'Betty Gordon in the Land of Oil; Or, The Farm That Was Worth a Fortune', 'Emerson, Alice B.', '2009-11-14', 19, 'https://www.gutenberg.org/ebooks/30471', 'en', 11599), +(28876, 'The Senator\'s Bride', 'Miller, Alex. McVeigh, Mrs.', '2017-02-08', 25, 'https://www.gutenberg.org/ebooks/54134', 'en', 434), +(28877, 'From Memory\'s Shrine: The Reminscences of Carmen Sylva', 'Sylva, Carmen', '2016-04-06', 9, 'https://www.gutenberg.org/ebooks/51674', 'en', 8204), +(28878, 'Fromont and Risler — Volume 3', 'Daudet, Alphonse', '2003-04-01', 6, 'https://www.gutenberg.org/ebooks/3978', 'en', 560), +(28879, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon\nTome VII', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2007-08-25', 18, 'https://www.gutenberg.org/ebooks/22386', 'fr', 1770), +(28880, 'Stories of Great Men', 'Huntington, Faye', '2011-02-19', 50, 'https://www.gutenberg.org/ebooks/35331', 'en', 11600), +(28881, 'Der Ewige Jude', 'Vermeylen, August', '2014-12-20', 26, 'https://www.gutenberg.org/ebooks/47711', 'de', 4728), +(28882, 'Castle Nowhere', 'Woolson, Constance Fenimore', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6436', 'en', 11601), +(28883, 'The Mark of the Beast', 'Watson, Sidney', '2006-07-13', 28, 'https://www.gutenberg.org/ebooks/18815', 'en', 942), +(28884, 'The Cobbler In The Devil\'s Kitchen\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 15, 'https://www.gutenberg.org/ebooks/23254', 'en', 877), +(28885, 'Class of \'29', 'Lashin, Orrie', '2005-11-14', 19, 'https://www.gutenberg.org/ebooks/17061', 'en', 427), +(28886, 'Training the Teacher', 'Lamoreaux, Antoinette Abernethy', '2010-03-26', 18, 'https://www.gutenberg.org/ebooks/31791', 'en', 5113), +(28887, 'Froude\'s History of England', 'Kingsley, Charles', '2002-03-01', 25, 'https://www.gutenberg.org/ebooks/3144', 'en', 11602), +(28888, 'De vrouw in de hedendaagsche maatschappij', 'Bavinck, Herman', '2013-03-04', 12, 'https://www.gutenberg.org/ebooks/42263', 'nl', 11603), +(28889, 'A Classification and Subject Index for Cataloguing and Arranging the Books and Pamphlets of a Library', 'Dewey, Melvil', '2004-06-01', 219, 'https://www.gutenberg.org/ebooks/12513', 'en', 11604), +(28890, 'Pascal', 'Tulloch, John', '2008-09-29', 20, 'https://www.gutenberg.org/ebooks/26726', 'en', 11605), +(28891, 'Young Visitor to Mars', 'Elam, Richard M. (Richard Mace)', '2019-08-18', 665, 'https://www.gutenberg.org/ebooks/60133', 'en', 389), +(28892, 'Les derniers Iroquois', 'Chevalier, H. Emile (Henri Emile)', '2006-03-20', 29, 'https://www.gutenberg.org/ebooks/18029', 'fr', 1643), +(28893, 'Mirdja: Romaani', 'Onerva, L.', '2017-03-08', 8, 'https://www.gutenberg.org/ebooks/54306', 'fi', 175), +(28894, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 05 (1820)', 'Various', '2015-04-21', 4, 'https://www.gutenberg.org/ebooks/48759', 'en', 57), +(28895, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 15', 'Stevenson, Robert Louis', '2009-12-10', 24, 'https://www.gutenberg.org/ebooks/30643', 'en', 232), +(28896, 'A Smaller History of Greece: from the Earliest Times to the Roman Conquest', 'Smith, William', '2000-03-01', 57, 'https://www.gutenberg.org/ebooks/2096', 'en', 5663), +(28897, 'Count Bunker\r\nBeing a Bald Yet Veracious Chronicle Containing Some Further Particulars of Two Gentlemen Whose Previous Careers Were Touched Upon in a Tome Entitled \"The Lunatic at Large\"', 'Clouston, J. Storer (Joseph Storer)', '1999-01-01', 13, 'https://www.gutenberg.org/ebooks/1613', 'en', 637), +(28898, 'Talks About Flowers.', 'Wellcome, M. D., Mrs.', '2012-08-19', 30, 'https://www.gutenberg.org/ebooks/40534', 'en', 3879), +(28899, 'Johnson \"Jass\" Blues\r\nFox Trot', NULL, '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10244', 'en', 11606), +(28900, 'Sarah Bernhardt', 'Huret, Jules', '2018-07-26', 12, 'https://www.gutenberg.org/ebooks/57583', 'en', 11607), +(28901, 'Special Messenger', 'Chambers, Robert W. (Robert William)', '2007-12-29', 18, 'https://www.gutenberg.org/ebooks/24071', 'en', 403), +(28902, 'El Payador, Vol. I\nHijo de la Pampa', 'Lugones, Leopoldo', '2018-01-28', 26, 'https://www.gutenberg.org/ebooks/56451', 'es', 11608), +(28903, 'Fædra: Brudstykker af et Livs Historie', 'Bang, Herman', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11396', 'da', 61), +(28904, 'Command', 'McFee, William', '2010-04-24', 19, 'https://www.gutenberg.org/ebooks/32114', 'en', 61), +(28905, 'The Trouble with Truth', 'Grow, Julian F.', '2016-09-22', 19, 'https://www.gutenberg.org/ebooks/53123', 'en', 585), +(28906, 'Lost in the Cañon\r\nThe Story of Sam Willett\'s Adventures on the Great Colorado of the West', 'Calhoun, A. R. (Alfred Rochefort)', '2011-09-17', 13, 'https://www.gutenberg.org/ebooks/37466', 'en', 315), +(28907, 'Life of Elie Metchnikoff, 1845-1916', 'Metchnikoff, Olga', '2013-11-16', 9, 'https://www.gutenberg.org/ebooks/44194', 'en', 11609), +(28908, 'Koti-satuja Lapsille ja Nuorisolle', 'Grimm, Jacob', '2014-03-01', 14, 'https://www.gutenberg.org/ebooks/45046', 'fi', 6168), +(28909, 'Memoirs of General William T. Sherman — Complete', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 287, 'https://www.gutenberg.org/ebooks/4361', 'en', 1433), +(28910, 'Notes and Queries, Number 58, December 7, 1850\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-05-16', 20, 'https://www.gutenberg.org/ebooks/21503', 'en', 105), +(28911, 'The Journal of Geology, May-June 1893\r\nA Semi-Quarterly Magazone of Geology and Related Sciences', 'Various', '2019-05-02', 10, 'https://www.gutenberg.org/ebooks/59419', 'en', 11610), +(28912, 'Der Mann von vierzig Jahren', 'Wassermann, Jakob', '2005-04-30', 35, 'https://www.gutenberg.org/ebooks/15736', 'de', 10855), +(28913, 'Haviland\'s Chum', 'Mitford, Bertram', '2010-06-20', 7, 'https://www.gutenberg.org/ebooks/32928', 'en', 1655), +(28914, 'Pictures and Stories from Uncle Tom\'s Cabin', 'Stowe, Harriet Beecher', '2009-02-08', 36, 'https://www.gutenberg.org/ebooks/28021', 'en', 8748), +(28915, 'Entre Deux Ames', 'Delly, pseud.', '2009-01-21', 31, 'https://www.gutenberg.org/ebooks/27855', 'fr', 687), +(28916, 'The Brown Mouse', 'Quick, Herbert', '2008-10-21', 29, 'https://www.gutenberg.org/ebooks/26987', 'en', 11611), +(28917, 'The Early Life of Mark Rutherford (W. Hale White)', 'White, William Hale', '2005-01-01', 11, 'https://www.gutenberg.org/ebooks/7379', 'en', 11612), +(28918, 'The Song of the Wolf', 'Mayer, Frank', '2010-04-09', 56, 'https://www.gutenberg.org/ebooks/31930', 'en', 7322), +(28919, 'The Anatomy of Suicide', 'Winslow, Forbes', '2016-01-12', 12, 'https://www.gutenberg.org/ebooks/50907', 'en', 11157), +(28920, 'The Story of the Treasure Seekers\r\nBeing the Adventures of the Bastable Children in Search of a Fortune', 'Nesbit, E. (Edith)', '1997-01-01', 327, 'https://www.gutenberg.org/ebooks/770', 'en', 11613), +(28921, 'Sonnets from the Crimea', 'Mickiewicz, Adam', '2008-10-27', 15, 'https://www.gutenberg.org/ebooks/27069', 'en', 8), +(28922, 'Margareeta: Historiallisia kertomuksia I', 'Ivalo, Santeri', '2014-09-15', 12, 'https://www.gutenberg.org/ebooks/46862', 'fi', 456), +(28923, 'Aune', 'Hellén, Immi', '2017-08-28', 9, 'https://www.gutenberg.org/ebooks/55449', 'fi', 5797), +(28924, 'Young Lucretia and Other Stories', 'Freeman, Mary Eleanor Wilkins', '2006-11-11', 20, 'https://www.gutenberg.org/ebooks/19766', 'en', 388), +(28925, 'Things to Know About Trade-Marks: A Manual of Trade-Mark Information', 'J. Walter Thompson Company', '2015-05-21', 8, 'https://www.gutenberg.org/ebooks/49016', 'en', 11614), +(28926, 'The Bible, Douay-Rheims, Book 31: Ezechiel\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8331', 'en', 11615), +(28927, 'Alfred Russel Wallace: Letters and Reminiscences, Vol. 1', 'Wallace, Alfred Russel', '2005-06-07', 36, 'https://www.gutenberg.org/ebooks/15997', 'en', 11616), +(28928, 'Camões e a Fisionomia Espiritual da Pátria', 'Coimbra, Leonardo', '2010-06-13', 10, 'https://www.gutenberg.org/ebooks/32789', 'pt', 11617), +(28929, 'Old New Zealand: A Tale of the Good Old Times\r\nAnd a History of the War in the North against the Chief Heke, in the Year 1845', 'Maning, Frederick Edward', '2012-04-03', 20, 'https://www.gutenberg.org/ebooks/39361', 'en', 11618), +(28930, 'Punch, or the London Charivari, Volume 102, February 13, 1892', 'Various', '2005-01-31', 8, 'https://www.gutenberg.org/ebooks/14845', 'en', 134), +(28931, 'The American Bee Journal, Volume XXXIII, No. 4, January 25, 1894', 'Various', '2019-04-15', 9, 'https://www.gutenberg.org/ebooks/59284', 'en', 2825), +(28932, 'The Old Blood', 'Palmer, Frederick', '2011-06-11', 15, 'https://www.gutenberg.org/ebooks/36329', 'en', 579), +(28933, 'The Norwich Directory [1802]', 'Peck, Thomas', '2014-01-19', 12, 'https://www.gutenberg.org/ebooks/44709', 'en', 11619), +(28934, 'Sandy', 'Rice, Alice Caldwell Hegan', '2004-11-18', 49, 'https://www.gutenberg.org/ebooks/14079', 'en', 61), +(28935, 'The Passing of Empire', 'Fielding, H. (Harold)', '2018-11-25', 9, 'https://www.gutenberg.org/ebooks/58356', 'en', 1707), +(28936, 'Individualisme en socialisme', 'Wilde, Oscar', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11739', 'nl', 254), +(28937, 'Ensaio sobre a inconstitucionalidade das leis no direito português', 'Tello de Magalhães Collaço, João Maria', '2011-07-31', 9, 'https://www.gutenberg.org/ebooks/36927', 'pt', 11620), +(28938, 'L\'Illustration, No. 3672, 12 Juillet 1913', 'Various', '2012-03-15', 3, 'https://www.gutenberg.org/ebooks/39153', 'fr', 150), +(28939, 'The Onslaught from Rigel', 'Pratt, Fletcher', '2012-10-14', 54, 'https://www.gutenberg.org/ebooks/41049', 'en', 2564), +(28940, 'The Campaign of 1776 around New York and Brooklyn\r\nIncluding a new and circumstantial account of the battle of Long island and the loss of New York, with a review of events to the close of the year', 'Johnston, Henry Phelps', '2007-07-03', 29, 'https://www.gutenberg.org/ebooks/21990', 'en', 11621), +(28941, 'Dreams', 'Bergson, Henri', '2007-03-17', 225, 'https://www.gutenberg.org/ebooks/20842', 'en', 6758), +(28942, 'Roland Cashel, Volume II (of II)', 'Lever, Charles James', '2010-08-19', 19, 'https://www.gutenberg.org/ebooks/33469', 'en', 61), +(28943, 'Horse Training by Modern Methods', 'Pope, Allan Melvill', '2019-02-24', 6, 'https://www.gutenberg.org/ebooks/58958', 'en', 4743), +(28944, 'The Inhabitants of the Philippines', 'Sawyer, Frederic H.', '2011-11-21', 61, 'https://www.gutenberg.org/ebooks/38081', 'en', 4796), +(28945, 'The Interesting Narrative of the Life of Olaudah Equiano, Or Gustavus Vassa, The African\nWritten By Himself', 'Equiano, Olaudah', '2005-03-17', 904, 'https://www.gutenberg.org/ebooks/15399', 'en', 7913), +(28946, 'The Yellow Book, An Illustrated Quarterly. Vol. 1, April 1894', NULL, '2013-01-19', 40, 'https://www.gutenberg.org/ebooks/41875', 'en', 162), +(28947, 'Doodles, the Sunshine Boy', 'Dowd, Emma C.', '2018-10-25', 9, 'https://www.gutenberg.org/ebooks/58164', 'en', 2788), +(28948, 'Running Free', 'Connolly, James B. (James Brendan)', '2018-09-15', 17, 'https://www.gutenberg.org/ebooks/57910', 'en', 112), +(28949, 'Literary Taste: How to Form It\r\nWith Detailed Instructions for Collecting a Complete Library of English Literature', 'Bennett, Arnold', '2004-10-25', 39, 'https://www.gutenberg.org/ebooks/13852', 'en', 11622), +(28950, 'Les Fleurs du Mal', 'Baudelaire, Charles', '2004-07-01', 341, 'https://www.gutenberg.org/ebooks/6099', 'fr', 4086), +(28951, 'Dave Dawson in Libya', 'Bowen, Robert Sidney', '2015-10-25', 32, 'https://www.gutenberg.org/ebooks/50309', 'en', 1004), +(28952, 'Harper\'s Young People, November 25, 1879\nAn Illustrated Weekly', 'Various', '2009-02-28', 1, 'https://www.gutenberg.org/ebooks/28213', 'en', 479), +(28953, 'Testamento Poetico-Anachreontico', 'Lima, João de Figueiredo Maio e', '2007-09-23', 10, 'https://www.gutenberg.org/ebooks/22729', 'pt', 8), +(28954, 'The Pony Rider Boys with the Texas Rangers; Or, On the Trail of the Border Bandits', 'Patchin, Frank Gee', '2004-07-22', 13, 'https://www.gutenberg.org/ebooks/12980', 'en', 5911), +(28955, 'The Life of Me: An Autobiography', 'Johnson, Clarence Edgar', '1996-05-01', 44, 'https://www.gutenberg.org/ebooks/542', 'en', 11623), +(28956, 'Quiet Talks on Following the Christ', 'Gordon, S. D. (Samuel Dickey)', '2006-06-01', 21, 'https://www.gutenberg.org/ebooks/18486', 'en', 6957), +(28957, 'The History of England, from the Accession of James II — Volume 2', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 71, 'https://www.gutenberg.org/ebooks/2439', 'en', 3001), +(28958, 'The Journals of Major-Gen. C. G. Gordon, C.B., at Kartoum.', 'Gordon, Charles George', '2015-06-16', 34, 'https://www.gutenberg.org/ebooks/49224', 'en', 11624), +(28959, 'Moral Philosophy: Ethics, Deontology and Natural Law', 'Rickaby, Joseph', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8103', 'en', 680), +(28960, 'Dorothy on a Ranch', 'Raymond, Evelyn', '2008-08-22', 34, 'https://www.gutenberg.org/ebooks/26389', 'en', 315), +(28961, 'Dick Lionheart', 'Jarvis, Mary Rowles', '2006-10-16', 2, 'https://www.gutenberg.org/ebooks/19554', 'en', 153), +(28962, 'Purgatory: Doctrinal, Historical, and Poetical', 'Sadlier, J., Mrs.', '2005-04-01', 11, 'https://www.gutenberg.org/ebooks/7977', 'en', 9130), +(28963, 'For Faith and Freedom', 'Besant, Walter', '2014-02-19', 29, 'https://www.gutenberg.org/ebooks/44963', 'en', 1982), +(28964, 'The Principles of Leather Manufacture', 'Procter, H. R. (Henry Richardson)', '2018-07-20', 29, 'https://www.gutenberg.org/ebooks/57548', 'en', 8138), +(28965, '鬼谷子', 'Guiguzi, active 4th century B.C.', '2008-04-25', 58, 'https://www.gutenberg.org/ebooks/25168', 'zh', 1493), +(28966, 'Medieval English Nunneries c. 1275 to 1535', 'Power, Eileen', '2012-04-25', 80, 'https://www.gutenberg.org/ebooks/39537', 'en', 11625), +(28967, 'The Life and Adventures of Guzman D\'Alfarache, or the Spanish Rogue, vol. 1/3', 'Alemán, Mateo', '2016-08-14', 11, 'https://www.gutenberg.org/ebooks/52806', 'en', 5615), +(28968, 'Some Experiences of a New Guinea Resident Magistrate', 'Monckton, C. A. W. (Charles Arthur Whitmore)', '2018-12-19', 7, 'https://www.gutenberg.org/ebooks/58500', 'en', 11626), +(28969, 'A Concise Biographical Sketch of William Penn', 'Evans, Charles', '2010-10-02', 7, 'https://www.gutenberg.org/ebooks/33831', 'en', 8612), +(28970, 'An Account of the Foxglove and some of its Medical Uses\nWith Practical Remarks on Dropsy and Other Diseases', 'Withering, William', '2008-03-21', 36, 'https://www.gutenberg.org/ebooks/24886', 'en', 11627), +(28971, 'Tales and Novels of J. de La Fontaine — Volume 04', 'La Fontaine, Jean de', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/5278', 'en', 2629), +(28972, 'The Opened Shutters: A Novel', 'Burnham, Clara Louise', '2008-07-02', 36, 'https://www.gutenberg.org/ebooks/25954', 'en', 11628), +(28973, 'Essays on Art', 'Clutton-Brock, A. (Arthur)', '2005-07-02', 17, 'https://www.gutenberg.org/ebooks/16178', 'en', 787), +(28974, 'Shall Turkey Live or Die?', 'Carlyle, Thomas', '2014-08-17', 24, 'https://www.gutenberg.org/ebooks/46608', 'en', 11629), +(28975, 'The Accomplished Muskrat Trapper: A Book on Trapping for Amateurs', 'Schmidt, Arno Erdman', '2010-11-07', 19, 'https://www.gutenberg.org/ebooks/34228', 'en', 1904), +(28976, 'The Sleuth of St. James\'s Square', 'Post, Melville Davisson', '2001-10-01', 81, 'https://www.gutenberg.org/ebooks/2861', 'en', 3511), +(28977, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 11, November, 1880', 'Various', '2009-05-03', 7, 'https://www.gutenberg.org/ebooks/28677', 'en', 1829), +(28978, 'The Mentor: Photography, Vol. 6, Num. 12, Serial No. 160, August 1, 1918', 'Anderson, Paul', '2015-08-06', 10, 'https://www.gutenberg.org/ebooks/49640', 'en', 3737), +(28979, 'The Iroquois Book of Rites', 'Hale, Horatio', '2005-07-01', 51, 'https://www.gutenberg.org/ebooks/8567', 'en', 11630), +(28980, 'Pikku haltijoita', 'Stowe, Harriet Beecher', '2005-10-25', 5, 'https://www.gutenberg.org/ebooks/16944', 'fi', 3407), +(28981, 'Stonehenge, Today and Yesterday', 'Stevens, Frank', '2006-08-27', 30, 'https://www.gutenberg.org/ebooks/19130', 'en', 11631), +(28982, 'The Poison Belt', 'Doyle, Arthur Conan', '1994-04-01', 337, 'https://www.gutenberg.org/ebooks/126', 'en', 26), +(28983, 'Carta bollata', 'Farina, Salvatore', '2006-03-01', 12, 'https://www.gutenberg.org/ebooks/17896', 'it', 61), +(28984, 'Letters of a Radio-Engineer to His Son', 'Mills, John', '2009-12-16', 25, 'https://www.gutenberg.org/ebooks/30688', 'en', 11632), +(28985, 'Non-Criminal Prisons\r\nEnglish Debtor\'s Prisons and Prisons of War; French War Prisons; American War Prisons with References to Those of Other Lands', 'Griffiths, Arthur', '2015-04-25', 6, 'https://www.gutenberg.org/ebooks/48792', 'en', 11633), +(28986, 'Aarteen etsijät', 'Curwood, James Oliver', '2017-10-25', 25, 'https://www.gutenberg.org/ebooks/55811', 'fi', 1555), +(28987, 'Neighbor Nelly Socks\nBeing the Sixth and Last Book of the Series', 'Barrow, Sarah L.', '2009-08-03', 14, 'https://www.gutenberg.org/ebooks/29597', 'en', 195), +(28988, 'Argent et Noblesse', 'Conscience, Hendrik', '2005-12-13', 12, 'https://www.gutenberg.org/ebooks/17298', 'fr', 61), +(28989, 'Madame Roland, Makers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2009-03-30', 26, 'https://www.gutenberg.org/ebooks/28445', 'en', 11634), +(28990, 'Visions and Beliefs in the West of Ireland, Second Series', NULL, '2013-10-18', 26, 'https://www.gutenberg.org/ebooks/43974', 'en', 11635), +(28991, 'Dinosaurs, with Special Reference to the American Museum Collections', 'Matthew, William Diller', '2006-09-16', 31, 'https://www.gutenberg.org/ebooks/19302', 'en', 11636), +(28992, 'The Old Dominion', 'James, G. P. R. (George Payne Rainsford)', '2015-07-18', 9, 'https://www.gutenberg.org/ebooks/49472', 'en', 11637), +(28993, 'The Nebuly Coat', 'Falkner, John Meade', '2007-10-11', 57, 'https://www.gutenberg.org/ebooks/22943', 'en', 11638), +(28994, 'Tarzan and the Jewels of Opar', 'Burroughs, Edgar Rice', '2005-08-01', 7, 'https://www.gutenberg.org/ebooks/8755', 'en', 635), +(28995, 'Walladmor, Vol. 2 (of 2)\r\n\"Freely Translated into German from the English of Sir Walter Scott.\" And Now Freely Translated from the German into English.', 'Alexis, Willibald', '2010-03-09', 12, 'https://www.gutenberg.org/ebooks/31568', 'en', 61), +(28996, 'Robinson Crusoe', 'Defoe, Daniel', '2006-01-01', 19, 'https://www.gutenberg.org/ebooks/9687', 'en', 1526), +(28997, 'En roman om förste konsuln\r\nFrån den 18 Brumaire till freden i Amiens', 'Malling, Mathilda', '2007-12-18', 8, 'https://www.gutenberg.org/ebooks/23891', 'sv', 4854), +(28998, 'An English Squire', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-08', 7, 'https://www.gutenberg.org/ebooks/43148', 'en', 376), +(28999, 'Guide to Life and Literature of the Southwest, with a Few Observations', 'Dobie, J. Frank (James Frank)', '1995-08-01', 89, 'https://www.gutenberg.org/ebooks/314', 'en', 11639), +(29000, 'Notes and Queries, Number 19, March 9, 1850', 'Various', '2004-10-05', 13, 'https://www.gutenberg.org/ebooks/13638', 'en', 105), +(29001, 'The Rider of Golden Bar', 'White, William Patterson', '2011-01-02', 23, 'https://www.gutenberg.org/ebooks/34826', 'en', 315), +(29002, 'Das Stunden-Buch', 'Rilke, Rainer Maria', '2008-01-15', 83, 'https://www.gutenberg.org/ebooks/24288', 'de', 4162), +(29003, 'Ten Englishmen of the Nineteenth Century', 'Joy, James Richard', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/5876', 'en', 11640), +(29004, 'The Lady of the Forest: A Story for Girls', 'Meade, L. T.', '2012-05-15', 13, 'https://www.gutenberg.org/ebooks/39705', 'en', 11641), +(29005, 'Crescent and Iron Cross', 'Benson, E. F. (Edward Frederic)', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/10881', 'en', 3565), +(29006, 'Torchy and Vee', 'Ford, Sewell', '2007-02-19', 32, 'https://www.gutenberg.org/ebooks/20628', 'en', 1660), +(29007, 'Windmills and wooden shoes', 'Grant, Maude M.', '2019-01-20', 7, 'https://www.gutenberg.org/ebooks/58732', 'en', 11642), +(29008, 'New Books & New Editions, Published by Ward, Lock, and Tyler', 'Ward, Lock, & Tyler', '2016-06-01', 18, 'https://www.gutenberg.org/ebooks/52208', 'en', 2663), +(29009, 'A Popular History of France from the Earliest Times, Volume 3', 'Guizot, François', '2004-04-01', 36, 'https://www.gutenberg.org/ebooks/11953', 'en', 624), +(29010, 'Diary of Samuel Pepys — Volume 73: April/May 1669', 'Pepys, Samuel', '2003-06-01', 21, 'https://www.gutenberg.org/ebooks/4198', 'en', 2197), +(29011, 'Froth: A Novel', 'Palacio Valdés, Armando', '2011-12-26', 13, 'https://www.gutenberg.org/ebooks/38411', 'en', 480), +(29012, 'Kittyboy\'s Christmas', 'Blanchard, Amy Ella', '2017-01-08', 6, 'https://www.gutenberg.org/ebooks/53920', 'en', 1430), +(29013, 'That Last Waif; or, Social Quarantine', 'Fletcher, Horace', '2014-02-24', 18, 'https://www.gutenberg.org/ebooks/44997', 'en', 3665), +(29014, 'Our Little Russian Cousin', 'Wade, Mary Hazelton Blanchard', '2014-05-31', 29, 'https://www.gutenberg.org/ebooks/45845', 'en', 11643), +(29015, 'The Tale of Master Meadow Mouse', 'Bailey, Arthur Scott', '2008-03-19', 29, 'https://www.gutenberg.org/ebooks/24872', 'en', 1655), +(29016, 'Polly in New York', 'Roy, Lillian Elizabeth', '2011-09-17', 17, 'https://www.gutenberg.org/ebooks/37459', 'en', 4286), +(29017, 'The Art of Graining: How Acquired and How Produced.\r\nWith the description of colors and their applications.', 'Pickert, Charles', '2014-03-08', 6, 'https://www.gutenberg.org/ebooks/45079', 'en', 5668), +(29018, 'Young Sioux Warrior', 'Kroll, Francis Lynde', '2019-05-03', 28, 'https://www.gutenberg.org/ebooks/59426', 'en', 11644), +(29019, 'The Christmas Angel', 'Brown, Abbie Farwell', '2005-04-25', 28, 'https://www.gutenberg.org/ebooks/15709', 'en', 585), +(29020, 'The Sapphire Cross', 'Fenn, George Manville', '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32917', 'en', 61), +(29021, 'Melomaniacs', 'Huneker, James', '2009-08-22', 19, 'https://www.gutenberg.org/ebooks/29751', 'en', 398), +(29022, 'Cinq Mars — Volume 1', 'Vigny, Alfred de', '2003-04-01', 12, 'https://www.gutenberg.org/ebooks/3947', 'en', 2895), +(29023, 'How to Speak and Write Correctly', 'Devlin, Joseph', '2004-09-01', 383, 'https://www.gutenberg.org/ebooks/6409', 'en', 11645), +(29024, 'The River Motor Boat Boys on the Rio Grande: In Defense of the Rambler', 'Gordon, Harry', '2015-12-30', 4, 'https://www.gutenberg.org/ebooks/50799', 'en', 2794), +(29025, 'Following the Equator: A Journey Around the World', 'Twain, Mark', '2004-06-24', 280, 'https://www.gutenberg.org/ebooks/2895', 'en', 3614), +(29026, 'The Roof Tree', 'Buck, Charles Neville', '2009-05-04', 16, 'https://www.gutenberg.org/ebooks/28683', 'en', 1909), +(29027, 'Normandy, Illustrated, Part 1', 'Home, Gordon', '2004-08-12', 10, 'https://www.gutenberg.org/ebooks/8593', 'en', 6545), +(29028, 'An Anarchist Woman', 'Hapgood, Hutchins', '2008-09-28', 20, 'https://www.gutenberg.org/ebooks/26719', 'en', 11646), +(29029, 'In Het Rijk van Vulcaan\nde Uitbarsting van Krakatau en Hare Gevolgen', 'Sandick, R. A. (Rudolf Adriaan) van', '2006-03-19', 23, 'https://www.gutenberg.org/ebooks/18016', 'nl', 11647), +(29030, 'L\'ancien régime et la révolution', 'Tocqueville, Alexis de', '2017-03-10', 64, 'https://www.gutenberg.org/ebooks/54339', 'fr', 2317), +(29031, 'Dream Life: A Fable of the Seasons', 'Mitchell, Donald Grant', '2006-02-26', 21, 'https://www.gutenberg.org/ebooks/17862', 'en', 279), +(29032, 'Helbeck of Bannisdale — Volume I', 'Ward, Humphry, Mrs.', '2005-12-01', 29, 'https://www.gutenberg.org/ebooks/9441', 'en', 1397), +(29033, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 07 (1820)', 'Various', '2015-04-22', 8, 'https://www.gutenberg.org/ebooks/48766', 'en', 2757), +(29034, 'Geographic Variation in the Harvest Mouse, Reithrodontomys megalotis, On the Central Great Plains And in Adjacent Regions', 'Jones, J. Knox', '2009-08-01', 29, 'https://www.gutenberg.org/ebooks/29563', 'en', 11648), +(29035, 'Les Phénomènes Psychiques Occultes: État Actuel de la Question', 'Coste, Albert', '2013-05-30', 14, 'https://www.gutenberg.org/ebooks/42852', 'fr', 6363), +(29036, 'Friaren från landet: Lustspel', 'Runeberg, Johan Ludvig', '2016-03-17', 28, 'https://www.gutenberg.org/ebooks/51479', 'sv', 8235), +(29037, 'My Friend The Murderer', 'Doyle, Arthur Conan', '2007-10-17', 61, 'https://www.gutenberg.org/ebooks/23059', 'en', 179), +(29038, 'Madame Sans-Gêne, Tome 3\r\nLe Roi de Rome', 'Lepelletier, Edmond', '2013-10-19', 8, 'https://www.gutenberg.org/ebooks/43980', 'fr', 248), +(29039, 'The Athelings; or, the Three Gifts. Vol. 2/3', 'Oliphant, Mrs. (Margaret)', '2017-06-19', 11, 'https://www.gutenberg.org/ebooks/54937', 'en', 2024), +(29040, 'The River-Names of Europe', 'Ferguson, Robert', '2011-04-18', 22, 'https://www.gutenberg.org/ebooks/35900', 'en', 11649), +(29041, 'Die große Gauklerin: Ein Roman aus Venedig', 'Brachvogel, Carry', '2015-07-19', 9, 'https://www.gutenberg.org/ebooks/49486', 'de', 549), +(29042, 'The Wandering Jew — Volume 11', 'Sue, Eugène', '2004-10-25', 11, 'https://www.gutenberg.org/ebooks/3349', 'en', 10672), +(29043, 'Brother Jacob', 'Eliot, George', '2006-01-01', 12, 'https://www.gutenberg.org/ebooks/9673', 'en', 2004), +(29044, 'De zoon van Kazan', 'Curwood, James Oliver', '2015-03-22', 8, 'https://www.gutenberg.org/ebooks/48554', 'nl', 3276), +(29045, '恨海', 'Wu, Jianren', '2007-12-15', 16, 'https://www.gutenberg.org/ebooks/23865', 'zh', 11650), +(29046, 'Someone Comes to Town, Someone Leaves Town', 'Doctorow, Cory', '2006-04-21', 51, 'https://www.gutenberg.org/ebooks/18224', 'en', 11651), +(29047, 'A District Messenger Boy, and A Necktie Party', 'Otis, James', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/5882', 'en', 153), +(29048, 'Old Lady Mary: A Story of the Seen and the Unseen', 'Oliphant, Mrs. (Margaret)', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10049', 'en', 1380), +(29049, 'Die Traumdeutung', 'Freud, Sigmund', '2012-09-12', 174, 'https://www.gutenberg.org/ebooks/40739', 'de', 6758), +(29050, 'The Story of Charles Strange: A Novel. Vol. 1 (of 3)', 'Wood, Henry, Mrs.', '2012-01-20', 33, 'https://www.gutenberg.org/ebooks/38623', 'en', 61), +(29051, 'The Trail of the Sandhill Stag', 'Seton, Ernest Thompson', '2010-05-10', 26, 'https://www.gutenberg.org/ebooks/32319', 'en', 110), +(29052, 'String Quartet No. 02 in G major Opus 18', 'Beethoven, Ludwig van', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4950', 'en', 909), +(29053, 'Stoneheart: A Romance', 'Aimard, Gustave', '2013-12-09', 12, 'https://www.gutenberg.org/ebooks/44399', 'en', 11652), +(29054, 'At Sunwich Port, Part 5.\nContents: Chapters 21-25', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/10875', 'en', 2079), +(29055, 'Index of the Project Gutenberg Works of Christopher Morley', 'Morley, Christopher', '2019-05-26', 16, 'https://www.gutenberg.org/ebooks/59614', 'en', 198), +(29056, 'An Introduction to the Study of Browning', 'Symons, Arthur', '2006-01-25', 35, 'https://www.gutenberg.org/ebooks/17608', 'en', 8478), +(29057, 'A World by the Tale', 'Garrett, Randall', '2009-12-31', 63, 'https://www.gutenberg.org/ebooks/30816', 'en', 26), +(29058, 'Fairy Tales from Many Lands', 'Pyle, Katharine', '2014-10-23', 52, 'https://www.gutenberg.org/ebooks/47178', 'en', 1007), +(29059, 'Hester\'s Counterpart: A Story of Boarding School Life', 'Baird, Jean K. (Jean Katherine)', '2008-10-20', 40, 'https://www.gutenberg.org/ebooks/26973', 'en', 1877), +(29060, 'The Middle Period, 1817-1858', 'Burgess, John William', '2011-03-12', 8, 'https://www.gutenberg.org/ebooks/35558', 'en', 5895), +(29061, 'Queen Elizabeth\nMakers of History', 'Abbott, Jacob', '2009-06-13', 79, 'https://www.gutenberg.org/ebooks/29107', 'en', 11653), +(29062, 'The Lily\'s Quest (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 29, 'https://www.gutenberg.org/ebooks/9217', 'en', 179), +(29063, 'French Idioms and Proverbs\nA Companion to Deshumbert\'s \"Dictionary of Difficulties\"', 'V. Payen-Payne, de (Vinchelés Payen-Payne)', '2015-02-01', 32, 'https://www.gutenberg.org/ebooks/48130', 'en', 11654), +(29064, 'Boyhood in Norway: Stories of Boy-Life in the Land of the Midnight Sun', 'Boyesen, Hjalmar Hjorth', '1997-01-01', 90, 'https://www.gutenberg.org/ebooks/784', 'en', 286), +(29065, 'Phineas Redux', 'Trollope, Anthony', '2006-06-21', 88, 'https://www.gutenberg.org/ebooks/18640', 'en', 1079), +(29066, 'The Admiral: A Romance of Nelson in the Year of the Nile', 'Sladen, Douglas Brooke Wheelton', '2015-01-11', 9, 'https://www.gutenberg.org/ebooks/47944', 'en', 11655), +(29067, 'Beitrag zur Beurteilung der Lehren Machs\nInaugural-Dissertation zur Erlangung der Doktorwürde', 'Musil, Robert', '2014-09-18', 12, 'https://www.gutenberg.org/ebooks/46896', 'de', 4775), +(29068, 'Der Struwwelpeter', 'Hoffmann, Heinrich', '2006-11-15', 9, 'https://www.gutenberg.org/ebooks/19792', 'de', 5789), +(29069, 'Hogarth\'s Works, with life and anecdotal descriptions of his pictures. Volume 1 (of 3)', 'Ireland, John', '2016-04-21', 9, 'https://www.gutenberg.org/ebooks/51821', 'en', 2557), +(29070, 'The Expositor\'s Bible: The Book of Genesis', 'Dods, Marcus', '2012-04-07', 25, 'https://www.gutenberg.org/ebooks/39395', 'en', 11656), +(29071, 'May-Day, and Other Pieces', 'Emerson, Ralph Waldo', '2005-05-31', 40, 'https://www.gutenberg.org/ebooks/15963', 'en', 8), +(29072, 'Deerfoot on the Prairies', 'Ellis, Edward Sylvester', '2017-12-27', 13, 'https://www.gutenberg.org/ebooks/56238', 'en', 1259), +(29073, 'Warum wir sterben', 'Lipschütz, Alejandro', '2008-02-15', 37, 'https://www.gutenberg.org/ebooks/24618', 'de', 11657), +(29074, 'The Legend of Ulenspiegel, Volume 1 (of 2)\r\nAnd Lamme Goedzak, and their Adventures Heroical, Joyous and Glorious in the Land of Flanders and Elsewhere', 'Coster, Charles de', '2011-12-08', 35, 'https://www.gutenberg.org/ebooks/38247', 'en', 323), +(29075, 'Kristus inkvisitorin edessä', 'Dostoyevsky, Fyodor', '2016-08-02', 30, 'https://www.gutenberg.org/ebooks/52698', 'fi', 942), +(29076, 'Armenia and Her People; or, The Story of Armenia by an Armenian', 'Filian, George H.', '2019-04-13', 32, 'https://www.gutenberg.org/ebooks/59270', 'en', 11338), +(29077, 'South Wind', 'Douglas, Norman', '2003-10-01', 79, 'https://www.gutenberg.org/ebooks/4508', 'en', 11658), +(29078, 'The Vision Splendid', 'Raine, William MacLeod', '1999-08-01', 27, 'https://www.gutenberg.org/ebooks/1846', 'en', 61), +(29079, 'The Short-story', NULL, '2007-06-29', 166, 'https://www.gutenberg.org/ebooks/21964', 'en', 179), +(29080, 'An Ambitious Woman: A Novel', 'Fawcett, Edgar', '2011-11-21', 22, 'https://www.gutenberg.org/ebooks/38075', 'en', 11659), +(29081, 'Last of the Great Scouts: The Life Story of William F. Cody [\"Buffalo Bill\"]', 'Wetmore, Helen Cody', '2006-02-19', 26, 'https://www.gutenberg.org/ebooks/1248', 'en', 11660), +(29082, 'The Heritage of the Kurts, Volume 1 (of 2)', 'Bjørnson, Bjørnstjerne', '2011-10-19', 27, 'https://www.gutenberg.org/ebooks/37801', 'en', 1938), +(29083, 'The Foundation of the Ottoman Empire; a history of the Osmanlis up to the death of Bayezid I (1300-1403)', 'Gibbons, Herbert Adams', '2018-03-25', 51, 'https://www.gutenberg.org/ebooks/56836', 'en', 8115), +(29084, 'The Stock Exchange', 'Duguid, Charles', '2019-03-09', 55, 'https://www.gutenberg.org/ebooks/59042', 'en', 11661), +(29085, 'The Corsican Brothers', 'Dumas, Alexandre', '2013-01-20', 47, 'https://www.gutenberg.org/ebooks/41881', 'en', 1909), +(29086, 'Sammlung deutscher Gedichte 001', 'Various', '2007-04-27', 14, 'https://www.gutenberg.org/ebooks/21158', 'de', 5045), +(29087, 'A Traveler in Time', 'Derleth, August', '2012-10-06', 111, 'https://www.gutenberg.org/ebooks/40953', 'en', 2229), +(29088, 'The Mausoleum at Halicarnassus Restored in Conformity With the Recently Discovered Remains', 'Fergusson, James', '2016-11-22', 6, 'https://www.gutenberg.org/ebooks/53578', 'en', 11662), +(29089, 'Lips Tullian und seine Raubgenossen\r\nEine romantische Schilderung der Thaten dieses furchtbaren Räuberhauptmanns und seiner Bande, welche im Anfange des 18. Jahrhunderts ganz Sachsen, Böhmen und Schlesien mit Furcht, Schrecken und Entsetzen erfüllte', 'Frei, Ernst', '2018-10-29', 10, 'https://www.gutenberg.org/ebooks/58190', 'de', 98), +(29090, 'L\'oiseau bleu: Féerie en six actes et douze tableaux', 'Maeterlinck, Maurice', '2012-02-12', 20, 'https://www.gutenberg.org/ebooks/38849', 'fr', 5914), +(29091, 'Punchinello, Volume 1, No. 14, July 2, 1870', 'Various', '2006-02-01', 13, 'https://www.gutenberg.org/ebooks/9819', 'en', 372), +(29092, 'A Gold Hunter\'s Experience', 'Hambleton, Chalkley J.', '2009-07-06', 18, 'https://www.gutenberg.org/ebooks/29335', 'en', 11663), +(29093, 'Mary Broome: A Comedy, in Four Acts', 'Monkhouse, Allan', '2014-07-16', 7, 'https://www.gutenberg.org/ebooks/46298', 'en', 2455), +(29094, 'Christmas Entertainments', 'Kellogg, Alice Maude', '2004-07-21', 33, 'https://www.gutenberg.org/ebooks/12974', 'en', 11664), +(29095, 'Ruth Fielding at Snow Camp; Or, Lost in the Backwoods', 'Emerson, Alice B.', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/6851', 'en', 3242), +(29096, 'The Amours of Zeokinizul, King of the Kofirans\nTranslated from the Arabic of the famous Traveller Krinelbol', 'Crébillon, Claude Prosper Jolyot de', '2006-05-30', 14, 'https://www.gutenberg.org/ebooks/18472', 'en', 11665), +(29097, 'Joseph the Dreamer', 'Steedman, Amy', '2009-10-09', 19, 'https://www.gutenberg.org/ebooks/30218', 'en', 8400), +(29098, 'How to Tell a Story and Other Essays', 'Twain, Mark', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/9025', 'en', 179), +(29099, 'La enferma: novela', 'Zamacois, Eduardo', '2015-02-18', 10, 'https://www.gutenberg.org/ebooks/48302', 'es', 1696), +(29100, 'Encyclopaedia Britannica, 11th Edition, \"Map\" to \"Mars\"\r\nVolume 17, Slice 6', 'Various', '2013-05-03', 30, 'https://www.gutenberg.org/ebooks/42638', 'en', 1081), +(29101, 'The Vitamine Manual', 'Eddy, Walter Hollis', '2005-04-01', 21, 'https://www.gutenberg.org/ebooks/7983', 'en', 11666), +(29102, 'Railway Shop Up to Date\r\nA Reference Book of Up to Date American Railway Shop Practices', NULL, '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12148', 'en', 11667), +(29103, 'The Hawkeye Ornithologist and Oologist. Vol. 1. No. 4 April 1888', 'Various', '2019-02-24', 7, 'https://www.gutenberg.org/ebooks/58951', 'en', 7771), +(29104, 'State Trials, Political and Social. Volume 2 (of 2)', NULL, '2011-11-22', 17, 'https://www.gutenberg.org/ebooks/38088', 'en', 9400), +(29105, 'Booknology: The eBook (1971-2010)', 'Lebert, Marie', '2010-08-18', 21, 'https://www.gutenberg.org/ebooks/33460', 'en', 2047), +(29106, 'A Student\'s History of England, v. 2: 1509-1689\r\nFrom the Earliest Times to the Death of King Edward VII', 'Gardiner, Samuel Rawson', '2012-07-10', 26, 'https://www.gutenberg.org/ebooks/40192', 'en', 1953), +(29107, 'The Bitter Cry of the Children', 'Spargo, John', '2018-05-09', 16, 'https://www.gutenberg.org/ebooks/57125', 'en', 3665), +(29108, 'The Merryweathers', 'Richards, Laura Elizabeth Howe', '2008-05-17', 34, 'https://www.gutenberg.org/ebooks/25505', 'en', 7327), +(29109, 'With the Allies', 'Davis, Richard Harding', '2004-03-01', 26, 'https://www.gutenberg.org/ebooks/11730', 'en', 3333), +(29110, 'Some Account of Gothic Architecture in Spain', 'Street, George Edmund', '2012-10-13', 42, 'https://www.gutenberg.org/ebooks/41040', 'en', 11668), +(29111, 'The Wind Bloweth', 'Byrne, Donn', '2007-07-05', 27, 'https://www.gutenberg.org/ebooks/21999', 'en', 61), +(29112, 'How to Collect and Preserve Insects', 'Ross, Herbert H. (Herbert Holdsworth)', '2019-07-10', 96, 'https://www.gutenberg.org/ebooks/59883', 'en', 11669), +(29113, 'Meren urhoja: Kertomus suurilta matalikoilta', 'Kipling, Rudyard', '2016-11-23', 10, 'https://www.gutenberg.org/ebooks/53585', 'fi', 11670), +(29114, 'The Touchstone of Fortune\r\nBeing the Memoir of Baron Clyde, Who Lived, Thrived, and Fell in the Doleful Reign of the So-called Merry Monarch, Charles II', 'Major, Charles', '2004-12-03', 9, 'https://www.gutenberg.org/ebooks/14242', 'en', 8189), +(29115, 'Danse macabre', 'Anonymous', '2006-12-10', 41, 'https://www.gutenberg.org/ebooks/20077', 'fr', 11671), +(29116, 'Dictionnaire critique et raisonné du langage vicieux ou réputé vicieux', 'Platt, de Cancarnaux', '2018-09-17', 14, 'https://www.gutenberg.org/ebooks/57919', 'fr', 11672), +(29117, 'The Pink Fairy Book', 'Lang, Andrew', '2004-05-01', 180, 'https://www.gutenberg.org/ebooks/5615', 'en', 1223), +(29118, 'Soittajan tarina: Maaseutu-elegia', 'Drachmann, Holger', '2013-12-28', 10, 'https://www.gutenberg.org/ebooks/44532', 'fi', 2631), +(29119, 'Sons and Fathers', 'Edwards, Harry Stillwell', '2011-05-14', 6, 'https://www.gutenberg.org/ebooks/36112', 'en', 835), +(29120, 'Curiosities of Christian History Prior to the Reformation', 'Paterson, James', '2012-06-10', 17, 'https://www.gutenberg.org/ebooks/39966', 'en', 11673), +(29121, 'Evangeline\nwith Notes and Plan of Study', 'Longfellow, Henry Wadsworth', '2005-03-16', 23, 'https://www.gutenberg.org/ebooks/15390', 'en', 825), +(29122, 'In Various Moods: Poems and Verses', 'Bacheller, Irving', '2016-06-30', 10, 'https://www.gutenberg.org/ebooks/52457', 'en', 178), +(29123, 'Holidays in Eastern France', 'Betham-Edwards, Matilda', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8936', 'en', 1117), +(29124, 'Dreaming of Dreaming\nPoetry by Peter E. Williams', 'Williams, Peter E.', '2005-08-12', 13, 'https://www.gutenberg.org/ebooks/16515', 'en', 8), +(29125, 'The Minister of Evil: The Secret History of Rasputin\'s Betrayal of Russia', 'Le Queux, William', '2007-09-22', 24, 'https://www.gutenberg.org/ebooks/22720', 'en', 11674), +(29126, 'The Lady of Big Shanty', 'Smith, F. Berkeley (Frank Berkeley)', '2004-07-22', 7, 'https://www.gutenberg.org/ebooks/12989', 'en', 61), +(29127, 'Studien und Plaudereien im Vaterland. Second Series', 'Stern, Sigmon M. (Sigmon Martin)', '2011-04-08', 38, 'https://www.gutenberg.org/ebooks/35797', 'de', 11675), +(29128, 'The History of the Peloponnesian War', 'Thucydides', '2004-12-01', 745, 'https://www.gutenberg.org/ebooks/7142', 'en', 5990), +(29129, 'María Luisa, Leyenda Histórica', 'Portillo, Andrés', '2014-07-12', 14, 'https://www.gutenberg.org/ebooks/46265', 'es', 98), +(29130, 'The History of Painting in Italy, Vol. 3 (of 6)\r\nFrom the Period of the Revival of the Fine Arts to the End of the Eighteenth Century', 'Lanzi, Luigi', '2010-12-13', 30, 'https://www.gutenberg.org/ebooks/34645', 'en', 7807), +(29131, 'What Can She Do?', 'Roe, Edward Payson', '2004-07-01', 17, 'https://www.gutenberg.org/ebooks/6090', 'en', 2739), +(29132, 'Het paddestoelenboekje', 'Cool, Catherina', '2015-10-24', 19, 'https://www.gutenberg.org/ebooks/50300', 'nl', 5051), +(29133, 'Über allgemeine Landesbewaffnung, insbesondere in Beziehung auf Württemberg', 'Prittwitz, M. von (Moritz)', '2010-02-21', 8, 'https://www.gutenberg.org/ebooks/31337', 'de', 11676), +(29134, 'Men I\'m Not Married To', 'Parker, Dorothy', '2017-10-02', 107, 'https://www.gutenberg.org/ebooks/55672', 'en', 11677), +(29135, 'Complete Story of the San Francisco Horror', 'White, Trumbull', '2008-08-21', 35, 'https://www.gutenberg.org/ebooks/26380', 'en', 11678), +(29136, 'The Land of The Blessed Virgin; Sketches and Impressions in Andalusia', 'Maugham, W. Somerset (William Somerset)', '2008-11-13', 42, 'https://www.gutenberg.org/ebooks/27252', 'en', 11679), +(29137, 'Punch, or the London Charivari, Volume 100, January 31, 1891', 'Various', '2004-07-31', 1, 'https://www.gutenberg.org/ebooks/13067', 'en', 134), +(29138, 'Uusi suomalainen lukemisto', NULL, '2013-09-14', 6, 'https://www.gutenberg.org/ebooks/43717', 'fi', 7177), +(29139, 'Romantic Ballads, Translated from the Danish; and Miscellaneous Pieces', NULL, '2000-12-01', 16, 'https://www.gutenberg.org/ebooks/2430', 'en', 882), +(29140, 'Second Treatise of Government', 'Locke, John', '2005-01-01', 1423, 'https://www.gutenberg.org/ebooks/7370', 'en', 5325), +(29141, 'The Relentless City', 'Benson, E. F. (Edward Frederic)', '2014-06-21', 19, 'https://www.gutenberg.org/ebooks/46057', 'en', 4330), +(29142, 'Punch, or the London Charivari, Volume 159, August 25th, 1920', 'Various', '2005-09-20', 7, 'https://www.gutenberg.org/ebooks/16727', 'en', 134), +(29143, 'Le Bossu: Aventures de Cape et d\'Épée. Volume 1', 'Féval, Paul', '2010-04-10', 27, 'https://www.gutenberg.org/ebooks/31939', 'fr', 654), +(29144, 'Batik and Other Pattern Dyeing', 'Baker, Walter Davis', '2015-08-30', 42, 'https://www.gutenberg.org/ebooks/49823', 'en', 11410), +(29145, 'The Stutterer', 'Merliss, Reuben (Reuben Robert)', '2007-09-05', 29, 'https://www.gutenberg.org/ebooks/22512', 'en', 831), +(29146, 'Scottish Football Reminiscences and Sketches', 'Bone, David Drummond', '2009-02-09', 33, 'https://www.gutenberg.org/ebooks/28028', 'en', 3471), +(29147, 'The River Motor Boat Boys on the Colorado; Or, The Clue in the Rocks', 'Gordon, Harry', '2015-10-04', 5, 'https://www.gutenberg.org/ebooks/50132', 'en', 11680), +(29148, 'Schenk\'s Theory: The Determination of Sex', 'Schenk, Samuel Leopold', '2014-10-24', 23, 'https://www.gutenberg.org/ebooks/47185', 'en', 11681), +(29149, 'The Evolution of Sinn Fein', 'Henry, Robert Mitchell', '2010-11-29', 10, 'https://www.gutenberg.org/ebooks/34477', 'en', 1428), +(29150, 'Estudio descriptivo de los monumentos árabes de Granada, Sevilla y Córdoba\nó sea La Alhambra, el Alcázar y la Gran Mezquita de Occidente', 'Contreras, Rafael', '2017-08-27', 19, 'https://www.gutenberg.org/ebooks/55440', 'es', 11682), +(29151, 'Paul Faber, Surgeon', 'MacDonald, George', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12387', 'en', 7056), +(29152, 'The Bible, Douay-Rheims, Book 38: Micheas\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8338', 'en', 5447), +(29153, 'The Elements of Agriculture\nA Book for Young Farmers, with Questions Prepared for the Use of Schools', 'Waring, George E. (George Edwin)', '2010-01-27', 40, 'https://www.gutenberg.org/ebooks/31105', 'en', 2757), +(29154, 'Letters to his wife Mary Borrow', 'Borrow, George', '2009-05-14', 10, 'https://www.gutenberg.org/ebooks/28814', 'en', 3830), +(29155, 'Mediæval London', 'Benham, William', '2013-08-21', 20, 'https://www.gutenberg.org/ebooks/43525', 'en', 1487), +(29156, 'Queen Sheba\'s Ring', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 49, 'https://www.gutenberg.org/ebooks/2602', 'en', 11683), +(29157, 'Qing Lou Meng\nQi Hong Xiao Shi', 'Zor, Tao', '2008-10-26', 26, 'https://www.gutenberg.org/ebooks/27060', 'zh', NULL), +(29158, 'The Philippine Islands, 1493-1803 — Volume 01 of 55\r\n1493-1529\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Beginning of the Nineteenth Century', NULL, '2004-08-22', 302, 'https://www.gutenberg.org/ebooks/13255', 'en', 1334), +(29159, 'Morsiuspuku', 'Dumas, Alexandre', '2017-04-23', 3, 'https://www.gutenberg.org/ebooks/54592', 'fi', 11684), +(29160, 'The Tragical History of Doctor Faustus\r\nFrom the Quarto of 1604', 'Marlowe, Christopher', '1997-01-01', 987, 'https://www.gutenberg.org/ebooks/779', 'en', 11685), +(29161, 'The Secrets of the Self (Asrar-i Khudi) — A Philosophical Poem', 'Iqbal, Muhammad, Sir', '2018-06-13', 238, 'https://www.gutenberg.org/ebooks/57317', 'en', 11686), +(29162, 'Baartock', 'Roth, Lewis', '1997-10-01', 29, 'https://www.gutenberg.org/ebooks/1087', 'en', 11687), +(29163, 'Dinners and Luncheons: Novel Suggestions for Social Occasions', 'Pierce, Paul', '2010-09-06', 19, 'https://www.gutenberg.org/ebooks/33652', 'en', 5016), +(29164, '\"Speaking of Prussians--\"', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2012-11-02', 21, 'https://www.gutenberg.org/ebooks/41272', 'en', 11688), +(29165, 'The Second War with England, Vol. 1 of 2', 'Headley, Joel Tyler', '2012-04-04', 18, 'https://www.gutenberg.org/ebooks/39368', 'en', 7149), +(29166, 'Asteroid of Fear', 'Gallun, Raymond Z.', '2010-06-12', 58, 'https://www.gutenberg.org/ebooks/32780', 'en', 5065), +(29167, 'Concordance: A Terran Empire concordance', 'Wilson, Ann', '2008-06-09', 18, 'https://www.gutenberg.org/ebooks/25737', 'en', 26); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(29168, 'An Englishman Looks at the World\r\nBeing a Series of Unrestrained Remarks upon Contemporary Matters', 'Wells, H. G. (Herbert George)', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11502', 'en', 5611), +(29169, 'Emile', 'Rousseau, Jean-Jacques', '2004-04-01', 399, 'https://www.gutenberg.org/ebooks/5427', 'en', 8790), +(29170, 'Holinshed Chronicles: England, Scotland, and Ireland. Volume 1, Complete', 'Harrison, William', '2014-01-18', 115, 'https://www.gutenberg.org/ebooks/44700', 'en', 288), +(29171, 'English Grammar in Familiar Lectures\r\nAccompanied by a compendium, embracing a new systematic order of parsing, a new system of punctuation, exercises in false syntax, and a system of philosophical grammar, in notes, to which are added an appendix and a key to the exercises : designed for the use of schools and private learners', 'Kirkham, Samuel', '2004-11-17', 113, 'https://www.gutenberg.org/ebooks/14070', 'en', 1979), +(29172, 'A Narrative of Some of the Lord\'s Dealings with George Müller. Part 4', 'Müller, George', '2007-01-02', 16, 'https://www.gutenberg.org/ebooks/20245', 'en', 10555), +(29173, 'Manco, the Peruvian Chief\r\nOr, An Englishman\'s Adventures in the Country of the Incas', 'Kingston, William Henry Giles', '2007-05-08', 25, 'https://www.gutenberg.org/ebooks/21397', 'en', 11689), +(29174, 'The Boston Dip: A Comedy, in One Act', 'Baker, George M. (George Melville)', '2016-07-28', 14, 'https://www.gutenberg.org/ebooks/52665', 'en', 868), +(29175, 'The Motor Maids by Palm and Pine', 'Stokes, Katherine', '2011-06-03', 6, 'https://www.gutenberg.org/ebooks/36320', 'en', 9066), +(29176, 'The Jews', 'Belloc, Hilaire', '2015-11-26', 155, 'https://www.gutenberg.org/ebooks/50556', 'en', 6428), +(29177, 'The Luck of Thirteen: Wanderings and Flight through Montenegro and Serbia', 'Gordon, Jan', '2005-12-12', 36, 'https://www.gutenberg.org/ebooks/17291', 'en', 11690), +(29178, '血笑記', 'Andreyev, Leonid', '2010-10-01', 79, 'https://www.gutenberg.org/ebooks/34013', 'ja', 61), +(29179, 'The Complete Testimony of the Fathers of the First Three Centuries Concerning the Sabbath and First Day', 'Andrews, John Nevins', '2017-10-26', 7, 'https://www.gutenberg.org/ebooks/55818', 'en', 8776), +(29180, '\"My Novel\" — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-26', 18, 'https://www.gutenberg.org/ebooks/7714', 'en', 2975), +(29181, 'A Handbook of Pictorial History', 'Donald, Henry W.', '2014-07-27', 38, 'https://www.gutenberg.org/ebooks/46433', 'en', 11691), +(29182, 'Beth Woodburn', 'Petitt, Maud', '2005-07-22', 16, 'https://www.gutenberg.org/ebooks/16343', 'en', 348), +(29183, 'Film Truth; September, 1920', 'Anonymous', '2016-03-17', 22, 'https://www.gutenberg.org/ebooks/51484', 'en', 8737), +(29184, 'The Winged Men of Orcon: A Complete Novelette', 'Sparks, David R.', '2007-07-30', 33, 'https://www.gutenberg.org/ebooks/22176', 'en', 26), +(29185, 'Old Christmas', 'Irving, Washington', '2007-12-01', 1, 'https://www.gutenberg.org/ebooks/23898', 'en', 3618), +(29186, 'Jill: A Flower Girl', 'Meade, L. T.', '2013-07-08', 8, 'https://www.gutenberg.org/ebooks/43141', 'en', 11692), +(29187, 'King Lear', 'Shakespeare, William', '2000-07-01', 85, 'https://www.gutenberg.org/ebooks/2266', 'en', 4566), +(29188, 'Where the Strange Trails Go Down\r\nSulu, Borneo, Celebes, Bali, Java, Sumatra, Straits Settlements, Malay States, Siam, Cambodia, Annam, Cochin-China', 'Powell, E. Alexander (Edward Alexander)', '2008-12-04', 41, 'https://www.gutenberg.org/ebooks/27404', 'en', 11693), +(29189, 'The Atlantic Monthly, Volume 12, No. 71, September, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-10-05', 16, 'https://www.gutenberg.org/ebooks/13631', 'en', 1227), +(29190, 'The Queen of Spades, and other stories', 'Pushkin, Aleksandr Sergeevich', '2017-07-01', 98, 'https://www.gutenberg.org/ebooks/55024', 'en', 11694), +(29191, 'Cupid\'s Middleman', 'Lent, Edward B. (Edward Burcham)', '2010-03-08', 17, 'https://www.gutenberg.org/ebooks/31561', 'en', 61), +(29192, 'Morag: A Tale of the Highlands of Scotland', 'Rae, Janet Milne', '2013-02-14', 14, 'https://www.gutenberg.org/ebooks/42093', 'en', 2389), +(29193, 'Reminiscences of a Private\r\nby Frank M. Mixson, Company \"E\" 1st S. C. Vols. (Hagood\'s)', 'Mixson, Frank M.', '2012-12-13', 9, 'https://www.gutenberg.org/ebooks/41616', 'en', 83), +(29194, 'The Ordinance of Covenanting', 'Cunningham, John', '2008-05-06', 9, 'https://www.gutenberg.org/ebooks/25353', 'en', 11695), +(29195, 'For Gold or Soul? The Story of a Great Department Store', 'Sheldon, Lurana', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11166', 'en', 11696), +(29196, 'Theism and Humanism\nBeing the Gifford Lectures Delivered at the University of Glasgow, 1914', 'Balfour, Arthur James', '2018-08-25', 18, 'https://www.gutenberg.org/ebooks/57773', 'en', 5461), +(29197, 'The Creed of the Old South 1865-1915', 'Gildersleeve, Basil L. (Basil Lanneau)', '2008-01-14', 26, 'https://www.gutenberg.org/ebooks/24281', 'en', 5990), +(29198, 'The History of the European Fauna', 'Scharff, R. F. (Robert Francis)', '2010-07-23', 13, 'https://www.gutenberg.org/ebooks/33236', 'en', 11697), +(29199, 'Soldiers\' Stories of the War', NULL, '2016-05-31', 61, 'https://www.gutenberg.org/ebooks/52201', 'en', 2223), +(29200, 'Peggy Owen at Yorktown', 'Madison, Lucy Foster', '2011-07-15', 6, 'https://www.gutenberg.org/ebooks/36744', 'en', 11698), +(29201, 'Diary of Samuel Pepys — Volume 67: August 1668', 'Pepys, Samuel', '2004-12-01', 25, 'https://www.gutenberg.org/ebooks/4191', 'en', 1231), +(29202, 'Arthur Hamilton, and His Dog', 'Anonymous', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/10888', 'en', 4099), +(29203, 'Arguments of Celsus, Porphyry, and the Emperor Julian, Against the Christians\r\nAlso Extracts from Diodorus Siculus, Josephus, and Tacitus, Relating to the Jews, Together with an Appendix', 'Julian, Emperor of Rome', '2011-10-10', 151, 'https://www.gutenberg.org/ebooks/37696', 'en', 11699), +(29204, 'State of the Union Addresses', 'Nixon, Richard M. (Richard Milhous)', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/5043', 'en', 1276), +(29205, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 15 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-12-05', 12, 'https://www.gutenberg.org/ebooks/44364', 'it', 6107), +(29206, 'Lancashire Idylls (1898)', 'Mather, Marshall', '2004-12-22', 24, 'https://www.gutenberg.org/ebooks/14414', 'en', 11700), +(29207, 'Novelleja I', 'Suomalainen, Samuli', '2007-02-19', 14, 'https://www.gutenberg.org/ebooks/20621', 'fi', 179), +(29208, '魏鄭公諫錄', 'Wang, Fangqing', '2008-04-25', 10, 'https://www.gutenberg.org/ebooks/25161', 'zh', 11701), +(29209, 'Monsoreaun kreivitär II: Historiallinen romaani', 'Dumas, Alexandre', '2018-02-03', 4, 'https://www.gutenberg.org/ebooks/56493', 'fi', 9760), +(29210, 'The Irrational Knot\nBeing the Second Novel of His Nonage', 'Shaw, Bernard', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/11354', 'en', 675), +(29211, 'The Tribes and Castes of the Central Provinces of India, Volume 3', 'Russell, R. V. (Robert Vane)', '2012-11-21', 49, 'https://www.gutenberg.org/ebooks/41424', 'en', 11702), +(29212, 'The Red Rat\'s Daughter', 'Boothby, Guy', '2010-06-27', 20, 'https://www.gutenberg.org/ebooks/33004', 'en', 557), +(29213, 'Arbucklenian Polka', NULL, '2003-11-01', 5, 'https://www.gutenberg.org/ebooks/10286', 'en', 2633), +(29214, 'Index for Works of Willis George Emerson\nHyperlinks to all Chapters of all Individual Ebooks', 'Emerson, Willis George', '2018-07-19', 2, 'https://www.gutenberg.org/ebooks/57541', 'en', 198), +(29215, 'Notes on Collecting and Preserving Natural-History Objects', NULL, '2014-03-09', 24, 'https://www.gutenberg.org/ebooks/45084', 'en', 11703), +(29216, 'The Student-Life of Germany', 'Howitt, William', '2011-07-01', 12, 'https://www.gutenberg.org/ebooks/36576', 'en', 3167), +(29217, 'William Mackay on T. W. Robertson\'s Play \"School\"', 'Mackay, William', '2016-05-09', 2, 'https://www.gutenberg.org/ebooks/52033', 'en', 11704), +(29218, 'The Boy Allies with the Victorious Fleets; Or, The Fall of the German Navy', 'Hayes, Clair W. (Clair Wallace)', '2005-01-07', 18, 'https://www.gutenberg.org/ebooks/14626', 'en', 4416), +(29219, 'Descripção de algumas especies novas ou pouco conhecidas de crustaceos\r\ne arachnidios de Portugal e possessões portuguezas do ultramar', 'Capello, Felix Antonio de Brito', '2010-10-03', 27, 'https://www.gutenberg.org/ebooks/33838', 'pt', 11705), +(29220, 'Brave Belgians', 'Buffin, Camille', '2018-12-21', 9, 'https://www.gutenberg.org/ebooks/58509', 'en', 3333), +(29221, 'Der Moloch', 'Wassermann, Jakob', '2007-01-22', 32, 'https://www.gutenberg.org/ebooks/20413', 'de', 11706), +(29222, 'Marjorie\'s Vacation', 'Wells, Carolyn', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/5271', 'en', 62), +(29223, 'Histoire de Flandre (T. 1/4)', 'Kervyn de Lettenhove, Joseph Marie Bruno Constantin, Baron', '2013-11-10', 5, 'https://www.gutenberg.org/ebooks/44156', 'fr', 3813), +(29224, 'Electricity and Magnetism', 'Gray, Elisha', '2010-11-06', 57, 'https://www.gutenberg.org/ebooks/34221', 'en', 11707), +(29225, 'A Hero of Our Time', 'Lermontov, Mikhail Iurevich', '1997-05-01', 280, 'https://www.gutenberg.org/ebooks/913', 'en', 1061), +(29226, 'The Fighting Shepherdess', 'Lockhart, Caroline', '2007-11-03', 57, 'https://www.gutenberg.org/ebooks/23296', 'en', 315), +(29227, 'The Green Mummy', 'Hume, Fergus', '2001-10-01', 36, 'https://www.gutenberg.org/ebooks/2868', 'en', 128), +(29228, 'Colour in the flower garden', 'Jekyll, Gertrude', '2015-12-24', 44, 'https://www.gutenberg.org/ebooks/50764', 'en', 11708), +(29229, 'Our Boys\nEntertaining Stories by Popular Authors', 'Various', '2005-07-01', 27, 'https://www.gutenberg.org/ebooks/16171', 'en', 859), +(29230, 'Remarks on the Subject of Lactation', 'Morton, Edward', '2007-08-16', 34, 'https://www.gutenberg.org/ebooks/22344', 'en', 11709), +(29231, 'Clovers and How to Grow Them', 'Shaw, Thomas', '2006-11-23', 17, 'https://www.gutenberg.org/ebooks/19905', 'en', 11710), +(29232, 'The Englishwoman in America', 'Bird, Isabella L. (Isabella Lucy)', '2005-02-01', 40, 'https://www.gutenberg.org/ebooks/7526', 'en', 1110), +(29233, 'Gems for the Young Folks\r\nFourth Book of the Faith-Promoting Series. Designed for the Instruction and Encouragement of Young Latter-Day Saints.', 'Various', '2014-08-17', 18, 'https://www.gutenberg.org/ebooks/46601', 'en', 1440), +(29234, '沉沦', 'Yu, Dafu', '2008-12-30', 39, 'https://www.gutenberg.org/ebooks/27636', 'zh', 11711), +(29235, 'English Travellers of the Renaissance', 'Howard, Clare', '2004-09-09', 16, 'https://www.gutenberg.org/ebooks/13403', 'en', 11712), +(29236, 'He\'s Coming To-Morrow', 'Stowe, Harriet Beecher', '2013-08-01', 11, 'https://www.gutenberg.org/ebooks/43373', 'en', 2692), +(29237, 'Iphigenie auf Tauris', 'Goethe, Johann Wolfgang von', '2000-01-01', 59, 'https://www.gutenberg.org/ebooks/2054', 'de', 4626), +(29238, 'Nanny Merry\r\nor, What Made the Difference?', 'Anonymous', '2009-12-14', 15, 'https://www.gutenberg.org/ebooks/30681', 'en', 470), +(29239, 'The Mysterious Stranger, and Other Stories', 'Twain, Mark', '2008-06-09', 707, 'https://www.gutenberg.org/ebooks/3186', 'en', 179), +(29240, 'Lidewyde', 'Busken Huet, Conrad', '2010-03-24', 11, 'https://www.gutenberg.org/ebooks/31753', 'nl', 61), +(29241, 'The Bombardment of Reims', 'Ferree, Barr', '2015-08-07', 4, 'https://www.gutenberg.org/ebooks/49649', 'en', 11713), +(29242, 'A Brief History of Upshur County', 'Baird, G. H.', '2017-07-28', 7, 'https://www.gutenberg.org/ebooks/55216', 'en', 11714), +(29243, 'The Buccaneers in the West Indies in the XVII Century', 'Haring, Clarence Henry', '2006-08-29', 52, 'https://www.gutenberg.org/ebooks/19139', 'en', 9062), +(29244, 'Peter Biddulph: The Story of an Australian Settler', 'Kingston, William Henry Giles', '2007-10-17', 24, 'https://www.gutenberg.org/ebooks/23050', 'en', 195), +(29245, 'The Trail of The Badger: A Story of the Colorado Border Thirty Years Ago', 'Hamp, Sidford F. (Sidford Frederick)', '2013-10-21', 23, 'https://www.gutenberg.org/ebooks/43989', 'en', 11715), +(29246, 'Companion to the Bible', 'Barrows, E. P. (Elijah Porter)', '2005-12-09', 29, 'https://www.gutenberg.org/ebooks/17265', 'en', 5113), +(29247, 'Ulric the Jarl: A Story of the Penitent Thief', 'Stoddard, William O.', '2014-12-02', 34, 'https://www.gutenberg.org/ebooks/47515', 'en', 1442), +(29248, 'A Popular History of Ireland : from the Earliest Period to the Emancipation of the Catholics — Volume 1', 'McGee, Thomas D\'Arcy', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6632', 'en', 7442), +(29249, 'Partners: A Novel.', 'Werner, E.', '2011-01-31', 14, 'https://www.gutenberg.org/ebooks/35135', 'en', 803), +(29250, 'Narrative and Critical History of America, Vol. 5 (of 8)\r\nThe English and French in North America 1689-1763', NULL, '2016-03-16', 10, 'https://www.gutenberg.org/ebooks/51470', 'en', 207), +(29251, 'The Best of the World\'s Classics, Vol. V (of X) - Great Britain and Ireland III', NULL, '2007-07-30', 84, 'https://www.gutenberg.org/ebooks/22182', 'en', 19), +(29252, 'Snow on the Headlight\nA Story of the Great Burlington Strike', 'Warman, Cy', '2009-11-11', 21, 'https://www.gutenberg.org/ebooks/30447', 'en', 11716), +(29253, 'Yet Again', 'Beerbohm, Max, Sir', '2000-08-01', 21, 'https://www.gutenberg.org/ebooks/2292', 'en', 20), +(29254, 'The Whip Hand: A Tale of the Pine Country', 'Merwin, Samuel', '2017-02-03', 10, 'https://www.gutenberg.org/ebooks/54102', 'en', 48), +(29255, 'When Lilacs Last in the Dooryard Bloom\'d', 'Whitman, Walt', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12717', 'en', 3770), +(29256, 'Indian Legends Retold', 'Eastman, Elaine Goodale', '2011-04-19', 12, 'https://www.gutenberg.org/ebooks/35909', 'en', 1749), +(29257, 'George Müller of Bristol, and His Witness to a Prayer-Hearing God', 'Pierson, Arthur T. (Arthur Tappan)', '2008-09-04', 37, 'https://www.gutenberg.org/ebooks/26522', 'en', 5030), +(29258, 'The Return of the Prodigal', 'Sinclair, May', '2010-03-10', 11, 'https://www.gutenberg.org/ebooks/31595', 'en', 61), +(29259, 'The Wandering Jew — Volume 02', 'Sue, Eugène', '2004-10-25', 16, 'https://www.gutenberg.org/ebooks/3340', 'en', 6229), +(29260, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 07 of 12)', 'Frazer, James George', '2013-02-10', 58, 'https://www.gutenberg.org/ebooks/42067', 'en', 655), +(29261, 'Dorothy at Oak Knowe', 'Raymond, Evelyn', '2010-05-09', 14, 'https://www.gutenberg.org/ebooks/32310', 'en', 11717), +(29262, 'The Life and Adventures of Maj. Roger Sherman Potter', 'Adams, F. Colburn (Francis Colburn)', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/4959', 'en', 1238), +(29263, 'The Americanism of Washington', 'Van Dyke, Henry', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11192', 'en', 7558), +(29264, 'Guida per la costituzione e per l\'impianto di latterie sociali cooperative', 'Besana, Carlo', '2018-02-27', 10, 'https://www.gutenberg.org/ebooks/56655', 'it', 11718), +(29265, 'Orlando innamorato', 'Boiardo, Matteo Maria', '2018-08-28', 38, 'https://www.gutenberg.org/ebooks/57787', 'it', 3887), +(29266, 'Aleutian Indian and English Dictionary\r\nCommon Words in the Dialects of the Aleutian Indian Language as Spoken by the Oogashik, Egashik, Anangashuk and Misremie Tribes Around Sulima River and Neighboring Parts of the Alaska Peninsula', 'Lee, Charles A.', '2003-11-01', 27, 'https://www.gutenberg.org/ebooks/10040', 'en', 11719), +(29267, 'Letter of the Law', 'Nourse, Alan Edward', '2008-01-14', 48, 'https://www.gutenberg.org/ebooks/24275', 'en', 26), +(29268, 'Sons of the Soil', 'Balzac, Honoré de', '2005-10-04', 32, 'https://www.gutenberg.org/ebooks/1417', 'en', 58), +(29269, 'Selected List of Swan Sonnenschein & Co.\'s Publications', 'Swan Sonnenschein & Co.', '2012-09-11', 5, 'https://www.gutenberg.org/ebooks/40730', 'en', 2663), +(29270, 'Ungava', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 46, 'https://www.gutenberg.org/ebooks/21707', 'en', 11720), +(29271, 'Novelas Cortas', 'Alarcón, Pedro Antonio de', '2005-04-04', 171, 'https://www.gutenberg.org/ebooks/15532', 'es', 61), +(29272, 'Popular British Ballads, Ancient and Modern, Vol. 2 (of 4)', NULL, '2014-03-28', 12, 'https://www.gutenberg.org/ebooks/45242', 'en', 4582), +(29273, 'Diary of Samuel Pepys — Volume 43: May/June 1666', 'Pepys, Samuel', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/4165', 'en', 2197), +(29274, 'Seed Thoughts for Singers', 'Tubbs, Frank Herbert', '2011-10-07', 10, 'https://www.gutenberg.org/ebooks/37662', 'en', 5276), +(29275, 'La Comtesse Mathieu de Noailles', 'Gillouin, René', '2013-12-08', 9, 'https://www.gutenberg.org/ebooks/44390', 'fr', 11721), +(29276, 'Samurai Trails: A Chronicle of Wanderings on the Japanese High Road', 'Kirtland, Lucian Swift', '2016-10-20', 46, 'https://www.gutenberg.org/ebooks/53327', 'en', 118), +(29277, '風月鑒', 'Wu, Yitang, active 19 century', '2008-04-27', 26, 'https://www.gutenberg.org/ebooks/25195', 'zh', 1003), +(29278, 'A Book of Distinctive Interiors', NULL, '2018-01-30', 25, 'https://www.gutenberg.org/ebooks/56467', 'en', 8534), +(29279, 'The Scrap Book, Volume 1, No. 5\nJuly 1906', 'Various', '2010-04-24', 7, 'https://www.gutenberg.org/ebooks/32122', 'en', 18), +(29280, 'Baree, Son of Kazan', 'Curwood, James Oliver', '2017-01-09', 20, 'https://www.gutenberg.org/ebooks/53929', 'en', 2464), +(29281, 'From Manassas to Appomattox: Memoirs of the Civil War in America', 'Longstreet, James', '2011-12-27', 77, 'https://www.gutenberg.org/ebooks/38418', 'en', 83), +(29282, 'The Frozen Deep', 'Collins, Wilkie', '1999-02-01', 83, 'https://www.gutenberg.org/ebooks/1625', 'en', 11722), +(29283, 'The Brownies and Prince Florimel; Or, Brownieland, Fairyland, and Demonland', 'Cox, Palmer', '2012-08-14', 22, 'https://www.gutenberg.org/ebooks/40502', 'en', 1007), +(29284, 'Sono Un Poeta\r\nFrom La Bohème', NULL, '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/10272', 'it', 4227), +(29285, '世說新語', 'Liu, Yiqing', '2007-12-27', 42, 'https://www.gutenberg.org/ebooks/24047', 'zh', 11723), +(29286, 'Bobbie Bubbles', 'Budlong, Maud Gridley', '2014-03-07', 4, 'https://www.gutenberg.org/ebooks/45070', 'en', 2203), +(29287, 'American Fairy Tales', 'Baum, L. Frank (Lyman Frank)', '2003-08-01', 448, 'https://www.gutenberg.org/ebooks/4357', 'en', 1007), +(29288, 'Advice to Sunday School Children', 'Anonymous', '2011-07-02', 12, 'https://www.gutenberg.org/ebooks/36582', 'en', 4099), +(29289, 'Die Schwestern: Drei Novellen', 'Wassermann, Jakob', '2007-05-19', 24, 'https://www.gutenberg.org/ebooks/21535', 'de', 11724), +(29290, 'The Works of the Right Honourable Edmund Burke, Vol. 04 (of 12)', 'Burke, Edmund', '2005-04-24', 67, 'https://www.gutenberg.org/ebooks/15700', 'en', 5325), +(29291, 'The History of Tammany Hall\nSecond Edition', 'Myers, Gustavus', '2016-09-21', 7, 'https://www.gutenberg.org/ebooks/53115', 'en', 1741), +(29292, 'Tales and Novels of J. de La Fontaine — Volume 11', 'La Fontaine, Jean de', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/5285', 'en', 2629), +(29293, 'Aspects of Reproduction and Development in the Prairie Vole (Microtus ochrogaster)', 'Fitch, Henry S. (Henry Sheldon)', '2011-09-17', 19, 'https://www.gutenberg.org/ebooks/37450', 'en', 11725), +(29294, 'The different modes of cultivating the pine-apple\r\nFrom its first introduction into Europe to the late improvements of T.A. Knight, esq.', 'Loudon, J. C. (John Claudius)', '2014-12-20', 13, 'https://www.gutenberg.org/ebooks/47727', 'en', 11726), +(29295, 'The Lives of the Twelve Caesars, Complete', 'Suetonius', '2004-11-10', 376, 'https://www.gutenberg.org/ebooks/6400', 'en', 1037), +(29296, 'Modern Eloquence: Vol II, After-Dinner Speeches E-O', NULL, '2006-07-13', 21, 'https://www.gutenberg.org/ebooks/18823', 'en', 659), +(29297, 'Chasing the Sun', 'Ballantyne, R. M. (Robert Michael)', '2007-10-31', 30, 'https://www.gutenberg.org/ebooks/23262', 'en', 11727), +(29298, 'The Submarine Boys and the Spies\nDodging the Sharks of the Deep', 'Durham, Victor G.', '2005-11-13', 9, 'https://www.gutenberg.org/ebooks/17057', 'en', 5237), +(29299, 'The Growth of Parliament and the War with Scotland (1216-1307)', NULL, '2015-12-30', 4, 'https://www.gutenberg.org/ebooks/50790', 'en', 11728), +(29300, 'Lucinda', 'Hope, Anthony', '2016-04-02', 16, 'https://www.gutenberg.org/ebooks/51642', 'en', 230), +(29301, 'The Nest in the Honeysuckles, and other Stories', NULL, '2005-07-02', 6, 'https://www.gutenberg.org/ebooks/16185', 'en', 1817), +(29302, 'Considérations générales sur l\'état actuel du Japon', 'Montblanc, Charles, comte de', '2009-08-22', 8, 'https://www.gutenberg.org/ebooks/29758', 'fr', 4331), +(29303, 'Jasper Lyle', 'Ward, Mrs.', '2011-02-17', 9, 'https://www.gutenberg.org/ebooks/35307', 'en', 11729), +(29304, 'The Great Galveston Disaster\nContaining a Full and Thrilling Account of the Most Appalling Calamity of Modern Times Including Vivid Descriptions of the Hurricane and Terrible Rush of Waters; Immense Destruction of Dwellings, Business Houses, Churches, and Loss of Thousands of Human Lives; Thrilling Tales of Heroic Deeds; Panic-Stricken Multitudes and Heart-Rending Scenes of Agony; Frantic Efforts to Escape a Horrible Fate; Separation of Loved Ones, etc., etc.; Narrow Escapes from the Jaws of Death; Terrible Sufferings of the Survivors; Vandals Plundering Bodies of the Dead; Wonderful Exhibitions of Popular Sympathy; Millions of Dollars Sent for the Relief of the Stricken Sufferers', 'Lester, Paul', '2019-08-16', 649, 'https://www.gutenberg.org/ebooks/60105', 'en', 11730), +(29305, 'How Women May Earn a Living', 'Grogan, Mercy', '2017-03-09', 9, 'https://www.gutenberg.org/ebooks/54330', 'en', 11731), +(29306, 'Little Foxes: Stories for Boys and Girls', 'Henry, E. A.', '2013-08-02', 11, 'https://www.gutenberg.org/ebooks/43387', 'en', 4431), +(29307, 'Presbyterian Worship: Its Spirit, Method and History', 'Johnston, Robert', '2009-12-14', 6, 'https://www.gutenberg.org/ebooks/30675', 'en', 11732), +(29308, 'Samantha among the Brethren — Volume 6', 'Holley, Marietta', '2004-08-10', 15, 'https://www.gutenberg.org/ebooks/9448', 'en', 11733), +(29309, 'Fenimore Cooper\'s Literary Offences', 'Twain, Mark', '2004-09-16', 173, 'https://www.gutenberg.org/ebooks/3172', 'en', 11734), +(29310, 'A Little Fleet', 'Yeats, Jack Butler', '2013-03-04', 8, 'https://www.gutenberg.org/ebooks/42255', 'en', 11735), +(29311, 'Narrative of the Voyage of H.M.S. Rattlesnake, Commanded By the Late Captain Owen Stanley, R.N., F.R.S. Etc. During the Years 1846-1850.\r\nIncluding Discoveries and Surveys in New Guinea, the Louisiade Archipelago, Etc. to Which Is Added the Account of Mr. E.B. Kennedy\'s Expedition for the Exploration of the Cape York Peninsula. By John Macgillivray, F.R.G.S. Naturalist to the Expedition. — Volume 2', 'MacGillivray, John', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12525', 'en', 11736), +(29312, 'Les épaves de Charles Baudelaire', 'Baudelaire, Charles', '2008-09-27', 47, 'https://www.gutenberg.org/ebooks/26710', 'fr', 4086), +(29313, 'The Library and Society: Reprints of Papers and Addresses', NULL, '2010-08-22', 24, 'https://www.gutenberg.org/ebooks/33494', 'en', 11737), +(29314, 'The Well of the Saints: A Comedy in Three Acts', 'Synge, J. M. (John Millington)', '1998-03-01', 34, 'https://www.gutenberg.org/ebooks/1241', 'en', 5104), +(29315, 'Notes and Queries, Index of Volume 4, July-December, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-07-08', 15, 'https://www.gutenberg.org/ebooks/40166', 'en', 105), +(29316, 'An Essay Concerning Humane Understanding, Volume 2\r\nMDCXC, Based on the 2nd Edition, Books 3 and 4', 'Locke, John', '2004-01-01', 198, 'https://www.gutenberg.org/ebooks/10616', 'en', 5717), +(29317, 'Carlyon Sahib: A Drama in Four Acts', 'Murray, Gilbert', '2011-10-21', 8, 'https://www.gutenberg.org/ebooks/37808', 'en', 1281), +(29318, 'Fifty years with the Revere Copper Co.\nA Paper Read at the Stockholders\' Meeting held on Monday 24 March 1890', 'Snow, S. T.', '2008-01-25', 13, 'https://www.gutenberg.org/ebooks/24423', 'en', 11738), +(29319, 'Old Virginia and Her Neighbours, Vol. 1 (of 2)', 'Fiske, John', '2017-11-19', 11, 'https://www.gutenberg.org/ebooks/56003', 'en', 2649), +(29320, 'The New Jersey Law Journal, February, 1922\nVolume XLV, February, 1922, No. 2', 'Various', '2019-07-09', 17, 'https://www.gutenberg.org/ebooks/59877', 'en', 11739), +(29321, 'The Atlantic Monthly, Volume 16, No. 95, September 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2010-05-26', 15, 'https://www.gutenberg.org/ebooks/32546', 'en', 1227), +(29322, 'Index of the Project Gutenberg Works of Charlotte M. Yonge', 'Yonge, Charlotte M. (Charlotte Mary)', '2018-10-30', 6, 'https://www.gutenberg.org/ebooks/58199', 'en', 198), +(29323, 'The Adventures of Buffalo Bill', 'Buffalo Bill', '2012-02-12', 28, 'https://www.gutenberg.org/ebooks/38840', 'en', 11740), +(29324, 'The Catholic World, Vol. 19, April 1874‐September 1874', 'Various', '2016-11-21', 11, 'https://www.gutenberg.org/ebooks/53571', 'en', 96), +(29325, 'A Boswell of Baghdad; With Diversions', 'Lucas, E. V. (Edward Verrall)', '2006-12-10', 29, 'https://www.gutenberg.org/ebooks/20083', 'en', 11741), +(29326, 'A Revised and Illustrated Treatise On Grain Stacking', 'De Lamater, John N.', '2011-08-11', 8, 'https://www.gutenberg.org/ebooks/37034', 'en', 4750), +(29327, 'A Handbook of Freethought\r\nContaining in Condensed and Systematized Form a Vast Amount of Evidence Against the Superstitious Doctrines of Christianity', NULL, '2014-04-16', 42, 'https://www.gutenberg.org/ebooks/45414', 'en', 1191), +(29328, 'When Egypt Went Broke: A Novel', 'Day, Holman', '2006-04-13', 43, 'https://www.gutenberg.org/ebooks/4733', 'en', 61), +(29329, 'De Mortuis Nil Nisi Bona\nBeing a Series of Problems in Executorship Law and Accounts', 'Pegler, Ernest Charles', '2013-01-20', 10, 'https://www.gutenberg.org/ebooks/41888', 'en', 11742), +(29330, 'Secret Chambers and Hiding Places\r\nHistoric, Romantic, & Legendary Stories & Traditions About Hiding-Holes, Secret Chambers, Etc.', 'Fea, Allan', '2007-05-19', 17, 'https://www.gutenberg.org/ebooks/21151', 'en', 11743), +(29331, 'Society for Pure English Tract 4\nThe Pronunciation of English Words Derived from the Latin', 'Sargeaunt, John', '2005-03-15', 22, 'https://www.gutenberg.org/ebooks/15364', 'en', 3366), +(29332, 'Poesias', 'Passos, A. A. Soares de (Antonio Augusto Soares)', '2012-06-13', 16, 'https://www.gutenberg.org/ebooks/39992', 'pt', 5082), +(29333, 'Connecticut Wide-Awake Songster', NULL, '2016-02-16', 11, 'https://www.gutenberg.org/ebooks/51226', 'en', 11744), +(29334, 'The Discovery of America by the Northmen, 985-1015', 'Slafter, Edmund F. (Edmund Farwell)', '2011-04-03', 14, 'https://www.gutenberg.org/ebooks/35763', 'en', 11000), +(29335, 'Yellowstone and Grand Teton National Parks', 'Union Pacific Railroad Company', '2014-07-15', 21, 'https://www.gutenberg.org/ebooks/46291', 'en', 11745), +(29336, 'Little Masterpieces of Science: Health and Healing', NULL, '2014-11-13', 30, 'https://www.gutenberg.org/ebooks/47343', 'en', 8175), +(29337, 'Memoirs of Lady Fanshawe\r\nWife of Sir Richard Fanshawe, Bt., Ambassador from Charles II to the Courts of Portugal and Madrid.', 'Fanshawe, Ann', '2004-07-01', 29, 'https://www.gutenberg.org/ebooks/6064', 'en', 11746), +(29338, 'The Man Next Door', 'Hough, Emerson', '2007-11-24', 19, 'https://www.gutenberg.org/ebooks/23606', 'en', 61), +(29339, 'Arkansas Governors and United States Senators', 'Ferguson, John L. (John Lewis)', '2005-12-31', 9, 'https://www.gutenberg.org/ebooks/17433', 'en', 11747), +(29340, 'Man kann nie wissen: Komödie in vier Akten', 'Shaw, Bernard', '2006-02-01', 30, 'https://www.gutenberg.org/ebooks/9810', 'de', 8310), +(29341, 'Human Genome Project, Chromosome Number 16', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3516', 'en', 1041), +(29342, 'Friendship Club Cook Book', 'Friendship Club (Madison, Wisconsin)', '2013-05-02', 41, 'https://www.gutenberg.org/ebooks/42631', 'en', 103), +(29343, 'The Spanish Curate: A Comedy', 'Beaumont, Francis', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/12141', 'en', 907), +(29344, 'The Review, Vol. 1, No. 3, March, 1911', 'Various', '2017-10-06', 4, 'https://www.gutenberg.org/ebooks/55686', 'en', 4611), +(29345, 'The Cookery Blue Book', 'First Unitarian Society of San Francisco. Society for Christian Work', '2008-08-20', 72, 'https://www.gutenberg.org/ebooks/26374', 'en', 103), +(29346, 'Grace Harlowe\'s Second Year at Overton College', 'Chase, Josephine', '2004-11-01', 31, 'https://www.gutenberg.org/ebooks/6858', 'en', 5010), +(29347, 'Dissolving Views: Romanfragmente von Leo Wolfram.', 'Prantner, Ferdinand', '2017-05-21', 21, 'https://www.gutenberg.org/ebooks/54754', 'de', 61), +(29348, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1878-02/05)', NULL, '2004-08-02', 10, 'https://www.gutenberg.org/ebooks/13093', 'pt', 11748), +(29349, 'The Song of the Lark', 'Cather, Willa', '2008-06-27', 230, 'https://www.gutenberg.org/ebooks/44', 'en', 8334), +(29350, 'Au Pays des Moines (Noli me Tangere)', 'Rizal, José', '2009-10-07', 27, 'https://www.gutenberg.org/ebooks/30211', 'fr', 11393), +(29351, 'Carta da Companhia de Jesus para o seráfico São Francisco', 'Anchieta, José de', '2005-01-01', 30, 'https://www.gutenberg.org/ebooks/7384', 'pt', 8), +(29352, 'Professor Huskins', 'Cummings, Lettie M.', '2011-03-11', 14, 'https://www.gutenberg.org/ebooks/35551', 'en', 3724), +(29353, 'Le père humilié: Drame en quatre actes', 'Claudel, Paul', '2016-01-23', 15, 'https://www.gutenberg.org/ebooks/51014', 'fr', 2870), +(29354, 'Auringon poika: Seikkailuja Etelämerellä', 'London, Jack', '2015-05-09', 13, 'https://www.gutenberg.org/ebooks/48905', 'fi', 6077), +(29355, 'An Elementary Study of Insects', 'Haseman, Leonard', '2007-11-10', 201, 'https://www.gutenberg.org/ebooks/23434', 'en', 2667), +(29356, 'Masques & Phases', 'Ross, Robert Baldwin', '2006-01-24', 24, 'https://www.gutenberg.org/ebooks/17601', 'en', 409), +(29357, 'La maison d\'un artiste, Tome 2', 'Goncourt, Edmond de', '2014-10-22', 15, 'https://www.gutenberg.org/ebooks/47171', 'fr', 642), +(29358, 'Donovan Pasha, and Some People of Egypt — Volume 1', 'Parker, Gilbert', '2004-08-01', 5, 'https://www.gutenberg.org/ebooks/6256', 'en', 2938), +(29359, 'Alone on an Island', 'Kingston, William Henry Giles', '2010-11-29', 21, 'https://www.gutenberg.org/ebooks/34483', 'en', 3532), +(29360, 'The Atlantic Monthly, Volume 01, No. 05, March, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 16, 'https://www.gutenberg.org/ebooks/12373', 'en', 1227), +(29361, 'Charles Frohman: Manager and Man', 'Frohman, Daniel', '2008-07-29', 30, 'https://www.gutenberg.org/ebooks/26146', 'en', 11749), +(29362, '聊齋志異', 'Pu, Songling', '2016-04-22', 128, 'https://www.gutenberg.org/ebooks/51828', 'zh', 11750), +(29363, 'The House of Heine Brothers, in Munich', 'Trollope, Anthony', '2003-02-01', 8, 'https://www.gutenberg.org/ebooks/3724', 'en', 179), +(29364, 'The Harbor', 'Poole, Ernest', '2009-09-09', 41, 'https://www.gutenberg.org/ebooks/29932', 'en', 61), +(29365, 'The Eight-Oared Victors: A Story of College Water Sports', 'Chadwick, Lester', '2013-03-24', 3, 'https://www.gutenberg.org/ebooks/42403', 'en', 5503), +(29366, 'Liput liehumassa', 'Bjørnson, Bjørnstjerne', '2015-02-02', 10, 'https://www.gutenberg.org/ebooks/48139', 'fi', 7), +(29367, 'The Daughter of the Storage\nAnd Other Things in Prose and Verse', 'Howells, William Dean', '2009-09-18', 18, 'https://www.gutenberg.org/ebooks/30023', 'en', 8), +(29368, 'The Boy Ranchers in Camp; Or, The Water Fight at Diamond X', 'Baker, Willard F.', '2008-10-29', 10, 'https://www.gutenberg.org/ebooks/27094', 'en', 3946), +(29369, 'Some Diversions of a Man of Letters', 'Gosse, Edmund', '2006-06-22', 101, 'https://www.gutenberg.org/ebooks/18649', 'en', 1694), +(29370, 'Life in the Shifting Dunes\r\nA popular field guide to the natural history of Castle Neck, Ipswich, Massachusetts', 'White, Laurence B.', '2017-04-18', 12, 'https://www.gutenberg.org/ebooks/54566', 'en', 11751), +(29371, 'Caprice Viennois', NULL, '2003-12-01', 3, 'https://www.gutenberg.org/ebooks/10424', 'en', 11752), +(29372, 'The Adventures of Samuel and Selina', 'Archer, Jean C.', '2008-02-14', 19, 'https://www.gutenberg.org/ebooks/24611', 'en', 2296), +(29373, 'No title', NULL, '2006-05-03', 0, 'https://www.gutenberg.org/ebooks/1073', 'en', NULL), +(29374, 'Confessions of a Young Lady: Her Doings and Misdoings', 'Marsh, Richard', '2012-07-27', 78, 'https://www.gutenberg.org/ebooks/40354', 'en', 3994), +(29375, 'Miss Marjoribanks', 'Oliphant, Mrs. (Margaret)', '2012-11-04', 78, 'https://www.gutenberg.org/ebooks/41286', 'en', 48), +(29376, 'The Night Side of London', 'Ritchie, J. Ewing (James Ewing)', '2010-06-11', 60, 'https://www.gutenberg.org/ebooks/32774', 'en', 9924), +(29377, 'The \"B. O. W. C.\": A Book For Boys\r\nIllustrated', 'De Mille, James', '2017-12-23', 13, 'https://www.gutenberg.org/ebooks/56231', 'en', 246), +(29378, 'Sea and Sardinia', 'Lawrence, D. H. (David Herbert)', '2011-08-26', 95, 'https://www.gutenberg.org/ebooks/37206', 'en', 11753), +(29379, 'A Vindication of the Press', 'Defoe, Daniel', '2004-11-18', 22, 'https://www.gutenberg.org/ebooks/14084', 'en', 935), +(29380, 'El misterio de un hombre pequeñito: novela', 'Zamacois, Eduardo', '2016-12-15', 10, 'https://www.gutenberg.org/ebooks/53743', 'es', 1696), +(29381, 'Quicksilver: The Boy With No Skid to His Wheel', 'Fenn, George Manville', '2007-05-08', 22, 'https://www.gutenberg.org/ebooks/21363', 'en', 195), +(29382, 'Index of the Project Gutenberg Works of Alfred Lord Tennyson', 'Tennyson, Alfred Tennyson, Baron', '2019-04-14', 28, 'https://www.gutenberg.org/ebooks/59279', 'en', 198), +(29383, 'Homeri Carmina et Cycli Epici Reliquiæ. Pars Tertia: Hymni', 'Homer', '2016-08-01', 8, 'https://www.gutenberg.org/ebooks/52691', 'la', 11754), +(29384, 'Balloons', 'Bibesco, Elizabeth', '2005-02-23', 25, 'https://www.gutenberg.org/ebooks/15156', 'en', 179), +(29385, 'History of Company K of the 140th Regiment Pennsylvania Volunteers (1862-\'65)', 'Sweeney, Alexander', '2014-05-10', 7, 'https://www.gutenberg.org/ebooks/45626', 'en', 11755), +(29386, 'Gockel, Hinkel und Gackeleia', 'Brentano, Clemens', '2003-10-01', 46, 'https://www.gutenberg.org/ebooks/4501', 'de', 900), +(29387, 'A Yellow God: An Idol of Africa', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 42, 'https://www.gutenberg.org/ebooks/2857', 'en', 2126), +(29388, 'The History of Dartmouth College', 'Smith, Baxter Perry', '2009-04-30', 48, 'https://www.gutenberg.org/ebooks/28641', 'en', 11756), +(29389, 'The Hohokam Dig', 'Pratt, Theodore', '2009-08-24', 34, 'https://www.gutenberg.org/ebooks/29793', 'en', 26), +(29390, 'Gerfaut — Complete', 'Bernard, Charles de', '2004-10-30', 26, 'https://www.gutenberg.org/ebooks/3985', 'en', 58), +(29391, 'La Biblia en España, Tomo III (de 3)\nO viajes, aventuras y prisiones de un inglés en su intento de difundir las Escrituras por la Península', 'Borrow, George', '2016-04-08', 18, 'https://www.gutenberg.org/ebooks/51689', 'es', 11757), +(29392, 'The Nomad of the Nine Lives', 'Friebe, A. Frances (Abby Frances)', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/7519', 'en', 1430), +(29393, 'Tess of the d\'Urbervilles: A Pure Woman', 'Hardy, Thomas', '1994-02-01', 1076, 'https://www.gutenberg.org/ebooks/110', 'en', 8003), +(29394, 'The Undersea Tube', 'Hansen, L. Taylor (Lucile Taylor)', '2008-12-25', 26, 'https://www.gutenberg.org/ebooks/27609', 'en', 26), +(29395, 'The Story and Song of Black Roderick', 'Shorter, Dora Sigerson', '2005-12-01', 20, 'https://www.gutenberg.org/ebooks/9483', 'en', 705), +(29396, 'The Boy Scouts of the Field Hospital', 'Shaler, Robert', '2015-08-11', 11, 'https://www.gutenberg.org/ebooks/49676', 'en', 11758), +(29397, 'The Seaboard Parish Volume 1', 'MacDonald, George', '2005-07-01', 17, 'https://www.gutenberg.org/ebooks/8551', 'en', 11759), +(29398, 'Scientific American Supplement, No. 711, August 17, 1889', 'Various', '2005-10-31', 13, 'https://www.gutenberg.org/ebooks/16972', 'en', 210), +(29399, 'Taistelu', 'Galsworthy, John', '2017-07-30', 8, 'https://www.gutenberg.org/ebooks/55229', 'fi', 11760), +(29400, 'Reconocimiento del fuerte del Carmen del Rio Negro', 'Cramer, Ambrosio', '2006-08-23', 7, 'https://www.gutenberg.org/ebooks/19106', 'es', 11761), +(29401, 'Homes and Haunts of the Most Eminent British Poets, Vol. 2 (of 2)', 'Howitt, William', '2014-06-05', 15, 'https://www.gutenberg.org/ebooks/45887', 'en', 11762), +(29402, 'The Arts and Crafts of Ancient Egypt', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2016-08-18', 29, 'https://www.gutenberg.org/ebooks/52830', 'en', 11763), +(29403, 'Ladies on Horseback\r\nLearning, Park-riding, and Hunting, with Hints Upon Costume, and Numerous Anecdotes', 'O\'Donoghue, Power, Mrs.', '2012-04-21', 32, 'https://www.gutenberg.org/ebooks/39501', 'en', 2240), +(29404, 'A short history of Rhode Island', 'Greene, George Washington', '2014-02-18', 14, 'https://www.gutenberg.org/ebooks/44955', 'en', 11764), +(29405, 'A Plain Introduction to the Criticism of the New Testament, Vol. II.', 'Scrivener, Frederick Henry Ambrose', '2011-06-28', 17, 'https://www.gutenberg.org/ebooks/36549', 'en', 10561), +(29406, 'World\'s War Events, Vol. I', NULL, '2008-07-04', 33, 'https://www.gutenberg.org/ebooks/25962', 'en', 335), +(29407, 'An Account of the Battle of Chateauguay\r\nBeing a Lecture Delivered at Ormstown, March 8th, 1889', 'Lighthall, W. D. (William Douw)', '2005-01-06', 23, 'https://www.gutenberg.org/ebooks/14619', 'en', 11765), +(29408, 'Mémoires du maréchal Marmont, duc de Raguse (1774-1852) (4/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2010-09-24', 13, 'https://www.gutenberg.org/ebooks/33807', 'fr', 1169), +(29409, 'The Glory of Grace Effected by Weak Means\r\nBeing the Substance of a Sermon, Preached on the Death of Samuel Church, Aged Twelve Years. On Sunday Evening, April 14, 1822, by J. Church, at the Surrey Tabernacle.', 'Church, J. (John)', '2018-12-26', 1, 'https://www.gutenberg.org/ebooks/58536', 'en', 3698), +(29410, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 12 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-11-12', 12, 'https://www.gutenberg.org/ebooks/44169', 'it', 6107), +(29411, 'Cooley\'s Cyclopædia of Practical Receipts and Collateral Information in the Arts, Manufactures, Professions, and Trades..., Sixth Edition, Volume I', 'Cooley, Arnold James', '2012-05-19', 36, 'https://www.gutenberg.org/ebooks/39733', 'en', 11766), +(29412, 'Harper\'s New Monthly Magazine, No. XXIII.—April, 1852.—Vol. IV.\nNone', 'Various', '2012-12-15', 9, 'https://www.gutenberg.org/ebooks/41629', 'en', 387), +(29413, 'The Atlantic Monthly, Volume 10, No. 62, December, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11159', 'en', 1227), +(29414, 'Diddie, Dumps, and Tot; Or, Plantation Child-Life', 'Pyrnelle, Louise Clarke', '2004-01-01', 6, 'https://www.gutenberg.org/ebooks/4992', 'en', 8998), +(29415, 'Sketches New and Old, Part 5.', 'Twain, Mark', '2004-06-26', 25, 'https://www.gutenberg.org/ebooks/5840', 'en', 2116), +(29416, 'The Dual Alliance', 'Cooke, Marjorie Benton', '2010-07-20', 24, 'https://www.gutenberg.org/ebooks/33209', 'en', 675), +(29417, 'Sex and Common-Sense', 'Royden, A. Maude (Agnes Maude)', '2004-04-01', 65, 'https://www.gutenberg.org/ebooks/11965', 'en', 3052), +(29418, 'Jack and Jill and Old Dame Gill', 'Anonymous', '2014-04-01', 14, 'https://www.gutenberg.org/ebooks/45289', 'en', 343), +(29419, 'The Sunny South Oölogist. Vol. 1, No. 2', 'Various', '2019-01-16', 2, 'https://www.gutenberg.org/ebooks/58704', 'en', 7240), +(29420, 'Herakles, the Hero of Thebes, and Other Heroes of the Myth\nAdapted from the Second Book of the Primary Schools of Athens, Greece', 'Ragozin, Zénaïde A. (Zénaïde Alexeïevna)', '2015-11-28', 25, 'https://www.gutenberg.org/ebooks/50569', 'en', 11767), +(29421, 'Plague\r\nIts Cause and the Manner of its Extension, Its Menace, Its Control and Suppression, Its Diagnosis and Treatment', 'Jackson, Thomas Wright', '2013-10-12', 15, 'https://www.gutenberg.org/ebooks/43942', 'en', 11768), +(29422, 'Boken om lille-bror: Ett äktenskaps roman', 'Geijerstam, Gustaf af', '2009-04-02', 46, 'https://www.gutenberg.org/ebooks/28473', 'sv', 378), +(29423, 'Who Was Lost and Is Found: A Novel', 'Oliphant, Mrs. (Margaret)', '2017-10-27', 24, 'https://www.gutenberg.org/ebooks/55827', 'en', 177), +(29424, 'The Paris Sketch Book of Mr. M. A. Titmarsh; and the Irish Sketch Book', 'Thackeray, William Makepeace', '2013-06-07', 12, 'https://www.gutenberg.org/ebooks/42890', 'en', 117), +(29425, 'The Journal of Negro History, Volume 6, 1921', 'Various', '2007-07-26', 24, 'https://www.gutenberg.org/ebooks/22149', 'en', 7352), +(29426, 'Coriolanus', 'Shakespeare, William', '2000-07-01', 32, 'https://www.gutenberg.org/ebooks/2259', 'en', 5710), +(29427, 'Take It from Dad', 'Livermore, George Griswold', '2015-03-28', 10, 'https://www.gutenberg.org/ebooks/48596', 'en', 11769), +(29428, 'The Red Miriok', 'Barnes, Annie Maria', '2011-01-02', 10, 'https://www.gutenberg.org/ebooks/34810', 'en', 10629), +(29429, 'St. Ives: Being the Adventures of a French Prisoner in England', 'Stevenson, Robert Louis', '1995-09-01', 81, 'https://www.gutenberg.org/ebooks/322', 'en', 11770), +(29430, 'Punch, or the London Charivari, Volume 159, December 15, 1920', 'Various', '2006-09-19', 7, 'https://www.gutenberg.org/ebooks/19334', 'en', 134), +(29431, 'La niña robada', 'Conscience, Hendrik', '2007-10-12', 44, 'https://www.gutenberg.org/ebooks/22975', 'es', 61), +(29432, 'Five Years in Texas\r\nOr, What you did not hear during the war from January 1861 to January 1866. A narrative of his travels, experiences, and observation', 'North, Thomas', '2015-07-15', 14, 'https://www.gutenberg.org/ebooks/49444', 'en', 444), +(29433, 'The Land That Time Forgot', 'Burroughs, Edgar Rice', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8763', 'en', 11771), +(29434, 'Way-Marks; or, Directions to Persons Commencing a Religious Life', NULL, '2018-06-14', 7, 'https://www.gutenberg.org/ebooks/57328', 'en', 1130), +(29435, 'Instructions on Modern American Bridge Building', 'Tower, G. B. N. (George Bates Nichols)', '2005-02-02', 10, 'https://www.gutenberg.org/ebooks/14873', 'en', 2855), +(29436, 'Η Λυγερή', 'Karkavitsas, Andreas', '2011-12-12', 13, 'https://www.gutenberg.org/ebooks/38285', 'el', 1348), +(29437, 'Texas Honey Plants', 'Scholl, Ernest E. (Ernest Emmett)', '2012-04-03', 19, 'https://www.gutenberg.org/ebooks/39357', 'en', 11772), +(29438, 'The Hero of Ticonderoga; or, Ethan Allen and His Green Mountain Boys', 'De Morgan, John', '2008-06-06', 7, 'https://www.gutenberg.org/ebooks/25708', 'en', 11773), +(29439, 'The Home Acre', 'Roe, Edward Payson', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/5418', 'en', 1413), +(29440, 'The Exiles', 'Balzac, Honoré de', '2004-09-22', 45, 'https://www.gutenberg.org/ebooks/1884', 'en', 58), +(29441, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 10 (of 17)', NULL, '2018-11-26', 47, 'https://www.gutenberg.org/ebooks/58360', 'en', 1113), +(29442, 'Elizabeth, Her Folks', 'Kay, Barbara', '2016-12-22', 5, 'https://www.gutenberg.org/ebooks/53788', 'en', 11774), +(29443, 'Abbotsford', 'Crockett, W. S. (William Shillinglaw)', '2014-06-22', 18, 'https://www.gutenberg.org/ebooks/46068', 'en', 11775), +(29444, 'Mineralogia Polyglotta', 'Keferstein, Christian', '2005-09-18', 26, 'https://www.gutenberg.org/ebooks/16718', 'de', 11776), +(29445, 'Memorias de um pobre diabo', 'Seabra, Bruno', '2010-04-06', 7, 'https://www.gutenberg.org/ebooks/31906', 'pt', 61), +(29446, 'Otherwise Phyllis', 'Nicholson, Meredith', '2009-02-07', 23, 'https://www.gutenberg.org/ebooks/28017', 'en', 3016), +(29447, 'Rick and Ruddy: The Story of a Boy and His Dog', 'Garis, Howard Roger', '2010-11-26', 36, 'https://www.gutenberg.org/ebooks/34448', 'en', 766), +(29448, 'The Legacy of Ignorantism', 'Pardo de Tavera, T. H. (Trinidad Hermenegildo)', '2009-01-21', 17, 'https://www.gutenberg.org/ebooks/27863', 'en', 11777), +(29449, 'Alaikäinen: Huvinäytelmä 5:ssä näytöksessä', 'Fonvizin, D. I. (Denis Ivanovich)', '2014-09-14', 16, 'https://www.gutenberg.org/ebooks/46854', 'fi', 1815), +(29450, 'The Waif Woman', 'Stevenson, Robert Louis', '2006-11-10', 53, 'https://www.gutenberg.org/ebooks/19750', 'en', 11778), +(29451, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 05, May 22, 1858', NULL, '2015-05-22', 4, 'https://www.gutenberg.org/ebooks/49020', 'en', 1741), +(29452, 'The Bible, Douay-Rheims, Book 07: Judges\r\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8307', 'en', 4371), +(29453, 'Stories of Enchantment', 'Myers, Jane Pentzer', '2016-01-15', 57, 'https://www.gutenberg.org/ebooks/50931', 'en', 11779), +(29454, 'Burning Daylight', 'London, Jack', '1996-12-01', 201, 'https://www.gutenberg.org/ebooks/746', 'en', 9215), +(29455, 'A Declaration of the Causes, which mooved the chiefe Commanders of the Nauie of her most excellent Maiestie the Queene of England, in their voyage and expedition for Portingal, to take and arrest in the mouth of the Riuer of Lisbone, certaine Shippes of corne and other prouisions of warre bound for the said Citie\r\nPrepared for the seruices of the King of Spaine, in the Ports and Prouinces within and about the Sownde, the 30. day of Iune, in the yeere of our Lord 1589. and of her Maiesties raigne the one and thirtie', 'England and Wales. Sovereign (1558-1603 : Elizabeth I)', '2006-06-25', 26, 'https://www.gutenberg.org/ebooks/18682', 'en', 6409), +(29456, 'Les Aventures d\'un fifre.', 'Reybaud, Louis', '2015-01-16', 16, 'https://www.gutenberg.org/ebooks/47986', 'fr', 298), +(29457, 'The System of Nature, or, the Laws of the Moral and Physical World. Volume 1', 'Holbach, Paul Henri Thiry, baron d\'', '2005-09-01', 104, 'https://www.gutenberg.org/ebooks/8909', 'en', 1151), +(29458, 'The Bay State Monthly — Volume 2, No. 3, December, 1884', 'Various', '2004-10-25', 14, 'https://www.gutenberg.org/ebooks/13864', 'en', 1593), +(29459, 'Agua de Nieve (Novela)', 'Espina, Concha', '2014-11-17', 33, 'https://www.gutenberg.org/ebooks/47388', 'es', 1384), +(29460, 'The Book-Collector\r\nA General Survey of the Pursuit and of those who have engaged in it at Home and Abroad from the Earliest Period to the Present Time', 'Hazlitt, William Carew', '2009-03-01', 41, 'https://www.gutenberg.org/ebooks/28225', 'en', 9467), +(29461, 'The Warfare of Science', 'White, Andrew Dickson', '2015-06-14', 19, 'https://www.gutenberg.org/ebooks/49212', 'en', 2713), +(29462, 'The Cathedral: A Novel', 'Walpole, Hugh', '2005-05-01', 45, 'https://www.gutenberg.org/ebooks/8135', 'en', 55), +(29463, 'Orientations', 'Maugham, W. Somerset (William Somerset)', '2010-02-17', 58, 'https://www.gutenberg.org/ebooks/31308', 'en', 61), +(29464, 'Napoleon and the Queen of Prussia', 'Mühlbach, L. (Luise)', '2006-10-17', 21, 'https://www.gutenberg.org/ebooks/19562', 'en', 11780), +(29465, 'Mrs. Day\'s Daughters', 'Mann, Mary E.', '2005-04-01', 8, 'https://www.gutenberg.org/ebooks/7941', 'en', 2586), +(29466, 'The Teeth of the Tiger', 'Leblanc, Maurice', '2004-07-30', 93, 'https://www.gutenberg.org/ebooks/13058', 'en', 128), +(29467, 'Poems of William Blake', 'Blake, William', '1996-06-01', 383, 'https://www.gutenberg.org/ebooks/574', 'en', 54), +(29468, 'In the Quarter', 'Chambers, Robert W. (Robert William)', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/6893', 'en', 11781), +(29469, 'Natural Man', 'Moss, Arthur B.', '2013-09-15', 17, 'https://www.gutenberg.org/ebooks/43728', 'en', 1616), +(29470, 'Raios de extincta luz\r\npoesias ineditas (1859-1863)', 'Quental, Antero de', '2007-03-22', 18, 'https://www.gutenberg.org/ebooks/20874', 'pt', 8), +(29471, 'Mémoires du général baron de Marbot (3/3)', 'Marbot, Jean-Baptiste-Antoine-Marcelin, baron de', '2011-07-31', 20, 'https://www.gutenberg.org/ebooks/36911', 'fr', 11782), +(29472, 'L\'Illustration, No. 3673, 19 Juillet 1913', 'Various', '2012-03-16', 2, 'https://www.gutenberg.org/ebooks/39165', 'fr', 150), +(29473, 'From October to Brest-Litovsk', 'Trotsky, Leon', '2006-12-08', 10, 'https://www.gutenberg.org/ebooks/20048', 'en', 4303), +(29474, 'The Butterfly Kiss', 'Savage, Arthur Dekker', '2012-10-09', 33, 'https://www.gutenberg.org/ebooks/40991', 'en', 179), +(29475, 'Essay on the Classification of the Insane', 'Allen, M. (Physician)', '2018-10-22', 9, 'https://www.gutenberg.org/ebooks/58152', 'en', 9892), +(29476, 'Gleanings from the Works of George Fox', 'Fox, George', '2018-09-18', 23, 'https://www.gutenberg.org/ebooks/57926', 'en', 2028), +(29477, 'The Three Perils of Man; or, War, Women, and Witchcraft, Vol. 3 (of 3)', 'Hogg, James', '2012-06-10', 17, 'https://www.gutenberg.org/ebooks/39959', 'en', 11783), +(29478, 'The Earth\'s Beginning', 'Ball, Robert S. (Robert Stawell)', '2019-03-17', 25, 'https://www.gutenberg.org/ebooks/59080', 'en', 11784), +(29479, 'The Lower Depths: A Drama in Four Acts', 'Gorky, Maksim', '2016-07-01', 66, 'https://www.gutenberg.org/ebooks/52468', 'en', 3165), +(29480, 'Nouveau Glossaire Genevois, tome 1/2', 'Humbert, Jean', '2013-01-13', 8, 'https://www.gutenberg.org/ebooks/41843', 'fr', 3123), +(29481, 'L\'Illustration, No. 0023, 5 Août 1843', 'Various', '2011-12-11', 23, 'https://www.gutenberg.org/ebooks/38271', 'fr', 150), +(29482, 'Pipe and Pouch: The Smoker\'s Own Book of Poetry', NULL, '2005-02-03', 19, 'https://www.gutenberg.org/ebooks/14887', 'en', 6904), +(29483, 'L\'Illustration, No. 3233, 11 Février 1905', 'Various', '2010-09-10', 10, 'https://www.gutenberg.org/ebooks/33699', 'fr', 150), +(29484, 'A Short History of Scotland', 'Lang, Andrew', '2005-05-31', 79, 'https://www.gutenberg.org/ebooks/15955', 'en', 1392), +(29485, 'Stories About Famous Precious Stones', 'Orpen, Adela E. (Adela Elizabeth Richards)', '2011-08-29', 18, 'https://www.gutenberg.org/ebooks/37239', 'en', 7406); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(29486, 'Anatomy of the Cat', 'Reighard, Jacob', '2018-12-01', 9, 'https://www.gutenberg.org/ebooks/58394', 'en', 11785), +(29487, 'Reginald in Russia, and Other Sketches', 'Saki', '1999-08-01', 105, 'https://www.gutenberg.org/ebooks/1870', 'en', 409), +(29488, 'Solens Barn: Bilder från Amerika före Columbus', 'Nissen, Carl', '2019-04-11', 11, 'https://www.gutenberg.org/ebooks/59246', 'sv', 11786), +(29489, 'The Bobbsey Twins in a Great City', 'Hope, Laura Lee', '2005-02-25', 52, 'https://www.gutenberg.org/ebooks/15169', 'en', 31), +(29490, 'History of the Prophet Joseph, by His Mother', 'Smith, Lucy', '2014-05-09', 22, 'https://www.gutenberg.org/ebooks/45619', 'en', 7710), +(29491, 'Lippincott\'s Magazine of Popular Literature and Science, December 1878', 'Various', '2008-10-18', 18, 'https://www.gutenberg.org/ebooks/26945', 'en', 210), +(29492, 'Out of the Depths: A Romance of Reclamation', 'Bennet, Robert Ames', '2009-06-15', 29, 'https://www.gutenberg.org/ebooks/29131', 'en', 315), +(29493, 'If Your Baby Must Travel in Wartime', 'United States. Children\'s Bureau', '2009-12-31', 23, 'https://www.gutenberg.org/ebooks/30820', 'en', 11787), +(29494, 'Embers, Volume 2.', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6269', 'en', 28), +(29495, 'The Kopje Garrison: A Story of the Boer War', 'Fenn, George Manville', '2009-01-26', 35, 'https://www.gutenberg.org/ebooks/27897', 'en', 713), +(29496, 'Filosofiset mietelmät', 'Bacon, Francis', '2008-08-03', 25, 'https://www.gutenberg.org/ebooks/26179', 'fi', 11788), +(29497, 'Big Bend National Park, Texas', 'United States. National Park Service. Division of Publications', '2016-04-20', 8, 'https://www.gutenberg.org/ebooks/51817', 'en', 11789), +(29498, 'The Old Manse (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 31, 'https://www.gutenberg.org/ebooks/9221', 'en', 13), +(29499, 'Birds and All Nature, Vol. 6, No. 3, October 1899\r\nIllustrated by Color Photography', 'Various', '2015-01-29', 8, 'https://www.gutenberg.org/ebooks/48106', 'en', 490), +(29500, 'Our Navy in the War', 'Perry, Lawrence', '2006-06-24', 10, 'https://www.gutenberg.org/ebooks/18676', 'en', 11790), +(29501, 'Kirkkoisä Augustinuksen Tunnustukset', 'Augustine, Saint, Bishop of Hippo', '2017-04-17', 14, 'https://www.gutenberg.org/ebooks/54559', 'fi', 11791), +(29502, 'Hildebrand; or, The Days of Queen Elizabeth, An Historic Romance, Vol. 1 of 3', 'Anonymous', '2015-01-14', 28, 'https://www.gutenberg.org/ebooks/47972', 'en', 4434), +(29503, 'Operation Earthworm', 'Archibald, Joe', '2009-07-03', 68, 'https://www.gutenberg.org/ebooks/29303', 'en', 26), +(29504, 'Princess Badoura: A tale from the Arabian Nights', 'Housman, Laurence', '2016-02-14', 38, 'https://www.gutenberg.org/ebooks/51219', 'en', 313), +(29505, 'A Short History of the Great War', 'Pollard, A. F. (Albert Frederick)', '2004-12-01', 50, 'https://www.gutenberg.org/ebooks/7189', 'en', 335), +(29506, 'The Highland Fling and How to Teach it', 'Grant, Horatio N.', '2004-07-19', 10, 'https://www.gutenberg.org/ebooks/12942', 'en', 11792), +(29507, 'Canterbury', 'Home, Gordon', '2004-10-29', 21, 'https://www.gutenberg.org/ebooks/13890', 'en', 11793), +(29508, 'Plutarch\'s Morals', 'Plutarch', '2007-11-27', 212, 'https://www.gutenberg.org/ebooks/23639', 'en', 11794), +(29509, 'Letters Written During a Short Residence in Sweden, Norway, and Denmark', 'Wollstonecraft, Mary', '2002-11-01', 112, 'https://www.gutenberg.org/ebooks/3529', 'en', 11795), +(29510, 'Charles Fourier: Sein Leben und seine Theorien.', 'Bebel, August', '2006-10-21', 39, 'https://www.gutenberg.org/ebooks/19596', 'de', 11796), +(29511, 'Lineage, Life and Labors of José Rizal, Philippine Patriot', 'Craig, Austin', '2004-06-01', 152, 'https://www.gutenberg.org/ebooks/6867', 'en', 6564), +(29512, 'The Pickwick Papers', 'Dickens, Charles', '1996-07-01', 901, 'https://www.gutenberg.org/ebooks/580', 'en', 637), +(29513, 'The Story of the Hymns and Tunes', 'Brown, Theron', '2006-05-24', 27, 'https://www.gutenberg.org/ebooks/18444', 'en', 1808), +(29514, 'Nothing to Say\r\nA Slight Slap at Mobocratic Snobbery, Which Has \'Nothing to Do\' with \'Nothing to Wear\'', 'Doesticks, Q. K. Philander', '2008-11-20', 7, 'https://www.gutenberg.org/ebooks/27299', 'en', 8), +(29515, 'The Facts Concerning the Recent Carnival of Crime in Connecticut', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9013', 'en', 2116), +(29516, 'Ireland under the Tudors, with a Succinct Account of the Earlier History. Vol. 2 (of 3)', 'Bagwell, Richard', '2015-02-21', 7, 'https://www.gutenberg.org/ebooks/48334', 'en', 11797), +(29517, 'The Story of Russia', 'Van Bergen, R. (Robert)', '2007-03-23', 17, 'https://www.gutenberg.org/ebooks/20880', 'en', 473), +(29518, 'Manners: A Novel, Vol 2', 'Panache, Madame', '2012-07-07', 18, 'https://www.gutenberg.org/ebooks/40159', 'en', 1902), +(29519, 'The Life of Lyman Trumbull', 'White, Horace', '2011-11-18', 19, 'https://www.gutenberg.org/ebooks/38043', 'en', 11798), +(29520, 'Britain at Bay', 'Wilkinson, Spenser', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10629', 'en', 9352), +(29521, 'Peter and Polly in Winter', 'Lucia, Rose', '2011-10-24', 15, 'https://www.gutenberg.org/ebooks/37837', 'en', 1123), +(29522, 'Avonturen van drie Russen en drie Engelschen, Gevolgd door \'De Blokkadebrekers\'', 'Verne, Jules', '2012-03-18', 10, 'https://www.gutenberg.org/ebooks/39191', 'nl', 1207), +(29523, 'Kangaroo', 'Lawrence, D. H. (David Herbert)', '2019-07-03', 229, 'https://www.gutenberg.org/ebooks/59848', 'en', 2786), +(29524, 'Micro-Man', 'Ackerman, Forrest J.', '2010-05-29', 63, 'https://www.gutenberg.org/ebooks/32579', 'en', 179), +(29525, 'The American Missionary — Volume 50, No. 03, March, 1896', 'Various', '2007-06-27', 5, 'https://www.gutenberg.org/ebooks/21952', 'en', 562), +(29526, 'Time and the Woman', 'Dewey, G. Gordon', '2012-10-07', 15, 'https://www.gutenberg.org/ebooks/40965', 'en', 179), +(29527, 'The Life of Napoleon I (Volume 1 of 2)', 'Rose, J. Holland (John Holland)', '2004-12-07', 9, 'https://www.gutenberg.org/ebooks/14289', 'en', 1941), +(29528, 'Romantic Canada', 'Hayward, Victoria', '2018-03-20', 16, 'https://www.gutenberg.org/ebooks/56800', 'en', 11799), +(29529, 'Australasian Fossils: A Students\' Manual of Palaeontology', 'Chapman, Frederick', '2019-03-16', 6, 'https://www.gutenberg.org/ebooks/59074', 'en', 11800), +(29530, 'Mr. Punch at Home: The Comic Side of Domestic Life', NULL, '2014-12-20', 25, 'https://www.gutenberg.org/ebooks/47718', 'en', 564), +(29531, 'The Animals\' Rebellion', 'Bingham, Clifton', '2005-11-15', 7, 'https://www.gutenberg.org/ebooks/17068', 'en', 1801), +(29532, 'The Continental Monthly, Vol. 4, No. 2, August, 1863\nDevoted to Literature and National Policy', 'Various', '2009-08-23', 13, 'https://www.gutenberg.org/ebooks/29767', 'en', 558), +(29533, 'Jacqueline — Complete', 'Bentzon, Th.', '2004-10-30', 8, 'https://www.gutenberg.org/ebooks/3971', 'en', 560), +(29534, 'Marriage', 'Wells, H. G. (Herbert George)', '2011-02-20', 43, 'https://www.gutenberg.org/ebooks/35338', 'en', 1690), +(29535, 'The Wits and Beaux of Society. Volume 1', 'Wharton, Philip', '2006-03-19', 29, 'https://www.gutenberg.org/ebooks/18020', 'en', 7204), +(29536, 'The Sport of the Gods', 'Dunbar, Paul Laurence', '2006-02-25', 60, 'https://www.gutenberg.org/ebooks/17854', 'en', 378), +(29537, 'Spalding\'s Baseball Guide and Official League Book for 1889', NULL, '2005-12-01', 17, 'https://www.gutenberg.org/ebooks/9477', 'en', 11801), +(29538, 'Elias Lönnrots svenska skrifter. 1. Uppsatser och översättningar', 'Lönnrot, Elias', '2015-04-20', 23, 'https://www.gutenberg.org/ebooks/48750', 'sv', 4274), +(29539, 'Carols of Cockayne\nThe Third Edition, 1874', 'Leigh, Henry S. (Henry Sambrooke)', '2015-08-11', 3, 'https://www.gutenberg.org/ebooks/49682', 'en', 532), +(29540, 'The Seven Valleys and the Four Valleys', 'Bahá\'u\'lláh', '2005-11-02', 85, 'https://www.gutenberg.org/ebooks/16986', 'en', 7255), +(29541, 'Games', 'MacLean, Katherine', '2010-03-27', 55, 'https://www.gutenberg.org/ebooks/31798', 'en', 179), +(29542, 'Dekameron (1. rész)\nSzáz novella', 'Jókai, Mór', '2018-01-28', 5, 'https://www.gutenberg.org/ebooks/56458', 'hu', 234), +(29543, 'Reptiles and Birds\r\nA Popular Account of Their Various Orders, With a Description of the Habits and Economy of the Most Interesting', 'Figuier, Louis', '2014-06-03', 20, 'https://www.gutenberg.org/ebooks/45873', 'en', 5876), +(29544, 'Ireland under the Stuarts and During the Interregnum, Vol. 2 (of 3), 1642-1660', 'Bagwell, Richard', '2017-01-07', 15, 'https://www.gutenberg.org/ebooks/53916', 'en', 4848), +(29545, 'The World as Will and Idea (Vol. 1 of 3)', 'Schopenhauer, Arthur', '2011-12-27', 1107, 'https://www.gutenberg.org/ebooks/38427', 'en', 354), +(29546, 'Bonaventure: A Prose Pastoral of Acadian Louisiana', 'Cable, George Washington', '2007-12-30', 25, 'https://www.gutenberg.org/ebooks/24078', 'en', 2625), +(29547, 'Flappers and Philosophers', 'Fitzgerald, F. Scott (Francis Scott)', '2003-08-01', 241, 'https://www.gutenberg.org/ebooks/4368', 'en', 61), +(29548, 'Tuhannen ja yhden yön tarinoita Suomen lapsille II', 'Anonymous', '2008-07-07', 24, 'https://www.gutenberg.org/ebooks/25996', 'fi', 1007), +(29549, 'Old Hendrik\'s Tales', 'Vaughan, Arthur Owen', '2010-06-20', 20, 'https://www.gutenberg.org/ebooks/32921', 'en', 10345), +(29550, 'Harper\'s Young People, August 15, 1882\nAn Illustrated Weekly', 'Various', '2019-05-01', 6, 'https://www.gutenberg.org/ebooks/59410', 'en', 479), +(29551, 'O Ensino da Historia da Arte nos Lyceus e as excursões escolares', 'Vasconcellos, Joaquim de', '2008-03-16', 12, 'https://www.gutenberg.org/ebooks/24844', 'pt', 11802), +(29552, 'Waverley; Or \'Tis Sixty Years Since — Complete', 'Scott, Walter', '2004-01-01', 50, 'https://www.gutenberg.org/ebooks/4966', 'en', 98), +(29553, 'The Little French Lawyer: A Comedy', 'Beaumont, Francis', '2008-05-09', 19, 'https://www.gutenberg.org/ebooks/25398', 'en', 1088), +(29554, 'Quantity Cookery: Menu Planning and Cooking for Large Numbers', 'Richards, Lenore', '2012-01-18', 29, 'https://www.gutenberg.org/ebooks/38615', 'en', 11803), +(29555, 'La Grenadiere', 'Balzac, Honoré de', '2004-10-27', 30, 'https://www.gutenberg.org/ebooks/1428', 'en', 58), +(29556, 'Routine for a Hornet', 'Berry, Don', '2019-05-27', 95, 'https://www.gutenberg.org/ebooks/59622', 'en', 11804), +(29557, 'Hunted and Harried', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 26, 'https://www.gutenberg.org/ebooks/21738', 'en', 3242), +(29558, 'Po-No-Kah: An Indian Tale of Long Ago', 'Dodge, Mary Mapes', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/11991', 'en', 676), +(29559, 'Community Civics and Rural Life', 'Dunn, Arthur William', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/5088', 'en', 1720), +(29560, 'The Mental Life of Monkeys and Apes: A Study of Ideational Behavior', 'Yerkes, Robert Mearns', '2004-01-01', 17, 'https://www.gutenberg.org/ebooks/10843', 'en', 11805), +(29561, 'Jacquard Weaving and Designing', 'Bell, T. F.', '2016-10-19', 17, 'https://www.gutenberg.org/ebooks/53318', 'en', 3494), +(29562, 'Cjantaclàr e Partelote\r\n(The Nun\'s Priest\'s Tale)', 'Chaucer, Geoffrey', '2009-04-03', 18, 'https://www.gutenberg.org/ebooks/28487', 'fur', 9426), +(29563, 'Kitty Alone: A Story of Three Fires (vol. 3 of 3)', 'Baring-Gould, S. (Sabine)', '2017-06-13', 4, 'https://www.gutenberg.org/ebooks/54901', 'en', 137), +(29564, 'The Story of John Paul Jones', 'Fraser, Chelsea Curtis', '2013-06-03', 12, 'https://www.gutenberg.org/ebooks/42864', 'en', 1848), +(29565, 'Rural Hygiene', 'Ogden, Henry N. (Henry Neely)', '2009-07-31', 14, 'https://www.gutenberg.org/ebooks/29555', 'en', 11806), +(29566, 'Bulletin de Lille, 1915-12\r\nPublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2005-07-29', 22, 'https://www.gutenberg.org/ebooks/16388', 'fr', 11807), +(29567, 'Vegetable Diet: As Sanctioned by Medical Men, and by Experience in All Ages\r\nIncluding a System of Vegetable Cookery', 'Alcott, William A. (William Andrus)', '2009-11-15', 74, 'https://www.gutenberg.org/ebooks/30478', 'en', 11808), +(29568, 'Quatrevingt-Treize', 'Hugo, Victor', '2006-01-01', 67, 'https://www.gutenberg.org/ebooks/9645', 'fr', 248), +(29569, 'Ran Away to Sea', 'Reid, Mayne', '2007-12-13', 39, 'https://www.gutenberg.org/ebooks/23853', 'en', 3535), +(29570, 'The Jesuit Relations and Allied Documents, Vol. 5: Quebec, 1632-1633', NULL, '2015-03-22', 20, 'https://www.gutenberg.org/ebooks/48562', 'en', 992), +(29571, 'Arts and Crafts in the Middle Ages\nA Description of Mediaeval Workmanship in Several of the Departments of Applied Art, Together with Some Account of Special Artisans in the Early Renaissance', 'Addison, Julia de Wolf Gibbs', '2006-04-19', 38, 'https://www.gutenberg.org/ebooks/18212', 'en', 4378), +(29572, 'The High School Boys\' Canoe Club', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/12728', 'en', 9106), +(29573, 'Mesa Verde [Colorado] National Park', 'United States. Department of the Interior', '2011-04-22', 4, 'https://www.gutenberg.org/ebooks/35936', 'en', 8353), +(29574, 'English Narrative Poems', NULL, '2013-02-09', 17, 'https://www.gutenberg.org/ebooks/42058', 'en', 6294), +(29575, 'Letters of Two Brides', 'Balzac, Honoré de', '2007-10-01', 19, 'https://www.gutenberg.org/ebooks/22981', 'en', 58), +(29576, 'The Divine Comedy by Dante, Illustrated, Paradise, Volume 2', 'Dante Alighieri', '2004-08-02', 13, 'https://www.gutenberg.org/ebooks/8797', 'en', 2212), +(29577, 'Les Parsis', 'Menant, Delphine', '2009-06-13', 11, 'https://www.gutenberg.org/ebooks/29109', 'en', 11809), +(29578, 'Le pain dur: Drame en trois actes', 'Claudel, Paul', '2016-01-23', 15, 'https://www.gutenberg.org/ebooks/51013', 'fr', 2870), +(29579, '商子', 'Shang, Yang', '2005-01-01', 26, 'https://www.gutenberg.org/ebooks/7383', 'zh', 11810), +(29580, 'Succession in the Presidency of The Church of Jesus Christ of Latter-Day Saints', 'Roberts, B. H. (Brigham Henry)', '2011-03-11', 23, 'https://www.gutenberg.org/ebooks/35556', 'en', 11811), +(29581, 'Michel and Angele [A Ladder of Swords] — Volume 2', 'Parker, Gilbert', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6251', 'en', 10427), +(29582, 'Waihoura, the Maori Girl', 'Kingston, William Henry Giles', '2010-11-29', 14, 'https://www.gutenberg.org/ebooks/34484', 'en', 10629), +(29583, 'Drawn at a Venture: A Collection of Drawings', 'Fougasse', '2014-10-23', 55, 'https://www.gutenberg.org/ebooks/47176', 'en', 2965), +(29584, 'Throwing-sticks in the National Museum\r\nThird Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1883-\'84, Government Printing Office, Washington, 1890, pages 279-289', 'Mason, Otis Tufton', '2006-01-25', 37, 'https://www.gutenberg.org/ebooks/17606', 'en', 11812), +(29585, 'Punch, or the London Charivari, Vol. 98, January 25th, 1890', 'Various', '2009-12-31', 10, 'https://www.gutenberg.org/ebooks/30818', 'en', 134), +(29586, 'The Kitten\'s Garden of Verses', 'Herford, Oliver', '2007-11-10', 71, 'https://www.gutenberg.org/ebooks/23433', 'en', 8642), +(29587, 'Sidsel Langröckchen', 'Aanrud, Hans', '2015-05-09', 61, 'https://www.gutenberg.org/ebooks/48902', 'de', 527), +(29588, 'Kenilworth III-IV', 'Scott, Walter', '2013-03-24', 11, 'https://www.gutenberg.org/ebooks/42404', 'fi', 11813), +(29589, 'Inferno', 'Strindberg, August', '2009-09-08', 21, 'https://www.gutenberg.org/ebooks/29935', 'sv', 11814), +(29590, 'A Ride Across Palestine', 'Trollope, Anthony', '2003-02-01', 23, 'https://www.gutenberg.org/ebooks/3723', 'en', 11815), +(29591, 'Iltapuhteeksi 1: Kokoelma pieniä kertomuksia', 'Ivalo, Santeri', '2008-07-28', 13, 'https://www.gutenberg.org/ebooks/26141', 'fi', 179), +(29592, 'La novellaja fiorentina\nFiabe e novelline stenografate in Firenze dal dettato popolare', 'Imbriani, Vittorio', '2014-09-19', 10, 'https://www.gutenberg.org/ebooks/46898', 'it', 11816), +(29593, 'The Atlantic Monthly, Volume 01, No. 07, May, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12374', 'en', 1227), +(29594, 'The Old East Indiamen', 'Chatterton, E. Keble (Edward Keble)', '2017-04-17', 11, 'https://www.gutenberg.org/ebooks/54561', 'en', 11817), +(29595, 'The Boy Ranchers; Or, Solving the Mystery at Diamond X', 'Baker, Willard F.', '2008-10-29', 7, 'https://www.gutenberg.org/ebooks/27093', 'en', 3946), +(29596, 'The Fisher-Boy Urashima', NULL, '2009-09-18', 18, 'https://www.gutenberg.org/ebooks/30024', 'en', 1304), +(29597, 'Edward Fane\'s Rosebud (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9219', 'en', 3175), +(29598, 'The Datchet Diamonds', 'Marsh, Richard', '2012-07-27', 45, 'https://www.gutenberg.org/ebooks/40353', 'en', 167), +(29599, 'Down the Columbia', 'Freeman, Lewis R. (Lewis Ransome)', '2011-12-09', 17, 'https://www.gutenberg.org/ebooks/38249', 'en', 11818), +(29600, 'The Sea-Wolf', 'London, Jack', '1997-10-01', 528, 'https://www.gutenberg.org/ebooks/1074', 'en', 324), +(29601, 'Bell\'s Cathedrals: Southwark Cathedral\nFormerly the Collegiate Church of St. Saviour, Otherwise St. Mary Overie. A Short History and Description of the Fabric, with Some Account of the College and the See', 'Worley, George', '2008-02-14', 35, 'https://www.gutenberg.org/ebooks/24616', 'en', 11819), +(29602, 'Triplets : Fox Trot', NULL, '2003-12-01', 4, 'https://www.gutenberg.org/ebooks/10423', 'en', 1095), +(29603, 'Treasure of the Seas\r\nIllustrated', 'De Mille, James', '2017-12-24', 26, 'https://www.gutenberg.org/ebooks/56236', 'en', 5395), +(29604, 'About London', 'Ritchie, J. Ewing (James Ewing)', '2010-06-11', 20, 'https://www.gutenberg.org/ebooks/32773', 'en', 9924), +(29605, 'Il perduto amore', 'Fracchia, Umberto', '2012-11-03', 12, 'https://www.gutenberg.org/ebooks/41281', 'it', 1544), +(29606, 'Tom Fairfield\'s Pluck and Luck; Or, Working to Clear His Name', 'Chapman, Allen', '2004-11-18', 8, 'https://www.gutenberg.org/ebooks/14083', 'en', 1877), +(29607, 'Sir Robert\'s Fortune: A Novel', 'Oliphant, Mrs. (Margaret)', '2016-12-15', 12, 'https://www.gutenberg.org/ebooks/53744', 'en', 61), +(29608, 'Montezuma\'s Daughter', 'Haggard, H. Rider (Henry Rider)', '2006-05-14', 217, 'https://www.gutenberg.org/ebooks/1848', 'en', 6180), +(29609, 'Le Roman de Léonard de Vinci: La résurrection des Dieux', 'Merezhkovsky, Dmitry Sergeyevich', '2011-08-24', 11, 'https://www.gutenberg.org/ebooks/37201', 'fr', 984), +(29610, 'Lost in the Fog', 'De Mille, James', '2003-10-01', 20, 'https://www.gutenberg.org/ebooks/4506', 'en', 11820), +(29611, 'South America To-day\nA Study of Conditions, Social, Political and Commercial in Argentina, Uruguay and Brazil', 'Clemenceau, Georges', '2014-05-09', 12, 'https://www.gutenberg.org/ebooks/45621', 'en', 4395), +(29612, 'Joffre and His Army', 'Dawbarn, Charles', '2016-08-01', 9, 'https://www.gutenberg.org/ebooks/52696', 'en', 6604), +(29613, 'A Book of the Play\nStudies and Illustrations of Histrionic Story, Life, and Character', 'Cook, Dutton', '2005-02-22', 10, 'https://www.gutenberg.org/ebooks/15151', 'en', 11821), +(29614, 'The Rajah of Dah', 'Fenn, George Manville', '2007-05-08', 31, 'https://www.gutenberg.org/ebooks/21364', 'en', 1655), +(29615, 'La Renaissance de la littérature hébraïque (1743-1885)', 'Slouschz, Nahum', '2008-01-25', 10, 'https://www.gutenberg.org/ebooks/24424', 'fr', 11822), +(29616, 'An Essay on the Slavery and Commerce of the Human Species, Particularly the African\nTranslated from a Latin Dissertation, Which Was Honoured with the First Prize in the University of Cambridge, for the Year 1785, with Additions', 'Clarkson, Thomas', '2004-01-01', 60, 'https://www.gutenberg.org/ebooks/10611', 'en', 11823), +(29617, 'A Book About Doctors', 'Jeaffreson, John Cordy', '2012-07-08', 51, 'https://www.gutenberg.org/ebooks/40161', 'en', 741), +(29618, 'Laila eli Kuvaelmia Ruijan rannoilta', 'Friis, J. A. (Jens Andreas)', '2010-08-22', 11, 'https://www.gutenberg.org/ebooks/33493', 'fi', 286), +(29619, 'The House of Dust: A Symphony', 'Aiken, Conrad', '1998-03-01', 41, 'https://www.gutenberg.org/ebooks/1246', 'en', 3557), +(29620, 'One Way', 'De Ford, Miriam Allen', '2010-05-26', 70, 'https://www.gutenberg.org/ebooks/32541', 'en', 179), +(29621, 'Die Weiber am Brunnen: Roman', 'Hamsun, Knut', '2019-07-07', 53, 'https://www.gutenberg.org/ebooks/59870', 'de', 286), +(29622, 'Fossil Butterflies\nMemoirs of the American Association for the Advancement of Science, I.', 'Scudder, Samuel Hubbard', '2017-11-19', 11, 'https://www.gutenberg.org/ebooks/56004', 'en', 11824), +(29623, 'Über die Schönheit häßlicher Bilder. Ein Vademecum für Romantiker unserer Zeit', 'Brod, Max', '2011-08-11', 33, 'https://www.gutenberg.org/ebooks/37033', 'de', 3385), +(29624, 'The Beach of Dreams: A Romance', 'Stacpoole, H. De Vere (Henry De Vere)', '2006-12-10', 33, 'https://www.gutenberg.org/ebooks/20084', 'en', 323), +(29625, 'John Black, the Apostle of the Red River\r\nOr, How the Blue Banner Was Unfurled on Manitoba Prairies', 'Bryce, George', '2016-11-22', 4, 'https://www.gutenberg.org/ebooks/53576', 'en', 11825), +(29626, 'Princess Belle-Etoile', 'Aulnoy, Madame d\' (Marie-Catherine)', '2012-02-12', 38, 'https://www.gutenberg.org/ebooks/38847', 'en', 1007), +(29627, 'For the Soul of Rafael', 'Ryan, Marah Ellis', '2012-06-14', 15, 'https://www.gutenberg.org/ebooks/39995', 'en', 211), +(29628, 'Carving and Serving', 'Lincoln, Mary J. (Mary Johnson)', '2005-03-15', 21, 'https://www.gutenberg.org/ebooks/15363', 'en', 1369), +(29629, 'Selected Lullabies', 'Field, Eugene', '2007-05-19', 27, 'https://www.gutenberg.org/ebooks/21156', 'en', 859), +(29630, 'The Grim Smile of the Five Towns', 'Bennett, Arnold', '2003-12-01', 54, 'https://www.gutenberg.org/ebooks/4734', 'en', 706), +(29631, 'The Saintsbury Affair', 'Long, Lily A. (Lily Augusta)', '2018-03-25', 20, 'https://www.gutenberg.org/ebooks/56838', 'en', 128), +(29632, 'The North Pacific: A Story of the Russo-Japanese War', 'Allen, Willis Boyd', '2014-04-16', 16, 'https://www.gutenberg.org/ebooks/45413', 'en', 11475), +(29633, 'Dedica - Scarabocchio\nLe Commedie, vol. 1', 'Carrera, Valentino', '2014-07-15', 6, 'https://www.gutenberg.org/ebooks/46296', 'it', 4296), +(29634, 'The Chronicle of the Discovery and Conquest of Guinea. Vol. II', 'Zurara, Gomes Eannes de', '2011-04-04', 32, 'https://www.gutenberg.org/ebooks/35764', 'en', 9694), +(29635, 'Geschlecht und Charakter: Eine prinzipielle Untersuchung', 'Weininger, Otto', '2016-02-14', 15, 'https://www.gutenberg.org/ebooks/51221', 'de', 3052), +(29636, 'The Thin Red Line; and Blue Blood', 'Griffiths, Arthur', '2005-12-31', 30, 'https://www.gutenberg.org/ebooks/17434', 'en', 61), +(29637, 'Peter Ibbetson', 'Du Maurier, George', '2006-02-01', 27, 'https://www.gutenberg.org/ebooks/9817', 'en', 2634), +(29638, 'The U-boat hunters', 'Connolly, James B. (James Brendan)', '2007-11-23', 48, 'https://www.gutenberg.org/ebooks/23601', 'en', 11790), +(29639, 'The Bobbsey Twins at School', 'Hope, Laura Lee', '2004-07-01', 44, 'https://www.gutenberg.org/ebooks/6063', 'en', 2154), +(29640, 'William Sharp (Fiona Macleod): A Memoir Compiled by His Wife Elizabeth A. Sharp', 'Sharp, Elizabeth A. (Elizabeth Amelia)', '2014-11-13', 25, 'https://www.gutenberg.org/ebooks/47344', 'en', 11826), +(29641, 'The Elements of non-Euclidean Geometry', 'Coolidge, Julian Lowell', '2008-08-20', 52, 'https://www.gutenberg.org/ebooks/26373', 'en', 4269), +(29642, 'Discoveries in Australia, Volume 2\nDiscoveries in Australia; with an Account of the Coasts and Rivers\nExplored and Surveyed During the Voyage of H.M.S. Beagle, in The\nYears 1837-38-39-40-41-42-43. By Command of the Lords Commissioners\nOf the Admiralty. Also a Narrative of Captain Owen Stanley\'s Visits\nTo the Islands in the Arafura Sea', 'Stokes, John Lort', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12146', 'en', 767), +(29643, 'Gleanings in Buddha-Fields: Studies of Hand and Soul in the Far East', 'Hearn, Lafcadio', '2017-10-05', 66, 'https://www.gutenberg.org/ebooks/55681', 'en', 983), +(29644, 'Histoire de la Monarchie de Juillet (Volume 2 / 7)', 'Thureau-Dangin, Paul', '2013-05-03', 5, 'https://www.gutenberg.org/ebooks/42636', 'fr', 8446), +(29645, 'Human Genome Project, Chromosome Number 11', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3511', 'en', 1385), +(29646, 'The Buddhist Catechism', 'Olcott, Henry Steel', '2009-10-08', 63, 'https://www.gutenberg.org/ebooks/30216', 'en', 11827), +(29647, 'Kalevala (1862): Lyhennetty laitos', NULL, '2017-05-21', 19, 'https://www.gutenberg.org/ebooks/54753', 'fi', 1171), +(29648, 'Heart of the West [Annotated]', 'Henry, O.', '2004-08-03', 42, 'https://www.gutenberg.org/ebooks/13094', 'en', 1516), +(29649, 'The Strange Case of Dr. Jekyll and Mr. Hyde', 'Stevenson, Robert Louis', '2008-06-27', 6966, 'https://www.gutenberg.org/ebooks/43', 'en', 1079), +(29650, 'Rulers of India: Lord Clive', 'Malleson, G. B. (George Bruce)', '2010-04-24', 19, 'https://www.gutenberg.org/ebooks/32125', 'en', 8688), +(29651, 'Dekameron (3. rész)\nSzáz novella', 'Jókai, Mór', '2018-01-28', 11, 'https://www.gutenberg.org/ebooks/56460', 'hu', 1532), +(29652, '浮生六記', 'Shen, Fu', '2008-04-27', 49, 'https://www.gutenberg.org/ebooks/25192', 'zh', 11828), +(29653, 'Äiti', 'Lundegård, Axel', '2014-02-25', 19, 'https://www.gutenberg.org/ebooks/44999', 'fi', 2168), +(29654, '菜根譚前後集', 'Hong, Zicheng, active 1596', '2007-12-26', 33, 'https://www.gutenberg.org/ebooks/24040', 'zh', 740), +(29655, 'La Gioconda', NULL, '2003-11-01', 54, 'https://www.gutenberg.org/ebooks/10275', 'it', 4227), +(29656, 'Scurvy, Past and Present', 'Hess, Alfred F.', '2012-08-14', 18, 'https://www.gutenberg.org/ebooks/40505', 'en', 9837), +(29657, 'The Law and the Lady', 'Collins, Wilkie', '1999-02-01', 144, 'https://www.gutenberg.org/ebooks/1622', 'en', 45), +(29658, 'The Florentine Dagger: A Novel for Amateur Detectives', 'Hecht, Ben', '2019-05-03', 57, 'https://www.gutenberg.org/ebooks/59428', 'en', 1660), +(29659, 'Zoonomia; Or, the Laws of Organic Life, Vol. I', 'Darwin, Erasmus', '2005-04-25', 102, 'https://www.gutenberg.org/ebooks/15707', 'en', 11829), +(29660, 'Renshaw Fanning\'s Quest: A Tale of the High Veldt', 'Mitford, Bertram', '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32919', 'en', 1207), +(29661, 'The University of Michigan', 'Shaw, Wilfred Byron', '2007-05-19', 8, 'https://www.gutenberg.org/ebooks/21532', 'en', 11830), +(29662, 'Physics and Politics, or, Thoughts on the application of the principles of \"natural selection\" and \"inheritance\" to political society', 'Bagehot, Walter', '2003-08-01', 61, 'https://www.gutenberg.org/ebooks/4350', 'en', 11831), +(29663, 'Bahaism and Its Claims\r\nA Study of the Religion Promulgated by Baha Ullah and Abdul Baha', 'Wilson, Samuel Graham', '2011-07-02', 15, 'https://www.gutenberg.org/ebooks/36585', 'en', 11832), +(29664, 'Pubs: A Collection of Hotel, Inn, and Tavern Signs in Great Britain and Ireland\r\nto Which Are Added a Few Foreign Café Signs', NULL, '2014-03-08', 18, 'https://www.gutenberg.org/ebooks/45077', 'en', 11833), +(29665, 'The Tales and Novels, v9: Belphegor and Others', 'La Fontaine, Jean de', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/5282', 'en', 506), +(29666, 'Canada: Its Postage Stamps and Postal Stationery', 'Howes, Clifton A. (Clifton Armstrong)', '2011-09-17', 8, 'https://www.gutenberg.org/ebooks/37457', 'en', 11834), +(29667, 'Half-hours with the Highwaymen - Vol 2\r\nPicturesque Biographies and Traditions of the \"Knights of the Road\"', 'Harper, Charles G. (Charles George)', '2016-10-11', 18, 'https://www.gutenberg.org/ebooks/53112', 'en', 8522), +(29668, 'Strange Pages from Family Papers', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2005-11-11', 23, 'https://www.gutenberg.org/ebooks/17050', 'en', 638), +(29669, 'Tagalog Texts with Grammatical Analysis', 'Bloomfield, Leonard', '2015-12-30', 24, 'https://www.gutenberg.org/ebooks/50797', 'en', 3583), +(29670, 'The Crofton Boys', 'Martineau, Harriet', '2007-10-31', 6, 'https://www.gutenberg.org/ebooks/23265', 'en', 153), +(29671, 'The Abbot', 'Scott, Walter', '2004-09-01', 102, 'https://www.gutenberg.org/ebooks/6407', 'en', 98), +(29672, 'Fairies and Folk of Ireland', 'Frost, William Henry', '2006-07-13', 47, 'https://www.gutenberg.org/ebooks/18824', 'en', 3430), +(29673, 'L\'enfance et l\'adolescence\nÉdition spéciale pour la jeunesse revue par l\'auteur', 'Tolstoy, Leo, graf', '2014-12-20', 22, 'https://www.gutenberg.org/ebooks/47720', 'fr', 11835), +(29674, 'Louisiana', 'Burnett, Frances Hodgson', '2011-02-17', 12, 'https://www.gutenberg.org/ebooks/35300', 'en', 11836), +(29675, 'Letters on Natural Magic; Addressed to Sir Walter Scott, Bart.', 'Brewster, David', '2016-04-03', 21, 'https://www.gutenberg.org/ebooks/51645', 'en', 11837), +(29676, 'The Letters of Robert Browning and Elizabeth Barrett Barrett, Vol. 1 (of 2) 1845-1846', 'Browning, Robert', '2005-07-02', 121, 'https://www.gutenberg.org/ebooks/16182', 'en', 1865), +(29677, 'Cinq Mars — Volume 3', 'Vigny, Alfred de', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3949', 'en', 492), +(29678, 'Eidolon; or, The Course of a Soul; and Other Poems', 'Cassels, Walter Richard', '2009-12-13', 5, 'https://www.gutenberg.org/ebooks/30672', 'en', 8), +(29679, 'Aunt Jane', 'Lee, Jennette', '2013-08-02', 8, 'https://www.gutenberg.org/ebooks/43380', 'en', 7779), +(29680, 'The Works of the Emperor Julian, Vol. 2', 'Julian, Emperor of Rome', '2015-04-24', 40, 'https://www.gutenberg.org/ebooks/48768', 'en', 4139), +(29681, 'The Free Press', 'Belloc, Hilaire', '2006-03-19', 64, 'https://www.gutenberg.org/ebooks/18018', 'en', 11838), +(29682, 'Reminiscences of Joseph, the Prophet, and the Coming Forth of the Book of Mormon', 'Stevenson, Edward', '2017-03-10', 15, 'https://www.gutenberg.org/ebooks/54337', 'en', 7710), +(29683, 'Wanderer of the Wasteland', 'Grey, Zane', '2019-08-15', 943, 'https://www.gutenberg.org/ebooks/60102', 'en', 8516), +(29684, 'I suicidi di Parigi', 'Petruccelli della Gattina, Ferdinando', '2008-09-28', 17, 'https://www.gutenberg.org/ebooks/26717', 'it', 860), +(29685, 'An Account of the Extraordinary Medicinal Fluid, called Aether.', 'Turner, Matthew', '2004-06-01', 32, 'https://www.gutenberg.org/ebooks/12522', 'en', 11839), +(29686, 'Adventures While Preaching the Gospel of Beauty', 'Lindsay, Vachel', '2013-03-03', 13, 'https://www.gutenberg.org/ebooks/42252', 'en', 11840), +(29687, 'Mark Twain\'s Burlesque Autobiography', 'Twain, Mark', '2004-09-16', 65, 'https://www.gutenberg.org/ebooks/3175', 'en', 190), +(29688, 'A Romance of Billy-Goat Hill', 'Rice, Alice Caldwell Hegan', '2004-10-01', 26, 'https://www.gutenberg.org/ebooks/6635', 'en', 1996), +(29689, 'Historical Record of the Fourteenth, or the King\'s, Regiment of Light Dragoons\r\nContaining an Account of the Formation of the Regiment and of Its Subsequent Services', 'Cannon, Richard', '2017-06-20', 2, 'https://www.gutenberg.org/ebooks/54939', 'en', 11841), +(29690, 'Chats on Old Miniatures', 'Foster, J. J. (Joshua James)', '2014-12-02', 19, 'https://www.gutenberg.org/ebooks/47512', 'en', 10789), +(29691, 'Catalogue Of Linguistic Manuscripts In The Library Of The Bureau Of Ethnology. (1881 N 01 / 1879-1880 (Pages 553-578))', 'Pilling, James Constantine', '2005-12-09', 11, 'https://www.gutenberg.org/ebooks/17262', 'en', 6903), +(29692, 'How The Redoubt Was Taken\n1896', 'Mérimée, Prosper', '2007-10-17', 20, 'https://www.gutenberg.org/ebooks/23057', 'en', 179), +(29693, 'Sonnie-Boy\'s People', 'Connolly, James B. (James Brendan)', '2007-07-31', 6, 'https://www.gutenberg.org/ebooks/22185', 'en', 112), +(29694, 'A Garden Diary, September 1899—September 1900', 'Lawless, Emily', '2016-03-16', 18, 'https://www.gutenberg.org/ebooks/51477', 'en', 1413), +(29695, 'The Promise of Air', 'Blackwood, Algernon', '2011-01-31', 25, 'https://www.gutenberg.org/ebooks/35132', 'en', 61), +(29696, 'The Swan of Vilamorta', 'Pardo Bazán, Emilia, condesa de', '2017-02-03', 19, 'https://www.gutenberg.org/ebooks/54105', 'en', 6875), +(29697, 'Byways of Ghost-Land', 'O\'Donnell, Elliott', '2009-11-09', 32, 'https://www.gutenberg.org/ebooks/30440', 'en', 1245), +(29698, 'Waifs and Strays\nPart 1', 'Henry, O.', '2000-08-01', 45, 'https://www.gutenberg.org/ebooks/2295', 'en', 112), +(29699, 'The Town: Its Memorable Characters and Events', 'Hunt, Leigh', '2013-02-10', 24, 'https://www.gutenberg.org/ebooks/42060', 'en', 856), +(29700, 'The History of the 2nd Dragoons: \"Royal Scots Greys\"', 'Almack, Edward', '2015-07-19', 18, 'https://www.gutenberg.org/ebooks/49488', 'en', 11842), +(29701, 'Cato: A Tragedy, in Five Acts', 'Addison, Joseph', '2010-03-10', 51, 'https://www.gutenberg.org/ebooks/31592', 'en', 1298), +(29702, 'The Wandering Jew — Volume 09', 'Sue, Eugène', '2004-10-25', 16, 'https://www.gutenberg.org/ebooks/3347', 'en', 4728), +(29703, 'Heinosen perhe huvimatkalla\nHuvinäytelmä 2:ssa näytöksessä', 'Hodell, Frans', '2008-09-04', 15, 'https://www.gutenberg.org/ebooks/26525', 'fi', 5375), +(29704, 'Rapunzel', 'Grimm, Wilhelm', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12710', 'en', 1007), +(29705, 'Alcatraz', 'Brand, Max', '2004-02-01', 46, 'https://www.gutenberg.org/ebooks/11195', 'en', 8308), +(29706, 'Kitty of the Roses', 'Barbour, Ralph Henry', '2018-02-27', 22, 'https://www.gutenberg.org/ebooks/56652', 'en', 6156), +(29707, 'The World with a Thousand Moons', 'Hamilton, Edmond', '2010-05-10', 56, 'https://www.gutenberg.org/ebooks/32317', 'en', 26), +(29708, 'Die Reise zum Mars', 'Dominik, Hans', '2012-09-12', 34, 'https://www.gutenberg.org/ebooks/40737', 'de', 26), +(29709, 'The Commission in Lunacy', 'Balzac, Honoré de', '2004-07-02', 35, 'https://www.gutenberg.org/ebooks/1410', 'en', 984), +(29710, '傷寒論', 'Zhang, Zhongjing, active 168-196', '2008-01-14', 50, 'https://www.gutenberg.org/ebooks/24272', 'zh', 11843), +(29711, 'Lettere di Lodovico Ariosto\nCon prefazione storico-critica, documenti e note', 'Ariosto, Lodovico', '2018-08-27', 36, 'https://www.gutenberg.org/ebooks/57780', 'it', 11844), +(29712, 'Punchinello, Volume 2, No. 29, October 15, 1870', 'Various', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10047', 'en', 372), +(29713, 'Diary of Samuel Pepys — Complete 1665 N.S.', 'Pepys, Samuel', '2004-10-31', 17, 'https://www.gutenberg.org/ebooks/4162', 'en', 738), +(29714, 'The Long Patrol: A Tale of the Mounted Police', 'Cody, H. A. (Hiram Alfred)', '2014-03-28', 6, 'https://www.gutenberg.org/ebooks/45245', 'en', 11845), +(29715, 'Violin Mastery: Talks with Master Violinists and Teachers', 'Martens, Frederick Herman', '2005-04-04', 79, 'https://www.gutenberg.org/ebooks/15535', 'en', 11846), +(29716, 'Don Juan', 'Byron, George Gordon Byron, Baron', '2007-06-06', 811, 'https://www.gutenberg.org/ebooks/21700', 'en', 8973), +(29717, 'The Motor Boys in the Army; or, Ned, Bob and Jerry as Volunteers', 'Young, Clarence', '2016-10-19', 10, 'https://www.gutenberg.org/ebooks/53320', 'en', 3466), +(29718, 'Haunted Places in England', 'O\'Donnell, Elliott', '2013-12-09', 47, 'https://www.gutenberg.org/ebooks/44397', 'en', 1245), +(29719, 'Wild Wales: The People, Language, & Scenery', 'Borrow, George', '2011-10-08', 25, 'https://www.gutenberg.org/ebooks/37665', 'en', 11847), +(29720, 'The Cambrian Sketch-Book: Tales, Scenes, and Legends of Wild Wales', 'Davies, R. Rice', '2012-04-26', 29, 'https://www.gutenberg.org/ebooks/39539', 'en', 11848), +(29721, 'Vida de Don Duarte de Meneses, tercero Conde de Viana, y sucessos notables de Portugal en su tiempo', 'Vasconcelos, Agostinho Manuel de', '2016-08-15', 3, 'https://www.gutenberg.org/ebooks/52808', 'pt', 11849), +(29722, 'The Cubies\' ABC', 'Lyall, Mary Chase Mills', '2012-11-21', 8, 'https://www.gutenberg.org/ebooks/41423', 'en', 11850), +(29723, 'Ecclesiastical Vestments: Their development and history', 'Macalister, Robert Alexander Stewart', '2018-02-04', 15, 'https://www.gutenberg.org/ebooks/56494', 'en', 3454), +(29724, 'History of Liberia\nJohns Hopkins University Studies in Historical and Political Science', 'McPherson, J. H. T. (John Hanson Thomas)', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11353', 'en', 11851), +(29725, 'What The Left Hand Was Doing', 'Garrett, Randall', '2008-04-25', 66, 'https://www.gutenberg.org/ebooks/25166', 'en', 26), +(29726, 'Antony\'s Address over the Body of Caesar\r\nFrom Julius Caesar', 'Shakespeare, William', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10281', 'en', 11852), +(29727, 'Émile Zola, Novelist and Reformer: An Account of His Life & Work', 'Vizetelly, Ernest Alfred', '2018-07-20', 4, 'https://www.gutenberg.org/ebooks/57546', 'en', 11853), +(29728, 'Der Wahnsinnige: Eine Erzählung aus Südamerika', 'Gerstäcker, Friedrich', '2010-06-27', 17, 'https://www.gutenberg.org/ebooks/33003', 'de', 227), +(29729, 'The Coming Night\nA Sermon Preached in Cromer Church, on Friday, June 12, 1857, on occasion of the death of Anna Gurney', 'Hoare, Edward', '2016-05-09', 11, 'https://www.gutenberg.org/ebooks/52034', 'en', 11854), +(29730, 'The Book of Riddles', 'Anonymous', '2011-06-30', 93, 'https://www.gutenberg.org/ebooks/36571', 'en', 1997), +(29731, 'The Library of Work and Play: Mechanics, Indoors and Out', 'Hodgson, Fred. T. (Frederick Thomas)', '2014-03-08', 12, 'https://www.gutenberg.org/ebooks/45083', 'en', 11855), +(29732, 'Perkins of Portland: Perkins The Great', 'Butler, Ellis Parker', '2013-11-10', 18, 'https://www.gutenberg.org/ebooks/44151', 'en', 4405), +(29733, 'Gunnar et Nial\nscènes et moeurs de la vieille Islande', NULL, '2008-03-21', 17, 'https://www.gutenberg.org/ebooks/24888', 'fr', 11856), +(29734, 'Tales and Novels of J. de La Fontaine — Volume 02', 'La Fontaine, Jean de', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/5276', 'en', 2629), +(29735, 'Jean Racine', 'Lemaître, Jules', '2007-01-22', 9, 'https://www.gutenberg.org/ebooks/20414', 'fr', 11857), +(29736, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1873-03/04)', NULL, '2005-01-06', 18, 'https://www.gutenberg.org/ebooks/14621', 'pt', 11748), +(29737, 'Oja-Pappalan joulu\nTapain-kuvia Etelä-Pohjanmaalta 1870-luvulta', 'Alkio, Santeri', '2015-12-24', 7, 'https://www.gutenberg.org/ebooks/50763', 'fi', 61), +(29738, 'Sinks of London Laid Open\r\nA Pocket Companion for the Uninitiated, to Which is Added a Modern Flash Dictionary Containing all the Cant Words, Slang Terms, and Flash Phrases Now in Vogue, with a List of the Sixty Orders of Prime Coves', NULL, '2007-11-02', 19, 'https://www.gutenberg.org/ebooks/23291', 'en', 351), +(29739, 'Forgotten Tales of Long Ago', 'Lucas, E. V. (Edward Verrall)', '2009-05-03', 25, 'https://www.gutenberg.org/ebooks/28679', 'en', 388), +(29740, 'The Uncommercial Traveller', 'Dickens, Charles', '1997-05-01', 164, 'https://www.gutenberg.org/ebooks/914', 'en', 856), +(29741, 'The Iron Division, National Guard of Pennsylvania, in the World War\nThe authentic and comprehensive narrative of the gallant\ndeeds and glorious achievements of the 28th division in\nthe world\'s greatest war', 'Proctor, H. G. (Harry George)', '2010-11-07', 23, 'https://www.gutenberg.org/ebooks/34226', 'en', 11858), +(29742, 'Sir Walter Raleigh and the Air History: A Personal Recollection', 'Jones, H. A. (Henry Albert)', '2014-08-17', 14, 'https://www.gutenberg.org/ebooks/46606', 'en', 11859), +(29743, 'The Affectionate Shepherd', 'Barnfield, Richard', '2006-11-23', 38, 'https://www.gutenberg.org/ebooks/19902', 'en', 11860), +(29744, 'The History of Education\r\nEducational Practice and Progress Considered as a Phase of the Development and Spread of Western Civilization', 'Cubberley, Ellwood Patterson', '2005-02-01', 16, 'https://www.gutenberg.org/ebooks/7521', 'en', 3474), +(29745, 'The Wedding Ring\r\nA Series of Discourses for Husbands and Wives and Those Contemplating Matrimony', 'Talmage, T. De Witt (Thomas De Witt)', '2007-08-16', 8, 'https://www.gutenberg.org/ebooks/22343', 'en', 1451), +(29746, 'The Great Round World and What Is Going On In It, Vol. 1, No. 53, November 11, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-07-02', 14, 'https://www.gutenberg.org/ebooks/16176', 'en', 1), +(29747, 'The American Republic: Its Constitution, Tendencies, and Destiny', 'Brownson, Orestes Augustus', '2000-01-01', 41, 'https://www.gutenberg.org/ebooks/2053', 'en', 11861), +(29748, 'Lyra Frivola', 'Godley, A. D. (Alfred Denis)', '2006-03-02', 12, 'https://www.gutenberg.org/ebooks/17898', 'en', 8), +(29749, 'Little Tales of The Desert', 'Foster, Ethel Twycross', '2009-12-15', 8, 'https://www.gutenberg.org/ebooks/30686', 'en', 3114), +(29750, 'Gulf and Glacier; or, The Percivals in Alaska', 'Allen, Willis Boyd', '2013-08-01', 4, 'https://www.gutenberg.org/ebooks/43374', 'en', 5372), +(29751, 'The Arabian Nights Entertainments', 'Lang, Andrew', '1994-05-01', 752, 'https://www.gutenberg.org/ebooks/128', 'en', 1113), +(29752, 'Tom Tufton\'s Travels', 'Everett-Green, Evelyn', '2004-09-09', 35, 'https://www.gutenberg.org/ebooks/13404', 'en', 323), +(29753, 'Dead World', 'Douglas, Jack', '2008-12-26', 59, 'https://www.gutenberg.org/ebooks/27631', 'en', 26), +(29754, 'Arsène Lupin Mauretanian keisari', 'Leblanc, Maurice', '2017-07-27', 8, 'https://www.gutenberg.org/ebooks/55211', 'fi', 128), +(29755, 'The Far Horizon', 'Malet, Lucas', '2005-07-01', 22, 'https://www.gutenberg.org/ebooks/8569', 'en', 61), +(29756, 'The Stolen White Elephant', 'Twain, Mark', '2004-09-16', 81, 'https://www.gutenberg.org/ebooks/3181', 'en', 179), +(29757, 'Devil Stories: An Anthology', NULL, '2010-03-24', 86, 'https://www.gutenberg.org/ebooks/31754', 'en', 179), +(29758, 'Min Tants Planer: Komedi i en akt', 'Nicolle, Henri', '2010-09-30', 12, 'https://www.gutenberg.org/ebooks/34014', 'sv', 402), +(29759, 'History of Brighthelmston; or, Brighton as I View it and Others Knew It\r\nWith a Chronological Table of Local Events', 'Erredge, John Ackerson', '2015-11-25', 14, 'https://www.gutenberg.org/ebooks/50551', 'en', 11862), +(29760, 'Pictures in Colour of the Isle of Wight', NULL, '2005-12-13', 32, 'https://www.gutenberg.org/ebooks/17296', 'en', 11863), +(29761, 'The Radiant Shell', 'Ernst, Paul', '2007-07-30', 68, 'https://www.gutenberg.org/ebooks/22171', 'en', 26), +(29762, 'Homesick', 'Venable, Lyn', '2009-08-03', 45, 'https://www.gutenberg.org/ebooks/29599', 'en', 26), +(29763, 'The Waif of the \"Cynthia\"', 'Verne, Jules', '2005-07-22', 27, 'https://www.gutenberg.org/ebooks/16344', 'en', 11722), +(29764, 'The Reluctant Heroes', 'Robinson, Frank M.', '2016-03-17', 40, 'https://www.gutenberg.org/ebooks/51483', 'en', 26), +(29765, 'Our Part in the Great War', 'Gleason, Arthur', '2014-07-27', 14, 'https://www.gutenberg.org/ebooks/46434', 'en', 8930), +(29766, '\"My Novel\" — Volume 12', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7713', 'en', 282), +(29767, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 11, No. 23, February, 1873', 'Various', '2004-10-05', 23, 'https://www.gutenberg.org/ebooks/13636', 'en', 210), +(29768, 'Sentimental Education; Or, The History of a Young Man. Volume 1', 'Flaubert, Gustave', '2011-01-02', 107, 'https://www.gutenberg.org/ebooks/34828', 'en', 560), +(29769, '清代野记', 'Zuoguanlaoren', '2008-12-04', 24, 'https://www.gutenberg.org/ebooks/27403', 'zh', 5195), +(29770, 'Three Ghost Stories', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9689', 'en', 401), +(29771, 'Romeo and Juliet', 'Shakespeare, William', '2000-07-01', 45, 'https://www.gutenberg.org/ebooks/2261', 'en', 10656), +(29772, 'Turquoise and Ruby', 'Meade, L. T.', '2013-07-08', 6, 'https://www.gutenberg.org/ebooks/43146', 'en', 11864), +(29773, 'Székelyföldi gyüjtés (Magyar népköltési gyüjtemény 7. kötet)', 'Mailand, Oszkár', '2013-02-14', 11, 'https://www.gutenberg.org/ebooks/42094', 'hu', 11865), +(29774, 'Lee\'s Last Campaign', 'Gorman, J. C. (John C.)', '2010-03-09', 9, 'https://www.gutenberg.org/ebooks/31566', 'en', 11866), +(29775, 'Mémoires de Céleste Mogador, Volume 3 (of 4)', 'Chabrillan, Céleste Vénard de, comtesse', '2017-07-01', 13, 'https://www.gutenberg.org/ebooks/55023', 'fr', 11867), +(29776, 'Mary Wollaston', 'Webster, Henry Kitchell', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11161', 'en', 348), +(29777, 'Assimilative Memory; or, How to Attend and Never Forget', 'Loisette, A. (Alphonse)', '2008-05-06', 82, 'https://www.gutenberg.org/ebooks/25354', 'en', 11868), +(29778, 'Gatherings from Spain', 'Ford, Richard', '2012-12-12', 18, 'https://www.gutenberg.org/ebooks/41611', 'en', 1514), +(29779, 'History of the Spanish Conquest of Yucatan and of the Itzas\r\nPapers of the Peabody Museum of American Archaeology and Ethnology, Hard University. Vol. VII.', 'Means, Philip Ainsworth', '2010-07-22', 14, 'https://www.gutenberg.org/ebooks/33231', 'en', 11869), +(29780, 'The Birds\' Christmas Carol', 'Wiggin, Kate Douglas Smith', '2008-01-14', 31, 'https://www.gutenberg.org/ebooks/24286', 'en', 585), +(29781, 'A Sheaf of Bluebells', 'Orczy, Emmuska Orczy, Baroness', '2018-08-26', 30, 'https://www.gutenberg.org/ebooks/57774', 'en', 2221), +(29782, 'Reina Valera New Testament of the Bible 1858', NULL, '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5878', 'es', 2781), +(29783, 'The Child\'s Book About Moses', 'Anonymous', '2011-07-15', 10, 'https://www.gutenberg.org/ebooks/36743', 'en', 11870), +(29784, 'Diary of Samuel Pepys — Volume 71: January 1668-69', 'Pepys, Samuel', '2004-11-28', 14, 'https://www.gutenberg.org/ebooks/4196', 'en', 738), +(29785, '隨園詩話', 'Yuan, Mei', '2016-06-01', 17, 'https://www.gutenberg.org/ebooks/52206', 'zh', 9527), +(29786, 'Torchy', 'Ford, Sewell', '2007-02-19', 23, 'https://www.gutenberg.org/ebooks/20626', 'en', 1660), +(29787, 'Blackwood\'s Edinburgh Magazine — Volume 54, No. 333, July 1843', 'Various', '2004-12-22', 19, 'https://www.gutenberg.org/ebooks/14413', 'en', 274), +(29788, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 14 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-12-05', 11, 'https://www.gutenberg.org/ebooks/44363', 'it', 6107), +(29789, 'The Travelling Companions: A Story in Scenes', 'Anstey, F.', '2011-10-10', 29, 'https://www.gutenberg.org/ebooks/37691', 'en', 564), +(29790, 'State of the Union Addresses', 'Ford, Gerald R.', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/5044', 'en', 1926), +(29791, 'The Modern Scottish Minstrel, Volumes 1-6.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2007-09-05', 46, 'https://www.gutenberg.org/ebooks/22515', 'en', 11871), +(29792, 'Kindheit: Autobiographische Novelle', 'Tolstoy, Leo, graf', '2015-08-30', 19, 'https://www.gutenberg.org/ebooks/49824', 'de', 11872), +(29793, 'Marzio\'s Crucifix, and Zoroaster', 'Crawford, F. Marion (Francis Marion)', '2005-09-18', 34, 'https://www.gutenberg.org/ebooks/16720', 'en', 61), +(29794, 'B. C. 30,000', 'Meek, S. P. (Sterner St. Paul)', '2008-10-21', 63, 'https://www.gutenberg.org/ebooks/26989', 'en', 5072), +(29795, 'The Relations between the Laws of Babylonia and the Laws of the Hebrew Peoples\nThe Schweich Lectures', 'Johns, C. H. W. (Claude Hermann Walter)', '2014-06-20', 29, 'https://www.gutenberg.org/ebooks/46050', 'en', 11873), +(29796, 'Five Lectures on Reincarnation', 'Abhedananda, Swami', '2005-01-01', 50, 'https://www.gutenberg.org/ebooks/7377', 'en', 11874), +(29797, 'The Blue Jar Story Book', 'Lamb, Charles', '2010-11-28', 32, 'https://www.gutenberg.org/ebooks/34470', 'en', 388), +(29798, 'The Vitality of Mormonism: Brief Essays on Distinctive Doctrines of the Church of Jesus Christ of Latter-day Saints', 'Talmage, James E. (James Edward)', '2014-10-23', 39, 'https://www.gutenberg.org/ebooks/47182', 'en', 1440), +(29799, 'Saaristosta: Kuvia suomalaisten saaristolaisten elämästä', 'Ivalo, Santeri', '2015-10-05', 23, 'https://www.gutenberg.org/ebooks/50135', 'fi', 456), +(29800, 'The Witness of the Stars', 'Bullinger, E. W. (Ethelbert William)', '2015-05-21', 228, 'https://www.gutenberg.org/ebooks/49018', 'en', 7884), +(29801, 'Stevenson Memorial Cook Book', NULL, '2010-01-27', 45, 'https://www.gutenberg.org/ebooks/31102', 'en', 103), +(29802, 'The Younger American Poets', 'Rittenhouse, Jessie Belle', '2017-08-28', 7, 'https://www.gutenberg.org/ebooks/55447', 'en', 11875), +(29803, 'Two Thousand Miles on an Automobile\r\nBeing a Desultory Narrative of a Trip Through New England, New York, Canada, and the West, By \"Chauffeur\"', 'Eddy, Arthur Jerome', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12380', 'en', 6389), +(29804, 'Professor Royce\'s Libel\r\nA Public Appeal for Redress to the Corporation and Overseers of Harvard University', 'Abbot, Francis Ellingwood', '2006-11-12', 17, 'https://www.gutenberg.org/ebooks/19768', 'en', 11876), +(29805, 'Punch, or the London Charivari, Volume 100, February 14, 1891', 'Various', '2004-08-22', 2, 'https://www.gutenberg.org/ebooks/13252', 'en', 134), +(29806, 'Adventures of an Aide-de-Camp; or, A Campaign in Calabria, Volume 3 (of 3)', 'Grant, James', '2017-04-23', 9, 'https://www.gutenberg.org/ebooks/54595', 'en', 10326), +(29807, 'The Fixed Period', 'Trollope, Anthony', '2008-10-27', 71, 'https://www.gutenberg.org/ebooks/27067', 'en', 11877), +(29808, 'Noto: An Unexplored Corner of Japan', 'Lowell, Percival', '2001-04-01', 12, 'https://www.gutenberg.org/ebooks/2605', 'en', 11878), +(29809, 'The Golden Key; Or, A Heart\'s Silent Worship', 'Sheldon, Georgie, Mrs.', '2016-01-13', 11, 'https://www.gutenberg.org/ebooks/50909', 'en', 11879), +(29810, 'The Kaiser\'s Memoirs', 'William II, German Emperor', '2013-08-22', 47, 'https://www.gutenberg.org/ebooks/43522', 'en', 11880), +(29811, 'The Electronic Mind Reader: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2009-05-14', 36, 'https://www.gutenberg.org/ebooks/28813', 'en', 11881), +(29812, 'A Modest Proposal\r\nFor preventing the children of poor people in Ireland, from being a burden on their parents or country, and for making them beneficial to the publick', 'Swift, Jonathan', '1997-10-01', 2124, 'https://www.gutenberg.org/ebooks/1080', 'en', 10105), +(29813, 'L\'Illustration, No. 3231, 28 Janvier 1905', 'Various', '2010-09-06', 6, 'https://www.gutenberg.org/ebooks/33655', 'fr', 150); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(29814, 'Aunt Jo\'s Scrap-Bag, Volume 4\nMy Girls, etc.', 'Alcott, Louisa May', '2018-06-11', 35, 'https://www.gutenberg.org/ebooks/57310', 'en', 388), +(29815, 'All Things Considered', 'Chesterton, G. K. (Gilbert Keith)', '2004-03-01', 254, 'https://www.gutenberg.org/ebooks/11505', 'en', 472), +(29816, 'An Apostate: Nawin of Thais', 'Sills, Steven David Justin', '2008-06-08', 20, 'https://www.gutenberg.org/ebooks/25730', 'en', 61), +(29817, 'The Theater (1720)', 'Falstaffe, John, Sir', '2005-06-07', 14, 'https://www.gutenberg.org/ebooks/15999', 'en', 5140), +(29818, 'Dürer\r\nArtist-Biographies', 'Sweetser, M. F. (Moses Foster)', '2010-06-13', 11, 'https://www.gutenberg.org/ebooks/32787', 'en', 6212), +(29819, 'Miles Tremenhere: A Novel. Vol. 1 of 2', 'Maillard, Annette Marie', '2012-11-03', 10, 'https://www.gutenberg.org/ebooks/41275', 'en', 401), +(29820, 'Left on Labrador\nor, The cruise of the Schooner-yacht \'Curlew.\' as Recorded by \'Wash.\'', 'Stephens, C. A. (Charles Asbury)', '2007-01-01', 12, 'https://www.gutenberg.org/ebooks/20242', 'en', 10538), +(29821, 'A Frog He Would A-Wooing Go', 'Caldecott, Randolph', '2004-11-17', 29, 'https://www.gutenberg.org/ebooks/14077', 'en', 1059), +(29822, 'Cassell\'s History of England, Vol. 5 (of 8)\r\nFrom the Peninsular War to the Death of Sir Robert Peel', 'Anonymous', '2018-11-26', 24, 'https://www.gutenberg.org/ebooks/58358', 'en', 1953), +(29823, 'Punch, or the London Charivari, Vol. 108, April 20, 1895', 'Various', '2014-01-19', 14, 'https://www.gutenberg.org/ebooks/44707', 'en', 134), +(29824, 'Rab and His Friends', 'Brown, John', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/5420', 'en', 11882), +(29825, 'An Examination into and an Elucidation of the Great Principle of the Mediation and Atonement of Our Lord and Savior Jesus Christ', 'Taylor, John', '2011-06-05', 23, 'https://www.gutenberg.org/ebooks/36327', 'en', 11883), +(29826, 'The Emily Emmins Papers', 'Wells, Carolyn', '2016-07-28', 10, 'https://www.gutenberg.org/ebooks/52662', 'en', 856), +(29827, 'The Golden Grasshopper: A story of the days of Sir Thomas Gresham', 'Kingston, William Henry Giles', '2007-05-08', 43, 'https://www.gutenberg.org/ebooks/21390', 'en', 11884), +(29828, 'Climate and Health in Hot Countries and the Outlines of Tropical Climatology\r\nA Popular Treatise on Personal Hygiene in the Hotter Parts of the World, and on the Climates That Will Be Met Within Them.', 'Giles, George Michael James', '2018-05-09', 4, 'https://www.gutenberg.org/ebooks/57122', 'en', 11885), +(29829, 'Cours familier de Littérature - Volume 13', 'Lamartine, Alphonse de', '2012-07-10', 11, 'https://www.gutenberg.org/ebooks/40195', 'fr', 2156), +(29830, 'Narrative of a Second Expedition to the Shores of the Polar Sea, in the Years 1825, 1826, and 1827', 'Franklin, John', '2010-08-19', 40, 'https://www.gutenberg.org/ebooks/33467', 'en', 11886), +(29831, 'The Woman and the Car\r\nA Chatty Little Handbook for All Women Who Motor or Who Want to Motor', 'Levitt, Dorothy', '2019-02-24', 31, 'https://www.gutenberg.org/ebooks/58956', 'en', 11887), +(29832, 'Spiritual Folk-Songs of Early America\r\nTwo Hundred and Fifty Tunes and Texts, with an Introduction and Notes', NULL, '2019-07-10', 188, 'https://www.gutenberg.org/ebooks/59884', 'en', 3717), +(29833, 'International Law. A Treatise. Volume 2 (of 2)\r\nWar and Neutrality. Second Edition', 'Oppenheim, L. (Lassa)', '2012-10-16', 44, 'https://www.gutenberg.org/ebooks/41047', 'en', 4333), +(29834, 'Barks and Purrs', 'Colette', '2004-03-01', 83, 'https://www.gutenberg.org/ebooks/11737', 'en', 2464), +(29835, 'Leighton', 'Baldry, A. L. (Alfred Lys)', '2011-08-01', 16, 'https://www.gutenberg.org/ebooks/36929', 'en', 11888), +(29836, 'Hero-Myths & Legends of the British Race', 'Ebbutt, M. I. (Maud Isabel)', '2008-05-17', 118, 'https://www.gutenberg.org/ebooks/25502', 'en', 11889), +(29837, 'The Secret of the Earth', 'Beale, Charles Willing', '2013-12-28', 18, 'https://www.gutenberg.org/ebooks/44535', 'en', 26), +(29838, 'The Arabian Nights Entertainments - Volume 01', 'Anonymous', '2004-05-01', 22, 'https://www.gutenberg.org/ebooks/5612', 'en', 9762), +(29839, 'Four Days: The Story of a War Marriage', 'Hemenway, Hetty', '2006-12-09', 24, 'https://www.gutenberg.org/ebooks/20070', 'en', 579), +(29840, 'Mammals of Washington, Volume 2\nUniversity of Kansas Publications Museum of Natural History', 'Dalquest, Walter Woelber', '2016-11-23', 6, 'https://www.gutenberg.org/ebooks/53582', 'en', 11890), +(29841, 'The Fall of the Grand Sarrasin\r\nBeing a Chronicle of Sir Nigel de Bessin, Knight, of Things that Happed in Guernsey Island, in the Norman Seas, in and about the Year One Thousand and Fifty-Seven', 'Ferrar, William John', '2004-12-03', 20, 'https://www.gutenberg.org/ebooks/14245', 'en', 11891), +(29842, 'Francia; Un bienfait n\'est jamais perdu', 'Sand, George', '2005-03-17', 32, 'https://www.gutenberg.org/ebooks/15397', 'fr', 61), +(29843, 'The Test of Scarlet: A Romance of Reality', 'Dawson, Coningsby', '2016-06-30', 11, 'https://www.gutenberg.org/ebooks/52450', 'en', 2564), +(29844, 'The Works of Sir Thomas Browne, Volume 2', 'Browne, Thomas, Sir', '2012-08-05', 47, 'https://www.gutenberg.org/ebooks/39961', 'en', 680), +(29845, 'Peccavi', 'Hornung, E. W. (Ernest William)', '2011-05-15', 27, 'https://www.gutenberg.org/ebooks/36115', 'en', 11892), +(29846, 'Pilgrim Sorrow: A Cycle of Tales', 'Sylva, Carmen', '2014-07-12', 6, 'https://www.gutenberg.org/ebooks/46262', 'en', 61), +(29847, 'A Fantasy of Far Japan; Or, Summer Dream Dialogues', 'Suematsu, Kencho', '2011-04-08', 15, 'https://www.gutenberg.org/ebooks/35790', 'en', 983), +(29848, 'The Book of the Dead', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2004-12-01', 129, 'https://www.gutenberg.org/ebooks/7145', 'en', 9971), +(29849, 'The Land of the Long Night', 'Du Chaillu, Paul B. (Paul Belloni)', '2007-09-22', 36, 'https://www.gutenberg.org/ebooks/22727', 'en', 11893), +(29850, 'The Gem Collector', 'Wodehouse, P. G. (Pelham Grenville)', '2005-09-01', 140, 'https://www.gutenberg.org/ebooks/8931', 'en', 3657), +(29851, 'An Apology for Atheism\nAddressed to Religious Investigators of Every Denomination\nby One of Its Apostles', 'Southwell, Charles', '2005-08-11', 21, 'https://www.gutenberg.org/ebooks/16512', 'en', 471), +(29852, 'Fifteen sonnets of Petrarch', 'Petrarca, Francesco', '2015-10-25', 301, 'https://www.gutenberg.org/ebooks/50307', 'en', 11894), +(29853, 'La Calandria\nCommedie del Cinquecento', 'Dovizi, Bernardo,‏ da Bibbiena', '2010-12-13', 13, 'https://www.gutenberg.org/ebooks/34642', 'it', 11895), +(29854, 'Amelia — Volume 3', 'Fielding, Henry', '2004-07-01', 31, 'https://www.gutenberg.org/ebooks/6097', 'en', 378), +(29855, 'Een abel spel van Lanseloet van Denemerken\r\nhoe hi wert minnende ene joncfrou, die met synder moeder diende', 'Anonymous', '2008-08-21', 15, 'https://www.gutenberg.org/ebooks/26387', 'nl', 7450), +(29856, 'Vildhjärnor: Amerikahistorier', 'Strömberg, Sigge', '2017-10-02', 17, 'https://www.gutenberg.org/ebooks/55675', 'sv', 315), +(29857, 'Jean-Christophe, Volume I', 'Rolland, Romain', '2005-04-01', 96, 'https://www.gutenberg.org/ebooks/7979', 'en', 1432), +(29858, 'Modern Industrialism and the Negroes of the United States\nThe American Negro Academy, Occasional Papers No. 12', 'Grimké, Archibald Henry', '2010-02-20', 25, 'https://www.gutenberg.org/ebooks/31330', 'en', 7690), +(29859, 'They and I', 'Jerome, Jerome K. (Jerome Klapka)', '2000-12-01', 43, 'https://www.gutenberg.org/ebooks/2437', 'en', 2625), +(29860, 'Willis\'s Current Notes, No. 16, April 1852', NULL, '2013-09-13', 8, 'https://www.gutenberg.org/ebooks/43710', 'en', 11896), +(29861, 'The Persian Literature, Comprising The Shah Nameh, The Rubaiyat, The Divan, and The Gulistan, Volume 2', 'Sadi', '2004-07-30', 48, 'https://www.gutenberg.org/ebooks/13060', 'en', 5437), +(29862, 'The Place Beyond the Winds', 'Comstock, Harriet T. (Harriet Theresa)', '2006-06-02', 35, 'https://www.gutenberg.org/ebooks/18488', 'en', 61), +(29863, 'O Marquez de Pombal á luz da Philosophia', 'Vidal, Angelina', '2008-11-14', 11, 'https://www.gutenberg.org/ebooks/27255', 'pt', 11897), +(29864, 'Our Mr. Wrenn: The Romantic Adventures of a Gentle Man', 'Lewis, Sinclair', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/4961', 'en', 109), +(29865, 'Methods of Authors', 'Erichsen, Hugo', '2010-05-11', 18, 'https://www.gutenberg.org/ebooks/32328', 'en', 6170), +(29866, 'City Scenes; or, a peep into London', 'Taylor, Jane', '2012-01-18', 11, 'https://www.gutenberg.org/ebooks/38612', 'en', 11898), +(29867, 'Beast and Man in India\nA Popular Sketch of Indian Animals in their Relations with the People', 'Kipling, John Lockwood', '2012-09-09', 29, 'https://www.gutenberg.org/ebooks/40708', 'en', 8771), +(29868, 'Plain Words from America: A Letter to a German Professor (1917)', 'Johnson, Douglas Wilson', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/10078', 'en', 11899), +(29869, 'A Residence in France During the Years 1792, 1793, 1794 and 1795, Complete\nDescribed in a Series of Letters from an English Lady: with General\nand Incidental Remarks on the French Character and Manners', 'Biggs, Charlotte', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/11996', 'en', 11900), +(29870, 'Critical Studies', 'Ouida', '2011-07-19', 30, 'https://www.gutenberg.org/ebooks/36788', 'en', 2156), +(29871, 'Hemp', 'Robinson, Brittain B. (Brittain Bragunier)', '2019-05-28', 73, 'https://www.gutenberg.org/ebooks/59625', 'en', 11901), +(29872, 'A Gentleman from Mississippi', 'Rhodes, Harrison', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10844', 'en', 1238), +(29873, 'Israelin kuu\nKertomus II:sta Moseksen kirjasta', 'Haggard, H. Rider (Henry Rider)', '2017-06-14', 11, 'https://www.gutenberg.org/ebooks/54906', 'fi', 11902), +(29874, 'My First Cruise, and Other stories', 'Kingston, William Henry Giles', '2007-10-17', 18, 'https://www.gutenberg.org/ebooks/23068', 'en', 11903), +(29875, 'The Frontier', 'Leblanc, Maurice', '2009-04-02', 35, 'https://www.gutenberg.org/ebooks/28480', 'en', 9589), +(29876, 'The Border and the Buffalo: An Untold Story of the Southwest Plains\r\nThe Bloody Border of Missouri and Kansas. The Story of the Slaughter of the Buffalo. Westward among the Big Game and Wild Tribes. A Story of Mountain and Plain', 'Cook, John R.', '2016-03-14', 17, 'https://www.gutenberg.org/ebooks/51448', 'en', 3540), +(29877, 'The Temple of Glass', 'Lydgate, John', '2009-07-30', 23, 'https://www.gutenberg.org/ebooks/29552', 'en', 7019), +(29878, 'Bright Ideas for Entertaining', 'Linscott, Herbert B., Mrs.', '2013-06-02', 18, 'https://www.gutenberg.org/ebooks/42863', 'en', 3268), +(29879, 'Le marquis de Loc-Ronan', 'Capendu, Ernest', '2006-04-20', 18, 'https://www.gutenberg.org/ebooks/18215', 'fr', 61), +(29880, 'Making Life Worth While', 'Fairbanks, Douglas', '2015-03-23', 24, 'https://www.gutenberg.org/ebooks/48565', 'en', 740), +(29881, '文子', 'Xing, Jian', '2007-12-14', 25, 'https://www.gutenberg.org/ebooks/23854', 'zh', 3892), +(29882, 'Poesie e novelle in versi', 'Fontana, Ferdinando', '2006-01-01', 27, 'https://www.gutenberg.org/ebooks/9642', 'it', 8), +(29883, 'The Divine Comedy by Dante, Illustrated, Purgatory, Volume 1', 'Dante Alighieri', '2004-08-03', 13, 'https://www.gutenberg.org/ebooks/8790', 'en', 365), +(29884, 'My Literary Passions', 'Howells, William Dean', '2004-10-22', 40, 'https://www.gutenberg.org/ebooks/3378', 'en', 2156), +(29885, 'History of the United States, Volume 2\r\nConflict & Independence', 'Beard, Mary Ritter', '2007-10-01', 31, 'https://www.gutenberg.org/ebooks/22986', 'en', 207), +(29886, 'Sir Noel\'s Heir: A Novel', 'Fleming, May Agnes', '2011-04-22', 6, 'https://www.gutenberg.org/ebooks/35931', 'en', 95), +(29887, 'Fables for the Frivolous', 'Carryl, Guy Wetmore', '2004-09-01', 57, 'https://www.gutenberg.org/ebooks/6438', 'en', 1141), +(29888, 'Fromont and Risler — Volume 1', 'Daudet, Alphonse', '2003-04-01', 11, 'https://www.gutenberg.org/ebooks/3976', 'en', 58), +(29889, 'Le songe doré de la pucelle', 'Anonymous', '2007-08-25', 46, 'https://www.gutenberg.org/ebooks/22388', 'fr', 8), +(29890, 'The Dominant Strain', 'Ray, Anna Chapin', '2009-08-22', 18, 'https://www.gutenberg.org/ebooks/29760', 'en', 61), +(29891, 'The Scientific Tourist through Ireland\r\nin which the traveller is directed to the principal objects of antiquity, art, science & the picturesque', 'Walford, Thomas', '2015-04-20', 10, 'https://www.gutenberg.org/ebooks/48757', 'en', 117), +(29892, 'Ricordi di Parigi', 'De Amicis, Edmondo', '2006-02-24', 25, 'https://www.gutenberg.org/ebooks/17853', 'it', 10687), +(29893, 'His Hour', 'Glyn, Elinor', '2005-12-01', 25, 'https://www.gutenberg.org/ebooks/9470', 'en', 48), +(29894, 'A Thief in the Night: A Book of Raffles\' Adventures', 'Hornung, E. W. (Ernest William)', '2000-03-01', 125, 'https://www.gutenberg.org/ebooks/2098', 'en', 3933), +(29895, 'Les cotillons célèbres. Deuxième Série', 'Gaboriau, Emile', '2006-03-20', 13, 'https://www.gutenberg.org/ebooks/18027', 'fr', 11904), +(29896, 'Les poilus canadiens: Le roman du vingt-deuxième bataillon canadien-français', 'Holland, J. A.', '2017-03-08', 20, 'https://www.gutenberg.org/ebooks/54308', 'fr', 11905), +(29897, 'Aunt Jane of Kentucky', 'Hall, Eliza Calvert', '2008-09-30', 37, 'https://www.gutenberg.org/ebooks/26728', 'en', 378), +(29898, 'Old Peter\'s Russian Tales', 'Ransome, Arthur', '2005-11-02', 141, 'https://www.gutenberg.org/ebooks/16981', 'en', 10103), +(29899, 'Geiriadur Cymraeg a Saesneg Byr', 'Edwards, Owen Morgan, Sir', '2015-08-11', 13, 'https://www.gutenberg.org/ebooks/49685', 'cy', 11906), +(29900, 'Duizend en één Nacht. Arabische vertellingen. Eerste deel', 'Anonymous', '2014-06-04', 70, 'https://www.gutenberg.org/ebooks/45874', 'nl', 3347), +(29901, 'A Further Contribution to the Study of the Mortuary Customs of the North American Indians', 'Yarrow, H. C. (Harry Crécy)', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11398', 'en', 11266), +(29902, 'Tennyson and His Friends', NULL, '2011-12-27', 15, 'https://www.gutenberg.org/ebooks/38420', 'en', 11907), +(29903, 'Short-Title Catalog of Publications and Importations of Scientific and Engineering Books\r\n(August 1910)', 'D. Van Nostrand Company', '2017-01-07', 14, 'https://www.gutenberg.org/ebooks/53911', 'en', 11908), +(29904, 'Nuovi studii sul genio vol. II (Origine e natura dei genii)', 'Lombroso, Cesare', '2019-05-02', 14, 'https://www.gutenberg.org/ebooks/59417', 'it', 10409), +(29905, 'Married Life\nThe True Romance', 'Edginton, May', '2005-04-30', 30, 'https://www.gutenberg.org/ebooks/15738', 'en', 705), +(29906, 'John Ames, Native Commissioner: A Romance of the Matabele Rising', 'Mitford, Bertram', '2010-06-20', 15, 'https://www.gutenberg.org/ebooks/32926', 'en', 1207), +(29907, 'Frank of Freedom Hill', 'Derieux, Samuel A. (Samuel Arthur)', '2008-07-07', 14, 'https://www.gutenberg.org/ebooks/25991', 'en', 766), +(29908, 'An Introduction to Mythology', 'Spence, Lewis', '2014-03-01', 42, 'https://www.gutenberg.org/ebooks/45048', 'en', 75), +(29909, 'Pastels: dix portraits de femmes', 'Bourget, Paul', '2011-09-18', 15, 'https://www.gutenberg.org/ebooks/37468', 'fr', 687), +(29910, 'As ratices da Rattazzi: O pello nacional', 'Monteiro, Ramalho', '2008-03-16', 4, 'https://www.gutenberg.org/ebooks/24843', 'pt', 9016), +(29911, 'The Boy Scouts of the Geological Survey', 'Shaler, Robert', '2004-07-19', 16, 'https://www.gutenberg.org/ebooks/12945', 'en', 11909), +(29912, 'In the Days of Drake', 'Fletcher, J. S. (Joseph Smith)', '2009-07-04', 41, 'https://www.gutenberg.org/ebooks/29304', 'en', 8941), +(29913, 'Barnen ifrån Frostmofjället', 'Fitinghoff, Laura', '2006-02-01', 13, 'https://www.gutenberg.org/ebooks/9828', 'sv', 751), +(29914, 'The Adventure Club Afloat', 'Barbour, Ralph Henry', '2004-10-30', 113, 'https://www.gutenberg.org/ebooks/13897', 'en', 324), +(29915, 'The Wishing Well', 'Wirt, Mildred A. (Mildred Augustine)', '2010-12-18', 36, 'https://www.gutenberg.org/ebooks/34689', 'en', 1842), +(29916, 'Vandemark\'s Folly', 'Quick, Herbert', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/12179', 'en', 11910), +(29917, 'De Decamerone van Boccaccio', 'Boccaccio, Giovanni', '2006-10-20', 85, 'https://www.gutenberg.org/ebooks/19591', 'nl', 4187), +(29918, 'Pikku mies', 'Daudet, Alphonse', '2013-04-28', 13, 'https://www.gutenberg.org/ebooks/42609', 'fi', 1850), +(29919, 'Un viaggio elettorale', 'De Sanctis, Francesco', '2015-02-21', 12, 'https://www.gutenberg.org/ebooks/48333', 'it', 11082), +(29920, 'Dante\'s Hel\nIn proza overgebracht en met een inleiding voorzien', 'Dante Alighieri', '2009-10-10', 142, 'https://www.gutenberg.org/ebooks/30229', 'nl', 2091), +(29921, 'The Letters of Mark Twain', 'Twain, Mark', '2005-09-01', 19, 'https://www.gutenberg.org/ebooks/9014', 'en', 2518), +(29922, 'Keineth', 'Abbott, Jane', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/6860', 'en', 62), +(29923, 'Parrot & Co.', 'MacGrath, Harold', '2006-05-24', 11, 'https://www.gutenberg.org/ebooks/18443', 'en', 61), +(29924, 'Danny\'s Own Story', 'Marquis, Don', '1996-07-01', 180, 'https://www.gutenberg.org/ebooks/587', 'en', 637), +(29925, 'Venetsian yö', 'Drachmann, Holger', '2011-10-23', 11, 'https://www.gutenberg.org/ebooks/37830', 'fi', 2631), +(29926, 'The Ascent of the Matterhorn', 'Whymper, Edward', '2011-11-17', 24, 'https://www.gutenberg.org/ebooks/38044', 'en', 1791), +(29927, 'Poems and Songs of Robert Burns', 'Burns, Robert', '2005-01-25', 158, 'https://www.gutenberg.org/ebooks/1279', 'en', 11911), +(29928, 'Critical Miscellanies, (Vol. 3 of 3), Essay 2: The Death of Mr Mill; Essay 3: Mr Mill\'s Autobiography', 'Morley, John', '2007-03-23', 23, 'https://www.gutenberg.org/ebooks/20887', 'en', 4103), +(29929, 'The Secret Wireless; Or, The Spy Hunt of the Camp Brady Patrol', 'Theiss, Lewis E. (Lewis Edwin)', '2007-06-28', 9, 'https://www.gutenberg.org/ebooks/21955', 'en', 146), +(29930, 'The Expositor\'s Bible: The Epistle to the Ephesians', 'Findlay, George G. (George Gillanders)', '2012-03-18', 26, 'https://www.gutenberg.org/ebooks/39196', 'en', 4233), +(29931, 'I Will Maintain', 'Bowen, Marjorie', '2016-11-18', 20, 'https://www.gutenberg.org/ebooks/53549', 'en', 11912), +(29932, 'Idän kuningatar: Historiallinen kertomus', 'Jókai, Mór', '2012-02-14', 25, 'https://www.gutenberg.org/ebooks/38878', 'fi', 2326), +(29933, 'Prophecies of Robert Nixon, Mother Shipton, and Martha, the Gypsy', 'Anonymous', '2012-10-07', 40, 'https://www.gutenberg.org/ebooks/40962', 'en', 6716), +(29934, 'The Lost Princess of Oz', 'Baum, L. Frank (Lyman Frank)', '2007-04-24', 16, 'https://www.gutenberg.org/ebooks/21169', 'en', 8201), +(29935, 'Decimal Classification', 'International Institute of Bibliography', '2019-03-16', 7, 'https://www.gutenberg.org/ebooks/59073', 'fr', 11913), +(29936, 'Sysmäläinen: Humoristinen historiallinen romaani', 'Finne, Jalmari', '2018-03-21', 7, 'https://www.gutenberg.org/ebooks/56807', 'fi', 98), +(29937, 'McGuffey\'s Fourth Eclectic Reader', 'McGuffey, William Holmes', '2005-02-02', 141, 'https://www.gutenberg.org/ebooks/14880', 'en', 1019), +(29938, 'The Cruise of the Snowbird: A Story of Arctic Adventure', 'Stables, Gordon', '2011-12-11', 10, 'https://www.gutenberg.org/ebooks/38276', 'en', 1447), +(29939, 'Northern Nut Growers Association Report of the Proceedings at the Eleventh Annual Meeting\r\nWashington, D. C. October 7 and 8, 1920', NULL, '2008-02-16', 8, 'https://www.gutenberg.org/ebooks/24629', 'en', 8570), +(29940, 'Gettysburg National Military Park, Pennsylvania', 'Tilberg, Frederick', '2017-12-20', 16, 'https://www.gutenberg.org/ebooks/56209', 'en', 8945), +(29941, 'Die Prinzessin Girnara: Weltspiel und Legende', 'Wassermann, Jakob', '2005-05-31', 30, 'https://www.gutenberg.org/ebooks/15952', 'de', 402), +(29942, 'The Mirror of Alchimy', 'Bacon, Roger', '2018-12-01', 78, 'https://www.gutenberg.org/ebooks/58393', 'en', 11914), +(29943, 'A Mountain Woman', 'Peattie, Elia Wilkinson', '1999-09-01', 29, 'https://www.gutenberg.org/ebooks/1877', 'en', 112), +(29944, 'Herein is Love\nA Study of the Biblical Doctrine of Love in Its Bearing on Personality, Parenthood, Teaching, and All Other Human Relationships.', 'Howe, Reuel L.', '2007-01-04', 52, 'https://www.gutenberg.org/ebooks/20289', 'en', 11915), +(29945, 'Back to God\'s Country and Other Stories', 'Curwood, James Oliver', '2003-10-01', 52, 'https://www.gutenberg.org/ebooks/4539', 'en', 112), +(29946, 'Wupatki National Monument, Arizona', 'United States. National Park Service', '2019-04-10', 16, 'https://www.gutenberg.org/ebooks/59241', 'en', 11916), +(29947, 'Harper\'s Young People, September 14, 1880\nAn Illustrated Weekly', 'Various', '2009-06-16', 9, 'https://www.gutenberg.org/ebooks/29136', 'en', 479), +(29948, 'Die Stadt ohne Juden: Ein Roman von übermorgen', 'Bettauer, Hugo', '2011-03-13', 79, 'https://www.gutenberg.org/ebooks/35569', 'de', 11917), +(29949, 'The Beautiful: An Introduction to Psychological Aesthetics', 'Lee, Vernon', '2008-10-17', 43, 'https://www.gutenberg.org/ebooks/26942', 'en', 2250), +(29950, 'The Care of the Dead', 'Anonymous', '2014-10-19', 21, 'https://www.gutenberg.org/ebooks/47149', 'en', 11918), +(29951, 'The Merriweather Girls in Quest of Treasure', 'Edholm, Lizette M.', '2009-01-26', 14, 'https://www.gutenberg.org/ebooks/27890', 'en', 4951), +(29952, 'A Alma Nova', 'Azevedo, Guilherme Avelino Chave de', '2006-01-30', 8, 'https://www.gutenberg.org/ebooks/17639', 'pt', 5082), +(29953, 'The Count\'s Chauffeur', 'Le Queux, William', '2010-01-01', 25, 'https://www.gutenberg.org/ebooks/30827', 'en', 177), +(29954, 'The Undetected', 'Smith, George O. (George Oliver)', '2016-04-20', 33, 'https://www.gutenberg.org/ebooks/51810', 'en', 784), +(29955, 'Motor Matt\'s Hard Luck; or, The Balloon-House Plot', 'Matthews, Stanley R.', '2015-01-15', 7, 'https://www.gutenberg.org/ebooks/47975', 'en', 323), +(29956, 'Mythes chaldéens', 'Heuzey, Léon Alexandre', '2004-08-27', 12, 'https://www.gutenberg.org/ebooks/13299', 'fr', 11919), +(29957, 'Never-Fail Blake', 'Stringer, Arthur', '2006-06-23', 35, 'https://www.gutenberg.org/ebooks/18671', 'en', 1219), +(29958, 'Journal of Entomology and Zoology, Vol. 09, No. 1, March 1917', 'Various', '2015-01-28', 8, 'https://www.gutenberg.org/ebooks/48101', 'en', 11920), +(29959, 'The Hall of Fantasy (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 17, 'https://www.gutenberg.org/ebooks/9226', 'en', 179), +(29960, 'Cathedrals and Cloisters of the South of France, Volume 1', 'Rose, Elise Whitlock', '2007-09-22', 26, 'https://www.gutenberg.org/ebooks/22718', 'en', 10744), +(29961, 'Due West; Or, Round the World in Ten Months', 'Ballou, Maturin M. (Maturin Murray)', '2009-02-28', 32, 'https://www.gutenberg.org/ebooks/28222', 'en', 819), +(29962, 'Huxley and education\nAddress at the Opening of the College Year, Columbia University, September 28, 1910', 'Osborn, Henry Fairfield', '2015-10-29', 3, 'https://www.gutenberg.org/ebooks/50338', 'en', 973), +(29963, 'Regrets sur ma vieille robe de chambre\r\nOu, avis à ceux qui ont plus de goût que de fortune', 'Diderot, Denis', '2004-10-25', 29, 'https://www.gutenberg.org/ebooks/13863', 'fr', 20), +(29964, 'Bunny Brown and His Sister Sue and Their Shetland Pony', 'Hope, Laura Lee', '2006-10-17', 32, 'https://www.gutenberg.org/ebooks/19565', 'en', 9243), +(29965, 'Das goldene Vließ', 'Grillparzer, Franz', '2005-04-01', 35, 'https://www.gutenberg.org/ebooks/7946', 'de', 11921), +(29966, 'Life in the Clearings versus the Bush', 'Moodie, Susanna', '2005-05-01', 30, 'https://www.gutenberg.org/ebooks/8132', 'en', 2697), +(29967, 'Recollections of the Civil War', 'Morrow, Maud E.', '2015-06-14', 7, 'https://www.gutenberg.org/ebooks/49215', 'en', 1717), +(29968, 'Die Leiden des jungen Werther — Band 2', 'Goethe, Johann Wolfgang von', '2000-11-01', 98, 'https://www.gutenberg.org/ebooks/2408', 'de', 7543), +(29969, 'Tales from Shakespeare', 'Lamb, Mary', '1996-06-01', 370, 'https://www.gutenberg.org/ebooks/573', 'en', 6730), +(29970, 'History of the United States in Words of One Syllable', 'Pierson, Helen Wall', '2017-05-27', 14, 'https://www.gutenberg.org/ebooks/54798', 'en', 7583), +(29971, 'Price/Cost Indexes from 1875 to 1989; Estimated to 2010', 'Hart, Michael', '1993-11-01', 64, 'https://www.gutenberg.org/ebooks/88', 'en', 11922), +(29972, 'Chimes of Mission Bells; an historical sketch of California and her missions', 'Field, Maria Antonia', '2004-11-01', 9, 'https://www.gutenberg.org/ebooks/6894', 'en', 11923), +(29973, 'The Captain of the Gray-Horse Troop', 'Garland, Hamlin', '2010-08-18', 18, 'https://www.gutenberg.org/ebooks/33458', 'en', 315), +(29974, 'Graham\'s Magazine, Vol. XXXI, No. 6, December 1847', 'Various', '2019-02-26', 4, 'https://www.gutenberg.org/ebooks/58969', 'en', 380), +(29975, 'Albert Gallatin', 'Stevens, John Austin', '2007-03-22', 14, 'https://www.gutenberg.org/ebooks/20873', 'en', 11924), +(29976, 'The Hunchback of Westminster', 'Le Queux, William', '2012-10-16', 11, 'https://www.gutenberg.org/ebooks/41078', 'en', 323), +(29977, 'Kipps: The Story of a Simple Soul', 'Wells, H. G. (Herbert George)', '2012-03-16', 117, 'https://www.gutenberg.org/ebooks/39162', 'en', 3092), +(29978, 'Abraham Lincoln, a History — Volume 02', 'Hay, John', '2004-03-01', 48, 'https://www.gutenberg.org/ebooks/11708', 'en', 1716), +(29979, 'The Piper and the Reed', 'Norwood, Robert Winkworth', '2011-09-08', 2, 'https://www.gutenberg.org/ebooks/36916', 'en', 28), +(29980, 'The Man with the Iron Hand', 'Parish, John Carl', '2018-09-19', 11, 'https://www.gutenberg.org/ebooks/57921', 'en', 11925), +(29981, 'The Bar-20 Three', 'Mulford, Clarence Edward', '2018-10-24', 55, 'https://www.gutenberg.org/ebooks/58155', 'en', 11926), +(29982, 'In White Raiment', 'Le Queux, William', '2012-10-09', 11, 'https://www.gutenberg.org/ebooks/40996', 'en', 167), +(29983, 'The Golden Bough', 'Gibbs, George', '2013-01-13', 75, 'https://www.gutenberg.org/ebooks/41844', 'en', 61), +(29984, 'Kunnanmiehiä', 'Kajander, Kalle', '2019-03-18', 4, 'https://www.gutenberg.org/ebooks/59087', 'fi', 41), +(29985, 'The Herriges Horror in Philadelphia\nA Full History of the Whole Affair. A Man Kept in a Dark Cage Like a Wild Beast for Twenty Years, As Alleged, in His Own Mother\'s and Brother\'s House', 'Anonymous', '2011-12-12', 13, 'https://www.gutenberg.org/ebooks/38282', 'en', 11927), +(29986, 'Elsie\'s Womanhood', 'Finley, Martha', '2005-02-02', 69, 'https://www.gutenberg.org/ebooks/14874', 'en', 378), +(29987, 'The Turn of the Balance', 'Whitlock, Brand', '2013-02-19', 80, 'https://www.gutenberg.org/ebooks/40398', 'en', 2612), +(29988, 'Aus Trotzkopf\'s Ehe', 'Wildhagen, Else', '2012-04-02', 22, 'https://www.gutenberg.org/ebooks/39350', 'de', 11928), +(29989, 'The Wife, and Other Stories', 'Chekhov, Anton Pavlovich', '2006-02-26', 152, 'https://www.gutenberg.org/ebooks/1883', 'en', 934), +(29990, 'The Nameless Castle', 'Jókai, Mór', '2004-11-15', 43, 'https://www.gutenberg.org/ebooks/14048', 'en', 7076), +(29991, 'Lightning Rod Conference\r\nReport of the Delegates from the Following Societies, Viz.: Meteorological Society, Royal Institute of British Architects, Society of Telegraph Engineers and of Electricians, Physical Society. With a Code of Rules for the Erection of Lightning Conductors; and Various Appendices', NULL, '2018-11-28', 4, 'https://www.gutenberg.org/ebooks/58367', 'en', 11929), +(29992, 'Devonshire', 'Dutton, Louie M. Knight', '2014-01-23', 23, 'https://www.gutenberg.org/ebooks/44738', 'en', 11930), +(29993, 'Curiosidades antiguas sevillanas\r\n(serie segunda)', 'Gestoso y Pérez, José', '2011-06-03', 22, 'https://www.gutenberg.org/ebooks/36318', 'es', 11931), +(29994, 'Tom Burke Of \"Ours\", Volume I', 'Lever, Charles James', '2010-04-06', 17, 'https://www.gutenberg.org/ebooks/31901', 'en', 11932), +(29995, 'The Jewel City', 'Macomber, Ben', '2005-01-01', 9, 'https://www.gutenberg.org/ebooks/7348', 'en', 3035), +(29996, 'Ainslee\'s, Vol. 15, No. 5, June 1905', 'Various', '2009-01-21', 22, 'https://www.gutenberg.org/ebooks/27864', 'en', 2506), +(29997, 'Bacon\'s Rebellion, 1676', 'Wertenbaker, Thomas Jefferson', '2009-02-06', 25, 'https://www.gutenberg.org/ebooks/28010', 'en', 6639), +(29998, 'The Bible, Douay-Rheims, Complete\r\nThe Challoner Revision', NULL, '2004-12-17', 430, 'https://www.gutenberg.org/ebooks/8300', 'en', 1185), +(29999, 'Medical Jurisprudence, Forensic medicine and Toxicology. Vol. 1 of 4', 'Witthaus, R. A. (Rudolph August)', '2015-05-23', 56, 'https://www.gutenberg.org/ebooks/49027', 'en', 5064), +(30000, 'The Game-Birds of the Coasts and Lakes of the Northern States of America\r\nA full account of the sporting along our sea-shores and inland waters, with a comparison of the merits of breech-loaders and muzzle-loaders', 'Roosevelt, Robert Barnwell', '2017-09-02', 11, 'https://www.gutenberg.org/ebooks/55478', 'en', 10120), +(30001, '\'Return Loads\' to Increase Transport Resources by Avoiding Waste of Empty Vehicle Running.', 'United States. Council of National Defense. Highways Transport Committee', '2006-11-11', 9, 'https://www.gutenberg.org/ebooks/19757', 'en', 9714), +(30002, 'Le Morte Darthur\nSir Thomas Malory\'s Book of King Arthur and his Noble\nKnights of the Round Table', 'Malory, Thomas, Sir', '2014-09-14', 258, 'https://www.gutenberg.org/ebooks/46853', 'en', 5637), +(30003, 'Langley Memoir on Mechanical Flight, Parts I and II\nSmithsonian Contributions to Knowledge, Volume 27 Number 3, Publication 1948, 1911', 'Langley, S. P. (Samuel Pierpont)', '2015-01-17', 10, 'https://www.gutenberg.org/ebooks/47981', 'en', 927), +(30004, 'The Indian Question', 'Walker, Francis Amasa', '2008-10-26', 30, 'https://www.gutenberg.org/ebooks/27058', 'en', 11933), +(30005, 'Lectures on Modern history', 'Acton, John Emerich Edward Dalberg Acton, Baron', '2006-06-26', 43, 'https://www.gutenberg.org/ebooks/18685', 'en', 11934), +(30006, 'Thomas Hart Benton\'s Remarks to the Senate on the Expunging Resolution', 'Benton, Thomas Hart', '1996-12-01', 18, 'https://www.gutenberg.org/ebooks/741', 'en', 582), +(30007, 'Man in a Sewing Machine', 'Stecher, L. J., Jr.', '2016-01-15', 40, 'https://www.gutenberg.org/ebooks/50936', 'en', 11935), +(30008, 'The Stone Axe of Burkamukk', 'Bruce, Mary Grant', '2018-03-07', 42, 'https://www.gutenberg.org/ebooks/56699', 'en', 11936), +(30009, 'True to Himself; Or, Roger Strong\'s Struggle for Place', 'Stratemeyer, Edward', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/4995', 'en', 3334), +(30010, 'The Life of Philip Melanchthon', 'Ledderhose, Karl Friedrich', '2012-05-19', 23, 'https://www.gutenberg.org/ebooks/39734', 'en', 11937), +(30011, 'The Heart of Rome: A Tale of the \"Lost Water\"', 'Crawford, F. Marion (Francis Marion)', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/5847', 'en', 1314), +(30012, 'A Mind That Found Itself: An Autobiography', 'Beers, Clifford Whittingham', '2004-04-01', 84, 'https://www.gutenberg.org/ebooks/11962', 'en', 11938), +(30013, 'Colonial Homes in North Carolina', 'Allcott, John V.', '2016-06-05', 10, 'https://www.gutenberg.org/ebooks/52239', 'en', 11939), +(30014, 'Key and Guide to Native Trees, Shrubs, and Woody Vines of Dallas County', 'Stillwell, Norma', '2019-01-16', 4, 'https://www.gutenberg.org/ebooks/58703', 'en', 11940), +(30015, 'General Gordon, Saint and Soldier', 'Wardle, Joseph', '2007-02-19', 12, 'https://www.gutenberg.org/ebooks/20619', 'en', 8688), +(30016, 'Notes and Queries, Number 192, July 2, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-04-02', 16, 'https://www.gutenberg.org/ebooks/28474', 'en', 105), +(30017, 'A Treatise Upon the Law of Copyright in the United Kingdom and the Dominions of the Crown,\r\nand in the United States of America Containing a Full Appendix of All Acts of Parliament International Conventions, Orders in Council, Treasury Minute and Acts of Congress Now in Force.', 'MacGillivray, Evan James', '2013-10-13', 14, 'https://www.gutenberg.org/ebooks/43945', 'en', 1878), +(30018, 'Feline Philosophy', 'Hess, Walter Léon', '2013-06-09', 11, 'https://www.gutenberg.org/ebooks/42897', 'en', 11941), +(30019, 'Jongens van Oudt-Holland', 'Kieviet, Cornelis Johannes', '2017-10-26', 20, 'https://www.gutenberg.org/ebooks/55820', 'nl', 11942), +(30020, 'Phantastes: A Faerie Romance for Men and Women', 'MacDonald, George', '2008-07-11', 521, 'https://www.gutenberg.org/ebooks/325', 'en', 580), +(30021, 'Vector Analysis and Quaternions', 'Macfarlane, Alexander', '2004-10-05', 57, 'https://www.gutenberg.org/ebooks/13609', 'en', 9547), +(30022, 'Tales of the Wonder Club, Volume II', 'Halidom, M. Y.', '2011-01-02', 88, 'https://www.gutenberg.org/ebooks/34817', 'en', 2820), +(30023, 'Mesmer e il magnetismo\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Mosso, A. (Angelo)', '2013-07-10', 15, 'https://www.gutenberg.org/ebooks/43179', 'it', 5931), +(30024, 'Motor Matt\'s Promise; or, The Wreck of the Hawk', 'Matthews, Stanley R.', '2015-03-27', 4, 'https://www.gutenberg.org/ebooks/48591', 'en', 3124), +(30025, 'The People That Time Forgot', 'Burroughs, Edgar Rice', '2005-08-01', 6, 'https://www.gutenberg.org/ebooks/8764', 'en', 11943), +(30026, 'Dictionnaire historique universel\r\ncontenant les Chronologies de tous les Peuples depuis l\'antiquité la plus reculée jusqu\'à nos jours', 'Arnault, Robert', '2010-03-08', 45, 'https://www.gutenberg.org/ebooks/31559', 'fr', 8463), +(30027, 'Klorinda', 'Burnett, Frances Hodgson', '2015-07-15', 7, 'https://www.gutenberg.org/ebooks/49443', 'fi', 5233), +(30028, 'Rollo in Holland', 'Abbott, Jacob', '2007-10-12', 21, 'https://www.gutenberg.org/ebooks/22972', 'en', 11642), +(30029, 'The Story of a China Cat', 'Hope, Laura Lee', '2006-09-19', 14, 'https://www.gutenberg.org/ebooks/19333', 'en', 1235), +(30030, 'Solar Stiff', 'Stopher, Chas. A.', '2009-04-30', 31, 'https://www.gutenberg.org/ebooks/28646', 'en', 26), +(30031, 'The Wars of the Jews; Or, The History of the Destruction of Jerusalem', 'Josephus, Flavius', '2001-10-01', 587, 'https://www.gutenberg.org/ebooks/2850', 'en', 5932), +(30032, 'The Enchanted Castle', 'Nesbit, E. (Edith)', '2010-11-06', 82, 'https://www.gutenberg.org/ebooks/34219', 'en', 4616), +(30033, 'Ang Pag-ibig ng Layas', 'Sevilla, Jose N.', '2014-08-20', 96, 'https://www.gutenberg.org/ebooks/46639', 'tl', 11944), +(30034, 'Gerfaut — Volume 2', 'Bernard, Charles de', '2003-04-01', 15, 'https://www.gutenberg.org/ebooks/3982', 'en', 58), +(30035, 'Máximas Morales en Ilocano y Castellano\nPara Uso de los Niños', 'Anonymous', '2005-06-29', 46, 'https://www.gutenberg.org/ebooks/16149', 'ilo', 5699), +(30036, 'Tree, Spare that Woodman', 'Dryfoos, Dave', '2009-08-24', 45, 'https://www.gutenberg.org/ebooks/29794', 'en', 179), +(30037, 'Georgian Poetry 1911-1912', NULL, '2005-12-01', 17, 'https://www.gutenberg.org/ebooks/9484', 'en', 1594), +(30038, 'Symphony No. 5 in C minor Opus 67', 'Beethoven, Ludwig van', '1994-03-01', 65, 'https://www.gutenberg.org/ebooks/117', 'en', 3385), +(30039, 'The Girl with the Green Eyes\nA Play in Four Acts', 'Fitch, Clyde', '2006-08-22', 27, 'https://www.gutenberg.org/ebooks/19101', 'en', 427), +(30040, 'The History of England from the Norman Conquest to the Death of John (1066-1216)', 'Adams, George Burton', '2005-07-01', 35, 'https://www.gutenberg.org/ebooks/8556', 'en', 11945), +(30041, 'The Haunted House: A True Ghost Story\r\nBeing an account of the mysterious manifestations that have taken place in the presence of Esther Cox, the young girl who is possessed of devils, and has become known throughout the entire dominion as the great Amherst mystery', 'Hubbell, Walter', '2005-10-31', 105, 'https://www.gutenberg.org/ebooks/16975', 'en', 11946), +(30042, 'The History of Johnny Quæ Genus, the Little Foundling of the Late Doctor Syntax.\r\nA Poem by the Author of the Three Tours.', 'Combe, William', '2013-03-10', 14, 'https://www.gutenberg.org/ebooks/42299', 'en', 11947), +(30043, 'Honest Wullie; and Effie Patterson\'s Story', 'Rouse, Lydia L.', '2015-08-10', 6, 'https://www.gutenberg.org/ebooks/49671', 'en', 658), +(30044, 'Io cerco moglie! Romanzo', 'Panzini, Alfredo', '2012-04-22', 41, 'https://www.gutenberg.org/ebooks/39506', 'it', 757), +(30045, 'Libro intitulado El cortesano. Libro de motes de damas y caballeros', 'Milán, Luis', '2016-08-18', 27, 'https://www.gutenberg.org/ebooks/52837', 'es', 2727), +(30046, 'Two on the Trail: A Story of the Far Northwest', 'Footner, Hulbert', '2008-04-24', 25, 'https://www.gutenberg.org/ebooks/25159', 'en', 323), +(30047, 'A Secret Inheritance (Volume 1 of 3)', 'Farjeon, B. L. (Benjamin Leopold)', '2014-06-04', 14, 'https://www.gutenberg.org/ebooks/45880', 'en', 167), +(30048, 'A Noszty fiu esete Tóth Marival (2. kötet)', 'Mikszáth, Kálmán', '2018-07-25', 29, 'https://www.gutenberg.org/ebooks/57579', 'hu', 5299), +(30049, 'Sixpenny Pieces', 'Lyons, A. Neil (Albert Neil)', '2014-02-17', 2, 'https://www.gutenberg.org/ebooks/44952', 'en', 1763), +(30050, 'Indian Poetry\r\nContaining \"The Indian Song of Songs,\" from the Sanskrit of the Gîta Govinda of Jayadeva, Two books from \"The Iliad Of India\" (Mahábhárata), \"Proverbial Wisdom\" from the Shlokas of the Hitopadesa, and other Oriental Poems.', 'Arnold, Edwin, Sir', '2008-07-04', 32, 'https://www.gutenberg.org/ebooks/25965', 'en', 11948), +(30051, 'Travels in England in 1782', 'Moritz, Karl Philipp', '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/5249', 'en', 4627), +(30052, 'History of the Second Massachusetts Battery (Nims\' Battery) of Light Artillery, 1861-1865', 'Whitcomb, Caroline Elizabeth', '2018-12-24', 11, 'https://www.gutenberg.org/ebooks/58531', 'en', 11949), +(30053, 'The Mysteries of Paris, Volume 1 of 6', 'Sue, Eugène', '2010-09-22', 88, 'https://www.gutenberg.org/ebooks/33800', 'en', 560), +(30054, 'A Room with a View', 'Forster, E. M. (Edward Morgan)', '2001-05-01', 996, 'https://www.gutenberg.org/ebooks/2641', 'en', 7567), +(30055, 'Fred Fenton Marathon Runner: The Great Race at Riverport School', 'Chapman, Allen', '2009-09-26', 12, 'https://www.gutenberg.org/ebooks/30094', 'en', 11950), +(30056, 'Captain Bayley\'s Heir: A Tale of the Gold Fields of California', 'Henty, G. A. (George Alfred)', '2009-05-17', 46, 'https://www.gutenberg.org/ebooks/28857', 'en', 5169), +(30057, 'A Dissertation upon Roast Pig', 'Lamb, Charles', '2013-08-26', 45, 'https://www.gutenberg.org/ebooks/43566', 'en', 3387), +(30058, 'Diario histórico de la rebelion y guerra de los pueblos Guaranis situados en la costa oriental del Rio Uruguay, del año de 1754', 'Henis, Tadéas Xavier', '2004-08-18', 25, 'https://www.gutenberg.org/ebooks/13216', 'es', 11951), +(30059, '白圭志', 'Cui, Xiangchuan, active 1836', '2008-10-25', 19, 'https://www.gutenberg.org/ebooks/27023', 'zh', 3187), +(30060, 'Le livre de Jade', NULL, '2014-09-10', 23, 'https://www.gutenberg.org/ebooks/46828', 'fr', 11952), +(30061, 'The Petrol Engine\r\nA Text-book dealing with the Principles of Design and Construction, with a Special Chapter on the Two-stroke Engine', 'Kean, Francis John', '2017-08-21', 10, 'https://www.gutenberg.org/ebooks/55403', 'en', 7094), +(30062, 'Le Tour du Monde; Croquis Hollandais\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-14', 15, 'https://www.gutenberg.org/ebooks/29985', 'fr', 1673), +(30063, 'Joseph II. and His Court: An Historical Novel', 'Mühlbach, L. (Luise)', '2003-02-01', 27, 'https://www.gutenberg.org/ebooks/3793', 'en', 4583), +(30064, 'Stories by American Authors, Volume 8', 'Various', '2010-02-01', 12, 'https://www.gutenberg.org/ebooks/31146', 'en', 112), +(30065, 'The Art of Aubrey Beardsley', 'Symons, Arthur', '2015-10-10', 39, 'https://www.gutenberg.org/ebooks/50171', 'en', 11953), +(30066, 'Dame Wonder\'s Picture Alphabet\nAmusing Alphabet, Dame Wonder\'s Series.', 'Anonymous', '2007-11-15', 24, 'https://www.gutenberg.org/ebooks/23483', 'en', 2541), +(30067, 'Μάκβεθ', 'Shakespeare, William', '2010-11-24', 42, 'https://www.gutenberg.org/ebooks/34434', 'el', 1298), +(30068, 'Die Ägyptische Pflanzensäule', 'Borchardt, Ludwig', '2014-06-17', 12, 'https://www.gutenberg.org/ebooks/46014', 'de', 11954), +(30069, 'Sidelights on Relativity', 'Einstein, Albert', '2005-01-01', 44, 'https://www.gutenberg.org/ebooks/7333', 'en', 2846), +(30070, 'The Smuggler of King\'s Cove; or, The Old Chapel Mystery', 'Cobb, Sylvanus', '2015-09-02', 6, 'https://www.gutenberg.org/ebooks/49860', 'en', 11955), +(30071, 'Ménagerie intime', 'Gautier, Théophile', '2007-09-09', 17, 'https://www.gutenberg.org/ebooks/22551', 'fr', 6662), +(30072, 'History of the Wars, Books I and II\r\nThe Persian War', 'Procopius', '2005-09-27', 175, 'https://www.gutenberg.org/ebooks/16764', 'en', 11040), +(30073, 'Marjorie Dean at Hamilton Arms', 'Chase, Josephine', '2016-07-23', 12, 'https://www.gutenberg.org/ebooks/52626', 'en', 3529), +(30074, 'Ein fröhlicher Bursch: Eine Erzählung', 'Bjørnson, Bjørnstjerne', '2011-06-09', 8, 'https://www.gutenberg.org/ebooks/36363', 'de', 286), +(30075, 'The Mystery of Space\r\nA Study of the Hyperspace Movement in the Light of the Evolution of New Psychic Faculties and an Inquiry into the Genesis and Essential Nature of Space', 'Browne, Robert T.', '2014-05-18', 40, 'https://www.gutenberg.org/ebooks/45691', 'en', 11956), +(30076, 'My Sketch Book', NULL, '2014-01-23', 31, 'https://www.gutenberg.org/ebooks/44743', 'en', 1688), +(30077, 'The Sisters — Volume 4', 'Ebers, Georg', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/5464', 'en', 6232), +(30078, 'The Agony of the Church (1917)', 'Velimirović, Nikolaj', '2006-12-28', 19, 'https://www.gutenberg.org/ebooks/20206', 'en', 7753), +(30079, 'Plutarch\'s Lives, Volume 1 (of 4)', 'Plutarch', '2004-11-12', 317, 'https://www.gutenberg.org/ebooks/14033', 'en', 2310), +(30080, 'The Life and Beauties of Fanny Fern', 'Moulton, William U.', '2012-10-30', 9, 'https://www.gutenberg.org/ebooks/41231', 'en', 11957), +(30081, 'Tudor school-boy life: the dialogues of Juan Luis Vives', 'Vives, Juan Luis', '2018-01-02', 27, 'https://www.gutenberg.org/ebooks/56286', 'en', 10856), +(30082, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 567, September 22, 1832', 'Various', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11541', 'en', 133), +(30083, 'The Rapids', 'Sullivan, Alan', '2008-06-13', 15, 'https://www.gutenberg.org/ebooks/25774', 'en', 5521), +(30084, 'The Old Bush Songs', NULL, '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10493', 'en', 2474), +(30085, 'Theory and Practice of Piano Construction\nWith a Detailed, Practical Method for Tuning', 'White, William Braid', '2018-06-18', 59, 'https://www.gutenberg.org/ebooks/57354', 'en', 11958), +(30086, 'Scenas de viagem\r\nExploração entre os rios Taquary e Aquidauana no districto de Miranda : memoria descriptiva', 'Taunay, Alfredo d\'Escragnolle Taunay, Visconde de', '2010-09-02', 13, 'https://www.gutenberg.org/ebooks/33611', 'pt', 11959), +(30087, 'Franklin\'s Autobiography\n(Eclectic English Classics)', 'Franklin, Benjamin', '2011-05-18', 27, 'https://www.gutenberg.org/ebooks/36151', 'en', 854), +(30088, 'Importanza e risultati degli incrociamenti in avicoltura', 'Pascal, Teodoro', '2018-04-01', 6, 'https://www.gutenberg.org/ebooks/56888', 'it', 11960), +(30089, 'Brother and Sister', 'Lawrence, Josephine', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/4784', 'en', 3621), +(30090, 'A Short History of English Music', 'Ford, Ernest', '2012-06-05', 10, 'https://www.gutenberg.org/ebooks/39925', 'en', 11961), +(30091, 'The Christian Mythology', 'Leatherbee, E. B. (Ethel Brigham)', '2016-06-26', 26, 'https://www.gutenberg.org/ebooks/52414', 'en', 75), +(30092, 'Scottish Ghost Stories', 'O\'Donnell, Elliott', '2006-12-07', 148, 'https://www.gutenberg.org/ebooks/20034', 'en', 11962), +(30093, 'The Golden Scarecrow', 'Walpole, Hugh', '2004-11-29', 34, 'https://www.gutenberg.org/ebooks/14201', 'en', 1079), +(30094, 'Points of Humour, Part 1 (of 2)', NULL, '2014-01-03', 12, 'https://www.gutenberg.org/ebooks/44571', 'en', 311), +(30095, 'Through Shot and Flame\r\nThe Adventures and Experiences of J. D. Kestell Chaplain to President Steyn and General Christian De Wet', 'Kestell, J. D. (John Daniel)', '2011-08-14', 16, 'https://www.gutenberg.org/ebooks/37083', 'en', 11963), +(30096, 'The Gospel of John for Readers', NULL, '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/5656', 'en', 5364), +(30097, 'Kullervo', 'Kivi, Aleksis', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/11773', 'fi', 247), +(30098, 'Songs of a Sourdough', 'Service, Robert W. (Robert William)', '2008-05-20', 70, 'https://www.gutenberg.org/ebooks/25546', 'en', 11964), +(30099, 'Satires and Profanities', 'Foote, G. W. (George William)', '2012-03-12', 35, 'https://www.gutenberg.org/ebooks/39119', 'en', 1759), +(30100, 'The Eye of Istar: A Romance of the Land of No Return', 'Le Queux, William', '2012-10-09', 14, 'https://www.gutenberg.org/ebooks/41003', 'en', 11965), +(30101, 'Three People', 'Pansy', '2007-03-13', 38, 'https://www.gutenberg.org/ebooks/20808', 'en', 11966), +(30102, 'The Earth Quarter', 'Knight, Damon', '2019-02-18', 40, 'https://www.gutenberg.org/ebooks/58912', 'en', 1564), +(30103, 'A Man in the Open', 'Pocock, Roger', '2010-08-13', 20, 'https://www.gutenberg.org/ebooks/33423', 'en', 61), +(30104, 'The Spirit of Lafayette', 'Hallowell, James Mott', '2008-02-02', 12, 'https://www.gutenberg.org/ebooks/24494', 'en', 3003), +(30105, 'Just a Girl', 'Garvice, Charles', '2018-05-15', 19, 'https://www.gutenberg.org/ebooks/57166', 'en', 137), +(30106, 'Contes de Noël par Josette', 'Dandurand, Madame (Joséphine)', '2004-07-26', 20, 'https://www.gutenberg.org/ebooks/13024', 'fr', 585), +(30107, 'Twice-Told Tales', 'Hawthorne, Nathaniel', '1996-04-01', 131, 'https://www.gutenberg.org/ebooks/508', 'en', 13), +(30108, 'Jerry\'s Charge Account', 'Wilson, Hazel Hutchins', '2008-11-26', 21, 'https://www.gutenberg.org/ebooks/27211', 'en', 11967), +(30109, 'Mary-\'Gusta', 'Lincoln, Joseph Crosby', '2006-05-17', 25, 'https://www.gutenberg.org/ebooks/2473', 'en', 3249), +(30110, 'Pictures in Umbria', 'Macquoid, Katharine S. (Katharine Sarah)', '2013-09-17', 8, 'https://www.gutenberg.org/ebooks/43754', 'en', 11968), +(30111, 'A History of Epidemics in Britain, Volume 1 (of 2)\r\nFrom A.D. 664 to the Extinction of Plague', 'Creighton, Charles', '2013-05-11', 33, 'https://www.gutenberg.org/ebooks/42686', 'en', 6683), +(30112, 'Jean-Christophe in Paris: The Market-Place, Antoinette, the House', 'Rolland, Romain', '2005-05-01', 56, 'https://www.gutenberg.org/ebooks/8149', 'en', 1432), +(30113, 'The Dramatist; Or, Stop Him Who Can! A Comedy, in Five Acts', 'Reynolds, Frederick', '2010-02-23', 6, 'https://www.gutenberg.org/ebooks/31374', 'en', 11969), +(30114, 'History of Chemistry, Volume 2 (of 2)\r\nFrom 1850 to 1910', 'Thorpe, T. E. (Thomas Edward)', '2017-09-26', 40, 'https://www.gutenberg.org/ebooks/55631', 'en', 10696), +(30115, 'Jacques', 'Sand, George', '2004-10-21', 31, 'https://www.gutenberg.org/ebooks/13818', 'fr', 258), +(30116, 'What Gunpowder Plot Was', 'Gardiner, Samuel Rawson', '2010-12-09', 17, 'https://www.gutenberg.org/ebooks/34606', 'en', 4300), +(30117, 'Early History of Blackwood\'s Edinburgh Magazine', 'Doane, Alice Mary', '2015-10-30', 10, 'https://www.gutenberg.org/ebooks/50343', 'en', 11970), +(30118, 'Poëzy\r\nNieuwe Bloemlezing uit de dichtwerken van J.J.L ten Kate', 'Kate, J. J. L. ten (Jan Jakob Lodewijk)', '2006-01-09', 8, 'https://www.gutenberg.org/ebooks/17484', 'nl', 11971), +(30119, 'Natuur en Menschen in Indië', 'Wit, Augusta de', '2009-03-06', 10, 'https://www.gutenberg.org/ebooks/28259', 'nl', 5306), +(30120, 'Suite Mentale', 'Garrett, Randall', '2007-09-25', 49, 'https://www.gutenberg.org/ebooks/22763', 'en', 179), +(30121, 'The Research Magnificent', 'Wells, H. G. (Herbert George)', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8975', 'en', 5233), +(30122, 'Short Story Classics (American) Vol. 2', NULL, '2005-08-20', 44, 'https://www.gutenberg.org/ebooks/16556', 'en', 112), +(30123, 'Narrative and Critical History of America, Vol. 4 (of 8)\r\nFrench Explorations and Settlements in North America and Those of the Portuguese, Dutch, and Swedes 1500-1700', NULL, '2016-02-23', 11, 'https://www.gutenberg.org/ebooks/51291', 'en', 3403), +(30124, 'Niobe, All Smiles: A Farcical Comedy in Three Acts', 'Ordonneau, Maurice', '2014-07-08', 8, 'https://www.gutenberg.org/ebooks/46226', 'en', 11972), +(30125, 'Adventures of Huckleberry Finn, Chapters 06 to 10', 'Twain, Mark', '2004-06-27', 30, 'https://www.gutenberg.org/ebooks/7101', 'en', 835), +(30126, 'The Lives of the Fathers, Martyrs, and Other Principal Saints. January, February, March', 'Butler, Alban', '2007-01-26', 70, 'https://www.gutenberg.org/ebooks/20450', 'en', 11973), +(30127, 'Through the Air to the North Pole\r\nOr, The Wonderful Cruise of the Electric Monarch', 'Rockwood, Roy', '2005-01-11', 24, 'https://www.gutenberg.org/ebooks/14665', 'en', 3124), +(30128, 'Lady Sybil\'s Choice: A Tale of the Crusades', 'Holt, Emily Sarah', '2013-11-05', 9, 'https://www.gutenberg.org/ebooks/44115', 'en', 98), +(30129, 'Sejanus: His Fall', 'Jonson, Ben', '2004-03-01', 38, 'https://www.gutenberg.org/ebooks/5232', 'en', 11974), +(30130, 'Antonio Stradivari', 'Petherick, Horace', '2011-06-26', 17, 'https://www.gutenberg.org/ebooks/36535', 'en', 11975), +(30131, 'What Shall It Profit?', 'Anderson, Poul', '2019-05-13', 122, 'https://www.gutenberg.org/ebooks/59498', 'en', 11976), +(30132, 'A Virginia Girl in the Civil War, 1861-1865\r\nbeing a record of the actual experiences of the wife of a Confederate officer', 'Avary, Myrta Lockett', '2016-05-15', 25, 'https://www.gutenberg.org/ebooks/52070', 'en', 83), +(30133, 'The Mightiest Man', 'Fahy, Patrick', '2007-05-23', 43, 'https://www.gutenberg.org/ebooks/21582', 'en', 26), +(30134, '1492', 'Johnston, Mary', '1999-03-01', 79, 'https://www.gutenberg.org/ebooks/1692', 'en', 98), +(30135, 'The Eye of Wilbur Mook', 'Hickey, H. B.', '2010-07-02', 20, 'https://www.gutenberg.org/ebooks/33047', 'en', 11977), +(30136, 'The Basis of Morality', 'Schopenhauer, Arthur', '2014-02-16', 219, 'https://www.gutenberg.org/ebooks/44929', 'en', 680), +(30137, 'The Observations of Sir Richard Hawkins, Knt, in his Voyage into the South Sea in the Year 1593\r\nReprinted from the Edition of 1622', 'Hawkins, Richard, Sir', '2018-07-13', 17, 'https://www.gutenberg.org/ebooks/57502', 'en', 11978); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(30138, 'De Aarde en haar Volken, Jaargang 1877', 'Various', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11317', 'nl', 1673), +(30139, 'From Sail to Steam, Recollections of Naval Life', 'Mahan, A. T. (Alfred Thayer)', '2008-04-22', 73, 'https://www.gutenberg.org/ebooks/25122', 'en', 7989), +(30140, 'The Battle of Blenheim', 'Belloc, Hilaire', '2010-05-01', 40, 'https://www.gutenberg.org/ebooks/32195', 'en', 11979), +(30141, 'The Everlasting Mercy', 'Masefield, John', '2012-11-23', 30, 'https://www.gutenberg.org/ebooks/41467', 'en', 54), +(30142, 'The Hills and the Vale', 'Jefferies, Richard', '2010-03-20', 31, 'https://www.gutenberg.org/ebooks/31710', 'en', 10904), +(30143, 'Anecdotes of Big Cats and Other Beasts', 'Wilson, David Alec', '2017-08-03', 7, 'https://www.gutenberg.org/ebooks/55255', 'en', 1787), +(30144, 'J. S. Le Fanu\'s Ghostly Tales, Volume 5', 'Le Fanu, Joseph Sheridan', '2004-06-01', 56, 'https://www.gutenberg.org/ebooks/12592', 'en', 531), +(30145, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 15, No. 85, January, 1875', 'Various', '2004-09-11', 18, 'https://www.gutenberg.org/ebooks/13440', 'en', 210), +(30146, 'Histoires souveraines', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2017-03-18', 26, 'https://www.gutenberg.org/ebooks/54387', 'fr', 100), +(30147, 'The 1996 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-31', 34, 'https://www.gutenberg.org/ebooks/27675', 'en', 10662), +(30148, 'Dhammapada, a Collection of Verses; Being One of the Canonical Books of the Buddhists', NULL, '1999-12-01', 273, 'https://www.gutenberg.org/ebooks/2017', 'en', 639), +(30149, 'Harper\'s Young People, November 2, 1880\nAn Illustrated Monthly', 'Various', '2013-07-27', 3, 'https://www.gutenberg.org/ebooks/43330', 'en', 479), +(30150, 'The Grammar School Boys of Gridley; or, Dick & Co. Start Things Moving', 'Hancock, H. Irving (Harrie Irving)', '2007-08-13', 25, 'https://www.gutenberg.org/ebooks/22307', 'en', 1779), +(30151, 'Filosofía Fundamental, Tomo II', 'Balmes, Jaime Luciano', '2005-06-25', 35, 'https://www.gutenberg.org/ebooks/16132', 'es', 779), +(30152, 'Sporting Dogs: Their Points and Management in Health and Disease', 'Barton, Frank Townend', '2014-08-21', 23, 'https://www.gutenberg.org/ebooks/46642', 'en', 1636), +(30153, 'Villa Elsa\nA Story of German Family Life', 'Henry, Stuart Oliver', '2006-11-28', 31, 'https://www.gutenberg.org/ebooks/19946', 'en', 11980), +(30154, 'Quotes and Images From Memoirs of Louis XIV.', 'Saint-Simon, Louis de Rouvroy, duc de', '2005-02-01', 20, 'https://www.gutenberg.org/ebooks/7565', 'en', 1026), +(30155, 'Octavia, the Octoroon', 'Lee, J. F.', '2011-09-24', 11, 'https://www.gutenberg.org/ebooks/34262', 'en', 1958), +(30156, 'Tom Swift and His Electric Runabout; Or, The Speediest Car on the Road', 'Appleton, Victor', '1997-06-01', 102, 'https://www.gutenberg.org/ebooks/950', 'en', 1456), +(30157, 'Then I\'ll Come Back to You', 'Evans, Larry', '2006-07-22', 23, 'https://www.gutenberg.org/ebooks/18894', 'en', 61), +(30158, 'The Works of William Cowper\r\nHis life, letters, and poems, now first completed by the introduction of Cowper\'s private correspondence', 'Cowper, William', '2014-12-27', 64, 'https://www.gutenberg.org/ebooks/47790', 'en', 11981), +(30159, 'Spain, v. 2 (of 2)', 'De Amicis, Edmondo', '2015-12-20', 9, 'https://www.gutenberg.org/ebooks/50727', 'en', 1514), +(30160, 'The Condition and Tendencies of Technical Education in Germany', 'Chamberlain, Arthur Henry', '2008-09-12', 6, 'https://www.gutenberg.org/ebooks/26595', 'en', 11982), +(30161, 'Gideon\'s Band: A Tale of the Mississippi', 'Cable, George Washington', '2006-09-22', 30, 'https://www.gutenberg.org/ebooks/19348', 'en', 3814), +(30162, 'Yorkshire Dales and Fells', 'Home, Gordon', '2017-07-07', 13, 'https://www.gutenberg.org/ebooks/55067', 'en', 10118), +(30163, 'La Novela de un Joven Pobre', 'Feuillet, Octave', '2007-10-07', 28, 'https://www.gutenberg.org/ebooks/22909', 'es', 6883), +(30164, 'The Fourteenth of July, and Danton: Two Plays of the French Revolution', 'Rolland, Romain', '2015-07-14', 11, 'https://www.gutenberg.org/ebooks/49438', 'en', 11983), +(30165, 'The Pearl of Orr\'s Island: A Story of the Coast of Maine', 'Stowe, Harriet Beecher', '2010-03-06', 177, 'https://www.gutenberg.org/ebooks/31522', 'en', 1541), +(30166, '\"Captains Courageous\": A Story of the Grand Banks', 'Kipling, Rudyard', '2000-06-01', 251, 'https://www.gutenberg.org/ebooks/2225', 'en', 324), +(30167, 'The Rope of Gold\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-07-06', 25, 'https://www.gutenberg.org/ebooks/43102', 'en', 557), +(30168, 'The Unknown Eros', 'Patmore, Coventry', '2004-10-07', 14, 'https://www.gutenberg.org/ebooks/13672', 'en', 532), +(30169, 'Mountain Blood: A Novel', 'Hergesheimer, Joseph', '2008-12-08', 18, 'https://www.gutenberg.org/ebooks/27447', 'en', 4850), +(30170, 'Œuvres complètes de Guy de Maupassant - volume 04', 'Maupassant, Guy de', '2014-08-01', 40, 'https://www.gutenberg.org/ebooks/46470', 'fr', 642), +(30171, 'Memoir of Queen Adelaide, Consort of King William IV.', 'Doran, Dr. (John)', '2011-02-06', 2, 'https://www.gutenberg.org/ebooks/35182', 'en', 11984), +(30172, 'Falkland, Book 1.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7757', 'en', 61), +(30173, 'The Moral Economy', 'Perry, Ralph Barton', '2007-07-24', 25, 'https://www.gutenberg.org/ebooks/22135', 'en', 680), +(30174, 'The History of Emily Montague', 'Brooke, Frances', '2005-07-15', 33, 'https://www.gutenberg.org/ebooks/16300', 'en', 11985), +(30175, 'The Sack of Monte Carlo: An Adventure of To-day', 'Frith, Walter', '2015-11-20', 6, 'https://www.gutenberg.org/ebooks/50515', 'en', 6317), +(30176, 'The Young Emperor, William II of Germany\nA Study in Character Development on a Throne', 'Frederic, Harold', '2017-06-26', 7, 'https://www.gutenberg.org/ebooks/54989', 'en', 3234), +(30177, 'Konrad Wallenrod: An Historical Poem', 'Mickiewicz, Adam', '2010-10-09', 28, 'https://www.gutenberg.org/ebooks/34050', 'en', 11986), +(30178, 'Story Hour Readers — Book Three', 'Coe, Ida', '2004-10-01', 50, 'https://www.gutenberg.org/ebooks/6685', 'en', 1019), +(30179, 'The Beggar\'s Purse: A Fairy Tale of Familiar Finance', 'Adams, Samuel Hopkins', '2013-12-01', 27, 'https://www.gutenberg.org/ebooks/44327', 'en', 179), +(30180, 'The Notebooks of Leonardo Da Vinci — Complete', 'Leonardo, da Vinci', '2004-01-01', 1002, 'https://www.gutenberg.org/ebooks/5000', 'en', 11987), +(30181, 'The Measurement of Intelligence\nAn Explanation of and a Complete Guide for the Use of the\nStanford Revision and Extension of the Binet-Simon\nIntelligence Scale', 'Terman, Lewis M. (Lewis Madison)', '2007-02-25', 33, 'https://www.gutenberg.org/ebooks/20662', 'en', 11988), +(30182, 'Index of the Project Gutenberg Works of Francis Parkman', 'Parkman, Francis', '2019-01-27', 12, 'https://www.gutenberg.org/ebooks/58778', 'en', 198), +(30183, 'Motor Matt\'s Mandarin; or, Turning a Trick for Tsan Ti', 'Matthews, Stanley R.', '2016-10-28', 12, 'https://www.gutenberg.org/ebooks/53390', 'en', 323), +(30184, 'Kings, Queens and Pawns: An American Woman at the Front', 'Rinehart, Mary Roberts', '2004-12-25', 47, 'https://www.gutenberg.org/ebooks/14457', 'en', 449), +(30185, 'Humorous Masterpieces from American Literature', NULL, '2005-04-08', 60, 'https://www.gutenberg.org/ebooks/15585', 'en', 190), +(30186, 'The Life of Tolstoy: First Fifty Years\nFifth Edition', 'Maude, Aylmer', '2016-06-05', 36, 'https://www.gutenberg.org/ebooks/52242', 'en', 2372), +(30187, 'Punch, or the London Charivari, Volume 99, July 19, 1890', 'Various', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11919', 'en', 134), +(30188, 'Charles\' Journey to France, and Other Tales', 'Barbauld, Mrs. (Anna Letitia)', '2011-07-11', 8, 'https://www.gutenberg.org/ebooks/36707', 'en', 179), +(30189, 'Uit de ontwikkelingsgeschiedenis van het Menschelijk Denken, Deel 2 van 2', 'Casimir, R. (Rommert)', '2018-08-19', 2, 'https://www.gutenberg.org/ebooks/57730', 'nl', 3566), +(30190, 'Bilder aus den Südvogesen', 'Edschmid, Kasimir', '2012-09-18', 4, 'https://www.gutenberg.org/ebooks/40787', 'de', 60), +(30191, 'El cocinero de su majestad: Memorias del tiempo de Felipe III', 'Fernández y González, Manuel', '2010-07-27', 23, 'https://www.gutenberg.org/ebooks/33275', 'es', 11989), +(30192, 'Stephen: A Soldier of the Cross', 'Kingsley, Florence Morse', '2012-12-18', 42, 'https://www.gutenberg.org/ebooks/41655', 'en', 11990), +(30193, 'A Compilation of the Messages and Papers of the Presidents. Volume 5, part 3: Franklin Pierce', NULL, '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11125', 'en', 447), +(30194, 'Histoire Médicale de l\'Armée d\'Orient. Volume 1', 'Desgenettes, R. (René)', '2008-05-03', 11, 'https://www.gutenberg.org/ebooks/25310', 'fr', 10992), +(30195, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 12, No. 28, July, 1873', 'Various', '2005-01-14', 8, 'https://www.gutenberg.org/ebooks/14691', 'en', 210), +(30196, 'Rhymes of Northern Bards\r\nBeing a Curious Collection of Old and New Songs and Poems, Peculiar to the Counties of Newcastle upon Tyne, Northumberland, and Durham', NULL, '2016-09-28', 6, 'https://www.gutenberg.org/ebooks/53156', 'en', 11991), +(30197, 'Tessa\n1901', 'Becke, Louis', '2008-03-15', 19, 'https://www.gutenberg.org/ebooks/24838', 'en', 108), +(30198, 'The Duke Decides', 'Hill, Headon', '2011-09-12', 5, 'https://www.gutenberg.org/ebooks/37413', 'en', 323), +(30199, 'Appendicitis: The Etiology, Hygenic and Dietetic Treatment', 'Tilden, J. H. (John Henry)', '2003-08-01', 25, 'https://www.gutenberg.org/ebooks/4314', 'en', 11992), +(30200, 'The Sea: Its Stirring Story of Adventure, Peril, & Heroism. Volume 4', 'Whymper, Frederick', '2014-02-27', 18, 'https://www.gutenberg.org/ebooks/45033', 'en', 8864), +(30201, 'The Wire Devils', 'Packard, Frank L. (Frank Lucius)', '2016-05-16', 25, 'https://www.gutenberg.org/ebooks/52084', 'en', 128), +(30202, 'Bunker Bean', 'Wilson, Harry Leon', '2005-05-02', 38, 'https://www.gutenberg.org/ebooks/15743', 'en', 61), +(30203, 'The Privateersman', 'Marryat, Frederick', '2007-05-22', 34, 'https://www.gutenberg.org/ebooks/21576', 'en', 98), +(30204, 'Brother Against Brother; or, The Tompkins Mystery.\r\nA Story of the Great American Rebellion.', 'Musick, John R. (John Roy)', '2012-08-20', 10, 'https://www.gutenberg.org/ebooks/40541', 'en', 403), +(30205, 'The Golden Asse', 'Apuleius', '2006-02-22', 244, 'https://www.gutenberg.org/ebooks/1666', 'en', 11993), +(30206, '竇娥寃', 'Guan, Hanqing', '2007-12-24', 22, 'https://www.gutenberg.org/ebooks/24004', 'zh', 3622), +(30207, 'Remarks from a Visit to Edison Laboratory', 'Daniels, Addie Worth Bagley', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10231', 'en', 1406), +(30208, 'Shores of the Polar Sea: A Narrative of the Arctic Expedition of 1875-6', 'Moss, Edward L. (Edward Lawton)', '2018-01-26', 10, 'https://www.gutenberg.org/ebooks/56424', 'en', 5605), +(30209, 'L\'Illustration, No. 0039, 25 Novembre 1843', 'Various', '2012-05-01', 3, 'https://www.gutenberg.org/ebooks/39589', 'fr', 150), +(30210, 'Tangle Hold', 'Wallace, F. L. (Floyd L.)', '2010-04-28', 35, 'https://www.gutenberg.org/ebooks/32161', 'en', 9609), +(30211, 'The Quarterly of the Oregon Historical Society, Vol. IV\nMarch, 1903-December, 1903', 'Oregon Historical Society', '2012-11-26', 32, 'https://www.gutenberg.org/ebooks/41493', 'en', 11994), +(30212, 'On the History of Gunter\'s Scale and the Slide Rule During the Seventeenth Century', 'Cajori, Florian', '2013-02-26', 8, 'https://www.gutenberg.org/ebooks/42216', 'en', 11995), +(30213, 'How Spring Came in New England', 'Warner, Charles Dudley', '2004-10-10', 15, 'https://www.gutenberg.org/ebooks/3131', 'en', 11996), +(30214, 'Notes and Queries, Number 183, April 30, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-02', 39, 'https://www.gutenberg.org/ebooks/26753', 'en', 105), +(30215, 'Contes, Nouvelles et Recits', 'Janin, Jules Gabriel', '2004-06-01', 46, 'https://www.gutenberg.org/ebooks/12566', 'fr', 298), +(30216, 'The state of the dead and the destiny of the wicked', 'Smith, Uriah', '2017-03-22', 17, 'https://www.gutenberg.org/ebooks/54373', 'en', 9331), +(30217, 'The Secret Way', 'Gale, Zona', '2019-08-21', 0, 'https://www.gutenberg.org/ebooks/60146', 'en', NULL), +(30218, 'The Last of the Mohicans: A Narrative of 1757', 'Cooper, James Fenimore', '2009-01-01', 224, 'https://www.gutenberg.org/ebooks/27681', 'en', 98), +(30219, 'Excelsior\nRoman parisien', 'Larmandie, Léonce de', '2006-02-22', 7, 'https://www.gutenberg.org/ebooks/17828', 'fr', 61), +(30220, 'The Somnambulist and the Detective; The Murderer and the Fortune Teller', 'Pinkerton, Allan', '2009-12-09', 10, 'https://www.gutenberg.org/ebooks/30636', 'en', 11997), +(30221, 'Between the Larch-woods and the Weir', 'Klickmann, Flora', '2016-03-30', 9, 'https://www.gutenberg.org/ebooks/51601', 'en', 2215), +(30222, 'The Caxtons: A Family Picture — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 17, 'https://www.gutenberg.org/ebooks/7591', 'en', 137), +(30223, 'Third Biennial Report of the Oregon State Highway Commission\nCovering the Period December 1st, 1916 to November 30th, 1918', 'Benson, Simon', '2011-02-21', 8, 'https://www.gutenberg.org/ebooks/35344', 'en', 11998), +(30224, 'The Wagner Story Book: Firelight Tales of the Great Music Dramas', 'Frost, William Henry', '2004-09-01', 12, 'https://www.gutenberg.org/ebooks/6443', 'en', 6110), +(30225, 'Shadows of the Stage', 'Winter, William', '2006-07-18', 17, 'https://www.gutenberg.org/ebooks/18860', 'en', 11999), +(30226, 'Ross Grant, Tenderfoot', 'Garland, John', '2010-11-12', 36, 'https://www.gutenberg.org/ebooks/34296', 'en', 6112), +(30227, 'Stories of Heroic Deeds for Boys and Girls\nHistorical Series - Book II', 'Johonnot, James', '2014-12-23', 26, 'https://www.gutenberg.org/ebooks/47764', 'en', 5512), +(30228, 'The War Chief of the Six Nations: A Chronicle of Joseph Brant', 'Wood, Louis Aubrey', '2005-11-05', 29, 'https://www.gutenberg.org/ebooks/17014', 'en', 12000), +(30229, 'The Story of the Little Mamsell', 'Niese, Charlotte', '2007-10-27', 9, 'https://www.gutenberg.org/ebooks/23221', 'en', 179), +(30230, 'The Story of a Common Soldier of Army Life in the Civil War, 1861-1865', 'Stillwell, Leander', '2008-09-08', 21, 'https://www.gutenberg.org/ebooks/26561', 'en', 12001), +(30231, 'A Compilation of the Messages and Papers of the Presidents. Volume 8, part 2: Chester A. Arthur', NULL, '2004-06-28', 5, 'https://www.gutenberg.org/ebooks/12754', 'en', 12002), +(30232, 'Life in the Far West', 'Ruxton, George Frederick Augustus', '2017-07-11', 9, 'https://www.gutenberg.org/ebooks/55093', 'en', 930), +(30233, 'A cup of sweets, that can never cloy: or, delightful tales for good children', 'Sandham, Elizabeth', '2013-02-05', 18, 'https://www.gutenberg.org/ebooks/42024', 'en', 388), +(30234, 'Prince Hagen', 'Sinclair, Upton', '2002-07-01', 31, 'https://www.gutenberg.org/ebooks/3303', 'en', 427), +(30235, 'Pelo mundo fóra', 'Carvalho, Maria Amália Vaz de', '2009-11-05', 24, 'https://www.gutenberg.org/ebooks/30404', 'pt', 12003), +(30236, 'La dame de Monsoreau — Tome 3.', 'Dumas, Alexandre', '2006-01-01', 24, 'https://www.gutenberg.org/ebooks/9639', 'fr', 9760), +(30237, 'A Party in Mother Goose Land: A One Act Play for Primary Children', 'Preston, Effa E. (Effa Estelle)', '2017-02-09', 6, 'https://www.gutenberg.org/ebooks/54141', 'en', 364), +(30238, 'Nang Bata Pa Kami', 'Medrano, Pura', '2004-10-10', 30, 'https://www.gutenberg.org/ebooks/13686', 'tl', 12004), +(30239, 'Nevelhekse\r\neen verhaal uit de Drentsche venen naar authentieke bescheiden medegedeeld', 'Steenbergen, Albertus Alidus', '2011-01-06', 6, 'https://www.gutenberg.org/ebooks/34898', 'nl', 7929), +(30240, 'Our Little Eskimo Cousin', 'Wade, Mary Hazelton Blanchard', '2014-08-03', 15, 'https://www.gutenberg.org/ebooks/46484', 'en', 4933), +(30241, 'Der Mensch ist gut', 'Frank, Leonhard', '2011-02-05', 17, 'https://www.gutenberg.org/ebooks/35176', 'de', 579), +(30242, 'Notes and Queries, Number 240, June 3, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-27', 14, 'https://www.gutenberg.org/ebooks/42818', 'en', 105), +(30243, 'Historia Antiga', 'Unknown', '2009-07-28', 34, 'https://www.gutenberg.org/ebooks/29529', 'pt', 1368), +(30244, 'Hunt the Hunter', 'Neville, Kris', '2016-03-13', 19, 'https://www.gutenberg.org/ebooks/51433', 'en', 26), +(30245, 'Emily Fox-Seton\r\nBeing \"The Making of a Marchioness\" and \"The Methods of Lady Walderhurst\"', 'Burnett, Frances Hodgson', '2005-12-05', 171, 'https://www.gutenberg.org/ebooks/17226', 'en', 10621), +(30246, '\"George Washington\'s\" Last Duel\r\n1891', 'Page, Thomas Nelson', '2007-10-12', 15, 'https://www.gutenberg.org/ebooks/23013', 'en', 1426), +(30247, 'Life of Edward Earl of Clarendon — Volume 02', 'Craik, Henry, Sir', '2004-10-01', 6, 'https://www.gutenberg.org/ebooks/6671', 'en', 12005), +(30248, 'The Wizard\'s Son, Vol. 2 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-06', 13, 'https://www.gutenberg.org/ebooks/47556', 'en', 1380), +(30249, 'The Jew', 'Kraszewski, Józef Ignacy', '2011-10-04', 30, 'https://www.gutenberg.org/ebooks/37621', 'en', 1676), +(30250, 'Highways and Byways in Sussex', 'Lucas, E. V. (Edward Verrall)', '2007-02-27', 19, 'https://www.gutenberg.org/ebooks/20696', 'en', 3948), +(30251, 'Kun ruusu puhkeaa', 'Alcott, Louisa May', '2016-10-25', 15, 'https://www.gutenberg.org/ebooks/53364', 'fi', 389), +(30252, 'Mary Cary: \"Frequently Martha\"', 'Bosher, Kate Langley', '2005-04-06', 6, 'https://www.gutenberg.org/ebooks/15571', 'en', 751), +(30253, 'The Lifeboat', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 29, 'https://www.gutenberg.org/ebooks/21744', 'en', 12006), +(30254, 'Diary of Samuel Pepys — Volume 09: January/February/March 1660-61', 'Pepys, Samuel', '2004-11-29', 39, 'https://www.gutenberg.org/ebooks/4126', 'en', 1231), +(30255, 'Fallen Fortunes', 'Everett-Green, Evelyn', '2014-03-24', 18, 'https://www.gutenberg.org/ebooks/45201', 'en', 12007), +(30256, 'Time and Tide: A Romance of the Moon', 'Ball, Robert S. (Robert Stawell)', '2008-01-10', 30, 'https://www.gutenberg.org/ebooks/24236', 'en', 10171), +(30257, 'My First Years as a Frenchwoman, 1876-1879', 'Waddington, Mary King', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10003', 'en', 12008), +(30258, 'Notes and Queries, Vol. V, Number 121, February 21, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-15', 17, 'https://www.gutenberg.org/ebooks/40773', 'en', 105), +(30259, 'De kinderen van Kapitein Grant, derde deel (van 3)\r\nDe Stille Oceaan', 'Verne, Jules', '2012-02-02', 20, 'https://www.gutenberg.org/ebooks/38669', 'nl', 792), +(30260, 'Punch, or the London Charivari, Vol. 98, May 31, 1890', 'Various', '2010-07-28', 11, 'https://www.gutenberg.org/ebooks/33281', 'en', 134), +(30261, 'Maitre Cornelius', 'Balzac, Honoré de', '2005-02-22', 31, 'https://www.gutenberg.org/ebooks/1454', 'en', 98), +(30262, 'The Mind Digger', 'Marks, Winston K. (Winston Kinney)', '2010-05-12', 23, 'https://www.gutenberg.org/ebooks/32353', 'en', 1061), +(30263, 'The Canadian Horticulturist, Volume I\nCompendium & Index', 'Various', '2018-02-21', 17, 'https://www.gutenberg.org/ebooks/56616', 'en', 12009), +(30264, 'Vasárnapi Könyv. 1914. Első félév 9. füzet', 'Various', '2009-09-22', 11, 'https://www.gutenberg.org/ebooks/30060', 'hu', 18), +(30265, 'The Life of Ludwig van Beethoven, Volume II', 'Thayer, Alexander Wheelock', '2013-08-29', 27, 'https://www.gutenberg.org/ebooks/43592', 'en', 1807), +(30266, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 06 (of 17)', NULL, '2017-04-09', 31, 'https://www.gutenberg.org/ebooks/54525', 'en', 1113), +(30267, 'The Oaths, Signs, Ceremonies and Objects of the Ku-Klux-Klan.\nA Full Expose. By A Late Member', 'Anonymous', '2008-07-22', 41, 'https://www.gutenberg.org/ebooks/26105', 'en', 1515), +(30268, 'A Volunteer Poilu', 'Beston, Henry', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12330', 'en', 449), +(30269, 'Old Groans and New Songs\nBeing Meditations on the Book of Ecclesiastes', 'Jennings, Frederick Charles', '2009-09-13', 7, 'https://www.gutenberg.org/ebooks/29971', 'en', 12010), +(30270, 'Sonata de primavera: memorias del marqués de Bradomín', 'Valle-Inclán, Ramón del', '2013-03-30', 33, 'https://www.gutenberg.org/ebooks/42440', 'es', 10621), +(30271, 'The Man Who Kept His Money in a Box', 'Trollope, Anthony', '2003-02-01', 35, 'https://www.gutenberg.org/ebooks/3767', 'en', 270), +(30272, 'Romance', 'Ford, Ford Madox', '2006-01-31', 57, 'https://www.gutenberg.org/ebooks/17642', 'en', 61), +(30273, 'English Caricature and Satire on Napoleon I. Volume 2 (of 2)', 'Ashton, John', '2015-10-12', 15, 'https://www.gutenberg.org/ebooks/50185', 'en', 12011), +(30274, 'Gloria (novela completa)', 'Pérez Galdós, Benito', '2015-05-12', 61, 'https://www.gutenberg.org/ebooks/48946', 'es', 12012), +(30275, 'Up! Horsie!\nAn Original Fairy Tale', 'Chatelain, Clara de', '2007-11-15', 7, 'https://www.gutenberg.org/ebooks/23477', 'en', 1007), +(30276, 'The Pomp of the Lavilettes, Volume 1', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6215', 'en', 1219), +(30277, 'South Africa and the Transvaal War, Vol. 7 (of 8)\r\nThe Guerilla War, from February 1901 to the Conclusion of Hostilities', 'Creswicke, Louis', '2014-10-16', 14, 'https://www.gutenberg.org/ebooks/47132', 'en', 2724), +(30278, 'Richard I\nMakers of History', 'Abbott, Jacob', '2008-10-17', 50, 'https://www.gutenberg.org/ebooks/26939', 'en', 12013), +(30279, 'A Daughter of the Vine', 'Atherton, Gertrude Franklin Horn', '2011-03-07', 11, 'https://www.gutenberg.org/ebooks/35512', 'en', 211), +(30280, '\"Chicago to the Sea.\" Eastern Excursionist\r\nA complete guide to the principal eastern summer resorts, including: Niagara Falls, the White Mountains, Saint Lawrence and Saguenay Rivers, Montreal and Quebec, the New England sea beaches, etc., and how and when to enjoy them.', 'Gage, William C.', '2015-09-06', 14, 'https://www.gutenberg.org/ebooks/49894', 'en', 12014), +(30281, 'Lady Jane Grey and Her Times', 'Taylor, Ida A. (Ida Ashworth)', '2016-01-27', 20, 'https://www.gutenberg.org/ebooks/51057', 'en', 12015), +(30282, 'Anglo-Saxon Britain', 'Allen, Grant', '2005-10-02', 45, 'https://www.gutenberg.org/ebooks/16790', 'en', 12016), +(30283, 'Novelas y teatro', 'Cervantes Saavedra, Miguel de', '2005-02-20', 48, 'https://www.gutenberg.org/ebooks/15115', 'es', 61), +(30284, 'Mass\' George: A Boy\'s Adventures in the Old Savannah', 'Fenn, George Manville', '2007-05-04', 47, 'https://www.gutenberg.org/ebooks/21320', 'en', 8998), +(30285, 'Checkmates for Three Pieces', 'Fishburne, William Brett', '2003-10-01', 53, 'https://www.gutenberg.org/ebooks/4542', 'en', 3733), +(30286, 'Ruth Fielding At Sunrise Farm; Or, What Became of the Raby Orphans', 'Emerson, Alice B.', '2011-06-12', 40, 'https://www.gutenberg.org/ebooks/36397', 'en', 751), +(30287, 'Tuhlaajapoika', 'Caine, Hall, Sir', '2014-05-16', 7, 'https://www.gutenberg.org/ebooks/45665', 'fi', 11778), +(30288, 'The Emperor — Volume 08', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5490', 'en', 803), +(30289, 'The Piskey-Purse: Legends and Tales of North Cornwall', 'Tregarthen, Enys', '2011-08-28', 26, 'https://www.gutenberg.org/ebooks/37245', 'en', 1565), +(30290, 'Tales from the Works of G. A. Henty', 'Henty, G. A. (George Alfred)', '2016-12-08', 41, 'https://www.gutenberg.org/ebooks/53700', 'en', 2809), +(30291, 'Mother Stories', 'Lindsay, Maud', '2005-05-28', 49, 'https://www.gutenberg.org/ebooks/15929', 'en', 388), +(30292, 'Uniform of a Man', 'Dryfoos, Dave', '2010-06-07', 44, 'https://www.gutenberg.org/ebooks/32737', 'en', 4448), +(30293, 'Patty ja Priscilla', 'Webster, Jean', '2017-12-31', 2, 'https://www.gutenberg.org/ebooks/56272', 'fi', 4642), +(30294, 'The Fire People', 'Cummings, Ray', '2008-06-13', 25, 'https://www.gutenberg.org/ebooks/25780', 'en', 2797), +(30295, 'Diversions in Sicily', 'Jones, Henry Festing', '2008-02-19', 36, 'https://www.gutenberg.org/ebooks/24652', 'en', 9580), +(30296, 'A Select Collection of Old English Plays, Volume 08', NULL, '2003-12-01', 41, 'https://www.gutenberg.org/ebooks/10467', 'en', 1088), +(30297, 'Hymnen', 'Brezina, Otokar', '2012-07-24', 18, 'https://www.gutenberg.org/ebooks/40317', 'de', 12017), +(30298, 'The Cavalier Songs and Ballads of England from 1642 to 1684', NULL, '1997-09-01', 28, 'https://www.gutenberg.org/ebooks/1030', 'en', 3400), +(30299, 'Work: A Story of Experience', 'Alcott, Louisa May', '2003-12-01', 65, 'https://www.gutenberg.org/ebooks/4770', 'en', 1080), +(30300, 'Linda Carlton\'s Island Adventure', 'Lavell, Edith', '2014-04-22', 18, 'https://www.gutenberg.org/ebooks/45457', 'en', 4484), +(30301, 'A Library Primer', 'Dana, John Cotton', '2005-03-11', 55, 'https://www.gutenberg.org/ebooks/15327', 'en', 2059), +(30302, 'Index of the Project Gutenberg Works of Stanley J. Weyman', 'Weyman, Stanley John', '2019-03-04', 4, 'https://www.gutenberg.org/ebooks/59008', 'en', 198), +(30303, 'The Causes of the Corruption of the Traditional Text of the Holy Gospels\nBeing the Sequel to The Traditional Text of the Holy Gospels', 'Burgon, John William', '2007-04-16', 36, 'https://www.gutenberg.org/ebooks/21112', 'en', 12018), +(30304, 'Everyday Adventures', 'Scoville, Samuel', '2012-10-02', 19, 'https://www.gutenberg.org/ebooks/40919', 'en', 871), +(30305, 'The Works of Robert G. Ingersoll, Vol. 03 (of 12)\r\nDresden Edition—Lectures', 'Ingersoll, Robert Green', '2012-02-09', 33, 'https://www.gutenberg.org/ebooks/38803', 'en', 1191), +(30306, 'What the White Race May Learn from the Indian', 'James, George Wharton', '2016-11-15', 19, 'https://www.gutenberg.org/ebooks/53532', 'en', 869), +(30307, 'The Boy Mechanic, Book 2: 1000 Things for Boys to Do', NULL, '2014-01-04', 59, 'https://www.gutenberg.org/ebooks/44585', 'en', 8524), +(30308, 'D. E. D. Europaeuksen kirjeitä ja matkakertomuksia', 'Europaeus, D. E. D. (David Emanuel Daniel)', '2011-08-14', 11, 'https://www.gutenberg.org/ebooks/37077', 'fi', 12019), +(30309, 'Human Genome Project, Build 34, Chromosome Number 13', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11787', 'en', 1385), +(30310, 'The Land of Lure: A Story of the Columbia River Basin', 'Smith, Elliott', '2011-08-07', 15, 'https://www.gutenberg.org/ebooks/36999', 'en', 12020), +(30311, 'Memoirs of Mistral', 'Mistral, Frédéric', '2017-11-23', 9, 'https://www.gutenberg.org/ebooks/56040', 'en', 12021), +(30312, 'My Young Master: A Novel', 'Read, Opie Percival', '2019-06-29', 95, 'https://www.gutenberg.org/ebooks/59834', 'en', 12022), +(30313, 'The Systematics of the Frogs of the Hyla Rubra Group in Middle America', 'León, Juan R.', '2010-05-24', 8, 'https://www.gutenberg.org/ebooks/32505', 'en', 12023), +(30314, 'The Railroad Problem', 'Hungerford, Edward', '2012-07-02', 12, 'https://www.gutenberg.org/ebooks/40125', 'en', 12024), +(30315, 'Tales of Unrest', 'Conrad, Joseph', '2006-01-09', 188, 'https://www.gutenberg.org/ebooks/1202', 'en', 2809), +(30316, 'Kari the Elephant', 'Mukerji, Dhan Gopal', '2008-01-30', 47, 'https://www.gutenberg.org/ebooks/24460', 'en', 12025), +(30317, 'Principle in Art, Etc.', 'Patmore, Coventry', '2018-05-21', 18, 'https://www.gutenberg.org/ebooks/57192', 'en', 2156), +(30318, 'Autobiography of Sir George Biddell Airy', 'Airy, George Biddell', '2004-01-01', 15, 'https://www.gutenberg.org/ebooks/10655', 'en', 6776), +(30319, 'Two Dramatizations from Vergil: I. Dido—the Phœnecian Queen; II. The Fall of Troy', 'Virgil', '2017-05-14', 19, 'https://www.gutenberg.org/ebooks/54717', 'en', 12026), +(30320, 'Explanation of Catholic Morals\r\nA Concise, Reasoned, and Popular Exposition of Catholic Morals', 'Stapleton, John H. (John Henry)', '2006-05-23', 86, 'https://www.gutenberg.org/ebooks/18438', 'en', 10961), +(30321, 'The Four-Faced Visitors of Ezekiel', 'Orton, Arthur W.', '2009-10-14', 32, 'https://www.gutenberg.org/ebooks/30252', 'en', 12027), +(30322, 'Cross Roads', 'Sangster, Margaret E. (Margaret Elizabeth)', '2001-01-01', 18, 'https://www.gutenberg.org/ebooks/2487', 'en', 994), +(30323, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 705, June 30, 1877', 'Various', '2015-02-23', 6, 'https://www.gutenberg.org/ebooks/48348', 'en', 18), +(30324, 'The wanderings and fortunes of some German emigrants', 'Gerstäcker, Friedrich', '2013-05-09', 24, 'https://www.gutenberg.org/ebooks/42672', 'en', 1468), +(30325, 'Bred of the Desert: A Horse and a Romance', 'Horton, Charles M. (Charles Marcus)', '2010-02-24', 8, 'https://www.gutenberg.org/ebooks/31380', 'en', 8308), +(30326, 'Memoirs of Napoleon Bonaparte — Volume 05', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 25, 'https://www.gutenberg.org/ebooks/3555', 'en', 840), +(30327, 'The Great Events by Famous Historians, Volume 09', NULL, '2008-08-17', 14, 'https://www.gutenberg.org/ebooks/26337', 'en', 346), +(30328, 'Darrel of the Blessed Isles', 'Bacheller, Irving', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/12102', 'en', 61), +(30329, 'In the Closed Room', 'Burnett, Frances Hodgson', '2004-07-01', 61, 'https://www.gutenberg.org/ebooks/6027', 'en', 9484), +(30330, 'Mr. Punch\'s History of Modern England, Vol. 3 (of 4).—1874-1892', 'Graves, Charles L. (Charles Larcom)', '2014-11-06', 16, 'https://www.gutenberg.org/ebooks/47300', 'en', 5499), +(30331, 'On the Art of Writing\nLectures delivered in the University of Cambridge 1913-1914', 'Quiller-Couch, Arthur', '2006-01-05', 171, 'https://www.gutenberg.org/ebooks/17470', 'en', 2270), +(30332, 'The Mystery of the Four Fingers', 'White, Fred M. (Fred Merrick)', '2006-02-01', 32, 'https://www.gutenberg.org/ebooks/9853', 'en', 128), +(30333, 'The Motor Maids at Sunrise Camp', 'Stokes, Katherine', '2007-11-28', 32, 'https://www.gutenberg.org/ebooks/23645', 'en', 7327), +(30334, 'Diderot and the Encyclopædists (Vol. 2 of 2)', 'Morley, John', '2007-09-28', 9, 'https://www.gutenberg.org/ebooks/22797', 'en', 4604), +(30335, 'The Last of the Mortimers: A Story in Two Voices', 'Oliphant, Mrs. (Margaret)', '2016-12-22', 16, 'https://www.gutenberg.org/ebooks/51265', 'en', 61), +(30336, 'Eight Hundred Leagues on the Amazon', 'Verne, Jules', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8981', 'en', 2588), +(30337, 'Papers Relating to an Act of the Assembly of the Province of New-York\r\nFor encouragement of the Indian trade, &c. and for prohibiting the selling of Indian goods to the French, viz. of Canada', 'New York (Colony). Council', '2011-03-30', 22, 'https://www.gutenberg.org/ebooks/35720', 'en', 12028), +(30338, 'The History of Rome, Books 37 to the End\nwith the Epitomes and Fragments of the Lost Books', 'Livy', '2013-11-30', 51, 'https://www.gutenberg.org/ebooks/44318', 'en', 6793), +(30339, 'Holcomb, Fitz, and Peate: Three 19th Century American Telescope Makers', NULL, '2019-01-21', 1, 'https://www.gutenberg.org/ebooks/58747', 'en', 12029), +(30340, 'The Felon\'s Track\nHistory Of The Attempted Outbreak In Ireland, Embracing The Leading\nEvents In The Irish Struggle From The Year 1843 To The Close Of 1848', 'Doheny, Michael', '2004-12-26', 15, 'https://www.gutenberg.org/ebooks/14468', 'en', 12030), +(30341, 'The History of Lapland\r\nWherein Are Shewed the Original, Manners, Habits, Marriages, Conjurations, &c. of That People', 'Scheffer, Johannes', '2019-06-07', 29, 'https://www.gutenberg.org/ebooks/59695', 'en', 12031), +(30342, 'Washington in Domestic Life\r\nFrom Original Letters and Manuscripts', 'Rush, Richard', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/11926', 'en', 7558), +(30343, 'L\'Illustration, No. 3274, 25 Novembre 1905', 'Various', '2011-07-15', 5, 'https://www.gutenberg.org/ebooks/36738', 'fr', 150), +(30344, 'Not that it Matters', 'Milne, A. A. (Alan Alexander)', '2004-06-01', 145, 'https://www.gutenberg.org/ebooks/5803', 'en', 472), +(30345, 'Punch, or the London Charivari, Volume 107, July 21st 1894', 'Various', '2012-05-23', 13, 'https://www.gutenberg.org/ebooks/39770', 'en', 134), +(30346, 'Brood of the Dark Moon\r\n(A Sequel to \"Dark Moon\")', 'Diffin, Charles Willard', '2010-05-16', 52, 'https://www.gutenberg.org/ebooks/32398', 'en', 26), +(30347, 'A Brief Account of the Rise and Progress of the People Called Quakers', 'Penn, William', '2006-09-25', 27, 'https://www.gutenberg.org/ebooks/19377', 'en', 4759), +(30348, 'La kolomba premio', 'Dumas, Alexandre', '2011-04-27', 7, 'https://www.gutenberg.org/ebooks/35981', 'eo', 61), +(30349, 'La Puchera', 'Pereda, José María de', '2017-07-06', 30, 'https://www.gutenberg.org/ebooks/55058', 'es', 1353), +(30350, 'Tales and Novels — Volume 02\r\nPopular Tales', 'Edgeworth, Maria', '2005-08-01', 41, 'https://www.gutenberg.org/ebooks/8720', 'en', 61), +(30351, 'The Third Epistle of John', 'John, the Apostle, Saint', '2007-10-01', 2, 'https://www.gutenberg.org/ebooks/22936', 'en', 2072), +(30352, 'Nevada; or, The Lost Mine, A Drama in Three Acts', 'Baker, George M. (George Melville)', '2015-07-10', 9, 'https://www.gutenberg.org/ebooks/49407', 'en', 12032), +(30353, 'Encyclopaedia Britannica, 11th Edition, \"Austria, Lower\" to \"Bacon\"\r\nVolume 3, Part 1, Slice 1', 'Various', '2008-12-10', 35, 'https://www.gutenberg.org/ebooks/27478', 'en', 1081), +(30354, 'The Fairy-Faith in Celtic Countries', 'Evans-Wentz, W. Y. (Walter Yeeling)', '2011-01-05', 183, 'https://www.gutenberg.org/ebooks/34853', 'en', 7936), +(30355, 'Miss Billy — Married', 'Porter, Eleanor H. (Eleanor Hodgman)', '2008-07-11', 48, 'https://www.gutenberg.org/ebooks/361', 'en', 675), +(30356, 'The Young Wireless Operator—Afloat\r\nOr, How Roy Mercer Won His Spurs in the Merchant Marine', 'Theiss, Lewis E. (Lewis Edwin)', '2017-10-31', 9, 'https://www.gutenberg.org/ebooks/55864', 'en', 12033), +(30357, 'The Adventures of Ulysses', 'Lamb, Charles', '2005-03-01', 123, 'https://www.gutenberg.org/ebooks/7768', 'en', 7309), +(30358, 'Lettres de Madame de Sévigné\r\nPrécédées d\'une notice sur sa vie et du traité sur le style épistolaire de Madame de Sévigné', 'Sévigné, Marie de Rabutin-Chantal, marquise de', '2013-10-06', 134, 'https://www.gutenberg.org/ebooks/43901', 'fr', 12034), +(30359, 'Filosofía Fundamental, Tomo IV', 'Balmes, Jaime Luciano', '2009-03-29', 34, 'https://www.gutenberg.org/ebooks/28430', 'es', 779), +(30360, 'The Three Cities Trilogy: Lourdes, Volume 2', 'Zola, Émile', '2005-07-01', 4, 'https://www.gutenberg.org/ebooks/8512', 'en', 1633), +(30361, 'Four American Leaders', 'Eliot, Charles William', '2005-10-23', 5, 'https://www.gutenberg.org/ebooks/16931', 'en', 10874), +(30362, 'Attila: A Romance. Vol. II.', 'James, G. P. R. (George Payne Rainsford)', '2015-08-06', 9, 'https://www.gutenberg.org/ebooks/49635', 'en', 12035), +(30363, 'The Time Traders', 'Norton, Andre', '2006-08-29', 206, 'https://www.gutenberg.org/ebooks/19145', 'en', 26), +(30364, 'The Genus Pinus', NULL, '2008-10-07', 24, 'https://www.gutenberg.org/ebooks/26798', 'en', 12036), +(30365, 'Public School Domestic Science', 'Hoodless, Adelaide', '2006-04-01', 32, 'https://www.gutenberg.org/ebooks/18097', 'en', 12037), +(30366, 'Jude the Obscure', 'Hardy, Thomas', '1994-08-01', 541, 'https://www.gutenberg.org/ebooks/153', 'en', 12038), +(30367, 'The Yellow Claw', 'Rohmer, Sax', '2006-05-14', 108, 'https://www.gutenberg.org/ebooks/2028', 'en', 11283), +(30368, 'The Impossibles', 'Janifer, Laurence M.', '2007-08-16', 42, 'https://www.gutenberg.org/ebooks/22338', 'en', 784), +(30369, 'A Righte Merrie Christmasse: The Story of Christ-Tide', 'Ashton, John', '2006-11-30', 21, 'https://www.gutenberg.org/ebooks/19979', 'en', 4324), +(30370, 'Going Some', 'Beach, Rex', '2004-09-01', 40, 'https://www.gutenberg.org/ebooks/6488', 'en', 12039), +(30371, 'Ceci n\'est pas un conte', 'Diderot, Denis', '2009-04-25', 51, 'https://www.gutenberg.org/ebooks/28602', 'fr', 5128), +(30372, 'Dubliners', 'Joyce, James', '2001-09-01', 3132, 'https://www.gutenberg.org/ebooks/2814', 'en', 1788), +(30373, 'Le cycle mythologique irlandais et la mythologie celtique\nCours de littérature celtique, tome II', 'Arbois de Jubainville, H. d\' (Henry)', '2015-12-19', 29, 'https://www.gutenberg.org/ebooks/50718', 'fr', 12040), +(30374, 'The Cocoanut: With reference to its products and cultivation in the Philippines', 'Lyon, William Scrugham', '2010-10-07', 10, 'https://www.gutenberg.org/ebooks/33844', 'en', 12041), +(30375, 'Audubon\'s western journal: 1849-1850\r\nBeing the MS. record of a trip from New York to Texas, and an overland journey through Mexico and Arizona to the gold-fields of California', 'Audubon, John Woodhouse', '2018-12-30', 28, 'https://www.gutenberg.org/ebooks/58575', 'en', 2487), +(30376, 'The Long Trick', 'Bartimeus', '2008-06-28', 17, 'https://www.gutenberg.org/ebooks/25921', 'en', 2902), +(30377, 'Waste: A Tragedy, In Four Acts', 'Granville-Barker, Harley', '2005-05-07', 12, 'https://www.gutenberg.org/ebooks/15788', 'en', 12042), +(30378, 'The Ten-foot Chain; or, Can Love Survive the Shackles? A Unique Symposium', 'Sheehan, Perley Poore', '2010-06-27', 34, 'https://www.gutenberg.org/ebooks/32996', 'en', 179), +(30379, 'And So They Were Married', 'Kingsley, Florence Morse', '2012-01-03', 16, 'https://www.gutenberg.org/ebooks/38490', 'en', 705), +(30380, 'Harper\'s Round Table, July 30, 1895', 'Various', '2010-07-04', 3, 'https://www.gutenberg.org/ebooks/33078', 'en', 668), +(30381, 'Modernities', 'Samuel, Horace Barnett', '2014-02-15', 16, 'https://www.gutenberg.org/ebooks/44916', 'en', 536), +(30382, 'The Hunted Woman', 'Curwood, James Oliver', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/11328', 'en', 551), +(30383, 'The Gay Triangle: The Romance of the First Air Adventurers', 'Le Queux, William', '2012-11-23', 19, 'https://www.gutenberg.org/ebooks/41458', 'en', 179), +(30384, 'A History of Sarawak under Its Two White Rajahs 1839-1908', 'Baring-Gould, S. (Sabine)', '2016-08-22', 25, 'https://www.gutenberg.org/ebooks/52873', 'en', 12043), +(30385, 'The Alps', 'Conway, William Martin, Sir', '2012-04-27', 2, 'https://www.gutenberg.org/ebooks/39542', 'en', 3982), +(30386, 'Tales of Terror and Mystery', 'Doyle, Arthur Conan', '1996-05-01', 691, 'https://www.gutenberg.org/ebooks/537', 'en', 2354), +(30387, 'Histoires grotesques et sérieuses', 'Poe, Edgar Allan', '2015-02-28', 31, 'https://www.gutenberg.org/ebooks/48383', 'fr', 12044), +(30388, 'The Romance of a Plain Man', 'Glasgow, Ellen Anderson Gholson', '2009-10-20', 24, 'https://www.gutenberg.org/ebooks/30299', 'en', 48), +(30389, 'Death at the Excelsior, and Other Stories', 'Wodehouse, P. G. (Pelham Grenville)', '2005-05-01', 214, 'https://www.gutenberg.org/ebooks/8176', 'en', 2510), +(30390, 'Muistelmia kuolleesta talosta', 'Dostoyevsky, Fyodor', '2015-06-21', 12, 'https://www.gutenberg.org/ebooks/49251', 'fi', 6618), +(30391, 'Letters from France', 'Mack, Isaac Alexander', '2006-10-10', 18, 'https://www.gutenberg.org/ebooks/19521', 'en', 3601), +(30392, 'American Historical and Literary Curiosities, Part 02', 'Smith, J. Jay (John Jay)', '2004-07-15', 13, 'https://www.gutenberg.org/ebooks/7902', 'en', 1587), +(30393, 'Fields of Victory', 'Ward, Humphry, Mrs.', '2004-10-22', 26, 'https://www.gutenberg.org/ebooks/13827', 'en', 449), +(30394, 'I tre tiranni\r\nCommedie del Cinquecento', 'Ricchi, Agostino', '2010-12-13', 11, 'https://www.gutenberg.org/ebooks/34639', 'it', 11895), +(30395, 'The Duke\'s Motto: A Melodrama', 'McCarthy, Justin H. (Justin Huntly)', '2009-03-07', 11, 'https://www.gutenberg.org/ebooks/28266', 'en', 2588), +(30396, 'Punchinello, Volume 1, No. 04, April 23, 1870', 'Various', '2006-02-01', 10, 'https://www.gutenberg.org/ebooks/9898', 'en', 372), +(30397, 'De Villa\'s der Medici in den omtrek van Florence\r\nDe Aarde en haar Volken, 1886', 'Anonymous', '2005-08-21', 16, 'https://www.gutenberg.org/ebooks/16569', 'nl', 12045), +(30398, 'An Unsinkable Titanic: Every Ship its own Lifeboat', 'Walker, John Bernard', '2014-07-07', 43, 'https://www.gutenberg.org/ebooks/46219', 'en', 1162), +(30399, 'The Treaty of Waitangi; or, how New Zealand became a British Colony', 'Buick, Thomas Lindsay', '2013-01-07', 30, 'https://www.gutenberg.org/ebooks/41800', 'en', 12046), +(30400, 'The Structure and Habits of Spiders', 'Emerton, J. H. (James Henry)', '2018-10-16', 13, 'https://www.gutenberg.org/ebooks/58111', 'en', 6799), +(30401, 'Kun me olimme tyttöjä', 'Doudney, Sarah', '2018-09-24', 1, 'https://www.gutenberg.org/ebooks/57965', 'fi', 62), +(30402, 'Considerations on Representative Government', 'Mill, John Stuart', '2004-05-01', 214, 'https://www.gutenberg.org/ebooks/5669', 'en', 12047), +(30403, 'Ralph the Heir', 'Trollope, Anthony', '2008-05-23', 54, 'https://www.gutenberg.org/ebooks/25579', 'en', 2079), +(30404, 'Collectanea de Diversis Rebus: Addresses and Papers', 'Eade, Peter, Sir', '2011-08-02', 17, 'https://www.gutenberg.org/ebooks/36952', 'en', 472), +(30405, 'Der Rebell: Novelle', 'George, Manfred', '2012-03-13', 6, 'https://www.gutenberg.org/ebooks/39126', 'de', 61), +(30406, 'Peggy in Her Blue Frock', 'White, Eliza Orne', '2007-03-16', 15, 'https://www.gutenberg.org/ebooks/20837', 'en', 1646), +(30407, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 05\r\nThe Roman Republic', NULL, '2018-05-14', 9, 'https://www.gutenberg.org/ebooks/57159', 'en', 346), +(30408, 'Encyclopaedia Britannica, 11th Edition, \"Gloss\" to \"Gordon, Charles George\"\r\nVolume 12, Slice 2', 'Various', '2011-10-29', 28, 'https://www.gutenberg.org/ebooks/37880', 'en', 1081), +(30409, 'The Medici Balls: Seven little journeys in Tuscany', 'Sheldon, Anna R.', '2016-07-22', 23, 'https://www.gutenberg.org/ebooks/52619', 'en', 12048), +(30410, 'All\'s for the Best', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 30, 'https://www.gutenberg.org/ebooks/4589', 'en', 942), +(30411, 'The Three Brothers; Complete', 'Oliphant, Mrs. (Margaret)', '2018-11-22', 18, 'https://www.gutenberg.org/ebooks/58323', 'en', 400), +(30412, 'The Ten Books on Architecture', 'Vitruvius Pollio', '2006-12-31', 707, 'https://www.gutenberg.org/ebooks/20239', 'en', 805), +(30413, 'Les historiettes de Tallemant des Réaux, tome troisième\r\nMémoires pour servir à l\'histoire du XVIIe siècle', 'Tallemant des Réaux', '2012-03-31', 14, 'https://www.gutenberg.org/ebooks/39314', 'fr', 3746), +(30414, 'Some Personal Recollections of Dr. Janeway', 'Clark, James Bayard', '2008-02-26', 10, 'https://www.gutenberg.org/ebooks/24699', 'en', 12049), +(30415, 'Aljaska en de Canada-spoorweg\r\nDe Aarde en haar Volken, 1892', 'Anonymous', '2005-01-29', 17, 'https://www.gutenberg.org/ebooks/14830', 'nl', 2655), +(30416, 'Willem de Zwijger, Prins van Oranje', 'Putnam, Ruth', '2009-05-18', 23, 'https://www.gutenberg.org/ebooks/28868', 'nl', 12050), +(30417, 'Fifth Report of the Vestry of the Parish of Chelsea in the County of Middlesex, Appointed Under the Metropolis Local Management Act, 1855: 1860-1', 'Lahee, Charles', '2013-08-26', 5, 'https://www.gutenberg.org/ebooks/43559', 'en', 12051), +(30418, 'Clarissa Harlowe; or the history of a young lady — Volume 1', 'Richardson, Samuel', '2005-11-01', 210, 'https://www.gutenberg.org/ebooks/9296', 'en', 12052), +(30419, 'The Great Musicians: Purcell', 'Cummings, William Hayman', '2016-01-19', 1, 'https://www.gutenberg.org/ebooks/50972', 'en', 3262), +(30420, 'The Revelation Explained\r\nAn Exposition, Text by Text, of the Apocalypse of St. John', 'Smith, F. G. (Frederick George)', '2004-08-20', 62, 'https://www.gutenberg.org/ebooks/13229', 'en', 9623), +(30421, 'The Roadmender', 'Fairless, Michael', '1996-11-01', 40, 'https://www.gutenberg.org/ebooks/705', 'en', 179), +(30422, 'The Laughing Prince: Jugoslav Folk and Fairy Tales', 'Fillmore, Parker', '2006-11-04', 37, 'https://www.gutenberg.org/ebooks/19713', 'en', 12053), +(30423, 'Die Schlüssel des Himmelreichs; oder, Sankt Peters Wanderung auf Erden', 'Strindberg, August', '2014-09-09', 15, 'https://www.gutenberg.org/ebooks/46817', 'de', 12054), +(30424, 'The Bible, Douay-Rheims, Book 44: Malachias\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8344', 'en', 4495), +(30425, 'Fulton\'s \"Steam Battery\": Blockship and Catamaran', 'Chapelle, Howard Irving', '2010-02-04', 26, 'https://www.gutenberg.org/ebooks/31179', 'en', 11468), +(30426, 'Orlando Furioso, Tomo II', 'Ariosto, Lodovico', '2015-05-28', 25, 'https://www.gutenberg.org/ebooks/49063', 'es', 1535), +(30427, 'The Brothers Karamazov', 'Dostoyevsky, Fyodor', '2009-02-12', 3979, 'https://www.gutenberg.org/ebooks/28054', 'en', 2815), +(30428, 'Sea Warfare', 'Kipling, Rudyard', '2006-02-06', 43, 'https://www.gutenberg.org/ebooks/17689', 'en', 12055), +(30429, 'A Little Housekeeping Book for a Little Girl; Or, Margaret\'s Saturday Mornings', 'Benton, Caroline French', '2010-01-09', 17, 'https://www.gutenberg.org/ebooks/30897', 'en', 12056), +(30430, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 07 (de 12)', 'Castelo Branco, Camilo', '2009-01-17', 10, 'https://www.gutenberg.org/ebooks/27820', 'pt', 410), +(30431, 'St. Peter\'s Umbrella: A Novel', 'Mikszáth, Kálmán', '2010-04-11', 27, 'https://www.gutenberg.org/ebooks/31945', 'en', 8904), +(30432, 'National Strategy for Combating Terrorism\nSeptember 2006', 'National Security Council (U.S.)', '2009-06-21', 21, 'https://www.gutenberg.org/ebooks/29186', 'en', 1857), +(30433, 'Mary Anerley: A Yorkshire Tale', 'Blackmore, R. D. (Richard Doddridge)', '2006-06-06', 59, 'https://www.gutenberg.org/ebooks/6824', 'en', 1445), +(30434, 'The Jargon File, Version 2.9.10, 01 Jul 1992', NULL, '1992-08-01', 308, 'https://www.gutenberg.org/ebooks/38', 'en', 12057), +(30435, 'Runousoppi', 'Aristotle', '2017-05-15', 24, 'https://www.gutenberg.org/ebooks/54728', 'fi', 5878), +(30436, 'En chine: Merveilleuses histoires', 'Gautier, Judith', '2006-05-16', 12, 'https://www.gutenberg.org/ebooks/18407', 'fr', 2773), +(30437, 'Bill Bruce on Forest Patrol', 'Arnold, Henry Harley', '2015-02-28', 16, 'https://www.gutenberg.org/ebooks/48377', 'en', 2279), +(30438, 'A Select Collection of Old English Plays, Volume 01', NULL, '2005-10-01', 12, 'https://www.gutenberg.org/ebooks/9050', 'en', 1088), +(30439, 'The Ghost of Guir House', 'Beale, Charles Willing', '2005-05-01', 19, 'https://www.gutenberg.org/ebooks/8182', 'en', 61), +(30440, 'Hints on Extemporaneous Preaching', 'Ware, Henry', '2008-08-13', 11, 'https://www.gutenberg.org/ebooks/26308', 'en', 12058), +(30441, 'The Journal of a Tour to the Hebrides with Samuel Johnson, LL.D.', 'Boswell, James', '2004-07-01', 132, 'https://www.gutenberg.org/ebooks/6018', 'en', 9105), +(30442, 'Ralph on the Engine; Or, The Young Fireman of the Limited Mail', 'Chapman, Allen', '2009-03-09', 20, 'https://www.gutenberg.org/ebooks/28292', 'en', 1239), +(30443, 'My Lady Peggy Goes to Town', 'Mathews, Frances Aymar', '2015-11-05', 15, 'https://www.gutenberg.org/ebooks/50388', 'en', 6695), +(30444, 'The Story of the Great War, Volume 4\r\nChampagne, Artois, Grodno; Fall of Nish; Caucasus; Mesopotamia; Development of Air Strategy; United States and the War', NULL, '2009-07-07', 60, 'https://www.gutenberg.org/ebooks/29340', 'en', 335), +(30445, 'The Moon-Voyage', 'Verne, Jules', '2004-07-12', 93, 'https://www.gutenberg.org/ebooks/12901', 'en', 1029), +(30446, 'Les Heures du Soir - Précédées de les Heures claires, Les Heures d\'après-midi', 'Verhaeren, Emile', '2014-04-24', 8, 'https://www.gutenberg.org/ebooks/45468', 'fr', 3130), +(30447, 'Silanus the Christian', 'Abbott, Edwin Abbott', '2018-03-25', 11, 'https://www.gutenberg.org/ebooks/56843', 'en', 942), +(30448, 'Pilven hattaroita I\nPieniä kyhäelmiä', 'Kurikka, Matti', '2005-03-10', 50, 'https://www.gutenberg.org/ebooks/15318', 'fi', 61), +(30449, 'Cantares gallegos', 'Castro, Rosalía de', '2019-03-08', 20, 'https://www.gutenberg.org/ebooks/59037', 'gl', 12059), +(30450, 'Meg, of Valencia', 'Jarrell, Myra Williams', '2012-10-03', 5, 'https://www.gutenberg.org/ebooks/40926', 'en', 61), +(30451, 'Ihmisen velvollisuudet', 'Mazzini, Giuseppe', '2018-09-30', 3, 'https://www.gutenberg.org/ebooks/57991', 'fi', 680), +(30452, 'A Caution to the Directors of the East-India Company\r\nWith Regard to Their Making the Midsummer Dividend of Five Per Cent. Without Due Attention to a Late Act of Parliament, and a By-law of Their Own', 'Anonymous', '2011-08-12', 4, 'https://www.gutenberg.org/ebooks/37048', 'en', 12060), +(30453, 'Chronica de el-rei D. Affonso V (Vol. II)', 'Pina, Rui de', '2007-06-23', 7, 'https://www.gutenberg.org/ebooks/21911', 'pt', 12061), +(30454, 'Bridge; its Principles and Rules of Play\nwith Illustrative Hands and the Club Code of Bridge Laws', 'Elwell, J. B. (Joseph Bowne)', '2011-11-12', 38, 'https://www.gutenberg.org/ebooks/38000', 'en', 10800), +(30455, 'L\'Illustration, No. 3657, 29 Mars 1913', 'Various', '2011-10-29', 11, 'https://www.gutenberg.org/ebooks/37874', 'fr', 150), +(30456, 'Feminism in Greek Literature from Homer to Aristotle', 'Wright, F. A. (Frederick Adam)', '2019-04-04', 45, 'https://www.gutenberg.org/ebooks/59205', 'en', 2293), +(30457, 'The Motor Boys Afloat; or, The Stirring Cruise of the Dartaway', 'Young, Clarence', '2014-01-29', 35, 'https://www.gutenberg.org/ebooks/44788', 'en', 12062), +(30458, 'The Case of the Registered Letter', 'Groner, Auguste', '1999-07-01', 17, 'https://www.gutenberg.org/ebooks/1833', 'en', 61), +(30459, 'The Great Round World and What Is Going On In It, Vol. 1, No. 39, August 5, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-27', 74, 'https://www.gutenberg.org/ebooks/15916', 'en', 1), +(30460, 'The Golden Age in Transylvania', 'Jókai, Mór', '2010-06-06', 30, 'https://www.gutenberg.org/ebooks/32708', 'en', 2490), +(30461, 'Three short works\nThe Dance of Death, the Legend of Saint Julian the Hospitaller, a Simple Soul.', 'Flaubert, Gustave', '2003-12-01', 104, 'https://www.gutenberg.org/ebooks/10458', 'en', 642), +(30462, 'Calvinistic Controversy\r\nEmbracing a Sermon on Predestination and Election and Several Numbers, Formally Published in the Christian Advocate and Journal.', 'Fisk, Wilbur', '2011-12-06', 11, 'https://www.gutenberg.org/ebooks/38232', 'en', 12063); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(30463, 'Ahasvero nell\'Isola del Diavolo: versi\r\npreceduti da uno studio su l\'Ebraismo e la rivoluzione francese', 'Levi, David', '2012-07-24', 69, 'https://www.gutenberg.org/ebooks/40328', 'it', 8), +(30464, 'Salaminin kuninkaat: Murhe-näytelmä viidessä näytöksessä', 'Runeberg, Johan Ludvig', '2015-02-03', 26, 'https://www.gutenberg.org/ebooks/48145', 'fi', 5375), +(30465, 'Glaciers of the Rockies and Selkirks, 2nd. ed.\nWith Notes on Five Great Glaciers of the Canadian National Parks', 'Coleman, A. P. (Arthur Philemon)', '2016-01-21', 4, 'https://www.gutenberg.org/ebooks/50986', 'en', 12064), +(30466, 'Le corricolo', 'Dumas, Alexandre', '2006-07-31', 20, 'https://www.gutenberg.org/ebooks/9262', 'fr', 7008), +(30467, 'The Chief Periods of European History\nSix lectures read in the University of Oxford in Trinity term, 1885', 'Freeman, Edward A. (Edward Augustus)', '2015-01-10', 20, 'https://www.gutenberg.org/ebooks/47931', 'en', 5992), +(30468, 'The Treaty Held with the Indians of the Six Nations at Philadelphia, in July 1742\r\nTo which is Prefix\'d an Account of the first Confederacy of the Six Nations, their present Tributaries, Dependents, and Allies', NULL, '2006-06-20', 11, 'https://www.gutenberg.org/ebooks/18635', 'en', 12065), +(30469, 'The Rat Race', 'Franklin, Jay', '2016-04-24', 53, 'https://www.gutenberg.org/ebooks/51854', 'en', 26), +(30470, 'The Gates of Chance', 'Sutphen, Van Tassel', '2003-02-01', 6, 'https://www.gutenberg.org/ebooks/3758', 'en', 557), +(30471, 'Killing for Sport: Essays by Various Writers', NULL, '2015-05-31', 18, 'https://www.gutenberg.org/ebooks/49097', 'en', 5964), +(30472, 'Kuolleista herännyt: Seikkailukertomus eli etsijän tarina', 'Lassila, Maiju', '2015-05-17', 11, 'https://www.gutenberg.org/ebooks/48979', 'fi', 175), +(30473, 'Heart of Gold', 'MacArthur, Ruth Brown', '2007-11-11', 27, 'https://www.gutenberg.org/ebooks/23448', 'en', 3676), +(30474, 'A Castle in Spain: A Novel', 'De Mille, James', '2010-01-05', 19, 'https://www.gutenberg.org/ebooks/30863', 'en', 1813), +(30475, 'The Jameson Satellite', 'Jones, Neil R.', '2008-10-13', 49, 'https://www.gutenberg.org/ebooks/26906', 'en', 26), +(30476, 'Agatized Rainbows: A Story of the Petrified Forest', 'Brodrick, Harold J.', '2016-01-29', 28, 'https://www.gutenberg.org/ebooks/51068', 'en', 12066), +(30477, 'Ferdinand De Soto, The Discoverer of the Mississippi\nAmerican Pioneers and Patriots', 'Abbott, John S. C. (John Stevens Cabot)', '2009-06-20', 40, 'https://www.gutenberg.org/ebooks/29172', 'en', 8778), +(30478, 'The Anatomy of Melancholy', 'Burton, Robert', '2004-01-01', 632, 'https://www.gutenberg.org/ebooks/10800', 'en', 12067), +(30479, 'Novelleja Tanskan rannikolta ja Kärntin alpeilta', 'Drachmann, Holger', '2019-06-02', 3, 'https://www.gutenberg.org/ebooks/59661', 'fi', 12068), +(30480, 'A Vendetta of the Hills', 'Emerson, Willis George', '2016-06-09', 6, 'https://www.gutenberg.org/ebooks/52289', 'en', 12069), +(30481, 'Diary of Samuel Pepys — Volume 03: February 1659-1660', 'Pepys, Samuel', '2004-11-29', 4, 'https://www.gutenberg.org/ebooks/4119', 'en', 2197), +(30482, 'Kittyn päiväkirja\nKuvauksia hengellisistä liikkeistä Englannissa viime\nvuosisadan keski-ajoilla', 'Charles, Elizabeth Rundle', '2008-01-07', 20, 'https://www.gutenberg.org/ebooks/24209', 'fi', 12070), +(30483, 'Notes and Queries, Vol. IV, Number 100, September 27, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-01-23', 16, 'https://www.gutenberg.org/ebooks/38656', 'en', 105), +(30484, 'Mother Goose\'s Nursery Rhymes\r\nA Collection of Alphabets, Rhymes, Tales, and Jingles', NULL, '2012-05-24', 148, 'https://www.gutenberg.org/ebooks/39784', 'en', 343), +(30485, 'The Age of Fable', 'Bulfinch, Thomas', '2004-01-01', 325, 'https://www.gutenberg.org/ebooks/4925', 'en', 75), +(30486, 'Harper\'s Young People, March 28, 1882\nAn Illustrated Weekly', 'Various', '2018-02-23', 1, 'https://www.gutenberg.org/ebooks/56629', 'en', 479), +(30487, 'Book of Etiquette, Volume I', 'Watson, Lillian Eichler', '2011-04-27', 125, 'https://www.gutenberg.org/ebooks/35975', 'en', 788), +(30488, 'The Knickerbocker, or New-York Monthly Magazine, January 1844\nVolume 23, Number 1', 'Various', '2006-09-26', 11, 'https://www.gutenberg.org/ebooks/19383', 'en', 18), +(30489, 'At Fault', 'Chopin, Kate', '2007-12-10', 88, 'https://www.gutenberg.org/ebooks/23810', 'en', 4013), +(30490, 'The Price of Blood: An Extravaganza of New York Life in 1807', 'Pyle, Howard', '2015-03-18', 9, 'https://www.gutenberg.org/ebooks/48521', 'en', 1660), +(30491, 'A Little Book of Western Verse', 'Field, Eugene', '2006-01-01', 38, 'https://www.gutenberg.org/ebooks/9606', 'en', 8), +(30492, 'Latin for Beginners', 'D\'Ooge, Benjamin L. (Benjamin Leonard)', '2006-04-25', 1014, 'https://www.gutenberg.org/ebooks/18251', 'en', 12071), +(30493, 'The Holy War, Made by King Shaddai Upon Diabolus, for the Regaining of the Metropolis of the World; Or, The Losing and Taking Again of the Town of Mansoul', 'Bunyan, John', '1996-01-01', 191, 'https://www.gutenberg.org/ebooks/395', 'en', 942), +(30494, 'The Boys\' And Girls\' Library\r\nContaining a Variety of Useful and Instructive Reading, Selected from Eminent Writers for Youth', NULL, '2011-02-04', 25, 'https://www.gutenberg.org/ebooks/35149', 'en', 195), +(30495, 'Mies ja nainen: Novelleja', 'Onerva, L.', '2017-11-05', 9, 'https://www.gutenberg.org/ebooks/55890', 'fi', 175), +(30496, 'Bannertail: The Story of a Graysquirrel', 'Seton, Ernest Thompson', '2013-05-28', 37, 'https://www.gutenberg.org/ebooks/42827', 'en', 3264), +(30497, 'The Atlantic Monthly, Volume 14, No. 86, December, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2009-07-27', 10, 'https://www.gutenberg.org/ebooks/29516', 'en', 1227), +(30498, 'La creació d\'Eva i altres contes', 'Carner, Josep', '2005-12-04', 8, 'https://www.gutenberg.org/ebooks/17219', 'ca', 61), +(30499, 'Birds and Nature Vol. 11 No. 3 [March 1902]\nIllustrated by Color Photography', 'Various', '2014-12-07', 22, 'https://www.gutenberg.org/ebooks/47569', 'en', 490), +(30500, 'Monica: A Novel, Volume 3 (of 3)', 'Everett-Green, Evelyn', '2017-06-20', 15, 'https://www.gutenberg.org/ebooks/54942', 'en', 675), +(30501, 'Riding and Driving for Women', 'Beach, Belle', '2013-02-28', 16, 'https://www.gutenberg.org/ebooks/42229', 'en', 2240), +(30502, 'The Automobile Girls at Washington; Or, Checkmating the Plots of Foreign Spies', 'Crane, Laura Dent', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12559', 'en', 12072), +(30503, 'Rabbi Saunderson', 'Maclaren, Ian', '2006-03-28', 10, 'https://www.gutenberg.org/ebooks/18063', 'en', 137), +(30504, 'Hanhiemon satuja', 'Perrault, Charles', '2015-04-15', 9, 'https://www.gutenberg.org/ebooks/48713', 'fi', 1007), +(30505, 'Scientific American Supplement, No. 312, December 24, 1881', 'Various', '2006-02-22', 5, 'https://www.gutenberg.org/ebooks/17817', 'en', 210), +(30506, 'The Message and the Man:\nSome Essentials of Effective Preaching', 'Jackson, J. Dodd (James Dodd)', '2009-12-06', 6, 'https://www.gutenberg.org/ebooks/30609', 'en', 7677), +(30507, 'Time\'s Laughingstocks and Other Verses', 'Hardy, Thomas', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9434', 'en', 54), +(30508, 'Zibeline — Volume 2', 'Massa, Philippe, marquis de', '2003-04-01', 15, 'https://www.gutenberg.org/ebooks/3932', 'en', 560), +(30509, 'Trees of the Northern United States\nTheir Study, Description and Determination', 'Apgar, A. C. (Austin Craig)', '2009-08-18', 18, 'https://www.gutenberg.org/ebooks/29724', 'en', 9935), +(30510, 'Burgundy: The Splendid Duchy. Stories and Sketches in South Burgundy', 'Allen, Percy', '2014-08-26', 17, 'https://www.gutenberg.org/ebooks/46689', 'en', 4068), +(30511, 'The Story of the Siren', 'Forster, E. M. (Edward Morgan)', '2018-12-31', 66, 'https://www.gutenberg.org/ebooks/58581', 'en', 12073), +(30512, 'Ignorant Essays', 'Dowling, Richard', '2016-09-29', 22, 'https://www.gutenberg.org/ebooks/53169', 'en', 20), +(30513, 'A Memory of the Southern Seas\r\n1904', 'Becke, Louis', '2008-03-11', 21, 'https://www.gutenberg.org/ebooks/24807', 'en', 12074), +(30514, 'Jacob Faithful', 'Marryat, Frederick', '2007-05-21', 23, 'https://www.gutenberg.org/ebooks/21549', 'en', 89), +(30515, 'A Handbook of Laboratory Glass-Blowing', 'Bolas, Bernard D.', '2010-06-24', 46, 'https://www.gutenberg.org/ebooks/32962', 'en', 3384), +(30516, 'A Short List of Scientific Books Published by E. & F. N. Spon, Ltd. September 1915', 'E. & F. N. Spon', '2019-05-07', 12, 'https://www.gutenberg.org/ebooks/59453', 'en', 2678), +(30517, 'Chatto & Windus\'s List of Books, May 1883', 'Chatto & Windus (Firm)', '2017-01-13', 7, 'https://www.gutenberg.org/ebooks/53955', 'en', 2663), +(30518, 'Tempting Curry Dishes', 'Murrey, Thomas J. (Thomas Jefferson)', '2012-01-02', 16, 'https://www.gutenberg.org/ebooks/38464', 'en', 12075), +(30519, 'The Girl with the Golden Eyes', 'Balzac, Honoré de', '2004-09-19', 94, 'https://www.gutenberg.org/ebooks/1659', 'en', 607), +(30520, 'La araña negra, t. 2/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 18, 'https://www.gutenberg.org/ebooks/45830', 'es', 98), +(30521, 'Eclectic Magazine of Foreign Literature, Science, and Art, March 1885', 'Various', '2016-08-23', 4, 'https://www.gutenberg.org/ebooks/52887', 'en', 380), +(30522, 'Die Stufe\nFragment einer Liebe', 'Mann, Franziska', '2007-04-17', 13, 'https://www.gutenberg.org/ebooks/21115', 'de', 48), +(30523, 'The Romance of the Milky Way, and Other Studies & Stories', 'Hearn, Lafcadio', '2005-03-10', 61, 'https://www.gutenberg.org/ebooks/15320', 'en', 1738), +(30524, 'Fern Leaves from Fanny\'s Port-folio.\nSecond Series', 'Fern, Fanny', '2014-04-21', 20, 'https://www.gutenberg.org/ebooks/45450', 'en', 620), +(30525, 'Strong as Death', 'Maupassant, Guy de', '2006-04-13', 27, 'https://www.gutenberg.org/ebooks/4777', 'en', 192), +(30526, 'Animismus, Magie und Allmacht der Gedanken\r\nÜber einige Übereinstimmungen im Seelenleben der Wilden und der Neurotiker III', 'Freud, Sigmund', '2011-08-14', 25, 'https://www.gutenberg.org/ebooks/37070', 'de', 12076), +(30527, 'Problems of Genetics', 'Bateson, William', '2014-01-04', 25, 'https://www.gutenberg.org/ebooks/44582', 'en', 3546), +(30528, 'Common Trees of Pennsylvania', 'Aughenbaugh, J. E.', '2016-11-16', 9, 'https://www.gutenberg.org/ebooks/53535', 'en', 12077), +(30529, 'The Works of Robert G. Ingersoll, Vol. 04 (of 12)\r\nDresden Edition—Lectures', 'Ingersoll, Robert Green', '2012-02-09', 33, 'https://www.gutenberg.org/ebooks/38804', 'en', 1191), +(30530, 'A Master Of Craft', 'Jacobs, W. W. (William Wymark)', '2007-06-25', 19, 'https://www.gutenberg.org/ebooks/21929', 'en', 1902), +(30531, 'What Happened to Inger Johanne, as Told by Herself', 'Zwilgmeyer, Dikken', '2010-05-23', 12, 'https://www.gutenberg.org/ebooks/32502', 'en', 11727), +(30532, 'Shenstonen rouva', 'Barclay, Florence L. (Florence Louisa)', '2019-06-30', 15, 'https://www.gutenberg.org/ebooks/59833', 'fi', 1585), +(30533, 'Human Genome Project, Build 34, Chromosome Number 06', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11780', 'en', 1385), +(30534, 'Cabezas: Pensadores y Artistas, Políticos\r\nObras Completas Vol. XXII', 'Darío, Rubén', '2017-11-25', 15, 'https://www.gutenberg.org/ebooks/56047', 'es', 12078), +(30535, 'A Son of Mars, volume 1', 'Griffiths, Arthur', '2018-05-22', 13, 'https://www.gutenberg.org/ebooks/57195', 'en', 2224), +(30536, 'Spanish is the Loving Tongue', 'McGuinn, Roger', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/10652', 'en', 3717), +(30537, 'De Pleegzoon', 'Lennep, J. van (Jacob)', '2008-01-31', 8, 'https://www.gutenberg.org/ebooks/24467', 'nl', 98), +(30538, 'Fetichism in West Africa\r\nForty Years\' Observations of Native Customs and Superstitions', 'Nassau, Robert Hamill', '2011-11-17', 17, 'https://www.gutenberg.org/ebooks/38038', 'en', 10806), +(30539, 'The Colour of Life', 'Meynell, Alice', '1998-02-01', 15, 'https://www.gutenberg.org/ebooks/1205', 'en', 472), +(30540, 'Glimpses into the Abyss', 'Higgs, Mary', '2012-07-01', 27, 'https://www.gutenberg.org/ebooks/40122', 'en', 12079), +(30541, 'The Skull', 'Dick, Philip K.', '2009-10-14', 304, 'https://www.gutenberg.org/ebooks/30255', 'en', 2229), +(30542, 'Apu Ollantay: A Drama of the Time of the Incas', 'Markham, Clements R. (Clements Robert), Sir', '2005-10-01', 15, 'https://www.gutenberg.org/ebooks/9068', 'en', 12080), +(30543, 'Under Western Eyes', 'Conrad, Joseph', '2006-01-09', 155, 'https://www.gutenberg.org/ebooks/2480', 'en', 12081), +(30544, 'The Shame of the Cities', 'Steffens, Lincoln', '2017-05-12', 39, 'https://www.gutenberg.org/ebooks/54710', 'en', 12082), +(30545, 'La lutte pour la santé\r\nEssai de pathologie générale', 'Burlureaux, Charles', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12105', 'fr', 12083), +(30546, 'Frenzied Finance, Vol. 1: The Crime of Amalgamated', 'Lawson, Thomas William', '2008-08-16', 20, 'https://www.gutenberg.org/ebooks/26330', 'en', 12084), +(30547, 'Betty Wales, Freshman', 'Dunton, Edith K. (Edith Kellogg)', '2010-02-24', 32, 'https://www.gutenberg.org/ebooks/31387', 'en', 5010), +(30548, 'Memoirs of Napoleon Bonaparte — Volume 02', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 46, 'https://www.gutenberg.org/ebooks/3552', 'en', 1386), +(30549, 'La fabrique de mariages, Vol. 3', 'Féval, Paul', '2013-05-09', 10, 'https://www.gutenberg.org/ebooks/42675', 'fr', 298), +(30550, 'History of the English People, Volume V\r\nPuritan England, 1603-1660', 'Green, John Richard', '2007-11-27', 25, 'https://www.gutenberg.org/ebooks/23642', 'en', 1953), +(30551, 'The Trail Horde', 'Seltzer, Charles Alden', '2006-01-07', 37, 'https://www.gutenberg.org/ebooks/17477', 'en', 315), +(30552, 'Frank Roscoe\'s Secret; Or, the Darewell Chums in the Woods', 'Chapman, Allen', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9854', 'en', 1669), +(30553, 'Nancy Dale, Army Nurse', 'Radford, Ruby Lorraine', '2014-11-07', 31, 'https://www.gutenberg.org/ebooks/47307', 'en', 12085), +(30554, 'Cappy Ricks Retires: But That Doesn\'t Keep Him from Coming Back Stronger Than Ever', 'Kyne, Peter B. (Peter Bernard)', '2004-07-01', 29, 'https://www.gutenberg.org/ebooks/6020', 'en', 12086), +(30555, 'The Brighton Boys with the Submarine Fleet', 'Driscoll, James R.', '2004-07-19', 9, 'https://www.gutenberg.org/ebooks/12939', 'en', 4416), +(30556, 'Her Infinite Variety', 'Whitlock, Brand', '2011-03-30', 7, 'https://www.gutenberg.org/ebooks/35727', 'en', 705), +(30557, 'The Jesuit Relations and Allied Documents, Vol. 6: Quebec, 1633-1634', NULL, '2016-02-21', 26, 'https://www.gutenberg.org/ebooks/51262', 'en', 992), +(30558, 'From the Earth to the Moon', 'Verne, Jules', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/8986', 'en', 8406), +(30559, 'The accomplisht cook\nor, The art & mystery of cookery', 'May, Robert', '2007-09-28', 575, 'https://www.gutenberg.org/ebooks/22790', 'en', 6316), +(30560, 'Pinafore Palace', NULL, '2009-07-11', 19, 'https://www.gutenberg.org/ebooks/29378', 'en', 343), +(30561, 'Akilles: Kuvaus', 'Järvi, K. A. (Kaarlo August)', '2015-01-07', 4, 'https://www.gutenberg.org/ebooks/47909', 'fi', 175), +(30562, 'La Muerte Del Cisne', 'Reyles, Carlos', '2017-04-09', 19, 'https://www.gutenberg.org/ebooks/54522', 'es', 20), +(30563, 'Alive in the Jungle: A Story for the Young', 'Stredder, Eleanor', '2013-08-29', 6, 'https://www.gutenberg.org/ebooks/43595', 'en', 1817), +(30564, 'Œuvres complètes de lord Byron, Tome 9\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-09-23', 14, 'https://www.gutenberg.org/ebooks/30067', 'fr', 3504), +(30565, 'Poems by Walt Whitman', 'Whitman, Walt', '2005-06-01', 215, 'https://www.gutenberg.org/ebooks/8388', 'en', 350), +(30566, 'Sybil, Or, The Two Nations', 'Disraeli, Benjamin, Earl of Beaconsfield', '2003-02-01', 142, 'https://www.gutenberg.org/ebooks/3760', 'en', 1238), +(30567, 'The Heart of the White Mountains, Their Legend and Scenery\nTourist\'s Edition', 'Drake, Samuel Adams', '2013-03-31', 15, 'https://www.gutenberg.org/ebooks/42447', 'en', 12087), +(30568, 'Weak on Square Roots', 'Burton, Russell', '2009-09-13', 43, 'https://www.gutenberg.org/ebooks/29976', 'en', 26), +(30569, 'Dickens in Camp', 'Harte, Bret', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12337', 'en', 12088), +(30570, 'Reisjes in Zuid-Vlaanderen', 'Sevens, Theodoor', '2008-07-21', 9, 'https://www.gutenberg.org/ebooks/26102', 'nl', 12089), +(30571, 'The American Jew as Patriot, Soldier and Citizen', 'Wolf, Simon', '2014-10-16', 16, 'https://www.gutenberg.org/ebooks/47135', 'en', 12090), +(30572, 'The Translation of a Savage, Volume 2', 'Parker, Gilbert', '2004-08-01', 9, 'https://www.gutenberg.org/ebooks/6212', 'en', 705), +(30573, 'A History of the Four Georges, Volume II', 'McCarthy, Justin', '2007-11-22', 6, 'https://www.gutenberg.org/ebooks/23470', 'en', 4000), +(30574, 'True Stories of the Great War, Volume 2 (of 6)\r\nTales of Adventure--Heroic Deeds--Exploits Told by the Soldiers, Officers, Nurses, Diplomats, Eye Witnesses', NULL, '2015-05-12', 26, 'https://www.gutenberg.org/ebooks/48941', 'en', 449), +(30575, 'Holiday Tales: Christmas in the Adirondacks', 'Murray, W. H. H. (William Henry Harrison)', '2009-02-16', 30, 'https://www.gutenberg.org/ebooks/28098', 'en', 12091), +(30576, 'Arbor Day Leaves\r\nA Complete Programme For Arbor Day Observance, Including Readings, Recitations, Music, and General Information', 'Egleston, Nathaniel Hillyer', '2006-01-31', 15, 'https://www.gutenberg.org/ebooks/17645', 'en', 4092), +(30577, 'Setma, das türkische Mädchen: Eine Erzählung für Christenkinder', 'Barth, Christian Gottlob', '2015-10-11', 24, 'https://www.gutenberg.org/ebooks/50182', 'de', 10784), +(30578, 'Man\'s Best Friend', 'Smith, Evelyn E.', '2016-01-27', 23, 'https://www.gutenberg.org/ebooks/51050', 'en', 26), +(30579, 'Luther and the Reformation:\nThe Life-Springs of Our Liberties', 'Seiss, Joseph Augustus', '2005-10-04', 14, 'https://www.gutenberg.org/ebooks/16797', 'en', 12092), +(30580, 'To Alaska for Gold; Or, The Fortune Hunters of the Yukon', 'Stratemeyer, Edward', '2010-04-14', 30, 'https://www.gutenberg.org/ebooks/31989', 'en', 12093), +(30581, 'The Mentor: Great American Inventors, Vol. 1, Num. 29, Serial No. 29', 'Bruce, H. Addington (Henry Addington)', '2015-09-06', 21, 'https://www.gutenberg.org/ebooks/49893', 'en', 12094), +(30582, 'Arthur Machen: A Novelist of Ecstasy and Sin\r\nWith Two Uncollected Poems by Arthur Machen', 'Starrett, Vincent', '2011-03-07', 31, 'https://www.gutenberg.org/ebooks/35515', 'en', 12095), +(30583, 'Pioneer Life among the Loyalists in Upper Canada', 'Herrington, Walter Stevens', '2014-05-16', 10, 'https://www.gutenberg.org/ebooks/45662', 'en', 2697), +(30584, 'American Papyrus: 25 Poems', 'Sills, Steven David Justin', '2003-10-01', 7, 'https://www.gutenberg.org/ebooks/4545', 'en', 8), +(30585, 'Erskine Dale—Pioneer', 'Fox, John, Jr.', '2011-06-12', 15, 'https://www.gutenberg.org/ebooks/36390', 'en', 1293), +(30586, 'The Works of Guy de Maupassant, Vol. 1\r\nBoule de Suif and Other Stories', 'Maupassant, Guy de', '2007-05-05', 112, 'https://www.gutenberg.org/ebooks/21327', 'en', 1112), +(30587, 'Œuvres complètes - Volume 1\r\nPoèmes Saturniens, Fêtes Galantes, Bonne chanson, Romances sans paroles, Sagesse, Jadis et naguère', 'Verlaine, Paul', '2005-02-20', 67, 'https://www.gutenberg.org/ebooks/15112', 'fr', 8), +(30588, 'St. Leon: A Tale of the Sixteenth Century', 'Godwin, William', '2016-12-10', 40, 'https://www.gutenberg.org/ebooks/53707', 'en', 12096), +(30589, 'Homo Sum — Volume 04', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5497', 'en', 2962), +(30590, 'Stories and Pictures', 'Peretz, Isaac Loeb', '2011-08-28', 75, 'https://www.gutenberg.org/ebooks/37242', 'en', 2120), +(30591, 'On the Edge of the Arctic; Or, An Aeroplane in Snowland', 'Sayler, H. L. (Harry Lincoln)', '2008-06-14', 24, 'https://www.gutenberg.org/ebooks/25787', 'en', 6791), +(30592, 'I\'r Aifft Ac Yn Ol', 'Jones, D. Rhagfyr', '2017-12-31', 7, 'https://www.gutenberg.org/ebooks/56275', 'cy', 2970), +(30593, 'The Heart of a Woman', 'Orczy, Emmuska Orczy, Baroness', '2010-06-07', 25, 'https://www.gutenberg.org/ebooks/32730', 'en', 1335), +(30594, 'The Life of John Bunyan', 'Venables, Edmund', '1997-09-01', 22, 'https://www.gutenberg.org/ebooks/1037', 'en', 2501), +(30595, 'Et forfærdeligt Hus-Kors\r\nEller en sandfærdig Beretning om en gruelig Fristelse, som tvende fromme Ægte-Folk i Kiøge for nogen rum Tid siden har været plagede med', 'Brunsmand, Johan', '2012-07-23', 6, 'https://www.gutenberg.org/ebooks/40310', 'da', 12097), +(30596, 'When Day is Done', 'Guest, Edgar A. (Edgar Albert)', '2003-12-01', 25, 'https://www.gutenberg.org/ebooks/10460', 'en', 178), +(30597, 'Tinker\'s Dam', 'Tinker, Joseph', '2008-02-20', 27, 'https://www.gutenberg.org/ebooks/24655', 'en', 12098), +(30598, 'The Machine', 'Sinclair, Upton', '2002-07-01', 37, 'https://www.gutenberg.org/ebooks/3304', 'en', 427), +(30599, 'La web, una enciclopedia multilingüe', 'Lebert, Marie', '2013-02-05', 7, 'https://www.gutenberg.org/ebooks/42023', 'es', 2069), +(30600, 'The Legends of King Arthur and His Knights', 'Malory, Thomas, Sir', '2004-06-28', 397, 'https://www.gutenberg.org/ebooks/12753', 'en', 5139), +(30601, 'The American Missionary — Volume 34, No. 1, January, 1880', 'Various', '2017-07-12', 1, 'https://www.gutenberg.org/ebooks/55094', 'en', 562), +(30602, 'La géométrie en vers techniques', 'Roys, Lyon Des', '2008-09-09', 14, 'https://www.gutenberg.org/ebooks/26566', 'fr', 12099), +(30603, 'A Few Suggestions to McGraw-Hill Authors.\r\nDetails of manuscript preparation, typograpy, proof-reading and other matters in the production of manuscripts and books.', 'McGraw-Hill Publishing Company', '2017-02-10', 17, 'https://www.gutenberg.org/ebooks/54146', 'en', 5799), +(30604, 'Ihmiskohtaloja', 'Järnefelt, Arvid', '2004-10-10', 6, 'https://www.gutenberg.org/ebooks/13681', 'fi', 61), +(30605, 'Pascal\'s Pensées', 'Pascal, Blaise', '2006-04-27', 1147, 'https://www.gutenberg.org/ebooks/18269', 'en', 4608), +(30606, 'Variétés Historiques et Littéraires (07/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2015-03-18', 8, 'https://www.gutenberg.org/ebooks/48519', 'fr', 642), +(30607, 'Le grand voyage du pays des Hurons', 'Sagard, Gabriel', '2007-12-12', 23, 'https://www.gutenberg.org/ebooks/23828', 'fr', 278), +(30608, 'Hydesville\r\nThe Story of the Rochester Knockings, Which Proclaimed the Advent of Modern Spiritualism', 'Todd, Thomas Olman', '2009-11-04', 11, 'https://www.gutenberg.org/ebooks/30403', 'en', 504), +(30609, 'An Elephant for the Prinkip', 'Stecher, L. J., Jr.', '2016-03-13', 26, 'https://www.gutenberg.org/ebooks/51434', 'en', 179), +(30610, 'The Trojan Women of Euripides', 'Euripides', '2011-02-04', 68, 'https://www.gutenberg.org/ebooks/35171', 'en', 12100), +(30611, 'Our Little Boer Cousin', 'Ennis, Luna May', '2014-08-03', 18, 'https://www.gutenberg.org/ebooks/46483', 'en', 12101), +(30612, 'Tuhkapöperö: Kuvaus 4:ssä Kohtauksessa', 'Lagervall, Jacob Fredrik', '2014-12-06', 10, 'https://www.gutenberg.org/ebooks/47551', 'fi', 433), +(30613, 'Rosy', 'Molesworth, Mrs.', '2004-10-01', 8, 'https://www.gutenberg.org/ebooks/6676', 'en', 12102), +(30614, '\"A Soldier Of The Empire\"', 'Page, Thomas Nelson', '2007-10-12', 19, 'https://www.gutenberg.org/ebooks/23014', 'en', 1426), +(30615, 'History of the Plague in London', 'Defoe, Daniel', '2005-12-04', 82, 'https://www.gutenberg.org/ebooks/17221', 'en', 12103), +(30616, 'Glue, Gelatine, Animal Charcoal, Phosphorous, Cements, Pastes and Mucilages', 'Dawidowsky, F. (Ferdinand)', '2016-10-25', 35, 'https://www.gutenberg.org/ebooks/53363', 'en', 4311), +(30617, 'Sarrasine', 'Balzac, Honoré de', '2007-02-03', 9, 'https://www.gutenberg.org/ebooks/20691', 'en', 58), +(30618, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 350, January 3, 1829', 'Various', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/10838', 'en', 133), +(30619, '續惡魔', 'Tanizaki, Jun\'ichiro', '2011-10-04', 13, 'https://www.gutenberg.org/ebooks/37626', 'ja', 61), +(30620, 'The Call of the South', 'Durham, Robert Lee', '2014-03-24', 18, 'https://www.gutenberg.org/ebooks/45206', 'en', 12104), +(30621, 'Diary of Samuel Pepys — Volume 05: May 1660', 'Pepys, Samuel', '2004-11-29', 23, 'https://www.gutenberg.org/ebooks/4121', 'en', 1231), +(30622, 'Jeff Benson, or the Young Coastguardsman', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 14, 'https://www.gutenberg.org/ebooks/21743', 'en', 12105), +(30623, 'A System of Instruction in the Practical Use of the Blowpipe\r\nBeing A Graduated Course Of Analysis For The Use Of Students And All Those Engaged In The Examination Of Metallic Combinations', 'Anonymous', '2005-04-07', 16, 'https://www.gutenberg.org/ebooks/15576', 'en', 10005), +(30624, 'Die Säge: Ein Rückblick auf vier Jahrtausende', 'Feldhaus, Franz M. (Franz Maria)', '2019-06-02', 19, 'https://www.gutenberg.org/ebooks/59659', 'de', 12106), +(30625, 'From Bull Run to Appomattox: A Boy\'s View', 'Hopkins, Luther W.', '2010-07-29', 13, 'https://www.gutenberg.org/ebooks/33286', 'en', 83), +(30626, 'The Alkahest', 'Balzac, Honoré de', '2004-06-01', 39, 'https://www.gutenberg.org/ebooks/1453', 'en', 58), +(30627, 'Brooks\'s Readers, Third Year', 'Brooks, Stratton D. (Stratton Duluth)', '2012-09-16', 16, 'https://www.gutenberg.org/ebooks/40774', 'en', 1019), +(30628, 'The Warriors', 'Lindsay, Anna Robertson Brown', '2003-11-01', 24, 'https://www.gutenberg.org/ebooks/10004', 'en', 2566), +(30629, '韓湘子全傳', 'Yang, Erzeng, active 17th century', '2008-01-11', 9, 'https://www.gutenberg.org/ebooks/24231', 'zh', 12107), +(30630, 'The Romance of the Romanoffs', 'McCabe, Joseph', '2018-02-20', 15, 'https://www.gutenberg.org/ebooks/56611', 'en', 12108), +(30631, 'The Boy Scouts in the Rockies; Or, The Secret of the Hidden Silver Mine', 'Carter, Herbert, active 1909-1917', '2010-05-12', 8, 'https://www.gutenberg.org/ebooks/32354', 'en', 12109), +(30632, 'The World Turned Upside Down', 'Clayton, Ellen C. (Ellen Creathorne)', '2011-09-13', 9, 'https://www.gutenberg.org/ebooks/37414', 'en', 3059), +(30633, 'The Wheel of Life', 'Glasgow, Ellen Anderson Gholson', '2005-01-15', 34, 'https://www.gutenberg.org/ebooks/14696', 'en', 914), +(30634, 'Aesop Dress\'d; Or, A Collection of Fables Writ in Familiar Verse', 'Mandeville, Bernard', '2010-10-29', 27, 'https://www.gutenberg.org/ebooks/33888', 'en', 12110), +(30635, 'In the Firing Line: Stories of the War by Land and Sea', 'Adcock, Arthur St. John', '2016-09-27', 14, 'https://www.gutenberg.org/ebooks/53151', 'en', 335), +(30636, 'The Pacha of Many Tales', 'Marryat, Frederick', '2007-05-22', 6, 'https://www.gutenberg.org/ebooks/21571', 'en', 323), +(30637, 'Gesammelte Schulhumoresken', 'Eckstein, Ernst', '2016-05-16', 7, 'https://www.gutenberg.org/ebooks/52083', 'de', 1212), +(30638, 'The Gay Lord Quex: A Comedy in Four Acts', 'Pinero, Arthur Wing', '2005-05-02', 19, 'https://www.gutenberg.org/ebooks/15744', 'en', 1281), +(30639, 'Fifty Notable Years\r\nViews of the Ministry of Christian Universalism During the Last Half-Century; with Biographical Sketches', 'Adams, John G. (John Greenleaf)', '2014-02-28', 13, 'https://www.gutenberg.org/ebooks/45034', 'en', 12111), +(30640, 'The Odd Women', 'Gissing, George', '2003-08-01', 72, 'https://www.gutenberg.org/ebooks/4313', 'en', 7171), +(30641, 'International Correspondence School - Spanish Lesson #9', NULL, '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10236', 'es', 12112), +(30642, 'Confessions of a Book-Lover', 'Egan, Maurice Francis', '2007-12-24', 17, 'https://www.gutenberg.org/ebooks/24003', 'en', 9561), +(30643, 'The Adventures of Sherlock Holmes', 'Doyle, Arthur Conan', '1999-03-01', 15006, 'https://www.gutenberg.org/ebooks/1661', 'en', 3511), +(30644, 'A Fortune Hunter; Or, The Old Stone Corral: A Tale of the Santa Fe Trail', 'Carteret, John Dunloe', '2012-08-20', 12, 'https://www.gutenberg.org/ebooks/40546', 'en', 8008), +(30645, 'Aikakausien vaihteessa: Historiallisia kertomuksia', 'Wilkuna, Kyösti', '2012-11-26', 39, 'https://www.gutenberg.org/ebooks/41494', 'fi', 456), +(30646, 'Thomas Andrews, Shipbuilder', 'Bullock, Shan F.', '2010-04-28', 37, 'https://www.gutenberg.org/ebooks/32166', 'en', 12113), +(30647, 'Die Juden Im Weltkriege', 'Theilhaber, Felix A. (Felix Aaron)', '2014-05-28', 19, 'https://www.gutenberg.org/ebooks/45808', 'de', 12114), +(30648, 'Pleiades Club Year Book 1910', 'Pleiades Club', '2018-01-24', 6, 'https://www.gutenberg.org/ebooks/56423', 'en', 12115), +(30649, 'A Visit to the Holy Land, Egypt, and Italy', 'Pfeiffer, Ida', '2004-06-01', 31, 'https://www.gutenberg.org/ebooks/12561', 'en', 2204), +(30650, 'A virtude laureada\nDrama Recitado no Theatro do Salitre', 'Bocage, Manuel Maria Barbosa du', '2006-09-05', 24, 'https://www.gutenberg.org/ebooks/19189', 'pt', 3231), +(30651, 'One Thousand Secrets of Wise and Rich Men Revealed', 'Bogardus, C. A.', '2008-10-03', 49, 'https://www.gutenberg.org/ebooks/26754', 'en', 3358), +(30652, 'The Complete Project Gutenberg Writings of Charles Dudley Warner', 'Warner, Charles Dudley', '2004-10-11', 31, 'https://www.gutenberg.org/ebooks/3136', 'en', 19), +(30653, 'Histoire Sainte; ou, Histoire des Israélites\r\nDepuis La Création, Jusqu\'a La Dernière Destruction De Jérusalem', 'Loeb, Henri', '2013-02-26', 61, 'https://www.gutenberg.org/ebooks/42211', 'fr', 851), +(30654, 'Die Colonie: Brasilianisches Lebensbild. Erster Band.', 'Gerstäcker, Friedrich', '2009-12-08', 15, 'https://www.gutenberg.org/ebooks/30631', 'de', 138), +(30655, 'Graham\'s Magazine, Vol. XL, No. 3, March 1852', 'Various', '2019-08-20', 61, 'https://www.gutenberg.org/ebooks/60141', 'en', 380), +(30656, '狄公案', 'Anonymous', '2009-01-02', 29, 'https://www.gutenberg.org/ebooks/27686', 'zh', 12116), +(30657, 'Red Spider, Volume 1 (of 2)', 'Baring-Gould, S. (Sabine)', '2017-03-16', 15, 'https://www.gutenberg.org/ebooks/54374', 'en', 137), +(30658, 'The Caxtons: A Family Picture — Volume 11', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/7596', 'en', 376), +(30659, 'L\'Illustration, No. 3251, 17 Juin 1905', 'Various', '2011-02-21', 9, 'https://www.gutenberg.org/ebooks/35343', 'fr', 150), +(30660, 'La Marquise de Boufflers et son fils, le chevalier de Boufflers', 'Maugras, Gaston', '2016-03-30', 12, 'https://www.gutenberg.org/ebooks/51606', 'fr', 12117), +(30661, 'Chambers\'s Edinburgh Journal, No. 455\nVolume 18, New Series, September 18, 1852', 'Various', '2007-10-28', 4, 'https://www.gutenberg.org/ebooks/23226', 'en', 18), +(30662, 'Fortunata y Jacinta: dos historias de casadas', 'Pérez Galdós, Benito', '2005-11-05', 174, 'https://www.gutenberg.org/ebooks/17013', 'es', 434), +(30663, 'The Cornish Coast (South), and the Isles of Scilly', 'Harper, Charles G. (Charles George)', '2014-12-23', 31, 'https://www.gutenberg.org/ebooks/47763', 'en', 2082), +(30664, 'The Boys of Bellwood School; Or, Frank Jordan\'s Triumph', 'Webster, Frank V.', '2004-09-01', 27, 'https://www.gutenberg.org/ebooks/6444', 'en', 1877), +(30665, 'Quanto basta a respeito do dia 25 de abril de 1828', 'Costa, Manuel Cipriano da', '2010-11-12', 21, 'https://www.gutenberg.org/ebooks/34291', 'pt', 12118), +(30666, 'The Poems and Fragments of Catullus\r\nTranslated in the Metres of the Original', 'Catullus, Gaius Valerius', '2006-07-19', 75, 'https://www.gutenberg.org/ebooks/18867', 'en', 12119), +(30667, 'Scientific American Supplement, No. 401, September 8, 1883', 'Various', '2005-08-01', 10, 'https://www.gutenberg.org/ebooks/8718', 'en', 210), +(30668, 'James Gilmour of Mongolia: His diaries, letters, and reports', 'Gilmour, James', '2010-03-06', 14, 'https://www.gutenberg.org/ebooks/31525', 'en', 12120), +(30669, 'The Chautauquan, Vol. 05, March 1885', 'Chautauqua Institution', '2017-07-06', 13, 'https://www.gutenberg.org/ebooks/55060', 'en', 1453), +(30670, 'The Yosemite', 'Muir, John', '2008-09-01', 26, 'https://www.gutenberg.org/ebooks/26592', 'en', 3780), +(30671, 'Punch, or the London Charivari, Vol. 147, September 16, 1914', 'Various', '2008-12-07', 17, 'https://www.gutenberg.org/ebooks/27440', 'en', 134), +(30672, 'Good Stories for Great Holidays\r\nArranged for Story-Telling and Reading Aloud and for the Children\'s Own Reading', 'Olcott, Frances Jenkins', '1995-11-01', 33, 'https://www.gutenberg.org/ebooks/359', 'en', 179), +(30673, 'Goody Two-Shoes\r\nA Facsimile Reproduction of the Edition of 1766', 'Anonymous', '2004-10-08', 99, 'https://www.gutenberg.org/ebooks/13675', 'en', 751), +(30674, 'De vogel', 'Michelet, Jules', '2013-07-06', 21, 'https://www.gutenberg.org/ebooks/43105', 'nl', 318), +(30675, 'Human Genome Project, rough draft, Chromosome Number 22', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2222', 'en', 2318), +(30676, 'The Ascent of the Soul', 'Bradford, Amory H. (Amory Howe)', '2005-07-16', 10, 'https://www.gutenberg.org/ebooks/16307', 'en', 12121), +(30677, 'Giants on the Earth', 'Meek, S. P. (Sterner St. Paul)', '2007-07-24', 59, 'https://www.gutenberg.org/ebooks/22132', 'en', 26), +(30678, 'The Buddha\'s Path of Virtue: A Translation of the Dhammapada', NULL, '2011-02-06', 105, 'https://www.gutenberg.org/ebooks/35185', 'en', 12122), +(30679, 'Godolphin, Volume 1.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7750', 'en', 45), +(30680, 'Boy Scouts on the Open Plains; Or, The Round-Up Not Ordered', 'Ralphson, G. Harvey (George Harvey)', '2014-08-01', 16, 'https://www.gutenberg.org/ebooks/46477', 'en', 2994), +(30681, 'When \'Bear Cat\' Went Dry', 'Buck, Charles Neville', '2010-10-11', 18, 'https://www.gutenberg.org/ebooks/34057', 'en', 4872), +(30682, 'Nets to Catch the Wind', 'Wylie, Elinor', '2004-10-01', 33, 'https://www.gutenberg.org/ebooks/6682', 'en', 8), +(30683, 'Comedias: El remedio en la desdicha; El mejor alcalde, el rey', 'Vega, Lope de', '2009-03-25', 41, 'https://www.gutenberg.org/ebooks/28408', 'es', 2729), +(30684, 'The Scandinavian Element in the United States\nUniversity of Illinois Studies in the Social Sciences, Vol. 111, No. 3, September, 1914', 'Babcock, Kendric Charles', '2013-10-12', 6, 'https://www.gutenberg.org/ebooks/43939', 'en', 12123), +(30685, 'Mr. Wayt\'s Wife\'s Sister', 'Harland, Marion', '2015-11-20', 11, 'https://www.gutenberg.org/ebooks/50512', 'en', 50), +(30686, 'Näin puhui Zarathustra: Kirja kaikille eikä kenellekään', 'Nietzsche, Friedrich Wilhelm', '2016-10-29', 59, 'https://www.gutenberg.org/ebooks/53397', 'fi', 7192), +(30687, 'Punch, or the London Charivari, Volume 152, February 7, 1917', 'Various', '2004-12-24', 9, 'https://www.gutenberg.org/ebooks/14450', 'en', 134), +(30688, 'De Nederlandsche Nationale Kleederdrachten', 'Molkenboer, Theodoor', '2007-02-25', 20, 'https://www.gutenberg.org/ebooks/20665', 'nl', 12124), +(30689, 'The Poisoned Pen', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/5007', 'en', 9747), +(30690, 'On the State of Lunacy and the Legal Provision for the Insane\r\nWith Observations on the Construction and Organization of Asylums', 'Arlidge, J. T. (John Thomas)', '2013-12-01', 16, 'https://www.gutenberg.org/ebooks/44320', 'en', 12125), +(30691, 'A New Medley of Memories', 'Hunter Blair, David Oswald, Sir', '2011-07-11', 4, 'https://www.gutenberg.org/ebooks/36700', 'en', 12126), +(30692, 'Chartvlarivm Ecclesiae Sancti Petri de Bvrgo Valentiae Ordinis Sancti Avgvstini', 'Chevalier, Ulysse', '2005-04-08', 8, 'https://www.gutenberg.org/ebooks/15582', 'la', 12127), +(30693, 'Where Science and Religion Meet', 'Palmer, William Scott', '2016-06-06', 9, 'https://www.gutenberg.org/ebooks/52245', 'en', 2713), +(30694, 'Green Spring Farm, Fairfax County, Virginia', 'Netherton, Nan', '2010-07-27', 26, 'https://www.gutenberg.org/ebooks/33272', 'en', 12128), +(30695, 'Our Legal Heritage: King AEthelbert - King George III, 600 A.D. - 1776', 'Reilly, S. A.', '2012-09-16', 10, 'https://www.gutenberg.org/ebooks/40780', 'en', 6471), +(30696, 'A Dead Reckoning', 'Speight, T. W. (Thomas Wilkinson)', '2018-08-21', 12, 'https://www.gutenberg.org/ebooks/57737', 'en', 137), +(30697, 'La Argentina\nLa conquista del Rio de La Plata. Poema histórico', 'Barco Centenera, Martín del', '2008-05-03', 54, 'https://www.gutenberg.org/ebooks/25317', 'es', 12129), +(30698, 'Choice Specimens of American Literature, and Literary Reader\nBeing Selections from the Chief American Writers', 'Martin, Benj. N. (Benjamin Nicholas)', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11122', 'en', 2645), +(30699, 'The Wages of Virtue', 'Wren, Percival Christopher', '2012-12-17', 40, 'https://www.gutenberg.org/ebooks/41652', 'en', 11195), +(30700, 'Four Winds Farm', 'Molesworth, Mrs.', '2012-05-21', 13, 'https://www.gutenberg.org/ebooks/39748', 'en', 2203), +(30701, 'The Confessions of Harry Lorrequer — Volume 2', 'Lever, Charles James', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/5235', 'en', 61), +(30702, 'Argentina, Legend and History', 'Sarmiento, Domingo Faustino', '2013-11-05', 80, 'https://www.gutenberg.org/ebooks/44112', 'en', 188), +(30703, 'Around the Tea-Table', 'Talmage, T. De Witt (Thomas De Witt)', '2005-01-11', 34, 'https://www.gutenberg.org/ebooks/14662', 'en', 658), +(30704, 'La Defaite des Sauvages Armouchiquois par le Sagamos Membertou et ses alliez Sauvages, en la Nouvelle France, au mois de Juillet dernier, 1607', 'Lescarbot, Marc', '2007-01-27', 4, 'https://www.gutenberg.org/ebooks/20457', 'fr', 12130), +(30705, 'The Secret Garden', 'Burnett, Frances Hodgson', '2007-05-25', 69, 'https://www.gutenberg.org/ebooks/21585', 'en', 7098), +(30706, 'Corinne; or, Italy', 'Staël, Madame de (Anne-Louise-Germaine)', '2016-05-16', 76, 'https://www.gutenberg.org/ebooks/52077', 'en', 12131), +(30707, 'Miss Mapp', 'Benson, E. F. (Edward Frederic)', '2008-06-28', 74, 'https://www.gutenberg.org/ebooks/25919', 'en', 3084), +(30708, 'The Orange Fairy Book', NULL, '2011-06-27', 73, 'https://www.gutenberg.org/ebooks/36532', 'en', 1007), +(30709, 'El tratado de la pintura', 'Leonardo, da Vinci', '2018-07-14', 80, 'https://www.gutenberg.org/ebooks/57505', 'es', 12132), +(30710, 'The Man Who Was Thursday: A Nightmare', 'Chesterton, G. K. (Gilbert Keith)', '1999-04-01', 778, 'https://www.gutenberg.org/ebooks/1695', 'en', 4187), +(30711, 'Bye-Ways', 'Hichens, Robert', '2010-07-01', 22, 'https://www.gutenberg.org/ebooks/33040', 'en', 61), +(30712, 'Kotoisten rantojen ikuinen kohina', 'Kianto, Ilmari', '2017-01-19', 1, 'https://www.gutenberg.org/ebooks/53999', 'fi', 175), +(30713, 'The King of Alsander', 'Flecker, James Elroy', '2012-11-23', 13, 'https://www.gutenberg.org/ebooks/41460', 'en', 3208), +(30714, 'Peace with Mexico', 'Gallatin, Albert', '2010-04-30', 9, 'https://www.gutenberg.org/ebooks/32192', 'en', 12133), +(30715, '明皇雜錄', 'Zheng, Chuhui, jin shi 834', '2008-04-22', 12, 'https://www.gutenberg.org/ebooks/25125', 'zh', 12134), +(30716, 'Hindu Tales from the Sanskrit', NULL, '2004-02-01', 151, 'https://www.gutenberg.org/ebooks/11310', 'en', 10701), +(30717, 'Prärielif: Sannsagor och lögnhistorier från vilda västern', 'Strömberg, Sigge', '2017-08-03', 8, 'https://www.gutenberg.org/ebooks/55252', 'sv', 5198), +(30718, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 272, September 8, 1827', 'Various', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12595', 'en', 133), +(30719, 'The Halo', 'Von Hutten, Bettina', '2005-10-20', 24, 'https://www.gutenberg.org/ebooks/16909', 'en', 61), +(30720, 'The Witches of New York', 'Doesticks, Q. K. Philander', '2010-03-21', 28, 'https://www.gutenberg.org/ebooks/31717', 'en', 12135), +(30721, 'History of the Jews, Vol. 3 (of 6)', 'Graetz, Heinrich', '2013-07-28', 53, 'https://www.gutenberg.org/ebooks/43337', 'en', 5932), +(30722, 'The Autobiography of Charles Darwin', 'Darwin, Charles', '1999-12-01', 304, 'https://www.gutenberg.org/ebooks/2010', 'en', 5473), +(30723, 'Punicorum Libri Septemdecim', 'Silius Italicus, Tiberius Catius', '2008-12-31', 19, 'https://www.gutenberg.org/ebooks/27672', 'la', 12136), +(30724, 'Philosophy and Fun of Algebra', 'Boole, Mary Everest', '2004-09-12', 104, 'https://www.gutenberg.org/ebooks/13447', 'en', 4325), +(30725, 'A Battle of the Books, recorded by an unknown writer for the use of authors and publishers\r\nTo the first for doctrine, to the second for reproof, to both for correction and for instruction in righteousness', 'Hamilton, Gail', '2017-03-18', 13, 'https://www.gutenberg.org/ebooks/54380', 'en', 12137), +(30726, 'With Our Army in Palestine', 'Bluett, Antony', '2006-11-27', 36, 'https://www.gutenberg.org/ebooks/19941', 'en', 1176), +(30727, 'Quotes and Images From Memoirs of Madame De Montespan', 'Montespan, Madame de', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7562', 'en', 1026), +(30728, 'An English Garner: Ingatherings from Our History and Literature (4 of 8)', NULL, '2014-08-21', 17, 'https://www.gutenberg.org/ebooks/46645', 'en', 1201), +(30729, 'Safe Marriage: A Return to Sanity', 'Rout, Ettie Annie', '2005-06-26', 16, 'https://www.gutenberg.org/ebooks/16135', 'en', 5722), +(30730, 'The Menorah Journal, Volume 1, 1915', 'Various', '2007-08-11', 28, 'https://www.gutenberg.org/ebooks/22300', 'en', 12138), +(30731, 'Suomalaisen teatterin historia 1\r\nTeatterin esihistoria ja perustaminen', 'Aspelin-Haapkylä, Eliel', '2015-12-19', 10, 'https://www.gutenberg.org/ebooks/50720', 'fi', 12139), +(30732, 'Nein und Ja: Roman', 'Flake, Otto', '2014-12-28', 9, 'https://www.gutenberg.org/ebooks/47797', 'de', 60), +(30733, 'Sketches and Studies in Italy and Greece, Complete\nSeries I, II, and III', 'Symonds, John Addington', '2006-07-22', 16, 'https://www.gutenberg.org/ebooks/18893', 'en', 4713), +(30734, 'The Scarecrow of Oz', 'Baum, L. Frank (Lyman Frank)', '1997-06-01', 240, 'https://www.gutenberg.org/ebooks/957', 'en', 62), +(30735, 'Das Anjekind: Eine Erzählung', 'Bonsels, Waldemar', '2010-11-09', 34, 'https://www.gutenberg.org/ebooks/34265', 'de', 253), +(30736, 'The Art of Logical Thinking; Or, The Laws of Reasoning', 'Atkinson, William Walker', '2013-01-13', 138, 'https://www.gutenberg.org/ebooks/41838', 'en', 12140), +(30737, 'The Black Death in the Fourteenth Century', 'Hecker, J. F. C. (Justus Friedrich Carl)', '2016-06-26', 42, 'https://www.gutenberg.org/ebooks/52413', 'en', 12141), +(30738, 'Juggernaut: A Veiled Record', 'Eggleston, George Cary', '2012-06-05', 15, 'https://www.gutenberg.org/ebooks/39922', 'en', 1238), +(30739, 'Amy Herbert', 'Sewell, Elizabeth Missing', '2011-05-18', 22, 'https://www.gutenberg.org/ebooks/36156', 'en', 2586), +(30740, 'Riley Farm-Rhymes', 'Riley, James Whitcomb', '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/4783', 'en', 12142), +(30741, 'L\'organisation de l\'industrie et les conditions du travail dans la Russie des Soviets', 'International Labour Office', '2011-08-14', 5, 'https://www.gutenberg.org/ebooks/37084', 'fr', 12143), +(30742, 'Dreams and Dream Stories', 'Kingsford, Anna Bonus', '2004-05-01', 109, 'https://www.gutenberg.org/ebooks/5651', 'en', 6758), +(30743, 'The Girls of Silver Spur Ranch', 'Cooke, Grace MacGowan', '2014-01-03', 17, 'https://www.gutenberg.org/ebooks/44576', 'en', 3621), +(30744, 'Blackwood\'s Edinburgh Magazine, Volume 61, No. 375, January-June, 1847', 'Various', '2018-10-18', 7, 'https://www.gutenberg.org/ebooks/58129', 'en', 274), +(30745, 'I Saw Three Ships and Other Winter Tales', 'Quiller-Couch, Arthur', '2004-11-29', 17, 'https://www.gutenberg.org/ebooks/14206', 'en', 797), +(30746, 'Quin', 'Rice, Alice Caldwell Hegan', '2006-12-05', 35, 'https://www.gutenberg.org/ebooks/20033', 'en', 500), +(30747, 'An Eye for an Eye', 'Le Queux, William', '2012-10-09', 22, 'https://www.gutenberg.org/ebooks/41004', 'en', 167), +(30748, 'American Eloquence, an Index of the Four Volumes\nStudies In American Political History - 1896', NULL, '2008-05-20', 18, 'https://www.gutenberg.org/ebooks/25541', 'en', 1720), +(30749, 'International Finance', 'Withers, Hartley', '2004-04-01', 71, 'https://www.gutenberg.org/ebooks/11774', 'en', 12144), +(30750, 'Notes of a Gold Digger, and Gold Diggers\' Guide', 'Bonwick, James', '2018-05-14', 24, 'https://www.gutenberg.org/ebooks/57161', 'en', 12145), +(30751, 'The Boy Who Knew What The Birds Said', 'Colum, Padraic', '2008-02-02', 41, 'https://www.gutenberg.org/ebooks/24493', 'en', 1007), +(30752, 'Instruction book on ring spinning', 'Lincoln, Francis L.', '2010-08-13', 16, 'https://www.gutenberg.org/ebooks/33424', 'en', 10494), +(30753, 'Voyage to Jupiter', 'Morrison, David', '2019-02-19', 56, 'https://www.gutenberg.org/ebooks/58915', 'en', 12146), +(30754, 'Cyrus W. Field, His Life and Work [1819-1892]', NULL, '2013-09-16', 4, 'https://www.gutenberg.org/ebooks/43753', 'en', 12147), +(30755, 'The Circus Boys on the Flying Rings; Or, Making the Start in the Sawdust Life', 'Darlington, Edgar B. P.', '2001-01-01', 31, 'https://www.gutenberg.org/ebooks/2474', 'en', 323), +(30756, '斬鬼傳', 'Liu, Zhang', '2008-11-09', 10, 'https://www.gutenberg.org/ebooks/27216', 'zh', 1003), +(30757, 'Pieni elämäntarina', 'Pakkala, Teuvo', '2004-07-25', 13, 'https://www.gutenberg.org/ebooks/13023', 'fi', 12148), +(30758, 'Le divorce du tailleur\r\nPièce archi-comique en un acte', 'Doin, Ernest', '2006-10-10', 9, 'https://www.gutenberg.org/ebooks/19519', 'fr', 11023), +(30759, 'Orlóff and His Wife: Tales of the Barefoot Brigade', 'Gorky, Maksim', '2017-09-27', 12, 'https://www.gutenberg.org/ebooks/55636', 'en', 4078), +(30760, 'Solaris Farm: A Story of the Twentieth Century', 'Edson, Milan C.', '2010-02-23', 16, 'https://www.gutenberg.org/ebooks/31373', 'en', 11525), +(30761, 'The Hero of the People: A Historical Romance of Love, Liberty and Loyalty', 'Dumas, Alexandre', '2013-05-10', 26, 'https://www.gutenberg.org/ebooks/42681', 'en', 98), +(30762, 'The Boy Scouts in the Saddle', 'Shaler, Robert', '2015-06-24', 6, 'https://www.gutenberg.org/ebooks/49269', 'en', 2994), +(30763, 'Geld und Erfahrung', 'Eyth, Max', '2015-10-30', 7, 'https://www.gutenberg.org/ebooks/50344', 'de', 12149), +(30764, 'The Olden Time Series, Vol. 3: New-England Sunday\nGleanings Chiefly From Old Newspapers Of Boston And Salem, Massachusetts', 'Brooks, Henry M. (Henry Mason)', '2006-01-09', 8, 'https://www.gutenberg.org/ebooks/17483', 'en', 4354), +(30765, 'Gammer Gurton\'s Garland; Or, The Nursery Parnassus\r\nA Choice Collection of Pretty Songs and Verses for the Amusement of All Little Good Children Who Can Neither Read nor Run.', NULL, '2010-12-08', 16, 'https://www.gutenberg.org/ebooks/34601', 'en', 343), +(30766, 'Adventures of Huckleberry Finn, Chapters 31 to 35', 'Twain, Mark', '2004-06-28', 89, 'https://www.gutenberg.org/ebooks/7106', 'en', 5351), +(30767, 'Items on the Priesthood, presented to the Latter-day Saints', 'Taylor, John', '2014-07-08', 18, 'https://www.gutenberg.org/ebooks/46221', 'en', 764), +(30768, 'The First Men in the Moon', 'Wells, H. G. (Herbert George)', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/8972', 'en', 8406), +(30769, 'The Girl of the Golden West', 'Belasco, David', '2005-08-19', 41, 'https://www.gutenberg.org/ebooks/16551', 'en', 1569), +(30770, 'The Sense of Wonder', 'Marlowe, Stephen', '2016-02-24', 37, 'https://www.gutenberg.org/ebooks/51296', 'en', 179), +(30771, 'On the Origin of Species by Means of Natural Selection\r\nor the Preservation of Favoured Races in the Struggle for Life. (2nd edition)', 'Darwin, Charles', '2007-09-25', 418, 'https://www.gutenberg.org/ebooks/22764', 'en', 4602), +(30772, 'The Path of Dreams\nPoems', 'Giltner, Leigh Gordon', '2008-10-25', 23, 'https://www.gutenberg.org/ebooks/27024', 'en', 178), +(30773, 'The Pearl\r\nA Middle English Poem, A Modern Version in the Metre of the Original', 'Jewett, Sophie', '2004-08-18', 130, 'https://www.gutenberg.org/ebooks/13211', 'en', 12150), +(30774, 'L\'homme sauvage', 'Pfeil, Johann Gottlob Benjamin', '2013-08-26', 12, 'https://www.gutenberg.org/ebooks/43561', 'fr', 5147), +(30775, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 703\nJune 16, 1877', 'Various', '2015-02-07', 8, 'https://www.gutenberg.org/ebooks/48189', 'en', 18), +(30776, 'The Project Gutenberg Works of John Lothrop Motley\r\nA Linked Index for: The Rise of the Dutch Republic; The History of the United Netherlands; The Life and Death of John of Barneveld', 'Motley, John Lothrop', '2009-05-17', 8, 'https://www.gutenberg.org/ebooks/28850', 'en', 198), +(30777, 'John Leech\'s Pictures of Life and Character', 'Thackeray, William Makepeace', '2006-05-22', 31, 'https://www.gutenberg.org/ebooks/2646', 'en', 11947), +(30778, 'The Shepherd of the North', 'Maher, Richard Aumerle', '2009-09-26', 8, 'https://www.gutenberg.org/ebooks/30093', 'en', 4811), +(30779, 'L. Annaeus Seneca on Benefits', 'Seneca, Lucius Annaeus', '2003-02-01', 137, 'https://www.gutenberg.org/ebooks/3794', 'en', 12151), +(30780, 'Beauchamp; or, The Error.', 'James, G. P. R. (George Payne Rainsford)', '2016-04-30', 6, 'https://www.gutenberg.org/ebooks/51898', 'en', 4551), +(30781, 'Four New Pocket Gophers of the Genus Cratogeomys from Jalisco, Mexico', 'Russell, Robert J.', '2010-01-31', 11, 'https://www.gutenberg.org/ebooks/31141', 'en', 6337), +(30782, 'Culture and Cooking; Or, Art in the Kitchen', 'Owen, Catherine', '2009-09-14', 35, 'https://www.gutenberg.org/ebooks/29982', 'en', 103), +(30783, 'The Man with a Secret: A Novel', 'Hume, Fergus', '2017-08-21', 23, 'https://www.gutenberg.org/ebooks/55404', 'en', 95), +(30784, 'Blackwood\'s Edinburgh Magazine, Volume 58, Number 358, August 1845', 'Various', '2009-01-16', 34, 'https://www.gutenberg.org/ebooks/27818', 'en', 711), +(30785, 'R. Caldecott\'s Picture Book (No. 2)\nThe Three Jovial Huntsmen—Sing a Song for Sixpence—The Queen of Hearts—The Farmer\'s Boy', 'Caldecott, Randolph', '2010-11-24', 23, 'https://www.gutenberg.org/ebooks/34433', 'en', 672), +(30786, 'La Bastille\n(1370-1789) Histoire, Description, Attaque et Prise', 'Coeuret, Auguste', '2007-11-15', 20, 'https://www.gutenberg.org/ebooks/23484', 'fr', 12152), +(30787, 'The Pride of Eve', 'Deeping, Warwick', '2015-10-10', 20, 'https://www.gutenberg.org/ebooks/50176', 'en', 95), +(30788, '\"Say Fellows—\"\r\nFifty Practical Talks with Boys on Life\'s Big Issues', 'Smith, Wade C. (Wade Cothran)', '2005-09-27', 14, 'https://www.gutenberg.org/ebooks/16763', 'en', 1130); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(30789, 'Cymbeline', 'Shakespeare, William', '2007-09-10', 6, 'https://www.gutenberg.org/ebooks/22556', 'fi', 3502), +(30790, 'The Learned Lady in England, 1650-1760', 'Reynolds, Myra', '2015-09-03', 11, 'https://www.gutenberg.org/ebooks/49867', 'en', 10985), +(30791, 'With Buller in Natal, Or, a Born Leader', 'Henty, G. A. (George Alfred)', '2005-01-01', 33, 'https://www.gutenberg.org/ebooks/7334', 'en', 713), +(30792, 'Famous American Belles of the Nineteenth Century', 'Peacock, Virginia Tatnall', '2014-06-17', 31, 'https://www.gutenberg.org/ebooks/46013', 'en', 10260), +(30793, 'Aladdin en de wonderlamp (Verhaal uit de duizend en een nacht)', NULL, '2014-05-19', 19, 'https://www.gutenberg.org/ebooks/45696', 'nl', 1007), +(30794, 'Zoe; Or, Some Day: A Novel', 'Leonard, May', '2011-06-09', 11, 'https://www.gutenberg.org/ebooks/36364', 'en', 61), +(30795, 'Society in America, Volume 1 (of 2)', 'Martineau, Harriet', '2016-07-22', 49, 'https://www.gutenberg.org/ebooks/52621', 'en', 1110), +(30796, 'King Alfred\'s Viking\nA Story of the First English Fleet', 'Whistler, Charles W. (Charles Watts)', '2004-11-13', 52, 'https://www.gutenberg.org/ebooks/14034', 'en', 12153), +(30797, 'Mary Gray', 'Tynan, Katharine', '2006-12-27', 23, 'https://www.gutenberg.org/ebooks/20201', 'en', 1902), +(30798, 'The Sisters — Volume 3', 'Ebers, Georg', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/5463', 'en', 6232), +(30799, 'Superstition in Medicine', 'Magnus, Hugo', '2014-01-24', 32, 'https://www.gutenberg.org/ebooks/44744', 'en', 8175), +(30800, 'On the Portraits of English Authors on Gardening,\r\nwith Biographical Notices of Them, 2nd edition, with considerable additions', 'Felton, Samuel', '2008-06-13', 11, 'https://www.gutenberg.org/ebooks/25773', 'en', 12154), +(30801, 'Schwabylon, oder Der sturmfreie Junggeselle', 'Roda Roda', '2018-01-01', 16, 'https://www.gutenberg.org/ebooks/56281', 'de', 543), +(30802, 'The Autobiography of a Journalist, Volume I', 'Stillman, William James', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11546', 'en', 11240), +(30803, 'The Little Washington\'s Relatives', 'Roy, Lillian Elizabeth', '2012-10-30', 11, 'https://www.gutenberg.org/ebooks/41236', 'en', 4426), +(30804, 'Punch, or the London Charivari, Volume 101, August 8, 1891', 'Various', '2005-01-26', 10, 'https://www.gutenberg.org/ebooks/14808', 'en', 134), +(30805, 'The Way of the Gods', 'Long, John Luther', '2010-09-03', 33, 'https://www.gutenberg.org/ebooks/33616', 'en', 775), +(30806, 'Henry the Second', 'Green, Alice Stopford', '2003-12-01', 21, 'https://www.gutenberg.org/ebooks/10494', 'en', 12155), +(30807, 'A tengerszemü hölgy', 'Jókai, Mór', '2018-06-18', 13, 'https://www.gutenberg.org/ebooks/57353', 'hu', 234), +(30808, 'The Forum, October 1914', 'Various', '2017-08-08', 10, 'https://www.gutenberg.org/ebooks/55299', 'en', 1227), +(30809, 'Fashions in Literature', 'Warner, Charles Dudley', '2004-12-05', 10, 'https://www.gutenberg.org/ebooks/3109', 'en', 3720), +(30810, 'Vie de Franklin', 'Mignet, M. (François-Auguste-Marie-Alexis)', '2006-02-20', 13, 'https://www.gutenberg.org/ebooks/17810', 'fr', 854), +(30811, 'Tess of the d\'Urbervilles: A Pure Woman', 'Hardy, Thomas', '2005-12-01', 23, 'https://www.gutenberg.org/ebooks/9433', 'en', 2815), +(30812, 'Cape Gloucester: The Green Inferno', 'Nalty, Bernard C.', '2015-04-15', 36, 'https://www.gutenberg.org/ebooks/48714', 'en', 12156), +(30813, 'L\'américaine', 'Claretie, Jules', '2006-03-28', 17, 'https://www.gutenberg.org/ebooks/18064', 'fr', 61), +(30814, 'The Mayas, the Sources of Their History\r\nDr. Le Plongeon in Yucatan, His Account of Discoveries', 'Salisbury, Stephen', '2009-08-18', 25, 'https://www.gutenberg.org/ebooks/29723', 'en', 8272), +(30815, 'Implement sheds', 'Ekblaw, K. J. T. (Karl John Theodore)', '2016-04-02', 9, 'https://www.gutenberg.org/ebooks/51639', 'en', 12157), +(30816, 'A Woodland Queen (\'Reine des Bois\') — Volume 1', 'Theuriet, André', '2003-04-01', 2, 'https://www.gutenberg.org/ebooks/3935', 'en', 1225), +(30817, 'Putois\n1907', 'France, Anatole', '2007-10-27', 25, 'https://www.gutenberg.org/ebooks/23219', 'en', 179), +(30818, 'Esperanza', 'Rivera, Jose Maria', '2006-07-18', 11, 'https://www.gutenberg.org/ebooks/18858', 'tl', 9065), +(30819, 'Darwin, and After Darwin, Volumes 1 and 3\r\nAn Exposition of the Darwinian Theory and a Discussion of Post-Darwinian Questions', 'Romanes, George John', '2008-03-11', 31, 'https://www.gutenberg.org/ebooks/24800', 'en', 3049), +(30820, 'Bird Houses, Baths and Feeding Shelters: How to Make and Where to Place Them', 'Sawyer, Edmund J. (Edmund Joseph)', '2019-01-01', 20, 'https://www.gutenberg.org/ebooks/58586', 'en', 10405), +(30821, 'In the vine country', 'Somerville, E. Oe. (Edith Oenone)', '2019-05-07', 12, 'https://www.gutenberg.org/ebooks/59454', 'en', 1117), +(30822, 'Mothering on Perilous', 'Furman, Lucy S.', '2010-06-24', 12, 'https://www.gutenberg.org/ebooks/32965', 'en', 1996), +(30823, 'Electricity and Progress\r\nOpening of the New York Electrical Show', 'Edison, Thomas A. (Thomas Alva)', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10209', 'en', 2979), +(30824, 'Memoir of Hendrick Zwaardecroon, commandeur of Jaffnapatam (afterwards Governor-General of Nederlands India) 1697.\r\nFor the guidance of the council of Jaffnapatam, during his absence at the coast of Malabar.', 'Zwaardecroon, Hendrick', '2012-08-25', 14, 'https://www.gutenberg.org/ebooks/40579', 'en', 12158), +(30825, 'A Selection from the Works of Frederick Locker', 'Locker-Lampson, Frederick', '2012-01-01', 19, 'https://www.gutenberg.org/ebooks/38463', 'en', 54), +(30826, 'Impressions of England; or, Sketches of English Scenery and Society', 'Coxe, A. Cleveland (Arthur Cleveland)', '2017-01-13', 15, 'https://www.gutenberg.org/ebooks/53952', 'en', 776), +(30827, 'Cours de philosophie positive. (5/6)', 'Comte, Auguste', '2016-08-23', 25, 'https://www.gutenberg.org/ebooks/52880', 'fr', 3926), +(30828, 'Mammals from Southeastern Alaska', 'Findley, James S. (James Smith)', '2010-04-28', 20, 'https://www.gutenberg.org/ebooks/32159', 'en', 12159), +(30829, 'La araña negra, t. 9/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 13, 'https://www.gutenberg.org/ebooks/45837', 'es', 98), +(30830, 'The Constitutional History of England from 1760 to 1860', 'Yonge, Charles Duke', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/10807', 'en', 445), +(30831, 'Luck at the Diamond Fields', 'Belgrave, Dalrymple J.', '2011-10-04', 6, 'https://www.gutenberg.org/ebooks/37619', 'en', 12160), +(30832, 'Little Orphan Annie, and Billy Miller\'s Circus-Show', 'Riley, James Whitcomb', '2014-03-28', 16, 'https://www.gutenberg.org/ebooks/45239', 'en', 4299), +(30833, 'Chambers\'s Edinburgh Journal, No. 424\r\nVolume 17, New Series, February 14, 1852', 'Various', '2005-04-05', 13, 'https://www.gutenberg.org/ebooks/15549', 'en', 18), +(30834, 'Harper\'s Young People, October 31, 1882\nAn Illustrated Weekly', 'Various', '2019-06-03', 11, 'https://www.gutenberg.org/ebooks/59666', 'en', 479), +(30835, 'Talvi-iltain tarinoita 5\nSumutarinoita.', 'Topelius, Zacharias', '2012-01-23', 13, 'https://www.gutenberg.org/ebooks/38651', 'fi', 2168), +(30836, 'Bar-20 Days', 'Mulford, Clarence Edward', '2006-04-22', 50, 'https://www.gutenberg.org/ebooks/4922', 'en', 315), +(30837, 'Canzoni & Ripostes\nWhereto are appended the Complete Poetical Works of T.E. Hulme', 'Hulme, T. E. (Thomas Ernest)', '2012-05-24', 43, 'https://www.gutenberg.org/ebooks/39783', 'en', 8), +(30838, 'Buda halála: Hún rege', 'Arany, János', '2012-12-24', 15, 'https://www.gutenberg.org/ebooks/41699', 'hu', 1645), +(30839, 'Novelleja ja kertomuksia I', 'Dehas, Camille', '2008-09-08', 27, 'https://www.gutenberg.org/ebooks/26559', 'fi', 179), +(30840, 'On Christmas Day In The Evening', 'Richmond, Grace S. (Grace Smith)', '2006-09-26', 19, 'https://www.gutenberg.org/ebooks/19384', 'en', 585), +(30841, 'For the School Colours', 'Brazil, Angela', '2011-04-26', 26, 'https://www.gutenberg.org/ebooks/35972', 'en', 62), +(30842, 'Jerusalem Delivered', 'Tasso, Torquato', '1996-01-01', 284, 'https://www.gutenberg.org/ebooks/392', 'en', 365), +(30843, 'Remarks on the Proposed Railway Between Birmingham and London', 'Anonymous', '2017-02-17', 11, 'https://www.gutenberg.org/ebooks/54179', 'en', 12161), +(30844, 'Woodside\nor, Look, Listen, and Learn.', 'Hadley, Caroline', '2006-04-25', 20, 'https://www.gutenberg.org/ebooks/18256', 'en', 470), +(30845, 'The Poetical Works of Alexander Pope, Volume 2', 'Pope, Alexander', '2006-01-01', 92, 'https://www.gutenberg.org/ebooks/9601', 'en', 3947), +(30846, 'Dansen på Frötjärn (Komedier i Bergslagen II)', 'Bergman, Hjalmar', '2015-03-19', 8, 'https://www.gutenberg.org/ebooks/48526', 'sv', 420), +(30847, '閱微草堂筆記', 'Ji, Yun', '2007-12-11', 52, 'https://www.gutenberg.org/ebooks/23817', 'zh', 9595), +(30848, 'El molino silencioso; Las bodas de Yolanda', 'Sudermann, Hermann', '2009-07-25', 19, 'https://www.gutenberg.org/ebooks/29511', 'es', 12162), +(30849, 'Notes and Queries, Number 242, June 17, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-27', 17, 'https://www.gutenberg.org/ebooks/42820', 'en', 105), +(30850, 'Spices and How to Know Them', 'Gibbs, Walter M.', '2017-11-07', 20, 'https://www.gutenberg.org/ebooks/55897', 'en', 12163), +(30851, 'Einige Gedichte', 'Schiller, Friedrich', '2004-10-01', 61, 'https://www.gutenberg.org/ebooks/6649', 'de', 1518), +(30852, 'All Taut; or, Rigging the boat', 'Optic, Oliver', '2017-06-20', 13, 'https://www.gutenberg.org/ebooks/54945', 'en', 12164), +(30853, 'Legendary Tales of the Highlands (Volume 3 of 3)\nA sequel to Highland Rambles', 'Lauder, Thomas Dick, Sir', '2019-04-03', 46, 'https://www.gutenberg.org/ebooks/59202', 'en', 12165), +(30854, 'The Lost Middy: Being the Secret of the Smugglers\' Gap', 'Fenn, George Manville', '2007-05-04', 23, 'https://www.gutenberg.org/ebooks/21318', 'en', 3763), +(30855, 'The Unseen Hand; or, James Renfew and His Boy Helpers', 'Kellogg, Elijah', '2016-12-15', 12, 'https://www.gutenberg.org/ebooks/53738', 'en', 470), +(30856, 'The Case of the Pocket Diary Found in the Snow', 'Groner, Auguste', '1999-07-01', 15, 'https://www.gutenberg.org/ebooks/1834', 'en', 128), +(30857, 'Narrative of a Voyage to the Northwest Coast of America in the years 1811, 1812, 1813, and 1814 or the First American Settlement on the Pacific', 'Franchère, Gabriel', '2005-05-27', 28, 'https://www.gutenberg.org/ebooks/15911', 'en', 99), +(30858, 'The Gentleman\'s Model Letter-writer\r\nA Complete Guide to Correspondence on All Subjects, with Commercial Forms', 'Anonymous', '2011-12-06', 24, 'https://www.gutenberg.org/ebooks/38235', 'en', 12166), +(30859, 'Divine Comedy, Cary\'s Translation, Complete', 'Dante Alighieri', '1997-08-01', 157, 'https://www.gutenberg.org/ebooks/1008', 'en', 2212), +(30860, 'Education of Women', 'Thomas, M. Carey (Martha Carey)', '2018-06-25', 4, 'https://www.gutenberg.org/ebooks/57398', 'en', 12167), +(30861, 'Crossroads of Destiny', 'Piper, H. Beam', '2006-06-20', 59, 'https://www.gutenberg.org/ebooks/18632', 'en', 179), +(30862, 'Jersey City and Its Historic Sites', 'Eaton, Harriet Phillips', '2015-01-10', 17, 'https://www.gutenberg.org/ebooks/47936', 'en', 12168), +(30863, 'The Road to Independence: Virginia 1763-1783', 'Virginia. History, Government, and Geography Service', '2009-09-22', 25, 'https://www.gutenberg.org/ebooks/30058', 'en', 12169), +(30864, 'Garrity\'s Annuities', 'Mason, David', '2016-01-20', 26, 'https://www.gutenberg.org/ebooks/50981', 'en', 179), +(30865, 'The Atlantic Monthly, Volume 04, No. 22, August, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9265', 'en', 1227), +(30866, 'The Adventures of Two Alabama Boys', 'Crumpton, H. J. (Hezekiah John)', '2015-02-02', 18, 'https://www.gutenberg.org/ebooks/48142', 'en', 12170), +(30867, 'Punch, or the London Charivari, January 12th, 1895', 'Various', '2013-04-07', 7, 'https://www.gutenberg.org/ebooks/42478', 'en', 134), +(30868, 'Washington\'s Masonic Correspondence\nAs Found among the Washington Papers in the Library of Congress', 'Washington, George', '2009-09-10', 45, 'https://www.gutenberg.org/ebooks/29949', 'en', 12171), +(30869, 'Love in a Muddle', 'Jope-Slade, Christine', '2015-05-30', 14, 'https://www.gutenberg.org/ebooks/49090', 'en', 1566), +(30870, 'Lukemisia lapsille 3', 'Topelius, Zacharias', '2016-04-24', 1, 'https://www.gutenberg.org/ebooks/51853', 'fi', 1007), +(30871, 'Winning His Spurs: A Tale of the Crusades', 'Henty, G. A. (George Alfred)', '2004-05-01', 66, 'https://www.gutenberg.org/ebooks/12308', 'en', 4003), +(30872, 'The Missing Tin Box; Or, The Stolen Railroad Bonds', 'Stratemeyer, Edward', '2010-01-05', 18, 'https://www.gutenberg.org/ebooks/30864', 'en', 557), +(30873, 'Lettre de Defrance à Bion, sur sa réponse aux objections contre l\'établissement de la régie intéressée des postes et messageries', 'Defrance, Jean Claude', '2009-06-20', 26, 'https://www.gutenberg.org/ebooks/29175', 'fr', 12172), +(30874, 'A History of the Nineteenth Century, Year by Year. Volume 2 (of 3)', 'Emerson, Edwin', '2008-10-12', 6, 'https://www.gutenberg.org/ebooks/26901', 'en', 12173), +(30875, 'Unspoken Sermons, Series I., II., and III.', 'MacDonald, George', '2005-10-01', 222, 'https://www.gutenberg.org/ebooks/9057', 'en', 2386), +(30876, 'Haaksirikkoiset', 'Wilkuna, Kyösti', '2013-09-23', 26, 'https://www.gutenberg.org/ebooks/43798', 'fi', 456), +(30877, 'A sermon preach\'d before the Right Honourable the Lord-Mayor : the aldermen and citizens of London\r\nat the Cathedral-Church of St. Paul on Monday the 30th of Jan. 1709/10 being the anniversary fast for the Martyrdom of King Charles', 'Snape, Andrew', '2015-02-26', 4, 'https://www.gutenberg.org/ebooks/48370', 'en', 2745), +(30878, 'Army Letters from an Officer\'s Wife, 1871-1888', 'Roe, Frances Marie Antoinette Mack', '2004-11-01', 27, 'https://www.gutenberg.org/ebooks/6823', 'en', 11660), +(30879, 'Isopel Berners\nThe History of certain doings in a Staffordshire Dingle, July, 1825', 'Borrow, George', '2006-05-16', 11, 'https://www.gutenberg.org/ebooks/18400', 'en', 95), +(30880, 'Fountains in the Sand: Rambles Among the Oases of Tunisia', 'Douglas, Norman', '2005-05-01', 16, 'https://www.gutenberg.org/ebooks/8185', 'en', 6036), +(30881, 'The Auld Doctor and other Poems and Songs in Scots', 'Rorie, David', '2006-01-02', 11, 'https://www.gutenberg.org/ebooks/17448', 'en', 8), +(30882, 'The Maids of Paradise', 'Chambers, Robert W. (Robert William)', '2009-03-09', 13, 'https://www.gutenberg.org/ebooks/28295', 'en', 1180), +(30883, 'Kate Vernon: A Tale. Vol. 1 (of 3)', 'Alexander, Mrs.', '2014-11-13', 108, 'https://www.gutenberg.org/ebooks/47338', 'en', 61), +(30884, 'Canzio; Selman juonet', 'Kivi, Aleksis', '2004-07-14', 28, 'https://www.gutenberg.org/ebooks/12906', 'fi', 247), +(30885, 'Clotilde', 'Karr, Alphonse', '2011-04-01', 20, 'https://www.gutenberg.org/ebooks/35718', 'fr', 298), +(30886, 'As Noites do Asceta', 'Pimentel, Alberto', '2009-07-07', 16, 'https://www.gutenberg.org/ebooks/29347', 'pt', 410), +(30887, 'Hüben und Drüben; Dritter Band (3/3)\nNeue gesammelte Erzählungen', 'Gerstäcker, Friedrich', '2019-03-07', 5, 'https://www.gutenberg.org/ebooks/59030', 'de', 138), +(30888, 'Baree, Son of Kazan', 'Curwood, James Oliver', '2003-12-01', 31, 'https://www.gutenberg.org/ebooks/4748', 'en', 2464), +(30889, 'The Drawings of Leonardo da Vinci', NULL, '2018-03-26', 242, 'https://www.gutenberg.org/ebooks/56844', 'en', 8221), +(30890, 'Grace Harlowe\'s Overland Riders in the Yellowstone National Park', 'Chase, Josephine', '2018-10-01', 24, 'https://www.gutenberg.org/ebooks/57996', 'en', 323), +(30891, 'Grim: The Story of a Pike', 'Fleuron, Svend', '2012-10-02', 13, 'https://www.gutenberg.org/ebooks/40921', 'en', 12174), +(30892, 'Villkor och möjligheter för kemisk storindustri i Sverige', 'Larsson, Ernst', '2007-06-24', 12, 'https://www.gutenberg.org/ebooks/21916', 'sv', 12175), +(30893, 'Notes Geographical and Historical, Relating to the Town of Brooklyn in Kings County on Long-Island', 'Furman, Gabriel', '2017-11-29', 14, 'https://www.gutenberg.org/ebooks/56078', 'en', 12176), +(30894, 'Still Jim', 'Morrow, Honoré', '2008-01-30', 23, 'https://www.gutenberg.org/ebooks/24458', 'en', 2042), +(30895, 'Alone with the Hairy Ainu\r\nor, 3,800 miles on a pack saddle in Yezo and a cruise to the Kurile Islands.', 'Landor, Arnold Henry Savage', '2011-10-28', 35, 'https://www.gutenberg.org/ebooks/37873', 'en', 12177), +(30896, 'Memoir of John Howe Peyton\r\nin sketches by his contemporaries, together with some of his public and private letters, etc., also a sketch of Ann M. Peyton', NULL, '2011-11-13', 6, 'https://www.gutenberg.org/ebooks/38007', 'en', 12178), +(30897, 'Chaste as Ice, Pure as Snow: A Novel', 'Despard, C. (Charlotte)', '2018-11-22', 20, 'https://www.gutenberg.org/ebooks/58324', 'en', 61), +(30898, 'Susan Clegg and Her Love Affairs', 'Warner, Anne', '2011-09-01', 15, 'https://www.gutenberg.org/ebooks/37289', 'en', 828), +(30899, 'Scott\'s Last Expedition Volume I\r\nBeing the journals of Captain R. F. Scott', 'Scott, Robert Falcon', '2004-03-01', 124, 'https://www.gutenberg.org/ebooks/11579', 'en', 12179), +(30900, 'Rome and Turkey in Connexion with the Second Advent', 'Hoare, Edward', '2012-03-31', 17, 'https://www.gutenberg.org/ebooks/39313', 'en', 2692), +(30901, 'Venice and Its Story', 'Okey, Thomas', '2012-10-28', 39, 'https://www.gutenberg.org/ebooks/41209', 'en', 12180), +(30902, 'The Tale of Tom Kitten', 'Potter, Beatrix', '2005-01-29', 162, 'https://www.gutenberg.org/ebooks/14837', 'en', 1430), +(30903, 'The Autobiography of a Monkey', 'Paine, Albert Bigelow', '2010-09-04', 20, 'https://www.gutenberg.org/ebooks/33629', 'en', 1209), +(30904, 'Somebody\'s Little Girl', 'Young, Martha', '1996-10-01', 10, 'https://www.gutenberg.org/ebooks/702', 'en', 62), +(30905, 'The Reef', 'Wharton, Edith', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9291', 'en', 2118), +(30906, 'Poems by Emily Dickinson, Series Two', 'Dickinson, Emily', '2001-06-01', 93, 'https://www.gutenberg.org/ebooks/2679', 'en', 178), +(30907, 'Motor Matt\'s Prize; or, The Pluck That Wins', 'Matthews, Stanley R.', '2016-01-20', 8, 'https://www.gutenberg.org/ebooks/50975', 'en', 2722), +(30908, 'Inventing for Boys', 'Collins, A. Frederick (Archie Frederick)', '2015-05-28', 22, 'https://www.gutenberg.org/ebooks/49064', 'en', 1739), +(30909, 'The Bible, Douay-Rheims, Book 43: Zacharias\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8343', 'en', 6213), +(30910, 'Punch, Or the London Charivari Volume 107, November 24, 1894', 'Various', '2014-09-08', 4, 'https://www.gutenberg.org/ebooks/46810', 'en', 134), +(30911, 'With Frederick the Great: A Story of the Seven Years\' War', 'Henty, G. A. (George Alfred)', '2006-11-04', 52, 'https://www.gutenberg.org/ebooks/19714', 'en', 195), +(30912, 'The Kama Sutra of Vatsyayana\r\nTranslated From the Sanscrit in Seven Parts With Preface, Introduction and Concluding Remarks', 'Vatsyayana', '2009-01-18', 4945, 'https://www.gutenberg.org/ebooks/27827', 'en', 3052), +(30913, 'Les Aventures De Tom Sawyer', 'Twain, Mark', '2010-01-08', 46, 'https://www.gutenberg.org/ebooks/30890', 'ca', 5479), +(30914, 'Mitt lif och lefverne', 'Engström, Albert', '2015-10-07', 7, 'https://www.gutenberg.org/ebooks/50149', 'sv', 12181), +(30915, 'Celebration in Baltimore of the Triumph of Liberty in France', 'Wirt, William', '2009-02-12', 10, 'https://www.gutenberg.org/ebooks/28053', 'en', 12182), +(30916, 'The Listeners and Other Poems', 'De la Mare, Walter', '2007-09-10', 33, 'https://www.gutenberg.org/ebooks/22569', 'en', 8), +(30917, 'Foundling on Venus', 'De Courcy, John', '2009-06-20', 35, 'https://www.gutenberg.org/ebooks/29181', 'en', 179), +(30918, 'Studies on Homer and the Homeric Age, Vol. 2 of 3\r\nOlympus; or, the Religion of the Homeric Age', 'Gladstone, W. E. (William Ewart)', '2015-09-02', 14, 'https://www.gutenberg.org/ebooks/49858', 'en', 12183), +(30919, 'A Christian But a Roman', 'Jókai, Mór', '2010-04-10', 20, 'https://www.gutenberg.org/ebooks/31942', 'en', 12184), +(30920, 'Jan, Jannetje en hun jongste kind—Het Rijksmuseum\nmet inleiding en aanteekeningen van L.S. en vier-en-veertig afbeeldingen', 'Potgieter, E. J. (Everhardus Johannes)', '2015-02-28', 7, 'https://www.gutenberg.org/ebooks/48384', 'nl', 319), +(30921, 'Driven from Home; Or, Carl Crawford\'s Experience', 'Alger, Horatio, Jr.', '2006-01-21', 137, 'https://www.gutenberg.org/ebooks/530', 'en', 195), +(30922, '\"Brother Bosch\", an Airman\'s Escape from Germany', 'Knight, Gerald Featherstone', '2008-11-10', 15, 'https://www.gutenberg.org/ebooks/27229', 'en', 8816), +(30923, 'Stand by for Mars!', 'Rockwell, Carey', '2006-10-11', 86, 'https://www.gutenberg.org/ebooks/19526', 'en', 8374), +(30924, 'The Squirrel\'s Pilgrim\'s Progress\r\nA Book for Boys and Girls Setting Forth the Adventures of Tiny Red Squirrel and Chatty Chipmunk', 'Williams, J. D. (James Douglas)', '2017-09-23', 11, 'https://www.gutenberg.org/ebooks/55609', 'en', 625), +(30925, 'American Historical and Literary Curiosities, Part 05', 'Smith, J. Jay (John Jay)', '2004-07-15', 7, 'https://www.gutenberg.org/ebooks/7905', 'en', 1587), +(30926, 'Gaza: A City of Many Battles (from the Family of Noah to the Present Day)', 'Dowling, Theodore Edward', '2015-06-22', 12, 'https://www.gutenberg.org/ebooks/49256', 'en', 12185), +(30927, 'Modern Italian Poets; Essays and Versions', 'Howells, William Dean', '2005-05-01', 18, 'https://www.gutenberg.org/ebooks/8171', 'en', 12186), +(30928, 'Essays of Michel de Montaigne — Volume 19', 'Montaigne, Michel de', '2004-11-01', 26, 'https://www.gutenberg.org/ebooks/3599', 'en', 1964), +(30929, 'The Continental Monthly, Vol 6, No 5, November 1864\nDevoted To Literature And National Policy', 'Various', '2007-12-03', 22, 'https://www.gutenberg.org/ebooks/23689', 'en', 162), +(30930, 'Harper\'s Young People, December 16, 1879\nAn Illustrated Weekly', 'Various', '2009-03-06', 15, 'https://www.gutenberg.org/ebooks/28261', 'en', 479), +(30931, 'Unhappy Far-Off Things', 'Dunsany, Lord', '2004-10-21', 57, 'https://www.gutenberg.org/ebooks/13820', 'en', 6227), +(30932, 'The Great Conspiracy, Volume 7', 'Logan, John Alexander', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/7139', 'en', 125), +(30933, 'The Panama Canal', 'Haskin, Frederic J. (Frederic Jennings)', '2013-01-09', 7, 'https://www.gutenberg.org/ebooks/41807', 'en', 1232), +(30934, 'Il libro di Sidrach: testo inedito del secolo XIV\r\npubblicato da Adolfo Bartoli', 'Sidrac, active 13th century', '2013-12-31', 24, 'https://www.gutenberg.org/ebooks/44549', 'it', 12187), +(30935, 'Select Specimens of Natural History Collected in Travels to Discover the Source of the Nile. Volume 5.', 'Bruce, James', '2018-09-24', 25, 'https://www.gutenberg.org/ebooks/57962', 'en', 1274), +(30936, 'Felicitas: Historiallinen romaani kansainvaelluksen ajoilta (v. 476 j.Kr.)', 'Dahn, Felix', '2018-10-17', 3, 'https://www.gutenberg.org/ebooks/58116', 'fi', 12188), +(30937, 'Golden Steps to Respectability, Usefulness and Happiness\r\nBeing a Series of Lectures to Youth of Both Sexes, on Character, Principles, Associates, Amusements, Religion, and Marriage', 'Austin, John Mather', '2004-12-02', 15, 'https://www.gutenberg.org/ebooks/14239', 'en', 740), +(30938, 'Bacon and Shakspere', 'Burr, William Henry', '2012-03-12', 86, 'https://www.gutenberg.org/ebooks/39121', 'en', 2784), +(30939, 'Every Man His Own University', 'Conwell, Russell H.', '2011-08-03', 56, 'https://www.gutenberg.org/ebooks/36955', 'en', 12189), +(30940, 'Character Writings of the Seventeenth Century', NULL, '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10699', 'en', 1201), +(30941, 'Mexico, Aztec, Spanish and Republican, Vol. 1 of 2\r\nA Historical, Geographical, Political, Statistical and Social Account of That Country From the Period of the Invasion by the Spaniards to the Present Time.', 'Mayer, Brantz', '2011-10-31', 18, 'https://www.gutenberg.org/ebooks/37887', 'en', 12190), +(30942, 'The Good Housekeeping Marriage Book', NULL, '2007-03-15', 64, 'https://www.gutenberg.org/ebooks/20830', 'en', 1451), +(30943, 'The Devil Doctor', 'Rohmer, Sax', '2006-08-29', 103, 'https://www.gutenberg.org/ebooks/19142', 'en', 6176), +(30944, 'The Love Chase', 'Grendon, Felix', '2015-08-06', 15, 'https://www.gutenberg.org/ebooks/49632', 'en', 9268), +(30945, 'The Three Cities Trilogy: Lourdes, Volume 5', 'Zola, Émile', '2005-07-01', 7, 'https://www.gutenberg.org/ebooks/8515', 'en', 1633), +(30946, 'Parker\'s Second Reader\r\nNational Series of Selections for Reading, Designed For The Younger Classes In Schools, Academies, &C.', 'Parker, Richard Green', '2005-10-25', 28, 'https://www.gutenberg.org/ebooks/16936', 'en', 4718), +(30947, 'My Brave and Gallant Gentleman: A Romance of British Columbia', 'Watson, Robert', '2010-03-21', 39, 'https://www.gutenberg.org/ebooks/31728', 'en', 4874), +(30948, 'Histoire parlementaire de France, Volume 3.\r\nRecueil complet des discours prononcés dans les chambres de 1819 à 1848', 'Guizot, François', '2013-07-26', 12, 'https://www.gutenberg.org/ebooks/43308', 'fr', 6735), +(30949, 'The Rise of Silas Lapham', 'Howells, William Dean', '1994-08-01', 147, 'https://www.gutenberg.org/ebooks/154', 'en', 5080), +(30950, 'Zézette : moeurs foraines', 'Méténier, Oscar', '2004-09-16', 55, 'https://www.gutenberg.org/ebooks/13478', 'fr', 61), +(30951, 'Jean qui grogne et Jean qui rit', 'Ségur, Sophie, comtesse de', '2006-03-31', 20, 'https://www.gutenberg.org/ebooks/18090', 'fr', 3210), +(30952, 'The Master of the Inn', 'Herrick, Robert', '2011-02-24', 39, 'https://www.gutenberg.org/ebooks/35388', 'en', 12191), +(30953, 'The Grand Babylon Hôtel', 'Bennett, Arnold', '2001-09-01', 73, 'https://www.gutenberg.org/ebooks/2813', 'en', 843), +(30954, 'L\'oiseau blanc: conte bleu', 'Diderot, Denis', '2009-04-25', 33, 'https://www.gutenberg.org/ebooks/28605', 'fr', 5128), +(30955, 'Martin Chuzzlewit', 'Dickens, Charles', '2006-04-27', 389, 'https://www.gutenberg.org/ebooks/968', 'en', 95), +(30956, 'The Delta of the Triple Elevens\nThe History of Battery D, 311th Field Artillery US Army,\nAmerican Expeditionary Forces', 'Bachman, William Elmer', '2007-01-28', 38, 'https://www.gutenberg.org/ebooks/20468', 'en', 12192), +(30957, 'Index of the Project Gutenberg Works of Tobias Smollett', 'Smollett, T. (Tobias)', '2018-12-30', 9, 'https://www.gutenberg.org/ebooks/58572', 'en', 198), +(30958, 'The Natives', 'MacLean, Katherine', '2010-10-06', 26, 'https://www.gutenberg.org/ebooks/33843', 'en', 26), +(30959, 'Mikkelin kekkerit: Yksinäytöksinen ilveily', 'Niemi, Vihtori', '2016-05-11', 9, 'https://www.gutenberg.org/ebooks/52048', 'fi', 433), +(30960, 'How Shakspere Came to Write the Tempest', 'Kipling, Rudyard', '2010-06-27', 33, 'https://www.gutenberg.org/ebooks/32991', 'en', 12193), +(30961, 'The 1926 Tatler', NULL, '2008-06-28', 13, 'https://www.gutenberg.org/ebooks/25926', 'en', 12194), +(30962, 'Cruelle Énigme', 'Bourget, Paul', '2014-02-14', 18, 'https://www.gutenberg.org/ebooks/44911', 'fr', 109), +(30963, 'Nurse and Spy in the Union Army\r\nThe Adventures and Experiences of a Woman in Hospitals, Camps, and Battle-Fields', 'Edmonds, S. Emma E. (Sarah Emma Evelyn)', '2012-01-05', 56, 'https://www.gutenberg.org/ebooks/38497', 'en', 444), +(30964, 'Die Colonie: Brasilianisches Lebensbild. Dritter Band', 'Gerstäcker, Friedrich', '2012-04-27', 6, 'https://www.gutenberg.org/ebooks/39545', 'de', 138), +(30965, 'The Cleveland Medical Gazette, Vol. 1, No. 3, January 1886', 'Various', '2016-08-22', 11, 'https://www.gutenberg.org/ebooks/52874', 'en', 3905), +(30966, 'Complete Life of William McKinley and Story of His Assassination\nAn Authentic and Official Memorial Edition, Containing Every Incident in the Career of the Immortal Statesman, Soldier, Orator and Patriot', 'Everett, Marshall', '2019-01-20', 9, 'https://www.gutenberg.org/ebooks/58740', 'en', 12195), +(30967, 'State of the Union Addresses', 'Roosevelt, Franklin D. (Franklin Delano)', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/5038', 'en', 1276), +(30968, 'The Illustrated London Reading Book', 'Various', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/11921', 'en', 1725), +(30969, 'Petrified Forest National Monument (1953)', 'United States. National Park Service', '2019-06-07', 35, 'https://www.gutenberg.org/ebooks/59692', 'en', 12066), +(30970, 'Held Fast For England: A Tale of the Siege of Gibraltar (1779-83)', 'Henty, G. A. (George Alfred)', '2007-06-09', 41, 'https://www.gutenberg.org/ebooks/21788', 'en', 12196), +(30971, 'Beacon Lights of History, Volume 3 part 1: The Middle Ages', 'Lord, John', '1998-10-01', 7, 'https://www.gutenberg.org/ebooks/1498', 'en', 7868), +(30972, 'Index of the Project Gutenberg Works of Alfred Henry Lewis', 'Lewis, Alfred Henry', '2018-08-16', 8, 'https://www.gutenberg.org/ebooks/57708', 'en', 198), +(30973, 'The Story of a Lamb on Wheels', 'Hope, Laura Lee', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5804', 'en', 1235), +(30974, '豆棚閒話', 'Ainajushi', '2008-05-05', 99, 'https://www.gutenberg.org/ebooks/25328', 'zh', 1003), +(30975, 'Cowboy Life on the Sidetrack\r\nBeing an Extremely Humorous & Sarcastic Story of the Trials & Tribulations Endured by a Party of Stockmen Making a Shipment from the West to the East.', 'Benton, Frank', '2012-05-24', 12, 'https://www.gutenberg.org/ebooks/39777', 'en', 12197), +(30976, 'Experience', 'Cotton, Catherine', '2015-07-08', 19, 'https://www.gutenberg.org/ebooks/49400', 'en', 2902), +(30977, 'The General Epistle of James', NULL, '2007-10-01', 3, 'https://www.gutenberg.org/ebooks/22931', 'en', 7164), +(30978, 'The Last Galley; Impressions and Tales', 'Doyle, Arthur Conan', '2005-08-01', 29, 'https://www.gutenberg.org/ebooks/8727', 'en', 12198), +(30979, 'By Rock and Pool on an Austral Shore, and Other Stories', 'Becke, Louis', '2004-07-01', 16, 'https://www.gutenberg.org/ebooks/12798', 'en', 108), +(30980, 'Histoire de Édouard Manet et de son oeuvre', 'Duret, Théodore', '2011-04-28', 27, 'https://www.gutenberg.org/ebooks/35986', 'fr', 9150), +(30981, 'Ullr Uprising', 'Piper, H. Beam', '2006-09-25', 59, 'https://www.gutenberg.org/ebooks/19370', 'en', 26), +(30982, 'Bab: A Sub-Deb', 'Rinehart, Mary Roberts', '2006-03-15', 221, 'https://www.gutenberg.org/ebooks/366', 'en', 12199), +(30983, 'Handicraft for Girls\r\nA Tentative Course in Needlework, Basketry, Designing, Paper and Cardboard Construction, Textile Fibers and Fabrics and Home Decoration and Care', 'McGlauflin, Idabelle', '2011-01-05', 141, 'https://www.gutenberg.org/ebooks/34854', 'en', 1837), +(30984, 'The Homeric Hymns\nA New Prose Translation; and Essays, Literary and Mythological', 'Lang, Andrew', '2005-07-20', 80, 'https://www.gutenberg.org/ebooks/16338', 'en', 12200), +(30985, 'Cyclopedia of Commerce, Accountancy, Business Administration, v. 02 (of 10)', 'American School of Correspondence', '2014-07-30', 25, 'https://www.gutenberg.org/ebooks/46448', 'en', 12201), +(30986, 'The Evolution of Modern Band Saw Mills for Sawing Logs', 'Prescott, D. Clint', '2017-10-31', 13, 'https://www.gutenberg.org/ebooks/55863', 'en', 12202), +(30987, 'A brief sketch of the work of Matthew Fontaine Maury during the war, 1861-1865', 'Maury, Richard L. (Richard Lancelot)', '2010-10-14', 15, 'https://www.gutenberg.org/ebooks/34068', 'en', 12203), +(30988, 'It\'s a Small Solar System', 'Howard, Allan', '2009-03-29', 32, 'https://www.gutenberg.org/ebooks/28437', 'en', 613), +(30989, 'The Story of the Teasing Monkey', 'Bannerman, Helen', '2013-10-08', 24, 'https://www.gutenberg.org/ebooks/43906', 'en', 25), +(30990, 'Charles Sumner: his complete works, volume 01 (of 20)', 'Sumner, Charles', '2014-03-26', 26, 'https://www.gutenberg.org/ebooks/45230', 'en', 125), +(30991, 'Diary of Samuel Pepys — Volume 01: Preface and Life', 'Pepys, Samuel', '2004-11-29', 29, 'https://www.gutenberg.org/ebooks/4117', 'en', 738), +(30992, 'The Best of the World\'s Classics, Restricted to Prose, Vol. IV (of X)—Great Britain and Ireland II', NULL, '2007-06-08', 92, 'https://www.gutenberg.org/ebooks/21775', 'en', 19), +(30993, 'Across India; Or, Live Boys in the Far East', 'Optic, Oliver', '2005-04-04', 43, 'https://www.gutenberg.org/ebooks/15540', 'en', 12025), +(30994, 'A Struggle for a Fortune', 'Castlemon, Harry', '2016-06-09', 11, 'https://www.gutenberg.org/ebooks/52287', 'en', 3334), +(30995, 'La novela en el tranvía', 'Pérez Galdós, Benito', '2016-10-23', 13, 'https://www.gutenberg.org/ebooks/53355', 'es', 1696), +(30996, 'Notable Women of Modern China', 'Burton, Margaret E. (Margaret Ernestine)', '2004-12-28', 35, 'https://www.gutenberg.org/ebooks/14492', 'en', 4289), +(30997, 'Encyclopaedia Britannica, 11th Edition, \"Germany\" to \"Gibson, William\"\r\nVolume 11, Slice 8', 'Various', '2011-10-03', 18, 'https://www.gutenberg.org/ebooks/37610', 'en', 1081), +(30998, 'Szélcsend alatt; Az életből ellesve', 'Jókai, Mór', '2018-02-22', 6, 'https://www.gutenberg.org/ebooks/56627', 'hu', 1532), +(30999, 'Trading Jeff and His Dog', 'Kjelgaard, Jim', '2012-12-22', 8, 'https://www.gutenberg.org/ebooks/41690', 'en', 766), +(31000, 'Lives of the Most Eminent Painters, Sculptors and Architects, Vol. 09 (of 10)\r\nMichelagnolo to the Flemings', 'Vasari, Giorgio', '2010-05-13', 59, 'https://www.gutenberg.org/ebooks/32362', 'en', 915), +(31001, 'Self-Instructor in the Art of Hair Work, Dressing Hair, Making Curls, Switches, Braids, and Hair Jewelry of Every Description.', 'Campbell, Mark, active 19th century', '2012-01-24', 101, 'https://www.gutenberg.org/ebooks/38658', 'en', 12204), +(31002, 'The Wreck of the Golden Mary', 'Dickens, Charles', '1998-09-01', 61, 'https://www.gutenberg.org/ebooks/1465', 'en', 1555), +(31003, 'Notes and Queries, Vol. V, Number 119, February 7, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-12', 10, 'https://www.gutenberg.org/ebooks/40742', 'en', 105), +(31004, 'Punchinello, Volume 1, No. 24, September 10, 1870', 'Various', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10032', 'en', 372), +(31005, 'Punch, or the London Charivari, May 6, 1914', 'Various', '2008-01-07', 15, 'https://www.gutenberg.org/ebooks/24207', 'en', 134), +(31006, 'Domestic Life in Virginia in the Seventeenth Century', 'Jester, Annie Lash', '2008-12-10', 31, 'https://www.gutenberg.org/ebooks/27482', 'en', 12205), +(31007, 'Die Einsamkeit', 'Tiedge, Christoph August', '2017-02-15', 6, 'https://www.gutenberg.org/ebooks/54170', 'de', 12206), +(31008, 'A Book of Sibyls: Miss Barbauld, Miss Edgeworth, Mrs Opie, Miss Austen', 'Ritchie, Anne Thackeray', '2009-11-09', 23, 'https://www.gutenberg.org/ebooks/30435', 'en', 12207), +(31009, 'The Cords of Vanity: A Comedy of Shirking', 'Cabell, James Branch', '2006-01-01', 21, 'https://www.gutenberg.org/ebooks/9608', 'en', 918), +(31010, 'The Variation of Animals and Plants under Domestication', 'Darwin, Charles', '2002-07-01', 46, 'https://www.gutenberg.org/ebooks/3332', 'en', 6662), +(31011, 'Helen in the Editor\'s Chair', 'Wheeler, Ruthe S.', '2013-02-04', 17, 'https://www.gutenberg.org/ebooks/42015', 'en', 1669), +(31012, 'Geordie\'s Tryst: A Tale of Scottish Life', 'Rae, Janet Milne', '2004-06-28', 12, 'https://www.gutenberg.org/ebooks/12765', 'en', 9172), +(31013, 'Children of the Desert', 'Dodge, Louis', '2008-09-07', 13, 'https://www.gutenberg.org/ebooks/26550', 'en', 12208), +(31014, 'Birds and Nature Vol. 11 No. 1 [January 1902]\nIllustrated by Color Photography', 'Various', '2014-12-07', 17, 'https://www.gutenberg.org/ebooks/47567', 'en', 490), +(31015, 'Märchen-Almanach auf das Jahr 1828', 'Hauff, Wilhelm', '2004-10-01', 35, 'https://www.gutenberg.org/ebooks/6640', 'de', 900), +(31016, 'Ιστορία των Εθνικών Δανείων\r\nΜέρος Α\' - Τα δάνεια της ανεξαρτησίας (1824-1825) - Το Δημόσιον Χρέος επί της Βαυαρικής Δυναστείας', 'Andreadis, Andreas', '2010-10-18', 21, 'https://www.gutenberg.org/ebooks/34095', 'el', 12209), +(31017, 'Red Rose and Tiger Lily; Or, In a Wider World', 'Meade, L. T.', '2007-10-13', 23, 'https://www.gutenberg.org/ebooks/23022', 'en', 1388), +(31018, 'The Atlantic Monthly, Volume 18, No. 110, December, 1866\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2005-12-04', 20, 'https://www.gutenberg.org/ebooks/17217', 'en', 1227), +(31019, 'La vita Italiana nel Risorgimento (1831-1846), parte 3\r\nSeconda serie - Lettere, scienze e arti', 'Various', '2016-03-08', 3, 'https://www.gutenberg.org/ebooks/51402', 'it', 999), +(31020, 'In Quest of Gold; Or, Under the Whanga Falls', 'St. Johnston, Alfred', '2013-05-28', 18, 'https://www.gutenberg.org/ebooks/42829', 'en', 792), +(31021, 'Punch, Or The London Charivari, Vol 150, February 9, 1916', 'Various', '2009-07-27', 8, 'https://www.gutenberg.org/ebooks/29518', 'en', 134), +(31022, 'Pelle the Conqueror — Volume 02', 'Andersen Nexø, Martin', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7792', 'en', 2079), +(31023, 'A Maid of the Kentucky Hills', 'Litsey, Edwin Carlile', '2011-02-02', 11, 'https://www.gutenberg.org/ebooks/35147', 'en', 1996), +(31024, 'L\'amic Fritz', 'Erckmann-Chatrian', '2006-02-22', 10, 'https://www.gutenberg.org/ebooks/17819', 'ca', 3075), +(31025, 'Australia, its history and present condition\ncontaining an account both of the bush and of the colonies,\nwith their respective inhabitants', 'Pridden, W. (William)', '2009-12-05', 17, 'https://www.gutenberg.org/ebooks/30607', 'en', 767), +(31026, 'An Enquiry Concerning the Principles of Taste, and of the Origin of our Ideas of Beauty, etc.', 'Reynolds, Frances', '2004-09-17', 23, 'https://www.gutenberg.org/ebooks/13485', 'en', 12210), +(31027, 'Sadan prosentin patriootti', 'Sinclair, Upton', '2017-03-11', 40, 'https://www.gutenberg.org/ebooks/54342', 'fi', 98), +(31028, 'Garside\'s Career: A Comedy in Four Acts', 'Brighouse, Harold', '2017-08-07', 5, 'https://www.gutenberg.org/ebooks/55290', 'en', 317), +(31029, 'The Penalty', 'Morris, Gouverneur', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12557', 'en', 654), +(31030, 'Henri V', 'Shakespeare, William', '2008-10-03', 24, 'https://www.gutenberg.org/ebooks/26762', 'fr', 12211), +(31031, 'The Chinese Classics: with a translation, critical and exegetical notes, prolegomena and copious indexes\r\n(Shih ching. English) — Volume 1', 'Legge, James', '2002-02-01', 104, 'https://www.gutenberg.org/ebooks/3100', 'zh', 5867), +(31032, 'A Witch Shall Be Born', 'Howard, Robert E. (Robert Ervin)', '2013-02-28', 208, 'https://www.gutenberg.org/ebooks/42227', 'en', 4698), +(31033, 'Missing Link', 'Herbert, Frank', '2007-10-27', 99, 'https://www.gutenberg.org/ebooks/23210', 'en', 26), +(31034, 'Sæfarinn: Ferðin kring um hnöttin neðansjávar', 'Verne, Jules', '2005-11-08', 23, 'https://www.gutenberg.org/ebooks/17025', 'is', 737), +(31035, 'Birds and All Nature, Vol. 5, No. 1, January 1899\r\nIllustrated by Color Photography', 'Various', '2014-12-23', 9, 'https://www.gutenberg.org/ebooks/47755', 'en', 1584), +(31036, 'On the Pampas; Or, The Young Settlers', 'Henty, G. A. (George Alfred)', '2004-09-01', 37, 'https://www.gutenberg.org/ebooks/6472', 'en', 5570), +(31037, 'Gibbon', 'Morison, James Cotter', '2006-07-17', 23, 'https://www.gutenberg.org/ebooks/18851', 'en', 12212), +(31038, 'Ballads of a Bohemian', 'Service, Robert W. (Robert William)', '1997-07-01', 76, 'https://www.gutenberg.org/ebooks/995', 'en', 8), +(31039, 'The proceedings of the Canadian Eclipse Party, 1869', 'Ashe, E. D. (Edward David)', '2011-02-23', 6, 'https://www.gutenberg.org/ebooks/35375', 'en', 12213), +(31040, 'Recollections of Europe', 'Cooper, James Fenimore', '2006-11-30', 61, 'https://www.gutenberg.org/ebooks/19983', 'en', 3093), +(31041, 'Les jardins, le faune et le poète', 'Gilbert de Voisins', '2014-08-25', 9, 'https://www.gutenberg.org/ebooks/46687', 'fr', 12214), +(31042, 'Delaware; or, The Ruined Family. Vol. 3', 'James, G. P. R. (George Payne Rainsford)', '2016-04-02', 11, 'https://www.gutenberg.org/ebooks/51630', 'en', 61), +(31043, 'The Gap in the Fence', 'Turle, Frederica J.', '2007-05-21', 17, 'https://www.gutenberg.org/ebooks/21547', 'en', 62), +(31044, 'Machiavelli, Volume I', 'Machiavelli, Niccolò', '2005-05-06', 189, 'https://www.gutenberg.org/ebooks/15772', 'en', 5135), +(31045, 'Harmonies of Political Economy\r\nTranslated from the Third French Edition, with a Notice of the Life and Writings of the Author', 'Bastiat, Frédéric', '2014-02-24', 30, 'https://www.gutenberg.org/ebooks/45002', 'en', 1745), +(31046, 'The New Book of Martyrs', 'Duhamel, Georges', '2003-08-01', 21, 'https://www.gutenberg.org/ebooks/4325', 'en', 12215), +(31047, 'The Life and Death of Doctor Faustus Made into a Farce', 'Marlowe, Christopher', '2011-09-14', 37, 'https://www.gutenberg.org/ebooks/37422', 'en', 3470), +(31048, 'Traité des Arènes\r\nconstruites au Pays de Liége, pour l\'écoulement et l\'épuisement des eaux dans les ouvrages souterrains des exploitations de mines de houille', 'Crassier, L.-M.-G de', '2008-03-12', 57, 'https://www.gutenberg.org/ebooks/24809', 'fr', 12216), +(31049, 'Patruunan palveluksessa: Näytelmä 3:ssa näytöksessä', 'Turunen, Armas E.', '2016-09-28', 1, 'https://www.gutenberg.org/ebooks/53167', 'fi', 382), +(31050, 'Um meeting na parvonia: poemeto escripto num canto', 'Anonymous', '2007-01-31', 11, 'https://www.gutenberg.org/ebooks/20495', 'pt', 8), +(31051, 'The Chronicles of Enguerrand de Monstrelet, Vol. 04 [of 13]\r\nContaining an account of the cruel civil wars between the houses of Orleans and Burgundy, of the possession of Paris and Normandy by the English, their expulsion thence, and of other memorable events that happened in the kingdom of France, as well as in other countries', 'Monstrelet, Enguerrand de', '2016-08-24', 13, 'https://www.gutenberg.org/ebooks/52889', 'en', 6786), +(31052, 'Prison of a Billion Years', 'Marlowe, Stephen', '2010-04-27', 33, 'https://www.gutenberg.org/ebooks/32150', 'en', 26), +(31053, 'Making the Nine', 'Dudley, Albertus T. (Albertus True)', '2018-01-22', 1, 'https://www.gutenberg.org/ebooks/56415', 'en', 487), +(31054, 'To Edison from Colonel Gouraud, Introducing Mr. Gladstone\r\nThe Phonograph\'s Salutation', NULL, '2003-11-01', 1, 'https://www.gutenberg.org/ebooks/10200', 'en', 1406), +(31055, 'The Pirates of Ersatz', 'Leinster, Murray', '2007-12-26', 97, 'https://www.gutenberg.org/ebooks/24035', 'en', 2042), +(31056, 'Jack Hinton: The Guardsman', 'Lever, Charles James', '2010-07-05', 67, 'https://www.gutenberg.org/ebooks/33082', 'en', 2044), +(31057, 'Crito', 'Plato', '1999-03-01', 283, 'https://www.gutenberg.org/ebooks/1657', 'en', 2286), +(31058, 'The Chronicles of Count Antonio', 'Hope, Anthony', '2012-08-23', 11, 'https://www.gutenberg.org/ebooks/40570', 'en', 5233), +(31059, 'The Lady of the Barge and Others, Entire Collection', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 72, 'https://www.gutenberg.org/ebooks/12133', 'en', 72), +(31060, 'Simon', 'Clouston, J. Storer (Joseph Storer)', '2008-08-14', 6, 'https://www.gutenberg.org/ebooks/26306', 'en', 61), +(31061, 'Memoirs of Napoleon Bonaparte — Volume 14', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 10, 'https://www.gutenberg.org/ebooks/3564', 'en', 1770), +(31062, 'Il nemico è in noi', 'Capuana, Luigi', '2013-05-04', 17, 'https://www.gutenberg.org/ebooks/42643', 'it', 61), +(31063, 'Molly and Kitty, or Peasant Life in Ireland; with Other Tales', 'Burg, Maria', '2015-02-28', 16, 'https://www.gutenberg.org/ebooks/48379', 'en', 1754), +(31064, 'Natural Philosophy', 'Ostwald, Wilhelm', '2013-09-22', 28, 'https://www.gutenberg.org/ebooks/43791', 'en', 4775), +(31065, 'A Captain in the Ranks: A Romance of Affairs', 'Eggleston, George Cary', '2009-10-15', 19, 'https://www.gutenberg.org/ebooks/30263', 'en', 61), +(31066, 'The Ladies\' Paradise', 'Zola, Émile', '2017-05-15', 116, 'https://www.gutenberg.org/ebooks/54726', 'en', 8501), +(31067, 'By the Roadside', 'Yates, Katherine M. (Katherine Merritte)', '2006-05-17', 14, 'https://www.gutenberg.org/ebooks/18409', 'en', 4424), +(31068, 'The War of the Worlds', 'Wells, H. G. (Herbert George)', '2004-10-01', 3607, 'https://www.gutenberg.org/ebooks/36', 'en', 1668), +(31069, 'The myth of the Jewish menace in world affairs\nor, The truth about the forged protocols of the elders of Zion', 'Wolf, Lucien', '2011-03-30', 34, 'https://www.gutenberg.org/ebooks/35711', 'en', 4179), +(31070, 'General Science', 'Clark, Bertha May', '2005-08-25', 48, 'https://www.gutenberg.org/ebooks/16593', 'en', 814), +(31071, 'Norby: Eine dramatische Dichtung', 'Bonsels, Waldemar', '2016-02-20', 11, 'https://www.gutenberg.org/ebooks/51254', 'de', 3978), +(31072, 'Swept Out to Sea\r\nOr, Clint Webb Among the Whalers', 'Foster, W. Bert (Walter Bertram)', '2007-12-02', 18, 'https://www.gutenberg.org/ebooks/23674', 'en', 12217), +(31073, 'Charles Sumner: his complete works, volume 19 (of 20)', 'Sumner, Charles', '2015-11-04', 5, 'https://www.gutenberg.org/ebooks/50386', 'en', 429), +(31074, 'Casaysayan ng Catotohanang Buhay ng Haring Clodeveo at Reyna Clotilde sa Reyno nang Francia', 'Ignacio, Cleto R.', '2006-01-01', 6, 'https://www.gutenberg.org/ebooks/17441', 'tl', 12218), +(31075, 'City of Endless Night', 'Hastings, Milo', '2006-02-01', 60, 'https://www.gutenberg.org/ebooks/9862', 'en', 26), +(31076, 'Michael and His Lost Angel: A Play in Five Acts', 'Jones, Henry Arthur', '2014-11-11', 15, 'https://www.gutenberg.org/ebooks/47331', 'en', 12219), +(31077, 'Roast Beef, Medium: The Business Adventures of Emma McChesney', 'Ferber, Edna', '2004-07-01', 24, 'https://www.gutenberg.org/ebooks/6016', 'en', 9200), +(31078, 'The Innocents Abroad — Volume 06', 'Twain, Mark', '2004-06-22', 21, 'https://www.gutenberg.org/ebooks/5693', 'en', 1408), +(31079, 'Greene Ferne Farm', 'Jefferies, Richard', '2011-08-12', 16, 'https://www.gutenberg.org/ebooks/37046', 'en', 5530), +(31080, 'A Life\'s Secret: A Novel', 'Wood, Henry, Mrs.', '2012-02-11', 50, 'https://www.gutenberg.org/ebooks/38832', 'en', 95), +(31081, 'Histoire de Marie-Antoinette, Volume 2 (of 2)', 'La Rocheterie, Maxime de', '2016-11-13', 10, 'https://www.gutenberg.org/ebooks/53503', 'fr', 4453), +(31082, 'Johnny Ludlow, Second Series', 'Wood, Henry, Mrs.', '2012-10-03', 20, 'https://www.gutenberg.org/ebooks/40928', 'en', 409), +(31083, 'English Literature and Society in the Eighteenth Century', 'Stephen, Leslie', '2007-04-17', 24, 'https://www.gutenberg.org/ebooks/21123', 'en', 12220), +(31084, 'Jutelmia läheltä ja kaukaa II: Salojärwen kukkanen', 'Hannikainen, Pietari', '2005-03-10', 28, 'https://www.gutenberg.org/ebooks/15316', 'fi', 61), +(31085, 'The Master-Girl', 'Hilliers, Ashton', '2019-03-09', 18, 'https://www.gutenberg.org/ebooks/59039', 'en', 5072), +(31086, 'Afternoon', 'Verhaeren, Emile', '2014-04-24', 12, 'https://www.gutenberg.org/ebooks/45466', 'en', 2237), +(31087, 'Silence En Otage: Poésie', 'Bertrand, Huguette', '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/4741', 'fr', 8), +(31088, 'De Wonderen van den Antichrist', 'Lagerlöf, Selma', '2011-05-22', 9, 'https://www.gutenberg.org/ebooks/36194', 'nl', 2186), +(31089, 'Specialiteiten', 'Multatuli', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10664', 'nl', 5388), +(31090, 'The Blue Wall\nA Story of Strangeness and Struggle', 'Child, Richard Washburn', '2008-01-29', 26, 'https://www.gutenberg.org/ebooks/24451', 'en', 1061), +(31091, 'The Origin and Nature of the Emotions; Miscellaneous Papers', 'Crile, George Washington', '1998-03-01', 42, 'https://www.gutenberg.org/ebooks/1233', 'en', 6997), +(31092, 'Fashion and Famine', 'Stephens, Ann S. (Ann Sophia)', '2012-07-01', 13, 'https://www.gutenberg.org/ebooks/40114', 'en', 61), +(31093, 'Short Stories: A Magazine of Fact and Fiction. Vol. V, No. 2, Mar. 1891', 'Various', '2019-06-24', 160, 'https://www.gutenberg.org/ebooks/59805', 'en', 2506), +(31094, 'Neighbors: Life Stories of the Other Half', 'Riis, Jacob A. (Jacob August)', '2010-05-25', 21, 'https://www.gutenberg.org/ebooks/32534', 'en', 9540), +(31095, 'Northern Nut Growers Association Incorporated 39th Annual Report\nat Norris, Tenn. September 13-15 1948', NULL, '2008-05-24', 9, 'https://www.gutenberg.org/ebooks/25583', 'en', 1486), +(31096, 'The Girl\'s Own Paper, Vol. XX. No. 997, February 4, 1899', 'Various', '2017-11-28', 7, 'https://www.gutenberg.org/ebooks/56071', 'en', 563), +(31097, 'Der persische Orden und andere Grotesken', 'Chekhov, Anton Pavlovich', '2016-12-14', 24, 'https://www.gutenberg.org/ebooks/53731', 'de', 12221), +(31098, 'The Assembly of God. Miscellaneous Writings of C. H. Mackintosh, vol. III', 'Mackintosh, Charles Henry', '2011-08-30', 11, 'https://www.gutenberg.org/ebooks/37274', 'en', 3575), +(31099, 'Agent Nine and the Jewel Mystery: A Story of Thrilling Exploits of the \"G\" Men', 'Dean, Graham M.', '2014-01-29', 31, 'https://www.gutenberg.org/ebooks/44786', 'en', 12222), +(31100, 'The Life of Albert Gallatin', 'Adams, Henry', '2014-05-15', 27, 'https://www.gutenberg.org/ebooks/45654', 'en', 11924), +(31101, '粉妝樓11-20回', 'Luo, Guanzhong', '2003-10-01', 10, 'https://www.gutenberg.org/ebooks/4573', 'zh', 1574), +(31102, 'Gil the Gunner: The Youngest Officer in the East', 'Fenn, George Manville', '2007-05-04', 22, 'https://www.gutenberg.org/ebooks/21311', 'en', 9206), +(31103, 'The Lighthouse', 'Ballantyne, R. M. (Robert Michael)', '2005-02-21', 27, 'https://www.gutenberg.org/ebooks/15124', 'en', 3532), +(31104, 'Divine Comedy, Longfellow\'s Translation, Hell', 'Dante Alighieri', '1997-08-01', 1424, 'https://www.gutenberg.org/ebooks/1001', 'en', 2212), +(31105, 'Traduzione di Elia Morpurgo de\' Discorsi Ebraici di Tolleranza e Felicità\r\ndiretti da Naftalì Herz Weisel, agli Ebrei dimoranti ne\' dominj dell\'Augustissimo Imperadore Giuseppe II. il Giusto con le note del traduttore', 'Morpurgo, Elia', '2012-07-24', 115, 'https://www.gutenberg.org/ebooks/40326', 'it', 12223), +(31106, 'The Atlantic Monthly, Volume 02, No. 11, September, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/10456', 'en', 1227); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(31107, 'How to Install Electric Bells, Annunciators, and Alarms.\r\nIncluding Batteries, Wires and Wiring, Circuits, Pushes, Bells, Burglar Alarms, High and Low Water Alarms, Fire Alarms, Thermostats, Annunciators, and the Location and Remedying of Troubles', 'Schneider, Norman H. (Norman Hugh)', '2018-06-25', 15, 'https://www.gutenberg.org/ebooks/57391', 'en', 12224), +(31108, 'The Rich Little Poor Boy', 'Gates, Eleanor', '2008-02-21', 24, 'https://www.gutenberg.org/ebooks/24663', 'en', 751), +(31109, 'The Mikado Jewel', 'Hume, Fergus', '2017-12-23', 25, 'https://www.gutenberg.org/ebooks/56243', 'en', 1425), +(31110, 'Madcap', 'Gibbs, George', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11584', 'en', 297), +(31111, 'The Great Round World and What Is Going On In It, Vol. 1, No. 41, August 19, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-27', 12, 'https://www.gutenberg.org/ebooks/15918', 'en', 1), +(31112, 'Triplanetary', 'Smith, E. E. (Edward Elmer)', '2010-06-06', 370, 'https://www.gutenberg.org/ebooks/32706', 'en', 67), +(31113, 'Rembrandt, With a Complete List of His Etchings', 'Hind, Arthur Mayger', '2010-02-05', 20, 'https://www.gutenberg.org/ebooks/31183', 'en', 12225), +(31114, 'Indiscretions of Archie', 'Wodehouse, P. G. (Pelham Grenville)', '2008-06-25', 177, 'https://www.gutenberg.org/ebooks/3756', 'en', 637), +(31115, 'Dogfight—1973', 'Reynolds, Mack', '2009-09-08', 68, 'https://www.gutenberg.org/ebooks/29940', 'en', 179), +(31116, 'True Stories of the Great War, Volume 3 (of 6)\r\nTales of Adventure--Heroic Deeds--Exploits Told by the Soldiers, Officers, Nurses, Diplomats, Eye Witnesses', NULL, '2015-05-31', 11, 'https://www.gutenberg.org/ebooks/49099', 'en', 449), +(31117, 'A peleskei notárius: Bohózat három szakaszban négy felvonással', 'Gaal, József', '2013-04-06', 15, 'https://www.gutenberg.org/ebooks/42471', 'hu', 12226), +(31118, 'Banquet du 17 janvier 1841', 'Towianski, Andrzej', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12301', 'fr', NULL), +(31119, 'The Last Twelve Verses of the Gospel According to S. Mark', 'Burgon, John William', '2008-07-27', 34, 'https://www.gutenberg.org/ebooks/26134', 'en', 12227), +(31120, 'The Works of Richard Hurd, Volume 3 (of 8)', 'Hurd, Richard', '2017-04-09', 10, 'https://www.gutenberg.org/ebooks/54514', 'en', 12228), +(31121, 'Benefactor', 'Smith, George H. (George Henry)', '2009-05-20', 25, 'https://www.gutenberg.org/ebooks/28892', 'en', 179), +(31122, 'The History of Woman Suffrage, Volume VI', NULL, '2009-09-21', 45, 'https://www.gutenberg.org/ebooks/30051', 'en', 10709), +(31123, 'Bodyguard', 'Gold, H. L. (Horace Leonard)', '2016-01-21', 33, 'https://www.gutenberg.org/ebooks/50988', 'en', 847), +(31124, 'Five Tales', 'Galsworthy, John', '2006-06-14', 70, 'https://www.gutenberg.org/ebooks/2684', 'en', 5118), +(31125, 'The Japan-Russia War: An Illustrated History of the War in the Far East', 'Tyler, Sydney', '2016-01-28', 48, 'https://www.gutenberg.org/ebooks/51066', 'en', 7672), +(31126, 'Colonial Records of Virginia', 'Various', '2007-09-13', 18, 'https://www.gutenberg.org/ebooks/22594', 'en', 7961), +(31127, 'Only One Love; or, Who Was the Heir', 'Garvice, Charles', '2011-03-09', 12, 'https://www.gutenberg.org/ebooks/35523', 'en', 61), +(31128, 'Conversations on Chemistry, V. 1-2\r\nIn Which the Elements of that Science Are Familiarly Explained and Illustrated by Experiments', 'Marcet, Mrs. (Jane Haldimand)', '2008-10-13', 67, 'https://www.gutenberg.org/ebooks/26908', 'en', 292), +(31129, 'El aprendiz de conspirador', 'Baroja, Pío', '2014-10-13', 58, 'https://www.gutenberg.org/ebooks/47103', 'es', 731), +(31130, 'The Seats of the Mighty, Volume 1', 'Parker, Gilbert', '2004-08-01', 17, 'https://www.gutenberg.org/ebooks/6224', 'en', 893), +(31131, 'Johann Sebastian Bach', 'Peyser, Herbert F. (Herbert Francis)', '2015-05-17', 21, 'https://www.gutenberg.org/ebooks/48977', 'en', 7436), +(31132, 'Picturesque Germany\nFirst Series', 'Anonymous', '2007-11-11', 21, 'https://www.gutenberg.org/ebooks/23446', 'en', 12229), +(31133, 'Éric le Mendiant', 'Zaccone, Pierre', '2006-02-03', 9, 'https://www.gutenberg.org/ebooks/17673', 'fr', 642), +(31134, 'Kustaa Vaasa ja hänen aikalaisensa I: Ruotsin vapauttaja\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-09-22', 5, 'https://www.gutenberg.org/ebooks/55600', 'fi', 12230), +(31135, 'Essays of Michel de Montaigne — Volume 10', 'Montaigne, Michel de', '2004-11-01', 20, 'https://www.gutenberg.org/ebooks/3590', 'en', 1964), +(31136, 'The Politeness of Princes, and Other School Stories', 'Wodehouse, P. G. (Pelham Grenville)', '2005-05-01', 132, 'https://www.gutenberg.org/ebooks/8178', 'en', 1779), +(31137, 'History of the Intellectual Development of Europe, Volume I (of 2)\nRevised Edition', 'Draper, John William', '2010-02-21', 26, 'https://www.gutenberg.org/ebooks/31345', 'en', 12231), +(31138, 'The Twin Ventriloquists; or, Nimble Ike and Jack the Juggler\r\nA Tale of Strategy and Jugglery', 'Old Sleuth', '2013-09-18', 24, 'https://www.gutenberg.org/ebooks/43765', 'en', 12232), +(31139, 'History of the Impeachment of Andrew Johnson, President of the United States, by the House of Representatives, and his trial by the Senate for high crimes and misdemeanors in office, 1868', 'Ross, Edmund G. (Edmund Gibson)', '2000-12-01', 35, 'https://www.gutenberg.org/ebooks/2442', 'en', 12233), +(31140, 'Records of the Fossil Mammal Sinclairella, Family Apatemyidae, From the Chadronian and Orellan', 'Clemens, William Alvin', '2009-10-20', 4, 'https://www.gutenberg.org/ebooks/30297', 'en', 11376), +(31141, 'Himmelsvolk: Ein Buch von Blumen, Tieren und Gott', 'Bonsels, Waldemar', '2008-11-09', 61, 'https://www.gutenberg.org/ebooks/27220', 'de', 625), +(31142, 'Tales of Old Japan', 'Redesdale, Algernon Bertram Freeman-Mitford, Baron', '2004-07-24', 195, 'https://www.gutenberg.org/ebooks/13015', 'en', 1809), +(31143, 'A. W. Kinglake: A Biographical and Literary Study', 'Tuckwell, William', '1996-05-01', 29, 'https://www.gutenberg.org/ebooks/539', 'en', 12234), +(31144, 'London Films', 'Howells, William Dean', '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/7130', 'en', 9012), +(31145, 'The Romantic Lady', 'Arlen, Michael', '2014-07-07', 62, 'https://www.gutenberg.org/ebooks/46217', 'en', 61), +(31146, 'The Elect Lady', 'MacDonald, George', '2005-09-01', 32, 'https://www.gutenberg.org/ebooks/8944', 'en', 2389), +(31147, 'Aunt Jane\'s Nieces in the Red Cross', 'Baum, L. Frank (Lyman Frank)', '2005-08-21', 43, 'https://www.gutenberg.org/ebooks/16567', 'en', 7872), +(31148, 'The Pirate of Panama: A Tale of the Fight for Buried Treasure', 'Raine, William MacLeod', '2007-09-24', 50, 'https://www.gutenberg.org/ebooks/22752', 'en', 12235), +(31149, 'The Countess of Albany', 'Lee, Vernon', '2009-03-07', 18, 'https://www.gutenberg.org/ebooks/28268', 'en', 12236), +(31150, 'Sex: Avoided subjects Discussed in Plain English', 'Stanton, Henry', '2007-12-02', 137, 'https://www.gutenberg.org/ebooks/23680', 'en', 2378), +(31151, 'My Days of Adventure\r\nThe Fall of France, 1870-71', 'Vizetelly, Ernest Alfred', '2006-02-01', 8, 'https://www.gutenberg.org/ebooks/9896', 'en', 4782), +(31152, 'The Tragedy of Ida Noble', 'Russell, William Clark', '2015-11-03', 8, 'https://www.gutenberg.org/ebooks/50372', 'en', 4731), +(31153, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 475, February 5, 1831', 'Various', '2004-10-22', 3, 'https://www.gutenberg.org/ebooks/13829', 'en', 133), +(31154, 'Speeches, Addresses, and Occasional Sermons, Volume 2 (of 3)', 'Parker, Theodore', '2010-12-13', 19, 'https://www.gutenberg.org/ebooks/34637', 'en', 2706), +(31155, 'The Arabian Nights Entertainments — Volume 04', NULL, '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/5667', 'en', 1007), +(31156, 'Cinco minutos', 'Alencar, José Martiniano de', '2013-12-29', 30, 'https://www.gutenberg.org/ebooks/44540', 'pt', 61), +(31157, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 493, June 11, 1831', 'Various', '2004-12-01', 8, 'https://www.gutenberg.org/ebooks/14230', 'en', 133), +(31158, 'A Narrative of the Life of Rev. Noah Davis, A Colored Man\r\nWritten by Himself, At The Age of Fifty-Four', 'Davis, Noah', '2006-12-03', 15, 'https://www.gutenberg.org/ebooks/20005', 'en', 12237), +(31159, 'Reports on the Maya Indians of Yucatan', 'Hernández, Francisco', '2012-06-04', 18, 'https://www.gutenberg.org/ebooks/39914', 'en', 9316), +(31160, 'Submarine and Anti-submarine', 'Newbolt, Henry John, Sir', '2016-06-28', 25, 'https://www.gutenberg.org/ebooks/52425', 'en', 12238), +(31161, 'Bats in the Wall; or, The Mystery of Trinity Church-yard', 'Raymond, P. T.', '2014-04-25', 15, 'https://www.gutenberg.org/ebooks/45492', 'en', 12239), +(31162, 'Rachel Gray: A Tale Founded on Fact', 'Kavanagh, Julia', '2011-05-18', 13, 'https://www.gutenberg.org/ebooks/36160', 'en', 1079), +(31163, 'Heroines of French Society\nin the Court, the Revolution, the Empire and the Restoration', 'Bearne, Mrs. (Catherine Mary Charlton)', '2018-05-14', 7, 'https://www.gutenberg.org/ebooks/57157', 'en', 12240), +(31164, 'A Desperate Chance; Or, The Wizard Tramp\'s Revelation, a Thrilling Narrative', 'Old Sleuth', '2004-01-01', 6, 'https://www.gutenberg.org/ebooks/10690', 'en', 1351), +(31165, 'Select Books Published by Mr. T. Fisher Unwin', 'T. Fisher Unwin (Firm)', '2019-02-20', 3, 'https://www.gutenberg.org/ebooks/58923', 'en', 2663), +(31166, 'Observations on the Mississippi Kite in Southwestern Kansas', 'Fitch, Henry S. (Henry Sheldon)', '2010-08-12', 13, 'https://www.gutenberg.org/ebooks/33412', 'en', 12241), +(31167, 'The Mountain Chant, A Navajo Ceremony\r\nFifth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1883-84, Government Printing Office, Washington, 1887, pages 379-468', 'Matthews, Washington', '2007-03-17', 41, 'https://www.gutenberg.org/ebooks/20839', 'en', 12242), +(31168, 'The Catholic World, Vol. 03, April to September, 1866', 'Various', '2012-10-12', 17, 'https://www.gutenberg.org/ebooks/41032', 'en', 96), +(31169, 'Kensington Rhymes', 'MacKenzie, Compton', '2012-03-13', 16, 'https://www.gutenberg.org/ebooks/39128', 'en', 2951), +(31170, 'All Adrift; Or, The Goldwing Club', 'Optic, Oliver', '2008-05-23', 24, 'https://www.gutenberg.org/ebooks/25577', 'en', 5395), +(31171, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 367, April 25, 1829', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11742', 'en', 133), +(31172, 'The Silver Princess in Oz', 'Thompson, Ruth Plumly', '2017-11-30', 33, 'https://www.gutenberg.org/ebooks/56085', 'en', 174), +(31173, 'Cosmic Consciousness\r\nThe Man-God Whom We Await', 'McIvor-Tyndall, Alexander J. (Alexander James)', '2004-11-10', 37, 'https://www.gutenberg.org/ebooks/14002', 'en', 746), +(31174, 'Art in England: Notes and Studies', 'Cook, Dutton', '2006-12-31', 27, 'https://www.gutenberg.org/ebooks/20237', 'en', 12243), +(31175, 'Little Folks of North America\nStories about children living in the different parts of North America', 'Wade, Mary Hazelton Blanchard', '2011-08-31', 11, 'https://www.gutenberg.org/ebooks/37280', 'en', 12244), +(31176, 'An Egyptian Princess — Volume 06', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5455', 'en', 803), +(31177, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 12 of 12)', 'Frazer, James George', '2013-01-27', 39, 'https://www.gutenberg.org/ebooks/44772', 'en', 75), +(31178, 'Napoléon: La dernière phase', 'Rosebery, Archibald Philip Primrose, Earl of', '2011-06-08', 21, 'https://www.gutenberg.org/ebooks/36352', 'fr', 840), +(31179, 'Finger Posts on the Way of Life', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 28, 'https://www.gutenberg.org/ebooks/4587', 'en', 2815), +(31180, 'The Decameron (Day 1 to Day 5)\nContaining an hundred pleasant Novels', 'Boccaccio, Giovanni', '2016-07-22', 53, 'https://www.gutenberg.org/ebooks/52617', 'en', 12245), +(31181, 'A Flight in Spring\r\nIn the car Lucania from New York to the Pacific coast and back, during April and May, 1898', 'Knowles, J. Harris (John Harris)', '2010-09-03', 26, 'https://www.gutenberg.org/ebooks/33620', 'en', 3913), +(31182, 'Thames Valley Villages, Volume 1 (of 2)', 'Harper, Charles G. (Charles George)', '2018-06-23', 15, 'https://www.gutenberg.org/ebooks/57365', 'en', 2256), +(31183, 'Seven Little People and their Friends', 'Scudder, Horace Elisha', '2008-02-26', 10, 'https://www.gutenberg.org/ebooks/24697', 'en', 3822), +(31184, 'Thakur-na: A Terran Empire story', 'Wilson, Ann', '2008-06-09', 10, 'https://www.gutenberg.org/ebooks/25745', 'en', 179), +(31185, 'Punch, or the London Charivari, Volume 153, November 7, 1917', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11570', 'en', 134), +(31186, 'The Voyages of Pedro Fernandez de Quiros, 1595 to 1606. Volume 1', 'Queirós, Pedro Fernandes de', '2012-10-27', 22, 'https://www.gutenberg.org/ebooks/41200', 'en', 12246), +(31187, 'Ritual Conformity\r\nInterpretations of the Rubrics of the Prayer-Book Agreed Upon by a Conference Held at All Saints, Margaret-street, 1880-1881', NULL, '2010-02-03', 12, 'https://www.gutenberg.org/ebooks/31177', 'en', 12247), +(31188, 'Punch, or the London Charivari, Vol. 108, June 1, 1895', 'Various', '2013-04-08', 5, 'https://www.gutenberg.org/ebooks/42485', 'en', 134), +(31189, 'Ameboid movement', 'Schaeffer, Asa A. (Asa Arthur)', '2017-08-26', 16, 'https://www.gutenberg.org/ebooks/55432', 'en', 12248), +(31190, 'Voimaihminen: Vaiheita Chilen vapaussodasta', 'Conrad, Joseph', '2014-09-09', 4, 'https://www.gutenberg.org/ebooks/46819', 'fi', 12249), +(31191, 'The Farmer Boy, and How He Became Commander-In-Chief', 'Heady, Morrison', '2008-10-24', 10, 'https://www.gutenberg.org/ebooks/27012', 'en', 7558), +(31192, 'The Lord of Dynevor: A Tale of the Times of Edward the First', 'Everett-Green, Evelyn', '2004-08-20', 6, 'https://www.gutenberg.org/ebooks/13227', 'en', 12250), +(31193, 'Gulliver\'s Reis Naar Liliput', 'Schmidt, Otto Ernst', '2009-05-18', 32, 'https://www.gutenberg.org/ebooks/28866', 'nl', 781), +(31194, 'A Handbook of Illustration', 'Hinton, A. Horsley (Alfred Horsley)', '2013-08-25', 135, 'https://www.gutenberg.org/ebooks/43557', 'en', 2020), +(31195, 'Love-Songs of Childhood', 'Field, Eugene', '2001-06-01', 30, 'https://www.gutenberg.org/ebooks/2670', 'en', 859), +(31196, 'Life and Death of Harriett Frean', 'Sinclair, May', '2005-11-01', 29, 'https://www.gutenberg.org/ebooks/9298', 'en', 2019), +(31197, 'Rattle OK', 'Warner, Harry', '2016-01-31', 34, 'https://www.gutenberg.org/ebooks/51092', 'en', 26), +(31198, 'Reis door Griekenland\r\nDe Aarde en haar Volken, 1887', 'Anonymous', '2005-09-26', 14, 'https://www.gutenberg.org/ebooks/16755', 'nl', 4713), +(31199, 'Ebrietatis Encomium\nor, the Praise of Drunkenness', 'Sallengre, Albert-Henri de', '2009-06-21', 28, 'https://www.gutenberg.org/ebooks/29188', 'en', 12251), +(31200, 'Preston Fight; or, The Insurrection of 1715', 'Ainsworth, William Harrison', '2015-09-02', 17, 'https://www.gutenberg.org/ebooks/49851', 'en', 12252), +(31201, 'The Worshippers', 'Knight, Damon', '2007-09-10', 71, 'https://www.gutenberg.org/ebooks/22560', 'en', 26), +(31202, 'My Friends at Brook Farm', 'Sears, John Van der Zee', '2005-01-01', 7, 'https://www.gutenberg.org/ebooks/7302', 'en', 12253), +(31203, 'Charities and the Commons: The Pittsburgh Survey, Part II. The Place and Its Social Forces', 'Various', '2014-06-18', 16, 'https://www.gutenberg.org/ebooks/46025', 'en', 12254), +(31204, 'Encyclopaedia Britannica, 11th Edition, \"Basso-relievo\" to \"Bedfordshire\"\r\nVolume 3, Slice 4', 'Various', '2010-11-22', 37, 'https://www.gutenberg.org/ebooks/34405', 'en', 1081), +(31205, 'The Sports and Pastimes of the People of England\r\nIncluding the Rural and Domestic Recreations, May Games, Mummeries, Shows, Processions, Pageants, and Pompous Spectacles from the Earliest Period to the Present Time', 'Strutt, Joseph', '2015-05-17', 22, 'https://www.gutenberg.org/ebooks/48983', 'en', 12255), +(31206, 'Il libro delle figurazioni ideali', 'Lucini, Gian Pietro', '2006-02-06', 13, 'https://www.gutenberg.org/ebooks/17687', 'it', 8), +(31207, 'The Man Who Did Not Die: The Story of Elijah', 'Willard, J. H. (James Hartwell)', '2010-01-09', 13, 'https://www.gutenberg.org/ebooks/30899', 'en', 7216), +(31208, 'The Story of the Thirty-second Regiment, Massachusetts Infantry\nWhence it came; where it went; what it saw, and what it did', 'Parker, Francis J. (Francis Jewett)', '2015-10-06', 15, 'https://www.gutenberg.org/ebooks/50140', 'en', 1489), +(31209, 'Les douze nouvelles nouvelles', 'Houssaye, Arsène', '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/11928', 'fr', 348), +(31210, 'Molly Brown of Kentucky', 'Speed, Nell', '2011-07-15', 18, 'https://www.gutenberg.org/ebooks/36736', 'en', 146), +(31211, 'Text Book of Biology, Part 1: Vertebrata', 'Wells, H. G. (Herbert George)', '2007-06-08', 100, 'https://www.gutenberg.org/ebooks/21781', 'en', 12256), +(31212, 'Evolution', 'Hoare, Edward', '2016-06-08', 9, 'https://www.gutenberg.org/ebooks/52273', 'en', 12257), +(31213, 'Inducements to the Colored People of the United States to Emigrate to British Guiana', 'Carbery, Edward', '2019-01-21', 7, 'https://www.gutenberg.org/ebooks/58749', 'en', 12258), +(31214, 'South African Memories\r\nSocial, Warlike & Sporting from Diaries Written at the Time', 'Wilson, Sarah Isabella Augusta, Lady', '2004-12-25', 38, 'https://www.gutenberg.org/ebooks/14466', 'en', 6548), +(31215, 'Checking the Waste: A Study in Conservation', 'Gregory, Mary Huston', '2007-02-24', 15, 'https://www.gutenberg.org/ebooks/20653', 'en', 7432), +(31216, 'State of the Union Addresses', 'McKinley, William', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/5031', 'en', 1926), +(31217, 'Kobo: A Story of the Russo-Japanese War', 'Strang, Herbert', '2013-11-30', 25, 'https://www.gutenberg.org/ebooks/44316', 'en', 6190), +(31218, '蘇洵集', 'Su, Xun', '2008-05-03', 17, 'https://www.gutenberg.org/ebooks/25321', 'zh', 2859), +(31219, 'Debate on Woman Suffrage in the Senate of the United States,\n2d Session, 49th Congress, December 8, 1886, and January 25, 1887', 'Various', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11114', 'en', 3357), +(31220, 'Old Time Wall Papers\r\nAn Account of the Pictorial Papers on Our Forefathers\' Walls with a Study of the Historical Development of Wall Paper Making and Decoration', 'Sanborn, Kate', '2012-12-19', 14, 'https://www.gutenberg.org/ebooks/41664', 'en', 12259), +(31221, 'Oogie Finds Love', 'Livingston, Berkeley', '2010-05-16', 10, 'https://www.gutenberg.org/ebooks/32396', 'en', 179), +(31222, 'Letters to Dead Authors', 'Lang, Andrew', '1998-10-01', 31, 'https://www.gutenberg.org/ebooks/1491', 'en', 2156), +(31223, 'Maximina', 'Palacio Valdés, Armando', '2010-07-24', 17, 'https://www.gutenberg.org/ebooks/33244', 'en', 434), +(31224, 'The History of Duelling. Vol. 2 (of 2)', 'Millingen, J. G. (John Gideon)', '2018-08-15', 13, 'https://www.gutenberg.org/ebooks/57701', 'en', 2823), +(31225, 'The Sign of the Spider', 'Mitford, Bertram', '2008-12-10', 14, 'https://www.gutenberg.org/ebooks/27476', 'en', 12260), +(31226, 'Snövit barnens julkalender 1918\nIllustrerad läsning ur verklighetens och sagans värld', 'Various', '2017-02-17', 9, 'https://www.gutenberg.org/ebooks/54184', 'sv', 388), +(31227, 'International Weekly Miscellany of Literature, Art and Science - Volume 1, No. 6, August 5, 1850', 'Various', '2004-10-06', 8, 'https://www.gutenberg.org/ebooks/13643', 'en', 380), +(31228, 'Imogen; Or, Only Eighteen', 'Molesworth, Mrs.', '2013-07-08', 17, 'https://www.gutenberg.org/ebooks/43133', 'en', 45), +(31229, 'Human Genome Project, rough draft, Chromosome Number 14', 'Human Genome Project', '2000-06-01', 3, 'https://www.gutenberg.org/ebooks/2214', 'en', 2318), +(31230, 'Fishes of the Wakarusa River in Kansas', 'Metcalf, Artie L.', '2010-03-05', 6, 'https://www.gutenberg.org/ebooks/31513', 'en', 12261), +(31231, 'The Camp Fire Girls in the Outside World', 'Vandercook, Margaret', '2007-10-10', 11, 'https://www.gutenberg.org/ebooks/22938', 'en', 622), +(31232, 'Cours familier de Littérature - Volume 27', 'Lamartine, Alphonse de', '2015-07-10', 8, 'https://www.gutenberg.org/ebooks/49409', 'fr', 1765), +(31233, 'The Leicestershires beyond Baghdad', 'Thompson, Edward John', '2006-09-26', 11, 'https://www.gutenberg.org/ebooks/19379', 'en', 12262), +(31234, 'Wells Brothers: The Young Cattle Kings', 'Adams, Andy', '2004-06-30', 45, 'https://www.gutenberg.org/ebooks/12791', 'en', 315), +(31235, 'A Manual of the Art of Bookbinding\r\nContaining full instructions in the different branches of forwarding, gilding, and finishing. Also, the art of marbling book-edges and paper.', 'Nicholson, James B. (James Bartram)', '2017-07-06', 26, 'https://www.gutenberg.org/ebooks/55056', 'en', 12263), +(31236, 'The Ladies Lindores, Vol. 3 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-08', 18, 'https://www.gutenberg.org/ebooks/47593', 'en', 376), +(31237, 'The Earliest Electromagnetic Instruments', 'Chipman, Robert A.', '2010-10-12', 43, 'https://www.gutenberg.org/ebooks/34061', 'en', 3966), +(31238, 'The Letter of Petrus Peregrinus on the Magnet, A.D. 1269', 'Pierre, de Maricourt, active 13th century', '2015-11-21', 20, 'https://www.gutenberg.org/ebooks/50524', 'en', 12264), +(31239, 'New York Times Current History: The European War from the Beginning to March 1915, Vol 1, No. 2\nWho Began the War, and Why?', 'Various', '2005-07-19', 27, 'https://www.gutenberg.org/ebooks/16331', 'en', 335), +(31240, 'The Acorn-Planter\nA California Forest Play (1916)', 'London, Jack', '2007-07-19', 28, 'https://www.gutenberg.org/ebooks/22104', 'en', 6761), +(31241, 'A Dog of Flanders', 'Ouida', '2005-03-01', 160, 'https://www.gutenberg.org/ebooks/7766', 'en', 12265), +(31242, 'Mr. Midshipman Glover, R.N.: A Tale of the Royal Navy of To-day', 'Jeans, T. T. (Thomas Tendron)', '2014-07-28', 13, 'https://www.gutenberg.org/ebooks/46441', 'en', 323), +(31243, 'Wizard Will, the Wonder Worker', 'Ingraham, Prentiss', '2013-07-26', 13, 'https://www.gutenberg.org/ebooks/43301', 'en', 153), +(31244, 'The Coming Conquest of England', 'Niemann, August', '2006-05-14', 91, 'https://www.gutenberg.org/ebooks/2026', 'en', 2659), +(31245, 'Au bord du lac\nL\'Esclave, le Serf, le Chevrier de Lorraine, l\'Apprenti', 'Souvestre, Émile', '2008-12-28', 10, 'https://www.gutenberg.org/ebooks/27644', 'fr', 61), +(31246, 'Donatello, by Lord Balcarres', 'Crawford, David Lindsay, Earl of', '2006-04-01', 33, 'https://www.gutenberg.org/ebooks/18099', 'en', 7308), +(31247, 'Letters of Ulysses S. Grant to His Father and His Youngest Sister, 1857-78', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-09-15', 7, 'https://www.gutenberg.org/ebooks/13471', 'en', 12266), +(31248, 'On Growth and Form', 'Thompson, D\'Arcy Wentworth', '2017-08-04', 256, 'https://www.gutenberg.org/ebooks/55264', 'en', 12267), +(31249, 'No Sect in Heaven', 'Cleaveland, Elizabeth H. Jocelyn (Elizabeth Hannah Jocelyn)', '2008-10-06', 2, 'https://www.gutenberg.org/ebooks/26796', 'en', 3607), +(31250, 'Elizabeth Gilbert and Her Work for the Blind', 'Martin, Frances', '2010-03-21', 11, 'https://www.gutenberg.org/ebooks/31721', 'en', 12268), +(31251, 'The German Terror in Belgium: An Historical Record', 'Toynbee, Arnold', '2015-12-18', 20, 'https://www.gutenberg.org/ebooks/50716', 'en', 2936), +(31252, 'Contemporary American History, 1877-1913', 'Beard, Charles A. (Charles Austin)', '2010-11-08', 20, 'https://www.gutenberg.org/ebooks/34253', 'en', 1561), +(31253, 'Glinda of Oz\r\nIn Which Are Related the Exciting Experiences of Princess Ozma of Oz, and Dorothy, in Their Hazardous Journey to the Home of the Flatheads, and to the Magic Isle of the Skeezers, and How They Were Rescued from Dire Peril by the Sorcery of Glinda the Good', 'Baum, L. Frank (Lyman Frank)', '1997-07-01', 334, 'https://www.gutenberg.org/ebooks/961', 'en', 2203), +(31254, 'The Life of the Venerable Mother Mary of the Incarnation', 'Anonymous', '2004-09-01', 7, 'https://www.gutenberg.org/ebooks/6486', 'en', 869), +(31255, 'The Blue Pavilions', 'Quiller-Couch, Arthur', '2006-11-30', 30, 'https://www.gutenberg.org/ebooks/19977', 'en', 1391), +(31256, 'Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves: Volume XVI, Texas Narratives, Part 4', 'United States. Work Projects Administration', '2011-02-23', 59, 'https://www.gutenberg.org/ebooks/35381', 'en', 12269), +(31257, 'Quotes and Images From The Diary of Samuel Pepys', 'Pepys, Samuel', '2004-09-03', 10, 'https://www.gutenberg.org/ebooks/7554', 'en', 1026), +(31258, 'L\'Illustration, No. 1590, 16 Août 1873', 'Various', '2014-08-24', 8, 'https://www.gutenberg.org/ebooks/46673', 'fr', 150), +(31259, 'The American Missionary — Volume 43, No. 03, March, 1889', 'Various', '2005-06-22', 4, 'https://www.gutenberg.org/ebooks/16103', 'en', 395), +(31260, 'Buchanan\'s Journal of Man, February 1887\nVolume 1, Number 1', NULL, '2007-08-16', 31, 'https://www.gutenberg.org/ebooks/22336', 'en', 1974), +(31261, 'Scandinavian Relations with Ireland During the Viking Period', 'Walsh, A.', '2016-05-10', 16, 'https://www.gutenberg.org/ebooks/52041', 'en', 6847), +(31262, 'Himlauret eller det profetiska ordet\nHänvisningar. 3 öfversigtstabeller och 1 diagram', 'Franson, Fredrik', '2005-05-07', 10, 'https://www.gutenberg.org/ebooks/15786', 'sv', 4149), +(31263, 'The Romance of the Red Triangle\r\nThe story of the coming of the red triangle and the service rendered by the Y.M.C.A. to the sailors and soldiers of the British Empire', 'Yapp, Arthur K. (Arthur Keysall)', '2010-06-27', 20, 'https://www.gutenberg.org/ebooks/32998', 'en', 12270), +(31264, 'Freshwater Sponges, Hydroids & Polyzoa', 'Annandale, Nelson', '2011-06-24', 25, 'https://www.gutenberg.org/ebooks/36504', 'en', 12271), +(31265, 'The Village and The Newspaper', 'Crabbe, George', '2004-03-01', 34, 'https://www.gutenberg.org/ebooks/5203', 'en', 54), +(31266, 'Reminiscences of the Guilford Grays, Co. B., 27th N.C. Regiment', 'Sloan, John A. (John Alexander)', '2013-11-07', 14, 'https://www.gutenberg.org/ebooks/44124', 'en', 12272), +(31267, 'A Daughter of the Snows', 'London, Jack', '2005-01-10', 67, 'https://www.gutenberg.org/ebooks/14654', 'en', 315), +(31268, 'Intermere', 'Taylor, William Alexander', '2016-10-02', 11, 'https://www.gutenberg.org/ebooks/53193', 'en', 1483), +(31269, 'German Culture Past and Present', 'Bax, Ernest Belfort', '2007-01-27', 18, 'https://www.gutenberg.org/ebooks/20461', 'en', 12273), +(31270, 'Guilty Bonds', 'Le Queux, William', '2012-11-23', 8, 'https://www.gutenberg.org/ebooks/41456', 'en', 167), +(31271, 'Centenario do Revolução de 1820\nIntegração de Aveiro nesse glorioso movimento', 'Gomes, Marques', '2008-04-21', 16, 'https://www.gutenberg.org/ebooks/25113', 'pt', 12274), +(31272, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 288, Supplementary Number', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11326', 'en', 133), +(31273, 'Three short stories from \"The Captain\" volume XXVII\r\nHow Dymock Came to Derry; Jack Devereux\'s Scoop; The Powder Hulk', 'Westerman, Percy F. (Percy Francis)', '2018-07-18', 10, 'https://www.gutenberg.org/ebooks/57533', 'en', 179), +(31274, 'Hombres y glorias de América', 'Piñeyro, Enrique', '2014-02-15', 28, 'https://www.gutenberg.org/ebooks/44918', 'es', 12275), +(31275, 'Applied Psychology: Driving Power of Thought\r\nBeing the Third in a Series of Twelve Volumes on the Applications of Psychology to the Problems of Personal and Business Efficiency', 'Hilton, Warren', '2010-07-04', 41, 'https://www.gutenberg.org/ebooks/33076', 'en', 12276), +(31276, 'Lancashire: Brief Historical and Descriptive Notes', 'Grindon, Leo H. (Leo Hartley)', '2012-08-26', 14, 'https://www.gutenberg.org/ebooks/40584', 'en', 12277), +(31277, 'The Lost Fruits of Waterloo', 'Bassett, John Spencer', '2016-04-26', 17, 'https://www.gutenberg.org/ebooks/51865', 'en', 12278), +(31278, 'Rejected Addresses; Or, The New Theatrum Poetarum', 'Smith, Horace', '2003-02-01', 19, 'https://www.gutenberg.org/ebooks/3769', 'en', 2529), +(31279, 'Expositions of Holy Scripture: St. John Chaps. XV to XXI', 'Maclaren, Alexander', '2005-06-01', 30, 'https://www.gutenberg.org/ebooks/8381', 'en', 8598), +(31280, 'The Ice-Maiden: and Other Tales.', 'Andersen, H. C. (Hans Christian)', '2006-06-16', 72, 'https://www.gutenberg.org/ebooks/18604', 'en', 1007), +(31281, 'The Splendid Outcast', 'Gibbs, George', '2015-01-06', 11, 'https://www.gutenberg.org/ebooks/47900', 'en', 8591), +(31282, '\"Browne\'s Folly\"\r\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9253', 'en', 20), +(31283, 'Little Visits with Great Americans, Vol. 1 (of 2)\r\nOr Success, Ideals and How to Attain Them', NULL, '2015-02-10', 14, 'https://www.gutenberg.org/ebooks/48174', 'en', 414), +(31284, 'Pius IX. And His Time', 'Dawson, Æneas MacDonell', '2009-06-17', 17, 'https://www.gutenberg.org/ebooks/29143', 'en', 12279), +(31285, 'Mrs. Pendleton\'s Four-in-hand', 'Atherton, Gertrude Franklin Horn', '2016-01-27', 10, 'https://www.gutenberg.org/ebooks/51059', 'en', 4186), +(31286, 'Rough Translation', 'Janis, Jean M.', '2010-04-14', 21, 'https://www.gutenberg.org/ebooks/31980', 'en', 179), +(31287, 'A Syllabus of Kentucky Folk-Songs', 'Combs, Josiah Henry', '2008-10-16', 17, 'https://www.gutenberg.org/ebooks/26937', 'en', 12280), +(31288, 'The Tin Woodman of Oz\nA Faithful Story of the Astonishing Adventure Undertaken\nby the Tin Woodman, assisted by Woot the Wanderer, the\nScarecrow of Oz, and Polychrome, the Rainbow\'s Daughter', 'Baum, L. Frank (Lyman Frank)', '2010-01-04', 130, 'https://www.gutenberg.org/ebooks/30852', 'en', 12281), +(31289, 'The Boy Scouts in the Great Flood', 'Shaler, Robert', '2015-05-13', 8, 'https://www.gutenberg.org/ebooks/48948', 'en', 3774), +(31290, 'The Double Four', 'Oppenheim, E. Phillips (Edward Phillips)', '2009-02-15', 32, 'https://www.gutenberg.org/ebooks/28091', 'en', 12282), +(31291, 'Eight Illustrations to Shakespeare\'s Tempest\r\nDesigned by Walter Crane', 'Crane, Walter', '2007-11-15', 36, 'https://www.gutenberg.org/ebooks/23479', 'en', 9345), +(31292, 'King Henry VIII', 'Shakespeare, William', '1999-07-01', 24, 'https://www.gutenberg.org/ebooks/1802', 'en', 8715), +(31293, 'Missing Friends\nBeing the Adventures of a Danish Emigrant in Queensland (1871-1880)', 'Weitemeyer, Thorvald Peter Ludwig', '2011-06-13', 14, 'https://www.gutenberg.org/ebooks/36399', 'en', 12283), +(31294, 'Obstetrical Nursing\r\nA Text-Book on the Nursing Care of the Expectant Mother, the Woman in Labor, the Young Mother and Her Baby', 'Van Blarcom, Carolyn Conant', '2019-04-09', 13, 'https://www.gutenberg.org/ebooks/59234', 'en', 12284), +(31295, 'The Life of Mrs. Humphry Ward', 'Trevelyan, Janet Penrose', '2012-07-24', 14, 'https://www.gutenberg.org/ebooks/40319', 'en', 10799), +(31296, 'A Trip to Cuba', 'Howe, Julia Ward', '2011-12-03', 17, 'https://www.gutenberg.org/ebooks/38203', 'en', 3680), +(31297, 'Johnny Crow\'s Garden', 'Brooke, L. Leslie (Leonard Leslie)', '2003-12-01', 67, 'https://www.gutenberg.org/ebooks/10469', 'en', 343), +(31298, 'The Vehement Flame', 'Deland, Margaret Wade Campbell', '2005-05-28', 36, 'https://www.gutenberg.org/ebooks/15927', 'en', 828), +(31299, 'Probability', 'Trimble, Louis', '2010-06-08', 39, 'https://www.gutenberg.org/ebooks/32739', 'en', 2229), +(31300, 'World\'s End: A Story in Three Books', 'Jefferies, Richard', '2011-08-14', 16, 'https://www.gutenberg.org/ebooks/37079', 'en', 1335), +(31301, 'Storie da ridere.... e da piangere', 'Morselli, Ercole Luigi', '2012-10-02', 41, 'https://www.gutenberg.org/ebooks/40917', 'it', 474), +(31302, 'An apology for the study of northern antiquities', 'Elstob, Elizabeth', '2005-03-11', 13, 'https://www.gutenberg.org/ebooks/15329', 'en', 12285), +(31303, 'Pogonologia; Or, A Philosophical and Historical Essay on Beards', 'Dulaure, J.-A. (Jacques-Antoine)', '2019-03-04', 10, 'https://www.gutenberg.org/ebooks/59006', 'en', 4414), +(31304, 'Minerva\'s Manoeuvres: The Cheerful Facts of a \"Return to Nature\"', 'Loomis, Charles Battell', '2018-03-29', 10, 'https://www.gutenberg.org/ebooks/56872', 'en', 2625), +(31305, 'Iphigeneia Tauriissa: Viisinäytöksinen näytelmä', 'Goethe, Johann Wolfgang von', '2014-04-23', 8, 'https://www.gutenberg.org/ebooks/45459', 'fi', 4626), +(31306, 'A Book of Irish Verse\r\nSelected from modern writers, with an introduction and notes by W. B. Yeats', NULL, '2011-10-25', 35, 'https://www.gutenberg.org/ebooks/37845', 'en', 139), +(31307, 'Cinq années de ma vie, 1894-1899', 'Dreyfus, Alfred', '2011-11-16', 15, 'https://www.gutenberg.org/ebooks/38031', 'fr', 7576), +(31308, 'The Last Poems of Ovid', 'Ovid', '2007-06-24', 40, 'https://www.gutenberg.org/ebooks/21920', 'en', 4338), +(31309, 'Human Genome Project, Build 34, Chromosome Number 15', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11789', 'en', 1385), +(31310, 'Rosmersholm: Schauspiel in vier Aufzügen', 'Ibsen, Henrik', '2011-08-07', 22, 'https://www.gutenberg.org/ebooks/36997', 'de', 9080), +(31311, 'Cupology: How to Be Entertaining', 'Clara', '2008-08-17', 20, 'https://www.gutenberg.org/ebooks/26339', 'en', 5750), +(31312, 'Lay Down Your Arms: The Autobiography of Martha von Tilling', 'Suttner, Bertha von', '2015-06-27', 24, 'https://www.gutenberg.org/ebooks/49294', 'en', 1122), +(31313, 'Moby Dick; Or, The Whale', 'Melville, Herman', '2001-01-01', 593, 'https://www.gutenberg.org/ebooks/2489', 'en', 1391), +(31314, 'The Public Orations of Demosthenes, volume 2', 'Demosthenes', '2005-10-01', 32, 'https://www.gutenberg.org/ebooks/9061', 'en', 12286), +(31315, 'Merenneito: 5-näytöksinen näytelmä', 'Ibsen, Henrik', '2015-02-23', 8, 'https://www.gutenberg.org/ebooks/48346', 'fi', 12287), +(31316, 'Old Spookses\' Pass, Malcolm\'s Katie, and other poems', 'Crawford, Isabella Valancy', '2004-11-01', 9, 'https://www.gutenberg.org/ebooks/6815', 'en', 28), +(31317, 'Happy Ending: The Collected Lyrics of Louise Imogen Guiney', 'Guiney, Louise Imogen', '2017-05-14', 8, 'https://www.gutenberg.org/ebooks/54719', 'en', 178), +(31318, 'Arnold Böcklin', 'Schmid, Heinrich Alfred', '2006-05-23', 36, 'https://www.gutenberg.org/ebooks/18436', 'de', 122), +(31319, 'Publications of the Scottish History Society, Volume 36\r\nJournals of Sir John Lauder Lord Fountainhall with His Observations on Public Affairs and Other Memoranda 1665-1676', 'Fountainhall, John Lauder, Lord', '2004-07-17', 13, 'https://www.gutenberg.org/ebooks/12930', 'en', 2364), +(31320, 'De \'handel in blanke slavinnen\'.', 'Collard, Wolter Louis Albert', '2009-07-11', 18, 'https://www.gutenberg.org/ebooks/29371', 'nl', 2611), +(31321, 'Peeps at Many Lands: Ancient Egypt', 'Baikie, James', '2007-09-29', 53, 'https://www.gutenberg.org/ebooks/22799', 'en', 12288), +(31322, 'Spring Days', 'Moore, George', '2004-07-01', 21, 'https://www.gutenberg.org/ebooks/6029', 'en', 7171), +(31323, 'Quest of the Golden Ape', 'Marlowe, Stephen', '2010-06-23', 57, 'https://www.gutenberg.org/ebooks/32953', 'en', 323), +(31324, 'Index of the Project Gutenberg Works of Henry James', 'James, Henry', '2019-05-08', 20, 'https://www.gutenberg.org/ebooks/59462', 'en', 198), +(31325, 'Rattlin the Reefer', 'Howard, Edward', '2007-05-22', 13, 'https://www.gutenberg.org/ebooks/21578', 'en', 324), +(31326, 'Rodman The Boatsteerer And Other Stories\n1898', 'Becke, Louis', '2008-03-15', 28, 'https://www.gutenberg.org/ebooks/24836', 'en', 179), +(31327, 'L\'Illustration, No. 3237, 11 Mars 1905', 'Various', '2010-10-24', 6, 'https://www.gutenberg.org/ebooks/33881', 'fr', 150), +(31328, 'The New Eldorado: A Summer Journey to Alaska', 'Ballou, Maturin M. (Maturin Murray)', '2016-09-28', 12, 'https://www.gutenberg.org/ebooks/53158', 'en', 497), +(31329, 'The Graftons: A Novel', 'Marshall, Archibald', '2012-05-01', 8, 'https://www.gutenberg.org/ebooks/39587', 'en', 376), +(31330, 'The House of Defence v. 2', 'Benson, E. F. (Edward Frederic)', '2014-05-28', 12, 'https://www.gutenberg.org/ebooks/45801', 'en', 1902), +(31331, 'The Sins of the Cities of the Plain; or, The Recollections of a Mary-Ann\r\nwith Short Essays on Sodomy and Tribadism', 'Saul, Jack', '2017-01-14', 249, 'https://www.gutenberg.org/ebooks/53964', 'en', 12289), +(31332, 'ASCE 1193: The Water-Works and Sewerage of Monterrey, N. L., Mexico\r\nThe 4th article from the June, 1911, Volume LXXII, Transactions of the American Society of Civil Engineers. Paper No. 1193, Feb. 1, 1911.', 'Conway, G. R. G. (George Robert Graham)', '2011-12-31', 16, 'https://www.gutenberg.org/ebooks/38455', 'en', 12290), +(31333, 'The Tapestried Chamber, and Death of the Laird\'s Jock', 'Scott, Walter', '1999-03-01', 44, 'https://www.gutenberg.org/ebooks/1668', 'en', 1922), +(31334, 'Memoir of Old Elizabeth, A Coloured Woman', 'Old Elizabeth', '2006-02-22', 22, 'https://www.gutenberg.org/ebooks/17826', 'en', 12291), +(31335, 'La fille du capitaine', 'Pushkin, Aleksandr Sergeevich', '2009-12-09', 13, 'https://www.gutenberg.org/ebooks/30638', 'fr', 12292), +(31336, 'The Book of Old English Ballads', 'Edwards, George Wharton', '2005-12-01', 30, 'https://www.gutenberg.org/ebooks/9405', 'en', 4582), +(31337, 'Making Fermented Pickles', 'LeFevre, Edwin', '2015-04-17', 42, 'https://www.gutenberg.org/ebooks/48722', 'en', 12293), +(31338, 'Medoline Selwyn\'s Work', 'Colter, J. J., Mrs.', '2006-03-26', 2, 'https://www.gutenberg.org/ebooks/18052', 'en', 61), +(31339, 'Graham\'s Magazine, Vol. XL, No. 4, April 1852', 'Various', '2019-08-21', 0, 'https://www.gutenberg.org/ebooks/60148', 'en', NULL), +(31340, 'Scientific American, Volume XXIV., No. 12, March 18, 1871\nA Weekly Journal of Practical Information, Art, Science,\nMechanics, Chemistry, and Manufactures.', 'Various', '2006-09-05', 24, 'https://www.gutenberg.org/ebooks/19180', 'en', 352), +(31341, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 477, February 19, 1831', 'Various', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12568', 'en', 133), +(31342, 'Maori Religion and Mythology\r\nIllustrated by Translations of Traditions, Karakia, &c., to Which Are Added Notes on Maori Tenure of Land', 'Shortland, Edward', '2013-02-26', 114, 'https://www.gutenberg.org/ebooks/42218', 'en', 7572), +(31343, 'The Poetical Works of Sir Edward Bulwer Lytton, Bart. M.P.', 'Lytton, Edward Bulwer Lytton, Baron', '2010-11-12', 23, 'https://www.gutenberg.org/ebooks/34298', 'en', 532), +(31344, 'The Princess Virginia', 'Williamson, C. N. (Charles Norris)', '2009-08-17', 21, 'https://www.gutenberg.org/ebooks/29715', 'en', 61), +(31345, 'The Confessions of Jean Jacques Rousseau — Volume 03', 'Rousseau, Jean-Jacques', '2004-12-06', 10, 'https://www.gutenberg.org/ebooks/3903', 'en', 1419), +(31346, 'More Tales of the Ridings', 'Moorman, F. W. (Frederic William)', '2006-04-26', 19, 'https://www.gutenberg.org/ebooks/18260', 'en', 4398), +(31347, 'Mr. Murray\'s List of New and Recent Publications July, 1890', 'John Murray (Firm)', '2004-10-10', 4, 'https://www.gutenberg.org/ebooks/13688', 'en', 12294), +(31348, 'Πολιτικός', 'Plato', '2011-01-09', 23, 'https://www.gutenberg.org/ebooks/34896', 'el', 2286), +(31349, 'La dame de Monsoreau — ­Tome 1.', 'Dumas, Alexandre', '2006-01-01', 56, 'https://www.gutenberg.org/ebooks/9637', 'fr', 9760), +(31350, 'Yorke The Adventurer', 'Becke, Louis', '2008-01-28', 11, 'https://www.gutenberg.org/ebooks/23821', 'en', 2357), +(31351, 'Thirteen Stories', 'Cunninghame Graham, R. B. (Robert Bontine)', '2015-03-17', 14, 'https://www.gutenberg.org/ebooks/48510', 'en', 179), +(31352, 'That Unfortunate Marriage, Vol. 2', 'Trollope, Frances Eleanor', '2011-04-24', 18, 'https://www.gutenberg.org/ebooks/35944', 'en', 5040), +(31353, 'The Brighton Boys in Transatlantic Flight', 'Driscoll, James R.', '2017-06-24', 8, 'https://www.gutenberg.org/ebooks/54973', 'en', 1892), +(31354, 'Pen Pictures, of Eventful Scenes and Struggles of Life', 'Craig, B. F. (Benjamin Franklin)', '2014-12-06', 6, 'https://www.gutenberg.org/ebooks/47558', 'en', 8133), +(31355, '\"Swingin Round the Cirkle.\"\r\nHis Ideas Of Men, Politics, And Things, As Set Forth In\r\nHis Letters To The Public Press, During The Year 1866.', 'Locke, David Ross', '2005-12-05', 23, 'https://www.gutenberg.org/ebooks/17228', 'en', 12295), +(31356, 'Unveiling a Parallel: A Romance', 'Merchant, Ella', '2013-05-26', 50, 'https://www.gutenberg.org/ebooks/42816', 'en', 10637), +(31357, 'The Soul of a People', 'Fielding, H. (Harold)', '2009-07-27', 21, 'https://www.gutenberg.org/ebooks/29527', 'en', 12296), +(31358, 'Ben Pepper', 'Sidney, Margaret', '2011-02-05', 40, 'https://www.gutenberg.org/ebooks/35178', 'en', 585), +(31359, 'Diary of Samuel Pepys — Volume 11: June/July/August 1661', 'Pepys, Samuel', '2004-11-29', 27, 'https://www.gutenberg.org/ebooks/4128', 'en', 1231), +(31360, 'The New Teaching of History\r\nWith a reply to some recent criticisms of The Outline of History', 'Wells, H. G. (Herbert George)', '2019-06-01', 56, 'https://www.gutenberg.org/ebooks/59650', 'en', 1098), +(31361, 'The Story of Glass', 'Bassett, Sara Ware', '2007-02-27', 62, 'https://www.gutenberg.org/ebooks/20698', 'en', 12297), +(31362, 'Neues Spanisch-Deutsches Wörterbuch\r\nAuf Grund des Wörterbuches der Königlich spanischen Akademie', 'Stromer, Theodor', '2019-01-27', 34, 'https://www.gutenberg.org/ebooks/58782', 'de', 12298), +(31363, 'The Village in the Mountains; Conversion of Peter Bayssière; and History of a Bible', 'Wilder, Sampson Vryling Stoddard', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/10831', 'en', 12299), +(31364, 'The Motor Girls', 'Penrose, Margaret', '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/4914', 'en', 2096), +(31365, 'The Friends of Voltaire', 'Hall, Evelyn Beatrice', '2018-02-21', 27, 'https://www.gutenberg.org/ebooks/56618', 'en', 12300), +(31366, 'De kinderen van Kapitein Grant, eerste deel (van 3)\r\nZuid-Amerika', 'Verne, Jules', '2012-02-02', 20, 'https://www.gutenberg.org/ebooks/38667', 'nl', 3039), +(31367, 'The Works of the Rev. Hugh Binning', 'Binning, Hugh', '2008-01-10', 48, 'https://www.gutenberg.org/ebooks/24238', 'en', 717), +(31368, 'Harper\'s Round Table, Index, 1896', 'Various', '2019-05-13', 8, 'https://www.gutenberg.org/ebooks/59496', 'en', 668), +(31369, 'The Long Portage', 'Bindloss, Harold', '2008-06-27', 27, 'https://www.gutenberg.org/ebooks/25910', 'en', 65), +(31370, 'Mémoires du maréchal Marmont, duc de Raguse (8/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2010-10-18', 16, 'https://www.gutenberg.org/ebooks/33875', 'fr', 1169), +(31371, 'Richard Lejonhjerta i historien och poesin: Akademisk afhandling', 'Estlander, Carl Gustaf', '2018-12-26', 8, 'https://www.gutenberg.org/ebooks/58544', 'sv', 12013), +(31372, 'Japonette', 'Chambers, Robert W. (Robert William)', '2016-08-18', 8, 'https://www.gutenberg.org/ebooks/52842', 'en', 2999), +(31373, 'Die Germania', 'Tacitus, Cornelius', '2012-04-29', 81, 'https://www.gutenberg.org/ebooks/39573', 'de', 6091), +(31374, 'Suonion kootut runoelmat ja kertoelmat', 'Krohn, Julius', '2012-11-24', 12, 'https://www.gutenberg.org/ebooks/41469', 'fi', 1171), +(31375, 'The Fairy Godmothers and Other Tales', 'Gatty, Alfred, Mrs.', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/11319', 'en', 195), +(31376, 'Harper\'s Young People, February 22, 1881\nAn Illustrated Weekly', 'Various', '2014-02-16', 3, 'https://www.gutenberg.org/ebooks/44927', 'en', 479), +(31377, 'The Origin of the World According to Revelation and Science', 'Dawson, John William, Sir', '2010-07-02', 31, 'https://www.gutenberg.org/ebooks/33049', 'en', 9677), +(31378, 'The Story of Paul Jones: An Historical Romance', 'Lewis, Alfred Henry', '2017-01-17', 9, 'https://www.gutenberg.org/ebooks/53990', 'en', 4024), +(31379, 'The Bat', 'Hopwood, Avery', '2000-01-01', 53, 'https://www.gutenberg.org/ebooks/2019', 'en', 128), +(31380, 'Nelson the Newsboy; Or, Afloat in New York', 'Stratemeyer, Edward', '2017-03-19', 16, 'https://www.gutenberg.org/ebooks/54389', 'en', 9066), +(31381, 'Take Me for a Ride: Coming of Age in a Destructive Cult', 'Laxer, Mark E.', '1994-09-01', 43, 'https://www.gutenberg.org/ebooks/162', 'en', 12301), +(31382, 'The Man Who Rocked the Earth', 'Wood, Robert Williams', '2006-09-04', 23, 'https://www.gutenberg.org/ebooks/19174', 'en', 26), +(31383, 'The Lives of the Fathers, Martyrs, and Other Principal Saints, Vol. 7. July', 'Butler, Alban', '2015-08-04', 17, 'https://www.gutenberg.org/ebooks/49604', 'en', 7068), +(31384, 'Val d\'Arno\r\nTen Lectures on the Tuscan Art Directly Antecedent to the Florentine Year of Victories; Given Before the University of Oxford in Michaelmas Term, 1873', 'Ruskin, John', '2005-07-01', 17, 'https://www.gutenberg.org/ebooks/8523', 'en', 5295), +(31385, 'The First Book of Farming', 'Goodrich, C. L. (Charles Landon)', '2005-10-18', 28, 'https://www.gutenberg.org/ebooks/16900', 'en', 2757), +(31386, 'Undine', 'La Motte-Fouqué, Friedrich Heinrich Karl, Freiherr de', '2001-09-01', 118, 'https://www.gutenberg.org/ebooks/2825', 'en', 12302), +(31387, 'Transhimalaja: Löytöjä ja seikkailuja Tibetissä. 2 (of 2)', 'Hedin, Sven Anders', '2015-12-20', 1, 'https://www.gutenberg.org/ebooks/50729', 'fi', 10902), +(31388, 'Paul Jones', 'Hapgood, Hutchins', '2009-04-29', 12, 'https://www.gutenberg.org/ebooks/28633', 'en', 122), +(31389, 'Potash and Perlmutter Settle Things', 'Glass, Montague', '2006-11-28', 32, 'https://www.gutenberg.org/ebooks/19948', 'en', 12303), +(31390, 'An American Robinson Crusoe for American Boys and Girls', 'Allison, Samuel B. (Samuel Buell)', '2007-08-13', 26, 'https://www.gutenberg.org/ebooks/22309', 'en', 1229), +(31391, 'The Conquest of Canada, Vol. 2', 'Warburton, George', '2011-01-06', 18, 'https://www.gutenberg.org/ebooks/34862', 'en', 1643), +(31392, 'Fanny Herself', 'Ferber, Edna', '2008-07-03', 120, 'https://www.gutenberg.org/ebooks/350', 'en', 12304), +(31393, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 5)', 'Guizot, François', '2006-05-01', 8, 'https://www.gutenberg.org/ebooks/18294', 'fr', 12305), +(31394, 'Border Ghost Stories', 'Pease, Howard', '2008-12-08', 37, 'https://www.gutenberg.org/ebooks/27449', 'en', 531), +(31395, 'Elegia da solidão', 'Pascoais, Teixeira de', '2007-10-07', 33, 'https://www.gutenberg.org/ebooks/22907', 'pt', 8), +(31396, 'Joseph Conrad', 'Walpole, Hugh', '2015-07-13', 19, 'https://www.gutenberg.org/ebooks/49436', 'en', 4965), +(31397, 'The Living Link: A Novel', 'De Mille, James', '2005-08-01', 20, 'https://www.gutenberg.org/ebooks/8711', 'en', 61), +(31398, 'New Word-Analysis\nOr, School Etymology of English Derivative Words', 'Swinton, William', '2006-09-22', 31, 'https://www.gutenberg.org/ebooks/19346', 'en', 4211), +(31399, 'The American Missionary — Volume 34, No. 10, October, 1880', 'Various', '2017-07-08', 3, 'https://www.gutenberg.org/ebooks/55069', 'en', 395), +(31400, 'Seth\'s Brother\'s Wife: A Study of Life in the Greater New York', 'Frederic, Harold', '2017-06-26', 8, 'https://www.gutenberg.org/ebooks/54987', 'en', 5500), +(31401, 'The Cat: Its Natural History; Domestic Varieties; Management and Treatment', 'Rule, Philip M.', '2013-10-11', 21, 'https://www.gutenberg.org/ebooks/43930', 'en', 1576), +(31402, 'Free and Impartial Thoughts, on the Sovereignty of God, The Doctrines of Election, Reprobation, and Original Sin: Humbly Addressed To all who Believe and Profess those Doctrines.', 'Finch, Richard', '2009-03-24', 15, 'https://www.gutenberg.org/ebooks/28401', 'en', 2182), +(31403, 'Un hollandais à Paris en 1891: Sensations de littérature et d\'art', 'Byvanck, W. G. C. (Willem Geertrudus Cornelis)', '2017-10-30', 12, 'https://www.gutenberg.org/ebooks/55855', 'fr', 12306), +(31404, 'Falkland, Book 3.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 18, 'https://www.gutenberg.org/ebooks/7759', 'en', 61), +(31405, 'The Story of Ireland', 'Lawless, Emily', '2004-04-01', 51, 'https://www.gutenberg.org/ebooks/11917', 'en', 7442), +(31406, 'Only a Girl: or, A Physician for the Soul.', 'Hillern, Wilhelmine von', '2011-07-11', 6, 'https://www.gutenberg.org/ebooks/36709', 'en', 803), +(31407, 'The Life of Bismarck, Private and Political\nWith Descriptive Notices of His Ancestry', 'Hesekiel, George', '2019-01-27', 17, 'https://www.gutenberg.org/ebooks/58776', 'en', 12307), +(31408, 'Proportional Representation Applied To Party Government\r\nA New Electoral System', 'Ashworth, H. P. C.', '2004-12-25', 15, 'https://www.gutenberg.org/ebooks/14459', 'en', 12047), +(31409, 'Modern Painters, Volume 5 (of 5)', 'Ruskin, John', '2013-12-01', 37, 'https://www.gutenberg.org/ebooks/44329', 'en', 2250), +(31410, 'In My Nursery', 'Richards, Laura Elizabeth Howe', '2012-05-20', 17, 'https://www.gutenberg.org/ebooks/39741', 'en', 343), +(31411, 'Winter. Tage.', 'Edschmid, Kasimir', '2012-09-18', 6, 'https://www.gutenberg.org/ebooks/40789', 'de', 60), +(31412, 'The Watchers: A Novel', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-27', 64, 'https://www.gutenberg.org/ebooks/38693', 'en', 323), +(31413, 'Recalled to Life', 'Allen, Grant', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/5832', 'en', 972), +(31414, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 08, June 12, 1858', NULL, '2015-05-26', 8, 'https://www.gutenberg.org/ebooks/49052', 'en', 1741), +(31415, 'Der Streit über die Tragödie', 'Lipps, Theodor', '2005-06-01', 8, 'https://www.gutenberg.org/ebooks/8375', 'de', 5175), +(31416, 'Alhaisolauluja', 'Kaatra, Kössi', '2016-04-30', 10, 'https://www.gutenberg.org/ebooks/51891', 'fi', 1171), +(31417, 'A New Subspecies of Wood Rat (Neotoma mexicana) from Colorado', 'Finley, Robert B.', '2010-02-01', 21, 'https://www.gutenberg.org/ebooks/31148', 'en', 7764), +(31418, 'Punch, or the London Charivari, Volume 107, December 29th 1894', 'Various', '2014-09-09', 11, 'https://www.gutenberg.org/ebooks/46826', 'en', 134), +(31419, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2006-11-06', 114, 'https://www.gutenberg.org/ebooks/19722', 'en', 2951), +(31420, 'Don Orsino', 'Crawford, F. Marion (Francis Marion)', '2004-08-19', 7, 'https://www.gutenberg.org/ebooks/13218', 'en', 6658), +(31421, 'History of the Decline and Fall of the Roman Empire — Volume 4', 'Gibbon, Edward', '2008-06-07', 122, 'https://www.gutenberg.org/ebooks/734', 'en', 1292); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(31422, 'Rose D\'Albret; or, Troublous Times.', 'James, G. P. R. (George Payne Rainsford)', '2016-01-17', 2, 'https://www.gutenberg.org/ebooks/50943', 'en', 6798), +(31423, 'Major Prophets of To-Day', 'Slosson, Edwin E. (Edwin Emery)', '2015-02-06', 49, 'https://www.gutenberg.org/ebooks/48180', 'en', 4934), +(31424, 'The Life of George Washington: A Linked Index to the Project Gutenberg Editions', 'Marshall, John', '2009-05-18', 41, 'https://www.gutenberg.org/ebooks/28859', 'en', 198), +(31425, 'Ethnological results of the Point Barrow expedition\r\nNinth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1887-1888, Government Printing Office, Washington, 1892, pages 3-442', 'Murdoch, John', '2013-08-26', 16, 'https://www.gutenberg.org/ebooks/43568', 'en', 12308), +(31426, 'Last Days of the Rebellion\r\nThe Second New York Cavalry (Harris\' Light) at Appomattox Station and Appomattox Court House, April 8 and 9, 1865', 'Randol, Alanson M.', '2010-04-13', 9, 'https://www.gutenberg.org/ebooks/31974', 'en', 12309), +(31427, 'Macaria', 'Evans, Augusta J. (Augusta Jane)', '2009-01-14', 24, 'https://www.gutenberg.org/ebooks/27811', 'en', 12310), +(31428, 'The Pecan and its Culture', 'Hume, H. Harold (Hardrada Harold)', '2009-02-13', 24, 'https://www.gutenberg.org/ebooks/28065', 'en', 12311), +(31429, 'Boy Scouts in the Philippines; Or, The Key to the Treaty Box', 'Ralphson, G. Harvey (George Harvey)', '2006-12-29', 25, 'https://www.gutenberg.org/ebooks/20208', 'en', 12312), +(31430, 'London Cries & Public Edifices', 'Leighton, John', '2018-11-20', 10, 'https://www.gutenberg.org/ebooks/58312', 'en', 9115), +(31431, 'Über die weiblichen Brüste', 'Klees, Johann Georg', '2016-07-23', 24, 'https://www.gutenberg.org/ebooks/52628', 'de', 12313), +(31432, 'En ollenkaan muista\r\n4-näytöksinen näytelmä', 'Jahnsson, Evald Ferdinand', '2005-01-25', 10, 'https://www.gutenberg.org/ebooks/14801', 'fi', 247), +(31433, 'North American Wild Flowers', 'Traill, Catharine Parr Strickland', '2018-01-02', 10, 'https://www.gutenberg.org/ebooks/56288', 'en', 12314), +(31434, 'Mémoires du comte Reynier ... Campagne d\'Égypte, deuxième partie', 'Reynier, Jean-Louis-Ebenézer', '2012-04-01', 9, 'https://www.gutenberg.org/ebooks/39325', 'fr', 840), +(31435, 'Useful Knowledge: Volume 2. Vegetables\r\nOr, a familiar account of the various productions of nature', 'Bingley, William', '2018-09-23', 23, 'https://www.gutenberg.org/ebooks/57954', 'en', 12315), +(31436, 'Lord Jim', 'Conrad, Joseph', '2006-01-09', 515, 'https://www.gutenberg.org/ebooks/5658', 'en', 12316), +(31437, 'Go to Cromer', 'Anonymous', '2018-10-17', 7, 'https://www.gutenberg.org/ebooks/58120', 'en', 12317), +(31438, 'Betty Leicester\'s Christmas', 'Jewett, Sarah Orne', '2013-01-13', 11, 'https://www.gutenberg.org/ebooks/41831', 'en', 12318), +(31439, 'The American Missionary — Volume 41, No. 1, January, 1887', 'Various', '2018-04-01', 3, 'https://www.gutenberg.org/ebooks/56886', 'en', 395), +(31440, 'The Land Beyond the Forest: Facts, Figures, and Fancies from Transylvania', 'Gerard, E. (Emily)', '2018-05-16', 67, 'https://www.gutenberg.org/ebooks/57168', 'en', 8234), +(31441, 'Chambers\'s Edinburgh Journal, No. 446\nVolume 18, New Series, July 17, 1852', 'Various', '2007-03-13', 9, 'https://www.gutenberg.org/ebooks/20806', 'en', 18), +(31442, 'L\'Illustration, No. 0033, 14 Octobre 1843', 'Various', '2012-03-12', 3, 'https://www.gutenberg.org/ebooks/39117', 'fr', 150), +(31443, 'Equatorial America\r\nDescriptive of a Visit to St. Thomas, Martinique, Barbadoes, and the Principal Capitals of South America', 'Ballou, Maturin M. (Maturin Murray)', '2011-08-03', 18, 'https://www.gutenberg.org/ebooks/36963', 'en', 3841), +(31444, 'Rollo\'s Museum', 'Abbott, Jacob', '2008-05-20', 26, 'https://www.gutenberg.org/ebooks/25548', 'en', 37), +(31445, 'North of Fifty-Three', 'Sinclair, Bertrand W.', '2006-10-09', 17, 'https://www.gutenberg.org/ebooks/19510', 'en', 61), +(31446, 'König Heinrich der vierte. Der Erste Theil', 'Shakespeare, William', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7933', 'de', 1665), +(31447, 'The History of Orange County New York', NULL, '2015-06-22', 7, 'https://www.gutenberg.org/ebooks/49260', 'en', 12319), +(31448, 'The Red Lure', 'Snell, Roy J. (Roy Judson)', '2013-05-11', 10, 'https://www.gutenberg.org/ebooks/42688', 'en', 323), +(31449, 'The Man Who Would Be King', 'Kipling, Rudyard', '2005-05-01', 429, 'https://www.gutenberg.org/ebooks/8147', 'en', 12320), +(31450, 'The Life and Letters of Maria Edgeworth, Volume 2', 'Edgeworth, Maria', '2005-10-01', 22, 'https://www.gutenberg.org/ebooks/9095', 'en', 12321), +(31451, 'The Shuttle', 'Burnett, Frances Hodgson', '2006-03-18', 83, 'https://www.gutenberg.org/ebooks/506', 'en', 2190), +(31452, 'It Never Can Happen Again', 'De Morgan, William', '2014-07-08', 55, 'https://www.gutenberg.org/ebooks/46228', 'en', 4905), +(31453, 'The Story of the Great War, Volume 6\r\nHistory of the European War from Official Sources', NULL, '2009-07-12', 65, 'https://www.gutenberg.org/ebooks/29385', 'en', 335), +(31454, 'From the Ranks', 'King, Charles', '2005-08-20', 20, 'https://www.gutenberg.org/ebooks/16558', 'en', 12322), +(31455, 'The Story of the Great War, Volume 1\r\nIntroductions; Special Articles; Causes of War; Diplomatic and State Papers', NULL, '2009-03-05', 109, 'https://www.gutenberg.org/ebooks/28257', 'en', 335), +(31456, 'The Jericho Road', 'Adkins, W. Bion', '2004-10-20', 19, 'https://www.gutenberg.org/ebooks/13816', 'en', 12323), +(31457, 'Ivanhoe (4/4)\nLe retour du croisé', 'Scott, Walter', '2010-12-09', 22, 'https://www.gutenberg.org/ebooks/34608', 'fr', 98), +(31458, 'Experiments with Alternate Currents of High Potential and High Frequency\r\nA Lecture Delivered before the Institution of Electrical Engineers, London', 'Tesla, Nikola', '2004-09-16', 174, 'https://www.gutenberg.org/ebooks/13476', 'en', 12324), +(31459, 'Lucile Triumphant', 'Duffield, Elizabeth M.', '2008-12-28', 7, 'https://www.gutenberg.org/ebooks/27643', 'en', 12325), +(31460, 'Nostromo: A Tale of the Seaboard', 'Conrad, Joseph', '2006-01-09', 313, 'https://www.gutenberg.org/ebooks/2021', 'en', 324), +(31461, 'Invasions des Sarrazins en France\r\net de France en Savoie, en Piémont et dans la Suisse, pendant les 8e, 9e et 10e siècles de notre ère', 'Reinaud, Joseph Toussaint', '2013-07-26', 12, 'https://www.gutenberg.org/ebooks/43306', 'fr', 6411), +(31462, 'Pressure, Resistance, and Stability of Earth\r\nAmerican Society of Civil Engineers: Transactions, Paper No. 1174, Volume LXX, December 1910', 'Meem, J. C.', '2005-10-25', 19, 'https://www.gutenberg.org/ebooks/16938', 'en', 12326), +(31463, 'Poems and Ballads of Heinrich Heine', 'Heine, Heinrich', '2010-03-21', 53, 'https://www.gutenberg.org/ebooks/31726', 'en', 1867), +(31464, 'Ermeline\na ballad', NULL, '2008-10-06', 10, 'https://www.gutenberg.org/ebooks/26791', 'en', 54), +(31465, 'Thirteen Years of a Busy Woman\'s Life', 'Alec-Tweedie, Mrs. (Ethel)', '2017-08-04', 11, 'https://www.gutenberg.org/ebooks/55263', 'en', 12327), +(31466, 'Maid Marian', 'Peacock, Thomas Love', '1997-07-01', 92, 'https://www.gutenberg.org/ebooks/966', 'en', 12328), +(31467, 'A Chariot of Fire', 'Phelps, Elizabeth Stuart', '2010-11-08', 27, 'https://www.gutenberg.org/ebooks/34254', 'en', 179), +(31468, 'Personal Experience of a Physician', 'Ellis, John', '2004-09-01', 17, 'https://www.gutenberg.org/ebooks/6481', 'en', 6587), +(31469, 'Salliman oikkuja', 'Alkio, Santeri', '2015-12-17', 4, 'https://www.gutenberg.org/ebooks/50711', 'fi', 61), +(31470, 'The Chocolate Soldier\r\nOr, Heroism—The Lost Chord of Christianity', 'Studd, C. T. (Charles Thomas)', '2007-08-16', 75, 'https://www.gutenberg.org/ebooks/22331', 'en', 1130), +(31471, 'The American Missionary — Volume 43, No. 04, April, 1889', 'Various', '2005-06-22', 6, 'https://www.gutenberg.org/ebooks/16104', 'en', 562), +(31472, 'Stover at Yale', 'Johnson, Owen', '2014-08-24', 40, 'https://www.gutenberg.org/ebooks/46674', 'en', 4642), +(31473, 'The Children\'s Story of the War Volume 4 (of 10)\r\nThe Story of the Year 1915', 'Parrott, Edward', '2011-02-24', 11, 'https://www.gutenberg.org/ebooks/35386', 'en', 1250), +(31474, 'Son of Power', 'Comfort, Will Levington', '2006-11-29', 12, 'https://www.gutenberg.org/ebooks/19970', 'en', 323), +(31475, 'Quotes and Images From The Works of Gilbert Parker', 'Parker, Gilbert', '2004-08-27', 20, 'https://www.gutenberg.org/ebooks/7553', 'en', 1026), +(31476, 'A Man\'s Hearth', 'Ingram, Eleanor M. (Eleanor Marie)', '2011-06-23', 20, 'https://www.gutenberg.org/ebooks/36503', 'en', 109), +(31477, 'Norman Vallery; or, How to Overcome Evil with Good', 'Kingston, William Henry Giles', '2008-06-29', 25, 'https://www.gutenberg.org/ebooks/25928', 'en', 470), +(31478, 'A Constitution in Making (1660-1714)', NULL, '2016-05-11', 10, 'https://www.gutenberg.org/ebooks/52046', 'en', 12329), +(31479, 'El Estudiante de Salamanca and Other Selections', 'Espronceda, José de', '2005-05-07', 31, 'https://www.gutenberg.org/ebooks/15781', 'es', 8), +(31480, 'Itämeren risteilijä', 'Rydberg, Viktor', '2007-01-29', 13, 'https://www.gutenberg.org/ebooks/20466', 'fi', 98), +(31481, 'The Feast of St. Friend', 'Bennett, Arnold', '2005-01-10', 28, 'https://www.gutenberg.org/ebooks/14653', 'en', 949), +(31482, 'The Story of the Scottish Covenants in Outline', 'Fleming, David Hay', '2016-10-02', 10, 'https://www.gutenberg.org/ebooks/53194', 'en', 12330), +(31483, 'Jessie\'s Parrot', 'Mathews, Joanna H. (Joanna Hooe)', '2013-11-07', 12, 'https://www.gutenberg.org/ebooks/44123', 'en', 1655), +(31484, 'The Inns and Taverns of \"Pickwick\"\r\nWith Some Observations on Their Other Associations', 'Matz, B. W. (Bertram Waldrom)', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/5204', 'en', 12331), +(31485, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 270, August 25, 1827', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11321', 'en', 133), +(31486, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 04 (de 12)', 'Castelo Branco, Camilo', '2008-04-21', 17, 'https://www.gutenberg.org/ebooks/25114', 'pt', 410), +(31487, 'The Spell of the Hawaiian Islands and the Philippines', 'Anderson, Isabel', '2012-11-23', 18, 'https://www.gutenberg.org/ebooks/41451', 'en', 4987), +(31488, 'The God in the Car: A Novel', 'Hope, Anthony', '2012-08-26', 17, 'https://www.gutenberg.org/ebooks/40583', 'en', 95), +(31489, 'Harper\'s Round Table, July 23, 1895', 'Various', '2010-07-04', 65, 'https://www.gutenberg.org/ebooks/33071', 'en', 668), +(31490, 'L\'Illustration, No. 0028, 9 Septembre 1843', 'Various', '2012-01-05', 8, 'https://www.gutenberg.org/ebooks/38499', 'fr', 150), +(31491, 'Kynällä ja kiväärillä: \"Sissin\" itsenäisyys- ja vapaustaistelumme ajalta', 'Railo, Eino', '2018-07-18', 4, 'https://www.gutenberg.org/ebooks/57534', 'fi', 12332), +(31492, 'Sanctification', 'Hoare, Edward', '2016-06-08', 10, 'https://www.gutenberg.org/ebooks/52274', 'en', 2386), +(31493, 'Ruy o escudeiro: Conto', 'Mousinho de Albuquerque, Luís da Silva', '2007-06-09', 33, 'https://www.gutenberg.org/ebooks/21786', 'pt', 8), +(31494, 'Tales of the Wonder Club, Volume III', 'Halidom, M. Y.', '2011-07-14', 28, 'https://www.gutenberg.org/ebooks/36731', 'en', 2820), +(31495, 'Corleone: A Tale of Sicily', 'Crawford, F. Marion (Francis Marion)', '2013-11-30', 27, 'https://www.gutenberg.org/ebooks/44311', 'en', 12333), +(31496, 'State of the Union Addresses', 'Coolidge, Calvin', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/5036', 'en', 1276), +(31497, 'Fantasia of the Unconscious', 'Lawrence, D. H. (David Herbert)', '2007-02-24', 96, 'https://www.gutenberg.org/ebooks/20654', 'en', 3640), +(31498, 'Letters on Demonology and Witchcraft', 'Scott, Walter', '2004-12-25', 226, 'https://www.gutenberg.org/ebooks/14461', 'en', 12334), +(31499, 'Aus tiefem Schacht', 'Zobeltitz, Fedor von', '2010-05-15', 7, 'https://www.gutenberg.org/ebooks/32391', 'de', 61), +(31500, 'American Grape Training\r\nAn account of the leading forms now in use of Training the American Grapes', 'Bailey, L. H. (Liberty Hyde)', '2012-05-23', 12, 'https://www.gutenberg.org/ebooks/39779', 'en', 12335), +(31501, 'The Fort Dearborn Massacre\nWritten in 1814 by Lieutenant Linai T. Helm, One of the Survivors, with Letters and Narratives of Contemporary Interest', 'Helm, Linai T. (Linai Taliaferro)', '2012-12-19', 8, 'https://www.gutenberg.org/ebooks/41663', 'en', 12336), +(31502, 'Principal Cairns', 'Cairns, John', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11113', 'en', 12337), +(31503, 'Lives of the Most Eminent Painters Sculptors and Architects, Vol. 01 (of 10)\r\nCimabue to Agnolo Gaddi', 'Vasari, Giorgio', '2008-05-05', 188, 'https://www.gutenberg.org/ebooks/25326', 'en', 915), +(31504, 'Index of the Project Gutenberg Works of Henry Lawson', 'Lawson, Henry', '2018-08-16', 17, 'https://www.gutenberg.org/ebooks/57706', 'en', 198), +(31505, 'Massacre at Paris', 'Marlowe, Christopher', '1998-10-01', 64, 'https://www.gutenberg.org/ebooks/1496', 'en', 599), +(31506, 'Frying Pan Farm', 'Pryor, Elizabeth Brown', '2010-07-24', 22, 'https://www.gutenberg.org/ebooks/33243', 'en', 12338), +(31507, 'Human Genome Project, rough draft, Chromosome Number 13', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2213', 'en', 2318), +(31508, 'That Girl in Black; and, Bronzie', 'Molesworth, Mrs.', '2013-07-08', 7, 'https://www.gutenberg.org/ebooks/43134', 'en', 12339), +(31509, 'Acres of Diamonds: Our Every-day Opportunities', 'Conwell, Russell H.', '2008-06-29', 117, 'https://www.gutenberg.org/ebooks/368', 'en', 10388), +(31510, 'Le livre de la Jungle', 'Kipling, Rudyard', '2017-02-17', 50, 'https://www.gutenberg.org/ebooks/54183', 'fr', 1228), +(31511, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 360, March 14, 1829', 'Various', '2004-10-05', 3, 'https://www.gutenberg.org/ebooks/13644', 'en', 133), +(31512, 'The Wall Between', 'Bassett, Sara Ware', '2008-12-09', 18, 'https://www.gutenberg.org/ebooks/27471', 'en', 12340), +(31513, 'Lea; Margareta', 'Kivi, Aleksis', '2004-07-01', 30, 'https://www.gutenberg.org/ebooks/12796', 'fi', 247), +(31514, 'L\'Illustration, No. 3267, 7 Octobre 1905', 'Various', '2011-04-28', 4, 'https://www.gutenberg.org/ebooks/35988', 'fr', 150), +(31515, 'Rock Blasting\r\nA Practical Treatise on the Means Employed in Blasting Rocks for Industrial Purposes', 'André, George G.', '2017-07-05', 10, 'https://www.gutenberg.org/ebooks/55051', 'en', 12341), +(31516, 'The Dancing Mouse: A Study in Animal Behavior', 'Yerkes, Robert Mearns', '2005-08-01', 12, 'https://www.gutenberg.org/ebooks/8729', 'en', 12342), +(31517, 'Prussian Blue', 'Brown, Paul Cameron', '2010-03-05', 4, 'https://www.gutenberg.org/ebooks/31514', 'en', 28), +(31518, 'The boys\' life of Edison', 'Meadowcroft, Wm. H. (William Henry)', '2015-11-21', 18, 'https://www.gutenberg.org/ebooks/50523', 'en', 12343), +(31519, 'The Comings of Cousin Ann', 'Sampson, Emma Speed', '2009-03-29', 14, 'https://www.gutenberg.org/ebooks/28439', 'en', 1996), +(31520, 'Our Little Siamese Cousin', 'Wade, Mary Hazelton Blanchard', '2013-10-08', 32, 'https://www.gutenberg.org/ebooks/43908', 'en', 12344), +(31521, 'Garibaldi in Toscana nel 1848', 'Sforza, Giovanni', '2010-10-13', 14, 'https://www.gutenberg.org/ebooks/34066', 'it', 12345), +(31522, 'Kaini: Murhekuvaus 2:ssa Kohtauksessa', 'Lagervall, Jacob Fredrik', '2014-12-08', 6, 'https://www.gutenberg.org/ebooks/47594', 'fi', 12346), +(31523, 'Shifts and Expedients of Camp Life, Travel & Exploration', 'Baines, Thomas', '2014-07-29', 28, 'https://www.gutenberg.org/ebooks/46446', 'en', 7877), +(31524, 'Falkland, Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 29, 'https://www.gutenberg.org/ebooks/7761', 'en', 61), +(31525, 'With a Highland Regiment in Mesopotamia\n1916—1917', 'Anonymous', '2007-07-19', 32, 'https://www.gutenberg.org/ebooks/22103', 'en', 4056), +(31526, 'Pour la patrie\r\nRoman du XXe siècle', 'Tardivel, Jules-Paul', '2005-07-20', 33, 'https://www.gutenberg.org/ebooks/16336', 'fr', 12347), +(31527, 'Murusia', 'Salmela, Marja', '2014-01-27', 19, 'https://www.gutenberg.org/ebooks/44775', 'fi', 456), +(31528, 'Abraham Lincoln\'s Religion', 'Peters, Madison Clinton', '2011-09-01', 12, 'https://www.gutenberg.org/ebooks/37287', 'en', 1057), +(31529, 'An Egyptian Princess — Volume 03', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5452', 'en', 1802), +(31530, 'Jane Journeys On', 'Mitchell, Ruth Comfort', '2006-12-30', 18, 'https://www.gutenberg.org/ebooks/20230', 'en', 348), +(31531, 'The Ladies Delight', 'Anonymous', '2004-11-10', 1784, 'https://www.gutenberg.org/ebooks/14005', 'en', 12348), +(31532, 'Ward Hill, the Senior', 'Tomlinson, Everett T. (Everett Titsworth)', '2016-07-21', 21, 'https://www.gutenberg.org/ebooks/52610', 'en', 1655), +(31533, 'The Salamander', 'Johnson, Owen', '2011-06-08', 33, 'https://www.gutenberg.org/ebooks/36355', 'en', 348), +(31534, '粉妝樓', 'Luo, Guanzhong', '2003-10-01', 33, 'https://www.gutenberg.org/ebooks/4580', 'zh', 1574), +(31535, 'Anting-Anting Stories, and Other Strange Tales of the Filipinos', 'Kayme, Sargent', '2008-02-26', 25, 'https://www.gutenberg.org/ebooks/24690', 'en', 12349), +(31536, 'Captain Lucy in the Home Sector', 'Havard, Aline', '2018-06-20', 10, 'https://www.gutenberg.org/ebooks/57362', 'en', 12072), +(31537, 'Filipinas Dentro De Cien Años (Estudio Politico-Social)', 'Rizal, José', '2005-01-30', 26, 'https://www.gutenberg.org/ebooks/14839', 'es', 12350), +(31538, 'Frederick Hale, a biographical sketch', 'Anonymous', '2010-09-04', 4, 'https://www.gutenberg.org/ebooks/33627', 'en', 12351), +(31539, 'The Life of Mazzini', 'King, Bolton', '2012-10-28', 10, 'https://www.gutenberg.org/ebooks/41207', 'en', 12352), +(31540, 'Notes and Queries, Number 03, November 17, 1849', 'Various', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11577', 'en', 105), +(31541, 'Hostage: A Terran Empire story', 'Wilson, Ann', '2008-06-09', 10, 'https://www.gutenberg.org/ebooks/25742', 'en', 26), +(31542, 'Captain Chub', 'Barbour, Ralph Henry', '2017-08-27', 18, 'https://www.gutenberg.org/ebooks/55435', 'en', 5395), +(31543, 'A Five Years\' Residence in Buenos Ayres, During the years 1820 to 1825\r\nContaining Remarks on the Country and Inhabitants; and a Visit to Colonia Del Sacramento', 'Love, George Thomas', '2013-04-08', 21, 'https://www.gutenberg.org/ebooks/42482', 'en', 12353), +(31544, 'Acht Briefe an eine Freundin über Clavier-Unterricht', 'Kinkel, Johanna', '2010-02-03', 18, 'https://www.gutenberg.org/ebooks/31170', 'de', 3385), +(31545, 'Epistles from Pap: Letters from the man known as \'The Will Rogers of Indiana\'', 'Durham, Andrew Everett', '2001-06-01', 3, 'https://www.gutenberg.org/ebooks/2677', 'en', 12354), +(31546, 'The Bible of Bibles; Or, Twenty-Seven \"Divine\" Revelations', 'Graves, Lydia M.', '2013-08-24', 22, 'https://www.gutenberg.org/ebooks/43550', 'en', 1191), +(31547, 'Dave Porter in the Far North; Or, The Pluck of an American Schoolboy', 'Stratemeyer, Edward', '2009-05-18', 20, 'https://www.gutenberg.org/ebooks/28861', 'en', 1877), +(31548, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 4', NULL, '2004-08-19', 47, 'https://www.gutenberg.org/ebooks/13220', 'en', 19), +(31549, 'More Science from an Easy Chair', 'Lankester, E. Ray (Edwin Ray), Sir', '2008-10-24', 29, 'https://www.gutenberg.org/ebooks/27015', 'en', 814), +(31550, 'Le livre de tous les ménages\r\nou l\'art de conserver pendant plusieurs années toutes les substances animales et végétales', 'Appert, Nicolas', '2014-06-18', 61, 'https://www.gutenberg.org/ebooks/46022', 'fr', 7636), +(31551, 'Memoir and Letters of Francis W. Newman', 'Sieveking, I. Giberne (Isabel Giberne)', '2005-01-01', 10, 'https://www.gutenberg.org/ebooks/7305', 'en', 12355), +(31552, 'History of the United States, Volume 2', 'Andrews, Elisha Benjamin', '2007-09-10', 33, 'https://www.gutenberg.org/ebooks/22567', 'en', 207), +(31553, 'The Post-Girl', 'Booth, Edward Charles', '2015-09-02', 22, 'https://www.gutenberg.org/ebooks/49856', 'en', 1445), +(31554, 'Book of Mormon Stories. No. 1.\r\nAdapted to the Capacity of Young Children, and Designed for Use in Sabbath Schools, Primary Associations, and for Home Reading', 'Cannon, George Q. (George Quayle)', '2016-01-31', 24, 'https://www.gutenberg.org/ebooks/51095', 'en', 12356), +(31555, 'Caste', 'Fraser, William Alexander', '2005-09-26', 21, 'https://www.gutenberg.org/ebooks/16752', 'en', 1736), +(31556, 'The Title Market', 'Post, Emily', '2006-02-05', 28, 'https://www.gutenberg.org/ebooks/17680', 'en', 2741), +(31557, 'Beaver: An Alphabet of Typical Specimens\r\nTogether with Notes and a Terminal Essay on the Manners and Customs of Beavering Men', 'Kettelwell, John', '2015-10-06', 9, 'https://www.gutenberg.org/ebooks/50147', 'en', 4414), +(31558, 'The Heart Line: A Drama of San Francisco', 'Burgess, Gelett', '2015-05-17', 14, 'https://www.gutenberg.org/ebooks/48984', 'en', 12357), +(31559, 'Phases of an Inferior Planet', 'Glasgow, Ellen Anderson Gholson', '2010-11-22', 32, 'https://www.gutenberg.org/ebooks/34402', 'en', 61), +(31560, 'Introduction to the History of Religions\nHandbooks on the History of Religions, Volume IV', 'Toy, Crawford Howell', '2009-01-18', 28, 'https://www.gutenberg.org/ebooks/27829', 'en', 75), +(31561, 'Crónica de la conquista de Granada (1 de 2)', 'Irving, Washington', '2015-06-22', 31, 'https://www.gutenberg.org/ebooks/49258', 'es', 9220), +(31562, 'Essays of Michel de Montaigne — Volume 17', 'Montaigne, Michel de', '2004-11-01', 31, 'https://www.gutenberg.org/ebooks/3597', 'en', 1964), +(31563, 'The 3 Little Kittens', 'Anonymous', '2010-02-21', 68, 'https://www.gutenberg.org/ebooks/31342', 'en', 2296), +(31564, 'Sixty Years of California Song', 'Alverson, Margaret Blake', '2006-10-12', 33, 'https://www.gutenberg.org/ebooks/19528', 'en', 12358), +(31565, 'Bálványos-vár: Történeti regény', 'Jókai, Mór', '2017-09-23', 9, 'https://www.gutenberg.org/ebooks/55607', 'hu', 234), +(31566, 'A Compilation of the Messages and Papers of the Presidents. Volume 7, part 1: Ulysses S. Grant', NULL, '2004-07-24', 19, 'https://www.gutenberg.org/ebooks/13012', 'en', 111), +(31567, 'Kuinka anopista päästään: Komedia yhdessä näytöksessä', 'Diana, Manuel Juan', '2008-11-10', 8, 'https://www.gutenberg.org/ebooks/27227', 'fi', 12359), +(31568, 'Letters on England', 'Voltaire', '2000-12-01', 110, 'https://www.gutenberg.org/ebooks/2445', 'en', 12360), +(31569, 'Our Homeland Churches and How to Study Them', 'Heath, Sidney', '2009-10-19', 16, 'https://www.gutenberg.org/ebooks/30290', 'en', 9256), +(31570, 'The Gnomes of the Saline Mountains: A Fantastic Narrative', 'Gross, Anna Goldmark', '2013-09-18', 22, 'https://www.gutenberg.org/ebooks/43762', 'en', 580), +(31571, 'The Adventures of the Little Woman, Her Dog and the Pedlar', 'Anonymous', '2007-09-24', 48, 'https://www.gutenberg.org/ebooks/22755', 'en', 343), +(31572, 'Adela Cathcart, Volume 3', 'MacDonald, George', '2005-09-01', 19, 'https://www.gutenberg.org/ebooks/8943', 'en', 2389), +(31573, 'The Diving Bell; Or, Pearls to be Sought for', 'Woodworth, Francis C. (Francis Channing)', '2005-08-20', 15, 'https://www.gutenberg.org/ebooks/16560', 'en', 388), +(31574, 'The Retreat from Mons', 'Gordon, George Stuart', '2014-07-07', 23, 'https://www.gutenberg.org/ebooks/46210', 'en', 4411), +(31575, 'The Great Conspiracy, Volume 5', 'Logan, John Alexander', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/7137', 'en', 125), +(31576, 'Some Experiences of an Irish R.M.', 'Ross, Martin', '2011-01-15', 33, 'https://www.gutenberg.org/ebooks/34630', 'en', 72), +(31577, 'Conversations d\'une petite fille avec sa poupée\r\nSuivies de l\'histoire de la poupée', 'Renneville, Madame de (Sophie de Senneterre)', '2006-02-01', 14, 'https://www.gutenberg.org/ebooks/9891', 'fr', 168), +(31578, 'Kurimus y.m. kertomuksia ja kuvauksia', 'Wuori, Martti', '2015-11-03', 10, 'https://www.gutenberg.org/ebooks/50375', 'fi', 175), +(31579, 'A Morte Vence', 'Grave, João José', '2007-12-03', 13, 'https://www.gutenberg.org/ebooks/23687', 'pt', 61), +(31580, 'Alroy: The Prince of the Captivity', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-12-03', 34, 'https://www.gutenberg.org/ebooks/20002', 'en', 12361), +(31581, 'Useful Knowledge: Volume 3. Animals\r\nOr, a familiar account of the various productions of nature', 'Bingley, William', '2018-10-17', 15, 'https://www.gutenberg.org/ebooks/58118', 'en', 12315), +(31582, 'The Christian Home\r\nAs it is in the Sphere of Nature and the Church; Showing the Mission, Duties, Influences, Habits, and Responsibilities of Home, its Education, Government, and Discipline; with Hints on \"Match Making,\" and the Relation of Parents to the Marriage Choice of their Children; together with a consideration of the Tests in the Selection of a Companion, Etc.', 'Philips, Samuel', '2004-12-02', 15, 'https://www.gutenberg.org/ebooks/14237', 'en', 12362), +(31583, 'Polly: A Christmas Recollection', 'Page, Thomas Nelson', '2013-12-31', 13, 'https://www.gutenberg.org/ebooks/44547', 'en', 585), +(31584, 'Mary Louise', 'Baum, L. Frank (Lyman Frank)', '2004-05-01', 67, 'https://www.gutenberg.org/ebooks/5660', 'en', 128), +(31585, 'Mirror of the Months', 'Patmore, P. G. (Peter George)', '2011-05-19', 3, 'https://www.gutenberg.org/ebooks/36167', 'en', 12363), +(31586, 'Lochinvar: A Novel', 'Crockett, S. R. (Samuel Rutherford)', '2014-04-26', 39, 'https://www.gutenberg.org/ebooks/45495', 'en', 5744), +(31587, 'Congress Hotel, Home of a Thousand Homes\r\nRare and Piquant Dishes of Historic Interest', 'Paull, Irving S.', '2016-06-28', 21, 'https://www.gutenberg.org/ebooks/52422', 'en', 1369), +(31588, 'Expositor\'s Bible: The Book of Ecclesiastes', 'Cox, Samuel', '2012-06-04', 28, 'https://www.gutenberg.org/ebooks/39913', 'en', 12364), +(31589, 'Byron: The Last Phase', 'Edgcumbe, Richard', '2013-01-10', 13, 'https://www.gutenberg.org/ebooks/41809', 'en', 12365), +(31590, 'Pandora\'s Box: A Tragedy in Three Acts', 'Wedekind, Frank', '2010-08-13', 47, 'https://www.gutenberg.org/ebooks/33415', 'en', 493), +(31591, 'The Crayfish: An Introduction to the Study of Zoology.', 'Huxley, Thomas Henry', '2019-02-20', 5, 'https://www.gutenberg.org/ebooks/58924', 'en', 4745), +(31592, 'Serpent-Worship, and Other Essays, with a Chapter on Totemism', 'Wake, C. Staniland (Charles Staniland)', '2018-05-13', 16, 'https://www.gutenberg.org/ebooks/57150', 'en', 12366), +(31593, 'Discours sur la nécessité et les moyens de détruire l\'esclavage dans les colonies\r\nLu à la séance publique de l\'Académie royale des sciences, belles lettres et arts de Bordeaux, le 26 Août 1788', 'Laffon de Ladébat, André-Daniel', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10697', 'fr', 12367), +(31594, 'Incidents of Travel in Greece, Turkey, Russia, and Poland, Vol. 1 (of 2)', 'Stephens, John L.', '2011-10-30', 22, 'https://www.gutenberg.org/ebooks/37889', 'en', 12368), +(31595, 'Blackwood\'s Edinburgh Magazine — Volume 53, No. 330, April 1843', 'Various', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11745', 'en', 274), +(31596, 'Dream-Songs for the Belovèd', 'Farjeon, Eleanor', '2017-11-29', 19, 'https://www.gutenberg.org/ebooks/56082', 'en', 1594), +(31597, 'The Manxman\nA Novel - 1895', 'Caine, Hall, Sir', '2008-05-23', 94, 'https://www.gutenberg.org/ebooks/25570', 'en', 3652), +(31598, 'Fire and Sword in the Sudan\nA Personal Narrative of Fighting and Serving the Dervishes 1879-1895', 'Slatin, Rudolf Carl, Freiherr von', '2012-10-12', 62, 'https://www.gutenberg.org/ebooks/41035', 'en', 4466), +(31599, 'Pannaan julistettu', 'Stevenson, Robert Louis', '2014-01-28', 3, 'https://www.gutenberg.org/ebooks/44781', 'fi', 7964), +(31600, 'Plaidoyer de M. Freydier contre l\'introduction des cadenas et ceintures de chasteté, précédé d\'une notice historique.', 'Freydier, Monsieur', '2011-08-30', 13, 'https://www.gutenberg.org/ebooks/37273', 'fr', 12369), +(31601, 'The Fighting Retreat To Paris', 'Ingpen, Roger', '2016-12-15', 11, 'https://www.gutenberg.org/ebooks/53736', 'en', 4411), +(31602, 'David Lockwin—The People\'s Idol', 'McGovern, John', '2005-02-21', 31, 'https://www.gutenberg.org/ebooks/15123', 'en', 61), +(31603, 'The Adventures of Don Lavington: Nolens Volens', 'Fenn, George Manville', '2007-05-04', 21, 'https://www.gutenberg.org/ebooks/21316', 'en', 12370), +(31604, '粉妝樓21-30回', 'Luo, Guanzhong', '2003-10-01', 9, 'https://www.gutenberg.org/ebooks/4574', 'zh', 1574), +(31605, 'Morti e viventi', 'Panzacchi, Enrico', '2014-05-15', 15, 'https://www.gutenberg.org/ebooks/45653', 'it', 7200), +(31606, 'Fairy Fingers\nA Novel', 'Ritchie, Anna Cora Ogden Mowatt', '2008-02-21', 16, 'https://www.gutenberg.org/ebooks/24664', 'en', 5233), +(31607, 'Life of Johnson, Volume 5\r\nTour to the Hebrides (1773) and Journey into North Wales (1774)', 'Boswell, James', '2003-12-01', 36, 'https://www.gutenberg.org/ebooks/10451', 'en', 6953), +(31608, 'The Dreadnought Boys Aboard a Destroyer', 'Goldfrap, John Henry', '2018-06-25', 24, 'https://www.gutenberg.org/ebooks/57396', 'en', 4678), +(31609, 'Grim Tales', 'Nesbit, E. (Edith)', '2012-07-24', 263, 'https://www.gutenberg.org/ebooks/40321', 'en', 409), +(31610, 'Divine Comedy, Cary\'s Translation, Purgatory', 'Dante Alighieri', '2004-08-06', 87, 'https://www.gutenberg.org/ebooks/1006', 'en', 365), +(31611, 'Kant\'s Theory of Knowledge', 'Prichard, H. A. (Harold Arthur)', '2010-06-05', 30, 'https://www.gutenberg.org/ebooks/32701', 'en', 354), +(31612, 'Sonnets and Poems', 'Farjeon, Eleanor', '2017-12-24', 14, 'https://www.gutenberg.org/ebooks/56244', 'en', 6689), +(31613, 'The Runaway Asteroid', 'Cooper, Michael D.', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/11583', 'en', 26), +(31614, 'Trial of Duncan Terig, alias Clerk, and Alexander Bane Macdonald\nfor the Murder of Arthur Davis, Sergeant in General Guise\'s\nRegiment of Foot', 'Scott, Walter', '2008-07-26', 17, 'https://www.gutenberg.org/ebooks/26133', 'en', 12371), +(31615, 'Punch, or the London Charivari, Volume 99, October 4, 1890', 'Various', '2004-05-01', 4, 'https://www.gutenberg.org/ebooks/12306', 'en', 134), +(31616, 'Literary Celebrities of the English Lake-District', 'Sessions, Frederick', '2013-04-07', 19, 'https://www.gutenberg.org/ebooks/42476', 'en', 12372), +(31617, 'Spacemen Never Die!', 'Hershman, Morris', '2009-09-09', 29, 'https://www.gutenberg.org/ebooks/29947', 'en', 179), +(31618, 'Poems', 'Chesterton, G. K. (Gilbert Keith)', '2010-02-05', 68, 'https://www.gutenberg.org/ebooks/31184', 'en', 54), +(31619, 'The Psychology of Beauty', 'Howes, Ethel Puffer', '2003-02-01', 89, 'https://www.gutenberg.org/ebooks/3751', 'en', 2250), +(31620, 'Punch, or, the London Charivari, Volume 98, March 8, 1890.', 'Various', '2009-09-22', 8, 'https://www.gutenberg.org/ebooks/30056', 'en', 134), +(31621, 'Saint\'s Progress', 'Galsworthy, John', '2006-06-14', 33, 'https://www.gutenberg.org/ebooks/2683', 'en', 579), +(31622, 'Harper\'s Young People, May 18, 1880\nAn Illustrated Weekly', 'Various', '2009-05-20', 6, 'https://www.gutenberg.org/ebooks/28895', 'en', 479), +(31623, 'Harper\'s Young People, February 28, 1882\nAn Illustrated Weekly', 'Various', '2017-04-08', 0, 'https://www.gutenberg.org/ebooks/54513', 'en', 479), +(31624, 'On Digestive Proteolysis\nBeing the Cartwright Lectures for 1894', 'Chittenden, R. H. (Russell Henry)', '2015-01-10', 9, 'https://www.gutenberg.org/ebooks/47938', 'en', 12373), +(31625, 'Contemporary Belgian Poetry\nSelected and Translated by Jethro Bithell', NULL, '2011-03-08', 13, 'https://www.gutenberg.org/ebooks/35524', 'en', 2629), +(31626, 'The Shadow World', 'Garland, Hamlin', '2007-09-13', 36, 'https://www.gutenberg.org/ebooks/22593', 'en', 504), +(31627, 'The Wide World Magazine, Vol. 22, No. 131, February, 1909', 'Various', '2016-01-28', 28, 'https://www.gutenberg.org/ebooks/51061', 'en', 10435), +(31628, 'Nora: Näytelmä kolmessa näytöksessä', 'Ibsen, Henrik', '2006-02-04', 30, 'https://www.gutenberg.org/ebooks/17674', 'fi', 2455), +(31629, 'Lady Betty Across the Water', 'Williamson, C. N. (Charles Norris)', '2007-11-10', 15, 'https://www.gutenberg.org/ebooks/23441', 'en', 6124), +(31630, 'Across Texas', 'Ellis, Edward Sylvester', '2015-05-16', 14, 'https://www.gutenberg.org/ebooks/48970', 'en', 1120), +(31631, 'The March of the White Guard', 'Parker, Gilbert', '2004-11-17', 10, 'https://www.gutenberg.org/ebooks/6223', 'en', 1219), +(31632, 'Kultainen vasikka: Kolminäytöksinen huvinäytelmä', 'Jotuni, Maria', '2014-10-13', 12, 'https://www.gutenberg.org/ebooks/47104', 'fi', 382), +(31633, 'A Jar of Honey from Mount Hybla', 'Hunt, Leigh', '2013-05-05', 30, 'https://www.gutenberg.org/ebooks/42644', 'en', 12374), +(31634, 'Memoirs of Napoleon Bonaparte — Volume 13', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 13, 'https://www.gutenberg.org/ebooks/3563', 'en', 12375), +(31635, 'Pride and Prejudice', 'Austen, Jane', '2008-08-01', 282, 'https://www.gutenberg.org/ebooks/26301', 'en', 7171), +(31636, 'The American Missionary — Volume 42, No. 06, June, 1888', 'Various', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/12134', 'en', 395), +(31637, 'The Food Question: Health and Economy', 'Various', '2017-05-14', 14, 'https://www.gutenberg.org/ebooks/54721', 'en', 11808), +(31638, 'Plays of Sophocles: Oedipus the King; Oedipus at Colonus; Antigone', 'Sophocles', '2006-03-08', 1186, 'https://www.gutenberg.org/ebooks/31', 'en', 7880), +(31639, 'Liége on the Line of March\nAn American Girl\'s Experiences When the Germans Came Through Belgium', 'Bigelow, Glenna Lindsley', '2009-10-15', 10, 'https://www.gutenberg.org/ebooks/30264', 'en', 449), +(31640, 'Andrea Delfin: Eine venezianische Novelle', 'Heyse, Paul', '2005-10-01', 9, 'https://www.gutenberg.org/ebooks/9059', 'de', 16), +(31641, 'Tom Fairfield\'s Schooldays; or, The Chums of Elmwood Hall', 'Chapman, Allen', '2013-09-22', 8, 'https://www.gutenberg.org/ebooks/43796', 'en', 1877), +(31642, 'Creatures of the Night: A Book of Wild Life in Western Britain', 'Rees, Alfred Wellesley', '2009-07-08', 22, 'https://www.gutenberg.org/ebooks/29349', 'en', 2560), +(31643, 'A Short History of English Agriculture', 'Curtler, W. H. R. (William Henry Ricketts)', '2005-08-25', 36, 'https://www.gutenberg.org/ebooks/16594', 'en', 12376), +(31644, 'The Welding of the Race (\"449\"-1066)', NULL, '2016-02-20', 18, 'https://www.gutenberg.org/ebooks/51253', 'en', 12377), +(31645, 'Missing', 'Ward, Humphry, Mrs.', '2004-07-14', 22, 'https://www.gutenberg.org/ebooks/12908', 'en', 579), +(31646, 'Ricordi di un garibaldino dal 1847-48 al 1900. vol. II', 'Elia, Augusto', '2011-03-30', 15, 'https://www.gutenberg.org/ebooks/35716', 'it', 12378), +(31647, 'The Little Lady of Lagunitas: A Franco-Californian Romance', 'Savage, Richard', '2004-07-01', 24, 'https://www.gutenberg.org/ebooks/6011', 'en', 211), +(31648, 'Cowley\'s Talks on Doctrine', 'Cowley, Matthias F.', '2014-11-12', 18, 'https://www.gutenberg.org/ebooks/47336', 'en', 377), +(31649, 'Colter\'s Hell and Jackson\'s Hole\r\nThe Fur Trappers\' Exploration of the Yellowstone and Grand Teton Park Region', 'Mattes, Merrill J.', '2015-11-04', 17, 'https://www.gutenberg.org/ebooks/50381', 'en', 12379), +(31650, 'The Second Honeymoon', 'Ayres, Ruby M. (Ruby Mildred)', '2006-01-02', 32, 'https://www.gutenberg.org/ebooks/17446', 'en', 61), +(31651, 'Java Head', 'Hergesheimer, Joseph', '2006-02-01', 42, 'https://www.gutenberg.org/ebooks/9865', 'en', 12380), +(31652, 'The St. Gregory Hymnal and Catholic Choir Book', NULL, '2007-12-02', 59, 'https://www.gutenberg.org/ebooks/23673', 'en', 12381), +(31653, 'A. von Menzel', 'Knackfuss, H. (Hermann)', '2016-11-11', 6, 'https://www.gutenberg.org/ebooks/53504', 'de', 12382), +(31654, 'Black-Eyed Susan', 'Phillips, Ethel Calvert', '2012-02-11', 135, 'https://www.gutenberg.org/ebooks/38835', 'en', 62), +(31655, 'The Harvard Classics Volume 38\r\nScientific Papers (Physiology, Medicine, Surgery, Geology)', 'Various', '2004-05-01', 99, 'https://www.gutenberg.org/ebooks/5694', 'en', 2535), +(31656, 'On Sameness and Identity: A Psychological Study\r\nBeing a Contribution to the Foundations of a Theory of Knowledge', 'Fullerton, George Stuart', '2018-10-01', 14, 'https://www.gutenberg.org/ebooks/57998', 'en', 354), +(31657, 'Preservation of Bull Semen at Sub-Zero Temperatures', 'VanDemark, N. L.', '2011-08-11', 15, 'https://www.gutenberg.org/ebooks/37041', 'en', 12383), +(31658, 'Kennedy Square', 'Smith, Francis Hopkinson', '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/4746', 'en', 12384), +(31659, 'The Viceroys of Ireland', 'O\'Mahony, Charles Kingston', '2011-05-22', 11, 'https://www.gutenberg.org/ebooks/36193', 'en', 2929), +(31660, 'Ultimatum', 'Campos, Alvaro de', '2014-04-23', 10, 'https://www.gutenberg.org/ebooks/45461', 'pt', 8944), +(31661, 'Poems By The Way & Love Is Enough', 'Morris, William', '2005-03-10', 47, 'https://www.gutenberg.org/ebooks/15311', 'en', 8), +(31662, 'Le fils du Soleil (1879)', 'Aimard, Gustave', '2007-04-17', 59, 'https://www.gutenberg.org/ebooks/21124', 'fr', 12385), +(31663, 'The Flags of the World: Their History, Blazonry, and Associations', 'Hulme, F. Edward (Frederick Edward)', '2012-07-01', 16, 'https://www.gutenberg.org/ebooks/40113', 'en', 12386), +(31664, 'The Story of Seville', 'Gallichan, Walter M. (Walter Matthew)', '2011-11-13', 20, 'https://www.gutenberg.org/ebooks/38009', 'en', 12387), +(31665, 'Organic Syntheses\r\nAn Annual Publication of Satisfactory Methods for the Preparation of Organic Chemicals', NULL, '1998-03-01', 48, 'https://www.gutenberg.org/ebooks/1234', 'en', 12388), +(31666, 'Fathers of Biology', 'McRae, Charles', '2008-01-29', 60, 'https://www.gutenberg.org/ebooks/24456', 'en', 12389), +(31667, 'Punch, or the London Charivari, Volume 153, September 26, 1917', 'Various', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10663', 'en', 134), +(31668, 'Travels in Southern Europe and the Levant, 1810-1817\nThe Journal of C. R. Cockerell, R.A.', 'Cockerell, C. R. (Charles Robert)', '2017-11-29', 16, 'https://www.gutenberg.org/ebooks/56076', 'en', 12390), +(31669, 'The Purcell Papers: Index and Contents of the Three Volumes', 'Le Fanu, Joseph Sheridan', '2008-05-24', 19, 'https://www.gutenberg.org/ebooks/25584', 'en', 198), +(31670, 'The Crime of the Century; Or, The Assassination of Dr. Patrick Henry Cronin', 'Hunt, Henry M.', '2010-05-25', 18, 'https://www.gutenberg.org/ebooks/32533', 'en', 12391), +(31671, 'Census Statistics of the Negro: A Paper', 'Willcox, Walter F. (Walter Francis)', '2019-06-24', 29, 'https://www.gutenberg.org/ebooks/59802', 'en', 12392), +(31672, 'Hindu Law and Judicature\nfrom the Dharma-Sástra of Yájnavalkya', 'Yájnavalkya', '2007-06-24', 54, 'https://www.gutenberg.org/ebooks/21918', 'en', 12393), +(31673, 'What the Schools Teach and Might Teach', 'Bobbitt, John Franklin', '2004-09-16', 58, 'https://www.gutenberg.org/ebooks/13482', 'en', 12394), +(31674, 'Abridgment of the Debates of Congress, from 1789 to 1856, Vol. 3 (of 16)', 'United States. Congress', '2017-03-12', 4, 'https://www.gutenberg.org/ebooks/54345', 'en', 4132), +(31675, 'Travels Amongst American Indians\nTheir Ancient Earthworks and Temples', 'Brine, Lindesay', '2019-08-25', 0, 'https://www.gutenberg.org/ebooks/60170', 'en', NULL), +(31676, 'The Pines of Lory', 'Mitchell, John Ames', '2009-12-04', 1, 'https://www.gutenberg.org/ebooks/30600', 'en', 61), +(31677, 'History of Linn County Iowa\r\nFrom Its Earliest Settlement to the Present Time [1911]', 'Brewer, Luther Albertus', '2013-02-27', 9, 'https://www.gutenberg.org/ebooks/42220', 'en', 12395), +(31678, 'As We Go', 'Warner, Charles Dudley', '2004-12-05', 14, 'https://www.gutenberg.org/ebooks/3107', 'en', 20), +(31679, 'Henri VI (3/3)', 'Shakespeare, William', '2008-10-03', 15, 'https://www.gutenberg.org/ebooks/26765', 'fr', 2613), +(31680, 'Hazelhurst', 'Hunt, Enid Leigh', '2017-08-07', 14, 'https://www.gutenberg.org/ebooks/55297', 'en', 31), +(31681, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 540, March 31, 1832', 'Various', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/12550', 'en', 133), +(31682, 'Facts and Arguments for Darwin', 'Müller, Fritz', '2004-09-01', 15, 'https://www.gutenberg.org/ebooks/6475', 'en', 5893), +(31683, 'A Theological-Political Treatise [Part IV]', 'Spinoza, Benedict of', '1997-07-16', 84, 'https://www.gutenberg.org/ebooks/992', 'en', 2055), +(31684, 'The Settling of the Sage', 'Evarts, Hal G. (Hal George)', '2006-07-18', 25, 'https://www.gutenberg.org/ebooks/18856', 'en', 315), +(31685, 'Graham\'s Magazine, Vol. XLI, No. 4, October 1852', 'Various', '2014-12-23', 9, 'https://www.gutenberg.org/ebooks/47752', 'en', 162), +(31686, 'The First Discovery of Australia and New Guinea\r\nBeing The Narrative of Portuguese and Spanish Discoveries in the Australasian Regions, between the Years 1492-1606, with Descriptions of their Old Charts.', 'Collingridge, George', '2005-11-07', 30, 'https://www.gutenberg.org/ebooks/17022', 'en', 12396), +(31687, 'The Roll-Call Of The Reef', 'Quiller-Couch, Arthur', '2007-10-27', 13, 'https://www.gutenberg.org/ebooks/23217', 'en', 257), +(31688, 'Town Life in the Fifteenth Century, Volume 2 (of 2)', 'Green, Alice Stopford', '2016-04-02', 26, 'https://www.gutenberg.org/ebooks/51637', 'en', 4822), +(31689, 'Fishing with the Fly\r\nSketches by Lovers of the Art, with Illustrations of Standard Flies', NULL, '2014-08-25', 25, 'https://www.gutenberg.org/ebooks/46680', 'en', 2080), +(31690, 'Du service des postes et de la taxation des lettres au moyen d\'un timbre', 'Piron, A.', '2006-11-30', 11, 'https://www.gutenberg.org/ebooks/19984', 'fr', 10378), +(31691, 'Withered Leaves: A Novel. Vol. II. (of III)', 'Gottschall, Rudolf von', '2011-02-23', 4, 'https://www.gutenberg.org/ebooks/35372', 'en', 803), +(31692, 'My Three Days in Gilead', 'Hoenshel, Elmer U. (Elmer Ulysses)', '2003-08-01', 11, 'https://www.gutenberg.org/ebooks/4322', 'en', 723), +(31693, 'Absurdities of Immaterialism\r\nOr, A Reply to T. W. P. Taylder\'s Pamphlet, Entitled, \"The Materialism of the Mormons or Latter-Day Saints, Examined and Exposed.\"', 'Pratt, Orson', '2014-02-25', 47, 'https://www.gutenberg.org/ebooks/45005', 'en', 12397), +(31694, 'The Rejuvenation of Aunt Mary', 'Warner, Anne', '2005-05-06', 26, 'https://www.gutenberg.org/ebooks/15775', 'en', 637), +(31695, 'High Noon: A New Sequel to \'Three Weeks\'', NULL, '2007-05-20', 22, 'https://www.gutenberg.org/ebooks/21540', 'en', 7704), +(31696, 'Terry; Or, She ought to have been a Boy', 'Gilbert, Rosa M. (Rosa Mulholland)', '2007-01-30', 19, 'https://www.gutenberg.org/ebooks/20492', 'en', 31), +(31697, 'Suomalaiset Amerikassa', 'Järnefelt Rauanheimo, Akseli', '2016-09-28', 10, 'https://www.gutenberg.org/ebooks/53160', 'fi', 12398), +(31698, 'Petersburg National Military Park, Virginia', 'Lykes, Richard Wayne', '2019-01-01', 8, 'https://www.gutenberg.org/ebooks/58588', 'en', 12399), +(31699, 'Within the Rim, and Other Essays, 1914-15', 'James, Henry', '2011-09-14', 20, 'https://www.gutenberg.org/ebooks/37425', 'en', 335), +(31700, 'Seventeen Years in Paris: A Chaplain\'s Story', 'Noyes, H. E. (Henry Edward)', '2018-01-21', 3, 'https://www.gutenberg.org/ebooks/56412', 'en', 12400), +(31701, 'Dracula', 'Stoker, Bram', '2014-05-30', 305, 'https://www.gutenberg.org/ebooks/45839', 'en', 12401), +(31702, 'Priests, Women, and Families', 'Michelet, Jules', '2010-04-28', 23, 'https://www.gutenberg.org/ebooks/32157', 'en', 6263), +(31703, 'A Berzsenyi-leányok tizenkét vőlegénye: Tollrajzok a mai Budapestről', 'Ambrus, Zoltán', '2012-08-25', 16, 'https://www.gutenberg.org/ebooks/40577', 'hu', 402), +(31704, 'The Admirable Bashville; Or, Constancy Unrewarded\r\nBeing the Novel of Cashel Byron\'s Profession Done into a Stage Play in Three Acts and in Blank Verse, with a Note on Modern Prize Fighting', 'Shaw, Bernard', '2010-07-05', 21, 'https://www.gutenberg.org/ebooks/33085', 'en', 12402), +(31705, 'The Light of Egypt; Or, The Science of the Soul and the Stars — Volume 2', 'Wagner, Belle M.', '1999-02-01', 118, 'https://www.gutenberg.org/ebooks/1650', 'en', 3324), +(31706, '儒林外史', 'Wu, Jingzi', '2007-12-25', 56, 'https://www.gutenberg.org/ebooks/24032', 'zh', 12403), +(31707, 'The Railroad Question', 'Bryan, William Jennings', '2003-11-01', 5, 'https://www.gutenberg.org/ebooks/10207', 'en', 1450), +(31708, 'The Life of Robert Louis Stevenson for Boys and Girls', 'Overton, Jacqueline', '2005-04-04', 11, 'https://www.gutenberg.org/ebooks/15547', 'en', 3163), +(31709, '明鏡公案', 'Unknown', '2016-06-08', 24, 'https://www.gutenberg.org/ebooks/52280', 'zh', 3187), +(31710, 'Harper\'s Young People, 1882 Index\nAn Illustrated Weekly', 'Various', '2019-06-03', 12, 'https://www.gutenberg.org/ebooks/59668', 'en', 479), +(31711, 'The Path Of Duty', 'James, Henry', '2007-06-08', 31, 'https://www.gutenberg.org/ebooks/21772', 'en', 1902), +(31712, 'Christopher Columbus and the New World of His Discovery — Volume 3', 'Young, Filson', '2004-12-05', 14, 'https://www.gutenberg.org/ebooks/4110', 'en', 2036), +(31713, 'The Knickerbocker, Vol. 10, No. 2, August 1837', 'Various', '2014-03-28', 20, 'https://www.gutenberg.org/ebooks/45237', 'en', 18), +(31714, 'Why We Are at War (2nd Edition, revised)', 'University of Oxford. Faculty of Modern History', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10809', 'en', 335), +(31715, 'Cours familier de Littérature - Volume 17', 'Lamartine, Alphonse de', '2011-10-05', 11, 'https://www.gutenberg.org/ebooks/37617', 'fr', 920), +(31716, 'The National Geographic Magazine, Vol. II., No. 3, July, 1890', 'Various', '2016-10-23', 13, 'https://www.gutenberg.org/ebooks/53352', 'en', 3550), +(31717, 'De Carmine Pastorali\r\nPrefixed to Thomas Creech\'s translation of the Idylliums of Theocritus (1684)', 'Rapin, René', '2004-12-28', 29, 'https://www.gutenberg.org/ebooks/14495', 'en', 12404), +(31718, 'A Boy Knight', 'Scott, Martin J. (Martin Jerome)', '2010-05-13', 21, 'https://www.gutenberg.org/ebooks/32365', 'en', 12405), +(31719, 'Merck\'s 1899 Manual of the Materia Medica', 'Merck & Co.', '2012-12-24', 188, 'https://www.gutenberg.org/ebooks/41697', 'en', 12406), +(31720, 'Ruby Roland, the Girl Spy; or, Simon Kenton\'s Protege', 'Whittaker, Frederick', '2018-02-21', 16, 'https://www.gutenberg.org/ebooks/56620', 'en', 336), +(31721, 'American Men of Mind', 'Stevenson, Burton Egbert', '2008-01-07', 32, 'https://www.gutenberg.org/ebooks/24200', 'en', 414), +(31722, 'Punchinello, Volume 2, No. 27, October 1, 1870', 'Various', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10035', 'en', 372), +(31723, 'Short Stories', 'Dostoyevsky, Fyodor', '2012-09-13', 515, 'https://www.gutenberg.org/ebooks/40745', 'en', 7203), +(31724, 'Some Roundabout Papers', 'Thackeray, William Makepeace', '1998-09-01', 22, 'https://www.gutenberg.org/ebooks/1462', 'en', 20), +(31725, 'A Modern Symposium', 'Dickinson, G. Lowes (Goldsworthy Lowes)', '2009-11-09', 4, 'https://www.gutenberg.org/ebooks/30432', 'en', 5611), +(31726, 'The great probability of a North West Passage\r\ndeduced from observations on the letter of Admiral de Fonte', NULL, '2015-03-19', 12, 'https://www.gutenberg.org/ebooks/48528', 'en', 1394), +(31727, 'La Chanson de Roland : Translated from the Seventh Edition of Léon Gautier', NULL, '2007-12-11', 28, 'https://www.gutenberg.org/ebooks/23819', 'en', 9541), +(31728, 'Leonie, the Typewriter: A Romance of Actual Life', 'Gilman, Wenona', '2017-02-17', 8, 'https://www.gutenberg.org/ebooks/54177', 'en', 61), +(31729, 'Deutsche Charaktere und Begebenheiten', 'Wassermann, Jakob', '2006-04-26', 20, 'https://www.gutenberg.org/ebooks/18258', 'de', 12407), +(31730, 'The Critics Versus Shakspere\nA Brief for the Defendant', 'Smith, Francis Asbury', '2008-12-10', 4, 'https://www.gutenberg.org/ebooks/27485', 'en', 12408), +(31731, 'If You Don\'t Write Fiction', 'Cushing, Charles Phelps', '2008-09-08', 16, 'https://www.gutenberg.org/ebooks/26557', 'en', 935), +(31732, 'The Story of a Piece of Coal: What It Is, Whence It Comes, and Whither It Goes', 'Martin, Edward A. (Edward Alfred)', '2004-06-28', 25, 'https://www.gutenberg.org/ebooks/12762', 'en', 6456), +(31733, 'Paths of Judgement', 'Sedgwick, Anne Douglas', '2013-02-04', 28, 'https://www.gutenberg.org/ebooks/42012', 'en', 847), +(31734, 'Theodore Roosevelt: An Autobiography', 'Roosevelt, Theodore', '2006-04-06', 329, 'https://www.gutenberg.org/ebooks/3335', 'en', 1009), +(31735, 'The Adventures of My Cousin Smooth', 'Templeton, Timothy', '2005-12-03', 21, 'https://www.gutenberg.org/ebooks/17210', 'en', 12409), +(31736, 'The Book of Business Etiquette', 'Henney, Nella Braddy', '2007-10-13', 19, 'https://www.gutenberg.org/ebooks/23025', 'en', 788), +(31737, 'Der Zerbrochene Krug', 'Kleist, Heinrich von', '2004-10-01', 69, 'https://www.gutenberg.org/ebooks/6647', 'de', 907), +(31738, 'Dress as a Fine Art, with Suggestions on Children\'s Dress', 'Merrifield, Mary P. (Mary Philadelphia)', '2010-10-17', 16, 'https://www.gutenberg.org/ebooks/34092', 'en', 1520), +(31739, 'The Schoolmistress: A Farce in Three Acts', 'Pinero, Arthur Wing', '2014-12-06', 15, 'https://www.gutenberg.org/ebooks/47560', 'en', 907), +(31740, 'Pelle the Conqueror — Complete', 'Andersen Nexø, Martin', '2005-03-01', 34, 'https://www.gutenberg.org/ebooks/7795', 'en', 2079), +(31741, 'The Blind Mother, and The Last Confession', 'Caine, Hall, Sir', '2011-02-01', 10, 'https://www.gutenberg.org/ebooks/35140', 'en', 61), +(31742, 'Kew Gardens\nWith 24 full-page Illustrations in Colour', 'Moncrieff, A. R. Hope (Ascott Robert Hope)', '2017-11-07', 20, 'https://www.gutenberg.org/ebooks/55899', 'en', 12410), +(31743, 'La bêtise humaine (Eusèbe Martin)', 'Noriac, Jules', '2016-03-08', 10, 'https://www.gutenberg.org/ebooks/51405', 'fr', 298), +(31744, 'The American Missionary — Volume 36, No. 11, November, 1882', 'Various', '2018-10-18', 3, 'https://www.gutenberg.org/ebooks/58127', 'en', 562), +(31745, 'Orjan oppi', 'Järnefelt, Arvid', '2004-11-29', 8, 'https://www.gutenberg.org/ebooks/14208', 'fi', 247), +(31746, 'Inaugural Presidential Address', 'Trump, Donald', '2018-09-22', 18, 'https://www.gutenberg.org/ebooks/57953', 'en', 12411), +(31747, 'Bentley\'s Miscellany, Volume I', 'Various', '2014-01-04', 33, 'https://www.gutenberg.org/ebooks/44578', 'en', 10335), +(31748, 'Daisy Burns (Volume 2)', 'Kavanagh, Julia', '2011-05-18', 11, 'https://www.gutenberg.org/ebooks/36158', 'en', 264); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(31749, 'Forged Egyptian Antiquities', 'Wakeling, T. G.', '2018-03-31', 16, 'https://www.gutenberg.org/ebooks/56881', 'en', 673), +(31750, 'Carlo Dolci', 'Hay, George', '2013-01-13', 20, 'https://www.gutenberg.org/ebooks/41836', 'en', 12412), +(31751, 'Some Remains (hitherto unpublished) of Joseph Butler, LL.D.', 'Butler, Joseph', '2007-03-12', 8, 'https://www.gutenberg.org/ebooks/20801', 'en', 12413), +(31752, 'The Motion Picture Chums at Seaside Park\r\nOr, The Rival Photo Theatres of the Boardwalk', 'Appleton, Victor', '2011-08-03', 15, 'https://www.gutenberg.org/ebooks/36964', 'en', 12414), +(31753, 'Phil May\'s Gutter-Snipes: 50 Original Sketches in Pen & Ink', NULL, '2012-03-12', 30, 'https://www.gutenberg.org/ebooks/39110', 'en', 1688), +(31754, 'Lectures of Col. R. G. Ingersoll, Volume I\r\nIncluding His Answers to the Clergy, His Oration at His Brother\'s Grave, Etc., Etc.', 'Ingersoll, Robert Green', '2005-05-01', 29, 'https://www.gutenberg.org/ebooks/8140', 'en', 1191), +(31755, 'A Watch-dog of the North Sea: A Naval Story of the Great War', 'Westerman, Percy F. (Percy Francis)', '2015-06-24', 25, 'https://www.gutenberg.org/ebooks/49267', 'en', 4416), +(31756, 'Le avventure di Pinocchio', 'Collodi, Carlo', '2006-10-11', 56, 'https://www.gutenberg.org/ebooks/19517', 'it', 1007), +(31757, 'Les Peintres Cubistes: [Méditations Esthétiques]', 'Apollinaire, Guillaume', '2017-09-27', 28, 'https://www.gutenberg.org/ebooks/55638', 'fr', 12415), +(31758, 'König Heinrich der vierte. Der Zweyte Theil, der seinen Tod, und die Crönung von Heinrich dem fünften enthält.', 'Shakespeare, William', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/7934', 'de', 6584), +(31759, '臺灣外紀', 'Jiang, Risheng, active 1692', '2008-11-09', 33, 'https://www.gutenberg.org/ebooks/27218', 'zh', 12416), +(31760, 'The Story of Doctor Dolittle', 'Lofting, Hugh', '1996-04-01', 582, 'https://www.gutenberg.org/ebooks/501', 'en', 2203), +(31761, 'The Farmer\'s Boy: A Rural Poem', 'Bloomfield, Robert', '2005-10-01', 16, 'https://www.gutenberg.org/ebooks/9092', 'en', 1930), +(31762, 'The Valuation of Public Service Corporation Property\r\nTransactions of the American Society of Civil Engineers,\r\nvol. LXXII, June, 1911, ASCE 1190', 'Riggs, Henry Earle', '2016-02-24', 11, 'https://www.gutenberg.org/ebooks/51298', 'en', 4530), +(31763, 'The Ladies\' Work-Table Book\r\nContaining Clear and Practical Instructions in Plain and Fancy Needlework, Embroidery, Knitting, Netting and Crochet', 'Anonymous', '2009-07-12', 123, 'https://www.gutenberg.org/ebooks/29382', 'en', 12417), +(31764, 'A Trip to Scarborough; and, The Critic', 'Sheridan, Richard Brinsley', '2004-12-01', 21, 'https://www.gutenberg.org/ebooks/7108', 'en', 3619), +(31765, 'Peter Stuyvesant, the Last Dutch Governor of New Amsterdam', 'Abbott, John S. C. (John Stevens Cabot)', '2004-10-20', 39, 'https://www.gutenberg.org/ebooks/13811', 'en', 320), +(31766, 'Harper\'s Young People, December 9, 1879\nAn Illustrated Weekly', 'Various', '2009-03-05', 3, 'https://www.gutenberg.org/ebooks/28250', 'en', 479), +(31767, 'The History of Rome, Books 01 to 08', 'Livy', '2006-11-06', 375, 'https://www.gutenberg.org/ebooks/19725', 'en', 6793), +(31768, 'Seeing and Hearing', 'Russell, George William Erskine', '2014-09-09', 22, 'https://www.gutenberg.org/ebooks/46821', 'en', 472), +(31769, 'The Bible, Douay-Rheims, Book 72: Jude\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8372', 'en', 6543), +(31770, 'Popular Pastimes for Field and Fireside, or Amusements for young and old', 'Smith, Caroline L.', '2016-04-30', 35, 'https://www.gutenberg.org/ebooks/51896', 'en', 1837), +(31771, '\"Barbarous Soviet Russia\"', 'McBride, Isaac', '2015-05-26', 19, 'https://www.gutenberg.org/ebooks/49055', 'en', 5396), +(31772, 'Memorials of Old London. Volume 2 (of 2)', NULL, '2015-02-07', 21, 'https://www.gutenberg.org/ebooks/48187', 'en', 5732), +(31773, 'George Cruikshank', 'Thackeray, William Makepeace', '2006-05-22', 35, 'https://www.gutenberg.org/ebooks/2648', 'en', 3807), +(31774, 'Salmonia; Or, Days of Fly Fishing\r\nIn a series of conversations. With some account of the habits of fishes belonging to the genus Salmo', 'Davy, Humphry, Sir', '2016-01-17', 32, 'https://www.gutenberg.org/ebooks/50944', 'en', 1945), +(31775, 'History of the Decline and Fall of the Roman Empire — Volume 3', 'Gibbon, Edward', '2008-06-07', 219, 'https://www.gutenberg.org/ebooks/733', 'en', 7245), +(31776, 'The Rhode Island Artillery at the First Battle of Bull Run', 'Monroe, J. Albert (John Albert)', '2010-04-13', 9, 'https://www.gutenberg.org/ebooks/31973', 'en', 3520), +(31777, 'Abrégé de l\'Histoire Générale des Voyages (Tome 1)', 'La Harpe, Jean-François de', '2007-09-10', 14, 'https://www.gutenberg.org/ebooks/22558', 'fr', 885), +(31778, 'The Ways of a Worker of a Century Ago\nas Shown by the Diary of Joseph Lye, Shoemaker', 'Gannon, Fred A.', '2015-09-03', 10, 'https://www.gutenberg.org/ebooks/49869', 'en', 7690), +(31779, 'The Man Who Saw the Future', 'Hamilton, Edmond', '2009-02-13', 57, 'https://www.gutenberg.org/ebooks/28062', 'en', 179), +(31780, 'ఈ దారి ఎక్కడికి? (రధచక్రాలు - ఉత్తరగాధ)', 'Ramamohan Rao, Mahidhara', '2015-10-10', 20, 'https://www.gutenberg.org/ebooks/50178', 'te', 61), +(31781, 'Περί Ψυχής', 'Aristotle', '2009-01-15', 75, 'https://www.gutenberg.org/ebooks/27816', 'el', 5380), +(31782, 'History of the Fifty-Seventh Regiment, Pennsylvania Veteran Volunteer Infantry\r\nFirst Brigade, First Division, Third Corps and Second Brigade, Third Division, Second Corps, Army of the Potomac', 'Various', '2018-11-20', 11, 'https://www.gutenberg.org/ebooks/58315', 'en', 1489), +(31783, 'Al di là: romanzo', 'Oriani, Alfredo', '2014-05-19', 17, 'https://www.gutenberg.org/ebooks/45698', 'it', 1544), +(31784, 'La Jangada\nHuit cent lieues sur l\'Amazone', 'Verne, Jules', '2005-01-25', 25, 'https://www.gutenberg.org/ebooks/14806', 'fr', 12418), +(31785, 'The Branding Needle; or, The Monastery of Charolles\r\nA Tale of the First Communal Charter', 'Sue, Eugène', '2010-09-03', 11, 'https://www.gutenberg.org/ebooks/33618', 'en', 224), +(31786, 'Op het onheilspad', 'Curwood, James Oliver', '2012-10-30', 10, 'https://www.gutenberg.org/ebooks/41238', 'nl', 10932), +(31787, 'Australian Pictures, Drawn with Pen and Pencil', 'Willoughby, Howard', '2012-04-01', 41, 'https://www.gutenberg.org/ebooks/39322', 'en', 12419), +(31788, 'McClure\'s Magazine December, 1895', NULL, '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/11548', 'en', 883), +(31789, 'The Girl\'s Own Paper, Vol. VIII, No. 354, October 9, 1886', 'Various', '2006-05-01', 34, 'https://www.gutenberg.org/ebooks/18293', 'en', 563), +(31790, 'A Dream of John Ball; and, A King\'s Lesson', 'Morris, William', '1995-11-01', 79, 'https://www.gutenberg.org/ebooks/357', 'en', 12420), +(31791, 'Great Mysteries and Little Plagues', 'Neal, John', '2011-01-07', 17, 'https://www.gutenberg.org/ebooks/34865', 'en', 12421), +(31792, 'A Maker of History', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-09-20', 16, 'https://www.gutenberg.org/ebooks/19341', 'en', 1319), +(31793, 'The Strong Arm', 'Barr, Robert', '2005-08-01', 30, 'https://www.gutenberg.org/ebooks/8716', 'en', 12422), +(31794, 'The Burial Customs of the Ancient Greeks', 'Graves, Frank Pierrepont', '2015-07-12', 42, 'https://www.gutenberg.org/ebooks/49431', 'en', 12423), +(31795, 'Erasmus and the Age of Reformation', 'Huizinga, Johan', '2007-10-05', 58, 'https://www.gutenberg.org/ebooks/22900', 'en', 12424), +(31796, 'Why I Believe in Scouting for Girls', 'Rinehart, Mary Roberts', '2009-03-25', 27, 'https://www.gutenberg.org/ebooks/28406', 'en', 5166), +(31797, 'Finding the Lost Treasure', 'Persons, Helen M.', '2013-10-12', 23, 'https://www.gutenberg.org/ebooks/43937', 'en', 9066), +(31798, 'The Country of Sir Walter Scott', 'Olcott, Charles S. (Charles Sumner)', '2017-06-26', 14, 'https://www.gutenberg.org/ebooks/54980', 'en', 2714), +(31799, 'West-östlicher Divan: Ten Lyrics with Friulian Translation', 'Goethe, Johann Wolfgang von', '2010-10-11', 16, 'https://www.gutenberg.org/ebooks/34059', 'fur', 8), +(31800, 'The Children of Cupa', 'Mannix, Mary Ellen', '2017-10-30', 5, 'https://www.gutenberg.org/ebooks/55852', 'en', 12425), +(31801, 'Calendar history of the Kiowa Indians. (1898 N 17 / 1895-1896 (pages 129-444))', 'Mooney, James', '2014-08-02', 32, 'https://www.gutenberg.org/ebooks/46479', 'en', 12426), +(31802, 'Paradoxes of Catholicism', 'Benson, Robert Hugh', '2005-07-16', 53, 'https://www.gutenberg.org/ebooks/16309', 'en', 12427), +(31803, 'Punch, or the London Charivari, Volume 153, August 8, 1917', 'Various', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/11910', 'en', 134), +(31804, 'The Unspeakable Perk', 'Adams, Samuel Hopkins', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/5009', 'en', 48), +(31805, 'Honoré de Balzac', 'Gautier, Théophile', '2016-10-29', 20, 'https://www.gutenberg.org/ebooks/53399', 'fr', 12428), +(31806, 'The Lost Tribes of the Irish in the South\nAn Address at the Annual Dinner of the American Irish Historical Society, January 6, 1917', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2019-01-26', 9, 'https://www.gutenberg.org/ebooks/58771', 'en', 12429), +(31807, 'The Works of George Berkeley. Vol. 1 of 4: Philosophical Works, 1705-21', 'Berkeley, George', '2012-05-20', 89, 'https://www.gutenberg.org/ebooks/39746', 'en', 3556), +(31808, 'De Ongelikte Beer', 'London, Jack', '2008-05-03', 22, 'https://www.gutenberg.org/ebooks/25319', 'nl', 6185), +(31809, 'Papuan Pictures', 'Dauncey, H. M.', '2018-08-21', 16, 'https://www.gutenberg.org/ebooks/57739', 'en', 12430), +(31810, 'The Story Hour: A Book for the Home and the Kindergarten', 'Wiggin, Kate Douglas Smith', '2004-06-01', 51, 'https://www.gutenberg.org/ebooks/5835', 'en', 1817), +(31811, 'Peter Binney: A Novel', 'Marshall, Archibald', '2012-01-27', 97, 'https://www.gutenberg.org/ebooks/38694', 'en', 2079), +(31812, 'Gold Out of Celebes', 'Dingle, Aylward Edward', '2008-06-28', 5, 'https://www.gutenberg.org/ebooks/25917', 'en', 2588), +(31813, 'History of the Forty-second regiment infantry, Massachusetts volunteers, 1862, 1863, 1864', 'Bosson, Charles P. (Charles Palfray)', '2016-05-16', 17, 'https://www.gutenberg.org/ebooks/52079', 'en', 12431), +(31814, 'Harper\'s Round Table, October 27, 1896', 'Various', '2019-05-13', 12, 'https://www.gutenberg.org/ebooks/59491', 'en', 668), +(31815, 'Velazquez', 'Knackfuss, H. (Hermann)', '2018-12-26', 7, 'https://www.gutenberg.org/ebooks/58543', 'de', 11369), +(31816, 'Nine Men in Time', 'Loomis, Noel M.', '2010-10-18', 25, 'https://www.gutenberg.org/ebooks/33872', 'en', 2229), +(31817, 'Hours in a Library, Volume 1\r\nNew Edition, with Additions', 'Stephen, Leslie', '2007-01-27', 52, 'https://www.gutenberg.org/ebooks/20459', 'en', 1694), +(31818, 'The Radio Boys on Secret Service Duty', 'Breckenridge, Gerald', '2012-05-01', 14, 'https://www.gutenberg.org/ebooks/39574', 'en', 12432), +(31819, 'The Girl in His Mind', 'Young, Robert F.', '2016-08-18', 24, 'https://www.gutenberg.org/ebooks/52845', 'en', 26), +(31820, 'Hills of Han: A Romantic Incident', 'Merwin, Samuel', '2017-01-18', 5, 'https://www.gutenberg.org/ebooks/53997', 'en', 775), +(31821, 'The Normans; told chiefly in relation to their conquest of England', 'Jewett, Sarah Orne', '2014-02-15', 14, 'https://www.gutenberg.org/ebooks/44920', 'en', 2964), +(31822, 'McTeague: A Story of San Francisco', 'Norris, Frank', '2006-03-12', 237, 'https://www.gutenberg.org/ebooks/165', 'en', 12433), +(31823, 'The Plain Man and His Wife', 'Bennett, Arnold', '2004-09-13', 30, 'https://www.gutenberg.org/ebooks/13449', 'en', 740), +(31824, 'Die Heiligen', 'Kellermann, Bernhard', '2013-07-28', 13, 'https://www.gutenberg.org/ebooks/43339', 'de', 253), +(31825, 'L\'Île Des Pingouins', 'France, Anatole', '2005-07-01', 37, 'https://www.gutenberg.org/ebooks/8524', 'fr', 781), +(31826, 'Greenwich Village', 'Chapin, Anna Alice', '2005-10-19', 23, 'https://www.gutenberg.org/ebooks/16907', 'en', 12434), +(31827, 'Madge Morton\'s Trust', 'Chalmers, Amy D. V.', '2010-03-21', 21, 'https://www.gutenberg.org/ebooks/31719', 'en', 51), +(31828, 'Moderne Geister: Literarische Bildnisse aus dem neunzehnten Jahrhundert', 'Brandes, Georg', '2015-08-04', 15, 'https://www.gutenberg.org/ebooks/49603', 'de', 536), +(31829, 'The Cow Puncher', 'Stead, Robert J. C.', '2006-09-04', 36, 'https://www.gutenberg.org/ebooks/19173', 'en', 61), +(31830, 'Michaël Choræi Samlade skaldestycken', 'Choraeus, Michaël', '2014-12-28', 17, 'https://www.gutenberg.org/ebooks/47799', 'sv', 8), +(31831, 'The Lost Princess of Oz', 'Baum, L. Frank (Lyman Frank)', '1997-06-01', 261, 'https://www.gutenberg.org/ebooks/959', 'en', 12281), +(31832, 'Religious Life of Virginia in the Seventeenth Century\nThe Faith of Our Fathers', 'Brydon, G. MacLaren (George MacLaren)', '2009-04-29', 7, 'https://www.gutenberg.org/ebooks/28634', 'en', 12435), +(31833, 'London in 1731', 'Gonzales, Manoel, Don', '2001-09-01', 42, 'https://www.gutenberg.org/ebooks/2822', 'en', 856), +(31834, 'Mother Stories from the Book of Mormon', 'Morton, William A.', '2015-03-18', 11, 'https://www.gutenberg.org/ebooks/48517', 'en', 12436), +(31835, 'A Sketch of the Life of the late Henry Cooper\nBarrister-at-Law, of the Norfolk Circuit; as also, of his Father', 'Cooper, William', '2007-12-11', 19, 'https://www.gutenberg.org/ebooks/23826', 'en', 12437), +(31836, 'Proportional Representation: A Study in Methods of Election', 'Humphreys, John H.', '2006-01-01', 9, 'https://www.gutenberg.org/ebooks/9630', 'en', 12438), +(31837, 'Love\'s Old Sweet Song\r\nA sheaf of latter-day love-poems gathered from many sources', NULL, '2017-02-10', 12, 'https://www.gutenberg.org/ebooks/54148', 'en', 2185), +(31838, 'Sketch of the First Kentucky Brigade', 'Hodge, George B. (George Baird)', '2011-01-08', 17, 'https://www.gutenberg.org/ebooks/34891', 'en', 12439), +(31839, 'We Philologists\r\nComplete Works of Friedrich Nietzsche, Volume 8', 'Nietzsche, Friedrich Wilhelm', '2006-04-27', 59, 'https://www.gutenberg.org/ebooks/18267', 'en', 12440), +(31840, 'That Unfortunate Marriage, Vol. 1', 'Trollope, Frances Eleanor', '2011-04-24', 23, 'https://www.gutenberg.org/ebooks/35943', 'en', 5040), +(31841, 'Seventh Annual Report of the Bureau of Ethnology\r\nto the Secretary of the Smithsonian Institution, 1885-1886, Government Printing Office, Washington, 1891', NULL, '2008-09-10', 37, 'https://www.gutenberg.org/ebooks/26568', 'en', 2772), +(31842, 'Nonsenseorship', NULL, '2004-10-01', 95, 'https://www.gutenberg.org/ebooks/6678', 'en', 2984), +(31843, 'Tour of the American Lakes, and Among the Indians of the North-West Territory, in 1830, Volume 1 (of 2)\nDisclosing the Character and Prospects of the Indian Race', 'Colton, Calvin', '2017-06-24', 5, 'https://www.gutenberg.org/ebooks/54974', 'en', 12441), +(31844, 'Tupa Uudentalon veräjällä', 'Onkel Adam', '2009-07-27', 12, 'https://www.gutenberg.org/ebooks/29520', 'fi', 2168), +(31845, 'Japanese Colour-Prints and Their Designers', 'Gookin, Frederick W.', '2013-05-25', 25, 'https://www.gutenberg.org/ebooks/42811', 'en', 12442), +(31846, 'The Miracle Man', 'Packard, Frank L. (Frank Lucius)', '2005-04-07', 21, 'https://www.gutenberg.org/ebooks/15578', 'en', 3676), +(31847, 'History of Denmark, Sweden, and Norway, Vol. 2 (of 2)', 'Dunham, S. A. (Samuel Astley)', '2019-06-02', 41, 'https://www.gutenberg.org/ebooks/59657', 'en', 6847), +(31848, 'The Flight of the Silver Ship: Around the World Aboard a Giant Dirgible', 'McAlister, Hugh', '2014-03-25', 15, 'https://www.gutenberg.org/ebooks/45208', 'en', 3124), +(31849, 'The Algebra of Logic', 'Couturat, Louis', '2004-01-01', 69, 'https://www.gutenberg.org/ebooks/10836', 'en', 2897), +(31850, 'Servants of the Guns', 'Jeffery, Jeffery E. (Jeffery Eardley)', '2011-10-04', 14, 'https://www.gutenberg.org/ebooks/37628', 'en', 2223), +(31851, 'The Gray Angels', 'Bartley, Nalbro', '2019-01-28', 5, 'https://www.gutenberg.org/ebooks/58785', 'en', 262), +(31852, 'Chess and Checkers : the Way to Mastership', 'Lasker, Edward', '2004-01-01', 74, 'https://www.gutenberg.org/ebooks/4913', 'en', 3733), +(31853, 'The Expositor\'s Bible: The Gospel of St. John, Vol. II', 'Dods, Marcus', '2010-07-29', 26, 'https://www.gutenberg.org/ebooks/33288', 'en', 5364), +(31854, 'Observations grammaticales sur quelques articles du Dictionnaire du mauvais langage', 'Deplace, Guy-Marie', '2012-01-24', 8, 'https://www.gutenberg.org/ebooks/38660', 'fr', 940), +(31855, 'Pugilistica: The History of British Boxing, Volume 1 (of 2)\r\nContaining Lives of the Most Celebrated Pugilists; Full Reports of Their Battles from Contemporary Newspapers, With Authentic Portraits, Personal Anecdotes, and Sketches of the Principal Patrons of the Prize Ring, Forming a Complete History of the Ring from Fig and Broughton, 1719-40, to the Last Championship Battle Between King and Heenan, in December 1863', 'Miles, Henry Downes', '2019-05-09', 32, 'https://www.gutenberg.org/ebooks/59465', 'en', 10576), +(31856, 'The Black Arrow: A Tale of the Two Roses', 'Stevenson, Robert Louis', '2010-06-23', 129, 'https://www.gutenberg.org/ebooks/32954', 'en', 1080), +(31857, 'Ranching for Sylvia', 'Bindloss, Harold', '2005-01-15', 25, 'https://www.gutenberg.org/ebooks/14698', 'en', 65), +(31858, 'The Wish: A Novel', 'Sudermann, Hermann', '2010-10-28', 19, 'https://www.gutenberg.org/ebooks/33886', 'en', 12443), +(31859, 'Forests of Maine\nMarco Paul\'s Adventures in Pursuit of Knowledge', 'Abbott, Jacob', '2008-03-14', 38, 'https://www.gutenberg.org/ebooks/24831', 'en', 12444), +(31860, 'Faust: A Lyric Drama in Five Acts', 'Gounod, Charles', '2014-05-28', 30, 'https://www.gutenberg.org/ebooks/45806', 'en', 1966), +(31861, 'An Introduction to the Philosophy of Law', 'Pound, Roscoe', '2010-04-28', 96, 'https://www.gutenberg.org/ebooks/32168', 'en', 2807), +(31862, 'A History of the Inquisition of the Middle Ages; volume III', 'Lea, Henry Charles', '2012-04-30', 16, 'https://www.gutenberg.org/ebooks/39580', 'en', 6646), +(31863, 'Lord Chatham, His Early Life and Connections', 'Rosebery, Archibald Philip Primrose, Earl of', '2012-01-01', 87, 'https://www.gutenberg.org/ebooks/38452', 'en', 12445), +(31864, 'Graham\'s Magazine, Vol. XXXIV, No. 6, June 1849', 'Various', '2017-01-14', 15, 'https://www.gutenberg.org/ebooks/53963', 'en', 162), +(31865, 'The Rival Campers; Or, The Adventures of Henry Burns', 'Smith, Ruel Perley', '2012-08-20', 23, 'https://www.gutenberg.org/ebooks/40548', 'en', 2794), +(31866, 'Ediphone School Record No. 2\r\n90 WPM-1', NULL, '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10238', 'en', 12446), +(31867, 'A Hundred Years by Post: A Jubilee Retrospect', 'Hyde, James Wilson', '2009-01-02', 20, 'https://www.gutenberg.org/ebooks/27688', 'en', 12447), +(31868, 'Journal des Goncourt (Troisième série, troisième volume)\nMémoires de la vie littéraire', 'Goncourt, Edmond de', '2006-03-27', 8, 'https://www.gutenberg.org/ebooks/18055', 'fr', 8974), +(31869, 'Colomba: Kertomus Korsikan oloista 1810-luvulta', 'Mérimée, Prosper', '2015-04-17', 19, 'https://www.gutenberg.org/ebooks/48725', 'fi', 6265), +(31870, 'Red Hair', 'Glyn, Elinor', '2006-02-22', 18, 'https://www.gutenberg.org/ebooks/17821', 'en', 48), +(31871, 'Be Courteous, or, Religion, the True Refiner', 'Maxwell, M. H. (Mary H.)', '2005-12-01', 12, 'https://www.gutenberg.org/ebooks/9402', 'en', 12448), +(31872, 'Ballades & Rhymes from Ballades in Blue China and Rhymes a la Mode', 'Lang, Andrew', '2002-03-01', 24, 'https://www.gutenberg.org/ebooks/3138', 'en', 8), +(31873, 'Chevalier de Mornac: Chronique de la Nouvelle-France (1664)', 'Marmette, Joseph', '2006-09-05', 9, 'https://www.gutenberg.org/ebooks/19187', 'fr', 1890), +(31874, 'The Boy Travellers in The Russian Empire\r\nAdventures of Two Youths in a Journey in European and Asiatic Russia, with Accounts of a Tour across Siberia, Voyages on the Amoor, Volga, and Other Rivers, a Visit to Central Asia, Travels among the Exiles, and a Historical Sketch of the Empire from Its Foundation to the Present Time', 'Knox, Thomas Wallace', '2019-08-11', 290, 'https://www.gutenberg.org/ebooks/60086', 'en', 246), +(31875, 'On Limitations to the Use of Some Anthropologic Data', 'Powell, John Wesley', '2006-07-19', 26, 'https://www.gutenberg.org/ebooks/18869', 'en', 869), +(31876, 'Arabische Nächte', 'Bethge, Hans', '2007-10-28', 42, 'https://www.gutenberg.org/ebooks/23228', 'de', 12449), +(31877, 'Mystery of the Chinese Ring: A Biff Brewster Mystery Adventure', 'Adams, Andy', '2016-03-31', 17, 'https://www.gutenberg.org/ebooks/51608', 'en', 5716), +(31878, 'The Confessions of Jean Jacques Rousseau — Volume 04', 'Rousseau, Jean-Jacques', '2004-12-06', 22, 'https://www.gutenberg.org/ebooks/3904', 'en', 608), +(31879, 'Uit het leven van Dik Trom', 'Kieviet, Cornelis Johannes', '2009-08-17', 39, 'https://www.gutenberg.org/ebooks/29712', 'nl', 12450), +(31880, 'The Caxtons: A Family Picture — Volume 13', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 13, 'https://www.gutenberg.org/ebooks/7598', 'en', 376), +(31881, 'Notes and Queries, Vol. V, Number 125, March 20, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-10-01', 12, 'https://www.gutenberg.org/ebooks/40910', 'en', 105), +(31882, 'Russian Roulette: Russia\'s Economy in Putin\'s Era', 'Vaknin, Samuel', '2003-12-01', 40, 'https://www.gutenberg.org/ebooks/4779', 'en', 12451), +(31883, 'The History of Mary I, Queen of England\r\nas found in the public records, despatches of ambassadors, in original private letters, and other contemporary documents', 'Stone, J. M. (Jean Mary)', '2018-03-29', 7, 'https://www.gutenberg.org/ebooks/56875', 'en', 4746), +(31884, 'The Strand Magazine, Vol. 01, No. 04 (April 1891)', 'Various', '2019-03-03', 24, 'https://www.gutenberg.org/ebooks/59001', 'en', 2998), +(31885, 'Electricity for the 4-H Scientist', 'Wilson, Eric B.', '2011-11-16', 14, 'https://www.gutenberg.org/ebooks/38036', 'en', 8897), +(31886, 'Small Horses in Warfare', 'Gilbey, Walter, Sir', '2011-10-25', 22, 'https://www.gutenberg.org/ebooks/37842', 'en', 2777), +(31887, 'The Supplies for the Confederate Army,\nhow they were obtained in Europe and how paid for.', 'Huse, Caleb', '2008-01-31', 32, 'https://www.gutenberg.org/ebooks/24469', 'en', 12452), +(31888, 'La letra escarlata\nnovela escrita en inglés', 'Hawthorne, Nathaniel', '2011-08-06', 160, 'https://www.gutenberg.org/ebooks/36990', 'es', 55), +(31889, 'Cleopatra: A Study', 'Houssaye, Henry', '2017-11-25', 15, 'https://www.gutenberg.org/ebooks/56049', 'en', 12453), +(31890, 'Short Cruises', 'Jacobs, W. W. (William Wymark)', '2007-06-25', 26, 'https://www.gutenberg.org/ebooks/21927', 'en', 1224), +(31891, 'The Boy Scouts in the Maine Woods; Or, The New Test for the Silver Fox Patrol', 'Carter, Herbert, active 1909-1917', '2010-02-25', 12, 'https://www.gutenberg.org/ebooks/31389', 'en', 1002), +(31892, 'La maison des hommes vivants', 'Farrère, Claude', '2015-06-27', 9, 'https://www.gutenberg.org/ebooks/49293', 'fr', 12454), +(31893, 'Abraham Lincoln: a History — Volume 01', 'Nicolay, John G. (John George)', '2004-11-01', 151, 'https://www.gutenberg.org/ebooks/6812', 'en', 1009), +(31894, 'Other Worlds\nTheir Nature, Possibilities and Habitability in the Light of the Latest Discoveries', 'Serviss, Garrett Putman', '2006-05-22', 35, 'https://www.gutenberg.org/ebooks/18431', 'en', 12455), +(31895, 'Gunshot Roentgenograms\r\nA Collection of Roentgenograms Taken in Constantinople During the Turko-Balkan War, 1912-1913, Illustrating Some Gunshot Wounds in the Turkish Army', 'Ford, Clyde S. (Clyde Sinclair)', '2015-02-22', 11, 'https://www.gutenberg.org/ebooks/48341', 'en', 10933), +(31896, 'Der letzte Zentaur', 'Heyse, Paul', '2005-10-01', 17, 'https://www.gutenberg.org/ebooks/9066', 'de', 12456), +(31897, 'The Master of the World', 'Verne, Jules', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/8988', 'en', 323), +(31898, 'Bahnwärter Thiel', 'Hauptmann, Gerhart', '2009-07-11', 96, 'https://www.gutenberg.org/ebooks/29376', 'de', 138), +(31899, 'Out with Gun and Camera; or, The Boy Hunters in the Mountains', 'Stratemeyer, Edward', '2004-07-19', 22, 'https://www.gutenberg.org/ebooks/12937', 'en', 7371), +(31900, 'Peggy Parsons, a Hampton Freshman', 'Sharp, Annabel', '2011-03-30', 53, 'https://www.gutenberg.org/ebooks/35729', 'en', 1655), +(31901, 'Experiments on the Nervous System with Opium and Metalline Substances\r\nMade Chiefly with the View of Determining the Nature and Effects of Animal Electricity', 'Monro, Alexander', '2014-11-07', 14, 'https://www.gutenberg.org/ebooks/47309', 'en', 12457), +(31902, 'Ang Mahusay na Paraan nang Pag-Gamot sa manga Maysaquit', 'Tissot, S. A. D. (Samuel Auguste David)', '2006-01-08', 16, 'https://www.gutenberg.org/ebooks/17479', 'tl', 12458), +(31903, 'Hendes Højhed', 'Bang, Herman', '2004-05-01', 11, 'https://www.gutenberg.org/ebooks/12339', 'da', 6055), +(31904, 'Peter Abélard', 'McCabe, Joseph', '2016-04-25', 12, 'https://www.gutenberg.org/ebooks/51862', 'en', 9860), +(31905, 'Ptomaine Street: The Tale of Warble Petticoat', 'Wells, Carolyn', '2005-06-01', 12, 'https://www.gutenberg.org/ebooks/8386', 'en', 12459), +(31906, 'My Wonderful Visit', 'Chaplin, Charlie', '2013-03-31', 37, 'https://www.gutenberg.org/ebooks/42449', 'en', 12460), +(31907, 'Shelley, Godwin and Their Circle', 'Brailsford, Henry Noel', '2009-09-13', 12, 'https://www.gutenberg.org/ebooks/29978', 'en', 12461), +(31908, 'Practical Carriage and Wagon Painting\nA Treatise on the Painting of Carriages, Wagons and Sleighs, Embracing Full and Explicit Directions for Executing All Kinds of Work, Including Painting Factory Work, Lettering, Scrolling, Ornamenting, Varnishing, etc., with Many Tested Recipes and Formulas', 'Hillick, M. C. (Mayton Clarence)', '2015-02-05', 17, 'https://www.gutenberg.org/ebooks/48173', 'en', 12462), +(31909, 'Bom-senso e bom-gosto\r\nFolhetim a proposito da carta que o senhor Anthero do Quental dirigiu ao senhor Antonio Feliciano de Castilho', 'Chagas, Manuel Pinheiro', '2009-09-23', 10, 'https://www.gutenberg.org/ebooks/30069', 'pt', 12463), +(31910, 'Biographical Stories\n(From: \"True Stories of History and Biography\")', 'Hawthorne, Nathaniel', '2005-11-01', 27, 'https://www.gutenberg.org/ebooks/9254', 'en', 8676), +(31911, 'Mr. Punch\'s \"Animal Land\"', 'Reed, Edward Tennyson', '2015-01-08', 36, 'https://www.gutenberg.org/ebooks/47907', 'en', 2965), +(31912, 'What Social Classes Owe to Each Other', 'Sumner, William Graham', '2006-06-16', 46, 'https://www.gutenberg.org/ebooks/18603', 'en', 8449), +(31913, 'Over the top with the 25th: Chronicle of events at Vimy Ridge and Courcellette', 'Lewis, R.', '2008-10-16', 17, 'https://www.gutenberg.org/ebooks/26930', 'en', 4962), +(31914, 'Dangerous Ages', 'Macaulay, Rose', '2005-10-04', 22, 'https://www.gutenberg.org/ebooks/16799', 'en', 61), +(31915, 'Territory in Bird Life', 'Howard, Henry Eliot', '2010-04-14', 26, 'https://www.gutenberg.org/ebooks/31987', 'en', 12464), +(31916, 'Dubbele Twee: Leesboek voor het vierde leerjaar', 'Klei, Jacob van der', '2009-06-17', 10, 'https://www.gutenberg.org/ebooks/29144', 'nl', 1019), +(31917, 'The Lilac Fairy Book', 'Lang, Andrew', '2009-02-16', 70, 'https://www.gutenberg.org/ebooks/28096', 'en', 1007), +(31918, 'The Wife of Sir Isaac Harman', 'Wells, H. G. (Herbert George)', '2010-01-04', 33, 'https://www.gutenberg.org/ebooks/30855', 'en', 95), +(31919, 'Homo Sum — Complete', 'Ebers, Georg', '2004-11-15', 30, 'https://www.gutenberg.org/ebooks/5499', 'en', 803), +(31920, 'The American Missionary — Volume 32, No. 03, March, 1878', 'Various', '2016-12-10', 1, 'https://www.gutenberg.org/ebooks/53709', 'en', 562), +(31921, 'The Gentle Grafter', 'Henry, O.', '1999-07-01', 110, 'https://www.gutenberg.org/ebooks/1805', 'en', 2116), +(31922, 'The Nabob, Vol. 2 (of 2)', 'Daudet, Alphonse', '2007-05-05', 21, 'https://www.gutenberg.org/ebooks/21329', 'en', 3075), +(31923, 'Scarabs: An Introduction to the Study of Egyptian Seals and Signet Rings', 'Newberry, Percy E. (Percy Edward)', '2019-04-09', 28, 'https://www.gutenberg.org/ebooks/59233', 'en', 673), +(31924, 'Tragedie dell\'anima', 'Bracco, Roberto', '2011-12-03', 12, 'https://www.gutenberg.org/ebooks/38204', 'it', 407), +(31925, 'Missionary Travels and Researches in South Africa', 'Livingstone, David', '2006-02-11', 156, 'https://www.gutenberg.org/ebooks/1039', 'en', 6548), +(31926, 'Outward Bound Or, Young America Afloat: A Story of Travel and Adventure', 'Optic, Oliver', '2005-05-27', 27, 'https://www.gutenberg.org/ebooks/15920', 'en', 1447), +(31927, 'Emily Brontë', 'Robinson, A. Mary F. (Agnes Mary Frances)', '2008-06-14', 37, 'https://www.gutenberg.org/ebooks/25789', 'en', 10705), +(31928, 'The Younger Set', 'Chambers, Robert W. (Robert William)', '2005-02-01', 18, 'https://www.gutenberg.org/ebooks/14852', 'en', 61), +(31929, 'The Riverman', 'White, Stewart Edward', '1997-11-01', 39, 'https://www.gutenberg.org/ebooks/1099', 'en', 12465), +(31930, 'Aunt Jo\'s Scrap-Bag, Volume 3\nCupid and Chow-chow, etc.', 'Alcott, Louisa May', '2018-06-11', 29, 'https://www.gutenberg.org/ebooks/57309', 'en', 388), +(31931, 'Travel Tales in the Promised Land (Palestine)', 'May, Karl', '2008-06-08', 45, 'https://www.gutenberg.org/ebooks/25729', 'en', 2204), +(31932, 'The Gipsy: A Tale (Vols I & II)', 'James, G. P. R. (George Payne Rainsford)', '2012-04-04', 15, 'https://www.gutenberg.org/ebooks/39376', 'en', 3294), +(31933, 'Pag Susulatan nang Dalauang Binibini na si Urbana at ni Feliza', 'Castro, Modesto de', '2005-06-04', 130, 'https://www.gutenberg.org/ebooks/15980', 'tl', 12466), +(31934, 'Novelle', 'De Amicis, Edmondo', '2018-11-24', 32, 'https://www.gutenberg.org/ebooks/58341', 'it', 474), +(31935, 'Uarda : a Romance of Ancient Egypt — Volume 01', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5439', 'en', 803), +(31936, 'Ronald Morton; or, the Fire Ships: A Story of the Last Naval War', 'Kingston, William Henry Giles', '2007-05-08', 21, 'https://www.gutenberg.org/ebooks/21389', 'en', 12467), +(31937, 'My Spanish Year', 'Whishaw, Ellen M.', '2019-04-17', 8, 'https://www.gutenberg.org/ebooks/59293', 'en', 1514), +(31938, 'The Greatest Thing In the World and Other Addresses', 'Drummond, Henry', '2005-09-24', 91, 'https://www.gutenberg.org/ebooks/16739', 'en', 12468), +(31939, 'The Portal of Dreams', 'Buck, Charles Neville', '2010-04-09', 26, 'https://www.gutenberg.org/ebooks/31927', 'en', 61), +(31940, 'Twos and Threes', 'Stern, G. B. (Gladys Bronwyn)', '2014-06-20', 16, 'https://www.gutenberg.org/ebooks/46049', 'en', 230), +(31941, 'Holy in Christ\nThoughts on the Calling of God\'s Children to be Holy as He is Holy', 'Murray, Andrew', '2008-10-22', 55, 'https://www.gutenberg.org/ebooks/26990', 'en', 12469), +(31942, 'The Economic Aspect of Geology', 'Leith, C. K. (Charles Kenneth)', '2009-01-19', 15, 'https://www.gutenberg.org/ebooks/27842', 'en', 7286), +(31943, 'L\'Atlantide', 'Benoît, Pierre', '2010-11-28', 40, 'https://www.gutenberg.org/ebooks/34469', 'fr', 26), +(31944, 'Public School Education', 'Müller, Michael', '2009-02-09', 17, 'https://www.gutenberg.org/ebooks/28036', 'en', 8827), +(31945, 'The Bible, Douay-Rheims, Book 26: Ecclesiasticus\nThe Challoner Revision', NULL, '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/8326', 'en', 12470), +(31946, 'Mother\'s Nursery Tales', 'Pyle, Katharine', '2015-05-20', 134, 'https://www.gutenberg.org/ebooks/49001', 'en', 1007), +(31947, 'Henrietta Temple: A Love Story', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-11-12', 40, 'https://www.gutenberg.org/ebooks/19771', 'en', 1079), +(31948, 'Contes et nouvelles', 'Laboulaye, Édouard', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12399', 'fr', 179), +(31949, 'Nuovi racconti\nDopo venticinque anni; Lo Specchio rotto; Il Parassita indipendente; Il Maestro di calligrafia; L\'Orologio fermo; La Lettera di Margherita', 'Castelnuovo, Enrico', '2014-09-16', 27, 'https://www.gutenberg.org/ebooks/46875', 'it', 474), +(31950, 'Agnes Grey', 'Brontë, Anne', '1996-12-01', 381, 'https://www.gutenberg.org/ebooks/767', 'en', 957), +(31951, 'The Story of Napoleon', 'Wheeler, Harold', '2016-01-13', 8, 'https://www.gutenberg.org/ebooks/50910', 'en', 840), +(31952, 'The Pony Rider Boys in the Grand Canyon; Or, The Mystery of Bright Angel Gulch', 'Patchin, Frank Gee', '2004-07-22', 21, 'https://www.gutenberg.org/ebooks/12997', 'en', 5911), +(31953, 'Συμπόσιον : ή περί έρωτος', 'Plato', '2011-04-07', 38, 'https://www.gutenberg.org/ebooks/35789', 'el', 203), +(31954, 'Simón Bolívar (The Liberator)\r\nPatriot, Warrior, Statesman, Father of Five Nations, a Sketch of His Life and His Work', 'Sherwell, Guillermo A. (Guillermo Antonio)', '2005-09-01', 48, 'https://www.gutenberg.org/ebooks/8928', 'en', 12471), +(31955, 'How Mr. Rabbit Lost his Tail\r\nHollow Tree Stories', 'Paine, Albert Bigelow', '2009-02-27', 29, 'https://www.gutenberg.org/ebooks/28204', 'en', 625), +(31956, 'Manasse Jäppinen', 'Lassila, Maiju', '2004-10-25', 14, 'https://www.gutenberg.org/ebooks/13845', 'fi', 175), +(31957, 'Early European History', 'Webster, Hutton', '2005-04-01', 96, 'https://www.gutenberg.org/ebooks/7960', 'en', 1368), +(31958, 'Memorias de un vigilante', 'Alvarez, José S. (José Sixto)', '2006-10-14', 47, 'https://www.gutenberg.org/ebooks/19543', 'es', 12472), +(31959, 'Encyclopaedia Britannica, 11th Edition, \"Chicago, University of\" to \"Chiton\"\r\nVolume 6, Slice 2', 'Various', '2010-02-20', 26, 'https://www.gutenberg.org/ebooks/31329', 'en', 1081), +(31960, 'Personal Recollections\r\nAbridged, Chiefly in Parts Pertaining to Political and Other Controversies Prevalent at the Time in Great Britain', 'Charlotte Elizabeth', '2005-05-01', 2, 'https://www.gutenberg.org/ebooks/8114', 'en', 12473), +(31961, 'The Esperantist, Vol. 2, No. 11', NULL, '2015-06-18', 4, 'https://www.gutenberg.org/ebooks/49233', 'eo', 3912), +(31962, 'Willis\'s Current Notes, No. 15, March 1852', NULL, '2013-09-13', 4, 'https://www.gutenberg.org/ebooks/43709', 'en', 11896), +(31963, 'Lettre relative à l\'organisation des postes et relais', 'Dugas, Ch.', '2006-06-02', 11, 'https://www.gutenberg.org/ebooks/18491', 'fr', 1458), +(31964, 'The Unbearable Bassington', 'Saki', '1996-06-01', 285, 'https://www.gutenberg.org/ebooks/555', 'en', 797), +(31965, 'String Quartet No. 14 in C-sharp minor Opus 131', 'Beethoven, Ludwig van', '2004-08-02', 10, 'https://www.gutenberg.org/ebooks/13079', 'en', 909), +(31966, 'Humboldt\nFrom \'The Gods and Other Lectures\'', 'Ingersoll, Robert Green', '2011-11-22', 15, 'https://www.gutenberg.org/ebooks/38096', 'en', 1191), +(31967, 'Estatuto de la L. F. (Liga Filipina)', 'Rizal, José', '2007-03-20', 16, 'https://www.gutenberg.org/ebooks/20855', 'es', 12474), +(31968, 'The Village Pulpit, Volume II. Trinity to Advent\nA Complete Course of 66 Short Sermons, or Full Sermon Outlines for Each Sunday, and Some Chief Holy Days of the Christian Year', 'Baring-Gould, S. (Sabine)', '2007-07-02', 21, 'https://www.gutenberg.org/ebooks/21987', 'en', 2745), +(31969, 'Under Four Administrations, from Cleveland to Taft\r\nRecollections of Oscar S. Straus ...', 'Straus, Oscar S. (Oscar Solomon)', '2012-03-14', 44, 'https://www.gutenberg.org/ebooks/39144', 'en', 12475), +(31970, 'Murillo', 'Bensusan, S. L. (Samuel Levy)', '2011-08-01', 15, 'https://www.gutenberg.org/ebooks/36930', 'en', 12476), +(31971, 'Seventeen trips through Somáliland\nA record of exploration & big game shooting, 1885 to 1893', 'Swayne, H. G. C. (Harald G. C.)', '2018-09-14', 7, 'https://www.gutenberg.org/ebooks/57907', 'en', 1936), +(31972, 'The Great Invasion of 1813-14; or, After Leipzig\r\nBeing a story of the entry of the allied forces into Alsace and Lorraine, and their march upon Paris after the Battle of Leipzig, called the Battle of the Kings and Nations', 'Erckmann-Chatrian', '2018-10-26', 16, 'https://www.gutenberg.org/ebooks/58173', 'en', 367), +(31973, 'Caruso and Tetrazzini on the Art of Singing', 'Tetrazzini, Luisa', '2006-12-09', 72, 'https://www.gutenberg.org/ebooks/20069', 'en', 1290), +(31974, 'The Spirit of America', 'Van Dyke, Henry', '2013-01-17', 7, 'https://www.gutenberg.org/ebooks/41862', 'en', 7462), +(31975, 'The Royal Mail: Its Curiosities and Romance', 'Hyde, James Wilson', '2012-06-12', 18, 'https://www.gutenberg.org/ebooks/39978', 'en', 12447), +(31976, 'Buell Hampton', 'Emerson, Willis George', '2016-06-30', 1, 'https://www.gutenberg.org/ebooks/52449', 'en', 2947), +(31977, 'Phebe, the Blackberry Girl\nUncle Thomas\'s Stories for Good Children', 'Anonymous', '2009-05-02', 19, 'https://www.gutenberg.org/ebooks/28660', 'en', 12477), +(31978, 'Little Mary\r\nOr, The Picture-Book', 'Cecil, Sabina', '2007-11-02', 9, 'https://www.gutenberg.org/ebooks/23288', 'en', 12478), +(31979, 'The Light That Failed', 'Kipling, Rudyard', '2001-10-01', 78, 'https://www.gutenberg.org/ebooks/2876', 'en', 533), +(31980, 'Quotes and Images from the Memoirs of Jacques Casanova de Seingalt', 'Casanova, Giacomo', '2004-08-26', 64, 'https://www.gutenberg.org/ebooks/7538', 'en', 1026), +(31981, 'The travels of Pedro de Cieza de Léon; part 2', 'Cieza de León, Pedro de', '2015-04-24', 18, 'https://www.gutenberg.org/ebooks/48785', 'en', 12479), +(31982, 'From the Bottom Up: The Life Story of Alexander Irvine', 'Irvine, Alexander', '2006-02-27', 18, 'https://www.gutenberg.org/ebooks/17881', 'en', 254), +(31983, 'York\nDe Aarde en haar Volken, 1909', 'Bosch, G.', '2008-12-25', 13, 'https://www.gutenberg.org/ebooks/27628', 'nl', 12480), +(31984, 'The Pilgrim\'s Progress from this world to that which is to come\r\nDelivered under the similitude of a dream, by John Bunyan', 'Bunyan, John', '1994-05-01', 1662, 'https://www.gutenberg.org/ebooks/131', 'en', 1633), +(31985, 'The Chautauquan, Vol. 04, July 1884, No. 10', 'Chautauqua Institution', '2017-07-26', 2, 'https://www.gutenberg.org/ebooks/55208', 'en', 1115), +(31986, 'Punch, or the London Charivari, Volume 159, December 8, 1920', 'Various', '2006-08-26', 7, 'https://www.gutenberg.org/ebooks/19127', 'en', 134), +(31987, 'Chambers\'s Edinburgh Journal, No. 426\nVolume 17, New Series, February 28, 1852', 'Various', '2005-10-27', 9, 'https://www.gutenberg.org/ebooks/16953', 'en', 18), +(31988, 'Mark Twain\'s Letters — Volume 6 (1907-1910)', 'Twain, Mark', '2004-09-19', 31, 'https://www.gutenberg.org/ebooks/3198', 'en', 1300), +(31989, 'The Philistines', 'Bates, Arlo', '2005-07-01', 22, 'https://www.gutenberg.org/ebooks/8570', 'en', 61), +(31990, 'Bosambo of the River', 'Wallace, Edgar', '2015-08-08', 48, 'https://www.gutenberg.org/ebooks/49657', 'en', 2126), +(31991, 'Anarchy and Anarchists\r\nA History of the Red Terror and the Social Revolution in America and Europe; Communism, Socialism, and Nihilism in Doctrine and in Deed; The Chicago Haymarket Conspiracy and the Detection and Trial of the Conspirators', 'Schaack, Michael J.', '2016-08-15', 36, 'https://www.gutenberg.org/ebooks/52811', 'en', 11063), +(31992, 'The Huguenot: A Tale of the French Protestants. Volumes I-III', 'James, G. P. R. (George Payne Rainsford)', '2012-04-23', 6, 'https://www.gutenberg.org/ebooks/39520', 'en', 10427), +(31993, 'Flow Gently Sweet Afton and Bonnie, Sweet Bessie', NULL, '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10298', 'en', 2603), +(31994, 'A short account of the extraordinary life and travels of H. L. L.----\r\nnative of St. Domingo, now a prisoner of war at Ashbourn, in Derbyshire, shewing the remarkable steps of Divine providence towards him, and the means of his conversion to God', 'H. L. L.', '2014-02-21', 24, 'https://www.gutenberg.org/ebooks/44974', 'en', 12481), +(31995, 'The Tale of Chirpy Cricket', 'Bailey, Arthur Scott', '2008-07-01', 34, 'https://www.gutenberg.org/ebooks/25943', 'en', 12482), +(31996, 'God and the State', 'Bakunin, Mikhail Aleksandrovich', '2011-06-30', 80, 'https://www.gutenberg.org/ebooks/36568', 'en', 11063), +(31997, 'Stray Leaves from an Arctic Journal\r\nOr, Eighteen Months in the Polar Regions, in Search of Sir John Franklin\'s Expedition, in the Years 1850-51', 'Osborn, Sherard', '2008-03-21', 18, 'https://www.gutenberg.org/ebooks/24891', 'en', 12483), +(31998, 'The Confessions of a Daddy', 'Butler, Ellis Parker', '2013-11-10', 7, 'https://www.gutenberg.org/ebooks/44148', 'en', 2811), +(31999, 'The Lutherans of New York\nTheir Story and Their Problems', 'Wenner, George Unangst', '2005-01-08', 15, 'https://www.gutenberg.org/ebooks/14638', 'en', 12484), +(32000, 'Lippincott\'s Horn-Ashbaugh Speller For Grades One to Eight', 'Ashbaugh, Ernest J. (Ernest James)', '2010-10-01', 24, 'https://www.gutenberg.org/ebooks/33826', 'en', 7396), +(32001, 'Kissing the Rod: A Novel. (Vol. 1 of 3)', 'Yates, Edmund', '2018-12-22', 19, 'https://www.gutenberg.org/ebooks/58517', 'en', 95), +(32002, 'La sagesse et la destinée', 'Maeterlinck, Maurice', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/11178', 'fr', 12485), +(32003, 'Drum Taps in Dixie: Memories of a Drummer Boy, 1861-1865', 'Miller, Delavan S.', '2012-12-12', 6, 'https://www.gutenberg.org/ebooks/41608', 'en', 444), +(32004, 'Goblin Tales of Lancashire', 'Bowker, James', '2012-05-16', 65, 'https://www.gutenberg.org/ebooks/39712', 'en', 12486), +(32005, 'A Master Hand: The Story of a Crime', 'Dallas, Richard', '2010-07-22', 23, 'https://www.gutenberg.org/ebooks/33228', 'en', 1335), +(32006, 'Personal Memoirs of U. S. Grant, Part 2.', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/5861', 'en', 111), +(32007, 'The Winning of the West, Volume 4\r\nLouisiana and the Northwest, 1791-1807', 'Roosevelt, Theodore', '2004-04-01', 34, 'https://www.gutenberg.org/ebooks/11944', 'en', 3119), +(32008, 'Quickie', 'Marlowe, Stephen', '2019-01-19', 32, 'https://www.gutenberg.org/ebooks/58725', 'en', 12069), +(32009, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 283, November 17, 1827', 'Various', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10896', 'en', 133), +(32010, 'A Trooper Galahad', 'King, Charles', '2011-10-10', 14, 'https://www.gutenberg.org/ebooks/37688', 'en', 10453), +(32011, 'The Principles of Stratigraphical Geology', 'Marr, J. E. (John Edward)', '2013-10-16', 18, 'https://www.gutenberg.org/ebooks/43963', 'en', 12487), +(32012, 'The American Housewife\nContaining the Most Valuable and Original Receipts in all\nthe Various Branches of Cookery; and Written in a Minute\nand Methodical Manner', 'Anonymous', '2009-03-30', 77, 'https://www.gutenberg.org/ebooks/28452', 'en', 12488), +(32013, 'A Beginner\'s History', 'Mace, William H. (William Harrison)', '2015-11-25', 11, 'https://www.gutenberg.org/ebooks/50548', 'en', 207), +(32014, 'Rim o\' the World', 'Bower, B. M.', '2009-08-03', 33, 'https://www.gutenberg.org/ebooks/29580', 'en', 315), +(32015, 'The Golden Spears\nAnd Other Fairy Tales', 'Leamy, Edmund', '2007-07-28', 21, 'https://www.gutenberg.org/ebooks/22168', 'en', 2500), +(32016, 'Ozoplaning with the Wizard of Oz', 'Thompson, Ruth Plumly', '2017-10-24', 42, 'https://www.gutenberg.org/ebooks/55806', 'en', 174), +(32017, 'HomeBrew HomePages Put YOU on the World Wide Web', 'Anonymous', '1995-07-01', 31, 'https://www.gutenberg.org/ebooks/303', 'en', 2069), +(32018, 'Guilt of the Brass Thieves', 'Wirt, Mildred A. (Mildred Augustine)', '2011-01-03', 26, 'https://www.gutenberg.org/ebooks/34831', 'en', 1842), +(32019, 'Old Valentines\nA Love Story', 'Havens, Munson Aldrich', '2007-12-17', 8, 'https://www.gutenberg.org/ebooks/23886', 'en', 48), +(32020, 'Condensed Novels: New Burlesques', 'Harte, Bret', '2000-08-01', 13, 'https://www.gutenberg.org/ebooks/2278', 'en', 2529), +(32021, 'A Child\'s History of England', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9690', 'en', 4279), +(32022, 'Scientific American Supplement, No. 392, July 7, 1883', 'Various', '2005-08-01', 10, 'https://www.gutenberg.org/ebooks/8742', 'en', 210), +(32023, 'Love and Freindship [sic]', 'Austen, Jane', '2007-10-01', 21, 'https://www.gutenberg.org/ebooks/22954', 'en', 5842), +(32024, 'The Three Bears of Porcupine Ridge', 'Thompson, Jean M. (Jean May)', '2015-07-17', 11, 'https://www.gutenberg.org/ebooks/49465', 'en', 625), +(32025, 'The Poems of Giacomo Leopardi', 'Leopardi, Giacomo', '2006-09-19', 71, 'https://www.gutenberg.org/ebooks/19315', 'en', 6362), +(32026, 'Young Alaskans in the Far North', 'Hough, Emerson', '2009-05-05', 18, 'https://www.gutenberg.org/ebooks/28694', 'en', 1586), +(32027, 'The Legends of the Jews — Volume 4', 'Ginzberg, Louis', '2001-10-01', 89, 'https://www.gutenberg.org/ebooks/2882', 'en', 495), +(32028, '\"Old Put\" The Patriot', 'Ober, Frederick A. (Frederick Albion)', '2005-11-11', 47, 'https://www.gutenberg.org/ebooks/17049', 'en', 12489), +(32029, 'The Wyndham Girls', 'Taggart, Marion Ames', '2014-12-22', 15, 'https://www.gutenberg.org/ebooks/47739', 'en', 2711), +(32030, 'Le transporté (1/4)', 'Méry, Joseph', '2011-02-18', 18, 'https://www.gutenberg.org/ebooks/35319', 'fr', 61), +(32031, 'Cinq Mars — Volume 4', 'Vigny, Alfred de', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3950', 'en', 492), +(32032, 'Nach Amerika! Ein Volksbuch. Dritter Band', 'Gerstäcker, Friedrich', '2009-08-21', 14, 'https://www.gutenberg.org/ebooks/29746', 'de', 10912), +(32033, 'Roman Legends: A collection of the fables and folk-lore of Rome', 'Busk, Rachel Harriette', '2015-04-23', 26, 'https://www.gutenberg.org/ebooks/48771', 'en', 12490), +(32034, 'Blackfeet Tales of Glacier National Park', 'Schultz, James Willard', '2013-08-04', 28, 'https://www.gutenberg.org/ebooks/43399', 'en', 1749), +(32035, 'Opera Stories from Wagner', 'Akin, Florence', '2005-07-24', 20, 'https://www.gutenberg.org/ebooks/9456', 'en', 5808), +(32036, 'The American Prejudice Against Color\r\nAn Authentic Narrative, Showing How Easily the Nation Got into an Uproar.', 'Allen, William G., active 1849-1853', '2006-02-27', 23, 'https://www.gutenberg.org/ebooks/17875', 'en', 12491), +(32037, 'The American Missionary — Volume 49, No. 04, April, 1895', 'Various', '2006-03-16', 7, 'https://www.gutenberg.org/ebooks/18001', 'en', 562), +(32038, 'Roughing It, Part 3.', 'Twain, Mark', '2004-07-02', 30, 'https://www.gutenberg.org/ebooks/8584', 'en', 12492), +(32039, 'Legends of the City of Mexico', 'Janvier, Thomas A. (Thomas Allibone)', '2014-06-01', 33, 'https://www.gutenberg.org/ebooks/45852', 'en', 12493), +(32040, 'Hymn Stories of the Twentieth Century', 'Hart, William J. (William John)', '2018-01-31', 4, 'https://www.gutenberg.org/ebooks/56479', 'en', 12494), +(32041, '淮南子', 'Liu, An', '2007-12-28', 28, 'https://www.gutenberg.org/ebooks/24059', 'zh', 12495), +(32042, 'Colonel Thomas Blood, Crown-stealer, 1618-1680', 'Abbott, Wilbur Cortez', '2014-02-22', 15, 'https://www.gutenberg.org/ebooks/44980', 'en', 12496), +(32043, 'A Woman\'s Philosophy of Woman; or, Woman affranchised.\r\nAn answer to Michelet, Proudhon, Girardin, Legouvé, Comte, and other modern innovators', 'Héricourt, Madame d\'', '2017-01-10', 50, 'https://www.gutenberg.org/ebooks/53937', 'en', 10615), +(32044, 'In the Yellow Sea', 'Frith, Henry', '2011-12-25', 7, 'https://www.gutenberg.org/ebooks/38406', 'en', 324), +(32045, 'Rats in the Belfry', 'O\'Brien, David Wright', '2010-06-19', 18, 'https://www.gutenberg.org/ebooks/32900', 'en', 26), +(32046, 'L\'Île du Levant', 'Otlet, Paul', '2019-05-04', 12, 'https://www.gutenberg.org/ebooks/59431', 'fr', 12497), +(32047, 'Wisdom and Destiny', 'Maeterlinck, Maurice', '2003-08-01', 39, 'https://www.gutenberg.org/ebooks/4349', 'en', 12498), +(32048, 'The Premiere', 'Sabia, Richard', '2008-03-18', 36, 'https://www.gutenberg.org/ebooks/24865', 'en', 12499), +(32049, 'Sisters', 'Norris, Kathleen Thompson', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/4947', 'en', 7171), +(32050, 'The Soul of the Far East', 'Lowell, Percival', '1998-08-01', 33, 'https://www.gutenberg.org/ebooks/1409', 'en', 1075), +(32051, 'Montgomery, the Capital City of Alabama: Her Resources and Advantages', 'Montgomery Real Estate Agents\' Association, Montgomery, Ala.', '2012-01-21', 9, 'https://www.gutenberg.org/ebooks/38634', 'en', 12500), +(32052, 'The House of Arden: A Story for Children', 'Nesbit, E. (Edith)', '2018-08-29', 30, 'https://www.gutenberg.org/ebooks/57799', 'en', 12501), +(32053, 'The Honor of the Big Snows', 'Curwood, James Oliver', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/5895', 'en', 315), +(32054, 'Blue Lights: Hot Work in the Soudan', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 22, 'https://www.gutenberg.org/ebooks/21719', 'en', 1361), +(32055, 'Three Stories & Ten Poems', 'Hemingway, Ernest', '2019-05-25', 877, 'https://www.gutenberg.org/ebooks/59603', 'en', 994), +(32056, 'Rodmoor: A Romance', 'Powys, John Cowper', '2016-10-21', 25, 'https://www.gutenberg.org/ebooks/53339', 'en', 12502), +(32057, 'The White Waterfall', 'Dwyer, James Francis', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10862', 'en', 323), +(32058, 'The Romance of War; or, The Highlanders in Spain, Volume 3 (of 3)', 'Grant, James', '2017-06-15', 5, 'https://www.gutenberg.org/ebooks/54920', 'en', 12503), +(32059, 'Wanderings in India, and Other Sketches of Life in Hindostan', 'Lang, John', '2013-10-22', 50, 'https://www.gutenberg.org/ebooks/43997', 'en', 12504), +(32060, 'The Sea (La Mer)', 'Michelet, Jules', '2013-05-30', 29, 'https://www.gutenberg.org/ebooks/42845', 'en', 871), +(32061, 'Seven Minor Epics of the English Renaissance (1596-1624)', 'Page, Samuel', '2009-08-02', 26, 'https://www.gutenberg.org/ebooks/29574', 'en', 12505), +(32062, 'Animal Ghosts; Or, Animal Hauntings and the Hereafter', 'O\'Donnell, Elliott', '2006-04-23', 75, 'https://www.gutenberg.org/ebooks/18233', 'en', 12506), +(32063, 'The Professional Approach', 'Thomas, Theodore L.', '2007-12-15', 32, 'https://www.gutenberg.org/ebooks/23872', 'en', 26), +(32064, 'Briefe, die ihn nicht erreichten', 'Heyking, Elisabeth von', '2015-03-21', 21, 'https://www.gutenberg.org/ebooks/48543', 'de', 258), +(32065, 'An Amiable Charlatan', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-01-01', 30, 'https://www.gutenberg.org/ebooks/9664', 'en', 128), +(32066, 'The American Missionary — Volume 39, No. 03, March, 1885', 'Various', '2009-11-12', 6, 'https://www.gutenberg.org/ebooks/30459', 'en', 562), +(32067, 'The Sunny South: An Autumn in Spain and Majorca', 'Clayton, John William', '2015-07-19', 12, 'https://www.gutenberg.org/ebooks/49491', 'en', 1514); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(32068, 'Mari, Our Little Norwegian Cousin', 'Wade, Mary Hazelton Blanchard', '2013-02-12', 19, 'https://www.gutenberg.org/ebooks/42079', 'en', 12507), +(32069, 'Clever Gretel', 'Grimm, Jacob', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12709', 'en', 1007), +(32070, 'Rikke-tikke-tak', 'Conscience, Hendrik', '2011-04-20', 5, 'https://www.gutenberg.org/ebooks/35917', 'eo', 61), +(32071, 'The Honour of Savelli: A Romance', 'Levett Yeats, S. (Sidney)', '2011-12-09', 7, 'https://www.gutenberg.org/ebooks/38250', 'en', 5714), +(32072, 'English Songs and Ballads', NULL, '2012-11-07', 12, 'https://www.gutenberg.org/ebooks/41298', 'en', 1054), +(32073, 'De Pop van Elisabeth Gehrke', 'Mollinger-Hooyer, Dina', '2005-06-03', 10, 'https://www.gutenberg.org/ebooks/15974', 'nl', 61), +(32074, 'Οιδίπους επί Κολωνώ', 'Sophocles', '2012-04-05', 10, 'https://www.gutenberg.org/ebooks/39382', 'el', 1298), +(32075, 'The Woman in the Alcove', 'Green, Anna Katharine', '1999-08-01', 28, 'https://www.gutenberg.org/ebooks/1851', 'en', 61), +(32076, 'Olinda\'s Adventures: or the Amours of a Young Lady', 'Trotter, Catharine', '2011-08-26', 15, 'https://www.gutenberg.org/ebooks/37218', 'en', 348), +(32077, 'Gli albori della vita Italiana\nConferenze tenute a Firenze nel 1890', 'Various', '2014-05-12', 9, 'https://www.gutenberg.org/ebooks/45638', 'it', 12508), +(32078, 'The Laboratorians', 'Peattie, Edward', '2019-04-13', 44, 'https://www.gutenberg.org/ebooks/59267', 'en', 1029), +(32079, 'Six Feet Four', 'Gregory, Jackson', '2005-02-22', 37, 'https://www.gutenberg.org/ebooks/15148', 'en', 315), +(32080, 'Blackwood\'s Edinburgh Magazine, Volume 58, Number 360, October 1845', 'Various', '2009-06-13', 18, 'https://www.gutenberg.org/ebooks/29110', 'en', 274), +(32081, 'Briefe aus dem Gefängnis', 'Luxemburg, Rosa', '2008-10-19', 41, 'https://www.gutenberg.org/ebooks/26964', 'de', 12509), +(32082, 'The Right of Way, Volume 6', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6248', 'en', 1219), +(32083, 'Opúsculos por Alexandre Herculano - Tomo 06', 'Herculano, Alexandre', '2009-12-30', 16, 'https://www.gutenberg.org/ebooks/30801', 'pt', 410), +(32084, 'Motion pictures, 1912-1939: Catalog of Copyright Entries', 'Library of Congress. Copyright Office', '2016-04-22', 10, 'https://www.gutenberg.org/ebooks/51836', 'en', 6700), +(32085, 'Declaration of Independence of the United States of America', 'Jefferson, Thomas', '2006-11-15', 7, 'https://www.gutenberg.org/ebooks/19785', 'en', 5768), +(32086, 'Mijn verlustiging', 'Bilderdijk, Willem', '2014-09-17', 14, 'https://www.gutenberg.org/ebooks/46881', 'nl', 2651), +(32087, 'Seed Dispersal', 'Beal, W. J. (William James)', '2008-07-31', 26, 'https://www.gutenberg.org/ebooks/26158', 'en', 12510), +(32088, 'The Philippine Islands, 1493-1898, Volume 37, 1669-1676\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2015-01-13', 38, 'https://www.gutenberg.org/ebooks/47953', 'en', 1334), +(32089, 'Love\'s Comedy', 'Ibsen, Henrik', '2006-06-22', 51, 'https://www.gutenberg.org/ebooks/18657', 'en', 798), +(32090, 'Aeroplanes and Dirigibles of War', 'Talbot, Frederick Arthur Ambrose', '1997-01-01', 106, 'https://www.gutenberg.org/ebooks/793', 'en', 8210), +(32091, 'The Life of Captain Sir Richard F. Burton, volume 1 (of 2)\r\nBy His Wife, Isabel Burton', 'Burton, Isabel, Lady', '2017-04-20', 9, 'https://www.gutenberg.org/ebooks/54578', 'en', 12511), +(32092, 'Deutsche Jugend in schwerer Zeit: Erzählung für die Jugend\r\nDritte Auflage', 'Siebe, Josephine', '2015-02-01', 10, 'https://www.gutenberg.org/ebooks/48127', 'de', 98), +(32093, 'Klein Zaches, genannt Zinnober: Ein Märchen', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2005-10-01', 57, 'https://www.gutenberg.org/ebooks/9200', 'de', 580), +(32094, 'Melbourne House, Volume 1', 'Warner, Susan', '2004-07-20', 24, 'https://www.gutenberg.org/ebooks/12963', 'en', 12512), +(32095, 'The Pride of Jennico: Being a Memoir of Captain Basil Jennico', 'Castle, Egerton', '2016-02-17', 21, 'https://www.gutenberg.org/ebooks/51238', 'en', 3208), +(32096, 'When the Sleepers Woke', 'Zagat, Arthur Leo', '2009-07-05', 62, 'https://www.gutenberg.org/ebooks/29322', 'en', 26), +(32097, 'Gutenberg, pièce historique en 5 actes, 8 tableaux', 'Figuier, Louis', '2007-11-25', 7, 'https://www.gutenberg.org/ebooks/23618', 'fr', 12513), +(32098, 'Kuopion takana: Kolminäytöksinen huvinäytelmä', 'Numers, Gustaf von', '2017-10-08', 14, 'https://www.gutenberg.org/ebooks/55698', 'fi', 402), +(32099, 'The Crayon Papers', 'Irving, Washington', '2005-04-01', 35, 'https://www.gutenberg.org/ebooks/7994', 'en', 8883), +(32100, 'Human Genome Project, Chromosome Number 08', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3508', 'en', 1841), +(32101, 'David Blaize', 'Benson, E. F. (Edward Frederic)', '2015-02-20', 31, 'https://www.gutenberg.org/ebooks/48315', 'en', 1309), +(32102, 'Roughing It', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9032', 'en', 1256), +(32103, 'The Wit and Humor of America, Volume II. (of X.)', NULL, '2006-05-28', 44, 'https://www.gutenberg.org/ebooks/18465', 'en', 12514), +(32104, 'My Lady of the North', 'Parrish, Randall', '2004-11-01', 28, 'https://www.gutenberg.org/ebooks/6846', 'en', 403), +(32105, 'The Turquoise Cup, and, the Desert', 'Smith, Arthur Cosslett', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10608', 'en', 48), +(32106, 'Ηρωδιάς', 'Flaubert, Gustave', '2011-10-21', 14, 'https://www.gutenberg.org/ebooks/37816', 'el', 3228), +(32107, 'In Mr. Knox\'s Country', 'Ross, Martin', '2011-11-19', 21, 'https://www.gutenberg.org/ebooks/38062', 'en', 6148), +(32108, 'The Carter Girls\' Mysterious Neighbors', 'Speed, Nell', '2012-07-10', 10, 'https://www.gutenberg.org/ebooks/40178', 'en', 6867), +(32109, 'Anecdotes of the Habits and Instinct of Animals', 'Lee, R., Mrs.', '2007-06-30', 60, 'https://www.gutenberg.org/ebooks/21973', 'en', 2271), +(32110, 'Grand Teton National Park, Wyoming (1952)', 'United States. National Park Service', '2019-07-07', 59, 'https://www.gutenberg.org/ebooks/59869', 'en', 11073), +(32111, 'Sporting Scenes amongst the Kaffirs of South Africa', 'Drayson, Alfred W. (Alfred Wilks)', '2010-05-27', 13, 'https://www.gutenberg.org/ebooks/32558', 'en', 12515), +(32112, 'The American Bee Journal, Vol. VI, No. 4, October 1870', 'Various', '2018-10-28', 4, 'https://www.gutenberg.org/ebooks/58187', 'en', 2825), +(32113, 'Program for October 1929: The Wyoming Valley Woman\'s Club of Wilkes-Barre', 'Wyoming Valley Woman\'s Club (Wilkes-Barre, Pennsylvania)', '2012-10-05', 6, 'https://www.gutenberg.org/ebooks/40944', 'en', 10635), +(32114, 'Dave Fearless and the Cave of Mystery; or, Adrift on the Pacific', 'Rockwood, Roy', '2013-01-21', 77, 'https://www.gutenberg.org/ebooks/41896', 'en', 11147), +(32115, 'The Heir Presumptive and the Heir Apparent', 'Oliphant, Mrs. (Margaret)', '2019-03-13', 12, 'https://www.gutenberg.org/ebooks/59055', 'en', 376), +(32116, 'Four Phases of Morals: Socrates, Aristotle, Christianity, Utilitarianism', 'Blackie, John Stuart', '2018-03-23', 53, 'https://www.gutenberg.org/ebooks/56821', 'en', 12516), +(32117, 'Über die Picard\'schen Gruppen aus dem Zahlkörper der dritten und der vierten Einheitswurzel', 'Bohler, Otto', '2010-10-04', 6, 'https://www.gutenberg.org/ebooks/34032', 'de', 12517), +(32118, 'Memoirs of the Dukes of Urbino, Volume 3 (of 3)\r\nIllustrating the Arms, Arts, and Literature of Italy, from 1440 To 1630', 'Dennistoun, James', '2015-11-30', 12, 'https://www.gutenberg.org/ebooks/50577', 'en', 12518), +(32119, 'The Colors of Space', 'Bradley, Marion Zimmer', '2007-10-01', 53, 'https://www.gutenberg.org/ebooks/23085', 'en', 26), +(32120, 'Lectures on Stellar Statistics', 'Charlier, C. V. L. (Carl Vilhelm Ludwig)', '2007-07-27', 32, 'https://www.gutenberg.org/ebooks/22157', 'en', 1683), +(32121, 'The Glugs of Gosh', 'Dennis, C. J. (Clarence James)', '2005-07-27', 11, 'https://www.gutenberg.org/ebooks/16362', 'en', 2474), +(32122, 'A Select Collection of Old English Plays, Volume 10', NULL, '2014-07-25', 42, 'https://www.gutenberg.org/ebooks/46412', 'en', 1088), +(32123, 'Paul Clifford — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-26', 121, 'https://www.gutenberg.org/ebooks/7735', 'en', 356), +(32124, 'The Law\'s Lumber Room (Second Series)', 'Watt, Francis', '2017-10-28', 6, 'https://www.gutenberg.org/ebooks/55839', 'en', 678), +(32125, 'Studies in the Psychology of Sex, Volume 1\r\nThe Evolution of Modesty; The Phenomena of Sexual Periodicity; Auto-Erotism', 'Ellis, Havelock', '2004-10-08', 366, 'https://www.gutenberg.org/ebooks/13610', 'en', 3052), +(32126, 'Major Frank', 'Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida)', '2008-12-05', 20, 'https://www.gutenberg.org/ebooks/27425', 'en', 5417), +(32127, 'Punch, or the London Charivari, Vol. 98, April 5, 1890', 'Various', '2009-11-17', 20, 'https://www.gutenberg.org/ebooks/30492', 'en', 134), +(32128, 'Twelfth Night', 'Shakespeare, William', '2000-07-01', 76, 'https://www.gutenberg.org/ebooks/2247', 'en', 6697), +(32129, 'English Industries of the Middle Ages\nBeing an Introduction to the Industrial History of Medieval England', 'Salzman, L. F. (Louis Francis)', '2015-03-26', 41, 'https://www.gutenberg.org/ebooks/48588', 'en', 12519), +(32130, 'An Artist\'s Letters from Japan', 'La Farge, John', '2013-07-08', 23, 'https://www.gutenberg.org/ebooks/43160', 'en', 12520), +(32131, 'Marguerite De Roberval: A Romance of the Days of Jacques Cartier', 'Marquis, Thomas Guthrie', '2010-03-07', 15, 'https://www.gutenberg.org/ebooks/31540', 'en', 12521), +(32132, 'Oliver Wendell Holmes (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 19, 'https://www.gutenberg.org/ebooks/3395', 'en', 1172), +(32133, 'Amadis of Gaul, Vol. 4', 'Lobeira, Vasco de', '2017-06-29', 9, 'https://www.gutenberg.org/ebooks/55005', 'en', 4047), +(32134, 'Merirosvon Testamentti', 'Stevenson, Robert Louis', '2018-03-04', 7, 'https://www.gutenberg.org/ebooks/56680', 'fi', 324), +(32135, 'Phebe, the Blackberry Girl', NULL, '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/11147', 'en', 859), +(32136, 'The Idler Magazine, Volume III., July 1893\nAn Illustrated Monthly', 'Various', '2008-05-07', 20, 'https://www.gutenberg.org/ebooks/25372', 'en', 2370), +(32137, 'The Forgotten Planet', 'Leinster, Murray', '2012-12-16', 147, 'https://www.gutenberg.org/ebooks/41637', 'en', 26), +(32138, 'Diary And Notes Of Horace Templeton, Esq. Volume II (of II)', 'Lever, Charles James', '2010-07-21', 29, 'https://www.gutenberg.org/ebooks/33217', 'en', 12522), +(32139, 'The Twilight of the Gods, and Other Tales', 'Garnett, Richard', '2003-11-01', 81, 'https://www.gutenberg.org/ebooks/10095', 'en', 409), +(32140, 'Life and destiny', 'Adler, Felix', '2018-08-23', 47, 'https://www.gutenberg.org/ebooks/57752', 'en', 680), +(32141, 'The Further Adventures of O\'Neill in Holland', 'Brown, J. Irwin (John Irwin)', '2011-07-17', 12, 'https://www.gutenberg.org/ebooks/36765', 'en', 12523), +(32142, 'Sota ja rauha III', 'Tolstoy, Leo, graf', '2014-04-01', 9, 'https://www.gutenberg.org/ebooks/45297', 'fi', 5888), +(32143, 'Gedichte der Gefangenen: Ein Sonettenkreis (Nr. 44)', 'Toller, Ernst', '2016-06-02', 12, 'https://www.gutenberg.org/ebooks/52220', 'de', 2100), +(32144, 'The Card, a Story of Adventure in the Five Towns', 'Bennett, Arnold', '2007-01-20', 3, 'https://www.gutenberg.org/ebooks/20600', 'en', 262), +(32145, 'Iivana eli suomalainen venäläisen puhemiehenä', 'Lassila, Maiju', '2004-12-23', 13, 'https://www.gutenberg.org/ebooks/14435', 'fi', 175), +(32146, 'Wonderful Development of Peter the Great\'s Pet Projects, according to His Last Will and Testament.\r\nAmerican Invention as an Aid to Russia\'s Grasp on Asiatic Territory.', 'Gannon, W.', '2013-12-04', 15, 'https://www.gutenberg.org/ebooks/44345', 'en', 12524), +(32147, 'The Winds of Chance', 'Beach, Rex', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/5062', 'en', 535), +(32148, 'The Accumulation of Capital', 'Luxemburg, Rosa', '2012-11-19', 41, 'https://www.gutenberg.org/ebooks/41405', 'en', 6029), +(32149, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 278, Supplementary Number (1828)', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11375', 'en', 133), +(32150, 'Studies of Travel: Italy', 'Freeman, Edward A. (Edward Augustus)', '2014-06-06', 19, 'https://www.gutenberg.org/ebooks/45899', 'en', 1896), +(32151, 'Indian Story and Song, from North America', 'Fletcher, Alice C. (Alice Cunningham)', '2008-04-23', 97, 'https://www.gutenberg.org/ebooks/25140', 'en', 12525), +(32152, 'Critical Miscellanies (Vol. 3 of 3), Essay 7: W.R. Greg: A Sketch', 'Morley, John', '2007-12-31', 20, 'https://www.gutenberg.org/ebooks/24092', 'en', 12526), +(32153, 'Limitations: A Novel', 'Benson, E. F. (Edward Frederic)', '2018-07-21', 91, 'https://www.gutenberg.org/ebooks/57560', 'en', 45), +(32154, 'Harper\'s Round Table, June 18, 1895', 'Various', '2010-06-29', 21, 'https://www.gutenberg.org/ebooks/33025', 'en', 668), +(32155, 'Shakespeare (Volume 1 of 2)\nDargestellt im Vorträgen', 'Landauer, Gustav', '2016-05-06', 6, 'https://www.gutenberg.org/ebooks/52012', 'de', 1735), +(32156, 'The Pit: A Story of Chicago', 'Norris, Frank', '2003-08-01', 70, 'https://www.gutenberg.org/ebooks/4382', 'en', 12527), +(32157, 'How to Get Strong and How to Stay So', 'Blaikie, William', '2011-06-29', 29, 'https://www.gutenberg.org/ebooks/36557', 'en', 5785), +(32158, 'The Myths and Fables of To-Day', 'Drake, Samuel Adams', '2013-11-14', 31, 'https://www.gutenberg.org/ebooks/44177', 'en', 5025), +(32159, 'Nana', 'Zola, Émile', '2004-03-01', 125, 'https://www.gutenberg.org/ebooks/5250', 'fr', 12528), +(32160, 'Boy Scouts in Glacier Park\nThe Adventures of Two Young Easterners in the Heart of the High Rockies', 'Eaton, Walter Prichard', '2011-09-20', 11, 'https://www.gutenberg.org/ebooks/37485', 'en', 12529), +(32161, 'Young Captain Jack; Or, The Son of a Soldier', 'Stratemeyer, Edward', '2007-01-23', 34, 'https://www.gutenberg.org/ebooks/20432', 'en', 491), +(32162, 'Kahden talonpojan ulkomaan-matka', 'Reuter, Fritz', '2005-01-05', 12, 'https://www.gutenberg.org/ebooks/14607', 'fi', 12530), +(32163, 'Pictures of German Life in the XVIIIth and XIXth Centuries, Vol. II.', 'Freytag, Gustav', '2010-09-29', 13, 'https://www.gutenberg.org/ebooks/33819', 'en', 6075), +(32164, 'Fratris Felicis Fabri Evagatorium in Terrae Sanctae, Arabiae et Egypti peregrinationem. Volumen primum', 'Fabri, Felix', '2018-12-25', 11, 'https://www.gutenberg.org/ebooks/58528', 'la', 2589), +(32165, 'The Girl\'s Own Paper, Vol. XX, No. 986, November 19, 1898', 'Various', '2015-12-22', 7, 'https://www.gutenberg.org/ebooks/50745', 'en', 563), +(32166, 'Wandelingen door België\nDe Aarde en haar Volken, 1886', 'Anonymous', '2005-11-17', 20, 'https://www.gutenberg.org/ebooks/17082', 'nl', 2427), +(32167, 'Against Apion', 'Josephus, Flavius', '2001-10-01', 133, 'https://www.gutenberg.org/ebooks/2849', 'en', 12531), +(32168, 'The Fall of the House of Usher', 'Poe, Edgar Allan', '1997-06-01', 1127, 'https://www.gutenberg.org/ebooks/932', 'en', 461), +(32169, 'Story Lessons on Character-Building (Morals) and Manners', 'Bates, Loïs', '2010-11-03', 53, 'https://www.gutenberg.org/ebooks/34200', 'en', 1302), +(32170, 'A List of Books Published by Chatto & Windus, September 1891', 'Chatto & Windus (Firm)', '2014-08-18', 7, 'https://www.gutenberg.org/ebooks/46620', 'en', 2663), +(32171, 'String Quartet No. 13 in B flat major Opus 130', 'Beethoven, Ludwig van', '2005-02-01', 6, 'https://www.gutenberg.org/ebooks/7507', 'en', 909), +(32172, 'Plain Facts for Old and Young', 'Kellogg, John Harvey', '2006-11-27', 208, 'https://www.gutenberg.org/ebooks/19924', 'en', 3052), +(32173, 'Little By Little; or, The Cruise of the Flyaway', 'Optic, Oliver', '2007-08-21', 29, 'https://www.gutenberg.org/ebooks/22365', 'en', 2794), +(32174, 'Miss McDonald', 'Holmes, Mary Jane', '2005-06-29', 16, 'https://www.gutenberg.org/ebooks/16150', 'en', 2083), +(32175, 'Grace Harlowe with the American Army on the Rhine', 'Chase, Josephine', '2016-04-08', 26, 'https://www.gutenberg.org/ebooks/51697', 'en', 2564), +(32176, 'Crotchet Castle', 'Peacock, Thomas Love', '2000-02-01', 28, 'https://www.gutenberg.org/ebooks/2075', 'en', 95), +(32177, 'A History of English Versification', 'Schipper, J. (Jakob)', '2013-07-29', 12, 'https://www.gutenberg.org/ebooks/43352', 'en', 3973), +(32178, 'Punch, or the London Charivari, Volume 100, June 20, 1891', 'Various', '2004-09-10', 10, 'https://www.gutenberg.org/ebooks/13422', 'en', 134), +(32179, 'L\'Aumone', 'Du Veuzit, Max', '2008-12-25', 21, 'https://www.gutenberg.org/ebooks/27617', 'fr', 415), +(32180, 'The Senator\'s Favorite', 'Miller, Alex. McVeigh, Mrs.', '2017-08-01', 5, 'https://www.gutenberg.org/ebooks/55237', 'en', 61), +(32181, 'The Philippine Islands, 1493-1898 — Volume 25 of 55\r\n1635-36\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, As Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2006-08-25', 67, 'https://www.gutenberg.org/ebooks/19118', 'en', 745), +(32182, 'Ancient Monuments of the Mississippi Valley\nSmithsonian Contributions to Knowledge, Vol. I.', 'Squier, E. G. (Ephraim George)', '2015-08-10', 16, 'https://www.gutenberg.org/ebooks/49668', 'en', 12532), +(32183, 'Popery: The Accommodation of Christianity to the Natural Heart', 'Hoare, Edward', '2013-03-09', 10, 'https://www.gutenberg.org/ebooks/42280', 'en', 12533), +(32184, 'Si Klegg, Book 2\r\nThru the Stone River Campaign and in Winter Quarters at Murfreesboro', 'McElroy, John', '2010-03-25', 32, 'https://www.gutenberg.org/ebooks/31772', 'en', 403), +(32185, 'Pikku Lallin tähtimaailma', 'Bergh, John', '2018-05-06', 8, 'https://www.gutenberg.org/ebooks/57104', 'fi', 388), +(32186, 'Handbook of German Idioms', 'Lambert, Marcus Bachman', '2019-02-26', 14, 'https://www.gutenberg.org/ebooks/58970', 'en', 12534), +(32187, 'The Man of Taste', 'Bramston, James', '2010-08-15', 8, 'https://www.gutenberg.org/ebooks/33441', 'en', 12535), +(32188, 'The Firm of Nucingen', 'Balzac, Honoré de', '1998-04-01', 38, 'https://www.gutenberg.org/ebooks/1294', 'en', 58), +(32189, 'Elizabethan England\nFrom \'A Description of England,\' by William Harrison', 'Harrison, William', '2010-05-30', 23, 'https://www.gutenberg.org/ebooks/32593', 'en', 12536), +(32190, 'The Land of Tomorrow', 'Stephenson, William B.', '2012-10-14', 14, 'https://www.gutenberg.org/ebooks/41061', 'en', 5908), +(32191, 'When hearts are trumps', 'Hall, Tom', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11711', 'en', 12537), +(32192, 'The Young Berringtons: The Boy Explorers', 'Kingston, William Henry Giles', '2008-05-19', 22, 'https://www.gutenberg.org/ebooks/25524', 'en', 5372), +(32193, 'Sprotje', 'Scharten-Antink, M. (Margo Sybranda Everdina)', '2013-12-26', 7, 'https://www.gutenberg.org/ebooks/44513', 'nl', 61), +(32194, 'Große Fuge in B flat major Opus 133', 'Beethoven, Ludwig van', '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/5634', 'en', 12538), +(32195, 'Uuteen maailmaan\nRomaani Pennsylvanian ensimmäisistä uutisasukkaista', 'Järnefelt Rauanheimo, Akseli', '2018-09-19', 3, 'https://www.gutenberg.org/ebooks/57938', 'fi', 12539), +(32196, 'De Gouden Vaas', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2006-12-08', 11, 'https://www.gutenberg.org/ebooks/20056', 'nl', 580), +(32197, 'Katrine: A Novel', 'Lane, Elinor Macartney', '2004-12-06', 15, 'https://www.gutenberg.org/ebooks/14263', 'en', 8334), +(32198, 'The Cloister and the Hearth: A Tale of the Middle Ages', 'Reade, Charles', '2012-02-16', 102, 'https://www.gutenberg.org/ebooks/38895', 'en', 7929), +(32199, 'Historia de Venezuela, Tomo I', 'Aguado, Pedro de, active 16th century', '2012-06-08', 112, 'https://www.gutenberg.org/ebooks/39947', 'es', 12540), +(32200, 'De Oogst', 'Streuvels, Stijn', '2016-07-02', 34, 'https://www.gutenberg.org/ebooks/52476', 'nl', 4918), +(32201, 'Selected Poems by Robert Frost', 'Frost, Robert', '2007-05-19', 37, 'https://www.gutenberg.org/ebooks/21184', 'en', 178), +(32202, 'Brenda\'s Ward\nA Sequel to \'Amy in Acadia\'', 'Reed, Helen Leah', '2011-05-18', 17, 'https://www.gutenberg.org/ebooks/36133', 'en', 51), +(32203, 'The Kingdom of God, Part 1', 'Pratt, Orson', '2014-07-10', 21, 'https://www.gutenberg.org/ebooks/46244', 'en', 3434), +(32204, 'The History of Australian Exploration from 1788 to 1888', 'Favenc, Ernest', '2004-12-01', 21, 'https://www.gutenberg.org/ebooks/7163', 'en', 2471), +(32205, 'The Blindman\'s World\n1898', 'Bellamy, Edward', '2007-09-21', 56, 'https://www.gutenberg.org/ebooks/22701', 'en', 770), +(32206, 'A Young Folks\' History of the Church of Jesus Christ of Latter-day Saints', 'Anderson, Nephi', '2005-08-16', 48, 'https://www.gutenberg.org/ebooks/16534', 'en', 310), +(32207, 'Von Kindern und Katzen, und wie sie die Nine begruben', 'Storm, Theodor', '2005-09-01', 35, 'https://www.gutenberg.org/ebooks/8917', 'de', 3101), +(32208, 'Fifty Birds of Town and City', 'Hines, Bob', '2015-10-27', 17, 'https://www.gutenberg.org/ebooks/50321', 'en', 318), +(32209, 'The Mynns\' Mystery', 'Fenn, George Manville', '2010-12-15', 18, 'https://www.gutenberg.org/ebooks/34664', 'en', 128), +(32210, 'Michael Faraday\nThird Edition, with Portrait', 'Gladstone, J. H. (John Hall)', '2014-11-19', 20, 'https://www.gutenberg.org/ebooks/47396', 'en', 12541), +(32211, 'Kokemusten koulu: Huvittava kertomus', 'Lindqvist, Aleksander', '2017-10-01', 21, 'https://www.gutenberg.org/ebooks/55653', 'fi', 41), +(32212, 'Liza; Or, \"A Nest of Nobles\"', 'Turgenev, Ivan Sergeevich', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12194', 'en', 1014), +(32213, 'The Coming of Evolution: The Story of a Great Revolution in Science', 'Judd, John W. (John Wesley)', '2010-02-18', 16, 'https://www.gutenberg.org/ebooks/31316', 'en', 1215), +(32214, 'Wilhelm Meisters Wanderjahre — Band 3', 'Goethe, Johann Wolfgang von', '2000-11-01', 36, 'https://www.gutenberg.org/ebooks/2411', 'de', 1080), +(32215, 'Fourteenth Century Verse & Prose', NULL, '2013-09-15', 61, 'https://www.gutenberg.org/ebooks/43736', 'en', 3362), +(32216, 'Tom Sawyer Abroad', 'Twain, Mark', '2004-09-14', 363, 'https://www.gutenberg.org/ebooks/91', 'en', 323), +(32217, 'The Historic Thames', 'Belloc, Hilaire', '2004-07-29', 26, 'https://www.gutenberg.org/ebooks/13046', 'en', 12542), +(32218, 'The Irish Penny Journal, Vol. 1 No. 33, February 13, 1841', 'Various', '2017-05-24', 3, 'https://www.gutenberg.org/ebooks/54781', 'en', 81), +(32219, 'The Works of Aphra Behn, Volume IV', 'Behn, Aphra', '2008-11-15', 62, 'https://www.gutenberg.org/ebooks/27273', 'en', 126), +(32220, 'The Death Ship: A Strange Story, Vol. 1 (of 3)', 'Russell, William Clark', '2015-08-28', 24, 'https://www.gutenberg.org/ebooks/49802', 'en', 5048), +(32221, 'Life of Schamyl\nAnd Narrative of the Circassian War of Independence Against Russia', 'Mackie, J. Milton (John Milton)', '2007-09-07', 9, 'https://www.gutenberg.org/ebooks/22533', 'en', 12543), +(32222, 'A Sixth-Century Fragment of the Letters of Pliny the Younger\nA Study of Six Leaves of an Uncial Manuscript Preserved\nin the Pierpont Morgan Library New York', 'Rand, Edward Kennard', '2005-09-17', 24, 'https://www.gutenberg.org/ebooks/16706', 'en', 12544), +(32223, 'Quelques aspects du vertige mondial', 'Loti, Pierre', '2010-04-08', 14, 'https://www.gutenberg.org/ebooks/31918', 'fr', 335), +(32224, 'Sebastian Bach', 'Poole, Reginald Lane', '2014-06-23', 12, 'https://www.gutenberg.org/ebooks/46076', 'en', 7436), +(32225, 'Expositions of Holy Scripture : St. Matthew Chaps. IX to XXVIII', 'Maclaren, Alexander', '2005-01-01', 18, 'https://www.gutenberg.org/ebooks/7351', 'en', 12545), +(32226, 'Aphorisms and Reflections from the works of T. H. Huxley', 'Huxley, Thomas Henry', '2011-03-16', 128, 'https://www.gutenberg.org/ebooks/35584', 'en', 814), +(32227, 'The World for Sale, Volume 3.', 'Parker, Gilbert', '2004-08-01', 12, 'https://www.gutenberg.org/ebooks/6283', 'en', 551), +(32228, 'L\'Illustration, No. 3735, 3 octobre 1914', 'Various', '2010-11-27', 6, 'https://www.gutenberg.org/ebooks/34456', 'fr', 335), +(32229, 'My Memoirs, Vol. II, 1822 to 1825', 'Dumas, Alexandre', '2015-10-02', 9, 'https://www.gutenberg.org/ebooks/50113', 'en', 9464), +(32230, 'Szopka\nWiersz Or-Ota', 'Oppman, Artur', '2009-02-06', 8, 'https://www.gutenberg.org/ebooks/28009', 'pl', 859), +(32231, 'A Diary Without Dates', 'Bagnold, Enid', '2010-01-30', 40, 'https://www.gutenberg.org/ebooks/31124', 'en', 2223), +(32232, 'The Bible, Douay-Rheims, Book 19: Esther\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8319', 'en', 4345), +(32233, 'The Rover Boys in Southern Waters; or, The Deserted Steam Yacht', 'Stratemeyer, Edward', '2008-08-04', 39, 'https://www.gutenberg.org/ebooks/26193', 'en', 128), +(32234, 'The Book of the V.C.\r\nA record of the deeds of heroism for which the Victoria Cross has been bestowed, from its institution in 1857 to the present time', 'Haydon, A. L. (Arthur Lincoln)', '2017-08-30', 17, 'https://www.gutenberg.org/ebooks/55461', 'en', 12546), +(32235, 'LandSat Picture of Washington, DC', 'Geological Survey (U.S.)', '1996-12-01', 30, 'https://www.gutenberg.org/ebooks/758', 'en', 12547), +(32236, 'A Little Catechism; With Little Verses and Little Sayings for Little Children', 'Mason, John', '2004-08-25', 27, 'https://www.gutenberg.org/ebooks/13274', 'en', 12548), +(32237, 'L\'art roman dans le Sud-Manche', 'Lebert, Marie', '2008-10-26', 16, 'https://www.gutenberg.org/ebooks/27041', 'fr', 1117), +(32238, 'Choffard', 'Salomons, Vera', '2015-01-16', 12, 'https://www.gutenberg.org/ebooks/47998', 'en', 12549), +(32239, 'The Tale of Brynild, and King Valdemar and His Sister: Two Ballads', 'Borrow, George', '2009-05-16', 13, 'https://www.gutenberg.org/ebooks/28835', 'en', 8), +(32240, 'The True History of Tom & Jerry\r\nor, The Day and Night Scenes, of Life in London from the Start to the Finish!', 'Hindley, Charles', '2013-08-19', 37, 'https://www.gutenberg.org/ebooks/43504', 'en', 3625), +(32241, 'Vistas in Sicily', 'Riggs, Arthur Stanley', '2012-07-31', 13, 'https://www.gutenberg.org/ebooks/40381', 'en', 9580), +(32242, 'The King of the Golden River; or, the Black Brothers: A Legend of Stiria.', 'Ruskin, John', '2010-09-08', 117, 'https://www.gutenberg.org/ebooks/33673', 'en', 1007), +(32243, 'Ancient Britain and the Invasions of Julius Caesar', 'Holmes, T. Rice (Thomas Rice)', '2018-06-15', 42, 'https://www.gutenberg.org/ebooks/57336', 'en', 12550), +(32244, 'Behind the News: Voices from Goa\'s Press', 'Various', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11523', 'en', 12551), +(32245, '灵历集光', 'Song, Shangjie', '2008-06-07', 13, 'https://www.gutenberg.org/ebooks/25716', 'zh', 12552), +(32246, 'Wyndham\'s Pal', 'Bindloss, Harold', '2012-04-02', 24, 'https://www.gutenberg.org/ebooks/39349', 'en', 61), +(32247, 'History of the Reformation of the Sixteenth Century, Volume 3', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2012-10-31', 54, 'https://www.gutenberg.org/ebooks/41253', 'en', 827), +(32248, 'Parsifal: Story and Analysis of Wagner\'s Great Opera', 'Haweis, H. R. (Hugh Reginald)', '2007-01-04', 24, 'https://www.gutenberg.org/ebooks/20264', 'en', 5808), +(32249, 'Life of Frederick Marryat', 'Hannay, David', '2016-12-23', 11, 'https://www.gutenberg.org/ebooks/53796', 'en', 12553), +(32250, 'The End of the World: A Love Story', 'Eggleston, Edward', '2004-11-15', 32, 'https://www.gutenberg.org/ebooks/14051', 'en', 48), +(32251, 'The Pillars of the House; Or, Under Wode, Under Rode, Vol. 2 (of 2)', 'Yonge, Charlotte M. (Charlotte Mary)', '2014-01-20', 19, 'https://www.gutenberg.org/ebooks/44721', 'en', 45), +(32252, 'Afoot in England', 'Hudson, W. H. (William Henry)', '2004-04-01', 56, 'https://www.gutenberg.org/ebooks/5406', 'en', 776), +(32253, 'The Thousand and One Days: A Companion to the \"Arabian Nights\"', 'Pardoe, Miss (Julia)', '2011-06-02', 41, 'https://www.gutenberg.org/ebooks/36301', 'en', 3347), +(32254, 'The Tragedy of the Chain Pier\nEveryday Life Library No. 3', 'Brame, Charlotte M.', '2005-02-26', 11, 'https://www.gutenberg.org/ebooks/15183', 'en', 61), +(32255, 'Who Was Paul Grayson?', 'Habberton, John', '2016-07-25', 22, 'https://www.gutenberg.org/ebooks/52644', 'en', 12554), +(32256, 'Catalogue of Economic Plants in the Collection of the U. S. Department of Agriculture', 'Saunders, William', '2008-01-22', 16, 'https://www.gutenberg.org/ebooks/24402', 'en', 12555), +(32257, 'The Uprising of a Great People\nThe United States in 1861. to Which is Added a Word of Peace on the Difference Between England the United States.', 'Gasparin, Agénor, comte de', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10637', 'en', 2268), +(32258, 'Little Man\'s family = Diné yázhí ba\'áłchíní : pre-primer', 'Enochs, J. B. (James Byron)', '2011-10-23', 28, 'https://www.gutenberg.org/ebooks/37829', 'en', 294), +(32259, 'Harper\'s New Monthly Magazine, No. VI, November 1850, Vol. I', 'Various', '2012-07-06', 15, 'https://www.gutenberg.org/ebooks/40147', 'en', 883), +(32260, 'Jane Eyre: An Autobiography', 'Brontë, Charlotte', '1998-03-01', 5891, 'https://www.gutenberg.org/ebooks/1260', 'en', 264), +(32261, 'Audubon the Naturalist: A History of His Life and Time. Vol. 2 (of 2)', 'Herrick, Francis Hobart', '2019-02-28', 7, 'https://www.gutenberg.org/ebooks/58984', 'en', 12556), +(32262, 'London and Its Environs Described, vol. 2 (of 6)\r\nContaining an Account of Whatever Is Most Remarkable for Grandeur, Elegance, Curiosity or Use, in the City and in the Country Twenty Miles Round It.', 'Anonymous', '2019-07-05', 111, 'https://www.gutenberg.org/ebooks/59856', 'en', 12557), +(32263, 'Forging the Blades: A Tale of the Zulu Rebellion', 'Mitford, Bertram', '2010-05-28', 14, 'https://www.gutenberg.org/ebooks/32567', 'en', 98), +(32264, 'The Journal of the Debates in the Convention which Framed the Constitution of the United States, May-September 1787. Volume 2', 'United States. Constitutional Convention (1787)', '2012-10-17', 109, 'https://www.gutenberg.org/ebooks/41095', 'en', 3873), +(32265, 'The Catholic World, Vol. 20, October 1874‐March 1875', 'Various', '2017-11-20', 5, 'https://www.gutenberg.org/ebooks/56022', 'en', 96), +(32266, 'Carolyn of the Corners', 'Endicott, Ruth Belmore', '2011-08-09', 14, 'https://www.gutenberg.org/ebooks/37015', 'en', 273), +(32267, 'My Lords of Strogue, Vol. 1 (of 3)\r\nA Chronicle of Ireland, from the Convention to the Union', 'Wingfield, Lewis', '2012-02-13', 5, 'https://www.gutenberg.org/ebooks/38861', 'en', 684), +(32268, 'The Congo and Coasts of Africa', 'Davis, Richard Harding', '2004-12-08', 24, 'https://www.gutenberg.org/ebooks/14297', 'en', 5188), +(32269, 'Erziehung und Unterricht der Blinden', 'Zech, Friedrich', '2016-11-18', 5, 'https://www.gutenberg.org/ebooks/53550', 'de', 8236), +(32270, 'Rules to be observed by masters and pilots of vessels, arriving at the port of Philadelphia,\r\nestablished by the health law, and regulations of the Board of Health, to which is annexed, a supplement to the health law, passed on the 2d day of April, 1821.', 'Philadelphia. Board of health', '2016-07-02', 3, 'https://www.gutenberg.org/ebooks/52482', 'en', 12558), +(32271, 'The Great Events by Famous Historians, Volume 04', NULL, '2005-03-12', 35, 'https://www.gutenberg.org/ebooks/15345', 'en', 346), +(32272, 'The Phantom-Wooer', 'Beddoes, Thomas Lovell', '2007-04-04', 7, 'https://www.gutenberg.org/ebooks/21170', 'en', 531), +(32273, 'The Landloper: The Romance of a Man on Foot', 'Day, Holman', '2006-04-13', 20, 'https://www.gutenberg.org/ebooks/4712', 'en', 3493), +(32274, 'History of the Cathedral Church of Wells\r\nAs Illustrating the History of the Cathedral Churches of the Old Foundation', 'Freeman, Edward A. (Edward Augustus)', '2014-04-18', 14, 'https://www.gutenberg.org/ebooks/45435', 'en', 12559), +(32275, 'American Leaders and Heroes: A preliminary text-book in United States History', 'Gordy, Wilbur F. (Wilbur Fisk)', '2011-04-01', 86, 'https://www.gutenberg.org/ebooks/35742', 'en', 414), +(32276, 'The Adventures of Tom Sawyer, Part 5.', 'Twain, Mark', '2004-06-30', 13, 'https://www.gutenberg.org/ebooks/7197', 'en', 12560), +(32277, 'The Harmsworth Magazine, Vol. 1, 1898-1899, No. 4', 'Various', '2016-02-13', 4, 'https://www.gutenberg.org/ebooks/51207', 'en', 2370), +(32278, 'The Court of the Empress Josephine', 'Imbert de Saint-Amand', '2006-02-01', 14, 'https://www.gutenberg.org/ebooks/9831', 'en', 12561), +(32279, 'The Bobbsey Twins\r\nOr, Merry Days Indoors and Out', 'Hope, Laura Lee', '2005-12-28', 120, 'https://www.gutenberg.org/ebooks/17412', 'en', 31), +(32280, 'Messenger No. 48', 'Otis, James', '2007-11-26', 8, 'https://www.gutenberg.org/ebooks/23627', 'en', 9), +(32281, 'Dorothy Payne, Quakeress: A Side-Light Upon the Career of \'Dolly\' Madison', 'Barnard, Ella K. (Ella Kent)', '2010-12-19', 21, 'https://www.gutenberg.org/ebooks/34690', 'en', 12562), +(32282, 'The Hollow of Her Hand', 'McCutcheon, George Barr', '2004-07-01', 12, 'https://www.gutenberg.org/ebooks/6045', 'en', 2999), +(32283, 'Keski-ikäinen nainen', 'Balzac, Honoré de', '2014-11-16', 12, 'https://www.gutenberg.org/ebooks/47362', 'fi', 675), +(32284, 'Tom, The Bootblack; or, The Road to Success', 'Alger, Horatio, Jr.', '2008-08-18', 31, 'https://www.gutenberg.org/ebooks/26355', 'en', 3242), +(32285, 'La poste par pigeons voyageurs: Souvenir du siége de Paris', 'Dagron, Prudent René-Patrice', '2006-10-19', 26, 'https://www.gutenberg.org/ebooks/19588', 'fr', 12563), +(32286, 'His Other Self\nNight Watches, Part 10.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12160', 'en', 179), +(32287, 'Come l\'onda... Novelle', 'Capuana, Luigi', '2013-04-28', 19, 'https://www.gutenberg.org/ebooks/42610', 'it', 474), +(32288, 'Frederick the Great and His Family: A Historical Novel', 'Mühlbach, L. (Luise)', '2002-11-01', 21, 'https://www.gutenberg.org/ebooks/3537', 'en', 12564), +(32289, 'A Story of the Red Cross; Glimpses of Field Work', 'Barton, Clara', '2009-10-10', 12, 'https://www.gutenberg.org/ebooks/30230', 'en', 12565), +(32290, 'The First 100,000 Prime Numbers', 'Unknown', '1993-05-01', 78, 'https://www.gutenberg.org/ebooks/65', 'en', 2497), +(32291, 'Circus Life and Circus Celebrities', 'Frost, Thomas', '2017-05-24', 4, 'https://www.gutenberg.org/ebooks/54775', 'en', 12566), +(32292, 'The Gold Bat', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 180, 'https://www.gutenberg.org/ebooks/6879', 'en', 2526), +(32293, 'Golden Days for Boys and Girls, Volume VIII, No 25: May 21, 1887', 'Various', '2008-11-17', 65, 'https://www.gutenberg.org/ebooks/27287', 'en', 563), +(32294, 'Up for Renewal', 'Daniel, Lucius', '2016-01-25', 42, 'https://www.gutenberg.org/ebooks/51035', 'en', 26), +(32295, 'La mirabile visione: Abbozzo d\'una storia della Divina Comedia', 'Pascoli, Giovanni', '2014-06-23', 13, 'https://www.gutenberg.org/ebooks/46082', 'it', 12567), +(32296, 'The Casting Away of Mrs. Lecks and Mrs. Aleshine', 'Stockton, Frank Richard', '2011-03-13', 14, 'https://www.gutenberg.org/ebooks/35570', 'en', 194), +(32297, 'The Money Master, Volume 3.', 'Parker, Gilbert', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/6277', 'en', 589), +(32298, 'Familiar Quotations\nA Collection of Passages, Phrases, and Proverbs Traced to\nTheir Sources in Ancient and Modern Literature', NULL, '2009-01-25', 201, 'https://www.gutenberg.org/ebooks/27889', 'en', 1026), +(32299, 'A Book of Burlesque: Sketches of English Stage Travestie and Parody', 'Adams, William Davenport', '2014-10-19', 16, 'https://www.gutenberg.org/ebooks/47150', 'en', 6528), +(32300, 'The Point Of Honor: A Military Tale', 'Conrad, Joseph', '2006-01-29', 30, 'https://www.gutenberg.org/ebooks/17620', 'en', 98), +(32301, 'Joseph Pennell\'s pictures of the Panama Canal\r\nReproductions of a series of lithographs made by him on the Isthmus of Panama, January—March 1912, together with impressions and notes by the artist', 'Pennell, Joseph', '2015-05-10', 11, 'https://www.gutenberg.org/ebooks/48924', 'en', 12568), +(32302, 'The Mission Of Mr. Eustace Greyne\n1905', 'Hichens, Robert', '2007-11-08', 16, 'https://www.gutenberg.org/ebooks/23415', 'en', 3962), +(32303, 'Conic Sections: Treated Geometrically\nand, George Bell and Sons Educational Catalogue', 'Besant, W. H. (William Henry)', '2009-09-05', 38, 'https://www.gutenberg.org/ebooks/29913', 'en', 12569), +(32304, 'The Passing of the Storm, and Other Poems', 'King, Alfred Castner', '2013-03-28', 7, 'https://www.gutenberg.org/ebooks/42422', 'en', 8), +(32305, 'Happy Hawkins', 'Wason, Robert Alexander', '2003-02-01', 10, 'https://www.gutenberg.org/ebooks/3705', 'en', 485), +(32306, 'Survival Kit', 'Pohl, Frederik', '2016-04-20', 104, 'https://www.gutenberg.org/ebooks/51809', 'en', 26), +(32307, 'A Short Account of King\'s College Chapel', 'Littlechild, Walter Poole', '2008-08-02', 22, 'https://www.gutenberg.org/ebooks/26167', 'en', 12570), +(32308, 'Iola Leroy; Or, Shadows Uplifted', 'Harper, Frances Ellen Watkins', '2004-05-01', 68, 'https://www.gutenberg.org/ebooks/12352', 'en', 12571), +(32309, 'Seikkailuja saloilla ja vesillä', 'Ingman, A. E. (Alfred Emil)', '2017-09-06', 1, 'https://www.gutenberg.org/ebooks/55495', 'fi', 3242), +(32310, 'In Search of the Unknown', 'Chambers, Robert W. (Robert William)', '2006-06-23', 169, 'https://www.gutenberg.org/ebooks/18668', 'en', 26), +(32311, 'Young Stowaways in Space', 'Elam, Richard M. (Richard Mace)', '2017-04-14', 62, 'https://www.gutenberg.org/ebooks/54547', 'en', 9749), +(32312, 'The Philippine Islands, 1493-1803 — Volume 02 of 55\r\n1521-1569\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Beginning of the Nineteenth Century', NULL, '2004-08-25', 100, 'https://www.gutenberg.org/ebooks/13280', 'en', 8515), +(32313, 'Sjambak', 'Vance, Jack', '2009-09-16', 94, 'https://www.gutenberg.org/ebooks/30002', 'en', 26), +(32314, 'The British State Telegraphs\nA Study of the Problem of a Large Body of Civil Servants in a Democracy', 'Meyer, Hugo Richard', '2015-01-31', 4, 'https://www.gutenberg.org/ebooks/48118', 'en', 12572), +(32315, 'The London Venture', 'Arlen, Michael', '2012-07-31', 13, 'https://www.gutenberg.org/ebooks/40375', 'en', 1079), +(32316, 'Step by Step; Or, Tidy\'s Way to Freedom', 'American Tract Society', '1997-09-01', 16, 'https://www.gutenberg.org/ebooks/1052', 'en', 12573), +(32317, 'Some Remarks on the Tragedy of Hamlet, Prince of Denmark, Written by Mr. William Shakespeare (1736)', NULL, '2005-02-04', 25, 'https://www.gutenberg.org/ebooks/14899', 'en', 12574), +(32318, 'Illustrative Anecdotes of the Animal Kingdom', 'Goodrich, Samuel G. (Samuel Griswold)', '2010-09-09', 144, 'https://www.gutenberg.org/ebooks/33687', 'en', 1787), +(32319, 'De Zonderlinge Lotgevallen van Gil Blas van Santillano, deel 2 van 2\r\nDe Spaansche Avonturier', 'Le Sage, Alain René', '2008-02-16', 13, 'https://www.gutenberg.org/ebooks/24630', 'nl', 1211), +(32320, 'Clarinet Squawk\r\nOne Step', NULL, '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/10405', 'en', 11606), +(32321, 'The Lincoln Country in Pictures', 'Frazier, Rosalie', '2017-12-20', 6, 'https://www.gutenberg.org/ebooks/56210', 'en', 12575), +(32322, 'Peasant Tales of Russia', 'Nemirovich-Danchenko, Vasilii Ivanovich', '2010-06-09', 20, 'https://www.gutenberg.org/ebooks/32755', 'en', 10174), +(32323, 'Perley\'s Reminiscences, v. 1-2\nof Sixty Years in the National Metropolis', 'Poore, Benjamin Perley', '2007-01-05', 11, 'https://www.gutenberg.org/ebooks/20290', 'en', 2698), +(32324, 'The Somme, Volume 2. The Second Battle of the Somme (1918)\r\n(Amiens, Montdidier, Compiègne)', NULL, '2016-12-18', 21, 'https://www.gutenberg.org/ebooks/53762', 'en', 4804), +(32325, 'Great Britain\'s Sea Policy\r\nA Reply to an American Critic, reprinted from \'The Atlantic Monthly\'', 'Murray, Gilbert', '2011-08-27', 4, 'https://www.gutenberg.org/ebooks/37227', 'en', 5333), +(32326, 'Aaron\'s Rod', 'Lawrence, D. H. (David Herbert)', '2003-10-01', 102, 'https://www.gutenberg.org/ebooks/4520', 'en', 5432), +(32327, 'L\'Illustration, No. 2507, 14 Mars 1891', 'Various', '2014-05-07', 10, 'https://www.gutenberg.org/ebooks/45607', 'fr', 150), +(32328, 'The Golden Slave', 'Anderson, Poul', '2019-04-12', 110, 'https://www.gutenberg.org/ebooks/59258', 'en', 1051), +(32329, 'Nocturne', 'Swinnerton, Frank', '2005-02-26', 18, 'https://www.gutenberg.org/ebooks/15177', 'en', 1079), +(32330, 'The Principles of English Versification', 'Baum, Paull F. (Paull Franklin)', '2007-05-07', 165, 'https://www.gutenberg.org/ebooks/21342', 'en', 7414), +(32331, 'Myths and Legends of Our Own Land — Volume 08 : on the Pacific Slope', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 37, 'https://www.gutenberg.org/ebooks/6613', 'en', 725), +(32332, 'The Posthumous Papers of the Pickwick Club, v. 1 (of 2)', 'Dickens, Charles', '2014-12-04', 46, 'https://www.gutenberg.org/ebooks/47534', 'en', 12576), +(32333, 'French Art: Classic and Contemporary Painting and Sculpture', 'Brownell, W. C. (William Crary)', '2005-12-06', 41, 'https://www.gutenberg.org/ebooks/17244', 'en', 12577), +(32334, 'The Taking of Louisburg, 1745', 'Drake, Samuel Adams', '2015-12-01', 14, 'https://www.gutenberg.org/ebooks/50583', 'en', 12578), +(32335, 'Mother Earth: Land Grants in Virginia, 1607-1699', 'Robinson, Walter Stitt', '2009-04-05', 16, 'https://www.gutenberg.org/ebooks/28499', 'en', 12579), +(32336, 'The Rival Crusoes', 'Kingston, William Henry Giles', '2007-10-17', 25, 'https://www.gutenberg.org/ebooks/23071', 'en', 3532), +(32337, 'Capture and Escape: A Narrative of Army and Prison Life', 'Kellogg, John Azor', '2016-03-14', 10, 'https://www.gutenberg.org/ebooks/51451', 'en', 2363), +(32338, 'A Conspiracy of the Carbonari', 'Mühlbach, L. (Luise)', '2005-07-30', 14, 'https://www.gutenberg.org/ebooks/16396', 'en', 12580), +(32339, 'Πεζοί Ρυθμοί', 'Papantoniou, Zacharias L.', '2011-01-29', 16, 'https://www.gutenberg.org/ebooks/35114', 'el', 988), +(32340, 'Nuoruuden tunnustuksia: Romaani', 'Potapenko, I. N. (Ignatii Nicholaevich)', '2017-02-06', 14, 'https://www.gutenberg.org/ebooks/54123', 'fi', 147), +(32341, 'Wild Oranges', 'Hergesheimer, Joseph', '2009-11-13', 23, 'https://www.gutenberg.org/ebooks/30466', 'en', 61), +(32342, 'A fészek regényei: Elbeszélések', 'Mikszáth, Kálmán', '2013-07-11', 8, 'https://www.gutenberg.org/ebooks/43194', 'hu', 61), +(32343, 'Ireland under the Tudors, with a Succinct Account of the Earlier History. Vol. 1 (of 3)', 'Bagwell, Richard', '2013-02-08', 24, 'https://www.gutenberg.org/ebooks/42046', 'en', 11797), +(32344, 'Letters to His Son, Complete\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-10-12', 361, 'https://www.gutenberg.org/ebooks/3361', 'en', 740), +(32345, 'The vision of hell. \r\nBy Dante Alighieri.\r\nTranslated by Rev. Henry Francis Cary, M.A.\r\nand illustrated with the seventy-five designs of Gustave Doré.', 'Dante Alighieri', '2004-08-07', 747, 'https://www.gutenberg.org/ebooks/8789', 'en', 2212), +(32346, 'Iltapuhteeksi 2: Kokoelma pieniä kertomuksia', 'Ivalo, Santeri', '2008-09-01', 28, 'https://www.gutenberg.org/ebooks/26503', 'fi', 61), +(32347, 'Masters of the English Novel: A Study of Principles and Personalities', 'Burton, Richard', '2004-06-25', 26, 'https://www.gutenberg.org/ebooks/12736', 'en', 7049), +(32348, 'A Syrup of the Bees', 'Bain, F. W. (Francis William)', '2011-04-21', 8, 'https://www.gutenberg.org/ebooks/35928', 'en', 580), +(32349, 'A catalogue of technical and scientific books published by Constable & Company Ltd', 'Constable (Firm)', '2018-03-03', 3, 'https://www.gutenberg.org/ebooks/56674', 'en', 12581), +(32350, 'The March of Portola and the Discovery of the Bay of San Francisco', 'Eldredge, Zoeth Skinner', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/4978', 'en', 10436), +(32351, 'La lasta Usonano', 'Mitchell, John Ames', '2008-05-08', 18, 'https://www.gutenberg.org/ebooks/25386', 'eo', 26), +(32352, 'Dave Dawson at Casablanca', 'Bowen, Robert Sidney', '2010-05-11', 51, 'https://www.gutenberg.org/ebooks/32331', 'en', 1004), +(32353, 'The Harmsworth Magazine, Vol. 1, 1898-1899, No. 6', 'Various', '2012-09-08', 4, 'https://www.gutenberg.org/ebooks/40711', 'en', 2370), +(32354, 'A Voyage to Abyssinia', 'Lobo, Jerónimo', '1998-08-01', 38, 'https://www.gutenberg.org/ebooks/1436', 'en', 12582), +(32355, 'History of the English People, Volume VI\r\nPuritan England, 1642-1660; The Revolution, 1660-1683', 'Green, John Richard', '2008-01-11', 30, 'https://www.gutenberg.org/ebooks/24254', 'en', 1953), +(32356, 'Les Heures Claires', 'Verhaeren, Emile', '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10061', 'fr', 3130), +(32357, 'The Mormon Puzzle, and How to Solve It', 'Beers, R. W.', '2011-07-20', 23, 'https://www.gutenberg.org/ebooks/36791', 'en', 3434), +(32358, 'Diary of Samuel Pepys — Volume 25: November/December 1663', 'Pepys, Samuel', '2004-11-30', 15, 'https://www.gutenberg.org/ebooks/4144', 'en', 201), +(32359, 'Rikos ja rangaistus\nKuusiosainen romaani ynnä epilogi', 'Dostoyevsky, Fyodor', '2014-03-31', 37, 'https://www.gutenberg.org/ebooks/45263', 'fi', 1061), +(32360, 'Suomalaisen kirjallisuuden historia', 'Leino, Eino', '2005-03-31', 25, 'https://www.gutenberg.org/ebooks/15513', 'fi', 11241), +(32361, 'Deep Down, a Tale of the Cornish Mines', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 27, 'https://www.gutenberg.org/ebooks/21726', 'en', 12583), +(32362, 'Little Prudy\'s Captain Horace', 'May, Sophie', '2016-10-17', 9, 'https://www.gutenberg.org/ebooks/53306', 'en', 491), +(32363, 'The Esperantist, Vol. 1, No. 11', NULL, '2011-10-06', 4, 'https://www.gutenberg.org/ebooks/37643', 'eo', 3912), +(32364, 'Vingt Mille Lieues Sous Les Mers — Part 2', 'Verne, Jules', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/5096', 'fr', 26), +(32365, 'Elsie in the South', 'Finley, Martha', '2010-04-23', 45, 'https://www.gutenberg.org/ebooks/32103', 'en', 12584), +(32366, 'Sermons for the Times', 'Kingsley, Charles', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11381', 'en', 2745), +(32367, 'Liljecronan koti', 'Lagerlöf, Selma', '2018-01-27', 13, 'https://www.gutenberg.org/ebooks/56446', 'fi', 2168), +(32368, 'Dr. Johnson and His Circle', 'Bailey, John Cann', '2007-12-28', 20, 'https://www.gutenberg.org/ebooks/24066', 'en', 12585), +(32369, 'The Western Echo\r\nA Description of the Western State and Territories of the United States. As Gathered in a Tour by Wagon', 'Romspert, George W.', '2018-07-28', 10, 'https://www.gutenberg.org/ebooks/57594', 'en', 497), +(32370, 'The Gospel of Wealth', 'Carnegie, Andrew', '2003-11-01', 86, 'https://www.gutenberg.org/ebooks/10253', 'en', 12586), +(32371, 'Die Osternacht. Erste Abtheilung', 'Schefer, Leopold', '2012-08-18', 15, 'https://www.gutenberg.org/ebooks/40523', 'de', 282), +(32372, 'The Ebb-Tide: A Trio And Quartette', 'Osbourne, Lloyd', '1999-01-01', 70, 'https://www.gutenberg.org/ebooks/1604', 'en', 323), +(32373, 'The Diary of a Girl in France in 1821', 'Browne, Mary', '2017-01-06', 17, 'https://www.gutenberg.org/ebooks/53908', 'en', 3093), +(32374, 'Curiosities of Impecuniosity', 'Somerville, H. G.', '2011-12-30', 6, 'https://www.gutenberg.org/ebooks/38439', 'en', 12587), +(32375, 'The Hawk of Egypt', 'Conquest, Joan', '2005-04-27', 30, 'https://www.gutenberg.org/ebooks/15721', 'en', 2938), +(32376, 'Gryll Grange', 'Peacock, Thomas Love', '2007-05-17', 46, 'https://www.gutenberg.org/ebooks/21514', 'en', 137), +(32377, 'Sowing Seeds in Danny', 'McClung, Nellie L.', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4376', 'en', 376), +(32378, 'William Clayton\'s Journal\r\nA Daily Record of the Journey of the Original Company of \"Mormon\" Pioneers from Nauvoo, Illinois, to the Valley of the Great Salt Lake', 'Clayton, William', '2014-03-02', 32, 'https://www.gutenberg.org/ebooks/45051', 'en', 310), +(32379, 'Historia de la literatura y del arte dramático en España, tomo II', 'Schack, Adolf Friedrich von', '2008-07-06', 34, 'https://www.gutenberg.org/ebooks/25988', 'es', 8839), +(32380, 'Blackwood\'s Edinburgh Magazine, Volume 65, No. 399, January 1849', 'Various', '2013-11-14', 16, 'https://www.gutenberg.org/ebooks/44183', 'en', 711), +(32381, 'Mind Amongst the Spindles. A Miscellany, Wholly Composed by the Factory Girls', NULL, '2011-09-18', 36, 'https://www.gutenberg.org/ebooks/37471', 'en', 12588), +(32382, 'The Admiral\'s Daughter', 'Lane, Margaret Stuart', '2016-09-23', 20, 'https://www.gutenberg.org/ebooks/53134', 'en', 98), +(32383, 'Lucifer: Treurspel', 'Vondel, Joost van den', '2005-11-20', 13, 'https://www.gutenberg.org/ebooks/17076', 'nl', 7450), +(32384, 'Mister Galgenstrick: und andere Humoresken', 'Ettlinger, Karl', '2007-10-29', 25, 'https://www.gutenberg.org/ebooks/23243', 'de', 12589), +(32385, 'Paalaala sa mga Mapagusapin', 'Rizal, José', '2006-07-10', 16, 'https://www.gutenberg.org/ebooks/18802', 'tl', 11423), +(32386, 'Angela Borgia', 'Meyer, Conrad Ferdinand', '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6421', 'de', 5714), +(32387, 'Transatlantische Reiseskizzen und Christophorus Bärenhäuter. Zweites Bändchen.', 'Sealsfield, Charles', '2014-12-19', 23, 'https://www.gutenberg.org/ebooks/47706', 'de', 1110), +(32388, 'The Long Lane\'s Turning', 'Rives, Hallie Erminie', '2011-08-21', 6, 'https://www.gutenberg.org/ebooks/35326', 'en', 61); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(32389, 'An Elementary Treatise on Fourier\'s Series and Spherical, Cylindrical, and Ellipsoidal Harmonics\nWith Applications to Problems in Mathematical Physics', 'Byerly, William Elwood', '2009-08-19', 55, 'https://www.gutenberg.org/ebooks/29779', 'en', 12590), +(32390, 'Kritik des Herzens', 'Busch, Wilhelm', '2007-08-25', 91, 'https://www.gutenberg.org/ebooks/22391', 'de', 510), +(32391, 'Dawningsburgh', 'West, Wallace', '2016-04-05', 21, 'https://www.gutenberg.org/ebooks/51663', 'en', 613), +(32392, 'The Blithedale Romance', 'Hawthorne, Nathaniel', '2000-02-01', 186, 'https://www.gutenberg.org/ebooks/2081', 'en', 5500), +(32393, 'The Call of the Twentieth Century, an Address to Young Men', 'Jordan, David Starr', '2005-12-01', 11, 'https://www.gutenberg.org/ebooks/9469', 'en', 9851), +(32394, 'Oeuvres par Maximilien Robespierre — Miscellaneous', 'Robespierre, Maximilien', '2009-12-11', 29, 'https://www.gutenberg.org/ebooks/30654', 'fr', 9253), +(32395, 'Collection complète des oeuvres de l\'Abbé de Mably, Volume 4 (of 15)', 'Mably, Gabriel Bonnot de', '2017-03-08', 13, 'https://www.gutenberg.org/ebooks/54311', 'fr', 924), +(32396, 'The Girl of the Golden Gate', 'Meloney, William Brown', '2019-08-18', 577, 'https://www.gutenberg.org/ebooks/60124', 'en', 323), +(32397, 'Αντιγόνη', 'Sophocles', '2008-09-30', 60, 'https://www.gutenberg.org/ebooks/26731', 'el', 276), +(32398, 'A Selection from the Comedies of Marivaux', 'Marivaux, Pierre Carlet de Chamblain de', '2004-06-01', 58, 'https://www.gutenberg.org/ebooks/12504', 'en', 907), +(32399, 'With the Indians in the Rockies', 'Schultz, James Willard', '2013-03-08', 14, 'https://www.gutenberg.org/ebooks/42274', 'en', 12591), +(32400, 'The Virgin of the Sun', 'Haggard, H. Rider (Henry Rider)', '2006-04-06', 52, 'https://www.gutenberg.org/ebooks/3153', 'en', 12592), +(32401, 'The Betrayal', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-11-04', 37, 'https://www.gutenberg.org/ebooks/16998', 'en', 128), +(32402, 'Five Little Starrs in the Canadian Forest', 'Roy, Lillian Elizabeth', '2010-03-26', 13, 'https://www.gutenberg.org/ebooks/31786', 'en', 12593), +(32403, 'Scritti di Giuseppe Mazzini, Politica ed Economia, Vol. II', 'Mazzini, Giuseppe', '2009-07-05', 17, 'https://www.gutenberg.org/ebooks/29325', 'it', 12594), +(32404, 'Stories from Northern Myths', 'Baker, Emilie K. (Emilie Kip)', '2014-07-15', 115, 'https://www.gutenberg.org/ebooks/46288', 'en', 6418), +(32405, 'Melbourne House, Volume 2', 'Warner, Susan', '2004-07-20', 14, 'https://www.gutenberg.org/ebooks/12964', 'en', 470), +(32406, 'The Price of Things', 'Glyn, Elinor', '2006-02-01', 21, 'https://www.gutenberg.org/ebooks/9809', 'en', 61), +(32407, 'Poachers and Poaching', 'Watson, John, F.L.S.', '2013-05-01', 17, 'https://www.gutenberg.org/ebooks/42628', 'en', 12595), +(32408, 'The Vigil\nNight Watches, Part 8.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12158', 'en', 179), +(32409, 'Oliver Goldsmith: A Biography', 'Irving, Washington', '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/7993', 'en', 4242), +(32410, 'The Story of the Innumerable Company, and Other Sketches', 'Jordan, David Starr', '2006-05-28', 18, 'https://www.gutenberg.org/ebooks/18462', 'en', 20), +(32411, 'Mosaics of Grecian History', 'Wilson, Robert Pierpont', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/6841', 'en', 6424), +(32412, 'The Tragedy of Pudd\'nhead Wilson', 'Twain, Mark', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/9035', 'en', 12596), +(32413, 'The Ghosts, and Other Lectures', 'Ingersoll, Robert Green', '2009-10-06', 31, 'https://www.gutenberg.org/ebooks/30208', 'en', 1191), +(32414, 'Die Grundlagen der Arithmetik\nEine logische mathematische Untersuchung über den Begriff der Zahl', 'Frege, Gottlob', '2015-02-19', 43, 'https://www.gutenberg.org/ebooks/48312', 'de', 12597), +(32415, 'Ten Years Later', 'Dumas, Alexandre', '1998-03-01', 88, 'https://www.gutenberg.org/ebooks/1258', 'en', 1127), +(32416, 'Eight or Nine Wise Words about Letter-Writing', 'Carroll, Lewis', '2011-11-20', 58, 'https://www.gutenberg.org/ebooks/38065', 'en', 6638), +(32417, 'Rambles with John Burroughs', 'De Loach, R. J. H. (Robert John Henderson)', '2011-10-20', 10, 'https://www.gutenberg.org/ebooks/37811', 'en', 5906), +(32418, 'Eens Engelschman\'s eerste indrukken van New-York\nDe Aarde en haar Volken, 1917', 'Martin, Stuart', '2007-06-30', 19, 'https://www.gutenberg.org/ebooks/21974', 'nl', 2196), +(32419, 'Miss Leslie\'s New Cookery Book', 'Leslie, Eliza', '2012-10-05', 136, 'https://www.gutenberg.org/ebooks/40943', 'en', 103), +(32420, 'Armenia, Travels and Studies (Volume 2 of 2)\r\nThe Turkish Provinces', 'Lynch, H. F. B. (Harry Finnis Blosse)', '2016-11-21', 16, 'https://www.gutenberg.org/ebooks/53568', 'en', 11338), +(32421, 'Civil War Experiences, 1862-1865\nChickamauga, Mission Ridge, Buzzard Roost, Resaca, Rome, New Hope Church, Kenesaw Mountain, Peach Tree Creek, Atlanta, Jonesboro, Averysboro, Bentonville', 'Robbins, Edward Mott', '2012-02-13', 14, 'https://www.gutenberg.org/ebooks/38859', 'en', 444), +(32422, 'My Knitting Book (Second Series)', 'Lambert, Miss (F.)', '2018-10-28', 31, 'https://www.gutenberg.org/ebooks/58180', 'en', 948), +(32423, 'Pakkasen lapsia', 'London, Jack', '2018-03-24', 28, 'https://www.gutenberg.org/ebooks/56826', 'fi', 179), +(32424, 'Fata Morgana: A Romance of Art Student Life in Paris', 'Castaigne, J. André', '2019-03-12', 12, 'https://www.gutenberg.org/ebooks/59052', 'en', 560), +(32425, 'Max und Moritz', 'Busch, Wilhelm', '2007-04-24', 45, 'https://www.gutenberg.org/ebooks/21148', 'de', 5789), +(32426, 'Automobile Biographies\nAn Account of the Lives and the Work of Those Who Have Been Identified with the Invention and Development of Self-Propelled Vehicles on the Common Roads', 'Weeks, Lyman Horace', '2013-01-21', 24, 'https://www.gutenberg.org/ebooks/41891', 'en', 12598), +(32427, 'The Tale of Kiddie Katydid', 'Bailey, Arthur Scott', '2008-02-14', 31, 'https://www.gutenberg.org/ebooks/24608', 'en', 195), +(32428, 'Abrégé de l\'Histoire Générale des Voyages (Tome 4)', 'La Harpe, Jean-François de', '2011-12-09', 5, 'https://www.gutenberg.org/ebooks/38257', 'fr', 885), +(32429, 'The Jester\'s Sword\nHow Aldebaran, the King\'s Son Wore the Sheathed Sword of Conquest', 'Johnston, Annie F. (Annie Fellows)', '2012-04-06', 22, 'https://www.gutenberg.org/ebooks/39385', 'en', 12599), +(32430, 'Punch, or the London Charivari, Volume 103, November 26, 1892', 'Various', '2005-06-03', 5, 'https://www.gutenberg.org/ebooks/15973', 'en', 134), +(32431, 'Poems', 'Bass, Cora C.', '2017-12-23', 9, 'https://www.gutenberg.org/ebooks/56228', 'en', 178), +(32432, 'Cousin Pons', 'Balzac, Honoré de', '1999-08-01', 53, 'https://www.gutenberg.org/ebooks/1856', 'en', 607), +(32433, 'Martva I', 'Lassila, Maiju', '2016-08-01', 15, 'https://www.gutenberg.org/ebooks/52688', 'fi', 175), +(32434, 'History of the Royal Sappers and Miners, Volume 2 (of 2)\r\nFrom the Formation of the Corps in March 1712 to the date when its designation was changed to that of Royal Engineers', 'Connolly, T. W. J. (Thomas William John)', '2019-04-12', 11, 'https://www.gutenberg.org/ebooks/59260', 'en', 6000), +(32435, 'Madame de Treymes', 'Wharton, Edith', '2003-10-01', 34, 'https://www.gutenberg.org/ebooks/4518', 'en', 797), +(32436, 'The Atlantic Monthly, Volume 18, No. 109, November, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2008-10-19', 9, 'https://www.gutenberg.org/ebooks/26963', 'en', 1227), +(32437, 'Doctor Cupid: A Novel', 'Broughton, Rhoda', '2011-03-11', 7, 'https://www.gutenberg.org/ebooks/35548', 'en', 61), +(32438, 'Bygone Punishments', 'Andrews, William', '2009-06-14', 42, 'https://www.gutenberg.org/ebooks/29117', 'en', 4353), +(32439, 'Jethou; or, Crusoe Life in the Channel Isles', 'Suffling, Ernest R. (Ernest Richard)', '2006-01-28', 17, 'https://www.gutenberg.org/ebooks/17618', 'en', 11219), +(32440, 'Apontamentos para a Biographia do Cidadão José da Silva Passos', 'Pereira da Silva, Manuel Joaquim', '2009-12-30', 17, 'https://www.gutenberg.org/ebooks/30806', 'pt', 12600), +(32441, 'The Forest Schoolmaster', 'Rosegger, Peter', '2014-10-22', 26, 'https://www.gutenberg.org/ebooks/47168', 'en', 712), +(32442, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 685\r\nFebruary 10, 1877', 'Various', '2014-09-17', 8, 'https://www.gutenberg.org/ebooks/46886', 'en', 18), +(32443, 'Daddy-Long-Legs', 'Webster, Jean', '2006-11-15', 19, 'https://www.gutenberg.org/ebooks/19782', 'en', 1631), +(32444, 'My Brother, Theodore Roosevelt', 'Robinson, Corinne Roosevelt', '2016-04-22', 13, 'https://www.gutenberg.org/ebooks/51831', 'en', 4594), +(32445, 'The Vision of the Fountain (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9207', 'en', 179), +(32446, 'Der deutsche Durst: Methyologische Skizzen der deutschen Kulturgeschichte', 'Bauer, Max', '2015-01-31', 16, 'https://www.gutenberg.org/ebooks/48120', 'de', 12601), +(32447, 'The Wouldbegoods: Being the Further Adventures of the Treasure Seekers', 'Nesbit, E. (Edith)', '1997-01-01', 138, 'https://www.gutenberg.org/ebooks/794', 'en', 323), +(32448, 'The War and the Churches', 'McCabe, Joseph', '2006-06-22', 18, 'https://www.gutenberg.org/ebooks/18650', 'en', 335), +(32449, 'The Old World in the New\nThe Significance of Past and Present Immigration to the American People', 'Ross, Edward Alsworth', '2015-01-13', 48, 'https://www.gutenberg.org/ebooks/47954', 'en', 10614), +(32450, 'Practical High School Speller', NULL, '2010-05-09', 5, 'https://www.gutenberg.org/ebooks/32309', 'en', 7396), +(32451, 'Grace Harlowe\'s Senior Year at High School', 'Chase, Josephine', '2007-01-31', 36, 'https://www.gutenberg.org/ebooks/4940', 'en', 2154), +(32452, 'Aunt Jane\'s Nieces on Vacation', 'Baum, L. Frank (Lyman Frank)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10059', 'en', 12602), +(32453, 'Histoires grises', 'Tavernier, E. Edouard', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/5892', 'fr', 687), +(32454, '\"Old Scrooge\": A Christmas Carol in Five Staves.\r\nDramatized from Charles Dickens\' Celebrated Christmas Story.', 'Dickens, Charles', '2012-09-11', 20, 'https://www.gutenberg.org/ebooks/40729', 'en', 12603), +(32455, 'The Monarchs of the Main; Or, Adventures of the Buccaneers. Volume 3 (of 3)', 'Thornbury, Walter', '2012-01-21', 22, 'https://www.gutenberg.org/ebooks/38633', 'en', 645), +(32456, 'A Selection of Cartoons from Puck', 'Keppler, Joseph Ferdinand', '2019-05-25', 65, 'https://www.gutenberg.org/ebooks/59604', 'en', 8382), +(32457, 'Ikuinen taistelu', 'Linnankoski, Johannes', '2013-12-08', 3, 'https://www.gutenberg.org/ebooks/44389', 'fi', 12604), +(32458, 'Play-Making: A Manual of Craftsmanship', 'Archer, William', '2004-01-01', 50, 'https://www.gutenberg.org/ebooks/10865', 'en', 489), +(32459, 'A History of the Inquisition of Spain; vol. 2', 'Lea, Henry Charles', '2013-10-21', 31, 'https://www.gutenberg.org/ebooks/43990', 'en', 4232), +(32460, 'Old Jack', 'Kingston, William Henry Giles', '2007-10-17', 13, 'https://www.gutenberg.org/ebooks/23049', 'en', 12217), +(32461, 'Kiannan rannoilta Kaspian poikki: Päiväkirjani kotimaassa ja Venäjällä v. 1902', 'Kianto, Ilmari', '2017-06-17', 36, 'https://www.gutenberg.org/ebooks/54927', 'fi', 2408), +(32462, 'The O\'Ruddy: A Romance', 'Crane, Stephen', '2009-08-02', 24, 'https://www.gutenberg.org/ebooks/29573', 'en', 323), +(32463, 'America, Volume 5 (of 6)', 'Cook, Joel', '2013-05-29', 3, 'https://www.gutenberg.org/ebooks/42842', 'en', 1110), +(32464, 'Self-Control, Its Kingship and Majesty', 'Jordan, William George', '2016-03-16', 40, 'https://www.gutenberg.org/ebooks/51469', 'en', 740), +(32465, 'Domnei: A Comedy of Woman-Worship', 'Cabell, James Branch', '2006-01-01', 56, 'https://www.gutenberg.org/ebooks/9663', 'en', 580), +(32466, 'Harry: Romaani kansallisen herätyksen ajoilta', 'Järvi, K. A. (Kaarlo August)', '2015-03-21', 38, 'https://www.gutenberg.org/ebooks/48544', 'fi', 175), +(32467, 'The Relief of Mafeking\nHow it Was Accomplished by Mahon\'s Flying Column; with an Account of Some Earlier Episodes in the Boer War of 1899-1900', 'Young, Filson', '2007-12-16', 31, 'https://www.gutenberg.org/ebooks/23875', 'en', 6330), +(32468, 'A Girl\'s Student Days and After', 'Marks, Jeannette Augustus', '2006-04-23', 16, 'https://www.gutenberg.org/ebooks/18234', 'en', 12605), +(32469, 'Jovinian: A Story of the Early Days of Papal Rome', 'Kingston, William Henry Giles', '2011-04-19', 14, 'https://www.gutenberg.org/ebooks/35910', 'en', 1135), +(32470, 'The Scouts of Seal Island', 'Westerman, Percy F. (Percy Francis)', '2015-07-21', 14, 'https://www.gutenberg.org/ebooks/49496', 'en', 1002), +(32471, 'Letters to His Son, 1759-65\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 32, 'https://www.gutenberg.org/ebooks/3359', 'en', 740), +(32472, 'Copyright Renewals 1959', 'Library of Congress. Copyright Office', '2004-09-01', 21, 'https://www.gutenberg.org/ebooks/6419', 'en', 4170), +(32473, 'The House of the Wolfings\r\nA Tale of the House of the Wolfings and All the Kindreds of the Mark Written in Prose and in Verse', 'Morris, William', '2001-10-01', 112, 'https://www.gutenberg.org/ebooks/2885', 'en', 580), +(32474, 'De Geest van China', 'Borel, Henri', '2015-12-29', 11, 'https://www.gutenberg.org/ebooks/50789', 'nl', 567), +(32475, 'Tales of the Fish Patrol', 'London, Jack', '2009-05-05', 47, 'https://www.gutenberg.org/ebooks/28693', 'en', 12606), +(32476, 'Graham\'s Magazine Vol XXXIII No. 1 July 1848', 'Various', '2009-08-20', 9, 'https://www.gutenberg.org/ebooks/29741', 'en', 380), +(32477, 'L\'Abbe Constantin — Complete', 'Halévy, Ludovic', '2004-10-30', 24, 'https://www.gutenberg.org/ebooks/3957', 'en', 12607), +(32478, 'Le Chevalier de Maison-Rouge', 'Dumas, Alexandre', '2006-03-17', 50, 'https://www.gutenberg.org/ebooks/18006', 'fr', 6598), +(32479, 'Symmes\'s Theory of Concentric Spheres\r\nDemonstrating that the Earth is hollow, habitable within, and widely open about the poles', 'McBride, James', '2017-03-09', 10, 'https://www.gutenberg.org/ebooks/54329', 'en', 12608), +(32480, 'The Woodlanders', 'Hardy, Thomas', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9451', 'en', 48), +(32481, 'Gifts of Genius: A Miscellany of Prose and Poetry by American Authors', NULL, '2006-02-27', 15, 'https://www.gutenberg.org/ebooks/17872', 'en', 5428), +(32482, 'Petrarch, the First Modern Scholar and Man of Letters\r\nA Selection from His Correspondence with Boccaccio and Other Friends, Designed to Illustrate the Beginnings of the Renaissance', 'Petrarca, Francesco', '2015-04-24', 55, 'https://www.gutenberg.org/ebooks/48776', 'en', 12609), +(32483, 'Roughing It, Part 2.', 'Twain, Mark', '2004-07-02', 4, 'https://www.gutenberg.org/ebooks/8583', 'en', 12492), +(32484, 'Lord, Teach Us To Pray', 'Murray, Andrew', '2008-09-27', 81, 'https://www.gutenberg.org/ebooks/26709', 'en', 5230), +(32485, 'L\'Illustration, No. 0059, 13 Avril 1844', 'Various', '2014-06-01', 4, 'https://www.gutenberg.org/ebooks/45855', 'fr', 150), +(32486, 'Encyclopaedia Britannica, 11th Edition, \"Gyantse\" to \"Hallel\"\r\nVolume 12, Slice 7', 'Various', '2011-12-24', 26, 'https://www.gutenberg.org/ebooks/38401', 'en', 1081), +(32487, 'Parisiana\nObras Completas, Vol. V', 'Darío, Rubén', '2017-01-09', 15, 'https://www.gutenberg.org/ebooks/53930', 'es', 2730), +(32488, 'The Pioneer Trail', 'Lambourne, Alfred', '2014-02-23', 11, 'https://www.gutenberg.org/ebooks/44987', 'en', 497), +(32489, 'Lincoln in Caricature', 'Wilson, Rufus Rockwell', '2014-03-07', 8, 'https://www.gutenberg.org/ebooks/45069', 'en', 2665), +(32490, 'Harper\'s Round Table, September 29, 1896', 'Various', '2019-05-05', 6, 'https://www.gutenberg.org/ebooks/59436', 'en', 668), +(32491, 'Baron Olson och andra historier', 'Strömberg, Sigge', '2005-04-26', 28, 'https://www.gutenberg.org/ebooks/15719', 'sv', 420), +(32492, 'You Too Can Be A Millionaire', 'Loomis, Noel M.', '2010-06-20', 78, 'https://www.gutenberg.org/ebooks/32907', 'en', 179), +(32493, 'Letters of Lt.-Col. George Brenton Laurie\r\n(commanding 1st Battn. Royal Irish Rifles) Dated November 4th, 1914-March 11th, 1915', 'Laurie, G. B. (George Brenton)', '2008-03-17', 16, 'https://www.gutenberg.org/ebooks/24862', 'en', 449), +(32494, 'Puppets at Large: Scenes and Subjects from Mr Punch\'s Show', 'Anstey, F.', '2011-09-17', 25, 'https://www.gutenberg.org/ebooks/37449', 'en', 564), +(32495, 'The Argentine as a Market', 'Watson, Nowell Lake', '2012-05-16', 16, 'https://www.gutenberg.org/ebooks/39715', 'en', 12610), +(32496, 'Nestlings\nA Collection of Poems', 'Weller, Ella Fraser', '2008-01-15', 15, 'https://www.gutenberg.org/ebooks/24298', 'en', 1209), +(32497, 'Yollop', 'McCutcheon, George Barr', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5866', 'en', 12611), +(32498, 'Vor Sonnenaufgang: Soziales Drama', 'Hauptmann, Gerhart', '2016-06-02', 29, 'https://www.gutenberg.org/ebooks/52218', 'de', 4088), +(32499, 'Diary of Samuel Pepys — Volume 64: April 1668', 'Pepys, Samuel', '2004-12-01', 18, 'https://www.gutenberg.org/ebooks/4188', 'en', 201), +(32500, 'The Winning of the West, Volume 3\r\nThe Founding of the Trans-Alleghany Commonwealths, 1784-1790', 'Roosevelt, Theodore', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/11943', 'en', 5921), +(32501, 'Algonquin Indian Tales', 'Young, Egerton Ryerson', '2004-01-01', 52, 'https://www.gutenberg.org/ebooks/10891', 'en', 12612), +(32502, 'From Plotzk to Boston', 'Antin, Mary', '2007-02-21', 37, 'https://www.gutenberg.org/ebooks/20638', 'en', 12613), +(32503, 'Index of the Project Gutenberg Works of Richard F. Burton', 'Burton, Richard Francis, Sir', '2019-01-19', 28, 'https://www.gutenberg.org/ebooks/58722', 'en', 198), +(32504, 'Herzegovina; Or, Omer Pacha and the Christian Rebels', 'Arbuthnot, George', '2005-12-12', 10, 'https://www.gutenberg.org/ebooks/17288', 'en', 12614), +(32505, 'Great Men and Famous Women. Vol. 5\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2009-03-30', 21, 'https://www.gutenberg.org/ebooks/28455', 'en', 122), +(32506, 'L\'Illustration, No. 0055, 16 Mars 1844', 'Various', '2013-10-16', 9, 'https://www.gutenberg.org/ebooks/43964', 'fr', 150), +(32507, 'Teen-age Super Science Stories', 'Elam, Richard M. (Richard Mace)', '2017-10-24', 80, 'https://www.gutenberg.org/ebooks/55801', 'en', 26), +(32508, 'The Loom of Life', 'Noe, Cotton', '2009-08-03', 5, 'https://www.gutenberg.org/ebooks/29587', 'en', 8), +(32509, 'Reprinted Pieces', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9697', 'en', 61), +(32510, 'Kingsworth; or, The Aim of a Life', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-08', 6, 'https://www.gutenberg.org/ebooks/43158', 'en', 1380), +(32511, 'The History of \"Punch\"', 'Spielmann, M. H. (Marion Harry)', '2007-12-17', 22, 'https://www.gutenberg.org/ebooks/23881', 'en', 12615), +(32512, 'La Esmeralda', 'Hugo, Victor', '2004-10-05', 50, 'https://www.gutenberg.org/ebooks/13628', 'fr', 1966), +(32513, 'A New Pocket Gopher (Genus Thomomys), from Eastern Colorado', 'Hall, E. Raymond (Eugene Raymond)', '2011-01-04', 5, 'https://www.gutenberg.org/ebooks/34836', 'en', 7764), +(32514, 'Rio Grande\'s Last Race, and Other Verses', 'Paterson, A. B. (Andrew Barton)', '1995-08-01', 27, 'https://www.gutenberg.org/ebooks/304', 'en', 2474), +(32515, 'Tablets of Abdul-Baha Abbas', '`Abdu\'l-Bahá', '2006-09-20', 22, 'https://www.gutenberg.org/ebooks/19312', 'en', 4457), +(32516, 'Lord Tedric', 'Smith, E. E. (Edward Elmer)', '2015-07-16', 89, 'https://www.gutenberg.org/ebooks/49462', 'en', 26), +(32517, 'Lady Susan', 'Austen, Jane', '2007-10-01', 25, 'https://www.gutenberg.org/ebooks/22953', 'en', 4013), +(32518, 'Room Number 3, and Other Detective Stories', 'Green, Anna Katharine', '2010-03-09', 75, 'https://www.gutenberg.org/ebooks/31578', 'en', 61), +(32519, 'Wulf the Saxon: A Story of the Norman Conquest', 'Henty, G. A. (George Alfred)', '2005-08-01', 69, 'https://www.gutenberg.org/ebooks/8745', 'en', 12616), +(32520, 'Rural Rides', 'Cobbett, William', '2010-11-08', 92, 'https://www.gutenberg.org/ebooks/34238', 'en', 2364), +(32521, 'The Variation of Animals and Plants under Domestication — Volume 1', 'Darwin, Charles', '2001-10-01', 55, 'https://www.gutenberg.org/ebooks/2871', 'en', 91), +(32522, 'Genghis Khan, Makers of History Series', 'Abbott, Jacob', '2009-05-02', 142, 'https://www.gutenberg.org/ebooks/28667', 'en', 12617), +(32523, 'The Master Mystery', 'Grey, John W.', '2005-07-01', 32, 'https://www.gutenberg.org/ebooks/16168', 'en', 128), +(32524, 'The Story of London', 'Wheatley, Henry B. (Henry Benjamin)', '2014-08-18', 51, 'https://www.gutenberg.org/ebooks/46618', 'en', 4685), +(32525, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '1994-06-01', 457, 'https://www.gutenberg.org/ebooks/136', 'en', 2951), +(32526, 'Jerome, A Poor Man: A Novel', 'Freeman, Mary Eleanor Wilkins', '2006-03-01', 22, 'https://www.gutenberg.org/ebooks/17886', 'en', 13), +(32527, 'Aces Up', 'Clarke, Covington', '2009-12-17', 33, 'https://www.gutenberg.org/ebooks/30698', 'en', 579), +(32528, 'Lion and Dragon in Northern China', 'Johnston, Reginald Fleming, Sir', '2015-04-24', 24, 'https://www.gutenberg.org/ebooks/48782', 'en', 12618), +(32529, 'Arrah Neil; or, Times of Old', 'James, G. P. R. (George Payne Rainsford)', '2015-08-07', 14, 'https://www.gutenberg.org/ebooks/49650', 'en', 98), +(32530, '\"Us,\" An Old Fashioned Story', 'Molesworth, Mrs.', '2005-10-27', 28, 'https://www.gutenberg.org/ebooks/16954', 'en', 195), +(32531, 'Charles O\'Malley, The Irish Dragoon, Volume 1', 'Lever, Charles James', '2007-02-02', 37, 'https://www.gutenberg.org/ebooks/8577', 'en', 7920), +(32532, 'The Saddle Boys of the Rockies; Or, Lost on Thunder Mountain', 'Carson, James, Captain', '2006-08-25', 46, 'https://www.gutenberg.org/ebooks/19120', 'en', 5911), +(32533, 'Damiano: Storia di una povera famiglia', 'Carcano, Giulio', '2008-04-26', 11, 'https://www.gutenberg.org/ebooks/25178', 'it', 61), +(32534, 'The Early Life and Adventures of Sylvia Scarlett', 'MacKenzie, Compton', '2012-04-24', 28, 'https://www.gutenberg.org/ebooks/39527', 'en', 61), +(32535, 'With the Flag in the Channel; or, The Adventures of Captain Gustavus Conyngham', 'Barnes, James', '2016-08-16', 10, 'https://www.gutenberg.org/ebooks/52816', 'en', 2843), +(32536, 'Stray Pebbles from the Shores of Thought', 'Gould, Elizabeth Porter', '2014-02-21', 12, 'https://www.gutenberg.org/ebooks/44973', 'en', 12619), +(32537, 'Walking essays', 'Sidgwick, Arthur', '2018-07-21', 20, 'https://www.gutenberg.org/ebooks/57558', 'en', 9805), +(32538, 'Essentials of Diseases of the Skin\nIncluding the Syphilodermata Arranged in the Form of Questions and Answers Prepared Especially for Students of Medicine', 'Stelwagon, Henry Weightman', '2008-07-01', 53, 'https://www.gutenberg.org/ebooks/25944', 'en', 12620), +(32539, 'Madame Adam (Juliette Lambert), la grande Française\r\nfrom Louis Philippe until 1917', 'Whale, Winifred Stephens', '2018-12-21', 5, 'https://www.gutenberg.org/ebooks/58510', 'fr', 12621), +(32540, 'Erste Gedichte', 'Rilke, Rainer Maria', '2010-09-30', 38, 'https://www.gutenberg.org/ebooks/33821', 'de', 8), +(32541, 'The Ebbing Of The Tide\nSouth Sea Stories - 1896', 'Becke, Louis', '2008-03-22', 15, 'https://www.gutenberg.org/ebooks/24896', 'en', 108), +(32542, 'Courts and Criminals', 'Train, Arthur Cheney', '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/5268', 'en', 12622), +(32543, 'The Human Aura: Astral Colors and Thought Forms', 'Atkinson, William Walker', '2007-09-23', 107, 'https://www.gutenberg.org/ebooks/22739', 'en', 3324), +(32544, 'A Residence in France\nWith an Excursion Up the Rhine, and a Second Visit to Switzerland', 'Cooper, James Fenimore', '2004-07-22', 28, 'https://www.gutenberg.org/ebooks/12990', 'en', 1307), +(32545, 'The Follies of Love', 'Regnard, Jean François', '2004-07-01', 9, 'https://www.gutenberg.org/ebooks/6089', 'en', 1234), +(32546, 'The Story of Manhattan', 'Hemstreet, Charles', '2004-10-24', 30, 'https://www.gutenberg.org/ebooks/13842', 'en', 12623), +(32547, 'Harper\'s Round Table, December 17, 1895', 'Various', '2015-10-26', 5, 'https://www.gutenberg.org/ebooks/50319', 'en', 668), +(32548, 'Moods', 'Alcott, Louisa May', '2009-02-27', 40, 'https://www.gutenberg.org/ebooks/28203', 'en', 348), +(32549, 'The Esperantist, Vol. 2, No. 12', NULL, '2015-06-18', 5, 'https://www.gutenberg.org/ebooks/49234', 'eo', 3912), +(32550, 'Literary Love-Letters and Other Stories', 'Herrick, Robert', '2005-05-01', 3, 'https://www.gutenberg.org/ebooks/8113', 'en', 770), +(32551, 'Fairy Prince and Other Stories', 'Abbott, Eleanor Hallowell', '2008-08-23', 74, 'https://www.gutenberg.org/ebooks/26399', 'en', 712), +(32552, 'Jean-Christophe Journey\'s End', 'Rolland, Romain', '2005-04-01', 122, 'https://www.gutenberg.org/ebooks/7967', 'en', 7434), +(32553, 'Wat tante Dora vertelde', 'Jacobi, H. D.', '2006-10-14', 13, 'https://www.gutenberg.org/ebooks/19544', 'nl', 388), +(32554, 'The People That Time Forgot', 'Burroughs, Edgar Rice', '1996-06-01', 223, 'https://www.gutenberg.org/ebooks/552', 'en', 26), +(32555, 'Big Brother', 'Johnston, Annie F. (Annie Fellows)', '2006-06-03', 14, 'https://www.gutenberg.org/ebooks/18496', 'en', 6419), +(32556, 'Lost Face', 'London, Jack', '2000-12-01', 191, 'https://www.gutenberg.org/ebooks/2429', 'en', 2933), +(32557, 'Descripcion del rio Paraguay, desde la boca del Xauru hasta la confluencia del Parana', 'Quiroga, José', '2007-03-20', 10, 'https://www.gutenberg.org/ebooks/20852', 'es', 12624), +(32558, 'The Opium Monopoly', 'La Motte, Ellen N. (Ellen Newbold)', '2010-08-21', 24, 'https://www.gutenberg.org/ebooks/33479', 'en', 12625), +(32559, 'The Letters of William James, Vol. 2', 'James, William', '2011-11-22', 34, 'https://www.gutenberg.org/ebooks/38091', 'en', 10942), +(32560, 'Flint Hills Cook Book', 'Christ Church Episcopal (Burlington, Iowa)', '2019-02-23', 35, 'https://www.gutenberg.org/ebooks/58948', 'en', 12626), +(32561, 'Life of Johnson, Volume 6\r\nAddenda, index, dicta philosophi, etc.', 'Boswell, James', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11729', 'en', 5466), +(32562, 'Judith Trachtenberg: A Novel', 'Franzos, Karl Emil', '2011-08-01', 93, 'https://www.gutenberg.org/ebooks/36937', 'en', 109), +(32563, 'The Making of a Saint', 'Maugham, W. Somerset (William Somerset)', '2012-03-14', 64, 'https://www.gutenberg.org/ebooks/39143', 'en', 98), +(32564, 'Motor Boat Boys Mississippi Cruise; or, The Dash for Dixie', 'Arundel, Louis', '2007-06-30', 18, 'https://www.gutenberg.org/ebooks/21980', 'en', 3729), +(32565, 'Divine Adventures: A Book of Verse', 'Niendorff, John', '2012-10-14', 3, 'https://www.gutenberg.org/ebooks/41059', 'en', 8), +(32566, 'The Battle of Wavre and Grouchy\'s Retreat\nA study of an Obscure Part of the Waterloo Campaign', 'Kelly, William Hyde', '2018-10-27', 9, 'https://www.gutenberg.org/ebooks/58174', 'en', 12627), +(32567, 'Lighthouses and Lightships\r\nA Descriptive and Historical Account of Their Mode of Construction and Organization', 'Adams, W. H. Davenport (William Henry Davenport)', '2018-09-15', 12, 'https://www.gutenberg.org/ebooks/57900', 'en', 12628), +(32568, 'True Riches; Or, Wealth Without Wings', 'Arthur, T. S. (Timothy Shay)', '2005-03-16', 9, 'https://www.gutenberg.org/ebooks/15389', 'en', 12629), +(32569, 'Leaves for a Christmas Bough: Love, Truth, and Hope', 'Unknown', '2013-01-18', 13, 'https://www.gutenberg.org/ebooks/41865', 'en', 859), +(32570, 'A Few Short Sketches', 'Sherley, Douglass', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/14855', 'en', 179), +(32571, 'Kuvauksia ja unelmia: Valikoima kertomuksia', 'Runeberg, Fredrika Charlotta Tengström', '2005-06-04', 20, 'https://www.gutenberg.org/ebooks/15987', 'fi', 179), +(32572, 'Διηγήματα της ξενιτειάς', 'Christovasilis, Christos', '2010-06-13', 10, 'https://www.gutenberg.org/ebooks/32799', 'el', 1348), +(32573, 'A Legacy to the Friends of Free Discussion\r\nPrincipal Historical Facts and Personages of the Books Known as The Old and New Testament; With Remarks on the Morality of Nature', 'Offen, Benjamin', '2012-04-04', 28, 'https://www.gutenberg.org/ebooks/39371', 'en', 3792), +(32574, 'Aus einer kleinen Garnison: Ein militärisches Zeitbild', 'Bilse, Fritz Oswald', '2014-01-20', 12, 'https://www.gutenberg.org/ebooks/44719', 'de', 12630), +(32575, 'Contes pour les petits garçons', 'Schmid, Christoph von', '2004-11-17', 23, 'https://www.gutenberg.org/ebooks/14069', 'fr', 388), +(32576, 'Within the Maze: A Novel, Vol. 2 (of 2)', 'Wood, Henry, Mrs.', '2018-11-24', 15, 'https://www.gutenberg.org/ebooks/58346', 'en', 137), +(32577, 'Sünndagsklocken: Stadt- un Dörp-Predigten', 'Köhn, Friedrich', '2019-04-17', 2, 'https://www.gutenberg.org/ebooks/59294', 'de', 12631), +(32578, 'Boscobel\r\nOr, The History of his Sacred Majesties most Miraculous Preservation After the Battle of Worcester, 3. Sept. 1651', 'Blount, Thomas', '2011-06-06', 14, 'https://www.gutenberg.org/ebooks/36339', 'en', 11041), +(32579, '朝野僉載', 'Zhang, Zhuo', '2008-10-24', 19, 'https://www.gutenberg.org/ebooks/26997', 'zh', 9827), +(32580, 'Jim Davis', 'Masefield, John', '2005-01-01', 15, 'https://www.gutenberg.org/ebooks/7369', 'en', 7815), +(32581, 'The Next Step in Religion: An Essay toward the Coming Renaissance', 'Sellars, Roy Wood', '2010-04-08', 6, 'https://www.gutenberg.org/ebooks/31920', 'en', 2566), +(32582, 'Resurrection', 'Shea, Robert', '2009-02-09', 21, 'https://www.gutenberg.org/ebooks/28031', 'en', 179), +(32583, 'Κύκλωψ', 'Euripides', '2009-01-20', 8, 'https://www.gutenberg.org/ebooks/27845', 'el', 12632), +(32584, 'The Putnam Hall Rivals; or, Fun and Sport Afloat and Ashore', 'Stratemeyer, Edward', '2014-09-16', 22, 'https://www.gutenberg.org/ebooks/46872', 'en', 1877), +(32585, 'The Curse of Kehama, Volume 2 (of 2)', 'Southey, Robert', '2017-08-30', 14, 'https://www.gutenberg.org/ebooks/55459', 'en', 532), +(32586, 'The Ordeal: A Mountain Romance of Tennessee', 'Murfree, Mary Noailles', '2006-11-13', 28, 'https://www.gutenberg.org/ebooks/19776', 'en', 12633), +(32587, 'On the apostolical succession\nParochial lectures, second series', 'Irons, William J. (William Josiah)', '2015-05-20', 6, 'https://www.gutenberg.org/ebooks/49006', 'en', 717), +(32588, 'The Bible, Douay-Rheims, Book 21: Psalms\nThe Challoner Revision', NULL, '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8321', 'en', 11169), +(32589, 'Mitteilungen aus dem germanischen Nationalmuseum. Jahrgang 1896', 'Germanisches Nationalmuseum Nürnberg', '2016-01-14', 4, 'https://www.gutenberg.org/ebooks/50917', 'de', 12634), +(32590, 'Enoch Soames: A Memory of the Eighteen-Nineties', 'Beerbohm, Max, Sir', '1996-12-01', 140, 'https://www.gutenberg.org/ebooks/760', 'en', 12635), +(32591, 'Jonah and Co.', 'Yates, Dornford', '2009-01-09', 12, 'https://www.gutenberg.org/ebooks/27079', 'en', 637), +(32592, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 347, December 20, 1828', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11386', 'en', 133), +(32593, 'Analysis of the Phenomena of the Human Mind', 'Mill, James', '2018-01-27', 51, 'https://www.gutenberg.org/ebooks/56441', 'en', 1151), +(32594, 'Turning Point', 'Coppel, Alfred', '2010-04-23', 37, 'https://www.gutenberg.org/ebooks/32104', 'en', 179), +(32595, 'The Blue Flower', 'Van Dyke, Henry', '1999-01-01', 48, 'https://www.gutenberg.org/ebooks/1603', 'en', 179), +(32596, 'Die Osternacht. Zweite Abtheilung', 'Schefer, Leopold', '2012-08-18', 18, 'https://www.gutenberg.org/ebooks/40524', 'de', 282), +(32597, 'De Koning der Zee', 'Westerman, Percy F. (Percy Francis)', '2018-07-28', 27, 'https://www.gutenberg.org/ebooks/57593', 'nl', 12636), +(32598, 'The Birth of the Telephone', 'Watson, Thomas Augustus', '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10254', 'en', 3741), +(32599, 'Jimmy Crow', 'Foster, Edith Francis', '2007-12-28', 12, 'https://www.gutenberg.org/ebooks/24061', 'en', 12637), +(32600, 'Suotorpan tyttö: Kansannäytelmä neljässä näytöksessä', 'Lagerlöf, Selma', '2014-03-03', 17, 'https://www.gutenberg.org/ebooks/45056', 'fi', 5375), +(32601, 'Jenseits der Schriftkultur — Band 1', 'Nadin, Mihai', '2003-08-01', 28, 'https://www.gutenberg.org/ebooks/4371', 'de', 3274), +(32602, 'The Life and Adventures of Peter Wilkins, Volume 1 (of 2)', 'Paltock, Robert', '2007-05-17', 20, 'https://www.gutenberg.org/ebooks/21513', 'en', 580), +(32603, 'Index of the Project Gutenberg Works of Havelock Ellis', 'Ellis, Havelock', '2019-05-01', 22, 'https://www.gutenberg.org/ebooks/59409', 'en', 198), +(32604, 'The Camp Fire Girls on the Farm; Or, Bessie King\'s New Chum', 'Stewart, Jane L.', '2005-04-28', 22, 'https://www.gutenberg.org/ebooks/15726', 'en', 622), +(32605, 'First Annual Report of the Bureau of Ethnology\r\nto the Secretary of the Smithsonian Institution 1879-1880, Government Printing Office 1881', NULL, '2010-06-20', 42, 'https://www.gutenberg.org/ebooks/32938', 'en', 12638), +(32606, 'The High Toby\r\nBeing further chapters in the life and fortunes of Dick Ryder, otherwise Galloping Dick, sometime gentleman of the road', 'Watson, H. B. Marriott (Henry Brereton Marriott)', '2016-09-23', 17, 'https://www.gutenberg.org/ebooks/53133', 'en', 356), +(32607, 'Jessie Graham', 'Holmes, Mary Jane', '2011-09-18', 16, 'https://www.gutenberg.org/ebooks/37476', 'en', 61), +(32608, 'On the Seaboard: A Novel of the Baltic Islands', 'Strindberg, August', '2013-11-15', 36, 'https://www.gutenberg.org/ebooks/44184', 'en', 1526), +(32609, 'Encyclopedia of Diet: A Treatise on the Food Question, Vol. 4 of 5', 'Christian, Eugene', '2014-12-19', 17, 'https://www.gutenberg.org/ebooks/47701', 'en', 11808), +(32610, 'Hindi Biro!... ó Ang Anting-Anting', 'Francia, José R.', '2006-07-11', 14, 'https://www.gutenberg.org/ebooks/18805', 'tl', 61), +(32611, 'Dick Prescott\'s First Year at West Point; Or, Two Chums in the Cadet Gray', 'Hancock, H. Irving (Harrie Irving)', '2004-11-14', 25, 'https://www.gutenberg.org/ebooks/6426', 'en', 4642), +(32612, 'The Dude Wrangler', 'Lockhart, Caroline', '2007-10-29', 45, 'https://www.gutenberg.org/ebooks/23244', 'en', 315), +(32613, 'Folk-Lore and Legends: Scotland', 'Anonymous', '2005-11-15', 110, 'https://www.gutenberg.org/ebooks/17071', 'en', 12165), +(32614, 'Jacqueline — Volume 1', 'Bentzon, Th.', '2003-04-01', 6, 'https://www.gutenberg.org/ebooks/3968', 'en', 560), +(32615, 'Palace and Mosque at Ukhaidir: A Study in Early Mohammadan Architecture', 'Bell, Gertrude Lowthian', '2016-04-05', 8, 'https://www.gutenberg.org/ebooks/51664', 'en', 11056), +(32616, 'King Arthur\'s Knights\nThe Tales Re-told for Boys & Girls', 'Gilbert, Henry', '2007-08-25', 96, 'https://www.gutenberg.org/ebooks/22396', 'en', 5139), +(32617, 'Selvaggia de\' Vergiolesi', 'Tigri, Giuseppe', '2011-02-18', 11, 'https://www.gutenberg.org/ebooks/35321', 'it', 98), +(32618, 'The Wonderful Year', 'Locke, William John', '2019-08-18', 684, 'https://www.gutenberg.org/ebooks/60123', 'en', 230), +(32619, 'Manual of the Mother Church\nThe First Church of Christ Scientist in Boston, Massachusetts', 'Eddy, Mary Baker', '2006-03-23', 20, 'https://www.gutenberg.org/ebooks/18039', 'en', 1206), +(32620, 'Durham: A Sketch-Book', 'Bertram, Robert J. S.', '2017-03-09', 6, 'https://www.gutenberg.org/ebooks/54316', 'en', 12639), +(32621, 'Liliom: A Legend in Seven Scenes and a Prologue', 'Molnár, Ferenc', '2015-04-20', 37, 'https://www.gutenberg.org/ebooks/48749', 'en', 12640), +(32622, 'The Slowcoach', 'Lucas, E. V. (Edward Verrall)', '2000-02-01', 14, 'https://www.gutenberg.org/ebooks/2086', 'en', 82), +(32623, 'The Revenge: A Tragedy', 'Young, Edward', '2009-12-11', 8, 'https://www.gutenberg.org/ebooks/30653', 'en', 1298), +(32624, 'The Surprising Adventures of Baron Munchausen', 'Raspe, Rudolf Erich', '2006-04-06', 140, 'https://www.gutenberg.org/ebooks/3154', 'en', 10285), +(32625, 'The Bibliography of Walt Whitman', 'Shay, Frank', '2010-03-25', 15, 'https://www.gutenberg.org/ebooks/31781', 'en', 12641), +(32626, 'The Expositor\'s Bible: The Epistles of St. Peter', 'Lumby, J. Rawson (Joseph Rawson)', '2013-03-07', 18, 'https://www.gutenberg.org/ebooks/42273', 'en', 11363), +(32627, 'Buena Nueva de acuerdo a Juan: Traducción de dominio público abierta a mejoras', NULL, '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/12503', 'es', 5364), +(32628, 'Stories of Many Lands', 'Greenwood, Grace', '2008-10-01', 16, 'https://www.gutenberg.org/ebooks/26736', 'en', 859), +(32629, 'Tik-Tok of Oz', 'Baum, L. Frank (Lyman Frank)', '2007-10-01', 7, 'https://www.gutenberg.org/ebooks/23076', 'en', 246), +(32630, 'Full Revelations of a Professional Rat-catcher After 25 Years\' Experience', 'Matthews, Ike', '2005-12-06', 37, 'https://www.gutenberg.org/ebooks/17243', 'en', 1687), +(32631, 'Insects and Diseases of Trees in the South', 'Anonymous', '2015-12-01', 6, 'https://www.gutenberg.org/ebooks/50584', 'en', 12642), +(32632, 'The Forest Farm: Tales of the Austrian Tyrol', 'Rosegger, Peter', '2014-12-04', 35, 'https://www.gutenberg.org/ebooks/47533', 'en', 12522), +(32633, 'The Romance of War; or, The Highlanders in Spain, Volume 1 (of 3)', 'Grant, James', '2017-06-15', 8, 'https://www.gutenberg.org/ebooks/54918', 'en', 7920), +(32634, 'Myths and Legends of Our Own Land — Volume 09 : as to buried treasure', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 20, 'https://www.gutenberg.org/ebooks/6614', 'en', 725), +(32635, 'Comfort Found in Good Old Books', 'Fitch, George Hamlin', '2011-01-29', 29, 'https://www.gutenberg.org/ebooks/35113', 'en', 9561), +(32636, 'Was John Bunyan a Gipsy?', 'Simson, James', '2016-03-14', 4, 'https://www.gutenberg.org/ebooks/51456', 'en', 5145), +(32637, 'Vanhan päiväkirjan lehtiä\nEpisodi J. L. Runebergin elämästä', 'Edelfelt, Berta', '2005-07-30', 6, 'https://www.gutenberg.org/ebooks/16391', 'fi', 12643), +(32638, 'Conferenze tenute a Firenze nel 1896\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Various', '2013-07-11', 8, 'https://www.gutenberg.org/ebooks/43193', 'it', 1941), +(32639, 'A Morgadinha de Val-D\'Amores/Entre a Flauta e a Viola\nTheatro Comico de Camillo Castello Branco', 'Castelo Branco, Camilo', '2009-11-13', 12, 'https://www.gutenberg.org/ebooks/30461', 'pt', 3231), +(32640, 'War the Creator', 'Burgess, Gelett', '2017-02-06', 14, 'https://www.gutenberg.org/ebooks/54124', 'en', 4411), +(32641, 'The High School Boys\' Training Hike', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12731', 'en', 11507), +(32642, 'La tulipe noire', 'Dumas, Alexandre', '2008-09-01', 54, 'https://www.gutenberg.org/ebooks/26504', 'fr', 1950), +(32643, 'A Hazard of New Fortunes — Volume 1', 'Howells, William Dean', '2004-10-23', 14, 'https://www.gutenberg.org/ebooks/3366', 'en', 262), +(32644, 'Janet of the Dunes', 'Comstock, Harriet T. (Harriet Theresa)', '2007-10-17', 9, 'https://www.gutenberg.org/ebooks/22998', 'en', 348), +(32645, 'Studies of Contemporary Poets', 'Sturgeon, Mary C.', '2013-02-07', 14, 'https://www.gutenberg.org/ebooks/42041', 'en', 12644), +(32646, 'Maid Sally', 'Cheever, Harriet A. (Harriet Anna)', '2010-05-11', 22, 'https://www.gutenberg.org/ebooks/32336', 'en', 62), +(32647, '幽夢影', 'Zhang, Chao', '2008-05-07', 11, 'https://www.gutenberg.org/ebooks/25381', 'zh', 3769), +(32648, 'Vagabonding down the Andes\nBeing the Narrative of a Journey, Chiefly Afoot, from Panama to Buenos Aires', 'Franck, Harry Alverson', '2018-03-03', 21, 'https://www.gutenberg.org/ebooks/56673', 'en', 227), +(32649, 'Gunman\'s Reckoning', 'Brand, Max', '2003-11-01', 104, 'https://www.gutenberg.org/ebooks/10066', 'en', 109), +(32650, 'Folkways\nA Study of the Sociological Importance of Usages, Manners, Customs, Mores, and Morals', 'Sumner, William Graham', '2008-01-11', 113, 'https://www.gutenberg.org/ebooks/24253', 'en', 1470), +(32651, 'Trooper Peter Halket of Mashonaland', 'Schreiner, Olive', '1998-08-01', 25, 'https://www.gutenberg.org/ebooks/1431', 'en', 12645), +(32652, 'Notes and Queries, Vol. V, Number 118, January 31, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-08', 9, 'https://www.gutenberg.org/ebooks/40716', 'en', 105), +(32653, 'The Coral Island', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 225, 'https://www.gutenberg.org/ebooks/21721', 'en', 1096), +(32654, 'Maaemon lapsia\nKertomus', 'Järnefelt, Arvid', '2005-03-31', 22, 'https://www.gutenberg.org/ebooks/15514', 'fi', 61), +(32655, 'The Tale of Two Bad Mice', 'Potter, Beatrix', '2014-03-31', 109, 'https://www.gutenberg.org/ebooks/45264', 'en', 1132), +(32656, 'The Human Chord', 'Blackwood, Algernon', '2004-04-01', 43, 'https://www.gutenberg.org/ebooks/11988', 'en', 114), +(32657, 'Bygones Worth Remembering, Vol. 2 (of 2)', 'Holyoake, George Jacob', '2011-07-20', 11, 'https://www.gutenberg.org/ebooks/36796', 'en', 202), +(32658, 'Diary of Samuel Pepys — Volume 24: September/October 1663', 'Pepys, Samuel', '2004-11-30', 22, 'https://www.gutenberg.org/ebooks/4143', 'en', 2197), +(32659, 'The Esperantist, Vol. 1, No. 12', NULL, '2011-10-06', 3, 'https://www.gutenberg.org/ebooks/37644', 'eo', 3912), +(32660, 'The Tempting of Tavernake', 'Oppenheim, E. Phillips (Edward Phillips)', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/5091', 'en', 128), +(32661, 'Nimensä pilannut kaupunki', 'Twain, Mark', '2016-10-17', 8, 'https://www.gutenberg.org/ebooks/53301', 'fi', 2116), +(32662, 'Caucasian Legends', 'Gul\'bat, Abraam Abraamovich', '2011-03-14', 12, 'https://www.gutenberg.org/ebooks/35577', 'en', 12646), +(32663, 'The Boy Allies with Pershing in France; Or, Over the Top at Chateau Thierry', 'Hayes, Clair W. (Clair Wallace)', '2014-06-24', 6, 'https://www.gutenberg.org/ebooks/46085', 'en', 146), +(32664, 'The Catholic World, Vol. 18, October, 1873, to March, 1874.\r\nA Monthly Magazine of General Literature and Science', 'Various', '2016-01-25', 1, 'https://www.gutenberg.org/ebooks/51032', 'en', 96), +(32665, 'David Dunne\nA Romance of the Middle West', 'Maniates, Belle Kanaris', '2009-06-15', 18, 'https://www.gutenberg.org/ebooks/29128', 'en', 2358), +(32666, 'The Figure In The Mirage\n1905', 'Hichens, Robert', '2007-11-08', 21, 'https://www.gutenberg.org/ebooks/23412', 'en', 179), +(32667, 'Joseph Pennell\'s Pictures of War Work in America\r\nReproductions of a series of lithographs of munition works made by him with the permission and authority of the United States government, with notes and an introduction by the artist', 'Pennell, Joseph', '2015-05-10', 6, 'https://www.gutenberg.org/ebooks/48923', 'en', 2071), +(32668, 'None Other Gods', 'Benson, Robert Hugh', '2006-01-29', 25, 'https://www.gutenberg.org/ebooks/17627', 'en', 1397), +(32669, 'La strega, ovvero, degli inganni de\' demoni: dialogo', 'Pico della Mirandola, Giovanni Francesco', '2010-01-03', 52, 'https://www.gutenberg.org/ebooks/30839', 'it', 5685), +(32670, 'Studies of the Greek Poets (Vol 1 of 2)', 'Symonds, John Addington', '2014-10-20', 19, 'https://www.gutenberg.org/ebooks/47157', 'en', 7299), +(32671, 'Embers, Volume 3.', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6270', 'en', 28), +(32672, 'The Constitutional Development of Japan 1853-1881\r\nJohns Hopkins University Studies in Historical and Political Science, Ninth Series', 'Iyenaga, T. (Toyokichi)', '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12355', 'en', 12647), +(32673, 'Behind the Footlights', 'Alec-Tweedie, Mrs. (Ethel)', '2017-09-06', 8, 'https://www.gutenberg.org/ebooks/55492', 'en', 12648), +(32674, 'Dave Porter and His Rivals; or, The Chums and Foes of Oak Hall', 'Stratemeyer, Edward', '2008-07-31', 23, 'https://www.gutenberg.org/ebooks/26160', 'en', 1877), +(32675, 'Foul Play', 'Boucicault, Dion', '2003-02-01', 36, 'https://www.gutenberg.org/ebooks/3702', 'en', 194), +(32676, 'Goya', 'Crastre, François', '2013-03-28', 20, 'https://www.gutenberg.org/ebooks/42425', 'en', 12649), +(32677, 'Short Cuts in Figures\r\nto which is added many useful tables and formulas written so that he who runs may read', 'Collins, A. Frederick (Archie Frederick)', '2009-09-06', 35, 'https://www.gutenberg.org/ebooks/29914', 'en', 12650), +(32678, 'Sylph Etherege\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9238', 'en', 3175), +(32679, 'Zur Geschichte der Theorie der Elliptischen Transcendenten\nIn den Jahren 1826-29', 'Koenigsberger, Leo', '2009-09-16', 9, 'https://www.gutenberg.org/ebooks/30005', 'de', 2584), +(32680, 'Daughters of Destiny', 'Baum, L. Frank (Lyman Frank)', '2017-04-12', 27, 'https://www.gutenberg.org/ebooks/54540', 'en', 48), +(32681, 'A General History and Collection of Voyages and Travels — Volume 07', 'Kerr, Robert', '2004-08-25', 37, 'https://www.gutenberg.org/ebooks/13287', 'en', 885), +(32682, 'A Man and His Money', 'Isham, Frederic Stewart', '2003-12-01', 16, 'https://www.gutenberg.org/ebooks/10402', 'en', 4714), +(32683, 'Bromide Printing and Enlarging\r\nA Practical Guide to the Making of Bromide Prints by Contact and Bromide Enlarging by Daylight and Artificial Light, With the Toning of Bromide Prints and Enlargements', 'Tennant, John A.', '2008-02-18', 35, 'https://www.gutenberg.org/ebooks/24637', 'en', 7596), +(32684, '\'Twixt Land & Sea: Tales', 'Conrad, Joseph', '1997-09-01', 48, 'https://www.gutenberg.org/ebooks/1055', 'en', 8537), +(32685, 'Highway Pirates; or, The Secret Place at Coverthorne', 'Avery, Harold', '2010-09-09', 21, 'https://www.gutenberg.org/ebooks/33680', 'en', 1655), +(32686, 'Aspects of Modern Opera: Estimates and Inquiries', 'Gilman, Lawrence', '2011-12-10', 20, 'https://www.gutenberg.org/ebooks/38268', 'en', 4183), +(32687, 'The Secret of the Silver Car\nFurther Adventures of Anthony Trent, Master Criminal', 'Martyn, Wyndham', '2012-07-30', 20, 'https://www.gutenberg.org/ebooks/40372', 'en', 177), +(32688, 'To Lhassa at Last', 'Millington, Powell', '2010-06-09', 18, 'https://www.gutenberg.org/ebooks/32752', 'en', 12651), +(32689, 'San Francisco Relief Survey; the organization and methods of relief used after the earthquake and fire of April 18, 1906', NULL, '2017-12-21', 15, 'https://www.gutenberg.org/ebooks/56217', 'en', 12652), +(32690, 'Down the Yellowstone', 'Freeman, Lewis R. (Lewis Ransome)', '2011-08-27', 22, 'https://www.gutenberg.org/ebooks/37220', 'en', 12653), +(32691, 'The Man in Lower Ten', 'Rinehart, Mary Roberts', '1999-08-01', 106, 'https://www.gutenberg.org/ebooks/1869', 'en', 2534), +(32692, 'Kabumpo in Oz', 'Thompson, Ruth Plumly', '2016-12-18', 64, 'https://www.gutenberg.org/ebooks/53765', 'en', 174), +(32693, 'Ten American Girls from History', 'Sweetser, Kate Dickinson', '2007-01-06', 29, 'https://www.gutenberg.org/ebooks/20297', 'en', 414), +(32694, 'A Wounded Name', 'King, Charles', '2007-05-07', 20, 'https://www.gutenberg.org/ebooks/21345', 'en', 12654), +(32695, 'The Child\'s World: Third Reader', 'Browne, Hetty Sibyl', '2005-02-25', 73, 'https://www.gutenberg.org/ebooks/15170', 'en', 294), +(32696, 'Almansor: Eine Tragödie', 'Heine, Heinrich', '2014-05-07', 33, 'https://www.gutenberg.org/ebooks/45600', 'de', 1298), +(32697, 'The Story of the Soil; from the Basis of Absolute Science and Real Life', 'Hopkins, Cyril G. (Cyril George)', '2003-10-01', 37, 'https://www.gutenberg.org/ebooks/4527', 'en', 3309), +(32698, 'Kai Lung\'s Golden Hours', 'Bramah, Ernest', '1998-04-01', 95, 'https://www.gutenberg.org/ebooks/1267', 'en', 580), +(32699, 'Audubon the Naturalist: A History of His Life and Time. Vol. 1 (of 2)', 'Herrick, Francis Hobart', '2019-02-28', 7, 'https://www.gutenberg.org/ebooks/58983', 'en', 12556), +(32700, 'On the Face of the Waters: A Tale of the Mutiny', 'Steel, Flora Annie Webster', '2012-07-04', 19, 'https://www.gutenberg.org/ebooks/40140', 'en', 98), +(32701, 'The Continental Monthly , Vol. 2 No. 5, November 1862\nDevoted to Literature and National Policy', 'Various', '2007-03-25', 6, 'https://www.gutenberg.org/ebooks/20899', 'en', 162), +(32702, 'Coming to the King', 'Havergal, Frances Ridley', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/10630', 'en', 6957), +(32703, 'Poems: New and Old', 'Newbolt, Henry John, Sir', '2008-01-22', 11, 'https://www.gutenberg.org/ebooks/24405', 'en', 54), +(32704, 'Enyim, tied, övé (1. rész)\r\nRegény', 'Jókai, Mór', '2017-11-22', 4, 'https://www.gutenberg.org/ebooks/56025', 'hu', 234), +(32705, 'Whatsoever a Man Soweth', 'Le Queux, William', '2012-10-17', 10, 'https://www.gutenberg.org/ebooks/41092', 'en', 109), +(32706, 'Gerald Fitzgerald, the Chevalier: A Novel', 'Lever, Charles James', '2010-05-27', 5, 'https://www.gutenberg.org/ebooks/32560', 'en', 323), +(32707, 'The Chaldean Magician\nAn Adventure in Rome in the Reign of the Emperor Diocletian', 'Eckstein, Ernst', '2019-07-04', 181, 'https://www.gutenberg.org/ebooks/59851', 'en', 12655), +(32708, 'Guide to West Point, and the U.S. Military Academy', 'Boynton, Edward C. (Edward Carlisle)', '2012-03-18', 15, 'https://www.gutenberg.org/ebooks/39188', 'en', 12656), +(32709, 'The Life of Napoleon I (Volume 2 of 2)', 'Rose, J. Holland (John Holland)', '2004-12-07', 12, 'https://www.gutenberg.org/ebooks/14290', 'en', 8569), +(32710, 'The Gold-Headed Cane', 'Macmichael, William', '2016-11-19', 14, 'https://www.gutenberg.org/ebooks/53557', 'en', 12657), +(32711, 'The Evolution of Photography\r\nWith a Chronological Record of Discoveries, Inventions, Etc., Contributions to Photographic Literature, and Personal Reminescences Extending over Forty Years', 'Werge, John, active 1854-1890', '2012-02-13', 54, 'https://www.gutenberg.org/ebooks/38866', 'en', 12658), +(32712, 'The Recruiting Officer', 'Farquhar, George', '2011-08-08', 37, 'https://www.gutenberg.org/ebooks/37012', 'en', 12659), +(32713, 'Monica\'s Choice', 'Berry, Flora E.', '2014-04-18', 29, 'https://www.gutenberg.org/ebooks/45432', 'en', 1679), +(32714, 'The Babes in the Basket; or, Daph and Her Charge', 'Baker, Sarah S. (Sarah Schoonmaker)', '2018-03-24', 20, 'https://www.gutenberg.org/ebooks/56819', 'en', 2220), +(32715, 'An African Millionaire: Episodes in the Life of the Illustrious Colonel Clay', 'Allen, Grant', '2003-12-01', 127, 'https://www.gutenberg.org/ebooks/4715', 'en', 128); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(32716, 'The Tiger', 'Blake, William', '2007-04-27', 16, 'https://www.gutenberg.org/ebooks/21177', 'en', 8), +(32717, 'Commodore Paul Jones', 'Brady, Cyrus Townsend', '2016-07-03', 10, 'https://www.gutenberg.org/ebooks/52485', 'en', 1848), +(32718, 'Notes of a Twenty-Five Years\' Service in the Hudson\'s Bay Territory. Volume I.', 'McLean, John', '2005-03-12', 15, 'https://www.gutenberg.org/ebooks/15342', 'en', 9661), +(32719, 'Passamaquoddy Texts', NULL, '2016-02-13', 31, 'https://www.gutenberg.org/ebooks/51200', 'en', 12660), +(32720, 'The Religion of the Indians of California', 'Kroeber, A. L. (Alfred Louis)', '2011-04-01', 23, 'https://www.gutenberg.org/ebooks/35745', 'en', 12661), +(32721, 'The Biography of a Rabbit', 'Benson, Roy', '2004-12-01', 57, 'https://www.gutenberg.org/ebooks/7190', 'en', 12662), +(32722, 'A Discovrse of Fire and Salt\r\nDiscovering Many Secret Mysteries as well Philosophicall, as Theologicall', 'Vigenère, Blaise de', '2014-11-16', 24, 'https://www.gutenberg.org/ebooks/47365', 'en', 11914), +(32723, 'Dave Ranney\r\nOr, Thirty Years on the Bowery; An Autobiography', 'Ranney, Dave', '2004-10-29', 12, 'https://www.gutenberg.org/ebooks/13889', 'en', 12663), +(32724, 'The Lost Wagon', 'Kjelgaard, Jim', '2010-12-19', 50, 'https://www.gutenberg.org/ebooks/34697', 'en', 12664), +(32725, 'The Diary and Letters of Madame D\'Arblay — Volume 2', 'Burney, Fanny', '2004-07-01', 17, 'https://www.gutenberg.org/ebooks/6042', 'en', 7204), +(32726, 'Orpheu Nº1\r\nRevista Trimestral de Literatura', 'Carvalho, Ronald de', '2007-11-25', 127, 'https://www.gutenberg.org/ebooks/23620', 'pt', 12665), +(32727, 'The Pawns Count', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-02-01', 28, 'https://www.gutenberg.org/ebooks/9836', 'en', 128), +(32728, 'Money Island', 'Howell, Andrew Jackson', '2005-12-30', 16, 'https://www.gutenberg.org/ebooks/17415', 'en', 12666), +(32729, 'Love-at-Arms\r\nBeing a Narrative Excerpted from the Chronicles of Urbino During The Dominion of the High and Mighty Messer Guidobaldo Da Montefeltro', 'Sabatini, Rafael', '2002-11-01', 72, 'https://www.gutenberg.org/ebooks/3530', 'en', 5714), +(32730, 'Die Liebesbriefe der Marquise', 'Braun, Lily', '2013-04-29', 8, 'https://www.gutenberg.org/ebooks/42617', 'de', 61), +(32731, 'Enkens Søn', 'Bang, Herman', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12167', 'da', 6055), +(32732, 'Souvenirs et correspondance tirés des papiers de Mme Récamier (2/2)', 'Récamier, Jeanne Françoise Julie Adélaïde Bernard', '2008-08-18', 58, 'https://www.gutenberg.org/ebooks/26352', 'fr', 12667), +(32733, 'The Praise of a Godly Woman', 'Gamon, Hannibal', '2008-11-16', 8, 'https://www.gutenberg.org/ebooks/27280', 'en', 12668), +(32734, 'A Princess of Mars', 'Burroughs, Edgar Rice', '1993-04-01', 1777, 'https://www.gutenberg.org/ebooks/62', 'en', 3208), +(32735, 'The Turning of the Tide; Or, Radcliffe Rich and His Patients', 'Kellogg, Elijah', '2017-05-23', 11, 'https://www.gutenberg.org/ebooks/54772', 'en', 1259), +(32736, 'Vanity Fair', 'Thackeray, William Makepeace', '1996-07-01', 1079, 'https://www.gutenberg.org/ebooks/599', 'en', 154), +(32737, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Dritter Band', 'Macaulay, Thomas Babington Macaulay, Baron', '2009-10-12', 16, 'https://www.gutenberg.org/ebooks/30237', 'de', 641), +(32738, 'The Boy Scout Camera Club; Or, the Confession of a Photograph', 'Ralphson, G. Harvey (George Harvey)', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7356', 'en', 12669), +(32739, 'Two Years Among the Savages of New Guinea.\nWith Introductory Notes on North Queensland.', 'Pitcairn, W. D.', '2011-03-15', 9, 'https://www.gutenberg.org/ebooks/35583', 'en', 12670), +(32740, 'Rakkautta: Novelleja', 'Jotuni, Maria', '2014-06-22', 41, 'https://www.gutenberg.org/ebooks/46071', 'fi', 665), +(32741, 'Het Leven der Dieren: Deel 1, Hoofdstuk 01: De Apen', 'Brehm, Alfred Edmund', '2005-09-15', 27, 'https://www.gutenberg.org/ebooks/16701', 'nl', 2360), +(32742, 'A Biographical Sketch of the Life and Character of Joseph Charless\nIn a Series of Letters to his Grandchildren', 'Charless, Charlotte Taylor Blow', '2007-09-06', 12, 'https://www.gutenberg.org/ebooks/22534', 'en', 12671), +(32743, 'The Mentor: Famous English Poets, Vol. 1, Num. 44, Serial No. 44', 'Mabie, Hamilton Wright', '2015-08-28', 9, 'https://www.gutenberg.org/ebooks/49805', 'en', 6521), +(32744, 'Kaksi partiopoikaa', 'Seton, Ernest Thompson', '2015-10-02', 10, 'https://www.gutenberg.org/ebooks/50114', 'fi', 1120), +(32745, 'The World for Sale, Complete', 'Parker, Gilbert', '2004-11-19', 7, 'https://www.gutenberg.org/ebooks/6284', 'en', 551), +(32746, 'Paris', 'Zola, Émile', '2010-11-26', 24, 'https://www.gutenberg.org/ebooks/34451', 'fr', 298), +(32747, 'Die selige Christina von Stommeln', 'Steffens, Arnold', '2017-08-31', 10, 'https://www.gutenberg.org/ebooks/55466', 'de', 12672), +(32748, 'Thury Zoltán összes művei (1. kötet)\r\nKetty és egyéb elbeszélések', 'Thury, Zoltán', '2006-11-10', 7, 'https://www.gutenberg.org/ebooks/19749', 'hu', 1532), +(32749, 'The Grain Ship', 'Robertson, Morgan', '2008-08-05', 20, 'https://www.gutenberg.org/ebooks/26194', 'en', 179), +(32750, 'The Observers', 'Vandenburg, G. L.', '2010-01-30', 13, 'https://www.gutenberg.org/ebooks/31123', 'en', 26), +(32751, 'Golden Dreams and Leaden Realities', 'Payson, George', '2015-05-24', 11, 'https://www.gutenberg.org/ebooks/49039', 'en', 12673), +(32752, 'The Origin of Paul\'s Religion', 'Machen, J. Gresham (John Gresham)', '2013-08-18', 77, 'https://www.gutenberg.org/ebooks/43503', 'en', 8733), +(32753, 'The Sargasso of Space', 'Hamilton, Edmond', '2009-05-16', 99, 'https://www.gutenberg.org/ebooks/28832', 'en', 26), +(32754, 'Hot Planet', 'Clement, Hal', '2016-01-14', 89, 'https://www.gutenberg.org/ebooks/50928', 'en', 8606), +(32755, 'Le Projet Gutenberg (1971-2008)', 'Lebert, Marie', '2008-10-26', 10, 'https://www.gutenberg.org/ebooks/27046', 'fr', 340), +(32756, 'Out of the Ashes', 'Grant, Ethel Watts Mumford', '2004-08-25', 10, 'https://www.gutenberg.org/ebooks/13273', 'en', 61), +(32757, 'Sexual Neuroses', 'Kent, J. T. (James Tyler)', '2018-06-15', 38, 'https://www.gutenberg.org/ebooks/57331', 'en', 12674), +(32758, 'Sonnets from the Patagonian', 'Evans, Donald', '2010-09-08', 6, 'https://www.gutenberg.org/ebooks/33674', 'en', 6193), +(32759, 'Wandering Ghosts', 'Crawford, F. Marion (Francis Marion)', '2012-08-01', 141, 'https://www.gutenberg.org/ebooks/40386', 'en', 531), +(32760, 'Notes and Queries, Vol. V, Number 130, April 24, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-11-01', 9, 'https://www.gutenberg.org/ebooks/41254', 'en', 105), +(32761, 'Freedom in Science and Teaching.\nfrom the German of Ernst Haeckel', 'Haeckel, Ernst', '2008-06-06', 33, 'https://www.gutenberg.org/ebooks/25711', 'en', 12675), +(32762, 'The Atlantic Monthly, Volume 08, No. 50, December, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11524', 'en', 1227), +(32763, 'Old Rose and Silver', 'Reed, Myrtle', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5401', 'en', 109), +(32764, 'An Old New Zealander; or, Te Rauparaha, the Napoleon of the South.', 'Buick, Thomas Lindsay', '2014-01-22', 12, 'https://www.gutenberg.org/ebooks/44726', 'en', 12676), +(32765, 'Philosophical Works, v. 1 (of 4)\r\nIncluding All the Essays, and Exhibiting the More Important Alterations and Corrections in the Successive Editions Published by the Author', 'Hume, David', '2016-12-22', 36, 'https://www.gutenberg.org/ebooks/53791', 'en', 12677), +(32766, 'The French Impressionists (1860-1900)', 'Mauclair, Camille', '2004-11-15', 73, 'https://www.gutenberg.org/ebooks/14056', 'en', 12678), +(32767, 'Montessori children', 'Bailey, Carolyn Sherwin', '2018-11-29', 37, 'https://www.gutenberg.org/ebooks/58379', 'en', 4672), +(32768, 'Boswell\'s Correspondence with the Honourable Andrew Erskine, and His Journal of a Tour to Corsica', 'Boswell, James', '2007-01-04', 28, 'https://www.gutenberg.org/ebooks/20263', 'en', 7348), +(32769, 'The Philippine Islands, 1493-1898 — Volume 13 of 55\r\n1604-1605\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of The Catholic Missions, As Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-02-26', 51, 'https://www.gutenberg.org/ebooks/15184', 'en', 1334), +(32770, 'Das Heim und die Welt', 'Tagore, Rabindranath', '2016-07-25', 9, 'https://www.gutenberg.org/ebooks/52643', 'de', 1228), +(32771, 'Trial of the Officers and Crew of the Privateer Savannah, on the Charge of Piracy, in the United States Circuit Court for the Southern District of New York', 'Warburton, A. F. (Adolphus Frederick)', '2011-06-03', 17, 'https://www.gutenberg.org/ebooks/36306', 'en', 12679), +(32772, 'Lace Curtain Cleaning: A Successful Home Business', 'Leigh, Sarah Ann', '2010-08-16', 19, 'https://www.gutenberg.org/ebooks/33446', 'en', 12680), +(32773, 'The Confessions of Al Ghazzali', 'Ghazzali', '2019-02-27', 104, 'https://www.gutenberg.org/ebooks/58977', 'en', 12681), +(32774, 'Sesame and Lilies', 'Ruskin, John', '1998-04-01', 130, 'https://www.gutenberg.org/ebooks/1293', 'en', 3120), +(32775, 'Iphigeneia i Aulis', 'Euripides', '2018-05-06', 19, 'https://www.gutenberg.org/ebooks/57103', 'sv', 4626), +(32776, 'Old Junk', 'Tomlinson, H. M. (Henry Major)', '2008-05-19', 18, 'https://www.gutenberg.org/ebooks/25523', 'en', 7877), +(32777, 'The Balkans: A History of Bulgaria—Serbia—Greece—Rumania—Turkey', 'Toynbee, Arnold', '2004-03-01', 129, 'https://www.gutenberg.org/ebooks/11716', 'en', 10592), +(32778, 'Spiritualism and the New Psychology\r\nAn Explanation of Spiritualist Phenomena and Beliefs in Terms of Modern Knowledge', 'Culpin, Millais', '2011-07-30', 20, 'https://www.gutenberg.org/ebooks/36908', 'en', 12682), +(32779, 'Essai sur l\'Histoire Religieuse des Nations Slaves\n(traduit de l\'anglais)', 'Krasinski, Valerian, Count', '2012-10-14', 7, 'https://www.gutenberg.org/ebooks/41066', 'fr', 12683), +(32780, 'Stalemate', 'Wells, Basil', '2010-05-30', 24, 'https://www.gutenberg.org/ebooks/32594', 'en', 179), +(32781, 'Encyclopaedia Britannica, 11th Edition, \"David, St\" to \"Demidov\"\r\nVolume 7, Slice 10', 'Various', '2012-02-15', 72, 'https://www.gutenberg.org/ebooks/38892', 'en', 1081), +(32782, 'The Practice and Science of Drawing', 'Speed, Harold', '2004-12-06', 1190, 'https://www.gutenberg.org/ebooks/14264', 'en', 4259), +(32783, 'The Works of Charles and Mary Lamb — Volume 1\r\nMiscellaneous Prose', 'Lamb, Charles', '2012-10-08', 53, 'https://www.gutenberg.org/ebooks/40988', 'en', 1201), +(32784, 'Märchen der Gebrüder Grimm 2', 'Grimm, Wilhelm', '2006-12-09', 43, 'https://www.gutenberg.org/ebooks/20051', 'de', 900), +(32785, 'The Martial Adventures of Henry and Me', 'White, William Allen', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/5633', 'en', 449), +(32786, 'Last of the Incas: A Romance of the Pampas', 'Aimard, Gustave', '2013-12-26', 18, 'https://www.gutenberg.org/ebooks/44514', 'en', 12684), +(32787, 'Bat Wing Bowles', 'Coolidge, Dane', '2011-05-18', 19, 'https://www.gutenberg.org/ebooks/36134', 'en', 315), +(32788, 'Белые ночи', 'Dostoyevsky, Fyodor', '2007-04-09', 62, 'https://www.gutenberg.org/ebooks/21183', 'ru', 85), +(32789, 'Tytöistä parhain', 'Alcott, Louisa May', '2016-07-01', 19, 'https://www.gutenberg.org/ebooks/52471', 'fi', 539), +(32790, 'The Eureka Springs Story', 'Rayburn, Otto Ernest', '2019-03-19', 10, 'https://www.gutenberg.org/ebooks/59099', 'en', 12685), +(32791, 'Ashton-Kirk, Secret Agent', 'McIntyre, John Thomas', '2012-06-07', 25, 'https://www.gutenberg.org/ebooks/39940', 'en', 128), +(32792, 'Korpelan Tapani: Kuvaus kansan elämästä', 'Meriläinen, Heikki', '2005-08-15', 35, 'https://www.gutenberg.org/ebooks/16533', 'fi', 61), +(32793, 'The System of Nature, or, the Laws of the Moral and Physical World. Volume 2', 'Holbach, Paul Henri Thiry, baron d\'', '2005-09-01', 58, 'https://www.gutenberg.org/ebooks/8910', 'en', 5449), +(32794, 'Two Days\' Solitary Imprisonment\n1898', 'Bellamy, Edward', '2007-09-21', 27, 'https://www.gutenberg.org/ebooks/22706', 'en', 179), +(32795, 'Gitanjali', 'Tagore, Rabindranath', '2004-12-01', 377, 'https://www.gutenberg.org/ebooks/7164', 'en', 7901), +(32796, 'Divine Authority; Or, the Question: Was Joseph Smith Sent of God?', 'Pratt, Orson', '2014-07-10', 22, 'https://www.gutenberg.org/ebooks/46243', 'en', 7710), +(32797, 'John Brown: Confessions of a New Army Cadet', 'Campbell, R. W.', '2014-11-18', 20, 'https://www.gutenberg.org/ebooks/47391', 'en', 579), +(32798, 'Commodore Junk', 'Fenn, George Manville', '2010-12-15', 12, 'https://www.gutenberg.org/ebooks/34663', 'en', 61), +(32799, 'Haaveilija', 'Ervast, Pekka', '2015-10-27', 4, 'https://www.gutenberg.org/ebooks/50326', 'fi', 456), +(32800, 'Vocations Explained: Matrimony, Virginity, the Religious State and the Priesthood', 'Downing, Dennis J.', '2010-02-17', 14, 'https://www.gutenberg.org/ebooks/31311', 'en', 12686), +(32801, 'The Napoleon of the People', 'Balzac, Honoré de', '2005-10-16', 26, 'https://www.gutenberg.org/ebooks/7958', 'en', 4854), +(32802, 'The Deep Sea\'s Toll', 'Connolly, James B. (James Brendan)', '2017-10-01', 18, 'https://www.gutenberg.org/ebooks/55654', 'en', 6077), +(32803, 'The Gentleman from Everywhere', 'Foss, James Henry', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/12193', 'en', 6776), +(32804, 'Manures and the principles of manuring', 'Aikman, Charles Morton', '2008-11-16', 16, 'https://www.gutenberg.org/ebooks/27274', 'en', 12687), +(32805, 'The Monster Men', 'Burroughs, Edgar Rice', '1994-01-01', 291, 'https://www.gutenberg.org/ebooks/96', 'en', 26), +(32806, 'Vildanden', 'Ibsen, Henrik', '2004-07-28', 56, 'https://www.gutenberg.org/ebooks/13041', 'no', 3671), +(32807, 'Ihminen ja yli-ihminen: Komedia ja filosofia', 'Shaw, Bernard', '2017-05-26', 9, 'https://www.gutenberg.org/ebooks/54786', 'fi', 1088), +(32808, 'Bud: A Novel', 'Munro, Neil', '2013-09-15', 15, 'https://www.gutenberg.org/ebooks/43731', 'en', 12688), +(32809, 'The House of Pride, and Other Tales of Hawaii', 'London, Jack', '2000-12-01', 54, 'https://www.gutenberg.org/ebooks/2416', 'en', 12689), +(32810, '黃繡球', NULL, '2008-04-23', 11, 'https://www.gutenberg.org/ebooks/25147', 'zh', NULL), +(32811, 'The Nine-Tenths', 'Oppenheim, James', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11372', 'en', 2815), +(32812, 'The Yellow House; Master of Men', 'Oppenheim, E. Phillips (Edward Phillips)', '2012-11-18', 49, 'https://www.gutenberg.org/ebooks/41402', 'en', 95), +(32813, 'The Little Washingtons\' Travels', 'Roy, Lillian Elizabeth', '2012-04-24', 13, 'https://www.gutenberg.org/ebooks/39518', 'en', 9291), +(32814, 'Noémie Hollemechette: Journal d\'une petite réfugiée belge', 'Du Genestoux, Magdeleine', '2016-08-17', 12, 'https://www.gutenberg.org/ebooks/52829', 'fr', 579), +(32815, 'Villani\'s Chronicle\nBeing Selections from the First Nine Books of the Croniche Fiorentine of Giovanni Villani', 'Villani, Giovanni', '2010-07-08', 43, 'https://www.gutenberg.org/ebooks/33022', 'en', 4693), +(32816, 'Œuvres complètes de Guy de Maupassant - volume 14', 'Maupassant, Guy de', '2018-07-22', 30, 'https://www.gutenberg.org/ebooks/57567', 'fr', 642), +(32817, 'Punch, or the London Charivari, Vol. 158, 1920-05-12', 'Various', '2007-12-31', 8, 'https://www.gutenberg.org/ebooks/24095', 'en', 134), +(32818, 'As a Matter of Course', 'Call, Annie Payson', '2003-08-01', 25, 'https://www.gutenberg.org/ebooks/4385', 'en', 12690), +(32819, 'A Noble Name; or, Dönninghausen', 'Glümer, Claire von', '2011-07-02', 5, 'https://www.gutenberg.org/ebooks/36550', 'en', 803), +(32820, 'Der ewige Buddho: Ein Tempelschriftwerk in vier Unterweisungen', 'Ziegler, Leopold', '2016-05-07', 7, 'https://www.gutenberg.org/ebooks/52015', 'de', 639), +(32821, 'Theory of Silk Weaving\r\nA Treatise on the Construction and Application of Weaves, and the Decomposition and Calculation of Broad and Narrow, Plain, Novelty and Jacquard Silk Fabrics', 'Wolfensberger, Arnold', '2005-01-05', 24, 'https://www.gutenberg.org/ebooks/14600', 'en', 12691), +(32822, 'The World in Chains: Some Aspects of War and Trade', 'Mavrogordato, John', '2007-01-24', 25, 'https://www.gutenberg.org/ebooks/20435', 'en', 12692), +(32823, 'The Broad Highway', 'Farnol, Jeffery', '2004-03-01', 64, 'https://www.gutenberg.org/ebooks/5257', 'en', 12693), +(32824, 'The Postmaster', 'Lincoln, Joseph Crosby', '2011-09-19', 12, 'https://www.gutenberg.org/ebooks/37482', 'en', 48), +(32825, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 13 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-11-12', 8, 'https://www.gutenberg.org/ebooks/44170', 'it', 6107), +(32826, 'The Joy of Living (Es lebe das Leben): A Play in Five Acts', 'Sudermann, Hermann', '2010-11-04', 10, 'https://www.gutenberg.org/ebooks/34207', 'en', 493), +(32827, 'Self Help; with Illustrations of Conduct and Perseverance', 'Smiles, Samuel', '1997-06-01', 318, 'https://www.gutenberg.org/ebooks/935', 'en', 740), +(32828, 'Καλαμιές στον άνεμο', 'Deledda, Grazia', '2009-05-01', 68, 'https://www.gutenberg.org/ebooks/28658', 'el', 12694), +(32829, 'The Story of Beowulf, Translated from Anglo-Saxon into Modern English Prose', NULL, '2015-12-21', 410, 'https://www.gutenberg.org/ebooks/50742', 'en', 12695), +(32830, 'Juliana Horatia Ewing And Her Books', 'Eden, Horatia K. F.', '2005-11-17', 23, 'https://www.gutenberg.org/ebooks/17085', 'en', 12696), +(32831, 'Ibong Adarna\r\nCorrido at Buhay na Pinagdaanan nang tatlong Principeng Magcacapatid na Anac nang Haring Fernando at nang Reina Valeriana sa Cahariang Berbania', 'Anonymous', '2005-07-01', 111, 'https://www.gutenberg.org/ebooks/16157', 'tl', 5098), +(32832, 'Elektitaj fabloj de J. de La Fontaine', 'La Fontaine, Jean de', '2016-04-07', 24, 'https://www.gutenberg.org/ebooks/51690', 'eo', 12697), +(32833, 'Appreciations and Criticisms of the Works of Charles Dickens', 'Chesterton, G. K. (Gilbert Keith)', '2007-08-20', 72, 'https://www.gutenberg.org/ebooks/22362', 'en', 12698), +(32834, 'Heidis Lehr- und Wanderjahre', 'Spyri, Johanna', '2005-02-01', 216, 'https://www.gutenberg.org/ebooks/7500', 'de', 10623), +(32835, 'The Ontario Readers: The High School Reader, 1886', 'Ontario. Department of Education', '2006-11-27', 36, 'https://www.gutenberg.org/ebooks/19923', 'en', 12699), +(32836, 'Œuvres Complètes de Frédéric Bastiat, tome 6\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2014-08-19', 15, 'https://www.gutenberg.org/ebooks/46627', 'fr', 1745), +(32837, 'Expériences et observations sur l\'électricité faites à Philadelphie en Amérique', 'Franklin, Benjamin', '2008-12-25', 24, 'https://www.gutenberg.org/ebooks/27610', 'fr', 12700), +(32838, 'Wit Without Money; A Comedy\r\nThe Works of Francis Beaumont and John Fletcher', 'Fletcher, John', '2004-09-10', 36, 'https://www.gutenberg.org/ebooks/13425', 'en', 907), +(32839, 'Renascence, and Other Poems', 'Millay, Edna St. Vincent', '1994-02-01', 221, 'https://www.gutenberg.org/ebooks/109', 'en', 178), +(32840, 'Mr. Punch\'s Book of Sport\r\nThe Humour of Cricket, Football, Tennis, Polo, Croquet, Hockey, Racing, &c', NULL, '2013-07-30', 29, 'https://www.gutenberg.org/ebooks/43355', 'en', 12701), +(32841, 'Michael', 'Benson, E. F. (Edward Frederic)', '2006-05-14', 30, 'https://www.gutenberg.org/ebooks/2072', 'en', 98), +(32842, 'Si Klegg, Book 5\r\nThe Deacon\'s Adventures at Chattanooga in Caring for the Boys', 'McElroy, John', '2010-03-25', 17, 'https://www.gutenberg.org/ebooks/31775', 'en', 403), +(32843, 'Pirke Avot: The Sayings of the Jewish Fathers', NULL, '2005-07-01', 91, 'https://www.gutenberg.org/ebooks/8548', 'en', 12702), +(32844, 'The Girl from the Big Horn Country', 'Chase, Mary Ellen', '2013-03-09', 12, 'https://www.gutenberg.org/ebooks/42287', 'en', 12703), +(32845, 'The Day After Death; Or, Our Future Life According to Science (New Edition)', 'Figuier, Louis', '2017-07-30', 22, 'https://www.gutenberg.org/ebooks/55230', 'en', 5192), +(32846, 'The Consolation of Philosophy', 'Boethius', '2007-10-01', 17, 'https://www.gutenberg.org/ebooks/23082', 'en', 6079), +(32847, 'Custis-Lee Mansion: The Robert E. Lee Memorial, Virginia', 'Nelligan, Murray H.', '2015-11-29', 7, 'https://www.gutenberg.org/ebooks/50570', 'en', 12704), +(32848, 'The Hillman', 'Oppenheim, E. Phillips (Edward Phillips)', '2010-10-05', 28, 'https://www.gutenberg.org/ebooks/34035', 'en', 128), +(32849, 'Paul Clifford — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7732', 'en', 356), +(32850, 'Makers of British Botany; a collection of biographies by living botanists', NULL, '2014-07-26', 16, 'https://www.gutenberg.org/ebooks/46415', 'en', 12705), +(32851, 'Liika viisas: Viisaudenkirja eli kertomus Sakari Kolistajasta', 'Lassila, Maiju', '2005-07-27', 10, 'https://www.gutenberg.org/ebooks/16365', 'fi', 175), +(32852, 'The Theories of Darwin and Their Relation to Philosophy, Religion, and Morality', 'Schmid, Rudolf', '2007-07-26', 19, 'https://www.gutenberg.org/ebooks/22150', 'en', 1315), +(32853, 'The Influence of the Stars: A book of old world lore', 'Baughan, Rosa', '2013-06-07', 69, 'https://www.gutenberg.org/ebooks/42889', 'en', 12706), +(32854, 'How to Know the Ferns\nA Guide to the Names, Haunts and Habitats of Our Common Ferns', 'Parsons, Frances Theodora', '2013-07-09', 27, 'https://www.gutenberg.org/ebooks/43167', 'en', 12707), +(32855, 'A History of Science — Volume 5', 'Williams, Edward Huntington', '2009-11-18', 42, 'https://www.gutenberg.org/ebooks/30495', 'en', 186), +(32856, 'Much Ado about Nothing', 'Shakespeare, William', '2000-07-01', 157, 'https://www.gutenberg.org/ebooks/2240', 'en', 907), +(32857, 'Through the Malay Archipelago', 'Richings, Emily', '2008-12-05', 19, 'https://www.gutenberg.org/ebooks/27422', 'en', 11321), +(32858, 'A Compilation of the Messages and Papers of the Presidents. Volume 9, part 1: Benjamin Harrison', 'Harrison, Benjamin', '2004-10-05', 19, 'https://www.gutenberg.org/ebooks/13617', 'en', 447), +(32859, 'Uusia kertomuksia', 'Thoresen, Magdalene', '2011-01-01', 6, 'https://www.gutenberg.org/ebooks/34809', 'fi', 61), +(32860, 'NetWorld! What People Are Really Doing on the Internet and What It Means to You', 'Rothman, David H.', '2017-06-28', 18, 'https://www.gutenberg.org/ebooks/55002', 'en', 2599), +(32861, 'Youth', 'Asimov, Isaac', '2010-03-07', 730, 'https://www.gutenberg.org/ebooks/31547', 'en', 67), +(32862, 'Cambridge Neighbors (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 16, 'https://www.gutenberg.org/ebooks/3392', 'en', 131), +(32863, 'The Story of Geronimo', 'Kjelgaard, Jim', '2012-12-15', 21, 'https://www.gutenberg.org/ebooks/41630', 'en', 12708), +(32864, '諧鐸', 'Shen, Qifeng', '2008-05-07', 29, 'https://www.gutenberg.org/ebooks/25375', 'zh', 1003), +(32865, 'The Soil (La terre): A Realistic Novel', 'Zola, Émile', '2018-03-06', 22, 'https://www.gutenberg.org/ebooks/56687', 'en', 3173), +(32866, 'Rollo at Play; Or, Safe Amusements', 'Abbott, Jacob', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11140', 'en', 195), +(32867, 'Personal Memoirs of P. H. Sheridan, Volume 2, Part 6', 'Sheridan, Philip Henry', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/5859', 'en', 2723), +(32868, 'Punchinello, Volume 2, No. 30, October 22, 1870', 'Various', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10092', 'en', 372), +(32869, 'The Mysteries of Heron Dyke: A Novel of Incident. Volume 1 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-08-24', 9, 'https://www.gutenberg.org/ebooks/57755', 'en', 137), +(32870, 'The Frontier Boys in the Grand Canyon; Or, A Search for Treasure', 'Roosevelt, Wyn', '2010-07-20', 18, 'https://www.gutenberg.org/ebooks/33210', 'en', 1259), +(32871, 'Piece Goods Manual\r\nFabrics described; textile, knit goods, weaving terms, etc., explained; with notes on the classification of samples.', 'Blanco, A. E.', '2016-06-03', 28, 'https://www.gutenberg.org/ebooks/52227', 'en', 7970), +(32872, 'Oxford', 'Peel, Robert', '2014-04-01', 6, 'https://www.gutenberg.org/ebooks/45290', 'en', 3139), +(32873, 'The Reform of Education', 'Gentile, Giovanni', '2011-07-17', 28, 'https://www.gutenberg.org/ebooks/36762', 'en', 12709), +(32874, 'Civil Government for Common Schools\r\nPrepared as a Manual for Public Instruction in the State of New York', 'Northam, Henry C.', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/5065', 'en', 3542), +(32875, 'Classical Enigmas, Adapted to Every Month in the Year\r\nComposed from the English and Roman Histories, Heathen Mythology and Names of Famous Writers: Meant to Amuse Youths of All Ages, and at the Same Time Exert Their Memories, by Calling to Mind What They Have Read at Different Times', 'Ritson, Mrs. (Anne)', '2013-12-03', 19, 'https://www.gutenberg.org/ebooks/44342', 'en', 12710), +(32876, 'A Dream of the North Sea', 'Runciman, James', '2004-12-23', 21, 'https://www.gutenberg.org/ebooks/14432', 'en', 194), +(32877, 'Rembrandt', 'Israëls, Jozef', '2007-02-16', 35, 'https://www.gutenberg.org/ebooks/20607', 'en', 596), +(32878, 'In the grip of the Mullah: A tale of adventure in Somaliland', 'Brereton, F. S. (Frederick Sadleir)', '2013-06-04', 20, 'https://www.gutenberg.org/ebooks/42874', 'en', 12711), +(32879, 'The Spanish Jade', 'Hewlett, Maurice', '2009-07-29', 12, 'https://www.gutenberg.org/ebooks/29545', 'en', 1813), +(32880, 'What Necessity Knows', 'Dougall, L. (Lily)', '2005-07-30', 19, 'https://www.gutenberg.org/ebooks/16398', 'en', 61), +(32881, 'Myths of the Norsemen: From the Eddas and Sagas', 'Guerber, H. A. (Hélène Adeline)', '2009-04-04', 406, 'https://www.gutenberg.org/ebooks/28497', 'en', 6418), +(32882, 'An Account of the Sore Throat Attended With Ulcers\r\nA Disease Which Hath of Late Years Appeared in This City, and in Several Parts of the Nation', 'Fothergill, John', '2017-06-15', 8, 'https://www.gutenberg.org/ebooks/54911', 'en', 12712), +(32883, 'Punch, or the London Charivari, Volume 99, November 29, 1890', 'Various', '2004-06-25', 8, 'https://www.gutenberg.org/ebooks/12738', 'en', 134), +(32884, 'The Girl from Alsace\nA Romance of the Great War, Originally Published under the Title of Little Comrade', 'Stevenson, Burton Egbert', '2011-04-21', 34, 'https://www.gutenberg.org/ebooks/35926', 'en', 579), +(32885, 'Boy Scouts Mysterious Signal; Or, Perils of the Black Bear Patrol', 'Ralphson, G. Harvey (George Harvey)', '2007-10-12', 15, 'https://www.gutenberg.org/ebooks/22991', 'en', 2994), +(32886, 'Encyclopaedia Britannica, 11th Edition, \"Lefebvre, Tanneguy\" to \"Letronne, Jean Antoine\"\r\nVolume 16, Slice 4', 'Various', '2013-02-08', 27, 'https://www.gutenberg.org/ebooks/42048', 'en', 1081), +(32887, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 09', 'Dante Alighieri', '2004-08-07', 18, 'https://www.gutenberg.org/ebooks/8787', 'en', 365), +(32888, 'Stello', 'Vigny, Alfred de', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9655', 'fr', 61), +(32889, 'Holes, Incorporated', 'Reynolds, L. Major', '2009-11-13', 35, 'https://www.gutenberg.org/ebooks/30468', 'en', 26), +(32890, '明月台', 'Weng, Gui', '2007-12-13', 10, 'https://www.gutenberg.org/ebooks/23843', 'zh', 1003), +(32891, 'Germany before the war', 'Beyens, baron (Eugène-Napoléon)', '2015-03-24', 14, 'https://www.gutenberg.org/ebooks/48572', 'en', 8001), +(32892, 'The Growth of Thought as Affecting the Progress of Society', 'Withington, William', '2006-04-18', 16, 'https://www.gutenberg.org/ebooks/18202', 'en', 12713), +(32893, 'No Name', 'Collins, Wilkie', '2006-03-18', 129, 'https://www.gutenberg.org/ebooks/1438', 'en', 7171), +(32894, 'Magyar népmesék\nKépes kiadás', 'Erdélyi, János', '2012-01-18', 16, 'https://www.gutenberg.org/ebooks/38605', 'hu', 1422), +(32895, 'Narrative of an Expedition into Central Australia\r\nPerformed Under the Authority of Her Majesty\'s Government, During the Years 1844, 5, and 6, Together With A Notice of the Province of South Australia in 1847', 'Sturt, Charles', '2004-09-28', 25, 'https://www.gutenberg.org/ebooks/4976', 'en', 12714), +(32896, 'The Herapath Property', 'Fletcher, J. S. (Joseph Smith)', '2008-05-08', 75, 'https://www.gutenberg.org/ebooks/25388', 'en', 128), +(32897, 'Our Gift', 'Teachers of the School Street Universalist Sunday School. Boston', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/10853', 'en', 5428), +(32898, 'Lives of the English Poets : Waller, Milton, Cowley', 'Johnson, Samuel', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/5098', 'en', 7153), +(32899, 'Historical Record of the Eighteenth, or the Royal Irish Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1684, and of Its Subsequent Services to 1848.', 'Cannon, Richard', '2016-10-18', 4, 'https://www.gutenberg.org/ebooks/53308', 'en', 12715), +(32900, 'Harper\'s Young People, September 26, 1882\nAn Illustrated Weekly', 'Various', '2019-05-30', 12, 'https://www.gutenberg.org/ebooks/59632', 'en', 479), +(32901, 'The Dog Crusoe and his Master', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 35, 'https://www.gutenberg.org/ebooks/21728', 'en', 3242), +(32902, 'The World\'s Great Sermons, Volume 01: Basil to Calvin', NULL, '2004-04-01', 43, 'https://www.gutenberg.org/ebooks/11981', 'en', 3021), +(32903, 'Pyhän Birgitan vaellus', 'Heidenstam, Verner von', '2017-01-06', 6, 'https://www.gutenberg.org/ebooks/53906', 'fi', 12716), +(32904, 'The Woman\'s Part: A Record of Munitions Work', 'Yates, L. K.', '2011-12-29', 15, 'https://www.gutenberg.org/ebooks/38437', 'en', 4418), +(32905, '燕丹子', 'Anonymous', '2007-12-29', 18, 'https://www.gutenberg.org/ebooks/24068', 'zh', 4780), +(32906, 'Purcell Ode, and Other Poems', 'Bridges, Robert', '2018-01-27', 5, 'https://www.gutenberg.org/ebooks/56448', 'en', 532), +(32907, 'The Young Housekeeper\'s Friend\nRevised and Enlarged', 'Cornelius, Mrs. (Mary Hooker)', '2014-06-02', 21, 'https://www.gutenberg.org/ebooks/45863', 'en', 103), +(32908, 'The Eugenic Marriage, Volume 2 (of 4)\r\nA Personal Guide to the New Science of Better Living and Better Babies', 'Hague, W. Grant (William Grant)', '2008-03-16', 29, 'https://www.gutenberg.org/ebooks/24854', 'en', 1451), +(32909, 'In Homespun', 'Nesbit, E. (Edith)', '2003-08-01', 35, 'https://www.gutenberg.org/ebooks/4378', 'en', 409), +(32910, 'Tongues of Conscience', 'Hichens, Robert', '2008-07-06', 30, 'https://www.gutenberg.org/ebooks/25986', 'en', 797), +(32911, 'Harley Greenoak\'s Charge', 'Mitford, Bertram', '2010-06-20', 10, 'https://www.gutenberg.org/ebooks/32931', 'en', 1207), +(32912, 'The History of Christianity\r\nConsisting of the Life and Teachings of Jesus of Nazareth; the Adventures of Paul and the Apostles; and the Most Interesting Events in the Progress of Christianity, from the Earliest Period to the Present Time.', 'Abbott, John S. C. (John Stevens Cabot)', '2019-05-01', 115, 'https://www.gutenberg.org/ebooks/59400', 'en', 10446), +(32913, 'The Identification of the Writer of the Anonymous Letter to Lord Monteagle in 1605', 'Monteagle, William Parker, Baron', '2009-08-24', 15, 'https://www.gutenberg.org/ebooks/29777', 'en', 12717), +(32914, 'A Romance of Youth — Volume 4', 'Coppée, François', '2003-04-01', 22, 'https://www.gutenberg.org/ebooks/3961', 'en', 560), +(32915, 'Königliche Hoheit: Roman', 'Mann, Thomas', '2011-02-19', 81, 'https://www.gutenberg.org/ebooks/35328', 'de', 253), +(32916, 'Biography and Family Record of Lorenzo Snow\r\nOne of the Twelve Apostles of the Church of Jesus Christ of Latter-day Saints', 'Snow, Eliza R. (Eliza Roxey)', '2014-12-19', 21, 'https://www.gutenberg.org/ebooks/47708', 'en', 12718), +(32917, 'Over literatuur\nCritisch en didactisch, tweede bundel', 'Campen, M. H. Van', '2005-11-20', 9, 'https://www.gutenberg.org/ebooks/17078', 'nl', 12719), +(32918, 'An Outline of the Phonology and Morphology of Old Provençal', 'Grandgent, C. H. (Charles Hall)', '2015-08-13', 9, 'https://www.gutenberg.org/ebooks/49692', 'en', 12720), +(32919, 'Two Old Faiths\nEssays on the Religions of the Hindus and the Mohammedans', 'Mitchell, J. Murray (John Murray)', '2005-11-04', 54, 'https://www.gutenberg.org/ebooks/16996', 'en', 6243), +(32920, 'The Double Spy', 'Moore, Dan T.', '2010-03-26', 8, 'https://www.gutenberg.org/ebooks/31788', 'en', 67), +(32921, 'Tintta Jaakko: Kuvaelma kansan elämästä', 'Päivärinta, Pietari', '2006-03-20', 53, 'https://www.gutenberg.org/ebooks/18030', 'fi', 61), +(32922, 'The Atlantic Monthly, Volume 04, No. 26, December, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9467', 'en', 1227), +(32923, 'Ben Blair\nThe Story of a Plainsman', 'Lillibridge, Will', '2006-02-24', 39, 'https://www.gutenberg.org/ebooks/17844', 'en', 2418), +(32924, 'The Book of Old-Fashioned Flowers\nAnd Other Plants Which Thrive in the Open-Air of England', 'Roberts, Harry', '2015-04-18', 36, 'https://www.gutenberg.org/ebooks/48740', 'en', 12721), +(32925, 'The Fairy Godmother-in-law', 'Herford, Oliver', '2019-07-05', 245, 'https://www.gutenberg.org/ebooks/59858', 'en', 2495), +(32926, 'Dante\'s Louteringsberg\nin proza overgebracht', 'Dante Alighieri', '2012-03-17', 18, 'https://www.gutenberg.org/ebooks/39181', 'nl', 12722), +(32927, 'The Luck of Gerard Ridgeley', 'Mitford, Bertram', '2010-05-28', 24, 'https://www.gutenberg.org/ebooks/32569', 'en', 1615), +(32928, 'Dickory Dock', 'Meade, L. T.', '2007-06-26', 31, 'https://www.gutenberg.org/ebooks/21942', 'en', 1817), +(32929, 'A History of Art in Ancient Egypt, Vol. 2 (of 2)', 'Perrot, Georges', '2012-07-07', 27, 'https://www.gutenberg.org/ebooks/40149', 'en', 12723), +(32930, 'Bussy D\'Ambois and The Revenge of Bussy D\'Ambois', 'Chapman, George', '2007-03-24', 34, 'https://www.gutenberg.org/ebooks/20890', 'en', 5264), +(32931, 'The Coo-ee Reciter: Humorous, Pathetic, Dramatic, Dialect, Recitations & Readings', 'Various', '2011-11-18', 27, 'https://www.gutenberg.org/ebooks/38053', 'en', 1725), +(32932, 'Phrases for Public Speakers and Paragraphs for Study', NULL, '2004-01-01', 30, 'https://www.gutenberg.org/ebooks/10639', 'en', 3906), +(32933, 'The Open Question: A Tale of Two Temperaments', 'Robins, Elizabeth', '2011-10-23', 12, 'https://www.gutenberg.org/ebooks/37827', 'en', 61), +(32934, 'Ivar the Viking\r\nA romantic history based upon authentic facts of the third and fourth centuries', 'Du Chaillu, Paul B. (Paul Belloni)', '2018-03-22', 12, 'https://www.gutenberg.org/ebooks/56810', 'en', 98), +(32935, 'Socrate', 'Labriola, Antonio', '2019-03-15', 49, 'https://www.gutenberg.org/ebooks/59064', 'it', 4235), +(32936, 'Life in a Railway Factory', 'Williams, Alfred', '2012-10-08', 30, 'https://www.gutenberg.org/ebooks/40975', 'en', 12724), +(32937, 'Native Races and the War', 'Butler, Josephine Elizabeth Grey', '2004-12-08', 21, 'https://www.gutenberg.org/ebooks/14299', 'en', 2724), +(32938, 'Triple Spies', 'Snell, Roy J. (Roy Judson)', '2004-10-27', 27, 'https://www.gutenberg.org/ebooks/13880', 'en', 128), +(32939, 'The Riddle Of The Rocks\n1895', 'Murfree, Mary Noailles', '2007-11-26', 20, 'https://www.gutenberg.org/ebooks/23629', 'en', 61), +(32940, 'War from the Inside\nThe Story of the 132nd Regiment Pennsylvania Volunteer Infantry in the War for the Suppression of the Rebellion, 1862-1863', 'Hitchcock, Frederick L. (Frederick Lyman)', '2009-07-04', 68, 'https://www.gutenberg.org/ebooks/29313', 'en', 12725), +(32941, 'Babes in the Bush', 'Boldrewood, Rolf', '2016-02-13', 12, 'https://www.gutenberg.org/ebooks/51209', 'en', 792), +(32942, 'Four Boy Hunters; Or, The Outing of the Gun Club', 'Stratemeyer, Edward', '2004-07-19', 25, 'https://www.gutenberg.org/ebooks/12952', 'en', 3), +(32943, 'The Adventures of Tom Sawyer, Part 7.', 'Twain, Mark', '2004-06-30', 17, 'https://www.gutenberg.org/ebooks/7199', 'en', 1080), +(32944, 'Robert Louis Stevenson: A Record, an Estimate, and a Memorial', 'Japp, Alexander H. (Alexander Hay)', '1996-07-01', 55, 'https://www.gutenberg.org/ebooks/590', 'en', 3485), +(32945, 'L\'île de sable', 'Chevalier, H. Emile (Henri Emile)', '2006-05-26', 15, 'https://www.gutenberg.org/ebooks/18454', 'fr', 12726), +(32946, 'The Head of Kay\'s', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 84, 'https://www.gutenberg.org/ebooks/6877', 'en', 1779), +(32947, 'The Life of Napoleon Bonaparte. Vol. 3 (of 4)', 'Sloane, William Milligan', '2008-11-17', 41, 'https://www.gutenberg.org/ebooks/27289', 'en', 2051), +(32948, 'The $30,000 Bequest, and Other Stories', 'Twain, Mark', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/9003', 'en', 179), +(32949, 'Harper\'s Young People, July 26, 1881\nAn Illustrated Weekly', 'Various', '2015-02-21', 6, 'https://www.gutenberg.org/ebooks/48324', 'en', 479), +(32950, 'The Love-chase', 'Knowles, James Sheridan', '2002-11-01', 11, 'https://www.gutenberg.org/ebooks/3539', 'en', 907), +(32951, 'The Simpkins Plot', 'Birmingham, George A.', '2006-10-19', 11, 'https://www.gutenberg.org/ebooks/19586', 'en', 637), +(32952, 'Weeds by the Wall: Verses', 'Cawein, Madison Julius', '2010-01-02', 9, 'https://www.gutenberg.org/ebooks/30830', 'en', 178), +(32953, 'The Money Master, Volume 5.', 'Parker, Gilbert', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6279', 'en', 589), +(32954, 'Wild Animals at Home', 'Seton, Ernest Thompson', '2009-01-25', 55, 'https://www.gutenberg.org/ebooks/27887', 'en', 2560), +(32955, 'Advanced Chemistry', 'Huekels, Jack G.', '2008-10-18', 83, 'https://www.gutenberg.org/ebooks/26955', 'en', 179), +(32956, 'Legends of the Saxon Saints', 'De Vere, Aubrey', '2009-06-14', 25, 'https://www.gutenberg.org/ebooks/29121', 'en', 12727), +(32957, 'Earth\'s Holocaust (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 68, 'https://www.gutenberg.org/ebooks/9231', 'en', 179), +(32958, 'A Guide to the Mount\'s Bay and the Land\'s End\r\nComprehending the topography, botany, agriculture, fisheries, antiquities, mining, mineralogy and geology of West Cornwall', 'Paris, John Ayrton', '2015-01-30', 29, 'https://www.gutenberg.org/ebooks/48116', 'en', 12728), +(32959, 'Polly: A New-Fashioned Girl', 'Meade, L. T.', '2006-06-23', 43, 'https://www.gutenberg.org/ebooks/18666', 'en', 31), +(32960, 'Betsy Gaskins (Dimicrat), Wife of Jobe Gaskins (Republican)\r\nOr, Uncle Tom\'s Cabin Up to Date', 'Hood, W. I. (William I.)', '2017-04-14', 13, 'https://www.gutenberg.org/ebooks/54549', 'en', 12729), +(32961, 'The Hidden Servants and Other Very Old Stories', 'Alexander, Francesca', '2015-01-12', 11, 'https://www.gutenberg.org/ebooks/47962', 'en', 8), +(32962, 'La Tempesta', 'Shakespeare, William', '2008-08-01', 97, 'https://www.gutenberg.org/ebooks/26169', 'it', 7034), +(32963, 'Poems of Peace and War', 'Connor, Elizabeth H.', '2016-04-19', 6, 'https://www.gutenberg.org/ebooks/51807', 'en', 8), +(32964, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 279, October 20, 1827', 'Various', '2005-05-30', 1, 'https://www.gutenberg.org/ebooks/15945', 'en', 133), +(32965, 'Punch, or the London Charivari, Vol. 62, Jan 13, 1872', 'Various', '2011-12-10', 1, 'https://www.gutenberg.org/ebooks/38261', 'en', 134), +(32966, '\"That Old-Time Child, Roberta\"\r\nHer Home-Life on the Farm', 'Sea, Sophie Fox', '2005-02-05', 13, 'https://www.gutenberg.org/ebooks/14897', 'en', 1123), +(32967, 'Oscar Wilde, Art and Morality: A Defence of \"The Picture of Dorian Gray\"', NULL, '2010-09-10', 59, 'https://www.gutenberg.org/ebooks/33689', 'en', 12730), +(32968, 'The Collected Works of William Hazlitt, Vol. 02 (of 12)', 'Hazlitt, William', '2019-04-12', 27, 'https://www.gutenberg.org/ebooks/59256', 'en', 5270), +(32969, 'The Inner Sisterhood\nA Social Study in High Colors', 'Sherley, Douglass', '2005-02-26', 10, 'https://www.gutenberg.org/ebooks/15179', 'en', 61), +(32970, 'The History of the Confederate War, Its Causes and Its Conduct, Volume 1 (of 2)\r\nA Narrative and Critical History', 'Eggleston, George Cary', '2014-05-07', 19, 'https://www.gutenberg.org/ebooks/45609', 'en', 1717), +(32971, 'Grabbes doppeltes Gesicht', 'George, Manfred', '2011-08-28', 7, 'https://www.gutenberg.org/ebooks/37229', 'de', 12731), +(32972, 'Westward Ho! Or, The Voyages and Adventures of Sir Amyas Leigh, Knight, of Burrough, in the County of Devon, in the Reign of Her Most Glorious Majesty Queen Elizabeth', 'Kingsley, Charles', '2006-05-14', 109, 'https://www.gutenberg.org/ebooks/1860', 'en', 4434), +(32973, 'The Wigmaker in Eighteenth-Century Williamsburg\r\nAn Account of His Barbering, Hair-dressing, & Peruke-Making Services, & Some Remarks on Wigs of Various Styles.', 'Bullock, Thomas K.', '2018-11-30', 22, 'https://www.gutenberg.org/ebooks/58384', 'en', 12732), +(32974, 'Zwischen neun und neun', 'Perutz, Leo', '2011-07-30', 30, 'https://www.gutenberg.org/ebooks/36901', 'de', 2453), +(32975, 'Legenden und Geschichten', 'Remizov, Aleksei', '2012-03-17', 14, 'https://www.gutenberg.org/ebooks/39175', 'de', 10177), +(32976, 'La foire aux vanités, Tome II', 'Thackeray, William Makepeace', '2007-03-20', 12, 'https://www.gutenberg.org/ebooks/20864', 'fr', 3084), +(32977, 'Twin Tales: Are All Men Alike, and, The Lost Titian', 'Stringer, Arthur', '2019-03-18', 10, 'https://www.gutenberg.org/ebooks/59090', 'en', 1219), +(32978, 'The Place of Science in Modern Civilisation, and Other Essays', 'Veblen, Thorstein', '2012-06-08', 51, 'https://www.gutenberg.org/ebooks/39949', 'en', 814), +(32979, 'Die Novellen um Claudia', 'Zweig, Arnold', '2016-07-02', 7, 'https://www.gutenberg.org/ebooks/52478', 'de', 549), +(32980, 'Rafael Cordero: Elogio Póstumo', 'Brau, Salvador', '2013-01-16', 5, 'https://www.gutenberg.org/ebooks/41853', 'es', 12733), +(32981, 'The Doubts of Infidels\r\nOr, Queries Relative to Scriptural Inconsistencies & Contradictions', 'Nicholson, William', '2012-10-08', 20, 'https://www.gutenberg.org/ebooks/40981', 'en', 3792), +(32982, 'The Napoleon of Notting Hill', 'Chesterton, G. K. (Gilbert Keith)', '2006-12-08', 176, 'https://www.gutenberg.org/ebooks/20058', 'en', 1238), +(32983, 'Saksanmaa', 'Inha, Into Konrad', '2018-10-21', 1, 'https://www.gutenberg.org/ebooks/58142', 'fi', 12734), +(32984, 'Adventures with the Connaught Rangers, 1809-1814', 'Grattan, William', '2018-09-19', 13, 'https://www.gutenberg.org/ebooks/57936', 'en', 12735), +(32985, 'Rauhan erakko', 'Aho, Juhani', '2004-10-26', 25, 'https://www.gutenberg.org/ebooks/13874', 'fi', 456), +(32986, 'Muistoja Naantalista: eli Vanhan Tädin Kertomus', 'Hahnsson, Theodolinda', '2014-11-19', 6, 'https://www.gutenberg.org/ebooks/47398', 'fi', 41), +(32987, 'In Orchard Glen', 'MacGregor, Mary Esther Miller', '2009-03-01', 25, 'https://www.gutenberg.org/ebooks/28235', 'en', 48), +(32988, 'Pole Poppenspäler: Novelle\r\n(1874)', 'Storm, Theodor', '2005-09-01', 42, 'https://www.gutenberg.org/ebooks/8919', 'de', 3101), +(32989, 'The Life of Venerable Sister Margaret Bourgeois', 'Anonymous', '2004-11-01', 8, 'https://www.gutenberg.org/ebooks/6883', 'en', 12736), +(32990, 'The Mystery of Edwin Drood', 'Dickens, Charles', '1996-06-01', 482, 'https://www.gutenberg.org/ebooks/564', 'en', 5365), +(32991, 'Where the Sabots Clatter Again', 'Shortall, Katherine', '2004-07-29', 16, 'https://www.gutenberg.org/ebooks/13048', 'en', 1117), +(32992, 'The Quiver, 11/1899', 'Anonymous', '2013-09-15', 24, 'https://www.gutenberg.org/ebooks/43738', 'en', 1866), +(32993, 'The Expert Waitress: A Manual for the Pantry, Kitchen, and Dining-Room', 'Springsteed, Anne Frances', '2015-06-12', 16, 'https://www.gutenberg.org/ebooks/49202', 'en', 12737), +(32994, 'Geronimo\'s Story of His Life', 'Geronimo', '2010-02-18', 461, 'https://www.gutenberg.org/ebooks/31318', 'en', 12738), +(32995, 'Impressions and Comments', 'Ellis, Havelock', '2005-05-01', 33, 'https://www.gutenberg.org/ebooks/8125', 'en', 472), +(32996, 'Glimpses of Bengal\nSelected from the Letters of Sir Rabindranath Tagore', 'Tagore, Rabindranath', '2005-04-01', 66, 'https://www.gutenberg.org/ebooks/7951', 'en', 12739), +(32997, 'Absolute Surrender and Other Addresses', 'Murray, Andrew', '2006-10-20', 29, 'https://www.gutenberg.org/ebooks/19572', 'en', 1130), +(32998, 'Little Folks (December 1884)\nA Magazine for the Young', 'Various', '2009-02-05', 13, 'https://www.gutenberg.org/ebooks/28007', 'en', 1860), +(32999, 'The Twilight of the Souls', 'Couperus, Louis', '2010-11-27', 10, 'https://www.gutenberg.org/ebooks/34458', 'en', 7929), +(33000, 'The Spirit of Rome', 'Lee, Vernon', '2009-01-22', 32, 'https://www.gutenberg.org/ebooks/27873', 'en', 2452), +(33001, 'The Senses and the Mind', 'Anonymous', '2014-06-23', 28, 'https://www.gutenberg.org/ebooks/46078', 'en', 3749), +(33002, 'Kuolleet omenapuut: Runollista proosaa', 'Lehtonen, Joel', '2005-09-17', 14, 'https://www.gutenberg.org/ebooks/16708', 'fi', 456), +(33003, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 10', 'Stevenson, Robert Louis', '2010-04-07', 42, 'https://www.gutenberg.org/ebooks/31916', 'en', 98), +(33004, '$1,000 a Plate', 'McKenty, Jack', '2016-01-14', 223, 'https://www.gutenberg.org/ebooks/50921', 'en', 179), +(33005, 'Arizona Sketches', 'Munk, J. A. (Joseph Amasa)', '1996-12-01', 57, 'https://www.gutenberg.org/ebooks/756', 'en', 12740), +(33006, 'Une Pupille Genante', 'Dombre, Roger', '2006-06-26', 22, 'https://www.gutenberg.org/ebooks/18692', 'fr', 61), +(33007, 'Eighteenth Century Vignettes', 'Dobson, Austin', '2015-03-13', 21, 'https://www.gutenberg.org/ebooks/47996', 'en', 4691), +(33008, 'Murgrönan', 'Carstens, Fredrika Wilhelmina', '2014-09-11', 11, 'https://www.gutenberg.org/ebooks/46844', 'sv', 61), +(33009, 'Make Your Own Hats', 'Martin, Gene Allen', '2006-11-08', 72, 'https://www.gutenberg.org/ebooks/19740', 'en', 1531), +(33010, 'The Motor Boat Club at the Golden Gate; or, A Thrilling Capture in the Great Fog', 'Hancock, H. Irving (Harrie Irving)', '2015-05-23', 7, 'https://www.gutenberg.org/ebooks/49030', 'en', 2722), +(33011, 'The Bible, Douay-Rheims, Book 17: Tobias\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8317', 'en', 12741), +(33012, 'Caricature and Other Comic Art in All Times and Many Lands.', 'Parton, James', '2012-04-02', 70, 'https://www.gutenberg.org/ebooks/39347', 'en', 11087), +(33013, 'The Watchers of the Trails: A Book of Animal Life', 'Roberts, Charles G. D., Sir', '2008-06-07', 24, 'https://www.gutenberg.org/ebooks/25718', 'en', 1787), +(33014, 'Villipeto', 'London, Jack', '2018-06-16', 8, 'https://www.gutenberg.org/ebooks/57338', 'fi', 4171), +(33015, 'The Tinder-Box', 'Daviess, Maria Thompson', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/14863', 'en', 12633), +(33016, 'Von der Macht des Gemüts, durch den bloßen Vorsatz seiner krankhaften Gefühle Meister zu sein', 'Kant, Immanuel', '2011-12-13', 22, 'https://www.gutenberg.org/ebooks/38295', 'de', 4795), +(33017, 'The Rubaiyat of Omar Khayyam Jr.', 'Irwin, Wallace', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/5408', 'en', 5509), +(33018, 'The Boy from Green Ginger Land', 'Vaughan-Smith, Emilie', '2018-11-28', 3, 'https://www.gutenberg.org/ebooks/58370', 'en', 4426), +(33019, 'Ranchos (Costumbres del Campo)', 'Viana, Javier de', '2016-12-24', 16, 'https://www.gutenberg.org/ebooks/53798', 'es', 6045), +(33020, 'Visit to Iceland and the Scandinavian North', 'Pfeiffer, Ida', '1999-09-01', 36, 'https://www.gutenberg.org/ebooks/1894', 'en', 280), +(33021, 'The Rainbow Bridge', 'Fox, Frances Margaret', '2017-10-28', 16, 'https://www.gutenberg.org/ebooks/55837', 'en', 6419), +(33022, 'Gespenster: Ein Familiendrama in drei Aufzügen', 'Ibsen, Henrik', '2007-07-27', 22, 'https://www.gutenberg.org/ebooks/22159', 'de', 1298), +(33023, 'Philosophy and the Social Problem', 'Durant, Will', '2013-06-05', 92, 'https://www.gutenberg.org/ebooks/42880', 'en', 3120), +(33024, 'Muoto- ja muistikuvia II', 'Aspelin-Haapkylä, Eliel', '2015-11-30', 8, 'https://www.gutenberg.org/ebooks/50579', 'fi', 12742), +(33025, 'The Lonely Unicorn: A Novel', 'Waugh, Alec', '2013-10-16', 54, 'https://www.gutenberg.org/ebooks/43952', 'en', 1080), +(33026, 'Not Like Other Girls', 'Carey, Rosa Nouchette', '2009-03-31', 15, 'https://www.gutenberg.org/ebooks/28463', 'en', 61), +(33027, 'The Wit and Humor of America, Volume VI. (of X.)', NULL, '2006-09-18', 63, 'https://www.gutenberg.org/ebooks/19324', 'en', 12514), +(33028, 'Ten Thousand Miles with a Dog Sled\nA Narrative of Winter Travel in Interior Alaska', 'Stuck, Hudson', '2007-10-12', 34, 'https://www.gutenberg.org/ebooks/22965', 'en', 12743), +(33029, 'The Mentor: Reclaiming the Desert, Vol. 6, Num. 17, Serial No. 165, October 15, 1918', 'Blanchard, C. J. (Clarence John)', '2015-07-16', 5, 'https://www.gutenberg.org/ebooks/49454', 'en', 12744), +(33030, 'Birth Control: A Statement of Christian Doctrine against the Neo-Malthusians', 'Sutherland, Halliday', '2005-08-01', 12, 'https://www.gutenberg.org/ebooks/8773', 'en', 6100), +(33031, 'King John', 'Shakespeare, William', '2000-07-01', 17, 'https://www.gutenberg.org/ebooks/2249', 'en', 6756), +(33032, 'The War; \"Stonewall\" Jackson, His Campaigns and Battles, the Regiment as I Saw Them', 'Wood, James H. (James Harvey)', '2015-03-26', 18, 'https://www.gutenberg.org/ebooks/48586', 'en', 12745), +(33033, 'The Burial of the Guns', 'Page, Thomas Nelson', '2008-07-02', 48, 'https://www.gutenberg.org/ebooks/332', 'en', 179), +(33034, 'Sais-tu? Oui.--Retiens. Non.--Apprends.\r\nRecueil de poésies simples et faciles destinées à servir d\'exercices élémentaires de mémoire', 'Juhlin, Victor', '2010-12-31', 25, 'https://www.gutenberg.org/ebooks/34800', 'fr', 701), +(33035, 'Memoirs of General W. T. Sherman, Volume I., Part 1', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5850', 'en', 2723), +(33036, 'Political economy', 'Jevons, William Stanley', '2010-07-22', 29, 'https://www.gutenberg.org/ebooks/33219', 'en', 1745), +(33037, 'The World Before the Deluge', 'Figuier, Louis', '2012-05-18', 20, 'https://www.gutenberg.org/ebooks/39723', 'en', 12487), +(33038, 'Reminiscences of Travel in Australia, America, and Egypt', 'Tangye, Richard, Sir', '2012-12-16', 12, 'https://www.gutenberg.org/ebooks/41639', 'en', 2589); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(33039, 'A Rock in the Baltic', 'Barr, Robert', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/4982', 'en', 12746), +(33040, 'Little Folded Hands\nPrayers for Children', 'Anonymous', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11149', 'en', 12747), +(33041, 'New History of the Life and Adventures of Tom Thumb', NULL, '2019-01-17', 14, 'https://www.gutenberg.org/ebooks/58714', 'en', 388), +(33042, 'Dialstone Lane, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/11975', 'en', 759), +(33043, 'The Russian Ballet', 'Terry, Ellen', '2014-04-01', 45, 'https://www.gutenberg.org/ebooks/45299', 'en', 12748), +(33044, 'Valittuja novelleja I', 'Maupassant, Guy de', '2014-02-17', 26, 'https://www.gutenberg.org/ebooks/44945', 'fi', 1152), +(33045, 'Runoelmia', 'Keats, John', '2014-06-06', 25, 'https://www.gutenberg.org/ebooks/45897', 'fi', 12749), +(33046, 'Thoughts on Slavery and Cheap Sugar\r\nA Letter to the Members and Friends of the British and Foreign Anti-Slavery Society', 'Ritchie, J. Ewing (James Ewing)', '2016-08-16', 17, 'https://www.gutenberg.org/ebooks/52820', 'en', 9785), +(33047, 'The Psychological Origin and the Nature of Religion', 'Leuba, James H. (James Henry)', '2012-04-22', 20, 'https://www.gutenberg.org/ebooks/39511', 'en', 5685), +(33048, 'Théologie hindoue. Le Kama soutra.', 'Vatsyayana', '2005-01-05', 221, 'https://www.gutenberg.org/ebooks/14609', 'fr', 12750), +(33049, 'Ensino intuitivo\r\nlivro destinado às mães e paes de familia e às professoras e professores de instrucção primária', 'Telles, João José de Sousa', '2010-09-28', 26, 'https://www.gutenberg.org/ebooks/33817', 'pt', 973), +(33050, 'The Human Interest: A Study in Incompatibilities', 'Hunt, Violet', '2018-12-23', 12, 'https://www.gutenberg.org/ebooks/58526', 'en', 2019), +(33051, 'Punch, or The London Charivari, Vol. 148, February 17th 1915', 'Various', '2013-11-14', 8, 'https://www.gutenberg.org/ebooks/44179', 'en', 134), +(33052, 'Legends of The Kaw: The Folk-Lore of the Indians of the Kansas River Valley', 'De Voe, Carrie', '2011-06-30', 14, 'https://www.gutenberg.org/ebooks/36559', 'en', 1749), +(33053, 'Two Little Travellers\r\nA Story for Girls', 'Arthur, Frances Browne', '2008-07-04', 14, 'https://www.gutenberg.org/ebooks/25972', 'en', 7579), +(33054, 'Leçons sur l\'intégration des équations différentielles aux dérivées partielles,\r\nProfessées à Stockholm sur l\'invitation de S. M. le Roi de Suède', 'Volterra, Vito', '2009-08-24', 10, 'https://www.gutenberg.org/ebooks/29783', 'fr', 814), +(33055, 'The God Next Door', 'Doede, William R.', '2016-04-08', 31, 'https://www.gutenberg.org/ebooks/51699', 'en', 179), +(33056, 'Madame Chrysantheme — Complete', 'Loti, Pierre', '2004-10-30', 61, 'https://www.gutenberg.org/ebooks/3995', 'en', 775), +(33057, 'The Logbooks of the Lady Nelson\r\nWith the journal of her first commander Lieutenant James Grant', 'Lee, Ida', '2004-08-28', 29, 'https://www.gutenberg.org/ebooks/7509', 'en', 12751), +(33058, 'An Extract out of Josephus\'s Discourse to The Greeks Concerning Hades', 'Josephus, Flavius', '2001-10-01', 87, 'https://www.gutenberg.org/ebooks/2847', 'en', 12752), +(33059, 'Our Bessie', 'Carey, Rosa Nouchette', '2009-05-01', 19, 'https://www.gutenberg.org/ebooks/28651', 'en', 95), +(33060, 'Pietar Patelin eli Sukkela asianajaja: Ilveilys kolmessa näytöksessä', 'Anonymous', '2015-08-10', 24, 'https://www.gutenberg.org/ebooks/49666', 'fi', 907), +(33061, 'Historical Epochs of the French Revolution\r\nWith The Judgment And Execution Of Louis XVI., King Of France\r\nAnd A List Of The Members Of The National Convention, Who Voted For And Against His Death', 'Goudemetz, Henry', '2005-10-29', 10, 'https://www.gutenberg.org/ebooks/16962', 'en', 1536), +(33062, 'Les mains pleines de roses, pleines d\'or et pleines de sang', 'Houssaye, Arsène', '2005-07-01', 13, 'https://www.gutenberg.org/ebooks/8541', 'fr', 61), +(33063, 'Italian Yesterdays, vol. 2', 'Fraser, Hugh, Mrs.', '2017-08-01', 16, 'https://www.gutenberg.org/ebooks/55239', 'en', 12753), +(33064, 'How to Sing\n[Meine Gesangskunst]', 'Lehmann, Lilli', '2006-08-25', 227, 'https://www.gutenberg.org/ebooks/19116', 'en', 12754), +(33065, 'The Complete Works of William Shakespeare', 'Shakespeare, William', '1994-01-01', 4580, 'https://www.gutenberg.org/ebooks/100', 'en', 1790), +(33066, 'Le Noël des Petits Gueux', 'Du Veuzit, Max', '2008-12-25', 12, 'https://www.gutenberg.org/ebooks/27619', 'fr', 415), +(33067, 'The Atlantic Monthly, Volume 10, No. 57, July, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-12-01', 6, 'https://www.gutenberg.org/ebooks/9493', 'en', 1227), +(33068, 'Rose à Charlitte', 'Saunders, Marshall', '2012-11-05', 4, 'https://www.gutenberg.org/ebooks/41296', 'en', 12755), +(33069, 'Manners of the Age', 'Fyfe, H. B. (Horace Bowne)', '2010-06-10', 50, 'https://www.gutenberg.org/ebooks/32764', 'en', 179), +(33070, 'Backwater: Pilgrimage, Volume 2', 'Richardson, Dorothy M. (Dorothy Miller)', '2017-12-22', 29, 'https://www.gutenberg.org/ebooks/56221', 'en', 957), +(33071, 'Wyandotté; Or, The Hutted Knoll: A Tale', 'Cooper, James Fenimore', '2003-12-01', 15, 'https://www.gutenberg.org/ebooks/10434', 'en', 12756), +(33072, 'El cuarto poder', 'Palacio Valdés, Armando', '2008-02-13', 44, 'https://www.gutenberg.org/ebooks/24601', 'es', 1696), +(33073, 'The Cask of Amontillado', 'Poe, Edgar Allan', '2010-06-06', 241, 'https://www.gutenberg.org/ebooks/1063', 'en', 359), +(33074, 'Poems, 1916-1918', 'Young, Francis Brett', '2012-07-26', 28, 'https://www.gutenberg.org/ebooks/40344', 'en', 1594), +(33075, 'Syd Belton: The Boy Who Would Not Go to Sea', 'Fenn, George Manville', '2007-05-08', 25, 'https://www.gutenberg.org/ebooks/21373', 'en', 5512), +(33076, 'The Works of Thomas Hood; Vol. 01 (of 11)\r\nComic and Serious, in Prose and Verse, With All the Original Illustrations', 'Hood, Thomas', '2019-04-13', 17, 'https://www.gutenberg.org/ebooks/59269', 'en', 3625), +(33077, 'Les misères de Londres, 1. La nourrisseuse d\'enfants', 'Ponson du Terrail', '2005-02-22', 11, 'https://www.gutenberg.org/ebooks/15146', 'fr', 61), +(33078, 'The Philippine Islands, 1493-1898; Volume 46, 1721-1739\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2016-07-30', 24, 'https://www.gutenberg.org/ebooks/52681', 'en', 7466), +(33079, 'Stolen Idols', 'Oppenheim, E. Phillips (Edward Phillips)', '2014-05-12', 17, 'https://www.gutenberg.org/ebooks/45636', 'en', 61), +(33080, 'The Life of the Bee', 'Maeterlinck, Maurice', '2003-10-01', 87, 'https://www.gutenberg.org/ebooks/4511', 'en', 4644), +(33081, 'Holidays & Happy-Days', 'Hendry, Hamish', '2011-08-26', 33, 'https://www.gutenberg.org/ebooks/37216', 'en', 12757), +(33082, 'The Southern Literary Messenger, Vol. I., No. 4, December, 1834', 'Various', '2016-12-17', 3, 'https://www.gutenberg.org/ebooks/53753', 'en', 522), +(33083, 'The Suppressed Poems of Alfred Lord Tennyson', 'Tennyson, Alfred Tennyson, Baron', '2004-11-19', 50, 'https://www.gutenberg.org/ebooks/14094', 'en', 532), +(33084, 'Account of the Skeleton of the Mammoth\nA non-descript carnivorous animal of immense size, found in America', 'Peale, Rembrandt', '2015-05-10', 11, 'https://www.gutenberg.org/ebooks/48915', 'en', 12758), +(33085, 'The Flag of My Country = Shikéyah Bidah Na\'at\'a\'í', 'King, Cecil S.', '2007-11-09', 38, 'https://www.gutenberg.org/ebooks/23424', 'en', 1618), +(33086, 'Summa Theologica, Part I (Prima Pars)\nFrom the Complete American Edition', 'Thomas, Aquinas, Saint', '2006-01-26', 381, 'https://www.gutenberg.org/ebooks/17611', 'en', 12759), +(33087, 'The Mad Pranks of Tom Tram, Son-in-law to Mother Winter\nTo Which Are Added His Merry Jests, Odd Conceits, and Pleasant Tales.', 'Crouch, Humphrey, active 1635-1671', '2014-10-20', 5, 'https://www.gutenberg.org/ebooks/47161', 'en', 564), +(33088, 'Draw Swords! In the Horse Artillery', 'Fenn, George Manville', '2010-11-29', 11, 'https://www.gutenberg.org/ebooks/34493', 'en', 12760), +(33089, 'The Right of Way — Volume 04', 'Parker, Gilbert', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/6246', 'en', 1219), +(33090, 'Erlach Court', 'Schubin, Ossip', '2011-03-10', 7, 'https://www.gutenberg.org/ebooks/35541', 'en', 1949), +(33091, 'The Poetical Works of Oliver Wendell Holmes — Volume 07: Songs of Many Seasons', 'Holmes, Oliver Wendell', '2004-09-30', 8, 'https://www.gutenberg.org/ebooks/7394', 'en', 178), +(33092, 'My Monks of Vagabondia', 'Floyd, Andress', '2016-01-22', 4, 'https://www.gutenberg.org/ebooks/51004', 'en', 5547), +(33093, 'The Red Cow and Her Friends', 'McArthur, Peter', '2015-02-01', 10, 'https://www.gutenberg.org/ebooks/48129', 'en', 6662), +(33094, 'Punch, or the London Charivari, Vol. 98, February 8, 1890', 'Various', '2009-09-19', 9, 'https://www.gutenberg.org/ebooks/30033', 'en', 134), +(33095, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 05 (de 12)', 'Castelo Branco, Camilo', '2008-10-29', 9, 'https://www.gutenberg.org/ebooks/27084', 'pt', 410), +(33096, 'The Seventh Manchesters: July 1916 to March 1919', 'Wilson, S. J.', '2006-06-23', 11, 'https://www.gutenberg.org/ebooks/18659', 'en', 2812), +(33097, 'Lightning Conductors: Their History, Nature, and Mode of Application', 'Anderson, Richard, F.C.S.', '2017-04-19', 6, 'https://www.gutenberg.org/ebooks/54576', 'en', 12761), +(33098, 'The Botanist\'s Companion, Volume II\r\nOr an Introduction to the Knowledge of Practical Botany, and the Uses of Plants. Either Growing Wild in Great Britain, or Cultivated for the Puroses of Agriculture, Medicine, Rural Oeconomy, or the Arts', 'Salisbury, William', '2004-05-01', 40, 'https://www.gutenberg.org/ebooks/12363', 'en', 12762), +(33099, 'Hopes and Fears\r\nor, scenes from the life of a spinster', 'Yonge, Charlotte M. (Charlotte Mary)', '2008-07-31', 33, 'https://www.gutenberg.org/ebooks/26156', 'en', 3305), +(33100, 'Tom Swift in the Caves of Ice, or, the Wreck of the Airship', 'Appleton, Victor', '2003-02-01', 53, 'https://www.gutenberg.org/ebooks/3734', 'en', 1456), +(33101, 'Personal Reminiscences of the War of 1861-5\nIn Camp—en Bivouac—on the March—on Picket—on the Skirmish Line—on the Battlefield—and in Prison', 'Morgan, W. H. (William Henry)', '2016-04-23', 14, 'https://www.gutenberg.org/ebooks/51838', 'en', 1489), +(33102, 'Le Tour du Monde; La Russie, race colonisatrice\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-07', 16, 'https://www.gutenberg.org/ebooks/29922', 'fr', 1673), +(33103, 'The Diplomatic Correspondence of the American Revolution, Vol. 12', NULL, '2013-03-25', 4, 'https://www.gutenberg.org/ebooks/42413', 'en', 330), +(33104, 'Tolstoy', 'Winstanley, Lilian', '2014-11-14', 26, 'https://www.gutenberg.org/ebooks/47353', 'en', 2372), +(33105, 'Lady Clare', 'Tennyson, Alfred Tennyson, Baron', '2004-07-01', 27, 'https://www.gutenberg.org/ebooks/6074', 'en', 8), +(33106, 'André Cornélis', 'Bourget, Paul', '2007-11-25', 13, 'https://www.gutenberg.org/ebooks/23616', 'fr', 61), +(33107, 'The Rape of the Lock and Other Poems', 'Pope, Alexander', '2006-01-01', 189, 'https://www.gutenberg.org/ebooks/9800', 'en', 3947), +(33108, 'Theme from Mozart\'s Piano Sonata in A major, K.331\nArranged for Solo Guitar', NULL, '2005-12-31', 22, 'https://www.gutenberg.org/ebooks/17423', 'en', 2603), +(33109, 'Intentions', 'Wilde, Oscar', '2016-02-16', 23, 'https://www.gutenberg.org/ebooks/51236', 'fr', 935), +(33110, 'Violet: A Fairy Story', 'Guild, C. S. (Caroline Snowden)', '2011-04-05', 11, 'https://www.gutenberg.org/ebooks/35773', 'en', 1700), +(33111, 'A Monograph of Odontoglossum', 'Bateman, Jas. (James)', '2014-07-14', 9, 'https://www.gutenberg.org/ebooks/46281', 'en', 6438), +(33112, 'R.U.R.', 'Čapek, Karel', '2004-08-02', 135, 'https://www.gutenberg.org/ebooks/13083', 'cs', 12763), +(33113, 'Joel Sormensuo: Kertomus nykyajalta', 'Lassinen, Emil', '2017-05-19', 4, 'https://www.gutenberg.org/ebooks/54744', 'fi', 175), +(33114, 'The Marvelous Land of Oz', 'Baum, L. Frank (Lyman Frank)', '1993-02-01', 702, 'https://www.gutenberg.org/ebooks/54', 'en', 2314), +(33115, 'The Prince of India; Or, Why Constantinople Fell — Volume 01', 'Wallace, Lew', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6848', 'en', 5048), +(33116, 'In Praise of Folly\nIllustrated with Many Curious Cuts', 'Erasmus, Desiderius', '2009-10-06', 149, 'https://www.gutenberg.org/ebooks/30201', 'en', 140), +(33117, 'Human Genome Project, Chromosome Number 06', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3506', 'en', 1385), +(33118, 'Poems: Containing The Restropect, Odes, Elegies, Sonnets, &c.', 'Lovell, Robert', '2013-04-29', 30, 'https://www.gutenberg.org/ebooks/42621', 'en', 3947), +(33119, 'Rose of the World', 'Castle, Egerton', '2017-10-07', 48, 'https://www.gutenberg.org/ebooks/55696', 'en', 401), +(33120, 'Back to Back\nNight Watches, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/12151', 'en', 179), +(33121, 'Reincarnation and the Law of Karma\nA Study of the Old-New World-Doctrine of Rebirth, and Spiritual Cause and Effect', 'Atkinson, William Walker', '2008-08-19', 74, 'https://www.gutenberg.org/ebooks/26364', 'en', 10364), +(33122, 'The White Dove', 'Locke, William John', '2017-11-20', 32, 'https://www.gutenberg.org/ebooks/56013', 'en', 6360), +(33123, 'Zion National Park, Utah (1951)', 'United States. National Park Service', '2019-07-06', 72, 'https://www.gutenberg.org/ebooks/59867', 'en', 12764), +(33124, 'Dorothy\'s Tour', 'Raymond, Evelyn', '2010-05-27', 61, 'https://www.gutenberg.org/ebooks/32556', 'en', 12765), +(33125, 'Le Morte d\'Arthur: Volume 1', 'Malory, Thomas, Sir', '1998-03-01', 1443, 'https://www.gutenberg.org/ebooks/1251', 'en', 1193), +(33126, 'Valeria, the Martyr of the Catacombs: A Tale of Early Christian Life in Rome', 'Withrow, W. H. (William Henry)', '2010-08-22', 18, 'https://www.gutenberg.org/ebooks/33484', 'en', 12766), +(33127, 'Pippin; A Wandering Flame', 'Richards, Laura Elizabeth Howe', '2012-07-09', 15, 'https://www.gutenberg.org/ebooks/40176', 'en', 264), +(33128, 'The Tragedie of Hamlet, Prince of Denmark\nA Study with the Text of the Folio of 1623', 'Shakespeare, William', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/10606', 'en', 5264), +(33129, 'Sketch of the life of Abraham Lincoln', 'Arnold, Isaac N.', '2011-10-22', 6, 'https://www.gutenberg.org/ebooks/37818', 'en', 1716), +(33130, 'The Wit and Humor of America, Volume IX (of X)', NULL, '2008-01-26', 28, 'https://www.gutenberg.org/ebooks/24433', 'en', 190), +(33131, 'Leonorenlieder', 'Günther, Johann Christian', '2014-04-15', 8, 'https://www.gutenberg.org/ebooks/45404', 'de', 1518), +(33132, 'A Treatise Concerning the Principles of Human Knowledge', 'Berkeley, George', '2003-12-01', 155, 'https://www.gutenberg.org/ebooks/4723', 'en', 243), +(33133, 'Kleider machen Leute', 'Keller, Gottfried', '2007-04-04', 18, 'https://www.gutenberg.org/ebooks/21141', 'de', 48), +(33134, 'Introducing the American Spirit', 'Steiner, Edward Alfred', '2013-01-22', 15, 'https://www.gutenberg.org/ebooks/41898', 'en', 7462), +(33135, 'St. Nicholas, Vol. 5, No. 5, March, 1878', 'Various', '2005-03-15', 14, 'https://www.gutenberg.org/ebooks/15374', 'en', 563), +(33136, 'The Weird of the Wentworths: A Tale of George IV\'s Time, Vol. 1', 'Scotus, Johannes', '2012-06-17', 15, 'https://www.gutenberg.org/ebooks/39982', 'en', 12767), +(33137, 'The Rogues and Vagabonds of Shakespeare\'s Youth\nAwdeley\'s \'Fraternitye of vacabondes\' and Harman\'s \'Caveat\'', 'Awdelay, John, active 1559-1577', '2012-02-12', 30, 'https://www.gutenberg.org/ebooks/38850', 'en', 12768), +(33138, 'The American Bee Journal, Vol. VI., Number 5, November 1870', 'Various', '2018-10-29', 8, 'https://www.gutenberg.org/ebooks/58189', 'en', 2825), +(33139, 'Drawing for Printers.\r\nA practical treatise on the art of designing and illustrating in connection with typography. Containing complete instruction, fully illustrated, concerning the art of drawing, for the beginner as well as the more advanced student.', 'Knaufft, Ernest', '2016-11-20', 44, 'https://www.gutenberg.org/ebooks/53561', 'en', 12769), +(33140, 'The American Missionary — Volume 50, No. 04, April, 1896', 'Various', '2006-12-12', 14, 'https://www.gutenberg.org/ebooks/20093', 'en', 395), +(33141, 'The Express Companies of the United States: A Study of a Public Utility', 'Benedict, Bertram', '2011-08-10', 8, 'https://www.gutenberg.org/ebooks/37024', 'en', 12770), +(33142, 'A Sketch of the History of Oneonta', 'Campbell, Dudley M.', '2005-07-03', 4, 'https://www.gutenberg.org/ebooks/16195', 'en', 12771), +(33143, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 10', 'Dryden, John', '2016-04-03', 21, 'https://www.gutenberg.org/ebooks/51652', 'en', 1201), +(33144, 'The Duke Of Chimney Butte', 'Ogden, George W. (George Washington)', '2009-08-21', 19, 'https://www.gutenberg.org/ebooks/29748', 'en', 315), +(33145, 'Geology', 'Geikie, James', '2011-02-18', 17, 'https://www.gutenberg.org/ebooks/35317', 'en', 2535), +(33146, 'From the Australian Front', 'Anonymous', '2014-12-22', 21, 'https://www.gutenberg.org/ebooks/47737', 'en', 2071), +(33147, 'With Clive in India; Or, The Beginnings of an Empire', 'Henty, G. A. (George Alfred)', '2006-07-15', 73, 'https://www.gutenberg.org/ebooks/18833', 'en', 1736), +(33148, 'Once Aboard the Lugger-- The History of George and his Mary', 'Hutchinson, A. S. M. (Arthur Stuart-Menteth)', '2004-09-01', 15, 'https://www.gutenberg.org/ebooks/6410', 'en', 61), +(33149, 'The Story of the Rock', 'Ballantyne, R. M. (Robert Michael)', '2007-10-31', 39, 'https://www.gutenberg.org/ebooks/23272', 'en', 3532), +(33150, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 723\nNovember 3, 1877', 'Various', '2015-12-28', 14, 'https://www.gutenberg.org/ebooks/50780', 'en', 18), +(33151, 'The Half-Hearted', 'Buchan, John', '2005-11-11', 53, 'https://www.gutenberg.org/ebooks/17047', 'en', 323), +(33152, 'The Enchanted Typewriter', 'Bangs, John Kendrick', '2002-04-01', 52, 'https://www.gutenberg.org/ebooks/3162', 'en', 12772), +(33153, 'Thunder and Lightning', 'Flammarion, Camille', '2013-03-02', 34, 'https://www.gutenberg.org/ebooks/42245', 'en', 12773), +(33154, 'Witness for the Defence', 'Mason, A. E. W. (Alfred Edward Woodley)', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12535', 'en', 98), +(33155, 'Saronia\nA Romance of Ancient Ephesus', 'Short, Richard', '2008-09-25', 20, 'https://www.gutenberg.org/ebooks/26700', 'en', 12774), +(33156, 'Idillii spezzati', 'Fogazzaro, Antonio', '2019-08-17', 161, 'https://www.gutenberg.org/ebooks/60115', 'it', 892), +(33157, 'London: A Sketch-Book', 'Hornby, Lester G. (Lester George)', '2017-03-09', 19, 'https://www.gutenberg.org/ebooks/54320', 'en', 9787), +(33158, 'The Comic English Grammar: A New and Facetious Introduction to the English Tongue', 'Leigh, Percival', '2013-08-04', 13, 'https://www.gutenberg.org/ebooks/43397', 'en', 7070), +(33159, 'Questionable Shapes', 'Howells, William Dean', '2005-12-01', 30, 'https://www.gutenberg.org/ebooks/9458', 'en', 797), +(33160, 'Gossip in the First Decade of Victoria\'s Reign', 'Ashton, John', '2009-12-13', 20, 'https://www.gutenberg.org/ebooks/30665', 'en', 3967), +(33161, 'Ion', 'Plato', '1999-02-01', 210, 'https://www.gutenberg.org/ebooks/1635', 'en', 12775), +(33162, 'Adventures of an Angler in Canada, Nova Scotia and the United States', 'Lanman, Charles', '2017-01-10', 15, 'https://www.gutenberg.org/ebooks/53939', 'en', 12776), +(33163, 'The Captive in Patagonia', 'Bourne, Benjamin Franklin', '2011-12-25', 12, 'https://www.gutenberg.org/ebooks/38408', 'en', 12777), +(33164, 'Eeva', 'Alkio, Santeri', '2012-08-15', 15, 'https://www.gutenberg.org/ebooks/40512', 'fi', 61), +(33165, 'Que Partes El Alma\r\nRumba Son', NULL, '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10262', 'es', 12778), +(33166, 'La Libro Ruth', NULL, '2007-12-28', 13, 'https://www.gutenberg.org/ebooks/24057', 'eo', 12779), +(33167, 'Mysteries of Bee-keeping Explained', 'Quinby, M. (Moses)', '2008-04-26', 48, 'https://www.gutenberg.org/ebooks/25185', 'en', 4644), +(33168, 'The Lady\'s Country Companion; Or, How to Enjoy a Country Life Rationally', 'Loudon, Mrs. (Jane)', '2018-01-31', 21, 'https://www.gutenberg.org/ebooks/56477', 'en', 1369), +(33169, '\"Long Live the King!\"', 'Boothby, Guy', '2010-04-25', 17, 'https://www.gutenberg.org/ebooks/32132', 'en', 61), +(33170, 'London Signs and Inscriptions', 'Norman, Philip', '2016-09-20', 29, 'https://www.gutenberg.org/ebooks/53105', 'en', 5732), +(33171, 'The Wanderer; or, Female Difficulties (Volume 4 of 5)', 'Burney, Fanny', '2011-09-15', 27, 'https://www.gutenberg.org/ebooks/37440', 'en', 2564), +(33172, 'Tales and Novels of J. de La Fontaine — Volume 21', 'La Fontaine, Jean de', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/5295', 'en', 2629), +(33173, 'La Comédie humaine - Volume 03', 'Balzac, Honoré de', '2014-03-05', 59, 'https://www.gutenberg.org/ebooks/45060', 'fr', 642), +(33174, 'The Fire Trumpet: A Romance of the Cape Frontier', 'Mitford, Bertram', '2011-07-03', 11, 'https://www.gutenberg.org/ebooks/36592', 'en', 2126), +(33175, 'My Young Alcides: A Faded Photograph', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-08-01', 21, 'https://www.gutenberg.org/ebooks/4347', 'en', 378), +(33176, 'The Man Who Knew Too Much', 'Chesterton, G. K. (Gilbert Keith)', '2007-05-22', 17, 'https://www.gutenberg.org/ebooks/21525', 'en', 10621), +(33177, 'Nicky-Nan, Reservist', 'Quiller-Couch, Arthur', '2005-04-26', 19, 'https://www.gutenberg.org/ebooks/15710', 'en', 166), +(33178, 'A Little Pilgrim: Stories of the Seen and the Unseen', 'Oliphant, Mrs. (Margaret)', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10050', 'en', 7863), +(33179, 'Harper\'s Round Table, May 12, 1896', 'Various', '2018-08-28', 4, 'https://www.gutenberg.org/ebooks/57797', 'en', 668), +(33180, 'Punch, or the London Charivari, Vol. 146, February 4, 1914', 'Various', '2008-01-12', 15, 'https://www.gutenberg.org/ebooks/24265', 'en', 134), +(33181, 'A Message from the Sea', 'Dickens, Charles', '1998-08-01', 102, 'https://www.gutenberg.org/ebooks/1407', 'en', 324), +(33182, 'L\'Illustration, No. 0047, 20 Janvier 1844', 'Various', '2012-09-10', 2, 'https://www.gutenberg.org/ebooks/40720', 'fr', 150), +(33183, 'The Dog', 'Dinks', '2010-05-08', 54, 'https://www.gutenberg.org/ebooks/32300', 'en', 8723), +(33184, 'Le poète assassiné', 'Apollinaire, Guillaume', '2018-02-26', 48, 'https://www.gutenberg.org/ebooks/56645', 'fr', 259), +(33185, 'The Boatswain\'s Mate\nCaptains All, Book 2.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11182', 'en', 72), +(33186, 'Brandenburg Concerto No. 2 in F Major, BWV 1047', 'Bach, Johann Sebastian', '2004-01-01', 71, 'https://www.gutenberg.org/ebooks/4949', 'en', 9292), +(33187, 'From School to Battle-field: A Story of the War Days', 'King, Charles', '2011-10-09', 32, 'https://www.gutenberg.org/ebooks/37672', 'en', 491), +(33188, 'The Buccaneer Chief: A Romance of the Spanish Main', 'Aimard, Gustave', '2013-12-07', 13, 'https://www.gutenberg.org/ebooks/44380', 'en', 6161), +(33189, 'Linda Carlton\'s Hollywood Flight', 'Lavell, Edith', '2016-12-21', 9, 'https://www.gutenberg.org/ebooks/53337', 'en', 12780), +(33190, 'Battles with the Sea', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 33, 'https://www.gutenberg.org/ebooks/21717', 'en', 5584), +(33191, 'The War Chief of the Ottawas : A chronicle of the Pontiac war', 'Marquis, Thomas Guthrie', '2005-04-02', 20, 'https://www.gutenberg.org/ebooks/15522', 'en', 5922), +(33192, 'הצופה לבית ישראל\r\nתשליך', 'Erter, Isaac', '2014-03-28', 50, 'https://www.gutenberg.org/ebooks/45252', 'he', 12781), +(33193, 'Diary of Samuel Pepys — Volume 52: April 1667', 'Pepys, Samuel', '2004-12-01', 10, 'https://www.gutenberg.org/ebooks/4175', 'en', 2197), +(33194, 'Dumas\' Paris', 'Mansfield, M. F. (Milburg Francisco)', '2011-01-31', 27, 'https://www.gutenberg.org/ebooks/35125', 'en', 9464), +(33195, 'A Husband for My Wife', 'Stuart, William W.', '2016-03-15', 20, 'https://www.gutenberg.org/ebooks/51460', 'en', 2229), +(33196, 'Ce que vaut une femme\nTraité d\'éducation morale et pratique des jeunes filles', 'Roch, Éline', '2007-08-01', 47, 'https://www.gutenberg.org/ebooks/22192', 'fr', 8720), +(33197, 'Kitty\'s Picnic, and Other Stories', 'Anonymous', '2013-10-22', 10, 'https://www.gutenberg.org/ebooks/43999', 'en', 388), +(33198, 'The Atlantic Monthly, Volume 18, No. 106, August, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-10-16', 19, 'https://www.gutenberg.org/ebooks/23040', 'en', 1227), +(33199, 'Navajo Silversmiths\r\nSecond Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1880-1881, Government Printing Office, Washington, 1883, pages 167-178', 'Matthews, Washington', '2005-12-10', 65, 'https://www.gutenberg.org/ebooks/17275', 'en', 12782), +(33200, 'Louis Pasteur: His Life and Labours', 'Vallery-Radot, René', '2014-11-30', 41, 'https://www.gutenberg.org/ebooks/47505', 'en', 12783), +(33201, 'Legends That Every Child Should Know; a Selection of the Great Legends of All Times for Young People', 'Mabie, Hamilton Wright', '2004-10-01', 165, 'https://www.gutenberg.org/ebooks/6622', 'en', 9373), +(33202, 'The Travelling Musicians', 'Grimm, Jacob', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/12707', 'en', 1007), +(33203, 'Les cahiers du Capitaine Coignet (1799-1815)', 'Coignet, Jean-Roch', '2011-04-20', 31, 'https://www.gutenberg.org/ebooks/35919', 'fr', 2051), +(33204, 'Over the Line', 'Sherman, Harold M. (Harold Morrow)', '2008-09-04', 12, 'https://www.gutenberg.org/ebooks/26532', 'en', 5031), +(33205, 'The Wandering Jew — Complete', 'Sue, Eugène', '2004-10-25', 111, 'https://www.gutenberg.org/ebooks/3350', 'en', 98), +(33206, 'The Amazing Mrs. Mimms', 'Knight, David C.', '2010-03-10', 24, 'https://www.gutenberg.org/ebooks/31585', 'en', 179), +(33207, 'The Boy Scouts at the Panama Canal', 'Goldfrap, John Henry', '2013-02-12', 27, 'https://www.gutenberg.org/ebooks/42077', 'en', 12784), +(33208, 'Tales for Fifteen; Or, Imagination and Heart', 'Cooper, James Fenimore', '2000-08-01', 47, 'https://www.gutenberg.org/ebooks/2282', 'en', 1708), +(33209, 'Through Russian Snows: A Story of Napoleon\'s Retreat from Moscow', 'Henty, G. A. (George Alfred)', '2009-11-12', 62, 'https://www.gutenberg.org/ebooks/30457', 'en', 12785), +(33210, 'Todo al Vuelo\nObras Completas Vol. XVIII', 'Darío, Rubén', '2017-02-05', 14, 'https://www.gutenberg.org/ebooks/54112', 'es', 2730), +(33211, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 1: Chaldaea\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 69, 'https://www.gutenberg.org/ebooks/16161', 'en', 1296), +(33212, 'The Adventures of Maya the Bee', 'Bonsels, Waldemar', '2007-08-19', 80, 'https://www.gutenberg.org/ebooks/22354', 'en', 9124), +(33213, 'Slovenly Betsy', 'Hoffmann, Heinrich', '2006-11-24', 116, 'https://www.gutenberg.org/ebooks/19915', 'en', 3144), +(33214, 'Kun on tunteet: Novelleja', 'Jotuni, Maria', '2014-08-18', 15, 'https://www.gutenberg.org/ebooks/46611', 'fi', 665), +(33215, 'The White Company', 'Doyle, Arthur Conan', '1997-05-01', 399, 'https://www.gutenberg.org/ebooks/903', 'en', 12422), +(33216, 'L\'Illustration, No. 3239, 25 Mars 1905', 'Various', '2010-11-07', 3, 'https://www.gutenberg.org/ebooks/34231', 'fr', 150), +(33217, 'The Rover Boys Under Canvas; Or, The Mystery of the Wrecked Submarine', 'Stratemeyer, Edward', '2007-11-01', 39, 'https://www.gutenberg.org/ebooks/23286', 'en', 6101), +(33218, 'Contagion', 'MacLean, Katherine', '2015-12-27', 51, 'https://www.gutenberg.org/ebooks/50774', 'en', 26), +(33219, 'The Disguising at Hertford', 'Lydgate, John', '2001-10-01', 22, 'https://www.gutenberg.org/ebooks/2878', 'en', 115), +(33220, 'Portugal enfermo por vicios, e abusos de ambos os sexos', 'Costa, José Daniel Rodrigues da', '2010-03-23', 16, 'https://www.gutenberg.org/ebooks/31743', 'pt', 6904), +(33221, 'Mark Twain\'s Letters — Volume 4 (1886-1900)', 'Twain, Mark', '2004-09-19', 30, 'https://www.gutenberg.org/ebooks/3196', 'en', 2518), +(33222, '\"Born of the Spirit;\" or, Gems from the Book of Life', 'Osborne, Zenas', '2015-08-09', 6, 'https://www.gutenberg.org/ebooks/49659', 'en', 12786), +(33223, 'Fábulas', 'Samaniego, Félix María', '2017-07-26', 37, 'https://www.gutenberg.org/ebooks/55206', 'es', 7911), +(33224, 'The She Boss: A Western Story', 'Hankins, Arthur Preston', '2006-08-27', 28, 'https://www.gutenberg.org/ebooks/19129', 'en', 211), +(33225, 'Paternité', 'Du Veuzit, Max', '2008-12-25', 11, 'https://www.gutenberg.org/ebooks/27626', 'fr', 415), +(33226, 'The Party and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 64, 'https://www.gutenberg.org/ebooks/13413', 'en', 934), +(33227, 'Earthworms and Their Allies', 'Beddard, Frank E. (Frank Evers)', '2013-07-30', 6, 'https://www.gutenberg.org/ebooks/43363', 'en', 12787), +(33228, 'Astounding Stories of Super-Science, December 1930', 'Various', '2009-12-17', 140, 'https://www.gutenberg.org/ebooks/30691', 'en', 842), +(33229, 'The Education of Henry Adams', 'Adams, Henry', '2000-01-01', 211, 'https://www.gutenberg.org/ebooks/2044', 'en', 12788), +(33230, 'To The Work! To The Work! Exhortations to Christians', 'Moody, Dwight Lyman', '2010-06-28', 19, 'https://www.gutenberg.org/ebooks/33014', 'en', 2248), +(33231, 'Confidential Chats with Girls', 'Howard, William Lee', '2018-07-20', 67, 'https://www.gutenberg.org/ebooks/57551', 'en', 2378), +(33232, 'Swing Low, Sweet Chariot', 'Jubilee Singers', '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10296', 'en', 12789), +(33233, 'The Uncalled\nA Novel', 'Dunbar, Paul Laurence', '2008-04-25', 27, 'https://www.gutenberg.org/ebooks/25171', 'en', 12790), +(33234, 'Scientific American Supplement, No. 415, December 15, 1883', 'Various', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11344', 'en', 210), +(33235, 'Der tolle Koffer\nEine ff. prima Musterkollektion der besten Witze, Schnurren und Anekdoten von Reisenden und Kaufleuten', 'Schloemp, Felix', '2018-02-01', 19, 'https://www.gutenberg.org/ebooks/56483', 'de', 12791), +(33236, 'The Launch Boys\' Cruise in the Deerfoot', 'Ellis, Edward Sylvester', '2012-11-21', 7, 'https://www.gutenberg.org/ebooks/41434', 'en', 2722), +(33237, 'Tragic Sense Of Life', 'Unamuno, Miguel de', '2005-01-08', 170, 'https://www.gutenberg.org/ebooks/14636', 'en', 12792), +(33238, 'Abbreviations and Signs\r\nA Primer of Information about Abbreviations and Signs, with Classified Lists of Those in Most Common Use', 'Hamilton, Frederick W. (Frederick William)', '2010-10-01', 19, 'https://www.gutenberg.org/ebooks/33828', 'en', 12793), +(33239, 'Kissing the Rod: A Novel. (Vol. 3 of 3)', 'Yates, Edmund', '2018-12-22', 13, 'https://www.gutenberg.org/ebooks/58519', 'en', 95), +(33240, 'A Fearful Responsibility and Other Stories', 'Howells, William Dean', '2007-01-20', 43, 'https://www.gutenberg.org/ebooks/20403', 'en', 797), +(33241, 'Constance Dunlap', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/5261', 'en', 177), +(33242, 'That Pup', 'Butler, Ellis Parker', '2013-11-10', 10, 'https://www.gutenberg.org/ebooks/44146', 'en', 637), +(33243, 'Punch, or the London Charivari, Volume 108, March 9th 1895', 'Various', '2014-03-09', 8, 'https://www.gutenberg.org/ebooks/45094', 'en', 134), +(33244, 'The Roycroft Dictionary, Concocted by Ali Baba and the Bunch on Rainy Days.', 'Hubbard, Elbert', '2011-06-30', 11, 'https://www.gutenberg.org/ebooks/36566', 'en', 3260), +(33245, 'Textile Fibers used in Eastern Aboriginal North America', 'Whitford, A. C.', '2016-05-08', 5, 'https://www.gutenberg.org/ebooks/52023', 'en', 12794), +(33246, 'Daughters of Nijo: A Romance of Japan', 'Eaton, Winnifred', '2018-08-24', 19, 'https://www.gutenberg.org/ebooks/57763', 'en', 775), +(33247, 'O doido e a morte', 'Pascoais, Teixeira de', '2008-01-15', 9, 'https://www.gutenberg.org/ebooks/24291', 'pt', 8), +(33248, 'No Moss; Or, The Career of a Rolling Stone', 'Castlemon, Harry', '2010-07-22', 16, 'https://www.gutenberg.org/ebooks/33226', 'en', 323), +(33249, 'Comets and Meteors\r\nTheir phenomena in all ages; their mutual relations; and the theory of their origin.', 'Kirkwood, Daniel', '2012-12-11', 20, 'https://www.gutenberg.org/ebooks/41606', 'en', 12795), +(33250, 'Onderweg in Tunis\nDe Aarde en haar Volken, 1909', 'Chantre, B., Madame', '2008-05-05', 4, 'https://www.gutenberg.org/ebooks/25343', 'nl', 11386), +(33251, 'Mémoires du sergent Bourgogne', 'Bourgogne, Adrien-Jean-Baptiste-François', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11176', 'fr', 12796), +(33252, 'Plays by August Strindberg: Creditors. Pariah.', 'Strindberg, August', '2004-02-01', 50, 'https://www.gutenberg.org/ebooks/5053', 'en', 402), +(33253, 'American Scenes, and Christian Slavery\nA Recent Tour of Four Thousand Miles in the United States', 'Davies, Ebenezer', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/10898', 'en', 125), +(33254, 'Lincoln, the Politician', 'Levy, T. Aaron', '2011-10-10', 7, 'https://www.gutenberg.org/ebooks/37686', 'en', 1716), +(33255, 'The Robber Baron of Bedford Castle', 'Foster, A. J.', '2012-12-06', 10, 'https://www.gutenberg.org/ebooks/44374', 'en', 12422), +(33256, 'Les Rois', 'Lemaître, Jules', '2004-12-21', 11, 'https://www.gutenberg.org/ebooks/14404', 'fr', 687), +(33257, 'Chosen Peoples\nBeing the First \"Arthur Davis Memorial Lecture\" delivered before the Jewish Historical Society at University College on Easter-Passover Sunday, 1918/5678', 'Zangwill, Israel', '2007-02-19', 45, 'https://www.gutenberg.org/ebooks/20631', 'en', 12797), +(33258, 'The Gods and Mr. Perrin: A Tragi-Comedy', 'Walpole, Hugh', '2016-06-01', 17, 'https://www.gutenberg.org/ebooks/52211', 'en', 3606), +(33259, 'Diary of Samuel Pepys — Volume 58: October 1667', 'Pepys, Samuel', '2004-12-01', 30, 'https://www.gutenberg.org/ebooks/4181', 'en', 478), +(33260, 'Knut Hamsun', 'Larsen, Hanna Astrup', '2011-07-16', 13, 'https://www.gutenberg.org/ebooks/36754', 'en', 9033), +(33261, '\"My Novel\" — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7704', 'en', 282), +(33262, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 734, January 19, 1878', 'Various', '2017-10-24', 0, 'https://www.gutenberg.org/ebooks/55808', 'en', 18), +(33263, 'A Contribution to the Critique of Political Economy', 'Marx, Karl', '2014-07-26', 160, 'https://www.gutenberg.org/ebooks/46423', 'en', 12798), +(33264, 'Beach Scene', 'King, Marshall', '2016-03-18', 24, 'https://www.gutenberg.org/ebooks/51494', 'en', 424), +(33265, 'Scientific American Supplement, No. 421, January 26, 1884', 'Various', '2005-07-24', 12, 'https://www.gutenberg.org/ebooks/16353', 'en', 210), +(33266, 'Slave Narratives: A Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nGeorgia Narratives, Part 2', 'United States. Work Projects Administration', '2007-07-28', 39, 'https://www.gutenberg.org/ebooks/22166', 'en', 12799), +(33267, 'Les loups de Paris\r\nI. Le club des morts', 'Lermina, Jules', '2005-12-11', 10, 'https://www.gutenberg.org/ebooks/17281', 'fr', 560), +(33268, 'Royal Winchester: Wanderings in and about the Ancient Capital of England', 'L\'Estrange, A. G. K. (Alfred Guy Kingan)', '2015-11-24', 28, 'https://www.gutenberg.org/ebooks/50546', 'en', 10362), +(33269, 'Left on the Prairie', 'West, Noel', '2010-09-26', 15, 'https://www.gutenberg.org/ebooks/34003', 'en', 153), +(33270, 'Through Portugal', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2017-07-03', 14, 'https://www.gutenberg.org/ebooks/55034', 'en', 1923), +(33271, 'Historic Tales: The Romance of Reality. Vol. 12 (of 15), Japanese and Chinese', 'Morris, Charles', '2010-03-09', 27, 'https://www.gutenberg.org/ebooks/31571', 'en', 52), +(33272, 'Chaucer\'s Translation of Boethius\'s \"De Consolatione Philosophiae\"', 'Boethius', '2013-02-12', 50, 'https://www.gutenberg.org/ebooks/42083', 'en', 6079), +(33273, 'Cartouche', 'Peard, Frances Mary', '2013-07-08', 15, 'https://www.gutenberg.org/ebooks/43151', 'en', 348), +(33274, 'The Elephant\'s Ball, and Grand Fete Champetre\nIntended as a Companion to Those Much Admired Pieces, the Butterfly\'s Ball, and the Peacock \"At Home.\"', 'W. B.', '2007-12-18', 5, 'https://www.gutenberg.org/ebooks/23888', 'en', 4589), +(33275, 'The Private Memoirs and Confessions of a Justified Sinner', 'Hogg, James', '2000-08-01', 286, 'https://www.gutenberg.org/ebooks/2276', 'en', 1061), +(33276, '好逑傳', 'Mingjiaozhongren', '2008-12-05', 14, 'https://www.gutenberg.org/ebooks/27414', 'zh', 3187), +(33277, 'The Poems of Jonathan Swift, D.D., Volume 2', 'Swift, Jonathan', '2004-10-05', 47, 'https://www.gutenberg.org/ebooks/13621', 'en', 8), +(33278, 'Dan Carter, Cub Scout, and the River Camp', 'Wirt, Mildred A. (Mildred Augustine)', '2012-11-02', 14, 'https://www.gutenberg.org/ebooks/41262', 'en', 3), +(33279, 'Mortal Coils', 'Huxley, Aldous', '2012-04-05', 117, 'https://www.gutenberg.org/ebooks/39378', 'en', 409), +(33280, 'Carta de Elmano da Cunha em resposta a outra Bom-senso e Bom-gosto, dirigida por Anthero do Quental ao excellentissimo senhor Antonio Feliciano de Castilho, o incomparavel traductor dos fastos de Ovidio, obra em que se faz o confronto de Romulo e Jesus-Christo, offericida ao incomparavel duque de Saldanha', 'Cunha, Elmano da', '2010-06-13', 4, 'https://www.gutenberg.org/ebooks/32790', 'pt', 7651), +(33281, 'Vagabondia\n1884', 'Burnett, Frances Hodgson', '2008-06-08', 39, 'https://www.gutenberg.org/ebooks/25727', 'en', 48), +(33282, 'O. Henry Memorial Award Prize Stories of 1921', NULL, '2004-03-01', 54, 'https://www.gutenberg.org/ebooks/11512', 'en', 8280), +(33283, 'Fighting Germany\'s Spies', 'Strother, French', '2018-06-11', 9, 'https://www.gutenberg.org/ebooks/57307', 'en', 910), +(33284, 'Earth Alert!', 'Neville, Kris', '2010-09-05', 30, 'https://www.gutenberg.org/ebooks/33642', 'en', 26), +(33285, 'Mrs. Warren\'s Profession', 'Shaw, Bernard', '2002-02-11', 237, 'https://www.gutenberg.org/ebooks/1097', 'en', 12800), +(33286, 'In the Eastern Seas', 'Kingston, William Henry Giles', '2007-05-08', 14, 'https://www.gutenberg.org/ebooks/21387', 'en', 1096), +(33287, 'Juoppohullu: Elämäntarina', 'Alkio, Santeri', '2016-07-30', 8, 'https://www.gutenberg.org/ebooks/52675', 'fi', 456), +(33288, 'A Word to Women', 'Humphry, Mrs.', '2011-06-05', 57, 'https://www.gutenberg.org/ebooks/36330', 'en', 1435), +(33289, 'An Original Belle', 'Roe, Edward Payson', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/5437', 'en', 403), +(33290, 'Histoire de la Monarchie de Juillet (Volume 7 / 7)', 'Thureau-Dangin, Paul', '2014-01-19', 6, 'https://www.gutenberg.org/ebooks/44710', 'fr', 8446), +(33291, 'Mr. Britling Sees It Through', 'Wells, H. G. (Herbert George)', '2004-11-16', 71, 'https://www.gutenberg.org/ebooks/14060', 'en', 2564), +(33292, 'The Unruly Sprite: A Partial Fairy Tale', 'Van Dyke, Henry', '2007-01-02', 11, 'https://www.gutenberg.org/ebooks/20255', 'en', 918), +(33293, 'Watch and Wait; or, The Young Fugitives', 'Optic, Oliver', '2009-02-09', 20, 'https://www.gutenberg.org/ebooks/28038', 'en', 12801), +(33294, 'The Glorious Return: A Story of the Vaudois in 1689', 'Temple, Crona', '2015-10-03', 19, 'https://www.gutenberg.org/ebooks/50122', 'en', 12802), +(33295, 'A Nest of Linnets', 'Moore, Frank Frankfort', '2014-10-25', 20, 'https://www.gutenberg.org/ebooks/47195', 'en', 12803), +(33296, 'In Camp With A Tin Soldier', 'Bangs, John Kendrick', '2010-11-28', 11, 'https://www.gutenberg.org/ebooks/34467', 'en', 153), +(33297, 'The Tryal of William Penn & William Mead for Causing a Tumult\r\nat the Sessions Held at the Old Bailey in London the 1st, 3d, 4th, and 5th of September 1670', NULL, '2005-01-01', 8, 'https://www.gutenberg.org/ebooks/7360', 'en', 12804), +(33298, 'Tales and Legends of the Tyrol', 'Günther, Marie A., countess', '2014-06-20', 13, 'https://www.gutenberg.org/ebooks/46047', 'en', 3985), +(33299, 'International Language, Past, Present & Future\r\nWith Specimens of Esperanto and Grammar', 'Clark, Walter John', '2005-09-24', 44, 'https://www.gutenberg.org/ebooks/16737', 'en', 12805), +(33300, 'Big Pill', 'Gallun, Raymond Z.', '2010-04-09', 44, 'https://www.gutenberg.org/ebooks/31929', 'en', 26), +(33301, 'Directions for Cooking by Troops, in Camp and Hospital\r\nPrepared for the Army of Virginia, and published by order of the Surgeon General, with essays on \"taking food,\" and \"what food.\"', 'Nightingale, Florence', '2015-08-31', 18, 'https://www.gutenberg.org/ebooks/49833', 'en', 11803), +(33302, 'Economisti del cinque e seicento', 'Montanari, Geminiano', '2007-09-04', 44, 'https://www.gutenberg.org/ebooks/22502', 'it', 12806), +(33303, 'Oswald Bastable and Others', 'Nesbit, E. (Edith)', '2009-05-14', 66, 'https://www.gutenberg.org/ebooks/28804', 'en', 323), +(33304, 'Molière - Œuvres complètes, Tome 2', 'Molière', '2013-08-22', 65, 'https://www.gutenberg.org/ebooks/43535', 'fr', 3323), +(33305, 'The History of England, from the Accession of James II — Volume 3', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 71, 'https://www.gutenberg.org/ebooks/2612', 'en', 641), +(33306, 'Report of the Committee of Inquiry into the Various Aspects of the Problem of Abortion in New Zealand', 'New Zealand. Committee of Inquiry into various aspects of the Problem of Abortion in New Zealand', '2008-10-27', 6, 'https://www.gutenberg.org/ebooks/27070', 'en', 12807), +(33307, 'The Book of Tea', 'Okakura, Kakuzo', '1997-01-01', 552, 'https://www.gutenberg.org/ebooks/769', 'en', 12808), +(33308, 'Nousukkaita: Luonnekuvia', 'Onerva, L.', '2017-04-20', 10, 'https://www.gutenberg.org/ebooks/54582', 'fi', 665), +(33309, 'The Charm of Oxford', 'Wells, J. (Joseph)', '2004-08-22', 12, 'https://www.gutenberg.org/ebooks/13245', 'en', 3139), +(33310, 'The Star-Chamber: An Historical Romance, Volume 2', 'Ainsworth, William Harrison', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12397', 'en', 2898), +(33311, 'Peeps at Royal Palaces of Great Britain', 'Home, Beatrice', '2017-08-28', 31, 'https://www.gutenberg.org/ebooks/55450', 'en', 12809), +(33312, 'An Account of Our Arresting Experiences', 'Evans, Conway', '2010-01-28', 18, 'https://www.gutenberg.org/ebooks/31115', 'en', 3872), +(33313, 'The Bible, Douay-Rheims, Book 28: Jeremias\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8328', 'en', 5144), +(33314, 'School History of North Carolina : from 1584 to the present time', 'Moore, John W. (John Wheeler)', '2004-07-01', 10, 'https://www.gutenberg.org/ebooks/6080', 'en', 12810), +(33315, 'Folk Stories from Southern Nigeria, West Africa', 'Dayrell, Elphinstone', '2010-12-14', 67, 'https://www.gutenberg.org/ebooks/34655', 'en', 12811), +(33316, 'Mother Goose for Grown-ups', 'Carryl, Guy Wetmore', '2015-10-25', 17, 'https://www.gutenberg.org/ebooks/50310', 'en', 12812), +(33317, 'The Voice of the People', 'Glasgow, Ellen Anderson Gholson', '2005-08-10', 23, 'https://www.gutenberg.org/ebooks/16505', 'en', 12813), +(33318, 'In St. Jürgen: Novelle\r\n(1867)', 'Storm, Theodor', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8926', 'de', 906), +(33319, 'O Jardim da Pierrette', 'Almada Negreiros, José de', '2007-09-23', 34, 'https://www.gutenberg.org/ebooks/22730', 'pt', 8944), +(33320, 'Cecilia; Or, Memoirs of an Heiress — Volume 3', 'Burney, Fanny', '2004-12-01', 50, 'https://www.gutenberg.org/ebooks/7152', 'en', 95), +(33321, 'Le Côté de Guermantes - Deuxième partie', 'Proust, Marcel', '2004-07-23', 75, 'https://www.gutenberg.org/ebooks/12999', 'fr', 4), +(33322, 'Plain Mary Smith: A Romance of Red Saunders', 'Phillips, Henry Wallace', '2011-04-07', 21, 'https://www.gutenberg.org/ebooks/35787', 'en', 61), +(33323, 'Redmanship in Kentucky for Fifty Great Suns', 'Smith, Frank L.', '2014-07-14', 15, 'https://www.gutenberg.org/ebooks/46275', 'en', 12814), +(33324, 'O Oraculo do Passado, do presente e do Futuro (1/7)\r\nParte Primeira: O oraculo da Noite', 'Serrano, Bento', '2008-11-12', 11, 'https://www.gutenberg.org/ebooks/27242', 'pt', 185), +(33325, 'Wild Western Scenes\r\nA Narrative of Adventures in the Western Wilderness, Wherein the\r\nExploits of Daniel Boone, the Great American Pioneer are Particularly\r\nDescribed', 'Jones, J. B. (John Beauchamp)', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/13077', 'en', 1849), +(33326, 'Finger-Ring Lore: Historical, Legendary, Anecdotal', 'Jones, William, F.S.A.', '2013-09-13', 28, 'https://www.gutenberg.org/ebooks/43707', 'en', 12815), +(33327, 'Unterhaltungen deutscher Ausgewanderten', 'Goethe, Johann Wolfgang von', '2000-12-01', 43, 'https://www.gutenberg.org/ebooks/2420', 'de', 4203), +(33328, 'Master of the Moondog', 'Mullen, Stanley', '2010-02-19', 45, 'https://www.gutenberg.org/ebooks/31327', 'en', 8226), +(33329, 'Koning Jan', 'Shakespeare, William', '2017-10-01', 14, 'https://www.gutenberg.org/ebooks/55662', 'nl', 9535), +(33330, 'The Two Great Retreats of History', 'Ségur, Philippe-Paul, comte de', '2008-08-22', 28, 'https://www.gutenberg.org/ebooks/26390', 'en', 5822), +(33331, 'De roman van den schaatsenrijder', 'Buysse, Cyriel', '2008-05-18', 11, 'https://www.gutenberg.org/ebooks/25515', 'nl', 984), +(33332, 'Fenton\'s Quest', 'Braddon, M. E. (Mary Elizabeth)', '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/11720', 'en', 500), +(33333, 'Ein Landarzt: Kleine Erzählungen', 'Kafka, Franz', '2007-07-03', 116, 'https://www.gutenberg.org/ebooks/21989', 'de', 179), +(33334, 'In Hostile Red', 'Altsheler, Joseph A. (Joseph Alexander)', '2012-10-14', 13, 'https://www.gutenberg.org/ebooks/41050', 'en', 12816), +(33335, 'The Charing Cross Mystery', 'Fletcher, J. S. (Joseph Smith)', '2019-07-10', 723, 'https://www.gutenberg.org/ebooks/59893', 'en', 12817), +(33336, 'Individuality\nFrom \'The Gods and Other Lectures\'', 'Ingersoll, Robert Green', '2011-11-22', 15, 'https://www.gutenberg.org/ebooks/38098', 'en', 1191), +(33337, 'Gegen den Strich', 'Huysmans, J.-K. (Joris-Karl)', '2019-02-23', 16, 'https://www.gutenberg.org/ebooks/58941', 'de', 12818), +(33338, 'The Forge in the Forest\r\nBeing the Narrative of the Acadian Ranger, Jean de Mer, Seigneur de Briart; and How He Crossed the Black Abbé; and of His Adventures in a Strange Fellowship', 'Roberts, Charles G. D., Sir', '2010-11-23', 15, 'https://www.gutenberg.org/ebooks/33470', 'en', 1890), +(33339, 'Oriente', 'Blasco Ibáñez, Vicente', '2012-07-09', 18, 'https://www.gutenberg.org/ebooks/40182', 'es', 12819), +(33340, 'Guide to Historic Plymouth: Localities and Objects of Interest', 'Burbank, A. S. (Alfred Stevens)', '2018-05-11', 5, 'https://www.gutenberg.org/ebooks/57135', 'en', 12820), +(33341, 'A Princess of Mars', 'Burroughs, Edgar Rice', '2011-05-14', 16, 'https://www.gutenberg.org/ebooks/36102', 'en', 964), +(33342, 'Jacques le fataliste et son maître', 'Diderot, Denis', '2012-06-12', 81, 'https://www.gutenberg.org/ebooks/39976', 'fr', 5128), +(33343, 'Truthful Jane', 'Kingsley, Florence Morse', '2016-06-30', 13, 'https://www.gutenberg.org/ebooks/52447', 'en', 109), +(33344, 'Mrs. Warren\'s Daughter: A Story of the Woman\'s Movement', 'Johnston, Harry', '2005-03-16', 37, 'https://www.gutenberg.org/ebooks/15380', 'en', 2586), +(33345, 'The Age of Shakespeare', 'Swinburne, Algernon Charles', '2004-12-03', 39, 'https://www.gutenberg.org/ebooks/14252', 'en', 12821), +(33346, 'Les droits de la femme', 'Gouges, Olympe de', '2016-11-25', 26, 'https://www.gutenberg.org/ebooks/53595', 'fr', 5066), +(33347, 'Zuñi Fetiches\r\nSecond Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1880-1881, Government Printing Office, Washington, 1883, pages 3-45', 'Cushing, Frank Hamilton', '2006-12-09', 23, 'https://www.gutenberg.org/ebooks/20067', 'en', 12822), +(33348, 'The Power of Movement in Plants', 'Darwin, Francis, Sir', '2004-05-01', 56, 'https://www.gutenberg.org/ebooks/5605', 'en', 12823), +(33349, 'Ssanin: Roman', 'Artsybashev, M. (Mikhail)', '2018-09-15', 15, 'https://www.gutenberg.org/ebooks/57909', 'de', 1871), +(33350, 'Jack Sheppard: A Romance, Vol. 2 (of 3)', 'Ainsworth, William Harrison', '2013-12-26', 13, 'https://www.gutenberg.org/ebooks/44522', 'en', 1329), +(33351, 'Hints on Child-training', 'Trumbull, H. Clay (Henry Clay)', '2018-07-23', 39, 'https://www.gutenberg.org/ebooks/57569', 'en', 12824), +(33352, 'Harper\'s Young People, December 21, 1880\nAn Illustrated Weekly', 'Various', '2014-02-17', 26, 'https://www.gutenberg.org/ebooks/44942', 'en', 479), +(33353, 'A Captain of Industry: Being the Story of a Civilized Man', 'Sinclair, Upton', '2012-04-23', 18, 'https://www.gutenberg.org/ebooks/39516', 'en', 5114), +(33354, 'For the Sake of the Soldier: Voluntary Work of Brisbane Women', 'Macleod, Rita', '2016-08-17', 4, 'https://www.gutenberg.org/ebooks/52827', 'en', 12825), +(33355, 'A Decade of Italian Women, vol. 1 (of 2)', 'Trollope, Thomas Adolphus', '2014-06-05', 20, 'https://www.gutenberg.org/ebooks/45890', 'en', 4289), +(33356, 'Histoire ancienne de l\'Orient jusqu\'aux guerres médiques (1-6)\nI. Les origines, les races et les langues', 'Lenormant, François', '2008-04-23', 13, 'https://www.gutenberg.org/ebooks/25149', 'fr', 5952), +(33357, 'Hildegarde\'s Neighbors', 'Richards, Laura Elizabeth Howe', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5259', 'en', 12826), +(33358, 'Pikku herttua eli Rikhard Pelkäämätön', 'Yonge, Charlotte M. (Charlotte Mary)', '2018-12-22', 0, 'https://www.gutenberg.org/ebooks/58521', 'fi', 4648), +(33359, 'On the magnet, magnetick bodies also, and on the great magnet the earth\na new physiology, demonstrated by many arguments & experiments', NULL, '2010-09-26', 154, 'https://www.gutenberg.org/ebooks/33810', 'en', 12264), +(33360, 'The Deluge in the Light of Modern Science: A Discourse', 'Denton, William', '2008-07-06', 11, 'https://www.gutenberg.org/ebooks/25975', 'en', 9677); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(33361, 'Blackwood\'s Edinburgh Magazine, Volume 70, No. 433, November 1851', 'Various', '2014-08-19', 22, 'https://www.gutenberg.org/ebooks/46629', 'en', 711), +(33362, 'The American Missionary — Volume 43, No. 10, October, 1889', 'Various', '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/16159', 'en', 562), +(33363, 'Madame Chrysantheme — Volume 2', 'Loti, Pierre', '2003-04-01', 11, 'https://www.gutenberg.org/ebooks/3992', 'en', 775), +(33364, 'A Fortran Program for Elastic Scattering Analyses with the Nuclear Optical Model', 'Melkanoff, Michel A.', '2009-08-24', 31, 'https://www.gutenberg.org/ebooks/29784', 'en', 12827), +(33365, 'Typee', 'Melville, Herman', '2009-05-01', 265, 'https://www.gutenberg.org/ebooks/28656', 'en', 4732), +(33366, 'De Franse Pers', 'Heine, Heinrich', '2001-09-01', 12, 'https://www.gutenberg.org/ebooks/2840', 'nl', 12828), +(33367, 'Encyclopaedia Britannica, 11th Edition, \"Arundel, Thomas\" to \"Athens\"\r\nVolume 2, Slice 7', 'Various', '2010-11-04', 38, 'https://www.gutenberg.org/ebooks/34209', 'en', 1081), +(33368, 'Code Three', 'Raphael, Rick', '2006-08-24', 63, 'https://www.gutenberg.org/ebooks/19111', 'en', 26), +(33369, 'Queen Victoria', 'Browne, E. Gordon (Edgar Gordon)', '2005-10-30', 72, 'https://www.gutenberg.org/ebooks/16965', 'en', 7002), +(33370, 'Two Summers in Guyenne: A Chronicle of the Wayside and Waterside', 'Barker, Edward Harrison', '2005-07-01', 5, 'https://www.gutenberg.org/ebooks/8546', 'en', 12829), +(33371, 'Abbotsford', 'Crockett, W. S. (William Shillinglaw)', '2013-03-09', 22, 'https://www.gutenberg.org/ebooks/42289', 'en', 11775), +(33372, 'Niilo Bonpoika Sture 1: Kultainen kaulaketju\r\nKolmijaksoinen historiallinen romaani', 'Starbäck, C. Georg (Carl Georg)', '2015-08-09', 20, 'https://www.gutenberg.org/ebooks/49661', 'fi', 98), +(33373, 'Der Schuß von der Kanzel', 'Meyer, Conrad Ferdinand', '2005-12-01', 26, 'https://www.gutenberg.org/ebooks/9494', 'de', 1661), +(33374, 'Far from the Madding Crowd', 'Hardy, Thomas', '1994-02-01', 391, 'https://www.gutenberg.org/ebooks/107', 'en', 9895), +(33375, 'Cheshire', 'Kelsey, Charles E.', '2013-06-06', 11, 'https://www.gutenberg.org/ebooks/42887', 'en', 12830), +(33376, 'Peggy on the Road', 'Hughes, Virginia', '2017-10-27', 6, 'https://www.gutenberg.org/ebooks/55830', 'en', 12831), +(33377, 'Epistle Sermons, Vol. 2: Epiphany, Easter and Pentecost', 'Luther, Martin', '2009-03-31', 33, 'https://www.gutenberg.org/ebooks/28464', 'en', 3021), +(33378, 'Letters of Peregrine Pickle', 'Upton, George P. (George Putnam)', '2013-10-15', 18, 'https://www.gutenberg.org/ebooks/43955', 'en', 12832), +(33379, 'The Battle of the Big Hole\r\nA History of General Gibbon\'s Engagement with Nez Percés Indians in the Big Hole Valley, Montana, August 9th, 1877.', 'Shields, G. O. (George O.)', '2010-03-08', 5, 'https://www.gutenberg.org/ebooks/31549', 'en', 12833), +(33380, 'Poems in Two Volumes, Volume 1', 'Wordsworth, William', '2005-08-01', 186, 'https://www.gutenberg.org/ebooks/8774', 'en', 54), +(33381, 'The Mentor: The Virgin Islands of the United States of America, Vol. 6, Num. 13, Serial No. 161, August 15, 1918', 'Newman, E. M. (Edward Manuel)', '2015-07-16', 12, 'https://www.gutenberg.org/ebooks/49453', 'en', 12834), +(33382, 'Mansfield Park', 'Austen, Jane', '2007-10-01', 42, 'https://www.gutenberg.org/ebooks/22962', 'en', 378), +(33383, 'The Wit and Humor of America, Volume V. (of X.)', NULL, '2006-09-18', 69, 'https://www.gutenberg.org/ebooks/19323', 'en', 12514), +(33384, 'Little Journeys to the Homes of the Great - Volume 05\r\nLittle Journeys to the Homes of English Authors', 'Hubbard, Elbert', '2004-10-08', 32, 'https://www.gutenberg.org/ebooks/13619', 'en', 1694), +(33385, 'What was the Gunpowder Plot? The Traditional Story Tested by Original Evidence', 'Gerard, John', '2011-01-01', 8, 'https://www.gutenberg.org/ebooks/34807', 'en', 4300), +(33386, 'Frances Waldeaux: A Novel', 'Davis, Rebecca Harding', '1995-09-01', 43, 'https://www.gutenberg.org/ebooks/335', 'en', 533), +(33387, 'Philippa', 'Molesworth, Mrs.', '2013-07-09', 12, 'https://www.gutenberg.org/ebooks/43169', 'en', 3823), +(33388, 'Variétés Historiques et Littéraires (10/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2015-03-25', 6, 'https://www.gutenberg.org/ebooks/48581', 'fr', 642), +(33389, 'Personal Memoirs of P. H. Sheridan, Volume 2, Part 4', 'Sheridan, Philip Henry', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5857', 'en', 3540), +(33390, 'Ruth Fielding of the Red Mill; Or, Jasper Parloe\'s Secret', 'Emerson, Alice B.', '2004-01-01', 33, 'https://www.gutenberg.org/ebooks/4985', 'en', 557), +(33391, 'The Victories of Wellington and the British Armies', 'Maxwell, W. H. (William Hamilton)', '2018-03-07', 13, 'https://www.gutenberg.org/ebooks/56689', 'en', 12835), +(33392, 'The Imitator: A Novel', 'Pollard, Percival', '2012-05-18', 14, 'https://www.gutenberg.org/ebooks/39724', 'en', 7142), +(33393, 'México tal cual es', 'Fornaro, Carlo de', '2019-01-17', 22, 'https://www.gutenberg.org/ebooks/58713', 'es', 12836), +(33394, 'The Voyageur and Other Poems', 'Drummond, William Henry', '2007-02-16', 22, 'https://www.gutenberg.org/ebooks/20609', 'en', 8), +(33395, 'Dialstone Lane, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/11972', 'en', 1391), +(33396, 'Adventures of Sonny Bear', 'Fox, Frances Margaret', '2016-06-03', 16, 'https://www.gutenberg.org/ebooks/52229', 'en', 625), +(33397, 'Foot-prints of Travel; Or, Journeyings in Many Lands', 'Ballou, Maturin M. (Maturin Murray)', '2009-01-23', 14, 'https://www.gutenberg.org/ebooks/27874', 'en', 12837), +(33398, 'Inaugural Presidential Address', 'Obama, Barack', '2009-01-20', 25, 'https://www.gutenberg.org/ebooks/28000', 'en', 12838), +(33399, 'Synthetische Theorie der Cliffordschen Parallelen und der Linearen Linienörter des Elliptischen Raumes', 'Vogt, Wolfgang', '2010-04-07', 7, 'https://www.gutenberg.org/ebooks/31911', 'de', 12839), +(33400, 'Brought Home', 'Stretton, Hesba', '2005-01-01', 22, 'https://www.gutenberg.org/ebooks/7358', 'en', 716), +(33401, 'Las tecnologías y el libro para todos', 'Lebert, Marie', '2008-10-26', 23, 'https://www.gutenberg.org/ebooks/27048', 'es', 2069), +(33402, 'Erchie, My Droll Friend', 'Munro, Neil', '2015-01-18', 18, 'https://www.gutenberg.org/ebooks/47991', 'en', 2233), +(33403, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 8)', 'Guizot, François', '2006-06-26', 11, 'https://www.gutenberg.org/ebooks/18695', 'fr', 12840), +(33404, 'The Autocrat of the Breakfast-Table', 'Holmes, Oliver Wendell', '1996-12-01', 144, 'https://www.gutenberg.org/ebooks/751', 'en', 2688), +(33405, 'Récréations littéraires, curiosités et singularités, bévues et lapsus, etc.', 'Cim, Albert', '2016-01-14', 18, 'https://www.gutenberg.org/ebooks/50926', 'fr', 10922), +(33406, 'The Bible, Douay-Rheims, Book 10: 2 Kings\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8310', 'en', 12841), +(33407, 'Health Service Support in a Nuclear, Biological, and Chemical Environment\r\nTactics, Techniques, and Procedures', 'United States. Department of the Army', '2015-05-24', 17, 'https://www.gutenberg.org/ebooks/49037', 'en', 12842), +(33408, 'Storm in a Teacup', 'Phillpotts, Eden', '2017-08-31', 63, 'https://www.gutenberg.org/ebooks/55468', 'en', 109), +(33409, 'Where the Sun Swings North', 'Willoughby, Barrett', '2006-11-10', 14, 'https://www.gutenberg.org/ebooks/19747', 'en', 12843), +(33410, 'Conversazioni critiche', 'Carducci, Giosuè', '2014-09-11', 17, 'https://www.gutenberg.org/ebooks/46843', 'it', 2156), +(33411, 'The Surprising Adventures of Sir Toady Lion with Those of General Napoleon Smith\r\nAn Improving History for Old Boys, Young Boys, Good Boys, Bad Boys, Big Boys, Little Boys, Cow Boys, and Tom-Boys', 'Crockett, S. R. (Samuel Rutherford)', '2012-04-01', 21, 'https://www.gutenberg.org/ebooks/39340', 'en', 1655), +(33412, 'A Witch of the Hills, v. 2 [of 2]', 'Warden, Florence', '2011-12-13', 17, 'https://www.gutenberg.org/ebooks/38292', 'en', 61), +(33413, 'Elämän hawainnoita 05: Kirjailija; Mutta elääpä hän wielä sittenkin; Wäärä mammona', 'Päivärinta, Pietari', '2005-02-01', 41, 'https://www.gutenberg.org/ebooks/14864', 'fi', 456), +(33414, 'The Life of John Marshall, Volume 1: Frontiersman, soldier, lawmaker, 1755-1788', 'Beveridge, Albert J. (Albert Jeremiah)', '2012-08-01', 37, 'https://www.gutenberg.org/ebooks/40388', 'en', 1873), +(33415, 'Songs From Alice in Wonderland and Through the Looking-Glass', 'Carroll, Lewis', '2011-06-02', 234, 'https://www.gutenberg.org/ebooks/36308', 'en', 12844), +(33416, 'Readings on Fascism and National Socialism\r\nSelected by members of the department of philosophy, University of Colorado', 'Various', '2004-11-16', 131, 'https://www.gutenberg.org/ebooks/14058', 'en', 4984), +(33417, 'A Short List of Scientific Books Published by E. & F. N. Spon, Limited. February 1914', 'E. & F. N. Spon', '2018-11-29', 4, 'https://www.gutenberg.org/ebooks/58377', 'en', 12845), +(33418, 'Song and Legend from the Middle Ages', NULL, '1999-09-01', 19, 'https://www.gutenberg.org/ebooks/1893', 'en', 2881), +(33419, 'Kinship and Social Organisation', 'Rivers, W. H. R. (William Halse Rivers)', '2014-01-22', 24, 'https://www.gutenberg.org/ebooks/44728', 'en', 12846), +(33420, 'Syndicalism in France', 'Lorwin, Lewis L. (Lewis Levitzki)', '2012-10-15', 19, 'https://www.gutenberg.org/ebooks/41068', 'en', 12847), +(33421, 'A Safety Match', 'Hay, Ian', '2012-03-17', 21, 'https://www.gutenberg.org/ebooks/39172', 'en', 48), +(33422, 'The Camp Fire Girls at School; Or, The Wohelo Weavers', 'Frey, Hildegard G.', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11718', 'en', 622), +(33423, 'Marjorie Dean, College Senior', 'Chase, Josephine', '2011-07-30', 10, 'https://www.gutenberg.org/ebooks/36906', 'en', 12848), +(33424, 'Saint Bonaventure: The Seraphic Doctor Minister-General of the Franciscan Order', 'Costelloe, Laurence', '2010-08-16', 14, 'https://www.gutenberg.org/ebooks/33448', 'en', 12849), +(33425, 'Blackwood\'s Edinburgh Magazine, Volume 63, No. 387, January, 1848', 'Various', '2019-02-28', 9, 'https://www.gutenberg.org/ebooks/58979', 'en', 711), +(33426, 'Major Vigoureux', 'Quiller-Couch, Arthur', '2007-03-20', 39, 'https://www.gutenberg.org/ebooks/20863', 'en', 1902), +(33427, 'Polly the Pagan: Her Lost Love Letters', 'Anderson, Isabel', '2013-01-16', 13, 'https://www.gutenberg.org/ebooks/41854', 'en', 348), +(33428, 'A. van Dyck', 'Knackfuss, H. (Hermann)', '2019-03-19', 4, 'https://www.gutenberg.org/ebooks/59097', 'de', 2423), +(33429, 'The Russo-Japanese Conflict: Its Causes and Issues', 'Asakawa, Kan\'ichi', '2018-09-18', 12, 'https://www.gutenberg.org/ebooks/57931', 'en', 12850), +(33430, 'Zwei Städte', 'Dickens, Charles', '2018-10-21', 57, 'https://www.gutenberg.org/ebooks/58145', 'de', 12851), +(33431, 'The Oera Linda Book, from a Manuscript of the Thirteenth Century', NULL, '2012-10-08', 77, 'https://www.gutenberg.org/ebooks/40986', 'en', 6449), +(33432, 'Possession: A Peep-Show in Paradise', 'Housman, Laurence', '2009-03-01', 7, 'https://www.gutenberg.org/ebooks/28232', 'en', 317), +(33433, 'The Eve of the Reformation\r\nStudies in the Religious Life and Thought of the English people in the Period Preceding the Rejection of the Roman jurisdiction by Henry VIII', 'Gasquet, Francis Aidan', '2015-10-27', 22, 'https://www.gutenberg.org/ebooks/50328', 'en', 12852), +(33434, 'Tuomio\r\nKolminäytöksinen näytelmä', 'Aho, Juhani', '2004-10-26', 24, 'https://www.gutenberg.org/ebooks/13873', 'fi', 247), +(33435, 'A Positive Romance\n1898', 'Bellamy, Edward', '2007-09-21', 11, 'https://www.gutenberg.org/ebooks/22708', 'en', 179), +(33436, 'Oldport Days', 'Higginson, Thomas Wentworth', '2000-12-01', 8, 'https://www.gutenberg.org/ebooks/2418', 'en', 12853), +(33437, 'Sleeping Fires: a Novel', 'Atherton, Gertrude Franklin Horn', '2004-11-01', 28, 'https://www.gutenberg.org/ebooks/6884', 'en', 1061), +(33438, 'The Memoirs of François René Vicomte de Chateaubriand sometime Ambassador to England, Volume 2 (of 6)\r\nMémoires d\'outre-tombe, volume 2', 'Chateaubriand, François-René, vicomte de', '2017-05-26', 36, 'https://www.gutenberg.org/ebooks/54788', 'en', 7678), +(33439, 'The Planet Mars and Its Inhabitants, a Psychic Revelation', 'Kennon, J. L.', '1996-06-01', 47, 'https://www.gutenberg.org/ebooks/563', 'en', 12854), +(33440, 'A Tale of Two Cities', 'Dickens, Charles', '1994-01-01', 8925, 'https://www.gutenberg.org/ebooks/98', 'en', 12851), +(33441, 'Married', 'Strindberg, August', '2005-04-01', 40, 'https://www.gutenberg.org/ebooks/7956', 'en', 12855), +(33442, 'Anne of Avonlea', 'Montgomery, L. M. (Lucy Maud)', '2006-10-20', 25, 'https://www.gutenberg.org/ebooks/19575', 'en', 264), +(33443, 'Legends of the Northwest', 'Gordon, Hanford Lennox', '2005-05-01', 11, 'https://www.gutenberg.org/ebooks/8122', 'en', 6492), +(33444, 'Our Greatest Battle (The Meuse-Argonne)', 'Palmer, Frederick', '2015-06-13', 25, 'https://www.gutenberg.org/ebooks/49205', 'en', 4411), +(33445, 'Evening Dress\nFarce', 'Howells, William Dean', '2009-01-24', 32, 'https://www.gutenberg.org/ebooks/27880', 'en', 868), +(33446, 'Taistojen teitä', 'Salmela, Marja', '2014-10-20', 21, 'https://www.gutenberg.org/ebooks/47159', 'fi', 175), +(33447, 'Punch, or the London Charivari, Volume 152, June 20, 1917', 'Various', '2006-01-29', 24, 'https://www.gutenberg.org/ebooks/17629', 'en', 134), +(33448, 'A City Schoolgirl and Her Friends', 'Baldwin, May', '2010-01-02', 12, 'https://www.gutenberg.org/ebooks/30837', 'en', 48), +(33449, 'Aikarunoja', 'Heine, Heinrich', '2009-06-15', 47, 'https://www.gutenberg.org/ebooks/29126', 'fi', 11224), +(33450, 'The Nation\'s Peril.\r\nTwelve Years\' Experience in the South. Then and Now. The Ku Klux Klan, a Complete Exposition of the Order: Its Purpose, Plans, Operations, Social and Political Significance; The Nation\'s Salvation.', 'Anonymous', '2011-03-15', 25, 'https://www.gutenberg.org/ebooks/35579', 'en', 12856), +(33451, 'Eric\nor, Under the Sea', 'Samuels, S. B. C. (Susan Blagge Caldwell)', '2008-10-18', 7, 'https://www.gutenberg.org/ebooks/26952', 'en', 12857), +(33452, 'The Talk of the Town, Volume 2 (of 2)', 'Payn, James', '2015-01-13', 10, 'https://www.gutenberg.org/ebooks/47965', 'en', 12858), +(33453, 'The Certainty of a Future Life in Mars\r\nBeing the Posthumous Papers of Bradford Torrey Dodd', 'Gratacap, L. P. (Louis Pope)', '2004-08-25', 16, 'https://www.gutenberg.org/ebooks/13289', 'en', 613), +(33454, 'The Empire Annual for Girls, 1911', 'Various', '2006-06-23', 24, 'https://www.gutenberg.org/ebooks/18661', 'en', 12859), +(33455, 'The Kingdom of the Yellow Robe\r\nBeing Sketches of the Domestic and Religious Rites and Ceremonies of the Siamese', 'Young, Ernest', '2015-01-30', 37, 'https://www.gutenberg.org/ebooks/48111', 'en', 12860), +(33456, 'Main Street\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9236', 'en', 179), +(33457, 'Wild Sports in the Far West', 'Gerstäcker, Friedrich', '2016-04-19', 17, 'https://www.gutenberg.org/ebooks/51800', 'en', 12861), +(33458, 'I. Origen de los indios de América. II. Origen y civilizaciones de los indígenas del Perú.', 'Prince, Carlos', '2017-12-21', 25, 'https://www.gutenberg.org/ebooks/56219', 'es', 12862), +(33459, 'Antoine et Cléopâtre', 'Shakespeare, William', '2005-05-30', 60, 'https://www.gutenberg.org/ebooks/15942', 'fr', 6750), +(33460, 'The Hunters of the Hills', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-02-03', 35, 'https://www.gutenberg.org/ebooks/14890', 'en', 893), +(33461, 'The Memoirs of Count Carlo Gozzi; Volume the First', 'Gozzi, Carlo', '2011-12-10', 24, 'https://www.gutenberg.org/ebooks/38266', 'en', 1273), +(33462, 'The Colonial Mortuary Bard; \"\'Reo,\" The Fisherman; and The Black Bream Of Australia\n1901', 'Becke, Louis', '2008-02-18', 26, 'https://www.gutenberg.org/ebooks/24639', 'en', 12074), +(33463, 'Biographies of Working Men', 'Allen, Grant', '2003-10-01', 22, 'https://www.gutenberg.org/ebooks/4529', 'en', 12863), +(33464, 'Spanish and Indian place names of California: Their Meaning and Their Romance', 'Sanchez, Nellie Van de Grift', '2019-04-11', 23, 'https://www.gutenberg.org/ebooks/59251', 'en', 12864), +(33465, 'The Diary of a Goose Girl', 'Wiggin, Kate Douglas Smith', '1999-08-01', 43, 'https://www.gutenberg.org/ebooks/1867', 'en', 10925), +(33466, 'Index of the Project Gutenberg Works of Anthony Trollope', 'Trollope, Anthony', '2018-11-30', 21, 'https://www.gutenberg.org/ebooks/58383', 'en', 198), +(33467, 'Unwritten Literature of Hawaii\nThe Sacred Songs of the Hula', 'Emerson, Nathaniel Bright', '2007-01-06', 49, 'https://www.gutenberg.org/ebooks/20299', 'en', 12865), +(33468, 'Nantas', 'Zola, Émile', '2007-06-26', 17, 'https://www.gutenberg.org/ebooks/21945', 'nl', 179), +(33469, 'Charta Sancti Patricii', NULL, '2012-03-17', 10, 'https://www.gutenberg.org/ebooks/39186', 'la', 4519), +(33470, 'Chronicles of Martin Hewitt', 'Morrison, Arthur', '2011-10-22', 89, 'https://www.gutenberg.org/ebooks/37820', 'en', 12866), +(33471, 'The Soul of a Bishop', 'Wells, H. G. (Herbert George)', '2006-02-19', 26, 'https://www.gutenberg.org/ebooks/1269', 'en', 5836), +(33472, 'A Duel', 'Marsh, Richard', '2011-11-18', 13, 'https://www.gutenberg.org/ebooks/38054', 'en', 1335), +(33473, 'A Short History of England', 'Chesterton, G. K. (Gilbert Keith)', '2007-03-25', 244, 'https://www.gutenberg.org/ebooks/20897', 'en', 1953), +(33474, 'The Wonderful Wizard of Oz', 'Baum, L. Frank (Lyman Frank)', '2007-04-26', 38, 'https://www.gutenberg.org/ebooks/21179', 'en', 12867), +(33475, 'Peru as It Is, Volume 2 (of 2)\r\nA Residence in Lima, and Other Parts of the Peruvian Republic, Comprising an Account of the Social and Physical Features of That Country', 'Smith, Archibald', '2019-03-15', 6, 'https://www.gutenberg.org/ebooks/59063', 'en', 371), +(33476, 'The American Printer: A Manual of Typography\r\nContaining practical directions for managing all departments of a printing office, as well as complete instructions for apprentices; with several useful tables, numerous schemes for imposing forms in every variety, hints to authors, etc.', 'MacKellar, Thomas', '2018-03-23', 46, 'https://www.gutenberg.org/ebooks/56817', 'en', 12868), +(33477, 'The Courtships of Queen Elizabeth\nA history of the various negotiations for her marriage', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2016-11-19', 15, 'https://www.gutenberg.org/ebooks/53559', 'en', 7946), +(33478, 'L\'Illustration, No. 3667, 7 Juin 1913', 'Various', '2012-02-13', 2, 'https://www.gutenberg.org/ebooks/38868', 'fr', 150), +(33479, 'Mythical Monsters', 'Gould, Charles', '2012-10-08', 123, 'https://www.gutenberg.org/ebooks/40972', 'en', 4119), +(33480, 'Strong Hearts', 'Cable, George Washington', '2006-02-01', 26, 'https://www.gutenberg.org/ebooks/9838', 'en', 61), +(33481, 'Dr. Allinson\'s cookery book\r\nComprising many valuable vegetarian recipes', 'Allinson, T. R. (Thomas Richard)', '2004-10-28', 64, 'https://www.gutenberg.org/ebooks/13887', 'en', 3321), +(33482, 'Kylään tullessa', 'Päivärinta, Pietari', '2010-12-20', 32, 'https://www.gutenberg.org/ebooks/34699', 'fi', 61), +(33483, 'Consanguineous Marriages in the American Population', 'Arner, George B. Louis (George Byron Louis)', '2004-07-20', 8, 'https://www.gutenberg.org/ebooks/12955', 'en', 12869), +(33484, 'Out-of-Doors in the Holy Land: Impressions of Travel in Body and Spirit', 'Van Dyke, Henry', '2009-07-04', 16, 'https://www.gutenberg.org/ebooks/29314', 'en', 723), +(33485, 'The Roman Poets of the Republic, 2nd edition', 'Sellar, W. Y. (William Young)', '2015-02-20', 14, 'https://www.gutenberg.org/ebooks/48323', 'en', 3753), +(33486, 'Extract from Captain Stormfield\'s Visit to Heaven', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9004', 'en', 1397), +(33487, 'The Babe in the Bulrushes', 'Steedman, Amy', '2009-10-12', 21, 'https://www.gutenberg.org/ebooks/30239', 'en', 11870), +(33488, 'The Continental Monthly, Vol. 5, No. 1, January, 1864', 'Various', '2006-05-26', 13, 'https://www.gutenberg.org/ebooks/18453', 'en', 558), +(33489, 'The Story of Burnt Njal: The Great Icelandic Tribune, Jurist, and Counsellor', 'Unknown', '2004-11-11', 88, 'https://www.gutenberg.org/ebooks/597', 'en', 7424), +(33490, 'Why We Are at War : Messages to the Congress January to April 1917', 'Wilson, Woodrow', '2004-11-01', 12, 'https://www.gutenberg.org/ebooks/6870', 'en', 699), +(33491, 'Sakoontala; Or, The Lost Ring: An Indian Drama', 'Kalidasa', '2004-04-01', 60, 'https://www.gutenberg.org/ebooks/12169', 'en', 6214), +(33492, 'Amendments to the United States Constitution', 'United States', '2006-10-20', 12, 'https://www.gutenberg.org/ebooks/19581', 'en', 833), +(33493, 'Buckskin Mose\r\nOr, Life From the Lakes to the Pacific, as Actor, Circus-Rider, Detective, Ranger, Gold-Digger, Indian Scout, and Guide.', 'Perrie, George W.', '2013-04-29', 14, 'https://www.gutenberg.org/ebooks/42619', 'en', 315), +(33494, 'The philosophy of Mr. B*rtr*nd R*ss*ll', NULL, '2011-12-28', 17, 'https://www.gutenberg.org/ebooks/38430', 'en', 12870), +(33495, 'The Merman and the Figure-Head', 'Guernsey, Clara F. (Clara Florida)', '2017-01-06', 6, 'https://www.gutenberg.org/ebooks/53901', 'en', 580), +(33496, 'La vie en France au moyen âge d\'après quelques moralistes du temps', 'Langlois, Charles Victor', '2014-06-02', 12, 'https://www.gutenberg.org/ebooks/45864', 'fr', 12871), +(33497, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 285, December 1, 1827', 'Various', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11388', 'en', 133), +(33498, 'The Prose Writings of Heinrich Heine', 'Heine, Heinrich', '2011-09-19', 109, 'https://www.gutenberg.org/ebooks/37478', 'en', 12872), +(33499, 'Habitações Operarias', 'Bastos, Teixeira', '2008-03-16', 6, 'https://www.gutenberg.org/ebooks/24853', 'pt', 12873), +(33500, 'Index of the Project Gutenberg Works of James De Mille', 'De Mille, James', '2019-05-01', 7, 'https://www.gutenberg.org/ebooks/59407', 'en', 198), +(33501, 'The Indiscreet Letter', 'Abbott, Eleanor Hallowell', '2005-04-29', 32, 'https://www.gutenberg.org/ebooks/15728', 'en', 2534), +(33502, 'An Unknown Lover', 'Vaizey, George de Horne, Mrs.', '2010-06-20', 20, 'https://www.gutenberg.org/ebooks/32936', 'en', 61), +(33503, 'Les tribulations d\'un chinois en Chine', 'Verne, Jules', '2014-03-05', 44, 'https://www.gutenberg.org/ebooks/45058', 'fr', 6011), +(33504, 'Les beaux messieurs de Bois-Doré', 'Sand, George', '2008-07-06', 26, 'https://www.gutenberg.org/ebooks/25981', 'fr', 2436), +(33505, 'Cosmopolis — Volume 4', 'Bourget, Paul', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3966', 'en', 58), +(33506, 'The Heiress of Wyvern Court', 'Searchfield, Emilie', '2007-08-25', 27, 'https://www.gutenberg.org/ebooks/22398', 'en', 11715), +(33507, 'Plick y Plock', 'Sue, Eugène', '2009-08-23', 21, 'https://www.gutenberg.org/ebooks/29770', 'es', 4966), +(33508, 'The Surgeon\'s Daughter', 'Scott, Walter', '2004-09-01', 34, 'https://www.gutenberg.org/ebooks/6428', 'en', 12874), +(33509, '畫圖緣', 'Tianhuazangzhuren', '2008-10-01', 16, 'https://www.gutenberg.org/ebooks/26738', 'zh', NULL), +(33510, 'The Circus Comes to Town', 'Mitchell, Lebbeus', '2005-11-03', 14, 'https://www.gutenberg.org/ebooks/16991', 'en', 3133), +(33511, 'Motor Matt\'s Close Call; or, The Snare of Don Carlos', 'Matthews, Stanley R.', '2015-08-13', 18, 'https://www.gutenberg.org/ebooks/49695', 'en', 336), +(33512, 'Who Ate the Pink Sweetmeat? And Other Christmas Stories', 'Dunboyne, Lady', '2015-04-20', 25, 'https://www.gutenberg.org/ebooks/48747', 'en', 1817), +(33513, 'Camps, Quarters, and Casual Places', 'Forbes, Archibald', '2005-12-01', 24, 'https://www.gutenberg.org/ebooks/9460', 'en', 12875), +(33514, 'Life and Letters of Charles Darwin — Volume 2', 'Darwin, Charles', '2000-02-01', 35, 'https://www.gutenberg.org/ebooks/2088', 'en', 5116), +(33515, 'The Mysterious Shin Shira', 'Farrow, G. E. (George Edward)', '2006-02-24', 27, 'https://www.gutenberg.org/ebooks/17843', 'en', 2203), +(33516, 'The Story of Ida Pfeiffer\nand Her Travels in Many Lands', 'Anonymous', '2006-03-22', 42, 'https://www.gutenberg.org/ebooks/18037', 'en', 280), +(33517, 'The English Lakes: A Sketch-Book', 'Home, Gordon', '2017-03-09', 7, 'https://www.gutenberg.org/ebooks/54318', 'en', 936), +(33518, 'Canto a la Argentina, Oda a Mitre y otros poemas\nObras Completas Vol. IX', 'Darío, Rubén', '2016-03-15', 13, 'https://www.gutenberg.org/ebooks/51458', 'es', 3817), +(33519, 'The Valor of Cappen Varra', 'Anderson, Poul', '2009-07-29', 118, 'https://www.gutenberg.org/ebooks/29542', 'en', 580), +(33520, 'Kuningas Henrik Kahdeksas', 'Shakespeare, William', '2013-06-04', 12, 'https://www.gutenberg.org/ebooks/42873', 'fi', 2048), +(33521, 'A Prince to Order', 'Wayne, Charles Stokes', '2017-06-15', 4, 'https://www.gutenberg.org/ebooks/54916', 'en', 1380), +(33522, 'Murder at Bridge', 'Austin, Anne', '2007-10-01', 27, 'https://www.gutenberg.org/ebooks/23078', 'en', 128), +(33523, 'Scouting For Girls, Official Handbook of the Girl Scouts', 'Girl Scouts of the United States of America', '2009-04-04', 90, 'https://www.gutenberg.org/ebooks/28490', 'en', 12876), +(33524, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 02', 'Dante Alighieri', '2004-08-07', 19, 'https://www.gutenberg.org/ebooks/8780', 'en', 365), +(33525, 'A Hazard of New Fortunes — Volume 3', 'Howells, William Dean', '2004-10-23', 19, 'https://www.gutenberg.org/ebooks/3368', 'en', 1660), +(33526, 'The Rover Boys on Snowshoe Island; or, The Old Lumberman\'s Treasure Box', 'Stratemeyer, Edward', '2007-10-16', 37, 'https://www.gutenberg.org/ebooks/22996', 'en', 176), +(33527, 'Louisville, Ky. after the Cyclone, March 27, 1890', 'Klauber, E. (Edward)', '2011-04-20', 13, 'https://www.gutenberg.org/ebooks/35921', 'en', 12877), +(33528, 'Simon', 'Sand, George', '2006-04-18', 32, 'https://www.gutenberg.org/ebooks/18205', 'fr', 61), +(33529, 'The Century of Inventions of the Marquis of Worcester\r\nfrom the Original MS., with Historical and Explanatory Notes and a Biographical Memoir', 'Worcester, Edward Somerset, Marquis of', '2015-03-24', 9, 'https://www.gutenberg.org/ebooks/48575', 'en', 12878), +(33530, '六祖壇經', 'Huineng', '2007-12-13', 34, 'https://www.gutenberg.org/ebooks/23844', 'zh', 12879), +(33531, 'Miscellany of Poetry\n1919', NULL, '2006-01-01', 6, 'https://www.gutenberg.org/ebooks/9652', 'en', 1594), +(33532, 'The Monk and the Hangman\'s Daughter', 'Voss, Richard', '2012-01-17', 30, 'https://www.gutenberg.org/ebooks/38602', 'en', 12880), +(33533, 'Atlantic Narratives: Modern Short Stories; Second Series', 'Singmaster, Elsie', '2012-09-09', 88, 'https://www.gutenberg.org/ebooks/40718', 'en', 179), +(33534, 'The Power and the Glory', 'Cooke, Grace MacGowan', '2003-11-01', 58, 'https://www.gutenberg.org/ebooks/10068', 'en', 2612), +(33535, 'The Great Intendant : A Chronicle of Jean Talon in Canada, 1665-1672', 'Chapais, Thomas', '2004-01-01', 15, 'https://www.gutenberg.org/ebooks/4971', 'en', 12881), +(33536, 'Toilers of the Sea', 'Hugo, Victor', '2010-05-12', 107, 'https://www.gutenberg.org/ebooks/32338', 'en', 11891), +(33537, 'The Atlantic Monthly, Volume 06, No. 36, October, 1860\r\nA Magazine Of Literature, Art, And Politics', 'Various', '2004-01-01', 6, 'https://www.gutenberg.org/ebooks/10854', 'en', 1227), +(33538, 'The Book of American Negro Poetry', NULL, '2004-04-01', 64, 'https://www.gutenberg.org/ebooks/11986', 'en', 8563), +(33539, 'The Limits of Atheism; Or, Why Should Sceptics Be Outlaws?', 'Holyoake, George Jacob', '2011-07-20', 15, 'https://www.gutenberg.org/ebooks/36798', 'en', 471), +(33540, 'Norsk literaturhistorie for gymnasiet, lærerskoler og høiere folkeskoler\r\nMed et tillæg om de forskjellige literaturarter', 'Broch, Chr. (Christian)', '2019-05-31', 31, 'https://www.gutenberg.org/ebooks/59635', 'no', 12882), +(33541, 'Scandal: A Novel', 'Hamilton, Cosmo', '2015-10-26', 12, 'https://www.gutenberg.org/ebooks/50317', 'en', 48), +(33542, 'The Vampyre; a Tale', 'Polidori, John William', '2004-07-01', 796, 'https://www.gutenberg.org/ebooks/6087', 'en', 428), +(33543, 'Kertoelmia ja jutelmia: Suomennoksia ja alkuperäisiä', 'Dilling, Lars', '2010-12-14', 15, 'https://www.gutenberg.org/ebooks/34652', 'fi', 179), +(33544, 'The Journal of Leo Tolstoi (First Volume—1895-1899)', 'Tolstoy, Leo, graf', '2014-07-13', 51, 'https://www.gutenberg.org/ebooks/46272', 'en', 12883), +(33545, 'The Prince and the Pauper, Part 2.', 'Twain, Mark', '2004-07-03', 22, 'https://www.gutenberg.org/ebooks/7155', 'en', 98), +(33546, 'Two Fishers, and Other Poems', 'Palmer, Herbert E. (Herbert Edward)', '2011-04-06', 9, 'https://www.gutenberg.org/ebooks/35780', 'en', 2100), +(33547, 'John Gayther\'s Garden and the Stories Told Therein', 'Stockton, Frank Richard', '2007-09-23', 16, 'https://www.gutenberg.org/ebooks/22737', 'en', 770), +(33548, 'The Witness', 'Hill, Grace Livingston', '2005-08-09', 62, 'https://www.gutenberg.org/ebooks/16502', 'en', 942), +(33549, 'Waldwinkel', 'Storm, Theodor', '2005-09-01', 37, 'https://www.gutenberg.org/ebooks/8921', 'de', 906), +(33550, 'The Patagonia', 'James, Henry', '2000-12-01', 36, 'https://www.gutenberg.org/ebooks/2427', 'en', 12884), +(33551, 'The Quiver, Annual Volume 10/1899', 'Various', '2013-09-12', 14, 'https://www.gutenberg.org/ebooks/43700', 'en', 1866), +(33552, 'Le dîner interrompu', 'Doin, Ernest', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/13070', 'fr', 11023), +(33553, 'King John of Jingalo: The Story of a Monarch in Difficulties', 'Housman, Laurence', '2006-06-04', 19, 'https://www.gutenberg.org/ebooks/18498', 'en', 313), +(33554, 'Food for the Traveler\nWhat to Eat and Why', 'Roper, Dora C. C. L. (Dora Cathrine Cristine Liebel)', '2008-11-12', 47, 'https://www.gutenberg.org/ebooks/27245', 'en', 103), +(33555, 'Miracles and Supernatural Religion', 'Whiton, James Morris', '2008-08-23', 26, 'https://www.gutenberg.org/ebooks/26397', 'en', 12885), +(33556, 'Oxy-Acetylene Welding and Cutting\r\nElectric, Forge and Thermit Welding together with related methods and materials used in metal working and the oxygen process for removal of carbon', 'Manly, Harold P. (Harold Phillips)', '2005-04-01', 40, 'https://www.gutenberg.org/ebooks/7969', 'en', 12886), +(33557, 'Clergymen of the Church of England', 'Trollope, Anthony', '2017-10-02', 15, 'https://www.gutenberg.org/ebooks/55665', 'en', 12887), +(33558, 'The Wooing of Calvin Parks', 'Richards, Laura Elizabeth Howe', '2010-02-18', 27, 'https://www.gutenberg.org/ebooks/31320', 'en', 757), +(33559, 'The Passing Throng', 'Guest, Edgar A. (Edgar Albert)', '2019-07-10', 67, 'https://www.gutenberg.org/ebooks/59894', 'en', 994), +(33560, 'Our People\nFrom the Collection of \"Mr. Punch\"', 'Keene, Charles', '2012-10-14', 5, 'https://www.gutenberg.org/ebooks/41057', 'en', 2965), +(33561, 'The Atlantic Monthly, Volume 03, No. 19, May, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11727', 'en', 1227), +(33562, 'Free Trade with India\r\nAn Enquiry into the True State of the Question at Issue Between His Majesty\'s Ministers, the Honorable the East India Company, and the Public at Large, on the Justice and Policy of a Free Trade to India', 'Common sense (Writer), active 1813', '2011-08-01', 6, 'https://www.gutenberg.org/ebooks/36939', 'en', 12888), +(33563, 'The Fables of Phædrus\nLiterally translated into English prose with notes', 'Phaedrus', '2008-05-18', 90, 'https://www.gutenberg.org/ebooks/25512', 'en', 12889), +(33564, 'Caesar Borgia: A Study of the Renaissance', 'Garner, John Leslie', '2018-05-10', 12, 'https://www.gutenberg.org/ebooks/57132', 'en', 12890), +(33565, 'Das unendliche Gespräch: Eine nächtliche Szene', 'Hasenclever, Walter', '2012-07-10', 13, 'https://www.gutenberg.org/ebooks/40185', 'de', 4162), +(33566, 'Encyclopaedia Britannica, 11th Edition, Volume 5, Appendix: Author List', 'Various', '2010-08-21', 10, 'https://www.gutenberg.org/ebooks/33477', 'en', 1081), +(33567, 'The Girl\'s Own Paper, Vol. XX. No. 1008, April 22, 1899', 'Various', '2019-02-23', 14, 'https://www.gutenberg.org/ebooks/58946', 'en', 563), +(33568, 'The Doctrine of the Lord\'s Supper. As Taught by the Church of England', 'Hoare, Edward', '2016-06-30', 5, 'https://www.gutenberg.org/ebooks/52440', 'en', 12891), +(33569, 'Jorrocks\' Jaunts and Jollities', 'Surtees, Robert Smith', '2005-03-16', 40, 'https://www.gutenberg.org/ebooks/15387', 'en', 176), +(33570, 'Bonaparte in Egypt and the Egyptians of To-day', 'Browne, Abdullah', '2012-06-11', 20, 'https://www.gutenberg.org/ebooks/39971', 'en', 12892), +(33571, 'Hope Benham: A Story for Girls', 'Perry, Nora', '2011-05-14', 92, 'https://www.gutenberg.org/ebooks/36105', 'en', 12893), +(33572, 'Report on the Radiolaria Collected by H.M.S. Challenger During the Years 1873-1876, First Part: Porulosa (Spumellaria and Acantharia)\nReport on the Scientific Results of the Voyage of H.M.S. Challenger During the Years 1873-76, Vol. XVIII', 'Haeckel, Ernst', '2013-12-27', 22, 'https://www.gutenberg.org/ebooks/44525', 'en', 922), +(33573, 'The Boy Scouts Patrol', 'Victor, Ralph', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/5602', 'en', 1002), +(33574, 'Gevleugelde Daden: Avonturen der Eerste Hollandsche Luchtschippers', 'Heijermans, Herman', '2006-12-08', 13, 'https://www.gutenberg.org/ebooks/20060', 'nl', 12894), +(33575, 'Hints for Lovers', 'Haultain, Arnold', '2004-12-04', 93, 'https://www.gutenberg.org/ebooks/14255', 'en', 5136), +(33576, 'Friedrich Nietzsche: Ein Kämpfer gegen seine Zeit', 'Steiner, Rudolf', '2016-11-24', 40, 'https://www.gutenberg.org/ebooks/53592', 'de', 5723), +(33577, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 532, February 4, 1832', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11515', 'en', 133), +(33578, 'A Lecture on the Study of History', 'Acton, John Emerich Edward Dalberg Acton, Baron', '2008-06-07', 16, 'https://www.gutenberg.org/ebooks/25720', 'en', 1098), +(33579, 'The Fatal Glove', 'Augusta, Clara', '2005-06-04', 17, 'https://www.gutenberg.org/ebooks/15989', 'en', 61), +(33580, 'Οθέλλος\r\nΣαικσπείρου Τραγωδίαι Μέρος Β\'', 'Shakespeare, William', '2010-06-13', 22, 'https://www.gutenberg.org/ebooks/32797', 'el', 1298), +(33581, 'The Ocean Wireless Boys and the Lost Liner', 'Goldfrap, John Henry', '2012-11-02', 26, 'https://www.gutenberg.org/ebooks/41265', 'en', 196), +(33582, 'The Man Who Couldn\'t Sleep', 'Stringer, Arthur', '2010-11-25', 19, 'https://www.gutenberg.org/ebooks/33645', 'en', 1660), +(33583, 'The Bickerstaff-Partridge Papers', 'Swift, Jonathan', '1997-11-01', 38, 'https://www.gutenberg.org/ebooks/1090', 'en', 1971), +(33584, 'The American Missionary — Volume 41, No. 12, December, 1887', 'Various', '2018-06-10', 1, 'https://www.gutenberg.org/ebooks/57300', 'en', 395), +(33585, 'A Day with Samuel Taylor Coleridge', 'Byron, May', '2011-06-06', 11, 'https://www.gutenberg.org/ebooks/36337', 'en', 532), +(33586, 'Kaksikymmentä: novellikokoelma', 'Chekhov, Anton Pavlovich', '2016-07-29', 9, 'https://www.gutenberg.org/ebooks/52672', 'fi', 4710), +(33587, 'A Young Hero', 'Fenn, George Manville', '2007-05-08', 12, 'https://www.gutenberg.org/ebooks/21380', 'en', 12895), +(33588, 'Raatimiehen tytär\nHistoriallis-romantillinen näytelmä kolmessa näytöksessä', 'Jahnsson, Evald Ferdinand', '2007-01-02', 13, 'https://www.gutenberg.org/ebooks/20252', 'fi', 247), +(33589, 'Punch, or the London Charivari, Volume 101, November 7, 1891', 'Various', '2004-11-17', 11, 'https://www.gutenberg.org/ebooks/14067', 'en', 134), +(33590, 'An Artist in Egypt', 'Tyndale, Walter', '2018-11-25', 20, 'https://www.gutenberg.org/ebooks/58348', 'en', 2589), +(33591, 'Forward, Children!', 'Bartlett, Paul Alexander', '2014-01-19', 39, 'https://www.gutenberg.org/ebooks/44717', 'en', 12896), +(33592, 'Preface to a Dictionary of the English Language', 'Johnson, Samuel', '2004-04-01', 88, 'https://www.gutenberg.org/ebooks/5430', 'en', 12897), +(33593, 'The Court Jester', 'Baker, Cornelia', '2010-11-27', 22, 'https://www.gutenberg.org/ebooks/34460', 'en', 12898), +(33594, 'History of the Church of Jesus Christ of Latter-day Saints, Volume 2', 'Church of Jesus Christ of Latter-day Saints', '2014-10-24', 47, 'https://www.gutenberg.org/ebooks/47192', 'en', 7710), +(33595, 'The Court of Philip IV.: Spain in Decadence', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2015-10-03', 12, 'https://www.gutenberg.org/ebooks/50125', 'en', 7832), +(33596, 'Riconciliazione', 'Guidi, Tommasina', '2007-09-04', 8, 'https://www.gutenberg.org/ebooks/22505', 'it', 61), +(33597, 'Aina: Kertomus 1808-09 sodasta', 'Åberg, J. O. (Johan Olof)', '2015-08-31', 9, 'https://www.gutenberg.org/ebooks/49834', 'fi', 890), +(33598, 'Mike Fletcher: A Novel', 'Moore, George', '2005-09-21', 6, 'https://www.gutenberg.org/ebooks/16730', 'en', 61), +(33599, 'The Kindred of the Wild: A Book of Animal Life', 'Roberts, Charles G. D., Sir', '2014-06-20', 22, 'https://www.gutenberg.org/ebooks/46040', 'en', 1787), +(33600, 'Peter Pan in Kensington Gardens', 'Barrie, J. M. (James Matthew)', '2008-10-24', 73, 'https://www.gutenberg.org/ebooks/26999', 'en', 12899), +(33601, '管子', 'Guan, Zhong', '2005-01-01', 22, 'https://www.gutenberg.org/ebooks/7367', 'zh', 3637), +(33602, 'Mariner Mission to Venus', 'Jet Propulsion Laboratory (U.S.)', '2017-04-21', 19, 'https://www.gutenberg.org/ebooks/54585', 'en', 12900), +(33603, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 17, No. 100, April, 1876', 'Various', '2004-08-21', 29, 'https://www.gutenberg.org/ebooks/13242', 'en', 210), +(33604, 'Dangers of the Trail in 1865: A Narrative of Actual Events', 'Young, Charles E. (Charles Edward)', '2008-10-28', 20, 'https://www.gutenberg.org/ebooks/27077', 'en', 497), +(33605, 'A Bibliography of Bibliography; Or, a Handy Book About Books Which Relate to Books', 'Sabin, Joseph', '2016-01-14', 14, 'https://www.gutenberg.org/ebooks/50919', 'en', 12901), +(33606, 'Discourses on Satire and on Epic Poetry', 'Dryden, John', '2001-05-01', 58, 'https://www.gutenberg.org/ebooks/2615', 'en', 1999), +(33607, 'Miten haluatte', 'Shakespeare, William', '2013-08-22', 16, 'https://www.gutenberg.org/ebooks/43532', 'fi', 907), +(33608, 'The Works of Mark Twain: An Index of all Project Gutenberg Editions', 'Twain, Mark', '2009-05-14', 87, 'https://www.gutenberg.org/ebooks/28803', 'en', 198), +(33609, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 8 of 9]', 'Shakespeare, William', '2015-05-21', 33, 'https://www.gutenberg.org/ebooks/49008', 'en', 1088), +(33610, 'The Scarlet Stigma: A Drama in Four Acts', 'Smith, James Edgar', '2010-01-28', 8, 'https://www.gutenberg.org/ebooks/31112', 'en', 12219), +(33611, 'A Few Practical Suggestions\r\nSociety for Pure English, Tract 03 (1920)', 'Society for Pure English', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12390', 'en', 12902), +(33612, 'A Creature of the Night: An Italian Enigma', 'Hume, Fergus', '2017-08-30', 28, 'https://www.gutenberg.org/ebooks/55457', 'en', 9134), +(33613, 'Alice\'s Abenteuer im Wunderland', 'Carroll, Lewis', '2006-11-13', 299, 'https://www.gutenberg.org/ebooks/19778', 'de', 580), +(33614, 'Father Brighthopes; Or, An Old Clergyman\'s Vacation', 'Trowbridge, J. T. (John Townsend)', '2010-07-22', 14, 'https://www.gutenberg.org/ebooks/33221', 'en', 1817), +(33615, 'Six days of the Irish Republic\nA Narrative and Critical Account of the Latest Phase of Irish Politics', 'Redmond-Howard, L. G., (Louis George)', '2008-01-15', 21, 'https://www.gutenberg.org/ebooks/24296', 'en', 1786), +(33616, 'Nothing to Eat', 'Alger, Horatio, Jr.', '2004-06-01', 50, 'https://www.gutenberg.org/ebooks/5868', 'en', 8), +(33617, 'Crimes of Preachers in the United States and Canada', 'Billings, M. E.', '2018-08-24', 25, 'https://www.gutenberg.org/ebooks/57764', 'en', 12622), +(33618, 'Uncle Tom\'s Cabin, Young Folks\' Edition', 'Stowe, Harriet Beecher', '2004-02-01', 169, 'https://www.gutenberg.org/ebooks/11171', 'en', 6156), +(33619, 'The Scarlet Letter', 'Hawthorne, Nathaniel', '2008-05-05', 1349, 'https://www.gutenberg.org/ebooks/25344', 'en', 9472), +(33620, 'Magyarhon szépségei; A legvitézebb huszár', 'Jókai, Mór', '2012-12-10', 8, 'https://www.gutenberg.org/ebooks/41601', 'hu', 12903), +(33621, 'The Military Journals of Two Private Soldiers, 1758-1775\nWith Numerous Illustrative Notes', 'Tomlinson, Abraham', '2007-02-21', 40, 'https://www.gutenberg.org/ebooks/20636', 'en', 12904), +(33622, '1001 Questions and Answers on Orthography and Reading', 'Hathaway, Benjamin Adams', '2004-12-21', 138, 'https://www.gutenberg.org/ebooks/14403', 'en', 9298), +(33623, 'Œuvres Complètes de Chamfort (Tome 5)\r\nrecueillies et publiées, avec une notice historique sur la vie et les écrits de l\'auteur.', 'Chamfort, Sébastien-Roch-Nicolas', '2013-12-06', 31, 'https://www.gutenberg.org/ebooks/44373', 'fr', 742), +(33624, 'The Dream Doctor', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/5054', 'en', 9747), +(33625, 'The Teaching of Geometry', 'Smith, David Eugene', '2011-10-10', 21, 'https://www.gutenberg.org/ebooks/37681', 'en', 10782), +(33626, 'Diary of Samuel Pepys — Volume 62: February 1667-68', 'Pepys, Samuel', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/4186', 'en', 478), +(33627, 'The Cavaliers of Virginia, vol. 2 of 2\r\nor, The Recluse of Jamestown; An historical romance of the Old Dominion', 'Caruthers, William Alexander', '2011-07-16', 6, 'https://www.gutenberg.org/ebooks/36753', 'en', 4969), +(33628, 'Glacières; or, Freezing Caverns', 'Balch, Edwin Swift', '2016-06-02', 17, 'https://www.gutenberg.org/ebooks/52216', 'en', 12905), +(33629, 'Chambers\'s Edinburgh Journal, No. 450\nVolume 18, New Series, August 14, 1852', 'Various', '2007-07-27', 11, 'https://www.gutenberg.org/ebooks/22161', 'en', 18), +(33630, 'Rodney, the Ranger, with Daniel Morgan on Trail and Battlefield', 'Lane, John V. (John Veasey)', '2009-08-03', 19, 'https://www.gutenberg.org/ebooks/29589', 'en', 2843), +(33631, 'Kreativity For Kats', 'Leiber, Fritz', '2016-03-18', 42, 'https://www.gutenberg.org/ebooks/51493', 'en', 179), +(33632, 'Scientific American Supplement, No. 620, November 19,1887', 'Various', '2005-07-24', 13, 'https://www.gutenberg.org/ebooks/16354', 'en', 210), +(33633, 'Cyclopedia of Commerce, Accountancy, Business Administration, v. 01 (of 10)', 'American School of Correspondence', '2014-07-26', 46, 'https://www.gutenberg.org/ebooks/46424', 'en', 12201), +(33634, '\"My Novel\" — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7703', 'en', 6875), +(33635, 'Yolanda of Cyprus', 'Rice, Cale Young', '2010-09-27', 7, 'https://www.gutenberg.org/ebooks/34004', 'en', 508), +(33636, 'Indian Linguistic Families of America, North of Mexico\r\nSeventh Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1885-1886, Government Printing Office, Washington, 1891, pages 1-142', 'Powell, John Wesley', '2005-12-12', 26, 'https://www.gutenberg.org/ebooks/17286', 'en', 6903), +(33637, 'Muoto- ja muistikuvia I', 'Aspelin-Haapkylä, Eliel', '2015-11-28', 10, 'https://www.gutenberg.org/ebooks/50541', 'fi', 12742), +(33638, 'The Central Eskimo\r\nSixth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1884-1885, Government Printing Office, Washington, 1888, pages 399-670', 'Boas, Franz', '2013-02-12', 86, 'https://www.gutenberg.org/ebooks/42084', 'en', 12906), +(33639, 'Memoria sobre a descoberta das ilhas de Porto Santo e Madeira 1418-1419\n(Fragmento de um livro inedito)', 'Bettencourt, Emiliano Augusto de', '2010-03-09', 12, 'https://www.gutenberg.org/ebooks/31576', 'pt', 12907), +(33640, 'Das zweite Gesicht: Eine Liebesgeschichte', 'Löns, Hermann', '2017-07-02', 6, 'https://www.gutenberg.org/ebooks/55033', 'de', 2499), +(33641, 'The Forty-Five Guardsmen', 'Dumas, Alexandre', '2004-10-05', 74, 'https://www.gutenberg.org/ebooks/13626', 'en', 9760), +(33642, 'The Life of Napoleon Bonaparte. Vol. 4 (of 4)', 'Sloane, William Milligan', '2011-01-03', 27, 'https://www.gutenberg.org/ebooks/34838', 'en', 12908), +(33643, 'Á Ilha da Madeira', 'Coelho, José Ramos', '2008-12-04', 12, 'https://www.gutenberg.org/ebooks/27413', 'pt', 8), +(33644, 'Martin Chuzzlewit', 'Dickens, Charles', '2006-01-01', 6, 'https://www.gutenberg.org/ebooks/9699', 'en', 10510), +(33645, 'He Fell in Love with His Wife', 'Roe, Edward Payson', '2000-08-01', 17, 'https://www.gutenberg.org/ebooks/2271', 'en', 675), +(33646, 'Unawares: A Story of an Old French Town', 'Peard, Frances Mary', '2013-07-08', 9, 'https://www.gutenberg.org/ebooks/43156', 'en', 2118), +(33647, 'The Fantasy Fan February 1934\nThe Fans\' Own Magazine', 'Various', '2014-08-18', 16, 'https://www.gutenberg.org/ebooks/46616', 'en', 928), +(33648, 'A Book of Old Ballads — Volume 1', NULL, '2005-02-01', 21, 'https://www.gutenberg.org/ebooks/7531', 'en', 921), +(33649, 'The Insurrection in Paris', 'Davy (An Englishman)', '2006-11-24', 7, 'https://www.gutenberg.org/ebooks/19912', 'en', 477), +(33650, 'Early Theories of Translation', 'Amos, Flora Ross', '2007-08-18', 26, 'https://www.gutenberg.org/ebooks/22353', 'en', 12909), +(33651, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 6: Parthia\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 70, 'https://www.gutenberg.org/ebooks/16166', 'en', 2877), +(33652, 'The Girl\'s Own Paper, Vol. XX, No. 988, December 3, 1898', 'Various', '2015-12-27', 12, 'https://www.gutenberg.org/ebooks/50773', 'en', 563), +(33653, 'The Peacock \'At Home:\'\nA Sequel to the Butterfly\'s Ball', 'Dorset, Catherine Ann Turner', '2007-11-01', 12, 'https://www.gutenberg.org/ebooks/23281', 'en', 12910), +(33654, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 8, August, 1880', 'Various', '2009-05-03', 22, 'https://www.gutenberg.org/ebooks/28669', 'en', 1829), +(33655, 'I Vårbrytningen', 'Strindberg, August', '2010-11-07', 17, 'https://www.gutenberg.org/ebooks/34236', 'sv', 5198), +(33656, 'Her Father\'s Daughter', 'Stratton-Porter, Gene', '1997-05-01', 109, 'https://www.gutenberg.org/ebooks/904', 'en', 12104), +(33657, 'The Republic of Plato', 'Plato', '2017-07-26', 559, 'https://www.gutenberg.org/ebooks/55201', 'en', 104), +(33658, 'Continuação do Portugal enfermo por vicios, e abusos de ambos os sexos', 'Costa, José Daniel Rodrigues da', '2010-03-23', 3, 'https://www.gutenberg.org/ebooks/31744', 'pt', 12911), +(33659, 'Daughters of the Cross: or Woman\'s Mission', 'Eddy, Daniel C. (Daniel Clarke)', '2005-07-01', 7, 'https://www.gutenberg.org/ebooks/8579', 'en', 12912), +(33660, 'Goldsmith\'s Friend Abroad Again', 'Twain, Mark', '2004-09-17', 22, 'https://www.gutenberg.org/ebooks/3191', 'en', 5532), +(33661, 'Comfort Pease and her Gold Ring', 'Freeman, Mary Eleanor Wilkins', '2006-03-01', 19, 'https://www.gutenberg.org/ebooks/17888', 'en', 62), +(33662, 'Vingt années de Paris', 'Gill, André', '2009-12-17', 15, 'https://www.gutenberg.org/ebooks/30696', 'fr', 12913), +(33663, 'The Lock and Key Library: The most interesting stories of all nations: American', NULL, '2000-01-01', 149, 'https://www.gutenberg.org/ebooks/2043', 'en', 112), +(33664, 'How Canada Was Won: A Tale of Wolfe and Quebec', 'Brereton, F. S. (Frederick Sadleir)', '2013-07-30', 16, 'https://www.gutenberg.org/ebooks/43364', 'en', 4783), +(33665, 'Love and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 138, 'https://www.gutenberg.org/ebooks/13414', 'en', 934), +(33666, 'George Sand: Some Aspects of Her Life and Writings', 'Doumic, René', '2006-03-11', 99, 'https://www.gutenberg.org/ebooks/138', 'en', 6823), +(33667, 'How I write my novels', 'Duchess', '2008-12-25', 27, 'https://www.gutenberg.org/ebooks/27621', 'en', 935), +(33668, 'Doctor Rabbit and Ki-Yi Coyote', 'Hinkle, Thomas C. (Thomas Clark)', '2018-07-20', 17, 'https://www.gutenberg.org/ebooks/57556', 'en', 3242), +(33669, 'In the Fourth Year: Anticipations of a World Peace', 'Wells, H. G. (Herbert George)', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/10291', 'en', 3003), +(33670, 'European Fungus Flora: Agaricaceae', 'Massee, George', '2010-06-28', 26, 'https://www.gutenberg.org/ebooks/33013', 'en', 12914), +(33671, 'Geschichte der Neueren Deutschen Chirurgie', 'Küster, Ernst Georg Ferdinand', '2012-04-24', 19, 'https://www.gutenberg.org/ebooks/39529', 'de', 12915), +(33672, 'That Awful Letter: A Comedy for Girls', 'MacKenzie, Edna I.', '2016-08-16', 14, 'https://www.gutenberg.org/ebooks/52818', 'en', 12916), +(33673, 'Robert Kimberly', 'Spearman, Frank H. (Frank Hamilton)', '2012-11-21', 21, 'https://www.gutenberg.org/ebooks/41433', 'en', 109), +(33674, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 369, May 9, 1829', 'Various', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11343', 'en', 133), +(33675, 'The Future in America: A Search After Realities', 'Wells, H. G. (Herbert George)', '2018-02-02', 36, 'https://www.gutenberg.org/ebooks/56484', 'en', 7462), +(33676, 'Diritti dell\'Anima', 'Giacosa, Giuseppe', '2008-04-26', 16, 'https://www.gutenberg.org/ebooks/25176', 'it', 407), +(33677, 'Robert Elsmere', 'Ward, Humphry, Mrs.', '2008-03-23', 13, 'https://www.gutenberg.org/ebooks/24898', 'en', 1397), +(33678, 'L\'Illustration, No. 1607, 13 décembre 1873', 'Various', '2013-11-10', 3, 'https://www.gutenberg.org/ebooks/44141', 'fr', 150), +(33679, 'Travels in the Interior of Africa — Volume 01', 'Park, Mungo', '2004-03-01', 55, 'https://www.gutenberg.org/ebooks/5266', 'en', 12917), +(33680, 'All Round the Year', 'Nesbit, E. (Edith)', '2007-01-20', 69, 'https://www.gutenberg.org/ebooks/20404', 'en', 8), +(33681, 'The American Missionary — Volume 44, No. 10, October, 1890', 'Various', '2005-01-07', 2, 'https://www.gutenberg.org/ebooks/14631', 'en', 562), +(33682, 'Strange Survivals: Some Chapters in the History of Man', 'Baring-Gould, S. (Sabine)', '2016-05-09', 31, 'https://www.gutenberg.org/ebooks/52024', 'en', 5025), +(33683, 'The Widow Barnaby. Vol. 1 (of 3)', 'Trollope, Frances Milton', '2011-06-30', 19, 'https://www.gutenberg.org/ebooks/36561', 'en', 45); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(33684, 'Punch, or the London Charivari, Volume 108, March 2nd 1895', 'Various', '2014-03-09', 13, 'https://www.gutenberg.org/ebooks/45093', 'en', 134), +(33685, 'Pictures of Southern Life, Social, Political, and Military.', 'Russell, William Howard, Sir', '2012-09-10', 14, 'https://www.gutenberg.org/ebooks/40727', 'en', 1717), +(33686, 'Great Expectations', 'Dickens, Charles', '1998-07-01', 4543, 'https://www.gutenberg.org/ebooks/1400', 'en', 654), +(33687, 'Antinous: A Poem', 'Pessoa, Fernando', '2008-01-12', 41, 'https://www.gutenberg.org/ebooks/24262', 'en', 12918), +(33688, 'The Secret of the Tower', 'Hope, Anthony', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10057', 'en', 2934), +(33689, 'Regles pour les officieres du monastere de l\'Annonciade, fondé à Genes l\'année de notre Salut 1604', 'Ordine della Santissima Annunziata', '2018-08-28', 7, 'https://www.gutenberg.org/ebooks/57790', 'fr', 10868), +(33690, 'Harper\'s Round Table, March 31, 1896', 'Various', '2018-02-25', 0, 'https://www.gutenberg.org/ebooks/56642', 'en', 668), +(33691, 'Bob\'s Redemption\nCaptains All, Book 5.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11185', 'en', 1902), +(33692, 'A Brief Account of Radio-activity', 'Venable, F. P. (Francis Preston)', '2010-05-09', 19, 'https://www.gutenberg.org/ebooks/32307', 'en', 7331), +(33693, 'Dafnis y Cloe; leyendas del antiguo Oriente (fragmentos)', 'Valera, Juan', '2016-10-20', 12, 'https://www.gutenberg.org/ebooks/53330', 'es', 12919), +(33694, 'Brothers of Peril: A Story of old Newfoundland', 'Goodridge Roberts, Theodore', '2013-12-08', 8, 'https://www.gutenberg.org/ebooks/44387', 'en', 2112), +(33695, 'Arteriosclerosis and Hypertension, with Chapters on Blood Pressure\r\n3rd Edition.', 'Warfield, Louis M. (Louis Marshall)', '2011-10-09', 18, 'https://www.gutenberg.org/ebooks/37675', 'en', 12920), +(33696, 'Diary of Samuel Pepys — Volume 49: January 1666-67', 'Pepys, Samuel', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/4172', 'en', 201), +(33697, 'Cups and Their Customs', 'Roberts, George Edwin', '2014-03-29', 10, 'https://www.gutenberg.org/ebooks/45255', 'en', 12921), +(33698, 'Miriam\'s Schooling and Other Papers', 'White, William Hale', '2005-04-02', 7, 'https://www.gutenberg.org/ebooks/15525', 'en', 179), +(33699, 'The Crew of the Water Wagtail', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 36, 'https://www.gutenberg.org/ebooks/21710', 'en', 1447), +(33700, 'Little Tora, The Swedish Schoolmistress and Other Stories', 'Baker, Sarah S. (Sarah Schoonmaker)', '2007-08-01', 24, 'https://www.gutenberg.org/ebooks/22195', 'en', 1817), +(33701, 'Harbaugh\'s Harfe: Gedichte in Pennsylvanisch-Deutscher Mundart', 'Harbaugh, Henry', '2016-03-15', 7, 'https://www.gutenberg.org/ebooks/51467', 'de', 12922), +(33702, 'Portrait and Biography of Parson Brownlow, The Tennessee Patriot', 'Brownlow, William Gannaway', '2011-01-30', 12, 'https://www.gutenberg.org/ebooks/35122', 'en', 12923), +(33703, 'Christopher Columbus: His Life and His Work', 'Adams, Charles Kendall', '2017-06-18', 13, 'https://www.gutenberg.org/ebooks/54929', 'en', 2036), +(33704, 'The Coming of the Friars', 'Jessopp, Augustus', '2004-10-01', 17, 'https://www.gutenberg.org/ebooks/6625', 'en', 11945), +(33705, 'Lehrbuch der Perspective', 'Conz, Gustav', '2014-11-30', 8, 'https://www.gutenberg.org/ebooks/47502', 'de', 7854), +(33706, 'A People\'s Man', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-12-10', 20, 'https://www.gutenberg.org/ebooks/17272', 'en', 128), +(33707, 'Le Tour du Monde; Les Yakoutes\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2007-10-17', 5, 'https://www.gutenberg.org/ebooks/23047', 'fr', 1673), +(33708, 'Πρωτοχρονιάτικα διηγήματα', 'Papadiamantes, Alexandros', '2013-02-11', 14, 'https://www.gutenberg.org/ebooks/42070', 'el', 1348), +(33709, 'Rameaun veljenpoika: Filosofinen vuorokeskustelu', 'Diderot, Denis', '2015-07-21', 21, 'https://www.gutenberg.org/ebooks/49498', 'fi', 12924), +(33710, 'Letters to His Son, 1753-54\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/3357', 'en', 740), +(33711, 'St. Gregory and the Gregorian Music', 'Wyatt, E. G. P. (Edward Gerald Penfold)', '2010-03-10', 30, 'https://www.gutenberg.org/ebooks/31582', 'en', 12925), +(33712, 'The Standard Electrical Dictionary\nA Popular Dictionary of Words and Terms Used in the Practice\nof Electrical Engineering', 'Sloane, T. O\'Conor (Thomas O\'Conor)', '2008-09-05', 41, 'https://www.gutenberg.org/ebooks/26535', 'en', 12926), +(33713, 'Ralph Waldo Emerson', 'Holmes, Oliver Wendell', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12700', 'en', 131), +(33714, 'History of the Inquisition from Its Establishment Till the Present Time', 'Sime, William', '2017-02-06', 11, 'https://www.gutenberg.org/ebooks/54115', 'en', 8384), +(33715, 'Ridgway of Montana (Story of To-Day, in Which the Hero Is Also the Villain)', 'Raine, William MacLeod', '2000-08-01', 15, 'https://www.gutenberg.org/ebooks/2285', 'en', 315), +(33716, 'The Monk of Hambleton', 'Livingston, Armstrong', '2009-11-11', 10, 'https://www.gutenberg.org/ebooks/30450', 'en', 128), +(33717, 'The Childrens\' Story of the War, Volume 1 (of 10)\r\nFrom the Beginning of the War to the Landing of the British Army in France', 'Parrott, Edward', '2011-02-18', 11, 'https://www.gutenberg.org/ebooks/35310', 'en', 1250), +(33718, 'A Romance of Youth — Volume 2', 'Coppée, François', '2003-04-01', 6, 'https://www.gutenberg.org/ebooks/3959', 'en', 560), +(33719, 'The Great Round World and What Is Going On In It, Vol. 1, No. 57, December 9, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-07-03', 27, 'https://www.gutenberg.org/ebooks/16192', 'en', 1), +(33720, 'The Historical Jesus: A Survey of Positions', 'Robertson, J. M. (John Mackinnon)', '2016-04-04', 19, 'https://www.gutenberg.org/ebooks/51655', 'en', 5594), +(33721, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 724\nNovember 10, 1877', 'Various', '2015-12-29', 4, 'https://www.gutenberg.org/ebooks/50787', 'en', 18), +(33722, 'The Survivor', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-11-10', 42, 'https://www.gutenberg.org/ebooks/17040', 'en', 128), +(33723, 'The Peasant and the Prince', 'Martineau, Harriet', '2007-10-31', 23, 'https://www.gutenberg.org/ebooks/23275', 'en', 7086), +(33724, 'Prisoners: Fast Bound In Misery And Iron', 'Cholmondeley, Mary', '2006-07-16', 20, 'https://www.gutenberg.org/ebooks/18834', 'en', 109), +(33725, 'A Political and Social History of Modern Europe V.1.', 'Hayes, Carlton J. H. (Carlton Joseph Huntley)', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6417', 'en', 6990), +(33726, 'Defense of the Faith and the Saints (Volume 1 of 2)', 'Roberts, B. H. (Brigham Henry)', '2014-12-21', 32, 'https://www.gutenberg.org/ebooks/47730', 'en', 310), +(33727, 'Wanderings in the Orient', 'Reese, A. M. (Albert Moore)', '2008-09-26', 21, 'https://www.gutenberg.org/ebooks/26707', 'en', 12927), +(33728, 'The Shades of the Wilderness: A Story of Lee\'s Great Stand', 'Altsheler, Joseph A. (Joseph Alexander)', '2004-06-01', 33, 'https://www.gutenberg.org/ebooks/12532', 'en', 491), +(33729, 'Az akarat szabadságáról', 'Schopenhauer, Arthur', '2013-03-02', 23, 'https://www.gutenberg.org/ebooks/42242', 'hu', 6550), +(33730, 'Rashi', 'Liber, Maurice', '2002-04-01', 40, 'https://www.gutenberg.org/ebooks/3165', 'en', 12928), +(33731, 'The Story of a New York House', 'Bunner, H. C. (Henry Cuyler)', '2009-12-13', 12, 'https://www.gutenberg.org/ebooks/30662', 'en', 1660), +(33732, 'The Factory Boy', 'Leslie, Madeline', '2013-08-03', 10, 'https://www.gutenberg.org/ebooks/43390', 'en', 470), +(33733, 'The Sea Fairies', 'Baum, L. Frank (Lyman Frank)', '2015-04-24', 55, 'https://www.gutenberg.org/ebooks/48778', 'en', 2203), +(33734, 'L\'Amuleto', 'Neera', '2006-03-17', 13, 'https://www.gutenberg.org/ebooks/18008', 'it', 61), +(33735, 'Winchester: A Sketch-Book', 'Home, Gordon', '2017-03-09', 7, 'https://www.gutenberg.org/ebooks/54327', 'en', 12929), +(33736, 'Ireton, a Poem', 'Bailey, Thomas', '2019-08-17', 114, 'https://www.gutenberg.org/ebooks/60112', 'en', 12930), +(33737, '菜根譚', 'Hong, Zicheng, active 1596', '2007-12-27', 47, 'https://www.gutenberg.org/ebooks/24050', 'zh', 740), +(33738, 'The Complete Cynic\r\nBeing Bunches of Wisdom Culled from the Calendars of Oliver Herford, Ethel Watts Mumford, Addison Mizner', 'Mizner, Addison', '2014-02-24', 35, 'https://www.gutenberg.org/ebooks/44989', 'en', 12931), +(33739, 'Anssin Jukka ja Härmän Häät', NULL, '2003-11-01', 1, 'https://www.gutenberg.org/ebooks/10265', 'fi', 4596), +(33740, 'Elijah the Tishbite. Miscellaneous Writings of C. H. Mackintosh, vol. V', 'Mackintosh, Charles Henry', '2012-08-16', 19, 'https://www.gutenberg.org/ebooks/40515', 'en', 3575), +(33741, 'A Book of Scoundrels', 'Whibley, Charles', '2006-02-22', 20, 'https://www.gutenberg.org/ebooks/1632', 'en', 6098), +(33742, 'Maids, Wives, and Bachelors', 'Barr, Amelia E.', '2010-04-25', 20, 'https://www.gutenberg.org/ebooks/32135', 'en', 1619), +(33743, 'The Great Pearl Secret', 'Williamson, A. M. (Alice Muriel)', '2018-01-31', 24, 'https://www.gutenberg.org/ebooks/56470', 'en', 574), +(33744, 'Documenti Umani', 'De Roberto, Federico', '2008-04-26', 12, 'https://www.gutenberg.org/ebooks/25182', 'it', 474), +(33745, 'Hand-Craft: The Most Reliable Basis of Technical Education in Schools and Classes', 'Sutcliffe, John D.', '2011-09-16', 54, 'https://www.gutenberg.org/ebooks/37447', 'en', 12932), +(33746, 'Tales and Novels of J. de La Fontaine — Volume 18', 'La Fontaine, Jean de', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/5292', 'en', 2629), +(33747, 'The Lonely', 'Merril, Judith', '2016-09-20', 24, 'https://www.gutenberg.org/ebooks/53102', 'en', 179), +(33748, 'Avoidance Situation', 'McConnell, James V.', '2019-05-05', 61, 'https://www.gutenberg.org/ebooks/59438', 'en', 12933), +(33749, 'Books and Persons; Being Comments on a Past Epoch, 1908-1911', 'Bennett, Arnold', '2005-04-26', 53, 'https://www.gutenberg.org/ebooks/15717', 'en', 2145), +(33750, 'Zero the Slaver: A Romance of Equatorial Africa', 'Fletcher, Lawrence', '2010-06-20', 9, 'https://www.gutenberg.org/ebooks/32909', 'en', 2126), +(33751, 'The Innocence of Father Brown', 'Chesterton, G. K. (Gilbert Keith)', '2007-05-22', 50, 'https://www.gutenberg.org/ebooks/21522', 'en', 95), +(33752, 'Stranger Than Fiction: Being Tales from the Byways of Ghosts and Folk-lore', 'Lewes, Mary L.', '2011-07-04', 46, 'https://www.gutenberg.org/ebooks/36595', 'en', 1245), +(33753, 'The British Barbarians', 'Allen, Grant', '2003-08-01', 26, 'https://www.gutenberg.org/ebooks/4340', 'en', 1902), +(33754, 'New House That Jack Built. An Original American Version', 'Whitehead, L. (Lewis)', '2014-03-07', 2, 'https://www.gutenberg.org/ebooks/45067', 'en', 3255), +(33755, 'Scarhaven Keep', 'Fletcher, J. S. (Joseph Smith)', '2006-02-01', 82, 'https://www.gutenberg.org/ebooks/9807', 'en', 128), +(33756, 'Eternal Father, Strong to Save\na.k.a., Navy Hymn', 'Dykes, John Bacchus', '2005-12-31', 5, 'https://www.gutenberg.org/ebooks/17424', 'en', 12934), +(33757, 'Why They Married', 'Flagg, James Montgomery', '2007-11-24', 10, 'https://www.gutenberg.org/ebooks/23611', 'en', 2624), +(33758, 'Smith and the Pharaohs, and other Tales', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 70, 'https://www.gutenberg.org/ebooks/6073', 'en', 409), +(33759, 'Cricket Songs', 'Gale, Norman', '2014-11-15', 6, 'https://www.gutenberg.org/ebooks/47354', 'en', 12935), +(33760, 'Looking Back: An Autobiography', 'Richardson, Merrick Abner', '2014-07-14', 10, 'https://www.gutenberg.org/ebooks/46286', 'en', 12936), +(33761, 'A New Voyage Round the World by a Course Never Sailed Before', 'Defoe, Daniel', '2011-04-05', 39, 'https://www.gutenberg.org/ebooks/35774', 'en', 323), +(33762, 'Syndrome Johnny', 'Dye, Charles', '2016-02-16', 26, 'https://www.gutenberg.org/ebooks/51231', 'en', 12937), +(33763, 'Humanity\'s Gain from Unbelief\nReprinted from the \"North American Review\" of March, 1889', 'Bradlaugh, Charles', '2009-10-06', 7, 'https://www.gutenberg.org/ebooks/30206', 'en', 1191), +(33764, 'Back to Methuselah: A Metabiological Pentateuch', 'Shaw, Bernard', '2004-08-02', 113, 'https://www.gutenberg.org/ebooks/13084', 'en', 402), +(33765, 'The Memoirs of François René Vicomte de Chateaubriand sometime Ambassador to England, Volume 1 (of 6)\nMémoires d\'outre-tombe, volume 1', 'Chateaubriand, François-René, vicomte de', '2017-05-18', 32, 'https://www.gutenberg.org/ebooks/54743', 'en', 7678), +(33766, 'Workshop on Electronic Texts: Proceedings, 9-10 June 1992', 'Library of Congress', '1993-02-01', 179, 'https://www.gutenberg.org/ebooks/53', 'en', 12938), +(33767, 'Arago et sa vie scientifique', 'Bertrand, Joseph', '2008-08-19', 19, 'https://www.gutenberg.org/ebooks/26363', 'fr', 12939), +(33768, 'A Complete Classified List of Books, Pamphlets, Etc., Published Exclusively by The Open Court Publishing Co.', 'Open Court Publishing Company', '2017-10-07', 13, 'https://www.gutenberg.org/ebooks/55691', 'en', 12940), +(33769, 'The Three Sisters\nNight Watches, Part 6.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12156', 'en', 637), +(33770, 'Careers in Atomic Energy', 'McIlhenny, Loyce J.', '2013-05-01', 17, 'https://www.gutenberg.org/ebooks/42626', 'en', 12941), +(33771, 'Human Genome Project, Chromosome Number 01', 'Human Genome Project', '2002-11-01', 46, 'https://www.gutenberg.org/ebooks/3501', 'en', 2318), +(33772, 'Big Stupe', 'De Vet, Charles V.', '2010-05-27', 44, 'https://www.gutenberg.org/ebooks/32551', 'en', 179), +(33773, 'The Golden Book of Springfield', 'Lindsay, Vachel', '2019-07-05', 61, 'https://www.gutenberg.org/ebooks/59860', 'en', 12942), +(33774, 'The Demagogue and Lady Phayre', 'Locke, William John', '2017-11-20', 24, 'https://www.gutenberg.org/ebooks/56014', 'en', 95), +(33775, 'The Wit and Humor of America, Volume X (of X)', NULL, '2008-01-26', 57, 'https://www.gutenberg.org/ebooks/24434', 'en', 190), +(33776, 'The Rangeland Avenger', 'Brand, Max', '2004-01-01', 57, 'https://www.gutenberg.org/ebooks/10601', 'en', 315), +(33777, 'Notes and Queries, Vol. V, Number 114, January 3, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-07-08', 10, 'https://www.gutenberg.org/ebooks/40171', 'en', 105), +(33778, 'Cyrano de Bergerac', 'Rostand, Edmond', '1998-03-01', 152, 'https://www.gutenberg.org/ebooks/1256', 'fr', 6322), +(33779, 'The Eruption of Vesuvius in 1872', 'Palmieri, Luigi', '2010-08-22', 17, 'https://www.gutenberg.org/ebooks/33483', 'en', 12943), +(33780, 'The Potter\'s Thumb', 'Steel, Flora Annie Webster', '2012-06-13', 11, 'https://www.gutenberg.org/ebooks/39985', 'en', 1228), +(33781, 'St. Nicholas, Vol. 5, No. 2, December, 1877', 'Various', '2005-03-15', 13, 'https://www.gutenberg.org/ebooks/15373', 'en', 479), +(33782, 'Love Conquers All', 'Benchley, Robert', '2007-04-24', 12, 'https://www.gutenberg.org/ebooks/21146', 'en', 190), +(33783, 'Plain Tales of the North', 'Mallet, Thierry', '2018-03-24', 41, 'https://www.gutenberg.org/ebooks/56828', 'en', 5605), +(33784, 'Three Dialogues Between Hylas and Philonous in Opposition to Sceptics and Atheists', 'Berkeley, George', '2003-12-01', 134, 'https://www.gutenberg.org/ebooks/4724', 'en', 243), +(33785, 'The Flying Horseman', 'Aimard, Gustave', '2014-04-15', 25, 'https://www.gutenberg.org/ebooks/45403', 'en', 61), +(33786, 'Het boek der Etiquette', 'Yvonne', '2011-08-10', 14, 'https://www.gutenberg.org/ebooks/37023', 'nl', 788), +(33787, 'Opere, Volume Secondo : scritti critici e letterari', 'Berchet, Giovanni', '2006-12-12', 32, 'https://www.gutenberg.org/ebooks/20094', 'it', 7200), +(33788, 'The Fate of a Crown', 'Baum, L. Frank (Lyman Frank)', '2016-11-21', 25, 'https://www.gutenberg.org/ebooks/53566', 'en', 987), +(33789, 'Irradiations; Sand and Spray', 'Fletcher, John Gould', '2012-02-13', 18, 'https://www.gutenberg.org/ebooks/38857', 'en', 8), +(33790, 'Conrad in Quest of His Youth: An Extravagance of Temperament', 'Merrick, Leonard', '2017-12-23', 13, 'https://www.gutenberg.org/ebooks/56226', 'en', 12944), +(33791, 'Die Nacht der Erfüllung: Erzählungen', 'Tagore, Rabindranath', '2010-06-10', 27, 'https://www.gutenberg.org/ebooks/32763', 'de', 61), +(33792, 'New Homes for Old', 'Breckinridge, Sophonisba Preston', '2012-11-05', 8, 'https://www.gutenberg.org/ebooks/41291', 'en', 5342), +(33793, 'Lilian', 'Bennett, Arnold', '2012-07-26', 71, 'https://www.gutenberg.org/ebooks/40343', 'en', 109), +(33794, 'The Masque of the Red Death', 'Poe, Edgar Allan', '2010-06-06', 440, 'https://www.gutenberg.org/ebooks/1064', 'en', 359), +(33795, 'Vae victis! Romanzo', 'Vivanti, Annie', '2011-12-09', 9, 'https://www.gutenberg.org/ebooks/38259', 'it', 61), +(33796, 'History of the Nineteenth Army Corps', 'Irwin, Richard B. (Richard Biddle)', '2008-02-13', 5, 'https://www.gutenberg.org/ebooks/24606', 'en', 12945), +(33797, 'A Flock of Girls and Boys', 'Perry, Nora', '2003-12-01', 35, 'https://www.gutenberg.org/ebooks/10433', 'en', 1889), +(33798, 'Peter: A Novel of Which He is Not the Hero', 'Smith, Francis Hopkinson', '2003-10-01', 17, 'https://www.gutenberg.org/ebooks/4516', 'en', 12946), +(33799, 'Twelve Years a Slave\r\nNarrative of Solomon Northup, a Citizen of New-York, Kidnapped in Washington City in 1841, and Rescued in 1853, from a Cotton Plantation near the Red River in Louisiana', 'Northup, Solomon', '2014-05-11', 895, 'https://www.gutenberg.org/ebooks/45631', 'en', 12947), +(33800, 'Beethoven, a character study\r\nTogether with Wagner\'s indebtedness to Beethoven', 'Fischer, George Alexander', '2005-02-22', 112, 'https://www.gutenberg.org/ebooks/15141', 'en', 1807), +(33801, 'A Book of Birds', 'Moore-Park, Carton', '2016-08-01', 3, 'https://www.gutenberg.org/ebooks/52686', 'en', 12948), +(33802, '!Tention: A Story of Boy-Life during the Peninsular War', 'Fenn, George Manville', '2007-05-08', 17, 'https://www.gutenberg.org/ebooks/21374', 'en', 5773), +(33803, 'Plain Tales from the Hills', 'Kipling, Rudyard', '1999-08-01', 160, 'https://www.gutenberg.org/ebooks/1858', 'en', 409), +(33804, 'The Captain of the Wight: A Romance of Carisbrooke Castle in 1488', 'Cowper, Frank Cadogan', '2016-12-17', 11, 'https://www.gutenberg.org/ebooks/53754', 'en', 159), +(33805, 'Punch, or the London Charivari, Volume 152, January 24, 1917', 'Various', '2004-11-19', 7, 'https://www.gutenberg.org/ebooks/14093', 'en', 134), +(33806, 'Castles and Chateaux of Old Touraine and the Loire Country', 'Mansfield, M. F. (Milburg Francisco)', '2011-08-25', 26, 'https://www.gutenberg.org/ebooks/37211', 'en', 1117), +(33807, 'Stan Lynn: A Boy\'s Adventures in China', 'Fenn, George Manville', '2010-11-29', 23, 'https://www.gutenberg.org/ebooks/34494', 'en', 1001), +(33808, 'The Lane That Had No Turning, Complete', 'Parker, Gilbert', '2004-11-18', 13, 'https://www.gutenberg.org/ebooks/6241', 'en', 1219), +(33809, 'John Dough and the Cherub', 'Baum, L. Frank (Lyman Frank)', '2014-10-21', 33, 'https://www.gutenberg.org/ebooks/47166', 'en', 12949), +(33810, 'Little Sky-High; Or, The Surprising Doings of Washee-Washee-Wang', 'Butterworth, Hezekiah', '2006-01-28', 29, 'https://www.gutenberg.org/ebooks/17616', 'en', 1817), +(33811, 'History of Farming in Ontario', 'James, C. C. (Charles Canniff)', '2009-12-30', 8, 'https://www.gutenberg.org/ebooks/30808', 'en', 12950), +(33812, 'Le roman d\'un enfant', 'Loti, Pierre', '2007-11-09', 8, 'https://www.gutenberg.org/ebooks/23423', 'fr', 2811), +(33813, 'The Little Demon', 'Sologub, Fyodor', '2015-05-09', 80, 'https://www.gutenberg.org/ebooks/48912', 'en', 3606), +(33814, 'They of the High Trails', 'Garland, Hamlin', '2009-06-14', 22, 'https://www.gutenberg.org/ebooks/29119', 'en', 315), +(33815, 'George Crabbe: Poems, Volume 2 (of 3)', 'Crabbe, George', '2016-01-22', 7, 'https://www.gutenberg.org/ebooks/51003', 'en', 54), +(33816, 'A Lowden Sabbath Morn', 'Stevenson, Robert Louis', '2011-03-11', 22, 'https://www.gutenberg.org/ebooks/35546', 'en', 12951), +(33817, 'The Poetical Works of Oliver Wendell Holmes — Volume 06\r\nPoems from the Breakfast Table Series', 'Holmes, Oliver Wendell', '2004-09-30', 44, 'https://www.gutenberg.org/ebooks/7393', 'en', 178), +(33818, 'Lärkan: Poetisk kalender', 'Various', '2017-04-19', 18, 'https://www.gutenberg.org/ebooks/54571', 'sv', 10648), +(33819, 'The Subjection of Women', 'Mill, John Stuart', '2008-10-28', 163, 'https://www.gutenberg.org/ebooks/27083', 'en', 1619), +(33820, 'The Haunted Mind (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 38, 'https://www.gutenberg.org/ebooks/9209', 'en', 179), +(33821, 'I\'ll Kill You Tomorrow', 'Huber, Helen', '2009-09-19', 53, 'https://www.gutenberg.org/ebooks/30034', 'en', 179), +(33822, 'The Animal World, A Book of Natural History\nYoung Folks\' Treasury (Volume V)', 'Wood, Theodore', '2013-03-26', 51, 'https://www.gutenberg.org/ebooks/42414', 'en', 1423), +(33823, 'Le Tour du Monde; d\'Alexandrette au coude de l\'Euphrate\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-07', 19, 'https://www.gutenberg.org/ebooks/29925', 'fr', 1294), +(33824, 'Bel Ami; Or, The History of a Scoundrel: A Novel', 'Maupassant, Guy de', '2003-02-01', 115, 'https://www.gutenberg.org/ebooks/3733', 'en', 154), +(33825, 'Storia dei musulmani di Sicilia, vol. II', 'Amari, Michele', '2014-09-17', 32, 'https://www.gutenberg.org/ebooks/46888', 'it', 12952), +(33826, 'The Tapestry Book', 'Candee, Helen Churchill', '2008-07-30', 109, 'https://www.gutenberg.org/ebooks/26151', 'en', 1454), +(33827, 'The United States in the Light of Prophecy\r\nOr, an Exposition of Rev. 13:11-17', 'Smith, Uriah', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/12364', 'en', 12953), +(33828, 'Romance of the Rabbit', 'Jammes, Francis', '2004-07-14', 11, 'https://www.gutenberg.org/ebooks/12909', 'en', 6885), +(33829, 'Luttrell Of Arran', 'Lever, Charles James', '2011-03-30', 22, 'https://www.gutenberg.org/ebooks/35717', 'en', 440), +(33830, 'Virginia Under Charles I And Cromwell, 1625-1660', 'Washburn, Wilcomb E.', '2009-07-07', 11, 'https://www.gutenberg.org/ebooks/29348', 'en', 12954), +(33831, 'Charles Dickens and Music', 'Lightwood, James T. (James Thomas)', '2005-08-25', 29, 'https://www.gutenberg.org/ebooks/16595', 'en', 12955), +(33832, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 01 (of 17)', NULL, '2016-02-20', 120, 'https://www.gutenberg.org/ebooks/51252', 'en', 3756), +(33833, 'Humoresque: A Laugh on Life with a Tear Behind It', 'Hurst, Fannie', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9864', 'en', 61), +(33834, 'Annals, Anecdotes and Legends: A Chronicle of Life Assurance', 'Francis, John, of the Bank of England', '2015-11-04', 4, 'https://www.gutenberg.org/ebooks/50380', 'en', 12956), +(33835, 'Pikakuvia 1867 katovuodesta ja sen seurauksista', 'Päivärinta, Pietari', '2006-01-02', 18, 'https://www.gutenberg.org/ebooks/17447', 'fi', 61), +(33836, 'Die epiphytische Vegetation Amerikas', 'Schimper, Andreas Franz Wilhelm', '2007-12-02', 29, 'https://www.gutenberg.org/ebooks/23672', 'de', 12957), +(33837, 'What\'s Bred in the Bone', 'Allen, Grant', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6010', 'en', 128), +(33838, 'The Expositor\'s Bible: The General Epistles of St. James and St. Jude', 'Plummer, Alfred', '2014-11-12', 32, 'https://www.gutenberg.org/ebooks/47337', 'en', 8777), +(33839, 'Peter the Great', 'Abbott, Jacob', '2008-08-01', 19, 'https://www.gutenberg.org/ebooks/26300', 'en', 4891), +(33840, 'The Art of Fencing; Or, The Use of the Small Sword', 'Labat, maître d\'armes', '2004-04-01', 40, 'https://www.gutenberg.org/ebooks/12135', 'en', 6466), +(33841, 'The Expositor\'s Bible: The Epistle to the Galatians', 'Findlay, George G. (George Gillanders)', '2013-05-05', 22, 'https://www.gutenberg.org/ebooks/42645', 'en', 6578), +(33842, 'Memoirs of Napoleon Bonaparte — Volume 12', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 17, 'https://www.gutenberg.org/ebooks/3562', 'en', 3786), +(33843, 'Ein treuer Diener seines Herrn', 'Grillparzer, Franz', '2005-10-01', 16, 'https://www.gutenberg.org/ebooks/9058', 'de', 12958), +(33844, 'The Atlantic Monthly, Volume 15, No. 89, March, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2009-10-16', 15, 'https://www.gutenberg.org/ebooks/30265', 'en', 1227), +(33845, 'Favorite Fish and Fishing', 'Henshall, James A. (James Alexander)', '2013-09-23', 56, 'https://www.gutenberg.org/ebooks/43797', 'en', 12959), +(33846, 'The Bible, King James Version, Complete', NULL, '1992-04-01', 687, 'https://www.gutenberg.org/ebooks/30', 'en', 1185), +(33847, 'Three Years\' Wanderings in the Northern Provinces of China\r\nIncluding a visit to the tea, silk, and cotton countries; with an account of the agriculture and horticulture of the Chinese, new plants, etc.', 'Fortune, Robert', '2017-05-14', 26, 'https://www.gutenberg.org/ebooks/54720', 'en', 2773), +(33848, 'France and England in North America, Part VII, Vol 1: A Half-Century of Conflict', 'Parkman, Francis', '2008-01-29', 89, 'https://www.gutenberg.org/ebooks/24457', 'en', 2163), +(33849, 'The Night Land', 'Hodgson, William Hope', '2004-01-01', 602, 'https://www.gutenberg.org/ebooks/10662', 'en', 26), +(33850, 'Systematics of Megachiropteran Bats in the Solomon Islands', 'Phillips, Carleton J.', '2012-07-01', 7, 'https://www.gutenberg.org/ebooks/40112', 'en', 12960), +(33851, 'Captain Fracasse', 'Gautier, Théophile', '2006-02-19', 52, 'https://www.gutenberg.org/ebooks/1235', 'en', 2436), +(33852, 'Mated from the Morgue: A Tale of the Second Empire', 'O\'Shea, John Augustus', '2011-11-13', 10, 'https://www.gutenberg.org/ebooks/38008', 'en', 2373), +(33853, 'Aus dem Reiche des Buddha: Sieben Erzählungen', 'Dahlke, Paul', '2019-06-24', 38, 'https://www.gutenberg.org/ebooks/59803', 'de', 1212), +(33854, 'King Cole', 'Masefield, John', '2010-05-26', 22, 'https://www.gutenberg.org/ebooks/32532', 'en', 8), +(33855, 'Teachers\' Outlines for Studies in English\nBased on the Requirements for Admission to College', 'Blakely, Gilbert Sykes', '2007-06-24', 19, 'https://www.gutenberg.org/ebooks/21919', 'en', 10276), +(33856, 'Love Insurance', 'Biggers, Earl Derr', '2017-11-29', 34, 'https://www.gutenberg.org/ebooks/56077', 'en', 109), +(33857, 'Shakespeare, Ben Jonson, Beaumont and Fletcher', 'Coleridge, Samuel Taylor', '2008-05-24', 29, 'https://www.gutenberg.org/ebooks/25585', 'en', 12961), +(33858, 'The Tragedies of Seneca\nTranslated into English Verse, to Which Have Been Appended Comparative Analyses of the Corresponding Greek and Roman Plays, and a Mythological Index', 'Seneca, Lucius Annaeus', '2018-10-03', 113, 'https://www.gutenberg.org/ebooks/57999', 'en', 12962), +(33859, 'L\'Illustration, No. 0014, 3 Juin 1843', 'Various', '2011-08-11', 5, 'https://www.gutenberg.org/ebooks/37040', 'fr', 150), +(33860, 'Jim Cummings; Or, The Great Adams Express Robbery', 'Pinkerton, A. Frank', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/5695', 'en', 557), +(33861, 'The Twins in the South', 'Whitehill, Dorothy', '2012-02-11', 51, 'https://www.gutenberg.org/ebooks/38834', 'en', 12963), +(33862, 'Sininen lintu: Satunäytelmä', 'Maeterlinck, Maurice', '2016-11-11', 6, 'https://www.gutenberg.org/ebooks/53505', 'fi', 3853), +(33863, 'Dictionnaire François—Onontagué', 'Shea, John Gilmary', '2005-03-10', 22, 'https://www.gutenberg.org/ebooks/15310', 'fr', 12964), +(33864, 'The Boy Patriot', 'Ellis, Edward Sylvester', '2007-04-17', 15, 'https://www.gutenberg.org/ebooks/21125', 'en', 2843), +(33865, 'The Balkan Wars: 1912-1913\r\nSecond Edition', 'Schurman, Jacob Gould', '2011-05-22', 23, 'https://www.gutenberg.org/ebooks/36192', 'en', 12965), +(33866, 'The River\'s End', 'Curwood, James Oliver', '2003-12-01', 53, 'https://www.gutenberg.org/ebooks/4747', 'en', 2662), +(33867, 'Die Entstehung der Kontinente und Ozeane', 'Wegener, Alfred', '2014-04-23', 31, 'https://www.gutenberg.org/ebooks/45460', 'de', 12966), +(33868, 'Mr. Punch Afloat: The Humours of Boating and Sailing', NULL, '2012-07-24', 48, 'https://www.gutenberg.org/ebooks/40320', 'en', 12967), +(33869, 'Divine Comedy, Cary\'s Translation, Paradise', 'Dante Alighieri', '2004-08-02', 29, 'https://www.gutenberg.org/ebooks/1007', 'en', 365), +(33870, 'A Soldier\'s Life: Being the Personal Reminiscences of Edwin G. Rundle', 'Rundle, Edwin George', '2008-02-22', 8, 'https://www.gutenberg.org/ebooks/24665', 'en', 6776), +(33871, 'Punch, or the London Charivari, Volume 153, August 22, 1917', 'Various', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/10450', 'en', 134), +(33872, 'Sermons by the late Rev. Richard de Courcy', 'De Courcy, Richard', '2018-06-25', 2, 'https://www.gutenberg.org/ebooks/57397', 'en', 2745), +(33873, 'India and Indian Engineering.\r\nThree lectures delivered at the Royal Engineer Institute, Chatham, in July 1872', 'Medley, J. G. (Julius George)', '2017-12-24', 10, 'https://www.gutenberg.org/ebooks/56245', 'en', 12968), +(33874, 'Old Greek Stories', 'Baldwin, James', '2004-03-01', 115, 'https://www.gutenberg.org/ebooks/11582', 'en', 2139), +(33875, 'Area Handbook for Romania', 'Bernier, Donald W.', '2010-06-08', 37, 'https://www.gutenberg.org/ebooks/32700', 'en', 12969), +(33876, 'L\'Illustration, No. 3736, 10 Oct 1914', 'Various', '2016-12-15', 5, 'https://www.gutenberg.org/ebooks/53737', 'fr', 150), +(33877, 'Bessie at the Sea-Side', 'Mathews, Joanna H. (Joanna Hooe)', '2014-01-28', 14, 'https://www.gutenberg.org/ebooks/44780', 'en', 12970), +(33878, 'Stage-coach and Tavern Days', 'Earle, Alice Morse', '2011-08-30', 32, 'https://www.gutenberg.org/ebooks/37272', 'en', 12971), +(33879, '粉妝樓31-40回', 'Luo, Guanzhong', '2003-10-01', 16, 'https://www.gutenberg.org/ebooks/4575', 'zh', 1574), +(33880, 'Jack Ballington, Forester', 'Moore, John Trotwood', '2014-05-23', 14, 'https://www.gutenberg.org/ebooks/45652', 'en', 12972), +(33881, 'The Little Colonel\'s Hero', 'Johnston, Annie F. (Annie Fellows)', '2005-02-21', 48, 'https://www.gutenberg.org/ebooks/15122', 'en', 51), +(33882, 'A Life\'s Eclipse', 'Fenn, George Manville', '2007-05-04', 16, 'https://www.gutenberg.org/ebooks/21317', 'en', 3823), +(33883, 'Ifigenio en Taŭrido', 'Goethe, Johann Wolfgang von', '2007-09-13', 17, 'https://www.gutenberg.org/ebooks/22592', 'eo', 4626), +(33884, 'The Narrative of Arthur Gordon Pym of Nantucket\r\nComprising the details of a mutiny and atrocious butchery on board the American brig Grampus, on her way to the South Seas, in the month of June, 1827.', 'Poe, Edgar Allan', '2016-01-27', 316, 'https://www.gutenberg.org/ebooks/51060', 'en', 1351), +(33885, 'Charlotte de Bourbon, princesse d\'Orange', 'Delaborde, Jules, comte', '2011-03-08', 7, 'https://www.gutenberg.org/ebooks/35525', 'fr', 12973), +(33886, 'The Trespasser, Complete', 'Parker, Gilbert', '2004-11-17', 15, 'https://www.gutenberg.org/ebooks/6222', 'en', 1219), +(33887, 'Notes and Queries for Worcestershire', 'Noake, John', '2014-10-13', 16, 'https://www.gutenberg.org/ebooks/47105', 'en', 12974), +(33888, 'Le magasin d\'antiquités, Tome I', 'Dickens, Charles', '2006-02-04', 21, 'https://www.gutenberg.org/ebooks/17675', 'fr', 10623), +(33889, 'Jussi Puranen: Jutelma osuustoimintakauden esiajoilta', 'Lassila, Maiju', '2015-05-16', 3, 'https://www.gutenberg.org/ebooks/48971', 'fi', 175), +(33890, 'Edward Barry\nSouth Sea Pearler', 'Becke, Louis', '2007-11-10', 10, 'https://www.gutenberg.org/ebooks/23440', 'en', 12975), +(33891, 'Eine Kindheitserinnerung aus »Dichtung und Wahrheit«', 'Freud, Sigmund', '2009-09-09', 16, 'https://www.gutenberg.org/ebooks/29946', 'de', 1151), +(33892, 'Punch, or the London Charivari, January 5th, 1895', 'Various', '2013-04-07', 10, 'https://www.gutenberg.org/ebooks/42477', 'en', 134), +(33893, 'Letters of Franz Liszt -- Volume 2\r\nfrom Rome to the End', 'Liszt, Franz', '2003-02-01', 41, 'https://www.gutenberg.org/ebooks/3750', 'en', 12976), +(33894, 'Chapters in the History of the Insane in the British Isles', 'Tuke, Daniel Hack', '2010-02-05', 28, 'https://www.gutenberg.org/ebooks/31185', 'en', 12977), +(33895, 'The Apple-Tree\nThe Open Country Books—No. 1', 'Bailey, L. H. (Liberty Hyde)', '2008-07-26', 36, 'https://www.gutenberg.org/ebooks/26132', 'en', 3329), +(33896, 'Giorgione', 'Cook, Herbert Frederick', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12307', 'en', 12978), +(33897, 'Venäläisiä talonpoikia', 'Chekhov, Anton Pavlovich', '2017-04-08', 7, 'https://www.gutenberg.org/ebooks/54512', 'fi', 147), +(33898, 'Nicht der Mörder, der Ermordete ist schuldig: Eine Novelle', 'Werfel, Franz', '2015-01-11', 21, 'https://www.gutenberg.org/ebooks/47939', 'de', 61), +(33899, 'Henri III et sa Cour', 'Dumas, Alexandre', '2001-06-01', 22, 'https://www.gutenberg.org/ebooks/2682', 'fr', 12979), +(33900, 'The Pirate Woman', 'Dingle, Aylward Edward', '2009-09-22', 28, 'https://www.gutenberg.org/ebooks/30057', 'en', 3828), +(33901, 'Two Plus Two Makes Crazy', 'Sheldon, Walter J.', '2009-05-20', 33, 'https://www.gutenberg.org/ebooks/28894', 'en', 179), +(33902, 'Aurora Leigh', 'Browning, Elizabeth Barrett', '2018-02-21', 137, 'https://www.gutenberg.org/ebooks/56621', 'en', 12980), +(33903, 'Marta y María: novela de costumbres', 'Palacio Valdés, Armando', '2010-05-13', 43, 'https://www.gutenberg.org/ebooks/32364', 'es', 1696), +(33904, 'The Feasts of Autolycus: The Diary of a Greedy Woman', 'Pennell, Elizabeth Robins', '2012-12-24', 23, 'https://www.gutenberg.org/ebooks/41696', 'en', 1337), +(33905, 'Psychology and Social Practice', 'Dewey, John', '2012-09-13', 52, 'https://www.gutenberg.org/ebooks/40744', 'en', 3503), +(33906, 'The Private Papers of Henry Ryecroft', 'Gissing, George', '1998-09-01', 53, 'https://www.gutenberg.org/ebooks/1463', 'en', 137), +(33907, 'The Eye of Osiris', 'Freeman, R. Austin (Richard Austin)', '2008-01-07', 71, 'https://www.gutenberg.org/ebooks/24201', 'en', 128), +(33908, 'Punchinello, Volume 1, No. 26, September 24, 1870', 'Various', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10034', 'en', 372), +(33909, 'Christopher Columbus and the New World of His Discovery — Volume 4', 'Young, Filson', '2004-12-05', 12, 'https://www.gutenberg.org/ebooks/4111', 'en', 3403), +(33910, 'The Camp Fire Girls in Glorious France', 'Vandercook, Margaret', '2014-03-28', 7, 'https://www.gutenberg.org/ebooks/45236', 'en', 12981), +(33911, 'Index of the Project Gutenberg Works of Frederic Remington', 'Remington, Frederic', '2019-06-03', 12, 'https://www.gutenberg.org/ebooks/59669', 'en', 198), +(33912, 'The Last of the Peterkins\nWith Others of Their Kin', 'Hale, Lucretia P. (Lucretia Peabody)', '2005-04-04', 30, 'https://www.gutenberg.org/ebooks/15546', 'en', 246), +(33913, 'La casa e la famiglia di Masaniello\nRicordi della storia e della vita Napolitana nel Secolo XVII', 'Capasso, Bartolommeo', '2016-06-08', 16, 'https://www.gutenberg.org/ebooks/52281', 'it', 12982), +(33914, 'Four Meetings', 'James, Henry', '2007-06-08', 25, 'https://www.gutenberg.org/ebooks/21773', 'en', 179), +(33915, 'Life of Joseph Brant—Thayendanegea (Vol. II)\r\nIncluding the Border Wars of the American Revolution and Sketches of the Indian Campaigns of Generals Harmar, St. Clair, and Wayne; And Other Matters Connected with the Indian Relations of the United States and Great Britain, from the Peace of 1783 to the Indian Peace of 1795', 'Stone, William L. (William Leete)', '2016-10-23', 13, 'https://www.gutenberg.org/ebooks/53353', 'en', 12983), +(33916, 'Scottish sketches', 'Barr, Amelia E.', '2004-12-28', 21, 'https://www.gutenberg.org/ebooks/14494', 'en', 1922), +(33917, 'Consumers\' Cooperative Societies in New York State', 'Consumers\' League of New York City', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10808', 'en', 12984), +(33918, 'Cours familier de Littérature - Volume 16', 'Lamartine, Alphonse de', '2011-10-04', 11, 'https://www.gutenberg.org/ebooks/37616', 'fr', 2156), +(33919, 'Mink Trapping: A Book of Instruction Giving Many Methods of Trapping\r\nA Valuable Book for Trappers.', 'Harding, A. R. (Arthur Robert)', '2010-10-18', 22, 'https://www.gutenberg.org/ebooks/34093', 'en', 12985), +(33920, 'Das Käthchen von Heilbronn: Oder, die Feuerprobe', 'Kleist, Heinrich von', '2004-10-01', 52, 'https://www.gutenberg.org/ebooks/6646', 'de', 4915), +(33921, 'Trelawny of The \"Wells\": A Comedietta in Four Acts', 'Pinero, Arthur Wing', '2014-12-06', 21, 'https://www.gutenberg.org/ebooks/47561', 'en', 3523), +(33922, 'A School History of the Great War', 'McKinley, Albert E. (Albert Edward)', '2005-12-03', 62, 'https://www.gutenberg.org/ebooks/17211', 'en', 335), +(33923, 'Grimm Tales Made Gay', 'Carryl, Guy Wetmore', '2007-10-13', 58, 'https://www.gutenberg.org/ebooks/23024', 'en', 190), +(33924, 'Plain Living: A Bush Idyll', 'Boldrewood, Rolf', '2016-03-08', 14, 'https://www.gutenberg.org/ebooks/51404', 'en', 792), +(33925, 'The Plowshare and the Sword: A Tale of Old Quebec', 'Trevena, John', '2011-02-22', 15, 'https://www.gutenberg.org/ebooks/35141', 'en', 1890), +(33926, 'Solitude\r\nWith the Life of the Author. In Two Parts', 'Zimmermann, Johann Georg', '2017-11-07', 18, 'https://www.gutenberg.org/ebooks/55898', 'en', 12986), +(33927, 'Pelle the Conqueror — Volume 04', 'Andersen Nexø, Martin', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7794', 'en', 2202), +(33928, 'Gentle Julia', 'Tarkington, Booth', '2006-04-26', 33, 'https://www.gutenberg.org/ebooks/18259', 'en', 61), +(33929, 'The cremation of the dead\r\nconsidered from an aesthetic, sanitary, religious, historical, medico-legal, and economical standpoint', 'Erichsen, Hugo', '2017-02-17', 6, 'https://www.gutenberg.org/ebooks/54176', 'en', 12987), +(33930, 'Journal of a Visit to Constantinople and Some of the Greek Islands in the Spring and Summer of 1833', 'Auldjo, John', '2008-12-10', 15, 'https://www.gutenberg.org/ebooks/27484', 'en', 2570), +(33931, 'Émile; Or, Concerning Education; Extracts', 'Rousseau, Jean-Jacques', '2009-11-09', 38, 'https://www.gutenberg.org/ebooks/30433', 'en', 973), +(33932, '鏡花緣', 'Li, Ruzhen', '2007-12-11', 25, 'https://www.gutenberg.org/ebooks/23818', 'zh', 1003), +(33933, 'Essais de Montaigne (self-édition) - Volume I', 'Montaigne, Michel de', '2015-03-19', 143, 'https://www.gutenberg.org/ebooks/48529', 'fr', 4252), +(33934, 'Salem Chapel, v. 1/2', 'Oliphant, Mrs. (Margaret)', '2013-02-04', 23, 'https://www.gutenberg.org/ebooks/42013', 'en', 1397), +(33935, 'Drake\'s Great Armada', 'Bigges, Walter', '2006-04-06', 33, 'https://www.gutenberg.org/ebooks/3334', 'en', 12988), +(33936, 'Myths and Marvels of Astronomy', 'Proctor, Richard A. (Richard Anthony)', '2008-09-08', 60, 'https://www.gutenberg.org/ebooks/26556', 'en', 1683), +(33937, 'Every Soul Hath Its Song', 'Hurst, Fannie', '2004-06-28', 19, 'https://www.gutenberg.org/ebooks/12763', 'en', 112), +(33938, 'Apô-Apô (Zarzuela) at Kung Sinong Apô-Apô (Kasaysayan)', 'Lopez, Pantaleón S.', '2005-11-07', 17, 'https://www.gutenberg.org/ebooks/17023', 'tl', 12989), +(33939, 'Sac-Au-Dos\n1907', 'Huysmans, J.-K. (Joris-Karl)', '2007-10-27', 34, 'https://www.gutenberg.org/ebooks/23216', 'en', 179), +(33940, 'A Journey to the Centre of the Earth', 'Verne, Jules', '2006-07-18', 735, 'https://www.gutenberg.org/ebooks/18857', 'en', 2399), +(33941, 'Malbone: An Oldport Romance', 'Higginson, Thomas Wentworth', '1997-07-01', 17, 'https://www.gutenberg.org/ebooks/993', 'en', 4186), +(33942, 'The Iron Woman', 'Deland, Margaret Wade Campbell', '2004-09-01', 43, 'https://www.gutenberg.org/ebooks/6474', 'en', 61), +(33943, 'A History of England\nEleventh Edition', 'Oman, Charles', '2014-12-23', 81, 'https://www.gutenberg.org/ebooks/47753', 'en', 1953), +(33944, 'A History of Norwegian Immigration to the United States\r\nFrom the Earliest Beginning down to the Year 1848', 'Flom, George T. (George Tobias)', '2014-08-25', 36, 'https://www.gutenberg.org/ebooks/46681', 'en', 12990), +(33945, 'Withered Leaves: A Novel. Vol. III. (of III)', 'Gottschall, Rudolf von', '2011-02-23', 17, 'https://www.gutenberg.org/ebooks/35373', 'en', 803), +(33946, 'The Dyeing of Woollen Fabrics', 'Beech, Franklin', '2006-12-01', 41, 'https://www.gutenberg.org/ebooks/19985', 'en', 12991), +(33947, 'Hegel\'s Lectures on the History of Philosophy: Volume 2 (of 3)', 'Hegel, Georg Wilhelm Friedrich', '2016-04-02', 96, 'https://www.gutenberg.org/ebooks/51636', 'en', 3566), +(33948, 'How to Analyze People on Sight\nThrough the Science of Human Analysis: The Five Human Types', 'Benedict, Ralph Paine', '2009-12-04', 685, 'https://www.gutenberg.org/ebooks/30601', 'en', 6571), +(33949, 'The Drama', 'Irving, Henry, Sir', '2004-09-17', 9, 'https://www.gutenberg.org/ebooks/13483', 'en', 402), +(33950, 'Bristol: A Sketch Book', 'Woollard, Dorothy', '2017-03-12', 20, 'https://www.gutenberg.org/ebooks/54344', 'en', 12992), +(33951, 'Vahram\'s chronicle of the Armenian kingdom in Cilicia, during the time of the Crusades.', 'Vahram', '2019-08-25', 0, 'https://www.gutenberg.org/ebooks/60171', 'en', NULL), +(33952, 'Henri VI (2/3)', 'Shakespeare, William', '2008-10-03', 5, 'https://www.gutenberg.org/ebooks/26764', 'fr', 2048), +(33953, 'Farquharson of Glune', 'Bateman, May', '2017-08-07', 2, 'https://www.gutenberg.org/ebooks/55296', 'en', 95), +(33954, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 541, April 7, 1832', 'Various', '2004-06-01', 2, 'https://www.gutenberg.org/ebooks/12551', 'en', 133), +(33955, 'The World of H.G. Wells', 'Brooks, Van Wyck', '2013-02-27', 25, 'https://www.gutenberg.org/ebooks/42221', 'en', 12993), +(33956, 'As We Were Saying', 'Warner, Charles Dudley', '2004-12-05', 31, 'https://www.gutenberg.org/ebooks/3106', 'en', 20), +(33957, 'Julio Diniz (Joaquim Guilherme Gomes Coelho) Esboço Biographico', 'Pimentel, Alberto', '2010-04-28', 20, 'https://www.gutenberg.org/ebooks/32156', 'pt', 12994), +(33958, 'Träldomen i Norden: Ett blad ur den Svenska artbetsklassens älsta historia', 'Sommarin, Emil', '2018-01-21', 7, 'https://www.gutenberg.org/ebooks/56413', 'sv', 12995), +(33959, 'The ABC of Cooking', 'Coit, Adelin Balch', '2014-05-30', 55, 'https://www.gutenberg.org/ebooks/45838', 'en', 103), +(33960, 'Dave Porter in the Gold Fields; Or, The Search for the Landslide Mine', 'Stratemeyer, Edward', '2007-12-26', 28, 'https://www.gutenberg.org/ebooks/24033', 'en', 7789), +(33961, 'The Liver Complaint Story', 'Edison, Thomas A. (Thomas Alva)', '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10206', 'en', 311), +(33962, '\"Smiles\": A Book of Recitations for Girls', 'Richards, Alice Lewis', '2012-08-25', 7, 'https://www.gutenberg.org/ebooks/40576', 'en', 1725), +(33963, 'The Mystery of Orcival', 'Gaboriau, Emile', '1999-02-01', 99, 'https://www.gutenberg.org/ebooks/1651', 'en', 128), +(33964, 'Practical Angora Goat Raising', NULL, '2010-07-05', 19, 'https://www.gutenberg.org/ebooks/33084', 'en', 12996), +(33965, 'Ishmael; Or, In the Depths', 'Southworth, Emma Dorothy Eliza Nevitte', '2005-05-06', 40, 'https://www.gutenberg.org/ebooks/15774', 'en', 61), +(33966, 'Quiet, Please', 'Scott, Kevin', '2007-05-20', 25, 'https://www.gutenberg.org/ebooks/21541', 'en', 7434), +(33967, 'The Heart-Cry of Jesus', 'Rees, Byron J. (Byron Johnson)', '2003-08-01', 7, 'https://www.gutenberg.org/ebooks/4323', 'en', 12997), +(33968, 'The Library of Work and Play: Working in Metals', 'Sleffel, Charles Conrad', '2014-02-24', 14, 'https://www.gutenberg.org/ebooks/45004', 'en', 12998), +(33969, 'Views and Reviews', 'James, Henry', '2011-09-14', 38, 'https://www.gutenberg.org/ebooks/37424', 'en', 2644), +(33970, 'Stories and Sketches', 'Caswell, Harriet S.', '2007-01-31', 16, 'https://www.gutenberg.org/ebooks/20493', 'en', 20), +(33971, 'The Boys\' and Girls\' Pliny\r\nBeing parts of Pliny\'s \"Natural History\" edited for boys and girls, with an Introduction', 'Pliny, the Elder', '2019-01-01', 20, 'https://www.gutenberg.org/ebooks/58589', 'en', 8659), +(33972, 'A View of Sir Isaac Newton\'s Philosophy', 'Pemberton, Henry', '2016-09-28', 22, 'https://www.gutenberg.org/ebooks/53161', 'en', 12999), +(33973, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 351, January 10, 1829', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11112', 'en', 133), +(33974, '兒女英雄傳', 'Wenkang, active 1842-1851', '2008-05-05', 17, 'https://www.gutenberg.org/ebooks/25327', 'zh', 1003), +(33975, 'Mollie and the Unwiseman Abroad', 'Bangs, John Kendrick', '2012-05-23', 12, 'https://www.gutenberg.org/ebooks/39778', 'en', 1235), +(33976, 'Black Man\'s Burden', 'Reynolds, Mack', '2010-05-15', 57, 'https://www.gutenberg.org/ebooks/32390', 'en', 26), +(33977, 'The Spell of the White Sturgeon', 'Kjelgaard, Jim', '2012-12-19', 15, 'https://www.gutenberg.org/ebooks/41662', 'en', 13000), +(33978, 'An Amateur Fireman', 'Otis, James', '2010-07-24', 7, 'https://www.gutenberg.org/ebooks/33242', 'en', 2526), +(33979, 'The Republic', 'Plato', '1998-10-01', 3924, 'https://www.gutenberg.org/ebooks/1497', 'en', 5325), +(33980, 'The Great War of 189-: A Forecast', 'Scudamore, Frank', '2018-08-16', 26, 'https://www.gutenberg.org/ebooks/57707', 'en', 26), +(33981, 'Occultism and Common-Sense', 'Willson, Beckles', '2011-07-14', 67, 'https://www.gutenberg.org/ebooks/36730', 'en', 6363), +(33982, '孔雀東南飛', 'Unknown', '2016-06-08', 15, 'https://www.gutenberg.org/ebooks/52275', 'zh', 13001), +(33983, 'Shelled by an Unseen Foe', 'Fiske, James', '2007-06-09', 17, 'https://www.gutenberg.org/ebooks/21787', 'en', 146), +(33984, 'The Emma Gees', 'McBride, Herbert W.', '2007-02-24', 16, 'https://www.gutenberg.org/ebooks/20655', 'en', 449), +(33985, 'Faust; a Tragedy, Translated from the German of Goethe', 'Goethe, Johann Wolfgang von', '2004-12-25', 420, 'https://www.gutenberg.org/ebooks/14460', 'en', 3470), +(33986, 'L\'Illustration, No. 1606, 6 décembre 1873', 'Various', '2013-11-30', 10, 'https://www.gutenberg.org/ebooks/44310', 'fr', 150), +(33987, 'State of the Union Addresses', 'Hoover, Herbert', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/5037', 'en', 1276), +(33988, 'Catholic Churchmen in Science [First Series]\r\nSketches of the Lives of Catholic Ecclesiastics Who Were Among the Great Founders in Science', 'Walsh, James J. (James Joseph)', '2010-10-13', 23, 'https://www.gutenberg.org/ebooks/34067', 'en', 2713), +(33989, 'Memorials of the Life of Amelia Opie\nSelected and Arranged from her Letters, Diaries, and other Manuscripts', 'Opie, Amelia', '2014-12-08', 16, 'https://www.gutenberg.org/ebooks/47595', 'en', 13002), +(33990, 'Der Alptraum in seiner Beziehung zu gewissen Formen des mittelalterlichen Aberglaubens\nSchriften zur angewandten Seelenkunde. Vierzehntes Heft', 'Jones, Ernest', '2015-11-21', 19, 'https://www.gutenberg.org/ebooks/50522', 'de', 6758), +(33991, 'Sometub\'s Cruise on the C. & O. Canal\nThe narrative of a motorboat vacation in the heart of Maryland', 'Cowan, John Pryor', '2013-10-08', 12, 'https://www.gutenberg.org/ebooks/43909', 'en', 13003), +(33992, 'The Helpful Robots', 'Shea, Robert', '2009-03-29', 26, 'https://www.gutenberg.org/ebooks/28438', 'en', 179), +(33993, 'The Hills of Home', 'Coppel, Alfred', '2007-07-19', 27, 'https://www.gutenberg.org/ebooks/22102', 'en', 26), +(33994, 'From Capetown to Ladysmith: An Unfinished Record of the South African War', 'Steevens, G. W. (George Warrington)', '2005-07-20', 37, 'https://www.gutenberg.org/ebooks/16337', 'en', 1311), +(33995, 'Ma confession', 'Tolstoy, Leo, graf', '2014-07-29', 49, 'https://www.gutenberg.org/ebooks/46447', 'fr', 1130), +(33996, 'Falkland, Book 4.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/7760', 'en', 61), +(33997, 'The Outlaw of Torn', 'Burroughs, Edgar Rice', '2008-07-11', 165, 'https://www.gutenberg.org/ebooks/369', 'en', 98), +(33998, 'Journal d\'un bourgeois de Paris, 1405-1449', NULL, '2017-02-17', 30, 'https://www.gutenberg.org/ebooks/54182', 'fr', 13004), +(33999, 'The Tatler, Volume 1', 'Addison, Joseph', '2004-10-05', 70, 'https://www.gutenberg.org/ebooks/13645', 'en', 13005), +(34000, 'Jutelmia ja tarinoita', NULL, '2008-12-09', 7, 'https://www.gutenberg.org/ebooks/27470', 'fi', 13006), +(34001, 'Human Genome Project, rough draft, Chromosome Number 12', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2212', 'en', 2318), +(34002, 'The Riddle of the Purple Emperor', 'Hanshew, Thomas W.', '2013-07-08', 20, 'https://www.gutenberg.org/ebooks/43135', 'en', 1480), +(34003, 'The Rake\'s Progress', 'Brown, Paul Cameron', '2010-03-05', 7, 'https://www.gutenberg.org/ebooks/31515', 'en', 28), +(34004, 'The Winning of Canada: a Chronicle of Wolfe', 'Wood, William', '2005-08-01', 18, 'https://www.gutenberg.org/ebooks/8728', 'en', 5776), +(34005, 'The Log of a Cowboy: A Narrative of the Old Trail Days', 'Adams, Andy', '2004-07-01', 118, 'https://www.gutenberg.org/ebooks/12797', 'en', 315), +(34006, 'Browning and the Dramatic Monologue', 'Curry, S. S. (Samuel Silas)', '2011-04-29', 17, 'https://www.gutenberg.org/ebooks/35989', 'en', 13007), +(34007, 'Kotiinpaluu ja muita novelleja', 'Schildt, Runar', '2017-07-05', 11, 'https://www.gutenberg.org/ebooks/55050', 'fi', 2168), +(34008, 'Cassell\'s History of England, Vol. 2 (of 8)\r\nFrom the Wars of the Roses to the Great Rebellion', 'Anonymous', '2015-12-17', 18, 'https://www.gutenberg.org/ebooks/50710', 'en', 1953), +(34009, 'On the Study of Words', 'Trench, Richard Chenevix', '2004-09-01', 43, 'https://www.gutenberg.org/ebooks/6480', 'en', 4211), +(34010, 'Nicholas Nickleby', 'Dickens, Charles', '2006-04-27', 611, 'https://www.gutenberg.org/ebooks/967', 'en', 89), +(34011, 'Comrades', 'Phelps, Elizabeth Stuart', '2010-11-08', 22, 'https://www.gutenberg.org/ebooks/34255', 'en', 13008), +(34012, 'Oliver Twist; or, The Parish Boy\'s Progress. Illustrated', 'Dickens, Charles', '2014-08-24', 168, 'https://www.gutenberg.org/ebooks/46675', 'en', 3210), +(34013, 'Quotes and Images From Motley\'s History of the Netherlands', 'Motley, John Lothrop', '2004-09-03', 11, 'https://www.gutenberg.org/ebooks/7552', 'en', 1026), +(34014, 'Hansi', 'Frohnmeyer, Ida', '2006-11-29', 16, 'https://www.gutenberg.org/ebooks/19971', 'de', 1063), +(34015, 'Émile Verhaeren', 'Zweig, Stefan', '2011-02-24', 40, 'https://www.gutenberg.org/ebooks/35387', 'en', 13009); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(34016, 'Clepsydra\nPoêmas de Camillo Pessanha', 'Pessanha, Camilo Almeida', '2007-08-16', 30, 'https://www.gutenberg.org/ebooks/22330', 'pt', 1638), +(34017, 'Colección de viages y expediciónes à los campos de Buenos Aires y a las costas de Patagonia', NULL, '2005-06-22', 45, 'https://www.gutenberg.org/ebooks/16105', 'es', 13010), +(34018, 'Tarzan the Terrible', 'Burroughs, Edgar Rice', '2000-01-01', 199, 'https://www.gutenberg.org/ebooks/2020', 'en', 580), +(34019, 'Principes de la Philosophie de l\'Histoire\ntraduits de la \'Scienza nuova\'', 'Vico, Giambattista', '2013-07-26', 44, 'https://www.gutenberg.org/ebooks/43307', 'fr', 924), +(34020, 'Watts (1817-1904)', 'Hare, William Loftus', '2004-09-17', 18, 'https://www.gutenberg.org/ebooks/13477', 'en', 13011), +(34021, 'Lectures in Navigation', 'Draper, Ernest Gallaudet', '2008-12-28', 36, 'https://www.gutenberg.org/ebooks/27642', 'en', 13012), +(34022, 'The Brother Avenged, and Other Ballads', NULL, '2008-10-06', 6, 'https://www.gutenberg.org/ebooks/26790', 'en', 4390), +(34023, 'Psychology: Briefer Course', 'James, William', '2017-08-04', 76, 'https://www.gutenberg.org/ebooks/55262', 'en', 1151), +(34024, 'Gems of Divine Mysteries', 'Bahá\'u\'lláh', '2005-06-23', 19, 'https://www.gutenberg.org/ebooks/16939', 'en', 4457), +(34025, 'Weiberhaß und Weiberverachtung\r\nEine Erwiderung auf die in Dr. Otto Weiningers Buche »Geschlecht und Charakter« geäußerten Anschauungen über »Die Frau und ihre Frage«', 'Meisel-Hess, Grete', '2010-03-21', 24, 'https://www.gutenberg.org/ebooks/31727', 'de', 13013), +(34026, 'The Project Gutenberg Collection of Works by Freethinkers\r\nWith Linked On-line and Off-line Indexes to 157 Volumes by 90 Authors; Plus Indexes to 15 other Author\'s Multi-Volume Sets.', 'Various', '2012-11-23', 18, 'https://www.gutenberg.org/ebooks/41450', 'en', 1191), +(34027, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 331, September 13, 1828', 'Various', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11320', 'en', 133), +(34028, 'A Journal of a Visit of Three Days to Skibbereen, and its Neighbourhood', 'Burritt, Elihu', '2008-04-21', 16, 'https://www.gutenberg.org/ebooks/25115', 'en', 13014), +(34029, 'Medical Sketches of the Expedition to Egypt, from India', 'McGrigor, James, Sir', '2018-07-18', 18, 'https://www.gutenberg.org/ebooks/57535', 'en', 13015), +(34030, 'Notes and Queries, Vol. V, Number 115, January 10, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-08-25', 20, 'https://www.gutenberg.org/ebooks/40582', 'en', 105), +(34031, 'The Code of the Mountains', 'Buck, Charles Neville', '2012-01-05', 20, 'https://www.gutenberg.org/ebooks/38498', 'en', 4872), +(34032, 'Harper\'s Round Table, July 16, 1895', 'Various', '2010-07-03', 11, 'https://www.gutenberg.org/ebooks/33070', 'en', 668), +(34033, 'A Little Maid in Toyland', 'Sutton, Adah Louise', '2016-05-11', 17, 'https://www.gutenberg.org/ebooks/52047', 'en', 13016), +(34034, 'An Outline of the History of Christian Thought Since Kant', 'Moore, Edward Caldwell', '2005-05-07', 16, 'https://www.gutenberg.org/ebooks/15780', 'en', 13017), +(34035, 'Joan Thursday: A Novel', 'Vance, Louis Joseph', '2011-06-23', 28, 'https://www.gutenberg.org/ebooks/36502', 'en', 1660), +(34036, 'Daemonologie.', 'James I, King of England', '2008-06-29', 823, 'https://www.gutenberg.org/ebooks/25929', 'en', 13018), +(34037, 'Silver Chimes in Syria: Glimpses of a Missionary\'s Experiences', 'Nelson, William S.', '2013-11-07', 14, 'https://www.gutenberg.org/ebooks/44122', 'en', 13019), +(34038, 'Speeches of the Hon. Jefferson Davis, of Mississippi; delivered during the summer of 1858.', 'Davis, Jefferson', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/5205', 'en', 125), +(34039, 'Handbook of the Trees of New England', 'Dame, Lorin Low', '2007-01-28', 64, 'https://www.gutenberg.org/ebooks/20467', 'en', 9935), +(34040, 'Punch, or the London Charivari, Volume 102, June 4, 1892', 'Various', '2005-01-10', 6, 'https://www.gutenberg.org/ebooks/14652', 'en', 134), +(34041, 'Laulu Hiawathasta', 'Longfellow, Henry Wadsworth', '2016-10-02', 12, 'https://www.gutenberg.org/ebooks/53195', 'fi', 7833), +(34042, 'Ombre di occaso', 'Oriani, Alfredo', '2014-07-07', 11, 'https://www.gutenberg.org/ebooks/46211', 'it', 1544), +(34043, 'The Great Conspiracy, Volume 4', 'Logan, John Alexander', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/7136', 'en', 2268), +(34044, 'Masters of Space', 'Smith, E. E. (Edward Elmer)', '2007-09-24', 139, 'https://www.gutenberg.org/ebooks/22754', 'en', 26), +(34045, 'Encomium artis medicae', 'Erasmus, Desiderius', '2005-08-20', 10, 'https://www.gutenberg.org/ebooks/16561', 'la', 13020), +(34046, 'The Last Hope', 'Merriman, Henry Seton', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/8942', 'en', 13021), +(34047, 'The Life and Labors of Elias Hicks', 'Wilbur, Henry Watson', '2015-11-03', 9, 'https://www.gutenberg.org/ebooks/50374', 'en', 13022), +(34048, 'Biografia del libertador Simon Bolívar, ó La independencia de la América del sud\r\nReseña histórico-biográfica', 'Campano, Lorenzo', '2006-02-01', 57, 'https://www.gutenberg.org/ebooks/9890', 'es', 13023), +(34049, 'The Life and Adventures of Poor Puss', 'Gray, Lucy', '2007-12-03', 6, 'https://www.gutenberg.org/ebooks/23686', 'en', 13024), +(34050, 'Hovin Roosa', 'Spielhagen, Friedrich', '2010-12-13', 7, 'https://www.gutenberg.org/ebooks/34631', 'fi', 1103), +(34051, 'The Mandarin\'s Fan', 'Hume, Fergus', '2017-09-22', 24, 'https://www.gutenberg.org/ebooks/55606', 'en', 13025), +(34052, 'Nala and Damayanti and Other Poems', 'Milman, Henry Hart', '2006-10-12', 40, 'https://www.gutenberg.org/ebooks/19529', 'en', 11948), +(34053, 'Crónica de la conquista de Granada (2 de 2)', 'Irving, Washington', '2015-06-22', 19, 'https://www.gutenberg.org/ebooks/49259', 'es', 9220), +(34054, 'The Invaders', 'Leinster, Murray', '2010-02-21', 37, 'https://www.gutenberg.org/ebooks/31343', 'en', 26), +(34055, 'Essays of Michel de Montaigne — Volume 16', 'Montaigne, Michel de', '2004-11-01', 36, 'https://www.gutenberg.org/ebooks/3596', 'en', 1964), +(34056, 'Kildares of Storm', 'Kelly, Eleanor Mercein', '2009-10-20', 10, 'https://www.gutenberg.org/ebooks/30291', 'en', 2586), +(34057, 'Oxford', 'Lang, Andrew', '2000-12-01', 16, 'https://www.gutenberg.org/ebooks/2444', 'en', 13026), +(34058, 'Snap-Dragons; Old Father Christmas', 'Ewing, Juliana Horatia Gatty', '2013-09-18', 4, 'https://www.gutenberg.org/ebooks/43763', 'en', 1817), +(34059, 'François le Bossu', 'Ségur, Sophie, comtesse de', '2004-07-24', 25, 'https://www.gutenberg.org/ebooks/13013', 'fr', 13027), +(34060, 'An Essay on the Antient and Modern State of Ireland', 'Brooke, Henry', '2008-11-10', 10, 'https://www.gutenberg.org/ebooks/27226', 'en', 7442), +(34061, 'Salaperäinen vihollinen: Kertomus salapoliisi Asbjörn Kragin elämästä', 'Elvestad, Sven', '2018-05-13', 33, 'https://www.gutenberg.org/ebooks/57151', 'fi', 128), +(34062, 'The Danger Trail', 'Curwood, James Oliver', '2004-01-01', 47, 'https://www.gutenberg.org/ebooks/10696', 'en', 10932), +(34063, 'Charlotte Brontë: A Monograph', 'Reid, T. Wemyss (Thomas Wemyss)', '2011-10-30', 22, 'https://www.gutenberg.org/ebooks/37888', 'en', 13028), +(34064, 'Index of the Project Gutenberg Works of John Fiske', 'Fiske, John', '2019-02-20', 5, 'https://www.gutenberg.org/ebooks/58925', 'en', 198), +(34065, 'Le roman bourgeois: Ouvrage comique', 'Furetière, Antoine', '2010-08-12', 40, 'https://www.gutenberg.org/ebooks/33414', 'fr', 13029), +(34066, 'A Philadelphia Lawyer in the London Courts', 'Leaming, Thomas', '2012-10-12', 6, 'https://www.gutenberg.org/ebooks/41034', 'en', 13030), +(34067, 'L\'oppidum de Bibracte\r\nGuide historique et archéologique au Mont Beuvray; d\'après les documents archéologiques les plus récents', NULL, '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11744', 'fr', 13031), +(34068, 'De Soto, Coronado, Cabrillo: Explorers of the Northern Mystery', 'Lavender, David', '2017-11-30', 13, 'https://www.gutenberg.org/ebooks/56083', 'en', 13032), +(34069, 'The Little Manx Nation - 1891', 'Caine, Hall, Sir', '2008-05-23', 7, 'https://www.gutenberg.org/ebooks/25571', 'en', 13033), +(34070, 'The Last Entry', 'Russell, William Clark', '2013-12-30', 14, 'https://www.gutenberg.org/ebooks/44546', 'en', 702), +(34071, 'A Son of the Gods, and A Horseman in the Sky', 'Bierce, Ambrose', '2004-05-01', 34, 'https://www.gutenberg.org/ebooks/5661', 'en', 403), +(34072, 'The Infernal Marriage', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-12-03', 28, 'https://www.gutenberg.org/ebooks/20003', 'en', 13034), +(34073, 'En el Fondo del Abismo: La Justicia Infalible', 'Ohnet, Georges', '2004-12-02', 19, 'https://www.gutenberg.org/ebooks/14236', 'es', 61), +(34074, 'The Destruction of the Greek Empire and the Story of the Capture of Constantinople by the Turks', 'Pears, Edwin', '2018-10-17', 20, 'https://www.gutenberg.org/ebooks/58119', 'en', 13035), +(34075, 'Tom Willoughby\'s Scouts: A Story of the War in German East Africa', 'Strang, Herbert', '2012-06-03', 122, 'https://www.gutenberg.org/ebooks/39912', 'en', 13036), +(34076, 'The White Slaves of England', 'Cobden, John C.', '2016-06-28', 32, 'https://www.gutenberg.org/ebooks/52423', 'en', 13037), +(34077, 'The San Francisco Fairy: A Tale of Early Times', 'Anonymous', '2013-01-09', 5, 'https://www.gutenberg.org/ebooks/41808', 'en', 13038), +(34078, 'That Little Beggar', 'Hall, Edith King', '2011-05-19', 16, 'https://www.gutenberg.org/ebooks/36166', 'en', 4755), +(34079, 'Airplane Boys in the Black Woods', 'Craine, E. J. (Edith Janice)', '2014-04-25', 9, 'https://www.gutenberg.org/ebooks/45494', 'en', 167), +(34080, 'The Tale of Peter Rabbit', 'Potter, Beatrix', '2005-01-30', 1523, 'https://www.gutenberg.org/ebooks/14838', 'en', 1045), +(34081, 'The Career of Leonard Wood', 'Sears, Joseph Hamblen', '2010-09-03', 8, 'https://www.gutenberg.org/ebooks/33626', 'en', 13039), +(34082, 'O vinho do Porto: processo de uma bestialidade ingleza\r\nexposição a Thomaz Ribeiro', 'Castelo Branco, Camilo', '2008-02-26', 24, 'https://www.gutenberg.org/ebooks/24691', 'pt', 13040), +(34083, 'Rienzi: Rooman viimeinen tribuuni', 'Lytton, Edward Bulwer Lytton, Baron', '2018-06-20', 8, 'https://www.gutenberg.org/ebooks/57363', 'fi', 13041), +(34084, 'The Works of Charles and Mary Lamb — Volume 4\r\nPoems and Plays', 'Lamb, Mary', '2004-03-01', 29, 'https://www.gutenberg.org/ebooks/11576', 'en', 54), +(34085, 'Fearful Symmetry: A Terran Empire novel', 'Wilson, Ann', '2008-06-09', 14, 'https://www.gutenberg.org/ebooks/25743', 'en', 26), +(34086, 'Batting to Win: A Story of College Baseball', 'Chadwick, Lester', '2012-10-28', 4, 'https://www.gutenberg.org/ebooks/41206', 'en', 3669), +(34087, 'Earth\'s Enigmas: A Volume of Stories', 'Roberts, Charles G. D., Sir', '2006-12-30', 38, 'https://www.gutenberg.org/ebooks/20231', 'en', 179), +(34088, 'The Every-day Life of Abraham Lincoln\nA Narrative And Descriptive Biography With Pen-Pictures And Personal\nRecollections By Those Who Knew Him', 'Browne, Francis F. (Francis Fisher)', '2004-11-10', 114, 'https://www.gutenberg.org/ebooks/14004', 'en', 1716), +(34089, 'Mamie\'s Watchword', 'Mathews, Joanna H. (Joanna Hooe)', '2014-01-27', 9, 'https://www.gutenberg.org/ebooks/44774', 'en', 1817), +(34090, 'An Egyptian Princess — Volume 04', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5453', 'en', 803), +(34091, 'Tales From Jókai', 'Jókai, Mór', '2011-09-01', 30, 'https://www.gutenberg.org/ebooks/37286', 'en', 13042), +(34092, 'The Thrall of Leif the Lucky: A Story of Viking Days', 'Liljencrantz, Ottilie A. (Ottilia Adelina)', '2003-10-01', 21, 'https://www.gutenberg.org/ebooks/4581', 'en', 13043), +(34093, 'Problems in Greek history', 'Mahaffy, J. P. (John Pentland)', '2011-06-08', 10, 'https://www.gutenberg.org/ebooks/36354', 'en', 13044), +(34094, 'Le diable amoureux', 'Cazotte, Jacques', '2016-07-23', 44, 'https://www.gutenberg.org/ebooks/52611', 'fr', 5436), +(34095, 'Suomen herännäisyyden historia XIX:llä vuosisadalla IV. 1853-1900', 'Rosendal, Mauno', '2015-09-02', 10, 'https://www.gutenberg.org/ebooks/49857', 'fi', 3204), +(34096, 'Dorothy and the Wizard in Oz', 'Baum, L. Frank (Lyman Frank)', '2007-09-10', 289, 'https://www.gutenberg.org/ebooks/22566', 'en', 4616), +(34097, 'The Spy: The Story of a Superfluous Man', 'Gorky, Maksim', '2016-01-31', 56, 'https://www.gutenberg.org/ebooks/51094', 'en', 4937), +(34098, 'The Noble Spanish Soldier', 'Dekker, Thomas', '2005-09-26', 29, 'https://www.gutenberg.org/ebooks/16753', 'en', 13045), +(34099, 'The Garden of Swords', 'Pemberton, Max', '2014-06-18', 26, 'https://www.gutenberg.org/ebooks/46023', 'en', 1180), +(34100, 'The Life of Captain Matthew Flinders', 'Scott, Ernest, Sir', '2004-08-29', 31, 'https://www.gutenberg.org/ebooks/7304', 'en', 2471), +(34101, 'The Clock Strikes Thirteen', 'Wirt, Mildred A. (Mildred Augustine)', '2010-11-22', 62, 'https://www.gutenberg.org/ebooks/34403', 'en', 3242), +(34102, 'Souvenirs et anecdotes de l\'île d\'Elbe', 'Pons de l\'Hérault, André', '2009-01-18', 13, 'https://www.gutenberg.org/ebooks/27828', 'fr', 1770), +(34103, 'Lippa', 'Egerton, Beatrice', '2006-02-05', 15, 'https://www.gutenberg.org/ebooks/17681', 'en', 1902), +(34104, 'Näyttäymättömät: Huvi-näytelmä kolmessa näytöksessä', 'Holberg, Ludvig', '2015-10-06', 12, 'https://www.gutenberg.org/ebooks/50146', 'fi', 1552), +(34105, 'The English Flower Garden\nwith illustrative notes', 'Bright, Henry Arthur', '2015-05-17', 28, 'https://www.gutenberg.org/ebooks/48985', 'en', 13046), +(34106, 'At Home with the Patagonians\r\nA Year\'s Wanderings over Untrodden Ground from the Straits of Magellan to the Rio Negro', 'Musters, George C.', '2013-04-08', 29, 'https://www.gutenberg.org/ebooks/42483', 'en', 13047), +(34107, '1931: A Glance at the Twentieth Century', 'Hartshorne, Henry', '2010-02-03', 26, 'https://www.gutenberg.org/ebooks/31171', 'en', 1998), +(34108, 'Early Man in the New World', 'Hester, Joseph A.', '2017-08-26', 19, 'https://www.gutenberg.org/ebooks/55434', 'en', 13048), +(34109, 'Œuvres Complètes de Alfred de Musset — Tome 7.', 'Musset, Alfred de', '2004-08-19', 8, 'https://www.gutenberg.org/ebooks/13221', 'fr', 642), +(34110, 'Trade and Travel in the Far East\nor Recollections of twenty-one years passed in Java,\nSingapore, Australia and China.', 'Davidson, G. F.', '2008-10-24', 20, 'https://www.gutenberg.org/ebooks/27014', 'en', 1775), +(34111, 'The Bell-Ringer of Angel\'s, and Other Stories', 'Harte, Bret', '2006-05-25', 43, 'https://www.gutenberg.org/ebooks/2676', 'en', 315), +(34112, 'The Memoirs, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson\nA Linked Index to the Project Gutenberg Editions', 'Jefferson, Thomas', '2009-05-17', 22, 'https://www.gutenberg.org/ebooks/28860', 'en', 1648), +(34113, 'The White Horses', 'Sutcliffe, Halliwell', '2013-08-24', 13, 'https://www.gutenberg.org/ebooks/43551', 'en', 4665), +(34114, 'Life of Frederick Courtenay Selous, D.S.O., Capt. 25th Royal Fusiliers', 'Millais, John Guille', '2012-04-30', 9, 'https://www.gutenberg.org/ebooks/39581', 'en', 13049), +(34115, 'Susanna and Sue', 'Wiggin, Kate Douglas Smith', '2010-04-28', 16, 'https://www.gutenberg.org/ebooks/32169', 'en', 376), +(34116, 'Pro Judaeis: Riflessioni e Documenti', 'Guidetti, Corrado', '2014-05-28', 9, 'https://www.gutenberg.org/ebooks/45807', 'it', 13050), +(34117, '2nd Record', 'Losey\'s Orchestra', '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10239', 'en', 10794), +(34118, 'Anthroposophie im Umriss\nEntwurf eines Systems idealer Weltansicht auf realistischer Grundlage', 'Zimmermann, Robert', '2017-01-14', 8, 'https://www.gutenberg.org/ebooks/53962', 'de', 13051), +(34119, 'The Radio Boys at Mountain Pass; Or, The Midnight Call for Assistance', 'Chapman, Allen', '2012-01-01', 20, 'https://www.gutenberg.org/ebooks/38453', 'en', 3343), +(34120, 'The Private Life of the Romans', 'Johnston, Harold Whetstone', '2012-08-20', 42, 'https://www.gutenberg.org/ebooks/40549', 'en', 2050), +(34121, 'The Children of Westminster Abbey: Studies in English History', 'Kingsley, Rose Georgina', '2010-06-23', 31, 'https://www.gutenberg.org/ebooks/32955', 'en', 13052), +(34122, 'Die häßliche Herzogin: Roman', 'Feuchtwanger, Lion', '2019-05-09', 26, 'https://www.gutenberg.org/ebooks/59464', 'de', 13053), +(34123, 'Beatrice', 'Haggard, H. Rider (Henry Rider)', '2008-03-14', 34, 'https://www.gutenberg.org/ebooks/24830', 'nl', 401), +(34124, 'Shakespeare Study Programs; The Comedies', 'Clarke, Helen Archibald', '2005-01-15', 11, 'https://www.gutenberg.org/ebooks/14699', 'en', 13054), +(34125, 'Fairy and Folk Tales of the Irish Peasantry', NULL, '2010-10-28', 323, 'https://www.gutenberg.org/ebooks/33887', 'en', 8056), +(34126, 'For Love of the King: A Burmese Masque', 'Wilde, Oscar', '2007-10-28', 36, 'https://www.gutenberg.org/ebooks/23229', 'en', 1281), +(34127, 'With Kitchener in the Soudan: A Story of Atbara and Omdurman', 'Henty, G. A. (George Alfred)', '2006-07-19', 69, 'https://www.gutenberg.org/ebooks/18868', 'en', 1361), +(34128, 'The Caxtons: A Family Picture — Volume 14', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 25, 'https://www.gutenberg.org/ebooks/7599', 'en', 137), +(34129, 'The Confessions of Jean Jacques Rousseau — Volume 05', 'Rousseau, Jean-Jacques', '2004-12-06', 15, 'https://www.gutenberg.org/ebooks/3905', 'en', 1419), +(34130, 'A Fall of Glass', 'Lee, Stanley R.', '2016-03-31', 37, 'https://www.gutenberg.org/ebooks/51609', 'en', 26), +(34131, 'The Balladists', 'Geddie, John', '2009-08-17', 22, 'https://www.gutenberg.org/ebooks/29713', 'en', 13055), +(34132, 'Christmas Stories: \"Jest \'Fore Christmas\" and \"The Night Before Christmas\"', 'Moore, Clement Clarke', '2015-04-22', 9, 'https://www.gutenberg.org/ebooks/48724', 'en', 586), +(34133, 'The Life and Works of Friedrich Schiller', 'Thomas, Calvin', '2005-12-01', 15, 'https://www.gutenberg.org/ebooks/9403', 'en', 4298), +(34134, 'From the Darkness Cometh the Light, or Struggles for Freedom', 'Delaney, Lucy A. (Lucy Ann)', '2006-02-22', 14, 'https://www.gutenberg.org/ebooks/17820', 'en', 13056), +(34135, 'Jaime de Magalhães Lima', 'Agostinho, José', '2009-01-03', 26, 'https://www.gutenberg.org/ebooks/27689', 'pt', 13057), +(34136, 'The Zeit-Geist', 'Dougall, L. (Lily)', '2006-03-26', 18, 'https://www.gutenberg.org/ebooks/18054', 'en', 61), +(34137, 'Les contemporains, première série\r\nÉtudes et portraits littéraires', 'Lemaître, Jules', '2006-09-05', 7, 'https://www.gutenberg.org/ebooks/19186', 'fr', 2650), +(34138, 'The Dove in the Eagle\'s Nest', 'Yonge, Charlotte M. (Charlotte Mary)', '2002-03-01', 58, 'https://www.gutenberg.org/ebooks/3139', 'en', 13058), +(34139, 'Mémoires de Céleste Mogador, Volume 1 (of 4)', 'Chabrillan, Céleste Vénard de, comtesse', '2017-06-24', 8, 'https://www.gutenberg.org/ebooks/54975', 'fr', 11867), +(34140, 'The Old Stone House', 'Woolson, Constance Fenimore', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6679', 'en', 4444), +(34141, 'Subspeciation in the Kangaroo Rat, Dipodomys ordii\r\nKU. Vol 1 No 23', 'Setzer, Henry W.', '2013-05-26', 14, 'https://www.gutenberg.org/ebooks/42810', 'en', 6051), +(34142, 'Enamels and Cameos and other Poems', 'Gautier, Théophile', '2009-07-27', 64, 'https://www.gutenberg.org/ebooks/29521', 'en', 2629), +(34143, 'Death—and After?', 'Besant, Annie', '2006-04-27', 60, 'https://www.gutenberg.org/ebooks/18266', 'en', 746), +(34144, 'A History of Advertising from the Earliest Times.', 'Sampson, Henry', '2017-02-10', 24, 'https://www.gutenberg.org/ebooks/54149', 'en', 13059), +(34145, 'Proclaim Liberty!', 'Seldes, Gilbert', '2011-01-08', 16, 'https://www.gutenberg.org/ebooks/34890', 'en', 3003), +(34146, '胡涂世界', 'Wu, Jianren', '2007-12-12', 12, 'https://www.gutenberg.org/ebooks/23827', 'zh', 13060), +(34147, 'Curiosities of Science, Past and Present\nA Book for Old and Young', 'Timbs, John', '2015-03-17', 29, 'https://www.gutenberg.org/ebooks/48516', 'en', 814), +(34148, 'Waltoniana\nInedited Remains in Verse and Prose of Izaak Walton', 'Walton, Izaak', '2006-01-01', 21, 'https://www.gutenberg.org/ebooks/9631', 'en', 1201), +(34149, 'The Siege of the Seven Suitors', 'Nicholson, Meredith', '2011-04-24', 28, 'https://www.gutenberg.org/ebooks/35942', 'en', 1426), +(34150, 'Monkey On His Back', 'De Vet, Charles V.', '2008-09-10', 43, 'https://www.gutenberg.org/ebooks/26569', 'en', 1061), +(34151, 'Wacousta : a tale of the Pontiac conspiracy (Complete)', 'Richardson, Major (John)', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/4912', 'en', 1203), +(34152, 'A Walk and a Drive.', 'Miller, Thomas', '2012-01-24', 12, 'https://www.gutenberg.org/ebooks/38661', 'en', 13061), +(34153, 'The Loves of Ambrose', 'Vandercook, Margaret', '2010-07-29', 11, 'https://www.gutenberg.org/ebooks/33289', 'en', 675), +(34154, 'The Works of John Marston. Volume 1', 'Marston, John', '2014-03-25', 43, 'https://www.gutenberg.org/ebooks/45209', 'en', 126), +(34155, 'Motion Pictures, 1950-1959: Catalog of Copyright Entries', 'Library of Congress. Copyright Office', '2019-06-02', 21, 'https://www.gutenberg.org/ebooks/59656', 'en', 6700), +(34156, 'L\'affaire Lerouge', 'Gaboriau, Emile', '2005-04-07', 71, 'https://www.gutenberg.org/ebooks/15579', 'fr', 642), +(34157, 'And Gone Tomorrow', 'Offutt, Andrew J.', '2019-01-28', 36, 'https://www.gutenberg.org/ebooks/58784', 'en', 1238), +(34158, 'The Soul of Democracy\nThe Philosophy of the World War in Relation to Human Liberty', 'Griggs, Edward Howard', '2004-01-01', 52, 'https://www.gutenberg.org/ebooks/10837', 'en', 3003), +(34159, 'Διηγήματα, Τόμος Δ', 'Moraitides, Alexandros', '2011-10-04', 4, 'https://www.gutenberg.org/ebooks/37629', 'el', 1348), +(34160, 'Elster\'s Folly: A Novel', 'Wood, Henry, Mrs.', '2005-10-04', 39, 'https://www.gutenberg.org/ebooks/16798', 'en', 61), +(34161, 'No Charge for Alterations', 'Gold, H. L. (Horace Leonard)', '2010-04-14', 28, 'https://www.gutenberg.org/ebooks/31986', 'en', 26), +(34162, 'The Best of the World\'s Classics, Restricted to Prose, Vol. X (of X) - America - II, Index', NULL, '2009-06-17', 30, 'https://www.gutenberg.org/ebooks/29145', 'en', 19), +(34163, '風月夢', 'Hanshangmengren, active 19th century', '2008-10-16', 70, 'https://www.gutenberg.org/ebooks/26931', 'zh', 1003), +(34164, 'English: Composition and Literature', 'Webster, W. F. (William Franklin)', '2009-02-16', 82, 'https://www.gutenberg.org/ebooks/28097', 'en', 2270), +(34165, 'The Voice: Its Production, Care and Preservation', 'Miller, Frank E. (Frank Ebenezer)', '2010-01-04', 36, 'https://www.gutenberg.org/ebooks/30854', 'en', 13062), +(34166, 'Hunger', 'Hamsun, Knut', '2005-06-01', 267, 'https://www.gutenberg.org/ebooks/8387', 'en', 918), +(34167, 'Seven Centuries of Lace', 'Pollen, Maria Margaret', '2016-04-26', 16, 'https://www.gutenberg.org/ebooks/51863', 'en', 13063), +(34168, 'Os tripeiros\r\nromance-chronica do seculo XIV', 'Coelho Louzada, Antonio José', '2009-09-13', 4, 'https://www.gutenberg.org/ebooks/29979', 'pt', 98), +(34169, 'La distanza: commedia in tre atti', 'Lopez, Sabatino', '2013-03-31', 12, 'https://www.gutenberg.org/ebooks/42448', 'it', 907), +(34170, 'Contes d\'une grand-mère', 'Sand, George', '2004-05-01', 41, 'https://www.gutenberg.org/ebooks/12338', 'fr', 168), +(34171, 'Touring Afoot', 'Fordyce, Claude P. (Claude Powell)', '2015-01-08', 22, 'https://www.gutenberg.org/ebooks/47906', 'en', 2155), +(34172, 'The Fourth \"R\"', 'Smith, George O. (George Oliver)', '2006-06-16', 42, 'https://www.gutenberg.org/ebooks/18602', 'en', 7580), +(34173, 'Kadotuksen kansa: Kuvaus Lontoon East Endistä', 'London, Jack', '2015-02-05', 30, 'https://www.gutenberg.org/ebooks/48172', 'fi', 1944), +(34174, 'The Gorgon\'s Head\n(From: \"A Wonder-Book for Girls and Boys\")', 'Hawthorne, Nathaniel', '2005-11-01', 32, 'https://www.gutenberg.org/ebooks/9255', 'en', 3412), +(34175, 'Descripçaõ sobre a cultura do Canamo ou Canave', 'Duhamel du Monceau, Henri-Louis', '2009-09-23', 10, 'https://www.gutenberg.org/ebooks/30068', 'pt', 13064), +(34176, 'Style', 'Raleigh, Walter Alexander, Sir', '1997-09-01', 25, 'https://www.gutenberg.org/ebooks/1038', 'en', 11535), +(34177, 'The Leaven in a Great City', 'Betts, Lillian William', '2011-12-03', 7, 'https://www.gutenberg.org/ebooks/38205', 'en', 9540), +(34178, 'The English Utilitarians, Volume 2 (of 3)\r\nJames Mill', 'Stephen, Leslie', '2008-06-14', 40, 'https://www.gutenberg.org/ebooks/25788', 'en', 13065), +(34179, 'The Haskalah Movement in Russia', 'Raisin, Jacob S. (Jacob Salmon)', '2005-05-27', 32, 'https://www.gutenberg.org/ebooks/15921', 'en', 13066), +(34180, 'War and the Future: Italy, France and Britain at War', 'Wells, H. G. (Herbert George)', '2006-03-22', 53, 'https://www.gutenberg.org/ebooks/1804', 'en', 335), +(34181, 'Tacoma and Vicinity', 'Oakland Land, Loan and Trust Company', '2016-12-10', 6, 'https://www.gutenberg.org/ebooks/53708', 'en', 13067), +(34182, 'Homo Sum — Volume 05', 'Ebers, Georg', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/5498', 'en', 803), +(34183, 'The Parables of Our Lord', 'Arnot, William', '2007-05-05', 30, 'https://www.gutenberg.org/ebooks/21328', 'en', 13068), +(34184, 'Notes on Diseases of Cattle: Cause, Symptoms and Treatment', 'Korinek, Charles James', '2019-04-08', 3, 'https://www.gutenberg.org/ebooks/59232', 'en', 13069), +(34185, 'The Brontë Family, with special reference to Patrick Branwell Brontë. Vol. 1 of 2', 'Leyland, Francis A.', '2011-10-25', 26, 'https://www.gutenberg.org/ebooks/37843', 'en', 13028), +(34186, 'Een jaar in de Molukken\r\nDe Aarde en haar Volken, 1917', 'Roelfsema, H. R.', '2008-01-31', 8, 'https://www.gutenberg.org/ebooks/24468', 'nl', 13070), +(34187, 'English and Scottish Ballads, Volume 3 (of 8)', NULL, '2011-11-16', 12, 'https://www.gutenberg.org/ebooks/38037', 'en', 5478), +(34188, 'Het settlement Malakka en het sultanaat Perak\r\nDe Aarde en haar Volken, 1908', 'Agassis, F. J.', '2007-06-25', 18, 'https://www.gutenberg.org/ebooks/21926', 'nl', 13071), +(34189, 'The ghosts of their ancestors', 'Mills, Weymer Jay', '2011-08-06', 64, 'https://www.gutenberg.org/ebooks/36991', 'en', 13072), +(34190, 'Jewish Portraits', 'Magnus, Katie, Lady', '2017-11-25', 22, 'https://www.gutenberg.org/ebooks/56048', 'en', 13073), +(34191, 'The Ether of Space', 'Lodge, Oliver, Sir', '2012-10-02', 29, 'https://www.gutenberg.org/ebooks/40911', 'en', 13074), +(34192, 'Memoirs of an American Lady\r\nWith Sketches of Manners and Scenery in America, as They Existed Previous to the Revolution', 'Grant, Anne MacVicar', '2019-03-03', 15, 'https://www.gutenberg.org/ebooks/59000', 'en', 869), +(34193, 'Föld felett és viz alatt; A véres kenyér; A szegénység utja', 'Jókai, Mór', '2018-03-29', 9, 'https://www.gutenberg.org/ebooks/56874', 'hu', 234), +(34194, 'Sipurim (Stories)', 'Vaknin, Samuel', '2003-12-01', 41, 'https://www.gutenberg.org/ebooks/4778', 'he', 61), +(34195, 'Young Hunters of the Lake; or, Out with Rod and Gun', 'Stratemeyer, Edward', '2004-07-19', 12, 'https://www.gutenberg.org/ebooks/12936', 'en', 5346), +(34196, 'Motor Boat Boys on the St. Lawrence\r\nOr, Solving the Mystery of the Thousand Islands', 'Arundel, Louis', '2011-03-30', 29, 'https://www.gutenberg.org/ebooks/35728', 'en', 13075), +(34197, 'The Survivors of the Chancellor: Diary of J.R. Kazallon, Passenger', 'Verne, Jules', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8989', 'en', 3576), +(34198, 'Historia diplomatica do Brazil: O Reconhecimento do Imperio', 'Lima, Oliveira', '2009-07-11', 29, 'https://www.gutenberg.org/ebooks/29377', 'pt', 10169), +(34199, 'Great Pictures, As Seen and Described by Famous Writers', NULL, '2006-01-07', 58, 'https://www.gutenberg.org/ebooks/17478', 'en', 3670), +(34200, 'The Sanitary Evolution of London', 'Jephson, Henry (Henry Lorenzo)', '2014-11-07', 10, 'https://www.gutenberg.org/ebooks/47308', 'en', 13076), +(34201, 'Mother Truth\'s Melodies. Common Sense For Children. A Kindergarten', 'Miller, E. P., Mrs.', '2010-02-25', 5, 'https://www.gutenberg.org/ebooks/31388', 'en', 2990), +(34202, 'Camping in the Canadian Rockies\r\nan account of camp life in the wilder parts of the Canadian Rocky mountains, together with a description of the region about Banff, Lake Louise, and Glacier, and a sketch of early explorations.', 'Wilcox, Walter Dwight', '2015-06-27', 14, 'https://www.gutenberg.org/ebooks/49292', 'en', 5130), +(34203, 'Reden an die deutsche Nation', 'Fichte, Johann Gottlieb', '2015-02-22', 38, 'https://www.gutenberg.org/ebooks/48340', 'de', 11688), +(34204, 'Robert Browning: How to Know Him', 'Phelps, William Lyon', '2005-10-01', 8, 'https://www.gutenberg.org/ebooks/9067', 'en', 7835), +(34205, 'Our Elizabeth: A Humour Novel', 'Kilpatrick, Florence A. (Florence Antoinette)', '2006-05-22', 14, 'https://www.gutenberg.org/ebooks/18430', 'en', 11166), +(34206, 'Lost in the Backwoods: A Tale of the Canadian Forest', 'Traill, Catharine Parr Strickland', '2004-11-01', 23, 'https://www.gutenberg.org/ebooks/6813', 'en', 5521), +(34207, 'My Service in the U.S. Colored Cavalry\r\nA Paper Read before the Ohio Commandery of the Loyal Legion, March 4, 1908', 'Browne, Frederick W.', '2010-04-13', 9, 'https://www.gutenberg.org/ebooks/31972', 'en', 444), +(34208, 'Johannes Kalvin', 'Oehninger, Friedrich', '2015-09-03', 15, 'https://www.gutenberg.org/ebooks/49868', 'fi', 9556), +(34209, 'The Day of the Boomer Dukes', 'Pohl, Frederik', '2007-09-10', 104, 'https://www.gutenberg.org/ebooks/22559', 'en', 26), +(34210, 'Gycia: A Tragedy in Five Acts', 'Morris, Lewis', '2009-01-16', 25, 'https://www.gutenberg.org/ebooks/27817', 'en', 402), +(34211, 'The Next Logical Step', 'Bova, Ben', '2009-02-13', 113, 'https://www.gutenberg.org/ebooks/28063', 'en', 179), +(34212, 'Human Follies (La Bêtise Humaine.)', 'Noriac, Jules', '2015-10-11', 16, 'https://www.gutenberg.org/ebooks/50179', 'en', 58), +(34213, 'The Poetry of Science; or, Studies of the Physical Phenomena of Nature', 'Hunt, Robert', '2016-04-30', 14, 'https://www.gutenberg.org/ebooks/51897', 'en', 814), +(34214, 'The Bible, Douay-Rheims, Book 73: Apocalypse\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8373', 'en', 5644), +(34215, 'Anatomy and Embalming\r\nA Treatise on the Science and Art of Embalming, the Latest and Most Successful Methods of Treatment and the General Anatomy Relating to this Subject', 'Nunnamaker, Albert John', '2015-05-26', 50, 'https://www.gutenberg.org/ebooks/49054', 'en', 13077), +(34216, 'Home Pastimes; or Tableaux Vivants', 'Head, James H.', '2006-11-06', 23, 'https://www.gutenberg.org/ebooks/19724', 'en', 13078), +(34217, 'Experiments and Observations Relative to the Influence Lately Discovered by M. Galvani and Commonly Called Animal Electricity', 'Fowler, Richard', '2014-09-09', 9, 'https://www.gutenberg.org/ebooks/46820', 'en', 13079), +(34218, 'History of the Decline and Fall of the Roman Empire — Volume 2', 'Gibbon, Edward', '2008-06-07', 208, 'https://www.gutenberg.org/ebooks/732', 'en', 1292), +(34219, 'Parsons on the Rose\nA Treatise on the Propagation, Culture and History of the Rose', 'Parsons, Samuel Browne', '2015-02-07', 23, 'https://www.gutenberg.org/ebooks/48186', 'en', 13080), +(34220, 'Point of Departure', 'Shelton, Vaughan', '2016-01-17', 19, 'https://www.gutenberg.org/ebooks/50945', 'en', 179), +(34221, 'Captains of the Civil War: A Chronicle of the Blue and the Gray', 'Wood, William', '2001-05-01', 22, 'https://www.gutenberg.org/ebooks/2649', 'en', 2723), +(34222, 'Marjapojat', 'Hahnsson, Theodolinda', '2005-01-26', 15, 'https://www.gutenberg.org/ebooks/14807', 'fi', 61), +(34223, 'Maori and Settler: A Story of The New Zealand War', 'Henty, G. A. (George Alfred)', '2010-09-03', 35, 'https://www.gutenberg.org/ebooks/33619', 'en', 13081), +(34224, 'The Life and Letters of Elizabeth Prentiss', 'Prentiss, George Lewis', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11549', 'en', 13082), +(34225, 'Tusschen mal en dwaas\nWat een meisje te genieten en te lijden heeft, eer zij de wereld in is', 'Helm, Clementine', '2012-10-30', 16, 'https://www.gutenberg.org/ebooks/41239', 'nl', 3831), +(34226, 'A Pilgrim Maid: A Story of Plymouth Colony in 1620', 'Taggart, Marion Ames', '2012-04-01', 16, 'https://www.gutenberg.org/ebooks/39323', 'en', 13083), +(34227, 'Slavery in History', 'Gurowski, Adam', '2018-11-20', 51, 'https://www.gutenberg.org/ebooks/58314', 'en', 11823), +(34228, 'The Last American Frontier', 'Paxson, Frederic L. (Frederic Logan)', '2014-05-19', 76, 'https://www.gutenberg.org/ebooks/45699', 'en', 930), +(34229, 'London Lectures of 1907', 'Besant, Annie', '2007-03-12', 28, 'https://www.gutenberg.org/ebooks/20800', 'en', 746), +(34230, 'Miser Farebrother: A Novel (vol. 1 of 3)', 'Farjeon, B. L. (Benjamin Leopold)', '2012-03-12', 68, 'https://www.gutenberg.org/ebooks/39111', 'en', 61), +(34231, 'Harriet Martineau', 'Miller, Florence Fenwick', '2011-08-03', 10, 'https://www.gutenberg.org/ebooks/36965', 'en', 13084), +(34232, 'Die Naturwissenschaften in ihrer Entwicklung und in ihrem Zusammenhange, III. Band\r\nDas Emporblühen der modernen Naturwissenschaften bis zur Entdeckung des Energieprinzipes', 'Dannemann, Friedrich', '2018-09-22', 19, 'https://www.gutenberg.org/ebooks/57952', 'de', 186), +(34233, 'Slavery in Pennsylvania\r\nA Dissertation Submitted to the Board of University Studies of the Johns Hopkins University in Conformity with the Requirements for the Degree of Doctor of Philosophy, 1910', 'Turner, Edward Raymond', '2014-01-04', 8, 'https://www.gutenberg.org/ebooks/44579', 'en', 13085), +(34234, 'The Kybalion\nA Study of The Hermetic Philosophy of Ancient Egypt and Greece', 'Three Initiates', '2004-11-29', 1076, 'https://www.gutenberg.org/ebooks/14209', 'en', 13086), +(34235, 'The American Missionary — Volume 36, No. 10, October, 1882', 'Various', '2018-10-18', 5, 'https://www.gutenberg.org/ebooks/58126', 'en', 562), +(34236, 'The Secret Mark\nAn Adventure Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-01-13', 5, 'https://www.gutenberg.org/ebooks/41837', 'en', 167), +(34237, 'The Letter of Credit', 'Warner, Susan', '2011-05-18', 23, 'https://www.gutenberg.org/ebooks/36159', 'en', 61), +(34238, 'The Secret Doctrine, Vol. 3 of 4', 'Blavatsky, H. P. (Helena Petrovna)', '2018-03-30', 119, 'https://www.gutenberg.org/ebooks/56880', 'en', 746), +(34239, 'Candido, o El Optimismo', 'Voltaire', '2004-12-01', 85, 'https://www.gutenberg.org/ebooks/7109', 'es', 13087), +(34240, 'Ibrahim Pasha: Grand Vizir of Suleiman the Magnificent', 'Jenkins, Hester Donaldson', '2016-02-25', 39, 'https://www.gutenberg.org/ebooks/51299', 'en', 13088), +(34241, 'The Hawaiian Islands\r\nTheir Resources, Agricultural, Commercial and Financial', 'Hawaii. Department of Foreign Affairs', '2009-07-12', 18, 'https://www.gutenberg.org/ebooks/29383', 'en', 13089), +(34242, 'A Preliminary Study of the Emotion of Love between the Sexes', 'Bell, Sanford', '2009-03-05', 21, 'https://www.gutenberg.org/ebooks/28251', 'en', 5136), +(34243, 'Tristan', 'Mann, Thomas', '2004-10-20', 111, 'https://www.gutenberg.org/ebooks/13810', 'de', 13090), +(34244, 'Ballad Book', NULL, '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/7935', 'en', 5478), +(34245, 'Les pastorales de Longus, ou Daphnis et Chloé', 'Longus', '2017-09-27', 31, 'https://www.gutenberg.org/ebooks/55639', 'fr', 12919), +(34246, 'The Adventures of Pinocchio', 'Collodi, Carlo', '2006-10-11', 68, 'https://www.gutenberg.org/ebooks/19516', 'en', 5022), +(34247, 'Mr. Hawkins\' Humorous Adventures', 'Franklin, Edgar', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8141', 'en', 13091), +(34248, 'The Wars of Religion in France 1559-1576\nThe Huguenots, Catherine de Medici and Philip II', 'Thompson, James Westfall', '2015-06-23', 9, 'https://www.gutenberg.org/ebooks/49266', 'en', 13092), +(34249, 'Rural Tales, Ballads, and Songs', 'Bloomfield, Robert', '2005-10-01', 5, 'https://www.gutenberg.org/ebooks/9093', 'en', 1930), +(34250, 'Punicorum Libri Septemdecim', 'Silius Italicus, Tiberius Catius', '2008-11-09', 29, 'https://www.gutenberg.org/ebooks/27219', 'la', 12136), +(34251, 'The Adventures of Pinocchio', 'Collodi, Carlo', '2006-01-12', 824, 'https://www.gutenberg.org/ebooks/500', 'en', 4810), +(34252, 'The Long Remembered Thunder', 'Laumer, Keith', '2016-08-18', 94, 'https://www.gutenberg.org/ebooks/52844', 'en', 26), +(34253, 'Aurelia, oder, Der Traum und das Leben', 'Nerval, Gérard de', '2012-04-29', 17, 'https://www.gutenberg.org/ebooks/39575', 'de', 12818), +(34254, 'Die Cellularpathologie\nin ihrer Begründung auf physiologische und pathologische Gewebelehre', 'Virchow, Rudolf', '2014-02-15', 15, 'https://www.gutenberg.org/ebooks/44921', 'de', 13093), +(34255, 'Where Love Is', 'Locke, William John', '2017-01-18', 16, 'https://www.gutenberg.org/ebooks/53996', 'en', 95), +(34256, 'Girl Scouts in Arizona and New Mexico', 'Roy, Lillian Elizabeth', '2019-05-13', 23, 'https://www.gutenberg.org/ebooks/59490', 'en', 315), +(34257, 'The Captain of the Guard', 'Grant, James', '2016-05-16', 11, 'https://www.gutenberg.org/ebooks/52078', 'en', 13094), +(34258, 'Prescott of Saskatchewan', 'Bindloss, Harold', '2008-06-28', 21, 'https://www.gutenberg.org/ebooks/25916', 'en', 65), +(34259, 'Dolly\'s College Experiences', 'Jones, Mabel Cronise', '2010-10-18', 18, 'https://www.gutenberg.org/ebooks/33873', 'en', 5010), +(34260, 'What I Remember, Volume 1', 'Trollope, Thomas Adolphus', '2018-12-26', 11, 'https://www.gutenberg.org/ebooks/58542', 'en', 13095), +(34261, 'The Triflers', 'Bartlett, Frederick Orin', '2007-01-27', 16, 'https://www.gutenberg.org/ebooks/20458', 'en', 61), +(34262, 'My Life: or the Adventures of Geo. Thompson\r\nBeing the Auto-Biography of an Author. Written by Himself.', 'Thompson, George', '2009-04-29', 14, 'https://www.gutenberg.org/ebooks/28635', 'en', 13096), +(34263, 'The Fitz-Boodle Papers', 'Thackeray, William Makepeace', '2006-03-27', 25, 'https://www.gutenberg.org/ebooks/2823', 'en', 1971), +(34264, 'Peking-Paris im Automobil\nEine Wettfahrt durch Asien und Europa in sechzig Tagen.', 'Barzini, Luigi', '2014-12-28', 28, 'https://www.gutenberg.org/ebooks/47798', 'de', 10478), +(34265, 'Rinkitink in Oz\r\nWherein Is Recorded the Perilous Quest of Prince Inga of Pingaree and King Rinkitink in the Magical Isles That Lie Beyond the Borderland of Oz', 'Baum, L. Frank (Lyman Frank)', '1997-06-01', 150, 'https://www.gutenberg.org/ebooks/958', 'en', 12867), +(34266, 'Isblink: Digte fra den grønlandske Polarregion', 'Erichsen, L. Mylius (Ludvig Mylius)', '2013-07-28', 7, 'https://www.gutenberg.org/ebooks/43338', 'da', 13097), +(34267, 'Twenty Thousand Leagues under the Sea', 'Verne, Jules', '1994-09-01', 1308, 'https://www.gutenberg.org/ebooks/164', 'en', 737), +(34268, 'The Pleasures of Ignorance', 'Lynd, Robert', '2004-09-12', 45, 'https://www.gutenberg.org/ebooks/13448', 'en', 20), +(34269, 'An Australian in China\nBeing the Narrative of a Quiet Journey Across China to Burma', 'Morrison, George Ernest', '2006-09-04', 42, 'https://www.gutenberg.org/ebooks/19172', 'en', 2773), +(34270, 'Discourse of the Life and Character of the Hon. Littleton Waller Tazewell', 'Grigsby, Hugh Blair', '2005-10-19', 19, 'https://www.gutenberg.org/ebooks/16906', 'en', 13098), +(34271, 'The Rosie World', 'Fillmore, Parker', '2010-03-21', 10, 'https://www.gutenberg.org/ebooks/31718', 'en', 40), +(34272, 'Eve\'s Diary, Complete', 'Twain, Mark', '2004-06-01', 559, 'https://www.gutenberg.org/ebooks/8525', 'en', 13099), +(34273, 'The Lame Lover: A Comedy in Three Acts', 'Foote, Samuel', '2015-08-04', 7, 'https://www.gutenberg.org/ebooks/49602', 'en', 907), +(34274, 'American Missionary, Vol. XXXIV., No. 5, May 1880', 'Various', '2017-06-26', 4, 'https://www.gutenberg.org/ebooks/54981', 'en', 562), +(34275, 'The Crime of the Boulevard', 'Claretie, Jules', '2010-10-11', 10, 'https://www.gutenberg.org/ebooks/34058', 'en', 9589), +(34276, 'The Wonderful Wizard of Oz', 'Baum, L. Frank (Lyman Frank)', '2013-10-12', 561, 'https://www.gutenberg.org/ebooks/43936', 'en', 2791), +(34277, 'The plant-lore & garden-craft of Shakespeare', 'Ellacombe, Henry Nicholson', '2009-03-25', 58, 'https://www.gutenberg.org/ebooks/28407', 'en', 13100), +(34278, 'How Deacon Tubman and Parson Whitney Kept New Year\'s\nAnd Other Stories', 'Murray, W. H. H. (William Henry Harrison)', '2005-07-16', 9, 'https://www.gutenberg.org/ebooks/16308', 'en', 61), +(34279, 'Kaarlo Bergbomin kirjoitukset 2. Tutkimukset ja arvostelut', 'Bergbom, Kaarlo Johan', '2017-10-30', 14, 'https://www.gutenberg.org/ebooks/55853', 'fi', 12139), +(34280, 'Lux Mundi: A Series of Studies in the Religion of the Incarnation,\r\n10th Edition, 1890', NULL, '2014-08-02', 17, 'https://www.gutenberg.org/ebooks/46478', 'en', 13101), +(34281, 'Beyond the City', 'Doyle, Arthur Conan', '2008-07-02', 171, 'https://www.gutenberg.org/ebooks/356', 'en', 13102), +(34282, 'The Boys of Old Monmouth: A Story of Washington\'s Campaign in New Jersey in 1778', 'Tomlinson, Everett T. (Everett Titsworth)', '2011-01-06', 13, 'https://www.gutenberg.org/ebooks/34864', 'en', 13103), +(34283, 'S.O.S. Stand to!', 'Grant, Reginald', '2006-05-01', 7, 'https://www.gutenberg.org/ebooks/18292', 'en', 3601), +(34284, 'Scientific American Supplement, No. 344, August 5, 1882', 'Various', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8717', 'en', 210), +(34285, 'Taglibro de Vilaĝ-pedelo', 'Blicher, Steen Steensen', '2007-10-05', 12, 'https://www.gutenberg.org/ebooks/22901', 'eo', 13104), +(34286, 'Artturi Berkow', 'Werner, E.', '2015-07-12', 11, 'https://www.gutenberg.org/ebooks/49430', 'fi', 1103), +(34287, 'The Story of the Big Front Door', 'Leonard, Mary Finley', '2006-09-20', 14, 'https://www.gutenberg.org/ebooks/19340', 'en', 4426), +(34288, 'Studi intorno alla storia della Lombardia\r\nnegli ultimi trent\'anni e delle cagioni del difetto d\'energia dei lombardi', 'Belgioioso, Cristina', '2008-05-03', 17, 'https://www.gutenberg.org/ebooks/25318', 'it', 13105), +(34289, 'A Manual of Ancient History\nParticularly with Regard to the Constitutions, the Commerce, and the Colonies, of the States of Antiquity', 'Heeren, A. H. L. (Arnold Hermann Ludwig)', '2012-05-21', 34, 'https://www.gutenberg.org/ebooks/39747', 'en', 13106), +(34290, 'Donahoe\'s Magazine, Volume 15, No. 4, April, 1886', 'Various', '2012-01-28', 17, 'https://www.gutenberg.org/ebooks/38695', 'en', 18), +(34291, 'Bimbi: Stories for Children', 'Ouida', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5834', 'en', 388), +(34292, 'Memoirs of Eighty Years', 'Hake, Thomas Gordon', '2018-08-21', 8, 'https://www.gutenberg.org/ebooks/57738', 'en', 13107), +(34293, 'The Silent Isle', 'Benson, Arthur Christopher', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/11911', 'en', 472), +(34294, 'Beryl of the Biplane: Being the Romance of an Air-Woman of To-Day', 'Le Queux, William', '2019-01-26', 19, 'https://www.gutenberg.org/ebooks/58770', 'en', 13108), +(34295, 'Honoré de Balzac', 'Gautier, Théophile', '2016-10-29', 12, 'https://www.gutenberg.org/ebooks/53398', 'en', 4588), +(34296, 'Katherine\'s Sheaves', 'Sheldon, Georgie, Mrs.', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/5008', 'en', 8601), +(34297, 'Adventures in Bolivia', 'Prodgers, C. H. (Cecil Herbert)', '2018-06-20', 23, 'https://www.gutenberg.org/ebooks/57364', 'en', 1128), +(34298, 'The Daughter of a Magnate', 'Spearman, Frank H. (Frank Hamilton)', '2008-02-26', 19, 'https://www.gutenberg.org/ebooks/24696', 'en', 13109), +(34299, 'Battle of Fort George: A paper read on March 14th, 1896', 'Cruikshank, E. A. (Ernest Alexander)', '2010-09-03', 17, 'https://www.gutenberg.org/ebooks/33621', 'en', 7149), +(34300, 'The Diary of a Superfluous Man, and Other Stories', 'Turgenev, Ivan Sergeevich', '2012-10-27', 28, 'https://www.gutenberg.org/ebooks/41201', 'en', 85), +(34301, 'Teams: A Terran Empire story', 'Wilson, Ann', '2008-06-09', 6, 'https://www.gutenberg.org/ebooks/25744', 'en', 26), +(34302, 'Mr. Punch\'s History of the Great War', 'Graves, Charles L. (Charles Larcom)', '2004-03-01', 62, 'https://www.gutenberg.org/ebooks/11571', 'en', 2328), +(34303, 'An Egyptian Princess — Volume 05', 'Ebers, Georg', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/5454', 'en', 1802), +(34304, 'How to Write Music: Musical Orthography', 'Harris, Clement A. (Clement Antrobus)', '2011-08-31', 40, 'https://www.gutenberg.org/ebooks/37281', 'en', 13110), +(34305, 'A Likely Story', 'De Morgan, William', '2014-01-27', 19, 'https://www.gutenberg.org/ebooks/44773', 'en', 705), +(34306, 'Disputed Handwriting\r\nAn exhaustive, valuable, and comprehensive work upon one of the most important subjects of to-day. With illustrations and expositions for the detection and study of forgery by handwriting of all kinds', 'Lavay, Jerome Buell', '2004-11-10', 21, 'https://www.gutenberg.org/ebooks/14003', 'en', 13111), +(34307, 'Fair to Look Upon', 'Freeley, Mary Belle', '2006-12-31', 8, 'https://www.gutenberg.org/ebooks/20236', 'en', 13112), +(34308, 'Adventures of a Telegraph Boy; or, \"Number 91\"', 'Alger, Horatio, Jr.', '2016-07-22', 27, 'https://www.gutenberg.org/ebooks/52616', 'en', 13113), +(34309, 'Danger; Or, Wounded in the House of a Friend', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 15, 'https://www.gutenberg.org/ebooks/4586', 'en', 716), +(34310, 'The Invisible Lodge', 'Jean Paul', '2011-06-08', 20, 'https://www.gutenberg.org/ebooks/36353', 'en', 61), +(34311, 'Equality', 'Bellamy, Edward', '2005-01-01', 56, 'https://www.gutenberg.org/ebooks/7303', 'en', 2186), +(34312, 'Origin Myths among the Mountain Peoples of the Philippines', 'Beyer, H. Otley (Henry Otley)', '2014-06-18', 38, 'https://www.gutenberg.org/ebooks/46024', 'en', 13114), +(34313, 'Kallun kestit: Kolminäytöksinen ilveily', 'Järnefelt, Arvid', '2016-01-31', 5, 'https://www.gutenberg.org/ebooks/51093', 'fi', 382), +(34314, 'Kuusten juurella: Romaani', 'Meriläinen, Heikki', '2005-09-26', 12, 'https://www.gutenberg.org/ebooks/16754', 'fi', 61), +(34315, 'Tame Animals', 'Anonymous', '2007-09-10', 23, 'https://www.gutenberg.org/ebooks/22561', 'en', 13115), +(34316, 'A Letter From a Clergyman to his Friend,\nwith an Account of the Travels of Captain Lemuel Gulliver', 'Anonymous', '2009-06-21', 9, 'https://www.gutenberg.org/ebooks/29189', 'en', 13116), +(34317, 'The Tower of London: A Historical Romance, Illustrated', 'Ainsworth, William Harrison', '2015-09-02', 31, 'https://www.gutenberg.org/ebooks/49850', 'en', 13117), +(34318, 'Kun lesket lempivät: Nelinäytöksinen huvinäytelmä', 'Lassila, Maiju', '2015-05-17', 23, 'https://www.gutenberg.org/ebooks/48982', 'fi', 382), +(34319, 'Troilus ja Cressida', 'Shakespeare, William', '2006-02-06', 15, 'https://www.gutenberg.org/ebooks/17686', 'fi', 10826), +(34320, 'A New Bog Lemming (Genus Synaptomys) From Nebraska', 'Jones, J. Knox', '2010-01-09', 9, 'https://www.gutenberg.org/ebooks/30898', 'en', 4802), +(34321, 'Philosophical Studies', 'Moore, G. E. (George Edward)', '2015-10-06', 34, 'https://www.gutenberg.org/ebooks/50141', 'en', 2694), +(34322, 'The Beautiful Miss Brooke', 'Zangwill, Louis', '2010-11-22', 22, 'https://www.gutenberg.org/ebooks/34404', 'en', 348), +(34323, 'The American Missionary — Volume 34, No. 8, August, 1880', 'Various', '2017-08-26', 2, 'https://www.gutenberg.org/ebooks/55433', 'en', 395), +(34324, 'Rivers of Great Britain. The Thames, from Source to Sea.\r\nDescriptive, Historical, Pictorial', 'Various', '2014-09-09', 19, 'https://www.gutenberg.org/ebooks/46818', 'en', 13118), +(34325, 'Les Histoires merveilleuses, ou les Petits Peureux corrigés', 'Antoine, A. (Antoine)', '2010-02-03', 22, 'https://www.gutenberg.org/ebooks/31176', 'fr', 13119), +(34326, 'The Popham Colony\r\na discussion of its historical claims, with a bibliography of the subject', 'Poole, William Frederick', '2013-04-08', 29, 'https://www.gutenberg.org/ebooks/42484', 'en', 13120), +(34327, 'I, Mary MacLane: A Diary of Human Days', 'MacLane, Mary', '2013-08-25', 23, 'https://www.gutenberg.org/ebooks/43556', 'en', 13121), +(34328, 'Racconti fantastici', 'Tarchetti, Iginio Ugo', '2009-05-18', 51, 'https://www.gutenberg.org/ebooks/28867', 'it', 13122), +(34329, 'Italian Letters, Vols. I and II; Or, The History of the Count de St. Julian', 'Godwin, William', '2005-11-01', 23, 'https://www.gutenberg.org/ebooks/9299', 'en', 258), +(34330, 'The Complete Writings of Charles Dudley Warner — Volume 1', 'Warner, Charles Dudley', '2001-06-01', 8, 'https://www.gutenberg.org/ebooks/2671', 'en', 20), +(34331, 'Hellhounds of the Cosmos', 'Simak, Clifford D.', '2008-10-24', 124, 'https://www.gutenberg.org/ebooks/27013', 'en', 26), +(34332, 'The Common People of Ancient Rome\nStudies of Roman Life and Literature', 'Abbott, Frank Frost', '2004-08-19', 42, 'https://www.gutenberg.org/ebooks/13226', 'en', 2050), +(34333, 'Aunt Jane\'s Nieces Abroad', 'Baum, L. Frank (Lyman Frank)', '2005-08-21', 55, 'https://www.gutenberg.org/ebooks/16566', 'en', 246), +(34334, 'The Life of Cicero, Volume One', 'Trollope, Anthony', '2005-09-01', 26, 'https://www.gutenberg.org/ebooks/8945', 'en', 10729), +(34335, 'Per ja Bergit', 'Janson, Kristofer', '2007-09-24', 14, 'https://www.gutenberg.org/ebooks/22753', 'fi', 7), +(34336, 'The History of the United States from 1492 to 1910, Volume 1\r\nFrom Discovery of America October 12, 1492 to Battle of Lexington April 19, 1775', 'Hawthorne, Julian', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/7131', 'en', 207), +(34337, 'Carriages & Coaches: Their History & Their Evolution', 'Straus, Ralph', '2014-07-07', 28, 'https://www.gutenberg.org/ebooks/46216', 'en', 13123), +(34338, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 12, No. 29, August, 1873', 'Various', '2004-10-22', 10, 'https://www.gutenberg.org/ebooks/13828', 'en', 210), +(34339, '腕くらべ', 'Nagai, Kafu', '2010-12-13', 23, 'https://www.gutenberg.org/ebooks/34636', 'ja', 13124), +(34340, 'Cupid\'s Almanac and Guide to Hearticulture for This Year and Next', 'Herford, Oliver', '2007-12-02', 21, 'https://www.gutenberg.org/ebooks/23681', 'en', 13125), +(34341, 'Art in Needlework: A Book about Embroidery', 'Buckle, Mary', '2009-03-07', 126, 'https://www.gutenberg.org/ebooks/28269', 'en', 9183), +(34342, 'Cricket', NULL, '2015-11-03', 20, 'https://www.gutenberg.org/ebooks/50373', 'en', 2802), +(34343, 'Introductory American History', 'Benton, Elbert Jay', '2006-02-01', 49, 'https://www.gutenberg.org/ebooks/9897', 'en', 207); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(34344, 'Mathematical Geography', 'Johnson, Willis E. (Willis Ernest)', '2010-02-21', 82, 'https://www.gutenberg.org/ebooks/31344', 'en', 13126), +(34345, 'An Historical Account of the Rise and Progress of the Colonies of South Carolina and Georgia, Volume 1', 'Hewatt, Alexander', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8179', 'en', 13127), +(34346, 'Essays of Michel de Montaigne — Volume 11', 'Montaigne, Michel de', '2004-11-01', 9, 'https://www.gutenberg.org/ebooks/3591', 'en', 1964), +(34347, 'Lovers\' Saint Ruth\'s, and Three Other Tales', 'Guiney, Louise Imogen', '2017-09-22', 13, 'https://www.gutenberg.org/ebooks/55601', 'en', 50), +(34348, 'The Minstrel; or the Progress of Genius\nwith some other poems', 'Beattie, James', '2008-11-09', 13, 'https://www.gutenberg.org/ebooks/27221', 'en', 8), +(34349, 'The Talking Deaf Man\r\nA Method Proposed, Whereby He Who is Born Deaf, May Learn to Speak', 'Amman, Johann Conrad', '2004-07-24', 12, 'https://www.gutenberg.org/ebooks/13014', 'en', 13128), +(34350, 'Jean of the Lazy A', 'Bower, B. M.', '1996-05-01', 78, 'https://www.gutenberg.org/ebooks/538', 'en', 315), +(34351, 'Cambridge and Its Story', 'Stubbs, Charles William', '2013-09-18', 32, 'https://www.gutenberg.org/ebooks/43764', 'en', 2098), +(34352, 'The Philosophy of Teaching\nThe Teacher, The Pupil, The School', 'Sands, Nathaniel', '2009-10-20', 7, 'https://www.gutenberg.org/ebooks/30296', 'en', 341), +(34353, 'The Story of the Mormons, from the Date of Their Origin to the Year 1901', 'Linn, William Alexander', '2000-12-01', 21, 'https://www.gutenberg.org/ebooks/2443', 'en', 13129), +(34354, 'The Story of Books', 'Rawlings, Gertrude Burford', '2010-08-13', 29, 'https://www.gutenberg.org/ebooks/33413', 'en', 7900), +(34355, 'Scotts Bluff National Monument, Nebraska', 'Mattes, Merrill J.', '2019-02-20', 13, 'https://www.gutenberg.org/ebooks/58922', 'en', 1181), +(34356, 'The Infra-Medians', 'Wright, Sewell Peaslee', '2007-03-17', 38, 'https://www.gutenberg.org/ebooks/20838', 'en', 26), +(34357, 'The Scarecrow; or The Glass of Truth: A Tragedy of the Ludicrous', 'MacKaye, Percy', '2018-05-13', 43, 'https://www.gutenberg.org/ebooks/57156', 'en', 13130), +(34358, 'Select Speeches of Kossuth', 'Kossuth, Lajos', '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/10691', 'en', 6259), +(34359, 'Le Tour du Monde; Indes Occidentales\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-05-23', 13, 'https://www.gutenberg.org/ebooks/25576', 'fr', 1673), +(34360, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 548, May 26, 1832', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11743', 'en', 133), +(34361, 'Catharine de Bora: Social and Domestic Scenes in the Home of Luther', 'Morris, John G. (John Gottlieb)', '2017-11-30', 4, 'https://www.gutenberg.org/ebooks/56084', 'en', 13131), +(34362, 'The Silver Shield: An Original Comedy in Three Acts', 'Grundy, Sydney', '2012-10-12', 9, 'https://www.gutenberg.org/ebooks/41033', 'en', 907), +(34363, 'The Optimist\'s Good Morning', NULL, '2012-03-13', 12, 'https://www.gutenberg.org/ebooks/39129', 'en', 7631), +(34364, 'Punch, or the London Charivari, Volume 101, December 26, 1891', 'Various', '2004-12-01', 13, 'https://www.gutenberg.org/ebooks/14231', 'en', 134), +(34365, 'Tancred; Or, The New Crusade', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-12-03', 82, 'https://www.gutenberg.org/ebooks/20004', 'en', 13132), +(34366, 'The Arabian Nights Entertainments — Volume 03', NULL, '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/5666', 'en', 3347), +(34367, 'The Last Link: Our Present Knowledge of the Descent of Man', 'Haeckel, Ernst', '2013-12-29', 20, 'https://www.gutenberg.org/ebooks/44541', 'en', 1109), +(34368, 'On Yacht Sailing\r\nA Simple Treatise for Beginners upon the Art of Handling Small Yachts and Boats', 'Day, Thomas Fleming', '2014-04-25', 47, 'https://www.gutenberg.org/ebooks/45493', 'en', 5183), +(34369, 'A Letter to Thomas F. Bayard', 'Spooner, Lysander', '2011-05-17', 7, 'https://www.gutenberg.org/ebooks/36161', 'en', 13133), +(34370, 'Cave Hunting\r\nResearches on the evidence of caves respecting the early inhabitants of Europe', 'Dawkins, William Boyd', '2016-06-28', 15, 'https://www.gutenberg.org/ebooks/52424', 'en', 13134), +(34371, 'Gouverneur Morris', 'Roosevelt, Theodore', '2012-06-04', 22, 'https://www.gutenberg.org/ebooks/39915', 'en', 1648), +(34372, 'The New Boy at Hilltop, and Other Stories', 'Barbour, Ralph Henry', '2004-09-01', 14, 'https://www.gutenberg.org/ebooks/6487', 'en', 845), +(34373, 'Vanitas: Polite Stories', 'Lee, Vernon', '2010-11-08', 24, 'https://www.gutenberg.org/ebooks/34252', 'en', 401), +(34374, 'The Tin Woodman of Oz\r\nA Faithful Story of the Astonishing Adventure Undertaken by the Tin Woodman, Assisted by Woot the Wanderer, the Scarecrow of Oz, and Polychrome, the Rainbow\'s Daughter', 'Baum, L. Frank (Lyman Frank)', '1997-06-01', 244, 'https://www.gutenberg.org/ebooks/960', 'en', 13135), +(34375, 'La Grande Mademoiselle, 1627-1652', 'Barine, Arvède', '2015-12-19', 5, 'https://www.gutenberg.org/ebooks/50717', 'en', 13136), +(34376, 'Reis in Nepal\r\nDe Aarde en haar Volken, 1887', 'Le Bon, Gustave', '2005-06-22', 19, 'https://www.gutenberg.org/ebooks/16102', 'nl', 13137), +(34377, 'History of the Moors of Spain', 'Florian', '2007-08-16', 38, 'https://www.gutenberg.org/ebooks/22337', 'en', 13138), +(34378, 'Quotes and Images From The Confessions of Jean Jacques Rousseau', 'Rousseau, Jean-Jacques', '2004-08-28', 24, 'https://www.gutenberg.org/ebooks/7555', 'en', 1026), +(34379, 'Slave Narratives: A Folk History of Slavery in the United States From Interviews with Former Slaves: Volume XVI, Texas Narratives, Part 3', 'United States. Work Projects Administration', '2011-02-23', 99, 'https://www.gutenberg.org/ebooks/35380', 'en', 13139), +(34380, 'The Mabinogion Vol. 3', NULL, '2006-11-30', 64, 'https://www.gutenberg.org/ebooks/19976', 'en', 1948), +(34381, 'Chronicles of England, Scotland and Ireland (3 of 6): England (3 of 9)\r\nHenrie the Sixt, Sonne and Heire to Henrie the Fift', 'Holinshed, Raphael', '2014-08-24', 25, 'https://www.gutenberg.org/ebooks/46672', 'en', 4746), +(34382, 'The Beginning', 'Hasse, Henry', '2008-12-28', 34, 'https://www.gutenberg.org/ebooks/27645', 'en', 5072), +(34383, 'Bertha, Our Little German Cousin', 'Wade, Mary Hazelton Blanchard', '2004-09-15', 17, 'https://www.gutenberg.org/ebooks/13470', 'en', 13140), +(34384, 'Schetsen uit de Indische Vorstenlanden\nDe Aarde en haar volken, 1873', 'Rousselet, Louis', '2006-04-01', 7, 'https://www.gutenberg.org/ebooks/18098', 'nl', 1975), +(34385, 'Medieval Medicine', 'Walsh, James J. (James Joseph)', '2013-07-25', 30, 'https://www.gutenberg.org/ebooks/43300', 'en', 10997), +(34386, 'Tartuffe; Or, The Hypocrite', 'Molière', '2000-01-01', 315, 'https://www.gutenberg.org/ebooks/2027', 'en', 901), +(34387, 'Histoire littéraire d\'Italie (3/9)', 'Ginguené, Pierre Louis', '2010-03-21', 10, 'https://www.gutenberg.org/ebooks/31720', 'fr', 7200), +(34388, 'Chronique du crime et de l\'innocence, tome 7/8\r\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2017-08-04', 22, 'https://www.gutenberg.org/ebooks/55265', 'fr', 2054), +(34389, 'Something Else Again', 'Adams, Franklin P. (Franklin Pierce)', '2008-10-07', 17, 'https://www.gutenberg.org/ebooks/26797', 'en', 2529), +(34390, 'The Life of King Edward VII\nwith a sketch of the career of King George V', 'Hopkins, J. Castell (John Castell)', '2008-04-20', 22, 'https://www.gutenberg.org/ebooks/25112', 'en', 11539), +(34391, 'English Literature: Modern', 'Mair, G. H. (George Herbert)', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11327', 'en', 1694), +(34392, 'The German Spy System from Within', 'Anonymous', '2012-11-23', 13, 'https://www.gutenberg.org/ebooks/41457', 'en', 13141), +(34393, 'The Treaty With China, its Provisions Explained\nNew York Tribune, Tuesday, August 28, 1868', 'Twain, Mark', '2010-07-04', 54, 'https://www.gutenberg.org/ebooks/33077', 'en', 8448), +(34394, 'Comrades on River and Lake', 'Victor, Ralph', '2012-08-26', 170, 'https://www.gutenberg.org/ebooks/40585', 'en', 13142), +(34395, 'Passages from the Life of a Philosopher', 'Babbage, Charles', '2018-07-18', 47, 'https://www.gutenberg.org/ebooks/57532', 'en', 13143), +(34396, 'Discourses in America', 'Arnold, Matthew', '2014-02-15', 34, 'https://www.gutenberg.org/ebooks/44919', 'en', 1720), +(34397, 'Travels in the Steppes of the Caspian Sea, the Crimea, the Caucasus, &c.', 'Hommaire de Hell, Adèle', '2011-06-24', 19, 'https://www.gutenberg.org/ebooks/36505', 'en', 13144), +(34398, 'Clerical Subscription and the Act of Uniformity', 'Hoare, Edward', '2016-05-10', 8, 'https://www.gutenberg.org/ebooks/52040', 'en', 13145), +(34399, 'Sieben Jahre in Süd-Afrika. Erster Band.\r\nErlebnisse, Forschungen und Jagden auf meinen Reisen von den Diamantenfeldern zum Zambesi (1872-1879).', 'Holub, Emil', '2005-05-07', 33, 'https://www.gutenberg.org/ebooks/15787', 'de', 12515), +(34400, 'Harper\'s Round Table, June 4, 1895', 'Various', '2010-06-27', 8, 'https://www.gutenberg.org/ebooks/32999', 'en', 668), +(34401, 'Big People and Little People of Other Lands', 'Shaw, Edward R. (Edward Richard)', '2005-01-10', 19, 'https://www.gutenberg.org/ebooks/14655', 'en', 1063), +(34402, 'A Texas Blue Bonnet', 'Jacobs, Caroline Emilia', '2016-10-02', 13, 'https://www.gutenberg.org/ebooks/53192', 'en', 1080), +(34403, 'The Citizen-Soldier\nor, Memoirs of a Volunteer', 'Beatty, John', '2007-01-27', 36, 'https://www.gutenberg.org/ebooks/20460', 'en', 444), +(34404, 'The Golden Lion of Granpere', 'Trollope, Anthony', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/5202', 'en', 13146), +(34405, 'The Histories of Polybius, Vol. 1 (of 2)', 'Polybius', '2013-11-08', 130, 'https://www.gutenberg.org/ebooks/44125', 'en', 1368), +(34406, 'The Winning Touchdown: A Story of College Football', 'Chadwick, Lester', '2012-12-19', 15, 'https://www.gutenberg.org/ebooks/41665', 'en', 5031), +(34407, 'Visits to Monasteries in the Levant', 'Curzon, Robert', '2010-05-16', 20, 'https://www.gutenberg.org/ebooks/32397', 'en', 13147), +(34408, 'Paternidad', 'Theuriet, André', '2008-05-03', 23, 'https://www.gutenberg.org/ebooks/25320', 'es', 61), +(34409, 'Frank Merriwell at Yale; Or, Freshman Against Freshman', 'Standish, Burt L.', '2004-02-01', 35, 'https://www.gutenberg.org/ebooks/11115', 'en', 3529), +(34410, 'Toronto by Gaslight: The Night Hawks of a Great City\r\nAs Seen by the Reporters of \"The Toronto News\"', 'Toronto News', '2018-08-15', 12, 'https://www.gutenberg.org/ebooks/57700', 'en', 13148), +(34411, 'Sermão contra o Filosofismo do Seculo XIX', 'Macedo, José Agostinho de', '2010-07-24', 11, 'https://www.gutenberg.org/ebooks/33245', 'pt', 13149), +(34412, 'The New McGuffey Fourth Reader', NULL, '1998-10-01', 36, 'https://www.gutenberg.org/ebooks/1490', 'en', 1019), +(34413, 'Galatéa\r\nEgloga\r\nPrimeira e Segunda Parte', 'Carvalho, António Joaquim de', '2007-06-08', 54, 'https://www.gutenberg.org/ebooks/21780', 'pt', 8), +(34414, 'Two Sermons Preached in the Parish Church of Nonington, Kent, January 17, 1864\nbeing the Sunday following the Funeral of John Pemberton Plumptre, Esq.', 'James, Herbert', '2016-06-08', 13, 'https://www.gutenberg.org/ebooks/52272', 'en', 2386), +(34415, 'Notes and Queries, Number 15, February 9, 1850', 'Various', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/11929', 'en', 105), +(34416, 'The Book of the Duke of True Lovers', 'Christine, de Pisan', '2011-07-14', 31, 'https://www.gutenberg.org/ebooks/36737', 'en', 13150), +(34417, 'State of the Union Addresses', 'Harrison, Benjamin', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/5030', 'en', 1276), +(34418, 'The Bungalow Boys North of Fifty-Three', 'Goldfrap, John Henry', '2013-11-30', 15, 'https://www.gutenberg.org/ebooks/44317', 'en', 1586), +(34419, 'The Fine Lady\'s Airs (1709)', 'Baker, Thomas, active 1700-1709', '2004-12-25', 20, 'https://www.gutenberg.org/ebooks/14467', 'en', 1088), +(34420, 'Escape Velocity', 'Fontenay, Charles L.', '2019-01-21', 36, 'https://www.gutenberg.org/ebooks/58748', 'en', 26), +(34421, 'Ring O\' Roses: A Nursery Rhyme Picture Book', NULL, '2007-02-24', 68, 'https://www.gutenberg.org/ebooks/20652', 'en', 859), +(34422, 'Friedrich Nietzsche in seinen Werken', 'Andreas-Salomé, Lou', '2015-11-22', 65, 'https://www.gutenberg.org/ebooks/50525', 'de', 5723), +(34423, 'The Ladies Lindores, Vol. 2 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-08', 35, 'https://www.gutenberg.org/ebooks/47592', 'en', 376), +(34424, 'Prisoners of Poverty: Women Wage-Workers, Their Trades and Their Lives', 'Campbell, Helen', '2010-10-12', 24, 'https://www.gutenberg.org/ebooks/34060', 'en', 5586), +(34425, 'The Graymouse Family', 'Leonard, Nellie M. (Nellie Mabel)', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7767', 'en', 1132), +(34426, 'A Journal of the First Voyage of Vasco da Gama 1497-1499', NULL, '2014-07-29', 155, 'https://www.gutenberg.org/ebooks/46440', 'en', 1975), +(34427, 'The Young Priest\'s Keepsake', 'Phelan, Michael J.', '2005-07-19', 14, 'https://www.gutenberg.org/ebooks/16330', 'en', 13151), +(34428, 'Christianity and Ethics: A Handbook of Christian Ethics', 'Alexander, Archibald B. D. (Archibald Browning Drysdale)', '2007-07-19', 35, 'https://www.gutenberg.org/ebooks/22105', 'en', 10425), +(34429, 'The Little Old Portrait', 'Molesworth, Mrs.', '2013-07-08', 5, 'https://www.gutenberg.org/ebooks/43132', 'en', 4758), +(34430, 'Human Genome Project, rough draft, Chromosome Number 15', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2215', 'en', 2318), +(34431, 'Astronomical Instruments and Accessories', 'William Gaertner and Company', '2008-12-10', 44, 'https://www.gutenberg.org/ebooks/27477', 'en', 13152), +(34432, 'Varjenka', 'Gorky, Maksim', '2017-02-17', 9, 'https://www.gutenberg.org/ebooks/54185', 'fi', 147), +(34433, 'The Journal of Negro History, Volume 1, January 1916', 'Various', '2004-10-05', 203, 'https://www.gutenberg.org/ebooks/13642', 'en', 7352), +(34434, 'The True Woman\r\nA Series of Discourses, to Which Is Added Woman vs. Ballot', 'Fulton, Justin D. (Justin Dewey)', '2004-06-30', 16, 'https://www.gutenberg.org/ebooks/12790', 'en', 11603), +(34435, 'Daily Lesson Plans in English', 'Griffin, Caroline Stearns', '2017-07-06', 21, 'https://www.gutenberg.org/ebooks/55057', 'en', 10276), +(34436, 'Oriental Encounters: Palestine and Syria, 1894-6', 'Pickthall, Marmaduke William', '2006-09-25', 33, 'https://www.gutenberg.org/ebooks/19378', 'en', 7022), +(34437, 'The Coming of the Law', 'Seltzer, Charles Alden', '2010-03-05', 33, 'https://www.gutenberg.org/ebooks/31512', 'en', 315), +(34438, 'Cours familier de Littérature - Volume 26', 'Lamartine, Alphonse de', '2015-07-10', 9, 'https://www.gutenberg.org/ebooks/49408', 'fr', 2156), +(34439, 'The Gypsies', 'Leland, Charles Godfrey', '2007-10-10', 56, 'https://www.gutenberg.org/ebooks/22939', 'en', 5145), +(34440, 'Blesky nad Beskydami', 'Omelka, František', '2014-12-23', 33, 'https://www.gutenberg.org/ebooks/47754', 'cs', 12896), +(34441, 'Riders to the Sea', 'Synge, J. M. (John Millington)', '1997-07-01', 204, 'https://www.gutenberg.org/ebooks/994', 'en', 13153), +(34442, 'Erasmus\r\nOnze Groote Mannen', 'Leeuwen, J. A. C. van (Jacobus Adrien Cornelius)', '2006-07-17', 6, 'https://www.gutenberg.org/ebooks/18850', 'nl', 5267), +(34443, 'Practical Argumentation', 'Pattee, George K. (George Kynett)', '2004-09-01', 11, 'https://www.gutenberg.org/ebooks/6473', 'en', 30), +(34444, 'Curiosités judiciaires et historiques du moyen âge. Procès contre les animaux', 'Agnel, Émile', '2007-10-27', 54, 'https://www.gutenberg.org/ebooks/23211', 'fr', 13154), +(34445, 'The Last Journals of David Livingstone, in Central Africa, from 1865 to His Death, Volume II (of 2), 1869-1873\r\nContinued By A Narrative Of His Last Moments And Sufferings, Obtained From His Faithful Servants Chuma And Susi', 'Livingstone, David', '2005-11-08', 48, 'https://www.gutenberg.org/ebooks/17024', 'en', 484), +(34446, 'Dictionnaire étymologique, historique et anecdotique des proverbes et des locutions proverbiales de la Langue Française en rapport avec de proverbes et des locutions proverbiales des autres langues', 'Quitard, P.-M. (Pierre-Marie)', '2016-04-02', 27, 'https://www.gutenberg.org/ebooks/51631', 'fr', 3358), +(34447, 'Projet pour la compagnie des transports, postes et messageries', 'Anonymous', '2006-11-30', 14, 'https://www.gutenberg.org/ebooks/19982', 'fr', 12172), +(34448, 'The Dreamers: A Club', 'Bangs, John Kendrick', '2011-02-23', 176, 'https://www.gutenberg.org/ebooks/35374', 'en', 13155), +(34449, 'A Ride on Horseback to Florence Through France and Switzerland. Vol. 2 of 2\nDescribed in a Series of Letters by a Lady', 'Holmes, Augusta Macgregor', '2014-08-25', 4, 'https://www.gutenberg.org/ebooks/46686', 'en', 1408), +(34450, 'Essay upon Wit', 'Blackmore, Richard, Sir', '2004-09-17', 28, 'https://www.gutenberg.org/ebooks/13484', 'en', 1697), +(34451, 'Väärällä uralla', 'Kianto, Ilmari', '2017-03-11', 12, 'https://www.gutenberg.org/ebooks/54343', 'fi', 41), +(34452, 'Aili\nNäytelmä viidessä näytöksessä, kuudessa kuvaelmassa', 'Kurikka, Matti', '2006-02-22', 35, 'https://www.gutenberg.org/ebooks/17818', 'fi', 402), +(34453, 'The Landleaguers', 'Trollope, Anthony', '2009-12-04', 23, 'https://www.gutenberg.org/ebooks/30606', 'en', 669), +(34454, 'Washington Irving', 'Warner, Charles Dudley', '2004-10-10', 10, 'https://www.gutenberg.org/ebooks/3101', 'en', 10144), +(34455, 'Mooswa & Others of the Boundaries', 'Fraser, William Alexander', '2013-02-27', 90, 'https://www.gutenberg.org/ebooks/42226', 'en', 65), +(34456, 'Graft: A Comedy in Four Acts', 'Brighouse, Harold', '2017-08-07', 4, 'https://www.gutenberg.org/ebooks/55291', 'en', 317), +(34457, 'A Master of Fortune: Being Further Adventures of Captain Kettle', 'Hyne, Charles John Cutcliffe Wright', '2004-06-01', 42, 'https://www.gutenberg.org/ebooks/12556', 'en', 1391), +(34458, 'Henri VI (1/3)', 'Shakespeare, William', '2008-10-03', 20, 'https://www.gutenberg.org/ebooks/26763', 'fr', 7878), +(34459, 'A Candid History of the Jesuits', 'McCabe, Joseph', '2018-01-22', 10, 'https://www.gutenberg.org/ebooks/56414', 'en', 11517), +(34460, 'What Every Girl Should Know', 'Sanger, Margaret', '2016-08-24', 40, 'https://www.gutenberg.org/ebooks/52888', 'en', 2378), +(34461, 'The Intellectual Life', 'Hamerton, Philip Gilbert', '2010-04-27', 51, 'https://www.gutenberg.org/ebooks/32151', 'en', 12189), +(34462, 'Apology', 'Plato', '1999-02-01', 952, 'https://www.gutenberg.org/ebooks/1656', 'en', 4235), +(34463, 'Étude sur le Mouvement Permanent des Fluides\r\nThèses Présentées à la Faculté des Sciences de Paris pour Obtenir le Grade de Docteur ès Sciences Mathématiques', 'Salvert, François de', '2010-07-05', 10, 'https://www.gutenberg.org/ebooks/33083', 'fr', 13156), +(34464, 'The Angel', 'Thorne, Guy', '2012-08-24', 27, 'https://www.gutenberg.org/ebooks/40571', 'en', 942), +(34465, 'The Desert of Wheat', 'Grey, Zane', '2003-11-01', 70, 'https://www.gutenberg.org/ebooks/10201', 'en', 2564), +(34466, 'The King\'s Mirror', 'Hope, Anthony', '2007-12-26', 24, 'https://www.gutenberg.org/ebooks/24034', 'en', 313), +(34467, 'Mr. Punch\'s History of Modern England, Vol. 2 (of 4).—1857-1874', 'Graves, Charles L. (Charles Larcom)', '2014-02-24', 19, 'https://www.gutenberg.org/ebooks/45003', 'en', 5499), +(34468, 'Fifty Famous Fables', 'McMurry, Lida B. (Lida Brown)', '2003-08-01', 25, 'https://www.gutenberg.org/ebooks/4324', 'en', 1141), +(34469, 'Nero, the Circus Lion: His Many Adventures', 'Barnum, Richard', '2007-05-21', 7, 'https://www.gutenberg.org/ebooks/21546', 'en', 625), +(34470, 'Round the World in Seven Days', 'Strang, Herbert', '2005-05-06', 25, 'https://www.gutenberg.org/ebooks/15773', 'en', 6791), +(34471, 'Dick and Dolly', 'Wells, Carolyn', '2016-09-29', 13, 'https://www.gutenberg.org/ebooks/53166', 'en', 31), +(34472, 'The Shrieking Pit', 'Rees, Arthur J. (Arthur John)', '2007-02-02', 65, 'https://www.gutenberg.org/ebooks/20494', 'en', 128), +(34473, 'How We Think', 'Dewey, John', '2011-09-14', 566, 'https://www.gutenberg.org/ebooks/37423', 'en', 1947), +(34474, 'All Afloat: A Chronicle of Craft and Waterways', 'Wood, William', '2008-03-11', 26, 'https://www.gutenberg.org/ebooks/24808', 'en', 5181), +(34475, 'Darkey Ways in Dixie', 'Richard, Margaret A. (Margaret Alice)', '2012-12-23', 6, 'https://www.gutenberg.org/ebooks/41691', 'en', 3135), +(34476, 'Ten Girls from History', 'Sweetser, Kate Dickinson', '2010-05-13', 79, 'https://www.gutenberg.org/ebooks/32363', 'en', 13157), +(34477, 'Johnny Nelson\r\nHow a one-time pupil of Hopalong Cassidy of the famous Bar-20 ranch in the Pecos Valley performed an act of knight-errantry and what came of it', 'Mulford, Clarence Edward', '2018-02-22', 32, 'https://www.gutenberg.org/ebooks/56626', 'en', 2418), +(34478, 'Punchinello, Volume 1, No. 25, September 17, 1870', 'Various', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10033', 'en', 372), +(34479, 'Sturmzeichen', 'Skowronnek, Richard', '2008-01-07', 12, 'https://www.gutenberg.org/ebooks/24206', 'de', 11284), +(34480, 'Contributions to All The Year Round', NULL, '1998-09-01', 40, 'https://www.gutenberg.org/ebooks/1464', 'en', 20), +(34481, 'The Harlot\'s Progress (1733), The Rake\'s Progress (Ms., ca. 1778-1780)', 'Cibber, Theophilus', '2012-01-24', 30, 'https://www.gutenberg.org/ebooks/38659', 'en', 3619), +(34482, 'Notes and Queries, Vol. V, Number 120, February 14, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-13', 19, 'https://www.gutenberg.org/ebooks/40743', 'en', 105), +(34483, 'Practical Mysticism: A Little Book for Normal People', 'Underhill, Evelyn', '2007-06-08', 77, 'https://www.gutenberg.org/ebooks/21774', 'en', 4632), +(34484, 'What Two Children Did', 'Chittenden, Charlotte E. (Charlotte Elizabeth)', '2005-04-04', 10, 'https://www.gutenberg.org/ebooks/15541', 'en', 5260), +(34485, 'The Colleges of Oxford: Their History and Traditions\nXXI Chapters Contributed by Members of the Colleges', NULL, '2016-06-09', 15, 'https://www.gutenberg.org/ebooks/52286', 'en', 13026), +(34486, 'Motion Picture Operation, Stage Electrics and Illusions\r\nA Practical Hand-book and Guide for Theater Electricians, Motion Picture Operators and Managers of Theaters and Productions', 'Tousley, Victor H. (Victor Hugo)', '2014-03-27', 21, 'https://www.gutenberg.org/ebooks/45231', 'en', 13158), +(34487, 'Christopher Columbus and the New World of His Discovery — Complete', 'Young, Filson', '2003-06-01', 55, 'https://www.gutenberg.org/ebooks/4116', 'en', 2036), +(34488, 'Christ in the Storm\nNo. 26', 'Mortimer, Favell Lee', '2011-10-03', 15, 'https://www.gutenberg.org/ebooks/37611', 'en', 13159), +(34489, 'Imperialism and Mr. Gladstone (1876-1887)', NULL, '2016-10-23', 7, 'https://www.gutenberg.org/ebooks/53354', 'en', 13160), +(34490, 'The Nursery, No. 165. September, 1880, Vol. 28\nA Monthly Magazine For Youngest Readers', 'Various', '2004-12-28', 18, 'https://www.gutenberg.org/ebooks/14493', 'en', 4641), +(34491, 'Notes and Queries, Number 201, September 3, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-13', 11, 'https://www.gutenberg.org/ebooks/23023', 'en', 105), +(34492, 'Punch, or the London Charivari, Volume 1, Complete', 'Various', '2005-12-04', 113, 'https://www.gutenberg.org/ebooks/17216', 'en', 134), +(34493, 'Il Comento alla Divina Commedia, e gli altri scritti intorno a Dante, vol. 3', 'Boccaccio, Giovanni', '2014-12-07', 16, 'https://www.gutenberg.org/ebooks/47566', 'it', 3406), +(34494, 'Journal of Entomology and Zoology, Vol. 11, No. 2, June 1919', 'Various', '2010-10-18', 20, 'https://www.gutenberg.org/ebooks/34094', 'en', 13161), +(34495, 'Märchen und Sagen', 'Arndt, Ernst Moritz', '2004-10-01', 62, 'https://www.gutenberg.org/ebooks/6641', 'de', 900), +(34496, 'The Solitary Farm', 'Hume, Fergus', '2011-02-02', 8, 'https://www.gutenberg.org/ebooks/35146', 'en', 61), +(34497, 'Pelle the Conqueror — Volume 03', 'Andersen Nexø, Martin', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7793', 'en', 2079), +(34498, 'Cicero: Letters to Atticus, Vol. 3 of 3', 'Cicero, Marcus Tullius', '2016-03-08', 26, 'https://www.gutenberg.org/ebooks/51403', 'en', 9415), +(34499, 'Nelson\'s Home Comforts\nThirteenth Edition', 'Hooper, Mary', '2009-07-27', 34, 'https://www.gutenberg.org/ebooks/29519', 'en', 4911), +(34500, 'Sargent', 'Wood, T. Martin', '2013-05-28', 22, 'https://www.gutenberg.org/ebooks/42828', 'en', 13162), +(34501, 'Joseph Andrews, Vol. 2', 'Fielding, Henry', '2006-01-01', 95, 'https://www.gutenberg.org/ebooks/9609', 'en', 95), +(34502, 'Occasion for Disaster', 'Janifer, Laurence M.', '2009-11-09', 36, 'https://www.gutenberg.org/ebooks/30434', 'en', 12098), +(34503, 'Die Abenteuer Gawains Ywains und Le Morholts mit den drei Jungfrauen\naus der Trilogie (Demanda) des pseudo-Robert de Borron', NULL, '2008-12-10', 42, 'https://www.gutenberg.org/ebooks/27483', 'de', 5637), +(34504, 'Notes of hospital life from November, 1861, to August, 1863', 'Anonymous', '2017-02-15', 13, 'https://www.gutenberg.org/ebooks/54171', 'en', 13163), +(34505, 'The Forty-Niners: A Chronicle of the California Trail and El Dorado', 'White, Stewart Edward', '2004-06-28', 28, 'https://www.gutenberg.org/ebooks/12764', 'en', 12673), +(34506, 'Government Documents in Small Libraries\r\nReprinted from Report of Board of Library Commissioners of Ohio for the Year ending November 15, 1909.', 'Reeder, Charles Wells', '2008-09-07', 6, 'https://www.gutenberg.org/ebooks/26551', 'en', 13164), +(34507, 'Os Lusíadas', 'Camões, Luís de', '2002-07-01', 243, 'https://www.gutenberg.org/ebooks/3333', 'pt', 13165), +(34508, 'Meg of Mystery Mountain', 'North, Grace May', '2013-02-04', 13, 'https://www.gutenberg.org/ebooks/42014', 'en', 128), +(34509, 'The Lonely Dancer and Other Poems', 'Le Gallienne, Richard', '2003-12-01', 8, 'https://www.gutenberg.org/ebooks/10457', 'en', 8), +(34510, 'Sappho: Memoir, text, selected renderings, and a literal translation', 'Wharton, Henry Thornton', '2018-06-25', 43, 'https://www.gutenberg.org/ebooks/57390', 'en', 13166), +(34511, 'The Grateful Indian, and Other Stories', 'Kingston, William Henry Giles', '2008-02-20', 15, 'https://www.gutenberg.org/ebooks/24662', 'en', 388), +(34512, 'La Divina Commedia di Dante: Complete', 'Dante Alighieri', '1997-08-01', 164, 'https://www.gutenberg.org/ebooks/1000', 'it', 3887), +(34513, 'Rübezahl\nDeutsche Volksmärchen vom Berggeist und Herrn des Riesengebirges', 'Reichhardt, Rudolf', '2012-07-25', 40, 'https://www.gutenberg.org/ebooks/40327', 'de', 13167), +(34514, 'The Great Round World and What Is Going On In It, Vol. 1, No. 42, August 26, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-27', 27, 'https://www.gutenberg.org/ebooks/15919', 'en', 1), +(34515, 'Anne: A Novel', 'Woolson, Constance Fenimore', '2010-06-06', 32, 'https://www.gutenberg.org/ebooks/32707', 'en', 13168), +(34516, 'The Gates of Dawn', 'Hume, Fergus', '2017-12-23', 10, 'https://www.gutenberg.org/ebooks/56242', 'en', 95), +(34517, 'The Young Emigrants; Madelaine Tube; the Boy and the Book; and Crystal Palace', 'Sedgwick, Susan Anne Livingston Ridley', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/11585', 'en', 388), +(34518, 'A Textbook of General Astronomy for Colleges and Scientific Schools', 'Young, Charles A. (Charles Augustus)', '2011-08-30', 92, 'https://www.gutenberg.org/ebooks/37275', 'en', 1683), +(34519, 'A Vindication of the Presbyteriall-Government and Ministry', 'Ministers and Elders of the London Provinciall Assembly', '2014-01-29', 21, 'https://www.gutenberg.org/ebooks/44787', 'en', 13169), +(34520, 'The Red Cross Girls in Belgium', 'Vandercook, Margaret', '2016-12-14', 8, 'https://www.gutenberg.org/ebooks/53730', 'en', 51), +(34521, 'Featherland: How the Birds lived at Greenlawn', 'Fenn, George Manville', '2007-05-04', 18, 'https://www.gutenberg.org/ebooks/21310', 'en', 195), +(34522, 'The Awakening of China', 'Martin, W. A. P. (William Alexander Parsons)', '2005-02-21', 40, 'https://www.gutenberg.org/ebooks/15125', 'en', 4635), +(34523, 'Journal de Jean Héroard - Tome 2\r\nSur l\'enfance et la jeunesse de Louis XIII (1610-1628)', 'Héroard, Jean', '2014-05-15', 8, 'https://www.gutenberg.org/ebooks/45655', 'fr', 624), +(34524, '粉妝樓1-10回', 'Luo, Guanzhong', '2003-10-01', 10, 'https://www.gutenberg.org/ebooks/4572', 'zh', 1574), +(34525, 'Perhe Giljellä: Kuvaus neljänneltä vuosikymmeneltä', 'Lie, Jonas', '2011-03-08', 11, 'https://www.gutenberg.org/ebooks/35522', 'fi', 286), +(34526, 'Historical Introductions to the Symbolical Books of the Evangelical Lutheran Church', 'Bente, F. (Friedrich)', '2008-10-13', 108, 'https://www.gutenberg.org/ebooks/26909', 'en', 13170), +(34527, 'Living Too Fast; Or, The Confessions of a Bank Officer', 'Optic, Oliver', '2016-01-28', 19, 'https://www.gutenberg.org/ebooks/51067', 'en', 8201), +(34528, 'At the Point of the Sword', 'Hayens, Herbert', '2007-09-14', 16, 'https://www.gutenberg.org/ebooks/22595', 'en', 13171), +(34529, 'Uncle Sam\'s Boys in the Philippines; or, Following the Flag against the Moros', 'Hancock, H. Irving (Harrie Irving)', '2007-11-11', 42, 'https://www.gutenberg.org/ebooks/23447', 'en', 12322), +(34530, 'Once Upon a Time in Delaware', 'Pyle, Katharine', '2015-05-16', 9, 'https://www.gutenberg.org/ebooks/48976', 'en', 13172), +(34531, 'The Botanical Magazine, Vol. 03\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2006-02-03', 61, 'https://www.gutenberg.org/ebooks/17672', 'en', 13173), +(34532, 'L\'arte di far debiti', 'Ghislanzoni, Antonio', '2014-10-13', 23, 'https://www.gutenberg.org/ebooks/47102', 'it', 3942), +(34533, 'The Seats of the Mighty, Volume 2', 'Parker, Gilbert', '2004-08-01', 5, 'https://www.gutenberg.org/ebooks/6225', 'en', 893), +(34534, 'The True George Washington [10th Ed.]', 'Ford, Paul Leicester', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12300', 'en', 1433), +(34535, 'Love at Paddington', 'Ridge, W. Pett (William Pett)', '2008-07-27', 19, 'https://www.gutenberg.org/ebooks/26135', 'en', 48), +(34536, 'The White Bees', 'Van Dyke, Henry', '2003-02-01', 10, 'https://www.gutenberg.org/ebooks/3757', 'en', 178), +(34537, 'De bruidstijd van Annie de Boogh', 'Robbers, Herman Johan', '2010-02-04', 17, 'https://www.gutenberg.org/ebooks/31182', 'nl', 319), +(34538, 'Kuun tarinoita', 'Krohn, Julius', '2013-04-06', 5, 'https://www.gutenberg.org/ebooks/42470', 'fi', 41), +(34539, 'Zeitgemäßes über Krieg und Tod', 'Freud, Sigmund', '2009-09-08', 35, 'https://www.gutenberg.org/ebooks/29941', 'de', 9971), +(34540, 'Larkspur', 'Abbott, Jane', '2015-05-31', 15, 'https://www.gutenberg.org/ebooks/49098', 'en', 1655), +(34541, 'Of Time and Texas', 'Nolan, William F.', '2009-05-20', 26, 'https://www.gutenberg.org/ebooks/28893', 'en', 179), +(34542, 'The Way to Peace', 'Deland, Margaret Wade Campbell', '2001-06-01', 36, 'https://www.gutenberg.org/ebooks/2685', 'en', 13174), +(34543, 'Tales From Catland, for Little Kittens', 'Grimalkin, Tabitha', '2009-09-21', 20, 'https://www.gutenberg.org/ebooks/30050', 'en', 1430), +(34544, 'The Nostalgia Gene', 'Hutchins, Roy', '2016-01-21', 18, 'https://www.gutenberg.org/ebooks/50989', 'en', 26), +(34545, 'Instructions for Officers and Non-Commissioned Officers of Cavalry, on Outpost Duty', 'Arentschildt, Alexander Carl Friedrich von', '2017-04-09', 13, 'https://www.gutenberg.org/ebooks/54515', 'en', 13175), +(34546, 'Punch, or the London Charivari, Volume 159, July 14th, 1920', 'Various', '2005-08-25', 15, 'https://www.gutenberg.org/ebooks/16592', 'en', 134), +(34547, 'Chain Reaction', 'Ellanby, Boyd', '2016-02-20', 35, 'https://www.gutenberg.org/ebooks/51255', 'en', 26), +(34548, 'Claimants to Royalty', 'Ingram, John Henry', '2011-03-30', 13, 'https://www.gutenberg.org/ebooks/35710', 'en', 6760), +(34549, 'Weather Warnings for Watchers', 'Anonymous', '2014-11-11', 12, 'https://www.gutenberg.org/ebooks/47330', 'en', 5467), +(34550, 'The Silver Horde', 'Beach, Rex', '2004-07-01', 28, 'https://www.gutenberg.org/ebooks/6017', 'en', 535), +(34551, 'Under the Rose', 'Isham, Frederic Stewart', '2007-12-02', 19, 'https://www.gutenberg.org/ebooks/23675', 'en', 323), +(34552, 'The Letters of Robert Burns', 'Burns, Robert', '2006-02-01', 41, 'https://www.gutenberg.org/ebooks/9863', 'en', 13176), +(34553, 'The Texican', 'Coolidge, Dane', '2015-11-05', 24, 'https://www.gutenberg.org/ebooks/50387', 'en', 2418), +(34554, 'Amadis of Gaul, an opera\r\nAs it is perform\'d at the King’s Theatre in the Hay-market', 'Haym, Nicola Francesco', '2006-01-01', 49, 'https://www.gutenberg.org/ebooks/17440', 'it', 1966), +(34555, 'Memoirs of Napoleon Bonaparte — Volume 15', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 30, 'https://www.gutenberg.org/ebooks/3565', 'en', 1770), +(34556, 'Cocina del tiempo, ó arte de preparar sabrosos y exquisitos platos propios de cada estación', 'Ruiz Contreras, Luis', '2013-05-04', 72, 'https://www.gutenberg.org/ebooks/42642', 'es', 13177), +(34557, 'Three at Table\nThe Lady of the Barge and Others, Part 12.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12132', 'en', 1224), +(34558, 'The Wizard\'s Daughter, and Other Stories', 'Graham, Margaret Collier', '2008-08-14', 17, 'https://www.gutenberg.org/ebooks/26307', 'en', 1426), +(34559, 'The 1990 United States Census [2nd]', 'United States. Bureau of the Census', '1992-08-01', 25, 'https://www.gutenberg.org/ebooks/37', 'en', 13178), +(34560, 'Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910\nThe Site of the Terminal Station. Paper No. 1157', 'Clarke, George C.', '2006-05-17', 18, 'https://www.gutenberg.org/ebooks/18408', 'en', 5424), +(34561, 'Pfaffernüsseln: Allerlei Erzgebirgisches', 'Wenzel, Max', '2017-05-15', 5, 'https://www.gutenberg.org/ebooks/54727', 'de', 13179), +(34562, 'The Book of Cats\r\nA Chit-chat Chronicle of Feline Facts and Fancies, Legendary, Lyrical, Medical, Mirthful and Miscellaneous', 'Ross, Charles H. (Charles Henry)', '2013-09-21', 49, 'https://www.gutenberg.org/ebooks/43790', 'en', 13180), +(34563, 'Fireplaces and Chimneys - Farmers\' Bulletin 1889', 'Miller, T. A. H. (Thomas Arrington Huntington)', '2015-02-28', 14, 'https://www.gutenberg.org/ebooks/48378', 'en', 5534), +(34564, 'Frederic Lord Leighton: An Illustrated Record of His Life and Work', 'Rhys, Ernest', '2009-10-15', 32, 'https://www.gutenberg.org/ebooks/30262', 'en', 11888), +(34565, 'The Prince', 'Machiavelli, Niccolò', '2006-02-11', 4870, 'https://www.gutenberg.org/ebooks/1232', 'en', 9260), +(34566, 'Kuningas Henrik Kuudes II', 'Shakespeare, William', '2012-07-01', 15, 'https://www.gutenberg.org/ebooks/40115', 'fi', 2048), +(34567, 'Life, Letters, and Epicurean Philosophy of Ninon de L\'Enclos\r\nThe Celebrated Beauty of the Seventeenth Century', 'Lenclos, Ninon de', '2004-01-01', 70, 'https://www.gutenberg.org/ebooks/10665', 'en', 13181), +(34568, '\"Bones\": Being Further Adventures in Mr. Commissioner Sanders\' Country', 'Wallace, Edgar', '2008-01-29', 76, 'https://www.gutenberg.org/ebooks/24450', 'en', 13182), +(34569, 'Daughters of the Puritans: A Group of Brief Biographies', 'Beach, Seth Curtis', '2008-05-24', 17, 'https://www.gutenberg.org/ebooks/25582', 'en', 13183), +(34570, 'List of Post Offices in Canada, with the Names of the Postmasters ... 1873', 'Canada. Post Office Department', '2017-11-28', 8, 'https://www.gutenberg.org/ebooks/56070', 'en', 4740), +(34571, 'Puss Junior and Robinson Crusoe', 'Cory, David', '2010-05-25', 11, 'https://www.gutenberg.org/ebooks/32535', 'en', 1430), +(34572, 'The Making of a Modern Army and its Operations in the Field\r\nA study based on the experience of three years on the French front (1914-1917)', 'Radiguet, René-Louis-Jules', '2019-06-24', 64, 'https://www.gutenberg.org/ebooks/59804', 'en', 1359), +(34573, 'Histoire de Marie-Antoinette, Volume 1 (of 2)', 'La Rocheterie, Maxime de', '2016-11-12', 7, 'https://www.gutenberg.org/ebooks/53502', 'fr', 4453), +(34574, 'The Lucky Piece: A Tale of the North Woods', 'Paine, Albert Bigelow', '2012-02-11', 7, 'https://www.gutenberg.org/ebooks/38833', 'en', 48), +(34575, 'The Transformation of Early Christianity from an Eschatological to a Socialized Movement\r\nA Dissertation Submitted to the Faculty of the Graduate School of Arts and Literature in Candidacy for the Degree of Doctor of Philosophy', 'Edwards, Lyford P. (Lyford Paterson)', '2012-10-03', 25, 'https://www.gutenberg.org/ebooks/40929', 'en', 13184), +(34576, 'The History of the Life and Adventures of Mr. Duncan Campell\r\nA Gentlen, who, tho\' Deaf and Dumb, Writes down any Stranger\'s name at first Sight; with their future Contingencies of Fortune', NULL, '2011-08-12', 19, 'https://www.gutenberg.org/ebooks/37047', 'en', 13185), +(34577, 'The Innocents Abroad — Volume 05', 'Twain, Mark', '2004-06-22', 22, 'https://www.gutenberg.org/ebooks/5692', 'en', 885), +(34578, 'The Evening Hours', 'Verhaeren, Emile', '2014-04-24', 13, 'https://www.gutenberg.org/ebooks/45467', 'en', 2237), +(34579, 'Dr. Hardhack\'s Prescription: A Play for Children in Four Acts', 'Rice, K. McDowell (Katharine McDowell)', '2011-05-22', 13, 'https://www.gutenberg.org/ebooks/36195', 'en', 508), +(34580, 'Dans Le Fondu Des Mots: Poésie', 'Bertrand, Huguette', '2003-12-01', 19, 'https://www.gutenberg.org/ebooks/4740', 'fr', 8), +(34581, 'More about Pixie', 'Vaizey, George de Horne, Mrs.', '2007-04-17', 30, 'https://www.gutenberg.org/ebooks/21122', 'en', 62), +(34582, 'The Path, Vol. I.—1886-\'7.\r\nA Magazine Devoted to the Brotherhood of Humanity, Theosophy in America, and the Study of Occult Science, Philosophy, and Aryan Literature.', 'Various', '2019-03-08', 40, 'https://www.gutenberg.org/ebooks/59038', 'en', 4225), +(34583, 'The Baronet\'s Bride; Or, A Woman\'s Vengeance', 'Fleming, May Agnes', '2005-03-10', 22, 'https://www.gutenberg.org/ebooks/15317', 'en', 61), +(34584, 'An Obscure Apostle: A Dramatic Story', 'Orzeszkowa, Eliza', '2009-03-24', 8, 'https://www.gutenberg.org/ebooks/28400', 'en', 13186), +(34585, 'Wallenstein. 1 (of 2)', 'Döblin, Alfred', '2013-10-11', 42, 'https://www.gutenberg.org/ebooks/43931', 'de', 3468), +(34586, 'March Hares', 'Frederic, Harold', '2017-06-26', 8, 'https://www.gutenberg.org/ebooks/54986', 'en', 50), +(34587, 'Falkland, Book 2.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 6, 'https://www.gutenberg.org/ebooks/7758', 'en', 61), +(34588, 'Letters from the Raven: Correspondence of L. Hearn with Henry Watkin', 'Hearn, Lafcadio', '2017-10-30', 14, 'https://www.gutenberg.org/ebooks/55854', 'en', 8824), +(34589, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 7)', 'Guizot, François', '2006-05-01', 10, 'https://www.gutenberg.org/ebooks/18295', 'fr', 12305), +(34590, 'Conversation: Its Faults and Its Graces', NULL, '2011-01-06', 29, 'https://www.gutenberg.org/ebooks/34863', 'en', 11645), +(34591, 'Of Human Bondage', 'Maugham, W. Somerset (William Somerset)', '1995-10-01', 765, 'https://www.gutenberg.org/ebooks/351', 'en', 264), +(34592, 'The Indian To-day: The Past and Future of the First American', 'Eastman, Charles Alexander', '2008-12-08', 24, 'https://www.gutenberg.org/ebooks/27448', 'en', 869), +(34593, 'Notes on the Floridian Peninsula; Its Literary History, Indian Tribes and Antiquities', 'Brinton, Daniel G. (Daniel Garrison)', '2017-07-07', 15, 'https://www.gutenberg.org/ebooks/55068', 'en', 13187), +(34594, 'The Myths of the New World\nA Treatise on the Symbolism and Mythology of the Red Race of America', 'Brinton, Daniel G. (Daniel Garrison)', '2006-09-22', 70, 'https://www.gutenberg.org/ebooks/19347', 'en', 13188), +(34595, 'Páginas escogidas', 'Machado, Antonio', '2015-07-13', 56, 'https://www.gutenberg.org/ebooks/49437', 'es', 7911), +(34596, 'A War-Time Wooing: A Story', 'King, Charles', '2007-10-06', 21, 'https://www.gutenberg.org/ebooks/22906', 'en', 403), +(34597, 'The Doré Bible Gallery, Complete\r\nContaining One Hundred Superb Illustrations, and a Page of Explanatory Letter-press Facing Each', NULL, '2004-07-29', 350, 'https://www.gutenberg.org/ebooks/8710', 'en', 9674), +(34598, 'Oriental Rugs, Antique and Modern', 'Hawley, W. A. (Walter Augustus)', '2012-05-20', 32, 'https://www.gutenberg.org/ebooks/39740', 'en', 13189), +(34599, 'Helping Himself; Or, Grant Thornton\'s Ambition', 'Alger, Horatio, Jr.', '2004-06-01', 56, 'https://www.gutenberg.org/ebooks/5833', 'en', 195), +(34600, 'In Memoriam Ernst Stadler', 'Edschmid, Kasimir', '2012-09-18', 8, 'https://www.gutenberg.org/ebooks/40788', 'de', 13190), +(34601, 'Tonio Kröger\n[Erstausgabe; Illustrationen von Erich M. Simon]', 'Mann, Thomas', '2012-01-27', 70, 'https://www.gutenberg.org/ebooks/38692', 'de', 2590), +(34602, 'Rakkautta', 'Lassila, Maiju', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/11916', 'fi', 175), +(34603, 'Soeur Thérèse de l\'Enfant-Jésus et de la Sainte Face\r\nHistoire d\'une âme écrite par elle-même', 'Thérèse, de Lisieux, Saint', '2011-07-11', 43, 'https://www.gutenberg.org/ebooks/36708', 'fr', 10119), +(34604, 'Our Square and the People in It', 'Adams, Samuel Hopkins', '2013-12-01', 34, 'https://www.gutenberg.org/ebooks/44328', 'en', 179), +(34605, 'A History of Trade Unionism in the United States', 'Perlman, Selig', '2004-12-25', 32, 'https://www.gutenberg.org/ebooks/14458', 'en', 7178), +(34606, 'Index of the Project Gutenberg Works of George Eliot', 'Eliot, George', '2019-01-27', 15, 'https://www.gutenberg.org/ebooks/58777', 'en', 198), +(34607, 'De reis om de wereld in tachtig dagen', 'Verne, Jules', '2004-02-01', 47, 'https://www.gutenberg.org/ebooks/11318', 'nl', 323), +(34608, 'West Of The Sun', 'Pangborn, Edgar', '2012-04-29', 41, 'https://www.gutenberg.org/ebooks/39572', 'en', 26), +(34609, 'Les mystifications de Caillot-Duval\r\nChoix de ses lettres les plus amusantes avec les réponses de ses victimes', 'Boisgelin de Kerdu, Pierre Marie Louis de', '2016-08-18', 22, 'https://www.gutenberg.org/ebooks/52843', 'fr', 13191), +(34610, 'The Widow in the Bye Street', 'Masefield, John', '2012-11-23', 28, 'https://www.gutenberg.org/ebooks/41468', 'en', 54), +(34611, 'Jap Herron: A Novel Written from the Ouija Board', NULL, '2010-11-20', 27, 'https://www.gutenberg.org/ebooks/33048', 'en', 10981), +(34612, 'Stories from the Chap-Book\r\nBeing a Miscellany of Curious and Interesting Tales, Histories, &c; Newly Composed by Many Celebrated Writers and Very Delightful to Read.', NULL, '2017-01-18', 29, 'https://www.gutenberg.org/ebooks/53991', 'en', 112), +(34613, 'When You Don\'t Know Where to Turn\nA Self-Diagnosing Guide to Counseling and Therapy', 'Bartlett, Steven J.', '2014-02-15', 60, 'https://www.gutenberg.org/ebooks/44926', 'en', 13192), +(34614, 'Sea Power in its Relations to the War of 1812. Volume 1', 'Mahan, A. T. (Alfred Thayer)', '2008-06-30', 24, 'https://www.gutenberg.org/ebooks/25911', 'en', 7149), +(34615, 'The Blind Musician', 'Korolenko, Vladimir Galaktionovich', '2019-05-13', 34, 'https://www.gutenberg.org/ebooks/59497', 'en', 398), +(34616, 'De Sobremesa; crónicas, Quinta Parte (de 5)', 'Benavente, Jacinto', '2018-12-26', 14, 'https://www.gutenberg.org/ebooks/58545', 'es', 1384), +(34617, 'Wild Bees, Wasps and Ants and Other Stinging Insects', 'Saunders, Edward', '2010-10-18', 18, 'https://www.gutenberg.org/ebooks/33874', 'en', 4644), +(34618, 'Transhimalaja: Löytöjä ja seikkailuja Tibetissä. 1 (of 2)', 'Hedin, Sven Anders', '2015-12-20', 12, 'https://www.gutenberg.org/ebooks/50728', 'fi', 10902), +(34619, 'Sintram and His Companions', 'La Motte-Fouqué, Friedrich Heinrich Karl, Freiherr de', '2001-09-01', 32, 'https://www.gutenberg.org/ebooks/2824', 'en', 3823), +(34620, 'A Plea for the Criminal\r\nBeing a reply to Dr. Chapple\'s work: \'The Fertility of the Unfit\', and an Attempt to explain the leading principles of Criminological and Reformatory Science', 'Kayll, James Leslie Allan', '2009-04-29', 14, 'https://www.gutenberg.org/ebooks/28632', 'en', 13193), +(34621, 'Golden Moments\nBright Stories for Young Folks', 'Anonymous', '2007-08-13', 22, 'https://www.gutenberg.org/ebooks/22308', 'en', 388), +(34622, 'Autographs for Freedom, Volume 2 (of 2) (1854)', NULL, '2006-11-28', 30, 'https://www.gutenberg.org/ebooks/19949', 'en', 125), +(34623, 'The Irish Penny Journal, Vol. 1 No. 20, November 14, 1840', 'Various', '2017-03-18', 7, 'https://www.gutenberg.org/ebooks/54388', 'en', 81), +(34624, 'Flower Fables', 'Alcott, Louisa May', '1994-09-01', 214, 'https://www.gutenberg.org/ebooks/163', 'en', 5694), +(34625, 'The Library', 'Lang, Andrew', '1999-12-01', 48, 'https://www.gutenberg.org/ebooks/2018', 'en', 4118), +(34626, 'Brazilian Literature', 'Goldberg, Isaac', '2015-08-05', 8, 'https://www.gutenberg.org/ebooks/49605', 'en', 13194), +(34627, 'Madame Rose; Pierre de Villerglé', 'Achard, Amédée', '2005-10-18', 30, 'https://www.gutenberg.org/ebooks/16901', 'fr', 2118), +(34628, 'The Puritans', 'Bates, Arlo', '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/8522', 'en', 61), +(34629, 'A Little Rebel: A Novel', 'Duchess', '2006-09-04', 15, 'https://www.gutenberg.org/ebooks/19175', 'en', 451), +(34630, 'Better Dead', 'Barrie, J. M. (James Matthew)', '2007-03-13', 34, 'https://www.gutenberg.org/ebooks/20807', 'en', 4341), +(34631, 'Material Classification\nRecommended by the Railway Storekeepers\' Association', 'United States. Railroad administration. Division of finance', '2018-05-16', 10, 'https://www.gutenberg.org/ebooks/57169', 'en', 13195), +(34632, 'My Attainment of the Pole\r\nBeing the Record of the Expedition That First Reached the Boreal Center, 1907-1909. With the Final Summary of the Polar Controversy', 'Cook, Frederick Albert', '2011-08-03', 101, 'https://www.gutenberg.org/ebooks/36962', 'en', 5000), +(34633, 'A Chosen Few: Short Stories', 'Stockton, Frank Richard', '2008-05-21', 44, 'https://www.gutenberg.org/ebooks/25549', 'en', 112), +(34634, 'Unicorns', 'Huneker, James', '2012-03-12', 45, 'https://www.gutenberg.org/ebooks/39116', 'en', 787), +(34635, 'Imperialism in South Africa', 'Ritchie, J. Ewing (James Ewing)', '2018-10-17', 6, 'https://www.gutenberg.org/ebooks/58121', 'en', 13196), +(34636, 'Stories by Foreign Authors: Polish, Greek, Belgian, Hungarian', NULL, '2004-05-01', 37, 'https://www.gutenberg.org/ebooks/5659', 'en', 13197), +(34637, 'Los entremeses', 'Cervantes Saavedra, Miguel de', '2018-09-23', 53, 'https://www.gutenberg.org/ebooks/57955', 'es', 206), +(34638, 'The Junior Classics, Volume 3: Tales from Greece and Rome', NULL, '2018-04-01', 79, 'https://www.gutenberg.org/ebooks/56887', 'en', 8821), +(34639, 'The Spell of Flanders\nAn Outline of the History, Legends and Art of Belgium\'s Famous Northern Provinces', 'Vose, Edward Neville', '2013-01-12', 15, 'https://www.gutenberg.org/ebooks/41830', 'en', 9679), +(34640, 'Disowned', 'Endersby, Victor A.', '2009-07-12', 51, 'https://www.gutenberg.org/ebooks/29384', 'en', 26), +(34641, 'The Life Story of an Old Rebel', 'Denvir, John', '2005-08-20', 24, 'https://www.gutenberg.org/ebooks/16559', 'en', 3673), +(34642, 'The Life of George Stephenson and of his Son Robert Stephenson\r\nComprising Also a History of the Invention and Introduction of the Railway Locomotive', 'Smiles, Samuel', '2014-07-09', 37, 'https://www.gutenberg.org/ebooks/46229', 'en', 13198), +(34643, 'With Marlborough to Malplaquet: A Story of the Reign of Queen Anne', 'Stead, Richard', '2004-10-20', 22, 'https://www.gutenberg.org/ebooks/13817', 'en', 13199), +(34644, 'King of the Castle', 'Fenn, George Manville', '2010-12-09', 23, 'https://www.gutenberg.org/ebooks/34609', 'en', 61), +(34645, 'Thoughts on a Revelation', 'Jerram, S. J. (Samuel John)', '2009-03-05', 12, 'https://www.gutenberg.org/ebooks/28256', 'en', 13200), +(34646, 'The Young Cavalier: A Story of the Civil Wars', 'Westerman, Percy F. (Percy Francis)', '2013-05-11', 25, 'https://www.gutenberg.org/ebooks/42689', 'en', 2521), +(34647, 'Diary of a Suicide', 'Baker, Wallace E.', '2015-06-22', 34, 'https://www.gutenberg.org/ebooks/49261', 'en', 11157), +(34648, 'Victor Roy, a Masonic Poem', 'Wilkins, Harriet Annie', '2005-05-01', 5, 'https://www.gutenberg.org/ebooks/8146', 'en', 1237), +(34649, 'Brook Farm: Historic and Personal Memoirs', 'Codman, John Thomas', '2005-04-01', 49, 'https://www.gutenberg.org/ebooks/7932', 'en', 12253), +(34650, 'Bell\'s Cathedrals: Wimborne Minster and Christchurch Priory\r\nA Short History of Their Foundation and a Description of Their Buildings', 'Perkins, Thomas, Rev.', '2006-10-09', 16, 'https://www.gutenberg.org/ebooks/19511', 'en', 13201), +(34651, 'Adam Bede', 'Eliot, George', '2006-01-21', 337, 'https://www.gutenberg.org/ebooks/507', 'en', 13202), +(34652, 'Wild Flowers; or, Pastoral and Local Poetry', 'Bloomfield, Robert', '2005-10-01', 3, 'https://www.gutenberg.org/ebooks/9094', 'en', 11860), +(34653, 'What Rough Beast?', 'Highe, Jefferson', '2010-04-13', 21, 'https://www.gutenberg.org/ebooks/31975', 'en', 26), +(34654, 'The Relations of the Federal Government to Slavery\nDelivered at Fort Wayne, Ind., October 30th 1860', 'Edgerton, Joseph K. (Joseph Ketchum)', '2009-02-13', 23, 'https://www.gutenberg.org/ebooks/28064', 'en', 1795), +(34655, 'Chips from a German Workshop, Volume 5\r\nMiscellaneous Later Essays', 'Müller, F. Max (Friedrich Max)', '2009-01-14', 26, 'https://www.gutenberg.org/ebooks/27810', 'en', 8656), +(34656, 'The Book of Jade', 'Barnitz, David Park', '2014-09-10', 25, 'https://www.gutenberg.org/ebooks/46827', 'en', 178), +(34657, 'The Cliff Ruins of Canyon de Chelly, Arizona\nSixteenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1894-95, Government Printing Office, Washington, 1897, pages 73-198', 'Mindeleff, Cosmos', '2006-11-06', 27, 'https://www.gutenberg.org/ebooks/19723', 'en', 13203), +(34658, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 09, June 19, 1858', NULL, '2015-05-26', 7, 'https://www.gutenberg.org/ebooks/49053', 'en', 1741), +(34659, 'Browere\'s Life Masks of Great Americans', 'Hart, Charles Henry', '2016-04-29', 6, 'https://www.gutenberg.org/ebooks/51890', 'en', 13204), +(34660, 'A New Piñon Mouse (Peromyscus truei) from Durango, Mexico', 'Finley, Robert B.', '2010-02-01', 12, 'https://www.gutenberg.org/ebooks/31149', 'en', 1214); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(34661, 'Alton Locke, Tailor and Poet: An Autobiography', 'Kingsley, Charles', '2005-06-01', 27, 'https://www.gutenberg.org/ebooks/8374', 'en', 13205), +(34662, 'Myrkkyä', 'Kielland, Alexander Lange', '2016-01-16', 16, 'https://www.gutenberg.org/ebooks/50942', 'fi', 7), +(34663, 'Bobby in Search of a Birthday', 'Mitchell, Lebbeus', '2013-08-27', 19, 'https://www.gutenberg.org/ebooks/43569', 'en', 751), +(34664, 'Six Bad Husbands and Six Unhappy Wives', 'Wilcox, Ella Wheeler', '2015-02-06', 9, 'https://www.gutenberg.org/ebooks/48181', 'en', 1451), +(34665, 'The Heptameron of Margaret, Queen of Navarre\nA Linked Index to the Project Gutenberg Edition', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2009-05-17', 69, 'https://www.gutenberg.org/ebooks/28858', 'en', 4748), +(34666, 'Les Ordres De Chevalerie: les ordres serbes', 'Brasier, L. (Léon)', '2004-08-19', 17, 'https://www.gutenberg.org/ebooks/13219', 'fr', 13206), +(34667, 'History of the Decline and Fall of the Roman Empire — Volume 5', 'Gibbon, Edward', '2008-06-07', 81, 'https://www.gutenberg.org/ebooks/735', 'en', 1292), +(34668, 'The Present State of Wit (1711)\r\nIn a Letter to a Friend in the Country', NULL, '2005-01-27', 22, 'https://www.gutenberg.org/ebooks/14800', 'en', 740), +(34669, 'The Literary Sense', 'Nesbit, E. (Edith)', '2012-04-01', 29, 'https://www.gutenberg.org/ebooks/39324', 'en', 1902), +(34670, 'The Study of Astronomy, adapted to the capacities of youth\r\nIn twelve familiar dialogues, between a tutor and his pupil: explaining the general phænomena of the heavenly bodies, the theory of the tides, &c.', 'Stedman, John, teacher of astronomy', '2018-01-02', 15, 'https://www.gutenberg.org/ebooks/56289', 'en', 13207), +(34671, 'History of Steam on the Erie Canal', 'Anonymous', '2006-12-28', 30, 'https://www.gutenberg.org/ebooks/20209', 'en', 3697), +(34672, 'Uit Ouden Tijd', 'Louwerse, Pieter', '2018-11-19', 9, 'https://www.gutenberg.org/ebooks/58313', 'nl', 98), +(34673, 'La guirlande de Julie: augmentée de documents nouveaux', NULL, '2016-07-23', 22, 'https://www.gutenberg.org/ebooks/52629', 'fr', 13208), +(34674, 'The Girl Scouts at Camp Comalong; Or, Peg of Tamarack Hills', 'Garis, Lilian', '2011-11-16', 24, 'https://www.gutenberg.org/ebooks/38030', 'en', 2345), +(34675, 'The Brontë Family, with special reference to Patrick Branwell Brontë. Vol. 2 of 2', 'Leyland, Francis A.', '2011-10-25', 16, 'https://www.gutenberg.org/ebooks/37844', 'en', 13209), +(34676, 'Human Genome Project, Build 34, Chromosome Number 14', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11788', 'en', 1385), +(34677, 'Mystic Immanence, the Indwelling Spirit', 'Wilberforce, Basil', '2011-08-07', 13, 'https://www.gutenberg.org/ebooks/36996', 'en', 6954), +(34678, 'Pickwickian Manners and Customs', 'Fitzgerald, Percy', '2007-06-25', 23, 'https://www.gutenberg.org/ebooks/21921', 'en', 12331), +(34679, 'Au Maroc', 'Loti, Pierre', '2012-10-02', 16, 'https://www.gutenberg.org/ebooks/40916', 'fr', 6762), +(34680, 'Punch, or the London Charivari, Vol. 93., October 22, 1887', 'Various', '2011-08-14', 3, 'https://www.gutenberg.org/ebooks/37078', 'en', 134), +(34681, 'Psychology and parenthood', 'Bruce, H. Addington (Henry Addington)', '2018-03-29', 43, 'https://www.gutenberg.org/ebooks/56873', 'en', 5997), +(34682, 'Histoire de la prostitution chez tous les peuples du monde depuis l\'antiquité la plus reculée jusqu\'à nos jours, tome 6/6', 'Jacob, P. L.', '2014-04-23', 13, 'https://www.gutenberg.org/ebooks/45458', 'fr', 2611), +(34683, 'The Roman Festivals of the Period of the Republic\r\nAn Introduction to the Study of the Religion of the Romans', 'Fowler, W. Warde (William Warde)', '2019-03-04', 15, 'https://www.gutenberg.org/ebooks/59007', 'en', 5745), +(34684, 'The Lost Hunter\nA Tale of Early Times', 'Adams, John Turvill', '2005-03-11', 13, 'https://www.gutenberg.org/ebooks/15328', 'en', 323), +(34685, 'The Book of Job', 'Unknown', '2007-09-01', 13, 'https://www.gutenberg.org/ebooks/22798', 'en', 8458), +(34686, 'Portuguese Architecture', 'Watson, Walter Crum', '2009-07-10', 71, 'https://www.gutenberg.org/ebooks/29370', 'en', 13210), +(34687, 'The Daredevil', 'Daviess, Maria Thompson', '2004-07-17', 11, 'https://www.gutenberg.org/ebooks/12931', 'en', 61), +(34688, 'Opening a Chestnut Burr', 'Roe, Edward Payson', '2004-07-01', 14, 'https://www.gutenberg.org/ebooks/6028', 'en', 61), +(34689, 'After Taps', 'Gale, Rachel Baker', '2015-06-27', 12, 'https://www.gutenberg.org/ebooks/49295', 'en', 13211), +(34690, 'Alguns homens do meu tempo\nimpressões litterarias', 'Carvalho, Maria Amália Vaz de', '2008-08-17', 13, 'https://www.gutenberg.org/ebooks/26338', 'pt', 642), +(34691, 'Troublesome Comforts\nA Story for Children', 'Glasgow, G. R. (Geraldine Robertson)', '2006-05-23', 8, 'https://www.gutenberg.org/ebooks/18437', 'en', 7579), +(34692, 'India Impressions, With some notes of Ceylon during a winter tour, 1906-7.', 'Crane, Walter', '2017-05-14', 15, 'https://www.gutenberg.org/ebooks/54718', 'en', 1975), +(34693, 'The Curlytops at Uncle Frank\'s Ranch; Or, Little Folks on Ponyback', 'Garis, Howard Roger', '2004-11-01', 24, 'https://www.gutenberg.org/ebooks/6814', 'en', 31), +(34694, 'The Public Orations of Demosthenes, volume 1', 'Demosthenes', '2005-10-01', 48, 'https://www.gutenberg.org/ebooks/9060', 'en', 12286), +(34695, 'Twenty Thousand Leagues Under the Seas: An Underwater Tour of the World', 'Verne, Jules', '2001-01-01', 562, 'https://www.gutenberg.org/ebooks/2488', 'en', 737), +(34696, 'Amiens Before and During the War', NULL, '2015-02-23', 15, 'https://www.gutenberg.org/ebooks/48347', 'en', 13212), +(34697, 'The Gallery', 'Phillips, Rog', '2008-10-16', 38, 'https://www.gutenberg.org/ebooks/26936', 'en', 26), +(34698, 'Keep Out', 'Brown, Fredric', '2009-06-17', 101, 'https://www.gutenberg.org/ebooks/29142', 'en', 26), +(34699, 'Motorcycle, Solo (Harley-Davidson Model WLA)', 'United States. War Department', '2016-01-27', 54, 'https://www.gutenberg.org/ebooks/51058', 'en', 13213), +(34700, 'The Eel', 'De Ford, Miriam Allen', '2010-04-14', 47, 'https://www.gutenberg.org/ebooks/31981', 'en', 177), +(34701, 'Mrs. Raffles: Being the Adventures of an Amateur Crackswoman', 'Bangs, John Kendrick', '2010-01-04', 38, 'https://www.gutenberg.org/ebooks/30853', 'en', 3657), +(34702, 'Self-Denial; or, Alice Wood, and Her Missionary Society', 'American Sunday-School Union', '2007-11-15', 13, 'https://www.gutenberg.org/ebooks/23478', 'en', 13214), +(34703, 'The Bird Hospital', 'Bascom, Caroline Crowninshield', '2015-05-13', 8, 'https://www.gutenberg.org/ebooks/48949', 'en', 13215), +(34704, 'Hints on Driving', 'Ward, C. S.', '2009-02-15', 22, 'https://www.gutenberg.org/ebooks/28090', 'en', 5362), +(34705, 'Cuba in War Time', 'Davis, Richard Harding', '2005-06-01', 7, 'https://www.gutenberg.org/ebooks/8380', 'en', 7344), +(34706, 'The Lamp and the Bell: A Drama In Five Acts', 'Millay, Edna St. Vincent', '2003-02-01', 14, 'https://www.gutenberg.org/ebooks/3768', 'en', 427), +(34707, 'Tales, Traditions and Romance of Border and Revolutionary Times', 'Ellis, Edward Sylvester', '2016-04-26', 15, 'https://www.gutenberg.org/ebooks/51864', 'en', 13216), +(34708, 'Time\'s Portraiture\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9252', 'en', 13217), +(34709, 'Little Visits with Great Americans, Vol. 2 (of 2)\r\nOr Success, Ideals and How to Attain Them', NULL, '2015-02-10', 24, 'https://www.gutenberg.org/ebooks/48175', 'en', 4065), +(34710, 'A Pair of Patient Lovers', 'Howells, William Dean', '2006-06-16', 17, 'https://www.gutenberg.org/ebooks/18605', 'en', 179), +(34711, 'Motor Matt\'s Air Ship; or, The Rival Inventors', 'Matthews, Stanley R.', '2015-01-07', 11, 'https://www.gutenberg.org/ebooks/47901', 'en', 4097), +(34712, 'Aunt Jane\'s Nieces in Society', 'Baum, L. Frank (Lyman Frank)', '2003-12-01', 51, 'https://www.gutenberg.org/ebooks/10468', 'en', 557), +(34713, 'The Book of Cheese', 'Fisk, W. W. (Walter Warner)', '2012-07-25', 35, 'https://www.gutenberg.org/ebooks/40318', 'en', 13218), +(34714, 'Encyclopaedia Britannica, 11th Edition, \"Greek Law\" to \"Ground-Squirrel\"\r\nVolume 12, Slice 5', 'Various', '2011-12-03', 32, 'https://www.gutenberg.org/ebooks/38202', 'en', 1081), +(34715, 'The Bay State Monthly — Volume 2, No. 1, October, 1884', 'Various', '2005-05-28', 15, 'https://www.gutenberg.org/ebooks/15926', 'en', 5522), +(34716, 'Blackwood\'s Edinburgh Magazine, Volume 58, No. 359, September 1845', 'Various', '2010-06-08', 11, 'https://www.gutenberg.org/ebooks/32738', 'en', 711), +(34717, 'Wyoming: A Story of the Outdoor West', 'Raine, William MacLeod', '1999-07-01', 37, 'https://www.gutenberg.org/ebooks/1803', 'en', 8193), +(34718, 'Three Good Giants\nWhose Ancient Deeds are recorded in the Ancient Chronicles', 'Rabelais, François', '2019-04-09', 57, 'https://www.gutenberg.org/ebooks/59235', 'en', 1266), +(34719, 'Ruth Fielding at Silver Ranch; Or, Schoolgirls Among the Cowboys', 'Emerson, Alice B.', '2011-06-12', 30, 'https://www.gutenberg.org/ebooks/36398', 'en', 12963), +(34720, 'The Haunted Hour: An Anthology', NULL, '2005-12-05', 16, 'https://www.gutenberg.org/ebooks/17229', 'en', 13219), +(34721, 'Les fleurs animées - Tome 1', 'Grandville, J. J.', '2017-06-24', 65, 'https://www.gutenberg.org/ebooks/54972', 'fr', 3879), +(34722, 'The Prude\'s Progress: A Comedy in Three Acts', 'Jerome, Jerome K. (Jerome Klapka)', '2014-12-06', 14, 'https://www.gutenberg.org/ebooks/47559', 'en', 1281), +(34723, 'The Three Sapphires', 'Fraser, William Alexander', '2011-02-05', 18, 'https://www.gutenberg.org/ebooks/35179', 'en', 1319), +(34724, 'Vrouwenkiesrecht in de Skandinavische landen', 'Jacobs, Aletta H. (Aletta Henriette)', '2009-07-27', 9, 'https://www.gutenberg.org/ebooks/29526', 'nl', 13220), +(34725, 'Lord Randolph Churchill', 'Churchill, Winston', '2013-05-27', 46, 'https://www.gutenberg.org/ebooks/42817', 'en', 13221), +(34726, 'Punchinello, Volume 1, No. 12, June 18, 1870', 'Various', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9636', 'en', 372), +(34727, 'Vikram and the Vampire; or, Tales of Hindu Devilry', 'Burton, Richard Francis, Sir', '2015-03-17', 76, 'https://www.gutenberg.org/ebooks/48511', 'en', 8566), +(34728, 'The Life Radiant', 'Whiting, Lilian', '2007-12-11', 16, 'https://www.gutenberg.org/ebooks/23820', 'en', 43), +(34729, 'Sea-Wolves of the Mediterranean: The grand period of the Moslem corsairs', 'Currey, E. Hamilton (Edward Hamilton)', '2004-10-10', 16, 'https://www.gutenberg.org/ebooks/13689', 'en', 645), +(34730, 'Colonial Homes and Their Furnishings', 'Northend, Mary Harrod', '2011-01-09', 15, 'https://www.gutenberg.org/ebooks/34897', 'en', 13222), +(34731, 'Operation R.S.V.P.', 'Piper, H. Beam', '2006-04-26', 46, 'https://www.gutenberg.org/ebooks/18261', 'en', 179), +(34732, 'That Unfortunate Marriage, Vol. 3', 'Trollope, Frances Eleanor', '2011-04-24', 13, 'https://www.gutenberg.org/ebooks/35945', 'en', 5040), +(34733, 'General History of Connecticut, from Its First Settlement Under George Fenwick to its Latest Period of Amity with Great Britain', 'Peters, Samuel', '2018-02-21', 17, 'https://www.gutenberg.org/ebooks/56619', 'en', 13223), +(34734, 'The Heart of Rachael', 'Norris, Kathleen Thompson', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/4915', 'en', 434), +(34735, '醒世恆言', 'Feng, Menglong', '2008-01-11', 66, 'https://www.gutenberg.org/ebooks/24239', 'zh', 5698), +(34736, 'History of Halifax City', 'Akins, Thomas B.', '2012-01-25', 11, 'https://www.gutenberg.org/ebooks/38666', 'en', 13224), +(34737, 'The Creation of God', 'Hartmann, Jacob', '2019-06-01', 105, 'https://www.gutenberg.org/ebooks/59651', 'en', 1616), +(34738, 'Diary of Samuel Pepys — Volume 12: September/October 1661', 'Pepys, Samuel', '2004-11-29', 16, 'https://www.gutenberg.org/ebooks/4129', 'en', 478), +(34739, 'Cinderella', 'Hewet, Henry W.', '2004-01-01', 114, 'https://www.gutenberg.org/ebooks/10830', 'en', 1007), +(34740, 'Dotty Dimple at Her Grandmother\'s', 'May, Sophie', '2007-02-27', 41, 'https://www.gutenberg.org/ebooks/20699', 'en', 2858), +(34741, 'The House of Defence v. 1', 'Benson, E. F. (Edward Frederic)', '2014-05-28', 19, 'https://www.gutenberg.org/ebooks/45800', 'en', 8601), +(34742, 'California Mexican-Spanish Cook Book: Selected Mexican and Spanish Recipes', 'Haffner-Ginger, Bertha', '2012-04-30', 134, 'https://www.gutenberg.org/ebooks/39586', 'en', 13225), +(34743, 'The Human Drift', 'London, Jack', '1999-03-01', 40, 'https://www.gutenberg.org/ebooks/1669', 'en', 8965), +(34744, 'Encyclopaedia Britannica, 11th Edition, \"Haller, Albrecht\" to \"Harmonium\"\r\nVolume 12, Slice 8', 'Various', '2011-12-31', 21, 'https://www.gutenberg.org/ebooks/38454', 'en', 1081), +(34745, 'The Book of the Hamburgs\r\nA Brief Treatise upon the Mating, Rearing and Management of the Different Varieties of Hamburgs', 'Baum, L. Frank (Lyman Frank)', '2017-01-14', 23, 'https://www.gutenberg.org/ebooks/53965', 'en', 13226), +(34746, 'His Great Adventure', 'Herrick, Robert', '2019-05-08', 46, 'https://www.gutenberg.org/ebooks/59463', 'en', 4881), +(34747, 'L\'Illustration, No. 3734, 26 Septembre 1914', 'Various', '2010-06-23', 6, 'https://www.gutenberg.org/ebooks/32952', 'fr', 335), +(34748, 'Snarleyyow; or, The Dog Fiend', 'Marryat, Frederick', '2007-05-22', 36, 'https://www.gutenberg.org/ebooks/21579', 'en', 2464), +(34749, 'The Land of Lost Toys', 'Ewing, Juliana Horatia Gatty', '2010-10-24', 11, 'https://www.gutenberg.org/ebooks/33880', 'en', 9846), +(34750, 'The Old Irish World', 'Green, Alice Stopford', '2016-09-28', 18, 'https://www.gutenberg.org/ebooks/53159', 'en', 7442), +(34751, 'The Trader\'s Wife\n1901', 'Becke, Louis', '2008-03-15', 13, 'https://www.gutenberg.org/ebooks/24837', 'en', 12074), +(34752, 'Homo-Culture; Or, The Improvement of Offspring Through Wiser Generation', 'Holbrook, M. L. (Martin Luther)', '2010-11-12', 12, 'https://www.gutenberg.org/ebooks/34299', 'en', 7357), +(34753, 'The Negro Farmer', 'Kelsey, Carl', '2009-08-17', 14, 'https://www.gutenberg.org/ebooks/29714', 'en', 13227), +(34754, 'The Confessions of Jean Jacques Rousseau — Volume 02', 'Rousseau, Jean-Jacques', '2004-12-06', 20, 'https://www.gutenberg.org/ebooks/3902', 'en', 1419), +(34755, 'Spanish Life in Town and Country', 'Higgin, L.', '2006-03-26', 21, 'https://www.gutenberg.org/ebooks/18053', 'en', 4023), +(34756, 'Pride and His Prisoners', 'A. L. O. E.', '2019-08-21', 56, 'https://www.gutenberg.org/ebooks/60149', 'en', NULL), +(34757, 'The Story of the Malakand Field Force: An Episode of Frontier War', 'Churchill, Winston', '2005-12-01', 199, 'https://www.gutenberg.org/ebooks/9404', 'en', 13228), +(34758, 'The Story of Mattie J. Jackson\nHer Parentage—Experience of Eighteen years in\nSlavery—Incidents during the War—Her Escape from Slavery', 'Thompson, L. S. (Lucy S.)', '2006-02-22', 22, 'https://www.gutenberg.org/ebooks/17827', 'en', 12291), +(34759, 'Border, Breed Nor Birth', 'Reynolds, Mack', '2009-12-09', 38, 'https://www.gutenberg.org/ebooks/30639', 'en', 2564), +(34760, 'A Parody on Patience', 'Dalziel, D. (Davison)', '2015-04-17', 12, 'https://www.gutenberg.org/ebooks/48723', 'en', 7325), +(34761, 'Herzl-Worte', 'Herzl, Theodor', '2013-02-26', 13, 'https://www.gutenberg.org/ebooks/42219', 'de', 2258), +(34762, 'Through the Mackenzie Basin\nA Narrative of the Athabasca and Peace River Treaty Expedition of 1899', 'Mair, Charles', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12569', 'en', 13229), +(34763, 'Chambers\'s Edinburgh Journal, No. 439\nVolume 17, New Series, May 29, 1852', 'Various', '2006-09-05', 10, 'https://www.gutenberg.org/ebooks/19181', 'en', 18), +(34764, 'Unsichtbare Bande: Erzählungen', 'Lagerlöf, Selma', '2010-07-01', 15, 'https://www.gutenberg.org/ebooks/33041', 'de', 61), +(34765, 'Ristiriitoja: Novelleja', 'Anttila, Selma', '2017-01-17', 12, 'https://www.gutenberg.org/ebooks/53998', 'fi', 175), +(34766, 'Our Legal Heritage: The First Thousand Years: 600 - 1600\r\nKing Aethelbert - Queen Elizabeth', 'Reilly, S. A.', '1999-04-01', 13, 'https://www.gutenberg.org/ebooks/1694', 'en', 6471), +(34767, 'The Angel in the Cloud', 'Fuller, Edwin W. (Edwin Wiley)', '2018-07-14', 6, 'https://www.gutenberg.org/ebooks/57504', 'en', 350), +(34768, '老殘遊記', 'Liu, E', '2008-04-22', 39, 'https://www.gutenberg.org/ebooks/25124', 'zh', 13230), +(34769, 'The Masters of the Peaks: A Story of the Great North Woods', 'Altsheler, Joseph A. (Joseph Alexander)', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11311', 'en', 4783), +(34770, 'The Bond of Black', 'Le Queux, William', '2012-11-23', 16, 'https://www.gutenberg.org/ebooks/41461', 'en', 48), +(34771, 'La messa di nozze; Un sogno; La bella morte', 'De Roberto, Federico', '2010-05-01', 7, 'https://www.gutenberg.org/ebooks/32193', 'it', 1544), +(34772, 'McClure\'s Magazine, Vol. 6, No. 5, April, 1896', 'Various', '2005-01-11', 33, 'https://www.gutenberg.org/ebooks/14663', 'en', 883), +(34773, 'Notes on Certain Maya and Mexican Manuscripts\r\nThird Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1881-82, Government Printing Office, Washington, 1884, pages 3-66', 'Thomas, Cyrus', '2007-01-27', 12, 'https://www.gutenberg.org/ebooks/20456', 'en', 1608), +(34774, 'The Confessions of Harry Lorrequer — Volume 1', 'Lever, Charles James', '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/5234', 'en', 61), +(34775, 'The Strand Magazine, Vol. 27, January 1904, No. 157', 'Various', '2013-11-05', 15, 'https://www.gutenberg.org/ebooks/44113', 'en', 2998), +(34776, 'Heads and Tales : or, Anecdotes and Stories of Quadrupeds and Other Beasts, Chiefly Connected with Incidents in the Histories of More or Less Distinguished Men.', NULL, '2008-06-28', 30, 'https://www.gutenberg.org/ebooks/25918', 'en', 8505), +(34777, 'Bastien Lepage', 'Crastre, François', '2011-06-26', 34, 'https://www.gutenberg.org/ebooks/36533', 'en', 13231), +(34778, 'The Iliad for Boys and Girls', 'Church, Alfred John', '2007-05-25', 35, 'https://www.gutenberg.org/ebooks/21584', 'en', 13232), +(34779, 'Setä Frans', 'Blicher-Clausen, J. (Jenny)', '2016-05-15', 9, 'https://www.gutenberg.org/ebooks/52076', 'fi', 2631), +(34780, 'The First Christmas Tree: A Story of the Forest', 'Van Dyke, Henry', '2005-06-25', 24, 'https://www.gutenberg.org/ebooks/16134', 'en', 585), +(34781, 'Valley of Dreams', 'Weinbaum, Stanley G. (Stanley Grauman)', '2007-08-11', 67, 'https://www.gutenberg.org/ebooks/22301', 'en', 26), +(34782, 'Quotes and Images From Memoirs of Louis XIV.', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2005-02-01', 27, 'https://www.gutenberg.org/ebooks/7563', 'en', 1026), +(34783, 'Die ungleichen Schalen: Fünf einaktige Dramen', 'Wassermann, Jakob', '2006-11-27', 27, 'https://www.gutenberg.org/ebooks/19940', 'de', 402), +(34784, 'Invention and Discovery: Curious Facts and Characteristic Sketches', 'Anonymous', '2014-08-21', 25, 'https://www.gutenberg.org/ebooks/46644', 'en', 1739), +(34785, 'Bygone London', 'Ross, Frederick', '2014-12-28', 19, 'https://www.gutenberg.org/ebooks/47796', 'en', 4685), +(34786, 'Tik-Tok of Oz', 'Baum, L. Frank (Lyman Frank)', '1997-06-01', 238, 'https://www.gutenberg.org/ebooks/956', 'en', 13233), +(34787, 'L\'Illustration, No. 3257, 29 Juillet 1905', 'Various', '2010-11-09', 2, 'https://www.gutenberg.org/ebooks/34264', 'fr', 150), +(34788, 'A Thoughtless Yes', 'Gardener, Helen H. (Helen Hamilton)', '2013-03-13', 23, 'https://www.gutenberg.org/ebooks/18892', 'en', 112), +(34789, 'The Catholic World, Vol. 17, April, 1873 to September, 1873\r\nA Monthly Magazine of General Literature and Science', 'Various', '2015-12-19', 3, 'https://www.gutenberg.org/ebooks/50721', 'en', 96), +(34790, 'Once Upon A Time', 'Davis, Richard Harding', '2005-10-19', 20, 'https://www.gutenberg.org/ebooks/16908', 'en', 179), +(34791, 'Jimsy and the Monsters', 'Sheldon, Walter J.', '2010-03-21', 42, 'https://www.gutenberg.org/ebooks/31716', 'en', 26), +(34792, 'The Journal of Prison Discipline and Philanthropy, January 1862', 'Pennsylvania Prison Society', '2017-08-03', 5, 'https://www.gutenberg.org/ebooks/55253', 'en', 2509), +(34793, 'Creative Impulse in Industry: A Proposition for Educators', 'Marot, Helen', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/12594', 'en', 13234), +(34794, 'Oedipus King of Thebes\nTranslated into English Rhyming Verse with Explanatory Notes', 'Sophocles', '2008-12-31', 330, 'https://www.gutenberg.org/ebooks/27673', 'en', 1298), +(34795, 'Punch, or the London Charivari, Volume 101, July 18, 1891', 'Various', '2004-09-12', 7, 'https://www.gutenberg.org/ebooks/13446', 'en', 134), +(34796, 'Collecting Old Glass, English and Irish', 'Yoxall, J. H. (James Henry), Sir', '2017-03-18', 5, 'https://www.gutenberg.org/ebooks/54381', 'en', 13235), +(34797, 'The Pig Brother, and Other Fables and Stories\r\nA Supplementary Reader for the Fourth School Year', 'Richards, Laura Elizabeth Howe', '2013-07-28', 27, 'https://www.gutenberg.org/ebooks/43336', 'en', 388), +(34798, 'Rudder Grange', 'Stockton, Frank Richard', '1999-12-01', 25, 'https://www.gutenberg.org/ebooks/2011', 'en', 11166), +(34799, 'Godolphin, Volume 2.', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 6, 'https://www.gutenberg.org/ebooks/7751', 'en', 45), +(34800, 'The Character of the British Empire', 'Muir, Ramsay', '2011-02-06', 12, 'https://www.gutenberg.org/ebooks/35184', 'en', 12954), +(34801, 'The Idea of God as Affected by Modern Knowledge', 'Fiske, John', '2014-08-01', 10, 'https://www.gutenberg.org/ebooks/46476', 'en', 13236), +(34802, 'Jacob Behmen: An Appreciation', 'Whyte, Alexander', '2005-07-16', 17, 'https://www.gutenberg.org/ebooks/16306', 'en', 13237), +(34803, 'Punch, or the London Charivari, Vol. 104, February 18, 1893', 'Various', '2007-07-24', 3, 'https://www.gutenberg.org/ebooks/22133', 'en', 134), +(34804, 'The Sorceress of Rome', 'Gallizier, Nathan', '2013-10-11', 45, 'https://www.gutenberg.org/ebooks/43938', 'en', 13238), +(34805, 'Facts and Fictions in the Securities Industry', 'Vaknin, Samuel', '2009-03-25', 29, 'https://www.gutenberg.org/ebooks/28409', 'en', 13239), +(34806, 'Histoire de Jane Grey', 'Dargaud, Jean Marie', '2015-11-20', 35, 'https://www.gutenberg.org/ebooks/50513', 'fr', 4746), +(34807, 'The Little Nugget', 'Wodehouse, P. G. (Pelham Grenville)', '2004-10-01', 100, 'https://www.gutenberg.org/ebooks/6683', 'en', 4714), +(34808, 'Remarks on some fossil impressions in the sandstone rocks of Connecticut River', 'Warren, John Collins', '2010-10-11', 17, 'https://www.gutenberg.org/ebooks/34056', 'en', 13240), +(34809, 'The Chautauquan, Vol. 05, April 1885', 'Chautauqua Institution', '2017-07-06', 17, 'https://www.gutenberg.org/ebooks/55061', 'en', 1115), +(34810, 'The Place of Honeymoons', 'MacGrath, Harold', '2008-09-11', 9, 'https://www.gutenberg.org/ebooks/26593', 'en', 2828), +(34811, 'The Price of the Prairie: A Story of Kansas', 'McCarter, Margaret Hill', '2010-03-06', 26, 'https://www.gutenberg.org/ebooks/31524', 'en', 315), +(34812, 'Monsieur Lecoq — Volume2\r\nL\'honneur du nom', 'Gaboriau, Emile', '2008-07-04', 25, 'https://www.gutenberg.org/ebooks/8719', 'fr', 298), +(34813, 'Toivolahden pastori', 'Sigurd', '2013-07-06', 18, 'https://www.gutenberg.org/ebooks/43104', 'fi', 2168), +(34814, 'Human Genome Project, rough draft, Chromosome X Number 23', 'Human Genome Project', '2000-06-01', 2, 'https://www.gutenberg.org/ebooks/2223', 'en', 1841), +(34815, 'The Children\'s Garland from the Best Poets', NULL, '2008-12-07', 26, 'https://www.gutenberg.org/ebooks/27441', 'en', 2951), +(34816, 'The Scarlet Car', 'Davis, Richard Harding', '1995-11-01', 60, 'https://www.gutenberg.org/ebooks/358', 'en', 48), +(34817, 'Chronicle and Romance: Froissart, Malory, Holinshed\r\n(The Harvard Classics Series)', NULL, '2004-10-08', 55, 'https://www.gutenberg.org/ebooks/13674', 'en', 12536), +(34818, 'Graham\'s Magazine, Vol. XXXVI, No. 4, April 1850', 'Various', '2018-08-21', 15, 'https://www.gutenberg.org/ebooks/57736', 'en', 162), +(34819, 'Lives of Celebrated Women', 'Goodrich, Samuel G. (Samuel Griswold)', '2010-07-27', 17, 'https://www.gutenberg.org/ebooks/33273', 'en', 4289), +(34820, 'The Art of Cross-Examination\r\nWith the Cross-Examinations of Important Witnesses in Some Celebrated Cases', 'Wellman, Francis L. (Francis Lewis)', '2012-09-17', 232, 'https://www.gutenberg.org/ebooks/40781', 'en', 13241), +(34821, 'Seven Short Plays', 'Gregory, Lady', '2012-12-18', 111, 'https://www.gutenberg.org/ebooks/41653', 'en', 5104), +(34822, 'Principles of Decorative Design\nFourth Edition', 'Dresser, Christopher', '2012-05-21', 44, 'https://www.gutenberg.org/ebooks/39749', 'en', 13242), +(34823, 'Frank Merriwell\'s Son; Or, A Chip Off the Old Block', 'Standish, Burt L.', '2008-05-03', 10, 'https://www.gutenberg.org/ebooks/25316', 'en', 323), +(34824, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 01\r\nMasterpieces of German Literature Translated into English.', NULL, '2004-02-01', 70, 'https://www.gutenberg.org/ebooks/11123', 'en', 4972), +(34825, 'Harriet and the Piper', 'Norris, Kathleen Thompson', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/5006', 'en', 109), +(34826, 'The Mentor: American Miniature Painters, January 15, 1917, Serial No. 123', 'Lounsbery, Elizabeth', '2013-12-01', 9, 'https://www.gutenberg.org/ebooks/44321', 'en', 13243), +(34827, 'Practical Talks by an Astronomer', 'Jacoby, Harold', '2016-10-29', 23, 'https://www.gutenberg.org/ebooks/53396', 'en', 1683), +(34828, 'African Camp Fires', 'White, Stewart Edward', '2004-12-24', 23, 'https://www.gutenberg.org/ebooks/14451', 'en', 13244), +(34829, 'Aristophane; Traduction nouvelle, tome second', 'Aristophanes', '2007-02-25', 73, 'https://www.gutenberg.org/ebooks/20664', 'fr', 8332), +(34830, 'Beadle\'s Boy\'s Library of Sport, Story and Adventure, Vol. I, No. 1.\nAdventures of Buffalo Bill from Boyhood to Manhood', 'Ingraham, Prentiss', '2005-04-08', 16, 'https://www.gutenberg.org/ebooks/15583', 'en', 10560), +(34831, 'Mail Carrying Railways Underpaid', 'Committee on Railway Mail Pay', '2016-06-06', 2, 'https://www.gutenberg.org/ebooks/52244', 'en', 13245), +(34832, 'Graceful Riding: A Pocket Manual for Equestrians', 'Wayte, Samuel C.', '2011-07-11', 18, 'https://www.gutenberg.org/ebooks/36701', 'en', 2240), +(34833, 'The Old Man\'s Bag', 'Crosland, T. W. H. (Thomas William Hodgson)', '2007-11-15', 18, 'https://www.gutenberg.org/ebooks/23485', 'en', 13246), +(34834, 'The Fourth Generation', 'Besant, Walter', '2015-10-10', 18, 'https://www.gutenberg.org/ebooks/50177', 'en', 45), +(34835, 'Round Games with Cards\nA Practical Treatise on All the Most Popular Games, with Their Different Variations, and Hints for Their Practice', 'Peel, W. H.', '2009-01-16', 43, 'https://www.gutenberg.org/ebooks/27819', 'en', 7523), +(34836, 'L\'enfant de ma femme', 'Kock, Paul de', '2010-11-24', 9, 'https://www.gutenberg.org/ebooks/34432', 'fr', 687), +(34837, 'Jack Harkaway and His Son\'s Escape from the Brigands of Greece', 'Hemyng, Bracebridge', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/7335', 'en', 13247), +(34838, 'Matkahavaintoja puoli vuosisataa sitten', 'Topelius, Zacharias', '2014-06-17', 8, 'https://www.gutenberg.org/ebooks/46012', 'fi', 1408), +(34839, 'Chronicles of England, Scotland and Ireland (2 of 6): England (06 of 12)\r\nRichard the First', 'Holinshed, Raphael', '2005-09-27', 10, 'https://www.gutenberg.org/ebooks/16762', 'en', 4746), +(34840, 'Collotype and Photo-lithography', 'Schnauss, Julius', '2015-09-03', 13, 'https://www.gutenberg.org/ebooks/49866', 'en', 13248), +(34841, 'Canada', 'Bourinot, John George', '2007-09-10', 33, 'https://www.gutenberg.org/ebooks/22557', 'en', 5181), +(34842, 'Annali d\'Italia, vol. 4\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2015-02-07', 22, 'https://www.gutenberg.org/ebooks/48188', 'it', 6107), +(34843, 'The Faith Healer: A Play in Three Acts', 'Moody, William Vaughn', '2009-05-16', 17, 'https://www.gutenberg.org/ebooks/28851', 'en', 402), +(34844, 'Een Delftshavensche Kwajongen of Het Leven van Luitenant-Admiraal Piet Heyn', 'Louwerse, Pieter', '2013-08-26', 17, 'https://www.gutenberg.org/ebooks/43560', 'nl', 13249), +(34845, 'Lords of the Housetops: Thirteen Cat Tales', NULL, '2009-09-26', 116, 'https://www.gutenberg.org/ebooks/30092', 'en', 1853), +(34846, 'Life and Letters of Lord Macaulay. Volume 1', 'Trevelyan, George Otto', '2001-05-01', 32, 'https://www.gutenberg.org/ebooks/2647', 'en', 13250), +(34847, 'Old Familiar Faces', 'Watts-Dunton, Theodore', '2008-10-25', 12, 'https://www.gutenberg.org/ebooks/27025', 'en', 53), +(34848, 'El Comendador Mendoza\r\nObras Completas Tomo VII', 'Valera, Juan', '2004-08-18', 16, 'https://www.gutenberg.org/ebooks/13210', 'es', 11892), +(34849, 'Ireland under the Stuarts and During the Interregnum, Vol. 3 (of 3), 1660-1690', 'Bagwell, Richard', '2017-08-21', 12, 'https://www.gutenberg.org/ebooks/55405', 'en', 4848), +(34850, 'Loafing Along Death Valley Trails: A Personal Narrative of People and Places', 'Caruthers, William', '2016-04-30', 26, 'https://www.gutenberg.org/ebooks/51899', 'en', 13251), +(34851, 'Young Auctioneers; Or, The Polishing of a Rolling Stone', 'Stratemeyer, Edward', '2010-01-31', 11, 'https://www.gutenberg.org/ebooks/31140', 'en', 13252), +(34852, 'Under the Lilacs', 'Alcott, Louisa May', '2003-02-01', 93, 'https://www.gutenberg.org/ebooks/3795', 'en', 3133), +(34853, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, No 10, August 1878\r\nScribner\'s Illustrated', 'Various', '2009-09-14', 14, 'https://www.gutenberg.org/ebooks/29983', 'en', 479), +(34854, 'In Search of a Siberian Klondike', 'Hulbert, Homer B. (Homer Bezaleel)', '2012-10-30', 17, 'https://www.gutenberg.org/ebooks/41237', 'en', 4683), +(34855, 'Little Lost Sister', 'Brooks, Virginia', '2008-06-12', 6, 'https://www.gutenberg.org/ebooks/25772', 'en', 13253), +(34856, 'Stories from the Operas', 'Davidson, Gladys', '2018-01-01', 11, 'https://www.gutenberg.org/ebooks/56280', 'en', 5808), +(34857, 'Blackfoot Lodge Tales: The Story of a Prairie People', 'Grinnell, George Bird', '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/11547', 'en', 13254), +(34858, 'Under King Constantine', 'Trask, Katrina', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/10495', 'en', 9541), +(34859, 'The Great Horse; or, The War Horse\r\nfrom the time of the Roman Invasion till its development into the Shire Horse.', 'Gilbey, Walter, Sir', '2018-06-18', 6, 'https://www.gutenberg.org/ebooks/57352', 'en', 13255), +(34860, 'The Origin and Deeds of the Goths', 'Jordanes, active 6th century', '2005-01-26', 83, 'https://www.gutenberg.org/ebooks/14809', 'en', 13256), +(34861, 'Pioneering in Cuba\r\nA Narrative of the Settlement of La Gloria, the First American Colony in Cuba, and the Early Experiences of the Pioneers', 'Adams, James Meade', '2010-09-03', 6, 'https://www.gutenberg.org/ebooks/33617', 'en', 13257), +(34862, 'An English Garner: Ingatherings from Our History and Literature (8 of 8)', NULL, '2016-07-22', 9, 'https://www.gutenberg.org/ebooks/52620', 'en', 1201), +(34863, 'Waverley', 'Scott, Walter', '2014-05-19', 16, 'https://www.gutenberg.org/ebooks/45697', 'fi', 98), +(34864, 'J. Poindexter, Colored', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2011-06-09', 10, 'https://www.gutenberg.org/ebooks/36365', 'en', 1660), +(34865, 'The Sisters — Volume 2', 'Ebers, Georg', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/5462', 'en', 803), +(34866, 'The World on Wheels, and Other Sketches', 'Taylor, Benjamin F. (Benjamin Franklin)', '2014-01-24', 7, 'https://www.gutenberg.org/ebooks/44745', 'en', 13258), +(34867, 'Mimmi Paavaliina: 4-näytöksinen huvinäytelmä', 'Lassila, Maiju', '2004-11-13', 17, 'https://www.gutenberg.org/ebooks/14035', 'fi', 907), +(34868, 'Christmas, A Happy Time\nA Tale, Calculated for the Amusement and Instruction of Young Persons', 'Mant, Alicia Catherine', '2006-12-27', 10, 'https://www.gutenberg.org/ebooks/20200', 'en', 13259), +(34869, 'Anecdotes for Boys', 'Newcomb, Harvey', '2008-05-20', 11, 'https://www.gutenberg.org/ebooks/25540', 'en', 3300), +(34870, 'Human Genome Project, Build 34, Chromosome Number 01', 'Human Genome Project', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11775', 'en', 1385), +(34871, 'The Great Court Scandal', 'Le Queux, William', '2012-10-09', 9, 'https://www.gutenberg.org/ebooks/41005', 'en', 434), +(34872, 'The White Eagle of Poland', 'Benson, E. F. (Edward Frederic)', '2019-02-18', 11, 'https://www.gutenberg.org/ebooks/58914', 'en', 10653), +(34873, 'The Crimson Sweater', 'Barbour, Ralph Henry', '2010-08-13', 26, 'https://www.gutenberg.org/ebooks/33425', 'en', 153), +(34874, 'Dell\'antico stato del lago di Pusiano nell\'alto Milanese', 'Redaelli, Carlo', '2018-05-14', 5, 'https://www.gutenberg.org/ebooks/57160', 'it', 13260), +(34875, 'Critical Miscellanies (Vol. 2 of 3), Essay 3: Condorcet', 'Morley, John', '2008-02-02', 9, 'https://www.gutenberg.org/ebooks/24492', 'en', 13261), +(34876, 'When We Dead Awaken', 'Ibsen, Henrik', '2003-12-01', 133, 'https://www.gutenberg.org/ebooks/4782', 'en', 798), +(34877, 'Daisy Burns (Volume 1)', 'Kavanagh, Julia', '2011-05-18', 48, 'https://www.gutenberg.org/ebooks/36157', 'en', 264), +(34878, 'The Boy\'s Playbook of Science\r\nIncluding the Various Manipulations and Arrangements of Chemical and Philosophical Apparatus Required for the Successful Performance of Scientific Experiments in Illustration of the Elementary Branches of Chemistry and Natural Philosophy', 'Pepper, John Henry', '2013-01-13', 39, 'https://www.gutenberg.org/ebooks/41839', 'en', 4329), +(34879, 'The Lucky Seventh', 'Barbour, Ralph Henry', '2012-06-05', 15, 'https://www.gutenberg.org/ebooks/39923', 'en', 6620), +(34880, 'Abraham Lincoln and the Abolition of Slavery in the United States', 'Leland, Charles Godfrey', '2016-06-25', 20, 'https://www.gutenberg.org/ebooks/52412', 'en', 1716), +(34881, 'Pojat asialla', 'Lassila, Maiju', '2004-11-29', 93, 'https://www.gutenberg.org/ebooks/14207', 'fi', 175), +(34882, 'The American Missionary — Volume 36, No. 12, December, 1882', 'Various', '2018-10-18', 4, 'https://www.gutenberg.org/ebooks/58128', 'en', 395), +(34883, 'Northern Nut Growers Report of the Proceedings at the Twenty-First Annual Meeting\nCedar Rapids, Iowa, September 17, 18, and 19, 1930', NULL, '2006-12-05', 9, 'https://www.gutenberg.org/ebooks/20032', 'en', 1628), +(34884, 'Sketches by Seymour — Complete', 'Seymour, Robert', '2004-07-13', 40, 'https://www.gutenberg.org/ebooks/5650', 'en', 1688), +(34885, 'Outlook Odes', 'Crosland, T. W. H. (Thomas William Hodgson)', '2011-08-14', 23, 'https://www.gutenberg.org/ebooks/37085', 'en', 8), +(34886, 'The Trial and Execution of the Sparrow for Killing Cock Robin', 'Anonymous', '2014-01-04', 15, 'https://www.gutenberg.org/ebooks/44577', 'en', 13262), +(34887, 'The Story of American History for Elementary Schools', 'Blaisdell, Albert F. (Albert Franklin)', '2010-12-08', 39, 'https://www.gutenberg.org/ebooks/34600', 'en', 207), +(34888, 'Chronicles of Newgate, Vol. 1\r\nFrom the twelfth to the eighteenth century', 'Griffiths, Arthur', '2015-10-30', 13, 'https://www.gutenberg.org/ebooks/50345', 'en', 13263), +(34889, 'La Aventuroj de Alicio en Mirlando', 'Carroll, Lewis', '2006-01-09', 97, 'https://www.gutenberg.org/ebooks/17482', 'eo', 580), +(34890, 'The Prose Works of William Wordsworth\r\nFor the First Time Collected, With Additions from Unpublished Manuscripts. In Three Volumes.', 'Wordsworth, William', '2005-08-19', 47, 'https://www.gutenberg.org/ebooks/16550', 'en', 232), +(34891, 'The Pilot and the Bushman', 'Jacobs, Sylvia', '2016-03-01', 16, 'https://www.gutenberg.org/ebooks/51297', 'en', 604), +(34892, 'Little Wars', 'Wells, H. G. (Herbert George)', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8973', 'en', 11300), +(34893, 'Lynton and Lynmouth: A Pageant of Cliff & Moorland', 'Presland, John', '2007-09-25', 13, 'https://www.gutenberg.org/ebooks/22765', 'en', 13264), +(34894, 'Adventures of Huckleberry Finn, Chapters 36 to the Last', 'Twain, Mark', '2004-06-28', 16, 'https://www.gutenberg.org/ebooks/7107', 'en', 1043), +(34895, 'Mothwise', 'Hamsun, Knut', '2014-07-07', 33, 'https://www.gutenberg.org/ebooks/46220', 'en', 286), +(34896, '牛郎織女傳', 'Zhu, Mingshi', '2008-11-09', 32, 'https://www.gutenberg.org/ebooks/27217', 'zh', 3187), +(34897, 'My Book of Indoor Games', 'Squareman, Clarence', '2004-07-25', 29, 'https://www.gutenberg.org/ebooks/13022', 'en', 1560), +(34898, 'Histoire de la prostitution chez tous les peuples du monde depuis l\'antiquité la plus reculée jusqu\'à nos jours, tome 3/6', 'Jacob, P. L.', '2013-09-16', 15, 'https://www.gutenberg.org/ebooks/43752', 'fr', 2611), +(34899, 'The Circus Boys Across the Continent; Or, Winning New Laurels on the Tanbark', 'Darlington, Edgar B. P.', '2001-01-01', 13, 'https://www.gutenberg.org/ebooks/2475', 'en', 3133), +(34900, 'Old Crow', 'Brown, Alice', '2010-02-24', 36, 'https://www.gutenberg.org/ebooks/31372', 'en', 1061), +(34901, 'Die Mädchen des Pensionats: Humoreske', 'Eckstein, Ernst', '2015-06-24', 8, 'https://www.gutenberg.org/ebooks/49268', 'de', 543), +(34902, 'Sixty Years in Southern California, 1853-1913\r\nContaining the Reminiscences of Harris Newmark', 'Newmark, Harris', '2013-05-10', 28, 'https://www.gutenberg.org/ebooks/42680', 'en', 13265), +(34903, 'Les aventures de Télémaque', 'Aragon', '2017-09-27', 50, 'https://www.gutenberg.org/ebooks/55637', 'fr', 580), +(34904, 'Siouan Sociology', 'Dorsey, James Owen', '2006-10-10', 12, 'https://www.gutenberg.org/ebooks/19518', 'en', 13266), +(34905, 'Lucrecia Borja: Estudio Histórico', 'Villa-Urrutia, W. R. de', '2015-05-12', 15, 'https://www.gutenberg.org/ebooks/48940', 'es', 2049), +(34906, 'Wigwam Evenings: Sioux Folk Tales Retold', 'Eastman, Elaine Goodale', '2009-02-16', 90, 'https://www.gutenberg.org/ebooks/28099', 'en', 370), +(34907, 'A History of the Four Georges and of William IV, Volume III', 'McCarthy, Justin', '2007-11-22', 15, 'https://www.gutenberg.org/ebooks/23471', 'en', 4000), +(34908, 'Een abel spel van Esmoreit\nSconics sone van Cecilien', NULL, '2006-01-31', 10, 'https://www.gutenberg.org/ebooks/17644', 'nl', 402), +(34909, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 720, October 13, 1877', 'Various', '2015-10-11', 7, 'https://www.gutenberg.org/ebooks/50183', 'en', 18), +(34910, 'Papers and Proceedings of the Thirty-Fifth General Meeting of the American Library Association\r\nHeld at Kaaterskill, N. Y., June 23-28, 1913', NULL, '2014-10-16', 15, 'https://www.gutenberg.org/ebooks/47134', 'en', 13267), +(34911, 'The Translation of a Savage, Volume 3', 'Parker, Gilbert', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/6213', 'en', 1902), +(34912, 'The Great Apostasy, Considered in the Light of Scriptural and Secular History', 'Talmage, James E. (James Edward)', '2011-03-07', 48, 'https://www.gutenberg.org/ebooks/35514', 'en', 377), +(34913, 'Die Tänzerin Barberina: Roman aus der Zeit Friedrich des Grossen', 'Paul, Adolf', '2016-01-27', 20, 'https://www.gutenberg.org/ebooks/51051', 'de', 13268), +(34914, 'La conquête d\'une cuisinière II\nLe tombeur-des-crânes', 'Chavette, Eugène', '2005-10-03', 18, 'https://www.gutenberg.org/ebooks/16796', 'fr', 61), +(34915, 'Journal de marche du sergent Fricasse de la 127e demi-brigade : 1792-1802\r\navec les uniformes des armées de Sambre-et-Meuse et Rhin-et-Moselle. Fac-similés dessinés par P. Sellier d\'après les gravures allemandes du temps', 'Fricasse, Jacques', '2010-04-14', 18, 'https://www.gutenberg.org/ebooks/31988', 'fr', 3630), +(34916, 'The Mentor: The Wife in Art, Vol. 1, Num. 28, Serial No. 28', 'Kobbé, Gustav', '2015-09-06', 12, 'https://www.gutenberg.org/ebooks/49892', 'en', 13269), +(34917, 'The Bright Messenger', 'Blackwood, Algernon', '2013-08-29', 26, 'https://www.gutenberg.org/ebooks/43594', 'en', 114), +(34918, 'Laboratory Manual of Glass-Blowing', 'Frary, Francis C. (Francis Cowles)', '2009-09-22', 52, 'https://www.gutenberg.org/ebooks/30066', 'en', 3384), +(34919, 'Greater Greece and Greater Britain; and, George Washington, the Expander of England.\r\nTwo Lectures with an Appendix', 'Freeman, Edward A. (Edward Augustus)', '2015-01-07', 10, 'https://www.gutenberg.org/ebooks/47908', 'en', 10071), +(34920, 'Tor, a Street Boy of Jerusalem', 'Kingsley, Florence Morse', '2017-04-09', 17, 'https://www.gutenberg.org/ebooks/54523', 'en', 13270), +(34921, 'Brown Wolf and Other Jack London Stories\nChosen and Edited By Franklin K. Mathiews', 'London, Jack', '2004-05-01', 68, 'https://www.gutenberg.org/ebooks/12336', 'en', 179), +(34922, 'Annos de Prosa; A Gratido; O Arrependimento', 'Castelo Branco, Camilo', '2008-07-22', 45, 'https://www.gutenberg.org/ebooks/26103', 'pt', 3856), +(34923, 'This Country of Ours', 'Marshall, H. E. (Henrietta Elizabeth)', '2003-02-01', 482, 'https://www.gutenberg.org/ebooks/3761', 'en', 207), +(34924, 'Lectures of Col. R. G. Ingersoll - Latest', 'Ingersoll, Robert Green', '2005-06-01', 24, 'https://www.gutenberg.org/ebooks/8389', 'en', 1191), +(34925, 'Le Laude\nsecondo la stampa fiorentina del 1490', 'Jacopone, da Todi', '2009-09-13', 20, 'https://www.gutenberg.org/ebooks/29977', 'it', 8), +(34926, 'Many Fronts', 'Freeman, Lewis R. (Lewis Ransome)', '2013-03-31', 27, 'https://www.gutenberg.org/ebooks/42446', 'en', 449), +(34927, 'Sube Cane', 'Partridge, Bellamy', '2010-06-07', 9, 'https://www.gutenberg.org/ebooks/32731', 'en', 1655), +(34928, 'American Sketches', 'Whibley, Charles', '2008-06-14', 25, 'https://www.gutenberg.org/ebooks/25786', 'en', 1110), +(34929, 'Ylioppilaita: Kuvaus pohjalaisista ylioppilaista Turun Yliopistossa', 'Finne, Jalmari', '2017-12-31', 8, 'https://www.gutenberg.org/ebooks/56274', 'fi', 175), +(34930, 'Journals of Australian Explorations', 'Gregory, Francis Thomas', '2003-12-01', 37, 'https://www.gutenberg.org/ebooks/10461', 'en', 2471), +(34931, 'Chaldea: From the Earliest Times to the Rise of Assyria', 'Ragozin, Zénaïde A. (Zénaïde Alexeïevna)', '2008-02-20', 92, 'https://www.gutenberg.org/ebooks/24654', 'en', 2877), +(34932, 'Joe Wilson and His Mates', 'Lawson, Henry', '1997-09-01', 58, 'https://www.gutenberg.org/ebooks/1036', 'en', 98), +(34933, 'China and Pottery Marks', 'Unknown', '2012-07-24', 56, 'https://www.gutenberg.org/ebooks/40311', 'en', 13271), +(34934, 'The Black Bar', 'Fenn, George Manville', '2007-05-05', 15, 'https://www.gutenberg.org/ebooks/21326', 'en', 9992), +(34935, 'Vie de Jésus: Histoire des origines du christianisme; 1', 'Renan, Ernest', '2005-02-20', 70, 'https://www.gutenberg.org/ebooks/15113', 'fr', 10446), +(34936, 'Nan of the Gypsies', 'North, Grace May', '2014-05-16', 11, 'https://www.gutenberg.org/ebooks/45663', 'en', 3621), +(34937, 'The Meadow-Brook Girls Across Country; Or, The Young Pathfinders on a Summer Hike', 'Aldridge, Janet', '2011-06-12', 20, 'https://www.gutenberg.org/ebooks/36391', 'en', 51), +(34938, 'The Cell of Self-Knowledge : seven early English mystical treatises printed by Henry Pepwell in 1521', NULL, '2003-10-01', 73, 'https://www.gutenberg.org/ebooks/4544', 'en', 13272), +(34939, 'Jane Oglander', 'Lowndes, Marie Belloc', '2011-08-28', 13, 'https://www.gutenberg.org/ebooks/37243', 'en', 5925), +(34940, 'Homo Sum — Volume 03', 'Ebers, Georg', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/5496', 'en', 2962), +(34941, 'Peter Moors Fahrt nach Südwest: Ein Feldzugsbericht', 'Frenssen, Gustav', '2016-12-10', 39, 'https://www.gutenberg.org/ebooks/53706', 'de', 13273), +(34942, 'Human Genome Project, Build 34, Chromosome Number 07', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11781', 'en', 1385), +(34943, 'The Story of Duciehurst: A Tale of the Mississippi', 'Murfree, Mary Noailles', '2017-11-25', 8, 'https://www.gutenberg.org/ebooks/56046', 'en', 3814), +(34944, 'Light Freights', 'Jacobs, W. W. (William Wymark)', '2007-06-25', 12, 'https://www.gutenberg.org/ebooks/21928', 'en', 1224), +(34945, 'History of the Conquest of Mexico; vol. 4/4', 'Prescott, William Hickling', '2019-06-28', 63, 'https://www.gutenberg.org/ebooks/59832', 'en', 13274), +(34946, 'Swamp Demons', 'Butz, C. A.', '2010-05-24', 23, 'https://www.gutenberg.org/ebooks/32503', 'en', 8), +(34947, 'Cabin Fever', 'Bower, B. M.', '1998-02-01', 76, 'https://www.gutenberg.org/ebooks/1204', 'en', 315), +(34948, 'History of \"Billy the Kid\"', 'Siringo, Charles A.', '2011-11-17', 25, 'https://www.gutenberg.org/ebooks/38039', 'en', 13275), +(34949, 'Οι ευτράπελες ιστορίες του, Νασρ-εν-ντιν Χότζα', NULL, '2012-07-02', 18, 'https://www.gutenberg.org/ebooks/40123', 'el', 13276), +(34950, 'Scott Burton on the Range', 'Cheyney, Edward G. (Edward Gheen)', '2018-05-21', 22, 'https://www.gutenberg.org/ebooks/57194', 'en', 315), +(34951, 'The Squid-Jigging Ground', 'McGuinn, Roger', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/10653', 'en', 13277), +(34952, 'El intruso', 'Blasco Ibáñez, Vicente', '2008-01-31', 15, 'https://www.gutenberg.org/ebooks/24466', 'es', 13278), +(34953, 'The Man Who Did the Right Thing: A Romance', 'Johnston, Harry', '2014-04-21', 16, 'https://www.gutenberg.org/ebooks/45451', 'en', 13279), +(34954, 'Political Ideals', 'Russell, Bertrand', '2003-12-01', 265, 'https://www.gutenberg.org/ebooks/4776', 'en', 1745), +(34955, 'Heroes of Modern Europe', 'Birkhead, Alice', '2007-04-16', 35, 'https://www.gutenberg.org/ebooks/21114', 'en', 5992), +(34956, 'Tracy Park: A Novel', 'Holmes, Mary Jane', '2005-03-10', 27, 'https://www.gutenberg.org/ebooks/15321', 'en', 61), +(34957, 'The Works of Robert G. Ingersoll, Vol. 05 (of 12)\r\nDresden Edition—Discussions', 'Ingersoll, Robert Green', '2012-02-09', 22, 'https://www.gutenberg.org/ebooks/38805', 'en', 1191), +(34958, 'Josephine E. Butler: An Autobiographical Memoir', 'Butler, Josephine Elizabeth Grey', '2016-11-16', 14, 'https://www.gutenberg.org/ebooks/53534', 'en', 13280), +(34959, 'Die infantile Wiederkehr des Totemismus\nÜber einige Übereinstimmungen im Seelenleben der Wilden\nund der Neurotiker IV', 'Freud, Sigmund', '2011-08-14', 11, 'https://www.gutenberg.org/ebooks/37071', 'de', 3178), +(34960, 'A Noble Queen: A Romance of Indian History (Volume 2 of 3)', 'Taylor, Meadows', '2014-01-04', 13, 'https://www.gutenberg.org/ebooks/44583', 'en', 11214), +(34961, 'Tobias Smollett', 'Smeaton, William Henry Oliphant', '2014-11-07', 10, 'https://www.gutenberg.org/ebooks/47306', 'en', 13281), +(34962, 'A Prisoner in Fairyland (The Book That \'Uncle Paul\' Wrote)', 'Blackwood, Algernon', '2004-07-01', 37, 'https://www.gutenberg.org/ebooks/6021', 'en', 2827), +(34963, 'Gudrid the Fair\nA Tale of the Discovery of America', 'Hewlett, Maurice', '2007-11-27', 11, 'https://www.gutenberg.org/ebooks/23643', 'en', 1101), +(34964, 'Classic Myths', 'Judd, Mary Catherine', '2006-02-01', 43, 'https://www.gutenberg.org/ebooks/9855', 'en', 8821), +(34965, 'Talks on Talking', 'Kleiser, Grenville', '2006-01-07', 24, 'https://www.gutenberg.org/ebooks/17476', 'en', 3977), +(34966, 'Michael Strogoff', 'Verne, Jules', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8987', 'en', 13282), +(34967, 'The Scarecrow of Oz', 'Baum, L. Frank (Lyman Frank)', '2016-02-21', 63, 'https://www.gutenberg.org/ebooks/51263', 'en', 2203), +(34968, 'The New York Stock Exchange and Public Opinion\nRemarks at Annual Dinner, Association of Stock Exchange Brokers, Held at the Astor Hotel, New York, January 24, 1917', 'Kahn, Otto H.', '2009-07-11', 20, 'https://www.gutenberg.org/ebooks/29379', 'en', 8814), +(34969, 'King Henry the Fifth\nArranged for Representation at the Princess\'s Theatre', 'Shakespeare, William', '2007-09-28', 22, 'https://www.gutenberg.org/ebooks/22791', 'en', 599), +(34970, 'The Brighton Boys with the Flying Corps', 'Driscoll, James R.', '2004-07-19', 10, 'https://www.gutenberg.org/ebooks/12938', 'en', 2279), +(34971, 'The United States and the War', 'Murray, Gilbert', '2011-03-30', 18, 'https://www.gutenberg.org/ebooks/35726', 'en', 4773), +(34972, 'Sweet and Twenty: A Comedy in One Act', 'Dell, Floyd', '2017-05-12', 22, 'https://www.gutenberg.org/ebooks/54711', 'en', 427), +(34973, 'The Civilization of Illiteracy', 'Nadin, Mihai', '2001-01-01', 69, 'https://www.gutenberg.org/ebooks/2481', 'en', 13283), +(34974, 'Saint Augustin', 'Bertrand, Louis', '2005-10-01', 40, 'https://www.gutenberg.org/ebooks/9069', 'en', 11791), +(34975, 'The Romance of Lust: A classic Victorian erotic novel', 'Anonymous', '2009-10-14', 10730, 'https://www.gutenberg.org/ebooks/30254', 'en', 13284), +(34976, 'Memoirs of Napoleon Bonaparte — Volume 03', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 22, 'https://www.gutenberg.org/ebooks/3553', 'en', 1770), +(34977, 'Mad Shepherds, and Other Human Studies', 'Jacks, L. P. (Lawrence Pearsall)', '2010-02-24', 30, 'https://www.gutenberg.org/ebooks/31386', 'en', 797), +(34978, 'The Diary of a Hunter from the Punjab to the Karakorum Mountains', 'Irby, Augustus Henry', '2013-05-09', 18, 'https://www.gutenberg.org/ebooks/42674', 'en', 13285), +(34979, 'Ethelyn\'s Mistake', 'Holmes, Mary Jane', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12104', 'en', 1426), +(34980, 'A Child\'s Primer of Natural History', 'Herford, Oliver', '2008-08-16', 29, 'https://www.gutenberg.org/ebooks/26331', 'en', 37), +(34981, 'Scenes from a Courtesan\'s Life', 'Balzac, Honoré de', '2005-08-26', 84, 'https://www.gutenberg.org/ebooks/1660', 'en', 607), +(34982, 'The Rival Campers Afloat; or, The Prize Yacht Viking', 'Smith, Ruel Perley', '2012-08-20', 21, 'https://www.gutenberg.org/ebooks/40547', 'en', 324), +(34983, 'Siegel-Myers School of Music - Vocal Record F', NULL, '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10237', 'en', 10794), +(34984, 'In Arapahoe: Matthew 9, 1-8.', NULL, '2007-12-24', 29, 'https://www.gutenberg.org/ebooks/24002', 'arp', 13286), +(34985, 'A Glossary of Words used in the Country of Wiltshire', 'Goddard, E. H. (Edward Hungerford)', '2014-05-29', 19, 'https://www.gutenberg.org/ebooks/45809', 'en', 13287), +(34986, 'Napoleon', 'Liisberg, H. C. Bering (Henrik Carl Bering)', '2018-01-24', 8, 'https://www.gutenberg.org/ebooks/56422', 'fi', 840), +(34987, 'Russia: Its People and Its Literature', 'Pardo Bazán, Emilia, condesa de', '2012-11-26', 19, 'https://www.gutenberg.org/ebooks/41495', 'en', 13288), +(34988, 'The Ballad of St. Barbara, and Other Verses', 'Chesterton, G. K. (Gilbert Keith)', '2010-04-28', 26, 'https://www.gutenberg.org/ebooks/32167', 'en', 54); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(34989, 'Lewis Rand', 'Johnston, Mary', '2005-01-15', 31, 'https://www.gutenberg.org/ebooks/14697', 'en', 9826), +(34990, 'The Salvaging Of Civilization', 'Wells, H. G. (Herbert George)', '2010-10-29', 34, 'https://www.gutenberg.org/ebooks/33889', 'en', 13289), +(34991, 'Amor ja Psyke', 'Apuleius', '2016-09-26', 9, 'https://www.gutenberg.org/ebooks/53150', 'fi', 13290), +(34992, 'Trumpeter Fred: A Story of the Plains', 'King, Charles', '2011-09-13', 28, 'https://www.gutenberg.org/ebooks/37415', 'en', 1361), +(34993, 'Sir William Wallace', 'Murison, Alexander Falconer', '2014-02-28', 31, 'https://www.gutenberg.org/ebooks/45035', 'en', 13291), +(34994, 'A Life\'s Morning', 'Gissing, George', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4312', 'en', 137), +(34995, 'The Squire: An Original Comedy in Three Acts', 'Pinero, Arthur Wing', '2007-05-22', 22, 'https://www.gutenberg.org/ebooks/21570', 'en', 907), +(34996, 'German Atrocities: A Record of Shameless Deeds', 'Le Queux, William', '2016-05-16', 16, 'https://www.gutenberg.org/ebooks/52082', 'en', 2936), +(34997, 'The Man-Wolf and Other Tales', 'Erckmann-Chatrian', '2005-05-02', 58, 'https://www.gutenberg.org/ebooks/15745', 'en', 3777), +(34998, 'Address delivered at the quarter-centennial celebration of the admission of Kansas as a state', 'Martin, John Alexander', '2016-03-30', 2, 'https://www.gutenberg.org/ebooks/51607', 'en', 13292), +(34999, 'The Romance of a Poor Young Man\nA Drama Adapted from the French of Octave Feuillet', 'Feuillet, Octave', '2011-02-21', 27, 'https://www.gutenberg.org/ebooks/35342', 'en', 402), +(35000, 'The Caxtons: A Family Picture — Volume 12', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 7, 'https://www.gutenberg.org/ebooks/7597', 'en', 376), +(35001, 'Records of Steam Boiler Explosions', 'Marten, Edward Bindon', '2014-12-23', 16, 'https://www.gutenberg.org/ebooks/47762', 'en', 13293), +(35002, 'Scientific American, Volume 40, No. 13, March 29, 1879\nA Weekly Journal of Practical Information, Art, Science,\nMechanics, Chemistry, and Manufactures', 'Various', '2006-07-18', 24, 'https://www.gutenberg.org/ebooks/18866', 'en', 352), +(35003, 'A Situação Política\r\nConferência realizada no Salão Nobre da Liga Naval Portuguesa, na noite de 26 Fevereiro de 1918', 'Pimenta, Alfredo', '2010-11-12', 19, 'https://www.gutenberg.org/ebooks/34290', 'pt', 13294), +(35004, 'Letters from America', 'Brooke, Rupert', '2004-09-01', 33, 'https://www.gutenberg.org/ebooks/6445', 'en', 1110), +(35005, 'Aucassin and Nicolette\ntranslated from the Old French', NULL, '2007-10-28', 25, 'https://www.gutenberg.org/ebooks/23227', 'en', 58), +(35006, 'The House of Walderne\nA Tale of the Cloister and the Forest in the Days of the Barons\' Wars', 'Crake, A. D. (Augustine David)', '2005-11-05', 10, 'https://www.gutenberg.org/ebooks/17012', 'en', 98), +(35007, 'The Rise of Roscoe Paine', 'Lincoln, Joseph Crosby', '2006-06-03', 32, 'https://www.gutenberg.org/ebooks/3137', 'en', 6349), +(35008, 'Bancroft\'s Tourist\'s Guide. Yosemite. San Francisco and around the Bay, (South.)', NULL, '2013-02-26', 15, 'https://www.gutenberg.org/ebooks/42210', 'en', 13295), +(35009, 'Poems', 'Rossetti, Christina Georgina', '2006-09-05', 119, 'https://www.gutenberg.org/ebooks/19188', 'en', 54), +(35010, 'Port O\' Gold\r\nA History-Romance of the San Francisco Argonauts', 'Stellman, Louis J. (Louis John)', '2004-06-01', 27, 'https://www.gutenberg.org/ebooks/12560', 'en', 98), +(35011, 'Cornwall\'s Wonderland', 'Quiller-Couch, Mabel', '2008-10-03', 26, 'https://www.gutenberg.org/ebooks/26755', 'en', 1565), +(35012, 'New Paths through Old Palestine', 'Slattery, Margaret', '2019-08-20', 130, 'https://www.gutenberg.org/ebooks/60140', 'en', NULL), +(35013, 'Steam Turbines\r\nA Book of Instruction for the Adjustment and Operation of the Principal Types of this Class of Prime Movers', 'Collins, Hubert E. (Hubert Edwin)', '2009-01-02', 54, 'https://www.gutenberg.org/ebooks/27687', 'en', 13296), +(35014, 'Red Spider, Volume 2 (of 2)', 'Baring-Gould, S. (Sabine)', '2017-03-16', 10, 'https://www.gutenberg.org/ebooks/54375', 'en', 137), +(35015, 'A Guide to Men: Being Encore Reflections of a Bachelor Girl', 'Rowland, Helen', '2009-12-08', 32, 'https://www.gutenberg.org/ebooks/30630', 'en', 2642), +(35016, 'The Rhesus of Euripides', 'Euripides', '2011-02-04', 35, 'https://www.gutenberg.org/ebooks/35170', 'en', 13297), +(35017, 'The Mentor: American Naturalists, Vol. 7, Num. 9, Serial No. 181, June 15, 1919', 'Ingersoll, Ernest', '2014-08-02', 21, 'https://www.gutenberg.org/ebooks/46482', 'en', 6476), +(35018, 'The Business, As Usual', 'Sharkey, Jack', '2016-03-13', 25, 'https://www.gutenberg.org/ebooks/51435', 'en', 26), +(35019, '\"Run To Seed\"\r\n1891', 'Page, Thomas Nelson', '2007-10-12', 16, 'https://www.gutenberg.org/ebooks/23015', 'en', 1426), +(35020, 'Bohemian Society', 'Leavitt, Lydia', '2005-12-04', 8, 'https://www.gutenberg.org/ebooks/17220', 'en', 13298), +(35021, 'Satu Sallisesta; Uni', 'Lagervall, Jacob Fredrik', '2014-12-06', 13, 'https://www.gutenberg.org/ebooks/47550', 'fi', 1171), +(35022, 'Seventy-Five Receipts for Pastry, Cakes and Sweetmeats, by Miss Leslie', 'Leslie, Eliza', '2004-10-01', 74, 'https://www.gutenberg.org/ebooks/6677', 'en', 103), +(35023, 'Les hommes de la guerre d\'Orient 11: Le prince du Montenegro', 'Texier, Edmond', '2004-06-28', 7, 'https://www.gutenberg.org/ebooks/12752', 'fr', 13299), +(35024, 'The American Missionary — Volume 35, No. 1, January, 1881', 'Various', '2017-07-12', 2, 'https://www.gutenberg.org/ebooks/55095', 'en', 395), +(35025, 'Le viandier de Taillevent', 'Taillevent', '2008-09-09', 85, 'https://www.gutenberg.org/ebooks/26567', 'fr', 8184), +(35026, 'Ballads of Peace in War', 'Earls, Michael', '2002-07-01', 17, 'https://www.gutenberg.org/ebooks/3305', 'en', 178), +(35027, 'Jeppe on the Hill; Or, The Transformed Peasant: A Comedy in Five Acts', 'Holberg, Ludvig', '2013-02-05', 22, 'https://www.gutenberg.org/ebooks/42022', 'en', 627), +(35028, 'Under the Rebel\'s Reign', 'Neufeld, Charles', '2007-12-12', 18, 'https://www.gutenberg.org/ebooks/23829', 'en', 11161), +(35029, 'Chez les passants: fantaisies, pamphlets et souvenirs. Suivi de pages inédites', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2015-03-18', 10, 'https://www.gutenberg.org/ebooks/48518', 'fr', 20), +(35030, 'The Making of Mona', 'Quiller-Couch, Mabel', '2009-11-04', 19, 'https://www.gutenberg.org/ebooks/30402', 'en', 658), +(35031, 'Ballads of Lost Haven: A Book of the Sea', 'Carman, Bliss', '2006-04-27', 5, 'https://www.gutenberg.org/ebooks/18268', 'en', 1118), +(35032, 'Dorothy Dale and Her Chums', 'Penrose, Margaret', '2017-02-10', 5, 'https://www.gutenberg.org/ebooks/54147', 'en', 4357), +(35033, 'The Bay State Monthly — Volume 1, No. 4, April, 1884', 'Various', '2004-10-10', 17, 'https://www.gutenberg.org/ebooks/13680', 'en', 1593), +(35034, 'A Voyage to the Moon\r\nWith Some Account of the Manners and Customs, Science and Philosophy, of the People of Morosofia, and Other Lunarians', 'Tucker, George', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/10005', 'en', 26), +(35035, '今古奇觀', 'Baowenglaoren', '2008-01-10', 88, 'https://www.gutenberg.org/ebooks/24230', 'zh', 5698), +(35036, 'Native Life in South Africa\r\nBefore and Since the European War and the Boer Rebellion', 'Plaatje, Sol. T. (Solomon Tshekisho)', '1998-09-01', 116, 'https://www.gutenberg.org/ebooks/1452', 'en', 13300), +(35037, 'Hints on the Use and Handling of Firearms Generally, and the Revolver in Particular', 'Curling, H. Onslow', '2010-07-29', 36, 'https://www.gutenberg.org/ebooks/33287', 'en', 13301), +(35038, 'Expositor\'s Bible: The Epistles of St. John', 'Alexander, William', '2012-09-16', 24, 'https://www.gutenberg.org/ebooks/40775', 'en', 13302), +(35039, 'With the Children on Sundays\r\nThrough Eye-Gate and Ear-Gate into the City of Child-Soul', 'Stall, Sylvanus', '2010-05-12', 45, 'https://www.gutenberg.org/ebooks/32355', 'en', 1302), +(35040, 'Margaret Sanger: an autobiography.', 'Sanger, Margaret', '2018-02-20', 36, 'https://www.gutenberg.org/ebooks/56610', 'en', 13303), +(35041, 'Sugar and Spice: Comical Tales Comically Dressed', 'Johnson, James', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/10839', 'en', 1817), +(35042, 'Lady Barbarina, The Siege of London, An International Episode, and Other Tales', 'James, Henry', '2011-10-04', 48, 'https://www.gutenberg.org/ebooks/37627', 'en', 5996), +(35043, 'A Rebellion in Dixie', 'Castlemon, Harry', '2016-10-25', 25, 'https://www.gutenberg.org/ebooks/53362', 'en', 13304), +(35044, 'Livre de Ruth', 'Unknown', '2007-02-03', 9, 'https://www.gutenberg.org/ebooks/20690', 'fr', 4924), +(35045, 'Jarwin and Cuffy', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 32, 'https://www.gutenberg.org/ebooks/21742', 'en', 3972), +(35046, 'Some Salient Points in the Science of the Earth', 'Dawson, John William, Sir', '2019-06-02', 52, 'https://www.gutenberg.org/ebooks/59658', 'en', 2535), +(35047, 'A History of the McGuffey Readers', 'Vail, Henry Hobart', '2005-04-07', 35, 'https://www.gutenberg.org/ebooks/15577', 'en', 13305), +(35048, 'Anie\nIllustrated version', 'Malot, Hector', '2014-03-25', 27, 'https://www.gutenberg.org/ebooks/45207', 'fr', 298), +(35049, 'Diary of Samuel Pepys — Volume 04: March/April 1659-1660', 'Pepys, Samuel', '2004-11-29', 11, 'https://www.gutenberg.org/ebooks/4120', 'en', 478), +(35050, 'Tales of Wonder', 'Dunsany, Lord', '2004-10-21', 123, 'https://www.gutenberg.org/ebooks/13821', 'en', 2634), +(35051, 'Captain Sword and Captain Pen: A Poem', 'Hunt, Leigh', '2009-03-06', 17, 'https://www.gutenberg.org/ebooks/28260', 'en', 13306), +(35052, 'The Indulgence of Negu Mah', 'Arthur, Robert', '2007-12-03', 28, 'https://www.gutenberg.org/ebooks/23688', 'en', 179), +(35053, 'The Great Conspiracy, Volume 6', 'Logan, John Alexander', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/7138', 'en', 2268), +(35054, 'The Gaming Table: Its Votaries and Victims. Volume 2 (of 2)', 'Steinmetz, Andrew', '1996-05-01', 101, 'https://www.gutenberg.org/ebooks/531', 'en', 2473), +(35055, 'Moon Lore', 'Harley, Timothy', '2008-11-10', 23, 'https://www.gutenberg.org/ebooks/27228', 'en', 13307), +(35056, 'Sylvia Arden Decides', 'Chalmers, Margaret Piper', '2015-02-28', 8, 'https://www.gutenberg.org/ebooks/48385', 'en', 13308), +(35057, 'The Báb: The Herald of the Day of Days', 'Balyuzi, H. M.', '2015-06-22', 80, 'https://www.gutenberg.org/ebooks/49257', 'en', 4457), +(35058, 'Essays of Michel de Montaigne — Volume 18', 'Montaigne, Michel de', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/3598', 'en', 1964), +(35059, 'Gargantua and Pantagruel, Illustrated, Book 5', 'Rabelais, François', '2004-08-08', 30, 'https://www.gutenberg.org/ebooks/8170', 'en', 10910), +(35060, 'American Historical and Literary Curiosities, Part 04', 'Smith, J. Jay (John Jay)', '2004-07-15', 9, 'https://www.gutenberg.org/ebooks/7904', 'en', 453), +(35061, 'The War in the East: Japan, China, and Corea', 'White, Trumbull', '2017-09-23', 32, 'https://www.gutenberg.org/ebooks/55608', 'en', 13309), +(35062, 'The Yukon Trail: A Tale of the North', 'Raine, William MacLeod', '2006-10-11', 41, 'https://www.gutenberg.org/ebooks/19527', 'en', 315), +(35063, 'City Ballads', 'Carleton, Will', '2011-08-03', 6, 'https://www.gutenberg.org/ebooks/36954', 'en', 13310), +(35064, 'Salvation Syrup; Or, Light On Darkest England', 'Foote, G. W. (George William)', '2012-03-12', 33, 'https://www.gutenberg.org/ebooks/39120', 'en', 13311), +(35065, 'Short Stories of Various Types', NULL, '2007-03-15', 137, 'https://www.gutenberg.org/ebooks/20831', 'en', 179), +(35066, 'The Aeroplane Boys on the Wing\r\nOr, Aeroplane Chums in the Tropics', 'Langworthy, John Luther', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10698', 'en', 2279), +(35067, 'L\'Illustration, No. 3658, 5 Avril 1913', 'Various', '2011-10-30', 2, 'https://www.gutenberg.org/ebooks/37886', 'fr', 150), +(35068, 'Rosemary and Rue, by Amber', 'Holden, Martha Everts', '2011-05-19', 38, 'https://www.gutenberg.org/ebooks/36168', 'en', 4637), +(35069, 'Impressions of America', 'Wilde, Oscar', '2013-01-09', 51, 'https://www.gutenberg.org/ebooks/41806', 'en', 1110), +(35070, 'Frank Reynolds, R.I.', 'Johnson, A. E. (Alfred Edwin)', '2004-12-02', 14, 'https://www.gutenberg.org/ebooks/14238', 'en', 13312), +(35071, 'Musical Instruments, Historic, Rare and Unique', 'Hipkins, Alfred J. (Alfred James)', '2018-10-17', 10, 'https://www.gutenberg.org/ebooks/58117', 'en', 13313), +(35072, 'The Englishman in China During the Victorian Era, Vol. 2 (of 2)\r\nAs Illustrated in the Career of Sir Rutherford Alcock, K.C.B., D.C.L., Many Years Consul and Minister in China and Japan', 'Michie, Alexander', '2013-12-31', 95, 'https://www.gutenberg.org/ebooks/44548', 'en', 13314), +(35073, 'Seeking Fortune in America', 'Grey, F. W. (Frederick William)', '2018-09-24', 11, 'https://www.gutenberg.org/ebooks/57963', 'en', 2655), +(35074, 'Los ingenios:\r\ncolección de vistas de los principles ingenios de azúcar de la isla de Cuba', 'Cantero, J. G. (Justo Germán)', '2012-03-30', 24, 'https://www.gutenberg.org/ebooks/39312', 'es', 13315), +(35075, 'Histoire des Musulmans d\'Espagne, t. 3/4\r\njusqu\'à la conquête de l\'Andalouisie par les Almoravides (711-1100)', 'Dozy, Reinhart Pieter Anne', '2012-10-28', 21, 'https://www.gutenberg.org/ebooks/41208', 'fr', 13316), +(35076, 'The Poetical Works of John Dryden, Volume 2\r\nWith Life, Critical Dissertation, and Explanatory Notes', 'Dryden, John', '2004-03-01', 26, 'https://www.gutenberg.org/ebooks/11578', 'en', 54), +(35077, 'A Voyage in the \'Sunbeam\', Our Home on the Ocean for Eleven Months', 'Brassey, Annie', '2005-01-31', 49, 'https://www.gutenberg.org/ebooks/14836', 'en', 13317), +(35078, 'Emma Goldman: Biographical Sketch', 'Madison, Charles Allan', '2010-09-04', 16, 'https://www.gutenberg.org/ebooks/33628', 'en', 13318), +(35079, 'Virginia Architecture in the Seventeenth Century', 'Forman, Henry Chandlee', '2011-09-01', 47, 'https://www.gutenberg.org/ebooks/37288', 'en', 13319), +(35080, 'Through One Administration', 'Burnett, Frances Hodgson', '2018-11-22', 36, 'https://www.gutenberg.org/ebooks/58325', 'en', 1426), +(35081, 'The Co-Citizens', 'Harris, Corra', '2010-01-08', 9, 'https://www.gutenberg.org/ebooks/30891', 'en', 262), +(35082, 'Looking Forward: A Dream of the United States of the Americas in 1999', 'Bird, Arthur', '2015-10-06', 15, 'https://www.gutenberg.org/ebooks/50148', 'en', 5391), +(35083, 'John Brown: A Retrospect\nRead before The Worcester Society of Antiquity, Dec. 2, 1884.', 'Roe, Alfred S. (Alfred Seelye)', '2009-02-12', 12, 'https://www.gutenberg.org/ebooks/28052', 'en', 4763), +(35084, 'The Olive Fairy Book', NULL, '2009-01-18', 149, 'https://www.gutenberg.org/ebooks/27826', 'en', 1007), +(35085, 'Harper\'s Young People, October 12, 1880\nAn Illustrated Weekly', 'Various', '2009-06-20', 9, 'https://www.gutenberg.org/ebooks/29180', 'en', 479), +(35086, 'The Robber, A Tale.', 'James, G. P. R. (George Payne Rainsford)', '2015-09-02', 12, 'https://www.gutenberg.org/ebooks/49859', 'en', 13320), +(35087, 'Blue Aloes: Stories of South Africa', 'Stockley, Cynthia', '2007-09-10', 12, 'https://www.gutenberg.org/ebooks/22568', 'en', 13321), +(35088, 'Leonore Stubbs', 'Walford, Lucy Bethia', '2010-04-10', 16, 'https://www.gutenberg.org/ebooks/31943', 'en', 500), +(35089, 'Le crime et la débauche à Paris; Le divorce', 'Desmaze, Charles', '2016-01-20', 16, 'https://www.gutenberg.org/ebooks/50974', 'fr', 7821), +(35090, 'Poems by Emily Dickinson, Series One', 'Dickinson, Emily', '2001-06-01', 153, 'https://www.gutenberg.org/ebooks/2678', 'en', 178), +(35091, 'The Touchstone', 'Wharton, Edith', '2005-11-01', 0, 'https://www.gutenberg.org/ebooks/9290', 'en', 13322), +(35092, 'Lucasta', 'Lovelace, Richard', '1996-10-01', 41, 'https://www.gutenberg.org/ebooks/703', 'en', 466), +(35093, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 683\r\nJanuary 27, 1877', 'Various', '2014-09-08', 13, 'https://www.gutenberg.org/ebooks/46811', 'en', 18), +(35094, 'Bell\'s Cathedrals: The Cathedral Church of Norwich\nA Description of Its Fabric and A Brief History of the Episcopal See', 'Quennell, C. H. B. (Charles Henry Bourne)', '2006-11-05', 25, 'https://www.gutenberg.org/ebooks/19715', 'en', 13323), +(35095, 'Luther, vol. 2 of 6', 'Grisar, Hartmann', '2015-05-28', 13, 'https://www.gutenberg.org/ebooks/49065', 'en', 1073), +(35096, 'The Bible, Douay-Rheims, Book 42: Aggeus\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8342', 'en', 4814), +(35097, 'The League of the Scarlet Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2004-06-01', 120, 'https://www.gutenberg.org/ebooks/5805', 'en', 248), +(35098, 'The American Indian in the United States, Period 1850-1914\r\n... The Present Condition of the American Indian; His Political History and Other Topics; A Plea for Justice', 'Moorehead, Warren King', '2018-08-16', 38, 'https://www.gutenberg.org/ebooks/57709', 'en', 13324), +(35099, 'Beacon Lights of History, Volume 3 part 2: Renaissance and Reformation', 'Lord, John', '1998-10-01', 18, 'https://www.gutenberg.org/ebooks/1499', 'en', 7868), +(35100, 'The Three Perils of Man; or, War, Women, and Witchcraft, Vol. 1 (of 3)', 'Hogg, James', '2012-05-23', 57, 'https://www.gutenberg.org/ebooks/39776', 'en', 98), +(35101, '春秋配', 'Unknown', '2008-05-05', 28, 'https://www.gutenberg.org/ebooks/25329', 'zh', 1003), +(35102, 'State of the Union Addresses', 'Truman, Harry S.', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/5039', 'en', 1276), +(35103, 'The House of Sleep', 'Bartlett, Elizabeth', '2019-01-20', 11, 'https://www.gutenberg.org/ebooks/58741', 'en', 994), +(35104, 'The Old Goat', 'Fontenay, Charles L.', '2019-06-07', 123, 'https://www.gutenberg.org/ebooks/59693', 'en', 1280), +(35105, 'A Discourse of Life and Death, by Mornay; and Antonius by Garnier', 'Mornay, Philippe de, seigneur du Plessis-Marly', '2007-06-10', 20, 'https://www.gutenberg.org/ebooks/21789', 'en', 11512), +(35106, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nKentucky Narratives', 'United States. Work Projects Administration', '2004-04-01', 42, 'https://www.gutenberg.org/ebooks/11920', 'en', 13325), +(35107, 'The Manufacture of Paper\r\nWith Illustrations, and a Bibliography of Works Relating to Cellulose and Paper-Making', 'Sindall, R. W. (Robert Walter)', '2014-07-30', 14, 'https://www.gutenberg.org/ebooks/46449', 'en', 1030), +(35108, 'The Industrial History of England', 'Gibbins, Henry de Beltgens', '2017-10-31', 16, 'https://www.gutenberg.org/ebooks/55862', 'en', 13326), +(35109, 'The Passenger from Calais', 'Griffiths, Arthur', '2005-07-21', 107, 'https://www.gutenberg.org/ebooks/16339', 'en', 128), +(35110, 'Betty Gordon at Bramble Farm; Or, The Mystery of a Nobody', 'Emerson, Alice B.', '2013-10-08', 25, 'https://www.gutenberg.org/ebooks/43907', 'en', 12232), +(35111, 'A Handbook of the English Language', 'Latham, R. G. (Robert Gordon)', '2009-03-29', 72, 'https://www.gutenberg.org/ebooks/28436', 'en', 1979), +(35112, 'A Kut Prisoner', 'Bishop, Harry Coghill Watson', '2010-10-14', 37, 'https://www.gutenberg.org/ebooks/34069', 'en', 3601), +(35113, 'The Forfeit', 'Cullum, Ridgwell', '2006-09-25', 9, 'https://www.gutenberg.org/ebooks/19371', 'en', 654), +(35114, 'Quiet Talks with World Winners', 'Gordon, S. D. (Samuel Dickey)', '2004-07-01', 4, 'https://www.gutenberg.org/ebooks/12799', 'en', 1130), +(35115, 'The Radio Boys\' Search for the Inca\'s Treasure', 'Breckenridge, Gerald', '2011-04-28', 19, 'https://www.gutenberg.org/ebooks/35987', 'en', 153), +(35116, 'The Epistle to the Hebrews', 'Anonymous', '2007-10-01', 5, 'https://www.gutenberg.org/ebooks/22930', 'en', 11154), +(35117, 'Eventful Narratives\r\nThe Thirteenth Book of the Faith Promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints', 'Huntington, Oliver Boardman', '2015-07-09', 15, 'https://www.gutenberg.org/ebooks/49401', 'en', 13327), +(35118, 'The Three Cities Trilogy: Rome, Complete', 'Zola, Émile', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8726', 'en', 55), +(35119, 'The Country of the Pointed Firs', 'Jewett, Sarah Orne', '2008-07-11', 242, 'https://www.gutenberg.org/ebooks/367', 'en', 1541), +(35120, 'The Abiding Presence of the Holy Ghost in the Soul', 'Jarrett, Bede', '2011-01-05', 33, 'https://www.gutenberg.org/ebooks/34855', 'en', 13328), +(35121, 'Why Marry?', 'Williams, Jesse Lynch', '2011-02-24', 48, 'https://www.gutenberg.org/ebooks/35389', 'en', 537), +(35122, 'The Tenant of Wildfell Hall', 'Brontë, Anne', '1997-07-01', 636, 'https://www.gutenberg.org/ebooks/969', 'en', 45), +(35123, 'Letters of Marcus Tullius Cicero', 'Cicero, Marcus Tullius', '2001-09-01', 117, 'https://www.gutenberg.org/ebooks/2812', 'en', 4885), +(35124, 'Entretien d\'un père avec ses enfants', 'Diderot, Denis', '2009-04-25', 39, 'https://www.gutenberg.org/ebooks/28604', 'fr', 100), +(35125, 'The Age of Elizabeth (1547-1603)', NULL, '2015-08-06', 20, 'https://www.gutenberg.org/ebooks/49633', 'en', 10856), +(35126, 'Critical Miscellanies (Vol 2 of 3), Essay 1: Vauvenargues', 'Morley, John', '2005-10-25', 32, 'https://www.gutenberg.org/ebooks/16937', 'en', 13329), +(35127, 'The Apple\r\nThe Kansas Apple, the Big Red Apple; the Luscious, Red-Cheeked First Love of the Farmer\'s Boy; the Healthful, Hearty Heart of the Darling Dumpling. What It Is; How to Grow It; Its Commercial and Economic Importance; How to Utilize It.', NULL, '2010-03-22', 23, 'https://www.gutenberg.org/ebooks/31729', 'en', 3329), +(35128, 'The Three Cities Trilogy: Lourdes, Volume 4', 'Zola, Émile', '2005-07-01', 6, 'https://www.gutenberg.org/ebooks/8514', 'en', 55), +(35129, 'Correggio\r\nA Collection of Fifteen Pictures and a Portrait of the Painter with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2006-08-29', 31, 'https://www.gutenberg.org/ebooks/19143', 'en', 13330), +(35130, 'Samantha at the World\'s Fair', 'Holley, Marietta', '2006-04-01', 27, 'https://www.gutenberg.org/ebooks/18091', 'en', 13331), +(35131, 'The Moonstone', 'Collins, Wilkie', '2006-01-12', 967, 'https://www.gutenberg.org/ebooks/155', 'en', 13332), +(35132, 'Descripción Geografica, Histórica y Estadística de Bolivia, Tomo 1.', 'Orbigny, Alcide Dessalines d\'', '2004-09-16', 23, 'https://www.gutenberg.org/ebooks/13479', 'es', 13333), +(35133, 'Histoire de la Monarchie de Juillet (Volume 5 / 7)', 'Thureau-Dangin, Paul', '2013-07-26', 8, 'https://www.gutenberg.org/ebooks/43309', 'fr', 8446), +(35134, 'Ubirajara: Lenda Tupi', 'Alencar, José Martiniano de', '2012-01-05', 36, 'https://www.gutenberg.org/ebooks/38496', 'pt', 61), +(35135, 'Descriptive Analyses of Piano Works\nFor the Use of Teachers, Players, and Music Clubs', 'Perry, Edward Baxter', '2014-02-14', 31, 'https://www.gutenberg.org/ebooks/44910', 'en', 13334), +(35136, 'Red Paint at Oxford: Sketches', 'Pish', '2016-08-22', 7, 'https://www.gutenberg.org/ebooks/52875', 'en', 10892), +(35137, 'The Incendiary: A Story of Mystery', 'Leahy, William Augustine', '2012-04-27', 22, 'https://www.gutenberg.org/ebooks/39544', 'en', 1380), +(35138, 'Ballads of Romance and Chivalry\nPopular Ballads of the Olden Times - First Series', 'Sidgwick, Frank', '2007-01-28', 17, 'https://www.gutenberg.org/ebooks/20469', 'en', 921), +(35139, 'By Earthlight', 'Walton, Bryce', '2010-10-06', 40, 'https://www.gutenberg.org/ebooks/33842', 'en', 26), +(35140, 'Index of the Project Gutenberg Works of Leonid Andreyev', 'Andreyev, Leonid', '2018-12-30', 14, 'https://www.gutenberg.org/ebooks/58573', 'en', 198), +(35141, 'The Christmas Story from David Harum', 'Westcott, Edward Noyes', '2008-06-29', 9, 'https://www.gutenberg.org/ebooks/25927', 'en', 585), +(35142, 'The Man: A Story of To-day', 'Hubbard, Elbert', '2016-05-11', 3, 'https://www.gutenberg.org/ebooks/52049', 'en', 61), +(35143, 'A Day with Lord Byron', 'Byron, May', '2010-06-27', 22, 'https://www.gutenberg.org/ebooks/32990', 'en', 2265), +(35144, 'Wartalun: Der Niedergang eines Geschlechts', 'Bonsels, Waldemar', '2012-01-23', 22, 'https://www.gutenberg.org/ebooks/38650', 'de', 549), +(35145, 'Brownies and Bogles', 'Guiney, Louise Imogen', '2012-05-24', 38, 'https://www.gutenberg.org/ebooks/39782', 'en', 2257), +(35146, 'A Prince of Anahuac: A Histori-traditional Story Antedating the Aztec Empire', 'Porter, James A.', '2012-12-24', 20, 'https://www.gutenberg.org/ebooks/41698', 'en', 13335), +(35147, 'King Midas: a Romance', 'Sinclair, Upton', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/4923', 'en', 61), +(35148, 'The Sword of Welleran and Other Stories', 'Dunsany, Lord', '2004-01-01', 151, 'https://www.gutenberg.org/ebooks/10806', 'en', 2634), +(35149, 'Queens of the French Stage', 'Williams, H. Noel (Hugh Noel)', '2011-10-04', 11, 'https://www.gutenberg.org/ebooks/37618', 'en', 11867), +(35150, 'Racconti e bozzetti', 'Castelnuovo, Enrico', '2019-06-03', 15, 'https://www.gutenberg.org/ebooks/59667', 'it', 474), +(35151, 'Novena nga Pagdaydayao Quen Aputayo á Jesus Nazareno', NULL, '2005-04-05', 11, 'https://www.gutenberg.org/ebooks/15548', 'ilo', 13336), +(35152, 'Wyeth\'s Oregon, or a Short History of a Long Journey, 1832; and Townsend\'s Narrative of a Journey across the Rocky Mountains, 1834', 'Townsend, John Kirk', '2014-03-28', 20, 'https://www.gutenberg.org/ebooks/45238', 'en', 13337), +(35153, 'With Mask and Mitt', 'Dudley, Albertus T. (Albertus True)', '2017-11-07', 4, 'https://www.gutenberg.org/ebooks/55896', 'en', 13338), +(35154, 'Notes and Queries, Number 243, June 24, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-27', 16, 'https://www.gutenberg.org/ebooks/42821', 'en', 105), +(35155, 'An Essay on the Beautiful, from the Greek of Plotinus', 'Plotinus', '2009-07-25', 35, 'https://www.gutenberg.org/ebooks/29510', 'en', 322), +(35156, 'The Last Days of Mary Stuart, and the journal of Bourgoyne her physician', 'Cowan, Samuel', '2017-06-20', 14, 'https://www.gutenberg.org/ebooks/54944', 'en', 13339), +(35157, 'Penthesilea', 'Kleist, Heinrich von', '2004-10-01', 69, 'https://www.gutenberg.org/ebooks/6648', 'de', 4063), +(35158, 'Pennsylvania Dutch Cooking', 'Unknown', '2008-09-08', 165, 'https://www.gutenberg.org/ebooks/26558', 'en', 13340), +(35159, 'Little Pills, an Army Story\r\nBeing Some Experiences of a United States Army Medical Officer on the Frontier Nearly a Half Century Ago', 'McKay, R. H. (Robert Henderson)', '2011-04-26', 11, 'https://www.gutenberg.org/ebooks/35973', 'en', 930), +(35160, 'The Modern Scottish Minstrel, Volume 3.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2006-09-26', 28, 'https://www.gutenberg.org/ebooks/19385', 'en', 1588), +(35161, 'The Works of John Greenleaf Whittier, Complete', 'Whittier, John Greenleaf', '2006-01-01', 38, 'https://www.gutenberg.org/ebooks/9600', 'en', 350), +(35162, '朱子治家格言', 'Zhu, Yongchun', '2007-12-11', 9, 'https://www.gutenberg.org/ebooks/23816', 'zh', 1437), +(35163, 'Der Doppelgänger', 'Dostoyevsky, Fyodor', '2015-03-19', 39, 'https://www.gutenberg.org/ebooks/48527', 'de', 13341), +(35164, 'The Universe — or Nothing', 'Moldeven, Meyer', '2006-04-25', 36, 'https://www.gutenberg.org/ebooks/18257', 'en', 26), +(35165, 'The Blue Lagoon: A Romance', 'Stacpoole, H. De Vere (Henry De Vere)', '1996-01-01', 219, 'https://www.gutenberg.org/ebooks/393', 'en', 4444), +(35166, 'La vita operosa: Nuovi racconti d\'avventure', 'Bontempelli, Massimo', '2017-02-17', 19, 'https://www.gutenberg.org/ebooks/54178', 'it', 892), +(35167, 'The Baron\'s Yule Feast: A Christmas Rhyme', 'Cooper, Thomas', '2009-08-18', 30, 'https://www.gutenberg.org/ebooks/29722', 'en', 381), +(35168, 'Zibeline — Complete', 'Massa, Philippe, marquis de', '2004-10-30', 22, 'https://www.gutenberg.org/ebooks/3934', 'en', 13342), +(35169, 'Die Akkumulatoren: ihre Theorie, Herstellung, Behandlung und Verwendung.', 'Bermbach, Willibald', '2016-04-02', 21, 'https://www.gutenberg.org/ebooks/51638', 'de', 1778), +(35170, 'Cross Purposes and The Shadows', 'MacDonald, George', '2006-07-18', 41, 'https://www.gutenberg.org/ebooks/18859', 'en', 651), +(35171, 'The Red Room', 'Wells, H. G. (Herbert George)', '2007-10-27', 226, 'https://www.gutenberg.org/ebooks/23218', 'en', 179), +(35172, 'Nine Short Essays', 'Warner, Charles Dudley', '2004-12-05', 13, 'https://www.gutenberg.org/ebooks/3108', 'en', 20), +(35173, 'Her Husband\'s Purse', 'Martin, Helen Reimensnyder', '2017-08-08', 3, 'https://www.gutenberg.org/ebooks/55298', 'en', 1463), +(35174, 'Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad.\nThe East River Division. Paper No. 1152', 'Noble, Alfred', '2006-03-28', 8, 'https://www.gutenberg.org/ebooks/18065', 'en', 4530), +(35175, 'Satires of Circumstance etc.', 'Hardy, Thomas', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9432', 'en', 54), +(35176, 'Grace Harlowe\'s Junior Year at High School\nOr, Fast Friends in the Sororities', 'Chase, Josephine', '2006-02-20', 40, 'https://www.gutenberg.org/ebooks/17811', 'en', 1669), +(35177, 'Der Weltkrieg, I. Band\r\nDie Vorgeschichte des Weltkrieges', 'Helfferich, Karl', '2015-04-15', 17, 'https://www.gutenberg.org/ebooks/48715', 'de', 932), +(35178, 'Joseph Pennell\'s Pictures in the Land of Temples\r\nReproductions of a Series of Lithographs Made by Him in the Land of Temples, March-June 1913, Together with Impressions and Notes by the Artist.', 'Pennell, Joseph', '2012-08-25', 13, 'https://www.gutenberg.org/ebooks/40578', 'en', 13343), +(35179, 'Graham\'s Magazine, Vol. XXXIV, No. 3, March 1849', 'Various', '2017-01-13', 15, 'https://www.gutenberg.org/ebooks/53953', 'en', 162), +(35180, 'Narrative of the Circumnavigation of the Globe by the Austrian Frigate Novara, Volume II\r\n(Commodore B. Von Wullerstorf-Urbair,) Undertaken by Order of the Imperial Government in the Years 1857, 1858, & 1859, Under the Immediate Auspices of His I. and R. Highness the Archduke Ferdinand Maximilian, Commander-In-Chief of the\r\nAustrian Navy.', 'Scherzer, Karl, Ritter von', '2012-01-01', 19, 'https://www.gutenberg.org/ebooks/38462', 'en', 2361), +(35181, 'The Rights of Labor', 'Taft, William H. (William Howard)', '2003-11-01', 5, 'https://www.gutenberg.org/ebooks/10208', 'en', 617), +(35182, 'La araña negra, t. 8/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 19, 'https://www.gutenberg.org/ebooks/45836', 'es', 1353), +(35183, 'The Joyful Wisdom (\"La Gaya Scienza\")', 'Nietzsche, Friedrich Wilhelm', '2016-08-23', 62, 'https://www.gutenberg.org/ebooks/52881', 'en', 779), +(35184, 'Rural Wealth and Welfare: Economic Principles Illustrated and Applied in Farm Life', 'Fairchild, Geo. T. (George Thompson)', '2010-04-28', 10, 'https://www.gutenberg.org/ebooks/32158', 'en', 13344), +(35185, 'Devils Tower National Monument, Wyoming (1984)', 'United States. National Park Service', '2019-01-01', 19, 'https://www.gutenberg.org/ebooks/58587', 'en', 13345), +(35186, 'El prisionero de Zenda', 'Hope, Anthony', '2008-03-11', 82, 'https://www.gutenberg.org/ebooks/24801', 'es', 323), +(35187, 'Puss in Boots, Jr., and the Good Gray Horse', 'Cory, David', '2010-06-24', 19, 'https://www.gutenberg.org/ebooks/32964', 'en', 1430), +(35188, 'A History of Roman Classical Literature.', 'Browne, R. W. (Robert William)', '2019-05-07', 29, 'https://www.gutenberg.org/ebooks/59455', 'en', 4983), +(35189, 'Flowers of Mountain and Plain\nThird Edition', 'Clements, Edith S. (Edith Schwartz)', '2014-11-13', 27, 'https://www.gutenberg.org/ebooks/47339', 'en', 13346), +(35190, 'Mining Laws of Ohio, 1921', NULL, '2006-01-03', 12, 'https://www.gutenberg.org/ebooks/17449', 'en', 13347), +(35191, 'Pilgrimage from the Alps to the Tiber\nOr The Influence of Romanism on Trade, Justice, and Knowledge', 'Wylie, James Aitken', '2009-03-09', 11, 'https://www.gutenberg.org/ebooks/28294', 'en', 1896), +(35192, 'Tales of Fishes', 'Grey, Zane', '2009-07-07', 64, 'https://www.gutenberg.org/ebooks/29346', 'en', 1945), +(35193, 'Runot; Lyhyet kertomukset', 'Kivi, Aleksis', '2004-07-14', 34, 'https://www.gutenberg.org/ebooks/12907', 'fi', 8), +(35194, 'The History of the Five Indian Nations of Canada\r\nWhich are dependent on the Province of New-York, and are a barrier between the English and the French in that part of the world', 'Colden, Cadwallader', '2011-03-30', 30, 'https://www.gutenberg.org/ebooks/35719', 'en', 320), +(35195, 'La San-Felice, Tome 02', 'Dumas, Alexandre', '2006-05-16', 78, 'https://www.gutenberg.org/ebooks/18401', 'fr', 4110), +(35196, 'Lieder von Lessing', 'Lessing, Gotthold Ephraim', '2004-11-01', 15, 'https://www.gutenberg.org/ebooks/6822', 'de', 1518), +(35197, 'Bad Medicine', 'Sheckley, Robert', '2005-10-01', 16, 'https://www.gutenberg.org/ebooks/9056', 'en', 26), +(35198, 'A Spring Harvest', 'Smith, Geoffrey Bache', '2015-02-26', 3900, 'https://www.gutenberg.org/ebooks/48371', 'en', 1594), +(35199, 'Gunnery in 1858: Being a Treatise on Rifles, Cannon, and Sporting Arms\r\nExplaining the Principles of the Science of Gunnery, and Describing the Newest Improvements in Fire-Arms', 'Greener, William', '2013-09-23', 18, 'https://www.gutenberg.org/ebooks/43799', 'en', 13301), +(35200, 'The Ghost Kings', 'Haggard, H. Rider (Henry Rider)', '2005-05-01', 53, 'https://www.gutenberg.org/ebooks/8184', 'en', 13348), +(35201, 'Handy Mandy in Oz', 'Thompson, Ruth Plumly', '2017-11-29', 41, 'https://www.gutenberg.org/ebooks/56079', 'en', 174), +(35202, 'Eingeschneit: Eine Studentengeschichte', 'Frommel, Emil', '2007-06-24', 30, 'https://www.gutenberg.org/ebooks/21917', 'de', 270), +(35203, 'The Heatherford Fortune\na sequel to the Magic Cameo', 'Sheldon, Georgie, Mrs.', '2011-11-13', 29, 'https://www.gutenberg.org/ebooks/38006', 'en', 61), +(35204, 'The Lost Princess of Oz', 'Baum, L. Frank (Lyman Frank)', '2008-01-30', 115, 'https://www.gutenberg.org/ebooks/24459', 'en', 13349), +(35205, 'The International Monthly, Volume 2, No. 1, December, 1850', 'Various', '2011-10-28', 14, 'https://www.gutenberg.org/ebooks/37872', 'en', 3080), +(35206, 'Harper\'s Round Table, April 28, 1896', 'Various', '2018-03-26', 3, 'https://www.gutenberg.org/ebooks/56845', 'en', 668), +(35207, 'String Quartet No. 01 in F major Opus 18', 'Beethoven, Ludwig van', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/4749', 'en', 909), +(35208, 'Journal 02, 1850-September 15, 1851\r\nThe Writings of Henry David Thoreau, Volume 08 (of 20)', 'Thoreau, Henry David', '2019-03-08', 35, 'https://www.gutenberg.org/ebooks/59031', 'en', 3439), +(35209, 'Nationalismus', 'Tagore, Rabindranath', '2012-10-02', 28, 'https://www.gutenberg.org/ebooks/40920', 'de', 13350), +(35210, 'Kolme tyttöä tuntureilla', 'Zwilgmeyer, Dikken', '2018-10-01', 2, 'https://www.gutenberg.org/ebooks/57997', 'fi', 3831), +(35211, 'A Short View of the Frauds and Abuses Committed by Apothecaries\nAs well in Relation to Patients, as Physicians: And Of the\nonly Remedy thereof by Physicians making their own\nMedicines.', 'Merret, Christopher', '2005-05-27', 22, 'https://www.gutenberg.org/ebooks/15910', 'en', 13351), +(35212, 'Village Folk-Tales of Ceylon, Volume 2 (of 3)', NULL, '2018-06-25', 11, 'https://www.gutenberg.org/ebooks/57399', 'en', 3758), +(35213, 'La Divina Commedia di Dante: Inferno', 'Dante Alighieri', '1997-08-01', 61, 'https://www.gutenberg.org/ebooks/1009', 'it', 1906), +(35214, 'Hopalong Cassidy', 'Mulford, Clarence Edward', '2011-12-06', 62, 'https://www.gutenberg.org/ebooks/38234', 'en', 315), +(35215, 'Minna and Myself', 'Bodenheim, Maxwell', '2019-04-04', 47, 'https://www.gutenberg.org/ebooks/59203', 'en', 427), +(35216, 'Three Boys; Or, The Chiefs of the Clan Mackhai', 'Fenn, George Manville', '2007-05-04', 14, 'https://www.gutenberg.org/ebooks/21319', 'en', 323), +(35217, 'The Case of the Pool of Blood in the Pastor\'s Study', 'Groner, Auguste', '1999-07-01', 26, 'https://www.gutenberg.org/ebooks/1835', 'en', 128), +(35218, 'The Duty of American Women to Their Country', 'Beecher, Catharine Esther', '2016-12-16', 14, 'https://www.gutenberg.org/ebooks/53739', 'en', 8827), +(35219, 'My Three Years in America', 'Bernstorff, Johann Heinrich, Graf von', '2010-01-06', 10, 'https://www.gutenberg.org/ebooks/30865', 'en', 10700), +(35220, 'Report of the Lords Commissioners for Trade and Plantations on the Petition of the Honourable Thomas Walpole, Benjamin Franklin, John Sargent, and Samuel Wharton, Esquires, and their Associates\n1772', 'Great Britain. Board of Trade', '2008-10-12', 9, 'https://www.gutenberg.org/ebooks/26900', 'en', 13352), +(35221, 'Harper\'s Young People, October 5, 1880\nAn Illustrated Weekly', 'Various', '2009-06-20', 8, 'https://www.gutenberg.org/ebooks/29174', 'en', 479), +(35222, 'Vand- og stenhoejsplanter en vejledning for havevenner', NULL, '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9264', 'da', 13353), +(35223, 'The Wings of the Dove, Volume II', 'James, Henry', '2009-09-22', 67, 'https://www.gutenberg.org/ebooks/30059', 'en', 843), +(35224, 'The Freelancer', 'Zacks, Robert', '2016-01-20', 29, 'https://www.gutenberg.org/ebooks/50980', 'en', 26), +(35225, 'David: A Tragedy', 'Rice, Cale Young', '2015-02-03', 7, 'https://www.gutenberg.org/ebooks/48143', 'en', 13354), +(35226, 'My Lady of Doubt', 'Parrish, Randall', '2006-06-20', 21, 'https://www.gutenberg.org/ebooks/18633', 'en', 1293), +(35227, 'How to judge architecture: a popular guide to the appreciation of buildings', 'Sturgis, Russell', '2015-01-10', 23, 'https://www.gutenberg.org/ebooks/47937', 'en', 13355), +(35228, 'Love affairs of the Courts of Europe', 'Hall, Thornton', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12309', 'en', 4552), +(35229, 'Two Timer', 'Brown, Fredric', '2009-09-09', 131, 'https://www.gutenberg.org/ebooks/29948', 'en', 179), +(35230, 'The Man of Galilee', 'Haygood, Atticus G. (Atticus Greene)', '2015-05-31', 11, 'https://www.gutenberg.org/ebooks/49091', 'en', 13356), +(35231, 'La Ronge Journal, 1823', 'Nelson, George', '2013-04-07', 6, 'https://www.gutenberg.org/ebooks/42479', 'en', 13357), +(35232, 'Founding Father', 'Bone, Jesse F. (Jesse Franklin)', '2016-04-24', 44, 'https://www.gutenberg.org/ebooks/51852', 'en', 67), +(35233, 'The Camp Fire Girls in the Mountains; Or, Bessie King\'s Strange Adventure', 'Stewart, Jane L.', '2009-07-27', 24, 'https://www.gutenberg.org/ebooks/29528', 'en', 622), +(35234, 'Notes and Queries, Number 241, June 10, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-27', 17, 'https://www.gutenberg.org/ebooks/42819', 'en', 105), +(35235, 'Stories from The Arabian Nights', 'Housman, Laurence', '2016-03-13', 50, 'https://www.gutenberg.org/ebooks/51432', 'en', 9762), +(35236, 'Our Little Spanish Cousin', 'Nixon-Roulet, Mary F.', '2014-08-03', 24, 'https://www.gutenberg.org/ebooks/46485', 'en', 10087), +(35237, 'Strive and Thrive; or, Stories for the Example and Encouragement of the Young', 'Anonymous', '2011-02-05', 8, 'https://www.gutenberg.org/ebooks/35177', 'en', 1817), +(35238, 'Christmas Eve', 'Browning, Robert', '2004-10-01', 21, 'https://www.gutenberg.org/ebooks/6670', 'en', 381), +(35239, 'The Wizard\'s Son, Vol. 3 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-06', 18, 'https://www.gutenberg.org/ebooks/47557', 'en', 4341), +(35240, 'Rod of the Lone Patrol', 'Cody, H. A. (Hiram Alfred)', '2005-12-05', 7, 'https://www.gutenberg.org/ebooks/17227', 'en', 65), +(35241, 'Elder Conklin', 'Harris, Frank', '2007-10-12', 19, 'https://www.gutenberg.org/ebooks/23012', 'en', 61), +(35242, 'Europe in the Sixteenth Century, 1494-1598, Fifth Edition\r\nPeriod 4 (of 8), Periods of European History', 'Johnson, A. H. (Arthur Henry)', '2013-02-06', 19, 'https://www.gutenberg.org/ebooks/42025', 'en', 4412), +(35243, 'The Second-Story Man', 'Sinclair, Upton', '2002-07-01', 35, 'https://www.gutenberg.org/ebooks/3302', 'en', 427), +(35244, 'Jim Spurling, Fisherman\nor Making Good', 'Tolman, Albert Walter', '2008-09-08', 20, 'https://www.gutenberg.org/ebooks/26560', 'en', 13358), +(35245, 'A Compilation of the Messages and Papers of the Presidents. Volume 6, part 2: Andrew Johnson', NULL, '2004-06-28', 20, 'https://www.gutenberg.org/ebooks/12755', 'en', 13359), +(35246, 'The Gallery of Portraits: with Memoirs. Volume 2 (of 7)', 'Malkin, Arthur Thomas', '2017-07-11', 10, 'https://www.gutenberg.org/ebooks/55092', 'en', 122), +(35247, 'The Exeter Road: the story of the west of England highway', 'Harper, Charles G. (Charles George)', '2017-02-09', 22, 'https://www.gutenberg.org/ebooks/54140', 'en', 776), +(35248, 'Dakilang Asal', 'Tolentino, Aurelio', '2004-10-10', 46, 'https://www.gutenberg.org/ebooks/13687', 'tl', 8063), +(35249, 'Berend Veltink\r\noet \'t Emmer Kerspel op reize noa Grönningen um \'t peerdespul van Carré te zeen en wat hum daorbij overkwam, hen en weerum', 'Boom, Harm', '2011-01-06', 6, 'https://www.gutenberg.org/ebooks/34899', 'nl', 61), +(35250, 'La dame de Monsoreau — Tome 2.', 'Dumas, Alexandre', '2006-01-01', 36, 'https://www.gutenberg.org/ebooks/9638', 'fr', 9760), +(35251, 'The Clean and Wholesome Land', 'Sholto, Ralph', '2009-11-05', 18, 'https://www.gutenberg.org/ebooks/30405', 'en', 26), +(35252, 'Human Animals', 'Hamel, Frank', '2012-09-15', 69, 'https://www.gutenberg.org/ebooks/40772', 'en', 3324), +(35253, 'The Hated Son', 'Balzac, Honoré de', '2004-10-31', 19, 'https://www.gutenberg.org/ebooks/1455', 'en', 13360), +(35254, 'Civil War Experiences\r\nunder Bayard, Gregg, Kilpatrick, Custer, Raulston, and Newberry, 1862, 1863, 1864', 'Meyer, Henry C. (Henry Coddington)', '2010-07-28', 36, 'https://www.gutenberg.org/ebooks/33280', 'en', 444), +(35255, 'De kinderen van Kapitein Grant, tweede deel (van 3)\r\nAustralië', 'Verne, Jules', '2012-02-02', 6, 'https://www.gutenberg.org/ebooks/38668', 'nl', 792), +(35256, 'Grasshopper Green and the Meadow Mice', 'Rae, John', '2008-01-10', 14, 'https://www.gutenberg.org/ebooks/24237', 'en', 13361), +(35257, 'The House on the Borderland', 'Hodgson, William Hope', '2003-11-01', 490, 'https://www.gutenberg.org/ebooks/10002', 'en', 26), +(35258, 'The Art of Theatrical Make-up', 'Morton, Cavendish', '2018-02-21', 12, 'https://www.gutenberg.org/ebooks/56617', 'en', 13362), +(35259, 'Punch - Volume 25 (Jul-Dec 1853)', 'Various', '2010-05-12', 34, 'https://www.gutenberg.org/ebooks/32352', 'en', 134), +(35260, 'Prairie Folks', 'Garland, Hamlin', '2007-02-27', 18, 'https://www.gutenberg.org/ebooks/20697', 'en', 13363), +(35261, 'Nälkä', 'Hamsun, Knut', '2016-10-25', 10, 'https://www.gutenberg.org/ebooks/53365', 'fi', 12091), +(35262, 'Kuusi vuotta Siperiassa', 'Granö, Johannes', '2011-10-04', 5, 'https://www.gutenberg.org/ebooks/37620', 'fi', 4683), +(35263, 'Diary of Samuel Pepys — Volume 10: April/May 1661', 'Pepys, Samuel', '2004-11-29', 12, 'https://www.gutenberg.org/ebooks/4127', 'en', 478), +(35264, 'The Romance of a Poor Young Man', 'Feuillet, Octave', '2014-03-24', 16, 'https://www.gutenberg.org/ebooks/45200', 'en', 6883), +(35265, 'Paradise Garden: The Satirical Narrative of a Great Experiment', 'Gibbs, George', '2005-04-06', 25, 'https://www.gutenberg.org/ebooks/15570', 'en', 109), +(35266, 'The Life of a Ship', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 25, 'https://www.gutenberg.org/ebooks/21745', 'en', 195), +(35267, 'But, I Don\'t Think', 'Garrett, Randall', '2007-12-24', 66, 'https://www.gutenberg.org/ebooks/24005', 'en', 26), +(35268, 'Remarks from a Visit to Edison Laboratory', 'Daniels, Josephus', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10230', 'en', 1406), +(35269, 'The Complete Opera Book\r\nThe Stories of the Operas, together with 400 of the Leading Airs and Motives in Musical Notation', 'Kobbé, Gustav', '2012-08-19', 54, 'https://www.gutenberg.org/ebooks/40540', 'en', 5808), +(35270, 'My Aunt Margaret\'s Mirror', 'Scott, Walter', '1999-03-01', 49, 'https://www.gutenberg.org/ebooks/1667', 'en', 1922), +(35271, 'Chain of Command', 'Arr, Stephen', '2010-04-28', 20, 'https://www.gutenberg.org/ebooks/32160', 'en', 5683), +(35272, 'The Human Slaughter-House: Scenes from the War that is Sure to Come', 'Lamszus, Wilhelm', '2012-05-01', 22, 'https://www.gutenberg.org/ebooks/39588', 'en', 2481), +(35273, 'Whistler', 'Wood, T. Martin', '2012-11-26', 32, 'https://www.gutenberg.org/ebooks/41492', 'en', 3772), +(35274, 'The Mountain of Fears', 'Rowland, Henry C. (Henry Cottrell)', '2018-01-24', 9, 'https://www.gutenberg.org/ebooks/56425', 'en', 1563), +(35275, 'The Blonde Lady\nBeing a Record of the Duel of Wits between Arsène Lupin and the English Detective', 'Leblanc, Maurice', '2008-03-15', 73, 'https://www.gutenberg.org/ebooks/24839', 'en', 4343), +(35276, 'The Empty Sack', 'King, Basil', '2011-09-12', 16, 'https://www.gutenberg.org/ebooks/37412', 'en', 61), +(35277, 'Punch, or the London Charivari, Volume 102, May 28, 1892', 'Various', '2005-01-14', 2, 'https://www.gutenberg.org/ebooks/14690', 'en', 134), +(35278, 'Wood and Stone: A Romance', 'Powys, John Cowper', '2016-09-28', 13, 'https://www.gutenberg.org/ebooks/53157', 'en', 8003), +(35279, 'Half Hours with the Lower Animals\r\nProtozoans, Sponges, Corals, Shells, Insects, and Crustaceans', 'Holder, Charles Frederick', '2016-05-16', 16, 'https://www.gutenberg.org/ebooks/52085', 'en', 2360), +(35280, 'Punch, or the London Charivari, Volume 103, November 12, 1892', 'Various', '2005-05-02', 2, 'https://www.gutenberg.org/ebooks/15742', 'en', 134), +(35281, 'Peter Simple', 'Marryat, Frederick', '2007-05-22', 31, 'https://www.gutenberg.org/ebooks/21577', 'en', 13364), +(35282, 'The Life of Sir Richard Burton', 'Wright, Thomas', '2003-08-01', 51, 'https://www.gutenberg.org/ebooks/4315', 'en', 13365), +(35283, 'The Principal Species of Wood: Their Characteristic Properties\nFirst Edition', 'Snow, Charles H. (Charles Henry)', '2014-03-12', 10, 'https://www.gutenberg.org/ebooks/45032', 'en', 8388), +(35284, 'The International Monthly, Volume 5, No. 4, April, 1852', 'Various', '2011-02-21', 14, 'https://www.gutenberg.org/ebooks/35345', 'en', 2522), +(35285, 'The Caxtons: A Family Picture — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-02-01', 7, 'https://www.gutenberg.org/ebooks/7590', 'en', 137), +(35286, 'The Border Boys Along the St. Lawrence', 'Goldfrap, John Henry', '2016-03-30', 21, 'https://www.gutenberg.org/ebooks/51600', 'en', 13075), +(35287, 'Mor i Sutre', 'Bergman, Hjalmar', '2005-11-06', 13, 'https://www.gutenberg.org/ebooks/17015', 'sv', 420), +(35288, 'The Gray Nun', 'Eschstruth, Nataly von', '2007-10-27', 14, 'https://www.gutenberg.org/ebooks/23220', 'en', 531), +(35289, 'Angela\'s Business', 'Harrison, Henry Sydnor', '2010-11-12', 47, 'https://www.gutenberg.org/ebooks/34297', 'en', 61), +(35290, 'Temple Trouble', 'Piper, H. Beam', '2006-07-18', 49, 'https://www.gutenberg.org/ebooks/18861', 'en', 26), +(35291, 'Bitter-Sweet: A Poem', 'Holland, J. G. (Josiah Gilbert)', '2004-09-01', 8, 'https://www.gutenberg.org/ebooks/6442', 'en', 8), +(35292, 'A Profitable Instruction of the Perfite Ordering of Bees\r\nWith the Maruellous Nature, Propertie, and Gouernemente of Them: and the Necessarie Vses Both of Their Honie and Waxe, Seruing Diuersly, as Well in Inward as Outward Causes: Gathered Out of the Best Writers', 'Hill, Thomas', '2014-12-24', 15, 'https://www.gutenberg.org/ebooks/47765', 'en', 13366), +(35293, 'The Way To Geometry', 'Ramus, Petrus', '2008-10-02', 95, 'https://www.gutenberg.org/ebooks/26752', 'en', 9920), +(35294, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 476, February 12, 1831', 'Various', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12567', 'en', 133), +(35295, 'A Pilgrimage to Nejd, the Cradle of the Arab Race. Vol. 2 [of 2]\r\nA Visit to the Court of the Arab Emir, and \"our Persian Campaign.\"', 'Blunt, Anne, Lady', '2013-02-26', 30, 'https://www.gutenberg.org/ebooks/42217', 'en', 4925), +(35296, 'Captain John Smith', 'Warner, Charles Dudley', '2004-10-10', 36, 'https://www.gutenberg.org/ebooks/3130', 'en', 13367), +(35297, 'The Trained Memory\nBeing the Fourth of a Series of Twelve Volumes on the\nApplications of Psychology to the Problems of Personal and\nBusiness Efficiency', 'Hilton, Warren', '2006-02-22', 79, 'https://www.gutenberg.org/ebooks/17829', 'en', 9876), +(35298, 'Writings in the United Amateur, 1915-1922', 'Lovecraft, H. P. (Howard Phillips)', '2009-12-09', 336, 'https://www.gutenberg.org/ebooks/30637', 'en', 20), +(35299, 'The Royal Pastime of Cock-fighting\nThe art of breeding, feeding, fighting, and curing cocks of the game', 'R. H. (Robert Howlett)', '2017-03-16', 11, 'https://www.gutenberg.org/ebooks/54372', 'en', 13368), +(35300, 'Vida del escudero Marcos de Obregón', 'Espinel, Vicente', '2019-08-21', 0, 'https://www.gutenberg.org/ebooks/60147', 'es', NULL), +(35301, 'Uncle Sam\'s Boys in the Ranks; or, Two Recruits in the United States Army', 'Hancock, H. Irving (Harrie Irving)', '2008-12-31', 42, 'https://www.gutenberg.org/ebooks/27680', 'en', 3466), +(35302, 'All About the Three Little Pigs', 'Anonymous', '2010-05-24', 50, 'https://www.gutenberg.org/ebooks/32504', 'en', 13369), +(35303, 'Punainen lentohävittäjä', 'Richthofen, Manfred, Freiherr von', '2019-06-29', 14, 'https://www.gutenberg.org/ebooks/59835', 'fi', 13370), +(35304, 'Human Genome Project, Build 34, Chromosome Number 12', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11786', 'en', 1385), +(35305, 'Every Man for Himself', 'Duncan, Norman', '2011-08-07', 28, 'https://www.gutenberg.org/ebooks/36998', 'en', 12606), +(35306, 'The Inevitable Crimes of Celibacy\r\nThe Vices of Convents and Monasteries, Priests and Nuns', 'Watson, Thomas E. (Thomas Edward)', '2017-11-23', 16, 'https://www.gutenberg.org/ebooks/56041', 'en', 13371), +(35307, 'Third class in Indian railways', 'Gandhi, Mahatma', '2008-01-31', 68, 'https://www.gutenberg.org/ebooks/24461', 'en', 2957), +(35308, 'Declaration du Roy, qui ordonne l\'execution de l\'Edit de Revocation de celuy de Nantes', 'France. Sovereign (1643-1715 : Louis XIV)', '2018-05-21', 10, 'https://www.gutenberg.org/ebooks/57193', 'fr', 13372), +(35309, 'The St. James Infirmary Blues', 'McGuinn, Roger', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10654', 'en', 13373), +(35310, 'Poetical Ingenuities and Eccentricities', NULL, '2012-07-01', 16, 'https://www.gutenberg.org/ebooks/40124', 'en', 5509); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(35311, 'Dolly Dialogues', 'Hope, Anthony', '1998-02-01', 51, 'https://www.gutenberg.org/ebooks/1203', 'en', 797), +(35312, 'Index of the Project Gutenberg Works of Mrs. Henry Wood', 'Wood, Henry, Mrs.', '2019-03-04', 5, 'https://www.gutenberg.org/ebooks/59009', 'en', 198), +(35313, 'The Great Round World and What Is Going On In It, Vol. 1, No. 16, February 25, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-11', 8, 'https://www.gutenberg.org/ebooks/15326', 'en', 1), +(35314, 'Wild Bill\'s Last Trail', 'Buntline, Ned', '2007-04-16', 21, 'https://www.gutenberg.org/ebooks/21113', 'en', 13374), +(35315, 'Le Blanc et le Noir', 'Voltaire', '2003-12-01', 43, 'https://www.gutenberg.org/ebooks/4771', 'fr', 642), +(35316, 'History of Julius Cæsar, Vol. 1 of 2', 'Napoleon III, Emperor of the French', '2014-04-22', 157, 'https://www.gutenberg.org/ebooks/45456', 'en', 5985), +(35317, 'Los monfíes de las Alpujarras: novela original', 'Fernández y González, Manuel', '2014-01-04', 15, 'https://www.gutenberg.org/ebooks/44584', 'es', 98), +(35318, 'Cours familier de Littérature - Volume 09', 'Lamartine, Alphonse de', '2011-08-14', 11, 'https://www.gutenberg.org/ebooks/37076', 'fr', 1765), +(35319, 'On Some Ancient Battle-Fields in Lancashire\nAnd Their Historical, Legendary, and Aesthetic Associations.', 'Hardwick, Charles', '2012-10-02', 18, 'https://www.gutenberg.org/ebooks/40918', 'en', 14), +(35320, 'Motor Matt\'s Double Trouble; or, The Last of the Hoodoo', 'Matthews, Stanley R.', '2016-11-15', 0, 'https://www.gutenberg.org/ebooks/53533', 'en', 4097), +(35321, 'The Works of Robert G. Ingersoll, Vol. 02 (of 12)\r\nDresden Edition—Lectures', 'Ingersoll, Robert Green', '2012-02-09', 32, 'https://www.gutenberg.org/ebooks/38802', 'en', 1191), +(35322, 'The Man from the Clouds', 'Clouston, J. Storer (Joseph Storer)', '2006-02-01', 9, 'https://www.gutenberg.org/ebooks/9852', 'en', 579), +(35323, 'Punch, or the London Charivari, Volume 152, February 14, 1917', 'Various', '2006-01-05', 8, 'https://www.gutenberg.org/ebooks/17471', 'en', 134), +(35324, 'Marjorie Dean, High School Freshman', 'Chase, Josephine', '2007-11-27', 30, 'https://www.gutenberg.org/ebooks/23644', 'en', 1669), +(35325, 'The Great Fortress : A chronicle of Louisbourg 1720-1760', 'Wood, William', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6026', 'en', 13375), +(35326, 'L\'Illustration, No. 1594, 13 Septembre 1873', 'Various', '2014-11-06', 3, 'https://www.gutenberg.org/ebooks/47301', 'fr', 150), +(35327, 'Shakespeare and Music', 'Wilson, Christopher', '2011-03-30', 14, 'https://www.gutenberg.org/ebooks/35721', 'en', 13376), +(35328, 'Impressions of America During the Years 1833, 1834 and 1835. Volume 1 (of 2)', 'Power, Tyrone', '2007-09-28', 21, 'https://www.gutenberg.org/ebooks/22796', 'en', 1110), +(35329, 'Robur the Conqueror', 'Verne, Jules', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8980', 'en', 26), +(35330, 'Harper\'s Round Table, December 31, 1895', 'Various', '2016-02-21', 3, 'https://www.gutenberg.org/ebooks/51264', 'en', 668), +(35331, 'Queer Little Folks', 'Stowe, Harriet Beecher', '2001-01-01', 53, 'https://www.gutenberg.org/ebooks/2486', 'en', 1787), +(35332, 'The Philippine Islands, 1493-1898 - Volume 40 of 55, 1690-1691\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2009-10-14', 147, 'https://www.gutenberg.org/ebooks/30253', 'en', 7466), +(35333, 'The religious and loyal subject\'s duty considered: with regard to the present Government and the Revolution\r\nA sermon preached in the Cathedral Church of Canterbury, on Wednesday, January 30, 1722-3', 'Terry, Isaac', '2015-02-23', 7, 'https://www.gutenberg.org/ebooks/48349', 'en', 13377), +(35334, 'What the Mother of a Deaf Child Ought to Know', 'Wright, John Dutton', '2006-05-23', 12, 'https://www.gutenberg.org/ebooks/18439', 'en', 13378), +(35335, 'The Horse in America\r\nA practical treatise on the various types common in the United States, with something of their history and varying characteristics', 'Speed, John Gilmer', '2017-05-13', 8, 'https://www.gutenberg.org/ebooks/54716', 'en', 2777), +(35336, 'Rapport sur l\'Instruction Publique, les 10, 11 et 19 Septembre 1791\nfait au nom du Comité de Constitution à l\'Assemblée Nationale', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2008-08-17', 16, 'https://www.gutenberg.org/ebooks/26336', 'fr', 13379), +(35337, 'The Tale of Mrs. Tiggy-Winkle', 'Potter, Beatrix', '2004-04-01', 48, 'https://www.gutenberg.org/ebooks/12103', 'en', 13380), +(35338, 'Forse che sì forse che no', 'D\'Annunzio, Gabriele', '2013-05-09', 48, 'https://www.gutenberg.org/ebooks/42673', 'it', 1544), +(35339, 'Memoirs of Napoleon Bonaparte — Volume 04', 'Bourrienne, Louis Antoine Fauvelet de', '2002-12-01', 10, 'https://www.gutenberg.org/ebooks/3554', 'en', 840), +(35340, 'The Squire\'s Daughter: Being the First Book in the Chronicles of the Clintons', 'Marshall, Archibald', '2010-02-25', 16, 'https://www.gutenberg.org/ebooks/31381', 'en', 348), +(35341, 'The Translation of a Savage, Complete', 'Parker, Gilbert', '2004-11-16', 13, 'https://www.gutenberg.org/ebooks/6214', 'en', 1357), +(35342, 'Contes de Restif de la Bretonne\r\nLe Pied de Fanchette, ou, le Soulier couleur de rose', 'Restif de La Bretonne', '2014-10-16', 36, 'https://www.gutenberg.org/ebooks/47133', 'fr', 642), +(35343, 'La confession d\'un abbé', 'Ulbach, Louis', '2006-01-31', 46, 'https://www.gutenberg.org/ebooks/17643', 'fr', 298), +(35344, 'English Caricature and Satire on Napoleon I. Volume 1 (of 2)', 'Ashton, John', '2015-10-11', 22, 'https://www.gutenberg.org/ebooks/50184', 'en', 12011), +(35345, 'Churchwardens\' Manual\ntheir duties, powers, rights, and privilages', 'Sumner, George Henry', '2007-11-15', 7, 'https://www.gutenberg.org/ebooks/23476', 'en', 6312), +(35346, 'Boy Scouts on the Trail', 'Garth, John', '2015-05-12', 15, 'https://www.gutenberg.org/ebooks/48947', 'en', 7327), +(35347, 'Manual of Library Economy\nThird and Memorial Edition', 'Brown, James Duff', '2015-09-06', 21, 'https://www.gutenberg.org/ebooks/49895', 'en', 13381), +(35348, 'The Battles of the British Army\r\nBeing a Popular Account of All the Principal Engagements During the Last Hundred Years', 'Blackwood, Robert Melvin', '2016-01-27', 20, 'https://www.gutenberg.org/ebooks/51056', 'en', 462), +(35349, 'The English Church in the Eighteenth Century', 'Abbey, Charles J. (Charles John)', '2005-10-02', 57, 'https://www.gutenberg.org/ebooks/16791', 'en', 13382), +(35350, 'Esoteric Christianity, or The Lesser Mysteries', 'Besant, Annie', '2008-10-16', 63, 'https://www.gutenberg.org/ebooks/26938', 'en', 13383), +(35351, 'The Ledge on Bald Face', 'Roberts, Charles G. D., Sir', '2011-03-07', 9, 'https://www.gutenberg.org/ebooks/35513', 'en', 1787), +(35352, 'The Works of Richard Hurd, Volume 4 (of 8)', 'Hurd, Richard', '2017-04-09', 4, 'https://www.gutenberg.org/ebooks/54524', 'en', 13384), +(35353, 'The Religious Sentiment\nIts Source and Aim: A Contribution to the Science and\nPhilosophy of Religion', 'Brinton, Daniel G. (Daniel Garrison)', '2009-09-22', 15, 'https://www.gutenberg.org/ebooks/30061', 'en', 347), +(35354, 'The Life of Ludwig van Beethoven, Volume III', 'Thayer, Alexander Wheelock', '2013-08-29', 18, 'https://www.gutenberg.org/ebooks/43593', 'en', 1807), +(35355, 'The Coming of Cassidy—And the Others', 'Mulford, Clarence Edward', '2013-03-30', 47, 'https://www.gutenberg.org/ebooks/42441', 'en', 11926), +(35356, 'Twenty-four Little French Dinners and How to Cook and Serve Them', 'Moore, Cora', '2009-09-12', 64, 'https://www.gutenberg.org/ebooks/29970', 'en', 6282), +(35357, 'Coniston — Complete', 'Churchill, Winston', '2004-10-17', 23, 'https://www.gutenberg.org/ebooks/3766', 'en', 539), +(35358, 'That Scholarship Boy', 'Leslie, Emma', '2008-07-22', 29, 'https://www.gutenberg.org/ebooks/26104', 'en', 2526), +(35359, 'Contes à la brune', 'Silvestre, Armand', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/12331', 'fr', 179), +(35360, 'Rakkaudentarina: Historiallinen romaani', 'Finne, Jalmari', '2017-12-31', 8, 'https://www.gutenberg.org/ebooks/56273', 'fi', 175), +(35361, 'The Ghost Breaker: A Novel Based Upon the Play', 'Goddard, Charles', '2008-06-14', 41, 'https://www.gutenberg.org/ebooks/25781', 'en', 8855), +(35362, 'The Nursery, Number 164\nA Monthly Magazine for Youngest Readers', 'Various', '2005-05-28', 22, 'https://www.gutenberg.org/ebooks/15928', 'en', 4641), +(35363, 'The Bible Story', 'Hall, Newton Marshall', '2010-06-07', 23, 'https://www.gutenberg.org/ebooks/32736', 'en', 4241), +(35364, 'At the Age of Eve', 'Sharber, Kate Trimble', '2012-07-24', 15, 'https://www.gutenberg.org/ebooks/40316', 'en', 262), +(35365, 'Charmides, and Other Poems', 'Wilde, Oscar', '1997-09-01', 33, 'https://www.gutenberg.org/ebooks/1031', 'en', 8), +(35366, 'Personal recollections and experiences concerning the Battle of Stone River', 'Hascall, Milo S.', '2008-02-20', 22, 'https://www.gutenberg.org/ebooks/24653', 'en', 444), +(35367, 'Little Saint Elizabeth and Other Stories', 'Burnett, Frances Hodgson', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/10466', 'en', 388), +(35368, 'Ruth Fielding In the Saddle; Or, College Girls in the Land of Gold', 'Emerson, Alice B.', '2011-06-12', 19, 'https://www.gutenberg.org/ebooks/36396', 'en', 557), +(35369, 'The Querist\r\nContaining Several Queries Proposed to the Consideration of the Public', 'Berkeley, George', '2003-10-01', 30, 'https://www.gutenberg.org/ebooks/4543', 'en', 13385), +(35370, 'Gedichte\nSechste vermehrte Auflage', 'Kempner, Friederike', '2014-05-16', 8, 'https://www.gutenberg.org/ebooks/45664', 'de', 8), +(35371, 'An Investigation of the Laws of Thought\r\nOn which are founded the mathematical theories of logic and probabilities', 'Boole, George', '2005-02-16', 647, 'https://www.gutenberg.org/ebooks/15114', 'en', 2410), +(35372, 'Before the Dawn: A Story of the Fall of Richmond', 'Altsheler, Joseph A. (Joseph Alexander)', '2007-05-04', 23, 'https://www.gutenberg.org/ebooks/21321', 'en', 403), +(35373, 'Uncle Sam Abroad', 'Conner, Jacob Elon', '2016-12-09', 4, 'https://www.gutenberg.org/ebooks/53701', 'en', 13386), +(35374, 'Kitty\'s Conquest', 'King, Charles', '2011-08-28', 20, 'https://www.gutenberg.org/ebooks/37244', 'en', 13387), +(35375, 'The Emperor — Volume 09', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5491', 'en', 10090), +(35376, 'The Christian Creed; or, What it is Blasphemy to Deny', 'Besant, Annie', '2012-03-12', 24, 'https://www.gutenberg.org/ebooks/39118', 'en', 1759), +(35377, 'If Sinners Entice Thee', 'Le Queux, William', '2012-10-09', 12, 'https://www.gutenberg.org/ebooks/41002', 'en', 13388), +(35378, 'Narrative of a Voyage to Senegal in 1816\r\nUndertaken by Order of the French Government, Comprising an Account of the Shipwreck of the Medusa, the Sufferings of the Crew, and the Various Occurrences on Board the Raft, in the Desert of Zaara, at St. Louis, and at the Camp of Daccard. to Which Are Subjoined Observations Respecting the Agriculture of the Western Coast of Africa, from Cape Blanco to the Mouth of the Gambia.', 'Savigny, Jean Baptiste Henri', '2004-04-01', 169, 'https://www.gutenberg.org/ebooks/11772', 'en', 13389), +(35379, 'The Sundering Flood', 'Morris, William', '2008-05-20', 63, 'https://www.gutenberg.org/ebooks/25547', 'en', 2203), +(35380, 'The Golden Judge', 'Gordon, Nathaniel', '2008-02-02', 18, 'https://www.gutenberg.org/ebooks/24495', 'en', 179), +(35381, 'My Japanese Wife: A Japanese Idyl', 'Holland, Clive', '2018-05-15', 22, 'https://www.gutenberg.org/ebooks/57167', 'en', 7551), +(35382, 'Archie\'s Mistake', 'Wyatt, G. E.', '2007-03-13', 14, 'https://www.gutenberg.org/ebooks/20809', 'en', 4548), +(35383, 'Les diables noirs: drame en quatre actes', 'Sardou, Victorien', '2010-08-13', 13, 'https://www.gutenberg.org/ebooks/33422', 'fr', 3017), +(35384, 'Legendary Tales of the Highlands (Volume 1 of 3)\nA sequel to Highland Rambles', 'Lauder, Thomas Dick, Sir', '2019-02-18', 18, 'https://www.gutenberg.org/ebooks/58913', 'en', 314), +(35385, 'Vertellingen', 'Hermanna', '2016-06-26', 17, 'https://www.gutenberg.org/ebooks/52415', 'nl', 511), +(35386, 'Down the River to the Sea', 'Machar, Agnes Maule', '2012-06-05', 12, 'https://www.gutenberg.org/ebooks/39924', 'en', 7848), +(35387, 'Pêcheur d\'Islande', 'Loti, Pierre', '2003-12-01', 25, 'https://www.gutenberg.org/ebooks/4785', 'fr', 11778), +(35388, 'Hoosier Lyrics', 'Field, Eugene', '2011-05-18', 3, 'https://www.gutenberg.org/ebooks/36150', 'en', 11372), +(35389, 'The Blue Star', 'Pratt, Fletcher', '2018-04-01', 78, 'https://www.gutenberg.org/ebooks/56889', 'en', 4923), +(35390, 'The Sunshade, the Glove, the Muff', 'Uzanne, Octave', '2014-01-03', 17, 'https://www.gutenberg.org/ebooks/44570', 'en', 13390), +(35391, 'The Practice of the Presence of God', 'Lawrence, of the Resurrection, Brother', '2004-05-01', 1048, 'https://www.gutenberg.org/ebooks/5657', 'en', 2750), +(35392, 'A Short View of the Laws Now Subsisting with Respect to the Powers of the East India Company\r\nTo Borrow Money under their Seal, and to Incur Debts in the Course of their Trade, by the Purchase of Goods on Credit, and by Freighting Ships or other Mercantile Transactions', 'Pulteney, William', '2011-08-14', 5, 'https://www.gutenberg.org/ebooks/37082', 'en', 13391), +(35393, 'Fishing with a Worm', 'Perry, Bliss', '2006-12-07', 6, 'https://www.gutenberg.org/ebooks/20035', 'en', 1945), +(35394, 'Abbe Mouret\'s Transgression', 'Zola, Émile', '2004-11-28', 49, 'https://www.gutenberg.org/ebooks/14200', 'en', 55), +(35395, 'History of the War in Afghanistan, Vol. 3 (of 3)\r\nThird Edition', 'Kaye, John William, Sir', '2015-10-30', 43, 'https://www.gutenberg.org/ebooks/50342', 'en', 3631), +(35396, 'History and Comprehensive Description of Loudoun County, Virginia', 'Head, James William', '2006-01-09', 26, 'https://www.gutenberg.org/ebooks/17485', 'en', 13392), +(35397, 'À terre & en l\'air...\r\nMémoires du Géant', 'Nadar, Félix', '2009-03-06', 18, 'https://www.gutenberg.org/ebooks/28258', 'fr', 13393), +(35398, 'Les compagnons de Jéhu', 'Dumas, Alexandre', '2004-10-21', 29, 'https://www.gutenberg.org/ebooks/13819', 'fr', 4854), +(35399, 'Woodcraft and Camping', 'Sears, George Washington', '2010-12-09', 260, 'https://www.gutenberg.org/ebooks/34607', 'en', 2155), +(35400, 'The Life and Times of Col. Daniel Boone, Hunter, Soldier, and Pioneer\nWith Sketches of Simon Kenton, Lewis Wetzel, and Other Leaders in the Settlement of the West', 'Ellis, Edward Sylvester', '2014-07-08', 25, 'https://www.gutenberg.org/ebooks/46227', 'en', 13394), +(35401, 'Adventures of Huckleberry Finn, Chapters 01 to 05', 'Twain, Mark', '2004-06-27', 108, 'https://www.gutenberg.org/ebooks/7100', 'en', 13395), +(35402, 'History of the Rise of the Huguenots, Vol. 1', 'Baird, Henry Martyn', '2007-09-24', 23, 'https://www.gutenberg.org/ebooks/22762', 'en', 7175), +(35403, 'The Deserter', 'King, Charles', '2005-08-20', 25, 'https://www.gutenberg.org/ebooks/16557', 'en', 12322), +(35404, 'Memories of the Kaiser\'s Court', 'Topham, Anne', '2016-02-24', 17, 'https://www.gutenberg.org/ebooks/51290', 'en', 3234), +(35405, 'The Invisible Man: A Grotesque Romance', 'Wells, H. G. (Herbert George)', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8974', 'en', 1061), +(35406, 'White Lies', 'Reade, Charles', '2006-05-17', 23, 'https://www.gutenberg.org/ebooks/2472', 'en', 5511), +(35407, 'Bashfulness Cured: Ease and Elegance of Manner Quickly Gained', 'Anonymous', '2013-09-17', 9, 'https://www.gutenberg.org/ebooks/43755', 'en', 7042), +(35408, 'La Marquise', 'Sand, George', '2004-07-26', 24, 'https://www.gutenberg.org/ebooks/13025', 'fr', 2118), +(35409, 'The Purcell Papers — Volume 1', 'Le Fanu, Joseph Sheridan', '2008-05-24', 57, 'https://www.gutenberg.org/ebooks/509', 'en', 669), +(35410, 'The Surprising Adventures of Bampfylde Moore Carew, King of the Beggars\r\nContaining his Life, a Dictionary of the Cant Language, and many Entertaining Particulars of that Extraordinary Man', 'Unknown', '2008-11-09', 16, 'https://www.gutenberg.org/ebooks/27210', 'en', 13396), +(35411, 'History of Chemistry, Volume 1 (of 2)\r\nFrom the earliest time to the middle of the nineteenth century', 'Thorpe, T. E. (Thomas Edward)', '2017-09-26', 22, 'https://www.gutenberg.org/ebooks/55630', 'en', 10696), +(35412, 'The Seven Sleuths\' Club', 'Norton, Carol', '2013-05-11', 17, 'https://www.gutenberg.org/ebooks/42687', 'en', 10462), +(35413, 'Under False Pretences: A Novel', 'Sergeant, Adeline', '2010-02-23', 22, 'https://www.gutenberg.org/ebooks/31375', 'en', 8041), +(35414, 'Youth and Egolatry', 'Baroja, Pío', '2005-05-01', 36, 'https://www.gutenberg.org/ebooks/8148', 'en', 13397), +(35415, 'Le Système Solaire se mouvant', 'Tischner, August', '2010-11-25', 13, 'https://www.gutenberg.org/ebooks/34435', 'fr', 13398), +(35416, 'The Philosophy Which Shows the Physiology of Mesmerism and Explains the Phenomenon of Clairvoyance', 'Pasley, T. H.', '2015-10-10', 17, 'https://www.gutenberg.org/ebooks/50170', 'en', 2105), +(35417, 'Jacky Dandy\'s Delight', 'Dandy, Jacky', '2007-11-15', 7, 'https://www.gutenberg.org/ebooks/23482', 'en', 12910), +(35418, 'Old Mackinaw; Or, The Fortress of the Lakes and its Surroundings', 'Strickland, W. P. (William Peter)', '2007-09-09', 33, 'https://www.gutenberg.org/ebooks/22550', 'en', 13399), +(35419, 'A Bachelor\'s Comedy', 'Buckrose, J. E.', '2015-09-03', 13, 'https://www.gutenberg.org/ebooks/49861', 'en', 1351), +(35420, 'History of the Wars, Books III and IV\r\nThe Vandalic War', 'Procopius', '2005-09-27', 122, 'https://www.gutenberg.org/ebooks/16765', 'en', 13400), +(35421, 'The Gypsy\'s Parson: his experiences and adventures', 'Hall, George, rector of Ruckland, Lincolnshire', '2014-06-17', 18, 'https://www.gutenberg.org/ebooks/46015', 'en', 6963), +(35422, '說苑', 'Liu, Xiang', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7332', 'zh', 1682), +(35423, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nOhio Narratives', 'United States. Work Projects Administration', '2004-08-18', 37, 'https://www.gutenberg.org/ebooks/13217', 'en', 13401), +(35424, 'A New Subspecies of the Black Myotis (Bat) from Eastern Mexico', 'Hall, E. Raymond (Eugene Raymond)', '2008-10-24', 6, 'https://www.gutenberg.org/ebooks/27022', 'en', 2561), +(35425, 'At the Crossroads', 'Comstock, Harriet T. (Harriet Theresa)', '2009-09-26', 11, 'https://www.gutenberg.org/ebooks/30095', 'en', 61), +(35426, 'St. Martin\'s Summer', 'Sabatini, Rafael', '2001-05-01', 60, 'https://www.gutenberg.org/ebooks/2640', 'en', 4), +(35427, 'Souvenirs de mon dernier voyage à Paris (1795)', 'Meister, Jacques-Henri', '2013-08-26', 9, 'https://www.gutenberg.org/ebooks/43567', 'fr', 9253), +(35428, 'Donald and Dorothy', 'Dodge, Mary Mapes', '2009-05-17', 9, 'https://www.gutenberg.org/ebooks/28856', 'en', 31), +(35429, 'The History of the First West India Regiment', 'Ellis, A. B. (Alfred Burdon)', '2009-09-14', 22, 'https://www.gutenberg.org/ebooks/29984', 'en', 13402), +(35430, 'A New Bat (Myotis) From Mexico', 'Hall, E. Raymond (Eugene Raymond)', '2010-02-01', 9, 'https://www.gutenberg.org/ebooks/31147', 'en', 13403), +(35431, 'Capitola the Madcap', 'Southworth, Emma Dorothy Eliza Nevitte', '2003-02-01', 8, 'https://www.gutenberg.org/ebooks/3792', 'en', 8517), +(35432, 'Punch, Or the London Charivari, Volume 148, January 6th, 1915', 'Various', '2014-09-10', 11, 'https://www.gutenberg.org/ebooks/46829', 'en', 134), +(35433, 'Our Fellows; Or, Skirmishes with the Swamp Dragoons', 'Castlemon, Harry', '2017-08-21', 2, 'https://www.gutenberg.org/ebooks/55402', 'en', 2788), +(35434, 'Simplex Munditiis, Gentlemen', 'Arnold, Reginald Harvey', '2018-01-02', 10, 'https://www.gutenberg.org/ebooks/56287', 'en', 788), +(35435, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 536, March 3, 1832', 'Various', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11540', 'en', 133), +(35436, 'Northern Nut Growers Association Report of the Proceedings at the 13th Annual Meeting\nRochester, N.Y. September, 7, 8 and 9, 1922', NULL, '2008-06-13', 6, 'https://www.gutenberg.org/ebooks/25775', 'en', 8570), +(35437, 'Ballads of Books', NULL, '2012-10-30', 15, 'https://www.gutenberg.org/ebooks/41230', 'en', 13404), +(35438, 'Pharos, The Egyptian: A Romance', 'Boothby, Guy', '2010-09-03', 24, 'https://www.gutenberg.org/ebooks/33610', 'en', 2938), +(35439, 'Agnes', 'Canth, Minna', '2003-12-01', 51, 'https://www.gutenberg.org/ebooks/10492', 'fi', 61), +(35440, 'The Foundations of Mathematics: A Contribution to the Philosophy of Geometry', 'Carus, Paul', '2018-06-18', 52, 'https://www.gutenberg.org/ebooks/57355', 'en', 13405), +(35441, 'Matkustus Belgiaan', 'Reuter, Fritz', '2011-06-09', 20, 'https://www.gutenberg.org/ebooks/36362', 'fi', 12530), +(35442, 'Jack the Young Trapper: An Eastern Boy\'s Fur Hunting in the Rocky Mountains', 'Grinnell, George Bird', '2014-05-18', 10, 'https://www.gutenberg.org/ebooks/45690', 'en', 6842), +(35443, 'Library Ideals', 'Legler, Henry Eduard', '2016-07-23', 6, 'https://www.gutenberg.org/ebooks/52627', 'en', 13406), +(35444, 'Under Wellington\'s Command: A Tale of the Peninsular War', 'Henty, G. A. (George Alfred)', '2006-12-29', 48, 'https://www.gutenberg.org/ebooks/20207', 'en', 5773), +(35445, 'An Enquiry into the Truth of the Tradition, Concerning the Discovery of America, by Prince Madog ab Owen Gwynedd, about the Year, 1170', 'Williams, John', '2004-11-12', 39, 'https://www.gutenberg.org/ebooks/14032', 'en', 13407), +(35446, 'The Life of George Cruikshank in Two Epochs, Vol. 2. (of 2)', 'Jerrold, Blanchard', '2014-01-23', 13, 'https://www.gutenberg.org/ebooks/44742', 'en', 3807), +(35447, 'The Sisters — Volume 5', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5465', 'en', 803), +(35448, 'Gathering Jewels\nThe Secret of a Beautiful Life: In Memoriam of Mr. & Mrs. James Knowles. Selected from Their Diaries.', 'Knowles, James', '2007-07-24', 6, 'https://www.gutenberg.org/ebooks/22134', 'en', 13408), +(35449, 'Memoiren einer Sozialistin\nLehrjahre', 'Braun, Lily', '2005-07-15', 31, 'https://www.gutenberg.org/ebooks/16301', 'de', 3840), +(35450, 'The Annual Register 1914\nA Review of Public Events at Home and Abroad for the Year 1914', 'Anonymous', '2014-08-01', 10, 'https://www.gutenberg.org/ebooks/46471', 'en', 13409), +(35451, 'Godolphin, Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 22, 'https://www.gutenberg.org/ebooks/7756', 'en', 45), +(35452, 'Memorials of the Sea: My Father\r\nBeing Records of the Adventurous Life of the Late William Scoresby, Esq. of Whitby', 'Scoresby, William', '2011-02-06', 14, 'https://www.gutenberg.org/ebooks/35183', 'en', 3261), +(35453, 'Uneasy Money', 'Wodehouse, P. G. (Pelham Grenville)', '2004-10-01', 160, 'https://www.gutenberg.org/ebooks/6684', 'en', 48), +(35454, 'Gloria Mundi', 'Frederic, Harold', '2017-06-26', 2, 'https://www.gutenberg.org/ebooks/54988', 'en', 50), +(35455, 'History of the Intellectual Development of Europe, Volume II (of 2)\nRevised Edition', 'Draper, John William', '2010-10-09', 24, 'https://www.gutenberg.org/ebooks/34051', 'en', 12231), +(35456, 'Chronicles of Newgate, Vol. 2\r\nFrom the eighteenth century to its demolition', 'Griffiths, Arthur', '2015-11-20', 11, 'https://www.gutenberg.org/ebooks/50514', 'en', 13410), +(35457, 'A Book of Porcelain: Fine examples in the Victoria & Albert Museum', 'Rackham, Bernard', '2015-07-14', 26, 'https://www.gutenberg.org/ebooks/49439', 'en', 13411), +(35458, 'Mathias Sandorf: Een Model-volksplanting', 'Verne, Jules', '2007-10-07', 8, 'https://www.gutenberg.org/ebooks/22908', 'nl', 13412), +(35459, 'The Women-Stealers of Thrayx', 'Holden, Fox B.', '2010-03-06', 23, 'https://www.gutenberg.org/ebooks/31523', 'en', 26), +(35460, 'Twee Edellieden van Verona', 'Shakespeare, William', '2008-09-11', 14, 'https://www.gutenberg.org/ebooks/26594', 'nl', 4991), +(35461, 'The Irish Penny Journal, Vol. 1 No. 38, March 20, 1841', 'Various', '2017-07-07', 1, 'https://www.gutenberg.org/ebooks/55066', 'en', 81), +(35462, 'Punch, or the London Charivari, Vol. 159, 1920-11-17', 'Various', '2006-09-22', 18, 'https://www.gutenberg.org/ebooks/19349', 'en', 134), +(35463, 'The Pacha of Many Tales', 'Marryat, Frederick', '2004-10-07', 14, 'https://www.gutenberg.org/ebooks/13673', 'en', 323), +(35464, 'Der Hahn von Quakenbrück und andere Novellen', 'Huch, Ricarda', '2008-12-08', 14, 'https://www.gutenberg.org/ebooks/27446', 'de', 549), +(35465, 'Human Genome Project, rough draft, Chromosome Y Number 24', 'Human Genome Project', '2000-06-01', 2, 'https://www.gutenberg.org/ebooks/2224', 'en', 1385), +(35466, '\"The System,\" As Uncovered by the San Francisco Graft Prosecution', 'Hichborn, Franklin', '2013-07-06', 8, 'https://www.gutenberg.org/ebooks/43103', 'en', 13413), +(35467, 'The Black Riders, and Other Lines', 'Crane, Stephen', '2012-09-17', 53, 'https://www.gutenberg.org/ebooks/40786', 'en', 350), +(35468, 'The Abbatial Crosier; or, Bonaik and Septimine. A Tale of a Medieval Abbess', 'Sue, Eugène', '2010-07-27', 29, 'https://www.gutenberg.org/ebooks/33274', 'en', 224), +(35469, 'Graham\'s Magazine, Vol. XXXVI, No. 1, January 1850', 'Various', '2018-08-19', 9, 'https://www.gutenberg.org/ebooks/57731', 'en', 162), +(35470, 'Northumberland Yesterday and To-day', 'Terry, Jean F. (Jean Finlay)', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11124', 'en', 13414), +(35471, 'El la vivo de esperantistoj', 'Stankiević, V.', '2008-05-03', 7, 'https://www.gutenberg.org/ebooks/25311', 'eo', 8756), +(35472, 'Introduction to Mathematical Philosophy', 'Russell, Bertrand', '2012-12-18', 240, 'https://www.gutenberg.org/ebooks/41654', 'en', 11515), +(35473, 'The American Practical Brewer and Tanner', 'Coppinger, Joseph', '2007-02-25', 36, 'https://www.gutenberg.org/ebooks/20663', 'en', 13415), +(35474, 'Home Amusements', 'Sherwood, M. E. W. (Mary Elizabeth Wilson)', '2016-10-28', 35, 'https://www.gutenberg.org/ebooks/53391', 'en', 1415), +(35475, 'The Uphill Climb', 'Bower, B. M.', '2004-12-25', 44, 'https://www.gutenberg.org/ebooks/14456', 'en', 315), +(35476, 'Robinson-koulu: Seikkailuromaani Tyyneltämereltä', 'Verne, Jules', '2019-01-27', 2, 'https://www.gutenberg.org/ebooks/58779', 'fi', 3576), +(35477, 'Wanted: A Husband. A Novel', 'Adams, Samuel Hopkins', '2013-12-01', 33, 'https://www.gutenberg.org/ebooks/44326', 'en', 61), +(35478, 'Relativity : the Special and General Theory', 'Einstein, Albert', '2004-02-01', 859, 'https://www.gutenberg.org/ebooks/5001', 'en', 2846), +(35479, 'The Castle Inn', 'Weyman, Stanley John', '2004-04-01', 35, 'https://www.gutenberg.org/ebooks/11918', 'en', 4551), +(35480, 'L\'Illustration, No. 3273, 18 Novembre 1905', 'Various', '2011-07-14', 3, 'https://www.gutenberg.org/ebooks/36706', 'fr', 150), +(35481, 'Jean Ziska', 'Sand, George', '2005-04-09', 28, 'https://www.gutenberg.org/ebooks/15584', 'fr', 13416), +(35482, 'Daughters of Belgravia; vol. 1 of 3', 'Fraser, Alexander, Mrs.', '2016-06-05', 9, 'https://www.gutenberg.org/ebooks/52243', 'en', 61), +(35483, 'The Liberty Girl', 'Halsey, Rena I.', '2014-02-16', 8, 'https://www.gutenberg.org/ebooks/44928', 'en', 2273), +(35484, 'Irresolute Catherine', 'Jacob, Violet', '2018-07-14', 21, 'https://www.gutenberg.org/ebooks/57503', 'en', 792), +(35485, 'Harper\'s Round Table, July 2, 1895', 'Various', '2010-07-01', 14, 'https://www.gutenberg.org/ebooks/33046', 'en', 668), +(35486, 'Dangerous Days', 'Rinehart, Mary Roberts', '1999-04-01', 43, 'https://www.gutenberg.org/ebooks/1693', 'en', 828), +(35487, 'Alda: L\'Esclave Bretonne', 'Strickland, Agnes', '2010-05-01', 17, 'https://www.gutenberg.org/ebooks/32194', 'fr', 11015), +(35488, 'The Daffodil Fields', 'Masefield, John', '2012-11-23', 31, 'https://www.gutenberg.org/ebooks/41466', 'en', 54), +(35489, 'The Atlantic Monthly, Volume 08, No. 47, September, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/11316', 'en', 1227), +(35490, '脾胃論', 'Li, Gao', '2008-04-22', 37, 'https://www.gutenberg.org/ebooks/25123', 'zh', 13417), +(35491, 'A Jay of Italy', 'Capes, Bernard Edward Joseph', '2013-11-05', 5, 'https://www.gutenberg.org/ebooks/44114', 'en', 13418), +(35492, 'The Iron Trail', 'Beach, Rex', '2004-03-01', 34, 'https://www.gutenberg.org/ebooks/5233', 'en', 315), +(35493, 'The Confessions of Artemas Quibble\r\nBeing the Ingenuous and Unvarnished History of Artemas Quibble, Esquire, One-Time Practitioner in the New York Criminal Courts, Together with an Account of the Divers Wiles, Tricks, Sophistries, Technicalities, and Sundry Artifices of Himself and Others of the Fraternity, Commonly Yclept \"Shysters\" or \"Shyster Lawyers\"', 'Train, Arthur Cheney', '2007-01-26', 19, 'https://www.gutenberg.org/ebooks/20451', 'en', 1660), +(35494, 'Things To Make', 'Williams, Archibald', '2005-01-11', 250, 'https://www.gutenberg.org/ebooks/14664', 'en', 11855), +(35495, 'The Book of the Otter: A manual for sportsmen and naturalists', 'Clapham, Richard', '2016-05-15', 6, 'https://www.gutenberg.org/ebooks/52071', 'en', 13419), +(35496, 'The Gaspards of Pine Croft: A Romance of the Windermere', 'Connor, Ralph', '2019-05-13', 22, 'https://www.gutenberg.org/ebooks/59499', 'en', 4874), +(35497, 'Children of the Tenements', 'Riis, Jacob A. (Jacob August)', '2007-05-23', 32, 'https://www.gutenberg.org/ebooks/21583', 'en', 1660), +(35498, 'Blanco y Colorado: Old Days among the Gauchos of Uruguay', 'Tetley, William C.', '2011-06-26', 17, 'https://www.gutenberg.org/ebooks/36534', 'en', 13420), +(35499, 'Pedagogical Anthropology', 'Montessori, Maria', '2014-08-21', 59, 'https://www.gutenberg.org/ebooks/46643', 'en', 13421), +(35500, 'Quotes and Images From Memoirs of Cardinal De Retz', 'Retz, Jean François Paul de Gondi de', '2005-02-01', 18, 'https://www.gutenberg.org/ebooks/7564', 'en', 1026), +(35501, 'Compendio da relaçam, que veyo da India o anno de 1691', 'Barbosa, Vicente', '2006-11-28', 14, 'https://www.gutenberg.org/ebooks/19947', 'pt', 13422), +(35502, 'Human Traits and their Social Significance', 'Edman, Irwin', '2007-08-13', 18, 'https://www.gutenberg.org/ebooks/22306', 'en', 1771), +(35503, 'The Philippine Islands, 1493-1898 — Volume 20 of 55 \r\n1621-1624\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2005-06-25', 58, 'https://www.gutenberg.org/ebooks/16133', 'en', 8515), +(35504, 'La Ruta del Aventurero', 'Baroja, Pío', '2015-12-20', 18, 'https://www.gutenberg.org/ebooks/50726', 'es', 731), +(35505, 'At Home with the Jardines', 'Bell, Lilian', '2006-07-22', 25, 'https://www.gutenberg.org/ebooks/18895', 'en', 378), +(35506, 'The Banshee', 'O\'Donnell, Elliott', '2010-11-09', 49, 'https://www.gutenberg.org/ebooks/34263', 'en', 13423), +(35507, 'Tom Swift and His Sky Racer; Or, The Quickest Flight on Record', 'Appleton, Victor', '1997-06-01', 67, 'https://www.gutenberg.org/ebooks/951', 'en', 1456), +(35508, 'Brief Lives, Vol. 2', 'Aubrey, John', '2014-12-27', 37, 'https://www.gutenberg.org/ebooks/47791', 'en', 13424), +(35509, 'Fort Sumter: Anvil of War\r\nFort Sumter National Monument, South Carolina', 'United States. National Park Service', '2017-08-03', 10, 'https://www.gutenberg.org/ebooks/55254', 'en', 13425), +(35510, 'The Atlantic Monthly, Volume 11, No. 65, March, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12593', 'en', 1227), +(35511, 'The Life of William Ewart Gladstone, Vol. 3 (of 3)\r\n1890-1898', 'Morley, John', '2010-03-20', 30, 'https://www.gutenberg.org/ebooks/31711', 'en', 13426), +(35512, 'The 1998 CIA World Factbook', 'United States. Central Intelligence Agency', '1999-12-01', 14, 'https://www.gutenberg.org/ebooks/2016', 'en', 1726), +(35513, 'The Domestic Life of Thomas Jefferson Compiled From Family Letters and Reminiscences', 'Randolph, Sarah N. (Sarah Nicholas)', '2013-07-27', 17, 'https://www.gutenberg.org/ebooks/43331', 'en', 1009), +(35514, 'The Sunny Side', 'Milne, A. A. (Alan Alexander)', '2004-09-12', 38, 'https://www.gutenberg.org/ebooks/13441', 'en', 20), +(35515, 'Paris en América', 'Laboulaye, Édouard', '2017-03-18', 24, 'https://www.gutenberg.org/ebooks/54386', 'es', 1110), +(35516, 'The Boy Volunteers with the Submarine Fleet', 'Ward, Kenneth', '2008-12-31', 7, 'https://www.gutenberg.org/ebooks/27674', 'en', 4416), +(35517, 'The Great Round World and What Is Going On In It, Vol. 1, No. 40, August 12, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-27', 20, 'https://www.gutenberg.org/ebooks/15917', 'en', 1), +(35518, 'Shock Treatment', 'Mullen, Stanley', '2010-06-06', 16, 'https://www.gutenberg.org/ebooks/32709', 'en', 26), +(35519, 'Birds Every Child Should Know', 'Blanchan, Neltje', '2011-12-06', 54, 'https://www.gutenberg.org/ebooks/38233', 'en', 6059), +(35520, 'Ο Γερμανικός Φιλελληνισμός', 'Karolides, Paulos', '2012-07-25', 10, 'https://www.gutenberg.org/ebooks/40329', 'el', 13427), +(35521, 'The Celtic Twilight', 'Yeats, W. B. (William Butler)', '2003-12-01', 283, 'https://www.gutenberg.org/ebooks/10459', 'en', 13428), +(35522, 'George Crabbe: Poems, Volume 3 (of 3)', 'Crabbe, George', '2019-04-04', 9, 'https://www.gutenberg.org/ebooks/59204', 'en', 54), +(35523, 'The Case of the Lamp That Went Out', 'Groner, Auguste', '1999-07-01', 22, 'https://www.gutenberg.org/ebooks/1832', 'en', 61), +(35524, 'A Noble Queen: A Romance of Indian History (Volume 3 of 3)', 'Taylor, Meadows', '2014-01-29', 12, 'https://www.gutenberg.org/ebooks/44789', 'en', 13429), +(35525, 'Behind the Beyond, and Other Contributions to Human Knowledge', 'Leacock, Stephen', '2007-11-11', 47, 'https://www.gutenberg.org/ebooks/23449', 'en', 3963), +(35526, 'Things Worth Doing and How To Do Them', 'Beard, Lina', '2015-05-17', 32, 'https://www.gutenberg.org/ebooks/48978', 'en', 1560), +(35527, 'The Atlantic Monthly, Volume 15, No. 91, May, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2010-01-05', 12, 'https://www.gutenberg.org/ebooks/30862', 'en', 1227), +(35528, 'La Granda Admiralo: Unua vojaĝo ĉirkaŭ la mondo', 'Omelka, František', '2016-01-29', 11, 'https://www.gutenberg.org/ebooks/51069', 'eo', 13430), +(35529, 'The White Lie', 'Le Queux, William', '2009-06-20', 14, 'https://www.gutenberg.org/ebooks/29173', 'en', 128), +(35530, 'The Cornwall Coast', 'Salmon, Arthur L. (Arthur Leslie)', '2008-10-13', 29, 'https://www.gutenberg.org/ebooks/26907', 'en', 2082), +(35531, 'Brought Forward', 'Cunninghame Graham, R. B. (Robert Bontine)', '2015-01-10', 8, 'https://www.gutenberg.org/ebooks/47930', 'en', 61), +(35532, 'First Impressions of the New World\nOn Two Travellers from the Old in the Autumn of 1858', 'Trotter, Isabella Strange', '2006-06-20', 17, 'https://www.gutenberg.org/ebooks/18634', 'en', 2655), +(35533, 'The Mystery of the Iron Box\r\nA Ken Holt Mystery', 'Campbell, Bruce', '2015-02-03', 24, 'https://www.gutenberg.org/ebooks/48144', 'en', 10991), +(35534, 'In the Midst of Alarms', 'Barr, Robert', '2005-11-01', 36, 'https://www.gutenberg.org/ebooks/9263', 'en', 65), +(35535, 'Narrative and Critical History of America, Vol. 3 (of 8)\r\nEnglish Explorations and Settlements in North America 1497-1689', NULL, '2016-01-21', 19, 'https://www.gutenberg.org/ebooks/50987', 'en', 4062), +(35536, 'Fridthjof\'s Saga; a Norse romance', 'Tegnér, Esaias', '2003-02-01', 21, 'https://www.gutenberg.org/ebooks/3759', 'en', 11856), +(35537, 'Slave Planet', 'Janifer, Laurence M.', '2016-04-24', 36, 'https://www.gutenberg.org/ebooks/51855', 'en', 9849), +(35538, 'The Way Out', 'Hough, Emerson', '2015-05-31', 9, 'https://www.gutenberg.org/ebooks/49096', 'en', 13431), +(35539, 'The Tale of Jolly Robin', 'Bailey, Arthur Scott', '2009-03-09', 92, 'https://www.gutenberg.org/ebooks/28293', 'en', 7409), +(35540, 'Autobiography of Samuel S. Hildebrand, the Renowned Missouri \"Bushwacker\" and Unconquerable Rob Roy of America\r\nBeing his Complete Confession', 'Hildebrand, Samuel S.', '2015-11-05', 12, 'https://www.gutenberg.org/ebooks/50389', 'en', 13432), +(35541, 'The Earth as Modified by Human Action', 'Marsh, George P. (George Perkins)', '2004-07-01', 24, 'https://www.gutenberg.org/ebooks/6019', 'en', 5633), +(35542, 'Poor Relations', 'Balzac, Honoré de', '2004-07-13', 30, 'https://www.gutenberg.org/ebooks/12900', 'en', 560), +(35543, 'The Story of the Great War, Volume 5\r\nBattle of Jutland Bank; Russian Offensive; Kut-El-Amara; East Africa; Verdun; The Great Somme Drive; United States and Belligerents; Summary of Two Years\' War', NULL, '2009-07-07', 58, 'https://www.gutenberg.org/ebooks/29341', 'en', 335), +(35544, 'Charles Sumner: his complete works, volume 11 (of 20)', 'Sumner, Charles', '2015-02-28', 12, 'https://www.gutenberg.org/ebooks/48376', 'en', 125), +(35545, 'Sanine', 'Artsybashev, M. (Mikhail)', '2005-10-01', 32, 'https://www.gutenberg.org/ebooks/9051', 'en', 13433), +(35546, 'Maroessia: De Ukraineesche Jeanne D\'Arc', 'Vovchok, Marko', '2006-05-16', 28, 'https://www.gutenberg.org/ebooks/18406', 'nl', 13434), +(35547, 'Wayward Winifred', 'Sadlier, Anna T. (Anna Theresa)', '2017-05-15', 17, 'https://www.gutenberg.org/ebooks/54729', 'en', 13435), +(35548, 'Hitchhiker\'s Guide to the Internet', 'Krol, Ed', '1992-09-01', 382, 'https://www.gutenberg.org/ebooks/39', 'en', 13436), +(35549, 'Voyages of Samuel De Champlain — Volume 03', 'Champlain, Samuel de', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6825', 'en', 1643), +(35550, 'The High Calling', 'Sheldon, Charles M.', '2008-08-14', 21, 'https://www.gutenberg.org/ebooks/26309', 'en', 942), +(35551, 'Time and the Gods', 'Dunsany, Lord', '2005-05-01', 194, 'https://www.gutenberg.org/ebooks/8183', 'en', 2634), +(35552, 'Mitch Miller', 'Masters, Edgar Lee', '2007-06-23', 15, 'https://www.gutenberg.org/ebooks/21910', 'en', 3210), +(35553, 'Seitsemän päivää keskusasemalla', 'Kock, Johan', '2011-10-29', 33, 'https://www.gutenberg.org/ebooks/37875', 'fi', 13437), +(35554, 'Sans-Cravate; or, The Messengers; Little Streams', 'Kock, Paul de', '2011-11-12', 9, 'https://www.gutenberg.org/ebooks/38001', 'en', 58), +(35555, 'The York Problem', 'Kastle, Herbert D.', '2019-03-08', 28, 'https://www.gutenberg.org/ebooks/59036', 'en', 179), +(35556, 'The Government Class Book\nDesigned for the Instruction of Youth in the Principles\nof Constitutional Government and the Rights and Duties of\nCitizens.', 'Young, Andrew W. (Andrew White)', '2005-03-10', 28, 'https://www.gutenberg.org/ebooks/15319', 'en', 13438), +(35557, 'The Two First Centuries of Florentine History\nThe Republic and Parties at the Time of Dante. Fourth Impression.', 'Villari, Pasquale', '2014-04-24', 13, 'https://www.gutenberg.org/ebooks/45469', 'en', 3000), +(35558, 'Herodoti Historiarum Libri IX', 'Herodotus', '2018-03-25', 52, 'https://www.gutenberg.org/ebooks/56842', 'la', 1368), +(35559, 'Poems', 'Crabbe, George', '2018-09-30', 13, 'https://www.gutenberg.org/ebooks/57990', 'en', 54), +(35560, 'Bell\'s Cathedrals: The Cathedral Church of Lichfield\nA Description of Its Fabric and A Brief History of the Espicopal See', 'Clifton, A. B.', '2011-08-12', 16, 'https://www.gutenberg.org/ebooks/37049', 'en', 13439), +(35561, 'Scouting with Kit Carson', 'Tomlinson, Everett T. (Everett Titsworth)', '2012-10-03', 13, 'https://www.gutenberg.org/ebooks/40927', 'en', 13440), +(35562, 'The Treasure Hunt of the S-18', 'Dean, Graham M.', '2014-08-26', 14, 'https://www.gutenberg.org/ebooks/46688', 'en', 2322), +(35563, 'Zibeline — Volume 3', 'Massa, Philippe, marquis de', '2003-04-01', 17, 'https://www.gutenberg.org/ebooks/3933', 'en', 560), +(35564, 'The Fairchild Family', 'Sherwood, Mrs. (Mary Martha)', '2009-08-19', 45, 'https://www.gutenberg.org/ebooks/29725', 'en', 470), +(35565, 'Snarleyyow, or, the Dog Fiend', 'Marryat, Frederick', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12558', 'en', 98), +(35566, 'Camp Fire Yarns of the Lost Legion', 'Hamilton-Browne, G.', '2013-02-28', 27, 'https://www.gutenberg.org/ebooks/42228', 'en', 13441), +(35567, 'Skyttes på Munkeboda: Hemliv i Skåne 1830', 'Malling, Mathilda', '2015-04-15', 7, 'https://www.gutenberg.org/ebooks/48712', 'sv', 420), +(35568, 'The Trumpet-Major', 'Hardy, Thomas', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9435', 'en', 3330), +(35569, 'Letters from Egypt', 'Duff Gordon, Lucie, Lady', '2006-02-21', 57, 'https://www.gutenberg.org/ebooks/17816', 'en', 2589), +(35570, 'Christology of the Old Testament: And a Commentary on the Messianic Predictions. Vol. 2', 'Hengstenberg, Ernst Wilhelm', '2009-12-05', 25, 'https://www.gutenberg.org/ebooks/30608', 'en', 13442), +(35571, 'Stories of Ships and the Sea\r\nLittle Blue Book # 1169', 'London, Jack', '2006-03-27', 56, 'https://www.gutenberg.org/ebooks/18062', 'en', 5962), +(35572, 'Phaedo', 'Plato', '1999-03-01', 348, 'https://www.gutenberg.org/ebooks/1658', 'en', 9675), +(35573, 'Vadvizek zúgása: Versek, Rodnaborberek, 1921 június-július', 'Reményik, Sándor', '2012-01-02', 8, 'https://www.gutenberg.org/ebooks/38465', 'hu', 1645), +(35574, 'William Morris to Whistler\nPapers and addresses on art and craft and the commonweal.', 'Crane, Walter', '2017-01-13', 49, 'https://www.gutenberg.org/ebooks/53954', 'en', 787), +(35575, 'My Year of the Great War', 'Palmer, Frederick', '2016-08-23', 10, 'https://www.gutenberg.org/ebooks/52886', 'en', 449), +(35576, 'La araña negra, t. 3/9', 'Blasco Ibáñez, Vicente', '2014-05-30', 15, 'https://www.gutenberg.org/ebooks/45831', 'es', 1353), +(35577, 'John Frewen, South Sea Whaler\n1904', 'Becke, Louis', '2008-03-11', 20, 'https://www.gutenberg.org/ebooks/24806', 'en', 108), +(35578, 'In the Royal Naval Air Service\r\nBeing the war letters of the late Harold Rosher to his family', 'Rosher, Harold', '2016-09-28', 5, 'https://www.gutenberg.org/ebooks/53168', 'en', 4704), +(35579, 'John L. Stoddard\'s Lectures, Vol. 01 (of 10)\r\nNorway, Switzerland, Athens, Venice', 'Stoddard, John L. (John Lawson)', '2018-12-31', 6, 'https://www.gutenberg.org/ebooks/58580', 'en', 3611), +(35580, 'Ystävykset', 'Ouida', '2007-05-21', 1, 'https://www.gutenberg.org/ebooks/21548', 'fi', 12265), +(35581, 'Harper\'s Round Table, October 6, 1896', 'Various', '2019-05-07', 5, 'https://www.gutenberg.org/ebooks/59452', 'en', 668), +(35582, 'Portraits et souvenirs', 'Saint-Saëns, Camille', '2010-06-24', 17, 'https://www.gutenberg.org/ebooks/32963', 'fr', 1756), +(35583, 'Love Among the Lions: A Matrimonial Experience', 'Anstey, F.', '2012-01-23', 17, 'https://www.gutenberg.org/ebooks/38657', 'en', 1079), +(35584, 'La nao Santa María: memória de la Comisión arqueológica ejecutiva, 1892', 'Spain. Comisión arqueológica ejecutiva', '2008-01-07', 27, 'https://www.gutenberg.org/ebooks/24208', 'es', 2036), +(35585, 'An Essay on Colophons, with Specimens and Translations', 'Pollard, Alfred W. (Alfred William)', '2018-02-22', 24, 'https://www.gutenberg.org/ebooks/56628', 'en', 13443), +(35586, 'Dry-Farming : A System of Agriculture for Countries under a Low Rainfall', 'Widtsoe, John Andreas', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/4924', 'en', 13444), +(35587, 'Tunnel Engineering: A Museum Treatment', 'Vogel, Robert M.', '2012-05-24', 5, 'https://www.gutenberg.org/ebooks/39785', 'en', 13445), +(35588, 'The Literary Remains of Samuel Taylor Coleridge, Volume 4', 'Coleridge, Samuel Taylor', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/10801', 'en', 2156), +(35589, 'Diary of Samuel Pepys — Volume 02: January 1659-1660', 'Pepys, Samuel', '2004-11-29', 16, 'https://www.gutenberg.org/ebooks/4118', 'en', 1231), +(35590, 'L\'art ochlocratique: salons de 1882 & de 1883', 'Péladan, Joséphin', '2016-06-09', 23, 'https://www.gutenberg.org/ebooks/52288', 'fr', 13446), +(35591, 'Harper\'s Young People, October 24, 1882\nAn Illustrated Weekly', 'Various', '2019-06-02', 11, 'https://www.gutenberg.org/ebooks/59660', 'en', 479), +(35592, 'John and Betty\'s History Visit', 'Williamson, Margaret', '2009-07-27', 16, 'https://www.gutenberg.org/ebooks/29517', 'en', 776), +(35593, 'Austria\r\ncontaining a Description of the Manners, Customs, Character and Costumes of the People of that Empire', 'Shoberl, Frederic', '2013-05-28', 16, 'https://www.gutenberg.org/ebooks/42826', 'en', 13447), +(35594, 'Here and Hereafter', 'Pain, Barry', '2011-02-05', 39, 'https://www.gutenberg.org/ebooks/35148', 'en', 179), +(35595, 'The Family on Wheels', 'Oxley, J. Macdonald (James Macdonald)', '2017-11-05', 17, 'https://www.gutenberg.org/ebooks/55891', 'en', 13448), +(35596, 'Birds and Nature Vol. 11 No. 2 [February 1902]\nIllustrated by Color Photography', 'Various', '2014-12-07', 13, 'https://www.gutenberg.org/ebooks/47568', 'en', 1584), +(35597, 'How to Teach a Foreign Language', 'Jespersen, Otto', '2017-06-20', 25, 'https://www.gutenberg.org/ebooks/54943', 'en', 6261), +(35598, 'The Black Cat: A Play in Three Acts', 'Todhunter, John', '2005-12-04', 9, 'https://www.gutenberg.org/ebooks/17218', 'en', 402), +(35599, 'Punch, or the London Charivari, Volume 159, October 13, 1920', 'Various', '2006-09-26', 7, 'https://www.gutenberg.org/ebooks/19382', 'en', 134), +(35600, 'Corianton: A Nephite Story', 'Roberts, B. H. (Brigham Henry)', '2011-04-27', 15, 'https://www.gutenberg.org/ebooks/35974', 'en', 1071), +(35601, 'Cranford', 'Gaskell, Elizabeth Cleghorn', '1996-01-01', 292, 'https://www.gutenberg.org/ebooks/394', 'en', 3084), +(35602, 'The Prose Works of Jonathan Swift, D.D. - Volume 07\r\nHistorical and Political Tracts-Irish', 'Swift, Jonathan', '2006-04-24', 15, 'https://www.gutenberg.org/ebooks/18250', 'en', 13449), +(35603, 'Variétés Historiques et Littéraires (09/10)\r\nRecueil de piéces volantes rares et curieuses en prose et en vers', NULL, '2015-03-18', 10, 'https://www.gutenberg.org/ebooks/48520', 'fr', 642), +(35604, 'The Good Ship Rover', 'Hardy, Robina F.', '2007-12-10', 12, 'https://www.gutenberg.org/ebooks/23811', 'en', 195), +(35605, 'From Boyhood to Manhood: Life of Benjamin Franklin', 'Thayer, William Makepeace', '2006-01-01', 11, 'https://www.gutenberg.org/ebooks/9607', 'en', 854), +(35606, '35 Sonnets', 'Pessoa, Fernando', '2006-11-30', 123, 'https://www.gutenberg.org/ebooks/19978', 'en', 8), +(35607, 'Notes and Queries, Number 66, February 1, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-08-16', 14, 'https://www.gutenberg.org/ebooks/22339', 'en', 105), +(35608, 'Les deux amis de Bourbonne', 'Diderot, Denis', '2009-04-25', 34, 'https://www.gutenberg.org/ebooks/28603', 'fr', 100), +(35609, 'Juju', 'Leinster, Murray', '2015-12-19', 48, 'https://www.gutenberg.org/ebooks/50719', 'en', 2126), +(35610, 'Democracy, an American novel', 'Adams, Henry', '2001-09-01', 66, 'https://www.gutenberg.org/ebooks/2815', 'en', 10158), +(35611, 'A Book of Golden Deeds', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-09-01', 73, 'https://www.gutenberg.org/ebooks/6489', 'en', 4878), +(35612, 'Report by the Governor on a Visit to the Micmac Indians at Bay d\'Espoir\nColonial Reports, Miscellaneous. No. 54. Newfoundland', 'MacGregor, William', '2006-08-29', 8, 'https://www.gutenberg.org/ebooks/19144', 'en', 4910), +(35613, 'Narrative of the Captivity of William Biggs among the Kickapoo Indians in Illinois in 1788', 'Biggs, William', '2008-10-07', 13, 'https://www.gutenberg.org/ebooks/26799', 'en', 7438), +(35614, 'A Short History of Russia', 'Parmele, Mary Platt', '2005-10-23', 31, 'https://www.gutenberg.org/ebooks/16930', 'en', 473), +(35615, 'The Three Cities Trilogy: Lourdes, Volume 3', 'Zola, Émile', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/8513', 'en', 1825), +(35616, 'Attila: A Romance. Vol. I.', 'James, G. P. R. (George Payne Rainsford)', '2015-08-06', 20, 'https://www.gutenberg.org/ebooks/49634', 'en', 12035), +(35617, 'Lahoma', 'Ellis, J. Breckenridge (John Breckenridge)', '2000-01-01', 4, 'https://www.gutenberg.org/ebooks/2029', 'en', 98), +(35618, 'Wild Justice', 'Sprague, Ruth M.', '1994-08-01', 56, 'https://www.gutenberg.org/ebooks/152', 'en', 13450), +(35619, 'The Social History of Smoking', 'Apperson, George Latimer', '2006-04-01', 35, 'https://www.gutenberg.org/ebooks/18096', 'en', 5258), +(35620, 'Delusion and Dream : an Interpretation in the Light of Psychoanalysis of Gradiva', 'Freud, Sigmund', '2014-02-15', 85, 'https://www.gutenberg.org/ebooks/44917', 'en', 3640), +(35621, 'My Trip Around the World: August, 1895-May, 1896', 'Hunt, Eleonora', '2010-07-04', 54, 'https://www.gutenberg.org/ebooks/33079', 'en', 819), +(35622, 'Notes and Queries, Vol. IV, Number 98, September 13, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-01-03', 7, 'https://www.gutenberg.org/ebooks/38491', 'en', 105), +(35623, 'The Broken Thread', 'Le Queux, William', '2012-11-23', 9, 'https://www.gutenberg.org/ebooks/41459', 'en', 61), +(35624, 'A Holiday in Bed, and Other Sketches', 'Barrie, J. M. (James Matthew)', '2012-04-27', 17, 'https://www.gutenberg.org/ebooks/39543', 'en', 3092), +(35625, 'Harry Harding\'s Year of Promise', 'Raymond, Alfred', '2016-08-22', 5, 'https://www.gutenberg.org/ebooks/52872', 'en', 153), +(35626, 'Lands of the Slave and the Free; Or, Cuba, the United States, and Canada', 'Murray, Henry A. (Henry Anthony)', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11329', 'en', 1110), +(35627, 'Index of the Project Gutenberg Works of Arthur Conan Doyle', 'Doyle, Arthur Conan', '2018-12-30', 63, 'https://www.gutenberg.org/ebooks/58574', 'en', 198), +(35628, 'The Lightning Conductor: The Strange Adventures of a Motor-Car', 'Williamson, C. N. (Charles Norris)', '2010-10-07', 13, 'https://www.gutenberg.org/ebooks/33845', 'en', 6642); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(35629, 'The Great Round World and What Is Going On In It, Vol. 1, No. 36, July 15, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-05-07', 20, 'https://www.gutenberg.org/ebooks/15789', 'en', 1), +(35630, 'The Style Book of The Detroit News', 'Detroit news', '2010-06-27', 14, 'https://www.gutenberg.org/ebooks/32997', 'en', 10846), +(35631, 'The Mission of Janice Day', 'Long, Helen Beecher', '2008-06-28', 18, 'https://www.gutenberg.org/ebooks/25920', 'en', 51), +(35632, 'A Sketch of the Causes, Operations and Results of the San Francisco Vigilance Committee of 1856', 'Webb, Stephen Palfrey', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/5802', 'en', 13451), +(35633, 'Reminiscences: The Story of an Emigrant', 'Mattson, Hans', '2010-05-17', 16, 'https://www.gutenberg.org/ebooks/32399', 'en', 13452), +(35634, 'Studies in Modern Music, Second Series\r\nFrederick Chopin, Antonin Dvořák, Johannes Brahms', 'Hadow, W. H. (William Henry)', '2012-05-23', 20, 'https://www.gutenberg.org/ebooks/39771', 'en', 9299), +(35635, 'The English Novel', 'Saintsbury, George', '2004-12-26', 31, 'https://www.gutenberg.org/ebooks/14469', 'en', 7049), +(35636, 'Memoir of the Life and Services of Vice-Admiral Sir Jahleel Brenton, Baronet, K.C.B.', NULL, '2019-01-21', 3, 'https://www.gutenberg.org/ebooks/58746', 'en', 8366), +(35637, 'Miss Heck\'s Thanksgiving Party; or, Topsy Up To Date', 'Munsell, Ida Hamilton', '2013-12-01', 10, 'https://www.gutenberg.org/ebooks/44319', 'en', 13453), +(35638, 'Aventures du Capitaine Hatteras', 'Verne, Jules', '2004-04-01', 64, 'https://www.gutenberg.org/ebooks/11927', 'fr', 324), +(35639, 'The Strange Story of Rab Ráby', 'Jókai, Mór', '2011-07-15', 20, 'https://www.gutenberg.org/ebooks/36739', 'en', 13454), +(35640, 'American Masters of Painting\r\nBeing Brief Appreciations of Some American Painters', 'Caffin, Charles H. (Charles Henry)', '2019-06-07', 48, 'https://www.gutenberg.org/ebooks/59694', 'en', 6087), +(35641, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 04', 'Hakluyt, Richard', '2005-03-01', 24, 'https://www.gutenberg.org/ebooks/7769', 'en', 885), +(35642, 'Spiritual Tales\r\nRe-issue of the Shorter Stories of Fiona Macleod; Rearranged, with Additional Tales', 'Sharp, William', '2017-11-01', 40, 'https://www.gutenberg.org/ebooks/55865', 'en', 8984), +(35643, 'The Irish Twins', 'Perkins, Lucy Fitch', '2009-03-29', 41, 'https://www.gutenberg.org/ebooks/28431', 'en', 309), +(35644, 'History of the Jews, Vol. 4 (of 6)', 'Graetz, Heinrich', '2013-10-06', 32, 'https://www.gutenberg.org/ebooks/43900', 'en', 5932), +(35645, 'The Three Cities Trilogy: Rome, Volume 1', 'Zola, Émile', '2005-08-01', 21, 'https://www.gutenberg.org/ebooks/8721', 'en', 55), +(35646, 'The Dawn of the XIXth Century in England: A social sketch of the times', 'Ashton, John', '2015-07-10', 15, 'https://www.gutenberg.org/ebooks/49406', 'en', 3136), +(35647, 'Epistle of Jude', NULL, '2007-10-01', 3, 'https://www.gutenberg.org/ebooks/22937', 'en', 6543), +(35648, 'From the Easy Chair, Volume 2', 'Curtis, George William', '2011-04-27', 13, 'https://www.gutenberg.org/ebooks/35980', 'en', 4637), +(35649, 'Modern English Biography (volume 1 of 4) A-H', 'Boase, Frederic', '2017-07-06', 22, 'https://www.gutenberg.org/ebooks/55059', 'en', 13455), +(35650, 'Mrs. Piper & the Society for Psychical Research', 'Sage, Michael', '2006-09-25', 19, 'https://www.gutenberg.org/ebooks/19376', 'en', 13456), +(35651, 'Encyclopaedia Britannica, 11th Edition, \"Baconthorpe\" to \"Bankruptcy\"\r\nVolume 3, Part 1, Slice 2', 'Various', '2008-12-10', 36, 'https://www.gutenberg.org/ebooks/27479', 'en', 1081), +(35652, 'Moonshine & Clover', 'Housman, Laurence', '2011-01-05', 162, 'https://www.gutenberg.org/ebooks/34852', 'en', 179), +(35653, 'What is Property? An Inquiry into the Principle of Right and of Government', 'Proudhon, P.-J. (Pierre-Joseph)', '1995-11-01', 185, 'https://www.gutenberg.org/ebooks/360', 'en', 1745), +(35654, 'Punch, or the London Charivari, Vol. 93, Nov. 12, 1887', 'Various', '2012-03-31', 3, 'https://www.gutenberg.org/ebooks/39315', 'en', 134), +(35655, 'Andy Grant\'s Pluck', 'Alger, Horatio, Jr.', '2005-01-29', 59, 'https://www.gutenberg.org/ebooks/14831', 'en', 195), +(35656, 'In School and Out; or, The Conquest of Richard Grant.', 'Optic, Oliver', '2008-02-26', 28, 'https://www.gutenberg.org/ebooks/24698', 'en', 1655), +(35657, 'The Allen House; Or, Twenty Years Ago and Now', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 16, 'https://www.gutenberg.org/ebooks/4588', 'en', 658), +(35658, 'The Decameron (Day 6 to Day 10)\nContaining an hundred pleasant Novels', 'Boccaccio, Giovanni', '2016-07-22', 18, 'https://www.gutenberg.org/ebooks/52618', 'en', 12245), +(35659, 'The Three Brothers; vol. 3/3', 'Oliphant, Mrs. (Margaret)', '2018-11-22', 13, 'https://www.gutenberg.org/ebooks/58322', 'en', 400), +(35660, 'The Great Amulet', 'Diver, Maud', '2006-12-31', 14, 'https://www.gutenberg.org/ebooks/20238', 'en', 2244), +(35661, 'A History of Mediaeval Jewish Philosophy', 'Husik, Isaac', '2009-01-17', 66, 'https://www.gutenberg.org/ebooks/27821', 'en', 5846), +(35662, 'Memorias sobre a influencia dos descobrimentos portuguezes no conhecimento das plantas\nI. - Memoria sobre a Malagueta', 'Ficalho, Francisco Manuel de Melo, Conde de', '2009-02-12', 19, 'https://www.gutenberg.org/ebooks/28055', 'pt', 4656), +(35663, 'Morphine', 'Dubut de Laforest, Jean-Louis', '2006-02-06', 18, 'https://www.gutenberg.org/ebooks/17688', 'fr', 2815), +(35664, 'When Ghost Meets Ghost', 'De Morgan, William', '2010-01-09', 32, 'https://www.gutenberg.org/ebooks/30896', 'en', 8591), +(35665, 'Le livre, de l\'imprimé au numérique', 'Lebert, Marie', '2010-04-11', 31, 'https://www.gutenberg.org/ebooks/31944', 'fr', 2047), +(35666, 'Graham\'s Magazine Vol XXXII No. 1 January 1848', 'Various', '2009-06-21', 22, 'https://www.gutenberg.org/ebooks/29187', 'en', 162), +(35667, 'The Life of Jesus of Nazareth: A Study', 'Rhees, Rush', '2004-08-20', 14, 'https://www.gutenberg.org/ebooks/13228', 'en', 10446), +(35668, 'The Mansion', 'Van Dyke, Henry', '1996-10-01', 126, 'https://www.gutenberg.org/ebooks/704', 'en', 585), +(35669, 'The Sandman\'s Hour: Stories for Bedtime', 'Walker, Abbie Phillips', '2013-08-25', 105, 'https://www.gutenberg.org/ebooks/43558', 'en', 179), +(35670, 'Novelle e riviste drammatiche', 'Boito, Arrigo', '2009-05-18', 24, 'https://www.gutenberg.org/ebooks/28869', 'it', 13457), +(35671, '\"About My Father\'s Business\": Work Amidst the Sick, the Sad, and the Sorrowing', 'Archer, Thomas', '2016-01-20', 20, 'https://www.gutenberg.org/ebooks/50973', 'en', 7794), +(35672, 'The Orange-Yellow Diamond', 'Fletcher, J. S. (Joseph Smith)', '2005-11-01', 115, 'https://www.gutenberg.org/ebooks/9297', 'en', 128), +(35673, 'Thoughts on African Colonization', 'Garrison, William Lloyd', '2010-02-04', 34, 'https://www.gutenberg.org/ebooks/31178', 'en', 125), +(35674, 'The Bible, Douay-Rheims, Book 45: 1 Machabees\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8345', 'en', 13458), +(35675, 'Passeggiate per l\'Italia, vol. 5', 'Gregorovius, Ferdinand', '2015-05-27', 19, 'https://www.gutenberg.org/ebooks/49062', 'it', 1896), +(35676, 'Per auto door den Kaukasus naar Perzië\nDe Aarde en haar Volken, 1907', 'Anet, Claude', '2006-11-04', 27, 'https://www.gutenberg.org/ebooks/19712', 'nl', 4925), +(35677, 'Punch, Or the London Charivari, Volume 107, December 8th, 1894', 'Various', '2014-09-09', 17, 'https://www.gutenberg.org/ebooks/46816', 'en', 134), +(35678, 'Venus in Boston: A Romance of City Life', 'Thompson, George', '2009-03-07', 26, 'https://www.gutenberg.org/ebooks/28267', 'en', 1612), +(35679, 'Bob Cook and the German Spy', 'Tomlinson, Paul G. (Paul Greene)', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/9899', 'en', 146), +(35680, 'A Gunner Aboard the \"Yankee\"\r\nFrom the Diary of Number Five of the After Port Gun (Russell Doubleday): The Yarn of the Cruise and Fights of the Naval Reserves in the Spanish-American War', 'Doubleday, Russell', '2004-10-21', 30, 'https://www.gutenberg.org/ebooks/13826', 'en', 7433), +(35681, 'Judith: treurspel in vijf bedrijven', 'Hebbel, Friedrich', '2010-12-13', 9, 'https://www.gutenberg.org/ebooks/34638', 'nl', 3624), +(35682, 'The Jesuit Relations and Allied Documents, Vol. 3: Acadia, 1611-1616', NULL, '2014-07-07', 18, 'https://www.gutenberg.org/ebooks/46218', 'en', 1643), +(35683, 'Point Lace and Diamonds', 'Baker, George Augustus', '2005-08-21', 22, 'https://www.gutenberg.org/ebooks/16568', 'en', 8), +(35684, 'Five Years\' Explorations at Thebes\r\nA Record of Work Done 1907-1911 by The Earl of Carnarvon and Howard Carter', 'Carnarvon, George Edward Stanhope Molyneux Herbert, Earl of', '2015-02-28', 38, 'https://www.gutenberg.org/ebooks/48382', 'en', 13459), +(35685, 'The Magnificent Adventure\r\nBeing the Story of the World\'s Greatest Exploration and the Romance of a Very Gallant Gentleman', 'Hough, Emerson', '2009-10-20', 22, 'https://www.gutenberg.org/ebooks/30298', 'en', 13460), +(35686, 'A Footnote to History: Eight Years of Trouble in Samoa', 'Stevenson, Robert Louis', '1996-05-01', 110, 'https://www.gutenberg.org/ebooks/536', 'en', 13461), +(35687, 'American Historical and Literary Curiosities, Part 03', 'Smith, J. Jay (John Jay)', '2004-07-15', 17, 'https://www.gutenberg.org/ebooks/7903', 'en', 453), +(35688, 'Järkimiehet miettimässä', 'Hemmo, Kaarlo', '2006-10-10', 14, 'https://www.gutenberg.org/ebooks/19520', 'fi', 61), +(35689, 'The Esperanto Teacher: A Simple Course for Non-Grammarians', 'Fryer, Helen', '2005-05-01', 134, 'https://www.gutenberg.org/ebooks/8177', 'eo', 4976), +(35690, 'Der Ring', 'Wittenweiler, Heinrich, active 15th century', '2015-06-21', 23, 'https://www.gutenberg.org/ebooks/49250', 'de', 13462), +(35691, 'Encyclopaedia Britannica, 11th Edition, \"Home, Daniel\" to \"Hortensius, Quintus\"\r\nVolume 13, Slice 6', 'Various', '2012-03-13', 30, 'https://www.gutenberg.org/ebooks/39127', 'en', 1081), +(35692, 'The Sunbridge Girls at Six Star Ranch', 'Porter, Eleanor H. (Eleanor Hodgman)', '2008-05-23', 24, 'https://www.gutenberg.org/ebooks/25578', 'en', 62), +(35693, 'The Heart of Canyon Pass', 'Holmes, Thomas K.', '2011-08-03', 30, 'https://www.gutenberg.org/ebooks/36953', 'en', 8152), +(35694, 'The Puppet Show of Memory', 'Baring, Maurice', '2018-05-14', 23, 'https://www.gutenberg.org/ebooks/57158', 'en', 13463), +(35695, 'The Golden Fleece and The Heroes Who Lived Before Achilles', 'Colum, Padraic', '2011-10-29', 110, 'https://www.gutenberg.org/ebooks/37881', 'en', 2139), +(35696, 'Ting-a-ling', 'Stockton, Frank Richard', '2007-03-16', 38, 'https://www.gutenberg.org/ebooks/20836', 'en', 1007), +(35697, 'The Diary of a Saint', 'Bates, Arlo', '2013-01-07', 26, 'https://www.gutenberg.org/ebooks/41801', 'en', 3305), +(35698, 'The Arabian Nights Entertainments - Complete', NULL, '2004-05-01', 83, 'https://www.gutenberg.org/ebooks/5668', 'en', 3347), +(35699, 'Aventures surprenantes de Robinson Crusoé', 'Defoe, Daniel', '2018-09-24', 49, 'https://www.gutenberg.org/ebooks/57964', 'fr', 1592), +(35700, 'Harper\'s Young People, June 13, 1882\nAn Illustrated Weekly', 'Various', '2018-10-16', 9, 'https://www.gutenberg.org/ebooks/58110', 'en', 479), +(35701, 'Hints on Driving', 'Knight, C. Morley (Charles Lewis William Morley)', '2018-03-23', 15, 'https://www.gutenberg.org/ebooks/56816', 'en', 5362), +(35702, 'The Voice of the Ancient Bard', 'Blake, William', '2007-04-26', 5, 'https://www.gutenberg.org/ebooks/21178', 'en', 8), +(35703, 'Peru as It Is, Volume 1 (of 2)\r\nA Residence in Lima, and Other Parts of the Peruvian Republic, Comprising an Account of the Social and Physical Features of That Country', 'Smith, Archibald', '2019-03-15', 4, 'https://www.gutenberg.org/ebooks/59062', 'en', 371), +(35704, 'From the Lakes of Killarney to the Golden Horn', 'Field, Henry M. (Henry Martyn)', '2012-02-13', 34, 'https://www.gutenberg.org/ebooks/38869', 'en', 1408), +(35705, 'The Duchess of Rosemary Lane: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2016-11-19', 18, 'https://www.gutenberg.org/ebooks/53558', 'en', 137), +(35706, 'Under the Stars and Bars\r\nOr, Memories of Four Years Service with the Oglethorpes, of Augusta, Georgia', 'Clark, Walter A. (Walter Augustus)', '2012-10-08', 8, 'https://www.gutenberg.org/ebooks/40973', 'en', 13464), +(35707, 'The Pleasant Street Partnership: A Neighborhood Story', 'Leonard, Mary Finley', '2007-06-26', 6, 'https://www.gutenberg.org/ebooks/21944', 'en', 61), +(35708, 'Æsop\'s Fables, Embellished with One Hundred and Eleven Emblematical Devices.', 'Aesop', '2012-03-18', 92, 'https://www.gutenberg.org/ebooks/39187', 'en', 1141), +(35709, 'Ιστορίαι Ηροδότου, Τόμος 1', 'Herodotus', '2011-11-19', 44, 'https://www.gutenberg.org/ebooks/38055', 'el', 5663), +(35710, 'The Mysterious Island', 'Verne, Jules', '1998-04-01', 817, 'https://www.gutenberg.org/ebooks/1268', 'en', 323), +(35711, 'Carry\'s Rose; or, the Magic of Kindness. A Tale for the Young', 'Cupples, George, Mrs.', '2007-03-25', 8, 'https://www.gutenberg.org/ebooks/20896', 'en', 31), +(35712, 'The Woman Who Vowed (The Demetrian)', 'Harding, Ellison', '2011-10-22', 12, 'https://www.gutenberg.org/ebooks/37821', 'en', 26), +(35713, 'String Quartet No. 09 in C major Opus 59', 'Beethoven, Ludwig van', '2004-11-01', 11, 'https://www.gutenberg.org/ebooks/6871', 'en', 909), +(35714, 'Rivers to the Sea', 'Teasdale, Sara', '1996-07-01', 70, 'https://www.gutenberg.org/ebooks/596', 'en', 2185), +(35715, 'Among the Mushrooms: A Guide For Beginners', 'Dallas, Ellen M.', '2006-05-26', 48, 'https://www.gutenberg.org/ebooks/18452', 'en', 6834), +(35716, 'Carl Scharnhorst. Abenteuer eines deutschen Knaben in Amerika.', 'Armand', '2015-02-20', 44, 'https://www.gutenberg.org/ebooks/48322', 'de', 7095), +(35717, 'The Claims of Labour: An essay on the duties of the employers to the employed', 'Helps, Arthur, Sir', '2009-10-12', 15, 'https://www.gutenberg.org/ebooks/30238', 'en', 10307), +(35718, 'Following the Equator', 'Twain, Mark', '2005-09-01', 11, 'https://www.gutenberg.org/ebooks/9005', 'en', 819), +(35719, 'The Lady of Lynn', 'Besant, Walter', '2013-04-29', 47, 'https://www.gutenberg.org/ebooks/42618', 'en', 13465), +(35720, 'An International Episode', 'James, Henry', '2006-10-20', 11, 'https://www.gutenberg.org/ebooks/19580', 'en', 1426), +(35721, 'Min gamle Kammerat', 'Bang, Herman', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/12168', 'da', 6055), +(35722, 'Rhymes of the Rookies\r\nSunny Side of Soldier Service', 'Christian, W. E.', '2004-10-27', 3, 'https://www.gutenberg.org/ebooks/13886', 'en', 2100), +(35723, 'Essays Upon Some Controverted Questions', 'Huxley, Thomas Henry', '2010-12-19', 101, 'https://www.gutenberg.org/ebooks/34698', 'en', 814), +(35724, 'The Cavalier', 'Cable, George Washington', '2006-02-01', 28, 'https://www.gutenberg.org/ebooks/9839', 'en', 403), +(35725, 'Australia Revenged', 'Boomerang', '2009-07-04', 23, 'https://www.gutenberg.org/ebooks/29315', 'en', 61), +(35726, 'The Phantom Ship', 'Marryat, Frederick', '2004-07-19', 81, 'https://www.gutenberg.org/ebooks/12954', 'en', 324), +(35727, 'Ferdinand Vandiveer Hayden and the Founding of the Yellowstone National Park', 'Geological Survey (U.S.)', '2015-01-29', 15, 'https://www.gutenberg.org/ebooks/48110', 'en', 13466), +(35728, 'A Bell\'s Biography', 'Hawthorne, Nathaniel', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9237', 'en', 13467), +(35729, 'The Talk of the Town, Volume 1 (of 2)', 'Payn, James', '2015-01-13', 16, 'https://www.gutenberg.org/ebooks/47964', 'en', 12858), +(35730, 'The Beautiful Eyes of Ysidria', 'Gunnison, Charles A.', '2006-06-23', 20, 'https://www.gutenberg.org/ebooks/18660', 'en', 211), +(35731, 'A Great Success', 'Ward, Humphry, Mrs.', '2004-08-25', 20, 'https://www.gutenberg.org/ebooks/13288', 'en', 4288), +(35732, 'The Immortals', 'Duncan, David', '2016-04-19', 69, 'https://www.gutenberg.org/ebooks/51801', 'en', 3487), +(35733, 'Genoveeva Brabantin kreivitär\r\nHurskas kertomus suurista kärsimyksistä ja viattomuuden lopullisesta voitosta', 'Schmid, Christoph von', '2006-01-29', 63, 'https://www.gutenberg.org/ebooks/17628', 'fi', 13468), +(35734, 'Seven Keys to Baldpate', 'Biggers, Earl Derr', '2010-01-02', 79, 'https://www.gutenberg.org/ebooks/30836', 'en', 128), +(35735, 'In Château Land', 'Wharton, Anne Hollingsworth', '2009-01-24', 23, 'https://www.gutenberg.org/ebooks/27881', 'en', 13469), +(35736, 'The Matabele Campaign\r\nBeing a Narrative of the Campaign in Suppressing the Native Rising in Matabeleland and Mashonaland, 1896', 'Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron', '2014-10-20', 27, 'https://www.gutenberg.org/ebooks/47158', 'en', 13470), +(35737, 'The Empty Sleeve\nor, The Life and Hardships of Henry H. Meacham, in the Union Army', 'Meacham, Henry H.', '2011-03-15', 31, 'https://www.gutenberg.org/ebooks/35578', 'en', 444), +(35738, 'Jessie Carlton\nThe Story of a Girl who Fought with Little Impulse, the\nWizard, and Conquered Him', 'Wise, Daniel', '2008-10-18', 12, 'https://www.gutenberg.org/ebooks/26953', 'en', 1817), +(35739, 'Epäilijä: Kuvaus neljässä näytöksessä', 'Aho, Kalle', '2009-06-15', 4, 'https://www.gutenberg.org/ebooks/29127', 'fi', 402), +(35740, 'The PanGerman Plot Unmasked: Berlin\'s formidable peace-trap of \"the drawn war\"', 'Chéradame, André', '2019-04-11', 12, 'https://www.gutenberg.org/ebooks/59250', 'en', 5284), +(35741, 'The Heart\'s Highway: A Romance of Virginia in the Seventeenth Century', 'Freeman, Mary Eleanor Wilkins', '2003-10-01', 62, 'https://www.gutenberg.org/ebooks/4528', 'en', 4969), +(35742, 'Index of the Project Gutenberg Works of Hugh Walpole', 'Walpole, Hugh', '2018-11-30', 14, 'https://www.gutenberg.org/ebooks/58382', 'en', 198), +(35743, 'North America — Volume 2', 'Trollope, Anthony', '1999-08-01', 19, 'https://www.gutenberg.org/ebooks/1866', 'en', 1110), +(35744, 'Procopius\nHistory of the Wars, Books V. and VI.', 'Procopius', '2007-01-06', 67, 'https://www.gutenberg.org/ebooks/20298', 'en', 13471), +(35745, 'Le conte futur', 'Adam, Paul', '2005-05-30', 27, 'https://www.gutenberg.org/ebooks/15943', 'fr', 61), +(35746, 'Following the Sun-Flag: A Vain Pursuit Through Manchuria', 'Fox, John, Jr.', '2017-12-21', 21, 'https://www.gutenberg.org/ebooks/56218', 'en', 7672), +(35747, 'Kahdeksantoista runoniekkaa\nValikoima Korhosen, Lyytisen, Makkosen, Kymäläisen, Puhakan,\nRäikkösen y.m. runoja ja lauluja', NULL, '2008-02-18', 22, 'https://www.gutenberg.org/ebooks/24638', 'fi', 1171), +(35748, 'International Congress of Arts and Science, Volume 1\r\nPhilosophy and Metaphysics', NULL, '2011-12-10', 14, 'https://www.gutenberg.org/ebooks/38267', 'en', 13472), +(35749, 'The Rulers of the Lakes: A Story of George and Champlain', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-02-03', 17, 'https://www.gutenberg.org/ebooks/14891', 'en', 893), +(35750, 'The Sea Lady', 'Wells, H. G. (Herbert George)', '2011-04-20', 81, 'https://www.gutenberg.org/ebooks/35920', 'en', 580), +(35751, 'A Hazard of New Fortunes — Volume 4', 'Howells, William Dean', '2004-10-23', 16, 'https://www.gutenberg.org/ebooks/3369', 'en', 262), +(35752, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 03', 'Dante Alighieri', '2004-08-07', 17, 'https://www.gutenberg.org/ebooks/8781', 'en', 1082), +(35753, 'Second Sight', 'Nourse, Alan Edward', '2007-10-16', 58, 'https://www.gutenberg.org/ebooks/22997', 'en', 784), +(35754, 'Talents, Incorporated', 'Leinster, Murray', '2007-12-13', 60, 'https://www.gutenberg.org/ebooks/23845', 'en', 26), +(35755, 'Ylämaan leski: Kuvaus Skotlannin tuntureilta', 'Scott, Walter', '2015-03-24', 9, 'https://www.gutenberg.org/ebooks/48574', 'fi', 314), +(35756, 'A Wreath of Virginia Bay Leaves\nPoems of James Barron Hope', 'J. B. H. (James Barron Hope)', '2006-01-01', 6, 'https://www.gutenberg.org/ebooks/9653', 'en', 8), +(35757, 'Stamp Collecting as a Pastime', 'Nankivell, Edward J. (Edward James)', '2006-04-18', 17, 'https://www.gutenberg.org/ebooks/18204', 'en', 1267), +(35758, 'The Analysis of Beauty\nWritten with a view of fixing the fluctuating ideas of taste', 'Hogarth, William', '2016-03-15', 51, 'https://www.gutenberg.org/ebooks/51459', 'en', 322), +(35759, 'America, Volume 6 (of 6)', 'Cook, Joel', '2013-06-04', 8, 'https://www.gutenberg.org/ebooks/42872', 'en', 2655), +(35760, 'Ox-Team Days on the Oregon Trail', 'Meeker, Ezra', '2009-07-29', 40, 'https://www.gutenberg.org/ebooks/29543', 'en', 13473), +(35761, 'Dishes & Beverages of the Old South', 'McCulloch-Williams, Martha', '2009-04-04', 56, 'https://www.gutenberg.org/ebooks/28491', 'en', 13474), +(35762, 'Sonnets from the Portuguese', 'Browning, Elizabeth Barrett', '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/23079', 'en', 6689), +(35763, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 5', 'Various', '2017-06-16', 18, 'https://www.gutenberg.org/ebooks/54917', 'en', 6381), +(35764, 'Is Mars habitable? A critical examination of Professor Percival Lowell\'s book \"Mars and its canals,\" with an alternative explanation', 'Wallace, Alfred Russel', '2004-01-01', 43, 'https://www.gutenberg.org/ebooks/10855', 'en', 13475), +(35765, 'Coronation Rites', 'Woolley, Reginald Maxwell', '2019-05-30', 18, 'https://www.gutenberg.org/ebooks/59634', 'en', 3295), +(35766, 'By Advice of Counsel', 'Train, Arthur Cheney', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/11987', 'en', 9562), +(35767, 'The History of the Last Trial by Jury for Atheism in England\r\nA Fragment of Autobiography Submitted for the Perusal of Her Majesty\'s Attorney-General and the British Clergy', 'Holyoake, George Jacob', '2011-07-20', 146, 'https://www.gutenberg.org/ebooks/36799', 'en', 13476), +(35768, 'Account of the Romansh Language\nIn a Letter to Sir John Pringle, Bart. P. R. S.', 'Planta, Joseph', '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/10069', 'en', 13477), +(35769, 'The Lost Gold of the Montezumas: A Story of the Alamo', 'Stoddard, William O.', '2012-01-17', 13, 'https://www.gutenberg.org/ebooks/38603', 'en', 13478), +(35770, 'Dodo Wonders--', 'Benson, E. F. (Edward Frederic)', '2012-09-09', 27, 'https://www.gutenberg.org/ebooks/40719', 'en', 432), +(35771, 'Brink of Madness', 'Sheldon, Walter J.', '2010-05-12', 37, 'https://www.gutenberg.org/ebooks/32339', 'en', 26), +(35772, 'There Are Crimes and Crimes', 'Strindberg, August', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/4970', 'en', 402), +(35773, 'The Debit Account', 'Onions, Oliver', '2011-09-19', 17, 'https://www.gutenberg.org/ebooks/37479', 'en', 61), +(35774, 'The Wonders of the Jungle, Book One', 'Ghosh, Sarath Kumar', '2008-03-16', 85, 'https://www.gutenberg.org/ebooks/24852', 'en', 7394), +(35775, 'Notes on Old Peterborough', 'Percival, Andrew', '2014-03-05', 11, 'https://www.gutenberg.org/ebooks/45059', 'en', 13479), +(35776, 'Footprints in the Forest', 'Ellis, Edward Sylvester', '2008-07-06', 21, 'https://www.gutenberg.org/ebooks/25980', 'en', 1259), +(35777, 'History of the Jews in Russia and Poland, Volume 2 [of 3]\r\nFrom the Death of Alexander I until the Death of Alexander III (1825-1894)', 'Dubnow, Simon', '2005-04-30', 43, 'https://www.gutenberg.org/ebooks/15729', 'en', 13480), +(35778, 'Women in All Ages and in All Countries, v 1-10: An Index', NULL, '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32937', 'en', 198), +(35779, 'King Penda\'s Captain: A Romance of Fighting in the Days of the Anglo-Saxons', 'Mac Bride, Mac Kenzie', '2019-05-01', 19, 'https://www.gutenberg.org/ebooks/59406', 'en', 4617), +(35780, 'Historical Record of the Seventh, or the Queen\'s Own Regiment of Hussars\r\nContaining an Account of the Origin of the Regiment in 1690, and of Its Subsequent Services to 1842', 'Cannon, Richard', '2017-01-06', 4, 'https://www.gutenberg.org/ebooks/53900', 'en', 13481), +(35781, 'The Corner House Girls Snowbound\r\nHow They Went Away, What They Discovered, and How It Ended', 'Hill, Grace Brooks', '2011-12-28', 18, 'https://www.gutenberg.org/ebooks/38431', 'en', 13482), +(35782, 'The Tourist\'s Guide through the Country of Caernarvon\ncontaining a short sketch of its History, Antiquities, &c.', 'Williams, P. B. (Peter Bailey)', '2014-06-02', 21, 'https://www.gutenberg.org/ebooks/45865', 'en', 13483), +(35783, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 330, September 6, 1828', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11389', 'en', 133), +(35784, 'The Story of Troy', 'Homer', '2006-02-08', 57, 'https://www.gutenberg.org/ebooks/16990', 'en', 1019), +(35785, 'The Duke in the Suburbs', 'Wallace, Edgar', '2015-08-12', 61, 'https://www.gutenberg.org/ebooks/49694', 'en', 1335), +(35786, '雪月梅傳', 'Chen, Lang, active 18th century', '2008-10-01', 43, 'https://www.gutenberg.org/ebooks/26739', 'zh', 13484), +(35787, 'Liverpool: A Sketch Book', 'Brown, Samuel J. M. (Samuel John Milton)', '2017-03-09', 10, 'https://www.gutenberg.org/ebooks/54319', 'en', 13485), +(35788, 'Uppingham by the Sea: A Narrative of the Year at Borth', 'Skrine, John Huntley', '2006-03-22', 24, 'https://www.gutenberg.org/ebooks/18036', 'en', 13486), +(35789, 'Encyclopedia of Diet: A Treatise on the Food Question, Vol. 2 of 5', 'Christian, Eugene', '2015-04-20', 10, 'https://www.gutenberg.org/ebooks/48746', 'en', 3463), +(35790, 'Dead Man\'s Rock', 'Quiller-Couch, Arthur', '2006-02-23', 22, 'https://www.gutenberg.org/ebooks/17842', 'en', 759), +(35791, 'On the Reception of the \'Origin of Species\'', 'Huxley, Thomas Henry', '2000-02-01', 28, 'https://www.gutenberg.org/ebooks/2089', 'en', 5473), +(35792, 'The Foolish Lovers', 'Ervine, St. John G. (St. John Greer)', '2005-12-01', 31, 'https://www.gutenberg.org/ebooks/9461', 'en', 13487), +(35793, 'Cosmopolis — Complete', 'Bourget, Paul', '2004-10-30', 45, 'https://www.gutenberg.org/ebooks/3967', 'en', 58), +(35794, 'The Planetoid of Peril', 'Ernst, Paul', '2009-08-23', 39, 'https://www.gutenberg.org/ebooks/29771', 'en', 26), +(35795, 'The Fireside Picture Alphabet\r\nor Humour and Droll Moral Tales; or Words & their Meanings Illustrated', NULL, '2007-08-25', 15, 'https://www.gutenberg.org/ebooks/22399', 'en', 294), +(35796, 'Many Ways for Cooking Eggs', 'Rorer, S. T.', '2004-09-01', 70, 'https://www.gutenberg.org/ebooks/6429', 'en', 13488), +(35797, 'The Antichrist', 'Nietzsche, Friedrich Wilhelm', '2006-09-18', 1118, 'https://www.gutenberg.org/ebooks/19322', 'en', 1759), +(35798, 'Poems', 'Hugo, Victor', '2005-08-01', 454, 'https://www.gutenberg.org/ebooks/8775', 'en', 2629), +(35799, 'A Succinct Account of the Plague at Marseilles\nIts Symptoms and the Methods and Medicines Used for Curing It', 'Soulier, Monsieur', '2010-03-07', 8, 'https://www.gutenberg.org/ebooks/31548', 'en', 10093), +(35800, 'Persuasion', 'Austen, Jane', '2007-10-01', 108, 'https://www.gutenberg.org/ebooks/22963', 'en', 48), +(35801, 'The Mentor: Benjamin Franklin, Vol. 6, Num. 7, Serial No. 155, May 15, 1918', 'Hart, Albert Bushnell', '2015-07-16', 10, 'https://www.gutenberg.org/ebooks/49452', 'en', 854), +(35802, 'Chambers\'s Edinburgh Journal, No. 305\nNew Series, Saturday, November 3, 1849', 'Various', '2015-03-25', 17, 'https://www.gutenberg.org/ebooks/48580', 'en', 18), +(35803, 'Hathercourt', 'Molesworth, Mrs.', '2013-07-09', 11, 'https://www.gutenberg.org/ebooks/43168', 'en', 11373), +(35804, 'The Cathedral Church of Peterborough\nA Description Of Its Fabric And A Brief History Of The Episcopal See', 'Sweeting, W. D. (Walter Debenham)', '2004-10-05', 14, 'https://www.gutenberg.org/ebooks/13618', 'en', 13489), +(35805, 'Buch von der Deutschen Poeterey', 'Opitz, Martin', '2011-01-01', 38, 'https://www.gutenberg.org/ebooks/34806', 'de', 13490), +(35806, 'Episodes in Van Bibber\'s Life', 'Davis, Richard Harding', '1995-09-01', 35, 'https://www.gutenberg.org/ebooks/334', 'en', 61), +(35807, 'The Spider', 'Hume, Fergus', '2017-10-27', 26, 'https://www.gutenberg.org/ebooks/55831', 'en', 1425), +(35808, 'The Blue Dragon: A Tale of Recent Adventure in China', 'Munroe, Kirk', '2013-06-06', 21, 'https://www.gutenberg.org/ebooks/42886', 'en', 13491), +(35809, 'Practical Psychomancy and Crystal Gazing', 'Atkinson, William Walker', '2013-10-15', 36, 'https://www.gutenberg.org/ebooks/43954', 'en', 6179), +(35810, 'The Limit', 'Leverson, Ada', '2009-03-31', 27, 'https://www.gutenberg.org/ebooks/28465', 'en', 61), +(35811, 'Campfire Girls\' Lake Camp; or, Searching for New Adventures', 'Francis, Stella M.', '2019-01-17', 9, 'https://www.gutenberg.org/ebooks/58712', 'en', 7709), +(35812, 'How to Get on in the World: A Ladder to Practical Success', 'Calhoun, A. R. (Alfred Rochefort)', '2007-02-16', 40, 'https://www.gutenberg.org/ebooks/20608', 'en', 4065), +(35813, 'Search the Sky', 'Pohl, Frederik', '2016-06-03', 182, 'https://www.gutenberg.org/ebooks/52228', 'en', 26), +(35814, 'Dialstone Lane, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/11973', 'en', 1902), +(35815, 'Personal Memoirs of P. H. Sheridan, Volume 1, Part 3', 'Sheridan, Philip Henry', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/5856', 'en', 1433), +(35816, 'William Morris: Poet, Craftsman, Socialist', 'Cary, Elisabeth Luther', '2012-05-18', 24, 'https://www.gutenberg.org/ebooks/39725', 'en', 53), +(35817, 'Handbook of Railroad Construction; For the use of American engineers.\r\nContaining the necessary rules, tables, and formulæ for the location, construction, equipment, and management of railroads, as built in the United States.', 'Vose, George L. (George Leonard)', '2018-03-06', 14, 'https://www.gutenberg.org/ebooks/56688', 'en', 13492), +(35818, 'The Hidden Children', 'Chambers, Robert W. (Robert William)', '2004-01-01', 56, 'https://www.gutenberg.org/ebooks/4984', 'en', 9235), +(35819, 'The Pearl of Love; or, Josey\'s Gift', 'Leslie, Madeline', '2010-09-26', 6, 'https://www.gutenberg.org/ebooks/33811', 'en', 31), +(35820, 'Das Sternenkind und andere Geschichten: Naturgeschichtliche Märchen', 'Ewald, Carl', '2018-12-22', 12, 'https://www.gutenberg.org/ebooks/58520', 'de', 6089), +(35821, 'Ainsi Parlait Zarathoustra', 'Nietzsche, Friedrich Wilhelm', '2004-03-01', 172, 'https://www.gutenberg.org/ebooks/5258', 'fr', 902), +(35822, 'God\'s Plan with Men', 'Martin, T. T. (Thomas Theodore)', '2008-07-05', 21, 'https://www.gutenberg.org/ebooks/25974', 'en', 2313), +(35823, 'Peter', 'Benson, E. F. (Edward Frederic)', '2018-07-22', 13, 'https://www.gutenberg.org/ebooks/57568', 'en', 12817), +(35824, 'Harper\'s Young People, March 1, 1881\nAn Illustrated Weekly', 'Various', '2014-02-17', 2, 'https://www.gutenberg.org/ebooks/44943', 'en', 479), +(35825, 'A Decade of Italian Women, vol. 2 (of 2)', 'Trollope, Thomas Adolphus', '2014-06-05', 9, 'https://www.gutenberg.org/ebooks/45891', 'en', 4289), +(35826, 'Memoria sobre a cultura, e productos da cana de assucar', 'Gomes, José Caetano', '2008-04-23', 10, 'https://www.gutenberg.org/ebooks/25148', 'pt', 13493), +(35827, 'Deficiency and Delinquency: An Interpretation of Mental Testing', 'Miner, James Burt', '2016-08-17', 6, 'https://www.gutenberg.org/ebooks/52826', 'en', 13494), +(35828, 'The Contemporary Review, Volume 36, November 1879', 'Various', '2012-04-23', 21, 'https://www.gutenberg.org/ebooks/39517', 'en', 13495), +(35829, 'Pirke Avot: The Sayings of the Jewish Fathers', NULL, '2005-07-01', 73, 'https://www.gutenberg.org/ebooks/8547', 'en', 12702), +(35830, 'Wage Earning and Education', 'Lutz, R. R. (Rufus Rolla)', '2005-10-30', 14, 'https://www.gutenberg.org/ebooks/16964', 'en', 13496), +(35831, 'La alhambra; leyendas árabes', 'Fernández y González, Manuel', '2015-08-10', 28, 'https://www.gutenberg.org/ebooks/49660', 'es', 98), +(35832, 'The Communion and Communicant', 'Hoare, Edward', '2013-03-09', 19, 'https://www.gutenberg.org/ebooks/42288', 'en', 2386), +(35833, 'The Arena, Volume 4, No. 19, June, 1891', 'Various', '2006-08-24', 25, 'https://www.gutenberg.org/ebooks/19110', 'en', 883), +(35834, 'Jungle Tales of Tarzan', 'Burroughs, Edgar Rice', '1994-02-01', 314, 'https://www.gutenberg.org/ebooks/106', 'en', 13497), +(35835, 'Die Hochzeit des Mönchs', 'Meyer, Conrad Ferdinand', '2005-12-01', 12, 'https://www.gutenberg.org/ebooks/9495', 'de', 13498), +(35836, 'Madame Chrysantheme — Volume 3', 'Loti, Pierre', '2003-04-01', 6, 'https://www.gutenberg.org/ebooks/3993', 'en', 775), +(35837, 'The Facts of Reconstruction', 'Lynch, John Roy', '2005-07-01', 44, 'https://www.gutenberg.org/ebooks/16158', 'en', 13499), +(35838, 'First Course in the Theory of Equations', 'Dickson, Leonard E. (Leonard Eugene)', '2009-08-24', 498, 'https://www.gutenberg.org/ebooks/29785', 'en', 13500), +(35839, 'Œuvres Complètes de Frédéric Bastiat, tome 7\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2014-08-19', 15, 'https://www.gutenberg.org/ebooks/46628', 'fr', 1745), +(35840, 'The Law of Hemlock Mountain', 'Lundsford, Hugh', '2010-11-04', 20, 'https://www.gutenberg.org/ebooks/34208', 'en', 48), +(35841, 'A Winter Amid the Ice, and Other Thrilling Stories', 'Verne, Jules', '2009-05-01', 60, 'https://www.gutenberg.org/ebooks/28657', 'en', 58), +(35842, 'The Ivory Child', 'Haggard, H. Rider (Henry Rider)', '2006-03-31', 125, 'https://www.gutenberg.org/ebooks/2841', 'en', 2634), +(35843, 'The Marne: A Tale of the War', 'Wharton, Edith', '2013-01-16', 19, 'https://www.gutenberg.org/ebooks/41855', 'en', 579), +(35844, 'The Seven Streams', 'Deeping, Warwick', '2019-03-19', 20, 'https://www.gutenberg.org/ebooks/59096', 'en', 109), +(35845, 'Deutschland und Armenien, 1914-1918: Sammlung diplomatischer Aktenstücke', NULL, '2018-10-21', 8, 'https://www.gutenberg.org/ebooks/58144', 'de', 6183), +(35846, 'Notes and Queries, Vol. V, Number 126, March 27, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-10-08', 18, 'https://www.gutenberg.org/ebooks/40987', 'en', 105), +(35847, 'Poliisikoira: Kertomus Bellan suorittamasta urotyöstä Kytölän kulmakunnalla', 'Kivinen, Ilmari', '2018-09-18', 10, 'https://www.gutenberg.org/ebooks/57930', 'fi', 175), +(35848, 'Kincaid\'s Battery', 'Cable, George Washington', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11719', 'en', 403), +(35849, 'In Wild Rose Time', 'Douglas, Amanda M.', '2011-07-30', 19, 'https://www.gutenberg.org/ebooks/36907', 'en', 1708), +(35850, 'Calumny Refuted by Facts From Liberia\r\nWith Extracts From the Inaugural Address of the Coloured President Roberts; an Eloquent Speech of Hilary Teage, a Coloured Senator; and Extracts From a Discourse by H. H. Garnett, a Fugitive Slave, on the Past and Present Condition, and Destiny of the Coloured Race. Presented to the Boston Anti-slavery Bazaar, U.S., By the Author of \"A Tribute for the Negro.\"', 'Armistead, Wilson', '2012-10-15', 10, 'https://www.gutenberg.org/ebooks/41069', 'en', 4073), +(35851, 'La Guerre du Paraguay', 'Reclus, Elisée', '2012-03-17', 18, 'https://www.gutenberg.org/ebooks/39173', 'fr', 10710), +(35852, 'Galeni pergamensis de temperamentis, et de inaequali intemperie', 'Galen', '2019-02-27', 12, 'https://www.gutenberg.org/ebooks/58978', 'la', 12083), +(35853, 'Conduct of Sir William Howe', 'Mauduit, Israel', '2010-08-16', 14, 'https://www.gutenberg.org/ebooks/33449', 'en', 13501), +(35854, 'Jerry\'s Reward', 'Barnett, Evelyn Snead', '2007-03-20', 22, 'https://www.gutenberg.org/ebooks/20862', 'en', 4426), +(35855, 'Collected Articles of Frederick Douglass', 'Douglass, Frederick', '1994-01-01', 258, 'https://www.gutenberg.org/ebooks/99', 'en', 8180), +(35856, 'Poetical Works of Robert Bridges, Volume 1', 'Bridges, Robert', '2017-05-26', 10, 'https://www.gutenberg.org/ebooks/54789', 'en', 54), +(35857, 'The Go Ahead Boys and the Racing Motor-Boat', 'Kay, Ross', '1996-06-01', 27, 'https://www.gutenberg.org/ebooks/562', 'en', 153), +(35858, 'The Indolence of the Filipino', 'Rizal, José', '2004-11-01', 156, 'https://www.gutenberg.org/ebooks/6885', 'en', 12350), +(35859, 'La dame aux camélias', 'Dumas, Alexandre', '2000-12-01', 143, 'https://www.gutenberg.org/ebooks/2419', 'fr', 2478), +(35860, 'The Virginians', 'Thackeray, William Makepeace', '2005-05-01', 88, 'https://www.gutenberg.org/ebooks/8123', 'en', 2717), +(35861, '\"Buffalo Bill\" from Prairie to Palace: An Authentic History of the Wild West', 'Burke, John M.', '2015-06-13', 26, 'https://www.gutenberg.org/ebooks/49204', 'en', 11660), +(35862, 'Andersen\'s Fairy Tales', 'Andersen, H. C. (Hans Christian)', '2006-10-20', 80, 'https://www.gutenberg.org/ebooks/19574', 'en', 10324), +(35863, 'Out of the Fog: A Story of the Sea', 'Ober, Charles K. (Charles Kellogg)', '2005-04-01', 10, 'https://www.gutenberg.org/ebooks/7957', 'en', 13502), +(35864, 'The Ten Pleasures of Marriage\r\nand the Second Part, The Confession of the New Married Couple', 'Marsh, A.', '2004-10-26', 57, 'https://www.gutenberg.org/ebooks/13872', 'en', 1451), +(35865, 'Philosophiae Naturalis Principia Mathematica', 'Newton, Isaac', '2009-03-01', 877, 'https://www.gutenberg.org/ebooks/28233', 'la', 13503), +(35866, 'The Woodman: A Romance of the Times of Richard III', 'James, G. P. R. (George Payne Rainsford)', '2015-10-27', 18, 'https://www.gutenberg.org/ebooks/50329', 'en', 13504), +(35867, 'At Pinney\'s Ranch\n1898', 'Bellamy, Edward', '2007-09-21', 20, 'https://www.gutenberg.org/ebooks/22709', 'en', 179), +(35868, 'Scientific American Architects and Builders Edition, No. 26, Dec., 1887', 'Various', '2016-01-14', 12, 'https://www.gutenberg.org/ebooks/50927', 'en', 13505), +(35869, 'Species Plantarum, Sections IV-V', 'Linné, Carl von', '2008-10-26', 20, 'https://www.gutenberg.org/ebooks/27049', 'la', 6858), +(35870, 'The Land\'s End: A Naturalist\'s Impressions In West Cornwall, Illustrated', 'Hudson, W. H. (William Henry)', '2015-01-18', 44, 'https://www.gutenberg.org/ebooks/47990', 'en', 2082), +(35871, 'The High History of the Holy Graal', NULL, '1996-12-01', 40, 'https://www.gutenberg.org/ebooks/750', 'en', 8104), +(35872, 'Avojalka', 'Auerbach, Berthold', '2006-06-26', 10, 'https://www.gutenberg.org/ebooks/18694', 'fi', 61), +(35873, 'The Colonel\'s Dream', 'Chesnutt, Charles W. (Charles Waddell)', '2006-11-09', 23, 'https://www.gutenberg.org/ebooks/19746', 'en', 12104), +(35874, 'Suur-isänmaa: Romaani menneisyydestä, nykyisyydestä ja tulevaisuudesta', 'Kara, Jalmari', '2017-08-31', 17, 'https://www.gutenberg.org/ebooks/55469', 'fi', 175), +(35875, 'Un jardin sur l\'Oronte', 'Barrès, Maurice', '2014-09-11', 19, 'https://www.gutenberg.org/ebooks/46842', 'fr', 259), +(35876, 'The Bible, Douay-Rheims, Book 11: 3 Kings\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8311', 'en', 13506), +(35877, 'Atoms in Agriculture: Applications of Nuclear Science to Agriculture (Revised)', 'Osborne, Thomas S.', '2015-05-23', 7, 'https://www.gutenberg.org/ebooks/49036', 'en', 13507), +(35878, 'Inaugural Presidential Address, Official Transcript', 'Obama, Barack', '2009-01-20', 21, 'https://www.gutenberg.org/ebooks/28001', 'en', 9921), +(35879, 'Teckningar och drömmar', 'Runeberg, Fredrika Charlotta Tengström', '2009-01-23', 10, 'https://www.gutenberg.org/ebooks/27875', 'sv', 5198), +(35880, 'Indian Summer', 'Howells, William Dean', '2005-01-01', 44, 'https://www.gutenberg.org/ebooks/7359', 'en', 2741), +(35881, 'Memoirs of the Extraordinary Military Career of John Shipp\nLate a Lieut. in His Majesty\'s 87th Regiment', 'Shipp, John', '2010-04-07', 10, 'https://www.gutenberg.org/ebooks/31910', 'en', 13508), +(35882, 'The Water-Babies', 'Kingsley, Charles', '2011-06-03', 63, 'https://www.gutenberg.org/ebooks/36309', 'en', 4483), +(35883, 'The Passenger Pigeon', NULL, '2014-01-22', 18, 'https://www.gutenberg.org/ebooks/44729', 'en', 13509), +(35884, 'Extracts from Adam\'s Diary, translated from the original ms.', 'Twain, Mark', '2004-09-15', 131, 'https://www.gutenberg.org/ebooks/1892', 'en', 2101), +(35885, 'Havahtuneita: Kuvaus nykyaikaisesta haaremielämästä', 'Loti, Pierre', '2018-11-29', 13, 'https://www.gutenberg.org/ebooks/58376', 'fi', 1850), +(35886, 'Le Roi des Étudiants', 'Dick, Vinceslas-Eugène', '2004-11-16', 12, 'https://www.gutenberg.org/ebooks/14059', 'fr', 61), +(35887, 'The Sea: Its Stirring Story of Adventure, Peril, & Heroism. Volume 1', 'Whymper, Frederick', '2012-04-01', 23, 'https://www.gutenberg.org/ebooks/39341', 'en', 819), +(35888, 'Gwaith Alun', 'Blackwell, John, Alun', '2005-02-01', 21, 'https://www.gutenberg.org/ebooks/14865', 'cy', 13510), +(35889, 'The Joy of Captain Ribot', 'Palacio Valdés, Armando', '2011-12-13', 9, 'https://www.gutenberg.org/ebooks/38293', 'en', 480), +(35890, 'The Life of John Marshall, Volume 2: Politician, diplomatist, statesman, 1789-1801', 'Beveridge, Albert J. (Albert Jeremiah)', '2012-08-03', 13, 'https://www.gutenberg.org/ebooks/40389', 'en', 13511), +(35891, 'The Hour of the Dragon', 'Howard, Robert E. (Robert Ervin)', '2013-03-02', 280, 'https://www.gutenberg.org/ebooks/42243', 'en', 2513), +(35892, 'Women in the Life of Balzac', 'Floyd, Juanita Helm', '2002-04-01', 7, 'https://www.gutenberg.org/ebooks/3164', 'en', 12428), +(35893, 'Manual of Military Training\nSecond, Revised Edition', 'Moss, James A. (James Alfred)', '2008-09-26', 21, 'https://www.gutenberg.org/ebooks/26706', 'en', 13512), +(35894, 'Sans dessus dessous', 'Verne, Jules', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12533', 'fr', 13513), +(35895, 'The Thames: A Sketch-Book', 'Sharpley, R. (Reginald)', '2017-03-09', 8, 'https://www.gutenberg.org/ebooks/54326', 'en', 13514), +(35896, 'Sagittulae, Random Verses', 'Bowling, Edward Woodley', '2006-03-17', 18, 'https://www.gutenberg.org/ebooks/18009', 'en', 8), +(35897, 'A student\'s history of education', 'Graves, Frank Pierrepont', '2019-08-17', 321, 'https://www.gutenberg.org/ebooks/60113', 'en', 3474), +(35898, 'Dal primo piano alla soffitta', 'Castelnuovo, Enrico', '2009-12-13', 13, 'https://www.gutenberg.org/ebooks/30663', 'it', 61), +(35899, 'Novelle umoristiche', 'Albertazzi, Adolfo', '2015-04-24', 95, 'https://www.gutenberg.org/ebooks/48779', 'it', 474), +(35900, 'Appletons\' Popular Science Monthly, December 1898\nVolume LIV, No. 2, December 1898', 'Various', '2013-08-03', 54, 'https://www.gutenberg.org/ebooks/43391', 'en', 210), +(35901, 'Notes and Queries, Number 16, February 16, 1850', 'Various', '2005-07-03', 5, 'https://www.gutenberg.org/ebooks/16193', 'en', 105), +(35902, 'Gillingwater\'s History of Lowestoft\na reprint: with a chapter of more recent events', 'Gillingwater, Edmund', '2016-04-04', 7, 'https://www.gutenberg.org/ebooks/51654', 'en', 13515), +(35903, 'A Romance of Youth — Volume 1', 'Coppée, François', '2003-04-01', 23, 'https://www.gutenberg.org/ebooks/3958', 'en', 560), +(35904, 'The Eichhofs: A Romance', 'Bethusy-Huc, Valeska, Gräfin von', '2011-02-18', 6, 'https://www.gutenberg.org/ebooks/35311', 'en', 803), +(35905, 'Entertainments for Home, Church and School', 'Seeger, Frederica', '2004-09-01', 23, 'https://www.gutenberg.org/ebooks/6416', 'en', 1415), +(35906, 'The Concept of Nature\nThe Tarner Lectures Delivered in Trinity College, November 1919', 'Whitehead, Alfred North', '2006-07-16', 113, 'https://www.gutenberg.org/ebooks/18835', 'en', 354), +(35907, 'Graham\'s Magazine, Vol. XLI, No. 1, July 1852', 'Various', '2014-12-21', 23, 'https://www.gutenberg.org/ebooks/47731', 'en', 380), +(35908, 'Cours de philosophie positive. (6/6)', 'Comte, Auguste', '2015-12-28', 22, 'https://www.gutenberg.org/ebooks/50786', 'fr', 3926), +(35909, 'The Man in Court', 'Wells, Frederic DeWitt', '2005-11-10', 7, 'https://www.gutenberg.org/ebooks/17041', 'en', 13516), +(35910, 'Lost in the Forest: Wandering Will\'s Adventures in South America', 'Ballantyne, R. M. (Robert Michael)', '2007-10-31', 47, 'https://www.gutenberg.org/ebooks/23274', 'en', 3242), +(35911, 'Æsop\'s Fables', 'Aesop', '2016-09-20', 79, 'https://www.gutenberg.org/ebooks/53103', 'en', 13517), +(35912, 'Tales and Novels of J. de La Fontaine — Volume 19', 'La Fontaine, Jean de', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/5293', 'en', 2629), +(35913, 'King Lear\'s Wife; The Crier by Night; The Riding to Lithend; Midsummer-Eve; Laodice and Danaë', 'Bottomley, Gordon', '2011-09-16', 15, 'https://www.gutenberg.org/ebooks/37446', 'en', 402), +(35914, 'Mutual Aid: A Factor of Evolution', 'Kropotkin, Petr Alekseevich, kniaz', '2003-08-01', 223, 'https://www.gutenberg.org/ebooks/4341', 'en', 11525), +(35915, 'Kertoelmia', 'Kiellman-Göransson, Julius Axel', '2011-07-03', 12, 'https://www.gutenberg.org/ebooks/36594', 'fi', 61), +(35916, 'Mrs. Leary\'s Cow: A Legend of Chicago', 'Hine, C. C. (Charles Cole)', '2014-03-07', 14, 'https://www.gutenberg.org/ebooks/45066', 'en', 13518), +(35917, 'The Great Round World and What Is Going On In It, Vol. 1, No. 25, April 29, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-26', 17, 'https://www.gutenberg.org/ebooks/15716', 'en', 1), +(35918, 'The Ruined Cities of Zululand', 'Walmsley, Hugh Mulleneux', '2010-06-20', 18, 'https://www.gutenberg.org/ebooks/32908', 'en', 13519), +(35919, 'Tom Slade on Overlook Mountain', 'Fitzhugh, Percy Keese', '2019-05-05', 29, 'https://www.gutenberg.org/ebooks/59439', 'en', 167), +(35920, 'The King in Yellow, Part 1', 'Chambers, Robert W. (Robert William)', '2007-05-22', 16, 'https://www.gutenberg.org/ebooks/21523', 'en', 770), +(35921, 'Minority Report of the Committee on Railways in Relation to the Hoosac Tunnel and the Railroads Leading Thereto\r\nWith a bill to incorporate the State Board of Trustees of the Hoosac Tunnel Railroad; also the speech delivered by Hon. E. P. Carpenter in the Senate of Massachusetts, June 3, 1873, in support of the same', 'Massachusetts. General Court. Committee on Railways and Canals', '2012-08-16', 11, 'https://www.gutenberg.org/ebooks/40514', 'en', 13520), +(35922, 'The Brick Moon, and Other Stories', 'Hale, Edward Everett', '1999-02-01', 100, 'https://www.gutenberg.org/ebooks/1633', 'en', 179), +(35923, '李娃傳', 'Bai, Xingjian', '2007-12-27', 40, 'https://www.gutenberg.org/ebooks/24051', 'zh', 13521), +(35924, 'Alphabetical Catalogue of Books in General Literature and Fiction [1913]', 'Chatto & Windus (Firm)', '2014-02-23', 5, 'https://www.gutenberg.org/ebooks/44988', 'en', 13522), +(35925, 'Skamba Kankliah Ir Trimintai', NULL, '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10264', 'lt', 13523), +(35926, 'Corporal Tikitanu, V.C.', 'Fussell, J. C. (James Coldham)', '2018-01-31', 3, 'https://www.gutenberg.org/ebooks/56471', 'en', 13524), +(35927, 'L\'Olimpia', 'Porta, Giambattista della', '2008-04-26', 5, 'https://www.gutenberg.org/ebooks/25183', 'it', 407), +(35928, 'The Dictator', 'Marlowe, Stephen', '2010-04-25', 35, 'https://www.gutenberg.org/ebooks/32134', 'en', 9294), +(35929, 'Das Liebeskonzil: Eine Himmels-Tragödie in fünf Aufzügen', 'Panizza, Oskar', '2013-12-08', 9, 'https://www.gutenberg.org/ebooks/44386', 'de', 5137), +(35930, 'Some Account of the Public Life of the Late Lieutenant-General Sir George Prevost, Bart.\r\nParticularly of His Services in the Canadas, Including a Reply to the Strictures on His Military Character, Contained in an Article in the Quarterly Review', 'Brenton, E. B.', '2011-10-09', 14, 'https://www.gutenberg.org/ebooks/37674', 'en', 7149), +(35931, 'Lexique comparé de la langue de Molière et des écrivains du XVIIe siècle', 'Génin, F. (François)', '2016-10-21', 10, 'https://www.gutenberg.org/ebooks/53331', 'fr', 13525), +(35932, 'Digger Smith', 'Dennis, C. J. (Clarence James)', '2005-04-02', 27, 'https://www.gutenberg.org/ebooks/15524', 'en', 2474), +(35933, 'The World of Ice', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 19, 'https://www.gutenberg.org/ebooks/21711', 'en', 625), +(35934, 'Diary of Samuel Pepys — Volume 50: February 1666-67', 'Pepys, Samuel', '2004-12-01', 11, 'https://www.gutenberg.org/ebooks/4173', 'en', 201), +(35935, 'Napoleon', 'Querido, Is. (Israël)', '2014-03-29', 6, 'https://www.gutenberg.org/ebooks/45254', 'nl', 840), +(35936, 'A Hundred Anecdotes of Animals', NULL, '2008-01-12', 125, 'https://www.gutenberg.org/ebooks/24263', 'en', 1787), +(35937, 'Chinese Literature\nComprising the Analects of Confucius, the Sayings of Mencius, the Shi-King, the Travels of Fâ-Hien, and the Sorrows of Han', 'Mencius', '2003-11-01', 101, 'https://www.gutenberg.org/ebooks/10056', 'en', 13526), +(35938, 'The Details of the Rocket System', 'Congreve, William, Sir', '2018-08-28', 21, 'https://www.gutenberg.org/ebooks/57791', 'en', 13527), +(35939, 'Through Welsh Doorways', 'Marks, Jeannette Augustus', '2012-09-10', 24, 'https://www.gutenberg.org/ebooks/40726', 'en', 179), +(35940, 'Tarzan the Untamed', 'Burroughs, Edgar Rice', '1998-07-01', 209, 'https://www.gutenberg.org/ebooks/1401', 'en', 580), +(35941, 'Vergif: Een Roman uit het Noorsch', 'Kielland, Alexander Lange', '2010-05-09', 12, 'https://www.gutenberg.org/ebooks/32306', 'nl', 1164), +(35942, 'The Memoirs of Maria Stella (Lady Newborough)', 'Ungern-Sternberg, Maria Stella Petronilla, Baroness', '2018-02-25', 14, 'https://www.gutenberg.org/ebooks/56643', 'en', 13528), +(35943, 'The Constable\'s Move\nCaptains All, Book 4.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/11184', 'en', 1224), +(35944, 'The Girl from Sunset Ranch; Or, Alone in a Great City', 'Marlowe, Amy Bell', '2008-09-05', 26, 'https://www.gutenberg.org/ebooks/26534', 'en', 8925), +(35945, 'The Suffering of Being Kafka', 'Vaknin, Samuel', '2004-06-01', 33, 'https://www.gutenberg.org/ebooks/12701', 'en', 179), +(35946, 'Noon-Day Fancies for Our Little Pets\nFully Illustrated', NULL, '2015-07-21', 4, 'https://www.gutenberg.org/ebooks/49499', 'en', 388), +(35947, 'Cognac-idillek: novellák', 'Kóbor, Tamás', '2013-02-11', 3, 'https://www.gutenberg.org/ebooks/42071', 'hu', 179), +(35948, 'The Venus Trap', 'Smith, Evelyn E.', '2010-03-10', 70, 'https://www.gutenberg.org/ebooks/31583', 'en', 5065), +(35949, 'Letters to His Son, 1752\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/3356', 'en', 740), +(35950, 'A Day with Keats', 'Byron, May', '2009-11-11', 35, 'https://www.gutenberg.org/ebooks/30451', 'en', 1977), +(35951, 'Animal Heroes', 'Seton, Ernest Thompson', '2000-08-01', 64, 'https://www.gutenberg.org/ebooks/2284', 'en', 4589); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(35952, 'The Story in Primary Instruction: Sixteen Stories and How to Use Them', 'Allison, Samuel B. (Samuel Buell)', '2017-02-05', 3, 'https://www.gutenberg.org/ebooks/54114', 'en', 341), +(35953, 'The Ladies\' Book of Etiquette, and Manual of Politeness\nA Complete Hand Book for the Use of the Lady in Polite Society', 'Hartley, Florence', '2011-01-30', 625, 'https://www.gutenberg.org/ebooks/35123', 'en', 5272), +(35954, 'Spring Street\nA Story of Los Angeles', 'Richardson, James Hugh', '2007-08-01', 27, 'https://www.gutenberg.org/ebooks/22194', 'en', 13529), +(35955, 'Two Poems: Class Day Poem; The Purple Hills', 'Conger, Henry Rutgers', '2016-03-15', 4, 'https://www.gutenberg.org/ebooks/51466', 'en', 7061), +(35956, 'An Exposition of the Last Psalme', 'Boys, John', '2005-12-10', 8, 'https://www.gutenberg.org/ebooks/17273', 'en', 2745), +(35957, 'The Comedy of Errors\nThe Works of William Shakespeare [Cambridge Edition] [9 vols.]', 'Shakespeare, William', '2007-12-30', 77, 'https://www.gutenberg.org/ebooks/23046', 'en', 907), +(35958, 'Ancient China Simplified', 'Parker, Edward Harper', '2004-10-01', 88, 'https://www.gutenberg.org/ebooks/6624', 'en', 4635), +(35959, 'History of Spanish Literature, vol. 1 (of 3)', 'Ticknor, George', '2017-06-17', 16, 'https://www.gutenberg.org/ebooks/54928', 'en', 4785), +(35960, 'Engelbrekt Engelbrektinpoika 1\r\nKaksiosainen historiallinen romaani', 'Starbäck, C. Georg (Carl Georg)', '2014-11-30', 12, 'https://www.gutenberg.org/ebooks/47503', 'fi', 2168), +(35961, 'Washington\'s Birthday\r\nIts history, observance, spirit, and significance as related in prose and verse, with a selection from Washington\'s speeches and writings', NULL, '2005-02-22', 22, 'https://www.gutenberg.org/ebooks/15140', 'en', 13530), +(35962, 'Kolme kertomusta: Koteloitunut ihminen. Karviaismarjat. Rakkaudesta.', 'Chekhov, Anton Pavlovich', '2016-08-01', 22, 'https://www.gutenberg.org/ebooks/52687', 'fi', 4710), +(35963, 'The Weathercock: Being the Adventures of a Boy with a Bias', 'Fenn, George Manville', '2007-05-08', 20, 'https://www.gutenberg.org/ebooks/21375', 'en', 4357), +(35964, 'Ethan Frome', 'Wharton, Edith', '2003-10-01', 1024, 'https://www.gutenberg.org/ebooks/4517', 'en', 13531), +(35965, 'Bird Guide: Land Birds East of the Rockies, from Parrots to Bluebirds', 'Reed, Chester A. (Chester Albert)', '2014-05-11', 8, 'https://www.gutenberg.org/ebooks/45630', 'en', 13532), +(35966, 'The Breeding Birds of Kansas', 'Johnston, Richard F.', '2011-08-25', 17, 'https://www.gutenberg.org/ebooks/37210', 'en', 13533), +(35967, 'The Taleef Shereef; Or, Indian Materia Medica', NULL, '2016-12-18', 18, 'https://www.gutenberg.org/ebooks/53755', 'en', 13534), +(35968, 'The World\'s Fair\r\nOr, Children\'s prize gift book of the Great Exhibition of 1851 : describing the beautiful inventions and manufactures exhibited therein : with pretty stories about the people who have made and sent them : and how they live when at home.', 'Anonymous', '2004-11-19', 26, 'https://www.gutenberg.org/ebooks/14092', 'en', 13535), +(35969, 'The Works of Max Beerbohm', 'Beerbohm, Max, Sir', '1999-08-01', 55, 'https://www.gutenberg.org/ebooks/1859', 'en', 20), +(35970, 'Michelangelo', 'Rolland, Romain', '2010-06-10', 41, 'https://www.gutenberg.org/ebooks/32762', 'en', 3594), +(35971, 'Arbuthnotiana: The Story of the St. Alb-ns Ghost (1712) A Catalogue of Dr. Arbuthnot\'s Library (1779)', NULL, '2012-11-05', 14, 'https://www.gutenberg.org/ebooks/41290', 'en', 13536), +(35972, 'The Bath Comedy', 'Castle, Agnes', '2017-12-23', 16, 'https://www.gutenberg.org/ebooks/56227', 'en', 13537), +(35973, 'The Cycle of Spring', 'Tagore, Rabindranath', '2008-02-13', 44, 'https://www.gutenberg.org/ebooks/24607', 'en', 13538), +(35974, 'Aunt Jane\'s Nieces out West', 'Baum, L. Frank (Lyman Frank)', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10432', 'en', 5372), +(35975, 'The Freedom of Science', 'Donat, Josef', '2012-07-26', 10, 'https://www.gutenberg.org/ebooks/40342', 'en', 13539), +(35976, 'Abrégé de l\'Histoire Générale des Voyages (Tome 5)', 'La Harpe, Jean-François de', '2011-12-09', 11, 'https://www.gutenberg.org/ebooks/38258', 'fr', 885), +(35977, 'The Raven', 'Poe, Edgar Allan', '1997-10-01', 173, 'https://www.gutenberg.org/ebooks/1065', 'en', 13540), +(35978, 'Off Course', 'Reynolds, Mack', '2009-09-19', 52, 'https://www.gutenberg.org/ebooks/30035', 'en', 26), +(35979, 'Fancy\'s Show-Box (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 31, 'https://www.gutenberg.org/ebooks/9208', 'en', 3175), +(35980, 'An Old Man\'s Darling', 'Miller, Alex. McVeigh, Mrs.', '2017-04-19', 5, 'https://www.gutenberg.org/ebooks/54570', 'en', 61), +(35981, '楊家將演義', 'Xiong, Damu, active 16th century', '2008-10-28', 15, 'https://www.gutenberg.org/ebooks/27082', 'zh', 3870), +(35982, 'Herbals, Their Origin and Evolution: A Chapter in the History of Botany 1470-1670', 'Arber, Agnes Robertson', '2014-09-18', 62, 'https://www.gutenberg.org/ebooks/46889', 'en', 13541), +(35983, 'The Proverbs of Scotland', 'Hislop, Alexander', '2008-07-29', 21, 'https://www.gutenberg.org/ebooks/26150', 'en', 13542), +(35984, 'Femmes Rêvées', 'Ferland, Albert', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12365', 'fr', 7420), +(35985, 'Le Tour du Monde; Nouvelles Hébrides\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-07', 5, 'https://www.gutenberg.org/ebooks/29924', 'fr', 1673), +(35986, 'Storm Warriors; or, Life-Boat Work on the Goodwin Sands', 'Gilmore, John', '2013-03-26', 17, 'https://www.gutenberg.org/ebooks/42415', 'en', 13543), +(35987, 'Wolfville', 'Lewis, Alfred Henry', '2003-02-01', 41, 'https://www.gutenberg.org/ebooks/3732', 'en', 774), +(35988, 'David Harum\nA Story of American Life', 'Westcott, Edward Noyes', '2006-01-28', 25, 'https://www.gutenberg.org/ebooks/17617', 'en', 2287), +(35989, 'Aunt Charlotte\'s Stories of Greek History', 'Yonge, Charlotte M. (Charlotte Mary)', '2009-12-30', 21, 'https://www.gutenberg.org/ebooks/30809', 'en', 2139), +(35990, 'Il Vino: Undici conferenze fatte nell\'inverno dell\'anno 1880', 'Various', '2015-05-09', 15, 'https://www.gutenberg.org/ebooks/48913', 'it', 649), +(35991, 'Essays Towards a Theory of Knowledge', 'Philip, Alexander', '2007-11-09', 86, 'https://www.gutenberg.org/ebooks/23422', 'en', 354), +(35992, 'The Lane That Had No Turning, Volume 4', 'Parker, Gilbert', '2004-08-01', 16, 'https://www.gutenberg.org/ebooks/6240', 'en', 1219), +(35993, 'Rob Nixon, the Old White Trader: A Tale of Central British North America', 'Kingston, William Henry Giles', '2010-11-30', 9, 'https://www.gutenberg.org/ebooks/34495', 'en', 13544), +(35994, 'On the Quantum Theory of Line-Spectra, Part 1 and 2', 'Bohr, Niels', '2014-11-22', 69, 'https://www.gutenberg.org/ebooks/47167', 'en', 13545), +(35995, 'The Poetical Works of Oliver Wendell Holmes — Volume 05\r\nPoems of the Class of \'29 (1851-1889)', 'Holmes, Oliver Wendell', '2004-09-30', 8, 'https://www.gutenberg.org/ebooks/7392', 'en', 178), +(35996, 'Das Buch von Monelle', 'Schwob, Marcel', '2011-03-11', 9, 'https://www.gutenberg.org/ebooks/35547', 'de', 13546), +(35997, 'The Terror from the Depths', 'Wright, Sewell Peaslee', '2009-06-14', 24, 'https://www.gutenberg.org/ebooks/29118', 'en', 26), +(35998, 'Korean Folk Tales: Imps, Ghosts and Faries', 'Im, Pang', '2016-01-22', 158, 'https://www.gutenberg.org/ebooks/51002', 'en', 13547), +(35999, 'The Square Root of 2', 'Kerr, Stan', '1993-02-01', 14, 'https://www.gutenberg.org/ebooks/52', 'en', 5180), +(36000, 'A Diversity of Creatures', 'Kipling, Rudyard', '2004-08-02', 94, 'https://www.gutenberg.org/ebooks/13085', 'en', 409), +(36001, 'Morriña (Homesickness)', 'Pardo Bazán, Emilia, condesa de', '2017-05-18', 12, 'https://www.gutenberg.org/ebooks/54742', 'en', 48), +(36002, 'Men, Women, and Gods; and Other Lectures', 'Gardener, Helen H. (Helen Hamilton)', '2009-10-06', 33, 'https://www.gutenberg.org/ebooks/30207', 'en', 1191), +(36003, 'L\'Illustration, No. 0049, 3 Février 1844', 'Various', '2013-05-01', 2, 'https://www.gutenberg.org/ebooks/42627', 'fr', 150), +(36004, 'Ceiriog', 'Hughes, John Ceiriog', '2002-10-01', 22, 'https://www.gutenberg.org/ebooks/3500', 'cy', 13548), +(36005, 'Le théâtre japonais', 'Lequeux, André', '2008-08-19', 17, 'https://www.gutenberg.org/ebooks/26362', 'fr', 9487), +(36006, 'William Hamilton Gibson: artist—naturalist—author', 'Adams, John Coleman', '2017-10-07', 17, 'https://www.gutenberg.org/ebooks/55690', 'en', 13549), +(36007, 'The Unknown\nNight Watches, Part 7.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/12157', 'en', 637), +(36008, 'The Boy Allies with Uncle Sam\'s Cruisers', 'Hayes, Clair W. (Clair Wallace)', '2004-07-01', 14, 'https://www.gutenberg.org/ebooks/6072', 'en', 4416), +(36009, 'Haapakallio: Idyllin-tapainen kuvaelma Hämeenlinnasta', 'Hahnsson, Theodolinda', '2014-11-15', 59, 'https://www.gutenberg.org/ebooks/47355', 'fi', 61), +(36010, 'La Falo de Uŝero-Domo', 'Poe, Edgar Allan', '2006-01-31', 22, 'https://www.gutenberg.org/ebooks/17425', 'eo', 461), +(36011, 'Mr. Justice Raffles', 'Hornung, E. W. (Ernest William)', '2006-02-01', 99, 'https://www.gutenberg.org/ebooks/9806', 'en', 1854), +(36012, 'Voyages du capitaine Robert Lade en differentes parties de l\'Afrique, de l\'Asie et de l\'Amérique', 'Prévost, abbé', '2007-11-24', 18, 'https://www.gutenberg.org/ebooks/23610', 'fr', 467), +(36013, 'Ratsmädel- und Altweimarische Geschichten', 'Böhlau, Helene', '2016-02-16', 8, 'https://www.gutenberg.org/ebooks/51230', 'de', 253), +(36014, 'The Book of Vagabonds and Beggars, with a Vocabulary of Their Language', NULL, '2014-07-15', 23, 'https://www.gutenberg.org/ebooks/46287', 'en', 13550), +(36015, 'First Person Paramount', 'Pratt, Ambrose', '2011-04-06', 5, 'https://www.gutenberg.org/ebooks/35775', 'en', 323), +(36016, 'John Lothrop Motley. a memoir — Volume 1', 'Holmes, Oliver Wendell', '2003-12-01', 8, 'https://www.gutenberg.org/ebooks/4725', 'en', 1055), +(36017, 'Peeps at Many Lands: Corsica', 'Young, Ernest', '2018-03-24', 16, 'https://www.gutenberg.org/ebooks/56829', 'en', 7348), +(36018, 'The Insurgent Chief', 'Aimard, Gustave', '2014-04-15', 9, 'https://www.gutenberg.org/ebooks/45402', 'en', 61), +(36019, 'Le portrait de monsieur W. H.', 'Wilde, Oscar', '2005-03-15', 12, 'https://www.gutenberg.org/ebooks/15372', 'fr', 11015), +(36020, 'Lord Loveland Discovers America', 'Williamson, C. N. (Charles Norris)', '2012-06-13', 24, 'https://www.gutenberg.org/ebooks/39984', 'en', 1351), +(36021, 'Manifest der Kommunistischen Partei', 'Marx, Karl', '2007-04-27', 39, 'https://www.gutenberg.org/ebooks/21147', 'de', 254), +(36022, 'Journeys to Bagdad', 'Brooks, Charles S. (Charles Stephen)', '2006-12-12', 16, 'https://www.gutenberg.org/ebooks/20095', 'en', 20), +(36023, 'Goblins and Pagodas', 'Fletcher, John Gould', '2012-02-13', 6, 'https://www.gutenberg.org/ebooks/38856', 'en', 8), +(36024, 'Winefred: A Story of the Chalk Cliffs', 'Baring-Gould, S. (Sabine)', '2016-11-21', 11, 'https://www.gutenberg.org/ebooks/53567', 'en', 401), +(36025, 'The Awful Australian', 'Desmond, Valerie', '2011-08-10', 9, 'https://www.gutenberg.org/ebooks/37022', 'en', 13551), +(36026, 'Idols', 'Locke, William John', '2017-11-20', 29, 'https://www.gutenberg.org/ebooks/56015', 'en', 1335), +(36027, 'The Declaration of Independence: An Address', 'Warren, Winslow', '2019-07-06', 62, 'https://www.gutenberg.org/ebooks/59861', 'en', 5768), +(36028, 'Rich Living', 'Cathal, Michael', '2010-05-27', 24, 'https://www.gutenberg.org/ebooks/32550', 'en', 3447), +(36029, 'The Romance of Aircraft', 'Smith, Laurence Yard', '2012-07-08', 23, 'https://www.gutenberg.org/ebooks/40170', 'en', 8210), +(36030, 'The Furnace', 'Macaulay, Rose', '2010-08-22', 25, 'https://www.gutenberg.org/ebooks/33482', 'en', 61), +(36031, 'The Three Musketeers', 'Dumas, Alexandre', '1998-03-01', 1375, 'https://www.gutenberg.org/ebooks/1257', 'en', 2436), +(36032, 'Four Americans: Roosevelt, Hawthorne, Emerson, Whitman', 'Beers, Henry A. (Henry Augustin)', '2008-01-26', 18, 'https://www.gutenberg.org/ebooks/24435', 'en', 4594), +(36033, 'A General History and Collection of Voyages and Travels — Volume 01\r\nArranged in Systematic Order: Forming a Complete History of the Origin and Progress of Navigation, Discovery, and Commerce, by Sea and Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/10600', 'en', 885), +(36034, 'Els habitants de la lluna', 'Morató, Joseph', '2016-07-29', 11, 'https://www.gutenberg.org/ebooks/52673', 'ca', 13552), +(36035, 'Stories Of Ohio', 'Howells, William Dean', '2008-01-23', 21, 'https://www.gutenberg.org/ebooks/21381', 'en', 13553), +(36036, 'Gabriel Conroy', 'Harte, Bret', '2011-06-06', 60, 'https://www.gutenberg.org/ebooks/36336', 'en', 315), +(36037, 'Baseball Joe, Captain of the Team; or, Bitter Struggles on the Diamond', 'Chadwick, Lester', '2014-01-20', 5, 'https://www.gutenberg.org/ebooks/44716', 'en', 13554), +(36038, 'Stories by Foreign Authors: German — Volume 1', NULL, '2004-04-01', 62, 'https://www.gutenberg.org/ebooks/5431', 'en', 870), +(36039, 'Llibre D\'històries', 'Casellas, Raimón', '2007-01-02', 27, 'https://www.gutenberg.org/ebooks/20253', 'ca', 13555), +(36040, 'History of Geography', 'Keltie, John Scott, Sir', '2018-11-25', 16, 'https://www.gutenberg.org/ebooks/58349', 'en', 13556), +(36041, 'Everyday Foods in War Time', 'Rose, Mary Swartz', '2004-11-17', 44, 'https://www.gutenberg.org/ebooks/14066', 'en', 103), +(36042, 'Ennen ja nykyään 1\nKuvauksia naisen elämästä', 'Ongelin, Hanna', '2005-06-04', 12, 'https://www.gutenberg.org/ebooks/15988', 'fi', 61), +(36043, 'Αι δύο διαθήκαι', 'Demetrakopoulos, Polyvios', '2010-06-13', 16, 'https://www.gutenberg.org/ebooks/32796', 'el', 988), +(36044, 'Encyclopaedia Britannica, 11th Edition, \"Jacobites\" to \"Japan\" (part)\r\nVolume 15, Slice 2', 'Various', '2012-11-02', 28, 'https://www.gutenberg.org/ebooks/41264', 'en', 1081), +(36045, 'Balcony Stories', 'King, Grace Elizabeth', '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/11514', 'en', 13557), +(36046, 'Caspar Hauser; oder, Die Trägheit des Herzens, Roman', 'Wassermann, Jakob', '2008-06-07', 37, 'https://www.gutenberg.org/ebooks/25721', 'de', 7597), +(36047, 'The Luck of the Dudley Grahams\nAs Related in Extracts from Elizabeth Graham\'s Diary', 'Haines, Alice Calhoun', '2018-06-10', 9, 'https://www.gutenberg.org/ebooks/57301', 'en', 13558), +(36048, 'On Heroes, Hero-Worship, and the Heroic in History', 'Carlyle, Thomas', '1997-11-01', 358, 'https://www.gutenberg.org/ebooks/1091', 'en', 6171), +(36049, 'The Secret of the Ninth Planet', 'Wollheim, Donald A.', '2010-09-05', 114, 'https://www.gutenberg.org/ebooks/33644', 'en', 13559), +(36050, 'The History of England, from the Accession of James II — Volume 5', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 61, 'https://www.gutenberg.org/ebooks/2614', 'en', 3001), +(36051, 'Miekka ja sana II: Historiallisia kertomuksia', 'Wilkuna, Kyösti', '2016-01-14', 9, 'https://www.gutenberg.org/ebooks/50918', 'fi', 665), +(36052, 'The Fairy Nightcaps', 'Fanny, Aunt', '2009-05-14', 18, 'https://www.gutenberg.org/ebooks/28802', 'en', 3822), +(36053, 'A Brief Bible History: A Survey of the Old and New Testaments', 'Machen, J. Gresham (John Gresham)', '2013-08-22', 47, 'https://www.gutenberg.org/ebooks/43533', 'en', 4241), +(36054, 'The Irish Penny Journal, Vol. 1 No. 27, January 2, 1841', 'Various', '2017-04-20', 1, 'https://www.gutenberg.org/ebooks/54584', 'en', 81), +(36055, 'In the Palace of the King: A Love Story of Old Madrid', 'Crawford, F. Marion (Francis Marion)', '2004-08-21', 18, 'https://www.gutenberg.org/ebooks/13243', 'en', 13560), +(36056, 'Drug Supplies in the American Revolution', 'Griffenhagen, George B.', '2008-10-28', 24, 'https://www.gutenberg.org/ebooks/27076', 'en', 13561), +(36057, 'The Atlantic Monthly, Volume 20, No. 118, August, 1867\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2006-11-13', 19, 'https://www.gutenberg.org/ebooks/19779', 'en', 1227), +(36058, 'Poems', 'Stoddard, Elizabeth', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12391', 'en', 8), +(36059, 'Aventures d\'Alice au pays des merveilles', 'Carroll, Lewis', '2017-08-30', 150, 'https://www.gutenberg.org/ebooks/55456', 'fr', 10012), +(36060, 'The Tatler, Volume 4', 'Steele, Richard, Sir', '2015-05-21', 35, 'https://www.gutenberg.org/ebooks/49009', 'en', 134), +(36061, 'Company \'A\', corps of engineers, U.S.A., 1846-\'48, in the Mexican war', 'Smith, Gustavus Woodson', '2010-01-28', 13, 'https://www.gutenberg.org/ebooks/31113', 'en', 13562), +(36062, 'Frederick William Maitland, Downing Professor of the Laws of England\r\nA Biographical Sketch', 'Fisher, H. A. L. (Herbert Albert Laurens)', '2015-10-03', 5, 'https://www.gutenberg.org/ebooks/50124', 'en', 13563), +(36063, 'Red Hunters and the Animal People', 'Eastman, Charles Alexander', '2010-11-27', 27, 'https://www.gutenberg.org/ebooks/34461', 'en', 676), +(36064, 'Reise nach dem skandinavischen Norden und der Insel Island im Jahre 1845. Zweiter Band.', 'Pfeiffer, Ida', '2014-10-25', 17, 'https://www.gutenberg.org/ebooks/47193', 'de', 280), +(36065, 'The Christian Hymn Book\r\nA Compilation of Psalms, Hymns and Spiritual Songs, Original and Selected, by A. Campbell and Others', NULL, '2014-06-20', 100, 'https://www.gutenberg.org/ebooks/46041', 'en', 13564), +(36066, 'Peter Pan in Kensington Gardens', 'Barrie, J. M. (James Matthew)', '2008-10-24', 221, 'https://www.gutenberg.org/ebooks/26998', 'en', 12899), +(36067, 'Three Comedies', 'Bjørnson, Bjørnstjerne', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7366', 'en', 4595), +(36068, 'The Letters of Gracchus on the East India Question', 'Miles, William Augustus', '2015-08-31', 5, 'https://www.gutenberg.org/ebooks/49835', 'en', 13565), +(36069, 'Il mistero del poeta', 'Fogazzaro, Antonio', '2007-09-04', 23, 'https://www.gutenberg.org/ebooks/22504', 'it', 61), +(36070, 'The Garden of the Plynck', 'Baker, Karle Wilson', '2005-09-23', 29, 'https://www.gutenberg.org/ebooks/16731', 'en', 1007), +(36071, 'Suzanna Stirs the Fire', 'Blake, Emily Calvin', '2006-06-04', 13, 'https://www.gutenberg.org/ebooks/18499', 'en', 62), +(36072, 'Helena', 'Ward, Humphry, Mrs.', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/13071', 'en', 48), +(36073, 'Operations Upon the Sea: A Study', 'Edelsheim, Franz, Freiherr von', '2008-11-12', 27, 'https://www.gutenberg.org/ebooks/27244', 'en', 8699), +(36074, 'The Diary of a Man of Fifty', 'James, Henry', '2000-12-01', 40, 'https://www.gutenberg.org/ebooks/2426', 'en', 1566), +(36075, 'Recollections of a Busy Life: Being the Reminiscences of a Liverpool Merchant 1840-1910', 'Forwood, William Bower, Sir', '2013-09-12', 14, 'https://www.gutenberg.org/ebooks/43701', 'en', 13566), +(36076, 'Martin Behaim aus Nürnberg. Der geistige Entdecker Amerika\'s', 'Ziegler, Alexander', '2010-02-18', 16, 'https://www.gutenberg.org/ebooks/31321', 'de', 3403), +(36077, '\"No Clue!\": A Mystery Story', 'Hay, James', '2008-08-23', 12, 'https://www.gutenberg.org/ebooks/26396', 'en', 1516), +(36078, 'Sudenpyytäjät', 'Curwood, James Oliver', '2017-10-02', 4, 'https://www.gutenberg.org/ebooks/55664', 'fi', 3276), +(36079, 'Lying Prophets: A Novel', 'Phillpotts, Eden', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7968', 'en', 109), +(36080, 'The Three Eyes', 'Leblanc, Maurice', '2010-12-16', 40, 'https://www.gutenberg.org/ebooks/34653', 'en', 557), +(36081, 'The Scottish Chiefs', 'Porter, Jane', '2004-07-01', 61, 'https://www.gutenberg.org/ebooks/6086', 'en', 13567), +(36082, 'The Fables of La Fontaine\r\nTranslated into English Verse by Walter Thornbury and Illustrated by Gustave Doré', 'La Fontaine, Jean de', '2015-10-26', 144, 'https://www.gutenberg.org/ebooks/50316', 'en', 506), +(36083, 'The Inn of Dreams', 'Custance, Olive', '2007-09-23', 18, 'https://www.gutenberg.org/ebooks/22736', 'en', 8), +(36084, 'The Light of Asia', 'Arnold, Edwin, Sir', '2005-09-01', 99, 'https://www.gutenberg.org/ebooks/8920', 'en', 13568), +(36085, 'Another World: Fragments from the Star City of Montalluyah', 'Lumley, Benjamin', '2005-08-10', 15, 'https://www.gutenberg.org/ebooks/16503', 'en', 1998), +(36086, 'Church Bells', 'Walters, H. B. (Henry Beauchamp)', '2014-07-13', 14, 'https://www.gutenberg.org/ebooks/46273', 'en', 13467), +(36087, 'The Deemster', 'Caine, Hall, Sir', '2011-04-06', 14, 'https://www.gutenberg.org/ebooks/35781', 'en', 3652), +(36088, 'The Prince and the Pauper, Part 1.', 'Twain, Mark', '2004-07-03', 29, 'https://www.gutenberg.org/ebooks/7154', 'en', 905), +(36089, 'Encyclopaedia Britannica, 11th Edition, \"Fox, George\" to \"France\"\r\nVolume 10, Slice 7', 'Various', '2011-05-14', 21, 'https://www.gutenberg.org/ebooks/36104', 'en', 1081), +(36090, 'The Hill of Venus', 'Gallizier, Nathan', '2012-06-11', 44, 'https://www.gutenberg.org/ebooks/39970', 'en', 13569), +(36091, 'Baptism According to Scripture', 'Hoare, E. H. (Edward Hatch)', '2016-06-30', 10, 'https://www.gutenberg.org/ebooks/52441', 'en', 6698), +(36092, 'The Great Round World and What Is Going On In It, Vol. 1, No. 18, March 11, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-16', 6, 'https://www.gutenberg.org/ebooks/15386', 'en', 1), +(36093, 'La disfatta', 'Oriani, Alfredo', '2006-12-09', 14, 'https://www.gutenberg.org/ebooks/20061', 'it', 61), +(36094, 'Enoni: muistoja Napoleonin ajoilta', 'Doyle, Arthur Conan', '2004-12-04', 22, 'https://www.gutenberg.org/ebooks/14254', 'fi', 2221), +(36095, 'Yhteiskuntasopimuksesta, eli, Valtio-oikeuden johtavat aatteet', 'Rousseau, Jean-Jacques', '2016-11-25', 8, 'https://www.gutenberg.org/ebooks/53593', 'fi', 13570), +(36096, 'Christmas in Poetry: Carols and Poems', NULL, '2013-12-26', 29, 'https://www.gutenberg.org/ebooks/44524', 'en', 586), +(36097, 'Seven Icelandic Short Stories', NULL, '2004-05-01', 87, 'https://www.gutenberg.org/ebooks/5603', 'en', 13571), +(36098, 'Punch, or the London Charivari, Volume 99, July 5, 1890', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11726', 'en', 134), +(36099, 'Œuvres complètes de lord Byron, Tome 13\r\nComprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2011-08-01', 9, 'https://www.gutenberg.org/ebooks/36938', 'fr', 3504), +(36100, 'Edmund Dulac\'s Fairy-Book: Fairy Tales of the Allied Nations', 'Dulac, Edmund', '2008-05-18', 56, 'https://www.gutenberg.org/ebooks/25513', 'en', 1007), +(36101, 'The Four Stragglers', 'Packard, Frank L. (Frank Lucius)', '2019-07-10', 171, 'https://www.gutenberg.org/ebooks/59895', 'en', 2934), +(36102, 'Cours familier de Littérature - Volume 19', 'Lamartine, Alphonse de', '2012-10-14', 9, 'https://www.gutenberg.org/ebooks/41056', 'fr', 2156), +(36103, 'The Natural Cure of Consumption, Constipation, Bright\'s Disease, Neuralgia, Rheumatism, \"Colds\" (Fevers), Etc.\r\nHow Sickness Originates, and How to Prevent It. A Health Manual for the People.', 'Page, C. E. (Charles Edward)', '2012-07-09', 46, 'https://www.gutenberg.org/ebooks/40184', 'en', 2925), +(36104, 'Doctor Dolittle\'s Post Office', 'Lofting, Hugh', '2019-02-23', 70, 'https://www.gutenberg.org/ebooks/58947', 'en', 7293), +(36105, 'The Auto Boys\' Vacation', 'Braden, James A. (James Andrew)', '2010-08-21', 17, 'https://www.gutenberg.org/ebooks/33476', 'en', 4887), +(36106, 'The Motor Routes of France\r\nTo the Châteaux of Touraine, Biarritz, the Pyrenees, the Riviera, & the Rhone Valley', 'Home, Gordon', '2018-05-10', 5, 'https://www.gutenberg.org/ebooks/57133', 'en', 13572), +(36107, '1601: Conversation as it was by the Social Fireside in the Time of the Tudors', 'Twain, Mark', '2004-09-17', 179, 'https://www.gutenberg.org/ebooks/3190', 'en', 781), +(36108, 'The Grand Inquisitor', 'Dostoyevsky, Fyodor', '2005-07-01', 699, 'https://www.gutenberg.org/ebooks/8578', 'en', 609), +(36109, 'Wau-nan-gee; Or, the Massacre at Chicago: A Romance of the American Revolution', 'Richardson, Major (John)', '2010-03-23', 8, 'https://www.gutenberg.org/ebooks/31745', 'en', 13573), +(36110, 'A Book About Words', 'Graham, G. F. (George Frederick)', '2017-07-25', 29, 'https://www.gutenberg.org/ebooks/55200', 'en', 4211), +(36111, 'The Lady with the Dog and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 534, 'https://www.gutenberg.org/ebooks/13415', 'en', 934), +(36112, 'The Lost World', 'Doyle, Arthur Conan', '1994-06-01', 911, 'https://www.gutenberg.org/ebooks/139', 'en', 7962), +(36113, 'Mrs. Hungerford\nNotable Women Authors of the Day', 'Black, Helen C.', '2008-12-25', 11, 'https://www.gutenberg.org/ebooks/27620', 'en', 13574), +(36114, 'Something New', 'Wodehouse, P. G. (Pelham Grenville)', '2000-01-01', 353, 'https://www.gutenberg.org/ebooks/2042', 'en', 637), +(36115, 'Libro allegro', 'Ghislanzoni, Antonio', '2006-03-01', 30, 'https://www.gutenberg.org/ebooks/17889', 'it', 191), +(36116, 'Alaska Days with John Muir', 'Young, Samuel Hall', '2009-12-17', 48, 'https://www.gutenberg.org/ebooks/30697', 'en', 13575), +(36117, 'The Buke of the Order of Knyghthood\nTranslated from the French by Sir Gilbert Hay, Knight', 'Llull, Ramon', '2013-07-30', 37, 'https://www.gutenberg.org/ebooks/43365', 'en', 7587), +(36118, 'American Boy\'s Life of Theodore Roosevelt', 'Stratemeyer, Edward', '2007-08-18', 60, 'https://www.gutenberg.org/ebooks/22352', 'en', 13576), +(36119, 'The Seven Great Monarchies Of The Ancient Eastern World, Vol 7: The Sassanian or New Persian Empire\r\nThe History, Geography, And Antiquities Of Chaldaea, Assyria, Babylon, Media, Persia, Parthia, And Sassanian or New Persian Empire; With Maps and Illustrations.', 'Rawlinson, George', '2005-07-01', 54, 'https://www.gutenberg.org/ebooks/16167', 'en', 1296), +(36120, 'The Plan of Salvation', 'Morgan, John (John Hamilton)', '2014-08-18', 14, 'https://www.gutenberg.org/ebooks/46617', 'en', 377), +(36121, 'Omaha Dwellings, Furniture and Implements\r\nThirteenth Annual Report of the Beaurau of American Ethnology to the Secretary of the Smithsonian Institution 1891-1892, Government Printing Office, Washington, 1896, pages 263-288', 'Dorsey, James Owen', '2006-11-24', 24, 'https://www.gutenberg.org/ebooks/19913', 'en', 13577), +(36122, 'The Renascence of Hebrew Literature (1743-1885)', 'Slouschz, Nahum', '2005-02-01', 10, 'https://www.gutenberg.org/ebooks/7530', 'en', 11822), +(36123, 'Golden Numbers: A Book of Verse for Youth', NULL, '2010-11-08', 9, 'https://www.gutenberg.org/ebooks/34237', 'en', 13578), +(36124, 'Within the Law: From the Play of Bayard Veiller', 'Dana, Marvin', '1997-05-01', 29, 'https://www.gutenberg.org/ebooks/905', 'en', 654), +(36125, 'Famous Givers and Their Gifts', 'Bolton, Sarah Knowles', '2015-12-27', 20, 'https://www.gutenberg.org/ebooks/50772', 'en', 13579), +(36126, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 7, July, 1880', 'Various', '2009-05-03', 17, 'https://www.gutenberg.org/ebooks/28668', 'en', 1829), +(36127, 'The Shirley Letters from California Mines in 1851-52', 'Shirley, Dame', '2007-11-01', 30, 'https://www.gutenberg.org/ebooks/23280', 'en', 13580), +(36128, 'Grace Harlowe\'s Overland Riders Among the Kentucky Mountaineers', 'Chase, Josephine', '2007-01-20', 49, 'https://www.gutenberg.org/ebooks/20405', 'en', 3242), +(36129, 'Ruth Fielding on Cliff Island; Or, The Old Hunter\'s Treasure Box', 'Emerson, Alice B.', '2005-01-07', 24, 'https://www.gutenberg.org/ebooks/14630', 'en', 1310), +(36130, 'Platons Gastmahl', 'Plato', '2008-03-23', 51, 'https://www.gutenberg.org/ebooks/24899', 'de', 6030), +(36131, 'George Whitefield: A Biography, with special reference to his labors in America', 'Belcher, Joseph', '2013-11-09', 18, 'https://www.gutenberg.org/ebooks/44140', 'en', 7984), +(36132, 'Sister Carrie', 'Dreiser, Theodore', '2004-03-01', 131, 'https://www.gutenberg.org/ebooks/5267', 'en', 9482), +(36133, 'Memoria sobre as diversas salgas da sardinha\r\ncom o methodo de aproveitar as enxovas, e sobre a salga dos peixes grossos, como atum, corvinas, pescadas, gorazes, ruivos, e outros semelhantes etc', 'França, Clemente Ferreira', '2011-06-30', 10, 'https://www.gutenberg.org/ebooks/36560', 'pt', 13581), +(36134, 'The Post Office of India and Its Story', 'Clarke, Geoffrey', '2014-03-09', 14, 'https://www.gutenberg.org/ebooks/45092', 'en', 13582), +(36135, 'Motor Matt\'s Make-and-Break; or, Advancing the Spark of Friendship', 'Matthews, Stanley R.', '2016-05-09', 6, 'https://www.gutenberg.org/ebooks/52025', 'en', 323), +(36136, 'Carnival', 'MacKenzie, Compton', '2010-06-28', 31, 'https://www.gutenberg.org/ebooks/33012', 'en', 109), +(36137, 'Hekuban tyttäret\nRomaani', 'Viebig, Clara', '2018-07-21', 8, 'https://www.gutenberg.org/ebooks/57557', 'fi', 1103), +(36138, 'Confession de Minuit\nRoman', 'Duhamel, Georges', '2003-11-01', 59, 'https://www.gutenberg.org/ebooks/10290', 'fr', 61), +(36139, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 352, January 17, 1829', 'Various', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11342', 'en', 133), +(36140, 'Hyde Park, Its History and Romance', 'Alec-Tweedie, Mrs. (Ethel)', '2018-02-02', 17, 'https://www.gutenberg.org/ebooks/56485', 'en', 3656), +(36141, 'Tristi Amori', 'Giacosa, Giuseppe', '2008-04-26', 10, 'https://www.gutenberg.org/ebooks/25177', 'it', 407), +(36142, 'Defense of the Faith and the Saints (Volume 2 of 2)', 'Roberts, B. H. (Brigham Henry)', '2016-08-16', 21, 'https://www.gutenberg.org/ebooks/52819', 'en', 310), +(36143, 'Mohave Pottery', 'Kroeber, A. L. (Alfred Louis)', '2012-04-24', 13, 'https://www.gutenberg.org/ebooks/39528', 'en', 13583), +(36144, 'The Tale of a Field Hospital', 'Treves, Frederick', '2012-11-21', 86, 'https://www.gutenberg.org/ebooks/41432', 'en', 13584), +(36145, 'Valkoinen armeija Antrean rintamalla', 'Sihvo, Aarne', '2013-12-06', 5, 'https://www.gutenberg.org/ebooks/44372', 'fi', 13585), +(36146, 'The Myrtle Reed Cook Book', 'Reed, Myrtle', '2011-10-10', 123, 'https://www.gutenberg.org/ebooks/37680', 'en', 103), +(36147, 'Plays : First Series', 'Galsworthy, John', '2004-09-26', 12, 'https://www.gutenberg.org/ebooks/5055', 'en', 115), +(36148, 'Liederkranz\nDem Andenken der verstorbenen Frau Herzogin Dorothea von Kurland geweiht', 'Schlippenbach, Ulrich von', '2007-02-21', 14, 'https://www.gutenberg.org/ebooks/20637', 'de', 510), +(36149, 'The Tale of Old Mr. Crow', 'Bailey, Arthur Scott', '2004-12-21', 34, 'https://www.gutenberg.org/ebooks/14402', 'en', 13586), +(36150, 'Young Hunters in Porto Rico; or, The Search for a Lost Treasure', 'Stratemeyer, Edward', '2016-06-02', 11, 'https://www.gutenberg.org/ebooks/52217', 'en', 13587), +(36151, 'Capturing a Locomotive: A History of Secret Service in the Late War.', 'Pittenger, William', '2011-07-17', 35, 'https://www.gutenberg.org/ebooks/36752', 'en', 13588), +(36152, 'Diary of Samuel Pepys — Volume 63: March 1667-68', 'Pepys, Samuel', '2004-12-01', 26, 'https://www.gutenberg.org/ebooks/4187', 'en', 738), +(36153, 'The River of Darkness; Or, Under Africa', 'Graydon, William Murray', '2008-01-15', 15, 'https://www.gutenberg.org/ebooks/24297', 'en', 323), +(36154, 'Vom sterbenden Rokoko', 'Bartsch, Rudolf Hans', '2018-08-24', 9, 'https://www.gutenberg.org/ebooks/57765', 'de', 13589), +(36155, 'Michael\'s Crag', 'Allen, Grant', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/5869', 'en', 61), +(36156, 'First Fam\'lies of the Sierras', 'Miller, Joaquin', '2010-07-22', 14, 'https://www.gutenberg.org/ebooks/33220', 'en', 13590), +(36157, 'I Bagni di Lucca, Coreglia e Barga', 'Bonaventura, Arnaldo', '2012-12-10', 22, 'https://www.gutenberg.org/ebooks/41600', 'it', 13591), +(36158, 'The Atlantic Monthly, Volume 07, No. 43, May, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/11170', 'en', 1227), +(36159, 'The Goose Man', 'Wassermann, Jakob', '2008-05-06', 9, 'https://www.gutenberg.org/ebooks/25345', 'en', 803), +(36160, 'Poems of Progress', 'Doten, Lizzie', '2017-07-02', 14, 'https://www.gutenberg.org/ebooks/55032', 'en', 350), +(36161, 'A Bachelor Husband', 'Ayres, Ruby M. (Ruby Mildred)', '2013-02-12', 55, 'https://www.gutenberg.org/ebooks/42085', 'en', 675), +(36162, 'The Mighty Dead', 'Gault, William Campbell', '2010-03-09', 32, 'https://www.gutenberg.org/ebooks/31577', 'en', 13592), +(36163, 'Shakespeare\'s First Folio', 'Shakespeare, William', '2000-07-01', 105, 'https://www.gutenberg.org/ebooks/2270', 'en', 402), +(36164, 'Some Christmas Stories', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9698', 'en', 4477), +(36165, 'The Swing of the Pendulum', 'Peard, Frances Mary', '2013-07-08', 11, 'https://www.gutenberg.org/ebooks/43157', 'en', 13593), +(36166, 'Memorie del Presbiterio\r\nScene di Provincia', 'Praga, Emilio', '2004-10-05', 17, 'https://www.gutenberg.org/ebooks/13627', 'it', 3942), +(36167, 'The Short Constitution', 'Russell, William F. (William Fletcher)', '2011-01-03', 33, 'https://www.gutenberg.org/ebooks/34839', 'en', 13594), +(36168, 'Lendas dos Vegetaes', 'Sequeira, Eduardo Henrique Vieira Coelho de', '2008-12-04', 20, 'https://www.gutenberg.org/ebooks/27412', 'pt', 5504), +(36169, 'Glimpses of Indian Birds', 'Dewar, Douglas', '2014-07-26', 10, 'https://www.gutenberg.org/ebooks/46425', 'en', 88), +(36170, '\"My Novel\" — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7702', 'en', 282), +(36171, 'The Spoilers of the Valley', 'Watson, Robert', '2009-08-03', 9, 'https://www.gutenberg.org/ebooks/29588', 'en', 4874), +(36172, 'Studien und Plaudereien. First Series', 'Stern, Sigmon M. (Sigmon Martin)', '2007-07-27', 94, 'https://www.gutenberg.org/ebooks/22160', 'de', 11675), +(36173, 'Armenia, Travels and Studies (Volume 1 of 2)\nThe Russian Provinces', 'Lynch, H. F. B. (Harry Finnis Blosse)', '2016-03-18', 17, 'https://www.gutenberg.org/ebooks/51492', 'en', 11338), +(36174, 'Combed Out', 'Voigt, F. A. (Frederick Augustus)', '2005-07-24', 28, 'https://www.gutenberg.org/ebooks/16355', 'en', 3601), +(36175, 'History of France', 'Yonge, Charlotte M. (Charlotte Mary)', '2005-12-12', 58, 'https://www.gutenberg.org/ebooks/17287', 'en', 624), +(36176, 'A Turkish Woman\'s European Impressions', 'Zeyneb, hanoum', '2015-11-23', 37, 'https://www.gutenberg.org/ebooks/50540', 'en', 13595), +(36177, 'Curious Punishments of Bygone Days', 'Earle, Alice Morse', '2010-09-27', 56, 'https://www.gutenberg.org/ebooks/34005', 'en', 13596), +(36178, 'Nounou\nHistoire de la Moucheronne', 'Dombre, Roger', '2006-06-26', 6, 'https://www.gutenberg.org/ebooks/18693', 'fr', 61), +(36179, 'Fifty \"Bab\" Ballads: Much Sound and Little Sense', 'Gilbert, W. S. (William Schwenck)', '1996-12-01', 80, 'https://www.gutenberg.org/ebooks/757', 'en', 564), +(36180, 'A Life for a Life, Volume 1 (of 3)', 'Craik, Dinah Maria Mulock', '2015-03-13', 15, 'https://www.gutenberg.org/ebooks/47997', 'en', 61), +(36181, 'Matkamies: Runoja', 'Kivijärvi, Erkki', '2016-01-14', 11, 'https://www.gutenberg.org/ebooks/50920', 'fi', 1171), +(36182, 'A Migration Legend of the Creek Indians, vol. 1\r\nWith a Linguistic, Historic and Ethnographic Introduction', 'Gatschet, Albert S. (Albert Samuel)', '2015-05-23', 17, 'https://www.gutenberg.org/ebooks/49031', 'en', 1749), +(36183, 'The Bible, Douay-Rheims, Book 16: 2 Esdras\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8316', 'en', 7538), +(36184, 'Zwei Erzählungen', 'Baum, Oskar', '2014-09-12', 14, 'https://www.gutenberg.org/ebooks/46845', 'de', 61), +(36185, 'Altenahr en zijn omgeving\nDe Aarde en haar Volken, 1907—Also includes a short article\n\"Bekoring van het Matterhornland\" by J. C. Heer', 'Neuhauser, Eduard', '2006-11-08', 11, 'https://www.gutenberg.org/ebooks/19741', 'nl', 13597), +(36186, 'The Romance of War Inventions\nA Description of Warships, Guns, Tanks, Rifles, Bombs, and Other Instruments and Munitions of Warfare, How They Were Invented & How They Are Employed', 'Corbin, Thomas W.', '2010-11-27', 24, 'https://www.gutenberg.org/ebooks/34459', 'en', 1359), +(36187, 'A History of the French Novel, Vol. 2\nTo the Close of the 19th Century', 'Saintsbury, George', '2009-01-22', 14, 'https://www.gutenberg.org/ebooks/27872', 'en', 8510), +(36188, 'The Perpetual Curate', 'Oliphant, Mrs. (Margaret)', '2009-02-05', 50, 'https://www.gutenberg.org/ebooks/28006', 'en', 55), +(36189, 'Contes rapides', 'Coppée, François', '2005-09-17', 12, 'https://www.gutenberg.org/ebooks/16709', 'fr', 179), +(36190, 'A Divorciada', 'Vieira, José Augusto', '2010-04-07', 10, 'https://www.gutenberg.org/ebooks/31917', 'pt', 61), +(36191, 'Evolution in Art: As Illustrated by the Life-histories of Designs', 'Haddon, Alfred C. (Alfred Cort)', '2014-06-23', 30, 'https://www.gutenberg.org/ebooks/46079', 'en', 2580), +(36192, 'Armadale', 'Collins, Wilkie', '1999-09-01', 131, 'https://www.gutenberg.org/ebooks/1895', 'en', 13598), +(36193, 'A General View of Positivism\nOr, Summary exposition of the System of Thought and Life', 'Comte, Auguste', '2016-12-24', 83, 'https://www.gutenberg.org/ebooks/53799', 'en', 3926), +(36194, 'Chin-Chin; Or, The Chinaman at Home', 'Tcheng, Ki-tong', '2018-11-28', 14, 'https://www.gutenberg.org/ebooks/58371', 'en', 3304), +(36195, 'The Memoirs of Count Grammont — Volume 01', 'Hamilton, Anthony, Count', '2004-12-04', 11, 'https://www.gutenberg.org/ebooks/5409', 'en', 11561), +(36196, 'The Privateer\'s-Man, One hundred Years Ago', 'Marryat, Frederick', '2008-06-07', 28, 'https://www.gutenberg.org/ebooks/25719', 'en', 9242), +(36197, 'Baltimore and the Nineteenth of April, 1861: A Study of the War', 'Brown, George William', '2012-04-02', 20, 'https://www.gutenberg.org/ebooks/39346', 'en', 13599), +(36198, 'Henrietta Maria', 'Haynes, Henrietta', '2011-12-13', 11, 'https://www.gutenberg.org/ebooks/38294', 'en', 13600), +(36199, 'Laara: Kuvaus Savon kansan elämästä', 'Kauppis-Heikki', '2005-02-01', 31, 'https://www.gutenberg.org/ebooks/14862', 'fi', 41), +(36200, 'The Fox That Wanted Nine Golden Tails', 'Nelson, Kathleen Gray', '2018-06-17', 14, 'https://www.gutenberg.org/ebooks/57339', 'en', 1007), +(36201, 'Natuurfantazieën', 'Carelsen, Geertruida', '2016-07-02', 13, 'https://www.gutenberg.org/ebooks/52479', 'nl', 871), +(36202, 'The Sixth Sense: Its Cultivation and Use', 'Brent, Charles Henry', '2019-03-18', 26, 'https://www.gutenberg.org/ebooks/59091', 'en', 43), +(36203, 'Historia de Venezuela, Tomo II', 'Aguado, Pedro de, active 16th century', '2012-06-08', 39, 'https://www.gutenberg.org/ebooks/39948', 'es', 13601), +(36204, 'Court Beauties of Old Whitehall: Historiettes of the Restoration', 'Trowbridge, W. R. H. (William Rutherford Hayes)', '2013-01-16', 12, 'https://www.gutenberg.org/ebooks/41852', 'en', 13602), +(36205, 'The Dread Voyage: Poems', 'Campbell, Wilfred', '2018-09-19', 7, 'https://www.gutenberg.org/ebooks/57937', 'en', 1237), +(36206, 'The Life of David; Or, The History of the Man After God\'s Own Heart', 'Anonymous', '2012-10-08', 26, 'https://www.gutenberg.org/ebooks/40980', 'en', 13603), +(36207, 'Left on the Labrador: A Tale of Adventure Down North', 'Wallace, Dillon', '2006-12-08', 13, 'https://www.gutenberg.org/ebooks/20059', 'en', 1690), +(36208, 'Suomen kultainen kirja I', 'Wettenhovi-Aspa, Sigurd', '2018-10-21', 21, 'https://www.gutenberg.org/ebooks/58143', 'fi', 13604), +(36209, 'Prinzessin Mymra: Novellen und Träume', 'Remizov, Aleksei', '2012-03-17', 4, 'https://www.gutenberg.org/ebooks/39174', 'de', 12221), +(36210, 'Archipel', 'Louÿs, Pierre', '2011-07-30', 38, 'https://www.gutenberg.org/ebooks/36900', 'fr', 179), +(36211, 'Bulletin de Lille, 1916.07\npublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2007-03-20', 11, 'https://www.gutenberg.org/ebooks/20865', 'fr', 6227), +(36212, 'Songs of Sea and Sail', 'Day, Thomas Fleming', '2013-09-15', 12, 'https://www.gutenberg.org/ebooks/43739', 'en', 1118), +(36213, 'The Zincali: An Account of the Gypsies of Spain', 'Borrow, George', '1996-06-01', 235, 'https://www.gutenberg.org/ebooks/565', 'en', 13605), +(36214, 'Reveries of a Schoolmaster', 'Pearson, Francis B. (Francis Bail)', '2004-07-29', 34, 'https://www.gutenberg.org/ebooks/13049', 'en', 341), +(36215, 'This Simian World', 'Day, Clarence', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6882', 'en', 13606), +(36216, 'Alice\'s Adventures in Wonderland', 'Carroll, Lewis', '2006-10-20', 121, 'https://www.gutenberg.org/ebooks/19573', 'en', 10012), +(36217, 'The Jealousies of a Country Town', 'Balzac, Honoré de', '2005-04-01', 40, 'https://www.gutenberg.org/ebooks/7950', 'en', 607), +(36218, '\"My Visit to Tolstoy\": Five Discourses', 'Krauskopf, Joseph', '2015-06-13', 7, 'https://www.gutenberg.org/ebooks/49203', 'en', 2372), +(36219, 'Woodrow Wilson as I Know Him', 'Tumulty, Joseph P. (Joseph Patrick)', '2005-05-01', 7, 'https://www.gutenberg.org/ebooks/8124', 'en', 13607), +(36220, 'Ball\'s Bluff: An Episode and Its Consequences to Some of Us', 'Peirson, Charles Lawrence', '2010-02-18', 18, 'https://www.gutenberg.org/ebooks/31319', 'en', 13608), +(36221, '\'Lizbeth of the Dale', 'MacGregor, Mary Esther Miller', '2009-03-01', 15, 'https://www.gutenberg.org/ebooks/28234', 'en', 10914), +(36222, 'Correspondance, 1812-1876 — Tome 4', 'Sand, George', '2004-10-29', 25, 'https://www.gutenberg.org/ebooks/13875', 'fr', 5041), +(36223, 'Jack the Young Cowboy: An Eastern Boy\'s Experiance on a Western Round-up', 'Grinnell, George Bird', '2014-11-19', 14, 'https://www.gutenberg.org/ebooks/47399', 'en', 315), +(36224, 'Life of Johnson, Volume 1\r\n1709-1765', 'Boswell, James', '2005-09-01', 103, 'https://www.gutenberg.org/ebooks/8918', 'en', 6953), +(36225, 'The Friends; or, The Triumph of Innocence over False Charges\r\nA Tale, Founded on Facts', 'Unknown', '2013-11-14', 15, 'https://www.gutenberg.org/ebooks/44178', 'en', 621), +(36226, 'Eric\'s Book of Beasts', 'Jordan, David Starr', '2018-12-24', 9, 'https://www.gutenberg.org/ebooks/58527', 'en', 1801), +(36227, 'Jimmy, Lucy, and All', 'May, Sophie', '2005-01-05', 35, 'https://www.gutenberg.org/ebooks/14608', 'en', 4581), +(36228, 'The Hollow Tree and Deep Woods Book\r\nbeing a new edition in one volume of \"The Hollow Tree\" and \"In The Deep Woods\" with several new stories and pictures added', 'Paine, Albert Bigelow', '2010-09-27', 28, 'https://www.gutenberg.org/ebooks/33816', 'en', 625), +(36229, 'Ratón Pérez: cuento infantil', 'Coloma, Luis', '2011-06-29', 61, 'https://www.gutenberg.org/ebooks/36558', 'es', 1132), +(36230, 'Birds of the Rockies', 'Keyser, Leander S. (Leander Sylvester)', '2008-07-05', 29, 'https://www.gutenberg.org/ebooks/25973', 'en', 318), +(36231, 'Veljekset', 'Maupassant, Guy de', '2014-02-17', 9, 'https://www.gutenberg.org/ebooks/44944', 'fi', 9813), +(36232, 'Judith Fürste: En Fortælling', 'Ravnkilde, Adda', '2012-04-22', 21, 'https://www.gutenberg.org/ebooks/39510', 'da', 6055), +(36233, 'Kant\'s Prolegomena to Any Future Metaphysics', 'Kant, Immanuel', '2016-08-16', 107, 'https://www.gutenberg.org/ebooks/52821', 'en', 281), +(36234, 'The World of Homer', 'Lang, Andrew', '2014-06-06', 26, 'https://www.gutenberg.org/ebooks/45896', 'en', 6031), +(36235, 'Sergeant York And His People', 'Cowan, Sam K. (Sam Kinkade)', '2006-08-25', 42, 'https://www.gutenberg.org/ebooks/19117', 'en', 9610), +(36236, 'Italian Yesterdays, vol. 1', 'Fraser, Hugh, Mrs.', '2017-08-01', 9, 'https://www.gutenberg.org/ebooks/55238', 'en', 6107), +(36237, 'Linotype Manual\r\nGiving Detailed Instructions of the Proper Adjustment and Care of the Linotype', 'Various', '2015-08-10', 4, 'https://www.gutenberg.org/ebooks/49667', 'en', 13609), +(36238, 'The Life of the Rt. Hon. Sir Charles W. Dilke, Volume 2', 'Gwynn, Stephen Lucius', '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/8540', 'en', 13610), +(36239, 'The Golden Bird', 'Daviess, Maria Thompson', '2005-10-30', 12, 'https://www.gutenberg.org/ebooks/16963', 'en', 1672), +(36240, 'Understanding the Scriptures', 'McConnell, Francis John', '2005-12-01', 15, 'https://www.gutenberg.org/ebooks/9492', 'en', 3792), +(36241, 'The Hacker Crackdown: Law and Disorder on the Electronic Frontier', 'Sterling, Bruce', '1994-01-01', 159, 'https://www.gutenberg.org/ebooks/101', 'en', 13611), +(36242, 'The End of a Coil', 'Warner, Susan', '2008-12-25', 16, 'https://www.gutenberg.org/ebooks/27618', 'en', 3608), +(36243, 'A Mummer\'s Wife', 'Moore, George', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7508', 'en', 705), +(36244, 'Space, Time and Gravitation: An Outline of the General Relativity Theory', 'Eddington, Arthur Stanley, Sir', '2009-08-24', 117, 'https://www.gutenberg.org/ebooks/29782', 'en', 13612), +(36245, 'Madame Chrysantheme — Volume 4', 'Loti, Pierre', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3994', 'en', 775), +(36246, 'The Little Man Who Wasn\'t Quite', 'Stuart, William W.', '2016-04-08', 13, 'https://www.gutenberg.org/ebooks/51698', 'en', 179), +(36247, 'The Life of Flavius Josephus', 'Josephus, Flavius', '2001-10-01', 88, 'https://www.gutenberg.org/ebooks/2846', 'en', 13073), +(36248, 'Year of the Big Thaw', 'Bradley, Marion Zimmer', '2009-05-01', 127, 'https://www.gutenberg.org/ebooks/28650', 'en', 179), +(36249, 'The Mentor: Guynemer, The Wingèd Sword of France, Vol. 6, Num. 18, Serial No. 166, November 1, 1918', 'Cook, Howard W. (Howard Willard)', '2015-07-16', 5, 'https://www.gutenberg.org/ebooks/49455', 'en', 4704), +(36250, 'Sense and Sensibility', 'Austen, Jane', '2007-10-01', 44, 'https://www.gutenberg.org/ebooks/22964', 'en', 13613), +(36251, 'The Learned Women', 'Molière', '2005-08-01', 69, 'https://www.gutenberg.org/ebooks/8772', 'en', 1467), +(36252, 'The Wit and Humor of America, Volume VII. (of X.)', NULL, '2006-09-18', 33, 'https://www.gutenberg.org/ebooks/19325', 'en', 12514), +(36253, 'Robert Louis Stevenson', 'Raleigh, Walter Alexander, Sir', '1995-09-01', 49, 'https://www.gutenberg.org/ebooks/333', 'en', 3163), +(36254, 'Why Joan?', 'Kelly, Eleanor Mercein', '2010-12-31', 13, 'https://www.gutenberg.org/ebooks/34801', 'en', 1996), +(36255, 'The Winter\'s Tale', 'Shakespeare, William', '2000-07-01', 43, 'https://www.gutenberg.org/ebooks/2248', 'en', 3502), +(36256, 'Die stählerne Mauer: Reise zur deutschen Front, 1915, Zweiter Teil', 'Ganghofer, Ludwig', '2015-03-26', 12, 'https://www.gutenberg.org/ebooks/48587', 'de', 449), +(36257, 'The Lure of the Mask', 'MacGrath, Harold', '2007-07-27', 31, 'https://www.gutenberg.org/ebooks/22158', 'en', 61), +(36258, 'La promessa sposa di Lammermoor, Tomo 1 (of 3)', 'Scott, Walter', '2013-06-07', 20, 'https://www.gutenberg.org/ebooks/42881', 'it', 1166), +(36259, 'La reine Victoria intime\r\nOuvrage illustré de 60 gravures d\'après des photographies et des documents inédits', 'Aubry, J.-H.', '2017-10-28', 27, 'https://www.gutenberg.org/ebooks/55836', 'fr', 7002), +(36260, 'A Sub. of the R.N.R.: A Story of the Great War', 'Westerman, Percy F. (Percy Francis)', '2015-11-30', 26, 'https://www.gutenberg.org/ebooks/50578', 'en', 11265), +(36261, 'Rose O\'Paradise', 'White, Grace Miller', '2009-03-31', 21, 'https://www.gutenberg.org/ebooks/28462', 'en', 1763), +(36262, 'De schippersjongen, of Leiden in strijd en nood', 'Louwerse, Pieter', '2013-10-14', 6, 'https://www.gutenberg.org/ebooks/43953', 'nl', 13614), +(36263, 'Drawings of Old London', 'Norman, Philip', '2019-01-17', 23, 'https://www.gutenberg.org/ebooks/58715', 'en', 13615), +(36264, 'Dialstone Lane, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/11974', 'en', 1391), +(36265, 'Sota ja rauha IV', 'Tolstoy, Leo, graf', '2014-04-01', 9, 'https://www.gutenberg.org/ebooks/45298', 'fi', 2564), +(36266, 'A Top-Floor Idyl', 'Van Schaick, George', '2010-07-21', 14, 'https://www.gutenberg.org/ebooks/33218', 'en', 2255), +(36267, 'Memoirs of General W. T. Sherman, Volume I., Part 2', 'Sherman, William T. (William Tecumseh)', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5851', 'en', 1433), +(36268, 'Aunt Harding\'s Keepsakes\r\nOr, The Two Bibles', 'Anonymous', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11148', 'en', 4099), +(36269, 'Slips of Speech : a Helpful Book for Everyone Who Aspires to Correct the Everyday Errors of Speaking', 'Bechtel, John Hendricks', '2004-01-01', 69, 'https://www.gutenberg.org/ebooks/4983', 'en', 13616), +(36270, 'Samlede Værker, Tredie Bind', 'Aakjær, Jeppe', '2012-05-18', 13, 'https://www.gutenberg.org/ebooks/39722', 'da', 5331), +(36271, 'An Autobiography', 'Butler, Elizabeth (Elizabeth Southerden Thompson)', '2012-12-16', 31, 'https://www.gutenberg.org/ebooks/41638', 'en', 13617), +(36272, 'Concrete Construction: Methods and Costs', 'Hill, Charles Shattuck', '2008-03-16', 124, 'https://www.gutenberg.org/ebooks/24855', 'en', 13618), +(36273, 'Oral Tradition from the Indus\r\nComprised in Tales to Which Are Added Explanatory Notes', 'Barlow, Thomas Lambert', '2019-05-01', 49, 'https://www.gutenberg.org/ebooks/59401', 'en', 13619), +(36274, 'A Gallant Grenadier: A Tale of the Crimean War', 'Brereton, F. S. (Frederick Sadleir)', '2010-06-20', 20, 'https://www.gutenberg.org/ebooks/32930', 'en', 13620), +(36275, 'The Fortunate Youth', 'Locke, William John', '2003-08-01', 39, 'https://www.gutenberg.org/ebooks/4379', 'en', 4341), +(36276, 'Chronica de El-Rei D. Affonso V (Vol. I)', 'Pina, Rui de', '2008-07-06', 7, 'https://www.gutenberg.org/ebooks/25987', 'pt', 13621), +(36277, 'Heroes in Peace\r\nThe 6th William Penn Lecture, May 9, 1920', 'Holmes, John Haynes', '2007-12-29', 26, 'https://www.gutenberg.org/ebooks/24069', 'en', 6171), +(36278, 'The Azure Rose: A Novel', 'Kauffman, Reginald Wright', '2011-12-29', 26, 'https://www.gutenberg.org/ebooks/38436', 'en', 13622), +(36279, 'The Universal Counterfeit and Altered Bank Note Detector, at Sight', 'Foote, Henry C.', '2017-01-06', 8, 'https://www.gutenberg.org/ebooks/53907', 'en', 13623), +(36280, 'Snowed Up; or, The Sportman\'s Club in the Mountains', 'Castlemon, Harry', '2018-01-28', 4, 'https://www.gutenberg.org/ebooks/56449', 'en', 323), +(36281, 'Through Arctic Lapland', 'Hyne, Charles John Cutcliffe Wright', '2014-06-02', 27, 'https://www.gutenberg.org/ebooks/45862', 'en', 5707), +(36282, 'The Machine That Floats', 'Gibson, Joe', '2015-08-13', 32, 'https://www.gutenberg.org/ebooks/49693', 'en', 26), +(36283, 'A Journey through the Kingdom of Oude, Volumes I & II', 'Sleeman, William', '2005-11-04', 41, 'https://www.gutenberg.org/ebooks/16997', 'en', 13624); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(36284, 'The United States and Latin America', 'Latané, John Holladay', '2010-03-26', 22, 'https://www.gutenberg.org/ebooks/31789', 'en', 13625), +(36285, 'Salem Witchcraft, Volumes I and II\r\nWith an Account of Salem Village and a History of Opinions on Witchcraft and Kindred Subjects', 'Upham, Charles Wentworth', '2006-02-24', 143, 'https://www.gutenberg.org/ebooks/17845', 'en', 13626), +(36286, 'The Quest of Happy Hearts', 'Hay, Kathleen', '2005-12-01', 17, 'https://www.gutenberg.org/ebooks/9466', 'en', 3129), +(36287, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 02 (1820)', 'Various', '2015-04-19', 4, 'https://www.gutenberg.org/ebooks/48741', 'en', 57), +(36288, 'A Dweller in Mesopotamia\nBeing the Adventures of an Official Artist in the Garden of Eden', 'Maxwell, Donald', '2006-03-20', 19, 'https://www.gutenberg.org/ebooks/18031', 'en', 13627), +(36289, 'A Manual of the Antiquity of Man', 'MacLean, J. P. (John Patterson)', '2011-02-19', 19, 'https://www.gutenberg.org/ebooks/35329', 'en', 1109), +(36290, 'Pretty Madcap Dorothy; Or, How She Won a Lover', 'Libbey, Laura Jean', '2009-08-24', 19, 'https://www.gutenberg.org/ebooks/29776', 'en', 13628), +(36291, 'A Romance of Youth — Volume 3', 'Coppée, François', '2003-04-01', 18, 'https://www.gutenberg.org/ebooks/3960', 'en', 560), +(36292, 'De Harmonie van het Dierlijke Leven: De Openbaring van Wetten', 'Donders, F. C. (Franciscus Cornelis)', '2005-11-16', 6, 'https://www.gutenberg.org/ebooks/17079', 'nl', 3536), +(36293, 'Harper\'s Young People, June 14, 1881\nAn Illustrated Weekly', 'Various', '2014-12-20', 12, 'https://www.gutenberg.org/ebooks/47709', 'en', 479), +(36294, 'Historical Sketch of the Cathedral of Strasburg', 'Anonymous', '2007-10-12', 72, 'https://www.gutenberg.org/ebooks/22990', 'en', 13629), +(36295, 'Frank Merriwell\'s Champions; Or, All in the Game', 'Standish, Burt L.', '2013-02-08', 9, 'https://www.gutenberg.org/ebooks/42049', 'en', 4171), +(36296, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 08', 'Dante Alighieri', '2004-08-07', 25, 'https://www.gutenberg.org/ebooks/8786', 'en', 2212), +(36297, 'Punch, or the London Charivari, Volume 99, December 6, 1890', 'Various', '2004-06-25', 6, 'https://www.gutenberg.org/ebooks/12739', 'en', 134), +(36298, 'A Romance of Toronto (Founded on Fact): A Novel', 'Savigny, Annie G. (Annie Gregg)', '2011-04-21', 25, 'https://www.gutenberg.org/ebooks/35927', 'en', 65), +(36299, 'Die prosa van die twede Afrikaanse beweging', 'Schoonees, P. C. (Pieter Cornelis)', '2006-04-18', 16, 'https://www.gutenberg.org/ebooks/18203', 'af', 13630), +(36300, 'A Tale of the Summer Holidays', 'Mockler, Geraldine', '2009-11-13', 5, 'https://www.gutenberg.org/ebooks/30469', 'en', 9766), +(36301, 'Lendas e Narrativas (Tomo I)', 'Herculano, Alexandre', '2006-01-01', 36, 'https://www.gutenberg.org/ebooks/9654', 'pt', 410), +(36302, 'British and Foreign Arms & Armour', 'Ashdown, Charles Henry', '2015-03-24', 14, 'https://www.gutenberg.org/ebooks/48573', 'en', 13631), +(36303, '楊家將', 'Xiong, Damu, active 16th century', '2007-12-13', 10, 'https://www.gutenberg.org/ebooks/23842', 'zh', 3870), +(36304, 'Jolly Sally Pendleton; Or, the Wife Who Was Not a Wife', 'Libbey, Laura Jean', '2009-07-29', 26, 'https://www.gutenberg.org/ebooks/29544', 'en', 48), +(36305, 'Wagner as I Knew Him', 'Praeger, Ferdinand', '2013-06-04', 12, 'https://www.gutenberg.org/ebooks/42875', 'en', 1464), +(36306, 'A Winter Tour in South Africa', 'Young, Frederick', '2005-07-30', 15, 'https://www.gutenberg.org/ebooks/16399', 'en', 6548), +(36307, 'The Rising Tide', 'Deland, Margaret Wade Campbell', '2017-06-15', 14, 'https://www.gutenberg.org/ebooks/54910', 'en', 348), +(36308, 'Introduction to the Science of Sociology', 'Burgess, E. W. (Ernest Watson)', '2009-04-04', 155, 'https://www.gutenberg.org/ebooks/28496', 'en', 3503), +(36309, 'La femme affranchie, vol. 1 of 2\r\nRéponse à MM. Michelet, Proudhon, E. de Girardin, A. Comte et aux autres novateurs modernes', 'Héricourt, Madame d\'', '2016-10-18', 24, 'https://www.gutenberg.org/ebooks/53309', 'fr', 10615), +(36310, 'Heart of the Sunset', 'Beach, Rex', '2004-02-01', 70, 'https://www.gutenberg.org/ebooks/5099', 'en', 315), +(36311, 'Hardy Ornamental Flowering Trees and Shrubs', 'Webster, Angus Duncan', '2004-01-01', 76, 'https://www.gutenberg.org/ebooks/10852', 'en', 13632), +(36312, 'A Tramp\'s Sketches', 'Graham, Stephen', '2004-04-01', 46, 'https://www.gutenberg.org/ebooks/11980', 'en', 6352), +(36313, 'History of the Harvard College Observatory During the Period 1840-1890', 'Baker, Daniel W.', '2019-05-30', 9, 'https://www.gutenberg.org/ebooks/59633', 'en', 13633), +(36314, 'Dusty Diamonds Cut and Polished: A Tale of City Arab Life and Adventure', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 31, 'https://www.gutenberg.org/ebooks/21729', 'en', 1655), +(36315, 'Sir Thomas Urquhart of Cromartie, Knight', 'Willcock, John', '2012-01-18', 13, 'https://www.gutenberg.org/ebooks/38604', 'en', 13634), +(36316, 'Dreams', 'Schreiner, Olive', '1998-08-01', 101, 'https://www.gutenberg.org/ebooks/1439', 'en', 6758), +(36317, 'The McNaughtens', 'Regnard, Jean François', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/4977', 'en', 907), +(36318, 'Right Use of Lime in Soil Improvement', 'Agee, Alva', '2008-05-08', 15, 'https://www.gutenberg.org/ebooks/25389', 'en', 13635), +(36319, 'Poisonous Dwellers of the Desert', 'Dodge, Natt N. (Natt Noyes)', '2017-04-14', 13, 'https://www.gutenberg.org/ebooks/54548', 'en', 13636), +(36320, 'Doctor Rabbit and Brushtail the Fox', 'Hinkle, Thomas C. (Thomas Clark)', '2006-06-23', 8, 'https://www.gutenberg.org/ebooks/18667', 'en', 1045), +(36321, 'La doctrine de l\'Islam', 'Carra de Vaux, Bernard', '2015-01-13', 25, 'https://www.gutenberg.org/ebooks/47963', 'fr', 3852), +(36322, 'P.\'s Correspondence (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9230', 'en', 179), +(36323, 'The Heir to Grand-Pré', 'Herbin, John Frederic', '2015-01-30', 4, 'https://www.gutenberg.org/ebooks/48117', 'en', 12755), +(36324, 'Tykkien virsi: Kenttäpapin kokemuksia ja mielialoja vapaussodan päiviltä', 'Järventaus, Arvi', '2016-04-19', 24, 'https://www.gutenberg.org/ebooks/51806', 'fi', 9007), +(36325, 'The Success Machine', 'Slesar, Henry', '2008-08-01', 36, 'https://www.gutenberg.org/ebooks/26168', 'en', 2797), +(36326, 'The Money Master, Volume 4.', 'Parker, Gilbert', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/6278', 'en', 589), +(36327, 'India and the Indians', 'Elwin, Edward Fenton', '2009-01-25', 46, 'https://www.gutenberg.org/ebooks/27886', 'en', 13637), +(36328, 'Le Piccinino', 'Sand, George', '2010-01-02', 5, 'https://www.gutenberg.org/ebooks/30831', 'fr', 61), +(36329, 'A Morgadinha dos Cannaviaes\r\n(Chronica da aldeia)', 'Dinis, Júlio', '2009-06-14', 37, 'https://www.gutenberg.org/ebooks/29120', 'pt', 410), +(36330, 'The Mirror of Taste, and Dramatic Censor, Vol. I, No. 4, April 1810', NULL, '2008-10-18', 12, 'https://www.gutenberg.org/ebooks/26954', 'en', 5310), +(36331, 'Mr. Dide, His Vacation in Colorado', 'France, Lewis B.', '2014-05-07', 17, 'https://www.gutenberg.org/ebooks/45608', 'en', 182), +(36332, 'Alaska', 'Jón Ólafsson', '2005-02-26', 18, 'https://www.gutenberg.org/ebooks/15178', 'is', 13638), +(36333, 'The Threefold Commonwealth', 'Steiner, Rudolf', '2019-04-12', 8, 'https://www.gutenberg.org/ebooks/59257', 'en', 13639), +(36334, 'The American Apiculturist. Vol. III. No. 6, June 15, 1885\nA Journal Devoted to Scientific and Practical Beekeeping', 'Various', '2018-12-01', 4, 'https://www.gutenberg.org/ebooks/58385', 'en', 2825), +(36335, 'An Old Town By the Sea', 'Aldrich, Thomas Bailey', '2006-03-22', 50, 'https://www.gutenberg.org/ebooks/1861', 'en', 13640), +(36336, 'Index to University of Kansas Publications, Museum of Natural History, Volume 1\r\n1946-1950', 'University of Kansas', '2011-08-28', 15, 'https://www.gutenberg.org/ebooks/37228', 'en', 198), +(36337, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 277, October 13, 1827', 'Various', '2005-05-30', 5, 'https://www.gutenberg.org/ebooks/15944', 'en', 133), +(36338, 'The Diamond Master', 'Futrelle, Jacques', '2005-02-04', 30, 'https://www.gutenberg.org/ebooks/14896', 'en', 128), +(36339, 'Tales of the Wonder Club, Volume I', 'Halidom, M. Y.', '2010-09-09', 34, 'https://www.gutenberg.org/ebooks/33688', 'en', 580), +(36340, 'Zacharias Topelius: Elämä ja toiminta', 'Sarlin, A. J.', '2011-12-10', 7, 'https://www.gutenberg.org/ebooks/38260', 'fi', 13641), +(36341, 'Harper\'s Round Table, August 25, 1896', 'Various', '2019-03-15', 0, 'https://www.gutenberg.org/ebooks/59065', 'en', 668), +(36342, 'Adventures in American Bookshops, Antique Stores and Auction Rooms', 'Bruno, Guido', '2018-03-22', 21, 'https://www.gutenberg.org/ebooks/56811', 'en', 13642), +(36343, 'Blue-Stocking Hall, (Vol. 1 of 3)', 'Scargill, William Pitt', '2012-10-08', 19, 'https://www.gutenberg.org/ebooks/40974', 'en', 9044), +(36344, 'The Art of Interior Decoration', 'Wood, Grace', '2004-12-08', 33, 'https://www.gutenberg.org/ebooks/14298', 'en', 8534), +(36345, 'A Frontier Mystery', 'Mitford, Bertram', '2010-05-28', 11, 'https://www.gutenberg.org/ebooks/32568', 'en', 12645), +(36346, 'Candide, ou, l\'optimisme', 'Voltaire', '2019-07-05', 187, 'https://www.gutenberg.org/ebooks/59859', 'fr', 781), +(36347, 'Ti-Ping Tien-Kwoh: The History of the Ti-Ping Revolution (Volume I)', 'Lindley, Augustus F.', '2012-03-17', 27, 'https://www.gutenberg.org/ebooks/39180', 'en', 13643), +(36348, 'Peter Schlemihl', 'Chamisso, Adelbert von', '2007-06-26', 37, 'https://www.gutenberg.org/ebooks/21943', 'en', 1141), +(36349, 'The Youthful Wanderer\r\nAn Account of a Tour through England, France, Belgium, Holland, Germany and the Rhine, Switzerland, Italy, and Egypt, Adapted to the Wants of Young Americans Taking Their First Glimpses at the Old World', 'Heffner, George H.', '2004-01-01', 15, 'https://www.gutenberg.org/ebooks/10638', 'en', 1408), +(36350, 'Daisy: the autobiography of a cat', 'Swan, Miranda Eliot', '2011-10-23', 18, 'https://www.gutenberg.org/ebooks/37826', 'en', 1853), +(36351, 'The Footlights, Fore and Aft', 'Pollock, Channing', '2012-07-06', 19, 'https://www.gutenberg.org/ebooks/40148', 'en', 5475), +(36352, 'Itinerary of Provence and the Rhone\nMade During the Year 1819', 'Hughes, John', '2007-03-24', 13, 'https://www.gutenberg.org/ebooks/20891', 'en', 209), +(36353, 'Reynard the Fox', 'Masefield, John', '2011-11-18', 57, 'https://www.gutenberg.org/ebooks/38052', 'en', 13644), +(36354, 'Personal Recollections of Joan of Arc — Volume 02', 'Twain, Mark', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/9002', 'en', 984), +(36355, 'Karl Krinken, His Christmas Stocking', 'Warner, Susan', '2015-02-21', 14, 'https://www.gutenberg.org/ebooks/48325', 'en', 11271), +(36356, 'The British Association\'s Visit to Montreal, 1884 : Letters', 'Rayleigh, Clara, Lady', '2004-11-01', 17, 'https://www.gutenberg.org/ebooks/6876', 'en', 1110), +(36357, 'Vie de Franklin, écrite par lui-même - Tome I\r\nSuivie de ses œuvres morales, politiques et littéraires', 'Franklin, Benjamin', '2006-05-26', 44, 'https://www.gutenberg.org/ebooks/18455', 'fr', 3754), +(36358, 'Flame and Shadow', 'Teasdale, Sara', '1996-07-01', 101, 'https://www.gutenberg.org/ebooks/591', 'en', 178), +(36359, 'The Life of Trust: Being a Narrative of the Lord\'s Dealings With George Müller', 'Müller, George', '2008-11-17', 54, 'https://www.gutenberg.org/ebooks/27288', 'en', 5230), +(36360, 'The Christmas Kalends of Provence\nAnd Some Other Provençal Festivals', 'Janvier, Thomas A. (Thomas Allibone)', '2006-10-19', 15, 'https://www.gutenberg.org/ebooks/19587', 'en', 13645), +(36361, 'The Americanization of Edward Bok\r\nThe Autobiography of a Dutch Boy Fifty Years After', 'Bok, Edward William', '2002-11-01', 55, 'https://www.gutenberg.org/ebooks/3538', 'en', 11278), +(36362, 'Lumottu', 'Janson, Kristofer', '2007-11-26', 14, 'https://www.gutenberg.org/ebooks/23628', 'fi', 7), +(36363, 'The Case of Mrs. Clive', 'Clive, Mrs. (Catherine)', '2004-10-27', 5, 'https://www.gutenberg.org/ebooks/13881', 'en', 13646), +(36364, 'The Adventures of Tom Sawyer, Part 6.', 'Twain, Mark', '2004-06-30', 9, 'https://www.gutenberg.org/ebooks/7198', 'en', 5479), +(36365, 'Sketches of Western North Carolina, Historical and Biographical\r\nIllustrating Principally the Revolutionary Period of Mecklenburg, Rowan, Lincoln and Adjoining Counties, Accompanied with Miscellaneous Information, Much of It Never before Published', 'Hunter, C. L.', '2004-07-19', 37, 'https://www.gutenberg.org/ebooks/12953', 'en', 13647), +(36366, 'Camping with President Roosevelt', 'Burroughs, John', '2009-07-04', 21, 'https://www.gutenberg.org/ebooks/29312', 'en', 4594), +(36367, 'Gedanken über Religion\r\nDie religiöse Entwicklung eines Naturforschers vom Atheismus zum Christentum.', 'Romanes, George John', '2016-02-13', 8, 'https://www.gutenberg.org/ebooks/51208', 'de', 2713), +(36368, 'Patriarchal Palestine', 'Sayce, A. H. (Archibald Henry)', '2004-12-21', 31, 'https://www.gutenberg.org/ebooks/14405', 'en', 3584), +(36369, 'The Borough Treasurer', 'Fletcher, J. S. (Joseph Smith)', '2007-02-19', 98, 'https://www.gutenberg.org/ebooks/20630', 'en', 128), +(36370, 'Olivia in India', 'Douglas, O.', '2004-02-01', 51, 'https://www.gutenberg.org/ebooks/10899', 'en', 1228), +(36371, 'The Cruise of the Land-Yacht \"Wanderer\"; or, Thirteen Hundred Miles in my Caravan', 'Stables, Gordon', '2011-10-10', 19, 'https://www.gutenberg.org/ebooks/37687', 'en', 776), +(36372, 'Absalom\'s Hair', 'Bjørnson, Bjørnstjerne', '2004-02-01', 33, 'https://www.gutenberg.org/ebooks/5052', 'en', 2388), +(36373, 'The Bee Hunters: A Tale of Adventure', 'Aimard, Gustave', '2013-12-06', 23, 'https://www.gutenberg.org/ebooks/44375', 'en', 58), +(36374, 'The Child\'s Picture Book', 'Anonymous', '2011-07-16', 21, 'https://www.gutenberg.org/ebooks/36755', 'en', 1019), +(36375, 'Diary of Samuel Pepys — Volume 57: September 1667', 'Pepys, Samuel', '2004-12-01', 10, 'https://www.gutenberg.org/ebooks/4180', 'en', 2197), +(36376, 'The Hispaniola Plate (1683-1893)', 'Bloundelle-Burton, John', '2016-06-01', 10, 'https://www.gutenberg.org/ebooks/52210', 'en', 13648), +(36377, 'La fee triunfante en quatro autos\r\nCelebrados en Mallorca por el Santo Oficio de la Inquisición en que han salido ochenta y ocho reos, y de treinta y siete relajados sólo hubo tres pertinaces.', 'Garau, Francisco', '2010-07-22', 19, 'https://www.gutenberg.org/ebooks/33227', 'es', 13649), +(36378, 'Les Musardises', 'Rostand, Edmond', '2018-09-04', 16, 'https://www.gutenberg.org/ebooks/57762', 'fr', 4086), +(36379, 'PRoblem', 'Nourse, Alan Edward', '2008-01-15', 38, 'https://www.gutenberg.org/ebooks/24290', 'en', 67), +(36380, 'The Incomparable 29th and the \"River Clyde\"', 'Davidson, George', '2008-05-05', 15, 'https://www.gutenberg.org/ebooks/25342', 'en', 13650), +(36381, 'Punchinello, Volume 1, No. 01, April 2, 1870', 'Various', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/11177', 'en', 372), +(36382, 'Oom Paul\'s People\r\nA Narrative of the British-Boer Troubles in South Africa, with a History of the Boers, the Country, and Its Institutions', 'Hillegas, Howard Clemens', '2012-12-11', 68, 'https://www.gutenberg.org/ebooks/41607', 'en', 13651), +(36383, 'A Taxonomic Study of the Middle American Snake, Pituophis deppei', 'Duellman, William Edward', '2010-03-09', 17, 'https://www.gutenberg.org/ebooks/31570', 'en', 13652), +(36384, 'History of Ancient Art', 'Reber, Franz von', '2013-02-12', 29, 'https://www.gutenberg.org/ebooks/42082', 'en', 13653), +(36385, 'The Marvellous Adventures and Rare Conceits of Master Tyll Owlglass\nNewly collected, chronicled and set forth, in our English tongue', NULL, '2017-07-03', 12, 'https://www.gutenberg.org/ebooks/55035', 'en', 4823), +(36386, '殺子報', 'Lingyanqiaozi', '2008-12-05', 18, 'https://www.gutenberg.org/ebooks/27415', 'zh', 3187), +(36387, 'The World\'s Greatest Books — Volume 13 — Religion and Philosophy', NULL, '2004-10-07', 153, 'https://www.gutenberg.org/ebooks/13620', 'en', 655), +(36388, 'The Constant Prince', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-08', 7, 'https://www.gutenberg.org/ebooks/43150', 'en', 388), +(36389, 'Charley de Milo', 'Janifer, Laurence M.', '2007-12-18', 20, 'https://www.gutenberg.org/ebooks/23889', 'en', 26), +(36390, 'Condensed Novels', 'Harte, Bret', '2000-08-01', 39, 'https://www.gutenberg.org/ebooks/2277', 'en', 2529), +(36391, 'The Uncensored Letters of a Canteen Girl', 'Morse, Katharine Duncan', '2016-03-19', 24, 'https://www.gutenberg.org/ebooks/51495', 'en', 449), +(36392, 'The Great Events by Famous Historians, Volume 01', NULL, '2005-07-24', 53, 'https://www.gutenberg.org/ebooks/16352', 'en', 346), +(36393, 'C. F. Gellerts Sämmtliche Schriften\nZweyter Theil', 'Gellert, Christian Fürchtegott', '2007-07-28', 23, 'https://www.gutenberg.org/ebooks/22167', 'de', 1518), +(36394, 'The Squirrel Hunters of Ohio; or, Glimpses of Pioneer Life', 'Jones, N. E. (Nelson Edward)', '2017-10-25', 15, 'https://www.gutenberg.org/ebooks/55809', 'en', 13654), +(36395, '\"My Novel\" — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7705', 'en', 378), +(36396, 'The Lenâpé and Their Legends\r\nWith the complete text and symbols of the Walam olum, a new translation, and an inquiry into its authenticity', 'Brinton, Daniel G. (Daniel Garrison)', '2014-07-26', 13, 'https://www.gutenberg.org/ebooks/46422', 'en', 13655), +(36397, 'Dick\'s Desertion: A Boy\'s Adventures in Canadian Forests\r\nA Tale of the Early Settlement of Ontario', 'Pickthall, Marjorie L. C. (Marjorie Lowry Christie)', '2010-09-26', 6, 'https://www.gutenberg.org/ebooks/34002', 'en', 153), +(36398, 'Anthropology', 'Marett, R. R. (Robert Ranulph)', '2005-12-11', 109, 'https://www.gutenberg.org/ebooks/17280', 'en', 3503), +(36399, 'Maisteri kesävieraana: Näytelmä kolmessa näytöksessä', 'Tanner, Nestor', '2015-11-25', 6, 'https://www.gutenberg.org/ebooks/50547', 'fi', 433), +(36400, 'Ada', 'Zetterström, Hasse', '2006-08-26', 8, 'https://www.gutenberg.org/ebooks/19128', 'sv', 6503), +(36401, 'The Kansas University Quarterly, Vol. I, No. 1 (1892)', 'Various', '2017-07-26', 7, 'https://www.gutenberg.org/ebooks/55207', 'en', 1584), +(36402, 'Mark Twain\'s Letters — Volume 5 (1901-1906)', 'Twain, Mark', '2004-09-19', 10, 'https://www.gutenberg.org/ebooks/3197', 'en', 2518), +(36403, 'O Oraculo do Passado, do presente e do Futuro (7/7)\r\nParte Setima: O oraculo dos Astros', 'Serrano, Bento', '2010-03-23', 3, 'https://www.gutenberg.org/ebooks/31742', 'pt', 185), +(36404, 'Writ in Barracks', 'Wallace, Edgar', '2015-08-08', 42, 'https://www.gutenberg.org/ebooks/49658', 'en', 13656), +(36405, 'Riddle of the Storm\nA Mystery Story for Boys', 'Snell, Roy J. (Roy Judson)', '2013-07-30', 21, 'https://www.gutenberg.org/ebooks/43362', 'en', 557), +(36406, 'My Memories of Eighty Years', 'Depew, Chauncey M. (Chauncey Mitchell)', '2000-01-01', 51, 'https://www.gutenberg.org/ebooks/2045', 'en', 122), +(36407, 'The Casual Ward: Academic and Other Oddments', 'Godley, A. D. (Alfred Denis)', '2009-12-16', 10, 'https://www.gutenberg.org/ebooks/30690', 'en', 564), +(36408, 'Le Sentier', 'Du Veuzit, Max', '2008-12-25', 19, 'https://www.gutenberg.org/ebooks/27627', 'fr', 415), +(36409, 'The Schoolmaster and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 125, 'https://www.gutenberg.org/ebooks/13412', 'en', 85), +(36410, 'Arabic Authors\nA Manual of Arabian History and Literature', 'Arbuthnot, F. F.', '2006-11-24', 32, 'https://www.gutenberg.org/ebooks/19914', 'en', 13657), +(36411, 'Shallow Soil', 'Hamsun, Knut', '2005-02-01', 40, 'https://www.gutenberg.org/ebooks/7537', 'en', 286), +(36412, 'The Pastor\'s Fire-side Vol. 2 (of 4)', 'Porter, Jane', '2014-08-17', 12, 'https://www.gutenberg.org/ebooks/46610', 'en', 7722), +(36413, 'The Treasury of Ancient Egypt\nMiscellaneous Chapters on Ancient Egyptian History and Archaeology', 'Weigall, Arthur E. P. Brome (Arthur Edward Pearse Brome)', '2005-07-01', 47, 'https://www.gutenberg.org/ebooks/16160', 'en', 673), +(36414, 'Schelmuffskys wahrhaftige, kuriöse und sehr gefährliche Reisebeschreibung zu Wasser und zu Lande', 'Reuter, Christian', '2007-08-19', 31, 'https://www.gutenberg.org/ebooks/22355', 'de', 611), +(36415, 'Lavengro: The Scholar, the Gypsy, the Priest', 'Borrow, George', '2007-11-01', 30, 'https://www.gutenberg.org/ebooks/23287', 'en', 95), +(36416, 'Twenty Years\' Experience as a Ghost Hunter', 'O\'Donnell, Elliott', '2015-12-27', 41, 'https://www.gutenberg.org/ebooks/50775', 'en', 1245), +(36417, 'The Happy Prince, and Other Tales', 'Wilde, Oscar', '1997-05-01', 1262, 'https://www.gutenberg.org/ebooks/902', 'en', 651), +(36418, 'Sweethearts at Home', 'Crockett, S. R. (Samuel Rutherford)', '2010-11-07', 12, 'https://www.gutenberg.org/ebooks/34230', 'en', 13658), +(36419, 'A Duet, with an Occasional Chorus', 'Doyle, Arthur Conan', '2004-03-01', 49, 'https://www.gutenberg.org/ebooks/5260', 'en', 705), +(36420, 'The Great American Pie Company', 'Butler, Ellis Parker', '2013-11-10', 16, 'https://www.gutenberg.org/ebooks/44147', 'en', 1426), +(36421, 'Kissing the Rod: A Novel. (Vol. 2 of 3)', 'Yates, Edmund', '2018-12-22', 14, 'https://www.gutenberg.org/ebooks/58518', 'en', 95), +(36422, 'Aspects of Literature', 'Murry, John Middleton', '2005-01-08', 44, 'https://www.gutenberg.org/ebooks/14637', 'en', 2641), +(36423, 'The Nightriders\' Feud', 'McConnell, Walter Caruth', '2010-10-02', 10, 'https://www.gutenberg.org/ebooks/33829', 'en', 1996), +(36424, 'Beside the Still Waters\nA Sermon', 'Beard, Charles', '2007-01-20', 19, 'https://www.gutenberg.org/ebooks/20402', 'en', 2386), +(36425, 'The Cricket Field: Or, the History and Science of the Game of Cricket', 'Pycroft, James', '2016-05-07', 16, 'https://www.gutenberg.org/ebooks/52022', 'en', 2802), +(36426, 'Punch, or the London Charivari, Volume 148, January 13th 1915', 'Various', '2014-03-09', 19, 'https://www.gutenberg.org/ebooks/45095', 'en', 134), +(36427, 'Music by Janis Ian', 'Ian, Janis', '2011-06-30', 13, 'https://www.gutenberg.org/ebooks/36567', 'en', 13659), +(36428, 'El Folk-lore Filipino (Tomo I)', 'Reyes y Florentino, Isabelo de los', '2018-07-20', 19, 'https://www.gutenberg.org/ebooks/57550', 'es', 5098), +(36429, 'Saxema', NULL, '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10297', 'en', 3011), +(36430, 'The Overcoming Life, and Other Sermons', 'Moody, Dwight Lyman', '2010-06-28', 25, 'https://www.gutenberg.org/ebooks/33015', 'en', 11496), +(36431, 'British Secret Service During the Great War', 'Everitt, Nicholas', '2012-11-21', 7, 'https://www.gutenberg.org/ebooks/41435', 'en', 13660), +(36432, 'Facts for the Kind-Hearted of England!\nAs to the Wretchedness of the Irish Peasantry, and the Means for their Regeneration', 'Rogers, Jasper W.', '2008-04-25', 18, 'https://www.gutenberg.org/ebooks/25170', 'en', 13661), +(36433, 'Education as Service', 'Krishnamurti, J. (Jiddu)', '2004-02-01', 89, 'https://www.gutenberg.org/ebooks/11345', 'en', 746), +(36434, 'Dell\'arte dei giardini inglesi', 'Silva, Ercole', '2018-02-01', 33, 'https://www.gutenberg.org/ebooks/56482', 'it', 13662), +(36435, 'Wounds in the rain: War stories', 'Crane, Stephen', '2013-09-12', 33, 'https://www.gutenberg.org/ebooks/43706', 'en', 112), +(36436, 'The Beggar\'s Opera', 'Gay, John', '2000-12-01', 130, 'https://www.gutenberg.org/ebooks/2421', 'en', 4921), +(36437, 'The Fulfilment of a Dream of Pastor Hsi\'s\nThe Story of the Work in Hwochow', 'Cable, Mildred', '2008-11-12', 15, 'https://www.gutenberg.org/ebooks/27243', 'en', 13663), +(36438, 'The Life of John Ruskin', 'Collingwood, W. G. (William Gershom)', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/13076', 'en', 53), +(36439, 'The Sauciest Boy in the Service: A Story of Pluck and Perseverance', 'Stables, Gordon', '2017-10-01', 8, 'https://www.gutenberg.org/ebooks/55663', 'en', 4321), +(36440, 'The Unknown Wrestler', 'Cody, H. A. (Hiram Alfred)', '2008-08-22', 12, 'https://www.gutenberg.org/ebooks/26391', 'en', 65), +(36441, 'The Wealth of Echindul', 'Loomis, Noel M.', '2010-02-19', 15, 'https://www.gutenberg.org/ebooks/31326', 'en', 179), +(36442, 'Mont Oriol; or, A Romance of Auvergne: A Novel', 'Maupassant, Guy de', '2015-10-26', 24, 'https://www.gutenberg.org/ebooks/50311', 'en', 13664), +(36443, 'Character and Opinion in the United States\r\nWith Reminiscences of William James and Josiah Royce and Academic Life in America', 'Santayana, George', '2010-12-12', 15, 'https://www.gutenberg.org/ebooks/34654', 'en', 7462), +(36444, 'Biographia Literaria', 'Coleridge, Samuel Taylor', '2004-07-01', 618, 'https://www.gutenberg.org/ebooks/6081', 'en', 2641), +(36445, 'Thankful Rest', 'Swan, Annie S.', '2004-07-23', 6, 'https://www.gutenberg.org/ebooks/12998', 'en', 1655), +(36446, 'She\'s All the World to Me', 'Caine, Hall, Sir', '2011-04-07', 15, 'https://www.gutenberg.org/ebooks/35786', 'en', 3652), +(36447, 'Elder Conklin and Other Stories', 'Harris, Frank', '2004-12-01', 16, 'https://www.gutenberg.org/ebooks/7153', 'en', 179), +(36448, 'Oxford and Its Story', 'Headlam, Cecil', '2014-07-13', 32, 'https://www.gutenberg.org/ebooks/46274', 'en', 13026), +(36449, 'Auf dem Staatshof', 'Storm, Theodor', '2005-09-01', 23, 'https://www.gutenberg.org/ebooks/8927', 'de', 906), +(36450, 'Renaissance in Italy, Volumes 6 and 7 (of 7)\r\nThe Catholic Reaction', 'Symonds, John Addington', '2005-08-10', 16, 'https://www.gutenberg.org/ebooks/16504', 'en', 13665), +(36451, 'Tin-Types Taken in the Streets of New York\nA Series of Stories and Sketches Portraying Many Singular\nPhases of Metropolitan Life', 'Quigg, Lemuel Ely', '2007-09-23', 28, 'https://www.gutenberg.org/ebooks/22731', 'en', 2999), +(36452, 'Dionysos: Valikoima runoja', 'Nietzsche, Friedrich Wilhelm', '2016-06-30', 17, 'https://www.gutenberg.org/ebooks/52446', 'fi', 11224), +(36453, 'Victorian Short Stories: Stories of Courtship', NULL, '2005-03-16', 68, 'https://www.gutenberg.org/ebooks/15381', 'en', 500), +(36454, 'Illustrations of Universal Progress: A Series of Discussions', 'Spencer, Herbert', '2012-06-12', 17, 'https://www.gutenberg.org/ebooks/39977', 'en', 8061), +(36455, 'Dorothy\'s Double. Volume 1 (of 3)', 'Henty, G. A. (George Alfred)', '2011-05-14', 21, 'https://www.gutenberg.org/ebooks/36103', 'en', 2496), +(36456, 'Bumper the White Rabbit in the Woods', 'Walsh, George Ethelbert', '2018-09-15', 14, 'https://www.gutenberg.org/ebooks/57908', 'en', 625), +(36457, 'Getting Married', 'Shaw, Bernard', '2004-05-01', 125, 'https://www.gutenberg.org/ebooks/5604', 'en', 13666), +(36458, 'Jack Sheppard: A Romance, Vol. 3 (of 3)', 'Ainsworth, William Harrison', '2013-12-26', 13, 'https://www.gutenberg.org/ebooks/44523', 'en', 1329), +(36459, 'Flames', 'Hichens, Robert', '2004-12-04', 27, 'https://www.gutenberg.org/ebooks/14253', 'en', 61), +(36460, 'Hiilipiirroksia', 'Sienkiewicz, Henryk', '2016-11-25', 24, 'https://www.gutenberg.org/ebooks/53594', 'fi', 13667), +(36461, 'Ethics in Service', 'Taft, William H. (William Howard)', '2006-12-09', 23, 'https://www.gutenberg.org/ebooks/20066', 'en', 447), +(36462, 'Breaking Point', 'Gunn, James E.', '2007-07-02', 41, 'https://www.gutenberg.org/ebooks/21988', 'en', 26), +(36463, 'Peter Camenzind', 'Hesse, Hermann', '2012-10-14', 114, 'https://www.gutenberg.org/ebooks/41051', 'de', 549), +(36464, 'Changeling, and Other Stories', 'Byrne, Donn', '2019-07-10', 149, 'https://www.gutenberg.org/ebooks/59892', 'en', 13668), +(36465, 'The Ranger Boys and the Border Smugglers', 'Labelle, Claude A.', '2008-05-18', 15, 'https://www.gutenberg.org/ebooks/25514', 'en', 8198), +(36466, 'O. Henry Memorial Award Prize Stories of 1920', NULL, '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11721', 'en', 8280), +(36467, 'A Manual of Bird Study\nA Description of Twenty-Five Local Birds with Study Options', 'Carr, William H. (William Henry)', '2018-05-11', 8, 'https://www.gutenberg.org/ebooks/57134', 'en', 13669), +(36468, 'Stories and Ballads of the Far Past\r\nTranslated from the Norse (Icelandic and Faroese) with Introductions and Notes', 'Chadwick, Nora K. (Nora Kershaw)', '2010-08-20', 41, 'https://www.gutenberg.org/ebooks/33471', 'en', 13670), +(36469, 'Mistakes of Moses', 'Ingersoll, Robert Green', '2011-11-22', 58, 'https://www.gutenberg.org/ebooks/38099', 'en', 1191), +(36470, 'The Wolf Demon; or, The Queen of the Kanawha', 'Aiken, Albert W.', '2019-02-23', 21, 'https://www.gutenberg.org/ebooks/58940', 'en', 654), +(36471, 'A Garden with House Attached', 'Brooks, Sarah Warner', '2012-07-09', 21, 'https://www.gutenberg.org/ebooks/40183', 'en', 1413), +(36472, 'L\'Illustration, No. 3645, 4 Janvier 1913', 'Various', '2011-06-05', 5, 'https://www.gutenberg.org/ebooks/36331', 'fr', 150), +(36473, 'James Braithwaite, the Supercargo: The Story of his Adventures Ashore and Afloat', 'Kingston, William Henry Giles', '2007-05-08', 27, 'https://www.gutenberg.org/ebooks/21386', 'en', 1398), +(36474, 'How to Become a Successful Singer', 'Butt, Clara, Dame', '2016-07-29', 32, 'https://www.gutenberg.org/ebooks/52674', 'en', 5276), +(36475, 'Lady Byron Vindicated\r\nA history of the Byron controversy from its beginning in 1816 to the present time', 'Stowe, Harriet Beecher', '2004-11-16', 31, 'https://www.gutenberg.org/ebooks/14061', 'en', 11361), +(36476, 'Les Maîtres sonneurs', 'Sand, George', '2007-01-02', 22, 'https://www.gutenberg.org/ebooks/20254', 'fr', 2625), +(36477, 'Hyperion', 'Longfellow, Henry Wadsworth', '2004-04-01', 83, 'https://www.gutenberg.org/ebooks/5436', 'en', 1907), +(36478, 'Kertomuksia Suomen historiasta II\nKustaa Vaasa', 'Krohn, Julius', '2014-01-19', 11, 'https://www.gutenberg.org/ebooks/44711', 'fi', 1578), +(36479, 'The Pretty Sister Of José\n1889', 'Burnett, Frances Hodgson', '2008-06-08', 9, 'https://www.gutenberg.org/ebooks/25726', 'en', 6050), +(36480, 'On Land and Sea at the Dardanelles', 'Bridges, T. C. (Thomas Charles)', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11513', 'en', 579), +(36481, 'The Mediterranean: Its Storied Cities and Venerable Ruins', 'Allen, Grant', '2012-11-02', 15, 'https://www.gutenberg.org/ebooks/41263', 'en', 13671), +(36482, 'Considerações sobre a Philosophia da Historia Litteraria Portugueza\r\n(a proposito d\'alguns livros recentes)', 'Quental, Antero de', '2010-06-13', 17, 'https://www.gutenberg.org/ebooks/32791', 'pt', 13672), +(36483, 'Collins\' Illustrated Guide to London and Neighbourhood\r\nBeing a Concise Description of the Chief Places of Interest in the Metropolis, and the Best Modes of Obtaining Access to Them: with Information Relating to Railways, Omnibuses, Steamers, &c.', 'Anonymous', '2012-04-05', 15, 'https://www.gutenberg.org/ebooks/39379', 'en', 13673), +(36484, 'The Faith of Men', 'London, Jack', '1997-11-01', 51, 'https://www.gutenberg.org/ebooks/1096', 'en', 112), +(36485, 'In the Day of Adversity', 'Bloundelle-Burton, John', '2010-09-05', 9, 'https://www.gutenberg.org/ebooks/33643', 'en', 401), +(36486, 'My Day: Reminiscences of a Long Life', 'Pryor, Sara Agnes Rice', '2018-06-11', 10, 'https://www.gutenberg.org/ebooks/57306', 'en', 444), +(36487, 'The Third Miss Symons', 'Mayor, F. M. (Flora Macdonald)', '2008-10-28', 32, 'https://www.gutenberg.org/ebooks/27071', 'en', 45), +(36488, 'Wuthering Heights', 'Brontë, Emily', '1996-12-01', 4026, 'https://www.gutenberg.org/ebooks/768', 'en', 13322), +(36489, 'Brian Fitz-Count: A Story of Wallingford Castle and Dorchester Abbey', 'Crake, A. D. (Augustine David)', '2017-04-20', 3, 'https://www.gutenberg.org/ebooks/54583', 'en', 98), +(36490, 'Punch, or the London Charivari\r\nThe Christmas Number, 1890', 'Various', '2004-08-21', 23, 'https://www.gutenberg.org/ebooks/13244', 'en', 134), +(36491, 'What\'s your hurry? A deck full of jokers', 'Niblo, George', '2013-08-22', 19, 'https://www.gutenberg.org/ebooks/43534', 'en', 190), +(36492, 'Dorothy\'s House Party', 'Raymond, Evelyn', '2009-05-15', 45, 'https://www.gutenberg.org/ebooks/28805', 'en', 13674), +(36493, 'The History of England, from the Accession of James II — Volume 4', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 61, 'https://www.gutenberg.org/ebooks/2613', 'en', 3001), +(36494, 'The Bible, Douay-Rheims, Book 29: Lamentations of Jeremias\nThe Challoner Revision', NULL, '2005-06-01', 7, 'https://www.gutenberg.org/ebooks/8329', 'en', 8107), +(36495, 'Wunderbare Reise des kleinen Nils Holgersson mit den Wildgänsen: Ein Kinderbuch', 'Lagerlöf, Selma', '2010-01-29', 116, 'https://www.gutenberg.org/ebooks/31114', 'de', 707), +(36496, 'The Star-Chamber: An Historical Romance, Volume 1', 'Ainsworth, William Harrison', '2004-05-01', 22, 'https://www.gutenberg.org/ebooks/12396', 'en', 2898), +(36497, 'The Irish Penny Journal, Vol. 1 No. 48, May 29, 1841', 'Various', '2017-08-28', 3, 'https://www.gutenberg.org/ebooks/55451', 'en', 81), +(36498, 'Humorous Hits and How to Hold an Audience\nA Collection of Short Selections, Stories and Sketches for All Occasions', NULL, '2014-10-25', 24, 'https://www.gutenberg.org/ebooks/47194', 'en', 190), +(36499, 'Rescue Dog of the High Pass', 'Kjelgaard, Jim', '2010-11-28', 20, 'https://www.gutenberg.org/ebooks/34466', 'en', 13675), +(36500, 'History of Woman Suffrage, Volume II', NULL, '2009-02-09', 121, 'https://www.gutenberg.org/ebooks/28039', 'en', 7165), +(36501, 'The River Motor Boat Boys on the Columbia; Or, The Confession of a Photograph', 'Gordon, Harry', '2015-10-03', 10, 'https://www.gutenberg.org/ebooks/50123', 'en', 13676), +(36502, 'Books and Culture', 'Mabie, Hamilton Wright', '2005-09-23', 13, 'https://www.gutenberg.org/ebooks/16736', 'en', 9561), +(36503, 'A Golfing Idyll; Or, The Skipper\'s Round with the Deil On the Links of St. Andrews', 'Flint, Violet', '2010-04-09', 9, 'https://www.gutenberg.org/ebooks/31928', 'en', 13677), +(36504, 'Piccoli eroi: Libro per i ragazzi', 'Treves, Virginia', '2007-09-04', 37, 'https://www.gutenberg.org/ebooks/22503', 'it', 31), +(36505, 'English Monasteries', 'Thompson, A. Hamilton (Alexander Hamilton)', '2015-08-31', 23, 'https://www.gutenberg.org/ebooks/49832', 'en', 13678), +(36506, 'A Brief History of Panics and Their Periodical Occurrence in the United States', 'Juglar, Clément', '2005-01-01', 17, 'https://www.gutenberg.org/ebooks/7361', 'en', 13679), +(36507, 'Sonia: Between Two Worlds', 'McKenna, Stephen', '2014-06-20', 26, 'https://www.gutenberg.org/ebooks/46046', 'en', 109), +(36508, 'Ancient and Modern Celebrated Freethinkers\r\nReprinted From an English Work, Entitled \"Half-Hours With The Freethinkers.\"', 'Collins, Anthony, pseud.', '2009-10-06', 93, 'https://www.gutenberg.org/ebooks/30200', 'en', 13680), +(36509, 'The Prince of India; Or, Why Constantinople Fell — Volume 02', 'Wallace, Lew', '2004-11-01', 31, 'https://www.gutenberg.org/ebooks/6849', 'en', 4728), +(36510, 'The Wonderful Wizard of Oz', 'Baum, L. Frank (Lyman Frank)', '1993-02-01', 4340, 'https://www.gutenberg.org/ebooks/55', 'en', 5512), +(36511, 'Images of Comet Wild 2, Taken by NASA\'s Stardust spacecraft in 2004', 'United States. National Aeronautics and Space Administration', '2004-08-02', 20, 'https://www.gutenberg.org/ebooks/13082', 'en', 12795), +(36512, 'Kuningas Salomon kaivokset', 'Haggard, H. Rider (Henry Rider)', '2017-05-19', 15, 'https://www.gutenberg.org/ebooks/54745', 'fi', 323), +(36513, 'Luonnon lapsia: 4-näytöksinen huvinäytelmä', 'Lassila, Maiju', '2017-10-08', 6, 'https://www.gutenberg.org/ebooks/55697', 'fi', 382), +(36514, 'North, South and Over the Sea', 'Francis, M. E.', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12150', 'en', 179), +(36515, 'Intestinal Ills\r\nChronic Constipation, Indigestion, Autogenetic Poisons, Diarrhea, Piles, Etc. Also Auto-Infection, Auto-Intoxication, Anemia, Emaciation, Etc. Due to Proctitis and Colitis', 'Jamison, Alcinous B. (Alcinous Burton)', '2008-08-19', 20, 'https://www.gutenberg.org/ebooks/26365', 'en', 13681), +(36516, 'Human Genome Project, Chromosome Number 07', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3507', 'en', 1841), +(36517, 'Prefaces to Four Seventeenth-Century Romances\r\nRoger Boyle, Lord Broghill, preface to Parthenissa (1655) Sir George Mackenzie, \"Apologie for romances,\" prefixed to Aretina, the serious romance (1660) Nathaniel Ingelo, preface to Bentivolio and Urania (1660) Robert Boyle, preface to Theodora and Didymus (1687)', 'Boyle, Roger, Earl of Orrery', '2013-04-29', 8, 'https://www.gutenberg.org/ebooks/42620', 'en', 6588), +(36518, 'Memoria histórica, geográfica, política y éconómica sobre la provincia de Misiones de indios guaranís', 'Doblas, Gonzalo de', '2007-11-25', 17, 'https://www.gutenberg.org/ebooks/23617', 'es', 13682), +(36519, 'Fine Knacks for Ladies', 'Dowland, John', '2005-12-31', 28, 'https://www.gutenberg.org/ebooks/17422', 'en', 2603), +(36520, 'The Habitant and Other French-Canadian Poems', 'Drummond, William Henry', '2006-02-01', 8, 'https://www.gutenberg.org/ebooks/9801', 'en', 8), +(36521, 'Chronique du crime et de l\'innocence, tome 3/8\r\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2014-11-14', 19, 'https://www.gutenberg.org/ebooks/47352', 'fr', 824), +(36522, 'Miss Gibbie Gault', 'Bosher, Kate Langley', '2004-07-01', 15, 'https://www.gutenberg.org/ebooks/6075', 'en', 262), +(36523, 'Religion and Science from Galileo to Bergson', 'Hardwick, J. C. (John Charlton)', '2011-04-05', 42, 'https://www.gutenberg.org/ebooks/35772', 'en', 2713), +(36524, 'James\'s Account of S. H. Long\'s Expedition, 1819-1820, part 3', 'Long, Stephen H. (Stephen Harriman)', '2014-07-14', 26, 'https://www.gutenberg.org/ebooks/46280', 'en', 869), +(36525, 'Au delà du présent...', 'Sienicka, Léonia', '2016-02-16', 11, 'https://www.gutenberg.org/ebooks/51237', 'fr', 259), +(36526, 'Johnny Crow\'s Party', 'Brooke, L. Leslie (Leonard Leslie)', '2007-04-24', 2, 'https://www.gutenberg.org/ebooks/21140', 'en', 1801), +(36527, 'The Modern Housewife or, Ménagère\r\nComprising Nearly One Thousand Receipts, for the Economic and Judicious Preparation of Every Meal of the Day, with those of The Nursery and Sick Room, and Minute Directions for Family Management in All its Branches.', 'Soyer, Alexis', '2013-01-22', 53, 'https://www.gutenberg.org/ebooks/41899', 'en', 1369), +(36528, 'The Weird of the Wentworths: A Tale of George IV\'s Time, Vol. 2', 'Scotus, Johannes', '2012-06-17', 12, 'https://www.gutenberg.org/ebooks/39983', 'en', 658), +(36529, 'Voyage dans l\'Aurès\nNotes d\'un médecin envoyé en mission chez les femmes arabes', 'Chellier, Dorothée', '2005-03-15', 14, 'https://www.gutenberg.org/ebooks/15375', 'fr', 13683), +(36530, 'Pickett\'s Gap', 'Greene, Homer', '2014-04-16', 7, 'https://www.gutenberg.org/ebooks/45405', 'en', 3526), +(36531, 'An Essay Towards a New Theory of Vision', 'Berkeley, George', '2003-12-01', 60, 'https://www.gutenberg.org/ebooks/4722', 'en', 13684), +(36532, 'Getting at the Inner Man, and, Fifty Years on the Lecture Platform', 'Shackleton, Robert', '2011-08-10', 13, 'https://www.gutenberg.org/ebooks/37025', 'en', 10388), +(36533, 'With Rogers on the Frontier: A Story of 1756', 'Oxley, J. Macdonald (James Macdonald)', '2016-11-20', 18, 'https://www.gutenberg.org/ebooks/53560', 'en', 13685), +(36534, 'Η Μάγισσα', 'Prévost, Marcel', '2012-02-12', 23, 'https://www.gutenberg.org/ebooks/38851', 'el', 1782), +(36535, 'Oswald Cray: A Novel', 'Wood, Henry, Mrs.', '2018-10-29', 21, 'https://www.gutenberg.org/ebooks/58188', 'en', 137), +(36536, 'Saint Bartholomew\'s Eve: A Tale of the Huguenot Wars', 'Henty, G. A. (George Alfred)', '2006-12-12', 31, 'https://www.gutenberg.org/ebooks/20092', 'en', 3062), +(36537, 'An Humble Address and Earnest Appeal to Those Respectable Personages in Great-Britain and Ireland, Who, by Their Great and Permanent Interest in Landed Property, Their Liberal Education, Elevated Rank, and Enlarged Views, Are the Ablest to Judge, and the Fittest to Decide, Whether a Connection with, Or a Separation from the Continental Colonies of America, Be Most for the National Advantage, and the Lasting Benefit of These Kingdoms', 'Tucker, Josiah', '2010-05-27', 13, 'https://www.gutenberg.org/ebooks/32557', 'en', 13686), +(36538, 'Metsien mies', 'Grey, Zane', '2019-07-06', 31, 'https://www.gutenberg.org/ebooks/59866', 'fi', 3558), +(36539, 'The Yankee and the Teuton in Wisconsin', 'Schafer, Joseph', '2017-11-20', 16, 'https://www.gutenberg.org/ebooks/56012', 'en', 13687), +(36540, 'The Real Mother Goose', NULL, '2004-01-01', 213, 'https://www.gutenberg.org/ebooks/10607', 'en', 343), +(36541, 'Parvenze e sembianze', 'Albertazzi, Adolfo', '2011-10-22', 23, 'https://www.gutenberg.org/ebooks/37819', 'it', 13688), +(36542, 'The Wit and Humor of America, Volume VIII (of X)', NULL, '2008-01-26', 41, 'https://www.gutenberg.org/ebooks/24432', 'en', 190), +(36543, 'Village Life in China: A Study in Sociology', 'Smith, Arthur H.', '2010-08-22', 88, 'https://www.gutenberg.org/ebooks/33485', 'en', 13689), +(36544, 'Anthem', 'Rand, Ayn', '1998-03-01', 1643, 'https://www.gutenberg.org/ebooks/1250', 'en', 26), +(36545, 'The Carter Girls', 'Speed, Nell', '2012-07-09', 19, 'https://www.gutenberg.org/ebooks/40177', 'en', 1625), +(36546, 'Charles Sumner: his complete works, volume 03 (of 20)', 'Sumner, Charles', '2014-05-13', 25, 'https://www.gutenberg.org/ebooks/45637', 'en', 125), +(36547, 'Watersprings', 'Benson, Arthur Christopher', '2003-10-01', 7, 'https://www.gutenberg.org/ebooks/4510', 'en', 675), +(36548, 'Steve Young', 'Fenn, George Manville', '2007-05-08', 32, 'https://www.gutenberg.org/ebooks/21372', 'en', 3242), +(36549, 'Beeton\'s Book of Needlework', 'Beeton, Mrs. (Isabella Mary)', '2005-02-22', 288, 'https://www.gutenberg.org/ebooks/15147', 'en', 690), +(36550, 'The Caillaux Drama', 'Raphael, John N. (John Nathan)', '2016-07-30', 1, 'https://www.gutenberg.org/ebooks/52680', 'en', 13690), +(36551, 'Leonardo da Vinci als Ingenieur und Philosoph\nEin Beitrag zur Geschichte der Technik und der induktiven Wissenschaften', 'Grothe, Hermann', '2019-04-13', 18, 'https://www.gutenberg.org/ebooks/59268', 'de', 8221), +(36552, 'Sissipäällikkö: Kohtauksia ranskalais-saksalaisesta sodasta', 'Sienkiewicz, Henryk', '2016-12-17', 17, 'https://www.gutenberg.org/ebooks/53752', 'fi', 1180), +(36553, 'The Thirteenth Chair: A Play in Three Acts', 'Veiller, Bayard', '2004-11-19', 16, 'https://www.gutenberg.org/ebooks/14095', 'en', 13691), +(36554, 'Wilson\'s Tales of the Borders and of Scotland, Volume 20', NULL, '2011-08-26', 5, 'https://www.gutenberg.org/ebooks/37217', 'en', 3672), +(36555, 'Historical record of the Seventh Regiment, or the Royal Fusiliers\r\nContaining an Account of the Formation of the Regiment in 1685, and of Its Subsequent Services to 1846.', 'Cannon, Richard', '2017-12-21', 9, 'https://www.gutenberg.org/ebooks/56220', 'en', 13692), +(36556, 'Local Color', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2012-11-05', 27, 'https://www.gutenberg.org/ebooks/41297', 'en', 61), +(36557, 'All That Goes Up', 'Brooks, Kirby', '2010-06-10', 19, 'https://www.gutenberg.org/ebooks/32765', 'en', 179), +(36558, 'First Project Gutenberg Collection of Edgar Allan Poe', 'Poe, Edgar Allan', '1997-10-01', 70, 'https://www.gutenberg.org/ebooks/1062', 'en', 359), +(36559, 'A Song of the Guns', 'Frankau, Gilbert', '2012-07-26', 24, 'https://www.gutenberg.org/ebooks/40345', 'en', 2100), +(36560, 'The Atlantic Monthly, Volume 02, No. 12, October, 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2003-12-01', 22, 'https://www.gutenberg.org/ebooks/10435', 'en', 1227), +(36561, 'Is Slavery Sanctioned by the Bible?', 'Allen, Isaac', '2008-02-13', 29, 'https://www.gutenberg.org/ebooks/24600', 'en', 8180), +(36562, 'Rootabaga Stories', 'Sandburg, Carl', '2008-10-29', 135, 'https://www.gutenberg.org/ebooks/27085', 'en', 179), +(36563, 'A Wedding Trip', 'Pardo Bazán, Emilia, condesa de', '2017-04-19', 14, 'https://www.gutenberg.org/ebooks/54577', 'en', 705), +(36564, 'In Macao', 'Gunnison, Charles A.', '2006-06-22', 23, 'https://www.gutenberg.org/ebooks/18658', 'en', 8), +(36565, 'The Affable Stranger', 'McArthur, Peter', '2015-02-01', 18, 'https://www.gutenberg.org/ebooks/48128', 'en', 13693), +(36566, 'Nella lotta', 'Castelnuovo, Enrico', '2009-09-19', 11, 'https://www.gutenberg.org/ebooks/30032', 'it', 61), +(36567, 'Nacogdoches', 'Blake, Robert Bruce', '2016-04-23', 6, 'https://www.gutenberg.org/ebooks/51839', 'en', 13694), +(36568, 'The Inspector-General', 'Gogol, Nikolai Vasilevich', '2003-02-01', 180, 'https://www.gutenberg.org/ebooks/3735', 'en', 4249), +(36569, 'Blackwood\'s Edinburgh Magazine, No. 401, March 1849', 'Various', '2013-03-25', 15, 'https://www.gutenberg.org/ebooks/42412', 'en', 711), +(36570, 'Le Tour du Monde; Lugano, la ville des fresques\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-09-07', 6, 'https://www.gutenberg.org/ebooks/29923', 'fr', 1673), +(36571, 'The Mother\'s Recompense, Volume 2\r\nA Sequel to Home Influence', 'Aguilar, Grace', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12362', 'en', 2586), +(36572, 'Three Hats\nA Farcical Comedy in Three Acts', 'Shirley, Arthur', '2008-07-31', 16, 'https://www.gutenberg.org/ebooks/26157', 'en', 907), +(36573, 'Viimeinen mohikaani: Kertous vuodelta 1757', 'Cooper, James Fenimore', '2014-10-20', 7, 'https://www.gutenberg.org/ebooks/47160', 'fi', 3464), +(36574, 'The Right of Way — Volume 05', 'Parker, Gilbert', '2004-08-01', 20, 'https://www.gutenberg.org/ebooks/6247', 'en', 1219), +(36575, 'The Master of the Ceremonies', 'Fenn, George Manville', '2010-11-29', 22, 'https://www.gutenberg.org/ebooks/34492', 'en', 167), +(36576, 'Die Kurtisane Jamaica', 'Bethge, Hans', '2007-11-09', 32, 'https://www.gutenberg.org/ebooks/23425', 'de', 13695), +(36577, 'The Growth of a Crystal\nBeing the eighteenth Robert Boyle lecture', 'Miers, Henry Alex', '2015-05-10', 9, 'https://www.gutenberg.org/ebooks/48914', 'en', 13696), +(36578, 'Livro de Máguas', 'Espanca, Florbela de Alma da Conceição', '2006-01-25', 24, 'https://www.gutenberg.org/ebooks/17610', 'pt', 8), +(36579, 'Dictionnaire du patois du pays de Bray', 'Decorde, J.-E. (Jean-Eugène)', '2016-01-23', 20, 'https://www.gutenberg.org/ebooks/51005', 'fr', 13697), +(36580, 'The Poetical Works of Oliver Wendell Holmes — Volume 08\r\nBunker Hill and Other Poems', 'Holmes, Oliver Wendell', '2004-09-30', 11, 'https://www.gutenberg.org/ebooks/7395', 'en', 178), +(36581, 'The Great White Army', 'Pemberton, Max', '2011-03-10', 16, 'https://www.gutenberg.org/ebooks/35540', 'en', 5734), +(36582, 'The Public School Word-book\r\nA conribution to to a historical glossary of words phrases and turns of expression obsolete and in current use peculiar to our great public schools together with some that have been or are modish at the universities', 'Farmer, John Stephen', '2016-10-21', 20, 'https://www.gutenberg.org/ebooks/53336', 'en', 11122), +(36583, 'Ned Wilding\'s Disappearance; or, The Darewell Chums in the City', 'Chapman, Allen', '2011-10-09', 11, 'https://www.gutenberg.org/ebooks/37673', 'en', 1708), +(36584, 'A Dialogue in Hades\r\nA Parallel of Military Errors, of Which the French and English Armies Were Guilty, During the Campaign of 1759, in Canada', 'Johnstone, James Johnstone, chevalier de', '2013-12-07', 16, 'https://www.gutenberg.org/ebooks/44381', 'en', 13698), +(36585, 'The Curlytops at Sunset Beach; Or, What Was Found in the Sand', 'Garis, Howard Roger', '2014-03-29', 26, 'https://www.gutenberg.org/ebooks/45253', 'en', 82), +(36586, 'Diary of Samuel Pepys — Volume 51: March 1666-67', 'Pepys, Samuel', '2004-12-01', 7, 'https://www.gutenberg.org/ebooks/4174', 'en', 738), +(36587, 'The Battery and the Boiler: Adventures in Laying of Submarine Electric Cables', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 40, 'https://www.gutenberg.org/ebooks/21716', 'en', 195), +(36588, 'Getting Together', 'Hay, Ian', '2005-04-02', 5, 'https://www.gutenberg.org/ebooks/15523', 'en', 335), +(36589, 'The Perils of Certain English Prisoners', 'Dickens, Charles', '1998-08-01', 45, 'https://www.gutenberg.org/ebooks/1406', 'en', 137), +(36590, 'Dan Carter and the Cub Honor', 'Wirt, Mildred A. (Mildred Augustine)', '2012-09-10', 17, 'https://www.gutenberg.org/ebooks/40721', 'en', 2906), +(36591, 'The Little Pilgrim: Further Experiences.\nStories of the Seen and the Unseen.', 'Oliphant, Mrs. (Margaret)', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10051', 'en', 7863), +(36592, 'Harper\'s Young People, May 9, 1882\nAn Illustrated Weekly', 'Various', '2018-08-28', 1, 'https://www.gutenberg.org/ebooks/57796', 'en', 479), +(36593, '紅樓夢', 'Cao, Xueqin', '2008-01-12', 334, 'https://www.gutenberg.org/ebooks/24264', 'zh', 4096), +(36594, 'Love, the Fiddler', 'Osbourne, Lloyd', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4948', 'en', 112), +(36595, 'Bulfinch\'s Mythology\nThe Age of Fable; The Age of Chivalry; Legends of Charlemagne', 'Bulfinch, Thomas', '2018-02-26', 94, 'https://www.gutenberg.org/ebooks/56644', 'en', 2176), +(36596, 'The Nest Egg\nCaptains All, Book 3.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11183', 'en', 1224), +(36597, 'Indian Child Life', 'Deming, Therese O. (Therese Osterheld)', '2010-05-08', 18, 'https://www.gutenberg.org/ebooks/32301', 'en', 3836), +(36598, 'History of the Seventh Ohio Volunteer Cavalry', 'Rankin, R. C. (Richard C.)', '2010-03-10', 16, 'https://www.gutenberg.org/ebooks/31584', 'en', 13699), +(36599, 'Letters to His Son, 1746-47\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 18, 'https://www.gutenberg.org/ebooks/3351', 'en', 740), +(36600, 'Contrasted Songs', 'Longfellow, Marian', '2013-02-11', 5, 'https://www.gutenberg.org/ebooks/42076', 'en', 8), +(36601, 'The Mouse, the Bird and the Sausage', 'Grimm, Wilhelm', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12706', 'en', 1007), +(36602, 'Dry Fish and Wet: Tales from a Norwegian Seaport', 'Nilsen, Anthon Bernhard Elias', '2011-04-22', 16, 'https://www.gutenberg.org/ebooks/35918', 'en', 2774), +(36603, 'Rainbow Hill', 'Lawrence, Josephine', '2008-09-04', 6, 'https://www.gutenberg.org/ebooks/26533', 'en', 1625), +(36604, 'Noveller och skizzer', 'Alfthan, Johannes', '2017-02-05', 12, 'https://www.gutenberg.org/ebooks/54113', 'sv', 61); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(36605, 'O culto da arte em Portugal', 'Ortigão, José Duarte Ramalho', '2009-11-12', 16, 'https://www.gutenberg.org/ebooks/30456', 'pt', 13700), +(36606, 'The Lost Road', 'Davis, Richard Harding', '2000-08-01', 18, 'https://www.gutenberg.org/ebooks/2283', 'en', 112), +(36607, 'A Pail of Air', 'Leiber, Fritz', '2016-03-15', 213, 'https://www.gutenberg.org/ebooks/51461', 'en', 179), +(36608, 'An Englishwoman\'s Home', 'Swan, Annie S.', '2017-05-03', 25, 'https://www.gutenberg.org/ebooks/22193', 'en', 449), +(36609, 'James Ensor', 'Verhaeren, Emile', '2011-01-31', 13, 'https://www.gutenberg.org/ebooks/35124', 'fr', 13701), +(36610, 'Engelbrekt Engelbrektinpoika 2\r\nKaksiosainen historiallinen romaani', 'Starbäck, C. Georg (Carl Georg)', '2014-11-30', 10, 'https://www.gutenberg.org/ebooks/47504', 'fi', 13702), +(36611, 'The Coming of the Princess, and Other Poems', 'MacLean, Kate Seymour', '2004-10-01', 5, 'https://www.gutenberg.org/ebooks/6623', 'en', 1237), +(36612, 'The Airedale', 'Haynes, Williams', '2013-10-22', 15, 'https://www.gutenberg.org/ebooks/43998', 'en', 13703), +(36613, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 1 of 9]\r\nIntroduction and Publisher\'s Advertising', 'Shakespeare, William', '2007-10-26', 33, 'https://www.gutenberg.org/ebooks/23041', 'en', 1088), +(36614, 'The Investment of Influence: A Study of Social Sympathy and Service', 'Hillis, Newell Dwight', '2005-12-10', 47, 'https://www.gutenberg.org/ebooks/17274', 'en', 740), +(36615, 'Le péché de Monsieur Antoine, Tome 2', 'Sand, George', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12534', 'fr', 61), +(36616, 'Illustrazione delle medaglie dei dogi di Venezia denominate Oselle\nEdizione seconda con correzioni ed aggiunte', 'Manin, Leonardo', '2008-09-25', 17, 'https://www.gutenberg.org/ebooks/26701', 'it', 13704), +(36617, 'Birds and Bees, Sharp Eyes, and Other Papers', 'Burroughs, John', '2002-04-01', 52, 'https://www.gutenberg.org/ebooks/3163', 'en', 1216), +(36618, 'Eino Leino lyyrikkona', 'Siljo, Juhani', '2013-03-02', 9, 'https://www.gutenberg.org/ebooks/42244', 'fi', 13705), +(36619, 'The Desert World', 'Mangin, Arthur', '2013-08-03', 25, 'https://www.gutenberg.org/ebooks/43396', 'en', 871), +(36620, 'Callista : a Tale of the Third Century', 'Newman, John Henry', '2009-12-13', 70, 'https://www.gutenberg.org/ebooks/30664', 'en', 13706), +(36621, 'Indian Legends of Vancouver Island', 'Carmichael, Alfred', '2005-12-01', 27, 'https://www.gutenberg.org/ebooks/9459', 'en', 13707), +(36622, 'The Sardonic Arm', 'Bodenheim, Maxwell', '2019-08-17', 554, 'https://www.gutenberg.org/ebooks/60114', 'en', 994), +(36623, 'Newcastle-Upon-Tyne: A Sketch-Book', 'Bertram, Robert J. S.', '2017-03-09', 10, 'https://www.gutenberg.org/ebooks/54321', 'en', 13708), +(36624, 'Dragons of the Air: An Account of Extinct Flying Reptiles', 'Seeley, H. G. (Harry Govier)', '2011-02-18', 82, 'https://www.gutenberg.org/ebooks/35316', 'en', 10741), +(36625, 'Corporal Sam and Other Stories', 'Quiller-Couch, Arthur', '2005-07-03', 22, 'https://www.gutenberg.org/ebooks/16194', 'en', 409), +(36626, 'Wenonah\'s Stories for Children', 'Proctor, Warren', '2016-04-04', 11, 'https://www.gutenberg.org/ebooks/51653', 'en', 82), +(36627, 'The Flying Cuspidors', 'Francis, V. R.', '2009-08-21', 26, 'https://www.gutenberg.org/ebooks/29749', 'en', 179), +(36628, 'John Deane of Nottingham: Historic Adventures by Land and Sea', 'Kingston, William Henry Giles', '2007-10-31', 13, 'https://www.gutenberg.org/ebooks/23273', 'en', 13709), +(36629, 'The Mystery Ship: A Story of the \'Q\' Ships During the Great War', 'Westerman, Percy F. (Percy Francis)', '2015-12-28', 36, 'https://www.gutenberg.org/ebooks/50781', 'en', 4416), +(36630, 'Les alegres comares de Windsor', 'Shakespeare, William', '2005-11-11', 25, 'https://www.gutenberg.org/ebooks/17046', 'ca', 13710), +(36631, 'Graham\'s Magazine, Vol. XLI, No. 2, August 1852', 'Various', '2014-12-22', 18, 'https://www.gutenberg.org/ebooks/47736', 'en', 162), +(36632, 'Round the World', 'Carnegie, Andrew', '2004-09-01', 39, 'https://www.gutenberg.org/ebooks/6411', 'en', 819), +(36633, 'A Cardinal Sin', 'Sue, Eugène', '2006-07-15', 6, 'https://www.gutenberg.org/ebooks/18832', 'en', 58), +(36634, 'Tales and Novels of J. de La Fontaine — Volume 20', 'La Fontaine, Jean de', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/5294', 'en', 2629), +(36635, 'The Wanderer; or, Female Difficulties (Volume 5 of 5)', 'Burney, Fanny', '2011-09-15', 23, 'https://www.gutenberg.org/ebooks/37441', 'en', 13711), +(36636, 'Popular Sayings from Old Iberia', NULL, '2016-09-20', 21, 'https://www.gutenberg.org/ebooks/53104', 'en', 13712), +(36637, 'Robinson Crusoe', 'Defoe, Daniel', '2007-05-22', 51, 'https://www.gutenberg.org/ebooks/21524', 'en', 1592), +(36638, 'Frau Bovary', 'Flaubert, Gustave', '2005-04-26', 61, 'https://www.gutenberg.org/ebooks/15711', 'de', 4352), +(36639, 'The Call of the East: A Romance of Far Formosa', 'Fraser, Thurlow', '2014-03-05', 7, 'https://www.gutenberg.org/ebooks/45061', 'en', 13713), +(36640, 'The Effects of Cross & Self-Fertilisation in the Vegetable Kingdom', 'Darwin, Charles', '2003-08-01', 30, 'https://www.gutenberg.org/ebooks/4346', 'en', 13714), +(36641, 'Fordham\'s Feud', 'Mitford, Bertram', '2011-07-03', 6, 'https://www.gutenberg.org/ebooks/36593', 'en', 61), +(36642, 'Envoyons d\'l\'avant nos gens!\r\nFolklore du Canada', NULL, '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10263', 'fr', 13715), +(36643, 'Takt und Ton im geselligen Verkehr nebst Kommandos der Quadrille à la cour und der Française', 'Rödiger, Richard', '2007-12-27', 10, 'https://www.gutenberg.org/ebooks/24056', 'de', 788), +(36644, 'Harper\'s New Monthly Magazine, Vol. 3, No. 15, August, 1851', 'Various', '2011-12-25', 4, 'https://www.gutenberg.org/ebooks/38409', 'en', 4316), +(36645, 'Nothing to Do: A Tilt at Our Best Society', 'Alger, Horatio, Jr.', '2017-01-10', 13, 'https://www.gutenberg.org/ebooks/53938', 'en', 13716), +(36646, 'The Foolish Virgin', 'Dixon, Thomas, Jr.', '1999-02-01', 11, 'https://www.gutenberg.org/ebooks/1634', 'en', 61), +(36647, 'Danes, Saxons and Normans; or, Stories of our ancestors', 'Edgar, John G. (John George)', '2012-08-16', 21, 'https://www.gutenberg.org/ebooks/40513', 'en', 2964), +(36648, 'The Graveyard of Space', 'Marlowe, Stephen', '2010-04-25', 61, 'https://www.gutenberg.org/ebooks/32133', 'en', 179), +(36649, 'A Dissertation on the Medical Properties and Injurious Effects of the Habitual Use of Tobacco', 'McAllister, A. (Alvan)', '2008-04-26', 11, 'https://www.gutenberg.org/ebooks/25184', 'en', 9560), +(36650, 'The life of Voltaire', 'Hall, Evelyn Beatrice', '2018-01-31', 12, 'https://www.gutenberg.org/ebooks/56476', 'en', 13717), +(36651, 'The Green Door', 'Freeman, Mary Eleanor Wilkins', '2006-03-01', 20, 'https://www.gutenberg.org/ebooks/17887', 'en', 62), +(36652, 'Alexandre Herculano', 'Lima, Jaime de Magalhães', '2009-12-17', 6, 'https://www.gutenberg.org/ebooks/30699', 'pt', 12994), +(36653, 'El Escuadrón del Brigante', 'Baroja, Pío', '2015-04-24', 19, 'https://www.gutenberg.org/ebooks/48783', 'es', 731), +(36654, 'Sara Crewe; Or, What Happened at Miss Minchin\'s Boarding School', 'Burnett, Frances Hodgson', '2006-03-08', 96, 'https://www.gutenberg.org/ebooks/137', 'en', 1079), +(36655, 'Sword and Gown: A Novel', 'Lawrence, George A. (George Alfred)', '2006-08-25', 9, 'https://www.gutenberg.org/ebooks/19121', 'en', 61), +(36656, 'Tedric', 'Smith, E. E. (Edward Elmer)', '2015-08-08', 86, 'https://www.gutenberg.org/ebooks/49651', 'en', 4643), +(36657, 'By Sheer Pluck: A Tale of the Ashanti War', 'Henty, G. A. (George Alfred)', '2005-07-01', 52, 'https://www.gutenberg.org/ebooks/8576', 'en', 13718), +(36658, 'Three Translations of The Koran (Al-Qur\'an) side by side', NULL, '2005-10-27', 231, 'https://www.gutenberg.org/ebooks/16955', 'en', 542), +(36659, 'Washington Square', 'James, Henry', '2001-10-01', 301, 'https://www.gutenberg.org/ebooks/2870', 'en', 4905), +(36660, 'Hymen', 'H. D. (Hilda Doolittle)', '2009-05-02', 44, 'https://www.gutenberg.org/ebooks/28666', 'en', 8), +(36661, 'Buffalo Bill: Helten Fra Prærien', 'Nielsen, Roger', '2010-11-08', 26, 'https://www.gutenberg.org/ebooks/34239', 'no', 11740), +(36662, 'A List of Books Published by Chatto & Windus, November 1887', 'Chatto & Windus (Firm)', '2014-08-18', 6, 'https://www.gutenberg.org/ebooks/46619', 'en', 2663), +(36663, 'The Tragedy of Dido Queene of Carthage', 'Marlowe, Christopher', '2005-07-01', 98, 'https://www.gutenberg.org/ebooks/16169', 'en', 1298), +(36664, 'Transviado', 'Lima, Jaime de Magalhães', '2008-07-01', 13, 'https://www.gutenberg.org/ebooks/25945', 'pt', 3856), +(36665, 'The Great White Tribe in Filipinia', 'Gilbert, Paul T. (Paul Thomas)', '2008-03-22', 15, 'https://www.gutenberg.org/ebooks/24897', 'en', 4796), +(36666, 'Driven Back to Eden', 'Roe, Edward Payson', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/5269', 'en', 527), +(36667, 'An Architect\'s Note-Book in Spain\r\nprincipally illustrating the domestic architecture of that country.', 'Wyatt, M. Digby (Matthew Digby), Sir', '2010-09-30', 53, 'https://www.gutenberg.org/ebooks/33820', 'en', 13719), +(36668, 'The Romantic Composers', 'Mason, Daniel Gregory', '2018-12-21', 52, 'https://www.gutenberg.org/ebooks/58511', 'en', 6048), +(36669, 'Lightships and Lighthouses', 'Talbot, Frederick Arthur Ambrose', '2016-08-16', 14, 'https://www.gutenberg.org/ebooks/52817', 'en', 7876), +(36670, 'Pioneers of Evolution from Thales to Huxley\nWith an Intermediate Chapter on the Causes of Arrest of the Movement', 'Clodd, Edward', '2012-04-24', 26, 'https://www.gutenberg.org/ebooks/39526', 'en', 5456), +(36671, 'La carità del prossimo', 'Bersezio, Vittorio', '2008-04-26', 10, 'https://www.gutenberg.org/ebooks/25179', 'it', 61), +(36672, 'Sciopticon: Einführung in die Projections-Kunst', 'Liesegang, Franz Paul', '2014-02-20', 5, 'https://www.gutenberg.org/ebooks/44972', 'de', 10073), +(36673, 'Buster the Big Brown Bear', 'Walsh, George Ethelbert', '2018-07-21', 11, 'https://www.gutenberg.org/ebooks/57559', 'en', 13720), +(36674, 'The Winning of the West, Volume 2\r\nFrom the Alleghanies to the Mississippi, 1777-1783', 'Roosevelt, Theodore', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/11942', 'en', 5921), +(36675, 'Diary of Samuel Pepys — Volume 65: May 1668', 'Pepys, Samuel', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/4189', 'en', 478), +(36676, 'Gedichte', 'Becker, Julius Maria', '2016-06-02', 10, 'https://www.gutenberg.org/ebooks/52219', 'de', 5045), +(36677, 'La gran rivale', 'Gualdo, Luigi', '2007-02-21', 13, 'https://www.gutenberg.org/ebooks/20639', 'it', 179), +(36678, 'Bernardin de St. Pierre', 'Barine, Arvède', '2019-01-19', 3, 'https://www.gutenberg.org/ebooks/58723', 'en', 13721), +(36679, 'Dio\'s Rome, Volume 5, Books 61-76 (A.D. 54-211)\r\nAn Historical Narrative Originally Composed in Greek During\r\nThe Reigns of Septimius Severus, Geta and Caracalla, Macrinus,\r\nElagabalus and Alexander Severus: and Now Presented in English\r\nForm By Herbert Baldwin Foster', 'Cassius Dio Cocceianus', '2004-01-01', 166, 'https://www.gutenberg.org/ebooks/10890', 'en', 6793), +(36680, 'D.C. Powered Timing Light Model 161.2158 for 12 Volt Ignition Systems\nSears Owners Manual', 'Sears, Roebuck and Company', '2012-05-16', 11, 'https://www.gutenberg.org/ebooks/39714', 'en', 13722), +(36681, 'The Cryptogram: A Story of Northwest Canada', 'Graydon, William Murray', '2008-01-15', 15, 'https://www.gutenberg.org/ebooks/24299', 'en', 5027), +(36682, 'Rataplan, a Rogue Elephant; and Other Stories', 'Velvin, Ellen', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/5867', 'en', 625), +(36683, 'Correspondance, 1812-1876 — Tome 1', 'Sand, George', '2004-10-05', 35, 'https://www.gutenberg.org/ebooks/13629', 'fr', 5041), +(36684, 'Domestic French Cookery, 4th ed.', 'Barué, Sulpice', '2011-01-03', 86, 'https://www.gutenberg.org/ebooks/34837', 'en', 6282), +(36685, 'The Count\'s Millions', 'Gaboriau, Emile', '2008-07-02', 143, 'https://www.gutenberg.org/ebooks/305', 'en', 128), +(36686, 'A Christmas Carol', 'Dickens, Charles', '2006-01-01', 14, 'https://www.gutenberg.org/ebooks/9696', 'en', 13723), +(36687, 'Two Studios', 'Peard, Frances Mary', '2013-07-08', 4, 'https://www.gutenberg.org/ebooks/43159', 'en', 45), +(36688, 'A New Name for the Mexican Red Bat', 'Hall, E. Raymond (Eugene Raymond)', '2007-12-17', 17, 'https://www.gutenberg.org/ebooks/23880', 'en', 2561), +(36689, 'Tom Swift in the Land of Wonders', 'Appleton, Victor', '2007-10-01', 13, 'https://www.gutenberg.org/ebooks/22952', 'en', 1456), +(36690, 'Racconti per giovinetti', 'Thouar, Pietro', '2015-07-17', 9, 'https://www.gutenberg.org/ebooks/49463', 'it', 474), +(36691, 'A Sportsman\'s Sketches, Volume 2\nWorks of Ivan Turgenev, Volume 2', 'Turgenev, Ivan Sergeevich', '2005-08-01', 60, 'https://www.gutenberg.org/ebooks/8744', 'en', 13724), +(36692, 'Olla Podrida', 'Marryat, Frederick', '2010-03-09', 15, 'https://www.gutenberg.org/ebooks/31579', 'en', 179), +(36693, 'The Silk-Hat Soldier, and Other Poems in War Time', 'Le Gallienne, Richard', '2006-09-19', 4, 'https://www.gutenberg.org/ebooks/19313', 'en', 1367), +(36694, 'The Dance (by An Antiquary)\nHistoric Illustrations of Dancing from 3300 B.C. to 1911 A.D.', 'Anonymous', '2005-12-12', 70, 'https://www.gutenberg.org/ebooks/17289', 'en', 13725), +(36695, 'Invention: The Master-key to Progress', 'Fiske, Bradley A. (Bradley Allen)', '2013-10-17', 31, 'https://www.gutenberg.org/ebooks/43965', 'en', 6792), +(36696, 'Heart of the Blue Ridge', 'Baily, Waldron', '2009-03-30', 20, 'https://www.gutenberg.org/ebooks/28454', 'en', 13726), +(36697, 'The Story of the Cotton Plant', 'Wilkinson, Frederick', '2009-08-03', 22, 'https://www.gutenberg.org/ebooks/29586', 'en', 13727), +(36698, 'Mosaic of New Mexico\'s Scenery, Rocks, and History', NULL, '2017-10-24', 13, 'https://www.gutenberg.org/ebooks/55800', 'en', 11341), +(36699, 'A History of Aeronautics', 'Marsh, W. Lockwood (William Lockwood)', '2018-11-25', 17, 'https://www.gutenberg.org/ebooks/58347', 'en', 5353), +(36700, 'Gordon Keith', 'Page, Thomas Nelson', '2004-11-17', 19, 'https://www.gutenberg.org/ebooks/14068', 'en', 13387), +(36701, 'The Exiles of Faloo', 'Pain, Barry', '2014-01-20', 23, 'https://www.gutenberg.org/ebooks/44718', 'en', 9528), +(36702, 'Memoirs of Benjamin Franklin; Written by Himself. [Vol. 1 of 2]\r\nWith His Most Interesting Essays, Letters, and Miscellaneous Writings; Familiar, Moral, Political, Economical, and Philosophical, Selected with Care from All His Published Productions, and Comprising Whatever Is Most Entertaining and Valuable to the General Reader', 'Franklin, Benjamin', '2011-06-06', 68, 'https://www.gutenberg.org/ebooks/36338', 'en', 854), +(36703, 'The Isthmus of Suez Question', 'Lesseps, Ferdinand de', '2019-04-17', 12, 'https://www.gutenberg.org/ebooks/59295', 'en', 13728), +(36704, 'Martha By-the-Day', 'Lippmann, Julie M.', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/14854', 'en', 4638), +(36705, 'Recollections of Windsor Prison;\r\nContaining Sketches of its History and Discipline, with Appropriate Strictures and Moral and Religious Reflection', 'Reynolds, John, of Vermont', '2012-04-04', 5, 'https://www.gutenberg.org/ebooks/39370', 'en', 13729), +(36706, 'Th\' Barrel Organ', 'Waugh, Edwin', '2005-06-04', 15, 'https://www.gutenberg.org/ebooks/15986', 'en', 13730), +(36707, 'Légendes et curiosités des métiers', 'Sébillot, Paul', '2010-06-13', 25, 'https://www.gutenberg.org/ebooks/32798', 'fr', 13731), +(36708, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 6 of 9]', 'Shakespeare, William', '2015-05-21', 20, 'https://www.gutenberg.org/ebooks/49007', 'en', 1088), +(36709, 'The Bible, Douay-Rheims, Book 20: Job\nThe Challoner Revision', NULL, '2005-06-01', 20, 'https://www.gutenberg.org/ebooks/8320', 'en', 8458), +(36710, 'Zum ewigen Frieden: Ein philosophischer Entwurf', 'Kant, Immanuel', '2014-09-16', 34, 'https://www.gutenberg.org/ebooks/46873', 'de', 13732), +(36711, 'Aids to the Study of the Maya Codices\r\nSixth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1884-85, Government Printing Office, Washington, 1888, pages 253-372', 'Thomas, Cyrus', '2006-11-13', 13, 'https://www.gutenberg.org/ebooks/19777', 'en', 13733), +(36712, 'The Curse of Kehama, Volume 1 (of 2)', 'Southey, Robert', '2017-08-30', 15, 'https://www.gutenberg.org/ebooks/55458', 'en', 532), +(36713, 'A. V. Laider', 'Beerbohm, Max, Sir', '1996-12-01', 62, 'https://www.gutenberg.org/ebooks/761', 'en', 12635), +(36714, 'Senate Resolution 6; 41st Congress, 1st Session\r\nA Bill to provide stationery for Congress and the several departments, and for other purposes', 'United States. Congress. Senate', '2008-10-28', 8, 'https://www.gutenberg.org/ebooks/27078', 'en', 13734), +(36715, 'Evening Incense', 'Macduff, John R. (John Ross)', '2016-01-14', 7, 'https://www.gutenberg.org/ebooks/50916', 'en', 8792), +(36716, 'The Land of Nome\r\nA narrative sketch of the rush to our Bering Sea gold-fields, the country, its mines and its people, and the history of a great conspiracy (1900-1901)', 'McKee, Lanier', '2010-04-08', 22, 'https://www.gutenberg.org/ebooks/31921', 'en', 13735), +(36717, 'The American Missionary — Volume 50, No. 05, May, 1896', 'Various', '2008-10-23', 6, 'https://www.gutenberg.org/ebooks/26996', 'en', 562), +(36718, 'Lifted Masks; stories', 'Glaspell, Susan', '2005-01-01', 40, 'https://www.gutenberg.org/ebooks/7368', 'en', 828), +(36719, 'La chasse aux lions', 'Assollant, Alfred', '2009-01-19', 21, 'https://www.gutenberg.org/ebooks/27844', 'fr', 11368), +(36720, 'Reluctant Genius', 'Slesar, Henry', '2009-02-09', 25, 'https://www.gutenberg.org/ebooks/28030', 'en', 26), +(36721, 'Tudor and Stuart Love Songs', NULL, '2008-08-23', 16, 'https://www.gutenberg.org/ebooks/26398', 'en', 2185), +(36722, 'Op de Faröer\nDe Aarde en haar Volken, 1907', 'Seé, Anna', '2006-10-14', 18, 'https://www.gutenberg.org/ebooks/19545', 'nl', 13736), +(36723, 'The Child and Childhood in Folk-Thought\r\nStudies of the Activities and Influences of the Child Among Primitive Peoples, Their Analogues and Survivals in the Civilization of To-Day', 'Chamberlain, Alexander Francis', '2005-04-01', 10, 'https://www.gutenberg.org/ebooks/7966', 'en', 13737), +(36724, 'Hector Berlioz: A Romantic Tragedy', 'Peyser, Herbert F. (Herbert Francis)', '2015-06-19', 8, 'https://www.gutenberg.org/ebooks/49235', 'en', 1756), +(36725, 'Houses and House-Life of the American Aborigines', 'Morgan, Lewis Henry', '2005-05-01', 42, 'https://www.gutenberg.org/ebooks/8112', 'en', 7278), +(36726, 'An Essay on Man; Moral Essays and Satires', 'Pope, Alexander', '2000-12-01', 286, 'https://www.gutenberg.org/ebooks/2428', 'en', 3947), +(36727, 'My Second Year of the War', 'Palmer, Frederick', '2006-06-04', 27, 'https://www.gutenberg.org/ebooks/18497', 'en', 449), +(36728, 'Out of Time\'s Abyss', 'Burroughs, Edgar Rice', '1996-06-01', 183, 'https://www.gutenberg.org/ebooks/553', 'en', 26), +(36729, 'The Uncrowned King', 'Wright, Harold Bell', '2004-07-22', 31, 'https://www.gutenberg.org/ebooks/12991', 'en', 313), +(36730, 'Zweierlei Denken: Ein Beitrag zur Physiologie des Denkens', 'Büttner, August', '2007-09-23', 16, 'https://www.gutenberg.org/ebooks/22738', 'de', 659), +(36731, 'After the Pardon', 'Serao, Matilde', '2015-10-26', 15, 'https://www.gutenberg.org/ebooks/50318', 'en', 5849), +(36732, 'Λουκιανός - Άπαντα, Τόμος Πέμπτος', 'Lucian, of Samosata', '2009-02-27', 19, 'https://www.gutenberg.org/ebooks/28202', 'el', 1635), +(36733, 'Libretto: La Bohème', 'Giacosa, Giuseppe', '2004-10-24', 68, 'https://www.gutenberg.org/ebooks/13843', 'en', 1966), +(36734, 'The Lay of the Cid', NULL, '2004-07-01', 36, 'https://www.gutenberg.org/ebooks/6088', 'en', 13738), +(36735, 'Titanicin perikato\r\nRomantillinen kuvaus \"Titanic\"-laivan haaksirikosta yöllä vasten 15 päivää huhtikuuta 1912', 'Virtala, Esko', '2018-09-14', 3, 'https://www.gutenberg.org/ebooks/57901', 'fi', 13739), +(36736, 'The Boy Travellers in the Far East, Part Second\r\nAdventures of Two Youths in a Journey to Siam and Java; With Descriptions of Cochin-China, Cambodia, Sumatra and the Malay Archipelago', 'Knox, Thomas Wallace', '2018-10-26', 28, 'https://www.gutenberg.org/ebooks/58175', 'en', 13740), +(36737, 'Leone Leoni', 'Sand, George', '2005-03-16', 25, 'https://www.gutenberg.org/ebooks/15388', 'fr', 109), +(36738, 'Life of Kit Carson, the Great Western Hunter and Guide', 'Burdett, Charles', '2013-01-18', 25, 'https://www.gutenberg.org/ebooks/41864', 'en', 930), +(36739, 'Northland Heroes', 'Holbrook, Florence', '2007-03-20', 10, 'https://www.gutenberg.org/ebooks/20853', 'en', 13741), +(36740, 'Nurses\' Papers on Tuberculosis :\r\nread before the Nurses\' Study Circle of the Dispensary Department, Chicago Municipal Tuberculosis Sanitarium', 'Chicago (Ill.). Municipal Tuberculosis Sanitarium. Dispensary Department', '2011-11-23', 22, 'https://www.gutenberg.org/ebooks/38090', 'en', 13742), +(36741, 'Die Berg-Maria, oder: Wer nur den lieben Gott läßt walten.\nEine Geschichtliche Erzählung aus Pennsylvanien.', 'Wollenweber, L. A. (Louis August)', '2019-02-23', 9, 'https://www.gutenberg.org/ebooks/58949', 'de', 13743), +(36742, 'Horse-Shoe Robinson: A Tale of the Tory Ascendency', 'Kennedy, John Pendleton', '2010-08-21', 18, 'https://www.gutenberg.org/ebooks/33478', 'en', 13744), +(36743, 'Astronomy: The Science of the Heavenly Bodies', 'Todd, David P. (David Peck)', '2012-03-15', 25, 'https://www.gutenberg.org/ebooks/39142', 'en', 1683), +(36744, 'The Essentials of Spirituality', 'Adler, Felix', '2007-06-30', 52, 'https://www.gutenberg.org/ebooks/21981', 'en', 3344), +(36745, 'The Wizard of West Penwith: A Tale of the Land\'s-End', 'Forfar, William Bentinck', '2012-10-14', 30, 'https://www.gutenberg.org/ebooks/41058', 'en', 166), +(36746, 'Abraham Lincoln\r\nThe People\'s Leader in the Struggle for National Existence', 'Putnam, George Haven', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/11728', 'en', 1717), +(36747, 'Lectures on Ventilation\nBeing a Course Delivered in the Franklin Institute of Philadelphia', 'Leeds, Lewis W.', '2011-08-01', 11, 'https://www.gutenberg.org/ebooks/36936', 'en', 13745), +(36748, 'Initials Only', 'Green, Anna Katharine', '1999-08-01', 57, 'https://www.gutenberg.org/ebooks/1857', 'en', 61), +(36749, 'The Descent of Man and Other Stories', 'Wharton, Edith', '2003-10-01', 106, 'https://www.gutenberg.org/ebooks/4519', 'en', 179), +(36750, 'A Short History of Birds & Beasts, for the Amusement and Instruction of Children', 'Anonymous', '2019-04-12', 14, 'https://www.gutenberg.org/ebooks/59261', 'en', 6059), +(36751, 'Martva II', 'Lassila, Maiju', '2016-08-01', 19, 'https://www.gutenberg.org/ebooks/52689', 'fi', 175), +(36752, 'Abrégé de l\'Histoire Générale des Voyages (Tome 3)', 'La Harpe, Jean-François de', '2011-12-09', 12, 'https://www.gutenberg.org/ebooks/38256', 'fr', 885), +(36753, 'The Motor Car Dumpy Book\nThe Dumpy Books for Children #32', 'Crosland, T. W. H. (Thomas William Hodgson)', '2008-02-14', 27, 'https://www.gutenberg.org/ebooks/24609', 'en', 2296), +(36754, 'The Young Wireless Operator—With the Oyster Fleet\nHow Alec Cunningham Won His Way to the Top in the Oyster Business', 'Theiss, Lewis E. (Lewis Edwin)', '2017-12-23', 18, 'https://www.gutenberg.org/ebooks/56229', 'en', 13746), +(36755, 'The Record of a Regiment of the Line\r\nBeing a Regimental History of the 1st Battalion Devonshire Regiment during the Boer War 1899-1902', 'Jacson, Mainwaring George', '2005-06-03', 53, 'https://www.gutenberg.org/ebooks/15972', 'en', 13747), +(36756, 'Letters of Felix Mendelssohn Bartholdy from Italy and Switzerland', 'Mendelssohn-Bartholdy, Felix', '2012-04-05', 16, 'https://www.gutenberg.org/ebooks/39384', 'en', 1408), +(36757, 'Mystery of the Ambush in India: A Biff Brewster Mystery Adventure', 'Adams, Andy', '2016-04-22', 16, 'https://www.gutenberg.org/ebooks/51830', 'en', 167), +(36758, 'Storia dei musulmani di Sicilia, vol. I', 'Amari, Michele', '2014-09-17', 44, 'https://www.gutenberg.org/ebooks/46887', 'it', 13748), +(36759, 'Danse Russe', 'Williams, William Carlos', '2006-11-15', 7, 'https://www.gutenberg.org/ebooks/19783', 'en', 8), +(36760, 'A Cigarette-Maker\'s Romance', 'Crawford, F. Marion (Francis Marion)', '2006-06-22', 15, 'https://www.gutenberg.org/ebooks/18651', 'en', 13749), +(36761, 'Ballads and Lyrics of Old France, with Other Poems', NULL, '1997-01-01', 77, 'https://www.gutenberg.org/ebooks/795', 'en', 13750), +(36762, 'The Nursery-Book: A Complete Guide to the Multiplication and Pollination of Plants', 'Bailey, L. H. (Liberty Hyde)', '2015-01-13', 38, 'https://www.gutenberg.org/ebooks/47955', 'en', 12510), +(36763, 'The Toll Gatherer\'s Day (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9206', 'en', 3175), +(36764, 'Maria: Vanhan legendan mukaan', 'Järnefelt, Arvid', '2015-01-31', 14, 'https://www.gutenberg.org/ebooks/48121', 'fi', 179), +(36765, 'Cursory Observations on the Poems Attributed to Thomas Rowley (1782)', 'Malone, Edmond', '2009-06-14', 6, 'https://www.gutenberg.org/ebooks/29116', 'en', 13751), +(36766, 'Wilson\'s Tales of the Borders and of Scotland, Volume 17', NULL, '2008-10-19', 11, 'https://www.gutenberg.org/ebooks/26962', 'en', 3672), +(36767, 'Der Wahn und die Träume in W. Jensens »Gradiva«', 'Freud, Sigmund', '2011-03-11', 24, 'https://www.gutenberg.org/ebooks/35549', 'de', 13752), +(36768, 'Buenos Ayres and the Provinces of the Rio de La Plata\r\nTheir Present State, Trade, and Debt', 'Parish, Woodbine, Sir', '2014-10-22', 29, 'https://www.gutenberg.org/ebooks/47169', 'en', 7609), +(36769, 'A Jongleur Strayed\nVerses on Love and Other Matters Sacred and Profane', 'Le Gallienne, Richard', '2006-01-29', 8, 'https://www.gutenberg.org/ebooks/17619', 'en', 8), +(36770, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 07', 'Stevenson, Robert Louis', '2009-12-30', 16, 'https://www.gutenberg.org/ebooks/30807', 'en', 232), +(36771, 'Better Homes in America: Plan Book for Demonstration Week October 9 to 14, 1922', 'Meloney, Marie Mattingly', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/7992', 'en', 13753), +(36772, 'Easy Money\nNight Watches, Part 9.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12159', 'en', 179), +(36773, 'The Violoncello and Its History', 'Wasielewski, Wilhelm Joseph von', '2013-05-01', 12, 'https://www.gutenberg.org/ebooks/42629', 'en', 13754), +(36774, 'Bible Romances, First Series', 'Foote, G. W. (George William)', '2009-10-06', 26, 'https://www.gutenberg.org/ebooks/30209', 'en', 1185), +(36775, 'The Stolen White Elephant', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9034', 'en', 128), +(36776, 'Phaeton Rogers: A Novel of Boy Life', 'Johnson, Rossiter', '2015-02-19', 15, 'https://www.gutenberg.org/ebooks/48313', 'en', 11481), +(36777, 'Queen Lucia', 'Benson, E. F. (Edward Frederic)', '2004-11-01', 71, 'https://www.gutenberg.org/ebooks/6840', 'en', 2019), +(36778, 'Romanzen vom Rosenkranz', 'Brentano, Clemens', '2006-05-28', 13, 'https://www.gutenberg.org/ebooks/18463', 'de', 1518), +(36779, 'Jack the Young Canoeman: An Eastern Boy\'s Voyage in a Chinook Canoe', 'Grinnell, George Bird', '2014-07-15', 22, 'https://www.gutenberg.org/ebooks/46289', 'en', 13755), +(36780, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 486, April 23, 1831', 'Various', '2004-07-20', 4, 'https://www.gutenberg.org/ebooks/12965', 'en', 133), +(36781, 'A Poetical Review of the Literary and Moral Character of the late Samuel Johnson (1786)', 'Courtenay, John', '2009-07-05', 12, 'https://www.gutenberg.org/ebooks/29324', 'en', 13756), +(36782, 'The Loudwater Mystery', 'Jepson, Edgar', '2006-02-01', 16, 'https://www.gutenberg.org/ebooks/9808', 'en', 128), +(36783, 'Oorlogstijd Herinneringen en Indrukken', 'Treub, M. W. F. (Marie Willem Frederik)', '2012-10-05', 5, 'https://www.gutenberg.org/ebooks/40942', 'nl', 10050), +(36784, 'Pictures of Canadian Life: A Record of Actual Experiences', 'Ritchie, J. Ewing (James Ewing)', '2012-02-13', 2, 'https://www.gutenberg.org/ebooks/38858', 'en', 2655), +(36785, 'Index of the Project Gutenberg works of Robert Louis Stevenson', 'Stevenson, Robert Louis', '2018-10-28', 20, 'https://www.gutenberg.org/ebooks/58181', 'en', 198), +(36786, 'Goethes Weltanschauung', 'Steiner, Rudolf', '2016-11-21', 31, 'https://www.gutenberg.org/ebooks/53569', 'de', 13757), +(36787, 'The Automatic Maid-of-All-Work: A Possible Tale of the Near Future', 'Campbell, M. L.', '2019-03-12', 23, 'https://www.gutenberg.org/ebooks/59053', 'en', 831), +(36788, 'Max und Moritz', 'Busch, Wilhelm', '2007-04-24', 18, 'https://www.gutenberg.org/ebooks/21149', 'de', 1697), +(36789, 'The Barrier: A Novel', 'French, Allen', '2013-01-06', 18, 'https://www.gutenberg.org/ebooks/41890', 'en', 48), +(36790, 'Whitewash', 'Vachell, Horace Annesley', '2018-03-24', 9, 'https://www.gutenberg.org/ebooks/56827', 'en', 2586), +(36791, 'Child Verse: Poems Grave & Gay', 'Tabb, John B. (John Banister)', '2011-10-20', 18, 'https://www.gutenberg.org/ebooks/37810', 'en', 859), +(36792, 'Aw-Aw-Tam Indian Nights: Being the Myths and Legends of the Pimas of Arizona', 'Comalk-Hawk-Kih', '2011-11-20', 20, 'https://www.gutenberg.org/ebooks/38064', 'en', 13758), +(36793, 'Twenty Years After', 'Dumas, Alexandre', '1998-03-01', 859, 'https://www.gutenberg.org/ebooks/1259', 'en', 1127), +(36794, 'The Barbadoes Girl: A Tale for Young People', 'Hofland, Mrs. (Barbara)', '2007-06-30', 10, 'https://www.gutenberg.org/ebooks/21975', 'en', 195), +(36795, 'Minor Poems of Michael Drayton', 'Drayton, Michael', '2006-02-27', 32, 'https://www.gutenberg.org/ebooks/17873', 'en', 466), +(36796, 'Samantha Among the Brethren, Complete', 'Holley, Marietta', '2004-08-10', 25, 'https://www.gutenberg.org/ebooks/9450', 'en', 11733), +(36797, 'Helmiä: Valikoima novelleja', 'Mérimée, Prosper', '2015-04-24', 24, 'https://www.gutenberg.org/ebooks/48777', 'fi', 1850), +(36798, 'York: A Sketch-Book', 'Home, Gordon', '2017-03-09', 10, 'https://www.gutenberg.org/ebooks/54328', 'en', 13759), +(36799, 'More Songs From Vagabondia', 'Hovey, Richard', '2006-03-17', 10, 'https://www.gutenberg.org/ebooks/18007', 'en', 8), +(36800, 'Punch, or the London Charivari, Vol. 104, May 13, 1893', 'Various', '2008-09-27', 22, 'https://www.gutenberg.org/ebooks/26708', 'en', 134), +(36801, 'Roughing It, Part 1.', 'Twain, Mark', '2004-07-02', 24, 'https://www.gutenberg.org/ebooks/8582', 'en', 13760), +(36802, 'The Truth About German Atrocities\r\nFounded on the Report of the Committee on Alleged German Outrages', 'Anonymous', '2015-12-29', 15, 'https://www.gutenberg.org/ebooks/50788', 'en', 2936), +(36803, 'The Mason-Bees', 'Fabre, Jean-Henri', '2001-10-01', 39, 'https://www.gutenberg.org/ebooks/2884', 'en', 13761), +(36804, 'Vida de Takla Haymanot', 'Almeida, Manuel de', '2009-05-04', 17, 'https://www.gutenberg.org/ebooks/28692', 'pt', 13762), +(36805, 'Five Little Peppers and their Friends', 'Sidney, Margaret', '2004-09-01', 35, 'https://www.gutenberg.org/ebooks/6418', 'en', 3621), +(36806, 'A Neta do Arcediago', 'Castelo Branco, Camilo', '2009-08-20', 15, 'https://www.gutenberg.org/ebooks/29740', 'pt', 3856), +(36807, 'L\'Abbe Constantin — Volume 3', 'Halévy, Ludovic', '2003-04-01', 28, 'https://www.gutenberg.org/ebooks/3956', 'en', 48), +(36808, 'How To Write Special Feature Articles\r\nA Handbook for Reporters, Correspondents and Free-Lance Writers Who Desire to Contribute to Popular Magazines and Magazine Sections of Newspapers', 'Bleyer, Willard Grosvenor', '2005-04-26', 54, 'https://www.gutenberg.org/ebooks/15718', 'en', 935), +(36809, 'Thy Name Is Woman', 'Walton, Bryce', '2010-06-20', 44, 'https://www.gutenberg.org/ebooks/32906', 'en', 179), +(36810, 'A Son at the Front', 'Wharton, Edith', '2019-05-05', 47, 'https://www.gutenberg.org/ebooks/59437', 'en', 378), +(36811, 'The Truth About Jesus : Is He a Myth?\r\nIllustrated', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-03-07', 24, 'https://www.gutenberg.org/ebooks/45068', 'en', 5594), +(36812, 'Kapteenin tytär', 'Pushkin, Aleksandr Sergeevich', '2008-03-17', 9, 'https://www.gutenberg.org/ebooks/24863', 'fi', 12292), +(36813, 'Comet\'s Burial', 'Gallun, Raymond Z.', '2011-09-17', 57, 'https://www.gutenberg.org/ebooks/37448', 'en', 26), +(36814, 'Chelsea, in the Olden & Present Times', 'Bryan, George', '2014-06-01', 10, 'https://www.gutenberg.org/ebooks/45854', 'en', 13763), +(36815, 'The Elements of Qualitative Chemical Analysis, vol. 1, parts 1 and 2.\r\nWith Special Consideration of the Application of the Laws of Equilibrium and of the Modern Theories of Solution.', 'Stieglitz, Julius', '2014-02-23', 19, 'https://www.gutenberg.org/ebooks/44986', 'en', 13764), +(36816, 'The Gathering of the Nations', 'Anonymous', '2017-01-09', 4, 'https://www.gutenberg.org/ebooks/53931', 'en', 1130), +(36817, 'Un Cadet de Famille, v. 1/3', 'Trelawny, Edward John', '2011-12-24', 21, 'https://www.gutenberg.org/ebooks/38400', 'fr', 11015), +(36818, 'A Topsy-Turvy Christmas', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2019-05-25', 29, 'https://www.gutenberg.org/ebooks/59605', 'en', 3459), +(36819, 'The Science and Philosophy of the Organism', 'Driesch, Hans', '2013-12-08', 20, 'https://www.gutenberg.org/ebooks/44388', 'en', 4775), +(36820, 'A Visit to the Monastery of La Trappe in 1817\r\nWith Notes Taken During a Tour Through Le Perche, Normandy, Bretagne, Poitou, Anjou, Le Bocage, Touraine, Orleanois, and the Environs of Paris.\r\nIllustrated with Numerous Coloured Engravings, from Drawings Made on the Spot', 'Fellowes, W. D. (William Dorset)', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10864', 'en', 1117), +(36821, 'The House Boat Boys; Or, Drifting Down to the Sunny South', 'Rathborne, St. George', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/4941', 'en', 2794), +(36822, 'Library of the World\'s Best literature, Ancient and Modern, Vol. 12', NULL, '2010-05-09', 38, 'https://www.gutenberg.org/ebooks/32308', 'en', 19), +(36823, 'Notes on the Bibliography of Yucatan and Central America\r\nComprising Yucatan, Chiapas, Guatemala (the Ruins of Palenque, Ocosingo, and Copan), and Oaxaca (Ruins of Mitla)', 'Bandelier, Adolph Francis Alphonse', '2012-09-10', 13, 'https://www.gutenberg.org/ebooks/40728', 'en', 4895), +(36824, 'The Monarchs of the Main; Or, Adventures of the Buccaneers. Volume 2 (of 3)', 'Thornbury, Walter', '2012-01-21', 11, 'https://www.gutenberg.org/ebooks/38632', 'en', 10), +(36825, 'Two Little Women on a Holiday', 'Wells, Carolyn', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/5893', 'en', 1257), +(36826, 'The Divine Office\r\nA Study of the Roman Breviary', 'Quigley, Edward J.', '2003-11-01', 67, 'https://www.gutenberg.org/ebooks/10058', 'en', 13765), +(36827, 'Het Geuldal\r\nDe Aarde en haar Volken, 1907', 'Lamberts Hurrelbrinck, L. H. J.', '2006-04-23', 6, 'https://www.gutenberg.org/ebooks/18235', 'nl', 13766), +(36828, 'An Enquiry Concerning Human Understanding', 'Hume, David', '2006-01-01', 584, 'https://www.gutenberg.org/ebooks/9662', 'en', 354), +(36829, 'No Man\'s Land', 'McNeile, H. C. (Herman Cyril)', '2007-12-16', 34, 'https://www.gutenberg.org/ebooks/23874', 'en', 579), +(36830, 'Fables of Field and Staff', 'Frye, James A. (James Albert)', '2015-03-21', 9, 'https://www.gutenberg.org/ebooks/48545', 'en', 2224), +(36831, 'Tuscan folk-lore and sketches, together with some other papers', 'Anderton, Isabella Mary', '2015-07-21', 12, 'https://www.gutenberg.org/ebooks/49497', 'en', 13767), +(36832, 'Letters to His Son, 1756-58\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/3358', 'en', 740), +(36833, 'Odd People: Being a Popular Description of Singular Races of Man', 'Reid, Mayne', '2011-04-19', 23, 'https://www.gutenberg.org/ebooks/35911', 'en', 7033), +(36834, 'Fairy Gold', 'Reid, Christian', '2017-06-17', 17, 'https://www.gutenberg.org/ebooks/54926', 'en', 348), +(36835, 'A Hand-book to the Primates, Volume 1 (of 2)', 'Forbes, Henry O. (Henry Ogg)', '2013-10-23', 17, 'https://www.gutenberg.org/ebooks/43991', 'en', 3190), +(36836, 'Adrift in a Boat', 'Kingston, William Henry Giles', '2007-10-17', 34, 'https://www.gutenberg.org/ebooks/23048', 'en', 1229), +(36837, 'Life and Correspondence of David Hume, Volume 1 (of 2)', 'Burton, John Hill', '2013-05-30', 20, 'https://www.gutenberg.org/ebooks/42843', 'en', 4429), +(36838, 'Whispering Smith', 'Spearman, Frank H. (Frank Hamilton)', '2009-08-02', 42, 'https://www.gutenberg.org/ebooks/29572', 'en', 13768), +(36839, 'The Love of Monsieur', 'Gibbs, George', '2016-03-16', 18, 'https://www.gutenberg.org/ebooks/51468', 'en', 323), +(36840, 'Five Little Peppers Midway', 'Sidney, Margaret', '2004-05-01', 80, 'https://www.gutenberg.org/ebooks/5632', 'en', 9800), +(36841, 'Selections from the Kur-an', NULL, '2013-12-26', 12, 'https://www.gutenberg.org/ebooks/44515', 'en', 542), +(36842, 'The Philippine Islands, 1493-1898 — Volume 09 of 55\r\n1593-1597\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2004-12-06', 49, 'https://www.gutenberg.org/ebooks/14265', 'en', 745), +(36843, 'Spiritual Adventures', 'Symons, Arthur', '2012-02-15', 24, 'https://www.gutenberg.org/ebooks/38893', 'en', 179), +(36844, 'The Paston Letters, A.D. 1422-1509. Volume 2 (of 6)\r\nNew Complete Library Edition', NULL, '2012-10-08', 55, 'https://www.gutenberg.org/ebooks/40989', 'en', 8604), +(36845, 'Märchen der Gebrüder Grimm 1', 'Grimm, Wilhelm', '2006-12-09', 96, 'https://www.gutenberg.org/ebooks/20050', 'de', 900), +(36846, 'When We Two Parted', 'Byron, George Gordon Byron, Baron', '2007-04-27', 7, 'https://www.gutenberg.org/ebooks/21182', 'en', 8), +(36847, 'Manon Lescaut: Romaani', 'Prévost, abbé', '2019-03-19', 0, 'https://www.gutenberg.org/ebooks/59098', 'fi', 323), +(36848, 'The Expositor\'s Bible: The Song of Solomon and the Lamentations of Jeremiah', 'Adeney, Walter F. (Walter Frederic)', '2012-06-07', 63, 'https://www.gutenberg.org/ebooks/39941', 'en', 13769), +(36849, 'Hätähuuto y.m. kertomuksia', 'Maupassant, Guy de', '2016-07-01', 10, 'https://www.gutenberg.org/ebooks/52470', 'fi', 1850), +(36850, 'The Spawn of Ixion; Or, The \'Biter Bit.\' An Allegory', 'Cooley, James Ewing', '2011-05-18', 0, 'https://www.gutenberg.org/ebooks/36135', 'en', 8), +(36851, 'Songs of the Common Day, and, Ave!: An Ode for the Shelley Centenary', 'Roberts, Charles G. D., Sir', '2018-05-06', 3, 'https://www.gutenberg.org/ebooks/57102', 'en', 1237), +(36852, 'The Way of the World', 'Congreve, William', '1998-04-01', 393, 'https://www.gutenberg.org/ebooks/1292', 'en', 5266), +(36853, 'Oppressions of the Sixteenth Century in the Islands of Orkney and Zetland\r\nFrom Original Documents', NULL, '2019-02-27', 12, 'https://www.gutenberg.org/ebooks/58976', 'en', 6383), +(36854, 'The Pencil of Nature', 'Talbot, William Henry Fox', '2010-08-16', 280, 'https://www.gutenberg.org/ebooks/33447', 'en', 13770), +(36855, 'Pioneer Roads and Experiences of Travelers (Volume 1)', 'Hulbert, Archer Butler', '2012-10-15', 13, 'https://www.gutenberg.org/ebooks/41067', 'en', 13771), +(36856, 'A Woman\'s Wartime Journal\r\nAn account of the passage over a Georgia plantation of Sherman\'s army on the march to the sea, as recorded in the diary of Dolly Sumner Lunt', 'Lunt, Dolly Sumner', '2010-05-30', 23, 'https://www.gutenberg.org/ebooks/32595', 'en', 13772), +(36857, 'Freedom In Service\nSix Essays on Matters Concerning Britain\'s Safety and Good Government', 'Hearnshaw, F. J. C. (Fossey John Cobb)', '2008-05-19', 21, 'https://www.gutenberg.org/ebooks/25522', 'en', 13773), +(36858, 'The Palmy Days of Nance Oldfield', 'Robins, Edward', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11717', 'en', 10097), +(36859, 'Mémoires du général baron de Marbot (1/3)', 'Marbot, Jean-Baptiste-Antoine-Marcelin, baron de', '2011-07-31', 21, 'https://www.gutenberg.org/ebooks/36909', 'fr', 6604), +(36860, 'Lapsikuningas ja hänen soturinsa: Historiallinen seikkailuromaani', 'Finne, Jalmari', '2017-10-01', 1, 'https://www.gutenberg.org/ebooks/55655', 'fi', 175), +(36861, 'The Long Shadow', 'Bower, B. M.', '2004-04-01', 42, 'https://www.gutenberg.org/ebooks/12192', 'en', 315), +(36862, 'The Reign of Tiberius, Out of the First Six Annals of Tacitus;\r\nWith His Account of Germany, and Life of Agricola', 'Tacitus, Cornelius', '2005-04-01', 68, 'https://www.gutenberg.org/ebooks/7959', 'en', 13774), +(36863, 'Beginselen der dierkunde', 'Bos, J. Ritzema (Jan Ritzema)', '2010-02-17', 10, 'https://www.gutenberg.org/ebooks/31310', 'nl', 13775), +(36864, 'A Thousand Francs Reward; and, Military Sketches', 'Gaboriau, Emile', '2013-09-15', 17, 'https://www.gutenberg.org/ebooks/43730', 'en', 5209), +(36865, 'Okewood of the Secret Service', 'Williams, Valentine', '2000-12-01', 30, 'https://www.gutenberg.org/ebooks/2417', 'en', 2564), +(36866, 'The Angel of Thought and Other Poems\nImpressions from Old Masters', 'Murphy, Ethel Allen', '2008-11-16', 11, 'https://www.gutenberg.org/ebooks/27275', 'en', 8), +(36867, 'The Prose Works of Jonathan Swift, D.D. — Volume 10\r\nHistorical Writings', 'Swift, Jonathan', '2004-07-28', 25, 'https://www.gutenberg.org/ebooks/13040', 'en', 13776), +(36868, 'Il lampionaio', 'Cummins, Maria S. (Maria Susanna)', '2017-05-26', 4, 'https://www.gutenberg.org/ebooks/54787', 'it', 13777), +(36869, 'Flatland: A Romance of Many Dimensions', 'Abbott, Edwin Abbott', '1994-01-01', 582, 'https://www.gutenberg.org/ebooks/97', 'en', 9882), +(36870, 'The Legends of Saint Patrick', 'De Vere, Aubrey', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/7165', 'en', 4519), +(36871, 'The British Expedition to the Crimea', 'Russell, William Howard, Sir', '2014-07-10', 38, 'https://www.gutenberg.org/ebooks/46242', 'en', 3217), +(36872, 'Explorations in Australia\r\nThe Journals of John McDouall Stuart During the Years 1858, 1859, 1860, 1861, and 1862, When He Fixed the Centre of the Continent and Successfully Crossed It from Sea to Sea', 'Stuart, John McDouall', '2004-08-30', 36, 'https://www.gutenberg.org/ebooks/8911', 'en', 13778), +(36873, 'The Plastic Age', 'Marks, Percy', '2005-08-15', 52, 'https://www.gutenberg.org/ebooks/16532', 'en', 828), +(36874, 'Potts\'s Painless Cure\n1898', 'Bellamy, Edward', '2007-09-21', 19, 'https://www.gutenberg.org/ebooks/22707', 'en', 770), +(36875, 'The River Motor Boat Boys on the Ohio; Or, The Three Blue Lights', 'Gordon, Harry', '2015-10-27', 12, 'https://www.gutenberg.org/ebooks/50327', 'en', 6477), +(36876, 'The Natural History of the Varieties of Man', 'Latham, R. G. (Robert Gordon)', '2014-11-18', 7, 'https://www.gutenberg.org/ebooks/47390', 'en', 7033), +(36877, 'Willing to Die: A Novel', 'Le Fanu, Joseph Sheridan', '2010-12-15', 29, 'https://www.gutenberg.org/ebooks/34662', 'en', 61), +(36878, 'The Mystery of Witch-Face Mountain, and Other Stories', 'Murfree, Mary Noailles', '2010-01-30', 21, 'https://www.gutenberg.org/ebooks/31122', 'en', 13431), +(36879, 'The Underground Railroad from Slavery to Freedom: A comprehensive history', 'Siebert, Wilbur Henry', '2015-05-24', 44, 'https://www.gutenberg.org/ebooks/49038', 'en', 7856), +(36880, 'Story-Lives of Great Musicians', 'Rowbotham, Francis Jameson', '2006-11-10', 34, 'https://www.gutenberg.org/ebooks/19748', 'en', 4953), +(36881, 'Sir Rowland Hill: The Story of a Great Reform', 'Smyth, Eleanor C. Hill', '2017-08-31', 7, 'https://www.gutenberg.org/ebooks/55467', 'en', 1179), +(36882, 'The American Missionary — Volume 48, No. 07, July, 1894', 'Various', '2008-08-05', 10, 'https://www.gutenberg.org/ebooks/26195', 'en', 395), +(36883, 'Les technologies et le livre pour tous', 'Lebert, Marie', '2008-10-26', 9, 'https://www.gutenberg.org/ebooks/27047', 'fr', 2047), +(36884, 'Beethoven\'s Letters 1790-1826, Volume 2', 'Beethoven, Ludwig van', '2004-08-25', 44, 'https://www.gutenberg.org/ebooks/13272', 'en', 1807), +(36885, 'Harper\'s Young People, April 27, 1880\nAn Illustrated Weekly', 'Various', '2009-05-16', 2, 'https://www.gutenberg.org/ebooks/28833', 'en', 479), +(36886, 'Votes for Women: A Play in Three Acts', 'Robins, Elizabeth', '2013-08-18', 47, 'https://www.gutenberg.org/ebooks/43502', 'en', 13779), +(36887, 'Ethan Allen, the Robin Hood of Vermont', 'Hall, Henry', '2016-01-15', 15, 'https://www.gutenberg.org/ebooks/50929', 'en', 13780), +(36888, 'The Ancient Church: Its History, Doctrine, Worship, and Constitution', 'Killen, W. D. (William Dool)', '2005-09-15', 48, 'https://www.gutenberg.org/ebooks/16700', 'en', 4198), +(36889, 'The Mentor: Famous American Sculptors, Vol. 1, Num. 36, Serial No. 36', 'Taft, Lorado', '2015-08-28', 9, 'https://www.gutenberg.org/ebooks/49804', 'en', 13781), +(36890, 'Rubáiyát of Omar Khayyám, and Salámán and Absál\r\nTogether with a Life of Edward Fitzgerald and an Essay on Persian Poetry by Ralph Waldo Emerson', 'Omar Khayyam', '2007-09-07', 61, 'https://www.gutenberg.org/ebooks/22535', 'en', 5433), +(36891, 'The New Guide to Knitting & Crochet', 'Cooper, Marie Jane', '2011-03-15', 108, 'https://www.gutenberg.org/ebooks/35582', 'en', 12417), +(36892, 'J. Cole', 'Gellibrand, Emma', '2005-01-01', 6, 'https://www.gutenberg.org/ebooks/7357', 'en', 13782), +(36893, 'Arkielämää: Kertomus', 'Jotuni, Maria', '2014-06-22', 14, 'https://www.gutenberg.org/ebooks/46070', 'fi', 175), +(36894, 'The Nature of Animal Light', 'Harvey, E. Newton (Edmund Newton)', '2010-11-26', 25, 'https://www.gutenberg.org/ebooks/34450', 'en', 13783), +(36895, 'You Never Know Your Luck; being the story of a matrimonial deserter. Volume 1.', 'Parker, Gilbert', '2004-08-01', 12, 'https://www.gutenberg.org/ebooks/6285', 'en', 332), +(36896, 'Struggles and Triumphs: or, Forty Years\' Recollections of P. T. Barnum', 'Barnum, P. T. (Phineas Taylor)', '2015-10-02', 28, 'https://www.gutenberg.org/ebooks/50115', 'en', 6462), +(36897, 'Umé San in Japan', 'McDonald, Etta Blaisdell', '2018-11-29', 6, 'https://www.gutenberg.org/ebooks/58378', 'en', 13784), +(36898, 'Sotavanhuksen joulu\nTalvikuva 1859', 'Topelius, Zacharias', '2016-12-22', 14, 'https://www.gutenberg.org/ebooks/53790', 'fi', 402), +(36899, 'Punch, or the London Charivari, Volume 101, October 24, 1891', 'Various', '2004-11-15', 5, 'https://www.gutenberg.org/ebooks/14057', 'en', 134), +(36900, 'La Princesse De Clèves par Mme de La Fayette\r\nEdited with Introduction and Notes', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '2007-01-03', 23, 'https://www.gutenberg.org/ebooks/20262', 'fr', 1061), +(36901, 'Project Gutenberg Complete Works of Winston Churchill', 'Churchill, Winston', '2004-10-19', 367, 'https://www.gutenberg.org/ebooks/5400', 'en', 1028), +(36902, 'Wanderings in Corsica: Its History and Its Heroes. Vol. 1 of 2', 'Gregorovius, Ferdinand', '2014-01-22', 12, 'https://www.gutenberg.org/ebooks/44727', 'en', 7348), +(36903, 'The Ghetto: A Drama in Four Acts', 'Heijermans, Herman', '2011-06-02', 20, 'https://www.gutenberg.org/ebooks/36307', 'en', 13785), +(36904, 'Quiet Talks on John\'s Gospel', 'Gordon, S. D. (Samuel Dickey)', '2005-02-26', 25, 'https://www.gutenberg.org/ebooks/15185', 'en', 13786), +(36905, 'A Lear of the Steppes, etc.', 'Turgenev, Ivan Sergeevich', '2016-07-26', 24, 'https://www.gutenberg.org/ebooks/52642', 'en', 13787), +(36906, 'L\'Illustration, No. 3232, 4 Février 1905', 'Various', '2010-09-08', 3, 'https://www.gutenberg.org/ebooks/33675', 'fr', 150), +(36907, 'Studies of Christianity; Or, Timely Thoughts for Religious Thinkers', 'Martineau, James', '2012-08-01', 24, 'https://www.gutenberg.org/ebooks/40387', 'en', 13017), +(36908, 'The Opening Heavens\r\nor a Connected View of the Testimony of the Prophets and Apostles, Concerning the Opening Heavens, Compared With Astronomical Observations, and of the Present and Future Location of the New Jerusalem, the Paradise of God', 'Bates, Joseph', '2018-06-14', 15, 'https://www.gutenberg.org/ebooks/57330', 'en', 4149), +(36909, 'Last Words: A Final Collection of Stories', 'Ewing, Juliana Horatia Gatty', '2008-06-06', 50, 'https://www.gutenberg.org/ebooks/25710', 'en', 388), +(36910, 'The Atlantic Monthly, Volume 03, No. 18, April, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11525', 'en', 1227), +(36911, 'Prodromus Florae Norfolkicae\r\nSive, Catalogus stirpium quae in insula Norfolk annis 1804 et 1805 a Ferdinando Bauer collectae et depictae, nunc in Museo caesareo palatino rerum naturalium Vindobonae servantur', 'Endlicher, Stephan', '2012-11-01', 10, 'https://www.gutenberg.org/ebooks/41255', 'la', 13788), +(36912, 'Elkan Lubliner, American', 'Glass, Montague', '2008-12-05', 17, 'https://www.gutenberg.org/ebooks/27423', 'en', 13789), +(36913, 'The Philippine Islands, 1493-1803 — Volume 03 of 55\r\n1569-1576\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Beginning of the Nineteenth Century', NULL, '2004-10-05', 168, 'https://www.gutenberg.org/ebooks/13616', 'en', 1334), +(36914, 'The Swiss Family Robinson; or, Adventures on a Desert Island', 'Wyss, Johann David', '2011-01-01', 144, 'https://www.gutenberg.org/ebooks/34808', 'en', 123), +(36915, 'Shaving Made Easy: What the Man Who Shaves Ought to Know', 'Anonymous', '2013-07-09', 56, 'https://www.gutenberg.org/ebooks/43166', 'en', 13790), +(36916, 'Love\'s Labour\'s Lost', 'Shakespeare, William', '2000-07-01', 31, 'https://www.gutenberg.org/ebooks/2241', 'en', 907), +(36917, 'The Adventures of A Brownie\nAs Told to My Child by Miss Mulock', 'Craik, Dinah Maria Mulock', '2009-11-17', 33, 'https://www.gutenberg.org/ebooks/30494', 'en', 3822); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(36918, 'Studies of Lowell (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 11, 'https://www.gutenberg.org/ebooks/3393', 'en', 131), +(36919, 'Studies in Spermatogenesis (Part 2 of 2)', 'Stevens, N. M. (Nettie Maria)', '2010-03-07', 17, 'https://www.gutenberg.org/ebooks/31546', 'en', 13791), +(36920, 'The Irish Penny Journal, Vol. 1 No. 37, March 13, 1841', 'Various', '2017-06-28', 0, 'https://www.gutenberg.org/ebooks/55003', 'en', 81), +(36921, 'The Belovéd Traitor', 'Packard, Frank L. (Frank Lucius)', '2010-10-04', 87, 'https://www.gutenberg.org/ebooks/34034', 'en', 61), +(36922, 'Majoor Frans', 'Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida)', '2007-10-01', 12, 'https://www.gutenberg.org/ebooks/23083', 'nl', 319), +(36923, 'The Green Odyssey', 'Farmer, Philip José', '2015-11-29', 114, 'https://www.gutenberg.org/ebooks/50571', 'en', 323), +(36924, 'Punch, or the London Charivari, Vol. 158, 1920-03-10', 'Various', '2005-07-27', 4, 'https://www.gutenberg.org/ebooks/16364', 'en', 134), +(36925, 'A treatise of the cohabitacyon of the faithfull with the vnfaithfull.\r\nWhereunto is added. A sermon made of the confessing of Christe and his gospell, and of the denyinge of the same.', 'Bullinger, Heinrich', '2007-07-26', 34, 'https://www.gutenberg.org/ebooks/22151', 'en', 13792), +(36926, 'Fur Farming for Profit, with Especial Reference to Skunk Raising', 'Laymon, Hermon Basil', '2013-06-06', 15, 'https://www.gutenberg.org/ebooks/42888', 'en', 7259), +(36927, 'Paul Clifford — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 22, 'https://www.gutenberg.org/ebooks/7733', 'en', 356), +(36928, 'A History of Bibliographies of Bibliographies', 'Taylor, Archer', '2014-07-26', 16, 'https://www.gutenberg.org/ebooks/46414', 'en', 13793), +(36929, 'The Missing Prince', 'Farrow, G. E. (George Edward)', '2014-04-01', 16, 'https://www.gutenberg.org/ebooks/45291', 'en', 13794), +(36930, 'Stevenson\'s Shrine: The Record of a Pilgrimage', 'Stubbs, Laura', '2011-07-17', 3, 'https://www.gutenberg.org/ebooks/36763', 'en', 13795), +(36931, 'A Prisoner of the Khaleefa: Twelve Years Captivity at Omdurman', 'Neufeld, Charles', '2016-06-03', 13, 'https://www.gutenberg.org/ebooks/52226', 'en', 13796), +(36932, 'Rynnäkkö myllyä vastaan', 'Zola, Émile', '2004-12-23', 26, 'https://www.gutenberg.org/ebooks/14433', 'fi', 1850), +(36933, 'The Magic City', 'Nesbit, E. (Edith)', '2007-02-16', 100, 'https://www.gutenberg.org/ebooks/20606', 'en', 2203), +(36934, 'The Voyage of the Hoppergrass', 'Pearson, Edmund Lester', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/5064', 'en', 2794), +(36935, 'The Journal of Negro History, Volume 8, 1923', 'Various', '2013-12-03', 14, 'https://www.gutenberg.org/ebooks/44343', 'en', 7352), +(36936, '孔叢子', 'Kong, Fu', '2008-05-07', 15, 'https://www.gutenberg.org/ebooks/25374', 'zh', 13797), +(36937, 'Tom Temple\'s Career', 'Alger, Horatio, Jr.', '2018-03-06', 38, 'https://www.gutenberg.org/ebooks/56686', 'en', 8201), +(36938, 'A Summer in Leslie Goldthwaite\'s Life.', 'Whitney, A. D. T. (Adeline Dutton Train)', '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/11141', 'en', 1679), +(36939, 'A Dear Little Girl\'s Summer Holidays', 'Blanchard, Amy Ella', '2012-12-15', 10, 'https://www.gutenberg.org/ebooks/41631', 'en', 62), +(36940, 'An Artilleryman\'s Diary', 'Jones, Jenkins Lloyd', '2010-07-20', 22, 'https://www.gutenberg.org/ebooks/33211', 'en', 444), +(36941, 'Gutta-Percha Willie\r\nThe Working Genius', 'MacDonald, George', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10093', 'en', 13798), +(36942, 'Graham\'s Magazine, Vol. XXXVI, No. 6, June 1850', 'Various', '2018-08-23', 30, 'https://www.gutenberg.org/ebooks/57754', 'en', 380), +(36943, 'Personal Memoirs of P. H. Sheridan, Volume 2, Part 5', 'Sheridan, Philip Henry', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5858', 'en', 1433), +(36944, 'Sir William Johnson and the Six Nations', 'Griffis, William Elliot', '2016-05-07', 12, 'https://www.gutenberg.org/ebooks/52014', 'en', 13698), +(36945, 'The Brute', 'Kummer, Frederic Arnold', '2011-06-28', 17, 'https://www.gutenberg.org/ebooks/36551', 'en', 109), +(36946, 'The Lost Word: A Christmas Legend of Long Ago', 'Van Dyke, Henry', '2003-08-01', 15, 'https://www.gutenberg.org/ebooks/4384', 'en', 585), +(36947, 'Sequoia [California] National Park', 'United States. Department of the Interior', '2011-09-20', 11, 'https://www.gutenberg.org/ebooks/37483', 'en', 13799), +(36948, 'The History of the Life of the Late Mr. Jonathan Wild the Great', 'Fielding, Henry', '2004-03-01', 56, 'https://www.gutenberg.org/ebooks/5256', 'en', 1079), +(36949, 'The Postal System of the United States and the New York General Post Office', 'Jefferies, Thomas C.', '2013-11-13', 2, 'https://www.gutenberg.org/ebooks/44171', 'en', 13800), +(36950, 'Punch, or the London Charivari, Volume 102, May 7, 1892', 'Various', '2005-01-05', 6, 'https://www.gutenberg.org/ebooks/14601', 'en', 134), +(36951, 'The Boy Scouts\' First Camp Fire; or, Scouting with the Silver Fox Patrol', 'Carter, Herbert, active 1909-1917', '2007-01-24', 15, 'https://www.gutenberg.org/ebooks/20434', 'en', 1002), +(36952, 'At the Relton Arms', 'Sharp, Evelyn', '2012-11-18', 11, 'https://www.gutenberg.org/ebooks/41403', 'en', 45), +(36953, 'Watermelon Pete and Others', 'Gordon, Elizabeth', '2016-08-17', 6, 'https://www.gutenberg.org/ebooks/52828', 'en', 625), +(36954, 'Agincourt: A Romance\r\nThe Works of G. P. R. James, Volume XX', 'James, G. P. R. (George Payne Rainsford)', '2012-04-23', 14, 'https://www.gutenberg.org/ebooks/39519', 'en', 13801), +(36955, '山水情', 'Anonymous', '2008-04-23', 46, 'https://www.gutenberg.org/ebooks/25146', 'zh', 3187), +(36956, 'Through the Wall', 'Moffett, Cleveland', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11373', 'en', 128), +(36957, 'On Molecular and Microscopic Science, Volume 2 (of 2)', 'Somerville, Mary', '2018-07-22', 12, 'https://www.gutenberg.org/ebooks/57566', 'en', 10010), +(36958, 'The Beautiful Wretch; The Pupil of Aurelius; and The Four Macnicols', 'Black, William', '2007-12-31', 10, 'https://www.gutenberg.org/ebooks/24094', 'en', 4341), +(36959, 'An Address, Delivered Before the Was-ah Ho-de-no-son-ne or New Confederacy of the Iroquois\nAlso, Genundewah, a Poem', 'Hosmer, William H. C. (William Howe Cuyler)', '2010-06-29', 5, 'https://www.gutenberg.org/ebooks/33023', 'en', 6429), +(36960, 'Blackwood\'s Edinburgh Magazine, Vol. 67, No. 416, June 1850', 'Various', '2013-07-30', 14, 'https://www.gutenberg.org/ebooks/43354', 'en', 274), +(36961, 'The Valet\'s Tragedy, and Other Studies', 'Lang, Andrew', '2000-02-01', 39, 'https://www.gutenberg.org/ebooks/2073', 'en', 7868), +(36962, 'Blackwood\'s Edinburgh Magazine, Volume 62, Number 361, November, 1845.', 'Various', '2008-12-25', 27, 'https://www.gutenberg.org/ebooks/27611', 'en', 711), +(36963, 'Honoring Parents', 'Anonymous', '2004-09-10', 14, 'https://www.gutenberg.org/ebooks/13424', 'en', 10784), +(36964, 'The Return of Sherlock Holmes', 'Doyle, Arthur Conan', '2006-03-08', 1523, 'https://www.gutenberg.org/ebooks/108', 'en', 430), +(36965, 'A History of the Peninsular War, Vol. 3, Sep. 1809-Dec. 1810\r\nOcaña, Cadiz, Bussaco, Torres Vedras', 'Oman, Charles', '2017-07-30', 56, 'https://www.gutenberg.org/ebooks/55231', 'en', 2488), +(36966, 'The Woman with the Fan', 'Hichens, Robert', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/8549', 'en', 61), +(36967, 'Si Klegg, Book 4\r\nExperiences of Si and Shorty on the Great Tullahoma Campaign', 'McElroy, John', '2010-03-25', 20, 'https://www.gutenberg.org/ebooks/31774', 'en', 403), +(36968, 'Álomvilág: Elbeszélések', 'Ambrus, Zoltán', '2013-03-09', 31, 'https://www.gutenberg.org/ebooks/42286', 'hu', 189), +(36969, 'The Acts of Uniformity: Their Scope and Effect', 'Lacey, T. A. (Thomas Alexander)', '2009-05-02', 42, 'https://www.gutenberg.org/ebooks/28659', 'en', 13802), +(36970, 'Madame Putiphar, vol 1 e 2', 'Borel, Pétrus', '2015-12-21', 11, 'https://www.gutenberg.org/ebooks/50743', 'fr', 13803), +(36971, 'Guy Livingstone; or, \'Thorough\'', 'Lawrence, George A. (George Alfred)', '2005-11-17', 31, 'https://www.gutenberg.org/ebooks/17084', 'en', 61), +(36972, 'The Thousand and One Nights, Vol. I.\nCommonly Called the Arabian Nights\' Entertainments', NULL, '2010-11-03', 546, 'https://www.gutenberg.org/ebooks/34206', 'en', 3347), +(36973, 'Songs of a Savoyard', 'Gilbert, W. S. (William Schwenck)', '1997-06-01', 119, 'https://www.gutenberg.org/ebooks/934', 'en', 3625), +(36974, 'The Scientific Evidences of Organic Evolution', 'Romanes, George John', '2006-11-27', 26, 'https://www.gutenberg.org/ebooks/19922', 'en', 1315), +(36975, 'Tales of the Wilderness', 'Pilniak, Boris', '2005-02-01', 11, 'https://www.gutenberg.org/ebooks/7501', 'en', 13804), +(36976, 'Œuvres Complètes de Frédéric Bastiat, tome 5\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2014-08-19', 15, 'https://www.gutenberg.org/ebooks/46626', 'fr', 1745), +(36977, 'Then Marched the Brave', 'Comstock, Harriet T. (Harriet Theresa)', '2005-06-30', 8, 'https://www.gutenberg.org/ebooks/16156', 'en', 13805), +(36978, 'De getemde feeks', 'Shakespeare, William', '2016-04-07', 15, 'https://www.gutenberg.org/ebooks/51691', 'nl', 3523), +(36979, 'The Country of the Neutrals\n(As Far As Comprised in the County of Elgin), From Champlain to Talbot', 'Coyne, James H. (James Henry)', '2007-08-21', 19, 'https://www.gutenberg.org/ebooks/22363', 'en', 13806), +(36980, 'Beyond the Old Frontier: Adventures of Indian-Fighters, Hunters, and Fur-Traders', 'Grinnell, George Bird', '2017-02-07', 16, 'https://www.gutenberg.org/ebooks/54125', 'en', 13807), +(36981, 'Afterwards, and Other Stories', 'Maclaren, Ian', '2013-09-15', 28, 'https://www.gutenberg.org/ebooks/43192', 'en', 179), +(36982, '出師表', 'Zhuge, Liang', '2009-11-12', 53, 'https://www.gutenberg.org/ebooks/30460', 'zh', 13808), +(36983, 'A Hazard of New Fortunes — Volume 2', 'Howells, William Dean', '2004-10-23', 28, 'https://www.gutenberg.org/ebooks/3367', 'en', 705), +(36984, 'The Ffolliots of Redmarley', 'Harker, L. Allen (Lizzie Allen)', '2007-10-17', 10, 'https://www.gutenberg.org/ebooks/22999', 'en', 757), +(36985, 'The Cruise of the O Moo', 'Snell, Roy J. (Roy Judson)', '2013-02-01', 28, 'https://www.gutenberg.org/ebooks/42040', 'en', 13482), +(36986, 'The High School Boys\' Fishing Trip', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12730', 'en', 7371), +(36987, 'The Old Hanging Fork and Other Poems', 'Doneghy, George W.', '2008-09-01', 8, 'https://www.gutenberg.org/ebooks/26505', 'en', 8), +(36988, 'The Catacombs of Rome, and Their Testimony Relative to Primitive Christianity', 'Withrow, W. H. (William Henry)', '2014-12-04', 18, 'https://www.gutenberg.org/ebooks/47532', 'en', 13809), +(36989, 'Myths and Legends of Our Own Land — Complete', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 141, 'https://www.gutenberg.org/ebooks/6615', 'en', 725), +(36990, 'The Romance of War; or, The Highlanders in Spain, Volume 2 (of 3)', 'Grant, James', '2017-06-15', 12, 'https://www.gutenberg.org/ebooks/54919', 'en', 7920), +(36991, 'Jane Eyre', 'Brontë, Charlotte', '2007-10-01', 218, 'https://www.gutenberg.org/ebooks/23077', 'en', 13810), +(36992, 'La tombe de fer', 'Conscience, Hendrik', '2005-12-06', 12, 'https://www.gutenberg.org/ebooks/17242', 'fr', 61), +(36993, 'A Thousand Degrees Below Zero', 'Leinster, Murray', '2015-12-01', 53, 'https://www.gutenberg.org/ebooks/50585', 'en', 26), +(36994, 'A narrative of the sufferings, preservation and deliverance, of Capt. John Dean and company\r\nin the Nottingham galley of London, cast away on Boon-Island, near New England, December 11, 1710', 'Dean, John', '2016-03-15', 14, 'https://www.gutenberg.org/ebooks/51457', 'en', 13811), +(36995, 'Little Prudy\'s Dotty Dimple', 'May, Sophie', '2005-07-30', 49, 'https://www.gutenberg.org/ebooks/16390', 'en', 1679), +(36996, 'The Galaxy, March, 1877\r\nVol. XXIII, No. 3', 'Various', '2011-01-29', 24, 'https://www.gutenberg.org/ebooks/35112', 'en', 883), +(36997, 'The Story of a Fierce Bad Rabbit', 'Potter, Beatrix', '2014-03-31', 89, 'https://www.gutenberg.org/ebooks/45265', 'en', 6542), +(36998, 'Diary of Samuel Pepys — Volume 23: July/August 1663', 'Pepys, Samuel', '2004-11-30', 16, 'https://www.gutenberg.org/ebooks/4142', 'en', 1231), +(36999, 'The Crime of the French Café and Other Stories', 'Carter, Nicholas (House name)', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/11989', 'en', 167), +(37000, 'The Principles of Secularism', 'Holyoake, George Jacob', '2011-07-20', 35, 'https://www.gutenberg.org/ebooks/36797', 'en', 13812), +(37001, 'Charlie to the Rescue', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 38, 'https://www.gutenberg.org/ebooks/21720', 'en', 8058), +(37002, 'Syvistä riveistä\nKansankirjailijaimme novellikokoelma', 'Various', '2005-03-31', 12, 'https://www.gutenberg.org/ebooks/15515', 'fi', 179), +(37003, 'Nature\'s Teachings: Human Invention Anticipated by Nature', 'Wood, J. G. (John George)', '2016-10-17', 19, 'https://www.gutenberg.org/ebooks/53300', 'en', 871), +(37004, 'I Will Repay', 'Orczy, Emmuska Orczy, Baroness', '2004-02-01', 75, 'https://www.gutenberg.org/ebooks/5090', 'en', 248), +(37005, 'Dryden\'s Works Vol. 03 (of 18)', 'Dryden, John', '2011-10-06', 18, 'https://www.gutenberg.org/ebooks/37645', 'en', 126), +(37006, '閒情偶寄', 'Li, Yu', '2008-05-07', 28, 'https://www.gutenberg.org/ebooks/25380', 'zh', NULL), +(37007, 'Liian paljon kultaa', 'London, Jack', '2018-03-03', 7, 'https://www.gutenberg.org/ebooks/56672', 'fi', 179), +(37008, 'Belcaro; Being Essays on Sundry Aesthetical Questions', 'Lee, Vernon', '2010-05-12', 23, 'https://www.gutenberg.org/ebooks/32337', 'en', 2250), +(37009, 'Beautiful Stories from Shakespeare', 'Nesbit, E. (Edith)', '1998-08-01', 670, 'https://www.gutenberg.org/ebooks/1430', 'en', 1063), +(37010, 'The Story of a Round-House, and Other Poems', 'Masefield, John', '2012-09-09', 41, 'https://www.gutenberg.org/ebooks/40717', 'en', 1594), +(37011, 'The Mystery of the Boule Cabinet: A Detective Story', 'Stevenson, Burton Egbert', '2003-11-01', 86, 'https://www.gutenberg.org/ebooks/10067', 'en', 128), +(37012, 'Four Young Explorers; Or, Sight-Seeing in the Tropics', 'Optic, Oliver', '2008-01-11', 20, 'https://www.gutenberg.org/ebooks/24252', 'en', 323), +(37013, 'Modern Persia', 'Daniel, Mooshie G.', '2007-05-17', 15, 'https://www.gutenberg.org/ebooks/21512', 'en', 13813), +(37014, 'Gritli\'s Children', 'Spyri, Johanna', '2005-04-29', 56, 'https://www.gutenberg.org/ebooks/15727', 'en', 3427), +(37015, 'The Sacred Fount', 'James, Henry', '2010-06-21', 140, 'https://www.gutenberg.org/ebooks/32939', 'en', 13814), +(37016, 'Index of the Project Gutenberg Works of Ralph Connor', 'Connor, Ralph', '2019-05-01', 5, 'https://www.gutenberg.org/ebooks/59408', 'en', 198), +(37017, 'Ambrose Gwinett; or, a sea-side story: a melo-drama, in three acts', 'Jerrold, Douglas William', '2014-03-04', 18, 'https://www.gutenberg.org/ebooks/45057', 'en', 1281), +(37018, 'The Deeds of God Through the Franks', 'Guibert, Abbot of Nogent-sous-Coucy', '2003-08-01', 56, 'https://www.gutenberg.org/ebooks/4370', 'en', 13815), +(37019, 'Taking Chances', 'Cullen, Clarence Louis', '2011-09-19', 20, 'https://www.gutenberg.org/ebooks/37477', 'en', 10876), +(37020, 'The Fighting Starkleys; or, The Test of Courage', 'Goodridge Roberts, Theodore', '2013-11-15', 7, 'https://www.gutenberg.org/ebooks/44185', 'en', 146), +(37021, 'The Night of the Trolls', 'Laumer, Keith', '2016-09-23', 193, 'https://www.gutenberg.org/ebooks/53132', 'en', 26), +(37022, 'Belford\'s Magazine, Vol 2, December 1888', 'Various', '2010-04-23', 7, 'https://www.gutenberg.org/ebooks/32105', 'en', 13816), +(37023, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 273, September 15, 1827', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11387', 'en', 133), +(37024, 'Physiological Researches on Life and Death', 'Bichat, Xavier', '2018-01-27', 6, 'https://www.gutenberg.org/ebooks/56440', 'en', 13817), +(37025, 'Love and Marriage', 'Key, Ellen', '2018-07-28', 39, 'https://www.gutenberg.org/ebooks/57592', 'en', 1451), +(37026, 'La Paloma', NULL, '2003-11-01', 68, 'https://www.gutenberg.org/ebooks/10255', 'es', 7506), +(37027, '李太白集', 'Li, Bai', '2007-12-28', 46, 'https://www.gutenberg.org/ebooks/24060', 'zh', 9521), +(37028, 'Dawn O\'Hara: The Girl Who Laughed', 'Ferber, Edna', '1999-01-01', 37, 'https://www.gutenberg.org/ebooks/1602', 'en', 637), +(37029, 'Kathie\'s Soldiers', 'Douglas, Amanda M.', '2012-08-18', 8, 'https://www.gutenberg.org/ebooks/40525', 'en', 195), +(37030, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 04 (1820)', 'Various', '2015-04-20', 5, 'https://www.gutenberg.org/ebooks/48748', 'en', 2757), +(37031, 'In The Seven Woods: Being Poems Chiefly of the Irish Heroic Age', 'Yeats, W. B. (William Butler)', '2009-12-11', 48, 'https://www.gutenberg.org/ebooks/30652', 'en', 139), +(37032, 'Life and Letters of Charles Darwin — Volume 1', 'Darwin, Charles', '2000-02-01', 64, 'https://www.gutenberg.org/ebooks/2087', 'en', 5315), +(37033, 'The Tale of Triona', 'Locke, William John', '2019-08-18', 595, 'https://www.gutenberg.org/ebooks/60122', 'en', 230), +(37034, 'Isle of Wight: A Sketch-Book', 'Woollard, Dorothy', '2017-03-09', 5, 'https://www.gutenberg.org/ebooks/54317', 'en', 13818), +(37035, 'Days of the Discoverers', 'Lamprey, Louise', '2006-03-23', 24, 'https://www.gutenberg.org/ebooks/18038', 'en', 2320), +(37036, 'Buena Nueva de acuerdo a Lucas: Traducción de dominio público abierta a mejoras', NULL, '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12502', 'es', 2260), +(37037, '幽閨記', 'Shi, Hui', '2008-10-01', 11, 'https://www.gutenberg.org/ebooks/26737', 'zh', 2312), +(37038, 'Journal of a Trip to California by the Overland Route Across the Plains in 1850-51', NULL, '2010-03-25', 17, 'https://www.gutenberg.org/ebooks/31780', 'en', 13819), +(37039, 'She', 'Haggard, H. Rider (Henry Rider)', '2006-04-06', 436, 'https://www.gutenberg.org/ebooks/3155', 'en', 580), +(37040, 'Balgatag szerelem: Elbeszélések', 'Oláh, Gábor', '2013-03-07', 12, 'https://www.gutenberg.org/ebooks/42272', 'hu', 1532), +(37041, 'Ancient Ballads and Legends of Hindustan', 'Dutt, Toru', '2007-10-29', 78, 'https://www.gutenberg.org/ebooks/23245', 'en', 5938), +(37042, 'Nasawing Pagasa', 'De los Reyes, Angel', '2005-11-15', 10, 'https://www.gutenberg.org/ebooks/17070', 'tl', 11944), +(37043, 'Schattenspiel um Goethe', 'Sternaux, Ludwig', '2014-12-19', 14, 'https://www.gutenberg.org/ebooks/47700', 'de', 13820), +(37044, 'The Story of Rome from the Earliest Times to the End of the Republic', 'Gilman, Arthur', '2004-09-01', 28, 'https://www.gutenberg.org/ebooks/6427', 'en', 13821), +(37045, 'Prose Masterpieces from Modern Essayists, Volume 3 of 3', NULL, '2006-07-10', 34, 'https://www.gutenberg.org/ebooks/18804', 'en', 5270), +(37046, 'Το μυθιστόρημα του Τριστάνου και της Ιζόλδης', 'Bédier, Joseph', '2011-02-18', 34, 'https://www.gutenberg.org/ebooks/35320', 'el', 5139), +(37047, 'Tippoo Sultaun: A tale of the Mysore war', 'Taylor, Meadows', '2016-04-05', 19, 'https://www.gutenberg.org/ebooks/51665', 'en', 13822), +(37048, 'Jacqueline — Volume 2', 'Bentzon, Th.', '2003-04-01', 12, 'https://www.gutenberg.org/ebooks/3969', 'en', 560), +(37049, 'Shakespearean Playhouses\r\nA History of English Theatres from the Beginnings to the Restoration', 'Adams, Joseph Quincy', '2007-08-25', 68, 'https://www.gutenberg.org/ebooks/22397', 'en', 13823), +(37050, 'The Pleasures of the Country: Simple Stories for Young People', 'Myrtle, Harriet', '2011-08-08', 19, 'https://www.gutenberg.org/ebooks/37013', 'en', 6016), +(37051, 'Un Cadet de Famille, v. 2/3', 'Trelawny, Edward John', '2012-02-13', 22, 'https://www.gutenberg.org/ebooks/38867', 'fr', 11015), +(37052, 'The Story of Geographical Discovery: How the World Became Known', 'Jacobs, Joseph', '2004-12-07', 81, 'https://www.gutenberg.org/ebooks/14291', 'en', 2320), +(37053, 'Kuolema', 'Maeterlinck, Maurice', '2016-11-19', 10, 'https://www.gutenberg.org/ebooks/53556', 'fi', 9971), +(37054, 'The Story of the Three Little Pigs', 'Brooke, L. Leslie (Leonard Leslie)', '2007-04-26', 10, 'https://www.gutenberg.org/ebooks/21176', 'en', 1007), +(37055, 'Le avventure di Pinocchio: Storia di un burattino', 'Collodi, Carlo', '2016-07-03', 247, 'https://www.gutenberg.org/ebooks/52484', 'it', 5022), +(37056, 'A Little Book for Christmas', 'Brady, Cyrus Townsend', '2005-03-12', 46, 'https://www.gutenberg.org/ebooks/15343', 'en', 949), +(37057, 'S. W. Partridge & Co. Catalogue of Popular Illustrated Books, 1904', 'S. W. Partridge & Co. (London, England)', '2014-04-18', 20, 'https://www.gutenberg.org/ebooks/45433', 'en', 4603), +(37058, 'Mr. Achilles', 'Lee, Jennette', '2006-04-13', 14, 'https://www.gutenberg.org/ebooks/4714', 'en', 2190), +(37059, 'Páter Péter; Asszonyt kisér — Istent kisért', 'Jókai, Mór', '2018-03-23', 5, 'https://www.gutenberg.org/ebooks/56818', 'hu', 234), +(37060, 'Halleck\'s New English Literature', 'Halleck, Reuben Post', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10631', 'en', 1694), +(37061, 'A Sermon Preached on the Anniversary of the Boston Female Asylum for Destitute Orphans, September 25, 1835', 'Wainwright, Jonathan Mayhew', '2008-01-22', 12, 'https://www.gutenberg.org/ebooks/24404', 'en', 13824), +(37062, 'Vagabond Adventures', 'Keeler, Ralph', '2019-02-28', 18, 'https://www.gutenberg.org/ebooks/58982', 'en', 13825), +(37063, 'Lavender and Old Lace', 'Reed, Myrtle', '1998-04-01', 34, 'https://www.gutenberg.org/ebooks/1266', 'en', 48), +(37064, 'Red Rowans', 'Steel, Flora Annie Webster', '2012-07-04', 8, 'https://www.gutenberg.org/ebooks/40141', 'en', 2389), +(37065, 'The Galaxy Primes', 'Smith, E. E. (Edward Elmer)', '2007-03-25', 146, 'https://www.gutenberg.org/ebooks/20898', 'en', 26), +(37066, 'Her Royal Highness: A Romance of the Chancelleries of Europe', 'Le Queux, William', '2012-10-17', 26, 'https://www.gutenberg.org/ebooks/41093', 'en', 167), +(37067, 'Hunting Reminiscences', 'Pease, Alfred E. (Alfred Edward), Sir', '2019-07-03', 60, 'https://www.gutenberg.org/ebooks/59850', 'en', 2441), +(37068, 'Kino und Erdkunde\r\nLichtbühnen-Bibliothek Nr. 7', 'Häfker, Hermann', '2012-03-18', 12, 'https://www.gutenberg.org/ebooks/39189', 'de', 2396), +(37069, 'The Bramleighs of Bishop\'s Folly', 'Lever, Charles James', '2010-05-27', 39, 'https://www.gutenberg.org/ebooks/32561', 'en', 669), +(37070, 'Kiljusen herrasväki satumaassa', 'Finne, Jalmari', '2017-11-21', 13, 'https://www.gutenberg.org/ebooks/56024', 'fi', 5797), +(37071, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 02', 'Dryden, John', '2004-04-01', 43, 'https://www.gutenberg.org/ebooks/12166', 'en', 1201), +(37072, 'Des homicides commis par les aliénés', 'Blanche, Émile', '2008-08-18', 24, 'https://www.gutenberg.org/ebooks/26353', 'fr', 13826), +(37073, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of Lord Chesterfield', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2002-11-01', 19, 'https://www.gutenberg.org/ebooks/3531', 'en', 1026), +(37074, 'The Medicine-Men of the Apache. (1892 N 09 / 1887-1888 (pages 443-604))', 'Bourke, John Gregory', '2013-04-29', 26, 'https://www.gutenberg.org/ebooks/42616', 'en', 13827), +(37075, 'Pepita Ximenez', 'Valera, Juan', '2009-10-12', 21, 'https://www.gutenberg.org/ebooks/30236', 'en', 61), +(37076, 'Deux farces inédites attribuées à la reine Marguerite de Navarre', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2008-11-16', 6, 'https://www.gutenberg.org/ebooks/27281', 'fr', 415), +(37077, 'Excursions in Art and Letters', 'Story, William Wetmore', '2017-05-23', 10, 'https://www.gutenberg.org/ebooks/54773', 'en', 13828), +(37078, 'Heimskringla; Or, The Chronicle of the Kings of Norway', 'Snorri Sturluson', '1996-07-01', 249, 'https://www.gutenberg.org/ebooks/598', 'en', 6847), +(37079, 'The Number \"e\"', 'Unknown', '1993-04-01', 31, 'https://www.gutenberg.org/ebooks/63', 'en', 7340), +(37080, 'Modern Broods; Or, Developments Unlooked For', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-12-01', 23, 'https://www.gutenberg.org/ebooks/7191', 'en', 401), +(37081, 'The gradual acceptance of the Copernican theory of the universe', 'Stimson, Dorothy', '2011-04-01', 58, 'https://www.gutenberg.org/ebooks/35744', 'en', 13829), +(37082, 'Volpla', 'Guin, Wyman', '2016-02-13', 34, 'https://www.gutenberg.org/ebooks/51201', 'en', 211), +(37083, 'Orpheu Nº2\r\nRevista Trimestral de Literatura', 'Montalvor, Luís de', '2007-11-25', 49, 'https://www.gutenberg.org/ebooks/23621', 'pt', 13830), +(37084, 'The Blood Ship', 'Springer, Norman', '2005-12-30', 22, 'https://www.gutenberg.org/ebooks/17414', 'en', 702), +(37085, 'Albert Dürer', 'Moore, T. Sturge (Thomas Sturge)', '2006-02-01', 33, 'https://www.gutenberg.org/ebooks/9837', 'en', 13831), +(37086, 'Rustic Speech and Folk-Lore', 'Wright, Elizabeth Mary', '2014-11-16', 20, 'https://www.gutenberg.org/ebooks/47364', 'en', 3600), +(37087, 'The Spanish Tragedie', 'Kyd, Thomas', '2004-07-01', 64, 'https://www.gutenberg.org/ebooks/6043', 'en', 1298), +(37088, 'Bacon', 'Church, R. W. (Richard William)', '2004-10-29', 70, 'https://www.gutenberg.org/ebooks/13888', 'en', 13832), +(37089, 'Die Verdorrten', 'Weiss, Ernst', '2010-12-19', 17, 'https://www.gutenberg.org/ebooks/34696', 'de', 253), +(37090, 'Dot and the Kangaroo', 'Pedley, Ethel C.', '2003-02-01', 5, 'https://www.gutenberg.org/ebooks/3703', 'en', 3952), +(37091, 'About sugar buying for jobbers\r\nHow you can lessen business risks by trading in refined sugar futures', 'Dyer, B. W. (Benjamin Wheeler)', '2009-09-05', 19, 'https://www.gutenberg.org/ebooks/29915', 'en', 13833), +(37092, 'Sonata de estío: memorias del marqués de Bradomín', 'Valle-Inclán, Ramón del', '2013-03-28', 51, 'https://www.gutenberg.org/ebooks/42424', 'es', 1384), +(37093, 'Pink and White Tyranny\nA Society Novel', 'Stowe, Harriet Beecher', '2004-05-01', 32, 'https://www.gutenberg.org/ebooks/12354', 'en', 705), +(37094, 'The British Jugernath: Free trade! Fair trade!! Reciprocity!!! Retaliation!!!!', 'Molesworth, Guilford L. (Guilford Lindsey)', '2017-09-06', 10, 'https://www.gutenberg.org/ebooks/55493', 'en', 1312), +(37095, '醒世姻緣', 'Pu, Songling', '2008-07-31', 29, 'https://www.gutenberg.org/ebooks/26161', 'zh', 1003), +(37096, 'The Works of Richard Hurd, Volume 6 (of 8)', 'Hurd, Richard', '2017-04-12', 10, 'https://www.gutenberg.org/ebooks/54541', 'en', 12228), +(37097, 'The Story of Crisco', 'Neil, Marion Harris', '2004-08-25', 33, 'https://www.gutenberg.org/ebooks/13286', 'en', 103), +(37098, 'A Bottle of Old Wine', 'Lewis, Richard O.', '2009-09-16', 48, 'https://www.gutenberg.org/ebooks/30004', 'en', 179), +(37099, 'Old News\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 30, 'https://www.gutenberg.org/ebooks/9239', 'en', 179), +(37100, 'Tiedot Suomen-suvun muinaisuudesta: Yliopistollinen väitöskirja', 'Yrjö-Koskinen, Yrjö Sakari', '2016-01-25', 8, 'https://www.gutenberg.org/ebooks/51033', 'fi', 1821), +(37101, 'The Boy Settlers: A Story of Early Times in Kansas', 'Brooks, Noah', '2009-06-15', 4, 'https://www.gutenberg.org/ebooks/29129', 'en', 1259), +(37102, 'In the Days of Queen Victoria', 'Tappan, Eva March', '2011-03-14', 25, 'https://www.gutenberg.org/ebooks/35576', 'en', 2065), +(37103, 'The Secret Life: Being the Book of a Heretic', 'Bisland, Elizabeth', '2014-06-24', 13, 'https://www.gutenberg.org/ebooks/46084', 'en', 11592), +(37104, 'Beaumont and Fletcher\'s Works, Vol. 07 of 10', 'Fletcher, John', '2014-10-20', 14, 'https://www.gutenberg.org/ebooks/47156', 'en', 1088), +(37105, 'Embers, Complete', 'Parker, Gilbert', '2004-11-18', 22, 'https://www.gutenberg.org/ebooks/6271', 'en', 28), +(37106, 'Isä ja poika: Tekele', 'Lassila, Maiju', '2015-05-10', 9, 'https://www.gutenberg.org/ebooks/48922', 'fi', 175), +(37107, 'The Princess And The Jewel Doctor\n1905', 'Hichens, Robert', '2007-11-08', 5, 'https://www.gutenberg.org/ebooks/23413', 'en', 179), +(37108, 'The Lost Gospel and Its Contents\nOr, The Author of \"Supernatural Religion\" Refuted by Himself', 'Sadler, M. F. (Michael Ferrebee)', '2006-01-29', 17, 'https://www.gutenberg.org/ebooks/17626', 'en', 3111), +(37109, 'Ashton-Kirk, Criminologist', 'McIntyre, John Thomas', '2010-01-03', 34, 'https://www.gutenberg.org/ebooks/30838', 'en', 557), +(37110, 'The Tower Menagerie\r\nComprising the natural history of the animals contained in that establishment; with anecdotes of their characters and history.', 'Bennett, Edward Turner', '2016-12-18', 20, 'https://www.gutenberg.org/ebooks/53764', 'en', 13834), +(37111, 'Penelope\'s Postscripts', 'Wiggin, Kate Douglas Smith', '1999-08-01', 18, 'https://www.gutenberg.org/ebooks/1868', 'en', 13835), +(37112, 'The Stranger in France\nor, a Tour from Devonshire to Paris Illustrated by\nEngravings in Aqua Tint of Sketches Taken on the Spot.', 'Carr, John, Sir', '2007-01-06', 13, 'https://www.gutenberg.org/ebooks/20296', 'en', 2972), +(37113, 'The Biological Problem of To-day: Preformation Or Epigenesis?\r\nThe Basis of a Theory of Organic Development', 'Hertwig, Oscar', '2011-08-27', 13, 'https://www.gutenberg.org/ebooks/37221', 'en', 13836), +(37114, 'The Four Corners', 'Blanchard, Amy Ella', '2014-05-06', 18, 'https://www.gutenberg.org/ebooks/45601', 'en', 13837), +(37115, 'Born in Exile', 'Gissing, George', '2003-10-01', 36, 'https://www.gutenberg.org/ebooks/4526', 'en', 137), +(37116, 'The Young Bridge-Tender; or, Ralph Nelson\'s Upward Struggle', 'Stratemeyer, Edward', '2007-05-07', 20, 'https://www.gutenberg.org/ebooks/21344', 'en', 4576), +(37117, 'Journals of Travels in Assam, Burma, Bhootan, Afghanistan and the Neighbouring Countries', 'Griffith, William', '2005-02-25', 38, 'https://www.gutenberg.org/ebooks/15171', 'en', 13838), +(37118, 'A History of the Philippines', 'Barrows, David P.', '2011-12-11', 227, 'https://www.gutenberg.org/ebooks/38269', 'en', 7480), +(37119, 'Poems of the Great War\nPublished on the Behalf of the Prince of Wales\'s National Relief Fund', 'Various', '2010-09-09', 37, 'https://www.gutenberg.org/ebooks/33681', 'en', 2100), +(37120, 'A Collection of Ballads', 'Lang, Andrew', '1997-09-01', 31, 'https://www.gutenberg.org/ebooks/1054', 'en', 5478), +(37121, 'A Guide to Health', 'Gandhi, Mahatma', '2012-07-30', 163, 'https://www.gutenberg.org/ebooks/40373', 'en', 4793), +(37122, '\'Twixt France and Spain\r\nOr, A Spring in the Pyrenees', 'Bilbrough, E. Ernest', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/10403', 'en', 13839), +(37123, 'Picounoc le maudit', 'Lemay, Pamphile', '2008-02-18', 14, 'https://www.gutenberg.org/ebooks/24636', 'fr', 65), +(37124, 'Rodney, the Overseer', 'Castlemon, Harry', '2017-12-21', 4, 'https://www.gutenberg.org/ebooks/56216', 'en', 491), +(37125, 'Croquet: As played by the Newport Croquet Club', 'Anonymous', '2010-06-09', 11, 'https://www.gutenberg.org/ebooks/32753', 'en', 13840), +(37126, 'The Big Otter', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 61, 'https://www.gutenberg.org/ebooks/21718', 'en', 195), +(37127, 'The Chasm', 'Walton, Bryce', '2019-05-25', 97, 'https://www.gutenberg.org/ebooks/59602', 'en', 26), +(37128, 'Juha', 'Aho, Juhani', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10863', 'fi', 847), +(37129, 'Peace and Reform (1815-1837)', NULL, '2016-10-21', 15, 'https://www.gutenberg.org/ebooks/53338', 'en', 13841), +(37130, 'Madame Midas', 'Hume, Fergus', '2004-01-01', 26, 'https://www.gutenberg.org/ebooks/4946', 'en', 792), +(37131, 'The Extra Day', 'Blackwood, Algernon', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5894', 'en', 2634), +(37132, '\'Midst Arctic Perils: A Thrilling Story of Adventure in the Polar Regions', 'Westerman, Percy F. (Percy Francis)', '2018-08-28', 10, 'https://www.gutenberg.org/ebooks/57798', 'en', 324), +(37133, 'Delilah of the Snows', 'Bindloss, Harold', '2012-01-21', 17, 'https://www.gutenberg.org/ebooks/38635', 'en', 4264), +(37134, 'The Natural History of Selborne', 'White, Gilbert', '1998-08-01', 149, 'https://www.gutenberg.org/ebooks/1408', 'en', 13842), +(37135, 'Èl Sgner Pirein', 'Fiacchi, Antonio', '2015-03-21', 13, 'https://www.gutenberg.org/ebooks/48542', 'it', 3942), +(37136, '詩經', 'Anonymous', '2007-12-16', 67, 'https://www.gutenberg.org/ebooks/23873', 'zh', 10521), +(37137, 'Novice', 'Schmitz, James H.', '2009-11-12', 57, 'https://www.gutenberg.org/ebooks/30458', 'en', 26), +(37138, 'Delia Blanchflower', 'Ward, Humphry, Mrs.', '2006-01-01', 15, 'https://www.gutenberg.org/ebooks/9665', 'en', 2530), +(37139, 'Gedenkrede auf Wolfgang Amade Mozart', 'Beer-Hofmann, Richard', '2006-04-22', 21, 'https://www.gutenberg.org/ebooks/18232', 'de', 659), +(37140, 'Rumpelstiltskin', 'Grimm, Jacob', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12708', 'en', 1007), +(37141, 'A History of the Growth of the Steam-Engine', 'Thurston, Robert Henry', '2011-04-19', 62, 'https://www.gutenberg.org/ebooks/35916', 'en', 7873), +(37142, 'The Letters of Jane Austen\r\nSelected from the compilation of her great nephew, Edward, Lord Bradbourne', 'Austen, Jane', '2013-02-12', 364, 'https://www.gutenberg.org/ebooks/42078', 'en', 13843), +(37143, 'An Historical Review of the Royal Marine Corps, from its Original Institution down to the Present Era, 1803', 'Gillespie, Alexander, Major', '2015-07-19', 4, 'https://www.gutenberg.org/ebooks/49490', 'en', 13844), +(37144, 'The American Joe Miller: A Collection of Yankee Wit and Humor', NULL, '2013-10-22', 16, 'https://www.gutenberg.org/ebooks/43996', 'en', 190), +(37145, 'The Romance of War; or, The Highlanders in France and Belgium, A Sequel to the Highlanders in Spain', 'Grant, James', '2017-06-15', 20, 'https://www.gutenberg.org/ebooks/54921', 'en', 12503), +(37146, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 20, August 1877', 'Various', '2009-08-02', 21, 'https://www.gutenberg.org/ebooks/29575', 'en', 162), +(37147, 'Life and Correspondence of David Hume, Volume 2 (of 2)', 'Burton, John Hill', '2013-05-30', 24, 'https://www.gutenberg.org/ebooks/42844', 'en', 13845), +(37148, 'Phineas Finn\nThe Irish Member', 'Trollope, Anthony', '2006-04-07', 134, 'https://www.gutenberg.org/ebooks/18000', 'en', 1079), +(37149, 'Erämaan lapset: Historiallisia kertomuksia V', 'Wilkuna, Kyösti', '2013-08-04', 6, 'https://www.gutenberg.org/ebooks/43398', 'fi', 665), +(37150, 'The travels of Pedro de Cieza de Léon, A.D. 1532-50,\ncontained in the first part of his Chronicle of Peru', 'Cieza de León, Pedro de', '2015-04-23', 19, 'https://www.gutenberg.org/ebooks/48770', 'en', 989), +(37151, 'Tre racconti sentimentali', 'Bettoni, Paolo', '2006-02-27', 30, 'https://www.gutenberg.org/ebooks/17874', 'it', 179), +(37152, 'Travels in Arabia; comprehending an account of those territories in Hedjaz which the Mohammedans regard as sacred', 'Burckhardt, John Lewis', '2005-12-01', 73, 'https://www.gutenberg.org/ebooks/9457', 'en', 5489), +(37153, 'Roughing It, Part 4.', 'Twain, Mark', '2004-07-02', 15, 'https://www.gutenberg.org/ebooks/8585', 'en', 497), +(37154, 'Captain Ravenshaw; Or, The Maid of Cheapside. A Romance of Elizabethan London', 'Stephens, Robert Neilson', '2014-12-22', 26, 'https://www.gutenberg.org/ebooks/47738', 'en', 4434), +(37155, 'Our Children: Scenes from the Country and the Town', 'France, Anatole', '2009-05-05', 41, 'https://www.gutenberg.org/ebooks/28695', 'en', 388), +(37156, 'The Man and the Moment', 'Glyn, Elinor', '2005-11-11', 20, 'https://www.gutenberg.org/ebooks/17048', 'en', 61), +(37157, 'The Gold Bag', 'Wells, Carolyn', '2001-10-01', 17, 'https://www.gutenberg.org/ebooks/2883', 'en', 128), +(37158, 'Cinq Mars — Volume 5', 'Vigny, Alfred de', '2003-04-01', 10, 'https://www.gutenberg.org/ebooks/3951', 'en', 492), +(37159, 'Aztec Land', 'Ballou, Maturin M. (Maturin Murray)', '2009-08-21', 54, 'https://www.gutenberg.org/ebooks/29747', 'en', 2487), +(37160, 'Das Wirken der Seele: Ideen zu einer organischen Psychologie', 'Eisler, Rudolf', '2011-02-18', 19, 'https://www.gutenberg.org/ebooks/35318', 'de', 1151), +(37161, 'Poor, Dear Margaret Kirby', 'Norris, Kathleen Thompson', '2003-08-01', 36, 'https://www.gutenberg.org/ebooks/4348', 'en', 179), +(37162, 'Essays in Idleness', 'Repplier, Agnes', '2019-05-04', 23, 'https://www.gutenberg.org/ebooks/59430', 'en', 620), +(37163, 'The Merchants of Venus', 'Phelps, A. H.', '2010-06-19', 32, 'https://www.gutenberg.org/ebooks/32901', 'en', 26), +(37164, 'The Great Potlatch Riots', 'Lang, Allen Kim', '2008-03-18', 38, 'https://www.gutenberg.org/ebooks/24864', 'en', 10533), +(37165, 'The Lenape Stone; or, The Indian and the Mammoth', 'Mercer, Henry C.', '2014-06-01', 11, 'https://www.gutenberg.org/ebooks/45853', 'en', 13846), +(37166, 'Old Mines of Southern California\r\nDesert-Mountain-Coastal Areas Including the Calico-Salton Sea Colorado River Districts and Southern Counties', 'Storms, William H.', '2018-01-31', 10, 'https://www.gutenberg.org/ebooks/56478', 'en', 13847), +(37167, 'Selected Poems (1685-1700)', 'Tutchin, John', '2011-12-25', 17, 'https://www.gutenberg.org/ebooks/38407', 'en', 466), +(37168, 'Notes on the Mangue: An Extinct Dialect Formerly Spoken in Nicaragua', 'Brinton, Daniel G. (Daniel Garrison)', '2017-01-10', 10, 'https://www.gutenberg.org/ebooks/53936', 'en', 13848), +(37169, '穆天子传', 'Guo, Pu', '2007-12-28', 32, 'https://www.gutenberg.org/ebooks/24058', 'zh', 4247), +(37170, 'Harper\'s Young People, March 8, 1881\nAn Illustrated Weekly', 'Various', '2014-02-22', 2, 'https://www.gutenberg.org/ebooks/44981', 'en', 479), +(37171, 'Human Genome Project, Chromosome Number 09', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3509', 'en', 1841), +(37172, 'The Reconciliation of Races and Religions', 'Cheyne, T. K. (Thomas Kelly)', '2005-04-01', 4, 'https://www.gutenberg.org/ebooks/7995', 'en', 13849), +(37173, 'Allgemeiner deutscher Bier-Comment', NULL, '2017-10-08', 18, 'https://www.gutenberg.org/ebooks/55699', 'de', 13850), +(37174, 'Cytherea', 'Hergesheimer, Joseph', '2004-11-01', 26, 'https://www.gutenberg.org/ebooks/6847', 'en', 6360), +(37175, 'The Wit and Humor of America, Volume I. (of X.)', NULL, '2006-05-28', 186, 'https://www.gutenberg.org/ebooks/18464', 'en', 12514), +(37176, 'Charles Sumner: his complete works, volume 18 (of 20)', 'Sumner, Charles', '2015-02-19', 11, 'https://www.gutenberg.org/ebooks/48314', 'en', 429), +(37177, 'Sketches New and Old', 'Twain, Mark', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/9033', 'en', 2116), +(37178, 'The Modern Athens\nA dissection and demonstration of men and things in the Scotch Capital.', 'Mudie, Robert', '2016-02-17', 13, 'https://www.gutenberg.org/ebooks/51239', 'en', 4460), +(37179, 'An Old Sailor\'s Yarns', 'Ames, N. (Nathaniel)', '2009-07-05', 27, 'https://www.gutenberg.org/ebooks/29323', 'en', 324), +(37180, 'Hand Shadows to Be Thrown Upon the Wall', 'Bursill, Henry', '2004-07-20', 128, 'https://www.gutenberg.org/ebooks/12962', 'en', 13851), +(37181, 'The Royal Picture Alphabet', 'Leighton, John', '2007-11-25', 19, 'https://www.gutenberg.org/ebooks/23619', 'en', 2965), +(37182, 'A Compendium on the Soul', 'Avicenna', '2018-10-28', 94, 'https://www.gutenberg.org/ebooks/58186', 'en', 243), +(37183, 'The Shadow of the Czar', 'Carling, John R.', '2012-10-05', 18, 'https://www.gutenberg.org/ebooks/40945', 'en', 323), +(37184, 'Couplées: Roman', 'Boulenger, Marcel', '2018-03-23', 30, 'https://www.gutenberg.org/ebooks/56820', 'fr', 259), +(37185, 'Chitta Ranjan', 'Das, Sukumar Ranjan', '2013-01-22', 21, 'https://www.gutenberg.org/ebooks/41897', 'en', 13852), +(37186, 'My Two Countries', 'Astor, Nancy Witcher Langhorne Astor, Viscountess', '2019-03-13', 9, 'https://www.gutenberg.org/ebooks/59054', 'en', 13853), +(37187, 'The Sun\'s Babies', 'Howes, Edith', '2011-11-19', 6, 'https://www.gutenberg.org/ebooks/38063', 'en', 3822), +(37188, 'The Carter Girls\' Week-End Camp', 'Speed, Nell', '2012-07-10', 9, 'https://www.gutenberg.org/ebooks/40179', 'en', 3621), +(37189, 'English Literature\r\nIts History and Its Significance for the Life of the English-Speaking World', 'Long, William J. (William Joseph)', '2004-01-01', 546, 'https://www.gutenberg.org/ebooks/10609', 'en', 1694), +(37190, 'The Cries of London\nExhibiting Several of the Itinerant Traders of Antient and Modern Times', 'Smith, John Thomas', '2011-10-22', 80, 'https://www.gutenberg.org/ebooks/37817', 'en', 13854), +(37191, 'George Washington', 'Courtenay, Calista McCabe', '2007-06-29', 29, 'https://www.gutenberg.org/ebooks/21972', 'en', 1009), +(37192, 'Adventures of Hans Sterk: The South African Hunter and Pioneer', 'Drayson, Alfred W. (Alfred Wilks)', '2010-05-27', 21, 'https://www.gutenberg.org/ebooks/32559', 'en', 1615), +(37193, 'Harold the Klansman', 'Brown, George Alfred', '2019-07-07', 142, 'https://www.gutenberg.org/ebooks/59868', 'en', 942), +(37194, 'Little Susy\'s Little Servants', 'Prentiss, E. (Elizabeth)', '2011-08-26', 12, 'https://www.gutenberg.org/ebooks/37219', 'en', 13855), +(37195, 'Old Christmas', 'Irving, Washington', '2006-05-14', 47, 'https://www.gutenberg.org/ebooks/1850', 'en', 3618), +(37196, 'The Palace Beautiful: A Story for Girls', 'Meade, L. T.', '2005-02-22', 16, 'https://www.gutenberg.org/ebooks/15149', 'en', 51), +(37197, 'Hiltu ja Ragnar: Kertomus kahdesta ihmislapsesta', 'Sillanpää, Frans Eemil', '2019-04-13', 5, 'https://www.gutenberg.org/ebooks/59266', 'fi', 175), +(37198, 'Buffon\'s Natural History, Volume 03 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c.', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-12', 17, 'https://www.gutenberg.org/ebooks/45639', 'en', 871), +(37199, 'Oscar Wilde', 'Ingleby, Leonard Cresswell', '2011-12-09', 17, 'https://www.gutenberg.org/ebooks/38251', 'en', 13856), +(37200, 'The Flower Girl of The Château d\'Eau, v.1 (Novels of Paul de Kock Volume XV)', 'Kock, Paul de', '2012-11-05', 15, 'https://www.gutenberg.org/ebooks/41299', 'en', 58), +(37201, 'Mademoiselle Blanche: A Novel', 'Barry, John D. (John Daniel)', '2012-04-05', 15, 'https://www.gutenberg.org/ebooks/39383', 'en', 13857), +(37202, 'Camera Obscura', 'Hildebrand', '2005-06-03', 63, 'https://www.gutenberg.org/ebooks/15975', 'nl', 5388), +(37203, 'Death Be Not Proud', 'Donne, John', '2006-11-15', 18, 'https://www.gutenberg.org/ebooks/19784', 'en', 11671), +(37204, 'Gerichtliche Leichen-Oeffnungen. Erstes Hundert.', 'Casper, Johann Ludwig', '2014-09-17', 7, 'https://www.gutenberg.org/ebooks/46880', 'de', 13858), +(37205, 'Past and Present\nThomas Carlyle\'s Collected Works, Vol. XIII.', 'Carlyle, Thomas', '2008-07-31', 64, 'https://www.gutenberg.org/ebooks/26159', 'en', 3120), +(37206, 'Les questions esthétiques contemporaines', 'La Sizeranne, Robert de', '2016-04-23', 16, 'https://www.gutenberg.org/ebooks/51837', 'fr', 2250), +(37207, 'Ancient Landscapes of the Grand Canyon Region\nThe Geology of Grand Canyon, Zion, Bryce, Petrified Forest & Painted Desert', 'McKee, Edwin D. (Edwin Dinwiddie)', '2015-01-31', 27, 'https://www.gutenberg.org/ebooks/48126', 'en', 13859), +(37208, 'Sunday at Home (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 23, 'https://www.gutenberg.org/ebooks/9201', 'en', 3175), +(37209, 'Birds and All Nature, Vol. 5, No. 5, May 1899\r\nIllustrated by Color Photography', 'Various', '2015-01-14', 8, 'https://www.gutenberg.org/ebooks/47952', 'en', 490), +(37210, 'Wieland; Or, The Transformation: An American Tale', 'Brown, Charles Brockden', '1997-01-01', 176, 'https://www.gutenberg.org/ebooks/792', 'en', 13860), +(37211, 'The Stolen Aeroplane; or, How Bud Wilson Made Good', 'Sayler, H. L. (Harry Lincoln)', '2017-04-20', 6, 'https://www.gutenberg.org/ebooks/54579', 'en', 2279), +(37212, 'The Tale of Pony Twinkleheels', 'Bailey, Arthur Scott', '2006-06-22', 37, 'https://www.gutenberg.org/ebooks/18656', 'en', 1287), +(37213, 'Heroes and Hunters of the West\r\nComprising Sketches and Adventures of Boone, Kenton, Brady, Logan, Whetzel, Fleehart, Hughes, Johnson, &c.', 'Frost, John', '2008-10-19', 14, 'https://www.gutenberg.org/ebooks/26965', 'en', 7438), +(37214, 'What the Blackbird said\nA story in four chirps', 'Locker-Lampson, Hannah Jane', '2009-06-13', 19, 'https://www.gutenberg.org/ebooks/29111', 'en', 7188), +(37215, 'Nature Myths and Stories for Little Children', 'Cooke, Flora J. (Flora Juliette)', '2009-12-29', 16, 'https://www.gutenberg.org/ebooks/30800', 'en', 8821), +(37216, 'The Right of Way — Complete', 'Parker, Gilbert', '2004-11-18', 10, 'https://www.gutenberg.org/ebooks/6249', 'en', 1219), +(37217, 'Authors of Greece', 'Lumb, T. W. (Thomas Wallace)', '2005-05-01', 45, 'https://www.gutenberg.org/ebooks/8115', 'en', 13861), +(37218, 'The Early Negro Convention Movement\nThe American Negro Academy, Occasional Papers No. 9', 'Cromwell, John Wesley', '2010-02-19', 8, 'https://www.gutenberg.org/ebooks/31328', 'en', 1174), +(37219, 'The Esperantist, Vol. 2, No. 10', NULL, '2015-06-18', 3, 'https://www.gutenberg.org/ebooks/49232', 'eo', 3912), +(37220, 'The Knickerbocker, or New-York Monthly Magazine, February 1844\nVolume 23, Number 2', 'Various', '2006-10-14', 7, 'https://www.gutenberg.org/ebooks/19542', 'en', 18), +(37221, 'In and out of Three Normandy Inns', 'Dodd, Anna Bowman', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7961', 'en', 6545), +(37222, 'The Contrast', 'Tyler, Royall', '1996-06-01', 52, 'https://www.gutenberg.org/ebooks/554', 'en', 907), +(37223, 'String Quartet No. 12 in E flat major Opus 127', 'Beethoven, Ludwig van', '2004-08-02', 11, 'https://www.gutenberg.org/ebooks/13078', 'en', 3385), +(37224, 'Jacques Cartier', 'Chevalier, H. Emile (Henri Emile)', '2006-06-02', 17, 'https://www.gutenberg.org/ebooks/18490', 'fr', 5181), +(37225, 'Willis\'s Current Notes, No. 13, January 1852', NULL, '2013-09-13', 10, 'https://www.gutenberg.org/ebooks/43708', 'en', 11896), +(37226, 'Adela Cathcart, Volume 2', 'MacDonald, George', '2005-09-01', 19, 'https://www.gutenberg.org/ebooks/8929', 'en', 2389), +(37227, 'True Version of the Philippine Revolution', 'Aguinaldo, Emilio', '2004-07-22', 94, 'https://www.gutenberg.org/ebooks/12996', 'en', 8673), +(37228, 'Tales from \"Blackwood,\" Volume 8', 'Various', '2011-04-07', 13, 'https://www.gutenberg.org/ebooks/35788', 'en', 179), +(37229, 'No. 13 Washington Square', 'Scott, Leroy', '2004-10-24', 19, 'https://www.gutenberg.org/ebooks/13844', 'en', 13862), +(37230, 'Washington Crossing the Delaware', 'Carlton, Henry Fisk', '2009-02-27', 11, 'https://www.gutenberg.org/ebooks/28205', 'en', 13863), +(37231, 'Index of the Project Gutenberg Works of Washington Irving', 'Irving, Washington', '2018-10-26', 17, 'https://www.gutenberg.org/ebooks/58172', 'en', 198), +(37232, 'Sarah\'s School Friend', 'Baldwin, May', '2006-12-09', 11, 'https://www.gutenberg.org/ebooks/20068', 'en', 12102), +(37233, 'Wild Life at the Land\'s End\r\nObservations of the Habits and Haunts of the Fox, Badger, Otter, Seal, Hare and of Their Pursuers in Cornwall', 'Tregarthen, J. C. (John Coulson)', '2018-09-14', 11, 'https://www.gutenberg.org/ebooks/57906', 'en', 13864), +(37234, 'Ragna', 'Costantini, Anna Miller', '2013-01-18', 7, 'https://www.gutenberg.org/ebooks/41863', 'en', 61), +(37235, 'The House of the Trees & Other Poems', 'Wetherald, A. Ethelwyn', '2016-06-30', 10, 'https://www.gutenberg.org/ebooks/52448', 'en', 8), +(37236, 'Audubon and His Journals, Volume 2 (of 2)', 'Audubon, John James', '2012-06-13', 16, 'https://www.gutenberg.org/ebooks/39979', 'en', 1333), +(37237, 'Aphorisms and Reflections from the Works of T. H. Huxley', 'Huxley, Thomas Henry', '2011-11-22', 14, 'https://www.gutenberg.org/ebooks/38097', 'en', 814), +(37238, 'Muuan suomalainen soturi Kristiina kuningattaren aikakaudella', 'Jahnsson, Evald Ferdinand', '2007-03-20', 6, 'https://www.gutenberg.org/ebooks/20854', 'fi', 98), +(37239, 'Constable', 'Hind, C. Lewis (Charles Lewis)', '2011-08-01', 17, 'https://www.gutenberg.org/ebooks/36931', 'en', 13865), +(37240, 'The Dash for Khartoum: A Tale of the Nile Expedition', 'Henty, G. A. (George Alfred)', '2007-07-02', 97, 'https://www.gutenberg.org/ebooks/21986', 'en', 2126), +(37241, 'The Devourers', 'Vivanti, Annie', '2012-03-14', 20, 'https://www.gutenberg.org/ebooks/39145', 'en', 2586), +(37242, 'Glenloch Girls', 'Remick, Grace May', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5438', 'en', 1655), +(37243, 'Tarr', 'Lewis, Wyndham', '2018-11-24', 45, 'https://www.gutenberg.org/ebooks/58340', 'en', 230), +(37244, 'Exiled for the Faith: A Tale of the Huguenot Persecution', 'Kingston, William Henry Giles', '2007-05-08', 19, 'https://www.gutenberg.org/ebooks/21388', 'en', 3019), +(37245, 'Voltaire', 'Brandes, Georg', '2019-04-17', 15, 'https://www.gutenberg.org/ebooks/59292', 'sv', 13717), +(37246, 'The Mute Stones Speak: The Story of Archaeology in Italy', 'MacKendrick, Paul Lachlan', '2018-06-11', 9, 'https://www.gutenberg.org/ebooks/57308', 'en', 13866), +(37247, 'The Turmoil: A Novel', 'Tarkington, Booth', '1997-11-01', 65, 'https://www.gutenberg.org/ebooks/1098', 'en', 2358), +(37248, 'The Stowmarket Mystery; Or, A Legacy of Hate', 'Tracy, Louis', '2005-02-01', 52, 'https://www.gutenberg.org/ebooks/14853', 'en', 128), +(37249, 'Si Tandang Basio Macunat', 'Lucio y Bustamante, M.', '2005-06-04', 15, 'https://www.gutenberg.org/ebooks/15981', 'tl', 61), +(37250, 'Mildred Arkell: A Novel. Vol. 2 (of 3)', 'Wood, Henry, Mrs.', '2012-04-05', 11, 'https://www.gutenberg.org/ebooks/39377', 'en', 61), +(37251, 'Desert Conquest; or, Precious Waters', 'Chisholm, A. M. (Arthur Murray)', '2008-06-08', 43, 'https://www.gutenberg.org/ebooks/25728', 'en', 315), +(37252, 'Clarissa Harlowe; or the history of a young lady — Volume 9', 'Richardson, Samuel', '2004-05-01', 67, 'https://www.gutenberg.org/ebooks/12398', 'en', 10773), +(37253, 'Spherical Trigonometry: For the Use of Colleges and Schools', 'Todhunter, I. (Isaac)', '2006-11-12', 178, 'https://www.gutenberg.org/ebooks/19770', 'en', 13867), +(37254, 'Naja tripudians', 'Vivanti, Annie', '2014-09-16', 9, 'https://www.gutenberg.org/ebooks/46874', 'it', 13868), +(37255, 'The Bible, Douay-Rheims, Book 27: Isaias\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8327', 'en', 7052), +(37256, 'Last Verses', 'Coolidge, Susan', '2015-05-20', 7, 'https://www.gutenberg.org/ebooks/49000', 'en', 178); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(37257, 'Der versiegelte Engel, und andere Geschichten', 'Leskov, N. S. (Nikolai Semenovich)', '2016-01-13', 8, 'https://www.gutenberg.org/ebooks/50911', 'de', 1871), +(37258, 'David Copperfield', 'Dickens, Charles', '1996-12-01', 2159, 'https://www.gutenberg.org/ebooks/766', 'en', 1351), +(37259, 'The Turned-About Girls', 'Dix, Beulah Marie', '2014-06-20', 18, 'https://www.gutenberg.org/ebooks/46048', 'en', 751), +(37260, 'A Short System of English Grammar\nFor the Use of the Boarding School in Worcester (1759)', 'Bate, Henry', '2008-10-22', 29, 'https://www.gutenberg.org/ebooks/26991', 'en', 1979), +(37261, 'Chronicles of England, Scotland and Ireland (2 of 6): England (01 of 12)\r\nWilliam the Conqueror', 'Holinshed, Raphael', '2005-09-24', 17, 'https://www.gutenberg.org/ebooks/16738', 'en', 288), +(37262, 'The Story of Hiawatha, Adapted from Longfellow', 'Stokes, Winston', '2010-04-09', 37, 'https://www.gutenberg.org/ebooks/31926', 'en', 11185), +(37263, 'In Doublet and Hose: A Story for Girls', 'Madison, Lucy Foster', '2009-02-09', 18, 'https://www.gutenberg.org/ebooks/28037', 'en', 98), +(37264, 'Les mystères du peuple, tome I\r\nHistoire d\'une famille de prolétaires à travers les âges', 'Sue, Eugène', '2009-01-19', 7, 'https://www.gutenberg.org/ebooks/27843', 'fr', 2340), +(37265, 'Christopher Quarles: College Professor and Master Detective', 'Brebner, Percy James', '2010-11-28', 28, 'https://www.gutenberg.org/ebooks/34468', 'en', 128), +(37266, 'Essays of Schopenhauer', 'Schopenhauer, Arthur', '2004-04-01', 407, 'https://www.gutenberg.org/ebooks/11945', 'en', 902), +(37267, 'The Wendigo', 'Blackwood, Algernon', '2004-01-01', 714, 'https://www.gutenberg.org/ebooks/10897', 'en', 461), +(37268, 'Kolmetoista vuotta Pähkinälinnassa', 'Anonymous', '2011-10-10', 11, 'https://www.gutenberg.org/ebooks/37689', 'fi', 13869), +(37269, 'Oswego-joella: \"Tienviitan\" seikkailuja, intiaanikertomus', 'Cooper, James Fenimore', '2019-01-19', 1, 'https://www.gutenberg.org/ebooks/58724', 'fi', 3464), +(37270, 'Diary of John Manningham\r\nOf the Middle Temple, and of Bradbourne, Kent, Barrister‑at‑Law, 1602-1603', 'Manningham, John', '2012-12-12', 20, 'https://www.gutenberg.org/ebooks/41609', 'en', 13870), +(37271, 'The Foundations of Science: Science and Hypothesis, The Value of Science, Science and Method', 'Poincaré, Henri', '2012-05-16', 101, 'https://www.gutenberg.org/ebooks/39713', 'en', 516), +(37272, 'Seeing Europe with Famous Authors, Volume 6\r\nGermany, Austria-Hungary and Switzerland, part 2', NULL, '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11179', 'en', 3386), +(37273, 'Personal Memoirs of U. S. Grant, Part 1.', 'Grant, Ulysses S. (Ulysses Simpson)', '2004-06-01', 48, 'https://www.gutenberg.org/ebooks/5860', 'en', 13871), +(37274, 'L\'Équation de Fredholm et ses applications a la physique mathématique', 'Heywood, H. Bryon (Horace Bryon)', '2010-07-22', 26, 'https://www.gutenberg.org/ebooks/33229', 'fr', 13872), +(37275, 'Strange Stories from History for Young People', 'Eggleston, George Cary', '2007-12-17', 28, 'https://www.gutenberg.org/ebooks/23887', 'en', 2434), +(37276, 'All the Year Round', 'Dickens, Charles', '2006-01-01', 17, 'https://www.gutenberg.org/ebooks/9691', 'en', 20), +(37277, 'A Waif of the Plains', 'Harte, Bret', '2006-05-14', 26, 'https://www.gutenberg.org/ebooks/2279', 'en', 2708), +(37278, 'The Fibonacci Number Series', 'Husted, Michael', '1995-07-01', 77, 'https://www.gutenberg.org/ebooks/302', 'en', 13873), +(37279, 'Little Frankie and his Mother', 'Leslie, Madeline', '2011-01-03', 9, 'https://www.gutenberg.org/ebooks/34830', 'en', 13874), +(37280, 'Raphael\r\nA Collection of Fifteen Pictures and a Portrait of the Painter with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2006-09-19', 39, 'https://www.gutenberg.org/ebooks/19314', 'en', 13875), +(37281, 'Mary Schweidler, the amber witch\r\nThe most interesting trial for witchcraft ever known, printed from an imperfect manuscript by her father, Abraham Schweidler, the pastor of Coserow in the island of Usedom / edited by W. Meinhold ; translated from the German by Lady Duff Gordon.', 'Meinhold, Wilhelm', '2005-08-01', 42, 'https://www.gutenberg.org/ebooks/8743', 'en', 4556), +(37282, 'Lichtbild- und Kino-Technik\nLichtbühnen-Bibliothek Nr. 1', 'Liesegang, Franz Paul', '2015-07-17', 14, 'https://www.gutenberg.org/ebooks/49464', 'de', 6154), +(37283, 'The Mistakes of Jesus', 'Floyd, William', '2007-10-11', 21, 'https://www.gutenberg.org/ebooks/22955', 'en', 2016), +(37284, 'Flight Through Tomorrow', 'Coblentz, Stanton A. (Stanton Arthur)', '2009-03-30', 44, 'https://www.gutenberg.org/ebooks/28453', 'en', 179), +(37285, 'Rajankäyntiä nykyisen kirjallisuutemme suunnista', 'Siljo, Juhani', '2013-10-16', 30, 'https://www.gutenberg.org/ebooks/43962', 'fi', 6994), +(37286, 'Three Wisconsin Cushings\r\nA sketch of the lives of Howard B., Alonzo H. and William B. Cushing, children of a pioneer family of Waukesha County', 'Haight, Theron Wilber', '2015-11-25', 13, 'https://www.gutenberg.org/ebooks/50549', 'en', 13876), +(37287, 'Verses', 'Wharton, Edith', '2017-10-24', 20, 'https://www.gutenberg.org/ebooks/55807', 'en', 350), +(37288, 'The Story of the Barbary Corsairs', 'Kelley, J. D. Jerrold (James Douglas Jerrold)', '2007-07-28', 46, 'https://www.gutenberg.org/ebooks/22169', 'en', 645), +(37289, 'The Bondwoman', 'Ryan, Marah Ellis', '2009-08-03', 20, 'https://www.gutenberg.org/ebooks/29581', 'en', 835), +(37290, 'Captain Desmond, V.C.', 'Diver, Maud', '2008-12-26', 28, 'https://www.gutenberg.org/ebooks/27629', 'en', 1736), +(37291, 'Orthodoxy', 'Chesterton, G. K. (Gilbert Keith)', '1994-05-01', 1674, 'https://www.gutenberg.org/ebooks/130', 'en', 2407), +(37292, 'Yön lapsi', 'London, Jack', '2015-04-24', 20, 'https://www.gutenberg.org/ebooks/48784', 'fi', 179), +(37293, 'Barnabé Rudge, Tome II', 'Dickens, Charles', '2006-02-27', 38, 'https://www.gutenberg.org/ebooks/17880', 'fr', 13877), +(37294, 'Wolfert\'s Roost, and Miscellanies', 'Irving, Washington', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8571', 'en', 112), +(37295, 'Mark Twain\'s Letters — Complete (1853-1910)', 'Twain, Mark', '2004-09-19', 119, 'https://www.gutenberg.org/ebooks/3199', 'en', 1300), +(37296, 'In chiave di baritono', 'Ghislanzoni, Antonio', '2005-10-27', 8, 'https://www.gutenberg.org/ebooks/16952', 'it', 61), +(37297, 'Der Weltkrieg, Deutsche Träume: Roman', 'Niemann, August', '2015-08-08', 16, 'https://www.gutenberg.org/ebooks/49656', 'de', 2564), +(37298, 'Raemaekers\' Cartoons: With Accompanying Notes by Well-known English Writers', 'Raemaekers, Louis', '2006-08-26', 36, 'https://www.gutenberg.org/ebooks/19126', 'en', 2328), +(37299, 'Voimistelun käsikirja', 'Wilskman, Ivar', '2017-07-27', 6, 'https://www.gutenberg.org/ebooks/55209', 'fi', 13878), +(37300, 'Le Diable amoureux; L\'Honneur perdu et recouvré; Rachel ou la belle juive', 'Cazotte, Jacques', '2007-11-02', 15, 'https://www.gutenberg.org/ebooks/23289', 'fr', 5128), +(37301, 'Paul ja Virginia', 'Saint-Pierre, Bernardin de', '2009-05-02', 7, 'https://www.gutenberg.org/ebooks/28661', 'fi', 48), +(37302, 'Quotes and Images from Chesterfield\'s Letters to His Son', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-08-29', 19, 'https://www.gutenberg.org/ebooks/7539', 'en', 1026), +(37303, 'The Translations of Beowulf: A Critical Bibliography', 'Tinker, Chauncey Brewster', '2008-07-01', 26, 'https://www.gutenberg.org/ebooks/25942', 'en', 13879), +(37304, 'A Catalogue of Books Published by Methuen and Company, February, 1908', 'Methuen & Co.', '2011-06-30', 10, 'https://www.gutenberg.org/ebooks/36569', 'en', 727), +(37305, 'A View of Society and Manners in France, Switzerland, and Germany, Vol. 1 (of 2)\r\nWith Anecdotes Relating to Some Eminent Characters', 'Moore, John', '2018-12-22', 13, 'https://www.gutenberg.org/ebooks/58516', 'en', 13880), +(37306, 'Punch, or the London Charivari, Volume 152, February 28, 1917', 'Various', '2005-01-09', 6, 'https://www.gutenberg.org/ebooks/14639', 'en', 134), +(37307, 'Das Judengrab; Aus Bimbos Seelenwanderungen: Zwei Erzählungen', 'Huch, Ricarda', '2010-10-01', 13, 'https://www.gutenberg.org/ebooks/33827', 'de', 549), +(37308, 'The prophete Ionas with an introduccion\r\nbefore teachinge to vnderstonde him and the right vse also of all the scripture/ and why it was written/ and what is therin to be sought/ and shewenge wherewith the scripture is locked vpp that he which readeth it/ can not vnderstonde it/ though he studie therin neuer so moch: and agayne with what keyes it is so opened/ that the reader can be stopped out with no sotilte or false doctrine of man/ from the true sense and vnderstondynge therof.', 'Tyndale, William', '2008-03-21', 32, 'https://www.gutenberg.org/ebooks/24890', 'en', 13881), +(37309, 'In Pawn', 'Butler, Ellis Parker', '2013-11-10', 10, 'https://www.gutenberg.org/ebooks/44149', 'en', 7629), +(37310, 'Encyclopaedia Britannica, 11th Edition, \"Hearing\" to \"Helmond\"\r\nVolume 13, Slice 2', 'Various', '2012-04-23', 19, 'https://www.gutenberg.org/ebooks/39521', 'en', 1081), +(37311, 'The Border Boys in the Canadian Rockies', 'Goldfrap, John Henry', '2016-08-15', 20, 'https://www.gutenberg.org/ebooks/52810', 'en', 13882), +(37312, 'Poet and Peasant Overture', NULL, '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10299', 'en', 660), +(37313, 'A History of Roman Literature', 'Fowler, Harold North', '2014-02-22', 30, 'https://www.gutenberg.org/ebooks/44975', 'en', 4983), +(37314, 'Il partito radicale e il radicalismo italiano', 'Murri, Romolo', '2008-08-01', 15, 'https://www.gutenberg.org/ebooks/26166', 'it', 11082), +(37315, 'The Making of Religion', 'Lang, Andrew', '2004-05-01', 32, 'https://www.gutenberg.org/ebooks/12353', 'en', 655), +(37316, 'John Chambers, Servant of Christ and Master of Hearts, and His Ministry in Philadelphia', 'Griffis, William Elliot', '2017-09-06', 5, 'https://www.gutenberg.org/ebooks/55494', 'en', 13883), +(37317, 'Justin Wingate, Ranchman', 'Whitson, John Harvey', '2013-03-28', 35, 'https://www.gutenberg.org/ebooks/42423', 'en', 61), +(37318, 'The Social Principles of Jesus', 'Rauschenbusch, Walter', '2009-09-05', 18, 'https://www.gutenberg.org/ebooks/29912', 'en', 6478), +(37319, 'The Harvest of Ruskin', 'Graham, John W. (John William)', '2016-04-20', 5, 'https://www.gutenberg.org/ebooks/51808', 'en', 2868), +(37320, 'Journal of Researches into the Natural History and Geology of the Countries Visited During the Voyage Round the World of H.M.S. Beagle Under the Command of Captain Fitz Roy, R.N.', 'Darwin, Charles', '2003-02-01', 113, 'https://www.gutenberg.org/ebooks/3704', 'en', 13884), +(37321, 'Law and Laughter', 'Malloch, D. Macleod (Donald Macleod)', '2009-09-16', 55, 'https://www.gutenberg.org/ebooks/30003', 'en', 13885), +(37322, 'Hulme\'s Journal, 1818-19; Flower\'s Letters from Lexington and the Illinois, 1819; Flower\'s Letters from the Illinois, 1820-21; and Woods\'s Two Years\' Residence, 1820-21', 'Woods, John', '2015-01-31', 20, 'https://www.gutenberg.org/ebooks/48119', 'en', 13886), +(37323, 'Time and Clocks: A Description of Ancient and Modern Methods of Measuring Time', 'Cunynghame, Henry H. (Henry Hardinge), Sir', '2017-04-13', 11, 'https://www.gutenberg.org/ebooks/54546', 'en', 8727), +(37324, 'Punch, or the London Charivari, Volume 100, March 28, 1891', 'Various', '2004-08-25', 16, 'https://www.gutenberg.org/ebooks/13281', 'en', 134), +(37325, 'Histoire de la République de Gênes', 'Vincens, Emile', '2006-06-23', 34, 'https://www.gutenberg.org/ebooks/18669', 'fr', 6198), +(37326, 'Tahiti: Roman aus der Südsee. Vierter Band', 'Gerstäcker, Friedrich', '2014-06-23', 13, 'https://www.gutenberg.org/ebooks/46083', 'de', 2123), +(37327, 'Felix Lanzberg\'s Expiation', 'Schubin, Ossip', '2011-03-13', 7, 'https://www.gutenberg.org/ebooks/35571', 'en', 1949), +(37328, 'The Invention of Printing.\nA Collection of Facts and Opinions, Descriptive of Early Prints and Playing Cards, the Block-Books of the Fifteenth Century, the Legend of Lourens Janszoon Coster, of Haarlem, and the Work of John Gutenberg and His Associates', 'De Vinne, Theodore Low', '2016-01-25', 29, 'https://www.gutenberg.org/ebooks/51034', 'en', 13887), +(37329, 'One Day More: A Play In One Act', 'Conrad, Joseph', '2006-01-29', 45, 'https://www.gutenberg.org/ebooks/17621', 'en', 115), +(37330, 'Halima And The Scorpions\n1905', 'Hichens, Robert', '2007-11-08', 13, 'https://www.gutenberg.org/ebooks/23414', 'en', 179), +(37331, 'A History of the Durham Miner\'s Association 1870-1904', 'Wilson, John', '2015-05-10', 5, 'https://www.gutenberg.org/ebooks/48925', 'en', 13888), +(37332, 'The Money Master, Volume 2.', 'Parker, Gilbert', '2004-08-01', 5, 'https://www.gutenberg.org/ebooks/6276', 'en', 589), +(37333, 'Making People Happy', 'Buchanan, Thompson', '2009-01-25', 73, 'https://www.gutenberg.org/ebooks/27888', 'en', 434), +(37334, 'Diaries of Court Ladies of Old Japan', 'Sugawara no Takasue no Musume', '2014-10-19', 112, 'https://www.gutenberg.org/ebooks/47151', 'en', 13889), +(37335, 'English Lands, Letters and Kings, vol. 3: Queen Anne and the Georges', 'Mitchell, Donald Grant', '2011-08-27', 2, 'https://www.gutenberg.org/ebooks/37226', 'en', 1694), +(37336, 'Captain Mansana & Mother\'s Hands', 'Bjørnson, Bjørnstjerne', '2007-01-05', 41, 'https://www.gutenberg.org/ebooks/20291', 'en', 61), +(37337, 'The Intermediate Sex: A Study of Some Transitional Types of Men and Women', 'Carpenter, Edward', '2016-12-18', 76, 'https://www.gutenberg.org/ebooks/53763', 'en', 13890), +(37338, 'English Literature, Considered as an Interpreter of English History\nDesigned as a Manual of Instruction', 'Coppée, Henry', '2005-02-26', 23, 'https://www.gutenberg.org/ebooks/15176', 'en', 1694), +(37339, 'The Outer Quiet', 'Kastle, Herbert D.', '2019-04-12', 44, 'https://www.gutenberg.org/ebooks/59259', 'en', 4448), +(37340, 'La canne de M. de Balzac', 'Girardin, Emile de, Mme', '2007-05-07', 10, 'https://www.gutenberg.org/ebooks/21343', 'fr', 13891), +(37341, 'Narrative of the Overland Expedition of the Messrs. Jardine from Rockhampton to Cape York, Northern Queensland', 'Jardine, Alexander', '2004-08-28', 25, 'https://www.gutenberg.org/ebooks/4521', 'en', 13892), +(37342, 'The Little Glass Man, and Other Stories', 'Hauff, Wilhelm', '2014-05-07', 8, 'https://www.gutenberg.org/ebooks/45606', 'en', 388), +(37343, 'Freaks of Fortune; or, Half Round the World', 'Optic, Oliver', '2008-02-16', 19, 'https://www.gutenberg.org/ebooks/24631', 'en', 3249), +(37344, 'Man-Size', 'Raine, William MacLeod', '2003-12-01', 33, 'https://www.gutenberg.org/ebooks/10404', 'en', 315), +(37345, 'De l\'origine et de l\'institution du notariat\r\nPrécis historique lu à  l\'Academie des Sciences, belles-lettres et arts de Clermont-Ferrand', 'Fabre, Euryale', '2012-07-30', 25, 'https://www.gutenberg.org/ebooks/40374', 'fr', 13893), +(37346, 'In the Amazon Jungle\r\nAdventures in Remote Parts of the Upper Amazon River, Including a Sojourn Among Cannibal Indians', 'Lange, Algot', '2005-02-04', 17, 'https://www.gutenberg.org/ebooks/14898', 'en', 13894), +(37347, 'Accolon of Gaul, with Other Poems', 'Cawein, Madison Julius', '2010-09-09', 10, 'https://www.gutenberg.org/ebooks/33686', 'en', 178), +(37348, 'Within the Tides: Tales', 'Conrad, Joseph', '1997-09-01', 55, 'https://www.gutenberg.org/ebooks/1053', 'en', 61), +(37349, 'One-Way Ticket to Nowhere', 'Yerxa, Leroy', '2010-06-09', 17, 'https://www.gutenberg.org/ebooks/32754', 'en', 26), +(37350, 'Recollections of Rifleman Harris, (Old 95th.)\r\nwith anecdotes of his officers and his comrades', 'Harris, Benjamin', '2017-12-20', 16, 'https://www.gutenberg.org/ebooks/56211', 'en', 1360), +(37351, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1882-11/12)', NULL, '2005-11-26', 16, 'https://www.gutenberg.org/ebooks/14296', 'pt', 10301), +(37352, 'Sarita, the Carlist', 'Marchmont, Arthur W.', '2016-11-18', 8, 'https://www.gutenberg.org/ebooks/53551', 'en', 323), +(37353, 'Comrade Yetta', 'Edwards, Albert', '2012-02-13', 34, 'https://www.gutenberg.org/ebooks/38860', 'en', 2815), +(37354, 'Gomer voor den sabbath; meditatiën over en voor de sabbath', 'Kuyper, Abraham', '2011-08-08', 25, 'https://www.gutenberg.org/ebooks/37014', 'nl', 503), +(37355, 'The Veiled Lady, and Other Men and Women', 'Smith, Francis Hopkinson', '2003-12-01', 20, 'https://www.gutenberg.org/ebooks/4713', 'en', 112), +(37356, 'Der Untergang der Deutschen Juden: Eine Volkswirtschaftliche Studie', 'Theilhaber, Felix A. (Felix Aaron)', '2014-04-18', 10, 'https://www.gutenberg.org/ebooks/45434', 'de', 13895), +(37357, 'Sagen und Bilder aus Muskau und dem Park', 'Liebusch, Georg', '2016-07-03', 13, 'https://www.gutenberg.org/ebooks/52483', 'de', 13896), +(37358, 'Grace Harlowe\'s Sophomore Year at High School\r\nThe Record of the Girl Chums in Work and Athletics', 'Chase, Josephine', '2005-03-12', 52, 'https://www.gutenberg.org/ebooks/15344', 'en', 1669), +(37359, 'The Pilgrim\'s Progress', 'Bunyan, John', '2007-04-27', 63, 'https://www.gutenberg.org/ebooks/21171', 'en', 1633), +(37360, 'The City of Masks', 'McCutcheon, George Barr', '2012-07-06', 16, 'https://www.gutenberg.org/ebooks/40146', 'en', 13897), +(37361, 'The Babees\' Book: Medieval Manners for the Young: Done into Modern English', NULL, '2019-02-28', 44, 'https://www.gutenberg.org/ebooks/58985', 'en', 13898), +(37362, 'Betty Zane', 'Grey, Zane', '1998-04-01', 155, 'https://www.gutenberg.org/ebooks/1261', 'en', 13899), +(37363, 'The Young Lord, and Other Tales; to which is added Victorine Durocher', 'Crosland, Newton, Mrs.', '2008-01-22', 13, 'https://www.gutenberg.org/ebooks/24403', 'en', 13900), +(37364, 'The Travels of Marco Polo — Volume 1', 'Rustichello of Pisa', '2004-01-01', 481, 'https://www.gutenberg.org/ebooks/10636', 'en', 887), +(37365, 'De Ridders', 'Aristophanes', '2011-10-23', 29, 'https://www.gutenberg.org/ebooks/37828', 'nl', 907), +(37366, 'Vienna 1683\nThe History and Consequences of the Defeat of the Turks before Vienna, September 12, 1683, by John Sobieski, King of Poland, and Charles Leopold, Duke of Lorraine', 'Malden, Henry Elliot', '2017-11-21', 20, 'https://www.gutenberg.org/ebooks/56023', 'en', 13901), +(37367, 'The Triumph of Hilary Blachland', 'Mitford, Bertram', '2010-05-28', 13, 'https://www.gutenberg.org/ebooks/32566', 'en', 323), +(37368, 'The Evening Post: A Century of Journalism', 'Nevins, Allan', '2019-07-05', 55, 'https://www.gutenberg.org/ebooks/59857', 'en', 13902), +(37369, 'Eastern Nights - and Flights: A Record of Oriental Adventure.', 'Bott, Alan', '2012-10-17', 21, 'https://www.gutenberg.org/ebooks/41094', 'en', 8718), +(37370, 'In to the Yukon', 'Edwards, William Seymour', '2013-04-29', 14, 'https://www.gutenberg.org/ebooks/42611', 'en', 13903), +(37371, 'The Enchanted Castle', 'Nesbit, E. (Edith)', '2002-11-01', 215, 'https://www.gutenberg.org/ebooks/3536', 'en', 31), +(37372, 'Woodward\'s Country Homes', 'Woodward, F. W. (Francis W.)', '2008-08-18', 20, 'https://www.gutenberg.org/ebooks/26354', 'en', 13904), +(37373, 'Night Watches\nComplete Series', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12161', 'en', 179), +(37374, 'A Svmmarie and Trve Discovrse of Sir Frances Drakes VVest Indian Voyage\r\nWherein were taken, the townes of Saint Iago, Sancto Domingo, Cartagena & Saint Augustine.', 'Bigges, Walter', '2006-10-20', 31, 'https://www.gutenberg.org/ebooks/19589', 'en', 3837), +(37375, 'The Olynthiacs and the Phillippics of Demosthenes\r\nLiterally translated with notes', 'Demosthenes', '2004-11-01', 23, 'https://www.gutenberg.org/ebooks/6878', 'en', 9255), +(37376, 'Fortunes and Dreams\r\nA practical manual of fortune telling, divination and the interpretation of dreams, signs and omens', 'Cielo, Astra', '2017-05-24', 16, 'https://www.gutenberg.org/ebooks/54774', 'en', 5750), +(37377, 'The Gods of Mars', 'Burroughs, Edgar Rice', '1993-05-01', 692, 'https://www.gutenberg.org/ebooks/64', 'en', 613), +(37378, 'Gas and Oil Engines, Simply Explained\nAn Elementary Instruction Book for Amateurs and Engine Attendants', 'Runciman, Walter C.', '2008-11-17', 25, 'https://www.gutenberg.org/ebooks/27286', 'en', 7094), +(37379, 'The Vote That Made the President', 'Field, David Dudley', '2009-10-11', 12, 'https://www.gutenberg.org/ebooks/30231', 'en', 6286), +(37380, 'True Stories of the Great War, Volume 6 (of 6)\r\nTales of Adventure--Heroic Deeds--Exploits Told by the Soldiers, Officers, Nurses, Diplomats, Eye Witnesses', NULL, '2016-02-13', 8, 'https://www.gutenberg.org/ebooks/51206', 'en', 449), +(37381, 'The Adventures of Tom Sawyer, Part 4.', 'Twain, Mark', '2004-06-29', 7, 'https://www.gutenberg.org/ebooks/7196', 'en', 5479), +(37382, 'Tri unuaktaj komedioj', 'Williams, T.', '2011-04-01', 13, 'https://www.gutenberg.org/ebooks/35743', 'eo', 402), +(37383, 'Quill\'s Window', 'McCutcheon, George Barr', '2004-07-01', 78, 'https://www.gutenberg.org/ebooks/6044', 'en', 847), +(37384, 'Hoofbeats on the Turnpike', 'Wirt, Mildred A. (Mildred Augustine)', '2010-12-19', 18, 'https://www.gutenberg.org/ebooks/34691', 'en', 1842), +(37385, 'The Life of James McNeill Whistler', 'Pennell, Elizabeth Robins', '2014-11-16', 15, 'https://www.gutenberg.org/ebooks/47363', 'en', 3772), +(37386, 'Mein Weg als Deutscher und Jude', 'Wassermann, Jakob', '2005-12-29', 54, 'https://www.gutenberg.org/ebooks/17413', 'de', 13895), +(37387, 'The Beautiful and Damned', 'Fitzgerald, F. Scott (Francis Scott)', '2006-02-01', 617, 'https://www.gutenberg.org/ebooks/9830', 'en', 1660), +(37388, 'The Chemistry, Properties and Tests of Precious Stones', 'Mastin, John', '2007-11-26', 36, 'https://www.gutenberg.org/ebooks/23626', 'en', 3353), +(37389, 'Mrs. Wiggs of the Cabbage Patch', 'Rice, Alice Caldwell Hegan', '2003-08-01', 60, 'https://www.gutenberg.org/ebooks/4377', 'en', 1996), +(37390, 'The Lady of Pleasure\r\nA Comedie, as It Was Acted by Her Majesties Servants, at the Private House in Drury Lane', 'Shirley, James', '2014-03-01', 36, 'https://www.gutenberg.org/ebooks/45050', 'en', 907), +(37391, 'A Beautiful Alien', 'Magruder, Julia', '2008-07-06', 13, 'https://www.gutenberg.org/ebooks/25989', 'en', 109), +(37392, 'Ruth Fielding in the Great Northwest; Or, The Indian Girl Star of the Movies', 'Emerson, Alice B.', '2005-04-27', 24, 'https://www.gutenberg.org/ebooks/15720', 'en', 1310), +(37393, 'Venice Preserved: A Tragedy in Five Acts', 'Otway, Thomas', '2007-05-17', 91, 'https://www.gutenberg.org/ebooks/21515', 'en', 1298), +(37394, 'The Halifax Catastrophe\r\nForty views showing extent of damage in Canada\'s historic city as the result of terrific explosion on Thursday, December 6th, 1917, which killed 1200 men, women and children, injured 3000 and rendered 6000 homeless, causing property damage of nearly $50,000,000', 'Royal Print & Litho Limited', '2016-09-23', 21, 'https://www.gutenberg.org/ebooks/53135', 'en', 13905), +(37395, 'The Red Tavern', 'Macauley, C. R. (Charles Raymond)', '2013-11-14', 20, 'https://www.gutenberg.org/ebooks/44182', 'en', 10513), +(37396, 'The Great War in England in 1897', 'Le Queux, William', '2011-09-18', 51, 'https://www.gutenberg.org/ebooks/37470', 'en', 8507), +(37397, 'Le socialisme en danger', 'Domela Nieuwenhuis, Ferdinand', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11380', 'fr', 254), +(37398, 'The Tunnel: Pilgrimage, Volume 4', 'Richardson, Dorothy M. (Dorothy Miller)', '2018-01-27', 21, 'https://www.gutenberg.org/ebooks/56447', 'en', 957), +(37399, 'Barclay of the Guides', 'Strang, Herbert', '2010-04-23', 40, 'https://www.gutenberg.org/ebooks/32102', 'en', 6733), +(37400, 'Yorkshire Family Romance', 'Ross, Frederick', '2012-08-18', 11, 'https://www.gutenberg.org/ebooks/40522', 'en', 13906), +(37401, 'The Melody of Earth\nAn Anthology of Garden and Nature Poems From Present-Day Poets', NULL, '2011-12-30', 24, 'https://www.gutenberg.org/ebooks/38438', 'en', 10192), +(37402, 'A Short History of Newnham College, Cambridge', 'Gardner, Alice', '2017-01-06', 26, 'https://www.gutenberg.org/ebooks/53909', 'en', 13907), +(37403, 'The Crock of Gold', 'Stephens, James', '1999-01-01', 109, 'https://www.gutenberg.org/ebooks/1605', 'en', 13908), +(37404, 'Hidden from the Prudent\r\nThe 7th William Penn Lecture, May 8, 1921', 'Jones, Paul', '2007-12-29', 6, 'https://www.gutenberg.org/ebooks/24067', 'en', 1130), +(37405, 'My Crochet Sampler', 'Lambert, Miss (F.)', '2018-07-28', 60, 'https://www.gutenberg.org/ebooks/57595', 'en', 13909), +(37406, 'The Old Violin', NULL, '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10252', 'en', 13910), +(37407, 'Kitty Alone: A Story of Three Fires (vol. 1 of 3)', 'Baring-Gould, S. (Sabine)', '2017-03-08', 12, 'https://www.gutenberg.org/ebooks/54310', 'en', 137), +(37408, 'The Winding Stair', 'Mason, A. E. W. (Alfred Edward Woodley)', '2019-08-18', 974, 'https://www.gutenberg.org/ebooks/60125', 'en', 1219), +(37409, 'Ein Hungerkünstler', 'Kafka, Franz', '2009-12-12', 145, 'https://www.gutenberg.org/ebooks/30655', 'de', 61), +(37410, 'Anna St. Ives', 'Holcroft, Thomas', '2005-12-01', 24, 'https://www.gutenberg.org/ebooks/9468', 'en', 428), +(37411, 'The Flower of the Mind', 'Meynell, Alice', '2000-02-01', 7, 'https://www.gutenberg.org/ebooks/2080', 'en', 54), +(37412, 'Women in the Printing Trades: A Sociological Study.', NULL, '2013-03-08', 7, 'https://www.gutenberg.org/ebooks/42275', 'en', 13911), +(37413, 'Servia, Youngest Member of the European Family\r\nor, A Residence in Belgrade and Travels in the Highlands and Woodlands of the Interior, during the years 1843 and 1844.', 'Paton, A. A. (Andrew Archibald)', '2005-11-04', 17, 'https://www.gutenberg.org/ebooks/16999', 'en', 11690), +(37414, 'The Bird and Insects\' Post Office', 'Bloomfield, Robert', '2010-03-26', 10, 'https://www.gutenberg.org/ebooks/31787', 'en', 13912), +(37415, 'The Junior Classics, Volume 1: Fairy and wonder tales', NULL, '2002-04-01', 159, 'https://www.gutenberg.org/ebooks/3152', 'en', 1063), +(37416, 'Turandot, Princess of China: A Chinoiserie in Three Acts', 'Gozzi, Carlo', '2008-09-30', 32, 'https://www.gutenberg.org/ebooks/26730', 'en', 402), +(37417, 'Notes and Queries, Number 23, April 6, 1850', 'Various', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12505', 'en', 105), +(37418, 'Copyright Renewals 1960', 'Library of Congress. Copyright Office', '2016-09-04', 15, 'https://www.gutenberg.org/ebooks/6420', 'en', 4170), +(37419, 'Fighting for the Right', 'Optic, Oliver', '2006-07-10', 45, 'https://www.gutenberg.org/ebooks/18803', 'en', 491), +(37420, 'History of the Church of Jesus Christ of Latter-day Saints, Volume 3', 'Church of Jesus Christ of Latter-day Saints', '2014-12-19', 33, 'https://www.gutenberg.org/ebooks/47707', 'en', 7710), +(37421, 'Over literatuur\nCritisch en didactisch', 'Campen, M. H. Van', '2005-11-20', 6, 'https://www.gutenberg.org/ebooks/17077', 'nl', 12719), +(37422, 'Laramie Holds the Range', 'Spearman, Frank H. (Frank Hamilton)', '2007-10-29', 26, 'https://www.gutenberg.org/ebooks/23242', 'en', 315), +(37423, 'Prince or Chauffeur? A Story of Newport', 'Perry, Lawrence', '2007-08-25', 14, 'https://www.gutenberg.org/ebooks/22390', 'en', 4186), +(37424, 'The Last Voyage: To India and Australia, in the \'Sunbeam\'', 'Brassey, Annie', '2009-08-24', 29, 'https://www.gutenberg.org/ebooks/29778', 'en', 13317), +(37425, 'Breakdown', 'Kastle, Herbert D.', '2016-04-05', 25, 'https://www.gutenberg.org/ebooks/51662', 'en', 179), +(37426, 'あめりか物語', 'Nagai, Kafu', '2011-02-19', 50, 'https://www.gutenberg.org/ebooks/35327', 'ja', 13913), +(37427, 'Thet Oera Linda Bok, Naar een Handschrift uit de Dertiende Eeuw', NULL, '2009-11-13', 6, 'https://www.gutenberg.org/ebooks/30467', 'nl', 6449), +(37428, 'Chaucerian and Other Pieces\nBeing a Supplement to the Complete Works of Geoffrey Chaucer', NULL, '2013-07-11', 10, 'https://www.gutenberg.org/ebooks/43195', 'en', 13914), +(37429, 'Squire Arden; volume 2 of 3', 'Oliphant, Mrs. (Margaret)', '2017-02-06', 16, 'https://www.gutenberg.org/ebooks/54122', 'en', 376), +(37430, 'Tres Anglesos S\'esbargeixen', 'Jerome, Jerome K. (Jerome Klapka)', '2008-09-01', 32, 'https://www.gutenberg.org/ebooks/26502', 'ca', 6607), +(37431, 'Punch, or the London Charivari, Volume 99, November 22, 1890', 'Various', '2004-06-25', 1, 'https://www.gutenberg.org/ebooks/12737', 'en', 134), +(37432, 'L\'Illustration, No. 3264, 16 Septembre 1905', 'Various', '2011-04-21', 5, 'https://www.gutenberg.org/ebooks/35929', 'fr', 150), +(37433, 'Századunk magyar irodalma képekben: Széchenyi föllépésétől a kiegyezésig', 'Endrődi, Sándor', '2013-02-08', 11, 'https://www.gutenberg.org/ebooks/42047', 'hu', 13915), +(37434, 'The Divine Comedy by Dante, Illustrated, Hell, Volume 10', 'Dante Alighieri', '2004-08-07', 23, 'https://www.gutenberg.org/ebooks/8788', 'en', 1082), +(37435, 'Letters to His Son, 1766-71\r\nOn the Fine Art of Becoming a Man of the World and a Gentleman', 'Chesterfield, Philip Dormer Stanhope, Earl of', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/3360', 'en', 740), +(37436, 'Chambers\'s Edinburgh Journal, No. 428\nVolume 17, New Series, March 13, 1852', 'Various', '2005-12-06', 12, 'https://www.gutenberg.org/ebooks/17245', 'en', 18), +(37437, 'The Story of the Submarine', 'Bishop, Farnham', '2015-11-30', 25, 'https://www.gutenberg.org/ebooks/50582', 'en', 12238), +(37438, 'Clara Maynard; Or, The True and the False: A Tale of the Times', 'Kingston, William Henry Giles', '2007-10-17', 25, 'https://www.gutenberg.org/ebooks/23070', 'en', 13916), +(37439, 'The Speaker, No. 5: Volume II, Issue 1\nDecember, 1906.', 'Various', '2009-04-05', 17, 'https://www.gutenberg.org/ebooks/28498', 'en', 1725), +(37440, 'Myths and Legends of Our Own Land — Volume 07 : Along the Rocky Range', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 19, 'https://www.gutenberg.org/ebooks/6612', 'en', 725), +(37441, 'The Posthumous Papers of the Pickwick Club, v. 2 (of 2)', 'Dickens, Charles', '2014-12-04', 35, 'https://www.gutenberg.org/ebooks/47535', 'en', 45), +(37442, 'Wine, Water, and Song', 'Chesterton, G. K. (Gilbert Keith)', '2011-01-29', 53, 'https://www.gutenberg.org/ebooks/35115', 'en', 54), +(37443, 'La Sirena Negra', 'Pardo Bazán, Emilia, condesa de', '2016-03-14', 30, 'https://www.gutenberg.org/ebooks/51450', 'es', 7863), +(37444, 'Larry Dexter\'s Great Search; Or, The Hunt for the Missing Millionaire', 'Garis, Howard Roger', '2005-07-30', 30, 'https://www.gutenberg.org/ebooks/16397', 'en', 9575), +(37445, 'Punch, or the London Charivari, Volume 152, May 23, 1917', 'Various', '2005-03-31', 3, 'https://www.gutenberg.org/ebooks/15512', 'en', 134), +(37446, 'Digging for Gold: Adventures in California', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 31, 'https://www.gutenberg.org/ebooks/21727', 'en', 676), +(37447, 'Diary of Samuel Pepys — Complete 1663 N.S.', 'Pepys, Samuel', '2004-10-31', 21, 'https://www.gutenberg.org/ebooks/4145', 'en', 1231), +(37448, 'A Book About the Theater', 'Matthews, Brander', '2011-07-20', 17, 'https://www.gutenberg.org/ebooks/36790', 'en', 5475), +(37449, 'The Bungalow Boys in the Great Northwest', 'Goldfrap, John Henry', '2014-03-31', 15, 'https://www.gutenberg.org/ebooks/45262', 'en', 13917), +(37450, 'Vingt mille Lieues Sous Les Mers — Complete', 'Verne, Jules', '2004-02-01', 98, 'https://www.gutenberg.org/ebooks/5097', 'fr', 737), +(37451, 'The Esperantist, Vol. 1, No. 10', NULL, '2011-10-06', 3, 'https://www.gutenberg.org/ebooks/37642', 'eo', 3912), +(37452, 'A Birder\'s Guide to North Dakota', 'Zimmer, Kevin J.', '2016-10-18', 22, 'https://www.gutenberg.org/ebooks/53307', 'en', 13918), +(37453, 'A Struggle for Rome, v. 2', 'Dahn, Felix', '2010-05-11', 14, 'https://www.gutenberg.org/ebooks/32330', 'en', 6461), +(37454, 'Blacky the Crow', 'Burgess, Thornton W. (Thornton Waldo)', '2004-01-01', 73, 'https://www.gutenberg.org/ebooks/4979', 'en', 13586), +(37455, 'The Attic Guest: A Novel', 'Knowles, Robert E. (Robert Edward)', '2018-03-04', 14, 'https://www.gutenberg.org/ebooks/56675', 'en', 13919), +(37456, 'Mathematical Essays and Recreations', 'Schubert, Hermann', '2008-05-09', 39, 'https://www.gutenberg.org/ebooks/25387', 'en', 11515), +(37457, 'Peines, tortures et supplices', 'Anonymous', '2008-01-12', 29, 'https://www.gutenberg.org/ebooks/24255', 'fr', 4353), +(37458, 'Discourses: Biological & Geological\r\nEssays', 'Huxley, Thomas Henry', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10060', 'en', 2535), +(37459, 'A Summer\'s Outing, and The Old Man\'s Story', 'Harrison, Carter H. (Carter Henry)', '2012-09-08', 17, 'https://www.gutenberg.org/ebooks/40710', 'en', 2414), +(37460, 'Juana', 'Balzac, Honoré de', '1998-08-01', 31, 'https://www.gutenberg.org/ebooks/1437', 'en', 48), +(37461, 'The Complete Works of Josh Billings', 'Billings, Josh', '2011-06-29', 39, 'https://www.gutenberg.org/ebooks/36556', 'en', 190), +(37462, 'Maria Chapdelaine: A Tale of the Lake St. John Country', 'Hémon, Louis', '2003-08-01', 36, 'https://www.gutenberg.org/ebooks/4383', 'en', 48), +(37463, 'Shakespeare (Volume 2 of 2)\nDargestellt im Vorträgen', 'Landauer, Gustav', '2016-05-06', 8, 'https://www.gutenberg.org/ebooks/52013', 'de', 1735), +(37464, 'Women and Politics', 'Kingsley, Charles', '2007-01-23', 17, 'https://www.gutenberg.org/ebooks/20433', 'en', 13920), +(37465, 'Hobson-Jobson\r\nA Glossary of Colloquial Anglo-Indian Words and Phrases, and of Kindred Terms, Etymological, Historical, Geographical and Discursive', 'Burnell, A. C. (Arthur Coke)', '2018-12-24', 21, 'https://www.gutenberg.org/ebooks/58529', 'en', 13921), +(37466, 'And Thus He Came: A Christmas Fantasy', 'Brady, Cyrus Townsend', '2005-01-05', 29, 'https://www.gutenberg.org/ebooks/14606', 'en', 585), +(37467, 'Pictures of German Life in the XVIIIth and XIXth Centuries, Vol. I.', 'Freytag, Gustav', '2010-09-29', 34, 'https://www.gutenberg.org/ebooks/33818', 'en', 6075), +(37468, 'White Dandy; or, Master and I: A Horse\'s Story', 'Melville, Velma Caldwell', '2013-11-14', 10, 'https://www.gutenberg.org/ebooks/44176', 'en', 8308), +(37469, 'The Strand Magazine, Vol. 27, Issue 160, April, 1904', 'Various', '2011-09-20', 40, 'https://www.gutenberg.org/ebooks/37484', 'en', 4041), +(37470, 'The Long Vacation', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/5251', 'en', 2923), +(37471, 'Fun and Frolic', NULL, '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11374', 'en', 388), +(37472, 'The Thread of Flame', 'King, Basil', '2014-06-06', 13, 'https://www.gutenberg.org/ebooks/45898', 'en', 109), +(37473, 'The Pursuit of God', 'Tozer, A. W. (Aiden Wilson)', '2008-04-23', 1102, 'https://www.gutenberg.org/ebooks/25141', 'en', 13922), +(37474, 'Mostly Mary', 'Feehan, Mary Edward', '2012-11-19', 2, 'https://www.gutenberg.org/ebooks/41404', 'en', 389), +(37475, 'Moody\'s Stories: Being a Second Volume of Anecdotes, Incidents, and Illustrations', 'Moody, Dwight Lyman', '2010-06-29', 25, 'https://www.gutenberg.org/ebooks/33024', 'en', 13923), +(37476, 'The Root of Evil', 'Dixon, Thomas, Jr.', '2007-12-31', 25, 'https://www.gutenberg.org/ebooks/24093', 'en', 847), +(37477, 'Guida pei monti della Brianza e per le terre circonvicine', 'Cantù, Ignazio', '2018-07-21', 6, 'https://www.gutenberg.org/ebooks/57561', 'it', 13924), +(37478, 'Zarlah the Martian', 'Grisewood, R. Norman (Robert Norman)', '2004-09-10', 46, 'https://www.gutenberg.org/ebooks/13423', 'en', 613), +(37479, 'The Vanishing Race: The Last Great Indian Council', 'Dixon, Joseph K. (Joseph Kossuth)', '2008-12-25', 16, 'https://www.gutenberg.org/ebooks/27616', 'en', 13925), +(37480, 'The Civilisation of the Renaissance in Italy', 'Burckhardt, Jacob', '2000-02-01', 192, 'https://www.gutenberg.org/ebooks/2074', 'en', 3484), +(37481, 'In the Depths of the Dark Continent; or, The Vengeance of Van Vincent', 'Shea, Cornelius', '2013-07-29', 7, 'https://www.gutenberg.org/ebooks/43353', 'en', 1351), +(37482, 'Walt Whitman in Mickle Street', 'Keller, Elizabeth Leavitt', '2013-03-09', 15, 'https://www.gutenberg.org/ebooks/42281', 'en', 13926), +(37483, 'Home Problems from a New Standpoint', 'Hunt, Caroline Louisa', '2015-08-10', 10, 'https://www.gutenberg.org/ebooks/49669', 'en', 6150), +(37484, 'Si Klegg, Book 3\r\nSi and Shorty Meet Mr. Rosenbaum, the Spy, Who Relates His Adventures', 'McElroy, John', '2010-03-25', 33, 'https://www.gutenberg.org/ebooks/31773', 'en', 1319), +(37485, 'Cerberus, The Dog of Hades\nThe History of an Idea', 'Bloomfield, Maurice', '2006-08-25', 26, 'https://www.gutenberg.org/ebooks/19119', 'en', 13927), +(37486, 'I Canti', 'Leopardi, Giacomo', '2017-08-01', 91, 'https://www.gutenberg.org/ebooks/55236', 'it', 739), +(37487, 'More Bab Ballads', 'Gilbert, W. S. (William Schwenck)', '1997-06-01', 188, 'https://www.gutenberg.org/ebooks/933', 'en', 564), +(37488, 'An Amicable Controversy with a Jewish Rabbi, on The Messiah\'s Coming\r\nWith an Entirely New Exposition of Zechariah, on the Messiah\'s Kingdom', 'Park, John Ranicar', '2010-11-03', 9, 'https://www.gutenberg.org/ebooks/34201', 'en', 13928), +(37489, 'Antiquities of the Jews', 'Josephus, Flavius', '2001-10-01', 832, 'https://www.gutenberg.org/ebooks/2848', 'en', 12752), +(37490, 'A British Rifle Man\nThe Journals and Correspondence of Major George Simmons, Rifle Brigade, During the Peninsular War and the Campaign of Waterloo', 'Simmons, George', '2015-12-22', 21, 'https://www.gutenberg.org/ebooks/50744', 'en', 2488), +(37491, 'Adventures of a Sixpence in Guernsey by A Native', 'Anonymous', '2005-11-17', 16, 'https://www.gutenberg.org/ebooks/17083', 'en', 179), +(37492, 'The Philosophy of the Moral Feelings', 'Abercrombie, John', '2007-08-21', 61, 'https://www.gutenberg.org/ebooks/22364', 'en', 680), +(37493, 'The Continental Monthly, Vol. 1, No. 6, June, 1862\r\nDevoted To Literature and National Policy', 'Various', '2005-06-29', 11, 'https://www.gutenberg.org/ebooks/16151', 'en', 558), +(37494, 'The Brownie Scouts at Silver Beach', 'Wirt, Mildred A. (Mildred Augustine)', '2016-04-08', 11, 'https://www.gutenberg.org/ebooks/51696', 'en', 82), +(37495, 'Sheppard Lee, Written by Himself. Vol. 1 (of 2)', 'Bird, Robert Montgomery', '2014-08-19', 25, 'https://www.gutenberg.org/ebooks/46621', 'en', 50), +(37496, 'At the Sign of the Barber\'s Pole: Studies In Hirsute History', 'Andrews, William', '2006-11-27', 20, 'https://www.gutenberg.org/ebooks/19925', 'en', 13929), +(37497, 'The Huge Hunter; Or, The Steam Man of the Prairies', 'Ellis, Edward Sylvester', '2005-02-01', 57, 'https://www.gutenberg.org/ebooks/7506', 'en', 831), +(37498, 'All\'s Well That Ends Well', 'Shakespeare, William', '2000-07-01', 28, 'https://www.gutenberg.org/ebooks/2246', 'en', 907), +(37499, 'Lion Loose', 'Schmitz, James H.', '2009-11-17', 84, 'https://www.gutenberg.org/ebooks/30493', 'en', 26), +(37500, 'Jeri: Erään koiran seikkailuja Etelämerellä', 'London, Jack', '2013-07-08', 9, 'https://www.gutenberg.org/ebooks/43161', 'fi', 13930), +(37501, 'Humanitarian Philosophy, 4th Edition', 'Kusel, Emil Edward', '2015-03-26', 13, 'https://www.gutenberg.org/ebooks/48589', 'en', 13931), +(37502, 'Studies in the Psychology of Sex, Volume 2\r\nSexual Inversion', 'Ellis, Havelock', '2004-10-08', 165, 'https://www.gutenberg.org/ebooks/13611', 'en', 3052), +(37503, 'Cautionary Tales for Children', 'Belloc, Hilaire', '2008-12-05', 307, 'https://www.gutenberg.org/ebooks/27424', 'en', 4299), +(37504, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 18, August 21, 1858', NULL, '2017-06-29', 6, 'https://www.gutenberg.org/ebooks/55004', 'en', 1741), +(37505, 'The White Mr. Longfellow (from Literary Friends and Acquaintance)', 'Howells, William Dean', '2004-10-22', 30, 'https://www.gutenberg.org/ebooks/3394', 'en', 131), +(37506, 'Fígaro (Artículos selectos)', 'Larra, Mariano José de', '2010-03-07', 30, 'https://www.gutenberg.org/ebooks/31541', 'es', 13932), +(37507, 'Herodotoksen historia-teos III-VI', 'Herodotus', '2015-11-29', 20, 'https://www.gutenberg.org/ebooks/50576', 'fi', 5663), +(37508, 'Lady Audley\'s Secret', 'Braddon, M. E. (Mary Elizabeth)', '2007-10-01', 29, 'https://www.gutenberg.org/ebooks/23084', 'en', 95), +(37509, 'Häät', 'Leffler, Anne Charlotte', '2010-10-04', 7, 'https://www.gutenberg.org/ebooks/34033', 'fi', 179), +(37510, 'Special Days and Their Observance\r\nSeptember 1919', 'Anonymous', '2014-07-25', 10, 'https://www.gutenberg.org/ebooks/46413', 'en', 13933), +(37511, 'Signers of the Declaration\r\nHistoric Places Commemorating the Signing of the Declaration of Independence', NULL, '2017-10-28', 25, 'https://www.gutenberg.org/ebooks/55838', 'en', 7515), +(37512, 'Paul Clifford — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7734', 'en', 356), +(37513, 'The Boy with the U. S. Weather Men', 'Rolt-Wheeler, Francis', '2007-07-26', 22, 'https://www.gutenberg.org/ebooks/22156', 'en', 13934), +(37514, 'The New York Times Current History of the European War, Vol 1, Issue 4, January 23, 1915', 'Various', '2005-07-27', 8, 'https://www.gutenberg.org/ebooks/16363', 'en', 335), +(37515, 'Versöhnung, Gesänge und Psalmen', 'Schürer, Oskar', '2016-06-02', 8, 'https://www.gutenberg.org/ebooks/52221', 'de', 4162), +(37516, 'In the Track of the Bookworm', 'Browne, Irving', '2011-07-17', 6, 'https://www.gutenberg.org/ebooks/36764', 'en', 1705), +(37517, 'Carlo Darwin', 'Lessona, Michele', '2014-04-01', 11, 'https://www.gutenberg.org/ebooks/45296', 'it', 5315), +(37518, 'Blackwood\'s Edinburgh Magazine, Vol. 65, No. 400, February, 1849', 'Various', '2013-12-04', 9, 'https://www.gutenberg.org/ebooks/44344', 'en', 711), +(37519, 'The Iphigenia in Tauris of Euripides', 'Euripides', '2004-02-01', 61, 'https://www.gutenberg.org/ebooks/5063', 'en', 4626), +(37520, 'Chamber Music', 'Joyce, James', '2007-01-20', 9, 'https://www.gutenberg.org/ebooks/20601', 'en', 1830), +(37521, 'Kertomuksia', 'Zola, Émile', '2004-12-23', 18, 'https://www.gutenberg.org/ebooks/14434', 'fi', 1850), +(37522, 'Ravenshoe', 'Kingsley, Henry', '2012-12-16', 14, 'https://www.gutenberg.org/ebooks/41636', 'en', 3319), +(37523, 'Kora in Hell: Improvisations', 'Williams, William Carlos', '2018-03-04', 48, 'https://www.gutenberg.org/ebooks/56681', 'en', 4723), +(37524, 'The Expedition of the Donner Party and its Tragic Fate', 'Houghton, Eliza Poor Donner', '2004-02-01', 63, 'https://www.gutenberg.org/ebooks/11146', 'en', 13935), +(37525, 'Woodward\'s Graperies and Horticultural Buildings', 'Woodward, George E. (George Evertson)', '2008-05-07', 25, 'https://www.gutenberg.org/ebooks/25373', 'en', 8545), +(37526, 'A Soldier of Virginia: A Tale of Colonel Washington and Braddock\'s Defeat', 'Stevenson, Burton Egbert', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10094', 'en', 13936), +(37527, 'The Flower-Fields of Alpine Switzerland: An Appreciation and a Plea', 'Flemwell, G. (George)', '2018-08-23', 14, 'https://www.gutenberg.org/ebooks/57753', 'en', 3982), +(37528, 'Diary And Notes Of Horace Templeton, Esq. Volume I (of II)', 'Lever, Charles James', '2010-07-21', 14, 'https://www.gutenberg.org/ebooks/33216', 'en', 12522), +(37529, 'A Handbook of the Cornish Language\nchiefly in its latest stages with some account of its history and literature', 'Jenner, Henry', '2008-08-04', 185, 'https://www.gutenberg.org/ebooks/26192', 'en', 13937), +(37530, 'The Irish Penny Journal, Vol. 1 No. 49, June 5, 1841', 'Various', '2017-08-30', 4, 'https://www.gutenberg.org/ebooks/55460', 'en', 81), +(37531, 'The Bible, Douay-Rheims, Book 18: Judith\nThe Challoner Revision', NULL, '2005-06-01', 10, 'https://www.gutenberg.org/ebooks/8318', 'en', 13938), +(37532, 'The Life and Work of Susan B. Anthony (Volume 2 of 2)\r\nIncluding Public Addresses, Her Own Letters and Many From Her Contemporaries During Fifty Years', 'Harper, Ida Husted', '2010-01-30', 31, 'https://www.gutenberg.org/ebooks/31125', 'en', 2700), +(37533, 'The Home Book of Verse — Volume 4', 'Stevenson, Burton Egbert', '2001-05-01', 15, 'https://www.gutenberg.org/ebooks/2622', 'en', 178), +(37534, 'A Century of Christian Service: Kensington Congregational Church, 1793-1893', 'Horne, C. Silvester (Charles Silvester)', '2013-08-19', 11, 'https://www.gutenberg.org/ebooks/43505', 'en', 13939), +(37535, 'The Story of Yvashka with the Bear\'s Ear', 'Borrow, George', '2009-05-16', 12, 'https://www.gutenberg.org/ebooks/28834', 'en', 10174), +(37536, 'James Pethel', 'Beerbohm, Max, Sir', '1996-12-01', 22, 'https://www.gutenberg.org/ebooks/759', 'en', 179), +(37537, 'The Gibson Upright', 'Wilson, Harry Leon', '2004-08-25', 40, 'https://www.gutenberg.org/ebooks/13275', 'en', 13940), +(37538, 'Le Projet Gutenberg (1971-2005)', 'Lebert, Marie', '2008-10-26', 11, 'https://www.gutenberg.org/ebooks/27040', 'fr', 340), +(37539, 'Natural Gemstones', 'Geological Survey (U.S.)', '2015-01-16', 49, 'https://www.gutenberg.org/ebooks/47999', 'en', 13941), +(37540, 'The Judgment Books: A Story', 'Benson, E. F. (Edward Frederic)', '2014-06-23', 15, 'https://www.gutenberg.org/ebooks/46077', 'en', 1463), +(37541, 'Päivän valaisemia pilven hattaroita', 'Elster, Kristian', '2011-03-16', 18, 'https://www.gutenberg.org/ebooks/35585', 'fi', 61), +(37542, 'How to Prepare and Serve a Meal; and Interior Decoration', 'Lansdown, Lillian B.', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7350', 'en', 10843), +(37543, 'Mary Louise and Josie O\'Gorman', 'Sampson, Emma Speed', '2007-09-07', 16, 'https://www.gutenberg.org/ebooks/22532', 'en', 61), +(37544, 'Florida Salads', 'Harris, Frances Barber', '2015-08-28', 25, 'https://www.gutenberg.org/ebooks/49803', 'en', 6493), +(37545, 'Punch, or the London Charivari, Volume 159, August 18th, 1920', 'Various', '2005-09-17', 10, 'https://www.gutenberg.org/ebooks/16707', 'en', 134), +(37546, 'Blooms of the Berry', 'Cawein, Madison Julius', '2010-04-08', 5, 'https://www.gutenberg.org/ebooks/31919', 'en', 350), +(37547, 'Nyårsafton', 'Falkman, Charlotta', '2015-10-01', 20, 'https://www.gutenberg.org/ebooks/50112', 'sv', 61), +(37548, 'Under the Southern Cross', 'Robins, Elizabeth', '2009-02-05', 38, 'https://www.gutenberg.org/ebooks/28008', 'en', 500), +(37549, 'The Phase Rule and Its Applications', 'Findlay, Alexander', '2010-11-27', 40, 'https://www.gutenberg.org/ebooks/34457', 'en', 13942), +(37550, 'The World for Sale, Volume 2.', 'Parker, Gilbert', '2004-08-01', 13, 'https://www.gutenberg.org/ebooks/6282', 'en', 48), +(37551, 'Packing and Portaging', 'Wallace, Dillon', '2014-01-20', 17, 'https://www.gutenberg.org/ebooks/44720', 'en', 13943), +(37552, 'The Recreations of a Country Parson', 'Boyd, Andrew Kennedy Hutchison', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5407', 'en', 13944), +(37553, 'Anne of the Island', 'Montgomery, L. M. (Lucy Maud)', '2007-01-05', 5, 'https://www.gutenberg.org/ebooks/20265', 'en', 13945), +(37554, 'The Dyer\'s Guide\r\nBeing a compendium of the art of dyeing linen, cotton, silk, wool, muslin, dresses, furniture, &c. &c.; with the method of scouring wool, bleaching cotton, &c., and directions for ungumming silk, and for whitening and sulphuring silk and wool; and also an introductory epitome of the leading facts in chemistry, as connected with the art of dyeing', 'Packer, Thomas', '2016-12-23', 27, 'https://www.gutenberg.org/ebooks/53797', 'en', 7970), +(37555, 'Daniel Hjort: Sorgespel i fem akter med fyra tablåer', 'Wecksell, J. J. (Josef Julius)', '2004-11-15', 35, 'https://www.gutenberg.org/ebooks/14050', 'sv', 13946), +(37556, 'Marion Arleigh\'s Penance\nEveryday Life Library No. 5', 'Brame, Charlotte M.', '2005-02-26', 6, 'https://www.gutenberg.org/ebooks/15182', 'en', 61), +(37557, 'Compulsory Vaccination\r\nReport of a Public Meeting, held in the Marylebone Vestry Hall, London, on Wednesday evening, October 19, 1870.', 'Marylebone Anti-Compulsory Vaccination League', '2016-07-25', 21, 'https://www.gutenberg.org/ebooks/52645', 'en', 2084), +(37558, 'Διηγήματα, Νέα Σειρά', 'Axiotes, Pan. (Panagiotes)', '2011-06-02', 12, 'https://www.gutenberg.org/ebooks/36300', 'el', 13947), +(37559, 'Bowling Catalog E', 'Narragansett Machine Company', '2018-06-16', 10, 'https://www.gutenberg.org/ebooks/57337', 'en', 13948), +(37560, 'The School System of Norway', 'Anderson, David Allen', '2012-07-31', 22, 'https://www.gutenberg.org/ebooks/40380', 'en', 13949), +(37561, 'The Essential Faith of the Universal Church; Deduced from the Sacred Records', 'Martineau, Harriet', '2010-09-08', 17, 'https://www.gutenberg.org/ebooks/33672', 'en', 13950), +(37562, 'The Siege of Mafeking (1900)', 'Hamilton, A. (Angus)', '2012-04-02', 29, 'https://www.gutenberg.org/ebooks/39348', 'en', 13951), +(37563, 'The Assault: Germany Before the Outbreak and England in War-Time', 'Wile, Frederic William', '2012-10-31', 99, 'https://www.gutenberg.org/ebooks/41252', 'en', 335), +(37564, 'Deadly Pollen', 'Oliver, Stephen', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11522', 'en', 8), +(37565, 'The History of the Decline and Fall of the Roman Empire\r\nTable of Contents with links in the HTML file to the two Project Gutenberg editions (12 volumes)', 'Gibbon, Edward', '2008-06-07', 1509, 'https://www.gutenberg.org/ebooks/25717', 'en', 198), +(37566, 'Pocket Island: A Story of Country Life in New England', 'Munn, Charles Clark', '2006-12-08', 7, 'https://www.gutenberg.org/ebooks/20057', 'en', 13), +(37567, 'Vagaries', 'Munthe, Axel', '2012-02-15', 23, 'https://www.gutenberg.org/ebooks/38894', 'en', 20), +(37568, 'The Shadow of a Crime: A Cumbrian Romance', 'Caine, Hall, Sir', '2004-12-06', 12, 'https://www.gutenberg.org/ebooks/14262', 'en', 13952), +(37569, 'Abel Sánchez: Una Historia de Pasión', 'Unamuno, Miguel de', '2013-12-25', 52, 'https://www.gutenberg.org/ebooks/44512', 'es', 13953), +(37570, 'The Fall River Tragedy: A History of the Borden Murders', 'Porter, Edwin H.', '2018-09-22', 34, 'https://www.gutenberg.org/ebooks/57939', 'en', 13954), +(37571, 'String Quartet No. 3 in G Major, K. 156', 'Mozart, Wolfgang Amadeus', '2004-05-01', 8, 'https://www.gutenberg.org/ebooks/5635', 'en', 909), +(37572, 'The Parent\'s Assistant; Or, Stories for Children', 'Edgeworth, Maria', '2011-05-17', 23, 'https://www.gutenberg.org/ebooks/36132', 'en', 388), +(37573, 'Licht- en schaduwbeelden uit de Binnenlanden van Java', 'Junghuhn, Franz Wilhelm', '2016-07-02', 11, 'https://www.gutenberg.org/ebooks/52477', 'nl', 7465), +(37574, 'Trees: A Woodland Notebook\r\nContaining Observations on Certain British and Exotic Trees', 'Maxwell, Herbert, Sir', '2012-06-08', 17, 'https://www.gutenberg.org/ebooks/39946', 'en', 7267); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(37575, 'Woyzeck', 'Büchner, Georg', '2007-04-26', 11, 'https://www.gutenberg.org/ebooks/21185', 'de', 13955), +(37576, 'Ceres\' Runaway, and Other Essays', 'Meynell, Alice', '1998-04-01', 13, 'https://www.gutenberg.org/ebooks/1295', 'en', 472), +(37577, 'L\'Illustration, No. 3230, 21 Janvier 1905', 'Various', '2010-08-15', 4, 'https://www.gutenberg.org/ebooks/33440', 'fr', 150), +(37578, 'Great Smoky Mountains National Park, North Carolina and Tennessee', 'United States. National Park Service', '2019-02-27', 14, 'https://www.gutenberg.org/ebooks/58971', 'en', 13956), +(37579, 'Scipion unennäkö', 'Cicero, Marcus Tullius', '2018-05-06', 1, 'https://www.gutenberg.org/ebooks/57105', 'fi', 13957), +(37580, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 375, June 13, 1829', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11710', 'en', 133), +(37581, 'The Works of Edgar Allan Poe, The Raven Edition\nTable Of Contents And Index Of The Five Volumes', 'Poe, Edgar Allan', '2008-05-19', 290, 'https://www.gutenberg.org/ebooks/25525', 'en', 50), +(37582, 'Let There Be Light', 'Fyfe, H. B. (Horace Bowne)', '2010-05-30', 50, 'https://www.gutenberg.org/ebooks/32592', 'en', 5886), +(37583, 'Minnebrieven; Over Vrijen-Arbeid in Nederlandsch Indië; Indrukken van den dag', 'Multatuli', '2012-10-14', 8, 'https://www.gutenberg.org/ebooks/41060', 'nl', 5388), +(37584, 'The Campaign of the Jungle; Or, Under Lawton through Luzon', 'Stratemeyer, Edward', '2010-02-18', 16, 'https://www.gutenberg.org/ebooks/31317', 'en', 13958), +(37585, 'A Colonial Reformer, Vol. 2 (of 3)', 'Boldrewood, Rolf', '2017-09-30', 8, 'https://www.gutenberg.org/ebooks/55652', 'en', 13959), +(37586, 'The Mystery of Metropolisville', 'Eggleston, Edward', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/12195', 'en', 128), +(37587, 'Daniel Webster', 'Lodge, Henry Cabot', '2004-07-29', 14, 'https://www.gutenberg.org/ebooks/13047', 'en', 13960), +(37588, 'Santa Claus\' Daughter: A Musical Christmas Burlesque in Two Acts', 'Elliott, Everett', '2017-05-24', 11, 'https://www.gutenberg.org/ebooks/54780', 'en', 3459), +(37589, 'The Son of Tarzan', 'Burroughs, Edgar Rice', '1993-11-01', 576, 'https://www.gutenberg.org/ebooks/90', 'en', 580), +(37590, 'Roy Blakeley\'s Camp on Wheels', 'Fitzhugh, Percy Keese', '2008-11-15', 19, 'https://www.gutenberg.org/ebooks/27272', 'en', 2994), +(37591, 'Wilhelm Meisters Wanderjahre — Band 2', 'Goethe, Johann Wolfgang von', '2000-11-01', 56, 'https://www.gutenberg.org/ebooks/2410', 'de', 16), +(37592, 'A Middle English Vocabulary, Designed for use with Sisam\'s Fourteenth Century Verse & Prose', 'Tolkien, J. R. R. (John Ronald Reuel)', '2013-09-15', 148, 'https://www.gutenberg.org/ebooks/43737', 'en', 13961), +(37593, 'Brittany & Its Byways', 'Palliser, Bury, Mrs.', '2007-09-21', 14, 'https://www.gutenberg.org/ebooks/22700', 'en', 2281), +(37594, 'Bulemanns Haus', 'Storm, Theodor', '2005-09-01', 27, 'https://www.gutenberg.org/ebooks/8916', 'de', 906), +(37595, 'Myth and Romance: Being a Book of Verses', 'Cawein, Madison Julius', '2005-08-16', 3, 'https://www.gutenberg.org/ebooks/16535', 'en', 8), +(37596, 'L\'Illustration, No. 0061, 27 Avril 1844', 'Various', '2014-07-10', 13, 'https://www.gutenberg.org/ebooks/46245', 'fr', 150), +(37597, 'The Prince and the Pauper, Part 9.', 'Twain, Mark', '2004-07-04', 17, 'https://www.gutenberg.org/ebooks/7162', 'en', 905), +(37598, 'Christmas Penny Readings: Original Sketches for the Season', 'Fenn, George Manville', '2010-12-15', 16, 'https://www.gutenberg.org/ebooks/34665', 'en', 61), +(37599, 'Zion National Park, Bryce Canyon, Cedar Breaks, Kaibab Forest, North Rim of Grand Canyon', 'Union Pacific Railroad Company', '2014-11-19', 25, 'https://www.gutenberg.org/ebooks/47397', 'en', 13962), +(37600, 'Secret Mission to Alaska\nSandy Steele Adventures #5', 'Leckie, Robert', '2015-10-26', 20, 'https://www.gutenberg.org/ebooks/50320', 'en', 1586), +(37601, 'The Gift of the Magi', 'Henry, O.', '2007-08-01', 37, 'https://www.gutenberg.org/ebooks/22440', 'en', 13963), +(37602, 'Sämtliche Werke 9: Novellen aus Österreich III', 'Saar, Ferdinand von', '2015-09-15', 12, 'https://www.gutenberg.org/ebooks/49971', 'de', 6952), +(37603, 'Tommy Atkins at War: As Told in His Own Letters', 'Kilpatrick, James Alexander', '2005-09-08', 20, 'https://www.gutenberg.org/ebooks/16675', 'en', 5635), +(37604, 'The Story of the Atlantic Cable', 'Bright, Charles, Sir', '2014-06-26', 15, 'https://www.gutenberg.org/ebooks/46105', 'en', 2608), +(37605, 'Fra Bartolommeo', 'Scott, Leader', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7222', 'en', 13964), +(37606, 'Shelley at Oxford', 'Hogg, Thomas Jefferson', '2010-12-01', 10, 'https://www.gutenberg.org/ebooks/34525', 'en', 13965), +(37607, 'Under the Hill, and Other Essays in Prose and Verse', 'Beardsley, Aubrey', '2015-09-26', 47, 'https://www.gutenberg.org/ebooks/50060', 'en', 11953), +(37608, 'Breakaway', 'Gimble, Stanley', '2007-11-22', 57, 'https://www.gutenberg.org/ebooks/23592', 'en', 26), +(37609, 'A Romance of the West Indies', 'Sue, Eugène', '2009-09-02', 14, 'https://www.gutenberg.org/ebooks/29894', 'en', 2480), +(37610, 'The Wishing Moon', 'Dutton, Louise Elizabeth', '2010-01-23', 28, 'https://www.gutenberg.org/ebooks/31057', 'en', 262), +(37611, 'Mr. Crewe\'s Career — Volume 2', 'Churchill, Winston', '2004-10-16', 10, 'https://www.gutenberg.org/ebooks/3682', 'en', 2815), +(37612, 'Die Welt in hundert Jahren', NULL, '2014-09-23', 20, 'https://www.gutenberg.org/ebooks/46939', 'de', 5720), +(37613, 'Oxford Water-Colours', 'Fulleylove, John', '2017-09-08', 27, 'https://www.gutenberg.org/ebooks/55512', 'en', 13966), +(37614, 'Scattergood Baines', 'Kelland, Clarence Budington', '2004-08-27', 21, 'https://www.gutenberg.org/ebooks/13307', 'en', 539), +(37615, 'Histoire du Canada depuis sa découverte jusqu\'à nos jours. Tome II', 'Garneau, F.-X. (François-Xavier)', '2008-11-02', 29, 'https://www.gutenberg.org/ebooks/27132', 'fr', 2163), +(37616, 'London Lyrics', 'Locker-Lampson, Frederick', '2009-10-05', 24, 'https://www.gutenberg.org/ebooks/30185', 'en', 13967), +(37617, 'Joan of Naples\r\nCelebrated Crimes', 'Dumas, Alexandre', '2006-02-28', 23, 'https://www.gutenberg.org/ebooks/2750', 'en', 5050), +(37618, 'Bell\'s Cathedrals: The Cathedral Church of Lincoln\nA History and Description of its Fabric and a List of the Bishops', 'Kendrick, A. F. (Albert Frank)', '2013-08-15', 5, 'https://www.gutenberg.org/ebooks/43477', 'en', 13968), +(37619, 'Gulliver\'s Travels', 'Swift, Jonathan', '2009-05-01', 138, 'https://www.gutenberg.org/ebooks/28946', 'en', 270), +(37620, 'The Modern Woman\'s Rights Movement: A Historical Survey', 'Schirmacher, Käthe', '2010-09-10', 15, 'https://www.gutenberg.org/ebooks/33700', 'en', 5066), +(37621, 'Een nest menschen', 'Groeningen, August P. van', '2018-05-31', 6, 'https://www.gutenberg.org/ebooks/57245', 'nl', 319), +(37622, 'For Luncheon and Supper Guests', 'Bradley, Alice', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/10582', 'en', 5016), +(37623, 'Fort comme la mort', 'Maupassant, Guy de', '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/11450', 'fr', 13969), +(37624, 'Birds of Britain', 'Bonhote, J. Lewis (John Lewis)', '2018-01-19', 17, 'https://www.gutenberg.org/ebooks/56397', 'en', 9356), +(37625, 'Popular Adventure Tales', 'Reid, Mayne', '2008-06-01', 43, 'https://www.gutenberg.org/ebooks/25665', 'en', 323), +(37626, 'Severins Gang in die Finsternis: Ein Prager Gespensterroman', 'Leppin, Paul', '2012-11-08', 18, 'https://www.gutenberg.org/ebooks/41320', 'de', 531), +(37627, 'A Treatise on Staff Making and Pivoting\r\nContaining Complete Directions for Making and Fitting New Staffs from the Raw Material', 'Hall, Eugene Edward', '2007-01-08', 38, 'https://www.gutenberg.org/ebooks/20317', 'en', 13970), +(37628, 'Punch, or the London Charivari, Volume 101, December 5, 1891', 'Various', '2004-11-22', 14, 'https://www.gutenberg.org/ebooks/14122', 'en', 134), +(37629, 'Harper\'s Young People, January 11, 1881\nAn Illustrated Monthly', 'Various', '2014-01-13', 5, 'https://www.gutenberg.org/ebooks/44652', 'en', 479), +(37630, 'A Word, Only a Word — Volume 04', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5575', 'en', 1167), +(37631, 'Some Objections To Socialism\nFrom \"The Atheistic Platform\", Twelve Lectures', 'Bradlaugh, Charles', '2011-05-29', 22, 'https://www.gutenberg.org/ebooks/36272', 'en', 13971), +(37632, 'Beaumont and Fletcher\'s Works, Vol. 05 of 10', 'Beaumont, Francis', '2014-05-27', 12, 'https://www.gutenberg.org/ebooks/45780', 'en', 1088), +(37633, 'Muistelmia matkalta Venäjän Karjalassa kesällä 1879', 'Ervasti, A. V. (August Vilhelm)', '2016-08-06', 3, 'https://www.gutenberg.org/ebooks/52737', 'fi', 13972), +(37634, 'The Story of Cole Younger, by Himself', 'Younger, Cole', '2008-02-12', 45, 'https://www.gutenberg.org/ebooks/24585', 'en', 13973), +(37635, 'The Old and the New Magic', 'Evans, Henry Ridgely', '2018-05-01', 52, 'https://www.gutenberg.org/ebooks/57077', 'en', 3590), +(37636, 'The Status Civilization', 'Sheckley, Robert', '2007-03-28', 101, 'https://www.gutenberg.org/ebooks/20919', 'en', 26), +(37637, 'The Camp Fire Girls Behind the Lines', 'Vandercook, Margaret', '2010-08-26', 11, 'https://www.gutenberg.org/ebooks/33532', 'en', 622), +(37638, 'The Witch-Maid, & Other Verses', 'Mackellar, Dorothea', '2019-02-01', 10, 'https://www.gutenberg.org/ebooks/58803', 'en', 2474), +(37639, 'De kleine vossen', 'Stowe, Harriet Beecher', '2012-02-28', 10, 'https://www.gutenberg.org/ebooks/39008', 'nl', 740), +(37640, 'Histoire de la Littérature Anglaise (Volume 4 de 5)', 'Taine, Hippolyte', '2012-10-19', 11, 'https://www.gutenberg.org/ebooks/41112', 'fr', 1694), +(37641, 'Scientific American Supplement, No. 598, June 18, 1887', 'Various', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11662', 'en', 210), +(37642, 'Manhood of Humanity.', 'Korzybski, Alfred', '2008-05-13', 78, 'https://www.gutenberg.org/ebooks/25457', 'en', 7427), +(37643, 'Carleton\'s Condensed Classical Dictionary', NULL, '2013-12-18', 28, 'https://www.gutenberg.org/ebooks/44460', 'en', 11407), +(37644, 'Do and Dare — a Brave Boy\'s Fight for Fortune', 'Alger, Horatio, Jr.', '2004-05-01', 64, 'https://www.gutenberg.org/ebooks/5747', 'en', 3334), +(37645, 'Obras Completas de Luis de Camões, Tomo III', 'Camões, Luís de', '2011-08-24', 88, 'https://www.gutenberg.org/ebooks/37192', 'pt', 3425), +(37646, 'A Preface to Politics', 'Lippmann, Walter', '2006-12-16', 100, 'https://www.gutenberg.org/ebooks/20125', 'en', 1720), +(37647, 'Le Livre des Mères et des Enfants, Tome II', 'Desbordes-Valmore, Marceline', '2004-12-09', 12, 'https://www.gutenberg.org/ebooks/14310', 'fr', 13974), +(37648, 'Daughters of Belgravia; vol. 2 of 3', 'Fraser, Alexander, Mrs.', '2016-07-05', 6, 'https://www.gutenberg.org/ebooks/52505', 'en', 61), +(37649, 'After the Divorce: A Romance', 'Deledda, Grazia', '2012-05-28', 30, 'https://www.gutenberg.org/ebooks/39834', 'en', 16), +(37650, 'Notes to the Complete Poetical Works of Percy Bysshe Shelley', 'Shelley, Mary Wollstonecraft', '2003-11-01', 40, 'https://www.gutenberg.org/ebooks/4695', 'en', 6692), +(37651, 'Jack Chanty: A Story of Athabasca', 'Footner, Hulbert', '2018-04-18', 16, 'https://www.gutenberg.org/ebooks/56999', 'en', 10932), +(37652, 'George Sand', 'McCarthy, Justin', '2011-05-05', 6, 'https://www.gutenberg.org/ebooks/36040', 'en', 1285), +(37653, 'The Gospel of St. John', 'MacRory, Joseph', '2014-07-19', 14, 'https://www.gutenberg.org/ebooks/46337', 'en', 13786), +(37654, 'Graded Lessons in English\r\nAn Elementary English Grammar Consisting of One Hundred Practical Lessons, Carefully Graded and Adapted to the Class-Room', 'Kellogg, Brainerd', '2004-12-01', 219, 'https://www.gutenberg.org/ebooks/7010', 'en', 1979), +(37655, 'Punch, or the London Charivari, Vol. 150, January 12, 1916', 'Various', '2007-09-19', 19, 'https://www.gutenberg.org/ebooks/22672', 'en', 134), +(37656, 'Time In the Round', 'Leiber, Fritz', '2016-03-06', 57, 'https://www.gutenberg.org/ebooks/51380', 'en', 3210), +(37657, 'The Clarion', 'Adams, Samuel Hopkins', '2005-08-05', 33, 'https://www.gutenberg.org/ebooks/16447', 'en', 13975), +(37658, 'Mémoires secrets de Fournier l\'Américain', 'Fournier, Claude', '2005-09-01', 21, 'https://www.gutenberg.org/ebooks/8864', 'fr', 5208), +(37659, 'Narrative of the Most Remarkable Events Which Occurred in and near Leipzig Immediately Before, During, and Subsequent to, the Sanguinary Series of Engagements Between the Allied Armies of the French, from the 14th to the 19th October, 1813', 'Shoberl, Frederic', '2006-01-24', 23, 'https://www.gutenberg.org/ebooks/17595', 'en', 13976), +(37660, 'Eine Gemsjagd in Tyrol', 'Gerstäcker, Friedrich', '2015-10-19', 19, 'https://www.gutenberg.org/ebooks/50252', 'de', 13977), +(37661, 'Inscripções portuguezas', 'Cordeiro, Luciano', '2009-03-17', 8, 'https://www.gutenberg.org/ebooks/28348', 'pt', 13978), +(37662, 'The Indiscretion of the Duchess\r\nBeing a Story Concerning Two Ladies, a Nobleman, and a Necklace', 'Hope, Anthony', '2004-10-31', 23, 'https://www.gutenberg.org/ebooks/13909', 'en', 724), +(37663, 'Die Verwirrungen des Zöglings Törleß', 'Musil, Robert', '2010-12-21', 74, 'https://www.gutenberg.org/ebooks/34717', 'de', 6101), +(37664, 'The Wolf Hunters: A Story of the Buffalo Plains', 'Peck, Robert Morris', '2017-10-09', 13, 'https://www.gutenberg.org/ebooks/55720', 'en', 13979), +(37665, 'The Worn Doorstep', 'Sherwood, Margaret Pollock', '2013-05-24', 15, 'https://www.gutenberg.org/ebooks/42797', 'en', 843), +(37666, 'Aunt Hannah and Seth', 'Otis, James', '2010-02-13', 29, 'https://www.gutenberg.org/ebooks/31265', 'en', 766), +(37667, 'The Bible, King James version, Book 58: Hebrews', 'Anonymous', '2005-04-01', 27, 'https://www.gutenberg.org/ebooks/8058', 'en', 11154), +(37668, 'The Clouds', 'Aristophanes', '2001-03-01', 195, 'https://www.gutenberg.org/ebooks/2562', 'en', 13980), +(37669, 'A Present for Infants; or, Pictures for the Nursery', 'Anonymous', '2013-09-05', 8, 'https://www.gutenberg.org/ebooks/43645', 'en', 859), +(37670, 'The Magic of Oz', 'Baum, L. Frank (Lyman Frank)', '1996-02-01', 371, 'https://www.gutenberg.org/ebooks/419', 'en', 174), +(37671, 'Pardners', 'Beach, Rex', '2004-08-08', 39, 'https://www.gutenberg.org/ebooks/13135', 'en', 485), +(37672, 'The Young Adventurer; or, Tom\'s Trip Across the Plains', 'Alger, Horatio, Jr.', '2008-11-20', 27, 'https://www.gutenberg.org/ebooks/27300', 'en', 10865), +(37673, 'Frontier Boys in the South Seas', 'Roosevelt, Wyn', '2010-04-21', 12, 'https://www.gutenberg.org/ebooks/32084', 'en', 13981), +(37674, 'Harper\'s New Monthly Magazine, No. XI.—April, 1851—Vol. II.', 'Various', '2012-12-07', 23, 'https://www.gutenberg.org/ebooks/41576', 'en', 883), +(37675, 'Compendio di Chimica Fisiologica', 'Cominelli, A.', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11206', 'it', 13982), +(37676, 'Report of the Chief Librarian for the Year 1924-25', 'New Zealand. General Assembly Library', '2008-04-10', 4, 'https://www.gutenberg.org/ebooks/25033', 'en', 13983), +(37677, 'Time and Its Measurement', 'Arthur, James', '2014-02-07', 27, 'https://www.gutenberg.org/ebooks/44838', 'en', 8727), +(37678, 'Down the Snow Stairs; Or, From Good-Night to Good-Morning', 'Corkran, Alice', '2018-06-29', 20, 'https://www.gutenberg.org/ebooks/57413', 'en', 195), +(37679, 'Young\'s Night Thoughts\nWith Life, Critical Dissertation and Explanatory Notes', 'Young, Edward', '2010-07-14', 103, 'https://www.gutenberg.org/ebooks/33156', 'en', 13984), +(37680, 'Much Ado about Nothing', 'Shakespeare, William', '1999-06-01', 28, 'https://www.gutenberg.org/ebooks/1783', 'en', 3258), +(37681, 'Bangerter\'s Inventions; His Marvelous Time Clock', NULL, '2016-05-25', 5, 'https://www.gutenberg.org/ebooks/52161', 'en', 2252), +(37682, '10 Luscious New Cakes, Made by Spry\'s Amazing New One-Bowl Method', 'Lever Brothers Company', '2019-05-24', 105, 'https://www.gutenberg.org/ebooks/59589', 'en', 13985), +(37683, 'Twice Lost', 'Kingston, William Henry Giles', '2007-05-16', 14, 'https://www.gutenberg.org/ebooks/21493', 'en', 792), +(37684, 'Army Boys in France; or, From Training Camp to Trenches', 'Randall, Homer', '2011-06-13', 14, 'https://www.gutenberg.org/ebooks/36424', 'en', 1523), +(37685, 'Warren Commission (04 of 26): Hearings Vol. IV (of 15)', 'United States. Warren Commission', '2013-10-19', 19, 'https://www.gutenberg.org/ebooks/44004', 'en', 5679), +(37686, 'Effi Briest', 'Fontane, Theodor', '2004-03-01', 177, 'https://www.gutenberg.org/ebooks/5323', 'de', 13986), +(37687, 'The Rocky Island\nand Other Similitudes', 'Wilberforce, Samuel', '2007-02-07', 28, 'https://www.gutenberg.org/ebooks/20541', 'en', 4187), +(37688, 'Painuva päivä; Elämän koreus; Leirivalkeat; Ajatar; Syreenien kukkiessa', 'Leino, Eino', '2005-01-24', 16, 'https://www.gutenberg.org/ebooks/14774', 'fi', 8), +(37689, 'Reports of Trials for Murder by Poisoning;\r\nby Prussic Acid, Strychnia, Antimony, Arsenic, and Aconita. Including the trials of Tawell, W. Palmer, Dove, Madeline Smith, Dr. Pritchard, Smethurst, and Dr. Lamson, with chemical introduction and notes on the poisons used', 'Stewart, C. G. (Charles G.), active 19th century', '2015-12-07', 15, 'https://www.gutenberg.org/ebooks/50636', 'en', 7023), +(37690, 'Narrative of a Journey to the Shores of the Polar Sea, in the years 1819-20-21-22, Volume 2', 'Franklin, John', '2006-08-03', 18, 'https://www.gutenberg.org/ebooks/18985', 'en', 13987), +(37691, 'Men, Women and Ghosts', 'Lowell, Amy', '1997-03-01', 95, 'https://www.gutenberg.org/ebooks/841', 'en', 178), +(37692, 'The Priestly Vocation\nA Series of Fourteen Conferences Addressed to the Secular Clergy', 'Ward, Bernard', '2010-11-19', 28, 'https://www.gutenberg.org/ebooks/34373', 'en', 13988), +(37693, 'Elias Lönnrot: Elämä-kerrallisia piirteitä', 'Ahlqvist, August', '2014-12-17', 6, 'https://www.gutenberg.org/ebooks/47681', 'fi', 3424), +(37694, 'Chats on Japanese Prints', 'Ficke, Arthur Davison', '2014-09-02', 22, 'https://www.gutenberg.org/ebooks/46753', 'en', 12442), +(37695, 'The Ancient East', 'Hogarth, D. G. (David George)', '2005-02-01', 29, 'https://www.gutenberg.org/ebooks/7474', 'en', 7311), +(37696, 'The Great War As I Saw It', 'Scott, Frederick George', '2006-11-18', 36, 'https://www.gutenberg.org/ebooks/19857', 'en', 1525), +(37697, 'Project Mastodon', 'Simak, Clifford D.', '2007-08-02', 83, 'https://www.gutenberg.org/ebooks/22216', 'en', 26), +(37698, 'Oliver Twist', 'Dickens, Charles', '2005-06-07', 76, 'https://www.gutenberg.org/ebooks/16023', 'fr', 264), +(37699, 'History of Friedrich II of Prussia — Volume 06', 'Carlyle, Thomas', '2008-06-16', 34, 'https://www.gutenberg.org/ebooks/2106', 'en', 3120), +(37700, 'The Ceramic Art\nA Compendium of The History and Manufacture of Pottery and Porcelain', 'Young, Jennie J.', '2013-07-15', 66, 'https://www.gutenberg.org/ebooks/43221', 'en', 13989), +(37701, 'The German Army in Belgium, the White Book of May 1915', 'Germany. Auswärtiges Amt', '2017-03-07', 4, 'https://www.gutenberg.org/ebooks/54296', 'en', 4531), +(37702, 'Notes and Queries, Number 50, October 12, 1850', 'Various', '2004-09-28', 11, 'https://www.gutenberg.org/ebooks/13551', 'en', 105), +(37703, 'Dramatic Reader for Lower Grades', 'Holbrook, Florence', '2009-01-10', 45, 'https://www.gutenberg.org/ebooks/27764', 'en', 364), +(37704, 'Reminiscences of Scottish Life & Character', 'Ramsay, Edward Bannerman', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12483', 'en', 13990), +(37705, 'Svante Niilonpoika Sture ja hänen aikalaisensa II: Lapsiuhri', 'Stjernström, Louise', '2017-08-11', 20, 'https://www.gutenberg.org/ebooks/55344', 'fi', 98), +(37706, 'An Empty Bottle', 'Wolf, Mari', '2010-03-11', 26, 'https://www.gutenberg.org/ebooks/31601', 'en', 623), +(37707, 'The Poems of Schiller — First period', 'Schiller, Friedrich', '2004-12-08', 44, 'https://www.gutenberg.org/ebooks/6794', 'en', 8), +(37708, 'The Parson O\' Dumford', 'Fenn, George Manville', '2010-10-26', 10, 'https://www.gutenberg.org/ebooks/34141', 'en', 55), +(37709, 'Indian Biography; Vol. 1 (of 2)\r\nOr, An Historical Account of Those Individuals Who Have Been Distinguished among the North American Natives as Orators, Warriors, Statesmen, and Other Remarkable Characters', 'Thatcher, B. B. (Benjamin Bussey)', '2017-06-12', 18, 'https://www.gutenberg.org/ebooks/54898', 'en', 5524), +(37710, 'Parlour Magic', NULL, '2015-11-07', 32, 'https://www.gutenberg.org/ebooks/50404', 'en', 13991), +(37711, 'L\'olmo e l\'edera', 'Barrili, Anton Giulio', '2007-07-09', 17, 'https://www.gutenberg.org/ebooks/22024', 'it', 61), +(37712, 'Fjalar Kuningas', 'Runeberg, Johan Ludvig', '2005-07-05', 12, 'https://www.gutenberg.org/ebooks/16211', 'fi', 8), +(37713, 'Keltische Knochen/Gedelöcke: Erzählungen', 'Raabe, Wilhelm', '2014-08-11', 8, 'https://www.gutenberg.org/ebooks/46561', 'de', 138), +(37714, 'Ernest Maltravers — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7646', 'en', 137), +(37715, 'The Road to Understanding', 'Porter, Eleanor H. (Eleanor Hodgman)', '2011-01-27', 50, 'https://www.gutenberg.org/ebooks/35093', 'en', 675), +(37716, 'The Lamp in the Desert', 'Dell, Ethel M. (Ethel May)', '2004-10-16', 29, 'https://www.gutenberg.org/ebooks/13763', 'en', 1736), +(37717, 'Across the Equator: A Holiday Trip in Java', 'Reid, Thomas H.', '2008-12-18', 24, 'https://www.gutenberg.org/ebooks/27556', 'en', 13992), +(37718, 'The Works of Rudyard Kipling: One Volume Edition', 'Kipling, Rudyard', '2000-09-01', 143, 'https://www.gutenberg.org/ebooks/2334', 'en', 401), +(37719, 'Animal Analogues: Verses and Illustrations', 'Wood, Robert Williams', '2013-06-22', 14, 'https://www.gutenberg.org/ebooks/43013', 'en', 190), +(37720, 'General Nelson\'s Scout', 'Dunn, Byron A. (Byron Archibald)', '2015-07-26', 13, 'https://www.gutenberg.org/ebooks/49529', 'en', 491), +(37721, 'An Alphabet of Celebrities', 'Herford, Oliver', '2007-09-30', 25, 'https://www.gutenberg.org/ebooks/22818', 'en', 2981), +(37722, 'Ρόδα και Μήλα, Τόμος Α\'', 'Psicharis, Ioannis', '2010-02-27', 26, 'https://www.gutenberg.org/ebooks/31433', 'fr', 988), +(37723, 'Blackwood\'s Edinburgh Magazine, Volume 61, No. 380, June, 1847', 'Various', '2008-08-29', 16, 'https://www.gutenberg.org/ebooks/26484', 'en', 711), +(37724, 'Cartoons and Caricatures of Seattle Citizens', NULL, '2017-07-23', 25, 'https://www.gutenberg.org/ebooks/55176', 'en', 13993), +(37725, 'His Heart\'s Queen', 'Sheldon, Georgie, Mrs.', '2006-09-12', 15, 'https://www.gutenberg.org/ebooks/19259', 'en', 61), +(37726, 'A Compilation of the Messages and Papers of the Presidents. Volume 3, part 2: Martin Van Buren', NULL, '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11034', 'en', 447), +(37727, 'The Lost Kitty', 'Leslie, Madeline', '2008-04-27', 11, 'https://www.gutenberg.org/ebooks/25201', 'en', 13994), +(37728, 'The Egyptian campaigns, 1882 to 1885', 'Royle, Charles', '2012-12-31', 16, 'https://www.gutenberg.org/ebooks/41744', 'en', 13995), +(37729, 'Who Goes There!', 'Chambers, Robert W. (Robert William)', '2012-09-07', 82, 'https://www.gutenberg.org/ebooks/40696', 'en', 579), +(37730, 'A New Subspecies of the Fruit-eating Bat, Sturnira ludovici, From Western Mexico', 'Phillips, Gary L.', '2010-08-06', 9, 'https://www.gutenberg.org/ebooks/33364', 'en', 13996), +(37731, 'Zeniths Kokbok: En samling recept för användning av Zeniths margarin', 'Borgh, Anna', '2018-08-01', 10, 'https://www.gutenberg.org/ebooks/57621', 'sv', 13997), +(37732, 'U.S. Copyright Renewals, 1953 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11808', 'en', 4170), +(37733, 'Project Gutenberg 4 July 1971 - 4 July 2011: Album', 'Lebert, Marie', '2011-07-04', 16, 'https://www.gutenberg.org/ebooks/36616', 'en', 340), +(37734, 'Um die Erde: Eine Reisebeschreibung', 'Hirschberg, J. (Julius)', '2016-06-16', 14, 'https://www.gutenberg.org/ebooks/52353', 'de', 819), +(37735, 'Dew Drops, Vol. 37, No. 09, March 1, 1914', 'Various', '2005-03-29', 8, 'https://www.gutenberg.org/ebooks/15494', 'en', 6886), +(37736, 'Le marchand de Venise', 'Shakespeare, William', '2007-03-09', 35, 'https://www.gutenberg.org/ebooks/20773', 'fr', 368), +(37737, 'Betty Gordon at Mountain Camp; Or, The Mystery of Ida Bellethorne', 'Emerson, Alice B.', '2004-12-31', 27, 'https://www.gutenberg.org/ebooks/14546', 'en', 13482), +(37738, 'The Child of the Moat: A Story for Girls. 1557 A.D.', 'Stoughton Holborn, I. B. (Ian Bernard)', '2016-10-15', 4, 'https://www.gutenberg.org/ebooks/53281', 'en', 11884), +(37739, 'History of Central America, Volume 2, 1530-1800\r\nThe Works of Hubert Howe Bancroft, Volume 7', 'Bancroft, Hubert Howe', '2019-01-11', 4, 'https://www.gutenberg.org/ebooks/58669', 'en', 13998), +(37740, 'La Sarcelle Bleue', 'Bazin, René', '2013-11-20', 19, 'https://www.gutenberg.org/ebooks/44236', 'fr', 298), +(37741, 'The Real Diary of a Real Boy', 'Shute, Henry A. (Henry Augustus)', '2004-02-01', 28, 'https://www.gutenberg.org/ebooks/5111', 'en', 1566), +(37742, 'Specimens of German Romance; Vol. I. The Patricians', 'Velde, C. F. van der (Carl Franz)', '2010-04-20', 9, 'https://www.gutenberg.org/ebooks/32070', 'en', 803), +(37743, 'Mariquita: A Novel', 'Ayscough, John', '2012-04-22', 15, 'https://www.gutenberg.org/ebooks/39498', 'en', 4905), +(37744, 'John Brown, Soldier of Fortune: A Critique', 'Wilson, Hill Peebles', '2012-12-08', 17, 'https://www.gutenberg.org/ebooks/41582', 'en', 4763), +(37745, 'Spain in 1830, vol. 2', 'Inglis, Henry D. (Henry David)', '2018-02-10', 9, 'https://www.gutenberg.org/ebooks/56535', 'en', 1514), +(37746, 'Onder den rook der mijn\nEene novelle uit Limburg', 'Rutten, Felix', '2008-01-02', 3, 'https://www.gutenberg.org/ebooks/24115', 'nl', 7929), +(37747, 'Dotty Dimple at Play', 'May, Sophie', '2003-11-01', 34, 'https://www.gutenberg.org/ebooks/10320', 'en', 62), +(37748, 'Violet Forster\'s Lover', 'Marsh, Richard', '2012-08-08', 13, 'https://www.gutenberg.org/ebooks/40450', 'en', 61), +(37749, 'Romeo and Juliet', 'Shakespeare, William', '1999-06-01', 252, 'https://www.gutenberg.org/ebooks/1777', 'en', 5937), +(37750, 'The Poetical Works of Thomas Hood', 'Hood, Thomas', '2005-04-18', 34, 'https://www.gutenberg.org/ebooks/15652', 'en', 13999), +(37751, 'The Oxonian in Thelemarken, volume 1 (of 2)\r\nor, Notes of travel in south-western Norway in the summers of 1856 and 1857. With glances at the legendary lore of that district.', 'Metcalfe, Frederick', '2016-05-30', 5, 'https://www.gutenberg.org/ebooks/52195', 'en', 3611), +(37752, 'The Log House by the Lake: A Tale of Canada', 'Kingston, William Henry Giles', '2007-05-15', 32, 'https://www.gutenberg.org/ebooks/21467', 'en', 3242), +(37753, 'Berlin and Sans-Souci; Or, Frederick the Great and His Friends', 'Mühlbach, L. (Luise)', '2003-07-01', 19, 'https://www.gutenberg.org/ebooks/4205', 'en', 12564), +(37754, 'Thoughts on Life and Religion\r\nAn Aftermath from the Writings of The Right Honourable Professor Max Müller', 'Müller, F. Max (Friedrich Max)', '2014-03-13', 27, 'https://www.gutenberg.org/ebooks/45122', 'en', 779), +(37755, 'The Green Rust', 'Wallace, Edgar', '2008-03-28', 67, 'https://www.gutenberg.org/ebooks/24929', 'en', 557), +(37756, 'Climbing in The British Isles, Vol. 2 - Wales and Ireland', 'Hart, Henry Chichester', '2011-09-21', 11, 'https://www.gutenberg.org/ebooks/37502', 'en', 14000), +(37757, 'Suomenkielinen Runollisuus Ruotsinvallan aikana\nynnä Kuvaelmia Suomalaisuuden Historiasta', 'Krohn, Julius', '2016-09-14', 5, 'https://www.gutenberg.org/ebooks/53047', 'fi', 11241), +(37758, 'Evidences of Christianity', 'Paley, William', '2005-01-24', 67, 'https://www.gutenberg.org/ebooks/14780', 'en', 7141), +(37759, 'Les cotillons célèbres I', 'Gaboriau, Emile', '2005-11-19', 20, 'https://www.gutenberg.org/ebooks/17105', 'fr', 14001), +(37760, 'One Day At Arle', 'Burnett, Frances Hodgson', '2007-11-04', 16, 'https://www.gutenberg.org/ebooks/23330', 'en', 109), +(37761, 'Historia de Portugal: Tomo I', 'Oliveira Martins, J. P. (Joaquim Pedro)', '2010-11-21', 74, 'https://www.gutenberg.org/ebooks/34387', 'pt', 6414), +(37762, 'Jacobean Embroidery: Its Forms and Fillings, Including Late Tudor', 'Fitzwilliam, Ada Wentworth', '2006-08-02', 240, 'https://www.gutenberg.org/ebooks/18971', 'en', 9183), +(37763, 'His Own People', 'Tarkington, Booth', '2004-09-01', 3, 'https://www.gutenberg.org/ebooks/6552', 'en', 109), +(37764, 'Main Currents in Nineteenth Century Literature - 1. The Emigrant Literature', 'Brandes, Georg', '2014-12-16', 43, 'https://www.gutenberg.org/ebooks/47675', 'en', 14002), +(37765, 'The Systematic Status of Eumeces pluvialis Cope', 'Smith, Hobart M. (Hobart Muir)', '2011-02-12', 10, 'https://www.gutenberg.org/ebooks/35255', 'en', 14003), +(37766, 'The Created Legend', 'Sologub, Fyodor', '2005-02-01', 19, 'https://www.gutenberg.org/ebooks/7480', 'en', 1014), +(37767, 'Thoughts out of Season, Part I\r\nDavid Strauss, the Confessor and the Writer - Richard Wagner in Bayreuth.', 'Nietzsche, Friedrich Wilhelm', '2016-04-09', 41, 'https://www.gutenberg.org/ebooks/51710', 'en', 1464), +(37768, 'A Statement: On the Future of This Church', 'Holmes, John Haynes', '2006-03-06', 15, 'https://www.gutenberg.org/ebooks/17939', 'en', 2248), +(37769, 'Motor Boat Boys Down the Coast; or, Through Storm and Stress to Florida', 'Arundel, Louis', '2009-12-21', 6, 'https://www.gutenberg.org/ebooks/30727', 'en', 14004), +(37770, 'Sämmtliche Werke 1: Die Abenteuer Tschitschikows oder Die toten Seelen I', 'Gogol, Nikolai Vasilevich', '2017-03-01', 22, 'https://www.gutenberg.org/ebooks/54262', 'de', 417), +(37771, 'A Practical Enquiry into the Philosophy of Education', 'Gall, James', '2009-01-13', 14, 'https://www.gutenberg.org/ebooks/27790', 'en', 973), +(37772, 'The Uses of Diversity: A book of essays', 'Chesterton, G. K. (Gilbert Keith)', '2019-08-04', 1302, 'https://www.gutenberg.org/ebooks/60057', 'en', 3835), +(37773, 'Wilmshurst of the Frontier Force', 'Westerman, Percy F. (Percy Francis)', '2008-09-16', 23, 'https://www.gutenberg.org/ebooks/26642', 'en', 13036), +(37774, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 356, February 14, 1829', 'Various', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12477', 'en', 133), +(37775, 'Frank in the Woods', 'Castlemon, Harry', '2013-03-11', 17, 'https://www.gutenberg.org/ebooks/42307', 'en', 323), +(37776, 'Table Talk: Essays on Men and Manners', 'Hazlitt, William', '2002-01-01', 150, 'https://www.gutenberg.org/ebooks/3020', 'en', 472), +(37777, 'The Adventures of Ferdinand Count Fathom — Volume 02', 'Smollett, T. (Tobias)', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6760', 'en', 323), +(37778, 'Essay on the Life and Institutions of Offa, King of Mercia, A.D. 755-794', 'Mackenzie, Henry', '2014-11-24', 25, 'https://www.gutenberg.org/ebooks/47447', 'en', 14005), +(37779, 'Onder Moeders Vleugels', 'Alcott, Louisa May', '2005-12-17', 42, 'https://www.gutenberg.org/ebooks/17337', 'nl', 7171), +(37780, 'This World Must Die!', 'Fyfe, H. B. (Horace Bowne)', '2007-10-20', 42, 'https://www.gutenberg.org/ebooks/23102', 'en', 26), +(37781, 'The Diplomatic Correspondence of the American Revolution, Vol. 09', NULL, '2009-07-18', 13, 'https://www.gutenberg.org/ebooks/29438', 'en', 330), +(37782, 'The Collected Writing of Thomas De Quincey, Vol. II', 'De Quincey, Thomas', '2013-06-10', 50, 'https://www.gutenberg.org/ebooks/42909', 'en', 14006), +(37783, 'Leather for Libraries', 'Davenport, Cyril', '2016-03-21', 23, 'https://www.gutenberg.org/ebooks/51522', 'en', 14007), +(37784, 'The Chronicles of Crime or The New Newgate Calendar. v. 2/2\r\nbeing a series of memoirs and anecdotes of notorious characters who have outraged the laws of Great Britain from the earliest period to 1841', 'Pelham, Camden', '2014-08-16', 40, 'https://www.gutenberg.org/ebooks/46595', 'en', 8522), +(37785, 'The Pocket Bible; or, Christian the Printer: A Tale of the Sixteenth Century', 'Sue, Eugène', '2011-01-25', 31, 'https://www.gutenberg.org/ebooks/35067', 'en', 14008), +(37786, 'International Weekly Miscellany of Literature, Art and Science - Volume 1, No. 9, August 26, 1850', 'Various', '2004-10-19', 10, 'https://www.gutenberg.org/ebooks/13797', 'en', 380), +(37787, 'An Examination of the Testimony of the Four Evangelists, by the Rules of Evidence Administered in Courts of Justice\r\nWith an Account of the Trial of Jesus', 'Greenleaf, Simon', '2011-01-17', 71, 'https://www.gutenberg.org/ebooks/34989', 'en', 14009), +(37788, 'Little Wideawake: A story book for little children', 'Barker, Sale, Mrs.', '2017-01-25', 9, 'https://www.gutenberg.org/ebooks/54050', 'en', 859), +(37789, 'Pictures from Italy', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9728', 'en', 5826), +(37790, 'De la Démocratie en Amérique, tome troisième', 'Tocqueville, Alexis de', '2009-11-21', 27, 'https://www.gutenberg.org/ebooks/30515', 'fr', 1720), +(37791, 'The Unwilling Professor', 'Porges, Arthur', '2013-02-19', 9, 'https://www.gutenberg.org/ebooks/42135', 'en', 14010), +(37792, 'Mr. Honey\'s Beginner\'s Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 55, 'https://www.gutenberg.org/ebooks/3212', 'de', 5007), +(37793, 'The Red House Mystery', 'Milne, A. A. (Alan Alexander)', '2008-09-01', 7, 'https://www.gutenberg.org/ebooks/26470', 'en', 95), +(37794, 'The Irish Penny Journal, Vol. 1 No. 41, April 10, 1841', 'Various', '2017-07-23', 1, 'https://www.gutenberg.org/ebooks/55182', 'en', 81), +(37795, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 483, April 2, 1831', 'Various', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/12645', 'en', 133), +(37796, 'Bertrand of Brittany', 'Deeping, Warwick', '2018-03-08', 11, 'https://www.gutenberg.org/ebooks/56707', 'en', 14011), +(37797, 'A Wonder Book for Girls & Boys', 'Hawthorne, Nathaniel', '2010-05-03', 179, 'https://www.gutenberg.org/ebooks/32242', 'en', 2139), +(37798, 'Salona, Fairfax County, Virginia', 'Anderson, Ellen L.', '2012-09-04', 23, 'https://www.gutenberg.org/ebooks/40662', 'en', 14012), +(37799, 'The Passionate Pilgrim', 'Shakespeare, William', '1998-11-01', 18, 'https://www.gutenberg.org/ebooks/1545', 'en', 466), +(37800, 'Bosom Friends: A Seaside Story', 'Brazil, Angela', '2010-08-09', 22, 'https://www.gutenberg.org/ebooks/33390', 'en', 82), +(37801, 'L\'Illustration, No. 3665, 24 Mai 1913', 'Various', '2012-02-07', 8, 'https://www.gutenberg.org/ebooks/38778', 'fr', 150), +(37802, '何典', 'Zhang, Nanzhuang', '2008-01-16', 15, 'https://www.gutenberg.org/ebooks/24327', 'zh', 1003), +(37803, 'American Political Ideas Viewed from the Standpoint of Universal History', 'Fiske, John', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10112', 'en', 1720), +(37804, 'Appreciations, with an Essay on Style', 'Pater, Walter', '2003-05-01', 72, 'https://www.gutenberg.org/ebooks/4037', 'en', 11535), +(37805, 'Tracts on the Sabbath', NULL, '2014-04-03', 15, 'https://www.gutenberg.org/ebooks/45310', 'en', 503), +(37806, 'A Course In Wood Turning', 'Wohlers, Otto K.', '2005-03-25', 122, 'https://www.gutenberg.org/ebooks/15460', 'en', 3056), +(37807, 'The works of Guy de Maupassant, Vol. 5\r\nUne Vie and Other Stories', 'Maupassant, Guy de', '2007-06-01', 18, 'https://www.gutenberg.org/ebooks/21655', 'en', 58), +(37808, 'Punctuation\r\nA Primer of Information about the Marks of Punctuation and their Use Both Grammatically and Typographically', 'Hamilton, Frederick W. (Frederick William)', '2007-03-09', 17, 'https://www.gutenberg.org/ebooks/20787', 'en', 14013), +(37809, 'The Every-day Book and Table Book, v. 1 (of 3)\r\nor Everlasting Calendar of Popular Amusements, Sports, Pastimes, Ceremonies, Manners, Customs and Events, Incident to Each of the Three Hundred and Sixty-five Days, in past and Present Times; Forming a Complete History of the Year, Month, and Seasons, and a Perpetual Key to the Almanac', 'Hone, William', '2016-10-14', 21, 'https://www.gutenberg.org/ebooks/53275', 'en', 14014), +(37810, 'Memorials of the Independent Churches in Northamptonshire\r\nwith biographical notices of their pastors, and some account of the puritan ministers who laboured in the county.', 'Coleman, Thomas', '2011-10-12', 13, 'https://www.gutenberg.org/ebooks/37730', 'en', 14015), +(37811, 'The Story of Jack Ballister\'s Fortunes\r\nBeing the narrative of the adventures of a young gentleman of good family, who was kidnapped in the year 1719 and carried to the plantations of the continent of Virginia, where he fell in with that famous pirate Captain Edward Teach, or Blackbeard; of his escape from the pirates and the rescue of a young lady from out their hands', 'Pyle, Howard', '2015-09-16', 30, 'https://www.gutenberg.org/ebooks/49985', 'en', 3823), +(37812, 'Baby Chatterbox', 'Anonymous', '2005-09-11', 82, 'https://www.gutenberg.org/ebooks/16681', 'en', 859), +(37813, 'Suomalaisen teatterin historia 2\r\nPuhenäyttämön alkuvuodet ja suomalainen ooppera. 1872-79', 'Aspelin-Haapkylä, Eliel', '2016-02-08', 12, 'https://www.gutenberg.org/ebooks/51146', 'fi', 12139), +(37814, 'A Red Wallflower', 'Warner, Susan', '2008-10-07', 23, 'https://www.gutenberg.org/ebooks/26828', 'en', 61), +(37815, 'From Bapaume to Passchendaele, 1917', 'Gibbs, Philip', '2011-03-02', 36, 'https://www.gutenberg.org/ebooks/35403', 'en', 4411), +(37816, 'Without Prejudice', 'Zangwill, Israel', '2004-08-01', 24, 'https://www.gutenberg.org/ebooks/6304', 'en', 20), +(37817, 'The Putnam Hall Champions; or, Bound to Win Out', 'Stratemeyer, Edward', '2014-10-02', 7, 'https://www.gutenberg.org/ebooks/47023', 'en', 557), +(37818, 'Elinkautinen', 'Lie, Jonas', '2015-09-30', 6, 'https://www.gutenberg.org/ebooks/50094', 'fi', 7), +(37819, 'On the Antiquity of the Chemical Art', 'Mactear, James', '2006-02-11', 25, 'https://www.gutenberg.org/ebooks/17753', 'en', 10696), +(37820, 'Miquette baptise sa poupée', 'Camo, Sans', '2007-11-20', 17, 'https://www.gutenberg.org/ebooks/23566', 'fr', 168), +(37821, 'Figuras americanas: Galería de hombres illustres', 'Pérez, Miguel Agustin', '2015-05-02', 33, 'https://www.gutenberg.org/ebooks/48857', 'es', 14016), +(37822, 'The History of the Great and Mighty Kingdom of China and the Situation Thereof, Volume 2 (of 2)', 'González de Mendoza, Juan', '2013-04-16', 19, 'https://www.gutenberg.org/ebooks/42551', 'en', 14017), +(37823, 'A Great Man: A Frolic', 'Bennett, Arnold', '2009-08-30', 21, 'https://www.gutenberg.org/ebooks/29860', 'en', 61), +(37824, 'The Firefly of France', 'Angellotti, Marion Polk', '2006-04-13', 21, 'https://www.gutenberg.org/ebooks/3676', 'en', 579), +(37825, 'Practical Taxidermy\r\nA manual of instruction to the amateur in collecting, preserving, and setting up natural history specimens of all kinds. To which is added a chapter upon the pictorial arrangement of museums. With additional instructions in modelling and artistic taxidermy.', 'Browne, Montagu', '2008-07-09', 45, 'https://www.gutenberg.org/ebooks/26014', 'en', 2132), +(37826, 'Beggars Bush: A Comedy\r\nFrom the Works of Francis Beaumont and John Fletcher (Volume 2 of 10)', 'Beaumont, Francis', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12221', 'en', 126), +(37827, 'Heartbreak House', 'Shaw, Bernard', '2017-06-25', 26, 'https://www.gutenberg.org/ebooks/54434', 'en', 10077), +(37828, 'Vertellingen van vroeger en later tijd', 'Lennep, J. van (Jacob)', '2009-10-04', 11, 'https://www.gutenberg.org/ebooks/30171', 'nl', 5388), +(37829, 'Cruise of the \'Alert\'\nFour Years in Patagonian, Polynesian, and Mascarene Waters (1878-82)', 'Coppinger, R. W. (Richard William)', '2013-08-16', 8, 'https://www.gutenberg.org/ebooks/43483', 'en', 14018), +(37830, 'Bible Studies: Essays on Phallic Worship and Other Curious Rites and Customs', 'Wheeler, J. M. (Joseph Mazzini)', '2012-07-11', 40, 'https://www.gutenberg.org/ebooks/40206', 'en', 14019), +(37831, 'As You Like It', 'Shakespeare, William', '1997-12-01', 226, 'https://www.gutenberg.org/ebooks/1121', 'en', 907), +(37832, 'Kuninkaita maanpaossa I', 'Daudet, Alphonse', '2008-03-03', 31, 'https://www.gutenberg.org/ebooks/24743', 'fi', 560), +(37833, 'The Aeroplane Boys Flight\r\nOr, A Hydroplane Roundup', 'Langworthy, John Luther', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10576', 'en', 2279), +(37834, 'An Ocean Tragedy', 'Russell, William Clark', '2018-01-12', 13, 'https://www.gutenberg.org/ebooks/56363', 'en', 324), +(37835, 'Joyce Morrell\'s Harvest\nThe Annals of Selwick Hall', 'Holt, Emily Sarah', '2008-06-03', 12, 'https://www.gutenberg.org/ebooks/25691', 'en', 4434), +(37836, 'The Atlantic Monthly, Volume 12, No. 72, October, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-05-16', 16, 'https://www.gutenberg.org/ebooks/15838', 'en', 1227), +(37837, 'Thomas Carlyle', 'Macpherson, Hector', '2010-05-31', 20, 'https://www.gutenberg.org/ebooks/32626', 'en', 3485), +(37838, 'Goslings', 'Beresford, J. D. (John Davys)', '2016-11-26', 26, 'https://www.gutenberg.org/ebooks/53611', 'en', 95), +(37839, 'Condensation of Determinants\r\nBeing a New and Brief Method for Computing their Arithmetical Values', 'Carroll, Lewis', '2011-09-08', 36, 'https://www.gutenberg.org/ebooks/37354', 'en', 14020), +(37840, 'The Burgomaster\'s Wife — Volume 04', 'Ebers, Georg', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/5581', 'en', 1167), +(37841, 'Natural History of the Prairie Vole (Mammalian Genus Microtus)\n[KU. Vol. 1 No. 7]', 'Jameson, E. W. (Everett Williams)', '2011-05-30', 19, 'https://www.gutenberg.org/ebooks/36286', 'en', 4346), +(37842, 'Beauchamp\'s Career — Volume 1', 'Meredith, George', '2003-09-01', 18, 'https://www.gutenberg.org/ebooks/4453', 'en', 137), +(37843, 'Ralph Denham\'s Adventures in Burma: A Tale of the Burmese Jungle', 'Norway, G. (George)', '2014-05-26', 15, 'https://www.gutenberg.org/ebooks/45774', 'en', 153), +(37844, 'Doctor and Patient', 'Mitchell, S. Weir (Silas Weir)', '2005-02-09', 40, 'https://www.gutenberg.org/ebooks/15004', 'en', 9499), +(37845, 'Penelope and the Others: Story of Five Country Children', 'Walton, Amy', '2007-04-27', 17, 'https://www.gutenberg.org/ebooks/21231', 'en', 1655), +(37846, 'Der Struwwelpeter\noder lustige Geschichten und drollige Bilder', 'Hoffmann, Heinrich', '2008-02-11', 339, 'https://www.gutenberg.org/ebooks/24571', 'de', 5789), +(37847, 'Men, Women, and Ghosts', 'Phelps, Elizabeth Stuart', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/10744', 'en', 770), +(37848, 'The Barbarity of Circumcision as a Remedy for Congenital Abnormality', 'Snow, Herbert', '2018-05-03', 14, 'https://www.gutenberg.org/ebooks/57083', 'en', 14021), +(37849, 'The Princess Dehra', 'Scott, John Reed', '2012-06-18', 49, 'https://www.gutenberg.org/ebooks/40034', 'en', 1380), +(37850, 'Over the Sliprails', 'Lawson, Henry', '1998-05-01', 32, 'https://www.gutenberg.org/ebooks/1313', 'en', 792), +(37851, 'Home Pork Making', 'Fulton, A. W. (Albert Watson)', '2010-05-18', 46, 'https://www.gutenberg.org/ebooks/32414', 'en', 14022), +(37852, 'La pata de la raposa (Novela)', 'Pérez de Ayala, Ramón', '2019-07-15', 79, 'https://www.gutenberg.org/ebooks/59925', 'es', 1384), +(37853, 'The Benefit of the Doubt; a Comedy in Three Acts', 'Pinero, Arthur Wing', '2017-12-09', 28, 'https://www.gutenberg.org/ebooks/56151', 'en', 1281), +(37854, 'The Food of the Gods and How It Came to Earth', 'Wells, H. G. (Herbert George)', '2004-03-01', 189, 'https://www.gutenberg.org/ebooks/11696', 'en', 14023), +(37855, 'The War Trail', 'Gregor, Elmer Russell', '2011-07-29', 19, 'https://www.gutenberg.org/ebooks/36888', 'en', 676), +(37856, 'History of Civilization in England, Vol. 2 of 3', 'Buckle, Henry Thomas', '2013-12-28', 26, 'https://www.gutenberg.org/ebooks/44494', 'en', 1392), +(37857, 'Mr. Punch at the Seaside', NULL, '2011-08-23', 37, 'https://www.gutenberg.org/ebooks/37166', 'en', 564), +(37858, 'Het Leven der Dieren: Deel 2, Hoofdstuk 11 tot 14', 'Brehm, Alfred Edmund', '2012-09-20', 11, 'https://www.gutenberg.org/ebooks/40808', 'nl', 2360), +(37859, 'Better Than Men', 'Hawkins, Rush C. (Rush Christopher)', '2016-11-01', 10, 'https://www.gutenberg.org/ebooks/53423', 'en', 4589), +(37860, 'L\'Illustration, No. 3669, 21 Juin 1913', 'Various', '2012-02-17', 4, 'https://www.gutenberg.org/ebooks/38912', 'fr', 150), +(37861, 'Jonker Willem van Arkel', 'Gerdes, E. (Eduard)', '2019-03-24', 6, 'https://www.gutenberg.org/ebooks/59119', 'nl', 14024), +(37862, 'Oude Egyptische Legenden', 'Murray, Margaret Alice', '2005-03-02', 22, 'https://www.gutenberg.org/ebooks/15236', 'nl', 14025), +(37863, 'Bell\'s Cathedrals: The Cathedral Church of Ely\nA History and Description of the Building with a Short Account of the Monastery and of the See', 'Sweeting, W. D. (Walter Debenham)', '2007-04-07', 17, 'https://www.gutenberg.org/ebooks/21003', 'en', 6927), +(37864, 'Madame Aubin', 'Verlaine, Paul', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/4661', 'en', 3521), +(37865, 'Dangerous Deeds; Or, The Flight in the Dirigible', 'Cobb, Frank', '2014-05-01', 14, 'https://www.gutenberg.org/ebooks/45546', 'en', 2279), +(37866, 'A Letter on Shakspere\'s Authorship of The Two Noble Kinsmen\r\nand on the characteristics of Shakspere\'s style and the secret of his supremacy', 'Spalding, William', '2011-03-19', 18, 'https://www.gutenberg.org/ebooks/35631', 'en', 14026), +(37867, 'Een strijd om de schatten van Alva: of De watergeuzen in 1572', 'Bertrand, H.', '2007-09-20', 24, 'https://www.gutenberg.org/ebooks/22686', 'nl', 4128), +(37868, 'Mary Jane: Her Book', 'Judson, Clara Ingram', '2005-09-01', 17, 'https://www.gutenberg.org/ebooks/8890', 'en', 62), +(37869, 'The Golden Gems of Life; Or, Gathered Jewels for the Home Circle', 'Ferguson, Smith C.', '2016-03-06', 20, 'https://www.gutenberg.org/ebooks/51374', 'en', 740), +(37870, 'Lectures on Ten British Mathematicians of the Nineteenth Century', 'Macfarlane, Alexander', '2006-02-01', 41, 'https://www.gutenberg.org/ebooks/9942', 'en', 14027), +(37871, 'Confédération Balkanique', 'Perić, Živojin', '2006-01-21', 32, 'https://www.gutenberg.org/ebooks/17561', 'fr', 14028), +(37872, 'The Building of a Book\r\nA Series of Practical Articles Written by Experts in the Various Departments of Book Making and Distributing', NULL, '2007-12-06', 24, 'https://www.gutenberg.org/ebooks/23754', 'en', 14029), +(37873, 'Bars and Shadows: The Prison Poems of Ralph Chaplin', 'Chaplin, Ralph', '2004-07-01', 23, 'https://www.gutenberg.org/ebooks/6136', 'en', 14030), +(37874, 'The Idol of the Blind: A Novel', 'Gallon, Tom', '2014-10-27', 11, 'https://www.gutenberg.org/ebooks/47211', 'en', 61), +(37875, 'The Importance of Being Earnest', 'Wilde, Oscar', '2008-08-01', 59, 'https://www.gutenberg.org/ebooks/26226', 'en', 907), +(37876, 'My Year of the War\r\nIncluding an Account of Experiences with the Troops in France and the Record of a Visit to the Grand Fleet Which is Here Given for the First Time in its Complete Form', 'Palmer, Frederick', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/12013', 'en', 449), +(37877, 'Swords Reluctant', 'Pemberton, Max', '2013-05-22', 31, 'https://www.gutenberg.org/ebooks/42763', 'en', 61), +(37878, 'The Book of the Thousand Nights and a Night — Volume 10', NULL, '2002-09-01', 113, 'https://www.gutenberg.org/ebooks/3444', 'en', 1007), +(37879, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 22\r\nJuvenilia and Other Papers', 'Stevenson, Robert Louis', '2010-02-16', 22, 'https://www.gutenberg.org/ebooks/31291', 'en', 232), +(37880, 'The Forsyte Saga, Volume III.\r\nAwakening\r\nTo Let', 'Galsworthy, John', '2006-06-14', 26, 'https://www.gutenberg.org/ebooks/2596', 'en', 378), +(37881, 'A Discourse Concerning Ridicule and Irony in Writing (1729)', 'Collins, Anthony', '2009-10-27', 17, 'https://www.gutenberg.org/ebooks/30343', 'en', 781), +(37882, 'L\'Illustration, No. 0072, 11 Juillet 1844', 'Various', '2015-02-14', 15, 'https://www.gutenberg.org/ebooks/48259', 'fr', 150), +(37883, 'August First', 'Andrews, Mary Raymond Shipman', '2006-06-07', 21, 'https://www.gutenberg.org/ebooks/18529', 'en', 48), +(37884, 'The Flower Garden', 'Bennett, Ida D. (Ida Dandridge)', '2017-04-25', 17, 'https://www.gutenberg.org/ebooks/54606', 'en', 1413), +(37885, 'An American Girl Abroad', 'Trafton, Adeline', '2010-05-08', 28, 'https://www.gutenberg.org/ebooks/32289', 'en', 1408), +(37886, 'Mortomley\'s Estate: A Novel. Vol. 3 (of 3)', 'Riddell, J. H., Mrs.', '2012-05-09', 7, 'https://www.gutenberg.org/ebooks/39661', 'en', 9215), +(37887, 'The History of Don Quixote, Volume 1, Part 10', 'Cervantes Saavedra, Miguel de', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/5912', 'en', 361), +(37888, 'U.S. Copyright Renewals, 1968 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11837', 'en', 4170), +(37889, 'Hope Hathaway: A Story of Western Ranch Life', 'Parker, Frances', '2011-07-05', 26, 'https://www.gutenberg.org/ebooks/36629', 'en', 774), +(37890, 'Index of the Project Gutenberg Works of Marcus Aurelius Antoninus', 'Marcus Aurelius, Emperor of Rome', '2019-06-20', 61, 'https://www.gutenberg.org/ebooks/59784', 'en', 198), +(37891, 'Simon Called Peter', 'Keable, Robert', '2005-01-03', 16, 'https://www.gutenberg.org/ebooks/14579', 'en', 579), +(37892, 'The Child in Human Progress', 'Payne, George Henry', '2019-01-09', 4, 'https://www.gutenberg.org/ebooks/58656', 'en', 14031), +(37893, 'A History of the Inquisition of Spain; vol. 4', 'Lea, Henry Charles', '2013-11-17', 25, 'https://www.gutenberg.org/ebooks/44209', 'en', 4232), +(37894, 'The Power of Mesmerism\nA Highly Erotic Narrative of Voluptuous Facts and Fancies', 'Anonymous', '2009-04-06', 819, 'https://www.gutenberg.org/ebooks/28521', 'en', 4185), +(37895, 'Woodstock: An historical sketch', 'Bowen, Clarence Winthrop', '2013-09-24', 28, 'https://www.gutenberg.org/ebooks/43810', 'en', 14032), +(37896, 'Harold : the Last of the Saxon Kings — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7679', 'en', 984), +(37897, 'Voyager Encounters Jupiter', 'United States. National Aeronautics and Space Administration', '2017-11-16', 26, 'https://www.gutenberg.org/ebooks/55975', 'en', 14033), +(37898, 'Gilbert Keith Chesterton', 'Braybrooke, Patrick', '2008-12-19', 13, 'https://www.gutenberg.org/ebooks/27569', 'en', 5934); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(37899, 'Dream Days', 'Grahame, Kenneth', '2008-07-03', 93, 'https://www.gutenberg.org/ebooks/270', 'en', 2024), +(37900, 'Scamping Tricks and Odd Knowledge Occasionally Practised upon Public Works', 'Newman, John', '2011-01-13', 46, 'https://www.gutenberg.org/ebooks/34942', 'en', 14034), +(37901, 'The Adventure of the Dying Detective', 'Doyle, Arthur Conan', '2005-08-01', 9, 'https://www.gutenberg.org/ebooks/8631', 'en', 834), +(37902, 'Bacon and Shakespeare', 'Calvert, Albert Frederick', '2015-07-24', 14, 'https://www.gutenberg.org/ebooks/49516', 'en', 2784), +(37903, 'Patchwork: A Story of \'The Plain People\'', 'Myers, Anna Balmer', '2007-10-02', 34, 'https://www.gutenberg.org/ebooks/22827', 'en', 14035), +(37904, 'Michigan\'s Copper Country in Early Photos', 'Tyler, B. E.', '2017-07-19', 9, 'https://www.gutenberg.org/ebooks/55149', 'en', 14036), +(37905, 'Letters on the Improvement of the Mind, Addressed to a Lady', 'Chapone, Mrs. (Hester)', '2011-04-17', 37, 'https://www.gutenberg.org/ebooks/35890', 'en', 8720), +(37906, 'Etudes sur Aristophane', 'Deschanel, Emile', '2006-09-14', 29, 'https://www.gutenberg.org/ebooks/19266', 'fr', 8795), +(37907, 'Beside Still Waters', 'Benson, Arthur Christopher', '2009-10-28', 8, 'https://www.gutenberg.org/ebooks/28713', 'en', 658), +(37908, 'Fifteen Years Among the Top-Knots; Or, Life in Korea', 'Underwood, Lillias H. (Lillias Horton)', '2015-12-04', 17, 'https://www.gutenberg.org/ebooks/50609', 'en', 14037), +(37909, 'The Burning Spear: Being the Experiences of Mr. John Lavender in the Time of War', 'Galsworthy, John', '2006-06-14', 14, 'https://www.gutenberg.org/ebooks/2905', 'en', 5749), +(37910, 'The Letters of \"Norah\" on Her Tour Through Ireland', 'Norah', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6599', 'en', 117), +(37911, 'The Milkmaid\nR. Caldecott\'s Picture Books', 'Caldecott, Randolph', '2006-11-19', 37, 'https://www.gutenberg.org/ebooks/19868', 'en', 2296), +(37912, 'The Modern Scottish Minstrel, Volume 6.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2007-08-03', 39, 'https://www.gutenberg.org/ebooks/22229', 'en', 11871), +(37913, 'Alvira: The Heroine of Vesuvius', 'O\'Reilly, A. J. (Augustine J.)', '2000-04-01', 9, 'https://www.gutenberg.org/ebooks/2139', 'en', 14038), +(37914, 'David Copperfield I\nDavid Copperfield nuoremman elämäkertomus ja kokemukset', 'Dickens, Charles', '2006-04-17', 35, 'https://www.gutenberg.org/ebooks/18186', 'fi', 1080), +(37915, 'Alleen op de Wereld', 'Malot, Hector', '2006-08-15', 29, 'https://www.gutenberg.org/ebooks/19054', 'nl', 2588), +(37916, 'Tyttö Helgolannista', 'Nieritz, Gustav', '2008-09-22', 18, 'https://www.gutenberg.org/ebooks/26689', 'fi', 14039), +(37917, 'Le Journal d\'une Femme de Chambre', 'Mirbeau, Octave', '2005-10-07', 35, 'https://www.gutenberg.org/ebooks/16820', 'fr', 687), +(37918, 'Young People\'s Pride: A Novel', 'Benét, Stephen Vincent', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8403', 'en', 61), +(37919, 'Snow-White; or, The House in the Wood', 'Richards, Laura Elizabeth Howe', '2015-08-17', 54, 'https://www.gutenberg.org/ebooks/49724', 'en', 14040), +(37920, '\"God Wills It!\" A Tale of the First Crusade.', 'Davis, William Stearns', '2012-12-04', 24, 'https://www.gutenberg.org/ebooks/41549', 'en', 14041), +(37921, 'Kit Musgrave\'s Luck', 'Bindloss, Harold', '2012-04-14', 18, 'https://www.gutenberg.org/ebooks/39453', 'en', 847), +(37922, 'Hugh Gwyeth: A Roundhead Cavalier', 'Dix, Beulah Marie', '2016-09-02', 11, 'https://www.gutenberg.org/ebooks/52962', 'en', 4665), +(37923, 'The Life and Adventures of Robinson Crusoe of York, Mariner, Volume 1\nWith an Account of His Travels Round Three Parts of the Globe,\nWritten By Himself, in Two Volumes', 'Defoe, Daniel', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11239', 'en', 1592), +(37924, 'Baudelaire et Sainte-Beuve', 'Vandérem, Fernand', '2014-01-30', 12, 'https://www.gutenberg.org/ebooks/44807', 'fr', 14042), +(37925, 'Harper\'s Round Table, October 15, 1895', 'Various', '2010-07-15', 27, 'https://www.gutenberg.org/ebooks/33169', 'en', 668), +(37926, 'Nach Paris! Roman', 'Dumur, Louis', '2012-01-15', 5, 'https://www.gutenberg.org/ebooks/38581', 'fr', 579), +(37927, 'A Handbook of the Boer War\r\nWith General Map of South Africa and 18 Sketch Maps and Plans', NULL, '2005-04-24', 55, 'https://www.gutenberg.org/ebooks/15699', 'en', 1956), +(37928, 'Trilbyana: The Rise and Progress of a Popular Novel', 'Gilder, Joseph Benson', '2010-06-19', 20, 'https://www.gutenberg.org/ebooks/32887', 'en', 14043), +(37929, 'A Discourse of a Method for the Well Guiding of Reason\nand the Discovery of Truth in the Sciences', 'Descartes, René', '2008-06-18', 127, 'https://www.gutenberg.org/ebooks/25830', 'en', 411), +(37930, 'Essays of an Americanist\r\nI. Ethnologic and Archæologic. II. Mythology and Folk Lore. III. Graphic Systems and Literature. IV. Linguistic.', 'Brinton, Daniel G. (Daniel Garrison)', '2018-12-13', 19, 'https://www.gutenberg.org/ebooks/58464', 'en', 10898), +(37931, 'Remodeled Farmhouses', 'Northend, Mary Harrod', '2010-10-01', 11, 'https://www.gutenberg.org/ebooks/33955', 'en', 4442), +(37932, 'Die Mormonen, ihr Prophet, ihr Staat und ihr Glaube', 'Busch, Moritz', '2014-07-17', 16, 'https://www.gutenberg.org/ebooks/46308', 'de', 310), +(37933, 'Records of a Girlhood', 'Kemble, Fanny', '2005-08-08', 33, 'https://www.gutenberg.org/ebooks/16478', 'en', 14044), +(37934, 'Lessons of the war with Spain and other articles', 'Mahan, A. T. (Alfred Thayer)', '2009-03-21', 17, 'https://www.gutenberg.org/ebooks/28377', 'en', 14045), +(37935, 'Bees in Amber: A Little Book of Thoughtful Verse', 'Oxenham, John', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9989', 'en', 8), +(37936, 'Notes and Queries, Number 47, September 21, 1850', 'Various', '2004-11-03', 20, 'https://www.gutenberg.org/ebooks/13936', 'en', 105), +(37937, 'Betty Lee, Sophomore', 'Grove, Harriet Pyne', '2010-12-22', 19, 'https://www.gutenberg.org/ebooks/34728', 'en', 1669), +(37938, 'Madame De Mauves', 'James, Henry', '2005-04-01', 38, 'https://www.gutenberg.org/ebooks/7813', 'en', 705), +(37939, 'La Principessa', 'Jarro', '2006-10-01', 20, 'https://www.gutenberg.org/ebooks/19430', 'it', 860), +(37940, 'The Boy Scouts on Sturgeon Island; or, Marooned Among the Game-fish Poachers', 'Carter, Herbert, active 1909-1917', '2005-05-01', 10, 'https://www.gutenberg.org/ebooks/8067', 'en', 14046), +(37941, 'Joseph Haydn: Servant and Master', 'Peyser, Herbert F. (Herbert Francis)', '2015-07-01', 12, 'https://www.gutenberg.org/ebooks/49340', 'en', 14047), +(37942, 'Fra Contadini', 'Malatesta, Errico', '2015-02-17', 27, 'https://www.gutenberg.org/ebooks/48292', 'it', 11063), +(37943, 'Blackwood\'s Edinburgh Magazine, Volume 59, No. 367, May 1846', 'Various', '2009-11-01', 15, 'https://www.gutenberg.org/ebooks/30388', 'en', 711), +(37944, 'Tales and Fantasies', 'Stevenson, Robert Louis', '1996-02-01', 386, 'https://www.gutenberg.org/ebooks/426', 'en', 61), +(37945, 'Der rote Komet\nWunder der Zukunft. Romane aus dem dritten Jahrtausend. Band 2', 'Heymann, Robert', '2011-11-12', 26, 'https://www.gutenberg.org/ebooks/37991', 'de', 14048), +(37946, 'Scriptural and Hieroglyphic Observations which were foretold in the years of 1750 & 1792\r\nTo which is added a singular account of the emigration of the Jews in 1812', 'Moore, Francis', '2018-04-25', 9, 'https://www.gutenberg.org/ebooks/57048', 'en', 6716), +(37947, 'The Register of Ratlinghope', NULL, '2007-03-28', 13, 'https://www.gutenberg.org/ebooks/20926', 'en', 14049), +(37948, 'Life Without and Life Within; or, Reviews, Narratives, Essays, and Poems.', 'Fuller, Margaret', '2012-03-03', 34, 'https://www.gutenberg.org/ebooks/39037', 'en', 20), +(37949, 'Faustus\nhis Life, Death, and Doom', 'Klinger, Friedrich Maximilian', '2008-05-14', 22, 'https://www.gutenberg.org/ebooks/25468', 'en', 14050), +(37950, 'The Works of Daniel Webster, Volume 1', 'Webster, Daniel', '2011-07-25', 31, 'https://www.gutenberg.org/ebooks/36843', 'en', 5895), +(37951, 'Try and Trust; Or, Abner Holden\'s Bound Boy', 'Alger, Horatio, Jr.', '2004-05-01', 53, 'https://www.gutenberg.org/ebooks/5778', 'en', 195), +(37952, 'Verikosto', 'Balzac, Honoré de', '2018-09-09', 17, 'https://www.gutenberg.org/ebooks/57874', 'fi', 1850), +(37953, 'Araukanien päällikkö: Intiaaniromaani', 'Aimard, Gustave', '2018-10-02', 9, 'https://www.gutenberg.org/ebooks/58000', 'fi', 323), +(37954, 'The Australian Army Medical Corps in Egypt\r\nAn Illustrated and Detailed Account of the Early Organisation and Work of the Australian Medical Units in Egypt in 1914-1915', 'Barrett, James W. (James William), Sir', '2013-01-24', 13, 'https://www.gutenberg.org/ebooks/41911', 'en', 14051), +(37955, 'Punch, or the London Charivari. Volume 1, July 31, 1841', 'Various', '2005-02-07', 18, 'https://www.gutenberg.org/ebooks/14921', 'en', 134), +(37956, 'The Sacred Formulas of the Cherokees\r\nSeventh Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1885-1886, Government Printing Office, Washington, 1891, pages 301-398', 'Mooney, James', '2008-03-09', 92, 'https://www.gutenberg.org/ebooks/24788', 'en', 14052), +(37957, 'Sheep, Swine, and Poultry\r\nEmbracing the History and Varieties of Each; The Best Modes of Breeding; Their Feeding and Management; Together with etc.', 'Jennings, Robert', '2012-03-19', 20, 'https://www.gutenberg.org/ebooks/39205', 'en', 6966), +(37958, 'The American Prisoner', 'Phillpotts, Eden', '2018-11-04', 20, 'https://www.gutenberg.org/ebooks/58232', 'en', 4744), +(37959, 'Simon Dale', 'Hope, Anthony', '2007-01-10', 35, 'https://www.gutenberg.org/ebooks/20328', 'en', 8189), +(37960, 'Miscellaneous Prose', 'Meredith, George', '2003-09-01', 20, 'https://www.gutenberg.org/ebooks/4498', 'en', 20), +(37961, 'A Confession of St. Augustine', 'Howells, William Dean', '2016-08-02', 42, 'https://www.gutenberg.org/ebooks/52708', 'en', 14053), +(37962, 'Λόγοι Φιλιππικοί Θεοδώρου : Δεληγιάννη Απαγγελθέντες εντός και εκτός του Συνδερίου Εμμέτρως δε Διασκευασθέντες', 'Souris, Georgios', '2010-04-01', 18, 'https://www.gutenberg.org/ebooks/31854', 'el', 8746), +(37963, 'Eine Schwierigkeit der Psychoanalyse', 'Freud, Sigmund', '2009-06-11', 35, 'https://www.gutenberg.org/ebooks/29097', 'de', 3640), +(37964, 'Les Ruines, ou méditation sur les révolutions des empires', 'Volney, C.-F. (Constantin-François)', '2009-01-29', 37, 'https://www.gutenberg.org/ebooks/27931', 'fr', 1444), +(37965, 'Attack: An Infantry Subaltern\'s Impression of July 1st, 1916', 'Liveing, Edward G. D. (Edward George Downing)', '2009-02-20', 61, 'https://www.gutenberg.org/ebooks/28145', 'en', 10634), +(37966, 'L\'île à hélice', 'Verne, Jules', '2006-02-19', 32, 'https://www.gutenberg.org/ebooks/17798', 'fr', 108), +(37967, 'De varios colores', 'Valera, Juan', '2010-01-16', 18, 'https://www.gutenberg.org/ebooks/30986', 'es', 2982), +(37968, 'Andrew Jackson', 'Brown, William Garrott', '2010-01-25', 18, 'https://www.gutenberg.org/ebooks/31068', 'en', 1009), +(37969, 'The World English Bible (WEB): Hosea', 'Anonymous', '2005-06-01', 20, 'https://www.gutenberg.org/ebooks/8255', 'en', 14054), +(37970, 'Cavity-Nesting Birds of North American Forests\nAgriculture Handbook 511', 'Stone, Charles P.', '2015-06-09', 18, 'https://www.gutenberg.org/ebooks/49172', 'en', 14055), +(37971, 'Rembrandt\r\nA Collection of Fifteen Pictures and a Portrait of the Painter with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2006-10-22', 39, 'https://www.gutenberg.org/ebooks/19602', 'en', 596), +(37972, 'Palmer\'s Journal of Travels Over the Rocky Mountains, 1845-1846', 'Palmer, Joel', '2014-09-20', 34, 'https://www.gutenberg.org/ebooks/46906', 'en', 1181), +(37973, 'Across the Plains, with Other Memories and Essays', 'Stevenson, Robert Louis', '1996-08-01', 175, 'https://www.gutenberg.org/ebooks/614', 'en', 20), +(37974, 'Lapsia', 'Pakkala, Teuvo', '2004-08-31', 17, 'https://www.gutenberg.org/ebooks/13338', 'fi', 61), +(37975, 'Second Annual Report of the Kensington Church of England District Visiting Society (1846)', 'Anonymous', '2013-08-12', 6, 'https://www.gutenberg.org/ebooks/43448', 'en', 8671), +(37976, 'Child-Life in Japan and Japanese Child Stories', 'Ayrton, Matilda Chaplin', '2009-05-28', 53, 'https://www.gutenberg.org/ebooks/28979', 'en', 14056), +(37977, 'Alien Minds', 'Evans, E. Everett (Edward Everett)', '2016-01-07', 60, 'https://www.gutenberg.org/ebooks/50863', 'en', 9190), +(37978, 'Theresa Marchmont, or, the Maid of Honour: A Tale', 'Gore, Mrs. (Catherine Grace Frances)', '2005-11-01', 23, 'https://www.gutenberg.org/ebooks/9387', 'en', 61), +(37979, 'Uncle Sam\'s Boys with Pershing\'s Troops\r\nOr, Dick Prescott at Grips with the Boche', 'Hancock, H. Irving (Harrie Irving)', '2004-07-03', 29, 'https://www.gutenberg.org/ebooks/12810', 'en', 3466), +(37980, 'Livre d\'amours, auquel est relatee la grant amour et façon par laquelle Pamphille peut jouir de Galathee et le moyen qu\'en fist la maquerelle', 'Anonymous', '2009-06-26', 29, 'https://www.gutenberg.org/ebooks/29251', 'fr', 14057), +(37981, 'The Love Story of Abner Stone', 'Litsey, Edwin Carlile', '2009-03-22', 13, 'https://www.gutenberg.org/ebooks/28383', 'en', 48), +(37982, 'Anzeiger für Kunde der deutschen Vorzeit (1866)\nNeue Folge. Dreizehnter Band.', 'Various', '2015-10-24', 6, 'https://www.gutenberg.org/ebooks/50299', 'de', 8580), +(37983, 'How to Study and Teaching How to Study', 'McMurry, Frank M. (Frank Morton)', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6109', 'en', 341), +(37984, 'The Dog Crusoe and His Master', 'Ballantyne, R. M. (Robert Michael)', '2008-08-01', 7, 'https://www.gutenberg.org/ebooks/26219', 'en', 323), +(37985, 'The Canadian Elocutionist\r\nDesigned for the Use of Colleges, Schools and Self Instruction, Together with a Copious Selection in Prose and Poetry of Pieces Adapted for Reading, Recitation and Practice', 'Howard, Anna K. (Anna Kelsey)', '2005-05-01', 4, 'https://www.gutenberg.org/ebooks/8093', 'en', 3184), +(37986, 'Charles Sumner: his complete works, volume 09 (of 20)', 'Sumner, Charles', '2015-02-15', 7, 'https://www.gutenberg.org/ebooks/48266', 'en', 125), +(37987, 'Het Leven der Dieren: Deel 1, Hoofdstuk 05: Robben; Hoofdstuk 06: Insecteneters', 'Brehm, Alfred Edmund', '2006-06-06', 5, 'https://www.gutenberg.org/ebooks/18516', 'nl', 2360), +(37988, 'The Naturalist\'s Repository, Volume 1 (of 5)\nor Monthly Miscellany of Exotic Natural History: etc. etc.', 'Donovan, E. (Edward)', '2017-05-01', 9, 'https://www.gutenberg.org/ebooks/54639', 'en', 14058), +(37989, 'The Radio Amateur\'s Hand Book\r\nA Complete, Authentic and Informative Work on Wireless Telegraphy and Telephony', 'Collins, A. Frederick (Archie Frederick)', '2004-11-19', 78, 'https://www.gutenberg.org/ebooks/6935', 'en', 14059), +(37990, 'Cæsar\'s Wife: A Comedy in Three Acts', 'Maugham, W. Somerset (William Somerset)', '2011-11-09', 33, 'https://www.gutenberg.org/ebooks/37965', 'en', 2455), +(37991, 'English Society', 'Du Maurier, George', '2011-11-23', 13, 'https://www.gutenberg.org/ebooks/38111', 'en', 14060), +(37992, 'De complete werken van Joost van Vondel. Eerste deel', 'Vondel, Joost van den', '2007-06-11', 11, 'https://www.gutenberg.org/ebooks/21800', 'nl', 2651), +(37993, 'Res Judicatæ: Papers and Essays', 'Birrell, Augustine', '2011-08-22', 9, 'https://www.gutenberg.org/ebooks/37159', 'en', 1694), +(37994, 'Le moyen de parvenir, tome 3/3', 'Béroalde de Verville', '2018-09-09', 9, 'https://www.gutenberg.org/ebooks/57880', 'fr', 7642), +(37995, 'Whoso Findeth a Wife', 'Le Queux, William', '2012-09-22', 15, 'https://www.gutenberg.org/ebooks/40837', 'en', 95), +(37996, 'Faulkner\'s Folly', 'Wells, Carolyn', '2019-03-25', 26, 'https://www.gutenberg.org/ebooks/59126', 'en', 128), +(37997, 'Clear Crystals', 'Beede, Clara Frances McKee', '2005-02-28', 12, 'https://www.gutenberg.org/ebooks/15209', 'en', 8), +(37998, 'Auguste Rodin\nMit 96 Vollbildern', 'Rilke, Rainer Maria', '2014-05-04', 30, 'https://www.gutenberg.org/ebooks/45579', 'de', 3006), +(37999, 'Poèmes et dessins de la fille née sans mère: 18 dessins, 51 poèmes', 'Picabia, Francis', '2018-04-10', 9, 'https://www.gutenberg.org/ebooks/56952', 'fr', 14061), +(38000, 'The Chevalier d\'Auriac', 'Levett Yeats, S. (Sidney)', '2011-12-17', 9, 'https://www.gutenberg.org/ebooks/38323', 'en', 323), +(38001, 'Le Rhin, Tome IV', 'Hugo, Victor', '2012-07-15', 14, 'https://www.gutenberg.org/ebooks/40239', 'fr', 1117), +(38002, 'A Romance of the Republic', 'Child, Lydia Maria', '2003-12-01', 76, 'https://www.gutenberg.org/ebooks/10549', 'en', 2677), +(38003, 'Among the Forces', 'Warren, Henry White', '2005-05-09', 15, 'https://www.gutenberg.org/ebooks/15807', 'en', 2713), +(38004, 'Back to Julie', 'Wilson, Richard', '2010-05-31', 23, 'https://www.gutenberg.org/ebooks/32619', 'en', 26), +(38005, 'Deirdre of the Sorrows', 'Synge, J. M. (John Millington)', '1999-10-01', 32, 'https://www.gutenberg.org/ebooks/1922', 'en', 14062), +(38006, 'Phaidra: 5-näytöksinen runomittainen murhenäytelmä', 'Racine, Jean', '2014-01-18', 31, 'https://www.gutenberg.org/ebooks/44699', 'fi', 14063), +(38007, 'Snowball', 'Anderson, Poul', '2019-04-20', 106, 'https://www.gutenberg.org/ebooks/59314', 'en', 3249), +(38008, 'Barnabé', 'Fabre, Ferdinand', '2016-02-11', 16, 'https://www.gutenberg.org/ebooks/51179', 'fr', 298), +(38009, 'A Historical Survey of the Customs, Habits, & Present State of the Gypsies', 'Hoyland, John', '2009-06-07', 28, 'https://www.gutenberg.org/ebooks/29063', 'en', 5145), +(38010, 'Julia de Trécoeur', 'Feuillet, Octave', '2008-10-07', 12, 'https://www.gutenberg.org/ebooks/26817', 'fr', 687), +(38011, 'In Tune with the Infinite; or, Fullness of Peace, Power, and Plenty', 'Trine, Ralph Waldo', '2007-11-20', 69, 'https://www.gutenberg.org/ebooks/23559', 'en', 43), +(38012, 'Georgia: Its History, Condition and Resources', 'Drake, Samuel Adams', '2015-05-05', 10, 'https://www.gutenberg.org/ebooks/48868', 'en', 14064), +(38013, 'Take the Reason Prisoner', 'McGuire, John Joseph', '2010-01-15', 33, 'https://www.gutenberg.org/ebooks/30972', 'en', 12746), +(38014, 'The Dwelling Place of Light — Complete', 'Churchill, Winston', '2004-10-15', 35, 'https://www.gutenberg.org/ebooks/3649', 'en', 8934), +(38015, 'A Gray Eye or So. In Three Volumes—Volume II', 'Moore, Frank Frankfort', '2016-05-02', 0, 'https://www.gutenberg.org/ebooks/51945', 'en', 3092), +(38016, 'Flaxie Growing Up\nFlaxie Frizzle Stories', 'May, Sophie', '2015-06-10', 14, 'https://www.gutenberg.org/ebooks/49186', 'en', 31), +(38017, 'Die Falkner vom Falkenhof. Zweiter Band.', 'Adlersfeld-Ballestrem, Eufemia von', '2014-12-30', 9, 'https://www.gutenberg.org/ebooks/47820', 'de', 549), +(38018, 'Hokousaï\nL\'art japonais au XVII Siècle', 'Goncourt, Edmond de', '2006-07-01', 19, 'https://www.gutenberg.org/ebooks/18724', 'fr', 14065), +(38019, 'Historical Tours in and about Boston\nCompliments of American Oil Company', 'American Oil Company', '2015-01-23', 11, 'https://www.gutenberg.org/ebooks/48054', 'en', 14066), +(38020, 'Pax Vobiscum', 'Drummond, Henry', '2005-11-01', 18, 'https://www.gutenberg.org/ebooks/9373', 'en', 1130), +(38021, 'The Quest of the Golden Pearl', 'Hutchinson, J. R. (John Robert)', '2016-01-11', 7, 'https://www.gutenberg.org/ebooks/50897', 'en', 8201), +(38022, 'Paint & Colour Mixing\r\nA practical handbook for painters, decorators and all who have to mix colours, containing 72 samples of paint of various colours, including the principal graining grounds', 'Jennings, Arthur Seymour', '2018-03-14', 22, 'https://www.gutenberg.org/ebooks/56738', 'en', 14067), +(38023, 'The Rise of the Dutch Republic — Volume 32: 1582-84', 'Motley, John Lothrop', '2004-01-01', 52, 'https://www.gutenberg.org/ebooks/4834', 'en', 3372), +(38024, 'The Story of Switzerland', 'Stead, Richard', '2012-05-14', 28, 'https://www.gutenberg.org/ebooks/39695', 'en', 14068), +(38025, 'Thrice Armed', 'Bindloss, Harold', '2012-02-01', 17, 'https://www.gutenberg.org/ebooks/38747', 'en', 2079), +(38026, 'Punch, or the London Charivari, May 13, 1914', 'Various', '2008-01-15', 10, 'https://www.gutenberg.org/ebooks/24318', 'en', 134), +(38027, 'Count Julian', 'Landor, Walter Savage', '2003-05-01', 25, 'https://www.gutenberg.org/ebooks/4008', 'en', 14069), +(38028, 'Silver Queen: The Fabulous Story of Baby Doe Tabor', 'Bancroft, Caroline', '2016-06-23', 11, 'https://www.gutenberg.org/ebooks/52398', 'en', 14070), +(38029, 'The Plays of Roswitha', 'Hrotsvitha', '2019-06-17', 25, 'https://www.gutenberg.org/ebooks/59770', 'en', 14071), +(38030, 'Buried Alive: A Tale of These Days', 'Bennett, Arnold', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/10911', 'en', 297), +(38031, 'Middlesex\nPainted by John Fulleylove; described by A.R. Hope Moncrieff', 'Moncrieff, A. R. Hope (Ascott Robert Hope)', '2014-11-27', 22, 'https://www.gutenberg.org/ebooks/47478', 'en', 14072), +(38032, 'Pietari Särkilahti: Historiallinen romaani', 'Ivalo, Santeri', '2017-06-06', 10, 'https://www.gutenberg.org/ebooks/54853', 'fi', 175), +(38033, 'Sunrise', 'Black, William', '2005-12-14', 12, 'https://www.gutenberg.org/ebooks/17308', 'en', 61), +(38034, 'The Valley of Silent Men: A Story of the Three River Country', 'Curwood, James Oliver', '2009-07-14', 46, 'https://www.gutenberg.org/ebooks/29407', 'en', 14073), +(38035, 'Engraving: Its Origin, Processes, and History', 'Delaborde, Henri, comte', '2013-06-13', 14, 'https://www.gutenberg.org/ebooks/42936', 'en', 14074), +(38036, 'The great Galeoto; Folly or saintliness\r\ntwo plays done from the verse of José Echegaray into English prose by Hannah Lynch', 'Echegaray, José', '2017-11-17', 14, 'https://www.gutenberg.org/ebooks/55981', 'en', 14075), +(38037, 'Dilemmas of Pride, (Vol 3 of 3)', 'Loudon, Mrs. (Margracia)', '2011-01-24', 4, 'https://www.gutenberg.org/ebooks/35058', 'en', 61), +(38038, 'The House of Mirth', 'Wharton, Edith', '1995-06-01', 637, 'https://www.gutenberg.org/ebooks/284', 'en', 3305), +(38039, 'L\'ami Fritz', 'Erckmann-Chatrian', '2006-05-07', 22, 'https://www.gutenberg.org/ebooks/18340', 'fr', 3075), +(38040, 'The Rocky Mountain Goat', 'Grant, Madison', '2015-03-08', 23, 'https://www.gutenberg.org/ebooks/48430', 'en', 14076), +(38041, 'The Raven', 'Poe, Edgar Allan', '2007-12-01', 38, 'https://www.gutenberg.org/ebooks/23901', 'en', 2193), +(38042, 'The Lazy Tour of Two Idle Apprentices', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9717', 'en', 6895), +(38043, '`Abdu\'l-Bahá\'s Tablet to Dr. Forel', '`Abdu\'l-Bahá', '2006-09-18', 33, 'https://www.gutenberg.org/ebooks/19292', 'en', 4457), +(38044, 'Charles Lever, His Life in His Letters, Vol. I', 'Lever, Charles James', '2011-04-13', 10, 'https://www.gutenberg.org/ebooks/35864', 'en', 14077), +(38045, 'The Pioneer Boys of the Yellowstone; or, Lost in the Land of Wonders', 'Rathborne, St. George', '2014-09-07', 7, 'https://www.gutenberg.org/ebooks/46798', 'en', 14078), +(38046, 'Thelma', 'Corelli, Marie', '2003-03-01', 37, 'https://www.gutenberg.org/ebooks/3823', 'en', 286), +(38047, 'Dr. Montessori\'s Own Handbook', 'Montessori, Maria', '2009-08-08', 311, 'https://www.gutenberg.org/ebooks/29635', 'en', 4672), +(38048, 'The Early Norman Castles of the British Isles.', 'Armitage, Ella S.', '2015-03-29', 28, 'https://www.gutenberg.org/ebooks/48602', 'en', 5257), +(38049, 'George Cruikshank', 'Thackeray, William Makepeace', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9525', 'en', 1688), +(38050, 'Libro proibito', 'Ghislanzoni, Antonio', '2006-03-03', 35, 'https://www.gutenberg.org/ebooks/17906', 'it', 5509), +(38051, 'An Outline of Occult Science', 'Steiner, Rudolf', '2009-12-20', 186, 'https://www.gutenberg.org/ebooks/30718', 'en', 746), +(38052, 'An ethical philosophy of life presented in its main outlines', 'Adler, Felix', '2019-08-06', 787, 'https://www.gutenberg.org/ebooks/60068', 'en', 2694), +(38053, 'This World Is Taboo', 'Leinster, Murray', '2006-04-14', 65, 'https://www.gutenberg.org/ebooks/18172', 'en', 26), +(38054, 'L\'Orco', 'Sand, George', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12448', 'fr', 179), +(38055, 'Klingsors letzter Sommer', 'Hesse, Hermann', '2013-03-15', 85, 'https://www.gutenberg.org/ebooks/42338', 'de', 549), +(38056, 'Selected Articles on the Parcels Post', NULL, '2016-09-06', 15, 'https://www.gutenberg.org/ebooks/52996', 'en', 12770), +(38057, 'The Mahogany Tree', 'Thackeray, William Makepeace', '2014-06-11', 21, 'https://www.gutenberg.org/ebooks/45921', 'en', 586), +(38058, 'Other People\'s Money', 'Gaboriau, Emile', '1999-05-01', 76, 'https://www.gutenberg.org/ebooks/1748', 'en', 128), +(38059, 'Strange Stories', 'Allen, Grant', '2012-01-15', 68, 'https://www.gutenberg.org/ebooks/38575', 'en', 61), +(38060, 'The Land of Oz', 'Baum, L. Frank (Lyman Frank)', '2016-12-30', 53, 'https://www.gutenberg.org/ebooks/53844', 'en', 1889), +(38061, 'Charley Laurel: A Story of Adventure by Sea and Land', 'Kingston, William Henry Giles', '2007-05-15', 21, 'https://www.gutenberg.org/ebooks/21458', 'en', 246), +(38062, 'Index of the Project Gutenberg Works of George Barr McCutcheon', 'McCutcheon, George Barr', '2019-05-18', 13, 'https://www.gutenberg.org/ebooks/59542', 'en', 198), +(38063, 'Portugal perante a revolução de Hespanha\r\nConsiderações sobre o futuro da politica portugueza no ponto de vista da democracia iberica', 'Quental, Antero de', '2010-06-18', 5, 'https://www.gutenberg.org/ebooks/32873', 'pt', 14079), +(38064, 'Crown and Anchor\nUnder the Pen\'ant', 'Hutcheson, John C. (John Conroy)', '2008-03-25', 17, 'https://www.gutenberg.org/ebooks/24916', 'en', 3535), +(38065, 'The American Missionary — Volume 32, No. 04, April 1878', 'Various', '2016-09-18', 2, 'https://www.gutenberg.org/ebooks/53078', 'en', 562), +(38066, 'The Apothecary in Eighteenth-Century Williamsburg\r\nBeing an Account of his medical and chirurgical Services, as well as of his trade Practices as a Chymist', 'Ford, Thomas K.', '2018-12-17', 20, 'https://www.gutenberg.org/ebooks/58490', 'en', 14080), +(38067, 'The Malefactor', 'Oppenheim, E. Phillips (Edward Phillips)', '1998-05-01', 38, 'https://www.gutenberg.org/ebooks/1314', 'en', 128), +(38068, 'Armenian Legends and Festivals', 'Boettiger, Louis A. (Louis Angelo)', '2011-11-25', 19, 'https://www.gutenberg.org/ebooks/38129', 'en', 14081), +(38069, 'The Missing Formula\nMadge Sterling Series, #1', 'Wirt, Mildred A. (Mildred Augustine)', '2012-06-18', 29, 'https://www.gutenberg.org/ebooks/40033', 'en', 5251), +(38070, 'Moonfleet', 'Falkner, John Meade', '2004-01-01', 283, 'https://www.gutenberg.org/ebooks/10743', 'en', 323), +(38071, 'Hajamietteitä kapinaviikoilta 2/3\r\nKolmas ja neljäs viikko', 'Aho, Juhani', '2018-05-03', 4, 'https://www.gutenberg.org/ebooks/57084', 'fi', 14082), +(38072, 'An Interpretation of Friends Worship', 'Toomer, Jean', '2008-02-11', 65, 'https://www.gutenberg.org/ebooks/24576', 'en', 14083), +(38073, 'Venus im Pelz', 'Sacher-Masoch, Leopold, Ritter von', '2017-12-10', 114, 'https://www.gutenberg.org/ebooks/56156', 'de', 14084), +(38074, 'Driftwood Spars\r\nThe Stories of a Man, a Boy, a Woman, and Certain Other People Who Strangely Met Upon the Sea of Life', 'Wren, Percival Christopher', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11691', 'en', 1736), +(38075, 'Which? Or, Between Two Women', 'Daudet, Ernest', '2007-06-14', 16, 'https://www.gutenberg.org/ebooks/21838', 'en', 847), +(38076, 'Stories of the Cave People', 'Marcy, Mary', '2019-07-15', 338, 'https://www.gutenberg.org/ebooks/59922', 'en', 8166), +(38077, 'At the Post', 'Gold, H. L. (Horace Leonard)', '2010-05-18', 41, 'https://www.gutenberg.org/ebooks/32413', 'en', 705), +(38078, 'Άννα Καρένιν', 'Tolstoy, Leo, graf', '2012-02-18', 35, 'https://www.gutenberg.org/ebooks/38915', 'el', 6360), +(38079, 'The Life of Robert, Lord Clive, Vol. 1 (of 3)\r\nCollected from the Family Papers Communicated by the Earl of Powis', 'Malcolm, John', '2016-11-01', 20, 'https://www.gutenberg.org/ebooks/53424', 'en', 2957), +(38080, 'The Girls of St. Cyprian\'s: A Tale of School Life', 'Brazil, Angela', '2011-08-22', 25, 'https://www.gutenberg.org/ebooks/37161', 'en', 2154), +(38081, 'History of Civilization in England, Vol. 1 of 3', 'Buckle, Henry Thomas', '2013-12-28', 30, 'https://www.gutenberg.org/ebooks/44493', 'en', 10455), +(38082, 'The Art of Inventing', 'Prindle, Edwin J. (Edwin Jay)', '2014-04-30', 18, 'https://www.gutenberg.org/ebooks/45541', 'en', 1739), +(38083, 'Letters from an American Farmer', 'St. John de Crèvecoeur, J. Hector', '2003-11-01', 175, 'https://www.gutenberg.org/ebooks/4666', 'en', 14085), +(38084, 'The Singing Mouse Stories', 'Hough, Emerson', '2007-04-07', 31, 'https://www.gutenberg.org/ebooks/21004', 'en', 625), +(38085, 'The American Missionary — Volume 44, No. 02, February, 1890', 'Various', '2005-03-02', 8, 'https://www.gutenberg.org/ebooks/15231', 'en', 562), +(38086, 'Nina Balatka', 'Trollope, Anthony', '2005-09-01', 30, 'https://www.gutenberg.org/ebooks/8897', 'en', 3928), +(38087, 'La victime', 'Vandérem, Fernand', '2016-03-05', 3, 'https://www.gutenberg.org/ebooks/51373', 'fr', 259), +(38088, 'A Succinct View of the Importance and Practicability of Forming a Ship Canal across the Isthmus of Panama', 'Hill, H. R.', '2009-06-29', 16, 'https://www.gutenberg.org/ebooks/29269', 'en', 14086), +(38089, 'The Life and Public Service of General Zachary Taylor: An Address', 'Lincoln, Abraham', '2007-09-20', 10, 'https://www.gutenberg.org/ebooks/22681', 'en', 1433), +(38090, 'Two Ghostly Mysteries\nA Chapter in the History of a Tyrone Family; and the Murdered Cousin', 'Le Fanu, Joseph Sheridan', '2004-07-06', 40, 'https://www.gutenberg.org/ebooks/12828', 'en', 669), +(38091, 'Narzißmus als Doppelrichtung', 'Andreas-Salomé, Lou', '2011-03-20', 52, 'https://www.gutenberg.org/ebooks/35636', 'de', 1151), +(38092, 'The Building of Castello de San Marcos\nNational Park Service Interpretive Series, History No. 1', 'Manucy, Albert C.', '2014-10-28', 13, 'https://www.gutenberg.org/ebooks/47216', 'en', 14087), +(38093, 'Wonders of Creation: A Descriptive Account of Volcanoes and Their Phenomena', 'Anonymous', '2004-07-01', 21, 'https://www.gutenberg.org/ebooks/6131', 'en', 14088), +(38094, 'The Diverting History of John Gilpin', 'Cowper, William', '2007-12-06', 4, 'https://www.gutenberg.org/ebooks/23753', 'en', 54), +(38095, 'Histoire de la Révolution française, Tome 01', 'Thiers, Adolphe', '2006-02-01', 25, 'https://www.gutenberg.org/ebooks/9945', 'fr', 1536), +(38096, 'The Shoulders of Atlas: A Novel', 'Freeman, Mary Eleanor Wilkins', '2006-01-21', 30, 'https://www.gutenberg.org/ebooks/17566', 'en', 539), +(38097, 'The Book of the Thousand Nights and a Night — Volume 09', NULL, '2002-09-01', 80, 'https://www.gutenberg.org/ebooks/3443', 'en', 3347), +(38098, 'The Ethnology of the British Colonies and Dependencies', 'Latham, R. G. (Robert Gordon)', '2010-02-16', 14, 'https://www.gutenberg.org/ebooks/31296', 'en', 7033), +(38099, 'The Ethics of Medical Homicide and Mutilation', 'O\'Malley, Austin', '2013-05-22', 17, 'https://www.gutenberg.org/ebooks/42764', 'en', 14089), +(38100, 'The Lives of the Poets of Great Britain and Ireland (1753) Volume IV.', 'Cibber, Theophilus', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/12014', 'en', 7656), +(38101, 'The Golden Road', 'Montgomery, L. M. (Lucy Maud)', '2008-08-01', 38, 'https://www.gutenberg.org/ebooks/26221', 'en', 14090), +(38102, 'A Treasury of Canadian Verse, with Brief Biographical Notes', NULL, '2017-04-25', 9, 'https://www.gutenberg.org/ebooks/54601', 'en', 28), +(38103, 'Grimms\' Fairy Tales', 'Grimm, Jacob', '2001-04-01', 4981, 'https://www.gutenberg.org/ebooks/2591', 'en', 900), +(38104, 'The Bride of the Mistletoe', 'Allen, James Lane', '2005-10-01', 10, 'https://www.gutenberg.org/ebooks/9179', 'en', 1061), +(38105, 'The Fortunate Mistress (Parts 1 and 2)\r\nor a History of the Life of Mademoiselle de Beleau Known by the Name of the Lady Roxana', 'Defoe, Daniel', '2009-10-27', 170, 'https://www.gutenberg.org/ebooks/30344', 'en', 98), +(38106, 'Les petites filles modèles', 'Ségur, Sophie, comtesse de', '2011-02-26', 36, 'https://www.gutenberg.org/ebooks/35404', 'fr', 168), +(38107, 'Verses for Children, and Songs for Music', 'Ewing, Juliana Horatia Gatty', '2005-09-12', 16, 'https://www.gutenberg.org/ebooks/16686', 'en', 14091), +(38108, 'The Bright Shawl', 'Hergesheimer, Joseph', '2010-04-06', 19, 'https://www.gutenberg.org/ebooks/31898', 'en', 11419), +(38109, 'Charlie Bell, The Waif of Elm Island', 'Kellogg, Elijah', '2016-02-07', 16, 'https://www.gutenberg.org/ebooks/51141', 'en', 3334), +(38110, 'Birds and Nature, Vol. 10 No. 3 [October 1901]', 'Various', '2015-09-15', 9, 'https://www.gutenberg.org/ebooks/49982', 'en', 490), +(38111, 'My Friends the Savages\nNotes and Observations of a Perak settler (Malay Peninsula)', 'Cerruti, Giovanni Battista', '2009-02-25', 14, 'https://www.gutenberg.org/ebooks/28189', 'en', 14092), +(38112, 'Il codice di Perelà', 'Palazzeschi, Aldo', '2015-05-02', 45, 'https://www.gutenberg.org/ebooks/48850', 'it', 580), +(38113, 'Anchorite', 'Garrett, Randall', '2007-11-20', 50, 'https://www.gutenberg.org/ebooks/23561', 'en', 26), +(38114, 'Keeping Up with William\r\nIn which the Honorable Socrates Potter Talks of the Relative Merits of Sense Common and Preferred', 'Bacheller, Irving', '2015-09-30', 9, 'https://www.gutenberg.org/ebooks/50093', 'en', 335), +(38115, 'Gustavus Vasa\nand other poems', 'Walker, William Sidney', '2006-02-12', 9, 'https://www.gutenberg.org/ebooks/17754', 'en', 8), +(38116, 'Appletons\' Popular Science Monthly, December 1899\nVol. LVI, November, 1899 to April, 1900', 'Various', '2014-10-02', 22, 'https://www.gutenberg.org/ebooks/47024', 'en', 210), +(38117, 'The Duel Between France and Germany', 'Sumner, Charles', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6303', 'en', 3798), +(38118, 'What eight million women want', 'Dorr, Rheta Childe', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12226', 'en', 1619), +(38119, 'Northern Nut Growers Association Report of the Proceedings at the 41st Annual Meeting\nPleasant Valley, New York, August 28, 29 and 30, 1950', NULL, '2008-07-09', 6, 'https://www.gutenberg.org/ebooks/26013', 'en', 8570), +(38120, 'Christie Johnstone: A Novel', 'Reade, Charles', '2003-01-01', 22, 'https://www.gutenberg.org/ebooks/3671', 'en', 5681), +(38121, 'Filipino Popular Tales', NULL, '2005-06-01', 126, 'https://www.gutenberg.org/ebooks/8299', 'en', 14093), +(38122, 'Notes and Queries, Index of Volume 5, January-June, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-08-30', 9, 'https://www.gutenberg.org/ebooks/29867', 'en', 105), +(38123, 'Girls of the True Blue', 'Meade, L. T.', '2013-04-18', 30, 'https://www.gutenberg.org/ebooks/42556', 'en', 14094), +(38124, 'Beauty and the Beast: An Essay in Evolutionary Aesthetic', 'McDowall, Stewart Andrew', '2013-08-16', 14, 'https://www.gutenberg.org/ebooks/43484', 'en', 2250), +(38125, 'O Carrasco de Victor Hugo José Alves', 'Castelo Branco, Camilo', '2009-10-04', 16, 'https://www.gutenberg.org/ebooks/30176', 'pt', 3856), +(38126, 'Diesseits: Erzählungen', 'Hesse, Hermann', '2014-12-30', 76, 'https://www.gutenberg.org/ebooks/47818', 'de', 179), +(38127, '西海紀遊草', 'Lin, Zhen', '2017-03-26', 21, 'https://www.gutenberg.org/ebooks/54433', 'en', 885), +(38128, 'The Old Man of the Sea\nShip\'s Company, Part 11.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 216, 'https://www.gutenberg.org/ebooks/10571', 'en', 1902), +(38129, 'The Valley of the Kings', 'Pickthall, Marmaduke William', '2008-03-03', 20, 'https://www.gutenberg.org/ebooks/24744', 'en', 7280), +(38130, 'Measure for Measure', 'Shakespeare, William', '1997-12-01', 133, 'https://www.gutenberg.org/ebooks/1126', 'en', 907), +(38131, 'Things seen in Spain', 'Hartley, C. Gasquoine (Catherine Gasquoine)', '2012-07-10', 21, 'https://www.gutenberg.org/ebooks/40201', 'en', 4023), +(38132, 'Napoléon et Alexandre Ier (3/3)\nL\'alliance russe sous le premier Empire', 'Vandal, Albert', '2010-05-31', 5, 'https://www.gutenberg.org/ebooks/32621', 'fr', 14095), +(38133, '抱朴子', 'Ge, Hong', '2008-06-04', 41, 'https://www.gutenberg.org/ebooks/25696', 'zh', 3892), +(38134, 'The Flight of Georgiana: A Story of Love and Peril in England in 1746', 'Stephens, Robert Neilson', '2018-01-13', 19, 'https://www.gutenberg.org/ebooks/56364', 'en', 14096), +(38135, 'Stories of Great Musicians', 'Scobey, Kathrine Lois', '2011-09-08', 25, 'https://www.gutenberg.org/ebooks/37353', 'en', 14097), +(38136, 'In the Blue Pike — Volume 03', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5586', 'en', 803), +(38137, 'The Jesus Problem: A Restatement of the Myth Theory', 'Robertson, J. M. (John Mackinnon)', '2016-11-27', 12, 'https://www.gutenberg.org/ebooks/53616', 'en', 3941), +(38138, 'The Boy Hunters', 'Reid, Mayne', '2007-04-27', 38, 'https://www.gutenberg.org/ebooks/21236', 'en', 676), +(38139, 'Draft of a Plan for Beginning Animal Sanctuaries in Labrador', 'Wood, William', '2005-02-09', 22, 'https://www.gutenberg.org/ebooks/15003', 'en', 14098), +(38140, 'A Proclamation Declaring His Maiesties Pleasure Concerning the Dissoluing of the Present Conuention of Parliament', 'James I, King of England', '2014-05-26', 14, 'https://www.gutenberg.org/ebooks/45773', 'en', 14099), +(38141, 'The Slayer of Souls', 'Chambers, Robert W. (Robert William)', '2011-05-30', 54, 'https://www.gutenberg.org/ebooks/36281', 'en', 2827), +(38142, 'Beauchamp\'s Career — Volume 2', 'Meredith, George', '2003-09-01', 12, 'https://www.gutenberg.org/ebooks/4454', 'en', 137), +(38143, 'Elegias', 'Pascoais, Teixeira de', '2007-10-20', 20, 'https://www.gutenberg.org/ebooks/23105', 'pt', 1638), +(38144, 'History of Egypt From 330 B.C. To the Present Time, Volume 10 (of 12)', 'Rappoport, A. S. (Angelo Solomon)', '2005-12-16', 26, 'https://www.gutenberg.org/ebooks/17330', 'en', 7030), +(38145, 'Der Weltuntergang: Eine Phantasie aus dem Jahre 1900', 'Chiavacci, Vinzenz', '2014-11-23', 27, 'https://www.gutenberg.org/ebooks/47440', 'de', 2203), +(38146, 'Formation of the Union, 1750-1829', 'Hart, Albert Bushnell', '2004-10-01', 22, 'https://www.gutenberg.org/ebooks/6767', 'en', 1720), +(38147, 'Santal Folk Tales', 'Campbell, A., of the Santal mission', '2011-01-24', 25, 'https://www.gutenberg.org/ebooks/35060', 'en', 8566), +(38148, 'Center Rush Rowland', 'Barbour, Ralph Henry', '2014-08-15', 11, 'https://www.gutenberg.org/ebooks/46592', 'en', 2154), +(38149, 'The Influence of Darwin on Philosophy, and other essays in contemporary thought', 'Dewey, John', '2016-03-22', 47, 'https://www.gutenberg.org/ebooks/51525', 'en', 4402), +(38150, 'La fille de Dosia', 'Gréville, Henry', '2007-12-20', 7, 'https://www.gutenberg.org/ebooks/23939', 'fr', 61), +(38151, 'Letters from the Alleghany Mountains', 'Lanman, Charles', '2015-03-05', 8, 'https://www.gutenberg.org/ebooks/48408', 'en', 3172), +(38152, 'Le Tour du Monde; De Tolède à Grenade\nJournal des voyages et des voyageurs; 2e Sem. 1905', 'Various', '2009-11-21', 11, 'https://www.gutenberg.org/ebooks/30512', 'fr', 1673), +(38153, 'Catholic Problems in Western Canada', 'Daly, George Thomas', '2006-05-11', 13, 'https://www.gutenberg.org/ebooks/18378', 'en', 14100), +(38154, 'Life And Letters Of John Gay (1685-1732), Author of \"The Beggar\'s Opera\"', 'Melville, Lewis', '2004-10-19', 14, 'https://www.gutenberg.org/ebooks/13790', 'en', 2896), +(38155, 'Soldiers of the Legion, Trench-Etched', 'Bowe, John', '2017-01-27', 8, 'https://www.gutenberg.org/ebooks/54057', 'en', 449), +(38156, 'Some Principles of Frontier Mountain Warfare', 'Bird, W. D. (Wilkinson Dent)', '2017-07-24', 7, 'https://www.gutenberg.org/ebooks/55185', 'en', 1359), +(38157, 'The Lady\'s Album of Fancy Work for 1850\r\nConsisting of Novel, Elegant, and Useful Designs in Knitting, Netting, Crochet, Braiding, and Embroidery, with Clear and Explicit Directions for Working the Patterns', 'Unknown', '2004-06-01', 134, 'https://www.gutenberg.org/ebooks/12642', 'en', 14101), +(38158, 'Observations on the Florid Song; Or, Sentiments on the Ancient and Modern Singers', 'Tosi, Pier Francesco', '2008-08-29', 32, 'https://www.gutenberg.org/ebooks/26477', 'en', 14102), +(38159, 'Mr. Honey\'s Insurance Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 30, 'https://www.gutenberg.org/ebooks/3215', 'de', 5007), +(38160, 'Through Scandinavia to Moscow', 'Edwards, William Seymour', '2013-02-19', 20, 'https://www.gutenberg.org/ebooks/42132', 'en', 581), +(38161, 'Jenny: Roman', 'Undset, Sigrid', '2010-05-04', 52, 'https://www.gutenberg.org/ebooks/32245', 'no', 348), +(38162, '\"Mormon\" Doctrine Plain and Simple; Or, Leaves from the Tree of Life', 'Penrose, Charles W. (Charles William)', '2018-03-07', 21, 'https://www.gutenberg.org/ebooks/56700', 'en', 377), +(38163, 'Two Centuries of Costume in America, Volume 1 (1620-1820)', 'Earle, Alice Morse', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10115', 'en', 14103), +(38164, 'Le chevalier délibéré', 'La Marche, Olivier de', '2008-01-15', 14, 'https://www.gutenberg.org/ebooks/24320', 'fr', 9541), +(38165, 'The Two Noble Kinsmen', 'Shakespeare (spurious and doubtful works)', '1998-11-01', 166, 'https://www.gutenberg.org/ebooks/1542', 'en', 14104), +(38166, 'LRL Accelerators, The 184-Inch Synchrocyclotron', 'Lawrence Radiation Laboratory', '2010-08-10', 32, 'https://www.gutenberg.org/ebooks/33397', 'en', 14105), +(38167, 'Studies in Logical Theory', 'Dewey, John', '2012-09-05', 36, 'https://www.gutenberg.org/ebooks/40665', 'en', 14106), +(38168, 'Klondike Nuggets, and How Two Boys Secured Them', 'Ellis, Edward Sylvester', '2007-06-01', 37, 'https://www.gutenberg.org/ebooks/21652', 'en', 1018), +(38169, 'Devils Tower National Monument, Wyoming (1949)', 'United States. National Park Service', '2019-06-13', 32, 'https://www.gutenberg.org/ebooks/59748', 'en', 13345), +(38170, 'The First Soprano', 'Hitchcock, Mary', '2005-03-26', 10, 'https://www.gutenberg.org/ebooks/15467', 'en', 14107), +(38171, 'A Memorial of Mrs. Margaret Breckinridge', 'Breckinridge, John', '2014-04-05', 0, 'https://www.gutenberg.org/ebooks/45317', 'en', 14108), +(38172, 'Travellers\' Stories', 'Follen, Eliza Lee Cabot', '2003-05-01', 12, 'https://www.gutenberg.org/ebooks/4030', 'en', 3608), +(38173, 'The Dog Crusoe and His Master: A Story of Adventure in the Western Prairies', 'Ballantyne, R. M. (Robert Michael)', '2004-02-01', 74, 'https://www.gutenberg.org/ebooks/10929', 'en', 323), +(38174, 'A History of the Republican Party', 'Platt, George Washington', '2011-10-12', 5, 'https://www.gutenberg.org/ebooks/37737', 'en', 1291), +(38175, 'Säätynsä uhri', 'Wharton, Edith', '2016-10-13', 54, 'https://www.gutenberg.org/ebooks/53272', 'fi', 1061), +(38176, 'Heimatlos\nGeschichten für Kinder und auch für solche, welche die\nKinder lieb haben, 1. Band', 'Spyri, Johanna', '2007-03-08', 38, 'https://www.gutenberg.org/ebooks/20780', 'de', 2166), +(38177, 'Grif: A Story of Australian Life', 'Farjeon, B. L. (Benjamin Leopold)', '2014-06-09', 14, 'https://www.gutenberg.org/ebooks/45919', 'en', 792), +(38178, 'Tanár úr kérem: Képek a középiskolából', 'Karinthy, Frigyes', '2018-02-09', 23, 'https://www.gutenberg.org/ebooks/56532', 'hu', 9308), +(38179, 'Amerikanische Wald- und Strombilder. Zweiter Band.', 'Gerstäcker, Friedrich', '2012-12-09', 4, 'https://www.gutenberg.org/ebooks/41585', 'de', 138), +(38180, 'Breeder Reaction', 'Marks, Winston K. (Winston Kinney)', '2010-04-21', 33, 'https://www.gutenberg.org/ebooks/32077', 'en', 179), +(38181, 'King Edward III', 'Shakespeare (spurious and doubtful works)', '1999-06-01', 72, 'https://www.gutenberg.org/ebooks/1770', 'en', 14109), +(38182, 'Comparative Studies in Nursery Rhymes', 'Eckenstein, Lina', '2012-08-08', 11, 'https://www.gutenberg.org/ebooks/40457', 'en', 9843), +(38183, 'Alias the Lone Wolf', 'Vance, Louis Joseph', '2003-11-01', 41, 'https://www.gutenberg.org/ebooks/10327', 'en', 3657), +(38184, '人間詞話', 'Wang, Guowei', '2008-01-02', 32, 'https://www.gutenberg.org/ebooks/24112', 'zh', 14110), +(38185, 'The Story of Slavery', 'Washington, Booker T.', '2014-03-13', 30, 'https://www.gutenberg.org/ebooks/45125', 'en', 125), +(38186, 'Quotations from Diary of Samuel Pepys', 'Pepys, Samuel', '2003-07-01', 12, 'https://www.gutenberg.org/ebooks/4202', 'en', 1026), +(38187, 'The Ferryman of Brill, and Other Stories', 'Kingston, William Henry Giles', '2007-05-15', 13, 'https://www.gutenberg.org/ebooks/21460', 'en', 179), +(38188, 'Four Little Blossoms and Their Winter Fun', 'Hawley, Mabel C.', '2005-04-19', 39, 'https://www.gutenberg.org/ebooks/15655', 'en', 13482), +(38189, 'William Nelson: A Memoir', 'Wilson, Daniel, Sir', '2016-05-30', 8, 'https://www.gutenberg.org/ebooks/52192', 'en', 5476), +(38190, 'The Art of Living', 'Grant, Robert', '2016-09-12', 23, 'https://www.gutenberg.org/ebooks/53040', 'en', 14111), +(38191, 'Punch, Or The London Charivari, Volume 102, July 2, 1892', 'Various', '2005-01-24', 6, 'https://www.gutenberg.org/ebooks/14787', 'en', 134), +(38192, 'The Bondman: A New Saga', 'Caine, Hall, Sir', '2010-10-07', 28, 'https://www.gutenberg.org/ebooks/33999', 'en', 11778), +(38193, 'A Short Narrative of the Life and Actions of His Grace John, D. of Marlborogh', 'Defoe, Daniel', '2011-09-22', 24, 'https://www.gutenberg.org/ebooks/37505', 'en', 14112), +(38194, 'Harper\'s Young People, May 24, 1881\nAn Illustrated Weekly', 'Various', '2014-12-16', 5, 'https://www.gutenberg.org/ebooks/47672', 'en', 479), +(38195, 'Encomium Artis Medicae: De Lof Der Geneeskunde', 'Erasmus, Desiderius', '2006-08-03', 13, 'https://www.gutenberg.org/ebooks/18976', 'la', 13020), +(38196, 'The Call of the Wildflower', 'Salt, Henry S.', '2010-11-21', 38, 'https://www.gutenberg.org/ebooks/34380', 'en', 14113), +(38197, 'De Profundis', 'Wilde, Oscar', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6555', 'en', 3478), +(38198, 'Tight Squeeze', 'Ing, Dean Charles', '2007-11-05', 50, 'https://www.gutenberg.org/ebooks/23337', 'en', 26), +(38199, 'An Elegy on the Death of a Mad Dog', 'Goldsmith, Oliver', '2005-11-19', 39, 'https://www.gutenberg.org/ebooks/17102', 'en', 5509), +(38200, 'Tekla: A Romance of Love and War', 'Barr, Robert', '2016-04-10', 28, 'https://www.gutenberg.org/ebooks/51717', 'en', 61), +(38201, 'Under a Charm: A Novel. Vol. II', 'Werner, E.', '2011-02-12', 4, 'https://www.gutenberg.org/ebooks/35252', 'en', 803), +(38202, 'Count Alarcos; a Tragedy', 'Disraeli, Benjamin, Earl of Beaconsfield', '2005-02-01', 28, 'https://www.gutenberg.org/ebooks/7487', 'en', 1281), +(38203, 'Vital Ingredient', 'Vance, Gerald', '2009-01-21', 34, 'https://www.gutenberg.org/ebooks/27797', 'en', 26), +(38204, 'The Book of Herbs', 'Northcote, Rosalind', '2019-08-03', 1927, 'https://www.gutenberg.org/ebooks/60050', 'en', 5504), +(38205, 'Luck and Pluck; or, John Oakley\'s Inheritance', 'Alger, Horatio, Jr.', '2017-03-01', 16, 'https://www.gutenberg.org/ebooks/54265', 'en', 9066), +(38206, 'Happy Days for Boys and Girls', 'Various', '2009-12-20', 12, 'https://www.gutenberg.org/ebooks/30720', 'en', 859), +(38207, 'The Orange Fairy Book', 'Lang, Andrew', '2002-01-01', 173, 'https://www.gutenberg.org/ebooks/3027', 'en', 1223), +(38208, 'Œuvres Complètes de Frédéric Bastiat, tome 2\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2013-03-10', 27, 'https://www.gutenberg.org/ebooks/42300', 'fr', 1745), +(38209, 'Christmas in Ritual and Tradition, Christian and Pagan', 'Miles, Clement A.', '2006-08-21', 49, 'https://www.gutenberg.org/ebooks/19098', 'en', 4324), +(38210, 'A Perilous Secret', 'Reade, Charles', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12470', 'en', 61), +(38211, 'Two Daring Young Patriots; or, Outwitting the Huns', 'Shervill, W. P.', '2008-09-17', 7, 'https://www.gutenberg.org/ebooks/26645', 'en', 14114), +(38212, 'White Wings: A Yachting Romance, Volume I', 'Black, William', '2013-09-27', 10, 'https://www.gutenberg.org/ebooks/43828', 'en', 7372), +(38213, 'L\'Exilee', 'Delly, pseud.', '2009-04-06', 12, 'https://www.gutenberg.org/ebooks/28519', 'fr', 687), +(38214, 'The Chautauquan, Vol. 03, July 1883', 'Chautauqua Literary and Scientific Circle', '2015-11-07', 8, 'https://www.gutenberg.org/ebooks/50403', 'en', 1115), +(38215, 'The Bride of Messina, and On the Use of the Chorus in Tragedy', 'Schiller, Friedrich', '2004-12-08', 36, 'https://www.gutenberg.org/ebooks/6793', 'en', 402), +(38216, 'Wilson\'s Tales of the Borders and of Scotland, Volume 07', NULL, '2010-10-27', 12, 'https://www.gutenberg.org/ebooks/34146', 'en', 3672), +(38217, 'Ernest Maltravers — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7641', 'en', 137), +(38218, 'The Art of English Poetry (1708)', 'Bysshe, Edward, active 1702-1712', '2011-01-28', 9, 'https://www.gutenberg.org/ebooks/35094', 'en', 3501), +(38219, 'The Crime Club', 'Holt-White, W. (William)', '2014-08-12', 51, 'https://www.gutenberg.org/ebooks/46566', 'en', 61), +(38220, 'The American Missionary — Volume 50, No. 08, August, 1896', 'Various', '2005-07-06', 8, 'https://www.gutenberg.org/ebooks/16216', 'en', 395), +(38221, 'The Scottish Reformation\nIts Epochs, Episodes, Leaders, and Distinctive Characteristics', 'Mitchell, Alexander F. (Alexander Ferrier)', '2007-07-09', 34, 'https://www.gutenberg.org/ebooks/22023', 'en', 7909), +(38222, '晁氏儒言 一卷', 'Chao, Yuezhi', '2013-06-22', 9, 'https://www.gutenberg.org/ebooks/43014', 'zh', 5867), +(38223, 'Critical and Historical Essays — Volume 2', 'Macaulay, Thomas Babington Macaulay, Baron', '2000-09-01', 43, 'https://www.gutenberg.org/ebooks/2333', 'en', 1694), +(38224, 'Hannibal\nMakers of History', 'Abbott, Jacob', '2008-12-17', 116, 'https://www.gutenberg.org/ebooks/27551', 'en', 14115), +(38225, 'The Art of Letters', 'Lynd, Robert', '2004-10-16', 25, 'https://www.gutenberg.org/ebooks/13764', 'en', 1694), +(38226, 'Webster\'s Unabridged Dictionary (2nd 100 Pages)', 'Webster, Noah', '1995-04-01', 41, 'https://www.gutenberg.org/ebooks/248', 'en', 1481), +(38227, 'Der abenteuerliche Simplicissimus', 'Grimmelshausen, Hans Jakob Christoph von', '2017-07-22', 74, 'https://www.gutenberg.org/ebooks/55171', 'de', 5126), +(38228, 'Betuwsche novellen, en Een reisgezelschap', 'Cremer, Jacobus Jan', '2008-08-29', 12, 'https://www.gutenberg.org/ebooks/26483', 'nl', 319); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(38229, 'Η Βαβυλωνία ή η κατά τόπους διαφθορά της ελληνικής γλώσσης\r\nΚωμωδία εις πέντε πράξεις', 'Vyzantios, D. K. (Demetrios Konstantinou)', '2010-02-27', 18, 'https://www.gutenberg.org/ebooks/31434', 'el', 14116), +(38230, 'A Midsummer Night\'s Dream', 'Shakespeare, William', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8609', 'en', 907), +(38231, 'Pintoricchio', 'Phillipps, Evelyn March', '2012-12-31', 13, 'https://www.gutenberg.org/ebooks/41743', 'en', 14117), +(38232, 'Ethnology of the Ungava District, Hudson Bay Territory\r\nEleventh Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1889-1890, Government Printing Office, Washington, 1894, pages 159-350', 'Turner, Lucien M. (Lucien McShan)', '2012-05-09', 24, 'https://www.gutenberg.org/ebooks/39659', 'en', 14118), +(38233, 'Rollo\'s Philosophy. [Air]', 'Abbott, Jacob', '2008-04-27', 19, 'https://www.gutenberg.org/ebooks/25206', 'en', 14119), +(38234, 'The Angel over the Right Shoulder\nThe Beginning of a New Year', 'Trusta, H.', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/11033', 'en', 14120), +(38235, 'Index of the Project Gutenberg Works of Frank E. Smedley', 'Smedley, Frank E. (Frank Edward)', '2018-08-02', 13, 'https://www.gutenberg.org/ebooks/57626', 'en', 198), +(38236, 'The Poetical Works of Elizabeth Barrett Browning, Volume 2', 'Browning, Elizabeth Barrett', '2010-08-06', 35, 'https://www.gutenberg.org/ebooks/33363', 'en', 8010), +(38237, 'Kidnapping in the Pacific; Or, The Adventures of Boas Ringdon\r\nA long four-part Yarn', 'Kingston, William Henry Giles', '2012-09-06', 6, 'https://www.gutenberg.org/ebooks/40691', 'en', 12062), +(38238, 'The Story of Our Flag, Colonial and National\r\nWith Historical Sketch of the Quakeress Betsy Ross', 'Weaver, Addie Guthrie', '2016-06-16', 12, 'https://www.gutenberg.org/ebooks/52354', 'en', 1618), +(38239, 'The Lancashire Witches: A Romance of Pendle Forest', 'Ainsworth, William Harrison', '2005-03-29', 100, 'https://www.gutenberg.org/ebooks/15493', 'en', 46), +(38240, 'Bible Stories and Pictures. From the Old and New Testaments', 'Anonymous', '2011-07-04', 17, 'https://www.gutenberg.org/ebooks/36611', 'en', 2637), +(38241, 'Pragmatism: A New Name for Some Old Ways of Thinking', 'James, William', '2004-02-01', 369, 'https://www.gutenberg.org/ebooks/5116', 'en', 4402), +(38242, 'The Miraculous Medal: Its Origin, History, Circulation, Results', 'Aladel, Jean Marie', '2013-11-19', 20, 'https://www.gutenberg.org/ebooks/44231', 'en', 14121), +(38243, 'Séance De L\'académie Française Du 2 Mai 1901\nDiscours De Réception De M. Berthelot; Réponse De M. Jules Lemaître', 'Berthelot, M. (Marcellin)', '2004-12-31', 18, 'https://www.gutenberg.org/ebooks/14541', 'fr', 14122), +(38244, 'The Century Illustrated Monthly Magazine (May 1913)\nVol. LXXXVI. New Series: Vol. LXIV. May to October, 1913', 'Various', '2016-10-16', 17, 'https://www.gutenberg.org/ebooks/53286', 'en', 18), +(38245, 'The Shanty Book, Part I, Sailor Shanties', NULL, '2007-03-08', 143, 'https://www.gutenberg.org/ebooks/20774', 'en', 9093), +(38246, 'Report of the Chief Librarian for the Year Ended 31 March 1958: Special Centennial Issue', 'Wilson, J. O.', '2008-04-10', 14, 'https://www.gutenberg.org/ebooks/25034', 'en', 13983), +(38247, 'Punch, or the London Charivari, Volume 156, March 5, 1919', 'Various', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11201', 'en', 134), +(38248, 'Notes on the Book of Deuteronomy, Volume I', 'Mackintosh, Charles Henry', '2012-12-06', 26, 'https://www.gutenberg.org/ebooks/41571', 'en', 11319), +(38249, 'St. Patrick\'s Eve', 'Lever, Charles James', '2010-04-21', 13, 'https://www.gutenberg.org/ebooks/32083', 'en', 14123), +(38250, 'The Marylebone Penny Readings and Their Critics', 'Taylor, Henry', '2017-01-04', 6, 'https://www.gutenberg.org/ebooks/53888', 'en', 14124), +(38251, 'The Expositor\'s Bible: The Gospel of St. John, Vol. I', 'Dods, Marcus', '2010-07-13', 17, 'https://www.gutenberg.org/ebooks/33151', 'en', 5364), +(38252, 'King Henry V', 'Shakespeare, William', '1999-06-01', 30, 'https://www.gutenberg.org/ebooks/1784', 'en', 14125), +(38253, 'Rákóczy fia: Regény', 'Jókai, Mór', '2018-06-29', 6, 'https://www.gutenberg.org/ebooks/57414', 'hu', 234), +(38254, 'History of Friedrich II. of Prussia\r\nFrederick The Great—Complete Table of Contents: 22 Volumes', 'Carlyle, Thomas', '2008-06-16', 119, 'https://www.gutenberg.org/ebooks/25808', 'en', 5033), +(38255, 'The Pony Rider Boys in the Alkali; Or, Finding a Key to the Desert Maze', 'Patchin, Frank Gee', '2011-06-13', 20, 'https://www.gutenberg.org/ebooks/36423', 'en', 14126), +(38256, 'Trapped by Malays: A Tale of Bayonet and Kris', 'Fenn, George Manville', '2007-05-16', 19, 'https://www.gutenberg.org/ebooks/21494', 'en', 14127), +(38257, 'The Case of Wagner\nComplete Works, Volume 8', 'Nietzsche, Friedrich Wilhelm', '2016-05-27', 38, 'https://www.gutenberg.org/ebooks/52166', 'en', 1464), +(38258, 'Viija: Kuvaus Savon kansan elämästä', 'Kauppis-Heikki', '2005-01-24', 8, 'https://www.gutenberg.org/ebooks/14773', 'fi', 41), +(38259, 'The Hand in the Dark', 'Rees, Arthur J. (Arthur John)', '2007-02-08', 54, 'https://www.gutenberg.org/ebooks/20546', 'en', 128), +(38260, 'The Book of Were-Wolves', 'Baring-Gould, S. (Sabine)', '2004-03-01', 142, 'https://www.gutenberg.org/ebooks/5324', 'en', 11201), +(38261, 'Warren Commission (03 of 26): Hearings Vol. III (of 15)', 'United States. Warren Commission', '2013-10-19', 26, 'https://www.gutenberg.org/ebooks/44003', 'en', 5206), +(38262, 'Antikristuksen ihmetyöt', 'Lagerlöf, Selma', '2014-12-17', 14, 'https://www.gutenberg.org/ebooks/47686', 'fi', 2186), +(38263, 'Ulrike: Eine Erzählung', 'Sternheim, Carl', '2010-11-20', 23, 'https://www.gutenberg.org/ebooks/34374', 'de', 179), +(38264, 'The Life of General Francis Marion', 'Weems, M. L. (Mason Locke)', '1997-03-01', 60, 'https://www.gutenberg.org/ebooks/846', 'en', 14128), +(38265, 'Manuel da Maya e os engenheiros militares portugueses no Terramoto de 1755', 'Sepúlveda, Christóvam Ayres de Magalhães', '2006-08-03', 19, 'https://www.gutenberg.org/ebooks/18982', 'pt', 14129), +(38266, 'Around the World on Wheels, for The Inter Ocean\r\nThe Travels and Adventures in Foreign Lands of Mr. and Mrs. H. Darwin McIlrath', 'McIlrath, H. Darwin', '2015-12-06', 12, 'https://www.gutenberg.org/ebooks/50631', 'en', 10819), +(38267, 'The Great Round World and What Is Going On In It, Vol. 1, No. 46, September 23, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-08', 10, 'https://www.gutenberg.org/ebooks/16024', 'en', 1), +(38268, 'Gilian The Dreamer: His Fancy, His Love and Adventure', 'Munro, Neil', '2007-08-01', 16, 'https://www.gutenberg.org/ebooks/22211', 'en', 314), +(38269, 'Lost on the Moon; Or, in Quest of the Field of Diamonds', 'Rockwood, Roy', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7473', 'en', 14130), +(38270, 'The Human Side of Animals', 'Dixon, Royal', '2006-11-17', 27, 'https://www.gutenberg.org/ebooks/19850', 'en', 2560), +(38271, 'A Short History of the Royal Navy, 1217 to 1688', 'Hannay, David', '2014-09-02', 23, 'https://www.gutenberg.org/ebooks/46754', 'en', 8669), +(38272, 'A Journal of a Young Man of Massachusetts, 2nd ed.\nLate A Surgeon On Board An American Privateer, Who Was\nCaptured At Sea By The British, In May, Eighteen Hundred\nAnd Thirteen, And Was Confined First, At Melville Island,\nHalifax, Then At Chatham, In England ... And Last, At\nDartmoor Prison. Interspersed With Observations, Anecdotes\nAnd Remarks, Tending To Illustrate The Moral And Political\nCharacters Of Three Nations. To Which Is Added, A Correct\nEngraving Of Dartmoor Prison, Representing The Massacre\nOf American Prisoners, Written By Himself.', 'Waterhouse, Benjamin', '2009-01-10', 34, 'https://www.gutenberg.org/ebooks/27763', 'en', 14131), +(38273, 'Conscience and Sin: Daily Meditations for Lent, Including Week-days and Sundays', 'Baring-Gould, S. (Sabine)', '2017-03-06', 31, 'https://www.gutenberg.org/ebooks/54291', 'en', 14132), +(38274, 'Behind the Line: A Story of College Life and Football', 'Barbour, Ralph Henry', '2004-09-30', 20, 'https://www.gutenberg.org/ebooks/13556', 'en', 1889), +(38275, 'Dopo il divorzio', 'Deledda, Grazia', '2013-07-16', 99, 'https://www.gutenberg.org/ebooks/43226', 'it', 2083), +(38276, 'History of Friedrich II of Prussia — Volume 01', 'Carlyle, Thomas', '2008-06-16', 66, 'https://www.gutenberg.org/ebooks/2101', 'en', 6848), +(38277, 'Les misères de Londres, 3. La cage aux oiseaux', 'Ponson du Terrail', '2005-10-07', 12, 'https://www.gutenberg.org/ebooks/16818', 'fr', 61), +(38278, 'Twelve Preludes for the Pianoforte Op. 25: I. Prelude in F Major', 'Wright, N. Louise (Nannie Louise)', '2010-03-12', 13, 'https://www.gutenberg.org/ebooks/31606', 'en', 6376), +(38279, 'The Knave of Diamonds', 'Dell, Ethel M. (Ethel May)', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12484', 'en', 48), +(38280, 'Ambassador Morgenthau\'s Story', 'Morgenthau, Henry', '2017-08-11', 30, 'https://www.gutenberg.org/ebooks/55343', 'en', 6183), +(38281, 'Die Deutschen Familiennamen, geschichtlich, geographisch, sprachlich', 'Heintze, Albert', '2019-02-01', 44, 'https://www.gutenberg.org/ebooks/58804', 'de', 14133), +(38282, 'The Development of Armor-piercing Shells (With Suggestions for Their Improvement)', 'De Zafra, Carlos', '2010-08-25', 13, 'https://www.gutenberg.org/ebooks/33535', 'en', 14134), +(38283, 'Napoleon: A Sketch of His Life, Character, Struggles, and Achievements', 'Watson, Thomas E. (Thomas Edward)', '2018-04-29', 17, 'https://www.gutenberg.org/ebooks/57070', 'en', 840), +(38284, 'Field and Forest; Or, The Fortunes of a Farmer', 'Optic, Oliver', '2008-02-11', 17, 'https://www.gutenberg.org/ebooks/24582', 'en', 470), +(38285, 'The Rogue Elephant\nThe Boys\' Big Game Series', 'Whitney, Elliott', '2008-05-12', 12, 'https://www.gutenberg.org/ebooks/25450', 'en', 1023), +(38286, 'Collections and Recollections', 'Russell, George William Erskine', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11665', 'en', 3136), +(38287, 'Solomon and Solomonic Literature', 'Conway, Moncure Daniel', '2012-10-19', 14, 'https://www.gutenberg.org/ebooks/41115', 'en', 14135), +(38288, 'The Sorcery Club', 'O\'Donnell, Elliott', '2004-12-10', 83, 'https://www.gutenberg.org/ebooks/14317', 'en', 114), +(38289, 'The American Missionary — Volume 36, No. 7, July, 1882', 'Various', '2018-10-06', 2, 'https://www.gutenberg.org/ebooks/58038', 'en', 395), +(38290, 'The Queen\'s Necklace', 'Dumas, Alexandre', '2006-12-16', 47, 'https://www.gutenberg.org/ebooks/20122', 'en', 14136), +(38291, 'Tractatus Logico-Philosophicus', 'Wittgenstein, Ludwig', '2010-10-22', 2075, 'https://www.gutenberg.org/ebooks/5740', 'en', 8789), +(38292, 'The Beaux-Stratagem: A comedy in five acts', 'Farquhar, George', '2011-08-24', 5, 'https://www.gutenberg.org/ebooks/37195', 'en', 907), +(38293, 'Un cœur virginal', 'Gourmont, Remy de', '2013-12-19', 9, 'https://www.gutenberg.org/ebooks/44467', 'fr', 259), +(38294, 'Famous Affinities of History: The Romance of Devotion. Volume 4', 'Orr, Lyndon', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/4692', 'en', 122), +(38295, 'The Red Debt: Echoes from Kentucky', 'MacDonald, Everett', '2011-05-06', 17, 'https://www.gutenberg.org/ebooks/36047', 'en', 1996), +(38296, 'Arethusa', 'Crawford, F. Marion (Francis Marion)', '2013-01-27', 14, 'https://www.gutenberg.org/ebooks/41929', 'en', 14137), +(38297, 'The Old Pincushion; or, Aunt Clotilda\'s Guests', 'Molesworth, Mrs.', '2012-05-28', 16, 'https://www.gutenberg.org/ebooks/39833', 'en', 9066), +(38298, 'La Igualdad Social y Política y sus Relaciones con la Libertad', 'Arenal de García Carrasco, Concepción', '2016-07-05', 27, 'https://www.gutenberg.org/ebooks/52502', 'es', 14138), +(38299, 'The History of the Prince of Wales\' Civil Service Rifles', 'Anonymous', '2016-03-07', 11, 'https://www.gutenberg.org/ebooks/51387', 'en', 946), +(38300, 'The Water Supply of the El Paso and Southwestern Railway from Carrizozo to Santa Rosa, N. Mex.\r\nAmerican Society of Civil Engineers: Transactions, No. 1170', 'Campbell, J. L.', '2005-08-05', 8, 'https://www.gutenberg.org/ebooks/16440', 'en', 4530), +(38301, 'Le Speronare', 'Dumas, Alexandre', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8863', 'fr', 9580), +(38302, 'Home Life in Colonial Days', 'Earle, Alice Morse', '2007-09-19', 91, 'https://www.gutenberg.org/ebooks/22675', 'en', 12971), +(38303, 'A Study in Tinguian Folk-Lore', 'Cole, Fay-Cooper', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/7017', 'en', 4260), +(38304, 'The Introduction to Hegel\'s Philosophy of Fine Arts\nTranslated from the German with Notes and Prefatory Essay', 'Hegel, Georg Wilhelm Friedrich', '2014-07-20', 84, 'https://www.gutenberg.org/ebooks/46330', 'en', 2250), +(38305, 'One of My Sons', 'Green, Anna Katharine', '2010-12-21', 71, 'https://www.gutenberg.org/ebooks/34710', 'en', 128), +(38306, 'A Narrative of the Expedition to Dongola and Sennaar\nUnder the Command of His Excellence Ismael Pasha, undertaken\nby Order of His Highness Mehemmed Ali Pasha, Viceroy of\nEgypt, By An American In The Service Of The Viceroy', 'English, George Bethune', '2006-01-24', 199, 'https://www.gutenberg.org/ebooks/17592', 'en', 14139), +(38307, 'Fishpingle: A Romance of the Countryside', 'Vachell, Horace Annesley', '2015-10-19', 12, 'https://www.gutenberg.org/ebooks/50255', 'en', 5530), +(38308, 'Rastignac the Devil', 'Farmer, Philip José', '2010-02-12', 74, 'https://www.gutenberg.org/ebooks/31262', 'en', 26), +(38309, 'Robert Schumann, Tone-Poet, Prophet and Critic', 'Peyser, Herbert F. (Herbert Francis)', '2015-07-06', 11, 'https://www.gutenberg.org/ebooks/49378', 'en', 6048), +(38310, 'Notes and Queries, Number 175, March 5, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 16, 'https://www.gutenberg.org/ebooks/42790', 'en', 105), +(38311, 'The Early Oxford Press\r\nA Bibliography of Printing and Publishing at Oxford, \'1468\'-1640; With Notes, Appendixes and Illustrations', 'Madan, Falconer', '2017-10-10', 2, 'https://www.gutenberg.org/ebooks/55727', 'en', 14140), +(38312, 'The Amateur Garden', 'Cable, George Washington', '2006-09-29', 62, 'https://www.gutenberg.org/ebooks/19408', 'en', 11332), +(38313, 'The Last American\r\nA Fragment from The Journal of Khan-li, Prince of Dimph-Yoo-Chur and Admiral in the Persian Navy', 'Mitchell, John Ames', '2008-11-21', 20, 'https://www.gutenberg.org/ebooks/27307', 'en', 26), +(38314, 'Principles of Freedom', 'MacSwiney, Terence J. (Terence Joseph)', '2004-08-07', 6, 'https://www.gutenberg.org/ebooks/13132', 'en', 4559), +(38315, 'The Quiver, 2/1900', 'Various', '2013-09-04', 5, 'https://www.gutenberg.org/ebooks/43642', 'en', 1866), +(38316, 'The Story of the Glittering Plain\r\nWhich Has Been Also Called the Land of Living Men or the Acre of the Undying', 'Morris, William', '2001-03-01', 37, 'https://www.gutenberg.org/ebooks/2565', 'en', 2634), +(38317, 'Die Irrungen, oder die Doppelten Zwillinge', 'Shakespeare, William', '2005-01-01', 32, 'https://www.gutenberg.org/ebooks/7225', 'de', 6697), +(38318, 'An American Girl in Munich: Impressions of a Music Student', 'Daniels, Mabel W. (Mabel Wheeler)', '2014-06-26', 23, 'https://www.gutenberg.org/ebooks/46102', 'en', 14141), +(38319, 'The Last Journals of David Livingstone, in Central Africa, from 1865 to His Death, Volume I (of 2), 1866-1868', 'Livingstone, David', '2005-09-07', 53, 'https://www.gutenberg.org/ebooks/16672', 'en', 484), +(38320, 'Escape from the Confederacy', 'Hasson, Benjamin F.', '2015-09-15', 10, 'https://www.gutenberg.org/ebooks/49976', 'en', 444), +(38321, 'Poems of Gerard Manley Hopkins', 'Hopkins, Gerard Manley', '2007-09-01', 5, 'https://www.gutenberg.org/ebooks/22447', 'en', 8), +(38322, 'Little Journeys to the Homes of the Great - Volume 11\r\nLittle Journeys to the Homes of Great Businessmen', 'Hubbard, Elbert', '2007-11-22', 91, 'https://www.gutenberg.org/ebooks/23595', 'en', 2874), +(38323, 'Kertomuksia kirkkohistorian alalta 2: Keski-aika', 'Rosendal, Mauno', '2015-09-28', 6, 'https://www.gutenberg.org/ebooks/50067', 'fi', 559), +(38324, 'Dick Leslie\'s Luck: A Story of Shipwreck and Adventure', 'Collingwood, Harry', '2009-01-27', 17, 'https://www.gutenberg.org/ebooks/27909', 'en', 61), +(38325, 'The Secret of the League: The Story of a Social War', 'Bramah, Ernest', '2010-11-30', 22, 'https://www.gutenberg.org/ebooks/34522', 'en', 14142), +(38326, 'Terve mies: Romaani', 'Finne, Jalmari', '2017-09-09', 6, 'https://www.gutenberg.org/ebooks/55515', 'fi', 175), +(38327, 'A New Order of Fishlike Amphibia From the Pennsylvanian of Kansas', 'Eaton, Theodore H. (Theodore Hildreth)', '2010-01-23', 14, 'https://www.gutenberg.org/ebooks/31050', 'en', 4970), +(38328, 'The Woman in the Alcove', 'Lee, Jennette', '2016-05-03', 19, 'https://www.gutenberg.org/ebooks/51989', 'en', 705), +(38329, 'Egypt (La Mort de Philae)', 'Loti, Pierre', '2006-04-13', 17, 'https://www.gutenberg.org/ebooks/3685', 'en', 2589), +(38330, 'History of Religion\nA Sketch of Primitive Religious Beliefs and Practices, and of the Origin and Character of the Great Systems', 'Menzies, Allan', '2009-09-02', 34, 'https://www.gutenberg.org/ebooks/29893', 'en', 1444), +(38331, 'The Princess and the Goblin', 'MacDonald, George', '2009-05-01', 27, 'https://www.gutenberg.org/ebooks/28941', 'en', 2203), +(38332, 'En voi: Perhekuvaus kahdessa näytöksessä', 'Runeberg, Johan Ludvig', '2015-01-27', 21, 'https://www.gutenberg.org/ebooks/48098', 'fi', 5375), +(38333, 'The Sinn Fein Rebellion as I Saw It.', 'Norway, Hamilton, Mrs.', '2013-08-15', 4, 'https://www.gutenberg.org/ebooks/43470', 'en', 14143), +(38334, 'Punch, or the London Charivari, Vol. 98, March 15, 1890', 'Various', '2009-10-05', 9, 'https://www.gutenberg.org/ebooks/30182', 'en', 134), +(38335, 'Vaninka\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 25, 'https://www.gutenberg.org/ebooks/2757', 'en', 5050), +(38336, 'The Vaudois of Piedmont: A Visit to Their Valleys', 'Worsfold, J. N. (John Napper)', '2008-11-04', 17, 'https://www.gutenberg.org/ebooks/27135', 'en', 865), +(38337, 'The Doctrine and Practice of Yoga\r\nIncluding the Practices and Exercises of Concentration, both Objective and Subjective, and Active and Passive Mentation, an Elucidation of Maya, Guru Worship, and the Worship of the Terrible, also the Mystery of Will-Force', 'Mukerji, A. P., swámi', '2004-08-27', 78, 'https://www.gutenberg.org/ebooks/13300', 'en', 8086), +(38338, 'The Treasure of the \"San Philipo\"', 'Westerman, Percy F. (Percy Francis)', '2018-05-31', 19, 'https://www.gutenberg.org/ebooks/57242', 'en', 2322), +(38339, 'My Strangest Case', 'Boothby, Guy', '2004-01-01', 40, 'https://www.gutenberg.org/ebooks/10585', 'en', 128), +(38340, 'Punch, or the London Charivari, Volume 103, July 30, 1892', 'Various', '2005-02-07', 3, 'https://www.gutenberg.org/ebooks/14919', 'en', 134), +(38341, 'Yiddish Tales', NULL, '2010-09-12', 51, 'https://www.gutenberg.org/ebooks/33707', 'en', 2707), +(38342, 'New Subspecies of the Rodent Baiomys from Central America\r\nUniversity of Kansas Publications, Museum of Natural History', 'Packard, Robert L. (Robert Lewis)', '2012-11-09', 9, 'https://www.gutenberg.org/ebooks/41327', 'en', 1214), +(38343, 'A report on the feasibility and advisability of some policy to inaugurate a system of rifle practice throughout the public schools of the country', 'Wingate, George Wood', '2008-05-31', 3, 'https://www.gutenberg.org/ebooks/25662', 'en', 14144), +(38344, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 402, Supplementary Number (1829)', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11457', 'en', 133), +(38345, 'Histoire naturelle des oiseaux d\'Afrique, t. 1', 'Le Vaillant, François', '2018-01-18', 5, 'https://www.gutenberg.org/ebooks/56390', 'fr', 14145), +(38346, 'A Word, Only a Word — Volume 01', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5572', 'en', 803), +(38347, 'A Christian Directory, Part 3: Christian Ecclesiastics', 'Baxter, Richard', '2014-01-13', 29, 'https://www.gutenberg.org/ebooks/44655', 'en', 6478), +(38348, 'Amerikan löytöretken päiväkirja', 'Columbus, Christopher', '2004-11-22', 44, 'https://www.gutenberg.org/ebooks/14125', 'fi', 4786), +(38349, 'Hammersmith, Fulham and Putney', 'Geikie, John Cunningham', '2007-01-07', 26, 'https://www.gutenberg.org/ebooks/20310', 'en', 14146), +(38350, 'Portraits in Plaster, from the Collection of Laurence Hutton', 'Hutton, Laurence', '2016-08-05', 18, 'https://www.gutenberg.org/ebooks/52730', 'en', 14147), +(38351, 'Zofloya, ou le Maure, Histoire du XVe siècle', 'Dacre, Charlotte', '2014-05-27', 29, 'https://www.gutenberg.org/ebooks/45787', 'fr', 461), +(38352, 'Gradiva: Ein pompejanisches Phantasiestück', 'Jensen, Wilhelm', '2011-05-29', 11, 'https://www.gutenberg.org/ebooks/36275', 'de', 14148), +(38353, 'Day of the Moron', 'Piper, H. Beam', '2006-07-31', 98, 'https://www.gutenberg.org/ebooks/18949', 'en', 26), +(38354, 'The White Feather Hex', 'Peterson, Don', '2007-11-03', 27, 'https://www.gutenberg.org/ebooks/23308', 'en', 9831), +(38355, 'Competition', 'Causey, James', '2009-08-07', 34, 'https://www.gutenberg.org/ebooks/29632', 'en', 7132), +(38356, 'The Lamp of Fate', 'Pedler, Margaret', '2006-04-13', 31, 'https://www.gutenberg.org/ebooks/3824', 'en', 95), +(38357, 'Constantinople, v. 1 (of 2)', 'De Amicis, Edmondo', '2016-04-10', 33, 'https://www.gutenberg.org/ebooks/51728', 'en', 2570), +(38358, 'Yorksher Puddin\'\r\nA Collection of the Most Popular Dialect Stories from the Pen of John Hartley', 'Hartley, John', '2006-04-14', 29, 'https://www.gutenberg.org/ebooks/18175', 'en', 1445), +(38359, 'Barry Lyndon', 'Thackeray, William Makepeace', '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9522', 'en', 14149), +(38360, 'The Smiling Hill-Top, and Other California Sketches', 'Sloane, Julia M.', '2006-03-02', 19, 'https://www.gutenberg.org/ebooks/17901', 'en', 2845), +(38361, 'The Russian Story Book\r\nContaining tales from the song-cycles of Kiev and Novgorod and other early sources', 'Wilson, Richard', '2015-03-29', 56, 'https://www.gutenberg.org/ebooks/48605', 'en', 14150), +(38362, 'Graham\'s Magazine, Vol. XXXV, No. 5, November 1849', 'Various', '2017-08-19', 15, 'https://www.gutenberg.org/ebooks/55388', 'en', 380), +(38363, 'Bulldog Carney', 'Fraser, William Alexander', '2014-06-10', 12, 'https://www.gutenberg.org/ebooks/45926', 'en', 14151), +(38364, 'Cottage Building in Cob, Pisé, Chalk and Clay: A Renaissance (2nd edition)', 'Williams-Ellis, Clough', '2010-04-19', 117, 'https://www.gutenberg.org/ebooks/32048', 'en', 14152), +(38365, 'Waterloo Days: The narrative of an Englishwoman resident at Brussels in June 1815', 'Eaton, Charlotte A. (Charlotte Anne)', '2016-09-05', 23, 'https://www.gutenberg.org/ebooks/52991', 'en', 735), +(38366, 'The Barnet Book of Photography: A Collection of Practical Articles', 'Various', '2012-08-09', 22, 'https://www.gutenberg.org/ebooks/40468', 'en', 3737), +(38367, 'Oaths of Allegiance in Colonial New England', 'Evans, Charles', '2016-12-31', 10, 'https://www.gutenberg.org/ebooks/53843', 'en', 11489), +(38368, 'Love Sonnets of an Office Boy', 'Kiser, Samuel E. (Samuel Ellsworth)', '2012-01-14', 26, 'https://www.gutenberg.org/ebooks/38572', 'en', 5509), +(38369, 'Damon and Delia: A Tale', 'Godwin, William', '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10318', 'en', 5842), +(38370, 'With Ring of Shield', 'Magee, Knox', '2010-06-18', 23, 'https://www.gutenberg.org/ebooks/32874', 'en', 7045), +(38371, 'Wrong Analogy', 'Shallit, Joseph', '2019-05-19', 60, 'https://www.gutenberg.org/ebooks/59545', 'en', 5065), +(38372, 'The Southern Literary Messenger, Vol. I., No. 11, July, 1835', 'Various', '2018-12-19', 7, 'https://www.gutenberg.org/ebooks/58497', 'en', 522), +(38373, 'Young Glory and the Spanish Cruiser\nA Brave Fight Against Odds', 'Mott, Walter Fenton', '2008-03-24', 20, 'https://www.gutenberg.org/ebooks/24911', 'en', 3535), +(38374, 'Mildred Arkell: A Novel. Vol. 1 (of 3)', 'Wood, Henry, Mrs.', '2012-05-14', 12, 'https://www.gutenberg.org/ebooks/39692', 'en', 61), +(38375, 'General Gatacre\r\nThe Story of the Life and Services of Sir William Forbes Gatacre, K.C.B., D.S.O., 1843-1906', 'Gatacre, Beatrix Wickens Davey, Lady', '2013-01-06', 36, 'https://www.gutenberg.org/ebooks/41788', 'en', 1956), +(38376, 'The Rise of the Dutch Republic — Volume 31: 1580-82', 'Motley, John Lothrop', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/4833', 'en', 6577), +(38377, 'The History of Louisville, from the Earliest Settlement till the Year 1852', 'Casseday, Ben', '2012-02-02', 10, 'https://www.gutenberg.org/ebooks/38740', 'en', 14153), +(38378, 'Icebound: A Play', 'Davis, Owen', '2019-06-18', 31, 'https://www.gutenberg.org/ebooks/59777', 'en', 427), +(38379, 'Essai sur la littérature merveilleuse des noirs, suivi de Contes indigènes de l\'Ouest africain français - Tome premier', 'Equilbecq, François-Victor', '2005-03-24', 14, 'https://www.gutenberg.org/ebooks/15458', 'fr', 14154), +(38380, 'Summer Days in Shakespeare Land', 'Harper, Charles G. (Charles George)', '2014-04-06', 20, 'https://www.gutenberg.org/ebooks/45328', 'en', 3360), +(38381, 'Parent and Child Volume III., Child Study and Training', 'Hall, Mosiah', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/10916', 'en', 5556), +(38382, 'The Magic Bed: A Book of East Indian Fairy-Tales', NULL, '2011-10-11', 15, 'https://www.gutenberg.org/ebooks/37708', 'en', 10047), +(38383, 'The Yoke of the Thorah', 'Harland, Henry', '2017-06-06', 14, 'https://www.gutenberg.org/ebooks/54854', 'en', 109), +(38384, 'The Adventures of Sir Launcelot Greaves', 'Smollett, T. (Tobias)', '2004-09-09', 35, 'https://www.gutenberg.org/ebooks/6758', 'en', 323), +(38385, 'Letters of Asa Gray; Vol. 1', 'Gray, Asa', '2017-11-17', 13, 'https://www.gutenberg.org/ebooks/55986', 'en', 14155), +(38386, 'Plotinos: Complete Works, v. 2\nIn Chronological Order, Grouped in Four Periods', 'Plotinus', '2013-06-13', 36, 'https://www.gutenberg.org/ebooks/42931', 'en', 5079), +(38387, 'Murder Point: A Tale of Keewatin', 'Dawson, Coningsby', '2009-07-13', 13, 'https://www.gutenberg.org/ebooks/29400', 'en', 128), +(38388, 'Holiday Romance', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9710', 'en', 179), +(38389, '西廂記', 'Wang, Shifu', '2007-12-19', 38, 'https://www.gutenberg.org/ebooks/23906', 'zh', 6557), +(38390, 'The Art and Practice of Hawking', 'Michell, E. B. (Edward Blair)', '2015-03-08', 48, 'https://www.gutenberg.org/ebooks/48437', 'en', 14156), +(38391, 'Carnegie Library of Pittsburgh Debate Index\nSecond Edition', 'Carnegie Library of Pittsburgh', '2006-05-08', 4, 'https://www.gutenberg.org/ebooks/18347', 'en', 14157), +(38392, 'Hearts of Three', 'London, Jack', '2017-01-28', 86, 'https://www.gutenberg.org/ebooks/54068', 'en', 580), +(38393, 'The Reef', 'Wharton, Edith', '1995-06-01', 117, 'https://www.gutenberg.org/ebooks/283', 'en', 2118), +(38394, 'The Dragon of Wantley: His Tale', 'Wister, Owen', '2008-08-28', 34, 'https://www.gutenberg.org/ebooks/26448', 'en', 14158), +(38395, 'The Pocahontas-John Smith Story', 'Edmunds, Pocahontas Wight', '2011-04-13', 15, 'https://www.gutenberg.org/ebooks/35863', 'en', 13367), +(38396, 'The Outdoor Girls at Ocean View; Or, The Box That Was Found in the Sand', 'Hope, Laura Lee', '2006-09-16', 26, 'https://www.gutenberg.org/ebooks/19295', 'en', 2322), +(38397, 'Studies in Irish History, 1603-1649\r\nBeing a Course of Lectures Delivered before the Irish Literary Society of London. 2d Series.', NULL, '2018-06-08', 10, 'https://www.gutenberg.org/ebooks/57289', 'en', 14159), +(38398, 'The Life of King Henry the Fifth', 'Shakespeare, William', '1997-11-01', 17, 'https://www.gutenberg.org/ebooks/1119', 'en', 599), +(38399, 'Notes and Queries, Vol. IV, Number 92, August 2, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-12-17', 11, 'https://www.gutenberg.org/ebooks/38324', 'en', 105), +(38400, 'How to Teach Religion\nPrinciples and Methods', 'Betts, George Herbert', '2005-05-08', 24, 'https://www.gutenberg.org/ebooks/15800', 'en', 1967), +(38401, 'Droll Stories — Volume 1', 'Balzac, Honoré de', '2004-08-23', 15, 'https://www.gutenberg.org/ebooks/1925', 'en', 4), +(38402, 'The Life and Letters of Ogier Ghiselin de Busbecq, Vol. 1 (of 2)', 'Busbecq, Ogier Ghislain de', '2016-11-30', 41, 'https://www.gutenberg.org/ebooks/53629', 'en', 8861), +(38403, 'Jack\'s Two Sovereigns', 'Fenn, A. S. (Annie S.)', '2019-04-20', 8, 'https://www.gutenberg.org/ebooks/59313', 'en', 389), +(38404, 'Pátria', 'Junqueiro, Abílio Manuel Guerra', '2007-04-24', 11, 'https://www.gutenberg.org/ebooks/21209', 'pt', 3231), +(38405, 'L\'amour et la raison', 'Pigault-Lebrun', '2008-10-07', 13, 'https://www.gutenberg.org/ebooks/26810', 'fr', 5508), +(38406, 'Boys\' Book of Model Boats', 'Yates, Raymond F. (Raymond Francis)', '2009-06-07', 31, 'https://www.gutenberg.org/ebooks/29064', 'en', 14160), +(38407, 'Soil Culture\r\nContaining a Comprehensive View of Agriculture, Horticulture, Pomology, Domestic Animals, Rural Economy, and Agricultural Literature', 'Walden, J. H.', '2010-01-15', 23, 'https://www.gutenberg.org/ebooks/30975', 'en', 14161), +(38408, 'Ancient Nahuatl Poetry, Containing the Nahuatl Text of XXVII Ancient Mexican Poems\r\nBrinton\'s Library of Aboriginal American Literature Number VII.', 'Brinton, Daniel G. (Daniel Garrison)', '2004-04-01', 137, 'https://www.gutenberg.org/ebooks/12219', 'en', 14162), +(38409, 'The Fool: A Play in Four Acts', 'Pollock, Channing', '2015-06-09', 12, 'https://www.gutenberg.org/ebooks/49181', 'en', 427), +(38410, 'Blackwoods Edinburgh Magazine, Volume 59, No. 365, March, 1846', 'Various', '2009-08-30', 16, 'https://www.gutenberg.org/ebooks/29858', 'en', 274), +(38411, 'The Radio Detectives Under the Sea', 'Verrill, A. Hyatt (Alpheus Hyatt)', '2013-04-21', 27, 'https://www.gutenberg.org/ebooks/42569', 'en', 128), +(38412, 'The Three Godfathers', 'Kyne, Peter B. (Peter Bernard)', '2016-05-02', 35, 'https://www.gutenberg.org/ebooks/51942', 'en', 8516), +(38413, 'A Knight of the Nets', 'Barr, Amelia E.', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9374', 'en', 154), +(38414, 'The Birds of Lorrane', 'Doede, William R.', '2016-01-10', 31, 'https://www.gutenberg.org/ebooks/50890', 'en', 179), +(38415, 'Trading', 'Warner, Susan', '2009-10-01', 21, 'https://www.gutenberg.org/ebooks/30149', 'en', 3129), +(38416, 'The Haciendas of Mexico: An Artist\'s Record', 'Bartlett, Paul Alexander', '2015-01-23', 39, 'https://www.gutenberg.org/ebooks/48053', 'en', 14163), +(38417, 'Proyecto de traslacion de las fronteras de Buenos Aires al Rio Negro y Colorado', 'Undiano y Gastelu, Sebastian', '2006-07-01', 16, 'https://www.gutenberg.org/ebooks/18723', 'es', 6441), +(38418, 'Die Falkner vom Falkenhof. Erster Band.', 'Adlersfeld-Ballestrem, Eufemia von', '2014-12-31', 30, 'https://www.gutenberg.org/ebooks/47827', 'de', 549), +(38419, 'High Finance', 'Kahn, Otto H.', '2009-06-27', 18, 'https://www.gutenberg.org/ebooks/29256', 'en', 14164), +(38420, 'Robert Browning', 'Dowden, Edward', '2004-07-05', 18, 'https://www.gutenberg.org/ebooks/12817', 'en', 7835), +(38421, 'Histoire anecdotique de l\'Ancien Théâtre en France, Tome Premier\r\nThéâtre-Français, Opéra, Opéra-Comique, Théâtre-Italien, Vaudeville, Théâtres forains, etc...', 'Du Casse, Albert', '2011-03-18', 15, 'https://www.gutenberg.org/ebooks/35609', 'fr', 8059), +(38422, 'The Merry-go-round', 'Maugham, W. Somerset (William Somerset)', '2014-10-29', 47, 'https://www.gutenberg.org/ebooks/47229', 'en', 3305), +(38423, 'On the Church Steps', 'Hallowell, Sarah C.', '2006-01-20', 9, 'https://www.gutenberg.org/ebooks/17559', 'en', 61), +(38424, 'As I Remember\nRecollections of American Society during the Nineteenth Century', 'Gouverneur, Marian', '2009-03-22', 8, 'https://www.gutenberg.org/ebooks/28384', 'en', 14165), +(38425, 'Certain Noble Plays of Japan: From the manuscripts of Ernest Fenollosa', NULL, '2005-05-01', 41, 'https://www.gutenberg.org/ebooks/8094', 'en', 3604), +(38426, 'Historic Tales: The Romance of Reality. Vol. 04 (of 15), English', 'Morris, Charles', '2006-06-05', 23, 'https://www.gutenberg.org/ebooks/18511', 'en', 1953), +(38427, 'Pictures Every Child Should Know\r\nA Selection of the World\'s Art Masterpieces for Young People', 'Bacon, Mary Schell Hoke', '2004-11-01', 122, 'https://www.gutenberg.org/ebooks/6932', 'en', 14166), +(38428, 'I and My Chimney', 'Melville, Herman', '2005-10-01', 3, 'https://www.gutenberg.org/ebooks/9146', 'en', 1155), +(38429, 'Birds and All Nature, Vol. 6, No. 5, December 1899\r\nIllustrated by Color Photography', 'Various', '2015-02-15', 14, 'https://www.gutenberg.org/ebooks/48261', 'en', 1584), +(38430, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 01 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-09-10', 20, 'https://www.gutenberg.org/ebooks/43689', 'it', 6107), +(38431, 'Letters From Rome on the Council', 'Döllinger, Johann Joseph Ignaz von', '2011-11-23', 13, 'https://www.gutenberg.org/ebooks/38116', 'en', 14167), +(38432, 'Souvenirs d\'un sexagénaire, Tome IV', 'Arnault, A.-V. (Antoine-Vincent)', '2008-02-08', 19, 'https://www.gutenberg.org/ebooks/24549', 'fr', 14168), +(38433, 'Plays: Lady Frederick, The Explorer, A Man of Honour', 'Maugham, W. Somerset (William Somerset)', '2011-11-09', 27, 'https://www.gutenberg.org/ebooks/37962', 'en', 1088), +(38434, 'Billy To-morrow Stands the Test', 'Carr, Sarah Pratt', '2017-12-12', 22, 'https://www.gutenberg.org/ebooks/56169', 'en', 515), +(38435, 'The Holy Cross and Other Tales', 'Field, Eugene', '2007-06-11', 15, 'https://www.gutenberg.org/ebooks/21807', 'en', 179), +(38436, 'Twenty-Five Years in a Waggon in South Africa: Sport and Travel in South Africa', 'Anderson, Andrew A.', '2012-09-22', 4, 'https://www.gutenberg.org/ebooks/40830', 'en', 14169), +(38437, 'Harper\'s Young People, May 23, 1882\nAn Illustrated Weekly', 'Various', '2018-09-11', 10, 'https://www.gutenberg.org/ebooks/57887', 'en', 479), +(38438, 'Catholic World, Vol. 24, October, 1876, to March, 1877\r\nA Monthly Magazine of General Literature and Science', 'Various', '2018-04-10', 1, 'https://www.gutenberg.org/ebooks/56955', 'en', 96), +(38439, 'Lady Hester; Or, Ursula\'s Narrative', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/4659', 'en', 14170), +(38440, 'E. K. Means\r\nIs This a Title? It Is Not. It Is the Name of a Writer of Negro Stories, Who Has Made Himself So Completely the Writer of Negro Stories That His Book Needs No Title', 'Means, E. K. (Eldred Kurtz)', '2019-03-24', 18, 'https://www.gutenberg.org/ebooks/59121', 'en', 1958), +(38441, 'Punch, or the London Charivari, Volume 1, September 5, 1841', 'Various', '2005-02-07', 7, 'https://www.gutenberg.org/ebooks/14926', 'en', 134), +(38442, 'Documents Inédits sur Alfred de Musset', 'Clouard, Maurice', '2010-09-16', 10, 'https://www.gutenberg.org/ebooks/33738', 'fr', 14171), +(38443, 'Ever Heard This? Over Three Hundred Good Stories', 'Chambers, F. W.', '2012-03-19', 8, 'https://www.gutenberg.org/ebooks/39202', 'en', 564), +(38444, 'Aïssé', 'Schickele, René', '2012-11-08', 13, 'https://www.gutenberg.org/ebooks/41318', 'de', 253), +(38445, 'Darkest India\nA Supplement to General Booth\'s \"In Darkest England, and the Way Out\"', 'Booth-Tucker, Frederick St. George De Lautour', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11468', 'en', 5173), +(38446, 'Edgar Saltus: The Man', 'Saltus, Marie', '2011-09-11', 10, 'https://www.gutenberg.org/ebooks/37398', 'en', 14172), +(38447, 'Beach Rambles in Search of Seaside Pebbles and Crystals\r\nWith Some Observations on the Origin of the Diamond and Other Precious Stones', 'Francis, John George', '2018-11-05', 10, 'https://www.gutenberg.org/ebooks/58235', 'en', 3353), +(38448, 'The Logic of Vegetarianism: Essays and Dialogues', 'Salt, Henry S.', '2015-09-12', 23, 'https://www.gutenberg.org/ebooks/49949', 'en', 5839), +(38449, 'The Complete Poetical Works of Samuel Taylor Coleridge. Vol 1 and 2', 'Coleridge, Samuel Taylor', '2009-06-11', 166, 'https://www.gutenberg.org/ebooks/29090', 'en', 532), +(38450, 'The Priest\'s Tale - Père Etienne\nFrom \"The New Decameron\", Volume III.', 'Keable, Robert', '2007-08-31', 18, 'https://www.gutenberg.org/ebooks/22478', 'en', 2126), +(38451, 'Ποιήματα, Τόμος Δεύτερος, Ανέκδοτα', 'Souris, Georgios', '2010-04-01', 9, 'https://www.gutenberg.org/ebooks/31853', 'el', 8746), +(38452, 'Marion Harland\'s Complete Etiquette\nA Young People\'s Guide to Every Social Occasion', 'Van de Water, Virginia Terhune', '2015-09-26', 31, 'https://www.gutenberg.org/ebooks/50058', 'en', 788), +(38453, 'The Real Latin Quarter', 'Smith, F. Berkeley (Frank Berkeley)', '2010-01-16', 20, 'https://www.gutenberg.org/ebooks/30981', 'en', 14173), +(38454, 'The Nursery, March 1878, Vol. XXIII. No. 3\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 13, 'https://www.gutenberg.org/ebooks/28142', 'en', 4641), +(38455, 'Histoire des nombres et de la numération mécanique', 'Jacomy-Régnier', '2009-01-30', 24, 'https://www.gutenberg.org/ebooks/27936', 'fr', 14174), +(38456, 'Giordano Bruno', 'McIntyre, J. Lewis (James Lewis)', '2014-09-19', 26, 'https://www.gutenberg.org/ebooks/46901', 'en', 14175), +(38457, 'A Book of Quaker Saints', 'Hodgkin, L. V. (Lucy Violet)', '2006-10-22', 22, 'https://www.gutenberg.org/ebooks/19605', 'en', 4759), +(38458, 'Memoirs of the Empress Josephine, Vol. 1 of 2', 'Rémusat, Madame de (Claire Elisabeth Jeanne Gravier de Vergennes)', '2015-06-09', 14, 'https://www.gutenberg.org/ebooks/49175', 'en', 5143), +(38459, 'The World English Bible (WEB): Lamentations', 'Anonymous', '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8252', 'en', 8107), +(38460, 'A Story of the Telegraph', 'Murray, John', '2016-01-07', 21, 'https://www.gutenberg.org/ebooks/50864', 'en', 14176), +(38461, 'The Paris Sketch Book of Mr. M. A. Titmarsh', 'Thackeray, William Makepeace', '2001-08-01', 28, 'https://www.gutenberg.org/ebooks/2768', 'en', 2972), +(38462, 'A Nonsense Anthology', NULL, '2005-11-01', 38, 'https://www.gutenberg.org/ebooks/9380', 'en', 2981), +(38463, 'The Constitution of the Empire of Japan, 1889', 'Japan', '1996-08-01', 53, 'https://www.gutenberg.org/ebooks/613', 'en', 14177), +(38464, 'The Clicking of Cuthbert', 'Wodehouse, P. G. (Pelham Grenville)', '2004-12-01', 224, 'https://www.gutenberg.org/ebooks/7028', 'en', 6165), +(38465, 'Master of His Fate', 'Cobban, J. Maclaren (James Maclaren)', '2004-11-03', 16, 'https://www.gutenberg.org/ebooks/13931', 'en', 5077), +(38466, 'Nouvelle géographie universelle (1/19)\r\nI L\'Europe meridionale (1876)', 'Reclus, Elisée', '2009-03-20', 29, 'https://www.gutenberg.org/ebooks/28370', 'fr', 14178), +(38467, 'Daniel Boone: The Pioneer of Kentucky', 'Abbott, John S. C. (John Stevens Cabot)', '2007-12-10', 42, 'https://www.gutenberg.org/ebooks/23798', 'en', 3812), +(38468, 'Captivity and Escape', 'Martin, Jean', '2015-07-02', 7, 'https://www.gutenberg.org/ebooks/49347', 'en', 8816), +(38469, 'Great Catherine (Whom Glory Still Adores)', 'Shaw, Bernard', '2002-10-01', 34, 'https://www.gutenberg.org/ebooks/3488', 'en', 14179), +(38470, 'The Bible, King James version, Book 60: 1 Peter', 'Anonymous', '2005-04-01', 11, 'https://www.gutenberg.org/ebooks/8060', 'en', 1626), +(38471, 'Daybreak; A Romance of an Old World', 'Cowan, James', '2005-04-01', 12, 'https://www.gutenberg.org/ebooks/7814', 'en', 5147), +(38472, 'The Land of Enchantment: From Pike\'s Peak to the Pacific', 'Whiting, Lilian', '2017-10-09', 33, 'https://www.gutenberg.org/ebooks/55718', 'en', 497), +(38473, 'Amore bendato', 'Farina, Salvatore', '2006-10-02', 21, 'https://www.gutenberg.org/ebooks/19437', 'it', 61), +(38474, 'Kidnapped', 'Stevenson, Robert Louis', '2006-01-16', 902, 'https://www.gutenberg.org/ebooks/421', 'en', 98), +(38475, 'Baseball Joe Around the World; or, Pitching on a Grand Tour', 'Chadwick, Lester', '2008-11-27', 13, 'https://www.gutenberg.org/ebooks/27338', 'en', 6620), +(38476, 'Strange Stories of the Great River: The Adventures of a Boy Explorer', 'Grosvenor, Abbie Johnston', '2015-02-17', 12, 'https://www.gutenberg.org/ebooks/48295', 'en', 14180), +(38477, 'Adventures in the Arts\nInformal Chapters on Painters, Vaudeville, and Poets', 'Hartley, Marsden', '2007-03-28', 21, 'https://www.gutenberg.org/ebooks/20921', 'en', 2145), +(38478, 'Peter\'s Pence\nSailor\'s Knots, Part 8.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 17, 'https://www.gutenberg.org/ebooks/10788', 'en', 72), +(38479, 'Beethoven: A Memoir (2nd Ed.)', 'Graeme, Elliott', '2011-11-12', 15, 'https://www.gutenberg.org/ebooks/37996', 'en', 1807), +(38480, 'In New England Fields and Woods', 'Robinson, Rowland Evans', '2011-07-25', 20, 'https://www.gutenberg.org/ebooks/36844', 'en', 14181), +(38481, 'The Influence and Development of English Gilds\nAs Illustrated by the History of the Craft Gilds of Shrewsbury', 'Hibbert, Francis Aiden', '2012-03-03', 13, 'https://www.gutenberg.org/ebooks/39030', 'en', 14182), +(38482, 'The Consolation of Philosophy', 'Boethius', '2004-12-11', 655, 'https://www.gutenberg.org/ebooks/14328', 'en', 5449), +(38483, 'Hurrell Froude: Memoranda and Comments', 'Guiney, Louise Imogen', '2018-10-02', 2, 'https://www.gutenberg.org/ebooks/58007', 'en', 14183), +(38484, 'Tools and materials illustrating the Japanese method of colour-printing', 'Strange, Edward Fairbrother', '2013-12-17', 11, 'https://www.gutenberg.org/ebooks/44458', 'en', 14184), +(38485, 'Luonto ja ihminen: Poimintoja eri teoksista', 'Ruskin, John', '2018-09-09', 3, 'https://www.gutenberg.org/ebooks/57873', 'fi', 9322), +(38486, 'Literary Byways', 'Andrews, William', '2011-05-10', 19, 'https://www.gutenberg.org/ebooks/36078', 'en', 6170), +(38487, 'Nestleton Magna: A Story of Yorkshire Methodism', 'Wray, J. Jackson (James Jackson)', '2013-01-26', 16, 'https://www.gutenberg.org/ebooks/41916', 'en', 6707), +(38488, 'The Boy Captives: An Incident of the Indian War of 1695', 'Whittier, John Greenleaf', '1997-04-01', 86, 'https://www.gutenberg.org/ebooks/879', 'en', 7438), +(38489, 'Studies and Essays: Concerning Letters', 'Galsworthy, John', '2004-09-24', 21, 'https://www.gutenberg.org/ebooks/2902', 'en', 472), +(38490, '唐才子傳', 'Xin, Wenfang, active 13th century-14th century', '2009-05-07', 31, 'https://www.gutenberg.org/ebooks/28714', 'zh', 14185), +(38491, 'The Real Robert Burns', 'Hughes, James L. (James Laughlin)', '2011-02-17', 13, 'https://www.gutenberg.org/ebooks/35299', 'en', 5193), +(38492, 'The Path of Duty, and Other Stories', 'Caswell, Harriet S.', '2006-04-15', 10, 'https://www.gutenberg.org/ebooks/18181', 'en', 2625), +(38493, 'Tractus de Hermaphrodites; Or, A Treatise of Hermaphrodites', 'Jacob, Giles', '2004-10-01', 15, 'https://www.gutenberg.org/ebooks/13569', 'en', 14186), +(38494, 'Raemaekers\' Cartoon History of the War, Volume 3\nThe Third Twelve Months of War', NULL, '2013-07-14', 14, 'https://www.gutenberg.org/ebooks/43219', 'en', 2328), +(38495, 'The Poems of Oliver Goldsmith', 'Goldsmith, Oliver', '2015-08-17', 31, 'https://www.gutenberg.org/ebooks/49723', 'en', 8), +(38496, 'Le village aérien', 'Verne, Jules', '2005-10-08', 22, 'https://www.gutenberg.org/ebooks/16827', 'fr', 26), +(38497, 'Complete Classified Price List of School & College Textbooks. January 1915', 'American Book Company', '2010-03-15', 8, 'https://www.gutenberg.org/ebooks/31639', 'en', 14187), +(38498, 'Jane Talbot', 'Brown, Charles Brockden', '2005-07-01', 23, 'https://www.gutenberg.org/ebooks/8404', 'en', 258), +(38499, 'Theory of Circulation by Respiration: Synopsis of its Principles and History', 'Willard, Emma', '2006-08-15', 18, 'https://www.gutenberg.org/ebooks/19053', 'en', 6291), +(38500, 'Brazil and the River Plate in 1868', 'Hadfield, William', '2016-09-02', 13, 'https://www.gutenberg.org/ebooks/52965', 'en', 14188), +(38501, 'Ahead of the Show; Or, The Adventures of Al Allston, Advance Agent', 'Thorpe, Fred', '2012-04-14', 9, 'https://www.gutenberg.org/ebooks/39454', 'en', 14189), +(38502, 'Mr. Punch\'s Cockney Humour', NULL, '2012-01-15', 33, 'https://www.gutenberg.org/ebooks/38586', 'en', 2965), +(38503, 'The Law', 'Bastiat, Frédéric', '2014-01-30', 105, 'https://www.gutenberg.org/ebooks/44800', 'en', 14190), +(38504, 'The Madness of May', 'Nicholson, Meredith', '2008-06-19', 23, 'https://www.gutenberg.org/ebooks/25837', 'en', 2287), +(38505, 'Death Makes a Mistake', 'McGivern, William P.', '2010-06-18', 35, 'https://www.gutenberg.org/ebooks/32880', 'en', 8121), +(38506, 'Der Weltkrieg, III. Band\nVom Eingreifen Amerikas bis zum Zusammenbruch', 'Helfferich, Karl', '2016-05-25', 16, 'https://www.gutenberg.org/ebooks/52159', 'de', 2573), +(38507, 'The Frog Who Would A Wooing Go', 'Bennett, Charles H. (Charles Henry)', '2007-02-14', 46, 'https://www.gutenberg.org/ebooks/20579', 'en', 625), +(38508, 'What You Can Do With Your Will Power', 'Conwell, Russell H.', '2010-10-02', 34, 'https://www.gutenberg.org/ebooks/33952', 'en', 4065), +(38509, 'The History of Thomas Hickathrift', NULL, '2018-12-12', 8, 'https://www.gutenberg.org/ebooks/58463', 'en', 14191), +(38510, 'When It Was Dark: The Story of a Great Conspiracy', 'Thorne, Guy', '2012-05-10', 84, 'https://www.gutenberg.org/ebooks/39666', 'en', 235), +(38511, 'Homenagem ao Marquez De Pombal 1782-1882', 'Azevedo, Maximiliano de', '2008-04-29', 16, 'https://www.gutenberg.org/ebooks/25239', 'pt', 11897), +(38512, 'The History of Don Quixote, Volume 1, Part 13', 'Cervantes Saavedra, Miguel de', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5915', 'en', 3761), +(38513, 'Striped Coat, the Skunk', 'Lippincott, Joseph Wharton', '2018-08-01', 8, 'https://www.gutenberg.org/ebooks/57619', 'en', 7259), +(38514, 'Tamburlaine the Great — Part 2', 'Marlowe, Christopher', '1999-01-01', 104, 'https://www.gutenberg.org/ebooks/1589', 'en', 1298), +(38515, 'Tutankhamen and the Discovery of His Tomb by the Late Earl of Carnarvon and Mr. Howard Carter', 'Smith, Grafton Elliot', '2019-01-28', 38, 'https://www.gutenberg.org/ebooks/59783', 'en', 14192), +(38516, 'The Rover of the Andes: A Tale of Adventure on South America', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 37, 'https://www.gutenberg.org/ebooks/21699', 'en', 3242), +(38517, 'U.S. Copyright Renewals, 1964 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11830', 'en', 4170), +(38518, 'The Prodigal Judge', 'Kester, Vaughan', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/5129', 'en', 14193), +(38519, 'Wessex', 'Harper, Charles G. (Charles George)', '2019-01-08', 4, 'https://www.gutenberg.org/ebooks/58651', 'en', 10235), +(38520, 'The Irish Penny Journal, Vol. 1 No. 04, July 25, 1840', 'Various', '2013-09-26', 5, 'https://www.gutenberg.org/ebooks/43817', 'en', 81), +(38521, 'Othello', 'Shakespeare, William', '2009-04-07', 28, 'https://www.gutenberg.org/ebooks/28526', 'pt', 192), +(38522, 'A Cursory History of Swearing', 'Sharman, Julian', '2010-10-31', 26, 'https://www.gutenberg.org/ebooks/34179', 'en', 10368), +(38523, 'Travels in the Central Parts of Indo-China (Siam), Cambodia, and Laos (Vol. 1 of 2)\nDuring the Years 1858, 1859, and 1860', 'Mouhot, Henri', '2014-08-11', 38, 'https://www.gutenberg.org/ebooks/46559', 'en', 1893), +(38524, 'Pyhä hymy: Historiallinen kertomus Hemming piispan päiviltä', 'Soini, Lauri', '2017-11-14', 14, 'https://www.gutenberg.org/ebooks/55972', 'fi', 98), +(38525, 'The Poems of Henry Van Dyke', 'Van Dyke, Henry', '2005-07-07', 5, 'https://www.gutenberg.org/ebooks/16229', 'en', 8), +(38526, 'The Golden Web', 'Oppenheim, E. Phillips (Edward Phillips)', '2011-01-13', 49, 'https://www.gutenberg.org/ebooks/34945', 'en', 128), +(38527, 'Trinity Site', 'National Atomic Museum (U.S.)', '2008-06-29', 135, 'https://www.gutenberg.org/ebooks/277', 'en', 14194), +(38528, 'Bronchoscopy and Esophagoscopy\nA Manual of Peroral Endoscopy and Laryngeal Surgery', 'Jackson, Chevalier', '2006-09-13', 40, 'https://www.gutenberg.org/ebooks/19261', 'en', 14195), +(38529, 'The High School Freshmen; or, Dick & Co.\'s First Year Pranks and Sports', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/12689', 'en', 14196), +(38530, 'L\'Illustration, No. 3262, 2 Septembre 1905', 'Various', '2011-04-18', 6, 'https://www.gutenberg.org/ebooks/35897', 'fr', 150), +(38531, 'The Crooked House', 'Fleming, Brandon', '2007-09-30', 25, 'https://www.gutenberg.org/ebooks/22820', 'en', 128), +(38532, 'The Fantasy Fan April 1934\nThe Fan\'s Own Magazine', 'Various', '2015-07-23', 17, 'https://www.gutenberg.org/ebooks/49511', 'en', 1524), +(38533, 'Songs of Action', 'Doyle, Arthur Conan', '2005-08-01', 1, 'https://www.gutenberg.org/ebooks/8636', 'en', 54), +(38534, 'Aunt Jane\'s Nieces', 'Baum, L. Frank (Lyman Frank)', '2003-11-01', 55, 'https://www.gutenberg.org/ebooks/10123', 'en', 3129), +(38535, '花間集', 'Zhao, Chongzuo, active 934-965', '2008-01-15', 24, 'https://www.gutenberg.org/ebooks/24316', 'zh', 14197), +(38536, 'Historic Girls: Stories Of Girls Who Have Influenced The History Of Their Times', 'Brooks, Elbridge S. (Elbridge Streeter)', '1998-12-01', 57, 'https://www.gutenberg.org/ebooks/1574', 'en', 8676), +(38537, 'Our House and London out of Our Windows', 'Pennell, Elizabeth Robins', '2012-02-02', 10, 'https://www.gutenberg.org/ebooks/38749', 'en', 14198), +(38538, 'A Will and No Will; or, A Bone for the Lawyers. (1746) The New Play Criticiz\'d, or the Plague of Envy. (1747)', 'Macklin, Charles', '2012-09-03', 12, 'https://www.gutenberg.org/ebooks/40653', 'en', 3619), +(38539, 'The Country House (with Designs)', 'Eastlake, Charles Lock, Sir', '2013-01-05', 17, 'https://www.gutenberg.org/ebooks/41781', 'en', 14199), +(38540, 'Stories of Our Naval Heroes Every Child Can Read', NULL, '2010-05-06', 12, 'https://www.gutenberg.org/ebooks/32273', 'en', 14200), +(38541, 'Chronicles of Chicora Wood', 'Pringle, Elizabeth W. Allston (Elizabeth Waties Allston)', '2018-03-13', 13, 'https://www.gutenberg.org/ebooks/56736', 'en', 14201); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(38542, 'The Life Of Thomas Paine, Vol. 1. (of 2)\r\nWith A History of His Literary, Political and Religious Career in America France, and England; to which is added a Sketch of Paine by William Cobbett', 'Conway, Moncure Daniel', '2011-10-10', 32, 'https://www.gutenberg.org/ebooks/37701', 'en', 5548), +(38543, 'The Continental Monthly, Vol. 1, No. 3, March, 1862', 'Various', '2005-01-04', 24, 'https://www.gutenberg.org/ebooks/14583', 'en', 162), +(38544, 'The King Country; or, Explorations in New Zealand\nA Narrative of 600 Miles of Travel Through Maoriland.', 'Kerry-Nicholls, J. H. (James Henry)', '2016-10-10', 9, 'https://www.gutenberg.org/ebooks/53244', 'en', 3572), +(38545, 'George at the Fort; Or, Life Among the Soldiers', 'Castlemon, Harry', '2007-06-02', 21, 'https://www.gutenberg.org/ebooks/21664', 'en', 3), +(38546, 'The Mary Frances Knitting and Crocheting Book\r\nor, Adventures Among the Knitting People', 'Fryer, Jane Eayre', '2016-06-23', 140, 'https://www.gutenberg.org/ebooks/52396', 'en', 690), +(38547, 'The Great Round World And What Is Going On In It, Vol. 1. No. 21, April 1, 1897\r\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-24', 17, 'https://www.gutenberg.org/ebooks/15451', 'en', 1), +(38548, 'Serbian Folk-lore', NULL, '2014-04-05', 25, 'https://www.gutenberg.org/ebooks/45321', 'en', 14202), +(38549, 'Yesterdays', 'Wilcox, Ella Wheeler', '2003-05-01', 15, 'https://www.gutenberg.org/ebooks/4006', 'en', 178), +(38550, 'Olli Oivallinen eli \"Hyvä kaikkiin kelpaa\"', 'Törmälä, Emanuel', '2011-01-24', 6, 'https://www.gutenberg.org/ebooks/35056', 'fi', 61), +(38551, 'Harold : the Last of the Saxon Kings — Volume 12', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 25, 'https://www.gutenberg.org/ebooks/7683', 'en', 5349), +(38552, 'Poems of Life', 'Hamill, Katharine Forrest', '2016-03-20', 13, 'https://www.gutenberg.org/ebooks/51513', 'en', 8), +(38553, 'La guerra del Vespro Siciliano vol. 1\nUn periodo delle storie Siciliane del secolo XIII', 'Amari, Michele', '2009-07-14', 44, 'https://www.gutenberg.org/ebooks/29409', 'it', 14203), +(38554, 'Horsemanship for Women', 'Mead, Theodore H. (Theodore Hoe)', '2013-06-13', 11, 'https://www.gutenberg.org/ebooks/42938', 'en', 2240), +(38555, 'K4 O Quadrado Azul', 'Almada Negreiros, José de', '2007-10-21', 27, 'https://www.gutenberg.org/ebooks/23133', 'pt', 8), +(38556, 'The Condition of the Working-Class in England in 1844\nwith a Preface written in 1892', 'Engels, Friedrich', '2005-12-13', 161, 'https://www.gutenberg.org/ebooks/17306', 'en', 13326), +(38557, 'Poems of American History', NULL, '2014-11-27', 20, 'https://www.gutenberg.org/ebooks/47476', 'en', 14204), +(38558, 'Magda: A Play in Four Acts', 'Sudermann, Hermann', '2010-11-01', 19, 'https://www.gutenberg.org/ebooks/34184', 'en', 493), +(38559, 'The Winds of the World', 'Mundy, Talbot', '2004-10-01', 45, 'https://www.gutenberg.org/ebooks/6751', 'en', 1228), +(38560, 'Cock Lane and Common-Sense', 'Lang, Andrew', '2004-06-01', 26, 'https://www.gutenberg.org/ebooks/12674', 'en', 1245), +(38561, 'Humanity in the City', 'Chapin, E. H. (Edwin Hubbell)', '2008-08-27', 5, 'https://www.gutenberg.org/ebooks/26441', 'en', 14205), +(38562, 'Mr. Honey\'s Correspondence Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 16, 'https://www.gutenberg.org/ebooks/3223', 'en', 5007), +(38563, 'Children in Prison and Other Cruelties of Prison Life', 'Wilde, Oscar', '2013-02-16', 29, 'https://www.gutenberg.org/ebooks/42104', 'en', 7066), +(38564, 'Our Mutual Friend', 'Dickens, Charles', '2006-01-01', 15, 'https://www.gutenberg.org/ebooks/9719', 'en', 13723), +(38565, 'Percy: A Tragedy', 'More, Hannah', '2009-11-21', 9, 'https://www.gutenberg.org/ebooks/30524', 'en', 1298), +(38566, 'La Majstro kaj Martinelli', 'Camacho, Jorge', '2008-12-22', 9, 'https://www.gutenberg.org/ebooks/27593', 'eo', 8756), +(38567, 'Anecdotal Recollections of the Congress of Vienna', 'La Garde-Chambonas, Auguste Louis Charles, Comte de', '2017-01-27', 19, 'https://www.gutenberg.org/ebooks/54061', 'en', 14206), +(38568, 'De carne y hueso; cuentos', 'Zamacois, Eduardo', '2016-04-10', 12, 'https://www.gutenberg.org/ebooks/51721', 'es', 1696), +(38569, 'The Silver Crown: Another Book of Fables', 'Richards, Laura Elizabeth Howe', '2006-11-21', 8, 'https://www.gutenberg.org/ebooks/19892', 'en', 1141), +(38570, 'Professor Unrat, oder, Das Ende eines Tyrannen', 'Mann, Heinrich', '2011-02-13', 89, 'https://www.gutenberg.org/ebooks/35264', 'de', 14207), +(38571, 'The Pioneer Boys of the Mississippi; or, The Homestead in the Wilderness', 'Rathborne, St. George', '2014-09-07', 13, 'https://www.gutenberg.org/ebooks/46796', 'en', 1259), +(38572, 'A Year in Europe', 'Moore, Walter W. (Walter William)', '2014-12-12', 11, 'https://www.gutenberg.org/ebooks/47644', 'en', 1408), +(38573, 'Memoirs of Extraordinary Popular Delusions — Volume 3', 'Mackay, Charles', '1997-04-01', 136, 'https://www.gutenberg.org/ebooks/884', 'en', 4922), +(38574, 'La cité de Carcassonne', 'Viollet-le-Duc, Eugène-Emmanuel', '2006-07-30', 40, 'https://www.gutenberg.org/ebooks/18940', 'fr', 1352), +(38575, 'The Blunderer', 'Molière', '2004-09-01', 24, 'https://www.gutenberg.org/ebooks/6563', 'en', 3936), +(38576, 'Each Man Kills', 'Glad, Victoria', '2007-11-03', 86, 'https://www.gutenberg.org/ebooks/23301', 'en', 179), +(38577, 'Taboo\nA Legend Retold from the Dirghic of Sævius Nicanor, with\nProlegomena, Notes, and a Preliminary Memoir', 'Cabell, James Branch', '2005-11-22', 66, 'https://www.gutenberg.org/ebooks/17134', 'en', 781), +(38578, 'The Lady of the Lake', 'Scott, Walter', '2002-01-01', 320, 'https://www.gutenberg.org/ebooks/3011', 'en', 14208), +(38579, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 08 of 12)', 'Frazer, James George', '2013-03-14', 107, 'https://www.gutenberg.org/ebooks/42336', 'en', 655), +(38580, 'Il Designato: Romanzo', 'Zùccoli, Luciano', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12446', 'it', 61), +(38581, 'After the War: A Southern Tour. May 1, 1865 to May 1, 1866', 'Reid, Whitelaw', '2017-08-18', 9, 'https://www.gutenberg.org/ebooks/55381', 'en', 12205), +(38582, 'At the Sign of the Jack O\'Lantern', 'Reed, Myrtle', '2008-09-20', 42, 'https://www.gutenberg.org/ebooks/26673', 'en', 14209), +(38583, 'Kiana: a Tradition of Hawaii', 'Jarves, James Jackson', '2019-08-06', 721, 'https://www.gutenberg.org/ebooks/60066', 'en', 14210), +(38584, 'A Selected Bibliography of Virginia, 1607-1699', 'Jennings, John M. (John Melville)', '2017-02-28', 8, 'https://www.gutenberg.org/ebooks/54253', 'en', 14211), +(38585, 'Portraits littéraires, Tome I', 'Sainte-Beuve, Charles Augustin', '2004-10-04', 45, 'https://www.gutenberg.org/ebooks/13594', 'fr', 2650), +(38586, 'Nel sogno', 'Neera', '2006-03-04', 17, 'https://www.gutenberg.org/ebooks/17908', 'it', 61), +(38587, 'El Internet y los idiomas [alrededor del año 2000]', 'Lebert, Marie', '2009-12-20', 15, 'https://www.gutenberg.org/ebooks/30716', 'es', 2069), +(38588, 'New Collected Rhymes', 'Lang, Andrew', '1999-05-01', 40, 'https://www.gutenberg.org/ebooks/1746', 'en', 54), +(38589, 'Satan Absolved: A Victorian Mystery', 'Blunt, Wilfrid Scawen', '2010-07-17', 18, 'https://www.gutenberg.org/ebooks/33193', 'en', 8), +(38590, 'Indian Home Rule', 'Gandhi, Mahatma', '2012-08-09', 51, 'https://www.gutenberg.org/ebooks/40461', 'en', 13350), +(38591, 'Around the World on the Phonograph', 'Edison, Thomas A. (Thomas Alva)', '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10311', 'en', 2909), +(38592, 'Down the Rhine; Or, Young America in Germany', 'Optic, Oliver', '2008-01-02', 13, 'https://www.gutenberg.org/ebooks/24124', 'en', 11980), +(38593, 'Proverbs and Their Lessons\r\nBeing the Subject of Lectures Delivered to Young Men\'s Societies at Portsmouth and Elsewhere', 'Trench, Richard Chenevix', '2018-02-06', 14, 'https://www.gutenberg.org/ebooks/56504', 'en', 3358), +(38594, 'One Man\'s Poison', 'Sheckley, Robert', '2010-04-18', 59, 'https://www.gutenberg.org/ebooks/32041', 'en', 26), +(38595, 'The Works of Richard Hurd, Volume 1 (of 8)', 'Hurd, Richard', '2016-09-07', 9, 'https://www.gutenberg.org/ebooks/52998', 'en', 2745), +(38596, 'Kiusaaja: Romaani', 'Jókai, Mór', '2016-09-18', 14, 'https://www.gutenberg.org/ebooks/53076', 'fi', 2326), +(38597, 'You Should Worry Says John Henry', 'Hobart, George V. (George Vere)', '2007-02-15', 18, 'https://www.gutenberg.org/ebooks/20584', 'en', 112), +(38598, 'Bungay Castle: A Novel. v. 1/2', 'Bonhote, Mrs. (Elizabeth)', '2011-09-25', 8, 'https://www.gutenberg.org/ebooks/37533', 'en', 1529), +(38599, 'Hollowdell Grange: Holiday Hours in a Country Home', 'Fenn, George Manville', '2008-03-26', 14, 'https://www.gutenberg.org/ebooks/24918', 'en', 5372), +(38600, 'Nuggets of the New Thought: Several Things That Have Helped People', 'Atkinson, William Walker', '2014-03-11', 61, 'https://www.gutenberg.org/ebooks/45113', 'en', 43), +(38601, 'Correspondence of Wagner and Liszt — Volume 2', 'Liszt, Franz', '2003-07-01', 26, 'https://www.gutenberg.org/ebooks/4234', 'en', 6729), +(38602, 'The Cruise of the \"Dainty\"; Or, Rovings in the Pacific', 'Kingston, William Henry Giles', '2007-05-15', 13, 'https://www.gutenberg.org/ebooks/21456', 'en', 14212), +(38603, 'Ancient Egypt', 'Gilman, Arthur', '2005-04-20', 201, 'https://www.gutenberg.org/ebooks/15663', 'en', 14213), +(38604, 'Letters and Literary Memorials of Samuel J. Tilden, v. 1', 'Tilden, Samuel J. (Samuel Jones)', '2014-10-28', 16, 'https://www.gutenberg.org/ebooks/47220', 'en', 11134), +(38605, 'The Truth about Jesus : Is He a Myth?', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2004-07-01', 67, 'https://www.gutenberg.org/ebooks/6107', 'en', 1616), +(38606, 'Captain Boldheart & the Latin-Grammar Master\nA Holiday Romance from the Pen of Lieut-Col. Robin Redforth, aged 9', 'Dickens, Charles', '2007-12-07', 58, 'https://www.gutenberg.org/ebooks/23765', 'en', 323), +(38607, 'Yorkshire', 'Home, Gordon', '2004-08-13', 27, 'https://www.gutenberg.org/ebooks/9973', 'en', 10118), +(38608, 'Les femmes d\'artistes', 'Daudet, Alphonse', '2006-01-20', 17, 'https://www.gutenberg.org/ebooks/17550', 'fr', 2499), +(38609, 'Lars Levi Laestadius: Elämäkerrallinen kuvaus', 'Maunu, J. A.', '2015-10-24', 6, 'https://www.gutenberg.org/ebooks/50297', 'fi', 14214), +(38610, 'Verteluurtje', 'Hermanna', '2016-03-03', 11, 'https://www.gutenberg.org/ebooks/51345', 'nl', 511), +(38611, 'Muistoja lapsen ja hopeahapsen 2\nKuvauksia', 'Ramsay, Anders', '2005-08-08', 29, 'https://www.gutenberg.org/ebooks/16482', 'fi', 5573), +(38612, 'The Woodcraft Girls in the City', 'Roy, Lillian Elizabeth', '2011-03-17', 62, 'https://www.gutenberg.org/ebooks/35600', 'en', 14215), +(38613, 'Fête aérostatique, qui sera célébrée aujourd\'hui au champ de Mars; Aréostation: établissement d\'une compagnie aéronautique', 'Anonymous', '2006-06-06', 11, 'https://www.gutenberg.org/ebooks/18518', 'fr', 14216), +(38614, 'Cornish Feasts and Folk-lore', 'Courtney, M. A. (Margaret Ann)', '2017-04-30', 29, 'https://www.gutenberg.org/ebooks/54637', 'en', 14217), +(38615, 'The Russian Turmoil; Memoirs: Military, Social, and Political', 'Denikin, Anton Ivanovich', '2013-09-09', 27, 'https://www.gutenberg.org/ebooks/43680', 'en', 5396), +(38616, 'The Unpopular Review Vol. I\nJanuary-June 1914', 'Various', '2015-02-15', 17, 'https://www.gutenberg.org/ebooks/48268', 'en', 1227), +(38617, 'Robert Coverdale\'s Struggle; Or, on the Wave of Success', 'Alger, Horatio, Jr.', '2009-10-31', 32, 'https://www.gutenberg.org/ebooks/30372', 'en', 1159), +(38618, 'The Efficiency Expert', 'Burroughs, Edgar Rice', '2002-10-01', 67, 'https://www.gutenberg.org/ebooks/3475', 'en', 14218), +(38619, 'Tempest-Driven: A Romance (Vol. 3 of 3)', 'Dowling, Richard', '2013-05-20', 14, 'https://www.gutenberg.org/ebooks/42752', 'en', 61), +(38620, 'A start in life. A journey across America. Fruit farming in California', 'Dowsett, C. F. (Charles Finch)', '2004-04-01', 30, 'https://www.gutenberg.org/ebooks/12022', 'en', 14219), +(38621, 'The Loyalist\nA Story of the American Revolution', 'Barrett, James Francis', '2008-08-08', 23, 'https://www.gutenberg.org/ebooks/26217', 'en', 1293), +(38622, 'How Private George W. Peck Put Down the Rebellion\r\nor, The Funny Experiences of a Raw Recruit - 1887', 'Peck, George W. (George Wilbur)', '2008-05-16', 22, 'https://www.gutenberg.org/ebooks/25492', 'en', 403), +(38623, 'Sigrid Persdotter Bjurcrona: En släktroman', 'Didring, Ernst', '2017-12-10', 25, 'https://www.gutenberg.org/ebooks/56160', 'sv', 420), +(38624, 'Maurice Tiernay, Soldier of Fortune', 'Lever, Charles James', '2010-05-19', 16, 'https://www.gutenberg.org/ebooks/32425', 'en', 2809), +(38625, 'A History of Southern Utah and Its National Parks (Revised)', 'Woodbury, Angus M. (Angus Munn)', '2019-07-13', 102, 'https://www.gutenberg.org/ebooks/59914', 'en', 13129), +(38626, 'Leaves of Grass', 'Whitman, Walt', '1998-05-01', 2274, 'https://www.gutenberg.org/ebooks/1322', 'en', 350), +(38627, 'North American Recent Soft-Shelled Turtles (Family Trionychidae)', 'Webb, Robert G.', '2012-06-16', 17, 'https://www.gutenberg.org/ebooks/40005', 'en', 14220), +(38628, 'Le Horla', 'Maupassant, Guy de', '2004-01-01', 172, 'https://www.gutenberg.org/ebooks/10775', 'fr', 687), +(38629, 'Country Neighbors', 'Brown, Alice', '2008-02-07', 24, 'https://www.gutenberg.org/ebooks/24540', 'en', 2625), +(38630, 'Betty\'s Happy Year', 'Wells, Carolyn', '2014-05-04', 39, 'https://www.gutenberg.org/ebooks/45577', 'en', 3831), +(38631, 'Turns about Town', 'Holliday, Robert Cortes', '2011-05-11', 33, 'https://www.gutenberg.org/ebooks/36085', 'en', 20), +(38632, 'Candide, ou, L\'optimisme', 'Voltaire', '2003-11-01', 209, 'https://www.gutenberg.org/ebooks/4650', 'fr', 13087), +(38633, 'Exercises in Knitting', 'Mee, Cornelia', '2007-04-11', 134, 'https://www.gutenberg.org/ebooks/21032', 'en', 948), +(38634, 'Harper\'s Round Table, September 1, 1896', 'Various', '2019-03-26', 4, 'https://www.gutenberg.org/ebooks/59128', 'en', 668), +(38635, 'The New Physics and Its Evolution', 'Poincaré, Lucien', '2005-02-28', 57, 'https://www.gutenberg.org/ebooks/15207', 'en', 1194), +(38636, 'The Witchcraft Delusion in New England: Its Rise, Progress, and Termination (Vol. 3 of 3)', 'Calef, Robert', '2016-10-30', 13, 'https://www.gutenberg.org/ebooks/53412', 'en', 939), +(38637, 'Modern Painters, Volume 3 (of 5)', 'Ruskin, John', '2012-02-18', 51, 'https://www.gutenberg.org/ebooks/38923', 'en', 2250), +(38638, 'The New Woman: An Original Comedy, in Four Acts', 'Grundy, Sydney', '2012-09-22', 14, 'https://www.gutenberg.org/ebooks/40839', 'en', 13779), +(38639, 'Science and hypothesis', 'Poincaré, Henri', '2011-08-21', 259, 'https://www.gutenberg.org/ebooks/37157', 'en', 11515), +(38640, 'A Tramp Abroad — Volume 01', 'Twain, Mark', '2004-06-17', 10, 'https://www.gutenberg.org/ebooks/5782', 'en', 1907), +(38641, 'A Apple Pie', 'Greenaway, Kate', '2005-05-10', 170, 'https://www.gutenberg.org/ebooks/15809', 'en', 859), +(38642, 'The Galaxy, May, 1877\nVol. XXIII.—May, 1877.—No. 5.', 'Various', '2010-05-31', 89, 'https://www.gutenberg.org/ebooks/32617', 'en', 883), +(38643, 'La Main Gauche', 'Maupassant, Guy de', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11495', 'fr', 100), +(38644, 'Mastro da Ballo', 'Santucci Perugino, Ercole', '2018-01-10', 4, 'https://www.gutenberg.org/ebooks/56352', 'it', 2893), +(38645, 'The Fern Bulletin, April 1912\nA Quarterly Devoted to Ferns', 'Various', '2018-06-05', 2, 'https://www.gutenberg.org/ebooks/57280', 'en', 1230), +(38646, 'Topsy-Turvy', 'Verne, Jules', '2003-12-01', 42, 'https://www.gutenberg.org/ebooks/10547', 'en', 11296), +(38647, 'Sara Crewe; Or, What Happened at Miss Minchin\'s', 'Burnett, Frances Hodgson', '2008-03-07', 72, 'https://www.gutenberg.org/ebooks/24772', 'en', 1779), +(38648, 'King John', 'Shakespeare, William', '1997-11-01', 28, 'https://www.gutenberg.org/ebooks/1110', 'en', 6756), +(38649, 'By the Sea, and Other Verses', 'Baily, H. Lavinia, (Hannah Lavinia)', '2012-07-15', 4, 'https://www.gutenberg.org/ebooks/40237', 'en', 8), +(38650, 'The Letters of Cicero, Volume 1\nThe Whole Extant Correspodence in Chronological Order', 'Cicero, Marcus Tullius', '2007-04-22', 179, 'https://www.gutenberg.org/ebooks/21200', 'en', 4885), +(38651, 'Fishing Grounds of the Gulf of Maine', 'Rich, Walter H. (Walter Herbert)', '2005-02-13', 63, 'https://www.gutenberg.org/ebooks/15035', 'en', 14221), +(38652, 'The Heart of the Wild: Nature Studies from Near and Far', 'Bensusan, S. L. (Samuel Levy)', '2014-05-24', 12, 'https://www.gutenberg.org/ebooks/45745', 'en', 4589), +(38653, 'The Tragic Comedians: A Study in a Well-known Story — Volume 2', 'Meredith, George', '2003-09-01', 22, 'https://www.gutenberg.org/ebooks/4462', 'en', 14222), +(38654, 'Sonnets and Other Verse', 'MacKeracher, William M. (William Mackay)', '2011-09-09', 3, 'https://www.gutenberg.org/ebooks/37365', 'en', 6193), +(38655, 'Histoire de Flandre (T. 4/4)', 'Kervyn de Lettenhove, Joseph Marie Bruno Constantin, Baron', '2014-01-18', 10, 'https://www.gutenberg.org/ebooks/44697', 'fr', 3813), +(38656, 'The life of Friedrich Nietzsche', 'Halévy, Daniel', '2016-11-28', 24, 'https://www.gutenberg.org/ebooks/53620', 'en', 5723), +(38657, 'The Crucial Moment\n1911', 'Murfree, Mary Noailles', '2007-11-19', 4, 'https://www.gutenberg.org/ebooks/23557', 'en', 3814), +(38658, 'The Fantasy Fan, March, 1934\nThe Fans\' Own Magazine', 'Various', '2015-05-03', 26, 'https://www.gutenberg.org/ebooks/48866', 'en', 14223), +(38659, 'The Burglar\'s Fate, and The Detectives', 'Pinkerton, Allan', '2006-02-12', 16, 'https://www.gutenberg.org/ebooks/17762', 'en', 14224), +(38660, 'Fame and Fortune Weekly, No. 801, February 4, 1921\nStories of boys that make money', 'Various', '2014-10-01', 5, 'https://www.gutenberg.org/ebooks/47012', 'en', 8744), +(38661, 'The Antiquity of Man', 'Lyell, Charles, Sir', '2004-08-01', 34, 'https://www.gutenberg.org/ebooks/6335', 'en', 14225), +(38662, 'The Library Magazine of Select Foreign Literature\nAll volumes', 'Various', '2011-02-28', 23, 'https://www.gutenberg.org/ebooks/35432', 'en', 18), +(38663, 'Caroline de Lichtfield\r\nou Mémoires extraits des papiers d\'une famille prussienne', 'Montolieu, Isabelle de', '2008-10-07', 40, 'https://www.gutenberg.org/ebooks/26819', 'fr', 348), +(38664, 'Legends of Lancashire', 'Landreth, Peter', '2016-02-11', 17, 'https://www.gutenberg.org/ebooks/51177', 'en', 4697), +(38665, 'Devon, Its Moorlands, Streams and Coasts', 'Northcote, Rosalind', '2007-09-01', 64, 'https://www.gutenberg.org/ebooks/22485', 'en', 11930), +(38666, 'How Girls Can Help Their Country', 'Low, Juliette Gordon', '2009-05-28', 44, 'https://www.gutenberg.org/ebooks/28983', 'en', 6866), +(38667, 'Bob, Son of Battle', 'Ollivant, Alfred', '2001-09-01', 46, 'https://www.gutenberg.org/ebooks/2795', 'en', 2464), +(38668, 'Mam\' Linda', 'Harben, Will N. (Will Nathaniel)', '2016-01-11', 10, 'https://www.gutenberg.org/ebooks/50899', 'en', 3436), +(38669, 'Gone Fishing', 'Schmitz, James H.', '2009-09-30', 73, 'https://www.gutenberg.org/ebooks/30140', 'en', 26), +(38670, 'Motor Tours in the West Country', 'Stawell, Rodolph, Mrs.', '2017-03-21', 11, 'https://www.gutenberg.org/ebooks/54405', 'en', 2379), +(38671, 'Dixon\'s Return\nOdd Craft, Part 10.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12210', 'en', 3421), +(38672, 'Carlota Angela', 'Castelo Branco, Camilo', '2008-07-10', 24, 'https://www.gutenberg.org/ebooks/26025', 'pt', 3856), +(38673, 'The Dwelling Place of Light — Volume 2', 'Churchill, Winston', '2004-10-15', 2, 'https://www.gutenberg.org/ebooks/3647', 'en', 13), +(38674, 'Hero Stories from American History\nFor Elementary Schools', 'Blaisdell, Albert F. (Albert Franklin)', '2010-01-26', 35, 'https://www.gutenberg.org/ebooks/31092', 'en', 207), +(38675, 'Memoirs of the Dukes of Urbino, Volume 1 (of 3)\r\nIllustrating the Arms, Arts, and Literature of Italy, from 1440 To 1630.', 'Dennistoun, James', '2013-04-19', 23, 'https://www.gutenberg.org/ebooks/42560', 'en', 14226), +(38676, 'Daisy Herself', 'Ingersoll, Will E.', '2015-06-10', 10, 'https://www.gutenberg.org/ebooks/49188', 'en', 10914), +(38677, 'Dwellers in the Hills', 'Post, Melville Davisson', '2009-08-30', 18, 'https://www.gutenberg.org/ebooks/29851', 'en', 61), +(38678, 'Discours prodigieux et espouventable de trois Espaignols et une Espagnolle,\r\nMagiciens et sorciers qui se faisoient porter par les diables, de ville en ville, avec leurs déclarations d\'avoir fait mourir plusieurs personnes et bestail par leurs sorcillèges, et aussi d\'avoir fait plusieurs dégats aux biens de la terre : Ensemble l\'arrest prononcé contre eux par la Cour de Parlement de Bourdeaux, le Samedy 10. jour de Mars, 1610', 'Anonymous', '2004-11-03', 22, 'https://www.gutenberg.org/ebooks/13938', 'fr', 7074), +(38679, 'Vasárnapi Könyv. 1914. Első félév 17. füzet', 'Anonymous', '2010-12-22', 6, 'https://www.gutenberg.org/ebooks/34726', 'hu', 18), +(38680, 'Scrimshaw', 'Leinster, Murray', '2007-12-10', 47, 'https://www.gutenberg.org/ebooks/23791', 'en', 179), +(38681, 'If, Yes and Perhaps\nFour Possibilities and Six Exaggerations with Some Bits of Fact', 'Hale, Edward Everett', '2009-03-21', 19, 'https://www.gutenberg.org/ebooks/28379', 'en', 112), +(38682, 'Wäinämöinen: Lyriskt försök i tre akter', 'Brakel, Gustaf Anton', '2015-10-20', 19, 'https://www.gutenberg.org/ebooks/50263', 'sv', 433), +(38683, 'Stories by Foreign Authors: Spanish', NULL, '2006-02-01', 52, 'https://www.gutenberg.org/ebooks/9987', 'en', 7963), +(38684, 'The Rover Boys on Land and Sea: The Crusoes of Seven Islands', 'Stratemeyer, Edward', '2005-08-08', 32, 'https://www.gutenberg.org/ebooks/16476', 'en', 2788), +(38685, 'Astral Worship', 'Hill, J. H.', '2005-09-01', 93, 'https://www.gutenberg.org/ebooks/8855', 'en', 14227), +(38686, 'Santa Rita Pintor\r\nIn Memoriam', 'Parreira, Carlos', '2007-09-16', 12, 'https://www.gutenberg.org/ebooks/22643', 'pt', 14228), +(38687, 'Indian Frontier Policy; an historical sketch', 'Adye, John, Sir', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/7021', 'en', 14229), +(38688, 'Knots Untied; Or, Ways and By-ways in the Hidden Life of American Detectives', 'McWatters, George S.', '2014-07-17', 13, 'https://www.gutenberg.org/ebooks/46306', 'en', 1833), +(38689, '飛跎全傳', 'Bixian, Zou', '2008-11-26', 27, 'https://www.gutenberg.org/ebooks/27331', 'zh', 1003), +(38690, 'Frivolous Cupid', 'Hope, Anthony', '1996-02-01', 99, 'https://www.gutenberg.org/ebooks/428', 'en', 409), +(38691, 'The Abominations of Modern Society', 'Talmage, T. De Witt (Thomas De Witt)', '2004-08-03', 40, 'https://www.gutenberg.org/ebooks/13104', 'en', 740), +(38692, 'The Cardinal Moth', 'White, Fred M. (Fred Merrick)', '2013-09-08', 11, 'https://www.gutenberg.org/ebooks/43674', 'en', 48), +(38693, 'The One and the Many', 'Marlowe, Stephen', '2009-11-01', 31, 'https://www.gutenberg.org/ebooks/30386', 'en', 179), +(38694, 'Jeanne D\'Arc: Her Life And Death', 'Oliphant, Mrs. (Margaret)', '2006-03-28', 24, 'https://www.gutenberg.org/ebooks/2553', 'en', 624), +(38695, 'The Conservation of Races\nThe American Negro Academy. Occasional Papers No. 2', 'Du Bois, W. E. B. (William Edward Burghardt)', '2010-02-11', 56, 'https://www.gutenberg.org/ebooks/31254', 'en', 2574), +(38696, 'Expositions of Holy Scripture: Isaiah and Jeremiah', 'Maclaren, Alexander', '2005-05-01', 30, 'https://www.gutenberg.org/ebooks/8069', 'en', 11013), +(38697, 'The Life of George Borrow', 'Jenkins, Herbert George', '2002-10-01', 37, 'https://www.gutenberg.org/ebooks/3481', 'en', 2192), +(38698, 'Egy az Isten (1. rész)', 'Jókai, Mór', '2017-10-09', 3, 'https://www.gutenberg.org/ebooks/55711', 'hu', 234), +(38699, 'Little Bobtail; or, The Wreck of the Penobscot.', 'Optic, Oliver', '2008-05-14', 29, 'https://www.gutenberg.org/ebooks/25466', 'en', 5831), +(38700, 'Suomalaisia sankareita II: Historiallisia kertomuksia', 'Wilkuna, Kyösti', '2017-12-17', 17, 'https://www.gutenberg.org/ebooks/56194', 'fi', 396), +(38701, 'Notes and Queries, Number 11, January 12, 1850', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11653', 'en', 105), +(38702, 'Voyage À  Cayenne, dans les deux Amériques et chez les anthropophages (Vol. 1 de 2)', 'Pitou, Louis Ange', '2012-10-21', 5, 'https://www.gutenberg.org/ebooks/41123', 'fr', 14230), +(38703, 'Wat is het dat eene zondaar zaligmaakt?\r\nzamenspraak tusschen een kappersknecht, Methodisten predikant en den heer Easterman met een antwoord op die gewichtige vraag', 'Philpot, J. C. (Joseph Charles)', '2012-03-03', 2, 'https://www.gutenberg.org/ebooks/39039', 'nl', 14231), +(38704, 'The Sweating Sickness\r\nA boke or counseill against the disease commonly called the sweate or sweatyng sicknesse', 'Caius, John', '2010-08-23', 16, 'https://www.gutenberg.org/ebooks/33503', 'en', 14232), +(38705, 'Harper\'s Young People, July 25, 1882\nAn Illustrated Weekly', 'Various', '2019-02-04', 1, 'https://www.gutenberg.org/ebooks/58832', 'en', 479), +(38706, 'Three Months in the Southern States, April-June 1863', 'Fremantle, Arthur James Lyon, Sir', '2007-03-29', 31, 'https://www.gutenberg.org/ebooks/20928', 'en', 14233), +(38707, 'Deserted\nSailor\'s Knots, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10781', 'en', 72), +(38708, 'The Pool of Stars', 'Meigs, Cornelia', '2018-04-25', 11, 'https://www.gutenberg.org/ebooks/57046', 'en', 1655), +(38709, 'Scapa and a Camera\nPictorial Impressions of Five Years Spent at the Grand Fleet Base', 'Burrows, C. W.', '2014-05-04', 28, 'https://www.gutenberg.org/ebooks/45583', 'en', 14234), +(38710, 'Hesperus; or, Forty-Five Dog-Post-Days: A Biography. Vol. I.', 'Jean Paul', '2011-05-09', 14, 'https://www.gutenberg.org/ebooks/36071', 'en', 61), +(38711, 'True Manliness\nFrom the Writings of Thomas Hughes', 'Hughes, Thomas', '2016-07-09', 14, 'https://www.gutenberg.org/ebooks/52534', 'en', 740), +(38712, 'Practical Boat-Sailing: A Concise and Simple Treatise', 'Frazar, Douglas', '2012-05-26', 35, 'https://www.gutenberg.org/ebooks/39805', 'en', 14235), +(38713, 'Punch, or the London Charivari, Volume 102, February 20, 1892', 'Various', '2004-12-10', 8, 'https://www.gutenberg.org/ebooks/14321', 'en', 134), +(38714, 'Goethen runoja', 'Goethe, Johann Wolfgang von', '2006-12-15', 25, 'https://www.gutenberg.org/ebooks/20114', 'fi', 14236), +(38715, '100%: the Story of a Patriot', 'Sinclair, Upton', '2004-05-01', 83, 'https://www.gutenberg.org/ebooks/5776', 'en', 14237), +(38716, 'A Company of Tanks', 'Watson, William Henry Lowe', '2013-12-17', 20, 'https://www.gutenberg.org/ebooks/44451', 'en', 14238), +(38717, 'Five Plays', 'Dunsany, Lord', '2012-11-07', 37, 'https://www.gutenberg.org/ebooks/41311', 'en', 1088), +(38718, 'Stories of King Arthur\'s Knights, Told to the Children by Mary MacGregor', 'MacGregor, Mary Esther Miller', '2008-05-31', 43, 'https://www.gutenberg.org/ebooks/25654', 'en', 5139), +(38719, 'Armenian Literature: Comprising Poetry, Drama, Folk-lore and Classic Traditions;\r\nTranslated into English for the First Time', NULL, '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11461', 'en', 14239), +(38720, 'My Queen: A Weekly Journal for Young Women. Issue 2, October 6, 1900\nMarion Marlowe\'s Courage; or, A Brave Girl\'s Struggle for Life and Honor', 'Sheldon, Lurana', '2018-06-04', 7, 'https://www.gutenberg.org/ebooks/57274', 'en', 8744), +(38721, 'Games and Play for School Morale\nA Course of Graded Games for School and Community Recreation', NULL, '2008-03-08', 20, 'https://www.gutenberg.org/ebooks/24786', 'en', 14240), +(38722, 'The Span o\' Life: A Tale of Louisbourg & Quebec', 'McLennan, William', '2010-09-15', 10, 'https://www.gutenberg.org/ebooks/33731', 'en', 893), +(38723, 'About Paris', 'Davis, Richard Harding', '2016-08-02', 26, 'https://www.gutenberg.org/ebooks/52706', 'en', 2972), +(38724, 'The Gentleman of Fifty and The Damsel of Nineteen (An early uncompleted fragment)', 'Meredith, George', '2003-09-01', 9, 'https://www.gutenberg.org/ebooks/4496', 'en', 137), +(38725, 'Roland Graeme: Knight. A Novel of Our Time', 'Machar, Agnes Maule', '2011-05-28', 17, 'https://www.gutenberg.org/ebooks/36243', 'en', 1219), +(38726, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 02', 'Ebers, Georg', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/5544', 'en', 803), +(38727, 'Burning of the Brooklyn Theatre\r\nA thrilling personal experience! Brooklyn\'s horror. Wholesale holocaust at the Brooklyn, New York, Theatre, on the night of December 5th, 1876', 'Anonymous', '2011-09-12', 13, 'https://www.gutenberg.org/ebooks/37391', 'en', 14241), +(38728, 'John Leech\'s Pictures of Life and Character, Volume 3 (of 3)\r\nFrom the Collection of \"Mr. Punch\"', 'Leech, John', '2014-01-14', 9, 'https://www.gutenberg.org/ebooks/44663', 'en', 2965), +(38729, 'Les fantômes\r\nÉtude cruelle', 'Flor O\'Squarr, Ch. (Charles)', '2004-11-22', 16, 'https://www.gutenberg.org/ebooks/14113', 'fr', 61), +(38730, 'Six Little Bunkers at Uncle Fred\'s', 'Hope, Laura Lee', '2007-01-10', 11, 'https://www.gutenberg.org/ebooks/20326', 'en', 378), +(38731, 'Marriage with a deceased wife\'s sister\r\nLeviticus XVIII. 18, considered in connection with the Law of the Levirate', 'Mayow, Mayow Wynell', '2015-05-07', 5, 'https://www.gutenberg.org/ebooks/48892', 'en', 14242), +(38732, 'The Motor Boys on Road and River; Or, Racing To Save a Life', 'Young, Clarence', '2015-09-25', 14, 'https://www.gutenberg.org/ebooks/50051', 'en', 14243), +(38733, 'Le pays des fourrures', 'Verne, Jules', '2006-02-19', 17, 'https://www.gutenberg.org/ebooks/17796', 'fr', 7555), +(38734, 'The Junkmakers', 'Teichner, Albert', '2010-01-16', 23, 'https://www.gutenberg.org/ebooks/30988', 'en', 26), +(38735, 'Laivuri Worse', 'Kielland, Alexander Lange', '2010-12-01', 12, 'https://www.gutenberg.org/ebooks/34514', 'fi', 286), +(38736, 'My Life and Work', 'Ford, Henry', '2005-01-01', 526, 'https://www.gutenberg.org/ebooks/7213', 'en', 14244), +(38737, 'Garden Cities of To-Morrow\nBeing the Second Edition of \"To-Morrow: a Peaceful Path to Real Reform\"', 'Howard, Ebenezer, Sir', '2014-06-29', 80, 'https://www.gutenberg.org/ebooks/46134', 'en', 14245), +(38738, 'The Puritan Twins', 'Perkins, Lucy Fitch', '2005-09-04', 38, 'https://www.gutenberg.org/ebooks/16644', 'en', 14246), +(38739, 'History of Greece, Volume 10 (of 12)', 'Grote, George', '2016-02-11', 18, 'https://www.gutenberg.org/ebooks/51183', 'en', 6424), +(38740, 'The Fair Play Settlers of the West Branch Valley, 1769-1784\nA Study of Frontier Ethnography', 'Wolf, George D.', '2007-08-31', 13, 'https://www.gutenberg.org/ebooks/22471', 'en', 14247), +(38741, 'Der Satansgedanke', 'Bartsch, Rudolf Hans', '2015-09-11', 15, 'https://www.gutenberg.org/ebooks/49940', 'de', 6952), +(38742, 'Harper\'s Young People, August 17, 1880\nAn Illustrated Weekly', 'Various', '2009-06-11', 17, 'https://www.gutenberg.org/ebooks/29099', 'en', 479), +(38743, 'White Heather: A Novel (Volume 3 of 3)', 'Black, William', '2013-08-11', 12, 'https://www.gutenberg.org/ebooks/43446', 'en', 1922), +(38744, 'Cadio', 'Sand, George', '2009-05-27', 18, 'https://www.gutenberg.org/ebooks/28977', 'fr', 3017), +(38745, 'The Atlantic Monthly, Volume 05, No. 29, March, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-11-01', 11, 'https://www.gutenberg.org/ebooks/9389', 'en', 1227), +(38746, 'Benita, an African romance', 'Haggard, H. Rider (Henry Rider)', '2006-03-28', 61, 'https://www.gutenberg.org/ebooks/2761', 'en', 2588), +(38747, 'The Little Russian Servant', 'Gréville, Henry', '2008-10-30', 9, 'https://www.gutenberg.org/ebooks/27103', 'en', 1994), +(38748, 'Clotilde Martory', 'Malot, Hector', '2004-08-31', 20, 'https://www.gutenberg.org/ebooks/13336', 'fr', 61), +(38749, 'Under Greek Skies', 'Dragoume, Ioulia D.', '2017-09-10', 5, 'https://www.gutenberg.org/ebooks/55523', 'en', 5904), +(38750, 'Gott betet', 'Lichnowsky, Mechtild', '2014-09-20', 8, 'https://www.gutenberg.org/ebooks/46908', 'de', 422), +(38751, 'El legado del ignorantismo\r\nConferencia dada el 23 de abril de 1920 ante la Asamblea de Maestros en Baguio', 'Pardo de Tavera, T. H. (Trinidad Hermenegildo)', '2010-01-25', 8, 'https://www.gutenberg.org/ebooks/31066', 'es', 14248), +(38752, 'Les réprouvés et les élus (t.2)', 'Souvestre, Émile', '2013-04-25', 12, 'https://www.gutenberg.org/ebooks/42594', 'fr', 61), +(38753, 'A Literary & Historical Atlas of America', 'Bartholomew, J. G. (John George)', '2018-07-31', 10, 'https://www.gutenberg.org/ebooks/57610', 'en', 14249), +(38754, 'Oahu Traveler\'s guide', 'Gleasner, Bill', '2010-08-05', 22, 'https://www.gutenberg.org/ebooks/33355', 'en', 14250), +(38755, 'Charmides', 'Plato', '1998-12-01', 135, 'https://www.gutenberg.org/ebooks/1580', 'en', 11794), +(38756, 'Cornish Characters and Strange Events', 'Baring-Gould, S. (Sabine)', '2013-01-04', 47, 'https://www.gutenberg.org/ebooks/41775', 'en', 1565), +(38757, 'Know Thy Neighbor', 'Lewis, Elisabeth R.', '2010-05-07', 21, 'https://www.gutenberg.org/ebooks/32287', 'en', 14251), +(38758, 'The Return of Blue Pete', 'Allan, Luke', '2008-04-29', 10, 'https://www.gutenberg.org/ebooks/25230', 'en', 2662), +(38759, 'O+F', 'Wetterau, John Moncure', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11005', 'en', 61), +(38760, 'Vandrad the Viking; Or, The Feud and the Spell', 'Clouston, J. Storer (Joseph Storer)', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/5120', 'en', 2703), +(38761, 'Juho Vesainen: Historiallinen romaani', 'Ivalo, Santeri', '2013-11-17', 12, 'https://www.gutenberg.org/ebooks/44207', 'fi', 98), +(38762, 'The Teaching of History', 'Hartwell, E. C. (Ernest Clark)', '2005-01-03', 45, 'https://www.gutenberg.org/ebooks/14577', 'en', 1098), +(38763, 'History of Central America, Volume 1, 1501-1530\r\nThe Works of Hubert Howe Bancroft, Volume 6', 'Bancroft, Hubert Howe', '2019-01-09', 7, 'https://www.gutenberg.org/ebooks/58658', 'en', 13998), +(38764, 'O May I Join the Choir Invisible! and Other Favorite Poems', 'Browning, Robert', '2007-03-04', 42, 'https://www.gutenberg.org/ebooks/20742', 'en', 532), +(38765, 'Flint: His Faults, His Friendships and His Fortunes', 'Goodwin, Maud Wilder', '2007-06-06', 21, 'https://www.gutenberg.org/ebooks/21690', 'en', 61), +(38766, 'A History of Booksellers, the Old and the New', 'Curwen, Henry', '2016-06-18', 9, 'https://www.gutenberg.org/ebooks/52362', 'en', 14252), +(38767, 'U.S. Copyright Renewals, 1969 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11839', 'en', 4170), +(38768, 'How the Bible was Invented\nA Lecture Delivered Before the Independent Religious Society', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2011-07-05', 19, 'https://www.gutenberg.org/ebooks/36627', 'en', 3792), +(38769, 'Harold : the Last of the Saxon Kings — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7677', 'en', 5349), +(38770, 'Briefe einer Deutsch-Französin', 'Kolb, Annette', '2014-08-10', 9, 'https://www.gutenberg.org/ebooks/46550', 'de', 5356), +(38771, 'Rambles in the Mammoth Cave, during the Year 1844\nBy a Visiter', 'Bullitt, Alexander Clark', '2005-07-06', 23, 'https://www.gutenberg.org/ebooks/16220', 'en', 14253), +(38772, 'As Minas de Salomão', 'Haggard, H. Rider (Henry Rider)', '2007-07-07', 57, 'https://www.gutenberg.org/ebooks/22015', 'pt', 5365), +(38773, 'La jeune fille bien élevée', 'Boylesve, René', '2015-11-11', 9, 'https://www.gutenberg.org/ebooks/50435', 'fr', 259), +(38774, 'Puhtauden ihanne', 'Järnefelt, Arvid', '2014-11-28', 11, 'https://www.gutenberg.org/ebooks/47482', 'fi', 14254), +(38775, 'Heathen mythology, Illustrated by extracts from the most celebrated writers, both ancient and modern', 'Various', '2010-10-30', 31, 'https://www.gutenberg.org/ebooks/34170', 'en', 75), +(38776, 'Tales of All Countries', 'Trollope, Anthony', '2017-07-18', 27, 'https://www.gutenberg.org/ebooks/55147', 'en', 797), +(38777, 'Children of the Ghetto: A Study of a Peculiar People', 'Zangwill, Israel', '2004-06-01', 82, 'https://www.gutenberg.org/ebooks/12680', 'en', 1079), +(38778, 'Compilation on Peace', 'Universal House of Justice', '2006-09-16', 6, 'https://www.gutenberg.org/ebooks/19268', 'en', 7255), +(38779, 'Ευθύδημος', 'Plato', '2010-02-25', 15, 'https://www.gutenberg.org/ebooks/31402', 'el', 2286), +(38780, 'A Few More Verses', 'Coolidge, Susan', '2015-07-25', 7, 'https://www.gutenberg.org/ebooks/49518', 'en', 350), +(38781, 'No Animal Food; and Nutrition and Diet; with Vegetable Recipes', 'Wheldon, Rupert H.', '2007-10-02', 98, 'https://www.gutenberg.org/ebooks/22829', 'en', 5839), +(38782, 'La lotta politica in Italia, Volume 1 (of 3)\r\nOrigini della lotta attuale (476-1887); Quinta edizione', 'Oriani, Alfredo', '2013-06-24', 21, 'https://www.gutenberg.org/ebooks/43022', 'it', 11082), +(38783, 'A Set of Six', 'Conrad, Joseph', '2006-01-09', 83, 'https://www.gutenberg.org/ebooks/2305', 'en', 179), +(38784, 'Aunt Jo\'s Scrap Bag, Volume 6\r\nAn Old-Fashioned Thanksgiving, Etc.', 'Alcott, Louisa May', '2008-12-19', 33, 'https://www.gutenberg.org/ebooks/27567', 'en', 388), +(38785, 'Wulfric the Weapon Thane\r\nA Story of the Danish Conquest of East Anglia', 'Whistler, Charles W. (Charles Watts)', '2004-10-14', 25, 'https://www.gutenberg.org/ebooks/13752', 'en', 12616), +(38786, 'Josef Balsamo: Historiallinen romaani Ludvig XV:n hovista', 'Dumas, Alexandre', '2017-02-02', 10, 'https://www.gutenberg.org/ebooks/54095', 'fi', 2892), +(38787, 'The Ned M\'Keown Stories\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 27, 'https://www.gutenberg.org/ebooks/16012', 'en', 440), +(38788, 'The 4-D Doodler', 'Waldeyer, Graph', '2007-08-03', 44, 'https://www.gutenberg.org/ebooks/22227', 'en', 26), +(38789, 'Ars Recte Vivendi; Being Essays Contributed to \"The Easy Chair\"', 'Curtis, George William', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7445', 'en', 740), +(38790, 'Mattie:—A Stray (Vol 1 of 3)', 'Robinson, F. W. (Frederick William)', '2011-02-15', 4, 'https://www.gutenberg.org/ebooks/35290', 'en', 137), +(38791, 'Zuid-Tirol\nDe Aarde en haar Volken, 1907', 'Bosch, G.', '2006-11-19', 4, 'https://www.gutenberg.org/ebooks/19866', 'nl', 14255), +(38792, 'Bessie and Her Friends', 'Mathews, Joanna H. (Joanna Hooe)', '2014-09-04', 9, 'https://www.gutenberg.org/ebooks/46762', 'en', 14256), +(38793, 'Perpetual Light : a memorial', 'Benét, William Rose', '2004-09-01', 12, 'https://www.gutenberg.org/ebooks/6597', 'en', 8), +(38794, 'The Love of Ulrich Nebendahl', 'Jerome, Jerome K. (Jerome Klapka)', '1997-04-01', 66, 'https://www.gutenberg.org/ebooks/870', 'en', 1383), +(38795, 'Ivanhoe (3/4)\nLe retour du croisé', 'Scott, Walter', '2010-11-16', 15, 'https://www.gutenberg.org/ebooks/34342', 'fr', 14257), +(38796, 'Katherine Lauderdale; Vol. 1 of 2', 'Crawford, F. Marion (Francis Marion)', '2015-12-04', 4, 'https://www.gutenberg.org/ebooks/50607', 'en', 376), +(38797, 'Hand-Loom Weaving: A Manual for School and Home', 'Todd, Mattie Phipps', '2010-03-13', 120, 'https://www.gutenberg.org/ebooks/31630', 'en', 3494), +(38798, 'Famous Frosts and Frost Fairs in Great Britain\nChronicled from the Earliest to the Present Time', 'Andrews, William', '2017-08-17', 18, 'https://www.gutenberg.org/ebooks/55375', 'en', 14258), +(38799, 'Black Spirits and White: A Book of Ghost Stories', 'Cram, Ralph Adams', '2008-09-22', 64, 'https://www.gutenberg.org/ebooks/26687', 'en', 531), +(38800, 'Hidden Symbolism of Alchemy and the Occult Arts', 'Silberer, Herbert', '2009-01-09', 187, 'https://www.gutenberg.org/ebooks/27755', 'en', 14259), +(38801, 'La donna nella vita e nelle opere di Giacomo Leopardi', 'Boghen Conigliani, Emma', '2019-08-12', 166, 'https://www.gutenberg.org/ebooks/60092', 'it', 5939), +(38802, 'Nancy MacIntyre: A Tale of the Prairies', 'Parker, Lester Shepard', '2004-09-30', 22, 'https://www.gutenberg.org/ebooks/13560', 'en', 14260), +(38803, 'Homer and Classical Philology', 'Nietzsche, Friedrich Wilhelm', '2006-04-17', 119, 'https://www.gutenberg.org/ebooks/18188', 'en', 12440), +(38804, 'The War-Trail Fort: Further Adventures of Thomas Fox and Pitamakan', 'Schultz, James Willard', '2013-07-13', 18, 'https://www.gutenberg.org/ebooks/43210', 'en', 1357), +(38805, 'Rosamund, Queen of the Lombards: A Tragedy', 'Swinburne, Algernon Charles', '2000-04-01', 11, 'https://www.gutenberg.org/ebooks/2137', 'en', 1088), +(38806, 'Flora Lyndsay; or, Passages in an Eventful Life, Vol. II.', 'Moodie, Susanna', '2010-07-15', 10, 'https://www.gutenberg.org/ebooks/33167', 'en', 61), +(38807, 'The Ordeal of Elizabeth', 'Anonymous', '2012-08-13', 50, 'https://www.gutenberg.org/ebooks/40495', 'en', 61), +(38808, 'Cliff Dwellings of the Mesa Verde: A Study in Pictures', 'Watson, Don', '2018-06-30', 10, 'https://www.gutenberg.org/ebooks/57422', 'en', 14261), +(38809, 'Punch, or the London Charivari, Vol. 109, August 10, 1895', 'Various', '2014-01-31', 13, 'https://www.gutenberg.org/ebooks/44809', 'en', 134), +(38810, 'Roy Blakeley\'s Bee-line Hike', 'Fitzhugh, Percy Keese', '2008-04-05', 5, 'https://www.gutenberg.org/ebooks/25002', 'en', 2994), +(38811, 'The Pearl Box\nContaining One Hundred Beautiful Stories for Young People', 'Anonymous', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/11237', 'en', 388), +(38812, 'History of the Jews in Russia and Poland, Volume 1 [of 3]\r\nFrom the Beginning until the Death of Alexander I (1825)', 'Dubnow, Simon', '2012-12-03', 62, 'https://www.gutenberg.org/ebooks/41547', 'en', 13480), +(38813, 'Les apôtres\nHistoire des origines du christianisme, volume 2', 'Renan, Ernest', '2016-09-18', 30, 'https://www.gutenberg.org/ebooks/53082', 'fr', 14262), +(38814, 'Punch, or the London Charivari, Volume 102, June 18, 1892', 'Various', '2005-01-20', 3, 'https://www.gutenberg.org/ebooks/14745', 'en', 134), +(38815, 'A penalidade na India segundo o Código de Manu', 'Figueiredo, Cândido de', '2007-02-11', 33, 'https://www.gutenberg.org/ebooks/20570', 'pt', 14263), +(38816, 'Mother Goose in Prose', 'Baum, L. Frank (Lyman Frank)', '2004-03-01', 119, 'https://www.gutenberg.org/ebooks/5312', 'en', 388), +(38817, 'Systematic Theology (Volume 1 of 3)', 'Strong, Augustus Hopkins', '2013-10-25', 69, 'https://www.gutenberg.org/ebooks/44035', 'en', 2382), +(38818, 'Great Lent: A School of Repentance. Its Meaning for Orthodox Christians', 'Schmemann, Alexander', '2011-06-13', 28, 'https://www.gutenberg.org/ebooks/36415', 'en', 14264), +(38819, 'True Stories of History and Biography', 'Hawthorne, Nathaniel', '2005-04-24', 100, 'https://www.gutenberg.org/ebooks/15697', 'en', 5111), +(38820, 'Cue for Quiet', 'Sherred, T. L.', '2010-06-19', 23, 'https://www.gutenberg.org/ebooks/32889', 'en', 26), +(38821, 'The Jesuits\r\nA correspondence relative to a lecture so entitled, recently delivered before the Islington Protestant Institute by the Rev. Edward Hoare, M.A., incumbent of Christ Church, Ramsgate', 'Hoare, Edward', '2016-05-23', 7, 'https://www.gutenberg.org/ebooks/52150', 'en', 14265), +(38822, 'Harper\'s New Monthly Magazine, Volume 2, No. 12, May, 1851.', 'Various', '2010-01-12', 11, 'https://www.gutenberg.org/ebooks/30943', 'en', 4316), +(38823, 'The Mississippi Saucer', 'Long, Frank Belknap', '2007-11-20', 44, 'https://www.gutenberg.org/ebooks/23568', 'en', 179), +(38824, 'Hanover; Or The Persecution of the Lowly\r\nA Story of the Wilmington Massacre.', 'Thorne, Jack', '2009-02-24', 23, 'https://www.gutenberg.org/ebooks/28180', 'en', 14266), +(38825, 'Suuri rikos', 'Kaatra, Kössi', '2015-05-02', 9, 'https://www.gutenberg.org/ebooks/48859', 'fi', 175), +(38826, 'La Demoiselle au Bois Dormant', 'Buxy, B. de (Berthe de)', '2008-10-07', 20, 'https://www.gutenberg.org/ebooks/26826', 'fr', 61), +(38827, 'Histoire de Pierre Lapin', 'Potter, Beatrix', '2009-06-06', 60, 'https://www.gutenberg.org/ebooks/29052', 'fr', 1045), +(38828, 'Essays on the Constitution of the United States\r\nPublished during its Discussion by the People, 1787-1788', NULL, '2010-04-05', 23, 'https://www.gutenberg.org/ebooks/31891', 'en', 9845), +(38829, 'Common Denominator', 'MacDonald, John D. (John Dann)', '2016-02-08', 64, 'https://www.gutenberg.org/ebooks/51148', 'en', 179), +(38830, 'Falk', 'Conrad, Joseph', '2005-11-01', 6, 'https://www.gutenberg.org/ebooks/9342', 'en', 3039), +(38831, 'Anecdotes of the Manners and Customs of London during the Eighteenth Century; Vol. 1 (of 2)\r\nIncluding the Charities, Depravities, Dresses, and Amusements etc.', 'Malcolm, James Peller', '2015-01-24', 9, 'https://www.gutenberg.org/ebooks/48065', 'en', 5645), +(38832, 'La petite Jeanne\nou Le devoir', 'Carraud, Zulma', '2006-06-29', 12, 'https://www.gutenberg.org/ebooks/18715', 'fr', 388), +(38833, '\"Abe\" Lincoln\'s Anecdotes and Stories\r\nA Collection of the Best Stories Told by Lincoln Which Made Him Famous as America\'s Best Story Teller', NULL, '2014-12-29', 33, 'https://www.gutenberg.org/ebooks/47811', 'en', 2597), +(38834, 'The World English Bible (WEB): 2 John', 'Anonymous', '2005-06-01', 8, 'https://www.gutenberg.org/ebooks/8290', 'en', 1844), +(38835, 'Jonah', 'Stone, Louis', '2003-01-01', 14, 'https://www.gutenberg.org/ebooks/3678', 'en', 792), +(38836, 'In Red and Gold', 'Merwin, Samuel', '2016-05-02', 18, 'https://www.gutenberg.org/ebooks/51974', 'en', 48), +(38837, 'Expositions of Holy Scripture\r\nEzekiel, Daniel, and the Minor Prophets. St. Matthew Chapters I to VIII', 'Maclaren, Alexander', '2005-05-16', 27, 'https://www.gutenberg.org/ebooks/15836', 'en', 9743), +(38838, 'The Child\'s Book of American Biography', 'Stimpson, Mary Stoyell', '2010-05-31', 44, 'https://www.gutenberg.org/ebooks/32628', 'en', 414), +(38839, 'A Hidden Life and Other Poems', 'MacDonald, George', '2004-01-01', 42, 'https://www.gutenberg.org/ebooks/10578', 'en', 14267), +(38840, 'Life of Thomas Paine\r\nWritten Purposely to Bind with His Writings', 'Carlile, Richard', '2012-07-11', 9, 'https://www.gutenberg.org/ebooks/40208', 'en', 5548), +(38841, 'The Mansion', 'Van Dyke, Henry', '2011-12-15', 27, 'https://www.gutenberg.org/ebooks/38312', 'en', 658), +(38842, 'Index of the Project Gutenberg Works of Marguerite, Queen of Navarre', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2019-04-21', 10, 'https://www.gutenberg.org/ebooks/59325', 'en', 198), +(38843, 'The Plurality of Worlds', 'Whewell, William', '2011-05-31', 24, 'https://www.gutenberg.org/ebooks/36288', 'en', 14268), +(38844, 'The Drums of Jeopardy', 'MacGrath, Harold', '1999-10-01', 15, 'https://www.gutenberg.org/ebooks/1913', 'en', 8130), +(38845, 'The Three Brontës', 'Sinclair, May', '2004-03-01', 37, 'https://www.gutenberg.org/ebooks/11698', 'en', 53), +(38846, 'McClure\'s Magazine, Vol. 1, No. 5, October 1893', 'Various', '2011-07-28', 19, 'https://www.gutenberg.org/ebooks/36886', 'en', 883), +(38847, 'Misericordia', 'Pérez Galdós, Benito', '2007-06-14', 72, 'https://www.gutenberg.org/ebooks/21831', 'es', 61), +(38848, 'Bridge Axioms and Laws', 'Elwell, J. B. (Joseph Bowne)', '2011-11-24', 10, 'https://www.gutenberg.org/ebooks/38120', 'en', 10800), +(38849, 'Maid of the Mist', 'Oxenham, John', '2011-11-19', 18, 'https://www.gutenberg.org/ebooks/37954', 'en', 3972), +(38850, 'Fun o\' the Forge: Stories', 'O\'Higgins, Brian', '2018-04-11', 32, 'https://www.gutenberg.org/ebooks/56963', 'en', 14269), +(38851, 'Kindheit', 'Frank, Leonhard', '2014-05-01', 7, 'https://www.gutenberg.org/ebooks/45548', 'de', 549), +(38852, 'Siitä nousi hirmuinen prosessi: Kertomus', 'Kivinen, Ilmari', '2019-03-24', 2, 'https://www.gutenberg.org/ebooks/59117', 'fi', 175), +(38853, 'Mathilda', 'Shelley, Mary Wollstonecraft', '2005-03-02', 294, 'https://www.gutenberg.org/ebooks/15238', 'en', 4905), +(38854, 'Little Jeanne of France', 'Brandeis, Madeline', '2012-09-20', 17, 'https://www.gutenberg.org/ebooks/40806', 'en', 4426), +(38855, 'Norston\'s Rest', 'Stephens, Ann S. (Ann Sophia)', '2011-08-23', 16, 'https://www.gutenberg.org/ebooks/37168', 'en', 847), +(38856, 'Life and Habit', 'Butler, Samuel', '2004-07-01', 31, 'https://www.gutenberg.org/ebooks/6138', 'en', 14270), +(38857, 'Punch, or the London Charivari, Vol. 150, March 29, 1916', 'Various', '2007-09-20', 16, 'https://www.gutenberg.org/ebooks/22688', 'en', 134), +(38858, 'Sure Pop and the Safety Scouts', 'Bailey, Roy Rutherford', '2009-06-28', 18, 'https://www.gutenberg.org/ebooks/29260', 'en', 14271), +(38859, 'The Brook Kerith: A Syrian story', 'Moore, George', '2004-07-05', 26, 'https://www.gutenberg.org/ebooks/12821', 'en', 10287), +(38860, 'An Assessment of the Consequences and Preparations for a Catastrophic California Earthquake: Findings and Actions Taken', 'United States. Federal Emergency Management Agency', '2006-06-07', 12, 'https://www.gutenberg.org/ebooks/18527', 'en', 14272), +(38861, 'Ralph Raymond\'s Heir', 'Alger, Horatio, Jr.', '2017-04-26', 12, 'https://www.gutenberg.org/ebooks/54608', 'en', 14273), +(38862, 'Boy Scouts in an Airship; Or, The Warning from the Sky', 'Ralphson, G. Harvey (George Harvey)', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6904', 'en', 14274), +(38863, 'The Three Cities Trilogy, Complete\nLourdes, Rome and Paris', 'Zola, Émile', '2005-10-01', 39, 'https://www.gutenberg.org/ebooks/9170', 'en', 109), +(38864, 'Urban Sketches', 'Harte, Bret', '2006-05-22', 35, 'https://www.gutenberg.org/ebooks/2598', 'en', 179), +(38865, 'Chronique de 1831 à 1862, Tome 2 (de 4)', 'Dino, Dorothée, duchesse de', '2015-02-14', 9, 'https://www.gutenberg.org/ebooks/48257', 'fr', 7263), +(38866, 'The Singing Caravan: A Sufi Tale', 'Vansittart, Robert Gilbert Vansittart, Baron', '2015-07-07', 13, 'https://www.gutenberg.org/ebooks/49385', 'en', 8), +(38867, 'Candide', 'Voltaire', '2008-08-01', 19, 'https://www.gutenberg.org/ebooks/26228', 'en', 13087), +(38868, 'The Merchant of Venice', 'Shakespeare, William', '1999-06-01', 30, 'https://www.gutenberg.org/ebooks/1779', 'en', 5469), +(38869, 'Life of Luther\r\nwith several introductory and concluding chapters from general church history', 'Just, Gustav A.', '2012-01-10', 23, 'https://www.gutenberg.org/ebooks/38544', 'en', 1073); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(38870, 'Madame Young\'s Guide to Health\r\nHer experience and practice for nearly forty years; a true family herbal, wherein is displayed the true properties and medical virtues of all the roots, herbs, &c., indigenous to the United States, and their combination in all the diseases the human body is heir to; also, an explanation of the human body, its liability to injuries through ignorance of its structure. Dedicated exclusively to her sex.', 'Young, Amelia', '2017-01-03', 68, 'https://www.gutenberg.org/ebooks/53875', 'en', 14275), +(38871, 'Legends of Saints & Sinners. Collected and Translated from the Irish', NULL, '2014-06-07', 57, 'https://www.gutenberg.org/ebooks/45910', 'en', 6157), +(38872, 'Poems on Travel', NULL, '2012-04-21', 7, 'https://www.gutenberg.org/ebooks/39496', 'en', 3783), +(38873, 'Instead of the Thorn: A Novel', 'Burnham, Clara Louise', '2016-09-14', 13, 'https://www.gutenberg.org/ebooks/53049', 'en', 48), +(38874, 'The Red Cross Girls with Pershing to Victory', 'Vandercook, Margaret', '2010-09-24', 17, 'https://www.gutenberg.org/ebooks/33990', 'en', 146), +(38875, 'A Matter of Magnitude', 'Sevcik, Al', '2008-03-27', 27, 'https://www.gutenberg.org/ebooks/24927', 'en', 179), +(38876, 'Europe Since 1918', 'Gibbons, Herbert Adams', '2019-05-21', 104, 'https://www.gutenberg.org/ebooks/59573', 'en', 14276), +(38877, 'London Impressions: Etchings and Pictures in Photogravure', 'Meynell, Alice', '2010-06-16', 23, 'https://www.gutenberg.org/ebooks/32842', 'en', 856), +(38878, 'The Mate of the \"Lily\"; Or, Notes from Harry Musgrave\'s Log Book', 'Kingston, William Henry Giles', '2007-05-15', 20, 'https://www.gutenberg.org/ebooks/21469', 'en', 246), +(38879, 'College Teaching\nStudies in Methods of Teaching in the College', 'Klapper, Paul', '2009-08-04', 15, 'https://www.gutenberg.org/ebooks/29604', 'en', 4677), +(38880, 'The Mirrors of Washington', 'Gilbert, Clinton W. (Clinton Wallace)', '2003-03-01', 17, 'https://www.gutenberg.org/ebooks/3812', 'en', 12475), +(38881, 'L\'Illustration, No. 3243, 22 Avril 1905', 'Various', '2010-11-21', 6, 'https://www.gutenberg.org/ebooks/34389', 'fr', 150), +(38882, 'America, Volume 4 (of 6)', 'Cook, Joel', '2013-03-11', 12, 'https://www.gutenberg.org/ebooks/42309', 'en', 1110), +(38883, '三字經', 'Anonymous', '2004-05-01', 131, 'https://www.gutenberg.org/ebooks/12479', 'zh', 10503), +(38884, 'Robur de Veroveraar', 'Verne, Jules', '2006-08-21', 4, 'https://www.gutenberg.org/ebooks/19091', 'nl', 8820), +(38885, 'Roméo et Juliette\nTragédie', 'Shakespeare, William', '2006-04-10', 79, 'https://www.gutenberg.org/ebooks/18143', 'fr', 5937), +(38886, 'The Lunarian Professor and His Remarkable Revelations Concerning the Earth, the Moon and Mars\nTogether with An Account of the Cruise of the Sally Ann', 'Alexander, James B. (James Bradun)', '2019-08-04', 903, 'https://www.gutenberg.org/ebooks/60059', 'en', 67), +(38887, 'The Works of Edgar Allan Poe, Volume 3', 'Poe, Edgar Allan', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9514', 'en', 50), +(38888, 'The Thin Santa Claus: The Chicken Yard That Was a Christmas Stocking', 'Butler, Ellis Parker', '2006-03-06', 26, 'https://www.gutenberg.org/ebooks/17937', 'en', 585), +(38889, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 03', 'Stevenson, Robert Louis', '2009-12-21', 21, 'https://www.gutenberg.org/ebooks/30729', 'en', 2156), +(38890, 'Onnelliset: Kotiopettajatar onnellisten perheessä', 'Järnefelt, Arvid', '2015-04-04', 18, 'https://www.gutenberg.org/ebooks/48633', 'fi', 175), +(38891, 'The Sign of Flame', 'Werner, E.', '2011-01-25', 15, 'https://www.gutenberg.org/ebooks/35069', 'en', 803), +(38892, 'Meinauer Naturlehre', NULL, '2009-07-18', 12, 'https://www.gutenberg.org/ebooks/29436', 'de', 14277), +(38893, 'Great Porter Square: A Mystery. v. 3', 'Farjeon, B. L. (Benjamin Leopold)', '2013-06-10', 12, 'https://www.gutenberg.org/ebooks/42907', 'en', 61), +(38894, 'Schetsen uit den Kaukasus\r\nDe Aarde en haar Volken, 1887', 'Serena, Carla', '2005-12-17', 14, 'https://www.gutenberg.org/ebooks/17339', 'nl', 14278), +(38895, 'Humphry Davy, Poet and Philosopher', 'Thorpe, T. E. (Thomas Edward)', '2017-06-07', 8, 'https://www.gutenberg.org/ebooks/54862', 'en', 14279), +(38896, 'South Africa and the Transvaal War, Vol. 8 (of 8)\r\nSouth Africa and Its Future', NULL, '2014-11-24', 12, 'https://www.gutenberg.org/ebooks/47449', 'en', 1956), +(38897, 'Studies in the Out-Lying Fields of Psychic Science', 'Tuttle, Hudson', '2011-04-13', 32, 'https://www.gutenberg.org/ebooks/35855', 'en', 6363), +(38898, 'No Thoroughfare', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9726', 'en', 45), +(38899, 'Variétés Historiques et Littéraires (04/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2015-03-03', 15, 'https://www.gutenberg.org/ebooks/48401', 'fr', 642), +(38900, 'Beyond Pandora', 'Martin, Robert J.', '2007-12-20', 40, 'https://www.gutenberg.org/ebooks/23930', 'en', 179), +(38901, 'Old Fires and Profitable Ghosts: A Book of Stories', 'Quiller-Couch, Arthur', '2004-10-19', 42, 'https://www.gutenberg.org/ebooks/13799', 'en', 3092), +(38902, 'The Blacksmith\'s Hammer; or, The Peasant Code: A Tale of the Grand Monarch', 'Sue, Eugène', '2011-01-17', 15, 'https://www.gutenberg.org/ebooks/34987', 'en', 1127), +(38903, 'Giotto and his works in Padua\r\nAn Explanatory Notice of the Series of Woodcuts Executed for the Arundel Society After the Frescoes in the Arena Chapel', 'Ruskin, John', '2006-05-11', 15, 'https://www.gutenberg.org/ebooks/18371', 'en', 14280), +(38904, 'St. Winifred\'s; or, The World of School', 'Farrar, F. W. (Frederic William)', '2008-01-16', 38, 'https://www.gutenberg.org/ebooks/24329', 'en', 195), +(38905, 'The Letters of Henry James (Vol. I)', 'James, Henry', '2012-02-06', 52, 'https://www.gutenberg.org/ebooks/38776', 'en', 2518), +(38906, 'Texas in the Civil War: A Résumé History', 'Ashcraft, Allan Coleman', '2018-03-09', 12, 'https://www.gutenberg.org/ebooks/56709', 'en', 14281), +(38907, 'The Rise of the Dutch Republic — Volume 05: 1559-60', 'Motley, John Lothrop', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/4805', 'en', 6577), +(38908, 'Two Years Ago, Volume I', 'Kingsley, Charles', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/10920', 'en', 14282), +(38909, 'The Grammar School Boys Snowbound; or, Dick & Co. at Winter Sports', 'Hancock, H. Irving (Harrie Irving)', '2007-03-10', 42, 'https://www.gutenberg.org/ebooks/20789', 'en', 14283), +(38910, 'A Wreath of Indian Stories', 'A. L. O. E.', '2019-01-13', 40, 'https://www.gutenberg.org/ebooks/58693', 'en', 470), +(38911, 'My Experiences at Nan Shan and Port Arthur with the Fifth East Siberian Rifles', 'Tret\'iakov, Nikolaĭ Aleksandrovich', '2019-06-12', 46, 'https://www.gutenberg.org/ebooks/59741', 'en', 7672), +(38912, 'Volpone; Or, The Fox', 'Jonson, Ben', '2003-05-01', 303, 'https://www.gutenberg.org/ebooks/4039', 'en', 14284), +(38913, 'Foster\'s Complete Hoyle: An Encyclopedia of Games\r\nIncluding all indoor games played to-day. With suggestions for good play, illustrative hands, and all official laws to date', 'Foster, R. F. (Robert Frederick)', '2017-01-03', 26, 'https://www.gutenberg.org/ebooks/53881', 'en', 1560), +(38914, 'Harper\'s Round Table, October 8, 1895', 'Various', '2010-07-14', 16, 'https://www.gutenberg.org/ebooks/33158', 'en', 668), +(38915, 'Punch or the London Charivari, Vol. 109, August 17, 1895', 'Various', '2014-02-05', 7, 'https://www.gutenberg.org/ebooks/44836', 'en', 134), +(38916, 'De legende en de heldhaftige, vroolijke en roemrijke daden van Uilenspiegel en Lamme Goedzak in Vlaanderenland en elders', 'Coster, Charles de', '2004-02-01', 65, 'https://www.gutenberg.org/ebooks/11208', 'nl', 4817), +(38917, 'Απολογία Σωκράτους', 'Plato', '2012-04-16', 58, 'https://www.gutenberg.org/ebooks/39462', 'el', 4235), +(38918, 'Antikristus: Arvostelukoe kristinopista', 'Nietzsche, Friedrich Wilhelm', '2016-09-01', 25, 'https://www.gutenberg.org/ebooks/52953', 'fi', 1759), +(38919, 'L\'Impeccable Théophile Gautier et les sacrilèges romantiques', 'Nicolardot, Louis', '2012-12-07', 3, 'https://www.gutenberg.org/ebooks/41578', 'fr', 2993), +(38920, 'Sicily in Shadow and in Sun: The Earthquake and the American Relief Work', 'Elliott, Maud Howe', '2018-12-11', 10, 'https://www.gutenberg.org/ebooks/58455', 'en', 14285), +(38921, 'The Man Who Rose Again', 'Hocking, Joseph', '2010-09-28', 57, 'https://www.gutenberg.org/ebooks/33964', 'en', 109), +(38922, 'The Girl Scouts in Beechwood Forest', 'Vandercook, Margaret', '2008-06-15', 10, 'https://www.gutenberg.org/ebooks/25801', 'en', 3), +(38923, 'Corbow\'s Theory', 'Wallot, Lee', '2019-05-23', 59, 'https://www.gutenberg.org/ebooks/59587', 'en', 14286), +(38924, 'The Street That Wasn\'t There', 'Jacobi, Carl Richard', '2007-08-02', 113, 'https://www.gutenberg.org/ebooks/22218', 'en', 179), +(38925, 'A Flat Iron for a Farthing; or, Some Passages in the Life of an only Son', 'Ewing, Juliana Horatia Gatty', '2006-11-18', 17, 'https://www.gutenberg.org/ebooks/19859', 'en', 388), +(38926, 'Orpheus in de Dessa', 'Wit, Augusta de', '2015-12-07', 9, 'https://www.gutenberg.org/ebooks/50638', 'nl', 1432), +(38927, 'On the Advisableness of Improving Natural Knowledge', 'Huxley, Thomas Henry', '2001-11-01', 10, 'https://www.gutenberg.org/ebooks/2934', 'en', 814), +(38928, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2009-05-08', 51, 'https://www.gutenberg.org/ebooks/28722', 'en', 2951), +(38929, 'Your Affectionate Godmother', 'Glyn, Elinor', '2015-08-16', 9, 'https://www.gutenberg.org/ebooks/49715', 'en', 1557), +(38930, 'Gurre Kamilaroi,\r\nor, Kamilaroi Sayings (1856)', 'Ridley, William', '2005-10-07', 18, 'https://www.gutenberg.org/ebooks/16811', 'kld', 14287), +(38931, 'Black Rebellion: Five Slave Revolts', 'Higginson, Thomas Wentworth', '2005-07-01', 45, 'https://www.gutenberg.org/ebooks/8432', 'en', 14288), +(38932, 'Swimming Scientifically Taught: A Practical Manual for Young and Old', 'Dalton, Louis C.', '2006-08-16', 46, 'https://www.gutenberg.org/ebooks/19065', 'en', 14289), +(38933, 'Scrap Book of Mormon Literature, Volume 2 (of 2). Religious Tracts', NULL, '2017-03-08', 26, 'https://www.gutenberg.org/ebooks/54298', 'en', 377), +(38934, 'History of Friedrich II of Prussia — Volume 08', 'Carlyle, Thomas', '2008-06-16', 34, 'https://www.gutenberg.org/ebooks/2108', 'en', 3120), +(38935, 'Ernest Maltravers — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7648', 'en', 137), +(38936, 'Kiljusen herrasväen uudet seikkailut', 'Finne, Jalmari', '2017-11-12', 2, 'https://www.gutenberg.org/ebooks/55944', 'fi', 5797), +(38937, 'Rambles in the Islands of Corsica and Sardinia\nwith Notices of their History, Antiquities, and Present Condition.', 'Forester, Thomas', '2009-04-06', 13, 'https://www.gutenberg.org/ebooks/28510', 'en', 7348), +(38938, 'Hymnen an die Nacht / Die Christenheit oder Europa', 'Novalis', '2013-09-27', 54, 'https://www.gutenberg.org/ebooks/43821', 'de', 5045), +(38939, 'My Adventure in the Flying Scotsman; A Romance of London and North-Western Railway Shares', 'Phillpotts, Eden', '2017-06-12', 11, 'https://www.gutenberg.org/ebooks/54896', 'en', 400), +(38940, 'Poetical Works of Robert Bridges, Volume 2', 'Bridges, Robert', '2017-07-23', 9, 'https://www.gutenberg.org/ebooks/55178', 'en', 54), +(38941, 'Michael McGrath, Postmaster', 'Connor, Ralph', '2006-09-12', 5, 'https://www.gutenberg.org/ebooks/19257', 'en', 61), +(38942, 'Ethnobotany of the Ojibwe Indians', 'Smith, Huron H. (Huron Herbert)', '2015-07-26', 29, 'https://www.gutenberg.org/ebooks/49527', 'en', 14290), +(38943, 'The Adventures of Buster Bear', 'Burgess, Thornton W. (Thornton Waldo)', '2007-09-30', 155, 'https://www.gutenberg.org/ebooks/22816', 'en', 625), +(38944, 'L\'Assommoir', 'Zola, Émile', '2006-04-27', 114, 'https://www.gutenberg.org/ebooks/8600', 'en', 434), +(38945, 'Vera Nevill\r\nOr, Poor Wisdom\'s Chance', 'Cameron, H. Lovett, Mrs.', '2006-05-14', 9, 'https://www.gutenberg.org/ebooks/18385', 'en', 7171), +(38946, 'Clotelle; Or, The Colored Heroine, a tale of the Southern States; Or, The President\'s Daughter', 'Brown, William Wells', '2008-07-02', 55, 'https://www.gutenberg.org/ebooks/241', 'en', 12571), +(38947, 'The Spy of the Rebellion\r\nBeing a True History of the Spy System of the United States Army during the Late Rebellion', 'Pinkerton, Allan', '2011-01-15', 34, 'https://www.gutenberg.org/ebooks/34973', 'en', 444), +(38948, 'The 2003 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-18', 13, 'https://www.gutenberg.org/ebooks/27558', 'en', 9716), +(38949, 'The History of Don Quixote, Volume 2, Part 20', 'Cervantes Saavedra, Miguel de', '2004-07-21', 2, 'https://www.gutenberg.org/ebooks/5923', 'en', 2176), +(38950, 'Address to the People of the United States, together with the Proceedings and Resolutions of the Pro-Slavery Convention of Missouri, Held at Lexington, July 1855', 'Unknown', '2012-09-07', 16, 'https://www.gutenberg.org/ebooks/40698', 'en', 14291), +(38951, 'Inventors', 'Hubert, Philip Gengembre', '2012-02-06', 13, 'https://www.gutenberg.org/ebooks/38782', 'en', 14292), +(38952, 'Das heilige Donnerwetter. Ein Blücherroman', 'Paul, Adolf', '2012-05-07', 11, 'https://www.gutenberg.org/ebooks/39650', 'de', 98), +(38953, 'Das Bildnis des Dorian Gray', 'Wilde, Oscar', '2013-11-20', 93, 'https://www.gutenberg.org/ebooks/44238', 'de', 2815), +(38954, 'The Laws of Candy\nBeaumont & Fletcher\'s Works (3 of 10)', 'Fletcher, John', '2005-01-01', 22, 'https://www.gutenberg.org/ebooks/14548', 'en', 1790), +(38955, 'Stage-coach and Mail in Days of Yore, Volume 1 (of 2)\nA picturesque history of the coaching age', 'Harper, Charles G. (Charles George)', '2019-01-11', 8, 'https://www.gutenberg.org/ebooks/58667', 'en', 14293), +(38956, 'U.S. Copyright Renewals, 1952 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11806', 'en', 4170), +(38957, 'Carry On!', 'Sheard, Virna', '2011-07-04', 81, 'https://www.gutenberg.org/ebooks/36618', 'en', 28), +(38958, 'The Private Library\r\nWhat We Do Know, What We Don\'t Know, What We Ought to Know About Our Books', 'Humphreys, Arthur Lee', '2009-02-24', 20, 'https://www.gutenberg.org/ebooks/28174', 'en', 14294), +(38959, 'El manco de Lepanto\r\nepisodio de la vida del príncipe de los ingenios, Miguel de Cervantes-Saavedra', 'Fernández y González, Manuel', '2009-01-26', 22, 'https://www.gutenberg.org/ebooks/27900', 'es', 14295), +(38960, 'Λόγια της Πλώρης: Θαλασσινά Διηγήματα', 'Karkavitsas, Andreas', '2010-04-02', 27, 'https://www.gutenberg.org/ebooks/31865', 'el', 14296), +(38961, 'The Bells, and Other Poems', 'Poe, Edgar Allan', '2016-01-05', 58, 'https://www.gutenberg.org/ebooks/50852', 'en', 2193), +(38962, 'Zágoni Mikes Kelemen törökországi levelei (2. kötet)', 'Mikes, Kelemen', '2013-08-15', 12, 'https://www.gutenberg.org/ebooks/43479', 'hu', 14297), +(38963, 'The Rainbow', 'Lawrence, D. H. (David Herbert)', '2009-05-23', 261, 'https://www.gutenberg.org/ebooks/28948', 'en', 14298), +(38964, 'La familia de León Roch, Tomo 1', 'Pérez Galdós, Benito', '2015-01-26', 18, 'https://www.gutenberg.org/ebooks/48091', 'es', 1696), +(38965, 'Ponkapog Papers', 'Aldrich, Thomas Bailey', '2006-03-18', 29, 'https://www.gutenberg.org/ebooks/625', 'en', 20), +(38966, 'A First Book in Algebra', 'Boyden, Wallace C. (Wallace Clarke)', '2004-08-27', 272, 'https://www.gutenberg.org/ebooks/13309', 'en', 4325), +(38967, 'A Book of Cornwall', 'Baring-Gould, S. (Sabine)', '2014-09-22', 44, 'https://www.gutenberg.org/ebooks/46937', 'en', 9327), +(38968, 'Beowulf', NULL, '2006-10-28', 12, 'https://www.gutenberg.org/ebooks/19633', 'en', 7513), +(38969, 'The Boy Hunters of Kentucky', 'Ellis, Edward Sylvester', '2015-06-05', 10, 'https://www.gutenberg.org/ebooks/49143', 'en', 14299), +(38970, 'Verklaring van het stoomwerktuig\r\nzijnde eene algemeen bevattelijke beschrijving van deszelfs onderscheidene deelen, zamenstelling en werking.', NULL, '2010-01-24', 12, 'https://www.gutenberg.org/ebooks/31059', 'nl', 7603), +(38971, 'The Royal End: A Romance', 'Harland, Henry', '2016-05-03', 11, 'https://www.gutenberg.org/ebooks/51980', 'en', 16), +(38972, 'The World English Bible (WEB): Haggai', 'Anonymous', '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8264', 'en', 4814), +(38973, 'The Portsmouth Road and Its Tributaries: To-Day and in Days of Old', 'Harper, Charles G. (Charles George)', '2012-03-24', 10, 'https://www.gutenberg.org/ebooks/39234', 'en', 14300), +(38974, 'Kuolema', 'Tolstoy, Leo, graf', '2018-01-19', 7, 'https://www.gutenberg.org/ebooks/56399', 'fi', 7863), +(38975, 'Elsie at the World\'s Fair', 'Finley, Martha', '2005-02-04', 39, 'https://www.gutenberg.org/ebooks/14910', 'en', 14301), +(38976, 'Observations on the Disturbances in the Madras Army in 1809', 'Malcolm, John', '2016-08-06', 8, 'https://www.gutenberg.org/ebooks/52739', 'en', 14302), +(38977, 'Punch, or the London Charivari, Volume 103, December 31, 1892', 'Various', '2007-01-09', 11, 'https://www.gutenberg.org/ebooks/20319', 'en', 134), +(38978, 'Elämän keväässä: Tyttökirja Barbro Bertingistä ja hänen tovereistaan', 'Kuylenstierna-Wenster, Elisabeth', '2018-10-30', 6, 'https://www.gutenberg.org/ebooks/58203', 'fi', 14303), +(38979, 'Making a Rose Garden', 'Saylor, Henry H. (Henry Hodgman)', '2011-07-27', 17, 'https://www.gutenberg.org/ebooks/36872', 'en', 8600), +(38980, 'The Cities of Refuge: or, The Name of Jesus\nA Sunday book for the young', 'Macduff, John R. (John Ross)', '2008-05-13', 11, 'https://www.gutenberg.org/ebooks/25459', 'en', 14304), +(38981, 'The History of Antiquity, Vol. 2 (of 6)', 'Duncker, Max', '2012-02-28', 34, 'https://www.gutenberg.org/ebooks/39006', 'en', 1368), +(38982, 'The Cultivation of The Native Grape, and Manufacture of American Wines', 'Husmann, George', '2007-03-27', 49, 'https://www.gutenberg.org/ebooks/20917', 'en', 14305), +(38983, 'Herrn Dames Aufzeichnungen: oder, Begebenheiten aus einem merkwürdigen Stadtteil', 'Reventlow, Franziska, Gräfin zu', '2018-05-02', 7, 'https://www.gutenberg.org/ebooks/57079', 'de', 549), +(38984, 'Le Secret professionnel', 'Cocteau, Jean', '2018-04-18', 39, 'https://www.gutenberg.org/ebooks/56997', 'fr', 8595), +(38985, 'The Moths of the British Isles, Second Series\r\nComprising the Families Noctuidæ to Hepialidæ', 'South, Richard', '2013-01-26', 9, 'https://www.gutenberg.org/ebooks/41920', 'en', 5544), +(38986, 'Report of the President\'s Commission on the Assassination of President John F. Kennedy', 'United States. Warren Commission', '2018-10-05', 16, 'https://www.gutenberg.org/ebooks/58031', 'en', 5679), +(38987, 'Comedies by Holberg : Jeppe of the Hill, The Political Tinker, Erasmus Montanus', 'Holberg, Ludvig', '2004-05-01', 44, 'https://www.gutenberg.org/ebooks/5749', 'en', 907), +(38988, 'Fishing from the Earliest Times', 'Radcliffe, William', '2018-09-04', 10, 'https://www.gutenberg.org/ebooks/57845', 'en', 14306), +(38989, 'The American Missionary — Volume 42, No. 07, July, 1888', 'Various', '2004-10-31', 10, 'https://www.gutenberg.org/ebooks/13907', 'en', 562), +(38990, 'Noites de Cintra', 'Pimentel, Alberto', '2010-12-22', 15, 'https://www.gutenberg.org/ebooks/34719', 'pt', 61), +(38991, 'Deathworld', 'Harrison, Harry', '2009-03-17', 353, 'https://www.gutenberg.org/ebooks/28346', 'en', 1564), +(38992, 'The Railroad Question\r\nA historical and practical treatise on railroads, and remedies for their abuses', 'Larrabee, William', '2009-07-02', 17, 'https://www.gutenberg.org/ebooks/29294', 'en', 1450), +(38993, 'The Number Concept: Its Origin and Development', 'Conant, Levi L. (Levi Leonard)', '2005-08-05', 100, 'https://www.gutenberg.org/ebooks/16449', 'en', 14307), +(38994, 'The Fantasy Fan, October 1933\nThe Fan\'s Own Magazine', 'Various', '2014-07-20', 19, 'https://www.gutenberg.org/ebooks/46339', 'en', 928), +(38995, 'Dr. Martin Luther\'s Deutsche Geistliche Lieder\r\nThe Hymns of Martin Luther Set to Their Original Melodies, With an English Version', 'Luther, Martin', '1996-02-01', 46, 'https://www.gutenberg.org/ebooks/417', 'de', 14308), +(38996, 'The Spirit of St. Francis de Sales', 'Camus, Jean-Pierre', '2005-10-01', 37, 'https://www.gutenberg.org/ebooks/9184', 'en', 14309), +(38997, 'The Gay Gnani of Gingalee; or, Discords of Devolution\r\nA Tragical Entanglement of Modern Mysticism and Modern Science', 'Huntley, Florence', '2013-05-24', 9, 'https://www.gutenberg.org/ebooks/42799', 'en', 14310), +(38998, 'The Waterways of the Pacific Northwest', 'Bagley, Clarence', '2015-07-06', 6, 'https://www.gutenberg.org/ebooks/49371', 'en', 14311), +(38999, 'The Bible, King James version, Book 56: Titus', 'Anonymous', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/8056', 'en', 7470), +(39000, 'The Attaché; or, Sam Slick in England — Volume 02', 'Haliburton, Thomas Chandler', '2005-04-01', 12, 'https://www.gutenberg.org/ebooks/7822', 'en', 10914), +(39001, 'The Plunderer', 'Oyen, Henry', '2006-09-28', 16, 'https://www.gutenberg.org/ebooks/19401', 'en', 10770), +(39002, 'L\'Illustration, No. 0066, 1 Juin 1844', 'Various', '2014-09-03', 11, 'https://www.gutenberg.org/ebooks/46765', 'fr', 150), +(39003, 'Michel Strogoff: De Moscou a Irkoutsk', 'Verne, Jules', '2005-02-01', 82, 'https://www.gutenberg.org/ebooks/7442', 'fr', 13282), +(39004, 'The Lady Paramount', 'Harland, Henry', '2006-11-18', 21, 'https://www.gutenberg.org/ebooks/19861', 'en', 48), +(39005, 'Sir Brook Fossbrooke, Volume II.', 'Lever, Charles James', '2011-02-16', 10, 'https://www.gutenberg.org/ebooks/35297', 'en', 61), +(39006, 'Policing the Plains\nBeing the Real-Life Record of the Famous North-West Mounted Police', 'MacBeth, R. G. (Roderick George)', '2007-08-02', 36, 'https://www.gutenberg.org/ebooks/22220', 'en', 14312), +(39007, 'Phil Purcel, The Pig-Driver; The Geography Of An Irish Oath; The Lianhan Shee\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 20, 'https://www.gutenberg.org/ebooks/16015', 'en', 440), +(39008, 'How to Make and Set Traps\nIncluding Hints on How to Trap Moles, Weasels, Otter, Rats, Squirrels and Birds; Also How to Cure Skins', 'Keene, J. Harrington (John Harrington)', '2015-12-03', 20, 'https://www.gutenberg.org/ebooks/50600', 'en', 1904), +(39009, 'Quotations from the PG Collected Works of Gilbert Parker', 'Parker, Gilbert', '2004-09-01', 15, 'https://www.gutenberg.org/ebooks/6590', 'en', 13298), +(39010, 'Pride: One of the Seven Cardinal Sins', 'Sue, Eugène', '2010-11-16', 21, 'https://www.gutenberg.org/ebooks/34345', 'en', 58), +(39011, 'Little Britain', 'Irving, Washington', '2006-02-05', 76, 'https://www.gutenberg.org/ebooks/877', 'en', 179), +(39012, 'Relation du groenland', 'La Peyrère, Isaac de', '2008-09-21', 9, 'https://www.gutenberg.org/ebooks/26680', 'fr', 14313), +(39013, 'Graham\'s Magazine, Vol. XXXV, No. 2, August 1849', 'Various', '2017-08-16', 12, 'https://www.gutenberg.org/ebooks/55372', 'en', 162), +(39014, 'Herfsttij der Middeleeuwen\r\nStudie over levens- en gedachtervormen der veertiende en vijftiende eeuw in Frankrijk en de Nederlanden', 'Huizinga, Johan', '2005-10-08', 82, 'https://www.gutenberg.org/ebooks/16829', 'nl', 6026), +(39015, 'La Fe', 'Palacio Valdés, Armando', '2010-03-14', 25, 'https://www.gutenberg.org/ebooks/31637', 'es', 1696), +(39016, 'Utopia', 'More, Thomas, Saint', '2000-04-01', 1258, 'https://www.gutenberg.org/ebooks/2130', 'en', 1828), +(39017, 'La cartella N. 4', 'Colombi, marchesa', '2013-07-14', 4, 'https://www.gutenberg.org/ebooks/43217', 'it', 1544), +(39018, 'Clementina', 'Mason, A. E. W. (Alfred Edward Woodley)', '2004-10-01', 23, 'https://www.gutenberg.org/ebooks/13567', 'en', 98), +(39019, 'Aphrodisiacs and Anti-aphrodisiacs: Three Essays on the Powers of Reproduction', 'Davenport, John', '2009-01-09', 48, 'https://www.gutenberg.org/ebooks/27752', 'en', 14314), +(39020, 'Croatian Tales of Long Ago', 'Brlic-Mazuranic, Ivana', '2019-08-12', 1417, 'https://www.gutenberg.org/ebooks/60095', 'en', 14315), +(39021, 'La Hyène Enragée', 'Loti, Pierre', '2018-06-30', 6, 'https://www.gutenberg.org/ebooks/57425', 'fr', 335), +(39022, 'Sylvie: souvenirs du Valois', 'Nerval, Gérard de', '2012-08-13', 56, 'https://www.gutenberg.org/ebooks/40492', 'en', 58), +(39023, 'Dealings with the Dead, Volume 1 (of 2)', 'Sargent, Lucius M. (Lucius Manlius)', '2012-01-16', 93, 'https://www.gutenberg.org/ebooks/38588', 'en', 448), +(39024, 'Christian Hymns of the First Three Centuries', 'Messenger, Ruth Ellis', '2010-07-14', 115, 'https://www.gutenberg.org/ebooks/33160', 'en', 1303), +(39025, 'Mga Paquigpulong sa Iningles ug Binisaya', 'Santiago Vela, Gregorio de', '2012-12-02', 8, 'https://www.gutenberg.org/ebooks/41540', 'en', 14316), +(39026, 'Macmillan\'s Reading Books. Book V', 'Anonymous', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11230', 'en', 1019), +(39027, 'The Shadow Witch', 'Crownfield, Gertrude', '2008-04-06', 30, 'https://www.gutenberg.org/ebooks/25005', 'en', 1007), +(39028, 'Thirty Years on the Frontier', 'McReynolds, Robert', '2013-10-25', 16, 'https://www.gutenberg.org/ebooks/44032', 'en', 930), +(39029, 'Told in the East', 'Mundy, Talbot', '2004-03-01', 50, 'https://www.gutenberg.org/ebooks/5315', 'en', 1228), +(39030, 'La Folle Journée ou le Mariage de Figaro', 'Beaumarchais, Pierre Augustin Caron de', '2007-02-13', 96, 'https://www.gutenberg.org/ebooks/20577', 'fr', 5508), +(39031, 'The Nine of Hearts: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2016-09-18', 12, 'https://www.gutenberg.org/ebooks/53085', 'en', 137), +(39032, 'Vanishing England', 'Ditchfield, P. H. (Peter Hampson)', '2005-01-20', 27, 'https://www.gutenberg.org/ebooks/14742', 'en', 226), +(39033, 'Het Nut der Mechanistische Methode in de Geneeskunde', 'Boerhaave, Herman', '2005-04-23', 18, 'https://www.gutenberg.org/ebooks/15690', 'nl', 2403), +(39034, 'Craven\'s Part in the Great War', 'Clayton, John T.', '2016-05-25', 16, 'https://www.gutenberg.org/ebooks/52157', 'en', 14317), +(39035, 'Ten Years Near the German Frontier: A Retrospect and a Warning', 'Egan, Maurice Francis', '2011-06-14', 13, 'https://www.gutenberg.org/ebooks/36412', 'en', 14318), +(39036, 'Apologues modernes, à l\'usage du Dauphin\npremières leçons du fils ainé d\'un roi', 'Maréchal, Sylvain', '2008-06-19', 12, 'https://www.gutenberg.org/ebooks/25839', 'fr', 14319), +(39037, 'Little Oskaloo; or, The White Whirlwind', 'Harbaugh, T. C. (Thomas Chalmers)', '2010-08-04', 39, 'https://www.gutenberg.org/ebooks/33352', 'en', 676), +(39038, 'The Black Robe', 'Collins, Wilkie', '2006-02-22', 50, 'https://www.gutenberg.org/ebooks/1587', 'en', 14320), +(39039, 'A Day in a Colonial Home', 'Prescott, Della R.', '2018-08-01', 8, 'https://www.gutenberg.org/ebooks/57617', 'en', 14321), +(39040, 'String Quartet No. 11 in F minor Opus 95 \"Serioso\"', 'Beethoven, Ludwig van', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11002', 'en', 909), +(39041, '快士傳', 'Wuseshizhuren, ju ren 1738', '2008-04-29', 5, 'https://www.gutenberg.org/ebooks/25237', 'zh', 1003), +(39042, 'At Start and Finish', 'Lindsey, William', '2012-05-11', 10, 'https://www.gutenberg.org/ebooks/39668', 'en', 14322), +(39043, 'Bell\'s Cathedrals: The Cathedral Church of Wells\nA Description of Its Fabric and a Brief History of the Episcopal See', 'Dearmer, Percy', '2010-05-07', 14, 'https://www.gutenberg.org/ebooks/32280', 'en', 12559), +(39044, 'The Silent Alarm', 'Snell, Roy J. (Roy Judson)', '2013-01-04', 16, 'https://www.gutenberg.org/ebooks/41772', 'en', 5309), +(39045, 'An Outcast; Or, Virtue and Faith', 'Adams, F. Colburn (Francis Colburn)', '2007-03-05', 34, 'https://www.gutenberg.org/ebooks/20745', 'en', 658), +(39046, 'Oulua soutamassa', 'Pakkala, Teuvo', '2005-01-03', 17, 'https://www.gutenberg.org/ebooks/14570', 'fi', 61), +(39047, 'The Reality of War: A Companion to Clausewitz', 'Murray, Stewart Lygon', '2013-11-17', 49, 'https://www.gutenberg.org/ebooks/44200', 'en', 2481), +(39048, 'Shakespeare, Bacon, and the Great Unknown', 'Lang, Andrew', '2004-02-01', 28, 'https://www.gutenberg.org/ebooks/5127', 'en', 2784), +(39049, 'The Three Hills, and Other Poems', 'Squire, John Collings, Sir', '2011-07-05', 13, 'https://www.gutenberg.org/ebooks/36620', 'en', 8), +(39050, 'The Sayings of Mrs. Solomon\r\nbeing the confessions of the seven hundredth wife as revealed to Helen Rowland', 'Rowland, Helen', '2016-06-18', 10, 'https://www.gutenberg.org/ebooks/52365', 'en', 2642), +(39051, 'The Red Man\'s Revenge: A Tale of The Red River Flood', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 44, 'https://www.gutenberg.org/ebooks/21697', 'en', 1096), +(39052, 'The Rover Boys on a Hunt; or, The Mysterious House in the Woods', 'Stratemeyer, Edward', '2007-07-07', 25, 'https://www.gutenberg.org/ebooks/22012', 'en', 176), +(39053, 'The Uses of Astronomy\nAn Oration Delivered at Albany on the 28th of July, 1856', 'Everett, Edward', '2005-07-06', 26, 'https://www.gutenberg.org/ebooks/16227', 'en', 14323), +(39054, 'L\'Illustration, No. 1588, 2 Août 1873', 'Various', '2014-08-10', 7, 'https://www.gutenberg.org/ebooks/46557', 'fr', 150), +(39055, 'What Will He Do with It? — Volume 12', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 5, 'https://www.gutenberg.org/ebooks/7670', 'en', 137), +(39056, 'The Idyl of Twin Fires', 'Eaton, Walter Prichard', '2010-10-31', 16, 'https://www.gutenberg.org/ebooks/34177', 'en', 539), +(39057, 'Moral Tales', 'Guizot, Madame (Elisabeth Charlotte Pauline)', '2014-11-29', 21, 'https://www.gutenberg.org/ebooks/47485', 'en', 3621), +(39058, 'Workhouse Nursing: The story of a successful experiment', 'Rathbone, William', '2015-11-11', 13, 'https://www.gutenberg.org/ebooks/50432', 'en', 14324), +(39059, 'Every-day Science: Volume 7. The Conquest of Time and Space', 'Williams, Edward Huntington', '2013-09-27', 17, 'https://www.gutenberg.org/ebooks/43819', 'en', 13943), +(39060, 'A California Girl', 'Eldridge, Edward', '2009-04-07', 37, 'https://www.gutenberg.org/ebooks/28528', 'en', 211), +(39061, 'Η τρικυμία', 'Shakespeare, William', '2010-02-25', 35, 'https://www.gutenberg.org/ebooks/31405', 'el', 8099), +(39062, 'Jack in the Forecastle; or, Incidents in the Early Life of Hawser Martingale', 'Sleeper, John Sherburne', '2005-08-01', 29, 'https://www.gutenberg.org/ebooks/8638', 'en', 750), +(39063, 'A House in Bloomsbury', 'Oliphant, Mrs. (Margaret)', '2017-07-17', 12, 'https://www.gutenberg.org/ebooks/55140', 'en', 14325), +(39064, 'The Title: A Comedy in Three Acts', 'Bennett, Arnold', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12687', 'en', 402), +(39065, 'The Philippines a Century Hence', 'Rizal, José', '2011-04-18', 266, 'https://www.gutenberg.org/ebooks/35899', 'en', 4987), +(39066, 'How to See the British Museum in Four Visits', 'Jerrold, Blanchard', '2004-10-15', 22, 'https://www.gutenberg.org/ebooks/13755', 'en', 14326), +(39067, 'A Bundle of Letters from over the Sea', 'Robinson, Louise B.', '2017-02-02', 12, 'https://www.gutenberg.org/ebooks/54092', 'en', 1408), +(39068, 'Photos and Maps of Trinity (Atomic Test) Site', NULL, '2014-09-14', 51, 'https://www.gutenberg.org/ebooks/279', 'en', 14327), +(39069, 'The 2005 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-18', 45, 'https://www.gutenberg.org/ebooks/27560', 'en', 1726), +(39070, 'Poor Folk', 'Dostoyevsky, Fyodor', '2000-08-01', 245, 'https://www.gutenberg.org/ebooks/2302', 'en', 1763), +(39071, 'Rainy Week', 'Abbott, Eleanor Hallowell', '2013-06-24', 24, 'https://www.gutenberg.org/ebooks/43025', 'en', 539), +(39072, 'Punch, or the London Charivari, Volume 153, December 19, 1917', 'Various', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11466', 'en', 134), +(39073, 'Conflict of Northern and Southern Theories of Man and Society\nGreat Speech, Delivered in New York City', 'Beecher, Henry Ward', '2008-05-31', 14, 'https://www.gutenberg.org/ebooks/25653', 'en', 14328), +(39074, 'The Exiles of Florida\r\nor, The crimes committed by our government against the Maroons, who fled from South Carolina and other slave states, seeking protection under Spanish laws.', 'Giddings, Joshua R. (Joshua Reed)', '2012-11-07', 25, 'https://www.gutenberg.org/ebooks/41316', 'en', 10657), +(39075, 'Punch, or the London Charivari, Volume 1, September 18, 1841', 'Various', '2005-02-07', 20, 'https://www.gutenberg.org/ebooks/14928', 'en', 134), +(39076, 'The Tempering', 'Buck, Charles Neville', '2010-09-16', 62, 'https://www.gutenberg.org/ebooks/33736', 'en', 4872), +(39077, 'The Birth of Yugoslavia, Volume 2', 'Baerlein, Henry', '2008-03-08', 19, 'https://www.gutenberg.org/ebooks/24781', 'en', 14329), +(39078, 'The Stocking-Knitter\'s Manual: A Handy Book for the Work-Table', 'Cupples, George, Mrs.', '2018-06-04', 50, 'https://www.gutenberg.org/ebooks/57273', 'en', 1580), +(39079, 'Celt and Saxon — Complete', 'Meredith, George', '2004-11-05', 35, 'https://www.gutenberg.org/ebooks/4491', 'en', 137), +(39080, 'Latitude 19°\r\nA Romance of the West Indies in the Year of Our Lord Eighteen Hundred and Twenty', 'Crowninshield, Schuyler, Mrs.', '2011-05-28', 7, 'https://www.gutenberg.org/ebooks/36244', 'en', 10195), +(39081, 'Comedies and Errors', 'Harland, Henry', '2016-08-02', 10, 'https://www.gutenberg.org/ebooks/52701', 'en', 112), +(39082, 'A Brief Account of the Destruction of the Indies\r\nOr, a faithful NARRATIVE OF THE Horrid and Unexampled Massacres, Butcheries, and all manner of Cruelties, that Hell and Malice could invent, committed by the Popish Spanish Party on the inhabitants of West-India, TOGETHER With the Devastations of several Kingdoms in America by Fire and Sword, for the space of Forty and Two Years, from the time of its first Discovery by them.', 'Casas, Bartolomé de las', '2007-01-09', 519, 'https://www.gutenberg.org/ebooks/20321', 'en', 14330), +(39083, 'Plutarch\'s Lives, Volume 2 (of 4)', 'Plutarch', '2004-11-22', 156, 'https://www.gutenberg.org/ebooks/14114', 'en', 6092), +(39084, 'Histoire des salons de Paris (Tome 5/6)\r\nTableaux et portraits du grand monde sous Louis XVI, Le Directoire, le Consulat et l\'Empire, la Restauration et le règne de Louis-Philippe Ier', 'Abrantès, Laure Junot, duchesse d\'', '2014-01-14', 22, 'https://www.gutenberg.org/ebooks/44664', 'fr', 4122), +(39085, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 01', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5543', 'en', 803), +(39086, 'The Strange Story Book', 'Lang, Mrs.', '2011-09-13', 96, 'https://www.gutenberg.org/ebooks/37396', 'en', 388), +(39087, 'A Biographical Dictionary of Freethinkers of All Ages and Nations', 'Wheeler, J. M. (Joseph Mazzini)', '2010-11-30', 19, 'https://www.gutenberg.org/ebooks/34513', 'en', 14331), +(39088, 'Λουκιανός - Άπαντα, Τόμος Δεύτερος', 'Lucian, of Samosata', '2009-01-30', 27, 'https://www.gutenberg.org/ebooks/27938', 'el', 1635), +(39089, 'The Dance: Its Place in Art and Life', 'Kinney, Troy', '2015-09-26', 19, 'https://www.gutenberg.org/ebooks/50056', 'en', 6327), +(39090, 'Au large de l\'Écueil', 'Bernier, Hector', '2006-02-18', 20, 'https://www.gutenberg.org/ebooks/17791', 'fr', 1219), +(39091, 'The Odysseys of Homer, together with the shorter poems', 'Homer', '2015-05-08', 72, 'https://www.gutenberg.org/ebooks/48895', 'en', 2905), +(39092, 'The Alhambra', 'Irving, Washington', '2015-09-12', 230, 'https://www.gutenberg.org/ebooks/49947', 'en', 14332), +(39093, 'The Tale Of Mr. Peter Brown - Chelsea Justice\nFrom \"The New Decameron\", Volume III.', 'Sackville-West, V. (Victoria)', '2007-08-31', 20, 'https://www.gutenberg.org/ebooks/22476', 'en', 61), +(39094, 'Essays by Ralph Waldo Emerson', 'Emerson, Ralph Waldo', '2005-09-04', 1349, 'https://www.gutenberg.org/ebooks/16643', 'en', 20), +(39095, 'Inside Earth', 'Anderson, Poul', '2016-02-11', 150, 'https://www.gutenberg.org/ebooks/51184', 'en', 26), +(39096, 'Lammermoorin morsian', 'Scott, Walter', '2014-06-29', 7, 'https://www.gutenberg.org/ebooks/46133', 'fi', 1061), +(39097, 'Pan', 'Hamsun, Knut', '2005-01-01', 144, 'https://www.gutenberg.org/ebooks/7214', 'en', 286), +(39098, 'Bell\'s Cathedrals: The Cathedral Church of Chichester (1901)\r\nA Short History & Description of Its Fabric with an Account of the Diocese and See', 'Corlette, Hubert C. (Hubert Christian)', '2004-08-30', 104, 'https://www.gutenberg.org/ebooks/13331', 'en', 14333), +(39099, '歸蓮夢', 'Su\'anzhuren, active 18th century', '2008-10-30', 19, 'https://www.gutenberg.org/ebooks/27104', 'zh', 1003), +(39100, 'The Red Acorn', 'McElroy, John', '2001-08-01', 27, 'https://www.gutenberg.org/ebooks/2766', 'en', 403), +(39101, 'Works of George W. Peck\r\nA Linked Index to the Project Gutenberg Editions of the \"Bad Boy\" Series and Others', 'Peck, George W. (George Wilbur)', '2009-05-25', 4, 'https://www.gutenberg.org/ebooks/28970', 'en', 198), +(39102, 'Symbolistes et Décadents', 'Kahn, Gustave', '2013-08-10', 15, 'https://www.gutenberg.org/ebooks/43441', 'fr', 14334), +(39103, 'A History of American Literature Since 1870', 'Pattee, Fred Lewis', '2013-04-25', 14, 'https://www.gutenberg.org/ebooks/42593', 'en', 14335), +(39104, 'A History of Mathematics', 'Cajori, Florian', '2010-01-24', 239, 'https://www.gutenberg.org/ebooks/31061', 'en', 127), +(39105, 'Ysaïl: En berättelse från Chicago', 'Berger, Henning', '2017-09-11', 15, 'https://www.gutenberg.org/ebooks/55524', 'sv', 14336), +(39106, 'Henrik Renqvist', 'Akiander, Matthias', '2015-10-21', 26, 'https://www.gutenberg.org/ebooks/50264', 'fi', 7568), +(39107, 'Platero y yo', 'Jiménez, Juan Ramón', '2006-02-01', 163, 'https://www.gutenberg.org/ebooks/9980', 'es', 14337), +(39108, 'De Geschiedenis van Woutertje Pieterse, Deel 1\r\nUit de \'ideen\' verzameld', 'Multatuli', '2007-12-10', 23, 'https://www.gutenberg.org/ebooks/23796', 'nl', 61), +(39109, 'The Lighter Side of School Life', 'Hay, Ian', '2010-12-22', 138, 'https://www.gutenberg.org/ebooks/34721', 'en', 14338), +(39110, 'Toledo, the Story of an Old Spanish Capital', 'Lynch, Hannah', '2014-07-16', 27, 'https://www.gutenberg.org/ebooks/46301', 'en', 14339), +(39111, 'Children\'s Edition of Touching Incidents and Remarkable Answers to Prayer', 'Shaw, S. B. (Solomon Benjamin)', '2004-12-01', 28, 'https://www.gutenberg.org/ebooks/7026', 'en', 4752), +(39112, 'The Boy Scout Treasure Hunters; Or, The Lost Treasure of Buffalo Hollow', 'Lerrigo, Charles Henry', '2007-09-17', 16, 'https://www.gutenberg.org/ebooks/22644', 'en', 1002), +(39113, 'A General History and Collection of Voyages and Travels, Volume 16', 'Kerr, Robert', '2005-08-07', 20, 'https://www.gutenberg.org/ebooks/16471', 'en', 885), +(39114, 'Weymouth New Testament in Modern Speech, 3 John', 'Weymouth, Richard Francis', '2005-09-01', 0, 'https://www.gutenberg.org/ebooks/8852', 'en', 5364), +(39115, 'Prelude to Space', 'Haseltine, Robert W.', '2009-11-01', 29, 'https://www.gutenberg.org/ebooks/30381', 'en', 424), +(39116, 'Crime and Punishment', 'Dostoyevsky, Fyodor', '2006-03-28', 4886, 'https://www.gutenberg.org/ebooks/2554', 'en', 128), +(39117, 'Poeta de Tristibus; Or, The Poet\'s Complaint', 'Anonymous', '2013-09-08', 6, 'https://www.gutenberg.org/ebooks/43673', 'en', 14340), +(39118, 'Great Britain and Her Queen', 'Keeling, Annie E.', '2004-08-03', 13, 'https://www.gutenberg.org/ebooks/13103', 'en', 14341), +(39119, 'Three Women', 'Wilcox, Ella Wheeler', '2008-11-27', 27, 'https://www.gutenberg.org/ebooks/27336', 'en', 8), +(39120, 'The Poetical Works of David Gray\nA New and Enlarged Edition', 'Gray, David', '2017-10-09', 4, 'https://www.gutenberg.org/ebooks/55716', 'en', 532), +(39121, 'Vaimoni ja minä eli Harry Hendersonin elämäkerta', 'Stowe, Harriet Beecher', '2006-10-02', 42, 'https://www.gutenberg.org/ebooks/19439', 'fi', 14342), +(39122, 'Catlin\'s Historic Origin of the Playing Cards\nTheir original design and subsequent use', 'Catlin, H. D.', '2015-07-03', 13, 'https://www.gutenberg.org/ebooks/49349', 'en', 4157), +(39123, 'A Morning\'s Walk from London to Kew', 'Phillips, R. (Richard), Sir', '2010-02-11', 21, 'https://www.gutenberg.org/ebooks/31253', 'en', 856), +(39124, 'The Inca of Perusalem: An Almost Historical Comedietta', 'Shaw, Bernard', '2002-10-01', 33, 'https://www.gutenberg.org/ebooks/3486', 'en', 4942), +(39125, 'Voyage À  Cayenne, dans les deux Amériques et chez les anthropophages (Vol. 2 de 2)', 'Pitou, Louis Ange', '2012-10-21', 11, 'https://www.gutenberg.org/ebooks/41124', 'fr', 14343), +(39126, 'Suomalaisia sankareita I: Historiallisia kertomuksia', 'Wilkuna, Kyösti', '2017-12-17', 130, 'https://www.gutenberg.org/ebooks/56193', 'fi', 6171), +(39127, 'Confessions of a Young Man', 'Moore, George', '2004-03-01', 93, 'https://www.gutenberg.org/ebooks/11654', 'en', 4122), +(39128, 'Bo-Peep Story Books', NULL, '2008-05-13', 27, 'https://www.gutenberg.org/ebooks/25461', 'en', 1007), +(39129, 'Odd Man Out\nSailor\'s Knots, Part 6.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/10786', 'en', 1902), +(39130, 'Morals and the Evolution of Man', 'Nordau, Max Simon', '2011-11-12', 20, 'https://www.gutenberg.org/ebooks/37998', 'en', 4060), +(39131, 'Observations upon the Town of Cromer\r\nConsidered as a Watering Place, and the Picturesque Scenery in Its Neighbourhood', 'Bartell, Edmund', '2018-04-24', 2, 'https://www.gutenberg.org/ebooks/57041', 'en', 12317), +(39132, 'Index of the Project Gutenberg Works of Jules Verne', 'Verne, Jules', '2019-02-06', 47, 'https://www.gutenberg.org/ebooks/58835', 'en', 198), +(39133, 'Opticks\r\nOr, A Treatise of the Reflections, Refractions, Inflections, and Colours of Light', 'Newton, Isaac', '2010-08-23', 317, 'https://www.gutenberg.org/ebooks/33504', 'en', 14344), +(39134, 'Tommy Wideawake', 'Bashford, H. H. (Henry Howarth), Sir', '2012-05-26', 18, 'https://www.gutenberg.org/ebooks/39802', 'en', 3210), +(39135, '\"England and Yesterday\": A Book of Short Poems', 'Guiney, Louise Imogen', '2016-07-09', 15, 'https://www.gutenberg.org/ebooks/52533', 'en', 350), +(39136, 'The Philippines: Past and Present (Volume 2 of 2)', 'Worcester, Dean C. (Dean Conant)', '2013-01-26', 28, 'https://www.gutenberg.org/ebooks/41918', 'en', 14345), +(39137, 'Träume eines Geistersehers, erläutert durch Träume der Metaphysik', 'Kant, Immanuel', '2011-05-10', 38, 'https://www.gutenberg.org/ebooks/36076', 'de', 281), +(39138, 'Facts and Speculations on the Origin and History of Playing Cards', 'Chatto, William Andrew', '2014-05-04', 14, 'https://www.gutenberg.org/ebooks/45584', 'en', 4157), +(39139, 'Basutoland: Its Legends and Customs', 'Martin, Minnie', '2013-12-17', 13, 'https://www.gutenberg.org/ebooks/44456', 'en', 14346), +(39140, 'The Art of the Exposition\r\nPersonal Impressions of the Architecture, Sculpture, Mural Decorations, Color Scheme & Other Aesthetic Aspects of the Panama-Pacific International Exposition', 'Neuhaus, Eugen', '2004-05-01', 8, 'https://www.gutenberg.org/ebooks/5771', 'en', 14347), +(39141, 'Nonsense Drolleries\nThe Owl & The Pussy-Cat—The Duck & The Kangaroo.', 'Lear, Edward', '2006-12-15', 76, 'https://www.gutenberg.org/ebooks/20113', 'en', 564), +(39142, 'Ulster\'s Stand For Union', 'McNeill, Ronald', '2004-12-11', 17, 'https://www.gutenberg.org/ebooks/14326', 'en', 7115), +(39143, 'Russian Portraits', 'Sheridan, Clare', '2018-10-02', 24, 'https://www.gutenberg.org/ebooks/58009', 'en', 14348), +(39144, 'Il Tenente dei Lancieri: Romanzo', 'Rovetta, Gerolamo', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11492', 'it', 61), +(39145, 'The Bride of Mission San José: A Tale of Early California', 'Cull, John Augustine', '2018-01-10', 0, 'https://www.gutenberg.org/ebooks/56355', 'en', 9041), +(39146, 'The Long Arm', 'Nabl, Franz', '2010-05-30', 24, 'https://www.gutenberg.org/ebooks/32610', 'en', 282), +(39147, 'Der Waldbrand', 'Schefer, Leopold', '2012-07-14', 6, 'https://www.gutenberg.org/ebooks/40230', 'de', 65), +(39148, 'Second Part of King Henry IV', 'Shakespeare, William', '1997-11-01', 22, 'https://www.gutenberg.org/ebooks/1117', 'en', 599), +(39149, 'Up the River; or, Yachting on the Mississippi', 'Optic, Oliver', '2008-03-07', 17, 'https://www.gutenberg.org/ebooks/24775', 'en', 3729), +(39150, 'The Diary of a French Private: War-Imprisonment, 1914-1915', 'Riou, Gaston', '2018-06-07', 9, 'https://www.gutenberg.org/ebooks/57287', 'en', 14349), +(39151, 'Mother Carey\'s Chickens', 'Wiggin, Kate Douglas Smith', '2003-12-01', 51, 'https://www.gutenberg.org/ebooks/10540', 'en', 376), +(39152, 'Diana of the Crossways — Volume 1', 'Meredith, George', '2003-09-01', 19, 'https://www.gutenberg.org/ebooks/4465', 'en', 14350), +(39153, 'Up and Down', 'Benson, E. F. (Edward Frederic)', '2014-05-24', 27, 'https://www.gutenberg.org/ebooks/45742', 'en', 579), +(39154, 'Hamlet', 'Shakespeare, William', '2005-02-13', 40, 'https://www.gutenberg.org/ebooks/15032', 'fr', 4566), +(39155, 'Syyslehtiä', 'Päivärinta, Pietari', '2007-04-24', 27, 'https://www.gutenberg.org/ebooks/21207', 'fi', 61), +(39156, 'The Bread and Biscuit Baker\'s and Sugar-Boiler\'s Assistant\nIncluding a Large Variety of Modern Recipes', 'Wells, Robert', '2016-11-28', 53, 'https://www.gutenberg.org/ebooks/53627', 'en', 1372), +(39157, 'Punch, or the London Charivari, Vol. 109, July 27, 1895', 'Various', '2014-01-17', 6, 'https://www.gutenberg.org/ebooks/44690', 'en', 134), +(39158, 'Beautiful Bulbous Plants for the Open Air', 'Weathers, John', '2011-09-09', 19, 'https://www.gutenberg.org/ebooks/37362', 'en', 7892), +(39159, 'Playful Poems', NULL, '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6332', 'en', 8), +(39160, 'Mars and Its Canals', 'Lowell, Percival', '2014-10-01', 39, 'https://www.gutenberg.org/ebooks/47015', 'en', 14351), +(39161, 'Gordon Craig, Soldier of Fortune', 'Parrish, Randall', '2006-02-13', 34, 'https://www.gutenberg.org/ebooks/17765', 'en', 8300), +(39162, 'Jack, the Fire Dog', 'Wesselhoeft, Lily F.', '2015-05-03', 16, 'https://www.gutenberg.org/ebooks/48861', 'en', 195), +(39163, 'Una Of The Hill Country\n1911', 'Murfree, Mary Noailles', '2007-11-19', 7, 'https://www.gutenberg.org/ebooks/23550', 'en', 179), +(39164, 'Men in the Making', 'Shepherd, Ambrose', '2007-08-31', 10, 'https://www.gutenberg.org/ebooks/22482', 'en', 14352), +(39165, 'The Fire and the Sword', 'Robinson, Frank M.', '2016-02-10', 41, 'https://www.gutenberg.org/ebooks/51170', 'en', 26), +(39166, 'Gehirne: Novellen', 'Benn, Gottfried', '2011-03-01', 56, 'https://www.gutenberg.org/ebooks/35435', 'de', 253), +(39167, 'A Broken Journey\r\nWanderings from the Hoang-Ho to the Island of Saghalien and the Upper Reaches of the Amur River', 'Gaunt, Mary', '2017-03-21', 16, 'https://www.gutenberg.org/ebooks/54402', 'en', 14348), +(39168, 'The American Missionary — Volume 33, No. 02, February, 1879', 'Various', '2014-12-31', 9, 'https://www.gutenberg.org/ebooks/47829', 'en', 395), +(39169, 'My Ten Years\' Imprisonment', 'Pellico, Silvio', '2001-09-01', 18, 'https://www.gutenberg.org/ebooks/2792', 'en', 14353), +(39170, 'Opportunities', 'Warner, Susan', '2009-10-01', 11, 'https://www.gutenberg.org/ebooks/30147', 'en', 7735), +(39171, 'Harper\'s Young People, June 8, 1880\nAn Illustrated Weekly', 'Various', '2009-05-29', 3, 'https://www.gutenberg.org/ebooks/28984', 'en', 479), +(39172, 'Al de Kinderliederen', 'Heije, J. P. (Jan Pieter)', '2009-08-30', 26, 'https://www.gutenberg.org/ebooks/29856', 'nl', 2990), +(39173, 'William Penn', 'Holland, Rupert Sargent', '2013-04-20', 12, 'https://www.gutenberg.org/ebooks/42567', 'en', 8612), +(39174, 'Literary Taste: How to Form It\r\nWith Detailed Instructions for Collecting a Complete Library of English Literature', 'Bennett, Arnold', '2003-01-01', 44, 'https://www.gutenberg.org/ebooks/3640', 'en', 14354), +(39175, 'Stories by American Authors, Volume 3', 'Various', '2010-01-27', 12, 'https://www.gutenberg.org/ebooks/31095', 'en', 1426), +(39176, 'The American Missionary — Volume 50, No. 01, January, 1896', 'Various', '2008-07-10', 5, 'https://www.gutenberg.org/ebooks/26022', 'en', 395), +(39177, 'Modern Economic Problems\nEconomics Volume II', 'Fetter, Frank A. (Frank Albert)', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/12217', 'en', 1745), +(39178, 'The Yellow Streak', 'Williams, Valentine', '2006-02-01', 37, 'https://www.gutenberg.org/ebooks/9974', 'en', 128), +(39179, 'Son Excellence Eugène Rougon', 'Zola, Émile', '2006-01-20', 38, 'https://www.gutenberg.org/ebooks/17557', 'fr', 2373), +(39180, 'Space Station 1', 'Long, Frank Belknap', '2015-10-23', 33, 'https://www.gutenberg.org/ebooks/50290', 'en', 6782), +(39181, 'Blessed Are the Meek', 'Edmondson, G. C.', '2007-12-07', 61, 'https://www.gutenberg.org/ebooks/23762', 'en', 179), +(39182, 'Pollyanna Grows Up', 'Porter, Eleanor H. (Eleanor Hodgman)', '2004-07-01', 156, 'https://www.gutenberg.org/ebooks/6100', 'en', 3129), +(39183, 'The Popular Science Monthly, June, 1900\nVol. 57, May, 1900 to October, 1900', 'Various', '2014-10-29', 19, 'https://www.gutenberg.org/ebooks/47227', 'en', 352), +(39184, 'Dick Prescott\'s Second Year at West Point\r\nOr, Finding the Glory of the Soldier\'s Life', 'Hancock, H. Irving (Harrie Irving)', '2004-07-05', 20, 'https://www.gutenberg.org/ebooks/12819', 'en', 7501), +(39185, 'The Spell', 'Orcutt, William Dana', '2011-03-18', 14, 'https://www.gutenberg.org/ebooks/35607', 'en', 2741), +(39186, 'The Enclosures in England: An Economic Reconstruction', 'Bradley, Harriett', '2009-06-27', 17, 'https://www.gutenberg.org/ebooks/29258', 'en', 14355), +(39187, 'Citizen Jell', 'Shaara, Michael', '2016-03-02', 30, 'https://www.gutenberg.org/ebooks/51342', 'en', 26), +(39188, 'A Year\'s Journey through France and Part of Spain, Volume 1 (1777)', 'Thicknesse, Philip', '2005-08-08', 18, 'https://www.gutenberg.org/ebooks/16485', 'en', 1514), +(39189, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 07\r\nEngland\'s Naval Exploits Against Spain', 'Hakluyt, Richard', '2005-10-01', 26, 'https://www.gutenberg.org/ebooks/9148', 'en', 2528), +(39190, 'The Conflict between Private Monopoly and Good Citizenship', 'Brooks, John Graham', '2009-10-31', 8, 'https://www.gutenberg.org/ebooks/30375', 'en', 5879), +(39191, 'Theophano: Oper in drei Aufzügen', 'Anthes, Otto', '2013-09-10', 12, 'https://www.gutenberg.org/ebooks/43687', 'de', 1966), +(39192, 'Camp Lenape on the Long Trail', 'Saxon, Carl', '2017-04-29', 10, 'https://www.gutenberg.org/ebooks/54630', 'en', 7327); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(39193, 'How to Cook Husbands', 'Worthington, Elizabeth Strong', '2008-08-07', 25, 'https://www.gutenberg.org/ebooks/26210', 'en', 1451), +(39194, 'English Prose\r\nA Series of Related Essays for the Discussion and Practice of the Art of Writing', NULL, '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12025', 'en', 2270), +(39195, 'The Firebug', 'Snell, Roy J. (Roy Judson)', '2013-05-21', 12, 'https://www.gutenberg.org/ebooks/42755', 'en', 128), +(39196, 'Merton of the Movies', 'Wilson, Harry Leon', '2002-10-01', 27, 'https://www.gutenberg.org/ebooks/3472', 'en', 4440), +(39197, 'Ferns of Hawaii National Park', 'Hubbard, Douglass H.', '2019-07-13', 58, 'https://www.gutenberg.org/ebooks/59913', 'en', 14356), +(39198, 'Three Prize Essays on American Slavery', 'Williston, Timothy', '2010-05-19', 9, 'https://www.gutenberg.org/ebooks/32422', 'en', 14357), +(39199, 'Second Book of Tales', 'Field, Eugene', '2007-06-11', 29, 'https://www.gutenberg.org/ebooks/21809', 'en', 179), +(39200, 'The Viking Age. Volume 1 (of 2)\r\nThe early history, manners, and customs of the ancestors of the English-speaking nations', 'Du Chaillu, Paul B. (Paul Belloni)', '2017-12-13', 49, 'https://www.gutenberg.org/ebooks/56167', 'en', 14358), +(39201, 'Liesje van den Lompenmolen', 'Heimburg, W.', '2008-05-16', 9, 'https://www.gutenberg.org/ebooks/25495', 'nl', 61), +(39202, 'In the Wilds of Florida: A Tale of Warfare and Hunting', 'Kingston, William Henry Giles', '2008-02-08', 18, 'https://www.gutenberg.org/ebooks/24547', 'en', 5395), +(39203, 'Inca Land: Explorations in the Highlands of Peru', 'Bingham, Hiram', '2004-01-01', 128, 'https://www.gutenberg.org/ebooks/10772', 'en', 14359), +(39204, 'The Die Varieties of the Nesbitt Series of United States Envelopes', 'Berthold, Victor Maximilian', '2012-06-15', 4, 'https://www.gutenberg.org/ebooks/40002', 'en', 10596), +(39205, 'Twenty Years at Hull House; with Autobiographical Notes', 'Addams, Jane', '1998-05-01', 52, 'https://www.gutenberg.org/ebooks/1325', 'en', 14360), +(39206, 'La Duchesse de Châteauroux et ses soeurs', 'Goncourt, Jules de', '2011-11-24', 20, 'https://www.gutenberg.org/ebooks/38118', 'fr', 11904), +(39207, 'Selections From the Works of John Ruskin', 'Ruskin, John', '2005-02-28', 56, 'https://www.gutenberg.org/ebooks/15200', 'en', 787), +(39208, 'The Adventures of a Three-Guinea Watch', 'Reed, Talbot Baines', '2007-04-11', 17, 'https://www.gutenberg.org/ebooks/21035', 'en', 621), +(39209, 'White House China of the Lincoln Administration in the Museum of History and Technology', 'Klapthor, Margaret Brown', '2011-05-10', 4, 'https://www.gutenberg.org/ebooks/36082', 'en', 2698), +(39210, 'Personal Narrative of a Pilgrimage to Al-Madinah & Meccah — Volume 1', 'Burton, Richard Francis, Sir', '2003-11-01', 142, 'https://www.gutenberg.org/ebooks/4657', 'en', 5489), +(39211, 'Old Irish Glass', 'Stannus, Graydon, Mrs.', '2014-05-03', 16, 'https://www.gutenberg.org/ebooks/45570', 'en', 14361), +(39212, 'Salakulettaja: Kertomus Rajajoen tienoilta', 'Kanerva, Antero', '2011-08-21', 12, 'https://www.gutenberg.org/ebooks/37150', 'fi', 5831), +(39213, 'Naval Actions of the War of 1812', 'Barnes, James', '2018-09-12', 14, 'https://www.gutenberg.org/ebooks/57889', 'en', 14362), +(39214, 'A Tramp Abroad — Volume 04', 'Twain, Mark', '2004-06-18', 29, 'https://www.gutenberg.org/ebooks/5785', 'en', 5108), +(39215, 'Kevät-ajoilta\nKuvaelmia lasten maailmasta', 'Roos, Mathilda', '2012-02-18', 6, 'https://www.gutenberg.org/ebooks/38924', 'fi', 2168), +(39216, 'Poems You Ought to Know', 'Peattie, Elia Wilkinson', '2016-10-30', 14, 'https://www.gutenberg.org/ebooks/53415', 'en', 178), +(39217, 'A Select Collection of Old English Plays, Volume 12', 'Dodsley, Robert', '2014-09-06', 26, 'https://www.gutenberg.org/ebooks/46791', 'en', 1088), +(39218, 'Menschen im Krieg', 'Latzko, Andreas', '2011-02-13', 35, 'https://www.gutenberg.org/ebooks/35263', 'de', 14363), +(39219, 'The American Revolution and the Boer War, An Open Letter to Mr. Charles Francis Adams on His Pamphlet \"The Confederacy and the Transvaal\"', 'Fisher, Sydney George', '2006-11-21', 12, 'https://www.gutenberg.org/ebooks/19895', 'en', 14364), +(39220, 'Wall of Crystal, Eye of Night', 'Budrys, Algis', '2016-04-10', 56, 'https://www.gutenberg.org/ebooks/51726', 'en', 613), +(39221, 'Mildred\'s Inheritance; Just Her Way; Ann\'s Own Way', 'Johnston, Annie F. (Annie Fellows)', '2005-11-22', 14, 'https://www.gutenberg.org/ebooks/17133', 'en', 246), +(39222, 'Meditationes de prima philosophia', 'Descartes, René', '2007-11-03', 125, 'https://www.gutenberg.org/ebooks/23306', 'la', 14365), +(39223, 'The Younger Edda; Also called Snorre\'s Edda, or The Prose Edda', 'Snorri Sturluson', '2006-07-31', 457, 'https://www.gutenberg.org/ebooks/18947', 'en', 6418), +(39224, 'Our Mutual Friend', 'Dickens, Charles', '2006-04-27', 775, 'https://www.gutenberg.org/ebooks/883', 'en', 1079), +(39225, 'The Love-Tiff', 'Molière', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6564', 'en', 3936), +(39226, 'Mary Lamb', 'Gilchrist, Anne (Anne Burrows)', '2014-12-12', 6, 'https://www.gutenberg.org/ebooks/47643', 'en', 14366), +(39227, 'The Life and Times of John Wilkins\r\nWarden of Wadham College, Oxford; Master of Trinity College, Cambridge; and Bishop of Chester', 'Wright Henderson, P. A. (Patrick Arkley)', '2008-09-20', 11, 'https://www.gutenberg.org/ebooks/26674', 'en', 14367), +(39228, 'The House of a Thousand Candles', 'Nicholson, Meredith', '2004-05-01', 69, 'https://www.gutenberg.org/ebooks/12441', 'en', 557), +(39229, 'The Girl Scouts on the Ranch', 'Lavell, Edith', '2017-08-19', 9, 'https://www.gutenberg.org/ebooks/55386', 'en', 10462), +(39230, 'The Duty of Submission to Civil Authority,\r\nA Sermon Preached in the Parish Church of Bradfield, Berkes, on Sunday, November 28, 1830, on Occasion of the Late Disturbances', 'Moor, J. F. (John Frewen)', '2013-03-14', 11, 'https://www.gutenberg.org/ebooks/42331', 'en', 14368), +(39231, 'What Diantha Did', 'Gilman, Charlotte Perkins', '2002-01-01', 43, 'https://www.gutenberg.org/ebooks/3016', 'en', 11143), +(39232, 'Wilson\'s Tales of the Borders and of Scotland, Volume 02', NULL, '2009-12-19', 9, 'https://www.gutenberg.org/ebooks/30711', 'en', 3672), +(39233, 'The Search After Hapiness [sic]: A Tale', NULL, '2017-02-28', 22, 'https://www.gutenberg.org/ebooks/54254', 'en', 14369), +(39234, 'Yksin', 'Aho, Juhani', '2004-10-04', 21, 'https://www.gutenberg.org/ebooks/13593', 'fi', 456), +(39235, 'The Century Illustrated Monthly Magazine, September, 1913\r\nVol. LXXXVI, No. 5', 'Various', '2019-08-05', 765, 'https://www.gutenberg.org/ebooks/60061', 'en', 18), +(39236, 'Les derniers Peaux-Rouges\r\nLe trésor de Montcalm', 'La Blanchère, Henri de', '2008-01-02', 30, 'https://www.gutenberg.org/ebooks/24123', 'fr', 7650), +(39237, 'Roy Blakeley\'s Adventures in Camp', 'Fitzhugh, Percy Keese', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/10316', 'en', 2994), +(39238, 'A Short Compendium of the Catechism for the Indians\r\nWith the Approbation of the Rt. Rev. Frederic Baraga, Bishop of Saut Sainte Marie', 'Sifferath, Nicholas Louis', '2012-08-09', 14, 'https://www.gutenberg.org/ebooks/40466', 'oji', 14370), +(39239, 'The White Moll', 'Packard, Frank L. (Frank Lucius)', '1999-05-01', 30, 'https://www.gutenberg.org/ebooks/1741', 'en', 167), +(39240, 'The Warfare of the Soul: Practical Studies in the Life of Temptation', 'Hughson, Shirley Carter', '2010-07-18', 14, 'https://www.gutenberg.org/ebooks/33194', 'en', 14371), +(39241, 'Tales from the German, Comprising specimens from the most celebrated authors', NULL, '2010-04-18', 131, 'https://www.gutenberg.org/ebooks/32046', 'en', 179), +(39242, 'Tyburn Tree: Its History and Annals', 'Marks, Alfred', '2018-02-05', 20, 'https://www.gutenberg.org/ebooks/56503', 'en', 8522), +(39243, 'Secrets of the Late Rebellion, Now Revealed for the First Time', 'Freese, Jacob R.', '2014-06-10', 12, 'https://www.gutenberg.org/ebooks/45928', 'en', 2268), +(39244, 'A travers chants: études musicales, adorations, boutades et critiques', 'Berlioz, Hector', '2011-09-25', 29, 'https://www.gutenberg.org/ebooks/37534', 'fr', 250), +(39245, 'The Tribes and Castes of the Central Provinces of India, Volume 1', 'Russell, R. V. (Robert Vane)', '2007-02-15', 120, 'https://www.gutenberg.org/ebooks/20583', 'en', 11702), +(39246, 'Memoirs of the Reign of King George the Third, Volume 4 (of 4)', 'Walpole, Horace', '2018-12-19', 10, 'https://www.gutenberg.org/ebooks/58499', 'en', 2413), +(39247, 'Mark the Match Boy; or, Richard Hunter\'s Ward', 'Alger, Horatio, Jr.', '2016-09-17', 38, 'https://www.gutenberg.org/ebooks/53071', 'en', 3334), +(39248, 'Pepper & Salt; or, Seasoning for Young Folk', 'Pyle, Howard', '2005-04-20', 17, 'https://www.gutenberg.org/ebooks/15664', 'en', 8), +(39249, 'Ben Hadden; or, Do Right Whatever Comes Of It', 'Kingston, William Henry Giles', '2007-05-15', 17, 'https://www.gutenberg.org/ebooks/21451', 'en', 3532), +(39250, 'Jeanne of the Marshes', 'Oppenheim, E. Phillips (Edward Phillips)', '2003-07-01', 28, 'https://www.gutenberg.org/ebooks/4233', 'en', 230), +(39251, 'The Children\'s Book of Thanksgiving Stories', NULL, '2014-03-11', 83, 'https://www.gutenberg.org/ebooks/45114', 'en', 14372), +(39252, 'A System of Midwifery', 'Rigby, Edward', '2012-09-03', 25, 'https://www.gutenberg.org/ebooks/40654', 'en', 3793), +(39253, 'Frank\'s Campaign; Or, The Farm and the Camp', 'Alger, Horatio, Jr.', '1998-12-01', 59, 'https://www.gutenberg.org/ebooks/1573', 'en', 491), +(39254, 'The Preacher and His Models\nThe Yale Lectures on Preaching 1891', 'Stalker, James', '2008-01-15', 15, 'https://www.gutenberg.org/ebooks/24311', 'en', 7677), +(39255, 'Aunt Jane\'s Nieces and Uncle John', 'Baum, L. Frank (Lyman Frank)', '2003-11-01', 47, 'https://www.gutenberg.org/ebooks/10124', 'en', 9925), +(39256, 'Kaksi rakkautta', 'Talvio, Maila', '2018-03-12', 12, 'https://www.gutenberg.org/ebooks/56731', 'fi', 41), +(39257, 'The History and Records of the Elephant Club', 'Underhill, Edward F. (Edward Fitch)', '2010-05-07', 29, 'https://www.gutenberg.org/ebooks/32274', 'en', 190), +(39258, 'Maria: En Bog om Kærlighed', 'Nansen, Peter', '2013-01-05', 12, 'https://www.gutenberg.org/ebooks/41786', 'da', 6055), +(39259, 'A Compilation of the Messages and Papers of the Presidents. Section 1 (of 3) of Volume 10.', NULL, '2005-01-04', 10, 'https://www.gutenberg.org/ebooks/14584', 'en', 447), +(39260, 'Historical Sketches of Colonial Florida', 'Campbell, Richard L.', '2016-10-10', 9, 'https://www.gutenberg.org/ebooks/53243', 'en', 8902), +(39261, 'The Log of a Noncombatant', 'Green, Horace', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/10918', 'en', 449), +(39262, 'John Ronge; The Holy Coat of Treves; New German-Catholic Church', 'Ronge, Johannes', '2011-10-10', 4, 'https://www.gutenberg.org/ebooks/37706', 'en', 14373), +(39263, 'Widger\'s Quotations from Project Gutenberg Edition of French Immortals Series', NULL, '2003-05-01', 12, 'https://www.gutenberg.org/ebooks/4001', 'en', 2391), +(39264, 'The Motor Boys in the Clouds; or, A Trip for Fame and Fortune', 'Young, Clarence', '2014-04-06', 11, 'https://www.gutenberg.org/ebooks/45326', 'en', 2279), +(39265, 'The Campaigns and History of the Royal Irish Regiment, [v. 1,] from 1684 to 1902', 'Gretton, G. le M. (George Le Mesurier)', '2019-06-19', 21, 'https://www.gutenberg.org/ebooks/59779', 'en', 14374), +(39266, 'Outlines of Ecclesiastical History', 'Roberts, B. H. (Brigham Henry)', '2016-06-22', 18, 'https://www.gutenberg.org/ebooks/52391', 'en', 14375), +(39267, 'McGuffey\'s Eclectic Spelling Book', 'McGuffey, Alexander H. (Alexander Hamilton)', '2005-03-24', 285, 'https://www.gutenberg.org/ebooks/15456', 'en', 7396), +(39268, 'Aunt Mary', 'Perring, Mrs.', '2007-06-02', 36, 'https://www.gutenberg.org/ebooks/21663', 'en', 51), +(39269, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 01\r\nProlegomena; Egypt, Mesopotamia', NULL, '2016-03-20', 47, 'https://www.gutenberg.org/ebooks/51514', 'en', 346), +(39270, 'Natural History of Enthusiasm', 'Taylor, Isaac', '2017-11-17', 12, 'https://www.gutenberg.org/ebooks/55988', 'en', 14376), +(39271, 'Ruthless Rhymes for Heartless Homes', 'Graham, Harry', '2011-01-24', 36, 'https://www.gutenberg.org/ebooks/35051', 'en', 3625), +(39272, 'Harold : the Last of the Saxon Kings — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-24', 62, 'https://www.gutenberg.org/ebooks/7684', 'en', 14377), +(39273, 'S/S \"Styggen\"', 'Jessen, Burchard', '2010-10-31', 12, 'https://www.gutenberg.org/ebooks/34183', 'no', 61), +(39274, 'Little Memoirs of the Nineteenth Century', 'Paston, George', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6756', 'en', 14378), +(39275, 'The Girls of Chequertrees', 'Webb, Marion St. John', '2014-11-26', 27, 'https://www.gutenberg.org/ebooks/47471', 'en', 128), +(39276, 'On With Torchy', 'Ford, Sewell', '2005-12-13', 11, 'https://www.gutenberg.org/ebooks/17301', 'en', 637), +(39277, 'Frau Pauline Brater: Lebensbild einer deutschen Frau', 'Sapper, Agnes', '2007-10-21', 19, 'https://www.gutenberg.org/ebooks/23134', 'de', 4289), +(39278, 'April Fools: A farce in one act for three male characters', 'Chapman, W. F.', '2013-02-16', 6, 'https://www.gutenberg.org/ebooks/42103', 'en', 868), +(39279, 'Mr. Honey\'s Work Study Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 18, 'https://www.gutenberg.org/ebooks/3224', 'en', 5007), +(39280, 'The Trial and Execution, for Petit Treason, of Mark and Phillis, Slaves of Capt. John Codman\r\nWho Murdered Their Master at Charlestown, Mass., in 1755; for Which the Man Was Hanged and Gibbeted, and the Woman Was Burned to Death. Including, Also, Some Account of Other Punishments by Burning in Massachusetts', 'Goodell, Abner Cheney', '2008-08-28', 16, 'https://www.gutenberg.org/ebooks/26446', 'en', 14379), +(39281, 'The Pretty Lady', 'Bennett, Arnold', '2004-06-01', 39, 'https://www.gutenberg.org/ebooks/12673', 'en', 5454), +(39282, 'In the Irish Brigade: A Tale of War in Flanders and Spain', 'Henty, G. A. (George Alfred)', '2006-05-08', 43, 'https://www.gutenberg.org/ebooks/18349', 'en', 12062), +(39283, 'The Younger Sister: A Novel, Volumes 1-3', 'Hubback, Mrs. (Catherine-Anne Austen)', '2017-01-28', 26, 'https://www.gutenberg.org/ebooks/54066', 'en', 48), +(39284, 'An Eagle Flight: A Filipino Novel Adapted from Noli Me Tangere', 'Rizal, José', '2008-12-22', 41, 'https://www.gutenberg.org/ebooks/27594', 'en', 98), +(39285, 'Birds, Illustrated by Color Photography, Vol. 2, No. 1\r\nJuly 1897', 'Various', '2009-11-21', 25, 'https://www.gutenberg.org/ebooks/30523', 'en', 1254), +(39286, '夢中緣', 'Li, Xiuxing, jin shi 1715', '2007-12-19', 18, 'https://www.gutenberg.org/ebooks/23908', 'zh', 14380), +(39287, 'A Book of the West. Volume 1: Devon\r\nBeing an introduction to Devon and Cornwall', 'Baring-Gould, S. (Sabine)', '2015-03-08', 25, 'https://www.gutenberg.org/ebooks/48439', 'en', 11930), +(39288, 'Social Transformations of the Victorian Age: A Survey of Court and Country', 'Escott, T. H. S. (Thomas Hay Sweet)', '2012-02-27', 39, 'https://www.gutenberg.org/ebooks/39001', 'en', 14381), +(39289, 'Midnight Webs', 'Fenn, George Manville', '2011-07-27', 3, 'https://www.gutenberg.org/ebooks/36875', 'en', 61), +(39290, 'South American Fights and Fighters, and Other Tales of Adventure', 'Brady, Cyrus Townsend', '2007-03-26', 26, 'https://www.gutenberg.org/ebooks/20910', 'en', 14382), +(39291, 'A Complete Guide to the Ornamental Leather Work', 'Revell, James', '2013-01-27', 56, 'https://www.gutenberg.org/ebooks/41927', 'en', 8194), +(39292, 'Un grand français du XVIIme siècle : Pierre Paul Riquet et le canal du Midi', 'Fernay, Jacques', '2018-04-17', 16, 'https://www.gutenberg.org/ebooks/56990', 'fr', 14383), +(39293, 'Τίμαιος, Τόμος Β', 'Plato', '2011-05-06', 25, 'https://www.gutenberg.org/ebooks/36049', 'el', 4863), +(39294, 'Harper\'s Young People, May 16, 1882\nAn Illustrated Weekly', 'Various', '2018-09-04', 2, 'https://www.gutenberg.org/ebooks/57842', 'en', 479), +(39295, 'The Sheepfold and the Common; Or, Within and Without. Vol. 1 (of 2)', 'East, Timothy', '2013-12-20', 12, 'https://www.gutenberg.org/ebooks/44469', 'en', 14384), +(39296, 'McClure\'s Magazine, Vol. 6, No. 4, March, 1896', 'Various', '2004-12-10', 95, 'https://www.gutenberg.org/ebooks/14319', 'en', 883), +(39297, 'The Miller in Eighteenth-Century Virginia\r\nAn Account of Mills & the Craft of Milling, as Well as a Description of the Windmill near the Palace in Williamsburg', 'Ford, Thomas K.', '2018-10-05', 8, 'https://www.gutenberg.org/ebooks/58036', 'en', 14385), +(39298, 'Da terra à lua, viagem directa em 97 horas e 20 minutos', 'Verne, Jules', '2009-03-16', 38, 'https://www.gutenberg.org/ebooks/28341', 'pt', 26), +(39299, 'Collected Poems 1897 - 1907, by Henry Newbolt', 'Newbolt, Henry John, Sir', '2004-10-31', 9, 'https://www.gutenberg.org/ebooks/13900', 'en', 54), +(39300, 'For Auld Lang Syne: A Book of Friendship', NULL, '2004-12-01', 13, 'https://www.gutenberg.org/ebooks/7019', 'en', 14386), +(39301, 'The German Classics from the Fourth to the Nineteenth Century, Vol. 1 (of 2)', 'Müller, F. Max (Friedrich Max)', '2016-03-07', 23, 'https://www.gutenberg.org/ebooks/51389', 'de', 14387), +(39302, 'Priestess of the Flame', 'Wright, Sewell Peaslee', '2009-07-02', 37, 'https://www.gutenberg.org/ebooks/29293', 'en', 26), +(39303, 'Wilfrid Cumbermede', 'MacDonald, George', '2005-10-01', 39, 'https://www.gutenberg.org/ebooks/9183', 'en', 942), +(39304, 'De Reis naar de Maan in 28 dagen en 12 uren', 'Verne, Jules', '2008-11-21', 59, 'https://www.gutenberg.org/ebooks/27309', 'nl', 4350), +(39305, 'Hell Fer Sartain and Other Stories', 'Fox, John, Jr.', '1996-01-01', 25, 'https://www.gutenberg.org/ebooks/410', 'en', 4872), +(39306, 'Geometrical Solutions Derived from Mechanics; a Treatise of Archimedes', 'Archimedes', '2005-04-01', 71, 'https://www.gutenberg.org/ebooks/7825', 'en', 9920), +(39307, 'Bananas: Nature\'s Institution for the Promotion of Laziness', 'Perry, Edward Wilkin', '2017-10-10', 12, 'https://www.gutenberg.org/ebooks/55729', 'en', 14388), +(39308, 'Scientific American, Volume XXXVI., No. 8, February 24, 1877\nA Weekly Journal of Practical Information, Art, Science,\nMechanics, Chemistry, and Manufactures.', 'Various', '2006-09-29', 19, 'https://www.gutenberg.org/ebooks/19406', 'en', 210), +(39309, 'The Bible, King James version, Book 51: Colossians', 'Anonymous', '2005-04-01', 23, 'https://www.gutenberg.org/ebooks/8051', 'en', 14389), +(39310, 'Del Plata al Niagara', 'Groussac, Paul', '2015-07-06', 9, 'https://www.gutenberg.org/ebooks/49376', 'es', 1589), +(39311, 'Hunting the Skipper: The Cruise of the \"Seafowl\" Sloop', 'Fenn, George Manville', '2009-01-27', 36, 'https://www.gutenberg.org/ebooks/27907', 'en', 14390), +(39312, 'Three Young Pioneers\nA Story of the Early Settlement of Our Country', 'Mueller, John Theodore', '2009-02-24', 21, 'https://www.gutenberg.org/ebooks/28173', 'en', 14246), +(39313, 'Voyage dans la lune avant 1900', 'Ville D\'Avray, A. de', '2015-09-28', 18, 'https://www.gutenberg.org/ebooks/50069', 'fr', 13513), +(39314, 'The Story of Sitka\r\nThe Historic Outpost of the Northwest Coast; The Chief Factory of the Russian American Company', 'Andrews, Clarence Leroy', '2010-04-02', 5, 'https://www.gutenberg.org/ebooks/31862', 'en', 14391), +(39315, 'Rossa\'s Recollections, 1838 to 1898\r\nChildhood, boyhood, manhood; customs, habits and manners of the Irish people; Erinach and Sassenach; Catholic and protestant; Englishman and Irishman; English religion; Irish plunder; social life and prison life; the Fenian movement; Travels in Ireland, England, Scotland and America', 'O\'Donovan Rossa, Jeremiah', '2015-09-15', 19, 'https://www.gutenberg.org/ebooks/49978', 'en', 14392), +(39316, 'No Thoroughfare', 'Dickens, Charles', '2007-09-01', 8, 'https://www.gutenberg.org/ebooks/22449', 'en', 45), +(39317, 'The Letters of Robert Louis Stevenson — Volume 1', 'Stevenson, Robert Louis', '1996-08-01', 44, 'https://www.gutenberg.org/ebooks/622', 'en', 1859), +(39318, 'Mr. Punch in Society: Being the Humours of Social Life', NULL, '2015-01-27', 23, 'https://www.gutenberg.org/ebooks/48096', 'en', 2965), +(39319, 'The Man-at-Arms; or, Henry De Cerons. Volumes I and II', 'James, G. P. R. (George Payne Rainsford)', '2016-01-06', 8, 'https://www.gutenberg.org/ebooks/50855', 'en', 10427), +(39320, 'The Man in the Iron Mask', 'Dumas, Alexandre', '2001-08-01', 529, 'https://www.gutenberg.org/ebooks/2759', 'en', 1127), +(39321, 'Webster—Man\'s Man', 'Kyne, Peter B. (Peter Bernard)', '2016-05-03', 28, 'https://www.gutenberg.org/ebooks/51987', 'en', 48), +(39322, 'The World English Bible (WEB): Zephaniah', 'Anonymous', '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/8263', 'en', 4053), +(39323, 'Types of canoes on Puget Sound', 'Coffin, Geraldine', '2015-06-05', 20, 'https://www.gutenberg.org/ebooks/49144', 'en', 14393), +(39324, 'Beyond Good and Evil', 'Nietzsche, Friedrich Wilhelm', '2006-10-28', 86, 'https://www.gutenberg.org/ebooks/19634', 'en', 680), +(39325, 'Punch, or the London Charivari, Vol. 109, October 5th 1895', 'Various', '2014-09-22', 17, 'https://www.gutenberg.org/ebooks/46930', 'en', 134), +(39326, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 396, October 31, 1829', 'Various', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11459', 'en', 133), +(39327, 'Mrs. Dorriman: A Novel. Volume 1 of 3', 'Chetwynd, Henry Wayland, Mrs.', '2012-11-09', 5, 'https://www.gutenberg.org/ebooks/41329', 'en', 61), +(39328, 'Notes and Queries, Vol. IV, Number 109, November 29, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-03-23', 13, 'https://www.gutenberg.org/ebooks/39233', 'en', 105), +(39329, 'The Wings of the Morning', 'Tracy, Louis', '2005-02-06', 44, 'https://www.gutenberg.org/ebooks/14917', 'en', 194), +(39330, 'Διηγήματα', 'Vikelas, Demetrios', '2010-09-12', 20, 'https://www.gutenberg.org/ebooks/33709', 'el', 1348), +(39331, 'Rogers\' Rock, Lake George, March 13, 1758: A Battle Fought on Snow Shoes', 'Rogers, Mary Cochrane', '2014-05-27', 12, 'https://www.gutenberg.org/ebooks/45789', 'en', 14394), +(39332, 'A History of Greek Economic Thought', 'Trever, Albert Augustus', '2018-10-30', 12, 'https://www.gutenberg.org/ebooks/58204', 'en', 14395), +(39333, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1877-01/02)', NULL, '2005-07-06', 11, 'https://www.gutenberg.org/ebooks/16218', 'pt', 6941), +(39334, 'Satuja ja tarinoita VI', 'Andersen, H. C. (Hans Christian)', '2017-11-12', 13, 'https://www.gutenberg.org/ebooks/55943', 'fi', 1007), +(39335, 'Donne e fanciulle', 'Zùccoli, Luciano', '2014-08-12', 17, 'https://www.gutenberg.org/ebooks/46568', 'it', 892), +(39336, 'Wilson\'s Tales of the Borders and of Scotland, Volume 10', NULL, '2010-10-27', 11, 'https://www.gutenberg.org/ebooks/34148', 'en', 3672), +(39337, 'Historical Record of the First, or the Royal Regiment of Dragoons\r\nContaining an Account of Its Formation in the Reign of King Charles the Second, and of Its Subsequent Services to 1839', 'Cannon, Richard', '2017-06-11', 4, 'https://www.gutenberg.org/ebooks/54891', 'en', 14396), +(39338, 'The Story of the Hills: A Book About Mountains for General Readers.', 'Hutchinson, H. N. (Henry Neville)', '2013-09-27', 9, 'https://www.gutenberg.org/ebooks/43826', 'en', 14397), +(39339, 'Hepsey Burke', 'Westcott, Frank N. (Frank Nash)', '2009-04-06', 31, 'https://www.gutenberg.org/ebooks/28517', 'en', 55), +(39340, 'In the Forest; Or, Pictures of Life and Scenery in the Woods of Canada: A Tale', 'Traill, Catharine Parr Strickland', '2005-08-01', 24, 'https://www.gutenberg.org/ebooks/8607', 'en', 1120), +(39341, 'The Staircase At The Heart\'s Delight\r\n1894', 'Green, Anna Katharine', '2007-09-29', 169, 'https://www.gutenberg.org/ebooks/22811', 'en', 5319), +(39342, 'Kit and Kitty: A Story of West Middlesex', 'Blackmore, R. D. (Richard Doddridge)', '2015-07-25', 18, 'https://www.gutenberg.org/ebooks/49520', 'en', 14398), +(39343, '`Abdu\'l-Bahá in London', '`Abdu\'l-Bahá', '2006-09-15', 21, 'https://www.gutenberg.org/ebooks/19250', 'en', 7255), +(39344, 'The Simple Cobler of Aggawam in America', 'Ward, Nathaniel', '2011-01-15', 9, 'https://www.gutenberg.org/ebooks/34974', 'en', 14399), +(39345, 'The Rubaiyat of Omar Khayyam', 'Omar Khayyam', '1995-04-01', 467, 'https://www.gutenberg.org/ebooks/246', 'en', 5433), +(39346, 'Chambers\'s Edinburgh Journal, No. 433\nVolume 17, New Series, April 17, 1852', 'Various', '2006-05-12', 8, 'https://www.gutenberg.org/ebooks/18382', 'en', 18), +(39347, 'Secret Societies of the Middle Ages', 'Keightley, Thomas', '2012-02-07', 28, 'https://www.gutenberg.org/ebooks/38785', 'en', 7077), +(39348, 'The History of Don Quixote, Volume 2, Part 21', 'Cervantes Saavedra, Miguel de', '2004-07-22', 6, 'https://www.gutenberg.org/ebooks/5924', 'en', 3761), +(39349, 'The Principles of Psychology, Volume 1 (of 2)', 'James, William', '2018-08-02', 436, 'https://www.gutenberg.org/ebooks/57628', 'en', 1151), +(39350, 'Blackwood\'s Edinburgh Magazine, Volume 56, Number 347, September, 1844', 'Various', '2008-04-28', 10, 'https://www.gutenberg.org/ebooks/25208', 'en', 274), +(39351, 'Through the Outlooking Glass', 'Strunsky, Simeon', '2012-05-08', 12, 'https://www.gutenberg.org/ebooks/39657', 'en', 13794), +(39352, 'Pussy and Her Language', 'Clark, Marvin R.', '2019-01-09', 22, 'https://www.gutenberg.org/ebooks/58660', 'en', 1576), +(39353, 'Seat Weaving', 'Perry, L. Day', '2016-10-15', 6, 'https://www.gutenberg.org/ebooks/53288', 'en', 14400), +(39354, 'The American Senator', 'Trollope, Anthony', '2004-02-01', 84, 'https://www.gutenberg.org/ebooks/5118', 'en', 14401), +(39355, 'U.S. Copyright Renewals, 1950 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11801', 'en', 4170), +(39356, 'Kesäyön unelma', 'Shakespeare, William', '2014-02-05', 18, 'https://www.gutenberg.org/ebooks/44831', 'fi', 5914), +(39357, 'Vanhuudesta', 'Cicero, Marcus Tullius', '2017-01-04', 6, 'https://www.gutenberg.org/ebooks/53886', 'fi', 14402), +(39358, 'Architettura comacina', 'Treves, Vittorio', '2016-09-01', 22, 'https://www.gutenberg.org/ebooks/52954', 'it', 14403), +(39359, 'Eleven Years in the Rocky Mountains and Life on the Frontier\nAlso a History of the Sioux War, and a Life of Gen. George A. Custer with Full Account of His Last Battle', 'Victor, Frances Fuller', '2012-04-17', 30, 'https://www.gutenberg.org/ebooks/39465', 'en', 930), +(39360, 'The Valiants of Virginia', 'Rives, Hallie Erminie', '2010-09-29', 28, 'https://www.gutenberg.org/ebooks/33963', 'en', 4850), +(39361, 'Fences, Gates and Bridges: A Practical Manual', NULL, '2018-12-11', 27, 'https://www.gutenberg.org/ebooks/58452', 'en', 14404), +(39362, 'The Secret of the Storm Country', 'White, Grace Miller', '2007-02-08', 112, 'https://www.gutenberg.org/ebooks/20548', 'en', 154), +(39363, 'Annali d\'Italia, vol. 8\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2019-05-23', 23, 'https://www.gutenberg.org/ebooks/59580', 'it', 6107), +(39364, 'Godey\'s Lady\'s Book, Vol. 48, February, 1854', 'Various', '2016-05-27', 23, 'https://www.gutenberg.org/ebooks/52168', 'en', 14405), +(39365, 'Juoseppi lumessa: eli onnettomuus vaihtelehtaa onneksi', 'Auerbach, Berthold', '2008-06-16', 5, 'https://www.gutenberg.org/ebooks/25806', 'fi', 1103), +(39366, 'Harding\'s luck', 'Nesbit, E. (Edith)', '2009-05-08', 41, 'https://www.gutenberg.org/ebooks/28725', 'en', 580), +(39367, 'On Some Fossil Remains of Man', 'Huxley, Thomas Henry', '2001-11-01', 17, 'https://www.gutenberg.org/ebooks/2933', 'en', 2159), +(39368, 'The Brochure Series of Architectural Illustration, vol. 06, No. 02, February 1900\r\nJapanese Gardens', 'Various', '2014-12-17', 12, 'https://www.gutenberg.org/ebooks/47688', 'en', 14406), +(39369, 'The Black Arrow: A Tale of Two Roses', 'Stevenson, Robert Louis', '1997-03-01', 349, 'https://www.gutenberg.org/ebooks/848', 'en', 2564), +(39370, 'Eco da Voz Portugueza por Terras de Santa Cruz', 'Castilho, Antonio Feliciano de', '2006-08-16', 22, 'https://www.gutenberg.org/ebooks/19062', 'pt', 14407), +(39371, 'Le roman de la rose - Tome I', 'Jean, de Meun', '2005-10-08', 180, 'https://www.gutenberg.org/ebooks/16816', 'fr', 1338), +(39372, 'The Lords of the Ghostland: A History of the Ideal', 'Saltus, Edgar', '2010-03-12', 19, 'https://www.gutenberg.org/ebooks/31608', 'en', 1444), +(39373, 'The Sturdy Oak\r\nA composite Novel of American Politics by fourteen American authors', NULL, '2005-07-01', 57, 'https://www.gutenberg.org/ebooks/8435', 'en', 14408), +(39374, 'Vies imaginaires', 'Schwob, Marcel', '2015-08-16', 58, 'https://www.gutenberg.org/ebooks/49712', 'fr', 14409), +(39375, 'Lotgevallen van een jeugdigen natuuronderzoeker', 'Biart, Lucien', '2013-07-16', 8, 'https://www.gutenberg.org/ebooks/43228', 'nl', 14410), +(39376, 'Notes and Queries, Number 14, February 2, 1850', 'Various', '2004-09-30', 9, 'https://www.gutenberg.org/ebooks/13558', 'en', 105), +(39377, 'Gänsemütterchens Märchen', 'Perrault, Charles', '2013-06-09', 19, 'https://www.gutenberg.org/ebooks/42900', 'de', 14411), +(39378, 'The Project Gutenberg Works of Rafael Sabatini: An Index', 'Sabatini, Rafael', '2009-07-17', 40, 'https://www.gutenberg.org/ebooks/29431', 'en', 198), +(39379, 'Madame Gilbert\'s Cannibal', 'Copplestone, Bennet', '2017-06-07', 7, 'https://www.gutenberg.org/ebooks/54865', 'en', 1380), +(39380, 'The People of the Mist', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 173, 'https://www.gutenberg.org/ebooks/6769', 'en', 580), +(39381, 'In the Year \'13: A Tale of Mecklenburg Life', 'Reuter, Fritz', '2011-04-13', 13, 'https://www.gutenberg.org/ebooks/35852', 'en', 14412), +(39382, 'I Utvecklingstid: En berättelse om flickor', 'Topelius, Toini', '2008-08-29', 36, 'https://www.gutenberg.org/ebooks/26479', 'sv', 14413), +(39383, 'A Lecture on the Preservation of Health', 'Garnett, Thomas', '2006-05-11', 7, 'https://www.gutenberg.org/ebooks/18376', 'en', 14414), +(39384, 'Eteenpäin! Kertomus mereltä', 'Lie, Jonas', '2011-01-16', 7, 'https://www.gutenberg.org/ebooks/34980', 'fi', 7), +(39385, 'Northern Lands; Or, Young America in Russia and Prussia', 'Optic, Oliver', '2017-01-27', 17, 'https://www.gutenberg.org/ebooks/54059', 'en', 14415), +(39386, 'The Happy Prince, and Other Tales', 'Wilde, Oscar', '2007-12-01', 30, 'https://www.gutenberg.org/ebooks/23937', 'en', 409), +(39387, 'The Atomic Fingerprint: Neutron Activation Analysis', 'Keisch, Bernard', '2015-03-05', 11, 'https://www.gutenberg.org/ebooks/48406', 'en', 14416), +(39388, 'Master Humphrey\'s Clock', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9721', 'en', 98), +(39389, 'The Little Princess of Tower Hill', 'Meade, L. T.', '2012-02-05', 8, 'https://www.gutenberg.org/ebooks/38771', 'en', 94), +(39390, 'A Romance in Transit', 'Lynde, Francis', '2010-08-10', 35, 'https://www.gutenberg.org/ebooks/33399', 'en', 61), +(39391, 'The Rise of the Dutch Republic — Volume 02: Introduction II', 'Motley, John Lothrop', '2004-01-01', 51, 'https://www.gutenberg.org/ebooks/4802', 'en', 3372), +(39392, 'Highland Legends', 'Lauder, Thomas Dick, Sir', '2019-01-14', 14, 'https://www.gutenberg.org/ebooks/58694', 'en', 12165), +(39393, 'Tulitikkuja lainaamassa', 'Lassila, Maiju', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/10927', 'fi', 175), +(39394, 'Egerton Ryerson and Education in Upper Canada', 'Putman, J. Harold (John Harold)', '2011-10-12', 1, 'https://www.gutenberg.org/ebooks/37739', 'en', 14417), +(39395, 'Taten des großen Alexander', 'Kuzmin, M. A. (Mikhail Alekseevich)', '2014-04-05', 16, 'https://www.gutenberg.org/ebooks/45319', 'de', 14418), +(39396, 'Historic Ornament, Vol. 1 (of 2)\r\nTreatise on decorative art and architectural ornament', 'Ward, James', '2019-06-13', 176, 'https://www.gutenberg.org/ebooks/59746', 'en', 14419), +(39397, 'The Letters of Lord Nelson to Lady Hamilton, Vol. I.\nWith A Supplement Of Interesting Letters By Distinguished Characters', 'Nelson, Horatio Nelson, Viscount', '2005-03-26', 23, 'https://www.gutenberg.org/ebooks/15469', 'en', 4721), +(39398, 'Snubby Nose and Tippy Toes', 'Smith, Laura Rountree', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10329', 'en', 625), +(39399, 'Bragelonnen varakreivi eli Muskettisoturien viimeiset urotyöt II (2)\nHistoriallinen romaani Ludvig XIV:n hovista', 'Dumas, Alexandre', '2017-01-02', 4, 'https://www.gutenberg.org/ebooks/53872', 'fi', 98), +(39400, 'L\'Illustration, No. 0409, 27 Décembre 1850', 'Various', '2012-01-10', 7, 'https://www.gutenberg.org/ebooks/38543', 'fr', 150), +(39401, 'Animal Intelligence\nThe International Scientific Series, Vol. XLIV.', 'Romanes, George John', '2012-08-09', 31, 'https://www.gutenberg.org/ebooks/40459', 'en', 2560), +(39402, 'Hullun yritys: Amerikalainen historiallinen romani', 'Tourgée, Albion Winegar', '2012-04-20', 8, 'https://www.gutenberg.org/ebooks/39491', 'fi', 6156), +(39403, 'The Small World of M-75', 'Clinton, Ed M.', '2010-04-21', 49, 'https://www.gutenberg.org/ebooks/32079', 'en', 179), +(39404, 'Origin of Cultivated Plants\nThe International Scientific Series Volume XLVIII', 'Candolle, Alphonse de', '2014-06-08', 26, 'https://www.gutenberg.org/ebooks/45917', 'en', 91), +(39405, 'The Book of All-Power', 'Wallace, Edgar', '2008-03-26', 139, 'https://www.gutenberg.org/ebooks/24920', 'en', 61), +(39406, 'Aventures de Monsieur Pickwick, Vol. II', 'Dickens, Charles', '2005-01-24', 21, 'https://www.gutenberg.org/ebooks/14789', 'fr', 12576), +(39407, 'The Jonathan Papers', 'Morris, Elisabeth Woodbridge', '2010-09-27', 16, 'https://www.gutenberg.org/ebooks/33997', 'en', 20), +(39408, 'International Short Stories: American', NULL, '2010-06-16', 44, 'https://www.gutenberg.org/ebooks/32845', 'en', 112), +(39409, 'U.S.S. Cairo: The Story of a Civil War Gunboat\r\nComprising a Narrative of Her Wartime Adventures by Virgil Carrington Jones, and an Account of Her Raising in 1964 by Harold L. Peterson', 'Peterson, Harold L. (Harold Leslie)', '2019-05-22', 39, 'https://www.gutenberg.org/ebooks/59574', 'en', 36), +(39410, 'Through Central Borneo; an Account of Two Years\' Travel in the Land of Head-Hunters Between the Years 1913 and 1917', 'Lumholtz, Carl', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7489', 'en', 14420), +(39411, 'Rolling Stones', 'Henry, O.', '2003-03-01', 98, 'https://www.gutenberg.org/ebooks/3815', 'en', 179), +(39412, 'Under the Holly: Christmas-Tide in Song and Story', NULL, '2016-04-10', 12, 'https://www.gutenberg.org/ebooks/51719', 'en', 381), +(39413, 'Henry IV, Makers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2009-08-03', 27, 'https://www.gutenberg.org/ebooks/29603', 'en', 14421), +(39414, 'Indirection', 'Cole, Everett B.', '2007-11-05', 26, 'https://www.gutenberg.org/ebooks/23339', 'en', 26), +(39415, 'The Wiradyuri and Other Languages of New South Wales', 'Mathews, R. H. (Robert Hamilton)', '2006-08-03', 14, 'https://www.gutenberg.org/ebooks/18978', 'en', 14422), +(39416, 'Indian Legends and Other Poems', 'Horsford, Mary Gardiner', '2006-08-21', 18, 'https://www.gutenberg.org/ebooks/19096', 'en', 7833), +(39417, 'Real Soldiers of Fortune', 'Davis, Richard Harding', '2002-01-01', 113, 'https://www.gutenberg.org/ebooks/3029', 'en', 14423), +(39418, 'Pioneers in Australasia', 'Johnston, Harry', '2015-04-04', 12, 'https://www.gutenberg.org/ebooks/48634', 'en', 14424), +(39419, 'The Works of Edgar Allan Poe, Volume 2', 'Poe, Edgar Allan', '2005-12-01', 9, 'https://www.gutenberg.org/ebooks/9513', 'en', 179), +(39420, 'Le songe d\'une nuit d\'été', 'Shakespeare, William', '2006-03-05', 29, 'https://www.gutenberg.org/ebooks/17930', 'fr', 3258), +(39421, 'Holland, v. 1 (of 2)', 'De Amicis, Edmondo', '2009-01-13', 19, 'https://www.gutenberg.org/ebooks/27799', 'en', 2236), +(39422, 'Timon Ateenalainen', 'Shakespeare, William', '2006-04-10', 46, 'https://www.gutenberg.org/ebooks/18144', 'fi', 5046), +(39423, 'The Tale of Jasper Jay\nTuck-Me-In Tales', 'Bailey, Arthur Scott', '2007-06-15', 22, 'https://www.gutenberg.org/ebooks/21836', 'en', 1602), +(39424, 'The Story of Gösta Berling', 'Lagerlöf, Selma', '2017-12-10', 39, 'https://www.gutenberg.org/ebooks/56158', 'en', 1834), +(39425, 'The Sea Bride', 'Williams, Ben Ames', '2011-07-28', 69, 'https://www.gutenberg.org/ebooks/36881', 'en', 109), +(39426, 'Italian Letters of a Diplomat\'s Wife: January-May, 1880; February-April, 1904', 'Waddington, Mary King', '2011-11-08', 18, 'https://www.gutenberg.org/ebooks/37953', 'en', 2865), +(39427, 'Mary Louise Solves a Mystery', 'Baum, L. Frank (Lyman Frank)', '2008-02-11', 27, 'https://www.gutenberg.org/ebooks/24578', 'en', 6451), +(39428, 'From the Oak to the Olive: A Plain record of a Pleasant Journey', 'Howe, Julia Ward', '2011-11-24', 26, 'https://www.gutenberg.org/ebooks/38127', 'en', 1408), +(39429, 'Debs: His Life, Writings and Speeches, with a Department of Appreciations', 'Debs, Eugene V. (Eugene Victor)', '2019-03-22', 15, 'https://www.gutenberg.org/ebooks/59110', 'en', 14425), +(39430, 'The Quarterly of the Oregon Historical Society (Vol. 1, No. 1)', 'Oregon Historical Society', '2018-04-11', 6, 'https://www.gutenberg.org/ebooks/56964', 'en', 11994), +(39431, 'Siege of Washington, D.C., written expressly for little people', 'Adams, F. Colburn (Francis Colburn)', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/4668', 'en', 14426), +(39432, 'Giroflé és Girofla: Regény (2. kötet)', 'Ambrus, Zoltán', '2012-09-19', 9, 'https://www.gutenberg.org/ebooks/40801', 'hu', 61), +(39433, 'The Arctic Queen', 'Unknown', '2006-01-21', 12, 'https://www.gutenberg.org/ebooks/17568', 'en', 14427), +(39434, 'The Daughter of Heaven', 'Loti, Pierre', '2014-10-28', 31, 'https://www.gutenberg.org/ebooks/47218', 'en', 2199), +(39435, 'The Air Trust', 'England, George Allan', '2004-07-05', 40, 'https://www.gutenberg.org/ebooks/12826', 'en', 26), +(39436, 'Leonora', 'Edgeworth, Maria', '2011-03-20', 37, 'https://www.gutenberg.org/ebooks/35638', 'en', 1375), +(39437, 'Three Weeks', 'Glyn, Elinor', '2005-09-01', 51, 'https://www.gutenberg.org/ebooks/8899', 'en', 61), +(39438, 'Maria Dundee eli Puolalaiset Tukholmassa: Historiallinen novelli', 'Mellin, G. H. (Gustaf Henrik)', '2009-06-28', 7, 'https://www.gutenberg.org/ebooks/29267', 'fi', 98), +(39439, 'The History of the Reformation of Religion in Scotland\r\nWith Which Are Included Knox\'s Confession and The Book of Discipline', 'Knox, John', '2015-02-13', 33, 'https://www.gutenberg.org/ebooks/48250', 'en', 7909), +(39440, 'The Royal Game of the Ombre\r\nWritten at the Request of divers Honourable Persons—1665', 'Anonymous', '2005-10-01', 11, 'https://www.gutenberg.org/ebooks/9177', 'en', 14428), +(39441, 'Sabotage in Space', 'Rockwell, Carey', '2006-06-06', 79, 'https://www.gutenberg.org/ebooks/18520', 'en', 8374), +(39442, 'Miss Ludington\'s Sister', 'Bellamy, Edward', '2004-11-01', 29, 'https://www.gutenberg.org/ebooks/6903', 'en', 10712), +(39443, 'The Trial of Theodore Parker\r\nFor the \"Misdemeanor\" of a Speech in Faneuil Hall against Kidnapping, before the Circuit Court of the United States, at Boston, April 3, 1855, with the Defence', 'Parker, Theodore', '2010-02-17', 17, 'https://www.gutenberg.org/ebooks/31298', 'en', 14429), +(39444, 'The Life of Nephi, the Son of Lehi\r\nWho Emigrated from Jerusalem, in Judea, to the Land Which Is Now Known as South America, about Six Centuries Before the Coming of Our Savior', 'Cannon, George Q. (George Quayle)', '2015-07-06', 28, 'https://www.gutenberg.org/ebooks/49382', 'en', 2107), +(39445, 'The Wanderings and Homes of Manuscripts', 'James, M. R. (Montague Rhodes)', '2009-02-25', 60, 'https://www.gutenberg.org/ebooks/28187', 'en', 14430), +(39446, 'Lectures Delivered in America in 1874', 'Kingsley, Charles', '2010-01-12', 18, 'https://www.gutenberg.org/ebooks/30944', 'en', 659), +(39447, 'Hymns, Songs, and Fables, for Young People', 'Follen, Eliza Lee Cabot', '2005-09-13', 22, 'https://www.gutenberg.org/ebooks/16688', 'en', 2990), +(39448, 'Idyllic Monologues: Old and New World Verses', 'Cawein, Madison Julius', '2010-04-06', 8, 'https://www.gutenberg.org/ebooks/31896', 'en', 178), +(39449, 'The Present State of Virginia', 'Jones, Hugh', '2009-06-06', 13, 'https://www.gutenberg.org/ebooks/29055', 'en', 14431), +(39450, 'La petite comtesse', 'Feuillet, Octave', '2008-10-07', 16, 'https://www.gutenberg.org/ebooks/26821', 'fr', 687), +(39451, 'The Silversmith\'s Handbook\nContaining full instructions for the alloying and working of silver', 'Gee, George E. (George Edward)', '2014-12-30', 25, 'https://www.gutenberg.org/ebooks/47816', 'en', 12782), +(39452, 'Levels of Living\nEssays on Everyday Ideals', 'Cope, Henry Frederick', '2006-06-29', 13, 'https://www.gutenberg.org/ebooks/18712', 'en', 740), +(39453, 'Kirjekyyhkynen', 'Dumas, Alexandre', '2015-01-24', 5, 'https://www.gutenberg.org/ebooks/48062', 'fi', 14432), +(39454, 'Nostromo', 'Conrad, Joseph', '2005-11-01', 11, 'https://www.gutenberg.org/ebooks/9345', 'en', 8183), +(39455, 'Our Moslem Sisters\nA Cry of Need from Lands of Darkness Interpreted by Those Who Heard It', NULL, '2009-10-05', 40, 'https://www.gutenberg.org/ebooks/30178', 'en', 14433), +(39456, 'Scientific American Supplement, No. 286, June 25, 1881', 'Various', '2005-06-01', 8, 'https://www.gutenberg.org/ebooks/8297', 'en', 210), +(39457, 'Bill Nye\'s Red Book\nNew Edition', 'Nye, Bill', '2016-05-02', 12, 'https://www.gutenberg.org/ebooks/51973', 'en', 190), +(39458, 'Essays: Scientific, Political, & Speculative; Vol. 1 of 3\r\nLibrary Edition (1891), Containing Seven Essays not before Republished, and Various other Additions.', 'Spencer, Herbert', '2009-08-31', 33, 'https://www.gutenberg.org/ebooks/29869', 'en', 779), +(39459, 'The Art of Illustration', 'Spurgeon, C. H. (Charles Haddon)', '2013-04-18', 56, 'https://www.gutenberg.org/ebooks/42558', 'en', 13923), +(39460, 'Home Geography for Primary Grades', 'Long, C. C.', '2004-05-01', 853, 'https://www.gutenberg.org/ebooks/12228', 'en', 14434), +(39461, 'Think Before You Speak; Or, The Three Wishes', 'Leprince de Beaumont, Jeanne-Marie', '2008-06-04', 12, 'https://www.gutenberg.org/ebooks/25698', 'en', 14435), +(39462, 'The Scientific American Boy; Or, The Camp at Willow Clump Island', 'Bond, A. Russell (Alexander Russell)', '2005-05-15', 73, 'https://www.gutenberg.org/ebooks/15831', 'en', 2524), +(39463, 'The Tragedy of King Lear', 'Shakespeare, William', '1997-12-01', 300, 'https://www.gutenberg.org/ebooks/1128', 'en', 14436), +(39464, 'Artistic Anatomy of Animals', 'Cuyer, Édouard', '2011-12-15', 57, 'https://www.gutenberg.org/ebooks/38315', 'en', 14437), +(39465, 'The Castaways', 'Reid, Mayne', '2007-04-27', 59, 'https://www.gutenberg.org/ebooks/21238', 'en', 1752), +(39466, 'A Life of Napoleon Bonaparte, with a Sketch of Josephine, Empress of the French.', 'Tarbell, Ida M. (Ida Minerva)', '2019-04-21', 26, 'https://www.gutenberg.org/ebooks/59322', 'en', 840), +(39467, 'The American Missionary — Volume 33, No. 01, January 1879', 'Various', '2016-11-28', 3, 'https://www.gutenberg.org/ebooks/53618', 'en', 562), +(39468, 'A Question', 'Ebers, Georg', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/5588', 'en', 803), +(39469, 'The Black Tor: A Tale of the Reign of James the First', 'Fenn, George Manville', '2007-05-04', 37, 'https://www.gutenberg.org/ebooks/21298', 'en', 14438), +(39470, 'Secreta Monita Societatis Jesu. The Secret Counsels of the Society of Jesus, in Latin and English', NULL, '2019-04-28', 23, 'https://www.gutenberg.org/ebooks/59382', 'la', 14439), +(39471, 'The Bride of the Nile — Volume 12', 'Ebers, Georg', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/5528', 'en', 803), +(39472, 'Index of the Project Gutenberg Works of Thomas Hardy', 'Hardy, Thomas', '2018-11-07', 11, 'https://www.gutenberg.org/ebooks/58250', 'en', 198), +(39473, 'Französisch-slavische Kämpfe in der Bocca di Cattaro 1806-1814.', 'Velimirović, Nikolaj', '2005-05-24', 18, 'https://www.gutenberg.org/ebooks/15891', 'de', 3630), +(39474, 'The Power of the Popes\r\nAn Historical Essay on Their Temporal Dominion, and the Abuse of Their Spiritual Authority', 'Daunou, P. C. F. (Pierre Claude François)', '2012-03-12', 51, 'https://www.gutenberg.org/ebooks/39267', 'en', 14440), +(39475, 'The Hidden Power, and Other Papers upon Mental Science', 'Troward, T. (Thomas)', '2008-05-29', 59, 'https://www.gutenberg.org/ebooks/25638', 'en', 43), +(39476, 'A Book of Jewish Thoughts', NULL, '2018-05-27', 32, 'https://www.gutenberg.org/ebooks/57218', 'en', 14441), +(39477, 'The Lair of the White Worm', 'Stoker, Bram', '1998-02-01', 209, 'https://www.gutenberg.org/ebooks/1188', 'en', 428), +(39478, 'An American Idyll\nThe Life of Carleton H. Parker', 'Parker, Cornelia Stratton', '2005-02-07', 29, 'https://www.gutenberg.org/ebooks/14943', 'en', 14442), +(39479, 'Narrative and Critical History of America, Vol. 1 (of 8)\r\nAboriginal America', NULL, '2015-12-31', 18, 'https://www.gutenberg.org/ebooks/50801', 'en', 207), +(39480, 'The Battle of Life', 'Dickens, Charles', '1996-10-01', 282, 'https://www.gutenberg.org/ebooks/676', 'en', 4477), +(39481, 'The Witchcraft Delusion in Colonial Connecticut (1647-1697)', 'Taylor, John M. (John Metcalf)', '2004-05-01', 58, 'https://www.gutenberg.org/ebooks/12288', 'en', 13223), +(39482, 'Man of Many Minds', 'Evans, E. Everett (Edward Everett)', '2006-10-29', 50, 'https://www.gutenberg.org/ebooks/19660', 'en', 424), +(39483, 'Of Gardens: An essay', 'Bacon, Francis', '2014-09-25', 44, 'https://www.gutenberg.org/ebooks/46964', 'en', 8600), +(39484, 'The World English Bible (WEB): 2 Samuel', 'Anonymous', '2005-06-01', 26, 'https://www.gutenberg.org/ebooks/8237', 'en', 12841), +(39485, 'Pelaaja', 'Dostoyevsky, Fyodor', '2014-06-27', 15, 'https://www.gutenberg.org/ebooks/49110', 'fi', 376), +(39486, 'O presbyterio da montanha', 'Castilho, Antonio Feliciano de', '2009-02-19', 24, 'https://www.gutenberg.org/ebooks/28127', 'pt', 410), +(39487, 'The New Nation', 'Paxson, Frederic L. (Frederic Logan)', '2009-01-31', 45, 'https://www.gutenberg.org/ebooks/27953', 'en', 1561), +(39488, 'The Life or Legend of Gaudama, the Buddha of the Burmese (Volume I)', 'Bigandet, Paul Ambroise', '2010-12-05', 22, 'https://www.gutenberg.org/ebooks/34578', 'en', 14443), +(39489, 'The Gospel of Luke, An Exposition', 'Erdman, Charles Rosenbury', '2008-10-11', 61, 'https://www.gutenberg.org/ebooks/26881', 'en', 14444), +(39490, 'Tea and Tea Drinking', 'Reade, Arthur', '2014-07-01', 18, 'https://www.gutenberg.org/ebooks/46158', 'en', 2245), +(39491, 'Punch, or the London Charivari, Volume 159, August 4th, 1920', 'Various', '2005-08-31', 23, 'https://www.gutenberg.org/ebooks/16628', 'en', 134), +(39492, 'Better than Play', 'Quiller-Couch, Mabel', '2010-04-01', 8, 'https://www.gutenberg.org/ebooks/31836', 'en', 658), +(39493, 'Dick in the Everglades', 'Dimock, A. W. (Anthony Weston)', '2004-08-13', 15, 'https://www.gutenberg.org/ebooks/13168', 'en', 5221), +(39494, 'System of Economical Contradictions; Or, The Philosophy of Misery', 'Proudhon, P.-J. (Pierre-Joseph)', '1996-02-01', 113, 'https://www.gutenberg.org/ebooks/444', 'en', 1745), +(39495, 'Los favores del mundo', 'Ruiz de Alarcón, Juan', '2006-06-14', 20, 'https://www.gutenberg.org/ebooks/18580', 'es', 402), +(39496, 'Human Life', 'Knight, Sherwood Sweet', '2013-09-01', 11, 'https://www.gutenberg.org/ebooks/43618', 'en', 279), +(39497, 'The Bible, King James version, Book 5: Deuteronomy', 'Anonymous', '2005-04-01', 35, 'https://www.gutenberg.org/ebooks/8005', 'en', 6264), +(39498, 'Noah Webster\nAmerican Men of Letters', 'Scudder, Horace Elisha', '2010-02-09', 20, 'https://www.gutenberg.org/ebooks/31238', 'en', 14445), +(39499, 'The Skirts of the Great City', 'D\'Anvers, N.', '2015-06-29', 12, 'https://www.gutenberg.org/ebooks/49322', 'en', 14446), +(39500, 'Le Petit Nord\r\nor, Annals of a Labrador Harbour', 'Grenfell, Anne', '2006-10-03', 28, 'https://www.gutenberg.org/ebooks/19452', 'en', 14447), +(39501, 'Dutch Fairy Tales for Young Folks', 'Griffis, William Elliot', '2005-04-01', 131, 'https://www.gutenberg.org/ebooks/7871', 'en', 14448), +(39502, 'Punch, or the London Charivari, Volume 152, June 27, 1917\r\n1917 Almanack', 'Various', '2004-11-04', 11, 'https://www.gutenberg.org/ebooks/13954', 'en', 134), +(39503, 'One Way Out: A Middle-class New-Englander Emigrates to America', 'Carleton, William', '2009-03-12', 10, 'https://www.gutenberg.org/ebooks/28315', 'en', 1347), +(39504, 'Weymouth New Testament in Modern Speech, Colossians', 'Weymouth, Richard Francis', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/8839', 'en', 14389), +(39505, 'The Coquette\'s Victim\r\nEveryday Life Library No. 1', 'Brame, Charlotte M.', '2004-07-12', 10, 'https://www.gutenberg.org/ebooks/12886', 'en', 61), +(39506, 'Letters of John Keats to His Family and Friends', 'Keats, John', '2011-03-28', 147, 'https://www.gutenberg.org/ebooks/35698', 'en', 1865), +(39507, 'Yachting, Vol. 2', 'Pritchett, R. T. (Robert Taylor)', '2013-02-02', 21, 'https://www.gutenberg.org/ebooks/41973', 'en', 6105), +(39508, 'Tubal Cain', 'Hergesheimer, Joseph', '2016-07-11', 9, 'https://www.gutenberg.org/ebooks/52558', 'en', 14449), +(39509, 'Farming with Dynamite: A Few Hints to Farmers', 'E.I. du Pont de Nemours & Company', '2012-05-31', 31, 'https://www.gutenberg.org/ebooks/39869', 'en', 14450), +(39510, 'The Preacher\'s Complete Homiletic Commentary on the Books of the Bible, Volume 15 (of 32)\r\nThe Preacher\'s Complete Homiletic Commentary on the Book of the Prophet Isaiah, Volume I', 'Tucker, Alfred', '2018-10-09', 46, 'https://www.gutenberg.org/ebooks/58062', 'en', 9743), +(39511, 'John Gabriel Borkman', 'Ibsen, Henrik', '2006-12-23', 5, 'https://www.gutenberg.org/ebooks/20178', 'eo', 3671), +(39512, 'Jet Plane Mystery', 'Snell, Roy J. (Roy Judson)', '2018-08-30', 20, 'https://www.gutenberg.org/ebooks/57816', 'en', 1004), +(39513, 'Maxims and Hints on Angling, Chess, Shooting, and Other Matters\r\nAlso, Miseries of Fishing', 'Penn, Richard', '2011-07-23', 19, 'https://www.gutenberg.org/ebooks/36821', 'en', 14451), +(39514, 'Nicolas Foucquet, surintendant des finances', 'Marsy, Arthur de', '2007-06-21', 10, 'https://www.gutenberg.org/ebooks/21896', 'fr', 14452); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(39515, 'The Trial of Henry Hetherington, on an Indictment for Blasphemy', 'Hetherington, H. (Henry)', '2012-03-05', 30, 'https://www.gutenberg.org/ebooks/39055', 'en', 14453), +(39516, 'Aviation Engines: Design—Construction—Operation and Repair', 'Pagé, Victor Wilfred', '2011-12-02', 71, 'https://www.gutenberg.org/ebooks/38187', 'en', 14454), +(39517, 'Nach Amerika! Ein Volksbuch. Zweiter Band.', 'Gerstäcker, Friedrich', '2007-03-30', 19, 'https://www.gutenberg.org/ebooks/20944', 'de', 512), +(39518, 'Memoirs of Henry Hunt, Esq. — Volume 2', 'Hunt, Henry', '2005-07-01', 20, 'https://www.gutenberg.org/ebooks/8461', 'en', 9960), +(39519, 'Original Short Stories — Volume 13', 'Maupassant, Guy de', '2004-10-04', 48, 'https://www.gutenberg.org/ebooks/3089', 'en', 1112), +(39520, 'Liedekens van Bontekoe en vijf novellen\r\nBlaauw bes, blauw bes!—\'T is maar een pennelikker!—Marie—De ezelinnen—Hanna', 'Potgieter, E. J. (Everhardus Johannes)', '2005-10-09', 27, 'https://www.gutenberg.org/ebooks/16842', 'nl', 61), +(39521, 'Motor Matt in Brazil; or, Under The Amazon', 'Matthews, Stanley R.', '2015-08-21', 12, 'https://www.gutenberg.org/ebooks/49746', 'en', 4097), +(39522, 'Germany and the Germans from an American Point of View', 'Collier, Price', '2006-08-12', 31, 'https://www.gutenberg.org/ebooks/19036', 'en', 12734), +(39523, 'Olympic National Park, Washington', 'Fagerlund, Gunnar O.', '2017-08-09', 12, 'https://www.gutenberg.org/ebooks/55319', 'en', 14455), +(39524, 'Poetical Works of Matthew Arnold', 'Arnold, Matthew', '2009-01-07', 46, 'https://www.gutenberg.org/ebooks/27739', 'en', 532), +(39525, 'Musk-Ox, Bison, Sheep and Goat', 'Grinnell, George Bird', '2015-04-12', 26, 'https://www.gutenberg.org/ebooks/48694', 'en', 2441), +(39526, 'Le comte de Monte-Cristo, Tome II', 'Dumas, Alexandre', '2006-03-15', 186, 'https://www.gutenberg.org/ebooks/17990', 'fr', 3828), +(39527, 'Trials and Triumphs of Faith', 'Cole, Mary', '2005-02-01', 8, 'https://www.gutenberg.org/ebooks/7429', 'en', 14456), +(39528, 'Little White Barbara', 'March, Eleanor S.', '2007-11-07', 25, 'https://www.gutenberg.org/ebooks/23399', 'en', 14457), +(39529, 'Child Maidelvold, and Other Ballads', NULL, '2009-05-12', 10, 'https://www.gutenberg.org/ebooks/28771', 'en', 8), +(39530, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 17: Return to Italy', 'Casanova, Giacomo', '2004-12-11', 20, 'https://www.gutenberg.org/ebooks/2967', 'en', 4164), +(39531, 'The River of Life, and Other Stories', 'Kuprin, A. I. (Aleksandr Ivanovich)', '2018-12-03', 22, 'https://www.gutenberg.org/ebooks/58406', 'en', 85), +(39532, 'A Review and Exposition, of the Falsehoods and Misrepresentations, of a Pamphlet Addressed to the Republicans of the County of Saratoga, Signed, \"A Citizen\"', 'Elector', '2005-01-18', 10, 'https://www.gutenberg.org/ebooks/14729', 'en', 14458), +(39533, 'Kalle Saukko', 'Blanche, August', '2010-10-10', 16, 'https://www.gutenberg.org/ebooks/33937', 'fi', 179), +(39534, 'The Secret of Casa Grande\nMexican Mystery Stories #1', 'Randolph, Helen', '2013-10-31', 19, 'https://www.gutenberg.org/ebooks/44059', 'en', 51), +(39535, 'William Pitt and the Great War', 'Rose, J. Holland (John Holland)', '2008-04-03', 21, 'https://www.gutenberg.org/ebooks/24980', 'en', 14459), +(39536, 'The Letters of Charles Dickens. Vol. 1, 1833-1856', 'Dickens, Charles', '2008-06-20', 98, 'https://www.gutenberg.org/ebooks/25852', 'en', 4701), +(39537, 'Dante: Six Sermons', 'Wicksteed, Philip H. (Philip Henry)', '2011-06-22', 10, 'https://www.gutenberg.org/ebooks/36479', 'en', 14460), +(39538, 'Northern Trails, Book I.', 'Long, William J. (William Joseph)', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/10389', 'en', 1787), +(39539, 'The Secret Service, the Field, the Dungeon, and the Escape', 'Richardson, Albert D. (Albert Deane)', '2014-02-10', 19, 'https://www.gutenberg.org/ebooks/44865', 'en', 444), +(39540, 'Young Folks\' Bible in Words of Easy Reading\nThe Sweet Stories of God\'s Word in the Language of Childhood', 'Pollard, Josephine', '2012-04-12', 45, 'https://www.gutenberg.org/ebooks/39431', 'en', 14461), +(39541, 'Little Men: Life at Plumfield with Jo\'s Boys', 'Alcott, Louisa May', '2016-08-26', 53, 'https://www.gutenberg.org/ebooks/52900', 'en', 1779), +(39542, 'The Extraordinary Adventures of Poor Little Bewildered Henry, Who was shut up in an Old Abbey for Three Weeks\r\nA Story Founded on Fact', 'Anonymous', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/10987', 'en', 4014), +(39543, 'L\'Illustration, No. 3655, 15 Mars 1913', 'Various', '2011-10-19', 1, 'https://www.gutenberg.org/ebooks/37799', 'fr', 150), +(39544, 'An Irish Cousin; vol. 2/2', 'Ross, Martin', '2019-01-06', 5, 'https://www.gutenberg.org/ebooks/58634', 'en', 669), +(39545, 'U.S. Copyright Renewals, 1977 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11855', 'en', 4170), +(39546, 'Lovey Mary', 'Rice, Alice Caldwell Hegan', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/5970', 'en', 406), +(39547, 'Les enfants des bois', 'Reid, Mayne', '2010-08-03', 11, 'https://www.gutenberg.org/ebooks/33339', 'fr', 1120), +(39548, 'White Fire', 'Snell, Roy J. (Roy Judson)', '2012-12-28', 20, 'https://www.gutenberg.org/ebooks/41719', 'en', 128), +(39549, 'The Public Life of Queen Victoria', 'McGilchrist, John', '2012-05-03', 8, 'https://www.gutenberg.org/ebooks/39603', 'en', 7002), +(39550, 'Squinty the Comical Pig: His Many Adventures', 'Barnum, Richard', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11069', 'en', 3133), +(39551, 'Lady Larkspur', 'Nicholson, Meredith', '2006-09-07', 17, 'https://www.gutenberg.org/ebooks/19204', 'en', 61), +(39552, 'East O\' the Sun and West O\' the Moon', 'Moe, Jørgen Engebretsen', '2005-08-01', 27, 'https://www.gutenberg.org/ebooks/8653', 'en', 14462), +(39553, 'Un enfant, t. 2/3', 'Desprez, Ernest', '2015-08-02', 8, 'https://www.gutenberg.org/ebooks/49574', 'fr', 298), +(39554, 'The Beauty Of The Village', 'Mitford, Mary Russell', '2007-10-02', 13, 'https://www.gutenberg.org/ebooks/22845', 'en', 757), +(39555, 'Eugene Oneguine [Onegin]\r\nA Romance of Russian Life in Verse', 'Pushkin, Aleksandr Sergeevich', '2007-12-27', 270, 'https://www.gutenberg.org/ebooks/23997', 'en', 85), +(39556, 'A History of Rome During the Later Republic and Early Principate', 'Greenidge, A. H. J. (Abel Hendy Jones)', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9781', 'en', 6793), +(39557, 'One of Ours', 'Cather, Willa', '2004-11-20', 128, 'https://www.gutenberg.org/ebooks/2369', 'en', 2564), +(39558, 'Silver Pitchers: and Independence, a Centennial Love Story', 'Alcott, Louisa May', '2011-01-11', 64, 'https://www.gutenberg.org/ebooks/34920', 'en', 61), +(39559, 'A List of Factorial Math Constants', 'Unknown', '1995-02-01', 117, 'https://www.gutenberg.org/ebooks/212', 'en', 1044), +(39560, 'Teatro selecto, tomo 2 de 4', 'Calderón de la Barca, Pedro', '2017-11-08', 22, 'https://www.gutenberg.org/ebooks/55917', 'es', 206), +(39561, 'The Brighton Boys in the Radio Service', 'Driscoll, James R.', '2007-07-15', 28, 'https://www.gutenberg.org/ebooks/22079', 'en', 14463), +(39562, 'Punch or the London Charivari, Vol. 147, December 9, 1914', 'Various', '2009-07-22', 15, 'https://www.gutenberg.org/ebooks/29491', 'en', 134), +(39563, 'Rex Ex Machina', 'Max, Frederic', '2009-04-08', 26, 'https://www.gutenberg.org/ebooks/28543', 'en', 26), +(39564, 'Billy Whiskers\' Travels', 'Montgomery, Frances Trego', '2013-10-02', 7, 'https://www.gutenberg.org/ebooks/43872', 'en', 625), +(39565, 'Englands Wirtschaftskrieg gegen Deutschland', 'Stresemann, Gustav', '2015-11-15', 15, 'https://www.gutenberg.org/ebooks/50459', 'de', 14464), +(39566, 'The Life of St. Frances of Rome, and Others', 'Fullerton, Georgiana', '2005-07-01', 33, 'https://www.gutenberg.org/ebooks/8495', 'en', 14465), +(39567, 'The Bridal March; One Day', 'Bjørnson, Bjørnstjerne', '2006-04-03', 32, 'https://www.gutenberg.org/ebooks/18110', 'en', 2774), +(39568, 'The Third Volume', 'Hume, Fergus', '2013-07-24', 11, 'https://www.gutenberg.org/ebooks/43288', 'en', 1425), +(39569, 'Kirkonlämmittäjä: Romaani', 'Järventaus, Arvi', '2015-04-07', 9, 'https://www.gutenberg.org/ebooks/48660', 'fi', 175), +(39570, 'Olympian Nights', 'Bangs, John Kendrick', '2006-03-11', 17, 'https://www.gutenberg.org/ebooks/17964', 'en', 14466), +(39571, 'The Cruise of the Dry Dock', 'Stribling, T. S. (Thomas Sigismund)', '2005-12-01', 16, 'https://www.gutenberg.org/ebooks/9547', 'en', 14467), +(39572, 'Memoirs of Marguerite de Valois, Queen of Navarre — Complete', 'Marguerite, Queen, consort of Henry IV, King of France', '2004-08-24', 88, 'https://www.gutenberg.org/ebooks/3841', 'en', 14468), +(39573, 'Mixed Faces', 'Norton, Roy', '2009-08-10', 12, 'https://www.gutenberg.org/ebooks/29657', 'en', 61), +(39574, 'On Canada\'s Frontier\r\nSketches of History, Sport, and Adventure and of the Indians, Missionaries, Fur-traders, and Newer Settlers of Western Canada', 'Ralph, Julian', '2011-02-07', 22, 'https://www.gutenberg.org/ebooks/35208', 'en', 12), +(39575, 'A Corner of Spain', 'Wood, Walter', '2014-12-11', 61, 'https://www.gutenberg.org/ebooks/47628', 'en', 14469), +(39576, 'La baraonda', 'Rovetta, Gerolamo', '2009-05-13', 9, 'https://www.gutenberg.org/ebooks/28785', 'it', 860), +(39577, 'Armageddon—And After', 'Courtney, W. L. (William Leonard)', '2005-11-26', 14, 'https://www.gutenberg.org/ebooks/17158', 'en', 4773), +(39578, 'Samuel Butler: A Sketch', 'Jones, Henry Festing', '2001-12-01', 15, 'https://www.gutenberg.org/ebooks/2993', 'en', 14470), +(39579, 'Ontario Teachers\' Manuals: Literature', 'Ontario. Department of Education', '2008-04-02', 15, 'https://www.gutenberg.org/ebooks/24974', 'en', 973), +(39580, 'Andersonville: A Story of Rebel Military Prisons — Volume 2', 'McElroy, John', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/4258', 'en', 2363), +(39581, 'Penal Methods of the Middle Ages: Criminals, Witches, Lunatics', 'Ives, George Burnham', '2019-05-16', 34, 'https://www.gutenberg.org/ebooks/59520', 'en', 4353), +(39582, 'Holiday House: A Series of Tales', 'Sinclair, Catherine', '2010-06-14', 13, 'https://www.gutenberg.org/ebooks/32811', 'en', 31), +(39583, 'The Front Yard, and Other Italian Stories', 'Woolson, Constance Fenimore', '2012-01-07', 15, 'https://www.gutenberg.org/ebooks/38517', 'en', 2741), +(39584, 'Janet; or, The Christmas Stockings', 'Gibbons, Louise Élise', '2016-12-29', 5, 'https://www.gutenberg.org/ebooks/53826', 'en', 4383), +(39585, 'The Works of the Right Honourable John, Earl of Rochester\r\nConsisting of Satires, Songs, Translations, and other Occasional Poems', 'Rochester, John Wilmot, Earl of,', '2014-02-13', 37, 'https://www.gutenberg.org/ebooks/44891', 'en', 14471), +(39586, 'Waring\'s Peril', 'King, Charles', '2008-01-03', 19, 'https://www.gutenberg.org/ebooks/24148', 'en', 12654), +(39587, 'Uit Oost en West: verklaring van eenige uitheemsche woorden', 'Veth, Pieter Johannes', '2014-06-11', 6, 'https://www.gutenberg.org/ebooks/45943', 'nl', 14472), +(39588, 'Graham\'s Magazine, Vol. XXX, No. 5, May 1847', 'Various', '2018-02-14', 10, 'https://www.gutenberg.org/ebooks/56568', 'en', 162), +(39589, 'The Late Mrs. Null', 'Stockton, Frank Richard', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/10973', 'en', 12813), +(39590, 'Eclectic Magazine of Foreign Literature, Science, and Art, February 1885', 'Various', '2016-10-07', 2, 'https://www.gutenberg.org/ebooks/53228', 'en', 883), +(39591, 'The Dawn of Reason; or, Mental Traits in the Lower Animals', 'Weir, James, Jr.', '2007-05-25', 27, 'https://www.gutenberg.org/ebooks/21608', 'en', 10212), +(39592, 'The Floater', 'Walton, Bryce', '2019-06-09', 119, 'https://www.gutenberg.org/ebooks/59712', 'en', 14473), +(39593, 'The British North America Act, 1867', 'Anonymous', '2004-09-28', 13, 'https://www.gutenberg.org/ebooks/5984', 'en', 14474), +(39594, 'Red Ben, the Fox of Oak Ridge', 'Lippincott, Joseph Wharton', '2018-08-14', 6, 'https://www.gutenberg.org/ebooks/57688', 'en', 14475), +(39595, 'L\'Illustration, No. 0031, 30 Septembre 1843', 'Various', '2012-01-31', 10, 'https://www.gutenberg.org/ebooks/38725', 'fr', 150), +(39596, 'King Henry IV, Second Part', 'Shakespeare, William', '1998-11-01', 61, 'https://www.gutenberg.org/ebooks/1518', 'en', 599), +(39597, 'History of the United Netherlands, 1588b', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4856', 'en', 3372), +(39598, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 472, January 22, 1831', 'Various', '2004-06-01', 2, 'https://www.gutenberg.org/ebooks/12618', 'en', 133), +(39599, 'Niederländische Volkslieder', NULL, '2011-04-08', 23, 'https://www.gutenberg.org/ebooks/35806', 'nl', 14476), +(39600, 'The Pit Town Coronet: A Family Mystery, Volume 2 (of 3)', 'Wills, C. J. (Charles James)', '2013-02-23', 7, 'https://www.gutenberg.org/ebooks/42168', 'en', 7579), +(39601, 'Wallace; or, the Life and Acts of Sir William Wallace, of Ellerslie', 'Blind Hary, active 1470-1492', '2015-08-02', 50, 'https://www.gutenberg.org/ebooks/49580', 'en', 14477), +(39602, 'The Old House, and Other Tales', 'Sologub, Fyodor', '2015-03-10', 28, 'https://www.gutenberg.org/ebooks/48452', 'en', 14478), +(39603, 'Chambers\'s Edinburgh Journal, No. 457\nVolume 18, New Series, October 2, 1852', 'Various', '2007-12-22', 8, 'https://www.gutenberg.org/ebooks/23963', 'en', 18), +(39604, 'The Shores of the Adriatic\nThe Austrian Side, The Küstenlande, Istria, and Dalmatia', 'Jackson, F. Hamilton (Frederick Hamilton)', '2009-11-26', 28, 'https://www.gutenberg.org/ebooks/30548', 'en', 14479), +(39605, 'Treasure and Trouble Therewith: A Tale of California', 'Bonner, Geraldine', '2006-01-01', 14, 'https://www.gutenberg.org/ebooks/9775', 'en', 211), +(39606, 'Daniel Hjort: Murhenäytelmä viidessä näytöksessä ja neljässä kuvaelmassa', 'Wecksell, J. J. (Josef Julius)', '2006-05-05', 19, 'https://www.gutenberg.org/ebooks/18322', 'fi', 13946), +(39607, 'Rudolph von Habsburg: Ein Heldengedicht in zwölf Gesängen.\r\nJohann Ladislav Pyrker\'s sämmtliche Werke (2/3)', 'Pyrker, János László', '2009-07-20', 16, 'https://www.gutenberg.org/ebooks/29465', 'de', 14480), +(39608, 'Brittany', 'Menpes, Dorothy', '2013-06-15', 12, 'https://www.gutenberg.org/ebooks/42954', 'en', 2281), +(39609, 'Bunyan\'s Pilgrim\'s Progress: In Words of One Syllable', 'Day, Samuel Phillips', '2013-10-05', 34, 'https://www.gutenberg.org/ebooks/43886', 'en', 14481), +(39610, 'Dalla rupe: novella', 'Barrili, Anton Giulio', '2017-06-02', 11, 'https://www.gutenberg.org/ebooks/54831', 'it', 860), +(39611, 'Les petites filles modèles', 'Ségur, Sophie, comtesse de', '2005-02-14', 18, 'https://www.gutenberg.org/ebooks/15059', 'fr', 12281), +(39612, 'The Patriot', 'Fontenay, Charles L.', '2019-04-27', 59, 'https://www.gutenberg.org/ebooks/59376', 'en', 2627), +(39613, 'Buffon\'s Natural History. Volume 04 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Minerals, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-05-23', 23, 'https://www.gutenberg.org/ebooks/45729', 'en', 871), +(39614, 'Violins and Violin Makers\r\nBiographical Dictionary of the Great Italian Artistes, their Followers and Imitators, to the present time. With Essays on Important Subjects Connected with the Violin.', 'Pearce, Joseph', '2011-09-04', 16, 'https://www.gutenberg.org/ebooks/37309', 'en', 14482), +(39615, 'Christ in Flanders', 'Balzac, Honoré de', '2004-06-28', 33, 'https://www.gutenberg.org/ebooks/1940', 'en', 58), +(39616, 'Memoria sobre o melhoramento da cultura da Beira e da navegação do Mondego', 'Almeida, António de', '2012-11-17', 2, 'https://www.gutenberg.org/ebooks/41389', 'pt', 14483), +(39617, 'The Gentlemen\'s Book of Etiquette and Manual of Politeness\r\nBeing a Complete Guide for a Gentleman\'s Conduct in All His Relations Towards Society', 'Hartley, Cecil B.', '2012-03-28', 246, 'https://www.gutenberg.org/ebooks/39293', 'en', 788), +(39618, 'Noughts and Crosses: Stories, Studies and Sketches', 'Quiller-Couch, Arthur', '2005-05-19', 42, 'https://www.gutenberg.org/ebooks/15865', 'en', 179), +(39619, 'The Lash', 'Lyman, Olin L. (Olin Linus)', '2011-12-19', 72, 'https://www.gutenberg.org/ebooks/38341', 'en', 61), +(39620, 'Unter Palmen und Buchen. Dritter Band.', 'Gerstäcker, Friedrich', '2015-01-20', 6, 'https://www.gutenberg.org/ebooks/48036', 'de', 138), +(39621, 'Hetty\'s Strange History', 'Jackson, Helen Hunt', '2005-11-01', 15, 'https://www.gutenberg.org/ebooks/9311', 'en', 61), +(39622, 'Queen Moo\'s Talisman: The Fall of the Maya Empire', 'Le Plongeon, Alice D. (Alice Dixon)', '2015-01-01', 13, 'https://www.gutenberg.org/ebooks/47842', 'en', 14484), +(39623, 'Alle guten Geister...: Roman', 'Schieber, Anna', '2017-04-01', 7, 'https://www.gutenberg.org/ebooks/54469', 'de', 61), +(39624, 'Catalan\'s Constant [Ramanujan\'s Formula]', 'Fee, Greg', '1996-10-01', 67, 'https://www.gutenberg.org/ebooks/682', 'en', 7340), +(39625, 'The Great Round World and What Is Going On In It, Vol. 2, No. 24, June 16, 1898\nA Weekly Magazine for Boys and Girls', 'Various', '2006-07-03', 19, 'https://www.gutenberg.org/ebooks/18746', 'en', 1), +(39626, 'A Smaller History of Rome', 'Lawrence, Eugene', '2006-11-01', 35, 'https://www.gutenberg.org/ebooks/19694', 'en', 6793), +(39627, 'Stand By! Naval Sketches and Stories', 'Dorling, H. Taprell (Henry Taprell)', '2008-07-13', 9, 'https://www.gutenberg.org/ebooks/26049', 'en', 10034), +(39628, 'The Guinea Voyage: A Poem in Three Books\r\nTo Which Are Added Observations on a Voyage to the Coast of Africa', 'Stanfield, James Field', '2014-09-28', 9, 'https://www.gutenberg.org/ebooks/46990', 'en', 14485), +(39629, 'The Lighter Side of English Life', 'Moore, Frank Frankfort', '2016-05-01', 11, 'https://www.gutenberg.org/ebooks/51927', 'en', 14486), +(39630, 'The Queen Against Owen', 'Upward, Allen', '2010-01-10', 17, 'https://www.gutenberg.org/ebooks/30910', 'en', 9562), +(39631, 'The English Mail-Coach and Joan of Arc', 'De Quincey, Thomas', '2004-08-01', 55, 'https://www.gutenberg.org/ebooks/6359', 'en', 472), +(39632, 'The Boy Scout Fire Fighters; Or Jack Danby\'s Bravest Deed', 'Maitland, Robert', '2008-11-24', 64, 'https://www.gutenberg.org/ebooks/26875', 'en', 1002), +(39633, 'Five Mice in a Mouse-trap, by the Man in the Moon.', 'Richards, Laura Elizabeth Howe', '2009-05-29', 15, 'https://www.gutenberg.org/ebooks/29001', 'en', 388), +(39634, 'Canada and Other Poems', 'Young, T. F. (Thomas Frederick)', '2004-11-01', 7, 'https://www.gutenberg.org/ebooks/6957', 'en', 28), +(39635, 'Across the Sea and Other Poems.', 'Chard, Thomas S.', '2006-06-13', 8, 'https://www.gutenberg.org/ebooks/18574', 'en', 8), +(39636, 'Gil Blas: Santillanalaisen elämänvaiheet', 'Le Sage, Alain René', '2015-02-08', 5, 'https://www.gutenberg.org/ebooks/48204', 'fi', 2588), +(39637, 'Rebecca Mary', 'Donnell, Annie Hamilton', '2002-09-01', 22, 'https://www.gutenberg.org/ebooks/3419', 'en', 770), +(39638, 'Celtic Fairy Tales', NULL, '2005-04-01', 181, 'https://www.gutenberg.org/ebooks/7885', 'en', 14487), +(39639, 'List of Books in Belles Lettres Published by John Lane, The Bodley Head, 1895', 'Bodley Head (Firm)', '2017-10-22', 9, 'https://www.gutenberg.org/ebooks/55789', 'en', 2663), +(39640, 'The Burgess Bird Book for Children', 'Burgess, Thornton W. (Thornton Waldo)', '2007-12-01', 10, 'https://www.gutenberg.org/ebooks/23709', 'en', 6059), +(39641, 'Turkey; the Awakening of Turkey; the Turkish Revolution of 1908', 'Knight, E. F. (Edward Frederick)', '2016-02-29', 17, 'https://www.gutenberg.org/ebooks/51329', 'en', 14488), +(39642, 'The 2008 CIA World Factbook', 'United States. Central Intelligence Agency', '2009-06-25', 63, 'https://www.gutenberg.org/ebooks/29233', 'en', 1407), +(39643, 'Punch, or the London Charivari, Volume 100, January 24, 1891', 'Various', '2004-07-10', 3, 'https://www.gutenberg.org/ebooks/12872', 'en', 134), +(39644, 'Meren takaa II', 'Kallas, Aino Krohn', '2018-04-06', 6, 'https://www.gutenberg.org/ebooks/56930', 'fi', 665), +(39645, '\"The United Seas\"', 'Rogers, Robert W. (Robert Wells)', '2013-02-03', 8, 'https://www.gutenberg.org/ebooks/41987', 'en', 1232), +(39646, 'The Master of Greylands: A Novel', 'Wood, Henry, Mrs.', '2019-03-28', 38, 'https://www.gutenberg.org/ebooks/59144', 'en', 137), +(39647, 'A Trip to the Chain-Bridge, Near Bangor, and Other Parts of North Wales', 'Anonymous', '2018-10-14', 2, 'https://www.gutenberg.org/ebooks/58096', 'en', 14489), +(39648, 'Confidences et Révélations: Comment on devient sorcier', 'Robert-Houdin, Jean-Eugène', '2012-09-24', 24, 'https://www.gutenberg.org/ebooks/40855', 'fr', 7312), +(39649, 'Förvillelser', 'Söderberg, Hjalmar', '2007-06-19', 21, 'https://www.gutenberg.org/ebooks/21862', 'sv', 61), +(39650, 'Japanese Girls and Women\nRevised and Enlarged Edition', 'Bacon, Alice Mabel', '2010-05-20', 97, 'https://www.gutenberg.org/ebooks/32449', 'en', 14490), +(39651, 'Clermont State Historic Park, Germantown, New York', 'Anonymous', '2019-07-24', 308, 'https://www.gutenberg.org/ebooks/59978', 'en', 14491), +(39652, 'The American Indian as Slaveholder and Seccessionist\nAn Omitted Chapter in the Diplomatic History of the Southern Confederacy', 'Abel, Annie Heloise', '2011-11-30', 28, 'https://www.gutenberg.org/ebooks/38173', 'en', 14492), +(39653, 'Argentina', 'Hirst, W. A. (William Alfred)', '2012-06-24', 19, 'https://www.gutenberg.org/ebooks/40069', 'en', 14493), +(39654, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 345, December 6, 1828', 'Various', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/10719', 'en', 133), +(39655, 'Brave Old Salt; or, Life on the Quarter Deck: A Story of the Great Rebellion', 'Optic, Oliver', '2011-11-02', 6, 'https://www.gutenberg.org/ebooks/37907', 'en', 491), +(39656, 'Teresa of Watling Street: A Fantasia on Modern Themes', 'Bennett, Arnold', '2017-07-15', 10, 'https://www.gutenberg.org/ebooks/55114', 'en', 230), +(39657, 'The Discovery of the Source of the Nile', 'Speke, John Hanning', '2002-06-01', 69, 'https://www.gutenberg.org/ebooks/3284', 'en', 1274), +(39658, 'A Little Question in Ladies\' Rights', 'Fillmore, Parker', '2010-02-28', 14, 'https://www.gutenberg.org/ebooks/31451', 'en', 2811), +(39659, 'Tommy and Co.', 'Jerome, Jerome K. (Jerome Klapka)', '2000-10-01', 38, 'https://www.gutenberg.org/ebooks/2356', 'en', 1079), +(39660, 'The Asses of Balaam', 'Garrett, Randall', '2009-12-02', 89, 'https://www.gutenberg.org/ebooks/30583', 'en', 26), +(39661, 'The Alternative', 'McCutcheon, George Barr', '2013-07-01', 23, 'https://www.gutenberg.org/ebooks/43071', 'en', 541), +(39662, 'Jaundice: Its Pathology and Treatment\r\nWith the Application of Physiological Chemistry to the Detection and Treatment of Diseases of the Liver and Pancreas', 'Harley, George', '2015-03-12', 12, 'https://www.gutenberg.org/ebooks/48499', 'en', 14494), +(39663, 'The Philippine Islands, 1493-1898 — Volume 07 of 55\r\n1588-1591\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2004-10-11', 2798, 'https://www.gutenberg.org/ebooks/13701', 'en', 8515), +(39664, 'Cobwebs from a Library Corner', 'Bangs, John Kendrick', '2008-12-14', 14, 'https://www.gutenberg.org/ebooks/27534', 'en', 8), +(39665, 'Gold-Seeking on the Dalton Trail\r\nBeing the Adventures of Two New England Boys in Alaska and the Northwest Territory', 'Thompson, Arthur R. (Arthur Ripley)', '2014-08-04', 13, 'https://www.gutenberg.org/ebooks/46503', 'en', 4264), +(39666, 'The House of Dreams-Come-True', 'Pedler, Margaret', '2017-11-10', 12, 'https://www.gutenberg.org/ebooks/55928', 'en', 61), +(39667, 'Devereux — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 21, 'https://www.gutenberg.org/ebooks/7624', 'en', 4464), +(39668, 'Maxim Gorki', 'Ostwald, Hans', '2007-07-10', 6, 'https://www.gutenberg.org/ebooks/22046', 'en', 14495), +(39669, 'The Manual of Heraldry; Fifth Edition\nBeing a Concise Description of the Several Terms Used, and Containing a Dictionary of Every Designation in the Science', 'Anonymous', '2005-07-12', 70, 'https://www.gutenberg.org/ebooks/16273', 'en', 9449), +(39670, 'Animal Chums: True Tales about Four-footed Friends', 'McIntosh, Jean', '2015-11-16', 12, 'https://www.gutenberg.org/ebooks/50466', 'en', 651), +(39671, 'The Common Man', 'Reynolds, Mack', '2007-10-25', 56, 'https://www.gutenberg.org/ebooks/23194', 'en', 26), +(39672, 'Familiar Letters of John Adams and His Wife Abigail Adams During the Revolution\nwith a Memoir of Mrs. Adams', 'Adams, Abigail', '2010-10-24', 166, 'https://www.gutenberg.org/ebooks/34123', 'en', 14496), +(39673, 'Richelieu: A Tale of France, v. 3/3', 'James, G. P. R. (George Payne Rainsford)', '2013-11-21', 28, 'https://www.gutenberg.org/ebooks/44254', 'en', 2895), +(39674, 'The Religion of the Samurai\r\nA Study of Zen Philosophy and Discipline in China and Japan', 'Nukariya, Kaiten', '2004-02-01', 254, 'https://www.gutenberg.org/ebooks/5173', 'en', 5037), +(39675, 'Daily Thoughts: selected from the writings of Charles Kingsley by his wife', 'Kingsley, Charles', '2007-02-28', 17, 'https://www.gutenberg.org/ebooks/20711', 'en', 3046), +(39676, 'Lippincott\'s Magazine Of Popular Literature And Science, Old Series, Vol. 36—New Series, Vol. 10, July 1885', 'Various', '2004-12-30', 11, 'https://www.gutenberg.org/ebooks/14524', 'en', 162), +(39677, 'Fer et feu au Soudan, vol. 1 of 2', 'Slatin, Rudolf Carl, Freiherr von', '2016-06-15', 20, 'https://www.gutenberg.org/ebooks/52331', 'fr', 71), +(39678, 'In God\'s Garden: Stories of the Saints for Little Children', 'Steedman, Amy', '2011-07-09', 41, 'https://www.gutenberg.org/ebooks/36674', 'en', 2025), +(39679, 'Lincolniana; Or, The Humors of Uncle Abe', 'Adderup, Andrew', '2014-04-14', 17, 'https://www.gutenberg.org/ebooks/45386', 'en', 2597), +(39680, 'Doctor Izard', 'Green, Anna Katharine', '2018-08-05', 35, 'https://www.gutenberg.org/ebooks/57643', 'en', 128), +(39681, 'Quartet in G, 1st Movement, Pt. 1', NULL, '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10184', 'en', 14497), +(39682, 'The King of Arcadia', 'Lynde, Francis', '2010-07-31', 18, 'https://www.gutenberg.org/ebooks/33306', 'en', 48), +(39683, 'Narcissus, a Twelfe Night Merriment', NULL, '2013-01-05', 10, 'https://www.gutenberg.org/ebooks/41726', 'en', 1088), +(39684, 'Trial and Triumph', 'Harper, Frances Ellen Watkins', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/11056', 'en', 1958), +(39685, 'St. Patrick, the Father of a Sacred Nation', 'Loughlin, James F.', '2018-03-20', 14, 'https://www.gutenberg.org/ebooks/56791', 'en', 4519), +(39686, '周禮', 'Zhou, Gong', '2008-04-30', 11, 'https://www.gutenberg.org/ebooks/25263', 'zh', NULL), +(39687, 'Religion and Art in Ancient Greece', 'Gardner, Ernest Arthur', '2007-02-06', 73, 'https://www.gutenberg.org/ebooks/20523', 'en', 10887), +(39688, 'Index of the Project Gutenberg Works of Stephen Leacock', 'Leacock, Stephen', '2018-12-09', 11, 'https://www.gutenberg.org/ebooks/58439', 'en', 198), +(39689, 'The Art of Soul-Winning', 'Mahood, J. W. (John Wilmot)', '2005-01-17', 12, 'https://www.gutenberg.org/ebooks/14716', 'en', 2437), +(39690, 'Stuifen: Historiallinen kertomus', 'Rack, B. A.', '2010-10-23', 14, 'https://www.gutenberg.org/ebooks/33908', 'fi', 98), +(39691, 'Wanderings in Ireland', 'Shoemaker, Michael Myers', '2013-10-29', 12, 'https://www.gutenberg.org/ebooks/44066', 'en', 117), +(39692, 'Slægten', 'Wied, Gustav', '2011-10-01', 12, 'https://www.gutenberg.org/ebooks/37594', 'da', 6055), +(39693, 'Kilmeny of the Orchard', 'Montgomery, L. M. (Lucy Maud)', '2004-03-01', 130, 'https://www.gutenberg.org/ebooks/5341', 'en', 148), +(39694, 'Photogravure', 'Blaney, Henry R.', '2011-06-17', 23, 'https://www.gutenberg.org/ebooks/36446', 'en', 14498), +(39695, 'Neal, the Miller: A Son of Liberty', 'Otis, James', '2003-07-01', 14, 'https://www.gutenberg.org/ebooks/4293', 'en', 676), +(39696, 'Lays of Ancient Babyland\nto which are added Small Divers Histories not known to the Ancients', 'Fisher, Richard Trott', '2016-05-19', 20, 'https://www.gutenberg.org/ebooks/52103', 'en', 859), +(39697, 'Sigurd Our Golden Collie, and Other Comrades of the Road', 'Bates, Katharine Lee', '2010-07-11', 12, 'https://www.gutenberg.org/ebooks/33134', 'en', 77), +(39698, '宋史', 'Tuotuo', '2008-01-07', 31, 'https://www.gutenberg.org/ebooks/24183', 'zh', 14499), +(39699, 'A Settler\'s 35 Years\' Experience in Victoria, Australia\nAnd how £6 8s. became £8,000', 'Hulme, E. (Edward)', '2018-07-09', 28, 'https://www.gutenberg.org/ebooks/57471', 'en', 14500), +(39700, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 327, August 16, 1828', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11264', 'en', 133), +(39701, 'Space Platform', 'Leinster, Murray', '2008-04-11', 74, 'https://www.gutenberg.org/ebooks/25051', 'en', 2797), +(39702, 'Novum Organum; Or, True Suggestions for the Interpretation of Nature', 'Bacon, Francis', '2014-06-15', 181, 'https://www.gutenberg.org/ebooks/45988', 'en', 14501), +(39703, 'Bruno', 'Dewey, Byrd Spilman', '2012-11-30', 10, 'https://www.gutenberg.org/ebooks/41514', 'en', 2464), +(39704, 'Our National Forests\r\nA Short Popular Account of the Work of the United States Forest Service on the National Forests', 'Boerker, Richard H. D. (Richard Hans Douai)', '2013-03-23', 63, 'https://www.gutenberg.org/ebooks/42391', 'en', 14502), +(39705, 'Publicity Stunt', 'Williams, Robert Moore', '2015-08-24', 26, 'https://www.gutenberg.org/ebooks/49779', 'en', 26), +(39706, 'The Six Fingers of Time', 'Lafferty, R. A.', '2010-03-16', 155, 'https://www.gutenberg.org/ebooks/31663', 'en', 4643), +(39707, 'Sir Joshua Reynolds\r\nA Collection of Fifteen Pictures and a Portrait of the Painter with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2006-08-08', 35, 'https://www.gutenberg.org/ebooks/19009', 'en', 1403), +(39708, 'The Mutable Many: A Novel', 'Barr, Robert', '2017-08-10', 8, 'https://www.gutenberg.org/ebooks/55326', 'en', 48), +(39709, 'The Unfolding Life\r\nA Study of Development with Reference to Religious Training', 'Lamoreaux, Antoinette Abernethy', '2004-09-26', 14, 'https://www.gutenberg.org/ebooks/13533', 'en', 5997), +(39710, 'Life of St. Vincent de Paul', 'Forbes, F. A. (Frances Alice)', '2009-01-05', 29, 'https://www.gutenberg.org/ebooks/27706', 'en', 7068), +(39711, 'The Lumley Autograph', 'Cooper, Susan Fenimore', '2000-05-01', 6, 'https://www.gutenberg.org/ebooks/2164', 'en', 781), +(39712, 'Nevalaiset: Historiallis-romantillinen kertomus Itä-Suomesta', 'Bergman, Johan Albert', '2013-07-18', 3, 'https://www.gutenberg.org/ebooks/43243', 'fi', 61), +(39713, 'Julia And Her Romeo: A Chronicle Of Castle Barfield\nFrom \"Schwartz\" by David Christie Murray', 'Murray, David Christie', '2007-08-08', 65, 'https://www.gutenberg.org/ebooks/22274', 'en', 61), +(39714, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 729, December 15, 1877', 'Various', '2016-04-18', 1, 'https://www.gutenberg.org/ebooks/51786', 'en', 18), +(39715, 'The Grey Cloak', 'MacGrath, Harold', '2005-06-11', 21, 'https://www.gutenberg.org/ebooks/16041', 'en', 98), +(39716, 'Some Notes on Shipbuilding and Shipping in Colonial Virginia', 'Evans, Cerinda W.', '2014-08-30', 23, 'https://www.gutenberg.org/ebooks/46731', 'en', 14503), +(39717, 'Een Reisje door de Republiek Costa-Rica\r\nDe Aarde en haar Volken, 1907', 'Saillard, M.', '2006-11-17', 10, 'https://www.gutenberg.org/ebooks/19835', 'nl', 14504), +(39718, 'The Thirteen', 'Balzac, Honoré de', '2004-09-19', 52, 'https://www.gutenberg.org/ebooks/7416', 'en', 607), +(39719, 'Geographic Range of the Hooded Skunk, Mephitis macroura\nWith Description of a New Subspecies from Mexico', 'Dalquest, Walter Woelber', '2010-11-13', 8, 'https://www.gutenberg.org/ebooks/34311', 'en', 7259), +(39720, 'The Life of St. Declan of Ardmore', NULL, '1997-02-01', 34, 'https://www.gutenberg.org/ebooks/823', 'en', 11514), +(39721, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 08: Convent Affairs', 'Casanova, Giacomo', '2004-12-10', 28, 'https://www.gutenberg.org/ebooks/2958', 'en', 4391), +(39722, 'Só', 'Nobre, António Pereira', '2005-11-30', 95, 'https://www.gutenberg.org/ebooks/17193', 'pt', 1638), +(39723, 'In the Wonderful Land of Hez; or, The Mystery of the Fountain of Youth', 'Shea, Cornelius', '2015-12-09', 9, 'https://www.gutenberg.org/ebooks/50654', 'en', 336), +(39724, 'Slave Narratives: A Folk History of Slavery in the United States From Interviews with Former Slaves: Volume XIV, South Carolina Narratives, Part 3', 'United States. Work Projects Administration', '2011-05-04', 51, 'https://www.gutenberg.org/ebooks/36022', 'en', 14505), +(39725, 'Arminell: A Social Romance, Vol. 2', 'Baring-Gould, S. (Sabine)', '2016-07-12', 10, 'https://www.gutenberg.org/ebooks/52567', 'en', 137), +(39726, 'Expositor\'s Bible: The Gospel of St Luke', 'Burton, Henry', '2012-05-29', 24, 'https://www.gutenberg.org/ebooks/39856', 'en', 14444), +(39727, 'She and I, Volume 1\r\nA Love Story. A Life History.', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 9, 'https://www.gutenberg.org/ebooks/21095', 'en', 48), +(39728, 'Rip Foster Rides the Gray Planet', 'Goodwin, Harold L. (Harold Leland)', '2006-12-20', 49, 'https://www.gutenberg.org/ebooks/20147', 'en', 8146), +(39729, 'Colour Measurement and Mixture', 'Abney, William de Wiveleslie, Sir', '2012-02-26', 9, 'https://www.gutenberg.org/ebooks/38984', 'en', 603), +(39730, 'Autour de la table', 'Sand, George', '2004-12-17', 41, 'https://www.gutenberg.org/ebooks/14372', 'fr', 20), +(39731, 'Les illusions musicales et la vérité sur l\'expression', 'Weber, Johannès', '2013-12-10', 8, 'https://www.gutenberg.org/ebooks/44402', 'fr', 3582), +(39732, 'ΝΕΚΡΟΚΗΔΕΙΑ; Or, the Art of Embalming;\r\nWherein Is Shewn the Right of Burial, and Funeral Ceremonies, Especially That of Preserving Bodies After the Egyptian Method. Together With an Account of the Egyptian Mummies, Pyramids, Subterranean Vaults and Lamps, and Their Opinion of the Metempsychosis, the Cause of Their Embalming. As Also a Geographical Description of Egypt, the Rise and Course of the Nile, the Temper, Constitution and Physic of the Inhabitants, Their Inventions, Arts, Sciences, Stupendous Works and Sepulchres, and Other Curious Observations Any Ways Relating to the Physiology and Knowledge of This Art.', 'Greenhill, Thomas', '2018-09-01', 30, 'https://www.gutenberg.org/ebooks/57829', 'en', 14506), +(39733, 'English Literature for Boys and Girls', 'Marshall, H. E. (Henrietta Elizabeth)', '2004-05-01', 287, 'https://www.gutenberg.org/ebooks/5725', 'en', 1694), +(39734, 'The Life of Marie de Medicis, Queen of France, Consort of Henri IV, and Regent of the Kingdom under Louis XIII — Volume 2', 'Pardoe, Miss (Julia)', '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/11600', 'en', 14507), +(39735, 'Le Tour du Monde; Dauphiné\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-05-11', 14, 'https://www.gutenberg.org/ebooks/25435', 'fr', 1182), +(39736, 'The Introduction of Self-Registering Meteorological Instruments', 'Multhauf, Robert P.', '2010-05-22', 18, 'https://www.gutenberg.org/ebooks/32482', 'en', 8318), +(39737, 'Great Ghost Stories', NULL, '2012-10-24', 95, 'https://www.gutenberg.org/ebooks/41170', 'en', 531), +(39738, 'Lin McLean', 'Wister, Owen', '1998-07-01', 52, 'https://www.gutenberg.org/ebooks/1385', 'en', 8193), +(39739, 'Encyclopaedia Britannica, 11th Edition, \"Bisharin\" to \"Bohea\"\r\nVolume 4, Slice 1', 'Various', '2010-08-27', 44, 'https://www.gutenberg.org/ebooks/33550', 'en', 1081), +(39740, 'Medical Inquiries and Observations, Vol. 3 (of 4)\r\nThe Second Edition, Revised and Enlarged by the Author', 'Rush, Benjamin', '2019-02-27', 6, 'https://www.gutenberg.org/ebooks/58861', 'en', 9499), +(39741, 'The Girl\'s Own Paper, Vol. XX. No. 1001, March 4, 1899', 'Various', '2018-04-21', 7, 'https://www.gutenberg.org/ebooks/57015', 'en', 563), +(39742, 'Der Hodscha Nasreddin I. Band\r\nTürkische, arabische, berberische, maltesische, sizilianische, kalabrische, kroatische, serbische und griechische Märlein und Schwänke', NULL, '2017-05-10', 18, 'https://www.gutenberg.org/ebooks/54690', 'de', 14508), +(39743, 'Is Ulster Right?', 'Anonymous', '2004-08-10', 14, 'https://www.gutenberg.org/ebooks/13157', 'en', 14509), +(39744, 'The Chronicles of a Gay Gordon', 'Gordon, J. M. (Joseph Maria)', '2008-11-29', 21, 'https://www.gutenberg.org/ebooks/27362', 'en', 14510), +(39745, 'Siddhartha', 'Hesse, Hermann', '2001-02-01', 4082, 'https://www.gutenberg.org/ebooks/2500', 'en', 6015), +(39746, 'Strange Stories from a Chinese Studio, Vol. 1 (of 2)', 'Pu, Songling', '2013-09-03', 34, 'https://www.gutenberg.org/ebooks/43627', 'en', 11750), +(39747, 'Where the World is Quiet', 'Kuttner, Henry', '2010-02-07', 49, 'https://www.gutenberg.org/ebooks/31207', 'en', 12592), +(39748, 'Annie Besant: An Autobiography', 'Besant, Annie', '2004-04-01', 69, 'https://www.gutenberg.org/ebooks/12085', 'en', 10998), +(39749, 'Tales of My Native Town', 'D\'Annunzio, Gabriele', '2017-10-13', 24, 'https://www.gutenberg.org/ebooks/55742', 'en', 1058), +(39750, 'The Boss of Wind River', 'Chisholm, A. M. (Arthur Murray)', '2010-12-28', 28, 'https://www.gutenberg.org/ebooks/34775', 'en', 11091), +(39751, 'El libro de las mil noches y una noche; t. 1', 'Anonymous', '2014-11-05', 240, 'https://www.gutenberg.org/ebooks/47287', 'es', 1113), +(39752, 'Tschaikowsky and His Orchestral Music', 'Biancolli, Louis Leopold', '2015-10-16', 14, 'https://www.gutenberg.org/ebooks/50230', 'en', 14511), +(39753, 'Punch, or the London Charivari, Vol. 150, January 19, 1916', 'Various', '2007-09-15', 10, 'https://www.gutenberg.org/ebooks/22610', 'en', 134), +(39754, 'The Mucker', 'Burroughs, Edgar Rice', '2005-09-01', 13, 'https://www.gutenberg.org/ebooks/8806', 'en', 323), +(39755, 'Amor de Perdição: Memorias d\'uma familia', 'Castelo Branco, Camilo', '2005-08-03', 47, 'https://www.gutenberg.org/ebooks/16425', 'pt', 2716), +(39756, 'Annali d\'Italia, vol. 3\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2014-07-22', 19, 'https://www.gutenberg.org/ebooks/46355', 'it', 6107), +(39757, 'Tramping Through Mexico, Guatemala and Honduras\r\nBeing the Random Notes of an Incurable Vagabond', 'Franck, Harry Alverson', '2004-12-01', 26, 'https://www.gutenberg.org/ebooks/7072', 'en', 5053), +(39758, 'Ballads', 'Thackeray, William Makepeace', '2001-07-01', 31, 'https://www.gutenberg.org/ebooks/2732', 'en', 532), +(39759, 'Insomnia; and Other Disorders of Sleep', 'Lyman, Henry M. (Henry Munson)', '2013-08-07', 28, 'https://www.gutenberg.org/ebooks/43415', 'en', 9427), +(39760, 'Collector\'s Item', 'Young, Robert F.', '2009-05-22', 33, 'https://www.gutenberg.org/ebooks/28924', 'en', 179), +(39761, 'The Ethics of Drink and Other Social Questions; Or, Joints In Our Social Armour', 'Runciman, James', '2004-09-03', 18, 'https://www.gutenberg.org/ebooks/13365', 'en', 6241), +(39762, 'Ancient Poems, Ballads, and Songs of the Peasantry of England', NULL, '1996-09-01', 97, 'https://www.gutenberg.org/ebooks/649', 'en', 4582), +(39763, 'Pensieri, Discorsi, Illustrazioni', 'Guerrazzi, Francesco Domenico', '2015-01-06', 10, 'https://www.gutenberg.org/ebooks/47889', 'it', 3942), +(39764, 'Penny of Top Hill Trail', 'Maniates, Belle Kanaris', '2008-11-04', 15, 'https://www.gutenberg.org/ebooks/27150', 'en', 315), +(39765, 'Mémoires sur la vie publique et privée de Fouquet, surintendant des finance et sur son frère l\'abbé Fouquet', NULL, '2008-07-17', 14, 'https://www.gutenberg.org/ebooks/26082', 'fr', 14452), +(39766, 'Postal Riders and Raiders', 'Gantz, W. H.', '2017-09-17', 7, 'https://www.gutenberg.org/ebooks/55570', 'en', 14512), +(39767, 'Poems of Coleridge', 'Coleridge, Samuel Taylor', '2005-06-01', 31, 'https://www.gutenberg.org/ebooks/8208', 'en', 54), +(39768, 'Mammals of Mesa Verde National Park, Colorado', 'Anderson, Sydney', '2010-01-21', 8, 'https://www.gutenberg.org/ebooks/31035', 'en', 14513), +(39769, 'The Hand-Made Gentleman: A Tale of the Battles of Peace', 'Bacheller, Irving', '2015-09-18', 7, 'https://www.gutenberg.org/ebooks/50002', 'en', 8133), +(39770, 'The Great Gray Plague', 'Jones, Raymond F.', '2009-02-18', 43, 'https://www.gutenberg.org/ebooks/28118', 'en', 26), +(39771, 'L\'Illustration, No. 0007, 15 Avril 1843', 'Various', '2010-12-02', 5, 'https://www.gutenberg.org/ebooks/34547', 'fr', 150), +(39772, 'The Lives of the Twelve Caesars, Volume 07: Galba', 'Suetonius', '2004-12-13', 26, 'https://www.gutenberg.org/ebooks/6392', 'en', 1037), +(39773, 'British Royal Proclamations Relating to America, 1603-1783', 'Great Britain. Sovereign', '2014-07-01', 9, 'https://www.gutenberg.org/ebooks/46167', 'en', 14514), +(39774, 'The Radicalism of Shelley and Its Sources', 'MacDonald, Daniel J.', '2011-03-06', 12, 'https://www.gutenberg.org/ebooks/35495', 'en', 14515), +(39775, 'Das Leben und der Tod des Königs Lear', 'Shakespeare, William', '2005-01-01', 55, 'https://www.gutenberg.org/ebooks/7240', 'de', 6808), +(39776, 'Tired Church Members', 'Warner, Anna Bartlett', '2007-08-29', 17, 'https://www.gutenberg.org/ebooks/22422', 'en', 14516), +(39777, 'Nine Unlikely Tales', 'Nesbit, E. (Edith)', '2015-09-09', 164, 'https://www.gutenberg.org/ebooks/49913', 'en', 388), +(39778, 'Chronicles (1 of 6): The Historie of England (7 of 8)\nThe Seventh Boke of the Historie of England', 'Holinshed, Raphael', '2005-08-29', 20, 'https://www.gutenberg.org/ebooks/16617', 'en', 1667), +(39779, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 24', 'Stevenson, Robert Louis', '2010-03-28', 18, 'https://www.gutenberg.org/ebooks/31809', 'en', 1859), +(39780, 'Uncle Sam\'s Boys on Field Duty; or, Winning Corporal\'s Chevrons', 'Hancock, H. Irving (Harrie Irving)', '2016-08-08', 12, 'https://www.gutenberg.org/ebooks/52755', 'en', 3466), +(39781, 'The Aldine, Vol. 5, No. 1., January, 1872\nA Typographic Art Journal', 'Various', '2005-02-17', 52, 'https://www.gutenberg.org/ebooks/15092', 'en', 899), +(39782, 'Three Sioux Scouts', 'Gregor, Elmer Russell', '2011-05-25', 5, 'https://www.gutenberg.org/ebooks/36210', 'en', 11644), +(39783, 'From a Swedish Homestead', 'Lagerlöf, Selma', '2014-01-08', 15, 'https://www.gutenberg.org/ebooks/44630', 'en', 12855), +(39784, 'The Bride of the Nile — Volume 01', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5517', 'en', 803), +(39785, 'Watch Yourself Go By', 'Field, Al. G. (Alfred Griffith)', '2007-01-15', 33, 'https://www.gutenberg.org/ebooks/20375', 'en', 1697), +(39786, 'Plutarch\'s Lives, Volume 3 (of 4)', 'Plutarch', '2004-11-24', 192, 'https://www.gutenberg.org/ebooks/14140', 'en', 2310), +(39787, 'Melmoth the Wanderer, Vol. 3 (of 4)', 'Maturin, Charles Robert', '2016-12-07', 28, 'https://www.gutenberg.org/ebooks/53687', 'en', 428), +(39788, 'Fredericksburg and Its Many Points of Interest', 'Kishpaugh, Robert A.', '2012-03-25', 19, 'https://www.gutenberg.org/ebooks/39258', 'en', 14517), +(39789, 'Piccole storie del mondo grande', 'Panzini, Alfredo', '2012-11-10', 16, 'https://www.gutenberg.org/ebooks/41342', 'it', 61), +(39790, 'The Youth\'s Coronal', 'Gould, Hannah Flagg', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11432', 'en', 859), +(39791, 'Witness to the Deed', 'Fenn, George Manville', '2008-05-26', 18, 'https://www.gutenberg.org/ebooks/25607', 'en', 401), +(39792, '平妖傳', 'Feng, Menglong', '2018-05-28', 40, 'https://www.gutenberg.org/ebooks/57227', 'zh', 5698), +(39793, 'The Testimony of Tradition', 'MacRitchie, David', '2012-07-21', 19, 'https://www.gutenberg.org/ebooks/40290', 'en', 4205), +(39794, 'The Adventures of Elizabeth in Rügen', 'Von Arnim, Elizabeth', '2010-09-19', 29, 'https://www.gutenberg.org/ebooks/33762', 'en', 14518), +(39795, 'In the Wilderness', 'Hichens, Robert', '2006-04-13', 33, 'https://www.gutenberg.org/ebooks/4603', 'en', 847), +(39796, 'The Open Boat and Other Stories', 'Crane, Stephen', '2014-04-28', 203, 'https://www.gutenberg.org/ebooks/45524', 'en', 112), +(39797, 'Maxims and Opinions of Field-Marshal His Grace the Duke of Wellington, Selected From His Writings and Speeches During a Public Life of More Than Half a Century', 'Wellington, Arthur Wellesley, Duke of', '2005-03-04', 30, 'https://www.gutenberg.org/ebooks/15254', 'en', 10346), +(39798, 'Dissertatio medica inauguralis de ictero', 'Macoubrey, William', '2016-07-17', 4, 'https://www.gutenberg.org/ebooks/52593', 'la', 14494), +(39799, 'Under the Chilian Flag: A Tale of War between Chili and Peru', 'Collingwood, Harry', '2007-04-13', 6, 'https://www.gutenberg.org/ebooks/21061', 'en', 14274), +(39800, 'Anielka I', 'Sienkiewicz, Henryk', '2016-11-03', 19, 'https://www.gutenberg.org/ebooks/53441', 'fi', 1316), +(39801, 'Rahan orja', 'Leino, Eino', '2004-12-20', 18, 'https://www.gutenberg.org/ebooks/14386', 'fi', 61), +(39802, 'Phil Bradley\'s Snow-shoe Trail; Or, The Mountain Boys in the Canada Wilds', 'Boone, Silas K.', '2012-02-25', 9, 'https://www.gutenberg.org/ebooks/38970', 'en', 176), +(39803, 'The Demands of Rome\r\nHer Own Story of Thirty-One Years as a Sister of Charity in the Order of the Sisters of Charity of Providence of the Roman Catholic Church', 'Schoffen, Elizabeth', '2011-08-16', 12, 'https://www.gutenberg.org/ebooks/37104', 'en', 14519), +(39804, 'Flowers of the Sky', 'Proctor, Richard A. (Richard Anthony)', '2017-12-06', 33, 'https://www.gutenberg.org/ebooks/56133', 'en', 1683), +(39805, 'The Twelve Months of the Year, with a Picture for each Month.\r\nAdapted to Northern Latitudes', 'Unknown', '2010-05-21', 12, 'https://www.gutenberg.org/ebooks/32476', 'en', 10784), +(39806, 'Hubbell Trading Post National Historic Site: Junior Ranger Workbook', 'United States. National Park Service', '2019-07-19', 78, 'https://www.gutenberg.org/ebooks/59947', 'en', 14520), +(39807, 'Whither Thou Goest', 'Le Queux, William', '2012-10-25', 5, 'https://www.gutenberg.org/ebooks/41184', 'en', 14521), +(39808, 'Yule Logs: Longmans\' Christmas Annual for 1898', NULL, '2012-06-22', 65, 'https://www.gutenberg.org/ebooks/40056', 'en', 323), +(39809, 'Bombers\' Training, and Application of Same in Trench Warfare', 'Ferris, J. R., Lieutenant', '2019-02-15', 19, 'https://www.gutenberg.org/ebooks/58895', 'en', 950), +(39810, 'Astoria; Or, Anecdotes of an Enterprise Beyond the Rocky Mountains', 'Irving, Washington', '2006-02-19', 87, 'https://www.gutenberg.org/ebooks/1371', 'en', 13473), +(39811, 'Cricket at the Seashore', 'Timlow, Elizabeth Weston', '2008-02-04', 18, 'https://www.gutenberg.org/ebooks/24513', 'en', 82), +(39812, 'Outlines of Lessons in Botany, Part I; from Seed to Leaf\r\nFor the Use of Teachers, or Mothers Studying with Their Children', 'Newell, Jane H. (Jane Hancox)', '2004-01-01', 78, 'https://www.gutenberg.org/ebooks/10726', 'en', 14522), +(39813, 'Chinese Poems', NULL, '2011-11-06', 94, 'https://www.gutenberg.org/ebooks/37938', 'en', 2822), +(39814, 'The History of the Reign of Ferdinand and Isabella the Catholic — Volume 3', 'Prescott, William Hickling', '2004-11-01', 22, 'https://www.gutenberg.org/ebooks/6968', 'en', 14523), +(39815, 'Mother Goose\'s Bicycle Tour', 'Bonnell, M. A.', '2017-05-05', 13, 'https://www.gutenberg.org/ebooks/54664', 'en', 14524), +(39816, 'Proud Signild, and Other Ballads', NULL, '2008-12-03', 17, 'https://www.gutenberg.org/ebooks/27396', 'en', 4390), +(39817, 'The Adductor Muscles of the Jaw In Some Primitive Reptiles', 'Fox, Richard C.', '2009-10-24', 17, 'https://www.gutenberg.org/ebooks/30321', 'en', 14525), +(39818, 'The Colonies, 1492-1750', 'Thwaites, Reuben Gold', '2013-05-12', 33, 'https://www.gutenberg.org/ebooks/42701', 'en', 2649), +(39819, 'On Books and the Housing of Them', 'Gladstone, W. E. (William Ewart)', '2002-09-01', 33, 'https://www.gutenberg.org/ebooks/3426', 'en', 14526), +(39820, 'Cavanagh, Forest Ranger: A Romance of the Mountain West', 'Garland, Hamlin', '2008-08-09', 51, 'https://www.gutenberg.org/ebooks/26244', 'en', 14527), +(39821, 'The Torch Bearer\nA Look Forward and Back at the Woman\'s Journal, the Organ of the\nWoman\'s Movement', 'Ryan, Agnes E.', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/12071', 'en', 14528), +(39822, 'Music Notation and Terminology', 'Gehrkens, Karl Wilson', '2006-10-08', 333, 'https://www.gutenberg.org/ebooks/19499', 'en', 13110), +(39823, 'Athens: Its Rise and Fall, Book IV', 'Lytton, Edward Bulwer Lytton, Baron', '2006-10-20', 6, 'https://www.gutenberg.org/ebooks/6154', 'en', 6138), +(39824, 'An Australian Bird Book: A Pocket Book for Field Use', 'Leach, John Albert', '2010-12-29', 32, 'https://www.gutenberg.org/ebooks/34781', 'en', 14529), +(39825, 'The New York Obelisk: Cleopatra\'s Needle\r\nWith a Preliminary Sketch of the History, Erection, Uses, and Signification of Obelisks', 'Moldenke, Charles E.', '2014-11-03', 49, 'https://www.gutenberg.org/ebooks/47273', 'en', 14530), +(39826, 'Os meus amores: contos e balladas', 'Coelho, Trindade', '2006-01-12', 10, 'https://www.gutenberg.org/ebooks/17503', 'pt', 6307), +(39827, 'The Garden of Bright Waters\r\nOne Hundred and Twenty Asiatic Love Poems', NULL, '2006-02-01', 29, 'https://www.gutenberg.org/ebooks/9920', 'en', 14531), +(39828, 'The Dew of Their Youth', 'Crockett, S. R. (Samuel Rutherford)', '2007-12-04', 14, 'https://www.gutenberg.org/ebooks/23736', 'en', 61), +(39829, 'Maailman kannel', NULL, '2016-02-27', 9, 'https://www.gutenberg.org/ebooks/51316', 'fi', 14532), +(39830, 'Life of Her Most Gracious Majesty the Queen — Volume 2', 'Tytler, Sarah', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/7086', 'en', 7002), +(39831, 'Unlucky: A Fragment of a Girl\'s Life', 'Austin, Caroline', '2011-03-22', 31, 'https://www.gutenberg.org/ebooks/35653', 'en', 378), +(39832, 'The One-Way Trail: A story of the cattle country', 'Cullum, Ridgwell', '2009-09-27', 27, 'https://www.gutenberg.org/ebooks/30113', 'en', 774), +(39833, 'Under the Law', 'Babcock, Edwina Stanton', '2015-01-18', 18, 'https://www.gutenberg.org/ebooks/48009', 'en', 348); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(39834, 'Punch, or the London Charivari, Volume 100, June 6, 1891', 'Various', '2004-09-07', 9, 'https://www.gutenberg.org/ebooks/13391', 'en', 134), +(39835, 'De l\'amour', 'Baudelaire, Charles', '2017-03-29', 66, 'https://www.gutenberg.org/ebooks/54456', 'fr', 5136), +(39836, 'Physiology and Hygiene for Secondary Schools', 'Walters, Francis M. (Francis Marion)', '2005-11-15', 35, 'https://www.gutenberg.org/ebooks/18779', 'en', 3536), +(39837, 'Birds from Coahuila, Mexico', 'Urban, Emil K.', '2008-07-17', 23, 'https://www.gutenberg.org/ebooks/26076', 'en', 14533), +(39838, 'The Manufacture of Chocolate and other Cacao Preparations', 'Zipperer, Paul', '2017-09-19', 25, 'https://www.gutenberg.org/ebooks/55584', 'en', 8024), +(39839, 'Round the Block: An American Novel', 'Bouton, John Bell', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12243', 'en', 257), +(39840, 'Narcissus', 'Scott, Evelyn', '2013-04-14', 7, 'https://www.gutenberg.org/ebooks/42533', 'en', 61), +(39841, 'Une courte histoire de l\'eBook', 'Lebert, Marie', '2009-08-26', 21, 'https://www.gutenberg.org/ebooks/29802', 'fr', 2047), +(39842, 'Pole Baker: A Novel', 'Harben, Will N. (Will Nathaniel)', '2016-05-01', 13, 'https://www.gutenberg.org/ebooks/51918', 'en', 8079), +(39843, 'An Exhortation to Peace and Unity', 'Bunyan, John', '2003-01-01', 35, 'https://www.gutenberg.org/ebooks/3614', 'en', 1130), +(39844, 'The Nigger Of The \"Narcissus\": A Tale Of The Forecastle', 'Conrad, Joseph', '2006-02-09', 196, 'https://www.gutenberg.org/ebooks/17731', 'en', 2478), +(39845, 'The Story of Nelson\nalso \"The Grateful Indian\", \"The Boatswain\'s Son\"', 'Kingston, William Henry Giles', '2007-11-16', 18, 'https://www.gutenberg.org/ebooks/23504', 'en', 7346), +(39846, 'Sport in the Crimea and Caucasus', 'Phillipps-Wolley, Clive', '2015-04-30', 6, 'https://www.gutenberg.org/ebooks/48835', 'en', 14534), +(39847, 'The Principles of Aesthetics', 'Parker, De Witt H. (De Witt Henry)', '2004-08-01', 78, 'https://www.gutenberg.org/ebooks/6366', 'en', 2250), +(39848, 'Trionfi di donna (novelle)', 'Panzini, Alfredo', '2014-10-04', 12, 'https://www.gutenberg.org/ebooks/47041', 'it', 892), +(39849, 'The New Tenant', 'Oppenheim, E. Phillips (Edward Phillips)', '2009-02-04', 33, 'https://www.gutenberg.org/ebooks/27998', 'en', 128), +(39850, 'Avioelämää 1: Kaksitoista kertomusta avioelämästä', 'Strindberg, August', '2014-07-05', 8, 'https://www.gutenberg.org/ebooks/46193', 'fi', 4836), +(39851, 'A Short History of the World', 'Wells, H. G. (Herbert George)', '2011-03-02', 859, 'https://www.gutenberg.org/ebooks/35461', 'en', 346), +(39852, 'Klassillinen kirjallisuus yleistajuisesti esitettynä', 'Grey, Henry', '2016-02-04', 8, 'https://www.gutenberg.org/ebooks/51124', 'fi', 14535), +(39853, 'La Vuelta de Martín Fierro', 'Hernández, José', '2005-02-15', 46, 'https://www.gutenberg.org/ebooks/15066', 'es', 7711), +(39854, 'Through Connemara in a governess cart', 'Somerville, E. Oe. (Edith Oenone)', '2019-04-25', 9, 'https://www.gutenberg.org/ebooks/59349', 'en', 14536), +(39855, 'The Swedish-Norwegian Union Crisis\nA History with Documents', 'Nordlund, Karl', '2007-04-29', 4, 'https://www.gutenberg.org/ebooks/21253', 'en', 14537), +(39856, 'Evan Harrington — Volume 5', 'Meredith, George', '2003-09-01', 7, 'https://www.gutenberg.org/ebooks/4431', 'en', 6153), +(39857, 'The Life of Our Lord in Simple Language for Little Children', 'Anonymous', '2014-05-22', 14, 'https://www.gutenberg.org/ebooks/45716', 'en', 7179), +(39858, 'Wilson\'s Tales of the Borders and of Scotland, Volume 21', NULL, '2011-09-08', 7, 'https://www.gutenberg.org/ebooks/37336', 'en', 3672), +(39859, 'The Village by the River', 'Bedford, H. Louisa', '2007-01-16', 11, 'https://www.gutenberg.org/ebooks/20381', 'en', 1902), +(39860, 'The Mercer Boys on a Treasure Hunt', 'Wyckoff, Capwell', '2016-12-06', 13, 'https://www.gutenberg.org/ebooks/53673', 'en', 10255), +(39861, 'Essays on the Materialistic Conception of History', 'Labriola, Antonio', '2010-06-01', 22, 'https://www.gutenberg.org/ebooks/32644', 'en', 254), +(39862, 'Hacia una Moral sin Dogmas: Lecciones sobre Emerson y el Eticismo', 'Ingenieros, José', '2018-01-04', 16, 'https://www.gutenberg.org/ebooks/56301', 'es', 14538), +(39863, 'Operation Haystack', 'Herbert, Frank', '2008-03-01', 106, 'https://www.gutenberg.org/ebooks/24721', 'en', 2797), +(39864, 'De jongere generatie\r\ngesprekken met vertegenwoordigers van de nieuwere richting in onze\r\nliteratuur; tevens een enquête naar enkele beginselen in ons nationaal\r\ngeestelijk leven', 'D\'Oliveira, E. (Elias)', '2003-12-01', 16, 'https://www.gutenberg.org/ebooks/10514', 'nl', 14539), +(39865, 'Regiment of Women', 'Dane, Clemence', '2012-07-17', 65, 'https://www.gutenberg.org/ebooks/40264', 'en', 14540), +(39866, 'Cicero\'s Tusculan Disputations\nAlso, Treatises On The Nature Of The Gods, And On The Commonwealth', 'Cicero, Marcus Tullius', '2005-02-09', 346, 'https://www.gutenberg.org/ebooks/14988', 'en', 14541), +(39867, 'Manuscrit de 1814, trouvé dans les voitures impériales prises à Waterloo, contenant l\'histoire des six derniers mois du règne de Napoléon', 'Fain, Agathon-Jean-François, baron', '2010-09-22', 66, 'https://www.gutenberg.org/ebooks/33796', 'fr', 1770), +(39868, 'Notes on Life & Letters', 'Conrad, Joseph', '1997-12-01', 73, 'https://www.gutenberg.org/ebooks/1143', 'en', 2156), +(39869, 'Life and sport in China\nSecond Edition', 'Ready, Oliver George', '2008-08-24', 25, 'https://www.gutenberg.org/ebooks/26412', 'en', 3304), +(39870, 'Escenas Montañesas', 'Pereda, José María de', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12627', 'es', 5089), +(39871, 'An Examination of President Edwards\' Inquiry into the Freedom of the Will', 'Bledsoe, Albert Taylor', '2011-04-12', 5, 'https://www.gutenberg.org/ebooks/35839', 'en', 14542), +(39872, 'The Nursery, August 1881, Vol. XXX\nA Monthly Magazine for Youngest Readers', 'Various', '2013-02-22', 15, 'https://www.gutenberg.org/ebooks/42157', 'en', 4641), +(39873, 'O Livro de Cesario Verde', 'Verde, Cesário', '2005-08-01', 27, 'https://www.gutenberg.org/ebooks/8698', 'pt', 1638), +(39874, 'The Jerusalem Sinner Saved; or, Good News for the Vilest of Men', 'Bunyan, John', '2002-06-01', 20, 'https://www.gutenberg.org/ebooks/3270', 'en', 9231), +(39875, 'Told in the Coffee House: Turkish Tales', 'Adler, Cyrus', '2009-12-02', 69, 'https://www.gutenberg.org/ebooks/30577', 'en', 14543), +(39876, 'Meissonier', 'Barbusse, Henri', '2013-07-03', 72, 'https://www.gutenberg.org/ebooks/43085', 'en', 14544), +(39877, 'Graham\'s Magazine, Vol. XXXVII, No. 5, November 1850', 'Various', '2017-01-20', 9, 'https://www.gutenberg.org/ebooks/54032', 'en', 162), +(39878, 'Les assiègés de Compiègne, 1430', 'Robida, Albert', '2011-01-19', 47, 'https://www.gutenberg.org/ebooks/35005', 'fr', 14545), +(39879, 'Talks To Teachers On Psychology; And To Students On Some Of Life\'s Ideals', 'James, William', '2005-07-13', 316, 'https://www.gutenberg.org/ebooks/16287', 'en', 1947), +(39880, 'Fun for the Household: A Book of Games', 'Gray, Emma J.', '2016-03-24', 21, 'https://www.gutenberg.org/ebooks/51540', 'en', 1415), +(39881, 'Historia de Gil Blas de Santillana: Novela (Vol 1 de 3)', 'Le Sage, Alain René', '2015-11-19', 14, 'https://www.gutenberg.org/ebooks/50492', 'es', 1211), +(39882, 'The Runaway Skyscraper', 'Leinster, Murray', '2005-12-19', 91, 'https://www.gutenberg.org/ebooks/17355', 'en', 26), +(39883, 'Solomon\'s Orbit', 'Carroll, William', '2007-10-24', 51, 'https://www.gutenberg.org/ebooks/23160', 'en', 26), +(39884, 'Kertomuksia historiasta ja elämästä : lapsille ja nuorisolle', 'Various', '2009-04-22', 27, 'https://www.gutenberg.org/ebooks/28588', 'fi', 8676), +(39885, 'Life of Harriet Beecher Stowe\r\nCompiled From Her Letters and Journals by Her Son Charles Edward Stowe', 'Stowe, Harriet Beecher', '2004-10-01', 77, 'https://www.gutenberg.org/ebooks/6702', 'en', 14546), +(39886, 'The Shakespeare Myth', 'Durning-Lawrence, Edwin, Sir', '2014-11-22', 14, 'https://www.gutenberg.org/ebooks/47425', 'en', 8322), +(39887, 'Miss Minerva and William Green Hill', 'Calhoun, Frances Boyd', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/5187', 'en', 6156), +(39888, 'Poems of London, and Other Verses', 'Presland, John', '2011-10-13', 18, 'https://www.gutenberg.org/ebooks/37752', 'en', 8), +(39889, 'Cölestine, oder der eheliche Verdacht; Erster Theil (von 2)', 'Chownitz, Julian', '2016-10-05', 9, 'https://www.gutenberg.org/ebooks/53217', 'de', 61), +(39890, 'What Answer?', 'Dickinson, Anna E. (Anna Elizabeth)', '2005-03-18', 26, 'https://www.gutenberg.org/ebooks/15402', 'en', 1958), +(39891, 'The Dictator', 'McCarthy, Justin', '2007-05-28', 39, 'https://www.gutenberg.org/ebooks/21637', 'en', 1238), +(39892, 'The Future of the Colored Race in America\r\nBeing an article in the Presbyterian quarterly review of July, 1862', 'Aikman, William', '2003-05-01', 21, 'https://www.gutenberg.org/ebooks/4055', 'en', 180), +(39893, 'Californie', 'Dillon, Guillaume Patrice', '2011-07-09', 4, 'https://www.gutenberg.org/ebooks/36680', 'nl', 1623), +(39894, 'Road Scrapings: Coaches and Coaching', 'Haworth, M. E. (Martin E.)', '2014-04-13', 10, 'https://www.gutenberg.org/ebooks/45372', 'en', 8170), +(39895, 'A Boy\'s Voyage Round the World', 'Smiles, Samuel', '2008-01-17', 24, 'https://www.gutenberg.org/ebooks/24345', 'en', 819), +(39896, 'Stars and Stripes Forever', NULL, '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10170', 'en', 7932), +(39897, 'Over the Border: A Novel', 'Whitaker, Herman', '2012-08-27', 141, 'https://www.gutenberg.org/ebooks/40600', 'en', 315), +(39898, 'Twelfth Night; Or, What You Will', 'Shakespeare, William', '1998-11-01', 158, 'https://www.gutenberg.org/ebooks/1527', 'en', 14547), +(39899, 'A Captive of the Roman Eagles', 'Dahn, Felix', '2010-05-02', 21, 'https://www.gutenberg.org/ebooks/32220', 'en', 7853), +(39900, 'History of the United Netherlands, 1597-98', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4869', 'en', 3372), +(39901, 'The Bashful Earthquake, & Other Fables and Verses', 'Herford, Oliver', '2018-03-18', 22, 'https://www.gutenberg.org/ebooks/56765', 'en', 7712), +(39902, '狂人日記', 'Lu, Xun', '2008-05-02', 30, 'https://www.gutenberg.org/ebooks/25297', 'zh', 3224), +(39903, 'Die menschliche Familie nach ihrer Entstehung und natürlichen Entwickelung', 'Hellwald, Friedrich von', '2016-09-10', 11, 'https://www.gutenberg.org/ebooks/53025', 'de', 14548), +(39904, 'Plays of Old Japan: The \'No\'', NULL, '2013-11-02', 32, 'https://www.gutenberg.org/ebooks/44092', 'en', 14549), +(39905, 'Punch, or the London Charivari, Vol. 105, September 9, 1893', 'Various', '2011-09-29', 5, 'https://www.gutenberg.org/ebooks/37560', 'en', 134), +(39906, 'Abbeychurch; Or, Self-Control and Self-Conceit', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-07-01', 32, 'https://www.gutenberg.org/ebooks/4267', 'en', 137), +(39907, 'The Prodigal Father', 'Clouston, J. Storer (Joseph Storer)', '2008-06-25', 22, 'https://www.gutenberg.org/ebooks/25899', 'en', 2389), +(39908, 'On Your Mark! A Story of College Life and Athletics', 'Barbour, Ralph Henry', '2014-03-15', 24, 'https://www.gutenberg.org/ebooks/45140', 'en', 5503), +(39909, 'Polly Oliver\'s Problem', 'Wiggin, Kate Douglas Smith', '2005-04-15', 29, 'https://www.gutenberg.org/ebooks/15630', 'en', 13558), +(39910, 'The Loss of the Royal George', 'Kingston, William Henry Giles', '2007-05-09', 6, 'https://www.gutenberg.org/ebooks/21405', 'en', 1447), +(39911, 'Miss Hildreth: A Novel, Volume 2', 'Stevens, Augusta de Grasse', '2012-08-07', 13, 'https://www.gutenberg.org/ebooks/40432', 'en', 61), +(39912, 'The First Governess of the Netherlands, Margaret of Austria', 'Tremayne, Eleanor E.', '2012-01-08', 9, 'https://www.gutenberg.org/ebooks/38528', 'en', 14550), +(39913, 'The Coil of Carne', 'Oxenham, John', '2016-12-28', 13, 'https://www.gutenberg.org/ebooks/53819', 'en', 95), +(39914, 'Eugenie Grandet', 'Balzac, Honoré de', '2004-09-18', 154, 'https://www.gutenberg.org/ebooks/1715', 'en', 607), +(39915, 'The Right Knock\nA Story', 'Van-Anderson, Helen', '2008-01-05', 11, 'https://www.gutenberg.org/ebooks/24177', 'en', 8601), +(39916, 'The Velvet Glove', 'Merriman, Henry Seton', '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/10342', 'en', 3426), +(39917, 'Index for Works of Andrew Barton \'Banjo\' Paterson\nHyperlinks to all Chapters of all Individual Ebooks', 'Paterson, A. B. (Andrew Barton)', '2018-07-11', 6, 'https://www.gutenberg.org/ebooks/57485', 'en', 198), +(39918, 'The Life and Times of Alfred the Great\nBeing the Ford lectures for 1901', 'Plummer, Charles', '2018-02-13', 15, 'https://www.gutenberg.org/ebooks/56557', 'en', 14551), +(39919, 'Emilie the Peacemaker', 'Geldart, Thomas, Mrs.', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11290', 'en', 14552), +(39920, 'A Narrative of the Shipwreck, Captivity and Sufferings of Horace Holden and Benj. H. Nute\r\nWho were cast away in the American ship Mentor, on the Pelew Islands, in the year 1832; and for two years afterwards were subjected to unheard of sufferings among the barbarous inhabitants of Lord North\'s island', 'Holden, Horace', '2010-04-16', 25, 'https://www.gutenberg.org/ebooks/32012', 'en', 14553), +(39921, 'The Breath of the Gods', 'McCall, Sidney', '2013-03-18', 17, 'https://www.gutenberg.org/ebooks/42365', 'en', 775), +(39922, 'The Enchanted Canyon', 'Morrow, Honoré', '2005-10-16', 11, 'https://www.gutenberg.org/ebooks/16889', 'en', 315), +(39923, 'The Shepherd of Salisbury Plain, and Other Tales', 'More, Hannah', '2010-03-18', 38, 'https://www.gutenberg.org/ebooks/31697', 'en', 658), +(39924, 'The Hispanic Nations of the New World: A Chronicle of Our Southern Neighbors', 'Shepherd, William R. (William Robert)', '2002-01-01', 40, 'https://www.gutenberg.org/ebooks/3042', 'en', 5505), +(39925, 'Minnie\'s Pet Horse', 'Leslie, Madeline', '2008-09-14', 35, 'https://www.gutenberg.org/ebooks/26620', 'en', 1096), +(39926, 'Byways Around San Francisco Bay', 'Hutchinson, William E.', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12415', 'en', 14554), +(39927, 'Odysseia', 'Homer', '2017-02-19', 25, 'https://www.gutenberg.org/ebooks/54200', 'sv', 2905), +(39928, 'History of the Reformation in Europe in the Time of Calvin, Vol. 4 (of 8)', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2019-08-01', 270, 'https://www.gutenberg.org/ebooks/60035', 'en', 827), +(39929, 'Calamities and Quarrels of Authors', 'Disraeli, Isaac', '2009-12-23', 33, 'https://www.gutenberg.org/ebooks/30745', 'en', 14555), +(39930, 'Poems in Wartime\r\nPart 4 From Volume III of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 8, 'https://www.gutenberg.org/ebooks/9578', 'en', 3255), +(39931, 'Isabella von Ägypten: Kaiser Karl des Fünften erste Jugendliebe', 'Arnim, Ludwig Achim, Freiherr von', '2000-05-01', 26, 'https://www.gutenberg.org/ebooks/2190', 'de', 2392), +(39932, 'Views and Reviews: Essays in appreciation: Literature', 'Henley, William Ernest', '2007-08-08', 31, 'https://www.gutenberg.org/ebooks/22280', 'en', 1694), +(39933, 'The Flockmaster of Poison Creek', 'Ogden, George W. (George Washington)', '2009-08-11', 22, 'https://www.gutenberg.org/ebooks/29668', 'en', 315), +(39934, 'The Brighton Boys in the Argonne Forest', 'Driscoll, James R.', '2016-04-16', 8, 'https://www.gutenberg.org/ebooks/51772', 'en', 146), +(39935, 'Cathedral Cities of England\n60 reproductions from original water-colours', 'Collins, W. W. (William Wiehe)', '2011-02-11', 12, 'https://www.gutenberg.org/ebooks/35237', 'en', 776), +(39936, 'The Gospel of Mark for Readers', NULL, '2004-09-01', 26, 'https://www.gutenberg.org/ebooks/6530', 'en', 3278), +(39937, 'Hardy Perennials and Old Fashioned Flowers\r\nDescribing the Most Desirable Plants, for Borders, Rockeries, and Shrubberies.', 'Wood, J. G. (John George)', '2006-07-26', 56, 'https://www.gutenberg.org/ebooks/18913', 'en', 10004), +(39938, 'Edinburgh Under Sir Walter Scott', 'Fyfe, W. T.', '2014-12-09', 19, 'https://www.gutenberg.org/ebooks/47617', 'en', 11559), +(39939, 'Scientific American Supplement, No. 633, February 18, 1888', 'Various', '2005-11-27', 15, 'https://www.gutenberg.org/ebooks/17167', 'en', 210), +(39940, 'Comical People', NULL, '2007-11-06', 28, 'https://www.gutenberg.org/ebooks/23352', 'en', 625), +(39941, 'Beyond the Frontier: A Romance of Early Days in the Middle West', 'Parrish, Randall', '2009-10-24', 25, 'https://www.gutenberg.org/ebooks/30319', 'en', 2358), +(39942, 'Letters from Spain', 'White, Joseph Blanco', '2015-02-08', 14, 'https://www.gutenberg.org/ebooks/48203', 'en', 1514), +(39943, 'The Bobbsey Twins at the Seashore', 'Hope, Laura Lee', '2004-11-01', 47, 'https://www.gutenberg.org/ebooks/6950', 'en', 2266), +(39944, 'Abraham Lincoln\r\nAn Horatian Ode', 'Stoddard, Richard Henry', '2006-06-13', 11, 'https://www.gutenberg.org/ebooks/18573', 'en', 3770), +(39945, 'The Life of Kit Carson: Hunter, Trapper, Guide, Indian Agent and Colonel U.S.A.', 'Ellis, Edward Sylvester', '2005-04-01', 43, 'https://www.gutenberg.org/ebooks/7882', 'en', 4523), +(39946, 'Legal Status of Women in Iowa', 'Wilson, Jennie L. (Jennie Lansley)', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/12049', 'en', 14556), +(39947, 'The Migration of Birds', 'Coward, T. A. (Thomas Alfred)', '2013-05-19', 7, 'https://www.gutenberg.org/ebooks/42739', 'en', 14557), +(39948, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 265, July 21, 1827', 'Various', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9918', 'en', 133), +(39949, 'The Story of Mankind', 'Van Loon, Hendrik Willem', '2014-07-24', 88, 'https://www.gutenberg.org/ebooks/46399', 'en', 346), +(39950, 'Life in the Roman World of Nero and St. Paul', 'Tucker, T. G. (Thomas George)', '2004-07-10', 9, 'https://www.gutenberg.org/ebooks/12875', 'en', 4198), +(39951, 'Presentation Pieces in the Museum of History and Technology\nContributions from the Museum of History and Technology, Paper No. 47 [Smithsonian Institution]', 'Klapthor, Margaret Brown', '2009-06-25', 21, 'https://www.gutenberg.org/ebooks/29234', 'en', 12782), +(39952, 'Modern Billiards\nA Complete Text-Book of the Game, Containing Plain and Practical Instructions How to Play and Acquire Skill at This Scientific Amusement', 'Garno, Benjamin', '2019-03-28', 13, 'https://www.gutenberg.org/ebooks/59143', 'en', 14558), +(39953, 'Haudankaivajan kertomuksia', 'Gummerus, K. J. (Kaarle Jaakko)', '2013-02-03', 4, 'https://www.gutenberg.org/ebooks/41980', 'fi', 456), +(39954, 'The Adventures of Dick Maitland: A Tale of Unknown Africa', 'Collingwood, Harry', '2007-04-13', 27, 'https://www.gutenberg.org/ebooks/21059', 'en', 1023), +(39955, 'Christmas on the Briny, The Innocents Abroad\nOr, A Holiday Trip to the Abrolhos Islands', 'Christie, W. Bede (William Bede)', '2018-04-07', 4, 'https://www.gutenberg.org/ebooks/56937', 'en', 14559), +(39956, 'Instigations\nTogether with An Essay on the Chinese Written Character', 'Pound, Ezra', '2012-09-24', 77, 'https://www.gutenberg.org/ebooks/40852', 'en', 14560), +(39957, 'The Honorable Miss Moonlight', 'Eaton, Winnifred', '2018-10-13', 19, 'https://www.gutenberg.org/ebooks/58091', 'en', 14561), +(39958, 'Four Years a Scout and Spy\r\n\"General Bunker\", One of Lieut. General Grant\'s Most Daring and Successful Scouts, Being a Narrative of ... the Experience of Corporal Ruggles During Four Years\' Service as a Scout and Spy for the Federal Army', 'Downs, E. C. (Edward C.)', '2012-02-21', 15, 'https://www.gutenberg.org/ebooks/38948', 'en', 14562), +(39959, 'Don Gordon\'s Shooting-Box', 'Castlemon, Harry', '2016-11-08', 9, 'https://www.gutenberg.org/ebooks/53479', 'en', 195), +(39960, 'King Arthur and His Knights', 'Warren, Maude Radford', '2007-06-19', 112, 'https://www.gutenberg.org/ebooks/21865', 'en', 14563), +(39961, 'Passeggiate per l\'Italia, vol. 3', 'Gregorovius, Ferdinand', '2011-11-01', 21, 'https://www.gutenberg.org/ebooks/37900', 'it', 1896), +(39962, 'Vidyāpati: Bangīya padābali; songs of the love of Rādhā and Krishna', 'Vidyāpati Thākura, active 15th century', '2011-11-30', 34, 'https://www.gutenberg.org/ebooks/38174', 'en', 14564), +(39963, 'Russia', 'Wallace, Donald Mackenzie', '2006-05-03', 39, 'https://www.gutenberg.org/ebooks/1349', 'en', 14565), +(39964, 'The Ordeal of Richard Feverel — Volume 4', 'Meredith, George', '2003-09-01', 13, 'https://www.gutenberg.org/ebooks/4409', 'en', 378), +(39965, 'The Girl\'s Own Paper, Vol. XX. No. 1011, May 13, 1899', 'Various', '2019-05-11', 25, 'https://www.gutenberg.org/ebooks/59371', 'en', 563), +(39966, 'Home Entertaining: Amusements for Every One', 'Chenery, William Eastman', '2016-08-14', 11, 'https://www.gutenberg.org/ebooks/52799', 'en', 1415), +(39967, 'Scaramouche: A Romance of the French Revolution', 'Sabatini, Rafael', '1999-11-01', 250, 'https://www.gutenberg.org/ebooks/1947', 'en', 48), +(39968, 'Pumps and Hydraulics, Part 1 (of 2)', 'Hawkins, N. (Nehemiah)', '2018-01-08', 31, 'https://www.gutenberg.org/ebooks/56339', 'en', 7113), +(39969, 'Afterwhiles', 'Riley, James Whitcomb', '2005-05-19', 8, 'https://www.gutenberg.org/ebooks/15862', 'en', 8), +(39970, 'The Great House', 'Weyman, Stanley John', '2012-03-28', 7, 'https://www.gutenberg.org/ebooks/39294', 'en', 1380), +(39971, 'Sunday-School Success\nA Book of Practical Methods for Sunday-School Teachers and Officers', 'Wells, Amos R. (Amos Russel)', '2011-12-19', 5, 'https://www.gutenberg.org/ebooks/38346', 'en', 2149), +(39972, 'Amateur Fish Culture', 'Walker, Charles Edward', '2008-02-29', 22, 'https://www.gutenberg.org/ebooks/24719', 'en', 14566), +(39973, 'Introduction to Infinitesimal Analysis; Functions of One Real Variable', 'Lennes, N. J. (Nels Johann)', '2006-03-07', 56, 'https://www.gutenberg.org/ebooks/18741', 'en', 2460), +(39974, 'The Atomic Bombings of Hiroshima and Nagasaki', 'United States. Army. Corps of Engineers. Manhattan District', '1996-10-01', 126, 'https://www.gutenberg.org/ebooks/685', 'en', 14567), +(39975, 'Longhead: The Story of the First Fire', 'Robinson, C. H. (Charles Henry)', '2015-01-01', 10, 'https://www.gutenberg.org/ebooks/47845', 'en', 1381), +(39976, 'A Doctor of the Old School — Volume 2', 'Maclaren, Ian', '2004-08-09', 12, 'https://www.gutenberg.org/ebooks/9316', 'en', 1563), +(39977, 'Journal of Entomology and Zoology, Vol. 06, No. 4, December 1914', 'Various', '2015-01-20', 15, 'https://www.gutenberg.org/ebooks/48031', 'en', 3176), +(39978, 'The Old Soak, and Hail And Farewell', 'Marquis, Don', '2016-05-01', 45, 'https://www.gutenberg.org/ebooks/51920', 'en', 190), +(39979, 'Storia d\'Inghilterra, vol 2', 'Macaulay, Thomas Babington Macaulay, Baron', '2014-09-29', 12, 'https://www.gutenberg.org/ebooks/46997', 'it', 1953), +(39980, 'Fighting For Peace', 'Van Dyke, Henry', '2006-11-01', 14, 'https://www.gutenberg.org/ebooks/19693', 'en', 449), +(39981, 'Zwei Jahre in New-York\r\nSchilderung einer Seereise von Havre nach New-York und Charakteristik des New-Yorker politischen und socialen Lebens', 'Vetter, Christoph', '2014-10-09', 7, 'https://www.gutenberg.org/ebooks/47079', 'de', 14568), +(39982, 'La philosophie sociale dans le theatre d\'Ibsen', 'Lourié, Ossip', '2006-02-07', 9, 'https://www.gutenberg.org/ebooks/17709', 'fr', 3503), +(39983, 'Cours familier de Littérature - Volume 04', 'Lamartine, Alphonse de', '2010-01-10', 7, 'https://www.gutenberg.org/ebooks/30917', 'fr', 1765), +(39984, 'Die Dichtungen von Georg Trakl\nErste Gesamtausgabe', 'Trakl, Georg', '2009-05-30', 48, 'https://www.gutenberg.org/ebooks/29006', 'de', 7281), +(39985, '海上花列傳', 'Han, Bangqing', '2008-10-11', 71, 'https://www.gutenberg.org/ebooks/26872', 'zh', 1003), +(39986, 'The Strange Story of Harper\'s Ferry, with Legends of the Surrounding Country', 'Barry, Joseph', '2011-03-02', 38, 'https://www.gutenberg.org/ebooks/35459', 'en', 14569), +(39987, 'Das Exemplar', 'Kolb, Annette', '2013-11-27', 6, 'https://www.gutenberg.org/ebooks/44298', 'de', 549), +(39988, 'A Ride to India across Persia and Baluchistán', 'De Windt, Harry', '2004-02-01', 47, 'https://www.gutenberg.org/ebooks/10974', 'en', 14570), +(39989, 'The South American Tour', 'Peck, Annie S. (Annie Smith)', '2019-06-09', 45, 'https://www.gutenberg.org/ebooks/59715', 'en', 227), +(39990, 'A History of Wood-Engraving', 'Woodberry, George Edward', '2012-09-01', 17, 'https://www.gutenberg.org/ebooks/40638', 'en', 7949), +(39991, 'The Tides and Kindred Phenomena in the Solar System\r\nThe Substance of Lectures Delivered in 1897 at the Lowell Institute, Boston, Massachusetts', 'Darwin, George Howard, Sir', '2012-01-31', 19, 'https://www.gutenberg.org/ebooks/38722', 'en', 10171), +(39992, 'The Institutes of Justinian', NULL, '2004-06-01', 105, 'https://www.gutenberg.org/ebooks/5983', 'en', 14571), +(39993, 'The Merry Adventures of Robin Hood', 'Pyle, Howard', '2003-11-01', 279, 'https://www.gutenberg.org/ebooks/10148', 'en', 8307), +(39994, 'History of the United Netherlands, 1587a', 'Motley, John Lothrop', '2004-01-01', 15, 'https://www.gutenberg.org/ebooks/4851', 'en', 3372), +(39995, 'Beknopte handleiding voor eigenaars van kleine tuinen', 'Witte, Henrick', '2010-05-02', 7, 'https://www.gutenberg.org/ebooks/32218', 'nl', 8600), +(39996, 'Harper\'s Young People, October 18, 1881\nAn Illustrated Weekly', 'Various', '2015-08-03', 3, 'https://www.gutenberg.org/ebooks/49587', 'en', 479), +(39997, 'The Sky Pilot: A Tale of the Foothills', 'Connor, Ralph', '2006-05-30', 37, 'https://www.gutenberg.org/ebooks/3248', 'en', 55), +(39998, '\'O voto: Scene popolari napoletane in tre atti', 'Di Giacomo, Salvatore', '2011-04-09', 11, 'https://www.gutenberg.org/ebooks/35801', 'it', 407), +(39999, 'With Our Soldiers in France', 'Eddy, Sherwood', '2006-05-06', 34, 'https://www.gutenberg.org/ebooks/18325', 'en', 12270), +(40000, 'Alice, or the Mysteries — Book 10', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 70, 'https://www.gutenberg.org/ebooks/9772', 'en', 137), +(40001, 'Sara Crewe: or, What Happened at Miss Minchin\'s Boarding School', 'Burnett, Frances Hodgson', '2007-12-01', 15, 'https://www.gutenberg.org/ebooks/23964', 'en', 1779), +(40002, 'Ten Years and Ten Months in Lunatic Asylums in Different States', 'Swan, Moses', '2015-03-10', 28, 'https://www.gutenberg.org/ebooks/48455', 'en', 14572), +(40003, 'The Motor Scout: A Story of Adventure in South America', 'Strang, Herbert', '2013-06-15', 12, 'https://www.gutenberg.org/ebooks/42953', 'en', 323), +(40004, 'The House Under the Sea: A Romance', 'Pemberton, Max', '2009-07-20', 17, 'https://www.gutenberg.org/ebooks/29462', 'en', 1391), +(40005, 'The Progress of the Women\'s Suffrage Movement\r\nPresidential Address to the Cambridge Branch of the C. & U. W. F. A. at the Annual Meeting on May 23rd, 1913', 'Sidgwick, Eleanor Mildred', '2016-03-27', 5, 'https://www.gutenberg.org/ebooks/51578', 'en', 4223), +(40006, 'The Trial of Peter Zenger', NULL, '2017-06-03', 15, 'https://www.gutenberg.org/ebooks/54836', 'en', 14573), +(40007, 'Souvenirs de Madame Louise-Élisabeth Vigée-Lebrun, Tome troisième', 'Vigée-Lebrun, Louise-Elisabeth', '2007-10-24', 13, 'https://www.gutenberg.org/ebooks/23158', 'fr', 2134), +(40008, 'The Mediaeval Mind (Volume 2 of 2)\r\nA History of the Development of Thought and Emotion in the Middle Ages', 'Taylor, Henry Osborn', '2013-10-04', 66, 'https://www.gutenberg.org/ebooks/43881', 'en', 6026), +(40009, 'Minnie\'s Pet Monkey', 'Leslie, Madeline', '2008-09-14', 11, 'https://www.gutenberg.org/ebooks/26618', 'en', 10682), +(40010, 'The King in Yellow', 'Chambers, Robert W. (Robert William)', '2005-07-01', 1485, 'https://www.gutenberg.org/ebooks/8492', 'en', 359), +(40011, 'Le chasseur noir', 'Chevalier, H. Emile (Henri Emile)', '2006-03-10', 14, 'https://www.gutenberg.org/ebooks/17963', 'fr', 65), +(40012, 'The Book of Snobs', 'Thackeray, William Makepeace', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9540', 'en', 3453), +(40013, 'Cid: 5-näytöksinen näytelmä', 'Corneille, Pierre', '2015-04-08', 19, 'https://www.gutenberg.org/ebooks/48667', 'fi', 9323), +(40014, 'The Irish Penny Journal, Vol. 1 No. 14, October 3, 1840', 'Various', '2017-02-26', 4, 'https://www.gutenberg.org/ebooks/54238', 'en', 81), +(40015, 'Georges Guynemer: Knight of the Air', 'Bordeaux, Henry', '2006-04-04', 6, 'https://www.gutenberg.org/ebooks/18117', 'en', 14574), +(40016, 'The Greater Power', 'Bindloss, Harold', '2009-08-09', 25, 'https://www.gutenberg.org/ebooks/29650', 'en', 4874), +(40017, 'Memoirs of Jean François Paul de Gondi, Cardinal de Retz — Complete', 'Retz, Jean François Paul de Gondi de', '2004-08-24', 55, 'https://www.gutenberg.org/ebooks/3846', 'en', 1247), +(40018, 'My Uncle Florimond', 'Harland, Henry', '2015-12-15', 9, 'https://www.gutenberg.org/ebooks/50698', 'en', 3334), +(40019, 'A Spirit in Prison', 'Hichens, Robert', '2001-12-01', 8, 'https://www.gutenberg.org/ebooks/2994', 'en', 9472), +(40020, 'Legend Land, Volume 1 & 2', 'Barham, G. Basil (George Basil)', '2009-05-01', 5, 'https://www.gutenberg.org/ebooks/28782', 'en', 14575), +(40021, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 2, the Protevanglion', 'Wake, William', '2004-09-01', 14, 'https://www.gutenberg.org/ebooks/6508', 'en', 7966), +(40022, 'The Sun King', 'Derreaux, Gaston', '2008-04-01', 42, 'https://www.gutenberg.org/ebooks/24973', 'en', 179), +(40023, 'A Catalogue of Sculpture in the Department of Greek and Roman Antiquities, British Museum, Volume 1 (of 2)', 'Smith, A. H. (Arthur Hamilton)', '2011-09-28', 27, 'https://www.gutenberg.org/ebooks/37558', 'en', 14576), +(40024, 'In the Days of Poor Richard', 'Bacheller, Irving', '2005-04-12', 28, 'https://www.gutenberg.org/ebooks/15608', 'en', 1293), +(40025, 'Szirmay Ilona: Történeti regény', 'Gaal, József', '2010-06-14', 11, 'https://www.gutenberg.org/ebooks/32816', 'hu', 61), +(40026, 'Children of the Arctic', 'Peary, Josephine Diebitsch', '2019-05-17', 30, 'https://www.gutenberg.org/ebooks/59527', 'en', 3401), +(40027, 'Red as a Rose is She: A Novel', 'Broughton, Rhoda', '2014-03-20', 17, 'https://www.gutenberg.org/ebooks/45178', 'en', 7828), +(40028, 'The Autobiography of Parley Parker Pratt\r\nOne of the Twelve Apostles of the Church of Jesus Christ of Latter-Day Saints, Embracing His Life, Ministry, and Travels', 'Pratt, Parley P. (Parley Parker)', '2014-02-13', 52, 'https://www.gutenberg.org/ebooks/44896', 'en', 14577), +(40029, 'Julius, the Street Boy; or, Out West', 'Alger, Horatio, Jr.', '2016-12-28', 30, 'https://www.gutenberg.org/ebooks/53821', 'en', 11578), +(40030, 'Discipline', 'Brunton, Mary', '2012-01-06', 26, 'https://www.gutenberg.org/ebooks/38510', 'en', 4288), +(40031, 'Elsie Yachting with the Raymonds', 'Finley, Martha', '2014-06-12', 27, 'https://www.gutenberg.org/ebooks/45944', 'en', 3621), +(40032, 'At the Point of the Bayonet: A Tale of the Mahratta War', 'Henty, G. A. (George Alfred)', '2007-03-03', 90, 'https://www.gutenberg.org/ebooks/20729', 'en', 14578), +(40033, 'An Irish Cousin; vol. 1/2', 'Somerville, E. Oe. (Edith Oenone)', '2019-01-06', 3, 'https://www.gutenberg.org/ebooks/58633', 'en', 669), +(40034, 'Lady John Russell: A Memoir with Selections from Her Diaries and Correspondence', NULL, '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/10980', 'en', 14579), +(40035, 'U.S. Copyright Renewals, 1975 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11852', 'en', 4170), +(40036, 'The Angel in the House', 'Patmore, Coventry', '2003-05-01', 118, 'https://www.gutenberg.org/ebooks/4099', 'en', 14580), +(40037, 'Twenty-Two Goblins. Translated from the Sanskrit', NULL, '2016-06-11', 21, 'https://www.gutenberg.org/ebooks/52309', 'en', 10047), +(40038, 'Blue-Bird Weather', 'Chambers, Robert W. (Robert William)', '2008-01-21', 25, 'https://www.gutenberg.org/ebooks/24389', 'en', 176), +(40039, 'Bound to Rise; Or, Up the Ladder', 'Alger, Horatio, Jr.', '2004-06-01', 79, 'https://www.gutenberg.org/ebooks/5977', 'en', 658), +(40040, 'Burlesques', 'Bateman, H. M. (Henry Mayo)', '2012-05-03', 13, 'https://www.gutenberg.org/ebooks/39604', 'en', 2965), +(40041, 'The Widow\'s Dog', 'Mitford, Mary Russell', '2007-10-02', 17, 'https://www.gutenberg.org/ebooks/22842', 'en', 13723), +(40042, 'Un enfant, t. 1/3', 'Desprez, Ernest', '2015-08-02', 10, 'https://www.gutenberg.org/ebooks/49573', 'fr', 298), +(40043, 'The Fallen Star, or, the History of a False Religion by E.L. Bulwer; And, A Dissertation on the Origin of Evil by Lord Brougham', 'Brougham and Vaux, Henry Brougham, Baron', '2005-08-01', 16, 'https://www.gutenberg.org/ebooks/8654', 'en', 1191), +(40044, 'The Shunned House', 'Lovecraft, H. P. (Howard Phillips)', '2010-03-02', 614, 'https://www.gutenberg.org/ebooks/31469', 'en', 7072), +(40045, 'The Great Round World and What Is Going On In It, Vol. 2, No. 5, February 3, 1898\nA Weekly Magazine for Boys and Girls', 'Various', '2006-09-07', 15, 'https://www.gutenberg.org/ebooks/19203', 'en', 1), +(40046, 'The Call of the Wild', 'London, Jack', '2008-07-02', 1808, 'https://www.gutenberg.org/ebooks/215', 'en', 14581), +(40047, 'Shandygaff\r\nA number of most agreeable Inquirendoes upon Life & Letters, interspersed with Short Stories & Skits, the whole most Diverting to the Reader', 'Morley, Christopher', '2004-10-13', 30, 'https://www.gutenberg.org/ebooks/13739', 'en', 179), +(40048, 'The Ranch Girls and Their Great Adventure', 'Vandercook, Margaret', '2011-01-12', 6, 'https://www.gutenberg.org/ebooks/34927', 'en', 1655), +(40049, 'Love\'s Shadow', 'Leverson, Ada', '2006-01-01', 23, 'https://www.gutenberg.org/ebooks/9786', 'en', 12817), +(40050, 'Moor Fires', 'Young, E. H. (Emily Hilda)', '2007-12-24', 12, 'https://www.gutenberg.org/ebooks/23990', 'en', 847), +(40051, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 10 of 12)', 'Frazer, James George', '2013-06-27', 43, 'https://www.gutenberg.org/ebooks/43049', 'en', 5685), +(40052, 'Christopher Columbus and His Monument Columbia\r\nbeing a concordance of choice tributes to the great Genoese, his grand discovery, and his greatness of mind and purpose', NULL, '2009-07-23', 20, 'https://www.gutenberg.org/ebooks/29496', 'en', 2036), +(40053, 'Social Life in Old Virginia Before the War', 'Page, Thomas Nelson', '2017-11-08', 19, 'https://www.gutenberg.org/ebooks/55910', 'en', 6508), +(40054, 'Tribulat Bonhomet', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2005-12-26', 16, 'https://www.gutenberg.org/ebooks/17399', 'fr', 642), +(40055, 'The Boy Chums in the Florida Jungle\nor, Charlie West and Walter Hazard with the Seminole Indians', 'Ely, Wilmer M. (Wilmer Mateo)', '2013-10-03', 5, 'https://www.gutenberg.org/ebooks/43875', 'en', 14582), +(40056, 'Say and Seal, Volume I', 'Warner, Susan', '2009-04-08', 75, 'https://www.gutenberg.org/ebooks/28544', 'en', 3606), +(40057, 'A Treatise on Adulterations of Food, and Culinary Poisons\r\nExhibiting the Fraudulent Sophistications of Bread, Beer, Wine, Spiritous Liquors, Tea, Coffee, Cream, Confectionery, Vinegar, Mustard, Pepper, Cheese, Olive Oil, Pickles, and Other Articles Employed in Domestic Economy', 'Accum, Friedrich Christian', '2006-08-12', 110, 'https://www.gutenberg.org/ebooks/19031', 'en', 9964), +(40058, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 716\nSeptember 15, 1877', 'Various', '2015-08-20', 8, 'https://www.gutenberg.org/ebooks/49741', 'en', 18), +(40059, 'Musa Pedestris - Three Centuries of Canting Songs and Slang Rhymes [1536 - 1896]', 'Farmer, John Stephen', '2005-07-01', 10, 'https://www.gutenberg.org/ebooks/8466', 'en', 14583), +(40060, 'Arthur\r\nA Short Sketch of His Life and History in English Verse of the First Half of the Fifteenth Century', NULL, '2005-10-10', 32, 'https://www.gutenberg.org/ebooks/16845', 'en', 11889), +(40061, 'Contribution to Passamaquoddy Folk-Lore', 'Fewkes, Jesse Walter', '2006-03-15', 23, 'https://www.gutenberg.org/ebooks/17997', 'en', 12660), +(40062, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 9 - (T - U - V - Y - Z)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 14, 'https://www.gutenberg.org/ebooks/30789', 'fr', 1352), +(40063, 'Notes on Railroad Accidents', 'Adams, Charles Francis', '2015-04-12', 8, 'https://www.gutenberg.org/ebooks/48693', 'en', 14584), +(40064, 'Memoirs of Joseph Grimaldi', 'Grimaldi, Joseph', '2014-08-28', 24, 'https://www.gutenberg.org/ebooks/46709', 'en', 14585), +(40065, 'Some Old Time Beauties\nAfter Portraits by the English Masters, with Embellishment and Comment', 'Willing, Thomson', '2005-06-16', 35, 'https://www.gutenberg.org/ebooks/16079', 'en', 4289), +(40066, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 10: under the Leads', 'Casanova, Giacomo', '2004-12-11', 15, 'https://www.gutenberg.org/ebooks/2960', 'en', 4164), +(40067, 'Stuyvesant: A Franconia Story', 'Abbott, Jacob', '2009-05-12', 35, 'https://www.gutenberg.org/ebooks/28776', 'en', 1123), +(40068, 'I Run with the Fox', 'Gould, Mona', '2010-11-15', 8, 'https://www.gutenberg.org/ebooks/34329', 'en', 28), +(40069, 'Girl Scouts: Their Works, Ways and Plays', 'Unknown', '2008-04-04', 12, 'https://www.gutenberg.org/ebooks/24987', 'en', 5166), +(40070, 'A Modern Chronicle — Volume 06', 'Churchill, Winston', '2004-10-19', 11, 'https://www.gutenberg.org/ebooks/5379', 'en', 5957), +(40071, 'The Home Life of Poe', 'Weiss, Susan Archer Talley', '2010-10-13', 6, 'https://www.gutenberg.org/ebooks/33930', 'en', 14586), +(40072, 'Erämaan kultaa', 'Grey, Zane', '2018-12-02', 10, 'https://www.gutenberg.org/ebooks/58401', 'fi', 315), +(40073, 'Stray Studies from England and Italy', 'Greene, John Richard', '2008-06-20', 20, 'https://www.gutenberg.org/ebooks/25855', 'en', 1896), +(40074, 'Linda Carlton, Air Pilot', 'Lavell, Edith', '2014-02-09', 9, 'https://www.gutenberg.org/ebooks/44862', 'en', 4484), +(40075, 'Le Whip-Poor-Will, ou, les pionniers de l\'Orégon', 'Bouis, Amédée', '2018-07-07', 32, 'https://www.gutenberg.org/ebooks/57449', 'fr', 14587), +(40076, 'The Wonderful Garden; or, The Three Cs', 'Nesbit, E. (Edith)', '2016-08-28', 44, 'https://www.gutenberg.org/ebooks/52907', 'en', 31), +(40077, 'L\'Illustration, No. 0036, 4 Novembre 1843', 'Various', '2012-04-12', 8, 'https://www.gutenberg.org/ebooks/39436', 'fr', 150), +(40078, 'Vääpeli Lemminkäisen päiväkirja\nSuomen kaartin retkestä Konstantinopolin muurien edustalle\nvuosina 1877-1878', 'Anonymous', '2008-04-14', 11, 'https://www.gutenberg.org/ebooks/25069', 'fi', 14588), +(40079, 'Poems and Tales from Romania', 'Sumanaru, Simona', '2001-03-01', 19, 'https://www.gutenberg.org/ebooks/2538', 'en', 61), +(40080, 'The Chums of Scranton High\r\nOr, Hugh Morgan\'s Uphill Fight', 'Ferguson, Donald', '2006-06-14', 14, 'https://www.gutenberg.org/ebooks/18587', 'en', 6620), +(40081, 'The Love Affairs of a Bibliomaniac', 'Field, Eugene', '1996-02-01', 90, 'https://www.gutenberg.org/ebooks/443', 'en', 4118), +(40082, 'To His Coy Mistress', 'Marvell, Andrew', '2008-08-01', 10, 'https://www.gutenberg.org/ebooks/26288', 'en', 54), +(40083, 'La vraye suitte du Cid\nTragi-comédie représentée par la troupe royale', 'Desfontaines, Nicolas-Marc', '2006-10-03', 11, 'https://www.gutenberg.org/ebooks/19455', 'fr', 5737), +(40084, 'Passages from the English Notebooks, Volume 1.', 'Hawthorne, Nathaniel', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7876', 'en', 4126), +(40085, 'Dalziels\' Illustrated Goldsmith', 'Goldsmith, Oliver', '2015-06-29', 39, 'https://www.gutenberg.org/ebooks/49325', 'en', 3429), +(40086, 'The Bible, King James version, Book 2: Exodus', 'Anonymous', '2005-04-01', 40, 'https://www.gutenberg.org/ebooks/8002', 'en', 9393), +(40087, 'La Bataille', 'Farrère, Claude', '2015-10-14', 21, 'https://www.gutenberg.org/ebooks/50208', 'fr', 11475), +(40088, 'Atheism in Pagan Antiquity', 'Drachmann, A. B. (Anders Björn)', '2009-03-11', 44, 'https://www.gutenberg.org/ebooks/28312', 'en', 3787), +(40089, 'Celsissimus: Salzburger Roman', 'Achleitner, Arthur', '2004-11-04', 39, 'https://www.gutenberg.org/ebooks/13953', 'de', 14589), +(40090, 'Cumner\'s Son and Other South Sea Folk — Volume 04', 'Parker, Gilbert', '2004-07-01', 28, 'https://www.gutenberg.org/ebooks/6198', 'en', 108), +(40091, 'Mrs. Budlong\'s Christmas Presents', 'Hughes, Rupert', '2004-07-11', 26, 'https://www.gutenberg.org/ebooks/12881', 'en', 585), +(40092, 'New-Yorker Staats-Zeitung, 16. Oktober 1915\nVol. I. No. 34.', 'Unknown', '2007-09-16', 51, 'https://www.gutenberg.org/ebooks/22628', 'de', 14590), +(40093, 'Sword and crozier, drama in five acts', 'Indriði Einarsson', '2005-03-09', 9, 'https://www.gutenberg.org/ebooks/15298', 'en', 11288), +(40094, 'Veronese', 'Crastre, François', '2013-02-03', 8, 'https://www.gutenberg.org/ebooks/41974', 'en', 14591), +(40095, 'A Character of the Province of Maryland\r\nDescribed in four distinct parts; also a small Treatise on the Wild and Naked Indians (or Susquehanokes) of Maryland, their customs, manners, absurdities, and religion; together with a collection of historical letters.', 'Alsop, George', '2018-08-30', 11, 'https://www.gutenberg.org/ebooks/57811', 'en', 14592), +(40096, 'Tell el Amarna and the Bible', 'Pfeiffer, Charles F.', '2018-10-10', 14, 'https://www.gutenberg.org/ebooks/58065', 'en', 14593), +(40097, 'Ecce Homo! Or, A Critical Inquiry into the History of Jesus of Nazareth\r\nBeing a Rational Analysis of the Gospels', 'Holbach, Paul Henri Thiry, baron d\'', '2012-03-04', 21, 'https://www.gutenberg.org/ebooks/39052', 'en', 14594), +(40098, 'Lancashire Folk-lore\r\nIllustrative of the Superstitious Beliefs and Practices, Local Customs and Usages of the People of the County Palatine', 'Wilkinson, Thomas Turner', '2012-10-23', 24, 'https://www.gutenberg.org/ebooks/41148', 'en', 14595), +(40099, 'The Brand of Silence\nA Detective Story', 'Strong, Harrington', '2007-06-21', 84, 'https://www.gutenberg.org/ebooks/21891', 'en', 128), +(40100, 'Punch, or the London Charivari, Volume 153, July 18, 1917', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11638', 'en', 134), +(40101, 'Le barbier de Séville; ou, la précaution inutile', 'Beaumarchais, Pierre Augustin Caron de', '2011-07-23', 60, 'https://www.gutenberg.org/ebooks/36826', 'fr', 5508), +(40102, 'Mark Twain: Tri Ceteraj Noveloj', 'Twain, Mark', '2007-03-30', 20, 'https://www.gutenberg.org/ebooks/20943', 'eo', 179), +(40103, 'Medical Inquiries and Observations, Vol. 1 (of 4)\r\nThe Second Edition, Revised and Enlarged by the Author', 'Rush, Benjamin', '2019-02-26', 16, 'https://www.gutenberg.org/ebooks/58859', 'en', 4490), +(40104, 'An American at Oxford', 'Corbin, John', '2011-12-01', 16, 'https://www.gutenberg.org/ebooks/38180', 'en', 8827), +(40105, 'History of the War Between Mexico and the United States, with a Preliminary View of its Origin, Volume 1', 'Mayer, Brantz', '2010-08-29', 12, 'https://www.gutenberg.org/ebooks/33568', 'en', 291), +(40106, 'The Eulogy of Richard Jefferies', 'Besant, Walter', '2011-05-26', 15, 'https://www.gutenberg.org/ebooks/36228', 'en', 14596), +(40107, 'The Street of Precious Pearls', 'Waln, Nora', '2019-04-28', 16, 'https://www.gutenberg.org/ebooks/59385', 'en', 6262), +(40108, 'Murillo', 'Knackfuss, H. (Hermann)', '2018-11-09', 7, 'https://www.gutenberg.org/ebooks/58257', 'de', 14597), +(40109, 'Omhoog in het luchtruim! Praatje over het luchtvaartvraagstuk\r\nDe Aarde en haar Volken, 1908', 'Uildriks, Frederike J. van', '2004-11-27', 3, 'https://www.gutenberg.org/ebooks/14178', 'nl', 9440), +(40110, 'The Bābur-nāma in English (Memoirs of Bābur)', 'Babur, Emperor of Hindustan', '2014-01-07', 97, 'https://www.gutenberg.org/ebooks/44608', 'en', 14598), +(40111, 'The Story of the Great Fire in St. John, N.B., June 20th, 1877', 'Stewart, George', '2012-03-25', 22, 'https://www.gutenberg.org/ebooks/39260', 'en', 14599), +(40112, 'Five Months at Anzac\r\nA Narrative of Personal Experiences of the Officer Commanding the 4th Field Ambulance, Australian Imperial Force', 'Beeston, Joseph Lievesley', '2005-05-24', 58, 'https://www.gutenberg.org/ebooks/15896', 'en', 14600), +(40113, 'The Ordeal of Colonel Johns', 'Smith, George H. (George Henry)', '2010-06-04', 27, 'https://www.gutenberg.org/ebooks/32688', 'en', 179), +(40114, 'La Barraca', 'Blasco Ibáñez, Vicente', '2005-02-07', 51, 'https://www.gutenberg.org/ebooks/14944', 'es', 14601), +(40115, 'Phil, the Fiddler', 'Alger, Horatio, Jr.', '2006-03-18', 82, 'https://www.gutenberg.org/ebooks/671', 'en', 14602), +(40116, 'The Faith Doctor: A Story of New York', 'Eggleston, Edward', '2008-11-06', 26, 'https://www.gutenberg.org/ebooks/27168', 'en', 1660), +(40117, 'Pagine sparse', 'De Amicis, Edmondo', '2015-12-31', 14, 'https://www.gutenberg.org/ebooks/50806', 'it', 1544), +(40118, 'The Boy Scouts and the Prize Pennant', 'Shaler, Robert', '2015-06-02', 8, 'https://www.gutenberg.org/ebooks/49117', 'en', 14603), +(40119, 'The World English Bible (WEB): Leviticus', 'Anonymous', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8230', 'en', 14604), +(40120, 'Astrology: How to Make and Read Your Own Horoscope', 'Sepharial', '2014-09-25', 132, 'https://www.gutenberg.org/ebooks/46963', 'en', 14605), +(40121, 'An Essay on the Influence of Tobacco upon Life and Health', 'Mussey, R. D. (Reuben Dimond)', '2006-10-30', 14, 'https://www.gutenberg.org/ebooks/19667', 'en', 9560), +(40122, 'Fifty Years of Freedom\r\nwith matters of vital importance to both the white and colored people of the United States', 'Grimké, Francis J. (Francis James)', '2017-09-14', 9, 'https://www.gutenberg.org/ebooks/55548', 'en', 180), +(40123, 'Handbook of The New York Public Library', 'New York Public Library', '2009-01-31', 25, 'https://www.gutenberg.org/ebooks/27954', 'en', 14606), +(40124, 'Eene Egyptische Koningsdochter\r\nHistorische Roman van George Ebers', 'Ebers, Georg', '2009-02-19', 11, 'https://www.gutenberg.org/ebooks/28120', 'nl', 1802), +(40125, 'Marcy, the Refugee', 'Castlemon, Harry', '2010-03-30', 13, 'https://www.gutenberg.org/ebooks/31831', 'en', 491), +(40126, '梁公九諫', 'Unknown', '2008-10-12', 21, 'https://www.gutenberg.org/ebooks/26886', 'zh', NULL), +(40127, 'Horace', 'Martin, Theodore, Sir', '2005-01-01', 7, 'https://www.gutenberg.org/ebooks/7278', 'en', 14607), +(40128, 'Voyage musical en Allemagne et en Italie, II', 'Berlioz, Hector', '2011-09-29', 21, 'https://www.gutenberg.org/ebooks/37567', 'fr', 14608), +(40129, 'L\'Illustration, No. 0056, 23 Mars 1844', 'Various', '2013-11-02', 2, 'https://www.gutenberg.org/ebooks/44095', 'fr', 150), +(40130, 'First Steps to Bell Ringing\r\nBeing an Introduction to the Healthful and Pleasant Exercise of Bell Ringing in Rounds and Changes upon Church Bells', 'Goslin, Samuel B.', '2016-09-10', 7, 'https://www.gutenberg.org/ebooks/53022', 'en', 14609), +(40131, 'Our Sailors: Gallant Deeds of the British Navy during Victoria\'s Reign', 'Kingston, William Henry Giles', '2007-05-09', 20, 'https://www.gutenberg.org/ebooks/21402', 'en', 11348), +(40132, 'Härkmanin pojat\nHistoriallinen novelli isonvihan ajoilta', 'Elfving, Betty', '2005-04-17', 4, 'https://www.gutenberg.org/ebooks/15637', 'fi', 98), +(40133, 'A Concise History and Directory of the City of Norwich for 1811', 'Berry, Christopher', '2010-06-15', 10, 'https://www.gutenberg.org/ebooks/32829', 'en', 11324), +(40134, 'The Theory of Stock Exchange Speculation', 'Crump, Arthur', '2019-05-16', 29, 'https://www.gutenberg.org/ebooks/59518', 'en', 14610), +(40135, 'Éjszaka', 'Bródy, Sándor', '2014-03-15', 9, 'https://www.gutenberg.org/ebooks/45147', 'hu', 189), +(40136, 'Andersonville: A Story of Rebel Military Prisons — Volume 4', 'McElroy, John', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/4260', 'en', 2363), +(40137, 'Domestic Manners of the Americans', 'Trollope, Frances Milton', '2003-11-01', 98, 'https://www.gutenberg.org/ebooks/10345', 'en', 455), +(40138, 'The Picture Gallery Explored\r\nOr, an account of various ancient customs and manners: interspersed with anecdotes and biographical sketches of eminent persons', 'Unknown', '2018-07-10', 11, 'https://www.gutenberg.org/ebooks/57482', 'en', 8676), +(40139, '常言道', NULL, '2008-01-05', 19, 'https://www.gutenberg.org/ebooks/24170', 'zh', 5867), +(40140, 'The Rescue: A Romance of the Shallows', 'Conrad, Joseph', '2006-01-09', 50, 'https://www.gutenberg.org/ebooks/1712', 'en', 14611), +(40141, 'Plato and the Other Companions of Sokrates, 3rd ed. Volume 1', 'Grote, George', '2012-08-07', 41, 'https://www.gutenberg.org/ebooks/40435', 'en', 2286), +(40142, 'A Historic Sketch, Lest We Forget Company \"E,\" 26th Ohio Infantry in the War for the Union, 1861-65', 'Kelly, Walden', '2010-04-16', 7, 'https://www.gutenberg.org/ebooks/32015', 'en', 14612), +(40143, 'The Popol Vuh: The Mythic and Heroic Sagas of the Kichés of Central America', 'Spence, Lewis', '2018-02-11', 48, 'https://www.gutenberg.org/ebooks/56550', 'en', 7519), +(40144, 'Travels through the Empire of Morocco', 'Buffa, John', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11297', 'en', 6762), +(40145, 'The Atlantic Monthly, Volume 11, No. 63, January, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12412', 'en', 1227), +(40146, 'The Island House: A Tale for the Young Folks', 'Holmes, F. M. (Frederic Morell)', '2008-09-15', 15, 'https://www.gutenberg.org/ebooks/26627', 'en', 3774), +(40147, 'Notes and Queries, Number 239, May 27, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-03-18', 14, 'https://www.gutenberg.org/ebooks/31690', 'en', 105), +(40148, 'The Last Chronicle of Barset', 'Trollope, Anthony', '2002-01-01', 134, 'https://www.gutenberg.org/ebooks/3045', 'en', 45), +(40149, 'Caleb West, Master Diver', 'Smith, Francis Hopkinson', '2013-03-18', 21, 'https://www.gutenberg.org/ebooks/42362', 'en', 14613), +(40150, 'Legendoja Kristuksesta', 'Lagerlöf, Selma', '2015-04-07', 7, 'https://www.gutenberg.org/ebooks/48658', 'fi', 179), +(40151, 'Anything You Can Do!', 'Garrett, Randall', '2009-12-23', 57, 'https://www.gutenberg.org/ebooks/30742', 'en', 26), +(40152, 'The Gambler', 'Dostoyevsky, Fyodor', '2000-05-01', 363, 'https://www.gutenberg.org/ebooks/2197', 'en', 9524), +(40153, 'Miti, leggende e superstizioni del Medio Evo, vol. II', 'Graf, Arturo', '2019-08-01', 141, 'https://www.gutenberg.org/ebooks/60032', 'it', 5025); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(40154, 'Surun tie: Romaani', 'Hahl, Jalmari', '2017-02-19', 4, 'https://www.gutenberg.org/ebooks/54207', 'fi', 175), +(40155, 'Tocht naar de dalen van den kinaboom (Peru)\nDe Aarde en haar Volken, 1873', 'Marcoy, Paul', '2006-04-06', 3, 'https://www.gutenberg.org/ebooks/18128', 'nl', 371), +(40156, 'Griechische Altertumskunde', 'Maisch, Richard', '2011-02-09', 28, 'https://www.gutenberg.org/ebooks/35230', 'de', 12423), +(40157, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 02 (of 17)', NULL, '2016-04-17', 40, 'https://www.gutenberg.org/ebooks/51775', 'en', 3756), +(40158, 'Memoirs of the Courts of Louis XV and XVI. — Volume 4\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Lamballe, Marie Thérèse Louise de Savoie-Carignan, princesse de', '2004-12-03', 9, 'https://www.gutenberg.org/ebooks/3879', 'en', 1870), +(40159, '\'Smiles\': A Rose of the Cumberlands', 'Robinson, Eliot H. (Eliot Harlow)', '2007-08-09', 36, 'https://www.gutenberg.org/ebooks/22287', 'en', 13431), +(40160, 'The Little Violinist', 'Aldrich, Thomas Bailey', '2007-11-06', 14, 'https://www.gutenberg.org/ebooks/23355', 'en', 10358), +(40161, 'Modern Prose And Poetry; For Secondary Schools\nEdited With Notes, Study Helps, And Reading Lists', NULL, '2005-11-26', 43, 'https://www.gutenberg.org/ebooks/17160', 'en', 2645), +(40162, 'Sir Joshua Reynolds\' Discourses\nEdited, with an Introduction, by Helen Zimmern', 'Reynolds, Joshua, Sir', '2014-12-09', 29, 'https://www.gutenberg.org/ebooks/47610', 'en', 787), +(40163, 'Riders of the Purple Sage', 'Grey, Zane', '2004-09-01', 23, 'https://www.gutenberg.org/ebooks/6537', 'en', 14614), +(40164, 'The Atlantic Monthly, Volume 20, No. 117, July, 1867\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2006-07-26', 6, 'https://www.gutenberg.org/ebooks/18914', 'en', 1227), +(40165, 'The Complete Works of Artemus Ward — Part 7: Miscellaneous', 'Ward, Artemus', '2002-06-01', 11, 'https://www.gutenberg.org/ebooks/3277', 'en', 190), +(40166, 'With Sully into the Sioux Land', 'Hanson, Joseph Mills', '2013-02-21', 19, 'https://www.gutenberg.org/ebooks/42150', 'en', 14615), +(40167, 'Le Journal de la Belle Meunière\r\nLe Général Boulanger et son amie; souvenirs vécus', 'Quinton, Marie', '2007-10-05', 18, 'https://www.gutenberg.org/ebooks/22889', 'fr', 14616), +(40168, 'Contes d\'Amérique', 'Mullem, Louis', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12620', 'fr', 770), +(40169, 'Le Tour du Monde; Voyage d\'un naturaliste.\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-08-24', 5, 'https://www.gutenberg.org/ebooks/26415', 'fr', 1182), +(40170, 'Aventures de l\'abbé de Choisy habillé en femme', 'Choisy, abbé de', '2017-01-21', 24, 'https://www.gutenberg.org/ebooks/54035', 'fr', 14617), +(40171, 'Stromboli and the Guns', 'Gribble, Francis Henry', '2013-07-02', 14, 'https://www.gutenberg.org/ebooks/43082', 'en', 9261), +(40172, 'Grosser Lärm', 'Kafka, Franz', '2009-11-30', 54, 'https://www.gutenberg.org/ebooks/30570', 'de', 422), +(40173, 'Beiträge zur Entdeckung und Erforschung Africa\'s.\nBerichte aus den Jahren 1870-1875', 'Rohlfs, Gerhard', '2005-07-13', 22, 'https://www.gutenberg.org/ebooks/16280', 'de', 6541), +(40174, 'The Story of the Airship (Non-rigid)\nA Study of One of America\'s Lesser Known Defense Weapons', 'Allen, Hugh', '2016-03-25', 31, 'https://www.gutenberg.org/ebooks/51547', 'en', 14618), +(40175, 'Among the Pond People', 'Pierson, Clara Dillingham', '2011-01-19', 93, 'https://www.gutenberg.org/ebooks/35002', 'en', 388), +(40176, 'A Defence of Virginia\r\nAnd Through Her, of the South, in Recent and Pending Contests Against the Sectional Party', 'Dabney, Robert Lewis', '2014-11-22', 48, 'https://www.gutenberg.org/ebooks/47422', 'en', 1795), +(40177, 'Mrs. Shelley', 'Rossetti, Lucy Madox Brown', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6705', 'en', 53), +(40178, 'Warwick, Leamington & Kenilworth: A Sketch-Book', 'Austin, Robert', '2017-05-29', 17, 'https://www.gutenberg.org/ebooks/54809', 'en', 14619), +(40179, 'The Man in the Reservoir', 'Hoffman, Charles Fenno', '2007-10-24', 4, 'https://www.gutenberg.org/ebooks/23167', 'en', 179), +(40180, 'Bohemian Paris of To-day\r\nSecond Edition', 'Morrow, W. C.', '2015-11-19', 23, 'https://www.gutenberg.org/ebooks/50495', 'en', 2243), +(40181, 'The Awakening\r\n(The Resurrection)', 'Tolstoy, Leo, graf', '2005-12-19', 64, 'https://www.gutenberg.org/ebooks/17352', 'en', 14620), +(40182, 'Canterbury', 'Shore, W. Teignmouth (William Teignmouth)', '2016-10-04', 5, 'https://www.gutenberg.org/ebooks/53210', 'en', 14621), +(40183, 'Children\'s Internet Protection Act (CIPA) Ruling', 'United States District Court for the Eastern District of Pennsylvania', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/5180', 'en', 14622), +(40184, 'Campaign of the First Troop Philadelphia City Cavalry\nApril 25-November 11, 1898', 'Cooper, James, of Philadelphia', '2011-10-14', 19, 'https://www.gutenberg.org/ebooks/37755', 'en', 9151), +(40185, 'Plays by August Strindberg, First Series', 'Strindberg, August', '2014-04-14', 93, 'https://www.gutenberg.org/ebooks/45375', 'en', 4675), +(40186, 'Address to the Inhabitants of the Colonies, established in New South Wales And Norfolk Island', 'Johnson, Richard', '2003-05-01', 16, 'https://www.gutenberg.org/ebooks/4052', 'en', 14623), +(40187, 'Meetkundig Schoolboek', 'Sluijters, Hendrik', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/11899', 'nl', 12099), +(40188, 'Sketch of Dunbarton, New Hampshire', 'Mills, Ella', '2011-07-10', 16, 'https://www.gutenberg.org/ebooks/36687', 'en', 14624), +(40189, 'Bibliomania in the Middle Ages', 'Merryweather, F. Somner (Frederick Somner)', '2007-05-28', 36, 'https://www.gutenberg.org/ebooks/21630', 'en', 14625), +(40190, 'Notes and Queries, Number 57, November 30, 1850', 'Various', '2005-03-18', 6, 'https://www.gutenberg.org/ebooks/15405', 'en', 105), +(40191, 'Much Ado about Nothing', 'Shakespeare, William', '1998-11-01', 34, 'https://www.gutenberg.org/ebooks/1520', 'en', 5155), +(40192, 'Excuse Me!', 'Hughes, Rupert', '2012-08-29', 50, 'https://www.gutenberg.org/ebooks/40607', 'en', 1239), +(40193, 'Ride of the Valkyries', NULL, '2003-11-01', 91, 'https://www.gutenberg.org/ebooks/10177', 'en', 4227), +(40194, 'The Story of the Outlaw: A Study of the Western Desperado', 'Hough, Emerson', '2008-01-17', 37, 'https://www.gutenberg.org/ebooks/24342', 'en', 5921), +(40195, 'Line and Form (1900)', 'Crane, Walter', '2008-05-02', 192, 'https://www.gutenberg.org/ebooks/25290', 'en', 6162), +(40196, 'Wild Life in New Zealand. Part I. Mammalia.\nNew Zealand Board of Science and Art. Manual No. 2.', 'Thomson, G. M. (George Malcolm)', '2018-03-16', 16, 'https://www.gutenberg.org/ebooks/56762', 'en', 14626), +(40197, 'The Cynic\'s Rules of Conduct', 'Field, Chester', '2010-05-02', 8, 'https://www.gutenberg.org/ebooks/32227', 'en', 14627), +(40198, 'Sweetapple Cove', 'Van Schaick, George', '2004-09-08', 15, 'https://www.gutenberg.org/ebooks/13396', 'en', 1563), +(40199, 'The Southern Literary Messenger, Vol. I., No. 6, February, 1835', 'Various', '2017-03-28', 17, 'https://www.gutenberg.org/ebooks/54451', 'en', 522), +(40200, 'The Journal of Submarine Commander von Forstner', 'Forstner, Georg-Günther, Freiherr von', '2009-09-27', 32, 'https://www.gutenberg.org/ebooks/30114', 'en', 14628), +(40201, 'The Widow O\'Callaghan\'s Boys', 'Zollinger, Gulielma', '2005-11-01', 88, 'https://www.gutenberg.org/ebooks/9329', 'en', 4576), +(40202, 'Miscellaneous Pieces', 'Bunyan, John', '2003-01-01', 31, 'https://www.gutenberg.org/ebooks/3613', 'en', 2566), +(40203, 'Étude des Élassoïdes ou Surfaces A Courbure Moyenne Nulle', 'Ribaucour, Albert', '2009-08-26', 3, 'https://www.gutenberg.org/ebooks/29805', 'fr', 14629), +(40204, 'The Narrow House', 'Scott, Evelyn', '2013-04-14', 28, 'https://www.gutenberg.org/ebooks/42534', 'en', 61), +(40205, 'The Life Story of a Black Bear', 'Robinson, Harry Perry', '2017-09-19', 10, 'https://www.gutenberg.org/ebooks/55583', 'en', 4517), +(40206, 'In the Name of the Bodleian, and Other Essays', 'Birrell, Augustine', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12244', 'en', 2761), +(40207, 'Religion and Lust\r\nor, The Psychical Correlation of Religious Emotion and Sexual Desire', 'Weir, James, Jr.', '2008-07-16', 27, 'https://www.gutenberg.org/ebooks/26071', 'en', 7851), +(40208, 'La legge del popolo Ebreo', 'Castelli, David', '2014-10-04', 13, 'https://www.gutenberg.org/ebooks/47046', 'it', 14630), +(40209, 'Making Good on Private Duty: Practical Hints to Graduate Nurses', 'Lounsbery, Harriet Camp', '2004-08-01', 30, 'https://www.gutenberg.org/ebooks/6361', 'en', 14631), +(40210, 'The Merry Christmas of the Old Woman who Lived in a Shoe', 'Baker, George M. (George Melville)', '2015-04-30', 10, 'https://www.gutenberg.org/ebooks/48832', 'en', 3459), +(40211, 'In the Wilds of Africa', 'Kingston, William Henry Giles', '2007-11-15', 12, 'https://www.gutenberg.org/ebooks/23503', 'en', 1023), +(40212, 'La Vita Nuova (La Vie Nouvelle)', 'Dante Alighieri', '2006-02-11', 48, 'https://www.gutenberg.org/ebooks/17736', 'fr', 14632), +(40213, 'Olli Akselinpoika ja hänen perheensä: eli Inkvisitioni-vankeus Sorön luostarissa', 'Wildt, Johannes', '2010-01-11', 14, 'https://www.gutenberg.org/ebooks/30928', 'fi', 61), +(40214, 'Paddington: Past and Present', 'Robins, William', '2016-02-03', 29, 'https://www.gutenberg.org/ebooks/51123', 'en', 14633), +(40215, 'Um brado contra as monterias de cerco aos Lobos na Provincia do Alemtejo', 'Mira, José Paulo de', '2009-06-05', 2, 'https://www.gutenberg.org/ebooks/29039', 'pt', 14634), +(40216, 'Forty Years of \'Spy\'', 'Ward, Leslie, Sir', '2011-03-03', 21, 'https://www.gutenberg.org/ebooks/35466', 'en', 14635), +(40217, 'Avioelämää 2: Kahdeksantoista aviojuttua', 'Strindberg, August', '2014-07-05', 8, 'https://www.gutenberg.org/ebooks/46194', 'fi', 675), +(40218, 'Radiant Motherhood: A Book for Those Who are Creating the Future', 'Stopes, Marie Carmichael', '2014-05-21', 16, 'https://www.gutenberg.org/ebooks/45711', 'en', 14636), +(40219, 'Vittoria — Volume 2', 'Meredith, George', '2003-09-01', 11, 'https://www.gutenberg.org/ebooks/4436', 'en', 2564), +(40220, 'In Africa: Hunting Adventures in the Big Game Country', 'McCutcheon, John T. (John Tinney)', '2007-04-29', 85, 'https://www.gutenberg.org/ebooks/21254', 'en', 14637), +(40221, 'Aliina', 'Kauppis-Heikki', '2005-02-14', 6, 'https://www.gutenberg.org/ebooks/15061', 'fi', 61), +(40222, 'The Tuzuk-i-Jahangiri: or, Memoirs of Jahangir (Volume 1 of 2)', 'Jahangir, Emperor of Hindustan', '2016-12-06', 90, 'https://www.gutenberg.org/ebooks/53674', 'en', 7615), +(40223, 'Buttercup Gold, and Other Stories', 'Field, Ellen Robena', '1999-11-01', 27, 'https://www.gutenberg.org/ebooks/1978', 'en', 388), +(40224, 'Embroidery and Tapestry Weaving', 'Christie, Grace', '2007-01-16', 169, 'https://www.gutenberg.org/ebooks/20386', 'en', 1454), +(40225, 'Notes of a Camp-Follower on the Western Front', 'Hornung, E. W. (Ernest William)', '2011-09-07', 19, 'https://www.gutenberg.org/ebooks/37331', 'en', 449), +(40226, 'Living the Radiant Life: A Personal Narrative', 'James, George Wharton', '2018-01-04', 13, 'https://www.gutenberg.org/ebooks/56306', 'en', 740), +(40227, 'Abrégé de la Théorie des Fonctions Elliptiques\r\nA l\'Usage des Candidats a la Licence ès Sciences Mathématiques', 'Henry, Charles', '2010-06-01', 13, 'https://www.gutenberg.org/ebooks/32643', 'fr', 2584), +(40228, 'An Address to Men of Science\nCalling Upon Them to Stand Forward and Vindicate the Truth....', 'Carlile, Richard', '2011-12-22', 18, 'https://www.gutenberg.org/ebooks/38379', 'en', 5025), +(40229, 'Rättigheter och Skyldigheter gentemot Statskyrkan\nEn hjälpreda för svenska medborgare', 'Stjernstedt, Georg', '2010-09-21', 15, 'https://www.gutenberg.org/ebooks/33791', 'sv', 14638), +(40230, 'In the Cage', 'James, Henry', '1997-12-01', 69, 'https://www.gutenberg.org/ebooks/1144', 'en', 8161), +(40231, 'Folly as It Flies; Hit at by Fanny Fern', 'Fern, Fanny', '2012-07-17', 19, 'https://www.gutenberg.org/ebooks/40263', 'en', 620), +(40232, 'On the Seashore\r\nCassell\'s \"Eyes and No Eyes\" Series, Book VII', 'Smith, R. Cadwallader', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/10513', 'en', 14639), +(40233, 'A History of Art for Beginners and Students: Painting, Sculpture, Architecture', 'Waters, Clara Erskine Clement', '2008-03-01', 281, 'https://www.gutenberg.org/ebooks/24726', 'en', 3322), +(40234, 'Harry Escombe: A Tale of Adventure in Peru', 'Collingwood, Harry', '2007-04-13', 12, 'https://www.gutenberg.org/ebooks/21066', 'en', 9891), +(40235, 'The Advance of Science in the Last Half-Century', 'Huxley, Thomas Henry', '2005-03-04', 29, 'https://www.gutenberg.org/ebooks/15253', 'en', 186), +(40236, 'Three Years in Tibet', 'Kawaguchi, Ekai', '2016-07-17', 36, 'https://www.gutenberg.org/ebooks/52594', 'en', 3800), +(40237, 'Famous Authors (Men)', 'Harkins, E. F. (Edward Francis)', '2014-04-28', 20, 'https://www.gutenberg.org/ebooks/45523', 'en', 131), +(40238, 'The Clique of Gold', 'Gaboriau, Emile', '2006-04-13', 66, 'https://www.gutenberg.org/ebooks/4604', 'en', 5182), +(40239, 'The Pennsylvania Journal of Prison Discipline and Philanthropy (Vol. IV, No. II, April 1849)', 'Pennsylvania Prison Society', '2018-04-03', 3, 'https://www.gutenberg.org/ebooks/56908', 'en', 4611), +(40240, 'Of the Just Shaping of Letters', 'Dürer, Albrecht', '2011-08-16', 75, 'https://www.gutenberg.org/ebooks/37103', 'en', 9796), +(40241, 'Wings and the Child; Or, The Building of Magic Cities', 'Nesbit, E. (Edith)', '2012-02-25', 89, 'https://www.gutenberg.org/ebooks/38977', 'en', 973), +(40242, 'The Maréchale (Catherine Booth-Clibborn)', 'Strahan, James', '2016-11-03', 18, 'https://www.gutenberg.org/ebooks/53446', 'en', 14640), +(40243, 'The Roman Question', 'About, Edmond', '2004-12-19', 14, 'https://www.gutenberg.org/ebooks/14381', 'en', 14641), +(40244, 'The Arab\'s Pledge: A Tale of Marocco in 1830', 'Mitford, Edward Ledwich', '2012-10-25', 11, 'https://www.gutenberg.org/ebooks/41183', 'en', 14642), +(40245, 'Talvenpito pohjoisissa jäissä; Mont-Blanc vuorelle nousu: Kaksi kertomusta', 'Verne, Jules', '2012-03-11', 2, 'https://www.gutenberg.org/ebooks/39099', 'fi', 1850), +(40246, 'Rhymes of the Survey and Frontier', 'Field, George Blackstone', '2019-07-18', 96, 'https://www.gutenberg.org/ebooks/59940', 'en', 14643), +(40247, 'Stories Pictures Tell. Book One', 'Carpenter, Flora L. (Flora Leona)', '2010-05-21', 14, 'https://www.gutenberg.org/ebooks/32471', 'en', 5927), +(40248, 'Girls and Athletics\r\nGiving a brief summary of the activity, rules and method of administration of the following games in girls\' schools and colleges, women\'s clubs, etc.: archery, basket ball, cricket, fencing, field day, field hockey, gymnastics, golf, hand ball, ice hockey, indoor base ball, rowing, soccer, skating, swimming, tennis, track athletics, volley ball, walking, water polo, water basket ball.', NULL, '2017-12-06', 22, 'https://www.gutenberg.org/ebooks/56134', 'en', 14644), +(40249, 'Punch, or the London Charivari, Volume 153, October 10, 1917', 'Various', '2004-01-01', 6, 'https://www.gutenberg.org/ebooks/10721', 'en', 134), +(40250, 'Luiz de Camões: notas biograficas\nPrefacio da setima edição do Camões de Garrett', 'Castelo Branco, Camilo', '2008-02-04', 19, 'https://www.gutenberg.org/ebooks/24514', 'pt', 122), +(40251, 'The Kentish Coast', 'Harper, Charles G. (Charles George)', '2019-02-15', 6, 'https://www.gutenberg.org/ebooks/58892', 'en', 14645), +(40252, 'The Little White Bird; Or, Adventures in Kensington Gardens', 'Barrie, J. M. (James Matthew)', '1998-07-01', 160, 'https://www.gutenberg.org/ebooks/1376', 'en', 14646), +(40253, 'Islands of Space', 'Campbell, John W., Jr. (John Wood)', '2007-04-05', 146, 'https://www.gutenberg.org/ebooks/20988', 'en', 424), +(40254, 'Found at Last: the Veritable Garden of Eden\r\nOr a place that answers the Bible description of the notable spot better than anything yet discovered', 'Van Slyke, D. O. (David Oyer)', '2012-06-20', 11, 'https://www.gutenberg.org/ebooks/40051', 'en', 14647), +(40255, 'The Thread of Gold', 'Benson, Arthur Christopher', '2009-10-25', 11, 'https://www.gutenberg.org/ebooks/30326', 'en', 20), +(40256, 'The Mouse and the Christmas Cake', 'Anonymous', '2008-12-02', 16, 'https://www.gutenberg.org/ebooks/27391', 'en', 3623), +(40257, 'She Stands Accused', 'MacClure, Victor', '1996-04-01', 62, 'https://www.gutenberg.org/ebooks/488', 'en', 14648), +(40258, 'Catalogue of Rudimentary, Scientific, Educational, and Classical Works', 'James S. Virtue (Firm)', '2017-05-05', 5, 'https://www.gutenberg.org/ebooks/54663', 'en', 14649), +(40259, 'The Story of the Prophet Jonas', NULL, '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12076', 'en', 6420), +(40260, 'Discovery of Oxygen, Part 2', 'Scheele, Carl Wilhelm', '2008-08-09', 5, 'https://www.gutenberg.org/ebooks/26243', 'en', 14650), +(40261, 'Bramble-Bees and Others', 'Fabre, Jean-Henri', '2002-09-01', 43, 'https://www.gutenberg.org/ebooks/3421', 'en', 4644), +(40262, 'Across America; Or, The Great West and the Pacific Coast', 'Rusling, James Fowler', '2013-05-13', 18, 'https://www.gutenberg.org/ebooks/42706', 'en', 1181), +(40263, 'A Martian Odyssey', 'Weinbaum, Stanley G. (Stanley Grauman)', '2007-12-04', 145, 'https://www.gutenberg.org/ebooks/23731', 'en', 26), +(40264, 'The Mintage: Being Ten Stories & One More', 'Hubbard, Elbert', '2006-01-12', 12, 'https://www.gutenberg.org/ebooks/17504', 'en', 179), +(40265, 'The Bronze Bell', 'Vance, Louis Joseph', '2006-02-01', 21, 'https://www.gutenberg.org/ebooks/9927', 'en', 323), +(40266, 'History of Company K. 1st (Inft,) Penn\'a Reserves', 'Minnigh, H. N. (Henry N.)', '2014-11-03', 5, 'https://www.gutenberg.org/ebooks/47274', 'en', 14651), +(40267, 'Athens: Its Rise and Fall, Book III', 'Lytton, Edward Bulwer Lytton, Baron', '2006-10-20', 7, 'https://www.gutenberg.org/ebooks/6153', 'en', 6138), +(40268, 'Ireland and the Home Rule Movement', 'McDonnell, Michael, Sir', '2004-11-09', 22, 'https://www.gutenberg.org/ebooks/13998', 'en', 14652), +(40269, 'Fra Færø: Fire Fortællinger', 'Sørensen, Carl', '2010-12-30', 6, 'https://www.gutenberg.org/ebooks/34786', 'da', 14653), +(40270, 'The Motor Girls on Cedar Lake; Or, the Hermit of Fern Island', 'Penrose, Margaret', '2004-12-01', 18, 'https://www.gutenberg.org/ebooks/7081', 'en', 167), +(40271, 'The Stars in the Pool: A Prose Poem for Lovers', 'Wallace, Edna Kingsley', '2011-03-22', 22, 'https://www.gutenberg.org/ebooks/35654', 'en', 4723), +(40272, 'Make Me An Offer', 'Blomberg, Con', '2016-02-27', 28, 'https://www.gutenberg.org/ebooks/51311', 'en', 1660), +(40273, 'Historic Boys: Their Endeavours, Their Achievements, and Their Times', 'Brooks, Elbridge S. (Elbridge Streeter)', '2008-11-04', 21, 'https://www.gutenberg.org/ebooks/27157', 'en', 8676), +(40274, 'Notes and Queries, Number 38, July 20, 1850', 'Various', '2004-09-03', 16, 'https://www.gutenberg.org/ebooks/13362', 'en', 105), +(40275, 'Harper\'s Young People, May 25, 1880\nAn Illustrated Weekly', 'Various', '2009-05-22', 6, 'https://www.gutenberg.org/ebooks/28923', 'en', 479), +(40276, 'Life of Mozart, Vol. 2 (of 3)', 'Jahn, Otto', '2013-08-07', 30, 'https://www.gutenberg.org/ebooks/43412', 'en', 3143), +(40277, 'The Golden Dog', 'Kirby, William', '2001-07-01', 20, 'https://www.gutenberg.org/ebooks/2735', 'en', 1890), +(40278, 'The Chronicles of Enguerrand de Monstrelet, Vol. 01 [of 13]\r\nContaining an account of the cruel civil wars between the houses of Orleans and Burgundy, of the possession of Paris and Normandy by the English, their expulsion thence, and of other memorable events that happened in the kingdom of France, as well as in other countries', 'Monstrelet, Enguerrand de', '2016-01-04', 15, 'https://www.gutenberg.org/ebooks/50839', 'en', 8369), +(40279, 'Le chemin qui descend', 'Ardel, Henri', '2010-01-20', 34, 'https://www.gutenberg.org/ebooks/31032', 'fr', 259), +(40280, 'Curiosities of Street Literature', NULL, '2015-06-03', 15, 'https://www.gutenberg.org/ebooks/49128', 'en', 14654), +(40281, 'The Judgment of Eve', 'Sinclair, May', '2006-10-29', 31, 'https://www.gutenberg.org/ebooks/19658', 'en', 705), +(40282, 'Tales of Two Countries', 'Gorky, Maksim', '2017-09-18', 23, 'https://www.gutenberg.org/ebooks/55577', 'en', 85), +(40283, 'Robin Redbreast: A Story for Girls', 'Molesworth, Mrs.', '2008-07-18', 17, 'https://www.gutenberg.org/ebooks/26085', 'en', 12102), +(40284, 'John Marchmont\'s Legacy, Volume 2 (of 3)', 'Braddon, M. E. (Mary Elizabeth)', '2010-12-01', 3, 'https://www.gutenberg.org/ebooks/34540', 'en', 11373), +(40285, 'The Lives of the Twelve Caesars, Volume 10: Vespasian', 'Suetonius', '2004-12-13', 16, 'https://www.gutenberg.org/ebooks/6395', 'en', 1037), +(40286, 'Birds and Nature Vol. 10 No. 5 [December 1901]', 'Various', '2015-09-19', 6, 'https://www.gutenberg.org/ebooks/50005', 'en', 490), +(40287, 'Chronicles (1 of 6): The Historie of England (6 of 8)\nThe Sixt Booke of the Historie of England', 'Holinshed, Raphael', '2005-08-27', 23, 'https://www.gutenberg.org/ebooks/16610', 'en', 1667), +(40288, 'Cancionero de Lope de Stúñiga: Códice del siglo XV.', NULL, '2015-09-09', 14, 'https://www.gutenberg.org/ebooks/49914', 'es', 4952), +(40289, 'Stanford Achievement Test, Ed. 1922\nAdvanced Examination, Form A, for Grades 4-8', 'Terman, Lewis M. (Lewis Madison)', '2007-08-29', 34, 'https://www.gutenberg.org/ebooks/22425', 'en', 14655), +(40290, 'Dictionary of the Chinook Jargon, or Indian Trade Language, of the North Pacific Coast', NULL, '2011-03-05', 39, 'https://www.gutenberg.org/ebooks/35492', 'en', 7416), +(40291, 'A Connecticut Yankee in King Arthur\'s Court, Part 6.', 'Twain, Mark', '2004-07-06', 16, 'https://www.gutenberg.org/ebooks/7247', 'en', 781), +(40292, 'Malaeska: The Indian Wife of the White Hunter', 'Stephens, Ann S. (Ann Sophia)', '2014-07-01', 82, 'https://www.gutenberg.org/ebooks/46160', 'en', 14656), +(40293, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Fünfter Band (der 11)', 'Macaulay, Thomas Babington Macaulay, Baron', '2011-05-25', 10, 'https://www.gutenberg.org/ebooks/36217', 'de', 641), +(40294, 'En konungasons öde: Skildringar från Erik XIV:s sons lif', 'Åberg, J. O. (Johan Olof)', '2016-08-08', 11, 'https://www.gutenberg.org/ebooks/52752', 'sv', 98), +(40295, 'The Story of a Picture', 'Sherley, Douglass', '2005-02-18', 11, 'https://www.gutenberg.org/ebooks/15095', 'en', 179), +(40296, 'The Waterloo Campaign, 1815', 'Siborne, William', '2018-11-11', 28, 'https://www.gutenberg.org/ebooks/58268', 'en', 6534), +(40297, 'Dew Drops, Vol. 37, No. 34, August 23, 1914', 'Various', '2004-11-24', 10, 'https://www.gutenberg.org/ebooks/14147', 'en', 6886), +(40298, 'Précis writing for beginners', 'Pocock, Guy Noel', '2016-12-06', 16, 'https://www.gutenberg.org/ebooks/53680', 'en', 14657), +(40299, 'Nouvelle relation de l\'itinéraire de Napoléon, de Fontainebleau à l\'Île d\'Elbe', 'Waldburg, Friedrich Ludwig Truchsess, Graf von', '2007-01-15', 31, 'https://www.gutenberg.org/ebooks/20372', 'fr', 1770), +(40300, 'Arachne — Volume 03', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5510', 'en', 803), +(40301, 'Brother Billy', 'Fox, Frances Margaret', '2014-01-09', 15, 'https://www.gutenberg.org/ebooks/44637', 'en', 14658), +(40302, 'Bird Stories', 'Patch, Edith M. (Edith Marion)', '2008-05-26', 39, 'https://www.gutenberg.org/ebooks/25600', 'en', 6059), +(40303, 'Small Means and Great Ends', NULL, '2004-03-01', 46, 'https://www.gutenberg.org/ebooks/11435', 'en', 470), +(40304, 'Windsor Castle', 'Thomas, Edward', '2012-11-11', 9, 'https://www.gutenberg.org/ebooks/41345', 'en', 14659), +(40305, 'The Church of England cleared from the charge of Schism\nUpon Testimonies of Councils and Fathers of the first six centuries', 'Allies, T. W. (Thomas William)', '2010-09-19', 12, 'https://www.gutenberg.org/ebooks/33765', 'en', 8454), +(40306, 'Ole Bull: A Memoir', 'Bull, Sara Chapman Thorp', '2012-07-22', 8, 'https://www.gutenberg.org/ebooks/40297', 'en', 14660), +(40307, 'Kalavartion seikkailut', 'London, Jack', '2018-05-27', 12, 'https://www.gutenberg.org/ebooks/57220', 'fi', 179), +(40308, 'On the Trail of the Space Pirates', 'Rockwell, Carey', '2007-04-15', 114, 'https://www.gutenberg.org/ebooks/21092', 'en', 8374), +(40309, 'Victorian Literature: Sixty Years of Books and Bookmen', 'Shorter, Clement King', '2012-05-29', 28, 'https://www.gutenberg.org/ebooks/39851', 'en', 2644), +(40310, 'Picturesque London', 'Fitzgerald, Percy', '2019-04-01', 26, 'https://www.gutenberg.org/ebooks/59188', 'en', 856), +(40311, 'The Fortune of the Landrays', 'Kester, Vaughan', '2016-07-11', 12, 'https://www.gutenberg.org/ebooks/52560', 'en', 1071), +(40312, 'Les grandes chroniques de France (4/6 )\nselon que elles sont conservées en l\'Eglise de Saint-Denis', NULL, '2011-05-03', 8, 'https://www.gutenberg.org/ebooks/36025', 'fr', 14661), +(40313, 'The Shewing-up of Blanco Posnet', 'Shaw, Bernard', '2004-05-01', 34, 'https://www.gutenberg.org/ebooks/5722', 'en', 14662), +(40314, 'Singapore, Malacca, Java.\nReiseskizzen von F. Jagor.', 'Jagor, Fedor', '2013-12-10', 21, 'https://www.gutenberg.org/ebooks/44405', 'de', 11321), +(40315, 'The Adventures of Grandfather Frog', 'Burgess, Thornton W. (Thornton Waldo)', '2004-12-17', 98, 'https://www.gutenberg.org/ebooks/14375', 'en', 8361), +(40316, 'The Camp Fire Girls Solve a Mystery; Or, The Christmas Adventure at Carver House', 'Frey, Hildegard G.', '2012-02-25', 15, 'https://www.gutenberg.org/ebooks/38983', 'en', 3621), +(40317, 'Hiilivalkea', 'Koskenniemi, Veikko Antero', '2006-12-19', 20, 'https://www.gutenberg.org/ebooks/20140', 'fi', 8), +(40318, 'The Morning Glory Club', 'Kyle, George A. (George Alexander)', '2012-09-30', 14, 'https://www.gutenberg.org/ebooks/40899', 'en', 14663), +(40319, 'John Ermine of the Yellowstone', 'Remington, Frederic', '2012-10-25', 44, 'https://www.gutenberg.org/ebooks/41177', 'en', 14664), +(40320, 'The Giants From Outer Space', 'Krepps, Robert W.', '2010-05-23', 20, 'https://www.gutenberg.org/ebooks/32485', 'en', 67), +(40321, 'The Baby\'s Bouquet: A Fresh Bunch of Rhymes and Tunes', 'Crane, Walter', '2008-05-11', 156, 'https://www.gutenberg.org/ebooks/25432', 'en', 2990), +(40322, 'Dio\'s Rome, Volume 2\r\nAn Historical Narrative Originally Composed in Greek During\r\nthe Reigns of Septimius Severus, Geta and Caracalla, Macrinus,\r\nElagabalus and Alexander Severus; and Now Presented in English\r\nForm. Second Volume Extant Books 36-44 (B.C. 69-44).', 'Cassius Dio Cocceianus', '2004-03-01', 50, 'https://www.gutenberg.org/ebooks/11607', 'en', 6793), +(40323, 'Visits and Sketches at Home and Abroad, Vol. 2 (of 3)\r\nWith Tales and Miscellanies Now First Collected', 'Jameson, Mrs. (Anna)', '2011-07-23', 10, 'https://www.gutenberg.org/ebooks/36819', 'en', 3386), +(40324, 'Miss Harriet', 'Maupassant, Guy de', '2018-04-21', 7, 'https://www.gutenberg.org/ebooks/57012', 'fi', 1152), +(40325, 'Poems — Volume 2', 'Meredith, George', '1998-07-01', 9, 'https://www.gutenberg.org/ebooks/1382', 'en', 54), +(40326, 'The Murder on the Links', 'Christie, Agatha', '2019-02-11', 4610, 'https://www.gutenberg.org/ebooks/58866', 'en', 128), +(40327, 'The Moonlit Way: A Novel', 'Chambers, Robert W. (Robert William)', '2010-08-28', 34, 'https://www.gutenberg.org/ebooks/33557', 'en', 48), +(40328, 'Doing and Daring: A New Zealand Story', 'Stredder, Eleanor', '2013-09-02', 16, 'https://www.gutenberg.org/ebooks/43620', 'en', 31), +(40329, 'Complete Poetical Works', 'Harte, Bret', '2001-02-01', 24, 'https://www.gutenberg.org/ebooks/2507', 'en', 178), +(40330, 'Tales of Space and Time', 'Wells, H. G. (Herbert George)', '2008-11-30', 251, 'https://www.gutenberg.org/ebooks/27365', 'en', 5077), +(40331, 'The Baitâl Pachchisi; Or, The Twenty-Five Tales of a Sprite\r\nTranslated From the Hindi Text of Dr. Duncan Forbes', 'Vila, Mazhar Ali Khan, active 1805', '2017-05-10', 26, 'https://www.gutenberg.org/ebooks/54697', 'en', 14665), +(40332, 'Through the Grand Canyon from Wyoming to Mexico', 'Kolb, E. L. (Ellsworth Leonardson)', '2004-08-10', 24, 'https://www.gutenberg.org/ebooks/13150', 'en', 14666), +(40333, 'Color Images from Mars Rovers\r\nSpirit and Opportunity', 'Webster, Bob', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12082', 'en', 14667), +(40334, 'The Exclusives (vol. 2 of 3)', 'Bury, Charlotte Campbell, Lady', '2017-10-13', 11, 'https://www.gutenberg.org/ebooks/55745', 'en', 4288), +(40335, 'The Trial', 'Kafka, Franz', '2005-04-01', 1768, 'https://www.gutenberg.org/ebooks/7849', 'en', 2612), +(40336, 'The Wide Awake Girls in Winsted', 'Barrett, Katharine Ellis', '2010-02-01', 16, 'https://www.gutenberg.org/ebooks/31200', 'en', 3529), +(40337, 'The \'Look About You\' Nature Study Books, Book 3 [of 7]', 'Hoare, Thomas W.', '2015-10-16', 90, 'https://www.gutenberg.org/ebooks/50237', 'en', 1527), +(40338, 'Birds Illustrated by Color Photography, Vol. 3, No. 5', 'Various', '2014-11-04', 17, 'https://www.gutenberg.org/ebooks/47280', 'en', 1584), +(40339, 'Stained Glass Tours in France', 'Sherrill, Charles Hitchcock', '2010-12-28', 64, 'https://www.gutenberg.org/ebooks/34772', 'en', 14668), +(40340, 'The Idol of Paris', 'Bernhardt, Sarah', '2004-12-01', 32, 'https://www.gutenberg.org/ebooks/7075', 'en', 560), +(40341, 'Gli ultimi giorni di Goldoni\r\nLe Commedie, vol. 1', 'Carrera, Valentino', '2014-07-21', 9, 'https://www.gutenberg.org/ebooks/46352', 'it', 4296), +(40342, 'Drum-Taps', 'Whitman, Walt', '2005-09-01', 76, 'https://www.gutenberg.org/ebooks/8801', 'en', 14669), +(40343, 'The Home in the Valley', 'Flygare-Carlén, Emilie', '2005-08-03', 14, 'https://www.gutenberg.org/ebooks/16422', 'en', 1834), +(40344, 'Chambers\'s Edinburgh Journal, No. 454\nVolume 18, New Series, September 11, 1852', 'Various', '2007-09-16', 6, 'https://www.gutenberg.org/ebooks/22617', 'en', 18), +(40345, 'Notes and Queries, Vol. IV, Number 90, July 19, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-10-01', 11, 'https://www.gutenberg.org/ebooks/37593', 'en', 105), +(40346, 'Journals of Expeditions of Discovery into Central Australia and Overland from Adelaide to King George\'s Sound in the Years 1840-1: Sent By the Colonists of South Australia, with the Sanction and Support of the Government: Including an Account of the Manners and Customs of the Aborigines and the State of Their Relations with Europeans — Complete', 'Eyre, Edward John', '2004-03-01', 57, 'https://www.gutenberg.org/ebooks/5346', 'en', 5565), +(40347, 'Crossed Trails in Mexico\nMexican Mystery Stories #3', 'Randolph, Helen', '2013-11-01', 10, 'https://www.gutenberg.org/ebooks/44061', 'en', 51), +(40348, 'The Boy Allies Under the Sea; Or, The Vanishing Submarines', 'Hayes, Clair W. (Clair Wallace)', '2005-01-17', 15, 'https://www.gutenberg.org/ebooks/14711', 'en', 4416), +(40349, 'Culm Rock\nThe Story of a Year: What it Brought and What it Taught', 'Gaylord, Glance', '2007-02-06', 18, 'https://www.gutenberg.org/ebooks/20524', 'en', 3145), +(40350, 'The Girl\'s Own Paper, Vol. XX, No. 992, December 31, 1898', 'Various', '2016-05-19', 9, 'https://www.gutenberg.org/ebooks/52104', 'en', 563), +(40351, 'The Art of Architecture: A Poem in Imitation of Horace\'s Art of Poetry', 'Gwynn, John', '2011-06-15', 99, 'https://www.gutenberg.org/ebooks/36441', 'en', 14670), +(40352, 'Tales of Aztlan; The Romance of a Hero of Our Late Spanish-American War, Incidents of Interest from the Life of a Western Pioneer and Other Tales', 'Hartmann, George', '2003-07-01', 29, 'https://www.gutenberg.org/ebooks/4294', 'en', 112), +(40353, 'Philip: The Story of a Boy Violinist', 'Hungerford, Mary C. (Mary Churchill)', '2018-07-10', 17, 'https://www.gutenberg.org/ebooks/57476', 'en', 9191), +(40354, '千字文', 'Zhou, Xingsi', '2008-01-07', 22, 'https://www.gutenberg.org/ebooks/24184', 'zh', 10503), +(40355, 'Klytia: A Story of Heidelberg Castle', 'Hausrath, Adolf', '2010-07-11', 4, 'https://www.gutenberg.org/ebooks/33133', 'en', 14671), +(40356, 'The New Boys at Oakdale', 'Scott, Morgan', '2012-11-30', 12, 'https://www.gutenberg.org/ebooks/41513', 'en', 6620), +(40357, 'The Life and Adventures of Guzman D\'Alfarache, or the Spanish Rogue, vol. 2/3', 'Alemán, Mateo', '2016-08-30', 9, 'https://www.gutenberg.org/ebooks/52938', 'en', 5615), +(40358, 'Πέρσαι', 'Aeschylus', '2012-04-09', 21, 'https://www.gutenberg.org/ebooks/39409', 'el', 14672), +(40359, 'The Brothers-In-Law: A Tale Of The Equatorial Islands; and The Brass Gun Of The Buccaneers\n1901', 'Becke, Louis', '2008-04-12', 20, 'https://www.gutenberg.org/ebooks/25056', 'en', 108), +(40360, 'The Adventures of a Special Correspondent Among the Various Races and Countries of Central Asia\r\nBeing the Exploits and Experiences of Claudius Bombarnac of \"The Twentieth Century\"', 'Verne, Jules', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/11263', 'en', 533), +(40361, 'Nachbarn: Erzählungen', 'Hesse, Hermann', '2017-08-10', 52, 'https://www.gutenberg.org/ebooks/55321', 'de', 1212), +(40362, 'Marse Henry (Volume 2)\nAn Autobiography', 'Watterson, Henry', '2005-07-01', 11, 'https://www.gutenberg.org/ebooks/8459', 'en', 14673), +(40363, 'Once a Greech', 'Smith, Evelyn E.', '2010-03-16', 39, 'https://www.gutenberg.org/ebooks/31664', 'en', 26), +(40364, 'Grit A-Plenty: A Tale of the Labrador Wild', 'Wallace, Dillon', '2013-03-23', 13, 'https://www.gutenberg.org/ebooks/42396', 'en', 10538), +(40365, 'Dante e gli Ebrei: Studio', 'Servi, Flaminio', '2013-07-18', 10, 'https://www.gutenberg.org/ebooks/43244', 'it', 8131), +(40366, 'The Bridge-Builders', 'Kipling, Rudyard', '2006-02-26', 41, 'https://www.gutenberg.org/ebooks/2163', 'en', 14674), +(40367, 'The Greatest Highway in the World\nHistorical, Industrial and Descriptive Information of the Towns, Cities and Country Passed Through Between New York and Chicago Via the New York Central Lines. Based on the Encyclopaedia Britannica.', 'New York Central Railroad Company', '2009-01-04', 32, 'https://www.gutenberg.org/ebooks/27701', 'en', 14675), +(40368, 'Past and Present', 'Carlyle, Thomas', '2004-09-27', 91, 'https://www.gutenberg.org/ebooks/13534', 'en', 4089), +(40369, 'In en om Java\'s Paradijs\nDe Aarde en haar Volken, 1907', 'Koorevaar, A.', '2006-11-16', 14, 'https://www.gutenberg.org/ebooks/19832', 'nl', 6224), +(40370, 'An Art-Lovers Guide to the Exposition\r\nExplanations of the Architecture, Sculpture and Mural Paintings, With a Guide for Study in the Art Gallery', 'Cheney, Sheldon', '2005-02-01', 24, 'https://www.gutenberg.org/ebooks/7411', 'en', 3035), +(40371, 'Il Concilio', 'Petruccelli della Gattina, Ferdinando', '2014-08-31', 11, 'https://www.gutenberg.org/ebooks/46736', 'it', 14676), +(40372, 'The King of the City', 'Laumer, Keith', '2016-04-17', 132, 'https://www.gutenberg.org/ebooks/51781', 'en', 26), +(40373, 'Boy Blue and His Friends', 'Blaisdell, Mary Frances', '2005-06-13', 35, 'https://www.gutenberg.org/ebooks/16046', 'en', 2849), +(40374, 'Bulldog And Butterfly\nFrom \"Schwartz\" by David Christie Murray', 'Murray, David Christie', '2007-08-08', 16, 'https://www.gutenberg.org/ebooks/22273', 'en', 61), +(40375, 'The Madcap of the School', 'Brazil, Angela', '2009-05-10', 37, 'https://www.gutenberg.org/ebooks/28749', 'en', 621), +(40376, 'The Relations Between Religion and Science\nEight Lectures Preached Before the University of Oxford in the Year 1884', 'Temple, Frederick', '2005-11-30', 27, 'https://www.gutenberg.org/ebooks/17194', 'en', 2713), +(40377, 'Travels in the interior of Brazil\r\nwith notices on its climate, agriculture, commerce, population, mines, manners, and customs: and a particular account of the gold and diamond districts.', 'Mawe, John', '2015-12-09', 4, 'https://www.gutenberg.org/ebooks/50653', 'en', 14677), +(40378, 'Speeches: Literary and Social', 'Dickens, Charles', '1997-02-01', 86, 'https://www.gutenberg.org/ebooks/824', 'en', 277), +(40379, 'Anglo-Saxon Primer, With Grammar, Notes, and Glossary\r\nEighth Edition Revised', 'Sweet, Henry', '2010-11-14', 84, 'https://www.gutenberg.org/ebooks/34316', 'en', 2476), +(40380, 'The Upanishads', NULL, '2002-06-01', 297, 'https://www.gutenberg.org/ebooks/3283', 'en', 10701), +(40381, 'The Upward Path: A Reader For Colored Children', NULL, '2010-03-01', 118, 'https://www.gutenberg.org/ebooks/31456', 'en', 1019), +(40382, 'From the Log of the Velsa', 'Bennett, Arnold', '2017-07-15', 23, 'https://www.gutenberg.org/ebooks/55113', 'en', 1408), +(40383, 'The Struggles of Brown, Jones, and Robinson\nBy One of the Firm', 'Trollope, Anthony', '2008-12-14', 34, 'https://www.gutenberg.org/ebooks/27533', 'en', 5080), +(40384, 'Socialism and American ideals', 'Myers, William Starr', '2004-10-11', 10, 'https://www.gutenberg.org/ebooks/13706', 'en', 14425), +(40385, 'Mémoires de Madame la Duchesse de Tourzel\nGouvernante des enfants de France pendant les années 1789 à 1795', 'Tourzel, Louise Elisabeth, Duchesse de', '2011-01-11', 11, 'https://www.gutenberg.org/ebooks/34918', 'fr', 5208), +(40386, 'Agnes of Sorrento', 'Stowe, Harriet Beecher', '2013-07-01', 35, 'https://www.gutenberg.org/ebooks/43076', 'en', 14678), +(40387, 'John Halifax, Gentleman', 'Craik, Dinah Maria Mulock', '2000-10-01', 48, 'https://www.gutenberg.org/ebooks/2351', 'en', 6434), +(40388, 'The Covent Garden Theatre, or Pasquin Turn\'d Drawcansir', 'Macklin, Charles', '2009-12-02', 13, 'https://www.gutenberg.org/ebooks/30584', 'en', 1088), +(40389, 'The Life and Adventures of Kit Carson, the Nestor of the Rocky Mountains, from Facts Narrated by Himself', 'Peters, De Witt C. (De Witt Clinton)', '2005-07-12', 46, 'https://www.gutenberg.org/ebooks/16274', 'en', 930), +(40390, 'Venice', 'Menpes, Dorothy', '2013-06-20', 14, 'https://www.gutenberg.org/ebooks/42998', 'en', 12180), +(40391, 'Mary Rose of Mifflin', 'Sterrett, Frances R. (Frances Roberta)', '2007-07-10', 16, 'https://www.gutenberg.org/ebooks/22041', 'en', 262), +(40392, 'Pelham — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-23', 53, 'https://www.gutenberg.org/ebooks/7623', 'en', 137), +(40393, 'Der Erbe: Roman. Zweiter Band.', 'Gerstäcker, Friedrich', '2014-08-04', 9, 'https://www.gutenberg.org/ebooks/46504', 'de', 138), +(40394, 'The Panama Canal: A history and description of the enterprise', 'Mills, J. Saxon (John Saxon)', '2010-10-24', 33, 'https://www.gutenberg.org/ebooks/34124', 'en', 1232), +(40395, 'The White Chief: A Legend of Northern Mexico', 'Reid, Mayne', '2007-10-25', 23, 'https://www.gutenberg.org/ebooks/23193', 'en', 14679), +(40396, 'Herman Melville, Mariner and Mystic', 'Weaver, Raymond M. (Raymond Melbourne)', '2015-11-15', 31, 'https://www.gutenberg.org/ebooks/50461', 'en', 14680), +(40397, 'Sister Carmen', 'Corvus, M.', '2004-12-30', 9, 'https://www.gutenberg.org/ebooks/14523', 'en', 61), +(40398, 'The Tale of Timothy Turtle', 'Bailey, Arthur Scott', '2007-03-01', 26, 'https://www.gutenberg.org/ebooks/20716', 'en', 625), +(40399, 'Allan and the Holy Flower', 'Haggard, H. Rider (Henry Rider)', '2004-02-01', 132, 'https://www.gutenberg.org/ebooks/5174', 'en', 7017), +(40400, 'Richelieu: A Tale of France, v. 2/3', 'James, G. P. R. (George Payne Rainsford)', '2013-11-21', 10, 'https://www.gutenberg.org/ebooks/44253', 'en', 2895), +(40401, 'The Popular Story of Blue Beard\nEmbellished with neat Engravings', 'Perrault, Charles', '2014-04-14', 17, 'https://www.gutenberg.org/ebooks/45381', 'en', 8780), +(40402, 'Roster of Company I, 24th Regiment, Massachusetts Volunteers', 'Amory, Charles Bean', '2011-07-09', 2, 'https://www.gutenberg.org/ebooks/36673', 'en', 14681), +(40403, 'Candide; Eli, Avosydämisen ja vilpittömän nuoren miehen ihmeelliset seikkailut', 'Voltaire', '2016-06-15', 8, 'https://www.gutenberg.org/ebooks/52336', 'fi', 1850), +(40404, 'The Sword of Damocles: A Story of New York Life', 'Green, Anna Katharine', '2010-07-31', 30, 'https://www.gutenberg.org/ebooks/33301', 'en', 1660), +(40405, 'The Saint of the Dragon\'s Dale: A Fantastical Tale', 'Davis, William Stearns', '2018-08-06', 12, 'https://www.gutenberg.org/ebooks/57644', 'en', 1159), +(40406, 'Etude Nouvelle in A Flat and Etude in C Major, Op. 10, No. 1', NULL, '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10183', 'en', 6376), +(40407, 'The Bobbsey Twins on a Houseboat', 'Hope, Laura Lee', '2004-06-01', 46, 'https://www.gutenberg.org/ebooks/5948', 'en', 2266), +(40408, 'Newfoundland and the Jingoes: An Appeal to England\'s Honor', 'Fretwell, John', '2008-05-03', 3, 'https://www.gutenberg.org/ebooks/25264', 'en', 14682), +(40409, 'The Cruise of the Dazzler', 'London, Jack', '2004-02-01', 63, 'https://www.gutenberg.org/ebooks/11051', 'en', 998), +(40410, '1000 Things Worth Knowing', 'Fowler, Nathaniel C. (Nathaniel Clark)', '2018-03-20', 511, 'https://www.gutenberg.org/ebooks/56796', 'en', 1081), +(40411, 'The Crimson Flash', 'Snell, Roy J. (Roy Judson)', '2012-12-28', 10, 'https://www.gutenberg.org/ebooks/41721', 'en', 167), +(40412, 'Troïlus et Cressida', 'Shakespeare, William', '2006-05-04', 35, 'https://www.gutenberg.org/ebooks/18313', 'fr', 14683), +(40413, 'The Shepherd Of My Soul', 'Callan, Charles J. (Charles Jerome)', '2009-12-02', 11, 'https://www.gutenberg.org/ebooks/30579', 'en', 14684), +(40414, 'David Copperfield', 'Dickens, Charles', '2006-01-01', 24, 'https://www.gutenberg.org/ebooks/9744', 'en', 1080), +(40415, 'Kalatyttö', 'Bjørnson, Bjørnstjerne', '2015-03-12', 23, 'https://www.gutenberg.org/ebooks/48463', 'fi', 1080), +(40416, 'Valerie', 'Marryat, Frederick', '2007-12-21', 12, 'https://www.gutenberg.org/ebooks/23952', 'en', 61), +(40417, 'The Nursery, October 1881, Vol. XXX\nA Monthly Magazine for Youngest Readers', 'Various', '2013-02-22', 10, 'https://www.gutenberg.org/ebooks/42159', 'en', 4641), +(40418, 'Bell\'s Cathedrals: A Short Account of Romsey Abbey\r\nA Description of the Fabric and Notes on the History of the Convent of SS. Mary & Ethelfleda', 'Perkins, Thomas, Rev.', '2007-10-03', 13, 'https://www.gutenberg.org/ebooks/22880', 'en', 14685), +(40419, 'The Jew and Other Stories', 'Turgenev, Ivan Sergeevich', '2005-08-01', 26, 'https://www.gutenberg.org/ebooks/8696', 'en', 13787), +(40420, 'Language: An Introduction to the Study of Speech', 'Sapir, Edward', '2004-06-01', 178, 'https://www.gutenberg.org/ebooks/12629', 'en', 6054), +(40421, 'Joan of Arc: A Play in Five Acts', 'Sargant, J. A. (Jane Alice)', '2011-04-12', 23, 'https://www.gutenberg.org/ebooks/35837', 'en', 8294), +(40422, 'Colonization and Christianity\nA popular history of the treatment of the natives by the\nEuropeans in all their colonies', 'Howitt, William', '2017-05-27', 20, 'https://www.gutenberg.org/ebooks/54800', 'en', 14686), +(40423, 'Prince and Rover of Cloverfield Farm', 'Orton, Helen Fuller', '2009-04-22', 19, 'https://www.gutenberg.org/ebooks/28586', 'en', 1287), +(40424, 'Punch or the London Charivari, Vol. 147, November 25, 1914', 'Various', '2009-07-19', 19, 'https://www.gutenberg.org/ebooks/29454', 'en', 134), +(40425, 'The Shadow of Life', 'Sedgwick, Anne Douglas', '2013-06-17', 21, 'https://www.gutenberg.org/ebooks/42965', 'en', 109), +(40426, 'The Fur Bringers: A Story of the Canadian Northwest', 'Footner, Hulbert', '2005-07-13', 17, 'https://www.gutenberg.org/ebooks/16289', 'en', 551), +(40427, 'Comrades of the Saddle; Or, The Young Rough Riders of the Plains', 'Webster, Frank V.', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/11890', 'en', 4365), +(40428, 'History of the Jesuits: Their origin, progress, doctrines, and designs', 'Nicolini, G. B. (Giovanni Battista)', '2019-06-10', 54, 'https://www.gutenberg.org/ebooks/59723', 'en', 11517), +(40429, 'When Patty Went to College', 'Webster, Jean', '2007-05-29', 51, 'https://www.gutenberg.org/ebooks/21639', 'en', 4642), +(40430, 'The History of Bread: From Pre-historic to Modern Times', 'Ashton, John', '2016-10-05', 24, 'https://www.gutenberg.org/ebooks/53219', 'en', 14687), +(40431, 'String Quartet in C minor, Op. 51 no. 1', 'Brahms, Johannes', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/5189', 'en', 909), +(40432, 'The Claim Jumpers: A Romance', 'White, Stewart Edward', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/10942', 'en', 109), +(40433, 'History of the United Netherlands, 1595', 'Motley, John Lothrop', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/4867', 'en', 3372), +(40434, 'Wood Magic: A Fable', 'Jefferies, Richard', '2008-05-02', 32, 'https://www.gutenberg.org/ebooks/25299', 'en', 4589), +(40435, 'Carry On! A Story of the Fight for Bagdad', 'Strang, Herbert', '2012-01-30', 87, 'https://www.gutenberg.org/ebooks/38714', 'en', 14688), +(40436, 'All\'s Well That Ends Well', 'Shakespeare, William', '1998-11-01', 61, 'https://www.gutenberg.org/ebooks/1529', 'en', 3990), +(40437, 'Sarah Bernhardt as I knew her\nThe Memoirs of Madame Pierre Berton as told to Basil Woon', 'Berton, Pierre, Mme.', '2019-05-15', 22, 'https://www.gutenberg.org/ebooks/59511', 'en', 11607), +(40438, 'World Beyond Pluto', 'Marlowe, Stephen', '2010-06-15', 38, 'https://www.gutenberg.org/ebooks/32820', 'en', 26), +(40439, 'Complete Plays of John Galsworthy', 'Galsworthy, John', '2004-09-26', 15, 'https://www.gutenberg.org/ebooks/4269', 'en', 1088), +(40440, 'Aratra Pentelici, Seven Lectures on the Elements of Sculpture\nGiven before the University of Oxford in Michaelmas Term, 1870', 'Ruskin, John', '2008-06-25', 18, 'https://www.gutenberg.org/ebooks/25897', 'en', 15), +(40441, 'Mufti', 'McNeile, H. C. (Herman Cyril)', '2008-03-29', 40, 'https://www.gutenberg.org/ebooks/24945', 'en', 579), +(40442, 'Lähtevien laivojen kaupunki', 'Kallas, Aino Krohn', '2018-02-15', 12, 'https://www.gutenberg.org/ebooks/56559', 'fi', 175), +(40443, 'Italian Alps\nSketches in the Mountains of Ticino, Lombardy, the Trentino, and Venetia', 'Freshfield, Douglas William', '2014-06-14', 17, 'https://www.gutenberg.org/ebooks/45972', 'en', 14689), +(40444, 'Conversion of a High Priest into a Christian Worker', 'Golden, M. (Meletios)', '2008-01-06', 10, 'https://www.gutenberg.org/ebooks/24179', 'en', 14690), +(40445, 'Hertzian Wave Wireless Telegraphy', 'Fleming, J. A. (John Ambrose), Sir', '2012-01-08', 10, 'https://www.gutenberg.org/ebooks/38526', 'en', 14059), +(40446, 'The Goddess of Reason: A Drama in Five Acts', 'Johnston, Mary', '2016-12-27', 11, 'https://www.gutenberg.org/ebooks/53817', 'en', 11983), +(40447, 'The Trials of the Soldier\'s Wife\nA Tale of the Second American Revolution', 'Abrams, Alex. St. Clair (Alexander St. Clair)', '2006-03-10', 19, 'https://www.gutenberg.org/ebooks/17955', 'en', 403), +(40448, 'Anti-Slavery Poems 2.\r\nPart 2 From Volume III of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 9, 'https://www.gutenberg.org/ebooks/9576', 'en', 4777), +(40449, 'Viaje a America, Tomo 1 de 2\r\nEstados Unidos, Exposición Universal de Chicago, México, Cuba y Puerto Rico', 'Puig y Valls, Rafael', '2015-04-06', 12, 'https://www.gutenberg.org/ebooks/48651', 'es', 747), +(40450, 'L\'illustre Olympie, ou Le St Alexis\nTragedie', 'Desfontaines, Nicolas-Marc', '2006-04-05', 9, 'https://www.gutenberg.org/ebooks/18121', 'fr', 3323), +(40451, 'La Marquise de Sade', 'Rachilde', '2015-08-25', 64, 'https://www.gutenberg.org/ebooks/49783', 'fr', 298), +(40452, 'La philosophie de M. Bergson', 'Farges, Albert', '2005-10-16', 17, 'https://www.gutenberg.org/ebooks/16887', 'fr', 4934), +(40453, '\"Bring Me His Ears\"', 'Mulford, Clarence Edward', '2010-03-19', 126, 'https://www.gutenberg.org/ebooks/31699', 'en', 315), +(40454, 'Der Fall Deruga', 'Huch, Ricarda', '2005-11-27', 49, 'https://www.gutenberg.org/ebooks/17169', 'de', 14691), +(40455, 'At His Gates: A Novel. Vol. 2 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-10', 20, 'https://www.gutenberg.org/ebooks/47619', 'en', 297), +(40456, 'Oldfield: A Kentucky Tale of the Last Century', 'Banks, Nancy Huston', '2011-02-11', 61, 'https://www.gutenberg.org/ebooks/35239', 'en', 1996), +(40457, 'Hymns and Hymnwriters of Denmark', 'Aaberg, J. C. (Jens Christian)', '2009-08-11', 88, 'https://www.gutenberg.org/ebooks/29666', 'en', 14692), +(40458, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 11', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 5, 'https://www.gutenberg.org/ebooks/3870', 'en', 1870), +(40459, 'The History of Antiquity, Vol. 3 (of 6)', 'Duncker, Max', '2012-09-25', 32, 'https://www.gutenberg.org/ebooks/40864', 'en', 1368), +(40460, 'Naisen orja', 'Leino, Eino', '2004-12-20', 17, 'https://www.gutenberg.org/ebooks/14388', 'fi', 61), +(40461, 'Nashville Journal of Medicine and Surgery, Vol. CX. March, 1916. No. 3', 'Various', '2019-03-31', 12, 'https://www.gutenberg.org/ebooks/59175', 'en', 3905), +(40462, 'Tukkikauppa: Nelinäytöksinen kuvaus kansan elämästä', 'Huhtinen, E.', '2018-04-02', 3, 'https://www.gutenberg.org/ebooks/56901', 'fi', 382), +(40463, 'Christie, the King\'s Servant\r\nA Sequel to \"Christie\'s Old Organ\"', 'Walton, O. F., Mrs.', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/10728', 'en', 195), +(40464, 'Dopo il veglione o viceversa', 'Bracco, Roberto', '2011-11-05', 7, 'https://www.gutenberg.org/ebooks/37936', 'it', 407), +(40465, 'Tristram of Blent: An Episode in the Story of an Ancient House', 'Hope, Anthony', '2007-04-04', 26, 'https://www.gutenberg.org/ebooks/20981', 'en', 1351), +(40466, 'The Life of Florence Nightingale, vol. 2 of 2', 'Cook, Edward Tyas, Sir', '2012-07-16', 26, 'https://www.gutenberg.org/ebooks/40058', 'en', 9432), +(40467, 'The Seven Cardinal Sins: Envy and Indolence', 'Sue, Eugène', '2011-11-26', 16, 'https://www.gutenberg.org/ebooks/38142', 'en', 58), +(40468, 'Tales from the German. Volume I.', 'Velde, C. F. van der (Carl Franz)', '2010-05-22', 12, 'https://www.gutenberg.org/ebooks/32478', 'en', 803), +(40469, 'Travelers Five Along Life\'s Highway\r\nJimmy, Gideon Wiggan, the Clown, Wexley Snathers, Bap. Sloan', 'Johnston, Annie F. (Annie Fellows)', '2012-03-10', 77, 'https://www.gutenberg.org/ebooks/39090', 'en', 112), +(40470, 'Mesa Verde: Junior Ranger Booklet', 'United States. National Park Service', '2019-07-19', 138, 'https://www.gutenberg.org/ebooks/59949', 'en', 14693); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(40471, 'Woman\'s Work in the Civil War: A Record of Heroism, Patriotism, and Patience', 'Vaughan, Mary C.', '2007-06-18', 25, 'https://www.gutenberg.org/ebooks/21853', 'en', 2263), +(40472, 'Le débutant: Ouvrage enrichi de nombreux dessins de Busnel, de deux dessins... et d\'un portrait de l\'auteur par St-Charles\r\nRoman de moeurs du journalisme et de la politique dans la\r\nprovince de Québec', 'Bessette, Arsène', '2006-10-08', 14, 'https://www.gutenberg.org/ebooks/19497', 'fr', 589), +(40473, 'The Two Vanrevels', 'Tarkington, Booth', '2002-09-01', 27, 'https://www.gutenberg.org/ebooks/3428', 'en', 1516), +(40474, 'The Dare Boys of 1776', 'Cox, Stephen Angus', '2005-10-01', 17, 'https://www.gutenberg.org/ebooks/9112', 'en', 515), +(40475, 'Maximilian, Prince of Wied\'s, Travels in the Interior of North America, 1832-1834, part 3 and appendix', 'Wied, Maximilian, Prinz von', '2015-02-11', 19, 'https://www.gutenberg.org/ebooks/48235', 'en', 869), +(40476, 'Traité General de la Cuisine Maigre\r\nPotages, entrées et relevés, entremets de légumes, sauces, entremets sucrés, traité de hors d\'oeuvre et savoureux', 'Hélie, Auguste', '2004-11-01', 52, 'https://www.gutenberg.org/ebooks/6966', 'fr', 14694), +(40477, 'A Mummer\'s Tale', 'France, Anatole', '2006-06-09', 22, 'https://www.gutenberg.org/ebooks/18545', 'en', 61), +(40478, 'In the Bishop\'s Carriage', 'Michelson, Miriam', '1996-04-01', 79, 'https://www.gutenberg.org/ebooks/481', 'en', 128), +(40479, '雞肋編', 'Zhuang, Chuo', '2008-12-03', 20, 'https://www.gutenberg.org/ebooks/27398', 'zh', 2525), +(40480, 'The Pilgrim\'s Progress in Words of One Syllable', 'Bunyan, John', '2004-12-01', 61, 'https://www.gutenberg.org/ebooks/7088', 'en', 942), +(40481, 'Poems\nHousehold Edition', 'Emerson, Ralph Waldo', '2004-07-07', 82, 'https://www.gutenberg.org/ebooks/12843', 'en', 8), +(40482, 'The Hammer of Thor', 'Diffin, Charles Willard', '2009-06-22', 64, 'https://www.gutenberg.org/ebooks/29202', 'en', 26), +(40483, 'The Prisoner of the Mill; or, Captain Hayward\'s \"Body Guard\"', 'Hazelton, Harry', '2016-02-28', 11, 'https://www.gutenberg.org/ebooks/51318', 'en', 403), +(40484, 'The Thing from the Lake', 'Ingram, Eleanor M. (Eleanor Marie)', '2007-12-04', 30, 'https://www.gutenberg.org/ebooks/23738', 'en', 14695), +(40485, 'Puukkojunkkarit', 'Alkio, Santeri', '2004-11-09', 16, 'https://www.gutenberg.org/ebooks/13991', 'fi', 98), +(40486, 'The Merry Anne', 'Merwin, Samuel', '2016-05-01', 14, 'https://www.gutenberg.org/ebooks/51916', 'en', 5831), +(40487, 'El deseo', 'Sudermann, Hermann', '2008-07-17', 120, 'https://www.gutenberg.org/ebooks/26078', 'es', 14696), +(40488, 'Vaiheita: Kokoelma kertomuksia', 'Strindberg, August', '2017-03-29', 10, 'https://www.gutenberg.org/ebooks/54458', 'fi', 4836), +(40489, 'Ruth Arnold\r\nor, the Country Cousin', 'Byerley, Lucy', '2006-07-07', 15, 'https://www.gutenberg.org/ebooks/18777', 'en', 5372), +(40490, 'Malay Magic\r\nBeing an introduction to the folklore and popular religion of the Malay Peninsula', 'Skeat, Walter William', '2015-01-04', 104, 'https://www.gutenberg.org/ebooks/47873', 'en', 14697), +(40491, 'A Doctor of the Old School — Complete', 'Maclaren, Ian', '2004-08-09', 31, 'https://www.gutenberg.org/ebooks/9320', 'en', 1563), +(40492, 'Rustic Chivalry (Cavalleria Rusticana): Melodrama in One Act', NULL, '2015-01-17', 20, 'https://www.gutenberg.org/ebooks/48007', 'en', 1966), +(40493, 'Wilson\'s Tales of the Borders and of Scotland, Volume 06', NULL, '2009-06-03', 12, 'https://www.gutenberg.org/ebooks/29030', 'en', 3672), +(40494, 'Borneo and the Indian Archipelago\nwith drawings of costume and scenery', 'Marryat, Frank', '2008-10-08', 27, 'https://www.gutenberg.org/ebooks/26844', 'en', 14698), +(40495, 'Here, There and Everywhere', 'Hamilton, Frederic, Lord', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6368', 'en', 885), +(40496, 'The Free Lances: A Romance of the Mexican Valley', 'Reid, Mayne', '2009-02-04', 16, 'https://www.gutenberg.org/ebooks/27996', 'en', 14699), +(40497, 'Quadros de historia portugueza', 'Silveira da Mota, I. F.', '2010-01-10', 8, 'https://www.gutenberg.org/ebooks/30921', 'pt', 14700), +(40498, 'One Hundred Years in Yosemite: The Story of a Great Park and Its Friends', 'Russell, Carl Parcher', '2018-11-17', 11, 'https://www.gutenberg.org/ebooks/58295', 'en', 14701), +(40499, 'Erewhon Revisited Twenty Years Later, Both by the Original Discoverer of the Country and by His Son', 'Butler, Samuel', '1999-11-01', 32, 'https://www.gutenberg.org/ebooks/1971', 'en', 1483), +(40500, 'The Crime Doctor', 'Hornung, E. W. (Ernest William)', '2011-09-08', 30, 'https://www.gutenberg.org/ebooks/37338', 'en', 61), +(40501, 'The Blocking of Zeebrugge', 'Carpenter, Alfred Francis Blakeney', '2014-05-22', 15, 'https://www.gutenberg.org/ebooks/45718', 'en', 14702), +(40502, 'Der Schwimmer', 'Mackay, John Henry', '2005-02-15', 20, 'https://www.gutenberg.org/ebooks/15068', 'de', 11284), +(40503, 'Circe\'s Daughter', 'Craven, Priscilla', '2019-04-24', 26, 'https://www.gutenberg.org/ebooks/59347', 'en', 847), +(40504, 'Experimental Researches in Electricity, Volume 1', 'Faraday, Michael', '2005-02-09', 142, 'https://www.gutenberg.org/ebooks/14986', 'en', 2979), +(40505, 'Sinister Street, vol. 2', 'MacKenzie, Compton', '2010-09-22', 35, 'https://www.gutenberg.org/ebooks/33798', 'en', 9472), +(40506, 'The Battle of The Press\r\nAs Told in the Story of the Life of Richard Carlile by His Daughter, Theophila Carlile Campbell', 'Campbell, Theophila Carlile', '2011-12-22', 20, 'https://www.gutenberg.org/ebooks/38370', 'en', 14703), +(40507, 'Initial Studies in American Letters', 'Beers, Henry A. (Henry Augustin)', '2005-05-18', 10, 'https://www.gutenberg.org/ebooks/15854', 'en', 3043), +(40508, 'The Story of Rustem, and other Persian hero tales from Firdusi', 'Renninger, Elizabeth D.', '2018-09-01', 32, 'https://www.gutenberg.org/ebooks/57827', 'en', 388), +(40509, 'Paródia ao primeiro canto dos Lusíadas de Camões por quatro estudantes de Évora em 1589', 'Varela, Bartolomeu, active 1589-1619', '2006-12-20', 45, 'https://www.gutenberg.org/ebooks/20149', 'pt', 14704), +(40510, 'Diary of an Enlisted Man', 'Van Alstyne, Lawrence', '2012-09-28', 16, 'https://www.gutenberg.org/ebooks/40890', 'en', 14705), +(40511, 'A Correct Account of the Horrible Occurrence Which Took Place at a Public-House in St. James\'s Market\r\nIn Which It Was Discovered That the Right Rev. Father in God the Bishop of Clogher, Lately Transferred From the Bishopric of Ferns, Was a Principal Actor With a Common Soldier! To the Disgrace Not Only of the Cloth, to Which He Was Attached, and as a Commissioner of the Board of Education, and a Dictator of Public Morals, but as a Member of That Nation Which Gave Him Birth!', 'Anonymous', '2018-10-07', 33, 'https://www.gutenberg.org/ebooks/58053', 'en', 14706), +(40512, 'The Bondage and Travels of Johann Schiltberger, a Native of Bavaria, in Europe, Asia, and Africa, 1396-1427', 'Schiltberger, Johannes', '2016-07-12', 35, 'https://www.gutenberg.org/ebooks/52569', 'en', 14707), +(40513, 'Trilby', 'Du Maurier, George', '2012-05-29', 184, 'https://www.gutenberg.org/ebooks/39858', 'en', 14708), +(40514, 'Tetherstones', 'Dell, Ethel M. (Ethel May)', '2019-04-01', 34, 'https://www.gutenberg.org/ebooks/59181', 'en', 3909), +(40515, 'Whitman\'s Ride Through Savage Lands, with Sketches of Indian Life', 'Nixon, Oliver W. (Oliver Woodson)', '2013-01-29', 7, 'https://www.gutenberg.org/ebooks/41942', 'en', 5302), +(40516, 'Nellie Bly\'s Book\r\nAround the World in Seventy-Two Days', 'Bly, Nellie', '2007-04-04', 11, 'https://www.gutenberg.org/ebooks/20975', 'en', 819), +(40517, 'Hegel\'s Philosophy of Mind', 'Hegel, Georg Wilhelm Friedrich', '2012-03-05', 313, 'https://www.gutenberg.org/ebooks/39064', 'en', 779), +(40518, 'Crying for the Light; Or, Fifty Years Ago. Vol. 3 [of 3]', 'Ritchie, J. Ewing (James Ewing)', '2011-07-21', 6, 'https://www.gutenberg.org/ebooks/36810', 'en', 8215), +(40519, 'James Fenimore Cooper\nAmerican Men of Letters', 'Lounsbury, Thomas Raynesford', '2006-10-04', 4, 'https://www.gutenberg.org/ebooks/19463', 'en', 6216), +(40520, 'The Female Gamester: A Tragedy', 'Howard, Gorges Edmond', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/7840', 'en', 1088), +(40521, 'The Lake Dwellings of Ireland\nOr ancient lacustrine habitations of Erin, commonly called crannogs.', 'Wood-Martin, W. G. (William Gregory)', '2015-06-28', 10, 'https://www.gutenberg.org/ebooks/49313', 'en', 14709), +(40522, 'The Bible, King James version, Book 34: Nahum', 'Anonymous', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/8034', 'en', 6728), +(40523, 'Indian Fairy Tales', NULL, '2010-02-07', 33, 'https://www.gutenberg.org/ebooks/31209', 'en', 8566), +(40524, 'Strange Stories from a Chinese Studio (Volumes 1 and 2)', 'Pu, Songling', '2013-09-03', 216, 'https://www.gutenberg.org/ebooks/43629', 'en', 14710), +(40525, 'Lost Illusions', 'Balzac, Honoré de', '2004-08-11', 190, 'https://www.gutenberg.org/ebooks/13159', 'en', 607), +(40526, 'In Darkest England, and the Way Out', 'Booth, William', '1996-03-01', 198, 'https://www.gutenberg.org/ebooks/475', 'en', 3336), +(40527, 'Belinda: An April Folly in Three Acts', 'Milne, A. A. (Alan Alexander)', '2004-11-01', 22, 'https://www.gutenberg.org/ebooks/6992', 'en', 317), +(40528, 'Narrative of the Voyages Round the World, Performed by Captain James Cook\r\nWith an Account of His Life During the Previous and Intervening Periods', 'Kippis, Andrew', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8808', 'en', 9934), +(40529, 'Supplement to \"Punch, Or The London Charivari.\"—October 14, 1914\r\n\"Punch\" and the Prussian Bully', 'Various', '2009-03-13', 27, 'https://www.gutenberg.org/ebooks/28324', 'en', 2328), +(40530, 'Portraits littéraires, Tome II', 'Sainte-Beuve, Charles Augustin', '2004-11-06', 20, 'https://www.gutenberg.org/ebooks/13965', 'fr', 1765), +(40531, 'Abridgment of the Debates of Congress, from 1789 to 1856, Vol. 4 (of 16)', 'United States. Congress', '2014-11-04', 12, 'https://www.gutenberg.org/ebooks/47289', 'en', 1720), +(40532, 'The Last Days of Pekin', 'Loti, Pierre', '2015-06-03', 24, 'https://www.gutenberg.org/ebooks/49121', 'en', 14711), +(40533, 'The Pilgrims of the Rhine', 'Lytton, Edward Bulwer Lytton, Baron', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/8206', 'en', 580), +(40534, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 687\r\nFebruary 24, 1877', 'Various', '2014-09-24', 16, 'https://www.gutenberg.org/ebooks/46955', 'en', 18), +(40535, 'Key Out of Time', 'Norton, Andre', '2006-10-28', 178, 'https://www.gutenberg.org/ebooks/19651', 'en', 14712), +(40536, 'Diario del viaje al rio Bermejo', 'Morillo, Francisco', '2006-07-08', 10, 'https://www.gutenberg.org/ebooks/18783', 'es', 14713), +(40537, 'The Dynamiter', 'Stevenson, Robert Louis', '1996-09-01', 123, 'https://www.gutenberg.org/ebooks/647', 'en', 179), +(40538, 'Sir Charles Napier', 'Butler, William Francis, Sir', '2015-01-06', 16, 'https://www.gutenberg.org/ebooks/47887', 'en', 14714), +(40539, 'Onnen kultapoika: Romaani. 2/2', 'Jókai, Mór', '2016-01-02', 14, 'https://www.gutenberg.org/ebooks/50830', 'fi', 2326), +(40540, 'Punch, or the London Charivari, Vol. 159, 1920-07-28', 'Various', '2005-08-29', 8, 'https://www.gutenberg.org/ebooks/16619', 'en', 134), +(40541, 'The Plague at Marseilles Consider\'d\r\nWith Remarks Upon the Plague in General, Shewing Its Cause and Nature of Infection, with Necessary Precautions to Prevent the Speading of That Direful Distemper', 'Bradley, Richard', '2010-03-28', 22, 'https://www.gutenberg.org/ebooks/31807', 'en', 14715), +(40542, 'Fishing with Floating Flies', 'Camp, Samuel G. (Samuel Granger)', '2014-07-01', 21, 'https://www.gutenberg.org/ebooks/46169', 'en', 14716), +(40543, 'Child Life in Prose', NULL, '2010-12-02', 10, 'https://www.gutenberg.org/ebooks/34549', 'en', 388), +(40544, 'One Snowy Night\nLong ago at Oxford', 'Holt, Emily Sarah', '2009-02-02', 19, 'https://www.gutenberg.org/ebooks/27962', 'en', 12198), +(40545, '\"The Red Watch\": With the First Canadian Division in Flanders', 'Currie, John Allister', '2009-02-18', 17, 'https://www.gutenberg.org/ebooks/28116', 'en', 1056), +(40546, 'Men\'s Wives', 'Thackeray, William Makepeace', '1999-12-01', 40, 'https://www.gutenberg.org/ebooks/1985', 'en', 3092), +(40547, 'Anzeiger für Kunde der deutschen Vorzeit, 27. Band, 1880\nOrgan des Germanischen Museums', 'Various', '2016-12-07', 8, 'https://www.gutenberg.org/ebooks/53689', 'de', 8580), +(40548, 'Vida de Cervantes', 'Mayans y Siscar, Gregorio', '2018-11-10', 21, 'https://www.gutenberg.org/ebooks/58261', 'es', 14295), +(40549, 'The Bride of the Nile — Volume 03', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5519', 'en', 803), +(40550, 'Hawkins Electrical Guide v. 01 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2011-12-22', 54, 'https://www.gutenberg.org/ebooks/38384', 'en', 1863), +(40551, 'Sketches and Studies in Italy and Greece, First Series', 'Symonds, John Addington', '2005-02-08', 14, 'https://www.gutenberg.org/ebooks/14972', 'en', 4713), +(40552, 'Mark Tidd, Manufacturer', 'Kelland, Clarence Budington', '2018-05-29', 8, 'https://www.gutenberg.org/ebooks/57229', 'en', 14658), +(40553, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2008-05-26', 413, 'https://www.gutenberg.org/ebooks/25609', 'en', 2951), +(40554, 'Petit traité des punitions et des récompenses à l\'usage des maîtres et des parents', 'Hément, Félix', '2012-03-24', 14, 'https://www.gutenberg.org/ebooks/39256', 'fr', 14717), +(40555, 'The Yellow Rose', 'Jókai, Mór', '2011-01-10', 29, 'https://www.gutenberg.org/ebooks/34911', 'en', 7076), +(40556, 'The Wisdom of Father Brown', 'Chesterton, G. K. (Gilbert Keith)', '1995-02-01', 396, 'https://www.gutenberg.org/ebooks/223', 'en', 3319), +(40557, 'The After House', 'Rinehart, Mary Roberts', '2000-10-01', 67, 'https://www.gutenberg.org/ebooks/2358', 'en', 1335), +(40558, 'The Silent Watchers\nEngland\'s Navy during the Great War: What It Is, and What We Owe to It', 'Copplestone, Bennet', '2015-03-15', 8, 'https://www.gutenberg.org/ebooks/48497', 'en', 4131), +(40559, 'Social Work; Essays on the Meeting Ground of Doctor and Social Worker', 'Cabot, Richard C. (Richard Clarke)', '2015-07-29', 16, 'https://www.gutenberg.org/ebooks/49545', 'en', 14718), +(40560, 'Frank Merriwell\'s Pursuit; Or, How to Win', 'Standish, Burt L.', '2007-10-03', 16, 'https://www.gutenberg.org/ebooks/22874', 'en', 3242), +(40561, 'The Camp Fire Girls at Sunrise Hill', 'Vandercook, Margaret', '2005-08-01', 8, 'https://www.gutenberg.org/ebooks/8662', 'en', 622), +(40562, 'Under the Great Bear', 'Munroe, Kirk', '2006-09-11', 14, 'https://www.gutenberg.org/ebooks/19235', 'en', 1229), +(40563, 'The Oak Ridge ALGOL Compiler for the Control Data Corporation 1604\nPreliminary Programmer\'s Manual', 'Bumgarner, L. L.', '2015-11-17', 12, 'https://www.gutenberg.org/ebooks/50468', 'en', 14719), +(40564, 'Letters on an Elk Hunt', 'Stewart, Elinore Pruitt', '2009-04-21', 121, 'https://www.gutenberg.org/ebooks/28572', 'en', 14720), +(40565, 'Lafayette, We Come!\r\nThe Story of How a Young Frenchman Fought for Liberty in America and How America Now Fights for Liberty in France', 'Holland, Rupert Sargent', '2013-09-29', 3, 'https://www.gutenberg.org/ebooks/43843', 'en', 566), +(40566, 'Castes and Tribes of Southern India. Vol. 1 of 7', 'Thurston, Edgar', '2013-06-21', 548, 'https://www.gutenberg.org/ebooks/42991', 'en', 5903), +(40567, 'Napoléon Le Petit', 'Hugo, Victor', '2007-07-11', 43, 'https://www.gutenberg.org/ebooks/22048', 'fr', 14721), +(40568, 'The Commentaries of Cæsar', 'Trollope, Anthony', '2017-11-09', 58, 'https://www.gutenberg.org/ebooks/55926', 'en', 14722), +(40569, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 570, October 13, 1832', 'Various', '2004-04-01', 1, 'https://www.gutenberg.org/ebooks/11864', 'en', 133), +(40570, 'Toots and His Friends', 'Woods, Kate Tannatt', '2014-04-14', 13, 'https://www.gutenberg.org/ebooks/45388', 'en', 859), +(40571, 'The Boot and Shoe Manufacturers\' Assistant and Guide.\r\nContaining a Brief History of the Trade. History of India-rubber and Gutta-percha, and Their Application to the Manufacture of Boots and Shoes. Full Instructions in the Art, With Diagrams and Scales, Etc., Etc. Vulcanization and Sulphurization, English and American Patents. With an Elaborate Treatise on Tanning.', NULL, '2019-01-03', 12, 'https://www.gutenberg.org/ebooks/58605', 'en', 3767), +(40572, 'Jack Archer: A Tale of the Crimea', 'Henty, G. A. (George Alfred)', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/11058', 'en', 13620), +(40573, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1614-17', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4893', 'en', 4328), +(40574, 'Encyclopaedia Britannica, 11th Edition, \"Harmony\" to \"Heanor\"\r\nVolume 13, Slice 1', 'Various', '2012-05-05', 31, 'https://www.gutenberg.org/ebooks/39632', 'en', 1081), +(40575, 'The Traditional Games of England, Scotland, and Ireland (Vol 2 of 2)\r\nWith Tunes, Singing-Rhymes, and Methods of Playing etc.', 'Gomme, Alice Bertha', '2012-12-29', 11, 'https://www.gutenberg.org/ebooks/41728', 'en', 14723), +(40576, 'Fortuna: Een Roman uit het Noorsch (Voortzetting van \"Vergif\")', 'Kielland, Alexander Lange', '2010-07-31', 7, 'https://www.gutenberg.org/ebooks/33308', 'nl', 61), +(40577, 'The History of Don Quixote, Volume 2, Part 38', 'Cervantes Saavedra, Miguel de', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/5941', 'en', 2176), +(40578, 'Renaissance in Italy, Volume 5 (of 7)\r\nItalian Literature, Part 2', 'Symonds, John Addington', '2011-06-16', 24, 'https://www.gutenberg.org/ebooks/36448', 'en', 14724), +(40579, 'Portraits et études; Lettres inédites de Georges Bizet', 'Imbert, Hugues', '2008-06-21', 22, 'https://www.gutenberg.org/ebooks/25863', 'fr', 14725), +(40580, 'Le Roman Comique du Chat Noir', 'Montoya, Gabriel', '2013-10-29', 10, 'https://www.gutenberg.org/ebooks/44068', 'fr', 14726), +(40581, 'Colored Troops in the French Army\r\nA Report from the Department of State Relating to the Colored Troops in the French Army and the Number of French Colonial Troops in the Occupied Territory', 'United States. Department of State', '2018-12-09', 13, 'https://www.gutenberg.org/ebooks/58437', 'en', 14727), +(40582, 'Bartek Sankari', 'Sienkiewicz, Henryk', '2005-01-17', 17, 'https://www.gutenberg.org/ebooks/14718', 'fi', 61), +(40583, 'The Sword of Deborah: First-hand impressions of the British Women\'s Army in France', 'Jesse, F. Tennyson (Fryniwyd Tennyson)', '2010-10-25', 27, 'https://www.gutenberg.org/ebooks/33906', 'en', 4418), +(40584, 'Christ\'s Journal', 'Bartlett, Paul Alexander', '2012-04-08', 28, 'https://www.gutenberg.org/ebooks/39400', 'en', 609), +(40585, 'Pulp and Paper Magazine, Vol. XIII, No. 20, October 15, 1916\r\nA Semi-Monthly Magazine Devoted to the Science and Practice of the Pulp and Paper Manufacturing Industry with an Up-to-date Review of Conditions in the Allied Trades.', 'Various', '2016-08-29', 7, 'https://www.gutenberg.org/ebooks/52931', 'en', 14728), +(40586, 'Kantelettaren tutkimuksia 2\r\nLuojan virsi. Viron orjan virsi. Kahdenlaisella runomitalla', 'Krohn, Julius', '2014-06-15', 8, 'https://www.gutenberg.org/ebooks/45986', 'fi', 329), +(40587, 'Great Cities of the United States\nHistorical, Descriptive, Commercial, Industrial', 'Kramer, Stephen Elliott', '2014-02-09', 17, 'https://www.gutenberg.org/ebooks/44854', 'en', 14729), +(40588, 'Personal Poems II\r\nPart 2 from Volume IV of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 14, 'https://www.gutenberg.org/ebooks/9582', 'en', 350), +(40589, 'Loppiaisaatto eli Miten mielitte', 'Shakespeare, William', '2009-01-05', 17, 'https://www.gutenberg.org/ebooks/27708', 'fi', 6795), +(40590, 'Danger Signals\r\nRemarkable, Exciting and Unique Examples of the Bravery, Daring and Stoicism in the Midst of Danger of Train Dispatchers and Railroad Engineers', 'Brady, Jasper Ewing', '2006-08-08', 27, 'https://www.gutenberg.org/ebooks/19007', 'en', 1239), +(40591, 'The Speculations of John Steele', 'Barr, Robert', '2017-08-10', 16, 'https://www.gutenberg.org/ebooks/55328', 'en', 5080), +(40592, 'Harper\'s Young People, 1881 Index\nAn Illustrated Weekly', 'Various', '2015-08-24', 7, 'https://www.gutenberg.org/ebooks/49777', 'en', 479), +(40593, 'The Elements of Character', 'Ware, Mary G. (Mary Greene)', '2005-07-01', 6, 'https://www.gutenberg.org/ebooks/8450', 'en', 1794), +(40594, '\"Colony,\"--or \"Free State\"? \"Dependence,\"--or \"Just Connection\"? \"Empire,\"--or \"Union\"?', 'Snow, Alpheus Henry', '2005-10-14', 8, 'https://www.gutenberg.org/ebooks/16873', 'en', 14730), +(40595, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 06: Paris', 'Casanova, Giacomo', '2004-12-10', 16, 'https://www.gutenberg.org/ebooks/2956', 'en', 4164), +(40596, 'The Girls of Central High in Camp; Or, the Old Professor\'s Secret', 'Morrison, Gertrude W.', '2009-05-09', 18, 'https://www.gutenberg.org/ebooks/28740', 'en', 7327), +(40597, '幽夢影 — Part 1', 'Zhang, Chao', '2005-02-01', 14, 'https://www.gutenberg.org/ebooks/7418', 'zh', 3769), +(40598, 'When the West Was Young', 'Bechdolt, Frederick R. (Frederick Ritchie)', '2009-08-15', 17, 'https://www.gutenberg.org/ebooks/29692', 'en', 5921), +(40599, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 1\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 22, 'https://www.gutenberg.org/ebooks/3884', 'en', 1870), +(40600, 'Trif and Trixy\r\nA story of a dreadfully delightful little girl and her adoring and tormented parents, relations, and friends', 'Habberton, John', '2016-04-18', 24, 'https://www.gutenberg.org/ebooks/51788', 'en', 2739), +(40601, 'Edward MacDowell: A Great American Tone Poet, His Life and Music', 'Porte, John Fielder', '2004-11-28', 13, 'https://www.gutenberg.org/ebooks/14185', 'en', 10877), +(40602, 'Two Mothers', 'Neihardt, John G.', '2016-12-01', 5, 'https://www.gutenberg.org/ebooks/53642', 'en', 427), +(40603, 'The Blue Grass Seminary Girls\' Vacation Adventures\r\nOr, Shirley Willing to the Rescue', 'Burnett, Carolyn Judson', '2011-09-03', 7, 'https://www.gutenberg.org/ebooks/37307', 'en', 14731), +(40604, 'The Boy Aviators with the Air Raiders: A Story of the Great World War', 'Goldfrap, John Henry', '2014-05-23', 24, 'https://www.gutenberg.org/ebooks/45727', 'en', 146), +(40605, 'Hira Singh : when India came to fight in Flanders', 'Mundy, Talbot', '2003-08-01', 54, 'https://www.gutenberg.org/ebooks/4400', 'en', 579), +(40606, 'The Works of Christopher Marlowe, Vol. 3 (of 3)', 'Marlowe, Christopher', '2007-04-30', 39, 'https://www.gutenberg.org/ebooks/21262', 'en', 54), +(40607, 'History of a Six Weeks\' Tour Through a Part of France, Switzerland, Germany, and Holland:\r\nWith Letters Descriptive of a Sail Round the Lake of Geneva, and of the Glaciers of Chamouni.', 'Shelley, Percy Bysshe', '2016-08-12', 72, 'https://www.gutenberg.org/ebooks/52790', 'en', 14732), +(40608, 'Les vacances', 'Ségur, Sophie, comtesse de', '2005-02-14', 25, 'https://www.gutenberg.org/ebooks/15057', 'fr', 168), +(40609, 'Carpet Beetles and Their Control', 'Back, E. A. (Ernest Adna)', '2019-04-28', 7, 'https://www.gutenberg.org/ebooks/59378', 'en', 14733), +(40610, 'The Cavalry General', 'Xenophon', '1998-01-01', 37, 'https://www.gutenberg.org/ebooks/1172', 'en', 14734), +(40611, 'The Cultural History of Marlborough, Virginia\r\nAn Archeological and Historical Investigation of the Port Town for Stafford County and the Plantation of John Mercer, Including Data Supplied by Frank M. Setzler and Oscar H. Darter', 'Watkins, C. Malcolm', '2012-07-16', 22, 'https://www.gutenberg.org/ebooks/40255', 'en', 14735), +(40612, 'Michael Row the Boat Ashore', 'McGuinn, Roger', '2003-12-01', 2, 'https://www.gutenberg.org/ebooks/10525', 'en', 12789), +(40613, 'A Senhora Viscondessa', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2008-02-27', 10, 'https://www.gutenberg.org/ebooks/24710', 'pt', 3856), +(40614, 'Handbuch der chemischen Technologie\nAchte Auflage', 'Wagner, Johannes Rudolf', '2018-01-07', 6, 'https://www.gutenberg.org/ebooks/56330', 'de', 14736), +(40615, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 20, No. 33, November 1877', 'Various', '2012-11-17', 64, 'https://www.gutenberg.org/ebooks/41387', 'en', 210), +(40616, 'The Strife of the Roses and Days of the Tudors in the West', 'Rogers, W. H. Hamilton (William Henry Hamilton)', '2010-06-03', 16, 'https://www.gutenberg.org/ebooks/32675', 'en', 2736), +(40617, 'Die Protozoen als Krankheitserreger des Menschen und der Hausthiere\nFür Ärzte, Thierärzte und Zoologen', 'Schneidemühl, Georg', '2016-05-01', 9, 'https://www.gutenberg.org/ebooks/51929', 'de', 14737), +(40618, 'Honoré de Balzac', 'Lumet, Louis', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3625', 'en', 12428), +(40619, 'Paolo Pelliccioni, Volume 1 (of 2)', 'Guerrazzi, Francesco Domenico', '2013-04-10', 10, 'https://www.gutenberg.org/ebooks/42502', 'it', 98), +(40620, 'Πελοποννησιακός Πόλεμος, Τόμος πρώτος', 'Thucydides', '2009-08-28', 40, 'https://www.gutenberg.org/ebooks/29833', 'el', 5990), +(40621, 'The History of Puerto Rico\nFrom the Spanish Discovery to the American Occupation', 'Van Middeldyk, R. A. (Rudolph Adams)', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12272', 'en', 14738), +(40622, 'The Atlantic Monthly, Volume 15, No. 87, January, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2008-07-13', 18, 'https://www.gutenberg.org/ebooks/26047', 'en', 1227), +(40623, 'Negro Folk Rhymes\nWise and Otherwise: With a Study', 'Talley, Thomas Washington', '2008-11-07', 59, 'https://www.gutenberg.org/ebooks/27195', 'en', 3135), +(40624, 'Croquis d\'Extrême-Orient, 1898', 'Farrère, Claude', '2017-04-01', 13, 'https://www.gutenberg.org/ebooks/54467', 'fr', 12927), +(40625, 'Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910\nA Concrete Water Tower, Paper No. 1173', 'Kempkey, A.', '2006-07-03', 17, 'https://www.gutenberg.org/ebooks/18748', 'en', 4530), +(40626, 'Atoms, Nature, and Man: Man-made Radioactivity in the Environment', 'Hines, Neal O.', '2015-01-21', 18, 'https://www.gutenberg.org/ebooks/48038', 'en', 14739), +(40627, 'Entre naranjos', 'Blasco Ibáñez, Vicente', '2009-09-28', 43, 'https://www.gutenberg.org/ebooks/30122', 'es', 1696), +(40628, 'Transfer Point', 'Boucher, Anthony', '2016-02-02', 64, 'https://www.gutenberg.org/ebooks/51115', 'en', 5886), +(40629, '韓詩外傳, Vol. 1-2', 'Han, Ying, active 150 B.C.', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7285', 'zh', 4436), +(40630, 'Our Cats and All About Them\r\nTheir Varieties, Habits, and Management; and for Show, the Standard of Excellence and Beauty; Described and Pictured', 'Weir, Harrison', '2011-03-02', 86, 'https://www.gutenberg.org/ebooks/35450', 'en', 1576), +(40631, 'Unter den Wilden: Entdeckungen und Abenteuer', 'Heilborn, Adolf', '2014-10-06', 17, 'https://www.gutenberg.org/ebooks/47070', 'de', 14740), +(40632, 'Snowflakes and Sunbeams; Or, The Young Fur-traders: A Tale of the Far North', 'Ballantyne, R. M. (Robert Michael)', '2004-08-01', 36, 'https://www.gutenberg.org/ebooks/6357', 'en', 2753), +(40633, 'Mozart : The story of a little boy and his sister who gave concerts', 'Tapper, Thomas', '2010-12-05', 677, 'https://www.gutenberg.org/ebooks/34582', 'en', 8709), +(40634, 'The Invaders', 'Ferris, Benjamin', '2007-11-18', 55, 'https://www.gutenberg.org/ebooks/23535', 'en', 179), +(40635, 'Common Sense in the Household: A Manual of Practical Housewifery', 'Harland, Marion', '2015-04-27', 46, 'https://www.gutenberg.org/ebooks/48804', 'en', 103), +(40636, 'The Suppression of the African Slave Trade to the United States of America\n1638-1870', 'Du Bois, W. E. B. (William Edward Burghardt)', '2006-02-07', 83, 'https://www.gutenberg.org/ebooks/17700', 'en', 14741), +(40637, 'Beaumont and Fletcher\'s Works, Vol. 02 of 10: the Humourous Lieutenant', 'Beaumont, Francis', '2004-04-01', 30, 'https://www.gutenberg.org/ebooks/12040', 'en', 126), +(40638, 'The Telephone: A lecture entitled Researches in Electric Telephony', 'Bell, Alexander Graham', '2017-10-21', 10, 'https://www.gutenberg.org/ebooks/55787', 'en', 6843), +(40639, 'Homer\'s Odyssey\nA Commentary', 'Snider, Denton Jaques', '2008-08-11', 56, 'https://www.gutenberg.org/ebooks/26275', 'en', 14742), +(40640, 'The Fortunes of Oliver Horn', 'Smith, Francis Hopkinson', '2002-09-01', 11, 'https://www.gutenberg.org/ebooks/3417', 'en', 14743), +(40641, 'Stand Fast, Craig-Royston! (Volume II)', 'Black, William', '2013-05-17', 9, 'https://www.gutenberg.org/ebooks/42730', 'en', 10623), +(40642, 'Special Report on Diseases of Cattle', 'Lowe, (Dr.) (William Herbert)', '2009-10-22', 44, 'https://www.gutenberg.org/ebooks/30310', 'en', 13069), +(40643, 'Myne eerste vlerken', 'Stroobant, Eugeen Edward', '2004-11-01', 12, 'https://www.gutenberg.org/ebooks/6959', 'nl', 8), +(40644, 'Arthur kuningas ja hänen jalot ritarinsa\nTarinoita Thomas Maloryn Morte d\'Arthurista', 'Malory, Thomas, Sir', '2017-05-03', 7, 'https://www.gutenberg.org/ebooks/54655', 'fi', 5139), +(40645, 'Œuvres de Napoléon Bonaparte, Tome IV.', 'Napoleon I, Emperor of the French', '2004-08-15', 19, 'https://www.gutenberg.org/ebooks/13192', 'fr', 1943), +(40646, 'The Slavery Question\r\nSpeech of Hon. John M. Landrum, of La., Delivered in the House of Representatives, April 27, 1860', 'Landrum, John M. (John Morgan)', '2011-03-23', 4, 'https://www.gutenberg.org/ebooks/35662', 'en', 5217), +(40647, 'There She Blows! Or, The Log of the Arethusa', 'Macy, William Hussey', '2014-07-24', 17, 'https://www.gutenberg.org/ebooks/46390', 'en', 324), +(40648, 'Virran varrelta: Runoja', 'Kivijärvi, Erkki', '2016-02-29', 2, 'https://www.gutenberg.org/ebooks/51327', 'fi', 1171), +(40649, 'The Ideal Bartender', 'Bullock, Tom', '2007-12-01', 5, 'https://www.gutenberg.org/ebooks/23707', 'en', 3419), +(40650, 'Two Knapsacks: A Novel of Canadian Summer Life', 'Campbell, John', '2006-01-16', 12, 'https://www.gutenberg.org/ebooks/17532', 'en', 65), +(40651, 'The Torrents of Spring', 'Turgenev, Ivan Sergeevich', '2006-02-01', 98, 'https://www.gutenberg.org/ebooks/9911', 'en', 1377), +(40652, 'The Works of Lucian of Samosata — Volume 04', 'Lucian, of Samosata', '2014-10-30', 39, 'https://www.gutenberg.org/ebooks/47242', 'en', 1011), +(40653, 'Cowboy Dave; Or, The Round-up at Rolling River', 'Webster, Frank V.', '2004-07-01', 13, 'https://www.gutenberg.org/ebooks/6165', 'en', 4365), +(40654, 'L\'Illustration, No. 0015, 10 Juin 1843', 'Various', '2011-08-19', 16, 'https://www.gutenberg.org/ebooks/37135', 'fr', 150), +(40655, 'Vankina Kaukaasiassa Y. m. kertomuksia', 'Tolstoy, Leo, graf', '2016-11-07', 5, 'https://www.gutenberg.org/ebooks/53470', 'fi', 147), +(40656, 'Children of Wild Australia', 'Pitts, Herbert', '2018-10-14', 9, 'https://www.gutenberg.org/ebooks/58098', 'en', 14744), +(40657, 'Nooks and Corners of the New England Coast', 'Drake, Samuel Adams', '2012-02-21', 103, 'https://www.gutenberg.org/ebooks/38941', 'en', 5729), +(40658, 'La rovina', 'Novaro, Angiolo Silvio', '2006-12-26', 12, 'https://www.gutenberg.org/ebooks/20182', 'it', 61), +(40659, 'The Starling: A Scottish Story', 'Macleod, Norman', '2013-02-12', 87, 'https://www.gutenberg.org/ebooks/41989', 'en', 14745), +(40660, 'The Master of the Shell', 'Reed, Talbot Baines', '2007-04-12', 11, 'https://www.gutenberg.org/ebooks/21050', 'en', 621), +(40661, 'Defenseless America', 'Maxim, Hudson', '2012-06-01', 3, 'https://www.gutenberg.org/ebooks/39893', 'en', 2481), +(40662, 'The Quest of the Silver Fleece: A Novel', 'Du Bois, W. E. B. (William Edward Burghardt)', '2005-03-05', 82, 'https://www.gutenberg.org/ebooks/15265', 'en', 13322), +(40663, 'Experiments and Observations on Electricity Made at Philadelphia in America', 'Franklin, Benjamin', '2014-04-27', 28, 'https://www.gutenberg.org/ebooks/45515', 'en', 14746), +(40664, 'The Good Time Coming', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/4632', 'en', 61), +(40665, 'The Extant Odes of Pindar\r\nTranslated with Introduction and Short Notes by Ernest Myers', 'Pindar', '2004-01-01', 112, 'https://www.gutenberg.org/ebooks/10717', 'en', 14747), +(40666, 'The Bobbsey Twins on the Deep Blue Sea', 'Hope, Laura Lee', '2011-11-02', 33, 'https://www.gutenberg.org/ebooks/37909', 'en', 1229), +(40667, 'The Black Phantom', 'Miller, Leo E. (Leo Edward)', '2008-02-05', 15, 'https://www.gutenberg.org/ebooks/24522', 'en', 13497), +(40668, 'La femme du diable', 'Lafon-Labatut, Joseph', '2010-08-31', 24, 'https://www.gutenberg.org/ebooks/33595', 'fr', 8), +(40669, 'Autobiography of Andrew Dickson White — Volume 1', 'White, Andrew Dickson', '1998-06-01', 19, 'https://www.gutenberg.org/ebooks/1340', 'en', 14748), +(40670, 'The Iron Boys on the Ore Boats; or, Roughing It on the Great Lakes', 'Mears, James R.', '2012-06-23', 9, 'https://www.gutenberg.org/ebooks/40067', 'en', 14749), +(40671, 'The Thing in the Attic', 'Blish, James', '2010-05-20', 90, 'https://www.gutenberg.org/ebooks/32447', 'en', 26), +(40672, 'Harper\'s Round Table, November 24, 1896', 'Various', '2019-07-24', 160, 'https://www.gutenberg.org/ebooks/59976', 'en', 668), +(40673, 'The American Missionary — Volume 35, No. 9, September, 1881', 'Various', '2017-12-02', 10, 'https://www.gutenberg.org/ebooks/56102', 'en', 395), +(40674, 'The Criminal Prosecution and Capital Punishment of Animals', 'Evans, E. P. (Edward Payson)', '2013-07-23', 95, 'https://www.gutenberg.org/ebooks/43286', 'en', 14750), +(40675, 'Московия в представлении иностранцев XVI-XVII в.', 'Apostol, P. N. (Pavel Natanovich)', '2009-12-28', 80, 'https://www.gutenberg.org/ebooks/30774', 'ru', 2408), +(40676, 'Punchinello, Volume 1, No. 03, April 16, 1870', 'Various', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9549', 'en', 372), +(40677, 'The Fables of Æsop, and Others\nWith Designs on Wood', 'Aesop', '2019-07-29', 1468, 'https://www.gutenberg.org/ebooks/60004', 'en', 14751), +(40678, 'La casserole: drame en un acte, en prose', 'Méténier, Oscar', '2017-02-25', 7, 'https://www.gutenberg.org/ebooks/54231', 'fr', 3017), +(40679, 'The Trail of the Tramp\r\nBy A-No. 1, the Famous Tramp, Written by Himself from Actual Experiences of His Own Life', 'A-No. 1', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/12424', 'en', 5547), +(40680, 'Enthusiasm and Other Poems', 'Moodie, Susanna', '2008-09-14', 11, 'https://www.gutenberg.org/ebooks/26611', 'en', 8), +(40681, 'Pioneers of the Old Southwest: a chronicle of the dark and bloody ground', 'Skinner, Constance Lindsay', '2002-02-01', 36, 'https://www.gutenberg.org/ebooks/3073', 'en', 90), +(40682, 'The Expositor\'s Bible: The First Epistle to the Corinthians', 'Dods, Marcus', '2013-03-17', 21, 'https://www.gutenberg.org/ebooks/42354', 'en', 14752), +(40683, 'A Midnight Fantasy', 'Aldrich, Thomas Bailey', '2007-11-06', 13, 'https://www.gutenberg.org/ebooks/23363', 'en', 14753), +(40684, 'The Soldier of the Valley', 'Lloyd, Nelson', '2005-11-26', 9, 'https://www.gutenberg.org/ebooks/17156', 'en', 7935), +(40685, 'Ameisenbüchlein; oder, Anweisung zu einer vernünftigen Erziehung der Erzieher', 'Salzmann, Christian Gotthilf', '2015-12-14', 15, 'https://www.gutenberg.org/ebooks/50691', 'de', 8790), +(40686, 'The Ocean World: Being a Description of the Sea and Its Living Inhabitants.', 'Figuier, Louis', '2014-12-11', 79, 'https://www.gutenberg.org/ebooks/47626', 'en', 2735), +(40687, 'Supplément au Voyage de Bougainville', 'Diderot, Denis', '2004-09-01', 72, 'https://www.gutenberg.org/ebooks/6501', 'fr', 779), +(40688, 'Les mystères de Paris, Tome II', 'Sue, Eugène', '2006-07-27', 15, 'https://www.gutenberg.org/ebooks/18922', 'fr', 560), +(40689, 'Brother Against Brother; Or, The War on the Border', 'Optic, Oliver', '2011-02-07', 14, 'https://www.gutenberg.org/ebooks/35206', 'en', 491), +(40690, 'Is Spiritualism Based on Fraud?\r\nThe Evidence Given by Sir A.C. Doyle and Others Drastically Examined', 'McCabe, Joseph', '2016-04-12', 18, 'https://www.gutenberg.org/ebooks/51743', 'en', 14754), +(40691, 'The American Missionary — Volume 43, No. 02, February, 1889', 'Various', '2005-06-17', 10, 'https://www.gutenberg.org/ebooks/16084', 'en', 562), +(40692, 'Manual of American Grape-Growing', 'Hedrick, U. P.', '2009-08-10', 36, 'https://www.gutenberg.org/ebooks/29659', 'en', 14755), +(40693, 'Letters of Edward FitzGerald to Fanny Kemble (1871-1883)', 'FitzGerald, Edward', '2007-05-14', 18, 'https://www.gutenberg.org/ebooks/21434', 'en', 14756), +(40694, 'The Great Round World and What Is Going On In It, Vol. 1, No. 29, May 27, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-11', 14, 'https://www.gutenberg.org/ebooks/15601', 'en', 1), +(40695, 'Mis contemporaneos; 1 Vicente Blasco Ibáñez', 'Zamacois, Eduardo', '2014-03-18', 10, 'https://www.gutenberg.org/ebooks/45171', 'es', 5366), +(40696, 'Stammering, Its Cause and Cure', 'Bogue, Benjamin Nathaniel', '2003-07-01', 19, 'https://www.gutenberg.org/ebooks/4256', 'en', 14757), +(40697, 'Wilhelm Meister\'s Apprenticeship and Travels, Vol. I (of 2)', 'Goethe, Johann Wolfgang von', '2011-06-20', 125, 'https://www.gutenberg.org/ebooks/36483', 'en', 1080), +(40698, 'The Celebrity, Volume 02', 'Churchill, Winston', '2004-10-19', 14, 'https://www.gutenberg.org/ebooks/5384', 'en', 4598), +(40699, 'Ann Boyd: A Novel', 'Harben, Will N. (Will Nathaniel)', '2011-09-27', 16, 'https://www.gutenberg.org/ebooks/37551', 'en', 8079), +(40700, 'Twice-born Men in America\r\nor, The Psychology of Conversion as Seen by a Christian Psychologist in Rescue Mission Work', 'Monroe, Harriet Earhart', '2016-09-08', 7, 'https://www.gutenberg.org/ebooks/53014', 'en', 14758), +(40701, 'The Boy\'s Voice\r\nA Book of Practical Information on The Training of Boys\' Voices For Church Choirs, &c.', 'Curwen, J. Spencer (John Spencer)', '2010-04-17', 37, 'https://www.gutenberg.org/ebooks/32023', 'en', 14759), +(40702, 'Daughters of Doom', 'Hickey, H. B.', '2008-04-18', 22, 'https://www.gutenberg.org/ebooks/25094', 'en', 179), +(40703, 'First Love: A Novel. Vol. 2 of 3', 'Loudon, Mrs. (Margracia)', '2018-02-13', 5, 'https://www.gutenberg.org/ebooks/56566', 'en', 61), +(40704, 'The Middle Temple Murder', 'Fletcher, J. S. (Joseph Smith)', '2003-12-01', 174, 'https://www.gutenberg.org/ebooks/10373', 'en', 128), +(40705, 'A Commentary on Herodotus', 'Wells, J. (Joseph)', '2008-01-03', 62, 'https://www.gutenberg.org/ebooks/24146', 'en', 1368), +(40706, 'The Memoirs of Charles-Lewis, Baron de Pollnitz, Volume IV\r\nBeing the Observations He Made in His Late Travels from Prussia thro\' Germany, Italy, France, Flanders, Holland, England, &C. in Letters to His Friend. Discovering Not Only the Present State of the Chief Cities and Towns; but the Characters of the Principal Persons at the Several Courts.', 'Pöllnitz, Karl Ludwig, Freiherr von', '2012-01-07', 7, 'https://www.gutenberg.org/ebooks/38519', 'en', 4071), +(40707, 'New York Journal of Pharmacy, Volume 1 (of 3), 1852\r\nPublished by Authority of the College of Pharmacy of the City of New York.', 'College of Pharmacy of the City of New York', '2016-12-29', 5, 'https://www.gutenberg.org/ebooks/53828', 'en', 14760), +(40708, 'Finished', 'Haggard, H. Rider (Henry Rider)', '2004-11-13', 91, 'https://www.gutenberg.org/ebooks/1724', 'en', 2564), +(40709, 'Girls of Highland Hall: Further Adventures of the Dandelion Cottagers', 'Rankin, Carroll Watson', '2012-08-03', 13, 'https://www.gutenberg.org/ebooks/40403', 'en', 148), +(40710, 'The Adventure Girls at Happiness House', 'Blank, Clair', '2014-04-07', 15, 'https://www.gutenberg.org/ebooks/45343', 'en', 557), +(40711, 'Moonbeams from the Larger Lunacy', 'Leacock, Stephen', '2003-05-01', 45, 'https://www.gutenberg.org/ebooks/4064', 'en', 3963), +(40712, 'War is Kind', 'Crane, Stephen', '2007-05-31', 6, 'https://www.gutenberg.org/ebooks/21606', 'en', 8), +(40713, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 3)', 'Guizot, François', '2005-03-21', 12, 'https://www.gutenberg.org/ebooks/15433', 'fr', 2003), +(40714, 'Oscar Wilde, a study', 'Gide, André', '2016-10-06', 42, 'https://www.gutenberg.org/ebooks/53226', 'en', 13856), +(40715, 'Haschisch: Erzählungen', 'Schmitz, Oscar A. H.', '2011-10-15', 28, 'https://www.gutenberg.org/ebooks/37763', 'de', 1212), +(40716, 'The Potter and the Clay', 'Winnington Ingram, Arthur F. (Arthur Foley)', '2013-11-26', 14, 'https://www.gutenberg.org/ebooks/44291', 'en', 14761), +(40717, 'History of the United Netherlands, 1588d', 'Motley, John Lothrop', '2004-01-01', 1, 'https://www.gutenberg.org/ebooks/4858', 'en', 3372), +(40718, 'Trailin\'!', 'Brand, Max', '2004-02-01', 59, 'https://www.gutenberg.org/ebooks/11093', 'en', 315), +(40719, 'Nuori Venäjä', 'Gusjev-Orenburgski, D.', '2018-03-16', 4, 'https://www.gutenberg.org/ebooks/56754', 'fi', 147), +(40720, 'Η Φωτεινή - Ο μαγευμένος εργαλειός - Η καλή Νεράιδα', 'Papadopoulou, Arsinoe', '2010-05-02', 15, 'https://www.gutenberg.org/ebooks/32211', 'el', 14762), +(40721, 'King Henry IV, the First Part', 'Shakespeare, William', '1998-11-01', 51, 'https://www.gutenberg.org/ebooks/1516', 'en', 6584), +(40722, 'In the Roar of the Sea', 'Baring-Gould, S. (Sabine)', '2012-08-31', 42, 'https://www.gutenberg.org/ebooks/40631', 'en', 2024), +(40723, 'Index of the Project Gutenberg Works of Robert Barr', 'Barr, Robert', '2018-08-13', 15, 'https://www.gutenberg.org/ebooks/57686', 'en', 198), +(40724, 'A Discourse on the Life, Character and Writings of Gulian Crommelin Verplanck\r\nDelivered before the New-York Historical Society, May 17th, 1870', 'Bryant, William Cullen', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10141', 'en', 14763), +(40725, 'The Romance of Names', 'Weekley, Ernest', '2008-01-20', 29, 'https://www.gutenberg.org/ebooks/24374', 'en', 9375), +(40726, 'Farm Legends', 'Carleton, Will', '2017-01-18', 3, 'https://www.gutenberg.org/ebooks/54003', 'en', 12142), +(40727, 'George Brown', 'Lewis, John', '2009-11-25', 12, 'https://www.gutenberg.org/ebooks/30546', 'en', 11081), +(40728, 'His Dog', 'Terhune, Albert Payson', '2000-11-01', 23, 'https://www.gutenberg.org/ebooks/2393', 'en', 766), +(40729, 'The Young Man in Business', 'Bok, Edward William', '2010-03-03', 14, 'https://www.gutenberg.org/ebooks/31494', 'en', 2351), +(40730, 'Corporal Cameron of the North West Mounted Police: A Tale of the Macleod Trail', 'Connor, Ralph', '2006-05-30', 12, 'https://www.gutenberg.org/ebooks/3241', 'en', 9383), +(40731, 'The Poems of Sappho: An Interpretative Rendition into English', 'Sappho', '2013-02-22', 111, 'https://www.gutenberg.org/ebooks/42166', 'en', 14764), +(40732, 'Around Old Bethany: A Story of the Adventures of Robert and Mary Davis', 'Berry, R. L. (Robert Lee)', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12616', 'en', 14765), +(40733, 'The Boy Scouts of the Air in Indian Land', 'Stuart, Gordon (Adventure story writer)', '2011-04-09', 16, 'https://www.gutenberg.org/ebooks/35808', 'en', 2279), +(40734, 'Great Men and Famous Women. Vol. 3\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2008-08-27', 23, 'https://www.gutenberg.org/ebooks/26423', 'en', 122), +(40735, 'L\'Illustration, No. 1597, 4 octobre 1873', 'Various', '2014-11-21', 5, 'https://www.gutenberg.org/ebooks/47414', 'fr', 150), +(40736, 'Memoir of Father Vincent de Paul; religious of La Trappe', 'Vincent de Paul, Father', '2004-10-01', 20, 'https://www.gutenberg.org/ebooks/6733', 'en', 14766), +(40737, 'Luutnantti Jergunovin juttu', 'Turgenev, Ivan Sergeevich', '2007-10-22', 17, 'https://www.gutenberg.org/ebooks/23151', 'fi', 179), +(40738, 'The Blue-Grass Region of Kentucky, and Other Kentucky Articles', 'Allen, James Lane', '2013-10-05', 14, 'https://www.gutenberg.org/ebooks/43888', 'en', 14767), +(40739, 'Types of Weltschmerz in German Poetry', 'Braun, Wilhelm Alfred', '2005-12-21', 13, 'https://www.gutenberg.org/ebooks/17364', 'en', 14768), +(40740, 'Subject to Change', 'Goulart, Ron', '2016-03-26', 23, 'https://www.gutenberg.org/ebooks/51571', 'en', 14769), +(40741, 'Myths and Legends of the Great Plains', NULL, '2007-07-16', 58, 'https://www.gutenberg.org/ebooks/22083', 'en', 14770), +(40742, 'Lost Farm Camp', 'Knibbs, Henry Herbert', '2011-01-21', 13, 'https://www.gutenberg.org/ebooks/35034', 'en', 4753), +(40743, 'American Weasels', 'Hall, E. Raymond (Eugene Raymond)', '2013-07-21', 11, 'https://www.gutenberg.org/ebooks/43272', 'en', 14771), +(40744, 'Phyllis of Philistia', 'Moore, Frank Frankfort', '2006-03-26', 19, 'https://www.gutenberg.org/ebooks/2155', 'en', 61), +(40745, 'The First Seventeen Years: Virginia 1607-1624', 'Hatch, Charles E., Jr.', '2009-12-28', 42, 'https://www.gutenberg.org/ebooks/30780', 'en', 7365), +(40746, 'Le Petit Chose (Histoire d\'un Enfant)', 'Daudet, Alphonse', '2009-01-07', 26, 'https://www.gutenberg.org/ebooks/27737', 'en', 1080), +(40747, 'Punch, or the London Charivari, Volume 101, August 22, 1891', 'Various', '2004-09-20', 7, 'https://www.gutenberg.org/ebooks/13502', 'en', 134), +(40748, 'English Walnuts\r\nWhat You Need to Know about Planting, Cultivating and Harvesting This Most Delicious of Nuts', NULL, '2006-08-13', 76, 'https://www.gutenberg.org/ebooks/19038', 'en', 1499), +(40749, 'The Meditations of the Emperor Marcus Aurelius Antoninus\nA new rendering based on the Foulis translation of 1742', 'Marcus Aurelius, Emperor of Rome', '2017-08-09', 448, 'https://www.gutenberg.org/ebooks/55317', 'en', 680), +(40750, 'Original Short Stories — Volume 11', 'Maupassant, Guy de', '2004-10-03', 20, 'https://www.gutenberg.org/ebooks/3087', 'en', 1112), +(40751, 'Conquest Over Time', 'Shaara, Michael', '2010-03-15', 26, 'https://www.gutenberg.org/ebooks/31652', 'en', 26), +(40752, 'Five Minute Stories', 'Richards, Laura Elizabeth Howe', '2015-08-21', 19, 'https://www.gutenberg.org/ebooks/49748', 'en', 4424), +(40753, 'At the Seaside', 'Warner-Sleigh, Mrs.', '2007-11-07', 7, 'https://www.gutenberg.org/ebooks/23397', 'en', 14772), +(40754, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 19: Back Again to Paris', 'Casanova, Giacomo', '2004-12-11', 24, 'https://www.gutenberg.org/ebooks/2969', 'en', 4164), +(40755, 'Auguste Rodin: The Man - His Ideas - His Works', 'Mauclair, Camille', '2015-12-11', 5, 'https://www.gutenberg.org/ebooks/50665', 'en', 3006), +(40756, 'Project Daedalus', 'Hoover, Thomas', '2010-11-14', 32, 'https://www.gutenberg.org/ebooks/34320', 'en', 4458), +(40757, 'Catalan\'s Constant to 1,500,000 Places', NULL, '1997-03-01', 36, 'https://www.gutenberg.org/ebooks/812', 'en', 7340), +(40758, 'Three Centuries of a City Library\nan Historical and Descriptive Account of the Norwich Public Library Established in 1608 and the present Public Library opened in 1857', 'Stephen, Geo. A. (George Arthur)', '2006-11-14', 16, 'https://www.gutenberg.org/ebooks/19804', 'en', 14773), +(40759, 'Toasts and Forms of Public Address for Those Who Wish to Say the Right Thing in the Right Way', 'Pittenger, William', '2005-02-01', 23, 'https://www.gutenberg.org/ebooks/7427', 'en', 311), +(40760, 'A Parody Anthology', NULL, '2014-08-27', 17, 'https://www.gutenberg.org/ebooks/46700', 'en', 2529), +(40761, 'The Empire of Austria; Its Rise and Present Power', 'Abbott, John S. C. (John Stevens Cabot)', '2005-06-15', 32, 'https://www.gutenberg.org/ebooks/16070', 'en', 14774), +(40762, 'Steve and the Steam Engine', 'Bassett, Sara Ware', '2007-08-05', 51, 'https://www.gutenberg.org/ebooks/22245', 'en', 14775), +(40763, 'Sunshine and Storm in Rhodesia\nBeing a Narrative of Events in Matabeleland Both Before and During the Recent Native Insurrection Up to the Date of the Disbandment of the Bulawayo Field Force', 'Selous, Frederick Courteney', '2016-05-22', 39, 'https://www.gutenberg.org/ebooks/52132', 'en', 14776), +(40764, 'Burritt College Centennial Celebration, August 13-15, 1948\r\nAddress by Charles Lee Lewis', 'Lewis, Charles Lee', '2014-03-21', 14, 'https://www.gutenberg.org/ebooks/45185', 'en', 14777), +(40765, 'Les Dieux ont soif', 'France, Anatole', '2011-06-20', 37, 'https://www.gutenberg.org/ebooks/36477', 'fr', 248), +(40766, 'Richard Carvel — Volume 06', 'Churchill, Winston', '2004-10-18', 13, 'https://www.gutenberg.org/ebooks/5370', 'en', 5772), +(40767, 'Zoological Illustrations, Second Series, Volume 2\r\nor, Original Figures and Descriptions of New, Rare, or Interesting Animals', 'Swainson, William', '2013-10-29', 10, 'https://www.gutenberg.org/ebooks/44057', 'en', 8764), +(40768, 'The Collected Works of William Hazlitt, Vol. 07 (of 12)', 'Hazlitt, William', '2018-12-04', 26, 'https://www.gutenberg.org/ebooks/58408', 'en', 5270), +(40769, 'Mäkijärveläiset: Kuvaus Savon kansan elämästä', 'Kauppis-Heikki', '2005-01-18', 3, 'https://www.gutenberg.org/ebooks/14727', 'fi', 41), +(40770, 'Sturdy and Strong; Or, How George Andrews Made His Way', 'Henty, G. A. (George Alfred)', '2010-10-07', 29, 'https://www.gutenberg.org/ebooks/33939', 'en', 388), +(40771, 'Man and Maid', 'Glyn, Elinor', '2007-02-03', 44, 'https://www.gutenberg.org/ebooks/20512', 'en', 48), +(40772, 'The House Opposite: A Mystery', 'Kent, Elizabeth', '2012-12-02', 21, 'https://www.gutenberg.org/ebooks/41525', 'en', 128), +(40773, 'Officer And Man\n1901', 'Becke, Louis', '2008-04-12', 12, 'https://www.gutenberg.org/ebooks/25060', 'en', 108), +(40774, 'Az arany ember (2. rész)\r\nRegény', 'Jókai, Mór', '2018-02-17', 16, 'https://www.gutenberg.org/ebooks/56592', 'hu', 234), +(40775, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nArkansas Narratives, Part 1', 'United States. Work Projects Administration', '2004-02-01', 48, 'https://www.gutenberg.org/ebooks/11255', 'en', 3983), +(40776, 'A Century Too Soon: The Age of Tyranny', 'Musick, John R. (John Roy)', '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/10387', 'en', 14321); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(40777, 'A Soldier\'s Experience in Southern Prisons\nA Graphic Description of the Author\'s Experiences in Various Southern Prisons', 'Prutsman, Christian Miller', '2018-07-04', 9, 'https://www.gutenberg.org/ebooks/57440', 'en', 2363), +(40778, 'Hymns in the Chinook Jargon Language', 'Eells, Myron', '2010-07-07', 8, 'https://www.gutenberg.org/ebooks/33105', 'en', 14778), +(40779, 'Louisiana Beef Cattle', 'Stubbs, William Carter', '2011-07-07', 17, 'https://www.gutenberg.org/ebooks/36645', 'en', 14779), +(40780, 'From Ritual to Romance', 'Weston, Jessie L. (Jessie Laidlay)', '2003-05-01', 153, 'https://www.gutenberg.org/ebooks/4090', 'en', 14780), +(40781, 'Index of the Project Gutenberg Works of Jonathan Swift', 'Swift, Jonathan', '2019-06-08', 45, 'https://www.gutenberg.org/ebooks/59708', 'en', 198), +(40782, 'William Blake, Painter and Poet', 'Garnett, Richard', '2016-06-11', 15, 'https://www.gutenberg.org/ebooks/52300', 'en', 5919), +(40783, 'The Nervous Child', 'Cameron, Hector Charles', '2004-12-29', 98, 'https://www.gutenberg.org/ebooks/14515', 'en', 9867), +(40784, 'Les joyeuses Bourgeoises de Windsor', 'Shakespeare, William', '2007-03-01', 25, 'https://www.gutenberg.org/ebooks/20720', 'fr', 13710), +(40785, 'Our Saviour', 'Anonymous', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/10989', 'en', 7179), +(40786, 'Blackwood\'s Edinburgh Magazine, Vol. 60, No. 373, November 1846', 'Various', '2011-10-19', 8, 'https://www.gutenberg.org/ebooks/37797', 'en', 711), +(40787, 'Graustark', 'McCutcheon, George Barr', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/5142', 'en', 48), +(40788, 'Siipirikko: Ernst Ahlgren kirjailijana ja ihmisenä', 'Krohn, Helmi', '2013-11-23', 4, 'https://www.gutenberg.org/ebooks/44265', 'fi', 14781), +(40789, '貞觀政要', 'Wu, Jing', '2008-04-30', 27, 'https://www.gutenberg.org/ebooks/25252', 'zh', 14782), +(40790, 'Reform Cookery Book (4th edition)\nUp-To-Date Health Cookery for the Twentieth Century.', 'Mill, Mrs. (Jean Oliver)', '2004-02-01', 51, 'https://www.gutenberg.org/ebooks/11067', 'en', 3321), +(40791, 'Samplers and Tapestry Embroideries\nSecond Edition', 'Huish, Marcus B. (Marcus Bourne)', '2012-12-27', 48, 'https://www.gutenberg.org/ebooks/41717', 'en', 14783), +(40792, 'Astronomical Discovery', 'Turner, H. H. (Herbert Hall)', '2010-08-03', 24, 'https://www.gutenberg.org/ebooks/33337', 'en', 1590), +(40793, 'A Secret of the Sea: A Novel. Vol. 1 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-08-12', 10, 'https://www.gutenberg.org/ebooks/57672', 'en', 137), +(40794, 'Shock Absorber', 'Von Wald, E. G.', '2008-01-21', 32, 'https://www.gutenberg.org/ebooks/24380', 'en', 2564), +(40795, 'Winning the Wilderness', 'McCarter, Margaret Hill', '2008-12-12', 23, 'https://www.gutenberg.org/ebooks/27505', 'en', 14260), +(40796, 'The Amateur Poacher', 'Jefferies, Richard', '2004-10-12', 47, 'https://www.gutenberg.org/ebooks/13730', 'en', 14451), +(40797, 'A Day at the County Fair', 'Burnett, Alice Hale', '2007-12-27', 7, 'https://www.gutenberg.org/ebooks/23999', 'en', 62), +(40798, 'Consumers and Wage-Earners: The Ethics of Buying Cheap', 'Ross, J. Elliot (John Elliot)', '2013-06-26', 10, 'https://www.gutenberg.org/ebooks/43040', 'en', 14784), +(40799, 'Los Bombardeos Atomicos de Hiroshima y Nagasaki', 'United States. Army. Corps of Engineers. Manhattan District', '2000-10-01', 28, 'https://www.gutenberg.org/ebooks/2367', 'es', 14567), +(40800, 'Oma tupa, oma lupa', 'Pärn, J.', '2010-03-01', 10, 'https://www.gutenberg.org/ebooks/31460', 'fi', 14785), +(40801, 'Notes sur Laclos et Les Liaisons Dangereuses', 'Boisjoslin, Jacques de', '2013-02-25', 14, 'https://www.gutenberg.org/ebooks/42192', 'fr', 14786), +(40802, 'Madam: A Novel', 'Oliphant, Mrs. (Margaret)', '2017-07-16', 19, 'https://www.gutenberg.org/ebooks/55125', 'en', 61), +(40803, 'In Jail with Charles Dickens', 'Trumble, Alfred', '2010-10-21', 12, 'https://www.gutenberg.org/ebooks/34112', 'en', 14787), +(40804, 'The Luzumiyat of Abu\'l-Ala\r\nSelected from his Luzum ma la Yalzam and Suct us-Zand', 'Abu al-Ala al-Maarri', '2015-11-14', 60, 'https://www.gutenberg.org/ebooks/50457', 'en', 2782), +(40805, 'Hearts and Masks', 'MacGrath, Harold', '2005-12-25', 19, 'https://www.gutenberg.org/ebooks/17390', 'en', 61), +(40806, 'The Purpose of the Papacy', 'Vaughan, John S. (John Stephen)', '2005-07-08', 29, 'https://www.gutenberg.org/ebooks/16242', 'en', 5626), +(40807, 'Bohemian Days in Fleet Street', 'Mackay, William', '2016-03-28', 9, 'https://www.gutenberg.org/ebooks/51585', 'en', 14788), +(40808, 'Les Origines et la Jeunesse de Lamartine 1790-1812', 'Lacretelle, Pierre de', '2007-07-15', 7, 'https://www.gutenberg.org/ebooks/22077', 'fr', 122), +(40809, 'William Caxton', 'Duff, E. Gordon (Edward Gordon)', '2017-11-08', 15, 'https://www.gutenberg.org/ebooks/55919', 'en', 14789), +(40810, 'Pelham — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 21, 'https://www.gutenberg.org/ebooks/7615', 'en', 2496), +(40811, 'Ihmislapsia elämän saatossa: Kertomuksia ja kuvauksia', 'Sillanpää, Frans Eemil', '2014-08-08', 13, 'https://www.gutenberg.org/ebooks/46532', 'fi', 175), +(40812, 'A Man Four-Square', 'Raine, William MacLeod', '2004-11-26', 31, 'https://www.gutenberg.org/ebooks/14171', 'en', 315), +(40813, 'Rakkauden komedia\n(1862) 3-näytöksinen komedia', 'Ibsen, Henrik', '2007-01-12', 12, 'https://www.gutenberg.org/ebooks/20344', 'fi', 3671), +(40814, 'The Bride of the Nile — Volume 10', 'Ebers, Georg', '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/5526', 'en', 803), +(40815, 'The Little Maid of Israel', 'Wight, Emma Howard', '2014-01-06', 15, 'https://www.gutenberg.org/ebooks/44601', 'en', 14790), +(40816, 'Spinning-Wheel Stories', 'Alcott, Louisa May', '2011-05-26', 34, 'https://www.gutenberg.org/ebooks/36221', 'en', 388), +(40817, 'Mother Carey\'s Chicken: Her Voyage to the Unknown Isle', 'Fenn, George Manville', '2007-05-04', 21, 'https://www.gutenberg.org/ebooks/21296', 'en', 324), +(40818, 'Under a Veil: A Comedietta in One Act', 'Roberts, Randal H. (Randal Howland), Sir', '2016-08-10', 17, 'https://www.gutenberg.org/ebooks/52764', 'en', 907), +(40819, 'Poems', 'Meynell, Alice', '1998-02-01', 17, 'https://www.gutenberg.org/ebooks/1186', 'en', 532), +(40820, 'In Paths of Peril: A Boy\'s Adventures in Nova Scotia', 'Oxley, J. Macdonald (James Macdonald)', '2010-09-17', 119, 'https://www.gutenberg.org/ebooks/33753', 'en', 14791), +(40821, 'Peli elämästä ja kuolemasta: Salapoliisikertomus', 'Elvestad, Sven', '2018-05-26', 4, 'https://www.gutenberg.org/ebooks/57216', 'fi', 128), +(40822, '玉雙魚', 'Tianhuazangzhuren', '2008-05-29', 30, 'https://www.gutenberg.org/ebooks/25636', 'zh', 14792), +(40823, 'The Churches of Coventry: A Short History of the City & Its Medieval Remains', 'Woodhouse, Frederic W.', '2007-02-11', 23, 'https://www.gutenberg.org/ebooks/11403', 'en', 14793), +(40824, 'Secret History of the English Occupation of Egypt\nBeing a Personal Narrative of Events', 'Blunt, Wilfrid Scawen', '2012-11-16', 48, 'https://www.gutenberg.org/ebooks/41373', 'en', 14794), +(40825, 'The Use of a Box of Colours, in a Practical Demonstration on Composition, Light and Shade, and Colour.', 'Willson, Harry, active 19th century', '2010-06-04', 50, 'https://www.gutenberg.org/ebooks/32681', 'en', 14795), +(40826, 'Winterslow: Essays and Characters Written There', 'Hazlitt, William', '2012-03-25', 28, 'https://www.gutenberg.org/ebooks/39269', 'en', 472), +(40827, 'The World English Bible (WEB): 2 Kings', 'Anonymous', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8239', 'en', 2725), +(40828, 'Ten Thousand a-Year. Volume 1.', 'Warren, Samuel', '2010-01-17', 14, 'https://www.gutenberg.org/ebooks/31004', 'en', 61), +(40829, 'A Treatise on the Origin, Progress, Prevention, and Cure of Dry Rot in Timber\r\nWith remarks on the means of preserving wood from destruction by sea worms, beetles, ants, etc.', 'Britton, Thomas Allen', '2017-09-13', 8, 'https://www.gutenberg.org/ebooks/55541', 'en', 14796), +(40830, 'Flowers and Flower-Gardens\nWith an Appendix of Practical Instructions and Useful Information\nRespecting the Anglo-Indian Flower-Garden', 'Richardson, David Lester', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/12286', 'en', 1413), +(40831, '\'Our Guy\'\r\nor, The elder brother', 'Boyd, E. E., Mrs.', '2008-11-05', 11, 'https://www.gutenberg.org/ebooks/27161', 'en', 2024), +(40832, 'The Boy Knight: A Tale of the Crusades', 'Henty, G. A. (George Alfred)', '2004-09-02', 67, 'https://www.gutenberg.org/ebooks/13354', 'en', 14797), +(40833, 'The Dungeons of Old Paris\r\nBeing the Story and Romance of the Most Celebrated Prisons of the Monarchy and the Revolution', 'Hopkins, Tighe', '2017-04-06', 6, 'https://www.gutenberg.org/ebooks/54493', 'en', 14798), +(40834, 'The Cricket on the Hearth: A Fairy Tale of Home', 'Dickens, Charles', '1996-10-01', 129, 'https://www.gutenberg.org/ebooks/678', 'en', 3397), +(40835, 'Francisco, Our Little Argentine Cousin', 'Brooks, Eva Cannon', '2013-08-09', 10, 'https://www.gutenberg.org/ebooks/43424', 'en', 14799), +(40836, 'Zigzag Journeys in Northern Lands;\r\nThe Rhine to the Arctic; A Summer Trip of the Zigzag Club Through Holland, Germany, Denmark, Norway, and Sweden', 'Butterworth, Hezekiah', '2009-05-22', 20, 'https://www.gutenberg.org/ebooks/28915', 'en', 246), +(40837, 'The Argonauts of North Liberty', 'Harte, Bret', '2006-05-25', 27, 'https://www.gutenberg.org/ebooks/2703', 'en', 14800), +(40838, 'Letters to Helen: Impressions of an Artist on the Western Front', 'Henderson, Keith', '2005-08-31', 14, 'https://www.gutenberg.org/ebooks/16626', 'en', 3601), +(40839, 'The Atlantic Monthly, Volume 14, No. 81, July, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2010-04-01', 12, 'https://www.gutenberg.org/ebooks/31838', 'en', 1227), +(40840, 'Alaeddin und die Wunderlampe\naus Tausend und eine Nacht', 'Moreck, Curt', '2007-08-26', 62, 'https://www.gutenberg.org/ebooks/22413', 'de', 1007), +(40841, 'The Mentor: Makers of American Art, Vol. 1, Num. 45, Serial No. 45', 'Thompson Willing, J.', '2015-09-09', 15, 'https://www.gutenberg.org/ebooks/49922', 'en', 6087), +(40842, '搜神記 volume 11-14', 'Gan, Bao, active 317-322', '2005-01-01', 15, 'https://www.gutenberg.org/ebooks/7271', 'zh', 4247), +(40843, 'The Maid of Sker', 'Blackmore, R. D. (Richard Doddridge)', '2014-07-01', 73, 'https://www.gutenberg.org/ebooks/46156', 'en', 3909), +(40844, 'Cradock Nowell: A Tale of the New Forest. Vol. 1 (of 3)', 'Blackmore, R. D. (Richard Doddridge)', '2014-10-09', 22, 'https://www.gutenberg.org/ebooks/47084', 'en', 5793), +(40845, 'By Violence', 'Trevena, John', '2010-12-05', 7, 'https://www.gutenberg.org/ebooks/34576', 'en', 61), +(40846, 'The Nursery, January 1877, Volume XXI, No. 1\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 15, 'https://www.gutenberg.org/ebooks/28129', 'en', 4641), +(40847, '\"Morgan\'s Men,\" a Narrative of Personal Experiences', 'Stone, Henry Lane', '2015-09-22', 12, 'https://www.gutenberg.org/ebooks/50033', 'en', 14801), +(40848, 'Mrs. Maybrick\'s Own Story: My Fifteen Lost Years', 'Maybrick, Florence Elizabeth', '2017-10-18', 9, 'https://www.gutenberg.org/ebooks/55773', 'en', 14802), +(40849, 'Happy-Thought Hall', 'Burnand, F. C. (Francis Cowley)', '2008-08-12', 2, 'https://www.gutenberg.org/ebooks/26281', 'en', 564), +(40850, 'Martyr', 'Nourse, Alan Edward', '2010-02-09', 28, 'https://www.gutenberg.org/ebooks/31236', 'en', 26), +(40851, 'The Quaint Companions\nWith an Introduction by H. G. Wells', 'Merrick, Leonard', '2013-09-01', 26, 'https://www.gutenberg.org/ebooks/43616', 'en', 14803), +(40852, 'An Accursed Race', 'Gaskell, Elizabeth Cleghorn', '2001-03-01', 69, 'https://www.gutenberg.org/ebooks/2531', 'en', 14804), +(40853, 'Indian Conjuring', 'Branson, L. H. (Lionel Hugh)', '2008-11-28', 20, 'https://www.gutenberg.org/ebooks/27353', 'en', 3590), +(40854, 'The Psalms of David\nImitated in the Language of the New Testament and Applied to the Christian State and Worship', 'Watts, Isaac', '2004-08-12', 82, 'https://www.gutenberg.org/ebooks/13166', 'en', 14805), +(40855, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 05\r\nMasterpieces of German Literature Translated into English', NULL, '2004-07-12', 123, 'https://www.gutenberg.org/ebooks/12888', 'en', 4972), +(40856, 'What I know of farming:\r\na series of brief and plain expositions of practical agriculture as an art based upon science', 'Greeley, Horace', '2011-03-27', 7, 'https://www.gutenberg.org/ebooks/35696', 'en', 10844), +(40857, 'Der Kaufmann von Venedig', 'Shakespeare, William', '2004-12-01', 41, 'https://www.gutenberg.org/ebooks/7043', 'de', 368), +(40858, 'Essais poétiques', 'Girardin, Emile de, Mme', '2014-07-22', 11, 'https://www.gutenberg.org/ebooks/46364', 'fr', 4086), +(40859, 'Weymouth New Testament in Modern Speech, Ephesians', 'Weymouth, Richard Francis', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/8837', 'en', 7739), +(40860, 'Quincy Adams Sawyer and Mason\'s Corner Folks\nA Picture of New England Home Life', 'Pidgin, Charles Felton', '2005-08-02', 9, 'https://www.gutenberg.org/ebooks/16414', 'en', 539), +(40861, 'The New England Magazine, Volume 1, No. 1, January 1886\nBay State Monthly, Volume 4, No. 1, January, 1886', 'Various', '2007-09-16', 17, 'https://www.gutenberg.org/ebooks/22621', 'en', 1593), +(40862, 'The Young Oarsmen of Lakeview', 'Stratemeyer, Edward', '2015-10-13', 14, 'https://www.gutenberg.org/ebooks/50201', 'en', 2794), +(40863, 'The White Man\'s Foot', 'Allen, Grant', '2010-12-26', 31, 'https://www.gutenberg.org/ebooks/34744', 'en', 3242), +(40864, 'Northern Lights, Complete', 'Parker, Gilbert', '2004-11-16', 149, 'https://www.gutenberg.org/ebooks/6191', 'en', 1887), +(40865, 'The History Teacher\'s Magazine, Vol. I, No. 9, May, 1910', 'Various', '2018-08-31', 7, 'https://www.gutenberg.org/ebooks/57818', 'en', 7693), +(40866, 'String Quartet No. 58 in F Major, Op. 74, No. 2, FHE No. 29, Hoboken No. 73', 'Haydn, Joseph', '2004-02-01', 1, 'https://www.gutenberg.org/ebooks/5714', 'en', 909), +(40867, 'Jaufry the Knight and the Fair Brunissende: A Tale of the Times of King Arthur', 'Mary-Lafon, Jean Bernard Lafon, called', '2013-12-14', 33, 'https://www.gutenberg.org/ebooks/44433', 'en', 580), +(40868, 'Satuja ja tarinoita I', 'Andersen, H. C. (Hans Christian)', '2016-11-09', 38, 'https://www.gutenberg.org/ebooks/53484', 'fi', 1007), +(40869, 'Poésies de Charles d\'Orléans', 'Charles, d\'Orléans', '2004-12-13', 38, 'https://www.gutenberg.org/ebooks/14343', 'fr', 14806), +(40870, 'The Drone\nA Play in Three Acts', 'Mayne, Rutherford', '2006-12-23', 16, 'https://www.gutenberg.org/ebooks/20176', 'en', 14807), +(40871, 'Gildet på Solhaug', 'Ibsen, Henrik', '2005-03-08', 15, 'https://www.gutenberg.org/ebooks/15291', 'no', 3671), +(40872, 'Esperanto-Germana frazlibro de la ĉiutaga vivo\r\nDeutsche und Esperanto-Gespräche über Alltägliches', 'Borel, J. (Jean)', '2016-07-11', 34, 'https://www.gutenberg.org/ebooks/52556', 'de', 14808), +(40873, 'Terrestrial and Celestial Globes Volume 2\r\nTheir History and Construction Including a Consideration of their Value as Aids in the Study of Geography and Astronomy', 'Stevenson, Edward Luther', '2012-06-11', 24, 'https://www.gutenberg.org/ebooks/39867', 'en', 13556), +(40874, 'The Mysterious Sketch', 'Erckmann-Chatrian', '2011-05-02', 11, 'https://www.gutenberg.org/ebooks/36013', 'en', 179), +(40875, 'Patrins\r\nTo Which Is Added an Inquirendo Into the Wit & Other Good Parts of His Late Majesty King Charles the Second', 'Guiney, Louise Imogen', '2018-04-22', 12, 'https://www.gutenberg.org/ebooks/57024', 'en', 11052), +(40876, 'Το βιβλίο του μικρού αδερφού\r\nΜυθιστόρημα ενός Γάμου', 'Geijerstam, Gustaf af', '2010-08-28', 19, 'https://www.gutenberg.org/ebooks/33561', 'el', 705), +(40877, 'A Legacy of Fun', 'Lincoln, Abraham', '2019-02-10', 6, 'https://www.gutenberg.org/ebooks/58850', 'en', 14809), +(40878, 'A Treatise on Sheep:\r\nThe Best Means for their Improvement, General Management, and the Treatment of their Diseases.', 'Blacklock, Ambrose', '2011-12-02', 34, 'https://www.gutenberg.org/ebooks/38189', 'en', 14810), +(40879, 'Memoria sobre a cultura da Urumbeba e sobre criação da Cochonilha', 'Thiéry de Menonville, Nicolas-Joseph', '2012-06-26', 12, 'https://www.gutenberg.org/ebooks/40093', 'pt', 14811), +(40880, 'The Children\'s Book of Birds', 'Miller, Olive Thorne', '2012-10-22', 24, 'https://www.gutenberg.org/ebooks/41141', 'en', 14812), +(40881, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, July 1878, No. 9', 'Various', '2007-06-22', 20, 'https://www.gutenberg.org/ebooks/21898', 'en', 479), +(40882, 'The Human Element', 'Kelley, Leo P.', '2019-07-25', 1619, 'https://www.gutenberg.org/ebooks/59982', 'en', 6512), +(40883, 'The Lost Child', 'Kingsley, Henry', '2008-05-09', 17, 'https://www.gutenberg.org/ebooks/25404', 'en', 14813), +(40884, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 553, June 23, 1832', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11631', 'en', 133), +(40885, 'Philosophy of Osteopathy', 'Still, A. T. (Andrew Taylor)', '2008-06-22', 104, 'https://www.gutenberg.org/ebooks/25864', 'en', 5107), +(40886, 'The Little Minister', 'Barrie, J. M. (James Matthew)', '2010-10-29', 39, 'https://www.gutenberg.org/ebooks/33901', 'en', 2389), +(40887, 'Roma beata; letters from the Eternal city', 'Elliott, Maud Howe', '2018-12-08', 5, 'https://www.gutenberg.org/ebooks/58430', 'en', 1896), +(40888, 'Ragged Dick, Or, Street Life in New York with the Boot-Blacks', 'Alger, Horatio, Jr.', '2004-10-05', 243, 'https://www.gutenberg.org/ebooks/5348', 'en', 14814), +(40889, 'Foster\'s Letter Of Marque\nA Tale Of Old Sydney - 1901', 'Becke, Louis', '2008-04-12', 6, 'https://www.gutenberg.org/ebooks/25058', 'en', 324), +(40890, 'Rowlandson the Caricaturist; a Selection from His Works. Vol. 2', 'Grego, Joseph', '2014-06-15', 19, 'https://www.gutenberg.org/ebooks/45981', 'en', 14815), +(40891, 'Pamela vainottuna', 'Richardson, Samuel', '2016-08-30', 4, 'https://www.gutenberg.org/ebooks/52936', 'fi', 14816), +(40892, 'Kentucky in American Letters, 1784-1912. Vol. 2 of 2', 'Townsend, John Wilson', '2012-07-06', 28, 'https://www.gutenberg.org/ebooks/39407', 'en', 14817), +(40893, 'Index for Works of Arthur Colton\nHyperlinks to all Chapters in the Individual Ebooks', 'Colton, Arthur', '2018-07-10', 1, 'https://www.gutenberg.org/ebooks/57478', 'en', 198), +(40894, 'Letters from an Old Railway Official to His Son, a Division Superintendent', 'Hine, Charles De Lano', '2014-02-09', 12, 'https://www.gutenberg.org/ebooks/44853', 'en', 14818), +(40895, 'At Sundown, and other poems\r\nPart 5 from Volume IV of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9585', 'en', 350), +(40896, 'Frenzied Fiction', 'Leacock, Stephen', '2005-07-01', 61, 'https://www.gutenberg.org/ebooks/8457', 'en', 5688), +(40897, 'Claude et Juliette', 'Assollant, Alfred', '2005-10-14', 20, 'https://www.gutenberg.org/ebooks/16874', 'fr', 61), +(40898, 'The National Geographic Magazine, Vol. I., No. 2, April, 1889', 'Various', '2015-08-24', 10, 'https://www.gutenberg.org/ebooks/49770', 'en', 3550), +(40899, 'Historic Adventures: Tales from American History', 'Holland, Rupert Sargent', '2013-03-24', 27, 'https://www.gutenberg.org/ebooks/42398', 'en', 8127), +(40900, 'Printcrime', 'Doctorow, Cory', '2006-04-24', 60, 'https://www.gutenberg.org/ebooks/19000', 'en', 26), +(40901, 'Life Blood', 'Hoover, Thomas', '2010-11-14', 32, 'https://www.gutenberg.org/ebooks/34318', 'en', 461), +(40902, 'The Works of Oliver Wendell Holmes: An Index of the Project Gutenberg Editions', 'Holmes, Oliver Wendell', '2009-05-10', 18, 'https://www.gutenberg.org/ebooks/28747', 'en', 198), +(40903, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 01: Childhood', 'Casanova, Giacomo', '2004-12-10', 47, 'https://www.gutenberg.org/ebooks/2951', 'en', 4164), +(40904, 'Memoirs of the Courts of Louis XV and XVI. — Complete\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Du Hausset, Mme.', '2004-08-25', 52, 'https://www.gutenberg.org/ebooks/3883', 'en', 1870), +(40905, 'Troop One of the Labrador', 'Wallace, Dillon', '2005-06-13', 13, 'https://www.gutenberg.org/ebooks/16048', 'en', 10538), +(40906, 'The Hound From The North', 'Cullum, Ridgwell', '2009-08-15', 57, 'https://www.gutenberg.org/ebooks/29695', 'en', 61), +(40907, 'Punch, or the London Charivari, Volume 107, September 29, 1894', 'Various', '2014-08-31', 13, 'https://www.gutenberg.org/ebooks/46738', 'en', 134), +(40908, 'Pasquale Paoli; ossia, la rotta di Ponte Nuovo', 'Guerrazzi, Francesco Domenico', '2015-03-15', 17, 'https://www.gutenberg.org/ebooks/48490', 'it', 98), +(40909, 'Der Occultismus des Altertums', 'Kiesewetter, Karl', '2013-07-02', 11, 'https://www.gutenberg.org/ebooks/43078', 'de', 10037), +(40910, 'A Pair of Blue Eyes', 'Hardy, Thomas', '2008-07-11', 261, 'https://www.gutenberg.org/ebooks/224', 'en', 14819), +(40911, 'Walking-Stick Papers', 'Holliday, Robert Cortes', '2004-10-11', 75, 'https://www.gutenberg.org/ebooks/13708', 'en', 20), +(40912, 'The Chainbearer; Or, The Littlepage Manuscripts', 'Cooper, James Fenimore', '2011-01-11', 12, 'https://www.gutenberg.org/ebooks/34916', 'en', 4570), +(40913, 'De l\'influence des passions sur le bonheur des individus et des nations', 'Staël, Madame de (Anne-Louise-Germaine)', '2006-09-10', 28, 'https://www.gutenberg.org/ebooks/19232', 'fr', 1794), +(40914, 'A Strange Discovery', 'Dake, Charles Romyn', '2005-08-01', 25, 'https://www.gutenberg.org/ebooks/8665', 'en', 26), +(40915, 'Additional Records and Extensions of Known Ranges of Mammals from Utah', 'Durrant, Stephen David', '2010-03-01', 21, 'https://www.gutenberg.org/ebooks/31458', 'en', 14820), +(40916, 'Punch, or the London Charivari, Vol. 150, April 5, 1916', 'Various', '2007-10-03', 12, 'https://www.gutenberg.org/ebooks/22873', 'en', 134), +(40917, 'Essai sur l\'origine de Toulon: Mémoire pour servir à l\'origine de cette ville', 'Vidal, Henri', '2015-07-29', 5, 'https://www.gutenberg.org/ebooks/49542', 'fr', 14821), +(40918, 'Claret and Olives, from the Garonne to the Rhone\nNotes, social, picturesque, and legendary, by the way.', 'Reach, Angus B. (Angus Bethune)', '2013-09-29', 14, 'https://www.gutenberg.org/ebooks/43844', 'en', 1117), +(40919, 'A Terminal Market System: New York\'s Most Urgent Need\r\nSome Observations, Comments, and Comparisons of European Markets', 'Black, Madeleine', '2009-04-22', 11, 'https://www.gutenberg.org/ebooks/28575', 'en', 14822), +(40920, 'Lancashire Songs', 'Waugh, Edwin', '2017-11-09', 8, 'https://www.gutenberg.org/ebooks/55921', 'en', 14823), +(40921, 'Castes and Tribes of Southern India. Vol. 6 of 7', 'Thurston, Edgar', '2013-06-21', 67, 'https://www.gutenberg.org/ebooks/42996', 'en', 4574), +(40922, 'Canoeing in Kanuckia\r\nOr, Haps and Mishaps Afloat and Ashore of the Statesman, the Editor, the Artist, and the Scribbler', 'Norton, Charles Ledyard', '2016-06-15', 15, 'https://www.gutenberg.org/ebooks/52338', 'en', 14824), +(40923, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 572, October 20, 1832', 'Various', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/11863', 'en', 133), +(40924, 'A Treatise on Fractures, Luxations, and Other Affections of the Bones', 'Desault, P.-J. (Pierre-Joseph)', '2019-01-03', 3, 'https://www.gutenberg.org/ebooks/58602', 'en', 4470), +(40925, 'The Damsel and the Sage: A Woman\'s Whimsies', 'Glyn, Elinor', '2007-03-01', 22, 'https://www.gutenberg.org/ebooks/20718', 'en', 5699), +(40926, 'The Best Short Stories of 1918, and the Yearbook of the American Short Story', NULL, '2012-05-06', 83, 'https://www.gutenberg.org/ebooks/39635', 'en', 112), +(40927, 'The Young Salesman', 'Alger, Horatio, Jr.', '2018-03-20', 32, 'https://www.gutenberg.org/ebooks/56798', 'en', 1080), +(40928, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1617', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4894', 'en', 5913), +(40929, 'The History of Don Quixote, Volume 2, Complete', 'Cervantes Saavedra, Miguel de', '2004-06-01', 210, 'https://www.gutenberg.org/ebooks/5946', 'en', 2176), +(40930, 'One Woman\'s Life', 'Herrick, Robert', '2006-10-29', 15, 'https://www.gutenberg.org/ebooks/19656', 'en', 3994), +(40931, 'Sten Sture nuorempi ja Kristiina Gyllenstjerna II: Tuomio', 'Stjernström, Louise', '2017-09-18', 10, 'https://www.gutenberg.org/ebooks/55579', 'fi', 2168), +(40932, 'The Adventures of Old Man Coyote', 'Burgess, Thornton W. (Thornton Waldo)', '2014-09-24', 30, 'https://www.gutenberg.org/ebooks/46952', 'en', 625), +(40933, 'Mary Marston', 'MacDonald, George', '2005-06-01', 31, 'https://www.gutenberg.org/ebooks/8201', 'en', 942), +(40934, 'The Duty of a Christian People under Divine Visitations', 'Smart, Newton', '2015-06-03', 1, 'https://www.gutenberg.org/ebooks/49126', 'en', 14825), +(40935, 'The story of my struggles: the memoirs of Arminius Vambéry, Volume 2', 'Vámbéry, Ármin', '2016-01-03', 4, 'https://www.gutenberg.org/ebooks/50837', 'en', 14826), +(40936, 'The Philosophy of Immanuel Kant', 'Lindsay, A. D. (Alexander Dunlop)', '2015-01-05', 29, 'https://www.gutenberg.org/ebooks/47880', 'en', 10969), +(40937, 'Due amori', 'Farina, Salvatore', '2008-11-04', 22, 'https://www.gutenberg.org/ebooks/27159', 'it', 860), +(40938, 'The Yellow Fairy Book', 'Lang, Andrew', '1996-08-01', 337, 'https://www.gutenberg.org/ebooks/640', 'en', 1223), +(40939, 'Itinerario de Buenos Aires a Cordoba', 'Sourryère de Souillac, José', '2006-07-08', 14, 'https://www.gutenberg.org/ebooks/18784', 'es', 14827), +(40940, 'A Connecticut Yankee in King Arthur\'s Court, Part 8.', 'Twain, Mark', '2004-07-07', 8, 'https://www.gutenberg.org/ebooks/7249', 'en', 12422), +(40941, 'Histoire de Quillembois Soldat', 'Hellé, André', '2010-03-28', 11, 'https://www.gutenberg.org/ebooks/31800', 'fr', 1235), +(40942, 'Moment of Truth', 'Wells, Basil', '2009-02-18', 40, 'https://www.gutenberg.org/ebooks/28111', 'en', 26), +(40943, 'The Chestermarke Instinct', 'Fletcher, J. S. (Joseph Smith)', '2009-02-02', 87, 'https://www.gutenberg.org/ebooks/27965', 'en', 128), +(40944, 'Der Junker von Denow; Ein Geheimnis; Ein Besuch; Auf dem Altenteil: Erzählungen', 'Raabe, Wilhelm', '2014-01-09', 9, 'https://www.gutenberg.org/ebooks/44639', 'de', 138), +(40945, '羅生門', 'Akutagawa, Ryunosuke', '1999-11-01', 338, 'https://www.gutenberg.org/ebooks/1982', 'ja', 179), +(40946, 'War—What For?', 'Kirkpatrick, George R. (George Ross)', '2018-11-10', 9, 'https://www.gutenberg.org/ebooks/58266', 'en', 2481), +(40947, 'The Pilots of Pomona: A Story of the Orkney Islands', 'Leighton, Robert', '2004-11-25', 17, 'https://www.gutenberg.org/ebooks/14149', 'en', 14828), +(40948, 'Sawdust & Spangles: Stories & Secrets of the Circus', 'Coup, W. C. (William Cameron)', '2011-05-25', 14, 'https://www.gutenberg.org/ebooks/36219', 'en', 5845), +(40949, 'Southern Horrors: Lynch Law in All Its Phases', 'Wells-Barnett, Ida B.', '2005-02-08', 528, 'https://www.gutenberg.org/ebooks/14975', 'en', 4609), +(40950, 'Memoirs of Mrs. Rebecca Steward, Containing: A Full Sketch of Her Life\r\nWith Various Selections from Her Writings and Letters ...', 'Steward, T. G. (Theophilus Gould)', '2011-12-22', 73, 'https://www.gutenberg.org/ebooks/38383', 'en', 14829), +(40951, 'Memorie di un vecchio carbonaro ravegnano', 'Uccellini, Primo', '2012-07-22', 19, 'https://www.gutenberg.org/ebooks/40299', 'it', 14830), +(40952, 'Προμηθεύς Δεσμώτης', 'Aeschylus', '2012-03-24', 37, 'https://www.gutenberg.org/ebooks/39251', 'el', 2127), +(40953, 'De martelaars der wetenschap', 'Tissandier, Gaston', '2018-10-07', 11, 'https://www.gutenberg.org/ebooks/58054', 'nl', 2928), +(40954, 'The Burglars\' Club: A Romance in Twelve Chronicles', 'Hering, Henry Augustus', '2012-09-30', 16, 'https://www.gutenberg.org/ebooks/40897', 'en', 14831), +(40955, 'The Men on Deck: Master, Mates and Crew, Their Duties and Responsibilities', 'Riesenberg, Felix', '2018-08-31', 16, 'https://www.gutenberg.org/ebooks/57820', 'en', 8589), +(40956, 'Dream Blocks', 'Higgins, Aileen Cleveland', '2013-01-29', 11, 'https://www.gutenberg.org/ebooks/41945', 'en', 859), +(40957, 'Wie wir einst so glücklich waren!', 'Speyer, Wilhelm', '2019-04-01', 13, 'https://www.gutenberg.org/ebooks/59186', 'de', 549), +(40958, 'Harper\'s Round Table, July 21, 1896', 'Various', '2019-01-28', 3, 'https://www.gutenberg.org/ebooks/58868', 'en', 668), +(40959, 'At the Fall of Port Arthur; Or, A Young American in the Japanese Navy', 'Stratemeyer, Edward', '2010-08-28', 22, 'https://www.gutenberg.org/ebooks/33559', 'en', 6190), +(40960, 'Histoires ou Contes du temps passé avec des moralités', 'Perrault, Charles', '2007-04-04', 13, 'https://www.gutenberg.org/ebooks/20972', 'fr', 1007), +(40961, 'The Golden Canyon', 'Henty, G. A. (George Alfred)', '2004-03-01', 34, 'https://www.gutenberg.org/ebooks/11609', 'en', 323), +(40962, 'Rome', 'Tuker, M. A. R. (Mildred Anna Rosalie)', '2011-07-23', 10, 'https://www.gutenberg.org/ebooks/36817', 'en', 2452), +(40963, 'Portage Paths: The Keys of the Continent', 'Hulbert, Archer Butler', '2012-10-26', 7, 'https://www.gutenberg.org/ebooks/41179', 'en', 14832), +(40964, 'The Motor Girls in the Mountains; or, The Gypsy Girl\'s Secret', 'Penrose, Margaret', '2012-03-05', 22, 'https://www.gutenberg.org/ebooks/39063', 'en', 2096), +(40965, 'The Bible, King James version, Book 33: Micah', 'Anonymous', '2005-04-01', 31, 'https://www.gutenberg.org/ebooks/8033', 'en', 5447), +(40966, 'Six Months in Mexico', 'Bly, Nellie', '2015-06-29', 44, 'https://www.gutenberg.org/ebooks/49314', 'en', 2487), +(40967, 'Osage Traditions', 'Dorsey, James Owen', '2006-10-04', 23, 'https://www.gutenberg.org/ebooks/19464', 'en', 14833), +(40968, 'Jack North\'s Treasure Hunt; Or, Daring Adventures in South America', 'Rockwood, Roy', '2005-04-01', 28, 'https://www.gutenberg.org/ebooks/7847', 'en', 14274), +(40969, 'The House Behind the Cedars', 'Chesnutt, Charles W. (Charles Waddell)', '1996-03-01', 78, 'https://www.gutenberg.org/ebooks/472', 'en', 2815), +(40970, 'The Last of the De Mullins: A Play Without a Preface', 'Hankin, St. John', '2017-05-10', 12, 'https://www.gutenberg.org/ebooks/54699', 'en', 317), +(40971, 'Ghosts I Have Met and Some Others', 'Bangs, John Kendrick', '2004-11-01', 51, 'https://www.gutenberg.org/ebooks/6995', 'en', 3480), +(40972, 'The Lani People', 'Bone, Jesse F. (Jesse Franklin)', '2001-02-01', 50, 'https://www.gutenberg.org/ebooks/2509', 'en', 26), +(40973, 'International Copyright\nConsidered in some of its Relations to Ethics and Political Economy', 'Putnam, George Haven', '2007-09-16', 17, 'https://www.gutenberg.org/ebooks/22619', 'en', 2983), +(40974, 'Scientific American Supplement, No. 455, September 20, 1884', 'Various', '2004-11-05', 24, 'https://www.gutenberg.org/ebooks/13962', 'en', 210), +(40975, 'Travels in North America, From Modern Writers\r\nWith Remarks and Observations; Exhibiting a Connected View of the Geography and Present State of that Quarter of the Globe', 'Bingley, William', '2009-03-13', 21, 'https://www.gutenberg.org/ebooks/28323', 'en', 2487), +(40976, 'Kuuden vuosikymmenen ajoilta: Muistelmia Suomesta', 'Schauman, August', '2015-10-17', 20, 'https://www.gutenberg.org/ebooks/50239', 'fi', 1578), +(40977, 'An American Patrician, or The Story of Aaron Burr\nIllustrated', 'Lewis, Alfred Henry', '2016-05-01', 15, 'https://www.gutenberg.org/ebooks/51911', 'en', 9491), +(40978, 'Kertomuksia', 'Bjørnson, Bjørnstjerne', '2015-01-16', 26, 'https://www.gutenberg.org/ebooks/48000', 'fi', 1606), +(40979, 'Die zärtlichen Schwestern', 'Gellert, Christian Fürchtegott', '2005-11-01', 39, 'https://www.gutenberg.org/ebooks/9327', 'de', 907), +(40980, 'My Wife and I; Or, Harry Henderson\'s History', 'Stowe, Harriet Beecher', '2015-01-04', 13, 'https://www.gutenberg.org/ebooks/47874', 'en', 3909), +(40981, 'A Christmas Story\nMan in His Element: or, A New Way to Keep House', 'Francis, Samuel W. (Samuel Ward)', '2006-07-06', 12, 'https://www.gutenberg.org/ebooks/18770', 'en', 2024), +(40982, 'The Evolution of \"Dodd\"\r\nA pedagogical story giving his struggle for the survival of the fittest, tracing his chances, his changes, and how he came out', 'Smith, William Hawley', '2004-09-08', 11, 'https://www.gutenberg.org/ebooks/13398', 'en', 341), +(40983, 'The Tenants of Malory, Volume 2', 'Le Fanu, Joseph Sheridan', '2011-03-03', 18, 'https://www.gutenberg.org/ebooks/35468', 'en', 167), +(40984, 'The Dope on Mars', 'Sharkey, Jack', '2008-10-08', 34, 'https://www.gutenberg.org/ebooks/26843', 'en', 179), +(40985, 'Baby', 'Rovetta, Gerolamo', '2009-06-04', 17, 'https://www.gutenberg.org/ebooks/29037', 'it', 860), +(40986, 'La femme du mort, Tome I (1897)', 'Bouvier, Alexis', '2006-02-10', 17, 'https://www.gutenberg.org/ebooks/17738', 'fr', 61), +(40987, 'Notas d\'arte', 'Lemos, António de', '2010-01-11', 12, 'https://www.gutenberg.org/ebooks/30926', 'pt', 13700), +(40988, 'Selima: Sadullinen komedia viidessä näytöksessä', 'Schiller, Friedrich', '2014-10-05', 20, 'https://www.gutenberg.org/ebooks/47048', 'fi', 4568), +(40989, 'The Blue Bird for Children\nThe Wonderful Adventures of Tyltyl and Mytyl in Search of Happiness', 'Leblanc, Georgette', '2009-02-04', 168, 'https://www.gutenberg.org/ebooks/27991', 'en', 4426), +(40990, 'Connecticut Boys in the Western Reserve: A Tale of the Moravian Massacre', 'Braden, James A. (James Andrew)', '2018-11-17', 20, 'https://www.gutenberg.org/ebooks/58292', 'en', 14834), +(40991, 'Peter Ruff and the Double Four', 'Oppenheim, E. Phillips (Edward Phillips)', '1999-11-01', 16, 'https://www.gutenberg.org/ebooks/1976', 'en', 128), +(40992, 'Report of the Railway Department of the Board of Trade on the London, Worcester, and Wolverhampton, and on the Birmingham and Shrewsbury Districts', 'Great Britain. Board of Trade. Railway Department', '2007-01-16', 9, 'https://www.gutenberg.org/ebooks/20388', 'en', 14835), +(40993, 'The Motor Boys on Thunder Mountain; Or, The Treasure Chest of Blue Rock', 'Young, Clarence', '2019-04-24', 18, 'https://www.gutenberg.org/ebooks/59340', 'en', 14836), +(40994, 'Vittoria — Volume 4', 'Meredith, George', '2003-09-01', 11, 'https://www.gutenberg.org/ebooks/4438', 'en', 98), +(40995, 'Stories Of Georgia', 'Harris, Joel Chandler', '2008-03-02', 30, 'https://www.gutenberg.org/ebooks/24728', 'en', 14837), +(40996, 'The Character of a Priest', 'Carlile, Richard', '2011-12-22', 15, 'https://www.gutenberg.org/ebooks/38377', 'en', 14838), +(40997, 'The Itinerary of Benjamin of Tudela', 'Benjamin, of Tudela, active 12th century', '2005-02-08', 117, 'https://www.gutenberg.org/ebooks/14981', 'en', 885), +(40998, 'One of Life\'s Slaves', 'Lie, Jonas', '2005-05-18', 25, 'https://www.gutenberg.org/ebooks/15853', 'en', 286), +(40999, 'When I was your age', 'Richards, Laura Elizabeth Howe', '2018-01-04', 4, 'https://www.gutenberg.org/ebooks/56308', 'en', 14839), +(41000, 'Kaarle XII vanginvartijana', 'Åberg, J. O. (Johan Olof)', '2012-02-25', 8, 'https://www.gutenberg.org/ebooks/38979', 'fi', 2168), +(41001, 'The Silver Ring Mystery', 'Wells, Helen', '2016-11-04', 16, 'https://www.gutenberg.org/ebooks/53448', 'en', 454), +(41002, 'Encyclopaedia Britannica, 11th Edition, \"Justinian II.\" to \"Kells\"\r\nVolume 15, Slice 6', 'Various', '2012-09-25', 60, 'https://www.gutenberg.org/ebooks/40863', 'en', 1081), +(41003, 'Fénelon: The Mystic', 'Mudge, James', '2018-04-03', 14, 'https://www.gutenberg.org/ebooks/56906', 'en', 14840), +(41004, 'Under the Meteor Flag: Log of a Midshipman during the French Revolutionary War', 'Collingwood, Harry', '2007-04-13', 26, 'https://www.gutenberg.org/ebooks/21068', 'en', 4758), +(41005, 'Willie\'s Planet', 'Ellis, Mike', '2019-03-31', 38, 'https://www.gutenberg.org/ebooks/59172', 'en', 26), +(41006, 'Human, All Too Human: A Book for Free Spirits', 'Nietzsche, Friedrich Wilhelm', '2011-11-26', 540, 'https://www.gutenberg.org/ebooks/38145', 'en', 2159), +(41007, 'The Land of Footprints', 'White, Stewart Edward', '1998-07-01', 17, 'https://www.gutenberg.org/ebooks/1378', 'en', 14637), +(41008, 'Tom Slade with the Colors', 'Fitzhugh, Percy Keese', '2007-04-05', 19, 'https://www.gutenberg.org/ebooks/20986', 'en', 2994), +(41009, 'Un\'avventura di viaggio', 'Bracco, Roberto', '2011-11-05', 17, 'https://www.gutenberg.org/ebooks/37931', 'it', 407), +(41010, 'The Woman in Black', 'Bentley, E. C. (Edmund Clerihew)', '2007-06-18', 87, 'https://www.gutenberg.org/ebooks/21854', 'en', 128), +(41011, 'Woven with the Ship: A Novel of 1865\r\nTogether with certain other veracious tales of various sorts', 'Brady, Cyrus Townsend', '2012-03-10', 27, 'https://www.gutenberg.org/ebooks/39097', 'en', 403), +(41012, 'Woman under Monasticism\nChapters on Saint-Lore and Convent Life between A.D. 500 and A.D. 1500', 'Eckenstein, Lina', '2013-05-13', 14, 'https://www.gutenberg.org/ebooks/42708', 'en', 14841), +(41013, 'De Boe Hedma in Zuid-Tunis\r\nDe Aarde en haar Volken, 1907', 'Maumené, Charles', '2006-10-07', 4, 'https://www.gutenberg.org/ebooks/19490', 'nl', 6036), +(41014, 'Ireland, Historic and Picturesque', 'Johnston, Charles', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/12078', 'en', 117), +(41015, 'Military Reminiscences of the Civil War, Volume 1: April 1861-November 1863', 'Cox, Jacob D. (Jacob Dolson)', '2004-11-01', 22, 'https://www.gutenberg.org/ebooks/6961', 'en', 1717), +(41016, 'Ozma of Oz\r\nA Record of Her Adventures with Dorothy Gale of Kansas, the Yellow Hen, the Scarecrow, the Tin Woodman, Tiktok, the Cowardly Lion, and the Hungry Tiger; Besides Other Good People too Numerous to Mention Faithfully Recorded Herein', 'Baum, L. Frank (Lyman Frank)', '1996-04-01', 295, 'https://www.gutenberg.org/ebooks/486', 'en', 14842), +(41017, 'How to Cook Fish', 'Reed, Myrtle', '2006-06-09', 16, 'https://www.gutenberg.org/ebooks/18542', 'en', 11138), +(41018, 'The Robinson Telegraphic Cipher', 'Robinson, Stephen L. (Telegrapher)', '2015-02-11', 20, 'https://www.gutenberg.org/ebooks/48232', 'en', 14843), +(41019, 'A Book of Cheerful Cats and Other Animated Animals', 'Francis, J. G. (Joseph Greene)', '2009-10-25', 9, 'https://www.gutenberg.org/ebooks/30328', 'en', 625), +(41020, 'The Call of the Wild', 'London, Jack', '2005-09-01', 38, 'https://www.gutenberg.org/ebooks/9115', 'en', 2464), +(41021, 'Grove of the Unborn', 'Venable, Lyn', '2009-06-22', 37, 'https://www.gutenberg.org/ebooks/29205', 'en', 26), +(41022, 'Den engelske Lods', 'Wergeland, Henrik Arnold', '2004-07-07', 30, 'https://www.gutenberg.org/ebooks/12844', 'no', 14844), +(41023, 'The Divine Fire', 'Sinclair, May', '2004-11-09', 28, 'https://www.gutenberg.org/ebooks/13996', 'en', 6875), +(41024, 'Jocus és Momus', 'Jókai, Mór', '2010-12-30', 6, 'https://www.gutenberg.org/ebooks/34788', 'hu', 311), +(41025, 'The Great Events by Famous Historians, Volume 12', NULL, '2006-02-01', 43, 'https://www.gutenberg.org/ebooks/9929', 'en', 346), +(41026, 'Buchanan\'s Journal of Man, April 1887\nVolume 1, Number 3', NULL, '2008-06-24', 15, 'https://www.gutenberg.org/ebooks/25890', 'en', 1974), +(41027, 'The House of the Lord: A Study of Holy Sanctuaries Ancient and Modern', 'Talmage, James E. (James Edward)', '2014-03-16', 77, 'https://www.gutenberg.org/ebooks/45149', 'en', 14845), +(41028, 'Notes and Queries, Number 63, January 11, 1851', 'Various', '2005-04-17', 8, 'https://www.gutenberg.org/ebooks/15639', 'en', 105), +(41029, 'Think Yourself to Death', 'Marlowe, Stephen', '2010-06-15', 36, 'https://www.gutenberg.org/ebooks/32827', 'en', 179), +(41030, 'The Scamperers', 'Stearns, Charles A.', '2019-05-15', 55, 'https://www.gutenberg.org/ebooks/59516', 'en', 9910), +(41031, 'La Maison de l\'Ogre', 'Karr, Alphonse', '2011-09-29', 12, 'https://www.gutenberg.org/ebooks/37569', 'fr', 4252), +(41032, 'The Nursery, November 1873, Vol. XIV. No. 5', 'Various', '2008-03-29', 6, 'https://www.gutenberg.org/ebooks/24942', 'en', 4641), +(41033, 'The Little Lame Prince and His Travelling Cloak', 'Craik, Dinah Maria Mulock', '2014-06-15', 21, 'https://www.gutenberg.org/ebooks/45975', 'en', 323), +(41034, 'O cancioneiro portuguez da Vaticana', 'Braga, Teófilo', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11299', 'pt', 14846), +(41035, 'The Mysterious Basket; or, The Foundling. A Story for Boys and Girls', 'Anonymous', '2016-12-26', 9, 'https://www.gutenberg.org/ebooks/53810', 'en', 14847), +(41036, 'A Drake by George!', 'Trevena, John', '2012-01-07', 15, 'https://www.gutenberg.org/ebooks/38521', 'en', 637), +(41037, 'The Irish Penny Journal, Vol. 1 No. 12, September 19, 1840', 'Various', '2017-02-19', 8, 'https://www.gutenberg.org/ebooks/54209', 'en', 81), +(41038, 'Tales of the Chesapeake', 'Townsend, George Alfred', '2006-04-05', 11, 'https://www.gutenberg.org/ebooks/18126', 'en', 14848), +(41039, 'Barnavännen, 1905-06\r\nIllustrerad Veckotidning för de Små', 'Various', '2015-04-07', 9, 'https://www.gutenberg.org/ebooks/48656', 'sv', 14849), +(41040, 'Great Possessions', 'Ward, Wilfrid, Mrs.', '2006-03-08', 11, 'https://www.gutenberg.org/ebooks/17952', 'en', 1380), +(41041, 'The Iliad', 'Homer', '2000-06-01', 773, 'https://www.gutenberg.org/ebooks/2199', 'en', 4117), +(41042, 'Snow Bound, and other poems\r\nPart 4 From Volume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 13, 'https://www.gutenberg.org/ebooks/9571', 'en', 350), +(41043, 'Über die Dichtkunst beim Aristoteles\r\nNeu übersetzt und mit Einleitung und einem erklärenden Namen- und Sachverzeichnis versehen von Alfred Gudemann 1921', 'Aristotle', '2005-10-16', 55, 'https://www.gutenberg.org/ebooks/16880', 'de', 5878), +(41044, 'The Last Vendée; or, the She-Wolves of Machecoul', 'Dumas, Alexandre', '2015-08-26', 29, 'https://www.gutenberg.org/ebooks/49784', 'en', 14850), +(41045, 'Werwolves', 'O\'Donnell, Elliott', '2008-09-16', 49, 'https://www.gutenberg.org/ebooks/26629', 'en', 11201), +(41046, 'The Hunchback of Notre Dame', 'Hugo, Victor', '2004-09-01', 71, 'https://www.gutenberg.org/ebooks/6539', 'en', 2176), +(41047, 'Memoirs of the Courts of Louis XV and XVI. — Volume 2\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Lamballe, Marie Thérèse Louise de Savoie-Carignan, princesse de', '2004-12-03', 9, 'https://www.gutenberg.org/ebooks/3877', 'en', 27), +(41048, 'De Dominee en zijn Gemeente', 'Maclaren, Ian', '2009-08-10', 6, 'https://www.gutenberg.org/ebooks/29661', 'nl', 14851), +(41049, 'The Conuercyon of swerers\n(The Conversion of Swearers)', 'Hawes, Stephen', '2007-08-09', 12, 'https://www.gutenberg.org/ebooks/22289', 'en', 8), +(41050, 'Chicken Little Jane', 'Ritchie, Lily Munsell', '2007-12-21', 22, 'https://www.gutenberg.org/ebooks/23955', 'en', 3621), +(41051, 'Das Stuttgarter Hutzelmännlein', 'Mörike, Eduard', '2015-03-12', 10, 'https://www.gutenberg.org/ebooks/48464', 'de', 1007), +(41052, 'Sketches of Young Couples', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9743', 'en', 14852), +(41053, 'Types of Naval Officers, Drawn from the History of the British Navy', 'Mahan, A. T. (Alfred Thayer)', '2006-05-04', 55, 'https://www.gutenberg.org/ebooks/18314', 'en', 14853), +(41054, 'The 2010 CIA World Factbook', 'United States. Central Intelligence Agency', '2011-04-11', 263, 'https://www.gutenberg.org/ebooks/35830', 'en', 10662), +(41055, 'Canterbury Pieces', 'Butler, Samuel', '2002-06-01', 45, 'https://www.gutenberg.org/ebooks/3279', 'en', 5473), +(41056, 'The American Judiciary', 'Baldwin, Simeon E. (Simeon Eben)', '2005-08-01', 9, 'https://www.gutenberg.org/ebooks/8691', 'en', 14854), +(41057, 'The Courtship, Marriage, and Pic-Nic Dinner of Cock Robin & Jenny Wren\r\nWith the Death and Burial of Poor Cock Robin', 'Anonymous', '2007-10-05', 19, 'https://www.gutenberg.org/ebooks/22887', 'en', 343), +(41058, 'De Geschiedenis van het Grieksche Volk', 'Tappan, Eva March', '2009-04-20', 11, 'https://www.gutenberg.org/ebooks/28581', 'nl', 6424), +(41059, 'The Diamond Lens', 'O\'Brien, Fitz James', '2007-10-24', 67, 'https://www.gutenberg.org/ebooks/23169', 'en', 26), +(41060, 'The Memoirs of François René Vicomte de Chateaubriand sometime Ambassador to England. volume 3 (of 6)\nMémoires d\'outre-tombe volume 3', 'Chateaubriand, François-René, vicomte de', '2017-05-29', 13, 'https://www.gutenberg.org/ebooks/54807', 'en', 7678), +(41061, 'The Big Engine', 'Leiber, Fritz', '2016-03-25', 52, 'https://www.gutenberg.org/ebooks/51549', 'en', 179), +(41062, 'Παραμύθι χωρίς όνομα', 'Delta, Penelope Stephanou', '2013-06-17', 37, 'https://www.gutenberg.org/ebooks/42962', 'el', 14762), +(41063, 'Traffic in Souls: A Novel of Crime and Its Cure', 'Ball, Eustace Hale', '2009-07-19', 35, 'https://www.gutenberg.org/ebooks/29453', 'en', 972), +(41064, 'The Baritone\'s Parish; or, \"All Things to All Men\"', 'Ludlow, James M. (James Meeker)', '2019-06-10', 15, 'https://www.gutenberg.org/ebooks/59724', 'en', 2828), +(41065, 'On the Indian Sect of the Jainas', 'Bühler, Georg', '2004-04-01', 28, 'https://www.gutenberg.org/ebooks/11897', 'en', 14855), +(41066, 'The New England Cook Book, or Young Housekeeper\'s Guide\r\nBeing a Collection of the Most Valuable Receipts; Embracing all the Various Branches of Cookery, and Written in a Minute and Methodical Manner', 'Anonymous', '2011-07-10', 64, 'https://www.gutenberg.org/ebooks/36689', 'en', 2161), +(41067, 'Lays of the Scottish Cavaliers and Other Poems', 'Aytoun, William Edmondstoune', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/10945', 'en', 14856), +(41068, 'High Man', 'Clarke, Jay', '2010-05-03', 23, 'https://www.gutenberg.org/ebooks/32229', 'en', 109), +(41069, 'History of the United Netherlands, 1586-89 — Complete', 'Motley, John Lothrop', '2004-11-08', 20, 'https://www.gutenberg.org/ebooks/4860', 'en', 3372), +(41070, 'Extracts from the Ballet-Suite Scherazada, Pt. 1', 'American Concert Orchestra', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/10179', 'en', 14857), +(41071, 'Old Church Lore', 'Andrews, William', '2012-01-30', 13, 'https://www.gutenberg.org/ebooks/38713', 'en', 14723), +(41072, 'Memoir of Rev. Joseph Badger\nFourth Edition', 'Holland, E. G. (Elihu Goodwin)', '2012-08-29', 18, 'https://www.gutenberg.org/ebooks/40609', 'en', 14858), +(41073, 'Under Padlock and Seal', 'Avery, Harold', '2010-02-08', 16, 'https://www.gutenberg.org/ebooks/31231', 'en', 9066), +(41074, 'The Velveteen Rabbit', 'Bianco, Margery Williams', '2008-08-01', 6, 'https://www.gutenberg.org/ebooks/26286', 'en', 1235), +(41075, 'The Law of Storms\r\nThe various phenomena by which their approach can be ascertained with certainty, and practical directions to mariners for the avoidance of their fury, compiled from various sources', 'Ross, John', '2017-10-19', 6, 'https://www.gutenberg.org/ebooks/55774', 'en', 14859), +(41076, 'Passages from the English Notebooks, Complete', 'Hawthorne, Nathaniel', '2005-04-01', 26, 'https://www.gutenberg.org/ebooks/7878', 'en', 776), +(41077, 'The Act of Incorporation and the By-Laws of the Massachusetts Homeopathic Medical Society', 'Massachusetts Homoeopathic Medical Society', '2006-06-15', 10, 'https://www.gutenberg.org/ebooks/18589', 'en', 14860), +(41078, 'Sane Sex Life and Sane Sex Living\r\nSome Things That All Sane People Ought to Know About Sex Nature and Sex Functioning; Its Place in the Economy of Life, Its Proper Training and Righteous Exercise', 'Long, H. W. (Harland William)', '2004-08-12', 200, 'https://www.gutenberg.org/ebooks/13161', 'en', 5472), +(41079, 'Archæological Essays, Vol. 1', 'Simpson, James Young', '2008-11-28', 10, 'https://www.gutenberg.org/ebooks/27354', 'en', 2011), +(41080, 'Amphitryon', 'Molière', '2001-03-01', 37, 'https://www.gutenberg.org/ebooks/2536', 'en', 1234), +(41081, 'The Tables of the Law; & The Adoration of the Magi', 'Yeats, W. B. (William Butler)', '2013-08-31', 48, 'https://www.gutenberg.org/ebooks/43611', 'en', 5836), +(41082, 'An Ode Pronounced Before the Inhabitants of Boston, September the Seventeenth, 1830,\nat the Centennial Celebration of the Settlement of the City', 'Sprague, Charles', '2007-09-16', 13, 'https://www.gutenberg.org/ebooks/22626', 'en', 14861), +(41083, 'Weymouth New Testament in Modern Speech, Luke', 'Weymouth, Richard Francis', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/8830', 'en', 2260), +(41084, 'Arroz y tartana', 'Blasco Ibáñez, Vicente', '2005-08-02', 27, 'https://www.gutenberg.org/ebooks/16413', 'es', 1696), +(41085, 'Her Dark Inheritance', 'Collins, E. Burke, Mrs.', '2014-07-22', 12, 'https://www.gutenberg.org/ebooks/46363', 'en', 336), +(41086, 'The Late Tenant', 'Tracy, Louis', '2011-03-26', 17, 'https://www.gutenberg.org/ebooks/35691', 'en', 61), +(41087, 'In the Courts of Memory, 1858-1875; from Contemporary Letters', 'Hegermann-Lindencrone, L. de (Lillie de)', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/7044', 'en', 1870), +(41088, 'Gamblers and Gambling', 'Beecher, Henry Ward', '2010-12-24', 18, 'https://www.gutenberg.org/ebooks/34743', 'en', 2473), +(41089, 'Cumner\'s Son and Other South Sea Folk — Volume 02', 'Parker, Gilbert', '2004-07-01', 36, 'https://www.gutenberg.org/ebooks/6196', 'en', 108), +(41090, 'The Mystical Element of Religion, as studied in Saint Catherine of Genoa and her friends, Volume 2 (of 2)', 'Hügel, Friedrich, Freiherr von', '2015-10-14', 26, 'https://www.gutenberg.org/ebooks/50206', 'en', 4668), +(41091, 'Gov. Bob. Taylor\'s Tales\r\n\"The fiddle and the bow,\" \"The paradise of fools,\" \"Visions and dreams\"', 'Taylor, Robt. L. (Robert Love)', '2006-12-23', 17, 'https://www.gutenberg.org/ebooks/20171', 'en', 659), +(41092, 'Versuch über die physische Erziehung der Kinder', 'Wurzer, Ferdinand', '2016-11-09', 17, 'https://www.gutenberg.org/ebooks/53483', 'de', 5556), +(41093, 'Punch, or the London Charivari, Volume 102, February 27, 1892', 'Various', '2004-12-13', 8, 'https://www.gutenberg.org/ebooks/14344', 'en', 134), +(41094, 'The Bachelor\'s Own Book\nBeing Twenty-Four Passages in the Life of Mr. Lambkin, (Gent.)', NULL, '2013-12-15', 22, 'https://www.gutenberg.org/ebooks/44434', 'en', 2965), +(41095, 'Tales of War', 'Dunsany, Lord', '2004-05-01', 93, 'https://www.gutenberg.org/ebooks/5713', 'en', 335); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(41096, 'Notes on Old Edinburgh', 'Bird, Isabella L. (Isabella Lucy)', '2011-05-02', 17, 'https://www.gutenberg.org/ebooks/36014', 'en', 14862), +(41097, 'The Evolution of States', 'Robertson, J. M. (John Mackinnon)', '2012-05-30', 19, 'https://www.gutenberg.org/ebooks/39860', 'en', 5067), +(41098, 'Le juif errant - Tome II', 'Sue, Eugène', '2005-03-08', 24, 'https://www.gutenberg.org/ebooks/15296', 'fr', 98), +(41099, 'The Art of Preserving All Kinds of Animal and Vegetable Substances for Several Years, 2nd ed.\r\nA work published by the order of the French minister of the interior, on the report of the Board of arts and manufactures', 'Appert, Nicolas', '2016-07-10', 33, 'https://www.gutenberg.org/ebooks/52551', 'en', 14863), +(41100, 'Renlighet och frisk luft', 'Öhrvall, Hjalmar', '2012-06-27', 4, 'https://www.gutenberg.org/ebooks/40094', 'sv', 4793), +(41101, 'The Works of William Harvey M.D.\nTranslated from the Latin with a life of the author', 'Harvey, William', '2019-02-10', 5, 'https://www.gutenberg.org/ebooks/58857', 'en', 11547), +(41102, 'Ecological Observations on the Woodrat, Neotoma floridana', 'Rainey, Dennis G.', '2010-08-29', 10, 'https://www.gutenberg.org/ebooks/33566', 'en', 8657), +(41103, 'Oeuvres complètes de Charles Péguy (tome 1)', 'Péguy, Charles', '2018-04-22', 66, 'https://www.gutenberg.org/ebooks/57023', 'fr', 642), +(41104, 'Notes and Queries, Number 05, December 1, 1849', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11636', 'en', 105), +(41105, 'Pastor Pastorum; Or, The Schooling of the Apostles by Our Lord', 'Latham, Henry', '2011-07-23', 17, 'https://www.gutenberg.org/ebooks/36828', 'en', 3941), +(41106, 'Souvenirs et correspondance tirés des papiers de Mme Récamier (1/2)', 'Récamier, Jeanne Françoise Julie Adélaïde Bernard', '2008-05-09', 34, 'https://www.gutenberg.org/ebooks/25403', 'fr', 14864), +(41107, 'Cuba and Her People of To-day\r\nAn account of the history and progress of the island previous to its independence; a description of its physical features; a study of its people; and, in particular, an examination of its present political conditions, its industries, natural resources, and prospects; together with information and suggestions designed to aid the prospective investor or settler', 'Forbes-Lindsay, C. H.', '2019-07-26', 543, 'https://www.gutenberg.org/ebooks/59985', 'en', 6667), +(41108, 'Club Life of London, Vol. 1 (of 2)\r\nWith Anecdotes of the Clubs, Coffee-Houses and Taverns of the Metropolis During the 17th, 18th, and 19th Centuries', 'Timbs, John', '2012-10-23', 13, 'https://www.gutenberg.org/ebooks/41146', 'en', 6192), +(41109, 'Wood Engraving', 'Beedham, R. J.', '2014-01-06', 22, 'https://www.gutenberg.org/ebooks/44606', 'en', 14865), +(41110, 'The Bride of the Nile — Volume 05', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5521', 'en', 803), +(41111, 'The Spinners\' Book of Fiction', 'Spinners\' Club', '2007-01-11', 28, 'https://www.gutenberg.org/ebooks/20343', 'en', 315), +(41112, 'Amis', 'Haraucourt, Edmond', '2018-11-10', 22, 'https://www.gutenberg.org/ebooks/58259', 'fr', 298), +(41113, 'The Dweller on the Threshold', 'Hichens, Robert', '2004-11-27', 30, 'https://www.gutenberg.org/ebooks/14176', 'en', 114), +(41114, 'Wanderings in Spain', 'Gautier, Théophile', '2016-08-09', 14, 'https://www.gutenberg.org/ebooks/52763', 'en', 14866), +(41115, 'Pushing to the Front', 'Marden, Orison Swett', '2007-05-04', 130, 'https://www.gutenberg.org/ebooks/21291', 'en', 4065), +(41116, 'Encyclopaedia Britannica, 11th Edition, \"France\" to \"Francis Joseph I.\"\r\nVolume 10, Slice 8', 'Various', '2011-05-25', 26, 'https://www.gutenberg.org/ebooks/36226', 'en', 1081), +(41117, 'The Cabinetmaker in Eighteenth-Century Williamsburg\r\nGiving Attention to the City’s Chief Craftsmen in the Furniture Way; And to Their Tools & Methods of Working', 'Heuvel, Johannes', '2018-05-25', 49, 'https://www.gutenberg.org/ebooks/57211', 'en', 14867), +(41118, 'The Symposium', 'Xenophon', '1998-01-01', 83, 'https://www.gutenberg.org/ebooks/1181', 'en', 4117), +(41119, 'Terry\'s Trials and Triumphs', 'Oxley, J. Macdonald (James Macdonald)', '2010-09-17', 10, 'https://www.gutenberg.org/ebooks/33754', 'en', 153), +(41120, 'Stufen: Eine Entwickelung in Aphorismen und Tagebuch-Notizen', 'Morgenstern, Christian', '2005-05-25', 33, 'https://www.gutenberg.org/ebooks/15898', 'de', 3769), +(41121, 'Day of the Druid', 'Enferd, Knut', '2010-06-04', 20, 'https://www.gutenberg.org/ebooks/32686', 'en', 1442), +(41122, 'Mohawks: A Novel. Volume 1 of 3', 'Braddon, M. E. (Mary Elizabeth)', '2012-11-16', 27, 'https://www.gutenberg.org/ebooks/41374', 'en', 61), +(41123, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 343, November 29, 1828', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11404', 'en', 133), +(41124, 'A Poetical Cook-Book', 'Moss, Maria J.', '2008-05-28', 23, 'https://www.gutenberg.org/ebooks/25631', 'en', 8), +(41125, 'Twenty Years of Balkan Tangle', 'Durham, M. E. (Mary Edith)', '2006-10-30', 27, 'https://www.gutenberg.org/ebooks/19669', 'en', 14868), +(41126, 'The Progress of the Century', NULL, '2017-09-14', 64, 'https://www.gutenberg.org/ebooks/55546', 'en', 14869), +(41127, 'Cattle Brands: A Collection of Western Camp-Fire Stories', 'Adams, Andy', '2004-05-01', 216, 'https://www.gutenberg.org/ebooks/12281', 'en', 774), +(41128, 'The Final Campaign: Marines in the Victory on Okinawa', 'Alexander, Joseph H.', '2015-06-03', 50, 'https://www.gutenberg.org/ebooks/49119', 'en', 14870), +(41129, 'The History and Antiquities of Horsham', 'Dudley, Howard', '2010-01-17', 4, 'https://www.gutenberg.org/ebooks/31003', 'en', 14871), +(41130, 'Washington and His Comrades in Arms: A Chronicle of the War of Independence', 'Wrong, George McKinnon', '2001-07-01', 39, 'https://www.gutenberg.org/ebooks/2704', 'en', 14872), +(41131, 'Eutropius', 'Eutropius, active 4th century', '2015-12-31', 10, 'https://www.gutenberg.org/ebooks/50808', 'en', 6793), +(41132, 'Anthem', 'Rand, Ayn', '2009-05-01', 109, 'https://www.gutenberg.org/ebooks/28912', 'en', 1061), +(41133, 'Old Mole\r\nBeing the Surprising Adventures in England of Herbert Jocelyn Beenham, M.A., Sometime Sixth-Form Master at Thrigsby Grammar School in the County of Lancaster', 'Cannan, Gilbert', '2013-08-08', 20, 'https://www.gutenberg.org/ebooks/43423', 'en', 95), +(41134, 'Four Psalms XXIII. XXXVI. LII. CXXI.\r\nInterpreted for practical use', 'Smith, George Adam', '2004-09-02', 7, 'https://www.gutenberg.org/ebooks/13353', 'en', 9166), +(41135, '海公案', 'Anonymous', '2017-04-06', 121, 'https://www.gutenberg.org/ebooks/54494', 'zh', 14873), +(41136, '吶喊', 'Lu, Xun', '2008-11-05', 50, 'https://www.gutenberg.org/ebooks/27166', 'zh', 3224), +(41137, '本草備要', 'Wang, Ang', '2008-10-12', 37, 'https://www.gutenberg.org/ebooks/26888', 'zh', 14874), +(41138, 'India Under British Rule from the Foundation of the East India Company', 'Wheeler, James Talboys', '2014-06-30', 56, 'https://www.gutenberg.org/ebooks/46151', 'en', 2957), +(41139, 'Hamlet, Prinz von Dännemark', 'Shakespeare, William', '2005-01-01', 100, 'https://www.gutenberg.org/ebooks/7276', 'de', 5018), +(41140, 'In Defense of the Flag: A true war story\r\nA pen picture of scenes and incidents during the great rebellion.--Thrilling experiences during escape from southern prisons, etc.', 'Stafford, David W.', '2015-09-10', 8, 'https://www.gutenberg.org/ebooks/49925', 'en', 2363), +(41141, 'The Birth of Yugoslavia, Volume 1', 'Baerlein, Henry', '2007-08-26', 25, 'https://www.gutenberg.org/ebooks/22414', 'en', 14329), +(41142, 'Orjien vapauttaminen Pohjois-Amerikassa', 'Gripenberg, Alexandra, friherrinna', '2005-08-29', 10, 'https://www.gutenberg.org/ebooks/16621', 'fi', 1795), +(41143, 'Tragedies of the White Slave', 'Lytle, H. M.', '2015-09-22', 25, 'https://www.gutenberg.org/ebooks/50034', 'en', 14875), +(41144, 'The Pearl Story Book: Stories and Legends of Winter, Christmas, and New Year\'s Day', NULL, '2010-12-06', 27, 'https://www.gutenberg.org/ebooks/34571', 'en', 388), +(41145, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 694\nApril 14, 1877.', 'Various', '2014-10-09', 6, 'https://www.gutenberg.org/ebooks/47083', 'en', 18), +(41146, 'The Life of a Foxhound', 'Mills, John', '2016-06-11', 10, 'https://www.gutenberg.org/ebooks/52307', 'en', 2464), +(41147, 'Eli\'s Children: The Chronicles of an Unhappy Family', 'Fenn, George Manville', '2011-07-06', 8, 'https://www.gutenberg.org/ebooks/36642', 'en', 14876), +(41148, 'Alice of Old Vincennes', 'Thompson, Maurice', '2003-05-01', 34, 'https://www.gutenberg.org/ebooks/4097', 'en', 14877), +(41149, 'The Spanish Brothers: A Tale of the Sixteenth Century', 'Alcock, Deborah', '2013-11-23', 18, 'https://www.gutenberg.org/ebooks/44262', 'en', 14878), +(41150, 'Keukenboek', 'Davidis, Henriette', '2011-10-18', 18, 'https://www.gutenberg.org/ebooks/37790', 'nl', 1957), +(41151, 'The Heart of the Hills', 'Fox, John, Jr.', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/5145', 'en', 13431), +(41152, 'The Cosmic Computer', 'Piper, H. Beam', '2007-03-03', 209, 'https://www.gutenberg.org/ebooks/20727', 'en', 26), +(41153, 'Les Filleules de Rubens, Tome I', 'Berthoud, S. Henry (Samuel Henry)', '2004-12-29', 19, 'https://www.gutenberg.org/ebooks/14512', 'fr', 98), +(41154, 'A System of Operative Surgery, Volume 4 (of 4)', NULL, '2012-12-26', 23, 'https://www.gutenberg.org/ebooks/41710', 'en', 14879), +(41155, 'The Aspirations of Jean Servien', 'France, Anatole', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11060', 'en', 687), +(41156, 'Segunda parte de la crónica del Perú, que trata del señorio de los Incas Yupanquis y de sus grandes hechos y gobernacion', 'Cieza de León, Pedro de', '2008-04-30', 40, 'https://www.gutenberg.org/ebooks/25255', 'es', 14880), +(41157, 'The Community Cook Book', 'Anonymous', '2008-01-21', 48, 'https://www.gutenberg.org/ebooks/24387', 'en', 103), +(41158, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 7, De Los Pleitos de Colón, I', NULL, '2018-08-12', 21, 'https://www.gutenberg.org/ebooks/57675', 'es', 2194), +(41159, 'Japan: An Attempt at Interpretation', 'Hearn, Lafcadio', '2004-06-01', 81, 'https://www.gutenberg.org/ebooks/5979', 'en', 983), +(41160, 'Randwertaufgaben bei Systemen von linearen partiellen Differentialgleichungen erster Ordnung', 'Hurwitz, Wallie Abraham', '2010-08-02', 8, 'https://www.gutenberg.org/ebooks/33330', 'de', 14881), +(41161, 'The Riddle of the Sands', 'Childers, Erskine', '2000-10-01', 231, 'https://www.gutenberg.org/ebooks/2360', 'en', 14882), +(41162, 'Ned Myers, or, a Life Before the Mast', 'Cooper, James Fenimore', '2006-01-01', 28, 'https://www.gutenberg.org/ebooks/9788', 'en', 14883), +(41163, 'Mademoiselle de Bressier', 'Delpit, Albert', '2013-06-27', 17, 'https://www.gutenberg.org/ebooks/43047', 'fr', 298), +(41164, 'George Sand et ses amis', 'Le Roy, Albert', '2004-10-13', 11, 'https://www.gutenberg.org/ebooks/13737', 'fr', 1285), +(41165, 'The Ranch Girls in Europe', 'Vandercook, Margaret', '2011-01-12', 101, 'https://www.gutenberg.org/ebooks/34929', 'en', 14884), +(41166, 'Sketch of Handel and Beethoven\r\nTwo Lectures, Delivered in the Lecture Hall of the Wimbledon Village Club, on Monday Evening, Dec. 14, 1863; and Monday Evening, Jan. 11, 1864', 'Ball, Thomas Hanly', '2008-12-12', 24, 'https://www.gutenberg.org/ebooks/27502', 'en', 8480), +(41167, 'The Athelings; or, the Three Gifts. Complete', 'Oliphant, Mrs. (Margaret)', '2017-07-15', 18, 'https://www.gutenberg.org/ebooks/55122', 'en', 45), +(41168, 'Seventy Years on the Frontier', 'Majors, Alexander', '2013-02-25', 18, 'https://www.gutenberg.org/ebooks/42195', 'en', 930), +(41169, 'The Rubáiyát of a Bachelor', 'Rowland, Helen', '2010-03-02', 19, 'https://www.gutenberg.org/ebooks/31467', 'en', 14885), +(41170, 'Den tillförlitligaste Drömboken: Med öfwer 100 roliga figurer', NULL, '2015-11-13', 11, 'https://www.gutenberg.org/ebooks/50450', 'sv', 14886), +(41171, 'Punch, or the London Charivari, Vol. 159, 1920-10-06', 'Various', '2005-12-26', 8, 'https://www.gutenberg.org/ebooks/17397', 'en', 134), +(41172, 'Our Battalion\nBeing Some Slight Impressions of His Majesty\'s Auxiliary Forces, in Camp and Elsewhere', 'Raven-Hill, L. (Leonard)', '2010-10-22', 14, 'https://www.gutenberg.org/ebooks/34115', 'en', 1688), +(41173, 'The Fantasy Fan December 1933\nThe Fans\' Own Magazine', 'Various', '2014-08-08', 19, 'https://www.gutenberg.org/ebooks/46535', 'en', 1524), +(41174, 'Eugene Aram — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7612', 'en', 4703), +(41175, 'The Film of Fear', 'Kummer, Frederic Arnold', '2009-07-23', 12, 'https://www.gutenberg.org/ebooks/29498', 'en', 128), +(41176, 'La Karavano', 'Hauff, Wilhelm', '2007-07-14', 9, 'https://www.gutenberg.org/ebooks/22070', 'eo', 1007), +(41177, 'Ten Years\' Exile\nMemoirs of That Interesting Period of the Life of the Baroness De Stael-Holstein, Written by Herself, during the Years 1810, 1811, 1812, and 1813, and Now First Published from the Original Manuscript, by Her Son.', 'Staël, Madame de (Anne-Louise-Germaine)', '2005-07-08', 40, 'https://www.gutenberg.org/ebooks/16245', 'en', 14887), +(41178, 'Die Sternbuben in der Großstadt: Eine heitere Geschichte', 'Siebe, Josephine', '2016-03-28', 6, 'https://www.gutenberg.org/ebooks/51582', 'de', 153), +(41179, 'The Duel and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-24', 152, 'https://www.gutenberg.org/ebooks/13505', 'en', 4078), +(41180, 'The Doomsman', 'Sutphen, Van Tassel', '2009-01-07', 38, 'https://www.gutenberg.org/ebooks/27730', 'en', 26), +(41181, 'Island Tales / On the Makaloa Mat', 'London, Jack', '2000-04-01', 84, 'https://www.gutenberg.org/ebooks/2152', 'en', 12689), +(41182, 'The Chief Legatee', 'Green, Anna Katharine', '2006-03-18', 40, 'https://www.gutenberg.org/ebooks/17999', 'en', 1380), +(41183, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 7 - (P)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 15, 'https://www.gutenberg.org/ebooks/30787', 'fr', 1352), +(41184, 'Hvad Skovsøen gemte', 'Rosenkrantz, Palle, baron', '2013-07-21', 33, 'https://www.gutenberg.org/ebooks/43275', 'da', 6055), +(41185, 'Original Short Stories — Volume 04', 'Maupassant, Guy de', '2004-10-03', 96, 'https://www.gutenberg.org/ebooks/3080', 'en', 1112), +(41186, 'De ondergang der Eerste Wareld', 'Bilderdijk, Willem', '2005-07-01', 24, 'https://www.gutenberg.org/ebooks/8468', 'nl', 2651), +(41187, 'A Daughter of the Forest', 'Raymond, Evelyn', '2010-03-15', 27, 'https://www.gutenberg.org/ebooks/31655', 'en', 141), +(41188, 'The Lone Inn: A Mystery', 'Hume, Fergus', '2017-08-09', 26, 'https://www.gutenberg.org/ebooks/55310', 'en', 128), +(41189, 'Democracy in America — Volume 1', 'Tocqueville, Alexis de', '2006-01-21', 1271, 'https://www.gutenberg.org/ebooks/815', 'en', 4686), +(41190, 'Paul Verlaine', 'Zweig, Stefan', '2010-11-15', 55, 'https://www.gutenberg.org/ebooks/34327', 'en', 14888), +(41191, 'Peeps at Many Lands: England', 'Finnemore, John', '2015-12-10', 11, 'https://www.gutenberg.org/ebooks/50662', 'en', 776), +(41192, 'Harper\'s Young People, April 13, 1880\nAn Illustrated Weekly', 'Various', '2009-05-12', 5, 'https://www.gutenberg.org/ebooks/28778', 'en', 479), +(41193, 'The True Life of Betty Ireland\nWith Her Birth, Education, and Adventures. Together with Some Account of Her Elder Sister Blanch of Britain. Containing Sundry Very Curious Particulars', 'Anonymous', '2007-11-09', 29, 'https://www.gutenberg.org/ebooks/23390', 'en', 781), +(41194, 'The Youth\'s Companion, Volume LII, Number 11, Thursday, March 13, 1879', 'Various', '2007-08-05', 12, 'https://www.gutenberg.org/ebooks/22242', 'en', 479), +(41195, 'Children of the Wild', 'Roberts, Charles G. D., Sir', '2005-06-16', 27, 'https://www.gutenberg.org/ebooks/16077', 'en', 1423), +(41196, 'The Nurserymatograph', 'Allan, G. A. T. (George A. T.)', '2014-08-28', 25, 'https://www.gutenberg.org/ebooks/46707', 'en', 14889), +(41197, 'Popolmalamiko: Dramo en kvin aktoj', 'Ibsen, Henrik', '2006-11-14', 9, 'https://www.gutenberg.org/ebooks/19803', 'eo', 3671), +(41198, '幽夢影', 'Zhang, Chao', '2005-02-01', 22, 'https://www.gutenberg.org/ebooks/7420', 'zh', 3769), +(41199, 'Photographs of Nebulæ and Clusters, Made with the Crossley Reflector', 'Keeler, James Edward', '2011-06-19', 20, 'https://www.gutenberg.org/ebooks/36470', 'en', 14890), +(41200, 'The Boy Aviators in Record Flight; Or, The Rival Aeroplane', 'Goldfrap, John Henry', '2014-03-21', 15, 'https://www.gutenberg.org/ebooks/45182', 'en', 323), +(41201, 'Wanda, Vol. 1 (of 3)', 'Ouida', '2016-05-23', 12, 'https://www.gutenberg.org/ebooks/52135', 'en', 137), +(41202, 'The Eagle of the Empire: A Story of Waterloo', 'Brady, Cyrus Townsend', '2007-02-04', 33, 'https://www.gutenberg.org/ebooks/20515', 'en', 2564), +(41203, 'Opuscules', 'Ferland, Jean-B.-A. (Jean-Baptiste-Antoine)', '2005-01-17', 10, 'https://www.gutenberg.org/ebooks/14720', 'fr', 14891), +(41204, 'The Works of John Dryden, now first collected in Eighteen Volumes, Volume 11', 'Dryden, John', '2013-10-27', 15, 'https://www.gutenberg.org/ebooks/44050', 'en', 1201), +(41205, 'A Short Method Of Prayer', 'Guyon, Jeanne Marie Bouvier de la Motte', '2008-04-05', 90, 'https://www.gutenberg.org/ebooks/24989', 'en', 4752), +(41206, 'A Modern Chronicle — Volume 04', 'Churchill, Winston', '2004-10-19', 25, 'https://www.gutenberg.org/ebooks/5377', 'en', 828), +(41207, 'Vieras veri: Rakkausnovelleja', 'Kallas, Aino Krohn', '2018-02-18', 7, 'https://www.gutenberg.org/ebooks/56595', 'fi', 175), +(41208, 'Martin Hewitt, Investigator', 'Morrison, Arthur', '2004-02-01', 175, 'https://www.gutenberg.org/ebooks/11252', 'en', 834), +(41209, 'The Planet Strappers', 'Gallun, Raymond Z.', '2008-04-13', 67, 'https://www.gutenberg.org/ebooks/25067', 'en', 12933), +(41210, 'The Pansy Magazine, November 1887', 'Various', '2016-08-28', 14, 'https://www.gutenberg.org/ebooks/52909', 'en', 200), +(41211, 'Notes and Queries, Vol. IV, Number 112, December 20, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-04-13', 15, 'https://www.gutenberg.org/ebooks/39438', 'en', 105), +(41212, 'Die Weltensegler. Drei Jahre auf dem Mars.', 'Daiber, Albert', '2012-12-01', 17, 'https://www.gutenberg.org/ebooks/41522', 'de', 623), +(41213, 'Bloodletting Instruments in the National Museum of History and Technology', 'Appel, Toby A.', '2010-07-07', 31, 'https://www.gutenberg.org/ebooks/33102', 'en', 14892), +(41214, 'Bible Stories and Religious Classics', 'Wells, Philip P. (Philip Patterson)', '2003-12-01', 52, 'https://www.gutenberg.org/ebooks/10380', 'en', 13214), +(41215, 'The Romance of a Shop', 'Levy, Amy', '2018-07-05', 122, 'https://www.gutenberg.org/ebooks/57447', 'en', 1079), +(41216, 'En Kabylie: Voyage d\'une Parisienne au Djurjura', 'Vilbort, J. (Joseph)', '2005-03-21', 14, 'https://www.gutenberg.org/ebooks/15434', 'fr', 14893), +(41217, 'The Vicar of Wakefield', 'Goldsmith, Oliver', '2007-05-31', 4, 'https://www.gutenberg.org/ebooks/21601', 'en', 11373), +(41218, 'Peter Plymley\'s Letters, and Selected Essays', 'Smith, Sydney', '2003-05-01', 25, 'https://www.gutenberg.org/ebooks/4063', 'en', 14894), +(41219, 'Artificial and Natural Flight', 'Maxim, Hiram S. (Hiram Stevens)', '2014-04-07', 13, 'https://www.gutenberg.org/ebooks/45344', 'en', 14895), +(41220, 'Twenty Years in Europe\r\nA Consul-General\'s Memories of Noted People, with Letters From General W. T. Sherman', 'Byers, S. H. M. (Samuel Hawkins Marshall)', '2013-11-27', 24, 'https://www.gutenberg.org/ebooks/44296', 'en', 1408), +(41221, 'Deformities of Samuel Johnson, Selected from His Works', 'Callender, James Thomson', '2011-10-16', 8, 'https://www.gutenberg.org/ebooks/37764', 'en', 14896), +(41222, 'Lemmentarina', 'Turgenev, Ivan Sergeevich', '2016-10-06', 13, 'https://www.gutenberg.org/ebooks/53221', 'fi', 85), +(41223, 'The Adventures of the U-202: An Actual Narrative', 'Spiegel, E. (Edgar), Freiherr von', '2010-05-02', 20, 'https://www.gutenberg.org/ebooks/32216', 'en', 5356), +(41224, 'Punch, or the London Charivari, Volume 156, March 12, 1919', 'Various', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11094', 'en', 134), +(41225, 'Satanella: A Story of Punchestown', 'Whyte-Melville, G. J. (George John)', '2018-03-16', 12, 'https://www.gutenberg.org/ebooks/56753', 'en', 4835), +(41226, 'Mornings in the College Chapel\nShort Addresses to Young Men on Personal Religion', 'Peabody, Francis Greenwood', '2008-01-20', 11, 'https://www.gutenberg.org/ebooks/24373', 'en', 14897), +(41227, 'Cotton Manufacturing', 'Brooks, Christopher Parkinson', '2018-08-13', 11, 'https://www.gutenberg.org/ebooks/57681', 'en', 14898), +(41228, 'Reminiscences of Pioneer Days in St. Paul\r\nA Collection of Articles Written for and Published in the Daily Pioneer Press', 'Moore, Frank', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10146', 'en', 14899), +(41229, 'Punch, or the London Charivari, Vol. 105 December 30, 1893', 'Various', '2012-09-01', 8, 'https://www.gutenberg.org/ebooks/40636', 'en', 134), +(41230, 'King John', 'Shakespeare, William', '1998-10-01', 68, 'https://www.gutenberg.org/ebooks/1511', 'en', 6756), +(41231, 'A Treatise on Anatomy, Physiology, and Hygiene (Revised Edition)', 'Cutter, Calvin', '2009-11-24', 24, 'https://www.gutenberg.org/ebooks/30541', 'en', 3536), +(41232, 'The Grand Canyon of Arizona: How to See It', 'James, George Wharton', '2000-11-01', 15, 'https://www.gutenberg.org/ebooks/2394', 'en', 1780), +(41233, 'Food Adulteration and Its Detection\r\nWith photomicrographic plates and a bibliographical appendix', 'Battershall, Jesse P. (Jesse Park)', '2017-01-18', 23, 'https://www.gutenberg.org/ebooks/54004', 'en', 9964), +(41234, 'Great Men and Famous Women. Vol. 4\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2008-08-27', 25, 'https://www.gutenberg.org/ebooks/26424', 'en', 122), +(41235, 'The Regent', 'Bennett, Arnold', '2004-06-01', 24, 'https://www.gutenberg.org/ebooks/12611', 'en', 323), +(41236, 'The \"Switzerland of America\": Lehigh Valley Railroad', 'Lehigh Coal and Navigation Company', '2015-08-03', 12, 'https://www.gutenberg.org/ebooks/49589', 'en', 14900), +(41237, 'The Nursery, December 1881, Vol. XXX\nA Monthly Magazine for Youngest Readers', 'Various', '2013-02-22', 15, 'https://www.gutenberg.org/ebooks/42161', 'en', 4641), +(41238, 'The Daughter of a Republican', 'Babcock, Bernie', '2010-03-03', 9, 'https://www.gutenberg.org/ebooks/31493', 'en', 716), +(41239, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 365, April 11, 1829', 'Various', '2004-07-10', 18, 'https://www.gutenberg.org/ebooks/3246', 'en', 133), +(41240, 'Israël en Égypte\nÉtude sur un oratorio de G.F. Hændel', 'Bouchor, Maurice', '2005-12-21', 16, 'https://www.gutenberg.org/ebooks/17363', 'fr', 14901), +(41241, 'Trovas: Canções de Amor', 'Ferreira, António Florêncio', '2007-10-23', 15, 'https://www.gutenberg.org/ebooks/23156', 'pt', 8), +(41242, 'Drusilla with a Million', 'Cooper, Elizabeth', '2004-10-01', 11, 'https://www.gutenberg.org/ebooks/6734', 'en', 14902), +(41243, 'De aeroplaan van m\'nheer Vliegenthert', NULL, '2017-06-03', 4, 'https://www.gutenberg.org/ebooks/54838', 'nl', 2279), +(41244, 'His Maiesties Declaration, touching his Proceedings in the late Assemblie and Conuention of Parliament', 'James I, King of England', '2014-11-21', 5, 'https://www.gutenberg.org/ebooks/47413', 'en', 9188), +(41245, 'Wayside Weeds', 'Ellis, William Hodgson', '2011-01-21', 11, 'https://www.gutenberg.org/ebooks/35033', 'en', 28), +(41246, 'Oration on the Life and Character of Henry Winter Davis', 'Creswell, John A. J. (John Angel James)', '2007-07-16', 1, 'https://www.gutenberg.org/ebooks/22084', 'en', 5168), +(41247, 'Shatter the Wall', 'Van Scyoc, Sydney J.', '2016-03-27', 27, 'https://www.gutenberg.org/ebooks/51576', 'en', 797), +(41248, 'The Intruder', 'D\'Annunzio, Gabriele', '2017-02-25', 29, 'https://www.gutenberg.org/ebooks/54236', 'en', 1058), +(41249, 'How to Teach Phonics', 'Williams, Lida Myrtle', '2006-04-04', 70, 'https://www.gutenberg.org/ebooks/18119', 'en', 14903), +(41250, 'Negro Poets and Their Poems', 'Kerlin, Robert Thomas', '2019-07-28', 576, 'https://www.gutenberg.org/ebooks/60003', 'en', 14904), +(41251, 'Dead Man\'s Planet', 'Samachson, Joseph', '2009-12-27', 22, 'https://www.gutenberg.org/ebooks/30773', 'en', 26), +(41252, 'Schetsen uit Zeeland\nDe Aarde en haar volken, Jaargang 1873', 'Anonymous', '2015-04-08', 8, 'https://www.gutenberg.org/ebooks/48669', 'nl', 14905), +(41253, 'Cripps, the Carrier: A Woodland Tale', 'Blackmore, R. D. (Richard Doddridge)', '2013-07-22', 61, 'https://www.gutenberg.org/ebooks/43281', 'en', 14906), +(41254, 'Deaf and Dumb!\nThird Edition', 'Sandham, Elizabeth', '2013-03-17', 2, 'https://www.gutenberg.org/ebooks/42353', 'en', 14907), +(41255, 'The Burgess Bird Book for Children', 'Burgess, Thornton W. (Thornton Waldo)', '2002-02-01', 435, 'https://www.gutenberg.org/ebooks/3074', 'en', 6059), +(41256, 'Minnie\'s Pet Dog', 'Leslie, Madeline', '2008-08-14', 15, 'https://www.gutenberg.org/ebooks/26616', 'en', 14908), +(41257, 'A Short History of the United States for School Use', 'Channing, Edward', '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/12423', 'en', 207), +(41258, 'Old Mission Stories of California', 'Carter, Charles Franklin', '2004-09-01', 20, 'https://www.gutenberg.org/ebooks/6506', 'en', 9041), +(41259, 'Les mystères de Paris, Tome V', 'Sue, Eugène', '2006-07-27', 18, 'https://www.gutenberg.org/ebooks/18925', 'fr', 560), +(41260, 'Fenelon\'s Treatise on the Education of Daughters\nTranslated from the French, and Adapted to English Readers', 'Fénelon, François de Salignac de La Mothe-', '2014-12-10', 36, 'https://www.gutenberg.org/ebooks/47621', 'en', 3605), +(41261, 'Bob Chester\'s Grit; Or, From Ranch to Riches', 'Webster, Frank V.', '2005-11-25', 17, 'https://www.gutenberg.org/ebooks/17151', 'en', 6766), +(41262, 'Railway Construction', 'Mills, William Hemingway', '2015-12-15', 26, 'https://www.gutenberg.org/ebooks/50696', 'en', 13492), +(41263, 'A Reversion To Type', 'Bacon, Josephine Daskam', '2007-11-06', 21, 'https://www.gutenberg.org/ebooks/23364', 'en', 4141), +(41264, 'The Brownie Scouts at Snow Valley', 'Wirt, Mildred A. (Mildred Augustine)', '2016-04-12', 14, 'https://www.gutenberg.org/ebooks/51744', 'en', 167), +(41265, 'The American Missionary — Volume 43, No. 01, January, 1889', 'Various', '2005-06-17', 6, 'https://www.gutenberg.org/ebooks/16083', 'en', 562), +(41266, 'Memoirs of Madame la Marquise de Montespan — Volume 2', 'Montespan, Madame de', '2004-12-02', 9, 'https://www.gutenberg.org/ebooks/3848', 'en', 6965), +(41267, '\"Clear the Track!\" A Story of To-day', 'Werner, E.', '2011-02-07', 21, 'https://www.gutenberg.org/ebooks/35201', 'en', 803), +(41268, 'The Life Everlasting: A Reality of Romance', 'Corelli, Marie', '2003-07-01', 42, 'https://www.gutenberg.org/ebooks/4251', 'en', 114), +(41269, 'A History of Germany from the Earliest Times to the Present Day', 'Taylor, Bayard', '2011-06-21', 70, 'https://www.gutenberg.org/ebooks/36484', 'en', 1921), +(41270, 'L\'Assassinat de la Duchesse de Praslin', 'Savine, Albert', '2014-03-19', 10, 'https://www.gutenberg.org/ebooks/45176', 'fr', 14909), +(41271, 'The Life of the Truly Eminent and Learned Hugo Grotius\nContaining a Copious and Circumstantial History of the Several Important and Honourable Negotiations in Which He Was Employed; together with a Critical Account of His Works', 'Burigny, M. de (Jean Lévesque)', '2005-04-12', 21, 'https://www.gutenberg.org/ebooks/15606', 'en', 6273), +(41272, 'Theory and Practice, Applied to the Cultivation of the Cucumber in the Winter Season\nTo Which Is Added a Chapter on Melons', 'Moore, Thomas', '2010-06-14', 8, 'https://www.gutenberg.org/ebooks/32818', 'en', 14910), +(41273, 'All But Lost: A Novel. Vol. 3 of 3', 'Henty, G. A. (George Alfred)', '2019-05-17', 43, 'https://www.gutenberg.org/ebooks/59529', 'en', 61), +(41274, 'O congresso de Roma\r\n(Conferência realisada pelo delegado portuguez do congresso do livre-pensamento)', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2007-05-14', 31, 'https://www.gutenberg.org/ebooks/21433', 'pt', 14911), +(41275, 'Anweisung zum Weinbau an Gebäuden, Mauern, Lauben und Bäumen\nHerausgegeben zu Ermunterung der Kinder zu edler Thätigkeit', 'Bornemann, Johann Gottfried', '2016-09-08', 14, 'https://www.gutenberg.org/ebooks/53013', 'de', 14912), +(41276, 'The Celebrity, Volume 01', 'Churchill, Winston', '2004-10-19', 10, 'https://www.gutenberg.org/ebooks/5383', 'en', 4598), +(41277, 'Poems', 'Shanks, Edward', '2011-10-12', 16, 'https://www.gutenberg.org/ebooks/37556', 'en', 1594), +(41278, 'In het Hol van den Leeuw: Reisschetsen uit Sovjet-Rusland', 'Fabius, J. (Jan)', '2018-02-13', 8, 'https://www.gutenberg.org/ebooks/56561', 'nl', 4303), +(41279, 'Harper\'s New Monthly Magazine, Vol. 3, July, 1851', 'Various', '2008-04-18', 21, 'https://www.gutenberg.org/ebooks/25093', 'en', 883), +(41280, 'The Motor Girls on the Coast; or, The Waif From the Sea', 'Penrose, Margaret', '2010-04-17', 11, 'https://www.gutenberg.org/ebooks/32024', 'en', 12970), +(41281, 'The Elements of Geology', 'Norton, William Harmon', '2012-08-04', 64, 'https://www.gutenberg.org/ebooks/40404', 'en', 2535), +(41282, 'Cow-Country', 'Bower, B. M.', '1999-04-01', 43, 'https://www.gutenberg.org/ebooks/1723', 'en', 315), +(41283, 'Blottentots, and How to Make Them', 'Carmel, John Prosper', '2014-02-14', 17, 'https://www.gutenberg.org/ebooks/44898', 'en', 8), +(41284, '警世通言', 'Feng, Menglong', '2008-01-03', 21, 'https://www.gutenberg.org/ebooks/24141', 'zh', 5698), +(41285, 'The Ramblin\' Kid', 'Bowman, Earl Wayland', '2003-12-01', 14, 'https://www.gutenberg.org/ebooks/10374', 'en', 315), +(41286, 'The Cape Peninsula: Pen and Colour Sketches', 'Hansard, Réné', '2013-05-18', 9, 'https://www.gutenberg.org/ebooks/42737', 'en', 14913), +(41287, 'The American Spirit in Literature: A Chronicle of Great Interpreters', 'Perry, Bliss', '2002-09-01', 32, 'https://www.gutenberg.org/ebooks/3410', 'en', 3043), +(41288, 'The Spy', 'Cooper, James Fenimore', '2008-08-01', 217, 'https://www.gutenberg.org/ebooks/26272', 'en', 98), +(41289, 'Legends of the Madonna as Represented in the Fine Arts', 'Jameson, Mrs. (Anna)', '2004-04-01', 52, 'https://www.gutenberg.org/ebooks/12047', 'en', 14914), +(41290, 'The Strife of the Sea', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-10-20', 63, 'https://www.gutenberg.org/ebooks/55780', 'en', 6077), +(41291, 'History of Gujarát\nGazetteer of the Bombay Presidency, Volume I, Part I.', 'Campbell, James M.', '2017-05-02', 25, 'https://www.gutenberg.org/ebooks/54652', 'en', 14915), +(41292, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 11, No. 27, June, 1873', 'Various', '2004-08-16', 16, 'https://www.gutenberg.org/ebooks/13195', 'en', 162), +(41293, 'La fille Elisa', 'Goncourt, Edmond de', '2009-10-23', 16, 'https://www.gutenberg.org/ebooks/30317', 'fr', 12528), +(41294, 'Break a Leg', 'Harmon, Jim', '2016-02-28', 30, 'https://www.gutenberg.org/ebooks/51320', 'en', 4350), +(41295, 'Legends: Autobiographical Sketches', 'Strindberg, August', '2014-07-24', 15, 'https://www.gutenberg.org/ebooks/46397', 'en', 14916), +(41296, 'Punch, or the London Charivari, Volume 105, July 8th 1893', 'Various', '2011-03-24', 17, 'https://www.gutenberg.org/ebooks/35665', 'en', 134), +(41297, 'Herbert Carter\'s Legacy; Or, the Inventor\'s Son', 'Alger, Horatio, Jr.', '2004-07-01', 39, 'https://www.gutenberg.org/ebooks/6162', 'en', 14917), +(41298, 'Battles of English History', 'George, H. B. (Hereford Brooke)', '2014-10-30', 12, 'https://www.gutenberg.org/ebooks/47245', 'en', 14918), +(41299, 'The Jester of St. Timothy\'s', 'Pier, Arthur Stanwood', '2006-01-16', 18, 'https://www.gutenberg.org/ebooks/17535', 'en', 14919), +(41300, 'Spalding\'s Baseball Guide and Official League Book for 1895', NULL, '2006-02-01', 13, 'https://www.gutenberg.org/ebooks/9916', 'en', 11801), +(41301, 'The Decameron of Giovanni Boccaccio', 'Boccaccio, Giovanni', '2007-12-03', 801, 'https://www.gutenberg.org/ebooks/23700', 'en', 2820), +(41302, 'Eventide\nA Series of Tales and Poems', 'Afton, Effie', '2006-12-26', 32, 'https://www.gutenberg.org/ebooks/20185', 'en', 61), +(41303, 'Bib-li-op-e-gis-tic (Pertaining to the art of binding books.—Dibdin)\nto which is appended a glossary of some terms used in the craft', 'Trow’s Printing and Bookbinding Company', '2012-02-21', 20, 'https://www.gutenberg.org/ebooks/38946', 'en', 3349), +(41304, 'The Relation of Art to Nature', 'Beatty, John W. (John Wesley)', '2016-11-08', 38, 'https://www.gutenberg.org/ebooks/53477', 'en', 787), +(41305, 'Songs of Womanhood', 'Alma-Tadema, Laurence', '2011-08-19', 9, 'https://www.gutenberg.org/ebooks/37132', 'en', 8), +(41306, 'Tom Swift and His Great Searchlight; or, on the border for Uncle Sam', 'Appleton, Victor', '2003-11-01', 44, 'https://www.gutenberg.org/ebooks/4635', 'en', 14920), +(41307, 'Making Tin Can Toys', 'Thatcher, Edward', '2018-04-07', 13, 'https://www.gutenberg.org/ebooks/56939', 'en', 132), +(41308, 'Dangerous Connections, v. 1, 2, 3, 4\r\nA Series of Letters, selected from the Correspondence of a Private Circle; and Published for the Instruction of Society.', 'Laclos, Choderlos de', '2014-04-27', 299, 'https://www.gutenberg.org/ebooks/45512', 'en', 258), +(41309, 'Christianity and Islam in Spain, A.D. 756-1031', 'Haines, Charles Reginald', '2005-03-05', 55, 'https://www.gutenberg.org/ebooks/15262', 'en', 14921), +(41310, 'Roman Sepulchral Inscriptions\nTheir Relation to Archæology, Language, and Religion', 'Kenrick, John', '2012-06-01', 11, 'https://www.gutenberg.org/ebooks/39894', 'en', 14922), +(41311, 'The Log of the Flying Fish: A Story of Aerial and Submarine Peril and Adventure', 'Collingwood, Harry', '2007-04-13', 15, 'https://www.gutenberg.org/ebooks/21057', 'en', 323), +(41312, 'The Christian Faith Under Modern Searchlights', 'Johnson, William Hallock', '2012-06-22', 16, 'https://www.gutenberg.org/ebooks/40060', 'en', 14923), +(41313, 'O Cerco de Corintho, poema de Lord Byron, traduzido em verso portuguez', 'Byron, George Gordon Byron, Baron', '2010-08-31', 6, 'https://www.gutenberg.org/ebooks/33592', 'pt', 8), +(41314, 'A New Philosophy: Henri Bergson', 'Le Roy, Edouard', '1998-06-01', 40, 'https://www.gutenberg.org/ebooks/1347', 'en', 4934), +(41315, 'Karlo\r\nFacila Legolibro por la Lernado de Esperanto', 'Privat, Edmond', '2008-02-05', 36, 'https://www.gutenberg.org/ebooks/24525', 'eo', 2493), +(41316, 'Problems of Poverty: An Inquiry into the Industrial Condition of the Poor', 'Hobson, J. A. (John Atkinson)', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10710', 'en', 14924), +(41317, 'The Dickens Country', 'Kitton, Frederic George', '2017-12-03', 13, 'https://www.gutenberg.org/ebooks/56105', 'en', 5826), +(41318, 'Historic Ornament, Vol. 2 (of 2)\nTreatise on decorative art and architectural ornament', 'Ward, James', '2019-07-23', 1029, 'https://www.gutenberg.org/ebooks/59971', 'en', 14419), +(41319, 'Dave Dawson at Dunkirk', 'Bowen, Robert Sidney', '2010-05-19', 49, 'https://www.gutenberg.org/ebooks/32440', 'en', 14925), +(41320, 'Henry James', 'West, Rebecca', '2011-09-03', 15, 'https://www.gutenberg.org/ebooks/37300', 'en', 131), +(41321, 'The World\'s Best Orations, Vol. 1 (of 10)', NULL, '2004-11-27', 15, 'https://www.gutenberg.org/ebooks/14182', 'en', 659), +(41322, 'Heart and Cross', 'Oliphant, Mrs. (Margaret)', '2016-12-01', 17, 'https://www.gutenberg.org/ebooks/53645', 'en', 45), +(41323, 'On the Ruin of Britain', 'Gildas', '1999-11-01', 237, 'https://www.gutenberg.org/ebooks/1949', 'en', 12016), +(41324, 'Chronique de 1831 à 1862, Tome 3 (de 4)', 'Dino, Dorothée, duchesse de', '2016-08-13', 6, 'https://www.gutenberg.org/ebooks/52797', 'fr', 7263), +(41325, 'Scientific American Supplement, No. 810, July 11, 1891', 'Various', '2005-02-14', 12, 'https://www.gutenberg.org/ebooks/15050', 'en', 210), +(41326, 'Pohjavirtoja: Romaani', 'Salmela, Marja', '2007-04-30', 6, 'https://www.gutenberg.org/ebooks/21265', 'fi', 175), +(41327, 'The Ordeal of Richard Feverel — Volume 2', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4407', 'en', 378), +(41328, 'Jack, the Young Ranchman: A Boy\'s Adventures in the Rockies', 'Grinnell, George Bird', '2014-05-22', 16, 'https://www.gutenberg.org/ebooks/45720', 'en', 388), +(41329, 'Danger! A True History of a Great City\'s Wiles and Temptations\r\nThe Veil Lifted, and Light Thrown on Crime and its Causes, and Criminals and their Haunts. Facts and Disclosures.', 'Howe, William F.', '2008-02-29', 30, 'https://www.gutenberg.org/ebooks/24717', 'en', 14926), +(41330, 'Beacon Lights of History, Volume 04: Imperial Antiquity', 'Lord, John', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10522', 'en', 7868), +(41331, 'The Baptist Magazine, Vol. 27, 1835', 'Various', '2012-07-17', 6, 'https://www.gutenberg.org/ebooks/40252', 'en', 1768), +(41332, 'The Energy System of Matter: A Deduction from Terrestrial Energy Phenomena', 'Weir, James, active 1883-1912', '2011-12-20', 15, 'https://www.gutenberg.org/ebooks/38348', 'en', 2018), +(41333, 'Hiero', 'Xenophon', '1998-01-01', 67, 'https://www.gutenberg.org/ebooks/1175', 'en', 14927), +(41334, 'Direct Wire', 'Garson, Clee', '2010-06-03', 28, 'https://www.gutenberg.org/ebooks/32672', 'en', 179), +(41335, 'The History of Burke and Hare, and of the Resurrectionist Times\r\nA Fragment from the Criminal Annals of Scotland', 'Mac Gregor, George', '2012-11-16', 19, 'https://www.gutenberg.org/ebooks/41380', 'en', 14928), +(41336, 'Catcher Craig', 'Mathewson, Christy', '2018-01-08', 10, 'https://www.gutenberg.org/ebooks/56337', 'en', 6620), +(41337, 'Log-book of Timothy Boardman\r\nKept on Board the Privateer Oliver Cromwell, During a Cruise from New London, Ct., to Charleston, S. C., and Return, in 1778; Also, a Biographical Sketch of the Author.', 'Boardman, Timothy', '2008-07-12', 34, 'https://www.gutenberg.org/ebooks/26040', 'en', 1371), +(41338, 'Suor Giovanna della Croce: romanzo', 'Serao, Matilde', '2014-09-29', 13, 'https://www.gutenberg.org/ebooks/46999', 'it', 14929), +(41339, 'Viajes por Filipinas: De Manila á Albay', 'Alvarez Guerra, Juan', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/12275', 'es', 4048), +(41340, 'Πελοποννησιακός Πόλεμος, Τόμος δεύτερος', 'Thucydides', '2009-08-28', 23, 'https://www.gutenberg.org/ebooks/29834', 'el', 5990), +(41341, 'Fausto Bragia, e altre novelle', 'Capuana, Luigi', '2013-04-11', 9, 'https://www.gutenberg.org/ebooks/42505', 'it', 474), +(41342, 'The Duke\'s Children', 'Trollope, Anthony', '2003-01-01', 128, 'https://www.gutenberg.org/ebooks/3622', 'en', 378), +(41343, 'The Flute of the Gods', 'Ryan, Marah Ellis', '2009-09-28', 20, 'https://www.gutenberg.org/ebooks/30125', 'en', 1357), +(41344, 'A Doctor of the Old School — Volume 4', 'Maclaren, Ian', '2004-08-09', 10, 'https://www.gutenberg.org/ebooks/9318', 'en', 1563), +(41345, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 4', 'Various', '2017-03-31', 17, 'https://www.gutenberg.org/ebooks/54460', 'en', 653), +(41346, 'Political Women, Vol. 1', 'Menzies, Sutherland, active 1840-1883', '2008-11-07', 37, 'https://www.gutenberg.org/ebooks/27192', 'en', 4903), +(41347, 'The Captivi and the Mostellaria', 'Plautus, Titus Maccius', '2005-01-01', 65, 'https://www.gutenberg.org/ebooks/7282', 'en', 2276), +(41348, 'More Tales by Polish Authors', NULL, '2011-03-02', 34, 'https://www.gutenberg.org/ebooks/35457', 'en', 1676), +(41349, 'The Elm Tree Tales', 'Griswold, F. Burge (Frances Burge)', '2009-05-30', 14, 'https://www.gutenberg.org/ebooks/29008', 'en', 2811), +(41350, 'The Other Now', 'Leinster, Murray', '2016-02-02', 41, 'https://www.gutenberg.org/ebooks/51112', 'en', 179), +(41351, 'Aline et Valcour, tome 2\r\nou le roman philosophique', 'Sade, marquis de', '2006-02-07', 70, 'https://www.gutenberg.org/ebooks/17707', 'fr', 1414), +(41352, 'A mulher; Os Portuguezes em Tanger', 'Matos, J. J. Rodrigues de', '2010-01-10', 14, 'https://www.gutenberg.org/ebooks/30919', 'pt', 1485), +(41353, 'Harper\'s Young People, August 16, 1881\nAn Illustrated Weekly', 'Various', '2015-04-26', 2, 'https://www.gutenberg.org/ebooks/48803', 'en', 479), +(41354, 'Betrachtung', 'Kafka, Franz', '2007-11-18', 85, 'https://www.gutenberg.org/ebooks/23532', 'de', 179), +(41355, 'Via Crucis: A Romance of the Second Crusade', 'Crawford, F. Marion (Francis Marion)', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/6350', 'en', 14930), +(41356, 'The History of Painting in Italy, Vol. 2 (of 6)\r\nFrom the Period of the Revival of the Fine Arts to the End of the Eighteenth Century', 'Lanzi, Luigi', '2010-12-08', 22, 'https://www.gutenberg.org/ebooks/34585', 'en', 7807), +(41357, 'Der Amateursozialist: Roman', 'Shaw, Bernard', '2014-10-08', 18, 'https://www.gutenberg.org/ebooks/47077', 'de', 7131), +(41358, '100 Desert Wildflowers in Natural Color', 'Dodge, Natt N. (Natt Noyes)', '2017-04-29', 96, 'https://www.gutenberg.org/ebooks/54631', 'en', 5982), +(41359, 'Futurist Stories', 'Reed, Margery Verner', '2009-10-31', 24, 'https://www.gutenberg.org/ebooks/30374', 'en', 179), +(41360, 'The Gray Dawn', 'White, Stewart Edward', '2005-10-01', 21, 'https://www.gutenberg.org/ebooks/9149', 'en', 211), +(41361, 'De la démonialité des animaux incubes et succubes', 'Sinistrari, Ludovico Maria', '2013-09-10', 35, 'https://www.gutenberg.org/ebooks/43686', 'fr', 6263), +(41362, 'Good References', 'Rath, E. J.', '2013-05-20', 13, 'https://www.gutenberg.org/ebooks/42754', 'en', 14931), +(41363, 'The Poems of Emma Lazarus, Volume 2\r\nJewish poems: Translations', 'Lazarus, Emma', '2002-10-01', 20, 'https://www.gutenberg.org/ebooks/3473', 'en', 178), +(41364, 'Histoire des Plus Célèbres Amateurs Étrangers\r\nEspagnols, Anglais, Flamands, Hollandais et Allemands et de leurs relations avec les artistes', 'Dumesnil, Antoine Jules', '2008-08-07', 16, 'https://www.gutenberg.org/ebooks/26211', 'fr', 14932), +(41365, 'Bred in the Bone; Or, Like Father, Like Son: A Novel', 'Payn, James', '2004-07-15', 14, 'https://www.gutenberg.org/ebooks/12024', 'en', 401), +(41366, 'The Nature of Goodness', 'Palmer, George Herbert', '2004-07-01', 15, 'https://www.gutenberg.org/ebooks/6101', 'en', 2484), +(41367, 'Left Half Harmon', 'Barbour, Ralph Henry', '2014-10-29', 19, 'https://www.gutenberg.org/ebooks/47226', 'en', 2154), +(41368, 'Sextus Empiricus and Greek Scepticism', 'Patrick, Mary Mills', '2006-01-20', 97, 'https://www.gutenberg.org/ebooks/17556', 'en', 4413), +(41369, 'Retrato de la Lozana Andaluza\nEn lengua española muy clarísima, compuesto en Roma.', 'Delicado, Francisco, active 16th century', '2015-10-23', 44, 'https://www.gutenberg.org/ebooks/50291', 'es', 89), +(41370, 'Paris War Days\nDiary of an American', 'Barnard, Charles Inman', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/9975', 'en', 449), +(41371, 'Fred Fenton on the Track; Or, The Athletes of Riverport School', 'Chapman, Allen', '2007-12-07', 16, 'https://www.gutenberg.org/ebooks/23763', 'en', 1189), +(41372, 'The Child and the Curriculum', 'Dewey, John', '2009-06-28', 113, 'https://www.gutenberg.org/ebooks/29259', 'en', 973), +(41373, 'Motor Matt\'s Reverse; or, Caught in a Losing Cause', 'Matthews, Stanley R.', '2016-03-02', 7, 'https://www.gutenberg.org/ebooks/51343', 'en', 336), +(41374, 'Juanita La Larga', 'Valera, Juan', '2005-08-08', 25, 'https://www.gutenberg.org/ebooks/16484', 'es', 14933), +(41375, 'Heathen Slaves and Christian Rulers', 'Andrew, Elizabeth Wheeler', '2004-07-05', 28, 'https://www.gutenberg.org/ebooks/12818', 'en', 14934), +(41376, 'Encyclopaedia Britannica, 11th Edition, \"Finland\" to \"Fleury, Andre\"\r\nVolume 10, Slice 4', 'Various', '2011-03-18', 31, 'https://www.gutenberg.org/ebooks/35606', 'en', 1081), +(41377, 'Checkmates for Four Pieces', 'Fishburne, William Brett', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/4656', 'en', 3733), +(41378, 'The Lady of the Mount', 'Isham, Frederic Stewart', '2011-05-22', 7, 'https://www.gutenberg.org/ebooks/36083', 'en', 14136), +(41379, 'The convolvulus: a comedy in three acts', 'Norton, Allen', '2014-05-03', 10, 'https://www.gutenberg.org/ebooks/45571', 'en', 14935), +(41380, 'Szachy i Warcaby: Droga do mistrzostwa', 'Lasker, Edward', '2005-02-28', 38, 'https://www.gutenberg.org/ebooks/15201', 'pl', 3733), +(41381, 'The Corner House Girls at School', 'Hill, Grace Brooks', '2007-04-11', 44, 'https://www.gutenberg.org/ebooks/21034', 'en', 2154), +(41382, 'Dave Porter and His Classmates; Or, For the Honor of Oak Hall', 'Stratemeyer, Edward', '2016-10-30', 21, 'https://www.gutenberg.org/ebooks/53414', 'en', 845), +(41383, 'Les énigmes de l\'Univers', 'Haeckel, Ernst', '2012-02-18', 28, 'https://www.gutenberg.org/ebooks/38925', 'fr', 4549), +(41384, 'A Tramp Abroad — Volume 03', 'Twain, Mark', '2004-06-18', 20, 'https://www.gutenberg.org/ebooks/5784', 'en', 637), +(41385, 'Habits, Haunts and Anecdotes of the Moose and Illustrations from Life', 'Jones, Charles Albert', '2011-08-21', 26, 'https://www.gutenberg.org/ebooks/37151', 'en', 5390), +(41386, 'Harper\'s Round Table, May 26, 1896', 'Various', '2018-09-11', 9, 'https://www.gutenberg.org/ebooks/57888', 'en', 668), +(41387, 'Word Portraits of Famous Writers', NULL, '2017-12-11', 201, 'https://www.gutenberg.org/ebooks/56166', 'en', 8765), +(41388, 'The Young Alaskans', 'Hough, Emerson', '2008-05-16', 15, 'https://www.gutenberg.org/ebooks/25494', 'en', 1586), +(41389, 'Encyclopaedia Britannica, 11th Edition, \"Coucy-le-Château\" to \"Crocodile\"\r\nVolume 7, Slice 6', 'Various', '2010-05-19', 30, 'https://www.gutenberg.org/ebooks/32423', 'en', 1081), +(41390, 'The Rock Ahead: A Novel. (Vol. 2 of 2)', 'Yates, Edmund', '2019-07-15', 63, 'https://www.gutenberg.org/ebooks/59912', 'en', 61), +(41391, 'The House\nAn Episode in the Lives of Reuben Baker, Astronomer, and of His Wife, Alice', 'Field, Eugene', '2007-06-11', 15, 'https://www.gutenberg.org/ebooks/21808', 'en', 14936), +(41392, 'Australian Heroes and Adventurers', 'Pyke, William T. (William Thomas)', '2012-06-15', 9, 'https://www.gutenberg.org/ebooks/40003', 'en', 14937), +(41393, 'Kysymysmerkkejä: Kuinka Muikkulan Matin kirkolla kävi', 'Heman, Gustaf Adolf', '2011-11-24', 17, 'https://www.gutenberg.org/ebooks/38119', 'fi', 61), +(41394, 'Russia in 1919', 'Ransome, Arthur', '1998-05-01', 35, 'https://www.gutenberg.org/ebooks/1324', 'en', 4303), +(41395, 'Léonore, ou l\'amour conjugal\nfait historique en deux actes et en prose mêlée de chantes', 'Bouilly, Jean Nicolas', '2008-02-08', 12, 'https://www.gutenberg.org/ebooks/24546', 'fr', 5508), +(41396, 'Ancient and Modern Physics', 'Willson, Thomas E.', '2004-01-01', 70, 'https://www.gutenberg.org/ebooks/10773', 'en', 14938), +(41397, 'Tell England\nA Study in a Generation', 'Raymond, Ernest', '2005-02-13', 23, 'https://www.gutenberg.org/ebooks/15033', 'en', 579), +(41398, 'The Romany Rye\na sequel to \"Lavengro\"', 'Borrow, George', '2007-04-24', 24, 'https://www.gutenberg.org/ebooks/21206', 'en', 95), +(41399, 'The Tragic Comedians: A Study in a Well-known Story — Complete', 'Meredith, George', '2004-11-04', 16, 'https://www.gutenberg.org/ebooks/4464', 'en', 137), +(41400, 'Joan of Arc', 'Richards, Laura Elizabeth Howe', '2014-05-24', 35, 'https://www.gutenberg.org/ebooks/45743', 'en', 3907), +(41401, 'Dust of the Desert', 'Ritchie, Robert Welles', '2014-01-17', 44, 'https://www.gutenberg.org/ebooks/44691', 'en', 14939), +(41402, 'Making Up with Mr. Dog\nHollow Tree Stories', 'Paine, Albert Bigelow', '2011-09-09', 28, 'https://www.gutenberg.org/ebooks/37363', 'en', 625), +(41403, 'Shakspeare and His Times [Vol. 2 of 2]\r\nIncluding the Biography of the Poet; criticisms on his genius and writings; a new chronology of his plays; a disquisition on the on the object of his sonnets; and a history of the manners, customs, and amusements, superstitions, poetry, and elegant literature of his age', 'Drake, Nathan', '2016-11-28', 19, 'https://www.gutenberg.org/ebooks/53626', 'en', 14940), +(41404, 'The Falling Flag: Evacuation of Richmond, Retreat and Surrender at Appomattox', 'Boykin, Edward M.', '2010-05-30', 7, 'https://www.gutenberg.org/ebooks/32611', 'en', 14941), +(41405, 'The Blotting Book', 'Benson, E. F. (Edward Frederic)', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11493', 'en', 128), +(41406, 'An Appeal to the People in Behalf of Their Rights as Authorized Interpreters of the Bible', 'Beecher, Catharine Esther', '2018-01-10', 20, 'https://www.gutenberg.org/ebooks/56354', 'en', 3792), +(41407, 'Cidades e Paisagens', 'Lima, Jaime de Magalhães', '2008-03-07', 8, 'https://www.gutenberg.org/ebooks/24774', 'pt', 885), +(41408, 'Käy laatuun', 'Almqvist, C. J. L. (Carl Jonas Love)', '2018-06-07', 23, 'https://www.gutenberg.org/ebooks/57286', 'fi', 4184), +(41409, 'Children\'s Classics in Dramatic Form, A Reader for the Fourth Grade', 'Stevenson, Augusta', '2003-12-01', 52, 'https://www.gutenberg.org/ebooks/10541', 'en', 364), +(41410, 'Die Gebete der Demut', 'Jammes, Francis', '2012-07-14', 13, 'https://www.gutenberg.org/ebooks/40231', 'de', 14942), +(41411, 'The Merry Wives of Windsor', 'Shakespeare, William', '1997-11-01', 75, 'https://www.gutenberg.org/ebooks/1116', 'en', 13710), +(41412, 'What She Could', 'Warner, Susan', '2009-10-01', 30, 'https://www.gutenberg.org/ebooks/30146', 'en', 1625), +(41413, 'Flip: A California Romance', 'Harte, Bret', '2006-03-27', 47, 'https://www.gutenberg.org/ebooks/2793', 'en', 50), +(41414, 'Tord of Hafsborough, and Other Ballads', 'Borrow, George', '2009-05-29', 7, 'https://www.gutenberg.org/ebooks/28985', 'en', 4390), +(41415, 'Where the Twain Meet', 'Gaunt, Mary', '2017-03-21', 8, 'https://www.gutenberg.org/ebooks/54403', 'en', 14943), +(41416, 'The Knickerbocker, Vol. 22, No. 3, September 1843', 'Various', '2014-12-31', 19, 'https://www.gutenberg.org/ebooks/47828', 'en', 18), +(41417, 'The League of Nations and Its Problems: Three Lectures', 'Oppenheim, L. (Lassa)', '2008-07-10', 11, 'https://www.gutenberg.org/ebooks/26023', 'en', 14944); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(41418, 'The Pirates Own Book\r\nAuthentic Narratives of the Most Celebrated Sea Robbers', 'Ellms, Charles', '2004-04-01', 167, 'https://www.gutenberg.org/ebooks/12216', 'en', 645), +(41419, 'The Spook Ballads', 'Parkes, William Theodore', '2013-04-20', 17, 'https://www.gutenberg.org/ebooks/42566', 'en', 13219), +(41420, 'Jacquine Vanesse', 'Cherbuliez, Victor', '2009-08-30', 20, 'https://www.gutenberg.org/ebooks/29857', 'fr', 298), +(41421, 'Bear Trap', 'Nourse, Alan Edward', '2010-01-26', 78, 'https://www.gutenberg.org/ebooks/31094', 'en', 26), +(41422, 'Who Cares? A Story of Adolescence', 'Hamilton, Cosmo', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3641', 'en', 48), +(41423, 'King Winter', 'Anonymous', '2006-02-13', 19, 'https://www.gutenberg.org/ebooks/17764', 'en', 3647), +(41424, 'Who Crosses Storm Mountain?\n1911', 'Murfree, Mary Noailles', '2007-11-19', 19, 'https://www.gutenberg.org/ebooks/23551', 'en', 4872), +(41425, 'The Brown Owl: A Fairy Story', 'Ford, Ford Madox', '2015-05-03', 31, 'https://www.gutenberg.org/ebooks/48860', 'en', 4616), +(41426, 'Public Speaking: Principles and Practice', 'Winter, Irvah Lester', '2004-08-01', 42, 'https://www.gutenberg.org/ebooks/6333', 'en', 3906), +(41427, 'Harry F. Marks Catalogue No. 4, 1919\nChoice and Unusual Books', 'Marks, Harry F.', '2014-10-01', 14, 'https://www.gutenberg.org/ebooks/47014', 'en', 14945), +(41428, 'Above the Snow Line: Mountaineering Sketches Between 1870 and 1880', 'Dent, C. T. (Clinton Thomas)', '2011-03-01', 23, 'https://www.gutenberg.org/ebooks/35434', 'en', 1791), +(41429, 'Across Unknown South America', 'Landor, Arnold Henry Savage', '2007-08-31', 34, 'https://www.gutenberg.org/ebooks/22483', 'en', 4395), +(41430, 'A Little Journey', 'Bradbury, Ray', '2016-02-10', 296, 'https://www.gutenberg.org/ebooks/51171', 'en', 2308), +(41431, 'A Compilation of the Messages and Papers of the Presidents. Volume 2, part 1: James Monroe', NULL, '2004-02-01', 28, 'https://www.gutenberg.org/ebooks/10919', 'en', 447), +(41432, 'A Night on the Borders of the Black Forest', 'Edwards, Amelia Ann Blanford', '2011-10-10', 32, 'https://www.gutenberg.org/ebooks/37707', 'en', 61), +(41433, 'ERPANET Case Study: Project Gutenberg', 'ERPANET', '2005-01-04', 12, 'https://www.gutenberg.org/ebooks/14585', 'en', 340), +(41434, 'The American Missionary — Volume 32, No. 07, July 1878', 'Various', '2016-10-10', 2, 'https://www.gutenberg.org/ebooks/53242', 'en', 395), +(41435, 'Mammals of Mount Rainier National Park', 'Potts, Merlin K.', '2016-06-21', 8, 'https://www.gutenberg.org/ebooks/52390', 'en', 14946), +(41436, 'The Great Round World And What Is Going On In It, Vol. 1. No. 23, April 15, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-24', 21, 'https://www.gutenberg.org/ebooks/15457', 'en', 1), +(41437, 'The Trysting Place: A Farce in One Act', 'Tarkington, Booth', '2019-06-19', 36, 'https://www.gutenberg.org/ebooks/59778', 'en', 14947), +(41438, 'Hawthorn and Lavender, with Other Verses', 'Henley, William Ernest', '2007-06-01', 15, 'https://www.gutenberg.org/ebooks/21662', 'en', 8), +(41439, 'The Immortals: Masterpieces of Fiction, Crowned by the French Academy — Complete', 'Various', '2004-10-30', 40, 'https://www.gutenberg.org/ebooks/4000', 'en', 687), +(41440, 'Twenty Six Choice Poetical Extracts\r\nSelected from Celebrated Authors, and Printed from Copper Plates Engraved Expressly for the Work, Each Embellished with a Beautiful Vignette, Illustrative of the Subject', 'Various', '2014-04-06', 6, 'https://www.gutenberg.org/ebooks/45327', 'en', 859), +(41441, 'Candle and Crib', 'Purdon, Katherine Frances', '2008-01-15', 6, 'https://www.gutenberg.org/ebooks/24310', 'en', 585), +(41442, 'The Best Letters of Charles Lamb', 'Lamb, Charles', '2003-11-01', 49, 'https://www.gutenberg.org/ebooks/10125', 'en', 14948), +(41443, 'The Key to the Brontë Works\r\nThe Key to Charlotte Brontë\'s \'Wuthering Heights,\' \'Jane Eyre,\' and her other works.', 'Malham-Dembleby, John', '2012-09-03', 25, 'https://www.gutenberg.org/ebooks/40655', 'en', 8668), +(41444, 'Timaeus', 'Plato', '1998-12-01', 358, 'https://www.gutenberg.org/ebooks/1572', 'en', 4117), +(41445, 'The Bankrupt; Or, Advice to the Insolvent.\r\nA Poem, addressed to a friend, with other pieces', 'Parkerson, James', '2010-05-06', 8, 'https://www.gutenberg.org/ebooks/32275', 'en', 54), +(41446, 'Reports of the Committee on the Conduct of the War\r\nFort Pillow Massacre. Returned Prisoners.', 'United States. Congress. Joint Committee on the Conduct of the War', '2013-01-06', 34, 'https://www.gutenberg.org/ebooks/41787', 'en', 14949), +(41447, 'Tony the Tramp; Or, Right is Might', 'Alger, Horatio, Jr.', '2018-03-12', 20, 'https://www.gutenberg.org/ebooks/56730', 'en', 14950), +(41448, 'The Strange Case of Mortimer Fenley', 'Tracy, Louis', '2008-08-28', 30, 'https://www.gutenberg.org/ebooks/26447', 'en', 128), +(41449, 'A Spinner in the Sun', 'Reed, Myrtle', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/12672', 'en', 61), +(41450, 'The Boy Scouts\' Mountain Camp', 'Goldfrap, John Henry', '2013-02-16', 17, 'https://www.gutenberg.org/ebooks/42102', 'en', 2994), +(41451, 'Mr. Honey\'s Work Study Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 48, 'https://www.gutenberg.org/ebooks/3225', 'de', 5007), +(41452, 'The Etiquette of Engagement and Marriage\r\nDescribing Modern Manners and Customs of Courtship and Marriage, and giving Full Details regarding the Wedding Ceremony and Arrangements', 'Devereux, G. R. M.', '2009-11-21', 25, 'https://www.gutenberg.org/ebooks/30522', 'en', 1663), +(41453, 'Rizal\'s own story of his life', 'Rizal, José', '2015-03-08', 191, 'https://www.gutenberg.org/ebooks/48438', 'en', 8832), +(41454, '韓詩外傳', 'Han, Ying, active 150 B.C.', '2007-12-19', 27, 'https://www.gutenberg.org/ebooks/23909', 'zh', 4436), +(41455, 'A Colonial Reformer, Vol. 1 (of 3)', 'Boldrewood, Rolf', '2017-01-28', 13, 'https://www.gutenberg.org/ebooks/54067', 'en', 13959), +(41456, 'Faust I', 'Goethe, Johann Wolfgang von', '2006-05-08', 16, 'https://www.gutenberg.org/ebooks/18348', 'fi', 5240), +(41457, 'Eight Keys to Eden', 'Clifton, Mark', '2008-12-23', 75, 'https://www.gutenberg.org/ebooks/27595', 'en', 1564), +(41458, 'Lucretia — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7685', 'en', 3511), +(41459, 'Celtic Folklore: Welsh and Manx (Volume 2 of 2)', 'Rhys, John, Sir', '2017-11-17', 35, 'https://www.gutenberg.org/ebooks/55989', 'en', 10511), +(41460, 'Organizing and Building Up the Sunday School\nModern Sunday School Manuals', 'Hurlbut, Jesse Lyman', '2011-01-24', 9, 'https://www.gutenberg.org/ebooks/35050', 'en', 2149), +(41461, 'Madame de Ferneuse', 'Lesueur, Daniel', '2016-03-21', 4, 'https://www.gutenberg.org/ebooks/51515', 'fr', 259), +(41462, 'The Story of Baden-Powell\n\'The Wolf That Never Sleeps\'', 'Begbie, Harold', '2005-12-13', 32, 'https://www.gutenberg.org/ebooks/17300', 'en', 8289), +(41463, 'History of Circumcision from the Earliest Times to the Present\nMoral and Physical Reasons for its Performance', 'Remondino, P. C. (Peter Charles)', '2007-10-21', 38, 'https://www.gutenberg.org/ebooks/23135', 'en', 1039), +(41464, 'Fanny, the Flower-Girl; or, Honesty Rewarded. To Which are Added Other Tales', 'Bunbury, Selina', '2004-10-01', 15, 'https://www.gutenberg.org/ebooks/6757', 'en', 5105), +(41465, 'Η Λύρα Ανδρέου Κάλβου και Ανέκδοτος Ύμνος Αντωνίου Μαρτελάου', 'Martelaos, Antonios', '2010-10-31', 10, 'https://www.gutenberg.org/ebooks/34182', 'el', 8746), +(41466, 'Mrs. Craddock', 'Maugham, W. Somerset (William Somerset)', '2014-11-26', 77, 'https://www.gutenberg.org/ebooks/47470', 'en', 675), +(41467, 'Some Verses', 'Whitney, Helen Hay', '2013-03-14', 5, 'https://www.gutenberg.org/ebooks/42330', 'en', 178), +(41468, 'The Forerunner, Volume 1 (1909-1910)', NULL, '2002-01-01', 31, 'https://www.gutenberg.org/ebooks/3017', 'en', 14951), +(41469, 'The Masque of the Elements', 'Scheffauer, Herman George', '2008-09-20', 11, 'https://www.gutenberg.org/ebooks/26675', 'en', 8), +(41470, 'D\'Ri and I: A Tale of Daring Deeds in the Second War with the British.\r\nBeing the Memoirs of Colonel Ramon Bell, U.S.A.', 'Bacheller, Irving', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/12440', 'en', 3858), +(41471, 'One Hundred Proofs That the Earth Is Not a Globe', 'Carpenter, William', '2017-08-19', 171, 'https://www.gutenberg.org/ebooks/55387', 'en', 14952), +(41472, 'Narrative of Travels in Europe, Asia, and Africa, in the Seventeenth Century, Vol. II', 'Evliya Çelebi', '2017-02-28', 28, 'https://www.gutenberg.org/ebooks/54255', 'en', 2570), +(41473, 'L\'Uscoque', 'Sand, George', '2004-10-04', 25, 'https://www.gutenberg.org/ebooks/13592', 'fr', 3828), +(41474, 'With Poor Immigrants in America', 'Graham, Stephen', '2019-08-05', 1271, 'https://www.gutenberg.org/ebooks/60060', 'en', 1110), +(41475, 'The Origins and Destiny of Imperial Britain\nNineteenth Century Europe', 'Cramb, J. A. (John Adam)', '2009-12-19', 9, 'https://www.gutenberg.org/ebooks/30710', 'en', 10338), +(41476, 'Satisfaction Guaranteed', 'Leache, Joy', '2016-04-10', 39, 'https://www.gutenberg.org/ebooks/51727', 'en', 67), +(41477, 'A History of Bohemian Literature', 'Lützow, Francis, hrabe', '2014-09-06', 26, 'https://www.gutenberg.org/ebooks/46790', 'en', 14953), +(41478, 'In gondoleta\nBarcarole e Rime Veneziane', 'Negri, Antonio', '2006-11-21', 9, 'https://www.gutenberg.org/ebooks/19894', 'it', 8), +(41479, 'Correspondance diplomatique de Bertrand de Salignac de La Mothe Fénélon, tome premier\r\nAmbassadeur de France en Angleterre de 1568 à 1575', 'Salignac, Bertrand de, seigneur de La Mothe-Fénelon, active 16th century', '2011-02-15', 14, 'https://www.gutenberg.org/ebooks/35262', 'fr', 5129), +(41480, 'Chaucer\'s Official Life', 'Hulbert, James R. (James Root)', '2004-09-01', 23, 'https://www.gutenberg.org/ebooks/6565', 'en', 14954), +(41481, 'Sketches by Boz, Illustrative of Every-Day Life and Every-Day People', 'Dickens, Charles', '1997-04-01', 366, 'https://www.gutenberg.org/ebooks/882', 'en', 7007), +(41482, 'The Continental Monthly, Vol. 4, No. 6, December 1863\r\nDevoted to Literature and National Policy', 'Various', '2006-07-30', 2, 'https://www.gutenberg.org/ebooks/18946', 'en', 558), +(41483, 'The Strand Magazine, Vol. 27, February 1904, No. 159.', 'Various', '2014-12-12', 22, 'https://www.gutenberg.org/ebooks/47642', 'en', 2998), +(41484, 'The Makers of Canada: Champlain', 'Dionne, N.-E. (Narcisse-Eutrope)', '2005-11-22', 30, 'https://www.gutenberg.org/ebooks/17132', 'en', 3998), +(41485, 'Paulina and her Pets', 'Anonymous', '2007-11-03', 12, 'https://www.gutenberg.org/ebooks/23307', 'en', 625), +(41486, 'Garatujas', 'Freitas, Joaquim de Melo', '2007-02-15', 16, 'https://www.gutenberg.org/ebooks/20582', 'pt', 8), +(41487, 'The Modern Vikings: Stories of Life and Sport in the Norseland', 'Boyesen, Hjalmar Hjorth', '2016-09-17', 6, 'https://www.gutenberg.org/ebooks/53070', 'en', 14955), +(41488, 'The Copernicus of Antiquity (Aristarchus of Samos)', 'Heath, Thomas Little, Sir', '2018-12-19', 58, 'https://www.gutenberg.org/ebooks/58498', 'en', 14956), +(41489, 'History of the Washington National Monument and of the Washington National Monument Society', 'Harvey, Frederick L. (Frederick Loviad)', '2011-09-25', 2, 'https://www.gutenberg.org/ebooks/37535', 'en', 14957), +(41490, 'A Week on the Concord and Merrimack Rivers', 'Thoreau, Henry David', '2003-07-01', 194, 'https://www.gutenberg.org/ebooks/4232', 'en', 14958), +(41491, 'Appletons\' Popular Science Monthly, June 1899\nVolume LV', 'Various', '2014-03-11', 37, 'https://www.gutenberg.org/ebooks/45115', 'en', 352), +(41492, 'New Latin Grammar', 'Bennett, Charles E. (Charles Edwin)', '2005-04-20', 279, 'https://www.gutenberg.org/ebooks/15665', 'en', 14959), +(41493, 'Ben Burton: Born and Bred at Sea', 'Kingston, William Henry Giles', '2007-05-15', 8, 'https://www.gutenberg.org/ebooks/21450', 'en', 3535), +(41494, 'Indian and Scout: A Tale of the Gold Rush to California', 'Brereton, F. S. (Frederick Sadleir)', '2012-08-09', 17, 'https://www.gutenberg.org/ebooks/40467', 'en', 14960), +(41495, 'Was It Right to Forgive? A Domestic Romance', 'Barr, Amelia E.', '2010-07-18', 24, 'https://www.gutenberg.org/ebooks/33195', 'en', 61), +(41496, 'The Flying U\'s Last Stand', 'Bower, B. M.', '1999-05-01', 45, 'https://www.gutenberg.org/ebooks/1740', 'en', 774), +(41497, 'Pushbutton War', 'Martino, Joseph Paul', '2008-01-02', 34, 'https://www.gutenberg.org/ebooks/24122', 'en', 2564), +(41498, 'Betty Gordon at Boarding School; Or, The Treasure of Indian Chasm', 'Emerson, Alice B.', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10317', 'en', 1877), +(41499, 'Travels to Discover the Source of the Nile, Volume 4 (of 5)\r\nIn the years 1768, 1769, 1770, 1771, 1772 and 1773', 'Bruce, James', '2018-02-05', 35, 'https://www.gutenberg.org/ebooks/56502', 'en', 14961), +(41500, 'Horae subsecivae. Rab and His Friends, and Other Papers', 'Brown, John', '2014-06-10', 28, 'https://www.gutenberg.org/ebooks/45929', 'en', 11882), +(41501, 'Josephine\nMakers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2010-04-19', 29, 'https://www.gutenberg.org/ebooks/32047', 'en', 12561), +(41502, 'The Military Adventures of Johnny Newcome\nWith an Account of his Campaign on the Peninsula and in Pall Mall', 'Roberts, David', '2013-11-17', 7, 'https://www.gutenberg.org/ebooks/44201', 'en', 7686), +(41503, 'Robur-le-Conquerant', 'Verne, Jules', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/5126', 'fr', 8820), +(41504, 'Mary S. Peake: The Colored Teacher at Fortress Monroe', 'Lockwood, Lewis C. (Lewis Conger)', '2007-03-04', 32, 'https://www.gutenberg.org/ebooks/20744', 'en', 14962), +(41505, 'Life and Gabriella: The Story of a Woman\'s Courage', 'Glasgow, Ellen Anderson Gholson', '2005-01-03', 21, 'https://www.gutenberg.org/ebooks/14571', 'en', 4850), +(41506, 'The Romance of a Princess: A Comedy; and Other Poems', 'Roddick, Amy Redpath', '2016-06-18', 4, 'https://www.gutenberg.org/ebooks/52364', 'en', 14963), +(41507, 'Red Rooney: The Last of the Crew', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 18, 'https://www.gutenberg.org/ebooks/21696', 'en', 1246), +(41508, 'Inkle and Yarico: An opera, in three acts', 'Colman, George', '2011-07-05', 25, 'https://www.gutenberg.org/ebooks/36621', 'en', 14547), +(41509, 'The Secret of Wyvern Towers', 'Speight, T. W. (Thomas Wilkinson)', '2018-07-31', 23, 'https://www.gutenberg.org/ebooks/57616', 'en', 137), +(41510, 'Man and Wife', 'Collins, Wilkie', '2006-02-22', 61, 'https://www.gutenberg.org/ebooks/1586', 'en', 378), +(41511, 'Patricia Brent, Spinster', 'Jenkins, Herbert George', '2010-08-05', 37, 'https://www.gutenberg.org/ebooks/33353', 'en', 432), +(41512, 'First Man', 'Brown, Clyde', '2010-05-07', 11, 'https://www.gutenberg.org/ebooks/32281', 'en', 26), +(41513, 'Die großen Mächte', 'Ranke, Leopold von', '2012-05-11', 29, 'https://www.gutenberg.org/ebooks/39669', 'de', 14964), +(41514, 'Encyclopaedia Britannica, 11th Edition, \"Lamennais, Robert de\" to \"Latini, Brunetto\"\r\nVolume 16, Slice 2', 'Various', '2013-01-04', 26, 'https://www.gutenberg.org/ebooks/41773', 'en', 1081), +(41515, 'Michelangelo\'s Shoulder', 'Wetterau, John Moncure', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11003', 'en', 179), +(41516, '筠州黃檗山斷際禪師傳法心要', 'Huangbo', '2008-04-29', 17, 'https://www.gutenberg.org/ebooks/25236', 'zh', 14965), +(41517, 'Mysteries of Washington City, during Several Months of the Session of the 28th Congress', 'Atwater, Caleb', '2017-07-17', 10, 'https://www.gutenberg.org/ebooks/55141', 'en', 14966), +(41518, 'Murder in Any Degree', 'Johnson, Owen', '2004-06-01', 23, 'https://www.gutenberg.org/ebooks/12686', 'en', 112), +(41519, 'The Seven Lamps of Architecture', 'Ruskin, John', '2011-04-18', 360, 'https://www.gutenberg.org/ebooks/35898', 'en', 1352), +(41520, 'Poems, 1799', 'Southey, Robert', '2005-08-01', 7, 'https://www.gutenberg.org/ebooks/8639', 'en', 8), +(41521, 'Μύθοι', 'Velaras, Ioannes', '2010-02-25', 18, 'https://www.gutenberg.org/ebooks/31404', 'el', 8746), +(41522, 'Legends and Lyrics. Part 1', 'Procter, Adelaide Anne', '2000-08-01', 29, 'https://www.gutenberg.org/ebooks/2303', 'en', 532), +(41523, 'La lotta politica in Italia, Volume 3 (of 3)\r\nOrigini della lotta attuale (476-1887); Quinta edizione', 'Oriani, Alfredo', '2013-06-24', 26, 'https://www.gutenberg.org/ebooks/43024', 'it', 11082), +(41524, 'Evesham', 'New, E. H. (Edmund Hort)', '2004-10-14', 12, 'https://www.gutenberg.org/ebooks/13754', 'en', 14967), +(41525, 'A Valiant Ignorance; vol. 1 of 3\nA Novel in Three Volumes', 'Dickens, Mary Angela', '2017-02-02', 7, 'https://www.gutenberg.org/ebooks/54093', 'en', 61), +(41526, 'Trinity Site: 1945-1995.\r\nA National Historic Landmark, White Sands Missile Range, New Mexico', 'White Sands Missile Range (N.M.). Public Affairs Office', '2014-09-14', 105, 'https://www.gutenberg.org/ebooks/278', 'en', 14327), +(41527, 'The Boy Chums in the Forest; Or, Hunting for Plume Birds in the Florida Everglades', 'Ely, Wilmer M. (Wilmer Mateo)', '2008-12-18', 14, 'https://www.gutenberg.org/ebooks/27561', 'en', 14968), +(41528, 'The Isle of Wight', 'Mitton, G. E. (Geraldine Edith)', '2014-08-10', 13, 'https://www.gutenberg.org/ebooks/46556', 'en', 2869), +(41529, 'What Will He Do with It? — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-24', 18, 'https://www.gutenberg.org/ebooks/7671', 'en', 137), +(41530, 'The Lady of the Ice: A Novel', 'De Mille, James', '2007-07-07', 14, 'https://www.gutenberg.org/ebooks/22013', 'en', 65), +(41531, 'A Journey to Katmandu (the Capital of Napaul), with the Camp of Jung Bahadoor\r\nIncluding a Sketch of the Nepaulese Ambassador at Home', 'Oliphant, Laurence', '2005-07-06', 28, 'https://www.gutenberg.org/ebooks/16226', 'en', 7295), +(41532, 'England and Canada\r\nA Summer Tour Between Old and New Westminster, with Historical Notes', 'Fleming, Sandford', '2015-11-11', 10, 'https://www.gutenberg.org/ebooks/50433', 'en', 2655), +(41533, 'An Impartial Narrative of the Most Important Engagements Which Took Place Between His Majesty\'s Forces and the Rebels, During the Irish Rebellion, 1798.', 'Jones, John, of Dublin', '2009-04-08', 12, 'https://www.gutenberg.org/ebooks/28529', 'en', 14969), +(41534, 'The Story of Opal: The Journal of an Understanding Heart', 'Whiteley, Opal Stanley', '2013-09-26', 41, 'https://www.gutenberg.org/ebooks/43818', 'en', 14970), +(41535, 'Proverb Lore\r\nMany sayings, wise or otherwise, on many subjects, gleaned from many sources', 'Hulme, F. Edward (Frederick Edward)', '2010-10-31', 42, 'https://www.gutenberg.org/ebooks/34176', 'en', 14971), +(41536, 'America\'s Black and White Book: One Hundred Pictured Reasons Why We Are At War', 'Rogers, W. A. (William Allen)', '2014-11-29', 16, 'https://www.gutenberg.org/ebooks/47484', 'en', 5749), +(41537, 'Rob-Roy', 'Scott, Walter', '2005-10-08', 15, 'https://www.gutenberg.org/ebooks/16828', 'fr', 14972), +(41538, 'Histoire littéraire d\'Italie (2/9)', 'Ginguené, Pierre Louis', '2010-03-14', 13, 'https://www.gutenberg.org/ebooks/31636', 'fr', 7200), +(41539, 'L\'Ève future', 'Villiers de L\'Isle-Adam, Auguste, comte de', '2008-09-21', 59, 'https://www.gutenberg.org/ebooks/26681', 'fr', 642), +(41540, 'The Story of Westminster Abbey', 'Brooke-Hunt, Violet', '2017-08-16', 7, 'https://www.gutenberg.org/ebooks/55373', 'en', 7264), +(41541, 'Muuan markkinamies', 'Aho, Juhani', '2004-10-01', 17, 'https://www.gutenberg.org/ebooks/13566', 'fi', 61), +(41542, '一枕奇', 'Huayangsanren', '2009-01-09', 19, 'https://www.gutenberg.org/ebooks/27753', 'zh', 3187), +(41543, 'Suomen kansan seikkailusatuja\nKolmas sarja suomalaisia satuja lapsille ja nuorisolle', 'Härkönen, Iivo', '2019-08-12', 57, 'https://www.gutenberg.org/ebooks/60094', 'fi', 5581), +(41544, 'An Account of Egypt', 'Herodotus', '2006-02-26', 208, 'https://www.gutenberg.org/ebooks/2131', 'en', 14973), +(41545, 'Zut, and Other Parisians', 'Carryl, Guy Wetmore', '2013-07-14', 19, 'https://www.gutenberg.org/ebooks/43216', 'en', 112), +(41546, 'Oswald Langdon\nor, Pierre and Paul Lanier. A Romance of 1894-1898', 'Hamilton, Levi Jackson', '2007-08-02', 73, 'https://www.gutenberg.org/ebooks/22221', 'en', 61), +(41547, 'The Hedge School; The Midnight Mass; The Donagh\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 20, 'https://www.gutenberg.org/ebooks/16014', 'en', 440), +(41548, 'The Birds of Washington (Volume 1 of 2)\r\nA complete, scientific and popular account of the 372 species of birds found in the state', 'Bowles, John Hooper', '2014-09-03', 13, 'https://www.gutenberg.org/ebooks/46764', 'en', 14974), +(41549, 'Sir Brook Fossbrooke, Volume I.', 'Lever, Charles James', '2011-02-16', 11, 'https://www.gutenberg.org/ebooks/35296', 'en', 61), +(41550, 'The Arabian Nights Entertainments', 'Anonymous', '2006-11-18', 631, 'https://www.gutenberg.org/ebooks/19860', 'en', 1113), +(41551, 'Windy McPherson\'s Son', 'Anderson, Sherwood', '2005-02-01', 42, 'https://www.gutenberg.org/ebooks/7443', 'en', 1080), +(41552, 'The Boy Spy\r\nA substantially true record of secret service during the war of the rebellion, a correct account of events witnessed by a soldier', 'Kerbey, Joseph Orton', '2010-11-16', 24, 'https://www.gutenberg.org/ebooks/34344', 'en', 14975), +(41553, 'Life in the Iron-Mills; Or, The Korl Woman', 'Davis, Rebecca Harding', '1997-04-01', 164, 'https://www.gutenberg.org/ebooks/876', 'en', 2153), +(41554, 'Highland Ballad', 'Leadem, Christopher', '2004-09-01', 6, 'https://www.gutenberg.org/ebooks/6591', 'en', 314), +(41555, 'Landed Gentry: A Comedy in Four Acts', 'Maugham, W. Somerset (William Somerset)', '2015-12-03', 22, 'https://www.gutenberg.org/ebooks/50601', 'en', 5915), +(41556, 'Two Suffolk Friends', 'Groome, Francis Hindes', '2007-02-13', 20, 'https://www.gutenberg.org/ebooks/20576', 'en', 14976), +(41557, 'A Manual of Italian Literature', 'Cliffe, Francis Henry', '2016-09-18', 13, 'https://www.gutenberg.org/ebooks/53084', 'en', 7200), +(41558, 'The Fun of Getting Thin: How to Be Happy and Reduce the Waist Line', 'Blythe, Samuel G. (Samuel George)', '2005-01-20', 50, 'https://www.gutenberg.org/ebooks/14743', 'en', 14977), +(41559, 'Raphael', 'Konody, Paul G. (Paul George)', '2013-10-25', 21, 'https://www.gutenberg.org/ebooks/44033', 'en', 13875), +(41560, 'Household Tales by Brothers Grimm', 'Grimm, Wilhelm', '2004-03-01', 216, 'https://www.gutenberg.org/ebooks/5314', 'en', 900), +(41561, 'L\'Illustration, No. 3691, 22 Novembre 1913', 'Various', '2011-06-14', 2, 'https://www.gutenberg.org/ebooks/36413', 'fr', 150), +(41562, 'Fair Margaret: A Portrait', 'Crawford, F. Marion (Francis Marion)', '2008-06-19', 17, 'https://www.gutenberg.org/ebooks/25838', 'en', 8334), +(41563, 'Woman in Modern Society', 'Barnes, Earl', '2005-04-23', 17, 'https://www.gutenberg.org/ebooks/15691', 'en', 14978), +(41564, 'A History of Parliamentary Elections and Electioneering in the Old Days\nShowing the State of Political Parties and Party Warfare at the Hustings and in the House of Commons from the Stuarts to Queen Victoria', 'Grego, Joseph', '2016-05-24', 11, 'https://www.gutenberg.org/ebooks/52156', 'en', 14979), +(41565, 'The King of Diamonds: A Tale of Mystery and Adventure', 'Tracy, Louis', '2012-08-13', 41, 'https://www.gutenberg.org/ebooks/40493', 'en', 61), +(41566, 'Harper\'s Round Table, October 22, 1895', 'Various', '2010-07-15', 8, 'https://www.gutenberg.org/ebooks/33161', 'en', 668), +(41567, 'Legal Lore: Curiosities of Law and Lawyers', NULL, '2012-01-16', 16, 'https://www.gutenberg.org/ebooks/38589', 'en', 14980), +(41568, 'German Barbarism: A Neutral\'s Indictment', 'Maccas, Léon', '2018-06-30', 16, 'https://www.gutenberg.org/ebooks/57424', 'en', 2936), +(41569, 'Bartleby, the Scrivener: A Story of Wall-Street', 'Melville, Herman', '2004-02-01', 1140, 'https://www.gutenberg.org/ebooks/11231', 'en', 1061), +(41570, 'A Confederate Girl\'s Diary', 'Dawson, Sarah Morgan', '2008-04-05', 51, 'https://www.gutenberg.org/ebooks/25004', 'en', 83), +(41571, 'Rubens', 'Bensusan, S. L. (Samuel Levy)', '2012-12-03', 15, 'https://www.gutenberg.org/ebooks/41541', 'en', 14981), +(41572, 'The Decameron, Volume II', 'Boccaccio, Giovanni', '2004-08-03', 138, 'https://www.gutenberg.org/ebooks/13102', 'en', 12245), +(41573, 'From the Car Behind', 'Ingram, Eleanor M. (Eleanor Marie)', '2008-11-27', 16, 'https://www.gutenberg.org/ebooks/27337', 'en', 14982), +(41574, 'Under the Redwoods', 'Harte, Bret', '2006-05-18', 33, 'https://www.gutenberg.org/ebooks/2555', 'en', 6391), +(41575, 'Pipe of Peace', 'McKimmey, James', '2009-11-01', 36, 'https://www.gutenberg.org/ebooks/30380', 'en', 26), +(41576, 'The Expositor\'s Bible: The Book of Isaiah, Volume 2 (of 2)', 'Smith, George Adam', '2013-09-08', 35, 'https://www.gutenberg.org/ebooks/43672', 'en', 11013), +(41577, 'Regimental Nicknames and Traditions of the British Army', 'Anonymous', '2015-07-03', 18, 'https://www.gutenberg.org/ebooks/49348', 'en', 2006), +(41578, 'Augustus Does His Bit: A True-to-Life Farce', 'Shaw, Bernard', '2002-10-01', 52, 'https://www.gutenberg.org/ebooks/3487', 'en', 14983), +(41579, 'The Red Moccasins: A Story', 'Heady, Morrison', '2010-02-11', 5, 'https://www.gutenberg.org/ebooks/31252', 'en', 14984), +(41580, 'The Hero of Esthonia and Other Studies in the Romantic Literature of That Country', 'Kirby, W. F. (William Forsell)', '2006-10-02', 69, 'https://www.gutenberg.org/ebooks/19438', 'en', 10429), +(41581, 'In the Days of Queen Mary', 'Crake, E. E. (Edward Ebenezer)', '2017-10-09', 7, 'https://www.gutenberg.org/ebooks/55717', 'en', 14985), +(41582, 'We Were There at the Oklahoma Land Run', 'Kjelgaard, Jim', '2010-12-22', 16, 'https://www.gutenberg.org/ebooks/34720', 'en', 14986), +(41583, 'The Spenders: A Tale of the Third Generation', 'Wilson, Harry Leon', '2006-02-01', 16, 'https://www.gutenberg.org/ebooks/9981', 'en', 1380), +(41584, 'The Battle of the Falkland Islands, Before and After', 'Spencer-Cooper, Henry Edmund Harvey', '2015-10-21', 25, 'https://www.gutenberg.org/ebooks/50265', 'en', 10034), +(41585, 'A True Friend: A Novel', 'Sergeant, Adeline', '2007-12-10', 45, 'https://www.gutenberg.org/ebooks/23797', 'en', 61), +(41586, 'Punch, or the London Charivari, Vol. 104, March 18, 1893', 'Various', '2007-09-17', 10, 'https://www.gutenberg.org/ebooks/22645', 'en', 134), +(41587, 'Weymouth New Testament in Modern Speech, Jude', 'Weymouth, Richard Francis', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8853', 'en', 6543), +(41588, 'The Profits of Religion, Fifth Edition', 'Sinclair, Upton', '2005-08-07', 35, 'https://www.gutenberg.org/ebooks/16470', 'en', 1759), +(41589, 'The First Canadians in France\nThe Chronicle of a Military Hospital in the War Zone', 'Bell, F. McKelvey (Frederick McKelvey)', '2014-07-16', 14, 'https://www.gutenberg.org/ebooks/46300', 'en', 4962), +(41590, 'A Hive of Busy Bees', 'Williams, Effie Mae Hency', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/7027', 'en', 5529), +(41591, 'De Nederlandsche Geslachtsnamen in Oorsprong, Geschiedenis en Beteekenis', 'Winkler, Johan', '2011-05-10', 34, 'https://www.gutenberg.org/ebooks/36077', 'nl', 14987), +(41592, 'The Seven Curses of London', 'Greenwood, James', '2014-05-05', 44, 'https://www.gutenberg.org/ebooks/45585', 'en', 14988), +(41593, 'Saguaro National Monument, Arizona', 'Dodge, Natt N. (Natt Noyes)', '2016-07-09', 13, 'https://www.gutenberg.org/ebooks/52532', 'en', 14989), +(41594, 'An Explanatory Discourse by Tan Chet-qua of Quang-chew-fu, Gent.', 'Chambers, William, Sir', '2012-05-26', 18, 'https://www.gutenberg.org/ebooks/39803', 'en', 14990), +(41595, 'Camp Venture: A Story of the Virginia Mountains', 'Eggleston, George Cary', '2013-01-26', 17, 'https://www.gutenberg.org/ebooks/41919', 'en', 13837), +(41596, 'Lill\'s Travels in Santa Claus Land\nAnd Other Stories', 'Towne, Ellis', '2006-12-15', 32, 'https://www.gutenberg.org/ebooks/20112', 'en', 388), +(41597, 'Le donne che lavorano', 'Treves, Virginia', '2018-10-02', 28, 'https://www.gutenberg.org/ebooks/58008', 'it', 1650), +(41598, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 11, No. 22, January, 1873', 'Various', '2004-12-11', 26, 'https://www.gutenberg.org/ebooks/14327', 'en', 162), +(41599, 'Tom Fairfield\'s Hunting Trip; or, Lost in the Wilderness', 'Chapman, Allen', '2013-12-18', 18, 'https://www.gutenberg.org/ebooks/44457', 'en', 176), +(41600, 'The Rover Boys in the Jungle; Or, Stirring Adventures in Africa', 'Stratemeyer, Edward', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/5770', 'en', 14991), +(41601, 'Germaniens Götter', 'Herzog, Rudolf', '2017-12-17', 20, 'https://www.gutenberg.org/ebooks/56192', 'de', 3860), +(41602, 'Fate Knocks at the Door: A Novel', 'Comfort, Will Levington', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11655', 'en', 61), +(41603, '詩品', 'Zhong, Rong, active 502-519', '2008-05-13', 15, 'https://www.gutenberg.org/ebooks/25460', 'zh', 9527), +(41604, 'Mr. Jacobs: A Tale of the Drummer, the Reporter, and the Prestidigitateur', 'Bates, Arlo', '2012-10-21', 6, 'https://www.gutenberg.org/ebooks/41125', 'en', 14992), +(41605, 'The Trembling of the Veil', 'Yeats, W. B. (William Butler)', '2010-08-23', 59, 'https://www.gutenberg.org/ebooks/33505', 'en', 14993), +(41606, 'London City', 'Besant, Walter', '2019-02-05', 20, 'https://www.gutenberg.org/ebooks/58834', 'en', 4685), +(41607, 'The Toll-House\nSailor\'s Knots, Part 7.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/10787', 'en', 72), +(41608, 'Poems', 'Macy, Arthur', '2011-11-13', 6, 'https://www.gutenberg.org/ebooks/37999', 'en', 178), +(41609, 'Novelle Napolitane', 'Di Giacomo, Salvatore', '2018-04-24', 50, 'https://www.gutenberg.org/ebooks/57040', 'it', 474), +(41610, 'Happy Island: A New \"Uncle William\" Story', 'Lee, Jennette', '2016-08-02', 7, 'https://www.gutenberg.org/ebooks/52700', 'en', 1526), +(41611, 'A History of Literary Criticism in the Renaissance\r\nWith special reference to the influence of Italy in the formation and development of modern classicism', 'Spingarn, Joel Elias', '2011-05-28', 16, 'https://www.gutenberg.org/ebooks/36245', 'en', 6882), +(41612, 'Celt and Saxon — Volume 2', 'Meredith, George', '2003-09-01', 11, 'https://www.gutenberg.org/ebooks/4490', 'en', 137), +(41613, 'Things a Boy Should Know About Electricity\nSecond Edition', 'St. John, Thomas M. (Thomas Matthew)', '2014-01-14', 28, 'https://www.gutenberg.org/ebooks/44665', 'en', 2979), +(41614, 'Ιστορίες αλλόκοτες', 'Poe, Edgar Allan', '2011-09-11', 33, 'https://www.gutenberg.org/ebooks/37397', 'el', 179), +(41615, 'A Thorny Path — Complete', 'Ebers, Georg', '2004-11-15', 23, 'https://www.gutenberg.org/ebooks/5542', 'en', 1814), +(41616, 'Jack Harkaway\'s Boy Tinker Among The Turks\nBook Number Fifteen in the Jack Harkaway Series', 'Hemyng, Bracebridge', '2007-01-09', 16, 'https://www.gutenberg.org/ebooks/20320', 'en', 323), +(41617, 'Quatre contes de Prosper Mérimée', 'Mérimée, Prosper', '2004-11-22', 35, 'https://www.gutenberg.org/ebooks/14115', 'en', 179), +(41618, 'The Bunsby Papers (second series): Irish Echoes', 'Brougham, John', '2012-11-07', 14, 'https://www.gutenberg.org/ebooks/41317', 'en', 637), +(41619, 'Verhaal van het vergaan van het jacht de Sperwer\r\nEn van het wedervaren der schipbreukelingen op het eiland Quelpaert en het vasteland van Korea (1653-1666) met eene beschrijving van dat rijk', 'Hamel, Hendrik', '2004-03-01', 47, 'https://www.gutenberg.org/ebooks/11467', 'nl', 2039), +(41620, 'A Treasury of Heroes and Heroines\nA Record of High Endeavour and Strange Adventure from 500 B.C. to 1920 A.D.', 'Edwards, Clayton', '2008-05-30', 28, 'https://www.gutenberg.org/ebooks/25652', 'en', 6171), +(41621, 'The Letters of Queen Victoria : A Selection from her Majesty\'s correspondence between the years 1837 and 1861. Volume 2, 1844-1853', 'Victoria, Queen of Great Britain', '2008-03-08', 38, 'https://www.gutenberg.org/ebooks/24780', 'en', 10626), +(41622, 'The Depths of the Soul: Psycho-Analytical Studies', 'Stekel, Wilhelm', '2018-06-04', 17, 'https://www.gutenberg.org/ebooks/57272', 'en', 3640), +(41623, 'Punch, or the London Charivari, Volume 1, September 25, 1841', 'Various', '2005-02-07', 4, 'https://www.gutenberg.org/ebooks/14929', 'en', 134), +(41624, 'The Curtezan unmasked; or, The Whoredomes of Jezebel Painted to the Life\r\nWith Antidotes against them, or Heavenly Julips to cool Men in the Fever of Lust.', 'Anonymous', '2010-09-16', 93, 'https://www.gutenberg.org/ebooks/33737', 'en', 740), +(41625, 'The Devil\'s Paw', 'Oppenheim, E. Phillips (Edward Phillips)', '2001-08-01', 23, 'https://www.gutenberg.org/ebooks/2767', 'en', 128), +(41626, 'Arden of Feversham', NULL, '2013-08-11', 54, 'https://www.gutenberg.org/ebooks/43440', 'en', 1298), +(41627, 'Inaŭgura parolado de Barack Obama\r\n20-a de januaro, 2009', 'Obama, Barack', '2009-05-25', 12, 'https://www.gutenberg.org/ebooks/28971', 'eo', 9921), +(41628, 'The Last Reformation', 'Smith, F. G. (Frederick George)', '2004-08-30', 12, 'https://www.gutenberg.org/ebooks/13330', 'en', 14994), +(41629, '玉支机', 'Tianhuazangzhuren', '2008-10-30', 13, 'https://www.gutenberg.org/ebooks/27105', 'zh', NULL), +(41630, 'Trains at Work', 'Elting, Mary', '2017-09-11', 15, 'https://www.gutenberg.org/ebooks/55525', 'en', 14995), +(41631, 'Le Fils de Coralie: Comédie en quatre actes en prose', 'Delpit, Albert', '2013-04-25', 19, 'https://www.gutenberg.org/ebooks/42592', 'fr', 3017), +(41632, 'De slavernij in Suriname,\r\nof dezelfde gruwelen der slavernij, die in de \'Negerhut\' geschetst zijn, bestaan ook in onze West-Indische Koloniën', 'Wolbers, J.', '2010-01-24', 10, 'https://www.gutenberg.org/ebooks/31060', 'nl', 5392), +(41633, 'The Early Cave-Men', 'Dopp, Katharine Elizabeth', '2015-09-26', 12, 'https://www.gutenberg.org/ebooks/50057', 'en', 14996), +(41634, 'Jane Field: A Novel', 'Freeman, Mary Eleanor Wilkins', '2006-02-18', 24, 'https://www.gutenberg.org/ebooks/17790', 'en', 539), +(41635, 'Mademoiselle de Maupin, Volume 2 (of 2)', 'Gautier, Théophile', '2015-05-08', 22, 'https://www.gutenberg.org/ebooks/48894', 'en', 58), +(41636, 'Rosalind at Red Gate', 'Nicholson, Meredith', '2010-11-30', 17, 'https://www.gutenberg.org/ebooks/34512', 'en', 3016), +(41637, 'Laurus Nobilis: Chapters on Art and Life', 'Lee, Vernon', '2009-01-31', 19, 'https://www.gutenberg.org/ebooks/27939', 'en', 2250), +(41638, 'The Wars of the Roses; or, Stories of the Struggle of York and Lancaster', 'Edgar, John G. (John George)', '2014-06-29', 28, 'https://www.gutenberg.org/ebooks/46132', 'en', 2736), +(41639, '鄧析子', 'Deng, Xi', '2005-01-01', 17, 'https://www.gutenberg.org/ebooks/7215', 'zh', 1493), +(41640, 'Wintry Peacock\nFrom \"The New Decameron\", Volume III.', 'Lawrence, D. H. (David Herbert)', '2007-08-31', 20, 'https://www.gutenberg.org/ebooks/22477', 'en', 61), +(41641, 'Heil dir im Siegerkranz!: Erzählung\r\n(Zweite Auflage)', 'Schubin, Ossip', '2015-09-12', 3, 'https://www.gutenberg.org/ebooks/49946', 'de', 138), +(41642, 'Reizen en vechten in het Zuiden van de Philippijnen\r\nDe Aarde en haar Volken, 1908', 'Kann, Réginald', '2005-09-04', 8, 'https://www.gutenberg.org/ebooks/16642', 'nl', 4048), +(41643, 'All Jackson\'s Children', 'Galouye, Daniel F.', '2016-02-11', 41, 'https://www.gutenberg.org/ebooks/51185', 'en', 5836), +(41644, 'La nuit de Noël dans tous les pays', 'Chabot, Alphonse', '2005-01-24', 16, 'https://www.gutenberg.org/ebooks/14788', 'fr', 949), +(41645, 'The Spy in Black', 'Clouston, J. Storer (Joseph Storer)', '2010-09-25', 25, 'https://www.gutenberg.org/ebooks/33996', 'en', 14997), +(41646, 'It\'s like this, cat', 'Neville, Emily', '2008-03-27', 43, 'https://www.gutenberg.org/ebooks/24921', 'en', 11147), +(41647, 'Dearest Enemy', 'Holden, Fox B.', '2019-05-22', 70, 'https://www.gutenberg.org/ebooks/59575', 'en', 179), +(41648, 'The Religious Life of London', 'Ritchie, J. Ewing (James Ewing)', '2010-06-16', 34, 'https://www.gutenberg.org/ebooks/32844', 'en', 2948), +(41649, 'A Century of Sail and Steam on the Niagara River', 'Cumberland, Barlow', '2012-01-10', 6, 'https://www.gutenberg.org/ebooks/38542', 'en', 14998), +(41650, 'Old Coaching Days\nSome Incidents in the Life of Moses James Nobbs, the last of the Mail Coach Guards', 'Nobbs, Moses James', '2017-01-02', 5, 'https://www.gutenberg.org/ebooks/53873', 'en', 14999), +(41651, 'The Real Jesus of the Four Gospels', 'Atwater, John Birdseye', '2012-08-08', 23, 'https://www.gutenberg.org/ebooks/40458', 'en', 10446), +(41652, 'Poems', 'Cassels, Walter Richard', '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/10328', 'en', 8), +(41653, 'Inferno; Legenden', 'Strindberg, August', '2014-06-08', 27, 'https://www.gutenberg.org/ebooks/45916', 'de', 957), +(41654, 'Love Story', 'Cox, Irving E.', '2010-04-21', 40, 'https://www.gutenberg.org/ebooks/32078', 'en', 26), +(41655, 'A Lad of Grit: A Story of Adventure on Land and Sea in Restoration Times', 'Westerman, Percy F. (Percy Francis)', '2012-04-19', 31, 'https://www.gutenberg.org/ebooks/39490', 'en', 15000), +(41656, 'The Peterkin papers', 'Hale, Lucretia P. (Lucretia Peabody)', '2002-01-01', 48, 'https://www.gutenberg.org/ebooks/3028', 'en', 637), +(41657, 'The Young Carpenters of Freiberg\nA Tale of the Thirty Years\' War', 'Anonymous', '2006-08-21', 12, 'https://www.gutenberg.org/ebooks/19097', 'en', 5126), +(41658, 'The Silver Lining: A Guernsey Story', 'Roussel, John', '2009-01-13', 77, 'https://www.gutenberg.org/ebooks/27798', 'en', 11891), +(41659, 'Lady Rosamond\'s Secret: A Romance of Fredericton', 'Armour, Rebecca Agatha', '2006-04-10', 28, 'https://www.gutenberg.org/ebooks/18145', 'en', 15001), +(41660, 'A Study of Siouan Cults\r\nEleventh Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1889-1890, Government Printing Office, Washington, 1861, pages 351-544', 'Dorsey, James Owen', '2015-04-04', 22, 'https://www.gutenberg.org/ebooks/48635', 'en', 15002), +(41661, 'Iltalampun ääressä II: Uusia kertomuksia', 'Aina', '2006-03-06', 16, 'https://www.gutenberg.org/ebooks/17931', 'fi', 61), +(41662, 'The Works of Edgar Allan Poe, Volume 1', 'Poe, Edgar Allan', '2005-12-01', 16, 'https://www.gutenberg.org/ebooks/9512', 'en', 50), +(41663, 'What I Saw in Kaffir-Land', 'Lakeman, Stephen', '2016-04-10', 12, 'https://www.gutenberg.org/ebooks/51718', 'en', 10864), +(41664, 'Robert Louis Stevenson', 'Simpson, E. Blantyre (Evelyn Blantyre)', '2003-03-01', 20, 'https://www.gutenberg.org/ebooks/3814', 'en', 3163), +(41665, 'The Coyote\nA Western Story', 'Roberts, James', '2009-08-03', 30, 'https://www.gutenberg.org/ebooks/29602', 'en', 315), +(41666, 'Celtic Tales, Told to the Children', 'Chisholm, Louey', '2005-02-01', 91, 'https://www.gutenberg.org/ebooks/7488', 'en', 4799), +(41667, 'Narrative of a Journey to the Shores of the Polar Sea, in the Years 1819-20-21-22, Volume 1', 'Franklin, John', '2006-08-03', 46, 'https://www.gutenberg.org/ebooks/18979', 'en', 15003), +(41668, 'The Rubaiyat of Ohow Dryyam\nWith Apologies to Omar', 'Duff, J. L.', '2007-11-05', 19, 'https://www.gutenberg.org/ebooks/23338', 'en', 3449), +(41669, 'Japanese Fairy Tales', 'James, Grace', '2011-04-13', 191, 'https://www.gutenberg.org/ebooks/35853', 'en', 8436), +(41670, 'The Wallypug in London', 'Farrow, G. E. (George Edward)', '2008-08-29', 19, 'https://www.gutenberg.org/ebooks/26478', 'en', 580), +(41671, 'The Road of a Thousand Wonders\r\nThe Coast Line—Shasta Route of the Southern Pacific Company from Los Angeles Through San Francisco, to Portland, a Journey of Over One Thousand Three Hundred Miles', 'Southern Pacific Company. Passenger Department', '2015-03-05', 17, 'https://www.gutenberg.org/ebooks/48407', 'en', 4029), +(41672, 'Treasure Island', 'Stevenson, Robert Louis', '2007-12-01', 61, 'https://www.gutenberg.org/ebooks/23936', 'en', 759), +(41673, 'Mugby Junction', 'Dickens, Charles', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9720', 'en', 11497), +(41674, 'Orthodox Daily Prayers', 'Anonymous', '2011-01-16', 34, 'https://www.gutenberg.org/ebooks/34981', 'en', 15004), +(41675, 'Love Poems and Others', 'Lawrence, D. H. (David Herbert)', '2017-01-27', 91, 'https://www.gutenberg.org/ebooks/54058', 'en', 1594), +(41676, 'The Arian Controversy', 'Gwatkin, Henry Melvill', '2006-05-11', 24, 'https://www.gutenberg.org/ebooks/18377', 'en', 15005), +(41677, 'The Project Gutenberg Works of Hall Caine: An Index', 'Caine, Hall, Sir', '2009-07-17', 5, 'https://www.gutenberg.org/ebooks/29430', 'en', 198), +(41678, 'Creatures of the Abyss', 'Leinster, Murray', '2013-06-09', 61, 'https://www.gutenberg.org/ebooks/42901', 'en', 15006), +(41679, 'The Man Upstairs and Other Stories', 'Wodehouse, P. G. (Pelham Grenville)', '2004-10-01', 380, 'https://www.gutenberg.org/ebooks/6768', 'en', 72), +(41680, 'Rank and Talent; A Novel, Vol. 3 (of 3)', 'Scargill, William Pitt', '2017-06-07', 15, 'https://www.gutenberg.org/ebooks/54864', 'en', 45), +(41681, 'Saxe Holm\'s Stories\r\nFirst Series', 'Jackson, Helen Hunt', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/10926', 'en', 179), +(41682, 'English and Scottish Ballads, Volume 2 (of 8)', NULL, '2011-10-12', 26, 'https://www.gutenberg.org/ebooks/37738', 'en', 5478), +(41683, 'Whale Primer, with Special Attention to the California Gray Whale', 'Walker, Theodore J.', '2019-01-15', 16, 'https://www.gutenberg.org/ebooks/58695', 'en', 15007), +(41684, 'Lectures on Popular and Scientific Subjects', 'Caithness, James Sinclair, 14th earl of', '2005-03-26', 9, 'https://www.gutenberg.org/ebooks/15468', 'en', 814), +(41685, 'Young Medicine Man', 'Kroll, Francis Lynde', '2019-06-13', 52, 'https://www.gutenberg.org/ebooks/59747', 'en', 676), +(41686, 'The Knickerbocker, Vol. 10, No. 4, October 1837', 'Various', '2014-04-05', 11, 'https://www.gutenberg.org/ebooks/45318', 'en', 18), +(41687, 'A Select Collection of Old English Plays, Volume 14', NULL, '2010-08-10', 16, 'https://www.gutenberg.org/ebooks/33398', 'en', 1088), +(41688, 'The Aboriginal Population of the San Joaquin Valley, California', 'Cook, Sherburne Friend', '2012-02-05', 15, 'https://www.gutenberg.org/ebooks/38770', 'en', 15008), +(41689, 'Life in Southern Prisons\r\nFrom the Diary of Corporal Charles Smedley, of Company G, 90th Regiment Penn\'a Volunteers, Commencing a Few Days Before the \"Battle of the Wilderness\", In Which He Was Taken Prisoner ... Also, a Short Description of the March to and Battle of Gettysburg, Together with a Biographical Sketch of the Author', 'Smedley, Charles', '2019-08-10', 480, 'https://www.gutenberg.org/ebooks/60084', 'en', 2363), +(41690, 'The Rise of the Dutch Republic — Volume 03: 1555', 'Motley, John Lothrop', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/4803', 'en', 3372), +(41691, 'A Little Garden Calendar for Boys and Girls', 'Paine, Albert Bigelow', '2015-01-24', 34, 'https://www.gutenberg.org/ebooks/48063', 'en', 903), +(41692, 'The Note-Book of an Attaché: Seven Months in the War Zone', 'Wood, Eric Fisher', '2009-10-05', 19, 'https://www.gutenberg.org/ebooks/30179', 'en', 449), +(41693, 'Almayer\'s Folly', 'Conrad, Joseph', '2005-11-01', 8, 'https://www.gutenberg.org/ebooks/9344', 'en', 2815), +(41694, 'The Brand: A Tale of the Flathead Reservation', 'Broderick, Therese', '2014-12-30', 8, 'https://www.gutenberg.org/ebooks/47817', 'en', 15009), +(41695, 'Violets and Other Tales', 'Dunbar-Nelson, Alice Moore', '2006-06-29', 56, 'https://www.gutenberg.org/ebooks/18713', 'en', 20), +(41696, 'Who Goes There?\r\nThe Story of a Spy in the Civil War', 'Benson, B. K. (Blackwood Ketcham)', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/12229', 'en', 403), +(41697, 'Priscilla and Charybdis: A Story of Alternatives', 'Moore, Frank Frankfort', '2016-05-02', 10, 'https://www.gutenberg.org/ebooks/51972', 'en', 61), +(41698, 'Scientific American Supplement, No. 303, October 22, 1881', 'Various', '2005-06-01', 24, 'https://www.gutenberg.org/ebooks/8296', 'en', 210), +(41699, 'The Story of Scotch', 'Mills, Enos A.', '2013-04-18', 26, 'https://www.gutenberg.org/ebooks/42559', 'en', 15010), +(41700, 'Love and Lucy', 'Hewlett, Maurice', '2009-08-31', 25, 'https://www.gutenberg.org/ebooks/29868', 'en', 61), +(41701, 'Harper\'s Young People, November 11, 1879\nAn Illustrated Weekly', 'Various', '2009-02-25', 10, 'https://www.gutenberg.org/ebooks/28186', 'en', 479), +(41702, 'Memoria ácerca dos Portuguezes na Abyssinia', 'Soveral, Luiz Augusto Pinto Soveral, visconde de', '2010-01-12', 12, 'https://www.gutenberg.org/ebooks/30945', 'pt', 15011), +(41703, 'Ourika', 'Duras, Claire de Durfort, duchesse de', '2008-10-07', 82, 'https://www.gutenberg.org/ebooks/26820', 'fr', 2118), +(41704, 'Sattumuksia Jänislahdella', 'Meriläinen, Heikki', '2005-09-13', 13, 'https://www.gutenberg.org/ebooks/16689', 'fi', 61), +(41705, 'You Don\'t Make Wine Like the Greeks Did', 'Fisher, David E.', '2010-04-06', 30, 'https://www.gutenberg.org/ebooks/31897', 'en', 1061), +(41706, 'Orthodoxy: Its Truths And Errors', 'Clarke, James Freeman', '2009-06-06', 12, 'https://www.gutenberg.org/ebooks/29054', 'en', 2706), +(41707, 'The Cliff Climbers\nA Sequel to \"The Plant Hunters\"', 'Reid, Mayne', '2007-04-27', 44, 'https://www.gutenberg.org/ebooks/21239', 'en', 6772), +(41708, 'Bleedback', 'Marks, Winston K. (Winston Kinney)', '2019-04-21', 52, 'https://www.gutenberg.org/ebooks/59323', 'en', 26), +(41709, 'The Elixir', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5589', 'en', 803), +(41710, 'A Flower Wedding\nDescribed by Two Wallflowers', 'Crane, Walter', '2016-11-28', 35, 'https://www.gutenberg.org/ebooks/53619', 'en', 859), +(41711, 'The Second Thoughts of an Idle Fellow', 'Jerome, Jerome K. (Jerome Klapka)', '1999-10-01', 67, 'https://www.gutenberg.org/ebooks/1915', 'en', 1697), +(41712, 'Three Years in Europe: Places I Have Seen and People I Have Met', 'Brown, William Wells', '2005-05-15', 19, 'https://www.gutenberg.org/ebooks/15830', 'en', 2364), +(41713, 'The Battle of New Orleans\nincluding the Previous Engagements between the Americans\nand the British, the Indians and the Spanish which led to\nthe Final Conflict on the 8th of January, 1815', 'Smith, Z. F. (Zachariah Frederick)', '2008-06-05', 23, 'https://www.gutenberg.org/ebooks/25699', 'en', 15012), +(41714, 'Storm-Bound; or, A Vacation Among the Snow Drifts', 'Douglas, Alan, Captain', '2011-12-15', 15, 'https://www.gutenberg.org/ebooks/38314', 'en', 15013), +(41715, 'The Tragedy of Macbeth', 'Shakespeare, William', '1997-12-01', 106, 'https://www.gutenberg.org/ebooks/1129', 'en', 15014), +(41716, 'Town and Country; Or, Life at Home and Abroad, Without and Within Us', 'Adams, John S. (John Stowell)', '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/4669', 'en', 1426), +(41717, 'The Wheels of Time', 'Barclay, Florence L. (Florence Louisa)', '2018-04-11', 26, 'https://www.gutenberg.org/ebooks/56965', 'en', 1375), +(41718, 'Index of the Project Gutenberg Works of Lewis Carroll', 'Carroll, Lewis', '2019-03-22', 25, 'https://www.gutenberg.org/ebooks/59111', 'en', 198), +(41719, 'An Imperial Marriage', 'Marchmont, Arthur W.', '2012-09-18', 20, 'https://www.gutenberg.org/ebooks/40800', 'en', 48), +(41720, 'Auroræ: Their Characters and Spectra', 'Capron, J. Rand', '2017-12-10', 12, 'https://www.gutenberg.org/ebooks/56159', 'en', 15015), +(41721, 'Niece Catherine', 'Hampden, Mary', '2011-07-28', 10, 'https://www.gutenberg.org/ebooks/36880', 'en', 1001), +(41722, 'Monopolies and the People', 'Baker, Charles Whiting', '2007-06-14', 19, 'https://www.gutenberg.org/ebooks/21837', 'en', 15016), +(41723, 'Der Untertan', 'Mann, Heinrich', '2011-11-24', 127, 'https://www.gutenberg.org/ebooks/38126', 'de', 15017), +(41724, 'The Adventures of Chatterer the Red Squirrel', 'Burgess, Thornton W. (Thornton Waldo)', '2011-11-07', 42, 'https://www.gutenberg.org/ebooks/37952', 'en', 15018), +(41725, 'Woodcraft', 'Sears, George Washington', '2008-02-11', 50, 'https://www.gutenberg.org/ebooks/24579', 'en', 2155), +(41726, 'On the Eve: A Novel', 'Turgenev, Ivan Sergeevich', '2004-11-01', 35, 'https://www.gutenberg.org/ebooks/6902', 'en', 85), +(41727, 'An Expository Outline of the \"Vestiges of the Natural History of Creation\"\nWith a Notice of the Author\'s \"Explanations:\" A Sequel to the Vestiges', 'Laing, S. (Samuel)', '2006-06-06', 11, 'https://www.gutenberg.org/ebooks/18521', 'en', 15019), +(41728, 'The Boy Scouts Down in Dixie; or, The Strange Secret of Alligator Swamp', 'Carter, Herbert, active 1909-1917', '2015-02-13', 9, 'https://www.gutenberg.org/ebooks/48251', 'en', 1002), +(41729, 'Queen Mary; and, Harold', 'Tennyson, Alfred Tennyson, Baron', '2005-10-01', 44, 'https://www.gutenberg.org/ebooks/9176', 'en', 402), +(41730, 'The Ultimate Criminal', 'Grimké, Archibald Henry', '2010-02-17', 14, 'https://www.gutenberg.org/ebooks/31299', 'en', 180), +(41731, 'An Illustrated Account of St. Bartholomew\'s Priory Church, Smithfield\r\nWith a Sketch of Bartholomew Fair, St. Bartholomew\'s Hospital, and the Prior\'s Country Seat, Canonbury Tower, Islington', 'Normanus', '2015-07-06', 6, 'https://www.gutenberg.org/ebooks/49383', 'en', 15020), +(41732, 'Appletons\' Popular Science Monthly, May, 1900\nVol. 57, May, 1900 to October, 1900', 'Various', '2014-10-28', 15, 'https://www.gutenberg.org/ebooks/47219', 'en', 352), +(41733, 'The New York Subway, Its Construction and Equipment', 'Interborough Rapid Transit Company', '2006-01-21', 25, 'https://www.gutenberg.org/ebooks/17569', 'en', 15021), +(41734, 'Cliff Castles and Cave Dwellings of Europe', 'Baring-Gould, S. (Sabine)', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8898', 'en', 15022), +(41735, 'Thurston of Orchard Valley', 'Bindloss, Harold', '2009-06-28', 22, 'https://www.gutenberg.org/ebooks/29266', 'en', 551), +(41736, 'The Rising of the Red Man\nA Romance of the Louis Riel Rebellion', 'Mackie, John', '2004-07-06', 8, 'https://www.gutenberg.org/ebooks/12827', 'en', 6566), +(41737, 'Clinical Investigations on Squint', 'Schweigger, C.', '2011-03-20', 15, 'https://www.gutenberg.org/ebooks/35639', 'en', 15023), +(41738, 'Stille Welten: Neue Stimmungen aus Dingsda', 'Schlaf, Johannes', '2015-01-27', 15, 'https://www.gutenberg.org/ebooks/48097', 'de', 422), +(41739, 'Marquise De Ganges\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 29, 'https://www.gutenberg.org/ebooks/2758', 'en', 5050); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(41740, 'Mary of Burgundy; or, The Revolt of Ghent', 'James, G. P. R. (George Payne Rainsford)', '2016-01-06', 14, 'https://www.gutenberg.org/ebooks/50854', 'en', 15024), +(41741, 'The Battle of the Books, and other Short Pieces', 'Swift, Jonathan', '1996-08-01', 295, 'https://www.gutenberg.org/ebooks/623', 'en', 1971), +(41742, 'Biblia Sacra Vulgata - Psalmi XXII', 'Anonymous', '2006-10-28', 23, 'https://www.gutenberg.org/ebooks/19635', 'la', 11169), +(41743, 'Voyage en Orient, Volume 1: Les femmes de Caire; Druses et Maronites', 'Nerval, Gérard de', '2014-09-22', 29, 'https://www.gutenberg.org/ebooks/46931', 'fr', 15025), +(41744, 'The World English Bible (WEB): Habakkuk', 'Anonymous', '2005-06-01', 16, 'https://www.gutenberg.org/ebooks/8262', 'en', 1610), +(41745, 'Two Women or One? From the Mss. of Dr. Leonard Benary', 'Harland, Henry', '2016-05-03', 11, 'https://www.gutenberg.org/ebooks/51986', 'en', 7142), +(41746, 'Remarks upon the First Report of the Royal Commission on Ritual in connection with the integrity of the Book of Common Prayer\r\nA lecture delivered at the Annual Meeting of the Brighton Branch of the English Church Union, Nov. 27, 1867', 'Mayow, Mayow Wynell', '2015-06-05', 5, 'https://www.gutenberg.org/ebooks/49145', 'en', 15026), +(41747, 'A Solemn Caution Against the Ten Horns of Calvinism', 'Taylor, Thomas', '2009-02-24', 10, 'https://www.gutenberg.org/ebooks/28172', 'en', 15027), +(41748, 'Hawkins Electrical Guide v. 08 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-09-28', 22, 'https://www.gutenberg.org/ebooks/50068', 'en', 1863), +(41749, 'The Voyage of the Aurora', 'Collingwood, Harry', '2009-01-27', 12, 'https://www.gutenberg.org/ebooks/27906', 'en', 3535), +(41750, 'La troisième jeunesse de Madame Prune', 'Loti, Pierre', '2010-04-02', 74, 'https://www.gutenberg.org/ebooks/31863', 'fr', 775), +(41751, 'O Pioneers!', 'Cather, Willa', '2007-09-01', 4, 'https://www.gutenberg.org/ebooks/22448', 'en', 1569), +(41752, 'The Master of Stair', 'Bowen, Marjorie', '2015-09-15', 17, 'https://www.gutenberg.org/ebooks/49979', 'en', 15028), +(41753, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 11\nMasterpieces of German Literature Translated Into English', NULL, '2014-05-27', 23, 'https://www.gutenberg.org/ebooks/45788', 'en', 652), +(41754, 'The Frontiers of Language and Nationality in Europe', 'Dominian, Leon', '2018-10-30', 30, 'https://www.gutenberg.org/ebooks/58205', 'en', 11831), +(41755, 'May Iverson\'s Career', 'Jordan, Elizabeth Garver', '2012-11-09', 37, 'https://www.gutenberg.org/ebooks/41328', 'en', 48), +(41756, 'Encyclopaedia Britannica, 11th Edition, \"Hinduism\" to \"Home, Earls of\"\r\nVolume 13, Slice 5', 'Various', '2012-03-23', 37, 'https://www.gutenberg.org/ebooks/39232', 'en', 1081), +(41757, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 403, December 5, 1829', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11458', 'en', 133), +(41758, 'Fairy Tales Every Child Should Know', NULL, '2005-02-05', 300, 'https://www.gutenberg.org/ebooks/14916', 'en', 1007), +(41759, 'The Irish Ecclesiastical Record, Volume 1, August 1865', NULL, '2010-09-12', 12, 'https://www.gutenberg.org/ebooks/33708', 'en', 96), +(41760, 'Mene tekel! Eine Entdeckungsreise nach Europa', 'Passer, Arnold von der', '2018-04-17', 18, 'https://www.gutenberg.org/ebooks/56991', 'de', 1483), +(41761, 'Martine\'s Hand-book of Etiquette, and Guide to True Politeness', 'Martine, Arthur', '2011-05-06', 64, 'https://www.gutenberg.org/ebooks/36048', 'en', 788), +(41762, 'Friar Tuck\r\nBeing the Chronicles of the Reverend John Carmichael, of Wyoming, U. S. A.', 'Wason, Robert Alexander', '2013-01-27', 9, 'https://www.gutenberg.org/ebooks/41926', 'en', 55), +(41763, 'The Pastime of Pleasure: An Allegorical Poem', 'Hawes, Stephen', '2018-10-05', 13, 'https://www.gutenberg.org/ebooks/58037', 'en', 466), +(41764, 'Belarmino y Apolonio', 'Pérez de Ayala, Ramón', '2004-12-10', 31, 'https://www.gutenberg.org/ebooks/14318', 'es', 1813), +(41765, 'Harper\'s Round Table, May 19, 1896', 'Various', '2018-09-04', 3, 'https://www.gutenberg.org/ebooks/57843', 'en', 668), +(41766, 'Charlie', 'Vandérem, Fernand', '2013-12-19', 8, 'https://www.gutenberg.org/ebooks/44468', 'fr', 298), +(41767, 'A Girl in Spring-Time', 'Vaizey, George de Horne, Mrs.', '2011-07-27', 49, 'https://www.gutenberg.org/ebooks/36874', 'en', 195), +(41768, 'Women Painters of the World\nFrom the Time of Caterina Vigri, 1413-1463, to Rosa Bonheur and the Present Day', NULL, '2012-03-23', 58, 'https://www.gutenberg.org/ebooks/39000', 'en', 2227), +(41769, 'The Rose of Old St. Louis', 'Dillon, Mary (Mary C. Johnson)', '2007-03-26', 16, 'https://www.gutenberg.org/ebooks/20911', 'en', 15029), +(41770, 'Les poésies de Sapho de Lesbos', 'Sappho', '2008-11-21', 41, 'https://www.gutenberg.org/ebooks/27308', 'fr', 15030), +(41771, 'The King\'s Jackal', 'Davis, Richard Harding', '1996-01-01', 6, 'https://www.gutenberg.org/ebooks/411', 'en', 313), +(41772, 'Villette', 'Brontë, Charlotte', '2005-10-01', 561, 'https://www.gutenberg.org/ebooks/9182', 'en', 957), +(41773, 'The Bible, King James version, Book 50: Philippians', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8050', 'en', 15031), +(41774, 'Radioisotopes in Medicine', 'Phelan, Earl W.', '2015-07-06', 26, 'https://www.gutenberg.org/ebooks/49377', 'en', 15032), +(41775, 'Speed the Plough\nA Comedy, In Five Acts; As Performed At The Theatre Royal, Covent Garden', 'Morton, Thomas', '2006-09-29', 26, 'https://www.gutenberg.org/ebooks/19407', 'en', 1088), +(41776, 'Hellenism in Asia Minor', 'Dieterich, Karl', '2017-10-10', 23, 'https://www.gutenberg.org/ebooks/55728', 'en', 15033), +(41777, 'Melody : The Story of a Child', 'Richards, Laura Elizabeth Howe', '2005-04-01', 9, 'https://www.gutenberg.org/ebooks/7824', 'en', 751), +(41778, 'Perzië, Chaldea en Susiane\r\nDe Aarde en haar Volken, 1885-1887', 'Dieulafoy, Jane', '2004-10-31', 14, 'https://www.gutenberg.org/ebooks/13901', 'nl', 15034), +(41779, 'Birdseye Views of Far Lands', 'Nichols, James T. (James Thomas)', '2009-03-16', 12, 'https://www.gutenberg.org/ebooks/28340', 'en', 885), +(41780, 'Redemption', 'Hoare, Edward', '2016-03-07', 6, 'https://www.gutenberg.org/ebooks/51388', 'en', 15035), +(41781, 'The Old Game\nA Retrospect after Three and a Half Years on the Water-wagon', 'Blythe, Samuel G. (Samuel George)', '2009-07-02', 15, 'https://www.gutenberg.org/ebooks/29292', 'en', 6241), +(41782, 'A Collection of Scotch Proverbs', 'Stampoy, Pappity', '2004-12-01', 20, 'https://www.gutenberg.org/ebooks/7018', 'en', 13542), +(41783, 'Harper\'s Round Table, July 7, 1896', 'Various', '2018-12-11', 2, 'https://www.gutenberg.org/ebooks/58453', 'en', 668), +(41784, 'The history of Company C, Seventh Regiment, O.V.I', 'Wilder, Theodore', '2010-09-29', 14, 'https://www.gutenberg.org/ebooks/33962', 'en', 1489), +(41785, 'Historic Tales: The Romance of Reality. Vol. 09 (of 15), Scandinavian', 'Morris, Charles', '2007-02-09', 17, 'https://www.gutenberg.org/ebooks/20549', 'en', 6847), +(41786, 'Poemas', 'Poe, Edgar Allan', '2008-06-16', 299, 'https://www.gutenberg.org/ebooks/25807', 'es', 15036), +(41787, 'The inner house', 'Besant, Walter', '2016-05-27', 19, 'https://www.gutenberg.org/ebooks/52169', 'en', 509), +(41788, 'Brain Teaser', 'Godwin, Tom', '2019-05-23', 93, 'https://www.gutenberg.org/ebooks/59581', 'en', 4350), +(41789, 'Armenia and the War', 'Hacobian, A. P. (Avetoon Pesak)', '2017-01-04', 22, 'https://www.gutenberg.org/ebooks/53887', 'en', 15037), +(41790, 'Die neuesten Geschichtslügen', 'Kanner, Heinrich', '2014-02-05', 10, 'https://www.gutenberg.org/ebooks/44830', 'de', 4773), +(41791, 'Macmillan & Co.\'s Catalogue. April 1888\r\nOf Works in Belles Lettres, Including Poetry, Fiction, Etc.', 'Macmillan & Co.', '2012-04-17', 6, 'https://www.gutenberg.org/ebooks/39464', 'en', 2663), +(41792, 'Perijätär', 'Balzac, Honoré de', '2016-09-02', 5, 'https://www.gutenberg.org/ebooks/52955', 'fi', 1850), +(41793, '\"The Ladies\": A Shining Constellation of Wit and Beauty', 'Beck, L. Adams (Lily Adams)', '2005-07-01', 27, 'https://www.gutenberg.org/ebooks/8434', 'en', 179), +(41794, 'Les misères de Londres, 2. L\'enfant perdu', 'Ponson du Terrail', '2005-10-07', 22, 'https://www.gutenberg.org/ebooks/16817', 'fr', 61), +(41795, 'A Trip to the Orient: The Story of a Mediterranean Cruise', 'Jacob, Robert Urie', '2010-03-12', 12, 'https://www.gutenberg.org/ebooks/31609', 'en', 2204), +(41796, 'Fifteen Hundred Miles an Hour', 'Dixon, Charles', '2015-08-16', 19, 'https://www.gutenberg.org/ebooks/49713', 'en', 5077), +(41797, 'Little Alice\'s Palace\nor, The Sunny Heart', 'Anonymous', '2006-08-16', 9, 'https://www.gutenberg.org/ebooks/19063', 'en', 15038), +(41798, 'The Backwoods of Canada\r\nBeing Letters from the Wife of an Emigrant Officer, Illustrative of the Domestic Economy of British America', 'Traill, Catharine Parr Strickland', '2004-09-30', 78, 'https://www.gutenberg.org/ebooks/13559', 'en', 2655), +(41799, 'The Hawthorne: A Christmas and New Years Present', NULL, '2013-07-16', 20, 'https://www.gutenberg.org/ebooks/43229', 'en', 388), +(41800, 'The Brochure Series of Architectural Illustration, vol. 06, No. 03, March 1900\r\nSpanish Wrought-Iron Screens; XII. Century Capitals from the Benedictine Monastery, Monreale', 'Various', '2014-12-17', 18, 'https://www.gutenberg.org/ebooks/47689', 'en', 2140), +(41801, 'The Idle Thoughts of an Idle Fellow', 'Jerome, Jerome K. (Jerome Klapka)', '1997-03-01', 315, 'https://www.gutenberg.org/ebooks/849', 'en', 20), +(41802, 'In the High Valley\nBeing the fifth and last volume of the Katy Did series', 'Coolidge, Susan', '2009-05-08', 89, 'https://www.gutenberg.org/ebooks/28724', 'en', 246), +(41803, 'On the Relations of Man to the Lower Animals', 'Huxley, Thomas Henry', '2001-11-01', 17, 'https://www.gutenberg.org/ebooks/2932', 'en', 7033), +(41804, 'Arohanui: Letters from Shoghi Effendi to New Zealand', 'Shoghi, Effendi', '2006-09-15', 10, 'https://www.gutenberg.org/ebooks/19251', 'en', 15039), +(41805, 'The Blue Bird: A Fairy Play in Six Acts', 'Maeterlinck, Maurice', '2005-08-01', 110, 'https://www.gutenberg.org/ebooks/8606', 'en', 1234), +(41806, 'Ten Dollars Enough: Keeping House Well on Ten Dollars a Week\r\nHow It Has Been Done; How It May Be Done Again', 'Owen, Catherine', '2015-07-25', 41, 'https://www.gutenberg.org/ebooks/49521', 'en', 3407), +(41807, 'Midnight In Beauchamp Row\n1895', 'Green, Anna Katharine', '2007-09-29', 25, 'https://www.gutenberg.org/ebooks/22810', 'en', 11815), +(41808, 'Anecdotes of Painters, Engravers, Sculptors and Architects and Curiosities of Art (Vol. 3 of 3)', 'Spooner, Shearjashub', '2006-05-12', 25, 'https://www.gutenberg.org/ebooks/18383', 'en', 9722), +(41809, 'Whispering Walls', 'Wirt, Mildred A. (Mildred Augustine)', '2011-01-15', 26, 'https://www.gutenberg.org/ebooks/34975', 'en', 557), +(41810, 'Webster\'s Unabridged Dictionary (1st 100 Pages)', 'Webster, Noah', '1995-04-01', 367, 'https://www.gutenberg.org/ebooks/247', 'en', 1481), +(41811, 'The Iris: An Illuminated Souvenir for MDCCCLII', NULL, '2017-11-12', 9, 'https://www.gutenberg.org/ebooks/55942', 'en', 5428), +(41812, 'Liisan seikkailut ihmemaassa', 'Carroll, Lewis', '2014-08-12', 35, 'https://www.gutenberg.org/ebooks/46569', 'fi', 580), +(41813, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1877-05/06)', NULL, '2005-07-06', 13, 'https://www.gutenberg.org/ebooks/16219', 'pt', 11748), +(41814, 'The Saracen: The Holy War', 'Shea, Robert', '2009-04-06', 41, 'https://www.gutenberg.org/ebooks/28516', 'en', 98), +(41815, 'The Law Inevitable', 'Couperus, Louis', '2013-09-27', 11, 'https://www.gutenberg.org/ebooks/43827', 'en', 10796), +(41816, 'Wilson\'s Tales of the Borders and of Scotland, Volume 12', NULL, '2010-10-27', 9, 'https://www.gutenberg.org/ebooks/34149', 'en', 3672), +(41817, 'Nuoren miehen kädestä: Kokoelma mielialoja', 'Kianto, Ilmari', '2017-06-11', 8, 'https://www.gutenberg.org/ebooks/54890', 'fi', 175), +(41818, 'The Lion and the Mouse; a Story of an American Life', 'Hornblow, Arthur', '2004-02-01', 47, 'https://www.gutenberg.org/ebooks/5119', 'en', 15040), +(41819, 'The Restless Sex', 'Chambers, Robert W. (Robert William)', '2016-10-15', 25, 'https://www.gutenberg.org/ebooks/53289', 'en', 1516), +(41820, 'Histoire de la caricature au moyen âge et sous la renaissance', 'Champfleury', '2019-01-09', 22, 'https://www.gutenberg.org/ebooks/58661', 'fr', 15041), +(41821, 'U.S. Copyright Renewals 1950 - 1977', 'Library of Congress. Copyright Office', '2004-03-01', 28, 'https://www.gutenberg.org/ebooks/11800', 'en', 4170), +(41822, 'Lucian\'s Dialogues prepared for schools', 'Lucian, of Samosata', '2018-08-02', 33, 'https://www.gutenberg.org/ebooks/57629', 'el', 15042), +(41823, 'The History of Don Quixote, Volume 2, Part 22', 'Cervantes Saavedra, Miguel de', '2004-07-22', 1, 'https://www.gutenberg.org/ebooks/5925', 'en', 3761), +(41824, 'Maximilian, Prince of Wied\'s, Travels in the Interior of North America, 1832-1834, part 1', 'Wied, Maximilian, Prinz von', '2012-02-07', 29, 'https://www.gutenberg.org/ebooks/38784', 'en', 869), +(41825, 'The Square Book of Animals', 'Waugh, Arthur', '2012-05-08', 7, 'https://www.gutenberg.org/ebooks/39656', 'en', 15043), +(41826, 'I ladri della pace', 'Bianchi, Arturo', '2008-04-28', 15, 'https://www.gutenberg.org/ebooks/25209', 'it', 860), +(41827, 'Narrative of a Voyage to the West Indies and Mexico in the Years 1599-1602', 'Champlain, Samuel de', '2011-05-28', 29, 'https://www.gutenberg.org/ebooks/36242', 'en', 15044), +(41828, 'The Sentimentalists', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4497', 'en', 5266), +(41829, 'Marie-Louise et la cour d\'Autriche entre les deux abdications (1814-1815)', 'Méneval, Claude-François, baron de', '2016-08-02', 5, 'https://www.gutenberg.org/ebooks/52707', 'fr', 15045), +(41830, 'Venetië\r\nDe Aarde en haar Volken, 1865', 'Anonymous', '2004-11-22', 36, 'https://www.gutenberg.org/ebooks/14112', 'nl', 592), +(41831, 'The Boy Scouts on the Trail', 'Durston, George', '2007-01-10', 14, 'https://www.gutenberg.org/ebooks/20327', 'en', 1002), +(41832, 'My Memoirs', 'Steinheil, Marguerite', '2011-09-11', 23, 'https://www.gutenberg.org/ebooks/37390', 'en', 15046), +(41833, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 03', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5545', 'en', 803), +(41834, 'John Leech\'s Pictures of Life and Character, Volume 2 (of 3)\r\nFrom the Collection of \"Mr. Punch\"', 'Leech, John', '2014-01-14', 3, 'https://www.gutenberg.org/ebooks/44662', 'en', 2965), +(41835, 'The Skating Party and Other Stories', 'Unknown', '2008-05-31', 9, 'https://www.gutenberg.org/ebooks/25655', 'en', 388), +(41836, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 406, December 26, 1829', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11460', 'en', 133), +(41837, 'Selections from the Prose Writings of John Henry Cardinal Newman\nFor the Use of Schools', 'Newman, John Henry', '2012-11-07', 57, 'https://www.gutenberg.org/ebooks/41310', 'en', 5270), +(41838, 'Lycanthropus', 'Bolen, C. Edgar', '2010-09-14', 14, 'https://www.gutenberg.org/ebooks/33730', 'en', 15047), +(41839, 'The Juvenile Scrap-book for 1849\nA Christmas and New Year\'s present for young people', NULL, '2018-06-04', 12, 'https://www.gutenberg.org/ebooks/57275', 'en', 5428), +(41840, 'The South of France—East Half', 'Black, C. B.', '2008-03-09', 13, 'https://www.gutenberg.org/ebooks/24787', 'en', 15048), +(41841, 'The Ground Plan of the English Parish Church', 'Thompson, A. Hamilton (Alexander Hamilton)', '2008-10-30', 14, 'https://www.gutenberg.org/ebooks/27102', 'en', 15049), +(41842, 'Milly and Olly', 'Ward, Humphry, Mrs.', '2004-08-31', 10, 'https://www.gutenberg.org/ebooks/13337', 'en', 15050), +(41843, 'Shaman', 'Shea, Robert', '2009-05-27', 61, 'https://www.gutenberg.org/ebooks/28976', 'en', 15051), +(41844, 'The Tale of Reddy Woodpecker', 'Bailey, Arthur Scott', '2013-08-11', 18, 'https://www.gutenberg.org/ebooks/43447', 'en', 195), +(41845, 'Celebrated Crimes (Complete)', 'Dumas, Alexandre', '2004-09-22', 229, 'https://www.gutenberg.org/ebooks/2760', 'en', 5050), +(41846, 'The Red Flower: Poems Written in War Time', 'Van Dyke, Henry', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9388', 'en', 2100), +(41847, 'In the School-Room: Chapters in the Philosophy of Education', 'Hart, John S. (John Seely)', '2010-01-25', 66, 'https://www.gutenberg.org/ebooks/31067', 'en', 341), +(41848, 'The Last Call: A Romance (Vol. 1 of 3)', 'Dowling, Richard', '2013-04-26', 5, 'https://www.gutenberg.org/ebooks/42595', 'en', 109), +(41849, 'Leven en streven van L. R. Koolemans Beynen', 'Boissevain, Charles', '2017-09-10', 6, 'https://www.gutenberg.org/ebooks/55522', 'nl', 15052), +(41850, 'Bouvard and Pécuchet: A Tragi-comic Novel of Bourgeois Life, part 2', 'Flaubert, Gustave', '2014-09-20', 17, 'https://www.gutenberg.org/ebooks/46909', 'en', 607), +(41851, 'Lady Daisy, and Other Stories', 'Stewart, Caroline', '2010-12-01', 12, 'https://www.gutenberg.org/ebooks/34515', 'en', 179), +(41852, 'Mademoiselle de Maupin, Volume 1 (of 2)', 'Gautier, Théophile', '2015-05-08', 53, 'https://www.gutenberg.org/ebooks/48893', 'en', 58), +(41853, 'The Sea-girt Fortress: A Story of Heligoland', 'Westerman, Percy F. (Percy Francis)', '2015-09-24', 20, 'https://www.gutenberg.org/ebooks/50050', 'en', 14039), +(41854, 'Memoir of Jane Austen', 'Austen-Leigh, James Edward', '2006-02-19', 134, 'https://www.gutenberg.org/ebooks/17797', 'en', 5826), +(41855, 'Mystery Ranch', 'Chapman, Arthur', '2010-01-16', 11, 'https://www.gutenberg.org/ebooks/30989', 'en', 128), +(41856, 'Sermons Preached at Brighton\nThird Series', 'Robertson, Frederick William', '2005-09-04', 45, 'https://www.gutenberg.org/ebooks/16645', 'en', 2386), +(41857, 'History of Greece, Volume 09 (of 12)', 'Grote, George', '2016-02-11', 12, 'https://www.gutenberg.org/ebooks/51182', 'en', 6424), +(41858, 'Old Court Life in Spain, vol. 2/2', 'Elliot, Frances Minto Dickinson', '2015-09-11', 9, 'https://www.gutenberg.org/ebooks/49941', 'en', 11), +(41859, 'Black Bass\nWhere to catch them in quantity within an hour\'s ride from New York', 'Bradford, Charles Barker', '2009-06-11', 18, 'https://www.gutenberg.org/ebooks/29098', 'en', 15053), +(41860, 'The Bell Tone', 'Leftwich, Edmund Harry', '2007-08-31', 37, 'https://www.gutenberg.org/ebooks/22470', 'en', 26), +(41861, 'Memories of Canada and Scotland — Speeches and Verses', 'Argyll, John Douglas Sutherland Campbell, Duke of', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7212', 'en', 11871), +(41862, 'Romantische Lieder', 'Hesse, Hermann', '2014-06-29', 52, 'https://www.gutenberg.org/ebooks/46135', 'de', 8), +(41863, 'Ned in the Block-House: A Tale of Early Days in the West', 'Ellis, Edward Sylvester', '2013-09-09', 14, 'https://www.gutenberg.org/ebooks/43675', 'en', 1259), +(41864, 'Thankful\'s Inheritance', 'Lincoln, Joseph Crosby', '2006-05-18', 32, 'https://www.gutenberg.org/ebooks/2552', 'en', 4013), +(41865, 'Mark Mason\'s Victory', 'Alger, Horatio, Jr.', '2010-01-04', 16, 'https://www.gutenberg.org/ebooks/30387', 'en', 1001), +(41866, '綠牡丹', 'Anonymous', '2008-11-26', 15, 'https://www.gutenberg.org/ebooks/27330', 'zh', NULL), +(41867, 'The Magic Egg, and Other Stories', 'Stockton, Frank Richard', '1996-02-01', 39, 'https://www.gutenberg.org/ebooks/429', 'en', 770), +(41868, 'Memoirs of Margaret Fuller Ossoli, Volume I', 'Fuller, Margaret', '2004-08-03', 37, 'https://www.gutenberg.org/ebooks/13105', 'en', 131), +(41869, 'Suppressed Plates, Wood-engravings, &c.\r\nTogether with Other Curiosities Germane Thereto; Being an Account of Certain Matters Peculiarly Alluring to the Collector', 'Layard, George Somes', '2017-10-08', 20, 'https://www.gutenberg.org/ebooks/55710', 'en', 2854), +(41870, 'The Hunchback', 'Knowles, James Sheridan', '2002-10-01', 18, 'https://www.gutenberg.org/ebooks/3480', 'en', 5266), +(41871, 'Expositions of Holy Scripture\r\nDeuteronomy, Joshua, Judges, Ruth, and First Book of Samuel, Second Samuel, First Kings, and Second Kings chapters I to VII', 'Maclaren, Alexander', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8068', 'en', 10736), +(41872, 'The Educated Negro and His Mission\nThe American Negro Academy. Occasional Papers No. 8', 'Scarborough, W. S. (William Sanders)', '2010-02-11', 23, 'https://www.gutenberg.org/ebooks/31255', 'en', 2222), +(41873, 'Too Old for Dolls: A Novel', 'Ludovici, Anthony M. (Anthony Mario)', '2009-03-21', 37, 'https://www.gutenberg.org/ebooks/28378', 'en', 95), +(41874, 'The Ultimate Weapon', 'Campbell, John W., Jr. (John Wood)', '2007-12-10', 164, 'https://www.gutenberg.org/ebooks/23790', 'en', 26), +(41875, 'Wild Kitty', 'Meade, L. T.', '2006-02-01', 55, 'https://www.gutenberg.org/ebooks/9986', 'en', 15054), +(41876, 'Ferragus eli Salaliittolaisten päällikkö', 'Balzac, Honoré de', '2015-10-20', 4, 'https://www.gutenberg.org/ebooks/50262', 'fi', 1850), +(41877, 'Scientific American Supplement, No. 484, April 11, 1885', 'Various', '2004-11-03', 29, 'https://www.gutenberg.org/ebooks/13939', 'en', 210), +(41878, 'A Sketch of the Life and Labors of George Whitefield', 'Ryle, J. C. (John Charles)', '2010-12-22', 9, 'https://www.gutenberg.org/ebooks/34727', 'en', 7984), +(41879, 'Louis Agassiz as a Teacher; illustrative extracts on his method of instruction', 'Cooper, Lane', '2004-12-01', 4, 'https://www.gutenberg.org/ebooks/7020', 'en', 15055), +(41880, 'Memoiren einer Grossmutter, Band II\nBilder aus der Kulturgeschichte der Juden Russlands im 19. Jahrhundert', 'Wengeroff, Pauline', '2014-07-17', 11, 'https://www.gutenberg.org/ebooks/46307', 'de', 15056), +(41881, 'Weymouth New Testament in Modern Speech, Revelation', 'Weymouth, Richard Francis', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8854', 'en', 5644), +(41882, 'Florence and Northern Tuscany with Genoa\r\nWith Sixteen Illustrations in Colour by William Parkinson and Sixteen Other Illustrations, Second Edition', 'Hutton, Edward', '2005-08-08', 32, 'https://www.gutenberg.org/ebooks/16477', 'en', 12048), +(41883, 'L\'Innocente', 'D\'Annunzio, Gabriele', '2007-09-16', 55, 'https://www.gutenberg.org/ebooks/22642', 'it', 860), +(41884, 'Thalaba the Destroyer', 'Southey, Robert', '2012-05-26', 49, 'https://www.gutenberg.org/ebooks/39804', 'en', 54), +(41885, 'Wide Awake Magazine, Volume 4, Number 3, January 10, 1916', 'Various', '2016-07-09', 9, 'https://www.gutenberg.org/ebooks/52535', 'en', 15057), +(41886, 'Jack Ranger\'s Gun Club; Or, From Schoolroom to Camp and Trail', 'Young, Clarence', '2014-05-04', 15, 'https://www.gutenberg.org/ebooks/45582', 'en', 323), +(41887, 'Kertovaisia runoelmia: Alkuperäisiä', 'Various', '2011-05-09', 22, 'https://www.gutenberg.org/ebooks/36070', 'fi', 8), +(41888, 'Life\'s Handicap: Being Stories of Mine Own People', 'Kipling, Rudyard', '2004-05-01', 76, 'https://www.gutenberg.org/ebooks/5777', 'en', 6015), +(41889, 'The World\'s Great Sermons, Volume 09: Cuyler to Van Dyke', NULL, '2013-12-17', 14, 'https://www.gutenberg.org/ebooks/44450', 'en', 3021), +(41890, 'Landscape and Song', NULL, '2004-12-10', 45, 'https://www.gutenberg.org/ebooks/14320', 'en', 8), +(41891, 'A Short History of the 6th Division: Aug. 1914-March 1919', NULL, '2006-12-15', 33, 'https://www.gutenberg.org/ebooks/20115', 'en', 15058), +(41892, 'Rayton: A Backwoods Mystery', 'Goodridge Roberts, Theodore', '2012-10-21', 12, 'https://www.gutenberg.org/ebooks/41122', 'en', 61), +(41893, 'One dialogue, or Colloquye of Erasmus (entituled Diuersoria)\r\nTranslated oute of Latten into Englyshe: And Imprinted, to the ende that the Judgement of the Learned maye be hadde before the Translator procede in the reste.', 'Erasmus, Desiderius', '2012-03-03', 20, 'https://www.gutenberg.org/ebooks/39038', 'en', 3806), +(41894, 'A Big Temptation', 'Meade, L. T.', '2008-05-14', 15, 'https://www.gutenberg.org/ebooks/25467', 'en', 388), +(41895, 'The Boy Volunteers on the Belgian Front', 'Ward, Kenneth', '2017-12-17', 6, 'https://www.gutenberg.org/ebooks/56195', 'en', 2564), +(41896, 'Notes and Queries, Number 08, December 22, 1849', 'Various', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11652', 'en', 105), +(41897, 'Only an Incident', 'Litchfield, Grace Denio', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10780', 'en', 770), +(41898, 'Captain Billy\'s Whiz Bang, Vol. 2, No. 20, May, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2018-04-25', 15, 'https://www.gutenberg.org/ebooks/57047', 'en', 372), +(41899, 'Battery D First Rhode Island Light Artillery in the Civil War', 'Sumner, George C.', '2019-02-05', 4, 'https://www.gutenberg.org/ebooks/58833', 'en', 1489), +(41900, 'My Knitting Book', 'Lambert, Miss (F.)', '2010-08-22', 122, 'https://www.gutenberg.org/ebooks/33502', 'en', 948), +(41901, 'Little Novels of Italy', 'Hewlett, Maurice', '2007-03-29', 27, 'https://www.gutenberg.org/ebooks/20929', 'en', 6658), +(41902, 'Frank Reade, Jr., Fighting the Terror of the Coast', 'Senarens, Luis', '2017-08-17', 15, 'https://www.gutenberg.org/ebooks/55374', 'en', 323), +(41903, 'Unterm Birnbaum', 'Fontane, Theodor', '2008-09-21', 76, 'https://www.gutenberg.org/ebooks/26686', 'de', 7597), +(41904, 'Ο αρχαιολόγος', 'Karkavitsas, Andreas', '2010-03-13', 10, 'https://www.gutenberg.org/ebooks/31631', 'el', 1348), +(41905, 'English Economic History: Select Documents', NULL, '2013-07-13', 16, 'https://www.gutenberg.org/ebooks/43211', 'en', 13326), +(41906, 'The Tale of Balen', 'Swinburne, Algernon Charles', '2000-04-01', 34, 'https://www.gutenberg.org/ebooks/2136', 'en', 532), +(41907, 'The Flower Basket\nA Fairy Tale', 'Unknown', '2009-01-09', 9, 'https://www.gutenberg.org/ebooks/27754', 'en', 1007), +(41908, 'Cane', 'Toomer, Jean', '2019-08-12', 1250, 'https://www.gutenberg.org/ebooks/60093', 'en', 1958), +(41909, 'Growing Nuts in the North\r\nA Personal Story of the Author\'s Experience of 33 Years with Nut Culture in Minnesota and Wisconsin', 'Weschcke, Carl', '2006-04-17', 26, 'https://www.gutenberg.org/ebooks/18189', 'en', 15059), +(41910, 'Browning as a Philosophical and Religious Teacher', 'Jones, Henry, Sir', '2004-09-30', 10, 'https://www.gutenberg.org/ebooks/13561', 'en', 3738), +(41911, 'Frank Merriwell, Junior\'s, Golden Trail; Or, The Fugitive Professor', 'Standish, Burt L.', '2006-11-19', 24, 'https://www.gutenberg.org/ebooks/19867', 'en', 3242), +(41912, 'Mattie:—A Stray (Vol 2 of 3)', 'Robinson, F. W. (Frederick William)', '2011-02-15', 12, 'https://www.gutenberg.org/ebooks/35291', 'en', 137), +(41913, 'Psyche', 'Molière', '2005-02-01', 19, 'https://www.gutenberg.org/ebooks/7444', 'en', 15060), +(41914, 'Michael Faraday, Man of Science', 'Jerrold, Walter', '2014-09-03', 25, 'https://www.gutenberg.org/ebooks/46763', 'en', 12541), +(41915, 'The Station; The Party Fight And Funeral; The Lough Derg Pilgrim\nTraits And Stories Of The Irish Peasantry, The Works of\nWilliam Carleton, Volume Three', 'Carleton, William', '2005-06-07', 5, 'https://www.gutenberg.org/ebooks/16013', 'en', 440), +(41916, 'The Whispering Spheres', 'Winterbotham, R. R. (Russell Robert)', '2007-08-03', 28, 'https://www.gutenberg.org/ebooks/22226', 'en', 26), +(41917, 'Some Eccentrics & a Woman', 'Melville, Lewis', '2015-12-04', 17, 'https://www.gutenberg.org/ebooks/50606', 'en', 8800), +(41918, 'The Golden Sayings of Epictetus, with the Hymn of Cleanthes', 'Epictetus', '2006-02-05', 322, 'https://www.gutenberg.org/ebooks/871', 'en', 15061), +(41919, 'The Betrothal\r\nA Sequel to the Blue Bird; A Fairy Play in Five Acts and Eleven Scenes', 'Maeterlinck, Maurice', '2010-11-16', 29, 'https://www.gutenberg.org/ebooks/34343', 'en', 5914), +(41920, 'Official Report of the Exploration of the Queen Charlotte Islands for the Government of British Columbia', 'Chittenden, Newton H.', '2004-09-01', 23, 'https://www.gutenberg.org/ebooks/6596', 'en', 15062), +(41921, 'The Herd Boy and His Hermit', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/5313', 'en', 15063), +(41922, 'Juliette Drouet\'s Love-Letters to Victor Hugo\nEdited with a Biography of Juliette Drouet', 'Guimbaud, Louis', '2013-10-25', 24, 'https://www.gutenberg.org/ebooks/44034', 'en', 10687), +(41923, 'The Antiquities of Constantinople\nWith a Description of Its Situation, the Conveniencies of Its Port, Its Publick Buildings, the Statuary, Sculpture, Architecture, and Other Curiosities of That City', 'Gilles, Pierre', '2016-09-18', 16, 'https://www.gutenberg.org/ebooks/53083', 'en', 2570), +(41924, 'Different Girls', NULL, '2005-01-20', 57, 'https://www.gutenberg.org/ebooks/14744', 'en', 112), +(41925, 'Woman\'s Work in Music', 'Elson, Arthur', '2007-02-12', 48, 'https://www.gutenberg.org/ebooks/20571', 'en', 15064), +(41926, 'Superstition Unveiled', 'Southwell, Charles', '2005-04-24', 20, 'https://www.gutenberg.org/ebooks/15696', 'en', 471), +(41927, 'Paris, From the Earliest Period to the Present Day; Volume 2', 'Walton, William', '2010-06-19', 15, 'https://www.gutenberg.org/ebooks/32888', 'en', 2972), +(41928, 'Inspiration: Its Nature and Extent', 'Hoare, Edward', '2016-05-23', 6, 'https://www.gutenberg.org/ebooks/52151', 'en', 8665), +(41929, 'Jessamine: A Novel', 'Harland, Marion', '2011-06-13', 58, 'https://www.gutenberg.org/ebooks/36414', 'en', 61), +(41930, 'The Book of Love', 'Mantegazza, Paolo', '2018-06-30', 17, 'https://www.gutenberg.org/ebooks/57423', 'en', 5136), +(41931, 'Betty Lee, Senior', 'Grove, Harriet Pyne', '2014-01-30', 21, 'https://www.gutenberg.org/ebooks/44808', 'en', 3251), +(41932, 'Landseer\r\nA collection of fifteen pictures and a portrait of the painter with introduction and interpretation', 'Hurll, Estelle M. (Estelle May)', '2010-07-15', 7, 'https://www.gutenberg.org/ebooks/33166', 'en', 15065), +(41933, 'A könyv története (1. rész)\r\nA magyar könyvnyomtatás és könyvkereskedelem rövid története a legrégibb időktől napjainkig', 'Steinhofer, Károly', '2012-08-13', 11, 'https://www.gutenberg.org/ebooks/40494', 'hu', 15066), +(41934, 'Curiosities of Olden Times', 'Baring-Gould, S. (Sabine)', '2012-12-03', 53, 'https://www.gutenberg.org/ebooks/41546', 'en', 15067), +(41935, 'The Nicest Girl in the School: A Story of School Life', 'Brazil, Angela', '2008-04-05', 52, 'https://www.gutenberg.org/ebooks/25003', 'en', 1679), +(41936, 'Old Ballads', 'Various', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11236', 'en', 1059), +(41937, 'Resurrection Seven', 'Marlowe, Stephen', '2019-01-09', 27, 'https://www.gutenberg.org/ebooks/58659', 'en', 26), +(41938, 'Modern Mythology', 'Lang, Andrew', '2005-01-03', 93, 'https://www.gutenberg.org/ebooks/14576', 'en', 75), +(41939, 'The Marx He Knew', 'Spargo, John', '2007-03-04', 13, 'https://www.gutenberg.org/ebooks/20743', 'en', 11225), +(41940, 'Dark Hollow', 'Green, Anna Katharine', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5121', 'en', 15068), +(41941, 'Old-Time Nautical Instruments', 'Robinson, John', '2013-11-17', 15, 'https://www.gutenberg.org/ebooks/44206', 'en', 15069), +(41942, 'U.S. Copyright Renewals, 1968 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11838', 'en', 4170), +(41943, 'The Childhood of King Erik Menved: An Historical Romance', 'Ingemann, Bernhard Severin', '2011-07-05', 11, 'https://www.gutenberg.org/ebooks/36626', 'en', 15070), +(41944, 'The Pioneers', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 66, 'https://www.gutenberg.org/ebooks/21691', 'en', 676), +(41945, 'A Chicago Princess', 'Barr, Robert', '2016-06-18', 23, 'https://www.gutenberg.org/ebooks/52363', 'en', 23), +(41946, 'The Bible, Douay-Rheims, Complete', NULL, '1998-12-01', 309, 'https://www.gutenberg.org/ebooks/1581', 'en', 1185), +(41947, 'Η χολεριασμένη: Τα μετά θάνατον', 'Papadiamantes, Alexandros', '2010-08-05', 13, 'https://www.gutenberg.org/ebooks/33354', 'el', 61), +(41948, 'Heroines of the Modern Stage', 'Izard, Forrest', '2018-07-31', 13, 'https://www.gutenberg.org/ebooks/57611', 'en', 2066), +(41949, '遊仙窟', 'Zhang, Zhuo', '2008-04-29', 9, 'https://www.gutenberg.org/ebooks/25231', 'zh', 947), +(41950, 'Joe Burke\'s Last Stand', 'Wetterau, John Moncure', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/11004', 'en', 61), +(41951, 'Pincher Martin, O.D.: A Story of the Inner Life of the Royal Navy', 'Dorling, H. Taprell (Henry Taprell)', '2013-01-04', 55, 'https://www.gutenberg.org/ebooks/41774', 'en', 15071), +(41952, 'A Letter to Lord Robert Bertie\r\nRelating to His Conduct in the Mediterranean, and His Defence of Admiral Byng', 'Anonymous', '2010-05-07', 12, 'https://www.gutenberg.org/ebooks/32286', 'en', 15072), +(41953, 'Απλοί Τρόποι', 'Chatzopoulos, Kostantinos', '2010-02-25', 6, 'https://www.gutenberg.org/ebooks/31403', 'el', 988), +(41954, 'Ojamylläri ja hänen miniänsä\nJutelma, Vironkansan opiksi ja huviksi', 'Koidula, Lydia', '2007-10-02', 6, 'https://www.gutenberg.org/ebooks/22828', 'fi', 61), +(41955, 'Jimmy Boy', 'May, Sophie', '2015-07-25', 18, 'https://www.gutenberg.org/ebooks/49519', 'en', 3621), +(41956, 'A Compilaton on Women', 'Universal House of Justice', '2006-09-16', 19, 'https://www.gutenberg.org/ebooks/19269', 'en', 4457), +(41957, 'Common Objects of the Microscope', 'Wood, J. G. (John George)', '2017-07-18', 25, 'https://www.gutenberg.org/ebooks/55146', 'en', 2420), +(41958, 'Us and the Bottle Man', 'Price, Edith Ballinger', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/12681', 'en', 12970), +(41959, 'La Force\r\nLe Temps et la Vie', 'Adam, Paul', '2008-12-19', 35, 'https://www.gutenberg.org/ebooks/27566', 'fr', 98), +(41960, 'Dorothy Dainty\'s Gay Times', 'Brooks, Amy', '2004-10-14', 20, 'https://www.gutenberg.org/ebooks/13753', 'en', 62), +(41961, 'A Valiant Ignorance; vol. 2 of 3\nA Novel in Three Volumes', 'Dickens, Mary Angela', '2017-02-02', 8, 'https://www.gutenberg.org/ebooks/54094', 'en', 61), +(41962, 'La lotta politica in Italia, Volume 2 (of 3)\r\nOrigini della lotta attuale (476-1887); Quinta edizione', 'Oriani, Alfredo', '2013-06-24', 18, 'https://www.gutenberg.org/ebooks/43023', 'it', 11082), +(41963, 'Legends and Lyrics. Part 2', 'Procter, Adelaide Anne', '2000-08-01', 19, 'https://www.gutenberg.org/ebooks/2304', 'en', 532), +(41964, 'The Spirit of Youth and the City Streets', 'Addams, Jane', '2005-07-06', 27, 'https://www.gutenberg.org/ebooks/16221', 'en', 5556), +(41965, 'The Peter Patter Book of Nursery Rhymes', 'Jackson, Leroy F. (Leroy Freeman)', '2007-07-07', 45, 'https://www.gutenberg.org/ebooks/22014', 'en', 343), +(41966, 'Harold : the Last of the Saxon Kings — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7676', 'en', 5629), +(41967, 'Das zerstörte Idyll: Novellen', 'Flesch-Brunningen, Hans', '2014-08-10', 11, 'https://www.gutenberg.org/ebooks/46551', 'de', 61), +(41968, 'Hesper, the Home-Spirit: A simple story of household labor and love', 'Doten, Lizzie', '2014-11-29', 12, 'https://www.gutenberg.org/ebooks/47483', 'en', 378), +(41969, 'Toppleton\'s Client; Or, A Spirit in Exile', 'Bangs, John Kendrick', '2010-10-30', 27, 'https://www.gutenberg.org/ebooks/34171', 'en', 3499), +(41970, 'The Story of Wellington', 'Wheeler, Harold', '2015-11-11', 20, 'https://www.gutenberg.org/ebooks/50434', 'en', 12835), +(41971, 'Pauline', 'Sand, George', '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/12447', 'fr', 13664), +(41972, 'Graham\'s Magazine, Vol. XXXV, No. 3, September 1849', 'Various', '2017-08-18', 7, 'https://www.gutenberg.org/ebooks/55380', 'en', 380), +(41973, 'Bookbinding, and the Care of Books\r\nA Handbook for Amateurs, Bookbinders & Librarians', 'Cockerell, Douglas', '2008-09-19', 175, 'https://www.gutenberg.org/ebooks/26672', 'en', 4993), +(41974, 'The Vicomte de Bragelonne: The End and Beginning of an Era', 'Bursey, John', '2002-01-01', 54, 'https://www.gutenberg.org/ebooks/3010', 'en', 15073), +(41975, 'Die erste Stunde nach dem Tode: Eine Gespenstergeschichte', 'Brod, Max', '2013-03-15', 12, 'https://www.gutenberg.org/ebooks/42337', 'de', 531), +(41976, 'Le Amanti', 'Serao, Matilde', '2006-03-04', 17, 'https://www.gutenberg.org/ebooks/17909', 'it', 179), +(41977, 'East Anglia: Personal Recollections and Historical Associations', 'Ritchie, J. Ewing (James Ewing)', '2009-12-20', 18, 'https://www.gutenberg.org/ebooks/30717', 'en', 15074), +(41978, 'Leave it to Psmith', 'Wodehouse, P. G. (Pelham Grenville)', '2019-08-06', 2780, 'https://www.gutenberg.org/ebooks/60067', 'en', 15075), +(41979, 'The Irish Penny Journal, Vol. 1 No. 15, October 10, 1840', 'Various', '2017-02-27', 0, 'https://www.gutenberg.org/ebooks/54252', 'en', 81), +(41980, 'Avondstonden', 'Conscience, Hendrik', '2004-10-04', 10, 'https://www.gutenberg.org/ebooks/13595', 'nl', 61), +(41981, 'A Search For A Secret: A Novel. Vol. 2', 'Henty, G. A. (George Alfred)', '2011-02-13', 25, 'https://www.gutenberg.org/ebooks/35265', 'en', 167), +(41982, 'The Great Events by Famous Historians, Volume 10', NULL, '2006-11-21', 36, 'https://www.gutenberg.org/ebooks/19893', 'en', 346), +(41983, 'The Pioneer Boys of the Missouri; or, In the Country of the Sioux', 'Rathborne, St. George', '2014-09-07', 14, 'https://www.gutenberg.org/ebooks/46797', 'en', 15076), +(41984, 'Dinsmore Ely, One Who Served', 'Ely, Dinsmore', '2016-04-10', 6, 'https://www.gutenberg.org/ebooks/51720', 'en', 3872), +(41985, 'Half-Hours with the Stars\nA Plain and Easy Guide to the Knowledge of the Constellations', 'Proctor, Richard A. (Richard Anthony)', '2007-11-03', 18, 'https://www.gutenberg.org/ebooks/23300', 'en', 15077), +(41986, 'Twas the Night before Christmas: A Visit from St. Nicholas', 'Moore, Clement Clarke', '2005-11-22', 152, 'https://www.gutenberg.org/ebooks/17135', 'en', 1209), +(41987, 'L\'Illustration, No. 1601, 1 novembre 1873', 'Various', '2014-12-12', 7, 'https://www.gutenberg.org/ebooks/47645', 'fr', 150), +(41988, 'The Pretentious Young Ladies', 'Molière', '2004-09-01', 35, 'https://www.gutenberg.org/ebooks/6562', 'en', 15078), +(41989, 'The Fight for a Free Sea: A Chronicle of the War of 1812\nThe Chronicles of America Series, Volume 17', 'Paine, Ralph Delahaye', '2006-07-30', 37, 'https://www.gutenberg.org/ebooks/18941', 'en', 7149), +(41990, 'An Ideal Husband', 'Wilde, Oscar', '1997-04-01', 869, 'https://www.gutenberg.org/ebooks/885', 'en', 907), +(41991, 'The Scottish Fairy Book', 'Grierson, Elizabeth W. (Elizabeth Wilson)', '2011-09-26', 102, 'https://www.gutenberg.org/ebooks/37532', 'en', 3131), +(41992, 'Amor Crioulo\nvida argentina', 'Botelho, Abel Acácio de Almeida', '2008-03-26', 17, 'https://www.gutenberg.org/ebooks/24919', 'pt', 671), +(41993, 'Pinocchion seikkailut: Kertomus marioneteista', 'Collodi, Carlo', '2016-09-18', 7, 'https://www.gutenberg.org/ebooks/53077', 'fi', 1007), +(41994, 'Sartor Resartus, and On Heroes, Hero-Worship, and the Heroic in History', 'Carlyle, Thomas', '2007-02-15', 41, 'https://www.gutenberg.org/ebooks/20585', 'en', 6171), +(41995, 'The Cruise of the Mary Rose; Or, Here and There in the Pacific', 'Kingston, William Henry Giles', '2007-05-15', 9, 'https://www.gutenberg.org/ebooks/21457', 'en', 324), +(41996, 'An Historical Journal of the Transactions at Port Jackson and Norfolk Island', 'Hunter, John', '2005-04-20', 17, 'https://www.gutenberg.org/ebooks/15662', 'en', 15079), +(41997, 'Astronomy for Young Folks', 'Lewis, Isabel Martin', '2014-03-11', 14, 'https://www.gutenberg.org/ebooks/45112', 'en', 1488), +(41998, 'Dynevor Terrace; Or, The Clue of Life — Volume 1', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-07-01', 14, 'https://www.gutenberg.org/ebooks/4235', 'en', 378), +(41999, 'After Dinner Toast at Little Menlo', 'Sullivan, Arthur', '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10310', 'en', 2601), +(42000, 'A Little Book for A Little Cook', 'Hubbard, L. P.', '2008-01-02', 83, 'https://www.gutenberg.org/ebooks/24125', 'en', 373), +(42001, 'John Marsh\'s Millions', 'Hornblow, Arthur', '2010-07-17', 14, 'https://www.gutenberg.org/ebooks/33192', 'en', 1380), +(42002, 'The Red Seal', 'Lincoln, Natalie Sumner', '1999-05-01', 16, 'https://www.gutenberg.org/ebooks/1747', 'en', 61), +(42003, 'Hurlbut\'s Life of Christ For Young and Old\r\nA Complete Life of Christ Written in Simple Language, Based on the Gospel Narrative', 'Hurlbut, Jesse Lyman', '2012-08-09', 22, 'https://www.gutenberg.org/ebooks/40460', 'en', 10446), +(42004, 'Diplomatic Immunity', 'Sheckley, Robert', '2010-04-18', 90, 'https://www.gutenberg.org/ebooks/32040', 'en', 67), +(42005, 'Lihan evankeliumi: Moraalin arvostelua', 'Hahl, M.', '2016-09-07', 3, 'https://www.gutenberg.org/ebooks/52999', 'fi', 15080), +(42006, 'Historic Bubbles', 'Leake, Frederic', '2018-02-06', 8, 'https://www.gutenberg.org/ebooks/56505', 'en', 7868), +(42007, 'The War With the United States : A Chronicle of 1812', 'Wood, William', '2005-01-03', 13, 'https://www.gutenberg.org/ebooks/14582', 'en', 7149), +(42008, 'Little Dramas for Primary Grades', 'Skinner, Ada M. (Ada Maria)', '2016-10-10', 14, 'https://www.gutenberg.org/ebooks/53245', 'en', 364), +(42009, 'Biblical Extracts; Or, The Holy Scriptures Analyzed;\r\nShowing Its Contradictions, Absurdities, and Immoralities', 'Cooper, Robert, secularist', '2011-10-10', 11, 'https://www.gutenberg.org/ebooks/37700', 'en', 3792), +(42010, 'Ladies and Gentlemen', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2014-04-05', 37, 'https://www.gutenberg.org/ebooks/45320', 'en', 61), +(42011, 'Gebir, and Count Julian', 'Landor, Walter Savage', '2003-05-01', 14, 'https://www.gutenberg.org/ebooks/4007', 'en', 3947), +(42012, 'A Brief History of the English Language and Literature, Vol. 2', 'Meiklejohn, J. M. D. (John Miller Dow)', '2007-06-03', 72, 'https://www.gutenberg.org/ebooks/21665', 'en', 7218), +(42013, 'Motor Matt\'s Short Circuit; or, The Mahout\'s Vow', 'Matthews, Stanley R.', '2016-06-23', 3, 'https://www.gutenberg.org/ebooks/52397', 'en', 4097), +(42014, 'Against Home Rule (1912)\nThe Case for the Union', NULL, '2005-03-24', 13, 'https://www.gutenberg.org/ebooks/15450', 'en', 15081), +(42015, 'The Philippine Islands, 1493-1898, Volume 29 of 55, 1638–40\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2012-02-01', 188, 'https://www.gutenberg.org/ebooks/38748', 'en', 1334), +(42016, 'The Foundations of Personality', 'Myerson, Abraham', '1998-12-01', 27, 'https://www.gutenberg.org/ebooks/1575', 'en', 1794), +(42017, 'A Guide to the Scientific Knowledge of Things Familiar', 'Brewer, Ebenezer Cobham', '2012-09-03', 25, 'https://www.gutenberg.org/ebooks/40652', 'en', 4329), +(42018, 'Fairies and Fusiliers', 'Graves, Robert', '2003-11-01', 51, 'https://www.gutenberg.org/ebooks/10122', 'en', 3115), +(42019, 'Roosevelt in the Bad Lands', 'Hagedorn, Hermann', '2008-01-15', 15, 'https://www.gutenberg.org/ebooks/24317', 'en', 4594), +(42020, 'Esau e Jacob', 'Machado de Assis', '2018-03-14', 50, 'https://www.gutenberg.org/ebooks/56737', 'pt', 15082), +(42021, 'Hellaassa', 'Ivalo, Santeri', '2013-01-05', 9, 'https://www.gutenberg.org/ebooks/41780', 'fi', 456), +(42022, 'Insidekick', 'Bone, Jesse F. (Jesse Franklin)', '2010-05-06', 40, 'https://www.gutenberg.org/ebooks/32272', 'en', 26), +(42023, 'Mr. Honey\'s Correspondence Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 17, 'https://www.gutenberg.org/ebooks/3222', 'en', 5219), +(42024, 'Faces in the Fire, and Other Fancies', 'Boreham, Frank', '2013-02-16', 33, 'https://www.gutenberg.org/ebooks/42105', 'en', 20), +(42025, 'Sketches and Tales Illustrative of Life in the Backwoods of New Brunswick\nGleaned from Actual Observation and Experience During a Residence\nOf Seven Years in That Interesting Colony', 'Beavan, F. (Frederick), Mrs.', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/12675', 'en', 15083), +(42026, 'Fire Prevention and Fire Extinction', 'Braidwood, James', '2008-08-27', 31, 'https://www.gutenberg.org/ebooks/26440', 'en', 3610), +(42027, 'Ανδρομάχη', 'Euripides', '2008-12-22', 23, 'https://www.gutenberg.org/ebooks/27592', 'el', 15084), +(42028, 'Beyond the Gates', 'Phelps, Elizabeth Stuart', '2017-01-27', 11, 'https://www.gutenberg.org/ebooks/54060', 'en', 760), +(42029, 'Det Nya Riket: Skildringar från attentatens och jubelfesternas tidevarv', 'Strindberg, August', '2009-11-21', 7, 'https://www.gutenberg.org/ebooks/30525', 'sv', 2385), +(42030, 'Mudfog and Other Sketches', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9718', 'en', 45), +(42031, 'Laukkuryssä: Laulunsekainen ilveily yhdessä näytöksessä', 'Rahkonen, Aleksanteri', '2016-03-20', 4, 'https://www.gutenberg.org/ebooks/51512', 'fi', 402), +(42032, 'L\'Illustration, No. 0050, 10 Février 1844', 'Various', '2013-06-13', 8, 'https://www.gutenberg.org/ebooks/42939', 'fr', 150), +(42033, 'Wanderer of Infinity', 'Vincent, Harl', '2009-07-14', 40, 'https://www.gutenberg.org/ebooks/29408', 'en', 26), +(42034, 'Harold : the Last of the Saxon Kings — Volume 11', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7682', 'en', 14377), +(42035, 'Dilemmas of Pride, (Vol 2 of 3)', 'Loudon, Mrs. (Margracia)', '2011-01-24', 10, 'https://www.gutenberg.org/ebooks/35057', 'en', 61), +(42036, 'L\'Illustration, No. 1598, 11 octobre 1873', 'Various', '2014-11-27', 5, 'https://www.gutenberg.org/ebooks/47477', 'fr', 150), +(42037, 'The Hawaiian Archipelago', 'Bird, Isabella L. (Isabella Lucy)', '2004-10-01', 43, 'https://www.gutenberg.org/ebooks/6750', 'en', 3636), +(42038, 'Recipes for Eatmor Fresh Cranberries', 'Eatmor Cranberries', '2010-11-01', 88, 'https://www.gutenberg.org/ebooks/34185', 'en', 15085), +(42039, 'Marcia Schuyler', 'Hill, Grace Livingston', '2007-08-01', 97, 'https://www.gutenberg.org/ebooks/23132', 'en', 1397), +(42040, 'Principles of Teaching', 'Bennion, Adam S. (Adam Samuel)', '2005-12-14', 22, 'https://www.gutenberg.org/ebooks/17307', 'en', 1967), +(42041, 'Catalogue of the Gallery of Art of The New York Historical Society', 'New-York Historical Society', '2014-05-24', 71, 'https://www.gutenberg.org/ebooks/45744', 'en', 15086), +(42042, 'The Tragic Comedians: A Study in a Well-known Story — Volume 3', 'Meredith, George', '2003-09-01', 21, 'https://www.gutenberg.org/ebooks/4463', 'en', 137), +(42043, 'Journal of a Voyage to Brazil\nAnd Residence There During Part of the Years 1821, 1822, 1823', 'Callcott, Maria, Lady', '2007-04-22', 31, 'https://www.gutenberg.org/ebooks/21201', 'en', 4395), +(42044, 'Stories for the Young; Or, Cheap Repository Tracts\r\nEntertaining, Moral, and Religious. Vol. VI.', 'More, Hannah', '2005-02-13', 14, 'https://www.gutenberg.org/ebooks/15034', 'en', 470), +(42045, 'The Complete Poems of Francis Ledwidge\nwith Introductions by Lord Dunsany', 'Ledwidge, Francis', '2016-11-28', 17, 'https://www.gutenberg.org/ebooks/53621', 'en', 2100), +(42046, 'The Second Jungle Book', 'Kipling, Rudyard', '2011-09-09', 162, 'https://www.gutenberg.org/ebooks/37364', 'en', 15087), +(42047, 'L\'Illustration, No. 2497, 3 Janvier 1891', 'Various', '2014-01-18', 11, 'https://www.gutenberg.org/ebooks/44696', 'fr', 150), +(42048, 'Les joies du pardon\r\nPetites histoires contemporaines pour la consolation des coeurs chrétiens', 'Anonymous', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/11494', 'fr', 15088), +(42049, 'Pyrometry: A Practical Treatise on the Measurement of High Temperatures', 'Darling, Charles R. (Charles Robert)', '2018-01-10', 7, 'https://www.gutenberg.org/ebooks/56353', 'en', 15089), +(42050, 'The History of Richard Raynal, Solitary', 'Benson, Robert Hugh', '2005-05-10', 22, 'https://www.gutenberg.org/ebooks/15808', 'en', 1159), +(42051, 'The Galaxy, April, 1877\nVol. XXIII.—April, 1877.—No. 4.', 'Various', '2010-05-31', 22, 'https://www.gutenberg.org/ebooks/32616', 'en', 883), +(42052, 'King Richard the Second', 'Shakespeare, William', '1997-11-01', 26, 'https://www.gutenberg.org/ebooks/1111', 'en', 1298), +(42053, 'Memoirs of Benjamin Franklin; Written by Himself. [Vol. 2 of 2]\r\nWith his Most Interesting Essays, Letters, and Miscellaneous Writings; Familiar, Moral, Political, Economical, and Philosophical, Selected with Care from All His Published Productions, and Comprising Whatever Is Most Entertaining and Valuable to the General Reader', 'Franklin, Benjamin', '2012-07-14', 28, 'https://www.gutenberg.org/ebooks/40236', 'en', 854), +(42054, 'Morsiusmarssi', 'Bjørnson, Bjørnstjerne', '2018-06-06', 0, 'https://www.gutenberg.org/ebooks/57281', 'fi', 7), +(42055, 'So Runs the World', 'Sienkiewicz, Henryk', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10546', 'en', 15090), +(42056, 'Wonderlijke avonturen van een Chinees, gevolgd door Muiterij aan boord der \'Bounty\'', 'Verne, Jules', '2008-03-07', 25, 'https://www.gutenberg.org/ebooks/24773', 'nl', 687), +(42057, 'Mehalah: A Story of the Salt Marshes', 'Baring-Gould, S. (Sabine)', '2017-03-20', 15, 'https://www.gutenberg.org/ebooks/54404', 'en', 15091), +(42058, 'Ghetto Comedies', 'Zangwill, Israel', '2009-05-28', 28, 'https://www.gutenberg.org/ebooks/28982', 'en', 2707), +(42059, 'Paul Rundel: A Novel', 'Harben, Will N. (Will Nathaniel)', '2016-01-11', 9, 'https://www.gutenberg.org/ebooks/50898', 'en', 4256), +(42060, 'The Continental Monthly, Vol. 4, No. 5, November, 1863', 'Various', '2009-09-30', 16, 'https://www.gutenberg.org/ebooks/30141', 'en', 162), +(42061, 'Found at Blazing Star', 'Harte, Bret', '2006-03-27', 28, 'https://www.gutenberg.org/ebooks/2794', 'en', 315), +(42062, 'Memória sobre a plantação dos algodões\r\ne sua exportação sobre a decadencia da lavoura de mandiocas, no termo da villa de Camamú, Comarca dos Ilhéos, Governo da Bahia', 'Bettencourt, José de Sá', '2010-01-26', 8, 'https://www.gutenberg.org/ebooks/31093', 'pt', 15092), +(42063, 'The Dwelling Place of Light — Volume 1', 'Churchill, Winston', '2004-10-15', 14, 'https://www.gutenberg.org/ebooks/3646', 'en', 4638); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(42064, 'Viisi viikkoa ilmapallossa\nKolmen englantilaisen löytöretkiä Afrikassa', 'Verne, Jules', '2015-06-10', 7, 'https://www.gutenberg.org/ebooks/49189', 'fi', 2148), +(42065, 'Woodrow Wilson\'s Administration and Achievements', 'Lord, Frank B.', '2009-08-29', 20, 'https://www.gutenberg.org/ebooks/29850', 'en', 1035), +(42066, 'Rodin à l\'hotel de Biron et à Meudon', 'Coquiot, Gustave', '2013-04-19', 6, 'https://www.gutenberg.org/ebooks/42561', 'fr', 3006), +(42067, 'A Spirit of Avarice\nOdd Craft, Part 11.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/12211', 'en', 3421), +(42068, 'Marge Askinforit', 'Pain, Barry', '2008-07-11', 19, 'https://www.gutenberg.org/ebooks/26024', 'en', 2060), +(42069, 'The Book-lover: A Guide to the Best Reading', 'Baldwin, James', '2014-10-01', 26, 'https://www.gutenberg.org/ebooks/47013', 'en', 9561), +(42070, 'Sara, a Princess: The Story of a Noble Girl', 'Newberry, Fannie E. (Fannie Ellsworth)', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6334', 'en', 15093), +(42071, 'Tunturikertomuksia', 'Järventaus, Arvi', '2015-05-03', 4, 'https://www.gutenberg.org/ebooks/48867', 'fi', 175), +(42072, 'His Unquiet Ghost\n1911', 'Murfree, Mary Noailles', '2007-11-19', 16, 'https://www.gutenberg.org/ebooks/23556', 'en', 4872), +(42073, 'The Mystery of the Hasty Arrow', 'Green, Anna Katharine', '2006-02-12', 101, 'https://www.gutenberg.org/ebooks/17763', 'en', 128), +(42074, 'The captivity, sufferings, and escape of James Scurry\r\nWho was detained a prisoner during ten years, in the dominions of Hyder Ali and Tippoo Saib', 'Scurry, James', '2016-02-11', 12, 'https://www.gutenberg.org/ebooks/51176', 'en', 15094), +(42075, 'Gardening Indoors and Under Glass\r\nA Practical Guide to the Planting, Care and Propagation of House Plants, and to the Construction and Management of Hotbed, Coldframe and Small Greenhouse', 'Rockwell, F. F. (Frederick Frye)', '2007-09-01', 60, 'https://www.gutenberg.org/ebooks/22484', 'en', 15095), +(42076, 'Observations on Mount Vesuvius, Mount Etna, and Other Volcanos', 'Hamilton, William, Sir', '2011-03-01', 17, 'https://www.gutenberg.org/ebooks/35433', 'en', 15096), +(42077, 'Lettres écrites de Lausanne', 'Charrière, Isabelle de', '2008-10-07', 20, 'https://www.gutenberg.org/ebooks/26818', 'fr', 642), +(42078, 'Havsboken', 'Elgström, Anna Lenah', '2015-02-15', 19, 'https://www.gutenberg.org/ebooks/48269', 'sv', 61), +(42079, 'The Popular Religion and Folk-Lore of Northern India, Vol. 1 (of 2)', 'Crooke, William', '2013-09-10', 25, 'https://www.gutenberg.org/ebooks/43681', 'en', 15097), +(42080, 'Life and Literature\nOver two thousand extracts from ancient and modern writers,\nand classified in alphabetical order', 'Richardson, John Purver', '2009-10-31', 19, 'https://www.gutenberg.org/ebooks/30373', 'en', 1026), +(42081, 'The American Missionary — Volume 34, No. 02, February, 1880', 'Various', '2017-04-30', 21, 'https://www.gutenberg.org/ebooks/54636', 'en', 395), +(42082, 'Manifesto da Serenissima Sra. Rainha de Hungria, e Bohemia, Arquiduqueza de Austria, &c. mandado publicar e divulgar pelas provincias, que França domina, fronteiras ao Imperio', 'Menzel, Johann Daniel von', '2006-06-06', 9, 'https://www.gutenberg.org/ebooks/18519', 'pt', 15098), +(42083, 'The Atlantic Monthly, Volume 11, No. 66, April, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-07-15', 19, 'https://www.gutenberg.org/ebooks/12023', 'en', 1227), +(42084, 'The Son of Monte-Cristo', 'Lermina, Jules', '2008-08-08', 26, 'https://www.gutenberg.org/ebooks/26216', 'en', 323), +(42085, 'Jeremy', 'Walpole, Hugh', '2002-10-01', 29, 'https://www.gutenberg.org/ebooks/3474', 'en', 95), +(42086, 'The Expositor\'s Bible: The Epistles to the Thessalonians', 'Denney, James', '2013-05-20', 17, 'https://www.gutenberg.org/ebooks/42753', 'en', 15099), +(42087, 'The Bramble Bush', 'Garrett, Randall', '2007-12-07', 74, 'https://www.gutenberg.org/ebooks/23764', 'en', 179), +(42088, 'Le calendrier de Vénus', 'Uzanne, Octave', '2006-01-19', 10, 'https://www.gutenberg.org/ebooks/17551', 'fr', 15100), +(42089, 'Ludwig Tiecks Genoveva, als romantische Dichtung betrachtet', 'Ranftl, Johann', '2015-10-24', 12, 'https://www.gutenberg.org/ebooks/50296', 'de', 15101), +(42090, 'The Dramatic Works of Gerhart Hauptmann, Volume II', 'Hauptmann, Gerhart', '2006-02-01', 25, 'https://www.gutenberg.org/ebooks/9972', 'en', 493), +(42091, 'Quintus Claudius: A Romance of Imperial Rome. Volume 1', 'Eckstein, Ernst', '2014-10-29', 24, 'https://www.gutenberg.org/ebooks/47221', 'en', 6490), +(42092, 'Definitions: Essays in Contemporary Criticism [First Series]', 'Canby, Henry Seidel', '2004-07-01', 10, 'https://www.gutenberg.org/ebooks/6106', 'en', 2641), +(42093, 'Franz Liszt : The Story of a Boy Who Became a Great Pianist and Teacher', 'Tapper, Thomas', '2011-03-17', 33, 'https://www.gutenberg.org/ebooks/35601', 'en', 8167), +(42094, 'Voyage to Far N\'jurd', 'Neville, Kris', '2016-03-02', 20, 'https://www.gutenberg.org/ebooks/51344', 'en', 797), +(42095, 'Muistoja lapsen ja hopeahapsen 3\nKuvauksia', 'Ramsay, Anders', '2005-08-08', 17, 'https://www.gutenberg.org/ebooks/16483', 'fi', 5573), +(42096, 'Sketch of the Mythology of the North American Indians\r\nFirst Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1879-80, Government Printing Office, Washington, 1881, pages 17-56', 'Powell, John Wesley', '2007-04-11', 30, 'https://www.gutenberg.org/ebooks/21033', 'en', 15102), +(42097, 'Torquemada en la hoguera', 'Pérez Galdós, Benito', '2005-02-28', 47, 'https://www.gutenberg.org/ebooks/15206', 'es', 1353), +(42098, 'The Early History of English Poor Relief', 'Leonard, E. M., of Girton College', '2019-03-26', 17, 'https://www.gutenberg.org/ebooks/59129', 'en', 15103), +(42099, 'The Motor Boys Over the Rockies; Or, A Mystery of the Air', 'Young, Clarence', '2014-05-03', 29, 'https://www.gutenberg.org/ebooks/45576', 'en', 676), +(42100, 'L\'Ingénu', 'Voltaire', '2003-11-01', 62, 'https://www.gutenberg.org/ebooks/4651', 'fr', 642), +(42101, 'Cities of the Dawn\r\nNaples - Athens - Pompeii - Constantinople - Smyrna - Jaffa - Jerusalem - Alexandria - Cairo - Marseilles - Avignon - Lyons - Dijon', 'Ritchie, J. Ewing (James Ewing)', '2011-05-11', 35, 'https://www.gutenberg.org/ebooks/36084', 'en', 2970), +(42102, 'A Tramp Abroad — Volume 02', 'Twain, Mark', '2004-06-18', 12, 'https://www.gutenberg.org/ebooks/5783', 'en', 5108), +(42103, 'Ireland in the Days of Dean Swift (Irish Tracts, 1720 to 1734)', 'Swift, Jonathan', '2011-08-21', 42, 'https://www.gutenberg.org/ebooks/37156', 'en', 6654), +(42104, 'Pine Needles', 'Warner, Susan', '2012-02-18', 27, 'https://www.gutenberg.org/ebooks/38922', 'en', 15104), +(42105, 'Prosa Política (Las Repúblicas Americanas)\nObras Completas Vol. XIII', 'Darío, Rubén', '2016-10-30', 21, 'https://www.gutenberg.org/ebooks/53413', 'es', 15105), +(42106, 'The Empire Makers: A Romance of Adventure and War in South Africa', 'Nesbit, Hume', '2012-09-22', 9, 'https://www.gutenberg.org/ebooks/40838', 'en', 15106), +(42107, 'Suomi Jäämerellä', 'Voionmaa, Väinö', '2019-07-13', 21, 'https://www.gutenberg.org/ebooks/59915', 'fi', 5605), +(42108, 'Arthur O\'Leary: His Wanderings And Ponderings In Many Lands', 'Lever, Charles James', '2010-05-19', 21, 'https://www.gutenberg.org/ebooks/32424', 'en', 61), +(42109, 'A Cathedral Courtship', 'Wiggin, Kate Douglas Smith', '2008-05-16', 34, 'https://www.gutenberg.org/ebooks/25493', 'en', 15107), +(42110, 'The Three Furlongers', 'Kaye-Smith, Sheila', '2017-12-11', 6, 'https://www.gutenberg.org/ebooks/56161', 'en', 95), +(42111, 'Récits d\'un soldat: Une armée prisonnière; Une campagne devant Paris', 'Achard, Amédée', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10774', 'fr', 1180), +(42112, 'Between the Lines: Secret Service Stories Told Fifty Years After', 'Smith, Henry Bascom', '2008-02-07', 28, 'https://www.gutenberg.org/ebooks/24541', 'en', 1717), +(42113, 'History of the Conquest of Peru\r\nWith a Preliminary View of the Civilization of the Incas', 'Prescott, William Hickling', '1998-05-01', 49, 'https://www.gutenberg.org/ebooks/1323', 'en', 2884), +(42114, 'The Legend of Ulenspiegel, Volume 2 (of 2)\r\nAnd Lamme Goedzak, and their Adventures Heroical, Joyous and Glorious in the Land of Flanders and Elsewhere', 'Coster, Charles de', '2012-06-15', 17, 'https://www.gutenberg.org/ebooks/40004', 'en', 4817), +(42115, 'Mágoas Amorosas de Elmano\r\nIdyllio Por Bocage', 'Bocage, Manuel Maria Barbosa du', '2007-09-30', 25, 'https://www.gutenberg.org/ebooks/22817', 'pt', 1638), +(42116, 'The Missouri Persecutions', 'Roberts, B. H. (Brigham Henry)', '2015-07-25', 19, 'https://www.gutenberg.org/ebooks/49526', 'en', 15108), +(42117, 'The Early Poems of Alfred Lord Tennyson', 'Tennyson, Alfred Tennyson, Baron', '2005-08-01', 122, 'https://www.gutenberg.org/ebooks/8601', 'en', 532), +(42118, 'Georgie', 'Abbott, Jacob', '2006-09-12', 15, 'https://www.gutenberg.org/ebooks/19256', 'en', 1123), +(42119, 'One of the Six Hundred: A Novel', 'Grant, James', '2017-07-23', 17, 'https://www.gutenberg.org/ebooks/55179', 'en', 6778), +(42120, 'Stories from the Old Attic', 'Harris, Robert A. (Robert Alan)', '1995-04-01', 35, 'https://www.gutenberg.org/ebooks/240', 'en', 179), +(42121, 'Πρώτη αγάπη', 'Kondylakes, Ioannes', '2011-01-15', 12, 'https://www.gutenberg.org/ebooks/34972', 'el', 1348), +(42122, 'Studies in Early Victorian Literature', 'Harrison, Frederic', '2006-05-12', 25, 'https://www.gutenberg.org/ebooks/18384', 'en', 2644), +(42123, 'The 2004 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-12-18', 12, 'https://www.gutenberg.org/ebooks/27559', 'en', 1726), +(42124, 'Exiles: A Play in Three Acts', 'Joyce, James', '2017-11-12', 69, 'https://www.gutenberg.org/ebooks/55945', 'en', 15109), +(42125, 'Ernest Maltravers — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-24', 22, 'https://www.gutenberg.org/ebooks/7649', 'en', 137), +(42126, 'Preliminary Discourse on the Study of Natural Philosophy', 'Herschel, John F. W. (John Frederick William)', '2017-06-12', 27, 'https://www.gutenberg.org/ebooks/54897', 'en', 4775), +(42127, 'Men of the Old Stone Age: Their Environment, Life and Art', 'Osborn, Henry Fairfield', '2013-09-27', 31, 'https://www.gutenberg.org/ebooks/43820', 'en', 1381), +(42128, 'The Tree That Saved Connecticut', 'Carlton, Henry Fisk', '2009-04-06', 6, 'https://www.gutenberg.org/ebooks/28511', 'en', 15110), +(42129, 'Riceyman Steps: A Novel', 'Bennett, Arnold', '2019-01-10', 24, 'https://www.gutenberg.org/ebooks/58666', 'en', 1463), +(42130, 'Rule a Wife, and Have a Wife\nBeaumont & Fletcher\'s Works (3 of 10)', 'Fletcher, John', '2005-01-01', 13, 'https://www.gutenberg.org/ebooks/14549', 'en', 907), +(42131, 'Unter Palmen und Buchen. Erster Band.\nUnter Buchen. Gesammelte Erzählungen.', 'Gerstäcker, Friedrich', '2013-11-20', 16, 'https://www.gutenberg.org/ebooks/44239', 'de', 138), +(42132, 'U.S. Copyright Renewals, 1953 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11807', 'en', 4170), +(42133, 'The Colonization of North America, 1492-1783', 'Marshall, Thomas Maitland', '2011-07-04', 24, 'https://www.gutenberg.org/ebooks/36619', 'en', 15111), +(42134, 'A Childhood in Brittany Eighty Years Ago', 'Sedgwick, Anne Douglas', '2012-09-09', 31, 'https://www.gutenberg.org/ebooks/40699', 'en', 15112), +(42135, 'Women of Achievement\nWritten for the Fireside Schools', 'Brawley, Benjamin Griffith', '2012-02-07', 20, 'https://www.gutenberg.org/ebooks/38783', 'en', 4289), +(42136, 'The History of Don Quixote, Volume 2, Part 19', 'Cervantes Saavedra, Miguel de', '2004-07-21', 6, 'https://www.gutenberg.org/ebooks/5922', 'en', 2176), +(42137, 'Switzerland', 'Fox, Frank', '2012-05-08', 30, 'https://www.gutenberg.org/ebooks/39651', 'en', 1307), +(42138, 'The International Monthly, Volume 3, No. 4, July, 1851', 'Various', '2010-09-28', 18, 'https://www.gutenberg.org/ebooks/33965', 'en', 2522), +(42139, 'Joseph Rogers, M.D.: Reminiscences of a Workhouse Medical Officer', 'Rogers, Joseph', '2018-12-11', 8, 'https://www.gutenberg.org/ebooks/58454', 'en', 15113), +(42140, 'Harper\'s Young People, September 5, 1882\nAn Illustrated Weekly', 'Various', '2019-05-23', 11, 'https://www.gutenberg.org/ebooks/59586', 'en', 479), +(42141, 'Bell\'s Cathedrals: The Cathedral Church of Ripon\nA Short History of the Church and a Description of Its Fabric', 'Hallett, Cecil Walter Charles', '2008-06-16', 24, 'https://www.gutenberg.org/ebooks/25800', 'en', 15114), +(42142, 'Thirty Years\' View (Vol. 2 of 2)\r\nor, A History of the Working of the American Government for Thirty Years, from 1820 to 1850', 'Benton, Thomas Hart', '2014-02-05', 21, 'https://www.gutenberg.org/ebooks/44837', 'en', 5895), +(42143, 'Consumption Curable: Observations on the Treatment of Pulmonary Diseases', 'Congreve, Henry', '2017-01-03', 26, 'https://www.gutenberg.org/ebooks/53880', 'en', 15115), +(42144, 'Os dialectos romanicos ou neo-latinos na África, Ásia e América', 'Coelho, Adolfo', '2010-07-14', 21, 'https://www.gutenberg.org/ebooks/33159', 'pt', 15116), +(42145, 'Die Ratten: Berliner Tragikomödie', 'Hauptmann, Gerhart', '2016-09-01', 22, 'https://www.gutenberg.org/ebooks/52952', 'de', 4088), +(42146, 'Behind the Veil in Persia and Turkish Arabia\r\nAn Account of an Englishwoman\'s Eight Years\' Residence Amongst the Women of the East', 'Hume-Griffith, M. E.', '2012-04-16', 18, 'https://www.gutenberg.org/ebooks/39463', 'en', 10568), +(42147, 'Kimiko, and Other Japanese Sketches', 'Hearn, Lafcadio', '2012-12-07', 41, 'https://www.gutenberg.org/ebooks/41579', 'en', 8644), +(42148, 'Wat eene moeder lijden kan', 'Conscience, Hendrik', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11209', 'nl', 61), +(42149, 'The Triumph of John Kars: A Story of the Yukon', 'Cullum, Ridgwell', '2006-08-16', 11, 'https://www.gutenberg.org/ebooks/19064', 'en', 3036), +(42150, 'At Bay', 'Alexander, Mrs.', '2015-08-16', 26, 'https://www.gutenberg.org/ebooks/49714', 'en', 61), +(42151, 'The Vagabond and Other Poems from Punch', 'Lehmann, R. C. (Rudolf Chambers)', '2005-07-01', 13, 'https://www.gutenberg.org/ebooks/8433', 'en', 2100), +(42152, 'Black and White: Land, Labor, and Politics in the South', 'Fortune, Timothy Thomas', '2005-10-07', 12, 'https://www.gutenberg.org/ebooks/16810', 'en', 15117), +(42153, 'History of Friedrich II of Prussia — Volume 09', 'Carlyle, Thomas', '2008-06-16', 17, 'https://www.gutenberg.org/ebooks/2109', 'en', 6848), +(42154, 'U.S. Copyright Renewals: Artwork 1960-1964\r\nCatalog of Copyright Entries', 'Library of Congress. Copyright Office', '2017-03-08', 2, 'https://www.gutenberg.org/ebooks/54299', 'en', 15118), +(42155, 'Konstruestro Solness', 'Ibsen, Henrik', '2006-11-18', 7, 'https://www.gutenberg.org/ebooks/19858', 'eo', 3671), +(42156, 'The Flight of Pony Baker\nA Boy\'s Town Story', 'Howells, William Dean', '2007-08-02', 13, 'https://www.gutenberg.org/ebooks/22219', 'en', 9572), +(42157, 'On the Study of Zoology', 'Huxley, Thomas Henry', '2001-11-01', 25, 'https://www.gutenberg.org/ebooks/2935', 'en', 814), +(42158, 'Romany Life\r\nExperienced and Observed during many Years of Friendly Intercourse with the Gypsies', 'Cuttriss, Frank', '2015-12-08', 18, 'https://www.gutenberg.org/ebooks/50639', 'en', 6963), +(42159, 'Susan and Edward; Or, A Visit to Fulton Market', 'Anonymous', '2009-05-08', 13, 'https://www.gutenberg.org/ebooks/28723', 'en', 15119), +(42160, 'The Maker of Rainbows, and Other Fairy-tales and Fables', 'Le Gallienne, Richard', '2013-01-26', 26, 'https://www.gutenberg.org/ebooks/41921', 'en', 1007), +(42161, 'Ipolyi Arnold népmesegyüjteménye (Népköltési gyüjtemény 13. kötet)', 'Ipolyi, Arnold', '2018-04-18', 12, 'https://www.gutenberg.org/ebooks/56996', 'hu', 1422), +(42162, 'The Adventures of Jimmy Brown', 'Alden, W. L. (William Livingston)', '2018-09-04', 12, 'https://www.gutenberg.org/ebooks/57844', 'en', 3059), +(42163, 'In Secret', 'Chambers, Robert W. (Robert William)', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5748', 'en', 579), +(42164, 'Warren Commission (15 of 26): Hearings Vol. XV (of 15)', 'United States. Warren Commission', '2018-10-05', 5, 'https://www.gutenberg.org/ebooks/58030', 'en', 5679), +(42165, 'Μυστικό του Γάμου - Φάρσα της Ζωής', 'Kampyses, Giannes', '2012-02-28', 14, 'https://www.gutenberg.org/ebooks/39007', 'el', 402), +(42166, 'A Fluttered Dovecote', 'Fenn, George Manville', '2011-07-27', 14, 'https://www.gutenberg.org/ebooks/36873', 'en', 1779), +(42167, 'Surprising Stories about the Mouse and Her Sons, and the Funny Pigs.\nWith Laughable Colored Engravings', 'Unknown', '2008-05-13', 24, 'https://www.gutenberg.org/ebooks/25458', 'en', 1801), +(42168, 'Die Glücklichen', 'Bernhard, Marie', '2018-05-02', 12, 'https://www.gutenberg.org/ebooks/57078', 'de', 253), +(42169, 'The Arabian Nights: Their Best-known Tales', NULL, '2007-03-27', 384, 'https://www.gutenberg.org/ebooks/20916', 'en', 9762), +(42170, 'The Mystery of Murray Davenport: A Story of New York at the Present Day', 'Stephens, Robert Neilson', '2005-10-01', 13, 'https://www.gutenberg.org/ebooks/9185', 'en', 1660), +(42171, 'Winesburg, Ohio: A Group of Tales of Ohio Small Town Life', 'Anderson, Sherwood', '1996-02-01', 522, 'https://www.gutenberg.org/ebooks/416', 'en', 262), +(42172, 'History Of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 1 (of 12)', 'Maspero, G. (Gaston)', '2006-09-28', 123, 'https://www.gutenberg.org/ebooks/19400', 'en', 7311), +(42173, 'The Attaché; or, Sam Slick in England — Complete', 'Haliburton, Thomas Chandler', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/7823', 'en', 15120), +(42174, 'English Jests and Anecdotes, Collected from Various Sources', 'Various', '2015-07-05', 9, 'https://www.gutenberg.org/ebooks/49370', 'en', 564), +(42175, 'Les guêpes ­— séries 3 & 4', 'Karr, Alphonse', '2013-05-24', 7, 'https://www.gutenberg.org/ebooks/42798', 'fr', 4252), +(42176, 'The Bible, King James version, Book 57: Philemon', 'Anonymous', '2005-04-01', 17, 'https://www.gutenberg.org/ebooks/8057', 'en', 9858), +(42177, 'Harper\'s Young People, February 10, 1880\nAn Illustrated Weekly', 'Various', '2009-03-17', 9, 'https://www.gutenberg.org/ebooks/28347', 'en', 479), +(42178, 'Conception Control and Its Effects on the Individual and the Nation', 'Barrett, Florence Elizabeth Perry, Lady', '2004-10-31', 4, 'https://www.gutenberg.org/ebooks/13906', 'en', 7319), +(42179, 'Diccionario de João Fernandes\r\nLições de lingua portugueza pelos processos novos ao alcance de todas as classes de Portugal e Brazil', 'Amorim, Francisco Gomes de', '2010-12-22', 39, 'https://www.gutenberg.org/ebooks/34718', 'pt', 15121), +(42180, 'A Medley of Weather Lore', NULL, '2014-07-20', 14, 'https://www.gutenberg.org/ebooks/46338', 'en', 15122), +(42181, 'Great Uncle Hoot-Toot', 'Molesworth, Mrs.', '2009-07-03', 14, 'https://www.gutenberg.org/ebooks/29295', 'en', 2672), +(42182, 'Jewel\'s Story Book', 'Burnham, Clara Louise', '2005-08-05', 36, 'https://www.gutenberg.org/ebooks/16448', 'en', 3526), +(42183, 'Looking Backward, 2000 to 1887', 'Bellamy, Edward', '1996-08-01', 346, 'https://www.gutenberg.org/ebooks/624', 'en', 1612), +(42184, 'Tukkijoella', 'Pakkala, Teuvo', '2004-08-27', 10, 'https://www.gutenberg.org/ebooks/13308', 'fi', 402), +(42185, 'Ticonderoga: A Story of Early Frontier Life in the Mohawk Valley', 'James, G. P. R. (George Payne Rainsford)', '2016-01-05', 7, 'https://www.gutenberg.org/ebooks/50853', 'en', 893), +(42186, 'Jedermann: Das Spiel vom Sterben des reichen Mannes', 'Hofmannsthal, Hugo von', '2009-05-24', 71, 'https://www.gutenberg.org/ebooks/28949', 'de', 15123), +(42187, 'Begegnisse eines jungen Thierquälers oder »Der Gerechte erbarmt sich auch seines Thieres.«\nEine neue Erzählung für die Jugend', 'Meier, J. Alois', '2015-01-26', 31, 'https://www.gutenberg.org/ebooks/48090', 'de', 61), +(42188, 'Zágoni Mikes Kelemen törökországi levelei (1. kötet)', 'Mikes, Kelemen', '2013-08-15', 11, 'https://www.gutenberg.org/ebooks/43478', 'hu', 15124), +(42189, 'Siperian samojedien keskuudessa vuosina 1911-13 ja 1914', 'Donner, Kai', '2015-06-05', 7, 'https://www.gutenberg.org/ebooks/49142', 'fi', 15125), +(42190, 'The World English Bible (WEB): Zechariah', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8265', 'en', 6213), +(42191, 'Reihensteinin perillinen: Alkuperäinen saksalainen novelli', 'Reinwald, Theodor', '2010-01-24', 22, 'https://www.gutenberg.org/ebooks/31058', 'fi', 61), +(42192, 'Sandburrs', 'Lewis, Alfred Henry', '2016-05-03', 19, 'https://www.gutenberg.org/ebooks/51981', 'en', 774), +(42193, 'Een Bezoek aan de Philippijnsche Eilanden', 'Bowring, John', '2014-09-22', 12, 'https://www.gutenberg.org/ebooks/46936', 'nl', 4048), +(42194, 'Barbara Frietchie', 'Whittier, John Greenleaf', '2006-10-28', 8, 'https://www.gutenberg.org/ebooks/19632', 'en', 15126), +(42195, 'Jewish Literature and Other Essays', 'Karpeles, Gustav', '2009-01-27', 52, 'https://www.gutenberg.org/ebooks/27901', 'en', 6428), +(42196, 'De lelie van \'s-Gravenhage', 'Cremer, Jacobus Jan', '2009-02-24', 7, 'https://www.gutenberg.org/ebooks/28175', 'nl', 319), +(42197, 'Henry VIII and His Court\n6th edition', 'Tree, Herbert Beerbohm, Sir', '2010-04-02', 36, 'https://www.gutenberg.org/ebooks/31864', 'en', 15127), +(42198, 'Old Glass and How to Collect it', 'Lewis, J. Sydney', '2016-08-06', 15, 'https://www.gutenberg.org/ebooks/52738', 'en', 13235), +(42199, 'Little Journeys to the Homes of the Great - Volume 14\nLittle Journeys to the Homes of Great Musicians', 'Hubbard, Elbert', '2007-01-09', 45, 'https://www.gutenberg.org/ebooks/20318', 'en', 4953), +(42200, 'A Reaping', 'Benson, E. F. (Edward Frederic)', '2018-10-30', 17, 'https://www.gutenberg.org/ebooks/58202', 'en', 875), +(42201, 'Practical Training for Running, Walking, Rowing, Wrestling, Boxing, Jumping, and All Kinds of Athletic Feats\r\nTogether with tables of proportional measurement for height and weight of men in and out of condition; etc. etc.', 'James, Ed.', '2018-01-19', 39, 'https://www.gutenberg.org/ebooks/56398', 'en', 5785), +(42202, 'A Manual of Toy Dogs: How to breed, rear, and feed them', 'Williams, Leslie, Mrs.', '2012-03-24', 21, 'https://www.gutenberg.org/ebooks/39235', 'en', 1636), +(42203, 'Bruges-la-morte', 'Rodenbach, Georges', '2005-02-05', 59, 'https://www.gutenberg.org/ebooks/14911', 'fr', 15128), +(42204, 'Spiridion', 'Sand, George', '2005-03-02', 32, 'https://www.gutenberg.org/ebooks/15239', 'fr', 687), +(42205, 'Why is the Negro Lynched?', 'Douglass, Frederick', '2019-03-24', 48, 'https://www.gutenberg.org/ebooks/59116', 'en', 4609), +(42206, 'Indian Sketches, Taken During an Expedition to the Pawnee and Other Tribes of American Indians (Vol. 1 of 2)', 'Irving, John Treat', '2018-04-11', 8, 'https://www.gutenberg.org/ebooks/56962', 'en', 15129), +(42207, 'The Air Mystery of Isle La Motte', 'Craine, E. J. (Edith Janice)', '2014-05-01', 14, 'https://www.gutenberg.org/ebooks/45549', 'en', 7213), +(42208, 'Ariadne in Mantua: A Romance in Five Acts', 'Lee, Vernon', '2011-08-23', 4, 'https://www.gutenberg.org/ebooks/37169', 'en', 15130), +(42209, 'Ifugao Law\n(In American Archaeology and Ethnology, Vol. 15, No. 1)', 'Barton, Roy Franklin', '2012-09-20', 36, 'https://www.gutenberg.org/ebooks/40807', 'en', 15131), +(42210, 'The Little Mixer', 'Shearon, Lillian Nicholson', '2007-06-14', 8, 'https://www.gutenberg.org/ebooks/21830', 'en', 15132), +(42211, 'J. S. Le Fanu\'s Ghostly Tales, Volume 1', 'Le Fanu, Joseph Sheridan', '2004-03-01', 87, 'https://www.gutenberg.org/ebooks/11699', 'en', 531), +(42212, 'The Story of Nefrekepta, from a Demotic Papyrus', 'Murray, Gilbert', '2011-07-28', 17, 'https://www.gutenberg.org/ebooks/36887', 'en', 15133), +(42213, 'The Life and Letters of Mary Wollstonecraft Shelley, Volume 1 (of 2)', 'Marshall, Julian, Mrs.', '2011-11-08', 65, 'https://www.gutenberg.org/ebooks/37955', 'en', 13084), +(42214, 'Erkki ja Aino', 'Janson, Kristofer', '2011-11-24', 17, 'https://www.gutenberg.org/ebooks/38121', 'fi', 7), +(42215, 'Legends and Tales', 'Harte, Bret', '2006-05-22', 26, 'https://www.gutenberg.org/ebooks/2599', 'en', 179), +(42216, 'Slavery Ordained of God', 'Ross, F. A. (Frederick Augustus)', '2005-10-01', 15, 'https://www.gutenberg.org/ebooks/9171', 'en', 125), +(42217, 'Spitzen und ihre Charakteristik', 'Jurie, Bertha von', '2015-02-15', 9, 'https://www.gutenberg.org/ebooks/48256', 'de', 4518), +(42218, 'The Boy Aviators in Africa; Or, an Aerial Ivory Trail', 'Goldfrap, John Henry', '2004-11-01', 38, 'https://www.gutenberg.org/ebooks/6905', 'en', 9668), +(42219, 'The Ohio Journal of Science, Vol. XVI, No. 1, November 1915', 'Various', '2017-04-26', 2, 'https://www.gutenberg.org/ebooks/54609', 'en', 210), +(42220, 'Eating in Two or Three Languages', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2006-06-07', 19, 'https://www.gutenberg.org/ebooks/18526', 'en', 568), +(42221, 'The Congo', 'Lindsay, Vachel', '2008-08-01', 4, 'https://www.gutenberg.org/ebooks/26229', 'en', 994), +(42222, 'Selling Home Furnishings: A Training Program', 'Rau, Roscoe R.', '2015-07-07', 10, 'https://www.gutenberg.org/ebooks/49384', 'en', 15134), +(42223, 'Marvels of Modern Science', 'Severing, Paul', '2004-07-01', 39, 'https://www.gutenberg.org/ebooks/6139', 'en', 15135), +(42224, 'The Case for India', 'Besant, Annie', '2004-07-05', 55, 'https://www.gutenberg.org/ebooks/12820', 'en', 2957), +(42225, 'Animaduersions uppon the annotacions and corrections of some imperfections of impressiones of Chaucer\'s workes\n1865 edition', 'Thynne, Francis', '2009-06-28', 17, 'https://www.gutenberg.org/ebooks/29261', 'en', 15136), +(42226, 'The Confessions of a Caricaturist, Vol. 2', 'Furniss, Harry', '2007-09-20', 38, 'https://www.gutenberg.org/ebooks/22689', 'en', 15137), +(42227, 'Abe and Mawruss: Being Further Adventures of Potash and Perlmutter', 'Glass, Montague', '2006-06-29', 22, 'https://www.gutenberg.org/ebooks/18714', 'en', 12303), +(42228, 'The White Conquerors: A Tale of Toltec and Aztec', 'Munroe, Kirk', '2014-12-29', 24, 'https://www.gutenberg.org/ebooks/47810', 'en', 246), +(42229, 'Heart of Darkness', 'Conrad, Joseph', '2005-11-01', 27, 'https://www.gutenberg.org/ebooks/9343', 'en', 6034), +(42230, 'Backfischchen\'s Leiden und Freuden: Eine Erzählung für junge Mädchen', 'Helm, Clementine', '2015-01-24', 17, 'https://www.gutenberg.org/ebooks/48064', 'de', 5372), +(42231, 'Fourth Reader: The Alexandra Readers', 'Dearness, John', '2016-05-02', 9, 'https://www.gutenberg.org/ebooks/51975', 'en', 1019), +(42232, 'Getting Gold: A Practical Treatise for Prospectors, Miners and Students', 'Johnson, J. C. F. (Joseph Colin Francis)', '2006-04-13', 18, 'https://www.gutenberg.org/ebooks/3679', 'en', 1024), +(42233, 'The World English Bible (WEB): 3 John', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8291', 'en', 2072), +(42234, 'Extensions of Known Ranges of Mexican Bats', 'Anderson, Sydney', '2010-01-12', 3, 'https://www.gutenberg.org/ebooks/30942', 'en', 2561), +(42235, 'Van Smyrna naar Holland in oorlogstijd\nDe Aarde en haar Volken, 1917', 'Poel, Betsy van der', '2009-02-25', 3, 'https://www.gutenberg.org/ebooks/28181', 'nl', 885), +(42236, 'The Expositor\'s Bible: The Epistle of St Paul to the Romans', 'Moule, H. C. G. (Handley Carr Glyn)', '2015-05-02', 21, 'https://www.gutenberg.org/ebooks/48858', 'en', 15138), +(42237, 'Christmas Holidays at Merryvale\nThe Merryvale Boys', 'Burnett, Alice Hale', '2007-11-20', 23, 'https://www.gutenberg.org/ebooks/23569', 'en', 585), +(42238, 'Raiders Invisible', 'Hall, Desmond Winter', '2009-06-06', 41, 'https://www.gutenberg.org/ebooks/29053', 'en', 26), +(42239, 'Song-Surf', 'Rice, Cale Young', '2010-04-05', 20, 'https://www.gutenberg.org/ebooks/31890', 'en', 8), +(42240, 'Avec les Poilus: Maman la Soupe et son chat Ratu', 'Mültzer, Marcel', '2016-02-08', 20, 'https://www.gutenberg.org/ebooks/51149', 'fr', 146), +(42241, 'Petite Mère', 'Pressensé, E. de, Mme.', '2008-10-07', 13, 'https://www.gutenberg.org/ebooks/26827', 'fr', 4426), +(42242, 'Ormond; Or, The Secret Witness. Volume 1 (of 3)', 'Brown, Charles Brockden', '2011-05-31', 20, 'https://www.gutenberg.org/ebooks/36289', 'en', 348), +(42243, 'Index of the Project Gutenberg Works of Lucy Maud Montgomery', 'Montgomery, L. M. (Lucy Maud)', '2019-04-21', 64, 'https://www.gutenberg.org/ebooks/59324', 'en', 198), +(42244, 'The Muse of the Department', 'Balzac, Honoré de', '1999-10-01', 12, 'https://www.gutenberg.org/ebooks/1912', 'en', 58), +(42245, 'Jerusalem', 'Lagerlöf, Selma', '2005-05-16', 47, 'https://www.gutenberg.org/ebooks/15837', 'en', 1834), +(42246, 'Punch, or the London Charivari, Volume 93, July 9, 1887.', 'Various', '2010-05-31', 6, 'https://www.gutenberg.org/ebooks/32629', 'en', 134), +(42247, 'Marriage in Free Society', 'Carpenter, Edward', '2012-07-11', 9, 'https://www.gutenberg.org/ebooks/40209', 'en', 1451), +(42248, 'Histoire de l\'hérésie des Albigeois\net de la sainte guerre entreprise contre eux de l\'an 1203 à  l\'an 1218', 'Petrus, Sarnensis', '2011-12-15', 24, 'https://www.gutenberg.org/ebooks/38313', 'fr', 4182), +(42249, 'Joe Strong the Boy Fire-Eater\r\nOr, The Most Dangerous Performance on Record', 'Barnum, Vance', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/10579', 'en', 15139), +(42250, 'Un Pélerin d\'Angkor', 'Loti, Pierre', '2011-04-13', 22, 'https://www.gutenberg.org/ebooks/35854', 'fr', 15140), +(42251, 'Manhood Perfectly Restored\r\nProf. Jean Civiale\'s Soluble Urethral Crayons as a Quick, Painless, and Certain Cure for Impotence, Etc.', 'Civiale Remedial Agency', '2006-05-11', 34, 'https://www.gutenberg.org/ebooks/18370', 'en', 15141), +(42252, 'La fille du capitaine', 'Pushkin, Aleksandr Sergeevich', '2004-10-19', 34, 'https://www.gutenberg.org/ebooks/13798', 'fr', 98), +(42253, 'The Adventures of a Freshman', 'Williams, Jesse Lynch', '2011-01-17', 19, 'https://www.gutenberg.org/ebooks/34986', 'en', 7350), +(42254, 'Oliver Twist', 'Dickens, Charles', '2006-01-01', 46, 'https://www.gutenberg.org/ebooks/9727', 'en', 3210), +(42255, 'Instinct', 'Smith, George O. (George Oliver)', '2007-12-20', 23, 'https://www.gutenberg.org/ebooks/23931', 'en', 26), +(42256, 'L\'Illusione', 'De Roberto, Federico', '2015-03-03', 22, 'https://www.gutenberg.org/ebooks/48400', 'it', 860), +(42257, 'Great Porter Square: A Mystery. v. 2', 'Farjeon, B. L. (Benjamin Leopold)', '2013-06-10', 10, 'https://www.gutenberg.org/ebooks/42906', 'en', 61), +(42258, 'The Martian Cabal', 'Starzl, Roman Frederick', '2009-07-18', 29, 'https://www.gutenberg.org/ebooks/29437', 'en', 26), +(42259, 'The Car That Went Abroad: Motoring Through the Golden Age', 'Paine, Albert Bigelow', '2011-01-25', 27, 'https://www.gutenberg.org/ebooks/35068', 'en', 1117), +(42260, 'Joseph and His Friend: A Story of Pennsylvania', 'Taylor, Bayard', '2017-06-07', 30, 'https://www.gutenberg.org/ebooks/54863', 'en', 7935), +(42261, 'Harvey\'s Views on the Use of the Circulation of the Blood', 'Curtis, John Green', '2014-11-24', 8, 'https://www.gutenberg.org/ebooks/47448', 'en', 12389), +(42262, 'Doña Luz', 'Valera, Juan', '2005-12-17', 22, 'https://www.gutenberg.org/ebooks/17338', 'es', 15142), +(42263, 'Storm Over Warlock', 'Norton, Andre', '2007-03-09', 142, 'https://www.gutenberg.org/ebooks/20788', 'en', 26), +(42264, 'The Vigil of Brunhild: A Narrative Poem', 'Manning, Frederic', '2019-01-13', 6, 'https://www.gutenberg.org/ebooks/58692', 'en', 15143), +(42265, 'The World\'s Greatest Books — Volume 04 — Fiction', NULL, '2004-02-01', 123, 'https://www.gutenberg.org/ebooks/10921', 'en', 61), +(42266, 'Imaginary Portraits', 'Pater, Walter', '2003-05-01', 41, 'https://www.gutenberg.org/ebooks/4038', 'en', 15144), +(42267, 'Lost Mine Trail, Big Bend National Park, Texas', 'Anonymous', '2019-06-12', 21, 'https://www.gutenberg.org/ebooks/59740', 'en', 11789), +(42268, 'Lad: A Dog', 'Terhune, Albert Payson', '2012-02-06', 95, 'https://www.gutenberg.org/ebooks/38777', 'en', 766), +(42269, 'The Basis of Early Christian Theism', 'Cole, Lawrence Thomas', '2008-01-16', 6, 'https://www.gutenberg.org/ebooks/24328', 'en', 2903), +(42270, 'The Rise of the Dutch Republic — Volume 04: 1555-59', 'Motley, John Lothrop', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/4804', 'en', 6577), +(42271, 'Oeuvres de Arthur Rimbaud: Vers et proses\r\nRevues sur les manuscrits originaux et les premières éditions mises en ordre et annotées par Paterne Berrichon; poèmes retrouvés', 'Rimbaud, Arthur', '2018-03-09', 45, 'https://www.gutenberg.org/ebooks/56708', 'fr', 4086), +(42272, 'In the Mahdi\'s Grasp', 'Fenn, George Manville', '2008-03-28', 19, 'https://www.gutenberg.org/ebooks/24926', 'en', 11161), +(42273, 'The Hermit of Mars', 'Bartholomew, Stephen', '2016-09-14', 39, 'https://www.gutenberg.org/ebooks/53048', 'en', 26), +(42274, 'Encyclopaedia Britannica, 11th Edition, Volume 4, Appendix: Author List', 'Various', '2010-09-24', 10, 'https://www.gutenberg.org/ebooks/33991', 'en', 1081), +(42275, 'The Sun Maid: A Story of Fort Dearborn', 'Raymond, Evelyn', '2010-06-16', 13, 'https://www.gutenberg.org/ebooks/32843', 'en', 15145), +(42276, 'Index of the Project Gutenberg Works of Walter Richard Cassels', 'Cassels, Walter Richard', '2019-05-21', 7, 'https://www.gutenberg.org/ebooks/59572', 'en', 198), +(42277, 'Marmaduke Merry: A Tale of Naval Adventures in Bygone Days', 'Kingston, William Henry Giles', '2007-05-15', 15, 'https://www.gutenberg.org/ebooks/21468', 'en', 13364), +(42278, 'Under the Red Dragon: A Novel', 'Grant, James', '2017-01-02', 21, 'https://www.gutenberg.org/ebooks/53874', 'en', 6778), +(42279, 'The Pilot\'s Daughter: an account of Elizabeth Cullingham', 'Cunningham, Francis', '2012-01-10', 5, 'https://www.gutenberg.org/ebooks/38545', 'en', 15146), +(42280, 'A Midsummer Night\'s Dream', 'Shakespeare, William', '1999-06-01', 116, 'https://www.gutenberg.org/ebooks/1778', 'en', 907), +(42281, 'A Breeze from the Woods, 2nd Ed.', 'Bartlett, W. C. (William Chauncey)', '2012-04-21', 13, 'https://www.gutenberg.org/ebooks/39497', 'en', 1623), +(42282, 'L\'Illustration, No. 2517, 23 Mai 1891', 'Various', '2014-06-07', 2, 'https://www.gutenberg.org/ebooks/45911', 'fr', 150), +(42283, 'Star Hunter', 'Norton, Andre', '2006-08-21', 153, 'https://www.gutenberg.org/ebooks/19090', 'en', 26), +(42284, 'Books and Characters, French & English', 'Strachey, Lytton', '2004-05-01', 36, 'https://www.gutenberg.org/ebooks/12478', 'en', 15147), +(42285, 'Overland Tales', 'Clifford, Josephine', '2013-03-11', 8, 'https://www.gutenberg.org/ebooks/42308', 'en', 4637), +(42286, 'Poems', 'Hensley, Sophia Margaretta', '2006-03-06', 5, 'https://www.gutenberg.org/ebooks/17936', 'en', 8), +(42287, 'Oneness', 'Schmitz, James H.', '2009-12-21', 69, 'https://www.gutenberg.org/ebooks/30728', 'en', 26), +(42288, 'The Works of Edgar Allan Poe, Volume 4', 'Poe, Edgar Allan', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9515', 'en', 50), +(42289, 'Kunnanlapsi', 'Ebner-Eschenbach, Marie von', '2015-04-04', 4, 'https://www.gutenberg.org/ebooks/48632', 'fi', 1103), +(42290, 'Ellénore, Volume II', 'Gay, Sophie', '2006-04-10', 34, 'https://www.gutenberg.org/ebooks/18142', 'fr', 61), +(42291, 'Giphantia\r\nOr a View of What Has Passed, What Is Now Passing, and, During the Present Century, What Will Pass, in the World.', 'Tiphaigne de La Roche, Charles-François', '2019-08-04', 555, 'https://www.gutenberg.org/ebooks/60058', 'en', 5147), +(42292, 'Blackwood\'s Edinburgh Magazine — Volume 57, No. 351, January 1845', 'Various', '2009-08-04', 12, 'https://www.gutenberg.org/ebooks/29605', 'en', 711), +(42293, 'The Lady of Blossholme', 'Haggard, H. Rider (Henry Rider)', '2006-04-13', 44, 'https://www.gutenberg.org/ebooks/3813', 'en', 11540), +(42294, 'Colonisação de Lourenço Marques: Conferencia feita em 13 de março de 1897', 'Freire de Andrade, Alfredo Augusto', '2010-11-21', 5, 'https://www.gutenberg.org/ebooks/34388', 'pt', 15148), +(42295, 'To The West', 'Fenn, George Manville', '2007-05-16', 23, 'https://www.gutenberg.org/ebooks/21495', 'en', 15149), +(42296, 'An Earthman on Venus (Originally titled \"The Radio Man\")', 'Farley, Ralph Milne', '2016-05-27', 73, 'https://www.gutenberg.org/ebooks/52167', 'en', 1564), +(42297, 'The Mascot of Sweet Briar Gulch', 'Phillips, Henry Wallace', '2008-06-16', 12, 'https://www.gutenberg.org/ebooks/25809', 'en', 8152), +(42298, 'Lodges in the Wilderness', 'Scully, W. C. (William Charles)', '2011-06-13', 13, 'https://www.gutenberg.org/ebooks/36422', 'en', 15150), +(42299, 'Römische Elegien', 'Goethe, Johann Wolfgang von', '2004-03-01', 52, 'https://www.gutenberg.org/ebooks/5325', 'de', 1518), +(42300, 'Warren Commission (02 of 26): Hearings Vol. II (of 15)', 'United States. Warren Commission', '2013-10-19', 67, 'https://www.gutenberg.org/ebooks/44002', 'en', 5206), +(42301, 'Acton\'s Feud: A Public School Story', 'Swainson, Frederick', '2005-01-25', 37, 'https://www.gutenberg.org/ebooks/14772', 'en', 2154), +(42302, 'Stories of Birds', 'Mulets, Lenore Elizabeth', '2007-02-08', 23, 'https://www.gutenberg.org/ebooks/20547', 'en', 6059), +(42303, 'The Asteroids; Or Minor Planets Between Mars and Jupiter.', 'Kirkwood, Daniel', '2012-12-06', 22, 'https://www.gutenberg.org/ebooks/41570', 'en', 15151), +(42304, 'A Rent In A Cloud', 'Lever, Charles James', '2010-04-21', 8, 'https://www.gutenberg.org/ebooks/32082', 'en', 61), +(42305, 'The Happy Unfortunate', 'Silverberg, Robert', '2008-04-10', 43, 'https://www.gutenberg.org/ebooks/25035', 'en', 179), +(42306, 'The World War and What was Behind It; Or, The Story of the Map of Europe', 'Bénézet, Louis Paul', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11200', 'en', 5992), +(42307, 'The Mysteries of Heron Dyke: A Novel of Incident. Volume 3 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-29', 10, 'https://www.gutenberg.org/ebooks/57415', 'en', 128), +(42308, 'Julius Caesar', 'Shakespeare, William', '1999-06-01', 110, 'https://www.gutenberg.org/ebooks/1785', 'en', 15152), +(42309, 'She hath done what she could\nA Discourse addressed to the Ratepayers of St. Marylebone, urging the adoption of The Public Libraries Act, 1855', 'Feilde, Matthew', '2017-01-04', 4, 'https://www.gutenberg.org/ebooks/53889', 'en', 15153), +(42310, 'A Poem to the Memory of our late lamented Queen Caroline of England', 'Parkerson, James', '2010-07-13', 7, 'https://www.gutenberg.org/ebooks/33150', 'en', 15154), +(42311, 'The Fundamentals of Bacteriology', 'Morrey, Charles Bradfield', '2013-07-16', 15, 'https://www.gutenberg.org/ebooks/43227', 'en', 15155), +(42312, 'Bibeln, Gamla och Nya Testamentet', NULL, '2000-03-01', 55, 'https://www.gutenberg.org/ebooks/2100', 'sv', 1185), +(42313, 'Sá de Miranda e a sua Obra', 'Carneiro, Décio', '2009-01-10', 3, 'https://www.gutenberg.org/ebooks/27762', 'pt', 9335), +(42314, 'The Irish Penny Journal, Vol. 1 No. 18, October 31, 1840', 'Various', '2017-03-06', 6, 'https://www.gutenberg.org/ebooks/54290', 'en', 81), +(42315, 'Cent-vingt jours de service actif\r\nRécit Historique Très Complet de la Campagne du 65ème au Nord-Ouest', 'Daoust, Charles R. (Charles Roger)', '2004-09-30', 22, 'https://www.gutenberg.org/ebooks/13557', 'fr', 15156), +(42316, 'The Three Brides', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12485', 'en', 45), +(42317, 'Pine Tree Ballads: Rhymed Stories of Unplaned Human Natur\' up in Maine', 'Day, Holman', '2017-08-11', 8, 'https://www.gutenberg.org/ebooks/55342', 'en', 6959), +(42318, 'Les misères de Londres, 4. Les tribulations de Shoking', 'Ponson du Terrail', '2005-10-07', 12, 'https://www.gutenberg.org/ebooks/16819', 'fr', 61), +(42319, 'In the Brooding Wild', 'Cullum, Ridgwell', '2010-03-12', 31, 'https://www.gutenberg.org/ebooks/31607', 'en', 3849), +(42320, 'My Memoirs, Vol. IV, 1830 to 1831', 'Dumas, Alexandre', '2015-12-06', 11, 'https://www.gutenberg.org/ebooks/50630', 'en', 9464), +(42321, 'The Brochure Series of Architectural Illustration, vol. 06, No. 01, January 1900\r\nThe Ten Most Beautiful Buildings in the United States.', 'Hamlin, A. D. F. (Alfred Dwight Foster)', '2014-12-17', 7, 'https://www.gutenberg.org/ebooks/47687', 'en', 2140), +(42322, 'Sainte-Marie-des-Fleurs: Roman', 'Boylesve, René', '2006-08-03', 16, 'https://www.gutenberg.org/ebooks/18983', 'fr', 61), +(42323, 'Hocus Pocus Junior: The Anatomie of Legerdemain\r\nOr, the art of jugling set forth in his proper colours, fully, plainly, and exactly, so that an ignorant person may thereby learn the full perfection of the same, after a little practise.', 'Unknown', '2010-11-20', 59, 'https://www.gutenberg.org/ebooks/34375', 'en', 15157), +(42324, 'Lays of Ancient Rome', 'Macaulay, Thomas Babington Macaulay, Baron', '2006-01-21', 300, 'https://www.gutenberg.org/ebooks/847', 'en', 15158), +(42325, 'More Tish', 'Rinehart, Mary Roberts', '2006-11-17', 45, 'https://www.gutenberg.org/ebooks/19851', 'en', 557), +(42326, 'The Duke of Stockbridge: A Romance of Shays\' Rebellion', 'Bellamy, Edward', '2005-02-01', 20, 'https://www.gutenberg.org/ebooks/7472', 'en', 15159), +(42327, 'Life in a German Crack Regiment', 'Baudissin, Wolf Ernst Hugo Emil, Graf von', '2014-09-02', 10, 'https://www.gutenberg.org/ebooks/46755', 'en', 2224), +(42328, 'The Great Round World and What Is Going On In It, Vol. 1, No. 47, September 30, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-08', 7, 'https://www.gutenberg.org/ebooks/16025', 'en', 1), +(42329, 'In the Forbidden Land\r\nAn account of a journey in Tibet, capture by the Tibetan authorities, imprisonment, torture and ultimate release', 'Landor, Arnold Henry Savage', '2007-08-01', 52, 'https://www.gutenberg.org/ebooks/22210', 'en', 3800), +(42330, 'The Mother', 'Duncan, Norman', '2008-12-17', 22, 'https://www.gutenberg.org/ebooks/27550', 'en', 2833), +(42331, 'Le mystère de la chambre jaune', 'Leroux, Gaston', '2004-10-16', 161, 'https://www.gutenberg.org/ebooks/13765', 'fr', 128), +(42332, 'French Cave Paintings', NULL, '1995-04-01', 24, 'https://www.gutenberg.org/ebooks/249', 'en', 15160), +(42333, 'Bacteria in Daily Life', 'Frankland, Grace C.', '2013-06-22', 30, 'https://www.gutenberg.org/ebooks/43015', 'en', 15155), +(42334, 'Critical and Historical Essays — Volume 1', 'Macaulay, Thomas Babington Macaulay, Baron', '2000-09-01', 93, 'https://www.gutenberg.org/ebooks/2332', 'en', 1953), +(42335, 'Great Expectations', 'Dickens, Charles', '2005-08-01', 54, 'https://www.gutenberg.org/ebooks/8608', 'en', 109), +(42336, 'Ιφιγένεια εν Ταύροις: Δράμα σε πράξεις πέντε', 'Goethe, Johann Wolfgang von', '2010-02-27', 30, 'https://www.gutenberg.org/ebooks/31435', 'el', 4626), +(42337, 'The Prophecy of Merlin, and Other Poems', 'Reade, John', '2017-07-22', 11, 'https://www.gutenberg.org/ebooks/55170', 'en', 1237), +(42338, 'Madeline Payne, the Detective\'s Daughter', 'Lynch, Lawrence L.', '2008-08-29', 14, 'https://www.gutenberg.org/ebooks/26482', 'en', 128), +(42339, 'Wilson\'s Tales of the Borders and of Scotland, Volume 08', NULL, '2010-10-27', 9, 'https://www.gutenberg.org/ebooks/34147', 'en', 3672), +(42340, 'The Maid of Orleans: A Tragedy', 'Schiller, Friedrich', '2004-12-08', 58, 'https://www.gutenberg.org/ebooks/6792', 'en', 15161), +(42341, 'Mex', 'Janifer, Laurence M.', '2009-04-06', 21, 'https://www.gutenberg.org/ebooks/28518', 'en', 179), +(42342, 'White Wings: A Yachting Romance, Volume II', 'Black, William', '2013-09-27', 6, 'https://www.gutenberg.org/ebooks/43829', 'en', 7372), +(42343, 'Femina, A Work for Every Woman', 'Miller, John A. (John Alexander)', '2015-11-06', 15, 'https://www.gutenberg.org/ebooks/50402', 'en', 3721), +(42344, 'Prince Fortunatus', 'Black, William', '2005-07-06', 21, 'https://www.gutenberg.org/ebooks/16217', 'en', 61), +(42345, 'Aunt Jo\'s Scrap Bag, Volume 2\r\nShawl-Straps', 'Alcott, Louisa May', '2007-07-09', 56, 'https://www.gutenberg.org/ebooks/22022', 'en', 6872), +(42346, 'The Century of Columbus', 'Walsh, James J. (James Joseph)', '2011-01-28', 9, 'https://www.gutenberg.org/ebooks/35095', 'en', 6882), +(42347, 'Ernest Maltravers — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 16, 'https://www.gutenberg.org/ebooks/7640', 'en', 137), +(42348, 'The Flying Spy', 'De Carlo, Camillo', '2014-08-12', 11, 'https://www.gutenberg.org/ebooks/46567', 'en', 15162), +(42349, 'The Influence of the Bible on Civilisation', 'Dobschütz, Ernst von', '2011-07-04', 26, 'https://www.gutenberg.org/ebooks/36610', 'en', 8042), +(42350, 'Battle of New Orleans: Its Real Meaning', 'Folk, Reau E. (Reau Estes)', '2016-06-17', 7, 'https://www.gutenberg.org/ebooks/52355', 'en', 15012), +(42351, 'A Doll\'s House', 'Ibsen, Henrik', '2005-03-29', 462, 'https://www.gutenberg.org/ebooks/15492', 'en', 8310), +(42352, 'When William Came', 'Saki', '2004-12-31', 80, 'https://www.gutenberg.org/ebooks/14540', 'en', 1079), +(42353, 'L\'Incendiario; col rapporto sulla vittoria futurista di Trieste', 'Palazzeschi, Aldo', '2016-10-15', 11, 'https://www.gutenberg.org/ebooks/53287', 'it', 15163), +(42354, 'The Annals of the Cakchiquels', 'Arana Xajilá, Francisco Hernández', '2007-03-08', 93, 'https://www.gutenberg.org/ebooks/20775', 'en', 15164), +(42355, 'The Meaning of Truth', 'James, William', '2004-02-01', 126, 'https://www.gutenberg.org/ebooks/5117', 'en', 4402), +(42356, 'On Yachts and Yacht Handling', 'Day, Thomas Fleming', '2013-11-18', 65, 'https://www.gutenberg.org/ebooks/44230', 'en', 5183), +(42357, 'Blackwood\'s Edinburgh Magazine, Volume 57, No. 356, June, 1845', 'Various', '2008-04-28', 14, 'https://www.gutenberg.org/ebooks/25207', 'en', 711), +(42358, 'Wilson\'s Tales of the Borders and of Scotland, Volume 23', NULL, '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/11032', 'en', 3672), +(42359, 'America, Volume 2 (of 6)', 'Cook, Joel', '2012-12-31', 12, 'https://www.gutenberg.org/ebooks/41742', 'en', 2655), +(42360, 'Novelle', 'Balbo, Cesare, conte', '2012-05-08', 37, 'https://www.gutenberg.org/ebooks/39658', 'it', 474), +(42361, 'The Will of Samuel Appleton, with Remarks by One of the Executors', 'Appleton, Samuel', '2010-08-06', 16, 'https://www.gutenberg.org/ebooks/33362', 'en', 15165), +(42362, 'Roger Kyffin\'s Ward', 'Kingston, William Henry Giles', '2012-09-06', 20, 'https://www.gutenberg.org/ebooks/40690', 'en', 6919), +(42363, 'Mrs. Gaskell', 'Gaskell, Elizabeth Cleghorn', '2018-08-02', 12, 'https://www.gutenberg.org/ebooks/57627', 'en', 15166), +(42364, 'Mr. Crewe\'s Career — Complete', 'Churchill, Winston', '2004-10-16', 30, 'https://www.gutenberg.org/ebooks/3684', 'en', 1238), +(42365, 'The Atlantic Monthly, Volume 15, No. 92, June, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2010-01-23', 14, 'https://www.gutenberg.org/ebooks/31051', 'en', 1227), +(42366, 'Well, After All--', 'Moore, Frank Frankfort', '2016-05-03', 12, 'https://www.gutenberg.org/ebooks/51988', 'en', 61), +(42367, 'Up the Forked River; Or, Adventures in South America', 'Ellis, Edward Sylvester', '2009-09-02', 17, 'https://www.gutenberg.org/ebooks/29892', 'en', 3242), +(42368, 'Cuentos de amor', 'Pardo Bazán, Emilia, condesa de', '2017-09-09', 45, 'https://www.gutenberg.org/ebooks/55514', 'es', 3452), +(42369, 'Histoire du Canada depuis sa découverte jusqu\'à nos jours. Tome IV', 'Garneau, F.-X. (François-Xavier)', '2008-11-02', 20, 'https://www.gutenberg.org/ebooks/27134', 'fr', 5181), +(42370, 'The New Ideal in Education\r\nAn Address Given Before the League of the Empire on July 16th, 1916', 'Velimirović, Nikolaj', '2004-08-27', 12, 'https://www.gutenberg.org/ebooks/13301', 'en', 973), +(42371, 'They Looked and Loved; Or, Won by Faith', 'Miller, Alex. McVeigh, Mrs.', '2013-08-15', 9, 'https://www.gutenberg.org/ebooks/43471', 'en', 109), +(42372, 'Stalky & Co.', 'Kipling, Rudyard', '2009-05-01', 11, 'https://www.gutenberg.org/ebooks/28940', 'en', 1779), +(42373, 'The Dean of Lismore\'s Book: A Selection of Ancient Gaelic Poetry', NULL, '2015-01-27', 12, 'https://www.gutenberg.org/ebooks/48099', 'en', 1588), +(42374, 'Marquise Brinvillier\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 39, 'https://www.gutenberg.org/ebooks/2756', 'en', 5050), +(42375, 'A Manual of the Art of Fiction', 'Hamilton, Clayton Meeker', '2009-10-05', 38, 'https://www.gutenberg.org/ebooks/30183', 'en', 61), +(42376, 'Punch, or the London Charivari, Vol. 159, 1920-09-29', 'Various', '2005-09-08', 12, 'https://www.gutenberg.org/ebooks/16673', 'en', 134), +(42377, 'Alexander the Great', 'Abbott, Jacob', '2007-09-01', 87, 'https://www.gutenberg.org/ebooks/22446', 'en', 15167), +(42378, 'La Tétralogie de l\'Anneau du Nibelung', 'Wagner, Richard', '2015-09-15', 29, 'https://www.gutenberg.org/ebooks/49977', 'fr', 1966), +(42379, 'Within You is the Power', 'Hamblin, Henry Thomas', '2005-01-01', 176, 'https://www.gutenberg.org/ebooks/7224', 'en', 43), +(42380, 'Germany\'s Vanishing Colonies', 'Le Sueur, Gordon', '2014-06-26', 13, 'https://www.gutenberg.org/ebooks/46103', 'en', 15168), +(42381, 'Fix Bay\'nets: The Regiment in the Hills', 'Fenn, George Manville', '2009-01-27', 35, 'https://www.gutenberg.org/ebooks/27908', 'en', 15169), +(42382, 'Fishes of Chautauqua, Cowley and Elk Counties, Kansas', 'Metcalf, Artie L.', '2010-11-30', 7, 'https://www.gutenberg.org/ebooks/34523', 'en', 9078), +(42383, 'A Picture Book, for Little Children', 'Anonymous', '2007-11-22', 14, 'https://www.gutenberg.org/ebooks/23594', 'en', 12478), +(42384, 'War Services of the 62nd West Riding Divisional Artillery', 'Anderson, Austin Thomas', '2015-09-27', 4, 'https://www.gutenberg.org/ebooks/50066', 'en', 4056), +(42385, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 584. (Supplement to Vol. 20)', 'Various', '2004-11-22', 4, 'https://www.gutenberg.org/ebooks/14124', 'en', 133), +(42386, 'The Bobbsey Twins on Blueberry Island', 'Hope, Laura Lee', '2007-01-07', 31, 'https://www.gutenberg.org/ebooks/20311', 'en', 31), +(42387, 'A Word, Only a Word — Volume 02', 'Ebers, Georg', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/5573', 'en', 1167), +(42388, 'Punch, or the London Charivari, Vol. 148, February 3, 1915', 'Various', '2014-01-13', 12, 'https://www.gutenberg.org/ebooks/44654', 'en', 134), +(42389, 'Their Majesties as I Knew Them\nPersonal Reminiscences of the Kings and Queens of Europe', 'Paoli, Xavier', '2014-05-27', 21, 'https://www.gutenberg.org/ebooks/45786', 'en', 5769); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(42390, 'The Age of Tennyson', 'Walker, Hugh', '2011-05-29', 17, 'https://www.gutenberg.org/ebooks/36274', 'en', 12461), +(42391, 'Blessed Edmund Campion', 'Guiney, Louise Imogen', '2016-08-05', 15, 'https://www.gutenberg.org/ebooks/52731', 'en', 15170), +(42392, 'Souvenirs de la maison des morts', 'Dostoyevsky, Fyodor', '2005-02-06', 44, 'https://www.gutenberg.org/ebooks/14918', 'fr', 15171), +(42393, 'The Future of Road-making in America', 'Hulbert, Archer Butler', '2010-09-12', 15, 'https://www.gutenberg.org/ebooks/33706', 'en', 4067), +(42394, 'Thinking as a Science', 'Hazlitt, Henry', '2018-05-31', 24, 'https://www.gutenberg.org/ebooks/57243', 'en', 1482), +(42395, 'Air Service Boys over the Atlantic; Or, The Longest Flight on Record', 'Beach, Charles Amory', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10584', 'en', 6791), +(42396, 'Printers\' Marks\nA Chapter in the History of Typography', 'Roberts, W. (William)', '2008-06-01', 58, 'https://www.gutenberg.org/ebooks/25663', 'en', 15172), +(42397, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 392, October 3, 1829', 'Various', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11456', 'en', 133), +(42398, 'The Little London Directory of 1677\nThe oldest printed list of the merchants and bankers of London', NULL, '2018-01-18', 17, 'https://www.gutenberg.org/ebooks/56391', 'en', 5690), +(42399, 'The Girls of St. Wode\'s', 'Meade, L. T.', '2012-11-09', 19, 'https://www.gutenberg.org/ebooks/41326', 'en', 15173), +(42400, 'Bell\'s Cathedrals: The Cathedral Church of Manchester\r\nA Short History and Description of the Church and of the Collegiate Buildings now known as Chetham\'s Hospital', 'Perkins, Thomas, Rev.', '2011-08-24', 5, 'https://www.gutenberg.org/ebooks/37194', 'en', 15174), +(42401, 'Stories by Foreign Authors: Russian', NULL, '2004-05-01', 121, 'https://www.gutenberg.org/ebooks/5741', 'en', 4078), +(42402, 'The First Man-Carrying Aeroplane Capable of Sustained Free Flight: Langley\'s Success as a Pioneer in Aviation\nFrom the Smithsonian Report for 1914, pages 217-222, Publication 2329, 1915', 'Zahm, Albert Francis', '2013-12-19', 10, 'https://www.gutenberg.org/ebooks/44466', 'en', 15175), +(42403, 'The Foundling; or, The Child of Providence', 'Church, J. (John)', '2018-10-06', 3, 'https://www.gutenberg.org/ebooks/58039', 'en', 412), +(42404, 'The Poetry Of Robert Browning', 'Brooke, Stopford Augustus', '2004-12-10', 24, 'https://www.gutenberg.org/ebooks/14316', 'en', 8478), +(42405, 'Golden Stars, and Other Verses Following \"The Red Flower\"', 'Van Dyke, Henry', '2006-12-16', 10, 'https://www.gutenberg.org/ebooks/20123', 'en', 2100), +(42406, 'A Collection of Rare and Curious Tracts on Witchcraft and the Second Sight\nWith an Original Essay on Witchcraft', NULL, '2013-01-27', 28, 'https://www.gutenberg.org/ebooks/41928', 'en', 15176), +(42407, 'Kivihiilenkaivajat', 'Zola, Émile', '2016-07-05', 10, 'https://www.gutenberg.org/ebooks/52503', 'fi', 15177), +(42408, 'In the Permanent Way', 'Steel, Flora Annie Webster', '2012-05-28', 12, 'https://www.gutenberg.org/ebooks/39832', 'en', 2244), +(42409, 'Vacation with the Tucker Twins', 'Speed, Nell', '2011-05-06', 21, 'https://www.gutenberg.org/ebooks/36046', 'en', 82), +(42410, 'Famous Affinities of History: The Romance of Devotion. Vol 1-4, Complete', 'Orr, Lyndon', '2003-11-01', 148, 'https://www.gutenberg.org/ebooks/4693', 'en', 5136), +(42411, 'The Pursuit of Happiness: A Book of Studies and Strowings', 'Brinton, Daniel G. (Daniel Garrison)', '2018-04-30', 35, 'https://www.gutenberg.org/ebooks/57071', 'en', 6079), +(42412, 'Langstroth on the Hive and the Honey-Bee: A Bee Keeper\'s Manual', 'Langstroth, L. L. (Lorenzo Lorraine)', '2008-02-11', 109, 'https://www.gutenberg.org/ebooks/24583', 'en', 15178), +(42413, 'Souvenirs de Roustam, mamelouck de Napoléon Ier\nIntroduction et notes de Paul Cottin', 'Roustam', '2010-08-25', 22, 'https://www.gutenberg.org/ebooks/33534', 'fr', 15179), +(42414, 'Deutsche Romantik: Eine Skizze', 'Walzel, Oskar F. (Oskar Franz)', '2019-02-01', 10, 'https://www.gutenberg.org/ebooks/58805', 'de', 15180), +(42415, 'Histoire de la Littérature Anglaise (Volume 5 de 5)', 'Taine, Hippolyte', '2012-10-19', 22, 'https://www.gutenberg.org/ebooks/41114', 'fr', 1694), +(42416, 'The Sleeping Beauty', 'Evans, C. S. (Charles Seddon)', '2008-05-12', 71, 'https://www.gutenberg.org/ebooks/25451', 'en', 13167), +(42417, 'The Camp Fire Girls Do Their Bit; Or, Over the Top with the Winnebagos', 'Frey, Hildegard G.', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11664', 'en', 622), +(42418, 'Tom, Dot and Talking Mouse and Other Bedtime Stories', 'Kernahan, J. G.', '2006-09-29', 28, 'https://www.gutenberg.org/ebooks/19409', 'en', 388), +(42419, 'The Blue Duchess', 'Bourget, Paul', '2017-10-10', 14, 'https://www.gutenberg.org/ebooks/55726', 'en', 58), +(42420, 'Bark Kathleen Sunk By A Whale\r\nTo Which is Added an Account of Two Like Occurrences, the Loss of Ships Ann Alexander and Essex', 'Jenkins, Thomas H.', '2010-02-12', 15, 'https://www.gutenberg.org/ebooks/31263', 'en', 5584), +(42421, 'Notes and Queries, Number 176, March 12, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 7, 'https://www.gutenberg.org/ebooks/42791', 'en', 105), +(42422, 'Shiloh National Military Park, Tennessee', 'Dillahunty, Albert', '2015-07-06', 10, 'https://www.gutenberg.org/ebooks/49379', 'en', 15181), +(42423, 'Foods and Culinary Utensils of the Ancients', 'Martyn, Charles', '2013-09-04', 61, 'https://www.gutenberg.org/ebooks/43643', 'en', 15182), +(42424, 'Wanderings among South Sea Savages and in Borneo and the Philippines', 'Walker, H. Wilfrid', '2001-03-01', 59, 'https://www.gutenberg.org/ebooks/2564', 'en', 15183), +(42425, 'An interesting journal of Abner Stocking of Chatham, Connecticut\r\ndetailing the distressing events of the expedition against Quebec, under the command of Col. Arnold in the year 1775', 'Stocking, Abner', '2008-11-21', 14, 'https://www.gutenberg.org/ebooks/27306', 'en', 15184), +(42426, 'Ten Reasons Proposed to His Adversaries for Disputation in the Name\nof the Faith and Presented to the Illustrious Members of Our Universities', 'Campion, Edmund, Saint', '2004-08-07', 45, 'https://www.gutenberg.org/ebooks/13133', 'en', 5626), +(42427, 'Adventures in the Land of Canaan', 'Berry, R. L. (Robert Lee)', '2004-12-01', 24, 'https://www.gutenberg.org/ebooks/7016', 'en', 1130), +(42428, 'Merrie England in the Olden Time, Vol. 1', 'Daniel, George', '2014-07-19', 22, 'https://www.gutenberg.org/ebooks/46331', 'en', 226), +(42429, 'Scientific American Supplement, No. 384, May 12, 1883', 'Various', '2005-09-01', 18, 'https://www.gutenberg.org/ebooks/8862', 'en', 210), +(42430, 'Auf silbernen Gefilden: Ein Mond-Roman', 'Zulawski, Jerzy', '2016-03-07', 11, 'https://www.gutenberg.org/ebooks/51386', 'de', 26), +(42431, 'The Closet of Sir Kenelm Digby Knight Opened', 'Digby, Kenelm', '2005-08-05', 150, 'https://www.gutenberg.org/ebooks/16441', 'en', 15185), +(42432, 'Boy Scouts on Hudson Bay; Or, The Disappearing Fleet', 'Ralphson, G. Harvey (George Harvey)', '2007-09-19', 36, 'https://www.gutenberg.org/ebooks/22674', 'en', 2994), +(42433, 'Van Schooljongen tot Koning\r\nEen verhaal samengesteld uit de aanteekeningen van Robert I, koning van Czernovië', 'Bertrand, A. [Pseudonym.]', '2006-01-24', 8, 'https://www.gutenberg.org/ebooks/17593', 'nl', 3242), +(42434, 'Treatment of the diseases of the eye, by means of prussic acid vapour, and other medicinal agents', 'Turnbull, Alexander', '2015-10-19', 4, 'https://www.gutenberg.org/ebooks/50254', 'en', 9340), +(42435, 'The Life of Roger Langdon, Told by himself. With additions by his daughter Ellen.', 'Langdon, Ellen', '2010-12-21', 5, 'https://www.gutenberg.org/ebooks/34711', 'en', 15186), +(42436, 'Komik und Humor: Eine Psychologische-Ästhetische Untersuchung', 'Lipps, Theodor', '2005-06-01', 28, 'https://www.gutenberg.org/ebooks/8298', 'de', 15187), +(42437, 'Peg Woffington', 'Reade, Charles', '2003-01-01', 12, 'https://www.gutenberg.org/ebooks/3670', 'en', 15188), +(42438, 'Letters of Samuel Rutherford\n(Third Edition)', 'Rutherford, Samuel', '2013-04-18', 83, 'https://www.gutenberg.org/ebooks/42557', 'en', 15189), +(42439, 'Hidden Hand', 'Southworth, Emma Dorothy Eliza Nevitte', '2009-08-30', 37, 'https://www.gutenberg.org/ebooks/29866', 'en', 8517), +(42440, 'Child\'s First Picture Book', 'Anonymous', '2004-05-01', 50, 'https://www.gutenberg.org/ebooks/12227', 'en', 15190), +(42441, 'Punch, or the London Charivari, Vol. 147, August 5th, 1914', 'Various', '2008-07-09', 5, 'https://www.gutenberg.org/ebooks/26012', 'en', 134), +(42442, 'The Knickerbocker, Vol. 22, No. 1, July 1843', 'Various', '2014-12-30', 12, 'https://www.gutenberg.org/ebooks/47819', 'en', 18), +(42443, 'Isabel Clarendon, Vol. 2 (of 2)', 'Gissing, George', '2017-03-25', 6, 'https://www.gutenberg.org/ebooks/54432', 'en', 4330), +(42444, 'Pharais; and, The Mountain Lovers', 'Sharp, William', '2013-08-16', 13, 'https://www.gutenberg.org/ebooks/43485', 'en', 2389), +(42445, 'Astounding Stories of Super-Science January 1931', 'Various', '2009-10-05', 141, 'https://www.gutenberg.org/ebooks/30177', 'en', 842), +(42446, 'Latvasaaren kuninkaan hovilinna: Seikkailuja Venäjän rajalta', 'Ingman, A. E. (Alfred Emil)', '2005-09-12', 9, 'https://www.gutenberg.org/ebooks/16687', 'fi', 3242), +(42447, 'Conservation Through Engineering\nExtract from the Annual Report of the Secretary of the Interior', 'Lane, Franklin K.', '2010-04-06', 3, 'https://www.gutenberg.org/ebooks/31899', 'en', 15191), +(42448, 'The Bible and Polygamy: Does the Bible Sanction Polygamy?', 'Cannon, George Q. (George Quayle)', '2016-02-06', 52, 'https://www.gutenberg.org/ebooks/51140', 'en', 15192), +(42449, 'The Boy Scouts on the Roll of Honor', 'Shaler, Robert', '2015-09-15', 24, 'https://www.gutenberg.org/ebooks/49983', 'en', 12593), +(42450, 'Ricordi di un garibaldino dal 1847-48 al 1900. vol. I', 'Elia, Augusto', '2011-02-26', 10, 'https://www.gutenberg.org/ebooks/35405', 'it', 999), +(42451, 'The Essence of Christianity\nTranslated from the second German edition', 'Feuerbach, Ludwig', '2014-10-02', 105, 'https://www.gutenberg.org/ebooks/47025', 'en', 347), +(42452, 'The Junior Classics, Volume 7: Stories of Courage and Heroism', NULL, '2004-08-01', 89, 'https://www.gutenberg.org/ebooks/6302', 'en', 1063), +(42453, 'Carl and the Cotton Gin', 'Bassett, Sara Ware', '2007-11-20', 23, 'https://www.gutenberg.org/ebooks/23560', 'en', 15193), +(42454, 'Chronicles (3 of 6): Historie of England (1 of 9)\nHenrie IV', 'Holinshed, Raphael', '2009-02-25', 14, 'https://www.gutenberg.org/ebooks/28188', 'en', 2555), +(42455, 'A Balloon Ascension at Midnight', 'Hall, George Eli', '2015-05-02', 16, 'https://www.gutenberg.org/ebooks/48851', 'en', 32), +(42456, 'Illustrated Edition of the Life and Escape of Wm. Wells Brown from American Slavery\nWritten by Himself', 'Brown, William Wells', '2015-09-30', 14, 'https://www.gutenberg.org/ebooks/50092', 'en', 56), +(42457, 'Scientific American Supplement, No. 717, September 28, 1889', 'Various', '2006-02-12', 6, 'https://www.gutenberg.org/ebooks/17755', 'en', 210), +(42458, 'Legendary Yorkshire', 'Ross, Frederick', '2016-11-28', 23, 'https://www.gutenberg.org/ebooks/53617', 'en', 15194), +(42459, 'In the Blue Pike — Complete', 'Ebers, Georg', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/5587', 'en', 282), +(42460, 'Δάφνης και Χλόη', 'Longus', '2011-09-08', 26, 'https://www.gutenberg.org/ebooks/37352', 'el', 580), +(42461, 'Chats on Old Clocks', 'Hayden, Arthur', '2014-05-26', 12, 'https://www.gutenberg.org/ebooks/45772', 'en', 8727), +(42462, 'Beauchamp\'s Career — Volume 3', 'Meredith, George', '2003-09-01', 15, 'https://www.gutenberg.org/ebooks/4455', 'en', 137), +(42463, 'Letters of the Motor Girl', 'Gardner, Ethellyn', '2011-05-30', 24, 'https://www.gutenberg.org/ebooks/36280', 'en', 258), +(42464, 'The Bush Boys: History and Adventures of a Cape Farmer and his Family', 'Reid, Mayne', '2007-04-27', 24, 'https://www.gutenberg.org/ebooks/21237', 'en', 3), +(42465, 'All Aboard; or, Life on the Lake\nA Sequel to \"The Boat Club\"', 'Optic, Oliver', '2005-02-09', 17, 'https://www.gutenberg.org/ebooks/15002', 'en', 2526), +(42466, 'The Tragedy of Othello, Moor of Venice', 'Shakespeare, William', '1997-12-01', 77, 'https://www.gutenberg.org/ebooks/1127', 'en', 5469), +(42467, 'Exultations', 'Pound, Ezra', '2012-07-10', 40, 'https://www.gutenberg.org/ebooks/40200', 'en', 15195), +(42468, 'For Better or Worse\nShip\'s Company, Part 10.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 26, 'https://www.gutenberg.org/ebooks/10570', 'en', 1902), +(42469, 'The Loss of the Kent, East Indiaman, in the Bay of Biscay\nNarrated in a Letter to a Friend', 'McGregor, Duncan', '2008-03-03', 19, 'https://www.gutenberg.org/ebooks/24745', 'en', 5584), +(42470, 'Lord Palmerston: a opinião e os factos\num brado a pró da verdade', 'Testa, Carlos', '2008-06-04', 17, 'https://www.gutenberg.org/ebooks/25697', 'pt', 15196), +(42471, 'History of the Transformer', 'Uppenborn, Friedrich', '2018-01-13', 5, 'https://www.gutenberg.org/ebooks/56365', 'en', 15197), +(42472, 'The Three Mulla-mulgars', 'De la Mare, Walter', '2010-05-31', 36, 'https://www.gutenberg.org/ebooks/32620', 'en', 25), +(42473, 'Encyclopaedia Britannica, 11th Edition, \"G\" to \"Gaskell, Elizabeth\"\r\nVolume 11, Slice 4', 'Various', '2011-08-22', 33, 'https://www.gutenberg.org/ebooks/37160', 'en', 1081), +(42474, 'Whip and Spur', 'Waring, George E. (George Edwin)', '2013-12-24', 19, 'https://www.gutenberg.org/ebooks/44492', 'en', 2777), +(42475, 'The Dearest Things in Boots', 'MacKenzie, Edna I.', '2016-11-01', 12, 'https://www.gutenberg.org/ebooks/53425', 'en', 15198), +(42476, 'Válogatott magyar népdalok\nKépes kiadás', 'Erdélyi, János', '2012-02-18', 10, 'https://www.gutenberg.org/ebooks/38914', 'hu', 6460), +(42477, 'Shorty McCabe on the Job', 'Ford, Sewell', '2007-04-07', 20, 'https://www.gutenberg.org/ebooks/21005', 'en', 637), +(42478, 'Miss Mink\'s Soldier and Other Stories', 'Rice, Alice Caldwell Hegan', '2005-03-02', 26, 'https://www.gutenberg.org/ebooks/15230', 'en', 179), +(42479, 'The Christ Myth', 'Drews, Arthur', '2014-04-30', 35, 'https://www.gutenberg.org/ebooks/45540', 'en', 5594), +(42480, 'Seven Wives and Seven Prisons\r\nOr, Experiences in the Life of a Matrimonial Monomaniac. A True Story', 'Abbott, L. A.', '2003-11-01', 95, 'https://www.gutenberg.org/ebooks/4667', 'en', 15199), +(42481, 'The Picture Alphabet', 'Spafford, Oliver', '2004-01-01', 40, 'https://www.gutenberg.org/ebooks/10742', 'en', 2541), +(42482, 'Sokrateen puolustuspuhe', 'Plato', '2018-05-03', 16, 'https://www.gutenberg.org/ebooks/57085', 'fi', 4235), +(42483, 'The Hindered Hand; or, The Reign of the Repressionist', 'Griggs, Sutton E. (Sutton Elbert)', '2008-02-11', 24, 'https://www.gutenberg.org/ebooks/24577', 'en', 1958), +(42484, 'Memoirs of Leonora Christina, Daughter of Christian IV. of Denmark\r\nWritten During Her Imprisonment in the Blue Tower at Copenhagen 1663-1685', 'Ulfeldt, Leonora Christina, grevinde', '2011-11-24', 24, 'https://www.gutenberg.org/ebooks/38128', 'en', 15200), +(42485, 'Autobiography and Selected Essays', 'Huxley, Thomas Henry', '2006-05-03', 59, 'https://www.gutenberg.org/ebooks/1315', 'en', 814), +(42486, 'Mexico', 'Hale, Susan', '2012-06-18', 28, 'https://www.gutenberg.org/ebooks/40032', 'en', 7719), +(42487, 'Sense and Sensibility', 'Austen, Jane', '2007-06-15', 552, 'https://www.gutenberg.org/ebooks/21839', 'en', 378), +(42488, 'The Black Tide', 'Stangland, Arthur G.', '2010-05-18', 24, 'https://www.gutenberg.org/ebooks/32412', 'en', 26), +(42489, 'Colorado Outings', 'Steele, James W. (James William)', '2019-07-15', 114, 'https://www.gutenberg.org/ebooks/59923', 'en', 182), +(42490, 'Nether Lochaber\nThe Natural History, Legends, and Folk-lore of the West Highlands', 'Stewart, Alexander, Rev.', '2017-12-10', 13, 'https://www.gutenberg.org/ebooks/56157', 'en', 15201), +(42491, 'Calvert of Strathore', 'Goodloe, Abbe Carter', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11690', 'en', 2875), +(42492, 'Love under Fire', 'Parrish, Randall', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/12015', 'en', 403), +(42493, 'A Girl of the Limberlost', 'Stratton-Porter, Gene', '2008-08-01', 4, 'https://www.gutenberg.org/ebooks/26220', 'en', 2815), +(42494, 'Van strak gespannen snaren', 'Rudolph, R. J. W. (Roelof Jan Willem)', '2010-02-16', 7, 'https://www.gutenberg.org/ebooks/31297', 'nl', 15202), +(42495, 'The Book of the Thousand Nights and a Night — Volume 08', NULL, '2002-09-01', 61, 'https://www.gutenberg.org/ebooks/3442', 'en', 3347), +(42496, 'Histoire de ma Vie, Livre 3 (Vol. 10 - 13)', 'Sand, George', '2013-05-22', 22, 'https://www.gutenberg.org/ebooks/42765', 'fr', 1285), +(42497, 'Octavia Praetexta', NULL, '2009-10-28', 87, 'https://www.gutenberg.org/ebooks/30345', 'la', 15203), +(42498, 'Japanischer Frühling\nNachdichtungen Japanischer Lyrik', 'Bethge, Hans', '2005-10-01', 31, 'https://www.gutenberg.org/ebooks/9178', 'de', 15204), +(42499, 'Guy Mannering', 'Scott, Walter', '2001-04-01', 43, 'https://www.gutenberg.org/ebooks/2590', 'en', 5254), +(42500, 'Journal de Eugène Delacroix, Tome 3 (de 3)\r\n1855-1863', 'Delacroix, Eugène', '2017-04-24', 18, 'https://www.gutenberg.org/ebooks/54600', 'fr', 15205), +(42501, 'Abélard, Tome I', 'Rémusat, Charles de', '2004-07-06', 23, 'https://www.gutenberg.org/ebooks/12829', 'fr', 9860), +(42502, 'The Secret Glory', 'Machen, Arthur', '2011-03-20', 46, 'https://www.gutenberg.org/ebooks/35637', 'en', 15206), +(42503, 'Le baiser au lépreux', 'Mauriac, François', '2016-03-05', 43, 'https://www.gutenberg.org/ebooks/51372', 'fr', 15207), +(42504, 'Outlines of Universal History, Designed as a Text-book and for Private Reading', 'Fisher, George Park', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8896', 'en', 346), +(42505, 'The Biglow Papers', 'Lowell, James Russell', '2007-09-20', 43, 'https://www.gutenberg.org/ebooks/22680', 'en', 15208), +(42506, 'The Holy See and the Wandering of the Nations, from St. Leo I to St. Gregory I', 'Allies, T. W. (Thomas William)', '2009-06-28', 11, 'https://www.gutenberg.org/ebooks/29268', 'en', 4198), +(42507, 'The Flaw in the Sapphire', 'Snyder, Charles M.', '2007-12-06', 26, 'https://www.gutenberg.org/ebooks/23752', 'en', 15209), +(42508, 'The Way of the Wild', 'St. Mars, F.', '2006-01-21', 9, 'https://www.gutenberg.org/ebooks/17567', 'en', 1787), +(42509, 'The Conquest of Fear', 'King, Basil', '2006-02-01', 47, 'https://www.gutenberg.org/ebooks/9944', 'en', 15210), +(42510, 'Fort Sumter National Monument, South Carolina', 'Barnes, Frank', '2014-10-28', 24, 'https://www.gutenberg.org/ebooks/47217', 'en', 15211), +(42511, 'The Iliad', 'Homer', '2004-07-01', 6032, 'https://www.gutenberg.org/ebooks/6130', 'en', 2619), +(42512, 'Fred Markham in Russia; Or, The Boy Travellers in the Land of the Czar', 'Kingston, William Henry Giles', '2007-05-15', 23, 'https://www.gutenberg.org/ebooks/21461', 'en', 2788), +(42513, 'The Firing Line', 'Chambers, Robert W. (Robert William)', '2005-04-19', 24, 'https://www.gutenberg.org/ebooks/15654', 'en', 15212), +(42514, 'Naimapuuhat: 2-näytöksinen huvinäytelmä', 'Gogol, Nikolai Vasilevich', '2016-05-30', 6, 'https://www.gutenberg.org/ebooks/52193', 'fi', 2267), +(42515, 'Great Facts\r\nA Popular History and Description of the Most Remarkable Inventions During the Present Century', 'Bakewell, Frederick C. (Frederick Collier)', '2014-03-13', 40, 'https://www.gutenberg.org/ebooks/45124', 'en', 1739), +(42516, 'Wake-Robin', 'Burroughs, John', '2003-07-01', 65, 'https://www.gutenberg.org/ebooks/4203', 'en', 1216), +(42517, 'IBM System 360 RPG Debugging Template and Keypunch Card', 'Anonymous', '2011-09-22', 17, 'https://www.gutenberg.org/ebooks/37504', 'en', 15213), +(42518, 'Numantia', 'Cervantes Saavedra, Miguel de', '2016-09-13', 31, 'https://www.gutenberg.org/ebooks/53041', 'en', 15214), +(42519, 'Up the Chimney', 'Knapp, Shepherd', '2005-01-24', 7, 'https://www.gutenberg.org/ebooks/14786', 'en', 364), +(42520, 'The Story of Our Hymns', 'Ryden, Ernest Edwin', '2010-09-29', 15, 'https://www.gutenberg.org/ebooks/33998', 'en', 1303), +(42521, 'Notes on the Book of Deuteronomy, Volume II', 'Mackintosh, Charles Henry', '2012-12-09', 30, 'https://www.gutenberg.org/ebooks/41584', 'en', 11319), +(42522, 'Brown John\'s Body', 'Marks, Winston K. (Winston Kinney)', '2010-04-21', 49, 'https://www.gutenberg.org/ebooks/32076', 'en', 461), +(42523, 'Western Bird Guide: Birds of the Rockies and West to the Pacific', 'Reed, Charles K. (Charles Keller)', '2014-06-10', 10, 'https://www.gutenberg.org/ebooks/45918', 'en', 15215), +(42524, 'Pyhiinvaeltaja: Kuvitelmia Karjalasta', 'Railo, Eino', '2018-02-10', 4, 'https://www.gutenberg.org/ebooks/56533', 'fi', 175), +(42525, 'David: Five Sermons', 'Kingsley, Charles', '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/10326', 'en', 2745), +(42526, '九命奇冤', 'Wu, Jianren', '2008-01-02', 14, 'https://www.gutenberg.org/ebooks/24113', 'zh', 1003), +(42527, 'Titus Andronicus', 'Shakespeare, William', '1999-11-01', 23, 'https://www.gutenberg.org/ebooks/1771', 'en', 1298), +(42528, 'L\'anarchie', 'Reclus, Elisée', '2012-08-08', 99, 'https://www.gutenberg.org/ebooks/40456', 'fr', 11063), +(42529, 'Robert Burns', 'Setoun, Gabriel', '2009-12-20', 6, 'https://www.gutenberg.org/ebooks/30721', 'en', 5193), +(42530, 'Buchanan\'s Journal of Man, December 1887\nVolume 1, Number 11', NULL, '2009-01-13', 15, 'https://www.gutenberg.org/ebooks/27796', 'en', 3905), +(42531, 'Glimpses of America\r\nA Pictorial and Descriptive History of Our Country\'s Scenic Marvels', 'Buel, James W. (James William)', '2019-08-03', 591, 'https://www.gutenberg.org/ebooks/60051', 'en', 15216), +(42532, 'Ange Pitou', 'Dumas, Alexandre', '2017-03-01', 28, 'https://www.gutenberg.org/ebooks/54264', 'fi', 248), +(42533, 'What I Remember, Volume 2', 'Trollope, Thomas Adolphus', '2004-05-01', 22, 'https://www.gutenberg.org/ebooks/12471', 'en', 13095), +(42534, 'The Continental Monthly, Vol. III, No. V, May, 1863\nDevoted to Literature and National Policy', 'Various', '2006-08-21', 11, 'https://www.gutenberg.org/ebooks/19099', 'en', 558), +(42535, 'Friendship Village', 'Gale, Zona', '2008-09-17', 25, 'https://www.gutenberg.org/ebooks/26644', 'en', 112), +(42536, 'North of Boston', 'Frost, Robert', '2002-01-01', 126, 'https://www.gutenberg.org/ebooks/3026', 'en', 994), +(42537, 'Poems\nThird Edition', 'Smith, Alexander', '2013-03-10', 10, 'https://www.gutenberg.org/ebooks/42301', 'en', 8), +(42538, 'The Tiny Story Book.', 'Anonymous', '2007-11-05', 31, 'https://www.gutenberg.org/ebooks/23336', 'en', 859), +(42539, 'The Double Life Of Mr. Alfred Burton', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-11-19', 47, 'https://www.gutenberg.org/ebooks/17103', 'en', 128), +(42540, 'The Pinos Altos Story', 'Watson, Dorothy', '2014-12-16', 25, 'https://www.gutenberg.org/ebooks/47673', 'en', 15217), +(42541, 'Penrod', 'Tarkington, Booth', '2004-09-01', 3, 'https://www.gutenberg.org/ebooks/6554', 'en', 1080), +(42542, 'Great Musical Composers: German, French, and Italian', 'Ferris, George T. (George Titus)', '2010-11-20', 21, 'https://www.gutenberg.org/ebooks/34381', 'en', 4953), +(42543, 'The Continental Monthly, Vol. 1, No. 1, January 1862\r\nDevoted to Literature and National Policy', 'Various', '2006-08-03', 10, 'https://www.gutenberg.org/ebooks/18977', 'en', 558), +(42544, 'The Master of Silence: A Romance', 'Bacheller, Irving', '2005-02-01', 25, 'https://www.gutenberg.org/ebooks/7486', 'en', 2169), +(42545, 'Under a Charm: A Novel. Vol. III', 'Werner, E.', '2011-02-12', 6, 'https://www.gutenberg.org/ebooks/35253', 'en', 803), +(42546, 'Belgians Under the German Eagle', 'Massart, Jean', '2016-04-10', 8, 'https://www.gutenberg.org/ebooks/51716', 'en', 8641), +(42547, 'Psychology and Achievement\r\nBeing the First of a Series of Twelve Volumes on the Applications of Psychology to the Problems of Personal and Business Efficiency', 'Hilton, Warren', '2004-10-19', 117, 'https://www.gutenberg.org/ebooks/13791', 'en', 15218), +(42548, 'In the Clouds for Uncle Sam; or, Morey Marshall of the Signal Corps', 'Sayler, H. L. (Harry Lincoln)', '2017-01-26', 1, 'https://www.gutenberg.org/ebooks/54056', 'en', 2279), +(42549, 'Abraham Lincoln', 'Charnwood, Godfrey Rathbone Benson, Baron', '2006-05-11', 25, 'https://www.gutenberg.org/ebooks/18379', 'en', 1009), +(42550, 'Myths and Legends of British North America', NULL, '2015-03-05', 13, 'https://www.gutenberg.org/ebooks/48409', 'en', 1749), +(42551, '木蘭奇女傳', 'Anonymous', '2007-12-20', 64, 'https://www.gutenberg.org/ebooks/23938', 'zh', 15219), +(42552, 'De la Démocratie en Amérique, tome premier\r\net augmentée d\'un Avertissement et d\'un Examen comparatif\r\nde la Démocratie aux États-Unis et en Suisse', 'Tocqueville, Alexis de', '2009-11-21', 116, 'https://www.gutenberg.org/ebooks/30513', 'fr', 1720), +(42553, 'Mr. Honey\'s Insurance Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 23, 'https://www.gutenberg.org/ebooks/3214', 'en', 5219), +(42554, 'Bobs, a Girl Detective', 'North, Grace May', '2013-02-19', 17, 'https://www.gutenberg.org/ebooks/42133', 'en', 167), +(42555, 'Uusi Odysseus: Kuvaus napaseudulta', 'London, Jack', '2017-07-24', 16, 'https://www.gutenberg.org/ebooks/55184', 'fi', 15220), +(42556, 'Twenty', 'Benson, Stella', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/12643', 'en', 8), +(42557, 'Création et rédemption, deuxième partie: La fille du marquis', 'Dumas, Alexandre', '2008-08-29', 11, 'https://www.gutenberg.org/ebooks/26476', 'fr', 248), +(42558, 'Miten Uli-renki tulee onnelliseksi: Romaani', 'Gotthelf, Jeremias', '2014-11-23', 8, 'https://www.gutenberg.org/ebooks/47441', 'fi', 15221), +(42559, 'The Press-Gang Afloat and Ashore', 'Hutchinson, J. R. (John Robert)', '2004-10-01', 33, 'https://www.gutenberg.org/ebooks/6766', 'en', 8761), +(42560, 'The Blue Tower', 'Smith, Evelyn E.', '2007-10-20', 65, 'https://www.gutenberg.org/ebooks/23104', 'en', 179), +(42561, 'History of Egypt From 330 B.C. To the Present Time, Volume 11 (of 12)', 'Rappoport, A. S. (Angelo Solomon)', '2005-12-17', 27, 'https://www.gutenberg.org/ebooks/17331', 'en', 7030), +(42562, 'Sternsteinin kartano', 'Anzengruber, Ludwig', '2016-03-22', 2, 'https://www.gutenberg.org/ebooks/51524', 'fi', 821), +(42563, 'Two Years on Trek: Being Some Account of the Royal Sussex Regiment in South Africa', 'Du Moulin, Louis Eugène', '2011-01-24', 20, 'https://www.gutenberg.org/ebooks/35061', 'en', 13747), +(42564, 'Gedankengut aus meinen Wanderjahren. Erster Band', 'Dauthendey, Max', '2014-08-16', 19, 'https://www.gutenberg.org/ebooks/46593', 'de', 15222), +(42565, 'Footprints of Former Men in Far Cornwall', 'Hawker, Robert Stephen', '2014-04-04', 32, 'https://www.gutenberg.org/ebooks/45316', 'en', 2343), +(42566, 'The London Prodigal; \"by William Shakespeare.\" as it was played by the King\'s Majesties servants.', 'Unknown', '2003-05-01', 17, 'https://www.gutenberg.org/ebooks/4031', 'en', 15223), +(42567, 'The Eurhythmics of Jaques-Dalcroze', 'Jaques-Dalcroze, Émile', '2007-06-01', 60, 'https://www.gutenberg.org/ebooks/21653', 'en', 6664), +(42568, 'Victorian Short Stories of Troubled Marriages', NULL, '2005-03-26', 86, 'https://www.gutenberg.org/ebooks/15466', 'en', 409), +(42569, 'Navajo National Monument, Arizona (1951)', 'United States. National Park Service', '2019-06-13', 32, 'https://www.gutenberg.org/ebooks/59749', 'en', 15224), +(42570, 'Famous Assassinations of History from Philip of Macedon, 336 B. C., to Alexander of Servia, A. D. 1903', 'Johnson, Francis', '2016-10-13', 39, 'https://www.gutenberg.org/ebooks/53273', 'en', 15225), +(42571, 'Heidi\n(Gift Edition)', 'Spyri, Johanna', '2007-03-09', 785, 'https://www.gutenberg.org/ebooks/20781', 'en', 10623), +(42572, 'Bengal Dacoits and Tigers', 'Sunity Devee, Maharani of Cooch Behar', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/10928', 'en', 179), +(42573, 'Encyclopaedia Britannica, 11th Edition, \"French Literature\" to \"Frost, William\"\r\nVolume 11, Slice 2', 'Various', '2011-10-12', 83, 'https://www.gutenberg.org/ebooks/37736', 'en', 1081), +(42574, 'The Story of the Woman\'s Party', 'Gillmore, Inez Haynes', '2018-03-07', 16, 'https://www.gutenberg.org/ebooks/56701', 'en', 3357), +(42575, 'Un p\'tit homme', 'Jacob, P. L.', '2010-05-04', 18, 'https://www.gutenberg.org/ebooks/32244', 'fr', 15226), +(42576, 'Ο Βίος του Χριστού', 'Farrar, F. W. (Frederic William)', '2010-08-10', 33, 'https://www.gutenberg.org/ebooks/33396', 'el', 10446), +(42577, 'A Lover\'s Complaint', 'Shakespeare, William', '1998-11-01', 37, 'https://www.gutenberg.org/ebooks/1543', 'en', 466), +(42578, 'The Wee Scotch Piper', 'Brandeis, Madeline', '2012-09-04', 17, 'https://www.gutenberg.org/ebooks/40664', 'en', 15227), +(42579, 'The Great Events by Famous Historians, Volume 02\r\n(From the Rise of Greece to the Christian Era)', NULL, '2003-11-01', 50, 'https://www.gutenberg.org/ebooks/10114', 'en', 346), +(42580, 'Tea Leaves\nBeing a Collection of Letters and Documents relating to\nthe shipment of Tea to the American Colonies in the year\n1773, by the East India Tea Company. (With an introduction,\nnotes, and biographical notices of the Boston Tea Party)', 'Drake, Francis S. (Francis Samuel)', '2008-01-15', 41, 'https://www.gutenberg.org/ebooks/24321', 'en', 15228), +(42581, 'The Fifth Wheel: A Novel', 'Prouty, Olive Higgins', '2006-10-02', 34, 'https://www.gutenberg.org/ebooks/19436', 'en', 348), +(42582, 'The Social Secretary', 'Phillips, David Graham', '2017-10-09', 12, 'https://www.gutenberg.org/ebooks/55719', 'en', 48), +(42583, 'Hereward, the Last of the English', 'Kingsley, Charles', '2005-04-01', 53, 'https://www.gutenberg.org/ebooks/7815', 'en', 15229), +(42584, 'Nerone: commedia in cinque atti ed in versi, con prologo e note storiche', 'Cossa, Pietro', '2015-07-02', 7, 'https://www.gutenberg.org/ebooks/49346', 'it', 5587), +(42585, 'The Bible, King James version, Book 61: 2 Peter', 'Anonymous', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/8061', 'en', 4082), +(42586, 'Fabre, Poet of Science', 'Legros, Georges Victor', '2002-10-01', 11, 'https://www.gutenberg.org/ebooks/3489', 'en', 15230), +(42587, 'Sir Christopher: A Romance of a Maryland Manor in 1644', 'Goodwin, Maud Wilder', '2015-02-17', 24, 'https://www.gutenberg.org/ebooks/48294', 'en', 6876), +(42588, 'Dorothy and the Wizard in Oz', 'Baum, L. Frank (Lyman Frank)', '1996-02-01', 430, 'https://www.gutenberg.org/ebooks/420', 'en', 1430), +(42589, 'The Pagan Madonna', 'MacGrath, Harold', '2008-11-27', 17, 'https://www.gutenberg.org/ebooks/27339', 'en', 3828), +(42590, 'Book of Etiquette, Volume II', 'Watson, Lillian Eichler', '2004-12-01', 18, 'https://www.gutenberg.org/ebooks/7029', 'en', 788), +(42591, 'Cry from a Far Planet', 'Godwin, Tom', '2007-12-10', 60, 'https://www.gutenberg.org/ebooks/23799', 'en', 67), +(42592, 'Le avventure d\'Alice nel paese delle meraviglie', 'Carroll, Lewis', '2009-03-20', 314, 'https://www.gutenberg.org/ebooks/28371', 'it', 388), +(42593, 'African and European Addresses', 'Roosevelt, Theodore', '2004-11-03', 19, 'https://www.gutenberg.org/ebooks/13930', 'en', 8061), +(42594, 'Lee and Longstreet at High Tide: Gettysburg in the Light of the Official Records', 'Longstreet, Helen Dortch', '2013-12-18', 18, 'https://www.gutenberg.org/ebooks/44459', 'en', 8945), +(42595, 'Die Siedler von Hohenmoor: Ein Buch des Zornes und der Zuversicht', 'Dreyer, Max', '2018-09-09', 10, 'https://www.gutenberg.org/ebooks/57872', 'de', 549), +(42596, 'The Glorious Law-Giver, and the Obedient Subject\r\nBeing the Substance of a Sermon, on the Duty of All Believers to Commemorate the Death of the Redeemer, in the Lord\'s Supper. Intending to Set Forth the Authority of Christ; the Nature of the Ordinance; and a Description of the Persons Who Have a Right to Partake of the Same.', 'Church, J. (John)', '2018-10-02', 5, 'https://www.gutenberg.org/ebooks/58006', 'en', 2386), +(42597, 'Viajes de un Colombiano en Europa, primera serie', 'Samper, José María', '2004-12-11', 59, 'https://www.gutenberg.org/ebooks/14329', 'es', 1408), +(42598, 'The Confounding of Camelia', 'Sedgwick, Anne Douglas', '2013-01-26', 11, 'https://www.gutenberg.org/ebooks/41917', 'en', 348), +(42599, 'Love and hatred', 'Lowndes, Marie Belloc', '2011-05-11', 17, 'https://www.gutenberg.org/ebooks/36079', 'en', 109), +(42600, 'The Head of the Family\nSailor\'s Knots, Part 9.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10789', 'en', 72), +(42601, 'The American Reformed Cattle Doctor\r\nContaining the necessary information for preserving the health and curing the diseases of oxen, cows, sheep, and swine, with a great variety of original recipes, and valuable information in reference to farm and dairy management', 'Dadd, George H.', '2011-11-12', 15, 'https://www.gutenberg.org/ebooks/37997', 'en', 10916), +(42602, 'Morale: A Story of the War of 1941-43', 'Leinster, Murray', '2007-03-28', 44, 'https://www.gutenberg.org/ebooks/20920', 'en', 2564), +(42603, 'La dégringolade', 'Gaboriau, Emile', '2012-03-02', 17, 'https://www.gutenberg.org/ebooks/39031', 'fr', 557), +(42604, 'Χριστουγεννιάτικα διηγήματα', 'Papadiamantes, Alexandros', '2011-07-25', 17, 'https://www.gutenberg.org/ebooks/36845', 'el', 179), +(42605, 'Tulevaisuudentoiveita', 'Poulsen, Ellen Kruuse', '2018-11-04', 2, 'https://www.gutenberg.org/ebooks/58234', 'fi', 15231), +(42606, 'The Executioner\'s Knife; Or, Joan of Arc', 'Sue, Eugène', '2011-09-11', 36, 'https://www.gutenberg.org/ebooks/37399', 'en', 459), +(42607, 'Punch, or the London Charivari, Volume 1, September 12, 1841', 'Various', '2005-02-07', 12, 'https://www.gutenberg.org/ebooks/14927', 'en', 134), +(42608, 'Cuba: Its Past, Present, and Future', 'Hall, A. D. (Arthur D.)', '2010-09-16', 11, 'https://www.gutenberg.org/ebooks/33739', 'en', 995), +(42609, 'Boy Scouts on Motorcycles; Or, With the Flying Squadron', 'Ralphson, G. Harvey (George Harvey)', '2004-03-01', 38, 'https://www.gutenberg.org/ebooks/11469', 'en', 5716), +(42610, 'An Edinburgh Eleven: Pencil Portraits from College Life', 'Barrie, J. M. (James Matthew)', '2012-03-19', 31, 'https://www.gutenberg.org/ebooks/39203', 'en', 15232), +(42611, 'The Inner Consciousness: How to Awaken and Direct It', 'Prakashananda, Swami', '2012-11-08', 61, 'https://www.gutenberg.org/ebooks/41319', 'en', 15233), +(42612, 'Wagner and His Music-Dramas', 'Bagar, Robert C.', '2015-06-09', 8, 'https://www.gutenberg.org/ebooks/49174', 'en', 15234), +(42613, 'The World English Bible (WEB): Ezekiel', 'Anonymous', '2005-06-01', 22, 'https://www.gutenberg.org/ebooks/8253', 'en', 11615), +(42614, 'Racconti e novelle', 'Ghislanzoni, Antonio', '2014-09-19', 12, 'https://www.gutenberg.org/ebooks/46900', 'it', 474), +(42615, 'Louis Riel, Martyr du Nord-Ouest\nSa vie, son procès, sa mort', 'Anonymous', '2006-10-22', 20, 'https://www.gutenberg.org/ebooks/19604', 'fr', 15235), +(42616, 'The Constitution of Japan, 1946', 'Japan', '1996-08-01', 63, 'https://www.gutenberg.org/ebooks/612', 'en', 15236), +(42617, 'The Atlantic Monthly, Volume 04, No. 24, October, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-11-01', 9, 'https://www.gutenberg.org/ebooks/9381', 'en', 1227), +(42618, 'Cleopatra', 'Haggard, H. Rider (Henry Rider)', '2006-03-28', 72, 'https://www.gutenberg.org/ebooks/2769', 'en', 6232), +(42619, 'The German Pirate: His Methods and Record', 'Ajax', '2016-01-07', 11, 'https://www.gutenberg.org/ebooks/50865', 'en', 2511), +(42620, 'The Psychical Researcher\'s Tale - The Sceptical Poltergeist\nFrom \"The New Decameron\", Volume III.', 'Beresford, J. D. (John Davys)', '2007-08-31', 19, 'https://www.gutenberg.org/ebooks/22479', 'en', 784), +(42621, 'The Catholic World, Vol. 16, October 1872-March 1873', 'Various', '2015-09-12', 2, 'https://www.gutenberg.org/ebooks/49948', 'en', 96), +(42622, 'The Complete Poetical Works of Samuel Taylor Coleridge. Vol 1 (of 2)', 'Coleridge, Samuel Taylor', '2009-06-11', 28, 'https://www.gutenberg.org/ebooks/29091', 'en', 532), +(42623, 'Ποιήματα και Πεζά τινα', 'Velaras, Ioannes', '2010-04-01', 7, 'https://www.gutenberg.org/ebooks/31852', 'el', 8746), +(42624, 'Wiersz do Króla Pruskiego\r\nNapisany Przy Zdobyciu Arsenału Dnia 14 Czerwca 1848 W Berlinie', 'Anczyc, Wł. L. (Władysław Ludwik)', '2009-01-30', 14, 'https://www.gutenberg.org/ebooks/27937', 'pl', 8), +(42625, 'How to Behave and How to Amuse: A Handy Manual of Etiquette and Parlor Games', 'Sandison, George H. (George Henry)', '2015-09-26', 36, 'https://www.gutenberg.org/ebooks/50059', 'en', 1560), +(42626, 'Kidnapped at the Altar; Or, The Romance of that Saucy Jessie Bain', 'Libbey, Laura Jean', '2010-01-15', 24, 'https://www.gutenberg.org/ebooks/30980', 'en', 323), +(42627, 'The Nursery, April 1878, Vol. XXIII. No. 4\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 5, 'https://www.gutenberg.org/ebooks/28143', 'en', 4641), +(42628, 'U.S. Copyright Renewals, 1965 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11831', 'en', 4170), +(42629, 'London in the Time of the Stuarts', 'Besant, Walter', '2019-06-19', 102, 'https://www.gutenberg.org/ebooks/59782', 'en', 15237), +(42630, 'Rivers of Ice', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 21, 'https://www.gutenberg.org/ebooks/21698', 'en', 470), +(42631, 'Introduction to the study of the history of language', 'Wheeler, Benjamin Ide', '2019-01-08', 30, 'https://www.gutenberg.org/ebooks/58650', 'en', 8656), +(42632, 'The Young Carthaginian: A Story of The Times of Hannibal', 'Henty, G. A. (George Alfred)', '2004-02-01', 53, 'https://www.gutenberg.org/ebooks/5128', 'en', 15238), +(42633, 'A batalha de Toro', 'Barata, António Francisco', '2008-04-29', 20, 'https://www.gutenberg.org/ebooks/25238', 'pt', 15239), +(42634, 'Vier Jahre Politischer Mord', 'Gumbel, Emil Julius', '2012-05-11', 28, 'https://www.gutenberg.org/ebooks/39667', 'de', 15240), +(42635, 'A Rogue\'s Life', 'Collins, Wilkie', '2006-02-22', 47, 'https://www.gutenberg.org/ebooks/1588', 'en', 15241), +(42636, 'The Murray River\r\nBeing a Journal of the Voyage of the \"Lady Augusta\" Steamer from the Goolwa, in South Australia, to Gannewarra, above Swan Hill, Victoria, a Distance from the Sea Mouth of 1400 Miles', 'Kinloch, Arthur, active 19th century', '2018-08-01', 16, 'https://www.gutenberg.org/ebooks/57618', 'en', 15242), +(42637, 'The History of Don Quixote, Volume 1, Part 12', 'Cervantes Saavedra, Miguel de', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5914', 'en', 361), +(42638, 'Brenda, Her School and Her Club', 'Reed, Helen Leah', '2011-01-13', 20, 'https://www.gutenberg.org/ebooks/34944', 'en', 2154), +(42639, 'Franz Haydn\'s 104th Symphony [1794-5]\nMIDI file', 'Haydn, Joseph', '1995-06-01', 29, 'https://www.gutenberg.org/ebooks/276', 'en', 3385), +(42640, 'Racconti', 'Percoto, Caterina', '2015-07-23', 14, 'https://www.gutenberg.org/ebooks/49510', 'it', 474), +(42641, 'The Blot on the Kaiser\'s \'Scutcheon', 'Hillis, Newell Dwight', '2007-10-01', 29, 'https://www.gutenberg.org/ebooks/22821', 'en', 14761), +(42642, 'Through the Magic Door', 'Doyle, Arthur Conan', '2005-08-01', 6, 'https://www.gutenberg.org/ebooks/8637', 'en', 6644), +(42643, 'Vänrikki Stoolin tarinat (suom. Cajander)', 'Runeberg, Johan Ludvig', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/12688', 'fi', 1742), +(42644, 'The Great Captain: A Story of the Days of Sir Walter Raleigh', 'Tynan, Katharine', '2011-04-17', 18, 'https://www.gutenberg.org/ebooks/35896', 'en', 15243), +(42645, 'Synnöve Päiväkumpu', 'Bjørnson, Bjørnstjerne', '2006-09-12', 13, 'https://www.gutenberg.org/ebooks/19260', 'fi', 15244), +(42646, 'Græsk Mythologi', 'Holten-Bechtolsheim, Hans', '2010-10-31', 11, 'https://www.gutenberg.org/ebooks/34178', 'da', 3412), +(42647, 'The Story of Nathan Hale', 'Carlton, Henry Fisk', '2009-04-07', 7, 'https://www.gutenberg.org/ebooks/28527', 'en', 4049), +(42648, 'Incredible Adventures', 'Blackwood, Algernon', '2013-09-26', 121, 'https://www.gutenberg.org/ebooks/43816', 'en', 114), +(42649, 'Chambers\'s Edinburgh Journal, No. 422\r\nVolume 17, New Series, January 31, 1852', 'Various', '2005-07-07', 4, 'https://www.gutenberg.org/ebooks/16228', 'en', 18), +(42650, 'The Demi-gods', 'Stephens, James', '2014-08-11', 21, 'https://www.gutenberg.org/ebooks/46558', 'en', 15245), +(42651, 'Shinto: The ancient religion of Japan', 'Aston, W. G. (William George)', '2017-11-15', 39, 'https://www.gutenberg.org/ebooks/55973', 'en', 15246), +(42652, 'The Boy Patrol Around the Council Fire', 'Ellis, Edward Sylvester', '2013-07-14', 15, 'https://www.gutenberg.org/ebooks/43218', 'en', 1002), +(42653, 'Woman Suffrage By Federal Constitutional Amendment', NULL, '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/13568', 'en', 3357), +(42654, 'Tom Slade on Mystery Trail', 'Fitzhugh, Percy Keese', '2006-04-15', 15, 'https://www.gutenberg.org/ebooks/18180', 'en', 7327), +(42655, 'Stories That Words Tell Us', 'O\'Neill, Elizabeth (Elizabeth Speakman)', '2006-08-15', 44, 'https://www.gutenberg.org/ebooks/19052', 'en', 4211), +(42656, 'Briefe aus Aulestad an seine Tochter Bergliot Ibsen', 'Bjørnson, Bjørnstjerne', '2015-08-17', 4, 'https://www.gutenberg.org/ebooks/49722', 'de', 15247), +(42657, 'Journalism for Women: A Practical Guide', 'Bennett, Arnold', '2005-07-01', 38, 'https://www.gutenberg.org/ebooks/8405', 'en', 15248), +(42658, 'Face au drapeau', 'Verne, Jules', '2005-10-08', 13, 'https://www.gutenberg.org/ebooks/16826', 'fr', 26), +(42659, 'Sanoma merellä', 'Dickens, Charles', '2010-03-14', 25, 'https://www.gutenberg.org/ebooks/31638', 'fi', 324), +(42660, 'Studies and Essays: The Inn of Tranquility, and Others', 'Galsworthy, John', '2004-09-24', 29, 'https://www.gutenberg.org/ebooks/2903', 'en', 179), +(42661, 'De Boeventaal\r\nZakwoordenboekje van het Bargoensch, of De taal van de jongens van de vlakte', 'Köster Henke, W. L. H.', '2009-05-08', 23, 'https://www.gutenberg.org/ebooks/28715', 'nl', 15249), +(42662, 'Yankee Gypsies', 'Whittier, John Greenleaf', '1997-04-01', 105, 'https://www.gutenberg.org/ebooks/878', 'en', 15250), +(42663, 'Rambles and Studies in Greece', 'Mahaffy, J. P. (John Pentland)', '2011-02-16', 72, 'https://www.gutenberg.org/ebooks/35298', 'en', 4713), +(42664, 'Blind Policy', 'Fenn, George Manville', '2010-06-18', 4, 'https://www.gutenberg.org/ebooks/32881', 'en', 11283), +(42665, 'Scapinin vehkeilyt: Kolminäytöksinen komedia', 'Molière', '2016-05-25', 6, 'https://www.gutenberg.org/ebooks/52158', 'fi', 15251), +(42666, 'Young Hilda at the Wars', 'Gleason, Arthur', '2008-06-19', 4, 'https://www.gutenberg.org/ebooks/25836', 'en', 579), +(42667, 'Sermons on Biblical Characters', 'Chappell, Clovis Gillham', '2007-02-14', 17, 'https://www.gutenberg.org/ebooks/20578', 'en', 15252), +(42668, 'The Story of Valentine and His Brother', 'Oliphant, Mrs. (Margaret)', '2018-12-12', 9, 'https://www.gutenberg.org/ebooks/58462', 'en', 400), +(42669, 'The Boke of Noblesse\r\nAddressed to King Edward the Fourth on His Invasion of France in 1475', NULL, '2010-10-01', 10, 'https://www.gutenberg.org/ebooks/33953', 'en', 15253), +(42670, 'Is Life Worth Living Without Immortality?\nA Lecture Delivered Before the Independent Religious Society, Chicago', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2012-04-16', 11, 'https://www.gutenberg.org/ebooks/39455', 'en', 1616), +(42671, 'Patty\'s Motor Car', 'Wells, Carolyn', '2016-09-02', 19, 'https://www.gutenberg.org/ebooks/52964', 'en', 15254), +(42672, 'Four Hundred Humorous Illustrations\nWith Portrait and Biographical Sketch', NULL, '2014-01-30', 22, 'https://www.gutenberg.org/ebooks/44801', 'en', 1688), +(42673, 'The Victory At Sea', 'Sims, William Sowden', '2012-01-15', 10, 'https://www.gutenberg.org/ebooks/38587', 'en', 2511), +(42674, 'Harper\'s Young People, April 19, 1881\nAn Illustrated Weekly', 'Various', '2014-04-06', 5, 'https://www.gutenberg.org/ebooks/45329', 'en', 479), +(42675, 'Cham et Japhet, ou De l\'émigration des nègres chez les blancs considérée comme moyen providentiel de régénérer la race nègre et de civiliser l\'Afrique intérieure.', 'Chancel, A. de (Ausone)', '2005-03-24', 17, 'https://www.gutenberg.org/ebooks/15459', 'fr', 15255), +(42676, 'Moorish Remains in Spain', 'Calvert, Albert Frederick', '2019-06-18', 85, 'https://www.gutenberg.org/ebooks/59776', 'en', 15256), +(42677, 'Die Familie Pfäffling: Eine deutsche Wintergeschichte', 'Sapper, Agnes', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/10917', 'de', 13090), +(42678, 'Leo XIII., the Great Leader', 'Doyle, A. P., Rev.', '2011-10-11', 4, 'https://www.gutenberg.org/ebooks/37709', 'en', 15257), +(42679, 'The Rise of the Dutch Republic — Volume 30: 1579-80', 'Motley, John Lothrop', '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/4832', 'en', 6577), +(42680, 'Mildred Arkell: A Novel. Vol. 3 (of 3)', 'Wood, Henry, Mrs.', '2012-05-14', 15, 'https://www.gutenberg.org/ebooks/39693', 'en', 61), +(42681, 'Diario de la expedicion de 1822 a los campos del sud de Buenos Aires\nDesde Moron hasta la Sierra de la Ventana', 'García, Pedro Andrés', '2013-01-06', 17, 'https://www.gutenberg.org/ebooks/41789', 'es', 15258), +(42682, 'The Isle of Palms, and Other Poems', 'Wilson, John', '2012-02-02', 9, 'https://www.gutenberg.org/ebooks/38741', 'en', 11268), +(42683, 'The Boy Inventors\' Diving Torpedo Boat', 'Bonner, Richard', '2017-01-28', 7, 'https://www.gutenberg.org/ebooks/54069', 'en', 2548), +(42684, 'Eothen; Or, Traces of Travel Brought Home from the East', 'Kinglake, Alexander William', '1995-06-01', 84, 'https://www.gutenberg.org/ebooks/282', 'en', 2204), +(42685, 'Null-ABC', 'McGuire, John Joseph', '2006-05-08', 70, 'https://www.gutenberg.org/ebooks/18346', 'en', 15259), +(42686, 'The Holly-Tree', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9711', 'en', 585), +(42687, 'The Earl of Beaconsfield', 'Froude, James Anthony', '2015-03-08', 12, 'https://www.gutenberg.org/ebooks/48436', 'en', 10210), +(42688, '無聲戲', 'Li, Yu', '2007-12-19', 22, 'https://www.gutenberg.org/ebooks/23907', 'zh', 1003), +(42689, 'Rambles of an Archaeologist Among Old Books and in Old Places\r\nBeing Papers on Art, in Relation to Archaeology, Painting, Art-Decoration, and Art-Manufacture', 'Fairholt, F. W. (Frederick William)', '2008-08-28', 18, 'https://www.gutenberg.org/ebooks/26449', 'en', 787), +(42690, 'The Outdoor Girls on Pine Island; Or, A Cave and What It Contained', 'Hope, Laura Lee', '2006-09-16', 24, 'https://www.gutenberg.org/ebooks/19294', 'en', 8615), +(42691, 'Celtic Folk and Fairy Tales', NULL, '2011-04-13', 115, 'https://www.gutenberg.org/ebooks/35862', 'en', 3203), +(42692, 'The Adventures of Ferdinand Count Fathom — Volume 01', 'Smollett, T. (Tobias)', '2004-10-01', 20, 'https://www.gutenberg.org/ebooks/6759', 'en', 323), +(42693, 'The New Abelard: A Romance, Volume 1 (of 3)', 'Buchanan, Robert Williams', '2017-06-06', 10, 'https://www.gutenberg.org/ebooks/54855', 'en', 109), +(42694, 'The Solar Magnet', 'Meek, S. P. (Sterner St. Paul)', '2009-07-13', 45, 'https://www.gutenberg.org/ebooks/29401', 'en', 26), +(42695, 'Plotinos: Complete Works, v. 1\nIn Chronological Order, Grouped in Four Periods', 'Plotinus', '2013-06-13', 114, 'https://www.gutenberg.org/ebooks/42930', 'en', 5079), +(42696, 'Letters of Asa Gray; Vol. 2', 'Gray, Asa', '2017-11-17', 14, 'https://www.gutenberg.org/ebooks/55987', 'en', 15260), +(42697, 'Kotikuusen kuiskehia', 'Hahnsson, Theodolinda', '2006-03-02', 7, 'https://www.gutenberg.org/ebooks/17900', 'fi', 402), +(42698, 'The Christmas Books of Mr. M.A. Titmarsh', 'Thackeray, William Makepeace', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9523', 'en', 4477), +(42699, 'The Daughters of the Little Grey House', 'Taggart, Marion Ames', '2015-03-29', 12, 'https://www.gutenberg.org/ebooks/48604', 'en', 389), +(42700, 'Some Winter Days in Iowa', 'Lazell, Frederick John', '2006-04-14', 21, 'https://www.gutenberg.org/ebooks/18174', 'en', 15261), +(42701, 'Niels Lyhne', 'Jacobsen, J. P. (Jens Peter)', '2017-08-19', 100, 'https://www.gutenberg.org/ebooks/55389', 'en', 15262), +(42702, 'Pointed Roofs: Pilgrimage, Volume 1', 'Richardson, Dorothy M. (Dorothy Miller)', '2002-01-01', 88, 'https://www.gutenberg.org/ebooks/3019', 'en', 2019), +(42703, 'Klokje Bim-Bam\nRijmpjes en plaatjes van Alfred Listal', NULL, '2007-11-03', 9, 'https://www.gutenberg.org/ebooks/23309', 'nl', 3078), +(42704, 'Damn! A Book of Calumny', 'Mencken, H. L. (Henry Louis)', '2006-07-31', 83, 'https://www.gutenberg.org/ebooks/18948', 'en', 20), +(42705, 'The Beginnings of Cheap Steel', 'Bishop, Philip W.', '2009-08-08', 30, 'https://www.gutenberg.org/ebooks/29633', 'en', 15263), +(42706, 'Demonien ruhtinatar: Kertomus', 'Gogol, Nikolai Vasilevich', '2016-04-11', 3, 'https://www.gutenberg.org/ebooks/51729', 'fi', 461), +(42707, 'Pygmalion', 'Shaw, Bernard', '2003-03-01', 1418, 'https://www.gutenberg.org/ebooks/3825', 'en', 15264), +(42708, 'Viisikymmentä runoa ja kuusi laulua', 'Korhonen, Paavo', '2019-05-19', 5, 'https://www.gutenberg.org/ebooks/59544', 'fi', 1171), +(42709, 'Ten Years\' Captivity in the Mahdi\'s Camp 1882-1892', 'Ohrwalder, Josef', '2010-06-18', 22, 'https://www.gutenberg.org/ebooks/32875', 'en', 15265), +(42710, 'The Last Woman', 'Beeckman, Ross', '2008-03-24', 11, 'https://www.gutenberg.org/ebooks/24910', 'en', 48), +(42711, 'Revolted Woman: Past, present, and to come', 'Harper, Charles G. (Charles George)', '2018-12-19', 10, 'https://www.gutenberg.org/ebooks/58496', 'en', 1619), +(42712, 'The Lay of Havelok the Dane', NULL, '2010-04-19', 38, 'https://www.gutenberg.org/ebooks/32049', 'en', 15266), +(42713, 'Le château de Coucy', 'Lefèvre-Pontalis, Eugène Amédée', '2016-09-05', 4, 'https://www.gutenberg.org/ebooks/52990', 'fr', 15267), +(42714, 'Seets i\' Paris\r\nSammywell Grimes\'s trip with his old chum Billy Baccus, his opinion o\' th\' French, and th\' French opinion o\' th\' exhibition he made ov hissen', 'Hartley, John', '2014-06-10', 16, 'https://www.gutenberg.org/ebooks/45927', 'en', 560), +(42715, 'Dave Darrin\'s Third Year at Annapolis; Or, Leaders of the Second Class Midshipmen', 'Hancock, H. Irving (Harrie Irving)', '2003-11-01', 27, 'https://www.gutenberg.org/ebooks/10319', 'en', 9913); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(42716, 'An Historical Summary of the Post Office in Scotland', 'Lang, T. B. (Thomas Bamford)', '2012-08-10', 10, 'https://www.gutenberg.org/ebooks/40469', 'en', 15268), +(42717, 'Christina', 'Moberly, L. G. (Lucy Gertrude)', '2012-01-14', 20, 'https://www.gutenberg.org/ebooks/38573', 'en', 1902), +(42718, 'Anakreons sånger', 'Anacreon', '2016-12-30', 21, 'https://www.gutenberg.org/ebooks/53842', 'sv', 15269), +(42719, 'Awful Disclosures of the Hotel Dieu Nunnery of Montreal\r\nContaining, Also, Many Incidents Never before Published', 'Monk, Maria', '2005-05-01', 37, 'https://www.gutenberg.org/ebooks/8095', 'en', 15270), +(42720, 'Moby Dick', 'Melville, Herman', '2005-10-01', 64, 'https://www.gutenberg.org/ebooks/9147', 'en', 5796), +(42721, 'Wednesday the Tenth, A Tale of the South Pacific', 'Allen, Grant', '2013-09-10', 7, 'https://www.gutenberg.org/ebooks/43688', 'en', 15271), +(42722, 'Geoffrey the Lollard', 'Eastwood, Frances', '2015-02-14', 12, 'https://www.gutenberg.org/ebooks/48260', 'en', 15272), +(42723, 'France and England in North America, Part II: The Jesuits in North America in the Seventeenth Century', 'Parkman, Francis', '2004-11-01', 49, 'https://www.gutenberg.org/ebooks/6933', 'en', 15273), +(42724, 'The Chequers\nBeing the Natural History of a Public-House, Set Forth in\na Loafer\'s Diary', 'Runciman, James', '2006-06-05', 20, 'https://www.gutenberg.org/ebooks/18510', 'en', 8215), +(42725, 'The Devil\'s Pool', 'Sand, George', '2004-07-04', 31, 'https://www.gutenberg.org/ebooks/12816', 'en', 8575), +(42726, 'Masterman and Son', 'Dawson, W. J. (William James)', '2011-08-21', 3, 'https://www.gutenberg.org/ebooks/35608', 'en', 2079), +(42727, 'The Book of Khalid', 'Rihani, Ameen Fares', '2009-06-27', 40, 'https://www.gutenberg.org/ebooks/29257', 'en', 13789), +(42728, 'My Life as an Author', 'Tupper, Martin Farquhar', '2006-01-20', 29, 'https://www.gutenberg.org/ebooks/17558', 'en', 15274), +(42729, 'The Hunter Cats of Connorloa', 'Jackson, Helen Hunt', '2009-03-22', 37, 'https://www.gutenberg.org/ebooks/28385', 'en', 5346), +(42730, 'Indian Myth and Legend', 'Mackenzie, Donald A. (Donald Alexander)', '2014-10-29', 127, 'https://www.gutenberg.org/ebooks/47228', 'en', 5889), +(42731, 'A History of Jefferson, Marion County, Texas, 1836-1936', 'McKay, Arch, Mrs.', '2018-09-11', 5, 'https://www.gutenberg.org/ebooks/57886', 'en', 15275), +(42732, 'The Wiles of the Wicked', 'Le Queux, William', '2012-09-22', 14, 'https://www.gutenberg.org/ebooks/40831', 'en', 167), +(42733, 'The Architecture of Colonial America', 'Eberlein, Harold Donaldson', '2019-03-24', 25, 'https://www.gutenberg.org/ebooks/59120', 'en', 5506), +(42734, 'Personal Narrative of a Pilgrimage to Al-Madinah & Meccah — Volume 2', 'Burton, Richard Francis, Sir', '2003-11-01', 61, 'https://www.gutenberg.org/ebooks/4658', 'en', 5489), +(42735, 'The Journal of Prison Discipline and Philanthropy (New Series, No. 3, January 1864)', 'Pennsylvania Prison Society', '2018-04-10', 8, 'https://www.gutenberg.org/ebooks/56954', 'en', 4611), +(42736, '\"Shiloh\" as Seen by a Private Soldier\r\nWith Some Personal Reminiscences', 'Olney, Warren', '2008-02-08', 18, 'https://www.gutenberg.org/ebooks/24548', 'en', 15181), +(42737, 'Miss Arnott\'s Marriage', 'Marsh, Richard', '2011-11-09', 45, 'https://www.gutenberg.org/ebooks/37963', 'en', 1902), +(42738, 'The Book of Life', 'Sinclair, Upton', '2011-11-23', 99, 'https://www.gutenberg.org/ebooks/38117', 'en', 295), +(42739, 'Coming of Age: 1939-1946', 'Cox, John', '2007-07-06', 206, 'https://www.gutenberg.org/ebooks/21806', 'en', 15276), +(42740, 'The Viking Age. Volume 2 (of 2)\r\nThe early history, manners, and customs of the ancestors of the English-speaking nations', 'Du Chaillu, Paul B. (Paul Belloni)', '2017-12-13', 23, 'https://www.gutenberg.org/ebooks/56168', 'en', 14358), +(42741, 'Der Stechlin: Roman', 'Fontane, Theodor', '2016-11-28', 112, 'https://www.gutenberg.org/ebooks/53628', 'de', 138), +(42742, 'Many Voices: Poems', 'Nesbit, E. (Edith)', '1999-10-01', 38, 'https://www.gutenberg.org/ebooks/1924', 'en', 54), +(42743, 'Cancer: Its Cause and Treatment, Volume 2 (of 2)', 'Bulkley, Lucius Duncan', '2019-04-20', 21, 'https://www.gutenberg.org/ebooks/59312', 'en', 15277), +(42744, 'Among the Sioux: A Story of the Twin Cities and the Two Dakotas', 'Creswell, R. J. (Robert J.)', '2007-04-24', 13, 'https://www.gutenberg.org/ebooks/21208', 'en', 15278), +(42745, 'The Happy Warrior', 'Hutchinson, A. S. M. (Arthur Stuart-Menteth)', '2011-12-17', 14, 'https://www.gutenberg.org/ebooks/38325', 'en', 61), +(42746, 'Much Ado about Nothing', 'Shakespeare, William', '1997-11-01', 56, 'https://www.gutenberg.org/ebooks/1118', 'en', 15279), +(42747, 'Indians of the Mesa Verde', 'Watson, Don', '2018-06-07', 11, 'https://www.gutenberg.org/ebooks/57288', 'en', 15280), +(42748, 'Winning His \"W\": A Story of Freshman Year at College', 'Tomlinson, Everett T. (Everett Titsworth)', '2005-05-08', 11, 'https://www.gutenberg.org/ebooks/15801', 'en', 3529), +(42749, 'The Cornish Fishermen\'s Watch-Night, and Other Stories', 'Anonymous', '2013-04-20', 18, 'https://www.gutenberg.org/ebooks/42568', 'en', 409), +(42750, 'A Select Collection of Old English Plays, Volume 15', 'Dodsley, Robert', '2015-06-09', 19, 'https://www.gutenberg.org/ebooks/49180', 'en', 1088), +(42751, 'Dave Porter At Bear Camp; Or, The Wild Man of Mirror Lake', 'Stratemeyer, Edward', '2009-08-30', 14, 'https://www.gutenberg.org/ebooks/29859', 'en', 7327), +(42752, 'The Golden Flood', 'Lefevre, Edwin', '2016-05-02', 8, 'https://www.gutenberg.org/ebooks/51943', 'en', 1719), +(42753, 'Pastoral Poetry & Pastoral Drama\r\nA Literary Inquiry, with Special Reference to the Pre-Restoration\r\nStage in England', 'Greg, W. W. (Walter Wilson)', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12218', 'en', 15281), +(42754, 'Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad.\nThe East River Tunnels. Paper No. 1159', 'Woodard, S. H.', '2006-07-01', 14, 'https://www.gutenberg.org/ebooks/18722', 'en', 8219), +(42755, 'A Tender Attachment: A Farce', 'Baker, George M. (George Melville)', '2014-12-31', 10, 'https://www.gutenberg.org/ebooks/47826', 'en', 868), +(42756, 'Viehättävä rouva y.m. luonnekuvia', 'Jerome, Jerome K. (Jerome Klapka)', '2016-01-10', 4, 'https://www.gutenberg.org/ebooks/50891', 'fi', 797), +(42757, 'The House in Town', 'Warner, Susan', '2009-10-01', 38, 'https://www.gutenberg.org/ebooks/30148', 'en', 195), +(42758, 'Ausgewählte Fabeln', 'Lessing, Gotthold Ephraim', '2005-11-01', 43, 'https://www.gutenberg.org/ebooks/9375', 'de', 1141), +(42759, 'I Havsbandet', 'Strindberg, August', '2015-01-23', 12, 'https://www.gutenberg.org/ebooks/48052', 'sv', 15282), +(42760, 'Bremen Cotton Exchange, 1872/1922', 'Cramer, Andreas Wilhelm', '2009-06-07', 8, 'https://www.gutenberg.org/ebooks/29065', 'en', 15283), +(42761, 'Claire d\'Albe', 'Cottin, Madame (Sophie)', '2008-10-07', 11, 'https://www.gutenberg.org/ebooks/26811', 'fr', 5128), +(42762, 'Jimbo: A Fantasy', 'Blackwood, Algernon', '2010-01-15', 28, 'https://www.gutenberg.org/ebooks/30974', 'en', 3210), +(42763, 'De la Démocratie en Amérique, tome deuxième', 'Tocqueville, Alexis de', '2009-11-21', 89, 'https://www.gutenberg.org/ebooks/30514', 'fr', 9457), +(42764, 'Perils of Certain English Prisoners', 'Dickens, Charles', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9729', 'en', 137), +(42765, 'International Weekly Miscellany of Literature, Art and Science - Volume 1, No. 8, August 19, 1850', 'Various', '2004-10-19', 5, 'https://www.gutenberg.org/ebooks/13796', 'en', 899), +(42766, 'The Professor\'s Mystery', 'Hastings, Wells', '2011-01-17', 15, 'https://www.gutenberg.org/ebooks/34988', 'en', 2300), +(42767, 'The Book of the Sailboat: How to rig, sail and handle small boats', 'Verrill, A. Hyatt (Alpheus Hyatt)', '2017-01-25', 56, 'https://www.gutenberg.org/ebooks/54051', 'en', 2355), +(42768, 'Spoon River Anthology', 'Masters, Edgar Lee', '2008-09-01', 9, 'https://www.gutenberg.org/ebooks/26471', 'en', 178), +(42769, 'Satan: A Romance of the Bahamas', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-07-23', 20, 'https://www.gutenberg.org/ebooks/55183', 'en', 15284), +(42770, 'Through the Iron Bars: Two Years of German Occupation in Belgium', 'Cammaerts, Emile', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/12644', 'en', 2936), +(42771, 'The Violet Book', NULL, '2013-02-19', 12, 'https://www.gutenberg.org/ebooks/42134', 'en', 15285), +(42772, 'Mr. Honey\'s Beginner\'s Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 38, 'https://www.gutenberg.org/ebooks/3213', 'de', 5007), +(42773, 'Plus-Que-Parfait', 'Buysse, Cyriel', '2005-12-17', 12, 'https://www.gutenberg.org/ebooks/17336', 'nl', 61), +(42774, 'Traders Risk', 'Aycock, Roger D.', '2007-10-20', 46, 'https://www.gutenberg.org/ebooks/23103', 'en', 179), +(42775, 'The Adventures of Ferdinand Count Fathom — Complete', 'Smollett, T. (Tobias)', '2004-09-09', 57, 'https://www.gutenberg.org/ebooks/6761', 'en', 428), +(42776, 'Ceremonies of the Pomo Indians', 'Barrett, S. A. (Samuel Alfred)', '2014-11-23', 17, 'https://www.gutenberg.org/ebooks/47446', 'en', 15286), +(42777, 'Gedankengut aus meinen Wanderjahren. Zweiter Band', 'Dauthendey, Max', '2014-08-16', 11, 'https://www.gutenberg.org/ebooks/46594', 'de', 15287), +(42778, 'Guide to Hotel Housekeeping', 'Palmer, Mary E. (Mary Elizabeth)', '2011-01-25', 27, 'https://www.gutenberg.org/ebooks/35066', 'en', 15288), +(42779, 'Dickensian Inns & Taverns', 'Matz, B. W. (Bertram Waldrom)', '2013-06-10', 15, 'https://www.gutenberg.org/ebooks/42908', 'en', 2638), +(42780, 'Dr. Sevier', 'Cable, George Washington', '2009-07-18', 30, 'https://www.gutenberg.org/ebooks/29439', 'en', 1563), +(42781, 'With the Scottish Regiments at the Front', 'Vivian, Evelyn Charles', '2016-03-22', 7, 'https://www.gutenberg.org/ebooks/51523', 'en', 15289), +(42782, 'The Lives of the Most Famous English Poets (1687)', 'Winstanley, William', '2005-03-25', 21, 'https://www.gutenberg.org/ebooks/15461', 'en', 8918), +(42783, 'In and Around Berlin', 'Norton, Minerva Brace', '2007-06-01', 24, 'https://www.gutenberg.org/ebooks/21654', 'en', 15290), +(42784, 'Essays from \'The Guardian\'', 'Pater, Walter', '2003-05-01', 19, 'https://www.gutenberg.org/ebooks/4036', 'en', 629), +(42785, 'The Norwegian Fjords', 'Cooper, A. Heaton (Alfred Heaton)', '2014-04-03', 17, 'https://www.gutenberg.org/ebooks/45311', 'en', 3611), +(42786, 'Alter Ego: A Tale', 'Walker, W. W. (William Wesley)', '2011-10-12', 16, 'https://www.gutenberg.org/ebooks/37731', 'en', 11475), +(42787, 'An heiligen Wassern: Roman aus dem schweizerischen Hochgebirge', 'Heer, J. C. (Jakob Christoph)', '2007-03-08', 10, 'https://www.gutenberg.org/ebooks/20786', 'de', 1661), +(42788, 'Lain varjolla: Romaani Perä-Pohjolasta', 'Kataja, Väinö', '2016-10-14', 9, 'https://www.gutenberg.org/ebooks/53274', 'fi', 175), +(42789, 'Confidence Game', 'McKimmey, James', '2010-05-04', 36, 'https://www.gutenberg.org/ebooks/32243', 'en', 15291), +(42790, 'De complete werken van Joost van Vondel. Davids Lofzang van Jeruzalem', 'Vondel, Joost van den', '2018-03-08', 11, 'https://www.gutenberg.org/ebooks/56706', 'nl', 2651), +(42791, 'Elementary Guide to Literary Criticism', 'Painter, F. V. N. (Franklin Verzelius Newton)', '2008-01-16', 16, 'https://www.gutenberg.org/ebooks/24326', 'en', 2641), +(42792, 'De mannen van \'80 aan het woord\r\nEen onderzoek vaar eenige beginselen van de \"Nieuwe-Gids\"-school.', 'D\'Oliveira, E. (Elias)', '2003-11-01', 5, 'https://www.gutenberg.org/ebooks/10113', 'nl', 14539), +(42793, 'Two on the Trail: A Story of Canada Snows', 'Cowper, E. E. (Edith Elise)', '2012-09-04', 24, 'https://www.gutenberg.org/ebooks/40663', 'en', 389), +(42794, 'Translations from the German (Vol 3 of 3): Tales by Musæus, Tieck, Richter', 'Jean Paul', '2012-02-06', 141, 'https://www.gutenberg.org/ebooks/38779', 'en', 803), +(42795, 'Bill Nye\'s Cordwood', 'Nye, Bill', '2010-08-09', 105, 'https://www.gutenberg.org/ebooks/33391', 'en', 190), +(42796, 'The Passionate Pilgrim', 'Shakespeare, William', '1998-11-01', 24, 'https://www.gutenberg.org/ebooks/1544', 'en', 466), +(42797, 'The Elements of Geology', 'Norton, William Harmon', '2003-07-01', 55, 'https://www.gutenberg.org/ebooks/4204', 'en', 2535), +(42798, 'Zwischen den Rassen: Roman', 'Mann, Heinrich', '2014-03-13', 29, 'https://www.gutenberg.org/ebooks/45123', 'de', 549), +(42799, 'Dorothy Dale\'s Queer Holidays', 'Penrose, Margaret', '2005-04-18', 24, 'https://www.gutenberg.org/ebooks/15653', 'en', 51), +(42800, 'Bob Burton; or, The Young Ranchman of the Missouri', 'Alger, Horatio, Jr.', '2016-05-30', 17, 'https://www.gutenberg.org/ebooks/52194', 'en', 1080), +(42801, 'In the Rocky Mountains', 'Kingston, William Henry Giles', '2007-05-15', 16, 'https://www.gutenberg.org/ebooks/21466', 'en', 3237), +(42802, 'Ravished Armenia\r\nThe Story of Aurora Mardiganian, the Christian Girl Who Lived Through the Great Massacres', 'Mardiganian, Aurora', '2016-09-13', 53, 'https://www.gutenberg.org/ebooks/53046', 'en', 449), +(42803, 'The Elene of Cynewulf translated into English prose', 'Cynewulf', '2005-01-24', 15, 'https://www.gutenberg.org/ebooks/14781', 'en', 15292), +(42804, 'Longevity', 'Windser, Therese', '2008-03-27', 53, 'https://www.gutenberg.org/ebooks/24928', 'en', 179), +(42805, 'Gammer Gurton\'s Needle', NULL, '2011-09-22', 28, 'https://www.gutenberg.org/ebooks/37503', 'en', 907), +(42806, 'Spain in 1830, vol. 1', 'Inglis, Henry D. (Henry David)', '2018-02-10', 10, 'https://www.gutenberg.org/ebooks/56534', 'en', 1514), +(42807, 'Moores Fables for the Female Sex', 'Moore, Edward', '2012-04-22', 25, 'https://www.gutenberg.org/ebooks/39499', 'en', 3947), +(42808, 'The Banished: A Swabian Historical Tale', 'Hauff, Wilhelm', '2010-04-20', 17, 'https://www.gutenberg.org/ebooks/32071', 'en', 15293), +(42809, 'Burne-Jones', 'Baldry, A. L. (Alfred Lys)', '2012-12-09', 13, 'https://www.gutenberg.org/ebooks/41583', 'en', 15294), +(42810, 'Under One Flag', 'Marsh, Richard', '2012-08-08', 24, 'https://www.gutenberg.org/ebooks/40451', 'en', 61), +(42811, 'King Richard II', 'Shakespeare, William', '1999-06-01', 47, 'https://www.gutenberg.org/ebooks/1776', 'en', 599), +(42812, '東坡志林', 'Su, Shi', '2008-01-02', 19, 'https://www.gutenberg.org/ebooks/24114', 'zh', 2525), +(42813, 'Dragon\'s blood', 'Rideout, Henry Milner', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10321', 'en', 15295), +(42814, 'Sämmtliche Werke 2: Die Abenteuer Tschitschikows oder Die toten Seelen II', 'Gogol, Nikolai Vasilevich', '2017-03-01', 12, 'https://www.gutenberg.org/ebooks/54263', 'de', 781), +(42815, 'I nuovi tartufi', 'Guerrazzi, Francesco Domenico', '2009-01-13', 8, 'https://www.gutenberg.org/ebooks/27791', 'it', 860), +(42816, 'Scrap Book of Mormon Literature (Vol. 1 of 2)\nReligious Tracts', NULL, '2019-08-04', 355, 'https://www.gutenberg.org/ebooks/60056', 'en', 1440), +(42817, 'Contrary Mary', 'Bailey, Temple', '2006-03-06', 46, 'https://www.gutenberg.org/ebooks/17938', 'en', 61), +(42818, 'Cole\'s Funny Picture Book No. 1', 'Cole, E. W. (Edward William)', '2009-12-21', 65, 'https://www.gutenberg.org/ebooks/30726', 'en', 3059), +(42819, 'The Calendar, and Other Verses', 'Dix, Irving Sidney', '2013-03-11', 16, 'https://www.gutenberg.org/ebooks/42306', 'en', 178), +(42820, 'A Boy\'s Will', 'Frost, Robert', '2002-01-01', 159, 'https://www.gutenberg.org/ebooks/3021', 'en', 994), +(42821, 'The Work Of Christ: Past, Present and Future', 'Gaebelein, Arno Clemens', '2008-09-17', 18, 'https://www.gutenberg.org/ebooks/26643', 'en', 13928), +(42822, 'Ships That Pass in the Night', 'Harraden, Beatrice', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12476', 'en', 15296), +(42823, 'Wessex Tales', 'Hardy, Thomas', '2004-09-01', 5, 'https://www.gutenberg.org/ebooks/6553', 'en', 45), +(42824, 'Caves of Terror', 'Mundy, Talbot', '2006-08-02', 74, 'https://www.gutenberg.org/ebooks/18970', 'en', 1228), +(42825, 'Castilho e Quental: Reflexões sobre a actual questão litteraria', 'Malheiro Dias, Augusto', '2010-11-21', 49, 'https://www.gutenberg.org/ebooks/34386', 'pt', 12463), +(42826, 'Shameless Wayne: A Romance of the last Feud of Wayne and Ratcliffe', 'Sutcliffe, Halliwell', '2014-12-15', 8, 'https://www.gutenberg.org/ebooks/47674', 'en', 1909), +(42827, 'The Rocket Book', 'Newell, Peter', '2005-11-19', 40, 'https://www.gutenberg.org/ebooks/17104', 'en', 5509), +(42828, 'Punch, or the London Charivari, Vol. 150, February 16, 1916', 'Various', '2007-11-04', 10, 'https://www.gutenberg.org/ebooks/23331', 'en', 134), +(42829, 'El Canto Errante\nObras Completas Vol. XVI', 'Darío, Rubén', '2016-04-09', 12, 'https://www.gutenberg.org/ebooks/51711', 'es', 3817), +(42830, 'The Three Clerks', 'Trollope, Anthony', '2005-02-01', 63, 'https://www.gutenberg.org/ebooks/7481', 'en', 15297), +(42831, 'In the Onyx Lobby', 'Wells, Carolyn', '2011-02-12', 21, 'https://www.gutenberg.org/ebooks/35254', 'en', 61), +(42832, 'In Midden-Bretagne\nDe Aarde en haar Volken, 1904', 'Geffroy, Gustave', '2012-09-20', 15, 'https://www.gutenberg.org/ebooks/40809', 'nl', 2281), +(42833, 'Manuel des difficultés les plus communes de la langue française, adapté au jeune âge et suivi d\'un recueil de locutions vicieuses', 'Maguire, Thomas', '2012-02-17', 11, 'https://www.gutenberg.org/ebooks/38913', 'fr', 15298), +(42834, 'Free Trapper\'s Pass; or, the Gold-seeker\'s Daughter!', 'Eyster, William R. (William Reynolds)', '2016-10-31', 8, 'https://www.gutenberg.org/ebooks/53422', 'en', 15299), +(42835, 'History of Civilization in England, Vol. 3 of 3', 'Buckle, Henry Thomas', '2013-12-28', 25, 'https://www.gutenberg.org/ebooks/44495', 'en', 1392), +(42836, 'Woodcraft; Or, How a Patrol Leader Made Good', 'Douglas, Alan, Captain', '2011-08-23', 28, 'https://www.gutenberg.org/ebooks/37167', 'en', 1002), +(42837, 'Timothy Crump\'s Ward: A Story of American Life', 'Alger, Horatio, Jr.', '2003-11-01', 49, 'https://www.gutenberg.org/ebooks/4660', 'en', 7589), +(42838, 'Hal Kenyon Disappears', 'Stuart, Gordon (Adventure story writer)', '2014-05-01', 5, 'https://www.gutenberg.org/ebooks/45547', 'en', 2279), +(42839, 'The Chemistry of Food and Nutrition', 'Duncan, A. W.', '2005-03-02', 204, 'https://www.gutenberg.org/ebooks/15237', 'en', 15300), +(42840, 'Ye Sundial Booke', 'Henslow, T. Geoffrey W. (Thomas Geoffrey Wall)', '2019-03-24', 11, 'https://www.gutenberg.org/ebooks/59118', 'en', 15301), +(42841, 'The Writings of Thomas Jefferson\nLibrary Edition - Vol. 6 (of 20)', 'Jefferson, Thomas', '2007-04-07', 93, 'https://www.gutenberg.org/ebooks/21002', 'en', 15302), +(42842, 'Book of Monsters\r\nPortraits and Biographies of a Few of the Inhabitants of Woodland and Meadow', 'Fairchild, Marian', '2012-06-18', 33, 'https://www.gutenberg.org/ebooks/40035', 'en', 15303), +(42843, 'Selected Stories of Bret Harte', 'Harte, Bret', '2006-05-03', 171, 'https://www.gutenberg.org/ebooks/1312', 'en', 315), +(42844, 'High Adventure: A Narrative of Air Fighting in France', 'Hall, James Norman', '2008-02-11', 37, 'https://www.gutenberg.org/ebooks/24570', 'en', 15304), +(42845, 'The Story of the Champions of the Round Table', 'Pyle, Howard', '2004-01-01', 135, 'https://www.gutenberg.org/ebooks/10745', 'en', 15305), +(42846, 'Fedele ed altri racconti', 'Fogazzaro, Antonio', '2018-05-03', 21, 'https://www.gutenberg.org/ebooks/57082', 'it', 16), +(42847, 'The American Missionary — Volume 35, No. 11, November, 1881', 'Various', '2017-12-09', 2, 'https://www.gutenberg.org/ebooks/56150', 'en', 562), +(42848, 'Mare Nostrum (Our Sea): A Novel', 'Blasco Ibáñez, Vicente', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11697', 'en', 15306), +(42849, 'The Irish Ecclesiastical Record, Volume 1, April 1865', NULL, '2011-07-29', 4, 'https://www.gutenberg.org/ebooks/36889', 'en', 96), +(42850, 'The Arts in the Middle Ages and at the Period of the Renaissance', 'Jacob, P. L.', '2019-07-15', 227, 'https://www.gutenberg.org/ebooks/59924', 'en', 15307), +(42851, 'The Nursery Rhymes of England', NULL, '2010-05-18', 78, 'https://www.gutenberg.org/ebooks/32415', 'en', 672), +(42852, 'Memoria historica sobre as ilhas dos Açores\r\ncomo parte componente da Monarchia Portugueza, com ideias politicas relativas à reforma do Governo Portuguez, e sua nova constituição', 'Costa Chaves E Mello, Francisco Affonso Da', '2013-05-21', 7, 'https://www.gutenberg.org/ebooks/42762', 'pt', 15308), +(42853, 'Right on the Scaffold, or The Martyrs of 1822\nThe American Negro Academy. Occasional Papers No. 7', 'Grimké, Archibald Henry', '2010-02-16', 27, 'https://www.gutenberg.org/ebooks/31290', 'en', 15309), +(42854, 'The Book of the Thousand Nights and a Night — Volume 11 [Supplement]', NULL, '2002-09-01', 97, 'https://www.gutenberg.org/ebooks/3445', 'en', 1007), +(42855, 'The Book of Jonah', 'Unknown', '2008-08-01', 4, 'https://www.gutenberg.org/ebooks/26227', 'en', 6420), +(42856, 'Drei Gaugöttinnen', 'Rochholz, Ernst Ludwig', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/12012', 'de', 3860), +(42857, 'Historical Record of the Fifth, or Princess Charlotte of Wales\'s Regiment of Dragoon Guards\r\nContaining an Account of the Formation of the Regiment in 1685; with Its Subsequent Services to 1838', 'Cannon, Richard', '2017-04-26', 8, 'https://www.gutenberg.org/ebooks/54607', 'en', 15310), +(42858, 'Carta de hum cidadam de Genova a hum seu correspondente em Londres', 'Anonymous', '2006-06-07', 16, 'https://www.gutenberg.org/ebooks/18528', 'pt', 15311), +(42859, 'Whitman: A Study', 'Burroughs, John', '2009-10-27', 20, 'https://www.gutenberg.org/ebooks/30342', 'en', 15312), +(42860, 'Mrs. Skagg\'s Husbands and Other Stories', 'Harte, Bret', '2006-05-22', 26, 'https://www.gutenberg.org/ebooks/2597', 'en', 50), +(42861, 'The Old Dominion', 'Johnston, Mary', '2015-02-14', 11, 'https://www.gutenberg.org/ebooks/48258', 'en', 4969), +(42862, 'Punch, or the London Charivari, Vol. 150, March 1, 1916', 'Various', '2007-09-20', 12, 'https://www.gutenberg.org/ebooks/22687', 'en', 134), +(42863, 'Ihmisestä ja elämästä: Kirjoitelmia', 'Kilpi, Volter', '2016-03-06', 16, 'https://www.gutenberg.org/ebooks/51375', 'fi', 14254), +(42864, 'With the Procession', 'Fuller, Henry Blake', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/8891', 'en', 262), +(42865, 'A Philosophical Dictionary, Volume 10', 'Voltaire', '2011-03-29', 30, 'https://www.gutenberg.org/ebooks/35630', 'en', 7578), +(42866, 'The Home of the Blizzard\r\nBeing the Story of the Australasian Antarctic Expedition, 1911-1914', 'Mawson, Douglas, Sir', '2004-07-01', 110, 'https://www.gutenberg.org/ebooks/6137', 'en', 15313), +(42867, 'Nuoren Wertherin kärsimykset', 'Goethe, Johann Wolfgang von', '2014-10-27', 31, 'https://www.gutenberg.org/ebooks/47210', 'fi', 4038), +(42868, 'The Adventures of Ann: Stories of Colonial Times', 'Freeman, Mary Eleanor Wilkins', '2006-01-21', 20, 'https://www.gutenberg.org/ebooks/17560', 'en', 15314), +(42869, 'Journal of an Expedition into the Interior of Tropical Australia, in Search of a Route from Sydney to the Gulf of Carpentaria (1848)', 'Mitchell, T. L. (Thomas Livingstone)', '2004-08-28', 58, 'https://www.gutenberg.org/ebooks/9943', 'en', 15315), +(42870, 'Birds of the Indian Hills', 'Dewar, Douglas', '2007-12-06', 52, 'https://www.gutenberg.org/ebooks/23755', 'en', 88), +(42871, 'A Christmas Posy', 'Molesworth, Mrs.', '2008-07-09', 42, 'https://www.gutenberg.org/ebooks/26015', 'en', 195), +(42872, 'Rada: A Drama of War in One Act', 'Noyes, Alfred', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12220', 'en', 9396), +(42873, 'In Times Like These', 'McClung, Nellie L.', '2009-11-24', 35, 'https://www.gutenberg.org/ebooks/29861', 'en', 15316), +(42874, 'Magic and Witchcraft', 'Moir, George', '2013-04-16', 202, 'https://www.gutenberg.org/ebooks/42550', 'en', 8495), +(42875, 'On Our Selection', 'Rudd, Steele', '2003-01-01', 23, 'https://www.gutenberg.org/ebooks/3677', 'en', 4408), +(42876, 'Lonesome Hearts', 'Winterbotham, R. R. (Russell Robert)', '2009-10-04', 26, 'https://www.gutenberg.org/ebooks/30170', 'en', 26), +(42877, 'A Book of Bryn Mawr Stories', NULL, '2013-08-16', 23, 'https://www.gutenberg.org/ebooks/43482', 'en', 1624), +(42878, 'Aurora Leigh', 'Browning, Elizabeth Barrett', '2017-06-25', 40, 'https://www.gutenberg.org/ebooks/54435', 'en', 12980), +(42879, 'The Old Helmet, Volume I', 'Warner, Susan', '2008-10-07', 17, 'https://www.gutenberg.org/ebooks/26829', 'en', 500), +(42880, 'Poems & Ballads (First Series)', 'Swinburne, Algernon Charles', '2011-02-26', 110, 'https://www.gutenberg.org/ebooks/35402', 'en', 54), +(42881, 'Vallanperillinen: Historiallinen 5-näytöksinen murhenäytelmä', 'Wuori, Martti', '2015-09-16', 15, 'https://www.gutenberg.org/ebooks/49984', 'fi', 15317), +(42882, 'The Onlooker, Volume 1, Part 2', 'Various', '2005-09-11', 10, 'https://www.gutenberg.org/ebooks/16680', 'en', 18), +(42883, 'Unser Familien-Arzt\nAllöopathische, Homöopathische, Hydropathische, Eclectische und Kräuter-Heilmethode', 'Stout, H. R. (Henry Rice)', '2016-02-08', 10, 'https://www.gutenberg.org/ebooks/51147', 'de', 2925), +(42884, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 4 of 9]', 'Shakespeare, William', '2015-09-30', 18, 'https://www.gutenberg.org/ebooks/50095', 'en', 1088), +(42885, 'La deux fois morte', 'Lermina, Jules', '2006-02-11', 13, 'https://www.gutenberg.org/ebooks/17752', 'fr', 61), +(42886, 'The Emancipation of South America', 'Mitre, Bartolomé', '2015-05-02', 23, 'https://www.gutenberg.org/ebooks/48856', 'en', 15318), +(42887, 'Œuvres complètes de Alfred de Musset - Tome 5', 'Musset, Alfred de', '2007-11-20', 11, 'https://www.gutenberg.org/ebooks/23567', 'fr', 642), +(42888, 'A Fool There Was', 'Browne, Porter Emerson', '2004-08-01', 34, 'https://www.gutenberg.org/ebooks/6305', 'en', 15319), +(42889, 'Essays on the Greek Romances', 'Haight, Elizabeth Hazelton', '2014-10-02', 33, 'https://www.gutenberg.org/ebooks/47022', 'en', 4747), +(42890, 'The Burgomaster\'s Wife — Volume 03', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5580', 'en', 1167), +(42891, 'Pray You, Sir, Whose Daughter?', 'Gardener, Helen H. (Helen Hamilton)', '2013-03-16', 17, 'https://www.gutenberg.org/ebooks/37355', 'en', 61), +(42892, 'A Sister to Evangeline\r\nBeing the Story of Yvonne de Lamourie, and how she went into exile with the villagers of Grand Pré', 'Roberts, Charles G. D., Sir', '2016-11-26', 13, 'https://www.gutenberg.org/ebooks/53610', 'en', 15320), +(42893, 'Readings in the History of Education\nMediaeval Universities', 'Norton, Arthur O.', '2005-02-09', 7, 'https://www.gutenberg.org/ebooks/15005', 'en', 15321), +(42894, 'Susan\nA Story for Children', 'Walton, Amy', '2007-04-27', 18, 'https://www.gutenberg.org/ebooks/21230', 'en', 3129), +(42895, 'The Adventures of Harry Richmond — Complete', 'Meredith, George', '2004-11-03', 41, 'https://www.gutenberg.org/ebooks/4452', 'en', 2588), +(42896, 'The Poems and Prose Poems of Charles Baudelaire\nwith an Introductory Preface by James Huneker', 'Baudelaire, Charles', '2011-05-31', 201, 'https://www.gutenberg.org/ebooks/36287', 'en', 4723), +(42897, 'Toy-Making in School and Home', 'Polkinghorne, M. I. R. (Mabel Irene Rutherford)', '2014-05-27', 23, 'https://www.gutenberg.org/ebooks/45775', 'en', 7373), +(42898, 'Mary, Mary', 'Stephens, James', '2008-03-03', 17, 'https://www.gutenberg.org/ebooks/24742', 'en', 2586), +(42899, 'International Short Stories: French', NULL, '2004-01-01', 298, 'https://www.gutenberg.org/ebooks/10577', 'en', 1112), +(42900, 'The Christian Doctrine of Hell', 'Wheeler, J. M. (Joseph Mazzini)', '2012-07-11', 19, 'https://www.gutenberg.org/ebooks/40207', 'en', 2091), +(42901, 'The Tragedy of Julius Caesar', 'Shakespeare, William', '1997-11-01', 126, 'https://www.gutenberg.org/ebooks/1120', 'en', 6750), +(42902, 'The Rebel of the School', 'Meade, L. T.', '2005-05-16', 53, 'https://www.gutenberg.org/ebooks/15839', 'en', 1779), +(42903, 'Area Handbook for Bulgaria', 'Giloane, William', '2010-05-31', 47, 'https://www.gutenberg.org/ebooks/32627', 'en', 15322), +(42904, 'A Troublesome Flock: A Mother Goose Play for Children', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2018-01-12', 12, 'https://www.gutenberg.org/ebooks/56362', 'en', 14524), +(42905, 'O Federalismo', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2008-06-03', 12, 'https://www.gutenberg.org/ebooks/25690', 'pt', 15323), +(42906, 'Béarn and the Pyrenees\nA Legendary Tour to the Country of Henri Quatre', 'Costello, Louisa Stuart', '2006-12-16', 23, 'https://www.gutenberg.org/ebooks/20124', 'en', 15324), +(42907, 'Bailén', 'Pérez Galdós, Benito', '2004-12-09', 32, 'https://www.gutenberg.org/ebooks/14311', 'es', 15325), +(42908, 'Wanderings through unknown Austria', 'Hodgson, Randolph Llewellyn', '2013-12-18', 19, 'https://www.gutenberg.org/ebooks/44461', 'en', 7393), +(42909, 'The Swedish Fairy Book', NULL, '2011-08-24', 113, 'https://www.gutenberg.org/ebooks/37193', 'en', 15326), +(42910, 'The Ancient Allan', 'Haggard, H. Rider (Henry Rider)', '2004-05-01', 118, 'https://www.gutenberg.org/ebooks/5746', 'en', 3825), +(42911, 'A Second Letter to the Rev. William Maskell, M.A.\r\nSome thoughts on the position of the Church of England, as to her dogmatic teaching', 'Mayow, Mayow Wynell', '2018-04-18', 7, 'https://www.gutenberg.org/ebooks/56998', 'en', 6698), +(42912, 'Corse de Leon; or, The Brigand: A Romance. Volume 1 (of 2)', 'James, G. P. R. (George Payne Rainsford)', '2011-05-06', 7, 'https://www.gutenberg.org/ebooks/36041', 'en', 15327), +(42913, 'Mademoiselle of Monte Carlo', 'Le Queux, William', '2006-04-13', 15, 'https://www.gutenberg.org/ebooks/4694', 'en', 128), +(42914, 'Les morts commandent', 'Blasco Ibáñez, Vicente', '2012-05-28', 25, 'https://www.gutenberg.org/ebooks/39835', 'fr', 5015), +(42915, 'Kalatyttö: Kuvailus laululla yhdessä näytöksessä', 'Calonius, Laura', '2016-07-05', 5, 'https://www.gutenberg.org/ebooks/52504', 'fi', 433), +(42916, 'Auld Licht Idylls', 'Barrie, J. M. (James Matthew)', '2007-03-27', 31, 'https://www.gutenberg.org/ebooks/20918', 'en', 5681), +(42917, 'Community Property', 'Coppel, Alfred', '2019-02-01', 19, 'https://www.gutenberg.org/ebooks/58802', 'en', 9562), +(42918, 'The Convict\'s Farewell: with Advice to Criminals, before and after Trial', 'Parkerson, James', '2010-08-25', 3, 'https://www.gutenberg.org/ebooks/33533', 'en', 54), +(42919, 'Man Overboard!', 'Crawford, F. Marion (Francis Marion)', '2008-02-12', 25, 'https://www.gutenberg.org/ebooks/24584', 'en', 3421), +(42920, 'Erdsegen: Vertrauliche Sonntagsbriefe eines Bauernknechtes.', 'Rosegger, Peter', '2018-05-01', 8, 'https://www.gutenberg.org/ebooks/57076', 'de', 5500), +(42921, 'El Arroyo', 'Reclus, Elisée', '2004-03-01', 52, 'https://www.gutenberg.org/ebooks/11663', 'es', 15328), +(42922, 'Princess Polly At Play', 'Brooks, Amy', '2008-05-13', 29, 'https://www.gutenberg.org/ebooks/25456', 'en', 12970), +(42923, 'The History of the Great and Mighty Kingdom of China and the Situation Thereof, Volume 1 (of 2)', 'González de Mendoza, Juan', '2012-02-29', 26, 'https://www.gutenberg.org/ebooks/39009', 'en', 15329), +(42924, 'Annette Laïs', 'Féval, Paul', '2012-10-19', 12, 'https://www.gutenberg.org/ebooks/41113', 'fr', 4815), +(42925, 'The Box-Car Children', 'Warner, Gertrude Chandler', '2013-05-24', 577, 'https://www.gutenberg.org/ebooks/42796', 'en', 15330), +(42926, 'The Bible, King James version, Book 59: James', 'Anonymous', '2005-04-01', 25, 'https://www.gutenberg.org/ebooks/8059', 'en', 7164), +(42927, 'Salmelan heinätalkoot', 'Wuorinen, Olli', '2010-02-13', 9, 'https://www.gutenberg.org/ebooks/31264', 'fi', 61), +(42928, 'Under Rocking Skies', 'Tooker, L. Frank (Lewis Frank)', '2017-10-09', 7, 'https://www.gutenberg.org/ebooks/55721', 'en', 3039), +(42929, 'A Treatise on Good Works', 'Luther, Martin', '1996-02-01', 118, 'https://www.gutenberg.org/ebooks/418', 'en', 15331), +(42930, 'Mehiläisten elämä', 'Maeterlinck, Maurice', '2004-08-07', 17, 'https://www.gutenberg.org/ebooks/13134', 'fi', 4644), +(42931, 'Συριανά Διηγήματα', 'Rhoides, Emmanouel D.', '2008-11-20', 34, 'https://www.gutenberg.org/ebooks/27301', 'el', 1348), +(42932, 'Memoirs of the Comtesse Du Barry\r\nWith Minute Details of Her Entire Career as Favorite of Louis XV', 'Lamothe-Langon, Etienne-Léon, baron de', '2001-03-01', 34, 'https://www.gutenberg.org/ebooks/2563', 'en', 719), +(42933, 'G. H. Q. (Montreuil-Sur-Mer) by \"G.S.O.\"', 'Fox, Frank', '2013-09-05', 18, 'https://www.gutenberg.org/ebooks/43644', 'en', 4411), +(42934, 'Plantation Sketches', 'Devereux, Margaret', '2007-09-19', 15, 'https://www.gutenberg.org/ebooks/22673', 'en', 15332), +(42935, 'Miss Theodosia\'s Heartstrings', 'Donnell, Annie Hamilton', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8865', 'en', 61), +(42936, 'La Comédie humaine - Volume 06. Scènes de la vie de Province - Tome 02', 'Balzac, Honoré de', '2016-03-06', 46, 'https://www.gutenberg.org/ebooks/51381', 'fr', 642), +(42937, 'Buntong Hininga\nMga Tulang Tagalog', 'Leon, Pascual de', '2005-08-05', 10, 'https://www.gutenberg.org/ebooks/16446', 'tl', 8063), +(42938, 'Seven Mohave Myths', 'Kroeber, A. L. (Alfred Louis)', '2014-07-19', 29, 'https://www.gutenberg.org/ebooks/46336', 'en', 15333), +(42939, 'The Flood', 'Zola, Émile', '2004-12-01', 54, 'https://www.gutenberg.org/ebooks/7011', 'en', 15334), +(42940, 'Pipes O\'Pan at Zekesbury', 'Riley, James Whitcomb', '2004-10-31', 9, 'https://www.gutenberg.org/ebooks/13908', 'en', 8), +(42941, 'Through Nature to God', 'Fiske, John', '2010-12-22', 15, 'https://www.gutenberg.org/ebooks/34716', 'en', 2903), +(42942, 'Lectures on Language, as Particularly Connected with English Grammar.', 'Balch, William Stevens', '2006-01-24', 172, 'https://www.gutenberg.org/ebooks/17594', 'en', 1979), +(42943, 'Camp Mates in Michigan; or, with Pack and Paddle in the Pine Woods', 'Rathborne, St. George', '2015-10-19', 18, 'https://www.gutenberg.org/ebooks/50253', 'en', 14658), +(42944, 'The Golden House', 'Baker, Sarah S. (Sarah Schoonmaker)', '2009-03-17', 5, 'https://www.gutenberg.org/ebooks/28349', 'en', 707), +(42945, 'The Works of Horace, with English Notes\r\nTwentieth Edition', 'Horace', '2014-09-22', 29, 'https://www.gutenberg.org/ebooks/46938', 'la', 9096), +(42946, 'Sea Scouts All: How the \"Olivette\" was won', 'Westerman, Percy F. (Percy Francis)', '2017-09-09', 13, 'https://www.gutenberg.org/ebooks/55513', 'en', 324), +(42947, 'Criminal Man, According to the Classification of Cesare Lombroso', 'Lombroso, Gina', '2009-09-03', 61, 'https://www.gutenberg.org/ebooks/29895', 'en', 2839), +(42948, 'Mr. Crewe\'s Career — Volume 3', 'Churchill, Winston', '2004-10-16', 24, 'https://www.gutenberg.org/ebooks/3683', 'en', 2815), +(42949, 'The Grandee', 'Palacio Valdés, Armando', '2010-01-23', 17, 'https://www.gutenberg.org/ebooks/31056', 'en', 1696), +(42950, 'Man in the Iron Mask (an Essay)', 'Dumas, Alexandre', '2004-09-22', 56, 'https://www.gutenberg.org/ebooks/2751', 'en', 5050), +(42951, 'The Fairy Changeling and Other Poems', 'Shorter, Dora Sigerson', '2009-10-05', 25, 'https://www.gutenberg.org/ebooks/30184', 'en', 8), +(42952, 'Around the World in Eighty Days', 'Verne, Jules', '2009-05-01', 23, 'https://www.gutenberg.org/ebooks/28947', 'en', 1158), +(42953, 'Histoire des Musulmans d\'Espagne, t. 2/4\r\njusqu\'a la conquête de l\'Andalouisie par les Almoravides (711-110)', 'Dozy, Reinhart Pieter Anne', '2013-08-15', 16, 'https://www.gutenberg.org/ebooks/43476', 'fr', 15335), +(42954, 'Blackwood\'s Edinburgh Magazine — Volume 55, No. 339, January, 1844', 'Various', '2004-08-27', 25, 'https://www.gutenberg.org/ebooks/13306', 'en', 711), +(42955, 'Histoire du Canada depuis sa découverte jusqu\'à nos jours. Tome III', 'Garneau, F.-X. (François-Xavier)', '2008-11-02', 15, 'https://www.gutenberg.org/ebooks/27133', 'fr', 2163), +(42956, 'The Girl in Industry', 'Collier, Dorothy Josephine', '2014-06-26', 9, 'https://www.gutenberg.org/ebooks/46104', 'en', 13911), +(42957, 'The Belgian Cookbook', NULL, '2005-01-01', 90, 'https://www.gutenberg.org/ebooks/7223', 'en', 15336), +(42958, 'Carlsbad Caverns National Park, New Mexico\nThe Story of its Early Explorations, as told by Jim White', 'White, Jim', '2015-09-14', 13, 'https://www.gutenberg.org/ebooks/49970', 'en', 15337), +(42959, 'The Frog Prince and Other Stories', 'Crane, Walter', '2007-08-01', 13, 'https://www.gutenberg.org/ebooks/22441', 'en', 1007), +(42960, 'The Pride of Palomar', 'Kyne, Peter B. (Peter Bernard)', '2005-09-08', 18, 'https://www.gutenberg.org/ebooks/16674', 'en', 315), +(42961, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 719\nOctober 6, 1877', 'Various', '2015-09-26', 6, 'https://www.gutenberg.org/ebooks/50061', 'en', 18), +(42962, 'Lectures on Architecture and Painting, Delivered at Edinburgh in November 1853', 'Ruskin, John', '2007-11-22', 168, 'https://www.gutenberg.org/ebooks/23593', 'en', 3670), +(42963, 'Muskrat City', 'Abbott, Henry', '2010-12-01', 13, 'https://www.gutenberg.org/ebooks/34524', 'en', 2155), +(42964, 'A Latin Grammar for Schools and Colleges', 'Lane, George Martin', '2014-01-20', 65, 'https://www.gutenberg.org/ebooks/44653', 'en', 14959), +(42965, 'A Word, Only a Word — Volume 03', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5574', 'en', 803), +(42966, 'Kootut teokset 4: Kertomuksia ja kirjoitelmia', 'Erkko, J. H.', '2007-01-08', 16, 'https://www.gutenberg.org/ebooks/20316', 'fi', 665), +(42967, 'Punch, or the London Charivari, Volume 101, November 28, 1891', 'Various', '2004-11-22', 3, 'https://www.gutenberg.org/ebooks/14123', 'en', 134), +(42968, 'Isien teillä', 'Solkio, Olli', '2016-08-06', 14, 'https://www.gutenberg.org/ebooks/52736', 'fi', 9007), +(42969, 'The Automobile Girls at Newport; Or, Watching the Summer Parade', 'Crane, Laura Dent', '2011-05-30', 10, 'https://www.gutenberg.org/ebooks/36273', 'en', 2096), +(42970, 'Beaumont and Fletcher\'s Works, Vol. 06 of 10', 'Fletcher, John', '2014-05-27', 15, 'https://www.gutenberg.org/ebooks/45781', 'en', 1088), +(42971, 'The Lost Explorers: A Story of the Trackless Desert', 'MacDonald, Alexander', '2018-05-31', 11, 'https://www.gutenberg.org/ebooks/57244', 'en', 15338), +(42972, 'Holland: The History of the Netherlands', 'Grattan, Thomas Colley', '2004-01-01', 51, 'https://www.gutenberg.org/ebooks/10583', 'en', 1498), +(42973, 'Fraternal Charity', 'Valuy, Benôit', '2010-09-10', 29, 'https://www.gutenberg.org/ebooks/33701', 'en', 2136), +(42974, 'Japanese Swords', 'Yamanaka & Company', '2012-11-08', 29, 'https://www.gutenberg.org/ebooks/41321', 'en', 15339), +(42975, 'The Rome Express', 'Griffiths, Arthur', '2004-03-01', 122, 'https://www.gutenberg.org/ebooks/11451', 'en', 128), +(42976, 'History of Spanish and Portuguese Literature (Vol 2 of 2)', 'Bouterwek, Friedrich', '2018-01-19', 8, 'https://www.gutenberg.org/ebooks/56396', 'en', 4785), +(42977, 'The Earliest Arithmetics in English', NULL, '2008-06-01', 79, 'https://www.gutenberg.org/ebooks/25664', 'en', 127), +(42978, 'Wilhelm Meisters Lehrjahre — Band 1', 'Goethe, Johann Wolfgang von', '2000-09-01', 88, 'https://www.gutenberg.org/ebooks/2335', 'de', 1080), +(42979, 'Opium Eating: An Autobiographical Sketch by an Habituate', 'Anonymous', '2013-06-22', 39, 'https://www.gutenberg.org/ebooks/43012', 'en', 7859), +(42980, 'Report of Mr. W. E. Cormack\'s journey in search of the Red Indians in Newfoundland', 'Cormack, W. E. (William Eppes)', '2004-10-16', 16, 'https://www.gutenberg.org/ebooks/13762', 'en', 15340), +(42981, 'Learning to Fly: A Practical Manual for Beginners', 'Harper, Harry', '2008-12-18', 38, 'https://www.gutenberg.org/ebooks/27557', 'en', 15341), +(42982, 'The Making of Bobby Burnit\nBeing a Record of the Adventures of a Live American Young Man', 'Chester, George Randolph', '2008-08-30', 16, 'https://www.gutenberg.org/ebooks/26485', 'en', 1351), +(42983, 'Tom Swift and the Electronic Hydrolung', 'Appleton, Victor, II', '2006-09-12', 77, 'https://www.gutenberg.org/ebooks/19258', 'en', 26), +(42984, 'Tähtien turvatit 1: Aika- ja luonnekuvaus kuningatar Kristiinan ajoilta', 'Topelius, Zacharias', '2017-07-23', 17, 'https://www.gutenberg.org/ebooks/55177', 'fi', 61), +(42985, 'Elsie Marley, Honey', 'Gray, Joslyn', '2007-09-30', 16, 'https://www.gutenberg.org/ebooks/22819', 'en', 2004), +(42986, 'Pietolan tytöt', 'Meriläinen, Heikki', '2015-07-26', 13, 'https://www.gutenberg.org/ebooks/49528', 'fi', 41), +(42987, 'Histoire littéraire d\'Italie (1/9)', 'Ginguené, Pierre Louis', '2010-02-27', 10, 'https://www.gutenberg.org/ebooks/31432', 'fr', 7200), +(42988, 'Uncle Wiggily\'s Auto Sled\r\nor, How Mr. Hedgehog Helped Him Get Up the Slippery Hill; and, How Uncle Wiggily Made a Snow Pudding. Also, What Happened in the Snow Fort', 'Garis, Howard Roger', '2015-11-07', 36, 'https://www.gutenberg.org/ebooks/50405', 'en', 15342), +(42989, 'A Double Knot', 'Fenn, George Manville', '2010-10-26', 24, 'https://www.gutenberg.org/ebooks/34140', 'en', 61), +(42990, 'Trials of War Criminals before the Nuernberg Military Tribunals under Control Council Law No. 10, Volume I', 'Various', '2017-06-13', 20, 'https://www.gutenberg.org/ebooks/54899', 'en', 1666), +(42991, 'The Poems of Schiller — Second period', 'Schiller, Friedrich', '2004-12-08', 27, 'https://www.gutenberg.org/ebooks/6795', 'en', 8), +(42992, 'Travels in the Central Parts of Indo-China (Siam), Cambodia, and Laos (Vol. 2 of 2)\nDuring the Years 1858, 1859, and 1860', 'Mouhot, Henri', '2014-08-11', 28, 'https://www.gutenberg.org/ebooks/46560', 'en', 15343), +(42993, 'Encyclopaedia Britannica, 11th Edition, \"Ehud\" to \"Electroscope\"\r\nVolume 9, Slice 2', 'Various', '2011-01-27', 28, 'https://www.gutenberg.org/ebooks/35092', 'en', 1081), +(42994, 'Ernest Maltravers — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7647', 'en', 137), +(42995, 'Costituzione della Repubblica Italiana e Statuti Costituzionali del Regno d\'Italia', 'Anonymous', '2007-07-09', 48, 'https://www.gutenberg.org/ebooks/22025', 'it', 15344), +(42996, 'La chasse galerie: Légendes Canadiennes', 'Beaugrand, Honoré', '2005-07-05', 10, 'https://www.gutenberg.org/ebooks/16210', 'fr', 15345), +(42997, 'Das Tal der Lieder und andere Schilderungen', 'Löns, Hermann', '2016-06-16', 13, 'https://www.gutenberg.org/ebooks/52352', 'de', 3386), +(42998, 'In a Green Shade\nA Country Commentary', 'Hewlett, Maurice', '2005-03-29', 10, 'https://www.gutenberg.org/ebooks/15495', 'en', 472), +(42999, 'U.S. Copyright Renewals, 1954 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11809', 'en', 4170), +(43000, 'The Ballad of the Quest', 'Sheard, Virna', '2011-07-04', 14, 'https://www.gutenberg.org/ebooks/36617', 'en', 28), +(43001, 'A Family of Noblemen\nThe Gentlemen Golovliov', 'Saltykov, Mikhail Evgrafovich', '2013-11-20', 37, 'https://www.gutenberg.org/ebooks/44237', 'en', 15346), +(43002, 'The Adventures of Jerry Muskrat', 'Burgess, Thornton W. (Thornton Waldo)', '2004-02-01', 43, 'https://www.gutenberg.org/ebooks/5110', 'en', 15347), +(43003, 'Agriculture for Beginners\nRevised Edition', 'Burkett, Charles William', '2007-03-08', 55, 'https://www.gutenberg.org/ebooks/20772', 'en', 2757), +(43004, 'Stage-coach and Mail in Days of Yore, Volume 2 (of 2)\nA picturesque history of the coaching age', 'Harper, Charles G. (Charles George)', '2019-01-11', 2, 'https://www.gutenberg.org/ebooks/58668', 'en', 14293), +(43005, 'Gwaith Mynyddog. Cyfrol II', 'Mynyddog', '2004-12-31', 7, 'https://www.gutenberg.org/ebooks/14547', 'cy', 13510), +(43006, 'Will Rossiter\'s Original Talkalogues by American Jokers', NULL, '2016-10-15', 8, 'https://www.gutenberg.org/ebooks/53280', 'en', 190), +(43007, 'Keksijän voitto: Romaani', 'Airola, Väinö', '2012-12-31', 13, 'https://www.gutenberg.org/ebooks/41745', 'fi', 456), +(43008, 'Aziyadé\r\nExtrait des notes et lettres d\'un lieutenant de la marine anglaise entré au service de la Turquie le 10 mai 1876 tué dans les murs de Kars, le 27 octobre 1877.', 'Loti, Pierre', '2004-02-01', 40, 'https://www.gutenberg.org/ebooks/11035', 'fr', 48), +(43009, 'Chambers\'s Edinburgh Journal, Volume 17, Index\nNew Series, January-June 1852.', 'Various', '2008-04-27', 5, 'https://www.gutenberg.org/ebooks/25200', 'en', 18), +(43010, 'Wichita', 'Harvey, Fred', '2018-08-01', 7, 'https://www.gutenberg.org/ebooks/57620', 'en', 15348), +(43011, 'Sport Royal, and Other Stories', 'Hope, Anthony', '2012-09-07', 17, 'https://www.gutenberg.org/ebooks/40697', 'en', 137), +(43012, 'Encyclopaedia Britannica, 11th Edition, \"Cerargyrite\" to \"Charing Cross\"\r\nVolume 5, Slice 7', 'Various', '2010-08-06', 48, 'https://www.gutenberg.org/ebooks/33365', 'en', 1081), +(43013, 'Jesus Fulfils the Law', 'Anonymous', '2011-06-14', 19, 'https://www.gutenberg.org/ebooks/36425', 'en', 3941), +(43014, 'The Happy Herd', 'Walton, Bryce', '2019-05-23', 82, 'https://www.gutenberg.org/ebooks/59588', 'en', 10613), +(43015, 'A Short History of Freethought Ancient and Modern, Volume 2 of 2\nThird edition, Revised and Expanded, in two volumes', 'Robertson, J. M. (John Mackinnon)', '2016-05-25', 13, 'https://www.gutenberg.org/ebooks/52160', 'en', 2710), +(43016, 'A True Hero: A Story of the Days of William Penn', 'Kingston, William Henry Giles', '2007-05-16', 7, 'https://www.gutenberg.org/ebooks/21492', 'en', 98), +(43017, 'My Man Sandy', 'Salmond, James Bell', '2007-02-07', 23, 'https://www.gutenberg.org/ebooks/20540', 'en', 2389), +(43018, 'Elämän hawainnoita 03: Suku=ylpeys; Tahdon woima', 'Päivärinta, Pietari', '2005-01-24', 26, 'https://www.gutenberg.org/ebooks/14775', 'fi', 456), +(43019, 'Warren Commission (05 of 26): Hearings Vol. V (of 15)', 'United States. Warren Commission', '2013-10-20', 20, 'https://www.gutenberg.org/ebooks/44005', 'en', 5206), +(43020, 'Woyzeck', 'Büchner, Georg', '2004-03-01', 245, 'https://www.gutenberg.org/ebooks/5322', 'de', 4915), +(43021, 'Redevoeringen', 'Conscience, Hendrik', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11207', 'nl', 659), +(43022, 'A Yacht Voyage Round England', 'Kingston, William Henry Giles', '2008-04-10', 28, 'https://www.gutenberg.org/ebooks/25032', 'en', 470), +(43023, 'Christine: A Fife Fisher Girl', 'Barr, Amelia E.', '2010-04-22', 68, 'https://www.gutenberg.org/ebooks/32085', 'en', 4251), +(43024, 'Dictionnaire raisonné des onomatopées françaises', 'Nodier, Charles', '2012-12-07', 27, 'https://www.gutenberg.org/ebooks/41577', 'fr', 15349), +(43025, 'King Henry IV, Part 2', 'Shakespeare, William', '1999-06-01', 62, 'https://www.gutenberg.org/ebooks/1782', 'en', 1665), +(43026, 'Voyage en Espagne', 'Gautier, Théophile', '2010-07-14', 27, 'https://www.gutenberg.org/ebooks/33157', 'fr', 1514), +(43027, 'Kaksi nuorta veronalaista', 'Shakespeare, William', '2014-02-08', 13, 'https://www.gutenberg.org/ebooks/44839', 'fi', 4991), +(43028, 'Etwas von den Wurzelkindern', 'Olfers, Sibylle', '2018-06-27', 13, 'https://www.gutenberg.org/ebooks/57412', 'de', 15350), +(43029, 'The Irish Penny Journal, Vol. 1 No. 19, November 7, 1840', 'Various', '2017-03-08', 2, 'https://www.gutenberg.org/ebooks/54297', 'en', 81), +(43030, 'Notes and Queries, Number 06, December 8, 1849', 'Various', '2004-09-28', 14, 'https://www.gutenberg.org/ebooks/13550', 'en', 105), +(43031, 'A Yeoman\'s Letters\nThird Edition', 'Ross, P. T.', '2009-01-10', 25, 'https://www.gutenberg.org/ebooks/27765', 'en', 1311), +(43032, 'History of Friedrich II of Prussia — Volume 07', 'Carlyle, Thomas', '2008-06-16', 23, 'https://www.gutenberg.org/ebooks/2107', 'en', 5033), +(43033, 'కత్తుల వంతెన', 'Ramamohan Rao, Mahidhara', '2013-07-14', 24, 'https://www.gutenberg.org/ebooks/43220', 'te', 61), +(43034, 'Thèses présentées à la Faculté des Sciences de Paris pour le doctorat ès sciences mathématiques', 'Floquet, Gaston', '2010-03-11', 15, 'https://www.gutenberg.org/ebooks/31600', 'fr', 15351), +(43035, 'The Mettle of the Pasture', 'Allen, James Lane', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12482', 'en', 1996), +(43036, 'Aristipp in Hamburg und Altona: Ein Sitten-Gemälde neuester Zeit', 'Hammerstein, Eugen von', '2017-08-11', 10, 'https://www.gutenberg.org/ebooks/55345', 'de', 15352), +(43037, 'Lorna Doone: A Romance of Exmoor', 'Blackmore, R. D. (Richard Doddridge)', '2006-04-27', 164, 'https://www.gutenberg.org/ebooks/840', 'en', 10934), +(43038, 'Fra Angelico: A Sketch', 'Keysor, Jennie Ellis', '2010-11-19', 8, 'https://www.gutenberg.org/ebooks/34372', 'en', 3701), +(43039, 'The Starbucks', 'Read, Opie Percival', '2006-08-03', 28, 'https://www.gutenberg.org/ebooks/18984', 'en', 61), +(43040, 'L\'Illustration, No. 1602, 8 novembre 1873', 'Various', '2014-12-16', 3, 'https://www.gutenberg.org/ebooks/47680', 'fr', 150), +(43041, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 18\r\nDialogue concerning Women; Characters; Life of Lucian; Letters; Appendix; Index', 'Dryden, John', '2015-12-07', 27, 'https://www.gutenberg.org/ebooks/50637', 'en', 1201), +(43042, 'My Reminiscences', 'Tagore, Rabindranath', '2007-08-02', 101, 'https://www.gutenberg.org/ebooks/22217', 'en', 9633), +(43043, 'Les conteurs à la ronde', 'Dickens, Charles', '2005-06-07', 11, 'https://www.gutenberg.org/ebooks/16022', 'fr', 179), +(43044, 'History of the Jews, Vol. 6 (of 6)\r\nContaining a Memoir of the Author by Dr. Philip Bloch, a Chronological Table of Jewish History, an Index to the Whole Work', 'Graetz, Heinrich', '2014-09-02', 39, 'https://www.gutenberg.org/ebooks/46752', 'en', 5932), +(43045, 'A Study of Pueblo Architecture: Tusayan and Cibola\r\nEighth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1886-1887, Government Printing Office, Washington, 1891, pages 3-228', 'Mindeleff, Victor', '2006-11-17', 28, 'https://www.gutenberg.org/ebooks/19856', 'en', 15353), +(43046, 'From the Easy Chair, Volume 1', 'Curtis, George William', '2005-02-01', 36, 'https://www.gutenberg.org/ebooks/7475', 'en', 4637), +(43047, 'Kertomuksia Suomen historiasta I\nUnionin aika', 'Krohn, Julius', '2014-01-18', 12, 'https://www.gutenberg.org/ebooks/44698', 'fi', 1578), +(43048, 'The Poisoned Pen', 'Reeve, Arthur B. (Arthur Benjamin)', '1999-10-01', 39, 'https://www.gutenberg.org/ebooks/1923', 'en', 828), +(43049, 'The Periodical Cicada, \"the 17-year Locust\"', 'United States. Department of Agriculture', '2019-04-20', 19, 'https://www.gutenberg.org/ebooks/59315', 'en', 15354); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(43050, 'The Westcotes', 'Quiller-Couch, Arthur', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/10548', 'en', 11302), +(43051, 'Häpeäpilkku', 'Anzengruber, Ludwig', '2011-12-16', 22, 'https://www.gutenberg.org/ebooks/38322', 'fi', 9472), +(43052, 'A Thousand Miles in the Rob Roy Canoe on Rivers and Lakes of Europe', 'MacGregor, John', '2012-07-15', 26, 'https://www.gutenberg.org/ebooks/40238', 'en', 1408), +(43053, 'Hiljaisuudessa\nKokoelma kertomuksia ja näytelmiä', 'Järnefelt, Arvid', '2005-05-09', 3, 'https://www.gutenberg.org/ebooks/15806', 'fi', 402), +(43054, 'Monsoons of Death', 'Vance, Gerald', '2010-05-31', 14, 'https://www.gutenberg.org/ebooks/32618', 'en', 613), +(43055, 'A Gray Eye or So. In Three Volumes—Volume I', 'Moore, Frank Frankfort', '2016-05-02', 7, 'https://www.gutenberg.org/ebooks/51944', 'en', 757), +(43056, 'The Dwelling Place of Light — Volume 3', 'Churchill, Winston', '2004-10-15', 10, 'https://www.gutenberg.org/ebooks/3648', 'en', 8934), +(43057, 'Little Rivers: A Book of Essays in Profitable Idleness', 'Van Dyke, Henry', '2015-06-10', 9, 'https://www.gutenberg.org/ebooks/49187', 'en', 4637), +(43058, 'The Haunts of Old Cockaigne', 'Thompson, Alexander M. (Alexander Mattock)', '2015-01-23', 25, 'https://www.gutenberg.org/ebooks/48055', 'en', 856), +(43059, 'Northern Georgia Sketches', 'Harben, Will N. (Will Nathaniel)', '2016-01-11', 8, 'https://www.gutenberg.org/ebooks/50896', 'en', 9254), +(43060, 'Songs out of Doors', 'Van Dyke, Henry', '2005-11-01', 5, 'https://www.gutenberg.org/ebooks/9372', 'en', 8), +(43061, 'Viimeinen Ateenalainen', 'Rydberg, Viktor', '2014-12-30', 20, 'https://www.gutenberg.org/ebooks/47821', 'fi', 942), +(43062, 'A Napa Christchild; and Benicia\'s Letters', 'Gunnison, Charles A.', '2006-07-01', 16, 'https://www.gutenberg.org/ebooks/18725', 'en', 585), +(43063, 'Le roman d\'un jeune homme pauvre (Play)', 'Feuillet, Octave', '2008-10-07', 10, 'https://www.gutenberg.org/ebooks/26816', 'fr', 3017), +(43064, 'Albert', 'Dumur, Louis', '2016-02-11', 13, 'https://www.gutenberg.org/ebooks/51178', 'fr', 298), +(43065, 'Λουκής Λάρας', 'Vikelas, Demetrios', '2009-06-07', 12, 'https://www.gutenberg.org/ebooks/29062', 'el', 2564), +(43066, 'Fact and Fable in Psychology', 'Jastrow, Joseph', '2015-05-04', 38, 'https://www.gutenberg.org/ebooks/48869', 'en', 3324), +(43067, 'The Samuel Butler Collection at Saint John\'s College, Cambridge\r\nA Catalogue and a Commentary', 'Bartholomew, A. T. (Augustus Theodore)', '2007-11-20', 4, 'https://www.gutenberg.org/ebooks/23558', 'en', 15355), +(43068, 'East of the Sun and West of the Moon: Old Tales from the North', 'Moe, Jørgen Engebretsen', '2010-01-15', 196, 'https://www.gutenberg.org/ebooks/30973', 'en', 14462), +(43069, 'Tremendous Trifles', 'Chesterton, G. K. (Gilbert Keith)', '2005-05-01', 327, 'https://www.gutenberg.org/ebooks/8092', 'en', 472), +(43070, 'The Young Oarsmen of Lakeview', 'Stratemeyer, Edward', '2008-08-08', 18, 'https://www.gutenberg.org/ebooks/26218', 'en', 2794), +(43071, 'The Radio Amateur\'s Hand Book\r\nA Complete, Authentic and Informative Work on Wireless Telegraphy and Telephony', 'Collins, A. Frederick (Archie Frederick)', '2004-11-01', 351, 'https://www.gutenberg.org/ebooks/6934', 'en', 14059), +(43072, 'Julia and the Pet-Lamb; or, Good Temper and Compassion Rewarded', 'Anonymous', '2017-05-01', 7, 'https://www.gutenberg.org/ebooks/54638', 'en', 1817), +(43073, 'Anti-Achitophel (1682)\nThree Verse Replies to Absalom and Achitophel by John Dryden', 'Settle, Elkanah', '2006-06-06', 27, 'https://www.gutenberg.org/ebooks/18517', 'en', 15356), +(43074, 'Vita di Francesco Burlamacchi', 'Guerrazzi, Francesco Domenico', '2015-02-15', 10, 'https://www.gutenberg.org/ebooks/48267', 'it', 15357), +(43075, 'Historic Court Memoirs of France: An Index', 'Various', '2009-06-25', 6, 'https://www.gutenberg.org/ebooks/29250', 'en', 198), +(43076, 'The Human Machine', 'Bennett, Arnold', '2004-07-03', 89, 'https://www.gutenberg.org/ebooks/12811', 'en', 740), +(43077, 'Boy Scouts in a Submarine; Or, Searching an Ocean Floor', 'Ralphson, G. Harvey (George Harvey)', '2004-07-01', 25, 'https://www.gutenberg.org/ebooks/6108', 'en', 2994), +(43078, 'Punch or the London Charivari, Vol. 147, October 21, 1914', 'Various', '2009-03-21', 4, 'https://www.gutenberg.org/ebooks/28382', 'en', 134), +(43079, 'The Capitals of Spanish America', 'Curtis, William Eleroy', '2015-10-24', 3, 'https://www.gutenberg.org/ebooks/50298', 'en', 15358), +(43080, 'The Mysterious Three', 'Le Queux, William', '2012-09-22', 21, 'https://www.gutenberg.org/ebooks/40836', 'en', 167), +(43081, 'The Pros and Cons of Vivisection', 'Richet, Charles', '2011-08-22', 12, 'https://www.gutenberg.org/ebooks/37158', 'en', 5852), +(43082, 'The Isle of Vanishing Men: A Narrative of Adventure in Cannibal-land', 'Alder, William Fisher', '2018-09-09', 10, 'https://www.gutenberg.org/ebooks/57881', 'en', 12670), +(43083, 'Tracks and Tracking', 'Brunner, Josef', '2014-05-04', 26, 'https://www.gutenberg.org/ebooks/45578', 'en', 2441), +(43084, 'The American Missionary — Volume 41, No. 5, May, 1887', 'Various', '2018-04-10', 3, 'https://www.gutenberg.org/ebooks/56953', 'en', 562), +(43085, 'Les mille et un fantômes', 'Dumas, Alexandre', '2005-02-28', 31, 'https://www.gutenberg.org/ebooks/15208', 'fr', 114), +(43086, 'A Memoir of Robert Blincoe, an Orphan Boy\r\nSent from the workhouse of St. Pancras, London, at seven years of age, to endure the horrors of a cotton-mill, through his infancy and youth, with a minute detail of his sufferings, being the first memoir of the kind published.', 'Brown, John', '2019-03-25', 30, 'https://www.gutenberg.org/ebooks/59127', 'en', 15359), +(43087, 'Aucassin & Nicolette, and Other Mediaeval Romances and Legends', NULL, '2011-11-23', 12, 'https://www.gutenberg.org/ebooks/38110', 'en', 15360), +(43088, 'Feminism and Sex-Extinction', 'Kenealy, Arabella', '2011-11-09', 25, 'https://www.gutenberg.org/ebooks/37964', 'en', 1485), +(43089, 'Briefe an eine Freundin', 'Humboldt, Wilhelm von', '2007-06-11', 27, 'https://www.gutenberg.org/ebooks/21801', 'de', 15361), +(43090, 'Ritratti letterari', 'De Amicis, Edmondo', '2019-08-06', 152, 'https://www.gutenberg.org/ebooks/60069', 'it', 11853), +(43091, 'Tales of the Ridings', 'Moorman, F. W. (Frederic William)', '2006-04-14', 5, 'https://www.gutenberg.org/ebooks/18173', 'en', 4398), +(43092, 'We and Our Neighbors; or, The Records of an Unfashionable Street', 'Stowe, Harriet Beecher', '2015-03-29', 17, 'https://www.gutenberg.org/ebooks/48603', 'en', 4927), +(43093, 'Tempesta e bonaccia: Romanzo senza eroi', 'Colombi, marchesa', '2006-03-03', 19, 'https://www.gutenberg.org/ebooks/17907', 'it', 61), +(43094, 'Νεφέλαι', 'Aristophanes', '2009-12-20', 35, 'https://www.gutenberg.org/ebooks/30719', 'el', 907), +(43095, 'Notes on a Journey from Cornhill to Grand Cairo', 'Thackeray, William Makepeace', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9524', 'en', 13671), +(43096, 'Das Meer: Roman', 'Kellermann, Bernhard', '2013-03-15', 3, 'https://www.gutenberg.org/ebooks/42339', 'de', 253), +(43097, 'A Reputed Changeling; Or, Three Seventh Years Two Centuries Ago', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12449', 'en', 2549), +(43098, 'Balzac', 'Lawton, Frederick', '2003-03-01', 37, 'https://www.gutenberg.org/ebooks/3822', 'en', 12428), +(43099, 'Annals of Music in America: A Chronological Record of Significant Musical Events', 'Lahee, Henry Charles', '2009-08-08', 16, 'https://www.gutenberg.org/ebooks/29634', 'en', 15362), +(43100, 'The Pioneer Boys of the Columbia; or, In the Wilderness of the Great Northwest', 'Rathborne, St. George', '2014-09-07', 12, 'https://www.gutenberg.org/ebooks/46799', 'en', 1259), +(43101, 'Dick Onslow Among the Redskins', 'Kingston, William Henry Giles', '2007-05-15', 16, 'https://www.gutenberg.org/ebooks/21459', 'en', 676), +(43102, 'Liga Patriotica do Norte', 'Quental, Antero de', '2010-06-18', 13, 'https://www.gutenberg.org/ebooks/32872', 'pt', 15363), +(43103, 'How to Use a Galvanic Battery in Medicine and Surgery\nA Discourse Delivered Before the Hunterian Society, Third Edition', 'Tibbits, Herbert', '2019-05-18', 24, 'https://www.gutenberg.org/ebooks/59543', 'en', 1919), +(43104, 'The Golden Boys With the Lumber Jacks', 'Wyman, L. P. (Levi Parker)', '2018-12-18', 12, 'https://www.gutenberg.org/ebooks/58491', 'en', 2788), +(43105, 'Dinners and Diners: Where and How to Dine in London', 'Newnham-Davis, Lieut.-Col. (Nathaniel)', '2016-09-18', 17, 'https://www.gutenberg.org/ebooks/53079', 'en', 3022), +(43106, 'Heath\'s Modern Language Series: Mariucha', 'Pérez Galdós, Benito', '2008-03-25', 19, 'https://www.gutenberg.org/ebooks/24917', 'es', 907), +(43107, 'Very Woman (Sixtine): A Cerebral Novel', 'Gourmont, Remy de', '2014-06-09', 11, 'https://www.gutenberg.org/ebooks/45920', 'en', 58), +(43108, 'Frijoles: A Hidden Valley in the New World', 'Hendron, J. W. (Jerome William)', '2016-09-07', 11, 'https://www.gutenberg.org/ebooks/52997', 'en', 15364), +(43109, 'Briefe, Aufzeichnungen und Aphorismen. Erster Band', 'Marc, Franz', '2016-12-31', 8, 'https://www.gutenberg.org/ebooks/53845', 'de', 6897), +(43110, 'Notes and Queries, Vol. IV, Number 99, September 20, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-01-15', 9, 'https://www.gutenberg.org/ebooks/38574', 'en', 105), +(43111, 'Cousin Betty', 'Balzac, Honoré de', '1999-05-01', 151, 'https://www.gutenberg.org/ebooks/1749', 'en', 1165), +(43112, 'The Black Police: A Story of Modern Australia', 'Vogan, A. J. (Arthur James)', '2019-06-17', 70, 'https://www.gutenberg.org/ebooks/59771', 'en', 15365), +(43113, 'The 125th Regiment, Illinois Volunteer Infantry: Attention Batallion!', 'Rogers, Robert M.', '2016-06-23', 21, 'https://www.gutenberg.org/ebooks/52399', 'en', 15366), +(43114, 'The Victories of Love, and Other Poems', 'Patmore, Coventry', '2003-05-01', 37, 'https://www.gutenberg.org/ebooks/4009', 'en', 15367), +(43115, 'Robert Louis Stevenson, an Elegy; and Other Poems', 'Le Gallienne, Richard', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/10910', 'en', 15368), +(43116, 'Bijou', 'Gyp', '2012-05-14', 14, 'https://www.gutenberg.org/ebooks/39694', 'fr', 61), +(43117, 'The Rise of the Dutch Republic — Complete (1574-84)', 'Motley, John Lothrop', '2004-11-07', 14, 'https://www.gutenberg.org/ebooks/4835', 'en', 3372), +(43118, 'High Society\r\nAdvice as to Social Campaigning, and Hints on the Management of Dowagers, Dinners, Debutantes, Dances, and the Thousand and One Diversions of Persons of Quality', 'Parker, Dorothy', '2018-03-14', 94, 'https://www.gutenberg.org/ebooks/56739', 'en', 15369), +(43119, 'Viagens na Minha Terra (Volume II)', 'Almeida Garrett, João Batista da Silva Leitão de Almeida Garrett, Visconde de', '2008-01-15', 7, 'https://www.gutenberg.org/ebooks/24319', 'pt', 671), +(43120, 'The Unpublishable Memoirs', 'Rosenbach, A. S. W. (Abraham Simon Wolf)', '2012-02-01', 90, 'https://www.gutenberg.org/ebooks/38746', 'en', 7492), +(43121, 'In Flanders Fields', 'McCrae, John', '2007-12-01', 11, 'https://www.gutenberg.org/ebooks/23900', 'en', 2100), +(43122, 'Egotism in German Philosophy', 'Santayana, George', '2015-03-08', 41, 'https://www.gutenberg.org/ebooks/48431', 'en', 902), +(43123, 'The Lamplighter', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9716', 'en', 45), +(43124, 'Come Lasses and Lads', NULL, '2006-05-07', 36, 'https://www.gutenberg.org/ebooks/18341', 'en', 2296), +(43125, 'The Lost Continent', 'Hyne, Charles John Cutcliffe Wright', '2008-07-09', 199, 'https://www.gutenberg.org/ebooks/285', 'en', 26), +(43126, 'Charles Lever, His Life in His Letters, Vol. II', 'Lever, Charles James', '2011-04-13', 8, 'https://www.gutenberg.org/ebooks/35865', 'en', 15370), +(43127, 'La Legendo de Dorm-Valeto', 'Irving, Washington', '2006-09-16', 31, 'https://www.gutenberg.org/ebooks/19293', 'eo', 15371), +(43128, 'The Summons of the Lord of Hosts', 'Bahá\'u\'lláh', '2005-10-28', 9, 'https://www.gutenberg.org/ebooks/17309', 'en', 7255), +(43129, 'Le massacre des amazones: études critiques sur deux cents bas-bleus contemporains', 'Ryner, Han', '2014-11-27', 14, 'https://www.gutenberg.org/ebooks/47479', 'fr', 15372), +(43130, 'The Irish Penny Journal, Vol. 1 No. 35, February 27, 1841', 'Various', '2017-06-05', 1, 'https://www.gutenberg.org/ebooks/54852', 'en', 81), +(43131, 'With Sack and Stock in Alaska', 'Broke, Horatio George', '2017-11-16', 11, 'https://www.gutenberg.org/ebooks/55980', 'en', 15373), +(43132, 'Familiar Faces', 'Graham, Harry', '2011-01-24', 13, 'https://www.gutenberg.org/ebooks/35059', 'en', 3625), +(43133, 'Einfache Erzählung von dem schrecklichen Absturze des Schrofenberges und der dadurch erfolgten Verwüstung bei Brannenburg im August 1851\r\nZum Beßten der Verunglückten', 'Dachauer, Sebastian', '2013-06-13', 9, 'https://www.gutenberg.org/ebooks/42937', 'de', 15374), +(43134, 'The Country Beyond: A Romance of the Wilderness', 'Curwood, James Oliver', '2009-07-14', 24, 'https://www.gutenberg.org/ebooks/29406', 'en', 315), +(43135, 'Hebrew Life and Times', 'Hunting, Harold B. (Harold Bruce)', '2006-04-17', 29, 'https://www.gutenberg.org/ebooks/18187', 'en', 945), +(43136, 'The Day\'s Work - Part 01', 'Kipling, Rudyard', '2000-04-01', 24, 'https://www.gutenberg.org/ebooks/2138', 'en', 409), +(43137, 'East and West: Poems', 'Harte, Bret', '2005-07-01', 16, 'https://www.gutenberg.org/ebooks/8402', 'en', 350), +(43138, 'The Scarlet Gown: Being Verses by a St. Andrews Man', 'Murray, R. F. (Robert Fuller)', '2005-10-08', 6, 'https://www.gutenberg.org/ebooks/16821', 'en', 8), +(43139, 'Jean Barois', 'Martin du Gard, Roger', '2015-08-17', 27, 'https://www.gutenberg.org/ebooks/49725', 'fr', 259), +(43140, 'Steve Yeager', 'Raine, William MacLeod', '2006-08-16', 30, 'https://www.gutenberg.org/ebooks/19055', 'en', 315), +(43141, 'History, Manners, and Customs of the North American Indians', 'Old Humphrey', '2008-09-22', 19, 'https://www.gutenberg.org/ebooks/26688', 'en', 869), +(43142, 'American Woman\'s Home: Or, Principles of Domestic Science;\r\nBeing a Guide to the Formation and Maintenance of Economical, Healthful, Beautiful, and Christian Homes', 'Beecher, Catharine Esther', '2004-09-01', 112, 'https://www.gutenberg.org/ebooks/6598', 'en', 3407), +(43143, 'The American Missionary — Volume 54, No. 04, October, 1900', 'Various', '2009-05-07', 8, 'https://www.gutenberg.org/ebooks/28712', 'en', 395), +(43144, 'Studies and Essays: Quality, and Others', 'Galsworthy, John', '2004-09-24', 38, 'https://www.gutenberg.org/ebooks/2904', 'en', 20), +(43145, 'The Wide World Magazine, Vol. 22, No. 130, January, 1909', 'Various', '2015-12-04', 14, 'https://www.gutenberg.org/ebooks/50608', 'en', 2539), +(43146, 'Alphabetical Vocabularies of the Clallum and Lummi', 'Gibbs, George', '2007-08-03', 16, 'https://www.gutenberg.org/ebooks/22228', 'en', 15375), +(43147, 'While Caroline Was Growing', 'Bacon, Josephine Daskam', '2006-11-19', 16, 'https://www.gutenberg.org/ebooks/19869', 'en', 2739), +(43148, 'Northern Nut Growers Association Report of the Proceedings at the Thirty-Seventh Annual Report\nWooster, Ohio, September 3, 4, 5, 1946', NULL, '2008-06-18', 7, 'https://www.gutenberg.org/ebooks/25831', 'en', 1486), +(43149, 'A Review of Uncle Tom\'s Cabin; or, An Essay on Slavery', 'Woodward, A.', '2005-04-24', 27, 'https://www.gutenberg.org/ebooks/15698', 'en', 125), +(43150, 'The Battleship Boys\' First Step Upward; Or, Winning Their Grades as Petty Officers', 'Patchin, Frank Gee', '2010-06-18', 11, 'https://www.gutenberg.org/ebooks/32886', 'en', 4678), +(43151, 'Il libro della cucina del sec. XIV, testo di lingua non mai fin qui stampato', NULL, '2010-10-01', 43, 'https://www.gutenberg.org/ebooks/33954', 'it', 2092), +(43152, 'Gypsy Sorcery and Fortune Telling\r\nIllustrated by numerous incantations, specimens of medical magic, anecdotes and tales', 'Leland, Charles Godfrey', '2018-12-13', 73, 'https://www.gutenberg.org/ebooks/58465', 'en', 15376), +(43153, 'The Fight for Conservation', 'Pinchot, Gifford', '2004-02-01', 54, 'https://www.gutenberg.org/ebooks/11238', 'en', 9276), +(43154, 'Life in Dixie during the War, 1861-1862-1863-1864-1865', 'Gay, Mary Ann Harris', '2012-12-04', 16, 'https://www.gutenberg.org/ebooks/41548', 'en', 15377), +(43155, 'Cuchulain, the Hound of Ulster', 'Hull, Eleanor', '2016-09-02', 15, 'https://www.gutenberg.org/ebooks/52963', 'en', 15378), +(43156, 'The Pilgrim\'s Progress by John Bunyan Every Child Can Read', 'Bunyan, John', '2012-04-14', 238, 'https://www.gutenberg.org/ebooks/39452', 'en', 15379), +(43157, 'True Heart/Mind', 'Sengcan', '2012-01-15', 46, 'https://www.gutenberg.org/ebooks/38580', 'en', 14965), +(43158, 'Famous Singers of To-day and Yesterday', 'Lahee, Henry Charles', '2010-07-15', 21, 'https://www.gutenberg.org/ebooks/33168', 'en', 15380), +(43159, 'Portraits of Children of the Mobility', 'Leigh, Percival', '2014-01-30', 10, 'https://www.gutenberg.org/ebooks/44806', 'en', 15381), +(43160, 'Index of the Project Gutenberg Works of James Joyce', 'Joyce, James', '2019-06-20', 74, 'https://www.gutenberg.org/ebooks/59785', 'en', 198), +(43161, 'U.S. Copyright Renewals, 1967 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11836', 'en', 4170), +(43162, 'Reasons Against the Succession of the House of Hanover\r\nWith an Enquiry How Far the Abdication of King James, Supposing It to Be Legal, Ought to Affect the Person of the Pretender', 'Defoe, Daniel', '2011-07-05', 12, 'https://www.gutenberg.org/ebooks/36628', 'en', 15382), +(43163, 'The Hive', 'Comfort, Will Levington', '2013-11-17', 17, 'https://www.gutenberg.org/ebooks/44208', 'en', 973), +(43164, 'A Little Colored Boy, and Other Stories', NULL, '2019-01-09', 7, 'https://www.gutenberg.org/ebooks/58657', 'en', 15383), +(43165, 'From Death into Life\r\nor, Twenty Years of my Ministry', 'Haslam, W. (William)', '2005-01-03', 22, 'https://www.gutenberg.org/ebooks/14578', 'en', 9327), +(43166, 'Sylvia & Michael: The later adventures of Sylvia Scarlett', 'MacKenzie, Compton', '2012-05-09', 18, 'https://www.gutenberg.org/ebooks/39660', 'en', 61), +(43167, 'A Yankee Flier in Italy', 'Montgomery, Rutherford G. (Rutherford George)', '2010-05-07', 33, 'https://www.gutenberg.org/ebooks/32288', 'en', 15384), +(43168, 'The History of Don Quixote, Volume 1, Part 11', 'Cervantes Saavedra, Miguel de', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/5913', 'en', 361), +(43169, 'Sketches of Our Life at Sarawak', 'McDougall, Henriette', '2008-12-19', 23, 'https://www.gutenberg.org/ebooks/27568', 'en', 15385), +(43170, 'Black Beauty', 'Sewell, Anna', '2006-01-16', 725, 'https://www.gutenberg.org/ebooks/271', 'en', 1287), +(43171, 'Among the Meadow People', 'Pierson, Clara Dillingham', '2011-01-13', 64, 'https://www.gutenberg.org/ebooks/34943', 'en', 15386), +(43172, 'Century of Light', 'Bahá\'í International Community', '2006-09-15', 10, 'https://www.gutenberg.org/ebooks/19267', 'en', 15387), +(43173, 'The Drums of War', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-07-18', 11, 'https://www.gutenberg.org/ebooks/55148', 'en', 2373), +(43174, 'Humours of Irish Life', NULL, '2011-04-17', 37, 'https://www.gutenberg.org/ebooks/35891', 'en', 3979), +(43175, 'The Adventure of the Bruce-Partington Plans', 'Doyle, Arthur Conan', '2005-08-01', 25, 'https://www.gutenberg.org/ebooks/8630', 'en', 430), +(43176, 'Chronica de El-Rey D. Affonso II', 'Pina, Rui de', '2007-10-02', 11, 'https://www.gutenberg.org/ebooks/22826', 'pt', 15388), +(43177, 'Theatrical and Circus Life\nor, Secrets of the Stage, Green-Room and Sawdust Arena', 'Jennings, John J. (John Joseph)', '2015-07-24', 23, 'https://www.gutenberg.org/ebooks/49517', 'en', 11749), +(43178, 'Merkland; or, Self Sacrifice', 'Oliphant, Mrs. (Margaret)', '2013-09-25', 16, 'https://www.gutenberg.org/ebooks/43811', 'en', 2389), +(43179, 'Forbidden Fruit: Luscious and exciting story, and More forbidden fruit; or, Master Percy\'s progress in and beyond the domestic circle', 'Anonymous', '2009-04-06', 3581, 'https://www.gutenberg.org/ebooks/28520', 'en', 15389), +(43180, 'Anthropophagy', 'Darling, Charles W. (Charles William)', '2017-11-15', 11, 'https://www.gutenberg.org/ebooks/55974', 'en', 14343), +(43181, 'Harold : the Last of the Saxon Kings — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7678', 'en', 984), +(43182, 'A Surgeon in Arms', 'Manion, R. J. (Robert James)', '2018-11-04', 25, 'https://www.gutenberg.org/ebooks/58233', 'en', 4962), +(43183, 'Negritos of Zambales', 'Reed, William Allan', '2007-01-10', 25, 'https://www.gutenberg.org/ebooks/20329', 'en', 15390), +(43184, 'Popular Scientific Recreations\nin Natural Philosphy, Astronomy, Geology, Chemistry, etc., etc., etc.', 'Tissandier, Gaston', '2016-08-02', 11, 'https://www.gutenberg.org/ebooks/52709', 'en', 11837), +(43185, 'Complete Short Works of George Meredith', 'Meredith, George', '2004-11-05', 28, 'https://www.gutenberg.org/ebooks/4499', 'en', 137), +(43186, '\"Unto Caesar\"', 'Orczy, Emmuska Orczy, Baroness', '2008-03-09', 37, 'https://www.gutenberg.org/ebooks/24789', 'en', 98), +(43187, 'Punch, or the London Charivari, Volume 1, July 24, 1841', 'Various', '2005-02-07', 14, 'https://www.gutenberg.org/ebooks/14920', 'en', 134), +(43188, 'The Lincoln Year Book: Axioms and Aphorisms from the Great Emancipator', 'Lincoln, Abraham', '2012-03-19', 17, 'https://www.gutenberg.org/ebooks/39204', 'en', 15391), +(43189, 'The Arena, Volume 4, No. 20, July, 1891', 'Various', '2006-10-22', 12, 'https://www.gutenberg.org/ebooks/19603', 'en', 883), +(43190, 'Le Dragon Impérial', 'Gautier, Judith', '2014-09-20', 11, 'https://www.gutenberg.org/ebooks/46907', 'fr', 6011), +(43191, 'The World English Bible (WEB): Daniel', 'Anonymous', '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8254', 'en', 5899), +(43192, 'Jean', 'Kock, Paul de', '2010-01-25', 8, 'https://www.gutenberg.org/ebooks/31069', 'fr', 560), +(43193, 'Patty—Bride', 'Wells, Carolyn', '2015-06-09', 13, 'https://www.gutenberg.org/ebooks/49173', 'en', 2564), +(43194, 'El infierno del amor: leyenda fantastica', 'Fernández y González, Manuel', '2009-05-27', 22, 'https://www.gutenberg.org/ebooks/28978', 'es', 8), +(43195, 'Mrs. Severn: A Novel, Vol. 1 (of 3)', 'Carter, Mary Elizabeth', '2013-08-12', 8, 'https://www.gutenberg.org/ebooks/43449', 'en', 61), +(43196, 'Girls: Faults and Ideals\r\nA Familiar Talk, with Quotations from Letters', 'Miller, J. R. (James Russell)', '2005-11-01', 30, 'https://www.gutenberg.org/ebooks/9386', 'en', 1557), +(43197, 'Dolly and Molly and the Farmer Man', 'Gordon, Elizabeth', '2016-01-07', 4, 'https://www.gutenberg.org/ebooks/50862', 'en', 2672), +(43198, 'Orlando Furioso', 'Ariosto, Lodovico', '1996-08-01', 511, 'https://www.gutenberg.org/ebooks/615', 'en', 1535), +(43199, 'Les Pardaillan — Tome 02 : L\'épopée d\'amour', 'Zévaco, Michel', '2004-08-31', 16, 'https://www.gutenberg.org/ebooks/13339', 'fr', 642), +(43200, 'Encyclopaedia Britannica, 11th Edition, \"Cockaigne\" to \"Columbus, Christopher\"\r\nVolume 6, Slice 6', 'Various', '2010-04-01', 38, 'https://www.gutenberg.org/ebooks/31855', 'en', 1081), +(43201, 'Memoranda Sacra', 'Harris, J. Rendel (James Rendel)', '2009-06-10', 9, 'https://www.gutenberg.org/ebooks/29096', 'en', 6957), +(43202, 'I manifesti del futurismo', 'Marinetti, F. T.', '2009-02-20', 50, 'https://www.gutenberg.org/ebooks/28144', 'it', 15392), +(43203, 'Yorkshire Ditties, Second Series\nTo which is added The Cream of Wit and Humour\nfrom his Popular Writings', 'Hartley, John', '2006-02-19', 33, 'https://www.gutenberg.org/ebooks/17799', 'en', 3783), +(43204, 'Porto Rico: Its History, Products and Possibilities', 'Hall, A. D. (Arthur D.)', '2010-01-16', 10, 'https://www.gutenberg.org/ebooks/30987', 'en', 15393), +(43205, 'David Fleming\'s Forgiveness', 'Robertson, Margaret M. (Margaret Murray)', '2009-01-29', 14, 'https://www.gutenberg.org/ebooks/27930', 'en', 65), +(43206, 'The Bible, King James version, Book 66: Revelation', 'Anonymous', '2005-04-01', 61, 'https://www.gutenberg.org/ebooks/8066', 'en', 5644), +(43207, 'Seattle Car & Foundry Company, Catalogue No. 3, December, 1913', 'Seattle Car and Foundry Company', '2015-07-01', 18, 'https://www.gutenberg.org/ebooks/49341', 'en', 15394), +(43208, 'Le saucisson à pattes II\r\nLe plan de Cardeuc', 'Chavette, Eugène', '2006-10-01', 18, 'https://www.gutenberg.org/ebooks/19431', 'fr', 61), +(43209, 'Delphine', 'Staël, Madame de (Anne-Louise-Germaine)', '2005-04-01', 34, 'https://www.gutenberg.org/ebooks/7812', 'fr', 15395), +(43210, 'The Great War Syndicate', 'Stockton, Frank Richard', '1996-02-01', 38, 'https://www.gutenberg.org/ebooks/427', 'en', 26), +(43211, 'Old Quebec, the city of Champlain', 'Weaver, Emily P. (Emily Poynton)', '2015-02-17', 19, 'https://www.gutenberg.org/ebooks/48293', 'en', 15396), +(43212, 'The Prayers of St. Paul', 'Thomas, W. H. Griffith (William Henry Griffith)', '2009-11-01', 34, 'https://www.gutenberg.org/ebooks/30389', 'en', 15397), +(43213, 'The Latin & Irish Lives of Ciaran\nTranslations Of Christian Literature. Series V. Lives Of\nThe Celtic Saints', NULL, '2005-08-08', 45, 'https://www.gutenberg.org/ebooks/16479', 'en', 15398), +(43214, 'The Greville Memoirs, Part 2 (of 3), Volume 2 (of 3)\r\nA Journal of the Reign of Queen Victoria from 1837 to 1852', 'Greville, Charles', '2014-07-17', 15, 'https://www.gutenberg.org/ebooks/46309', 'en', 2135), +(43215, 'The Mysterious Rider', 'Grey, Zane', '2004-11-03', 195, 'https://www.gutenberg.org/ebooks/13937', 'en', 315), +(43216, 'How to Prosper in Boll Weevil Territory', 'Alford, George Howard', '2010-12-23', 7, 'https://www.gutenberg.org/ebooks/34729', 'en', 15399), +(43217, 'The Wide, Wide World', 'Warner, Susan', '2009-03-20', 34, 'https://www.gutenberg.org/ebooks/28376', 'en', 348), +(43218, 'Amarilly of Clothes-line Alley', 'Maniates, Belle Kanaris', '2006-02-01', 17, 'https://www.gutenberg.org/ebooks/9988', 'en', 348), +(43219, 'Le streghe\r\ndono del folletto alle signore', NULL, '2019-08-11', 103, 'https://www.gutenberg.org/ebooks/60088', 'it', 5685), +(43220, 'Spiritual Victories Through the Light of Salvation', 'Church, J. (John)', '2018-10-01', 6, 'https://www.gutenberg.org/ebooks/58001', 'en', 2386), +(43221, 'Anne Hereford: A Novel', 'Wood, Henry, Mrs.', '2018-09-09', 19, 'https://www.gutenberg.org/ebooks/57875', 'en', 2118), +(43222, 'The Crushed Flower, and Other Stories', 'Andreyev, Leonid', '2004-05-01', 47, 'https://www.gutenberg.org/ebooks/5779', 'en', 1377), +(43223, 'The Rise of the Mediaeval Church\r\nAnd Its Influence on the Civilization of Western Europe from the First to the Thirteenth Century', 'Flick, Alexander Clarence', '2013-01-24', 24, 'https://www.gutenberg.org/ebooks/41910', 'en', 559), +(43224, 'A Critical Exposition of the Popular \'Jihád\'\nShowing that all the Wars of Mohammad Were Defensive; and\nthat Aggressive War, or Compulsory Conversion, is not\nAllowed in The Koran - 1885', 'Cherágh Ali', '2007-03-29', 27, 'https://www.gutenberg.org/ebooks/20927', 'en', 15400), +(43225, 'Sous la neige', 'Wharton, Edith', '2011-11-12', 14, 'https://www.gutenberg.org/ebooks/37990', 'fr', 378), +(43226, 'The Fall of the Great Republic (1886-88)', 'Coverdale, Henry Standish', '2018-04-25', 8, 'https://www.gutenberg.org/ebooks/57049', 'en', 8507), +(43227, 'Pretty Tales for the Nursery', 'Thompson, Isabel', '2008-05-14', 25, 'https://www.gutenberg.org/ebooks/25469', 'en', 388), +(43228, 'The Issue: The Case for Sinn Fein', 'Lector', '2011-07-25', 4, 'https://www.gutenberg.org/ebooks/36842', 'en', 1751), +(43229, 'Essays In Pastoral Medicine', 'O\'Malley, Austin', '2012-03-03', 18, 'https://www.gutenberg.org/ebooks/39036', 'en', 9499), +(43230, 'The Legendary and Poetical Remains of John Roby\r\nauthor of \'Traditions of Lancashire\', with a sketch of his literary life and character', 'Roby, John', '2011-11-05', 27, 'https://www.gutenberg.org/ebooks/37930', 'en', 15401), +(43231, 'A Straight Deal; Or, The Ancient Grudge', 'Wister, Owen', '1998-07-01', 26, 'https://www.gutenberg.org/ebooks/1379', 'en', 15402), +(43232, 'The Mistress of Bonaventure', 'Bindloss, Harold', '2011-11-26', 12, 'https://www.gutenberg.org/ebooks/38144', 'en', 323), +(43233, 'Story of the War in South Africa, 1899-1900', 'Mahan, A. T. (Alfred Thayer)', '2007-04-05', 39, 'https://www.gutenberg.org/ebooks/20987', 'en', 1956), +(43234, 'A Fome de Camões', 'Leal, António Duarte Gomes', '2007-06-18', 21, 'https://www.gutenberg.org/ebooks/21855', 'pt', 8), +(43235, 'Unkarilainen Nabob: Romaani', 'Jókai, Mór', '2012-03-10', 3, 'https://www.gutenberg.org/ebooks/39096', 'fi', 2326), +(43236, 'How Rifleman Brown Came to Valhalla', 'Frankau, Gilbert', '2016-11-04', 22, 'https://www.gutenberg.org/ebooks/53449', 'en', 2100), +(43237, 'Mildred\'s New Daughter', 'Finley, Martha', '2012-02-25', 16, 'https://www.gutenberg.org/ebooks/38978', 'en', 31), +(43238, 'The Flower Girl of The Château d\'Eau, v.2 (Novels of Paul de Kock Volume XVI)', 'Kock, Paul de', '2012-09-25', 12, 'https://www.gutenberg.org/ebooks/40862', 'en', 58), +(43239, 'For Treasure Bound', 'Collingwood, Harry', '2007-04-13', 7, 'https://www.gutenberg.org/ebooks/21069', 'en', 324), +(43240, 'Jean-Christophe X\nUusi työpäivä', 'Rolland, Romain', '2019-03-31', 10, 'https://www.gutenberg.org/ebooks/59173', 'fi', 1432), +(43241, 'Pictures and Problems from London Police Courts', 'Holmes, Thomas', '2018-04-03', 15, 'https://www.gutenberg.org/ebooks/56907', 'en', 1944), +(43242, 'The World\'s Greatest Books — Volume 12 — Modern History', NULL, '2004-07-07', 70, 'https://www.gutenberg.org/ebooks/12845', 'en', 11934), +(43243, 'Arm of the Law', 'Harrison, Harry', '2009-06-22', 96, 'https://www.gutenberg.org/ebooks/29204', 'en', 831), +(43244, 'A Chair on the Boulevard', 'Merrick, Leonard', '2006-02-01', 18, 'https://www.gutenberg.org/ebooks/9928', 'en', 560), +(43245, 'Real Folks', 'Whitney, A. D. T. (Adeline Dutton Train)', '2004-11-09', 48, 'https://www.gutenberg.org/ebooks/13997', 'en', 1001), +(43246, 'Kaksi tolppaa; Pohjalais-Maija\nMuistelmia Hämeestä I-II', 'Heman, Gustaf Adolf', '2010-12-30', 5, 'https://www.gutenberg.org/ebooks/34789', 'fi', 61), +(43247, 'Punch, or the London Charivari, Volume 156, May 7, 1919.', 'Various', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12079', 'en', 134), +(43248, 'The Way of Ambition', 'Hichens, Robert', '2006-10-07', 24, 'https://www.gutenberg.org/ebooks/19491', 'en', 705), +(43249, 'Poisons, Their Effects and Detection\r\nA Manual for the Use of Analytical Chemists and Experts', 'Blyth, Alexander Wynter', '2013-05-13', 21, 'https://www.gutenberg.org/ebooks/42709', 'en', 5064), +(43250, 'Lincoln\'s Love Story', 'Atkinson, Eleanor', '2015-02-11', 10, 'https://www.gutenberg.org/ebooks/48233', 'en', 15403), +(43251, 'Burning Daylight', 'London, Jack', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/9114', 'en', 315), +(43252, 'Black Eyes and the Daily Grind', 'Marlowe, Stephen', '2009-10-25', 33, 'https://www.gutenberg.org/ebooks/30329', 'en', 26), +(43253, 'Abrégé de l\'Histoire universelle depuis Charlemagne jusques à Charlequint (Tome 1)', 'Voltaire', '2006-06-09', 24, 'https://www.gutenberg.org/ebooks/18543', 'fr', 6457), +(43254, 'Songs of Travel, and Other Verses', 'Stevenson, Robert Louis', '1996-04-01', 87, 'https://www.gutenberg.org/ebooks/487', 'en', 8), +(43255, 'A Narrative of the Life of Mrs. Mary Jemison', 'Seaver, James E. (James Everett)', '2004-11-01', 112, 'https://www.gutenberg.org/ebooks/6960', 'en', 15404), +(43256, 'La montanara', 'Barrili, Anton Giulio', '2009-06-04', 17, 'https://www.gutenberg.org/ebooks/29036', 'it', 61), +(43257, 'The Tenants of Malory, Volume 3', 'Le Fanu, Joseph Sheridan', '2011-03-03', 17, 'https://www.gutenberg.org/ebooks/35469', 'en', 167), +(43258, 'The Sense of Beauty: Being the Outlines of Aesthetic Theory', 'Santayana, George', '2008-10-08', 100, 'https://www.gutenberg.org/ebooks/26842', 'en', 2250), +(43259, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 691\nMarch 24, 1877', 'Various', '2014-10-05', 11, 'https://www.gutenberg.org/ebooks/47049', 'en', 18), +(43260, 'Theo: A Sprightly Love Story', 'Burnett, Frances Hodgson', '2009-02-04', 24, 'https://www.gutenberg.org/ebooks/27990', 'en', 48), +(43261, 'La femme du mort, Tome II (1897)', 'Bouvier, Alexis', '2006-02-10', 15, 'https://www.gutenberg.org/ebooks/17739', 'fr', 61), +(43262, 'Jack of No Trades', 'Cottrell, Charles', '2010-01-11', 26, 'https://www.gutenberg.org/ebooks/30927', 'en', 26), +(43263, 'A Voyage to the Arctic in the Whaler Aurora', 'Lindsay, David Moore', '2016-05-01', 19, 'https://www.gutenberg.org/ebooks/51910', 'en', 15405), +(43264, 'Santa Claus\' Frolics', 'Baker, George M. (George Melville)', '2015-01-05', 13, 'https://www.gutenberg.org/ebooks/47875', 'en', 364), +(43265, 'Scientific American Supplement, No. 530, February 27, 1886', 'Various', '2004-09-08', 19, 'https://www.gutenberg.org/ebooks/13399', 'en', 210), +(43266, 'Bulletin de Lille, 1916-03\nPublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2006-07-06', 28, 'https://www.gutenberg.org/ebooks/18771', 'fr', 11807), +(43267, 'The Juvenile Lavater; or, A Familiar Explanation of the Passions of Le Brun\r\nCalculated for the Instruction & Entertainment of Young Persons; Interspersed with Moral and Amusing Tales', 'Brewer, George', '2015-01-17', 10, 'https://www.gutenberg.org/ebooks/48001', 'en', 15406), +(43268, 'Gespräche für Freimaurer', 'Lessing, Gotthold Ephraim', '2005-11-01', 31, 'https://www.gutenberg.org/ebooks/9326', 'de', 15407), +(43269, 'Outwitting Our Nerves: A Primer of Psychotherapy', 'Jackson, Josephine A. (Josephine Agnes)', '2005-02-08', 73, 'https://www.gutenberg.org/ebooks/14980', 'en', 15408), +(43270, 'The Christ of Paul; Or, The Enigmas of Christianity', 'Reber, George', '2011-12-22', 15, 'https://www.gutenberg.org/ebooks/38376', 'en', 15409), +(43271, 'Paulina Buxareu', 'Sagarra, Josep Maria de', '2008-03-02', 7, 'https://www.gutenberg.org/ebooks/24729', 'ca', 61), +(43272, 'Madame Sans-Gêne, Tome 2\r\nLa Maréchale', 'Sardou, Victorien', '2018-01-04', 6, 'https://www.gutenberg.org/ebooks/56309', 'fr', 248), +(43273, 'The Texan Star: The Story of a Great Fight for Liberty', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-05-18', 28, 'https://www.gutenberg.org/ebooks/15852', 'en', 9815), +(43274, 'Phaedra', 'Racine, Jean', '1999-11-01', 210, 'https://www.gutenberg.org/ebooks/1977', 'en', 1298), +(43275, 'The Leatherworker in Eighteenth-Century Williamsburg\r\nBeing an Account of the Nature of Leather, & of the Crafts Commonly Engaged in the Making & Using of It.', 'Ford, Thomas K.', '2018-11-17', 24, 'https://www.gutenberg.org/ebooks/58293', 'en', 15410), +(43276, 'Historical and Political Essays', 'Lecky, William Edward Hartpole', '2007-01-17', 23, 'https://www.gutenberg.org/ebooks/20389', 'en', 7868), +(43277, 'Vittoria — Volume 5', 'Meredith, George', '2003-09-01', 14, 'https://www.gutenberg.org/ebooks/4439', 'en', 2564), +(43278, 'Ädelt vildt: En familjehistoria', 'Kuylenstierna-Wenster, Elisabeth', '2019-04-24', 9, 'https://www.gutenberg.org/ebooks/59341', 'sv', 420), +(43279, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 10, June 26, 1858', NULL, '2017-05-29', 4, 'https://www.gutenberg.org/ebooks/54806', 'en', 1741), +(43280, 'A Ride With A Mad Horse In A Freight-Car\n1898', 'Murray, W. H. H. (William Henry Harrison)', '2007-10-24', 17, 'https://www.gutenberg.org/ebooks/23168', 'en', 179), +(43281, 'An Ohio Woman in the Philippines\nGiving personal experiences and descriptions including\nincidents of Honolulu, ports in Japan and China', 'Conger, Emily Bronson', '2009-04-20', 19, 'https://www.gutenberg.org/ebooks/28580', 'en', 4048), +(43282, 'Early Greek Philosophy & Other Essays\nCollected Works, Volume Two', 'Nietzsche, Friedrich Wilhelm', '2016-03-25', 165, 'https://www.gutenberg.org/ebooks/51548', 'en', 2286), +(43283, 'The Wings of the Dove, Volume 1 of 2', 'James, Henry', '2009-07-19', 126, 'https://www.gutenberg.org/ebooks/29452', 'en', 847), +(43284, 'The Weird Orient: Nine Mystic Tales', 'Iliowizi, Henry', '2013-06-17', 35, 'https://www.gutenberg.org/ebooks/42963', 'en', 1108), +(43285, 'The Works of the Right Honourable Edmund Burke, Vol. 12 (of 12)', 'Burke, Edmund', '2006-05-05', 38, 'https://www.gutenberg.org/ebooks/18315', 'en', 4505), +(43286, 'United States Steel: A Corporation with a Soul', 'Cotter, Arundel', '2015-03-12', 12, 'https://www.gutenberg.org/ebooks/48465', 'en', 9138), +(43287, 'Fables et légendes du Japon', 'Ferrand, Claudius', '2007-12-21', 55, 'https://www.gutenberg.org/ebooks/23954', 'fr', 1738), +(43288, 'The Wreck of the Golden Mary', 'Dickens, Charles', '2006-01-01', 0, 'https://www.gutenberg.org/ebooks/9742', 'en', 179), +(43289, 'American Institutions and Their Influence', 'Tocqueville, Alexis de', '2005-08-01', 29, 'https://www.gutenberg.org/ebooks/8690', 'en', 3003), +(43290, 'Cambridge Pieces', 'Butler, Samuel', '2002-06-01', 121, 'https://www.gutenberg.org/ebooks/3278', 'en', 472), +(43291, 'Cinderella in the South: Twenty-Five South African Tales', 'Cripps, Arthur Shearly', '2007-10-05', 95, 'https://www.gutenberg.org/ebooks/22886', 'en', 15411), +(43292, 'The Outdoor Chums on a Houseboat; Or, The Rivals of the Mississippi', 'Allen, Quincy', '2011-04-11', 12, 'https://www.gutenberg.org/ebooks/35831', 'en', 7405), +(43293, 'History of the United Netherlands, 1590a', 'Motley, John Lothrop', '2004-01-01', 15, 'https://www.gutenberg.org/ebooks/4861', 'en', 3372), +(43294, 'The Indian Captive\r\nA narrative of the adventures and sufferings of Matthew Brayton in his thirty-four years of captivity among the Indians of north-western America', 'Brayton, Matthew', '2010-05-02', 17, 'https://www.gutenberg.org/ebooks/32228', 'en', 15412), +(43295, 'L\'Écuyère', 'Bourget, Paul', '2012-01-30', 22, 'https://www.gutenberg.org/ebooks/38712', 'fr', 61), +(43296, 'Mitz and Fritz of Germany', 'Brandeis, Madeline', '2012-08-29', 11, 'https://www.gutenberg.org/ebooks/40608', 'en', 4426), +(43297, 'Piano Sonata No. 14 in C sharp minor \"Moonlight\"', NULL, '2003-11-01', 47, 'https://www.gutenberg.org/ebooks/10178', 'en', 15413), +(43298, 'Citizen Bird: Scenes from Bird-Life in Plain English for Beginners', 'Coues, Elliott', '2004-04-01', 37, 'https://www.gutenberg.org/ebooks/11896', 'en', 6059), +(43299, 'Χαλιμά, Τόμος 3\r\nΕξακολούθησις των ιστοριών', NULL, '2011-07-10', 8, 'https://www.gutenberg.org/ebooks/36688', 'el', 1007), +(43300, 'Pictures from English History: A Fireside Amusement', 'Anonymous', '2019-06-10', 87, 'https://www.gutenberg.org/ebooks/59725', 'en', 15414), +(43301, 'From a Bench in Our Square', 'Adams, Samuel Hopkins', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/10944', 'en', 828), +(43302, 'Ken Ward in the Jungle', 'Grey, Zane', '2014-06-14', 44, 'https://www.gutenberg.org/ebooks/45974', 'en', 2788), +(43303, 'Wanderings by Southern Waters, Eastern Aquitaine', 'Barker, Edward Harrison', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11298', 'en', 15415), +(43304, 'Poems of James Russell Lowell\nWith biographical sketch by Nathan Haskell Dole', 'Lowell, James Russell', '2012-01-07', 28, 'https://www.gutenberg.org/ebooks/38520', 'en', 178), +(43305, 'Rescue the Perishing: Personal Work Made Easy', 'Seibert, Fred R.', '2016-12-26', 9, 'https://www.gutenberg.org/ebooks/53811', 'en', 6984), +(43306, 'Sink or Swim; or, Harry Raymond\'s Resolve', 'Alger, Horatio, Jr.', '2019-05-16', 65, 'https://www.gutenberg.org/ebooks/59517', 'en', 15416), +(43307, 'Notes and Queries, Number 62, January 4, 1851', 'Various', '2005-04-17', 7, 'https://www.gutenberg.org/ebooks/15638', 'en', 105), +(43308, 'Fairfax and His Pride: A Novel', 'Van Vorst, Marie', '2010-06-15', 11, 'https://www.gutenberg.org/ebooks/32826', 'en', 61), +(43309, 'Answers to Prayer, from George Müller\'s Narratives', 'Müller, George', '2008-06-24', 50, 'https://www.gutenberg.org/ebooks/25891', 'en', 4752), +(43310, 'Pharisaism, Its Aim and Its Method', 'Herford, R. Travers (Robert Travers)', '2014-03-15', 22, 'https://www.gutenberg.org/ebooks/45148', 'en', 15417), +(43311, 'Notes and Queries, Vol. IV, Number 89, July 12, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-09-29', 10, 'https://www.gutenberg.org/ebooks/37568', 'en', 105), +(43312, 'The Nursery, December 1873, Vol. XIV. No. 6', 'Various', '2008-03-29', 16, 'https://www.gutenberg.org/ebooks/24943', 'en', 4641), +(43313, '20,000 Leagues under the Sea', 'Verne, Jules', '2004-09-01', 61, 'https://www.gutenberg.org/ebooks/6538', 'en', 737), +(43314, 'Memoirs of the Courts of Louis XV and XVI. — Volume 1\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Du Hausset, Mme.', '2004-12-03', 14, 'https://www.gutenberg.org/ebooks/3876', 'en', 27), +(43315, 'Chinese Painters: A Critical Study', 'Petrucci, Raphaël', '2007-08-09', 53, 'https://www.gutenberg.org/ebooks/22288', 'en', 15418), +(43316, 'Three Years in the Federal Cavalry', 'Glazier, Willard W.', '2009-08-10', 31, 'https://www.gutenberg.org/ebooks/29660', 'en', 444), +(43317, 'Barnavännen, 1905-08\nIllustrerad Veckotidning för de Små', 'Various', '2015-04-07', 20, 'https://www.gutenberg.org/ebooks/48657', 'sv', 2537), +(43318, 'Reminiscent Poems\r\nPart 3 From Volume II of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 11, 'https://www.gutenberg.org/ebooks/9570', 'en', 350), +(43319, 'Stories from the Pentamerone', 'Basile, Giambattista', '2000-05-01', 256, 'https://www.gutenberg.org/ebooks/2198', 'en', 13767), +(43320, 'The Haunters & The Haunted\nGhost Stories And Tales Of The Supernatural', NULL, '2006-03-09', 61, 'https://www.gutenberg.org/ebooks/17953', 'en', 531), +(43321, 'The Beginner\'s American History', 'Montgomery, D. H. (David Henry)', '2006-04-05', 134, 'https://www.gutenberg.org/ebooks/18127', 'en', 207), +(43322, 'Standard Measures of United States, Great Britain and France\r\nHistory and actual comparisons. With appendix on introduction of the mètre', 'Wurtele, Arthur S. C.', '2017-02-19', 8, 'https://www.gutenberg.org/ebooks/54208', 'en', 10115), +(43323, 'The Mirror of Taste, and Dramatic Censor, Vol. I, No. 2, February 1810', 'Arnold, Samuel James', '2008-09-15', 3, 'https://www.gutenberg.org/ebooks/26628', 'en', 5310), +(43324, 'Het leven van Rozeke van Dalen, deel 1', 'Buysse, Cyriel', '2005-10-16', 7, 'https://www.gutenberg.org/ebooks/16881', 'nl', 61), +(43325, 'Scouting Dave: The Trail Hunter', 'Bowen, James L. (James Lorenzo)', '2015-08-26', 5, 'https://www.gutenberg.org/ebooks/49785', 'en', 336), +(43326, 'Connie Morgan in the Fur Country', 'Hendryx, James B. (James Beardsley)', '2009-04-21', 14, 'https://www.gutenberg.org/ebooks/28574', 'en', 15419), +(43327, 'Punch or the London Charivari, Vol.107, September 1, 1894', 'Various', '2013-09-29', 53, 'https://www.gutenberg.org/ebooks/43845', 'en', 134), +(43328, 'Castes and Tribes of Southern India. Vol. 7 of 7', 'Thurston, Edgar', '2013-06-21', 106, 'https://www.gutenberg.org/ebooks/42997', 'en', 4828), +(43329, 'Journal of a Tour in the Years 1828-1829, through Styria, Carniola, and Italy, whilst Accompanying the Late Sir Humphrey Davy', 'Tobin, J. J.', '2017-11-09', 4, 'https://www.gutenberg.org/ebooks/55920', 'en', 14279), +(43330, 'At the Back of the North Wind', 'MacDonald, George', '2008-07-11', 330, 'https://www.gutenberg.org/ebooks/225', 'en', 1007), +(43331, 'Wolfville Nights', 'Lewis, Alfred Henry', '2004-10-11', 29, 'https://www.gutenberg.org/ebooks/13709', 'en', 2116), +(43332, 'The Lonely House', 'Streckfuss, Adolf', '2011-01-11', 8, 'https://www.gutenberg.org/ebooks/34917', 'en', 803), +(43333, 'The Boy Patrol on Guard', 'Ellis, Edward Sylvester', '2013-07-02', 14, 'https://www.gutenberg.org/ebooks/43079', 'en', 1002), +(43334, 'Views of St. Paul\'s Cathedral, London', 'Sparrow-Simpson, W. J. (William John)', '2015-03-14', 13, 'https://www.gutenberg.org/ebooks/48491', 'en', 3240), +(43335, 'Onkel Tom\'s Hütte\noder die Geschichte eines christlichen Sklaven. Band 1 (von 3).', 'Stowe, Harriet Beecher', '2010-03-01', 32, 'https://www.gutenberg.org/ebooks/31459', 'de', 5351), +(43336, 'The Glory of the Conquered: The Story of a Great Love', 'Glaspell, Susan', '2005-08-01', 19, 'https://www.gutenberg.org/ebooks/8664', 'en', 297), +(43337, 'Kant\'s gesammelte Schriften. Band V. Kritik der praktischen Vernunft.', 'Kant, Immanuel', '2015-07-29', 46, 'https://www.gutenberg.org/ebooks/49543', 'de', 680), +(43338, 'Susan Clegg and a Man in the House', 'Warner, Anne', '2007-10-03', 19, 'https://www.gutenberg.org/ebooks/22872', 'en', 828), +(43339, 'Les opinions de M. Jérôme Coignard\r\nRecueillies par Jacques Tournebroche', 'France, Anatole', '2006-09-10', 19, 'https://www.gutenberg.org/ebooks/19233', 'fr', 298), +(43340, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1618', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4895', 'en', 5913), +(43341, 'The Downfall (La Débâcle): A Story of the Horrors of War', 'Zola, Émile', '2018-03-20', 13, 'https://www.gutenberg.org/ebooks/56799', 'en', 1180), +(43342, 'Sketches of Successful New Hampshire Men', 'Various', '2012-05-05', 4, 'https://www.gutenberg.org/ebooks/39634', 'en', 15420), +(43343, 'Billy Bunny and Uncle Bull Frog', 'Cory, David', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5947', 'en', 1045), +(43344, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 563, August 25, 1832', 'Various', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11862', 'en', 133), +(43345, 'Ancient Scottish Lake-Dwellings or Crannogs\r\nWith a supplementary chapter on remains of lake-dwellings in England', 'Munro, Robert', '2016-06-15', 15, 'https://www.gutenberg.org/ebooks/52339', 'en', 4205), +(43346, 'Christ the True Melchisedec\r\nBeing the substance of a sermon, preached on Sunday evening, July 24th, 1813, at the Obelisk Chapel', 'Church, J. (John)', '2019-01-03', 8, 'https://www.gutenberg.org/ebooks/58603', 'en', 2386), +(43347, 'Under the Country Sky', 'Richmond, Grace S. (Grace Smith)', '2007-03-01', 29, 'https://www.gutenberg.org/ebooks/20719', 'en', 48), +(43348, 'Kentucky in American Letters, 1784-1912. Vol. 1 of 2', 'Townsend, John Wilson', '2012-07-06', 27, 'https://www.gutenberg.org/ebooks/39406', 'en', 15421), +(43349, 'Russian Prisons\r\nSt. Peter and St. Paul; the Schlüsselburg; the Ostrog at Omsk; the story of Siberian exile; Tiumen, Tomsk, Saghalien', 'Griffiths, Arthur', '2016-08-30', 10, 'https://www.gutenberg.org/ebooks/52937', 'en', 15422), +(43350, 'In The Far North\n1901', 'Becke, Louis', '2008-04-12', 17, 'https://www.gutenberg.org/ebooks/25059', 'en', 179), +(43351, 'Rowlandson the Caricaturist; a Selection from His Works. Vol. 1', 'Grego, Joseph', '2014-06-15', 25, 'https://www.gutenberg.org/ebooks/45980', 'en', 14815), +(43352, 'A Secret of the Sea: A Novel. Vol. 2 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-07-10', 7, 'https://www.gutenberg.org/ebooks/57479', 'en', 137), +(43353, 'Yorkshire Battles', 'Lamplough, Edward', '2014-02-09', 17, 'https://www.gutenberg.org/ebooks/44852', 'en', 15423), +(43354, 'Patty\'s Summer Days', 'Wells, Carolyn', '2008-06-21', 16, 'https://www.gutenberg.org/ebooks/25865', 'en', 15424), +(43355, 'Castle Craneycrow', 'McCutcheon, George Barr', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/5349', 'en', 48), +(43356, 'Orville College: A Story', 'Wood, Henry, Mrs.', '2018-12-08', 10, 'https://www.gutenberg.org/ebooks/58431', 'en', 3943), +(43357, 'Principles of Orchestration, with Musical Examples Drawn from His Own Works', 'Rimsky-Korsakov, Nikolay', '2010-09-29', 314, 'https://www.gutenberg.org/ebooks/33900', 'en', 15425), +(43358, 'Het Leven der Dieren: Deel 2, Hoofdstuk 01: De Boomvogels.', 'Brehm, Alfred Edmund', '2009-05-10', 10, 'https://www.gutenberg.org/ebooks/28746', 'nl', 2360), +(43359, 'The Midnight Queen', 'Fleming, May Agnes', '2001-12-01', 31, 'https://www.gutenberg.org/ebooks/2950', 'en', 323), +(43360, 'Project Cyclops', 'Hoover, Thomas', '2010-11-14', 23, 'https://www.gutenberg.org/ebooks/34319', 'en', 15426), +(43361, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 681\r\nJanuary 13, 1877', 'Various', '2014-08-31', 12, 'https://www.gutenberg.org/ebooks/46739', 'en', 18), +(43362, 'Humphrey Bold: A Story of the Times of Benbow', 'Strang, Herbert', '2005-06-13', 14, 'https://www.gutenberg.org/ebooks/16049', 'en', 15427), +(43363, 'Memoirs of the Courts of Louis XV and XVI. — Volume 7\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Du Hausset, Mme.', '2004-12-03', 8, 'https://www.gutenberg.org/ebooks/3882', 'en', 27), +(43364, 'The Treasure Trail: A Romance of the Land of Gold and Sunshine', 'Ryan, Marah Ellis', '2009-08-15', 13, 'https://www.gutenberg.org/ebooks/29694', 'en', 6095), +(43365, 'The Tent on the Beach, and other poems\r\nPart 4 from Volume IV of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 5, 'https://www.gutenberg.org/ebooks/9584', 'en', 350), +(43366, 'All Aboard: A Story for Girls', 'Newberry, Fannie E. (Fannie Ellsworth)', '2006-08-07', 34, 'https://www.gutenberg.org/ebooks/19001', 'en', 1388), +(43367, 'Paula Monti, Tome I\nou L\'Hôtel Lambert - histoire contemporaine', 'Sue, Eugène', '2005-10-14', 6, 'https://www.gutenberg.org/ebooks/16875', 'fr', 61), +(43368, 'Patty Fairfield', 'Wells, Carolyn', '2005-07-01', 28, 'https://www.gutenberg.org/ebooks/8456', 'en', 195), +(43369, 'The Philippine Islands, 1493-1898: Volume 31, 1640\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', 'Aduarte, Diego', '2013-03-24', 36, 'https://www.gutenberg.org/ebooks/42399', 'en', 7466), +(43370, 'The Unknown; A Play in Three Acts', 'Maugham, W. Somerset (William Somerset)', '2015-08-24', 24, 'https://www.gutenberg.org/ebooks/49771', 'en', 4001); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(43371, 'Thoracic and Coracoid Arteries In Two Families of Birds, Columbidae and Hirundinidae', 'Jenkinson, Marion Anne', '2010-08-28', 16, 'https://www.gutenberg.org/ebooks/33558', 'en', 15428), +(43372, 'East London', 'Besant, Walter', '2019-02-11', 16, 'https://www.gutenberg.org/ebooks/58869', 'en', 15429), +(43373, 'Le tour du monde en quatre-vingts jours', 'Verne, Jules', '2007-04-04', 30, 'https://www.gutenberg.org/ebooks/20973', 'fr', 323), +(43374, '\"I Believe\" and other essays', 'Thorne, Guy', '2012-10-25', 11, 'https://www.gutenberg.org/ebooks/41178', 'en', 472), +(43375, 'The Last Lion, and Other Tales', 'Blasco Ibáñez, Vicente', '2012-03-05', 17, 'https://www.gutenberg.org/ebooks/39062', 'en', 179), +(43376, 'From a Girl\'s Point of View', 'Bell, Lilian', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11608', 'en', 1485), +(43377, 'King Matthias and the Beggar Boy', 'Jósika, Miklós, báró', '2011-07-23', 13, 'https://www.gutenberg.org/ebooks/36816', 'en', 15430), +(43378, 'Scenes in the Life of Harriet Tubman', 'Bradford, Sarah H. (Sarah Hopkins)', '2018-08-31', 42, 'https://www.gutenberg.org/ebooks/57821', 'en', 8465), +(43379, 'Murhattu urkkija: Salapoliisiromaani', 'Elvestad, Sven', '2018-10-08', 2, 'https://www.gutenberg.org/ebooks/58055', 'fi', 128), +(43380, 'Elementary Color', 'Bradley, Milton', '2012-09-29', 16, 'https://www.gutenberg.org/ebooks/40896', 'en', 15431), +(43381, 'On Patrol', 'Bower, John Graham', '2013-01-29', 12, 'https://www.gutenberg.org/ebooks/41944', 'en', 2100), +(43382, 'Helianth. Band 2\r\nBilder aus dem Leben zweier Menschen von heute und aus der norddeutschen Tiefebene', 'Schaeffer, Albrecht', '2019-04-01', 3, 'https://www.gutenberg.org/ebooks/59187', 'de', 549), +(43383, 'Cours familier de Littérature - Volume 01', 'Lamartine, Alphonse de', '2007-09-16', 24, 'https://www.gutenberg.org/ebooks/22618', 'fr', 1765), +(43384, 'Pioneer Surgery in Kentucky: A Sketch', 'Yandell, David Wendel', '2009-03-13', 14, 'https://www.gutenberg.org/ebooks/28322', 'en', 15432), +(43385, 'Stormy Voyage\nSandy Steele Adventures #3', 'Leckie, Robert', '2015-10-17', 16, 'https://www.gutenberg.org/ebooks/50238', 'en', 15433), +(43386, 'Ireland Since Parnell', 'Sheehan, D. D. (Daniel Desmond)', '2004-11-05', 30, 'https://www.gutenberg.org/ebooks/13963', 'en', 7115), +(43387, 'Departmental Ditties and Barrack Room Ballads', 'Kipling, Rudyard', '2005-04-01', 42, 'https://www.gutenberg.org/ebooks/7846', 'en', 2298), +(43388, 'Draining for Profit, and Draining for Health', 'Waring, George E. (George Edwin)', '2006-10-04', 28, 'https://www.gutenberg.org/ebooks/19465', 'en', 10461), +(43389, 'The Bible, King James version, Book 32: Jonah', 'Anonymous', '2005-04-01', 15, 'https://www.gutenberg.org/ebooks/8032', 'en', 6420), +(43390, 'Ourika', 'Duras, Claire de Durfort, duchesse de', '2015-06-29', 20, 'https://www.gutenberg.org/ebooks/49315', 'en', 15434), +(43391, 'Stories in Light and Shadow', 'Harte, Bret', '2006-05-18', 19, 'https://www.gutenberg.org/ebooks/2508', 'en', 211), +(43392, 'Han d\'Islande', 'Hugo, Victor', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6994', 'fr', 15435), +(43393, 'Stories to Tell to Children', 'Bryant, Sara Cone', '1996-03-01', 18, 'https://www.gutenberg.org/ebooks/473', 'en', 388), +(43394, 'Woodbarrow Farm: Play in Three Acts', 'Jerome, Jerome K. (Jerome Klapka)', '2017-05-10', 11, 'https://www.gutenberg.org/ebooks/54698', 'en', 1088), +(43395, 'The Story of Old Fort Loudon', 'Murfree, Mary Noailles', '2010-03-28', 15, 'https://www.gutenberg.org/ebooks/31801', 'en', 98), +(43396, 'A Connecticut Yankee in King Arthur\'s Court, Part 7.', 'Twain, Mark', '2004-07-07', 15, 'https://www.gutenberg.org/ebooks/7248', 'en', 781), +(43397, 'Portugal e Brazil: emigração e colonisação', 'Pércheiro, D. A. Gomes', '2009-02-02', 14, 'https://www.gutenberg.org/ebooks/27964', 'pt', 15436), +(43398, 'Jimsy: The Christmas Kid', 'Dalrymple, Leona', '2009-02-18', 16, 'https://www.gutenberg.org/ebooks/28110', 'en', 264), +(43399, 'Expositions of Holy Scripture: St. Luke', 'Maclaren, Alexander', '2005-05-01', 29, 'https://www.gutenberg.org/ebooks/8200', 'en', 14444), +(43400, 'Brahms and some of his works', 'Sanborn, Pitts', '2015-06-03', 19, 'https://www.gutenberg.org/ebooks/49127', 'en', 8896), +(43401, 'Der letzte Sommer: Eine Erzählung in Briefen', 'Huch, Ricarda', '2017-09-18', 6, 'https://www.gutenberg.org/ebooks/55578', 'de', 258), +(43402, 'Notre-Dame de Paris', 'Hugo, Victor', '2006-10-29', 279, 'https://www.gutenberg.org/ebooks/19657', 'fr', 55), +(43403, 'A History of Champagne, with Notes on the Other Sparkling Wines of France', 'Vizetelly, Henry', '2014-09-24', 13, 'https://www.gutenberg.org/ebooks/46953', 'en', 15437), +(43404, 'Birds and Nature, Vol. 12 No. 1 [June 1902]\nIllustrated by Color Photography', 'Various', '2015-01-05', 6, 'https://www.gutenberg.org/ebooks/47881', 'en', 1584), +(43405, 'Il peccato di Loreta', 'Boccardi, Alberto', '2008-11-04', 23, 'https://www.gutenberg.org/ebooks/27158', 'it', 61), +(43406, 'Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910\nFinal Report of Special Committee on Rail Sections, Paper No. 1177', 'Various', '2006-07-08', 4, 'https://www.gutenberg.org/ebooks/18785', 'en', 4530), +(43407, 'The Violet Fairy Book', 'Lang, Andrew', '1996-09-01', 265, 'https://www.gutenberg.org/ebooks/641', 'en', 1007), +(43408, 'Princess Napraxine, Volume 2 (of 3)', 'Ouida', '2016-01-03', 4, 'https://www.gutenberg.org/ebooks/50836', 'en', 61), +(43409, 'The Botanical Magazine, Vol. 09\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2011-12-22', 34, 'https://www.gutenberg.org/ebooks/38382', 'en', 97), +(43410, 'Punch, or the London Charivari, Volume 152, April 4, 1917', 'Various', '2005-02-08', 9, 'https://www.gutenberg.org/ebooks/14974', 'en', 134), +(43411, 'Junge Pferde! Junge Pferde!', 'Boldt, Paul', '2012-07-22', 12, 'https://www.gutenberg.org/ebooks/40298', 'de', 4162), +(43412, 'Myths of Greece and Rome\nNarrated with Special Reference to Literature and Art', 'Guerber, H. A. (Hélène Adeline)', '2012-03-25', 136, 'https://www.gutenberg.org/ebooks/39250', 'en', 11407), +(43413, 'Dew Drops, Vol. 37, No. 08, February 22, 1914', 'Various', '2004-11-24', 10, 'https://www.gutenberg.org/ebooks/14148', 'en', 563), +(43414, 'The Delinquent (Vol. IV, No. 4), April, 1914', 'Various', '2018-11-11', 3, 'https://www.gutenberg.org/ebooks/58267', 'en', 4611), +(43415, 'Monsieur Beaucaire', 'Tarkington, Booth', '2006-02-26', 27, 'https://www.gutenberg.org/ebooks/1983', 'en', 5842), +(43416, 'Plant Lore, Legends, and Lyrics\r\nEmbracing the Myths, Traditions, Superstitions, and Folk-Lore of the Plant Kingdom', 'Folkard, Richard', '2014-01-09', 218, 'https://www.gutenberg.org/ebooks/44638', 'en', 5504), +(43417, 'The Letters of Ambrose Bierce, With a Memoir by George Sterling', 'Bierce, Ambrose', '2011-05-25', 32, 'https://www.gutenberg.org/ebooks/36218', 'en', 15438), +(43418, 'The Oldest Code of Laws in the World\r\nThe code of laws promulgated by Hammurabi, King of Babylon, B.C. 2285-2242', 'Hammurabi, King of Babylonia', '2005-11-25', 83, 'https://www.gutenberg.org/ebooks/17150', 'en', 15439), +(43419, 'Teatro Futurista Sintetico', 'Marinetti, F. T.', '2015-12-15', 9, 'https://www.gutenberg.org/ebooks/50697', 'it', 10851), +(43420, 'In The Valley Of The Shadow', 'Bacon, Josephine Daskam', '2007-11-06', 12, 'https://www.gutenberg.org/ebooks/23365', 'en', 4141), +(43421, 'Les mystères de Paris, Tome IV', 'Sue, Eugène', '2006-07-27', 17, 'https://www.gutenberg.org/ebooks/18924', 'fr', 560), +(43422, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 1, Mary', 'Wake, William', '2004-09-01', 28, 'https://www.gutenberg.org/ebooks/6507', 'en', 7966), +(43423, 'At His Gates: A Novel. Vol. 3 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-10', 28, 'https://www.gutenberg.org/ebooks/47620', 'en', 15440), +(43424, 'Vue générale de l\'histoire politique de l\'Europe', 'Lavisse, Ernest', '2011-02-07', 19, 'https://www.gutenberg.org/ebooks/35200', 'fr', 5992), +(43425, 'Memoirs of Madame la Marquise de Montespan — Volume 3', 'Montespan, Madame de', '2004-12-02', 11, 'https://www.gutenberg.org/ebooks/3849', 'en', 6965), +(43426, 'The Brownie Scouts in the Circus', 'Wirt, Mildred A. (Mildred Augustine)', '2016-04-12', 9, 'https://www.gutenberg.org/ebooks/51745', 'en', 3133), +(43427, 'Angelina\n(novela mexicana)', 'Delgado, Rafael', '2005-06-17', 36, 'https://www.gutenberg.org/ebooks/16082', 'es', 109), +(43428, 'Minutes of the Proceedings of the Second Convention of Delegates from the Abolition Societies Established in Different Parts of the United States\nAssembled at Philadelphia, on the seventh day of January,\none thousand seven hundred and ninety-five, and continued,\nby adjournments, until the fourteenth day of the same\nmonth, inclusive', NULL, '2009-12-27', 5, 'https://www.gutenberg.org/ebooks/30772', 'en', 1174), +(43429, 'Jean Baptiste: A Story of French Canada', 'Le Rossignol, James Edward', '2013-07-22', 2, 'https://www.gutenberg.org/ebooks/43280', 'en', 15441), +(43430, 'Anthon L. Skanchy\r\nA Brief Autobiographical Sketch of the Missionary Labors of a Valiant Soldier for Christ', 'Skanchy, Anthon L. (Anthon Lornsen)', '2015-04-08', 9, 'https://www.gutenberg.org/ebooks/48668', 'en', 3273), +(43431, 'Little Journeys to the Homes of the Great - Volume 04\r\nLittle Journeys to the Homes of Eminent Painters', 'Hubbard, Elbert', '2006-04-04', 26, 'https://www.gutenberg.org/ebooks/18118', 'en', 14544), +(43432, 'Prästgården: En Julhistoria', 'Ossiannilsson, K. G. (Karl Gustav)', '2017-02-26', 14, 'https://www.gutenberg.org/ebooks/54237', 'sv', 420), +(43433, 'Rakkauden temppeli\nRunoja', 'Kouta, Aarni', '2019-07-28', 50, 'https://www.gutenberg.org/ebooks/60002', 'fi', 1171), +(43434, 'Minnie\'s Pet Parrot', 'Leslie, Madeline', '2008-09-14', 14, 'https://www.gutenberg.org/ebooks/26617', 'en', 15442), +(43435, 'Journal of a Residence on a Georgian Plantation: 1838-1839', 'Kemble, Fanny', '2004-05-01', 96, 'https://www.gutenberg.org/ebooks/12422', 'en', 15443), +(43436, 'Giotto', 'Quilter, Harry', '2013-03-17', 14, 'https://www.gutenberg.org/ebooks/42352', 'en', 15444), +(43437, 'The Return', 'De la Mare, Walter', '2002-02-01', 43, 'https://www.gutenberg.org/ebooks/3075', 'en', 580), +(43438, 'Forget Me Nearly', 'Wallace, F. L. (Floyd L.)', '2010-04-17', 44, 'https://www.gutenberg.org/ebooks/32025', 'en', 1061), +(43439, 'Waterways and Water Transport in Different Countries\r\nWith a description of the Panama, Suez, Manchester, Nicaraguan, and other canals.', 'Jeans, J. Stephen (James Stephen)', '2018-02-13', 23, 'https://www.gutenberg.org/ebooks/56560', 'en', 15445), +(43440, 'The Roman Traitor, Vol. 1', 'Herbert, Henry William', '2008-04-18', 10, 'https://www.gutenberg.org/ebooks/25092', 'en', 5857), +(43441, 'Kotisirkka', 'Dickens, Charles', '2014-02-14', 9, 'https://www.gutenberg.org/ebooks/44899', 'fi', 3397), +(43442, 'The Northern Iron', 'Birmingham, George A.', '2008-01-23', 17, 'https://www.gutenberg.org/ebooks/24140', 'en', 98), +(43443, 'England\'s Antiphon', 'MacDonald, George', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10375', 'en', 1694), +(43444, 'Mary Seaham: A Novel. Volume 1 of 3', 'Grey, Mrs. (Elizabeth Caroline)', '2012-08-04', 17, 'https://www.gutenberg.org/ebooks/40405', 'en', 348), +(43445, 'Martin Luther\'s Large Catechism, translated by Bente and Dau', 'Luther, Martin', '1999-04-01', 78, 'https://www.gutenberg.org/ebooks/1722', 'en', 4841), +(43446, 'A Glance at the Past and Present of the Negro: An Address', 'Terrell, Robert H. (Robert Heberton)', '2019-05-17', 28, 'https://www.gutenberg.org/ebooks/59528', 'en', 125), +(43447, 'Family Pride; Or, Purified by Suffering', 'Holmes, Mary Jane', '2005-04-12', 15, 'https://www.gutenberg.org/ebooks/15607', 'en', 336), +(43448, 'Elegy', 'Beaumont, Charles', '2010-06-14', 30, 'https://www.gutenberg.org/ebooks/32819', 'en', 179), +(43449, 'Aunt Judith: The Story of a Loving Life', 'Beaumont, Grace', '2007-05-14', 14, 'https://www.gutenberg.org/ebooks/21432', 'en', 470), +(43450, 'The Camp Fire Girls on the Open Road; Or, Glorify Work', 'Frey, Hildegard G.', '2011-06-21', 16, 'https://www.gutenberg.org/ebooks/36485', 'en', 4221), +(43451, 'Imperial Purple', 'Saltus, Edgar', '2003-07-01', 20, 'https://www.gutenberg.org/ebooks/4250', 'en', 1746), +(43452, 'Americana Ebrietatis\r\nThe Favorite Tipple of our Forefathers and the Laws and Customs Relating Thereto', 'Peeke, Hewson L. (Hewson Lindsley)', '2014-03-20', 15, 'https://www.gutenberg.org/ebooks/45177', 'en', 15446), +(43453, 'Open Water', 'Stringer, Arthur', '2011-10-12', 20, 'https://www.gutenberg.org/ebooks/37557', 'en', 8), +(43454, 'A Modern Chronicle — Complete', 'Churchill, Winston', '2004-10-19', 25, 'https://www.gutenberg.org/ebooks/5382', 'en', 675), +(43455, 'The Works of Richard Hurd, Volume 2 (of 8)', 'Hurd, Richard', '2016-09-08', 4, 'https://www.gutenberg.org/ebooks/53012', 'en', 12228), +(43456, 'Fun and Nonsense', 'Bonte, Willard', '2004-02-01', 62, 'https://www.gutenberg.org/ebooks/11095', 'en', 343), +(43457, 'Double Play: A Story of School and Baseball', 'Barbour, Ralph Henry', '2018-03-16', 16, 'https://www.gutenberg.org/ebooks/56752', 'en', 1877), +(43458, 'Czechoslovak Fairy Tales', 'Fillmore, Parker', '2010-05-02', 47, 'https://www.gutenberg.org/ebooks/32217', 'en', 10305), +(43459, 'Albrecht Dürer\'s Kupferstiche, Radirungen, Holzschnitte und Zeichnungen\r\nunter besonderer Berücksichtigung der dazu verwandten Papiere und deren Wasserzeichen', 'Hausmann, Bernhard', '2012-09-01', 29, 'https://www.gutenberg.org/ebooks/40637', 'de', 6212), +(43460, 'Love\'s Labour\'s Lost', 'Shakespeare, William', '1998-10-01', 34, 'https://www.gutenberg.org/ebooks/1510', 'en', 907), +(43461, 'Practical Ethics', 'Hyde, William De Witt', '2008-01-20', 20, 'https://www.gutenberg.org/ebooks/24372', 'en', 680), +(43462, 'Elements of Criticism, Volume III.', 'Kames, Henry Home, Lord', '2018-08-12', 17, 'https://www.gutenberg.org/ebooks/57680', 'en', 2641), +(43463, 'America\'s War for Humanity', 'Russell, Thomas Herbert', '2003-11-01', 27, 'https://www.gutenberg.org/ebooks/10147', 'en', 335), +(43464, 'Gaston de Latour; an unfinished romance', 'Pater, Walter', '2003-05-01', 21, 'https://www.gutenberg.org/ebooks/4062', 'en', 15447), +(43465, 'Harper\'s Young People, May 3, 1881\nAn Illustrated Weekly', 'Various', '2014-04-07', 5, 'https://www.gutenberg.org/ebooks/45345', 'en', 479), +(43466, 'Object Lessons on the Human Body\r\nA Transcript of Lessons Given in the Primary Department of School No. 49, New York City', 'Buckelew, Sarah F. (Sarah Frances)', '2005-03-21', 26, 'https://www.gutenberg.org/ebooks/15435', 'en', 15448), +(43467, 'The Flourishing of Romance and the Rise of Allegory\n(Periods of European Literature, vol. II)', 'Saintsbury, George', '2007-05-24', 26, 'https://www.gutenberg.org/ebooks/21600', 'en', 2881), +(43468, 'The House of Cariboo, and Other Tales from Arcadia', 'Gardiner, A. Paul', '2016-10-06', 23, 'https://www.gutenberg.org/ebooks/53220', 'en', 65), +(43469, 'Appletons\' Popular Science Monthly, March 1899\nVolume LIV, No. 5, March 1899', 'Various', '2013-11-27', 20, 'https://www.gutenberg.org/ebooks/44297', 'en', 210), +(43470, 'Some Pioneers and Pilgrims on the Prairies of Dakota\r\nOr, From the Ox Team to the Aeroplane', 'Reese, H. B.', '2011-10-16', 14, 'https://www.gutenberg.org/ebooks/37765', 'en', 15449), +(43471, 'The Irish Penny Journal, Vol. 1 No. 34, February 20, 1841', 'Various', '2017-06-03', 0, 'https://www.gutenberg.org/ebooks/54839', 'en', 81), +(43472, 'Over the Border: Acadia, the Home of \"Evangeline\"', 'Chase, Eliza B. (Eliza Brown)', '2004-10-01', 6, 'https://www.gutenberg.org/ebooks/6735', 'en', 3751), +(43473, 'Mein erster Ausflug: Wanderungen in Griechenland', 'Maximilian, Emperor of Mexico', '2014-11-21', 13, 'https://www.gutenberg.org/ebooks/47412', 'de', 6863), +(43474, 'Der Goldene Topf', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2005-12-20', 120, 'https://www.gutenberg.org/ebooks/17362', 'de', 900), +(43475, 'Other People\'s Business: The Romantic Career of the Practical Miss Dale', 'Smith, Harriet L. (Harriet Lummis)', '2007-10-23', 11, 'https://www.gutenberg.org/ebooks/23157', 'en', 61), +(43476, 'Sir Jagadis Chunder Bose, His Life and Speeches', 'Bose, Jagadis Chandra', '2007-07-16', 22, 'https://www.gutenberg.org/ebooks/22085', 'en', 814), +(43477, 'Setä: Ilveilys yhdessä näytöksessä', 'Suomalainen, Samuli', '2016-03-27', 22, 'https://www.gutenberg.org/ebooks/51577', 'fi', 433), +(43478, 'Success and How He Won It', 'Werner, E.', '2011-01-21', 29, 'https://www.gutenberg.org/ebooks/35032', 'en', 803), +(43479, 'Books Worth Reading\r\nBeing a List of the New and Forthcoming Publications of Greening & Co., Ltd, season 1901', 'Greening & Co. Ltd.', '2017-01-18', 9, 'https://www.gutenberg.org/ebooks/54005', 'en', 2663), +(43480, 'The Golden Fleece and the Heroes Who Lived Before Achilles', 'Colum, Padraic', '2000-11-01', 110, 'https://www.gutenberg.org/ebooks/2395', 'en', 15450), +(43481, 'The Gates Between', 'Phelps, Elizabeth Stuart', '2009-11-24', 19, 'https://www.gutenberg.org/ebooks/30540', 'en', 760), +(43482, 'The Nursery, November 1881, Vol. XXX\nA Monthly Magazine for Youngest Readers', 'Various', '2013-02-22', 9, 'https://www.gutenberg.org/ebooks/42160', 'en', 4641), +(43483, 'One Year in Scandinavia\r\nResults of the gospel in Denmark and Sweden; sketches and observations on the country and people; remarkable events; late persecutions and present aspect of affairs', 'Snow, Erastus Fairbanks', '2015-08-03', 24, 'https://www.gutenberg.org/ebooks/49588', 'en', 15451), +(43484, 'The Patrol of the Sun Dance Trail', 'Connor, Ralph', '2006-06-03', 11, 'https://www.gutenberg.org/ebooks/3247', 'en', 65), +(43485, 'Rossmoyne', 'Duchess', '2010-03-03', 22, 'https://www.gutenberg.org/ebooks/31492', 'en', 61), +(43486, 'Microcosmography\nor, a Piece of the World Discovered; in Essays and Characters', 'Earle, John', '2008-08-25', 48, 'https://www.gutenberg.org/ebooks/26425', 'en', 12635), +(43487, 'Nan Sherwood\'s Winter Holidays; Or, Rescuing the Runaways', 'Carr, Annie Roe', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12610', 'en', 82), +(43488, 'Peachmonk\r\nA Serio-Comic Detective Tale in Which No Fire-Arms Are Used and No One is Killed', 'Eyerman, John', '2012-07-16', 5, 'https://www.gutenberg.org/ebooks/40253', 'en', 1028), +(43489, 'Hellenica', 'Xenophon', '1998-01-01', 163, 'https://www.gutenberg.org/ebooks/1174', 'en', 4117), +(43490, 'Where There is Nothing\nBeing Volume I of Plays for an Irish Theatre', 'Yeats, W. B. (William Butler)', '2011-12-20', 13, 'https://www.gutenberg.org/ebooks/38349', 'en', 10603), +(43491, 'The heart of happy hollow\nA collection of stories', 'Dunbar, Paul Laurence', '2008-02-29', 42, 'https://www.gutenberg.org/ebooks/24716', 'en', 179), +(43492, 'Alcestis', 'Euripides', '2003-12-01', 105, 'https://www.gutenberg.org/ebooks/10523', 'en', 15452), +(43493, 'The Automatic Toy Works\r\nManufacturers of the Best Novelties in Mechanical and Other Toys', 'Automatic Toy Works, New York', '2018-01-07', 12, 'https://www.gutenberg.org/ebooks/56336', 'en', 15453), +(43494, 'St. Paul\'s Epistle to the Romans: A Practical Exposition. Vol. I', 'Gore, Charles', '2010-06-03', 24, 'https://www.gutenberg.org/ebooks/32673', 'en', 15138), +(43495, 'Bible Emblems', 'Seelye, Edward Eli', '2012-11-17', 30, 'https://www.gutenberg.org/ebooks/41381', 'en', 1130), +(43496, 'The Story of a Bad Boy', 'Aldrich, Thomas Bailey', '2006-02-26', 40, 'https://www.gutenberg.org/ebooks/1948', 'en', 153), +(43497, 'There is No Harm in Dancing', 'Penn, W. E.', '2004-11-27', 7, 'https://www.gutenberg.org/ebooks/14183', 'en', 15454), +(43498, 'Historical Characters in the Reign of Queen Anne', 'Oliphant, Mrs. (Margaret)', '2016-12-01', 14, 'https://www.gutenberg.org/ebooks/53644', 'en', 2660), +(43499, 'The Whale and the Grasshopper, and Other Fables', 'O\'Brien, Seumas', '2011-09-03', 30, 'https://www.gutenberg.org/ebooks/37301', 'en', 15455), +(43500, 'The Ordeal of Richard Feverel — Volume 1', 'Meredith, George', '2003-09-01', 13, 'https://www.gutenberg.org/ebooks/4406', 'en', 2079), +(43501, 'By order of the company', 'Johnston, Mary', '2014-05-22', 10, 'https://www.gutenberg.org/ebooks/45721', 'en', 4969), +(43502, 'Poems', 'French, Nora May', '2016-08-13', 11, 'https://www.gutenberg.org/ebooks/52796', 'en', 178), +(43503, 'Scientific American Supplement, No. 829, November 21, 1891', 'Various', '2005-02-14', 20, 'https://www.gutenberg.org/ebooks/15051', 'en', 210), +(43504, 'The Four-Pools Mystery', 'Webster, Jean', '2007-04-30', 44, 'https://www.gutenberg.org/ebooks/21264', 'en', 128), +(43505, 'Harper\'s Young People, June 22, 1880\nAn Illustrated Weekly', 'Various', '2009-05-31', 9, 'https://www.gutenberg.org/ebooks/29009', 'en', 479), +(43506, 'Plays, written by Sir John Vanbrugh, volume the first', 'Vanbrugh, John', '2016-02-02', 57, 'https://www.gutenberg.org/ebooks/51113', 'en', 907), +(43507, 'Tales by Polish Authors', NULL, '2011-03-02', 29, 'https://www.gutenberg.org/ebooks/35456', 'en', 1676), +(43508, 'Short Stories and Selections for Use in the Secondary Schools', NULL, '2005-01-01', 70, 'https://www.gutenberg.org/ebooks/7283', 'en', 179), +(43509, 'Hyvä poika ja kelpo sotamies eli Sydän oikeassa paikassa\nTosi tapaus seitsemän-vuotisesta sodasta', 'Hoffmann, Franz', '2010-12-06', 27, 'https://www.gutenberg.org/ebooks/34584', 'fi', 1103), +(43510, 'Red Fleece', 'Comfort, Will Levington', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6351', 'en', 15456), +(43511, 'The Art of Drinking: A Historical Sketch', 'Gervinus, Georg Gottfried', '2014-10-08', 16, 'https://www.gutenberg.org/ebooks/47076', 'en', 12601), +(43512, 'Ferdinand Huyck', 'Lennep, J. van (Jacob)', '2006-02-07', 22, 'https://www.gutenberg.org/ebooks/17706', 'nl', 319), +(43513, 'Cours familier de Littérature - Volume 05', 'Lamartine, Alphonse de', '2010-01-10', 6, 'https://www.gutenberg.org/ebooks/30918', 'fr', 920), +(43514, 'A War-time Journal, Germany 1914 and German Travel Notes', 'Jephson, Harriet Julia Campbell, Lady', '2007-11-18', 21, 'https://www.gutenberg.org/ebooks/23533', 'en', 932), +(43515, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 10 (1820)', 'Various', '2015-04-26', 6, 'https://www.gutenberg.org/ebooks/48802', 'en', 2757), +(43516, 'The Campers Out; Or, The Right Path and the Wrong', 'Ellis, Edward Sylvester', '2013-04-11', 13, 'https://www.gutenberg.org/ebooks/42504', 'en', 8201), +(43517, 'Πελοποννησιακός Πόλεμος, Τόμος τρίτος', 'Thucydides', '2009-08-28', 18, 'https://www.gutenberg.org/ebooks/29835', 'el', 5990), +(43518, 'The Golden Bough: A Study of Magic and Religion', 'Frazer, James George', '2003-01-01', 599, 'https://www.gutenberg.org/ebooks/3623', 'en', 655), +(43519, 'Aunt Jo\'s Scrap Bag, Volume 1', 'Alcott, Louisa May', '2008-07-12', 54, 'https://www.gutenberg.org/ebooks/26041', 'en', 388), +(43520, 'Elements of the Theory and Practice of Chymistry, 5th ed.', 'Macquer, Pierre Joseph', '2014-09-29', 25, 'https://www.gutenberg.org/ebooks/46998', 'en', 951), +(43521, 'Viajes por Filipinas: De Manila á Marianas', 'Alvarez Guerra, Juan', '2004-05-01', 34, 'https://www.gutenberg.org/ebooks/12274', 'es', 4048), +(43522, 'Commercial Politics (1837-1856)', NULL, '2017-03-31', 13, 'https://www.gutenberg.org/ebooks/54461', 'en', 13160), +(43523, 'Through St. Dunstan\'s to Light', 'Rawlinson, James H.', '2008-11-07', 6, 'https://www.gutenberg.org/ebooks/27193', 'en', 15457), +(43524, 'A Doctor of the Old School — Volume 5', 'Maclaren, Ian', '2004-08-09', 26, 'https://www.gutenberg.org/ebooks/9319', 'en', 1563), +(43525, 'Astounding Stories, February, 1931', 'Various', '2009-09-28', 113, 'https://www.gutenberg.org/ebooks/30124', 'en', 2527), +(43526, 'Punch, or the London Charivari Volume 107, September 22nd, 1894', 'Various', '2014-07-24', 16, 'https://www.gutenberg.org/ebooks/46396', 'en', 134), +(43527, 'Titan: A Romance. v. 1 (of 2)', 'Jean Paul', '2011-03-23', 36, 'https://www.gutenberg.org/ebooks/35664', 'en', 61), +(43528, 'Prime Difference', 'Nourse, Alan Edward', '2016-02-28', 52, 'https://www.gutenberg.org/ebooks/51321', 'en', 26), +(43529, 'Your Child: Today and Tomorrow\r\nSome Problems for Parents Concerning Punishment, Reasoning, Lies, Ideals and Ambitions, Fear, Work and Play, Imagination, Social Activities, Obedience, Adolescence, Will, Heredity', 'Gruenberg, Sidonie Matsner', '2006-02-01', 13, 'https://www.gutenberg.org/ebooks/9917', 'en', 3401), +(43530, 'Os Simples', 'Junqueiro, Abílio Manuel Guerra', '2006-01-16', 24, 'https://www.gutenberg.org/ebooks/17534', 'pt', 8), +(43531, 'The Man In The High-Water Boots', 'Smith, Francis Hopkinson', '2007-12-03', 16, 'https://www.gutenberg.org/ebooks/23701', 'en', 297), +(43532, 'The Romance and Tragedy of a Widely Known Business Man of New York', 'Russell, William Ingraham', '2004-07-01', 16, 'https://www.gutenberg.org/ebooks/6163', 'en', 15458), +(43533, 'Woman and Socialism', 'Bebel, August', '2014-10-30', 21, 'https://www.gutenberg.org/ebooks/47244', 'en', 15459), +(43534, 'The Story Girl', 'Montgomery, L. M. (Lucy Maud)', '2008-08-01', 9, 'https://www.gutenberg.org/ebooks/26273', 'en', 4444), +(43535, 'Narrative of a Survey of the Intertropical and Western Coasts of Australia\r\nPerformed between the years 1818 and 1822 — Volume 2', 'King, Philip Parker', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12046', 'en', 767), +(43536, 'Willem Adriaan Van Der Stel, and Other Historical Sketches', 'Theal, George McCall', '2017-10-20', 2, 'https://www.gutenberg.org/ebooks/55781', 'en', 15460), +(43537, 'Encyclopaedia Britannica, 11th Edition, \"Malta\" to \"Map, Walter\"\r\nVolume 17, Slice 5', 'Various', '2013-05-18', 49, 'https://www.gutenberg.org/ebooks/42736', 'en', 1081), +(43538, 'The Stokesley Secret', 'Yonge, Charlotte M. (Charlotte Mary)', '2002-09-01', 22, 'https://www.gutenberg.org/ebooks/3411', 'en', 3621), +(43539, 'Velazquez', 'Bensusan, S. L. (Samuel Levy)', '2009-10-22', 34, 'https://www.gutenberg.org/ebooks/30316', 'en', 11369), +(43540, 'Picture-Writing of the American Indians\r\nTenth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1888-89, Government Printing Office, Washington, 1893, pages 3-822', 'Mallery, Garrick', '2017-05-02', 26, 'https://www.gutenberg.org/ebooks/54653', 'en', 13846), +(43541, 'The Rules of the Game', 'White, Stewart Edward', '2004-08-16', 76, 'https://www.gutenberg.org/ebooks/13194', 'en', 315), +(43542, 'The Young Maiden', 'Muzzey, A. B. (Artemas Bowers)', '2008-02-05', 19, 'https://www.gutenberg.org/ebooks/24524', 'en', 1619), +(43543, 'Punch, or the London Charivari, Volume 153, October 3, 1917', 'Various', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/10711', 'en', 134), +(43544, 'Κύρου Ανάβασις Τόμος 2', 'Xenophon', '2012-06-22', 19, 'https://www.gutenberg.org/ebooks/40061', 'el', 4192), +(43545, 'The Eighteenth Brumaire of Louis Bonaparte', 'Marx, Karl', '2006-02-19', 173, 'https://www.gutenberg.org/ebooks/1346', 'en', 14721), +(43546, 'Orchids', 'O\'Brien, James', '2010-08-31', 15, 'https://www.gutenberg.org/ebooks/33593', 'en', 10548), +(43547, 'Il colore del tempo', 'De Roberto, Federico', '2010-05-19', 40, 'https://www.gutenberg.org/ebooks/32441', 'it', 779), +(43548, 'The Life of Joseph Smith, the Prophet', 'Cannon, George Q. (George Quayle)', '2019-07-23', 726, 'https://www.gutenberg.org/ebooks/59970', 'en', 6340), +(43549, 'Walks about Washington', 'Leupp, Francis E. (Francis Ellington)', '2017-12-02', 15, 'https://www.gutenberg.org/ebooks/56104', 'en', 15461), +(43550, 'La fête', 'Maizeroy, René', '2011-08-19', 5, 'https://www.gutenberg.org/ebooks/37133', 'fr', 179), +(43551, 'The Adventures of Uncle Jeremiah and Family at the Great Fair\nTheir Observations and Triumphs', 'Stevens, C. M. (Charles McClellan)', '2006-12-26', 13, 'https://www.gutenberg.org/ebooks/20184', 'en', 13331), +(43552, 'Het Yellowstone-Park', 'Vries, Hugo de', '2016-11-07', 14, 'https://www.gutenberg.org/ebooks/53476', 'nl', 2414), +(43553, 'Der Teemeister', 'Vischer, Melchior', '2012-02-21', 5, 'https://www.gutenberg.org/ebooks/38947', 'de', 60), +(43554, 'The Church of St. Bunco\r\nA Drastic Treatment of a Copyrighted Religion-- Un-Christian Non-Science', 'Clark, Gordon', '2012-06-02', 9, 'https://www.gutenberg.org/ebooks/39895', 'en', 1206), +(43555, 'The Underground Railroad\r\nA Record of Facts, Authentic Narratives, Letters, &c., Narrating the Hardships, Hair-Breadth Escapes and Death Struggles of the Slaves in Their Efforts for Freedom, As Related by Themselves and Others, or Witnessed by the Author.', 'Still, William', '2005-03-05', 321, 'https://www.gutenberg.org/ebooks/15263', 'en', 7161), +(43556, 'Among the Great Masters of Music\nScenes in the Lives of Famous Musicians', 'Rowlands, Walter', '2007-04-13', 16, 'https://www.gutenberg.org/ebooks/21056', 'en', 8100), +(43557, 'Skärgårdens vår', 'Mörne, Arvid', '2018-04-08', 8, 'https://www.gutenberg.org/ebooks/56938', 'sv', 15462), +(43558, 'Uncle William: The Man Who Was Shif\'less', 'Lee, Jennette', '2006-04-13', 11, 'https://www.gutenberg.org/ebooks/4634', 'en', 61), +(43559, 'Les historiettes de Tallemant des Réaux, tome sixième\r\nMémoires pour servir à l\'histoire du XVIIe siècle', 'Tallemant des Réaux', '2014-04-27', 14, 'https://www.gutenberg.org/ebooks/45513', 'fr', 1247), +(43560, 'A Short History of England, Ireland and Scotland', 'Parmele, Mary Platt', '2010-09-18', 26, 'https://www.gutenberg.org/ebooks/33755', 'en', 1953), +(43561, 'The Sportsman: On Hunting, a Sportsman\'s Manual, Commonly Called Cynegeticus', 'Xenophon', '1998-01-01', 42, 'https://www.gutenberg.org/ebooks/1180', 'en', 4117), +(43562, 'The Substitute Millionaire', 'Footner, Hulbert', '2018-05-25', 47, 'https://www.gutenberg.org/ebooks/57210', 'en', 332), +(43563, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 342, November 22, 1828', 'Various', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11405', 'en', 133), +(43564, 'Dorothy\'s Travels', 'Raymond, Evelyn', '2008-05-28', 26, 'https://www.gutenberg.org/ebooks/25630', 'en', 14847), +(43565, 'Susan Clegg and Her Friend Mrs. Lathrop', 'Warner, Anne', '2005-05-25', 20, 'https://www.gutenberg.org/ebooks/15899', 'en', 828), +(43566, 'The Colonists', 'Jones, Raymond F.', '2010-06-04', 45, 'https://www.gutenberg.org/ebooks/32687', 'en', 5065), +(43567, 'Mohawks: A Novel. Volume 2 of 3', 'Braddon, M. E. (Mary Elizabeth)', '2012-11-16', 17, 'https://www.gutenberg.org/ebooks/41375', 'en', 61), +(43568, 'Grace Harlowe\'s Problem', 'Chase, Josephine', '2007-01-11', 48, 'https://www.gutenberg.org/ebooks/20342', 'en', 51), +(43569, 'Dramas in de wolken: Luchtreizen en luchtreizigers\r\nDe Aarde en haar Volken, 1875', 'Anonymous', '2004-11-27', 15, 'https://www.gutenberg.org/ebooks/14177', 'nl', 7453), +(43570, 'Maanantai-tarinoita: Valikoima', 'Daudet, Alphonse', '2018-11-09', 4, 'https://www.gutenberg.org/ebooks/58258', 'fi', 4), +(43571, 'Buddhism in the Modern World', 'Saunders, Kenneth J. (Kenneth James)', '2014-01-06', 32, 'https://www.gutenberg.org/ebooks/44607', 'en', 639), +(43572, 'The Bride of the Nile — Volume 04', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5520', 'en', 803), +(43573, 'Der Fremde: Ein Gleichniss', 'Kahlenberg, Hans von', '2011-05-25', 8, 'https://www.gutenberg.org/ebooks/36227', 'de', 61), +(43574, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 732\nJanuary 5, 1878', 'Various', '2016-08-09', 6, 'https://www.gutenberg.org/ebooks/52762', 'en', 18), +(43575, 'Os Bravos do Mindello\r\nRomance Historico', 'Fonseca, Faustino da', '2007-05-04', 10, 'https://www.gutenberg.org/ebooks/21290', 'pt', 15463), +(43576, 'The Example of Vertu\nThe Example of Virtue', 'Hawes, Stephen', '2007-08-26', 5, 'https://www.gutenberg.org/ebooks/22415', 'en', 8), +(43577, 'The Elm-tree on the Mall', 'France, Anatole', '2015-09-10', 9, 'https://www.gutenberg.org/ebooks/49924', 'en', 58), +(43578, 'Ojennusnuora', 'Epictetus', '2005-08-29', 48, 'https://www.gutenberg.org/ebooks/16620', 'fi', 15464), +(43579, 'The Pools of Silence', 'Stacpoole, H. De Vere (Henry De Vere)', '2008-10-12', 23, 'https://www.gutenberg.org/ebooks/26889', 'en', 15465), +(43580, 'Famous Days in the Century of Invention', 'Stone, Gertrude L. (Gertrude Lincoln)', '2014-06-30', 22, 'https://www.gutenberg.org/ebooks/46150', 'en', 1739), +(43581, 'The Green Fairy Book', NULL, '2005-01-01', 235, 'https://www.gutenberg.org/ebooks/7277', 'en', 1007), +(43582, 'Ginseng and Other Medicinal Plants\r\nA Book of Valuable Information for Growers as Well as Collectors of Medicinal Roots, Barks, Leaves, Etc.', 'Harding, A. R. (Arthur Robert)', '2010-12-05', 60, 'https://www.gutenberg.org/ebooks/34570', 'en', 15466), +(43583, 'New Englands Prospect\r\nA true, lively, and experimentall description of that part of America, commonly called New England: discovering the state of that Countrie, both as it stands to our new-come English Planters; and to the old Native Inhabitants', 'Wood, William, active 1629-1635', '2014-10-09', 46, 'https://www.gutenberg.org/ebooks/47082', 'en', 15467), +(43584, 'Wives of the Prime Ministers, 1844-1906', 'Masterman, Lucy', '2015-09-22', 18, 'https://www.gutenberg.org/ebooks/50035', 'en', 2816), +(43585, 'The History of the Crusades (vol. 2 of 3)', 'Michaud, J. Fr. (Joseph Fr.)', '2015-06-03', 23, 'https://www.gutenberg.org/ebooks/49118', 'en', 10974), +(43586, 'I Mille', 'Garibaldi, Giuseppe', '2010-01-17', 25, 'https://www.gutenberg.org/ebooks/31002', 'it', 15468), +(43587, 'Die Christliche Taufe\r\nim Lichte der hl. Schrift und der Geschichte von der Zeit ihrer Entstehung bis auf die Gegenwart', 'Seefried, Johannes', '2017-09-14', 8, 'https://www.gutenberg.org/ebooks/55547', 'de', 1427), +(43588, 'The Grandissimes', 'Cable, George Washington', '2004-05-01', 39, 'https://www.gutenberg.org/ebooks/12280', 'en', 48), +(43589, 'Skiddoo!', 'Hobart, George V. (George Vere)', '2006-10-30', 15, 'https://www.gutenberg.org/ebooks/19668', 'en', 190), +(43590, 'Punch, or the London Charivari, Volume 100, May 23, 1891', 'Various', '2004-09-02', 5, 'https://www.gutenberg.org/ebooks/13352', 'en', 134), +(43591, 'How to Teach Manners in the School-room', 'Dewey, Julia M.', '2017-04-07', 9, 'https://www.gutenberg.org/ebooks/54495', 'en', 788), +(43592, 'Historia de Teruel', 'Blasco, Cosme', '2008-11-05', 20, 'https://www.gutenberg.org/ebooks/27167', 'es', 15469), +(43593, 'Harper\'s Young People, December 27, 1881\nAn Illustrated Weekly', 'Various', '2015-12-31', 2, 'https://www.gutenberg.org/ebooks/50809', 'en', 479), +(43594, 'Sally Dows', 'Harte, Bret', '2006-05-25', 61, 'https://www.gutenberg.org/ebooks/2705', 'en', 50), +(43595, 'A Syllabus of Hispanic-American History', 'Pierson, William Whatley, Jr.', '2013-08-08', 9, 'https://www.gutenberg.org/ebooks/43422', 'en', 15470), +(43596, 'Voodoo Planet', 'Norton, Andre', '2009-05-01', 3, 'https://www.gutenberg.org/ebooks/28913', 'en', 26), +(43597, 'The Works of Francis Maitland Balfour, Volume 4 (of 4)\r\nPlates', 'Balfour, Francis M. (Francis Maitland)', '2014-07-22', 14, 'https://www.gutenberg.org/ebooks/46362', 'en', 15471), +(43598, 'Marching Men', 'Anderson, Sherwood', '2004-12-01', 58, 'https://www.gutenberg.org/ebooks/7045', 'en', 15472), +(43599, 'Omens and Superstitions of Southern India', 'Thurston, Edgar', '2011-03-26', 81, 'https://www.gutenberg.org/ebooks/35690', 'en', 15473), +(43600, 'German Science Reader\r\nAn Introduction to Scientific German, for Students of Physics, Chemistry and Engineering', 'Kroeh, Charles Frederick', '2007-09-16', 39, 'https://www.gutenberg.org/ebooks/22627', 'en', 15474), +(43601, 'A Study of Shakespeare', 'Swinburne, Algernon Charles', '2005-08-01', 45, 'https://www.gutenberg.org/ebooks/16412', 'en', 15475), +(43602, 'Weymouth New Testament in Modern Speech, John', 'Weymouth, Richard Francis', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/8831', 'en', 5364), +(43603, 'Tea-Blending as a Fine Art', 'Walsh, Joseph M.', '2015-10-14', 19, 'https://www.gutenberg.org/ebooks/50207', 'en', 2245), +(43604, 'Cumner\'s Son and Other South Sea Folk — Volume 03', 'Parker, Gilbert', '2004-07-01', 41, 'https://www.gutenberg.org/ebooks/6197', 'en', 108), +(43605, 'As Cinzas de Camillo', 'Villa-Moura, Bento de Oliveira Cardoso, Visconde de', '2010-12-24', 4, 'https://www.gutenberg.org/ebooks/34742', 'pt', 2272), +(43606, 'The Warden', 'Trollope, Anthony', '2008-08-01', 10, 'https://www.gutenberg.org/ebooks/26287', 'en', 6201), +(43607, 'Passages from the French and Italian Notebooks, Volume 1.', 'Hawthorne, Nathaniel', '2005-04-01', 16, 'https://www.gutenberg.org/ebooks/7879', 'en', 1896), +(43608, 'Historical and Descriptive Narrative of Twenty Years\' Residence in South America (Vol 1 of 3)\r\nContaining travels in Arauco, Chile, Peru, and Colombia; with an account of the revolution, its rise, progress, and results', 'Stevenson, William Bennet, active 1803-1825', '2017-10-19', 6, 'https://www.gutenberg.org/ebooks/55775', 'en', 13023), +(43609, 'Allopathy and Homoeopathy Before the Judgment of Common Sense!', 'Hiller, Frederick', '2010-02-08', 13, 'https://www.gutenberg.org/ebooks/31230', 'en', 15476), +(43610, 'The Pocket R.L.S.: Being Favourite Passages from the Works of Stevenson', 'Stevenson, Robert Louis', '2001-03-01', 20, 'https://www.gutenberg.org/ebooks/2537', 'en', 15477), +(43611, 'Naisten aarreaitta', 'Zola, Émile', '2013-08-31', 7, 'https://www.gutenberg.org/ebooks/43610', 'fi', 9237), +(43612, 'An Iron Will', 'Marden, Orison Swett', '2004-08-11', 92, 'https://www.gutenberg.org/ebooks/13160', 'en', 4680), +(43613, 'George Borrow: The Man and His Books', 'Thomas, Edward', '2006-06-14', 25, 'https://www.gutenberg.org/ebooks/18588', 'en', 2192), +(43614, 'Shoe-Bar Stratton', 'Ames, Joseph Bushnell', '2008-11-28', 30, 'https://www.gutenberg.org/ebooks/27355', 'en', 315), +(43615, 'A Minor Poet, and Other Verse', 'Levy, Amy', '2018-04-22', 30, 'https://www.gutenberg.org/ebooks/57022', 'en', 532), +(43616, 'Des jésuites', 'Michelet, Jules', '2012-06-27', 18, 'https://www.gutenberg.org/ebooks/40095', 'fr', 15478), +(43617, 'Janet Hardy in Radio City', 'Wheeler, Ruthe S.', '2010-08-29', 21, 'https://www.gutenberg.org/ebooks/33567', 'en', 557), +(43618, 'Throne-Makers', 'Thayer, William Roscoe', '2019-02-10', 9, 'https://www.gutenberg.org/ebooks/58856', 'en', 15479), +(43619, 'A Letter to John Wilkes, Esq; Sheriff of London and Middlesex\r\nIn Which the Extortion and Oppression of Sheriffs Officers, With Many Other Alarming Abuses, Are Exemplified and Detected; and a Remedy Proposed', 'Holloway, Robert, active 1771-1808', '2019-07-25', 427, 'https://www.gutenberg.org/ebooks/59984', 'en', 15480), +(43620, 'Henri IV en Gascogne (1553-1589)', 'Batz-Trenquelléon, Charles de', '2012-10-23', 23, 'https://www.gutenberg.org/ebooks/41147', 'fr', 15481), +(43621, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 558, July 21, 1832', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11637', 'en', 133), +(43622, 'Throckmorton: A Novel', 'Seawell, Molly Elliot', '2011-07-24', 14, 'https://www.gutenberg.org/ebooks/36829', 'en', 12813), +(43623, '九命奇冤', 'Wu, Jianren', '2008-05-09', 26, 'https://www.gutenberg.org/ebooks/25402', 'zh', 1003), +(43624, 'The Centenary Garland\nBeing Pictorial Illustrations of the Novels of Sir Walter Scott', NULL, '2013-12-15', 9, 'https://www.gutenberg.org/ebooks/44435', 'en', 15482), +(43625, 'Sculpture of the Exposition Palaces and Courts\r\nDescriptive Notes on the Art of the Statuary at the Panama-Pacific International Exposition, San Francisco', 'James, Juliet Helena Lumbard', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/5712', 'en', 3035), +(43626, 'Legend Land, Vol. 1\r\nBeing a Collection of Some of the Old Tales Told in Those Western Parts of Britain Served by the Great Western Railway', 'Barham, G. Basil (George Basil)', '2006-12-23', 32, 'https://www.gutenberg.org/ebooks/20170', 'en', 14575), +(43627, 'The Russian Advance', 'Murray, Marr', '2016-11-09', 23, 'https://www.gutenberg.org/ebooks/53482', 'en', 8329), +(43628, 'The Fight for the Republic in China', 'Putnam Weale, B. L. (Bertram Lenox)', '2004-12-13', 21, 'https://www.gutenberg.org/ebooks/14345', 'en', 15483), +(43629, 'Le voleur', 'Darien, Georges', '2005-03-09', 17, 'https://www.gutenberg.org/ebooks/15297', 'fr', 2118), +(43630, 'A Short History of Christianity\nSecond Edition, Revised, With Additions', 'Robertson, J. M. (John Mackinnon)', '2016-07-10', 36, 'https://www.gutenberg.org/ebooks/52550', 'en', 958), +(43631, 'Life of Henriette Sontag, Countess de Rossi.\r\nwith Interesting Sketches by Scudo, Hector Berlioz, Louis Boerne, Adolphe Adam, Marie Aycard, Julie de Margueritte, Prince Puckler-Muskau & Theophile Gautier.', NULL, '2012-05-30', 15, 'https://www.gutenberg.org/ebooks/39861', 'en', 15484), +(43632, 'Little Miss Peggy: Only a Nursery Story', 'Molesworth, Mrs.', '2011-05-02', 25, 'https://www.gutenberg.org/ebooks/36015', 'en', 470), +(43633, 'Vaiti of the Islands', 'Grimshaw, Beatrice', '2015-12-10', 5, 'https://www.gutenberg.org/ebooks/50663', 'en', 9528), +(43634, 'Sally of Missouri', 'Young, Rose E. (Rose Emmet)', '2007-11-07', 17, 'https://www.gutenberg.org/ebooks/23391', 'en', 1043), +(43635, 'Ο Γήταυρος\r\nΔράμα', 'Golfis, Rigas', '2009-05-12', 32, 'https://www.gutenberg.org/ebooks/28779', 'el', 402), +(43636, 'Hunting Sketches', 'Trollope, Anthony', '1997-02-01', 189, 'https://www.gutenberg.org/ebooks/814', 'en', 20), +(43637, 'A New Hylid Frog from Eastern Mexico.\nUniversity of Kansas Publication, Vol 1, No 15', 'Taylor, Edward Harrison', '2010-11-15', 11, 'https://www.gutenberg.org/ebooks/34326', 'en', 15485), +(43638, 'Scientific American Supplement, No. 467, December 13, 1884', 'Various', '2014-08-28', 22, 'https://www.gutenberg.org/ebooks/46706', 'en', 210), +(43639, 'Poems of Optimism', 'Wilcox, Ella Wheeler', '2005-02-01', 25, 'https://www.gutenberg.org/ebooks/7421', 'en', 8), +(43640, 'Cobwebs and Cables', 'Stretton, Hesba', '2006-11-13', 24, 'https://www.gutenberg.org/ebooks/19802', 'en', 4927), +(43641, 'Dwell Deep; or, Hilda Thorn\'s Life Story', 'Le Feuvre, Amy', '2007-08-05', 14, 'https://www.gutenberg.org/ebooks/22243', 'en', 751), +(43642, 'Preaching and Paganism', 'Fitch, Albert Parker', '2005-06-16', 16, 'https://www.gutenberg.org/ebooks/16076', 'en', 7677), +(43643, 'Before the War', 'Haldane, R. B. Haldane (Richard Burdon Haldane), Viscount', '2006-03-16', 56, 'https://www.gutenberg.org/ebooks/17998', 'en', 15486), +(43644, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 6 - (G - H - I - J - K - L - M - N - O)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 16, 'https://www.gutenberg.org/ebooks/30786', 'fr', 1352), +(43645, 'Mary Barton', 'Gaskell, Elizabeth Cleghorn', '2000-04-01', 270, 'https://www.gutenberg.org/ebooks/2153', 'en', 4638), +(43646, 'The Poet Li Po, A.D. 701-762', 'Li, Bai', '2013-07-21', 49, 'https://www.gutenberg.org/ebooks/43274', 'en', 15487), +(43647, 'Haydn', 'Runciman, John F.', '2004-09-20', 17, 'https://www.gutenberg.org/ebooks/13504', 'en', 14047), +(43648, 'The New World', 'Bynner, Witter', '2009-01-07', 12, 'https://www.gutenberg.org/ebooks/27731', 'en', 8), +(43649, 'The Girl from Malta', 'Hume, Fergus', '2017-08-09', 24, 'https://www.gutenberg.org/ebooks/55311', 'en', 167), +(43650, 'Oliveira Martins\r\nO critico litterario, o economista, o historiador, o publicista, o politico', 'Quental, Antero de', '2010-03-15', 17, 'https://www.gutenberg.org/ebooks/31654', 'pt', 15488), +(43651, 'The Harlequinade: An Excursion', 'Calthrop, Dion Clayton', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8469', 'en', 3720), +(43652, 'Original Short Stories — Volume 05', 'Maupassant, Guy de', '2004-10-03', 17, 'https://www.gutenberg.org/ebooks/3081', 'en', 1112), +(43653, 'Hymns from the German\nTranslated by Frances Elizabeth Cox', NULL, '2012-04-13', 17, 'https://www.gutenberg.org/ebooks/39439', 'en', 14308), +(43654, 'Clever Betsy: A Novel', 'Burnham, Clara Louise', '2016-08-28', 14, 'https://www.gutenberg.org/ebooks/52908', 'en', 1391), +(43655, 'Vom Mars zur Erde', 'Daiber, Albert', '2012-12-01', 24, 'https://www.gutenberg.org/ebooks/41523', 'de', 613), +(43656, 'Head of the Lower School', 'Moore, Dorothea', '2018-02-18', 19, 'https://www.gutenberg.org/ebooks/56594', 'en', 62), +(43657, 'The Life of Col. James Gardiner\nWho Was Slain at the Battle of Prestonpans, September 21, 1745', 'Doddridge, Philip', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/11253', 'en', 5814), +(43658, 'Blackwood\'s Edinburgh Magazine, Volume 56, Number 348', 'Various', '2008-04-13', 14, 'https://www.gutenberg.org/ebooks/25066', 'en', 274), +(43659, 'The History of a Crime\nThe Testimony of an Eye-Witness', 'Hugo, Victor', '2003-12-01', 64, 'https://www.gutenberg.org/ebooks/10381', 'en', 1169), +(43660, 'The American Missionary — Volume 36, No. 2, February, 1882', 'Various', '2018-07-05', 4, 'https://www.gutenberg.org/ebooks/57446', 'en', 395), +(43661, 'Helena Brett\'s Career', 'Coke, Desmond', '2010-07-07', 3, 'https://www.gutenberg.org/ebooks/33103', 'en', 4598), +(43662, 'Ants and Some Other Insects: An Inquiry Into the Psychic Powers of These Animals', 'Forel, Auguste', '2016-05-23', 21, 'https://www.gutenberg.org/ebooks/52134', 'en', 10212), +(43663, 'United States Government Publications, v. 8 Jan.-Jun. 1892\r\nA Monthly Catalog', NULL, '2011-06-20', 13, 'https://www.gutenberg.org/ebooks/36471', 'en', 15489), +(43664, 'Diario de un viage a Salinas Grandes, en los campos del sud de Buenos Aires', 'García, Pedro Andrés', '2014-03-21', 7, 'https://www.gutenberg.org/ebooks/45183', 'es', 14827), +(43665, 'Briefwechsel zwischen Abaelard und Heloise, mit der Leidensgeschichte Abaelards', 'Héloïse', '2013-10-27', 49, 'https://www.gutenberg.org/ebooks/44051', 'de', 3886), +(43666, 'Amaury', 'Dumas, Alexandre', '2008-04-04', 61, 'https://www.gutenberg.org/ebooks/24988', 'es', 15490), +(43667, 'A Modern Chronicle — Volume 03', 'Churchill, Winston', '2004-10-19', 16, 'https://www.gutenberg.org/ebooks/5376', 'en', 828), +(43668, 'Ensitaistelujen ajoilta', 'Tiuppa, Otto', '2007-02-03', 7, 'https://www.gutenberg.org/ebooks/20514', 'fi', 61), +(43669, 'Speeches & Letters of Abraham Lincoln, 1832-1865', 'Lincoln, Abraham', '2005-01-17', 75, 'https://www.gutenberg.org/ebooks/14721', 'en', 15491), +(43670, 'The Atlantic Monthly, Volume 06, No. 34, August, 1860\r\nA Magazine Of Literature, Art, And Politics', 'Various', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/11061', 'en', 1227), +(43671, 'Notes on Islam', 'Hussain, Ahmed, Sir', '2008-04-30', 44, 'https://www.gutenberg.org/ebooks/25254', 'en', 3852), +(43672, 'A Woman Martyr', 'Diehl, Alice M. (Alice Mangold)', '2012-12-26', 135, 'https://www.gutenberg.org/ebooks/41711', 'en', 95), +(43673, 'An Example of Communal Currency: The facts about the Guernsey Market House', 'Harris, Joseph Theodore', '2010-08-02', 11, 'https://www.gutenberg.org/ebooks/33331', 'en', 15492), +(43674, 'Het vroolijke leven', 'Kloos-Reyneke van Stuwe, Jeanne', '2008-01-21', 6, 'https://www.gutenberg.org/ebooks/24386', 'nl', 61), +(43675, 'An Autobiography of Anthony Trollope', 'Trollope, Anthony', '2004-06-01', 86, 'https://www.gutenberg.org/ebooks/5978', 'en', 5826), +(43676, 'Das Kind: Novelle', 'Eckstein, Ernst', '2018-08-12', 9, 'https://www.gutenberg.org/ebooks/57674', 'de', 138), +(43677, 'Verses and Translations', 'Calverley, Charles Stuart', '2003-05-01', 5, 'https://www.gutenberg.org/ebooks/4096', 'en', 2475), +(43678, 'A Tour throughout South Wales and Monmouthshire', 'Barber, J. T.', '2011-07-06', 4, 'https://www.gutenberg.org/ebooks/36643', 'en', 15493), +(43679, 'Magnhild: Kertomus', 'Bjørnson, Bjørnstjerne', '2016-06-11', 9, 'https://www.gutenberg.org/ebooks/52306', 'fi', 7), +(43680, 'A Slave is a Slave', 'Piper, H. Beam', '2007-03-03', 94, 'https://www.gutenberg.org/ebooks/20726', 'en', 26), +(43681, 'Audrey', 'Johnston, Mary', '2004-12-29', 64, 'https://www.gutenberg.org/ebooks/14513', 'en', 4969), +(43682, '500 of the Best Cockney War Stories', 'Various', '2013-11-23', 65, 'https://www.gutenberg.org/ebooks/44263', 'en', 2223), +(43683, 'My Life — Volume 2', 'Wagner, Richard', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/5144', 'en', 1464), +(43684, 'Η νεράιδα του Πάγου', 'Andersen, H. C. (Hans Christian)', '2011-10-18', 53, 'https://www.gutenberg.org/ebooks/37791', 'el', 1007), +(43685, 'Soap-Making Manual\r\nA Practical Handbook on the Raw Materials, Their Manipulation, Analysis and Control in the Modern Soap Plant.', 'Thomssen, Edgar George', '2010-10-22', 205, 'https://www.gutenberg.org/ebooks/34114', 'en', 3023), +(43686, 'A Boy\'s Workshop: With plans and designs for in-door and out-door work', 'Craigin, Harry', '2015-11-13', 72, 'https://www.gutenberg.org/ebooks/50451', 'en', 15494), +(43687, 'The Secret Garden', 'Burnett, Frances Hodgson', '2005-12-26', 1026, 'https://www.gutenberg.org/ebooks/17396', 'en', 1445), +(43688, 'Marjorie Dean, College Sophomore', 'Chase, Josephine', '2007-07-14', 30, 'https://www.gutenberg.org/ebooks/22071', 'en', 3529), +(43689, 'The Paper Moneys of Europe: Their Moral and Economic Significance', 'Hirst, Francis Wrigley', '2009-07-23', 16, 'https://www.gutenberg.org/ebooks/29499', 'en', 15495), +(43690, 'The Turkish Jester\nor, The Pleasantries of Cogia Nasr Eddin Effendi', NULL, '2005-07-08', 49, 'https://www.gutenberg.org/ebooks/16244', 'en', 14508), +(43691, 'Palvelijat ja isäntäväki: Yksinäytöksinen ilveily', 'Anonymous', '2016-03-28', 4, 'https://www.gutenberg.org/ebooks/51583', 'fi', 433), +(43692, 'The Fantasy Fan November 1933\nThe Fans\' Own Magazine', 'Various', '2014-08-08', 17, 'https://www.gutenberg.org/ebooks/46534', 'en', 1524), +(43693, 'Eugene Aram — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7613', 'en', 4703), +(43694, 'Notes and Queries, Number 39, July 27, 1850', 'Various', '2004-10-13', 21, 'https://www.gutenberg.org/ebooks/13736', 'en', 105), +(43695, 'The Ranch Girls at Home Again', 'Vandercook, Margaret', '2011-01-12', 4, 'https://www.gutenberg.org/ebooks/34928', 'en', 15496), +(43696, 'On the Equator', 'De Windt, Harry', '2008-12-12', 23, 'https://www.gutenberg.org/ebooks/27503', 'en', 15385); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(43697, 'Army Boys in the French Trenches; Or, Hand to Hand Fighting with the Enemy', 'Randall, Homer', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9789', 'en', 3960), +(43698, 'Why Go to College? An Address', 'Palmer, Alice Freeman', '2000-10-01', 25, 'https://www.gutenberg.org/ebooks/2361', 'en', 15497), +(43699, 'Planet of Dread', 'Leinster, Murray', '2013-06-27', 55, 'https://www.gutenberg.org/ebooks/43046', 'en', 26), +(43700, 'The Rescue', 'Sedgwick, Anne Douglas', '2013-02-25', 8, 'https://www.gutenberg.org/ebooks/42194', 'en', 109), +(43701, 'The Council of Dogs', 'Anonymous', '2010-03-09', 14, 'https://www.gutenberg.org/ebooks/31466', 'en', 15498), +(43702, 'Perkins, the Fakeer: A Travesty on Reincarnation\r\nHis wonderful workings in the cases of \"When Reginald was Caroline\", \"How Chopin came to Remsen\", and \"Clarissa\'s troublesome baby\"', 'Van Zile, Edward S. (Edward Sims)', '2017-07-15', 8, 'https://www.gutenberg.org/ebooks/55123', 'en', 8208), +(43703, 'Experiments and Observations Tending to Illustrate the Nature and Properties of Electricity\r\nIn One Letter to Martin Folkes, Esq; President, and Two to the Royal Society', 'Watson, William, Sir', '2014-07-01', 19, 'https://www.gutenberg.org/ebooks/46168', 'en', 14746), +(43704, 'Antonius ja Cleopatra', 'Shakespeare, William', '2005-08-29', 37, 'https://www.gutenberg.org/ebooks/16618', 'fi', 15499), +(43705, 'The House of Fulfilment', 'Martin, George Madden', '2010-03-28', 10, 'https://www.gutenberg.org/ebooks/31806', 'en', 6156), +(43706, 'India, Its Life and Thought', 'Jones, John P. (John Peter)', '2009-02-18', 12, 'https://www.gutenberg.org/ebooks/28117', 'en', 636), +(43707, 'The African Colony: Studies in the Reconstruction', 'Buchan, John', '2010-12-02', 44, 'https://www.gutenberg.org/ebooks/34548', 'en', 15500), +(43708, 'History of Education', 'Seeley, Levi', '2009-02-02', 12, 'https://www.gutenberg.org/ebooks/27963', 'en', 3474), +(43709, 'The Story of Siena and San Gimignano', 'Gardner, Edmund G.', '2014-09-24', 23, 'https://www.gutenberg.org/ebooks/46954', 'en', 15501), +(43710, 'Aksel ja Valpuri: Murhenäytelmä viidessä näytöksessä', 'Oehlenschläger, Adam', '2006-10-28', 6, 'https://www.gutenberg.org/ebooks/19650', 'fi', 1552), +(43711, 'Kilpakosijat: Kertomus', 'Lassila, Maiju', '2015-06-03', 15, 'https://www.gutenberg.org/ebooks/49120', 'fi', 175), +(43712, 'The Philosophy of the Plays of Shakspere Unfolded', 'Bacon, Delia Salter', '2005-06-01', 24, 'https://www.gutenberg.org/ebooks/8207', 'en', 2784), +(43713, 'The River Motor Boat Boys on the Yukon: The Lost Mine of Rainbow Bend', 'Gordon, Harry', '2016-01-02', 7, 'https://www.gutenberg.org/ebooks/50831', 'en', 2794), +(43714, 'The Coral Island: A Tale of the Pacific Ocean', 'Ballantyne, R. M. (Robert Michael)', '1996-09-01', 354, 'https://www.gutenberg.org/ebooks/646', 'en', 550), +(43715, 'Studies in Song, A Century of Roundels, Sonnets on English Dramatic Poets, The Heptalogia, Etc.\r\nFrom Swinburne\'s Poems Volume V.', 'Swinburne, Algernon Charles', '2006-07-08', 11, 'https://www.gutenberg.org/ebooks/18782', 'en', 54), +(43716, 'Novelleja Decameronesta', 'Boccaccio, Giovanni', '2015-01-06', 25, 'https://www.gutenberg.org/ebooks/47886', 'fi', 12245), +(43717, 'The American Missionary — Volume 41, No. 11, November, 1887', 'Various', '2018-05-28', 4, 'https://www.gutenberg.org/ebooks/57228', 'en', 395), +(43718, 'Essays on Wit No. 2', NULL, '2005-02-08', 8, 'https://www.gutenberg.org/ebooks/14973', 'en', 1697), +(43719, 'Voyage autour de mon jardin', 'Karr, Alphonse', '2011-12-22', 18, 'https://www.gutenberg.org/ebooks/38385', 'fr', 8600), +(43720, 'Socialism, Utopian and Scientific', 'Engels, Friedrich', '2012-03-24', 98, 'https://www.gutenberg.org/ebooks/39257', 'en', 254), +(43721, 'A Child\'s Garden of Verses', 'Stevenson, Robert Louis', '2008-05-26', 64, 'https://www.gutenberg.org/ebooks/25608', 'en', 2951), +(43722, 'The Bride of the Nile — Volume 02', 'Ebers, Georg', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/5518', 'en', 803), +(43723, 'La Samaritaine, évangile en trois tableaux, en vers', 'Rostand, Edmond', '2018-11-10', 7, 'https://www.gutenberg.org/ebooks/58260', 'fr', 15502), +(43724, 'Melmoth the Wanderer, Vol. 4 (of 4)', 'Maturin, Charles Robert', '2016-12-07', 31, 'https://www.gutenberg.org/ebooks/53688', 'en', 461), +(43725, 'J\'accuse...!', 'Zola, Émile', '2007-04-04', 20, 'https://www.gutenberg.org/ebooks/20974', 'fr', 15503), +(43726, 'The Hour Will Come: A Tale of an Alpine Cloister. Volumes I and II', 'Hillern, Wilhelmine von', '2011-07-21', 14, 'https://www.gutenberg.org/ebooks/36811', 'en', 5119), +(43727, 'The Five Great Philosophies of Life', 'Hyde, William De Witt', '2012-03-07', 317, 'https://www.gutenberg.org/ebooks/39065', 'en', 2286), +(43728, 'Hannu; Nuori Anssi; Sydän ja Kuolema', 'Koskenniemi, Veikko Antero', '2006-12-21', 27, 'https://www.gutenberg.org/ebooks/20148', 'fi', 61), +(43729, 'The Art of Invigorating and Prolonging Life\r\nBy Food, Clothes, Air, Exercise, Wine, Sleep, &c. and Peptic Precepts, Pointing Out Agreeable and Effectual Methods to Prevent and Relieve Indigestion, and to Regulate and Strengthen the Action of the Stomach and Bowels', 'Kitchiner, William', '2012-09-28', 22, 'https://www.gutenberg.org/ebooks/40891', 'en', 3463), +(43730, 'The Self-Plumed Bishop Unplumed\r\nA Reply to the Profound Erudition of the Self-Named Hugh Latimer, in His Doctrine of Endless Punishment Asserted', 'Latham, Thomas', '2018-10-07', 2, 'https://www.gutenberg.org/ebooks/58052', 'en', 2706), +(43731, 'The Rāmāyana, Volume Two. Āranya, Kishkindhā, and Sundara Kāndam', 'Valmiki', '2018-08-31', 18, 'https://www.gutenberg.org/ebooks/57826', 'en', 7485), +(43732, 'Teerelän perhe', 'Alkio, Santeri', '2012-05-30', 18, 'https://www.gutenberg.org/ebooks/39859', 'fi', 61), +(43733, 'Rubble and Roseleaves, and Things of That Kind', 'Boreham, Frank', '2019-04-01', 18, 'https://www.gutenberg.org/ebooks/59180', 'en', 20), +(43734, 'Arminell: A Social Romance, Vol. 3', 'Baring-Gould, S. (Sabine)', '2016-07-12', 19, 'https://www.gutenberg.org/ebooks/52568', 'en', 137), +(43735, 'Madame de Longueville: La Jeunesse de Madame de Longueville', 'Cousin, Victor', '2013-01-29', 7, 'https://www.gutenberg.org/ebooks/41943', 'fr', 15504), +(43736, 'Aesop\'s Fables', 'Aesop', '2005-09-01', 93, 'https://www.gutenberg.org/ebooks/8809', 'en', 7140), +(43737, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 12, No. 31, October, 1873', 'Various', '2004-11-05', 22, 'https://www.gutenberg.org/ebooks/13964', 'en', 162), +(43738, 'The Queen\'s Daughters in India', 'Bushnell, Katharine C. (Katharine Caroline)', '2014-11-04', 12, 'https://www.gutenberg.org/ebooks/47288', 'en', 15505), +(43739, 'Gli \'ismi\' contemporanei\r\n(Verismo, Simbolismo, Idealismo, Cosmopolitanismo) ed altri saggi di critica letteraria ed artistica', 'Capuana, Luigi', '2009-03-14', 36, 'https://www.gutenberg.org/ebooks/28325', 'it', 15506), +(43740, 'Les derniers paysans - Tome 1', 'Souvestre, Émile', '2015-06-28', 12, 'https://www.gutenberg.org/ebooks/49312', 'fr', 61), +(43741, 'Collectivum', 'Lewis, Mike', '2010-02-07', 21, 'https://www.gutenberg.org/ebooks/31208', 'en', 26), +(43742, 'The Bible, King James version, Book 35: Habakkuk', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8035', 'en', 1610), +(43743, 'A Primary Reader: Old-time Stories, Fairy Tales and Myths Retold by Children', 'Smythe, E. Louise (Emma Louise)', '2005-04-01', 466, 'https://www.gutenberg.org/ebooks/7841', 'en', 1007), +(43744, 'The Price', 'Lynde, Francis', '2006-10-04', 10, 'https://www.gutenberg.org/ebooks/19462', 'en', 177), +(43745, 'The Lord of the Sea', 'Shiel, M. P. (Matthew Phipps)', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6993', 'en', 26), +(43746, 'The Weapons of Mystery', 'Hocking, Joseph', '2004-08-10', 32, 'https://www.gutenberg.org/ebooks/13158', 'en', 3724), +(43747, 'How to Tell Stories to Children, and Some Stories to Tell', 'Bryant, Sara Cone', '2005-02-18', 100, 'https://www.gutenberg.org/ebooks/474', 'en', 6258), +(43748, 'Strange Stories from a Chinese Studio, Vol. 2 (of 2)', 'Pu, Songling', '2013-09-03', 52, 'https://www.gutenberg.org/ebooks/43628', 'en', 14710), +(43749, 'Julius Krohn runoilijana', 'Trast, V. K.', '2014-06-15', 18, 'https://www.gutenberg.org/ebooks/45987', 'fi', 15507), +(43750, 'Names: and Their Meaning; A Book for the Curious', 'Wagner, Leopold', '2016-08-29', 70, 'https://www.gutenberg.org/ebooks/52930', 'en', 15508), +(43751, 'The Frontiersmen', 'Aimard, Gustave', '2012-04-08', 24, 'https://www.gutenberg.org/ebooks/39401', 'en', 15509), +(43752, 'Elizabethan & Jacobean Pamphlets', NULL, '2014-02-09', 18, 'https://www.gutenberg.org/ebooks/44855', 'en', 8603), +(43753, 'The Nineteenth Century Apostle of the Little Ones', 'Uhlrich, E.', '2011-06-16', 11, 'https://www.gutenberg.org/ebooks/36449', 'en', 15510), +(43754, 'The Chamber of Life', 'Peyton, Green', '2008-06-21', 31, 'https://www.gutenberg.org/ebooks/25862', 'en', 26), +(43755, 'Viimeinen ponnistus\nNäytelmä neljässä näytöksessä', 'Kurikka, Matti', '2005-01-17', 30, 'https://www.gutenberg.org/ebooks/14719', 'fi', 247), +(43756, 'One-Act Plays by Modern Authors', NULL, '2010-10-24', 53, 'https://www.gutenberg.org/ebooks/33907', 'en', 1088), +(43757, 'Multitude and Solitude', 'Masefield, John', '2018-12-09', 14, 'https://www.gutenberg.org/ebooks/58436', 'en', 8039), +(43758, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 10 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-10-29', 8, 'https://www.gutenberg.org/ebooks/44069', 'it', 6107), +(43759, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 07: Venice', 'Casanova, Giacomo', '2004-12-10', 13, 'https://www.gutenberg.org/ebooks/2957', 'en', 4164), +(43760, 'The Young Alaskans on the Trail', 'Hough, Emerson', '2009-05-09', 28, 'https://www.gutenberg.org/ebooks/28741', 'en', 15511), +(43761, 'A Waif of the Mountains', 'Ellis, Edward Sylvester', '2009-08-15', 30, 'https://www.gutenberg.org/ebooks/29693', 'en', 2046), +(43762, 'Narrative and Critical History of America, Vol. 6 (of 8)\r\nThe United States of North America, Part I', NULL, '2016-04-18', 7, 'https://www.gutenberg.org/ebooks/51789', 'en', 3403), +(43763, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 2\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 9, 'https://www.gutenberg.org/ebooks/3885', 'en', 4453), +(43764, '幽夢影 — Part 2', 'Zhang, Chao', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7419', 'zh', 3769), +(43765, 'Five O\'Clock Tea: Farce', 'Howells, William Dean', '2009-01-05', 13, 'https://www.gutenberg.org/ebooks/27709', 'en', 61), +(43766, 'Occasional Poems\r\nPart 3 from Volume IV of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 9, 'https://www.gutenberg.org/ebooks/9583', 'en', 350), +(43767, 'Harper\'s Round Table, December 10, 1895', 'Various', '2015-08-24', 10, 'https://www.gutenberg.org/ebooks/49776', 'en', 668), +(43768, 'Percy Bysshe Shelley as a Philosopher and Reformer', 'Sotheran, Charles', '2005-10-14', 9, 'https://www.gutenberg.org/ebooks/16872', 'en', 15512), +(43769, 'Aarniometsän sydän', 'Roberts, Charles G. D., Sir', '2005-07-01', 9, 'https://www.gutenberg.org/ebooks/8451', 'fi', 2586), +(43770, 'Young Lord Stranleigh: A Novel', 'Barr, Robert', '2017-08-10', 15, 'https://www.gutenberg.org/ebooks/55329', 'en', 61), +(43771, 'Cabbages and Cauliflowers: How to Grow Them\nA Practical Treatise, Giving Full Details On Every Point,\nIncluding Keeping And Marketing The Crop', 'Gregory, James John Howard', '2006-08-08', 23, 'https://www.gutenberg.org/ebooks/19006', 'en', 15513), +(43772, 'A Prayer Book for Soldiers and Sailors', 'Episcopal Church. Army and Navy Commission', '2015-11-17', 22, 'https://www.gutenberg.org/ebooks/50469', 'en', 15514), +(43773, 'McClure\'s Magazine, Vol. XXXI, No. 6, October, 1908', 'Various', '2013-09-28', 12, 'https://www.gutenberg.org/ebooks/43842', 'en', 883), +(43774, 'Le Morvan, [A District of France,] Its Wild Sports, Vineyards and Forests; with Legends, Antiquities, Rural and Local Sketches', 'Crignelle, Henri de', '2009-04-21', 16, 'https://www.gutenberg.org/ebooks/28573', 'en', 15515), +(43775, 'Derelicts', 'Locke, William John', '2017-11-10', 32, 'https://www.gutenberg.org/ebooks/55927', 'en', 5870), +(43776, 'In Unfamiliar England\r\nA Record of a Seven Thousand Mile Tour by Motor of the Unfrequented Nooks and Corners, and the Shrines of Especial Interest, in England; With Incursions into Scotland and Ireland.', 'Murphy, Thos. D. (Thomas Dowler)', '2013-06-20', 14, 'https://www.gutenberg.org/ebooks/42990', 'en', 2364), +(43777, 'A Literary History of the English People, from the Origins to the Renaissance', 'Jusserand, J. J. (Jean Jules)', '2007-07-11', 17, 'https://www.gutenberg.org/ebooks/22049', 'en', 1694), +(43778, 'Stories By English Authors: France (Selected by Scribners)', NULL, '2006-03-26', 76, 'https://www.gutenberg.org/ebooks/2359', 'en', 409), +(43779, 'Te Lande', 'Buysse, Cyriel', '2015-03-16', 7, 'https://www.gutenberg.org/ebooks/48496', 'nl', 179), +(43780, 'The Inner Beauty', 'Maeterlinck, Maurice', '2011-01-10', 29, 'https://www.gutenberg.org/ebooks/34910', 'en', 20), +(43781, 'The Moon and Sixpence', 'Maugham, W. Somerset (William Somerset)', '1995-02-01', 734, 'https://www.gutenberg.org/ebooks/222', 'en', 2123), +(43782, 'Récit d\'une excursion de l\'impératrice Marie-Louise aux glaciers de Savoie en juillet 1814', 'Méneval, Claude-François, baron de', '2006-09-10', 10, 'https://www.gutenberg.org/ebooks/19234', 'fr', 15516), +(43783, 'Circus', 'Nourse, Alan Edward', '2007-10-03', 49, 'https://www.gutenberg.org/ebooks/22875', 'en', 179), +(43784, 'Mutiny Memoirs: Being Personal Reminiscences of the Great Sepoy Revolt of 1857', 'Mackenzie, A. R. D. (Alfred Robert Davidson)', '2015-07-29', 10, 'https://www.gutenberg.org/ebooks/49544', 'en', 15517), +(43785, 'Tales of Two Countries', 'Kielland, Alexander Lange', '2005-08-01', 16, 'https://www.gutenberg.org/ebooks/8663', 'en', 15518), +(43786, 'Μενέξενоς', 'Plato', '2012-05-05', 12, 'https://www.gutenberg.org/ebooks/39633', 'el', 15519), +(43787, 'Kisington Town', 'Brown, Abbie Farwell', '2012-12-28', 15, 'https://www.gutenberg.org/ebooks/41729', 'en', 1007), +(43788, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War — Complete (1609-15)', 'Motley, John Lothrop', '2004-11-09', 22, 'https://www.gutenberg.org/ebooks/4892', 'en', 4328), +(43789, 'The Sylphs of the Season with Other Poems', 'Allston, Washington', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11059', 'en', 178), +(43790, 'The History of Don Quixote, Volume 2, Part 37', 'Cervantes Saavedra, Miguel de', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/5940', 'en', 3761), +(43791, 'Through the Postern Gate: A Romance in Seven Days', 'Barclay, Florence L. (Florence Louisa)', '2010-07-31', 21, 'https://www.gutenberg.org/ebooks/33309', 'en', 1902), +(43792, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 564, September 1, 1832', 'Various', '2004-04-01', 3, 'https://www.gutenberg.org/ebooks/11865', 'en', 133), +(43793, 'Two Yellow-Birds', 'Anonymous', '2014-04-14', 16, 'https://www.gutenberg.org/ebooks/45389', 'en', 1602), +(43794, 'The Olivia Letters\r\nBeing Some History of Washington City for Forty Years as Told by the Letters of a Newspaper Correspondent', 'Briggs, Emily Edson', '2019-01-03', 7, 'https://www.gutenberg.org/ebooks/58604', 'en', 15520), +(43795, 'Au pays russe', 'Legras, Jules', '2018-02-15', 11, 'https://www.gutenberg.org/ebooks/56558', 'fr', 6352), +(43796, 'Trackers of the Fog Pack; Or, Jack Ralston Flying Blind', 'Newcomb, Ambrose', '2014-06-14', 5, 'https://www.gutenberg.org/ebooks/45973', 'en', 128), +(43797, 'A Book of Christian Sonnets', 'Allen, William', '2016-12-27', 5, 'https://www.gutenberg.org/ebooks/53816', 'en', 6193), +(43798, 'La vie des abeilles', 'Maeterlinck, Maurice', '2012-01-08', 17, 'https://www.gutenberg.org/ebooks/38527', 'fr', 4644), +(43799, '孟子', 'Mencius', '2008-01-05', 45, 'https://www.gutenberg.org/ebooks/24178', 'zh', 8979), +(43800, 'Cousin Phillis', 'Gaskell, Elizabeth Cleghorn', '2003-07-01', 60, 'https://www.gutenberg.org/ebooks/4268', 'en', 45), +(43801, 'Tommy Trot\'s Visit to Santa Claus', 'Page, Thomas Nelson', '2008-06-25', 36, 'https://www.gutenberg.org/ebooks/25896', 'en', 585), +(43802, 'The Picturesque Antiquities of Spain\r\nDescribed in a series of letters, with illustrations representing Moorish palaces, cathedrals, and other monuments of art, contained in the cities of Burgos, Valladolid, Toledo, and Seville.', 'Wells, Nathaniel Armstrong', '2010-06-15', 36, 'https://www.gutenberg.org/ebooks/32821', 'en', 15521), +(43803, 'Dr. Southwood Smith: A Retrospect', 'Lewes, Gertrude Hill', '2019-05-14', 9, 'https://www.gutenberg.org/ebooks/59510', 'en', 15522), +(43804, 'Mushrooms: how to grow them\na practical treatise on mushroom culture for profit and pleasure', 'Falconer, William', '2008-03-29', 56, 'https://www.gutenberg.org/ebooks/24944', 'en', 15523), +(43805, 'At His Gates: A Novel. Vol. 1 (of 3)', 'Oliphant, Mrs. (Margaret)', '2014-12-10', 23, 'https://www.gutenberg.org/ebooks/47618', 'en', 297), +(43806, 'The Queen of the Pirate Isle', 'Harte, Bret', '2005-11-27', 74, 'https://www.gutenberg.org/ebooks/17168', 'en', 15524), +(43807, 'Adrift on the Pacific: A Boys [sic] Story of the Sea and its Perils', 'Ellis, Edward Sylvester', '2009-08-11', 22, 'https://www.gutenberg.org/ebooks/29667', 'en', 15006), +(43808, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 12', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 13, 'https://www.gutenberg.org/ebooks/3871', 'en', 1870), +(43809, 'The Grandchildren of the Ghetto', 'Zangwill, Israel', '2011-02-11', 10, 'https://www.gutenberg.org/ebooks/35238', 'en', 15525), +(43810, 'In de Oer-wouden van Afrika', 'Verne, Jules', '2006-04-05', 7, 'https://www.gutenberg.org/ebooks/18120', 'nl', 26), +(43811, 'Anti-Slavery Poems 3.\r\nPart 3 From Volume III of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 13, 'https://www.gutenberg.org/ebooks/9577', 'en', 4777), +(43812, 'Critical Miscellanies (Vol. 3 of 3), Essay 4: The Life of George Eliot', 'Morley, John', '2006-03-09', 24, 'https://www.gutenberg.org/ebooks/17954', 'en', 5123), +(43813, 'Les cavaliers de la nuit, 1er partie (t. 2/4)', 'Ponson du Terrail', '2015-04-06', 13, 'https://www.gutenberg.org/ebooks/48650', 'fr', 298), +(43814, 'The Czar: A tale of the Time of the First Napoleon', 'Alcock, Deborah', '2015-08-25', 6, 'https://www.gutenberg.org/ebooks/49782', 'en', 5888), +(43815, 'Le livre des masques\r\nPortraits symbolistes', 'Gourmont, Remy de', '2005-10-16', 27, 'https://www.gutenberg.org/ebooks/16886', 'fr', 15526), +(43816, 'A History of Nineteenth Century Literature (1780-1895)', 'Saintsbury, George', '2010-03-19', 24, 'https://www.gutenberg.org/ebooks/31698', 'en', 2644), +(43817, 'The Roman History of Ammianus Marcellinus\r\nDuring the Reigns of the Emperors Constantius, Julian, Jovianus, Valentinian, and Valens', 'Ammianus Marcellinus', '2009-04-22', 103, 'https://www.gutenberg.org/ebooks/28587', 'en', 15527), +(43818, 'The Garden Without Walls', 'Dawson, Coningsby', '2017-05-28', 4, 'https://www.gutenberg.org/ebooks/54801', 'en', 109), +(43819, 'Bible Animals;\r\nBeing a Description of Every Living Creature Mentioned in the Scripture, from the Ape to the Coral.', 'Wood, J. G. (John George)', '2013-06-17', 37, 'https://www.gutenberg.org/ebooks/42964', 'en', 15528), +(43820, 'Invasion', 'Leinster, Murray', '2009-07-19', 71, 'https://www.gutenberg.org/ebooks/29455', 'en', 26), +(43821, 'Oddsfish!', 'Benson, Robert Hugh', '2005-07-13', 25, 'https://www.gutenberg.org/ebooks/16288', 'en', 15529), +(43822, 'The Rock of Chickamauga: A Story of the Western Crisis', 'Altsheler, Joseph A. (Joseph Alexander)', '2006-01-01', 51, 'https://www.gutenberg.org/ebooks/9745', 'en', 15530), +(43823, 'Wunpost', 'Coolidge, Dane', '2009-12-02', 29, 'https://www.gutenberg.org/ebooks/30578', 'en', 315), +(43824, 'Souvenirs d\'un sexagénaire, Tome II', 'Arnault, A.-V. (Antoine-Vincent)', '2007-12-21', 55, 'https://www.gutenberg.org/ebooks/23953', 'fr', 4792), +(43825, 'L\'Illustration, No. 0073, 18 Juillet 1844', 'Various', '2015-03-11', 13, 'https://www.gutenberg.org/ebooks/48462', 'fr', 150), +(43826, 'Le roi Lear', 'Shakespeare, William', '2006-05-04', 26, 'https://www.gutenberg.org/ebooks/18312', 'fr', 6808), +(43827, 'Selections from the Prose Works of Matthew Arnold', 'Arnold, Matthew', '2004-06-01', 73, 'https://www.gutenberg.org/ebooks/12628', 'en', 5270), +(43828, 'The Bail Jumper', 'Stead, Robert J. C.', '2011-04-14', 18, 'https://www.gutenberg.org/ebooks/35836', 'en', 10622), +(43829, 'The Nursery, September 1881, Vol. XXX\nA Monthly Magazine for Youngest Readers', 'Various', '2013-02-22', 19, 'https://www.gutenberg.org/ebooks/42158', 'en', 4641), +(43830, 'My Friend Bobby', 'Nourse, Alan Edward', '2007-10-03', 45, 'https://www.gutenberg.org/ebooks/22881', 'en', 2464), +(43831, 'Guns and Snowshoes; Or, the Winter Outing of the Young Hunters', 'Stratemeyer, Edward', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8697', 'en', 13482), +(43832, 'History of the United Netherlands, 1594', 'Motley, John Lothrop', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/4866', 'en', 3372), +(43833, '郁離子', 'Liu, Ji', '2008-05-02', 9, 'https://www.gutenberg.org/ebooks/25298', 'zh', 15531), +(43834, 'The History of Troilus and Cressida', 'Shakespeare, William', '1998-11-01', 34, 'https://www.gutenberg.org/ebooks/1528', 'en', 10826), +(43835, 'A Singular Metamorphosis', 'Skiles, May Evelyn', '2012-01-30', 5, 'https://www.gutenberg.org/ebooks/38715', 'en', 61), +(43836, 'Janeza Trdine zbrani spisi 1: Bahovi huzarji in Iliri\nSpomini iz moje profesorske sluzbe na Hrvaskem (1853-1867)', 'Trdina, Janez', '2019-06-10', 4, 'https://www.gutenberg.org/ebooks/59722', 'en', 15532), +(43837, 'Tarrano the Conqueror', 'Cummings, Ray', '2007-05-29', 46, 'https://www.gutenberg.org/ebooks/21638', 'en', 26), +(43838, 'Karkurit', 'Kivi, Aleksis', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11891', 'fi', 247), +(43839, 'Elusive Isabel', 'Futrelle, Jacques', '2004-02-01', 49, 'https://www.gutenberg.org/ebooks/10943', 'en', 61), +(43840, 'String Quartet No. 57 in C Major, Op. 74, No. 1, FHE No. 28, Hoboken No. 72', 'Haydn, Joseph', '2004-02-01', 2, 'https://www.gutenberg.org/ebooks/5188', 'en', 909), +(43841, 'Cölestine, oder der eheliche Verdacht; Zweiter Theil (von 2)', 'Chownitz, Julian', '2016-10-05', 5, 'https://www.gutenberg.org/ebooks/53218', 'de', 61), +(43842, 'Incertidumbre', 'Lecomte du Noüy, Hermine Oudinot', '2008-10-08', 14, 'https://www.gutenberg.org/ebooks/26845', 'es', 4966), +(43843, 'Sir William Herschel: His Life and Works', 'Holden, Edward S. (Edward Singleton)', '2009-06-03', 42, 'https://www.gutenberg.org/ebooks/29031', 'en', 15533), +(43844, 'Musa Cerula', 'Gil, Augusto', '2010-01-10', 8, 'https://www.gutenberg.org/ebooks/30920', 'pt', 8), +(43845, 'Medieval Europe', 'Davis, H. W. Carless (Henry William Carless)', '2004-08-01', 92, 'https://www.gutenberg.org/ebooks/6369', 'en', 6411), +(43846, 'Robert Orange\nBeing a Continuation of the History of Robert Orange', 'Hobbes, John Oliver', '2009-02-04', 31, 'https://www.gutenberg.org/ebooks/27997', 'en', 1397), +(43847, 'The American Missionary — Volume 52, No. 03, September, 1898', 'Various', '2008-07-17', 8, 'https://www.gutenberg.org/ebooks/26079', 'en', 562), +(43848, 'The Revolt of the Oyster', 'Marquis, Don', '2016-05-01', 19, 'https://www.gutenberg.org/ebooks/51917', 'en', 112), +(43849, 'Tales and Novels — Volume 08', 'Edgeworth, Maria', '2005-11-01', 32, 'https://www.gutenberg.org/ebooks/9321', 'en', 907), +(43850, 'Considérations inactuelles, deuxième série\nSchopenhauer éducateur, Richard Wagner à Bayreuth', 'Nietzsche, Friedrich Wilhelm', '2015-01-17', 25, 'https://www.gutenberg.org/ebooks/48006', 'fr', 15534), +(43851, 'The Wit and Humor of America, Volume IV. (of X.)', NULL, '2006-07-07', 29, 'https://www.gutenberg.org/ebooks/18776', 'en', 12514), +(43852, 'Concerning Genealogies\r\nBeing Suggestions of Value for All Interested in Family History', 'Allaben, Frank', '2017-03-29', 21, 'https://www.gutenberg.org/ebooks/54459', 'en', 15535), +(43853, 'Mein Lied', 'Rosegger, Peter', '2015-01-04', 11, 'https://www.gutenberg.org/ebooks/47872', 'de', 8), +(43854, 'Exempting the Churches\r\nAn Argument for the Abolition of This Unjust and Unconstitutional Practice', 'Morton, James F. (James Ferdinand)', '2011-12-22', 6, 'https://www.gutenberg.org/ebooks/38371', 'en', 15536), +(43855, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 10, October 1895.\r\nFrench Farmhouses.', 'Various', '2005-02-09', 36, 'https://www.gutenberg.org/ebooks/14987', 'en', 2140), +(43856, 'The Blood of the Arena', 'Blasco Ibáñez, Vicente', '2010-11-22', 48, 'https://www.gutenberg.org/ebooks/33799', 'en', 15537), +(43857, 'The Man from Home', 'Tarkington, Booth', '2005-05-18', 23, 'https://www.gutenberg.org/ebooks/15855', 'en', 402), +(43858, '\'Midst the Wild Carpathians', 'Jókai, Mór', '2011-09-07', 24, 'https://www.gutenberg.org/ebooks/37339', 'en', 98), +(43859, 'A Poor Wise Man', 'Rinehart, Mary Roberts', '1999-11-01', 84, 'https://www.gutenberg.org/ebooks/1970', 'en', 167), +(43860, 'Trees You Want to Know', 'Peattie, Donald Culross', '2018-11-17', 13, 'https://www.gutenberg.org/ebooks/58294', 'en', 9935), +(43861, 'Life on the Farm; in Amusing Rhyme', 'Anonymous', '2019-04-24', 16, 'https://www.gutenberg.org/ebooks/59346', 'en', 859), +(43862, 'Diet and Health; With Key to the Calories', 'Peters, Lulu Hunt', '2005-02-15', 103, 'https://www.gutenberg.org/ebooks/15069', 'en', 3463), +(43863, 'Arundel', 'Benson, E. F. (Edward Frederic)', '2014-05-22', 13, 'https://www.gutenberg.org/ebooks/45719', 'en', 109), +(43864, 'A Survey of Russian Literature, with Selections', 'Hapgood, Isabel Florence', '2007-04-03', 25, 'https://www.gutenberg.org/ebooks/20980', 'en', 3923), +(43865, 'Wanderfoot (The Dream Ship)', 'Stockley, Cynthia', '2012-06-22', 36, 'https://www.gutenberg.org/ebooks/40059', 'en', 109), +(43866, 'Encyclopaedia Britannica, 11th Edition, \"Grasshopper\" to \"Greek Language\"\r\nVolume 12, Slice 4', 'Various', '2011-11-26', 44, 'https://www.gutenberg.org/ebooks/38143', 'en', 1081), +(43867, 'Jack\'s Ward; Or, The Boy Guardian', 'Alger, Horatio, Jr.', '2004-01-01', 55, 'https://www.gutenberg.org/ebooks/10729', 'en', 10991), +(43868, 'A Wanderer in Paris', 'Lucas, E. V. (Edward Verrall)', '2011-11-06', 7, 'https://www.gutenberg.org/ebooks/37937', 'en', 2972), +(43869, 'Notes and Queries, Vol. IV, Number 106, November 8, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-03-10', 14, 'https://www.gutenberg.org/ebooks/39091', 'en', 105), +(43870, 'The Green Thumb, Nov.-Dec. 1959, Vol. 16, No. 10', 'Colorado Forestry and Horticultural Association', '2019-07-19', 160, 'https://www.gutenberg.org/ebooks/59948', 'en', 15538), +(43871, 'The Intelligence of Woman', 'George, W. L.', '2010-05-22', 32, 'https://www.gutenberg.org/ebooks/32479', 'en', 1619), +(43872, 'Folklore as an Historical Science', 'Gomme, George Laurence', '2007-06-18', 25, 'https://www.gutenberg.org/ebooks/21852', 'en', 1223), +(43873, 'Paris and the Social Revolution\r\nA Study of the Revolutionary Elements in the Various Classes of Parisian Society', 'Sanborn, Alvan F. (Alvan Francis)', '2012-09-25', 13, 'https://www.gutenberg.org/ebooks/40865', 'en', 15539), +(43874, 'Punch, Or The London Charivari, Volume 102, March 26, 1892', 'Various', '2004-12-20', 2, 'https://www.gutenberg.org/ebooks/14389', 'en', 134), +(43875, 'Aspects of plant life; with special reference to the British flora', 'Praeger, R. Lloyd (Robert Lloyd)', '2018-04-02', 22, 'https://www.gutenberg.org/ebooks/56900', 'en', 12762), +(43876, 'Task Mission', 'Holden, Fox B.', '2019-03-31', 39, 'https://www.gutenberg.org/ebooks/59174', 'en', 9910), +(43877, 'Ruth Fielding at Briarwood Hall; or, Solving the Campus Mystery', 'Emerson, Alice B.', '2009-06-22', 39, 'https://www.gutenberg.org/ebooks/29203', 'en', 15540), +(43878, 'Woodcraft Boys at Sunset Island', 'Roy, Lillian Elizabeth', '2016-02-28', 33, 'https://www.gutenberg.org/ebooks/51319', 'en', 141), +(43879, 'A Fairy Tale in Two Acts Taken from Shakespeare (1763)', 'Colman, George', '2004-07-07', 22, 'https://www.gutenberg.org/ebooks/12842', 'en', 8332), +(43880, 'The Consolidator; or, Memoirs of Sundry Transactions from the World in the Moon', 'Defoe, Daniel', '2004-12-01', 21, 'https://www.gutenberg.org/ebooks/7089', 'en', 781), +(43881, 'The Fugitive Slave Law and Its Victims\nAnti-Slavery Tracts No. 18', 'May, Samuel', '2004-11-09', 28, 'https://www.gutenberg.org/ebooks/13990', 'en', 5591), +(43882, 'The Life of Mansie Wauch\ntailor in Dalkeith', 'Moir, D. M. (David Macbeth)', '2007-12-05', 5, 'https://www.gutenberg.org/ebooks/23739', 'en', 6153), +(43883, 'St. George for England', 'Henty, G. A. (George Alfred)', '2002-09-01', 92, 'https://www.gutenberg.org/ebooks/3429', 'en', 7229), +(43884, 'Diario de un reconocimiento de la guardia y fortines', 'Azara, Félix de', '2006-10-08', 20, 'https://www.gutenberg.org/ebooks/19496', 'es', 14827), +(43885, '\"Undo\": A Novel', 'Hutsko, Joe', '1996-03-01', 13, 'https://www.gutenberg.org/ebooks/480', 'en', 2815), +(43886, 'Narrative of a Mission to Central Africa Performed in the Years 1850-51, Volume 2\nUnder the Orders and at the Expense of Her Majesty\'s Government', 'Richardson, James', '2006-06-09', 9, 'https://www.gutenberg.org/ebooks/18544', 'en', 6541), +(43887, 'The History of the Reign of Ferdinand and Isabella the Catholic — Volume 2', 'Prescott, William Hickling', '2004-11-01', 20, 'https://www.gutenberg.org/ebooks/6967', 'en', 15541), +(43888, '麟兒報', 'Anonymous', '2008-12-03', 27, 'https://www.gutenberg.org/ebooks/27399', 'zh', 3187), +(43889, 'Before Adam', 'London, Jack', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/9113', 'en', 5072), +(43890, 'Der Damen-Reitsport', 'Schoenbeck, Richard', '2015-02-11', 11, 'https://www.gutenberg.org/ebooks/48234', 'de', 10897), +(43891, 'The Pacific Triangle', 'Greenbie, Sydney', '2012-12-27', 26, 'https://www.gutenberg.org/ebooks/41716', 'en', 15542), +(43892, '杜陽雜編', 'Su, E, jin shi 886', '2008-04-30', 14, 'https://www.gutenberg.org/ebooks/25253', 'zh', 2918), +(43893, 'Graf von Loeben and the Legend of Lorelei\r\nFrom \"Modern Philology\" vol. 13 (1915)', 'Porterfield, Allen Wilson', '2004-02-01', 26, 'https://www.gutenberg.org/ebooks/11066', 'en', 15543), +(43894, 'The Garden God: A Tale of Two Boys', 'Reid, Forrest', '2018-08-12', 16, 'https://www.gutenberg.org/ebooks/57673', 'en', 15544), +(43895, 'Vapaaviikolla\nKuvaus 3:ssa näytöksessä', 'Karisto, Arvi', '2008-01-21', 7, 'https://www.gutenberg.org/ebooks/24381', 'fi', 402), +(43896, 'The Welsh and Their Literature\nfrom The London Quarterly Review, January 1861, American Edition', 'Borrow, George', '2010-08-03', 21, 'https://www.gutenberg.org/ebooks/33336', 'en', 15545), +(43897, 'Some Distinguished Victims of the Scaffold', 'Bleackley, Horace', '2016-06-10', 14, 'https://www.gutenberg.org/ebooks/52301', 'en', 9400), +(43898, 'The French Twins', 'Perkins, Lucy Fitch', '2003-05-01', 23, 'https://www.gutenberg.org/ebooks/4091', 'en', 1523), +(43899, 'The Coward: A Novel of Society and the Field in 1863', 'Morford, Henry', '2011-07-06', 5, 'https://www.gutenberg.org/ebooks/36644', 'en', 403), +(43900, 'The Auction Block', 'Beach, Rex', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/5143', 'en', 1660), +(43901, 'The Devil\'s Admiral', 'Moore, Frederick Ferdinand', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/10988', 'en', 323), +(43902, 'A Catalogue of Books Published by Methuen and Co., October 1909', 'Methuen & Co.', '2011-10-19', 5, 'https://www.gutenberg.org/ebooks/37796', 'en', 727), +(43903, 'The Eve of All-Hallows; Or, Adelaide of Tyrconnel, v. 3 of 3', 'Hartstonge, Matthew Weld', '2013-11-23', 11, 'https://www.gutenberg.org/ebooks/44264', 'en', 61), +(43904, 'Punch, or the London Charivari, Volume 102, April 23, 1892', 'Various', '2004-12-29', 3, 'https://www.gutenberg.org/ebooks/14514', 'en', 134), +(43905, 'A Little Girl in Old Detroit', 'Douglas, Amanda M.', '2007-03-01', 24, 'https://www.gutenberg.org/ebooks/20721', 'en', 15546), +(43906, 'Karte und Kroki', 'Wolff, Hans', '2015-11-14', 9, 'https://www.gutenberg.org/ebooks/50456', 'de', 15547), +(43907, 'The Princess Elopes', 'MacGrath, Harold', '2005-12-25', 27, 'https://www.gutenberg.org/ebooks/17391', 'en', 109), +(43908, 'An Almanac of Twelve Sports', 'Kipling, Rudyard', '2010-10-22', 20, 'https://www.gutenberg.org/ebooks/34113', 'en', 15548), +(43909, 'Eugene Aram — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-22', 30, 'https://www.gutenberg.org/ebooks/7614', 'en', 4703), +(43910, 'Oxford', 'Thomas, Edward', '2017-11-08', 18, 'https://www.gutenberg.org/ebooks/55918', 'en', 3139), +(43911, 'The Story of Prague', 'Lützow, Francis, hrabe', '2014-08-08', 52, 'https://www.gutenberg.org/ebooks/46533', 'en', 15549), +(43912, 'Journal of Landsborough\'s Expedition from Carpentaria\nIn search of Burke and Wills', 'Landsborough, William', '2005-07-08', 16, 'https://www.gutenberg.org/ebooks/16243', 'en', 15550), +(43913, 'Suomalaisen teatterin historia 3\r\nNousuaika, 1879-93.', 'Aspelin-Haapkylä, Eliel', '2016-03-28', 16, 'https://www.gutenberg.org/ebooks/51584', 'fi', 12139), +(43914, 'The Second Chance', 'McClung, Nellie L.', '2007-07-15', 15, 'https://www.gutenberg.org/ebooks/22076', 'en', 48), +(43915, 'The World\'s Greatest Books — Volume 19 — Travel and Adventure', NULL, '2007-12-27', 64, 'https://www.gutenberg.org/ebooks/23998', 'en', 885), +(43916, 'Double or Nothing', 'Sharkey, Jack', '2013-06-26', 25, 'https://www.gutenberg.org/ebooks/43041', 'en', 179), +(43917, 'The Beldonald Holbein', 'James, Henry', '2000-10-01', 31, 'https://www.gutenberg.org/ebooks/2366', 'en', 7836), +(43918, 'Lorimer of the Northwest', 'Bindloss, Harold', '2008-12-12', 12, 'https://www.gutenberg.org/ebooks/27504', 'en', 551), +(43919, 'Romance Island', 'Gale, Zona', '2004-10-13', 21, 'https://www.gutenberg.org/ebooks/13731', 'en', 2283), +(43920, 'The Memoirs of François René Vicomte de Chateaubriand sometime Ambassador to England. Volume 6 (of 6)\r\nMémoires d\'outre-tombe volume 6', 'Chateaubriand, François-René, vicomte de', '2017-07-16', 11, 'https://www.gutenberg.org/ebooks/55124', 'en', 7678), +(43921, 'Das Grabmal des Theoderich zu Ravenna und seine Stellung in der\nArchitekturgeschichte', 'Schulz, Bruno', '2010-03-01', 26, 'https://www.gutenberg.org/ebooks/31461', 'de', 15551), +(43922, 'The Inca Emerald', 'Scoville, Samuel', '2013-02-25', 22, 'https://www.gutenberg.org/ebooks/42193', 'en', 323), +(43923, 'Syndrome', 'Hoover, Thomas', '2010-11-14', 22, 'https://www.gutenberg.org/ebooks/34321', 'en', 15552), +(43924, 'Reminiscences of Tolstoy, by His Son', 'Tolstoi, Ilia Lvovich, graf', '1997-02-01', 87, 'https://www.gutenberg.org/ebooks/813', 'en', 15553), +(43925, 'An Deutschlands Jugend', 'Rathenau, Walther', '2007-11-07', 40, 'https://www.gutenberg.org/ebooks/23396', 'de', 335), +(43926, 'Clio', 'France, Anatole', '2015-12-11', 28, 'https://www.gutenberg.org/ebooks/50664', 'fr', 4), +(43927, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 18: Return to Naples', 'Casanova, Giacomo', '2004-12-11', 18, 'https://www.gutenberg.org/ebooks/2968', 'en', 4164), +(43928, 'Fredrika Runeberg', 'Gripenberg, Alexandra, friherrinna', '2005-06-15', 19, 'https://www.gutenberg.org/ebooks/16071', 'fi', 11814), +(43929, 'Miss Pat at Artemis Lodge', 'Ginther, Pemberton', '2007-08-05', 17, 'https://www.gutenberg.org/ebooks/22244', 'en', 15554), +(43930, 'Chicot the Jester', 'Dumas, Alexandre', '2005-02-01', 69, 'https://www.gutenberg.org/ebooks/7426', 'en', 9760), +(43931, 'The Tale of Mr. Tod', 'Potter, Beatrix', '2006-11-14', 71, 'https://www.gutenberg.org/ebooks/19805', 'en', 1045), +(43932, 'Discourses of Keidansky', 'Richards, Bernard G.', '2014-08-27', 13, 'https://www.gutenberg.org/ebooks/46701', 'en', 15555), +(43933, 'La condenada (cuentos)', 'Blasco Ibáñez, Vicente', '2009-01-07', 31, 'https://www.gutenberg.org/ebooks/27736', 'es', 3452), +(43934, 'Punch, or the London Charivari, Volume 101, August 29, 1891', 'Various', '2004-09-20', 2, 'https://www.gutenberg.org/ebooks/13503', 'en', 134), +(43935, 'Zen Buddhism, and Its Relation to Art', 'Waley, Arthur', '2013-07-21', 72, 'https://www.gutenberg.org/ebooks/43273', 'en', 14965), +(43936, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 1 - (A)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 54, 'https://www.gutenberg.org/ebooks/30781', 'fr', 1352), +(43937, 'Around the World in Eighty Days. Junior Deluxe Edition', 'Verne, Jules', '2000-04-01', 62, 'https://www.gutenberg.org/ebooks/2154', 'en', 1158), +(43938, 'Πασχαλινές ιστορίες', 'Papadiamantes, Alexandros', '2010-03-15', 10, 'https://www.gutenberg.org/ebooks/31653', 'el', 61), +(43939, 'Original Short Stories — Volume 10', 'Maupassant, Guy de', '2004-10-03', 35, 'https://www.gutenberg.org/ebooks/3086', 'en', 1112), +(43940, 'Isla Heron', 'Richards, Laura Elizabeth Howe', '2015-08-21', 9, 'https://www.gutenberg.org/ebooks/49749', 'en', 539), +(43941, 'The Bitter Cry of Outcast London\nAn Inquiry into the Condition of the Abject Poor', 'Preston, William C.', '2017-08-09', 9, 'https://www.gutenberg.org/ebooks/55316', 'en', 1944), +(43942, 'Margherita Pusterla: Racconto storico', 'Cantù, Cesare', '2006-08-14', 28, 'https://www.gutenberg.org/ebooks/19039', 'it', 61), +(43943, 'The Penal Cluster', 'Garrett, Randall', '2008-04-12', 49, 'https://www.gutenberg.org/ebooks/25061', 'en', 26), +(43944, 'Contemporary Composers', 'Mason, Daniel Gregory', '2018-02-18', 11, 'https://www.gutenberg.org/ebooks/56593', 'en', 15556), +(43945, 'Poetical Works of Johnson, Parnell, Gray, and Smollett\nWith Memoirs, Critical Dissertations, and Explanatory Notes', 'Parnell, Thomas', '2004-02-01', 49, 'https://www.gutenberg.org/ebooks/11254', 'en', 3947), +(43946, 'Marion Berkley: A Story for Girls', 'Comins, Elizabeth B. (Elizabeth Barker)', '2012-12-01', 10, 'https://www.gutenberg.org/ebooks/41524', 'en', 15557), +(43947, 'Harper\'s Round Table, August 13, 1895', 'Various', '2010-07-07', 8, 'https://www.gutenberg.org/ebooks/33104', 'en', 668), +(43948, 'Thoughts on the Necessity of Improving the Condition of the Slaves in the British Colonies\r\nWith a View to Their Ultimate Emancipation; and on the Practicability, the Safety, and the Advantages of the Latter Measure.', 'Clarkson, Thomas', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10386', 'en', 15558), +(43949, 'The Underground World: A mirror of life below the surface', 'Knox, Thomas Wallace', '2018-07-04', 44, 'https://www.gutenberg.org/ebooks/57441', 'en', 11456), +(43950, 'Later Queens of the French Stage', 'Williams, H. Noel (Hugh Noel)', '2014-03-21', 15, 'https://www.gutenberg.org/ebooks/45184', 'en', 11867), +(43951, 'Riches of Grace: A Compilation of Experiences in the Christian Life\r\nA Narration of Trials and Victories Along the Way', 'Byrum, E. E. (Enoch Edwin)', '2011-06-20', 10, 'https://www.gutenberg.org/ebooks/36476', 'en', 1130), +(43952, 'Patriotic Song\r\nA book of English verse, being an anthology of the patriotic poetry of the British Empire, from the defeat of the Spanish Armada till the death of Queen Victoria', NULL, '2016-05-22', 8, 'https://www.gutenberg.org/ebooks/52133', 'en', 15559), +(43953, 'The Elder Eddas of Saemund Sigfusson; and the Younger Eddas of Snorre Sturleson', 'Saemund Sigfusson', '2005-01-18', 307, 'https://www.gutenberg.org/ebooks/14726', 'en', 15560), +(43954, 'Blackwood\'s Edinburgh Magazine, Volume 58, No. 362, December 1845', 'Various', '2010-10-10', 13, 'https://www.gutenberg.org/ebooks/33938', 'en', 711), +(43955, 'Cossack Tales', 'Gogol, Nikolai Vasilevich', '2018-12-04', 57, 'https://www.gutenberg.org/ebooks/58409', 'en', 5222), +(43956, 'How to Succeed; Or, Stepping-Stones to Fame and Fortune', 'Marden, Orison Swett', '2007-02-03', 74, 'https://www.gutenberg.org/ebooks/20513', 'en', 4065), +(43957, 'Richard Carvel — Volume 07', 'Churchill, Winston', '2004-10-18', 31, 'https://www.gutenberg.org/ebooks/5371', 'en', 5772), +(43958, 'Zoological Illustrations, Second Series, Volume 1\r\nor, Original Figures and Descriptions of New, Rare, or Interesting Animals', 'Swainson, William', '2013-10-29', 18, 'https://www.gutenberg.org/ebooks/44056', 'en', 8764), +(43959, 'Tales from Many Sources, Vol. V', 'Various', '2005-08-02', 15, 'https://www.gutenberg.org/ebooks/16415', 'en', 179), +(43960, 'Weymouth New Testament in Modern Speech, Galatians', 'Weymouth, Richard Francis', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8836', 'en', 7339), +(43961, 'Researches on Cellulose, 1895-1900', 'Bevan, E. J. (Edward John)', '2007-09-16', 35, 'https://www.gutenberg.org/ebooks/22620', 'en', 15561), +(43962, 'Discipline and Other Sermons', 'Kingsley, Charles', '2004-12-01', 61, 'https://www.gutenberg.org/ebooks/7042', 'en', 2745), +(43963, 'Promenades autour d\'un village', 'Sand, George', '2004-07-12', 16, 'https://www.gutenberg.org/ebooks/12889', 'fr', 15562), +(43964, 'Historical sketch of the Fifteenth Regiment, New Jersey Volunteers\nFirst Brigade, First Division, Sixth Corps', 'Campbell, Edward Livingston', '2011-03-27', 9, 'https://www.gutenberg.org/ebooks/35697', 'en', 15563), +(43965, 'Our Schools in War Time—and After', 'Dean, Arthur D. (Arthur Davis)', '2014-07-22', 17, 'https://www.gutenberg.org/ebooks/46365', 'en', 8827), +(43966, 'Northern Lights, Volume 5.', 'Parker, Gilbert', '2004-07-01', 8, 'https://www.gutenberg.org/ebooks/6190', 'en', 1887), +(43967, 'Comrade Kropotkin', 'Robinson, Victor', '2010-12-24', 82, 'https://www.gutenberg.org/ebooks/34745', 'en', 15564), +(43968, 'A Brief Account of the Educational Publishing Business in the United States', 'Pulsifer, William Edmond', '2015-10-13', 2, 'https://www.gutenberg.org/ebooks/50200', 'en', 15565), +(43969, 'The Gladiolus: A Practical Treatise on the Culture of the Gladiolus', 'Crawford, Matthew', '2010-02-09', 18, 'https://www.gutenberg.org/ebooks/31237', 'en', 15566), +(43970, 'The Peddler Spy; or, Dutchmen and Yankees. A Tale of the Capture of Good Hope', 'Hamilton, W. J.', '2017-10-18', 22, 'https://www.gutenberg.org/ebooks/55772', 'en', 14321), +(43971, 'The Renewal of Life; How and When to Tell the Story to the Young', 'Morley, Margaret Warner', '2008-08-12', 24, 'https://www.gutenberg.org/ebooks/26280', 'en', 15567), +(43972, 'Shapes that Haunt the Dusk', NULL, '2008-11-28', 20, 'https://www.gutenberg.org/ebooks/27352', 'en', 112), +(43973, 'More Cricket Songs', 'Gale, Norman', '2004-08-13', 17, 'https://www.gutenberg.org/ebooks/13167', 'en', 12935), +(43974, 'The Memoirs of Harriette Wilson, Volumes One and Two\nWritten by Herself', 'Wilson, Harriette', '2013-09-01', 115, 'https://www.gutenberg.org/ebooks/43617', 'en', 15568), +(43975, 'The Malay Archipelago, Volume 1\r\nThe Land of the Orang-utan and the Bird of Paradise; A Narrative of Travel, with Studies of Man and Nature', 'Wallace, Alfred Russel', '2001-02-01', 138, 'https://www.gutenberg.org/ebooks/2530', 'en', 15569), +(43976, 'Deutschlands europäische Sendung', 'Lienhard, Friedrich', '2019-02-10', 8, 'https://www.gutenberg.org/ebooks/58851', 'de', 335), +(43977, 'Amusement Only', 'Marsh, Richard', '2011-12-02', 21, 'https://www.gutenberg.org/ebooks/38188', 'en', 61), +(43978, 'A New Genus of Pennsylvanian Fish (Crossopterygii, Coelacanthiformes) from Kansas', 'Echols, Joan', '2010-08-28', 9, 'https://www.gutenberg.org/ebooks/33560', 'en', 15570), +(43979, 'Guernsey Pictorial Directory and Stranger\'s Guide\nEmbellished with Numerous Wood-cuts', 'Bellamy, Thomas, of Guernsey', '2012-06-26', 15, 'https://www.gutenberg.org/ebooks/40092', 'en', 15571), +(43980, 'Captain Billy\'s Whiz Bang, Vol. 2, No. 18, March, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2018-04-22', 10, 'https://www.gutenberg.org/ebooks/57025', 'en', 372), +(43981, 'Honey-Bee\n1911', 'France, Anatole', '2008-05-09', 33, 'https://www.gutenberg.org/ebooks/25405', 'en', 1007), +(43982, 'Punch, or the London Charivari, Volume 156, June 18, 1919', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11630', 'en', 134), +(43983, 'Bible Atlas: A Manual of Biblical Geography and History', 'Hurlbut, Jesse Lyman', '2012-10-22', 87, 'https://www.gutenberg.org/ebooks/41140', 'en', 15572), +(43984, 'A Rip Van Winkle Of The Kalahari\r\nAnd Other Tales of South-West Africa', 'Cornell, Frederick Carruthers', '2007-06-22', 36, 'https://www.gutenberg.org/ebooks/21899', 'en', 2126), +(43985, 'The Conceited Pig', 'Anonymous', '2019-07-25', 1897, 'https://www.gutenberg.org/ebooks/59983', 'en', 10682), +(43986, 'Garibaldi e Montevideo', 'Dumas, Alexandre', '2016-11-09', 30, 'https://www.gutenberg.org/ebooks/53485', 'it', 488), +(43987, 'Ireland In The New Century', 'Plunkett, Horace Curzon, Sir', '2004-12-13', 50, 'https://www.gutenberg.org/ebooks/14342', 'en', 7115), +(43988, 'John Bull; Or, The Englishman\'s Fireside: A Comedy, in Five Acts', 'Colman, George', '2006-12-23', 13, 'https://www.gutenberg.org/ebooks/20177', 'en', 1088), +(43989, 'The Campaign of Chancellorsville', 'Dodge, Theodore Ayrault', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/5715', 'en', 7714), +(43990, 'Other People\'s Money, and How the Bankers Use It', 'Brandeis, Louis Dembitz', '2018-08-31', 112, 'https://www.gutenberg.org/ebooks/57819', 'en', 5552), +(43991, 'Four Hundred Humorous Illustrations, Vol. 2 (of 2)\r\nWith Portrait and Biographical Sketch', NULL, '2013-12-15', 14, 'https://www.gutenberg.org/ebooks/44432', 'en', 2965), +(43992, 'Prairie Smoke, a Collection of Lore of the Prairies', 'Gilmore, Melvin R. (Melvin Randolph)', '2011-05-01', 11, 'https://www.gutenberg.org/ebooks/36012', 'en', 1749), +(43993, 'Terrestrial and Celestial Globes Volume 1\r\nTheir History and Construction Including a Consideration of their Value as Aids in the Study of Geography and Astronomy', 'Stevenson, Edward Luther', '2012-06-11', 23, 'https://www.gutenberg.org/ebooks/39866', 'en', 15573), +(43994, 'Why the Chimes Rang: A Play in One Act', 'Alden, Raymond MacDonald', '2005-03-08', 18, 'https://www.gutenberg.org/ebooks/15290', 'en', 402), +(43995, 'Rex Kingdon on Storm Island', 'Braddock, Gordon', '2016-07-11', 11, 'https://www.gutenberg.org/ebooks/52557', 'en', 550), +(43996, 'Hocus Pocus; or The Whole Art of Legerdemain, in Perfection.\r\nBy which the meanest capacity may perform the whole without the help of a teacher. Together with the Use of all the Instruments belonging thereto.', 'Dean, Henry', '2018-05-26', 18, 'https://www.gutenberg.org/ebooks/57217', 'en', 15157), +(43997, 'Os netos de Camillo', 'Pimentel, Alberto', '2010-09-17', 8, 'https://www.gutenberg.org/ebooks/33752', 'pt', 2272), +(43998, 'War of the Classes', 'London, Jack', '1998-02-01', 59, 'https://www.gutenberg.org/ebooks/1187', 'en', 3120), +(43999, 'Willis\'s Current Notes, No. 14, February 1852', NULL, '2012-11-16', 7, 'https://www.gutenberg.org/ebooks/41372', 'en', 11896), +(44000, 'The Eliminator; or, Skeleton Keys to Sacerdotal Secrets', 'Westbrook, Richard B. (Richard Brodhead)', '2012-03-25', 120, 'https://www.gutenberg.org/ebooks/39268', 'en', 1191), +(44001, 'The Worlds of Joe Shannon', 'Robinson, Frank M.', '2010-06-04', 17, 'https://www.gutenberg.org/ebooks/32680', 'en', 179), +(44002, 'The Dark House: A Knot Unravelled', 'Fenn, George Manville', '2008-05-29', 45, 'https://www.gutenberg.org/ebooks/25637', 'en', 128), +(44003, 'The Sky Line of Spruce', 'Marshall, Edison', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11402', 'en', 4874), +(44004, 'The Bride of the Nile — Volume 11', 'Ebers, Georg', '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/5527', 'en', 803), +(44005, 'Martha of California: A Story of the California Trail', 'Otis, James', '2014-01-06', 20, 'https://www.gutenberg.org/ebooks/44600', 'en', 2046), +(44006, 'The Nursery, Volume 17, No. 100, April, 1875\r\nA Monthly Magazine for Youngest Readers', 'Various', '2004-11-26', 11, 'https://www.gutenberg.org/ebooks/14170', 'en', 4641), +(44007, 'Old Man Savarin, and Other Stories', 'Thomson, Edward William', '2007-01-12', 16, 'https://www.gutenberg.org/ebooks/20345', 'en', 10914), +(44008, 'Cutlass and Cudgel', 'Fenn, George Manville', '2007-05-04', 32, 'https://www.gutenberg.org/ebooks/21297', 'en', 246), +(44009, 'Mosaiker', 'Various', '2016-08-09', 2, 'https://www.gutenberg.org/ebooks/52765', 'sv', 10648), +(44010, 'My Little Sister', 'Robins, Elizabeth', '2011-05-25', 13, 'https://www.gutenberg.org/ebooks/36220', 'en', 13868), +(44011, '搜神記 volume 4-10', 'Gan, Bao, active 317-322', '2005-01-01', 15, 'https://www.gutenberg.org/ebooks/7270', 'zh', 4247), +(44012, 'Die Tote und andere Novellen', 'Mann, Heinrich', '2014-07-01', 25, 'https://www.gutenberg.org/ebooks/46157', 'de', 549), +(44013, 'Angelic Wisdom Concerning the Divine Love and the Divine Wisdom', 'Swedenborg, Emanuel', '2005-08-31', 70, 'https://www.gutenberg.org/ebooks/16627', 'en', 15574), +(44014, 'John Brown: An Address at the 14th Anniversary of Storer College', 'Douglass, Frederick', '2010-03-31', 34, 'https://www.gutenberg.org/ebooks/31839', 'en', 4763), +(44015, 'The Mentor: Among the Ruins of Rome, Vol. 1, Num. 46, Serial No. 46', 'Botsford, George Willis', '2015-09-09', 3, 'https://www.gutenberg.org/ebooks/49923', 'en', 15575), +(44016, 'Duas Paginas Dos Quatorze Annos\r\nPoesias Por Abilio Guerra Junqueiro', 'Junqueiro, Abílio Manuel Guerra', '2007-08-26', 9, 'https://www.gutenberg.org/ebooks/22412', 'pt', 8), +(44017, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 08 (de 12)', 'Castelo Branco, Camilo', '2009-02-19', 17, 'https://www.gutenberg.org/ebooks/28128', 'pt', 410), +(44018, 'A Dog of Flanders, The Nürnberg Stove, and Other Stories', 'Ouida', '2015-09-22', 18, 'https://www.gutenberg.org/ebooks/50032', 'en', 15576); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(44019, 'Cradock Nowell: A Tale of the New Forest. Vol. 2 (of 3)', 'Blackmore, R. D. (Richard Doddridge)', '2014-10-09', 25, 'https://www.gutenberg.org/ebooks/47085', 'en', 5793), +(44020, 'Έργα Ποιήματα - Πεζά Τόμος Δεύτερος', 'Krystalles, Kostas', '2010-12-05', 4, 'https://www.gutenberg.org/ebooks/34577', 'el', 988), +(44021, 'The North-West Amazons: Notes of some months spent among cannibal tribes', 'Whiffen, Thomas', '2017-09-13', 22, 'https://www.gutenberg.org/ebooks/55540', 'en', 15577), +(44022, 'Somerset', 'Wade, G. W. (George Woosung)', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/12287', 'en', 15578), +(44023, 'Coquette', 'Swinnerton, Frank', '2010-01-18', 18, 'https://www.gutenberg.org/ebooks/31005', 'en', 48), +(44024, 'The World English Bible (WEB): 1 Kings', 'Anonymous', '2005-06-01', 13, 'https://www.gutenberg.org/ebooks/8238', 'en', 13506), +(44025, 'Paz e Arbitragem', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2009-05-21', 20, 'https://www.gutenberg.org/ebooks/28914', 'pt', 15579), +(44026, 'Jean, Our Little Australian Cousin', 'Nixon-Roulet, Mary F.', '2013-08-09', 15, 'https://www.gutenberg.org/ebooks/43425', 'en', 15580), +(44027, 'The Lion\'s Skin', 'Sabatini, Rafael', '2001-07-01', 62, 'https://www.gutenberg.org/ebooks/2702', 'en', 15581), +(44028, 'Records of Woodhall Spa and Neighbourhood\nHistorical, Anecdotal, Physiographical, and Archaeological, with Other Matter', 'Walter, James Conway', '2008-11-04', 6, 'https://www.gutenberg.org/ebooks/27160', 'en', 15582), +(44029, 'Happy Jack', 'Burgess, Thornton W. (Thornton Waldo)', '2004-09-02', 30, 'https://www.gutenberg.org/ebooks/13355', 'en', 3264), +(44030, 'Chester: A Sketch-Book', 'Pike, Joseph', '2017-04-06', 3, 'https://www.gutenberg.org/ebooks/54492', 'en', 15583), +(44031, 'Poems', 'Harper, Frances Ellen Watkins', '1996-10-01', 17, 'https://www.gutenberg.org/ebooks/679', 'en', 8), +(44032, 'The Principles of Chemistry, Volume I', 'Mendeleyev, Dmitry Ivanovich', '2016-02-29', 29, 'https://www.gutenberg.org/ebooks/51326', 'en', 15584), +(44033, 'Two Addresses\r\nOne, to the Gentlemen of Whitby, Who Signed the Requisition, Calling a Meeting to Address the Queen, on the Late (So Called) Aggression of the Pope: and the Other, to the Protestant Clergy', 'Rigby, N. (Nicholas)', '2011-03-23', 13, 'https://www.gutenberg.org/ebooks/35663', 'en', 15585), +(44034, 'Memoirs of John R. Young, Utah Pioneer, 1847', 'Young, John R.', '2014-07-24', 17, 'https://www.gutenberg.org/ebooks/46391', 'en', 15586), +(44035, 'The Sportswoman\'s Library, Vol. 2 of 2', NULL, '2014-10-30', 30, 'https://www.gutenberg.org/ebooks/47243', 'en', 2524), +(44036, 'The Life of the Fields', 'Jefferies, Richard', '2004-07-01', 70, 'https://www.gutenberg.org/ebooks/6164', 'en', 2972), +(44037, 'Greenmantle', 'Buchan, John', '2007-12-01', 21, 'https://www.gutenberg.org/ebooks/23706', 'en', 2564), +(44038, 'Canadian Notabilities, Volume 1', 'Dent, John Charles', '2006-02-01', 12, 'https://www.gutenberg.org/ebooks/9910', 'en', 8262), +(44039, 'Le Rêve', 'Zola, Émile', '2006-01-16', 28, 'https://www.gutenberg.org/ebooks/17533', 'fr', 4927), +(44040, 'William Ewart Gladstone', 'Bryce, James Bryce, Viscount', '2002-09-01', 7, 'https://www.gutenberg.org/ebooks/3416', 'en', 4282), +(44041, 'Stand Fast, Craig-Royston! (Volume III)', 'Black, William', '2013-05-17', 8, 'https://www.gutenberg.org/ebooks/42731', 'en', 15587), +(44042, 'The Shadow of the Cathedral', 'Blasco Ibáñez, Vicente', '2004-04-01', 41, 'https://www.gutenberg.org/ebooks/12041', 'en', 15588), +(44043, 'World Stories Retold for Modern Boys and Girls\r\nOne Hundred and Eighty-seven Five-minute Classic Stories for Retelling in Home, Sunday School, Children\'s Services, Public School Grades and \"The Story-hour\" in Public Libraries', 'Sly, William James', '2017-10-21', 9, 'https://www.gutenberg.org/ebooks/55786', 'en', 6258), +(44044, 'The Swiss Family Robinson', 'Wyss, Johann David', '2008-08-01', 96, 'https://www.gutenberg.org/ebooks/26274', 'en', 123), +(44045, 'The Sunken Isthmus; or, Frank Reade, Jr., in the Yucatan Channel.', 'Senarens, Luis', '2017-05-02', 15, 'https://www.gutenberg.org/ebooks/54654', 'en', 336), +(44046, 'Supreme Personality: Fun in Living. A Doubt, Fear, and Worry Cure', 'Croft, Delmer Eugene', '2004-08-16', 33, 'https://www.gutenberg.org/ebooks/13193', 'en', 15589), +(44047, 'Frank on the Lower Mississippi', 'Castlemon, Harry', '2004-11-01', 23, 'https://www.gutenberg.org/ebooks/6958', 'en', 491), +(44048, 'Modus Vivendi', 'Berryman, John', '2009-10-22', 52, 'https://www.gutenberg.org/ebooks/30311', 'en', 26), +(44049, 'The Altruist in Politics', 'Cardozo, Benjamin N. (Benjamin Nathan)', '1998-06-01', 10, 'https://www.gutenberg.org/ebooks/1341', 'en', 15590), +(44050, 'Eneas Africanus', 'Edwards, Harry Stillwell', '2010-08-31', 15, 'https://www.gutenberg.org/ebooks/33594', 'en', 1958), +(44051, 'Páginas sevillanas\r\nSucesos Históricos, Personajes Célebres, Monumentos Notables, Tradiciones Populares, Cuentos Viejos, Leyendas y Curiosidades.', 'Chaves Rey, Manuel', '2012-06-23', 22, 'https://www.gutenberg.org/ebooks/40066', 'es', 15591), +(44052, 'The Epic\nAn Essay', 'Abercrombie, Lascelles', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/10716', 'en', 15592), +(44053, 'Adeline Mowbray; or, The Mother and Daughter', 'Opie, Amelia', '2011-11-02', 28, 'https://www.gutenberg.org/ebooks/37908', 'en', 10637), +(44054, 'Der Sozialismus einst und jetzt\nStreitfragen des Sozialismus in Vergangenheit und Gegenwart', 'Bernstein, Eduard', '2008-02-05', 22, 'https://www.gutenberg.org/ebooks/24523', 'de', 6326), +(44055, 'Lloyd\'s Treatise on Hats, with Twenty-Four Engravings\r\nContaining Novel Delineations of His Various Shapes, Shewing the Manner in Which They Should Be Worn...', 'Lloyd, Robert', '2017-12-02', 4, 'https://www.gutenberg.org/ebooks/56103', 'en', 1531), +(44056, 'Canning, Freezing, Storing Garden Produce', 'United States. Department of Agriculture', '2019-07-24', 1209, 'https://www.gutenberg.org/ebooks/59977', 'en', 15593), +(44057, 'Waldfried: A Novel', 'Auerbach, Berthold', '2010-05-20', 17, 'https://www.gutenberg.org/ebooks/32446', 'en', 803), +(44058, 'Mother of Pearl', 'France, Anatole', '2018-10-15', 19, 'https://www.gutenberg.org/ebooks/58099', 'en', 4), +(44059, 'The Last Words (Real and Traditional) of Distinguished Men and Women', 'Marvin, Frederic Rowland', '2012-02-21', 51, 'https://www.gutenberg.org/ebooks/38940', 'en', 15594), +(44060, 'Il \"Damo viennese\": Romanzo', 'D\'Ambra, Lucio', '2016-11-07', 11, 'https://www.gutenberg.org/ebooks/53471', 'it', 1544), +(44061, 'John Quincy Adams\nAmerican Statesmen Series', 'Morse, John Torrey', '2006-12-26', 17, 'https://www.gutenberg.org/ebooks/20183', 'en', 1340), +(44062, 'The Elements of Style', 'Strunk, William', '2011-08-18', 2620, 'https://www.gutenberg.org/ebooks/37134', 'en', 2270), +(44063, 'Sir Gawain and the Lady of Lys', NULL, '2014-04-27', 33, 'https://www.gutenberg.org/ebooks/45514', 'en', 7664), +(44064, 'Philip Steele of the Royal Northwest Mounted Police', 'Curwood, James Oliver', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/4633', 'en', 551), +(44065, 'Let us follow Him', 'Sienkiewicz, Henryk', '2013-02-03', 20, 'https://www.gutenberg.org/ebooks/41988', 'en', 15595), +(44066, 'Skylark Three', 'Smith, E. E. (Edward Elmer)', '2007-04-13', 160, 'https://www.gutenberg.org/ebooks/21051', 'en', 1668), +(44067, 'Totta ja leikkiä', 'Malmberg, Aino', '2005-03-05', 11, 'https://www.gutenberg.org/ebooks/15264', 'fi', 61), +(44068, 'Scottish Loch Scenery', 'Croal, Thomas Allan', '2012-06-01', 24, 'https://www.gutenberg.org/ebooks/39892', 'en', 15596), +(44069, 'We Wish You a Merry Christmas', 'McGuinn, Roger', '2003-12-01', 4, 'https://www.gutenberg.org/ebooks/10524', 'en', 583), +(44070, 'Little Prudy', 'May, Sophie', '2008-02-28', 30, 'https://www.gutenberg.org/ebooks/24711', 'en', 141), +(44071, 'The Economist', 'Xenophon', '1998-01-01', 187, 'https://www.gutenberg.org/ebooks/1173', 'en', 4117), +(44072, 'Bert Wilson\'s Twin Cylinder Racer', 'Duffield, J. W.', '2012-07-16', 17, 'https://www.gutenberg.org/ebooks/40254', 'en', 5441), +(44073, 'Human Nature and Conduct: An introduction to social psychology', 'Dewey, John', '2012-11-17', 127, 'https://www.gutenberg.org/ebooks/41386', 'en', 1771), +(44074, 'St. Paul\'s Epistle to the Romans: A Practical Exposition. Vol. II', 'Gore, Charles', '2010-06-03', 9, 'https://www.gutenberg.org/ebooks/32674', 'en', 15138), +(44075, 'The Historical Growth of the English Parish Church', 'Thompson, A. Hamilton (Alexander Hamilton)', '2018-01-07', 5, 'https://www.gutenberg.org/ebooks/56331', 'en', 15049), +(44076, 'Les Précurseurs', 'Rolland, Romain', '2011-09-03', 13, 'https://www.gutenberg.org/ebooks/37306', 'fr', 335), +(44077, 'The Ladder to Learning', 'Lovechild, Miss', '2004-11-27', 29, 'https://www.gutenberg.org/ebooks/14184', 'en', 9796), +(44078, 'Two Voyages to New South Wales and Van Diemen\'s Land', 'Reid, Thomas', '2016-12-01', 19, 'https://www.gutenberg.org/ebooks/53643', 'en', 15597), +(44079, 'On the Old Road, Vol. 2 (of 2)\nA Collection of Miscellaneous Essays and Articles on Art and Literature', 'Ruskin, John', '2007-04-30', 37, 'https://www.gutenberg.org/ebooks/21263', 'en', 787), +(44080, 'Plain Concrete for Farm Use', 'Miller, T. A. H. (Thomas Arrington Huntington)', '2019-04-28', 23, 'https://www.gutenberg.org/ebooks/59379', 'en', 11499), +(44081, 'The Daily Newspaper: The History of Its Production and Distibution', 'Anonymous', '2016-08-13', 9, 'https://www.gutenberg.org/ebooks/52791', 'en', 15598), +(44082, 'De Wallis-eilanden\r\nDe Aarde en haar Volken, 1886', 'Deschamps, Émile', '2005-02-14', 8, 'https://www.gutenberg.org/ebooks/15056', 'nl', 15599), +(44083, 'Linnamäen taru; Kaksi yötä: Kaksi historiallista kertomusta', 'Lindman, Volmar', '2014-05-23', 13, 'https://www.gutenberg.org/ebooks/45726', 'fi', 98), +(44084, 'The Shaving of Shagpat; an Arabian entertainment — Volume 1', 'Meredith, George', '2003-09-01', 4, 'https://www.gutenberg.org/ebooks/4401', 'en', 2634), +(44085, 'Medea of Euripides', 'Euripides', '2011-03-02', 387, 'https://www.gutenberg.org/ebooks/35451', 'en', 11921), +(44086, 'The Chosen People: A Compendium of Sacred and Church History for School-Children', 'Yonge, Charlotte M. (Charlotte Mary)', '2005-01-01', 64, 'https://www.gutenberg.org/ebooks/7284', 'en', 2181), +(44087, 'Plays, written by Sir John Vanbrugh, volume the second', 'Vanbrugh, John', '2016-02-02', 6, 'https://www.gutenberg.org/ebooks/51114', 'en', 3619), +(44088, 'The Rural Magazine, and Literary Evening Fire-Side, Vol. 1 No. 11 (1820)', 'Various', '2015-04-27', 10, 'https://www.gutenberg.org/ebooks/48805', 'en', 57), +(44089, '...Or Your Money Back', 'Garrett, Randall', '2007-11-18', 50, 'https://www.gutenberg.org/ebooks/23534', 'en', 26), +(44090, 'The Tales of the Heptameron, Vol. 1 (of 5)', 'Marguerite, Queen, consort of Henry II, King of Navarre', '2006-02-07', 69, 'https://www.gutenberg.org/ebooks/17701', 'en', 4748), +(44091, 'Motor Matt\'s \"Century\" Run; or, The Governor\'s Courier', 'Matthews, Stanley R.', '2014-10-07', 17, 'https://www.gutenberg.org/ebooks/47071', 'en', 4097), +(44092, 'The German Pioneers: A Tale of the Mohawk', 'Spielhagen, Friedrich', '2010-12-05', 4, 'https://www.gutenberg.org/ebooks/34583', 'en', 15600), +(44093, 'The Gospel of Matthew for Readers', NULL, '2004-05-01', 11, 'https://www.gutenberg.org/ebooks/6356', 'en', 228), +(44094, 'Grevinde', 'Heiberg, Hermann', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12273', 'de', 2590), +(44095, 'Bird Stories from Burroughs\nSketches of Bird Life Taken from the Works of John Burroughs', 'Burroughs, John', '2008-07-12', 34, 'https://www.gutenberg.org/ebooks/26046', 'en', 318), +(44096, 'Chaucer', 'Ward, Adolphus William, Sir', '2003-01-01', 14, 'https://www.gutenberg.org/ebooks/3624', 'en', 13914), +(44097, 'The Dark Fleece', 'Hergesheimer, Joseph', '2016-05-01', 6, 'https://www.gutenberg.org/ebooks/51928', 'en', 1555), +(44098, 'Second Sight', 'Wells, Basil', '2009-08-28', 26, 'https://www.gutenberg.org/ebooks/29832', 'en', 179), +(44099, 'Paolo Pelliccioni, Volume 2 (of 2)', 'Guerrazzi, Francesco Domenico', '2013-04-11', 1, 'https://www.gutenberg.org/ebooks/42503', 'it', 98), +(44100, 'From the North Foreland to Penzance', 'Holland, Clive', '2015-01-21', 7, 'https://www.gutenberg.org/ebooks/48039', 'en', 776), +(44101, 'Micromegas', 'Voltaire', '2009-09-28', 249, 'https://www.gutenberg.org/ebooks/30123', 'en', 26), +(44102, 'The Enjoyment of Art', 'Noyes, Carleton Eldredge', '2008-11-07', 18, 'https://www.gutenberg.org/ebooks/27194', 'en', 15601), +(44103, 'L\'art russe', 'Viollet-le-Duc, Eugène-Emmanuel', '2006-07-03', 13, 'https://www.gutenberg.org/ebooks/18749', 'fr', 1352), +(44104, 'Letters to Madame Hanska, born Countess Rzewuska, afterwards Madame Honoré de Balzac, 1833-1846', 'Balzac, Honoré de', '2017-04-01', 11, 'https://www.gutenberg.org/ebooks/54466', 'en', 15602), +(44105, 'The Brownies: Their Book', 'Cox, Palmer', '2010-05-02', 30, 'https://www.gutenberg.org/ebooks/32210', 'en', 14435), +(44106, 'The History of Tom Thumb and Other Stories.', 'Anonymous', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/11092', 'en', 388), +(44107, 'Virradóra', 'Jókai, Mór', '2018-03-16', 7, 'https://www.gutenberg.org/ebooks/56755', 'hu', 1532), +(44108, 'History of the United Netherlands, 1588-89', 'Motley, John Lothrop', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/4859', 'en', 3372), +(44109, 'La Mort de la Terre, roman, suivi de contes', 'Rosny, J.-H., aîné', '2018-08-13', 36, 'https://www.gutenberg.org/ebooks/57687', 'fr', 100), +(44110, 'Rhetoric and Poetry in the Renaissance\nA Study of Rhetorical Terms in English Renaissance Literary Criticism', 'Clark, Donald Lemen', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10140', 'en', 15603), +(44111, 'Wizard', 'Janifer, Laurence M.', '2008-01-21', 63, 'https://www.gutenberg.org/ebooks/24375', 'en', 15604), +(44112, 'The Merry Wives of Windsor', 'Shakespeare, William', '1998-11-01', 44, 'https://www.gutenberg.org/ebooks/1517', 'en', 13710), +(44113, 'British Castles', 'Ashdown, Charles Henry', '2012-08-31', 22, 'https://www.gutenberg.org/ebooks/40630', 'en', 15605), +(44114, 'Adrift in the Ice-Fields', 'Hall, Charles Winslow', '2007-05-25', 14, 'https://www.gutenberg.org/ebooks/21607', 'en', 5634), +(44115, 'Henry Brocken\nHis Travels and Adventures in the Rich, Strange, Scarce-Imaginable Regions of Romance', 'De la Mare, Walter', '2005-03-21', 42, 'https://www.gutenberg.org/ebooks/15432', 'en', 2203), +(44116, 'Punch or the London Charivari, Vol. 148, January 27, 1915', 'Various', '2014-04-07', 2, 'https://www.gutenberg.org/ebooks/45342', 'en', 134), +(44117, 'Side-Lights on Astronomy and Kindred Fields of Popular Science', 'Newcomb, Simon', '2003-05-01', 13, 'https://www.gutenberg.org/ebooks/4065', 'en', 15606), +(44118, 'Souvenirs de Charles-Henri Baron de Gleichen', 'Gleichen, Charles Henri, baron de', '2011-10-15', 7, 'https://www.gutenberg.org/ebooks/37762', 'fr', 15607), +(44119, 'A King of Tyre: A Tale of the Times of Ezra and Nehemiah', 'Ludlow, James M. (James Meeker)', '2013-11-26', 22, 'https://www.gutenberg.org/ebooks/44290', 'en', 15608), +(44120, 'The American Missionary — Volume 32, No. 06, June, 1878', 'Various', '2016-10-07', 10, 'https://www.gutenberg.org/ebooks/53227', 'en', 395), +(44121, 'The Albert Gate Mystery\nBeing Further Adventures of Reginald Brett, Barrister Detective', 'Tracy, Louis', '2007-10-22', 40, 'https://www.gutenberg.org/ebooks/23150', 'en', 128), +(44122, 'La Coupe; Lupo Liverani; Le Toast; Garnier; Le Contrebandier; La Rêverie à Paris', 'Sand, George', '2013-10-05', 9, 'https://www.gutenberg.org/ebooks/43889', 'fr', 100), +(44123, 'Child\'s Book of Water Birds', 'Anonymous', '2005-12-21', 32, 'https://www.gutenberg.org/ebooks/17365', 'en', 15609), +(44124, 'Spanish America, Its Romance, Reality and Future, Vol. 1 (of 2)', 'Enock, C. Reginald (Charles Reginald)', '2014-11-21', 21, 'https://www.gutenberg.org/ebooks/47415', 'en', 15610), +(44125, 'A Lady\'s Life on a Farm in Manitoba', 'Hall, M. G. C. (Mary Georgina Caroline)', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6732', 'en', 7298), +(44126, 'The Actress\' Daughter: A Novel', 'Fleming, May Agnes', '2011-01-22', 34, 'https://www.gutenberg.org/ebooks/35035', 'en', 1028), +(44127, 'Cry Snooker', 'Fetler, Andrew', '2016-03-26', 26, 'https://www.gutenberg.org/ebooks/51570', 'en', 179), +(44128, 'The Emancipation Proclamation', 'Lincoln, Abraham', '2007-07-16', 24, 'https://www.gutenberg.org/ebooks/22082', 'en', 15611), +(44129, 'Further Adventures of Lad', 'Terhune, Albert Payson', '2000-11-01', 25, 'https://www.gutenberg.org/ebooks/2392', 'en', 729), +(44130, 'The Thirteen Little Black Pigs, and Other Stories', 'Molesworth, Mrs.', '2009-11-26', 13, 'https://www.gutenberg.org/ebooks/30547', 'en', 388), +(44131, 'La duchesse bleue', 'Bourget, Paul', '2017-01-18', 15, 'https://www.gutenberg.org/ebooks/54002', 'fr', 298), +(44132, 'Recollections of Calcutta for over Half a Century', 'Massey, Montague', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12617', 'en', 15612), +(44133, 'Rulers of India: The Earl of Mayo', 'Hunter, William Wilson', '2011-04-09', 16, 'https://www.gutenberg.org/ebooks/35809', 'en', 2957), +(44134, 'Great Men and Famous Women. Vol. 2\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2008-08-27', 31, 'https://www.gutenberg.org/ebooks/26422', 'en', 122), +(44135, 'Cap\'n Eri', 'Lincoln, Joseph Crosby', '2006-05-30', 37, 'https://www.gutenberg.org/ebooks/3240', 'en', 4959), +(44136, 'The Wailing Octopus: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-03-03', 26, 'https://www.gutenberg.org/ebooks/31495', 'en', 2322), +(44137, 'The Pit Town Coronet: A Family Mystery, Volume 1 (of 3)', 'Wills, C. J. (Charles James)', '2013-02-23', 2, 'https://www.gutenberg.org/ebooks/42167', 'en', 389), +(44138, 'The Quest for a Lost Race', 'Pickett, Thomas Edward', '2014-12-11', 26, 'https://www.gutenberg.org/ebooks/47627', 'en', 15613), +(44139, 'Les mystères de Paris, Tome III', 'Sue, Eugène', '2006-07-27', 22, 'https://www.gutenberg.org/ebooks/18923', 'fr', 560), +(44140, 'The Log-Cabin Lady — An Anonymous Autobiography', NULL, '2004-09-01', 36, 'https://www.gutenberg.org/ebooks/6500', 'en', 15614), +(44141, 'Mademoiselle Olympe Zabriski', 'Aldrich, Thomas Bailey', '2007-11-06', 17, 'https://www.gutenberg.org/ebooks/23362', 'en', 179), +(44142, 'Gulliver\'s Travels into Several Remote Regions of the World', 'Swift, Jonathan', '2005-11-26', 436, 'https://www.gutenberg.org/ebooks/17157', 'en', 580), +(44143, 'The Remedy for Unemployment', 'Wallace, Alfred Russel', '2015-12-14', 15, 'https://www.gutenberg.org/ebooks/50690', 'en', 15615), +(44144, 'The Wyandotte Convention: an address', 'Martin, John Alexander', '2016-04-12', 9, 'https://www.gutenberg.org/ebooks/51742', 'en', 15616), +(44145, 'A Voyage in a Balloon (1852)', 'Verne, Jules', '2005-06-17', 43, 'https://www.gutenberg.org/ebooks/16085', 'en', 2148), +(44146, 'Italy, the Magic Land', 'Whiting, Lilian', '2009-08-10', 10, 'https://www.gutenberg.org/ebooks/29658', 'en', 1896), +(44147, 'The Courier of the Ozarks', 'Dunn, Byron A. (Byron Archibald)', '2011-02-07', 25, 'https://www.gutenberg.org/ebooks/35207', 'en', 15617), +(44148, 'Gambling; or, Fortuna, her temple and shrine.\r\nThe true philosophy and ethics of gambling', 'Romain, James Harold', '2019-07-29', 597, 'https://www.gutenberg.org/ebooks/60005', 'en', 2473), +(44149, 'The Gates Ajar', 'Phelps, Elizabeth Stuart', '2017-02-25', 10, 'https://www.gutenberg.org/ebooks/54230', 'en', 942), +(44150, 'Father Thrift and His Animal Friends', 'Sindelar, Joseph C. (Joseph Charles)', '2013-07-23', 19, 'https://www.gutenberg.org/ebooks/43287', 'en', 1019), +(44151, 'Honore de Balzac, His Life and Writings', 'Sandars, Mary Frances', '2006-01-09', 20, 'https://www.gutenberg.org/ebooks/9548', 'en', 4588), +(44152, 'Elements of Chemistry,\nIn a New Systematic Order, Containing all the Modern Discoveries', 'Lavoisier, Antoine Laurent', '2009-12-28', 133, 'https://www.gutenberg.org/ebooks/30775', 'en', 951), +(44153, 'Andersonville: A Story of Rebel Military Prisons', 'McElroy, John', '2004-06-01', 38, 'https://www.gutenberg.org/ebooks/3072', 'en', 3170), +(44154, 'The Diplomatic Correspondence of the American Revolution, Vol. 03', NULL, '2013-03-17', 8, 'https://www.gutenberg.org/ebooks/42355', 'en', 330), +(44155, 'De Orbe Novo, Volume 1 (of 2)\nThe Eight Decades of Peter Martyr D\'Anghera', 'Anghiera, Pietro Martire d\'', '2004-05-01', 61, 'https://www.gutenberg.org/ebooks/12425', 'en', 989), +(44156, 'The Trail of the Hawk: A Comedy of the Seriousness of Life', 'Lewis, Sinclair', '2008-09-14', 51, 'https://www.gutenberg.org/ebooks/26610', 'en', 262), +(44157, 'Joe Strong, the Boy Fish\nor Marvelous Doings in a Big Tank', 'Barnum, Vance', '2008-04-18', 13, 'https://www.gutenberg.org/ebooks/25095', 'en', 13448), +(44158, 'Samling af Swenska Ordspråk\r\ni ordning ställde efter alfabetet, med tillägg af någre utur Latinen och andre Språk, liklydande eller motswarande', 'Rhodin, Lars', '2018-02-13', 5, 'https://www.gutenberg.org/ebooks/56567', 'sv', 15618), +(44159, 'A Problem in Greek Ethics\r\nBeing an inquiry into the phenomenon of sexual inversion, addressed especially to medical psychologists and jurists', 'Symonds, John Addington', '2010-04-17', 46, 'https://www.gutenberg.org/ebooks/32022', 'en', 12516), +(44160, 'Heart of the West', 'Henry, O.', '2004-07-27', 98, 'https://www.gutenberg.org/ebooks/1725', 'en', 485), +(44161, 'Pagan Ideas of Immortality During the Early Roman Empire', 'Moore, Clifford Herschel', '2016-12-29', 12, 'https://www.gutenberg.org/ebooks/53829', 'en', 1509), +(44162, 'Die Republik des Südkreuzes: Novellen', 'Bryusov, Valery Yakovlevich', '2012-01-07', 14, 'https://www.gutenberg.org/ebooks/38518', 'de', 1871), +(44163, 'Sagas from the Far East; or, Kalmouk and Mongolian Traditionary Tales', NULL, '2012-08-03', 37, 'https://www.gutenberg.org/ebooks/40402', 'en', 15619), +(44164, 'Bunch Grass: A Chronicle of Life on a Cattle Ranch', 'Vachell, Horace Annesley', '2003-12-01', 73, 'https://www.gutenberg.org/ebooks/10372', 'en', 15620), +(44165, 'Tecumseh: A Chronicle of the Last Great Leader of His People\r\nVol. 17 of Chronicles of Canada', 'Raymond, Ethel T.', '2008-01-03', 20, 'https://www.gutenberg.org/ebooks/24147', 'en', 15621), +(44166, 'Palæography\r\nNotes upon the History of Writing and the Medieval Art of Illumination', 'Quaritch, Bernard', '2014-03-18', 10, 'https://www.gutenberg.org/ebooks/45170', 'en', 5974), +(44167, 'La jeune fille verte, roman', 'Toulet, Paul Jean', '2011-06-20', 14, 'https://www.gutenberg.org/ebooks/36482', 'fr', 4), +(44168, 'Andersonville: A Story of Rebel Military Prisons — Volume 1', 'McElroy, John', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/4257', 'en', 2363), +(44169, 'Lord Jim', 'Conrad, Joseph', '2007-05-18', 9, 'https://www.gutenberg.org/ebooks/21435', 'en', 1061), +(44170, 'Matisse Picasso and Gertrude Stein\nWith Two Shorter Stories', 'Stein, Gertrude', '2005-04-11', 65, 'https://www.gutenberg.org/ebooks/15600', 'en', 15622), +(44171, 'A Guest of Ganymede', 'MacApp, C. C.', '2016-09-08', 29, 'https://www.gutenberg.org/ebooks/53015', 'en', 26), +(44172, 'Campaign of the Fourteenth Regiment New Jersey Volunteers', 'Terrill, J. Newton (John Newton)', '2011-09-27', 16, 'https://www.gutenberg.org/ebooks/37550', 'en', 15623), +(44173, 'The Celebrity, Volume 03', 'Churchill, Winston', '2004-10-19', 3, 'https://www.gutenberg.org/ebooks/5385', 'en', 4890), +(44174, 'The Amateur Army', 'MacGill, Patrick', '2005-06-16', 29, 'https://www.gutenberg.org/ebooks/16078', 'en', 3601), +(44175, 'The Dead Letter: An American Romance', 'Victor, Metta Victoria Fuller', '2014-08-28', 34, 'https://www.gutenberg.org/ebooks/46708', 'en', 1335), +(44176, 'Tasting the Earth', 'Gould, Mona', '2010-11-15', 12, 'https://www.gutenberg.org/ebooks/34328', 'en', 28), +(44177, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 11: Paris and Holland', 'Casanova, Giacomo', '2004-12-11', 9, 'https://www.gutenberg.org/ebooks/2961', 'en', 4164), +(44178, 'Harper\'s Young People, April 6, 1880\nAn Illustrated Weekly', 'Various', '2009-05-12', 11, 'https://www.gutenberg.org/ebooks/28777', 'en', 479), +(44179, 'Orchard and Vineyard', 'Sackville-West, V. (Victoria)', '2015-08-20', 46, 'https://www.gutenberg.org/ebooks/49740', 'en', 1594), +(44180, 'Catalogue of the William Loring Andrews Collection of Early Books in the Library of Yale University', 'Van Name, Addison', '2005-10-09', 11, 'https://www.gutenberg.org/ebooks/16844', 'en', 15624), +(44181, 'Frost\'s Laws and By-Laws of American Society\r\nA condensed but thorough treatise on etiquette and its usages in America, containing plain and reliable directions for deportment in every situation in life.', 'Frost, S. Annie (Sarah Annie)', '2005-07-01', 9, 'https://www.gutenberg.org/ebooks/8467', 'en', 3846), +(44182, 'Puphejmo: Dramo en tri aktoj', 'Ibsen, Henrik', '2006-08-12', 17, 'https://www.gutenberg.org/ebooks/19030', 'eo', 537), +(44183, 'Επτά επί Θήβας', 'Aeschylus', '2006-03-15', 54, 'https://www.gutenberg.org/ebooks/17996', 'el', 15625), +(44184, 'Dictionnaire raisonné de l\'architecture française du XIe au XVIe siècle - Tome 8 - (Q suite - R - S)', 'Viollet-le-Duc, Eugène-Emmanuel', '2009-12-28', 16, 'https://www.gutenberg.org/ebooks/30788', 'fr', 1352), +(44185, 'Haudan partaalla: Palkittu romaani', 'Juncker, E.', '2015-04-12', 7, 'https://www.gutenberg.org/ebooks/48692', 'fi', 1103), +(44186, 'Galerij van Beroemde Nederlanders uit het tijdvak van Frederik Hendrik', 'Lennep, J. van (Jacob)', '2014-02-09', 15, 'https://www.gutenberg.org/ebooks/44863', 'nl', 15626), +(44187, 'Meditaciones del Quijote', 'Ortega y Gasset, José', '2018-07-05', 92, 'https://www.gutenberg.org/ebooks/57448', 'es', 15627), +(44188, 'The Book of Sports:\r\nContaining Out-door Sports, Amusements and Recreations, Including Gymnastics, Gardening & Carpentering', 'Martin, William', '2008-04-14', 10, 'https://www.gutenberg.org/ebooks/25068', 'en', 15628), +(44189, 'Punch or the London Charivari, Vol. 93, December 10, 1887', 'Various', '2012-04-12', 4, 'https://www.gutenberg.org/ebooks/39437', 'en', 134), +(44190, 'Grave-mounds and Their Contents\nA Manual of Archæology, as Exemplified in the Burials of the Celtic, the Romano-British, and the Anglo-Saxon Periods', 'Jewitt, Llewellynn Frederick William', '2016-08-29', 15, 'https://www.gutenberg.org/ebooks/52906', 'en', 15629), +(44191, 'Hans Holbein', 'Chamberlain, Arthur B. (Arthur Bensley)', '2018-12-02', 5, 'https://www.gutenberg.org/ebooks/58400', 'en', 6306), +(44192, 'Popular Tales', 'Perrault, Charles', '2010-10-13', 74, 'https://www.gutenberg.org/ebooks/33931', 'fr', 7174), +(44193, 'Tommy', 'Hocking, Joseph', '2008-04-04', 22, 'https://www.gutenberg.org/ebooks/24986', 'en', 8968), +(44194, 'A Modern Chronicle — Volume 05', 'Churchill, Winston', '2004-10-19', 23, 'https://www.gutenberg.org/ebooks/5378', 'en', 828), +(44195, 'The Letters of Charles Dickens. Vol. 3, 1836-1870', 'Dickens, Charles', '2008-06-20', 31, 'https://www.gutenberg.org/ebooks/25854', 'en', 4701), +(44196, 'Squirrels and Other Fur-Bearers', 'Burroughs, John', '2008-01-21', 37, 'https://www.gutenberg.org/ebooks/24388', 'en', 8505), +(44197, 'Thomas Wingfold, Curate', 'MacDonald, George', '2004-06-01', 42, 'https://www.gutenberg.org/ebooks/5976', 'en', 4174), +(44198, 'Hand-book for Horsewomen', 'Bussigny, H. L. de (Henry L. de)', '2012-05-03', 8, 'https://www.gutenberg.org/ebooks/39605', 'en', 2240), +(44199, 'Child\'s New Story Book;\r\nOr, Tales and Dialogues for Little Folks', 'Anonymous', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/10981', 'en', 1817), +(44200, 'Space Viking', 'Piper, H. Beam', '2007-03-03', 239, 'https://www.gutenberg.org/ebooks/20728', 'en', 654), +(44201, 'The Maryland Line in the Confederate States Army.', 'Goldsborough, W. W. (William Worthington)', '2019-01-06', 10, 'https://www.gutenberg.org/ebooks/58632', 'en', 15630), +(44202, 'The Tunnellers of Holzminden (with a side-issue)', 'Durnford, H. G. (Hugh George)', '2016-06-11', 13, 'https://www.gutenberg.org/ebooks/52308', 'en', 8816), +(44203, 'On the Trail of Grant and Lee', 'Hill, Frederick Trevor', '2003-05-01', 23, 'https://www.gutenberg.org/ebooks/4098', 'en', 15631), +(44204, 'U.S. Copyright Renewals, 1976 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/11853', 'en', 4170), +(44205, 'A jövő század regénye, 1. rész', 'Jókai, Mór', '2017-11-08', 4, 'https://www.gutenberg.org/ebooks/55911', 'hu', 234), +(44206, 'Fábulas literarias', 'Iriarte, Tomás de', '2009-07-23', 76, 'https://www.gutenberg.org/ebooks/29497', 'es', 15632), +(44207, 'The Cabman\'s Story\nThe Mysteries of a London \'Growler\'', 'Doyle, Arthur Conan', '2005-12-26', 66, 'https://www.gutenberg.org/ebooks/17398', 'en', 167), +(44208, 'Say and Seal, Volume II', 'Warner, Anna Bartlett', '2009-04-08', 40, 'https://www.gutenberg.org/ebooks/28545', 'en', 4927), +(44209, 'Chats on Angling', 'Hart-Davis, H. V.', '2013-10-03', 24, 'https://www.gutenberg.org/ebooks/43874', 'en', 1945), +(44210, 'Cicely and Other Stories', 'Johnston, Annie F. (Annie Fellows)', '2006-09-07', 19, 'https://www.gutenberg.org/ebooks/19202', 'en', 179), +(44211, 'Observations of a Naturalist in the Pacific Between 1896 and 1899, Volume 1\nVanua Levu, Fiji', 'Guppy, H. B. (Henry Brougham)', '2015-08-02', 13, 'https://www.gutenberg.org/ebooks/49572', 'en', 15633), +(44212, 'Aunt Deborah', 'Mitford, Mary Russell', '2007-10-02', 12, 'https://www.gutenberg.org/ebooks/22843', 'en', 179), +(44213, 'The Battle of Franklin, Tennessee, November 30, 1864\r\nA statement of the erroneous claims made by General Schofield, and an exposition of the blunder which opened the battle', 'Shellenberger, John K.', '2010-03-02', 11, 'https://www.gutenberg.org/ebooks/31468', 'en', 15634), +(44214, 'The Book of the Thousand Nights and One Night, Volume I', NULL, '2005-08-01', 138, 'https://www.gutenberg.org/ebooks/8655', 'en', 3347), +(44215, 'In the Valley', 'Frederic, Harold', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9787', 'en', 15635), +(44216, 'Mission Furniture: How to Make It, Part 2', 'Windsor, H. H. (Henry Haven)', '2007-12-25', 92, 'https://www.gutenberg.org/ebooks/23991', 'en', 15636), +(44217, 'The Piebald Hippogriff', 'Anderson, Karen', '2013-06-27', 83, 'https://www.gutenberg.org/ebooks/43048', 'en', 15637), +(44218, 'In the Days When the World Was Wide, and Other Verses', 'Lawson, Henry', '2008-07-03', 80, 'https://www.gutenberg.org/ebooks/214', 'en', 4974), +(44219, 'The Last Shot', 'Palmer, Frederick', '2004-10-13', 26, 'https://www.gutenberg.org/ebooks/13738', 'en', 2659), +(44220, 'The Camp Fire Girls in After Years', 'Vandercook, Margaret', '2011-01-12', 13, 'https://www.gutenberg.org/ebooks/34926', 'en', 557), +(44221, 'Ristiaallokossa\nKokoelma runoelmia', 'Leino, Kasimir', '2005-05-24', 17, 'https://www.gutenberg.org/ebooks/15897', 'fi', 8), +(44222, 'Encyclopaedia Britannica, 11th Edition, \"Dinard\" to \"Dodsworth, Roger\"\r\nVolume 8, Slice 5', 'Various', '2010-06-04', 35, 'https://www.gutenberg.org/ebooks/32689', 'en', 1081), +(44223, 'Putkinotko: Kuvaus laiskasta viinarokarista ja tuhmasta herrasta', 'Lehtonen, Joel', '2012-03-25', 29, 'https://www.gutenberg.org/ebooks/39261', 'fi', 456), +(44224, 'Cato Maior de Senectute with Introduction and Notes', 'Cicero, Marcus Tullius', '2005-02-07', 59, 'https://www.gutenberg.org/ebooks/14945', 'la', 15638), +(44225, 'The Journal of the American-Irish Historical Society (Vol. III)', 'Various', '2019-04-29', 3, 'https://www.gutenberg.org/ebooks/59384', 'en', 15639), +(44226, 'The Camp Fire Girls\' Careers', 'Vandercook, Margaret', '2011-05-26', 15, 'https://www.gutenberg.org/ebooks/36229', 'en', 2096), +(44227, 'The Northfield Tragedy; or, the Robber\'s Raid\r\nA Thrilling Narrative; A history of the remarkable attempt to rob the bank at Northfield, Minnesota; the Cold-Blooded Murder of the Brave Cashier and an Inoffensive Citizen. The Slaying of Two of the Brigands. The Wonderful Robber Hunt and Capture Graphically Described. Biographies of the Victims, the Captors & the Notorious Younger and James Gang of Desperadoes', 'Hanson, J. H. (Joseph Have)', '2014-01-06', 13, 'https://www.gutenberg.org/ebooks/44609', 'en', 15640), +(44228, 'Theory of the Earth\r\nWith Proofs and Illustrations, Volume 2 (of 4)', 'Hutton, James', '2004-11-27', 29, 'https://www.gutenberg.org/ebooks/14179', 'en', 15641), +(44229, 'The Russian Army and the Japanese War, Vol. 1 (of 2)\r\nBeing Historical and Critical Comments on the Military Policy and Power of Russia and on the Campaign in the Far East', 'Kuropatkin, A. N. (Alekseĭ Nikolaevich)', '2018-11-11', 16, 'https://www.gutenberg.org/ebooks/58256', 'en', 7672), +(44230, 'Anhelli', 'Słowacki, Juliusz', '2009-02-19', 15, 'https://www.gutenberg.org/ebooks/28121', 'pl', 10374), +(44231, 'Mandalay, de jongste hoofdstad van Birma\nDe Aarde en haar Volken, 1904', 'Anonymous', '2009-02-01', 15, 'https://www.gutenberg.org/ebooks/27955', 'nl', 1354), +(44232, '桯史', 'Yue, Ke', '2008-10-12', 11, 'https://www.gutenberg.org/ebooks/26887', 'zh', 2525), +(44233, 'The Shopkeeper Turned Gentleman', 'Molière', '2005-01-01', 21, 'https://www.gutenberg.org/ebooks/7279', 'en', 907), +(44234, 'Genera of Leptodactylid Frogs in México', 'Lynch, John D.', '2010-03-30', 13, 'https://www.gutenberg.org/ebooks/31830', 'en', 15642), +(44235, 'True Stories of the Great War, Volume 5 (of 6)\r\nTales of Adventure--Heroic Deeds--Exploits Told by the Soldiers, Officers, Nurses, Diplomats, Eye Witnesses', NULL, '2015-12-31', 13, 'https://www.gutenberg.org/ebooks/50807', 'en', 449), +(44236, 'The Gutenberg Webster\'s Unabridged Dictionary: Section X, Y, and Z', 'Project Gutenberg', '1996-09-01', 89, 'https://www.gutenberg.org/ebooks/670', 'en', 1481), +(44237, 'Fern Vale; or, the Queensland Squatter. Volume 1', 'Munro, Colin', '2008-11-06', 9, 'https://www.gutenberg.org/ebooks/27169', 'en', 15643), +(44238, 'Så slutades min lek: En tafla ur lifvet', 'Kraftman, Maria', '2014-09-25', 24, 'https://www.gutenberg.org/ebooks/46962', 'sv', 61), +(44239, 'My Memory of Gladstone', 'Smith, Goldwin', '2017-09-14', 6, 'https://www.gutenberg.org/ebooks/55549', 'en', 4282), +(44240, 'Rudimental Divine Science', 'Eddy, Mary Baker', '2006-10-30', 9, 'https://www.gutenberg.org/ebooks/19666', 'en', 1206), +(44241, 'Church Ministry in Kensington\nA Recent Case of Hieratical Teaching Scripturally Considered', 'Gell, John Philip', '2015-06-02', 7, 'https://www.gutenberg.org/ebooks/49116', 'en', 15644), +(44242, 'The World English Bible (WEB): Numbers', 'Anonymous', '2005-06-01', 20, 'https://www.gutenberg.org/ebooks/8231', 'en', 15645), +(44243, 'Cumner\'s Son and Other South Sea Folk — Volume 05', 'Parker, Gilbert', '2004-07-01', 6, 'https://www.gutenberg.org/ebooks/6199', 'en', 108), +(44244, 'Vingt ans après', 'Dumas, Alexandre', '2004-11-04', 85, 'https://www.gutenberg.org/ebooks/13952', 'fr', 1127), +(44245, 'The Mystery of the Sycamore', 'Wells, Carolyn', '2015-10-14', 19, 'https://www.gutenberg.org/ebooks/50209', 'en', 128), +(44246, 'Harper\'s Young People, January 20, 1880\nAn Illustrated Weekly', 'Various', '2009-03-11', 8, 'https://www.gutenberg.org/ebooks/28313', 'en', 479), +(44247, 'The Vortex Blaster', 'Smith, E. E. (Edward Elmer)', '2007-09-16', 127, 'https://www.gutenberg.org/ebooks/22629', 'en', 26), +(44248, 'Three Times and Out\r\nTold by Private Simmons, Written by Nellie L. McClung', 'Simmons, Mervin C.', '2004-07-11', 22, 'https://www.gutenberg.org/ebooks/12880', 'en', 4962), +(44249, 'Love Songs', 'Teasdale, Sara', '1996-02-01', 111, 'https://www.gutenberg.org/ebooks/442', 'en', 178), +(44250, 'La San-Felice, Tome 04', 'Dumas, Alexandre', '2006-06-14', 13, 'https://www.gutenberg.org/ebooks/18586', 'fr', 4110), +(44251, 'The Malay Archipelago, Volume 2\r\nThe Land of the Orang-utan and the Bird of Paradise; A Narrative of Travel, with Studies of Man and Nature', 'Wallace, Alfred Russel', '2001-03-01', 76, 'https://www.gutenberg.org/ebooks/2539', 'en', 15569), +(44252, 'The Authoress of the Odyssey\r\nWhere and when she wrote, who she was, the use she made of the Iliad, and how the poem grew under her hands', 'Butler, Samuel', '2015-06-29', 24, 'https://www.gutenberg.org/ebooks/49324', 'en', 15646), +(44253, 'The Bible, King James version, Book 3: Leviticus', 'Anonymous', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/8003', 'en', 14604), +(44254, 'Walden', 'Thoreau, Henry David', '2008-08-01', 194, 'https://www.gutenberg.org/ebooks/26289', 'en', 15647), +(44255, 'Passages from the English Notebooks, Volume 2.', 'Hawthorne, Nathaniel', '2005-04-01', 40, 'https://www.gutenberg.org/ebooks/7877', 'en', 15648), +(44256, 'La mort de Brute et de Porcie\nOu, La vengeance de la mort de César - Tragédie', 'Guérin de Bouscal', '2006-10-03', 32, 'https://www.gutenberg.org/ebooks/19454', 'fr', 402), +(44257, 'Figures of Earth: A Comedy of Appearances', 'Cabell, James Branch', '2004-03-01', 40, 'https://www.gutenberg.org/ebooks/11639', 'en', 580), +(44258, 'The Vulture Maiden [Die Geier-Wally.]', 'Hillern, Wilhelmine von', '2011-07-23', 4, 'https://www.gutenberg.org/ebooks/36827', 'en', 12522), +(44259, 'Electric Bells and All About Them: A Practical Book for Practical Men', 'Bottone, Selimo Romeo', '2012-03-04', 10, 'https://www.gutenberg.org/ebooks/39053', 'en', 12224), +(44260, 'The Soul of Golf', 'Vaile, P. A. (Percy Adolphus)', '2012-10-23', 22, 'https://www.gutenberg.org/ebooks/41149', 'en', 4846), +(44261, 'The Path to Home', 'Guest, Edgar A. (Edgar Albert)', '2007-06-21', 21, 'https://www.gutenberg.org/ebooks/21890', 'en', 994), +(44262, 'Vasárnapi Könyv. 1914. Első félév 10. füzet', NULL, '2007-03-30', 7, 'https://www.gutenberg.org/ebooks/20942', 'hu', 18), +(44263, 'Kastle Krags: A Story of Mystery', 'Martin, Absalom', '2010-08-29', 18, 'https://www.gutenberg.org/ebooks/33569', 'en', 10770), +(44264, 'Perheonni', 'Tolstoy, Leo, graf', '2019-02-10', 2, 'https://www.gutenberg.org/ebooks/58858', 'fi', 4896), +(44265, 'A Woman Perfected', 'Marsh, Richard', '2011-12-01', 9, 'https://www.gutenberg.org/ebooks/38181', 'en', 1380), +(44266, 'Drake, Nelson and Napoleon', 'Runciman, Walter Runciman, Baron', '2005-03-09', 22, 'https://www.gutenberg.org/ebooks/15299', 'en', 15649), +(44267, 'A Dictionary of the First or Oldest Words in the English Language\nFrom the Semi-Saxon Period of A.D. 1250 to 1300', 'Coleridge, Herbert', '2013-02-02', 27, 'https://www.gutenberg.org/ebooks/41975', 'en', 13961), +(44268, 'Index of the Project Gutenberg Works of Grant Allen', 'Allen, Grant', '2018-10-09', 15, 'https://www.gutenberg.org/ebooks/58064', 'en', 198), +(44269, 'It Was Marlowe: A Story of the Secret of Three Centuries', 'Zeigler, Wilbur Gleason', '2018-08-29', 23, 'https://www.gutenberg.org/ebooks/57810', 'en', 15650), +(44270, 'The Man in Black', 'Weyman, Stanley John', '2012-03-28', 17, 'https://www.gutenberg.org/ebooks/39295', 'en', 2436), +(44271, 'A Compilation of the Messages and Papers of the Presidents. Volume 8, part 3: Grover Cleveland, First Term', 'Cleveland, Grover', '2005-05-19', 28, 'https://www.gutenberg.org/ebooks/15863', 'en', 1720), +(44272, 'Ruth\'s Marriage in Mars: A Scientific Novel', 'Glass, Charles Wilder, Mrs.', '2018-01-08', 13, 'https://www.gutenberg.org/ebooks/56338', 'en', 26), +(44273, 'Memoirs of the Private Life, Return, and Reign of Napoleon in 1815, Vol. II', 'Fleury de Chaboulon, Pierre Alexandre Édouard, baron', '2008-02-29', 10, 'https://www.gutenberg.org/ebooks/24718', 'en', 6534), +(44274, 'The Millionaire Baby', 'Green, Anna Katharine', '2011-12-19', 20, 'https://www.gutenberg.org/ebooks/38347', 'en', 15651), +(44275, 'Essays from the Chap-Book\r\nBeing a Miscellany of Curious and interesting Tales, Histories, &c; newly composed by Many Celebrated Writers and very delightful to read.', 'Various', '2016-08-14', 22, 'https://www.gutenberg.org/ebooks/52798', 'en', 2145), +(44276, 'The Silver Fox', 'Somerville, E. Oe. (Edith Oenone)', '2019-04-26', 25, 'https://www.gutenberg.org/ebooks/59370', 'en', 669), +(44277, 'The Ordeal of Richard Feverel — Volume 3', 'Meredith, George', '2003-09-01', 26, 'https://www.gutenberg.org/ebooks/4408', 'en', 137), +(44278, 'On War — Volume 1', 'Clausewitz, Carl von', '2006-02-26', 919, 'https://www.gutenberg.org/ebooks/1946', 'en', 1359), +(44279, 'Gaspard de la nuit\r\nFantaisies à la manière de Rembrandt et de Callot', 'Bertrand, Aloysius', '2006-02-07', 76, 'https://www.gutenberg.org/ebooks/17708', 'fr', 701), +(44280, 'A New Long-eared Myotis (Myotis evotis) From Northeastern Mexico', 'Stains, Howard J.', '2010-01-10', 8, 'https://www.gutenberg.org/ebooks/30916', 'en', 2561), +(44281, 'A Manual of Clinical Diagnosis', 'Todd, James Campbell', '2014-10-08', 20, 'https://www.gutenberg.org/ebooks/47078', 'en', 15652), +(44282, '龍川詞', 'Chen, Liang', '2008-10-11', 21, 'https://www.gutenberg.org/ebooks/26873', 'zh', 7534), +(44283, 'The Green Forest Fairy Book', 'Brady, Loretta Ellen', '2011-03-02', 61, 'https://www.gutenberg.org/ebooks/35458', 'en', 1007), +(44284, 'The Skilful Cook\nA Practical Manual of Modern Experience', 'Harrison, Mary', '2009-05-30', 49, 'https://www.gutenberg.org/ebooks/29007', 'en', 4911), +(44285, 'A Doctor of the Old School — Volume 3', 'Maclaren, Ian', '2004-08-09', 15, 'https://www.gutenberg.org/ebooks/9317', 'en', 1563), +(44286, 'Birds and All Nature, Vol. 6, No. 1, June 1899\r\nIllustrated by Color Photography', 'Various', '2015-01-19', 7, 'https://www.gutenberg.org/ebooks/48030', 'en', 490), +(44287, 'Worldwide Effects of Nuclear War: Some Perspectives', 'United States. Arms Control and Disarmament Agency', '1996-10-01', 48, 'https://www.gutenberg.org/ebooks/684', 'en', 15653), +(44288, 'Rouen, Its History and Monuments\r\nA Guide to Strangers', 'Licquet, Théodore', '2006-07-02', 33, 'https://www.gutenberg.org/ebooks/18740', 'en', 15654), +(44289, 'The Young Collector\'s Handbook of Ants, Bees, Dragon-flies, Earwigs, Crickets, and Flies\r\n(Hymenoptera, Neuroptera, Orthoptera, Hemiptera, Diptera).', 'Bath, W. Harcourt (William Harcourt)', '2015-01-01', 25, 'https://www.gutenberg.org/ebooks/47844', 'en', 236), +(44290, 'Storia d\'Inghilterra, vol 1', 'Macaulay, Thomas Babington Macaulay, Baron', '2014-09-29', 19, 'https://www.gutenberg.org/ebooks/46996', 'it', 1953), +(44291, 'Peeps at Many Lands: Belgium', 'Omond, George W. T. (George William Thomson)', '2006-11-01', 19, 'https://www.gutenberg.org/ebooks/19692', 'en', 2427), +(44292, 'The Lay Anthony: A Romance', 'Hergesheimer, Joseph', '2016-05-01', 9, 'https://www.gutenberg.org/ebooks/51921', 'en', 109), +(44293, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 266, July 28, 1827', 'Various', '2006-02-01', 25, 'https://www.gutenberg.org/ebooks/9919', 'en', 133), +(44294, 'Hendrik Conscience, zijn persoon en zijn werk', 'Bock, Eugène de', '2009-06-25', 9, 'https://www.gutenberg.org/ebooks/29235', 'nl', 15655), +(44295, 'The Manchester Rebels of the Fatal \'45', 'Ainsworth, William Harrison', '2014-07-24', 23, 'https://www.gutenberg.org/ebooks/46398', 'en', 15656), +(44296, 'The New North', 'Cameron, Agnes Deans', '2004-07-10', 40, 'https://www.gutenberg.org/ebooks/12874', 'en', 15657), +(44297, 'The President: A Novel', 'Lewis, Alfred Henry', '2006-06-13', 10, 'https://www.gutenberg.org/ebooks/18572', 'en', 61), +(44298, 'Journal of Researches into the Natural History and Geology of the Countries Visited During the Voyage Round the World of H.M.S. Beagle Under the Command of Captain Fitz Roy, R.N.', 'Darwin, Charles', '2004-11-01', 5, 'https://www.gutenberg.org/ebooks/6951', 'en', 9436), +(44299, 'Money Magic: A Novel', 'Garland, Hamlin', '2009-10-23', 27, 'https://www.gutenberg.org/ebooks/30318', 'en', 7322), +(44300, 'Kantele Taikka Suomen Kansan sekä Wanhoja että Nykyisempiä Runoja ja Lauluja, IV', 'Lönnrot, Elias', '2015-02-08', 33, 'https://www.gutenberg.org/ebooks/48202', 'fi', 1171), +(44301, '\"Pater Paulus\": Ivailu yhdessä näytöksessä', 'Weijola, Yrjö', '2013-05-19', 3, 'https://www.gutenberg.org/ebooks/42738', 'fi', 247), +(44302, 'Our Little Korean Cousin', 'Pike, H. Lee M. (Henry Lee Mitchell)', '2004-04-01', 76, 'https://www.gutenberg.org/ebooks/12048', 'en', 15658), +(44303, 'Expositions of Holy Scripture\r\nSecond Kings Chapters VIII to End and Chronicles, Ezra, and Nehemiah. Esther, Job, Proverbs, and Ecclesiastes', 'Maclaren, Alexander', '2005-04-01', 26, 'https://www.gutenberg.org/ebooks/7883', 'en', 10736), +(44304, 'Journeys Through Bookland, Vol. 6', 'Sylvester, Charles Herbert', '2007-06-19', 16, 'https://www.gutenberg.org/ebooks/21864', 'en', 1063), +(44305, 'A Master\'s Degree', 'McCarter, Margaret Hill', '1998-06-01', 21, 'https://www.gutenberg.org/ebooks/1348', 'en', 3265), +(44306, 'Perils in the Transvaal and Zululand', 'Adams, H. C. (Henry Cadwallader)', '2011-11-30', 16, 'https://www.gutenberg.org/ebooks/38175', 'en', 15659), +(44307, 'Profitable Squab Breeding', 'Dare, Carl', '2011-11-01', 17, 'https://www.gutenberg.org/ebooks/37901', 'en', 15660), +(44308, 'Kultahohde', 'London, Jack', '2018-04-07', 8, 'https://www.gutenberg.org/ebooks/56936', 'fi', 3558), +(44309, 'The Rover', 'Conrad, Joseph', '2019-03-28', 77, 'https://www.gutenberg.org/ebooks/59142', 'en', 2564), +(44310, 'The Jewels of Aptor', 'Delany, Samuel R.', '2013-02-03', 145, 'https://www.gutenberg.org/ebooks/41981', 'en', 26), +(44311, 'The Strange Adventures of Eric Blackburn', 'Collingwood, Harry', '2007-04-13', 32, 'https://www.gutenberg.org/ebooks/21058', 'en', 324), +(44312, 'The Viking Blood: A Story of Seafaring', 'Wallace, Frederick William', '2012-09-24', 33, 'https://www.gutenberg.org/ebooks/40853', 'en', 3039), +(44313, 'The Blackmore Country', 'Snell, F. J. (Frederick John)', '2016-11-08', 10, 'https://www.gutenberg.org/ebooks/53478', 'en', 15661), +(44314, 'Les trois pirates (2/2)', 'Corbière, Edouard', '2018-10-13', 10, 'https://www.gutenberg.org/ebooks/58090', 'fr', 3828), +(44315, 'Charles Auchester, Volume 1 (of 2)', 'Sheppard, Elizabeth Sara', '2012-02-22', 15, 'https://www.gutenberg.org/ebooks/38949', 'en', 398), +(44316, 'Mademoiselle de la Seiglière\nComédie en quatre actes, en prose', 'Sandeau, Jules', '2009-08-09', 10, 'https://www.gutenberg.org/ebooks/29651', 'fr', 3017), +(44317, 'Memoirs of Madame la Marquise de Montespan — Volume 1', 'Montespan, Madame de', '2004-12-02', 6, 'https://www.gutenberg.org/ebooks/3847', 'en', 9186), +(44318, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 3, Infancy of Jesus Christ', 'Wake, William', '2004-09-01', 25, 'https://www.gutenberg.org/ebooks/6509', 'en', 7966), +(44319, 'Tacitus on Germany', 'Tacitus, Cornelius', '2006-04-04', 170, 'https://www.gutenberg.org/ebooks/2995', 'en', 6091), +(44320, 'Baled Hay: A Drier Book than Walt Whitman\'s \"Leaves o\' Grass\"', 'Nye, Bill', '2015-12-15', 32, 'https://www.gutenberg.org/ebooks/50699', 'en', 190), +(44321, 'Round the Wonderful World', 'Mitton, G. E. (Geraldine Edith)', '2009-05-13', 19, 'https://www.gutenberg.org/ebooks/28783', 'en', 819), +(44322, 'The Last Hope', 'Merriman, Henry Seton', '2005-07-01', 29, 'https://www.gutenberg.org/ebooks/8493', 'en', 13021), +(44323, 'Minnie\'s Pet Lamb', 'Leslie, Madeline', '2008-09-14', 17, 'https://www.gutenberg.org/ebooks/26619', 'en', 1096), +(44324, 'The Freebooters of the Wilderness', 'Laut, Agnes C.', '2006-04-04', 8, 'https://www.gutenberg.org/ebooks/18116', 'en', 3196), +(44325, 'Mistress Nancy Molesworth: A Tale of Adventure', 'Hocking, Joseph', '2017-02-26', 17, 'https://www.gutenberg.org/ebooks/54239', 'en', 323), +(44326, 'The Wolves and the Lamb', 'Thackeray, William Makepeace', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9541', 'en', 1281), +(44327, 'Luar de Janeiro', 'Gil, Augusto', '2006-03-10', 26, 'https://www.gutenberg.org/ebooks/17962', 'pt', 8), +(44328, 'The Sepoy', 'Candler, Edmund', '2015-04-08', 8, 'https://www.gutenberg.org/ebooks/48666', 'en', 15662), +(44329, 'The Sufistic Quatrains of Omar Khayyam', 'Omar Khayyam', '2012-01-06', 73, 'https://www.gutenberg.org/ebooks/38511', 'en', 6839), +(44330, 'A Short History of the Worshipful Company of Horners', 'Rosedale, H. G. (Honyel Gough)', '2016-12-28', 5, 'https://www.gutenberg.org/ebooks/53820', 'en', 15663), +(44331, 'Grammar of the New Zealand language (2nd edition)', 'Maunsell, Robert', '2014-02-14', 25, 'https://www.gutenberg.org/ebooks/44897', 'en', 15664), +(44332, 'Antaño i Ogaño: Novelas i Cuentos de la Vida Hispano-Americana', 'Lastarria, José Victorino', '2014-06-12', 11, 'https://www.gutenberg.org/ebooks/45945', 'es', 15665), +(44333, 'Reminiscences of Forts Sumter and Moultrie in 1860-\'61', 'Doubleday, Abner', '2008-04-01', 21, 'https://www.gutenberg.org/ebooks/24972', 'en', 4513), +(44334, 'Fern Vale; or, the Queensland Squatter. Volume 3', 'Munro, Colin', '2011-09-28', 11, 'https://www.gutenberg.org/ebooks/37559', 'en', 15643), +(44335, 'The Invention of the Track Circuit\r\nThe history of Dr. William Robinson\'s invention of the track circuit, the fundamental unit which made possible our present automatic block signaling and interlocking systems', 'American Railway Association', '2014-03-20', 9, 'https://www.gutenberg.org/ebooks/45179', 'en', 15666), +(44336, 'The Englishwoman in Egypt\r\nLetters from Cairo, Written During a Residence There in 1842, 3, & 4', 'Poole, Sophia Lane', '2019-05-17', 43, 'https://www.gutenberg.org/ebooks/59526', 'en', 15667), +(44337, 'The American Missionary — Volume 44, No. 04, April, 1890', 'Various', '2005-04-12', 6, 'https://www.gutenberg.org/ebooks/15609', 'en', 395), +(44338, 'A New Tortoise, Genus Gopherus, From North-central Mexico', 'Legler, John M.', '2010-06-14', 7, 'https://www.gutenberg.org/ebooks/32817', 'en', 7451), +(44339, 'Home as Found\r\nSequel to \"Homeward Bound\"', 'Cooper, James Fenimore', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/10149', 'en', 1426), +(44340, 'Eeldrop and Appleplex', 'Eliot, T. S. (Thomas Stearns)', '2004-06-01', 39, 'https://www.gutenberg.org/ebooks/5982', 'en', 61), +(44341, 'The Gentle Shepherd: A Pastoral Comedy', 'Ramsay, Allan', '2012-09-01', 29, 'https://www.gutenberg.org/ebooks/40639', 'en', 15668); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(44342, 'A Prairie Courtship', 'Bindloss, Harold', '2012-01-31', 26, 'https://www.gutenberg.org/ebooks/38723', 'en', 15669), +(44343, 'The Marvellous History of the Shadowless Man, and The Cold Heart', 'Chamisso, Adelbert von', '2010-05-02', 23, 'https://www.gutenberg.org/ebooks/32219', 'en', 658), +(44344, 'History of the United Netherlands, 1586e', 'Motley, John Lothrop', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/4850', 'en', 3372), +(44345, 'Hour of Enchantment\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-11-27', 6, 'https://www.gutenberg.org/ebooks/44299', 'en', 557), +(44346, 'Vitaulium: Hofwyck en Spaansche Wijsheit', 'Huygens, Constantijn', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/10975', 'nl', 15670), +(44347, 'Blacks and Bushrangers: Adventures in Queensland', 'Kennedy, E. B.', '2019-06-09', 42, 'https://www.gutenberg.org/ebooks/59714', 'en', 15671), +(44348, 'The Foreign Tour of Messrs. Brown, Jones and Robinson\r\nBeing the History of What They Saw, and Did, in Belgium, Germany, Switzerland & Italy.', 'Doyle, Richard', '2009-07-20', 25, 'https://www.gutenberg.org/ebooks/29463', 'en', 2965), +(44349, 'Masters in Art, Part 32, v. 3, August, 1902: Giotto\nA Series of Illustrated Monographs', 'Anonymous', '2013-06-15', 13, 'https://www.gutenberg.org/ebooks/42952', 'en', 15444), +(44350, 'A Daughter of the Morning', 'Gale, Zona', '2016-03-28', 26, 'https://www.gutenberg.org/ebooks/51579', 'en', 11130), +(44351, 'Stairway to the Stars', 'Shaw, Larry T.', '2007-10-24', 23, 'https://www.gutenberg.org/ebooks/23159', 'en', 179), +(44352, 'The Mediaeval Mind (Volume 1 of 2)\r\nA History of the Development of Thought and Emotion in the Middle Ages', 'Taylor, Henry Osborn', '2013-10-04', 64, 'https://www.gutenberg.org/ebooks/43880', 'en', 5846), +(44353, 'Der Kriegsfreiwillige', 'Mühlenfels, Hedwig von', '2017-06-03', 9, 'https://www.gutenberg.org/ebooks/54837', 'de', 579), +(44354, 'A «San Francisco» : Un atto', 'Di Giacomo, Salvatore', '2011-04-09', 16, 'https://www.gutenberg.org/ebooks/35800', 'it', 407), +(44355, 'L\'art pendant la guerre 1914-1918', 'La Sizeranne, Robert de', '2015-08-03', 19, 'https://www.gutenberg.org/ebooks/49586', 'fr', 15672), +(44356, 'The Major', 'Connor, Ralph', '2006-05-30', 23, 'https://www.gutenberg.org/ebooks/3249', 'en', 65), +(44357, 'Alice, or the Mysteries — Book 11', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 65, 'https://www.gutenberg.org/ebooks/9773', 'en', 137), +(44358, 'Inventors at Work, with Chapters on Discovery', 'Iles, George', '2015-03-10', 19, 'https://www.gutenberg.org/ebooks/48454', 'en', 14292), +(44359, 'The Legend of Sleepy Hollow', 'Irving, Washington', '2007-12-01', 21, 'https://www.gutenberg.org/ebooks/23965', 'en', 3499), +(44360, 'The Third Great Plague\nA Discussion of Syphilis for Everyday People', 'Stokes, John H. (John Hinchman)', '2006-05-06', 22, 'https://www.gutenberg.org/ebooks/18324', 'en', 15673), +(44361, 'The Baby\'s Own Aesop', 'Crane, Walter', '2008-05-11', 88, 'https://www.gutenberg.org/ebooks/25433', 'en', 1141), +(44362, 'The Atlantic Monthly, Volume 03, No. 16, February, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11606', 'en', 1227), +(44363, 'Visits and Sketches at Home and Abroad, Vol. 1 (of 3)\r\nWith Tales and Miscellanies Now First Collected', 'Jameson, Mrs. (Anna)', '2011-07-23', 7, 'https://www.gutenberg.org/ebooks/36818', 'en', 3386), +(44364, 'The Great Airship: A Tale of Adventure.', 'Brereton, F. S. (Frederick Sadleir)', '2012-10-25', 14, 'https://www.gutenberg.org/ebooks/41176', 'en', 3124), +(44365, 'Moon Glow', 'Vandenburg, G. L.', '2010-05-22', 16, 'https://www.gutenberg.org/ebooks/32484', 'en', 26), +(44366, 'The Fortunes Of Glencore', 'Lever, Charles James', '2010-08-27', 14, 'https://www.gutenberg.org/ebooks/33556', 'en', 61), +(44367, 'Biology and Its Makers\r\nWith Portraits and Other Illustrations', 'Locy, William A. (William Albert)', '2019-02-11', 30, 'https://www.gutenberg.org/ebooks/58867', 'en', 9742), +(44368, 'Poems — Volume 3', 'Meredith, George', '1998-07-01', 22, 'https://www.gutenberg.org/ebooks/1383', 'en', 54), +(44369, 'The American Missionary — Volume 41, No. 6, June, 1887', 'Various', '2018-04-21', 2, 'https://www.gutenberg.org/ebooks/57013', 'en', 562), +(44370, 'North America', 'Russell, Israel C. (Cook)', '2011-05-03', 13, 'https://www.gutenberg.org/ebooks/36024', 'en', 15674), +(44371, 'The Journal of Negro History, Volume 4, 1919', 'Various', '2007-04-15', 12, 'https://www.gutenberg.org/ebooks/21093', 'en', 7352), +(44372, 'The Young Guard', 'Hornung, E. W. (Ernest William)', '2016-07-11', 11, 'https://www.gutenberg.org/ebooks/52561', 'en', 2100), +(44373, 'Cattle-Ranch to College: The True Tales of a Boy\'s Adventures in the Far West', 'Doubleday, Russell', '2012-05-29', 16, 'https://www.gutenberg.org/ebooks/39850', 'en', 15675), +(44374, 'Descripcion Geografica De Un Nuevo Camino De La Gran Cordillera,\nPara Facilitar Las Comunicaciones De Buenos-aires Con Chile', 'Sourryère de Souillac, José', '2019-04-02', 10, 'https://www.gutenberg.org/ebooks/59189', 'es', 15676), +(44375, 'Dictatorship vs. Democracy (Terrorism and Communism): a reply to Karl Kantsky', 'Trotsky, Leon', '2012-02-25', 42, 'https://www.gutenberg.org/ebooks/38982', 'en', 5804), +(44376, 'John Redmond\'s Last Years', 'Gwynn, Stephen Lucius', '2004-12-17', 15, 'https://www.gutenberg.org/ebooks/14374', 'en', 7115), +(44377, 'More Jonathan Papers', 'Morris, Elisabeth Woodbridge', '2006-12-19', 12, 'https://www.gutenberg.org/ebooks/20141', 'en', 20), +(44378, 'The Friendly Club and Other Portraits', 'Parsons, Francis', '2012-09-30', 16, 'https://www.gutenberg.org/ebooks/40898', 'en', 15677), +(44379, 'Press Cuttings', 'Shaw, Bernard', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/5723', 'en', 15678), +(44380, 'Adrift in the Unknown; or, Queer Adventures in a Queer Realm', 'Cook, William Wallace', '2013-12-10', 15, 'https://www.gutenberg.org/ebooks/44404', 'en', 26), +(44381, 'The Popular Science Monthly, September, 1900\nVol. 57, May, 1900 to October, 1900', 'Various', '2014-11-04', 16, 'https://www.gutenberg.org/ebooks/47281', 'en', 352), +(44382, 'Woodcraft', 'Kreps, Elmer Harry', '2010-12-28', 60, 'https://www.gutenberg.org/ebooks/34773', 'en', 2155), +(44383, 'The \'Look About You\' Nature Study Books, Book 2 [of 7]', 'Hoare, Thomas W.', '2015-10-16', 42, 'https://www.gutenberg.org/ebooks/50236', 'en', 1527), +(44384, 'A Coal From The Altar, To Kindle The Holy Fire of Zeale\nIn a Sermon Preached at a Generall Visitation at Ipswich', 'Ward, Samuel', '2005-08-03', 13, 'https://www.gutenberg.org/ebooks/16423', 'en', 9231), +(44385, 'An Index of The Divine Comedy by Dante', 'Dante Alighieri', '2005-09-01', 1228, 'https://www.gutenberg.org/ebooks/8800', 'en', 2212), +(44386, 'Salve, Rei!\nPoesia de Camillo Castello Branco', 'Castelo Branco, Camilo', '2007-09-16', 7, 'https://www.gutenberg.org/ebooks/22616', 'pt', 8), +(44387, 'Beauty and the Beast', 'Leprince de Beaumont, Jeanne-Marie', '2004-12-01', 249, 'https://www.gutenberg.org/ebooks/7074', 'en', 1007), +(44388, 'The Walls of Constantinople', 'Baker, B. Granville (Bernard Granville)', '2014-07-21', 38, 'https://www.gutenberg.org/ebooks/46353', 'en', 15679), +(44389, 'A Filha do Arcediago\nTerceira Edição', 'Castelo Branco, Camilo', '2008-11-29', 9, 'https://www.gutenberg.org/ebooks/27364', 'pt', 3856), +(44390, 'Happy England', 'Huish, Marcus B. (Marcus Bourne)', '2017-05-10', 12, 'https://www.gutenberg.org/ebooks/54696', 'en', 15680), +(44391, 'The Christian Life: Its Course, Its Hindrances, and Its Helps', 'Arnold, Thomas', '2004-08-10', 21, 'https://www.gutenberg.org/ebooks/13151', 'en', 1130), +(44392, 'The Quiver 12/1899', 'Anonymous', '2013-09-02', 23, 'https://www.gutenberg.org/ebooks/43621', 'en', 1866), +(44393, 'The Sleeping-Car: A Farce', 'Howells, William Dean', '2001-02-01', 33, 'https://www.gutenberg.org/ebooks/2506', 'en', 868), +(44394, 'The Brown Fairy Book', 'Lang, Andrew', '2010-02-06', 61, 'https://www.gutenberg.org/ebooks/31201', 'en', 1007), +(44395, 'Last Poems by A. E. Housman', 'Housman, A. E. (Alfred Edward)', '2005-04-01', 89, 'https://www.gutenberg.org/ebooks/7848', 'en', 54), +(44396, 'Eric; Or, Little by Little', 'Farrar, F. W. (Frederic William)', '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/12083', 'en', 1779), +(44397, 'The Exclusives (vol. 1 of 3)', 'Bury, Charlotte Campbell, Lady', '2017-10-13', 7, 'https://www.gutenberg.org/ebooks/55744', 'en', 4288), +(44398, 'The Evil Eye, Thanatology, and Other Essays', 'Park, Roswell', '2015-09-18', 33, 'https://www.gutenberg.org/ebooks/50004', 'en', 655), +(44399, 'The Lives of the Twelve Caesars, Volume 09: Vitellius', 'Suetonius', '2004-12-13', 24, 'https://www.gutenberg.org/ebooks/6394', 'en', 6221), +(44400, 'John Marchmont\'s Legacy, Volume 3 (of 3)', 'Braddon, M. E. (Mary Elizabeth)', '2010-12-01', 8, 'https://www.gutenberg.org/ebooks/34541', 'en', 11373), +(44401, 'A Connecticut Yankee in King Arthur\'s Court, Part 5.', 'Twain, Mark', '2004-07-06', 10, 'https://www.gutenberg.org/ebooks/7246', 'en', 4480), +(44402, 'The Black Fawn', 'Kjelgaard, Jim', '2011-03-05', 28, 'https://www.gutenberg.org/ebooks/35493', 'en', 751), +(44403, 'By Forest Ways in New Zealand', 'Roberts, F. A.', '2014-07-01', 24, 'https://www.gutenberg.org/ebooks/46161', 'en', 3572), +(44404, 'Anson\'s Voyage Round the World\nThe Text Reduced', 'Walter, Richard', '2005-08-28', 35, 'https://www.gutenberg.org/ebooks/16611', 'en', 3580), +(44405, 'Frank Merriwell Down South', 'Standish, Burt L.', '2007-08-29', 21, 'https://www.gutenberg.org/ebooks/22424', 'en', 323), +(44406, 'By Far Euphrates: A Tale', 'Alcock, Deborah', '2015-09-09', 14, 'https://www.gutenberg.org/ebooks/49915', 'en', 15681), +(44407, 'Life of Mozart, Vol. 3 (of 3)', 'Jahn, Otto', '2013-08-07', 24, 'https://www.gutenberg.org/ebooks/43413', 'en', 3143), +(44408, 'Compatible', 'Smith, Richard Rein', '2009-05-22', 19, 'https://www.gutenberg.org/ebooks/28922', 'en', 7056), +(44409, 'Contes populaires de Lorraine, comparés avec les contes des autres provinces de France et des pays étrangers, volume 2 (of 2)', 'Cosquin, Emmanuel', '2016-01-03', 10, 'https://www.gutenberg.org/ebooks/50838', 'fr', 15682), +(44410, 'Gwaith Twm o\'r Nant\nCyfrol 2', 'Edwards, Thomas', '2001-07-01', 17, 'https://www.gutenberg.org/ebooks/2734', 'cy', 15683), +(44411, 'Fior di passione', 'Serao, Matilde', '2008-11-04', 11, 'https://www.gutenberg.org/ebooks/27156', 'it', 474), +(44412, 'The Parish Clerk', 'Ditchfield, P. H. (Peter Hampson)', '2004-09-03', 24, 'https://www.gutenberg.org/ebooks/13363', 'en', 13145), +(44413, 'Mogg\'s Cab Fare Distance Map and London Guide.\r\nIndex to the Streets, Squares, and Cab Stands.', 'Mogg, Edward S.', '2017-09-18', 7, 'https://www.gutenberg.org/ebooks/55576', 'en', 856), +(44414, 'The Elements of General Method, Based on the Principles of Herbart', 'McMurry, Charles A. (Charles Alexander)', '2006-10-29', 7, 'https://www.gutenberg.org/ebooks/19659', 'en', 15684), +(44415, 'Parks for the People\nProceedings of a Public Meeting held at Faneuil Hall, June 7, 1876', 'Various', '2008-07-17', 4, 'https://www.gutenberg.org/ebooks/26084', 'en', 15685), +(44416, 'James VI and the Gowrie Mystery', 'Lang, Andrew', '2010-01-20', 17, 'https://www.gutenberg.org/ebooks/31033', 'en', 15686), +(44417, 'Father Henson\'s Story of His Own Life\nTruth Stranger Than Fiction', 'Henson, Josiah', '2015-06-03', 13, 'https://www.gutenberg.org/ebooks/49129', 'en', 7161), +(44418, 'Wisconsin in Story and Song;\nSelections from the Prose and Poetry of Badger State Writers', NULL, '2012-11-11', 16, 'https://www.gutenberg.org/ebooks/41344', 'en', 15687), +(44419, 'Fasting Girls: Their Physiology and Pathology', 'Hammond, William A. (William Alexander)', '2008-05-26', 39, 'https://www.gutenberg.org/ebooks/25601', 'en', 15688), +(44420, 'Pauvre Blaise', 'Ségur, Sophie, comtesse de', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11434', 'fr', 3210), +(44421, 'The Bulletin of the Loudoun County Historical Society, Volume IV, 1965', 'Various', '2018-05-28', 4, 'https://www.gutenberg.org/ebooks/57221', 'en', 13392), +(44422, 'De Reis om de Wereld', 'Darwin, Charles', '2010-09-19', 32, 'https://www.gutenberg.org/ebooks/33764', 'nl', 9436), +(44423, 'Ο Σάνσελλορ', 'Verne, Jules', '2012-07-22', 21, 'https://www.gutenberg.org/ebooks/40296', 'el', 324), +(44424, 'Œuvres complètes de Guy de Maupassant - volume 08', 'Maupassant, Guy de', '2016-08-08', 28, 'https://www.gutenberg.org/ebooks/52753', 'fr', 642), +(44425, 'The Cab of the Sleeping Horse', 'Scott, John Reed', '2005-02-18', 48, 'https://www.gutenberg.org/ebooks/15094', 'en', 61), +(44426, 'Studies in Zechariah', 'Gaebelein, Arno Clemens', '2011-05-24', 16, 'https://www.gutenberg.org/ebooks/36216', 'en', 15689), +(44427, 'Arachne — Volume 04', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5511', 'en', 803), +(44428, 'The Mosaic History of the Creation of the World\r\nIllustrated by Discoveries and Experiments Derived from the Present Enlightened State of Science; With Reflections, Intended to Promote Vital and Practical Religion', 'Wood, Thomas', '2014-01-11', 14, 'https://www.gutenberg.org/ebooks/44636', 'en', 4538), +(44429, 'Punch, or the London Charivari, Volume 156, February 19, 1919', 'Various', '2004-11-24', 12, 'https://www.gutenberg.org/ebooks/14146', 'en', 134), +(44430, 'The Life and Letters of Ogier Ghiselin de Busbecq, Volumes 1 and 2', 'Busbecq, Ogier Ghislain de', '2016-12-06', 10, 'https://www.gutenberg.org/ebooks/53681', 'en', 8861), +(44431, '6,000 Tons of Gold', 'Chamberlain, Henry Richardson', '2018-11-11', 23, 'https://www.gutenberg.org/ebooks/58269', 'en', 4419), +(44432, 'The Dreamers\nAnd Other Poems', 'Garrison, Theodosia Pickering', '2007-01-15', 17, 'https://www.gutenberg.org/ebooks/20373', 'en', 8), +(44433, 'Pelham — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 17, 'https://www.gutenberg.org/ebooks/7622', 'en', 2496), +(44434, 'Alone', 'Harland, Marion', '2014-08-04', 20, 'https://www.gutenberg.org/ebooks/46505', 'en', 61), +(44435, 'Some Account of the Life of Mr. William Shakespear (1709)', 'Rowe, Nicholas', '2005-07-12', 68, 'https://www.gutenberg.org/ebooks/16275', 'en', 10080), +(44436, 'Old Boston Taverns and Tavern Clubs', 'Drake, Samuel Adams', '2013-06-20', 32, 'https://www.gutenberg.org/ebooks/42999', 'en', 15690), +(44437, 'Prairie Farmer, Vol. 56: No. 3, January 19, 1884.\nA Weekly Journal for the Farm, Orchard and Fireside', 'Various', '2007-07-10', 12, 'https://www.gutenberg.org/ebooks/22040', 'en', 1987), +(44438, 'Gold Seekers of \'49', 'Sabin, Edwin L. (Edwin Legrand)', '2007-10-25', 8, 'https://www.gutenberg.org/ebooks/23192', 'en', 1555), +(44439, 'Premature Burial and How It May Be Prevented', 'Vollum, Edward Perry', '2015-11-15', 22, 'https://www.gutenberg.org/ebooks/50460', 'en', 15691), +(44440, 'The Sarva-Darsana-Samgraha\r\nOr, Review of the Different Systems of Hindu Philosophy', 'Madhava', '2010-10-24', 164, 'https://www.gutenberg.org/ebooks/34125', 'en', 6630), +(44441, 'The Chautauquan, Vol. 04, December 1883', 'Chautauqua Literary and Scientific Circle', '2017-07-14', 7, 'https://www.gutenberg.org/ebooks/55112', 'en', 1453), +(44442, 'The Evidence in the Case\r\nA Discussion of the Moral Responsibility for the War of 1914, as Disclosed by the Diplomatic Records of England, Germany, Russia', 'Beck, James M. (James Montgomery)', '2010-03-01', 32, 'https://www.gutenberg.org/ebooks/31457', 'en', 4773), +(44443, 'The Brown Fairy Book', 'Lang, Andrew', '2002-06-01', 182, 'https://www.gutenberg.org/ebooks/3282', 'en', 1007), +(44444, 'A Clerk of Oxford, and His Adventures in the Barons\' War', 'Everett-Green, Evelyn', '2013-07-02', 11, 'https://www.gutenberg.org/ebooks/43077', 'en', 15692), +(44445, 'A Diplomatic Adventure', 'Mitchell, S. Weir (Silas Weir)', '2009-12-02', 9, 'https://www.gutenberg.org/ebooks/30585', 'en', 403), +(44446, 'His Last Bow: An Epilogue of Sherlock Holmes', 'Doyle, Arthur Conan', '2000-10-01', 732, 'https://www.gutenberg.org/ebooks/2350', 'en', 128), +(44447, 'Betrachtungen über die Grundlagen der Philosophie', 'Descartes, René', '2008-12-14', 40, 'https://www.gutenberg.org/ebooks/27532', 'de', 779), +(44448, 'Twice Told Tales', 'Hawthorne, Nathaniel', '2004-10-11', 347, 'https://www.gutenberg.org/ebooks/13707', 'en', 179), +(44449, 'Vision House', 'Williamson, A. M. (Alice Muriel)', '2011-01-11', 18, 'https://www.gutenberg.org/ebooks/34919', 'en', 109), +(44450, 'Beasley\'s Christmas Party', 'Tarkington, Booth', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5949', 'en', 585), +(44451, 'Fresh Every Hour\r\nDetailing the Adventures, Comic and Pathetic of One Jimmy Martin, Purveyor of Publicity, a Young Gentleman Possessing Sublime Nerve, Whimsical Imagination, Colossal Impudence, and, Withal, the Heart of a Child.', 'Toohey, John Peter', '2018-08-06', 16, 'https://www.gutenberg.org/ebooks/57645', 'en', 15693), +(44452, 'Trio No. 1 in B Flat, Pt. 1\r\n1st Movement, allegro moderato, Op. 99', 'New York Trio', '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10182', 'en', 15694), +(44453, 'Mary', 'Bjørnson, Bjørnstjerne', '2010-07-31', 23, 'https://www.gutenberg.org/ebooks/33300', 'en', 286), +(44454, 'Prisons and Prayer; Or, a Labor of Love', 'Wheaton, Elizabeth Ryder', '2012-12-28', 7, 'https://www.gutenberg.org/ebooks/41720', 'en', 2437), +(44455, 'Il cristianesimo e la religione di domani', 'Murri, Romolo', '2008-04-30', 22, 'https://www.gutenberg.org/ebooks/25265', 'it', 8549), +(44456, 'Taquisara', 'Crawford, F. Marion (Francis Marion)', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11050', 'en', 15695), +(44457, 'The Invaders, and Other Stories', 'Tolstoy, Leo, graf', '2018-03-20', 55, 'https://www.gutenberg.org/ebooks/56797', 'en', 4078), +(44458, 'Pearl-Maiden: A Tale of the Fall of Jerusalem', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 56, 'https://www.gutenberg.org/ebooks/5175', 'en', 15696), +(44459, 'Richelieu: A Tale of France, v. 1/3', 'James, G. P. R. (George Payne Rainsford)', '2013-11-21', 18, 'https://www.gutenberg.org/ebooks/44252', 'en', 2895), +(44460, 'The Canterville Ghost', 'Wilde, Oscar', '2004-12-30', 600, 'https://www.gutenberg.org/ebooks/14522', 'en', 95), +(44461, 'The Girl on the Boat', 'Wodehouse, P. G. (Pelham Grenville)', '2007-03-01', 131, 'https://www.gutenberg.org/ebooks/20717', 'en', 6165), +(44462, 'Mestarin rakkausseikkailut: Kaksinäytöksinen ilveily', 'Walakorpi, Urho Wiljo', '2016-06-15', 10, 'https://www.gutenberg.org/ebooks/52337', 'fi', 382), +(44463, 'Artists and Arabs; Or, Sketching in Sunshine', 'Blackburn, Henry', '2014-04-14', 19, 'https://www.gutenberg.org/ebooks/45380', 'en', 10950), +(44464, 'Tripping with the Tucker Twins', 'Speed, Nell', '2011-07-09', 25, 'https://www.gutenberg.org/ebooks/36672', 'en', 2486), +(44465, 'Sur les Principes Fondamentaux de la Théorie des Nombres et de la Géométrie', 'Laurent, H. (Hermann)', '2010-07-10', 7, 'https://www.gutenberg.org/ebooks/33132', 'fr', 5426), +(44466, 'A láthatatlan ember: Regény', 'Gárdonyi, Géza', '2018-07-10', 37, 'https://www.gutenberg.org/ebooks/57477', 'hu', 12035), +(44467, '比目魚', 'Aiyuezhuren', '2008-01-07', 31, 'https://www.gutenberg.org/ebooks/24185', 'zh', 3187), +(44468, 'The Adventure Of Elizabeth Morey, of New York\n1901', 'Becke, Louis', '2008-04-12', 31, 'https://www.gutenberg.org/ebooks/25057', 'en', 323), +(44469, 'Cyclopedia of Economics', 'Vaknin, Samuel', '2004-02-01', 52, 'https://www.gutenberg.org/ebooks/11262', 'en', 1745), +(44470, 'The Young Continentals at Bunker Hill', 'McIntyre, John Thomas', '2012-11-30', 18, 'https://www.gutenberg.org/ebooks/41512', 'en', 15697), +(44471, 'The Grateful Dead: The History of a Folk Story', 'Gerould, Gordon Hall', '2012-04-09', 22, 'https://www.gutenberg.org/ebooks/39408', 'en', 15698), +(44472, 'Life of John Knox, Fifth Edition, Vol. 1 of 2\nContaining Illustrations of the History of the Reformation in Scotland', 'M\'Crie, Thomas', '2016-08-30', 7, 'https://www.gutenberg.org/ebooks/52939', 'en', 3371), +(44473, 'Uncle Titus and His Visit to the Country', 'Spyri, Johanna', '2005-01-17', 37, 'https://www.gutenberg.org/ebooks/14710', 'en', 15699), +(44474, 'Isabel Leicester\r\nA Romance by Maude Alma', 'Alma, Maude', '2007-02-06', 24, 'https://www.gutenberg.org/ebooks/20525', 'en', 6871), +(44475, 'Understood Betsy', 'Fisher, Dorothy Canfield', '2004-03-01', 227, 'https://www.gutenberg.org/ebooks/5347', 'en', 15700), +(44476, 'Neuralgia and the Diseases That Resemble It', 'Anstie, Francis Edmund', '2011-10-01', 24, 'https://www.gutenberg.org/ebooks/37592', 'en', 15701), +(44477, 'The Mystery of Carlitos\nMexican Mystery Stories #2', 'Randolph, Helen', '2013-10-31', 20, 'https://www.gutenberg.org/ebooks/44060', 'en', 15702), +(44478, 'Songs of Action', 'Doyle, Arthur Conan', '2003-07-01', 47, 'https://www.gutenberg.org/ebooks/4295', 'en', 532), +(44479, 'Mexiko\nDe Aarde en haar volken, Jaargang 1865', 'Anonymous', '2011-06-15', 9, 'https://www.gutenberg.org/ebooks/36440', 'nl', 2487), +(44480, 'Shell-Shock and Other Neuropsychiatric Problems\nPresented in Five Hundred and Eighty-nine Case Histories from the War Literature, 1914-1918', 'Southard, Elmer Ernest', '2016-05-19', 18, 'https://www.gutenberg.org/ebooks/52105', 'en', 15703), +(44481, 'The Olive', 'Bitting, K. G. (Katherine Golden)', '2016-04-17', 4, 'https://www.gutenberg.org/ebooks/51780', 'en', 15704), +(44482, 'The Power of Womanhood, or Mothers and Sons\nA Book For Parents, And Those In Loco Parentis', 'Hopkins, Ellice', '2005-06-13', 21, 'https://www.gutenberg.org/ebooks/16047', 'en', 5443), +(44483, 'Young Mr. Barter\'s Repentance\nFrom \"Schwartz\" by David Christie Murray', 'Murray, David Christie', '2007-08-08', 16, 'https://www.gutenberg.org/ebooks/22272', 'en', 61), +(44484, 'The Minister\'s Charge; Or, The Apprenticeship of Lemuel Barker', 'Howells, William Dean', '2005-02-01', 20, 'https://www.gutenberg.org/ebooks/7410', 'en', 1612), +(44485, 'The Heroic Enthusiasts (Gli Eroici Furori) Part the Second\r\nAn Ethical Poem', 'Bruno, Giordano', '2006-11-16', 29, 'https://www.gutenberg.org/ebooks/19833', 'en', 10426), +(44486, 'The Bible: I. Authenticity II. Credibility III. Morality', 'Remsburg, John E. (John Eleazer)', '2014-08-31', 22, 'https://www.gutenberg.org/ebooks/46737', 'en', 5161), +(44487, 'Latin Vulgate, Bible Book Titles and Names', 'Anonymous', '1997-02-01', 82, 'https://www.gutenberg.org/ebooks/825', 'la', 1185), +(44488, 'Caribbee', 'Hoover, Thomas', '2010-11-14', 21, 'https://www.gutenberg.org/ebooks/34317', 'en', 15705), +(44489, 'The Sandman: His Sea Stories', 'Hopkins, William John', '2009-05-10', 34, 'https://www.gutenberg.org/ebooks/28748', 'en', 324), +(44490, 'A Message to Garcia\r\nBeing a Preachment', 'Hubbard, Elbert', '2005-12-02', 275, 'https://www.gutenberg.org/ebooks/17195', 'en', 4065), +(44491, 'Pyhän Markuksen leijona', 'Henty, G. A. (George Alfred)', '2015-12-08', 13, 'https://www.gutenberg.org/ebooks/50652', 'fi', 15706), +(44492, 'Skin Game', 'Fritch, Charles E.', '2010-03-16', 30, 'https://www.gutenberg.org/ebooks/31665', 'en', 26), +(44493, 'Marse Henry (Volume 1)\nAn Autobiography', 'Watterson, Henry', '2005-07-01', 8, 'https://www.gutenberg.org/ebooks/8458', 'en', 15707), +(44494, 'Ιστορία της Αρχαίας Ελληνικής Λογοτεχνίας', 'Murray, Gilbert', '2013-03-23', 26, 'https://www.gutenberg.org/ebooks/42397', 'el', 13861), +(44495, 'The Voyage of the Arrow to the China Seas.\r\nIts Adventures and Perils, Including Its Capture by Sea Vultures from the Countess of Warwick, as Set Down by William Gore, Chief Mate', 'Hains, T. Jenkins (Thornton Jenkins)', '2017-08-10', 46, 'https://www.gutenberg.org/ebooks/55320', 'en', 3421), +(44496, 'The Rose-Jar', 'Jones, Thomas S. (Thomas Samuel)', '2009-01-04', 10, 'https://www.gutenberg.org/ebooks/27700', 'en', 8), +(44497, 'Selections from Five English Poets', NULL, '2004-09-27', 27, 'https://www.gutenberg.org/ebooks/13535', 'en', 54), +(44498, 'Luke Barnicott, and Other Stories', 'Howitt, William', '2013-07-18', 6, 'https://www.gutenberg.org/ebooks/43245', 'en', 388), +(44499, 'Anarchism and Other Essays', 'Goldman, Emma', '2000-04-01', 400, 'https://www.gutenberg.org/ebooks/2162', 'en', 11063), +(44500, 'The House in the Mist', 'Green, Anna Katharine', '2011-01-19', 28, 'https://www.gutenberg.org/ebooks/35003', 'en', 128), +(44501, 'Punch, or the London Charivari, Vol. 158, 1920-01-28', 'Various', '2005-07-13', 4, 'https://www.gutenberg.org/ebooks/16281', 'en', 134), +(44502, 'Handyman', 'Banta, Frank', '2016-03-24', 37, 'https://www.gutenberg.org/ebooks/51546', 'en', 179), +(44503, 'Who Was She?\nFrom \"The Atlantic Monthly\" for September, 1874', 'Taylor, Bayard', '2007-10-24', 24, 'https://www.gutenberg.org/ebooks/23166', 'en', 179), +(44504, 'Abner Daniel: A Novel', 'Harben, Will N. (Will Nathaniel)', '2015-11-19', 18, 'https://www.gutenberg.org/ebooks/50494', 'en', 4872), +(44505, 'La mer et les marins\nScènes maritimes', 'Corbière, Edouard', '2005-12-19', 10, 'https://www.gutenberg.org/ebooks/17353', 'fr', 15708), +(44506, 'Vine and Olive; Or, Young America in Spain and Portugal\r\nA Story of Travel and Adventure', 'Optic, Oliver', '2014-11-22', 10, 'https://www.gutenberg.org/ebooks/47423', 'en', 246), +(44507, 'The Presentation', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-05-29', 11, 'https://www.gutenberg.org/ebooks/54808', 'en', 98), +(44508, 'A Domestic Problem : Work and Culture in the Household', 'Diaz, Abby Morton', '2004-10-01', 30, 'https://www.gutenberg.org/ebooks/6704', 'en', 1619), +(44509, 'The Book of Dreams and Ghosts', 'Lang, Andrew', '2004-06-01', 79, 'https://www.gutenberg.org/ebooks/12621', 'en', 1245), +(44510, 'Fil and Filippa: Story of Child Life in the Philippines', 'Thomson, John Stuart', '2008-08-24', 17, 'https://www.gutenberg.org/ebooks/26414', 'en', 4796), +(44511, 'The Complete Works of Artemus Ward — Part 6: Artemus Ward\'s Panorama', 'Ward, Artemus', '2002-06-01', 15, 'https://www.gutenberg.org/ebooks/3276', 'en', 190), +(44512, 'Le Rhin, Tome II', 'Hugo, Victor', '2013-02-21', 13, 'https://www.gutenberg.org/ebooks/42151', 'fr', 15709), +(44513, 'Under the Window: Pictures & Rhymes for Children', 'Greenaway, Kate', '2007-10-05', 44, 'https://www.gutenberg.org/ebooks/22888', 'en', 859), +(44514, 'A Young Man\'s Year', 'Hope, Anthony', '2013-07-03', 21, 'https://www.gutenberg.org/ebooks/43083', 'en', 1902), +(44515, 'Fanny: estudo', 'Feydeau, Ernest', '2009-12-01', 7, 'https://www.gutenberg.org/ebooks/30571', 'pt', 61), +(44516, 'The Boy Inventors\' Electric Hydroaeroplane', 'Bonner, Richard', '2017-01-21', 4, 'https://www.gutenberg.org/ebooks/54034', 'en', 15710), +(44517, 'The Debutante\r\nCaprice Brillante', NULL, '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10176', 'en', 15711), +(44518, 'Chambers\'s Edinburgh Journal, No. 462\nVolume 18, New Series, November 6, 1852', 'Various', '2008-01-17', 10, 'https://www.gutenberg.org/ebooks/24343', 'en', 18), +(44519, 'The Life of King Henry V', 'Shakespeare, William', '1998-11-01', 93, 'https://www.gutenberg.org/ebooks/1521', 'en', 12211), +(44520, 'The Legal Position of the Clergy', 'Smith, Philip Vernon', '2012-08-28', 9, 'https://www.gutenberg.org/ebooks/40606', 'en', 15712), +(44521, 'The Flower Princess', 'Brown, Abbie Farwell', '2010-05-02', 26, 'https://www.gutenberg.org/ebooks/32226', 'en', 1007), +(44522, 'Theism or Atheism: The Great Alternative', 'Cohen, Chapman', '2008-05-02', 42, 'https://www.gutenberg.org/ebooks/25291', 'en', 2903), +(44523, 'North Italian Folk: Sketches of Town and Country Life', 'Carr, Alice Vansittart Strettel', '2018-03-17', 9, 'https://www.gutenberg.org/ebooks/56763', 'en', 1896), +(44524, 'A Narrative of Service with the Third Wisconsin Infantry', 'Hinkley, Julian Wisner', '2011-10-14', 9, 'https://www.gutenberg.org/ebooks/37754', 'en', 444), +(44525, 'Inebriety and The Candidate', 'Crabbe, George', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/5181', 'en', 54), +(44526, 'Kolme ystävystä II', 'Gorky, Maksim', '2016-10-04', 2, 'https://www.gutenberg.org/ebooks/53211', 'fi', 147), +(44527, 'Kotka-Wappu: Kertomus Tyrolin vuoristosta', 'Hillern, Wilhelmine von', '2007-05-28', 8, 'https://www.gutenberg.org/ebooks/21631', 'fi', 12522), +(44528, 'The Great Round World and What Is Going On In It, Vol. 1, No. 19, March 18, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-18', 13, 'https://www.gutenberg.org/ebooks/15404', 'en', 1), +(44529, 'Choix de contes et nouvelles traduits du chinois', NULL, '2014-04-14', 11, 'https://www.gutenberg.org/ebooks/45374', 'fr', 3327), +(44530, 'Seeing Europe with Famous Authors, Volume 4\r\nFrance and the Netherlands, Part 2', NULL, '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/11898', 'en', 1117), +(44531, 'The Vicar of Wrexhill', 'Trollope, Frances Milton', '2011-07-11', 26, 'https://www.gutenberg.org/ebooks/36686', 'en', 1397), +(44532, 'Nuttie\'s Father', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-05-01', 12, 'https://www.gutenberg.org/ebooks/4053', 'en', 45), +(44533, 'Lincoln; An Account of his Personal Life, Especially of its Springs of Action as Revealed and Deepened by the Ordeal of War', 'Stephenson, Nathaniel W. (Nathaniel Wright)', '2006-02-22', 30, 'https://www.gutenberg.org/ebooks/1713', 'en', 1716), +(44534, 'The Place of Dragons: A Mystery', 'Le Queux, William', '2012-08-08', 7, 'https://www.gutenberg.org/ebooks/40434', 'en', 128), +(44535, 'Autumn Anthem', 'Erickson, Joel A.', '2003-11-01', 1, 'https://www.gutenberg.org/ebooks/10344', 'en', 6376), +(44536, 'The Napoleon Gallery\r\nor, Illustrations of the life and times of the emperor of France', 'Réveil, Etienne Achille', '2018-07-11', 12, 'https://www.gutenberg.org/ebooks/57483', 'en', 15713), +(44537, 'The Wedding Day\r\nThe Service—The Marriage Certificate—Words of Counsel', NULL, '2008-01-05', 6, 'https://www.gutenberg.org/ebooks/24171', 'en', 15714), +(44538, 'The Newspaper', 'Dibblee, George Binney', '2018-02-12', 14, 'https://www.gutenberg.org/ebooks/56551', 'en', 4423), +(44539, 'Työmiehen vaimo', 'Canth, Minna', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/11296', 'fi', 247), +(44540, 'Fledermäuse: Sieben Geschichten', 'Meyrink, Gustav', '2010-04-16', 31, 'https://www.gutenberg.org/ebooks/32014', 'de', 179), +(44541, 'The History of the Assassins, Derived from Oriental Sources', 'Hammer-Purgstall, Joseph, Freiherr von', '2016-09-10', 27, 'https://www.gutenberg.org/ebooks/53023', 'en', 15715), +(44542, 'Natural History of the Ornate Box Turtle, Terrapene ornata ornata Agassiz', 'Legler, John M.', '2011-09-29', 18, 'https://www.gutenberg.org/ebooks/37566', 'en', 15716), +(44543, 'Civilisation: Its Cause and Cure; and Other Essays', 'Carpenter, Edward', '2013-11-02', 55, 'https://www.gutenberg.org/ebooks/44094', 'en', 814), +(44544, 'The Radio Boys Under the Sea; or, The Hunt for Sunken Treasure', 'Duffield, J. W.', '2014-03-15', 10, 'https://www.gutenberg.org/ebooks/45146', 'en', 3343), +(44545, 'The Complete Essays of John Galsworthy', 'Galsworthy, John', '2004-09-25', 19, 'https://www.gutenberg.org/ebooks/4261', 'en', 20), +(44546, 'The Pirate of the Mediterranean: A Tale of the Sea', 'Kingston, William Henry Giles', '2007-05-09', 30, 'https://www.gutenberg.org/ebooks/21403', 'en', 14884), +(44547, 'Hunting the Hun', 'Odell, E. G.', '2019-05-16', 30, 'https://www.gutenberg.org/ebooks/59519', 'en', 4962), +(44548, 'The Future of Astronomy', 'Pickering, Edward C. (Edward Charles)', '2005-04-17', 39, 'https://www.gutenberg.org/ebooks/15636', 'en', 1683), +(44549, 'Backlash', 'Marks, Winston K. (Winston Kinney)', '2010-06-15', 52, 'https://www.gutenberg.org/ebooks/32828', 'en', 26), +(44550, 'Memoirs of the Courts of Louis XV and XVI. — Volume 3\r\nBeing secret memoirs of Madame Du Hausset, lady\'s maid to Madame de Pompadour, and of the Princess Lamballe', 'Du Hausset, Mme.', '2004-12-03', 6, 'https://www.gutenberg.org/ebooks/3878', 'en', 27), +(44551, 'The Weirdest World', 'Lafferty, R. A.', '2016-04-17', 78, 'https://www.gutenberg.org/ebooks/51774', 'en', 67), +(44552, 'Milton', 'Bailey, John Cann', '2007-08-09', 11, 'https://www.gutenberg.org/ebooks/22286', 'en', 1173), +(44553, 'Serbia: A Sketch', 'Reed, Helen Leah', '2011-02-10', 22, 'https://www.gutenberg.org/ebooks/35231', 'en', 15717), +(44554, 'The Relief of Chitral', 'Younghusband, Francis Edward, Sir', '2014-12-09', 23, 'https://www.gutenberg.org/ebooks/47611', 'en', 2798), +(44555, 'The Poetical Works of William Lisle Bowles, Vol. 1\nWith Memoir, Critical Dissertation, and Explanatory Notes\nby George Gilfillan', 'Bowles, William Lisle', '2006-07-26', 13, 'https://www.gutenberg.org/ebooks/18915', 'en', 54), +(44556, 'Notes from the Underground', 'Dostoyevsky, Fyodor', '2004-09-01', 34, 'https://www.gutenberg.org/ebooks/6536', 'en', 3081), +(44557, 'Vegetable Teratology\nAn Account of the Principal Deviations from the Usual Construction of Plants', 'Masters, Maxwell T. (Maxwell Tylden)', '2007-11-06', 13, 'https://www.gutenberg.org/ebooks/23354', 'en', 15718), +(44558, 'Max und Moritz: Eine Bubengeschichte in sieben Streichen', 'Busch, Wilhelm', '2005-11-26', 358, 'https://www.gutenberg.org/ebooks/17161', 'de', 1697), +(44559, 'Desperate Remedies', 'Hardy, Thomas', '2004-10-02', 109, 'https://www.gutenberg.org/ebooks/3044', 'en', 348), +(44560, 'The Bacillus of Long Life\r\nA Manual of the Preparation and Souring of Milk for Dietary Purposes, Together with an Historical Account of the Use of Fermented Milks, from the Earliest Times to the Present Day, and Their Wonderful Effect in the Prolonging of Human Existence', 'Douglas, Loudon M.', '2010-03-18', 63, 'https://www.gutenberg.org/ebooks/31691', 'en', 15719), +(44561, 'Crimes of Charity', 'Bercovici, Konrad', '2013-03-18', 13, 'https://www.gutenberg.org/ebooks/42363', 'en', 15720), +(44562, 'Among the Millet and Other Poems', 'Lampman, Archibald', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12413', 'en', 8), +(44563, 'Our Little Brown House, A Poem of West Point\nWritten for the New Year\'s Festival at the Cadets\'\nSabbath-school of the Methodist Episcopal Church, January\n1, 1879', 'Stewart, Maria L.', '2008-09-15', 5, 'https://www.gutenberg.org/ebooks/26626', 'en', 15721), +(44564, 'Lucien Leuwen; ou, l\'Amarante et le Noir. Tome Second', 'Stendhal', '2019-08-01', 241, 'https://www.gutenberg.org/ebooks/60033', 'fr', 15722), +(44565, 'South with Scott', 'Mountevans, Edward Ratcliffe Garth Russell Evans, baron', '2006-04-07', 45, 'https://www.gutenberg.org/ebooks/18129', 'en', 15723), +(44566, 'Kuvia työväen kaupungista', 'Anttila, Selma', '2017-02-19', 17, 'https://www.gutenberg.org/ebooks/54206', 'fi', 175), +(44567, 'Nuoruuteni muistelmia', 'Järnefelt, Arvid', '2015-04-07', 7, 'https://www.gutenberg.org/ebooks/48659', 'fi', 175), +(44568, 'An Iceland Fisherman', 'Loti, Pierre', '2006-03-26', 97, 'https://www.gutenberg.org/ebooks/2196', 'en', 11778), +(44569, 'The Philosophy of Evolution\r\nTogether With a Preliminary Essay on The Metaphysical Basis of Science', 'Carpenter, Stephen H. (Stephen Haskins)', '2009-12-23', 35, 'https://www.gutenberg.org/ebooks/30743', 'en', 814), +(44570, 'Tobacco: Growing, Curing, & Manufacturing\nA Handbook for Planters in All Parts of the World', NULL, '2017-12-06', 19, 'https://www.gutenberg.org/ebooks/56135', 'en', 15724), +(44571, 'Mrs. Maxon Protests', 'Hope, Anthony', '2012-10-25', 23, 'https://www.gutenberg.org/ebooks/41182', 'en', 675), +(44572, 'Isle of the Undead', 'Eshbach, Lloyd Arthur', '2010-05-21', 24, 'https://www.gutenberg.org/ebooks/32470', 'en', 461), +(44573, 'The Irish Ecclesiastical Record, Volume 1, July 1865', NULL, '2012-03-10', 5, 'https://www.gutenberg.org/ebooks/39098', 'en', 96), +(44574, 'Vinzi: A Story of the Swiss Alps', 'Spyri, Johanna', '2019-07-18', 318, 'https://www.gutenberg.org/ebooks/59941', 'en', 15725), +(44575, 'The Talisman', 'Scott, Walter', '1998-07-01', 196, 'https://www.gutenberg.org/ebooks/1377', 'en', 14797), +(44576, 'Race Riot', 'Williams, Ralph', '2019-02-15', 26, 'https://www.gutenberg.org/ebooks/58893', 'en', 26), +(44577, '\'A Comedy of Errors\' in Seven Acts', 'Spokeshave', '2007-04-05', 10, 'https://www.gutenberg.org/ebooks/20989', 'en', 15726), +(44578, 'Life Movements in Plants, Volume II', 'Bose, Jagadis Chandra', '2012-06-20', 32, 'https://www.gutenberg.org/ebooks/40050', 'en', 3788), +(44579, 'Doctor Pascal', 'Zola, Émile', '2004-01-01', 58, 'https://www.gutenberg.org/ebooks/10720', 'en', 607), +(44580, 'Le Tour du Monde; Athos\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-02-04', 21, 'https://www.gutenberg.org/ebooks/24515', 'fr', 1673), +(44581, 'The Gospel of Slavery: A Primer of Freedom', 'Thomas, Abel C. (Abel Charles)', '2014-04-28', 9, 'https://www.gutenberg.org/ebooks/45522', 'en', 125), +(44582, 'River and Canal Engineering, the characteristics of open flowing streams, and the principles and methods to be followed in dealing with them.', 'Bellasis, E. S. (Edward Skelton)', '2018-04-03', 12, 'https://www.gutenberg.org/ebooks/56909', 'en', 15328), +(44583, 'Basil', 'Collins, Wilkie', '2003-11-01', 79, 'https://www.gutenberg.org/ebooks/4605', 'en', 15727), +(44584, 'Overdue: The Story of a Missing Ship', 'Collingwood, Harry', '2007-04-13', 8, 'https://www.gutenberg.org/ebooks/21067', 'en', 61), +(44585, 'Victorian Short Stories: Stories of Successful Marriages', NULL, '2005-03-04', 120, 'https://www.gutenberg.org/ebooks/15252', 'en', 675), +(44586, 'Quince minutos en globo\r\nDisparate cómico-lírico-bailable en un acto, en prosa y verso', 'Barberá, Joaquín', '2016-07-17', 15, 'https://www.gutenberg.org/ebooks/52595', 'es', 15728), +(44587, 'The Fishing Industry', 'Gibbs, William E. (William Edward)', '2016-11-04', 11, 'https://www.gutenberg.org/ebooks/53447', 'en', 15729), +(44588, 'The Life of John Milton, Volume 5 (of 7), 1654-1660\r\nNarrated in Connexion with the Political, Ecclesiastical, and Literary History of His Time', 'Masson, David', '2004-12-19', 20, 'https://www.gutenberg.org/ebooks/14380', 'en', 1173), +(44589, 'The Necklace of Princess Fiorimonde, and Other Stories', 'De Morgan, Mary', '2012-02-25', 38, 'https://www.gutenberg.org/ebooks/38976', 'en', 388), +(44590, 'Cedric, the Forester', 'Marshall, Bernard Gay', '2011-08-15', 16, 'https://www.gutenberg.org/ebooks/37102', 'en', 323), +(44591, 'Kotiopettajattaren romaani (Jane Eyre)', 'Brontë, Charlotte', '2014-11-03', 23, 'https://www.gutenberg.org/ebooks/47275', 'fi', 48), +(44592, 'Auvergne\r\nDe Aarde en haar Volken, 1906', 'Bosch, G.', '2004-11-09', 6, 'https://www.gutenberg.org/ebooks/13999', 'nl', 15730), +(44593, 'Fish Populations, Following a Drought, in the Neosho and Marais des Cygnes Rivers of Kansas', 'Deacon, James E.', '2010-12-30', 6, 'https://www.gutenberg.org/ebooks/34787', 'en', 15731), +(44594, 'Athens: Its Rise and Fall, Book II', 'Lytton, Edward Bulwer Lytton, Baron', '2006-10-20', 12, 'https://www.gutenberg.org/ebooks/6152', 'en', 6138), +(44595, 'The Promise\nA Tale of the Great Northwest', 'Hendryx, James B. (James Beardsley)', '2007-12-04', 25, 'https://www.gutenberg.org/ebooks/23730', 'en', 15732), +(44596, 'The Two Guardians\nor, Home in This World', 'Yonge, Charlotte M. (Charlotte Mary)', '2006-02-01', 14, 'https://www.gutenberg.org/ebooks/9926', 'en', 61), +(44597, 'Journal des Goncourt (Deuxième série, troisième volume)\nMémoires de la vie littéraire', 'Goncourt, Edmond de', '2006-01-12', 18, 'https://www.gutenberg.org/ebooks/17505', 'fr', 1183), +(44598, 'My Lady Greensleeves', 'Pohl, Frederik', '2016-02-27', 71, 'https://www.gutenberg.org/ebooks/51310', 'en', 15733), +(44599, 'Η ολοκαύτωσις του Αρκαδίου', 'Kondylakes, Ioannes', '2011-03-22', 8, 'https://www.gutenberg.org/ebooks/35655', 'el', 7193), +(44600, 'Speeches on Questions of Public Policy, Volume 1', 'Bright, John', '2004-12-01', 22, 'https://www.gutenberg.org/ebooks/7080', 'en', 3346), +(44601, 'Apotheose Camoneana', 'Carvalho, Xavier de', '2008-12-02', 8, 'https://www.gutenberg.org/ebooks/27390', 'pt', 15734), +(44602, 'One Basket', 'Ferber, Edna', '1996-04-01', 109, 'https://www.gutenberg.org/ebooks/489', 'en', 828), +(44603, 'A Defence of the Inquiry into Mesmerism & Phrenology\nchiefly in relation to recent events in Lynn', 'Armes, William', '2017-05-04', 8, 'https://www.gutenberg.org/ebooks/54662', 'en', 830), +(44604, 'Democritus Platonissans', 'More, Henry', '2009-10-25', 14, 'https://www.gutenberg.org/ebooks/30327', 'en', 15735), +(44605, 'A Vindication of the Rights of Woman\r\nWith Strictures on Political and Moral Subjects', 'Wollstonecraft, Mary', '2002-09-01', 898, 'https://www.gutenberg.org/ebooks/3420', 'en', 15736), +(44606, 'A Source Book for Mediæval History\r\nSelected Documents illustrating the History of Europe in the Middle Age', 'McNeal, Edgar Holmes', '2013-05-16', 64, 'https://www.gutenberg.org/ebooks/42707', 'en', 15737), +(44607, 'The Philippines: Past and Present (Volume 1 of 2)', 'Worcester, Dean C. (Dean Conant)', '2004-04-01', 59, 'https://www.gutenberg.org/ebooks/12077', 'en', 4987), +(44608, 'The Bill-Toppers', 'Castaigne, J. André', '2008-08-09', 24, 'https://www.gutenberg.org/ebooks/26242', 'en', 15738), +(44609, 'The New Forest Spy', 'Fenn, George Manville', '2007-11-15', 14, 'https://www.gutenberg.org/ebooks/23502', 'en', 1319), +(44610, 'The Women\'s Victory—and After: Personal Reminiscences, 1911-1918', 'Fawcett, Millicent Garrett, Dame', '2015-04-30', 10, 'https://www.gutenberg.org/ebooks/48833', 'en', 4079), +(44611, 'The Schemes of the Kaiser', 'Adam, Juliette', '2006-02-09', 18, 'https://www.gutenberg.org/ebooks/17737', 'en', 8001), +(44612, 'Het loterijbriefje', 'Verne, Jules', '2010-01-11', 12, 'https://www.gutenberg.org/ebooks/30929', 'nl', 5397), +(44613, 'Brothers: The True History of a Fight Against Odds', 'Vachell, Horace Annesley', '2014-10-04', 14, 'https://www.gutenberg.org/ebooks/47047', 'en', 3014), +(44614, 'Half a Dozen Girls', 'Ray, Anna Chapin', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/6360', 'en', 388), +(44615, 'The Tenants of Malory, Volume 1', 'Le Fanu, Joseph Sheridan', '2011-03-03', 24, 'https://www.gutenberg.org/ebooks/35467', 'en', 167), +(44616, 'An Accidental Honeymoon', 'Barron, Edward', '2014-07-05', 31, 'https://www.gutenberg.org/ebooks/46195', 'en', 4929), +(44617, 'The Men in the Walls', 'Tenn, William', '2016-02-03', 39, 'https://www.gutenberg.org/ebooks/51122', 'en', 26), +(44618, 'In the Orbit of Saturn', 'Starzl, Roman Frederick', '2009-06-04', 43, 'https://www.gutenberg.org/ebooks/29038', 'en', 26), +(44619, 'Cleveland Past and Present: Its Representative Men\r\nComprising Biographical Sketches of Pioneer Settlers and Prominent Citizens', NULL, '2005-11-01', 21, 'https://www.gutenberg.org/ebooks/9328', 'en', 15739), +(44620, 'Tante', 'Sedgwick, Anne Douglas', '2009-09-27', 12, 'https://www.gutenberg.org/ebooks/30115', 'en', 61), +(44621, 'History of the Comstock Patent Medicine Business and Dr. Morse\'s Indian Root Pills', 'Shaw, Robert B.', '2004-09-08', 26, 'https://www.gutenberg.org/ebooks/13397', 'en', 15740), +(44622, 'Tschandala', 'Strindberg, August', '2017-03-28', 8, 'https://www.gutenberg.org/ebooks/54450', 'fi', 2168), +(44623, 'The Orloff Couple, and Malva', 'Gorky, Maksim', '2017-09-19', 5, 'https://www.gutenberg.org/ebooks/55582', 'en', 1377), +(44624, 'The Defendant', 'Chesterton, G. K. (Gilbert Keith)', '2004-05-01', 135, 'https://www.gutenberg.org/ebooks/12245', 'en', 472), +(44625, 'Chinese Folk-Lore Tales', 'Macgowan, J. (John)', '2008-07-16', 49, 'https://www.gutenberg.org/ebooks/26070', 'en', 11469), +(44626, 'John Bull\'s Other Island', 'Shaw, Bernard', '2003-01-01', 56, 'https://www.gutenberg.org/ebooks/3612', 'en', 5266), +(44627, 'The Tiger-Slayer: A Tale of the Indian Desert', 'Aimard, Gustave', '2013-04-14', 20, 'https://www.gutenberg.org/ebooks/42535', 'en', 1228), +(44628, 'O thesouro do rei Fernando\r\nhistoria anecdotica de um tratado inedito', 'Cordeiro, Luciano', '2009-08-26', 29, 'https://www.gutenberg.org/ebooks/29804', 'pt', 15741), +(44629, 'Allan Ramsay', 'Smeaton, William Henry Oliphant', '2010-06-01', 20, 'https://www.gutenberg.org/ebooks/32642', 'en', 15742), +(44630, 'Awdeley\'s Fraternitye of Vacabondes, Harman\'s Caueat, Haben\'s Sermon, &c.', 'Awdelay, John, active 1559-1577', '2018-01-04', 21, 'https://www.gutenberg.org/ebooks/56307', 'en', 15743), +(44631, 'Het portret van Dorian Gray', 'Wilde, Oscar', '2003-12-01', 79, 'https://www.gutenberg.org/ebooks/10512', 'nl', 9678), +(44632, 'Spontaneous Activity in Education', 'Montessori, Maria', '2008-03-02', 82, 'https://www.gutenberg.org/ebooks/24727', 'en', 4672), +(44633, 'Rupert of Hentzau: From The Memoirs of Fritz Von Tarlenheim\r\nSequel to The Prisoner of Zenda', 'Hope, Anthony', '1997-12-01', 121, 'https://www.gutenberg.org/ebooks/1145', 'en', 323), +(44634, 'Delayed Action', 'De Vet, Charles V.', '2010-09-21', 40, 'https://www.gutenberg.org/ebooks/33790', 'en', 6317), +(44635, 'The Christian Sabbath: Is It of Divine Origin?', 'Remsburg, John E. (John Eleazer)', '2011-12-22', 16, 'https://www.gutenberg.org/ebooks/38378', 'en', 503), +(44636, 'Frank Merriwell\'s Triumph; Or, The Disappearance of Felicia', 'Standish, Burt L.', '2012-07-17', 16, 'https://www.gutenberg.org/ebooks/40262', 'en', 323), +(44637, 'The Eagle\'s Heart', 'Garland, Hamlin', '2007-04-29', 25, 'https://www.gutenberg.org/ebooks/21255', 'en', 315), +(44638, 'L\'hôtel hanté', 'Collins, Wilkie', '2005-02-14', 27, 'https://www.gutenberg.org/ebooks/15060', 'fr', 167), +(44639, 'Punch\'s Almanack for 1890', 'Various', '2014-05-21', 17, 'https://www.gutenberg.org/ebooks/45710', 'en', 134), +(44640, 'Vittoria — Volume 3', 'Meredith, George', '2003-09-01', 13, 'https://www.gutenberg.org/ebooks/4437', 'en', 2564), +(44641, 'Aileen Aroon, A Memoir\nWith other Tales of Faithful Friends and Favourites', 'Stables, Gordon', '2011-09-06', 9, 'https://www.gutenberg.org/ebooks/37330', 'en', 625), +(44642, 'The Perdue Chicken Cookbook', 'Perdue, Mitzi', '1999-11-01', 68, 'https://www.gutenberg.org/ebooks/1979', 'en', 2092), +(44643, 'The Story of the Gravelys: A Tale for Girls', 'Saunders, Marshall', '2016-12-06', 18, 'https://www.gutenberg.org/ebooks/53675', 'en', 389), +(44644, 'A Thin Ghost and Others', 'James, M. R. (Montague Rhodes)', '2007-01-16', 154, 'https://www.gutenberg.org/ebooks/20387', 'en', 409), +(44645, 'Much Ado about Nothing', 'Shakespeare, William', '1998-11-01', 133, 'https://www.gutenberg.org/ebooks/1519', 'en', 5155), +(44646, 'The Dance of Death\r\nExhibited in Elegant Engravings on Wood with a Dissertation on the Several Representations of that Subject but More Particularly on Those Ascribed to Macaber and Hans Holbein', 'Douce, Francis', '2012-01-31', 21, 'https://www.gutenberg.org/ebooks/38724', 'en', 6719), +(44647, 'The Punishment of Children', 'Adler, Felix', '2018-08-14', 27, 'https://www.gutenberg.org/ebooks/57689', 'en', 5556), +(44648, 'Zadig, ó El Destino, Historia Oriental', 'Voltaire', '2004-06-01', 53, 'https://www.gutenberg.org/ebooks/5985', 'es', 742), +(44649, 'History of the United Netherlands, 1588c', 'Motley, John Lothrop', '2004-01-01', 4, 'https://www.gutenberg.org/ebooks/4857', 'en', 3372), +(44650, 'Aenigmata Fennica: Suomalaiset Arwotuxet Wastauksien kansa', NULL, '2016-10-07', 14, 'https://www.gutenberg.org/ebooks/53229', 'fi', 3797), +(44651, 'With the \"Die-Hards\" in Siberia', 'Ward, John', '2004-02-01', 33, 'https://www.gutenberg.org/ebooks/10972', 'en', 3601), +(44652, 'Society: Its Origin and Development', 'Rowe, Henry K. (Henry Kalloch)', '2007-05-25', 31, 'https://www.gutenberg.org/ebooks/21609', 'en', 3503), +(44653, 'Practical Cooking and Dinner Giving\r\nA Treatise Containing Practical Instructions in Cooking; in the Combination and Serving of Dishes; and in the Fashionable Modes of Entertaining at Breakfast, Lunch, and Dinner', 'Henderson, Mary F. (Mary Foote)', '2019-06-09', 69, 'https://www.gutenberg.org/ebooks/59713', 'en', 103), +(44654, 'Standard Paper-Bag Cookery', 'Telford, Emma Paddock', '2013-06-15', 21, 'https://www.gutenberg.org/ebooks/42955', 'en', 546), +(44655, 'Tahiti: Roman aus der Südsee. Zweiter Band.', 'Gerstäcker, Friedrich', '2009-07-20', 16, 'https://www.gutenberg.org/ebooks/29464', 'de', 2123), +(44656, 'The Graves of the Fallen', 'Kipling, Rudyard', '2017-06-02', 31, 'https://www.gutenberg.org/ebooks/54830', 'en', 15744), +(44657, 'Sleep and Its Derangements', 'Hammond, William A. (William Alexander)', '2013-10-05', 12, 'https://www.gutenberg.org/ebooks/43887', 'en', 15745), +(44658, 'The Cathedral Church of Oxford\r\nA description of its fabric and a brief history of the Episcopal see', 'Dearmer, Percy', '2015-08-02', 11, 'https://www.gutenberg.org/ebooks/49581', 'en', 15746), +(44659, 'The Pit Town Coronet: A Family Mystery, Volume 3 (of 3)', 'Wills, C. J. (Charles James)', '2013-02-23', 4, 'https://www.gutenberg.org/ebooks/42169', 'en', 389), +(44660, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 473, January 29, 1831', 'Various', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12619', 'en', 133), +(44661, 'Non-combatants and Others', 'Macaulay, Rose', '2011-04-09', 21, 'https://www.gutenberg.org/ebooks/35807', 'en', 579), +(44662, 'Model Speeches for Practise', 'Kleiser, Grenville', '2006-05-06', 34, 'https://www.gutenberg.org/ebooks/18323', 'en', 659), +(44663, '西遊記', 'Wu, Cheng\'en', '2007-12-22', 413, 'https://www.gutenberg.org/ebooks/23962', 'zh', 15747), +(44664, 'The Abandoned Farmer', 'Preston, Sydney Herman', '2015-03-10', 28, 'https://www.gutenberg.org/ebooks/48453', 'en', 637), +(44665, 'Alice, or the Mysteries — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 89, 'https://www.gutenberg.org/ebooks/9774', 'en', 137), +(44666, 'The Twentieth Century American\r\nBeing a Comparative Study of the Peoples of the Two Great Anglo-Saxon Nations', 'Robinson, Harry Perry', '2009-11-26', 7, 'https://www.gutenberg.org/ebooks/30549', 'en', 5391), +(44667, 'L\'Illustration, No. 3246, 13 Mai 1905', 'Various', '2011-02-08', 5, 'https://www.gutenberg.org/ebooks/35209', 'fr', 150), +(44668, 'Memoirs of Marguerite de Valois, Queen of Navarre — Volume 3', 'Marguerite, Queen, consort of Henry IV, King of France', '2004-12-02', 11, 'https://www.gutenberg.org/ebooks/3840', 'en', 265); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(44669, 'The Mountain Divide', 'Spearman, Frank H. (Frank Hamilton)', '2009-08-10', 35, 'https://www.gutenberg.org/ebooks/29656', 'en', 315), +(44670, 'Letters to his mother, Ann Borrow\nand Other Correspondents', 'Borrow, George', '2009-05-13', 24, 'https://www.gutenberg.org/ebooks/28784', 'en', 15748), +(44671, 'The Middle-Class Gentleman', 'Molière', '2001-12-01', 194, 'https://www.gutenberg.org/ebooks/2992', 'en', 618), +(44672, 'Women of Modern France', 'Thieme, Hugo P. (Hugo Paul)', '2005-11-26', 13, 'https://www.gutenberg.org/ebooks/17159', 'en', 848), +(44673, 'Ang \"Filibusterismo\" (Karugtóng ng Noli Me Tangere)', 'Rizal, José', '2014-12-11', 389, 'https://www.gutenberg.org/ebooks/47629', 'tl', 15749), +(44674, 'Omatunto: Saaristokertomus', 'Aho, Juhani', '2005-07-01', 10, 'https://www.gutenberg.org/ebooks/8494', 'fi', 61), +(44675, 'The Circle of Knowledge: A Classified, Simplified, Visualized Book of Answers', NULL, '2015-04-07', 37, 'https://www.gutenberg.org/ebooks/48661', 'en', 1081), +(44676, 'Hänsel and Gretel: A Fairy Opera in Three Acts', 'Wette, Adelheid', '2013-07-24', 41, 'https://www.gutenberg.org/ebooks/43289', 'en', 1966), +(44677, 'Georgian Poetry 1916-1917', NULL, '2005-12-01', 23, 'https://www.gutenberg.org/ebooks/9546', 'en', 1594), +(44678, 'Boy Woodburn: A Story of the Sussex Downs', 'Ollivant, Alfred', '2006-03-11', 11, 'https://www.gutenberg.org/ebooks/17965', 'en', 1220), +(44679, 'Scènes de mer, Tome I', 'Corbière, Edouard', '2006-04-03', 12, 'https://www.gutenberg.org/ebooks/18111', 'fr', 324), +(44680, 'The Printed Book: Its History, Illustration and Adornment\r\nFrom the Days of Gutenberg to the Present Time', 'Bouchot, Henri', '2014-02-13', 22, 'https://www.gutenberg.org/ebooks/44890', 'en', 15750), +(44681, 'The Ambulance Made Two Trips', 'Leinster, Murray', '2008-01-03', 65, 'https://www.gutenberg.org/ebooks/24149', 'en', 26), +(44682, 'The Hospital Bulletin, Vol. V, No. 2, April 15, 1909', 'Various', '2016-12-29', 1, 'https://www.gutenberg.org/ebooks/53827', 'en', 15751), +(44683, 'The Children\'s Life of the Bee', 'Maeterlinck, Maurice', '2012-01-08', 29, 'https://www.gutenberg.org/ebooks/38516', 'en', 4644), +(44684, 'Manpower', 'Andrews, Lincoln C. (Lincoln Clarke)', '2014-06-11', 47, 'https://www.gutenberg.org/ebooks/45942', 'en', 15752), +(44685, 'The Right Honourable Sir Henry Enfield Roscoe P.C., D.C.L., F.R.S.\nA Biographical Sketch', 'Thorpe, T. E. (Thomas Edward)', '2018-02-14', 3, 'https://www.gutenberg.org/ebooks/56569', 'en', 15753), +(44686, 'The Gift Bearer', 'Fontenay, Charles L.', '2008-04-02', 49, 'https://www.gutenberg.org/ebooks/24975', 'en', 67), +(44687, 'The Soldier Turned Farmer', 'Anonymous', '2010-06-14', 2, 'https://www.gutenberg.org/ebooks/32810', 'en', 1361), +(44688, 'Salt ... or No Salt ...', 'Anonymous', '2019-05-16', 80, 'https://www.gutenberg.org/ebooks/59521', 'en', 15754), +(44689, 'Andersonville: A Story of Rebel Military Prisons — Volume 3', 'McElroy, John', '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/4259', 'en', 15755), +(44690, 'The Burgess Animal Book for Children', 'Burgess, Thornton W. (Thornton Waldo)', '2007-12-01', 14, 'https://www.gutenberg.org/ebooks/23708', 'en', 7394), +(44691, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 323, July 19, 1828', 'Various', '2004-07-10', 22, 'https://www.gutenberg.org/ebooks/12873', 'en', 133), +(44692, 'The Hand Phrenologically Considered\nBeing a Glimpse at the Relation of the Mind with the Organisation of the Body', 'Anonymous', '2016-02-29', 10, 'https://www.gutenberg.org/ebooks/51328', 'en', 830), +(44693, 'The Lady\'s Own Cookery Book, and New Dinner-Table Directory;\nIn Which will Be Found a Large Collection of Original Receipts. 3rd ed.', 'Bury, Charlotte Campbell, Lady', '2009-06-25', 45, 'https://www.gutenberg.org/ebooks/29232', 'en', 4911), +(44694, 'Im Land des Lichts: Ein Streifzug durch Kabylie und Wüste', 'Wolf, Thea', '2015-02-08', 12, 'https://www.gutenberg.org/ebooks/48205', 'de', 10950), +(44695, 'One Hundred Merrie And Delightsome Stories\r\nRight Pleasaunte To Relate In All Goodly Companie By Way Of Joyance And Jollity', NULL, '2006-06-13', 146, 'https://www.gutenberg.org/ebooks/18575', 'en', 15360), +(44696, 'In Divers Tones', 'Roberts, Charles G. D., Sir', '2004-11-01', 12, 'https://www.gutenberg.org/ebooks/6956', 'en', 8), +(44697, 'Kaarlo Bergbomin kirjoitukset 1. Näytelmät ja kertomukset', 'Bergbom, Kaarlo Johan', '2017-10-22', 5, 'https://www.gutenberg.org/ebooks/55788', 'fi', 41), +(44698, 'In the Fog', 'Davis, Richard Harding', '2005-04-01', 57, 'https://www.gutenberg.org/ebooks/7884', 'en', 167), +(44699, 'Captain Brassbound\'s Conversion', 'Shaw, Bernard', '2002-09-01', 56, 'https://www.gutenberg.org/ebooks/3418', 'en', 2455), +(44700, 'Derrick Sterling: A Story of the Mines', 'Munroe, Kirk', '2007-06-19', 10, 'https://www.gutenberg.org/ebooks/21863', 'en', 5309), +(44701, 'Glen Canyon Dam', 'United States. Bureau of Reclamation', '2019-07-24', 448, 'https://www.gutenberg.org/ebooks/59979', 'en', 15756), +(44702, 'The Statue', 'Wolf, Mari', '2010-05-20', 28, 'https://www.gutenberg.org/ebooks/32448', 'en', 5065), +(44703, 'The House of Whispers', 'Le Queux, William', '2004-01-01', 28, 'https://www.gutenberg.org/ebooks/10718', 'en', 8855), +(44704, 'The Whirligig of Time', 'Williams, Wayland Wells', '2011-11-02', 25, 'https://www.gutenberg.org/ebooks/37906', 'en', 7350), +(44705, 'Atlantic Narratives: Modern Short Stories', 'Humphrey, Zephine', '2011-11-29', 127, 'https://www.gutenberg.org/ebooks/38172', 'en', 179), +(44706, 'The Catholic World, Vol. 02, October, 1865 to March, 1866\r\nA Monthly Eclectic Magazine', 'Various', '2012-06-24', 25, 'https://www.gutenberg.org/ebooks/40068', 'en', 96), +(44707, 'Le Rhin, Tome I', 'Hugo, Victor', '2013-02-03', 24, 'https://www.gutenberg.org/ebooks/41986', 'fr', 15709), +(44708, 'Index of the Project Gutenberg Works of John Leech', 'Leech, John', '2019-03-28', 8, 'https://www.gutenberg.org/ebooks/59145', 'en', 198), +(44709, 'Suffrage Songs and Verses', 'Gilman, Charlotte Perkins', '2018-04-06', 24, 'https://www.gutenberg.org/ebooks/56931', 'en', 15757), +(44710, 'Reminiscences of Tottenham', 'Couchman, Harriet', '2018-10-14', 1, 'https://www.gutenberg.org/ebooks/58097', 'en', 15758), +(44711, 'Versuche über Pflanzenhybriden', 'Mendel, Gregor', '2012-09-24', 24, 'https://www.gutenberg.org/ebooks/40854', 'de', 15759), +(44712, 'The Modern American Pistol and Revolver', 'Gould, Arthur Corbin', '2012-11-17', 20, 'https://www.gutenberg.org/ebooks/41388', 'en', 15760), +(44713, 'Garman and Worse: A Norwegian Novel', 'Kielland, Alexander Lange', '2005-05-19', 12, 'https://www.gutenberg.org/ebooks/15864', 'en', 61), +(44714, 'A Greek Primer: For Beginners in New Testament Greek', 'Stearns, Wallace N. (Wallace Nelson)', '2012-03-28', 85, 'https://www.gutenberg.org/ebooks/39292', 'en', 15761), +(44715, 'Rules and Practice for Adjusting Watches', 'Kleinlein, Walter J. (Walter John)', '2011-12-19', 16, 'https://www.gutenberg.org/ebooks/38340', 'en', 8727), +(44716, 'The Happy Average', 'Whitlock, Brand', '2014-05-23', 7, 'https://www.gutenberg.org/ebooks/45728', 'en', 2358), +(44717, 'Powder-Post Beetles in Buildings: What to Do About Them', 'McIntyre, T.', '2019-04-28', 8, 'https://www.gutenberg.org/ebooks/59377', 'en', 15762), +(44718, 'Les malheurs de Sophie', 'Ségur, Sophie, comtesse de', '2005-02-14', 68, 'https://www.gutenberg.org/ebooks/15058', 'fr', 1123), +(44719, 'Letters of Two Brides', 'Balzac, Honoré de', '1999-10-01', 44, 'https://www.gutenberg.org/ebooks/1941', 'en', 109), +(44720, 'The Deluge: An Historical Novel of Poland, Sweden, and Russia. Vol. 2 (of 2)', 'Sienkiewicz, Henryk', '2011-09-03', 44, 'https://www.gutenberg.org/ebooks/37308', 'en', 98), +(44721, 'The History of England - a Study in Political Evolution', 'Pollard, A. F. (Albert Frederick)', '2004-08-01', 23, 'https://www.gutenberg.org/ebooks/6358', 'en', 5067), +(44722, 'The Demi-Urge', 'Disch, Thomas M.', '2010-01-10', 40, 'https://www.gutenberg.org/ebooks/30911', 'en', 179), +(44723, 'The Macdermots of Ballycloran', 'Trollope, Anthony', '2009-05-31', 33, 'https://www.gutenberg.org/ebooks/29000', 'en', 378), +(44724, 'Rock of Ages', 'Toplady, Augustus', '2008-11-17', 16, 'https://www.gutenberg.org/ebooks/26874', 'en', 1010), +(44725, 'Anleitung zur quantitativen chemischen Analyse', 'Fresenius, C. Remigius', '2015-01-01', 15, 'https://www.gutenberg.org/ebooks/47843', 'de', 9765), +(44726, 'Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910\nLocomotive Performance On Grades Of Various Lengths, Paper No. 1172', 'Randolph, B. S. (Beverly S.)', '2006-07-03', 7, 'https://www.gutenberg.org/ebooks/18747', 'en', 15763), +(44727, 'Harper\'s Young People, February 21, 1882\nAn Illustrated Weekly', 'Various', '2017-04-01', 1, 'https://www.gutenberg.org/ebooks/54468', 'en', 479), +(44728, 'The Compleat Angler', 'Walton, Izaak', '1996-10-01', 318, 'https://www.gutenberg.org/ebooks/683', 'en', 15764), +(44729, 'Yougo-Slavia', 'Smits, G.', '2015-01-20', 15, 'https://www.gutenberg.org/ebooks/48037', 'nl', 10592), +(44730, 'Casanova\'s Homecoming', 'Schnitzler, Arthur', '2005-11-01', 65, 'https://www.gutenberg.org/ebooks/9310', 'en', 1907), +(44731, 'The Eighth Year: A Vital Problem of Married Life', 'Gibbs, Philip', '2016-05-01', 29, 'https://www.gutenberg.org/ebooks/51926', 'en', 378), +(44732, 'Forty-one Thieves: A Tale of California', 'Hall, Angelo', '2006-11-02', 20, 'https://www.gutenberg.org/ebooks/19695', 'en', 1335), +(44733, 'Some Reminiscences of old Victoria', 'Fawcett, Edgar', '2008-07-13', 28, 'https://www.gutenberg.org/ebooks/26048', 'en', 15765), +(44734, 'La Puce de Mme Desroches', 'Pasquier, Etienne', '2014-09-28', 22, 'https://www.gutenberg.org/ebooks/46991', 'fr', 14057), +(44735, 'The Yellow Fairy Book', NULL, '2009-03-12', 77, 'https://www.gutenberg.org/ebooks/28314', 'en', 1223), +(44736, 'The Sunny Side of Diplomatic Life, 1875-1912', 'Hegermann-Lindencrone, L. de (Lillie de)', '2004-11-04', 27, 'https://www.gutenberg.org/ebooks/13955', 'en', 4552), +(44737, 'Laugh and Live', 'Fairbanks, Douglas', '2004-07-12', 43, 'https://www.gutenberg.org/ebooks/12887', 'en', 6079), +(44738, 'Fontainbleau; a comic opera. In three acts', 'O\'Keeffe, John', '2011-03-28', 19, 'https://www.gutenberg.org/ebooks/35699', 'en', 1966), +(44739, 'Weymouth New Testament in Modern Speech, Philippians', 'Weymouth, Richard Francis', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8838', 'en', 15031), +(44740, 'Ristin tie: Runoja', 'Kouta, Aarni', '2013-09-01', 6, 'https://www.gutenberg.org/ebooks/43619', 'fi', 1171), +(44741, 'Adrift in New York: Tom and Florence Braving the World', 'Alger, Horatio, Jr.', '2006-06-14', 156, 'https://www.gutenberg.org/ebooks/18581', 'en', 7142), +(44742, 'The Prose Works of Jonathan Swift, D.D. — Volume 09\r\nContributions to The Tatler, The Examiner, The Spectator, and The Intelligencer', 'Swift, Jonathan', '2004-08-13', 42, 'https://www.gutenberg.org/ebooks/13169', 'en', 5416), +(44743, 'The Crowd: A Study of the Popular Mind', 'Le Bon, Gustave', '1996-02-01', 661, 'https://www.gutenberg.org/ebooks/445', 'en', 2323), +(44744, 'Tales of Daring and Danger', 'Henty, G. A. (George Alfred)', '2005-04-01', 82, 'https://www.gutenberg.org/ebooks/7870', 'en', 2809), +(44745, 'The Shield', NULL, '2006-10-03', 43, 'https://www.gutenberg.org/ebooks/19453', 'en', 15766), +(44746, 'Bij ons in Noord-Holland', 'Heijnes, Hendrik Jacobus', '2010-02-09', 9, 'https://www.gutenberg.org/ebooks/31239', 'nl', 15767), +(44747, 'The Bible, King James version, Book 4: Numbers', 'Anonymous', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/8004', 'en', 15645), +(44748, 'A Satyr Against Hypocrites', 'Phillips, John', '2015-06-29', 9, 'https://www.gutenberg.org/ebooks/49323', 'en', 15768), +(44749, 'An Incident on Route 12', 'Schmitz, James H.', '2007-06-21', 71, 'https://www.gutenberg.org/ebooks/21897', 'en', 67), +(44750, 'The Philippine Islands, 1493-1898, Volume 30 of 55, 1640\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', 'Aduarte, Diego', '2012-03-04', 50, 'https://www.gutenberg.org/ebooks/39054', 'en', 1334), +(44751, 'Visits and Sketches at Home and Abroad, Vol. 3 (of 3)\r\nWith Tales and Miscellanies Now First Collected', 'Jameson, Mrs. (Anna)', '2011-07-23', 11, 'https://www.gutenberg.org/ebooks/36820', 'en', 3386), +(44752, 'The Sailor', 'Snaith, J. C. (John Collis)', '2011-12-02', 11, 'https://www.gutenberg.org/ebooks/38186', 'en', 61), +(44753, 'Patty Blossom', 'Wells, Carolyn', '2007-03-30', 25, 'https://www.gutenberg.org/ebooks/20945', 'en', 48), +(44754, 'The Story of a Thousand-Year Pine', 'Mills, Enos A.', '2013-02-02', 6, 'https://www.gutenberg.org/ebooks/41972', 'en', 12036), +(44755, 'Glinda of Oz\r\nIn Which Are Related the Exciting Experiences of Princess Ozma of Oz, and Dorothy, in Their Hazardous Journey to the Home of the Flatheads, and to the Magic Isle of the Skeezers, and How They Were Rescued from Dire Peril by the Sorcery of Glinda the Good', 'Baum, L. Frank (Lyman Frank)', '2012-05-31', 78, 'https://www.gutenberg.org/ebooks/39868', 'en', 246), +(44756, 'The Ballad of Ensign Joy', 'Hornung, E. W. (Ernest William)', '2016-07-11', 11, 'https://www.gutenberg.org/ebooks/52559', 'en', 2100), +(44757, 'The Doctor\'s Secret Journal', 'Morison, Daniel', '2018-08-30', 7, 'https://www.gutenberg.org/ebooks/57817', 'en', 15769), +(44758, 'Voyage en Espagne d\'un Ambassadeur Marocain (1690-1691)', 'Wazir al-Ghassani, Muhammad ibn Abd al-Wahhab', '2018-10-09', 23, 'https://www.gutenberg.org/ebooks/58063', 'fr', 4023), +(44759, 'The Ship of Fools, Volume 1', 'Brant, Sebastian', '2006-12-23', 109, 'https://www.gutenberg.org/ebooks/20179', 'en', 15770), +(44760, 'Graded Memory Selections', 'Various', '2008-05-29', 5, 'https://www.gutenberg.org/ebooks/25639', 'en', 859), +(44761, 'Theological Essays', 'Bradlaugh, Charles', '2012-03-25', 49, 'https://www.gutenberg.org/ebooks/39266', 'en', 1616), +(44762, 'Mein erster Aufenthalt in Marokko und Reise südlich vom Atlas durch die Oasen Draa und Tafilet.', 'Rohlfs, Gerhard', '2005-05-24', 18, 'https://www.gutenberg.org/ebooks/15890', 'de', 6762), +(44763, 'Punch, or the London Charivari, Volume 1, December 25, 1841', 'Various', '2005-02-07', 7, 'https://www.gutenberg.org/ebooks/14942', 'en', 134), +(44764, 'The Message', 'Balzac, Honoré de', '2005-04-03', 24, 'https://www.gutenberg.org/ebooks/1189', 'en', 58), +(44765, 'Sosialismin historia\nUudemman sosiaismin edeltäjät. 1. Platonista uudestikastajiin', 'Kautsky, Karl', '2018-05-27', 10, 'https://www.gutenberg.org/ebooks/57219', 'fi', 15771), +(44766, 'Blue Jackets: The Log of the Teaser', 'Fenn, George Manville', '2007-05-04', 26, 'https://www.gutenberg.org/ebooks/21299', 'en', 15772), +(44767, 'The Southern Literary Messenger, Vol. I., No. 13, September, 1835', 'Various', '2019-04-28', 8, 'https://www.gutenberg.org/ebooks/59383', 'en', 522), +(44768, 'Fables de Florian', 'Florian', '2018-11-08', 20, 'https://www.gutenberg.org/ebooks/58251', 'fr', 15773), +(44769, 'The Bride of the Nile — Complete', 'Ebers, Georg', '2004-11-15', 43, 'https://www.gutenberg.org/ebooks/5529', 'en', 4941), +(44770, 'The Enchanted Castle: A Book of Fairy Tales from Flowerland', NULL, '2009-01-31', 20, 'https://www.gutenberg.org/ebooks/27952', 'en', 1007), +(44771, 'Bees from British Guiana\nBulletin of the AMNH, Vol. XXXVIII, Art. XX, pp. 685-690', 'Cockerell, Theodore D. A. (Theodore Dru Alison)', '2010-12-05', 14, 'https://www.gutenberg.org/ebooks/34579', 'en', 15774), +(44772, 'The Christian Foundation, Or, Scientific and Religious Journal, April, 1880', 'Various', '2009-02-19', 16, 'https://www.gutenberg.org/ebooks/28126', 'en', 1829), +(44773, 'The Furnace of Gold', 'Mighels, Philip Verrill', '2005-08-31', 22, 'https://www.gutenberg.org/ebooks/16629', 'en', 15775), +(44774, 'Little Wolf: A Tale of the Western Frontier', 'Cornelius, Mary Ann Mann', '2010-04-01', 17, 'https://www.gutenberg.org/ebooks/31837', 'en', 7095), +(44775, 'The Bronze Age in Ireland', 'Coffey, George', '2008-10-11', 19, 'https://www.gutenberg.org/ebooks/26880', 'en', 8808), +(44776, 'Two in a Zoo', 'Dunham, Curtis', '2014-07-01', 17, 'https://www.gutenberg.org/ebooks/46159', 'en', 15776), +(44777, 'The Heroes; Or, Greek Fairy Tales for My Children', 'Kingsley, Charles', '1996-10-01', 460, 'https://www.gutenberg.org/ebooks/677', 'en', 2139), +(44778, 'Bimmie Says', 'Van Scyoc, Sydney J.', '2015-12-30', 16, 'https://www.gutenberg.org/ebooks/50800', 'en', 1566), +(44779, 'The World English Bible (WEB): 1 Samuel', 'Anonymous', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8236', 'en', 5806), +(44780, 'Laurel Vane; or, The Girls\' Conspiracy', 'Miller, Alex. McVeigh, Mrs.', '2015-06-02', 28, 'https://www.gutenberg.org/ebooks/49111', 'en', 2004), +(44781, 'Tell Me Another Story: The Book of Story Programs', 'Bailey, Carolyn Sherwin', '2006-10-29', 16, 'https://www.gutenberg.org/ebooks/19661', 'en', 388), +(44782, 'Quelques écrivains français\nFlaubert, Zola, Hugo, Goncourt, Huysmans, etc.', 'Hennequin, Emile', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/12289', 'fr', 629), +(44783, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 689\r\nMarch 10, 1877', 'Various', '2014-09-25', 9, 'https://www.gutenberg.org/ebooks/46965', 'en', 18), +(44784, 'Per Amica Silentia Lunae', 'Yeats, W. B. (William Butler)', '2010-08-03', 73, 'https://www.gutenberg.org/ebooks/33338', 'en', 20), +(44785, 'Jane Cable', 'McCutcheon, George Barr', '2004-06-01', 9, 'https://www.gutenberg.org/ebooks/5971', 'en', 48), +(44786, 'The Spirit of the Age; Or, Contemporary Portraits', 'Hazlitt, William', '2004-02-01', 52, 'https://www.gutenberg.org/ebooks/11068', 'en', 12461), +(44787, 'Dave Dawson on the Russian Front', 'Bowen, Robert Sidney', '2012-12-27', 43, 'https://www.gutenberg.org/ebooks/41718', 'en', 1004), +(44788, 'The Industrial Arts in Spain', 'Riaño, Juan F. (Juan Facundo)', '2012-05-03', 25, 'https://www.gutenberg.org/ebooks/39602', 'en', 15777), +(44789, 'Cavalry\nA Popular Edition of \"Cavalry in War and Peace\"', 'Bernhardi, Friedrich von', '2019-01-06', 10, 'https://www.gutenberg.org/ebooks/58635', 'en', 2000), +(44790, 'Frederick Douglass\nA Biography', 'Chesnutt, Charles W. (Charles Waddell)', '2004-02-01', 61, 'https://www.gutenberg.org/ebooks/10986', 'en', 15778), +(44791, 'L\'Illustration, No. 3654, 8 Mars 1913', 'Various', '2011-10-19', 7, 'https://www.gutenberg.org/ebooks/37798', 'fr', 150), +(44792, 'U.S. Copyright Renewals, 1976 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11854', 'en', 4170), +(44793, 'De dood van Sherlock Holmes — De terugkeer van Sherlock Holmes', 'Doyle, Arthur Conan', '2009-07-22', 47, 'https://www.gutenberg.org/ebooks/29490', 'nl', 430), +(44794, 'Aventures Extraordinaires d\'un Savant Russe; III. Les Planètes Géantes et les Comètes', 'Graffigny, H. de (Henry)', '2007-07-15', 21, 'https://www.gutenberg.org/ebooks/22078', 'fr', 623), +(44795, 'Tres novelas ejemplares y un prólogo', 'Unamuno, Miguel de', '2017-11-08', 40, 'https://www.gutenberg.org/ebooks/55916', 'es', 3284), +(44796, 'Giacomo Puccini', 'Dry, Wakeling', '2013-10-03', 20, 'https://www.gutenberg.org/ebooks/43873', 'en', 15779), +(44797, 'Descripción de la Patagonia y de las Partes Adyacentes de la América Meridional', 'Falkner, Thomas', '2009-04-08', 19, 'https://www.gutenberg.org/ebooks/28542', 'es', 15780), +(44798, 'The Toxins and Venoms and Their Antibodies', 'Pozzi-Escot, M. Emm. (Marius Emmanuel)', '2015-11-14', 7, 'https://www.gutenberg.org/ebooks/50458', 'en', 15781), +(44799, 'Crowded Out! and Other Sketches', 'Harrison, S. Frances (Susie Frances)', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8652', 'en', 2261), +(44800, 'Miss Philly Firkin, The China-Woman', 'Mitford, Mary Russell', '2007-10-02', 14, 'https://www.gutenberg.org/ebooks/22844', 'en', 3305), +(44801, 'Un enfant, t. 3/3', 'Desprez, Ernest', '2015-08-02', 9, 'https://www.gutenberg.org/ebooks/49575', 'fr', 298), +(44802, 'The Vikings of Helgeland: The Prose Dramas Of Henrik Ibsen, Vol. III.', 'Ibsen, Henrik', '2006-09-08', 13, 'https://www.gutenberg.org/ebooks/19205', 'en', 3671), +(44803, 'Mankind in the Making', 'Wells, H. G. (Herbert George)', '2011-01-11', 9, 'https://www.gutenberg.org/ebooks/34921', 'en', 1072), +(44804, 'The Man from Snowy River', 'Paterson, A. B. (Andrew Barton)', '1995-02-01', 166, 'https://www.gutenberg.org/ebooks/213', 'en', 4974), +(44805, 'Jewel Weed', 'Winter, Alice Ames', '2007-12-26', 9, 'https://www.gutenberg.org/ebooks/23996', 'en', 109), +(44806, 'The Angel and the Author, and Others', 'Jerome, Jerome K. (Jerome Klapka)', '2000-10-01', 41, 'https://www.gutenberg.org/ebooks/2368', 'en', 564), +(44807, 'Fair Margaret', 'Haggard, H. Rider (Henry Rider)', '2006-01-01', 64, 'https://www.gutenberg.org/ebooks/9780', 'en', 15782), +(44808, 'The Consumer Viewpoint\r\nCovering Vital Phases of Manufacturing and Selling Household Devices', 'Bentley, Mildred Maddocks', '2005-02-01', 17, 'https://www.gutenberg.org/ebooks/7428', 'en', 15783), +(44809, 'The Story of Tim', NULL, '2009-05-12', 11, 'https://www.gutenberg.org/ebooks/28770', 'en', 10174), +(44810, 'Infant\'s Cabinet of Birds & Beasts', 'Anonymous', '2007-11-07', 5, 'https://www.gutenberg.org/ebooks/23398', 'en', 10590), +(44811, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 16: Depart Switzerland', 'Casanova, Giacomo', '2004-12-11', 12, 'https://www.gutenberg.org/ebooks/2966', 'en', 4391), +(44812, 'My Lattice, and Other Poems', 'Scott, Frederick George', '2017-08-09', 16, 'https://www.gutenberg.org/ebooks/55318', 'en', 1237), +(44813, 'Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad.\nThe Cross-Town Tunnels. Paper No. 1158', 'Mason, Francis', '2006-08-13', 16, 'https://www.gutenberg.org/ebooks/19037', 'en', 4530), +(44814, 'Het Granaatappelhuis', 'Wilde, Oscar', '2017-09-04', 218, 'https://www.gutenberg.org/ebooks/55485', 'nl', NULL), +(44815, 'Cvičení maličkých ve svatém náboženství křesťansko-katolickém', 'Obdržálek, Peregrin', '2005-10-09', 11, 'https://www.gutenberg.org/ebooks/16843', 'cs', 15784), +(44816, 'Original Short Stories — Volume 12', 'Maupassant, Guy de', '2004-10-03', 32, 'https://www.gutenberg.org/ebooks/3088', 'en', 1112), +(44817, 'Marse Henry, Complete\nAn Autobiography', 'Watterson, Henry', '2005-07-01', 19, 'https://www.gutenberg.org/ebooks/8460', 'en', 14673), +(44818, 'The Evolution of Modern Orchestration', 'Coerne, Louis Adolphe', '2015-08-21', 11, 'https://www.gutenberg.org/ebooks/49747', 'en', 15425), +(44819, 'The Stag Cook Book: Written for Men by Men', NULL, '2015-04-13', 114, 'https://www.gutenberg.org/ebooks/48695', 'en', 2092), +(44820, 'Le comte de Monte-Cristo, Tome III', 'Dumas, Alexandre', '2006-03-15', 164, 'https://www.gutenberg.org/ebooks/17991', 'fr', 15785), +(44821, 'Heath\'s Modern Language Series: José', 'Palacio Valdés, Armando', '2009-01-07', 23, 'https://www.gutenberg.org/ebooks/27738', 'es', 2207), +(44822, 'A Collection of Old English Plays, Volume 1', NULL, '2003-12-01', 34, 'https://www.gutenberg.org/ebooks/10388', 'en', 1790), +(44823, 'Coaching Days & Ways', 'Cuming, E. D. (Edward William Dirom)', '2014-02-10', 10, 'https://www.gutenberg.org/ebooks/44864', 'en', 15786), +(44824, 'Metsät ja yhtiöt', 'Kajander, Kalle', '2016-08-26', 7, 'https://www.gutenberg.org/ebooks/52901', 'fi', 15787), +(44825, 'Luthers Glaube: Briefe an einen Freund', 'Huch, Ricarda', '2012-04-12', 8, 'https://www.gutenberg.org/ebooks/39430', 'de', 15788), +(44826, 'Zoological Illustrations, Second Series, Volume 3\r\nor, Original Figures and Descriptions of New, Rare, or Interesting Animals', 'Swainson, William', '2013-10-29', 9, 'https://www.gutenberg.org/ebooks/44058', 'en', 8764), +(44827, 'Trapped in \'Black Russia\': Letters June-November 1915', 'Pierce, Ruth', '2008-04-03', 17, 'https://www.gutenberg.org/ebooks/24981', 'en', 15789), +(44828, 'The Crime Against Europe: A Possible Outcome of the War of 1914', 'Casement, Roger', '2005-01-18', 11, 'https://www.gutenberg.org/ebooks/14728', 'en', 7115), +(44829, 'Clever Hans (The Horse of Mr. Von Osten)\r\nA contribution to experimental animal and human psychology', 'Pfungst, Oskar', '2010-10-11', 40, 'https://www.gutenberg.org/ebooks/33936', 'en', 15790), +(44830, 'Bill Bolton and the Winged Cartwheels', 'Sainsbury, Noel', '2018-12-04', 12, 'https://www.gutenberg.org/ebooks/58407', 'en', 15791), +(44831, 'The Letters of Charles Dickens. Vol. 2, 1857-1870', 'Dickens, Charles', '2008-06-20', 70, 'https://www.gutenberg.org/ebooks/25853', 'en', 15792), +(44832, 'The Red Year: A Story of the Indian Mutiny', 'Tracy, Louis', '2011-06-20', 29, 'https://www.gutenberg.org/ebooks/36478', 'en', 6733), +(44833, 'The Life and Legends of Saint Francis of Assisi', 'Chalippe, Candide', '2004-08-01', 17, 'https://www.gutenberg.org/ebooks/6367', 'en', 4597), +(44834, 'Chats on Old Copper and Brass', 'Burgess, Fred. W. (Frederick William)', '2014-10-04', 18, 'https://www.gutenberg.org/ebooks/47040', 'en', 15793), +(44835, 'Dante: His Times and His Work', 'Butler, Arthur John', '2009-02-04', 14, 'https://www.gutenberg.org/ebooks/27999', 'en', 14460), +(44836, 'A Study of the Textile Art in Its Relation to the Development of Form and Ornament\r\nSixth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1884-\'85, Government Printing Office, Washington, 1888, (pages 189-252)', 'Holmes, William Henry', '2006-02-09', 37, 'https://www.gutenberg.org/ebooks/17730', 'en', 6162), +(44837, 'The Great Diamond Hoax\nand Other Stirring Incidents in the Life of Asbury Harpending', 'Harpending, Asbury', '2015-04-30', 13, 'https://www.gutenberg.org/ebooks/48834', 'en', 10436), +(44838, 'Freaks on the Fells: Three Months\' Rustication', 'Ballantyne, R. M. (Robert Michael)', '2007-11-16', 39, 'https://www.gutenberg.org/ebooks/23505', 'en', 9172), +(44839, 'Mars is My Destination', 'Long, Frank Belknap', '2016-02-04', 33, 'https://www.gutenberg.org/ebooks/51125', 'en', 5065), +(44840, 'The Pan-German Programme\nThe Petition of the Six Associations and the Manifesto of the Intellectuals', NULL, '2014-07-04', 8, 'https://www.gutenberg.org/ebooks/46192', 'en', 3764), +(44841, 'Apollonius of Tyana, the Philosopher-Reformer of the First Century A.D.', 'Mead, G. R. S. (George Robert Stow)', '2011-03-02', 20, 'https://www.gutenberg.org/ebooks/35460', 'en', 15794), +(44842, 'Garthowen\nA Story of a Welsh Homestead', 'Raine, Allen', '2006-07-07', 11, 'https://www.gutenberg.org/ebooks/18778', 'en', 7828), +(44843, 'Punch, or the London Charivari, Volume 100, May 30, 1891', 'Various', '2004-09-07', 15, 'https://www.gutenberg.org/ebooks/13390', 'en', 134), +(44844, 'Kasvikon oppisanoja', 'Lönnrot, Elias', '2017-03-29', 8, 'https://www.gutenberg.org/ebooks/54457', 'fi', 15795), +(44845, 'Development of the Phonograph at Alexander Graham Bell\'s Volta Laboratory\r\nContributions from the Museum of History and Technology, United States National Museum Bulletin 218, Paper 5, (pages 69-79)', 'Newville, Leslie J.', '2009-09-27', 53, 'https://www.gutenberg.org/ebooks/30112', 'en', 15796), +(44846, 'Inorganic Plant Poisons and Stimulants', 'Brenchley, Winifred Elsie', '2015-01-18', 10, 'https://www.gutenberg.org/ebooks/48008', 'en', 15797), +(44847, 'Una corta historia del eBook', 'Lebert, Marie', '2009-08-26', 43, 'https://www.gutenberg.org/ebooks/29803', 'es', 2047), +(44848, 'The Gold-Seekers: A Tale of California', 'Aimard, Gustave', '2013-04-14', 13, 'https://www.gutenberg.org/ebooks/42532', 'en', 211), +(44849, 'John Bull on the Guadalquivir\r\nFrom \"Tales from All Countries\"', 'Trollope, Anthony', '2003-01-01', 19, 'https://www.gutenberg.org/ebooks/3615', 'en', 14521), +(44850, 'Rancho Del Muerto, and Other Stories of Adventure\r\nby Various Authors, from \"Outing\"', 'King, Charles', '2016-05-01', 26, 'https://www.gutenberg.org/ebooks/51919', 'en', 323), +(44851, 'The Continental Monthly, Vol. 3 No 2, February 1863\nDevoted To Literature And National Policy', 'Various', '2008-07-17', 12, 'https://www.gutenberg.org/ebooks/26077', 'en', 162), +(44852, 'Manual of Style Governing Composition and Proof Reading in the Government Printing Office', 'United States. Government Printing Office', '2017-09-20', 5, 'https://www.gutenberg.org/ebooks/55585', 'en', 8841), +(44853, 'Poems by Emily Dickinson, Three Series, Complete', 'Dickinson, Emily', '2004-05-01', 488, 'https://www.gutenberg.org/ebooks/12242', 'en', 178), +(44854, 'Low Tide on Grand Pré: A Book of Lyrics', 'Carman, Bliss', '2018-01-03', 3, 'https://www.gutenberg.org/ebooks/56300', 'en', 1237), +(44855, 'Anthero do Quental, e Ramalho Ortigão', 'Carvalhal, Alvaro do', '2010-06-01', 5, 'https://www.gutenberg.org/ebooks/32645', 'pt', 15798), +(44856, 'The Great Quest\r\nA romance of 1826, wherein are recorded the experiences of Josiah Woods of Topham, and of those others with whom he sailed for Cuba and the Gulf of Guinea', 'Hawes, Charles Boardman', '2012-07-17', 13, 'https://www.gutenberg.org/ebooks/40265', 'en', 15799), +(44857, 'Typhoon', 'Conrad, Joseph', '2006-01-09', 370, 'https://www.gutenberg.org/ebooks/1142', 'en', 323), +(44858, 'Scientific American Supplement No. 822, October 3, 1891', 'Various', '2005-02-09', 24, 'https://www.gutenberg.org/ebooks/14989', 'en', 210), +(44859, 'Sinister Street, vol. 1', 'MacKenzie, Compton', '2010-09-22', 28, 'https://www.gutenberg.org/ebooks/33797', 'en', 1080), +(44860, 'Punch, or the London Charivari, Vol. 146, May 20, 1914', 'Various', '2008-02-29', 12, 'https://www.gutenberg.org/ebooks/24720', 'en', 134), +(44861, 'Rhymes of a Roughneck', 'Cotter, Frank J.', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/10515', 'en', 15800), +(44862, 'Evan Harrington — Volume 4', 'Meredith, George', '2003-09-01', 18, 'https://www.gutenberg.org/ebooks/4430', 'en', 137), +(44863, 'Uncle Sam', 'Matthews, Albert', '2014-05-22', 15, 'https://www.gutenberg.org/ebooks/45717', 'en', 7462), +(44864, 'Life on the Congo', 'Bentley, W. Holman (William Holman)', '2019-04-25', 36, 'https://www.gutenberg.org/ebooks/59348', 'en', 15801), +(44865, 'The Cathedral', 'Huysmans, J.-K. (Joris-Karl)', '2005-02-15', 66, 'https://www.gutenberg.org/ebooks/15067', 'en', 61), +(44866, 'The Practical Distiller\r\nAn Introduction To Making Whiskey, Gin, Brandy, Spirits, &c. &c. of Better Quality, and in Larger Quantities, than Produced by the Present Mode of Distilling, from the Produce of the United States', 'McHarry, Samuel', '2007-04-29', 54, 'https://www.gutenberg.org/ebooks/21252', 'en', 15802), +(44867, 'Ten Tales', 'Coppée, François', '2007-01-15', 12, 'https://www.gutenberg.org/ebooks/20380', 'en', 4), +(44868, 'Sketches in Crude-oil\r\nSome accidents and incidents of the petroleum development in all parts of the globe', 'McLaurin, John J. (John James)', '2016-12-06', 17, 'https://www.gutenberg.org/ebooks/53672', 'en', 15803), +(44869, 'My Lord Duke', 'Hornung, E. W. (Ernest William)', '2011-09-08', 22, 'https://www.gutenberg.org/ebooks/37337', 'en', 15804), +(44870, 'Shapes of Greek Vases', 'Metropolitan Museum of Art (New York, N.Y.)', '2019-07-18', 192, 'https://www.gutenberg.org/ebooks/59946', 'en', 15805), +(44871, 'The Future of English Poetry', 'Gosse, Edmund', '2010-05-22', 6, 'https://www.gutenberg.org/ebooks/32477', 'en', 3973), +(44872, 'The Voice from the Void: The Great Wireless Mystery', 'Le Queux, William', '2012-10-25', 24, 'https://www.gutenberg.org/ebooks/41185', 'en', 167), +(44873, 'Earthwork Slips and Subsidences upon Public Works\nTheir Causes, Prevention, and Reparation', 'Newman, John', '2017-12-05', 2, 'https://www.gutenberg.org/ebooks/56132', 'en', 15806), +(44874, 'Ons Heerlijk Vaderland (deel 2 van 4)\nBoven en beneden den Moerdijk', 'Blink, Hendrik', '2008-02-04', 17, 'https://www.gutenberg.org/ebooks/24512', 'nl', 2236), +(44875, 'A Set of Rogues\r\nNamely Christopher Sutton, John Dawson, the Señor Don Sanchez Del Castillo De Castelaña and Moll Dawson; Their Wicked Conspiracy, and a True Account of Their Travels and Adventures', 'Barrett, Frank', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/10727', 'en', 15241), +(44876, 'Liquid Drops and Globules, Their Formation and Movements\r\nThree lectures delivered to popular audiences', 'Darling, Charles R. (Charles Robert)', '2011-11-05', 43, 'https://www.gutenberg.org/ebooks/37939', 'en', 15807), +(44877, 'The Life of Florence Nightingale, vol. 1 of 2', 'Cook, Edward Tyas, Sir', '2012-07-16', 21, 'https://www.gutenberg.org/ebooks/40057', 'en', 9432), +(44878, 'Autobiography of Andrew Dickson White — Volume 2', 'White, Andrew Dickson', '1998-07-01', 31, 'https://www.gutenberg.org/ebooks/1370', 'en', 15808), +(44879, 'Witchcraft & Second Sight in the Highlands & Islands of Scotland\nTales and Traditions Collected Entirely from Oral Sources', 'Campbell, John Gregorson', '2019-02-15', 45, 'https://www.gutenberg.org/ebooks/58894', 'en', 15809), +(44880, 'Hinduism and Buddhism, An Historical Sketch, Vol. 1', 'Eliot, Charles', '2005-03-04', 104, 'https://www.gutenberg.org/ebooks/15255', 'en', 6243), +(44881, 'Elaine', 'Tennyson, Alfred Tennyson, Baron', '2016-07-17', 22, 'https://www.gutenberg.org/ebooks/52592', 'fr', 5139), +(44882, 'The Congo Rovers: A Story of the Slave Squadron', 'Collingwood, Harry', '2007-04-13', 18, 'https://www.gutenberg.org/ebooks/21060', 'en', 15810), +(44883, '\"The Kingdom of God Is Within You\"\r\nChristianity Not as a Mystic Religion but as a New Theory of Life', 'Tolstoy, Leo, graf', '2003-11-01', 343, 'https://www.gutenberg.org/ebooks/4602', 'en', 1759), +(44884, 'The Betrayal of John Fordham', 'Farjeon, B. L. (Benjamin Leopold)', '2014-04-28', 23, 'https://www.gutenberg.org/ebooks/45525', 'en', 1335), +(44885, 'Hints to Pilgrims', 'Brooks, Charles S. (Charles Stephen)', '2011-08-16', 26, 'https://www.gutenberg.org/ebooks/37105', 'en', 20), +(44886, 'La coucaratcha (I/III)', 'Sue, Eugène', '2012-02-24', 12, 'https://www.gutenberg.org/ebooks/38971', 'fr', 687), +(44887, 'Marjorie Dean\'s Romance', 'Chase, Josephine', '2016-11-03', 21, 'https://www.gutenberg.org/ebooks/53440', 'en', 3220), +(44888, 'Onnen orja', 'Leino, Eino', '2004-12-20', 25, 'https://www.gutenberg.org/ebooks/14387', 'fi', 61), +(44889, 'The Works of Lord Byron: Letters and Journals. Vol. 2', 'Byron, George Gordon Byron, Baron', '2006-02-01', 92, 'https://www.gutenberg.org/ebooks/9921', 'en', 10667), +(44890, 'Pen Drawing: An Illustrated Treatise', 'Maginnis, Charles Donagh', '2006-01-12', 188, 'https://www.gutenberg.org/ebooks/17502', 'en', 15811), +(44891, 'The Cat in Grandfather\'s House', 'Grabo, Carl Henry', '2007-12-04', 26, 'https://www.gutenberg.org/ebooks/23737', 'en', 2203), +(44892, 'Splores of a Halloween, Twenty Years Ago', 'Dick, Alexander', '2010-12-29', 20, 'https://www.gutenberg.org/ebooks/34780', 'en', 15812), +(44893, 'Athens: Its Rise and Fall, Book V', 'Lytton, Edward Bulwer Lytton, Baron', '2006-10-20', 8, 'https://www.gutenberg.org/ebooks/6155', 'en', 6138), +(44894, 'The Potter and the Clay: A Romance of Today', 'Peterson, Maud Howard', '2014-11-02', 16, 'https://www.gutenberg.org/ebooks/47272', 'en', 5101), +(44895, 'Rick Dale, A Story of the Northwest Coast', 'Munroe, Kirk', '2011-03-22', 16, 'https://www.gutenberg.org/ebooks/35652', 'en', 246), +(44896, 'Gaut Gurley; Or, the Trappers of Umbagog: A Tale of Border Life', 'Thompson, Daniel P. (Daniel Pierce)', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/7087', 'en', 7941), +(44897, 'The Fight Against Lynching\nAnti-Lynching Work of the National Association for the Advancement of Colored People for the Year Nineteen Eighteen', 'National Association for the Advancement of Colored People', '2016-02-28', 10, 'https://www.gutenberg.org/ebooks/51317', 'en', 4609), +(44898, 'Trail Tales', 'Gillilan, James David', '2009-10-24', 10, 'https://www.gutenberg.org/ebooks/30320', 'en', 15813), +(44899, 'The Law of Psychic Phenomena\r\nA working hypothesis for the systematic study of hypnotism, spiritism, mental therapeutics, etc.', 'Hudson, Thomson Jay', '2017-05-05', 130, 'https://www.gutenberg.org/ebooks/54665', 'en', 6363), +(44900, 'The Orations of Lysias', 'Lysias', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/6969', 'en', 4139), +(44901, 'De wonderstraal; gevolgd door Tien uren op jacht', 'Verne, Jules', '2008-12-03', 15, 'https://www.gutenberg.org/ebooks/27397', 'nl', 15814), +(44902, 'The History of the Peloponnesian War', 'Thucydides', '2008-08-01', 25, 'https://www.gutenberg.org/ebooks/26245', 'en', 5990), +(44903, 'Banzai! by Parabellum', 'Grautoff, Ferdinand Heinrich', '2006-10-09', 12, 'https://www.gutenberg.org/ebooks/19498', 'en', 26), +(44904, 'Een Jolig Troepje', 'Leopold, Marie', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/12070', 'nl', 511), +(44905, 'Πλουτάρχου Βίοι Παράλληλοι - Τόμος 3\r\nΑλκιβιάδης - Κοριολάνος - Τιμολέων - Αιμίλιος Παύλος - Πελοπίδας - Μάρκελλος', 'Plutarch', '2013-05-12', 25, 'https://www.gutenberg.org/ebooks/42700', 'el', 2310), +(44906, 'Kilo : being the love story of Eliph\' Hewlitt, book agent', 'Butler, Ellis Parker', '2002-09-01', 26, 'https://www.gutenberg.org/ebooks/3427', 'en', 15815), +(44907, 'Jakob von Gunten: Ein Tagebuch', 'Walser, Robert', '2008-01-05', 71, 'https://www.gutenberg.org/ebooks/24176', 'de', 1779), +(44908, 'The Works of Charles and Mary Lamb — Volume 2\r\nElia and The Last Essays of Elia', 'Lamb, Charles', '2003-11-01', 130, 'https://www.gutenberg.org/ebooks/10343', 'en', 472), +(44909, 'The Golden South: Memories of Australian Home Life from 1843 to 1888', 'Lambert, Kathleen', '2018-07-11', 13, 'https://www.gutenberg.org/ebooks/57484', 'en', 15816), +(44910, 'Miss Hildreth: A Novel, Volume 3', 'Stevens, Augusta de Grasse', '2012-08-07', 10, 'https://www.gutenberg.org/ebooks/40433', 'en', 61), +(44911, 'Another Study of Woman', 'Balzac, Honoré de', '1999-04-01', 31, 'https://www.gutenberg.org/ebooks/1714', 'en', 58), +(44912, 'Poems', 'Dearmer, Geoffrey', '2016-12-27', 7, 'https://www.gutenberg.org/ebooks/53818', 'en', 2100), +(44913, 'The Poems of Philip Freneau, Poet of the American Revolution. Volume 2 (of 3)', 'Freneau, Philip Morin', '2012-01-08', 29, 'https://www.gutenberg.org/ebooks/38529', 'en', 178), +(44914, 'The Last Campaign of the Twenty-Second Regiment, N.G., S.N.Y. June and July, 1863', 'Wingate, George Wood', '2010-04-16', 13, 'https://www.gutenberg.org/ebooks/32013', 'en', 15817), +(44915, 'Peter Poodle, Toy Maker to the King', 'Bradley, Will', '2018-02-12', 8, 'https://www.gutenberg.org/ebooks/56556', 'en', 15818), +(44916, 'Камено доба', 'Zujovic, Jovan', '2004-02-01', 49, 'https://www.gutenberg.org/ebooks/11291', 'sr', 15819), +(44917, 'Tokio - Berlin: Von der japanischen zur deutschen Kaiserstadt', 'Omura, Jintaro', '2013-11-02', 21, 'https://www.gutenberg.org/ebooks/44093', 'de', 1408), +(44918, '\"That\'s me all over, Mable\"', 'Streeter, Edward', '2011-09-29', 14, 'https://www.gutenberg.org/ebooks/37561', 'en', 5749), +(44919, 'A Gallant of Lorraine; vol. 2 of 2\r\nFrançois, Seigneur de Bassompierre, Marquis d\'Haronel, Maréchal de France, 1579-1646', 'Williams, H. Noel (Hugh Noel)', '2016-09-10', 6, 'https://www.gutenberg.org/ebooks/53024', 'en', 15820), +(44920, 'The Great Round World and What Is Going On In It, Vol. 1, No. 31, June 10, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-16', 10, 'https://www.gutenberg.org/ebooks/15631', 'en', 1), +(44921, 'From Powder Monkey to Admiral: A Story of Naval Adventure', 'Kingston, William Henry Giles', '2007-05-09', 32, 'https://www.gutenberg.org/ebooks/21404', 'en', 3532), +(44922, 'A Woman\'s Way Through Unknown Labrador', 'Hubbard, Mina', '2003-07-01', 18, 'https://www.gutenberg.org/ebooks/4266', 'en', 1394), +(44923, 'A politica intercolonial e internacional e o tratado de Lourenço Marques\nAdditamento á influencia europea na Africa', 'Testa, Carlos', '2008-06-25', 9, 'https://www.gutenberg.org/ebooks/25898', 'pt', 15821), +(44924, 'Pirates\' Hope', 'Lynde, Francis', '2014-03-15', 23, 'https://www.gutenberg.org/ebooks/45141', 'en', 759), +(44925, 'Encyclopaedia Britannica, 11th Edition, \"English History\"\r\nVolume 9, Slice 5', 'Various', '2011-02-10', 31, 'https://www.gutenberg.org/ebooks/35236', 'en', 1081), +(44926, 'Punch, or the London Charivari, Vol. 147, December 30, 1914', 'Various', '2009-08-11', 20, 'https://www.gutenberg.org/ebooks/29669', 'en', 134), +(44927, 'The Facts About Shakespeare', 'Neilson, William Allan', '2007-08-08', 30, 'https://www.gutenberg.org/ebooks/22281', 'en', 1735), +(44928, 'Scent Makes a Difference', 'Stamers, James', '2016-04-17', 21, 'https://www.gutenberg.org/ebooks/51773', 'en', 7142), +(44929, 'A Life of St. John for the Young', 'Weed, George Ludington', '2005-11-27', 50, 'https://www.gutenberg.org/ebooks/17166', 'en', 15822), +(44930, 'A Horse Book', 'Tourtel, Mary', '2007-11-06', 11, 'https://www.gutenberg.org/ebooks/23353', 'en', 15823), +(44931, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nSouth Carolina Narratives, Part 1', 'United States. Work Projects Administration', '2006-07-26', 27, 'https://www.gutenberg.org/ebooks/18912', 'en', 15824), +(44932, 'All Four Gospels for Readers', NULL, '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6531', 'en', 6631), +(44933, 'The Children\'s Book of Gardening', 'Sidgwick, Alfred, Mrs.', '2014-12-10', 31, 'https://www.gutenberg.org/ebooks/47616', 'en', 15825), +(44934, 'The Story of Madras', 'Barlow, Glyn', '2008-09-14', 42, 'https://www.gutenberg.org/ebooks/26621', 'en', 15826), +(44935, 'The Inferno', 'Barbusse, Henri', '2004-05-01', 83, 'https://www.gutenberg.org/ebooks/12414', 'en', 15827), +(44936, 'Faux\'s Memorable Days in America, 1819-20; and Welby\'s Visit to North America, 1819-20, part 2 (1820)', 'Welby, Adlard', '2013-03-18', 12, 'https://www.gutenberg.org/ebooks/42364', 'en', 1110), +(44937, 'The Quaker Colonies: A Chronicle of the Proprietors of the Delaware', 'Fisher, Sydney George', '2002-01-01', 38, 'https://www.gutenberg.org/ebooks/3043', 'en', 15828), +(44938, 'Auguste Comte et Herbert Spencer\nContribution à l\'histoire des idées philosophiques au XIXe siècle', 'Roberty, E. de (Eugène)', '2005-10-16', 27, 'https://www.gutenberg.org/ebooks/16888', 'fr', 4788), +(44939, 'Morte de Yaginadatta\nEpisodio do poema epico - O Ramayana', 'Figueiredo, Cândido de', '2010-03-18', 13, 'https://www.gutenberg.org/ebooks/31696', 'pt', 2630), +(44940, 'Boy Scouts in Mexico; Or, On Guard with Uncle Sam', 'Ralphson, G. Harvey (George Harvey)', '2000-05-01', 27, 'https://www.gutenberg.org/ebooks/2191', 'en', 2994), +(44941, 'Songs of Labor and Reform\r\nPart 5 From Volume III of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 6, 'https://www.gutenberg.org/ebooks/9579', 'en', 8), +(44942, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 05', 'Stevenson, Robert Louis', '2009-12-23', 20, 'https://www.gutenberg.org/ebooks/30744', 'en', 232), +(44943, 'William Wilberforce, der Sklavenfreund\nEin Lebensbild, für die deutsche Jugend und das deutsche Volk gezeichnet', 'Oertel, Hugo', '2017-02-19', 12, 'https://www.gutenberg.org/ebooks/54201', 'de', 1644), +(44944, 'The Principles of Ornament', 'Ward, James', '2019-08-01', 618, 'https://www.gutenberg.org/ebooks/60034', 'en', 6162), +(44945, 'Lucrezia Floriani', 'Sand, George', '2005-07-13', 35, 'https://www.gutenberg.org/ebooks/16286', 'fr', 109), +(44946, 'Louise Imogen Guiney', 'Brown, Alice', '2016-03-24', 10, 'https://www.gutenberg.org/ebooks/51541', 'en', 15829), +(44947, 'Abbé Aubain and Mosaics', 'Mérimée, Prosper', '2011-01-19', 36, 'https://www.gutenberg.org/ebooks/35004', 'en', 58), +(44948, 'Favorite Dishes : a Columbian Autograph Souvenir Cookery Book', 'Shuman, Carrie V.', '2004-10-01', 35, 'https://www.gutenberg.org/ebooks/6703', 'en', 103), +(44949, 'The Shakespearean Myth: William Shakespeare and Circumstantial Evidence', 'Morgan, Appleton', '2014-11-22', 14, 'https://www.gutenberg.org/ebooks/47424', 'en', 2784), +(44950, 'The Black Eagle; or, Ticonderoga', 'James, G. P. R. (George Payne Rainsford)', '2015-11-19', 9, 'https://www.gutenberg.org/ebooks/50493', 'en', 15830), +(44951, 'Cave Regions of the Ozarks and Black Hills', 'Owen, Luella Agnes', '2005-12-19', 30, 'https://www.gutenberg.org/ebooks/17354', 'en', 15831), +(44952, 'Frances Kane\'s Fortune', 'Meade, L. T.', '2009-04-22', 15, 'https://www.gutenberg.org/ebooks/28589', 'en', 179), +(44953, 'Sodom and Gomorrah, Texas', 'Lafferty, R. A.', '2007-10-24', 90, 'https://www.gutenberg.org/ebooks/23161', 'en', 15832), +(44954, 'The Nursery, July 1881, Vol. XXX\nA Monthly Magazine for Youngest Readers', 'Various', '2013-02-22', 44, 'https://www.gutenberg.org/ebooks/42156', 'en', 4641), +(44955, 'The Complete Works of Artemus Ward — Part 1: Essays, Sketches, and Letters', 'Ward, Artemus', '2002-06-01', 15, 'https://www.gutenberg.org/ebooks/3271', 'en', 190), +(44956, 'Woman and Her Saviour in Persia\r\nBy a Returned Missionary', 'Laurie, Thomas', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8699', 'en', 13813), +(44957, 'Selections from Early Middle English, 1130-1250. Part 1: Texts', NULL, '2008-08-24', 5, 'https://www.gutenberg.org/ebooks/26413', 'en', 3362), +(44958, 'The Earlier Work of Titian', 'Phillips, Claude, Sir', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12626', 'en', 4742), +(44959, 'Five Natural Hybrid Combinations in Minnows (Cyprinidae)', 'Minckley, W. L.', '2011-04-12', 10, 'https://www.gutenberg.org/ebooks/35838', 'en', 15833), +(44960, 'When She Came Home from College', 'Wilson, Jean Bingham', '2017-01-20', 23, 'https://www.gutenberg.org/ebooks/54033', 'en', 11166), +(44961, 'Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves\nTexas Narratives, Part 1', 'United States. Work Projects Administration', '2009-12-02', 56, 'https://www.gutenberg.org/ebooks/30576', 'en', 15834), +(44962, 'A Widow\'s Tale, and Other Stories', 'Oliphant, Mrs. (Margaret)', '2013-07-03', 70, 'https://www.gutenberg.org/ebooks/43084', 'en', 179), +(44963, 'Der Fall Otto Weininger: Eine psychiatrische Studie', 'Probst, Ferdinand', '2012-08-28', 23, 'https://www.gutenberg.org/ebooks/40601', 'de', 15835), +(44964, 'Twelfth Night; Or, What You Will', 'Shakespeare, William', '1998-11-01', 219, 'https://www.gutenberg.org/ebooks/1526', 'en', 10802), +(44965, 'O Descobrimento do Brazil\r\nPrioridade dos Portugueses no Descobrimento da America', 'Redondo, Manuel Ferreira Garcia', '2008-01-17', 14, 'https://www.gutenberg.org/ebooks/24344', 'pt', 15836), +(44966, 'Santa Lucia', NULL, '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10171', 'en', 15837), +(44967, 'The House of Orchids, and Other Poems', 'Sterling, George', '2018-03-17', 13, 'https://www.gutenberg.org/ebooks/56764', 'en', 994), +(44968, 'History of the United Netherlands, 1595-96', 'Motley, John Lothrop', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/4868', 'en', 3372), +(44969, 'Dominica\nDe Aarde en haar Volken, 1904', 'Kol, H. van', '2008-05-02', 4, 'https://www.gutenberg.org/ebooks/25296', 'nl', 15838), +(44970, 'The Case and Exceptions: Stories of Counsel and Clients', 'Hill, Frederick Trevor', '2010-05-02', 36, 'https://www.gutenberg.org/ebooks/32221', 'en', 9562), +(44971, 'An Essay on the Incubus, or Night-mare', 'Bond, John, M.D.', '2016-10-05', 19, 'https://www.gutenberg.org/ebooks/53216', 'en', 15839), +(44972, 'Notes on the Mammals of Gogebic and Ontonagon Counties, Michigan, 1920\r\nOccasional Papers of the Museum of Zoology, Number 109', 'Dice, Lee R. (Lee Raymond)', '2011-10-13', 23, 'https://www.gutenberg.org/ebooks/37753', 'en', 15840), +(44973, 'Kalevala : the Epic Poem of Finland — Complete', NULL, '2004-02-01', 399, 'https://www.gutenberg.org/ebooks/5186', 'en', 4087), +(44974, 'An Answer to a Question that Nobody thinks of, viz., But what if the Queen should Die?', 'Defoe, Daniel', '2011-07-09', 14, 'https://www.gutenberg.org/ebooks/36681', 'en', 15841), +(44975, 'A Lady\'s Visit to the Gold Diggings of Australia in 1852-53', 'Clacy, Charles, Mrs.', '2003-05-01', 22, 'https://www.gutenberg.org/ebooks/4054', 'en', 14937), +(44976, 'Edda: taruopillinen alkuosa; Gylfin harhanäky (Gylfaginning)', 'Snorri Sturluson', '2014-04-13', 20, 'https://www.gutenberg.org/ebooks/45373', 'fi', 6418), +(44977, 'Wandelingen door België\r\nDe Aarde en haar Volken, 1886', 'Anonymous', '2005-03-18', 10, 'https://www.gutenberg.org/ebooks/15403', 'nl', 2427), +(44978, 'Bluff Crag; or, A Good Word Costs Nothing', 'Cupples, George, Mrs.', '2007-05-28', 20, 'https://www.gutenberg.org/ebooks/21636', 'en', 2788), +(44979, 'Rollo in London', 'Abbott, Jacob', '2008-01-06', 39, 'https://www.gutenberg.org/ebooks/24182', 'en', 8225), +(44980, 'Captured by Apes; or, How Philip Garland Became King of Apeland', 'Prentice, Harry', '2018-07-09', 11, 'https://www.gutenberg.org/ebooks/57470', 'en', 1889), +(44981, 'Harper\'s Round Table, September 10, 1895', 'Various', '2010-07-11', 7, 'https://www.gutenberg.org/ebooks/33135', 'en', 668), +(44982, 'Wheat and Huckleberries; Or, Dr. Northmore\'s Daughters', 'Vaile, Charlotte M. (Charlotte Marion)', '2012-11-30', 26, 'https://www.gutenberg.org/ebooks/41515', 'en', 1123), +(44983, 'Notes and Queries, Number 02, November 10, 1849', 'Various', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11265', 'en', 105), +(44984, 'A Study of American Beers and Ales', 'Tolman, L. M.', '2008-04-11', 27, 'https://www.gutenberg.org/ebooks/25050', 'en', 15842), +(44985, 'Grace Harlowe\'s Overland Riders in the High Sierras', 'Chase, Josephine', '2014-06-15', 15, 'https://www.gutenberg.org/ebooks/45989', 'en', 15843), +(44986, 'La Vettura Automobile: sue parti - suo funzionamento', 'De Maria, Alamanno', '2013-10-29', 20, 'https://www.gutenberg.org/ebooks/44067', 'it', 15844), +(44987, 'Further Chronicles of Avonlea', 'Montgomery, L. M. (Lucy Maud)', '2004-03-01', 189, 'https://www.gutenberg.org/ebooks/5340', 'en', 1526); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(44988, 'Ecological Studies of the Timber Wolf in Northeastern Minnesota', 'Karns, P. D.', '2011-10-02', 17, 'https://www.gutenberg.org/ebooks/37595', 'en', 15845), +(44989, 'The Story of the Mind', 'Baldwin, James Mark', '2007-02-06', 44, 'https://www.gutenberg.org/ebooks/20522', 'en', 1151), +(44990, 'Twelve Men', 'Dreiser, Theodore', '2005-01-17', 53, 'https://www.gutenberg.org/ebooks/14717', 'en', 12635), +(44991, 'The School by the Sea', 'Brazil, Angela', '2010-10-20', 39, 'https://www.gutenberg.org/ebooks/33909', 'en', 167), +(44992, 'Kyläkertomuksia I', 'Linna, Roopert', '2018-12-09', 7, 'https://www.gutenberg.org/ebooks/58438', 'fi', 665), +(44993, 'Across the Salt Seas: A Romance of the War of Succession', 'Bloundelle-Burton, John', '2016-05-19', 10, 'https://www.gutenberg.org/ebooks/52102', 'en', 15846), +(44994, 'Copyright Basics', 'Library of Congress. Copyright Office', '2003-07-01', 11, 'https://www.gutenberg.org/ebooks/4292', 'en', 15847), +(44995, 'La femme auteur; ou, les inconvéniens de la célébrité, tome II', NULL, '2011-06-17', 12, 'https://www.gutenberg.org/ebooks/36447', 'fr', 61), +(44996, 'Naval Occasions, and Some Traits of the Sailor-man', 'Bartimeus', '2014-08-29', 9, 'https://www.gutenberg.org/ebooks/46730', 'en', 252), +(44997, 'The Resources of Quinola: A Comedy in a Prologue and Five Acts', 'Balzac, Honoré de', '2005-07-18', 25, 'https://www.gutenberg.org/ebooks/7417', 'en', 3521), +(44998, 'Ethel Morton\'s Holidays', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2006-11-17', 11, 'https://www.gutenberg.org/ebooks/19834', 'en', 6936), +(44999, 'VC — A Chronicle of Castle Barfield and of the Crimea', 'Murray, David Christie', '2007-08-08', 23, 'https://www.gutenberg.org/ebooks/22275', 'en', 61), +(45000, 'Champavert: contes immoraux', 'Borel, Pétrus', '2016-04-18', 28, 'https://www.gutenberg.org/ebooks/51787', 'fr', 580), +(45001, 'Kenny', 'Dalrymple, Leona', '2005-06-11', 20, 'https://www.gutenberg.org/ebooks/16040', 'en', 297), +(45002, 'The Raven', 'Poe, Edgar Allan', '2005-11-30', 566, 'https://www.gutenberg.org/ebooks/17192', 'en', 2193), +(45003, 'Yan', 'Rameau, Jean', '2015-12-09', 8, 'https://www.gutenberg.org/ebooks/50655', 'fr', 298), +(45004, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 09: the False Nun', 'Casanova, Giacomo', '2004-12-10', 18, 'https://www.gutenberg.org/ebooks/2959', 'en', 4391), +(45005, 'Paashi Leubelfing', 'Meyer, Conrad Ferdinand', '2010-11-14', 4, 'https://www.gutenberg.org/ebooks/34310', 'fi', 2002), +(45006, 'The Tarn of Eternity', 'Tymon, Frank', '1997-02-01', 6, 'https://www.gutenberg.org/ebooks/822', 'en', 1028), +(45007, 'Over the Border: A Romance', 'Barr, Robert', '2017-08-10', 18, 'https://www.gutenberg.org/ebooks/55327', 'en', 10612), +(45008, 'Mémoires de Joseph Fouché, Duc d\'Otrante, Ministre de la Police Générale\nTome II', 'Fouché, Joseph, duc d\'Otrante', '2006-08-08', 29, 'https://www.gutenberg.org/ebooks/19008', 'fr', 15848), +(45009, 'The Profligate: A Play in Four Acts', 'Pinero, Arthur Wing', '2015-08-24', 22, 'https://www.gutenberg.org/ebooks/49778', 'en', 3523), +(45010, 'The Myths of the North American Indians', 'Spence, Lewis', '2013-03-22', 151, 'https://www.gutenberg.org/ebooks/42390', 'en', 1749), +(45011, 'Their Son; The Necklace', 'Zamacois, Eduardo', '2010-03-16', 13, 'https://www.gutenberg.org/ebooks/31662', 'en', 480), +(45012, 'The Lifted Veil', 'Eliot, George', '2000-05-01', 135, 'https://www.gutenberg.org/ebooks/2165', 'en', 114), +(45013, 'A Madeira Party', 'Mitchell, S. Weir (Silas Weir)', '2013-07-17', 11, 'https://www.gutenberg.org/ebooks/43242', 'en', 15849), +(45014, 'Kindred of the Dust', 'Kyne, Peter B. (Peter Bernard)', '2004-09-26', 23, 'https://www.gutenberg.org/ebooks/13532', 'en', 15850), +(45015, 'Saint Athanasius, the Father of Orthodoxy', 'Forbes, F. A. (Frances Alice)', '2009-01-05', 49, 'https://www.gutenberg.org/ebooks/27707', 'en', 15851), +(45016, 'The Love Affairs of an Old Maid', 'Bell, Lilian', '2007-07-11', 23, 'https://www.gutenberg.org/ebooks/22047', 'en', 770), +(45017, 'The Continental Monthly, Vol. 2, No. 1, July, 1862', 'Various', '2005-07-12', 18, 'https://www.gutenberg.org/ebooks/16272', 'en', 558), +(45018, 'Valikoima Frans Mikael Franzénin runoelmia', 'Franzén, Frans Michael', '2014-08-04', 16, 'https://www.gutenberg.org/ebooks/46502', 'fi', 8), +(45019, 'Devereux — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7625', 'en', 4464), +(45020, 'De complete werken van Joost van Vondel. Hymnus of Lofzang van de Kristelijke Ridder, [etc.]', 'Vondel, Joost van den', '2017-11-10', 10, 'https://www.gutenberg.org/ebooks/55929', 'nl', 2651), +(45021, 'Roman Society from Nero to Marcus Aurelius', 'Dill, Samuel', '2010-10-23', 89, 'https://www.gutenberg.org/ebooks/34122', 'en', 5745), +(45022, 'Hauska asunto: Huvinäytelmä yhdessä näytöksessä', 'Ranta, Wilho', '2015-11-17', 13, 'https://www.gutenberg.org/ebooks/50467', 'fi', 433), +(45023, 'Wikkey\nA Scrap', 'Vaders, Henrietta', '2007-10-25', 13, 'https://www.gutenberg.org/ebooks/23195', 'en', 7992), +(45024, 'Παραμύθια Δανικά, εκ των του Ανδερσεν', 'Vikelas, Demetrios', '2010-03-10', 39, 'https://www.gutenberg.org/ebooks/31450', 'el', 1007), +(45025, 'The Deerslayer', 'Cooper, James Fenimore', '2002-06-01', 237, 'https://www.gutenberg.org/ebooks/3285', 'en', 3237), +(45026, 'The City of Pleasure: A Fantasia on Modern Themes', 'Bennett, Arnold', '2017-07-15', 14, 'https://www.gutenberg.org/ebooks/55115', 'en', 230), +(45027, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nArkansas Narratives, Part 2', 'United States. Work Projects Administration', '2004-10-11', 50, 'https://www.gutenberg.org/ebooks/13700', 'en', 10387), +(45028, 'Despedidas: 1895-1899', 'Nobre, António Pereira', '2008-12-15', 9, 'https://www.gutenberg.org/ebooks/27535', 'pt', 1638), +(45029, 'Atar-Gull, Un Corsaire, Le Parisien en Mer, Voyages et Aventures sur Mer de Narcisse Gelin.\nromans maritimes.', 'Sue, Eugène', '2009-12-02', 13, 'https://www.gutenberg.org/ebooks/30582', 'fr', 15708), +(45030, 'Great Jehoshaphat and Gully Dirt!', 'Smith, Jewell Ellen', '2000-10-01', 13, 'https://www.gutenberg.org/ebooks/2357', 'en', 1516), +(45031, 'Teodor Dalnoki', 'Jókai, Mór', '2015-03-15', 6, 'https://www.gutenberg.org/ebooks/48498', 'fi', 2326), +(45032, 'Archæology and the Bible', 'Barton, George A. (George Aaron)', '2013-07-01', 38, 'https://www.gutenberg.org/ebooks/43070', 'en', 673), +(45033, '友情', 'Mushanokoji, Saneatsu', '2010-07-31', 49, 'https://www.gutenberg.org/ebooks/33307', 'ja', 61), +(45034, 'The Black Bear', 'Wright, William H. (William Henry)', '2018-08-06', 10, 'https://www.gutenberg.org/ebooks/57642', 'en', 15852), +(45035, 'Minstrel Potpourri', 'Edison Minstrels', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10185', 'en', 15853), +(45036, 'The Wife of his Youth and Other Stories of the Color Line, and Selected Essays', 'Chesnutt, Charles W. (Charles Waddell)', '2004-02-01', 58, 'https://www.gutenberg.org/ebooks/11057', 'en', 12104), +(45037, 'The Travels of Fuzz and Buzz', 'Mockler, Geraldine', '2018-03-19', 7, 'https://www.gutenberg.org/ebooks/56790', 'en', 31), +(45038, '日知錄', 'Gu, Yanwu', '2008-04-30', 29, 'https://www.gutenberg.org/ebooks/25262', 'zh', 4635), +(45039, 'The Traditional Games of England, Scotland, and Ireland (Vol 1 of 2)\r\nWith Tunes, Singing-Rhymes and Methods of Playing etc.', 'Gomme, Alice Bertha', '2012-12-29', 30, 'https://www.gutenberg.org/ebooks/41727', 'en', 15854), +(45040, 'Pluck on the Long Trail; Or, Boy Scouts in the Rockies', 'Sabin, Edwin L. (Edwin Legrand)', '2007-02-28', 26, 'https://www.gutenberg.org/ebooks/20710', 'en', 12109), +(45041, 'Prefaces to Fiction', NULL, '2004-12-30', 16, 'https://www.gutenberg.org/ebooks/14525', 'en', 7648), +(45042, 'Histoires naturelles', 'Renard, Jules', '2013-11-21', 35, 'https://www.gutenberg.org/ebooks/44255', 'fr', 4589), +(45043, 'Aladdin O\'Brien', 'Morris, Gouverneur', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/5172', 'en', 1516), +(45044, 'Scenes and Adventures in the Semi-Alpine Region of the Ozark Mountains of Missouri and Arkansas', 'Schoolcraft, Henry Rowe', '2011-07-09', 25, 'https://www.gutenberg.org/ebooks/36675', 'en', 78), +(45045, 'Morality Without God\nA Lecture Delivered Before the Independent Religious Society', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-04-14', 17, 'https://www.gutenberg.org/ebooks/45387', 'en', 10425), +(45046, 'Soll und Haben, Bd. 1 (2)\nRoman in sechs Büchern', 'Freytag, Gustav', '2016-06-14', 13, 'https://www.gutenberg.org/ebooks/52330', 'de', 138), +(45047, 'The Lives of the Twelve Caesars, Volume 08: Otho', 'Suetonius', '2004-12-13', 17, 'https://www.gutenberg.org/ebooks/6393', 'en', 1037), +(45048, 'Additions to the List of the Birds of Louisiana', 'Lowery, George H., Jr.', '2010-12-02', 16, 'https://www.gutenberg.org/ebooks/34546', 'en', 15855), +(45049, 'Schutz- und Trutzbündnisse in der Natur', 'Bölsche, Wilhelm', '2015-09-18', 22, 'https://www.gutenberg.org/ebooks/50003', 'de', 12957), +(45050, 'My Father, the Cat', 'Slesar, Henry', '2009-02-19', 41, 'https://www.gutenberg.org/ebooks/28119', 'en', 179), +(45051, 'The Employments of Women: A Cyclopædia of Woman\'s Work', 'Penny, Virginia', '2015-09-08', 9, 'https://www.gutenberg.org/ebooks/49912', 'en', 11731), +(45052, 'Poems', 'Thomas, Edward', '2007-08-29', 31, 'https://www.gutenberg.org/ebooks/22423', 'en', 8), +(45053, 'The Nuts of Knowledge: Lyrical Poems Old and New', 'Russell, George William', '2005-08-29', 25, 'https://www.gutenberg.org/ebooks/16616', 'en', 8), +(45054, 'Σαικσπείρου Τραγωδίαι : Μέρος Α\'. Ρωμαίος και Ιουλιέτα', 'Shakespeare, William', '2010-03-28', 29, 'https://www.gutenberg.org/ebooks/31808', 'el', 1298), +(45055, 'History of the Zulu War', 'Wilmot, Alexander', '2014-07-01', 46, 'https://www.gutenberg.org/ebooks/46166', 'en', 15856), +(45056, 'Fables of La Fontaine — a New Edition, with Notes', 'La Fontaine, Jean de', '2005-01-01', 81, 'https://www.gutenberg.org/ebooks/7241', 'en', 506), +(45057, 'Fine Books', 'Pollard, Alfred W. (Alfred William)', '2011-03-06', 8, 'https://www.gutenberg.org/ebooks/35494', 'en', 3239), +(45058, 'Matthew Arnold\'s Sohrab and Rustum and Other Poems', 'Arnold, Matthew', '2004-09-03', 32, 'https://www.gutenberg.org/ebooks/13364', 'en', 54), +(45059, 'Wild Wales: Its People, Language and Scenery', 'Borrow, George', '1996-09-01', 79, 'https://www.gutenberg.org/ebooks/648', 'en', 11847), +(45060, 'I Bianchi e i Neri: Dramma', 'Guerrazzi, Francesco Domenico', '2015-01-06', 10, 'https://www.gutenberg.org/ebooks/47888', 'it', 4296), +(45061, 'Memoirs and Correspondence of Admiral Lord de Saumarez. Vol II', 'Ross, John, Sir', '2008-11-04', 14, 'https://www.gutenberg.org/ebooks/27151', 'en', 8366), +(45062, 'Romano Lavo-Lil: Word Book of the Romany; Or, English Gypsy Language\r\nWith Specimens of Gypsy Poetry, and an Account of Certain Gypsyries or Places Inhabited by Them, and of Various Things Relating to Gypsy Life in England', 'Borrow, George', '2001-07-01', 44, 'https://www.gutenberg.org/ebooks/2733', 'en', 15857), +(45063, 'Lover or Friend', 'Carey, Rosa Nouchette', '2009-05-22', 21, 'https://www.gutenberg.org/ebooks/28925', 'en', 61), +(45064, 'Rilla of the Lighthouse', 'North, Grace May', '2013-08-07', 9, 'https://www.gutenberg.org/ebooks/43414', 'en', 15858), +(45065, 'By-ways in Book-land: Short Essays on Literary Subjects', 'Adams, W. H. Davenport (William Henry Davenport)', '2010-01-21', 17, 'https://www.gutenberg.org/ebooks/31034', 'en', 1694), +(45066, 'Poems 1817', 'Keats, John', '2005-06-01', 190, 'https://www.gutenberg.org/ebooks/8209', 'en', 532), +(45067, 'Luke Walton', 'Alger, Horatio, Jr.', '2008-07-17', 42, 'https://www.gutenberg.org/ebooks/26083', 'en', 10865), +(45068, 'Whom God Hath Joined: A Question of Marriage', 'Hume, Fergus', '2017-09-17', 19, 'https://www.gutenberg.org/ebooks/55571', 'en', 1463), +(45069, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 398, November 14, 1829', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11433', 'en', 133), +(45070, '三國志', 'Chen, Shou', '2008-05-26', 100, 'https://www.gutenberg.org/ebooks/25606', 'zh', 15859), +(45071, 'Was the Beginning Day of the Maya Month Numbered Zero (or Twenty) or One?', 'Bowditch, Charles P. (Charles Pickering)', '2012-03-25', 10, 'https://www.gutenberg.org/ebooks/39259', 'en', 1608), +(45072, 'Encyclopaedia Britannica, 11th Edition, \"Italy\" to \"Jacobite Church\"\r\nVolume 15, Slice 1', 'Various', '2012-11-10', 32, 'https://www.gutenberg.org/ebooks/41343', 'en', 1081), +(45073, 'Absalons Brønd', 'Bauditz, Sophus', '2012-07-21', 8, 'https://www.gutenberg.org/ebooks/40291', 'da', 6055), +(45074, 'The Call of the Town: A Tale of Literary Life', 'Hammerton, John Alexander, Sir', '2010-09-19', 13, 'https://www.gutenberg.org/ebooks/33763', 'en', 2283), +(45075, 'The Organisation of the Royal Naval Artillery Volunteers Explained', 'Brassey, Thomas Brassey, Earl', '2018-05-28', 2, 'https://www.gutenberg.org/ebooks/57226', 'en', 15860), +(45076, 'Men, Women and Guns', 'McNeile, H. C. (Herman Cyril)', '2011-05-25', 21, 'https://www.gutenberg.org/ebooks/36211', 'en', 579), +(45077, 'Profits from scrap', 'American Bureau of Engineering, Chicago', '2016-08-08', 12, 'https://www.gutenberg.org/ebooks/52754', 'en', 15861), +(45078, 'Phyllis', 'Daviess, Maria Thompson', '2005-02-17', 16, 'https://www.gutenberg.org/ebooks/15093', 'en', 2739), +(45079, 'Capitals\r\nA Primer of Information about Capitalization with some Practical Typographic Hints as to the Use of Capitals', 'Hamilton, Frederick W. (Frederick William)', '2007-01-15', 27, 'https://www.gutenberg.org/ebooks/20374', 'en', 12793), +(45080, 'Punch, or the London Charivari, Volume 100, May 2, 1891', 'Various', '2004-11-24', 4, 'https://www.gutenberg.org/ebooks/14141', 'en', 134), +(45081, 'Melmoth the Wanderer, Vol. 2 (of 4)', 'Maturin, Charles Robert', '2016-12-07', 39, 'https://www.gutenberg.org/ebooks/53686', 'en', 5048), +(45082, 'The Dare Boys with General Greene', 'Cox, Stephen Angus', '2014-01-09', 15, 'https://www.gutenberg.org/ebooks/44631', 'en', 2843), +(45083, 'Arachne — Complete', 'Ebers, Georg', '2004-11-15', 25, 'https://www.gutenberg.org/ebooks/5516', 'en', 803), +(45084, 'Sketches of Church History, from A.D. 33 to the Reformation', 'Robertson, James Craigie', '2010-05-22', 32, 'https://www.gutenberg.org/ebooks/32483', 'en', 4198), +(45085, 'Notes and Queries, Vol. V, Number 128, April 10, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-10-25', 9, 'https://www.gutenberg.org/ebooks/41171', 'en', 105), +(45086, 'The Life of Marie de Medicis, Queen of France, Consort of Henri IV, and Regent of the Kingdom under Louis XIII — Volume 3', 'Pardoe, Miss (Julia)', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11601', 'en', 14507), +(45087, 'Le Tour du Monde; Cuba\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-05-11', 13, 'https://www.gutenberg.org/ebooks/25434', 'fr', 1673), +(45088, 'The American Missionary — Volume 41, No. 7, July, 1887', 'Various', '2018-04-21', 18, 'https://www.gutenberg.org/ebooks/57014', 'en', 395), +(45089, 'Medical Inquiries and Observations, Vol. 2 (of 4)\r\nThe Second Edition, Revised and Enlarged by the Author', 'Rush, Benjamin', '2019-02-26', 7, 'https://www.gutenberg.org/ebooks/58860', 'en', 4490), +(45090, 'Memorandum to the Government of the United States on the Recognition of the Ukrainian People\'s Republic', 'Bachynskyi, IUliian', '2010-08-27', 16, 'https://www.gutenberg.org/ebooks/33551', 'en', 15862), +(45091, 'The Ayrshire Legatees; Or, The Pringle Family', 'Galt, John', '1998-07-01', 16, 'https://www.gutenberg.org/ebooks/1384', 'en', 1922), +(45092, 'Marmaduke', 'Steel, Flora Annie Webster', '2012-05-29', 12, 'https://www.gutenberg.org/ebooks/39857', 'en', 1380), +(45093, 'The Diplomatic Correspondence of the American Revolution, Vol. 02', NULL, '2016-07-12', 24, 'https://www.gutenberg.org/ebooks/52566', 'en', 453), +(45094, 'The Girl in the Golden Atom', 'Cummings, Ray', '2007-04-15', 73, 'https://www.gutenberg.org/ebooks/21094', 'en', 4912), +(45095, 'E. P. Roe: Reminiscences of his Life', 'Roe, Mary A. (Mary Abigail)', '2011-05-03', 9, 'https://www.gutenberg.org/ebooks/36023', 'en', 15863), +(45096, 'Le roman de la rose - Tome III', 'Guillaume, de Lorris, active 1230', '2013-12-10', 28, 'https://www.gutenberg.org/ebooks/44403', 'fr', 1338), +(45097, 'A Book of Operas: Their Histories, Their Plots, and Their Music', 'Krehbiel, Henry Edward', '2004-05-01', 50, 'https://www.gutenberg.org/ebooks/5724', 'en', 5808), +(45098, 'Cosas de España; tomo 1\n(El país de lo imprevisto)', 'Ford, Richard', '2018-09-01', 26, 'https://www.gutenberg.org/ebooks/57828', 'es', 1514), +(45099, 'Engineering Bulletin No 1: Boiler and Furnace Testing', 'Strohm, Rufus T. (Rufus Tracy)', '2006-12-20', 17, 'https://www.gutenberg.org/ebooks/20146', 'en', 15864), +(45100, 'A Noble Life', 'Craik, Dinah Maria Mulock', '2004-12-17', 6, 'https://www.gutenberg.org/ebooks/14373', 'en', 401), +(45101, 'My Lady Rotha: A Romance', 'Weyman, Stanley John', '2012-02-26', 71, 'https://www.gutenberg.org/ebooks/38985', 'en', 5126), +(45102, 'The Romance of Modern Sieges\r\nDescribing the personal adventures, resource and daring of besiegers and beseiged in all parts of the world', 'Gilliat, Edward', '2015-10-16', 27, 'https://www.gutenberg.org/ebooks/50231', 'en', 8864), +(45103, 'Paper-Cutting Machines\r\nA Primer of Information about Paper and Card Trimmers, Hand-Lever Cutters, Power Cutters and Other Automatic Machines for Cutting Paper', 'Gray, Niel, Jr.', '2010-12-28', 30, 'https://www.gutenberg.org/ebooks/34774', 'en', 15865), +(45104, 'Kevättä ja kesää: Valikoima kirjailijan suorasanaisesta tuotannosta', 'Lehtonen, Joel', '2014-11-04', 21, 'https://www.gutenberg.org/ebooks/47286', 'fi', 6994), +(45105, 'The English Village Community\nExamined in its Relations to the Manorial and Tribal Systems and to the Common or Open Field System of Husbandry; An Essay in Economic History (Reprinted from the Fourth Edition)', 'Seebohm, Frederic', '2014-07-22', 15, 'https://www.gutenberg.org/ebooks/46354', 'en', 15866), +(45106, 'Specimens of Greek Tragedy — Aeschylus and Sophocles', 'Aeschylus', '2004-12-01', 73, 'https://www.gutenberg.org/ebooks/7073', 'en', 15867), +(45107, 'The Fox and the Geese; and The Wonderful History of Henny-Penny', 'Anonymous', '2007-09-15', 10, 'https://www.gutenberg.org/ebooks/22611', 'en', 15868), +(45108, 'Some Christian Convictions\nA Practical Restatement in Terms of Present-Day Thinking', 'Coffin, Henry Sloane', '2005-08-03', 18, 'https://www.gutenberg.org/ebooks/16424', 'en', 7753), +(45109, 'Cuba in War Time', 'Davis, Richard Harding', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8807', 'en', 15869), +(45110, 'A Face Illumined', 'Roe, Edward Payson', '2001-02-01', 15, 'https://www.gutenberg.org/ebooks/2501', 'en', 297), +(45111, 'Curious Epitaphs, Collected from the Graveyards of Great Britain and Ireland.', 'Andrews, William', '2013-09-03', 38, 'https://www.gutenberg.org/ebooks/43626', 'en', 10211), +(45112, 'Der Hodscha Nasreddin II. Band\r\nTürkische, arabische, berberische, maltesische, sizilianische, kalabrische, kroatische, serbische und griechische Märlein und Schwänke', NULL, '2017-05-10', 9, 'https://www.gutenberg.org/ebooks/54691', 'de', 14508), +(45113, 'Alamat ng Ilang-Ilang', 'Sevilla, Jose N.', '2004-08-10', 43, 'https://www.gutenberg.org/ebooks/13156', 'tl', 61), +(45114, 'Burl', 'Heady, Morrison', '2008-11-29', 9, 'https://www.gutenberg.org/ebooks/27363', 'en', 942), +(45115, 'Revelations of a Wife\nThe Story of a Honeymoon', 'Garrison, Adele', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12084', 'en', 705), +(45116, 'How to Succeed in the Christian Life', 'Torrey, R. A. (Reuben Archer)', '2017-10-13', 56, 'https://www.gutenberg.org/ebooks/55743', 'en', 15870), +(45117, 'Burgoyne\'s Invasion of 1777\nWith an outline sketch of the American Invasion of Canada, 1775-76.', 'Drake, Samuel Adams', '2010-02-07', 20, 'https://www.gutenberg.org/ebooks/31206', 'en', 15184), +(45118, 'Sancti Hilarii: Epistola Ad Abram Filiam Suam (Circa Finem Anni 558 Missa.)\nPatrologiae Cursus Completus; Tomus X', 'Hilary, Saint, Bishop of Poitiers', '2007-10-21', 2, 'https://www.gutenberg.org/ebooks/23143', 'la', 15871), +(45119, 'The Works of Guy de Maupassant, Volume 3', 'Maupassant, Guy de', '2005-12-22', 35, 'https://www.gutenberg.org/ebooks/17376', 'en', 58), +(45120, 'Aphorismen zur Lebensweisheit', 'Schopenhauer, Arthur', '2014-11-20', 74, 'https://www.gutenberg.org/ebooks/47406', 'de', 740), +(45121, 'The Voyages of Captain Scott : Retold from the Voyage of the Discovery and Scott\'s Last Expedition', 'Turley, Charles', '2006-01-07', 45, 'https://www.gutenberg.org/ebooks/6721', 'en', 15872), +(45122, 'The Court Houses of a Century\r\nA Brief Historical Sketch of the Court Houses of London Distict, the County of Middlesex, and County of Elgin', 'McKay, Kenneth W.', '2011-01-21', 14, 'https://www.gutenberg.org/ebooks/35026', 'en', 15873), +(45123, 'A Woman of No Importance', 'Wilde, Oscar', '2016-04-02', 22, 'https://www.gutenberg.org/ebooks/51563', 'en', 2455), +(45124, 'The Night Riders: A Romance of Early Montana', 'Cullum, Ridgwell', '2009-07-21', 26, 'https://www.gutenberg.org/ebooks/29479', 'en', 15874), +(45125, 'Coaches and Coaching', 'Hunt, Leigh', '2013-06-15', 29, 'https://www.gutenberg.org/ebooks/42948', 'en', 8170), +(45126, 'The Best Short Stories of 1920, and the Yearbook of the American Short Story', NULL, '2007-07-17', 85, 'https://www.gutenberg.org/ebooks/22091', 'en', 112), +(45127, 'Actions and Reactions', 'Kipling, Rudyard', '2000-11-01', 80, 'https://www.gutenberg.org/ebooks/2381', 'en', 409), +(45128, 'Alice, or the Mysteries — Book 07', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 53, 'https://www.gutenberg.org/ebooks/9769', 'en', 137), +(45129, 'The Adventure League', 'Skae, Hilda T.', '2009-11-28', 16, 'https://www.gutenberg.org/ebooks/30554', 'en', 15875), +(45130, 'The Younger Sister: A Novel, Vol. II.', 'Hubback, Mrs. (Catherine-Anne Austen)', '2017-01-21', 18, 'https://www.gutenberg.org/ebooks/54011', 'en', 348), +(45131, 'Ylösnousemus II', 'Tolstoy, Leo, graf', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/12604', 'fi', 15876), +(45132, 'Children of Our Town', 'Wells, Carolyn', '2008-08-25', 13, 'https://www.gutenberg.org/ebooks/26431', 'en', 1209), +(45133, 'The Papers and Writings of Abraham Lincoln, Complete', 'Lincoln, Abraham', '2004-10-01', 106, 'https://www.gutenberg.org/ebooks/3253', 'en', 582), +(45134, 'The Monkey\'s Frolic: A Humorous Tale, in Verse', 'Anonymous', '2010-03-03', 4, 'https://www.gutenberg.org/ebooks/31486', 'en', 859), +(45135, 'The World Before Them: A Novel. Volume 3 (of 3)', 'Moodie, Susanna', '2013-02-23', 6, 'https://www.gutenberg.org/ebooks/42174', 'en', 61), +(45136, 'The Land of Long Ago', 'Hall, Eliza Calvert', '2010-05-02', 30, 'https://www.gutenberg.org/ebooks/32203', 'en', 1996), +(45137, 'Extracto de la gramatica mutsun', 'Arroyo de la Cuesta, Felipe', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11081', 'nai', 15877), +(45138, 'Airplane Boys at Platinum River', 'Craine, E. J. (Edith Janice)', '2018-03-15', 8, 'https://www.gutenberg.org/ebooks/56746', 'en', 388), +(45139, 'Index of the Project Gutenberg Works of Coningsby Dawson', 'Dawson, Coningsby', '2018-08-14', 7, 'https://www.gutenberg.org/ebooks/57694', 'en', 198), +(45140, 'Voice Trial - Kinetophone Actor Audition', 'Lenord, Frank', '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10153', 'en', 15878), +(45141, 'Waverley; Or, \'Tis Sixty Years Since', 'Scott, Walter', '2004-08-19', 251, 'https://www.gutenberg.org/ebooks/5998', 'en', 15656), +(45142, 'A Disquisition on the Evils of Using Tobacco\nand the Necessity of Immediate and Entire Reformation', 'Fowler, Orin', '2008-01-20', 17, 'https://www.gutenberg.org/ebooks/24366', 'en', 9560), +(45143, 'The Comedy of Errors', 'Shakespeare, William', '1998-10-01', 48, 'https://www.gutenberg.org/ebooks/1504', 'en', 15879), +(45144, 'The Wright Brothers\' Engines and Their Design', 'Hobbs, Leonard S.', '2012-02-02', 37, 'https://www.gutenberg.org/ebooks/38739', 'en', 15880), +(45145, 'Private Sex Advice to Women: For Young Wives and those who Expect to be Married', 'Armitage, Robert B.', '2012-08-30', 231, 'https://www.gutenberg.org/ebooks/40623', 'en', 755), +(45146, 'For the Temple: A Tale of the Fall of Jerusalem', 'Henty, G. A. (George Alfred)', '2007-05-26', 64, 'https://www.gutenberg.org/ebooks/21614', 'en', 195), +(45147, 'Contribucion Para El Estudio de los Antiguos Alfabetos Filipinos', 'Pardo de Tavera, T. H. (Trinidad Hermenegildo)', '2005-03-20', 35, 'https://www.gutenberg.org/ebooks/15421', 'es', 15881), +(45148, 'A Maid and a Million Men\r\nthe candid confessions of Leona Canwick, censored indiscreetly by James G. Dunton', 'Dunton, James G. (James Gerald)', '2014-04-08', 49, 'https://www.gutenberg.org/ebooks/45351', 'en', 2004), +(45149, 'The Discovery of Muscovy', 'Hakluyt, Richard', '2003-05-01', 64, 'https://www.gutenberg.org/ebooks/4076', 'en', 15882), +(45150, 'Le comte de Moret', 'Dumas, Alexandre', '2011-10-17', 20, 'https://www.gutenberg.org/ebooks/37771', 'fr', 2436), +(45151, 'Ulla Fersen: Historiallinen novelli', 'Mellin, G. H. (Gustaf Henrik)', '2013-11-25', 10, 'https://www.gutenberg.org/ebooks/44283', 'fi', 2168), +(45152, 'Säkeitä II', 'Manninen, Otto', '2016-10-08', 4, 'https://www.gutenberg.org/ebooks/53234', 'fi', 1171), +(45153, 'The Delegate from Venus', 'Slesar, Henry', '2008-04-17', 43, 'https://www.gutenberg.org/ebooks/25086', 'en', 2283), +(45154, 'Graham\'s Magazine, Vol. XXX, No. 6, June 1847', 'Various', '2018-02-15', 9, 'https://www.gutenberg.org/ebooks/56574', 'en', 162), +(45155, 'A Raw Recruit\'s War Experiences', 'Nickerson, Ansel D.', '2010-04-17', 3, 'https://www.gutenberg.org/ebooks/32031', 'en', 444), +(45156, 'The Life and Death of the Lord Cromwell', 'Shakespeare (spurious and doubtful works)', '1999-05-01', 19, 'https://www.gutenberg.org/ebooks/1736', 'en', 15883), +(45157, 'The Potter\'s Craft: A Practical Guide for the Studio and Workshop', 'Binns, Charles Fergus', '2012-08-04', 25, 'https://www.gutenberg.org/ebooks/40411', 'en', 4784), +(45158, 'The Creative Process in the Individual', 'Troward, T. (Thomas)', '2003-12-01', 57, 'https://www.gutenberg.org/ebooks/10361', 'en', 43), +(45159, '癡人說夢記', 'Lü, Sheng', '2008-01-04', 13, 'https://www.gutenberg.org/ebooks/24154', 'zh', 3187), +(45160, 'Persönlichkeit', 'Tagore, Rabindranath', '2014-03-17', 13, 'https://www.gutenberg.org/ebooks/45163', 'de', 15589), +(45161, 'The Toy Shop (1735) The King and the Miller of Mansfield (1737)', 'Dodsley, Robert', '2011-06-21', 12, 'https://www.gutenberg.org/ebooks/36491', 'en', 3619), +(45162, 'Among the Tibetans', 'Bird, Isabella L. (Isabella Lucy)', '2003-07-01', 73, 'https://www.gutenberg.org/ebooks/4244', 'en', 3063), +(45163, 'The Tale of Daddy Longlegs\nTuck-Me-In Tales', 'Bailey, Arthur Scott', '2007-05-13', 34, 'https://www.gutenberg.org/ebooks/21426', 'en', 625), +(45164, 'The Great Round World and What Is Going On In It, Vol. 1, No. 28, May 20, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-13', 11, 'https://www.gutenberg.org/ebooks/15613', 'en', 1), +(45165, 'The Romance of Gilbert Holmes: An Historical Novel', 'Kirkman, Marshall M. (Marshall Monroe)', '2016-09-07', 9, 'https://www.gutenberg.org/ebooks/53006', 'en', 9463), +(45166, 'Watt\'s Songs Against Faults', 'Watts, Isaac', '2011-09-26', 11, 'https://www.gutenberg.org/ebooks/37543', 'en', 861), +(45167, 'The Crisis — Complete', 'Churchill, Winston', '2004-10-19', 147, 'https://www.gutenberg.org/ebooks/5396', 'en', 403), +(45168, 'Behind the Scenes\nor, Thirty years a slave, and Four Years in the White House', 'Keckley, Elizabeth', '2008-03-31', 110, 'https://www.gutenberg.org/ebooks/24968', 'en', 125), +(45169, 'Sons and Lovers', 'Lawrence, D. H. (David Herbert)', '2014-12-11', 149, 'https://www.gutenberg.org/ebooks/47634', 'en', 15884), +(45170, 'History Of The Missions Of The American Board Of Commissioners For Foreign Missions To The Oriental Churches, Volume I.', 'Anderson, Rufus', '2006-07-28', 12, 'https://www.gutenberg.org/ebooks/18930', 'en', 15885), +(45171, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 7, Barnabas', 'Wake, William', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6513', 'en', 7966), +(45172, 'The Spinster Book', 'Reed, Myrtle', '2009-05-01', 6, 'https://www.gutenberg.org/ebooks/28799', 'en', 1663), +(45173, 'Blown to Bits: The Lonely Man of Rakata, the Malay Archipelago', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 27, 'https://www.gutenberg.org/ebooks/23371', 'en', 3242), +(45174, 'The House of the Vampire', 'Viereck, George Sylvester', '2005-11-23', 95, 'https://www.gutenberg.org/ebooks/17144', 'en', 461), +(45175, 'Chad Gadja: Das Peßachbuch', NULL, '2015-12-13', 7, 'https://www.gutenberg.org/ebooks/50683', 'de', 15886), +(45176, 'Oh, Rats!', 'De Ford, Miriam Allen', '2016-04-13', 51, 'https://www.gutenberg.org/ebooks/51751', 'en', 8385), +(45177, 'A Man\'s Woman', 'Norris, Frank', '2005-06-20', 82, 'https://www.gutenberg.org/ebooks/16096', 'en', 109), +(45178, 'The Guerilla Chief, and Other Tales', 'Reid, Mayne', '2011-02-08', 16, 'https://www.gutenberg.org/ebooks/35214', 'en', 61), +(45179, 'London and Its Environs Described, vol. 3 (of 6)\r\nContaining an Account of Whatever Is Most Remarkable for Grandeur, Elegance, Curiosity or Use, in the City and in the Country Twenty Miles Round It.', 'Anonymous', '2019-07-30', 660, 'https://www.gutenberg.org/ebooks/60016', 'en', 2122), +(45180, 'Onesimus: Memoirs of a Disciple of St. Paul', 'Abbott, Edwin Abbott', '2017-02-22', 31, 'https://www.gutenberg.org/ebooks/54223', 'en', 984), +(45181, 'Les Jeudis de Madame Charbonneau', 'Pontmartin, Armand, comte de', '2013-07-24', 7, 'https://www.gutenberg.org/ebooks/43294', 'fr', 781), +(45182, 'Leaves from a Field Note-Book', 'Morgan, J. H. (John Hartman)', '2006-03-13', 15, 'https://www.gutenberg.org/ebooks/17978', 'en', 3601), +(45183, 'Chiose alla cantica dell\'Inferno di Dante Alighieri\r\npubblicate per la prima volta in corretta lezione con riscontri e fac-simili di codici, e precedute da una indagine critica', 'Alighieri, Jacopo, active 14th century', '2009-12-26', 44, 'https://www.gutenberg.org/ebooks/30766', 'it', 15887), +(45184, 'Römische Geschichte — Band 2', 'Mommsen, Theodor', '2002-02-01', 37, 'https://www.gutenberg.org/ebooks/3061', 'de', 6793), +(45185, 'Specimens of the Table Talk of Samuel Taylor Coleridge', 'Coleridge, Samuel Taylor', '2005-07-01', 81, 'https://www.gutenberg.org/ebooks/8489', 'en', 3501), +(45186, 'A Possible Solution of the Number Series on Pages 51 to 58 of the Dresden Codex', 'Guthe, Carl E. (Carl Eugen)', '2013-03-16', 25, 'https://www.gutenberg.org/ebooks/42346', 'en', 15888), +(45187, 'The Night Horseman', 'Brand, Max', '2004-05-01', 49, 'https://www.gutenberg.org/ebooks/12436', 'en', 315), +(45188, 'The Later Cave-Men', 'Dopp, Katharine Elizabeth', '2008-09-13', 32, 'https://www.gutenberg.org/ebooks/26603', 'en', 15889), +(45189, 'An Old Maid', 'Balzac, Honoré de', '1998-06-01', 44, 'https://www.gutenberg.org/ebooks/1352', 'en', 58), +(45190, 'Six Thousand Country Churches', 'Gill, Charles Otis', '2010-08-30', 24, 'https://www.gutenberg.org/ebooks/33587', 'en', 15890), +(45191, 'The Knight of Malta', 'Sue, Eugène', '2012-06-24', 23, 'https://www.gutenberg.org/ebooks/40075', 'en', 298), +(45192, 'The History of Rome, Book V\r\nThe Establishment of the Military Monarchy', 'Mommsen, Theodor', '2004-09-13', 48, 'https://www.gutenberg.org/ebooks/10705', 'en', 6793), +(45193, 'On the Tree Top', 'Bates, Clara Doty', '2008-02-06', 15, 'https://www.gutenberg.org/ebooks/24530', 'en', 859), +(45194, 'Führende Denker: Geschichtliche Einleitung in die Philosophie', 'Cohn, Jonas', '2017-12-03', 19, 'https://www.gutenberg.org/ebooks/56110', 'de', 3566), +(45195, 'Christmas Eve and Christmas Day: Ten Christmas stories', 'Hale, Edward Everett', '2010-05-20', 51, 'https://www.gutenberg.org/ebooks/32455', 'en', 770), +(45196, 'The Open Window: Tales of the Months', 'Wright, Mabel Osgood', '2019-07-21', 1181, 'https://www.gutenberg.org/ebooks/59964', 'en', 1516), +(45197, 'Discursos sobre el arte del dançado\ny sus exelencias y primer origen, reprobando las acciones deshonestas', 'Esquivel Navarro, Juan de, active 17th century', '2016-11-06', 11, 'https://www.gutenberg.org/ebooks/53462', 'es', 2893), +(45198, 'British Manufacturing Industries: Pottery, Glass and Silicates, Furniture and Woodwork.', 'Arnoux, Léon', '2012-02-24', 31, 'https://www.gutenberg.org/ebooks/38953', 'en', 15891), +(45199, 'The Handy Cyclopedia of Things Worth Knowing\nA Manual of Ready Reference', 'Triemens, Joseph', '2006-12-26', 55, 'https://www.gutenberg.org/ebooks/20190', 'en', 1081), +(45200, 'Beethoven\'s Symphonies Critically Discussed', 'Teetgen, Alexander', '2012-09-23', 8, 'https://www.gutenberg.org/ebooks/40849', 'en', 6720), +(45201, 'Lives of the Fur Folk', 'Haviland, Maud D. (Maud Doria)', '2011-08-19', 31, 'https://www.gutenberg.org/ebooks/37127', 'en', 2360), +(45202, 'The Pony Rider Boys in Louisiana; or, Following the Game Trails in the Canebrake', 'Patchin, Frank Gee', '2014-04-27', 13, 'https://www.gutenberg.org/ebooks/45507', 'en', 5911), +(45203, 'The Wedding Guest: A Friend of the Bride and Bridegroom', NULL, '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/4620', 'en', 2815), +(45204, 'Roger Ingleton, Minor', 'Reed, Talbot Baines', '2007-04-12', 25, 'https://www.gutenberg.org/ebooks/21042', 'en', 15892), +(45205, 'War\'s Brighter Side\r\nThe Story of The Friend Newspaper Edited by the Correspondents with Lord Roberts\'s Forces, March-April, 1900', 'Ralph, Julian', '2012-06-02', 21, 'https://www.gutenberg.org/ebooks/39881', 'en', 15893), +(45206, 'Beggars on Horseback; A riding tour in North Wales', 'Somerville, E. Oe. (Edith Oenone)', '2019-03-30', 13, 'https://www.gutenberg.org/ebooks/59158', 'en', 3891), +(45207, 'The Open Secret of Ireland', 'Kettle, Tom', '2005-03-07', 20, 'https://www.gutenberg.org/ebooks/15277', 'en', 15894), +(45208, 'Fresh Air Fiend', 'Neville, Kris', '2016-03-01', 18, 'https://www.gutenberg.org/ebooks/51335', 'en', 179), +(45209, 'No Quarter!', 'Reid, Mayne', '2011-03-24', 99, 'https://www.gutenberg.org/ebooks/35670', 'en', 10612), +(45210, 'The Submarine in War and Peace: Its Development and its Possibilities', 'Lake, Simon', '2014-07-23', 12, 'https://www.gutenberg.org/ebooks/46382', 'en', 12238), +(45211, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 700\nMay 26, 1877', 'Various', '2014-10-31', 4, 'https://www.gutenberg.org/ebooks/47250', 'en', 18), +(45212, 'Pierre and His People: Tales of the Far North. Volume 4.', 'Parker, Gilbert', '2004-07-01', 6, 'https://www.gutenberg.org/ebooks/6177', 'en', 2261), +(45213, 'Warlord of Kor', 'Carr, Terry Gene', '2007-12-01', 20, 'https://www.gutenberg.org/ebooks/23715', 'en', 26), +(45214, 'Way of the Lawless', 'Brand, Max', '2006-02-01', 100, 'https://www.gutenberg.org/ebooks/9903', 'en', 315), +(45215, 'Letters of the Right Honourable Lady M—y W—y M—e\nWritten during Her Travels in Europe, Asia and Africa to Persons of Distinction, Men of Letters, &c. in Different Parts of Europe', 'Montagu, Mary Wortley, Lady', '2006-01-15', 61, 'https://www.gutenberg.org/ebooks/17520', 'en', 15895), +(45216, 'Ragged Lady — Volume 1', 'Howells, William Dean', '2004-10-24', 23, 'https://www.gutenberg.org/ebooks/3405', 'en', 2741), +(45217, 'Historic Paris', 'Wolff, Jetta Sophia', '2013-05-16', 13, 'https://www.gutenberg.org/ebooks/42722', 'en', 1993), +(45218, 'Half a Century', 'Swisshelm, Jane Grey Cannon', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/12052', 'en', 2108), +(45219, 'The Sealed Message', 'Hume, Fergus', '2017-10-23', 25, 'https://www.gutenberg.org/ebooks/55795', 'en', 1425), +(45220, 'The Radio Boys\' First Wireless; Or, Winning the Ferberton Prize', 'Chapman, Allen', '2005-04-01', 25, 'https://www.gutenberg.org/ebooks/7899', 'en', 3343), +(45221, 'The Romance of Rubber', 'United States Rubber Company', '2008-08-01', 3, 'https://www.gutenberg.org/ebooks/26267', 'en', 3767), +(45222, 'Vaarallista väkeä', 'Elster, Kristian', '2006-06-12', 13, 'https://www.gutenberg.org/ebooks/18568', 'fi', 61), +(45223, 'Sam Steele\'s Adventures in Panama', 'Baum, L. Frank (Lyman Frank)', '2017-05-02', 26, 'https://www.gutenberg.org/ebooks/54647', 'en', 15896), +(45224, 'The Tracer of Lost Persons', 'Chambers, Robert W. (Robert William)', '2004-08-15', 36, 'https://www.gutenberg.org/ebooks/13180', 'en', 179), +(45225, 'The Science of the Stars', 'Maunder, E. Walter (Edward Walter)', '2015-02-09', 30, 'https://www.gutenberg.org/ebooks/48218', 'en', 1683), +(45226, 'The Benefactress', 'Von Arnim, Elizabeth', '2009-10-20', 64, 'https://www.gutenberg.org/ebooks/30302', 'en', 61), +(45227, 'The Dodd Family Abroad, Vol. II', 'Lever, Charles James', '2011-03-01', 12, 'https://www.gutenberg.org/ebooks/35442', 'en', 61), +(45228, 'The Vedanta-Sutras with the Commentary by Ramanuja\r\nSacred Books of the East, Volume 48', NULL, '2005-01-01', 97, 'https://www.gutenberg.org/ebooks/7297', 'en', 11874), +(45229, 'The Tale of Lal\nA Fantasy', 'Paton, Raymond', '2008-10-10', 7, 'https://www.gutenberg.org/ebooks/26869', 'en', 8225), +(45230, 'Woman and Puppet, Etc.', 'Louÿs, Pierre', '2016-02-02', 40, 'https://www.gutenberg.org/ebooks/51107', 'en', 58), +(45231, 'The Twelve Magic Changelings', 'Glen, M. A.', '2007-11-17', 19, 'https://www.gutenberg.org/ebooks/23527', 'en', 15897), +(45232, 'Big Game Shooting, volume 2 (of 2)', 'Phillipps-Wolley, Clive', '2015-04-28', 13, 'https://www.gutenberg.org/ebooks/48816', 'en', 15898), +(45233, 'The Moon: A Full Description and Map of its Principal Physical Features', 'Elger, Thomas Gwyn', '2006-02-07', 15, 'https://www.gutenberg.org/ebooks/17712', 'en', 4280), +(45234, 'La fille du ciel: Drame Chinois', 'Loti, Pierre', '2014-10-06', 9, 'https://www.gutenberg.org/ebooks/47062', 'fr', 2199), +(45235, 'Handboek voor Bijenhouders', 'Dirks, J.', '2010-12-07', 11, 'https://www.gutenberg.org/ebooks/34590', 'nl', 87), +(45236, 'Seven Maids of Far Cathay: Being English Notes From a Chinese Class Book', 'Mandall, Abertine D.', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6345', 'en', 15899), +(45237, 'Documento che invita i mercanti ebrei a stabilirsi in Livorno e Pisa (Costituzione Livornina)\nShoenberg Collection - Manuscript Number: ljs379', 'Ferdinando I, Grand-Duke of Tuscany', '2006-10-31', 13, 'https://www.gutenberg.org/ebooks/19688', 'it', 15900), +(45238, 'Jonas on a Farm in Winter', 'Abbott, Jacob', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/12260', 'en', 8780), +(45239, 'Naomi eli Jerusalemin viimeiset päivät', 'Webb-Peploe, Mrs. (Annie)', '2008-07-14', 7, 'https://www.gutenberg.org/ebooks/26055', 'fi', 98), +(45240, 'The Garden of Allah', 'Hichens, Robert', '2006-04-13', 23, 'https://www.gutenberg.org/ebooks/3637', 'en', 48), +(45241, 'Ιστορία της Αλώσεως του Βυζαντίου υπό των Φράγκων και της αυτόθι εξουσίας αυτών', 'Stamatiades, Epameinondas I.', '2013-04-12', 6, 'https://www.gutenberg.org/ebooks/42510', 'el', 15901), +(45242, 'Shakespeare Jest-Books\r\nReprints of the Early and Very Rare Jest-Books Supposed to Have Been Used by Shakespeare', NULL, '2009-08-27', 24, 'https://www.gutenberg.org/ebooks/29821', 'en', 15902), +(45243, 'Due South; or, Cuba Past and Present', 'Ballou, Maturin M. (Maturin Murray)', '2009-09-29', 7, 'https://www.gutenberg.org/ebooks/30130', 'en', 6667), +(45244, 'A Warwickshire Lad: The Story of the Boyhood of William Shakespeare', 'Martin, George Madden', '2008-11-07', 23, 'https://www.gutenberg.org/ebooks/27187', 'en', 15903), +(45245, 'Discoveries and Inventions of the Nineteenth Century', 'Routledge, Robert', '2017-04-02', 23, 'https://www.gutenberg.org/ebooks/54475', 'en', 15904), +(45246, 'The Governors', 'Oppenheim, E. Phillips (Edward Phillips)', '2003-12-01', 41, 'https://www.gutenberg.org/ebooks/10537', 'en', 128), +(45247, 'The Ghost Breaker: A Melodramatic Farce in Four Acts', 'Dickey, Paul', '2008-02-27', 14, 'https://www.gutenberg.org/ebooks/24702', 'en', 427), +(45248, 'The Game', 'London, Jack', '1998-01-01', 75, 'https://www.gutenberg.org/ebooks/1160', 'en', 6185), +(45249, 'Expédition nocturne autour de ma chambre', 'Maistre, Xavier de', '2012-07-15', 19, 'https://www.gutenberg.org/ebooks/40247', 'fr', 642), +(45250, 'Elementary Zoology, Second Edition', 'Kellogg, Vernon L. (Vernon Lyman)', '2012-11-17', 49, 'https://www.gutenberg.org/ebooks/41395', 'en', 4745), +(45251, 'Elene; Judith; Athelstan, or the Fight at Brunanburh; Byrhtnoth, or the Fight at Maldon; and the Dream of the Rood\nAnglo-Saxon Poems', NULL, '2005-05-23', 67, 'https://www.gutenberg.org/ebooks/15879', 'en', 15905), +(45252, 'The Holes and John Smith', 'Ludwig, Edward W.', '2010-06-03', 21, 'https://www.gutenberg.org/ebooks/32667', 'en', 613), +(45253, 'The Mary Frances Story Book; or, Adventures Among the Story People', 'Fryer, Jane Eayre', '2018-01-06', 16, 'https://www.gutenberg.org/ebooks/56322', 'en', 323), +(45254, 'The Boy\'s Book of Heroes', 'Peake, Helena', '2011-09-04', 9, 'https://www.gutenberg.org/ebooks/37315', 'en', 11600), +(45255, 'The Living Present', 'Atherton, Gertrude Franklin Horn', '2004-11-28', 20, 'https://www.gutenberg.org/ebooks/14197', 'en', 848), +(45256, 'Mothers to Men', 'Gale, Zona', '2016-12-02', 15, 'https://www.gutenberg.org/ebooks/53650', 'en', 3389), +(45257, 'Five Hundred Dollars; or, Jacob Marlowe\'s Secret', 'Alger, Horatio, Jr.', '2007-05-02', 30, 'https://www.gutenberg.org/ebooks/21270', 'en', 777), +(45258, 'Aaron in the Wildwoods', 'Harris, Joel Chandler', '2016-08-12', 75, 'https://www.gutenberg.org/ebooks/52782', 'en', 5076), +(45259, 'Autobiography, Letters and Literary Remains of Mrs. Piozzi (Thrale) (2nd ed.) (2 vols.)\nEdited with notes and Introductory Account of her life and writings', 'Piozzi, Hester Lynch', '2005-02-14', 15, 'https://www.gutenberg.org/ebooks/15045', 'en', 2896), +(45260, 'Transactions of the American Society of Civil Engineers, Vol. LXX, December, 1910', 'American Society of Civil Engineers', '2014-05-24', 6, 'https://www.gutenberg.org/ebooks/45735', 'en', 4530), +(45261, 'The Ordeal of Richard Feverel — Complete', 'Meredith, George', '2004-11-02', 57, 'https://www.gutenberg.org/ebooks/4412', 'en', 2079), +(45262, 'The Progressionists, and Angela.', 'Bolanden, Conrad von', '2010-08-29', 15, 'https://www.gutenberg.org/ebooks/33573', 'en', 3319), +(45263, 'Improved Queen-Rearing; or, How to Rear Large, Prolific, Long-Lived Queen Bees\r\nThe Result of Nearly Half a Century\'s Experience in Rearing Queen Bees, Giving the Practical, Every-day Work of the Queen-Rearing Apiary', 'Alley, Henry', '2019-02-08', 12, 'https://www.gutenberg.org/ebooks/58842', 'en', 4644), +(45264, 'Life in the Medieval University', 'Rait, Robert S. (Robert Sangster)', '2007-04-02', 114, 'https://www.gutenberg.org/ebooks/20958', 'en', 15906), +(45265, 'Thomas Chalmers', 'Blaikie, William Garden', '2012-06-23', 30, 'https://www.gutenberg.org/ebooks/40081', 'en', 15907), +(45266, 'A Slav Soul, and Other Stories', 'Kuprin, A. I. (Aleksandr Ivanovich)', '2018-04-23', 48, 'https://www.gutenberg.org/ebooks/57036', 'en', 85), +(45267, 'The Abenaki Indians\nTheir Treaties of 1713 & 1717, and a Vocabulary', 'Kidder, Frederic', '2008-05-10', 32, 'https://www.gutenberg.org/ebooks/25416', 'en', 15908), +(45268, 'The Dramatic Works of John Dryden, Volume 1\r\nWith a Life of the Author', 'Scott, Walter', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11623', 'en', 15909), +(45269, 'The Spell of Switzerland', 'Dole, Nathan Haskell', '2012-10-23', 26, 'https://www.gutenberg.org/ebooks/41153', 'en', 1307), +(45270, 'Old-Time Gardens, Newly Set Forth', 'Earle, Alice Morse', '2012-03-04', 46, 'https://www.gutenberg.org/ebooks/39049', 'en', 11332), +(45271, 'Miss Meredith', 'Levy, Amy', '2019-07-27', 1052, 'https://www.gutenberg.org/ebooks/59990', 'en', 109), +(45272, 'Reminiscences of Epping Forest', NULL, '2016-11-10', 2, 'https://www.gutenberg.org/ebooks/53496', 'en', 15910), +(45273, 'Maaliskuun lauluja; Tarina suuresta tammesta; Yökehrääjä', 'Leino, Eino', '2004-12-14', 32, 'https://www.gutenberg.org/ebooks/14351', 'fi', 1171), +(45274, 'Critical Miscellanies, Vol. 1 (of 3), Essay 4: Macaulay', 'Morley, John', '2006-12-22', 11, 'https://www.gutenberg.org/ebooks/20164', 'en', 13250), +(45275, 'Time and Change', 'Burroughs, John', '2004-05-01', 36, 'https://www.gutenberg.org/ebooks/5706', 'en', 1315), +(45276, 'The Rebel Chief: A Tale of Guerilla Life', 'Aimard, Gustave', '2013-12-14', 18, 'https://www.gutenberg.org/ebooks/44421', 'en', 61), +(45277, 'Le transporté (2/4)', 'Méry, Joseph', '2011-04-30', 59, 'https://www.gutenberg.org/ebooks/36001', 'fr', 61), +(45278, 'Disease and Its Causes', 'Councilman, W. T. (William Thomas)', '2005-03-08', 39, 'https://www.gutenberg.org/ebooks/15283', 'en', 15911), +(45279, 'Rappiolle: Kertomus heikosta miehestä', 'Koskimaa, Juho', '2016-07-10', 3, 'https://www.gutenberg.org/ebooks/52544', 'fi', 175), +(45280, 'Highways and Byways in London', 'Cook, Emily Constance Baird', '2012-06-03', 14, 'https://www.gutenberg.org/ebooks/39875', 'en', 856), +(45281, 'An Introduction to Philosophy', 'Fullerton, George Stuart', '2005-08-01', 272, 'https://www.gutenberg.org/ebooks/16406', 'en', 779), +(45282, 'The Life and Letters of Maria Edgeworth, Volume 1', 'Edgeworth, Maria', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8825', 'en', 12321), +(45283, 'Souvenirs d\'un sexagénaire, Tome I', 'Arnault, A.-V. (Antoine-Vincent)', '2007-09-16', 35, 'https://www.gutenberg.org/ebooks/22633', 'fr', 14168), +(45284, 'The Good News of God', 'Kingsley, Charles', '2004-12-01', 32, 'https://www.gutenberg.org/ebooks/7051', 'en', 2745), +(45285, 'At Large', 'Hornung, E. W. (Ernest William)', '2011-03-26', 42, 'https://www.gutenberg.org/ebooks/35684', 'en', 48), +(45286, 'Outspinning the Spider: The Story of Wire and Wire Rope', 'Mumford, John Kimberly', '2014-07-22', 15, 'https://www.gutenberg.org/ebooks/46376', 'en', 15912), +(45287, 'A Romany of the Snows, vol. 4\r\nBeing a Continuation of the Personal Histories of \"Pierre and His People\" and the Last Existing Records of Pretty Pierre', 'Parker, Gilbert', '2004-07-01', 4, 'https://www.gutenberg.org/ebooks/6183', 'en', 2261), +(45288, 'Le vicomte de Bragelonne, Tome II.', 'Dumas, Alexandre', '2004-11-04', 43, 'https://www.gutenberg.org/ebooks/13948', 'fr', 1127), +(45289, 'Livro de Consolação: Romance', 'Castelo Branco, Camilo', '2010-12-27', 10, 'https://www.gutenberg.org/ebooks/34756', 'pt', 2716), +(45290, 'Christopher Hibbault, Roadmaker', 'Bryant, Marguerite', '2009-03-11', 15, 'https://www.gutenberg.org/ebooks/28309', 'en', 95), +(45291, 'Encyclopedia of Diet: A Treatise on the Food Question, Vol. 3 of 5', 'Christian, Eugene', '2015-10-14', 6, 'https://www.gutenberg.org/ebooks/50213', 'en', 11808), +(45292, 'Geographic Distribution of the Pocket Mouse, Perognathus fasciatus', 'Jones, J. Knox', '2010-02-08', 4, 'https://www.gutenberg.org/ebooks/31224', 'en', 15913), +(45293, 'The Bible, King James version, Book 19: Psalms', 'Anonymous', '2005-04-01', 29, 'https://www.gutenberg.org/ebooks/8019', 'en', 11169), +(45294, 'The Philosophy of Spiritual Activity\r\nA Modern Philosophy of Life Developed by Scientific Methods', 'Steiner, Rudolf', '2017-10-16', 88, 'https://www.gutenberg.org/ebooks/55761', 'en', 13051), +(45295, 'The Wind in the Willows', 'Grahame, Kenneth', '2008-08-01', 25, 'https://www.gutenberg.org/ebooks/26293', 'en', 2625), +(45296, 'Mother Earth, Vol. 1 No. 4, June 1906\nMonthly Magazine Devoted to Social Science and Literature', 'Various', '2008-11-27', 43, 'https://www.gutenberg.org/ebooks/27341', 'en', 7969), +(45297, 'Dreams and Dust', 'Marquis, Don', '1996-03-01', 25, 'https://www.gutenberg.org/ebooks/458', 'en', 178), +(45298, 'Sylvi; Kovan onnen lapsia', 'Canth, Minna', '2004-08-13', 8, 'https://www.gutenberg.org/ebooks/13174', 'fi', 247), +(45299, 'Wood-working for Beginners: A Manual for Amateurs', 'Wheeler, Charles G. (Charles Gardner)', '2013-08-30', 214, 'https://www.gutenberg.org/ebooks/43604', 'en', 8540), +(45300, 'The Memoirs of Victor Hugo', 'Hugo, Victor', '2001-02-01', 44, 'https://www.gutenberg.org/ebooks/2523', 'en', 5643), +(45301, 'Le Mariage de Loti', 'Loti, Pierre', '2005-01-01', 27, 'https://www.gutenberg.org/ebooks/7263', 'fr', 15914), +(45302, 'Six Cups of Coffee\r\nPrepared for the Public Palate by the Best Authorities on Coffee Making', 'Harland, Marion', '2014-06-30', 45, 'https://www.gutenberg.org/ebooks/46144', 'en', 8753), +(45303, 'Biltmore Oswald\nThe Diary of a Hapless Recruit', 'Smith, Thorne', '2005-09-03', 37, 'https://www.gutenberg.org/ebooks/16634', 'en', 637), +(45304, 'Stories by American Authors (Volume 4)', 'Woolson, Constance Fenimore', '2007-08-25', 26, 'https://www.gutenberg.org/ebooks/22401', 'en', 1426), +(45305, 'Unitarianism Defended\r\nA Series of Lectures by Three Protestant Dissenting Ministers of Liverpool', 'Martineau, James', '2015-09-10', 17, 'https://www.gutenberg.org/ebooks/49930', 'en', 2706), +(45306, 'An Irish Precursor of Dante\r\nA Study on the Vision of Heaven and Hell ascribed to the Eighth-century Irish Saint Adamnán, with Translation of the Irish Text', 'Boswell, Charles Stuart', '2015-09-20', 18, 'https://www.gutenberg.org/ebooks/50021', 'en', 15915), +(45307, 'Tuulentupia', 'Conrad, Joseph', '2014-10-12', 2, 'https://www.gutenberg.org/ebooks/47096', 'fi', 1061), +(45308, 'Maudit soit l\'Amour!', 'Lecomte du Noüy, Hermine Oudinot', '2010-12-04', 7, 'https://www.gutenberg.org/ebooks/34564', 'fr', 687), +(45309, 'The Last Frontier: The White Man\'s War for Civilisation in Africa', 'Powell, E. Alexander (Edward Alexander)', '2017-09-26', 9, 'https://www.gutenberg.org/ebooks/55553', 'en', 15916), +(45310, 'Punch, or the London Charivari, Volume 146, January 7, 1914', 'Various', '2004-05-01', 6, 'https://www.gutenberg.org/ebooks/12294', 'en', 134), +(45311, 'Dig Here!', 'Allen, Gladys', '2014-09-27', 19, 'https://www.gutenberg.org/ebooks/46978', 'en', 1655); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(45312, 'Catalogue of the Books Presented by Edward Capell to the Library of Trinity College in Cambridge', NULL, '2010-01-18', 14, 'https://www.gutenberg.org/ebooks/31016', 'en', 15917), +(45313, 'L\'Illustration, No. 0052, 24 Février 1844', 'Various', '2013-08-10', 6, 'https://www.gutenberg.org/ebooks/43436', 'fr', 150), +(45314, 'Book of Philemon', NULL, '2009-05-01', 3, 'https://www.gutenberg.org/ebooks/28907', 'en', 7921), +(45315, 'A Phyllis of the Sierras', 'Harte, Bret', '2006-05-25', 9, 'https://www.gutenberg.org/ebooks/2711', 'en', 8901), +(45316, 'An Account of the expedition to Carthagena, with explanatory notes and observations', 'Knowles, Charles, Sir', '2008-11-06', 23, 'https://www.gutenberg.org/ebooks/27173', 'en', 3444), +(45317, 'Reis naar Yucatan\r\nDe Aarde en haar Volken, 1886', 'Charnay, Désiré', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/13346', 'nl', 4339), +(45318, 'Adelaide: Wahrscheinlich nur ein Roman', 'Goldstein, Augusta von', '2017-04-03', 10, 'https://www.gutenberg.org/ebooks/54481', 'de', 61), +(45319, 'Voyages au front, de Dunkerque à Belfort', 'Wharton, Edith', '2018-05-23', 15, 'https://www.gutenberg.org/ebooks/57204', 'fr', 6227), +(45320, 'The Acquisitive Society', 'Tawney, R. H. (Richard Henry)', '2010-09-16', 54, 'https://www.gutenberg.org/ebooks/33741', 'en', 3120), +(45321, 'The Adventures of Louis de Rougemont', 'Rougemont, Louis de', '1998-02-01', 34, 'https://www.gutenberg.org/ebooks/1194', 'en', 792), +(45322, 'The King of Gee-Whiz', 'Hough, Emerson', '2012-11-14', 10, 'https://www.gutenberg.org/ebooks/41361', 'en', 388), +(45323, 'That Boy Of Norcott\'s', 'Lever, Charles James', '2010-06-04', 18, 'https://www.gutenberg.org/ebooks/32693', 'en', 61), +(45324, 'Faces and Places', 'Lucy, Henry W. (Henry William), Sir', '2008-05-27', 22, 'https://www.gutenberg.org/ebooks/25624', 'en', 1117), +(45325, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 390, September 19, 1829', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11411', 'en', 133), +(45326, 'A Thorny Path — Volume 05', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5534', 'en', 803), +(45327, 'Les belles-de-nuit; ou, les anges de la famille. tome 2', 'Féval, Paul', '2014-01-07', 13, 'https://www.gutenberg.org/ebooks/44613', 'fr', 298), +(45328, 'Les enfants du capitaine Grant', 'Verne, Jules', '2004-11-26', 42, 'https://www.gutenberg.org/ebooks/14163', 'fr', 7962), +(45329, 'Hero and Leander and Other Poems', 'Marlowe, Christopher', '2007-01-14', 37, 'https://www.gutenberg.org/ebooks/20356', 'en', 15918), +(45330, 'Six Years in the Prisons of England', NULL, '2007-05-04', 33, 'https://www.gutenberg.org/ebooks/21284', 'en', 4573), +(45331, 'X Marks the Pedwalk', 'Leiber, Fritz', '2016-08-11', 44, 'https://www.gutenberg.org/ebooks/52776', 'en', 15919), +(45332, 'A Prisoner in Turkey', 'Still, John', '2011-05-26', 18, 'https://www.gutenberg.org/ebooks/36233', 'en', 8718), +(45333, 'Die Innerste: Erzählung', 'Raabe, Wilhelm', '2015-11-13', 17, 'https://www.gutenberg.org/ebooks/50445', 'de', 138), +(45334, 'A Visit From Saint Nicholas', 'Moore, Clement Clarke', '2005-12-23', 54, 'https://www.gutenberg.org/ebooks/17382', 'en', 15920), +(45335, 'Lefty Locke Pitcher-Manager', 'Standish, Burt L.', '2010-10-19', 3, 'https://www.gutenberg.org/ebooks/34100', 'en', 7914), +(45336, 'Zicci: A Tale — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7607', 'en', 15921), +(45337, 'Secret Service; or, Recollections of a City Detective', 'Forrester, Andrew', '2014-08-06', 39, 'https://www.gutenberg.org/ebooks/46520', 'en', 3511), +(45338, 'Tristan and Isolda: Opera in Three Acts', 'Wagner, Richard', '2005-07-08', 39, 'https://www.gutenberg.org/ebooks/16250', 'en', 15922), +(45339, 'Gourmet', 'Lang, Allen Kim', '2016-03-29', 21, 'https://www.gutenberg.org/ebooks/51597', 'en', 7695), +(45340, 'An Elementary Spanish Reader', 'Harrison, Earl Stanley', '2007-07-13', 691, 'https://www.gutenberg.org/ebooks/22065', 'es', 188), +(45341, 'Donald Ross of Heimra (Volume 1 of 3)', 'Black, William', '2013-06-28', 9, 'https://www.gutenberg.org/ebooks/43052', 'en', 1922), +(45342, 'Tartarin De Tarascon', 'Daudet, Alphonse', '2006-03-22', 70, 'https://www.gutenberg.org/ebooks/2375', 'en', 2508), +(45343, 'Equal Suffrage in Australia', 'Various', '2008-12-13', 6, 'https://www.gutenberg.org/ebooks/27517', 'en', 15923), +(45344, 'Youth and Sex: Dangers and Safeguards for Girls and Boys', 'Sibly, Frederick Arthur', '2004-10-12', 65, 'https://www.gutenberg.org/ebooks/13722', 'en', 15924), +(45345, 'The Mystery Queen', 'Hume, Fergus', '2017-07-17', 49, 'https://www.gutenberg.org/ebooks/55137', 'en', 1425), +(45346, 'The History of England in Three Volumes, Vol.III.\r\nFrom the Accession of George III. to the Twenty-Third Year of the Reign of Queen Victoria', 'Nolan, E. H. (Edward Henry)', '2006-09-08', 40, 'https://www.gutenberg.org/ebooks/19218', 'en', 3790), +(45347, 'Cynthia\'s Chauffeur', 'Tracy, Louis', '2010-03-02', 22, 'https://www.gutenberg.org/ebooks/31472', 'en', 843), +(45348, 'Won in the Ninth\r\nThe first of a series of stories for boys on sports to be known as The Matty Books', 'Mathewson, Christy', '2015-08-01', 15, 'https://www.gutenberg.org/ebooks/49568', 'en', 3669), +(45349, 'Parish Priests and Their People in the Middle Ages in England', 'Cutts, Edward Lewes', '2013-02-23', 30, 'https://www.gutenberg.org/ebooks/42180', 'en', 559), +(45350, 'The Song of Songs', NULL, '2007-10-01', 6, 'https://www.gutenberg.org/ebooks/22859', 'en', 2945), +(45351, 'Anima Poetæ', 'Coleridge, Samuel Taylor', '2012-12-25', 20, 'https://www.gutenberg.org/ebooks/41705', 'en', 3501), +(45352, 'As theocracias litterarias\r\nRelance sobre o estado actual da litteratura portugueza', 'Braga, Teófilo', '2008-04-29', 24, 'https://www.gutenberg.org/ebooks/25240', 'pt', 7651), +(45353, 'Der Mann im Nebel', 'Falke, Gustav', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/11075', 'de', 906), +(45354, 'Joseph Pennell\'s Pictures of the Wonder of Work\r\nReproductions of a Series of Drawings, Etchings, and Lithographs, Made by Him about the World, 1881-1915, with Impressions and Notes by the Artist', 'Pennell, Joseph', '2018-08-08', 15, 'https://www.gutenberg.org/ebooks/57660', 'en', 13343), +(45355, 'Cat and Mouse', 'Williams, Ralph', '2008-01-21', 57, 'https://www.gutenberg.org/ebooks/24392', 'en', 26), +(45356, 'The Spoils of Poynton', 'James, Henry', '2010-08-02', 55, 'https://www.gutenberg.org/ebooks/33325', 'en', 95), +(45357, 'The Methods and Scope of Genetics\nAn inaugural lecture delivered 23 October 1908', 'Bateson, William', '2016-06-12', 14, 'https://www.gutenberg.org/ebooks/52312', 'en', 3049), +(45358, 'The Barrier', 'Beach, Rex', '2003-05-01', 59, 'https://www.gutenberg.org/ebooks/4082', 'en', 323), +(45359, 'U.S. Copyright Renewals, 1974 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/11849', 'en', 4170), +(45360, 'The Log of a Sea-Waif: Being Recollections of the First Four Years of My Sea Life', 'Bullen, Frank Thomas', '2011-07-08', 16, 'https://www.gutenberg.org/ebooks/36657', 'en', 324), +(45361, 'The Ear in the Wall', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/5150', 'en', 128), +(45362, 'Cleopatra\'s Needle\nA History of the London Obelisk, with an Exposition of the Hieroglyphics', 'King, James, Vicar of St. Mary\'s, Berwick-upon-Tweed', '2011-10-18', 9, 'https://www.gutenberg.org/ebooks/37785', 'en', 15925), +(45363, 'L\'Illustration, No. 1609, 27 décembre 1873', 'Various', '2013-11-24', 8, 'https://www.gutenberg.org/ebooks/44277', 'fr', 150), +(45364, 'Het Vatikaan\r\nDe Aarde en haar Volken, 1873', 'Anonymous', '2004-12-29', 12, 'https://www.gutenberg.org/ebooks/14507', 'nl', 15926), +(45365, 'Watermelon Mystery at Sugar Creek', 'Hutchens, Paul', '2019-01-06', 16, 'https://www.gutenberg.org/ebooks/58628', 'en', 3242), +(45366, 'The Carmina of Caius Valerius Catullus', 'Catullus, Gaius Valerius', '2007-03-03', 59, 'https://www.gutenberg.org/ebooks/20732', 'en', 15927), +(45367, 'The New England Magazine, Volume 1, No. 4, Bay State Monthly, Volume 4, No. 4, April, 1886', 'Various', '2008-04-14', 13, 'https://www.gutenberg.org/ebooks/25072', 'en', 1593), +(45368, 'Árnyképek', 'Jókai, Mór', '2018-02-16', 20, 'https://www.gutenberg.org/ebooks/56580', 'hu', 234), +(45369, 'The Exploits of Brigadier Gerard', 'Doyle, Arthur Conan', '2004-02-01', 84, 'https://www.gutenberg.org/ebooks/11247', 'en', 4751), +(45370, 'The Divine Comedy of Dante Alighieri: The Inferno', 'Dante Alighieri', '2012-12-02', 576, 'https://www.gutenberg.org/ebooks/41537', 'en', 2212), +(45371, 'Thirty', 'O\'Brien, Howard Vincent', '2010-07-08', 24, 'https://www.gutenberg.org/ebooks/33117', 'en', 154), +(45372, 'Joy and Power: Three Messages with One Meaning', 'Van Dyke, Henry', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/10395', 'en', 5763), +(45373, 'Five Years Under the Southern Cross: Experiences and Impressions', 'Spurr, Frederic C. (Frederic Chambers)', '2018-07-06', 4, 'https://www.gutenberg.org/ebooks/57452', 'en', 767), +(45374, 'Up Terrapin River', 'Read, Opie Percival', '2014-02-13', 17, 'https://www.gutenberg.org/ebooks/44879', 'en', 5049), +(45375, 'Susikoira', 'London, Jack', '2014-03-24', 14, 'https://www.gutenberg.org/ebooks/45197', 'fi', 1887), +(45376, 'Top-of-the-World Stories for Boys and Girls\r\nTranslated from the Scandinavian Languages', NULL, '2011-06-19', 27, 'https://www.gutenberg.org/ebooks/36465', 'en', 15928), +(45377, 'Chambers\'s Journal of Popular Literature, Science, and Art, Index for 1877', 'Various', '2016-05-21', 5, 'https://www.gutenberg.org/ebooks/52120', 'en', 18), +(45378, 'Political Thought in England from Locke to Bentham', 'Laski, Harold Joseph', '2005-01-19', 38, 'https://www.gutenberg.org/ebooks/14735', 'en', 15929), +(45379, 'A Short History of Greek Philosophy', 'Marshall, J. (John)', '2007-02-01', 164, 'https://www.gutenberg.org/ebooks/20500', 'en', 2286), +(45380, 'The Inside of the Cup — Volume 07', 'Churchill, Winston', '2004-10-17', 12, 'https://www.gutenberg.org/ebooks/5362', 'en', 7916), +(45381, 'Young Oliver: or the Thoughtless Boy. A Tale', 'Anonymous', '2013-10-26', 5, 'https://www.gutenberg.org/ebooks/44045', 'en', 195), +(45382, 'Le tour du monde en quatre-vingts jours', 'Verne, Jules', '1997-01-01', 240, 'https://www.gutenberg.org/ebooks/800', 'fr', 323), +(45383, 'Ivanhoe (2/4)\nLe retour du croisé', 'Scott, Walter', '2010-11-15', 18, 'https://www.gutenberg.org/ebooks/34332', 'fr', 4019), +(45384, 'Saved by the Lifeboat', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 27, 'https://www.gutenberg.org/ebooks/23385', 'en', 15930), +(45385, 'Beówulf\r\nAngelsaksisch volksepos vertaald in stafrijm en met inleiding en aanteekeningen voorzien', NULL, '2015-12-12', 14, 'https://www.gutenberg.org/ebooks/50677', 'nl', 7513), +(45386, 'In het gebied van het Tsadmeer met de expeditie Tilho\r\nDe Aarde en haar Volken, 1910', 'Roserot de Melin, L.', '2005-06-14', 4, 'https://www.gutenberg.org/ebooks/16062', 'nl', 15931), +(45387, 'Bulgaria', 'Fox, Frank', '2007-08-06', 62, 'https://www.gutenberg.org/ebooks/22257', 'en', 8013), +(45388, 'Springhaven: A Tale of the Great War', 'Blackmore, R. D. (Richard Doddridge)', '2006-06-06', 25, 'https://www.gutenberg.org/ebooks/7435', 'en', 6695), +(45389, 'Six Little Bunkers at Cowboy Jack\'s', 'Hope, Laura Lee', '2006-11-14', 12, 'https://www.gutenberg.org/ebooks/19816', 'en', 31), +(45390, 'The Believing Years', 'Pearson, Edmund Lester', '2014-08-28', 21, 'https://www.gutenberg.org/ebooks/46712', 'en', 15932), +(45391, 'Saudades: história de menina e moça', 'Ribeiro, Bernardim', '2009-01-06', 39, 'https://www.gutenberg.org/ebooks/27725', 'pt', 671), +(45392, 'Knots, Splices and Rope Work\r\nA Practical Treatise Giving Complete and Simple Directions for Making All the Most Useful and Ornamental Knots in Common Use, with Chapters on Splicing, Pointing, Seizing, Serving, etc.', 'Verrill, A. Hyatt (Alpheus Hyatt)', '2004-09-21', 171, 'https://www.gutenberg.org/ebooks/13510', 'en', 7053), +(45393, 'The Poems of John Donne, Volume 1 (of 2)\r\nEdited from the Old Editions and Numerous Manuscripts', 'Donne, John', '2015-04-12', 255, 'https://www.gutenberg.org/ebooks/48688', 'en', 466), +(45394, 'Maternità: Dramma in quattro atti', 'Bracco, Roberto', '2013-07-20', 8, 'https://www.gutenberg.org/ebooks/43260', 'it', 407), +(45395, 'Lavengro: The Scholar, The Gypsy, The Priest', 'Borrow, George', '2009-12-28', 23, 'https://www.gutenberg.org/ebooks/30792', 'en', 95), +(45396, 'The Works of Edgar Allan Poe — Volume 1', 'Poe, Edgar Allan', '2000-04-01', 2466, 'https://www.gutenberg.org/ebooks/2147', 'en', 359), +(45397, 'Crestlands: A Centennial Story of Cane Ridge', 'Bayne, Mary Addams', '2010-03-14', 31, 'https://www.gutenberg.org/ebooks/31640', 'en', 12022), +(45398, 'The Lady of the Shroud', 'Stoker, Bram', '2002-02-01', 153, 'https://www.gutenberg.org/ebooks/3095', 'en', 461), +(45399, 'The Black Patch', 'Hume, Fergus', '2017-08-08', 16, 'https://www.gutenberg.org/ebooks/55305', 'en', 1425), +(45400, 'The Sorrows of a Show Girl\r\nA Story of the Great \"White Way\"', 'McGaffey, Kenneth', '2003-12-01', 30, 'https://www.gutenberg.org/ebooks/10508', 'en', 4881), +(45401, 'The Threatening Eye', 'Knight, E. F. (Edward Frederick)', '2012-07-19', 13, 'https://www.gutenberg.org/ebooks/40278', 'en', 61), +(45402, 'Stories from the Greek Tragedians', 'Church, Alfred John', '2005-02-09', 16, 'https://www.gutenberg.org/ebooks/14994', 'en', 15933), +(45403, 'Les amours d\'une empoisonneuse', 'Gaboriau, Emile', '2011-12-21', 27, 'https://www.gutenberg.org/ebooks/38362', 'fr', 15934), +(45404, 'Beaucoup de Bruit pour Rien', 'Shakespeare, William', '2005-05-17', 35, 'https://www.gutenberg.org/ebooks/15846', 'fr', 15935), +(45405, 'The Standardized Man', 'Bartholomew, Stephen', '2010-06-02', 26, 'https://www.gutenberg.org/ebooks/32658', 'en', 26), +(45406, 'The Confession', 'Rinehart, Mary Roberts', '1999-11-01', 38, 'https://www.gutenberg.org/ebooks/1963', 'en', 61), +(45407, 'The Slanderers', 'Deeping, Warwick', '2018-11-16', 15, 'https://www.gutenberg.org/ebooks/58287', 'en', 15936), +(45408, 'The Journal of the Maine Ornithological Society, Vol. XI. No. 2', 'Various', '2019-04-25', 3, 'https://www.gutenberg.org/ebooks/59355', 'en', 15937), +(45409, 'Solander\'s Radio Tomb', 'Butler, Ellis Parker', '2008-10-09', 38, 'https://www.gutenberg.org/ebooks/26856', 'en', 179), +(45410, 'Mr. Punch Awheel: The Humours of Motoring and Cycling', NULL, '2009-06-01', 21, 'https://www.gutenberg.org/ebooks/29022', 'en', 15938), +(45411, 'De Koopman van Venetië', 'Shakespeare, William', '2016-02-06', 23, 'https://www.gutenberg.org/ebooks/51138', 'nl', 4869), +(45412, 'Sherlock Holmes: De Agra-Schat', 'Doyle, Arthur Conan', '2010-01-11', 79, 'https://www.gutenberg.org/ebooks/30933', 'nl', 834), +(45413, 'Punch, or the London Charivari, Vol. 158, 1920-05-05', 'Various', '2007-11-16', 13, 'https://www.gutenberg.org/ebooks/23518', 'en', 134), +(45414, 'McClure\'s Magazine, Vol. 1, No. 6, November 1893', 'Various', '2015-04-30', 9, 'https://www.gutenberg.org/ebooks/48829', 'en', 883), +(45415, 'Ralph Gurney\'s Oil Speculation', 'Otis, James', '2009-02-04', 24, 'https://www.gutenberg.org/ebooks/27984', 'en', 9095), +(45416, 'Shifting For Himself; or, Gilbert Greyson\'s Fortunes', 'Alger, Horatio, Jr.', '2017-09-22', 14, 'https://www.gutenberg.org/ebooks/55598', 'en', 8611), +(45417, 'The Ragged Trousered Philanthropists', 'Tressell, Robert', '2003-01-01', 349, 'https://www.gutenberg.org/ebooks/3608', 'en', 15939), +(45418, 'Poems', 'Conant, Henry Reed', '2016-05-01', 4, 'https://www.gutenberg.org/ebooks/51904', 'en', 350), +(45419, 'Georgie\'s Present, or, Tales of Newfoundland', 'Brightwell, C. L. (Cecilia Lucy)', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9332', 'en', 2112), +(45420, 'Arrows of the Chace, vol. 2/2\r\nbeing a collection of scattered letters published chiefly in the daily newspapers 1840-1880', 'Ruskin, John', '2015-01-18', 13, 'https://www.gutenberg.org/ebooks/48015', 'en', 9059), +(45421, 'Famous Adventures and Prison Escapes of the Civil War', 'Shelton, W. H. (William Henry)', '2006-07-06', 66, 'https://www.gutenberg.org/ebooks/18765', 'en', 15940), +(45422, 'Martin Luthers Geistliche Lieder', 'Luther, Martin', '2015-01-03', 15, 'https://www.gutenberg.org/ebooks/47861', 'de', 15941), +(45423, 'Out of the North', 'Sutherland, Howard V. (Howard Vigne)', '2009-06-23', 9, 'https://www.gutenberg.org/ebooks/29210', 'en', 8), +(45424, 'Folk Tales from the Russian', 'De Blumenthal, Kalamatiano', '2004-07-08', 91, 'https://www.gutenberg.org/ebooks/12851', 'en', 10103), +(45425, 'The Book of the Epic: The World\'s Great Epics Told in Story', 'Guerber, H. A. (Hélène Adeline)', '2004-11-08', 30, 'https://www.gutenberg.org/ebooks/13983', 'en', 15942), +(45426, 'Narrative and Miscellaneous Papers', 'De Quincey, Thomas', '2004-07-01', 56, 'https://www.gutenberg.org/ebooks/6148', 'en', 472), +(45427, 'Elizabeth Hobart at Exeter Hall', 'Baird, Jean K. (Jean Katherine)', '2008-08-10', 22, 'https://www.gutenberg.org/ebooks/26258', 'en', 2739), +(45428, 'The Long Night', 'Weyman, Stanley John', '2006-10-07', 13, 'https://www.gutenberg.org/ebooks/19485', 'en', 98), +(45429, 'The Battle of Principles\nA Study of the Heroism and Eloquence of the Anti-Slavery Conflict', 'Hillis, Newell Dwight', '2006-06-11', 55, 'https://www.gutenberg.org/ebooks/18557', 'en', 2268), +(45430, 'Falk: A Reminiscence', 'Conrad, Joseph', '2006-01-09', 75, 'https://www.gutenberg.org/ebooks/493', 'en', 3039), +(45431, 'The Little Match Man', 'Barzini, Luigi', '2017-05-07', 2, 'https://www.gutenberg.org/ebooks/54678', 'en', 15943), +(45432, 'Tomaso\'s Fortune and Other Stories', 'Merriman, Henry Seton', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/6974', 'en', 61), +(45433, 'My Double Life: The Memoirs of Sarah Bernhardt', 'Bernhardt, Sarah', '2005-10-01', 20, 'https://www.gutenberg.org/ebooks/9100', 'en', 11607), +(45434, 'The Land of Evangeline: The Authentic Story of Her Country and Her People\r\nWith Evangeline by H. W. Longfellow', 'Herbin, John Frederic', '2015-02-10', 13, 'https://www.gutenberg.org/ebooks/48227', 'en', 15944), +(45435, 'Sir Ludar\nA Story of the Days of the Great Queen Bess', 'Reed, Talbot Baines', '2007-04-05', 19, 'https://www.gutenberg.org/ebooks/20993', 'en', 15945), +(45436, 'Village Folk-Tales of Ceylon, Volume 3 (of 3)', 'Parker, H. (Henry)', '2019-02-14', 12, 'https://www.gutenberg.org/ebooks/58889', 'en', 3758), +(45437, 'Lettres intimes', 'Berlioz, Hector', '2011-11-27', 13, 'https://www.gutenberg.org/ebooks/38150', 'fr', 15946), +(45438, 'Forging Ahead in Business', 'Alexander Hamilton Institute (U.S.)', '2011-11-05', 9, 'https://www.gutenberg.org/ebooks/37924', 'en', 2351), +(45439, 'A Desperate Voyage', 'Knight, E. F. (Edward Frederick)', '2012-03-09', 21, 'https://www.gutenberg.org/ebooks/39082', 'en', 15947), +(45440, 'Skovstrup-Folk: To Fortællinger', 'Bondesen, Ingvor', '2012-10-27', 6, 'https://www.gutenberg.org/ebooks/41198', 'da', 6055), +(45441, 'The Saddle Boys in the Grand Canyon; or, The Hermit of the Cave', 'Carson, James, Captain', '2007-06-15', 12, 'https://www.gutenberg.org/ebooks/21841', 'en', 5911), +(45442, 'Todellinen aatelismies: Historiallinen romaani', 'Weyman, Stanley John', '2012-09-27', 7, 'https://www.gutenberg.org/ebooks/40876', 'fi', 98), +(45443, 'Concerning Sally', 'Hopkins, William John', '2011-08-18', 97, 'https://www.gutenberg.org/ebooks/37118', 'en', 406), +(45444, 'Maud, and Other Poems', 'Tennyson, Alfred Tennyson, Baron', '2018-04-03', 116, 'https://www.gutenberg.org/ebooks/56913', 'en', 532), +(45445, 'The Knickerbocker, Vol. 10, No. 6, December 1837', 'Various', '2014-04-30', 14, 'https://www.gutenberg.org/ebooks/45538', 'en', 18), +(45446, 'Poems', 'Millay, Edna St. Vincent', '2019-03-31', 46, 'https://www.gutenberg.org/ebooks/59167', 'en', 994), +(45447, 'Success (Second Edition)', 'Beaverbrook, Max Aitken, Baron', '2005-03-04', 14, 'https://www.gutenberg.org/ebooks/15248', 'en', 4065), +(45448, 'Higher Education and Business Standards', 'Hotchkiss, Willard E. (Willard Eugene)', '2009-08-12', 16, 'https://www.gutenberg.org/ebooks/29674', 'en', 7151), +(45449, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 03', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 18, 'https://www.gutenberg.org/ebooks/3862', 'en', 1870), +(45450, 'La cathédrale de Strasbourg pendant la Révolution. (1789-1802)', 'Reuss, Rodolphe', '2006-04-09', 20, 'https://www.gutenberg.org/ebooks/18133', 'fr', 13629), +(45451, 'Seventeen Talks on the Banking Question\r\nBetween Uncle Sam and Mr. Farmer, Mr. Banker, Mr. Lawyer, Mr. Laboringman, Mr. Merchant, Mr. Manufacturer', 'Fowler, Charles N. (Charles Newell)', '2019-08-01', 490, 'https://www.gutenberg.org/ebooks/60029', 'en', 5149), +(45452, 'Among the Hills, and other poems\r\nPart 5 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 8, 'https://www.gutenberg.org/ebooks/9564', 'en', 350), +(45453, 'Journal des Goncourt (Troisième série, deuxième volume)\nMémoires de la vie littéraire', 'Goncourt, Jules de', '2006-03-08', 5, 'https://www.gutenberg.org/ebooks/17947', 'fr', 8974), +(45454, 'Exit Betty', 'Hill, Grace Livingston', '2009-12-25', 52, 'https://www.gutenberg.org/ebooks/30759', 'en', 1397), +(45455, 'The Country of the Dwarfs', 'Du Chaillu, Paul B. (Paul Belloni)', '2015-04-05', 6, 'https://www.gutenberg.org/ebooks/48643', 'en', 15948), +(45456, 'Miscellanea Curiosa, Vol. 1\r\nContaining a collection of some of the principal phaenomena in nature, accounted for by the greatest philosophers of this age', NULL, '2015-08-27', 63, 'https://www.gutenberg.org/ebooks/49791', 'en', 15949), +(45457, 'Öreg szekér fakó hám: Újabb elbeszélések', 'Mikszáth, Kálmán', '2013-03-20', 5, 'https://www.gutenberg.org/ebooks/42379', 'hu', 189), +(45458, 'Oscar Wilde, His Life and Confessions. Volume 2 (of 2)', 'Harris, Frank', '2005-10-17', 34, 'https://www.gutenberg.org/ebooks/16895', 'en', 13856), +(45459, 'The Story of the Philippines\r\nNatural Riches, Industrial Resources, Statistics of Productions, Commerce and Population; The Laws, Habits, Customs, Scenery and Conditions of the Cuba of the East Indies and the Thousand Islands of the Archipelagoes of India and Hawaii, With Episodes of Their Early History; The Eldorado of the Orient; Personal Character Sketches of and Interviews with Admiral Dewey, General Merritt, General Aguinaldo and the Archbishop of Manila; History and Romance, Tragedies and Traditions of our Pacific Possessions; Events of the War in the West with Spain, and the Conquest of Cuba and Porto Rico', 'Halstead, Murat', '2004-05-01', 60, 'https://www.gutenberg.org/ebooks/12409', 'en', 4387), +(45460, 'A Naval Venture: The War Story of an Armoured Cruiser', 'Jeans, T. T. (Thomas Tendron)', '2014-06-13', 31, 'https://www.gutenberg.org/ebooks/45960', 'en', 15071), +(45461, 'New Grub Street', 'Gissing, George', '1999-04-01', 128, 'https://www.gutenberg.org/ebooks/1709', 'en', 1061), +(45462, 'The Great Musicians: Rossini and His School', 'Edwards, H. Sutherland (Henry Sutherland)', '2012-01-09', 13, 'https://www.gutenberg.org/ebooks/38534', 'en', 15950), +(45463, 'Voyage des souverains: Inauguration du Canal de Suez', 'Nicole, Gustave', '2016-12-26', 7, 'https://www.gutenberg.org/ebooks/53805', 'fr', 15951), +(45464, 'Femtio fabler för barn', 'Hey, Wilhelm', '2018-07-13', 18, 'https://www.gutenberg.org/ebooks/57499', 'sv', 859), +(45465, 'All the Brothers Were Valiant', 'Williams, Ben Ames', '2008-06-23', 17, 'https://www.gutenberg.org/ebooks/25885', 'en', 400), +(45466, 'Home Manufacture and Use of Unfermented Grape Juice', 'Husmann, George C. (George Charles)', '2019-05-14', 25, 'https://www.gutenberg.org/ebooks/59503', 'en', 15952), +(45467, 'Piper in the Woods', 'Dick, Philip K.', '2010-06-16', 193, 'https://www.gutenberg.org/ebooks/32832', 'en', 67), +(45468, 'The Children: Some Educational Problems', 'Darroch, Alexander', '2007-05-11', 20, 'https://www.gutenberg.org/ebooks/21419', 'en', 15953), +(45469, 'The World\'s Earliest Music\r\nTraced to Its Beginnings in Ancient Lands by Collected Evidence of Relics, Records, History, and Musical Instruments from Greece, Etruria, Egypt, China, Through Asyria and Babylonia, to the Primitive Home, the Land of Akkad and Sumer', 'Smith, Hermann', '2016-09-13', 38, 'https://www.gutenberg.org/ebooks/53039', 'en', 15954), +(45470, 'Noites de insomnia, offerecidas a quem não póde dormir. Nº 03 (de 12)', 'Castelo Branco, Camilo', '2008-03-30', 8, 'https://www.gutenberg.org/ebooks/24957', 'pt', 410), +(45471, 'The Erotic Motive in Literature', 'Mordell, Albert', '2018-03-18', 106, 'https://www.gutenberg.org/ebooks/56779', 'en', 15955), +(45472, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1602-03', 'Motley, John Lothrop', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/4875', 'en', 3372), +(45473, 'The Return of Peter Grimm\nNovelised From the Play', 'Belasco, David', '2008-01-18', 24, 'https://www.gutenberg.org/ebooks/24359', 'en', 2300), +(45474, 'Robinson Crusoe (II/II)', 'Defoe, Daniel', '2012-01-29', 33, 'https://www.gutenberg.org/ebooks/38706', 'fr', 1336), +(45475, 'Kleine Lebensgemälde in Erzählungen', 'Voss, Julius von', '2019-06-11', 15, 'https://www.gutenberg.org/ebooks/59731', 'de', 253), +(45476, 'Colonel Quaritch, V.C.: A Tale of Country Life', 'Haggard, H. Rider (Henry Rider)', '2004-04-01', 46, 'https://www.gutenberg.org/ebooks/11882', 'en', 1383), +(45477, 'Piccolissima', 'Montgolfier, Adélaïde de', '2003-05-01', 13, 'https://www.gutenberg.org/ebooks/4049', 'en', 1096), +(45478, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 355, February 7, 1829', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/10950', 'en', 133), +(45479, 'Frank among the Rancheros', 'Castlemon, Harry', '2005-12-19', 8, 'https://www.gutenberg.org/ebooks/17349', 'en', 15956), +(45480, 'The Peanut Plant: Its Cultivation And Uses', 'Jones, B. W.', '2009-04-23', 21, 'https://www.gutenberg.org/ebooks/28594', 'en', 15957), +(45481, 'A Key to Uncle Tom\'s Cabin\r\nPresenting the original facts and documents upon which the story is founded. Together with corroborative statements verifying the truth of the work.', 'Stowe, Harriet Beecher', '2017-05-30', 82, 'https://www.gutenberg.org/ebooks/54812', 'en', 1819), +(45482, 'The New Glutton or Epicure', 'Fletcher, Horace', '2014-11-23', 18, 'https://www.gutenberg.org/ebooks/47439', 'en', 7010), +(45483, 'Le diable boiteux, tome I', 'Le Sage, Alain René', '2011-01-20', 23, 'https://www.gutenberg.org/ebooks/35019', 'fr', 687), +(45484, 'Beside Still Waters', 'Sheckley, Robert', '2009-07-18', 102, 'https://www.gutenberg.org/ebooks/29446', 'en', 831), +(45485, 'A Selection of Books Published by Methuen & Co. September 1913', 'Methuen & Co.', '2013-06-18', 6, 'https://www.gutenberg.org/ebooks/42977', 'en', 6345), +(45486, 'Leila or, the Siege of Granada, Book I.', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 10, 'https://www.gutenberg.org/ebooks/9756', 'en', 15958), +(45487, 'Foxglove Manor: A Novel, Volume 1 (of 3)', 'Buchanan, Robert Williams', '2015-03-12', 14, 'https://www.gutenberg.org/ebooks/48471', 'en', 109), +(45488, 'Un dilemme', 'Huysmans, J.-K. (Joris-Karl)', '2007-12-20', 18, 'https://www.gutenberg.org/ebooks/23940', 'fr', 298), +(45489, 'Biographia Epistolaris, Volume 2\r\nbeing The Biographical Supplement of Coleridge\'s Biographia Literaria', 'Coleridge, Samuel Taylor', '2013-07-06', 26, 'https://www.gutenberg.org/ebooks/43099', 'en', 7897), +(45490, 'Kootut teokset 2: Runoelmia 1886-1906', 'Erkko, J. H.', '2006-05-02', 11, 'https://www.gutenberg.org/ebooks/18301', 'fi', 1171), +(45491, 'Les grotesques de la musique', 'Berlioz, Hector', '2011-04-11', 35, 'https://www.gutenberg.org/ebooks/35825', 'fr', 8100), +(45492, 'The Best Made Plans', 'Cole, Everett B.', '2007-10-05', 38, 'https://www.gutenberg.org/ebooks/22892', 'en', 26), +(45493, 'The Conquest of America: A Romance of Disaster and Victory, U.S.A., 1921 A.D.', 'Moffett, Cleveland', '2005-08-01', 142, 'https://www.gutenberg.org/ebooks/8684', 'en', 2659), +(45494, 'Istoria civile del Regno di Napoli, v. 8', 'Giannone, Pietro', '2015-12-07', 8, 'https://www.gutenberg.org/ebooks/50648', 'it', 8306), +(45495, 'Essays — First Series', 'Emerson, Ralph Waldo', '2001-12-01', 284, 'https://www.gutenberg.org/ebooks/2944', 'en', 620), +(45496, 'Pleasures of the telescope\r\nAn Illustrated Guide for Amateur Astronomers and a Popular Description of the Chief Wonders of the Heavens for General Readers', 'Serviss, Garrett Putman', '2009-05-10', 32, 'https://www.gutenberg.org/ebooks/28752', 'en', 15959), +(45497, 'Decision', 'Robinson, Frank M.', '2009-08-12', 37, 'https://www.gutenberg.org/ebooks/29680', 'en', 26), +(45498, 'Histoire de la Nouvelle-France\n(Version 1617)', 'Lescarbot, Marc', '2007-08-08', 27, 'https://www.gutenberg.org/ebooks/22268', 'fr', 6591), +(45499, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 5', 'Goldsmith, Lewis', '2004-12-04', 12, 'https://www.gutenberg.org/ebooks/3896', 'en', 2051), +(45500, 'Knocking the Neighbors', 'Ade, George', '2006-11-16', 26, 'https://www.gutenberg.org/ebooks/19829', 'en', 190), +(45501, 'By Shore and Sedge', 'Harte, Bret', '2000-05-01', 21, 'https://www.gutenberg.org/ebooks/2178', 'en', 50), +(45502, 'Margaret Smith\'s Journal, and Tales and Sketches, Complete\r\nVolume V of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 17, 'https://www.gutenberg.org/ebooks/9590', 'en', 2645), +(45503, 'Some Eminent Women of Our Times: Short Biographical Sketches', 'Fawcett, Millicent Garrett, Dame', '2015-08-23', 26, 'https://www.gutenberg.org/ebooks/49765', 'en', 11246), +(45504, 'The Wedge of Gold', 'Goodwin, C. C. (Charles Carroll)', '2005-10-12', 22, 'https://www.gutenberg.org/ebooks/16861', 'en', 1555), +(45505, 'Europe and the Faith\n\"Sine auctoritate nulla vita\"', 'Belloc, Hilaire', '2005-07-01', 141, 'https://www.gutenberg.org/ebooks/8442', 'en', 10543), +(45506, 'Jane Allen, Right Guard', 'Bancroft, Edith', '2006-08-09', 22, 'https://www.gutenberg.org/ebooks/19015', 'en', 51), +(45507, 'Folk-Tales of Napoleon\r\nNapoleonder from the Russian; The Napoleon of the People from the French of Honoré De Balzac', 'Amfiteatrov, Aleksandr', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11278', 'en', 4854), +(45508, 'Our Little Cossack Cousin in Siberia', 'Postnikov, Fedor Alexis', '2014-06-16', 14, 'https://www.gutenberg.org/ebooks/45994', 'en', 15960), +(45509, 'Henry of Guise; or, The States of Blois (Vol. 2 of 3)', 'James, G. P. R. (George Payne Rainsford)', '2012-04-09', 5, 'https://www.gutenberg.org/ebooks/39412', 'en', 8102), +(45510, 'Memoir and Correspondence of Caroline Herschel', 'Herschel, John, Mrs.', '2016-08-29', 24, 'https://www.gutenberg.org/ebooks/52923', 'en', 15961), +(45511, 'Seven Legs Across the Seas: A Printer\'s Impressions of Many Lands', 'Murray, Samuel', '2012-11-28', 6, 'https://www.gutenberg.org/ebooks/41508', 'en', 885), +(45512, 'A Collection of Gospel Hymns in Ojibway and English\r\nPrinted for International and Colportage Mission of Algoma and the North-west', 'Anonymous', '2010-07-11', 43, 'https://www.gutenberg.org/ebooks/33128', 'nai', 8876), +(45513, 'The Motor Boys on the Atlantic; or, The Mystery of the Lighthouse', 'Young, Clarence', '2014-02-08', 19, 'https://www.gutenberg.org/ebooks/44846', 'en', 10646), +(45514, 'Tijdtafel der geschiedenis van het vaderland\nIn twintig lessen', 'Best, Pieter', '2008-06-22', 11, 'https://www.gutenberg.org/ebooks/25871', 'nl', 1498), +(45515, 'Mitos, supersticiones y supervivencias populares de Bolivia', 'Paredes, M. Rigoberto (Manuel Rigoberto)', '2018-12-08', 20, 'https://www.gutenberg.org/ebooks/58425', 'es', 15962), +(45516, 'Myology and Serology of the Avian Family Fringillidae: A Taxonomic Study', 'Stallcup, William B.', '2010-10-19', 15, 'https://www.gutenberg.org/ebooks/33914', 'en', 15963), +(45517, 'The Island of Gold: A Sailor\'s Yarn', 'Stables, Gordon', '2011-10-01', 9, 'https://www.gutenberg.org/ebooks/37588', 'en', 1229), +(45518, 'Constantinople, painted by Warwick Goble, described by Alexander Van Millingen', 'Van Millingen, Alexander', '2012-05-05', 37, 'https://www.gutenberg.org/ebooks/39620', 'en', 2570), +(45519, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1608a', 'Motley, John Lothrop', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/4881', 'en', 3372), +(45520, 'Many Kingdoms', 'Jordan, Elizabeth Garver', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/5953', 'en', 179), +(45521, 'Barbara Allen', NULL, '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10198', 'en', 9156), +(45522, 'The Three Sisters', 'Sinclair, May', '2004-04-01', 38, 'https://www.gutenberg.org/ebooks/11876', 'en', 7171), +(45523, 'Polish Fairy Tales', 'Gliński, A. J. (Antoni Józef)', '2011-07-08', 204, 'https://www.gutenberg.org/ebooks/36668', 'en', 15964), +(45524, 'Telefoonissa: Yksinäytöksinen kuvaus', 'Benedictsson, Victoria', '2013-11-21', 7, 'https://www.gutenberg.org/ebooks/44248', 'fi', 5375), +(45525, 'L\'Illustration, No. 3727, 1er Août 1914', 'Various', '2004-12-31', 26, 'https://www.gutenberg.org/ebooks/14538', 'fr', 335), +(45526, 'The Last Rebel', 'Altsheler, Joseph A. (Joseph Alexander)', '2019-01-04', 42, 'https://www.gutenberg.org/ebooks/58617', 'en', 4448), +(45527, 'Een Kerstlied in Proza', 'Dickens, Charles', '2009-04-11', 31, 'https://www.gutenberg.org/ebooks/28560', 'nl', 13723), +(45528, 'Michael Penguyne; Or, Fisher Life on the Cornish Coast', 'Kingston, William Henry Giles', '2007-10-25', 26, 'https://www.gutenberg.org/ebooks/23188', 'en', 3823), +(45529, 'La Comédie humaine - Volume 02', 'Balzac, Honoré de', '2013-09-30', 105, 'https://www.gutenberg.org/ebooks/43851', 'fr', 642), +(45530, 'The Disowned — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7638', 'en', 137), +(45531, 'A Damokosok', 'Jókai, Mór', '2017-11-11', 4, 'https://www.gutenberg.org/ebooks/55934', 'hu', 234), +(45532, 'The History of the British Post Office', 'Hemmeon, Joseph Clarence', '2013-06-18', 17, 'https://www.gutenberg.org/ebooks/42983', 'en', 1179), +(45533, 'Psychologies', 'Ross, Ronald, Sir', '2015-03-13', 12, 'https://www.gutenberg.org/ebooks/48485', 'en', 402), +(45534, 'Georgicon', 'Virgil', '1995-03-01', 126, 'https://www.gutenberg.org/ebooks/231', 'la', 8094), +(45535, 'Dress Design: An Account of Costume for Artists & Dressmakers', 'Hughes, Talbot', '2011-01-10', 121, 'https://www.gutenberg.org/ebooks/34903', 'en', 1520), +(45536, 'Rules and regulations governing maternity hospitals and homes ... September, 1922', 'California. State Board of Charities and Corrections', '2008-12-13', 10, 'https://www.gutenberg.org/ebooks/27528', 'en', 15965), +(45537, 'The Logic of Hegel', 'Hegel, Georg Wilhelm Friedrich', '2017-07-13', 79, 'https://www.gutenberg.org/ebooks/55108', 'en', 4797), +(45538, 'Peines d\'amour perdues\nComédie', 'Shakespeare, William', '2006-09-09', 16, 'https://www.gutenberg.org/ebooks/19227', 'fr', 15130), +(45539, 'Indian Tribes of the Upper Missouri\r\nEdited with Notes and Biographical Sketch', 'Denig, Edwin Thompson', '2015-07-31', 15, 'https://www.gutenberg.org/ebooks/49557', 'en', 15966), +(45540, 'An Ounce of Cure', 'Nourse, Alan Edward', '2007-10-03', 56, 'https://www.gutenberg.org/ebooks/22866', 'en', 7056), +(45541, 'Mr. Honey\'s Banking Dictionary (German-English)', 'Honig, Winfried', '2002-06-01', 13, 'https://www.gutenberg.org/ebooks/3298', 'de', 5007), +(45542, 'In the Heart of the Rockies: A Story of Adventure in Colorado', 'Henty, G. A. (George Alfred)', '2005-08-01', 24, 'https://www.gutenberg.org/ebooks/8670', 'en', 3242), +(45543, 'Verspreide Opstellen, I', 'Ligthart, Jan', '2011-12-24', 6, 'https://www.gutenberg.org/ebooks/38396', 'nl', 15967), +(45544, 'The Silent Places', 'White, Stewart Edward', '2005-02-07', 36, 'https://www.gutenberg.org/ebooks/14960', 'en', 1357), +(45545, 'Patroclus and Penelope: A Chat in the Saddle', 'Dodge, Theodore Ayrault', '2012-03-24', 13, 'https://www.gutenberg.org/ebooks/39244', 'en', 2240), +(45546, 'Notes and Queries, Number 190, June 18, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-15', 21, 'https://www.gutenberg.org/ebooks/20369', 'en', 105), +(45547, 'Index of the Project Gutenberg Works of Henry David Thoreau', 'Thoreau, Henry David', '2018-11-11', 34, 'https://www.gutenberg.org/ebooks/58273', 'en', 198), +(45548, 'The Divine Comedy, Volume 3, Paradise', 'Dante Alighieri', '1999-12-01', 78, 'https://www.gutenberg.org/ebooks/1997', 'en', 2212), +(45549, 'The History of Korea (vol. 2 of 2)', 'Hulbert, Homer B. (Homer Bezaleel)', '2016-08-08', 37, 'https://www.gutenberg.org/ebooks/52749', 'en', 15968), +(45550, 'Famous Men of Science', 'Bolton, Sarah Knowles', '2011-03-06', 42, 'https://www.gutenberg.org/ebooks/35489', 'en', 2928), +(45551, 'Student Body', 'Wallace, F. L. (Floyd L.)', '2010-03-29', 34, 'https://www.gutenberg.org/ebooks/31815', 'en', 67), +(45552, 'The Pulpit Of The Reformation, Nos. 1, 2, 3 and 4.', 'Latimer, Hugh', '2009-02-16', 11, 'https://www.gutenberg.org/ebooks/28104', 'en', 717), +(45553, 'Histoire de l\'Afrique Septentrionale (Berbérie) depuis les temps les plus reculés jusqu\'à la conquête française (1830) ( Volume I)', 'Mercier, Ernest', '2009-02-02', 13, 'https://www.gutenberg.org/ebooks/27970', 'fr', 15969), +(45554, 'The Lives of the Saints, Volume 01 (of 16): January', 'Baring-Gould, S. (Sabine)', '2014-09-24', 56, 'https://www.gutenberg.org/ebooks/46947', 'en', 662), +(45555, 'Actas capitulares desde el 21 hasta el 25 de mayo de 1810 en Buenos Aires', 'Anonymous', '2006-10-27', 30, 'https://www.gutenberg.org/ebooks/19643', 'es', 15970), +(45556, 'Le bocche inutili: dramma in tre atti', 'Vivanti, Annie', '2015-06-04', 18, 'https://www.gutenberg.org/ebooks/49133', 'it', 10851), +(45557, '\"I\'ll Leave It To You\": A Light Comedy In Three Acts', 'Coward, Noel', '2010-01-20', 40, 'https://www.gutenberg.org/ebooks/31029', 'en', 14284), +(45558, 'Capitalistic Musings', 'Vaknin, Samuel', '2005-06-01', 34, 'https://www.gutenberg.org/ebooks/8214', 'en', 1745), +(45559, 'Mammals of the Southwest Mountains and Mesas', 'Olin, George', '2016-01-01', 21, 'https://www.gutenberg.org/ebooks/50822', 'en', 15971), +(45560, 'The Kingdom of God is Within You; What is Art?', 'Tolstoy, Leo, graf', '2013-08-07', 71, 'https://www.gutenberg.org/ebooks/43409', 'en', 2290), +(45561, 'Ferien vom Ich', 'Keller, Paul', '2009-05-23', 20, 'https://www.gutenberg.org/ebooks/28938', 'de', 549), +(45562, 'Outlines of a Mechanical Theory of Storms\nContaining the True Law of Lunar Influence', 'Bassnett, Thomas', '2006-07-08', 12, 'https://www.gutenberg.org/ebooks/18791', 'en', 2085), +(45563, 'Life and Letters of Robert Browning', 'Browning, Robert', '2006-01-21', 59, 'https://www.gutenberg.org/ebooks/655', 'en', 7835), +(45564, 'The Two Elsies\r\nA Sequel to Elsie at Nantucket', 'Finley, Martha', '2004-09-06', 42, 'https://www.gutenberg.org/ebooks/13379', 'en', 470), +(45565, 'The Gunner\'s Examiner', 'Cloke, Harold E. (Harold Edward)', '2015-01-06', 10, 'https://www.gutenberg.org/ebooks/47895', 'en', 15972), +(45566, 'Apicii librorum X qui dicuntur De re coquinaria quae extant', 'Apicius', '2005-08-04', 75, 'https://www.gutenberg.org/ebooks/16439', 'la', 3411), +(45567, 'John Leech\'s Pictures of Life and Character, Vol. 1 (of 3)\r\nFrom the Collection of \"Mr. Punch\"', 'Leech, John', '2014-07-21', 9, 'https://www.gutenberg.org/ebooks/46349', 'en', 2965), +(45568, 'The Argonautica', 'Apollonius, Rhodius', '2004-11-08', 36, 'https://www.gutenberg.org/ebooks/13977', 'en', 7767), +(45569, 'A Child of the Sea; and Life Among the Mormons', 'Williams, Elizabeth Whitney', '2010-12-28', 22, 'https://www.gutenberg.org/ebooks/34769', 'en', 15973), +(45570, 'Blackwood\'s Edinburgh Magazine, Vol 58, No. 357, July 1845', 'Various', '2009-03-15', 15, 'https://www.gutenberg.org/ebooks/28336', 'en', 711), +(45571, 'The Grey Man', 'Crockett, S. R. (Samuel Rutherford)', '2015-06-27', 21, 'https://www.gutenberg.org/ebooks/49301', 'en', 1909), +(45572, 'The Bible, King James version, Book 26: Ezekiel', 'Anonymous', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/8026', 'en', 11615), +(45573, 'Memoirs of Aaron Burr, Complete', 'Burr, Aaron', '2005-04-01', 68, 'https://www.gutenberg.org/ebooks/7852', 'en', 15974), +(45574, 'Badge of Infamy', 'Del Rey, Lester', '2006-10-05', 102, 'https://www.gutenberg.org/ebooks/19471', 'en', 26), +(45575, 'Memories of Jane Cunningham Croly, \"Jenny June\"', 'Woman\'s Press Club of New York City', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12099', 'en', 15975), +(45576, 'Tales of St. Austin\'s', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 157, 'https://www.gutenberg.org/ebooks/6980', 'en', 1779), +(45577, 'The Princess of Cleves', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '1996-03-01', 155, 'https://www.gutenberg.org/ebooks/467', 'en', 5233), +(45578, 'A Guide to Peterborough Cathedral\r\nComprising a brief history of the monastery from its foundation to the present time, with a descriptive account of its architectural peculiarities and recent improvements; compiled from the works of Gunton, Britton, and original & authentic documents', 'Phillips, George S. (George Searle)', '2007-04-03', 32, 'https://www.gutenberg.org/ebooks/20967', 'en', 15976), +(45579, 'Anna Karenina', 'Tolstoy, Leo, graf', '1998-07-01', 5022, 'https://www.gutenberg.org/ebooks/1399', 'en', 434), +(45580, 'History of Lace', 'Palliser, Bury, Mrs.', '2018-04-21', 26, 'https://www.gutenberg.org/ebooks/57009', 'en', 13063), +(45581, 'The Romance of Polar Exploration\r\nInteresting Descriptions of Arctic and Antarctic Adventure from the Earliest Time to the Voyage of the \"“Discovery”\"', 'Scott, G. Firth', '2011-07-20', 25, 'https://www.gutenberg.org/ebooks/36802', 'en', 5605), +(45582, 'The Peril Finders', 'Fenn, George Manville', '2008-05-11', 26, 'https://www.gutenberg.org/ebooks/25429', 'en', 11147), +(45583, 'Notes and Queries, Vol. IV, Number 105, November 1, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-03-07', 11, 'https://www.gutenberg.org/ebooks/39076', 'en', 105), +(45584, 'Felix Holt, the Radical', 'Eliot, George', '2012-09-28', 128, 'https://www.gutenberg.org/ebooks/40882', 'en', 48), +(45585, 'The Good Englishwoman', 'Williams, Orlo', '2018-10-06', 11, 'https://www.gutenberg.org/ebooks/58041', 'en', 1650), +(45586, 'Solomon', 'Woolson, Constance Fenimore', '2012-02-27', 4, 'https://www.gutenberg.org/ebooks/38998', 'en', 112), +(45587, 'Korean—English Dictionary', 'Kuperman, Leon', '2004-05-01', 455, 'https://www.gutenberg.org/ebooks/5739', 'ko', 15977), +(45588, 'George Washington Birthplace National Monument, Virginia', 'Hudson, J. Paul', '2018-09-02', 12, 'https://www.gutenberg.org/ebooks/57835', 'en', 15978), +(45589, 'The American Journal of Photography, Vol. XI, No. 7, July 1890', 'Various', '2019-04-03', 15, 'https://www.gutenberg.org/ebooks/59193', 'en', 15979), +(45590, 'The Visions of Quevedo', 'Quevedo, Francisco de', '2013-01-30', 17, 'https://www.gutenberg.org/ebooks/41950', 'en', 9019), +(45591, 'Young Tom Bowling\nThe Boys of the British Navy', 'Hutcheson, John C. (John Conroy)', '2007-04-15', 38, 'https://www.gutenberg.org/ebooks/21089', 'en', 3535), +(45592, 'In Search of El Dorado: A Wanderer\'s Experiences', 'MacDonald, Alexander', '2012-12-01', 12, 'https://www.gutenberg.org/ebooks/41530', 'en', 885), +(45593, 'The American Missionary — Volume 35, No. 10, October, 1881', 'Various', '2018-02-17', 4, 'https://www.gutenberg.org/ebooks/56587', 'en', 562), +(45594, 'The Apartment Next Door', 'Johnston, William', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/11240', 'en', 579), +(45595, 'A Letter from Major Robert Carmichael-Smyth to His Friend, the Author of \'The Clockmaker\'', 'Carmichael-Smyth, Robert', '2008-04-15', 12, 'https://www.gutenberg.org/ebooks/25075', 'en', 15980), +(45596, 'The Reminiscences of Sir Henry Hawkins (Baron Brampton)', 'Brampton, Henry Hawkins, Baron', '2003-12-01', 21, 'https://www.gutenberg.org/ebooks/10392', 'en', 15981), +(45597, 'The Frozen North', 'Mayde, Richard', '2018-07-06', 13, 'https://www.gutenberg.org/ebooks/57455', 'en', 5605), +(45598, 'Corporal \'Lige\'s Recruit: A Story of Crown Point and Ticonderoga', 'Otis, James', '2010-07-08', 21, 'https://www.gutenberg.org/ebooks/33110', 'en', 2843), +(45599, 'The History of Korea (vol. 1 of 2)', 'Hulbert, Homer B. (Homer Bezaleel)', '2016-05-22', 114, 'https://www.gutenberg.org/ebooks/52127', 'en', 15968), +(45600, 'King Arthur and the Knights of the Round Table', 'Malory, Thomas, Sir', '2011-06-18', 661, 'https://www.gutenberg.org/ebooks/36462', 'en', 5637), +(45601, 'The Launch Boys\' Adventures in Northern Waters', 'Ellis, Edward Sylvester', '2008-06-20', 18, 'https://www.gutenberg.org/ebooks/25849', 'en', 141), +(45602, 'Troy and Its Remains\r\nA Narrative of Researches and Discoveries Made on the Site of Ilium and in the Trojan Plain', 'Schliemann, Heinrich', '2014-03-23', 49, 'https://www.gutenberg.org/ebooks/45190', 'en', 15982), +(45603, 'Runous ja runouden muodot: Kirjoitelmia. Runoja.', 'Godenhjelm, B. F. (Bernhard Fredrik)', '2013-10-26', 8, 'https://www.gutenberg.org/ebooks/44042', 'fi', 20), +(45604, 'Richard Carvel — Volume 01', 'Churchill, Winston', '2004-10-18', 29, 'https://www.gutenberg.org/ebooks/5365', 'en', 1293), +(45605, 'Histoire de Napoléon et de la Grande-Armée pendant l\'année 1812\nTome II', 'Ségur, Philippe-Paul, comte de', '2007-02-02', 16, 'https://www.gutenberg.org/ebooks/20507', 'fr', 3598), +(45606, 'The Adventures of Unc\' Billy Possum', 'Burgess, Thornton W. (Thornton Waldo)', '2005-01-19', 44, 'https://www.gutenberg.org/ebooks/14732', 'en', 625), +(45607, 'Clio', 'France, Anatole', '2015-12-11', 13, 'https://www.gutenberg.org/ebooks/50670', 'en', 15983), +(45608, 'Crown and Sceptre: A West Country Story', 'Fenn, George Manville', '2007-11-06', 13, 'https://www.gutenberg.org/ebooks/23382', 'en', 1361), +(45609, 'The William Henry Letters', 'Diaz, Abby Morton', '2010-11-15', 18, 'https://www.gutenberg.org/ebooks/34335', 'en', 1001), +(45610, 'Hunted Down: The Detective Stories of Charles Dickens', 'Dickens, Charles', '1997-02-01', 231, 'https://www.gutenberg.org/ebooks/807', 'en', 3511), +(45611, 'Het beleg en de verdediging van Haarlem, in 1572-1573 (deel 2 van 3)', 'Capelle, J. van de', '2014-08-28', 12, 'https://www.gutenberg.org/ebooks/46715', 'nl', 3372), +(45612, 'On Nothing & Kindred Subjects', 'Belloc, Hilaire', '2005-02-01', 79, 'https://www.gutenberg.org/ebooks/7432', 'en', 20), +(45613, 'A Book of English Prose\nPart II, Arranged for Secondary and High Schools', 'Lubbock, Percy', '2006-11-14', 18, 'https://www.gutenberg.org/ebooks/19811', 'en', 12699), +(45614, 'Lippincott\'s Magazine of Popular Literature and Science, Vol. 22, September, 1878', 'Various', '2007-08-05', 44, 'https://www.gutenberg.org/ebooks/22250', 'en', 162), +(45615, 'Wise or Otherwise', 'Leavitt, Lydia', '2005-06-14', 15, 'https://www.gutenberg.org/ebooks/16065', 'en', 5699), +(45616, 'The Song of Hiawatha: An Epic Poem', 'Longfellow, Henry Wadsworth', '2009-12-29', 63, 'https://www.gutenberg.org/ebooks/30795', 'en', 11185), +(45617, 'Extracts from the Diary of William Bray', 'Bray, William', '2000-04-01', 14, 'https://www.gutenberg.org/ebooks/2140', 'en', 12005), +(45618, 'Captured by the Arabs', 'Foster, James H.', '2013-07-20', 20, 'https://www.gutenberg.org/ebooks/43267', 'en', 323), +(45619, 'In Bohemia with Du Maurier: The First of a Series of Reminiscences', 'Moscheles, Felix', '2004-09-24', 29, 'https://www.gutenberg.org/ebooks/13517', 'en', 15984), +(45620, 'Masterpieces of Mystery in Four Volumes: Ghost Stories', NULL, '2009-01-06', 76, 'https://www.gutenberg.org/ebooks/27722', 'en', 531), +(45621, 'Princo Serebrjanij', 'Tolstoy, Aleksey Konstantinovich, graf', '2017-08-08', 16, 'https://www.gutenberg.org/ebooks/55302', 'eo', 10003), +(45622, 'Woman\'s Endurance', 'Luckhoff, A. D. (August D.)', '2005-10-12', 19, 'https://www.gutenberg.org/ebooks/16859', 'en', 15985), +(45623, 'Kept for the Master\'s Use', 'Havergal, Frances Ridley', '2010-03-15', 24, 'https://www.gutenberg.org/ebooks/31647', 'en', 1130), +(45624, 'The Conquest of New France; A Chronicle of the Colonial Wars', 'Wrong, George McKinnon', '2002-02-01', 36, 'https://www.gutenberg.org/ebooks/3092', 'en', 15986), +(45625, 'The Curry Cook\'s Assistant\r\nOr, Curries, How to Make Them in England in Their Original Style', 'Santiagoe, Daniel', '2010-10-20', 70, 'https://www.gutenberg.org/ebooks/34107', 'en', 12075), +(45626, 'Tristano e l\'ombra: Commedia romantica in tre atti', 'Stefani, Alessandro de', '2015-11-12', 11, 'https://www.gutenberg.org/ebooks/50442', 'it', 407), +(45627, '100 New Yorkers of the 1970s', 'Millard, Max', '2005-12-24', 112, 'https://www.gutenberg.org/ebooks/17385', 'en', 15987), +(45628, 'Introduction to the Literature of Europe in the Fifteenth, Sixteenth, and Seventeenth Centuries, Vol. 2', 'Hallam, Henry', '2013-10-02', 7, 'https://www.gutenberg.org/ebooks/43869', 'en', 2145), +(45629, 'The Ancient History of the Egyptians, Carthaginians, Assyrians,\r\nBabylonians, Medes and Persians, Macedonians and Grecians\r\n(Vol. 1 of 6)', 'Rollin, Charles', '2009-04-11', 38, 'https://www.gutenberg.org/ebooks/28558', 'en', 1368), +(45630, 'The Mathematicall Praeface to Elements of Geometrie of Euclid of Megara', 'Dee, John', '2007-07-13', 135, 'https://www.gutenberg.org/ebooks/22062', 'en', 9920), +(45631, 'The Turtles of Tasman', 'London, Jack', '2005-07-10', 79, 'https://www.gutenberg.org/ebooks/16257', 'en', 179), +(45632, 'From Kitchen to Garret: Hints for young householders', 'Panton, J. E. (Jane Ellen)', '2016-03-28', 27, 'https://www.gutenberg.org/ebooks/51590', 'en', 3407); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(45633, 'Œuvres de P. Corneille, Tome 05', 'Corneille, Pierre', '2014-08-07', 17, 'https://www.gutenberg.org/ebooks/46527', 'fr', 5816), +(45634, 'Select Speeches of Daniel Webster, 1817-1845', 'Webster, Daniel', '2005-02-01', 12, 'https://www.gutenberg.org/ebooks/7600', 'en', 429), +(45635, 'Stories from the Odyssey', 'Homer', '2004-10-12', 64, 'https://www.gutenberg.org/ebooks/13725', 'en', 5897), +(45636, 'The Turn of the Screw', 'James, Henry', '1995-02-01', 2413, 'https://www.gutenberg.org/ebooks/209', 'en', 2811), +(45637, 'Select Masterpieces of Biblical Literature', NULL, '2008-12-12', 10, 'https://www.gutenberg.org/ebooks/27510', 'en', 10982), +(45638, 'The Woman-Haters', 'Lincoln, Joseph Crosby', '2006-05-17', 20, 'https://www.gutenberg.org/ebooks/2372', 'en', 637), +(45639, 'Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910, Start/End Papers\nThe New York Tunnel Extension of the Pennsylvania Railroad', 'Various', '2013-06-28', 7, 'https://www.gutenberg.org/ebooks/43055', 'en', 8219), +(45640, 'Catholic Colonization in Minnesota\nRevised Edition', 'Catholic Colonization Bureau', '2013-02-24', 7, 'https://www.gutenberg.org/ebooks/42187', 'en', 15988), +(45641, 'Observations critiques sur l\'archélogie dite préhistorique, spécialement en ce qui concerne la race celtique (1879)', 'Robiou de La Tréhonnais, Félix Marie Louis Jean', '2010-03-02', 22, 'https://www.gutenberg.org/ebooks/31475', 'fr', 15989), +(45642, 'War Poetry of the South', NULL, '2005-08-01', 32, 'https://www.gutenberg.org/ebooks/8648', 'en', 15990), +(45643, 'Carlos und Nicolás', 'Schmied, Rudolf Johannes', '2017-07-17', 6, 'https://www.gutenberg.org/ebooks/55130', 'de', 14799), +(45644, 'Jumalainen näytelmä: Kiirastuli', 'Dante Alighieri', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11072', 'fi', 8), +(45645, '李義山詩集', 'Li, Shangyin', '2008-04-30', 24, 'https://www.gutenberg.org/ebooks/25247', 'zh', 9521), +(45646, 'Humus', 'Brandão, Raul', '2012-05-05', 32, 'https://www.gutenberg.org/ebooks/39618', 'pt', 2716), +(45647, 'Trees of Indiana\nFirst Revised Edition (Publication No. 13, Department of Conservation, State of Indiana)', 'Deam, Charles Clemon', '2012-12-26', 12, 'https://www.gutenberg.org/ebooks/41702', 'en', 15991), +(45648, 'Observations on the Present State of the Affairs of the River Plate', 'Baines, Thomas', '2010-08-02', 7, 'https://www.gutenberg.org/ebooks/33322', 'en', 15992), +(45649, 'The Winds of Time', 'Schmitz, James H.', '2008-01-21', 100, 'https://www.gutenberg.org/ebooks/24395', 'en', 26), +(45650, 'The changing world, and lectures to theosophical students.\r\nFifteen lectures delivered in London during May, June, and July, 1909', 'Besant, Annie', '2018-08-10', 20, 'https://www.gutenberg.org/ebooks/57667', 'en', 746), +(45651, 'The Adventures of Roderick Random', 'Smollett, T. (Tobias)', '2003-05-01', 129, 'https://www.gutenberg.org/ebooks/4085', 'en', 10056), +(45652, 'The Mystery of Francis Bacon', 'Smedley, William T. (William Thomas)', '2011-07-07', 17, 'https://www.gutenberg.org/ebooks/36650', 'en', 15993), +(45653, 'Alewijn, de Lijfeigene: Historisch verhaal uit de 12e eeuw', 'Molt, E.', '2016-06-12', 11, 'https://www.gutenberg.org/ebooks/52315', 'nl', 14024), +(45654, 'Mrs. Mary Eales\'s receipts. (1733)', 'Eales, Mary', '2007-03-03', 49, 'https://www.gutenberg.org/ebooks/20735', 'en', 15994), +(45655, 'Two Dyaloges (c. 1549)\r\nWrytten in laten by the famous clerke, D. Erasm[us] of Roterodame, one called Polyphemus or the gospeller, the other dysposyng of thynges and names, translated in to Englyshe by Edmonde Becke.', 'Erasmus, Desiderius', '2004-12-28', 21, 'https://www.gutenberg.org/ebooks/14500', 'en', 3806), +(45656, 'Mars and Its Mystery', 'Morse, Edward Sylvester', '2013-11-24', 19, 'https://www.gutenberg.org/ebooks/44270', 'en', 14351), +(45657, 'How I Found Livingstone\r\nTravels, adventures, and discoveres in Central Africa, including an account of four months\' residence with Dr. Livingstone, by Henry M. Stanley', 'Stanley, Henry M. (Henry Morton)', '2004-02-01', 126, 'https://www.gutenberg.org/ebooks/5157', 'en', 8363), +(45658, 'Life in an Indian Outpost', 'Casserly, Gordon', '2011-10-17', 133, 'https://www.gutenberg.org/ebooks/37782', 'en', 15995), +(45659, 'Motor Matt\'s Defiance; or, Around the Horn', 'Matthews, Stanley R.', '2015-09-11', 8, 'https://www.gutenberg.org/ebooks/49937', 'en', 4097), +(45660, 'The Little People of the Snow', 'Bryant, William Cullen', '2007-08-26', 64, 'https://www.gutenberg.org/ebooks/22406', 'en', 1007), +(45661, 'Chronica de el-rei D. Pedro I', 'Lopes, Fernão', '2005-09-03', 39, 'https://www.gutenberg.org/ebooks/16633', 'pt', 15996), +(45662, 'Experiments and Observations on the Following Subjects\r\n1. On the preparation, calcination, and medicinal uses of Magnesia Alba. 2. On the solvent qualities of calcined Magnesia. 3. On the variety in the solvent powers of quick-lime, when used in different quantities. 4. On various absorbents, as promoting or retarding putrefaction. 5. On the comparative antiseptic powers of vegetable infusions prepared with lime, &c. 6. On the sweetening properties of fixed air.', 'Henry, Thomas', '2014-06-29', 17, 'https://www.gutenberg.org/ebooks/46143', 'en', 15997), +(45663, 'Ein St.-Johannis-Nachts-Traum', 'Shakespeare, William', '2005-01-01', 16, 'https://www.gutenberg.org/ebooks/7264', 'de', 907), +(45664, 'Sober by Act of Parliament', 'McKenzie, Fred A. (Fred Arthur)', '2010-12-04', 20, 'https://www.gutenberg.org/ebooks/34563', 'en', 15998), +(45665, 'History of the Church of Jesus Christ of Latter-Day Saints, Volume 1\r\nPeriod 1. History of Joseph Smith, the Prophet', 'Smith, Joseph, Jr.', '2014-10-11', 63, 'https://www.gutenberg.org/ebooks/47091', 'en', 7710), +(45666, 'Progress and History', NULL, '2009-01-31', 8, 'https://www.gutenberg.org/ebooks/27948', 'en', 7427), +(45667, 'Haifa; or, Life in modern Palestine', 'Oliphant, Laurence', '2015-09-21', 19, 'https://www.gutenberg.org/ebooks/50026', 'en', 723), +(45668, 'The Tadpoles of Bufo cognatus Say', 'Smith, Hobart M. (Hobart Muir)', '2010-01-18', 11, 'https://www.gutenberg.org/ebooks/31011', 'en', 15999), +(45669, 'Le rêve et la vie - Les filles du feu - La bohème galante', 'Nerval, Gérard de', '2017-09-15', 24, 'https://www.gutenberg.org/ebooks/55554', 'fr', 2508), +(45670, 'Old Cookery Books and Ancient Cuisine', 'Hazlitt, William Carew', '2004-05-01', 101, 'https://www.gutenberg.org/ebooks/12293', 'en', 16000), +(45671, 'Hymns and Spiritual Songs', 'Watts, Isaac', '2004-08-31', 48, 'https://www.gutenberg.org/ebooks/13341', 'en', 8876), +(45672, 'The Delinquent (Vol. IV, No. 1), January, 1914', 'Various', '2017-04-04', 2, 'https://www.gutenberg.org/ebooks/54486', 'en', 4611), +(45673, 'Captain Jim', 'Bruce, Mary Grant', '2008-11-06', 25, 'https://www.gutenberg.org/ebooks/27174', 'en', 146), +(45674, 'Sir Dominick Ferrand', 'James, Henry', '2001-07-01', 38, 'https://www.gutenberg.org/ebooks/2716', 'en', 2255), +(45675, 'English Synonyms and Antonyms\nWith Notes on the Correct Use of Prepositions', 'Fernald, James Champlin', '2009-05-21', 109, 'https://www.gutenberg.org/ebooks/28900', 'en', 9961), +(45676, 'The Vertebrate Skeleton', 'Reynolds, Sidney H. (Sidney Hugh)', '2013-08-09', 23, 'https://www.gutenberg.org/ebooks/43431', 'en', 16001), +(45677, 'Mother West Wind \'Why\' Stories', 'Burgess, Thornton W. (Thornton Waldo)', '2005-02-07', 52, 'https://www.gutenberg.org/ebooks/14958', 'en', 2849), +(45678, 'Le Bossu: Aventures de Cape et d\'Épée. Volume 2', 'Féval, Paul', '2010-09-17', 12, 'https://www.gutenberg.org/ebooks/33746', 'fr', 654), +(45679, 'The Coxon Fund', 'James, Henry', '1998-02-01', 40, 'https://www.gutenberg.org/ebooks/1193', 'en', 61), +(45680, 'Left to Themselves: Being the Ordeal of Philip and Gerald', 'Prime-Stevenson, Edward', '2018-05-23', 17, 'https://www.gutenberg.org/ebooks/57203', 'en', 533), +(45681, 'A Description of Modern Birmingham\nWhereunto Are Annexed Observations Made during an Excursion Round the Town, in the Summer of 1818, Including Warwick and Leamington', 'Pye, Charles', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11416', 'en', 16002), +(45682, 'Barbarians', 'Chambers, Robert W. (Robert William)', '2008-05-27', 37, 'https://www.gutenberg.org/ebooks/25623', 'en', 579), +(45683, 'De Nederlanders in de Philippijnsche Wateren vóór 1626', 'Sloos, Dirk Abraham', '2010-06-05', 9, 'https://www.gutenberg.org/ebooks/32694', 'nl', 16003), +(45684, 'The Flying Boat: A Story of Adventure and Misadventure', 'Strang, Herbert', '2012-11-14', 52, 'https://www.gutenberg.org/ebooks/41366', 'en', 323), +(45685, 'Jackanapes', 'Ewing, Juliana Horatia Gatty', '2007-01-13', 25, 'https://www.gutenberg.org/ebooks/20351', 'en', 8854), +(45686, 'Kaksi', 'Hahnsson, Theodolinda', '2004-11-26', 15, 'https://www.gutenberg.org/ebooks/14164', 'fi', 61), +(45687, 'Progress of Western Education in China and Siam', NULL, '2014-01-07', 16, 'https://www.gutenberg.org/ebooks/44614', 'en', 16004), +(45688, 'A Thorny Path — Volume 04', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5533', 'en', 803), +(45689, 'The Stolen Heiress; or, The Salamanca Doctor Outplotted. A Comedy', 'Centlivre, Susanna', '2011-05-29', 22, 'https://www.gutenberg.org/ebooks/36234', 'en', 5266), +(45690, 'Kahdeksan serkusta', 'Alcott, Louisa May', '2016-08-10', 6, 'https://www.gutenberg.org/ebooks/52771', 'fi', 5372), +(45691, 'The Ayenbite of Inwyt (Remorse of Conscience)\r\nA Translation of Parts into Modern English', 'Laurent, d\'Orléans, active 1279', '2019-05-01', 6, 'https://www.gutenberg.org/ebooks/59399', 'en', 4586), +(45692, 'Santarenaida: poema eroi-comico', 'Figueiredo, Francisco de Paula de', '2007-05-04', 12, 'https://www.gutenberg.org/ebooks/21283', 'pt', 8), +(45693, 'Cotton Weaving and Designing\n6th Edition', 'Taylor, John T.', '2018-04-23', 12, 'https://www.gutenberg.org/ebooks/57031', 'en', 16005), +(45694, 'Molière - Œuvres complètes, Tome 1', 'Molière', '2012-06-26', 65, 'https://www.gutenberg.org/ebooks/40086', 'fr', 3323), +(45695, 'Index of the Project Gutenberg Works of Alexander Pope', 'Pope, Alexander', '2019-02-08', 13, 'https://www.gutenberg.org/ebooks/58845', 'en', 198), +(45696, 'A Field Study of the Kansas Ant-Eating Frog, Gastrophryne olivacea', 'Fitch, Henry S. (Henry Sheldon)', '2010-08-29', 14, 'https://www.gutenberg.org/ebooks/33574', 'en', 823), +(45697, 'The Poetical Works of John Skelton, Volume 1 (of 2)', 'Skelton, John', '2019-07-28', 261, 'https://www.gutenberg.org/ebooks/59997', 'en', 466), +(45698, 'The Walking Delegate', 'Scott, Leroy', '2012-10-23', 18, 'https://www.gutenberg.org/ebooks/41154', 'en', 16006), +(45699, 'The Reflections of Ambrosine: A Novel', 'Glyn, Elinor', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11624', 'en', 109), +(45700, 'The Seven Wives of Bluebeard\r\n1920', 'France, Anatole', '2008-05-09', 28, 'https://www.gutenberg.org/ebooks/25411', 'en', 16007), +(45701, 'Stories of the Days of King Arthur', 'Hanson, Charles Henry', '2013-12-14', 23, 'https://www.gutenberg.org/ebooks/44426', 'en', 8291), +(45702, 'The Tale of Fatty Coon', 'Bailey, Arthur Scott', '2004-05-01', 39, 'https://www.gutenberg.org/ebooks/5701', 'en', 4599), +(45703, 'The Jolliest School of All', 'Brazil, Angela', '2006-12-22', 63, 'https://www.gutenberg.org/ebooks/20163', 'en', 2154), +(45704, 'Famous Fights of Indian Native Regiments', 'Hodder, Reginald', '2016-11-10', 7, 'https://www.gutenberg.org/ebooks/53491', 'en', 16008), +(45705, 'The Emperor of Portugallia', 'Lagerlöf, Selma', '2004-12-15', 35, 'https://www.gutenberg.org/ebooks/14356', 'en', 4184), +(45706, 'Index of the Project Gutenberg Works of Madame D\'Arblay (Frances Burney)', 'Burney, Fanny', '2018-10-11', 12, 'https://www.gutenberg.org/ebooks/58079', 'en', 198), +(45707, 'The Three Perils of Man; or, War, Women, and Witchcraft, Vol. 2 (of 3)', 'Hogg, James', '2012-05-31', 7, 'https://www.gutenberg.org/ebooks/39872', 'en', 11783), +(45708, 'The Tale of Johnny Town-Mouse', 'Potter, Beatrix', '2005-03-08', 174, 'https://www.gutenberg.org/ebooks/15284', 'en', 1223), +(45709, 'Saarron murtaja', 'Verne, Jules', '2016-07-10', 0, 'https://www.gutenberg.org/ebooks/52543', 'fi', 16009), +(45710, 'Les Merveilles de la Locomotion', 'Deharme, E. (Ernest)', '2013-02-02', 15, 'https://www.gutenberg.org/ebooks/41968', 'fr', 7873), +(45711, 'Diphtheria\r\nhow to recognize the disease, how to keep from catching it, how to treat those who do catch it', 'United States. Public Health Service', '2011-05-01', 16, 'https://www.gutenberg.org/ebooks/36006', 'en', 12712), +(45712, 'The Cruise of the \"Lively Bee\"; Or, A Boy\'s Adventures in the War of 1812', 'De Morgan, John', '2014-07-22', 9, 'https://www.gutenberg.org/ebooks/46371', 'en', 2269), +(45713, 'Along the Shore', 'Lathrop, Rose Hawthorne', '2004-12-01', 6, 'https://www.gutenberg.org/ebooks/7056', 'en', 350), +(45714, 'Association Football, and How To Play It', 'Cameron, John', '2011-03-25', 46, 'https://www.gutenberg.org/ebooks/35683', 'en', 5275), +(45715, 'Versos em honra do grande poeta Manoel Maria Barbosa du Bocage', 'Sadão, Elisino', '2007-09-16', 6, 'https://www.gutenberg.org/ebooks/22634', 'pt', 16010), +(45716, 'Punch, or the London Charivari, Vol. 158, 1920-02-18', 'Various', '2005-07-31', 5, 'https://www.gutenberg.org/ebooks/16401', 'en', 134), +(45717, 'Les grands orateurs de la Révolution\r\nMirabeau, Vergniaud, Danton, Robespierre', 'Aulard, F.-A. (François-Alphonse)', '2005-09-01', 33, 'https://www.gutenberg.org/ebooks/8822', 'fr', 11390), +(45718, 'Eno Vanja: Kuvaus maalaiselämästä neljässä näytöksessä', 'Chekhov, Anton Pavlovich', '2015-10-14', 10, 'https://www.gutenberg.org/ebooks/50214', 'fi', 1815), +(45719, 'A Romany of the Snows, vol. 5\r\nBeing a Continuation of the Personal Histories of \"Pierre and His People\" and the Last Existing Records of Pretty Pierre', 'Parker, Gilbert', '2004-07-01', 15, 'https://www.gutenberg.org/ebooks/6184', 'en', 1887), +(45720, 'Encyclopaedia Britannica, 11th Edition, \"Dübner, Johann Friedrich\" to \"Dyeing\"\r\nVolume 8, Slice 8', 'Various', '2010-12-24', 40, 'https://www.gutenberg.org/ebooks/34751', 'en', 1081), +(45721, 'The Apologia and Florida of Apuleius of Madaura', 'Apuleius', '2008-08-13', 43, 'https://www.gutenberg.org/ebooks/26294', 'en', 16011), +(45722, 'Vingt-cinq poèmes', 'Tzara, Tristan', '2017-10-17', 39, 'https://www.gutenberg.org/ebooks/55766', 'fr', 15195), +(45723, 'The North American Indian, Vol. 1', 'Curtis, Edward S.', '2006-10-03', 67, 'https://www.gutenberg.org/ebooks/19449', 'en', 869), +(45724, 'Graded Literature Readers: Fourth Book', NULL, '2015-07-01', 23, 'https://www.gutenberg.org/ebooks/49339', 'en', 1019), +(45725, 'Infinite Intruder', 'Nourse, Alan Edward', '2010-02-08', 37, 'https://www.gutenberg.org/ebooks/31223', 'en', 26), +(45726, 'My Lady Ludlow', 'Gaskell, Elizabeth Cleghorn', '2001-02-01', 51, 'https://www.gutenberg.org/ebooks/2524', 'en', 45), +(45727, 'Népmesék Heves- és Jász-Nagykun-Szolnok-megyéből\r\n(Magyar népköltési gyüjtemény 9. kötet)', 'Berze Nagy, János', '2013-08-30', 10, 'https://www.gutenberg.org/ebooks/43603', 'hu', 1422), +(45728, 'Anna Liisa; Kotoa pois', 'Canth, Minna', '2004-08-13', 62, 'https://www.gutenberg.org/ebooks/13173', 'fi', 247), +(45729, 'Grandmother Puss; Or, The grateful mouse', 'Unknown', '2008-11-28', 14, 'https://www.gutenberg.org/ebooks/27346', 'en', 1430), +(45730, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 726\nNovember 24, 1877', 'Various', '2016-02-01', 3, 'https://www.gutenberg.org/ebooks/51100', 'en', 18), +(45731, 'Les abeilles', 'Pérez, Jean M.', '2011-03-01', 19, 'https://www.gutenberg.org/ebooks/35445', 'fr', 4644), +(45732, '韓詩外傳, Complete', 'Han, Ying, active 150 B.C.', '2005-01-01', 6, 'https://www.gutenberg.org/ebooks/7290', 'zh', 4436), +(45733, 'McAllister and His Double', 'Train, Arthur Cheney', '2010-12-08', 19, 'https://www.gutenberg.org/ebooks/34597', 'en', 8451), +(45734, 'Kritik der reinen Vernunft\r\n(Erste Fassung 1781)', 'Kant, Immanuel', '2004-08-01', 140, 'https://www.gutenberg.org/ebooks/6342', 'de', 354), +(45735, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 692\nMarch 31, 1877', 'Various', '2014-10-06', 7, 'https://www.gutenberg.org/ebooks/47065', 'en', 18), +(45736, 'Le Négrier, Vol. II\r\nAventures de mer', 'Corbière, Edouard', '2006-02-08', 17, 'https://www.gutenberg.org/ebooks/17715', 'fr', 3828), +(45737, 'From Makin to Bougainville: Marine Raiders in the Pacific War', 'Hoffman, Jon T.', '2015-04-27', 35, 'https://www.gutenberg.org/ebooks/48811', 'en', 16012), +(45738, 'Mon oncle et mon curé; Le voeu de Nadia', 'La Brète, Jean de', '2007-11-17', 8, 'https://www.gutenberg.org/ebooks/23520', 'fr', 687), +(45739, 'Elisabeth; ou les Exilés de Sibérie', 'Cottin, Madame (Sophie)', '2009-08-28', 13, 'https://www.gutenberg.org/ebooks/29826', 'fr', 6618), +(45740, 'Historic Inventions', 'Holland, Rupert Sargent', '2013-04-12', 43, 'https://www.gutenberg.org/ebooks/42517', 'en', 1739), +(45741, 'What to Do? Thoughts Evoked by the Census of Moscow', 'Tolstoy, Leo, graf', '2003-01-01', 19, 'https://www.gutenberg.org/ebooks/3630', 'en', 3120), +(45742, 'James B. Eads', 'How, Louis', '2008-07-14', 17, 'https://www.gutenberg.org/ebooks/26052', 'en', 16013), +(45743, 'Aus meinem Leben — Erster Teil', 'Bebel, August', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/12267', 'de', 10057), +(45744, '\"Rojohoppe\" viimene reis: Uussi raumlaissi jaarituksi', 'Nortamo, Hjalmar', '2017-04-01', 3, 'https://www.gutenberg.org/ebooks/54472', 'fi', 16014), +(45745, 'A Child\'s History of England', 'Dickens, Charles', '1996-10-01', 405, 'https://www.gutenberg.org/ebooks/699', 'en', 4279), +(45746, 'Petrarch\'s Letters to Classical Authors', 'Petrarca, Francesco', '2015-01-03', 37, 'https://www.gutenberg.org/ebooks/47859', 'en', 12609), +(45747, 'The Wooden Horse', 'Walpole, Hugh', '2008-11-06', 26, 'https://www.gutenberg.org/ebooks/27180', 'en', 166), +(45748, 'Daisy Brooks; Or, A Perilous Love', 'Libbey, Laura Jean', '2009-09-30', 18, 'https://www.gutenberg.org/ebooks/30137', 'en', 336), +(45749, 'Letters on Astronomy\r\nin which the Elements of the Science are Familiarly Explained in Connection with Biographical Sketches of the Most Eminent Astronomers', 'Olmsted, Denison', '2012-07-15', 28, 'https://www.gutenberg.org/ebooks/40240', 'en', 1683), +(45750, 'A Strange Disappearance', 'Green, Anna Katharine', '1998-01-01', 131, 'https://www.gutenberg.org/ebooks/1167', 'en', 167), +(45751, 'The Woman with a Stone Heart\nA Romance of the Philippine War', 'Coursey, O. W. (Oscar William)', '2008-02-27', 5, 'https://www.gutenberg.org/ebooks/24705', 'en', 16015), +(45752, 'Ride Railroad Bill', 'McGuinn, Roger', '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/10530', 'en', 3717), +(45753, 'Sea Scouts Abroad: Further Adventures of the \"Olivette\"', 'Westerman, Percy F. (Percy Francis)', '2018-01-07', 6, 'https://www.gutenberg.org/ebooks/56325', 'en', 16016), +(45754, 'Τα Γεωργικά', 'Virgil', '2010-06-02', 21, 'https://www.gutenberg.org/ebooks/32660', 'el', 16017), +(45755, 'The Making of the New Testament', 'Bacon, Benjamin Wisner', '2012-03-28', 22, 'https://www.gutenberg.org/ebooks/39288', 'en', 8952), +(45756, 'History of the Early Settlement of the Juniata Valley\r\nEmbracing an Account of the Early Pioneers, and the Trials and Privations Incident to the Settlement of the Valley, Predatory Incursions, Massacres, and Abductions by the Indians During the French and Indian Wars, and the War of the Revolution, &c.', 'Jones, U. J. (Uriah James)', '2012-11-17', 21, 'https://www.gutenberg.org/ebooks/41392', 'en', 16018), +(45757, 'In Oostenrijk—Stiermarken\r\nDe Aarde en haar Volken, 1906', 'Vielliard, Edme', '2004-11-28', 4, 'https://www.gutenberg.org/ebooks/14190', 'nl', 16019), +(45758, 'Mnää ja Tasala Vilkk ja Hakkri Iiro: Raumlaissi jaarituksi', 'Nortamo, Hjalmar', '2016-12-03', 55, 'https://www.gutenberg.org/ebooks/53657', 'fi', 16014), +(45759, 'Egmont: Viisinäytöksinen murhenäytelmä', 'Goethe, Johann Wolfgang von', '2011-09-04', 25, 'https://www.gutenberg.org/ebooks/37312', 'fi', 6272), +(45760, 'Sandra Belloni — Volume 3', 'Meredith, George', '2003-09-01', 19, 'https://www.gutenberg.org/ebooks/4415', 'en', 137), +(45761, 'Some Persons Unknown', 'Hornung, E. W. (Ernest William)', '2014-05-23', 35, 'https://www.gutenberg.org/ebooks/45732', 'en', 137), +(45762, 'Ulfvungit: Lehti intohimojen kirjasta', 'Lie, Jonas', '2016-08-12', 12, 'https://www.gutenberg.org/ebooks/52785', 'fi', 7), +(45763, 'A Narrative of the Most Remarkable Particulars in the Life of James Albert Ukawsaw Gronniosaw, an African Prince, as Related by Himself', 'Gronniosaw, James Albert Ukawsaw', '2005-02-14', 30, 'https://www.gutenberg.org/ebooks/15042', 'en', 16020), +(45764, 'La vie et la mort du roi Richard II', 'Shakespeare, William', '2007-05-02', 11, 'https://www.gutenberg.org/ebooks/21277', 'fr', 599), +(45765, 'History of the Confederate Powder Works', 'Rains, George Washington', '2008-02-07', 17, 'https://www.gutenberg.org/ebooks/24537', 'en', 659), +(45766, 'The History of Rome, Book II\r\nFrom the Abolition of the Monarchy in Rome to the Union of Italy', 'Mommsen, Theodor', '2006-06-01', 48, 'https://www.gutenberg.org/ebooks/10702', 'en', 6793), +(45767, 'Nooks and Corners of Old London', 'Hemstreet, Charles', '2012-06-27', 36, 'https://www.gutenberg.org/ebooks/40072', 'en', 856), +(45768, 'The Underground City; Or, The Black Indies\r\n(Sometimes Called The Child of the Cavern)', 'Verne, Jules', '1998-06-01', 57, 'https://www.gutenberg.org/ebooks/1355', 'en', 3777), +(45769, 'Les caquets de l\'accouchée\nnouvelle édition revue sur les pièces originales', NULL, '2010-08-30', 12, 'https://www.gutenberg.org/ebooks/33580', 'fr', 16021), +(45770, 'From Veldt Camp Fires', 'Bryden, H. A. (Henry Anderson)', '2011-11-29', 19, 'https://www.gutenberg.org/ebooks/38168', 'en', 1207), +(45771, 'Halfway House: A Comedy of Degrees', 'Hewlett, Maurice', '2019-07-21', 786, 'https://www.gutenberg.org/ebooks/59963', 'en', 1463), +(45772, 'British Sports, for the Amusement of Children', 'Belch, William', '2010-05-20', 8, 'https://www.gutenberg.org/ebooks/32452', 'en', 16022), +(45773, 'The Sins of Séverac Bablon', 'Rohmer, Sax', '2007-06-20', 50, 'https://www.gutenberg.org/ebooks/21879', 'en', 167), +(45774, 'Genom mina guldbågade glasögon', 'Engström, Albert', '2017-12-03', 10, 'https://www.gutenberg.org/ebooks/56117', 'sv', 6503), +(45775, 'The Expositor\'s Bible: The Gospel According to St. Mark', 'Chadwick, G. A. (George Alexander)', '2011-08-18', 13, 'https://www.gutenberg.org/ebooks/37120', 'en', 7552), +(45776, 'Grandfather\'s Love Pie', 'Gaines, Miriam', '2006-12-27', 11, 'https://www.gutenberg.org/ebooks/20197', 'en', 3526), +(45777, 'Eye Spy: Afield with Nature Among Flowers and Animate Things', 'Gibson, W. Hamilton (William Hamilton)', '2012-02-22', 31, 'https://www.gutenberg.org/ebooks/38954', 'en', 2667), +(45778, 'Lessons in the Small Catechism of Dr. Martin Luther\nFor the Senior Department of Lutheran Sunday-Schools and for General Use', 'Mezger, George', '2016-11-07', 13, 'https://www.gutenberg.org/ebooks/53465', 'en', 4988), +(45779, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 07, July, 1895\r\nItalian Wrought Iron', 'Various', '2005-03-06', 8, 'https://www.gutenberg.org/ebooks/15270', 'en', 2140), +(45780, 'Modern Painting, Its Tendency and Meaning', 'Wright, Willard Huntington', '2012-06-01', 31, 'https://www.gutenberg.org/ebooks/39886', 'en', 5927), +(45781, 'Education and the Higher Life', 'Spalding, John Lancaster', '2007-04-12', 17, 'https://www.gutenberg.org/ebooks/21045', 'en', 973), +(45782, 'The Lights and Shadows of Real Life', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/4627', 'en', 658), +(45783, 'Nuoren ylioppilaan kirjeitä 1850-luvulta', 'Krohn, Julius', '2014-04-26', 12, 'https://www.gutenberg.org/ebooks/45500', 'fi', 16023), +(45784, 'The Ingoldsby Country: Literary Landmarks of the \"Ingoldsby Legends\"', 'Harper, Charles G. (Charles George)', '2014-07-23', 8, 'https://www.gutenberg.org/ebooks/46385', 'en', 16024), +(45785, 'Metella', 'Sand, George', '2004-07-09', 13, 'https://www.gutenberg.org/ebooks/12869', 'fr', 298), +(45786, 'Education in the Home, the Kindergarten, and the Primary School', 'Peabody, Elizabeth Palmer', '2011-03-25', 35, 'https://www.gutenberg.org/ebooks/35677', 'en', 6590), +(45787, 'The Contrast', 'Tyler, Royall', '2009-06-26', 29, 'https://www.gutenberg.org/ebooks/29228', 'en', 907), +(45788, 'To the Fore with the Tanks!', 'Westerman, Percy F. (Percy Francis)', '2016-02-29', 20, 'https://www.gutenberg.org/ebooks/51332', 'en', 323), +(45789, 'The History of Pendennis, Volume 2\nHis Fortunes and Misfortunes, His Friends and His Greatest Enemy', 'Thackeray, William Makepeace', '2006-02-01', 10, 'https://www.gutenberg.org/ebooks/9904', 'en', 1080), +(45790, 'De Verdelgingsoorlog der Yankees tegen de Apachen-indianen\r\nDe Aarde en haar Volken, 1873', 'Anonymous', '2006-01-16', 19, 'https://www.gutenberg.org/ebooks/17527', 'nl', 16025), +(45791, 'Tarzan of the Apes', 'Burroughs, Edgar Rice', '2007-12-01', 42, 'https://www.gutenberg.org/ebooks/23712', 'en', 323), +(45792, 'Memorials and Other Papers — Volume 2', 'De Quincey, Thomas', '2004-07-01', 10, 'https://www.gutenberg.org/ebooks/6170', 'en', 472), +(45793, 'Prinssi ja kerjäläispoika', 'Twain, Mark', '2014-11-01', 10, 'https://www.gutenberg.org/ebooks/47257', 'fi', 1079), +(45794, 'This Simian World', 'Day, Clarence', '2008-08-11', 14, 'https://www.gutenberg.org/ebooks/26260', 'en', 190), +(45795, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nMississippi Narratives', 'United States. Work Projects Administration', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/12055', 'en', 16026), +(45796, 'Greeks & Barbarians', 'Thomson, J. A. K. (James Alexander Kerr)', '2017-10-22', 17, 'https://www.gutenberg.org/ebooks/55792', 'en', 16027), +(45797, 'The Meadow-Brook Girls on the Tennis Courts; Or, Winning Out in the Big Tournament', 'Aldridge, Janet', '2013-05-16', 15, 'https://www.gutenberg.org/ebooks/42725', 'en', 3831), +(45798, 'The Parlor Car', 'Howells, William Dean', '2002-09-01', 20, 'https://www.gutenberg.org/ebooks/3402', 'en', 907), +(45799, 'DP', 'Savage, Arthur Dekker', '2009-10-21', 37, 'https://www.gutenberg.org/ebooks/30305', 'en', 179), +(45800, 'Novellen: Die zweite Liebhaberin; Verlust und Gewinn', 'Meyr, Melchior', '2017-05-01', 5, 'https://www.gutenberg.org/ebooks/54640', 'de', 138), +(45801, 'Dialogue aux enfers entre Machiavel et Montesquieu\r\nou la politique de Machiavel au XIXe Siècle par un contemporain', 'Joly, Maurice', '2004-08-15', 56, 'https://www.gutenberg.org/ebooks/13187', 'fr', 16028), +(45802, 'The Unprotected Species', 'Sturgis, Melvin', '2010-04-18', 25, 'https://www.gutenberg.org/ebooks/32036', 'en', 26), +(45803, 'Nahkaratti', 'Doyle, Arthur Conan', '2018-02-15', 24, 'https://www.gutenberg.org/ebooks/56573', 'fi', 16029), +(45804, 'The Cricket', 'Cooke, Marjorie Benton', '2008-04-16', 23, 'https://www.gutenberg.org/ebooks/25081', 'en', 9113), +(45805, 'Indo-China and Its Primitive People', 'Baudesson, Henry', '2014-06-13', 33, 'https://www.gutenberg.org/ebooks/45958', 'en', 16030), +(45806, 'Gloria Crucis\naddresses delivered in Lichfield Cathedral Holy Week and Good Friday, 1907', 'Beibitz, J. H. (Joseph Hugh)', '2008-01-03', 19, 'https://www.gutenberg.org/ebooks/24153', 'en', 16031), +(45807, 'Freedom\'s Battle\nBeing a Comprehensive Collection of Writings and Speeches on the Present Situation', 'Gandhi, Mahatma', '2003-12-01', 162, 'https://www.gutenberg.org/ebooks/10366', 'en', 16032), +(45808, 'The Rest Hollow Mystery', 'Porter, Rebecca N. (Rebecca Newman)', '2012-08-05', 21, 'https://www.gutenberg.org/ebooks/40416', 'en', 211), +(45809, 'Sister Songs: An Offering to Two Sisters', 'Thompson, Francis', '1999-05-01', 16, 'https://www.gutenberg.org/ebooks/1731', 'en', 54), +(45810, 'The Ragged Edge', 'MacGrath, Harold', '2005-04-13', 20, 'https://www.gutenberg.org/ebooks/15614', 'en', 48), +(45811, 'The Magnificent Montez: From Courtesan to Convert', 'Wyndham, Horace', '2007-05-12', 28, 'https://www.gutenberg.org/ebooks/21421', 'en', 6295), +(45812, 'On the cattle plague: or, Contagious typhus in horned cattle. Its history, origin, description, and treatment', 'Bourguignon, Honoré', '2011-06-22', 13, 'https://www.gutenberg.org/ebooks/36496', 'en', 13069), +(45813, 'Sir Thomas More, or, Colloquies on the Progress and Prospects of Society', 'Southey, Robert', '2003-07-01', 27, 'https://www.gutenberg.org/ebooks/4243', 'en', 3120), +(45814, 'Village Annals, Containing Austerus and Humanus: A Sympathetic Tale', 'Anonymous', '2014-03-18', 8, 'https://www.gutenberg.org/ebooks/45164', 'en', 9013), +(45815, 'Cupid in Africa', 'Wren, Percival Christopher', '2011-09-26', 20, 'https://www.gutenberg.org/ebooks/37544', 'en', 1351), +(45816, 'The Crisis — Volume 04', 'Churchill, Winston', '2004-10-19', 5, 'https://www.gutenberg.org/ebooks/5391', 'en', 403), +(45817, 'The Magic of Spain', 'Bell, Aubrey F. G. (Aubrey Fitz Gerald)', '2016-09-07', 8, 'https://www.gutenberg.org/ebooks/53001', 'en', 4785), +(45818, 'Mark Twain: A Biography. Complete', 'Paine, Albert Bigelow', '2004-10-04', 76, 'https://www.gutenberg.org/ebooks/2988', 'en', 9357), +(45819, 'Der niegeküßte Mund: Drei Erzählungen', 'Wassermann, Jakob', '2005-11-23', 17, 'https://www.gutenberg.org/ebooks/17143', 'de', 282), +(45820, 'Matkamuistelmia Persiasta, Mesopotamiasta ja Kaukaasiasta', 'Hedin, Sven Anders', '2015-12-13', 16, 'https://www.gutenberg.org/ebooks/50684', 'fi', 4925), +(45821, 'A Terrible Coward', 'Fenn, George Manville', '2007-11-06', 8, 'https://www.gutenberg.org/ebooks/23376', 'en', 5512), +(45822, 'My First Picture Book\nWith Thirty-six Pages of Pictures Printed in Colours by Kronheim', 'Kronheim, Joseph Martin', '2006-07-29', 156, 'https://www.gutenberg.org/ebooks/18937', 'en', 388), +(45823, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 8, Ignatius', 'Wake, William', '2004-09-01', 21, 'https://www.gutenberg.org/ebooks/6514', 'en', 7966), +(45824, 'Copper Coleson\'s Ghost', 'Hendrick, Edward P.', '2014-12-11', 19, 'https://www.gutenberg.org/ebooks/47633', 'en', 8198), +(45825, 'Afloat in the Forest; Or, A Voyage among the Tree-Tops', 'Reid, Mayne', '2011-02-08', 25, 'https://www.gutenberg.org/ebooks/35213', 'en', 2788), +(45826, 'The History of Chemistry, Volume 2 (of 2)', 'Thomson, Thomas', '2016-04-14', 10, 'https://www.gutenberg.org/ebooks/51756', 'en', 10696), +(45827, 'Dorothy Dale\'s Camping Days', 'Penrose, Margaret', '2005-06-18', 14, 'https://www.gutenberg.org/ebooks/16091', 'en', 3), +(45828, 'The Minus Woman', 'Winterbotham, R. R. (Russell Robert)', '2009-12-26', 14, 'https://www.gutenberg.org/ebooks/30761', 'en', 179), +(45829, 'The Secret Cache: An Adventure and Mystery Story for Boys', 'Brill, Ethel C. (Ethel Claire)', '2013-07-24', 13, 'https://www.gutenberg.org/ebooks/43293', 'en', 323), +(45830, 'Venice: A Sketch-Book', 'Richards, Fred', '2017-02-22', 2, 'https://www.gutenberg.org/ebooks/54224', 'en', 16033), +(45831, 'Index of the Project Gutenberg Works of Maturin Murray Ballou', 'Ballou, Maturin M. (Maturin Murray)', '2019-07-12', 40, 'https://www.gutenberg.org/ebooks/60011', 'en', 198), +(45832, 'Pearls of Thought', 'Ballou, Maturin M. (Maturin Murray)', '2008-09-13', 39, 'https://www.gutenberg.org/ebooks/26604', 'en', 5699), +(45833, 'The Coquette, or, The History of Eliza Wharton\r\nA Novel: Founded on Fact', 'Foster, Hannah Webster', '2004-05-01', 63, 'https://www.gutenberg.org/ebooks/12431', 'en', 16034), +(45834, 'Of the Capture of Ticonderoga: His Captivity and Treatment by the British', 'Allen, Ethan', '2013-03-15', 17, 'https://www.gutenberg.org/ebooks/42341', 'en', 13780), +(45835, 'The Red Man\'s Continent: A Chronicle of Aboriginal America', 'Huntington, Ellsworth', '2002-02-01', 43, 'https://www.gutenberg.org/ebooks/3066', 'en', 869), +(45836, 'Lichtenstein', 'Hauff, Wilhelm', '2004-10-01', 51, 'https://www.gutenberg.org/ebooks/6726', 'de', 15293), +(45837, 'Sodan uhatessa: Ilveilys yhdessä näytöksessä', 'Hahnsson, Theodolinda', '2014-11-19', 22, 'https://www.gutenberg.org/ebooks/47401', 'fi', 433), +(45838, 'Raggedy Andy Stories\r\nIntroducing the Little Rag Brother of Raggedy Ann', 'Gruelle, Johnny', '2005-12-22', 67, 'https://www.gutenberg.org/ebooks/17371', 'en', 2849), +(45839, 'The War Trail: The Hunt of the Wild Horse', 'Reid, Mayne', '2007-10-21', 24, 'https://www.gutenberg.org/ebooks/23144', 'en', 676), +(45840, 'Stories the Iroquois Tell Their Children', 'Powers, Mabel', '2007-07-18', 114, 'https://www.gutenberg.org/ebooks/22096', 'en', 9123), +(45841, 'The Doctor\'s Dilemma', 'Shaw, Bernard', '2016-04-02', 19, 'https://www.gutenberg.org/ebooks/51564', 'en', 3116), +(45842, 'Indian Stories Retold From St. Nicholas', 'Various', '2011-01-21', 5, 'https://www.gutenberg.org/ebooks/35021', 'en', 869), +(45843, 'Het Vrije Rusland\r\nDe Aarde en haar Volken, 1873', 'Dixon, William Hepworth', '2006-05-07', 15, 'https://www.gutenberg.org/ebooks/18339', 'nl', 5830), +(45844, 'In Search of Treasure', 'Alger, Horatio, Jr.', '2017-01-23', 23, 'https://www.gutenberg.org/ebooks/54016', 'en', 1889), +(45845, 'Theodore Roosevelt: An Intimate Biography', 'Thayer, William Roscoe', '2000-11-01', 22, 'https://www.gutenberg.org/ebooks/2386', 'en', 1009), +(45846, 'Les aventures du roi Pausole', 'Louÿs, Pierre', '2009-11-27', 21, 'https://www.gutenberg.org/ebooks/30553', 'fr', 687), +(45847, 'Über die Weiber', 'Schopenhauer, Arthur', '2007-12-01', 13, 'https://www.gutenberg.org/ebooks/23978', 'de', 1485), +(45848, 'Wijsheid en schoonheid uit Indië', 'Borel, Henri', '2015-03-10', 14, 'https://www.gutenberg.org/ebooks/48449', 'nl', 5306), +(45849, 'Encyclopaedia Britannica, 11th Edition, \"Liquid Gases\" to \"Logar\"\r\nVolume 16, Slice 7', 'Various', '2013-02-23', 17, 'https://www.gutenberg.org/ebooks/42173', 'en', 1081), +(45850, 'Complete Project Gutenberg John Galsworthy Works', 'Galsworthy, John', '2004-09-27', 73, 'https://www.gutenberg.org/ebooks/3254', 'en', 19), +(45851, 'Tales from the Lands of Nuts and Grapes (Spanish and Portuguese Folklore)', 'Sellers, Charles', '2010-03-03', 26, 'https://www.gutenberg.org/ebooks/31481', 'en', 16035), +(45852, 'Le specule des pecheurs', 'Johannes, von Kastl, active 15th century', '2008-08-26', 7, 'https://www.gutenberg.org/ebooks/26436', 'fr', 1010), +(45853, 'La tête de Martin\nComédie en un acte', 'Decourcelle, Adrien', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12603', 'fr', 16036), +(45854, 'A Surgeon in Belgium', 'Souttar, Henry Sessions', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11086', 'en', 8930), +(45855, 'Harper\'s Young People, April 11, 1882\nAn Illustrated Weekly', 'Various', '2018-03-15', 4, 'https://www.gutenberg.org/ebooks/56741', 'en', 479), +(45856, 'Hungarian Sketches in Peace and War\nConstable\'s Miscellany of Foreign Literature, vol. 1', 'Jókai, Mór', '2010-05-02', 21, 'https://www.gutenberg.org/ebooks/32204', 'en', 8904), +(45857, 'A Scrap-Book of Elementary Mathematics: Notes, Recreations, Essays', 'White, William Frank', '2012-08-30', 71, 'https://www.gutenberg.org/ebooks/40624', 'en', 8797), +(45858, 'The Tragedy of King Richard III', 'Shakespeare, William', '1998-10-01', 96, 'https://www.gutenberg.org/ebooks/1503', 'en', 2048), +(45859, 'Teddy: Her Book\nA Story of Sweet Sixteen', 'Ray, Anna Chapin', '2008-01-19', 17, 'https://www.gutenberg.org/ebooks/24361', 'en', 1679), +(45860, 'Harper\'s Round Table, May 5, 1896', 'Various', '2018-08-14', 15, 'https://www.gutenberg.org/ebooks/57693', 'en', 668), +(45861, 'Voice Trial - Kinetophone Actor Audition', 'Schultz, Siegfried Von', '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10154', 'en', 15878), +(45862, 'Monsieur Lecoq, v. 1', 'Gaboriau, Emile', '2006-04-13', 101, 'https://www.gutenberg.org/ebooks/4071', 'en', 128), +(45863, 'New Theories in Astronomy', 'Stirling, William', '2014-04-10', 12, 'https://www.gutenberg.org/ebooks/45356', 'en', 1683), +(45864, 'Chuang Tzu: Mystic, Moralist, and Social Reformer', 'Zhuangzi', '2019-06-09', 120, 'https://www.gutenberg.org/ebooks/59709', 'en', 1437), +(45865, 'Pixy\'s Holiday Journey', 'Lang, George', '2005-03-21', 5, 'https://www.gutenberg.org/ebooks/15426', 'en', 16037), +(45866, 'On the Stairs', 'Fuller, Henry Blake', '2007-05-26', 20, 'https://www.gutenberg.org/ebooks/21613', 'en', 61), +(45867, 'Säkeitä I', 'Manninen, Otto', '2016-10-08', 9, 'https://www.gutenberg.org/ebooks/53233', 'fi', 1171), +(45868, 'Reminiscences of Glass-making', 'Jarves, Deming', '2013-11-25', 30, 'https://www.gutenberg.org/ebooks/44284', 'en', 16038), +(45869, 'A Century of Negro Migration', 'Woodson, Carter Godwin', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/10968', 'en', 16039), +(45870, 'Sodoma e Gomorra: Cronistoria del Libertinaggio attraverso i secoli ed il mondo', 'Docteur Jaf', '2011-10-16', 81, 'https://www.gutenberg.org/ebooks/37776', 'it', 16040), +(45871, 'Expositions of Holy Scripture: Genesis, Exodus, Leviticus and Numbers', 'Maclaren, Alexander', '2004-12-01', 51, 'https://www.gutenberg.org/ebooks/7069', 'en', 16041), +(45872, 'The Young Ranchers; Or, Fighting the Sioux', 'Ellis, Edward Sylvester', '2009-03-15', 14, 'https://www.gutenberg.org/ebooks/28331', 'en', 6766), +(45873, 'Nick of the Woods; Or, Adventures of Prairie Life', 'Bird, Robert Montgomery', '2004-11-07', 24, 'https://www.gutenberg.org/ebooks/13970', 'en', 9968), +(45874, 'The Vision of Desire', 'Pedler, Margaret', '2005-04-01', 8, 'https://www.gutenberg.org/ebooks/7855', 'en', 61), +(45875, 'A Colored Man Round the World', 'Dorr, David F.', '2017-10-16', 10, 'https://www.gutenberg.org/ebooks/55759', 'en', 16042), +(45876, 'A Honeymoon in Space', 'Griffith, George Chetwynd', '2006-10-05', 56, 'https://www.gutenberg.org/ebooks/19476', 'en', 26), +(45877, 'The Bible, King James version, Book 21: Ecclesiastes', 'Anonymous', '2005-04-01', 47, 'https://www.gutenberg.org/ebooks/8021', 'en', 3157), +(45878, 'The Holy Isle: A Legend of Bardsey Abbey', 'Ignatius, Father, O.S.B.', '2015-06-28', 10, 'https://www.gutenberg.org/ebooks/49306', 'en', 16043), +(45879, 'Les Contemporains, 5ème Série\r\nÉtudes et Portraits Littéraires,', 'Lemaître, Jules', '2008-12-01', 9, 'https://www.gutenberg.org/ebooks/27379', 'fr', 2650), +(45880, 'Five Little Peppers Abroad', 'Sidney, Margaret', '2004-11-01', 50, 'https://www.gutenberg.org/ebooks/6987', 'en', 16044), +(45881, 'The Dawn of a To-morrow', 'Burnett, Frances Hodgson', '1996-03-01', 84, 'https://www.gutenberg.org/ebooks/460', 'en', 1763), +(45882, 'Yksillä juurilla', 'Harraden, Beatrice', '2007-04-02', 19, 'https://www.gutenberg.org/ebooks/20960', 'fi', 179), +(45883, 'To a Skull on My Bookshelf', 'Raplee, Elizabeth Virginia', '2010-05-23', 18, 'https://www.gutenberg.org/ebooks/32499', 'en', 8), +(45884, 'Picciola', 'Xavier, M.', '2012-03-08', 14, 'https://www.gutenberg.org/ebooks/39071', 'fr', 642), +(45885, 'Spanish Tales for Beginners', NULL, '2011-07-21', 1037, 'https://www.gutenberg.org/ebooks/36805', 'es', 188), +(45886, 'Vathek', 'Beckford, William', '2018-09-02', 21, 'https://www.gutenberg.org/ebooks/57832', 'fr', 16045), +(45887, 'The Arch-Satirist', 'Williams, Frances Fenwick', '2013-12-13', 16, 'https://www.gutenberg.org/ebooks/44419', 'en', 16046), +(45888, 'The Young Engineers on the Gulf\r\nOr, The Dread Mystery of the Million Dollar Breakwater', 'Hancock, H. Irving (Harrie Irving)', '2004-12-16', 22, 'https://www.gutenberg.org/ebooks/14369', 'en', 16047), +(45889, 'The Red Court Farm: A Novel (Vol. 1 of 2)', 'Wood, Henry, Mrs.', '2018-10-06', 14, 'https://www.gutenberg.org/ebooks/58046', 'en', 137), +(45890, 'Villa Glori - Ricordi ed aneddoti dell\'autunno 1867', 'Ferrari, Pio Vittorio', '2012-09-28', 10, 'https://www.gutenberg.org/ebooks/40885', 'it', 16048), +(45891, 'Cooley\'s Cyclopædia of Practical Receipts and Collateral Information in the Arts, Manufactures, Professions, and Trades..., Sixth Edition, Volume II', 'Cooley, Arnold James', '2013-01-31', 36, 'https://www.gutenberg.org/ebooks/41957', 'en', 16049), +(45892, 'Index of the Project Gutenberg Works of Alexander Pushkin', 'Pushkin, Aleksandr Sergeevich', '2019-04-03', 20, 'https://www.gutenberg.org/ebooks/59194', 'en', 198), +(45893, 'The Giant Crab, and Other Tales from Old India', 'Rouse, W. H. D. (William Henry Denham)', '2011-05-05', 51, 'https://www.gutenberg.org/ebooks/36039', 'en', 1772), +(45894, 'A Gentleman Vagabond and Some Others', 'Smith, Francis Hopkinson', '2005-02-07', 32, 'https://www.gutenberg.org/ebooks/14967', 'en', 770), +(45895, 'Majesty: A Novel', 'Couperus, Louis', '2010-09-20', 21, 'https://www.gutenberg.org/ebooks/33779', 'en', 313), +(45896, 'The War Upon Religion\r\nBeing an Account of the Rise and Progress of Anti-Christianism in Europe', 'Cunningham, Francis A. (Francis Aloysius)', '2011-12-23', 25, 'https://www.gutenberg.org/ebooks/38391', 'en', 16050), +(45897, 'Punch, or the London Charivari, Volume 156, April 30, 1919', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11429', 'en', 134), +(45898, 'The Golden Bough: A Study in Comparative Religion (Vol. 2 of 2)', 'Frazer, James George', '2012-11-12', 56, 'https://www.gutenberg.org/ebooks/41359', 'en', 5025), +(45899, 'Six One-Act Plays', 'Oliver, Margaret Scott', '2012-03-24', 16, 'https://www.gutenberg.org/ebooks/39243', 'en', 16051), +(45900, 'The Tragic Story of the Empress of Ireland, and Other Great Sea Disasters', 'Marshall, Logan', '2018-11-11', 25, 'https://www.gutenberg.org/ebooks/58274', 'en', 16052), +(45901, 'The Bedford-Row Conspiracy', 'Thackeray, William Makepeace', '1999-12-01', 25, 'https://www.gutenberg.org/ebooks/1990', 'en', 45), +(45902, 'The Deserter', 'Davis, Richard Harding', '2005-02-17', 12, 'https://www.gutenberg.org/ebooks/15089', 'en', 179), +(45903, 'Adlercreutzin sanansaattaja\nTapaus Revonlahden tappelusta v. 1808', 'Åberg, J. O. (Johan Olof)', '2010-03-28', 24, 'https://www.gutenberg.org/ebooks/31812', 'fi', 16053), +(45904, 'Unterm Rad', 'Hesse, Hermann', '2015-09-08', 160, 'https://www.gutenberg.org/ebooks/49908', 'de', 16054), +(45905, 'The King in Yellow, Part 2', 'Chambers, Robert W. (Robert William)', '2007-08-01', 2, 'https://www.gutenberg.org/ebooks/22439', 'en', 770), +(45906, 'Austral English\r\nA dictionary of Australasian words, phrases and usages with those aboriginal-Australian and Maori words which have become incorporated in the language, and the commoner scientific words that have had their origin in Australasia', 'Morris, Edward Ellis', '2009-02-03', 43, 'https://www.gutenberg.org/ebooks/27977', 'en', 16055), +(45907, 'The Lives of the Twelve Caesars, Volume 04: Caligula', 'Suetonius', '2004-12-13', 36, 'https://www.gutenberg.org/ebooks/6389', 'en', 6221), +(45908, 'The Doctrines of Predestination, Reprobation, and Election', 'Wallace, Robert', '2009-02-17', 9, 'https://www.gutenberg.org/ebooks/28103', 'en', 12063), +(45909, 'Mestari Olavin häät\nRomanttinen kertomus Kustaa Vaasan ensimäisiltä hallitusvuosilta', 'Starbäck, C. Georg (Carl Georg)', '2015-09-20', 7, 'https://www.gutenberg.org/ebooks/50019', 'fi', 16056), +(45910, 'Three Years in Tristan da Cunha', 'Barrow, Katherine Mary', '2005-06-01', 33, 'https://www.gutenberg.org/ebooks/8213', 'en', 16057), +(45911, 'Wanderungen durch die interessantesten Gegenden des Sächsischen Obererzgebirges (Zweites Heft)\r\nEin Beitrag zur speciellern Kenntniß desselben, seines Volkslebens, der Gewerbsarten, Sitten und Gebräuche', 'Lindner, Johann Traugott', '2015-06-04', 8, 'https://www.gutenberg.org/ebooks/49134', 'de', 4957), +(45912, 'Mary\'s Meadow, and Other Tales of Fields and Flowers', 'Ewing, Juliana Horatia Gatty', '2006-10-27', 18, 'https://www.gutenberg.org/ebooks/19644', 'en', 4342), +(45913, 'Aventuroj de Antonio', 'Omelka, František', '2008-07-21', 10, 'https://www.gutenberg.org/ebooks/26099', 'eo', 323), +(45914, 'Stille Kämpfer: Roman', 'Siebe, Josephine', '2014-09-23', 10, 'https://www.gutenberg.org/ebooks/46940', 'de', 253), +(45915, 'Main Currents in Nineteenth Century Literature - 4. Naturalism in England', 'Brandes, Georg', '2015-01-06', 63, 'https://www.gutenberg.org/ebooks/47892', 'en', 7488), +(45916, 'Rasselas, Prince of Abyssinia', 'Johnson, Samuel', '1996-09-01', 232, 'https://www.gutenberg.org/ebooks/652', 'en', 14369), +(45917, 'Chambers\'s Edinburgh Journal, No. 436\nVolume 17, New Series, May 8, 1852', 'Various', '2006-07-08', 15, 'https://www.gutenberg.org/ebooks/18796', 'en', 18), +(45918, 'Newark\'s Last Fifteen Years, 1904-1919. The Story in Outline', 'Newark Public Library', '2016-01-02', 3, 'https://www.gutenberg.org/ebooks/50825', 'en', 16058), +(45919, 'A Tale of Three Lions', 'Haggard, H. Rider (Henry Rider)', '2001-07-01', 57, 'https://www.gutenberg.org/ebooks/2729', 'en', 3825), +(45920, 'Amateur Gardencraft: A Book for the Home-Maker and Garden Lover', 'Rexford, Eben E. (Eben Eugene)', '2008-05-01', 23, 'https://www.gutenberg.org/ebooks/25278', 'en', 1413), +(45921, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1609-10', 'Motley, John Lothrop', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/4886', 'en', 5913), +(45922, 'English and Scottish Ballads, Volume 5 (of 8)', NULL, '2012-05-05', 26, 'https://www.gutenberg.org/ebooks/39627', 'en', 4582), +(45923, 'Religious Reality: A Book for Men', 'Rawlinson, A. E. J. (Alfred Edward John)', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5954', 'en', 16059), +(45924, 'The Etymology of Local Names\r\nWith a short introduction to the relationship of languages. Teutonic names.', 'Morris, Richard', '2018-08-08', 16, 'https://www.gutenberg.org/ebooks/57658', 'en', 16060), +(45925, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 549 (Supplementary number)', 'Various', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11871', 'en', 133), +(45926, 'Fort Raleigh National Historic Site, North Carolina', 'Porter, Charles W., III (Charles Wesley)', '2019-01-04', 5, 'https://www.gutenberg.org/ebooks/58610', 'en', 16061), +(45927, 'The Land of Heart\'s Desire', 'Yeats, W. B. (William Butler)', '2004-02-01', 46, 'https://www.gutenberg.org/ebooks/5168', 'en', 5914), +(45928, 'Lady Maude\'s Mania', 'Fenn, George Manville', '2010-10-26', 10, 'https://www.gutenberg.org/ebooks/34138', 'en', 61), +(45929, 'The Boy Chums Cruising in Florida Waters\nor, The Perils and Dangers of the Fishing Fleet', 'Ely, Wilmer M. (Wilmer Mateo)', '2013-10-01', 31, 'https://www.gutenberg.org/ebooks/43856', 'en', 16062), +(45930, 'Godfrey Marten, Undergraduate', 'Turley, Charles', '2009-04-20', 15, 'https://www.gutenberg.org/ebooks/28567', 'en', 10892), +(45931, 'The Story of Jessie', 'Quiller-Couch, Mabel', '2005-07-12', 18, 'https://www.gutenberg.org/ebooks/16268', 'en', 3621), +(45932, 'Not Paul, But Jesus', 'Bentham, Jeremy', '2013-06-18', 47, 'https://www.gutenberg.org/ebooks/42984', 'en', 8733), +(45933, 'Peggy Finds the Theatre', 'Hughes, Virginia', '2017-11-11', 11, 'https://www.gutenberg.org/ebooks/55933', 'en', 10556), +(45934, 'Elämä ja aurinko', 'Sillanpää, Frans Eemil', '2014-08-06', 24, 'https://www.gutenberg.org/ebooks/46518', 'fi', 175), +(45935, 'Works of Martin Luther, with Introductions and Notes (Volume II)', 'Luther, Martin', '2011-01-10', 57, 'https://www.gutenberg.org/ebooks/34904', 'en', 16063), +(45936, 'The Jungle Book', 'Kipling, Rudyard', '2006-01-16', 1759, 'https://www.gutenberg.org/ebooks/236', 'en', 4589), +(45937, 'A Life for a Life, Volume 2 (of 3)', 'Craik, Dinah Maria Mulock', '2015-03-13', 8, 'https://www.gutenberg.org/ebooks/48482', 'en', 61), +(45938, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 09', 'Stevenson, Robert Louis', '2009-12-04', 14, 'https://www.gutenberg.org/ebooks/30598', 'en', 232), +(45939, 'Behind a Mask; or, a Woman\'s Power', 'Alcott, Louisa May', '2005-08-01', 244, 'https://www.gutenberg.org/ebooks/8677', 'en', 16064), +(45940, 'The Second Epistle of Paul to the Thessalonians', NULL, '2007-10-01', 2, 'https://www.gutenberg.org/ebooks/22861', 'en', 6723), +(45941, 'A Select Collection of Old English Plays\nOriginally Published by Robert Dodsley in the year 1744', NULL, '2015-07-30', 24, 'https://www.gutenberg.org/ebooks/49550', 'en', 1088), +(45942, 'Irish Wit and Humor\nAnecdote Biography of Swift, Curran, O\'Leary and O\'Connell', 'Anonymous', '2006-09-08', 25, 'https://www.gutenberg.org/ebooks/19220', 'en', 3979), +(45943, 'The Hollow Needle: Further Adventures of Arsène Lupin', 'Leblanc, Maurice', '2009-05-01', 5, 'https://www.gutenberg.org/ebooks/28755', 'en', 1286), +(45944, 'Buccaneers and Pirates of Our Coasts', 'Stockton, Frank Richard', '2005-11-30', 64, 'https://www.gutenberg.org/ebooks/17188', 'en', 16065), +(45945, 'The Great Hunger', 'Bojer, Johan', '2006-05-30', 16, 'https://www.gutenberg.org/ebooks/2943', 'en', 286), +(45946, 'Jasmin: Barber, Poet, Philanthropist', 'Smiles, Samuel', '1997-03-01', 28, 'https://www.gutenberg.org/ebooks/838', 'en', 16066), +(45947, 'Memoirs of the Court of Marie Antoinette, Queen of France, Complete\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-08-25', 121, 'https://www.gutenberg.org/ebooks/3891', 'en', 1870), +(45948, 'History of England from the Fall of Wolsey to the Death of Elizabeth. Vol. II.', 'Froude, James Anthony', '2009-08-14', 23, 'https://www.gutenberg.org/ebooks/29687', 'en', 4746), +(45949, 'Jerin veli: Erään koiran elämä ja seikkailut', 'London, Jack', '2013-07-20', 25, 'https://www.gutenberg.org/ebooks/43258', 'fi', 2464), +(45950, 'The Inner Life\r\nPart 3 from The Works of John Greenleaf Whittier, Volume VII', 'Whittier, John Greenleaf', '2005-12-01', 8, 'https://www.gutenberg.org/ebooks/9597', 'en', 2645), +(45951, 'Scorched Earth: A Future History of Planet Earth', 'Petrovic, Walter D.', '2004-09-26', 12, 'https://www.gutenberg.org/ebooks/13528', 'en', 26), +(45952, 'The Two-Gun Man', 'Seltzer, Charles Alden', '2006-08-09', 50, 'https://www.gutenberg.org/ebooks/19012', 'en', 315), +(45953, 'The Eclipse of Faith; Or, A Visit to a Religious Sceptic', 'Rogers, Henry', '2005-10-13', 8, 'https://www.gutenberg.org/ebooks/16866', 'en', 16067); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(45954, 'In the Border Country', 'Crockett, W. S. (William Shillinglaw)', '2010-03-17', 9, 'https://www.gutenberg.org/ebooks/31678', 'en', 2364), +(45955, 'Look Back on Happiness', 'Hamsun, Knut', '2005-07-01', 31, 'https://www.gutenberg.org/ebooks/8445', 'en', 286), +(45956, 'Diagnosis', 'Palmer, Ray', '2015-08-23', 24, 'https://www.gutenberg.org/ebooks/49762', 'en', 109), +(45957, 'The Colleen Bawn; or, the Brides of Garryowen', 'Boucicault, Dion', '2016-08-29', 23, 'https://www.gutenberg.org/ebooks/52924', 'en', 16068), +(45958, 'Loss of the Steamship \"Titanic\"', 'Great Britain. Court to investigate loss of steamship \"Titanic\"', '2012-04-15', 25, 'https://www.gutenberg.org/ebooks/39415', 'en', 1162), +(45959, 'Bohemia under Hapsburg Misrule\nA Study of the Ideals and Aspirations of the Bohemian and Slovak Peoples, as They Relate to and Are Affected by the Great European War', NULL, '2014-06-16', 16, 'https://www.gutenberg.org/ebooks/45993', 'en', 16069), +(45960, 'The Mark of Cain', 'Wells, Carolyn', '2014-02-08', 33, 'https://www.gutenberg.org/ebooks/44841', 'en', 61), +(45961, 'A Spaceship Named McGuire', 'Garrett, Randall', '2008-01-07', 81, 'https://www.gutenberg.org/ebooks/24198', 'en', 4350), +(45962, 'Der Wanderer zwischen den Welten: Ein Kriegserlebnis', 'Flex, Walter', '2016-05-21', 9, 'https://www.gutenberg.org/ebooks/52118', 'de', 579), +(45963, 'The House with the Green Shutters', 'Brown, George Douglas', '2008-06-22', 33, 'https://www.gutenberg.org/ebooks/25876', 'en', 5681), +(45964, 'The Rich Mrs. Burgoyne', 'Norris, Kathleen Thompson', '2003-07-01', 30, 'https://www.gutenberg.org/ebooks/4288', 'en', 48), +(45965, 'The Wonderful Visit', 'Wells, H. G. (Herbert George)', '2010-10-19', 77, 'https://www.gutenberg.org/ebooks/33913', 'en', 45), +(45966, 'Seth Jones; or, The Captives of the Frontier', 'Ellis, Edward Sylvester', '2018-12-07', 17, 'https://www.gutenberg.org/ebooks/58422', 'en', 4994), +(45967, 'Punch, or the London Charivari, Volume 104, February 4, 1893', 'Various', '2007-02-06', 12, 'https://www.gutenberg.org/ebooks/20538', 'en', 134), +(45968, 'History of the United Netherlands, 1590-99 — Complete', 'Motley, John Lothrop', '2004-11-08', 17, 'https://www.gutenberg.org/ebooks/4872', 'en', 3372), +(45969, 'Notes and Queries, Vol. IV, Number 101, October 4, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-01-28', 19, 'https://www.gutenberg.org/ebooks/38701', 'en', 105), +(45970, 'The Life of an Insect\r\nbeing a history of the changes of insects from the egg to the perfect being.', NULL, '2014-04-13', 18, 'https://www.gutenberg.org/ebooks/45369', 'en', 2667), +(45971, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 534, February 18, 1832', 'Various', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/11885', 'en', 133), +(45972, 'Shoshone National Forest, Wyoming', 'United States. Forest Service', '2019-06-11', 24, 'https://www.gutenberg.org/ebooks/59736', 'en', 16070), +(45973, 'Letters to a Daughter and A Little Sermon to School Girls', 'Starrett, Helen Ekin', '2005-03-20', 15, 'https://www.gutenberg.org/ebooks/15419', 'en', 740), +(45974, 'The Love Affairs of Great Musicians, Volume 1', 'Hughes, Rupert', '2004-02-01', 44, 'https://www.gutenberg.org/ebooks/10957', 'en', 5339), +(45975, 'De Ellendigen (Deel 3 van 5)', 'Hugo, Victor', '2011-10-13', 15, 'https://www.gutenberg.org/ebooks/37749', 'nl', 264), +(45976, 'Yankee Boys in Japan; Or, The Young Merchants of Yokohama', 'Lewis, Henry Harrison', '2017-05-30', 5, 'https://www.gutenberg.org/ebooks/54815', 'en', 5191), +(45977, 'The Earth Trembled', 'Roe, Edward Payson', '2004-10-01', 11, 'https://www.gutenberg.org/ebooks/6719', 'en', 16071), +(45978, 'When Dreams Come True', 'Brown, Ritter', '2009-04-23', 19, 'https://www.gutenberg.org/ebooks/28593', 'en', 3865), +(45979, 'Poems in Prose', 'Baudelaire, Charles', '2015-11-19', 38, 'https://www.gutenberg.org/ebooks/50489', 'en', 16072), +(45980, 'The Gates of India: Being an Historical Narrative', 'Holdich, Thomas Hungerford, Sir', '2013-06-17', 17, 'https://www.gutenberg.org/ebooks/42970', 'en', 16073), +(45981, 'The Project Gutenberg Works of Plato: An Index', 'Plato', '2009-07-18', 105, 'https://www.gutenberg.org/ebooks/29441', 'en', 198), +(45982, 'Rizal sa Harap ng Bayan\nTalumpating Binigkas sa Look ng Bagumbayan', 'Hipolito, Pilar J. Lazaro', '2006-05-04', 17, 'https://www.gutenberg.org/ebooks/18306', 'tl', 6564), +(45983, 'Historical Record of the Twenty-first Regiment, or the Royal North British Fusiliers\r\nContaining an Account of the Formation of the Regiment in 1678, and of Its Subsequent Services to 1849', 'Cannon, Richard', '2017-01-20', 6, 'https://www.gutenberg.org/ebooks/54029', 'en', 16074), +(45984, '蜀碧', 'Peng, Zunsi, jin shi 1737', '2007-12-21', 32, 'https://www.gutenberg.org/ebooks/23947', 'zh', 16075), +(45985, 'Die Hexenrichter von Würzburg: Historische Novelle', 'Seeburg, Franz von', '2015-03-12', 11, 'https://www.gutenberg.org/ebooks/48476', 'de', 4923), +(45986, 'Night and Morning, Volume 2', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 10, 'https://www.gutenberg.org/ebooks/9751', 'en', 401), +(45987, 'The Columbiad: A Poem', 'Barlow, Joel', '2005-08-01', 50, 'https://www.gutenberg.org/ebooks/8683', 'en', 16076), +(45988, 'The Point of View', 'Weinbaum, Stanley G. (Stanley Grauman)', '2007-10-05', 36, 'https://www.gutenberg.org/ebooks/22895', 'en', 26), +(45989, 'That Little Girl of Miss Eliza\'s: A Story for Young People', 'Baird, Jean K. (Jean Katherine)', '2011-04-10', 93, 'https://www.gutenberg.org/ebooks/35822', 'en', 195), +(45990, 'The Children of Wilton Chase', 'Meade, L. T.', '2008-08-23', 13, 'https://www.gutenberg.org/ebooks/26409', 'en', 9766), +(45991, 'The Religious Experience of the Roman People\nFrom the Earliest Times to the Age of Augustus', 'Fowler, W. Warde (William Warde)', '2007-11-06', 23, 'https://www.gutenberg.org/ebooks/23349', 'en', 16077), +(45992, 'Christmas\nIts Origin, Celebration and Significance as Related in Prose and Verse', NULL, '2006-07-25', 20, 'https://www.gutenberg.org/ebooks/18908', 'en', 381), +(45993, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 06', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 2, 'https://www.gutenberg.org/ebooks/3865', 'en', 1870), +(45994, 'The Auxilia of the Roman Imperial Army', 'Cheesman, George Leonard', '2016-04-15', 12, 'https://www.gutenberg.org/ebooks/51769', 'en', 16078), +(45995, 'Creating Capital\nMoney-making as an aim in business', 'Lipman, Frederick L. (Frederic Lockwood)', '2009-08-12', 88, 'https://www.gutenberg.org/ebooks/29673', 'en', 2351), +(45996, 'The Heart of the Red Firs: A Story of the Pacific Northwest', 'Anderson, Ada Woodruff', '2015-04-05', 12, 'https://www.gutenberg.org/ebooks/48644', 'en', 12020), +(45997, 'Mabel Martin, a Harvest Idyl; and other poems\r\nPart 4 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9563', 'en', 350), +(45998, 'Eurimedon\nL\'illustre pirate', 'Desfontaines, Nicolas-Marc', '2006-03-07', 17, 'https://www.gutenberg.org/ebooks/17940', 'fr', 3323), +(45999, 'Sixteen Months in Four German Prisons: Wesel, Sennelager, Klingelputz, Ruhleben', 'Talbot, Frederick Arthur Ambrose', '2006-04-09', 29, 'https://www.gutenberg.org/ebooks/18134', 'en', 14349), +(46000, 'The Iliad', 'Homer', '2002-02-01', 229, 'https://www.gutenberg.org/ebooks/3059', 'en', 9219), +(46001, 'Samuel Rutherford and Some of His Correspondents', 'Whyte, Alexander', '2005-10-17', 31, 'https://www.gutenberg.org/ebooks/16892', 'en', 15189), +(46002, 'The Harmsworth Magazine, Vol. 1, No. 3, 1898-1899', 'Various', '2015-08-27', 10, 'https://www.gutenberg.org/ebooks/49796', 'en', 2370), +(46003, 'German Moonlight', 'Raabe, Wilhelm', '2010-04-16', 10, 'https://www.gutenberg.org/ebooks/32009', 'en', 179), +(46004, 'L\'Illustration, No. 1585, 13 Juin 1891', 'Various', '2014-06-14', 4, 'https://www.gutenberg.org/ebooks/45967', 'fr', 150), +(46005, 'Aunt Jane\'s Nieces at Millville', 'Baum, L. Frank (Lyman Frank)', '2003-12-01', 32, 'https://www.gutenberg.org/ebooks/10359', 'en', 527), +(46006, 'Drowsy', 'Mitchell, John Ames', '2016-12-25', 13, 'https://www.gutenberg.org/ebooks/53802', 'en', 26), +(46007, 'Talvi-iltain tarinoita 3\nSuomen herttuatar. Kulta-aave.', 'Topelius, Zacharias', '2012-01-09', 5, 'https://www.gutenberg.org/ebooks/38533', 'fi', 2168), +(46008, 'Robinson Crusoe\'s Money;\r\nor, The Remarkable Financial Fortunes and Misfortunes of a Remote Island Community', 'Wells, David Ames', '2012-08-06', 19, 'https://www.gutenberg.org/ebooks/40429', 'en', 5149), +(46009, 'Geraldine Farrar: The Story of an American Singer', 'Farrar, Geraldine', '2010-06-16', 26, 'https://www.gutenberg.org/ebooks/32835', 'en', 16079), +(46010, 'A Matter of Order', 'Holden, Fox B.', '2019-05-14', 58, 'https://www.gutenberg.org/ebooks/59504', 'en', 179), +(46011, 'Famous Islands and Memorable Voyages', 'Anonymous', '2008-06-23', 18, 'https://www.gutenberg.org/ebooks/25882', 'en', 9584), +(46012, 'A dissertation on the inutility of the amputation of limbs', 'Bilguer, Johann Ulrich', '2013-11-01', 4, 'https://www.gutenberg.org/ebooks/44089', 'en', 16080), +(46013, 'Bradford\'s History of \'Plimoth Plantation\'\nFrom the Original Manuscript. With a Report of the Proceedings Incident to the Return of the Manuscript to Massachusetts', 'Bradford, William', '2008-03-29', 518, 'https://www.gutenberg.org/ebooks/24950', 'en', 16081), +(46014, 'The Renaissance of the Vocal Art\r\nA Practical Study of Vitality, Vitalized Energy, of the Physical, Mental and Emotional Powers of the Singer, through Flexible, Elastic Bodily Movements', 'Myer, Edmund J. (Edmund John)', '2004-07-08', 16, 'https://www.gutenberg.org/ebooks/12856', 'en', 8969), +(46015, 'Mayne Reid: A Memoir of his Life', 'Reid, Elizabeth Hyde', '2011-03-21', 16, 'https://www.gutenberg.org/ebooks/35648', 'en', 16082), +(46016, 'Punch or the London Charivari, Vol. 147, July 8, 1914', 'Various', '2009-06-24', 5, 'https://www.gutenberg.org/ebooks/29217', 'en', 134), +(46017, 'Les misérables Tome IV: L\'idylle rue Plumet et l\'épopée rue Saint-Denis', 'Hugo, Victor', '2006-01-15', 157, 'https://www.gutenberg.org/ebooks/17518', 'fr', 2986), +(46018, 'Alte Nester: Zwei Bücher Lebensgeschichten', 'Raabe, Wilhelm', '2014-11-02', 13, 'https://www.gutenberg.org/ebooks/47268', 'de', 16083), +(46019, 'In the Wrong Paradise, and Other Stories', 'Lang, Andrew', '2004-11-08', 27, 'https://www.gutenberg.org/ebooks/13984', 'en', 179), +(46020, 'The Ancient Banner\nOr, Brief Sketches of Persons and Scenes in the Early History of Friends', 'Anonymous', '2006-10-06', 9, 'https://www.gutenberg.org/ebooks/19482', 'en', 16084), +(46021, 'The Influence of Buddhism on Primitive Christianity', 'Lillie, Arthur', '2015-02-09', 18, 'https://www.gutenberg.org/ebooks/48220', 'en', 639), +(46022, 'Tales and Novels — Volume 09', 'Edgeworth, Maria', '2005-10-01', 31, 'https://www.gutenberg.org/ebooks/9107', 'en', 20), +(46023, 'To-morrow', 'Conrad, Joseph', '2006-01-09', 62, 'https://www.gutenberg.org/ebooks/494', 'en', 109), +(46024, 'Erechtheus\nA Tragedy (New Edition)', 'Swinburne, Algernon Charles', '2006-06-11', 24, 'https://www.gutenberg.org/ebooks/18550', 'en', 1298), +(46025, 'The Boy Aviators\' Polar Dash; or, Facing Death in the Antarctic', 'Goldfrap, John Henry', '2004-11-01', 47, 'https://www.gutenberg.org/ebooks/6973', 'en', 16085), +(46026, 'The Old Debauchees. A Comedy', 'Fielding, Henry', '2011-11-04', 13, 'https://www.gutenberg.org/ebooks/37923', 'en', 3619), +(46027, 'Chronica de el-rei D. Affonso V (Vol. III)', 'Pina, Rui de', '2008-02-04', 7, 'https://www.gutenberg.org/ebooks/24508', 'pt', 12061), +(46028, 'Moderne Probleme der Physik', 'Sieveking, Hermann', '2011-11-28', 25, 'https://www.gutenberg.org/ebooks/38157', 'de', 1194), +(46029, 'Kilgorman: A Story of Ireland in 1798', 'Reed, Talbot Baines', '2007-04-05', 4, 'https://www.gutenberg.org/ebooks/20994', 'en', 7256), +(46030, 'Crowded Out o\' Crofield; or, The Boy who made his Way', 'Stoddard, William O.', '2007-06-16', 37, 'https://www.gutenberg.org/ebooks/21846', 'en', 195), +(46031, 'Ο Ψυχάρης και το έργο του', 'Phlores, Kostas', '2012-03-09', 8, 'https://www.gutenberg.org/ebooks/39085', 'el', 16086), +(46032, 'The Cottage on the Fells', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-12-04', 21, 'https://www.gutenberg.org/ebooks/56128', 'en', 61), +(46033, 'Fifty-two Stories of the British Navy, from Damme to Trafalgar.', 'Miles, Alfred H. (Alfred Henry)', '2012-09-26', 17, 'https://www.gutenberg.org/ebooks/40871', 'en', 16087), +(46034, 'The Influence of Sea Power upon the French Revolution and Empire 1793-1812, vol 1', 'Mahan, A. T. (Alfred Thayer)', '2016-07-21', 28, 'https://www.gutenberg.org/ebooks/52588', 'en', 1536), +(46035, 'The 3rd Party', 'Holum, Lee B.', '2019-03-30', 59, 'https://www.gutenberg.org/ebooks/59160', 'en', 16088), +(46036, 'The Book of Elves and Fairies for Story-Telling and Reading Aloud and for the Children\'s Own Reading', 'Olcott, Frances Jenkins', '2018-04-03', 48, 'https://www.gutenberg.org/ebooks/56914', 'en', 1007), +(46037, 'Words for the Wise', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/4618', 'en', 658), +(46038, 'Penrod and Sam', 'Tarkington, Booth', '1998-01-01', 60, 'https://www.gutenberg.org/ebooks/1158', 'en', 2358), +(46039, 'The Philosophy of History, Vol. 1 of 2', 'Schlegel, Friedrich von', '2011-12-22', 28, 'https://www.gutenberg.org/ebooks/38365', 'en', 924), +(46040, 'Rig Veda Americanus\r\nSacred Songs of the Ancient Mexicans, With a Gloss in Nahuatl', NULL, '2005-02-09', 100, 'https://www.gutenberg.org/ebooks/14993', 'nah', 16089), +(46041, 'Leonie of the Jungle', 'Conquest, Joan', '2005-05-16', 17, 'https://www.gutenberg.org/ebooks/15841', 'en', 580), +(46042, 'Kate Vernon: A Tale. Vol. 3 (of 3)', 'Alexander, Mrs.', '2016-12-05', 13, 'https://www.gutenberg.org/ebooks/53668', 'en', 61), +(46043, 'Fools of Fortune; or, Gambling and Gamblers', 'Quinn, John Philip', '2018-11-14', 20, 'https://www.gutenberg.org/ebooks/58280', 'en', 2473), +(46044, 'The Little Colonel: Maid of Honor', 'Johnston, Annie F. (Annie Fellows)', '2007-04-28', 21, 'https://www.gutenberg.org/ebooks/21248', 'en', 9801), +(46045, 'History of the Reformation in Europe in the Time of Calvin. Vol. 1 (of 8)', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2019-04-25', 57, 'https://www.gutenberg.org/ebooks/59352', 'en', 827), +(46046, 'Roman Catholicism in Spain', 'Anonymous', '2009-06-03', 10, 'https://www.gutenberg.org/ebooks/29025', 'en', 16090), +(46047, 'Tom Brown at Oxford', 'Hughes, Thomas', '2008-10-09', 46, 'https://www.gutenberg.org/ebooks/26851', 'en', 10892), +(46048, 'Elsie\'s Young Folks in Peace and War', 'Finley, Martha', '2014-07-04', 29, 'https://www.gutenberg.org/ebooks/46188', 'en', 470), +(46049, 'The Orphans of Glen Elder', 'Robertson, Margaret M. (Margaret Murray)', '2009-02-03', 17, 'https://www.gutenberg.org/ebooks/27983', 'en', 31), +(46050, 'Venice Preserved: A Tragedy', 'Otway, Thomas', '2010-01-11', 26, 'https://www.gutenberg.org/ebooks/30934', 'en', 16091), +(46051, 'The Life, Times, and Scientific Labours of the Second Marquis of Worcester\r\nTo which is added a reprint of his Century of Inventions, 1663, with a Commentary thereon.', 'Dircks, Henry', '2016-05-01', 5, 'https://www.gutenberg.org/ebooks/51903', 'en', 4422), +(46052, 'Manuel de Moraes: Chronica do Seculo XVII', 'Silva, J. M. Pereira da (João Manuel Pereira)', '2009-08-27', 7, 'https://www.gutenberg.org/ebooks/29819', 'pt', 16092), +(46053, 'Tintoretto', 'Bensusan, S. L. (Samuel Levy)', '2013-04-14', 13, 'https://www.gutenberg.org/ebooks/42528', 'en', 16093), +(46054, 'Histoire de la Révolution française, Tome 09', 'Thiers, Adolphe', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/12258', 'fr', 1536), +(46055, 'The Knickerbocker, Vol. 57, No. 1, January 1861', 'Various', '2015-01-03', 23, 'https://www.gutenberg.org/ebooks/47866', 'en', 18), +(46056, 'The Works of Lord Byron. Vol. 6', 'Byron, George Gordon Byron, Baron', '2006-07-06', 106, 'https://www.gutenberg.org/ebooks/18762', 'en', 54), +(46057, 'Diary of Richard Cocks, Volume 2\r\nCape-Merchant in the English Factory in Japan, 1615-1622, with Correspondence', 'Cocks, Richard', '2015-01-18', 7, 'https://www.gutenberg.org/ebooks/48012', 'en', 16094), +(46058, 'Fabeln und Erzählungen', 'Gellert, Christian Fürchtegott', '2005-11-01', 31, 'https://www.gutenberg.org/ebooks/9335', 'de', 1141), +(46059, 'The Quality of Mercy', 'Howells, William Dean', '2009-09-27', 13, 'https://www.gutenberg.org/ebooks/30108', 'en', 61), +(46060, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 349, Supplement to Volume 12.', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11420', 'en', 133), +(46061, 'Sainte Beuve et ses inconnues', 'Pons, A. J.', '2008-05-26', 26, 'https://www.gutenberg.org/ebooks/25615', 'fr', 14042), +(46062, 'Stories from the Faerie Queen, Told to the Children', 'Lang, Jean', '2012-11-11', 47, 'https://www.gutenberg.org/ebooks/41350', 'en', 1817), +(46063, 'Evolution and Classification of the Pocket Gophers of the Subfamily Geomyinae', 'Russell, Robert J.', '2012-07-20', 8, 'https://www.gutenberg.org/ebooks/40282', 'en', 6337), +(46064, 'Amphibians and Reptiles of the Rainforests of Southern El Petén, Guatemala', 'Duellman, William Edward', '2011-12-24', 19, 'https://www.gutenberg.org/ebooks/38398', 'en', 16095), +(46065, 'Impertinent Poems', 'Cooke, Edmund Vance', '2010-09-20', 20, 'https://www.gutenberg.org/ebooks/33770', 'en', 178), +(46066, 'Prospectus of the Scots New Zealand Land Company', 'Matthew, Patrick', '2018-05-29', 4, 'https://www.gutenberg.org/ebooks/57235', 'en', 16096), +(46067, 'Nan Sherwood on the Mexican Border', 'Carr, Annie Roe', '2011-05-24', 15, 'https://www.gutenberg.org/ebooks/36202', 'en', 16097), +(46068, 'Baptism as taught in the Bible and the Prayer Book', 'Hoare, Edward', '2016-08-08', 7, 'https://www.gutenberg.org/ebooks/52747', 'en', 1427), +(46069, 'Godey\'s Lady\'s Book, Vol. 42, January, 1851', 'Various', '2005-02-16', 85, 'https://www.gutenberg.org/ebooks/15080', 'en', 14405), +(46070, 'The Coming of the King', 'Babcock, Bernie', '2007-01-15', 21, 'https://www.gutenberg.org/ebooks/20367', 'en', 942), +(46071, 'Salaperäinen ovi', 'Stevenson, Robert Louis', '2004-11-25', 40, 'https://www.gutenberg.org/ebooks/14152', 'fi', 1079), +(46072, 'Among the River Pirates: A Skippy Dare Mystery Story', 'Fitzhugh, Percy Keese', '2016-12-08', 15, 'https://www.gutenberg.org/ebooks/53695', 'en', 128), +(46073, 'Crome Yellow', 'Huxley, Aldous', '1999-12-01', 227, 'https://www.gutenberg.org/ebooks/1999', 'en', 16098), +(46074, 'In the Days of Giants: A Book of Norse Tales', 'Brown, Abbie Farwell', '2014-01-08', 162, 'https://www.gutenberg.org/ebooks/44622', 'en', 8119), +(46075, 'Serapis — Volume 05', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5505', 'en', 803), +(46076, 'Cornelli', 'Spyri, Johanna', '2004-08-01', 38, 'https://www.gutenberg.org/ebooks/6380', 'en', 3621), +(46077, 'Sint-Nikolaas en het Sint-Nikolaas-feest', 'Hengel, Wessel Albertus van', '2010-12-03', 26, 'https://www.gutenberg.org/ebooks/34555', 'nl', 6158), +(46078, 'Under Sentence of Death; Or, a Criminal\'s Last Hours', 'Hugo, Victor', '2015-09-19', 29, 'https://www.gutenberg.org/ebooks/50010', 'en', 58), +(46079, 'Evolution in Modern Thought', NULL, '2007-08-29', 56, 'https://www.gutenberg.org/ebooks/22430', 'en', 5893), +(46080, 'The Snare', 'Smith, Richard Rein', '2015-09-07', 22, 'https://www.gutenberg.org/ebooks/49901', 'en', 1029), +(46081, 'The Ladies\' Work-Book\nContaining Instructions In Knitting, Crochet, Point-Lace, etc.', 'Unknown', '2005-08-27', 117, 'https://www.gutenberg.org/ebooks/16605', 'en', 16099), +(46082, 'The History of the Confederate War, Its Causes and Its Conduct, Volume 2 (of 2)\r\nA Narrative and Critical History', 'Eggleston, George Cary', '2014-07-02', 28, 'https://www.gutenberg.org/ebooks/46175', 'en', 1717), +(46083, 'The Women Who Came in the Mayflower', 'Marble, Annie Russell', '2005-01-01', 38, 'https://www.gutenberg.org/ebooks/7252', 'en', 16081), +(46084, 'Swamp Cat', 'Kjelgaard, Jim', '2011-03-04', 28, 'https://www.gutenberg.org/ebooks/35487', 'en', 12584), +(46085, 'A tour through some parts of France, Switzerland, Savoy, Germany and Belgium, during the summer and autumn of 1814', 'Bernard, Richard Boyle', '2004-09-06', 18, 'https://www.gutenberg.org/ebooks/13377', 'en', 1408), +(46086, 'Contes D\'Andersen', 'Andersen, H. C. (Hans Christian)', '2008-11-03', 51, 'https://www.gutenberg.org/ebooks/27142', 'ca', 16100), +(46087, 'The Pension Beaurepas', 'James, Henry', '2001-07-01', 75, 'https://www.gutenberg.org/ebooks/2720', 'en', 3730), +(46088, 'The Empress Frederick: a memoir', 'Anonymous', '2013-08-06', 9, 'https://www.gutenberg.org/ebooks/43407', 'en', 16101), +(46089, 'In the Morning of Time', 'Roberts, Charles G. D., Sir', '2009-05-24', 21, 'https://www.gutenberg.org/ebooks/28936', 'en', 580), +(46090, 'Walt Whitman, Yesterday & Today', 'Legler, Henry Eduard', '2010-01-20', 5, 'https://www.gutenberg.org/ebooks/31027', 'en', 15312), +(46091, 'Condemned as a Nihilist: A Story of Escape from Siberia', 'Henty, G. A. (George Alfred)', '2008-07-19', 24, 'https://www.gutenberg.org/ebooks/26090', 'en', 16102), +(46092, 'Chats on Costume', 'Rhead, G. Woolliscroft (George Woolliscroft)', '2014-09-24', 26, 'https://www.gutenberg.org/ebooks/46949', 'en', 1520), +(46093, 'Frank Reade, Jr.\'s Search for the Silver Whale\r\nOr, Under the Ocean in the Electric \"Dolphin\"', 'Senarens, Luis', '2017-09-16', 12, 'https://www.gutenberg.org/ebooks/55562', 'en', 50), +(46094, 'Veljekset: Talvinen tarina', 'Stevenson, Robert Louis', '2015-10-15', 4, 'https://www.gutenberg.org/ebooks/50222', 'fi', 98), +(46095, 'The Education of Children', 'Erasmus, Desiderius', '2009-03-16', 119, 'https://www.gutenberg.org/ebooks/28338', 'en', 8790), +(46096, 'For The Admiral', 'Marx, W. J. (William James)', '2004-11-08', 15, 'https://www.gutenberg.org/ebooks/13979', 'en', 16103), +(46097, 'Στοχασμοί', 'Wilde, Oscar', '2010-12-28', 17, 'https://www.gutenberg.org/ebooks/34767', 'el', 53), +(46098, 'Il Nemico, vol. II', 'Oriani, Alfredo', '2014-11-05', 15, 'https://www.gutenberg.org/ebooks/47295', 'it', 1544), +(46099, 'Men of Our Times; Or, Leading Patriots of the Day\r\nBeing narratives of the lives and deeds of statesmen, generals, and orators. Including biographical sketches and anecdotes of Lincoln, Grant, Garrison, Sumner, Chase, Wilson, Greeley, Farragut, Andrew, Colfax, Stanton, Douglass, Buckingham, Sherman, Sheridan, Howard, Phillips and Beecher.', 'Stowe, Harriet Beecher', '2014-07-21', 30, 'https://www.gutenberg.org/ebooks/46347', 'en', 414), +(46100, 'At Agincourt', 'Henty, G. A. (George Alfred)', '2004-12-01', 60, 'https://www.gutenberg.org/ebooks/7060', 'en', 16104), +(46101, 'Punch, or the London Charivari, Vol. 150, January 5, 1916', 'Various', '2007-09-14', 18, 'https://www.gutenberg.org/ebooks/22602', 'en', 134), +(46102, 'The Children of France\r\nA Book of Stories of the Heroism and Self-sacrifice of Youthful Patriots of France During the Great War', 'Royce, Ruth', '2005-08-04', 29, 'https://www.gutenberg.org/ebooks/16437', 'en', 1250), +(46103, 'The Journal of a Mission to the Interior of Africa, in the Year 1805\r\nTogether with Other Documents, Official and Private, Relating to the Same Mission, to Which Is Prefixed an Account of the Life of Mr. Park', 'Park, Mungo', '2005-09-01', 28, 'https://www.gutenberg.org/ebooks/8814', 'en', 9053), +(46104, 'The Cruise of the Snark', 'London, Jack', '2001-02-01', 94, 'https://www.gutenberg.org/ebooks/2512', 'en', 16105), +(46105, 'Educational Toys\r\nConsisting Chiefly of Coping-Saw Problems for Children in School and the Home', 'Petersen, Louis Christian', '2013-09-03', 62, 'https://www.gutenberg.org/ebooks/43635', 'en', 4986), +(46106, 'The Duchesse of Langeais', 'Balzac, Honoré de', '2004-09-19', 65, 'https://www.gutenberg.org/ebooks/469', 'en', 58), +(46107, 'Zuñi Folk Tales', 'Cushing, Frank Hamilton', '2017-05-08', 21, 'https://www.gutenberg.org/ebooks/54682', 'en', 16106), +(46108, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 11, No. 25, April, 1873', 'Various', '2004-08-09', 36, 'https://www.gutenberg.org/ebooks/13145', 'en', 162), +(46109, 'Poems', 'Eddy, Mary Baker', '2008-11-30', 21, 'https://www.gutenberg.org/ebooks/27370', 'en', 8), +(46110, 'The Atlantic Monthly, Volume 09, No. 54, April, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12097', 'en', 1227), +(46111, 'Ground Tumbling', 'Worth, Henry Walter', '2017-10-14', 4, 'https://www.gutenberg.org/ebooks/55750', 'en', 16107), +(46112, 'A World Apart', 'Merwin, Sam', '2010-02-08', 33, 'https://www.gutenberg.org/ebooks/31215', 'en', 2229), +(46113, 'The Bible, King James version, Book 28: Hosea', 'Anonymous', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/8028', 'en', 14054), +(46114, 'Religious Folk-Songs of the Southern Negroes', 'Odum, Howard Washington', '2012-03-08', 21, 'https://www.gutenberg.org/ebooks/39078', 'en', 3198), +(46115, 'Hernando Cortez\nMakers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2010-05-23', 111, 'https://www.gutenberg.org/ebooks/32490', 'en', 13274), +(46116, 'Personae', 'Pound, Ezra', '2012-10-24', 80, 'https://www.gutenberg.org/ebooks/41162', 'en', 994), +(46117, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 550, June 2, 1832', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11612', 'en', 133), +(46118, 'Careless Kate: A Story for Little Folks', 'Optic, Oliver', '2008-05-11', 22, 'https://www.gutenberg.org/ebooks/25427', 'en', 62), +(46119, 'Foxhunting on the Lakeland Fells', 'Clapham, Richard', '2018-04-20', 2, 'https://www.gutenberg.org/ebooks/57007', 'en', 8710), +(46120, 'Drei korte verhoalen in ut Mestreechs', 'Olterdissen, Alphonse', '2007-04-04', 5, 'https://www.gutenberg.org/ebooks/20969', 'nl', 2765), +(46121, 'The New Gulliver, and Other Stories', 'Pain, Barry', '2010-08-27', 21, 'https://www.gutenberg.org/ebooks/33542', 'en', 61), +(46122, 'Skewbald, the New Forest Pony', 'Seaby, Allen W. (Allen William)', '2019-02-11', 4, 'https://www.gutenberg.org/ebooks/58873', 'en', 10187), +(46123, 'The Ruins; Or, Meditation on the Revolutions of Empires and the Law of Nature', 'Volney, C.-F. (Constantin-François)', '2006-05-03', 75, 'https://www.gutenberg.org/ebooks/1397', 'en', 1444), +(46124, 'The Cuckoo in the Nest, v. 1/2', 'Oliphant, Mrs. (Margaret)', '2016-07-14', 22, 'https://www.gutenberg.org/ebooks/52575', 'en', 61), +(46125, 'The Ascent of Man', 'Blind, Mathilde', '2012-05-29', 13, 'https://www.gutenberg.org/ebooks/39844', 'en', 8), +(46126, 'The Ghost Ship: A Mystery of the Sea', 'Hutcheson, John C. (John Conroy)', '2007-04-15', 33, 'https://www.gutenberg.org/ebooks/21087', 'en', 61), +(46127, 'Captain Kyd; or, The Wizard of the Sea. Vol. I', 'Ingraham, J. H. (Joseph Holt)', '2011-05-04', 10, 'https://www.gutenberg.org/ebooks/36030', 'en', 3039), +(46128, 'Constitutional History of England, Henry VII to George II. Volume 3 of 3', 'Hallam, Henry', '2013-12-11', 14, 'https://www.gutenberg.org/ebooks/44410', 'en', 445), +(46129, 'Smoke Bellew', 'London, Jack', '2004-05-01', 50, 'https://www.gutenberg.org/ebooks/5737', 'en', 315), +(46130, 'The White Desert', 'Cooper, Courtney Ryley', '2006-12-21', 34, 'https://www.gutenberg.org/ebooks/20155', 'en', 16108), +(46131, 'Dix contes modernes des meilleurs auteurs du jour', 'Arène, Paul', '2012-02-27', 76, 'https://www.gutenberg.org/ebooks/38996', 'fr', 100), +(46132, 'The Dawn and the Day\r\nOr, The Buddha and the Christ, Part I', 'Niles, Henry Thayer', '2004-12-15', 29, 'https://www.gutenberg.org/ebooks/14360', 'en', 2689), +(46133, 'La plebe, parte I', 'Bersezio, Vittorio', '2014-08-29', 9, 'https://www.gutenberg.org/ebooks/46723', 'it', 860), +(46134, 'John James Audubon', 'Burroughs, John', '2005-02-01', 44, 'https://www.gutenberg.org/ebooks/7404', 'en', 12556), +(46135, 'The Atlantic Monthly, Volume 13, No. 80, June, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2006-11-16', 19, 'https://www.gutenberg.org/ebooks/19827', 'en', 1227), +(46136, 'Paris nouveau et Paris futur', 'Fournel, Victor', '2007-08-08', 13, 'https://www.gutenberg.org/ebooks/22266', 'fr', 16109), +(46137, 'Kyttä', 'Kaatra, Kössi', '2016-04-19', 9, 'https://www.gutenberg.org/ebooks/51794', 'fi', 1171), +(46138, 'The Haunted Chamber: A Novel', 'Duchess', '2005-06-13', 28, 'https://www.gutenberg.org/ebooks/16053', 'en', 16110), +(46139, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 7', 'Goldsmith, Lewis', '2004-12-04', 10, 'https://www.gutenberg.org/ebooks/3898', 'en', 840), +(46140, 'Rosalynde\nor, Euphues\' Golden Legacy', 'Lodge, Thomas', '2005-11-29', 41, 'https://www.gutenberg.org/ebooks/17181', 'en', 16111), +(46141, 'Istoria civile del Regno di Napoli, v. 6', 'Giannone, Pietro', '2015-12-07', 13, 'https://www.gutenberg.org/ebooks/50646', 'it', 8173), +(46142, 'Four Arthurian Romances', 'Chrétien, de Troyes, active 12th century', '1997-02-01', 371, 'https://www.gutenberg.org/ebooks/831', 'en', 15360), +(46143, 'A New Bat (Genus Myotis) From Mexico', 'Hall, E. Raymond (Eugene Raymond)', '2010-11-12', 6, 'https://www.gutenberg.org/ebooks/34303', 'en', 13403), +(46144, 'The Philosophy of Fine Art, volume 1 (of 4)\nHegel\'s Aesthetik', 'Hegel, Georg Wilhelm Friedrich', '2017-08-11', 53, 'https://www.gutenberg.org/ebooks/55334', 'en', 2250), +(46145, 'Hugh Walpole: An Appreciation', 'Hergesheimer, Joseph', '2013-03-20', 72, 'https://www.gutenberg.org/ebooks/42383', 'en', 16112), +(46146, 'Plain Talks on Avoided Subjects', 'Guernsey, Henry N. (Henry Newell)', '2010-03-17', 33, 'https://www.gutenberg.org/ebooks/31671', 'en', 5443), +(46147, 'Seven Discourses on Art', 'Reynolds, Joshua, Sir', '2000-05-01', 137, 'https://www.gutenberg.org/ebooks/2176', 'en', 787), +(46148, 'Yellow Thunder, Our Little Indian Cousin', 'Wade, Mary Hazelton Blanchard', '2013-07-19', 24, 'https://www.gutenberg.org/ebooks/43251', 'en', 16113), +(46149, 'Notes and Queries, Number 09, December 29, 1849', 'Various', '2004-09-24', 23, 'https://www.gutenberg.org/ebooks/13521', 'en', 105), +(46150, 'The American Missionary — Volume 54, No. 01, January, 1900', 'Various', '2009-01-05', 5, 'https://www.gutenberg.org/ebooks/27714', 'en', 562), +(46151, 'A Little Preserving Book for a Little Girl', 'Waterman, Amy Harlow (Lane), Mrs.', '2014-02-09', 22, 'https://www.gutenberg.org/ebooks/44848', 'en', 7636), +(46152, 'Life Immovable. First Part', 'Palamas, Kostes', '2008-01-07', 12, 'https://www.gutenberg.org/ebooks/24191', 'en', 16114), +(46153, 'Early Typography', 'Skeen, William', '2018-07-08', 16, 'https://www.gutenberg.org/ebooks/57463', 'en', 16115), +(46154, 'Harper\'s Round Table, September 3, 1895', 'Various', '2010-07-09', 9, 'https://www.gutenberg.org/ebooks/33126', 'en', 668), +(46155, 'Dorothy Wordsworth: The Story of a Sister\'s Love', 'Lee, Edmund', '2012-11-28', 11, 'https://www.gutenberg.org/ebooks/41506', 'en', 16116), +(46156, 'Civil Government in the United States Considered with Some Reference to Its Origins', 'Fiske, John', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11276', 'en', 1720), +(46157, 'Hidden Gold', 'Anthony, Wilder', '2008-04-11', 21, 'https://www.gutenberg.org/ebooks/25043', 'en', 315), +(46158, 'Meccania, the Super-State', 'Gregory, Owen', '2013-10-30', 15, 'https://www.gutenberg.org/ebooks/44074', 'en', 509), +(46159, 'Guy Mannering, Or, the Astrologer — Volume 01', 'Scott, Walter', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/5353', 'en', 98), +(46160, 'Women\'s Bathing and Swimming Costume in the United States', 'Kidwell, Claudia Brush', '2011-10-01', 28, 'https://www.gutenberg.org/ebooks/37586', 'en', 16117), +(46161, 'Up To Date Business\r\nIncluding Lessons in Banking, Exchange, Business Geography, Finance, Transportation and Commercial Law\r\nHome Study Circle Library Series (Volume II.)', NULL, '2007-02-06', 37, 'https://www.gutenberg.org/ebooks/20531', 'en', 2351), +(46162, 'L\'enfant', 'Vallès, Jules', '2005-01-16', 16, 'https://www.gutenberg.org/ebooks/14704', 'fr', 61), +(46163, 'Ama Stelaro', 'Baena, Nuno', '2016-05-20', 15, 'https://www.gutenberg.org/ebooks/52111', 'eo', 16118), +(46164, 'Helen\'s Babies', 'Habberton, John', '2003-07-01', 57, 'https://www.gutenberg.org/ebooks/4281', 'en', 3210), +(46165, 'L\'Illustration, No. 3694, 13 Décembre 1913', 'Various', '2011-06-17', 3, 'https://www.gutenberg.org/ebooks/36454', 'fr', 150), +(46166, 'H. R.', 'Lefevre, Edwin', '2010-08-01', 15, 'https://www.gutenberg.org/ebooks/33314', 'en', 4405), +(46167, 'Ambition and Success', 'Marden, Orison Swett', '2018-08-07', 56, 'https://www.gutenberg.org/ebooks/57651', 'en', 16119), +(46168, 'Cluck Old Hen', 'Fiddlin\' Powers & Family', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10196', 'en', 16120), +(46169, 'The Existence of God', 'Fénelon, François de Salignac de La Mothe-', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/11044', 'en', 8066), +(46170, 'Thrills of a Bell Boy', 'Kiser, Samuel E. (Samuel Ellsworth)', '2018-03-18', 28, 'https://www.gutenberg.org/ebooks/56783', 'en', 16121), +(46171, '朝花夕拾', 'Lu, Xun', '2008-05-01', 43, 'https://www.gutenberg.org/ebooks/25271', 'zh', 20), +(46172, 'Dürer', 'Furst, Herbert', '2012-12-29', 15, 'https://www.gutenberg.org/ebooks/41734', 'en', 6212), +(46173, 'Enfances célèbres', 'Colet, Louise', '2007-02-27', 31, 'https://www.gutenberg.org/ebooks/20703', 'fr', 16122), +(46174, 'Jeanne la Fileuse: Épisode de l\'Émigration Franco-Canadienne aux États-Unis', 'Beaugrand, Honoré', '2004-12-30', 31, 'https://www.gutenberg.org/ebooks/14536', 'fr', 16123), +(46175, 'The Hymn-Book of the Modern Church: Brief studies of hymns and hymn-writers', 'Gregory, Arthur E. (Arthur Edwin)', '2019-01-05', 25, 'https://www.gutenberg.org/ebooks/58619', 'en', 12494), +(46176, 'Chitra: Ein Spiel in einem Aufzug', 'Tagore, Rabindranath', '2013-11-21', 7, 'https://www.gutenberg.org/ebooks/44246', 'de', 16124), +(46177, 'The Treasure', 'Lagerlöf, Selma', '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/5161', 'en', 1335), +(46178, 'Three Plays: The Fiddler\'s House, The Land, Thomas Muskerry', 'Colum, Padraic', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11878', 'en', 16125), +(46179, 'The Sins of the Father: A Romance of the South', 'Dixon, Thomas, Jr.', '2011-07-08', 14, 'https://www.gutenberg.org/ebooks/36666', 'en', 16126), +(46180, 'The Life of Sir Humphrey Davy, Bart. LL.D., Volume 1 (of 2)', 'Paris, John Ayrton', '2014-04-15', 12, 'https://www.gutenberg.org/ebooks/45394', 'en', 14279), +(46181, '唐诗三百首', NULL, '2016-06-13', 102, 'https://www.gutenberg.org/ebooks/52323', 'zh', 9521), +(46182, 'Les vivants et les morts', 'Noailles, Anna de', '2007-07-12', 10, 'https://www.gutenberg.org/ebooks/22054', 'fr', 8), +(46183, 'Some Chinese Ghosts', 'Hearn, Lafcadio', '2005-07-11', 97, 'https://www.gutenberg.org/ebooks/16261', 'en', 11750), +(46184, 'Encyclopedia of Diet: A Treatise on the Food Question, Vol. 1 of 5', 'Christian, Eugene', '2014-08-05', 20, 'https://www.gutenberg.org/ebooks/46511', 'en', 11808), +(46185, 'The Disowned — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 6, 'https://www.gutenberg.org/ebooks/7636', 'en', 137), +(46186, 'Butterflies and Moths (British)', 'Furneaux, William S.', '2010-10-25', 20, 'https://www.gutenberg.org/ebooks/34131', 'en', 16127), +(46187, 'History of the Scottish expedition to Norway in 1612', 'Michell, Thomas', '2015-11-17', 14, 'https://www.gutenberg.org/ebooks/50474', 'en', 16128), +(46188, 'The Handbook to English Heraldry', 'Boutell, Charles', '2007-10-24', 66, 'https://www.gutenberg.org/ebooks/23186', 'en', 10522), +(46189, 'Modern Design in Jewellery and Fans', NULL, '2015-07-31', 78, 'https://www.gutenberg.org/ebooks/49559', 'en', 6427), +(46190, 'De Vrouw: Haar bouw en haar inwendige organen', 'Jacobs, Aletta H. (Aletta Henriette)', '2007-10-03', 24, 'https://www.gutenberg.org/ebooks/22868', 'nl', 16129), +(46191, 'Ο Σινάνης: Κωμωδία εις πέντε πράξεις', 'Vyzantios, D. K. (Demetrios Konstantinou)', '2010-02-28', 26, 'https://www.gutenberg.org/ebooks/31443', 'el', 402), +(46192, 'The Confessions of St. Augustine', 'Augustine, Saint, Bishop of Hippo', '2002-06-01', 1293, 'https://www.gutenberg.org/ebooks/3296', 'en', 16130), +(46193, 'Don Quixote of the Mancha, Retold by Judge Parry', 'Parry, Edward Abbott, Sir', '2017-07-12', 55, 'https://www.gutenberg.org/ebooks/55106', 'en', 16131), +(46194, 'Anticipations\r\nOf the Reaction of Mechanical and Scientific Progress upon Human life and Thought', 'Wells, H. G. (Herbert George)', '2006-09-09', 166, 'https://www.gutenberg.org/ebooks/19229', 'en', 16132), +(46195, 'Notes and Queries, Number 30, May 25, 1850', 'Various', '2004-10-11', 21, 'https://www.gutenberg.org/ebooks/13713', 'en', 105), +(46196, 'The Public Domain: Enclosing the Commons of the Mind', 'Boyle, James', '2008-12-13', 33, 'https://www.gutenberg.org/ebooks/27526', 'en', 16133), +(46197, 'The Greville Memoirs, Part 1 (of 3), Volume 3 (of 3)\r\nA Journal of the Reigns of King George IV and King William IV', 'Greville, Charles', '2009-12-03', 9, 'https://www.gutenberg.org/ebooks/30591', 'en', 3790), +(46198, 'The Adventure of the Cardboard Box', 'Doyle, Arthur Conan', '2000-10-01', 259, 'https://www.gutenberg.org/ebooks/2344', 'en', 834), +(46199, 'A Case in Camera', 'Onions, Oliver', '2013-06-29', 19, 'https://www.gutenberg.org/ebooks/43063', 'en', 167), +(46200, 'Toronto of Old\r\nCollections and recollections illustrative of the early settlement and social life of the capital of Ontario', 'Scadding, Henry', '2011-02-09', 18, 'https://www.gutenberg.org/ebooks/35225', 'en', 16134), +(46201, 'Glory of Youth', 'Bailey, Temple', '2007-08-10', 50, 'https://www.gutenberg.org/ebooks/22292', 'en', 6827), +(46202, 'Stand Pat; Or, Poker Stories from the Mississippi', 'Curtis, David A.', '2016-04-14', 10, 'https://www.gutenberg.org/ebooks/51760', 'en', 112), +(46203, 'The Tapestry Room: A Child\'s Romance', 'Molesworth, Mrs.', '2005-11-28', 29, 'https://www.gutenberg.org/ebooks/17175', 'en', 2203), +(46204, 'Campaigns of a Non-Combatant, and His Romaunt Abroad During the War', 'Townsend, George Alfred', '2007-11-05', 37, 'https://www.gutenberg.org/ebooks/23340', 'en', 16135), +(46205, 'Woman as Decoration', 'Burbank, Emily', '2006-07-23', 43, 'https://www.gutenberg.org/ebooks/18901', 'en', 16136), +(46206, 'Fruit-Gathering', 'Tagore, Rabindranath', '2004-09-01', 41, 'https://www.gutenberg.org/ebooks/6522', 'en', 1702), +(46207, 'Proofs of a Conspiracy against all the Religions and Governments of Europe\r\ncarried on in the secret meetings of Free Masons, Illuminati, and reading societies.', 'Robison, John', '2014-12-08', 218, 'https://www.gutenberg.org/ebooks/47605', 'en', 16137), +(46208, 'The Bounty of the Chesapeake: Fishing in Colonial Virginia', 'Wharton, James', '2008-09-16', 9, 'https://www.gutenberg.org/ebooks/26632', 'en', 16138), +(46209, '兵法 (Bīng Fǎ)', 'Sunzi, active 6th century B.C.', '2004-05-01', 230, 'https://www.gutenberg.org/ebooks/12407', 'zh', 5135), +(46210, 'Œuvres Complètes de Chamfort (Tome 1)\r\nRecueillies et publiées avec une notice historique sur la vie et les écrits de l\'auteur.', 'Chamfort, Sébastien-Roch-Nicolas', '2013-03-20', 34, 'https://www.gutenberg.org/ebooks/42377', 'fr', 742), +(46211, 'Notes of a War Correspondent', 'Davis, Richard Harding', '2002-01-01', 70, 'https://www.gutenberg.org/ebooks/3050', 'en', 16139), +(46212, 'Nuts and Nutcrackers', 'Lever, Charles James', '2010-03-18', 9, 'https://www.gutenberg.org/ebooks/31685', 'en', 5270), +(46213, 'The Marble Faun; Or, The Romance of Monte Beni - Volume 2', 'Hawthorne, Nathaniel', '2006-02-26', 46, 'https://www.gutenberg.org/ebooks/2182', 'en', 16140), +(46214, 'La guerre et la paix, Tome I', 'Tolstoy, Leo, graf', '2006-03-08', 101, 'https://www.gutenberg.org/ebooks/17949', 'fr', 2564), +(46215, 'Perhe: Kuvauksia jokapäiväisestä elämästä', 'Bremer, Fredrika', '2009-12-25', 24, 'https://www.gutenberg.org/ebooks/30757', 'fi', 3370), +(46216, 'A Modern Mephistopheles, and A Whisper in the Dark', 'Alcott, Louisa May', '2017-02-20', 30, 'https://www.gutenberg.org/ebooks/54212', 'en', 109), +(46217, 'Harper\'s Round Table, December 1, 1896', 'Various', '2019-08-01', 154, 'https://www.gutenberg.org/ebooks/60027', 'en', 668), +(46218, 'The Development of Embroidery in America', 'Wheeler, Candace', '2008-01-04', 41, 'https://www.gutenberg.org/ebooks/24165', 'en', 16141), +(46219, 'The Works of Samuel Johnson, LL.D. in Eleven Volumes, Volume 06\r\nReviews, Political Tracts, and Lives of Eminent Persons', 'Johnson, Samuel', '2003-12-01', 30, 'https://www.gutenberg.org/ebooks/10350', 'en', 5416), +(46220, 'The Land of Joy', 'Barbour, Ralph Henry', '2018-07-14', 24, 'https://www.gutenberg.org/ebooks/57497', 'en', 16142), +(46221, 'La voz de España contra todos sus enemigos', 'Avilés, José María', '2012-08-05', 28, 'https://www.gutenberg.org/ebooks/40420', 'es', 16143), +(46222, 'A History of Science — Volume 3', 'Williams, Henry Smith', '1999-04-01', 29, 'https://www.gutenberg.org/ebooks/1707', 'en', 186), +(46223, 'An Introduction to Astronomy', 'Moulton, Forest Ray', '2010-04-24', 139, 'https://www.gutenberg.org/ebooks/32000', 'en', 1683), +(46224, 'L\'Alfabet européen appliqué aux langues asiatiques\nOEuvres de C.-F. Volney, tome VIII', 'Volney, C.-F. (Constantin-François)', '2018-02-11', 5, 'https://www.gutenberg.org/ebooks/56545', 'fr', 16144), +(46225, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 336, October 18, 1828', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11282', 'en', 133), +(46226, 'Madonna Mary', 'Oliphant, Mrs. (Margaret)', '2013-10-31', 24, 'https://www.gutenberg.org/ebooks/44080', 'en', 45), +(46227, 'Working With the Working Woman', 'Parker, Cornelia Stratton', '2008-03-30', 3, 'https://www.gutenberg.org/ebooks/24959', 'en', 7690), +(46228, 'The Way of Decision', 'Pease, M. C.', '2011-09-30', 7, 'https://www.gutenberg.org/ebooks/37572', 'en', 26), +(46229, 'Der Weltverkehr\r\nTelegraphie und Post, Eisenbahnen und Schiffahrt, in ihrer Entwickelung dargestellt', 'Geistbeck, Michael', '2016-09-12', 14, 'https://www.gutenberg.org/ebooks/53037', 'de', 16132), +(46230, 'Handbook on Japanning: 2nd Edition\r\nFor Ironware, Tinware, Wood, Etc. With Sections on Tinplating and Galvanizing', 'Brown, William Norman', '2005-04-14', 115, 'https://www.gutenberg.org/ebooks/15622', 'en', 16145), +(46231, 'Forty-Six Years in the Army', 'Schofield, John McAllister', '2007-05-11', 24, 'https://www.gutenberg.org/ebooks/21417', 'en', 758), +(46232, 'Ruth', 'Gaskell, Elizabeth Cleghorn', '2003-07-01', 118, 'https://www.gutenberg.org/ebooks/4275', 'en', 520), +(46233, 'Harper\'s Young People, March 15, 1881\nAn Illustrated Weekly', 'Various', '2014-03-16', 12, 'https://www.gutenberg.org/ebooks/45152', 'en', 479), +(46234, 'Harper\'s New Monthly Magazine, No. VII, December 1850, Vol. II', 'Various', '2012-08-30', 7, 'https://www.gutenberg.org/ebooks/40612', 'en', 4316), +(46235, 'The Tragedy of Coriolanus', 'Shakespeare, William', '1998-11-01', 123, 'https://www.gutenberg.org/ebooks/1535', 'en', 1298), +(46236, 'De Tribus Habitaculis Liber', 'Patrick, Saint', '2012-01-29', 13, 'https://www.gutenberg.org/ebooks/38708', 'la', 6063), +(46237, 'Punch, or the London Charivari, July 1, 1914', 'Various', '2008-01-18', 20, 'https://www.gutenberg.org/ebooks/24357', 'en', 134), +(46238, 'Dio\'s Rome, Volume 3\r\nAn Historical Narrative Originally Composed in Greek During The Reigns of Septimius Severus, Geta and Caracalla, Macrinus, Elagabalus and Alexander Severus', 'Cassius Dio Cocceianus', '2003-11-01', 53, 'https://www.gutenberg.org/ebooks/10162', 'en', 6793), +(46239, 'The Evolution of Naval Armament', 'Robertson, Frederick Leslie', '2018-03-18', 31, 'https://www.gutenberg.org/ebooks/56777', 'en', 16146), +(46240, 'Dal cellulare a Finalborgo', 'Valera, Paolo', '2008-05-02', 27, 'https://www.gutenberg.org/ebooks/25285', 'it', 16147), +(46241, 'The Atlantic Monthly, Volume 16, No. 94, August, 1865\r\nA Magazine of Literature, Art, and Politics', 'Various', '2010-05-03', 16, 'https://www.gutenberg.org/ebooks/32232', 'en', 1227), +(46242, 'Letters from Switzerland and Travels in Italy', 'Goethe, Johann Wolfgang von', '2016-10-04', 60, 'https://www.gutenberg.org/ebooks/53205', 'en', 1896), +(46243, 'The Civil War Centennial Handbook', 'Price, William H.', '2011-10-13', 10, 'https://www.gutenberg.org/ebooks/37740', 'en', 1717), +(46244, 'Cape Cod Stories', 'Lincoln, Joseph Crosby', '2006-06-06', 23, 'https://www.gutenberg.org/ebooks/5195', 'en', 6349), +(46245, 'The Whole Armour of God', 'Jowett, John Henry', '2011-07-10', 20, 'https://www.gutenberg.org/ebooks/36692', 'en', 717), +(46246, 'The Leavenworth Case', 'Green, Anna Katharine', '2003-05-01', 200, 'https://www.gutenberg.org/ebooks/4047', 'en', 7171), +(46247, 'Punch, or the London Charivari, Vol. 109, October 26, 1895', 'Various', '2014-04-11', 2, 'https://www.gutenberg.org/ebooks/45360', 'en', 134), +(46248, 'A Little Pilgrim in the Unseen', 'Oliphant, Mrs. (Margaret)', '2005-03-19', 9, 'https://www.gutenberg.org/ebooks/15410', 'en', 7863), +(46249, 'Play the Game!', 'Mitchell, Ruth Comfort', '2007-05-27', 18, 'https://www.gutenberg.org/ebooks/21625', 'en', 348), +(46250, 'Pariah Planet', 'Leinster, Murray', '2009-07-18', 61, 'https://www.gutenberg.org/ebooks/29448', 'en', 16148), +(46251, 'Pomo Bear Doctors', 'Barrett, S. A. (Samuel Alfred)', '2013-06-18', 14, 'https://www.gutenberg.org/ebooks/42979', 'en', 14052), +(46252, 'The Vedanta-Sutras with the Commentary by Sankaracarya\nSacred Books of the East, Volume 1', NULL, '2005-07-15', 151, 'https://www.gutenberg.org/ebooks/16295', 'en', 11874), +(46253, 'War Stories for my Grandchildren', 'Foster, John Watson', '2016-03-25', 10, 'https://www.gutenberg.org/ebooks/51552', 'en', 444), +(46254, 'Half-Hours with the Idiot', 'Bangs, John Kendrick', '2011-01-20', 15, 'https://www.gutenberg.org/ebooks/35017', 'en', 2688), +(46255, 'The Evolution of Man — Volume 2', 'Haeckel, Ernst', '2004-10-01', 15, 'https://www.gutenberg.org/ebooks/6710', 'en', 1109), +(46256, 'East-West Trade Trends\r\nMutual Defense Assistance Control Act of 1951 (the Battle Act); Fourth Report to Congress, Second Half of 1953', 'United States. Foreign Operations Administration', '2014-11-23', 33, 'https://www.gutenberg.org/ebooks/47437', 'en', 16149), +(46257, 'Schriften 04: Phantasus 1', 'Tieck, Ludwig', '2015-11-18', 32, 'https://www.gutenberg.org/ebooks/50480', 'de', 422), +(46258, 'Sonnets, and Sonnets on English Dramatic Poets (1590-1650)\nTaken from The Collected Poetical Works of Algernon Charles\nSwinburne, Vol V.', 'Swinburne, Algernon Charles', '2005-12-18', 11, 'https://www.gutenberg.org/ebooks/17347', 'en', 532), +(46259, 'The Damned Thing\n1898, From \"In the Midst of Life\"', 'Bierce, Ambrose', '2007-10-24', 180, 'https://www.gutenberg.org/ebooks/23172', 'en', 461), +(46260, 'The World Before Them: A Novel. Volume 2 (of 3)', 'Moodie, Susanna', '2013-02-20', 10, 'https://www.gutenberg.org/ebooks/42145', 'en', 61), +(46261, 'The Pilgrims of Hope and Chants for Socialists', 'Morris, William', '2002-06-01', 22, 'https://www.gutenberg.org/ebooks/3262', 'en', 16150), +(46262, 'La géométrie', 'Descartes, René', '2008-08-23', 124, 'https://www.gutenberg.org/ebooks/26400', 'fr', 9920), +(46263, 'The Philippine Islands, 1493-1803 — Volume 04 of 55\r\n1576-1582\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Beginning of the Nineteenth Century', NULL, '2004-06-01', 61, 'https://www.gutenberg.org/ebooks/12635', 'en', 7466), +(46264, 'Journal de Eugène Delacroix, Tome 1 (de 3)\r\n1823-1850', 'Delacroix, Eugène', '2017-01-19', 38, 'https://www.gutenberg.org/ebooks/54020', 'fr', 15205), +(46265, 'Leila or, the Siege of Granada, Book III.', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 16, 'https://www.gutenberg.org/ebooks/9758', 'en', 2371), +(46266, 'The Art of Lecturing\nRevised Edition', 'Lewis, Arthur M. (Arthur Morrow)', '2009-11-29', 63, 'https://www.gutenberg.org/ebooks/30565', 'en', 16151), +(46267, 'Chaucer\'s Works, Volume 6 (of 7) — Introduction, Glossary, and Indexes', 'Chaucer, Geoffrey', '2013-07-05', 45, 'https://www.gutenberg.org/ebooks/43097', 'en', 4610), +(46268, 'The Writings of Thomas Jefferson, Vol. 8 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2018-01-05', 23, 'https://www.gutenberg.org/ebooks/56313', 'en', 3311), +(46269, 'La Comédie des Méprises', 'Shakespeare, William', '2005-05-17', 26, 'https://www.gutenberg.org/ebooks/15848', 'fr', 907), +(46270, 'Letter from Monsieur de Cros\r\n(who was an embassador at the Treaty of Nimeguen and a resident at England in K. Charles the Second\'s reign) to the Lord ----; being an answer to Sir Wm. Temple\'s memoirs concerning what passed from the year 1672 until the year 1679', 'Du Cros, Simon, active 17th century', '2010-06-02', 8, 'https://www.gutenberg.org/ebooks/32656', 'en', 16152), +(46271, 'Stories of Invention, Told by Inventors and their Friends', 'Hale, Edward Everett', '2012-07-19', 22, 'https://www.gutenberg.org/ebooks/40276', 'en', 1739), +(46272, 'The Nibelungenlied', NULL, '1997-12-01', 122, 'https://www.gutenberg.org/ebooks/1151', 'en', 16153), +(46273, 'I misteri del castello d\'Udolfo, vol. 4', 'Radcliffe, Ann Ward', '2010-09-20', 20, 'https://www.gutenberg.org/ebooks/33784', 'it', 16), +(46274, '辛棄疾詞選', 'Xin, Qiji', '2008-03-02', 15, 'https://www.gutenberg.org/ebooks/24733', 'zh', 1721), +(46275, 'Romance de lobos, comedia barbara', 'Valle-Inclán, Ramón del', '2003-12-01', 39, 'https://www.gutenberg.org/ebooks/10506', 'es', 2729); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(46276, 'Rhoda Fleming — Volume 3', 'Meredith, George', '2003-09-01', 18, 'https://www.gutenberg.org/ebooks/4423', 'en', 137), +(46277, 'L\'Illustration, No. 2508, 21 Mars 1891', 'Various', '2014-05-20', 15, 'https://www.gutenberg.org/ebooks/45704', 'fr', 150), +(46278, 'His Majesties Declaration Defended', 'Dryden, John', '2005-02-15', 19, 'https://www.gutenberg.org/ebooks/15074', 'en', 16154), +(46279, 'The Rifle Rangers', 'Reid, Mayne', '2007-04-27', 21, 'https://www.gutenberg.org/ebooks/21241', 'en', 3242), +(46280, 'A Short History of English Printing, 1476-1898', 'Plomer, Henry Robert', '2007-01-18', 12, 'https://www.gutenberg.org/ebooks/20393', 'en', 16155), +(46281, 'Roaming Through the West Indies', 'Franck, Harry Alverson', '2018-11-17', 23, 'https://www.gutenberg.org/ebooks/58289', 'en', 3841), +(46282, 'Jockele und die Mädchen: Roman aus dem heutigen Weimar', 'Geissler, Max', '2016-12-04', 7, 'https://www.gutenberg.org/ebooks/53661', 'de', 549), +(46283, 'Mrs. Bindle: Some Incidents from the Domestic Life of the Bindles', 'Jenkins, Herbert George', '2011-09-06', 29, 'https://www.gutenberg.org/ebooks/37324', 'en', 4520), +(46284, 'Princess Maritza', 'Brebner, Percy James', '2004-08-01', 17, 'https://www.gutenberg.org/ebooks/6374', 'en', 323), +(46285, 'Domestic folk-lore', 'Thiselton-Dyer, T. F. (Thomas Firminger)', '2014-10-05', 27, 'https://www.gutenberg.org/ebooks/47053', 'en', 1223), +(46286, 'The Bay State Monthly, Volume 3, No. 3', 'Various', '2006-02-09', 11, 'https://www.gutenberg.org/ebooks/17723', 'en', 5522), +(46287, 'Bred In The Bone\n1908', 'Page, Thomas Nelson', '2007-11-16', 16, 'https://www.gutenberg.org/ebooks/23516', 'en', 1439), +(46288, 'Ratsmädelgeschichten', 'Böhlau, Helene', '2015-04-30', 10, 'https://www.gutenberg.org/ebooks/48827', 'de', 1212), +(46289, 'Nothing But the Best', 'Cogan, Alan', '2016-02-06', 29, 'https://www.gutenberg.org/ebooks/51136', 'en', 179), +(46290, 'Crossing the Plains, Days of \'57\r\nA Narrative of Early Emigrant Travel to California by the Ox-team Method', 'Maxwell, Wm. Audley (William Audley)', '2008-10-09', 5, 'https://www.gutenberg.org/ebooks/26858', 'en', 1181), +(46291, 'The Forty-third regiment United States Colored Troops', 'Mickley, Jeremiah Marion', '2014-07-03', 7, 'https://www.gutenberg.org/ebooks/46181', 'en', 16156), +(46292, 'Encyclopaedia Britannica, 11th Edition, \"Ethiopia\" to \"Evangelical Association\"\r\nVolume 9, Slice 8', 'Various', '2011-03-03', 21, 'https://www.gutenberg.org/ebooks/35473', 'en', 1081), +(46293, 'Les Pardaillan — Tome 03 : La Fausta', 'Zévaco, Michel', '2004-09-06', 11, 'https://www.gutenberg.org/ebooks/13383', 'fr', 642), +(46294, 'The Real Captain Kidd: A Vindication', 'Dalton, Cornelius Neale', '2017-03-27', 25, 'https://www.gutenberg.org/ebooks/54444', 'en', 16157), +(46295, 'Whispers', 'Brown, Paul Cameron', '2009-09-26', 17, 'https://www.gutenberg.org/ebooks/30101', 'en', 8), +(46296, 'God and the King', 'Bowen, Marjorie', '2013-04-12', 24, 'https://www.gutenberg.org/ebooks/42521', 'en', 16158), +(46297, 'The Girl Scouts: Their History and Practice', 'Girl Scouts of the United States of America', '2009-08-26', 20, 'https://www.gutenberg.org/ebooks/29810', 'en', 6866), +(46298, 'Antonina; Or, The Fall of Rome', 'Collins, Wilkie', '2003-01-01', 47, 'https://www.gutenberg.org/ebooks/3606', 'en', 16159), +(46299, 'Problems of Expansion\r\nAs Considered in Papers and Addresses', 'Reid, Whitelaw', '2008-07-15', 13, 'https://www.gutenberg.org/ebooks/26064', 'en', 14730), +(46300, 'Life of Robert Stevenson, Civil Engineer', 'Stevenson, David', '2017-09-21', 11, 'https://www.gutenberg.org/ebooks/55596', 'en', 16160), +(46301, 'Contes à mes petites amies', 'Bouilly, Jean Nicolas', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12251', 'fr', 168), +(46302, 'The Last Trail', 'Grey, Zane', '2006-02-01', 132, 'https://www.gutenberg.org/ebooks/9932', 'en', 10830), +(46303, 'Foch the Man: A Life of the Supreme Commander of the Allied Armies', 'Laughlin, Clara E. (Clara Elizabeth)', '2006-01-14', 30, 'https://www.gutenberg.org/ebooks/17511', 'en', 16161), +(46304, 'The Awakening', 'Chopin, Kate', '2007-12-01', 34, 'https://www.gutenberg.org/ebooks/23724', 'en', 4475), +(46305, 'Address to the First Graduating Class of Rutgers Female College', 'Pierce, Henry M. (Henry Miller)', '2010-12-30', 18, 'https://www.gutenberg.org/ebooks/34793', 'en', 16162), +(46306, 'Narrative and Miscellaneous Papers — Volume 1', 'De Quincey, Thomas', '2004-07-01', 28, 'https://www.gutenberg.org/ebooks/6146', 'en', 472), +(46307, 'The Popular Science Monthly, August, 1900\nVol. 57, May, 1900 to October, 1900', 'Various', '2014-11-01', 6, 'https://www.gutenberg.org/ebooks/47261', 'en', 352), +(46308, 'Uncanny Tales', 'Molesworth, Mrs.', '2011-03-21', 32, 'https://www.gutenberg.org/ebooks/35641', 'en', 16163), +(46309, 'Don Quixote', 'Cervantes Saavedra, Miguel de', '2004-12-01', 51, 'https://www.gutenberg.org/ebooks/7094', 'en', 2176), +(46310, 'A Touch of E Flat', 'Gibson, Joe', '2016-02-26', 25, 'https://www.gutenberg.org/ebooks/51304', 'en', 179), +(46311, 'Daddy\'s Girl', 'Meade, L. T.', '2009-10-25', 23, 'https://www.gutenberg.org/ebooks/30333', 'en', 1388), +(46312, 'A Blue Devil of France: Epic figures and stories of the Great War, 1914-1918', 'Capart, Gustav P.', '2015-02-10', 8, 'https://www.gutenberg.org/ebooks/48229', 'en', 449), +(46313, 'The Child\'s Day', 'Hutchinson, Woods', '2006-06-11', 32, 'https://www.gutenberg.org/ebooks/18559', 'en', 4690), +(46314, 'Friendship Village Love Stories', 'Gale, Zona', '2017-05-07', 34, 'https://www.gutenberg.org/ebooks/54676', 'en', 262), +(46315, 'The Regent\'s Daughter', 'Dumas, Alexandre', '2008-12-02', 51, 'https://www.gutenberg.org/ebooks/27384', 'en', 16164), +(46316, 'A Little Maid of Province Town', 'Curtis, Alice Turner', '2008-08-10', 15, 'https://www.gutenberg.org/ebooks/26256', 'en', 2794), +(46317, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 388, September 5, 1829', 'Various', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/12063', 'en', 133), +(46318, 'King Horn, Floriz and Blauncheflur, The Assumption of Our Lady', NULL, '2013-05-15', 31, 'https://www.gutenberg.org/ebooks/42713', 'en', 11889), +(46319, 'The Koran (Al-Qur\'an)', NULL, '2002-09-01', 240, 'https://www.gutenberg.org/ebooks/3434', 'en', 542), +(46320, 'A Supplication for the Beggars', 'Fish, Simon', '2010-05-21', 43, 'https://www.gutenberg.org/ebooks/32464', 'en', 263), +(46321, 'Blue-beard: A Contribution to History and Folk-lore\r\nBeing the history of Gilles de Retz of Brittany, France, who was executed at Nantes in 1440 A.D., and who was the original of Blue-beard in the tales of Mother Goose', 'Wilson, Thomas', '2019-07-21', 826, 'https://www.gutenberg.org/ebooks/59955', 'en', 16165), +(46322, 'Self-control: A Novel', 'Brunton, Mary', '2012-10-27', 91, 'https://www.gutenberg.org/ebooks/41196', 'en', 3994), +(46323, 'Shout Treason: The Trial of Aaron Burr', 'Beirne, Francis F.', '2017-12-03', 8, 'https://www.gutenberg.org/ebooks/56121', 'en', 16166), +(46324, 'La Batalo de l\' Vivo', 'Dickens, Charles', '2008-02-03', 26, 'https://www.gutenberg.org/ebooks/24501', 'eo', 585), +(46325, 'A Collection of Old English Plays, Volume 3', NULL, '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/10734', 'en', 1790), +(46326, 'Journal and Letters of Philip Vickers Fithian: A Plantation Tutor of the Old Dominion, 1773-1774.', 'Fithian, Philip Vickers', '2012-06-20', 31, 'https://www.gutenberg.org/ebooks/40044', 'en', 16167), +(46327, 'Tom Swift Among the Fire Fighters; Or, Battling with Flames from the Air', 'Appleton, Victor', '1998-06-01', 52, 'https://www.gutenberg.org/ebooks/1363', 'en', 16168), +(46328, 'Aviation in Canada, 1917-1918\r\nBeing a Brief Account of the Work of the Royal Air Force Canada, the Aviation Department of the Imperial Munitions Board, and the Canadian Aeroplanes Limited', NULL, '2019-02-14', 15, 'https://www.gutenberg.org/ebooks/58887', 'en', 16169), +(46329, 'Baseball Joe Saving the League; or, Breaking Up a Great Conspiracy', 'Chadwick, Lester', '2019-03-31', 10, 'https://www.gutenberg.org/ebooks/59169', 'en', 3334), +(46330, 'The Tragedy of St. Helena', 'Runciman, Walter Runciman, Baron', '2005-03-03', 18, 'https://www.gutenberg.org/ebooks/15246', 'en', 2362), +(46331, 'Fountains Abbey: The story of a mediæval monastery', 'Hodges, George', '2016-07-16', 8, 'https://www.gutenberg.org/ebooks/52581', 'en', 16170), +(46332, 'A Pirate of the Caribbees', 'Collingwood, Harry', '2007-04-13', 30, 'https://www.gutenberg.org/ebooks/21073', 'en', 324), +(46333, 'Where No Fear Was: A Book About Fear', 'Benson, Arthur Christopher', '2003-11-01', 24, 'https://www.gutenberg.org/ebooks/4611', 'en', 15210), +(46334, 'Little Fishers: and Their Nets', 'Pansy', '2014-04-30', 23, 'https://www.gutenberg.org/ebooks/45536', 'en', 389), +(46335, 'History of the Buccaneers of America', 'Burney, James', '2011-08-17', 31, 'https://www.gutenberg.org/ebooks/37116', 'en', 16171), +(46336, 'Turner', 'Monkhouse, W. Cosmo (William Cosmo)', '2012-09-27', 30, 'https://www.gutenberg.org/ebooks/40878', 'en', 2038), +(46337, 'Instincts of the Herd in Peace and War', 'Trotter, W. (Wilfred)', '2016-11-05', 77, 'https://www.gutenberg.org/ebooks/53453', 'en', 1771), +(46338, 'The Street Called Straight', 'King, Basil', '2004-12-20', 19, 'https://www.gutenberg.org/ebooks/14394', 'en', 1219), +(46339, 'Vocational Psychology: Its Problems and Methods', 'Hollingworth, Leta Stetter', '2012-02-23', 9, 'https://www.gutenberg.org/ebooks/38962', 'en', 16172), +(46340, 'What We Saw at Madame World\'s Fair\r\nBeing a Series of Letters from the Twins at the Panama-Pacific International Exposition to Their Cousins at Home', 'Gordon, Elizabeth', '2016-03-29', 7, 'https://www.gutenberg.org/ebooks/51599', 'en', 3035), +(46341, 'The Little Brown Hen Hears the Song of the Nightingale & The Golden Harvest', 'Van Dresser, Jasmine Stone', '2009-07-22', 6, 'https://www.gutenberg.org/ebooks/29483', 'en', 195), +(46342, 'Eugene Aram — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7609', 'en', 4703), +(46343, 'Critical, Historical, and Miscellaneous Essays; Vol. 5\r\nWith a Memoir and Index', 'Macaulay, Thomas Babington Macaulay, Baron', '2017-11-06', 9, 'https://www.gutenberg.org/ebooks/55905', 'en', 1953), +(46344, 'The Trail of the Goldseekers: A Record of Travel in Prose and Verse', 'Garland, Hamlin', '2009-04-10', 19, 'https://www.gutenberg.org/ebooks/28551', 'en', 16173), +(46345, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 07 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-10-01', 14, 'https://www.gutenberg.org/ebooks/43860', 'it', 6107), +(46346, 'Sketches from Concord and Appledore\r\nConcord thirty years ago; Nathaniel Hawthorne; Louisa M. Alcott; Ralph Waldo Emerson; Matthew Arnold; David A. Wasson; Wendell Phillips; Appledore and its visitors; John Greenleaf Whittier', 'Stearns, Frank Preston', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8641', 'en', 16174), +(46347, 'Canada and the British immigrant', 'Weaver, Emily P. (Emily Poynton)', '2015-08-01', 11, 'https://www.gutenberg.org/ebooks/49566', 'en', 2655), +(46348, 'The Second Epistle of Paul the Apostle to the Corinthians', NULL, '2007-10-01', 4, 'https://www.gutenberg.org/ebooks/22857', 'en', 7343), +(46349, 'Torquemada en el purgatorio', 'Pérez Galdós, Benito', '2017-07-17', 29, 'https://www.gutenberg.org/ebooks/55139', 'es', 1353), +(46350, 'The History of England in Three Volumes, Vol. I., Part F.\r\nFrom Charles II. to James II.', 'Hume, David', '2006-09-08', 37, 'https://www.gutenberg.org/ebooks/19216', 'en', 11561), +(46351, 'The Settlement of Wage Disputes', 'Feis, Herbert', '2008-12-13', 22, 'https://www.gutenberg.org/ebooks/27519', 'en', 14784), +(46352, 'The Project Gutenberg Encyclopedia, Volume 1 of 28', 'Project Gutenberg', '1995-01-01', 371, 'https://www.gutenberg.org/ebooks/200', 'en', 1081), +(46353, 'Mystery and Confidence: A Tale. Vol. 1', 'Pinchard, Elizabeth Sibthorpe', '2011-01-13', 5, 'https://www.gutenberg.org/ebooks/34932', 'en', 61), +(46354, 'Peter the Priest', 'Jókai, Mór', '2007-12-23', 10, 'https://www.gutenberg.org/ebooks/23985', 'en', 759), +(46355, 'Josephus', 'Bentwich, Norman', '2006-01-01', 23, 'https://www.gutenberg.org/ebooks/9793', 'en', 16175), +(46356, 'Oh, Money! Money! A Novel', 'Porter, Eleanor H. (Eleanor Hodgman)', '2004-06-01', 51, 'https://www.gutenberg.org/ebooks/5962', 'en', 1380), +(46357, 'Mortomley\'s Estate: A Novel. Vol. 1 (of 3)', 'Riddell, J. H., Mrs.', '2012-05-04', 22, 'https://www.gutenberg.org/ebooks/39611', 'en', 95), +(46358, 'Lippincott\'s Magazine, October 1885', 'Various', '2004-12-29', 19, 'https://www.gutenberg.org/ebooks/14509', 'en', 162), +(46359, 'North Woods Manhunt (A Sugar Creek Gang Story)', 'Hutchens, Paul', '2019-01-06', 9, 'https://www.gutenberg.org/ebooks/58626', 'en', 3), +(46360, 'Two Years Ago, Volume II.', 'Kingsley, Charles', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/10995', 'en', 14282), +(46361, 'Harper\'s Young People, December 7, 1880\nAn Illustrated Monthly', 'Various', '2013-11-24', 9, 'https://www.gutenberg.org/ebooks/44279', 'en', 479), +(46362, 'U.S. Copyright Renewals, 1973 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11847', 'en', 4170), +(46363, 'Magic\r\nIn which are given clear and concise explanations of all the well-known illusions as well as many new ones.', 'Stanyon, Ellis', '2011-07-08', 71, 'https://www.gutenberg.org/ebooks/36659', 'en', 3590), +(46364, 'L\'escole des filles\r\nréimpression complète du texte original sur la contrefaçon hollandaise de 1668', 'Millot, Michel, active 1655', '2014-02-12', 181, 'https://www.gutenberg.org/ebooks/44877', 'fr', 1989), +(46365, 'Battery E in France: 149th Field Artillery, Rainbow (42nd) Division', 'Kilner, Frederic Richard', '2010-07-08', 16, 'https://www.gutenberg.org/ebooks/33119', 'en', 16176), +(46366, 'Bukfenc', 'Krúdy, Gyula', '2012-12-02', 15, 'https://www.gutenberg.org/ebooks/41539', 'hu', 61), +(46367, 'The Manual of the Botany of the Northern United States\r\nIncluding the District East of the Mississippi and North of North Carolina and Tennessee', 'Gray, Asa', '2012-04-11', 26, 'https://www.gutenberg.org/ebooks/39423', 'en', 16177), +(46368, 'L\'Adultera: Roman', 'Fontane, Theodor', '2016-08-28', 47, 'https://www.gutenberg.org/ebooks/52912', 'de', 3994), +(46369, 'Four Famous American Writers: Washington Irving, Edgar Allan Poe, James Russell Lowell, Bayard Taylor\r\nA Book for Young Americans', 'Cody, Sherwin', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/11249', 'en', 9350), +(46370, 'Punch, or the London Charivari, Vol. 147, July 22, 1914', 'Various', '2008-04-05', 8, 'https://www.gutenberg.org/ebooks/24992', 'en', 134), +(46371, 'The Anti-slavery Harp: A Collection of Songs for Anti-slavery Meetings', 'Brown, William Wells', '2018-12-05', 7, 'https://www.gutenberg.org/ebooks/58414', 'en', 4777), +(46372, 'The Geological Story of the Isle of Wight', 'Hughes, J. Cecil (John Cecil)', '2010-10-14', 13, 'https://www.gutenberg.org/ebooks/33925', 'en', 16178), +(46373, 'Versos de Bulhão Pato', 'Pato, Raimundo António de Bulhão', '2008-06-19', 6, 'https://www.gutenberg.org/ebooks/25840', 'pt', 1638), +(46374, 'The War Poems of Siegfried Sassoon', 'Sassoon, Siegfried', '2014-03-24', 46, 'https://www.gutenberg.org/ebooks/45199', 'en', 3115), +(46375, 'Dixie Hart', 'Harben, Will N. (Will Nathaniel)', '2006-11-15', 22, 'https://www.gutenberg.org/ebooks/19818', 'en', 61), +(46376, 'The Legacy of Greece\r\nEssays By: Gilbert Murray, W. R. Inge, J. Burnet, Sir T. L. Heath, D\'arcy W. Thompson, Charles Singer, R. W. Livingston, A. Toynbee, A. E. Zimmern, Percy Gardner, Sir Reginald Blomfield', NULL, '2007-08-06', 29, 'https://www.gutenberg.org/ebooks/22259', 'en', 16179), +(46377, 'Imaginary Interviews', 'Howells, William Dean', '2009-05-01', 16, 'https://www.gutenberg.org/ebooks/28763', 'en', 20), +(46378, 'Harper\'s Round Table, December 24, 1895', 'Various', '2015-12-13', 3, 'https://www.gutenberg.org/ebooks/50679', 'en', 668), +(46379, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 25: Russia and Poland', 'Casanova, Giacomo', '2004-12-12', 21, 'https://www.gutenberg.org/ebooks/2975', 'en', 4164), +(46380, 'La battaglia di Benevento: Storia del secolo XIII', 'Guerrazzi, Francesco Domenico', '2006-08-10', 35, 'https://www.gutenberg.org/ebooks/19024', 'it', 16180), +(46381, 'Au pays des lys noirs: Souvenirs de jeunesse et d\'âge mûr', 'Retté, Adolphe', '2005-10-10', 29, 'https://www.gutenberg.org/ebooks/16850', 'fr', 16181), +(46382, 'Life on the Mississippi, Part 3.', 'Twain, Mark', '2004-07-09', 7, 'https://www.gutenberg.org/ebooks/8473', 'en', 16182), +(46383, 'What Do You Read?', 'Ellanby, Boyd', '2015-08-21', 40, 'https://www.gutenberg.org/ebooks/49754', 'en', 4598), +(46384, 'Valentine and Orson: A Romantic Melo-Drame\r\nAs Performed at the Theatre-Royal Covent-Garden', 'Dibdin, Thomas', '2015-04-12', 7, 'https://www.gutenberg.org/ebooks/48686', 'en', 16183), +(46385, 'Judy', 'Bailey, Temple', '2006-03-14', 52, 'https://www.gutenberg.org/ebooks/17982', 'en', 1123), +(46386, 'The Works of Edgar Allan Poe — Volume 3', 'Poe, Edgar Allan', '2000-04-01', 495, 'https://www.gutenberg.org/ebooks/2149', 'en', 359), +(46387, 'The Faithless Parrot', 'Bennett, Charles H. (Charles Henry)', '2007-06-21', 49, 'https://www.gutenberg.org/ebooks/21884', 'en', 3823), +(46388, 'Nurse Heatherdale\'s Story', 'Molesworth, Mrs.', '2012-03-04', 9, 'https://www.gutenberg.org/ebooks/39047', 'en', 195), +(46389, 'The Baby\'s Opera', 'Crane, Walter', '2008-05-10', 185, 'https://www.gutenberg.org/ebooks/25418', 'en', 2990), +(46390, 'The Camp Fire Girls at Onoway House; Or, The Magic Garden', 'Frey, Hildegard G.', '2011-07-24', 17, 'https://www.gutenberg.org/ebooks/36833', 'en', 622), +(46391, 'The Monomaniac (La bête humaine)', 'Zola, Émile', '2018-04-23', 42, 'https://www.gutenberg.org/ebooks/57038', 'en', 58), +(46392, 'The Outcaste', 'Penny, F. E. (Fanny Emily)', '2011-12-10', 7, 'https://www.gutenberg.org/ebooks/38195', 'en', 7595), +(46393, 'In The Yule-Log Glow, Book IV', 'Morris, Harrison S. (Harrison Smith)', '2007-04-01', 23, 'https://www.gutenberg.org/ebooks/20956', 'en', 381), +(46394, 'The Old Showmen and the Old London Fairs', 'Frost, Thomas', '2013-01-31', 15, 'https://www.gutenberg.org/ebooks/41961', 'en', 16184), +(46395, 'Stray Pearls: Memoirs of Margaret De Ribaumont, Viscountess of Bellaise', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/5708', 'en', 11414), +(46396, 'Red Dusk and the Morrow: Adventures and Investigations in Red Russia', 'Dukes, Paul', '2018-08-29', 38, 'https://www.gutenberg.org/ebooks/57804', 'en', 16185), +(46397, 'Home Life in Russia, Volumes 1 and 2\r\n[Dead Souls]', 'Gogol, Nikolai Vasilevich', '2018-10-10', 44, 'https://www.gutenberg.org/ebooks/58070', 'en', 637), +(46398, 'The War in Syria, Volume 1 (of 2)', 'Napier, Charles', '2016-11-10', 44, 'https://www.gutenberg.org/ebooks/53498', 'en', 16186), +(46399, 'A Christmas Accident and Other Stories', 'Trumbull, Annie Eliot', '2009-03-11', 21, 'https://www.gutenberg.org/ebooks/28307', 'en', 770), +(46400, 'Camp and Trail: A Story of the Maine Woods', 'Hornibrook, Isabel', '2004-11-04', 8, 'https://www.gutenberg.org/ebooks/13946', 'en', 1096), +(46401, '813', 'Leblanc, Maurice', '2010-12-27', 109, 'https://www.gutenberg.org/ebooks/34758', 'en', 4343), +(46402, 'Sacred Books of the East', NULL, '2004-07-12', 204, 'https://www.gutenberg.org/ebooks/12894', 'en', 10320), +(46403, 'A plain and faithful narrative of the original design, rise, progress and present state of the Indian charity-school at Lebanon, in Connecticut', 'Wheelock, Eleazar', '2014-07-23', 10, 'https://www.gutenberg.org/ebooks/46378', 'en', 16187), +(46404, 'The Grey Wig: Stories and Novelettes', 'Zangwill, Israel', '2005-08-01', 21, 'https://www.gutenberg.org/ebooks/16408', 'en', 4288), +(46405, 'The Door in the Wall, and Other Stories', 'Wells, H. G. (Herbert George)', '1996-03-01', 466, 'https://www.gutenberg.org/ebooks/456', 'en', 2634), +(46406, 'The Life of George Washington, Vol. 2\r\nCommander in Chief of the American Forces During the War\r\nwhich Established the Independence of his Country and First\r\nPresident of the United States', 'Marshall, John', '2006-06-15', 20, 'https://www.gutenberg.org/ebooks/18592', 'en', 1433), +(46407, 'The Avalanche: A Mystery Story', 'Atherton, Gertrude Franklin Horn', '2004-06-30', 29, 'https://www.gutenberg.org/ebooks/7863', 'en', 128), +(46408, 'La Saga de Njal', NULL, '2006-10-02', 53, 'https://www.gutenberg.org/ebooks/19440', 'fr', 7424), +(46409, 'The Bible, King James version, Book 17: Esther', 'Anonymous', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/8017', 'en', 4345), +(46410, 'The Stingy Receiver', 'Abbott, Eleanor Hallowell', '2015-06-29', 27, 'https://www.gutenberg.org/ebooks/49330', 'en', 1563), +(46411, 'All Sorts and Conditions of Men: An Impossible Story', 'Besant, Walter', '2014-10-12', 41, 'https://www.gutenberg.org/ebooks/47098', 'en', 7885), +(46412, 'Supplemento ao n.º 7 das Insomnias de Camillo Castello Branco', 'Moraes, Anselmo de', '2009-01-31', 6, 'https://www.gutenberg.org/ebooks/27941', 'pt', 2272), +(46413, 'The Nursery, July 1877, XXII. No. 1\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 11, 'https://www.gutenberg.org/ebooks/28135', 'en', 4641), +(46414, 'The \"Genius\"', 'Dreiser, Theodore', '2010-03-30', 145, 'https://www.gutenberg.org/ebooks/31824', 'en', 16188), +(46415, 'The New Avatar and The Destiny of the Soul\r\nThe Findings of Natural Science Reduced to Practical Studies in Psychology', 'Buck, J. D. (Jirah Dewey)', '2008-10-12', 21, 'https://www.gutenberg.org/ebooks/26893', 'en', 16189), +(46416, 'The Gutenberg Webster\'s Unabridged Dictionary: Section I, J, K, and L', 'Webster, Noah', '1996-09-01', 109, 'https://www.gutenberg.org/ebooks/664', 'en', 1481), +(46417, 'Punch, or the London Charivari, Volume 100, May 16, 1891', 'Various', '2004-09-01', 3, 'https://www.gutenberg.org/ebooks/13348', 'en', 134), +(46418, 'Erotika Biblion', 'Mirabeau, Honoré-Gabriel de Riqueti, comte de', '2013-08-11', 74, 'https://www.gutenberg.org/ebooks/43438', 'de', 1414), +(46419, 'The Philosophy of Style', 'Spencer, Herbert', '2009-05-01', 4, 'https://www.gutenberg.org/ebooks/28909', 'en', 11535), +(46420, 'Thibaut und Savigny\nZum 100jährigen Gedächtnis des Kampfes um ein einheitliches bürgerliches Recht für Deutschland', NULL, '2016-01-01', 17, 'https://www.gutenberg.org/ebooks/50813', 'de', 16190), +(46421, 'A Farmer\'s Wife: The Story of Ruth', 'Willard, J. H. (James Hartwell)', '2010-01-19', 14, 'https://www.gutenberg.org/ebooks/31018', 'en', 956), +(46422, 'A Series of Letters, in Defence of Divine Revelation\r\nIn Reply to Rev. Abner Kneeland\'s Serious Inquiry into the Authenticity of the Same. To Which is Added, a Religious Correspondence, Between the Rev. Hosea Ballou, and the Rev. Dr. Joseph Buckminster and Rev. Joseph Walton, Pastors of Congregational Churches in Portsmouth, N. H.', 'Ballou, Hosea', '2005-06-01', 10, 'https://www.gutenberg.org/ebooks/8225', 'en', 16191), +(46423, 'Tampereen kaupunki\nMuisto Sen Satavuotis-Juhlastansa Lokakuun 1. päivänä 1879', 'Blåfield, Karl Otto Johan', '2015-06-01', 15, 'https://www.gutenberg.org/ebooks/49102', 'fi', 16192), +(46424, 'The Holladay Case: A Tale', 'Stevenson, Burton Egbert', '2006-10-30', 43, 'https://www.gutenberg.org/ebooks/19672', 'en', 128), +(46425, 'The Anabasis of Alexander\nor, The History of the Wars and Conquests of Alexander the Great', 'Arrian', '2014-09-27', 384, 'https://www.gutenberg.org/ebooks/46976', 'en', 14418), +(46426, 'The London-Bawd: With Her Character and Life\nDiscovering the Various and Subtle Intrigues of Lewd Women', 'Anonymous', '2005-05-23', 65, 'https://www.gutenberg.org/ebooks/15883', 'en', 16193), +(46427, 'Directions for Collecting and Preserving Insects', 'Riley, Charles V. (Charles Valentine)', '2012-03-26', 12, 'https://www.gutenberg.org/ebooks/39275', 'en', 11669), +(46428, 'A Wanderer in Holland', 'Lucas, E. V. (Edward Verrall)', '2005-02-07', 14, 'https://www.gutenberg.org/ebooks/14951', 'en', 16194), +(46429, 'The Life of Sir Rowland Hill and the History of Penny Postage, Vol. 1 (of 2)', 'Hill, George Birkbeck Norman', '2019-04-29', 11, 'https://www.gutenberg.org/ebooks/59390', 'en', 16195), +(46430, 'The Gases of the Atmosphere: The History of Their Discovery', 'Ramsay, William', '2016-08-11', 17, 'https://www.gutenberg.org/ebooks/52778', 'en', 10696), +(46431, 'The Characters of Theophrastus\nA Translation, with Introduction', 'Theophrastus', '2018-11-06', 38, 'https://www.gutenberg.org/ebooks/58242', 'en', 16196), +(46432, 'Jerry Junior', 'Webster, Jean', '2007-01-14', 23, 'https://www.gutenberg.org/ebooks/20358', 'en', 48), +(46433, 'Luna Benamor', 'Blasco Ibáñez, Vicente', '2007-06-19', 13, 'https://www.gutenberg.org/ebooks/21870', 'en', 61), +(46434, 'Notes on the Book of Genesis', 'Mackintosh, Charles Henry', '2011-11-03', 18, 'https://www.gutenberg.org/ebooks/37915', 'en', 11656), +(46435, 'A Master of Deception', 'Marsh, Richard', '2011-11-28', 47, 'https://www.gutenberg.org/ebooks/38161', 'en', 3933), +(46436, 'Architecture', 'D\'Anvers, N.', '2010-08-30', 29, 'https://www.gutenberg.org/ebooks/33589', 'en', 1352), +(46437, 'The Scout and Ranger\r\nBeing the Personal Adventures of Corporal Pike of the Fourth Ohio cavalry', 'Pike, James', '2013-02-03', 29, 'https://www.gutenberg.org/ebooks/41995', 'en', 16197), +(46438, 'A Plain and Literal Translation of the Arabian Nights Entertainments, Now Entituled the Book of the Thousand Nights and a Night, Volume 11 (of 17) Supplement 1.', NULL, '2019-03-30', 39, 'https://www.gutenberg.org/ebooks/59156', 'en', 3756), +(46439, 'A Letter Addressed to the Abbe Raynal, on the Affairs of North America, in Which the Mistakes in the Abbe\'s Account of the Revolution of America Are Corrected and Cleared Up', 'Paine, Thomas', '2005-03-07', 15, 'https://www.gutenberg.org/ebooks/15279', 'en', 1648), +(46440, 'Tessin tarina', 'Hardy, Thomas', '2014-04-27', 15, 'https://www.gutenberg.org/ebooks/45509', 'fi', 2190), +(46441, 'Rab Ráby: Regény', 'Jókai, Mór', '2018-04-05', 2, 'https://www.gutenberg.org/ebooks/56922', 'hu', 234), +(46442, 'Reminiscences of Anton Chekhov', 'Bunin, Ivan Alekseevich', '2011-08-19', 70, 'https://www.gutenberg.org/ebooks/37129', 'en', 15553), +(46443, 'Cardenio: Scènes de la Vie Mexicaine', 'Aimard, Gustave', '2018-10-12', 19, 'https://www.gutenberg.org/ebooks/58084', 'fr', 3865), +(46444, 'A Short History of H.M.S. Victory', 'Wharton, W. J. L. (William James Lloyd)', '2012-09-23', 6, 'https://www.gutenberg.org/ebooks/40847', 'en', 16198), +(46445, 'Pierre and His People: Tales of the Far North. Complete', 'Parker, Gilbert', '2004-11-16', 26, 'https://www.gutenberg.org/ebooks/6179', 'en', 1887), +(46446, 'Punch, or the London Charivari, Volume 100, January 3, 1891', 'Various', '2004-07-09', 12, 'https://www.gutenberg.org/ebooks/12860', 'en', 134), +(46447, 'Representative Plays by American Dramatists\n1765-1819', NULL, '2009-06-26', 6, 'https://www.gutenberg.org/ebooks/29221', 'en', 508), +(46448, '1812: Historische roman', 'Rellstab, Ludwig', '2015-02-09', 22, 'https://www.gutenberg.org/ebooks/48216', 'nl', 5734), +(46449, 'Hawthorne\n(English Men of Letters Series)', 'James, Henry', '2006-06-12', 41, 'https://www.gutenberg.org/ebooks/18566', 'en', 6216), +(46450, 'Dorothy Dale\'s School Rivals', 'Penrose, Margaret', '2017-05-02', 20, 'https://www.gutenberg.org/ebooks/54649', 'en', 12963), +(46451, 'Marguerite Verne; Or, Scenes from Canadian Life', 'Armour, Rebecca Agatha', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/6945', 'en', 348), +(46452, 'The Gray Goose\'s Story', 'Prentice, Amy', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7897', 'en', 625), +(46453, 'Silas Marner', 'Eliot, George', '2008-08-01', 17, 'https://www.gutenberg.org/ebooks/26269', 'en', 378), +(46454, 'Blackwood\'s Edinburgh Magazine - Volume 55, No. 344, June, 1844', 'Various', '2007-11-17', 11, 'https://www.gutenberg.org/ebooks/23529', 'en', 711), +(46455, 'Marianela', 'Pérez Galdós, Benito', '2015-04-28', 60, 'https://www.gutenberg.org/ebooks/48818', 'en', 480), +(46456, 'Expediter', 'Reynolds, Mack', '2010-01-09', 23, 'https://www.gutenberg.org/ebooks/30902', 'en', 26), +(46457, 'Elocution Simplified\r\nWith an Appendix on Lisping, Stammering, Stuttering, and Other Defects of Speech.', 'Fobes, Walter K.', '2016-02-02', 17, 'https://www.gutenberg.org/ebooks/51109', 'en', 3184), +(46458, 'Histoire de l\'Émigration pendant la Révolution Française\nTome 1er - De la Prise de la Bastille au 18 fructidor', 'Daudet, Ernest', '2009-05-31', 27, 'https://www.gutenberg.org/ebooks/29013', 'fr', 1536), +(46459, 'Obiter Dicta', 'Birrell, Augustine', '2005-01-01', 20, 'https://www.gutenberg.org/ebooks/7299', 'en', 3720), +(46460, 'John Jones\'s Dollar', 'Keeler, Harry Stephen', '2008-10-10', 66, 'https://www.gutenberg.org/ebooks/26867', 'en', 26), +(46461, 'The Home at Greylock', 'Prentiss, E. (Elizabeth)', '2015-01-01', 27, 'https://www.gutenberg.org/ebooks/47850', 'en', 942), +(46462, '\"Bethink Yourselves!\"', 'Tolstoy, Leo, graf', '2008-11-07', 37, 'https://www.gutenberg.org/ebooks/27189', 'en', 1122), +(46463, 'Proposed Roads to Freedom', 'Russell, Bertrand', '1996-10-01', 283, 'https://www.gutenberg.org/ebooks/690', 'en', 254), +(46464, 'Ohio Biological Survey, Bull. 10, Vol. 11, No. 6\nThe Ascomycetes of Ohio IV and V', 'Hilker, Leafy Jane Corrington', '2006-07-04', 16, 'https://www.gutenberg.org/ebooks/18754', 'en', 16199), +(46465, 'Physiology: The Science of the Body', 'Martin, Ernest G.', '2015-01-19', 30, 'https://www.gutenberg.org/ebooks/48024', 'en', 3536), +(46466, 'Post-Augustan Poetry From Seneca to Juvenal', 'Butler, Harold Edgeworth', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9303', 'en', 16200), +(46467, 'Diary of a Pedestrian in Cashmere and Thibet', 'Knight, W. H. (William Henry)', '2003-01-01', 22, 'https://www.gutenberg.org/ebooks/3639', 'en', 3800), +(46468, 'Human, All-Too-Human: A Book for Free Spirits, Part 1\r\nComplete Works, Volume Six', 'Nietzsche, Friedrich Wilhelm', '2016-05-02', 105, 'https://www.gutenberg.org/ebooks/51935', 'en', 2159), +(46469, 'Crome Yellow', 'Huxley, Aldous', '2006-11-07', 17, 'https://www.gutenberg.org/ebooks/19686', 'en', 637), +(46470, 'Richard Wagner and His Poetical Work, from \"Rienzi\" to \"Parsifal\"', 'Gautier, Judith', '2014-09-27', 12, 'https://www.gutenberg.org/ebooks/46982', 'en', 1464), +(46471, 'Dictionary of English Proverbs and Proverbial Phrases\nWith a Copious Index of Principal Words', NULL, '2012-03-27', 136, 'https://www.gutenberg.org/ebooks/39281', 'en', 3358), +(46472, 'Thoughts of Marcus Aurelius Antoninus', 'Marcus Aurelius, Emperor of Rome', '2005-05-22', 201, 'https://www.gutenberg.org/ebooks/15877', 'en', 279), +(46473, 'The Story of John Wesley, Told to Boys and Girls', 'Kirlew, Marianne', '2010-06-03', 12, 'https://www.gutenberg.org/ebooks/32669', 'en', 16201), +(46474, 'Elsie\'s Widowhood\nA Sequel to Elsie\'s Children', 'Finley, Martha', '2011-12-20', 41, 'https://www.gutenberg.org/ebooks/38353', 'en', 1397), +(46475, 'In a Cheshire Garden: Natural History Notes', 'Egerton-Warburton, Geoffrey', '2012-07-16', 17, 'https://www.gutenberg.org/ebooks/40249', 'en', 16202), +(46476, 'In the Riding-School; Chats with Esmeralda', 'Browne, Theo. Stephenson', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/10539', 'en', 2240), +(46477, 'The Catholic World, Vol. 26, October, 1877, to March, 1878', 'Various', '2019-04-26', 6, 'https://www.gutenberg.org/ebooks/59364', 'en', 96), +(46478, 'The Yellow Wallpaper', 'Gilman, Charlotte Perkins', '1999-11-01', 4860, 'https://www.gutenberg.org/ebooks/1952', 'en', 13810), +(46479, 'Punch, Or The London Charivari, Volume 102, Jan. 2, 1892', 'Various', '2004-11-28', 3, 'https://www.gutenberg.org/ebooks/14199', 'en', 134), +(46480, 'The Universal Reciter\n81 Choice Pieces of Rare Poetical Gems', 'Various', '2009-07-21', 9, 'https://www.gutenberg.org/ebooks/29477', 'en', 1725), +(46481, 'Live Toys; Or, Anecdotes of Our Four-Legged and Other Pets', 'Davenport, Emma', '2013-06-14', 11, 'https://www.gutenberg.org/ebooks/42946', 'en', 14094), +(46482, 'L\'Illustration, No. 0010, 6 Mai 1843', 'Various', '2011-01-21', 8, 'https://www.gutenberg.org/ebooks/35028', 'fr', 150), +(46483, 'Folk-Lore and Legends: English', NULL, '2014-11-20', 80, 'https://www.gutenberg.org/ebooks/47408', 'en', 5599), +(46484, 'The Campaign of Sedan: The Downfall of the Second Empire, August-September 1870', 'Hooper, George', '2017-06-01', 15, 'https://www.gutenberg.org/ebooks/54823', 'en', 16203), +(46485, 'The History of Modern Painting, Volume 2 (of 4)\nRevised edition continued by the author to the end of the XIX century', 'Muther, Richard', '2013-10-05', 25, 'https://www.gutenberg.org/ebooks/43894', 'en', 2227), +(46486, 'Successful Recitations', NULL, '2005-12-22', 34, 'https://www.gutenberg.org/ebooks/17378', 'en', 1725), +(46487, 'The Little Regiment, and Other Episodes of the American Civil War', 'Crane, Stephen', '2010-03-03', 12, 'https://www.gutenberg.org/ebooks/31488', 'en', 8347), +(46488, 'Die Hallig: Die Schiffbrüchigen auf dem Eiland in der Nordsee', 'Biernatzki, Johann Christoph', '2015-08-04', 24, 'https://www.gutenberg.org/ebooks/49592', 'de', 16204), +(46489, 'L\'Illustration, No. 3258, 5 Août 1905', 'Various', '2011-04-10', 14, 'https://www.gutenberg.org/ebooks/35814', 'fr', 150), +(46490, 'Opúsculos por Alexandre Herculano - Tomo 09', 'Herculano, Alexandre', '2006-05-06', 28, 'https://www.gutenberg.org/ebooks/18330', 'pt', 410), +(46491, 'The Plays of Philip Massinger, Vol. I', 'Massinger, Philip', '2015-03-08', 24, 'https://www.gutenberg.org/ebooks/48440', 'en', 126), +(46492, 'The Best of the World\'s Classics, Restricted to Prose, Vol. VI (of X)—Great Britain and Ireland IV', NULL, '2007-12-22', 18, 'https://www.gutenberg.org/ebooks/23971', 'en', 19), +(46493, 'Alice, or the Mysteries — Book 05', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 69, 'https://www.gutenberg.org/ebooks/9767', 'en', 137), +(46494, 'Mémoires du maréchal Berthier ... Campagne d\'Égypte, première partie', 'Berthier, Louis-Alexandre', '2012-02-02', 14, 'https://www.gutenberg.org/ebooks/38737', 'fr', 840), +(46495, 'Essays on Russian Novelists', 'Phelps, William Lyon', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/5996', 'en', 16205), +(46496, '\'My Beloved Poilus\'', 'Warner, Agnes', '2008-01-20', 13, 'https://www.gutenberg.org/ebooks/24368', 'en', 12215), +(46497, 'Little Stories of Married Life', 'Cutting, Mary Stewart', '2018-03-15', 22, 'https://www.gutenberg.org/ebooks/56748', 'en', 770), +(46498, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1585e-86a', 'Motley, John Lothrop', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/4844', 'en', 3372), +(46499, 'Lawn Tennis for Ladies', 'Lambert Chambers, Mrs.', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/10961', 'en', 4022), +(46500, 'The Picture of Dorian Gray', 'Wilde, Oscar', '2003-05-01', 209, 'https://www.gutenberg.org/ebooks/4078', 'en', 16206), +(46501, 'American Masters of Sculpture\r\nBeing Brief Appreciations of Some American Sculptors and of Some Phases of Sculpture in America', 'Caffin, Charles H. (Charles Henry)', '2019-06-07', 33, 'https://www.gutenberg.org/ebooks/59700', 'en', 13781), +(46502, 'The Drama of Love and Death: A Study of Human Evolution and Transfiguration', 'Carpenter, Edward', '2014-02-12', 12, 'https://www.gutenberg.org/ebooks/44883', 'en', 15589), +(46503, 'Statesman', 'Plato', '1999-05-01', 70, 'https://www.gutenberg.org/ebooks/1738', 'en', 4117), +(46504, 'Der gläserne Garten: Zwei Novellen', 'Goll, Claire', '2012-01-06', 8, 'https://www.gutenberg.org/ebooks/38505', 'de', 61), +(46505, 'James Oliver Curwood, Disciple of the Wilds', 'Swiggett, Hobart Donald', '2016-12-30', 10, 'https://www.gutenberg.org/ebooks/53834', 'en', 16207), +(46506, 'Famous Sea Fights, from Salamis to Tsu-Shima', 'Atteridge, A. Hilliard (Andrew Hilliard)', '2008-04-18', 44, 'https://www.gutenberg.org/ebooks/25088', 'en', 16208), +(46507, 'Monk', 'Corbett, Julian Stafford', '2014-06-12', 70, 'https://www.gutenberg.org/ebooks/45951', 'en', 16209), +(46508, 'A Traveller in War-Time', 'Churchill, Winston', '2004-10-19', 62, 'https://www.gutenberg.org/ebooks/5398', 'en', 449), +(46509, 'Survival Tactics', 'Sevcik, Al', '2008-03-30', 63, 'https://www.gutenberg.org/ebooks/24966', 'en', 2797), +(46510, 'Kolme miestä veneessä', 'Jerome, Jerome K. (Jerome Klapka)', '2016-09-08', 21, 'https://www.gutenberg.org/ebooks/53008', 'fi', 72), +(46511, 'Goody Two-Shoes', 'Unknown', '2007-05-13', 40, 'https://www.gutenberg.org/ebooks/21428', 'en', 195), +(46512, 'The Glory That Was Greece: a survey of Hellenic culture and civilisation', 'Stobart, J. C. (John Clarke)', '2019-05-18', 36, 'https://www.gutenberg.org/ebooks/59532', 'en', 15982), +(46513, 'Letters from a Father to His Son Entering College', 'Thwing, Charles Franklin', '2010-06-13', 19, 'https://www.gutenberg.org/ebooks/32803', 'en', 16210), +(46514, 'Memoirs of Madame la Marquise de Montespan — Volume 7', 'Montespan, Madame de', '2004-12-02', 17, 'https://www.gutenberg.org/ebooks/3853', 'en', 1870), +(46515, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 281, November 3, 1827', 'Various', '2005-06-21', 91, 'https://www.gutenberg.org/ebooks/16098', 'en', 133), +(46516, 'The Gate to Cæsar', 'Caesar, Julius', '2009-08-09', 23, 'https://www.gutenberg.org/ebooks/29645', 'la', 3450), +(46517, 'The Odyssey', 'Homer', '2009-05-01', 68, 'https://www.gutenberg.org/ebooks/28797', 'en', 2619), +(46518, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Complete', 'Casanova, Giacomo', '2004-11-11', 659, 'https://www.gutenberg.org/ebooks/2981', 'en', 4164), +(46519, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 335, October 11, 1828', 'Various', '2004-05-01', 9, 'https://www.gutenberg.org/ebooks/12438', 'en', 133), +(46520, 'Dame Care', 'Sudermann, Hermann', '2005-07-01', 11, 'https://www.gutenberg.org/ebooks/8487', 'en', 16046), +(46521, 'The Spirit of the Links', 'Leach, Henry', '2013-03-17', 17, 'https://www.gutenberg.org/ebooks/42348', 'en', 16211), +(46522, 'L\'ora topica di Carlo Dossi', 'Lucini, Gian Pietro', '2015-04-09', 13, 'https://www.gutenberg.org/ebooks/48672', 'it', 16212), +(46523, 'The Memoirs of Sherlock Holmes', 'Doyle, Arthur Conan', '2005-12-01', 51, 'https://www.gutenberg.org/ebooks/9555', 'en', 834), +(46524, 'Autobiography of Andrew Carnegie', 'Carnegie, Andrew', '2006-03-13', 205, 'https://www.gutenberg.org/ebooks/17976', 'en', 16213), +(46525, 'Sowing and Reaping', 'Moody, Dwight Lyman', '2009-12-26', 22, 'https://www.gutenberg.org/ebooks/30768', 'en', 1130), +(46526, 'The Son of His Father; vol. 3/3', 'Oliphant, Mrs. (Margaret)', '2019-07-30', 328, 'https://www.gutenberg.org/ebooks/60018', 'en', 2079), +(46527, 'The Philippine Islands, 1493-1898 — Volume 24 of 55\r\n1630-34\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, As Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2006-04-02', 57, 'https://www.gutenberg.org/ebooks/18102', 'en', 8515), +(46528, 'Four Introductory Lectures on Political Economy', 'Senior, Nassau William', '2014-11-02', 15, 'https://www.gutenberg.org/ebooks/47266', 'en', 1745), +(46529, 'Englefield Grange; or, Mary Armstrong\'s Troubles', 'Paull, H. B., Mrs.', '2010-12-30', 11, 'https://www.gutenberg.org/ebooks/34794', 'en', 61), +(46530, 'Peck\'s Bad Boy with the Cowboys', 'Peck, George W. (George Wilbur)', '2004-07-01', 14, 'https://www.gutenberg.org/ebooks/6141', 'en', 11147), +(46531, 'The Man Who was Thursday, A Nightmare', 'Chesterton, G. K. (Gilbert Keith)', '2007-12-01', 13, 'https://www.gutenberg.org/ebooks/23723', 'en', 4187), +(46532, 'Woman\'s Institute Library of Cookery. Volume 1: Essentials of Cookery; Cereals; Bread; Hot Breads', 'Woman\'s Institute of Domestic Arts and Sciences', '2006-02-01', 71, 'https://www.gutenberg.org/ebooks/9935', 'en', 103), +(46533, 'L\'Argent', 'Zola, Émile', '2006-01-15', 63, 'https://www.gutenberg.org/ebooks/17516', 'fr', 6781), +(46534, 'Seefahrt ist not!', 'Fock, Gorch', '2016-02-26', 12, 'https://www.gutenberg.org/ebooks/51303', 'de', 16214), +(46535, 'The First Violin\nA Novel', 'Fothergill, Jessie', '2009-06-25', 94, 'https://www.gutenberg.org/ebooks/29219', 'en', 61), +(46536, 'The Lilac Girl', 'Barbour, Ralph Henry', '2004-07-08', 36, 'https://www.gutenberg.org/ebooks/12858', 'en', 61), +(46537, 'Hand-Book of Practical Cookery, for Ladies and Professional Cooks\r\nContaining the Whole Science and Art of Preparing Human Food', 'Blot, Pierre', '2011-03-21', 57, 'https://www.gutenberg.org/ebooks/35646', 'en', 103), +(46538, 'String Quartet No. 08 in E minor Opus 59', 'Beethoven, Ludwig van', '2004-12-01', 7, 'https://www.gutenberg.org/ebooks/7093', 'en', 3385), +(46539, 'Master of None', 'Goble, Neil', '2008-12-02', 58, 'https://www.gutenberg.org/ebooks/27383', 'en', 26), +(46540, 'Lebenswende', 'Molo, Walter von', '2017-05-06', 11, 'https://www.gutenberg.org/ebooks/54671', 'de', 61), +(46541, 'The Project Gutenberg FAQ 2002', 'Tinsley, Jim', '2005-10-01', 15, 'https://www.gutenberg.org/ebooks/9109', 'en', 340), +(46542, 'Ultima Thule', 'Reynolds, Mack', '2009-10-25', 136, 'https://www.gutenberg.org/ebooks/30334', 'en', 26), +(46543, 'Епически песни', 'Slaveikov, Pencho P.', '2002-09-01', 17, 'https://www.gutenberg.org/ebooks/3433', 'bg', 16215), +(46544, 'The Luminous Face', 'Wells, Carolyn', '2013-05-16', 31, 'https://www.gutenberg.org/ebooks/42714', 'en', 128), +(46545, 'Notes of an Overland Journey Through France and Egypt to Bombay', 'Roberts, Emma', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12064', 'en', 16216), +(46546, 'Magna Carta', 'Unknown', '2008-08-01', 6, 'https://www.gutenberg.org/ebooks/26251', 'en', 1758), +(46547, 'The son of Don Juan\r\nan original drama in 3 acts inspired by the reading of Ibsen\'s work entitled \'Gengangere\'', 'Echegaray, José', '2017-12-04', 4, 'https://www.gutenberg.org/ebooks/56126', 'en', 2094), +(46548, 'Jenifer\'s Prayer', 'Crane, Oliver', '2012-10-26', 3, 'https://www.gutenberg.org/ebooks/41191', 'en', 61), +(46549, 'Noli me tangere: Filippijnsche roman', 'Rizal, José', '2007-06-18', 19, 'https://www.gutenberg.org/ebooks/21848', 'nl', 98), +(46550, 'Greek Athletic Sports and Festivals', 'Gardiner, E. Norman (Edward Norman)', '2019-07-20', 199, 'https://www.gutenberg.org/ebooks/59952', 'en', 16217), +(46551, 'The Justice and Necessity of Taxing the American Colonies, Demonstrated\nTogether with a Vindication of the Authority of Parliament', 'Unknown', '2010-05-20', 10, 'https://www.gutenberg.org/ebooks/32463', 'en', 16218), +(46552, 'Tom Swift and His Electric Locomotive; Or, Two Miles a Minute on the Rails', 'Appleton, Victor', '1998-06-01', 45, 'https://www.gutenberg.org/ebooks/1364', 'en', 3242), +(46553, 'Graham\'s Magazine, Vol. XXXI, No. 3, September 1847', 'Various', '2019-02-13', 4, 'https://www.gutenberg.org/ebooks/58880', 'en', 162), +(46554, 'L\'Illustration, No. 0021, 22 Juillet 1843', 'Various', '2011-11-28', 5, 'https://www.gutenberg.org/ebooks/38159', 'fr', 150), +(46555, 'The Problem of Foreign Policy\r\nA Consideration of Present Dangers and the Best Methods for Meeting Them', 'Murray, Gilbert', '2012-06-19', 6, 'https://www.gutenberg.org/ebooks/40043', 'en', 9352), +(46556, 'Studies in Civics', 'McCleary, J. T. (James Thompson)', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/10733', 'en', 13438), +(46557, 'Essays on early ornithology and kindred subjects', 'McClymont, James Roxburgh', '2008-02-04', 24, 'https://www.gutenberg.org/ebooks/24506', 'en', 318), +(46558, 'Narrative of the Life and Travels of Serjeant B——', 'Butler, Robert', '2014-04-29', 13, 'https://www.gutenberg.org/ebooks/45531', 'en', 16219), +(46559, 'Lessons in Life, for All Who Will Read Them', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 17, 'https://www.gutenberg.org/ebooks/4616', 'en', 2815), +(46560, 'Afloat on the Flood', 'Leslie, Lawrence J.', '2007-04-14', 12, 'https://www.gutenberg.org/ebooks/21074', 'en', 3774), +(46561, 'All About Johnnie Jones', 'Verhoeff, Carolyn', '2005-03-03', 13, 'https://www.gutenberg.org/ebooks/15241', 'en', 388), +(46562, 'Clash of Arms: A Romance', 'Bloundelle-Burton, John', '2016-07-17', 4, 'https://www.gutenberg.org/ebooks/52586', 'en', 2224), +(46563, 'Mater Christi: Meditations on Our Lady', 'St. Paul, Mother', '2012-02-23', 10, 'https://www.gutenberg.org/ebooks/38965', 'en', 4554), +(46564, 'Kaarle XII:n historia', 'Voltaire', '2016-11-05', 11, 'https://www.gutenberg.org/ebooks/53454', 'fi', 10431), +(46565, 'The Inner Shrine', 'King, Basil', '2004-12-20', 14, 'https://www.gutenberg.org/ebooks/14393', 'en', 4013), +(46566, 'The Zankiwank and The Bletherwitch: An Original Fantastic Fairy Extravaganza', 'Fitz-Gerald, S. J. Adair (Shafto Justin Adair)', '2011-08-17', 26, 'https://www.gutenberg.org/ebooks/37111', 'en', 625), +(46567, 'Adolescents Only', 'Cox, Irving E.', '2010-06-02', 68, 'https://www.gutenberg.org/ebooks/32651', 'en', 26), +(46568, 'Zigzag Journeys in the Camel Country: Arabia in Picture and Story', 'Zwemer, Samuel Marinus', '2018-01-05', 9, 'https://www.gutenberg.org/ebooks/56314', 'en', 5489), +(46569, 'The Whale Catchers', 'McGuinn, Roger', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10501', 'en', 16220), +(46570, 'Tommy Tatters\nUncle Toby\'s Series', 'Unknown', '2008-03-02', 21, 'https://www.gutenberg.org/ebooks/24734', 'en', 16221), +(46571, 'Babbitt', 'Lewis, Sinclair', '2002-02-11', 287, 'https://www.gutenberg.org/ebooks/1156', 'en', 16222), +(46572, 'I misteri del castello d\'Udolfo, vol. 3', 'Radcliffe, Ann Ward', '2010-09-20', 25, 'https://www.gutenberg.org/ebooks/33783', 'it', 461), +(46573, 'London Before the Conquest', 'Lethaby, W. R. (William Richard)', '2012-07-18', 16, 'https://www.gutenberg.org/ebooks/40271', 'en', 1487), +(46574, 'Winter Adventures of Three Boys in the Great Lone Land', 'Young, Egerton Ryerson', '2007-04-27', 18, 'https://www.gutenberg.org/ebooks/21246', 'en', 246), +(46575, 'The Colossus: A Novel', 'Read, Opie Percival', '2005-02-15', 10, 'https://www.gutenberg.org/ebooks/15073', 'en', 23), +(46576, 'Water Supply: the Present Practice of Sinking and Boring Wells\nWith Geological Considerations and Examples of Wells Executed', 'Spon, Ernest', '2014-05-20', 10, 'https://www.gutenberg.org/ebooks/45703', 'en', 16223), +(46577, 'Rhoda Fleming — Volume 4', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4424', 'en', 5500), +(46578, 'Poems on Golf', NULL, '2011-09-06', 8, 'https://www.gutenberg.org/ebooks/37323', 'en', 13677), +(46579, 'George in Camp; or, Life on the Plains', 'Castlemon, Harry', '2016-12-04', 3, 'https://www.gutenberg.org/ebooks/53666', 'en', 2046), +(46580, 'Correspondence Relating to Executions in Turkey for Apostacy from Islamism', 'Various', '2007-01-18', 115, 'https://www.gutenberg.org/ebooks/20394', 'en', 16224), +(46581, 'La trilogia di Dorina: Commedia in 3 atti', 'Rovetta, Gerolamo', '2015-04-28', 7, 'https://www.gutenberg.org/ebooks/48820', 'it', 407), +(46582, 'The Christmas Peace\n1908', 'Page, Thomas Nelson', '2007-11-16', 12, 'https://www.gutenberg.org/ebooks/23511', 'en', 1439), +(46583, 'The Bay State Monthly, Volume 3, No. 4', 'Various', '2006-02-09', 5, 'https://www.gutenberg.org/ebooks/17724', 'en', 1593), +(46584, 'Der Soldatenhandel deutscher Fürsten nach Amerika', 'Kapp, Friedrich', '2014-10-05', 14, 'https://www.gutenberg.org/ebooks/47054', 'de', 9195), +(46585, 'The Luck of Roaring Camp and Other Tales\r\nWith Condensed Novels, Spanish and American Legends, and Earlier Papers', 'Harte, Bret', '2004-08-01', 110, 'https://www.gutenberg.org/ebooks/6373', 'en', 315), +(46586, 'The Shepherd\'s Calendar. Volume I (of II)', 'Hogg, James', '2011-03-03', 11, 'https://www.gutenberg.org/ebooks/35474', 'en', 2625), +(46587, 'Germany in War Time: What an American Girl Saw and Heard', 'McAuley, Mary Ethel', '2014-07-03', 12, 'https://www.gutenberg.org/ebooks/46186', 'en', 932), +(46588, 'A voyage to Spitzbergen\r\ncontaining an account of that country, of the zoology of the North; of the Shetland Islands; and of the whale fishery', 'Laing, John (Surgeon)', '2016-02-05', 16, 'https://www.gutenberg.org/ebooks/51131', 'en', 3138), +(46589, 'The Vast Abyss\nThe Story of Tom Blount, his Uncles and his Cousin Sam', 'Fenn, George Manville', '2009-09-27', 19, 'https://www.gutenberg.org/ebooks/30106', 'en', 61), +(46590, 'German Society at the Close of the Middle Ages', 'Bax, Ernest Belfort', '2015-01-04', 15, 'https://www.gutenberg.org/ebooks/47868', 'en', 6549), +(46591, 'The Covered Wagon', 'Hough, Emerson', '2004-09-06', 53, 'https://www.gutenberg.org/ebooks/13384', 'en', 9136), +(46592, 'Hans excellens av Madagaskar', 'Eje, Anders', '2017-03-27', 8, 'https://www.gutenberg.org/ebooks/54443', 'sv', 420), +(46593, 'Old Fashioned Flowers, and other out-of-door studies', 'Maeterlinck, Maurice', '2017-09-21', 30, 'https://www.gutenberg.org/ebooks/55591', 'en', 3879), +(46594, 'Mistress Penwick', 'Payne, Dutton', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12256', 'en', 8189), +(46595, 'A Coin of Edward VII: A Detective Story', 'Hume, Fergus', '2008-07-15', 39, 'https://www.gutenberg.org/ebooks/26063', 'en', 61), +(46596, 'The Captives', 'Walpole, Hugh', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3601', 'en', 1079), +(46597, 'The Harbor of Doubt', 'Sullivan, Francis William', '2009-08-27', 26, 'https://www.gutenberg.org/ebooks/29817', 'en', 4251), +(46598, 'Abraham Lincoln', 'Curtis, William Eleroy', '2013-04-14', 27, 'https://www.gutenberg.org/ebooks/42526', 'en', 1716), +(46599, 'Across the Zodiac\r\nThe Story of a Wrecked Record', 'Greg, Percy', '2003-11-01', 65, 'https://www.gutenberg.org/ebooks/10165', 'en', 26); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(46600, 'Kerfol\n1916', 'Wharton, Edith', '2008-01-17', 47, 'https://www.gutenberg.org/ebooks/24350', 'en', 179), +(46601, 'The Tragedy of King Lear', 'Shakespeare, William', '1998-11-01', 131, 'https://www.gutenberg.org/ebooks/1532', 'en', 8679), +(46602, 'A History of the Reformation (Vol. 1 of 2)', 'Lindsay, Thomas M. (Thomas Martin)', '2012-08-29', 40, 'https://www.gutenberg.org/ebooks/40615', 'en', 16225), +(46603, 'Aguas fuertes', 'Palacio Valdés, Armando', '2010-05-03', 21, 'https://www.gutenberg.org/ebooks/32235', 'es', 1696), +(46604, 'The Jewish State', 'Herzl, Theodor', '2008-05-02', 291, 'https://www.gutenberg.org/ebooks/25282', 'en', 9946), +(46605, 'De Sobremesa; crónicas, Tercera Parte (de 5)', 'Benavente, Jacinto', '2018-03-18', 11, 'https://www.gutenberg.org/ebooks/56770', 'es', 1384), +(46606, 'The Visits of Elizabeth', 'Glyn, Elinor', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/10959', 'en', 258), +(46607, 'Guerra de razas (Negros contra Blancos en Cuba)', 'Capmany, José M.', '2011-10-13', 33, 'https://www.gutenberg.org/ebooks/37747', 'es', 16226), +(46608, 'On a Dynamical Top, for exhibiting the phenomena of the motion of a system of invariable form about a fixed point, with some suggestions as to the Earth\'s motion', 'Maxwell, James Clerk', '2004-02-01', 44, 'https://www.gutenberg.org/ebooks/5192', 'en', 2018), +(46609, 'A Mechanical Account of Poisons in Several Essays', 'Mead, Richard', '2016-10-03', 8, 'https://www.gutenberg.org/ebooks/53202', 'en', 16227), +(46610, 'Architects of Fate; Or, Steps to Success and Power', 'Marden, Orison Swett', '2007-05-27', 38, 'https://www.gutenberg.org/ebooks/21622', 'en', 4065), +(46611, 'Windmills and Wooden Shoes', 'Jaekel, Blair', '2019-06-12', 40, 'https://www.gutenberg.org/ebooks/59738', 'en', 2236), +(46612, 'Scientific American Supplement, No. 388, June 9, 1883', 'Various', '2005-03-20', 2, 'https://www.gutenberg.org/ebooks/15417', 'en', 210), +(46613, 'Our English Towns and Villages', 'Hall, H. R. Wilton', '2014-04-12', 14, 'https://www.gutenberg.org/ebooks/45367', 'en', 5611), +(46614, 'Right Living as a Fine Art\r\nA Study of Channing\'s Symphony as an Outline of the Ideal Life and Character', 'Hillis, Newell Dwight', '2011-07-10', 30, 'https://www.gutenberg.org/ebooks/36695', 'en', 1794), +(46615, 'The Pedler of Dust Sticks', 'Follen, Eliza Lee Cabot', '2003-05-01', 17, 'https://www.gutenberg.org/ebooks/4040', 'en', 195), +(46616, 'Childéric, Roi des Francs, (tome second)', 'Beaufort d’Hautpoul, Anne Marie, comtesse de', '2011-01-20', 15, 'https://www.gutenberg.org/ebooks/35010', 'fr', 6457), +(46617, 'The Works of the Right Honourable Edmund Burke, Vol. 07 (of 12)', 'Burke, Edmund', '2005-07-14', 35, 'https://www.gutenberg.org/ebooks/16292', 'en', 4505), +(46618, 'On the Philosophy of Discovery, Chapters Historical and Critical', 'Whewell, William', '2016-03-25', 23, 'https://www.gutenberg.org/ebooks/51555', 'en', 4775), +(46619, 'My Terminal Moraine\n1892', 'Stockton, Frank Richard', '2007-10-24', 12, 'https://www.gutenberg.org/ebooks/23175', 'en', 16228), +(46620, 'Guidebook of Palo Duro Canyon', 'West Texas State University. Geological Society', '2015-11-19', 17, 'https://www.gutenberg.org/ebooks/50487', 'en', 16229), +(46621, 'Marianela', 'Pérez Galdós, Benito', '2005-12-17', 70, 'https://www.gutenberg.org/ebooks/17340', 'es', 1696), +(46622, 'Fanny Campbell, The Female Pirate Captain: A Tale of The Revolution', 'Ballou, Maturin M. (Maturin Murray)', '2014-11-22', 56, 'https://www.gutenberg.org/ebooks/47430', 'en', 16230), +(46623, 'Through Space to Mars; Or, the Longest Journey on Record', 'Rockwood, Roy', '2004-10-01', 36, 'https://www.gutenberg.org/ebooks/6717', 'en', 26), +(46624, 'Yesterdays with Authors', 'Fields, James Thomas', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/12632', 'en', 16231), +(46625, 'An Arrow in a Sunbeam, and Other Tales', 'Jewett, Sarah Orne', '2008-08-23', 22, 'https://www.gutenberg.org/ebooks/26407', 'en', 538), +(46626, 'The Re-Creation of Brian Kent', 'Wright, Harold Bell', '2006-06-03', 16, 'https://www.gutenberg.org/ebooks/3265', 'en', 6280), +(46627, 'A Young Inventor\'s Pluck; or, The Mystery of the Willington Legacy', 'Stratemeyer, Edward', '2013-02-20', 104, 'https://www.gutenberg.org/ebooks/42142', 'en', 31), +(46628, '茶經', 'Lu, Yu', '2007-12-21', 35, 'https://www.gutenberg.org/ebooks/23949', 'zh', 9144), +(46629, 'How to Stuff Birds and Animals\r\nA valuable book giving instruction in collecting, preparing, mounting, and preserving birds, animals, and insects', 'Warford, Aaron A.', '2013-07-03', 23, 'https://www.gutenberg.org/ebooks/43090', 'en', 2132), +(46630, 'Linda Carlton\'s Ocean Flight', 'Lavell, Edith', '2015-03-13', 6, 'https://www.gutenberg.org/ebooks/48478', 'en', 4484), +(46631, 'Unfinished Portraits: Stories of Musicians and Artists', 'Lee, Jennette', '2009-11-29', 29, 'https://www.gutenberg.org/ebooks/30562', 'en', 10957), +(46632, 'Het hedendaagsche Londen\r\nDe Aarde en haar Volken, 1907', 'Sims, George R.', '2006-05-04', 16, 'https://www.gutenberg.org/ebooks/18308', 'nl', 9012), +(46633, 'Nil Darpan; or, The Indigo Planting Mirror, A Drama.\r\nTranslated from the Bengali by a Native.', 'Mitra, Dinabandhu', '2017-01-19', 54, 'https://www.gutenberg.org/ebooks/54027', 'en', 16232), +(46634, 'Death\'s Wisher', 'Wannamaker, Jim', '2016-04-15', 22, 'https://www.gutenberg.org/ebooks/51767', 'en', 784), +(46635, 'On Prayer and The Contemplative Life', 'Thomas, Aquinas, Saint', '2007-08-10', 147, 'https://www.gutenberg.org/ebooks/22295', 'en', 5230), +(46636, 'White Slavery in the Barbary States', 'Sumner, Charles', '2011-02-09', 29, 'https://www.gutenberg.org/ebooks/35222', 'en', 16233), +(46637, 'Birds and All Nature, Vol. 3, No. 3, March 1898\r\nIllustrated by Color Photography', 'Various', '2014-12-08', 8, 'https://www.gutenberg.org/ebooks/47602', 'en', 490), +(46638, 'History of English Humour, Vol. 2', 'L\'Estrange, A. G. K. (Alfred Guy Kingan)', '2006-07-25', 21, 'https://www.gutenberg.org/ebooks/18906', 'en', 16234), +(46639, 'Die Piccolomini', 'Schiller, Friedrich', '2004-09-01', 41, 'https://www.gutenberg.org/ebooks/6525', 'de', 2341), +(46640, 'Mental Efficiency, and Other Hints to Men and Women', 'Bennett, Arnold', '2007-11-06', 176, 'https://www.gutenberg.org/ebooks/23347', 'en', 740), +(46641, 'The Ethics of George Eliot\'s Works', 'Brown, John Crombie', '2005-11-28', 12, 'https://www.gutenberg.org/ebooks/17172', 'en', 13084), +(46642, 'The Common Edition: New Testament', NULL, '2002-02-01', 12, 'https://www.gutenberg.org/ebooks/3057', 'en', 2781), +(46643, 'Life of John Keats', 'Rossetti, William Michael', '2010-03-18', 92, 'https://www.gutenberg.org/ebooks/31682', 'en', 1977), +(46644, 'Round the Corner in Gay Street', 'Richmond, Grace S. (Grace Smith)', '2013-03-18', 79, 'https://www.gutenberg.org/ebooks/42370', 'en', 389), +(46645, 'The Boy Scouts as County Fair Guides', 'Shaler, Robert', '2015-08-28', 9, 'https://www.gutenberg.org/ebooks/49798', 'en', 1002), +(46646, 'Bismarck and the Foundation of the German Empire', 'Headlam, James Wycliffe', '2004-05-01', 83, 'https://www.gutenberg.org/ebooks/12400', 'en', 1921), +(46647, 'The Rose-Garden Husband', 'Widdemer, Margaret', '2008-09-16', 47, 'https://www.gutenberg.org/ebooks/26635', 'en', 675), +(46648, 'Pretty Quadroon', 'Fontenay, Charles L.', '2019-07-30', 1019, 'https://www.gutenberg.org/ebooks/60020', 'en', 16235), +(46649, 'The Life of Sophia Jex-Blake', 'Travers, Graham', '2017-02-21', 16, 'https://www.gutenberg.org/ebooks/54215', 'en', 16236), +(46650, 'Maruja', 'Harte, Bret', '2000-05-01', 13, 'https://www.gutenberg.org/ebooks/2185', 'en', 315), +(46651, 'The Sex Worship and Symbolism of Primitive Races: An Interpretation', 'Brown, Sanger', '2009-12-24', 25, 'https://www.gutenberg.org/ebooks/30750', 'en', 7851), +(46652, 'The Life of Charlotte Brontë — Volume 2', 'Gaskell, Elizabeth Cleghorn', '1999-04-01', 77, 'https://www.gutenberg.org/ebooks/1700', 'en', 8668), +(46653, 'Report of the Hoosac Tunnel and Troy and Greenfield Railroad, by the Joint Standing Committee of 1866.', 'Wentworth, Tappan', '2012-08-06', 9, 'https://www.gutenberg.org/ebooks/40427', 'en', 16237), +(46654, 'Life of Johnson, Volume 4\r\n1780-1784', 'Boswell, James', '2003-12-01', 41, 'https://www.gutenberg.org/ebooks/10357', 'en', 5466), +(46655, 'Index of the Project Gutenerg Works of H. G. Wells\r\nHyperlinks to all Chapters of all Individual Ebooks', 'Wells, H. G. (Herbert George)', '2018-07-12', 25, 'https://www.gutenberg.org/ebooks/57490', 'en', 198), +(46656, '二刻拍案惊奇', 'Ling, Mengchu', '2008-01-04', 52, 'https://www.gutenberg.org/ebooks/24162', 'zh', 5698), +(46657, 'Ariadne', 'Gréville, Henry', '2014-06-14', 16, 'https://www.gutenberg.org/ebooks/45969', 'fr', 298), +(46658, 'Philipp Reis: Inventor of the Telephone\nA Biographical Sketch', 'Thompson, Silvanus P. (Silvanus Phillips)', '2018-02-11', 13, 'https://www.gutenberg.org/ebooks/56542', 'en', 3741), +(46659, 'Een Heldin', 'Kuiper, A. C.', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11285', 'nl', 61), +(46660, 'The Spiritualists and the Detectives', 'Pinkerton, Allan', '2010-04-16', 6, 'https://www.gutenberg.org/ebooks/32007', 'en', 14224), +(46661, 'Lilliput Lyrics', 'Rands, W. B. (William Brighty )', '2016-09-11', 8, 'https://www.gutenberg.org/ebooks/53030', 'en', 859), +(46662, 'Punch, or the London Charivari, Vol. 105, September 16th, 1893', 'Various', '2011-09-30', 4, 'https://www.gutenberg.org/ebooks/37575', 'en', 134), +(46663, 'Het Eiland Texel en Zijne Bewoners', 'Allan, Francis', '2013-11-01', 19, 'https://www.gutenberg.org/ebooks/44087', 'nl', 16238), +(46664, 'The Overall Boys in Switzerland', 'Grover, Eulalie Osgood', '2014-03-17', 26, 'https://www.gutenberg.org/ebooks/45155', 'en', 3427), +(46665, 'The Christian Year', 'Keble, John', '2003-07-01', 135, 'https://www.gutenberg.org/ebooks/4272', 'en', 16239), +(46666, 'The Isle Of Pines (1668)\nand An Essay in Bibliography by Worthington Chauncey Ford', 'Neville, Henry', '2007-05-09', 69, 'https://www.gutenberg.org/ebooks/21410', 'en', 467), +(46667, 'The Lookout Man', 'Bower, B. M.', '2005-04-15', 45, 'https://www.gutenberg.org/ebooks/15625', 'en', 315), +(46668, 'Dictionnaire d\'argot fin-de-siècle', 'Virmaître, Charles', '2018-08-07', 12, 'https://www.gutenberg.org/ebooks/57656', 'fr', 2899), +(46669, 'Fourth of July at Punkin Center', 'Stewart, Cal', '2003-11-01', 1, 'https://www.gutenberg.org/ebooks/10191', 'en', 190), +(46670, 'British Committees, Commissions, and Councils of Trade and Plantations, 1622-1675', 'Andrews, Charles McLean', '2010-08-01', 15, 'https://www.gutenberg.org/ebooks/33313', 'en', 10338), +(46671, 'Records of the Spanish Inquisition, Translated from the Original Manuscripts', 'White, Andrew Dickson', '2012-12-29', 57, 'https://www.gutenberg.org/ebooks/41733', 'en', 16240), +(46672, 'Irma in Italy: A Travel Story', 'Reed, Helen Leah', '2012-05-05', 12, 'https://www.gutenberg.org/ebooks/39629', 'en', 16241), +(46673, 'Cours familier de Littérature - Volume 03', 'Lamartine, Alphonse de', '2008-05-01', 12, 'https://www.gutenberg.org/ebooks/25276', 'fr', 1765), +(46674, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1610b', 'Motley, John Lothrop', '2004-01-01', 2, 'https://www.gutenberg.org/ebooks/4888', 'en', 5913), +(46675, 'Midnight', 'Cohen, Octavus Roy', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/11043', 'en', 128), +(46676, 'The Theory and Practice of Brewing', 'Combrune, Michael', '2018-03-18', 26, 'https://www.gutenberg.org/ebooks/56784', 'en', 13415), +(46677, 'The Poetaster', 'Jonson, Ben', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/5166', 'en', 16242), +(46678, 'Jerusalem Explored, Volume 2—Plates\r\nBeing a Description of the Ancient and Modern City, with Numerous Illustrations Consisting of Views, Ground Plans and Sections', 'Pierotti, Ermete', '2013-11-21', 15, 'https://www.gutenberg.org/ebooks/44241', 'en', 7362), +(46679, 'The Singing Man: A Book of Songs and Shadows', 'Peabody, Josephine Preston', '2004-12-30', 4, 'https://www.gutenberg.org/ebooks/14531', 'en', 8), +(46680, 'Punch, or the London Charivari, Volume 104, January 21, 1893', 'Various', '2007-02-27', 9, 'https://www.gutenberg.org/ebooks/20704', 'en', 134), +(46681, 'Hints to Young Yacht Skippers', 'Day, Thomas Fleming', '2016-06-13', 11, 'https://www.gutenberg.org/ebooks/52324', 'en', 5183), +(46682, 'Rückreise von Java nach Europa mit der sogenannten englischen Überlandpost im September und October 1848', 'Junghuhn, Franz Wilhelm', '2014-04-14', 9, 'https://www.gutenberg.org/ebooks/45393', 'de', 6224), +(46683, 'Kentucky Poems', 'Cawein, Madison Julius', '2011-07-09', 5, 'https://www.gutenberg.org/ebooks/36661', 'en', 16243), +(46684, 'The Disowned — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 16, 'https://www.gutenberg.org/ebooks/7631', 'en', 137), +(46685, 'Bird Guide: Water Birds, Game Birds, and Birds of Prey East of the Rockies', 'Reed, Chester A. (Chester Albert)', '2014-08-06', 16, 'https://www.gutenberg.org/ebooks/46516', 'en', 13532), +(46686, 'Harvard Psychological Studies, Volume 1\r\nContaining Sixteen Experimental Investigations from the Harvard Psychological Laboratory.', NULL, '2005-07-12', 72, 'https://www.gutenberg.org/ebooks/16266', 'en', 16244), +(46687, 'Stories of King Arthur and His Knights\nRetold from Malory\'s \"Morte dArthur\"', 'Malory, Thomas, Sir', '2007-07-12', 68, 'https://www.gutenberg.org/ebooks/22053', 'en', 14563), +(46688, 'Thomas Jefferson Brown', 'Curwood, James Oliver', '2007-10-24', 3, 'https://www.gutenberg.org/ebooks/23181', 'en', 179), +(46689, 'The Botanical Magazine, Vol. 13\r\nOr, Flower-Garden Displayed', 'Sims, John', '2013-10-01', 23, 'https://www.gutenberg.org/ebooks/43858', 'en', 9514), +(46690, 'Makers of Many Things', 'Tappan, Eva March', '2009-04-21', 92, 'https://www.gutenberg.org/ebooks/28569', 'en', 1019), +(46691, 'Letters of Felix Mendelssohn-Bartholdy from 1833 to 1847', 'Mendelssohn-Bartholdy, Felix', '2015-11-17', 24, 'https://www.gutenberg.org/ebooks/50473', 'en', 16245), +(46692, 'Pip : A Romance of Youth', 'Hay, Ian', '2010-10-26', 19, 'https://www.gutenberg.org/ebooks/34136', 'en', 3210), +(46693, 'The White Room', 'Hume, Fergus', '2017-07-12', 11, 'https://www.gutenberg.org/ebooks/55101', 'en', 95), +(46694, 'Παλιές Αγάπες', 'Karkavitsas, Andreas', '2010-02-28', 19, 'https://www.gutenberg.org/ebooks/31444', 'el', 61), +(46695, 'By England\'s Aid; Or, the Freeing of the Netherlands, 1585-1604', 'Henty, G. A. (George Alfred)', '2005-08-01', 23, 'https://www.gutenberg.org/ebooks/8679', 'en', 1167), +(46696, 'John Marshall and the Constitution, a Chronicle of the Supreme Court', 'Corwin, Edward Samuel', '2002-06-01', 37, 'https://www.gutenberg.org/ebooks/3291', 'en', 3472), +(46697, 'The Criminal Imbecile: An Analysis of Three Remarkable Murder Cases', 'Goddard, Henry Herbert', '2013-06-29', 27, 'https://www.gutenberg.org/ebooks/43064', 'en', 16246), +(46698, 'General Bramble', 'Maurois, André', '2009-12-03', 20, 'https://www.gutenberg.org/ebooks/30596', 'en', 579), +(46699, 'The Adventure of Wisteria Lodge', 'Doyle, Arthur Conan', '2000-10-01', 174, 'https://www.gutenberg.org/ebooks/2343', 'en', 128), +(46700, 'The Watchers of the Plains: A Tale of the Western Prairies', 'Cullum, Ridgwell', '2008-12-13', 12, 'https://www.gutenberg.org/ebooks/27521', 'en', 315), +(46701, 'Talbot Mundy Biblio\r\nMaterials Toward a Bibliography of the Works of Talbot Mundy', NULL, '2004-10-11', 18, 'https://www.gutenberg.org/ebooks/13714', 'en', 16247), +(46702, 'Dear Enemy', 'Webster, Jean', '2008-07-03', 239, 'https://www.gutenberg.org/ebooks/238', 'en', 264), +(46703, 'A Short History of Freethought Ancient and Modern, Volume 1 of 2\nThird edition, Revised and Expanded, in two volumes', 'Robertson, J. M. (John Mackinnon)', '2016-04-19', 14, 'https://www.gutenberg.org/ebooks/51793', 'en', 2710), +(46704, 'The Palace of Darkened Windows', 'Bradley, Mary Hastings', '2005-06-13', 17, 'https://www.gutenberg.org/ebooks/16054', 'en', 4766), +(46705, 'A Ioyfull medytacyon to all Englonde of the coronacyon of our moost naturall souerayne lorde kynge Henry the eyght\n(A Joyful Meditation of the Coronation of King Henry the Eighth)', 'Hawes, Stephen', '2007-08-07', 7, 'https://www.gutenberg.org/ebooks/22261', 'en', 8), +(46706, 'Henry the Sixth\nA Reprint of John Blacman\'s Memoir with Translation and Notes', 'Blakman, John', '2009-08-14', 16, 'https://www.gutenberg.org/ebooks/29689', 'en', 16248), +(46707, 'Letters of Catherine Benincasa', 'Catherine, of Siena, Saint', '2005-02-01', 160, 'https://www.gutenberg.org/ebooks/7403', 'en', 16249), +(46708, 'La Péninsule Des Balkans — Tome I\r\nVienne, Croatie, Bosnie, Serbie, Bulgarie, Roumélie, Turquie, Roumanie', 'Laveleye, Emile de', '2006-11-15', 14, 'https://www.gutenberg.org/ebooks/19820', 'fr', 10592), +(46709, 'La plebe, parte II', 'Bersezio, Vittorio', '2014-08-29', 18, 'https://www.gutenberg.org/ebooks/46724', 'it', 860), +(46710, 'The Complete Story of the Galveston Horror', NULL, '2010-11-12', 58, 'https://www.gutenberg.org/ebooks/34304', 'en', 16250), +(46711, 'The Phoenix and the Carpet', 'Nesbit, E. (Edith)', '1997-03-01', 200, 'https://www.gutenberg.org/ebooks/836', 'en', 12501), +(46712, 'Noções elementares de archeologia', 'Silva, Joaquim Possidónio Narciso da', '2005-11-29', 12, 'https://www.gutenberg.org/ebooks/17186', 'pt', 2011), +(46713, 'Istoria civile del Regno di Napoli, v. 1', 'Giannone, Pietro', '2015-12-07', 13, 'https://www.gutenberg.org/ebooks/50641', 'it', 8306), +(46714, 'Adventures of a Despatch Rider', 'Watson, William Henry Lowe', '2005-10-14', 50, 'https://www.gutenberg.org/ebooks/16868', 'en', 449), +(46715, 'Heathen Master Filcsik', 'Mikszáth, Kálmán', '2010-03-17', 12, 'https://www.gutenberg.org/ebooks/31676', 'en', 7076), +(46716, 'Scandinavians on the Pacific, Puget Sound', 'Stine, Thomas Ostenson', '2013-03-21', 14, 'https://www.gutenberg.org/ebooks/42384', 'en', 16251), +(46717, 'The History Teacher\'s Magazine, Vol. I, No. 4, December, 1909', 'Various', '2017-08-11', 10, 'https://www.gutenberg.org/ebooks/55333', 'en', 7692), +(46718, 'The Elements of Bacteriological Technique\nA Laboratory Guide for Medical, Dental, and Technical Students. Second Edition Rewritten and Enlarged.', 'Eyre, J. W. H. (John William Henry)', '2009-01-05', 43, 'https://www.gutenberg.org/ebooks/27713', 'en', 16252), +(46719, 'In the Clutch of the War-God', 'Hastings, Milo', '2004-09-26', 27, 'https://www.gutenberg.org/ebooks/13526', 'en', 2659), +(46720, 'Witches Cove\nA Mystery Story for Girls', 'Snell, Roy J. (Roy Judson)', '2013-07-20', 12, 'https://www.gutenberg.org/ebooks/43256', 'en', 3763), +(46721, 'The Works of John Greenleaf Whittier, Volume VII, Complete\r\nThe Conflict with Slavery, Politics and Reform, the Inner Life, and Criticism', 'Whittier, John Greenleaf', '2005-12-01', 19, 'https://www.gutenberg.org/ebooks/9599', 'en', 2156), +(46722, 'Brother Jacob', 'Eliot, George', '2000-05-01', 61, 'https://www.gutenberg.org/ebooks/2171', 'en', 16253), +(46723, 'The Battle of Gettysburg', 'Haskell, Franklin Aretas', '2010-07-09', 29, 'https://www.gutenberg.org/ebooks/33121', 'en', 2723), +(46724, 'Ten Degrees Backward', 'Fowler, Ellen Thorneycroft', '2018-07-08', 9, 'https://www.gutenberg.org/ebooks/57464', 'en', 1463), +(46725, 'Victory', 'Del Rey, Lester', '2008-01-07', 93, 'https://www.gutenberg.org/ebooks/24196', 'en', 26), +(46726, 'The Eugenic Marriage, Volume 3 (of 4)\r\nA Personal Guide to the New Science of Better Living and Better Babies', 'Hague, W. Grant (William Grant)', '2008-04-11', 17, 'https://www.gutenberg.org/ebooks/25044', 'en', 1451), +(46727, 'The Anti-Slavery Examiner, Part 1 of 4', 'American Anti-Slavery Society', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/11271', 'en', 8314), +(46728, 'How to Read Human Nature: Its Inner States and Outer Forms', 'Atkinson, William Walker', '2012-11-28', 81, 'https://www.gutenberg.org/ebooks/41501', 'en', 1794), +(46729, 'Le nain noir', 'Scott, Walter', '2005-01-16', 18, 'https://www.gutenberg.org/ebooks/14703', 'fr', 2389), +(46730, 'De Ziekte der Verbeelding', 'Conscience, Hendrik', '2007-02-06', 7, 'https://www.gutenberg.org/ebooks/20536', 'nl', 98), +(46731, 'Guy Mannering, Or, the Astrologer — Volume 02', 'Scott, Walter', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/5354', 'en', 98), +(46732, 'The Cricket on the Hearth: A Fairy Tale of Home', 'Dickens, Charles', '2011-10-01', 66, 'https://www.gutenberg.org/ebooks/37581', 'en', 45), +(46733, 'The Aquarian Gospel of Jesus the Christ\r\nThe Philosophic and Practical Basis of the Religion of the Aquarian Age of the World and of The Church Universal', 'Levi', '2013-10-30', 255, 'https://www.gutenberg.org/ebooks/44073', 'en', 16254), +(46734, 'Commentary Upon the Maya-Tzental Perez Codex\nwith a Concluding Note Upon the Linguistic Problem of the Maya Glyphs', 'Gates, William', '2008-06-22', 17, 'https://www.gutenberg.org/ebooks/25878', 'en', 16255), +(46735, 'Mastery of Self for Wealth, Power, Success', 'Haddock, Frank C. (Frank Channing)', '2003-07-01', 83, 'https://www.gutenberg.org/ebooks/4286', 'en', 43), +(46736, 'La guardia blanca\nnovela histórica escrita en inglés', 'Doyle, Arthur Conan', '2011-06-17', 53, 'https://www.gutenberg.org/ebooks/36453', 'es', 2442), +(46737, 'The Canadian Druggist, Vol., 1, No. 2; August, 1889', NULL, '2016-05-21', 11, 'https://www.gutenberg.org/ebooks/52116', 'en', 16256), +(46738, 'The Rivers of Great Britain, Descriptive, Historical, Pictorial: Rivers of the South and West Coasts', 'Various', '2014-11-05', 11, 'https://www.gutenberg.org/ebooks/47292', 'en', 10444), +(46739, 'Metsämiehen muistelmia', 'Turgenev, Ivan Sergeevich', '2010-12-27', 32, 'https://www.gutenberg.org/ebooks/34760', 'fi', 13724), +(46740, 'Danger at Mormon Crossing\nSandy Steele Adventures #2', 'Leckie, Robert', '2015-10-15', 33, 'https://www.gutenberg.org/ebooks/50225', 'en', 3), +(46741, 'The Atlantic Monthly, Volume 04, No. 23, September, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-08-04', 9, 'https://www.gutenberg.org/ebooks/16430', 'en', 1227), +(46742, 'Complete Prose Works\nSpecimen Days and Collect, November Boughs and Goodbye My Fancy', 'Whitman, Walt', '2005-09-01', 168, 'https://www.gutenberg.org/ebooks/8813', 'en', 2645), +(46743, 'Book-Lovers, Bibliomaniacs and Book Clubs', 'Harper, Henry Howard', '2007-09-15', 13, 'https://www.gutenberg.org/ebooks/22605', 'en', 16257), +(46744, 'The Magnificent Lovers (Les Amants magnifiques)', 'Molière', '2004-12-01', 24, 'https://www.gutenberg.org/ebooks/7067', 'en', 3258), +(46745, 'Émile eli Kasvatuksesta', 'Rousseau, Jean-Jacques', '2014-07-20', 17, 'https://www.gutenberg.org/ebooks/46340', 'fi', 8790), +(46746, 'A Little Maid of Massachusetts Colony', 'Curtis, Alice Turner', '2008-12-01', 16, 'https://www.gutenberg.org/ebooks/27377', 'en', 2843), +(46747, 'Ancient Rome : from the earliest times down to 476 A. D.', 'Pennell, Robert F.', '2004-11-01', 100, 'https://www.gutenberg.org/ebooks/6989', 'en', 6793), +(46748, 'Half-A-Dozen Housekeepers: A Story for Girls in Half-A-Dozen Chapters', 'Wiggin, Kate Douglas Smith', '2017-05-08', 12, 'https://www.gutenberg.org/ebooks/54685', 'en', 16258), +(46749, 'Self-Development and the Way to Power', 'Rogers, L. W. (Louis William)', '2004-08-09', 35, 'https://www.gutenberg.org/ebooks/13142', 'en', 746), +(46750, 'L\'Illustration, No. 0053, 2 Mars 1844', 'Various', '2013-09-03', 5, 'https://www.gutenberg.org/ebooks/43632', 'fr', 150), +(46751, 'Stepping Heavenward', 'Prentiss, E. (Elizabeth)', '2001-02-01', 94, 'https://www.gutenberg.org/ebooks/2515', 'en', 4927), +(46752, 'The Advocate: A Novel', 'Heavysege, Charles', '2010-02-07', 21, 'https://www.gutenberg.org/ebooks/31212', 'en', 16259), +(46753, 'Den Gamles Minnen: Bilder från finska skogsbygden', 'Berndtson, Fredrik', '2015-06-28', 10, 'https://www.gutenberg.org/ebooks/49308', 'sv', 8), +(46754, 'The Lives of the Poets of Great Britain and Ireland (1753) Volume V.', 'Cibber, Theophilus', '2004-04-01', 135, 'https://www.gutenberg.org/ebooks/12090', 'en', 8918), +(46755, 'The Art of Paper-Making\nA Practical Handbook of the Manufacture of Paper from Rags, Esparto, Straw, and Other Fibrous Materials, Including the Manufacture of Pulp from Wood Fibre', 'Watt, Alexander', '2017-10-15', 31, 'https://www.gutenberg.org/ebooks/55757', 'en', 1030), +(46756, 'Four-Day Planet', 'Piper, H. Beam', '2006-10-06', 113, 'https://www.gutenberg.org/ebooks/19478', 'en', 5065), +(46757, 'The Early History of the Airplane', 'Wright, Wilbur', '2008-05-11', 68, 'https://www.gutenberg.org/ebooks/25420', 'en', 1577), +(46758, 'The Grammar of English Grammars', 'Brown, Goold', '2004-03-01', 246, 'https://www.gutenberg.org/ebooks/11615', 'en', 1979), +(46759, 'The Isles of Scilly: Their Story Their Folk & Their Flowers', 'Mothersole, Jessie', '2012-10-24', 22, 'https://www.gutenberg.org/ebooks/41165', 'en', 16260), +(46760, 'The Alphabet of Economic Science; Elements of the Theory of Value or Worth', 'Wicksteed, Philip H. (Philip Henry)', '2010-05-30', 30, 'https://www.gutenberg.org/ebooks/32497', 'en', 16261), +(46761, 'Tarzan and the Golden Lion', 'Burroughs, Edgar Rice', '2019-02-11', 150, 'https://www.gutenberg.org/ebooks/58874', 'en', 580), +(46762, 'Food of the Crow, Corvus brachyrhynchos Brehm, in South-central Kansas', 'Platt, Dwight R.', '2010-08-27', 11, 'https://www.gutenberg.org/ebooks/33545', 'en', 16262), +(46763, 'The Jimmyjohn Boss, and Other Stories', 'Wister, Owen', '1998-07-01', 33, 'https://www.gutenberg.org/ebooks/1390', 'en', 315), +(46764, 'The Boy Aeronauts\' Club; or, Flying for Fun', 'Sayler, H. L. (Harry Lincoln)', '2018-04-19', 12, 'https://www.gutenberg.org/ebooks/57000', 'en', 2279), +(46765, 'Medical experts: Investigation of Insanity by Juries', 'Thorne, W. S.', '2011-05-05', 12, 'https://www.gutenberg.org/ebooks/36037', 'en', 16263), +(46766, 'Philippine Progress Prior to 1898\r\nA Source Book of Philippine History to Supply a Fairer View of Filipino Participation and Supplement the Defective Spanish Accounts', 'Benitez, Conrado O.', '2013-01-31', 39, 'https://www.gutenberg.org/ebooks/41959', 'en', 4987), +(46767, 'The Astral Plane\nIts Scenery, Inhabitants and Phenomena', 'Leadbeater, C. W. (Charles Webster)', '2007-04-15', 106, 'https://www.gutenberg.org/ebooks/21080', 'en', 16264), +(46768, 'Women of History: Selected from the Writings of Standard Authors', 'Various', '2012-05-29', 185, 'https://www.gutenberg.org/ebooks/39843', 'en', 4289), +(46769, 'Stories of a Governess', 'Fisler, Annie', '2016-07-14', 15, 'https://www.gutenberg.org/ebooks/52572', 'en', 470), +(46770, 'When A Man\'s A Man', 'Wright, Harold Bell', '2004-12-16', 29, 'https://www.gutenberg.org/ebooks/14367', 'en', 774), +(46771, 'Consolation in Life and Death, Derived from the Life of Christ\r\nBeing the substance of a sermon on the death of Mrs. Turner, preached at the Surrey Tabernacle, on Sunday evening, the 15th of August, 1824', 'Church, J. (John)', '2018-10-06', 3, 'https://www.gutenberg.org/ebooks/58048', 'en', 2386), +(46772, 'Roumanian Stories, Translated from the Original Roumanian', NULL, '2012-02-26', 55, 'https://www.gutenberg.org/ebooks/38991', 'en', 16265), +(46773, 'The Winning Clue', 'Hay, James', '2006-12-20', 26, 'https://www.gutenberg.org/ebooks/20152', 'en', 1516), +(46774, 'Friends and Helpers', NULL, '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/5730', 'en', 4589), +(46775, 'The Cradle of Mankind; Life in Eastern Kurdistan', 'Wigram, W. A. (William Ainger)', '2013-12-13', 9, 'https://www.gutenberg.org/ebooks/44417', 'en', 16266), +(46776, 'The Works of Francis Maitland Balfour, Volume 1 (of 4)\r\nSeparate Memoirs', 'Balfour, Francis M. (Francis Maitland)', '2012-11-12', 11, 'https://www.gutenberg.org/ebooks/41357', 'en', 15471), +(46777, 'The Art or Crafte of Rhetoryke', 'Cox, Leonard', '2008-05-26', 37, 'https://www.gutenberg.org/ebooks/25612', 'en', 68), +(46778, 'A Grandmother\'s Recollections', 'Church, Ella Rodman', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11427', 'en', 438), +(46779, 'Pons tironum', 'Appleton, R. B. (Reginald Bainbridge)', '2018-05-29', 34, 'https://www.gutenberg.org/ebooks/57232', 'la', 3450), +(46780, 'Three Contributions to the Theory of Sex', 'Freud, Sigmund', '2005-02-08', 310, 'https://www.gutenberg.org/ebooks/14969', 'en', 3052), +(46781, 'Tom Brown at Rugby', 'Hughes, Thomas', '2010-09-20', 33, 'https://www.gutenberg.org/ebooks/33777', 'en', 95), +(46782, 'The Syrian Christ', 'Rihbany, Abraham Mitrie', '2012-07-20', 23, 'https://www.gutenberg.org/ebooks/40285', 'en', 16267), +(46783, 'Doing My Bit For Ireland', 'Skinnider, Margaret', '2016-08-06', 19, 'https://www.gutenberg.org/ebooks/52740', 'en', 1786), +(46784, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 333, September 27, 1828', 'Various', '2005-02-17', 2, 'https://www.gutenberg.org/ebooks/15087', 'en', 133), +(46785, 'Η Φόνισσα', 'Papadiamantes, Alexandros', '2011-05-23', 47, 'https://www.gutenberg.org/ebooks/36205', 'el', 16268), +(46786, 'Serapis — Volume 02', 'Ebers, Georg', '2004-04-01', 32, 'https://www.gutenberg.org/ebooks/5502', 'en', 803), +(46787, 'True Ghost Stories', 'Carrington, Hereward', '2014-01-08', 152, 'https://www.gutenberg.org/ebooks/44625', 'en', 1245), +(46788, 'Madame Bovary', 'Flaubert, Gustave', '2004-11-26', 381, 'https://www.gutenberg.org/ebooks/14155', 'fr', 642), +(46789, 'The Flying Girl and Her Chum', 'Baum, L. Frank (Lyman Frank)', '2016-12-07', 18, 'https://www.gutenberg.org/ebooks/53692', 'en', 10121), +(46790, 'No Abolition of Slavery\nOr the Universal Empire of Love, A poem', 'Boswell, James', '2007-01-15', 26, 'https://www.gutenberg.org/ebooks/20360', 'en', 16269), +(46791, 'Yosemite Legends', 'Smith, Bertha H.', '2015-09-20', 19, 'https://www.gutenberg.org/ebooks/50017', 'en', 3780), +(46792, 'La freccia nel fianco', 'Zùccoli, Luciano', '2009-02-03', 13, 'https://www.gutenberg.org/ebooks/27979', 'it', 892), +(46793, 'The Lives of the Twelve Caesars, Volume 02: Augustus', 'Suetonius', '2004-12-13', 50, 'https://www.gutenberg.org/ebooks/6387', 'en', 1037), +(46794, 'Danger at the Drawbridge', 'Wirt, Mildred A. (Mildred Augustine)', '2010-12-03', 38, 'https://www.gutenberg.org/ebooks/34552', 'en', 557), +(46795, 'Cambridge Sketches', 'Stearns, Frank Preston', '2005-01-01', 23, 'https://www.gutenberg.org/ebooks/7255', 'en', 16270), +(46796, 'The Dusantes\nA Sequel to \"The Casting Away of Mrs. Lecks and Mrs. Aleshine\"', 'Stockton, Frank Richard', '2011-03-04', 19, 'https://www.gutenberg.org/ebooks/35480', 'en', 2549), +(46797, 'A Tale of the Tow-Path', 'Greene, Homer', '2014-07-02', 13, 'https://www.gutenberg.org/ebooks/46172', 'en', 1287), +(46798, 'The Major Operations of the Navies in the War of American Independence', 'Mahan, A. T. (Alfred Thayer)', '2005-08-27', 46, 'https://www.gutenberg.org/ebooks/16602', 'en', 16271), +(46799, 'The Daft Days', 'Munro, Neil', '2015-09-07', 18, 'https://www.gutenberg.org/ebooks/49906', 'en', 16272), +(46800, 'The Price of Love', 'Bennett, Arnold', '2007-08-01', 10, 'https://www.gutenberg.org/ebooks/22437', 'en', 1567), +(46801, 'In the Musgrave Ranges', 'Sayce, Conrad H. (Conrad Harvey)', '2009-05-22', 16, 'https://www.gutenberg.org/ebooks/28931', 'en', 421), +(46802, 'Música y Músicos Portorriqueños', 'Callejo Ferrer, Fernando', '2013-08-04', 8, 'https://www.gutenberg.org/ebooks/43400', 'es', 16273), +(46803, 'Allan\'s Wife', 'Haggard, H. Rider (Henry Rider)', '2006-03-28', 108, 'https://www.gutenberg.org/ebooks/2727', 'en', 3825), +(46804, '殘唐五代史演義傳', 'Luo, Guanzhong', '2008-11-04', 15, 'https://www.gutenberg.org/ebooks/27145', 'zh', 1574), +(46805, 'Q. E. D., or New Light on the Doctrine of Creation', 'Price, George McCready', '2004-09-03', 18, 'https://www.gutenberg.org/ebooks/13370', 'en', 4538), +(46806, 'Memoria dirigida al Sr. Marquez de Loreto, Virey y Capitan General de las Provincias del Rio de La Plata', 'Viedma, Francisco de', '2006-07-09', 15, 'https://www.gutenberg.org/ebooks/18798', 'es', 16274), +(46807, 'Das Weiberdorf', 'Viebig, Clara', '2017-09-16', 14, 'https://www.gutenberg.org/ebooks/55565', 'de', 549), +(46808, 'Submission to Divine Providence in the Death of Children\r\nRecommended and inforced, in a sermon preached at\r\nNorthampton, on the death of a very amiable and hopeful\r\nchild, about five years old', 'Doddridge, Philip', '2008-07-21', 9, 'https://www.gutenberg.org/ebooks/26097', 'en', 16275), +(46809, 'A New Subspecies of Pocket Mouse from Kansas', 'Hall, E. Raymond (Eugene Raymond)', '2010-01-19', 6, 'https://www.gutenberg.org/ebooks/31020', 'en', 15913), +(46810, 'It May Be True, Vol. 1 (of 3)', 'Wood, Henry, Mrs.', '2012-08-06', 24, 'https://www.gutenberg.org/ebooks/40418', 'en', 61), +(46811, 'American Unitarian Hymn Writers and Hymns', 'Foote, Henry Wilder', '2016-12-30', 7, 'https://www.gutenberg.org/ebooks/53833', 'en', 12494), +(46812, 'Hann Klüth: Roman', 'Engel, Georg', '2012-01-06', 3, 'https://www.gutenberg.org/ebooks/38502', 'de', 253), +(46813, 'The Geography of Strabo, Volume 1 (of 3)\r\nLiterally Translated, with Notes', 'Strabo', '2014-02-13', 70, 'https://www.gutenberg.org/ebooks/44884', 'en', 8354), +(46814, 'The Vizier of the Two-Horned Alexander', 'Stockton, Frank Richard', '2003-12-01', 21, 'https://www.gutenberg.org/ebooks/10368', 'en', 580), +(46815, 'Tagebuch eines bösen Buben', 'Victor, Metta Victoria Fuller', '2014-06-13', 11, 'https://www.gutenberg.org/ebooks/45956', 'de', 1566), +(46816, 'The Flaming Mountain: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-04-18', 22, 'https://www.gutenberg.org/ebooks/32038', 'en', 16276), +(46817, 'Der Teufel und die Hölle\r\nin der darstellenden Kunst von den Anfängen bis zum Zeitalter Dante\'s und Giotto\'s', 'Köppen, Alfred', '2008-03-30', 19, 'https://www.gutenberg.org/ebooks/24961', 'de', 2091), +(46818, 'The Teaching of Art Related to the Home\r\nSuggestions for content and method in related art instruction in the vocational program in home economics', 'Fallgatter, Florence', '2011-06-23', 45, 'https://www.gutenberg.org/ebooks/36498', 'en', 11466), +(46819, 'Punch, or the London Charivari, Volume 93, July 23, 1887.', 'Various', '2010-06-13', 10, 'https://www.gutenberg.org/ebooks/32804', 'en', 134), +(46820, 'Project Hi-Psi', 'Riley, Frank', '2019-05-18', 53, 'https://www.gutenberg.org/ebooks/59535', 'en', 67), +(46821, 'Hidden Water', 'Coolidge, Dane', '2009-08-09', 125, 'https://www.gutenberg.org/ebooks/29642', 'en', 315), +(46822, 'Memoirs of Madame la Marquise de Montespan — Complete', 'Montespan, Madame de', '2004-08-24', 79, 'https://www.gutenberg.org/ebooks/3854', 'en', 9186), +(46823, 'From an Unseen Censor', 'Brown, Rosel George', '2016-04-14', 43, 'https://www.gutenberg.org/ebooks/51758', 'en', 777), +(46824, 'Andy at Yale\r\nOr, The Great Quadrangle Mystery', 'Stokes, Roy Eliot', '2006-07-30', 8, 'https://www.gutenberg.org/ebooks/18939', 'en', 3529), +(46825, 'Mark Twain: A Biography. Volume III, Part 1: 1900-1907', 'Paine, Albert Bigelow', '2004-10-04', 16, 'https://www.gutenberg.org/ebooks/2986', 'en', 131), +(46826, 'Tales of the Sea, and of Our Jack Tars', 'Kingston, William Henry Giles', '2007-11-06', 8, 'https://www.gutenberg.org/ebooks/23378', 'en', 195), +(46827, 'Harper\'s Young People, April 20, 1880\nAn Illustrated Weekly', 'Various', '2009-05-13', 2, 'https://www.gutenberg.org/ebooks/28790', 'en', 479), +(46828, 'Life on the Mississippi, Part 10.', 'Twain, Mark', '2004-07-10', 11, 'https://www.gutenberg.org/ebooks/8480', 'en', 16182), +(46829, 'Washington Square Plays', 'Goodman, Edward', '2002-02-01', 34, 'https://www.gutenberg.org/ebooks/3068', 'en', 16051), +(46830, 'Genesis', 'Piper, H. Beam', '2006-04-02', 98, 'https://www.gutenberg.org/ebooks/18105', 'en', 26), +(46831, 'The Hound of the Baskervilles', 'Doyle, Arthur Conan', '2005-12-01', 87, 'https://www.gutenberg.org/ebooks/9552', 'en', 11557), +(46832, 'The Abolition Of Slavery The Right Of The Government Under The War Power', NULL, '2006-03-12', 24, 'https://www.gutenberg.org/ebooks/17971', 'en', 16277), +(46833, 'Cassell\'s Book of Birds, Volume 1 (of 4)', 'Brehm, Alfred Edmund', '2015-04-10', 21, 'https://www.gutenberg.org/ebooks/48675', 'en', 318), +(46834, 'Rambles on the Riviera', 'Mansfield, M. F. (Milburg Francisco)', '2013-06-13', 15, 'https://www.gutenberg.org/ebooks/42941', 'en', 6325), +(46835, 'The Seventh Day Sabbath, a Perpetual Sign, from the Beginning to the Entering into the Gates of the Holy City, According to the Commandment', 'Bates, Joseph', '2007-07-18', 15, 'https://www.gutenberg.org/ebooks/22098', 'en', 16278), +(46836, 'Embéo e Majaró Lucas', NULL, '2009-07-20', 16, 'https://www.gutenberg.org/ebooks/29470', 'rmr', 16279), +(46837, 'My Miscellanies, Vol. 1 (of 2)', 'Collins, Wilkie', '2013-10-05', 23, 'https://www.gutenberg.org/ebooks/43893', 'en', 232), +(46838, 'The Secret Doctrine, Vol. 1 of 4', 'Blavatsky, H. P. (Helena Petrovna)', '2017-06-01', 209, 'https://www.gutenberg.org/ebooks/54824', 'en', 746), +(46839, 'Rede zum Schuljahresabschluß am 29. September 1809', 'Hegel, Georg Wilhelm Friedrich', '2004-10-01', 12, 'https://www.gutenberg.org/ebooks/6728', 'de', 659), +(46840, 'Are the Effects of Use and Disuse Inherited?\nAn Examination of the View Held by Spencer and Darwin', 'Ball, W. P. (William Platt)', '2008-08-26', 9, 'https://www.gutenberg.org/ebooks/26438', 'en', 3546), +(46841, 'Aspects and Impressions', 'Gosse, Edmund', '2011-04-10', 23, 'https://www.gutenberg.org/ebooks/35813', 'en', 2145), +(46842, 'When the King Loses His Head, and Other Stories', 'Andreyev, Leonid', '2015-08-04', 44, 'https://www.gutenberg.org/ebooks/49595', 'en', 4078), +(46843, 'Leila or, the Siege of Granada, Book V.', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 10, 'https://www.gutenberg.org/ebooks/9760', 'en', 15958), +(46844, 'The Song Celestial; Or, Bhagavad-Gîtâ (from the Mahâbhârata)\r\nBeing a discourse between Arjuna, Prince of India, and the Supreme Being under the form of Krishna', NULL, '2000-11-01', 432, 'https://www.gutenberg.org/ebooks/2388', 'en', 794), +(46845, 'White Fang', 'London, Jack', '2007-12-01', 28, 'https://www.gutenberg.org/ebooks/23976', 'en', 1887), +(46846, 'Näyttelijättären tarina: Romaani', 'Anttila, Selma', '2015-03-09', 36, 'https://www.gutenberg.org/ebooks/48447', 'fi', 456), +(46847, 'Chambers\'s Edinburgh Journal, No. 430\nVolume 17, New Series, March 27, 1852', 'Various', '2006-05-07', 22, 'https://www.gutenberg.org/ebooks/18337', 'en', 18), +(46848, 'Farmington', 'Darrow, Clarence', '2017-01-24', 12, 'https://www.gutenberg.org/ebooks/54018', 'en', 16280), +(46849, 'The Solitary Summer', 'Von Arnim, Elizabeth', '2004-06-01', 51, 'https://www.gutenberg.org/ebooks/5991', 'en', 1383), +(46850, 'The Moral Instruction of Children', 'Adler, Felix', '2012-01-31', 94, 'https://www.gutenberg.org/ebooks/38730', 'en', 1302), +(46851, 'English Men of Letters: Crabbe', 'Ainger, Alfred', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11088', 'en', 6521), +(46852, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1585f', 'Motley, John Lothrop', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4843', 'en', 3372), +(46853, 'The Ghost Pirates', 'Hodgson, William Hope', '2004-02-01', 139, 'https://www.gutenberg.org/ebooks/10966', 'en', 3828), +(46854, 'Notes and Queries, Vol. IV, Number 91, July 26, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-10-17', 7, 'https://www.gutenberg.org/ebooks/37778', 'en', 105), +(46855, 'Index of the Project Gutenberg Works of Edward Sylvester Ellis', 'Ellis, Edward Sylvester', '2019-06-08', 17, 'https://www.gutenberg.org/ebooks/59707', 'en', 198), +(46856, 'The Great Round World and What Is Going On In It, Vol. 1, No. 20, March 25, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-21', 11, 'https://www.gutenberg.org/ebooks/15428', 'en', 1), +(46857, 'Muistojen komeroista', 'Alkio, Santeri', '2014-04-10', 6, 'https://www.gutenberg.org/ebooks/45358', 'fi', 61), +(46858, 'The Boarded-Up House', 'Seaman, Augusta Huiell', '2010-01-09', 24, 'https://www.gutenberg.org/ebooks/30905', 'en', 16281), +(46859, 'What the Swallow Sang: A Novel', 'Spielhagen, Friedrich', '2010-12-08', 15, 'https://www.gutenberg.org/ebooks/34599', 'en', 61), +(46860, 'Lives of the Most Eminent Painters Sculptors and Architects, Vol. 03 (of 10)\r\nFilarete and Simone to Mantegna', 'Vasari, Giorgio', '2008-10-09', 78, 'https://www.gutenberg.org/ebooks/26860', 'en', 915), +(46861, 'En viaje (1881-1882)', 'Cané, Miguel', '2009-05-31', 43, 'https://www.gutenberg.org/ebooks/29014', 'es', 16282), +(46862, 'Initiation into Philosophy', 'Faguet, Émile', '2005-11-01', 204, 'https://www.gutenberg.org/ebooks/9304', 'en', 16283), +(46863, 'The Beauties of the State of Washington: A Book for Tourists', 'Giles, Harry F.', '2009-09-30', 22, 'https://www.gutenberg.org/ebooks/30139', 'en', 16284), +(46864, 'Kaksi kaupunkia', 'Dickens, Charles', '2015-01-19', 23, 'https://www.gutenberg.org/ebooks/48023', 'fi', 12851), +(46865, 'The Space Pioneers', 'Rockwell, Carey', '2006-07-04', 49, 'https://www.gutenberg.org/ebooks/18753', 'en', 16285), +(46866, 'The Light Princess', 'MacDonald, George', '1996-10-01', 414, 'https://www.gutenberg.org/ebooks/697', 'en', 4799), +(46867, 'Adrift in the Arctic Ice Pack\r\nfrom the history of the first U.S. Grinnell Expedition in search of Sir John Franklin', 'Kane, Elisha Kent', '2015-01-03', 22, 'https://www.gutenberg.org/ebooks/47857', 'en', 16286), +(46868, 'Willem Tell: De Zwitsersche vrijheidsheld', 'Louwerse, Pieter', '2014-09-28', 6, 'https://www.gutenberg.org/ebooks/46985', 'nl', 16287), +(46869, 'Wee Macgreegor Enlists', 'Bell, J. J. (John Joy)', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12269', 'en', 637), +(46870, 'Детство', 'Tolstoy, Leo, graf', '2006-11-07', 31, 'https://www.gutenberg.org/ebooks/19681', 'ru', 417), +(46871, 'Is He Popenjoy?', 'Trollope, Anthony', '2009-08-28', 22, 'https://www.gutenberg.org/ebooks/29828', 'en', 1380), +(46872, 'Blackthorn Farm', 'Applin, Arthur', '2013-04-12', 11, 'https://www.gutenberg.org/ebooks/42519', 'en', 61), +(46873, 'Journal of a Residence in America', 'Kemble, Fanny', '2016-05-02', 14, 'https://www.gutenberg.org/ebooks/51932', 'en', 16288), +(46874, '\'Of Genius\', in The Occasional Paper, and Preface to The Creation', 'Hill, Aaron', '2005-05-20', 12, 'https://www.gutenberg.org/ebooks/15870', 'en', 10409), +(46875, 'Colour as a Means of Art\r\nBeing an Adaption of the Experience of Professors to the Practice of Amateurs', 'Howard, Frank', '2012-03-28', 26, 'https://www.gutenberg.org/ebooks/39286', 'en', 603), +(46876, 'Agesilaus', 'Xenophon', '1998-01-01', 80, 'https://www.gutenberg.org/ebooks/1169', 'en', 16289), +(46877, 'The History of the Inquisition of Spain from the Time of its Establishment to the Reign of Ferdinand VII.', 'Llorente, Juan Antonio', '2011-12-20', 10, 'https://www.gutenberg.org/ebooks/38354', 'en', 4232), +(46878, 'Ecology on Rollins Island', 'Lang, Varley', '2019-04-25', 36, 'https://www.gutenberg.org/ebooks/59363', 'en', 1526), +(46879, '2 B R 0 2 B', 'Vonnegut, Kurt', '2007-05-03', 1862, 'https://www.gutenberg.org/ebooks/21279', 'en', 179), +(46880, 'The Darrow Enigma', 'Severy, Melvin L. (Melvin Linwood)', '1999-11-01', 32, 'https://www.gutenberg.org/ebooks/1955', 'en', 128), +(46881, 'Toteutuneita unelmia: Neljä kertomusta', 'Strindberg, August', '2016-12-04', 15, 'https://www.gutenberg.org/ebooks/53659', 'fi', 2168), +(46882, 'The Great Lord Burghley: A study in Elizabethan statecraft', 'Hume, Martin A. S. (Martin Andrew Sharp)', '2017-12-03', 23, 'https://www.gutenberg.org/ebooks/56119', 'en', 16290), +(46883, 'Woodrow Wilson and the World War\nA Chronicle of Our Own Times.', 'Seymour, Charles', '2007-06-20', 30, 'https://www.gutenberg.org/ebooks/21877', 'en', 13607), +(46884, 'Mémoires pour servir à l\'Histoire de France sous Napoléon, Tome 1/2\nécrits à Sainte-Hélène par les généraux qui ont partagé sa captivité', 'Gourgaud, Gaspard, Baron', '2011-11-29', 21, 'https://www.gutenberg.org/ebooks/38166', 'fr', 1941), +(46885, 'Kinston, Whitehall and Goldsboro (North Carolina) expedition, December, 1862', NULL, '2008-02-06', 14, 'https://www.gutenberg.org/ebooks/24539', 'en', 2723), +(46886, 'The Girls of Central High at Basketball; Or, The Great Gymnasium Mystery', 'Morrison, Gertrude W.', '2011-11-02', 19, 'https://www.gutenberg.org/ebooks/37912', 'en', 557), +(46887, 'Deadlock: Pilgrimage, Volume 6', 'Richardson, Dorothy M. (Dorothy Miller)', '2018-04-05', 25, 'https://www.gutenberg.org/ebooks/56925', 'en', 2019), +(46888, 'Home Scenes and Home Influence; a series of tales and sketches', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/4629', 'en', 675), +(46889, 'Thirty Days in Lithuania in 1919', 'Saurusaitis, Peter', '2012-06-01', 12, 'https://www.gutenberg.org/ebooks/39888', 'en', 16291), +(46890, 'Gerfaut', 'Bernard, Charles de', '2019-03-29', 16, 'https://www.gutenberg.org/ebooks/59151', 'fr', 298), +(46891, 'Histoire de France - Moyen Âge; (Vol. 3 / 10)', 'Michelet, Jules', '2013-02-03', 24, 'https://www.gutenberg.org/ebooks/41992', 'fr', 624), +(46892, 'L\'écornifleur', 'Renard, Jules', '2006-12-27', 34, 'https://www.gutenberg.org/ebooks/20199', 'fr', 61), +(46893, 'Ten Years Among the Mail Bags\r\nOr, Notes from the Diary of a Special Agent of the Post-Office Department', 'Holbrook, James', '2012-09-22', 9, 'https://www.gutenberg.org/ebooks/40840', 'en', 16292), +(46894, 'The Chronicles of Enguerrand de Monstrelet, Vol. 07 [of 13]\r\nContaining an account of the cruel civil wars between the houses of Orleans and Burgundy, of the possession of Paris and Normandy by the English, their expulsion thence, and of other memorable events that happened in the kingdom of France, as well as in other countries', 'Monstrelet, Enguerrand de', '2018-10-12', 5, 'https://www.gutenberg.org/ebooks/58083', 'en', 8369), +(46895, 'La Vendreda Klubo\r\n11 diversaj originalaj artikoloj verkitaj de la \"Vendredoklubanoj\" en Leipzig', NULL, '2014-11-01', 12, 'https://www.gutenberg.org/ebooks/47259', 'eo', 2493), +(46896, 'Othello', 'Shakespeare, William', '2006-01-16', 26, 'https://www.gutenberg.org/ebooks/17529', 'fi', 6612), +(46897, 'The Fall of British Tyranny\nAmerican Liberty Triumphant', 'Leacock, John', '2009-06-26', 23, 'https://www.gutenberg.org/ebooks/29226', 'en', 13863), +(46898, 'The Banquet (Il Convito)', 'Dante Alighieri', '2004-07-09', 35, 'https://www.gutenberg.org/ebooks/12867', 'en', 779), +(46899, 'Pieces of Hate; And Other Enthusiasms', 'Broun, Heywood', '2011-03-26', 27, 'https://www.gutenberg.org/ebooks/35679', 'en', 20), +(46900, 'Le gorille: roman parisien', 'Méténier, Oscar', '2004-08-15', 29, 'https://www.gutenberg.org/ebooks/13189', 'fr', 61), +(46901, 'The Ontario Readers: Third Book', 'Ontario. Department of Education', '2006-06-12', 41, 'https://www.gutenberg.org/ebooks/18561', 'en', 1019), +(46902, 'The Heart of Mid-Lothian, Volume 1', 'Scott, Walter', '2004-08-20', 17, 'https://www.gutenberg.org/ebooks/6942', 'en', 16293), +(46903, 'Kunst und Künstler Almanach 1909', 'Various', '2015-02-09', 3, 'https://www.gutenberg.org/ebooks/48211', 'de', 16294), +(46904, 'Blind Love', 'Collins, Wilkie', '2005-04-01', 41, 'https://www.gutenberg.org/ebooks/7890', 'en', 235), +(46905, 'Utvandrarehistorier', 'Zilliacus, Konni', '2015-09-21', 15, 'https://www.gutenberg.org/ebooks/50028', 'sv', 9227), +(46906, 'The Nursery, April 1877, Vol. XXI. No. 4\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 21, 'https://www.gutenberg.org/ebooks/28132', 'en', 4641), +(46907, 'Άλκηστις', 'Euripides', '2009-01-31', 22, 'https://www.gutenberg.org/ebooks/27946', 'el', 15452), +(46908, 'A fond de cale', 'Reid, Mayne', '2008-10-12', 16, 'https://www.gutenberg.org/ebooks/26894', 'fr', 3535), +(46909, 'Paul Nicolay: Elämänkuvaus', 'Langenskjöld, Margareta', '2015-09-11', 4, 'https://www.gutenberg.org/ebooks/49939', 'fi', 16295), +(46910, 'Chatterbox Stories of Natural History', 'Anonymous', '2007-08-26', 38, 'https://www.gutenberg.org/ebooks/22408', 'en', 1423), +(46911, 'The Orpheus C. Kerr Papers, Series 3', 'Newell, R. H. (Robert Henry)', '2010-03-29', 8, 'https://www.gutenberg.org/ebooks/31823', 'en', 403), +(46912, 'Prize Money', 'Wright, Quincy', '2016-01-01', 13, 'https://www.gutenberg.org/ebooks/50814', 'en', 16296), +(46913, 'The Chaperon', 'James, Henry', '2001-07-01', 26, 'https://www.gutenberg.org/ebooks/2718', 'en', 7007), +(46914, 'The Secret Doctrine, Vol. 2 of 4', 'Blavatsky, H. P. (Helena Petrovna)', '2017-04-04', 130, 'https://www.gutenberg.org/ebooks/54488', 'en', 746), +(46915, 'The Gutenberg Webster\'s Unabridged Dictionary: Section F, G and H', 'Project Gutenberg', '1996-09-01', 136, 'https://www.gutenberg.org/ebooks/663', 'en', 1481), +(46916, 'Surrey\nPainted by Sutton Palmer; Described by A.R. Hope Moncrieff', 'Moncrieff, A. R. Hope (Ascott Robert Hope)', '2014-09-26', 18, 'https://www.gutenberg.org/ebooks/46971', 'en', 1858), +(46917, 'Herrn Mahlhubers Reiseabenteuer', 'Gerstäcker, Friedrich', '2006-10-31', 13, 'https://www.gutenberg.org/ebooks/19675', 'de', 781), +(46918, 'Alle porte d\'Italia', 'De Amicis, Edmondo', '2015-06-01', 18, 'https://www.gutenberg.org/ebooks/49105', 'it', 1896), +(46919, 'Early Letters of George Wm. Curtis to John S. Dwight; Brook Farm and Concord', 'Curtis, George William', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8222', 'en', 12253), +(46920, 'The inventions, researches and writings of Nikola Tesla\r\nWith special reference to his work in polyphase currents and high potential lighting', 'Martin, Thomas Commerford', '2012-03-26', 194, 'https://www.gutenberg.org/ebooks/39272', 'en', 10977), +(46921, 'Young Folks\' Library, Volume XI (of 20)\nWonders of Earth, Sea and Sky', NULL, '2005-05-23', 63, 'https://www.gutenberg.org/ebooks/15884', 'en', 4329), +(46922, 'Love Letters of Nathaniel Hawthorne, Volume 2 (of 2)', 'Hawthorne, Nathaniel', '2012-11-15', 28, 'https://www.gutenberg.org/ebooks/41368', 'en', 16297), +(46923, 'The Grafters', 'Lynde, Francis', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11418', 'en', 10334); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(46924, 'Nuori mylläri: 4-näytöksinen huvinäytelmä', 'Lassila, Maiju', '2005-02-07', 18, 'https://www.gutenberg.org/ebooks/14956', 'fi', 382), +(46925, 'The Kitchen Encyclopedia\nTwelfth Edition (Swift & Company)', 'Anonymous', '2010-09-17', 143, 'https://www.gutenberg.org/ebooks/33748', 'en', 3407), +(46926, 'Santa Fe Sketch Book: History and Sketches of the City Different', 'Ewen, Lewis Edward', '2019-04-30', 15, 'https://www.gutenberg.org/ebooks/59397', 'en', 16298), +(46927, 'The Jews among the Greeks and Romans', 'Radin, Max', '2018-11-06', 27, 'https://www.gutenberg.org/ebooks/58245', 'en', 16299), +(46928, 'Pietari Schlemihl\'in eriskummalliset elämänvaiheet', 'Chamisso, Adelbert von', '2011-07-24', 13, 'https://www.gutenberg.org/ebooks/36834', 'fi', 1141), +(46929, 'Manners and Rules of Good Society; or, Solecisms to be Avoided', 'Anonymous', '2012-03-03', 31, 'https://www.gutenberg.org/ebooks/39040', 'en', 16300), +(46930, 'Argentina and Her People of To-day\r\nAn account of the customs, characteristics, amusements, history and advancement of the Argentinians, and the development and resources of their country', 'Winter, Nevin O. (Nevin Otto)', '2019-07-28', 472, 'https://www.gutenberg.org/ebooks/59999', 'en', 14493), +(46931, 'We Three', 'Morris, Gouverneur', '2007-06-21', 18, 'https://www.gutenberg.org/ebooks/21883', 'en', 705), +(46932, 'Met een der stoomers van de Maatschappij Nederland naar Genua\nDe Aarde en haar Volken, 1908', 'Craandijk, J.', '2007-03-31', 8, 'https://www.gutenberg.org/ebooks/20951', 'nl', 16301), +(46933, 'Grimm testvérek összegyüjtött meséi', 'Grimm, Wilhelm', '2012-06-26', 19, 'https://www.gutenberg.org/ebooks/40088', 'hu', 16302), +(46934, 'Alhambra', 'Irving, Washington', '2011-12-03', 9, 'https://www.gutenberg.org/ebooks/38192', 'fi', 3284), +(46935, 'The Blue Rose Fairy Book', 'Baring, Maurice', '2011-05-01', 37, 'https://www.gutenberg.org/ebooks/36008', 'en', 1007), +(46936, 'Tales of a Poultry Farm', 'Pierson, Clara Dillingham', '2013-02-02', 24, 'https://www.gutenberg.org/ebooks/41966', 'en', 2672), +(46937, 'A Little Book of Filipino Riddles', NULL, '2004-12-15', 46, 'https://www.gutenberg.org/ebooks/14358', 'en', 16303), +(46938, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 8, De Los Pleitos de Colón, II', NULL, '2018-10-11', 18, 'https://www.gutenberg.org/ebooks/58077', 'es', 4786), +(46939, 'The Days of Chivalry; Or, The Legend of Croquemitaine', 'Quatrelles', '2013-12-14', 21, 'https://www.gutenberg.org/ebooks/44428', 'en', 385), +(46940, 'Mediæval London, Volume 1: Historical & Social', 'Besant, Walter', '2018-08-29', 18, 'https://www.gutenberg.org/ebooks/57803', 'en', 16304), +(46941, 'The Divine Right of Church Government\r\nWherein it is proved that the Presbyterian government, by preaching and ruling elders, in sessional, Presbyterial and synodical assemblies, may lay the only lawful claim to a divine right, according to the Holy Scriptures', NULL, '2004-11-03', 36, 'https://www.gutenberg.org/ebooks/13941', 'en', 16305), +(46942, 'Harper\'s Young People, January 6, 1880\nAn Illustrated Weekly', 'Various', '2009-03-10', 15, 'https://www.gutenberg.org/ebooks/28300', 'en', 479), +(46943, 'Mankind in the Making', 'Wells, H. G. (Herbert George)', '2004-12-01', 55, 'https://www.gutenberg.org/ebooks/7058', 'en', 1072), +(46944, 'Œuvres de Napoléon Bonaparte, Tome III.', 'Napoleon I, Emperor of the French', '2004-07-12', 19, 'https://www.gutenberg.org/ebooks/12893', 'fr', 1943), +(46945, 'The Life of George Washington, Vol. 5\r\nCommander in Chief of the American Forces During the War\r\nwhich Established the Independence of his Country and First\r\nPresident of the United States', 'Marshall, John', '2006-06-15', 32, 'https://www.gutenberg.org/ebooks/18595', 'en', 7558), +(46946, 'The Shadow Line: A Confession', 'Conrad, Joseph', '2006-01-09', 155, 'https://www.gutenberg.org/ebooks/451', 'en', 324), +(46947, 'The 2007 CIA World Factbook', 'United States. Central Intelligence Agency', '2008-11-28', 21, 'https://www.gutenberg.org/ebooks/27348', 'en', 1407), +(46948, 'Storia degli Italiani (vol 1 di 15)', 'Cantù, Cesare', '2015-06-30', 12, 'https://www.gutenberg.org/ebooks/49337', 'it', 6107), +(46949, 'The Bible, King James version, Book 10: 2 Samuel', 'Anonymous', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/8010', 'en', 12841), +(46950, 'The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose\r\nAdi Parva', NULL, '2005-04-01', 363, 'https://www.gutenberg.org/ebooks/7864', 'en', 1804), +(46951, 'The Guardsman', 'Greene, Homer', '2017-10-18', 12, 'https://www.gutenberg.org/ebooks/55768', 'en', 6370), +(46952, 'Morals and Dogma of the Ancient and Accepted Scottish Rite of Freemasonry', 'Pike, Albert', '2006-10-03', 312, 'https://www.gutenberg.org/ebooks/19447', 'en', 16306), +(46953, 'Punch or the London Charivari, Vol. 109, August 31, 1895', 'Various', '2014-02-11', 15, 'https://www.gutenberg.org/ebooks/44870', 'en', 134), +(46954, 'Harper\'s Round Table, March 24, 1896', 'Various', '2018-02-17', 1, 'https://www.gutenberg.org/ebooks/56589', 'en', 668), +(46955, 'The Will to Power: An Attempted Transvaluation of All Values. Book III and IV', 'Nietzsche, Friedrich Wilhelm', '2016-08-28', 131, 'https://www.gutenberg.org/ebooks/52915', 'en', 16307), +(46956, 'Punch, or the London Charivari, Volume 105, November 18, 1893', 'Various', '2012-04-11', 19, 'https://www.gutenberg.org/ebooks/39424', 'en', 134), +(46957, 'Daring and Suffering: A History of the Great Railroad Adventure', 'Pittenger, William', '2007-02-02', 45, 'https://www.gutenberg.org/ebooks/20509', 'en', 2723), +(46958, 'True Detective Stories from the Archives of the Pinkertons', 'Moffett, Cleveland', '2010-10-15', 42, 'https://www.gutenberg.org/ebooks/33922', 'en', 5319), +(46959, 'The Billiard Room Mystery', 'Flynn, Brian', '2018-12-05', 43, 'https://www.gutenberg.org/ebooks/58413', 'en', 128), +(46960, 'The Americans In The South Seas\n1901', 'Becke, Louis', '2008-04-05', 14, 'https://www.gutenberg.org/ebooks/24995', 'en', 20), +(46961, 'Patty\'s Friends', 'Wells, Carolyn', '2008-06-20', 37, 'https://www.gutenberg.org/ebooks/25847', 'en', 8225), +(46962, 'Varavallesmannina: Kuvia Perä-Pohjolasta', 'Kataja, Väinö', '2016-05-22', 7, 'https://www.gutenberg.org/ebooks/52129', 'fi', 175), +(46963, 'Holiday Romance', 'Dickens, Charles', '1997-02-01', 199, 'https://www.gutenberg.org/ebooks/809', 'en', 10673), +(46964, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 22: to London', 'Casanova, Giacomo', '2004-12-12', 11, 'https://www.gutenberg.org/ebooks/2972', 'en', 4164), +(46965, 'Getting Acquainted with the Trees', 'McFarland, J. Horace (John Horace)', '2009-05-12', 33, 'https://www.gutenberg.org/ebooks/28764', 'en', 7267), +(46966, 'Travels Through the Interior Parts of North America, in the Years 1766, 1767 and 1768', 'Carver, Jonathan', '2015-08-21', 27, 'https://www.gutenberg.org/ebooks/49753', 'en', 16308), +(46967, 'Probabilities : An aid to Faith', 'Tupper, Martin Farquhar', '2005-10-13', 8, 'https://www.gutenberg.org/ebooks/16857', 'en', 4608), +(46968, 'Chiaroscuro: Vertellingen tusschen licht en donker', 'Nievelt, Carel van', '2010-03-15', 8, 'https://www.gutenberg.org/ebooks/31649', 'nl', 61), +(46969, 'Life on the Mississippi, Part 4.', 'Twain, Mark', '2004-07-09', 20, 'https://www.gutenberg.org/ebooks/8474', 'en', 5482), +(46970, 'A Daughter of the Sioux: A Tale of the Indian frontier', 'King, Charles', '2006-08-10', 68, 'https://www.gutenberg.org/ebooks/19023', 'en', 1129), +(46971, 'La Tierra de Todos', 'Blasco Ibáñez, Vicente', '2004-09-24', 28, 'https://www.gutenberg.org/ebooks/13519', 'es', 1696), +(46972, 'Tom Swift and The Visitor from Planet X', 'Appleton, Victor, II', '2006-03-14', 107, 'https://www.gutenberg.org/ebooks/17985', 'en', 3599), +(46973, 'The Forest of Mystery', 'Foster, James H.', '2013-07-21', 14, 'https://www.gutenberg.org/ebooks/43269', 'en', 323), +(46974, 'Pericla Navarchi Magonis; sive, Expeditio Phoenicia Annis Ante Christum Mille', 'Cahun, David-Léon', '2015-04-11', 27, 'https://www.gutenberg.org/ebooks/48681', 'la', 9937), +(46975, 'Cornish Worthies: Sketches of Some Eminent Cornish Men and Families, Volume 1 (of 2)', 'Tregellas, Walter H. (Walter Hawken)', '2014-08-09', 22, 'https://www.gutenberg.org/ebooks/46529', 'en', 5779), +(46976, 'Critical, Historical, and Miscellaneous Essays; Vol. 2\r\nWith a Memoir and Index', 'Macaulay, Thomas Babington Macaulay, Baron', '2017-11-06', 10, 'https://www.gutenberg.org/ebooks/55902', 'en', 1694), +(46977, 'A Revolução Portugueza: O 31 de Janeiro (Porto 1891)', 'Abreu, Francisco Jorge de', '2009-07-22', 44, 'https://www.gutenberg.org/ebooks/29484', 'pt', 16309), +(46978, 'The Surprising Adventures of the Magical Monarch of Mo and His People', 'Baum, L. Frank (Lyman Frank)', '2005-07-10', 59, 'https://www.gutenberg.org/ebooks/16259', 'en', 2203), +(46979, 'Farm Engines and How to Run Them: The Young Engineer\'s Guide', 'Stephenson, James H.', '2013-10-02', 38, 'https://www.gutenberg.org/ebooks/43867', 'en', 16310), +(46980, 'History of Woman Suffrage, Volume III', NULL, '2009-04-11', 48, 'https://www.gutenberg.org/ebooks/28556', 'en', 7165), +(46981, 'Sister Dolorosa, and Posthumous Fame', 'Allen, James Lane', '2010-10-20', 9, 'https://www.gutenberg.org/ebooks/34109', 'en', 3008), +(46982, 'The History of England in Three Volumes, Vol. I., Part A.\r\nFrom the Britons of Early Times to King John', 'Hume, David', '2006-09-08', 74, 'https://www.gutenberg.org/ebooks/19211', 'en', 1953), +(46983, 'The Expositor\'s Bible: The Book of Proverbs', 'Horton, Robert F. (Robert Forman)', '2013-02-25', 35, 'https://www.gutenberg.org/ebooks/42189', 'en', 16311), +(46984, 'The Epistle of Paul the Apostle to the Colossians', NULL, '2007-10-01', 1, 'https://www.gutenberg.org/ebooks/22850', 'en', 14389), +(46985, 'From Peking to Mandalay\nA Journey from North China to Burma through Tibetan Ssuch\'uan and Yunnan', 'Johnston, Reginald Fleming, Sir', '2015-07-31', 41, 'https://www.gutenberg.org/ebooks/49561', 'en', 2773), +(46986, 'An Essay on the History of Civil Society, Eighth Edition', 'Ferguson, Adam', '2005-08-01', 30, 'https://www.gutenberg.org/ebooks/8646', 'en', 16312), +(46987, 'Calvary Alley', 'Rice, Alice Caldwell Hegan', '2006-01-01', 15, 'https://www.gutenberg.org/ebooks/9794', 'en', 1996), +(46988, '星槎勝覽', 'Fei, Xin', '2007-12-23', 11, 'https://www.gutenberg.org/ebooks/23982', 'zh', 5954), +(46989, 'Consequences', 'Delafield, E. M.', '2011-01-12', 41, 'https://www.gutenberg.org/ebooks/34935', 'en', 348), +(46990, 'The Spell of the Yukon and Other Verses', 'Service, Robert W. (Robert William)', '1995-01-01', 166, 'https://www.gutenberg.org/ebooks/207', 'en', 11964), +(46991, 'The Devolutionist and the Emancipatrix', 'Flint, Homer Eon', '2004-06-01', 28, 'https://www.gutenberg.org/ebooks/5965', 'en', 1564), +(46992, 'The Problem of Cell 13', 'Futrelle, Jacques', '2018-08-11', 73, 'https://www.gutenberg.org/ebooks/57669', 'en', 7375), +(46993, 'In the Hands of the Malays, and Other Stories', 'Henty, G. A. (George Alfred)', '2012-05-04', 24, 'https://www.gutenberg.org/ebooks/39616', 'en', 323), +(46994, '近思錄', 'Lü, Zuqian', '2008-04-30', 28, 'https://www.gutenberg.org/ebooks/25249', 'zh', 1078), +(46995, 'Celtic Literature', 'Arnold, Matthew', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/5159', 'en', 16313), +(46996, 'Cleopatra', 'Abbott, Jacob', '2004-02-01', 301, 'https://www.gutenberg.org/ebooks/10992', 'en', 12453), +(46997, 'War-Time Breads and Cakes', 'Handy, Amy L. (Amy Littlefield)', '2019-01-05', 33, 'https://www.gutenberg.org/ebooks/58621', 'en', 16314), +(46998, 'U.S. Copyright Renewals, 1969 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11840', 'en', 4170), +(46999, 'The History of Battery H First Regiment Rhode Island Light Artillery in the War to Preserve the Union 1861-1865', 'Fenner, Earl', '2019-01-13', 1, 'https://www.gutenberg.org/ebooks/58681', 'en', 16315), +(47000, 'Atom Mystery [Young Atom Detective]', 'Coombs, Charles Ira', '2016-10-13', 8, 'https://www.gutenberg.org/ebooks/53269', 'en', 16316), +(47001, 'Over the Pass', 'Palmer, Frederick', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/10932', 'en', 2190), +(47002, 'Moralens utveckling\nFri bearbetning efter Ch. Letourneau: \"L\'évolution de la morale\"', 'Letourneau, Ch. (Charles)', '2019-06-14', 6, 'https://www.gutenberg.org/ebooks/59753', 'sv', 12846), +(47003, 'A Cluster of Grapes\nA Book of Twentieth Century Poetry', NULL, '2007-05-31', 13, 'https://www.gutenberg.org/ebooks/21649', 'en', 1594), +(47004, 'A Roving Commission; Or, Through the Black Insurrection at Hayti', 'Henty, G. A. (George Alfred)', '2012-02-04', 45, 'https://www.gutenberg.org/ebooks/38764', 'en', 195), +(47005, 'A Distinguished Provincial at Paris', 'Balzac, Honoré de', '2004-08-11', 23, 'https://www.gutenberg.org/ebooks/1559', 'en', 607), +(47006, 'The Rise of the Dutch Republic — Volume 16: 1569-70', 'Motley, John Lothrop', '2004-01-01', 40, 'https://www.gutenberg.org/ebooks/4817', 'en', 3372), +(47007, 'Her Majesty\'s Mails\nAn Historical and Descriptive Account of the British Post-Office', 'Lewins, William', '2013-02-18', 8, 'https://www.gutenberg.org/ebooks/42129', 'en', 12447), +(47008, 'The Vertical City', 'Hurst, Fannie', '2004-06-01', 37, 'https://www.gutenberg.org/ebooks/12659', 'en', 557), +(47009, 'Ekkehard: A Tale of the Tenth Century. Vol. 2 (of 2)', 'Scheffel, Joseph Victor von', '2011-04-13', 50, 'https://www.gutenberg.org/ebooks/35847', 'en', 16317), +(47010, 'Too Rich: A Romance', 'Streckfuss, Adolf', '2011-01-17', 68, 'https://www.gutenberg.org/ebooks/34995', 'en', 803), +(47011, 'Heldensagen en Legenden van de Serviërs', 'Petrovitch, Woislav M.', '2006-05-10', 23, 'https://www.gutenberg.org/ebooks/18363', 'nl', 14202), +(47012, 'The Railway Builders: A Chronicle of Overland Highways', 'Skelton, Oscar D. (Oscar Douglas)', '2009-11-20', 19, 'https://www.gutenberg.org/ebooks/30509', 'en', 16318), +(47013, 'Sketches of Young Gentlemen', 'Dickens, Charles', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9734', 'en', 3136), +(47014, 'Naakt model: Toneelspel in drie bedrijven', 'Adama van Scheltema, Carel Steven', '2015-03-05', 39, 'https://www.gutenberg.org/ebooks/48413', 'nl', 7450), +(47015, 'Dead Man\'s Land\r\nBeing the Voyage to Zimbambangwe of certain and uncertain blacks and whites', 'Fenn, George Manville', '2007-12-19', 19, 'https://www.gutenberg.org/ebooks/23922', 'en', 611), +(47016, 'Quotes and Images: An Index of the Project Gutenberg Collection of Quotes and Images', 'Various', '2009-07-16', 15, 'https://www.gutenberg.org/ebooks/29424', 'en', 198), +(47017, 'The Lazy Minstrel', 'Ashby-Sterry, J. (Joseph)', '2013-06-11', 9, 'https://www.gutenberg.org/ebooks/42915', 'en', 532), +(47018, 'Aikakone', 'Wells, H. G. (Herbert George)', '2014-08-15', 17, 'https://www.gutenberg.org/ebooks/46589', 'fi', 509), +(47019, 'Philosophies', 'Ross, Ronald, Sir', '2017-06-08', 5, 'https://www.gutenberg.org/ebooks/54870', 'en', 8), +(47020, 'The Border Boys Across the Frontier', 'Goldfrap, John Henry', '2006-08-19', 16, 'https://www.gutenberg.org/ebooks/19083', 'en', 4365), +(47021, 'Pilven hattaroita II\nPieniä kyhäelmiä', 'Kurikka, Matti', '2006-03-05', 39, 'https://www.gutenberg.org/ebooks/17925', 'fi', 61), +(47022, 'Georgian Poetry 1913-15', NULL, '2005-12-01', 21, 'https://www.gutenberg.org/ebooks/9506', 'en', 1594), +(47023, 'Light-Fingered Gentry', 'Phillips, David Graham', '2015-03-31', 13, 'https://www.gutenberg.org/ebooks/48621', 'en', 15440), +(47024, 'Time Crime', 'Piper, H. Beam', '2006-04-11', 66, 'https://www.gutenberg.org/ebooks/18151', 'en', 26), +(47025, 'A Japanese Boy', 'Shiukichi, Shigemi', '2011-02-12', 25, 'https://www.gutenberg.org/ebooks/35249', 'en', 16319), +(47026, 'Two Arrows: A Story of Red and White', 'Stoddard, William O.', '2009-08-05', 7, 'https://www.gutenberg.org/ebooks/29616', 'en', 1357), +(47027, 'Ethics', 'Spinoza, Benedictus de', '2003-02-01', 818, 'https://www.gutenberg.org/ebooks/3800', 'en', 680), +(47028, 'The Vision of Sir Launfal\r\nAnd Other Poems by James Russell Lowell; With a Biographical Sketch and Notes, a Portrait and Other Illustrations', 'Lowell, James Russell', '2005-11-20', 16, 'https://www.gutenberg.org/ebooks/17119', 'en', 178), +(47029, 'Harper\'s Young People, May 17, 1881\nAn Illustrated Weekly', 'Various', '2014-12-15', 10, 'https://www.gutenberg.org/ebooks/47669', 'en', 479), +(47030, 'Famous Tales of Fact and Fancy\nMyths and Legends of the Nations of the World Retold for Boys and Girls', NULL, '2008-03-28', 21, 'https://www.gutenberg.org/ebooks/24935', 'en', 630), +(47031, 'Le maccheronee\nZanitonella - Baldus - Moscheide - Epigrammata', 'Folengo, Teofilo', '2010-09-22', 22, 'https://www.gutenberg.org/ebooks/33982', 'it', 16320), +(47032, 'War Game', 'Walton, Bryce', '2019-06-06', 129, 'https://www.gutenberg.org/ebooks/59561', 'en', 26), +(47033, 'The Tree of Life', 'Moore, C. L. (Catherine Lucile)', '2010-06-17', 62, 'https://www.gutenberg.org/ebooks/32850', 'en', 26), +(47034, 'Sketches of Persia', 'Malcolm, John', '2016-05-29', 12, 'https://www.gutenberg.org/ebooks/52189', 'en', 4925), +(47035, 'The Art of Living in Australia\r\nTogether with Three Hundred Australian Cookery Recipes and Accessory Kitchen Information by Mrs. H. Wicken', 'Muskett, Philip E.', '2003-07-01', 46, 'https://www.gutenberg.org/ebooks/4219', 'en', 295), +(47036, 'The Capgras Shift', 'Vaknin, Samuel', '2008-01-02', 12, 'https://www.gutenberg.org/ebooks/24109', 'en', 1061), +(47037, 'Historic Waterways—Six Hundred Miles of Canoeing Down the Rock, Fox, and Wisconsin Rivers', 'Thwaites, Reuben Gold', '2012-01-12', 35, 'https://www.gutenberg.org/ebooks/38556', 'en', 16321), +(47038, 'Lira Póstuma\nObras Completas Vol. XXI', 'Darío, Rubén', '2017-01-02', 12, 'https://www.gutenberg.org/ebooks/53867', 'es', 3817), +(47039, 'Daddy\'s Bedtime Bird Stories', 'Bonner, Mary Graham', '2012-04-19', 30, 'https://www.gutenberg.org/ebooks/39484', 'en', 1602), +(47040, 'After Icebergs with a Painter\nA Summer Voyage to Labrador and Around Newfoundland.', 'Noble, Louis Legrand', '2018-02-08', 6, 'https://www.gutenberg.org/ebooks/56529', 'en', 16322), +(47041, 'Storia d\'Italia dal 1789 al 1814, tomo II', 'Botta, Carlo', '2014-06-06', 16, 'https://www.gutenberg.org/ebooks/45902', 'it', 7184), +(47042, 'Becket and other plays', 'Tennyson, Alfred Tennyson, Baron', '2005-10-01', 35, 'https://www.gutenberg.org/ebooks/9162', 'en', 402), +(47043, 'Mr. Punch\'s Irish Humour in Picture and Story', NULL, '2015-02-12', 21, 'https://www.gutenberg.org/ebooks/48245', 'en', 564), +(47044, 'English Men of Letters: Coleridge', 'Traill, H. D. (Henry Duff)', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6916', 'en', 6953), +(47045, 'La capitaine', 'Chevalier, H. Emile (Henri Emile)', '2006-06-08', 16, 'https://www.gutenberg.org/ebooks/18535', 'fr', 16323), +(47046, 'Cours familier de Littérature - Volume 23', 'Lamartine, Alphonse de', '2015-07-08', 7, 'https://www.gutenberg.org/ebooks/49397', 'fr', 920), +(47047, 'Science and Health, with Key to the Scriptures', 'Eddy, Mary Baker', '2002-10-01', 93, 'https://www.gutenberg.org/ebooks/3458', 'en', 1206), +(47048, 'History of the United States, Volume 3', 'Andrews, Elisha Benjamin', '2007-12-05', 23, 'https://www.gutenberg.org/ebooks/23748', 'en', 207), +(47049, 'What Dreams May Come', 'Atherton, Gertrude Franklin Horn', '2004-07-06', 33, 'https://www.gutenberg.org/ebooks/12833', 'en', 16324), +(47050, 'No Hiding Place', 'Smith, Richard Rein', '2009-06-29', 25, 'https://www.gutenberg.org/ebooks/29272', 'en', 179), +(47051, 'A Queen of Tears, vol. 1 of 2\r\nCaroline Matilda, Queen of Denmark and Norway and Princess of Great Britain and Ireland', 'Wilkins, W. H. (William Henry)', '2016-03-05', 4, 'https://www.gutenberg.org/ebooks/51368', 'en', 4409), +(47052, 'Jean-Christophe VIII\nYstävättäriä', 'Rolland, Romain', '2019-03-21', 6, 'https://www.gutenberg.org/ebooks/59105', 'fi', 1061), +(47053, 'Patroon van Volkenberg\nA tale of old Manhattan in the year sixteen hundred & ninety-nine', 'Stephenson, Henry Thew', '2018-04-12', 1, 'https://www.gutenberg.org/ebooks/56971', 'en', 16325), +(47054, 'Études sur l\'Islam et les tribus Maures: Les Brakna', 'Marty, Paul', '2013-12-22', 13, 'https://www.gutenberg.org/ebooks/44488', 'fr', 16326), +(47055, 'Ruth Hall: A Domestic Tale of the Present Time', 'Fern, Fanny', '2012-09-22', 54, 'https://www.gutenberg.org/ebooks/40814', 'en', 378), +(47056, 'Marie Antoinette and the Downfall of Royalty', 'Imbert de Saint-Amand', '2010-05-18', 74, 'https://www.gutenberg.org/ebooks/32408', 'en', 1536), +(47057, 'Harper\'s Round Table, November 17, 1896', 'Various', '2019-07-18', 50, 'https://www.gutenberg.org/ebooks/59939', 'en', 668), +(47058, 'The Butterfly\'s Ball and the Grasshopper\'s Feast', 'Ballantyne, R. M. (Robert Michael)', '2007-06-13', 23, 'https://www.gutenberg.org/ebooks/21823', 'en', 625), +(47059, 'Les esclaves de Paris', 'Gaboriau, Emile', '2011-07-29', 12, 'https://www.gutenberg.org/ebooks/36894', 'fr', 560), +(47060, 'Star-Spangled Banner', 'McGuinn, Roger', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10758', 'en', 2941), +(47061, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 20. December, 1877.', 'Various', '2011-11-07', 18, 'https://www.gutenberg.org/ebooks/37946', 'en', 162), +(47062, 'Royal English Bookbindings', 'Davenport, Cyril', '2012-06-18', 17, 'https://www.gutenberg.org/ebooks/40028', 'en', 16327), +(47063, 'A Hundred and Sixty Books by Washington Authors\r\nSome Other Writers Who are Contributors to Periodical Literature; Lines Worth Knowing by Heart', NULL, '2011-11-25', 7, 'https://www.gutenberg.org/ebooks/38132', 'en', 16328), +(47064, 'Mr. Sweet Potatoes, and Other Stories', 'Anonymous', '2014-05-26', 18, 'https://www.gutenberg.org/ebooks/45768', 'en', 1063), +(47065, 'Elements of Civil Government\r\nA Text-Book for Use in Public Schools, High Schools and Normal Schools and a Manual of Reference for Teachers', 'Peterman, Alexander L.', '2005-02-12', 42, 'https://www.gutenberg.org/ebooks/15018', 'en', 16329), +(47066, 'Geschichte der Medizin. I. Band', 'Neuburger, Max', '2019-04-21', 10, 'https://www.gutenberg.org/ebooks/59337', 'de', 8175), +(47067, 'Secrets of the Woods', 'Long, William J. (William Joseph)', '1999-09-01', 142, 'https://www.gutenberg.org/ebooks/1901', 'en', 2271), +(47068, 'The Old-Fashioned Fairy Book', 'Harrison, Burton, Mrs.', '2011-09-08', 29, 'https://www.gutenberg.org/ebooks/37348', 'en', 1007), +(47069, 'Notable Events of the Nineteenth Century\nGreat Deeds of Men and Nations and the Progress of the World', NULL, '2005-05-14', 16, 'https://www.gutenberg.org/ebooks/15824', 'en', 16330), +(47070, 'Boy Scouts: Tenderfoot Squad; or, Camping at Raccoon Lodge', 'Douglas, Alan, Captain', '2011-12-14', 9, 'https://www.gutenberg.org/ebooks/38300', 'en', 3), +(47071, 'Samoafahrten', 'Finsch, O. (Otto)', '2017-03-25', 8, 'https://www.gutenberg.org/ebooks/54428', 'de', 16331), +(47072, 'Gilbert Keith Chesterton', 'Ward, Maisie', '2006-06-28', 68, 'https://www.gutenberg.org/ebooks/18707', 'en', 5934), +(47073, 'Coal and Candlelight, and Other Verses', 'Eden, Helen Parry', '2014-12-28', 8, 'https://www.gutenberg.org/ebooks/47803', 'en', 2100), +(47074, 'The Shadow Line', 'Conrad, Joseph', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9350', 'en', 324), +(47075, 'Charles Sumner: his complete works, volume 07 (of 20)', 'Sumner, Charles', '2015-01-25', 16, 'https://www.gutenberg.org/ebooks/48077', 'en', 125), +(47076, 'The Last Penny', 'Lefevre, Edwin', '2016-05-02', 12, 'https://www.gutenberg.org/ebooks/51966', 'en', 1351), +(47077, 'The World English Bible (WEB): 2 Timothy', 'Anonymous', '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/8282', 'en', 5687), +(47078, 'Hydriatic treatment of Scarlet Fever in its Different Forms', 'Munde, Charles', '2008-07-09', 15, 'https://www.gutenberg.org/ebooks/26008', 'en', 16332), +(47079, 'L\'Avare', 'Molière', '2004-08-01', 92, 'https://www.gutenberg.org/ebooks/6318', 'fr', 16333), +(47080, 'The Marryers: A History Gathered from a Brief of the Honorable Socrates Potter', 'Bacheller, Irving', '2015-09-30', 9, 'https://www.gutenberg.org/ebooks/50088', 'en', 757), +(47081, 'The Boy Allies with the Cossacks; Or, A Wild Dash over the Carpathians', 'Hayes, Clair W. (Clair Wallace)', '2010-01-13', 15, 'https://www.gutenberg.org/ebooks/30951', 'en', 16334), +(47082, 'Mr. Turtle\'s Flying Adventure\r\nHollow Tree Stories', 'Paine, Albert Bigelow', '2009-02-25', 28, 'https://www.gutenberg.org/ebooks/28192', 'en', 625), +(47083, 'Eminent Authors of the Nineteenth Century: Literary Portraits', 'Brandes, Georg', '2015-09-17', 24, 'https://www.gutenberg.org/ebooks/49999', 'en', 536), +(47084, 'Como e porque sou romancista', 'Alencar, José Martiniano de', '2009-06-05', 29, 'https://www.gutenberg.org/ebooks/29040', 'pt', 16335), +(47085, 'Cours de philosophie positive. (3/6)', 'Comte, Auguste', '2010-04-04', 21, 'https://www.gutenberg.org/ebooks/31883', 'fr', 3926), +(47086, 'The Nightingale, the Valkyrie and Raven, and Other Ballads', NULL, '2008-10-07', 10, 'https://www.gutenberg.org/ebooks/26834', 'en', 54), +(47087, 'The Clockmaker; Or, the Sayings and Doings of Samuel Slick, of Slickville', 'Haliburton, Thomas Chandler', '2005-10-01', 28, 'https://www.gutenberg.org/ebooks/9196', 'en', 15120), +(47088, 'The Old Woman Who Lived in a Shoe; Or, There\'s No Place Like Home', 'Douglas, Amanda M.', '2013-09-06', 17, 'https://www.gutenberg.org/ebooks/43659', 'en', 195), +(47089, 'Helkavirsiä I-II', 'Leino, Eino', '2004-08-07', 35, 'https://www.gutenberg.org/ebooks/13129', 'fi', 1171), +(47090, 'Adventures and Letters of Richard Harding Davis', 'Davis, Richard Harding', '1996-01-01', 98, 'https://www.gutenberg.org/ebooks/405', 'en', 7344), +(47091, 'Thoughts on religion at the front', 'Talbot, N. S. (Neville Stuart)', '2006-10-01', 8, 'https://www.gutenberg.org/ebooks/19413', 'en', 8992), +(47092, 'Domestic Pleasures, or, the Happy Fire-side', 'Vaux, Frances Bowyer', '2005-04-01', 6, 'https://www.gutenberg.org/ebooks/7830', 'en', 4424), +(47093, 'Oakdale Boys in Camp', 'Scott, Morgan', '2015-07-05', 17, 'https://www.gutenberg.org/ebooks/49363', 'en', 557), +(47094, 'The Bible, King James version, Book 44: Acts', 'Anonymous', '2005-04-01', 24, 'https://www.gutenberg.org/ebooks/8044', 'en', 5995), +(47095, 'A Review of Hoffman\'s Race Traits and Tendencies of the American Negro\nThe American Negro Academy. Occasional Papers No. 1', 'Miller, Kelly', '2010-02-15', 13, 'https://www.gutenberg.org/ebooks/31279', 'en', 16336), +(47096, 'Journal d\'un voyageur pendant la guerre', 'Sand, George', '2006-01-23', 23, 'https://www.gutenberg.org/ebooks/17589', 'fr', 4782), +(47097, 'O Renegado a António Rodrigues Sampaio\r\ncarta ao Velho Pamphletario sobre a perseguição da imprensa', 'Leal, António Duarte Gomes', '2009-03-18', 7, 'https://www.gutenberg.org/ebooks/28354', 'pt', 8), +(47098, 'Novena sa Maloualhating Ama,t, Doctor at Ilao nang Santa Iglesia na si San Agustin', 'Serrano, Juan', '2004-11-01', 7, 'https://www.gutenberg.org/ebooks/13915', 'tl', 16130), +(47099, 'Noble Deeds of the World\'s Heroines', 'Moore, Henry Charles', '2009-07-01', 10, 'https://www.gutenberg.org/ebooks/29286', 'en', 16337), +(47100, 'The Mischief-Maker', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-09-01', 15, 'https://www.gutenberg.org/ebooks/8878', 'en', 128), +(47101, 'Kaspar Zinglerin sydän', 'Sick, Ingeborg Maria', '2016-07-07', 1, 'https://www.gutenberg.org/ebooks/52519', 'fi', 2631), +(47102, 'Early American Plays, 1714-1830\r\nA Compilation of the Titles of Plays and Dramatic Poems Written by Authors Born in or Residing in North America Previous to 1830', 'Wegelin, Oscar', '2012-05-28', 14, 'https://www.gutenberg.org/ebooks/39828', 'en', 16338), +(47103, 'A Fair Mystery: The Story of a Coquette', 'Brame, Charlotte M.', '2013-01-27', 10, 'https://www.gutenberg.org/ebooks/41932', 'en', 61), +(47104, 'The Boy Travellers in the Far East [Part First]\r\nAdventures of Two Youths in a Journey to Japan and China', 'Knox, Thomas Wallace', '2018-04-15', 45, 'https://www.gutenberg.org/ebooks/56985', 'en', 16339), +(47105, 'Famous Affinities of History: The Romance of Devotion. Volume 1', 'Orr, Lyndon', '2003-11-01', 79, 'https://www.gutenberg.org/ebooks/4689', 'en', 5136), +(47106, 'Antar: A Bedoueen Romance', NULL, '2018-09-06', 10, 'https://www.gutenberg.org/ebooks/57857', 'en', 16340), +(47107, 'Old Fogy: His Musical Opinions and Grotesques', 'Huneker, James', '2006-12-19', 19, 'https://www.gutenberg.org/ebooks/20139', 'en', 16341), +(47108, 'Harper\'s Young People, June 6, 1882\nAn Illustrated Weekly', 'Various', '2018-10-04', 0, 'https://www.gutenberg.org/ebooks/58023', 'en', 479), +(47109, 'Outline Studies in the Old Testament for Bible Teachers', 'Hurlbut, Jesse Lyman', '2012-02-29', 19, 'https://www.gutenberg.org/ebooks/39014', 'en', 945), +(47110, 'The Plébiscite; or, A Miller\'s Story of the War\r\nBy One of the 7,500,000 Who Voted \"Yes\"', 'Erckmann-Chatrian', '2011-07-26', 10, 'https://www.gutenberg.org/ebooks/36860', 'en', 16342), +(47111, 'A Young Mutineer', 'Meade, L. T.', '2008-02-13', 20, 'https://www.gutenberg.org/ebooks/24599', 'en', 62), +(47112, 'Heikki Helmikangas', 'Sissala, Eero', '2007-03-26', 12, 'https://www.gutenberg.org/ebooks/20905', 'fi', 61), +(47113, 'Les trois mousquetaires, Volume 2 (of 2)', 'Dumas, Alexandre', '2018-10-30', 42, 'https://www.gutenberg.org/ebooks/58211', 'fr', 3391), +(47114, 'Barbara Blomberg — Volume 09', 'Ebers, Georg', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/5569', 'en', 803), +(47115, 'Puulusikka', 'Onkel Adam', '2008-06-02', 8, 'https://www.gutenberg.org/ebooks/25679', 'fi', 2168), +(47116, 'Irish Ecclesiastical Record, Volume 1, May 1865', NULL, '2012-03-21', 0, 'https://www.gutenberg.org/ebooks/39226', 'en', 3437), +(47117, 'Deadwood Dick, the Prince of the Road; or, The Black Rider of the Black Hills', 'Wheeler, Edward L. (Edward Lytton)', '2005-02-04', 32, 'https://www.gutenberg.org/ebooks/14902', 'en', 61), +(47118, 'A Colored Man\'s Reminiscences of James Madison', 'Jennings, Paul', '2018-06-03', 19, 'https://www.gutenberg.org/ebooks/57259', 'en', 16343), +(47119, 'The Letters of Robert Louis Stevenson — Volume 2', 'Stevenson, Robert Louis', '1996-08-01', 66, 'https://www.gutenberg.org/ebooks/637', 'en', 8977), +(47120, 'Higher Education for Women in Great Britain', 'Sheavyn, Phoebe', '2016-01-04', 11, 'https://www.gutenberg.org/ebooks/50840', 'en', 16344), +(47121, 'McIlvaine\'s Star', 'Derleth, August', '2009-10-07', 67, 'https://www.gutenberg.org/ebooks/30199', 'en', 26), +(47122, 'History of the War in Afghanistan, Vol. 1 (of 3)\r\nThird Edition', 'Kaye, John William, Sir', '2015-01-27', 24, 'https://www.gutenberg.org/ebooks/48083', 'en', 3631), +(47123, 'The New England Historical & Genealogical Register, Vol. 1, No. 1, January 1847', 'Various', '2015-06-06', 16, 'https://www.gutenberg.org/ebooks/49151', 'en', 16345), +(47124, 'The Hunting of the Snark: An Agony, in Eight Fits', 'Carroll, Lewis', '2009-09-01', 71, 'https://www.gutenberg.org/ebooks/29888', 'en', 986), +(47125, 'The World English Bible (WEB): Ephesians', 'Anonymous', '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8276', 'en', 7739), +(47126, 'Poems 1918-21, Including Three Portraits and Four Cantos', 'Pound, Ezra', '2016-05-03', 114, 'https://www.gutenberg.org/ebooks/51992', 'en', 8), +(47127, 'The City of Auckland, New Zealand, 1840-1920', 'Barr, John', '2014-09-21', 20, 'https://www.gutenberg.org/ebooks/46925', 'en', 16346), +(47128, 'Aesop\'s Fables - Volume 06', 'Aesop', '2006-10-26', 8, 'https://www.gutenberg.org/ebooks/19621', 'en', 7140), +(47129, 'John Marchmont\'s Legacy, Volume 1 (of 3)', 'Braddon, M. E. (Mary Elizabeth)', '2010-12-01', 5, 'https://www.gutenberg.org/ebooks/34539', 'en', 16347), +(47130, 'Gloucester Moors and Other Poems', 'Moody, William Vaughn', '2009-01-27', 15, 'https://www.gutenberg.org/ebooks/27912', 'en', 178), +(47131, 'Installation and Operation Instructions For Custom Mark III CP Series Oil Fired Unit', 'Anonymous', '2009-02-25', 5, 'https://www.gutenberg.org/ebooks/28166', 'en', 16348), +(47132, 'Chronicles (1 of 6): The Historie of England (8 of 8)\nThe Eight Booke of the Historie of England', 'Holinshed, Raphael', '2005-09-07', 18, 'https://www.gutenberg.org/ebooks/16669', 'en', 16349), +(47133, 'Sea Poems', 'Rice, Cale Young', '2010-04-04', 8, 'https://www.gutenberg.org/ebooks/31877', 'en', 1118), +(47134, 'The Valkyries', 'Benson, E. F. (Edward Frederic)', '2014-06-28', 29, 'https://www.gutenberg.org/ebooks/46119', 'en', 5808), +(47135, 'Jean-Christophe I\r\nSarastus', 'Rolland, Romain', '2019-01-12', 2, 'https://www.gutenberg.org/ebooks/58675', 'fi', 2986), +(47136, 'U.S. Copyright Renewals, 1956 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11814', 'en', 4170), +(47137, 'Woman\'s Life in Colonial Days', 'Holliday, Carl', '2005-03-28', 49, 'https://www.gutenberg.org/ebooks/15488', 'en', 16350), +(47138, 'England', 'Fox, Frank', '2012-02-07', 24, 'https://www.gutenberg.org/ebooks/38790', 'en', 226), +(47139, 'Au soleil de juillet (1829-1830)\nLe temps et la vie', 'Adam, Paul', '2010-08-08', 54, 'https://www.gutenberg.org/ebooks/33378', 'fr', 16351), +(47140, 'The History of Don Quixote, Volume 2, Part 28', 'Cervantes Saavedra, Miguel de', '2004-07-24', 5, 'https://www.gutenberg.org/ebooks/5931', 'en', 3761), +(47141, 'Philippine Folk-Tales', 'Maxfield, Berton L.', '2004-02-01', 43, 'https://www.gutenberg.org/ebooks/11028', 'en', 16352), +(47142, 'Kashmir, described by Sir Francis Younghusband, painted by Major E. Molyneux', 'Younghusband, Francis Edward, Sir', '2012-05-07', 59, 'https://www.gutenberg.org/ebooks/39642', 'en', 1546), +(47143, 'Under the Chinese Dragon: A Tale of Mongolia', 'Brereton, F. S. (Frederick Sadleir)', '2013-01-02', 37, 'https://www.gutenberg.org/ebooks/41758', 'en', 16353), +(47144, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 711, August 11, 1877', 'Various', '2015-07-27', 6, 'https://www.gutenberg.org/ebooks/49535', 'en', 18), +(47145, 'Apron-Strings', 'Gates, Eleanor', '2007-09-29', 8, 'https://www.gutenberg.org/ebooks/22804', 'en', 2586), +(47146, 'Through Space to Mars; Or, the Longest Journey on Record', 'Rockwood, Roy', '2005-08-01', 5, 'https://www.gutenberg.org/ebooks/8612', 'en', 16354), +(47147, 'Peter Cooper', 'Raymond, Rossiter W. (Rossiter Worthington)', '2008-08-31', 4, 'https://www.gutenberg.org/ebooks/26498', 'en', 16355), +(47148, 'The Light of Divine Guidance (Volume 2)', 'Shoghi, Effendi', '2006-09-15', 9, 'https://www.gutenberg.org/ebooks/19245', 'en', 5429), +(47149, 'Socialism and Modern Science (Darwin, Spencer, Marx)', 'Ferri, Enrico', '2006-05-16', 39, 'https://www.gutenberg.org/ebooks/18397', 'en', 1315), +(47150, 'O Bispo: Nova «Heresia», em verso', 'Braga, Guilherme', '2011-01-15', 16, 'https://www.gutenberg.org/ebooks/34961', 'pt', 8), +(47151, 'The Universal Copyright Convention (1988)', 'Coalition for Networked Information', '1995-04-01', 22, 'https://www.gutenberg.org/ebooks/253', 'en', 2983), +(47152, 'The Lake Gun', 'Cooper, James Fenimore', '2000-09-01', 68, 'https://www.gutenberg.org/ebooks/2328', 'en', 16356), +(47153, 'The Evolution of the Dragon', 'Smith, Grafton Elliot', '2007-07-10', 53, 'https://www.gutenberg.org/ebooks/22038', 'en', 16357), +(47154, 'The Lost Parchment: A Detective Story', 'Hume, Fergus', '2017-11-13', 19, 'https://www.gutenberg.org/ebooks/55956', 'en', 128), +(47155, 'The Tragedy of Fotheringay\r\nFounded on the journal of D. Bourgoing, physician to Mary Queen of Scots, and on unpublished ms. documents', 'Maxwell-Scott, Mary Monica', '2017-06-10', 6, 'https://www.gutenberg.org/ebooks/54884', 'en', 13339), +(47156, 'Wilhelm Tell', 'Schiller, Friedrich', '2004-12-08', 43, 'https://www.gutenberg.org/ebooks/6788', 'en', 4640), +(47157, 'The Romance of Dollard', 'Catherwood, Mary Hartwell', '2015-11-09', 7, 'https://www.gutenberg.org/ebooks/50418', 'en', 1972), +(47158, 'The Busted Ex-Texan, and Other Stories', 'Murray, W. H. H. (William Henry Harrison)', '2009-04-05', 20, 'https://www.gutenberg.org/ebooks/28502', 'en', 315), +(47159, 'Our Little Japanese Cousin', 'Wade, Mary Hazelton Blanchard', '2013-09-28', 22, 'https://www.gutenberg.org/ebooks/43833', 'en', 16358), +(47160, 'Salads, Sandwiches and Chafing-Dish Dainties\nWith Fifty Illustrations of Original Dishes', 'Hill, Janet McKenzie', '2006-08-18', 137, 'https://www.gutenberg.org/ebooks/19077', 'en', 2785), +(47161, 'The Gallery of Portraits: with Memoirs. Volume 5 (of 7)', 'Malkin, Arthur Thomas', '2017-08-15', 16, 'https://www.gutenberg.org/ebooks/55358', 'en', 122), +(47162, 'The Sure to Rise Cookery Book\r\nIs Especially Compiled, and Contains Useful, Everyday Recipes, also Cooking Hints', 'T.J. Edmonds Ltd.', '2015-08-15', 124, 'https://www.gutenberg.org/ebooks/49707', 'en', 16359), +(47163, 'Issues in Population and Bioethics', 'Vaknin, Samuel', '2005-07-01', 17, 'https://www.gutenberg.org/ebooks/8420', 'en', 16360), +(47164, 'Lydia of the Pines', 'Morrow, Honoré', '2005-10-04', 10, 'https://www.gutenberg.org/ebooks/16803', 'en', 61), +(47165, 'Outlines of Dairy Bacteriology, 8th edition\nA Concise Manual for the Use of Students in Dairying', 'Russell, H. L. (Harry Luman)', '2009-01-11', 26, 'https://www.gutenberg.org/ebooks/27778', 'en', 3586), +(47166, '搜神後記. Selections. 1985', 'Tao, Qian', '2005-02-01', 11, 'https://www.gutenberg.org/ebooks/7468', 'zh', 9595), +(47167, 'A Critical Examination of the Position of Mr. Darwin\'s Work, \"On the Origin of Species,\" in Relation to the Complete Theory of the Causes of the Phenomena of Organic Nature\r\nLecture VI. (of VI.), \"Lectures to Working Men\", at the Museum of Practical Geology, 1863, on Darwin\'s Work: \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 27, 'https://www.gutenberg.org/ebooks/2926', 'en', 5893), +(47168, 'Agriculture in Virginia, 1607-1699', 'Carrier, Lyman', '2009-05-08', 18, 'https://www.gutenberg.org/ebooks/28730', 'en', 16361), +(47169, 'Chambers\'s Edinburgh Journal, No. 440\nVolume 17, New Series, June 5, 1852', 'Various', '2006-08-07', 6, 'https://www.gutenberg.org/ebooks/18999', 'en', 18), +(47170, 'First Love: A Novel. Vol. 1 of 3', 'Loudon, Mrs. (Margracia)', '2013-10-23', 2, 'https://www.gutenberg.org/ebooks/44018', 'en', 61), +(47171, 'A Book of the United States\r\nExhibiting its geography, divisions, constitution, and government ... and presenting a view of the republic generally, and of the individual states; together with a condensed history of the land, from its first discovery to the present time. The biography of about two hundred of the leading men: a description of the principal cities and towns; with statistical tables', NULL, '2018-12-09', 24, 'https://www.gutenberg.org/ebooks/58447', 'en', 207), +(47172, 'La Parada', 'Ruyra, Joaquín', '2005-01-23', 24, 'https://www.gutenberg.org/ebooks/14768', 'ca', 61), +(47173, 'Jane, Stewardess of the Air Lines', 'Wheeler, Ruthe S.', '2010-09-26', 12, 'https://www.gutenberg.org/ebooks/33976', 'en', 301), +(47174, 'Memoir of the Services of the Bengal Artillery\nFrom the Formation of the Corps to the Present Time, with Some Account of Its Internal Organization', 'Buckle, E.', '2019-05-25', 27, 'https://www.gutenberg.org/ebooks/59595', 'en', 2957), +(47175, 'The Friars in the Philippines', 'Coleman, Ambrose', '2011-06-15', 40, 'https://www.gutenberg.org/ebooks/36438', 'en', 16362), +(47176, 'Isle o\' Dreams', 'Moore, Frederick Ferdinand', '2008-06-16', 12, 'https://www.gutenberg.org/ebooks/25813', 'en', 1526), +(47177, 'Sign of the Green Arrow\nA Mystery Story', 'Snell, Roy J. (Roy Judson)', '2014-02-02', 23, 'https://www.gutenberg.org/ebooks/44824', 'en', 324), +(47178, 'The Thompson-Houston System of Electric Lighting', 'Cory, H. T. (Harry Thomas)', '2017-01-05', 7, 'https://www.gutenberg.org/ebooks/53893', 'en', 3306), +(47179, 'The March to Magdala', 'Henty, G. A. (George Alfred)', '2012-04-17', 50, 'https://www.gutenberg.org/ebooks/39470', 'en', 16363), +(47180, 'The Pentecost of Calamity', 'Wister, Owen', '2010-04-23', 13, 'https://www.gutenberg.org/ebooks/32098', 'en', 12734), +(47181, 'Amadis of Gaul, Vol. 3', 'Lobeira, Vasco de', '2016-08-30', 4, 'https://www.gutenberg.org/ebooks/52941', 'en', 16364), +(47182, 'Military History: Lectures Delivered at Trinity College, Cambridge', 'Fortescue, J. W. (John William), Sir', '2017-03-23', 11, 'https://www.gutenberg.org/ebooks/54417', 'en', 462), +(47183, 'Les Femmes de la Révolution', 'Michelet, Jules', '2006-07-02', 27, 'https://www.gutenberg.org/ebooks/18738', 'fr', 4289), +(47184, 'The Next Step: A Plan for Economic World Federation', 'Nearing, Scott', '2009-05-29', 14, 'https://www.gutenberg.org/ebooks/28991', 'en', 7104), +(47185, 'Tuliliemen tuttavana: Alkoholimuistelmia', 'London, Jack', '2015-01-23', 9, 'https://www.gutenberg.org/ebooks/48048', 'fi', 16365), +(47186, 'Narcissistic and Psychopathic Leaders', 'Vaknin, Samuel', '2009-10-01', 42, 'https://www.gutenberg.org/ebooks/30152', 'en', 5245), +(47187, 'An Old-Fashioned Girl', 'Alcott, Louisa May', '2001-08-01', 228, 'https://www.gutenberg.org/ebooks/2787', 'en', 539), +(47188, 'Sofonisba', 'Alfieri, Vittorio', '2010-01-25', 32, 'https://www.gutenberg.org/ebooks/31080', 'it', 1298), +(47189, 'Bill Nye and Boomerang\nOr, The Tale of a Meek-Eyed Mule, and Some Other Literary Gems', 'Nye, Bill', '2016-05-02', 6, 'https://www.gutenberg.org/ebooks/51959', 'en', 190), +(47190, 'The Parent\'s Assistant; Or, Stories for Children', 'Edgeworth, Maria', '2003-01-01', 62, 'https://www.gutenberg.org/ebooks/3655', 'en', 195), +(47191, 'The Adopted Daughter: A Tale for Young Persons', 'Sandham, Elizabeth', '2013-04-21', 26, 'https://www.gutenberg.org/ebooks/42572', 'en', 1817), +(47192, 'Les contemplations: Autrefois, 1830-1843', 'Hugo, Victor', '2009-08-29', 33, 'https://www.gutenberg.org/ebooks/29843', 'fr', 4086), +(47193, 'The Castaway\nOdd Craft, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12202', 'en', 1902), +(47194, 'Shepp\'s Photographs of the World', 'Shepp, James W.', '2008-07-12', 27, 'https://www.gutenberg.org/ebooks/26037', 'en', 16366), +(47195, 'Marriage, As It Was, As It Is, and As It Should Be: A Plea for Reform', 'Besant, Annie', '2014-09-29', 21, 'https://www.gutenberg.org/ebooks/47000', 'en', 14242), +(47196, 'The Works of Lucian of Samosata — Volume 01', 'Lucian, of Samosata', '2004-08-01', 92, 'https://www.gutenberg.org/ebooks/6327', 'en', 1011), +(47197, 'Songs of Childhood', 'De la Mare, Walter', '2007-11-19', 53, 'https://www.gutenberg.org/ebooks/23545', 'en', 2951), +(47198, 'A Brief History of Forestry.\r\nIn Europe, the United States and Other Countries', 'Fernow, B. E. (Bernhard Eduard)', '2015-05-04', 4, 'https://www.gutenberg.org/ebooks/48874', 'en', 16367), +(47199, 'Christmas Stories And Legends', NULL, '2006-02-16', 27, 'https://www.gutenberg.org/ebooks/17770', 'en', 585), +(47200, 'The Regimental Records of the British Army\r\nA historical résumé chronologically arranged of titles, campaigns, honours, uniforms, facings, badges, nicknames, etc.', 'Farmer, John S.', '2016-02-09', 14, 'https://www.gutenberg.org/ebooks/51165', 'en', 6517), +(47201, 'Cab and Caboose: The Story of a Railroad Boy', 'Munroe, Kirk', '2007-09-04', 21, 'https://www.gutenberg.org/ebooks/22497', 'en', 1239), +(47202, 'A System of Logic: Ratiocinative and Inductive, 7th Edition, Vol. I', 'Mill, John Stuart', '2011-02-27', 42, 'https://www.gutenberg.org/ebooks/35420', 'en', 516), +(47203, 'A Source Book in American History to 1787', NULL, '2014-05-25', 17, 'https://www.gutenberg.org/ebooks/45757', 'en', 337), +(47204, 'Diana of the Crossways — Complete', 'Meredith, George', '2004-11-05', 33, 'https://www.gutenberg.org/ebooks/4470', 'en', 434), +(47205, 'The Lives of the Painters, Sculptors & Architects, Volume 1 (of 8)', 'Vasari, Giorgio', '2007-04-24', 31, 'https://www.gutenberg.org/ebooks/21212', 'en', 9689), +(47206, 'La Novela Picaresca', NULL, '2005-02-12', 53, 'https://www.gutenberg.org/ebooks/15027', 'es', 7654), +(47207, 'Books Relating to Applied Science, Published by E & F. N. Spon, 1887.', 'E. & F. N. Spon', '2019-04-18', 8, 'https://www.gutenberg.org/ebooks/59308', 'en', 2663), +(47208, 'Kansa nousee', 'Churchill, Winston', '2016-11-29', 23, 'https://www.gutenberg.org/ebooks/53632', 'fi', 10706), +(47209, 'Ueber die Wirkung des Nordsee-Bades: Eine physiologisch-chemische Untersuchung', 'Beneke, F. W. (Friedrich Wilhelm)', '2011-09-10', 21, 'https://www.gutenberg.org/ebooks/37377', 'de', 16368), +(47210, 'Story of the Bible Animals\r\nA Description of the Habits and Uses of every living Creature mentioned in the Scriptures, with Explanation of Passages in the Old and New Testament in which Reference is made to them', 'Wood, J. G. (John George)', '2014-01-17', 18, 'https://www.gutenberg.org/ebooks/44685', 'en', 16369), +(47211, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 371, May 23, 1829', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11487', 'en', 133), +(47212, 'Tower of Ivory: A Novel', 'Atherton, Gertrude Franklin Horn', '2018-01-08', 22, 'https://www.gutenberg.org/ebooks/56340', 'en', 109), +(47213, 'History of Beasts', 'Unknown', '2010-05-30', 35, 'https://www.gutenberg.org/ebooks/32605', 'en', 1423), +(47214, 'The Third Part of King Henry the Sixth', 'Shakespeare, William', '1997-11-01', 29, 'https://www.gutenberg.org/ebooks/1102', 'en', 2613), +(47215, 'America Discovered by the Welsh in 1170 A.D.', 'Bowen, Benjamin Franklin', '2012-07-13', 25, 'https://www.gutenberg.org/ebooks/40225', 'en', 16370), +(47216, 'Echoes From The Orient: A Broad Outline of Theosophical Doctrines', 'Judge, William Quan', '2018-06-09', 17, 'https://www.gutenberg.org/ebooks/57292', 'en', 746), +(47217, 'The Life of Marie Antoinette, Queen of France', 'Yonge, Charles Duke', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10555', 'en', 4453), +(47218, 'Aunt Kitty\'s Stories', 'Various', '2008-03-12', 22, 'https://www.gutenberg.org/ebooks/24760', 'en', 343), +(47219, 'The Little Clay Cart\nMrcchakatika', 'Sudraka', '2007-04-10', 167, 'https://www.gutenberg.org/ebooks/21020', 'en', 6214), +(47220, 'Magie bij de Grieken en de Romeinen', 'Jong, K. H. E. de (Karel Hendrik Eduard)', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/15215', 'nl', 16371), +(47221, 'La guerra dei pirati e la marina pontificia dal 1500 al 1560, vol. 1', 'Guglielmotti, Alberto P.', '2014-05-02', 11, 'https://www.gutenberg.org/ebooks/45565', 'it', 16372), +(47222, 'The Vigilance Committee of 1856', 'O\'Meara, James', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/4642', 'en', 16373), +(47223, 'New York', 'Cooper, James Fenimore', '2011-05-14', 4, 'https://www.gutenberg.org/ebooks/36097', 'en', 3999), +(47224, 'Aria da Capo', 'Millay, Edna St. Vincent', '2004-05-01', 44, 'https://www.gutenberg.org/ebooks/5790', 'en', 16374), +(47225, 'The Image and the Likeness', 'Campbell, John Scott', '2011-08-21', 28, 'https://www.gutenberg.org/ebooks/37145', 'en', 26), +(47226, 'The East India Vade-Mecum, Volume 1 (of 2)\r\nor, complete guide to gentlemen intended for the civil, military, or naval service of the East India Company.', 'Williamson, Thomas', '2016-10-31', 12, 'https://www.gutenberg.org/ebooks/53400', 'en', 16375), +(47227, 'The Perjur\'d Husband; or, The Adventures of Venice. A Tragedy', 'Centlivre, Susanna', '2012-02-19', 20, 'https://www.gutenberg.org/ebooks/38931', 'en', 1298), +(47228, 'The Automobile Girls at Chicago; Or, Winning Out Against Heavy Odds', 'Crane, Laura Dent', '2010-05-19', 6, 'https://www.gutenberg.org/ebooks/32437', 'en', 2096), +(47229, 'Cassell\'s Natural History, Vol. 2 (of 6)', NULL, '2019-07-12', 124, 'https://www.gutenberg.org/ebooks/59906', 'en', 4745), +(47230, 'The Book of Brave Old Ballads', NULL, '2008-05-15', 14, 'https://www.gutenberg.org/ebooks/25480', 'en', 10086), +(47231, 'Gunvor Kjeld, papin tytär', 'Krag, Thomas Peter', '2017-12-12', 7, 'https://www.gutenberg.org/ebooks/56172', 'fi', 7), +(47232, 'Courage', 'Barrie, J. M. (James Matthew)', '2004-01-01', 47, 'https://www.gutenberg.org/ebooks/10767', 'en', 16376), +(47233, 'Under the Shadow of Etna: Sicilian Stories from the Italian of Giovanni Verga', 'Verga, Giovanni', '2011-11-11', 41, 'https://www.gutenberg.org/ebooks/37979', 'en', 4008), +(47234, 'Northern Nut Growers Association, Report of the Proceedings at the Fourth Annual Meeting\nWashington D.C. November 18 and 19, 1913', NULL, '2008-02-08', 3, 'https://www.gutenberg.org/ebooks/24552', 'en', 8570), +(47235, 'The Story of Little Black Sambo, and The Story of Little Black Mingo', 'Bannerman, Helen', '1998-05-01', 47, 'https://www.gutenberg.org/ebooks/1330', 'en', 12760), +(47236, 'The Stampeder', 'White, Samuel Alexander', '2012-06-17', 157, 'https://www.gutenberg.org/ebooks/40017', 'en', 16377), +(47237, 'Edward Buttoneye and His Adventures', 'Austin, Cyril F.', '2013-09-11', 7, 'https://www.gutenberg.org/ebooks/43692', 'en', 11239), +(47238, 'My Secret Life, Volumes I. to III.\n1888 Edition', 'Anonymous', '2009-10-30', 4490, 'https://www.gutenberg.org/ebooks/30360', 'en', 1989), +(47239, 'Poemata : Latin, Greek and Italian Poems by John Milton', 'Milton, John', '2004-11-01', 44, 'https://www.gutenberg.org/ebooks/6929', 'en', 16378), +(47240, 'Harper\'s Young People, March 7, 1882\nAn Illustrated Weekly', 'Various', '2017-04-29', 1, 'https://www.gutenberg.org/ebooks/54625', 'en', 479), +(47241, 'The Spectator, Volumes 1, 2 and 3\nWith Translations and Index for the Series', 'Addison, Joseph', '2004-04-01', 403, 'https://www.gutenberg.org/ebooks/12030', 'en', 13005), +(47242, 'Next Door, Next World', 'Locke, Robert Donald', '2008-08-06', 28, 'https://www.gutenberg.org/ebooks/26205', 'en', 26), +(47243, 'The Life of Cesare Borgia', 'Sabatini, Rafael', '2002-10-01', 105, 'https://www.gutenberg.org/ebooks/3467', 'en', 3484), +(47244, 'Find the Woman', 'Roche, Arthur Somers', '2013-05-19', 20, 'https://www.gutenberg.org/ebooks/42740', 'en', 128), +(47245, 'An Essay on the Shaking Palsy', 'Parkinson, James', '2007-12-09', 34, 'https://www.gutenberg.org/ebooks/23777', 'en', 16379); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(47246, 'Histoire tragique de la princesse Phénissa\r\nexpliquée en quatre épisodes', 'Gourmont, Remy de', '2006-01-18', 18, 'https://www.gutenberg.org/ebooks/17542', 'fr', 402), +(47247, 'Dr. Mabuse, der Spieler', 'Jacques, Norbert', '2015-10-22', 33, 'https://www.gutenberg.org/ebooks/50285', 'de', 9524), +(47248, 'Punchinello, Volume 1, No. 07, May 14, 1870', 'Various', '2006-02-01', 6, 'https://www.gutenberg.org/ebooks/9961', 'en', 372), +(47249, 'The Book of Roses', 'Parkman, Francis', '2014-10-29', 31, 'https://www.gutenberg.org/ebooks/47232', 'en', 16380), +(47250, 'The Long Chance', 'Kyne, Peter B. (Peter Bernard)', '2004-07-01', 36, 'https://www.gutenberg.org/ebooks/6115', 'en', 315), +(47251, 'Three Philosophical Poets: Lucretius, Dante, and Goethe', 'Santayana, George', '2011-03-18', 81, 'https://www.gutenberg.org/ebooks/35612', 'en', 14460), +(47252, 'The Autobiography of Phineas Pett', 'Pett, Phineas', '2016-03-04', 9, 'https://www.gutenberg.org/ebooks/51357', 'en', 16381), +(47253, 'Kuningas Lear', 'Shakespeare, William', '2005-08-08', 15, 'https://www.gutenberg.org/ebooks/16490', 'fi', 2756), +(47254, 'The Broken Bough\r\nNo. 435, IV. Series', 'Anonymous', '2011-09-24', 16, 'https://www.gutenberg.org/ebooks/37521', 'en', 470), +(47255, 'Die Casting: Dies—Machines—Methods', 'Lucas, Chester L.', '2016-09-17', 15, 'https://www.gutenberg.org/ebooks/53064', 'en', 16382), +(47256, 'The Ballad of Reading Gaol', 'Wilde, Oscar', '2007-01-20', 4, 'https://www.gutenberg.org/ebooks/20596', 'en', 14030), +(47257, 'Peritäänkö vihakin? Jutelma kahdessa osassa', 'Gummerus, K. J. (Kaarle Jaakko)', '2007-05-15', 8, 'https://www.gutenberg.org/ebooks/21444', 'fi', 41), +(47258, 'A Splendid Hazard', 'MacGrath, Harold', '2005-04-20', 13, 'https://www.gutenberg.org/ebooks/15671', 'en', 61), +(47259, 'The Philippine Islands, 1493-1898, Volume 35, 1640-1649\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2014-03-09', 40, 'https://www.gutenberg.org/ebooks/45101', 'en', 8515), +(47260, 'Empress Josephine: An Historical Sketch of the Days of Napoleon', 'Mühlbach, L. (Luise)', '2003-07-01', 29, 'https://www.gutenberg.org/ebooks/4226', 'en', 4854), +(47261, 'Jere Sanford\'s Yodling and Whistling Specialty', NULL, '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10303', 'en', 8879), +(47262, '左傳', 'Zuoqiu, Ming', '2008-01-03', 19, 'https://www.gutenberg.org/ebooks/24136', 'zh', 734), +(47263, 'Fifty-One Years of Victorian Life', 'Jersey, Margaret Elizabeth Leigh Child-Villiers, Countess of', '2012-01-14', 25, 'https://www.gutenberg.org/ebooks/38569', 'en', 5226), +(47264, 'Lowestoft in olden times', 'Longe, Francis Davy', '2017-01-01', 6, 'https://www.gutenberg.org/ebooks/53858', 'en', 16383), +(47265, 'Harper\'s Round Table, October 29, 1895', 'Various', '2010-07-15', 6, 'https://www.gutenberg.org/ebooks/33181', 'en', 668), +(47266, 'The Sea-Gull', 'Chekhov, Anton Pavlovich', '2006-02-22', 1016, 'https://www.gutenberg.org/ebooks/1754', 'en', 16384), +(47267, 'The History of Creation, Vol. 2 (of 2)\r\nOr the Development of the Earth and its Inhabitants by the Action of Natural Causes', 'Haeckel, Ernst', '2012-08-14', 44, 'https://www.gutenberg.org/ebooks/40473', 'en', 1315), +(47268, 'Happy House', 'Abbott, Jane', '2010-04-19', 58, 'https://www.gutenberg.org/ebooks/32053', 'en', 4428), +(47269, 'Coppertop: The Queer Adventures of a Quaint Child', 'Gaze, Harold', '2018-02-07', 3, 'https://www.gutenberg.org/ebooks/56516', 'en', 62), +(47270, 'France at War: On the Frontier of Civilization', 'Kipling, Rudyard', '2004-05-01', 62, 'https://www.gutenberg.org/ebooks/12454', 'en', 2223), +(47271, 'Astrologian järjellinen perusta. Lisäys: Lasten kasvatus astrologian valossa', 'Barley, Alfred H.', '2017-08-20', 15, 'https://www.gutenberg.org/ebooks/55393', 'fi', 14227), +(47272, 'The Power of Darkness', 'Tolstoy, Leo, graf', '2008-09-20', 99, 'https://www.gutenberg.org/ebooks/26661', 'en', 4249), +(47273, 'Wild Flowers\nAn Aid to Knowledge of Our Wild Flowers and Their Insect Visitors', 'Blanchan, Neltje', '2002-01-01', 77, 'https://www.gutenberg.org/ebooks/3003', 'en', 6836), +(47274, 'Frankenstein; Or, The Modern Prometheus', 'Shelley, Mary Wollstonecraft', '2013-03-13', 903, 'https://www.gutenberg.org/ebooks/42324', 'en', 3487), +(47275, 'The Record of Nicholas Freydon\nAn Autobiography', 'Dawson, A. J. (Alec John)', '2009-12-18', 84, 'https://www.gutenberg.org/ebooks/30704', 'en', 61), +(47276, 'The Rose and the Ring', 'Thackeray, William Makepeace', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9539', 'en', 388), +(47277, 'The Mysterious Stranger and Other Cartoons', 'McCutcheon, John T. (John Tinney)', '2019-08-08', 2132, 'https://www.gutenberg.org/ebooks/60074', 'en', 8382), +(47278, 'The Cubomedusæ', 'Conant, Franklin Story', '2017-02-26', 2, 'https://www.gutenberg.org/ebooks/54241', 'en', 1821), +(47279, 'Poems', 'Rogers, Samuel', '2004-10-03', 20, 'https://www.gutenberg.org/ebooks/13586', 'en', 532), +(47280, 'Voice Production in Singing and Speaking\nBased on Scientific Principles (Fourth Edition, Revised and Enlarged)', 'Mills, Wesley', '2006-11-20', 33, 'https://www.gutenberg.org/ebooks/19880', 'en', 1290), +(47281, 'Canterbury', 'Danks, William', '2011-02-15', 7, 'https://www.gutenberg.org/ebooks/35276', 'en', 14621), +(47282, 'Punch, Or the London Charivari, Volume 107, October 27th, 1894', 'Various', '2014-09-06', 8, 'https://www.gutenberg.org/ebooks/46784', 'en', 134), +(47283, 'Bird Life Glimpses', 'Selous, Edmund', '2016-04-11', 7, 'https://www.gutenberg.org/ebooks/51733', 'en', 16385), +(47284, 'The Destroyer: A Tale of International Intrigue', 'Stevenson, Burton Egbert', '2009-08-07', 16, 'https://www.gutenberg.org/ebooks/29629', 'en', 128), +(47285, 'Tonio Kröger', 'Mann, Thomas', '2007-11-04', 183, 'https://www.gutenberg.org/ebooks/23313', 'de', 12456), +(47286, 'Five Happy Weeks', 'Sangster, Margaret Elizabeth Munson', '2005-11-21', 14, 'https://www.gutenberg.org/ebooks/17126', 'en', 4099), +(47287, 'Harper\'s Young People, May 10, 1881\nAn Illustrated Weekly', 'Various', '2014-12-13', 11, 'https://www.gutenberg.org/ebooks/47656', 'en', 479), +(47288, 'The Queen Pedauque', 'France, Anatole', '2004-09-01', 19, 'https://www.gutenberg.org/ebooks/6571', 'en', 2938), +(47289, 'The Jubilee of the Constitution\r\nDelivered at New York, April 30, 1839, Before the New York Historical Society', 'Adams, John Quincy', '1997-04-01', 69, 'https://www.gutenberg.org/ebooks/896', 'en', 13594), +(47290, 'Boy Scouts on a Long Hike; Or, To the Rescue in the Black Water Swamps', 'Fletcher, Archibald Lee', '2006-07-31', 23, 'https://www.gutenberg.org/ebooks/18952', 'en', 11360), +(47291, 'The Rifle and the Hound in Ceylon', 'Baker, Samuel White, Sir', '2002-05-01', 41, 'https://www.gutenberg.org/ebooks/3231', 'en', 144), +(47292, 'Kaksintaistelu', 'Chekhov, Anton Pavlovich', '2013-02-17', 13, 'https://www.gutenberg.org/ebooks/42116', 'fi', 3829), +(47293, 'Consuelo, Tome 1 (1861)', 'Sand, George', '2004-06-01', 43, 'https://www.gutenberg.org/ebooks/12666', 'fr', 2295), +(47294, 'Les Troubadours: Leurs vies — leurs oeuvres — leur influence', 'Anglade, Joseph', '2011-04-15', 23, 'https://www.gutenberg.org/ebooks/35878', 'fr', 16386), +(47295, 'La pianta dei sospiri\r\ncon alcuni cenni su la vita e su le opere dell\'autore', 'Sacchi, Defendente', '2008-08-28', 8, 'https://www.gutenberg.org/ebooks/26453', 'it', 860), +(47296, '吳船錄', 'Fan, Chengda', '2008-12-21', 24, 'https://www.gutenberg.org/ebooks/27581', 'zh', 16387), +(47297, 'Frank Reade Jr.\'s Submarine Boat; or, to the North Pole Under the Ice.', 'Senarens, Luis', '2017-01-30', 13, 'https://www.gutenberg.org/ebooks/54073', 'en', 336), +(47298, 'The Market-Place', 'Frederic, Harold', '2008-07-09', 127, 'https://www.gutenberg.org/ebooks/298', 'en', 16388), +(47299, 'Rolandkanto', NULL, '2009-11-24', 14, 'https://www.gutenberg.org/ebooks/30536', 'eo', 16389), +(47300, 'Maalaiskuvia 1: Kokoelma novelleja', 'Kataja, Väinö', '2016-03-19', 14, 'https://www.gutenberg.org/ebooks/51501', 'fi', 175), +(47301, 'Lucretia — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-24', 59, 'https://www.gutenberg.org/ebooks/7691', 'en', 3511), +(47302, 'The Boys of the Wireless; Or, A Stirring Rescue from the Deep', 'Webster, Frank V.', '2011-01-22', 44, 'https://www.gutenberg.org/ebooks/35044', 'en', 1246), +(47303, 'The Theory of Spectra and Atomic Constitution: Three Essays', 'Bohr, Niels', '2014-11-26', 53, 'https://www.gutenberg.org/ebooks/47464', 'en', 16390), +(47304, 'Colonel Carter of Cartersville', 'Smith, Francis Hopkinson', '2004-10-01', 14, 'https://www.gutenberg.org/ebooks/6743', 'en', 4850), +(47305, 'Porzia', 'Rice, Cale Young', '2010-11-02', 12, 'https://www.gutenberg.org/ebooks/34196', 'en', 508), +(47306, 'Our Little Lady\nSix Hundred Years Ago', 'Holt, Emily Sarah', '2007-10-20', 8, 'https://www.gutenberg.org/ebooks/23121', 'en', 195), +(47307, 'Five Children and It', 'Nesbit, E. (Edith)', '2005-12-15', 226, 'https://www.gutenberg.org/ebooks/17314', 'en', 2024), +(47308, 'Faust', 'Goethe, Johann Wolfgang von', '2005-01-04', 1486, 'https://www.gutenberg.org/ebooks/14591', 'en', 11685), +(47309, 'The Room with the Little Door', 'Molineux, Roland Burnham', '2016-10-11', 9, 'https://www.gutenberg.org/ebooks/53256', 'en', 16391), +(47310, 'Fishes, Flowers, & Fire as Elements and Deities in the Phallic Faiths & Worship of the Ancient Religions of Greece, Babylon, Rome, India, &c.', 'Anonymous', '2011-10-11', 26, 'https://www.gutenberg.org/ebooks/37713', 'en', 9034), +(47311, 'Tom Sawyer: Koulupojan historia', 'Twain, Mark', '2014-04-06', 16, 'https://www.gutenberg.org/ebooks/45333', 'fi', 16392), +(47312, 'Arsene Lupin', 'Leblanc, Maurice', '2003-05-01', 277, 'https://www.gutenberg.org/ebooks/4014', 'en', 1286), +(47313, 'Confessions of a Caricaturist', 'Herford, Oliver', '2007-06-04', 41, 'https://www.gutenberg.org/ebooks/21676', 'en', 2008), +(47314, 'Tuskaa: Kuvaus raukoilta rajoilta', 'Kataja, Väinö', '2016-06-20', 4, 'https://www.gutenberg.org/ebooks/52384', 'fi', 175), +(47315, 'Heiress of Haddon', 'Doubleday, W. E. (William Elliott)', '2005-03-23', 8, 'https://www.gutenberg.org/ebooks/15443', 'en', 16393), +(47316, 'The Evolution of Modern Medicine\r\nA Series of Lectures Delivered at Yale University on the Silliman Foundation in April, 1913', 'Osler, William', '2006-02-22', 101, 'https://www.gutenberg.org/ebooks/1566', 'en', 8175), +(47317, 'Encyclopaedia Britannica, 11th Edition, \"Kite-Flying\" to \"Kyshtym\"\r\nVolume 15, Slice 8', 'Various', '2012-09-01', 21, 'https://www.gutenberg.org/ebooks/40641', 'en', 1081), +(47318, 'Required Poems for Reading and Memorizing\nThird and Fourth Grades, Prescribed by State Courses of Study', 'Anonymous', '2003-11-01', 144, 'https://www.gutenberg.org/ebooks/10131', 'en', 859), +(47319, 'American Lutheranism, Volume 2\r\nThe United Lutheran Church (General Synod, General Council, United Synod in the South)', 'Bente, F. (Friedrich)', '2008-01-15', 20, 'https://www.gutenberg.org/ebooks/24304', 'en', 6254), +(47320, 'The Rise of the Dutch Republic — Volume 26: 1577, part III', 'Motley, John Lothrop', '2004-01-01', 61, 'https://www.gutenberg.org/ebooks/4828', 'en', 6577), +(47321, 'Eppur si muove – És mégis mozog a föld (2. rész)\nRegény', 'Jókai, Mór', '2018-03-12', 8, 'https://www.gutenberg.org/ebooks/56724', 'hu', 234), +(47322, 'The Strand Magazine, Vol. 17, February 1899, No. 98.', 'Various', '2013-01-06', 27, 'https://www.gutenberg.org/ebooks/41793', 'en', 4041), +(47323, 'Satan Sanderson', 'Rives, Hallie Erminie', '2012-05-13', 26, 'https://www.gutenberg.org/ebooks/39689', 'en', 8041), +(47324, 'A Frenchman in America: Recollections of Men and Things', 'O\'Rell, Max', '2010-05-05', 12, 'https://www.gutenberg.org/ebooks/32261', 'en', 6389), +(47325, 'Tales and Novels of J. de La Fontaine — Complete', 'La Fontaine, Jean de', '2004-09-21', 93, 'https://www.gutenberg.org/ebooks/5300', 'en', 2629), +(47326, 'The Expositor\'s Bible: The Psalms, Vol. 3\r\nPsalms XC.-CL.', 'Maclaren, Alexander', '2013-10-24', 23, 'https://www.gutenberg.org/ebooks/44027', 'en', 1852), +(47327, 'Index of the Project Gutenberg Works of Anthony Hope', 'Hope, Anthony', '2018-12-16', 8, 'https://www.gutenberg.org/ebooks/58478', 'en', 198), +(47328, 'Henrik Gabriel Porthan historiantutkijana', 'Suolahti, Gunnar', '2016-09-19', 5, 'https://www.gutenberg.org/ebooks/53090', 'fi', 16394), +(47329, 'The War Poems of Siegfried Sassoon', 'Sassoon, Siegfried', '2005-01-22', 24, 'https://www.gutenberg.org/ebooks/14757', 'en', 2100), +(47330, 'Valikoima Jaakko Juteinin runoja', 'Juteini, Jaakko', '2010-10-03', 8, 'https://www.gutenberg.org/ebooks/33949', 'fi', 8), +(47331, 'Voyages au temps jadis en France, en Angleterre, en Allemagne, en Suisse, en Italie, en Sicile, en poste, en diligence, en voiturin, en traîneau, en espéronade, à cheval et en patache, de 1787 à 1844', 'Aynard, Théodore', '2007-02-11', 37, 'https://www.gutenberg.org/ebooks/20562', 'fr', 1408), +(47332, 'A Continuation of a Voyage to New Holland, Etc. in the Year 1699', 'Dampier, William', '2005-04-22', 42, 'https://www.gutenberg.org/ebooks/15685', 'en', 8151), +(47333, 'The War Stories of Private Thomas Atkins', 'Milne, James', '2016-05-23', 10, 'https://www.gutenberg.org/ebooks/52142', 'en', 93), +(47334, 'A Mediaeval Mystic\r\nA Short Account of the Life and Writings of Blessed John Ruysbroeck, Canon Regular of Groenendael A.D. 1293-1381', 'Scully, Vincent', '2011-06-13', 10, 'https://www.gutenberg.org/ebooks/36407', 'en', 1568), +(47335, 'Œuvres complètes de Guy de Maupassant - volume 13', 'Maupassant, Guy de', '2018-07-01', 46, 'https://www.gutenberg.org/ebooks/57430', 'fr', 642), +(47336, 'The Voice and Spiritual Education', 'Corson, Hiram', '2010-07-15', 15, 'https://www.gutenberg.org/ebooks/33175', 'en', 16395), +(47337, 'Happy-go-lucky', 'Hay, Ian', '2012-08-12', 54, 'https://www.gutenberg.org/ebooks/40487', 'en', 1902), +(47338, 'Il Valdarno da Firenze al mare', 'Carocci, Guido', '2012-12-04', 8, 'https://www.gutenberg.org/ebooks/41555', 'it', 16396), +(47339, 'Punch, or the London Charivari, Vol. 146, April 29, 1914', 'Various', '2008-04-07', 13, 'https://www.gutenberg.org/ebooks/25010', 'en', 134), +(47340, 'Punch, or the London Charivari, Volume 156, January 22, 1919', 'Various', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/11225', 'en', 134), +(47341, 'Storia di un\'anima', 'Bazzero, Ambrogio', '2006-08-15', 50, 'https://www.gutenberg.org/ebooks/19048', 'it', 6776), +(47342, 'La chanson des joujoux', 'Jouy, Jules', '2017-08-16', 18, 'https://www.gutenberg.org/ebooks/55367', 'fr', 16397), +(47343, 'Make or Break; or, The Rich Man\'s Daughter', 'Optic, Oliver', '2008-09-23', 19, 'https://www.gutenberg.org/ebooks/26695', 'en', 9066), +(47344, 'Optimism: An Essay', 'Keller, Helen', '2010-03-13', 62, 'https://www.gutenberg.org/ebooks/31622', 'en', 16398), +(47345, 'Neue Kindergeschichten aus Oberheudorf: Fünfzehn heitere Erzählungen', 'Siebe, Josephine', '2015-08-19', 30, 'https://www.gutenberg.org/ebooks/49738', 'de', 16037), +(47346, 'The Endowed Charities of Kensington: By Whom Bequeathed, and How Administered', 'Daniel, Edward Morton', '2013-07-12', 11, 'https://www.gutenberg.org/ebooks/43202', 'en', 8671), +(47347, 'The Nile Tributaries of Abyssinia, and the Sword Hunters of the Hamran Arabs', 'Baker, Samuel White, Sir', '2000-03-01', 20, 'https://www.gutenberg.org/ebooks/2125', 'en', 1274), +(47348, 'Personal Recollections, from Early Life to Old Age, of Mary Somerville', 'Somerville, Mary', '2009-01-08', 23, 'https://www.gutenberg.org/ebooks/27747', 'en', 16399), +(47349, 'Le fourbe', 'Boulenger, Marcel', '2019-08-09', 337, 'https://www.gutenberg.org/ebooks/60080', 'fr', 259), +(47350, 'The Son of Clemenceau, A Novel of Modern Love and Life', 'Dumas, Alexandre', '2004-10-01', 23, 'https://www.gutenberg.org/ebooks/13572', 'en', 61), +(47351, 'Fräulein Schmidt and Mr. Anstruther', 'Von Arnim, Elizabeth', '2011-02-15', 29, 'https://www.gutenberg.org/ebooks/35282', 'en', 6607), +(47352, 'Bubbles of the Foam', 'Bain, F. W. (Francis William)', '2006-11-20', 15, 'https://www.gutenberg.org/ebooks/19874', 'en', 580), +(47353, '顔氏家訓 — Volume 07', 'Yan, Zhitui', '2005-02-01', 6, 'https://www.gutenberg.org/ebooks/7457', 'zh', 7454), +(47354, '\'Neath Verdun, August-October, 1914', 'Genevoix, Maurice', '2014-09-05', 15, 'https://www.gutenberg.org/ebooks/46770', 'en', 16400), +(47355, 'The Ship of Stars', 'Quiller-Couch, Arthur', '2005-06-07', 35, 'https://www.gutenberg.org/ebooks/16000', 'en', 166), +(47356, 'Fräulein Julie: Naturalistisches Trauerspiel', 'Strindberg, August', '2007-08-04', 25, 'https://www.gutenberg.org/ebooks/22235', 'de', 402), +(47357, 'The Little Man: A Farcical Morality in Three Scenes', 'Galsworthy, John', '2004-09-26', 34, 'https://www.gutenberg.org/ebooks/2919', 'en', 1088), +(47358, 'The Girl\'s Own Paper, Vol. XX, No. 985, November 12, 1898', 'Various', '2015-12-05', 7, 'https://www.gutenberg.org/ebooks/50615', 'en', 563), +(47359, 'A Manual of Elementary Geology\r\nor, The Ancient Changes of the Earth and its Inhabitants as Illustrated by Geological Monuments', 'Lyell, Charles, Sir', '2010-11-17', 19, 'https://www.gutenberg.org/ebooks/34350', 'en', 2535), +(47360, 'Philosophy 4: A Story of Harvard University', 'Wister, Owen', '1997-03-01', 70, 'https://www.gutenberg.org/ebooks/862', 'en', 16401), +(47361, 'The Works of Lucian of Samosata — Volume 02', 'Lucian, of Samosata', '2004-09-01', 65, 'https://www.gutenberg.org/ebooks/6585', 'en', 1011), +(47362, 'The Boy Slaves', 'Reid, Mayne', '2010-02-26', 25, 'https://www.gutenberg.org/ebooks/31410', 'en', 9849), +(47363, 'Old Mr. Tredgold', 'Oliphant, Mrs. (Margaret)', '2017-07-19', 10, 'https://www.gutenberg.org/ebooks/55155', 'en', 7171), +(47364, 'The High School Captain of the Team; or, Dick & Co. Leading the Athletic Vanguard', 'Hancock, H. Irving (Harrie Irving)', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12692', 'en', 1669), +(47365, 'Madame Bovary: A Tale of Provincial Life, Vol. 1 (of 2)', 'Flaubert, Gustave', '2008-12-20', 59, 'https://www.gutenberg.org/ebooks/27575', 'en', 378), +(47366, 'Mischievous Maid Faynie', 'Libbey, Laura Jean', '2004-10-13', 45, 'https://www.gutenberg.org/ebooks/13740', 'en', 2004), +(47367, 'L\'Illustration, No. 3737, 17 Oct 1914', 'Various', '2017-01-31', 5, 'https://www.gutenberg.org/ebooks/54087', 'fr', 150), +(47368, 'La maja desnuda', 'Blasco Ibáñez, Vicente', '2013-06-24', 19, 'https://www.gutenberg.org/ebooks/43030', 'es', 1463), +(47369, 'The Story of My Heart: An Autobiography', 'Jefferies, Richard', '2000-09-01', 71, 'https://www.gutenberg.org/ebooks/2317', 'en', 53), +(47370, 'The Culture of Vegetables and Flowers From Seeds and Roots\r\n16th Edition', 'Sutton & Sons Ltd.', '2005-07-07', 47, 'https://www.gutenberg.org/ebooks/16232', 'en', 1413), +(47371, 'Catalogue d\'ouvrages sur l\'histoire de l\'Amérique et en particulier sur celle du Canada\nde la Louisiane, de l\'Acadie et autres lieux, ci-devant\nconnus sous le nom de Nouvelle-France, avec des notes\nbibliographiques, critiques, et littéraires', 'Faribault, G.-B. (Georges-Barthélemi)', '2007-07-06', 13, 'https://www.gutenberg.org/ebooks/22007', 'fr', 16402), +(47372, 'The Quarterly of the Oregon Historical Society (Vol. I, No. 2)', 'Oregon Historical Society', '2017-11-14', 4, 'https://www.gutenberg.org/ebooks/55969', 'en', 11994), +(47373, 'What Will He Do with It? — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 12, 'https://www.gutenberg.org/ebooks/7665', 'en', 137), +(47374, 'The Wild Turkey and Its Hunting', 'Jordan, Charles L.', '2014-08-09', 9, 'https://www.gutenberg.org/ebooks/46542', 'en', 5095), +(47375, 'Birds and Nature Vol. 09 No. 4 [April 1901]', 'Various', '2014-11-29', 5, 'https://www.gutenberg.org/ebooks/47490', 'en', 1584), +(47376, 'Encyclopaedia Britannica, 11th Edition, \"Armour Plates\" to \"Arundel, Earls of\"\r\nVolume 2, Slice 6', 'Various', '2010-10-29', 33, 'https://www.gutenberg.org/ebooks/34162', 'en', 1081), +(47377, 'The Nine Days\' Queen, Lady Jane Grey, and Her Times', 'Davey, Richard', '2015-11-10', 20, 'https://www.gutenberg.org/ebooks/50427', 'en', 16403), +(47378, 'Cosmos: A Sketch of the Physical Description of the Universe, Vol. 1', 'Humboldt, Alexander von', '2005-01-03', 197, 'https://www.gutenberg.org/ebooks/14565', 'en', 4250), +(47379, 'Journal of the Proceedings of the Linnean Society - Vol. 3\nZoology', 'Linnean Society of London', '2007-03-06', 15, 'https://www.gutenberg.org/ebooks/20750', 'en', 3176), +(47380, 'Letters to Sir William Windham and Mr. Pope', 'Bolingbroke, Henry St. John, Viscount', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/5132', 'en', 16404), +(47381, 'The Book of Camp-Lore and Woodcraft', 'Beard, Daniel Carter', '2013-11-18', 93, 'https://www.gutenberg.org/ebooks/44215', 'en', 2155), +(47382, 'Amitié amoureuse', 'Lecomte du Noüy, Hermine Oudinot', '2011-07-05', 14, 'https://www.gutenberg.org/ebooks/36635', 'fr', 298), +(47383, 'The Field and Garden Vegetables of America\r\nContaining Full Descriptions of Nearly Eleven Hundred Species and Varietes; With Directions for Propagation, Culture and Use.', 'Burr, Fearing', '2007-06-05', 41, 'https://www.gutenberg.org/ebooks/21682', 'en', 16405), +(47384, 'The Plague of the Heart', 'Prevost, Francis', '2019-06-23', 63, 'https://www.gutenberg.org/ebooks/59798', 'en', 5101), +(47385, 'Dada\nMit einem Holzschnitt von Lyonel Feininger', 'Knoblauch, Adolf', '2016-06-19', 13, 'https://www.gutenberg.org/ebooks/52370', 'de', 61), +(47386, 'The Greatest English Classic\r\nA Study of the King James Version of the Bible and Its Influence on Life and Literature', 'McAfee, Cleland Boyd', '1999-01-01', 53, 'https://www.gutenberg.org/ebooks/1592', 'en', 16406), +(47387, 'Aubrey Beardsley', 'Ross, Robert Baldwin', '2010-08-04', 18, 'https://www.gutenberg.org/ebooks/33347', 'en', 11953), +(47388, 'My German Prisons\r\nBeing the Experiences of an Officer During Two and a Half Years as a Prisoner of War', 'Gilliland, Horace Gray', '2018-07-30', 12, 'https://www.gutenberg.org/ebooks/57602', 'en', 3601), +(47389, 'Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910\nThe Ultimate Load on Pile Foundations', 'Griffith, John Howell', '2008-04-28', 8, 'https://www.gutenberg.org/ebooks/25222', 'en', 16407), +(47390, 'Samuel F. B. Morse, His Letters and Journals\nIn Two Volumes, Volume I.', 'Morse, Samuel Finley Breese', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11017', 'en', 16408), +(47391, 'The Hero of Panama: A Tale of the Great Canal', 'Brereton, F. S. (Frederick Sadleir)', '2013-01-03', 23, 'https://www.gutenberg.org/ebooks/41767', 'en', 12784), +(47392, 'Scenas da Roça: Poema de costumes nacionaes', 'Corrêa, António', '2010-05-08', 62, 'https://www.gutenberg.org/ebooks/32295', 'pt', 8), +(47393, 'History of New Brunswick', 'Fisher, Peter', '2008-10-31', 39, 'https://www.gutenberg.org/ebooks/27111', 'en', 16409), +(47394, 'Apples, Ripe and Rosy, Sir\r\nAnd Other Stories for Boys and Girls', 'Crowley, Mary Catherine', '2004-08-29', 14, 'https://www.gutenberg.org/ebooks/13324', 'en', 388), +(47395, 'Areopagitica\r\nA Speech for the Liberty of Unlicensed Printing to the Parliament of England', 'Milton, John', '2006-01-21', 248, 'https://www.gutenberg.org/ebooks/608', 'en', 16410), +(47396, 'Peeps at Many Lands: Sweden', 'Liddle, William', '2013-08-12', 23, 'https://www.gutenberg.org/ebooks/43454', 'en', 15451), +(47397, 'Kuningas Juhana', 'Shakespeare, William', '2009-05-25', 34, 'https://www.gutenberg.org/ebooks/28965', 'fi', 9535), +(47398, 'Fraternity', 'Galsworthy, John', '2006-06-14', 35, 'https://www.gutenberg.org/ebooks/2773', 'en', 432), +(47399, 'The World English Bible (WEB): Song of Solomon', 'Anonymous', '2005-06-01', 31, 'https://www.gutenberg.org/ebooks/8249', 'en', 2945), +(47400, 'Ludwig Tieck\'s Schriften. Achter Band', 'Tieck, Ludwig', '2010-01-25', 11, 'https://www.gutenberg.org/ebooks/31074', 'de', 5137), +(47401, 'Thémidore; ou, mon histoire et celle de ma maîtresse', 'Godard d\'Aucour, Claude', '2013-04-23', 55, 'https://www.gutenberg.org/ebooks/42586', 'fr', 4185), +(47402, 'Common Sense Applied to Religion; Or, The Bible and the People', 'Beecher, Catharine Esther', '2017-09-12', 16, 'https://www.gutenberg.org/ebooks/55531', 'en', 347), +(47403, 'German Fiction', 'Storm, Theodor', '2010-11-30', 51, 'https://www.gutenberg.org/ebooks/34506', 'en', 803), +(47404, 'Rahan valtaa: Huvinäytelmä 1:ssä näytöksessä', 'Haapanen, Emmi', '2009-02-23', 12, 'https://www.gutenberg.org/ebooks/28159', 'fi', 433), +(47405, 'Rough Beast', 'Aycock, Roger D.', '2015-05-05', 42, 'https://www.gutenberg.org/ebooks/48880', 'en', 424), +(47406, 'Poems', 'Maeterlinck, Maurice', '2015-09-23', 20, 'https://www.gutenberg.org/ebooks/50043', 'en', 2629), +(47407, 'The Story of Bawn', 'Tynan, Katharine', '2006-02-17', 30, 'https://www.gutenberg.org/ebooks/17784', 'en', 669), +(47408, 'Dimasalang Kalendariong Tagalog (1922)', 'López, Honorio', '2005-09-05', 88, 'https://www.gutenberg.org/ebooks/16656', 'tl', 16411), +(47409, 'A Proposal for the Better Supplying of Churches in Our Foreign Plantations, and for Converting the Savage Americans to Christianity, By a College to Be Erected in the Summer Islands, Otherwise Called the Isles of Bermuda', 'Berkeley, George', '2010-03-31', 24, 'https://www.gutenberg.org/ebooks/31848', 'en', 16412), +(47410, 'Nooks and Corners of Lancashire and Cheshire.\r\nA Wayfarer\'s Notes in the Palatine Counties, Historical, Legendary, Genealogical, and Descriptive.', 'Croston, James', '2016-02-12', 8, 'https://www.gutenberg.org/ebooks/51191', 'en', 16413), +(47411, 'Chivalry', 'Cabell, James Branch', '2008-08-26', 79, 'https://www.gutenberg.org/ebooks/22463', 'en', 98), +(47412, 'Henkisotilaan kertomuksia: Kustaa Adolfin historian tapauksista', 'Starbäck, C. Georg (Carl Georg)', '2015-09-13', 7, 'https://www.gutenberg.org/ebooks/49952', 'fi', 2168), +(47413, 'A History of English Literature', 'Fletcher, Robert Huntington', '2005-01-01', 39, 'https://www.gutenberg.org/ebooks/7201', 'en', 1694), +(47414, 'Osservazioni sullo stato attuale dell\'Italia e sul suo avvenire', 'Belgioioso, Cristina', '2014-06-28', 16, 'https://www.gutenberg.org/ebooks/46126', 'it', 999), +(47415, 'The Corner House Girls on a Tour\nWhere they went, what they saw, and what they found', 'Hill, Grace Brooks', '2011-05-29', 19, 'https://www.gutenberg.org/ebooks/36251', 'en', 4357), +(47416, 'The Amazing Marriage — Volume 2', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4484', 'en', 675), +(47417, 'Sermons on the Scriptural Principles of our Protestant Church', 'Hoare, Edward', '2016-08-03', 7, 'https://www.gutenberg.org/ebooks/52714', 'en', 16414), +(47418, 'Dew Drops, Vol. 37, No. 10, March 8, 1914', 'Various', '2004-11-20', 12, 'https://www.gutenberg.org/ebooks/14101', 'en', 6886), +(47419, 'Punch, or the London Charivari, Volume 159, December 29, 1920', 'Various', '2007-01-11', 19, 'https://www.gutenberg.org/ebooks/20334', 'en', 134), +(47420, 'The Argentine Republic', 'Anonymous', '2011-09-10', 13, 'https://www.gutenberg.org/ebooks/37383', 'en', 3035), +(47421, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 05', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5556', 'en', 803), +(47422, 'Jack in the Rockies: A Boy\'s Adventures with a Pack Train', 'Grinnell, George Bird', '2014-01-15', 19, 'https://www.gutenberg.org/ebooks/44671', 'en', 16415), +(47423, 'Child\'s Health Primer For Primary Classes\r\nWith Special Reference to the Effects of Alcoholic Drinks, Stimulants, and Narcotics upon The Human System', 'Andrews, Jane', '2008-05-30', 26, 'https://www.gutenberg.org/ebooks/25646', 'en', 4880), +(47424, 'Made to Measure\nDeep Waters, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11473', 'en', 1902), +(47425, 'A Ladder of Swords: A Tale of Love, Laughter and Tears', 'Parker, Gilbert', '2012-11-06', 18, 'https://www.gutenberg.org/ebooks/41303', 'en', 4434), +(47426, 'Health, Happiness, and Longevity\nHealth without medicine: happiness without money: the result, longevity', 'McCarty, Louis Philippe', '2012-03-21', 141, 'https://www.gutenberg.org/ebooks/39219', 'en', 295), +(47427, '\"Phiz\" (Hablot Knight Browne), a Memoir.', 'Kitton, Frederic George', '2010-09-14', 3, 'https://www.gutenberg.org/ebooks/33723', 'en', 16416), +(47428, 'Cambridge and Its Colleges', 'Thompson, A. Hamilton (Alexander Hamilton)', '2018-06-03', 12, 'https://www.gutenberg.org/ebooks/57266', 'en', 16417), +(47429, 'The Arbiter: A Novel', 'Bell, Florence Eveleen Eleanore Olliffe, Lady', '2008-03-10', 9, 'https://www.gutenberg.org/ebooks/24794', 'en', 1319), +(47430, 'Kalevala näyttämöllä: II sarja (of 3)', NULL, '2016-07-08', 3, 'https://www.gutenberg.org/ebooks/52526', 'fi', 382), +(47431, 'The Age of Dryden', 'Garnett, Richard', '2012-05-27', 29, 'https://www.gutenberg.org/ebooks/39817', 'en', 16418), +(47432, 'Beadle\'s Dime Book of Practical Etiquette for Ladies and Gentlemen\nBeing a Guide to True Gentility and Good-Breeding, and a Complete Directory to the Usages and Observances of Society', 'Anonymous', '2014-05-05', 47, 'https://www.gutenberg.org/ebooks/45591', 'en', 788), +(47433, 'Tempeste', 'Negri, Ada', '2011-05-08', 17, 'https://www.gutenberg.org/ebooks/36063', 'it', 739), +(47434, 'The Middle Kingdom, Volume 1 (of 2)\r\nA Survey of the Geography, Government, Literature, Social Life, Arts, and History of the Chinese Empire and its Inhabitants', 'Williams, S. Wells (Samuel Wells)', '2018-09-08', 27, 'https://www.gutenberg.org/ebooks/57868', 'en', 6825), +(47435, 'Doctor Therne', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 47, 'https://www.gutenberg.org/ebooks/5764', 'en', 1563), +(47436, 'Military schools and courses of instruction in the science and art of war,\r\nin France, Prussia, Austria, Russia, Sweden, Switzerland, Sardinia, England, and the United States. Drawn from recent official reports and documents. Revised Edition', NULL, '2013-12-16', 18, 'https://www.gutenberg.org/ebooks/44443', 'en', 16419), +(47437, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 17, No. 102, June, 1876', 'Various', '2004-12-12', 9, 'https://www.gutenberg.org/ebooks/14333', 'en', 162), +(47438, 'How Ethel Hollister Became a Campfire Girl', 'Benson, Irene Elliott', '2006-12-13', 23, 'https://www.gutenberg.org/ebooks/20106', 'en', 622), +(47439, 'Number 70, Berlin: A Story of Britain\'s Peril', 'Le Queux, William', '2012-10-21', 11, 'https://www.gutenberg.org/ebooks/41131', 'en', 579), +(47440, 'The Job: An American Novel', 'Lewis, Sinclair', '2008-05-15', 51, 'https://www.gutenberg.org/ebooks/25474', 'en', 1660), +(47441, 'Argentina and Uruguay', 'Ross, Gordon', '2017-12-16', 17, 'https://www.gutenberg.org/ebooks/56186', 'en', 14493), +(47442, 'Over There: War Scenes on the Western Front', 'Bennett, Arnold', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11641', 'en', 2223), +(47443, 'Sailors\' Knots (Entire Collection)', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 101, 'https://www.gutenberg.org/ebooks/10793', 'en', 72), +(47444, 'Flat Machine Knitting and Fabrics', 'Buck, H. D. (Horace Davis)', '2018-04-26', 30, 'https://www.gutenberg.org/ebooks/57054', 'en', 7970), +(47445, 'Tales of Passed Times', 'Perrault, Charles', '2010-08-23', 133, 'https://www.gutenberg.org/ebooks/33511', 'en', 7174), +(47446, 'Whose Body?\nA Lord Peter Wimsey Novel', 'Sayers, Dorothy L. (Dorothy Leigh)', '2019-02-03', 526, 'https://www.gutenberg.org/ebooks/58820', 'en', 128), +(47447, 'The German Emperor as Shown in His Public Utterances', 'William II, German Emperor', '2013-09-08', 17, 'https://www.gutenberg.org/ebooks/43666', 'en', 16420), +(47448, 'Character', 'Smiles, Samuel', '2001-03-01', 66, 'https://www.gutenberg.org/ebooks/2541', 'en', 740), +(47449, 'Dave Porter and His Double; Or, The Disapperarance of the Basswood Fortune', 'Stratemeyer, Edward', '2009-11-02', 12, 'https://www.gutenberg.org/ebooks/30394', 'en', 9616), +(47450, 'Bird of Paradise', 'Leverson, Ada', '2008-11-24', 12, 'https://www.gutenberg.org/ebooks/27323', 'en', 61), +(47451, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 17, No. 097, January, 1876', 'Various', '2004-08-04', 22, 'https://www.gutenberg.org/ebooks/13116', 'en', 210), +(47452, 'In Our Convent Days', 'Repplier, Agnes', '2017-10-08', 5, 'https://www.gutenberg.org/ebooks/55703', 'en', 16421), +(47453, 'Widger\'s Quotations from the Project Gutenberg Editions of the Works of Oliver W. Holmes, Sr.', 'Holmes, Oliver Wendell', '2002-10-01', 8, 'https://www.gutenberg.org/ebooks/3493', 'en', 1026), +(47454, 'A Short Account of the History of Mathematics', 'Ball, W. W. Rouse (Walter William Rouse)', '2010-02-10', 226, 'https://www.gutenberg.org/ebooks/31246', 'en', 127), +(47455, 'Eliza', 'Pain, Barry', '2007-12-09', 55, 'https://www.gutenberg.org/ebooks/23783', 'en', 72), +(47456, 'Little Journey to Puerto Rico\r\nFor Intermediate and Upper Grades', 'George, Marian Minnie', '2006-02-01', 43, 'https://www.gutenberg.org/ebooks/9995', 'en', 15393), +(47457, 'Tioba, and Other Tales', 'Colton, Arthur', '2015-10-21', 5, 'https://www.gutenberg.org/ebooks/50271', 'en', 112), +(47458, 'Sonetti', 'Pascarella, Cesare', '2010-12-23', 32, 'https://www.gutenberg.org/ebooks/34734', 'it', 16422), +(47459, 'Picturesque Quebec : a sequel to Quebec past and present', 'Le Moine, J. M. (James MacPherson), Sir', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/7033', 'en', 7377), +(47460, 'L\'Illustration, No. 1585, 12 Juillet 1873', 'Various', '2014-07-17', 6, 'https://www.gutenberg.org/ebooks/46314', 'fr', 150), +(47461, 'Weymouth New Testament in Modern Speech, James', 'Weymouth, Richard Francis', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/8847', 'en', 7164), +(47462, 'The Ancient Irish Epic Tale Táin Bó Cúalnge', NULL, '2005-08-07', 124, 'https://www.gutenberg.org/ebooks/16464', 'en', 193), +(47463, 'The Unsolved Riddle of Social Justice', 'Leacock, Stephen', '2007-09-17', 33, 'https://www.gutenberg.org/ebooks/22651', 'en', 254), +(47464, 'Home Missions in Action', 'Allen, Edith H. (Edith Hedden)', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/8427', 'en', 16423), +(47465, 'An Eye for an Eye', 'Trollope, Anthony', '2005-10-06', 48, 'https://www.gutenberg.org/ebooks/16804', 'en', 109), +(47466, 'Kolme runokertomusta: Korinton piiritys. Mazeppa. Chillonin vanki.', 'Byron, George Gordon Byron, Baron', '2015-08-14', 13, 'https://www.gutenberg.org/ebooks/49700', 'fi', 12749), +(47467, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 362, March 21, 1829', 'Various', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/12498', 'en', 133), +(47468, 'Both Sides the Border: A Tale of Hotspur and Glendower', 'Henty, G. A. (George Alfred)', '2006-08-17', 50, 'https://www.gutenberg.org/ebooks/19070', 'en', 16424), +(47469, 'Great Epochs in American History, Vol. II\nThe Planting Of The First Colonies: 1562—1733', NULL, '2005-06-11', 20, 'https://www.gutenberg.org/ebooks/16038', 'en', 207), +(47470, 'I Barbarò: Le lagrime del prossimo. vol. 1', 'Rovetta, Gerolamo', '2014-09-01', 6, 'https://www.gutenberg.org/ebooks/46748', 'it', 1544), +(47471, 'Sex-linked Inheritance in Drosophila', 'Bridges, Calvin B. (Calvin Blackman)', '2010-11-18', 11, 'https://www.gutenberg.org/ebooks/34368', 'en', 3049), +(47472, 'At the Back of the North Wind', 'MacDonald, George', '2009-05-01', 7, 'https://www.gutenberg.org/ebooks/28737', 'en', 1007), +(47473, 'The Present Condition of Organic Nature\r\nLecture I. (of VI.), \"Lectures to Working Men\", at the Museum of Practical Geology, 1863, on Darwin\'s Work: \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 17, 'https://www.gutenberg.org/ebooks/2921', 'en', 5893), +(47474, 'Witching Hill', 'Hornung, E. W. (Ernest William)', '2010-09-23', 41, 'https://www.gutenberg.org/ebooks/33971', 'en', 167), +(47475, 'Index of the Project Gutenberg Works of Amelia Barr', 'Barr, Amelia E.', '2018-12-09', 4, 'https://www.gutenberg.org/ebooks/58440', 'en', 198), +(47476, 'Mark Rutherford\'s Deliverance', 'White, William Hale', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/5338', 'en', 1397), +(47477, 'A Man of the People: A Drama of Abraham Lincoln', 'Dixon, Thomas, Jr.', '2008-06-16', 27, 'https://www.gutenberg.org/ebooks/25814', 'en', 943), +(47478, 'Saved from the Sea; Or, The Loss of the Viper, and her Crew\'s Saharan Adventures', 'Kingston, William Henry Giles', '2007-05-16', 19, 'https://www.gutenberg.org/ebooks/21488', 'en', 3532), +(47479, 'The Siwash, Their Life, Legends, and Tales: Puget Sound and Pacfic Northwest', 'Costello, J. A. (Joseph Allen)', '2019-05-24', 33, 'https://www.gutenberg.org/ebooks/59592', 'en', 16425), +(47480, 'Timon of Athens', 'Shakespeare, William', '1999-06-01', 20, 'https://www.gutenberg.org/ebooks/1798', 'en', 5046), +(47481, 'The Peep of Day', 'Mortimer, Favell Lee', '2017-01-05', 25, 'https://www.gutenberg.org/ebooks/53894', 'en', 16426), +(47482, 'Captain Lucy in France', 'Havard, Aline', '2018-06-27', 11, 'https://www.gutenberg.org/ebooks/57408', 'en', 146), +(47483, 'Narrative of a Journey Down the Ohio and Mississippi in 1789-90', 'Forman, Samuel S.', '2014-02-01', 11, 'https://www.gutenberg.org/ebooks/44823', 'en', 16427), +(47484, 'Heist Job on Thizar', 'Garrett, Randall', '2008-04-10', 34, 'https://www.gutenberg.org/ebooks/25028', 'en', 574), +(47485, 'Three Sides of Paradise Green', 'Seaman, Augusta Huiell', '2016-08-31', 15, 'https://www.gutenberg.org/ebooks/52946', 'en', 1566), +(47486, 'Zoological Illustrations, Volume 3\r\nor, Original Figures and Descriptions of New, Rare, or Interesting Animals', 'Swainson, William', '2012-04-18', 6, 'https://www.gutenberg.org/ebooks/39477', 'en', 8764), +(47487, 'Westminster', 'Besant, Walter', '2019-01-11', 7, 'https://www.gutenberg.org/ebooks/58672', 'en', 16428), +(47488, 'Memories and Studies', 'James, William', '2007-03-08', 65, 'https://www.gutenberg.org/ebooks/20768', 'en', 20), +(47489, 'The Exhibition Drama\r\nComprising Drama, Comedy, and Farce, Together with Dramatic and Musical Entertainments', 'Baker, George M. (George Melville)', '2016-06-16', 10, 'https://www.gutenberg.org/ebooks/52348', 'en', 2830), +(47490, 'U.S. Copyright Renewals, 1956 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11813', 'en', 4170), +(47491, 'The History of Don Quixote, Volume 2, Part 33', 'Cervantes Saavedra, Miguel de', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/5936', 'en', 2176), +(47492, 'Histoire de la prostitution chez tous les peuples du monde depuis l\'antiquité la plus reculée jusqu\'à nos jours, tome 1/6', 'Jacob, P. L.', '2012-02-09', 23, 'https://www.gutenberg.org/ebooks/38797', 'fr', 2611), +(47493, 'High Life in New York\r\nA series of letters to Mr. Zephariah Slick, Justice of the Peace, and Deacon of the church over to Weathersfield in the state of Connecticut', 'Stephens, Ann S. (Ann Sophia)', '2012-05-07', 9, 'https://www.gutenberg.org/ebooks/39645', 'en', 14165), +(47494, 'Bahíyyih Khánum', 'Baha\'i World Centre', '2006-09-15', 15, 'https://www.gutenberg.org/ebooks/19242', 'en', 16429), +(47495, 'A Study in Scarlet', 'Doyle, Arthur Conan', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8615', 'en', 128), +(47496, 'Matter, Ether, and Motion: The Factors and Relations of Physical Science\r\nRev. ed., enl.', 'Dolbear, A. E. (Amos Emerson)', '2010-02-27', 34, 'https://www.gutenberg.org/ebooks/31428', 'en', 1194), +(47497, 'Helen Redeemed and Other Poems', 'Hewlett, Maurice', '2007-09-29', 19, 'https://www.gutenberg.org/ebooks/22803', 'en', 8), +(47498, 'Improvement in Fire-Arms and in the Apparatus Used Therewith\r\nUnited States Patent Office Application', 'Colt, Samuel', '2015-07-27', 74, 'https://www.gutenberg.org/ebooks/49532', 'en', 16430), +(47499, 'Around the Yule Log', 'Allen, Willis Boyd', '2013-06-22', 18, 'https://www.gutenberg.org/ebooks/43008', 'en', 179), +(47500, 'The Second Story of Meno\r\nA Continuation of Socrates\' Dialogue with Meno in Which the Boy Proves Root 2 is Irrational', 'Unknown', '2008-07-09', 47, 'https://www.gutenberg.org/ebooks/254', 'en', 1044), +(47501, 'Little Journeys to the Homes of the Great - Volume 02\r\nLittle Journeys To the Homes of Famous Women', 'Hubbard, Elbert', '2004-10-18', 36, 'https://www.gutenberg.org/ebooks/13778', 'en', 4289), +(47502, 'Eidola', 'Manning, Frederic', '2011-01-15', 9, 'https://www.gutenberg.org/ebooks/34966', 'en', 2100), +(47503, 'Letters from France', 'Bean, C. E. W. (Charles Edwin Woodrow)', '2006-05-14', 29, 'https://www.gutenberg.org/ebooks/18390', 'en', 3601), +(47504, 'Wise Saws and Modern Instances, Volume 1 (of 2)', 'Cooper, Thomas', '2017-11-12', 29, 'https://www.gutenberg.org/ebooks/55951', 'en', 409), +(47505, 'Vermont riflemen in the war for the union, 1861 to 1865\nA history of Company F, First United States sharp shooters', 'Ripley, William Young Warren', '2011-01-26', 9, 'https://www.gutenberg.org/ebooks/35088', 'en', 16431), +(47506, 'Comic Insects', 'Reid, F. A. S. (Francis Andrew Spilsbury)', '2013-09-28', 17, 'https://www.gutenberg.org/ebooks/43834', 'en', 786), +(47507, 'The Third Degree: A Narrative of Metropolitan Life', 'Hornblow, Arthur', '2009-04-05', 11, 'https://www.gutenberg.org/ebooks/28505', 'en', 262), +(47508, 'Sotainen tarina: Kertomus Heinärannalta', 'Kataja, Väinö', '2017-06-10', 7, 'https://www.gutenberg.org/ebooks/54883', 'fi', 175), +(47509, 'A Few Words About the Devil, and Other Biographical Sketches and Essays', 'Bradlaugh, Charles', '2011-05-29', 31, 'https://www.gutenberg.org/ebooks/36269', 'en', 1191), +(47510, 'The Last Boer War', 'Haggard, H. Rider (Henry Rider)', '2014-01-12', 51, 'https://www.gutenberg.org/ebooks/44649', 'en', 16432), +(47511, 'History of Atchison County, Kansas', 'Ingalls, Sheffield', '2018-11-01', 6, 'https://www.gutenberg.org/ebooks/58216', 'en', 16433), +(47512, 'New Tabernacle Sermons', 'Talmage, T. De Witt (Thomas De Witt)', '2004-11-24', 25, 'https://www.gutenberg.org/ebooks/14139', 'en', 16434), +(47513, 'Flags: Some Account of their History and Uses', 'Macgeorge, Andrew', '2012-03-21', 11, 'https://www.gutenberg.org/ebooks/39221', 'en', 12386), +(47514, 'Lost in the Air', 'Snell, Roy J. (Roy Judson)', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10599', 'en', 6791), +(47515, 'Traité du Pouvoir du Magistrat Politique sur les choses sacrées', 'Grotius, Hugo', '2005-02-04', 18, 'https://www.gutenberg.org/ebooks/14905', 'fr', 16435), +(47516, 'The White Cat', 'Burgess, Gelett', '2015-05-13', 20, 'https://www.gutenberg.org/ebooks/48084', 'en', 16436), +(47517, 'Tea Tray in the Sky', 'Smith, Evelyn E.', '2016-01-05', 31, 'https://www.gutenberg.org/ebooks/50847', 'en', 26), +(47518, 'Lyrics from the Song-Books of the Elizabethan Age', NULL, '2008-11-02', 35, 'https://www.gutenberg.org/ebooks/27129', 'en', 466), +(47519, 'The Square Root of 6', 'Nemiroff, Robert J.', '1996-08-01', 10, 'https://www.gutenberg.org/ebooks/630', 'en', 1044), +(47520, 'Aesop\'s Fables - Volume 11', 'Aesop', '2006-10-26', 7, 'https://www.gutenberg.org/ebooks/19626', 'en', 7140), +(47521, 'Miller\'s Mind training for children Book 3 (of 3)\r\nA practical training for successful living; Educational games that train the senses', 'Miller, William Emer', '2017-09-08', 15, 'https://www.gutenberg.org/ebooks/55509', 'en', 3749), +(47522, 'Onnellinen prinssi: Ynnä muita kertomuksia', 'Wilde, Oscar', '2014-09-21', 11, 'https://www.gutenberg.org/ebooks/46922', 'fi', 1007), +(47523, 'The World English Bible (WEB): Acts', 'Anonymous', '2005-06-01', 15, 'https://www.gutenberg.org/ebooks/8271', 'en', 5995), +(47524, 'Miss Sarah Jack of Spanish Town, Jamaica', 'Trollope, Anthony', '2003-01-01', 12, 'https://www.gutenberg.org/ebooks/3699', 'en', 16437), +(47525, 'Tanglewood Tales', 'Hawthorne, Nathaniel', '2016-05-03', 46, 'https://www.gutenberg.org/ebooks/51995', 'en', 8821), +(47526, 'The Pansy, November 1886, Vol. 14', 'Various', '2015-06-07', 12, 'https://www.gutenberg.org/ebooks/49156', 'en', 200), +(47527, 'La cité des eaux', 'Régnier, Henri de', '2007-11-22', 20, 'https://www.gutenberg.org/ebooks/23589', 'fr', 4086), +(47528, 'The Master Mummer', 'Oppenheim, E. Phillips (Edward Phillips)', '2009-02-23', 24, 'https://www.gutenberg.org/ebooks/28161', 'en', 128), +(47529, 'Fabeloj de Andersen', 'Andersen, H. C. (Hans Christian)', '2009-01-28', 58, 'https://www.gutenberg.org/ebooks/27915', 'eo', 1007), +(47530, 'Men, Women, and Boats', 'Crane, Stephen', '2005-01-01', 26, 'https://www.gutenberg.org/ebooks/7239', 'en', 179), +(47531, 'Frances of the Ranges; Or, The Old Ranchman\'s Treasure', 'Marlowe, Amy Bell', '2010-04-03', 30, 'https://www.gutenberg.org/ebooks/31870', 'en', 6766), +(47532, 'Penrod', 'Tarkington, Booth', '2006-03-15', 118, 'https://www.gutenberg.org/ebooks/402', 'en', 637), +(47533, 'Stephen Archer, and Other Tales', 'MacDonald, George', '2005-10-01', 27, 'https://www.gutenberg.org/ebooks/9191', 'en', 580), +(47534, 'The French Revolution - Volume 2', 'Taine, Hippolyte', '2008-06-22', 38, 'https://www.gutenberg.org/ebooks/2579', 'en', 1536), +(47535, 'The Bible, King James version, Book 43: John', 'Anonymous', '2005-04-01', 24, 'https://www.gutenberg.org/ebooks/8043', 'en', 5364), +(47536, 'Inmates of My House and Garden', 'Brightwen, Mrs. (Eliza Elder)', '2015-07-05', 28, 'https://www.gutenberg.org/ebooks/49364', 'en', 6059), +(47537, 'General Instructions for the Guidance of Post Office Inspectors in the Dominion of Canada', 'Campbell, Alexander', '2006-10-01', 8, 'https://www.gutenberg.org/ebooks/19414', 'en', 16438), +(47538, 'The Nest Builder: A Novel', 'Hale, Beatrice Forbes-Robertson', '2005-04-01', 14, 'https://www.gutenberg.org/ebooks/7837', 'en', 675), +(47539, 'Bébée; Or, Two Little Wooden Shoes', 'Ouida', '2004-11-01', 46, 'https://www.gutenberg.org/ebooks/13912', 'en', 751), +(47540, 'Harper\'s Young People, February 17, 1880\nAn Illustrated Weekly', 'Various', '2009-03-18', 6, 'https://www.gutenberg.org/ebooks/28353', 'en', 479), +(47541, 'Orkney and Shetland Folk 872-1350', 'Johnston, Alfred Wintle', '2015-10-18', 25, 'https://www.gutenberg.org/ebooks/50249', 'en', 16439), +(47542, 'The Young Miner; Or, Tom Nelson in California', 'Alger, Horatio, Jr.', '2007-09-18', 26, 'https://www.gutenberg.org/ebooks/22669', 'en', 658), +(47543, 'Remarks Concerning Stones Said to Have Fallen from the Clouds, Both in These Days, and in Antient Times', 'King, Edward', '2009-07-01', 11, 'https://www.gutenberg.org/ebooks/29281', 'en', 1443), +(47544, 'Juha Joutsia', 'Talvio, Maila', '2018-04-15', 3, 'https://www.gutenberg.org/ebooks/56982', 'fi', 175), +(47545, 'The Adventures of Ulysses the Wanderer', 'Thorne, Guy', '2013-01-28', 48, 'https://www.gutenberg.org/ebooks/41935', 'en', 3412), +(47546, 'Index of the Project Gutenberg Works of Alexandre Dumas, [père]', 'Dumas, Alexandre', '2018-10-04', 44, 'https://www.gutenberg.org/ebooks/58024', 'en', 198), +(47547, 'The Return of the Soldier', 'West, Rebecca', '2011-08-24', 85, 'https://www.gutenberg.org/ebooks/37189', 'en', 109), +(47548, 'Amok: Novellen einer Leidenschaft', 'Zweig, Stefan', '2018-09-05', 100, 'https://www.gutenberg.org/ebooks/57850', 'de', 6952), +(47549, 'The White Road to Verdun', 'Burke, Kathleen', '2004-03-01', 10, 'https://www.gutenberg.org/ebooks/11679', 'en', 93), +(47550, 'Progress Report', 'Clifton, Mark', '2011-07-27', 31, 'https://www.gutenberg.org/ebooks/36867', 'en', 179), +(47551, 'Admiral Jellicoe', 'Applin, Arthur', '2012-10-19', 18, 'https://www.gutenberg.org/ebooks/41109', 'en', 16440), +(47552, 'North-Pole Voyages\r\nEmbracing Sketches of the Important Facts and Incidents in the Latest American Efforts to Reach the North Pole, from the Second Grinnell Expedition to That of the Polaris', 'Mudge, Zachariah Atwell', '2012-02-29', 18, 'https://www.gutenberg.org/ebooks/39013', 'en', 11069), +(47553, 'Quelques dames du XVIe siècle et leurs peintres', 'Bouchot, Henri', '2019-02-03', 12, 'https://www.gutenberg.org/ebooks/58818', 'fr', 16441), +(47554, 'The Return of Tharn', 'Browne, Howard', '2010-08-24', 12, 'https://www.gutenberg.org/ebooks/33529', 'en', 5072), +(47555, 'The Clyde Mystery\na Study in Forgeries and Folklore', 'Lang, Andrew', '2007-03-25', 31, 'https://www.gutenberg.org/ebooks/20902', 'en', 2011), +(47556, 'Looking Further Forward\nAn Answer to Looking Backward by Edward Bellamy', 'Michaelis, Richard', '2019-04-22', 8, 'https://www.gutenberg.org/ebooks/59330', 'en', 5147), +(47557, 'The Adventures of Harry Richmond — Volume 5', 'Meredith, George', '2003-09-01', 19, 'https://www.gutenberg.org/ebooks/4448', 'en', 2588), +(47558, 'Erewhon; Or, Over the Range', 'Butler, Samuel', '1999-09-01', 237, 'https://www.gutenberg.org/ebooks/1906', 'en', 781), +(47559, 'Voyages abracadabrants du gros Philéas', 'Pitray, Olga de Ségur, vicomtesse', '2005-05-12', 11, 'https://www.gutenberg.org/ebooks/15823', 'fr', 388), +(47560, 'Egy magyar nábob (2. rész)', 'Jókai, Mór', '2018-01-15', 4, 'https://www.gutenberg.org/ebooks/56378', 'hu', 4489), +(47561, 'The Eyes of the Woods: A Story of the Ancient Wilderness', 'Altsheler, Joseph A. (Joseph Alexander)', '2008-03-05', 37, 'https://www.gutenberg.org/ebooks/24758', 'en', 3237), +(47562, 'Great Hike; or, The Pride of the Khaki Troop', 'Douglas, Alan, Captain', '2011-12-14', 10, 'https://www.gutenberg.org/ebooks/38307', 'en', 236), +(47563, 'Flora Adair; or, Love Works Wonders. Vol. 1 (of 2)', 'Donelan, A. M.', '2013-08-18', 14, 'https://www.gutenberg.org/ebooks/43498', 'en', 61), +(47564, 'Linguaggio e proverbi marinareschi', 'Celesia, Emanuele', '2015-01-25', 20, 'https://www.gutenberg.org/ebooks/48070', 'it', 16442), +(47565, 'Typhoon', 'Conrad, Joseph', '2005-11-01', 9, 'https://www.gutenberg.org/ebooks/9357', 'en', 324), +(47566, 'Die Räuber: Ein Schauspiel', 'Schiller, Friedrich', '2015-01-01', 56, 'https://www.gutenberg.org/ebooks/47804', 'de', 1298), +(47567, 'The Mayor of Warwick', 'Hopkins, Herbert M. (Herbert Müller)', '2006-06-27', 20, 'https://www.gutenberg.org/ebooks/18700', 'en', 10580); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(47568, 'Bill Nye\'s Chestnuts Old and New', 'Nye, Bill', '2016-05-02', 12, 'https://www.gutenberg.org/ebooks/51961', 'en', 190), +(47569, 'The World English Bible (WEB): Hebrews', 'Anonymous', '2005-06-01', 12, 'https://www.gutenberg.org/ebooks/8285', 'en', 11154), +(47570, 'De Ziel van het Noorden\r\nDe Aarde en haar Volken, 1917', 'Bertolini, Gino', '2009-02-26', 4, 'https://www.gutenberg.org/ebooks/28195', 'nl', 581), +(47571, 'The Extermination of the American Bison', 'Hornaday, William T. (William Temple)', '2006-02-10', 93, 'https://www.gutenberg.org/ebooks/17748', 'en', 16443), +(47572, 'History of the Great American Fortunes, Vol. I\nConditions in Settlement and Colonial Times', 'Myers, Gustavus', '2010-01-13', 15, 'https://www.gutenberg.org/ebooks/30956', 'en', 7432), +(47573, 'Friedrich v. Bodelschwingh: Ein Lebensbild', 'Bodelschwingh, Gustav von', '2014-10-04', 6, 'https://www.gutenberg.org/ebooks/47038', 'de', 16444), +(47574, 'Lewis Carroll in Wonderland and at Home: The Story of His Life', 'Moses, Belle', '2011-02-27', 19, 'https://www.gutenberg.org/ebooks/35418', 'en', 16445), +(47575, 'Niels Ebbesen, and Germand Gladenswayne: Two Ballads', NULL, '2008-10-07', 15, 'https://www.gutenberg.org/ebooks/26833', 'en', 54), +(47576, 'A Guest at the Ludlow, and Other Stories', 'Nye, Bill', '2010-04-04', 32, 'https://www.gutenberg.org/ebooks/31884', 'en', 770), +(47577, 'Captain Brand of the \"Centipede\"\nA Pirate of Eminence in the West Indies: His Love and Exploits, Together with Some Account of the Singular Manner by Which He Departed This Life', 'Wise, H. A. (Henry Augustus)', '2009-06-05', 13, 'https://www.gutenberg.org/ebooks/29047', 'en', 10195), +(47578, 'The Majesty of Calmness; individual problems and posibilities', 'Jordan, William George', '2004-11-01', 77, 'https://www.gutenberg.org/ebooks/6911', 'en', 1794), +(47579, 'Verhalen van de Zuidzee', 'London, Jack', '2006-06-07', 15, 'https://www.gutenberg.org/ebooks/18532', 'nl', 179), +(47580, 'Prayers of the Middle Ages: Light from a Thousand Years', NULL, '2015-02-11', 183, 'https://www.gutenberg.org/ebooks/48242', 'en', 8792), +(47581, 'A History of Horncastle, from the earliest period to the present time', 'Walter, James Conway', '2009-10-29', 39, 'https://www.gutenberg.org/ebooks/30358', 'en', 16446), +(47582, 'The Three Cities Trilogy: Paris, Volume 2', 'Zola, Émile', '2005-10-01', 15, 'https://www.gutenberg.org/ebooks/9165', 'en', 560), +(47583, 'Il secolo che muore, vol. IV', 'Guerrazzi, Francesco Domenico', '2013-05-23', 16, 'https://www.gutenberg.org/ebooks/42778', 'it', 61), +(47584, 'Der Tod des Cosimo', 'Ernst, Paul', '2015-07-07', 12, 'https://www.gutenberg.org/ebooks/49390', 'de', 1212), +(47585, 'Geerten Basse', 'Monteyne, Lode', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12008', 'nl', 61), +(47586, 'The Armourer\'s Prentices', 'Yonge, Charlotte M. (Charlotte Mary)', '2006-02-01', 35, 'https://www.gutenberg.org/ebooks/9959', 'en', 11540), +(47587, 'O Christão novo\r\nRomance Historico do Seculo XVI', 'Macedo, Diogo de', '2009-06-30', 11, 'https://www.gutenberg.org/ebooks/29275', 'pt', 16447), +(47588, 'Social Pictorial Satire', 'Du Maurier, George', '2004-07-07', 17, 'https://www.gutenberg.org/ebooks/12834', 'en', 16448), +(47589, 'The Bondman: A Story of the Times of Wat Tyler', 'O\'Neill, Mrs.', '2018-04-13', 11, 'https://www.gutenberg.org/ebooks/56976', 'en', 16449), +(47590, 'Munkkiniemen Elsa', 'Sissala, Eero', '2007-04-10', 15, 'https://www.gutenberg.org/ebooks/21018', 'fi', 61), +(47591, 'The White Road of Mystery: The Note-Book of an American Ambulancier', 'Orcutt, Philip Dana', '2019-03-19', 17, 'https://www.gutenberg.org/ebooks/59102', 'en', 3872), +(47592, 'Andromache: A Play in Three Acts', 'Murray, Gilbert', '2012-02-17', 14, 'https://www.gutenberg.org/ebooks/38909', 'en', 15084), +(47593, 'Kreikkalaisten ja Roomalaisten Mytologiia, eli Jumalaistarut ja Sankarisadut', 'Forsman, Kaarlo', '2016-11-02', 10, 'https://www.gutenberg.org/ebooks/53438', 'fi', 3412), +(47594, 'Smoke', 'Turgenev, Ivan Sergeevich', '2012-09-21', 39, 'https://www.gutenberg.org/ebooks/40813', 'en', 85), +(47595, 'George Alfred Henty: The Story of an Active Life', 'Fenn, George Manville', '2011-07-29', 14, 'https://www.gutenberg.org/ebooks/36893', 'en', 53), +(47596, 'The Old Stone House and Other Stories', 'Green, Anna Katharine', '2007-06-13', 55, 'https://www.gutenberg.org/ebooks/21824', 'en', 5319), +(47597, 'Etain the Beloved, and Other Poems', 'Cousins, James Henry', '2011-11-25', 23, 'https://www.gutenberg.org/ebooks/38135', 'en', 8), +(47598, 'A Florentine Tragedy; La Sainte Courtisane', 'Wilde, Oscar', '1998-05-01', 45, 'https://www.gutenberg.org/ebooks/1308', 'en', 402), +(47599, 'L\'Illustration, No. 3659, 12 Avril 1913', 'Various', '2011-11-06', 2, 'https://www.gutenberg.org/ebooks/37941', 'fr', 150), +(47600, 'British Museum (Natural History) General Guide', 'British Museum (Natural History)', '2018-05-05', 9, 'https://www.gutenberg.org/ebooks/57098', 'en', 16450), +(47601, 'In the Yule-Log Glow, Book II\nChristmas Tales from \'Round the World', NULL, '2006-08-20', 19, 'https://www.gutenberg.org/ebooks/19084', 'en', 585), +(47602, 'The Will to Believe, and Other Essays in Popular Philosophy', 'James, William', '2008-09-19', 209, 'https://www.gutenberg.org/ebooks/26659', 'en', 779), +(47603, 'A History of the Peninsular War, Vol. 2, Jan.-Sep. 1809\r\nFrom the Battle of Corunna to the End of the Talavera Campaign', 'Oman, Charles', '2017-03-04', 30, 'https://www.gutenberg.org/ebooks/54279', 'en', 2488), +(47604, 'We and the World: A Book for Boys. Part II', 'Ewing, Juliana Horatia Gatty', '2006-04-12', 16, 'https://www.gutenberg.org/ebooks/18156', 'en', 324), +(47605, 'Mollie\'s Substitute Husband', 'McConn, Max', '2015-04-01', 5, 'https://www.gutenberg.org/ebooks/48626', 'en', 109), +(47606, 'Visionaries', 'Huneker, James', '2006-03-04', 13, 'https://www.gutenberg.org/ebooks/17922', 'en', 179), +(47607, 'Concerning Cats: My Own and Some Others', 'Winslow, Helen M. (Helen Maria)', '2005-12-01', 23, 'https://www.gutenberg.org/ebooks/9501', 'en', 1576), +(47608, 'The Different Forms of Flowers on Plants of the Same Species', 'Darwin, Charles', '2003-03-01', 59, 'https://www.gutenberg.org/ebooks/3807', 'en', 16451), +(47609, 'William Shakespeare: His Homes and Haunts', 'Bensusan, S. L. (Samuel Levy)', '2009-08-05', 17, 'https://www.gutenberg.org/ebooks/29611', 'en', 16452), +(47610, 'Wallensteins Tod', 'Schiller, Friedrich', '2004-09-01', 40, 'https://www.gutenberg.org/ebooks/6549', 'de', 2341), +(47611, 'Manslaughter', 'Miller, Alice Duer', '2010-09-23', 27, 'https://www.gutenberg.org/ebooks/33985', 'en', 16453), +(47612, 'Curiosities of Great Britain: England and Wales Delineated Vol.1-11\r\nHistorical, Entertaining & Commercial; Alphabetically Arranged. 11 Volume set.', 'Dugdale, Thomas', '2011-09-24', 26, 'https://www.gutenberg.org/ebooks/37519', 'en', 16454), +(47613, 'The Tribune of Nova Scotia\nA Chronicle of Joseph Howe', 'Grant, W. L. (William Lawson)', '2008-03-28', 32, 'https://www.gutenberg.org/ebooks/24932', 'en', 16455), +(47614, 'Learn to Invent, First Steps for Beginners Young and Old\nPractical Instuction, Valuable Suggestions to Learn to Invent', 'Clark, Samuel Evans', '2014-03-15', 14, 'https://www.gutenberg.org/ebooks/45139', 'en', 1739), +(47615, 'A Philosophicall Essay for the Reunion of the Languages\nOr, The Art of Knowing All by the Mastery of One', 'Besnier, Pierre', '2005-04-18', 14, 'https://www.gutenberg.org/ebooks/15649', 'en', 16456), +(47616, 'The Theory of the Relativity of Motion', 'Tolman, Richard C. (Richard Chace)', '2010-06-17', 46, 'https://www.gutenberg.org/ebooks/32857', 'en', 2846), +(47617, 'Jamestown, Virginia: The Townsite and Its Story', 'Hatch, Charles E., Jr.', '2019-05-21', 28, 'https://www.gutenberg.org/ebooks/59566', 'en', 16457), +(47618, 'Country Life in the Poetry of John Clare', 'Coen, Mildred M.', '2017-01-01', 0, 'https://www.gutenberg.org/ebooks/53860', 'en', 16458), +(47619, 'The Crux: A Novel', 'Gilman, Charlotte Perkins', '2012-01-11', 72, 'https://www.gutenberg.org/ebooks/38551', 'en', 16459), +(47620, 'Storia d\'Italia dal 1789 al 1814, tomo V', 'Botta, Carlo', '2014-06-06', 18, 'https://www.gutenberg.org/ebooks/45905', 'it', 7184), +(47621, 'Mr. Witt\'s Widow: A Frivolous Tale', 'Hope, Anthony', '2012-12-10', 13, 'https://www.gutenberg.org/ebooks/41599', 'en', 1902), +(47622, 'Farm Boys and Girls', 'McKeever, William A. (William Arch)', '2012-04-19', 22, 'https://www.gutenberg.org/ebooks/39483', 'en', 1190), +(47623, 'The Wonderful Adventures of Nils', 'Lagerlöf, Selma', '2004-02-01', 195, 'https://www.gutenberg.org/ebooks/10935', 'en', 2203), +(47624, 'China und Japan: Erlebnisse, Studien, Beobachtungen', 'Hesse-Wartegg, Ernst von', '2019-01-13', 7, 'https://www.gutenberg.org/ebooks/58686', 'de', 2773), +(47625, 'The Cavaliers of Fortune; Or, British Heroes in Foreign Wars', 'Grant, James', '2019-06-15', 25, 'https://www.gutenberg.org/ebooks/59754', 'en', 462), +(47626, 'The Unspeakable Gentleman', 'Marquand, John P. (John Phillips)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10109', 'en', 323), +(47627, 'Witch, Warlock, and Magician\nHistorical Sketches of Magic and Witchcraft in England and Scotland', 'Adams, W. H. Davenport (William Henry Davenport)', '2012-02-04', 98, 'https://www.gutenberg.org/ebooks/38763', 'en', 3375), +(47628, 'History of the Origin, Formation, and Adoption of the Constitution of the United States, Vol. 2\r\nWith Notices of Its Principle Framers', 'Curtis, George Ticknor', '2012-09-05', 15, 'https://www.gutenberg.org/ebooks/40679', 'en', 3472), +(47629, 'Modest Remarks upon the Bishop of London\'s Letter Concerning the Late Earthquakes', 'Anonymous', '2010-05-05', 7, 'https://www.gutenberg.org/ebooks/32259', 'en', 16460), +(47630, 'The Rise of the Dutch Republic — Volume 10: 1566, part I', 'Motley, John Lothrop', '2004-01-01', 33, 'https://www.gutenberg.org/ebooks/4810', 'en', 6577), +(47631, 'The True Travels, Adventures, and Observations of Captain John Smith into Europe, Asia, Africa, and America\nFrom Ann. Dom. 1593 to 1629', 'Smith, John', '2017-07-25', 31, 'https://www.gutenberg.org/ebooks/55199', 'en', 13367), +(47632, 'Francois De Bienville: Scènes de la Vie Canadienne au XVII siècle', 'Marmette, Joseph', '2011-04-12', 40, 'https://www.gutenberg.org/ebooks/35840', 'fr', 16461), +(47633, 'Mr. Honey\'s Medium Business Dictionary (English-German)', 'Honig, Winfried', '2002-05-01', 9, 'https://www.gutenberg.org/ebooks/3209', 'de', 5219), +(47634, 'Het Leven der Dieren: Deel 1, Hoofdstuk 11: De Evenvingerigen', 'Brehm, Alfred Edmund', '2007-12-19', 15, 'https://www.gutenberg.org/ebooks/23925', 'nl', 2360), +(47635, 'An Account of the Bell Rock Light-House\nIncluding the Details of the Erection and Peculiar Structure of That Edifice; to Which Is Prefixed a Historical View of the Institution and Progress of the Northern Light-Houses', 'Stevenson, Robert', '2015-03-05', 25, 'https://www.gutenberg.org/ebooks/48414', 'en', 7540), +(47636, 'Sketches by Boz, illustrative of everyday life and every-day people', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9733', 'en', 9924), +(47637, 'My War Experiences in Two Continents', 'Macnaughtan, S. (Sarah)', '2006-05-10', 26, 'https://www.gutenberg.org/ebooks/18364', 'en', 12215), +(47638, 'Encyclopaedia Britannica, 11th Edition, \"Echinoderma\" to \"Edward, prince of Wales\"\r\nVolume 8, Slice 10', 'Various', '2011-01-17', 94, 'https://www.gutenberg.org/ebooks/34992', 'en', 1081), +(47639, 'Blackie Thorne at Camp Lenape', 'Saxon, Carl', '2016-03-23', 4, 'https://www.gutenberg.org/ebooks/51539', 'en', 7327), +(47640, 'Die Probefahrt nach Amerika', 'Schefer, Leopold', '2013-06-11', 16, 'https://www.gutenberg.org/ebooks/42912', 'de', 61), +(47641, 'Blackwood\'s Edinburgh Magazine, Volume 56, Number 350, December 1844', 'Various', '2009-07-16', 14, 'https://www.gutenberg.org/ebooks/29423', 'en', 711), +(47642, 'A Forgotten Hero\nNot for Him', 'Holt, Emily Sarah', '2007-10-20', 20, 'https://www.gutenberg.org/ebooks/23119', 'en', 16462), +(47643, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 13, July 17, 1858', NULL, '2017-06-09', 6, 'https://www.gutenberg.org/ebooks/54877', 'en', 1741), +(47644, 'Farm Gardening with Hints on Cheap Manuring\r\nQuick Cash Crops and How to Grow Them', 'Anonymous', '2011-05-08', 18, 'https://www.gutenberg.org/ebooks/36064', 'en', 903), +(47645, 'The Insect World\r\nBeing a Popular Account of the Orders of Insects; Together with a Description of the Habits and Economy of Some of the Most Interesting Species', 'Figuier, Louis', '2014-05-06', 29, 'https://www.gutenberg.org/ebooks/45596', 'en', 2667), +(47646, 'A Prince of Dreamers', 'Steel, Flora Annie Webster', '2012-05-26', 38, 'https://www.gutenberg.org/ebooks/39810', 'en', 16463), +(47647, 'Grimm\'s Fairy Tales', 'Grimm, Wilhelm', '2016-07-07', 990, 'https://www.gutenberg.org/ebooks/52521', 'en', 1007), +(47648, 'Under Fire', 'King, Charles', '2006-12-14', 52, 'https://www.gutenberg.org/ebooks/20101', 'en', 3196), +(47649, 'The Range Dwellers', 'Bower, B. M.', '2004-12-12', 56, 'https://www.gutenberg.org/ebooks/14334', 'en', 315), +(47650, 'The Mother\'s Dream, and Other Poems', 'Gould, Hannah Flagg', '2013-12-16', 5, 'https://www.gutenberg.org/ebooks/44444', 'en', 350), +(47651, 'Young\'s Demonstrative Translation of Scientific Secrets\r\nOr, A Collection of Above 500 Useful Receipts on a Variety of Subjects', 'Young, Daniel', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/5763', 'en', 2161), +(47652, 'The Ohio Journal of Science. Vol. XVI., No. 2 (December, 1915)', 'Various', '2017-12-15', 2, 'https://www.gutenberg.org/ebooks/56181', 'en', 1584), +(47653, 'Noa Noa', 'Morice, Charles', '2004-03-01', 60, 'https://www.gutenberg.org/ebooks/11646', 'fr', 16464), +(47654, 'The Blockade of Phalsburg: An Episode of the End of the Empire', 'Erckmann-Chatrian', '2011-07-26', 5, 'https://www.gutenberg.org/ebooks/36858', 'en', 98), +(47655, 'Frontier Boys on the Coast; Or, In the Pirate\'s Power', 'Roosevelt, Wyn', '2008-05-15', 15, 'https://www.gutenberg.org/ebooks/25473', 'en', 2788), +(47656, 'A Plucky Girl', 'Meade, L. T.', '2012-10-21', 12, 'https://www.gutenberg.org/ebooks/41136', 'en', 5987), +(47657, 'Wedding Day', 'Marks, Winston K. (Winston Kinney)', '2019-02-04', 21, 'https://www.gutenberg.org/ebooks/58827', 'en', 1061), +(47658, 'Abandoned', 'Verne, Jules', '2010-08-23', 150, 'https://www.gutenberg.org/ebooks/33516', 'en', 9528), +(47659, 'Dahcotah: Life and Legends of the Sioux Around Fort Snelling', 'Eastman, Mary H. (Mary Henderson)', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10794', 'en', 16465), +(47660, 'Kuloa ja kevättä: Novelleja', 'Kallas, Aino Krohn', '2018-04-26', 8, 'https://www.gutenberg.org/ebooks/57053', 'fi', 665), +(47661, 'The Brain and the Voice in Speech and Song', 'Mott, F. W. (Frederick Walker)', '2004-08-03', 25, 'https://www.gutenberg.org/ebooks/13111', 'en', 3663), +(47662, 'Where Deep Seas Moan', 'Robin, E. Gallienne', '2008-11-24', 12, 'https://www.gutenberg.org/ebooks/27324', 'en', 11891), +(47663, 'Hopalong Cassidy\'s Rustler Round-Up; Or, Bar-20', 'Mulford, Clarence Edward', '2001-03-01', 67, 'https://www.gutenberg.org/ebooks/2546', 'en', 315), +(47664, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 06', 'Stevenson, Robert Louis', '2009-11-02', 19, 'https://www.gutenberg.org/ebooks/30393', 'en', 232), +(47665, 'The Vision and Creed of Piers Ploughman, Volume 2', 'Langland, William', '2013-09-07', 22, 'https://www.gutenberg.org/ebooks/43661', 'en', 9426), +(47666, 'Harper\'s Young People, July 19, 1881\nAn Illustrated Weekly', 'Various', '2015-02-17', 3, 'https://www.gutenberg.org/ebooks/48289', 'en', 479), +(47667, 'Bluebeard; a musical fantasy', 'Wiggin, Kate Douglas Smith', '2002-10-01', 4, 'https://www.gutenberg.org/ebooks/3494', 'en', 16466), +(47668, 'Aliens', 'McFee, William', '2010-02-09', 14, 'https://www.gutenberg.org/ebooks/31241', 'en', 61), +(47669, 'Wilderness Babies', 'Schwartz, Julia Augusta', '2017-10-08', 17, 'https://www.gutenberg.org/ebooks/55704', 'en', 1787), +(47670, 'Grand-Daddy Whiskers, M.D.', 'Leonard, Nellie M. (Nellie Mabel)', '2005-04-01', 8, 'https://www.gutenberg.org/ebooks/7808', 'en', 1132), +(47671, 'Hymni ecclesiae', 'Newman, John Henry', '2010-12-23', 20, 'https://www.gutenberg.org/ebooks/34733', 'en', 16467), +(47672, 'Blackwood\'s Edinburgh Magazine — Volume 53, No. 327, January, 1843', 'Various', '2006-02-01', 51, 'https://www.gutenberg.org/ebooks/9992', 'en', 711), +(47673, 'More Tales of the Birds', 'Fowler, W. Warde (William Warde)', '2015-10-22', 12, 'https://www.gutenberg.org/ebooks/50276', 'en', 318), +(47674, 'The History of Sir Richard Calmady: A Romance', 'Malet, Lucas', '2007-12-09', 45, 'https://www.gutenberg.org/ebooks/23784', 'en', 4444), +(47675, 'Red Cap Tales, Stolen from the Treasure Chest of the Wizard of the North', 'Crockett, S. R. (Samuel Rutherford)', '2007-09-17', 47, 'https://www.gutenberg.org/ebooks/22656', 'en', 16468), +(47676, 'Weymouth New Testament in Modern Speech, 1 Thessalonians', 'Weymouth, Richard Francis', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8840', 'en', 16469), +(47677, 'In the Shadow of Death', 'Kritzinger, P. H. (Pieter Hendrick)', '2005-08-07', 7, 'https://www.gutenberg.org/ebooks/16463', 'en', 1311), +(47678, 'Jones of the 64th: A Tale of the Battles of Assaye and Laswaree', 'Brereton, F. S. (Frederick Sadleir)', '2014-07-17', 13, 'https://www.gutenberg.org/ebooks/46313', 'en', 16470), +(47679, 'Fleurs De Lys, and Other Poems', 'Weir, Arthur', '2004-12-01', 17, 'https://www.gutenberg.org/ebooks/7034', 'en', 1237), +(47680, 'The Patrician', 'Galsworthy, John', '2006-06-14', 30, 'https://www.gutenberg.org/ebooks/2774', 'en', 8836), +(47681, 'Beadle\'s Dime Song Book No. 5\nA Collection of New and Popular Comic and Sentimental Songs', 'Various', '2016-01-08', 8, 'https://www.gutenberg.org/ebooks/50878', 'en', 8833), +(47682, 'Tribunaes de Arbitros-Avindores', 'Bastos, Teixeira', '2009-05-25', 12, 'https://www.gutenberg.org/ebooks/28962', 'pt', 16471), +(47683, 'A Pickle for the Knowing Ones', 'Dexter, Timothy', '2013-08-12', 88, 'https://www.gutenberg.org/ebooks/43453', 'en', 16472), +(47684, 'Punch, or the London Charivari, Volume 100, April 18, 1891', 'Various', '2004-08-30', 2, 'https://www.gutenberg.org/ebooks/13323', 'en', 134), +(47685, 'When Winter Comes to Main Street', 'Overton, Grant M. (Grant Martin)', '2008-11-01', 16, 'https://www.gutenberg.org/ebooks/27116', 'en', 16473), +(47686, 'Aesop\'s Fables - Volume 04', 'Aesop', '2006-10-26', 13, 'https://www.gutenberg.org/ebooks/19619', 'en', 7140), +(47687, 'Historical Record of the Sixth, or Inniskilling Regiment of Dragoons\r\nContaining an Account of the Formation of the Regiment in 1689, and of Its Subsequent Services to 1846', 'Cannon, Richard', '2017-09-13', 2, 'https://www.gutenberg.org/ebooks/55536', 'en', 16474), +(47688, 'The Deacon: An Original Comedy Drama in Five Acts', 'Dale, Horace C.', '2013-04-22', 7, 'https://www.gutenberg.org/ebooks/42581', 'en', 61), +(47689, 'Maamiesajoiltani', 'Reuter, Fritz', '2015-06-08', 7, 'https://www.gutenberg.org/ebooks/49169', 'fi', 5500), +(47690, 'How Department Stores Are Carried On', 'Phillips, W. B. (Wesley Briggs)', '2010-01-25', 6, 'https://www.gutenberg.org/ebooks/31073', 'en', 16475), +(47691, 'Romantic legends of Spain', 'Bécquer, Gustavo Adolfo', '2015-09-23', 33, 'https://www.gutenberg.org/ebooks/50044', 'en', 7963), +(47692, 'The Traveling Engineers\' Association to Improve the Locomotive Engine Service of American Railroads\r\nExamination Questions and Answers for Firemen for Promotion and New Men for Employment', 'Traveling Engineers\' Association', '2006-02-17', 29, 'https://www.gutenberg.org/ebooks/17783', 'en', 6017), +(47693, 'The Month of Mary, According to the Spirit of St. Francis of Sales\nThirty-One Considerations With Examples, Prayers, Etc.', 'Francis, de Sales, Saint', '2015-05-05', 5, 'https://www.gutenberg.org/ebooks/48887', 'en', 16476), +(47694, 'Wolf and Coyote Trapping: An Up-to-Date Wolf Hunter\'s Guide\r\nGiving the Most Successful Methods of Experienced \"Wolfers\" for Hunting and Trapping These Animals, Also Gives Their Habits in Detail.', 'Harding, A. R. (Arthur Robert)', '2010-11-29', 24, 'https://www.gutenberg.org/ebooks/34501', 'en', 2543), +(47695, 'Henry Ford\'s Own Story\r\nHow a Farmer Boy Rose to the Power that goes with Many Millions, Yet Never Lost Touch with Humanity', 'Lane, Rose Wilder', '2014-06-28', 51, 'https://www.gutenberg.org/ebooks/46121', 'en', 16477), +(47696, 'Die Geburt der Tragödie: Versuch einer Selbstkritik', 'Nietzsche, Friedrich Wilhelm', '2005-01-01', 91, 'https://www.gutenberg.org/ebooks/7206', 'de', 16478), +(47697, 'Bohemia, from the earliest times to the fall of national independence in 1620\r\nWith a short summary of later events', 'Maurice, C. Edmund (Charles Edmund)', '2015-09-13', 11, 'https://www.gutenberg.org/ebooks/49955', 'en', 16479), +(47698, 'The Last of the Chiefs: A Story of the Great Sioux War', 'Altsheler, Joseph A. (Joseph Alexander)', '2007-08-31', 37, 'https://www.gutenberg.org/ebooks/22464', 'en', 98), +(47699, 'The Safety Curtain, and Other Stories', 'Dell, Ethel M. (Ethel May)', '2005-09-04', 28, 'https://www.gutenberg.org/ebooks/16651', 'en', 61), +(47700, 'The Chautauquan, Vol. 04, October 1883', 'Chautauqua Institution', '2016-02-13', 7, 'https://www.gutenberg.org/ebooks/51196', 'en', 1115), +(47701, 'Ireland under the Tudors, with a Succinct Account of the Earlier History. Vol. 3 (of 3)', 'Bagwell, Richard', '2016-08-03', 14, 'https://www.gutenberg.org/ebooks/52713', 'en', 11797), +(47702, 'The Inflexible Captive: A Tragedy, in Five Acts', 'More, Hannah', '2011-05-29', 12, 'https://www.gutenberg.org/ebooks/36256', 'en', 16480), +(47703, 'The Amazing Marriage — Volume 1', 'Meredith, George', '2003-09-01', 7, 'https://www.gutenberg.org/ebooks/4483', 'en', 675), +(47704, 'Histoire des salons de Paris (Tome 6/6)\r\nTableaux et portraits du grand monde sous Louis XVI, Le Directoire, le Consulat et l\'Empire, la Restauration et le règne de Louis-Philippe Ier', 'Abrantès, Laure Junot, duchesse d\'', '2014-01-15', 27, 'https://www.gutenberg.org/ebooks/44676', 'fr', 2243), +(47705, 'Ma vie musicale', 'Rimsky-Korsakov, Nikolay', '2011-09-10', 11, 'https://www.gutenberg.org/ebooks/37384', 'fr', 3182), +(47706, 'In the Fire of the Forge: A Romance of Old Nuremberg — Complete', 'Ebers, Georg', '2004-11-15', 12, 'https://www.gutenberg.org/ebooks/5551', 'en', 5290), +(47707, 'Punch, or the London Charivari, Volume 104, January 28, 1893', 'Various', '2007-01-11', 14, 'https://www.gutenberg.org/ebooks/20333', 'en', 134), +(47708, 'Humanity to Honey-Bees\r\nor, Practical Directions for the Management of Honey-Bees Upon an Improved and Humane Plan, by Which the Lives of Bees May Be Preserved, and Abundance of Honey of a Superior Quality May Be Obtained', 'Nutt, Thomas', '2018-11-04', 11, 'https://www.gutenberg.org/ebooks/58229', 'en', 16481), +(47709, 'The Belfry', 'Sinclair, May', '2004-11-21', 15, 'https://www.gutenberg.org/ebooks/14106', 'en', 154), +(47710, 'The Mother of Parliaments', 'Graham, Harry', '2012-11-06', 7, 'https://www.gutenberg.org/ebooks/41304', 'en', 12047), +(47711, 'Sam\'s Ghost\nDeep Waters, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11474', 'en', 3421), +(47712, 'Cartas de Inglaterra', 'Queirós, Eça de', '2008-05-29', 47, 'https://www.gutenberg.org/ebooks/25641', 'pt', 10346), +(47713, 'Blow The Man Down: A Romance Of The Coast', 'Day, Holman', '2008-03-09', 22, 'https://www.gutenberg.org/ebooks/24793', 'en', 48), +(47714, 'El Doctor Centeno (novela completa)', 'Pérez Galdós, Benito', '2018-06-03', 21, 'https://www.gutenberg.org/ebooks/57261', 'es', 1353), +(47715, 'Rambles in an Old City\ncomprising antiquarian, historical, biographical and political associations', 'Madders, Susan Swain', '2010-09-14', 11, 'https://www.gutenberg.org/ebooks/33724', 'en', 16482), +(47716, 'Whale Fishery of New England', NULL, '2017-07-19', 12, 'https://www.gutenberg.org/ebooks/55152', 'en', 3261), +(47717, 'String Quartet No. 04 in C minor Opus 18', 'Beethoven, Ludwig van', '2004-06-23', 9, 'https://www.gutenberg.org/ebooks/12695', 'en', 3385), +(47718, 'Psychic Phenomena\r\nA Brief Account of the Physical Manifestations Observed in Psychical Research', 'Bennett, Edward T.', '2010-02-27', 20, 'https://www.gutenberg.org/ebooks/31417', 'en', 6363), +(47719, 'In the Carquinez Woods', 'Harte, Bret', '2006-05-17', 17, 'https://www.gutenberg.org/ebooks/2310', 'en', 109), +(47720, 'Guy Kenmore\'s Wife, and The Rose and the Lily', 'Miller, Alex. McVeigh, Mrs.', '2013-06-26', 10, 'https://www.gutenberg.org/ebooks/43037', 'en', 61), +(47721, 'Notes and Queries, Number 25, April 20, 1850', 'Various', '2004-10-14', 21, 'https://www.gutenberg.org/ebooks/13747', 'en', 105), +(47722, 'Khaled, A Tale of Arabia', 'Crawford, F. Marion (Francis Marion)', '2011-01-14', 27, 'https://www.gutenberg.org/ebooks/34959', 'en', 8693), +(47723, 'Yorktown and the Siege of 1781', 'Hatch, Charles E., Jr.', '2017-01-31', 9, 'https://www.gutenberg.org/ebooks/54080', 'en', 16483), +(47724, 'Dickens-Land', 'Nicklin, J. A. (John Arnold)', '2008-12-20', 9, 'https://www.gutenberg.org/ebooks/27572', 'en', 16484), +(47725, 'Cyclopedia of Commerce, Accountancy, Business Administration, v. 04 (of 10)', 'American School of Correspondence', '2014-08-09', 16, 'https://www.gutenberg.org/ebooks/46545', 'en', 2351), +(47726, 'What Will He Do with It? — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7662', 'en', 137), +(47727, 'Kept in the Dark', 'Trollope, Anthony', '2007-09-10', 60, 'https://www.gutenberg.org/ebooks/22000', 'en', 378), +(47728, 'Jane Eyre; ou Les mémoires d\'une institutrice', 'Brontë, Charlotte', '2005-07-07', 86, 'https://www.gutenberg.org/ebooks/16235', 'fr', 1080), +(47729, 'History of the Beef Cattle Industry in Illinois', 'Farley, Frank Webster', '2015-11-10', 8, 'https://www.gutenberg.org/ebooks/50420', 'en', 16485), +(47730, 'Birds Illustrated by Color Photography, Vol. 3, No. 1 [January, 1898]\r\nA Monthly Serial designed to Promote Knowledge of Bird-Life', 'Various', '2010-10-29', 32, 'https://www.gutenberg.org/ebooks/34165', 'en', 1254), +(47731, 'Het \"John Grier Home\"', 'Webster, Jean', '2014-11-29', 12, 'https://www.gutenberg.org/ebooks/47497', 'nl', 264), +(47732, 'Italian Highways and Byways from a Motor Car', 'Mansfield, M. F. (Milburg Francisco)', '2013-11-17', 7, 'https://www.gutenberg.org/ebooks/44212', 'en', 1896), +(47733, 'The Fortune of the Rougons', 'Zola, Émile', '2006-04-22', 90, 'https://www.gutenberg.org/ebooks/5135', 'en', 16486), +(47734, 'Darwinismus und Sozialismus: Der Kampf um das Dasein und die Moderne Gesellschaft', 'Büchner, Ludwig', '2007-03-06', 24, 'https://www.gutenberg.org/ebooks/20757', 'de', 16487), +(47735, 'The Land-War in Ireland: A History for the Times', 'Godkin, James', '2005-01-02', 21, 'https://www.gutenberg.org/ebooks/14562', 'en', 7413), +(47736, 'Annali d\'Italia, vol. 5\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2016-06-19', 19, 'https://www.gutenberg.org/ebooks/52377', 'it', 6107), +(47737, 'The Cockatoo\'s Story', 'Cupples, George, Mrs.', '2007-06-05', 13, 'https://www.gutenberg.org/ebooks/21685', 'en', 15442), +(47738, 'King Eric and the Outlaws, Vol. 2\r\nor, the Throne, the Church, and the People in the Thirteenth Century.', 'Ingemann, Bernhard Severin', '2011-07-05', 9, 'https://www.gutenberg.org/ebooks/36632', 'en', 7234), +(47739, 'Tales from the Operas', NULL, '2018-07-30', 18, 'https://www.gutenberg.org/ebooks/57605', 'en', 5808), +(47740, 'The History of Don Quixote, Volume 1, Part 07', 'Cervantes Saavedra, Miguel de', '2004-06-01', 42, 'https://www.gutenberg.org/ebooks/5909', 'en', 361), +(47741, 'Whirligigs', 'Henry, O.', '1999-01-01', 142, 'https://www.gutenberg.org/ebooks/1595', 'en', 112), +(47742, 'Weighed and Wanting: Addresses on the Ten Commandments', 'Moody, Dwight Lyman', '2010-08-03', 9, 'https://www.gutenberg.org/ebooks/33340', 'en', 2248), +(47743, 'Historic Tales: The Romance of Reality. Vol. 14 (of 15), King Arthur (2)', 'Morris, Charles', '2010-05-08', 31, 'https://www.gutenberg.org/ebooks/32292', 'en', 5637), +(47744, 'The Poetical Works of James Beattie', 'Beattie, James', '2013-01-02', 8, 'https://www.gutenberg.org/ebooks/41760', 'en', 8), +(47745, 'The Spectator, Volume 2.', 'Steele, Richard, Sir', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/11010', 'en', 13005), +(47746, '古文觀止', 'Wu, Dazhi, active 1678-1695', '2008-04-28', 52, 'https://www.gutenberg.org/ebooks/25225', 'zh', 11711), +(47747, 'The Continental Monthly, Vol. 6, No 2, August, 1864\nDevoted to Literature and National Policy', 'Various', '2007-02-11', 23, 'https://www.gutenberg.org/ebooks/20565', 'en', 162), +(47748, 'The Murder of Delicia', 'Corelli, Marie', '2016-09-19', 36, 'https://www.gutenberg.org/ebooks/53097', 'en', 128), +(47749, 'Bowdoin Boys in Labrador\r\nAn Account of the Bowdoin College Scientific Expedition to Labrador led by Prof. Leslie A. Lee of the Biological Department', 'Cilley, Jonathan Prince', '2005-01-21', 10, 'https://www.gutenberg.org/ebooks/14750', 'en', 2278), +(47750, 'Punch, or the London Charivari, Vol. 105, October 14th 1893', 'Various', '2013-10-23', 6, 'https://www.gutenberg.org/ebooks/44020', 'en', 134), +(47751, 'The Letters of Wolfgang Amadeus Mozart — Volume 01', 'Mozart, Wolfgang Amadeus', '2004-03-01', 238, 'https://www.gutenberg.org/ebooks/5307', 'en', 16488), +(47752, 'The Corner House Girls Among the Gypsies\nHow They Met, What Happened, and How It Ended', 'Hill, Grace Brooks', '2011-06-12', 16, 'https://www.gutenberg.org/ebooks/36400', 'en', 1625), +(47753, 'De Leeuw van Vlaanderen\r\nOf de Slag der Gulden Sporen', 'Conscience, Hendrik', '2005-04-22', 63, 'https://www.gutenberg.org/ebooks/15682', 'nl', 16489), +(47754, 'L\'enfant chargé de chaînes', 'Mauriac, François', '2016-05-23', 25, 'https://www.gutenberg.org/ebooks/52145', 'fr', 259), +(47755, 'The Quest of the Four: A Story of the Comanches and Buena Vista', 'Altsheler, Joseph A. (Joseph Alexander)', '2012-08-11', 124, 'https://www.gutenberg.org/ebooks/40480', 'en', 315), +(47756, 'Down Town Brooklyn\r\nA Report to the Comptroller of the City of New York on Sites for Public Buildings and the Relocation of the Elevated Railroad Tracks now in Lower Fulton Street, Borough of Brooklyn', 'Brooklyn (New York, N.Y.). Committee of Ten', '2010-07-15', 6, 'https://www.gutenberg.org/ebooks/33172', 'en', 12176), +(47757, 'Sydney to Croydon (Northern Queensland)\r\nAn Interesting Account of a Journey to the Gulf Country with a Member of Parliament', 'Saltbush', '2018-07-03', 10, 'https://www.gutenberg.org/ebooks/57437', 'en', 12283), +(47758, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 395, October 24, 1829', 'Various', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/11222', 'en', 133), +(47759, 'A Son of the Immortals', 'Tracy, Louis', '2008-04-08', 30, 'https://www.gutenberg.org/ebooks/25017', 'en', 297), +(47760, 'The Sword of Gideon', 'Bloundelle-Burton, John', '2016-09-05', 8, 'https://www.gutenberg.org/ebooks/52979', 'en', 15846), +(47761, 'Twelve Years of a Soldier\'s Life in India\nBeing Extracts from the Letters of the Late Major W. S. R. Hodson, B. A.', 'Hodson, W. S. R. (William Stephen Raikes)', '2012-04-14', 26, 'https://www.gutenberg.org/ebooks/39448', 'en', 16490), +(47762, 'The Weird Sisters: A Romance. Volume 1 (of 3)', 'Dowling, Richard', '2012-12-04', 17, 'https://www.gutenberg.org/ebooks/41552', 'en', 16491), +(47763, 'Hippolytus; The Bacchae', 'Euripides', '2005-07-01', 80, 'https://www.gutenberg.org/ebooks/8418', 'en', 16492), +(47764, 'Gedichte', 'Hofmannsthal, Hugo von', '2010-03-13', 44, 'https://www.gutenberg.org/ebooks/31625', 'de', 5045), +(47765, 'A Daughter of Raasay: A Tale of the \'45', 'Raine, William MacLeod', '2008-09-23', 21, 'https://www.gutenberg.org/ebooks/26692', 'en', 15656), +(47766, 'Where Your Treasure Is: Being the Personal Narrative of Ross Sidney, Diver', 'Day, Holman', '2017-08-15', 7, 'https://www.gutenberg.org/ebooks/55360', 'en', 14613), +(47767, 'How to Observe in Archaeology\r\nSuggestions for Travellers in the Near and Middle East', 'British Museum', '2004-10-01', 43, 'https://www.gutenberg.org/ebooks/13575', 'en', 2011), +(47768, 'A Letter to the Right Honorable the Lord Chancellor, on the Nature and Interpretation of Unsoundness of Mind, and Imbecility of Intellect', 'Haslam, John', '2009-01-07', 14, 'https://www.gutenberg.org/ebooks/27740', 'en', 16493), +(47769, 'Influenza', 'Provincial Board of Health of Ontario', '2019-08-11', 373, 'https://www.gutenberg.org/ebooks/60087', 'en', 3851), +(47770, 'History of Friedrich II of Prussia — Appendix', 'Carlyle, Thomas', '2008-06-16', 21, 'https://www.gutenberg.org/ebooks/2122', 'en', 3120), +(47771, 'Is the Devil a Myth?', 'Wimberly, C. F. (Charles Franklin)', '2013-07-12', 31, 'https://www.gutenberg.org/ebooks/43205', 'en', 10853), +(47772, 'The Carved Cupboard', 'Le Feuvre, Amy', '2007-08-04', 17, 'https://www.gutenberg.org/ebooks/22232', 'en', 751), +(47773, 'The Dead Boxer\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 19, 'https://www.gutenberg.org/ebooks/16007', 'en', 440), +(47774, 'Happiness as Found in Forethought Minus Fearthought', 'Fletcher, Horace', '2014-09-06', 20, 'https://www.gutenberg.org/ebooks/46777', 'en', 6079), +(47775, 'Merimiehen matkamuistelmia 2\r\nMaalla ja merellä', 'Högman, Aukusti', '2006-11-20', 8, 'https://www.gutenberg.org/ebooks/19873', 'fi', 61), +(47776, 'Les trois hommes en Allemagne', 'Jerome, Jerome K. (Jerome Klapka)', '2011-02-14', 15, 'https://www.gutenberg.org/ebooks/35285', 'fr', 637), +(47777, 'Terre Napoleón; a History of French Explorations and Projects in Australia', 'Scott, Ernest, Sir', '2005-02-01', 18, 'https://www.gutenberg.org/ebooks/7450', 'en', 2471), +(47778, 'Passing of the Third Floor Back', 'Jerome, Jerome K. (Jerome Klapka)', '1997-04-01', 135, 'https://www.gutenberg.org/ebooks/865', 'en', 179), +(47779, 'Honor: A Play in Four Acts', 'Sudermann, Hermann', '2010-11-18', 7, 'https://www.gutenberg.org/ebooks/34357', 'en', 493), +(47780, 'In the Court of King Arthur', 'Lowe, Samuel E. (Samuel Edward)', '2004-09-01', 32, 'https://www.gutenberg.org/ebooks/6582', 'en', 8291), +(47781, 'Cradle Songs', 'Various', '2015-12-05', 7, 'https://www.gutenberg.org/ebooks/50612', 'en', 343), +(47782, 'Practical Education, Volume I', 'Edgeworth, Richard Lovell', '2009-05-07', 32, 'https://www.gutenberg.org/ebooks/28708', 'en', 973), +(47783, 'Punch, or the London Charivari, Volume 104, May 6, 1893', 'Various', '2008-08-28', 2, 'https://www.gutenberg.org/ebooks/26454', 'en', 134), +(47784, 'Canada under British Rule 1760-1900', 'Bourinot, John George', '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/12661', 'en', 5181), +(47785, 'Some Answered Questions', '`Abdu\'l-Bahá', '2006-09-18', 22, 'https://www.gutenberg.org/ebooks/19289', 'en', 7255), +(47786, 'And Then the Town Took Off', 'Wilson, Richard', '2013-02-16', 48, 'https://www.gutenberg.org/ebooks/42111', 'en', 67), +(47787, 'Mr. Bonaparte of Corsica', 'Bangs, John Kendrick', '2002-05-01', 10, 'https://www.gutenberg.org/ebooks/3236', 'en', 16494), +(47788, 'A Vindication of the Seventh-Day Sabbath and the Commandments of God\r\nWith a Further History of God\'s Peculiar People from 1847-1848', 'Bates, Joseph', '2009-11-23', 8, 'https://www.gutenberg.org/ebooks/30531', 'en', 16495), +(47789, 'An Eye for an Eye\nBig Blue Book no. B-24', 'Darrow, Clarence', '2017-01-30', 23, 'https://www.gutenberg.org/ebooks/54074', 'en', 16496), +(47790, 'The Mentor: The War of 1812\nVolume 4, Number 3, Serial Number 103; 15 March, 1916.', 'Hart, Albert Bushnell', '2008-12-22', 14, 'https://www.gutenberg.org/ebooks/27586', 'en', 7149), +(47791, 'A Strange Story — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7696', 'en', 137), +(47792, 'Hybridization Between Two Species of Garter Snakes', 'Smith, Hobart M. (Hobart Muir)', '2011-01-23', 4, 'https://www.gutenberg.org/ebooks/35043', 'en', 16497), +(47793, 'Maalaiskuvia 2: Kokoelma novelleja', 'Kataja, Väinö', '2016-03-19', 1, 'https://www.gutenberg.org/ebooks/51506', 'fi', 175), +(47794, 'Pikku kettuja', 'Stowe, Harriet Beecher', '2005-12-15', 15, 'https://www.gutenberg.org/ebooks/17313', 'fi', 740), +(47795, 'Eric, or Little by Little', 'Farrar, F. W. (Frederic William)', '2007-10-20', 40, 'https://www.gutenberg.org/ebooks/23126', 'en', 1779), +(47796, 'The Apology of the Augsburg Confession', 'Melanchthon, Philipp', '2004-10-01', 53, 'https://www.gutenberg.org/ebooks/6744', 'en', 4988), +(47797, 'John Knox', 'Taylor, William M. (William Mackergo)', '2010-11-01', 4, 'https://www.gutenberg.org/ebooks/34191', 'en', 3371), +(47798, 'The Life of Robert, Lord Clive, Vol. 3 (of 3)\r\nCollected from the Family Papers Communicated by the Earl of Powis', 'Malcolm, John', '2017-06-05', 13, 'https://www.gutenberg.org/ebooks/54848', 'en', 2957), +(47799, 'Wintering in the Riviera\r\nWith Notes of Travel in Italy and France, and Practical Hints to Travellers', 'Miller, William James', '2014-11-26', 19, 'https://www.gutenberg.org/ebooks/47463', 'en', 1896), +(47800, 'Birket Foster, R.W.S.\nSixteen examples in colour of the artist\'s work', 'Cundall, H. M. (Herbert Minton)', '2011-10-11', 2, 'https://www.gutenberg.org/ebooks/37714', 'en', 16498), +(47801, 'Christian Mysticism', 'Inge, William Ralph', '2005-01-04', 48, 'https://www.gutenberg.org/ebooks/14596', 'en', 4632), +(47802, 'The Lusitania\'s Last Voyage\r\nBeing a narrative of the torpedoing and sinking of the R. M. S. Lusitania by a German submarine off the Irish coast, May 7, 1915', 'Lauriat, Charles Emelius, Jr.', '2016-10-10', 10, 'https://www.gutenberg.org/ebooks/53251', 'en', 16499), +(47803, 'Rotkoista', 'Lehtimäki, Konrad', '2016-06-20', 14, 'https://www.gutenberg.org/ebooks/52383', 'fi', 175), +(47804, 'The City and the World and Other Stories', 'Kelley, Francis Clement, Bp.', '2005-03-23', 7, 'https://www.gutenberg.org/ebooks/15444', 'en', 942), +(47805, 'Army Boys on the Firing Line; or, Holding Back the German Drive', 'Randall, Homer', '2007-06-03', 19, 'https://www.gutenberg.org/ebooks/21671', 'en', 3466), +(47806, 'Das Buch Henoch', NULL, '2003-05-01', 96, 'https://www.gutenberg.org/ebooks/4013', 'de', 16500), +(47807, 'I promessi sposi.\r\nOpere di Alessando Manzoni, vol. 1', 'Manzoni, Alessandro', '2014-04-06', 196, 'https://www.gutenberg.org/ebooks/45334', 'it', 16501), +(47808, 'The Philadelphia Magazines and their Contributors 1741-1850', 'Smyth, Albert Henry', '2008-01-15', 27, 'https://www.gutenberg.org/ebooks/24303', 'en', 16502), +(47809, 'The Book of Household Management', 'Beeton, Mrs. (Isabella Mary)', '2003-11-01', 640, 'https://www.gutenberg.org/ebooks/10136', 'en', 3407), +(47810, 'A History of Spain\r\nfounded on the Historia de España y de la civilización española of Rafael Altamira', 'Chapman, Charles E. (Charles Edward)', '2012-09-02', 63, 'https://www.gutenberg.org/ebooks/40646', 'en', 6250), +(47811, 'Pagan and Christian Creeds: Their Origin and Meaning', 'Carpenter, Edward', '1998-12-01', 92, 'https://www.gutenberg.org/ebooks/1561', 'en', 16503), +(47812, 'Sugar Plum', 'Bretnor, Reginald', '2010-05-05', 30, 'https://www.gutenberg.org/ebooks/32266', 'en', 179), +(47813, 'The Last Miracle', 'Shiel, M. P. (Matthew Phipps)', '2013-01-06', 15, 'https://www.gutenberg.org/ebooks/41794', 'en', 61), +(47814, 'Eppur si muove – És mégis mozog a föld (1. rész)\nRegény', 'Jókai, Mór', '2018-03-12', 4, 'https://www.gutenberg.org/ebooks/56723', 'hu', 234), +(47815, 'Aedh Wishes for the Cloths of Heaven', 'Yeats, W. B. (William Butler)', '2007-01-20', 8, 'https://www.gutenberg.org/ebooks/20591', 'en', 8), +(47816, 'The Netherworld of Mendip\r\nExplorations in the great caverns of Somerset, Yorkshire, Derbyshire, and elsewhere', 'Baker, Ernest A. (Ernest Albert)', '2016-09-16', 10, 'https://www.gutenberg.org/ebooks/53063', 'en', 11456), +(47817, 'L\'Illustration, No. 3649, 1 Février 1913', 'Various', '2011-09-24', 4, 'https://www.gutenberg.org/ebooks/37526', 'fr', 150), +(47818, 'Shearing in the Riverina, New South Wales', 'Boldrewood, Rolf', '2003-07-01', 10, 'https://www.gutenberg.org/ebooks/4221', 'en', 16504), +(47819, 'The Life of Francis Thompson', 'Meynell, Everard', '2014-03-10', 15, 'https://www.gutenberg.org/ebooks/45106', 'en', 6521), +(47820, 'Tien ohesta tempomia', 'Malmberg, Aino', '2005-04-21', 4, 'https://www.gutenberg.org/ebooks/15676', 'fi', 61), +(47821, 'A Biblia da Humanidade', 'Quental, Antero de', '2010-06-18', 24, 'https://www.gutenberg.org/ebooks/32868', 'pt', 655), +(47822, 'Shock Troop', 'Bolton, Richard', '2019-05-20', 80, 'https://www.gutenberg.org/ebooks/59559', 'en', 26), +(47823, 'Vesty of the Basins', 'Greene, Sarah Pratt McLean', '2007-05-15', 7, 'https://www.gutenberg.org/ebooks/21443', 'en', 1541), +(47824, 'The Life and Writings of Henry Fuseli, Volume 3 (of 3)', 'Fuseli, Henry', '2012-08-10', 10, 'https://www.gutenberg.org/ebooks/40474', 'en', 787), +(47825, 'Bhagavadgita — Des Erhabenen Sang\nReligiöse Stimmen der Völker: Die Religion des alten Indien II', NULL, '2010-07-16', 25, 'https://www.gutenberg.org/ebooks/33186', 'de', 1999), +(47826, 'Swan Song', 'Chekhov, Anton Pavlovich', '2006-02-22', 57, 'https://www.gutenberg.org/ebooks/1753', 'en', 7273), +(47827, 'Xingu', 'Wharton, Edith', '2008-01-03', 37, 'https://www.gutenberg.org/ebooks/24131', 'en', 14663), +(47828, 'Some of These Days\r\nFrom Honky Tonk', 'Tucker, Sophie', '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10304', 'en', 16120), +(47829, 'Les nécessités de la vie et les conséquences des rêves, précédé d\'exemples', 'Éluard, Paul', '2018-02-06', 25, 'https://www.gutenberg.org/ebooks/56511', 'fr', 3718), +(47830, 'Stamped Caution', 'Gallun, Raymond Z.', '2010-04-19', 45, 'https://www.gutenberg.org/ebooks/32054', 'en', 67), +(47831, 'La guerra injusta; cartas de un español', 'Palacio Valdés, Armando', '2013-03-13', 28, 'https://www.gutenberg.org/ebooks/42323', 'es', 6227), +(47832, 'Jefferson and His Colleagues: A Chronicle of the Virginia Dynasty', 'Johnson, Allen', '2002-01-01', 20, 'https://www.gutenberg.org/ebooks/3004', 'en', 16505), +(47833, 'The Light Shines in Darkness', 'Tolstoy, Leo, graf', '2008-09-20', 52, 'https://www.gutenberg.org/ebooks/26666', 'en', 4249), +(47834, 'Miriam Monfort\nA Novel', 'Warfield, Catherine A. (Catherine Ann)', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12453', 'en', 61), +(47835, 'The Chautauquan, Vol. 05, June 1885, No. 9', 'Chautauqua Institution', '2017-08-20', 4, 'https://www.gutenberg.org/ebooks/55394', 'en', 1115), +(47836, 'The Clergy and the Pulpit in Their Relations to the People.', 'Mullois, Isidore', '2017-02-26', 36, 'https://www.gutenberg.org/ebooks/54246', 'en', 7677), +(47837, 'Hellmannin herra; Esimerkin vuoksi; Maailman murjoma', 'Aho, Juhani', '2004-10-02', 7, 'https://www.gutenberg.org/ebooks/13581', 'fi', 61), +(47838, 'Mesure pour mesure', 'Shakespeare, William', '2006-04-14', 30, 'https://www.gutenberg.org/ebooks/18169', 'fr', 2766), +(47839, 'The Forlorn Hope: A Novel (Vol. 2 of 2)', 'Yates, Edmund', '2019-08-08', 205, 'https://www.gutenberg.org/ebooks/60073', 'en', 61), +(47840, 'Fantôme d\'Orient', 'Loti, Pierre', '2009-12-18', 24, 'https://www.gutenberg.org/ebooks/30703', 'fr', 16506), +(47841, 'Blackie & Son\'s Illustrated Story Books Catalogue, 1889', 'Blackie & Son', '2015-03-31', 15, 'https://www.gutenberg.org/ebooks/48619', 'en', 16507), +(47842, 'The Topaz Story Book: Stories and Legends of Autumn, Hallowe\'en, and Thanksgiving', NULL, '2016-04-11', 55, 'https://www.gutenberg.org/ebooks/51734', 'en', 16508), +(47843, 'Memoirs of Marguerite de Valois, Queen of Navarre — Volume 1', 'Marguerite, Queen, consort of Henry IV, King of France', '2004-12-02', 15, 'https://www.gutenberg.org/ebooks/3838', 'en', 16509), +(47844, 'Early Scenes in Church History\nEighth Book of the Faith-Promoting Series', 'Various', '2014-09-06', 17, 'https://www.gutenberg.org/ebooks/46783', 'en', 14375), +(47845, 'Harper\'s New Monthly Magazine\nNo. XVI.—September, 1851—Vol. III.', 'Various', '2011-02-14', 108, 'https://www.gutenberg.org/ebooks/35271', 'en', 4316), +(47846, 'Dal vero', 'Serao, Matilde', '2006-11-21', 23, 'https://www.gutenberg.org/ebooks/19887', 'it', 474), +(47847, 'The Bobbsey Twins at Meadow Brook', 'Hope, Laura Lee', '2004-09-01', 37, 'https://www.gutenberg.org/ebooks/6576', 'en', 2266), +(47848, 'Hiwaga ng Pagibig', 'Nanong, Balbino B.', '2006-07-31', 10, 'https://www.gutenberg.org/ebooks/18955', 'tl', 61), +(47849, 'History of the Decline and Fall of the Roman Empire — Volume 2', 'Gibbon, Edward', '2008-06-07', 119, 'https://www.gutenberg.org/ebooks/891', 'en', 1292), +(47850, 'The Poetical Works of William Wordsworth — Volume 6 (of 8)', 'Wordsworth, William', '2014-12-13', 42, 'https://www.gutenberg.org/ebooks/47651', 'en', 532), +(47851, 'De Aarde en haar Volken, Jaargang 1906', 'Various', '2005-11-21', 10, 'https://www.gutenberg.org/ebooks/17121', 'nl', 1673), +(47852, 'Spring Blossoms', 'Anonymous', '2007-11-04', 51, 'https://www.gutenberg.org/ebooks/23314', 'en', 859), +(47853, 'The Landlord at Lion\'s Head — Complete', 'Howells, William Dean', '2004-10-23', 30, 'https://www.gutenberg.org/ebooks/4645', 'en', 3249), +(47854, 'The Humour of America\nSelected, with an Introduction and Index of American Humorists', NULL, '2018-04-09', 48, 'https://www.gutenberg.org/ebooks/56949', 'en', 190), +(47855, 'From the Easy Chair, Volume 3', 'Curtis, George William', '2011-05-12', 30, 'https://www.gutenberg.org/ebooks/36090', 'en', 4637), +(47856, 'Yhteiskunnan pylväät: Nelinäytöksinen näytelmä', 'Ibsen, Henrik', '2014-05-02', 6, 'https://www.gutenberg.org/ebooks/45562', 'fi', 16510), +(47857, 'Bulletin de Lille, 1916-01\r\nPublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2005-02-28', 14, 'https://www.gutenberg.org/ebooks/15212', 'fr', 8224), +(47858, 'The Trial of Charles Random de Berenger, Sir Thomas Cochrane,\ncommonly called Lord Cochrane, the Hon. Andrew Cochrane Johnstone,\nRichard Gathorne Butt, Ralph Sandom, Alexander M\'Rae, John Peter Holloway,\nand Henry Lyte for A Conspiracy\nIn the Court of King\'s Bench, Guildhall, on Wednesday the\n8th, and Thursday the 9th of June, 1814', NULL, '2007-04-10', 99, 'https://www.gutenberg.org/ebooks/21027', 'en', 16511), +(47859, 'Punch, or the London Charivari, Vol. 93, November 19, 1887', 'Various', '2012-02-21', 12, 'https://www.gutenberg.org/ebooks/38936', 'en', 134), +(47860, 'Dave Porter\'s Return to School; Or, Winning the Medal of Honor', 'Stratemeyer, Edward', '2016-10-30', 14, 'https://www.gutenberg.org/ebooks/53407', 'en', 557), +(47861, 'Youth Challenges', 'Kelland, Clarence Budington', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/5797', 'en', 2190), +(47862, 'How to Care for the Insane: A Manual for Nurses', 'Granger, William D.', '2011-08-21', 26, 'https://www.gutenberg.org/ebooks/37142', 'en', 16512), +(47863, 'The Gray Scalp; Or, The Blackfoot Brave', 'Willett, Edward', '2017-12-13', 15, 'https://www.gutenberg.org/ebooks/56175', 'en', 15299), +(47864, 'Peck\'s Bad Boy and His Pa\n1883', 'Peck, George W. (George Wilbur)', '2008-05-16', 51, 'https://www.gutenberg.org/ebooks/25487', 'en', 190), +(47865, 'Fear', 'Mosso, A. (Angelo)', '2019-07-11', 98, 'https://www.gutenberg.org/ebooks/59901', 'en', 6623), +(47866, 'The Practical Joke; Or, The Christmas Story of Uncle Ned', 'Anonymous', '2010-05-19', 12, 'https://www.gutenberg.org/ebooks/32430', 'en', 16513), +(47867, 'Summer Cruising in the South Seas', 'Stoddard, Charles Warren', '2012-06-16', 21, 'https://www.gutenberg.org/ebooks/40010', 'en', 3259), +(47868, 'Shelley', 'Waterlow, Sydney', '1998-06-01', 20, 'https://www.gutenberg.org/ebooks/1337', 'en', 3072), +(47869, 'Cri des colons contre un ouvrage de M. l\'évêque et sénateur Grégoire, ayant pour titre \'De la Littérature des nègres\'', 'Tussac, F.-R. de (Fr.-Richard)', '2008-02-08', 16, 'https://www.gutenberg.org/ebooks/24555', 'fr', 16514), +(47870, 'A Florida Sketch-Book', 'Torrey, Bradford', '2004-01-01', 41, 'https://www.gutenberg.org/ebooks/10760', 'en', 2752), +(47871, 'Reports Relating to the Sanitary Condition of the City of London', 'Simon, John', '2017-04-28', 9, 'https://www.gutenberg.org/ebooks/54622', 'en', 16515), +(47872, 'Old Quebec: The Fortress of New France', 'Bryan, Claude Glennon', '2009-10-30', 18, 'https://www.gutenberg.org/ebooks/30367', 'en', 10438), +(47873, 'Appletons\' Popular Science Monthly, February 1899\nVolume LIV, No. 4, February 1899', 'Various', '2013-09-11', 9, 'https://www.gutenberg.org/ebooks/43695', 'en', 352), +(47874, 'The Shinto Cult: A Christian Study of the Ancient Religion of Japan', 'Terry, Milton Spenser', '2013-05-20', 19, 'https://www.gutenberg.org/ebooks/42747', 'en', 16516), +(47875, 'Passages from the American Notebooks, Volume 1', 'Hawthorne, Nathaniel', '2005-05-01', 29, 'https://www.gutenberg.org/ebooks/8088', 'en', 16517), +(47876, 'Old Fritz and the New Era', 'Mühlbach, L. (Luise)', '2002-10-01', 20, 'https://www.gutenberg.org/ebooks/3460', 'en', 4867), +(47877, 'Sadhana, the Realisation of Life', 'Tagore, Rabindranath', '2008-08-01', 7, 'https://www.gutenberg.org/ebooks/26202', 'en', 29), +(47878, 'The Wild Knight and Other Poems', 'Chesterton, G. K. (Gilbert Keith)', '2004-04-01', 31, 'https://www.gutenberg.org/ebooks/12037', 'en', 54), +(47879, 'Nature and Human Nature', 'Haliburton, Thomas Chandler', '2004-07-01', 31, 'https://www.gutenberg.org/ebooks/6112', 'en', 15120), +(47880, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 699\nMay 19, 1877', 'Various', '2014-10-29', 4, 'https://www.gutenberg.org/ebooks/47235', 'en', 18), +(47881, 'Princess', 'McClelland, M. G. (Mary Greenway)', '2006-01-18', 11, 'https://www.gutenberg.org/ebooks/17545', 'en', 109), +(47882, 'The Speedwell Boys and Their Racing Auto; Or, A Run for the Golden Cup', 'Rockwood, Roy', '2015-10-22', 13, 'https://www.gutenberg.org/ebooks/50282', 'en', 16518), +(47883, 'The Spartan Twins', 'Perkins, Lucy Fitch', '2006-02-01', 71, 'https://www.gutenberg.org/ebooks/9966', 'en', 16519); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(47884, 'Mission Furniture: How to Make It, Part 1', 'Windsor, H. H. (Henry Haven)', '2007-12-08', 180, 'https://www.gutenberg.org/ebooks/23770', 'en', 16520), +(47885, 'Movement of the International Literary Exchanges, between France and North America from January 1845 to May, 1846\r\nWith Instructions for Collecting, Preparing, and Forwarding Objects of Natural History Written by The Professors Administrators of The Museum Of Natural History At Paris. And Instructions Relative to Anthropology and Zoology', NULL, '2009-03-24', 7, 'https://www.gutenberg.org/ebooks/28398', 'en', 16521), +(47886, 'No Substitutions', 'Harmon, Jim', '2016-03-03', 28, 'https://www.gutenberg.org/ebooks/51350', 'en', 179), +(47887, 'The Moon out of Reach', 'Pedler, Margaret', '2005-08-09', 10, 'https://www.gutenberg.org/ebooks/16497', 'en', 48), +(47888, 'The Treasure of the Tigris: A Tale of Mesopotamia', 'Mockler-Ferryman, A. F. (Augustus Ferryman)', '2011-03-20', 11, 'https://www.gutenberg.org/ebooks/35615', 'en', 16522), +(47889, 'Relativity: The Special and General Theory', 'Einstein, Albert', '2009-10-01', 574, 'https://www.gutenberg.org/ebooks/30155', 'en', 2846), +(47890, 'Welsh Fairy Tales', 'Griffis, William Elliot', '2005-11-01', 95, 'https://www.gutenberg.org/ebooks/9368', 'en', 9656), +(47891, 'My Life and My Efforts', 'May, Karl', '2001-08-01', 30, 'https://www.gutenberg.org/ebooks/2780', 'en', 7537), +(47892, 'Miss Grantley\'s Girls, and the Stories She Told Them', 'Archer, Thomas', '2009-05-30', 13, 'https://www.gutenberg.org/ebooks/28996', 'en', 1817), +(47893, 'Shakespeare and the Stage\r\nWith a Complete List of Theatrical Terms Used by Shakespeare in His Plays and Poems, Arranged in Alphabetical Order, & Explanatory Notes', 'Jonas, Maurice', '2017-03-22', 27, 'https://www.gutenberg.org/ebooks/54410', 'en', 16523), +(47894, 'The Automobilist Abroad', 'Mansfield, M. F. (Milburg Francisco)', '2008-07-11', 12, 'https://www.gutenberg.org/ebooks/26030', 'en', 1408), +(47895, 'Lawyer Quince\nOdd Craft, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/12205', 'en', 1902), +(47896, 'Les contemplations: Aujourd\'hui, 1843-1856', 'Hugo, Victor', '2009-08-29', 33, 'https://www.gutenberg.org/ebooks/29844', 'fr', 4086), +(47897, 'Washer the Raccoon', 'Walsh, George Ethelbert', '2013-04-21', 21, 'https://www.gutenberg.org/ebooks/42575', 'en', 4599), +(47898, 'A Rebel War Clerk\'s Diary at the Confederate States Capital', 'Jones, J. B. (John Beauchamp)', '2010-01-26', 56, 'https://www.gutenberg.org/ebooks/31087', 'en', 4348), +(47899, 'History of the Mackenzies, with genealogies of the principal families of the name', 'Mackenzie, Alexander', '2003-01-01', 16, 'https://www.gutenberg.org/ebooks/3652', 'en', 16524), +(47900, 'Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910\nReinforced Concrete Pier Construction', 'Klapp, Eugene', '2006-02-16', 8, 'https://www.gutenberg.org/ebooks/17777', 'en', 16525), +(47901, 'The Big Five Motorcycle Boys on the Battle Line; Or, With the Allies in France', 'Marlow, Ralph', '2010-01-15', 10, 'https://www.gutenberg.org/ebooks/30969', 'en', 146), +(47902, 'Elämän vaihteessa: Kertomus', 'Lassila, Maiju', '2015-05-04', 23, 'https://www.gutenberg.org/ebooks/48873', 'fi', 175), +(47903, 'Side Show Studies', 'Metcalfe, Francis', '2007-11-19', 12, 'https://www.gutenberg.org/ebooks/23542', 'en', 16526), +(47904, 'English literary criticism', 'Vaughan, Charles Edwyn', '2004-08-01', 67, 'https://www.gutenberg.org/ebooks/6320', 'en', 1694), +(47905, 'Rakkauden narrit', 'Jókai, Mór', '2014-09-30', 6, 'https://www.gutenberg.org/ebooks/47007', 'fi', 2326), +(47906, 'The Raid of John Brown at Harper\'s Ferry as I Saw It', 'Leech, Samuel V.', '2011-02-28', 33, 'https://www.gutenberg.org/ebooks/35427', 'en', 14569), +(47907, 'An Heroic Epistle to the Right Honourable the Lord Craven (3rd Ed.)', 'Combe, William', '2007-09-02', 5, 'https://www.gutenberg.org/ebooks/22490', 'en', 16527), +(47908, 'Estudios históricos del reinado de Felipe II', 'Fernández Duro, Cesáreo', '2009-06-09', 24, 'https://www.gutenberg.org/ebooks/29078', 'es', 16528), +(47909, 'Picrate et Siméon', 'Beaunier, André', '2016-02-09', 11, 'https://www.gutenberg.org/ebooks/51162', 'fr', 259), +(47910, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 11, November, 1895\r\nThe Country Houses of Normandy', 'Various', '2005-02-12', 70, 'https://www.gutenberg.org/ebooks/15020', 'en', 2140), +(47911, 'Les Contemporains, 2ème Série\r\nEtudes et Portraits Littéraires', 'Lemaître, Jules', '2007-04-25', 6, 'https://www.gutenberg.org/ebooks/21215', 'fr', 629), +(47912, 'Lord Ormont and His Aminta — Volume 1', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4477', 'en', 137), +(47913, 'Our Little Brazilian Cousin', 'Nixon-Roulet, Mary F.', '2014-05-25', 17, 'https://www.gutenberg.org/ebooks/45750', 'en', 16529), +(47914, 'Speeches of Benjamin Harrison, Twenty-third President of the United States', 'Harrison, Benjamin', '2014-01-16', 19, 'https://www.gutenberg.org/ebooks/44682', 'en', 429), +(47915, 'The Relations of Science and Religion\nThe Morse Lecture, 1880', 'Calderwood, Henry', '2011-09-09', 6, 'https://www.gutenberg.org/ebooks/37370', 'en', 2713), +(47916, 'A Cyclopædia of Canadian Biography\r\nBrief biographies of persons distinguished in the professional, military and political life, and the commerce and industry of Canada, in the twentieth century', NULL, '2016-11-29', 16, 'https://www.gutenberg.org/ebooks/53635', 'en', 8262), +(47917, 'A Gentleman of France: Being the Memoirs of Gaston de Bonne Sieur de Marsac', 'Weyman, Stanley John', '1999-10-01', 31, 'https://www.gutenberg.org/ebooks/1939', 'en', 98), +(47918, 'What Every Singer Should Know', 'Ryan, Millie', '2010-05-30', 20, 'https://www.gutenberg.org/ebooks/32602', 'en', 8969), +(47919, 'Striking Hard\nDeep Waters, Part 10.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11480', 'en', 1902), +(47920, 'The General Historie of Virginia, New England & the Summer Isles (Vol. I)\r\nTogether with the True Travels, Adventures and Observations, and a Sea Grammar', 'Smith, John', '2018-01-09', 57, 'https://www.gutenberg.org/ebooks/56347', 'en', 7365), +(47921, 'Jack O\' Judgment', 'Wallace, Edgar', '2008-03-06', 37, 'https://www.gutenberg.org/ebooks/24767', 'en', 3511), +(47922, 'Under Lock and Key: A Story. Volume 2 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-09', 11, 'https://www.gutenberg.org/ebooks/57295', 'en', 128), +(47923, 'Roy Blakeley: His Story', 'Fitzhugh, Percy Keese', '2003-12-01', 18, 'https://www.gutenberg.org/ebooks/10552', 'en', 2994), +(47924, 'Klagen eines Knaben', 'Ehrenstein, Carl', '2012-07-13', 9, 'https://www.gutenberg.org/ebooks/40222', 'de', 16530), +(47925, 'Top', 'Albertazzi, Adolfo', '2011-12-18', 14, 'https://www.gutenberg.org/ebooks/38338', 'it', 61), +(47926, 'The Sonnets', 'Shakespeare, William', '1997-11-01', 94, 'https://www.gutenberg.org/ebooks/1105', 'en', 54), +(47927, 'Selections from Previous Works\r\nWith Remarks on Romanes\' Mental Evolution in Animals, and a Psalm of Montreal', 'Butler, Samuel', '2006-10-24', 12, 'https://www.gutenberg.org/ebooks/19610', 'en', 16531), +(47928, 'Il libro di Don Chisciotte', 'Scarfoglio, Edoardo', '2014-09-20', 26, 'https://www.gutenberg.org/ebooks/46914', 'it', 16532), +(47929, 'The World English Bible (WEB): Proverbs', 'Anonymous', '2005-06-01', 16, 'https://www.gutenberg.org/ebooks/8247', 'en', 151), +(47930, 'Satu-Ruijan maa: Kertomuksia', 'Järventaus, Arvi', '2015-06-07', 12, 'https://www.gutenberg.org/ebooks/49160', 'fi', 665), +(47931, 'La Signorina: Romanzo', 'Rovetta, Gerolamo', '2013-04-24', 7, 'https://www.gutenberg.org/ebooks/42588', 'it', 3942), +(47932, 'Dorothy\'s Mystical Adventures in Oz', 'Evans, Robert J.', '2005-11-01', 33, 'https://www.gutenberg.org/ebooks/9395', 'en', 2203), +(47933, 'Karoliinit: Kertomuksia', 'Heidenstam, Verner von', '2016-01-07', 28, 'https://www.gutenberg.org/ebooks/50871', 'fi', 179), +(47934, 'Indian Why Stories: Sparks from War Eagle\'s Lodge-Fire', 'Linderman, Frank Bird', '1996-07-01', 62, 'https://www.gutenberg.org/ebooks/606', 'en', 16533), +(47935, 'Perseverance Island; Or, The Robinson Crusoe of the Nineteenth Century', 'Frazar, Douglas', '2014-07-03', 18, 'https://www.gutenberg.org/ebooks/46128', 'en', 550), +(47936, 'Piano and Song\r\nHow to Teach, How to Learn, and How to Form a Judgment of Musical Performances', 'Wieck, Friedrich', '2005-09-05', 53, 'https://www.gutenberg.org/ebooks/16658', 'en', 1290), +(47937, 'Histoire du Consulat et de l\'Empire, (Vol. 04 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2010-03-31', 6, 'https://www.gutenberg.org/ebooks/31846', 'fr', 2051), +(47938, 'Adventures and Recollections', 'Bill o\'th\' Hoylus End', '2009-06-09', 13, 'https://www.gutenberg.org/ebooks/29085', 'en', 16534), +(47939, 'A Student\'s History of England, v. 1: B.C. 55-A.D. 1509\r\nFrom the Earliest Times to the Death of King Edward VII', 'Gardiner, Samuel Rawson', '2009-02-23', 21, 'https://www.gutenberg.org/ebooks/28157', 'en', 16535), +(47940, 'Œuvres complètes de lord Byron, Tome 10\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2010-01-16', 15, 'https://www.gutenberg.org/ebooks/30994', 'fr', 3504), +(47941, 'Betty Leicester: A Story For Girls', 'Jewett, Sarah Orne', '2009-01-28', 21, 'https://www.gutenberg.org/ebooks/27923', 'en', 62), +(47942, 'The Collector\'s Handbook to Keramics of the Renaissance and Modern Periods', 'Chaffers, William', '2010-11-30', 12, 'https://www.gutenberg.org/ebooks/34508', 'en', 4784), +(47943, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 07', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5558', 'en', 5290), +(47944, 'Blackwood\'s Edinburgh Magazine, Volume LXII., No. 381, July, 1847', 'Various', '2018-11-02', 7, 'https://www.gutenberg.org/ebooks/58220', 'en', 711), +(47945, 'Oliver Cromwell and the Rule of the Puritans in England', 'Firth, C. H. (Charles Harding)', '2018-06-04', 18, 'https://www.gutenberg.org/ebooks/57268', 'en', 6310), +(47946, 'Punch, or the London Charivari, Volume 1, October 23, 1841', 'Various', '2005-02-07', 10, 'https://www.gutenberg.org/ebooks/14933', 'en', 134), +(47947, 'The King\'s Stratagem, and Other Stories', 'Weyman, Stanley John', '2012-03-20', 9, 'https://www.gutenberg.org/ebooks/39217', 'en', 3092), +(47948, 'The Peterkin Papers', 'Hale, Lucretia P. (Lucretia Peabody)', '2008-05-30', 59, 'https://www.gutenberg.org/ebooks/25648', 'en', 637), +(47949, 'The Morning of Spiritual Youth Improved, in the Prospect of Old Age and Its Infirmities\r\nBeing a Literal and Spiritual Paraphrase on the Twelfth Chapter of Ecclesiastes. In a Series of Letters.', 'Church, J. (John)', '2018-10-02', 4, 'https://www.gutenberg.org/ebooks/58012', 'en', 12364), +(47950, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2006-12-14', 18, 'https://www.gutenberg.org/ebooks/20108', 'fr', 1770), +(47951, 'Le forçat honoraire: roman immoral', 'La Jeunesse, Ernest', '2018-09-08', 6, 'https://www.gutenberg.org/ebooks/57866', 'fr', 259), +(47952, 'Einstein et l\'univers: Une lueur dans le mystère des choses', 'Nordmann, Charles', '2013-01-23', 19, 'https://www.gutenberg.org/ebooks/41903', 'fr', 814), +(47953, 'The Cruise of the \"Janet Nichol\" Among the South Sea Islands: A Diary', 'Stevenson, Fanny Van de Grift', '2016-07-08', 21, 'https://www.gutenberg.org/ebooks/52528', 'en', 16536), +(47954, 'The Expositor\'s Bible: Index', 'Ayres, S. G. (Samuel Gardiner)', '2012-05-27', 33, 'https://www.gutenberg.org/ebooks/39819', 'en', 16537), +(47955, 'The Natural History of Selborne, Vol. 2', 'White, Gilbert', '2007-03-29', 16, 'https://www.gutenberg.org/ebooks/20934', 'en', 13842), +(47956, 'W. & R. Chambers\'s Books, Suitable for Prizes and Presentation [1892]', 'W. & R. Chambers Ltd.', '2011-11-11', 4, 'https://www.gutenberg.org/ebooks/37983', 'en', 10250), +(47957, 'Rämeissä: Kuvaus yhteiskunnan pohjakerroksesta', 'Pietilä, Väinö', '2017-12-16', 5, 'https://www.gutenberg.org/ebooks/56188', 'fi', 175), +(47958, 'Marjorie Dean, College Freshman', 'Chase, Josephine', '2011-07-25', 14, 'https://www.gutenberg.org/ebooks/36851', 'en', 16538), +(47959, 'Ladies in the Field: Sketches of Sport', NULL, '2012-03-01', 8, 'https://www.gutenberg.org/ebooks/39025', 'en', 16539), +(47960, 'The Junior Classics, Volume 8: Animal and Nature Stories', NULL, '2005-05-01', 111, 'https://www.gutenberg.org/ebooks/8075', 'en', 1063), +(47961, 'A Little Garrison: A Realistic Novel of German Army Life of To-day', 'Bilse, Fritz Oswald', '2010-02-10', 8, 'https://www.gutenberg.org/ebooks/31248', 'en', 12630), +(47962, 'The Pictorial Field-Book of the Revolution, Vol. 2 (of 2)\r\nor, Illustrations, by Pen And Pencil, of the History, Biography, Scenery, Relics, and Traditions of the War for Independence', 'Lossing, Benson John', '2015-07-04', 24, 'https://www.gutenberg.org/ebooks/49352', 'en', 481), +(47963, 'The Organization of the Congregation in the Early Lutheran Churches in America', 'Schmucker, B. M. (Beale Melanchthon)', '2006-10-01', 15, 'https://www.gutenberg.org/ebooks/19422', 'en', 6254), +(47964, 'Five Little Friends', 'Adams, Sherred Willcox', '2005-04-01', 8, 'https://www.gutenberg.org/ebooks/7801', 'en', 1655), +(47965, 'Profiles from China\r\nSketches in Free Verse of People and Things Seen in the Interior', 'Tietjens, Eunice', '2004-08-05', 10, 'https://www.gutenberg.org/ebooks/13118', 'en', 16540), +(47966, 'The Circular Staircase', 'Rinehart, Mary Roberts', '1996-02-01', 295, 'https://www.gutenberg.org/ebooks/434', 'en', 1425), +(47967, 'Life Movements in Plants, Volume I', 'Bose, Jagadis Chandra', '2015-02-16', 35, 'https://www.gutenberg.org/ebooks/48280', 'en', 15797), +(47968, 'The Scottish History of James the Fourth\n1598', 'Greene, Robert', '2013-09-08', 21, 'https://www.gutenberg.org/ebooks/43668', 'en', 16541), +(47969, 'Weymouth New Testament in Modern Speech, 2 Peter', 'Weymouth, Richard Francis', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8849', 'en', 16542), +(47970, 'The Atlantic Monthly, Volume 09, No. 51, January, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-11-02', 10, 'https://www.gutenberg.org/ebooks/13924', 'en', 1227), +(47971, 'Rural Problems of Today', 'Groves, Ernest R. (Ernest Rutherford)', '2009-03-20', 15, 'https://www.gutenberg.org/ebooks/28365', 'en', 16543), +(47972, 'Illustrated Science for Boys and Girls', 'Anonymous', '2008-06-17', 14, 'https://www.gutenberg.org/ebooks/25822', 'en', 11855), +(47973, 'Harry Watson\'s High School Days; Or, The Rivals of Rivertown', 'Webster, Frank V.', '2011-06-14', 15, 'https://www.gutenberg.org/ebooks/36409', 'en', 1669), +(47974, 'A Veldt Vendetta', 'Mitford, Bertram', '2010-06-19', 25, 'https://www.gutenberg.org/ebooks/32895', 'en', 1207), +(47975, 'Un soir à Hernani, 26 février 1902', 'Rostand, Edmond', '2018-12-16', 9, 'https://www.gutenberg.org/ebooks/58476', 'fr', 3718), +(47976, 'Camping For Boys', 'Gibson, H. W. (Henry William)', '2005-01-22', 58, 'https://www.gutenberg.org/ebooks/14759', 'en', 2155), +(47977, 'The Nerve of Foley, and Other Railroad Stories', 'Spearman, Frank H. (Frank Hamilton)', '2010-10-04', 13, 'https://www.gutenberg.org/ebooks/33947', 'en', 61), +(47978, 'Mind and Body; or, Mental States and Physical Conditions', 'Atkinson, William Walker', '2013-10-25', 43, 'https://www.gutenberg.org/ebooks/44029', 'en', 5184), +(47979, 'Leibnitz\' Monadologie\r\nDeutsch mit einer Abhandlung über Leibnitz\' und Herbart\'s Theorieen des wirklichen Geschehens', 'Leibniz, Gottfried Wilhelm, Freiherr von', '2012-04-13', 63, 'https://www.gutenberg.org/ebooks/39441', 'de', 15684), +(47980, 'Servants of Sin: A Romance', 'Bloundelle-Burton, John', '2016-09-02', 18, 'https://www.gutenberg.org/ebooks/52970', 'en', 16544), +(47981, 'The History of the Knights Templars, the Temple Church, and the Temple', 'Addison, C. G. (Charles Greenstreet)', '2012-01-17', 106, 'https://www.gutenberg.org/ebooks/38593', 'en', 4624), +(47982, 'Le Suicide: Etude de Sociologie', 'Durkheim, Émile', '2012-08-12', 88, 'https://www.gutenberg.org/ebooks/40489', 'fr', 11157), +(47983, 'Writing and Drawing Made Easy, Amusing and Instructive\r\nContaining the Whole Alphabet in All the Characters Now Us\'d, Both in Printing and Penmanship', 'Chinnery, William', '2014-02-01', 60, 'https://www.gutenberg.org/ebooks/44815', 'en', 16545), +(47984, 'From Jungle to Java\nThe Trivial Impressions of a Short Excursion to Netherlands India', 'Keyser, Arthur Louis', '2009-01-08', 13, 'https://www.gutenberg.org/ebooks/27749', 'en', 6224), +(47985, 'The Life of Buddha and Its Lessons', 'Olcott, Henry Steel', '2006-04-17', 155, 'https://www.gutenberg.org/ebooks/18194', 'en', 16546), +(47986, 'Forest and Frontiers; Or, Adventures Among the Indians', NULL, '2005-07-01', 20, 'https://www.gutenberg.org/ebooks/8411', 'en', 2441), +(47987, 'Ben-Hur: Een verhaal van den tijd van Jezus\' omwandeling op aarde', 'Wallace, Lew', '2005-10-08', 68, 'https://www.gutenberg.org/ebooks/16832', 'nl', 609), +(47988, 'The Khaki Boys Fighting to Win; or, Smashing the German Lines', 'Bates, Gordon', '2015-08-19', 9, 'https://www.gutenberg.org/ebooks/49736', 'en', 146), +(47989, 'Sonetos', 'Quental, Antero de', '2006-08-14', 8, 'https://www.gutenberg.org/ebooks/19046', 'pt', 1638), +(47990, 'Life and Times of Her Majesty Caroline Matilda, Vol. 3 (of 3)\r\nQueen of Denmark and Norway, and Sister of H. M. George III. of England', 'Wraxall, Lascelles, Sir', '2017-08-17', 7, 'https://www.gutenberg.org/ebooks/55369', 'en', 4409), +(47991, 'Stories of W.W. Jacobs: An Index to All Volumes and Stories', 'Jacobs, W. W. (William Wymark)', '2009-05-06', 24, 'https://www.gutenberg.org/ebooks/28701', 'en', 198), +(47992, 'The Skin Game (A Tragi-Comedy)', 'Galsworthy, John', '2004-09-26', 28, 'https://www.gutenberg.org/ebooks/2917', 'en', 16547), +(47993, 'Il Benefattore', 'Capuana, Luigi', '2005-02-01', 18, 'https://www.gutenberg.org/ebooks/7459', 'it', 3942), +(47994, 'West-östlicher Divan', 'Goethe, Johann Wolfgang von', '2000-09-01', 128, 'https://www.gutenberg.org/ebooks/2319', 'de', 510), +(47995, 'Rowing', 'Lehmann, R. C. (Rudolf Chambers)', '2011-01-13', 37, 'https://www.gutenberg.org/ebooks/34950', 'en', 6926), +(47996, 'La vie nomade et les routes d\'Angleterre au 14e siècle', 'Jusserand, J. J. (Jean Jules)', '2017-02-02', 11, 'https://www.gutenberg.org/ebooks/54089', 'fr', 11945), +(47997, 'The Collected Poems of Rupert Brooke', 'Brooke, Rupert', '1995-05-01', 132, 'https://www.gutenberg.org/ebooks/262', 'en', 16548), +(47998, 'A vuela pluma: colección de artículos literarios y políticos', 'Valera, Juan', '2011-04-16', 13, 'https://www.gutenberg.org/ebooks/35882', 'es', 16549), +(47999, 'Letters from the Guardian to Australia and New Zealand', 'Shoghi, Effendi', '2006-09-17', 9, 'https://www.gutenberg.org/ebooks/19274', 'en', 16550), +(48000, 'The Adventures of Gerard', 'Doyle, Arthur Conan', '2005-08-01', 4, 'https://www.gutenberg.org/ebooks/8623', 'en', 11243), +(48001, 'God\'s Playthings', 'Bowen, Marjorie', '2015-07-21', 25, 'https://www.gutenberg.org/ebooks/49504', 'en', 409), +(48002, 'The London Visitor', 'Mitford, Mary Russell', '2007-10-02', 6, 'https://www.gutenberg.org/ebooks/22835', 'en', 45), +(48003, 'The King\'s Post\r\nBeing a volume of historical facts relating to the posts, mail coaches, coach roads, and railway mail services of and connected with the ancient city of Bristol from 1580 to the present time', 'Tombs, Robert Charles', '2009-04-07', 23, 'https://www.gutenberg.org/ebooks/28533', 'en', 16551), +(48004, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 03 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-09-23', 7, 'https://www.gutenberg.org/ebooks/43802', 'it', 6107), +(48005, 'Oxford Poetry, 1921', NULL, '2015-11-10', 18, 'https://www.gutenberg.org/ebooks/50429', 'en', 1594), +(48006, 'Felfordult világ; Észak honából; A debreczeni lunátikus', 'Jókai, Mór', '2017-11-14', 5, 'https://www.gutenberg.org/ebooks/55967', 'hu', 234), +(48007, 'Hinemoa\nWith Notes & Vocabulary', NULL, '2007-07-06', 21, 'https://www.gutenberg.org/ebooks/22009', 'mi', 16552), +(48008, 'Sandelsin urhea joukko: Kertomus Suomen sodasta vv. 1808-1809', 'Åberg, J. O. (Johan Olof)', '2019-06-23', 33, 'https://www.gutenberg.org/ebooks/59796', 'fi', 890), +(48009, 'U.S. Copyright Renewals, 1962 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 83, 'https://www.gutenberg.org/ebooks/11825', 'en', 4170), +(48010, 'Index of the Project Gutenberg Works of Alexis de Tocqueville', 'Tocqueville, Alexis de', '2019-01-07', 12, 'https://www.gutenberg.org/ebooks/58644', 'en', 198), +(48011, 'Corneille expliqué aux enfants', 'Faguet, Émile', '2013-01-03', 16, 'https://www.gutenberg.org/ebooks/41769', 'fr', 16553), +(48012, 'A Year in a Lancashire Garden\nSecond Edition', 'Bright, Henry Arthur', '2012-05-12', 17, 'https://www.gutenberg.org/ebooks/39673', 'en', 16554), +(48013, 'Van Bibber and Others', 'Davis, Richard Harding', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11019', 'en', 770), +(48014, 'Umboo, the Elephant', 'Garis, Howard Roger', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5900', 'en', 16555), +(48015, 'The Shepherd Psalm: A Meditation', 'Evans, William', '2010-08-04', 14, 'https://www.gutenberg.org/ebooks/33349', 'en', 16556), +(48016, 'Giordano Bruno', 'Pater, Walter', '2003-07-01', 37, 'https://www.gutenberg.org/ebooks/4228', 'en', 20), +(48017, 'Cancer: Its Cause and Treatment, Volume 1 (of 2)', 'Bulkley, Lucius Duncan', '2019-05-19', 46, 'https://www.gutenberg.org/ebooks/59550', 'en', 15277), +(48018, 'The Genius', 'Pederson, Con', '2010-06-17', 17, 'https://www.gutenberg.org/ebooks/32861', 'en', 179), +(48019, 'The Manchester and Glasgow Road, Volume 2 (of 2)\r\nThis Way to Gretna Green', 'Harper, Charles G. (Charles George)', '2018-12-16', 11, 'https://www.gutenberg.org/ebooks/58482', 'en', 776), +(48020, 'Buccaneers and Pirates of Our Coasts', 'Stockton, Frank Richard', '2007-01-20', 7, 'https://www.gutenberg.org/ebooks/20598', 'en', 16557), +(48021, 'Golden Days for Boys and Girls, Volume XIII, No. 51: November 12, 1892', 'Various', '2008-03-23', 17, 'https://www.gutenberg.org/ebooks/24904', 'en', 563), +(48022, 'Romances of Old Japan\nRendered into English from Japanese Sources', NULL, '2014-06-11', 99, 'https://www.gutenberg.org/ebooks/45933', 'en', 16558), +(48023, 'Eugène Delacroix', 'Mauclair, Camille', '2018-02-07', 12, 'https://www.gutenberg.org/ebooks/56518', 'fr', 304), +(48024, 'The Right to Be Lazy, and Other Studies', 'Lafargue, Paul', '2016-09-05', 46, 'https://www.gutenberg.org/ebooks/52984', 'en', 3120), +(48025, 'Eight Cousins; Or, The Aunt-Hill', 'Alcott, Louisa May', '2012-01-13', 56, 'https://www.gutenberg.org/ebooks/38567', 'en', 751), +(48026, 'Die dreizehn Bücher der deutschen Seele', 'Schäfer, Wilhelm', '2017-01-01', 11, 'https://www.gutenberg.org/ebooks/53856', 'de', 16559), +(48027, '官場現形記', 'Li, Boyuan', '2008-01-03', 26, 'https://www.gutenberg.org/ebooks/24138', 'zh', 16560), +(48028, 'In the World War', 'Czernin von und zu Chudenitz, Ottokar Theobald Otto Maria, Graf', '2006-04-12', 29, 'https://www.gutenberg.org/ebooks/18160', 'en', 335), +(48029, 'The Young Gentleman and Lady\'s Monitor, and English Teacher\'s Assistant\r\nBeing a collection of select pieces from our best modern writers, calculated to eradicate vulgar prejudices and rusticity of manners, improve the understanding, rectify the will, purify the passions, direct the minds of youth to the pursuit of proper objects, and to facilitate their reading, writing, and speaking the English language with elegance and propriety', 'Moore, John Hamilton', '2004-10-03', 25, 'https://www.gutenberg.org/ebooks/13588', 'en', 1846), +(48030, 'Harper\'s Young People, August 9, 1881\nAn Illustrated Weekly', 'Various', '2015-03-30', 3, 'https://www.gutenberg.org/ebooks/48610', 'en', 479), +(48031, 'Mistress Branican', 'Verne, Jules', '2006-03-04', 20, 'https://www.gutenberg.org/ebooks/17914', 'fr', 98), +(48032, 'The History of Pendennis', 'Thackeray, William Makepeace', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9537', 'en', 2065), +(48033, 'The Problem of Truth', 'Carr, Herbert Wildon', '2014-12-13', 11, 'https://www.gutenberg.org/ebooks/47658', 'en', 7894), +(48034, 'The Lesson of the Master', 'James, Henry', '1997-05-01', 192, 'https://www.gutenberg.org/ebooks/898', 'en', 918), +(48035, 'Noteworthy Families (Modern Science)\nAn Index to Kinships in Near Degrees between Persons Whose Achievements Are Honourable, and Have Been Publicly Recorded', 'Schuster, Edgar', '2005-11-21', 16, 'https://www.gutenberg.org/ebooks/17128', 'en', 7357), +(48036, 'The Secret Power', 'Corelli, Marie', '2003-03-01', 46, 'https://www.gutenberg.org/ebooks/3831', 'en', 211), +(48037, 'Vóór vier Eeuwen: Een Volksboek over de Ontdekking van Amerika', 'Louwerse, Pieter', '2009-08-06', 5, 'https://www.gutenberg.org/ebooks/29627', 'nl', 3403), +(48038, 'Mattie:—A Stray (Vol 3 of 3)', 'Robinson, F. W. (Frederick William)', '2011-02-14', 15, 'https://www.gutenberg.org/ebooks/35278', 'en', 137), +(48039, 'Air Men o\' War', 'Cable, Boyd', '2015-03-06', 13, 'https://www.gutenberg.org/ebooks/48422', 'en', 4704), +(48040, '莊子的故事', 'Song, Ye', '2007-12-19', 22, 'https://www.gutenberg.org/ebooks/23913', 'zh', 16561), +(48041, 'New Worlds For Old: A Plain Account of Modern Socialism', 'Wells, H. G. (Herbert George)', '2009-11-24', 24, 'https://www.gutenberg.org/ebooks/30538', 'en', 254), +(48042, 'The Mystery of Edwin Drood', 'Dickens, Charles', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9705', 'en', 45), +(48043, 'The Cash Boy', 'Alger, Horatio, Jr.', '2006-03-15', 236, 'https://www.gutenberg.org/ebooks/296', 'en', 323), +(48044, 'Captured by the Navajos', 'Curtis, Charles A. (Charles Albert)', '2006-05-08', 18, 'https://www.gutenberg.org/ebooks/18352', 'en', 16562), +(48045, 'Messages to the Bahá\'í World: 1950–1957', 'Shoghi, Effendi', '2006-09-17', 22, 'https://www.gutenberg.org/ebooks/19280', 'en', 5429), +(48046, 'An Account of the English Colony in New South Wales, Volume 2\r\nAn Account Of The English Colony In New South Wales, From Its First Settlement In 1788, To August 1801: With Remarks On The Dispositions, Customs, Manners, Etc. Of The Native Inhabitants Of That Country. To Which Are Added, Some Particulars Of New Zealand; Compiled, By Permission, From The Mss. Of Lieutenant-Governor King; And An Account Of The Voyage Performed By Captain Flinders And Mr. Bass.', 'King, Philip Gidley', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12668', 'en', 1775), +(48047, 'L\'esquisse mystérieuse', 'Erckmann-Chatrian', '2011-04-15', 14, 'https://www.gutenberg.org/ebooks/35876', 'fr', 114), +(48048, 'Fragonard', 'MacFall, Haldane', '2013-02-17', 23, 'https://www.gutenberg.org/ebooks/42118', 'en', 16563), +(48049, 'The Will to Doubt: An essay in philosophy for the general thinker', 'Lloyd, Alfred H. (Alfred Henry)', '2010-11-03', 28, 'https://www.gutenberg.org/ebooks/34198', 'en', 16564), +(48050, 'Brownlows: A Novel', 'Oliphant, Mrs. (Margaret)', '2017-06-03', 14, 'https://www.gutenberg.org/ebooks/54841', 'en', 1380), +(48051, 'The Diamond Ship', 'Pemberton, Max', '2017-11-18', 17, 'https://www.gutenberg.org/ebooks/55993', 'en', 323), +(48052, 'Soldiers of the Queen', 'Avery, Harold', '2009-07-15', 20, 'https://www.gutenberg.org/ebooks/29415', 'en', 16565), +(48053, 'Les réprouvés et les élus (t.1)', 'Souvestre, Émile', '2013-06-12', 12, 'https://www.gutenberg.org/ebooks/42924', 'fr', 61), +(48054, 'Tales of Giants from Brazil', 'Eells, Elsie Spicer', '2007-06-04', 19, 'https://www.gutenberg.org/ebooks/21678', 'en', 16566), +(48055, 'Troian sota: Muinaiskreikkalaisia jumaluus- ja sankaritarinoita', 'Berg, Fridtjuv', '2019-06-16', 10, 'https://www.gutenberg.org/ebooks/59762', 'fi', 16567), +(48056, 'Punch, or the London Charivari, Volume 153, October 17, 1917', 'Various', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/10903', 'en', 134), +(48057, 'Kolme kertomusta', 'Gorky, Maksim', '2016-10-11', 38, 'https://www.gutenberg.org/ebooks/53258', 'fi', 4710), +(48058, 'Musiciens d\'autrefois', 'Rolland, Romain', '2012-05-13', 28, 'https://www.gutenberg.org/ebooks/39687', 'fr', 4183), +(48059, 'The Rise of the Dutch Republic — Volume 24: 1576-77', 'Motley, John Lothrop', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/4826', 'en', 3372), +(48060, 'Über die Vulkane im Monde', 'Kant, Immanuel', '2012-02-03', 14, 'https://www.gutenberg.org/ebooks/38755', 'de', 4280), +(48061, 'Poems', 'Henley, William Ernest', '1998-12-01', 50, 'https://www.gutenberg.org/ebooks/1568', 'en', 8), +(48062, 'The Gold Thread: A Story for the Young', 'Macleod, Norman', '2008-07-12', 11, 'https://www.gutenberg.org/ebooks/26039', 'en', 388), +(48063, 'Tales from a Rolltop Desk', 'Morley, Christopher', '2016-05-02', 36, 'https://www.gutenberg.org/ebooks/51957', 'en', 109), +(48064, 'The History of Coaches', 'Thrupp, George Athelstane', '2015-06-11', 7, 'https://www.gutenberg.org/ebooks/49194', 'en', 13123), +(48065, 'Farnham\'s Travels in the Great Western Prairies, etc., May 21-October 16, 1839, part 1', 'Farnham, Thomas Jefferson', '2015-01-22', 27, 'https://www.gutenberg.org/ebooks/48046', 'en', 497), +(48066, 'The Weather on Mercury', 'Samachson, Joseph', '2016-01-09', 35, 'https://www.gutenberg.org/ebooks/50885', 'en', 424), +(48067, 'The Motor Girls on a Tour', 'Penrose, Margaret', '2001-08-01', 13, 'https://www.gutenberg.org/ebooks/2789', 'en', 4887), +(48068, 'Youth', 'Conrad, Joseph', '2005-11-01', 3, 'https://www.gutenberg.org/ebooks/9361', 'en', 324), +(48069, 'Perpetua. A Tale of Nimes in A.D. 213', 'Baring-Gould, S. (Sabine)', '2014-12-31', 37, 'https://www.gutenberg.org/ebooks/47832', 'en', 16568), +(48070, 'La Légende des sexes: Poëmes hystériques', 'Haraucourt, Edmond', '2017-03-24', 34, 'https://www.gutenberg.org/ebooks/54419', 'fr', 4086), +(48071, 'Illustrated Catalogue of the Collections Obtained from the Indians of New Mexico And Arizona in 1879\r\nSecond Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1880-81, Government Printing Office, Washington, 1883, pages 307-428', 'Stevenson, James', '2006-07-02', 12, 'https://www.gutenberg.org/ebooks/18736', 'en', 16569), +(48072, 'Little Engel: a ballad; with a series of epigrams from the Persian', NULL, '2008-10-07', 6, 'https://www.gutenberg.org/ebooks/26805', 'en', 54), +(48073, 'Chit-Chat; Nirvana; The Searchlight', 'Holt, Mathew Joseph', '2009-06-08', 12, 'https://www.gutenberg.org/ebooks/29071', 'en', 61), +(48074, 'La crisi', 'Praga, Marco', '2007-09-04', 5, 'https://www.gutenberg.org/ebooks/22499', 'it', 407), +(48075, 'The People of the Crater', 'Norton, Andre', '2010-01-14', 106, 'https://www.gutenberg.org/ebooks/30960', 'en', 6905), +(48076, 'Catalogue of British Columbia Birds', 'Kermode, Francis', '2004-08-01', 25, 'https://www.gutenberg.org/ebooks/6329', 'en', 16570), +(48077, 'Notes and Queries, Number 84, June 7, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-09-10', 8, 'https://www.gutenberg.org/ebooks/37379', 'en', 105), +(48078, 'Penguin Island', 'France, Anatole', '2006-02-26', 65, 'https://www.gutenberg.org/ebooks/1930', 'en', 16571), +(48079, 'Kit of Greenacre Farm', 'Forrester, Izola L. (Izola Louise)', '2005-02-12', 19, 'https://www.gutenberg.org/ebooks/15029', 'en', 1655), +(48080, 'Homer: The Iliad; The Odyssey', 'Collins, W. Lucas (William Lucas)', '2019-04-18', 387, 'https://www.gutenberg.org/ebooks/59306', 'en', 2619), +(48081, 'London and the Kingdom - Volume 3\r\nA History Derived Mainly from the Archives at Guildhall in the Custody of the Corporation of the City of London.', 'Sharpe, Reginald R. (Reginald Robinson)', '2014-05-25', 21, 'https://www.gutenberg.org/ebooks/45759', 'en', 4685), +(48082, 'Frédérique, vol. 1', 'Kock, Paul de', '2011-12-17', 12, 'https://www.gutenberg.org/ebooks/38331', 'en', 58), +(48083, 'Les tendres ménages', 'Toulet, Paul Jean', '2005-05-11', 21, 'https://www.gutenberg.org/ebooks/15815', 'fr', 61), +(48084, 'Some Historical Account of Guinea, Its Situation, Produce, and the General Disposition of Its Inhabitants\nAn Inquiry into the Rise and Progress of the Slave Trade, Its Nature and Lamentable Effects', 'Benezet, Anthony', '2004-03-01', 41, 'https://www.gutenberg.org/ebooks/11489', 'en', 16572), +(48085, 'Fictitious & Symbolic Creatures in Art\nWith Special Reference to Their Use in British Heraldry', 'Vinycomb, John', '2012-09-22', 42, 'https://www.gutenberg.org/ebooks/40825', 'en', 10522), +(48086, 'Contes populaires de Lorraine, comparés avec les contes des autres provinces de France et des pays étrangers, volume 1 (of 2)', 'Cosquin, Emmanuel', '2018-09-13', 17, 'https://www.gutenberg.org/ebooks/57892', 'fr', 16573), +(48087, 'Mycenæ: a narrative of researches and discoveries at Mycenæ and Tiryns', 'Schliemann, Heinrich', '2018-04-07', 17, 'https://www.gutenberg.org/ebooks/56940', 'en', 11175), +(48088, 'A Cadet\'s Honor: Mark Mallory\'s Heroism', 'Sinclair, Upton', '2011-05-13', 23, 'https://www.gutenberg.org/ebooks/36099', 'en', 5512), +(48089, 'The Historians\' History of the World in Twenty-Five Volumes, Volume 07\r\nThe History of the Later Roman Empire', NULL, '2019-03-26', 20, 'https://www.gutenberg.org/ebooks/59134', 'en', 346), +(48090, 'Trial of C. B. Reynolds For Blasphemy, at Morristown, N. J., May 1887: Defence', 'Ingersoll, Robert Green', '2011-11-22', 28, 'https://www.gutenberg.org/ebooks/38103', 'en', 16574), +(48091, 'The Barren Ground of Northern Canada', 'Pike, Warburton', '2012-06-17', 14, 'https://www.gutenberg.org/ebooks/40019', 'en', 1796), +(48092, 'A Wanderer in Florence', 'Lucas, E. V. (Edward Verrall)', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/10769', 'en', 16575), +(48093, 'The Esperantist, Vol. 1, No. 13', NULL, '2011-11-11', 8, 'https://www.gutenberg.org/ebooks/37977', 'en', 3912), +(48094, 'Paul Gerrard, the Cabin Boy', 'Kingston, William Henry Giles', '2007-06-12', 20, 'https://www.gutenberg.org/ebooks/21812', 'en', 3828), +(48095, 'The Doctor, his Wife, and the Clock', 'Green, Anna Katharine', '2010-05-19', 44, 'https://www.gutenberg.org/ebooks/32439', 'en', 61), +(48096, 'The American Therapist. Vol. II. No. 7. Jan. 15th, 1894\r\nA Monthly Record of Modern Therapeutics, with Practical Suggestions Relating to the Clinical Applications of Drugs.', 'Various', '2019-07-13', 62, 'https://www.gutenberg.org/ebooks/59908', 'en', 16576), +(48097, 'The Hand of Ethelberta: A Comedy in Chapters', 'Hardy, Thomas', '2002-10-01', 62, 'https://www.gutenberg.org/ebooks/3469', 'en', 2004), +(48098, 'Louisa Pallant', 'James, Henry', '2005-05-01', 19, 'https://www.gutenberg.org/ebooks/8081', 'en', 2035), +(48099, 'The White Feather', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 151, 'https://www.gutenberg.org/ebooks/6927', 'en', 1779), +(48100, 'Sex in Education; or, A Fair Chance for Girls', 'Clarke, Edward H. (Edward Hammond)', '2006-06-05', 21, 'https://www.gutenberg.org/ebooks/18504', 'en', 3605), +(48101, 'The Life of a Regimental Officer During the Great War, 1793-1815', 'Mockler-Ferryman, A. F. (Augustus Ferryman)', '2015-02-15', 11, 'https://www.gutenberg.org/ebooks/48274', 'en', 16577), +(48102, 'The History of Louisiana, Or of the Western Parts of Virginia and Carolina\r\nContaining a Description of the Countries That Lie on Both Sides of the River Missisippi', 'Le Page du Pratz', '2005-10-01', 40, 'https://www.gutenberg.org/ebooks/9153', 'en', 16578), +(48103, 'Sämmtliche Werke 8: Vermischte Schriften und Aufsätze\r\nNicolai\'s Leben und sonderbare Meinungen / Deducirter Plan einer zu Berlin zu errichtenden höheren Lehranstalt / Beweis der Unrechtmässigkeit des Büchernachdrucks und andere Aufsätze / Recensionen / Poesien und metrische Uebersetzungen', 'Fichte, Johann Gottlieb', '2016-03-05', 24, 'https://www.gutenberg.org/ebooks/51359', 'de', 779), +(48104, 'Descobrimento das Filippinas pelo navegador portuguez Fernão de Magalhães', 'Alberto da Silva, Caetano', '2009-06-26', 21, 'https://www.gutenberg.org/ebooks/29243', 'pt', 819), +(48105, 'Vanha tarina Montrosesta', 'Scott, Walter', '2004-07-02', 11, 'https://www.gutenberg.org/ebooks/12802', 'fi', 16579), +(48106, 'True To His Colors', 'Castlemon, Harry', '2009-03-23', 34, 'https://www.gutenberg.org/ebooks/28391', 'en', 403), +(48107, 'A Little Girl in Old Quebec', 'Douglas, Amanda M.', '2007-12-09', 31, 'https://www.gutenberg.org/ebooks/23779', 'en', 16580), +(48108, 'Het Leven der Dieren. Deel 3. Afdeling 2. De Visschen', 'Brehm, Alfred Edmund', '2016-06-15', 5, 'https://www.gutenberg.org/ebooks/52341', 'nl', 2360), +(48109, 'Edna\'s Sacrifice and Other Stories', 'Baden, Frances Henshaw', '2005-03-28', 14, 'https://www.gutenberg.org/ebooks/15486', 'en', 61), +(48110, 'The White Squaw', 'Reid, Mayne', '2011-07-03', 13, 'https://www.gutenberg.org/ebooks/36604', 'en', 10770), +(48111, 'Old Judge Priest', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2013-11-18', 7, 'https://www.gutenberg.org/ebooks/44224', 'en', 3008), +(48112, 'A Zola Dictionary; the Characters of the Rougon-Macquart Novels of Emile Zola;', 'Patterson, J. G', '2006-04-22', 25, 'https://www.gutenberg.org/ebooks/5103', 'en', 16581), +(48113, 'Histoires extraordinaires', 'Poe, Edgar Allan', '2007-03-07', 52, 'https://www.gutenberg.org/ebooks/20761', 'fr', 8707), +(48114, 'Baltimore Catechism, No. 4\r\nAn Explanation of the Baltimore Catechism of Christian Doctrine for the Use of\r\nSunday-School Teachers and Advanced Classes', 'Kinkead, Thomas L.', '2005-01-01', 184, 'https://www.gutenberg.org/ebooks/14554', 'en', 16582), +(48115, 'Pidot (Symposion)', 'Plato', '2016-10-16', 21, 'https://www.gutenberg.org/ebooks/53293', 'fi', 203), +(48116, 'Against the Current: Simple Chapters from a Complex Life', 'Steiner, Edward Alfred', '2013-01-02', 23, 'https://www.gutenberg.org/ebooks/41756', 'en', 16583), +(48117, 'Literary and General Lectures and Essays', 'Kingsley, Charles', '2004-02-01', 37, 'https://www.gutenberg.org/ebooks/11026', 'en', 1694), +(48118, 'The Masters and Their Music\r\nA series of illustrative programs with biographical,\r\nesthetical, and critical annotations', 'Mathews, W. S. B. (William Smythe Babcock)', '2008-11-17', 8, 'https://www.gutenberg.org/ebooks/25213', 'en', 5339), +(48119, 'Vankeuteni', 'Pellico, Silvio', '2018-08-03', 8, 'https://www.gutenberg.org/ebooks/57633', 'fi', 16584), +(48120, 'The American Horsewoman', 'Karr, Elizabeth', '2012-09-06', 10, 'https://www.gutenberg.org/ebooks/40684', 'en', 2240), +(48121, 'A Vindication of England\'s Policy with Regard to the Opium Trade', 'Haines, Charles Reginald', '2010-08-08', 23, 'https://www.gutenberg.org/ebooks/33376', 'en', 12625), +(48122, 'His Own People', 'Tarkington, Booth', '2006-02-26', 32, 'https://www.gutenberg.org/ebooks/2326', 'en', 16585), +(48123, 'Van Dyck', 'Turner, Percy Moore', '2013-06-20', 22, 'https://www.gutenberg.org/ebooks/43001', 'en', 2423), +(48124, 'The Shipwreck\nA Story for the Young', 'Spillman, Joseph', '2006-05-16', 6, 'https://www.gutenberg.org/ebooks/18399', 'en', 323), +(48125, 'Aventures de Monsieur Pickwick, Vol. I', 'Dickens, Charles', '2004-10-17', 27, 'https://www.gutenberg.org/ebooks/13771', 'fr', 637), +(48126, 'Epistola de Manoel Mendes Fogaça\r\nDirigida de lisboa a hum amigo da sua terra, em que lhe refere como de repente se fez poeta, e lhe conta as proezas de hum rafeiro.', 'Macedo, José Agostinho de', '2008-12-16', 15, 'https://www.gutenberg.org/ebooks/27544', 'pt', NULL), +(48127, 'Rembrandt\'s Etching Technique: An Example', 'Morse, Peter', '2008-08-31', 30, 'https://www.gutenberg.org/ebooks/26496', 'en', 596), +(48128, 'The Picaroons', 'Irwin, Will', '2017-07-21', 9, 'https://www.gutenberg.org/ebooks/55164', 'en', 6391), +(48129, 'Through Apache Land', 'Ellis, Edward Sylvester', '2010-02-27', 29, 'https://www.gutenberg.org/ebooks/31421', 'en', 5458), +(48130, 'The English Rogue: Described in the Life of Meriton Latroon, a Witty Extravagant', 'Kirkman, Francis', '2015-11-09', 22, 'https://www.gutenberg.org/ebooks/50416', 'en', 1490), +(48131, 'Wilson\'s Tales of the Borders and of Scotland, Volume 16', NULL, '2010-10-27', 12, 'https://www.gutenberg.org/ebooks/34153', 'en', 3672), +(48132, 'The Piccolomini: A Play', 'Schiller, Friedrich', '2004-12-08', 29, 'https://www.gutenberg.org/ebooks/6786', 'en', 2341), +(48133, 'Frederic Chopin: His Life, Letters, and Works, v. 2 (of 2)', 'Karasowski, Maurycy', '2014-08-13', 29, 'https://www.gutenberg.org/ebooks/46573', 'en', 392), +(48134, 'The Holy Land', 'Kelman, John', '2017-11-13', 6, 'https://www.gutenberg.org/ebooks/55958', 'en', 723), +(48135, 'The People\'s Idea of God: Its Effect On Health And Christianity', 'Eddy, Mary Baker', '2011-01-26', 15, 'https://www.gutenberg.org/ebooks/35081', 'en', 1206), +(48136, 'Kenelm Chillingly — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7654', 'en', 137), +(48137, 'Recollections of Forty Years in the House, Senate and Cabinet\nAn Autobiography.', 'Sherman, John', '2007-07-10', 9, 'https://www.gutenberg.org/ebooks/22036', 'en', 16586), +(48138, 'The Philippine Islands, 1493-1898 — Volume 21 of 55 \r\n1624\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2005-07-04', 58, 'https://www.gutenberg.org/ebooks/16203', 'en', 7466), +(48139, 'William Dampier', 'Russell, William Clark', '2017-03-05', 17, 'https://www.gutenberg.org/ebooks/54284', 'en', 16587), +(48140, 'People You Know', 'Ade, George', '2004-09-27', 32, 'https://www.gutenberg.org/ebooks/13543', 'en', 190), +(48141, 'The Methodist\nA Poem', 'Lloyd, Evan', '2009-01-11', 6, 'https://www.gutenberg.org/ebooks/27776', 'en', 16588), +(48142, 'History of Friedrich II of Prussia — Volume 14', 'Carlyle, Thomas', '2008-06-16', 21, 'https://www.gutenberg.org/ebooks/2114', 'en', 3120), +(48143, 'Recherches sur les substances radioactives', 'Curie, Marie', '2013-07-16', 40, 'https://www.gutenberg.org/ebooks/43233', 'fr', 7331), +(48144, 'Tales from a Famished Land\nIncluding The White Island—A Story of the Dardanelles', 'Hunt, Edward E. (Edward Eyre)', '2015-08-15', 11, 'https://www.gutenberg.org/ebooks/49709', 'en', 4531), +(48145, 'El Superhombre y otras novedades', 'Valera, Juan', '2010-03-12', 15, 'https://www.gutenberg.org/ebooks/31613', 'es', 5089), +(48146, 'The Adventures of Lightfoot the Deer', 'Burgess, Thornton W. (Thornton Waldo)', '2006-08-19', 35, 'https://www.gutenberg.org/ebooks/19079', 'en', 625), +(48147, 'Twelve Types', 'Chesterton, G. K. (Gilbert Keith)', '2004-06-01', 143, 'https://www.gutenberg.org/ebooks/12491', 'en', 122), +(48148, 'Bolshevismi ja olot Venäjällä', 'Rauhala, K. N. (Kalle Nikodemus)', '2017-08-14', 5, 'https://www.gutenberg.org/ebooks/55356', 'fi', 16589), +(48149, 'The Vicomte de Bragelonne\nOr Ten Years Later being the completion of \"The Three\nMusketeers\" And \"Twenty Years After\"', 'Dumas, Alexandre', '2006-08-07', 142, 'https://www.gutenberg.org/ebooks/18997', 'en', 98), +(48150, 'The Song of Songs', 'Sudermann, Hermann', '2010-11-18', 16, 'https://www.gutenberg.org/ebooks/34361', 'en', 803), +(48151, 'The Confutatio Pontificia', NULL, '1997-03-01', 97, 'https://www.gutenberg.org/ebooks/853', 'en', 16590), +(48152, 'A Glimpse at Guatemala\nAnd Some Notes on the Ancient Monuments of Central America', 'Maudslay, Anne Cary', '2014-12-17', 25, 'https://www.gutenberg.org/ebooks/47693', 'en', 9304), +(48153, 'Time and Life: Mr. Darwin\'s \"Origin of Species\"', 'Huxley, Thomas Henry', '2001-11-01', 8, 'https://www.gutenberg.org/ebooks/2928', 'en', 5473), +(48154, 'Lorenzo de\' Medici, the Magnificent (vol. 1 of 2)', 'Reumont, Alfred von', '2015-12-05', 17, 'https://www.gutenberg.org/ebooks/50624', 'en', 16591), +(48155, 'The Making Of A Novelist\nAn Experiment In Autobiography', 'Murray, David Christie', '2007-08-01', 11, 'https://www.gutenberg.org/ebooks/22204', 'en', 16592), +(48156, 'The Great Round World and What Is Going On In It, Vol. 1, No. 50, October 21, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-09', 23, 'https://www.gutenberg.org/ebooks/16031', 'en', 1), +(48157, 'Rippi', 'Gorky, Maksim', '2014-08-31', 13, 'https://www.gutenberg.org/ebooks/46741', 'fi', 147), +(48158, 'Book of James', 'Unknown', '2006-11-18', 9, 'https://www.gutenberg.org/ebooks/19845', 'en', 7164), +(48159, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 02', 'Hakluyt, Richard', '2005-02-01', 22, 'https://www.gutenberg.org/ebooks/7466', 'la', 885), +(48160, 'L\'Illustration, No. 3692, 29 Novembre 1913', 'Various', '2011-06-16', 2, 'https://www.gutenberg.org/ebooks/36436', 'fr', 150), +(48161, 'Rajuilma: Huvinäytelmä yhdessä näytöksessä', 'Dreyfus, Abraham', '2016-05-28', 8, 'https://www.gutenberg.org/ebooks/52173', 'fi', 3853), +(48162, 'True Blue', 'Kingston, William Henry Giles', '2007-05-15', 26, 'https://www.gutenberg.org/ebooks/21481', 'en', 3535), +(48163, 'Out Around Rigel', 'Wilson, Robert H.', '2007-02-10', 50, 'https://www.gutenberg.org/ebooks/20553', 'en', 424), +(48164, 'The Military Sketch-Book. Vol. 1 (of 2)\r\nReminiscences of seventeen years in the service abroad and at home', 'Maginn, William', '2018-12-10', 6, 'https://www.gutenberg.org/ebooks/58449', 'en', 10743), +(48165, 'McGuffey\'s Third Eclectic Reader', 'McGuffey, William Holmes', '2005-01-23', 171, 'https://www.gutenberg.org/ebooks/14766', 'en', 1019), +(48166, 'The Aboriginal Population of Alameda and Contra Costa Counties, California', 'Cook, Sherburne Friend', '2010-09-27', 17, 'https://www.gutenberg.org/ebooks/33978', 'en', 4181), +(48167, 'The White Spark\r\nA New Book, Giving Out a New Philosophy and the Mysteries of the Universe. The Handbook of the Millennium and the New Dispensation', 'Leach, Orville Livingston', '2013-10-23', 28, 'https://www.gutenberg.org/ebooks/44016', 'en', 3324), +(48168, 'NATURAE', 'Dom', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/5331', 'en', 3720), +(48169, 'The Garies and Their Friends', 'Webb, Frank J.', '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/11214', 'en', 1958), +(48170, 'Battle of the Monkey & the Crab', 'Anonymous', '2008-04-08', 32, 'https://www.gutenberg.org/ebooks/25021', 'en', 1304), +(48171, 'La legge Oppia : commedia togata in tre atti', 'Barrili, Anton Giulio', '2010-04-22', 10, 'https://www.gutenberg.org/ebooks/32096', 'it', 402), +(48172, 'Mabel: A Novel. Vol. 1 (of 3)', 'Newby, C. J., Mrs.', '2012-12-05', 6, 'https://www.gutenberg.org/ebooks/41564', 'en', 61), +(48173, 'All\'s Well That Ends Well', 'Shakespeare, William', '1999-06-01', 13, 'https://www.gutenberg.org/ebooks/1791', 'en', 997), +(48174, 'The Oriental Rug\r\nA Monograph on Eastern Rugs and Carpets, Saddle-Bags, Mats & Pillows, with a Consideration of Kinds and Classes, Types, Borders, Figures, Dyes, Symbols, etc. Together with Some Practical Advice to Collectors.', 'Ellwanger, William De Lancey', '2010-07-13', 15, 'https://www.gutenberg.org/ebooks/33144', 'en', 7492), +(48175, 'The King\'s Scapegoat', 'Drummond, Hamilton', '2018-06-26', 8, 'https://www.gutenberg.org/ebooks/57401', 'en', 323), +(48176, 'Notes and Queries, Number 170, January 29, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 19, 'https://www.gutenberg.org/ebooks/42785', 'en', 105), +(48177, 'Anglo-Saxon Grammar and Exercise Book\nwith Inflections, Syntax, Selections for Reading, and Glossary', 'Smith, C. Alphonso (Charles Alphonso)', '2010-02-15', 51, 'https://www.gutenberg.org/ebooks/31277', 'en', 16593), +(48178, 'Palace and Hovel; Or, Phases of London Life', 'Kirwan, Daniel Joseph', '2017-10-12', 5, 'https://www.gutenberg.org/ebooks/55732', 'en', 9012), +(48179, 'Observations on the Mussulmauns of India\r\nDescriptive of Their Manners, Customs, Habits and Religious Opinions Made During a Twelve Years\' Residence in Their Immediate Society', 'Meer Hasan Ali, Mrs.', '2004-08-07', 41, 'https://www.gutenberg.org/ebooks/13127', 'en', 16594), +(48180, 'Nero\nMakers of History Series', 'Abbott, Jacob', '2008-11-22', 59, 'https://www.gutenberg.org/ebooks/27312', 'en', 16595), +(48181, 'Two Men of Sandy Bar: A Drama', 'Harte, Bret', '2001-03-01', 24, 'https://www.gutenberg.org/ebooks/2570', 'en', 16596), +(48182, 'The Complete Angler 1653', 'Walton, Izaak', '2005-10-01', 89, 'https://www.gutenberg.org/ebooks/9198', 'en', 15764), +(48183, 'The College, the Market, and the Court\nor, Woman\'s relation to education, labor and law', 'Dall, Caroline Wells Healey', '2013-09-06', 20, 'https://www.gutenberg.org/ebooks/43657', 'en', 3605), +(48184, 'The Unknown Life of Jesus Christ\nThe Original Text of Nicolas Notovitch\'s 1887 Discovery', 'Notovitch, Nicolas', '2009-07-01', 162, 'https://www.gutenberg.org/ebooks/29288', 'en', 7003), +(48185, 'King Candaules', 'Gautier, Théophile', '2007-09-18', 29, 'https://www.gutenberg.org/ebooks/22660', 'en', 61), +(48186, 'Ma captivité en Abyssinie ...sous l\'empereur Théodoros', 'Blanc, Henry', '2005-09-01', 19, 'https://www.gutenberg.org/ebooks/8876', 'fr', 16597), +(48187, 'Hafiz in London', 'McCarthy, Justin H. (Justin Huntly)', '2016-03-08', 13, 'https://www.gutenberg.org/ebooks/51392', 'en', 532), +(48188, 'The Otterbein Hymnal\nFor Use in Public and Social Worship', 'Lorenz, Edmund S. (Edmund Simon)', '2005-08-06', 16, 'https://www.gutenberg.org/ebooks/16455', 'en', 16598), +(48189, 'Chikago: Nykyajan romaani', 'Sinclair, Upton', '2014-07-19', 9, 'https://www.gutenberg.org/ebooks/46325', 'fi', 16599), +(48190, 'Life of George Washington — Volume 01', 'Irving, Washington', '2004-12-01', 65, 'https://www.gutenberg.org/ebooks/7002', 'en', 7558), +(48191, 'Russian Fairy Tales from the Skazki of Polevoi', 'Polevoi, P. (Petr)', '2010-12-20', 56, 'https://www.gutenberg.org/ebooks/34705', 'en', 10174); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(48192, 'Field Hospital and Flying Column\nBeing the Journal of an English Nursing Sister in Belgium & Russia', 'Thurstan, Violetta', '2006-01-23', 23, 'https://www.gutenberg.org/ebooks/17587', 'en', 449), +(48193, 'The Sunken Garden, and Other Poems', 'De la Mare, Walter', '2015-10-17', 13, 'https://www.gutenberg.org/ebooks/50240', 'en', 1594), +(48194, 'A Comparative View of Religions', 'Scholten, Johannes Henricus', '2006-12-19', 48, 'https://www.gutenberg.org/ebooks/20137', 'en', 1444), +(48195, 'Principles of Home Decoration, With Practical Examples', 'Wheeler, Candace', '2004-12-08', 26, 'https://www.gutenberg.org/ebooks/14302', 'en', 4442), +(48196, 'Making a Poultry House', 'Conover, Mary Roberts', '2013-12-20', 9, 'https://www.gutenberg.org/ebooks/44472', 'en', 16600), +(48197, 'Penelope Brandling: A Tale of the Welsh coast in the Eighteenth Century', 'Lee, Vernon', '2011-08-23', 10, 'https://www.gutenberg.org/ebooks/37180', 'en', 777), +(48198, 'The American Missionary — Volume 36, No. 5, May, 1882', 'Various', '2018-09-07', 2, 'https://www.gutenberg.org/ebooks/57859', 'en', 395), +(48199, 'The Fool Errant\r\nBeing the Memoirs of Francis-Anthony Strelley, Esq., Citizen of Lucca', 'Hewlett, Maurice', '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/5755', 'en', 98), +(48200, 'Little Jack Rabbit and Uncle John Hare', 'Cory, David', '2011-05-07', 16, 'https://www.gutenberg.org/ebooks/36052', 'en', 625), +(48201, 'Saturday\'s Child', 'Norris, Kathleen Thompson', '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/4687', 'en', 16601), +(48202, 'Moses Tod: Legende', 'Kayser, Rudolf', '2016-07-07', 3, 'https://www.gutenberg.org/ebooks/52517', 'de', 16602), +(48203, 'The Trial of Callista Blake', 'Pangborn, Edgar', '2012-05-28', 27, 'https://www.gutenberg.org/ebooks/39826', 'en', 12596), +(48204, 'Wondrous Love, and other Gospel addresses', 'Moody, Dwight Lyman', '2010-08-23', 9, 'https://www.gutenberg.org/ebooks/33520', 'en', 5091), +(48205, 'Koulumestari ja hänen poikansa: Kertomus 30 vuotisen sodan ajoilta', 'Caspari, K. H. (Karl Heinrich)', '2019-02-02', 2, 'https://www.gutenberg.org/ebooks/58811', 'fi', 5126), +(48206, 'Games for All Occasions', 'Blain, Mary E.', '2008-02-13', 22, 'https://www.gutenberg.org/ebooks/24597', 'en', 1560), +(48207, 'Der Bucheinband: Seine Technik und seine Geschichte', 'Adam, Paul', '2018-04-28', 26, 'https://www.gutenberg.org/ebooks/57065', 'de', 15750), +(48208, 'Punch, or the London Charivari, Volume 156, June 11, 1919', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11670', 'en', 134), +(48209, 'Eno ja sisarenpoika: Kertomus nuorille ystävilleni', 'Hoffmann, Franz', '2008-05-12', 11, 'https://www.gutenberg.org/ebooks/25445', 'fi', 1103), +(48210, 'L\'exilée', 'Loti, Pierre', '2012-10-18', 3, 'https://www.gutenberg.org/ebooks/41100', 'fr', 8204), +(48211, 'The World\'s Greatest Books — Volume 17 — Poetry and Drama', NULL, '2014-01-10', 216, 'https://www.gutenberg.org/ebooks/44640', 'en', 8), +(48212, 'Barbara Blomberg — Volume 07', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5567', 'en', 5057), +(48213, 'Marion\'s Faith.', 'King, Charles', '2007-01-07', 27, 'https://www.gutenberg.org/ebooks/20305', 'en', 315), +(48214, 'The Outdoor Chums on the Gulf; Or, Rescuing the Lost Balloonists', 'Allen, Quincy', '2004-11-23', 9, 'https://www.gutenberg.org/ebooks/14130', 'en', 16603), +(48215, 'Harck Olufs aus der Insul Amron im Stifte Ripen in Jütland, gebürtig, sonderbare Avanturen, so sich mit ihm insonderheit zu Constantine und an andern Orten in Africa zugetragen.', 'Riese, Otto', '2016-08-05', 9, 'https://www.gutenberg.org/ebooks/52725', 'de', 16604), +(48216, 'Histoire d\'Attila et de ses successeurs (2/2)\njusqu\'à l\'établissement des Hongrois en Europe', 'Thierry, Amédée', '2011-05-29', 16, 'https://www.gutenberg.org/ebooks/36260', 'fr', 16605), +(48217, 'London\'s Heart: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2014-05-28', 23, 'https://www.gutenberg.org/ebooks/45792', 'en', 1079), +(48218, 'Taistelu ja voitto: Kuvaelmia Rooman keisariajalta', 'Schultze, Viktor', '2018-06-02', 7, 'https://www.gutenberg.org/ebooks/57257', 'fi', 1103), +(48219, 'Lady Mary Wortley Montague, Her Life and Letters (1689-1762)', 'Montagu, Mary Wortley, Lady', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10590', 'en', 16606), +(48220, 'The Life of Yakoob Beg; Athalik Ghazi, and Badaulet; Ameer of Kashgar', 'Boulger, Demetrius Charles', '2010-09-12', 40, 'https://www.gutenberg.org/ebooks/33712', 'en', 16607), +(48221, 'Woodbine-Arbor; or, The Little Gardeners: A Story of a Happy Childhood', 'Anonymous', '2012-03-22', 9, 'https://www.gutenberg.org/ebooks/39228', 'en', 10676), +(48222, 'Ten Thousand a-Year. Volume 2.', 'Warren, Samuel', '2012-11-09', 5, 'https://www.gutenberg.org/ebooks/41332', 'en', 61), +(48223, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 405, December 19, 1829', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11442', 'en', 133), +(48224, 'Jonah\'s Luck', 'Hume, Fergus', '2018-01-16', 11, 'https://www.gutenberg.org/ebooks/56385', 'en', 167), +(48225, 'The History of Minnesota and Tales of the Frontier', 'Flandrau, Charles E. (Charles Eugene)', '2008-06-02', 21, 'https://www.gutenberg.org/ebooks/25677', 'en', 16608), +(48226, 'Twenty Drawings', NULL, '2017-09-07', 116, 'https://www.gutenberg.org/ebooks/55500', 'en', 16609), +(48227, 'Pioneers of the Pacific Coast\nA Chronicle of Sea Rovers and Fur Hunters', 'Laut, Agnes C.', '2009-09-01', 13, 'https://www.gutenberg.org/ebooks/29886', 'en', 16610), +(48228, 'Floor Games; a companion volume to \"Little Wars\"', 'Wells, H. G. (Herbert George)', '2003-01-01', 96, 'https://www.gutenberg.org/ebooks/3690', 'en', 1560), +(48229, 'The World English Bible (WEB): Colossians', 'Anonymous', '2005-06-01', 10, 'https://www.gutenberg.org/ebooks/8278', 'en', 14389), +(48230, 'Frondes Agrestes: Readings in \'Modern Painters\'', 'Ruskin, John', '2010-01-22', 10, 'https://www.gutenberg.org/ebooks/31045', 'en', 787), +(48231, 'Cenci\r\nCelebrated Crimes', 'Dumas, Alexandre', '2006-02-28', 42, 'https://www.gutenberg.org/ebooks/2742', 'en', 5050), +(48232, 'Farthest North, Vol. I\r\nBeing the Record of a Voyage of Exploration of the Ship \'Fram\' 1893-1896', 'Nansen, Fridtjof', '2009-10-07', 69, 'https://www.gutenberg.org/ebooks/30197', 'en', 5605), +(48233, 'The Kangaroo Hunters; Or, Adventures in the Bush', 'Bowman, Anne, active 19th century', '2013-08-14', 21, 'https://www.gutenberg.org/ebooks/43465', 'en', 1259), +(48234, 'This is Klon Calling', 'Sheldon, Walter J.', '2009-05-24', 42, 'https://www.gutenberg.org/ebooks/28954', 'en', 179), +(48235, 'A Prince of Cornwall\nA Story of Glastonbury and the West in the Days of Ina of Wessex', 'Whistler, Charles W. (Charles Watts)', '2004-08-29', 21, 'https://www.gutenberg.org/ebooks/13315', 'en', 166), +(48236, 'The God-Idea of the Ancients; Or, Sex in Religion', 'Gamble, Eliza Burt', '1996-08-01', 65, 'https://www.gutenberg.org/ebooks/639', 'en', 7851), +(48237, 'Litanaiit Liturgiillo attoraksat illagêktunut Labradoremẽtunut', 'Anonymous', '2008-11-02', 8, 'https://www.gutenberg.org/ebooks/27120', 'iu', 16611), +(48238, 'The Dreadnought of the Air', 'Westerman, Percy F. (Percy Francis)', '2014-06-27', 25, 'https://www.gutenberg.org/ebooks/46117', 'en', 3124), +(48239, 'Not George Washington — an Autobiographical Novel', 'Westbrook, H. W. (Herbert Wetton)', '2005-01-01', 90, 'https://www.gutenberg.org/ebooks/7230', 'en', 637), +(48240, 'Howards End', 'Forster, E. M. (Edward Morgan)', '2007-09-01', 12, 'https://www.gutenberg.org/ebooks/22452', 'en', 154), +(48241, 'I Paralipomeni del Lucifero di Mario Rapisardi', 'Capuana, Luigi', '2015-09-14', 17, 'https://www.gutenberg.org/ebooks/49963', 'it', 739), +(48242, 'Young Folks\' History of Rome', 'Yonge, Charlotte M. (Charlotte Mary)', '2005-09-07', 63, 'https://www.gutenberg.org/ebooks/16667', 'en', 3574), +(48243, 'Coelebs In Search of a Wife', 'More, Hannah', '2010-04-04', 20, 'https://www.gutenberg.org/ebooks/31879', 'en', 757), +(48244, 'Fragments of Experience\r\nSixth Book of the Faith-Promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints', 'Various', '2015-09-29', 30, 'https://www.gutenberg.org/ebooks/50072', 'en', 16612), +(48245, 'Żywila: Powiastka z Dziejów Litewskich', 'Mickiewicz, Adam', '2009-02-24', 16, 'https://www.gutenberg.org/ebooks/28168', 'pl', 61), +(48246, 'The Children\'s Bible', 'Sherman, Henry A.', '2007-11-21', 102, 'https://www.gutenberg.org/ebooks/23580', 'en', 4241), +(48247, 'Cursed by a Fortune', 'Fenn, George Manville', '2010-12-01', 34, 'https://www.gutenberg.org/ebooks/34537', 'en', 1380), +(48248, 'Cours familier de Littérature - Volume 25', 'Lamartine, Alphonse de', '2015-07-08', 28, 'https://www.gutenberg.org/ebooks/49399', 'fr', 920), +(48249, 'Happy House', 'Hutten zum Stolzenberg, Betsey Riddle, Freifrau von', '2013-05-22', 6, 'https://www.gutenberg.org/ebooks/42771', 'en', 432), +(48250, 'English Critical Essays: Nineteenth Century', NULL, '2010-02-15', 70, 'https://www.gutenberg.org/ebooks/31283', 'en', 2641), +(48251, 'Le tour du monde en quatre-vingts jours', 'Verne, Jules', '2002-10-01', 69, 'https://www.gutenberg.org/ebooks/3456', 'fr', 1158), +(48252, 'Far Past the Frontier', 'Braden, James A. (James Andrew)', '2008-08-09', 13, 'https://www.gutenberg.org/ebooks/26234', 'en', 315), +(48253, 'Studies in Literature', 'Morley, John', '2004-04-01', 40, 'https://www.gutenberg.org/ebooks/12001', 'en', 16613), +(48254, 'The History of the Reign of Ferdinand and Isabella the Catholic — Volume 1', 'Prescott, William Hickling', '2004-11-01', 41, 'https://www.gutenberg.org/ebooks/6918', 'en', 16614), +(48255, 'The Land of Cockayne: A Novel', 'Serao, Matilde', '2017-04-26', 5, 'https://www.gutenberg.org/ebooks/54614', 'en', 1058), +(48256, 'The Cup of Fury: A Novel of Cities and Shipyards', 'Hughes, Rupert', '2009-10-28', 37, 'https://www.gutenberg.org/ebooks/30351', 'en', 579), +(48257, 'The First 1000 Euler Numbers', NULL, '2001-04-01', 34, 'https://www.gutenberg.org/ebooks/2584', 'en', 1044), +(48258, 'The International Magazine, Volume 2, No. 2, January, 1851', 'Various', '2007-09-21', 6, 'https://www.gutenberg.org/ebooks/22694', 'en', 162), +(48259, 'Wakefieldin kappalainen', 'Goldsmith, Oliver', '2016-03-05', 9, 'https://www.gutenberg.org/ebooks/51366', 'fi', 11373), +(48260, 'Kokoro: Hints and Echoes of Japanese Inner Life', 'Hearn, Lafcadio', '2005-09-01', 103, 'https://www.gutenberg.org/ebooks/8882', 'en', 1304), +(48261, 'A Philosophical Dictionary, Volume 03', 'Voltaire', '2011-03-28', 37, 'https://www.gutenberg.org/ebooks/35623', 'en', 7152), +(48262, 'Pamela, or Virtue Rewarded', 'Richardson, Samuel', '2004-07-01', 558, 'https://www.gutenberg.org/ebooks/6124', 'en', 16615), +(48263, 'Kuninkaan mies: Historiallinen romaani', 'Scott, Walter', '2014-10-26', 6, 'https://www.gutenberg.org/ebooks/47203', 'fi', 16616), +(48264, 'L\'amour au pays bleu', 'France, Hector', '2006-01-22', 11, 'https://www.gutenberg.org/ebooks/17573', 'fr', 61), +(48265, 'Abhandlungen über die Fabel', 'Lessing, Gotthold Ephraim', '2006-02-01', 35, 'https://www.gutenberg.org/ebooks/9950', 'de', 2250), +(48266, 'Punch, or the London Charivari, Vol. 150, April 12, 1916', 'Various', '2007-12-05', 11, 'https://www.gutenberg.org/ebooks/23746', 'en', 134), +(48267, 'Chats on Postage Stamps', 'Melville, Frederick John', '2016-11-02', 9, 'https://www.gutenberg.org/ebooks/53431', 'en', 1267), +(48268, 'A Chronological Table of the Catholic Primates of Ireland\r\nWith the Years in Which They Succeeded to the Metropolitan Sees of Armagh, Dublin, Cashell and Tuam', 'Murphy, John', '2012-02-16', 4, 'https://www.gutenberg.org/ebooks/38900', 'en', 16617), +(48269, 'Dodo: A Detail of the Day. Volumes 1 and 2', 'Benson, E. F. (Edward Frederic)', '2013-12-22', 24, 'https://www.gutenberg.org/ebooks/44486', 'en', 7958), +(48270, 'In a Glass Darkly, v. 3/3', 'Le Fanu, Joseph Sheridan', '2011-08-23', 53, 'https://www.gutenberg.org/ebooks/37174', 'en', 669), +(48271, 'Notes By the Way in a Sailor\'s Life', 'Knights, Arthur E.', '2003-11-01', 87, 'https://www.gutenberg.org/ebooks/4673', 'en', 750), +(48272, 'Doctor Birch and His Young Friends', 'Thackeray, William Makepeace', '2014-05-01', 28, 'https://www.gutenberg.org/ebooks/45554', 'en', 1779), +(48273, 'With Steyn and De Wet', 'Pienaar, F. F. (Filippus Fourie)', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/15224', 'en', 16618), +(48274, 'Tratado das Ilhas Novas \r\nE descobrimento dellas e outras couzas', 'Sousa, Francisco de, active 1570', '2007-04-08', 21, 'https://www.gutenberg.org/ebooks/21011', 'pt', 4623), +(48275, 'Blackwood\'s Edinburgh Magazine, Volume 64, No. 398, December 1848', 'Various', '2012-07-01', 16, 'https://www.gutenberg.org/ebooks/40026', 'en', 711), +(48276, 'The French Revolution: A History', 'Carlyle, Thomas', '2006-02-15', 296, 'https://www.gutenberg.org/ebooks/1301', 'en', 1536), +(48277, 'The Best of the World\'s Classics, Restricted to Prose, Vol. VII (of X)—Continental Europe I', NULL, '2008-02-09', 27, 'https://www.gutenberg.org/ebooks/24563', 'en', 16231), +(48278, 'Between Whiles', 'Jackson, Helen Hunt', '2004-01-01', 28, 'https://www.gutenberg.org/ebooks/10756', 'en', 179), +(48279, 'The Beautiful White Devil', 'Boothby, Guy', '2011-11-09', 26, 'https://www.gutenberg.org/ebooks/37948', 'en', 177), +(48280, 'Astronomy for Young Australians', 'Bonwick, James', '2018-05-05', 11, 'https://www.gutenberg.org/ebooks/57091', 'en', 1488), +(48281, 'With Roberts to Pretoria: A Tale of The South African War', 'Henty, G. A. (George Alfred)', '2017-12-07', 19, 'https://www.gutenberg.org/ebooks/56143', 'en', 10363), +(48282, 'Il sogno di Scipione', 'Metastasio, Pietro', '2004-03-01', 34, 'https://www.gutenberg.org/ebooks/11684', 'it', 1966), +(48283, 'The City Curious', 'Boschère, Jean de', '2010-05-17', 25, 'https://www.gutenberg.org/ebooks/32406', 'en', 2203), +(48284, 'The Yellow Poppy', 'Broster, D. K. (Dorothy Kathleen)', '2019-07-17', 281, 'https://www.gutenberg.org/ebooks/59937', 'en', 248), +(48285, 'The Story of My Life — Volume 01', 'Ebers, Georg', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/5593', 'en', 7159), +(48286, 'Mortmain', 'Train, Arthur Cheney', '2011-09-08', 36, 'https://www.gutenberg.org/ebooks/37346', 'en', 112), +(48287, 'The Writings of Thomas Jefferson, Vol. 4 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2016-11-26', 29, 'https://www.gutenberg.org/ebooks/53603', 'en', 3311), +(48288, 'The Atlantic Monthly, Volume 12, No. 69, July, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-02-11', 19, 'https://www.gutenberg.org/ebooks/15016', 'en', 1227), +(48289, 'The Yale Literary Magazine, Volume I, Number 1', 'Various', '2019-04-23', 13, 'https://www.gutenberg.org/ebooks/59339', 'en', 16619), +(48290, 'The Carbonels', 'Yonge, Charlotte M. (Charlotte Mary)', '2007-04-27', 32, 'https://www.gutenberg.org/ebooks/21223', 'en', 287), +(48291, 'Vittoria — Volume 7', 'Meredith, George', '2003-09-01', 18, 'https://www.gutenberg.org/ebooks/4441', 'en', 4276), +(48292, 'Cleopatra: historische roman van George Ebers', 'Ebers, Georg', '2011-06-03', 12, 'https://www.gutenberg.org/ebooks/36294', 'nl', 6232), +(48293, 'In Byways of Scottish History', 'Barbé, Louis A.', '2014-05-26', 18, 'https://www.gutenberg.org/ebooks/45766', 'en', 16620), +(48294, 'The Kitchen Cat and Other Stories', 'Walton, Amy', '2008-03-04', 18, 'https://www.gutenberg.org/ebooks/24751', 'en', 179), +(48295, 'Fairy Gold\nShip\'s Company, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/10564', 'en', 72), +(48296, 'The Swan and Her Crew\r\nor The Adventures of Three Young Naturalists and Sportsmen on the Broads and Rivers of Norfolk', 'Davies, G. Christopher (George Christopher)', '2012-07-12', 20, 'https://www.gutenberg.org/ebooks/40214', 'en', 1817), +(48297, 'Cymbeline', 'Shakespeare, William', '1997-12-01', 72, 'https://www.gutenberg.org/ebooks/1133', 'en', 3523), +(48298, 'Die Potentialfunction und das Potentiall; ein Beitrag zur mathematischen Physik', 'Clausius, R. (Rudolf)', '2010-06-01', 17, 'https://www.gutenberg.org/ebooks/32634', 'de', 16621), +(48299, 'The Flower of the Flock, Volume 1 (of 3)', 'Egan, Pierce', '2018-01-14', 5, 'https://www.gutenberg.org/ebooks/56371', 'en', 61), +(48300, 'The Escape of a Princess Pat\r\nBeing the full account of the capture and fifteen months\' imprisonment of Corporal Edwards, of the Princess Patricia\'s Canadian Light Infantry, and his final escape from Germany into Holland', 'Edwards, Edward', '2008-06-03', 17, 'https://www.gutenberg.org/ebooks/25683', 'en', 1390), +(48301, 'A Girl\'s Ride in Iceland', 'Alec-Tweedie, Mrs. (Ethel)', '2008-07-08', 22, 'https://www.gutenberg.org/ebooks/26006', 'en', 280), +(48302, 'Stonewall Jackson and the American Civil War', 'Henderson, G. F. R. (George Francis Robert)', '2004-05-01', 76, 'https://www.gutenberg.org/ebooks/12233', 'en', 16622), +(48303, 'Sappho: A New Rendering', 'Sappho', '2013-04-15', 54, 'https://www.gutenberg.org/ebooks/42543', 'en', 15030), +(48304, 'La fantesca', 'Porta, Giambattista della', '2009-08-31', 24, 'https://www.gutenberg.org/ebooks/29872', 'it', 11895), +(48305, 'The Life and Adventures of Peter Wilkins, Volume 2 (of 2)', 'Paltock, Robert', '2016-05-02', 6, 'https://www.gutenberg.org/ebooks/51968', 'en', 580), +(48306, 'Yvette', 'Maupassant, Guy de', '2003-01-01', 21, 'https://www.gutenberg.org/ebooks/3664', 'en', 560), +(48307, 'Vasárnapi Könyv. 1916. Első félév 20. füzet', NULL, '2009-10-02', 12, 'https://www.gutenberg.org/ebooks/30163', 'hu', 18), +(48308, 'Opuscula: Essays chiefly Philological and Ethnographical', 'Latham, R. G. (Robert Gordon)', '2015-01-25', 16, 'https://www.gutenberg.org/ebooks/48079', 'en', 7033), +(48309, 'An Introduction to the Study of the Maya Hieroglyphs', 'Morley, Sylvanus Griswold', '2013-08-17', 35, 'https://www.gutenberg.org/ebooks/43491', 'en', 13733), +(48310, 'Modern Musical Drift', 'Henderson, W. J. (William James)', '2017-03-25', 5, 'https://www.gutenberg.org/ebooks/54426', 'en', 9241), +(48311, 'The Best Short Stories of 1921, and the Yearbook of the American Short Story', NULL, '2006-06-28', 109, 'https://www.gutenberg.org/ebooks/18709', 'en', 1516), +(48312, 'Myra\'s Well: A Tale of All-Hallow-E\'en', 'Dawson, George Francis', '2011-02-26', 24, 'https://www.gutenberg.org/ebooks/35411', 'en', 15812), +(48313, 'Stjärnornas kungabarn 2: De tre\nEn tids- och karaktersstudie från drottning Kristinas dagar', 'Topelius, Zacharias', '2015-09-17', 7, 'https://www.gutenberg.org/ebooks/49997', 'sv', 98), +(48314, 'Stories to Tell Children\nFifty-Four Stories With Some Suggestions For Telling', 'Bryant, Sara Cone', '2005-09-14', 20, 'https://www.gutenberg.org/ebooks/16693', 'en', 6258), +(48315, 'Fairlop and Its Founder; or, Facts and Fun for the Forest Frolickers.', 'Famed First Friday Fairgoer', '2016-02-08', 3, 'https://www.gutenberg.org/ebooks/51154', 'en', 16623), +(48316, 'Creation or Evolution? A Philosophical Inquiry', 'Curtis, George Ticknor', '2015-09-30', 4, 'https://www.gutenberg.org/ebooks/50086', 'en', 1315), +(48317, 'Pieces of Eight\r\nBeing the Authentic Narrative of a Treasure Discovered in the Bahama Islands in the Year 1903', 'Le Gallienne, Richard', '2006-02-10', 58, 'https://www.gutenberg.org/ebooks/17741', 'en', 15284), +(48318, 'Socialism: Positive and Negative', 'La Monte, Robert Rives', '2007-11-21', 15, 'https://www.gutenberg.org/ebooks/23574', 'en', 254), +(48319, 'A Girl of the North: A Story of London and Canada', 'Jones, Susan Morrow', '2015-05-01', 8, 'https://www.gutenberg.org/ebooks/48845', 'en', 348), +(48320, 'Poems of American Patriotism', NULL, '2004-08-01', 110, 'https://www.gutenberg.org/ebooks/6316', 'en', 16624), +(48321, 'Albina, das Blumenmädchen', 'Reinhold, Caroline', '2014-10-03', 4, 'https://www.gutenberg.org/ebooks/47031', 'de', 253), +(48322, 'Emblems Of Love', 'Abercrombie, Lascelles', '2005-03-26', 24, 'https://www.gutenberg.org/ebooks/15472', 'en', 8), +(48323, 'Subspace Survivors', 'Smith, E. E. (Edward Elmer)', '2007-05-30', 108, 'https://www.gutenberg.org/ebooks/21647', 'en', 26), +(48324, 'Anna Christie', 'O\'Neill, Eugene', '2003-05-01', 50, 'https://www.gutenberg.org/ebooks/4025', 'en', 16625), +(48325, 'My Pretty Scrap-Book: Picture Pages and Pleasant Stories for Little Readers', 'Cupples, George, Mrs.', '2014-04-01', 22, 'https://www.gutenberg.org/ebooks/45302', 'en', 388), +(48326, 'The Hindoos as They Are\r\nA Description of the Manners, Customs and the Inner Life of Hindoo Society in Bengal', 'Sivachandra Vasu', '2011-10-11', 26, 'https://www.gutenberg.org/ebooks/37722', 'en', 16626), +(48327, 'The Cricket on the Hearth', 'Dickens, Charles', '2007-03-10', 87, 'https://www.gutenberg.org/ebooks/20795', 'en', 3397), +(48328, 'The Corset and the Crinoline\nA Book of Modes and Costumes from Remote Periods to the Present Time', 'Lord, William Barry', '2016-10-12', 35, 'https://www.gutenberg.org/ebooks/53267', 'en', 16627), +(48329, 'American Red Cross Text-Book on Home Hygiene and Care of the Sick', 'Delano, Jane A.', '2010-05-04', 28, 'https://www.gutenberg.org/ebooks/32250', 'en', 295), +(48330, 'The Rise of the Dutch Republic — Volume 18: 1572', 'Motley, John Lothrop', '2004-01-01', 63, 'https://www.gutenberg.org/ebooks/4819', 'en', 3372), +(48331, 'Euripides\' Elektra', 'Euripides', '2018-03-10', 11, 'https://www.gutenberg.org/ebooks/56715', 'sv', 5603), +(48332, 'Margaret Tudor: A Romance of Old St. Augustine', 'Colcock, Annie T.', '2008-01-17', 16, 'https://www.gutenberg.org/ebooks/24335', 'en', 98), +(48333, 'Byron', 'Nichol, John', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10100', 'en', 2265), +(48334, 'Makers of Modern Agriculture', 'Macdonald, William', '2012-09-05', 61, 'https://www.gutenberg.org/ebooks/40670', 'en', 16628), +(48335, 'Penny Nichols and the Black Imp', 'Clark, Joan', '2010-08-08', 11, 'https://www.gutenberg.org/ebooks/33382', 'en', 16629), +(48336, 'Men of Iron', 'Pyle, Howard', '2006-02-15', 158, 'https://www.gutenberg.org/ebooks/1557', 'en', 404), +(48337, 'Right Above Race', 'Kahn, Otto H.', '2009-11-20', 12, 'https://www.gutenberg.org/ebooks/30507', 'en', 335), +(48338, 'The Glory of English Prose\nLetters to My Grandson', 'Coleridge, Stephen', '2004-10-18', 10, 'https://www.gutenberg.org/ebooks/13785', 'en', 16630), +(48339, 'A Short History of the Salem Village Witchcraft Trials\nIllustrated by a Verbatim Report of the Trial of Mrs. Elizabeth Howe', 'Perley, M. V. B.', '2017-01-22', 49, 'https://www.gutenberg.org/ebooks/54042', 'en', 16631), +(48340, 'The Foolish Dictionary', 'Wurdz, Gideon', '2008-09-01', 6, 'https://www.gutenberg.org/ebooks/26462', 'en', 3509), +(48341, 'Florida and the Game Water-Birds of the Atlantic Coast and the Lakes of the United States\r\nWith a full account of the sporting along our sea-shores and inland waters, and remarks on breech-loaders and hammerless guns', 'Roosevelt, Robert Barnwell', '2017-07-24', 16, 'https://www.gutenberg.org/ebooks/55190', 'en', 16632), +(48342, 'The Later Works of Titian', 'Phillips, Claude, Sir', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12657', 'en', 4742), +(48343, 'An Old Story of My Farming Days Vol. 1 (of 3).\r\n(Ut Mine Stromtid)', 'Reuter, Fritz', '2011-04-13', 9, 'https://www.gutenberg.org/ebooks/35849', 'en', 5500), +(48344, 'The German War', 'Doyle, Arthur Conan', '2013-02-18', 42, 'https://www.gutenberg.org/ebooks/42127', 'en', 335), +(48345, 'The Entire Project Gutenberg Works of Mark Twain', 'Twain, Mark', '2004-09-20', 274, 'https://www.gutenberg.org/ebooks/3200', 'en', 5574), +(48346, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 5 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 27, 'https://www.gutenberg.org/ebooks/17325', 'en', 7793), +(48347, 'A Morte de D. Ignez de Castro\r\nCantata por Manoel Maria Barbosa du Bucage; A Que Se Ajunta o Episódio, Ao Mesmo Assumpto, do Immortal Luiz de Camões', 'Camões, Luís de', '2007-10-20', 47, 'https://www.gutenberg.org/ebooks/23110', 'pt', 16633), +(48348, 'The Thirty Years War — Volume 03', 'Schiller, Friedrich', '2004-10-01', 15, 'https://www.gutenberg.org/ebooks/6772', 'en', 4328), +(48349, 'The Fiction Factory\r\nBeing the experience of a writer who, for twenty-two years, has kept a story-mill grinding successfully', 'Cook, William Wallace', '2014-11-25', 41, 'https://www.gutenberg.org/ebooks/47455', 'en', 61), +(48350, 'The Russian Opera', 'Newmarch, Rosa', '2014-08-14', 12, 'https://www.gutenberg.org/ebooks/46587', 'en', 16634), +(48351, 'A Noble Woman: The Life-Story of Edith Cavell', 'Protheroe, Ernest', '2011-01-26', 24, 'https://www.gutenberg.org/ebooks/35075', 'en', 16635), +(48352, 'The Last Letter', 'Leiber, Fritz', '2016-03-22', 41, 'https://www.gutenberg.org/ebooks/51530', 'en', 16636), +(48353, 'The Human Boy', 'Phillpotts, Eden', '2017-03-02', 15, 'https://www.gutenberg.org/ebooks/54270', 'en', 1779), +(48354, 'Le tour de la France par deux enfants\nDevoir et Patrie', 'Bruno, G.', '2009-01-12', 45, 'https://www.gutenberg.org/ebooks/27782', 'fr', 2216), +(48355, 'The Golden Wheel Dream-book and Fortune-teller\r\nBeing the most complete work on fortune-telling and interpreting dreams ever printed, containing an alphabetical list of dreams, with their interpretation, and the lucky numbers they signify. Also explaining how to tell fortunes by the mysterious golden wheel, with cards, dice, and dominoes. How to tell future events by the lines of the hands, by moles on the body, by the face, nails of the fingers, hair and shape of the head. How to find where to dig for water, coal, and all kinds of metals, by means of the celebrated divining or luck rod. How to tell the temper and disposition of anybody, how to tell fortunes with tea leaves and coffee grounds, signs of the Moon\'s age, lucky and unlucky days, together with charms to make your sweetheart love you, and to make a lover pop the question, with twenty ways of telling fortunes on New Year\'s eve, and a complete language and signification of the flowers.', 'Fontaine, Felix', '2019-08-03', 1005, 'https://www.gutenberg.org/ebooks/60045', 'en', 5750), +(48356, 'Bedenkingen tegen de Leer van Darwin\nGevolgd door beschouwingen over eenige philosophische onderwerpen.', 'Reuther, Antoine Charles', '2009-12-22', 11, 'https://www.gutenberg.org/ebooks/30735', 'nl', 5315), +(48357, 'Stories Worth Rereading', 'Various', '2005-12-01', 142, 'https://www.gutenberg.org/ebooks/9508', 'en', 388), +(48358, 'The Rise and Fall of the Confederate Government, Volume 2', 'Davis, Jefferson', '2013-03-12', 77, 'https://www.gutenberg.org/ebooks/42315', 'en', 2268), +(48359, 'The Fathers of the Constitution: A Chronicle of the Establishment of the Union', 'Farrand, Max', '2002-01-01', 30, 'https://www.gutenberg.org/ebooks/3032', 'en', 16637), +(48360, 'The Ducks and Frogs, a Tale of the Bogs.', 'Fire-Fly, Fanny', '2008-09-17', 12, 'https://www.gutenberg.org/ebooks/26650', 'en', 16638), +(48361, 'Punch, or the London Charivari, Volume 146, January 21, 1914', 'Various', '2004-05-01', 12, 'https://www.gutenberg.org/ebooks/12465', 'en', 134), +(48362, 'The South Pole; an account of the Norwegian Antarctic expedition in the \"Fram,\" 1910-12 — Volume 1 and Volume 2', 'Amundsen, Roald', '2004-09-01', 25, 'https://www.gutenberg.org/ebooks/6540', 'en', 5837), +(48363, 'Ghost Beyond the Gate', 'Wirt, Mildred A. (Mildred Augustine)', '2010-11-22', 25, 'https://www.gutenberg.org/ebooks/34395', 'en', 454), +(48364, 'Into the Jaws of Death', 'O\'Brien, Jack', '2006-08-02', 25, 'https://www.gutenberg.org/ebooks/18963', 'en', 4962), +(48365, 'Viaggi di Ali Bey el-Abbassi in Africa ed in Asia, v. 4', 'Ali Bey', '2014-12-14', 27, 'https://www.gutenberg.org/ebooks/47667', 'it', 6541), +(48366, 'An Elegy on the Glory of Her Sex, Mrs. Mary Blaize', 'Goldsmith, Oliver', '2005-11-20', 44, 'https://www.gutenberg.org/ebooks/17117', 'en', 3625), +(48367, 'The Three Bears', 'Anonymous', '2007-11-04', 74, 'https://www.gutenberg.org/ebooks/23322', 'en', 16639), +(48368, 'The Aggravation of Elmer', 'Arthur, Robert', '2009-08-05', 48, 'https://www.gutenberg.org/ebooks/29618', 'en', 179), +(48369, 'A Guide to the Study of Fishes, Volume 2 (of 2)', 'Jordan, David Starr', '2016-04-09', 20, 'https://www.gutenberg.org/ebooks/51702', 'en', 16640), +(48370, 'The Fighting Chance', 'Chambers, Robert W. (Robert William)', '2005-02-01', 18, 'https://www.gutenberg.org/ebooks/7492', 'en', 2999), +(48371, 'That Affair at Elizabeth', 'Stevenson, Burton Egbert', '2011-02-12', 64, 'https://www.gutenberg.org/ebooks/35247', 'en', 61), +(48372, 'A Portrait of the Artist as a Young Man', 'Joyce, James', '2003-07-01', 961, 'https://www.gutenberg.org/ebooks/4217', 'en', 1351), +(48373, 'Charles Bradlaugh: a Record of His Life and Work, Volume 1 (of 2)\r\nWith an Account of his Parliamentary Struggle, Politics and Teachings. Seventh Edition', 'Robertson, J. M. (John Mackinnon)', '2014-03-14', 15, 'https://www.gutenberg.org/ebooks/45130', 'en', 16641), +(48374, 'Notes and Queries, Number 64, January 18, 1851', 'Various', '2005-04-17', 10, 'https://www.gutenberg.org/ebooks/15640', 'en', 105), +(48375, 'Lajien synty: Luonnollisen valinnan kautta', 'Darwin, Charles', '2016-05-29', 26, 'https://www.gutenberg.org/ebooks/52187', 'fi', 4602), +(48376, 'Peter Trawl; Or, The Adventures of a Whaler', 'Kingston, William Henry Giles', '2007-05-15', 28, 'https://www.gutenberg.org/ebooks/21475', 'en', 3532), +(48377, 'Tavallinen juttu I\nKaksi-osainen romaani', 'Goncharov, Ivan Aleksandrovich', '2016-09-16', 10, 'https://www.gutenberg.org/ebooks/53055', 'fi', 1014), +(48378, 'La sorcellerie', 'Louandre, Charles', '2005-01-24', 32, 'https://www.gutenberg.org/ebooks/14792', 'fr', 8495), +(48379, 'By Trench and Trail in Song and Story', 'Mackay, Angus', '2011-09-22', 2, 'https://www.gutenberg.org/ebooks/37510', 'en', 28), +(48380, 'In a Quiet Village', 'Baring-Gould, S. (Sabine)', '2018-02-08', 26, 'https://www.gutenberg.org/ebooks/56527', 'en', 712), +(48381, 'The Daltons; Or, Three Roads In Life. Volume II (of II)', 'Lever, Charles James', '2010-04-19', 7, 'https://www.gutenberg.org/ebooks/32062', 'en', 137), +(48382, 'Negro Tales', 'Cotter, Joseph S. (Joseph Seamon)', '2012-12-09', 38, 'https://www.gutenberg.org/ebooks/41590', 'en', 112), +(48383, 'A Day with the Poet Tennyson', NULL, '2012-08-08', 12, 'https://www.gutenberg.org/ebooks/40442', 'en', 7288), +(48384, 'The White Crystals: Being an Account of the Adventures of Two Boys', 'Garis, Howard Roger', '2012-01-12', 19, 'https://www.gutenberg.org/ebooks/38558', 'en', 1123), +(48385, 'How to Become a Public Speaker\nShowing the best manner of arranging thought so as to gain\nconciseness, ease and fluency in speech', 'Pittenger, William', '2017-01-02', 38, 'https://www.gutenberg.org/ebooks/53869', 'en', 3906), +(48386, 'Henry VI, Part 1', 'Shakespeare, William', '1999-06-01', 54, 'https://www.gutenberg.org/ebooks/1765', 'en', 7878), +(48387, 'The New World of Islam', 'Stoddard, Lothrop', '2008-01-01', 167, 'https://www.gutenberg.org/ebooks/24107', 'en', 16642), +(48388, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 325, August 2, 1828', 'Various', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10332', 'en', 133), +(48389, 'Life and Letters of Thomas Henry Huxley — Volume 3', 'Huxley, Thomas Henry', '2004-05-01', 33, 'https://www.gutenberg.org/ebooks/5799', 'en', 16643), +(48390, 'Os Trabalhadores do Mar', 'Hugo, Victor', '2018-09-13', 42, 'https://www.gutenberg.org/ebooks/57895', 'pt', 9794), +(48391, 'The Greatest English Classic\r\nA Study of the King James Version of the Bible and Its Influence on Life and Literature', 'McAfee, Cleland Boyd', '2012-09-21', 21, 'https://www.gutenberg.org/ebooks/40822', 'en', 8042), +(48392, 'Through East Anglia in a Motor Car', 'Vincent, James Edmund', '2012-02-20', 20, 'https://www.gutenberg.org/ebooks/38938', 'en', 11173), +(48393, 'Ocean Gardens. The History of the Marine Aquarium\nand the best methods now adopted for its establishment and preservation.', 'Humphreys, Henry Noel', '2016-10-30', 11, 'https://www.gutenberg.org/ebooks/53409', 'en', 11415), +(48394, 'A Body of Divinity, Vol. 1 (of 4)\r\nWherein the doctrines of the Christian religion are explained and defended, being the substance of several lectures on the Assembly\'s Larger Catechism', 'Ridgley, Thomas', '2019-03-26', 10, 'https://www.gutenberg.org/ebooks/59133', 'en', 16644), +(48395, 'The New Morning: Poems', 'Noyes, Alfred', '2007-04-11', 15, 'https://www.gutenberg.org/ebooks/21029', 'en', 8), +(48396, 'Semiramide: Racconto babilonese', 'Barrili, Anton Giulio', '2018-04-09', 21, 'https://www.gutenberg.org/ebooks/56947', 'it', 16645), +(48397, 'Contemporary One-Act Plays', NULL, '2011-11-10', 171, 'https://www.gutenberg.org/ebooks/37970', 'en', 16646), +(48398, 'English Secularism: A Confession of Belief', 'Holyoake, George Jacob', '2011-11-22', 21, 'https://www.gutenberg.org/ebooks/38104', 'en', 13812), +(48399, 'Salomé', 'Wilde, Oscar', '1998-06-01', 89, 'https://www.gutenberg.org/ebooks/1339', 'fr', 4263), +(48400, 'John Forster\r\nBy One of His Friends', 'Fitzgerald, Percy', '2007-06-12', 16, 'https://www.gutenberg.org/ebooks/21815', 'en', 16647), +(48401, 'Peck\'s Bad Boy Abroad\nBeing a Humorous Description of the Bad Boy and His Dad\nin Their Journeys Through Foreign Lands - 1904', 'Peck, George W. (George Wilbur)', '2008-05-16', 34, 'https://www.gutenberg.org/ebooks/25489', 'en', 533), +(48402, 'Beaumont and Fletcher\'s Works, Vol. 01 of 10: the Custom of the Country', 'Fletcher, John', '2004-04-01', 29, 'https://www.gutenberg.org/ebooks/12039', 'en', 126), +(48403, 'Some Heroes of Travel\r\nor, Chapters from the History of Geographical Discovery and Enterprise', 'Adams, W. H. Davenport (William Henry Davenport)', '2013-05-20', 26, 'https://www.gutenberg.org/ebooks/42749', 'en', 7544), +(48404, 'Down and Out in the Magic Kingdom', 'Doctorow, Cory', '2005-05-01', 242, 'https://www.gutenberg.org/ebooks/8086', 'en', 5048), +(48405, 'L\'Argentina vista come è', 'Barzini, Luigi', '2009-10-30', 57, 'https://www.gutenberg.org/ebooks/30369', 'it', 7609), +(48406, 'Salted with Fire', 'MacDonald, George', '2005-10-01', 44, 'https://www.gutenberg.org/ebooks/9154', 'en', 55), +(48407, 'Lincoln Day Entertainments\r\nRecitations, Plays, Dialogues, Drills, Tableaux, Pantomimes, Quotations, Songs, Tributes, Stories, Facts', NULL, '2015-02-15', 13, 'https://www.gutenberg.org/ebooks/48273', 'en', 2597), +(48408, 'Thoughts of Marcus Aurelius', 'Marcus Aurelius, Emperor of Rome', '2004-11-01', 166, 'https://www.gutenberg.org/ebooks/6920', 'en', 16648), +(48409, 'Our Day\nIn the Light of Prophecy', 'Spicer, William Ambrose', '2006-06-05', 32, 'https://www.gutenberg.org/ebooks/18503', 'en', 4149), +(48410, 'The Boy Allies in the Balkan Campaign; Or, the Struggle to Save a Nation', 'Hayes, Clair W. (Clair Wallace)', '2004-07-02', 15, 'https://www.gutenberg.org/ebooks/12805', 'en', 16649), +(48411, 'Chronicles of Border Warfare\r\nor, a History of the Settlement by the Whites, of North-Western Virginia, and of the Indian Wars and Massacres in that section of the Indian Wars and Massacres in that section of the State', 'Withers, Alexander Scott', '2009-06-26', 45, 'https://www.gutenberg.org/ebooks/29244', 'en', 12983), +(48412, 'Henriette', 'Coppée, François', '2005-08-09', 6, 'https://www.gutenberg.org/ebooks/16499', 'fr', 61), +(48413, 'The Young Woodsman; Or, Life in the Forests of Canada', 'Oxley, J. Macdonald (James Macdonald)', '2006-02-01', 28, 'https://www.gutenberg.org/ebooks/9968', 'en', 5027), +(48414, 'Gems (?) of German Thought', NULL, '2009-03-24', 10, 'https://www.gutenberg.org/ebooks/28396', 'en', 11688), +(48415, 'Aholan asukkaat', 'Kivinen, Niilo', '2015-06-11', 10, 'https://www.gutenberg.org/ebooks/49193', 'fi', 41), +(48416, 'The Subspecies of the Mexican Red-Bellied Squirrel, Sciurus aureogaster', 'Kelson, Keith R.', '2010-01-26', 14, 'https://www.gutenberg.org/ebooks/31089', 'en', 272), +(48417, 'The Prodigal Son', 'Caine, Hall, Sir', '2016-05-13', 16, 'https://www.gutenberg.org/ebooks/51950', 'en', 847), +(48418, 'Geschichte der Englischen Sprache und Literatur\nvon den ältesten Zeiten bis zur Einführung der Buchdruckerkunst', 'Behnsch, Ottomar', '2006-07-01', 25, 'https://www.gutenberg.org/ebooks/18731', 'de', 1201), +(48419, 'Gróf Kaczaifalvi László avagy a természetes ember', 'Verseghy, Ferenc', '2015-01-01', 3, 'https://www.gutenberg.org/ebooks/47835', 'hu', 189), +(48420, 'Introduction to the Study of Palæontological Botany', 'Balfour, John Hutton', '2016-01-09', 14, 'https://www.gutenberg.org/ebooks/50882', 'en', 16650), +(48421, 'Mary Olivier: a Life', 'Sinclair, May', '2005-11-01', 67, 'https://www.gutenberg.org/ebooks/9366', 'en', 378), +(48422, 'Social Life; or, The Manners and Customs of Polite Society', 'Cooke, Maud C.', '2009-05-31', 140, 'https://www.gutenberg.org/ebooks/28998', 'en', 788), +(48423, 'The Study of Elementary Electricity and Magnetism by Experiment\r\nContaining Two Hundred Experiments Performed with Simple, Home-made Apparatus', 'St. John, Thomas M. (Thomas Matthew)', '2015-01-22', 16, 'https://www.gutenberg.org/ebooks/48041', 'en', 16651), +(48424, 'Critical Miscellanies (Vol. 3 of 3), Essay 1: On Popular Culture', 'Morley, John', '2009-06-08', 73, 'https://www.gutenberg.org/ebooks/29076', 'en', 2156), +(48425, 'King Diderik and the fight between the Lion and Dragon, and Other Ballads', NULL, '2008-10-07', 8, 'https://www.gutenberg.org/ebooks/26802', 'en', 54), +(48426, 'A Charming Fellow, Volume II', 'Trollope, Frances Eleanor', '2011-02-28', 10, 'https://www.gutenberg.org/ebooks/35429', 'en', 61), +(48427, 'L\'Illustration, No. 0068, 15 Juin 1844', 'Various', '2014-09-30', 3, 'https://www.gutenberg.org/ebooks/47009', 'fr', 150), +(48428, 'The Choise of Valentines; Or the Merie Ballad of Nash His Dildo', 'Nash, Thomas', '2006-02-16', 43, 'https://www.gutenberg.org/ebooks/17779', 'en', 16652), +(48429, 'Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves.\nTexas Narratives, Part 2', 'United States. Work Projects Administration', '2010-01-14', 36, 'https://www.gutenberg.org/ebooks/30967', 'en', 15834), +(48430, 'The Second Jungle Book', 'Kipling, Rudyard', '1999-10-01', 124, 'https://www.gutenberg.org/ebooks/1937', 'en', 15087), +(48431, 'Lord Ormont and His Aminta — Volume 3', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4479', 'en', 137), +(48432, 'Index of the Project Gutenberg Works of Thomas Wentworth Higginson', 'Higginson, Thomas Wentworth', '2019-04-17', 10, 'https://www.gutenberg.org/ebooks/59301', 'en', 198), +(48433, 'Der Großinquisitor', 'Dostoyevsky, Fyodor', '2011-12-18', 72, 'https://www.gutenberg.org/ebooks/38336', 'de', 942), +(48434, 'The Opal Serpent', 'Hume, Fergus', '2008-03-06', 49, 'https://www.gutenberg.org/ebooks/24769', 'en', 61), +(48435, 'Goodbird the Indian: His Story', 'Wilson, Gilbert Livingstone', '2018-01-10', 12, 'https://www.gutenberg.org/ebooks/56349', 'en', 16653), +(48436, 'The Testimony of the Bible Concerning the Assumptions of Destructive Criticism', 'Wishard, S. E. (Samuel Ellis)', '2005-05-10', 9, 'https://www.gutenberg.org/ebooks/15812', 'en', 3792), +(48437, 'Insights and Heresies Pertaining to the Evolution of the Soul', 'Ammyeetis', '2006-05-08', 25, 'https://www.gutenberg.org/ebooks/18355', 'en', 16654), +(48438, 'The Golden Age', 'Grahame, Kenneth', '2008-07-03', 221, 'https://www.gutenberg.org/ebooks/291', 'en', 2625), +(48439, 'The Jupiter Weapon', 'Fontenay, Charles L.', '2008-12-22', 77, 'https://www.gutenberg.org/ebooks/27588', 'en', 26), +(48440, 'The Old Curiosity Shop', 'Dickens, Charles', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9702', 'en', 2739), +(48441, '山水小牘', 'Huangfu, Mei, active 873-910', '2007-12-19', 20, 'https://www.gutenberg.org/ebooks/23914', 'zh', NULL), +(48442, 'Deutsche Humoristen, 3. Band (von 8)', 'Böhlau, Helene', '2015-03-07', 13, 'https://www.gutenberg.org/ebooks/48425', 'de', 543), +(48443, 'Poems of Cheer', 'Wilcox, Ella Wheeler', '2002-05-01', 42, 'https://www.gutenberg.org/ebooks/3238', 'en', 178), +(48444, 'L\'Illustration, No. 3260, 19 Août 1905', 'Various', '2011-04-14', 4, 'https://www.gutenberg.org/ebooks/35871', 'fr', 150), +(48445, 'Selections from the Writings of `Abdu\'l-Bahá', '`Abdu\'l-Bahá', '2006-06-18', 14, 'https://www.gutenberg.org/ebooks/19287', 'en', 4457), +(48446, 'The Life of Captain Sir Richard F. Burton, volume 2 (of 2)\r\nBy His Wife, Isabel Burton', 'Burton, Isabel, Lady', '2017-06-05', 20, 'https://www.gutenberg.org/ebooks/54846', 'en', 13365), +(48447, 'The King\'s Esquires; Or, The Jewel of France', 'Fenn, George Manville', '2007-10-20', 12, 'https://www.gutenberg.org/ebooks/23128', 'en', 16655), +(48448, 'The Doctor\'s Christmas Eve', 'Allen, James Lane', '2013-06-12', 17, 'https://www.gutenberg.org/ebooks/42923', 'en', 585), +(48449, 'The Phantom World; or, The philosophy of spirits, apparitions, &c, &c.', 'Calmet, Augustin', '2009-07-14', 70, 'https://www.gutenberg.org/ebooks/29412', 'en', 523), +(48450, 'The Chasers', 'Galouye, Daniel F.', '2016-03-20', 37, 'https://www.gutenberg.org/ebooks/51508', 'en', 9910), +(48451, 'A Strange Story — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 20, 'https://www.gutenberg.org/ebooks/7698', 'en', 137), +(48452, 'Peradventure; or, The Silence of God', 'Keable, Robert', '2017-11-18', 6, 'https://www.gutenberg.org/ebooks/55994', 'en', 16656), +(48453, 'Cítanka pro skoly obecné. Díl I', 'Lepar, Jan', '2019-06-16', 20, 'https://www.gutenberg.org/ebooks/59765', 'cs', 16657), +(48454, 'The Goose Girl', 'MacGrath, Harold', '2005-01-05', 31, 'https://www.gutenberg.org/ebooks/14598', 'en', 3208), +(48455, 'Frank Merriwell\'s Nobility; Or, The Tragedy of the Ocean Tramp', 'Standish, Burt L.', '2004-02-01', 32, 'https://www.gutenberg.org/ebooks/10904', 'en', 16241), +(48456, 'The Rise of the Dutch Republic — Volume 20: 1573', 'Motley, John Lothrop', '2004-01-01', 40, 'https://www.gutenberg.org/ebooks/4821', 'en', 6577), +(48457, 'The Burning of Chambersburg, Pennsylvania', 'Schneck, B. S. (Benjamin Shroder)', '2010-05-06', 17, 'https://www.gutenberg.org/ebooks/32268', 'en', 16658), +(48458, 'A Commonplace Book of Thoughts, Memories, and Fancies.\n2nd ed.', 'Jameson, Mrs. (Anna)', '2012-05-12', 20, 'https://www.gutenberg.org/ebooks/39680', 'en', 16659), +(48459, 'On the Lightship', 'Vielé, Herman Knickerbocker', '2012-09-02', 10, 'https://www.gutenberg.org/ebooks/40648', 'en', 179), +(48460, 'The Story of a Doctor\'s Telephone—Told by His Wife', 'Firebaugh, Ellen M.', '2012-02-03', 11, 'https://www.gutenberg.org/ebooks/38752', 'en', 1697), +(48461, 'The Atlantic Monthly, Volume 01, No. 02, December, 1857\r\nA Magazine of Literature, Art, and Politics', 'Various', '2003-11-01', 24, 'https://www.gutenberg.org/ebooks/10138', 'en', 1227), +(48462, 'The House That Jill Built, after Jack\'s Had Proved a Failure', 'Gardner, E. C. (Eugene Clarence)', '2005-04-30', 21, 'https://www.gutenberg.org/ebooks/15678', 'en', 2800), +(48463, 'Beyond The Thunder', 'Hickey, H. B.', '2010-06-17', 22, 'https://www.gutenberg.org/ebooks/32866', 'en', 26), +(48464, 'Harper\'s Young People, August 29, 1882\nAn Illustrated Weekly', 'Various', '2019-05-20', 11, 'https://www.gutenberg.org/ebooks/59557', 'en', 479), +(48465, 'P. T. Barnum\'s Menagerie', 'Burke, Sarah J.', '2014-03-10', 24, 'https://www.gutenberg.org/ebooks/45108', 'en', 195), +(48466, 'Molly Brown\'s Senior Days', 'Speed, Nell', '2008-03-23', 29, 'https://www.gutenberg.org/ebooks/24903', 'en', 3529), +(48467, 'Quick Action', 'Chambers, Robert W. (Robert William)', '2011-09-25', 27, 'https://www.gutenberg.org/ebooks/37528', 'en', 2820), +(48468, 'The Journal of the American-Irish Historical Society (Vol. II)', 'Various', '2018-12-17', 18, 'https://www.gutenberg.org/ebooks/58485', 'en', 16660), +(48469, 'The Cleveland Medical Gazette, Vol. 1, No. 4, February 1886', 'Various', '2016-09-04', 3, 'https://www.gutenberg.org/ebooks/52983', 'en', 3905), +(48470, 'The History of the 51st (Highland) Division 1914-1918', 'Bewsher, F. W. (Frederick William)', '2014-06-11', 13, 'https://www.gutenberg.org/ebooks/45934', 'en', 4056), +(48471, 'Deborah: A tale of the times of Judas Maccabaeus', 'Ludlow, James M. (James Meeker)', '2016-12-31', 11, 'https://www.gutenberg.org/ebooks/53851', 'en', 15608), +(48472, 'Lessons on Manners for School and Home Use', 'Wiggin, Edith E.', '2010-07-17', 15, 'https://www.gutenberg.org/ebooks/33188', 'en', 788), +(48473, 'Bert Wilson at the Wheel', 'Duffield, J. W.', '2012-01-12', 10, 'https://www.gutenberg.org/ebooks/38560', 'en', 4887), +(48474, 'Clemence\nThe Schoolmistress of Waveland', 'Babcock, Retta', '2006-03-04', 19, 'https://www.gutenberg.org/ebooks/17913', 'en', 1631), +(48475, 'The History of Henry Esmond, Esq.\r\nA Colonel in the Service of Her Majesty Queen Anne', 'Thackeray, William Makepeace', '2005-12-01', 2, 'https://www.gutenberg.org/ebooks/9530', 'en', 4464), +(48476, 'Historically Famous Lighthouses\nCG-232', 'United States. Coast Guard', '2015-04-01', 24, 'https://www.gutenberg.org/ebooks/48617', 'en', 16661), +(48477, 'Jüdische Sprichwörter', NULL, '2017-02-27', 15, 'https://www.gutenberg.org/ebooks/54248', 'de', 16662), +(48478, 'Chronica d\'el rei D. Diniz (Vol. II)', 'Pina, Rui de', '2006-04-14', 7, 'https://www.gutenberg.org/ebooks/18167', 'pt', 16663), +(48479, 'The Strange Adventures of Captain Dangerous, Vol. 2\r\nWho was a sailor, a soldier, a merchant, a spy, a slave\r\namong the moors...', 'Sala, George Augustus', '2008-09-19', 35, 'https://www.gutenberg.org/ebooks/26668', 'en', 2588), +(48480, 'The Man on the Box', 'MacGrath, Harold', '2004-09-01', 15, 'https://www.gutenberg.org/ebooks/6578', 'en', 48), +(48481, 'Naughty Miss Bunny\nA Story for Little Children', 'Mulholland, Clara', '2006-11-21', 8, 'https://www.gutenberg.org/ebooks/19889', 'en', 3562), +(48482, 'Sorry: Wrong Dimension', 'Rocklynne, Ross', '2009-08-05', 41, 'https://www.gutenberg.org/ebooks/29620', 'en', 26), +(48483, 'Swiss Family Robinson', 'Wyss, Johann David', '2003-03-01', 594, 'https://www.gutenberg.org/ebooks/3836', 'en', 123), +(48484, 'The Life and Death of Cormac the Skald', NULL, '2008-07-03', 55, 'https://www.gutenberg.org/ebooks/265', 'en', 4764), +(48485, 'Around the World on a Bicycle - Volume II\r\nFrom Teheran To Yokohama', 'Stevens, Thomas', '2004-10-14', 37, 'https://www.gutenberg.org/ebooks/13749', 'en', 819), +(48486, 'The Children of Alsace (Les Oberlés)', 'Bazin, René', '2011-01-14', 8, 'https://www.gutenberg.org/ebooks/34957', 'en', 16664), +(48487, 'Little Henry and His Bird', 'Anonymous', '2013-06-26', 2, 'https://www.gutenberg.org/ebooks/43039', 'en', 388), +(48488, 'The Cathedral Church of Canterbury [2nd ed.]\r\nA Description of Its Fabric and a Brief History of the Archiepiscopal See', 'Withers, Hartley', '2007-10-02', 28, 'https://www.gutenberg.org/ebooks/22832', 'en', 16665), +(48489, 'Ährenlese: A German Reader with Practical Exercises', NULL, '2015-07-21', 30, 'https://www.gutenberg.org/ebooks/49503', 'en', 6116), +(48490, 'The Adventures of Sherlock Holmes', 'Doyle, Arthur Conan', '2005-08-01', 23, 'https://www.gutenberg.org/ebooks/8624', 'en', 834), +(48491, 'Wyn\'s Camping Days; Or, The Outing of the Go-Ahead Club', 'Marlowe, Amy Bell', '2010-02-27', 18, 'https://www.gutenberg.org/ebooks/31419', 'en', 3), +(48492, 'The Dead Men\'s Song\r\nBeing the Story of a Poem and a Reminiscent Sketch of its Author Young Ewing Allison', 'Hitchcock, Champion Ingraham', '2006-09-17', 18, 'https://www.gutenberg.org/ebooks/19273', 'en', 16666), +(48493, 'Jeanne d\'Arc, de maagd van Orléans', 'Koopmans van Boekeren, H. E.', '2011-04-16', 5, 'https://www.gutenberg.org/ebooks/35885', 'nl', 3907), +(48494, 'Philosophy in Sport Made Science in Earnest\r\nBeing an Attempt to Illustrate the First Principles of Natural Philosophy by the Aid of Popular Toys and Sports', 'Paris, John Ayrton', '2014-11-30', 14, 'https://www.gutenberg.org/ebooks/47499', 'en', 4329), +(48495, 'Little Books About Old Furniture. Volume II. The Period of Queen Anne', 'Blake, J. P. (John Percy)', '2013-09-23', 12, 'https://www.gutenberg.org/ebooks/43805', 'en', 16667), +(48496, 'Œuvres complètes de lord Byron, Tome 6\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-04-07', 9, 'https://www.gutenberg.org/ebooks/28534', 'fr', 3504), +(48497, 'The Lady from Nowhere: A Detective Story', 'Hume, Fergus', '2017-11-13', 35, 'https://www.gutenberg.org/ebooks/55960', 'en', 128), +(48498, 'U.S. Copyright Renewals, 1960 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11822', 'en', 4170), +(48499, 'Ames dormantes', 'Melegari, Dora', '2016-06-19', 11, 'https://www.gutenberg.org/ebooks/52379', 'fr', 680), +(48500, 'The Writing of News\nA Handbook with Chapters on Newspaper Correspondence and Copy Reading', 'Ross, Charles G. (Charles Griffith)', '2019-06-22', 76, 'https://www.gutenberg.org/ebooks/59791', 'en', 3183), +(48501, 'Punch, or the London Charivari, Volume 103, December 10, 1892', 'Various', '2007-03-07', 14, 'https://www.gutenberg.org/ebooks/20759', 'en', 134), +(48502, 'Teatro selecto, tomo 3 de 4', 'Calderón de la Barca, Pedro', '2019-01-07', 22, 'https://www.gutenberg.org/ebooks/58643', 'es', 206), +(48503, 'Buffalo Land\r\nAuthentic Account of the Discoveries, Adventures, and Mishaps of a Scientific and Sporting Party in the Wild West', 'Webb, W. E. (William Edward)', '2012-05-12', 23, 'https://www.gutenberg.org/ebooks/39674', 'en', 4244), +(48504, 'The History of Don Quixote, Volume 1, Part 05', 'Cervantes Saavedra, Miguel de', '2004-06-01', 2, 'https://www.gutenberg.org/ebooks/5907', 'en', 3761), +(48505, 'Women of America\nWoman: In all ages and in all countries Vol. 10 (of 10)', 'Larus, John Ruse', '2010-06-19', 26, 'https://www.gutenberg.org/ebooks/32892', 'en', 16350), +(48506, 'At Plattsburg', 'French, Allen', '2008-06-17', 12, 'https://www.gutenberg.org/ebooks/25825', 'en', 2287), +(48507, '\"Miss Lou\"', 'Roe, Edward Payson', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/5309', 'en', 403); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(48508, 'Willow Pollen', 'Marks, Jeannette Augustus', '2016-09-20', 8, 'https://www.gutenberg.org/ebooks/53099', 'en', 994), +(48509, 'A Voice on the Wind, and Other Poems', 'Cawein, Madison Julius', '2010-10-06', 7, 'https://www.gutenberg.org/ebooks/33940', 'en', 178), +(48510, 'Partial Portraits', 'James, Henry', '2018-12-14', 41, 'https://www.gutenberg.org/ebooks/58471', 'en', 16668), +(48511, 'The Alumni Journal of the College of Pharmacy of the City of New York, Vol. II, No. 2, February, 1895', 'Various', '2016-09-04', 3, 'https://www.gutenberg.org/ebooks/52977', 'en', 3150), +(48512, 'El derecho internacional americano; estudio doctrinal y crítico', 'Stoerk, Felix', '2012-04-13', 7, 'https://www.gutenberg.org/ebooks/39446', 'es', 16669), +(48513, 'Ein Drama in Mexico.', 'Verne, Jules', '2008-04-08', 46, 'https://www.gutenberg.org/ebooks/25019', 'de', 3865), +(48514, 'L\'Illustration, No. 2499, 17 Janvier 1891', 'Various', '2014-02-01', 9, 'https://www.gutenberg.org/ebooks/44812', 'fr', 150), +(48515, 'The Catholic World, Vol. 09, April, 1869-September, 1869', 'Various', '2018-07-03', 6, 'https://www.gutenberg.org/ebooks/57439', 'en', 96), +(48516, 'Poems', 'Rilke, Rainer Maria', '2012-01-17', 342, 'https://www.gutenberg.org/ebooks/38594', 'en', 8), +(48517, 'Ways of Wood Folk', 'Long, William J. (William Joseph)', '2006-04-17', 60, 'https://www.gutenberg.org/ebooks/18193', 'en', 2560), +(48518, 'Der Snob\r\nKomödie in drei Aufzügen', 'Sternheim, Carl', '2019-08-11', 395, 'https://www.gutenberg.org/ebooks/60089', 'de', 907), +(48519, 'Blister Jones', 'Foote, John Taintor', '2006-08-14', 29, 'https://www.gutenberg.org/ebooks/19041', 'en', 4835), +(48520, 'Tamawaca Folks: A Summer Comedy', 'Baum, L. Frank (Lyman Frank)', '2015-08-18', 17, 'https://www.gutenberg.org/ebooks/49731', 'en', 5071), +(48521, 'Nouveaux Contes à Ninon', 'Zola, Émile', '2005-07-01', 23, 'https://www.gutenberg.org/ebooks/8416', 'fr', 298), +(48522, 'An Interpretation of Rudolf Eucken\'s Philosophy', 'Jones, W. Tudor (William Tudor)', '2005-10-09', 13, 'https://www.gutenberg.org/ebooks/16835', 'en', 16670), +(48523, 'The Little Dream: An Allegory in Six Scenes', 'Galsworthy, John', '2004-09-26', 12, 'https://www.gutenberg.org/ebooks/2910', 'en', 1088), +(48524, 'Oklahoma Sunshine', 'Miller, Freeman Edwin', '2009-05-06', 6, 'https://www.gutenberg.org/ebooks/28706', 'en', 994), +(48525, 'Morituri: Three One-Act Plays\nTeja—Fritzchen—The Eternal Masculine', 'Sudermann, Hermann', '2010-11-18', 7, 'https://www.gutenberg.org/ebooks/34359', 'en', 493), +(48526, 'Pottery and Porcelain, from early times down to the Philadelphia exhibition of 1876', 'Elliott, Charles Wyllys', '2014-09-06', 17, 'https://www.gutenberg.org/ebooks/46779', 'en', 13271), +(48527, 'Valentine M\'Clutchy, The Irish Agent\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 16, 'https://www.gutenberg.org/ebooks/16009', 'en', 440), +(48528, 'Mysterious Japan', 'Street, Julian', '2018-09-07', 24, 'https://www.gutenberg.org/ebooks/57861', 'en', 1809), +(48529, 'The Speedy Appearance of Christ Desired by the Church\r\nBeing the Substance of a Sermon, Preached on the Death of a Friend, August 27, 1815', 'Church, J. (John)', '2018-10-03', 3, 'https://www.gutenberg.org/ebooks/58015', 'en', 3698), +(48530, 'Busekow: Eine Novelle', 'Sternheim, Carl', '2013-01-23', 12, 'https://www.gutenberg.org/ebooks/41904', 'de', 61), +(48531, 'Love and the Ironmonger', 'Randall, F. J. (Frederick John)', '2014-05-06', 6, 'https://www.gutenberg.org/ebooks/45598', 'en', 637), +(48532, 'Encyclopaedia Britannica, 11th Edition, \"Gordon, Lord George\" to \"Grasses\"\r\nVolume 12, Slice 3', 'Various', '2011-11-11', 159, 'https://www.gutenberg.org/ebooks/37984', 'en', 1081), +(48533, 'The Natural History of Selborne, Vol. 1', 'White, Gilbert', '2007-03-29', 24, 'https://www.gutenberg.org/ebooks/20933', 'en', 13842), +(48534, 'Teutonic Mythology: Gods and Goddesses of the Northland. Vol. 2 of 3', 'Rydberg, Viktor', '2019-02-04', 65, 'https://www.gutenberg.org/ebooks/58829', 'en', 3860), +(48535, 'L\'Illustration, No. 3696, 27 Décembre 1913', 'Various', '2010-08-23', 10, 'https://www.gutenberg.org/ebooks/33518', 'fr', 150), +(48536, 'The Dramatization of Bible Stories\nAn experiment in the religious education of children', 'Lobingier, Elizabeth Miller', '2012-03-01', 9, 'https://www.gutenberg.org/ebooks/39022', 'en', 6710), +(48537, 'Notes and Queries, Vol. V, Number 127, April 3, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-10-21', 9, 'https://www.gutenberg.org/ebooks/41138', 'en', 105), +(48538, 'Scientific American Supplement, No. 595, May 28, 1887', 'Various', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11648', 'en', 210), +(48539, 'General Investigations of Curved Surfaces of 1827 and 1825', 'Gauss, Carl Friedrich', '2011-07-25', 103, 'https://www.gutenberg.org/ebooks/36856', 'en', 16671), +(48540, 'The Story of a Stuffed Elephant', 'Hope, Laura Lee', '2006-10-01', 17, 'https://www.gutenberg.org/ebooks/19425', 'en', 1235), +(48541, 'A Boy\'s Ride', 'Zollinger, Gulielma', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7806', 'en', 16672), +(48542, 'Traité de l\'administration des bibliothèques publiques', 'Richou, Gabriel', '2015-07-03', 7, 'https://www.gutenberg.org/ebooks/49355', 'fr', 16673), +(48543, 'National Epics', 'Rabb, Kate Milner', '2005-05-01', 63, 'https://www.gutenberg.org/ebooks/8072', 'en', 1999), +(48544, 'The Poor Clare', 'Gaskell, Elizabeth Cleghorn', '2001-03-01', 46, 'https://www.gutenberg.org/ebooks/2548', 'en', 2354), +(48545, 'In der Mondnacht: Märchen', 'Wachenhusen, Hans', '2015-02-17', 8, 'https://www.gutenberg.org/ebooks/48287', 'de', 1007), +(48546, 'The Conflict', 'Phillips, David Graham', '1996-02-01', 15, 'https://www.gutenberg.org/ebooks/433', 'en', 109), +(48547, 'Visitas ao Santissimo Sacramento e a Maria Santissima para todos os dias do mez', 'Unknown', '2007-09-18', 8, 'https://www.gutenberg.org/ebooks/22658', 'pt', 16674), +(48548, 'Barbe-bleue', 'Méténier, Oscar', '2015-10-22', 11, 'https://www.gutenberg.org/ebooks/50278', 'fr', 298), +(48549, 'Harper\'s Young People, February 24, 1880\nAn Illustrated Weekly', 'Various', '2009-03-19', 25, 'https://www.gutenberg.org/ebooks/28362', 'en', 479), +(48550, 'The Whitehouse Cookbook (1887)\r\nCooking, Toilet and Household Recipes, Menus, Dinner-Giving, Table Etiquette, Care of the Sick, Health Suggestions, Facts Worth Knowing, Etc., Etc.\r\nThe Whole Comprising a Comprehensive Cyclopedia of Information for the Home', 'Ziemann, Hugo', '2004-11-02', 349, 'https://www.gutenberg.org/ebooks/13923', 'en', 10843), +(48551, 'The History of the Crusades (vol. 3 of 3)', 'Michaud, J. Fr. (Joseph Fr.)', '2015-06-08', 43, 'https://www.gutenberg.org/ebooks/49167', 'en', 10974), +(48552, 'The World English Bible (WEB): 1 Chronicles', 'Anonymous', '2005-06-01', 12, 'https://www.gutenberg.org/ebooks/8240', 'en', 808), +(48553, 'Egholm and his God', 'Buchholtz, Johannes', '2014-09-20', 17, 'https://www.gutenberg.org/ebooks/46913', 'en', 15262), +(48554, 'Aesop\'s Fables - Volume 02', 'Aesop', '2006-10-26', 15, 'https://www.gutenberg.org/ebooks/19617', 'en', 7140), +(48555, 'A Cruising Voyage Around the World', 'Rogers, Woodes', '2017-09-13', 75, 'https://www.gutenberg.org/ebooks/55538', 'en', 15329), +(48556, 'The Monk: A Romance', 'Lewis, M. G. (Matthew Gregory)', '1996-07-01', 534, 'https://www.gutenberg.org/ebooks/601', 'en', 941), +(48557, 'Mother Earth, Vol. 1 No. 2, April 1906\nMonthly Magazine Devoted to Social Science and Literature', 'Various', '2008-11-01', 68, 'https://www.gutenberg.org/ebooks/27118', 'en', 7969), +(48558, 'Prelude in E Minor, Op. 28, No. 4', 'Chopin, Frédéric', '2005-11-01', 41, 'https://www.gutenberg.org/ebooks/9392', 'en', 6376), +(48559, 'Earthbound', 'Del Rey, Lester', '2016-01-08', 72, 'https://www.gutenberg.org/ebooks/50876', 'en', 4728), +(48560, 'Scritti di Giuseppe Mazzini, Politica ed Economia, Vol. I', 'Mazzini, Giuseppe', '2009-06-09', 16, 'https://www.gutenberg.org/ebooks/29082', 'it', 12594), +(48561, 'The Water Eater', 'Marks, Winston K. (Winston Kinney)', '2010-03-31', 54, 'https://www.gutenberg.org/ebooks/31841', 'en', 179), +(48562, 'The Web of Time', 'Knowles, Robert E. (Robert Edward)', '2016-02-12', 7, 'https://www.gutenberg.org/ebooks/51198', 'en', 332), +(48563, 'Kathleen', 'Morley, Christopher', '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/7208', 'en', 1079), +(48564, 'Mugby Junction', 'Dickens, Charles', '2009-01-28', 76, 'https://www.gutenberg.org/ebooks/27924', 'en', 11497), +(48565, 'The Spectacle Man: A Story of the Missing Bridge', 'Leonard, Mary Finley', '2010-01-16', 9, 'https://www.gutenberg.org/ebooks/30993', 'en', 16675), +(48566, 'Le Pèlerin amoureux', 'Shakespeare, William', '2009-02-21', 15, 'https://www.gutenberg.org/ebooks/28150', 'fr', 1412), +(48567, 'The Catholic World, Vol. 14, October 1871-March 1872\r\nA Monthly Magazine of General Literature and Science', 'Various', '2015-05-06', 3, 'https://www.gutenberg.org/ebooks/48889', 'en', 96), +(48568, 'Äärimmäiseltä rajalta: Seikkailuromaani', 'Frich, Øvre Richter', '2018-11-03', 13, 'https://www.gutenberg.org/ebooks/58227', 'fi', 7), +(48569, 'In the Catskills: Selections from the Writings of John Burroughs', 'Burroughs, John', '2004-11-21', 38, 'https://www.gutenberg.org/ebooks/14108', 'en', 16676), +(48570, 'The Penitente Moradas of Abiquiú', 'Ahlborn, Richard E.', '2014-01-15', 25, 'https://www.gutenberg.org/ebooks/44678', 'en', 16677), +(48571, 'The Beautiful People', 'Beaumont, Charles', '2011-05-29', 77, 'https://www.gutenberg.org/ebooks/36258', 'en', 12325), +(48572, 'Punch, or the London Charivari, Volume 1, October 30, 1841', 'Various', '2005-02-07', 11, 'https://www.gutenberg.org/ebooks/14934', 'en', 134), +(48573, 'The Ice Queen', 'Ingersoll, Ernest', '2012-03-20', 17, 'https://www.gutenberg.org/ebooks/39210', 'en', 3), +(48574, 'Iloinen poika', 'Bjørnson, Bjørnstjerne', '2015-04-01', 11, 'https://www.gutenberg.org/ebooks/48628', 'fi', 7), +(48575, 'The Son of His Mother', 'Viebig, Clara', '2009-12-22', 16, 'https://www.gutenberg.org/ebooks/30732', 'en', 12629), +(48576, 'A Book About Lawyers', 'Jeaffreson, John Cordy', '2009-01-12', 45, 'https://www.gutenberg.org/ebooks/27785', 'en', 16678), +(48577, 'The Moon Princess: A Fairy Tale', 'Harrison, Edith Ogden', '2019-08-02', 1882, 'https://www.gutenberg.org/ebooks/60042', 'en', 1007), +(48578, 'Froebel as a pioneer in modern psychology', 'Murray, E. R. (Elsie Riach)', '2017-03-03', 13, 'https://www.gutenberg.org/ebooks/54277', 'en', 8279), +(48579, 'The Butterfly House', 'Freeman, Mary Eleanor Wilkins', '2006-04-12', 20, 'https://www.gutenberg.org/ebooks/18158', 'en', 6675), +(48580, 'A Compilation of the Messages and Papers of the Presidents. Volume 6, part 1: Abraham Lincoln', NULL, '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12462', 'en', 447), +(48581, 'The Motor Pirate', 'Paternoster, G. Sidney', '2008-09-19', 20, 'https://www.gutenberg.org/ebooks/26657', 'en', 128), +(48582, 'The Day of the Confederacy: A Chronicle of the Embattled South', 'Stephenson, Nathaniel W. (Nathaniel Wright)', '2002-01-01', 37, 'https://www.gutenberg.org/ebooks/3035', 'en', 4348), +(48583, 'The Life and Letters of Lafcadio Hearn, Volume 1', 'Bisland, Elizabeth', '2013-03-23', 25, 'https://www.gutenberg.org/ebooks/42312', 'en', 16679), +(48584, '\"Seth\"', 'Burnett, Frances Hodgson', '2007-11-04', 13, 'https://www.gutenberg.org/ebooks/23325', 'en', 179), +(48585, 'The Young Man and the World', 'Beveridge, Albert J. (Albert Jeremiah)', '2005-11-20', 16, 'https://www.gutenberg.org/ebooks/17110', 'en', 740), +(48586, 'Testamentti y.m. kertomuksia', 'Leino, Kasimir', '2014-12-14', 19, 'https://www.gutenberg.org/ebooks/47660', 'fi', 6994), +(48587, 'The Conquest of Canaan', 'Tarkington, Booth', '2004-09-01', 3, 'https://www.gutenberg.org/ebooks/6547', 'en', 262), +(48588, 'Wolf Breed', 'Gregory, Jackson', '2006-08-02', 81, 'https://www.gutenberg.org/ebooks/18964', 'en', 315), +(48589, 'Cape Cod', 'Thoreau, Henry David', '2010-11-21', 108, 'https://www.gutenberg.org/ebooks/34392', 'en', 16680), +(48590, 'To Infidelity and Back', 'Lutz, Henry F. (Henry Frey)', '2005-02-01', 11, 'https://www.gutenberg.org/ebooks/7495', 'en', 16681), +(48591, 'A Woman\'s Burden: A Novel', 'Hume, Fergus', '2011-02-11', 41, 'https://www.gutenberg.org/ebooks/35240', 'en', 177), +(48592, 'Die Komposition des Buches Jes. c. 28-33.', 'Brückner, Martin', '2016-04-09', 4, 'https://www.gutenberg.org/ebooks/51705', 'de', 16682), +(48593, 'The Master of the World', 'Verne, Jules', '2003-03-01', 78, 'https://www.gutenberg.org/ebooks/3809', 'en', 323), +(48594, 'Ned Garth; Or, Made Prisoner in Africa: A Tale of the Slave Trade', 'Kingston, William Henry Giles', '2007-05-15', 46, 'https://www.gutenberg.org/ebooks/21472', 'en', 470), +(48595, 'The American Missionary — Volume 44, No. 05, May, 1890', 'Various', '2005-04-18', 3, 'https://www.gutenberg.org/ebooks/15647', 'en', 562), +(48596, 'Perchance to Dream', 'Stockham, Richard', '2010-06-17', 30, 'https://www.gutenberg.org/ebooks/32859', 'en', 408), +(48597, 'The Apple of Discord', 'Walcott, Earle Ashley', '2016-05-28', 20, 'https://www.gutenberg.org/ebooks/52180', 'en', 6391), +(48598, 'Il Ricciardetto, vol. I', 'Forteguerri, Niccolò', '2019-05-21', 12, 'https://www.gutenberg.org/ebooks/59568', 'it', 16683), +(48599, 'Myths & Legends of Babylonia & Assyria', 'Spence, Lewis', '2014-03-15', 44, 'https://www.gutenberg.org/ebooks/45137', 'en', 16684), +(48600, 'Our War with Spain for Cuba\'s Freedom', 'White, Trumbull', '2003-07-01', 28, 'https://www.gutenberg.org/ebooks/4210', 'en', 16685), +(48601, 'The Notorious Impostor (1692); Diego Redivivus (1692)', 'Settle, Elkanah', '2011-09-23', 6, 'https://www.gutenberg.org/ebooks/37517', 'en', 16686), +(48602, 'Our Benevolent Feudalism', 'Ghent, William J. (William James)', '2016-09-15', 18, 'https://www.gutenberg.org/ebooks/53052', 'en', 16687), +(48603, 'Junto Al Pasig', 'Rizal, José', '2005-01-25', 22, 'https://www.gutenberg.org/ebooks/14795', 'es', 402), +(48604, 'The History of the City of Fredericksburg, Virginia', 'Quinn, S. J. (Silvanus Jackson)', '2012-12-10', 21, 'https://www.gutenberg.org/ebooks/41597', 'en', 4820), +(48605, 'Les langues sur le web', 'Lebert, Marie', '2010-04-19', 10, 'https://www.gutenberg.org/ebooks/32065', 'fr', 2069), +(48606, 'Der Weihnachtsabend: Eine Erzählung zum Weihnachtsgeschenke für Kinder', 'Schmid, Christoph von', '2018-02-08', 11, 'https://www.gutenberg.org/ebooks/56520', 'de', 585), +(48607, 'Children\'s Rights: A Book of Nursery Logic', 'Wiggin, Kate Douglas Smith', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10335', 'en', 3401), +(48608, 'Jephthas bok\nEn Minnes-Sång i Israël', 'Nervander, Johan Jacob', '2008-01-01', 12, 'https://www.gutenberg.org/ebooks/24100', 'sv', 6423), +(48609, 'The Consul', 'Davis, Richard Harding', '1999-05-01', 17, 'https://www.gutenberg.org/ebooks/1762', 'en', 61), +(48610, 'The Life of John Marshall, Volume 3: Conflict and construction, 1800-1815', 'Beveridge, Albert J. (Albert Jeremiah)', '2012-08-08', 23, 'https://www.gutenberg.org/ebooks/40445', 'en', 16688), +(48611, 'The City of God, Volume II', 'Augustine, Saint, Bishop of Hippo', '2014-04-08', 236, 'https://www.gutenberg.org/ebooks/45305', 'en', 7141), +(48612, 'Coral Reefs; Volcanic Islands; South American Geology — Complete', 'Darwin, Charles', '2003-05-01', 46, 'https://www.gutenberg.org/ebooks/4022', 'en', 9063), +(48613, 'A Bid for Fortune; Or, Dr. Nikola\'s Vendetta', 'Boothby, Guy', '2007-05-29', 27, 'https://www.gutenberg.org/ebooks/21640', 'en', 114), +(48614, 'The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 2\nBooks 4, 5, 6 and 7', NULL, '2005-03-26', 106, 'https://www.gutenberg.org/ebooks/15475', 'en', 1804), +(48615, 'Nietzsche: His Life and Works', 'Ludovici, Anthony M. (Anthony Mario)', '2016-10-11', 16, 'https://www.gutenberg.org/ebooks/53260', 'en', 5723), +(48616, 'Jungle in the Sky', 'Marlowe, Stephen', '2019-01-13', 25, 'https://www.gutenberg.org/ebooks/58688', 'en', 26), +(48617, 'Chambers\'s Edinburgh Journal, No. 442\nVolume 17, New Series, June 19, 1852', 'Various', '2007-03-10', 8, 'https://www.gutenberg.org/ebooks/20792', 'en', 18), +(48618, 'The Fisher Girl', 'Bjørnson, Bjørnstjerne', '2011-10-11', 11, 'https://www.gutenberg.org/ebooks/37725', 'en', 1080), +(48619, 'The Comic Poems of Thomas Hood\nA New and Complete Edition', 'Hood, Thomas', '2018-03-09', 39, 'https://www.gutenberg.org/ebooks/56712', 'en', 532), +(48620, 'Malplaquet', 'Belloc, Hilaire', '2010-05-05', 25, 'https://www.gutenberg.org/ebooks/32257', 'en', 16689), +(48621, 'Library of the World\'s Best Literature, Ancient and Modern, Vol. VIII', NULL, '2010-08-09', 25, 'https://www.gutenberg.org/ebooks/33385', 'en', 19), +(48622, 'A Lady of Quality\r\nBeing a Most Curious, Hitherto Unknown History, as Related by Mr. Isaac Bickerstaff but Not Presented to the World of Fashion Through the Pages of The Tatler, and Now for the First Time Written Down', 'Burnett, Frances Hodgson', '1998-12-01', 99, 'https://www.gutenberg.org/ebooks/1550', 'en', 5233), +(48623, 'Lives of Illustrious Shoemakers', 'Winks, W. E. (William Edward)', '2012-09-06', 21, 'https://www.gutenberg.org/ebooks/40677', 'en', 16690), +(48624, 'With British Guns in Italy: A Tribute to Italian Achievement', 'Dalton, Hugh Dalton, Baron', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10107', 'en', 502), +(48625, 'The Life of Mrs. Robert Louis Stevenson', 'Sanchez, Nellie Van de Grift', '2008-01-16', 20, 'https://www.gutenberg.org/ebooks/24332', 'en', 16691), +(48626, 'Lady Rose\'s Daughter', 'Ward, Humphry, Mrs.', '2004-10-18', 34, 'https://www.gutenberg.org/ebooks/13782', 'en', 137), +(48627, 'The Economical Jewish Cook: A Modern Orthodox Recipe Book for Young Housekeepers', 'Henry, May', '2017-01-24', 58, 'https://www.gutenberg.org/ebooks/54045', 'en', 2997), +(48628, 'The Passenger', 'Harmon, Kenneth', '2009-11-19', 35, 'https://www.gutenberg.org/ebooks/30500', 'en', 2169), +(48629, 'Leviathan', 'Hobbes, Thomas', '2002-05-01', 2356, 'https://www.gutenberg.org/ebooks/3207', 'en', 3559), +(48630, 'Biographical Outlines: British History', 'Anonymous', '2013-02-17', 10, 'https://www.gutenberg.org/ebooks/42120', 'en', 2816), +(48631, 'Tähtien turvatit 2: Aika- ja luonnekuvaus kuningatar Kristiinan ajoilta', 'Topelius, Zacharias', '2017-07-25', 8, 'https://www.gutenberg.org/ebooks/55197', 'fi', 61), +(48632, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 488, May 7, 1831', 'Various', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12650', 'en', 133), +(48633, 'The Harvester', 'Stratton-Porter, Gene', '2008-09-01', 40, 'https://www.gutenberg.org/ebooks/26465', 'en', 3016), +(48634, 'The Panama Canal', 'McKinlay, Duncan E.', '2014-11-25', 4, 'https://www.gutenberg.org/ebooks/47452', 'en', 1232), +(48635, 'The Thirty Years War — Complete', 'Schiller, Friedrich', '2004-12-08', 87, 'https://www.gutenberg.org/ebooks/6775', 'en', 2426), +(48636, 'The Memoirs of François René Vicomte de Chateaubriand sometime Ambassador to England, Volume 4 (of 6)\r\nMémoires d\'outre-tombe volume 4', 'Chateaubriand, François-René, vicomte de', '2017-06-10', 20, 'https://www.gutenberg.org/ebooks/54879', 'en', 7678), +(48637, 'The Island Home', 'Archer, Richard', '2007-10-20', 82, 'https://www.gutenberg.org/ebooks/23117', 'en', 1229), +(48638, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 2 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 58, 'https://www.gutenberg.org/ebooks/17322', 'en', 7311), +(48639, 'The Tory Lover', 'Jewett, Sarah Orne', '2016-03-23', 27, 'https://www.gutenberg.org/ebooks/51537', 'en', 2564), +(48640, 'In the Mountains', 'Von Arnim, Elizabeth', '2011-01-25', 26, 'https://www.gutenberg.org/ebooks/35072', 'en', 16692), +(48641, 'Geschichte des Prinzen Biribinker', 'Wieland, Christoph Martin', '2014-08-13', 12, 'https://www.gutenberg.org/ebooks/46580', 'de', 422), +(48642, 'The Touch of Abner', 'Cody, H. A. (Hiram Alfred)', '2016-11-25', 9, 'https://www.gutenberg.org/ebooks/53604', 'en', 61), +(48643, 'Her Prairie Knight', 'Bower, B. M.', '1999-09-01', 53, 'https://www.gutenberg.org/ebooks/1908', 'en', 315), +(48644, 'The Story of My Life — Volume 02', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5594', 'en', 7159), +(48645, 'Count Frontenac\nMakers of Canada, Volume 3', 'LeSueur, William Dawson', '2011-09-07', 14, 'https://www.gutenberg.org/ebooks/37341', 'en', 2498), +(48646, 'Society, Manners and Politics in the United States\nBeing a Series of Letters on North America', 'Chevalier, Michel', '2014-05-25', 9, 'https://www.gutenberg.org/ebooks/45761', 'en', 1110), +(48647, 'The Adventures of Harry Richmond — Volume 3', 'Meredith, George', '2003-09-01', 9, 'https://www.gutenberg.org/ebooks/4446', 'en', 2588), +(48648, 'Nearly Bedtime: Five Short Stories for the Little Ones', 'Wilson, H. Mary', '2011-05-31', 24, 'https://www.gutenberg.org/ebooks/36293', 'en', 388), +(48649, 'The Dyeing of Cotton Fabrics: A Practical Handbook for the Dyer and Student', 'Beech, Franklin', '2007-04-27', 43, 'https://www.gutenberg.org/ebooks/21224', 'en', 16693), +(48650, 'The Spirit and the Word\r\nA Treatise on the Holy Spirit in the Light of a Rational Interpretation of the Word of Truth', 'Sweeney, Z. T. (Zachary Taylor)', '2005-02-10', 14, 'https://www.gutenberg.org/ebooks/15011', 'en', 5248), +(48651, 'A Texas Cow Boy\r\nor, fifteen years on the hurricane deck of a Spanish pony, taken from real life', 'Siringo, Charles A.', '2011-12-15', 21, 'https://www.gutenberg.org/ebooks/38309', 'en', 16694), +(48652, 'The Winter\'s Tale', 'Shakespeare, William', '1997-12-01', 25, 'https://www.gutenberg.org/ebooks/1134', 'en', 16695), +(48653, 'Oeuvres mathématiques d\'Évariste Galois', 'Galois, Évariste', '2012-07-11', 52, 'https://www.gutenberg.org/ebooks/40213', 'fr', 1044), +(48654, 'Good Intentions\nShip\'s Company, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/10563', 'en', 72), +(48655, 'The Story of General Gordon', 'Lang, Jean', '2008-03-05', 10, 'https://www.gutenberg.org/ebooks/24756', 'en', 5890), +(48656, 'A World Called Crimson', 'Marlowe, Stephen', '2008-06-03', 40, 'https://www.gutenberg.org/ebooks/25684', 'en', 26), +(48657, 'The Americans', 'Münsterberg, Hugo', '2018-01-15', 14, 'https://www.gutenberg.org/ebooks/56376', 'en', 6389), +(48658, 'Time Enough at Last', 'Venable, Lyn', '2010-06-01', 171, 'https://www.gutenberg.org/ebooks/32633', 'en', 179), +(48659, 'The Girl from Keller\'s', 'Bindloss, Harold', '2006-04-13', 23, 'https://www.gutenberg.org/ebooks/3663', 'en', 65), +(48660, 'Dreamers of the Ghetto', 'Zangwill, Israel', '2009-08-31', 27, 'https://www.gutenberg.org/ebooks/29875', 'en', 2120), +(48661, 'Soyer\'s Culinary Campaign: Being Historical Reminiscences of the Late War.\r\nWith The Plain Art of Cookery for Military and Civil Institutions', 'Soyer, Alexis', '2013-04-15', 38, 'https://www.gutenberg.org/ebooks/42544', 'en', 16696), +(48662, 'Mr. Scarborough\'s Family', 'Trollope, Anthony', '2004-05-01', 31, 'https://www.gutenberg.org/ebooks/12234', 'en', 378), +(48663, 'The Bertrams', 'Trollope, Anthony', '2008-07-12', 33, 'https://www.gutenberg.org/ebooks/26001', 'en', 16697), +(48664, 'Journal de Eugène Delacroix, Tome 2 (de 3)\r\n1850-1854', 'Delacroix, Eugène', '2017-03-25', 23, 'https://www.gutenberg.org/ebooks/54421', 'fr', 16698), +(48665, 'Sphinx Vespiformis: An Essay', 'Newman, Edward', '2013-08-18', 7, 'https://www.gutenberg.org/ebooks/43496', 'en', 16699), +(48666, 'Le monete di Venezia descritte ed illustrate da Nicolò Papadopoli Aldobrandini, v. 1\nCon disegni di C. Kunz', 'Papadopoli Aldobrandini, Nicolò', '2009-10-02', 25, 'https://www.gutenberg.org/ebooks/30164', 'it', 16700), +(48667, 'Under Western Eyes', 'Conrad, Joseph', '2005-11-01', 8, 'https://www.gutenberg.org/ebooks/9359', 'en', 3730), +(48668, 'Vuonna 2000: Katsaus vuoteen 1887', 'Bellamy, Edward', '2005-09-14', 34, 'https://www.gutenberg.org/ebooks/16694', 'fi', 26), +(48669, 'The Semantic War', 'Clothier, Bill', '2016-02-08', 35, 'https://www.gutenberg.org/ebooks/51153', 'en', 11513), +(48670, 'Women in English Life from Mediæval to Modern Times, Vol. I', 'Hill, Georgiana', '2015-09-17', 11, 'https://www.gutenberg.org/ebooks/49990', 'en', 1650), +(48671, 'Histoire amoureuse des Gaules; suivie des Romans historico-satiriques du XVIIe siècle, Tome I', 'Bussy, Roger de Rabutin, comte de', '2009-06-06', 51, 'https://www.gutenberg.org/ebooks/29049', 'fr', 1989), +(48672, 'The Romance of Biography (Vol 2 of 2)\r\nor Memoirs of Women Loved and Celebrated by Poets, from the Days of the Troubadours to the Present Age. 3rd ed. 2 Vols.', 'Jameson, Mrs. (Anna)', '2011-02-27', 17, 'https://www.gutenberg.org/ebooks/35416', 'en', 2293), +(48673, 'The Jade Flute: Chinese Poems in Prose', 'Various', '2014-10-03', 18, 'https://www.gutenberg.org/ebooks/47036', 'en', 2822), +(48674, 'A Knight of the Nineteenth Century', 'Roe, Edward Payson', '2004-08-01', 23, 'https://www.gutenberg.org/ebooks/6311', 'en', 61), +(48675, 'Dumbells of Business', 'Reed, Louis Custer Martin', '2015-05-01', 20, 'https://www.gutenberg.org/ebooks/48842', 'en', 2351), +(48676, 'The Battle of Bayan and Other Battles', 'Allen, James Edgar', '2007-11-20', 14, 'https://www.gutenberg.org/ebooks/23573', 'en', 16701), +(48677, 'Natur und Mensch\nSechs Abschnitte aus Werken von Ernst Haeckel', 'Haeckel, Ernst', '2015-09-30', 11, 'https://www.gutenberg.org/ebooks/50081', 'de', 16702), +(48678, 'Journal des Goncourt (Troisième série, premier volume)\nMémoires de la vie littéraire', 'Goncourt, Jules de', '2006-02-10', 15, 'https://www.gutenberg.org/ebooks/17746', 'fr', 3482), +(48679, 'Jack Winters\' Campmates', 'Overton, Mark', '2010-01-13', 11, 'https://www.gutenberg.org/ebooks/30958', 'en', 3), +(48680, 'A Handbook to Agra and the Taj, Sikandra, Fatehpur-Sikri and the Neighbourhood', 'Havell, E. B. (Ernest Binfield)', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/12006', 'en', 16703), +(48681, 'The Indifference of Juliet', 'Richmond, Grace S. (Grace Smith)', '2008-08-09', 22, 'https://www.gutenberg.org/ebooks/26233', 'en', 50), +(48682, 'Josefine Mutzenbacher\noder Die Geschichte einer Wienerischen Dirne von ihr selbst erzählt', 'Salten, Felix', '2010-02-15', 989, 'https://www.gutenberg.org/ebooks/31284', 'de', 4185), +(48683, 'Marie Antoinette and Her Son', 'Mühlbach, L. (Luise)', '2002-10-01', 23, 'https://www.gutenberg.org/ebooks/3451', 'en', 98), +(48684, 'Il secolo che muore, vol. II', 'Guerrazzi, Francesco Domenico', '2013-05-23', 5, 'https://www.gutenberg.org/ebooks/42776', 'it', 61), +(48685, 'The Boy from Hollow Hut\nA Story of the Kentucky Mountains', 'Mullins, Isla May', '2009-10-29', 11, 'https://www.gutenberg.org/ebooks/30356', 'en', 4872), +(48686, 'The Value of Zeta(3) to 1,000,000 places', NULL, '2001-04-01', 30, 'https://www.gutenberg.org/ebooks/2583', 'en', 1044), +(48687, 'The Battle for Khe Sanh', 'Shore, Moyers S.', '2017-04-26', 55, 'https://www.gutenberg.org/ebooks/54613', 'en', 16704), +(48688, 'A Philosophical Dictionary, Volume 04', 'Voltaire', '2011-03-28', 27, 'https://www.gutenberg.org/ebooks/35624', 'en', 7578), +(48689, 'Birds of a Feather', 'Silverberg, Robert', '2016-03-05', 50, 'https://www.gutenberg.org/ebooks/51361', 'en', 26), +(48690, 'The Works of Aphra Behn, Volume II', 'Behn, Aphra', '2005-09-01', 44, 'https://www.gutenberg.org/ebooks/8885', 'en', 126), +(48691, 'A Book of Myths', 'Lang, Jean', '2007-09-21', 235, 'https://www.gutenberg.org/ebooks/22693', 'en', 2139), +(48692, 'David Malcolm', 'Lloyd, Nelson', '2007-12-05', 3, 'https://www.gutenberg.org/ebooks/23741', 'en', 61), +(48693, 'My Beautiful Lady. Nelly Dale', 'Woolner, Thomas', '2006-01-22', 22, 'https://www.gutenberg.org/ebooks/17574', 'en', 8), +(48694, 'The Personal Touch', 'Chapman, J. Wilbur (John Wilbur)', '2006-02-01', 15, 'https://www.gutenberg.org/ebooks/9957', 'en', 2437), +(48695, 'The Supernatural in Modern English Fiction', 'Scarborough, Dorothy', '2014-10-26', 46, 'https://www.gutenberg.org/ebooks/47204', 'en', 7049), +(48696, 'Theological Essays and Other Papers — Volume 1', 'De Quincey, Thomas', '2004-07-01', 23, 'https://www.gutenberg.org/ebooks/6123', 'en', 5270), +(48697, 'In a Glass Darkly, v. 2/3', 'Le Fanu, Joseph Sheridan', '2011-08-23', 39, 'https://www.gutenberg.org/ebooks/37173', 'en', 669), +(48698, 'The home: its work and influence', 'Gilman, Charlotte Perkins', '2013-12-21', 23, 'https://www.gutenberg.org/ebooks/44481', 'en', 6150), +(48699, 'Transcendentalism in New England: A History', 'Frothingham, Octavius Brooks', '2012-02-17', 24, 'https://www.gutenberg.org/ebooks/38907', 'en', 16705), +(48700, 'Las Ilusiones del Doctor Faustino, v.2', 'Valera, Juan', '2016-11-02', 8, 'https://www.gutenberg.org/ebooks/53436', 'es', 1353), +(48701, 'Essays on the Theory of Numbers', 'Dedekind, Richard', '2007-04-08', 146, 'https://www.gutenberg.org/ebooks/21016', 'en', 6206), +(48702, 'Doctor Claudius, A True Story', 'Crawford, F. Marion (Francis Marion)', '2005-03-01', 18, 'https://www.gutenberg.org/ebooks/15223', 'en', 1380), +(48703, 'The Lu Lu Alphabet', 'Colman, Miss (Pamela Atkins)', '2014-05-01', 14, 'https://www.gutenberg.org/ebooks/45553', 'en', 859), +(48704, 'Tennessee\'s Partner', 'Harte, Bret', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/4674', 'en', 211), +(48705, 'The Book of the Feet: A History of Boots and Shoes', 'Hall, Joseph Sparkes', '2018-04-14', 27, 'https://www.gutenberg.org/ebooks/56978', 'en', 16706), +(48706, 'Oregon, Washington and Alaska; Sights and Scenes for the Tourist', 'Lomax, E. L. (Edward Lloyd)', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/10751', 'en', 5908), +(48707, 'The Battle of Talavera', 'Croker, John Wilson', '2018-05-05', 4, 'https://www.gutenberg.org/ebooks/57096', 'en', 16707), +(48708, 'A Manual of the Operations of Surgery\nFor the Use of Senior Students, House Surgeons, and Junior Practitioners', 'Bell, Joseph', '2008-02-11', 70, 'https://www.gutenberg.org/ebooks/24564', 'en', 14879), +(48709, 'Seven Men [Excerpts]', 'Beerbohm, Max, Sir', '1998-05-01', 40, 'https://www.gutenberg.org/ebooks/1306', 'en', 179), +(48710, 'The History of Chivalry; Or, Knighthood and Its Times, Volume 1 (of 2)', 'Mills, Charles', '2012-06-17', 23, 'https://www.gutenberg.org/ebooks/40021', 'en', 7587), +(48711, 'Walled In: A True Story of Randall\'s Island', 'Stoddard, William O.', '2019-07-17', 200, 'https://www.gutenberg.org/ebooks/59930', 'en', 16708), +(48712, 'The Girls of Hillcrest Farm; Or, The Secret of the Rocks', 'Marlowe, Amy Bell', '2010-05-16', 25, 'https://www.gutenberg.org/ebooks/32401', 'en', 16709), +(48713, 'Folk Lore Notes. Vol. I—Gujarat', 'Jackson, A. M. T. (Arthur Mason Tippetts)', '2017-12-07', 10, 'https://www.gutenberg.org/ebooks/56144', 'en', 1772), +(48714, 'Where the Trail Divides', 'Lillibridge, Will', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11683', 'en', 16710), +(48715, 'Old English Mansions', 'Yockney, Alfred', '2018-11-01', 29, 'https://www.gutenberg.org/ebooks/58218', 'en', 16711), +(48716, 'A Compilation of the Messages and Papers of the Presidents. Volume 8, part 2: Grover Cleveland', 'Cleveland, Grover', '2004-11-24', 15, 'https://www.gutenberg.org/ebooks/14137', 'en', 337), +(48717, 'Der Ketzer von Soana', 'Hauptmann, Gerhart', '2007-01-07', 24, 'https://www.gutenberg.org/ebooks/20302', 'de', 1661), +(48718, 'Margery (Gred): A Tale Of Old Nuremberg — Complete', 'Ebers, Georg', '2004-11-15', 21, 'https://www.gutenberg.org/ebooks/5560', 'en', 803), +(48719, 'Komödiantinnen: Roman', 'Bloem, Walter', '2014-01-12', 10, 'https://www.gutenberg.org/ebooks/44647', 'de', 549), +(48720, 'A Christmas Gift to the American Home and the Youth of America', 'Gravengaard, N. P. (Niels Peter)', '2014-05-28', 8, 'https://www.gutenberg.org/ebooks/45795', 'en', 16712), +(48721, 'When Were Our Gospels Written?', 'Bradlaugh, Charles', '2011-05-29', 19, 'https://www.gutenberg.org/ebooks/36267', 'en', 16713), +(48722, 'An account of the manner of inoculating for the small pox in the East Indies\r\nWith some observations on the practice and mode of treating that disease in those parts', 'Holwell, J. Z. (John Zephaniah)', '2016-08-04', 9, 'https://www.gutenberg.org/ebooks/52722', 'en', 16714), +(48723, 'The Cottage of Delight: A Novel', 'Harben, Will N. (Will Nathaniel)', '2010-09-12', 20, 'https://www.gutenberg.org/ebooks/33715', 'en', 61), +(48724, 'The Book of the Native', 'Roberts, Charles G. D., Sir', '2018-06-02', 5, 'https://www.gutenberg.org/ebooks/57250', 'en', 1237), +(48725, 'Four Early Pamphlets', 'Godwin, William', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/10597', 'en', 4136), +(48726, 'Sea-Dogs All!\nA Tale of Forest and Sea', 'Bevan, Tom', '2008-06-01', 19, 'https://www.gutenberg.org/ebooks/25670', 'en', 98), +(48727, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 348, December 27, 1828', 'Various', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11445', 'en', 133), +(48728, 'Die gerichtliche Arzneikunde in ihrem Verhältnisse zur Rechtspflege, mit besonderer Berücksichtigung der österreichischen Gesetzgebung. Erster Band.\r\nZum Gebrauche für Ärzte, Wundärzte und Rechtskundige dargestellt und mit entscheidenden Thatsachen begründet', 'Ney, Franz von', '2018-01-16', 4, 'https://www.gutenberg.org/ebooks/56382', 'de', 16715), +(48729, 'Automatic Pistol Shooting\nTogether with Information on Handling the Duelling Pistol and Revolver', 'Winans, Walter', '2012-11-09', 28, 'https://www.gutenberg.org/ebooks/41335', 'en', 14451), +(48730, 'A Century of Roundels', 'Swinburne, Algernon Charles', '2003-01-01', 22, 'https://www.gutenberg.org/ebooks/3697', 'en', 532), +(48731, 'A travers Paris', 'Crafty', '2010-01-22', 15, 'https://www.gutenberg.org/ebooks/31042', 'fr', 2972), +(48732, 'Das Naturforscherschiff\r\noder Fahrt der jungen Hamburger mit der \"Hammonia\" nach den Besitzungen ihres Vaters in der Südsee.', 'Wörishöffer, S. (Sophie)', '2015-06-07', 6, 'https://www.gutenberg.org/ebooks/49158', 'de', 16716), +(48733, 'Morals of Economic Internationalism', 'Hobson, J. A. (John Atkinson)', '2009-09-01', 14, 'https://www.gutenberg.org/ebooks/29881', 'en', 12278), +(48734, 'The Siouan Indians', 'McGee, W J', '2006-10-23', 10, 'https://www.gutenberg.org/ebooks/19628', 'en', 13266), +(48735, 'The Story of Justin Martyr, and Other Poems', 'Trench, Richard Chenevix', '2017-09-08', 15, 'https://www.gutenberg.org/ebooks/55507', 'en', 8), +(48736, 'The Philippine Islands, 1493-1898, Volume 26 of 55, 1636\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2008-11-02', 36, 'https://www.gutenberg.org/ebooks/27127', 'en', 7466), +(48737, 'The Light That Lures', 'Brebner, Percy James', '2004-08-28', 14, 'https://www.gutenberg.org/ebooks/13312', 'en', 61), +(48738, 'When I Grow Up', 'Lowe, Richard E.', '2009-05-24', 21, 'https://www.gutenberg.org/ebooks/28953', 'en', 26), +(48739, 'Our Little Hawaiian Cousin', 'Wade, Mary Hazelton Blanchard', '2013-08-14', 14, 'https://www.gutenberg.org/ebooks/43462', 'en', 16717), +(48740, 'Karl Ludwig Sand\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 24, 'https://www.gutenberg.org/ebooks/2745', 'en', 5050), +(48741, 'Princess Napraxine, Volume 3 (of 3)', 'Ouida', '2016-01-05', 12, 'https://www.gutenberg.org/ebooks/50849', 'en', 61), +(48742, 'Around the World with Josiah Allen\'s Wife', 'Holley, Marietta', '2009-10-06', 32, 'https://www.gutenberg.org/ebooks/30190', 'en', 16293), +(48743, 'The Story of the 6th Battalion, The Durham Light Infantry\nFrance, April 1915-November 1918', NULL, '2005-09-05', 16, 'https://www.gutenberg.org/ebooks/16660', 'en', 4056), +(48744, 'Prisons Over Seas\r\nDeportation and Colonization; British and American Prisons of To-day', 'Griffiths, Arthur', '2015-09-14', 5, 'https://www.gutenberg.org/ebooks/49964', 'en', 16718), +(48745, 'Adam Johnstone\'s Son', 'Crawford, F. Marion (Francis Marion)', '2007-08-29', 15, 'https://www.gutenberg.org/ebooks/22455', 'en', 48), +(48746, 'Roving East and Roving West', 'Lucas, E. V. (Edward Verrall)', '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/7237', 'en', 1975), +(48747, 'Pattie\'s Personal Narrative, 1824-1830; Willard\'s Inland Trade with New Mexico, 1825, and Downfall of the Fredonian Republic; and Malte-Brun\'s Account of Mexico', 'Willard, Dr.', '2014-06-27', 30, 'https://www.gutenberg.org/ebooks/46110', 'en', 1623), +(48748, 'The Infidel; or, the Fall of Mexico. Vol. II.', 'Bird, Robert Montgomery', '2010-12-01', 10, 'https://www.gutenberg.org/ebooks/34530', 'en', 6180), +(48749, 'Forty Years a Gambler on the Mississippi', 'Devol, George H.', '2007-11-22', 13, 'https://www.gutenberg.org/ebooks/23587', 'en', 16719), +(48750, '\"1683-1920\"\r\nThe Fourteen Points and What Became of Them—Foreign Propaganda in the Public Schools—Rewriting the History of the United States—The Espionage Act and How It Worked—\"Illegal and Indefensible Blockade\" of the Central Powers—1,000,000 Victims of Starvation—Our Debt to France and to Germany—The War Vote in Congress—Truth About the Belgian Atrocities—Our Treaty with Germany and How Observed—The Alien Property Custodianship—Secret Will of Cecil Rhodes—Racial Strains in American Life—Germantown Settlement of 1683 and a Thousand Other Topics', 'Schrader, Frederick Franklin', '2015-09-29', 55, 'https://www.gutenberg.org/ebooks/50075', 'en', 910), +(48751, 'Perfumes and Their Preparation\r\nContaining complete directions for making handkerchief perfumes, smelling-salts, sachets, fumigating pastils; preparations for the care of the skin, the mouth, the hair; cosmetics, hair dyes, and other toilet articles', 'Askinson, George William', '2017-10-12', 120, 'https://www.gutenberg.org/ebooks/55735', 'en', 16720), +(48752, 'A Foregone Conclusion', 'Howells, William Dean', '2005-04-01', 38, 'https://www.gutenberg.org/ebooks/7839', 'en', 2295), +(48753, 'The Writings of Thomas Paine, Complete\r\nWith Index to Volumes I - IV', 'Paine, Thomas', '2010-02-13', 164, 'https://www.gutenberg.org/ebooks/31270', 'en', 8061), +(48754, 'Notes and Queries, Number 167, January 8, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 13, 'https://www.gutenberg.org/ebooks/42782', 'en', 105), +(48755, 'Bach', 'Williams, C. F. Abdy (Charles Francis Abdy)', '2013-09-05', 21, 'https://www.gutenberg.org/ebooks/43650', 'en', 7436), +(48756, 'The Ancient Regime', 'Taine, Hippolyte', '2008-06-22', 50, 'https://www.gutenberg.org/ebooks/2577', 'en', 3093), +(48757, 'Όρνιθες', 'Aristophanes', '2008-11-22', 24, 'https://www.gutenberg.org/ebooks/27315', 'el', 10048), +(48758, 'The Philippine Islands, 1493-1898 — Volume 06 of 55\r\n1583-1588\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2004-08-06', 72, 'https://www.gutenberg.org/ebooks/13120', 'en', 7466), +(48759, 'The Antiquary — Complete', 'Scott, Walter', '2004-08-17', 90, 'https://www.gutenberg.org/ebooks/7005', 'en', 4905), +(48760, 'Punch Cartoons of the Great War', 'Various', '2014-07-18', 13, 'https://www.gutenberg.org/ebooks/46322', 'en', 5749), +(48761, 'A Desperate Character and Other Stories', 'Turgenev, Ivan Sergeevich', '2005-09-01', 38, 'https://www.gutenberg.org/ebooks/8871', 'en', 85), +(48762, 'Survival Type', 'Bone, Jesse F. (Jesse Franklin)', '2016-03-08', 34, 'https://www.gutenberg.org/ebooks/51395', 'en', 9910), +(48763, 'The Iliad of Homer\r\nTranslated into English Blank Verse by William Cowper', 'Homer', '2005-08-05', 351, 'https://www.gutenberg.org/ebooks/16452', 'en', 4266), +(48764, 'Joan of Arc of the North Woods', 'Day, Holman', '2007-09-18', 6, 'https://www.gutenberg.org/ebooks/22667', 'en', 4753), +(48765, 'De Zuidster, het land der diamanten', 'Verne, Jules', '2006-01-23', 18, 'https://www.gutenberg.org/ebooks/17580', 'nl', 12160), +(48766, 'A \"Temporary Gentleman\" in France', 'Dawson, A. J. (Alec John)', '2015-10-18', 12, 'https://www.gutenberg.org/ebooks/50247', 'en', 2223), +(48767, 'Encyclopaedia Britannica, 11th Edition, \"Bible\" to \"Bisectrix\"\r\nVolume 3, Slice 7', 'Various', '2010-12-19', 39, 'https://www.gutenberg.org/ebooks/34702', 'en', 1081), +(48768, 'Ulster Folklore', 'Andrews, Elizabeth, F.R.A.I.', '2011-08-24', 28, 'https://www.gutenberg.org/ebooks/37187', 'en', 16721), +(48769, 'St. George and St. Michael, Volume 3', 'MacDonald, George', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/5752', 'en', 4665), +(48770, 'A Journal from Japan: A Daily Record of Life as Seen by a Scientist', 'Stopes, Marie Carmichael', '2013-12-20', 21, 'https://www.gutenberg.org/ebooks/44475', 'en', 118), +(48771, 'Layamon\'s Brut', 'Layamon', '2004-12-08', 91, 'https://www.gutenberg.org/ebooks/14305', 'en', 3230), +(48772, 'Magazine, or Animadversions on the English Spelling (1703)', 'G. W.', '2006-12-18', 17, 'https://www.gutenberg.org/ebooks/20130', 'en', 8402), +(48773, 'From the Five Rivers', 'Steel, Flora Annie Webster', '2012-05-27', 30, 'https://www.gutenberg.org/ebooks/39821', 'en', 8), +(48774, 'Prince and Heretic', 'Bowen, Marjorie', '2016-07-06', 23, 'https://www.gutenberg.org/ebooks/52510', 'en', 1167), +(48775, 'The Impending Crisis of the South\nHow to Meet It', 'Helper, Hinton Rowan', '2011-05-08', 31, 'https://www.gutenberg.org/ebooks/36055', 'en', 125), +(48776, 'Manuel Pereira; Or, The Sovereign Rule of South Carolina', 'Adams, F. Colburn (Francis Colburn)', '2003-11-01', 23, 'https://www.gutenberg.org/ebooks/4680', 'en', 984), +(48777, 'Captain Billy\'s Whiz Bang, Vol. 2, No. 21, June, 1921\nAmerica\'s Magazine of Wit, Humor and Filosophy', 'Various', '2018-04-28', 11, 'https://www.gutenberg.org/ebooks/57062', 'en', 372), +(48778, 'The Tale of Ferdinand Frog', 'Bailey, Arthur Scott', '2008-02-13', 38, 'https://www.gutenberg.org/ebooks/24590', 'en', 625), +(48779, 'Simla Village Tales; Or, Folk Tales from the Himalayas', 'Dracott, Alice', '2019-02-03', 77, 'https://www.gutenberg.org/ebooks/58816', 'en', 1772), +(48780, 'Whales, Dolphins, and Porpoises of the Western North Atlantic\nA Guide to Their Identification', 'Leatherwood, Stephen', '2010-08-25', 25, 'https://www.gutenberg.org/ebooks/33527', 'en', 16722), +(48781, 'The Second Fiddle', 'Bottome, Phyllis', '2012-10-18', 15, 'https://www.gutenberg.org/ebooks/41107', 'en', 6211), +(48782, 'Aunt Friendly\'s Picture Book.\r\nContaining Thirty-six Pages of Pictures Printed in Colours by Kronheim', NULL, '2008-05-12', 47, 'https://www.gutenberg.org/ebooks/25442', 'en', 1007), +(48783, 'Ohne den Vater: Erzählung aus dem Kriege', 'Sapper, Agnes', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/11677', 'de', 579), +(48784, 'The Real Man', 'Lynde, Francis', '2011-07-27', 28, 'https://www.gutenberg.org/ebooks/36869', 'en', 61), +(48785, 'Bright Ideas: A Record of Invention and Misinvention', 'Strang, Herbert', '2013-07-16', 16, 'https://www.gutenberg.org/ebooks/43234', 'en', 153), +(48786, 'History of Friedrich II of Prussia — Volume 13', 'Carlyle, Thomas', '2008-06-16', 22, 'https://www.gutenberg.org/ebooks/2113', 'en', 3120), +(48787, 'Once on a Time', 'Milne, A. A. (Alan Alexander)', '2009-01-11', 76, 'https://www.gutenberg.org/ebooks/27771', 'en', 2203), +(48788, 'De Sobremesa; crónicas, Primera Parte (de 5)', 'Benavente, Jacinto', '2017-03-05', 18, 'https://www.gutenberg.org/ebooks/54283', 'es', 1384), +(48789, 'Notes and Queries, Number 18, March 2, 1850', 'Various', '2004-09-27', 22, 'https://www.gutenberg.org/ebooks/13544', 'en', 105), +(48790, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 287, December 15, 1827', 'Various', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12496', 'en', 133), +(48791, 'The Three Sisters', 'Chekhov, Anton Pavlovich', '2017-09-12', 106, 'https://www.gutenberg.org/ebooks/55351', 'en', 16723), +(48792, 'The Ancestral Footstep (fragment)\r\nOutlines of an English Romance', 'Hawthorne, Nathaniel', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/8429', 'en', 2645), +(48793, 'Massenstreik, Partei und Gewerkschaften', 'Luxemburg, Rosa', '2010-03-12', 31, 'https://www.gutenberg.org/ebooks/31614', 'de', 16724), +(48794, 'Familiar Letters on Chemistry, and Its Relation to Commerce, Physiology, and Agriculture', 'Liebig, Justus, Freiherr von', '2009-05-01', 9, 'https://www.gutenberg.org/ebooks/28739', 'en', 292), +(48795, 'An Account of the Abipones, an Equestrian people of Paraguay, (3 of 3)', NULL, '2015-12-05', 9, 'https://www.gutenberg.org/ebooks/50623', 'en', 7356), +(48796, 'The Labour-saving House', 'Peel, C. S., Mrs.', '2014-12-17', 31, 'https://www.gutenberg.org/ebooks/47694', 'en', 16725), +(48797, 'A Woman of No Importance', 'Wilde, Oscar', '1997-03-01', 309, 'https://www.gutenberg.org/ebooks/854', 'en', 2455), +(48798, 'Vera', 'Von Arnim, Elizabeth', '2010-11-18', 53, 'https://www.gutenberg.org/ebooks/34366', 'en', 16726), +(48799, 'Billy Whiskers\' Adventures', 'Montgomery, Frances Trego', '2006-08-05', 18, 'https://www.gutenberg.org/ebooks/18990', 'en', 16727), +(48800, 'Évangile selon Jean', 'Anonymous', '2006-11-18', 13, 'https://www.gutenberg.org/ebooks/19842', 'fr', 5364), +(48801, 'Thérèse Raquin', 'Zola, Émile', '2005-02-01', 67, 'https://www.gutenberg.org/ebooks/7461', 'fr', 996), +(48802, 'The Chronicles of Newgate, vol. 2/2', 'Griffiths, Arthur', '2014-09-01', 26, 'https://www.gutenberg.org/ebooks/46746', 'en', 13263), +(48803, 'The American Missionary — Volume 44, No. 06, June, 1890', 'Various', '2005-06-11', 5, 'https://www.gutenberg.org/ebooks/16036', 'en', 395), +(48804, 'My Contemporaries In Fiction', 'Murray, David Christie', '2007-08-01', 19, 'https://www.gutenberg.org/ebooks/22203', 'en', 4694), +(48805, 'The Woodcutter of Gutech', 'Kingston, William Henry Giles', '2007-05-15', 24, 'https://www.gutenberg.org/ebooks/21486', 'en', 16728), +(48806, 'Seikkailu jalkamatkalla: Viisinäytöksinen laulunäytelmä', 'Hostrup, C. (Christian)', '2016-05-28', 13, 'https://www.gutenberg.org/ebooks/52174', 'fi', 1552), +(48807, 'The Palace in the Garden', 'Molesworth, Mrs.', '2011-06-15', 24, 'https://www.gutenberg.org/ebooks/36431', 'en', 3129), +(48808, 'Stories by Foreign Authors: Scandinavian', NULL, '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/5336', 'en', 16729), +(48809, 'Warren Commission (11 of 26): Hearings Vol. XI (of 15)', 'United States. Warren Commission', '2013-10-21', 12, 'https://www.gutenberg.org/ebooks/44011', 'en', 5206), +(48810, 'Caxton\'s Book of Curtesye', NULL, '2005-01-22', 12, 'https://www.gutenberg.org/ebooks/14761', 'en', 16730), +(48811, 'Nos Hommes et Notre Histoire\r\nNotices biographiques accompagnées de reflexions et de souvenirs personnels', 'Desdunes, Rodolphe Lucien', '2007-02-10', 16, 'https://www.gutenberg.org/ebooks/20554', 'fr', 16731), +(48812, 'A History of Sanskrit Literature', 'Macdonell, Arthur Anthony', '2012-12-05', 42, 'https://www.gutenberg.org/ebooks/41563', 'en', 16732), +(48813, 'Down-Adown-Derry: A Book of Fairy Poems', 'De la Mare, Walter', '2010-04-22', 21, 'https://www.gutenberg.org/ebooks/32091', 'en', 861), +(48814, 'Salammbo: Historiallinen romaani', 'Flaubert, Gustave', '2016-09-01', 7, 'https://www.gutenberg.org/ebooks/52948', 'fi', 299), +(48815, 'The Independence Day Horror at Killsbury', 'Coolidge, Asenath Carver', '2012-04-19', 17, 'https://www.gutenberg.org/ebooks/39479', 'en', 16733), +(48816, 'Bristol Bells: A Story of the Eighteenth Century', 'Marshall, Emma', '2008-04-09', 23, 'https://www.gutenberg.org/ebooks/25026', 'en', 984), +(48817, 'Brotherly Love\nShewing That as Merely Human It May Not Always Be Depended Upon', 'Kelly, Sophia', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11213', 'en', 16734), +(48818, 'What a Young Wife Ought to Know', 'Drake, Emma F. Angell (Emma Frances Angell)', '2018-06-26', 54, 'https://www.gutenberg.org/ebooks/57406', 'en', 9867), +(48819, 'Antony and Cleopatra', 'Shakespeare, William', '1999-06-01', 72, 'https://www.gutenberg.org/ebooks/1796', 'en', 16735), +(48820, 'East Angels: A Novel', 'Woolson, Constance Fenimore', '2010-07-12', 67, 'https://www.gutenberg.org/ebooks/33143', 'en', 10770), +(48821, 'The Yellow Chief', 'Reid, Mayne', '2011-07-03', 36, 'https://www.gutenberg.org/ebooks/36603', 'en', 9136), +(48822, 'The Story of Old Fort Dearborn', 'Currey, J. Seymour (Josiah Seymour)', '2016-06-16', 2, 'https://www.gutenberg.org/ebooks/52346', 'en', 10413), +(48823, 'Chambers\'s Edinburgh Journal, No. 423\r\nVolume 17, New Series, February 7, 1852', 'Various', '2005-03-27', 3, 'https://www.gutenberg.org/ebooks/15481', 'en', 18), +(48824, 'A Catechism of Christian Doctrine', 'Anonymous', '2005-01-01', 108, 'https://www.gutenberg.org/ebooks/14553', 'en', 8685), +(48825, 'Recuerdos Del Tiempo Viejo', 'Zorrilla, José', '2016-10-16', 14, 'https://www.gutenberg.org/ebooks/53294', 'es', 16736), +(48826, 'The Autobiography of Methuselah', 'Bangs, John Kendrick', '2007-03-07', 27, 'https://www.gutenberg.org/ebooks/20766', 'en', 16737), +(48827, 'Histoire d\'un casse-noisette', 'Dumas, Alexandre', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/5104', 'fr', 1007), +(48828, 'Back Home: Being the Narrative of Judge Priest and His People', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2013-11-18', 20, 'https://www.gutenberg.org/ebooks/44223', 'en', 3008), +(48829, '劍俠傳', 'Wang, Shizhen', '2008-04-28', 14, 'https://www.gutenberg.org/ebooks/25214', 'zh', 16738), +(48830, 'A Compilation of the Messages and Papers of the Presidents. Volume 5, part 4: James Buchanan', NULL, '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11021', 'en', 447); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(48831, 'Travels in Central Asia\r\nBeing the Account of a Journey from Teheran Across the Turkoman Desert on the Eastern Shore of the Caspian to Khiva, Bokhara, and Samarcand', 'Vámbéry, Ármin', '2013-01-01', 40, 'https://www.gutenberg.org/ebooks/41751', 'en', 16739), +(48832, 'Raising P. V. Squabs for Profit', 'Trecartin, John S.', '2010-08-07', 13, 'https://www.gutenberg.org/ebooks/33371', 'en', 15660), +(48833, 'Encyclopaedia Britannica, 11th Edition, \"Dagupan\" to \"David\"\r\nVolume 7, Slice 9', 'Various', '2012-02-09', 20, 'https://www.gutenberg.org/ebooks/38799', 'en', 1081), +(48834, 'Lulu\'s Library, Volume 3 (of 3)', 'Alcott, Louisa May', '2012-09-05', 167, 'https://www.gutenberg.org/ebooks/40683', 'en', 1007), +(48835, 'The Principles of Psychology, Volume 2 (of 2)', 'James, William', '2018-08-04', 113, 'https://www.gutenberg.org/ebooks/57634', 'en', 1151), +(48836, 'The History of Don Quixote, Volume 2, Part 35', 'Cervantes Saavedra, Miguel de', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/5938', 'en', 361), +(48837, 'Effeitos do Hypnotismo', 'Armando, A.', '2008-12-16', 16, 'https://www.gutenberg.org/ebooks/27543', 'pt', 907), +(48838, 'One Day\nA sequel to \'Three Weeks\'', NULL, '2004-10-18', 84, 'https://www.gutenberg.org/ebooks/13776', 'en', 61), +(48839, 'Mystery and Confidence: A Tale. Vol. 2', 'Pinchard, Elizabeth Sibthorpe', '2011-01-15', 5, 'https://www.gutenberg.org/ebooks/34968', 'en', 61), +(48840, 'Space—Time—Matter', 'Weyl, Hermann', '2013-06-21', 138, 'https://www.gutenberg.org/ebooks/43006', 'en', 13612), +(48841, 'Götz von Berlichingen mit der eisernen Hand: Ein Schauspiel', 'Goethe, Johann Wolfgang von', '2000-09-01', 68, 'https://www.gutenberg.org/ebooks/2321', 'de', 6359), +(48842, 'Eagles of the Sky; Or, With Jack Ralston Along the Air Lanes', 'Newcomb, Ambrose', '2010-02-27', 9, 'https://www.gutenberg.org/ebooks/31426', 'en', 10463), +(48843, 'Kreuz und Quer, Dritter Band\nNeue gesammelte Erzählungen', 'Gerstäcker, Friedrich', '2017-07-21', 9, 'https://www.gutenberg.org/ebooks/55163', 'de', 138), +(48844, 'The Sand-Hills of Jutland', 'Andersen, H. C. (Hans Christian)', '2008-08-30', 49, 'https://www.gutenberg.org/ebooks/26491', 'en', 16740), +(48845, 'Schetsen, Eerste bundel', 'Heijermans, Herman', '2010-10-27', 11, 'https://www.gutenberg.org/ebooks/34154', 'nl', 61), +(48846, 'The Ghost-Seer; or the Apparitionist; and Sport of Destiny', 'Schiller, Friedrich', '2004-12-08', 50, 'https://www.gutenberg.org/ebooks/6781', 'en', 531), +(48847, 'The Squatter\'s Dream: A Story of Australian Life', 'Boldrewood, Rolf', '2015-11-08', 17, 'https://www.gutenberg.org/ebooks/50411', 'en', 792), +(48848, 'The Mansion of Mystery\nBeing a Certain Case of Importance, Taken from the Note-book of Adam Adams, Investigator and Detective', 'Steele, Chester K.', '2005-07-04', 15, 'https://www.gutenberg.org/ebooks/16204', 'en', 128), +(48849, 'The Airplane Boys among the Clouds\r\nOr, Young Aviators in a Wreck', 'Langworthy, John Luther', '2007-07-09', 45, 'https://www.gutenberg.org/ebooks/22031', 'en', 2279), +(48850, 'Glimpses of King William IV. and Queen Adelaide\r\nIn Letters of the Late Miss Clitherow, of Boston House, Middlesex. With a Brief Account of Boston House and the Clitherow Family', 'Clitherow, Mary', '2011-01-26', 5, 'https://www.gutenberg.org/ebooks/35086', 'en', 11984), +(48851, 'Kenelm Chillingly — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 19, 'https://www.gutenberg.org/ebooks/7653', 'en', 137), +(48852, 'The Beaver, Vol. 1, No. 10, July, 1921', 'Hudson\'s Bay Company', '2014-08-13', 13, 'https://www.gutenberg.org/ebooks/46574', 'en', 6329), +(48853, 'The Republic of Ragusa: An Episode of the Turkish Conquest', 'Villari, Luigi', '2017-08-10', 12, 'https://www.gutenberg.org/ebooks/55332', 'en', 16741), +(48854, 'Oonomoo the Huron', 'Ellis, Edward Sylvester', '2005-10-14', 106, 'https://www.gutenberg.org/ebooks/16869', 'en', 458), +(48855, 'Studies in Contemporary Biography', 'Bryce, James Bryce, Viscount', '2010-03-17', 31, 'https://www.gutenberg.org/ebooks/31677', 'en', 2816), +(48856, 'The Aristocracy of London: Part I: Kensington\nTitled, Untitled, Professional, & Commercial', 'Anonymous', '2013-03-21', 6, 'https://www.gutenberg.org/ebooks/42385', 'en', 16742), +(48857, 'The Mentor: Holland, v. 2, Num. 6, Serial No. 58\nMay 1, 1914', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2013-07-20', 8, 'https://www.gutenberg.org/ebooks/43257', 'en', 215), +(48858, 'Miscellaneous Writings and Speeches — Volume 4', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 57, 'https://www.gutenberg.org/ebooks/2170', 'en', 472), +(48859, 'Criticism\r\nPart 4 from The Works of John Greenleaf Whittier, Volume VII', 'Whittier, John Greenleaf', '2005-12-01', 6, 'https://www.gutenberg.org/ebooks/9598', 'en', 2156), +(48860, 'Sir Harry Hotspur of Humblethwaite', 'Trollope, Anthony', '2009-01-05', 28, 'https://www.gutenberg.org/ebooks/27712', 'en', 7702), +(48861, 'Ticket No. \"9672\"', 'Verne, Jules', '2004-09-26', 61, 'https://www.gutenberg.org/ebooks/13527', 'en', 5397), +(48862, 'The Nursery, No. 103, July, 1875. Vol. XVIII.\nA Monthly Magazine for Youngest Readers', 'Various', '2006-11-15', 14, 'https://www.gutenberg.org/ebooks/19821', 'en', 4641), +(48863, 'C. Sallusti Crispi De Bello Catilinario Et Jugurthino', 'Sallust', '2005-02-01', 43, 'https://www.gutenberg.org/ebooks/7402', 'la', 11406), +(48864, 'La plebe, parte III', 'Bersezio, Vittorio', '2014-08-29', 9, 'https://www.gutenberg.org/ebooks/46725', 'it', 860), +(48865, 'A Debt of Honor: The Story of Gerald Lane\'s Success in the Far West', 'Alger, Horatio, Jr.', '2016-04-19', 23, 'https://www.gutenberg.org/ebooks/51792', 'en', 11147), +(48866, 'Shakespeare and Precious Stones\nTreating of the Known References of Precious Stones in Shakespeare\'s Works, with Comments as to the Origin of His Material, the Knowledge of the Poet Concerning Precious Stones, and References as to Where the Precious Stones of His Time Came from', 'Kunz, George Frederick', '2005-06-13', 29, 'https://www.gutenberg.org/ebooks/16055', 'en', 16743), +(48867, 'Home Range and Movements of the Eastern Cottontail in Kansas', 'Janes, Donald W.', '2009-08-14', 13, 'https://www.gutenberg.org/ebooks/29688', 'en', 16744), +(48868, 'Bell\'s Cathedrals: The Abbey Church of Tewkesbury\nwith some Account of the Priory Church of Deerhurst Gloucestershire', 'Massé, H. J. L. J. (Henri Jean Louis Joseph)', '2007-08-07', 9, 'https://www.gutenberg.org/ebooks/22260', 'en', 16745), +(48869, 'Three Plays\nLawing and Jawing; Forty Yards; Woofing', 'Hurston, Zora Neale', '2005-11-29', 42, 'https://www.gutenberg.org/ebooks/17187', 'en', 7057), +(48870, 'Elements of Surgery', 'Liston, Robert', '2015-12-08', 23, 'https://www.gutenberg.org/ebooks/50640', 'en', 4470), +(48871, 'Luxury--Gluttony: Two of the Seven Cardinal Sins', 'Sue, Eugène', '2010-11-13', 9, 'https://www.gutenberg.org/ebooks/34305', 'en', 58), +(48872, 'The Story of the Amulet', 'Nesbit, E. (Edith)', '1997-03-01', 169, 'https://www.gutenberg.org/ebooks/837', 'en', 7579), +(48873, 'Catastrophe and Social Change\nBased Upon a Sociological Study of the Halifax Disaster', 'Prince, Samuel Henry', '2011-09-30', 33, 'https://www.gutenberg.org/ebooks/37580', 'en', 13224), +(48874, 'Guy Mannering, Or, the Astrologer — Complete', 'Scott, Walter', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/5355', 'en', 2389), +(48875, 'The Seat of Empire', 'Coffin, Charles Carleton', '2013-10-30', 26, 'https://www.gutenberg.org/ebooks/44072', 'en', 16746), +(48876, 'Le loup blanc', 'Féval, Paul', '2005-01-16', 15, 'https://www.gutenberg.org/ebooks/14702', 'fr', 10609), +(48877, 'The Argonauts', 'Orzeszkowa, Eliza', '2007-02-06', 26, 'https://www.gutenberg.org/ebooks/20537', 'en', 1676), +(48878, 'Der Kollektivismus und die soziale Monarchie', 'Neupauer, Josef von', '2016-05-21', 7, 'https://www.gutenberg.org/ebooks/52117', 'de', 2219), +(48879, 'An Historical Account of the Settlements of Scotch Highlanders in America', 'MacLean, J. P. (John Patterson)', '2008-06-23', 34, 'https://www.gutenberg.org/ebooks/25879', 'en', 16747), +(48880, 'Encyclopaedia Britannica, 11th Edition, \"Fairbanks, Erastus\" to \"Fens\"\r\nVolume 10, Slice 2', 'Various', '2011-06-17', 39, 'https://www.gutenberg.org/ebooks/36452', 'en', 1081), +(48881, 'The Red Planet', 'Locke, William John', '2003-07-01', 102, 'https://www.gutenberg.org/ebooks/4287', 'en', 6211), +(48882, 'König Löwes Hochzeitsschmaus', 'Olfers, Sibylle', '2018-07-08', 12, 'https://www.gutenberg.org/ebooks/57465', 'de', 625), +(48883, 'The Tinted Venus: A Farcical Romance', 'Anstey, F.', '2008-01-07', 42, 'https://www.gutenberg.org/ebooks/24197', 'en', 580), +(48884, 'The Forward Pass in Football', 'Berry, Elmer', '2010-07-09', 11, 'https://www.gutenberg.org/ebooks/33120', 'en', 3471), +(48885, 'A Layman\'s Life of Jesus', 'Byers, S. H. M. (Samuel Hawkins Marshall)', '2012-11-28', 6, 'https://www.gutenberg.org/ebooks/41500', 'en', 10446), +(48886, 'Chanticleer\nA Thanksgiving Story of the Peabody Family', 'Mathews, Cornelius', '2008-04-11', 9, 'https://www.gutenberg.org/ebooks/25045', 'en', 14372), +(48887, 'A Practical Illustration of \"Woman\'s Right to Labor\"\r\nA Letter from Marie E. Zakrzewska, M.D. Late of Berlin, Prussia', 'Zakrzewska, Marie E. (Marie Elizabeth)', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/11270', 'en', 11731), +(48888, 'Lippincott\'s Magazine, August, 1885', 'Various', '2004-12-30', 26, 'https://www.gutenberg.org/ebooks/14530', 'en', 162), +(48889, 'Humoresques', 'Klingsor, Tristan', '2007-02-27', 19, 'https://www.gutenberg.org/ebooks/20705', 'fr', 8), +(48890, 'The Countess Cathleen', 'Yeats, W. B. (William Butler)', '2004-02-01', 125, 'https://www.gutenberg.org/ebooks/5167', 'en', 16748), +(48891, 'Old Taverns of New York', 'Bayles, W. Harrison (William Harrison)', '2013-11-20', 19, 'https://www.gutenberg.org/ebooks/44240', 'en', 16749), +(48892, 'De Belgische omwenteling', 'Colenbrander, H. T. (Herman Theodoor)', '2014-04-14', 9, 'https://www.gutenberg.org/ebooks/45392', 'nl', 3937), +(48893, 'The Journal of Countess Françoise Krasinska, Great Grandmother of Victor Emmanuel', 'Tańska-Hoffmanowa, Klementyna', '2011-07-08', 12, 'https://www.gutenberg.org/ebooks/36660', 'en', 16750), +(48894, 'The Geologic Story of Colorado National Monument\nRevised Edition', 'Lohman, Stanley William', '2016-06-14', 8, 'https://www.gutenberg.org/ebooks/52325', 'en', 16751), +(48895, 'Faith and Unfaith: A Novel', 'Duchess', '2010-08-01', 18, 'https://www.gutenberg.org/ebooks/33312', 'en', 61), +(48896, 'Ontrein tarinoita', 'Railo, Eino', '2018-08-08', 12, 'https://www.gutenberg.org/ebooks/57657', 'fi', 665), +(48897, 'A Bunch of Nonsense: Vaudeville Specialty', 'Hill, Murry K.', '2003-11-01', 1, 'https://www.gutenberg.org/ebooks/10190', 'en', 4474), +(48898, 'The Right of American Slavery', 'Hoit, T. W. (True Worthy)', '2008-05-01', 24, 'https://www.gutenberg.org/ebooks/25277', 'en', 16752), +(48899, 'Isabelle', 'Gide, André', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/11042', 'fr', 259), +(48900, 'Punainen rutto', 'London, Jack', '2018-03-19', 11, 'https://www.gutenberg.org/ebooks/56785', 'fi', 2232), +(48901, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1610c-12', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4889', 'en', 5913), +(48902, 'Scotch Wit and Humor', 'Howe, W. H. (Walter Henry)', '2012-12-29', 20, 'https://www.gutenberg.org/ebooks/41732', 'en', 16753), +(48903, 'The Expositor\'s Bible: The Pastoral Epistles', 'Plummer, Alfred', '2012-05-05', 21, 'https://www.gutenberg.org/ebooks/39628', 'en', 16754), +(48904, 'Valerius Terminus: Of the Interpretation of Nature', 'Bacon, Francis', '2002-06-01', 44, 'https://www.gutenberg.org/ebooks/3290', 'en', 516), +(48905, 'The English Governess at the Siamese Court\nBeing Recollections of Six Years in the Royal Palace at Bangkok', 'Leonowens, Anna Harriette', '2005-08-01', 95, 'https://www.gutenberg.org/ebooks/8678', 'en', 16755), +(48906, 'Διηγήματα του Γυλιού', 'Karkavitsas, Andreas', '2010-02-28', 11, 'https://www.gutenberg.org/ebooks/31445', 'el', 61), +(48907, 'The West Indies and the Spanish Main', 'Trollope, Anthony', '2017-07-15', 29, 'https://www.gutenberg.org/ebooks/55100', 'en', 16756), +(48908, 'A Sailor of King George', 'Hoffman, Frederick, Captain', '2008-12-13', 71, 'https://www.gutenberg.org/ebooks/27520', 'en', 16757), +(48909, 'The History of the Fabian Society', 'Pease, Edward R. (Edward Reynolds)', '2004-10-11', 38, 'https://www.gutenberg.org/ebooks/13715', 'en', 16758), +(48910, 'Radar Map of the United States', 'United States', '1995-03-01', 30, 'https://www.gutenberg.org/ebooks/239', 'en', 16759), +(48911, 'The Heroine', 'Barrett, Eaton Stannard', '2013-06-30', 30, 'https://www.gutenberg.org/ebooks/43065', 'en', 16760), +(48912, 'Wilhelm Meisters Lehrjahre — Band 8', 'Goethe, Johann Wolfgang von', '2000-09-01', 31, 'https://www.gutenberg.org/ebooks/2342', 'de', 1080), +(48913, 'The Battle of Atlanta\nand Other Campaigns, Addresses, Etc.', 'Dodge, Grenville Mellen', '2009-12-04', 36, 'https://www.gutenberg.org/ebooks/30597', 'en', 16761), +(48914, 'The Gamester (1753)', 'Moore, Edward', '2005-07-12', 20, 'https://www.gutenberg.org/ebooks/16267', 'en', 1088), +(48915, 'Standish of Standish: A Story of the Pilgrims', 'Austin, Jane G. (Jane Goodwin)', '2007-07-12', 26, 'https://www.gutenberg.org/ebooks/22052', 'en', 16762), +(48916, 'Devereux — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-23', 22, 'https://www.gutenberg.org/ebooks/7630', 'en', 4464), +(48917, 'The conquest of Rome', 'Serao, Matilde', '2014-08-06', 23, 'https://www.gutenberg.org/ebooks/46517', 'en', 1058), +(48918, 'Zeugnisse für die Stellung des Menschen in der Natur', 'Huxley, Thomas Henry', '2010-10-26', 29, 'https://www.gutenberg.org/ebooks/34137', 'de', 16763), +(48919, 'L\'oiseau', 'Michelet, Jules', '2009-04-21', 27, 'https://www.gutenberg.org/ebooks/28568', 'fr', 318), +(48920, 'The Denver Express\nFrom \"Belgravia\" for January, 1884', 'Hayes, Augustus Allen', '2007-10-24', 8, 'https://www.gutenberg.org/ebooks/23180', 'en', 16764), +(48921, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 06 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-10-01', 10, 'https://www.gutenberg.org/ebooks/43859', 'it', 6107), +(48922, 'The Lone Star Defenders: A Chronicle of the Third Texas Cavalry, Ross\' Brigade', 'Barron, S. B. (Samuel Benton)', '2015-11-17', 6, 'https://www.gutenberg.org/ebooks/50472', 'en', 16765), +(48923, 'Diary of Ezra Green, M.D. from November 1, 1777, to September 27, 1778', 'Green, Ezra', '2011-05-23', 7, 'https://www.gutenberg.org/ebooks/36204', 'en', 10325), +(48924, 'How to Tell Fortunes: Containing Napoleon\'s Oraculum and the Key to Work It;\r\nAlso Tells Fortunes by Cards, Lucky and Unlucky Days, Signs and Omens.', 'Warford, Aaron A.', '2016-08-07', 43, 'https://www.gutenberg.org/ebooks/52741', 'en', 5750), +(48925, 'The Framework of Home Rule', 'Childers, Erskine', '2005-02-17', 25, 'https://www.gutenberg.org/ebooks/15086', 'en', 1751), +(48926, 'The Tale of Terror: A Study of the Gothic Romance', 'Birkhead, Edith', '2004-11-26', 82, 'https://www.gutenberg.org/ebooks/14154', 'en', 7049), +(48927, 'Uussi raumlaissi jaarituksi', 'Nortamo, Hjalmar', '2016-12-07', 3, 'https://www.gutenberg.org/ebooks/53693', 'fi', 16014), +(48928, 'The Voice of the Machines\nAn Introduction to the Twentieth Century', 'Lee, Gerald Stanley', '2007-01-15', 37, 'https://www.gutenberg.org/ebooks/20361', 'en', 6285), +(48929, 'Serapis — Volume 03', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5503', 'en', 1814), +(48930, 'Sweden', 'Nilsson, Victor Alfred', '2014-01-08', 12, 'https://www.gutenberg.org/ebooks/44624', 'en', 16766), +(48931, 'Jäämerellä', 'Hoffmann, Franz', '2008-05-26', 11, 'https://www.gutenberg.org/ebooks/25613', 'fi', 1103), +(48932, 'The Call of the North', 'White, Stewart Edward', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11426', 'en', 7964), +(48933, 'Letty and the Twins', 'Griffith, Helen Sherman', '2012-11-12', 17, 'https://www.gutenberg.org/ebooks/41356', 'en', 527), +(48934, 'The Standard Operas: Their Plots, Their Music, and Their Composers\r\n(12th edition)', 'Upton, George P. (George Putnam)', '2005-02-08', 17, 'https://www.gutenberg.org/ebooks/14968', 'en', 5808), +(48935, 'William Bradford of Plymouth', 'Plumb, Albert Hale', '2010-09-20', 14, 'https://www.gutenberg.org/ebooks/33776', 'en', 16767), +(48936, 'The Sex Life of the Gods', 'Knerr, M. E. (Michael E.)', '2012-07-20', 266, 'https://www.gutenberg.org/ebooks/40284', 'en', 26), +(48937, 'A kis királyok (1. rész)\nRegény', 'Jókai, Mór', '2018-05-29', 4, 'https://www.gutenberg.org/ebooks/57233', 'hu', 234), +(48938, 'Œuvres complètes de lord Byron, Tome 3\r\navec notes et commentaires comprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2008-11-03', 17, 'https://www.gutenberg.org/ebooks/27144', 'fr', 3504), +(48939, 'The Growth of English Drama', 'Wynne, Arnold', '2006-07-10', 18, 'https://www.gutenberg.org/ebooks/18799', 'en', 16768), +(48940, 'Folkungaträdet', 'Heidenstam, Verner von', '2004-09-04', 50, 'https://www.gutenberg.org/ebooks/13371', 'sv', 420), +(48941, 'A Flor De Piel: Frases', 'Sánchez Galarraga, Gustavo', '2013-08-04', 11, 'https://www.gutenberg.org/ebooks/43401', 'es', 5699), +(48942, 'Mémoires d\'Outre-Tombe, Tome 5', 'Chateaubriand, François-René, vicomte de', '2009-05-22', 26, 'https://www.gutenberg.org/ebooks/28930', 'fr', 2051), +(48943, 'Eight Cousins', 'Alcott, Louisa May', '2001-07-01', 224, 'https://www.gutenberg.org/ebooks/2726', 'en', 5372), +(48944, 'The Bandbox', 'Vance, Louis Joseph', '2010-01-19', 29, 'https://www.gutenberg.org/ebooks/31021', 'en', 323), +(48945, 'Lustra of Ezra Pound', 'Pound, Ezra', '2017-09-16', 41, 'https://www.gutenberg.org/ebooks/55564', 'en', 994), +(48946, 'Tuhannen ja yhden yön tarinoita III', 'Anonymous', '2008-07-21', 17, 'https://www.gutenberg.org/ebooks/26096', 'fi', 1007), +(48947, 'Commentary on Genesis, Vol. 2: Luther on Sin and the Flood', 'Luther, Martin', '2009-02-03', 45, 'https://www.gutenberg.org/ebooks/27978', 'en', 11656), +(48948, 'Over the Plum Pudding', 'Bangs, John Kendrick', '2010-12-03', 31, 'https://www.gutenberg.org/ebooks/34553', 'en', 770), +(48949, 'The Lives of the Twelve Caesars, Volume 01: Julius Caesar', 'Suetonius', '2004-12-13', 71, 'https://www.gutenberg.org/ebooks/6386', 'en', 1037), +(48950, 'The Pansy Magazine, Vol. 15, Dec. 1887', 'Various', '2015-09-20', 7, 'https://www.gutenberg.org/ebooks/50016', 'en', 200), +(48951, 'Ladysmith: The Diary of a Siege', 'Nevinson, Henry Woodd', '2005-08-27', 30, 'https://www.gutenberg.org/ebooks/16603', 'en', 8847), +(48952, 'The Prisoner of Zenda', 'Hope, Anthony', '2007-08-01', 11, 'https://www.gutenberg.org/ebooks/22436', 'en', 2004), +(48953, 'Paris\nGrant Allen\'s Historical Guides', 'Allen, Grant', '2015-09-08', 12, 'https://www.gutenberg.org/ebooks/49907', 'en', 16769), +(48954, 'Cannibals all! or, Slaves without masters', 'Fitzhugh, George', '2011-03-04', 52, 'https://www.gutenberg.org/ebooks/35481', 'en', 16752), +(48955, 'Personal Narrative of Travels to the Equinoctial Regions of America, During the Year 1799-1804 — Volume 3', 'Humboldt, Alexander von', '2005-01-01', 44, 'https://www.gutenberg.org/ebooks/7254', 'en', 2639), +(48956, 'Tourmalin\'s Time Cheques', 'Anstey, F.', '2014-07-02', 19, 'https://www.gutenberg.org/ebooks/46173', 'en', 2229), +(48957, 'The Royal Life Guard; or, the flight of the royal family.\r\nA historical romance of the suppression of the French monarchy', 'Dumas, Alexandre', '2013-09-03', 41, 'https://www.gutenberg.org/ebooks/43633', 'en', 248), +(48958, 'T. Tembarom', 'Burnett, Frances Hodgson', '2001-02-01', 53, 'https://www.gutenberg.org/ebooks/2514', 'en', 109), +(48959, 'Matkustus Argentinassa ja Uruguayssa\nTietoja näiden la Platan tasavaltain oloista', 'Donner, Arno', '2008-12-01', 4, 'https://www.gutenberg.org/ebooks/27376', 'fi', 14493), +(48960, 'The House by the Medlar-Tree', 'Verga, Giovanni', '2017-05-08', 78, 'https://www.gutenberg.org/ebooks/54684', 'en', 16), +(48961, 'Mystic Christianity; Or, The Inner Teachings of the Master', 'Atkinson, William Walker', '2004-08-09', 63, 'https://www.gutenberg.org/ebooks/13143', 'en', 8086), +(48962, 'History of the Ottawa and Chippewa Indians of Michigan\r\nA Grammar of Their Language, and Personal and Family History of the Author', 'Blackbird, Andrew J.', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/6988', 'en', 16770), +(48963, 'Roughing it De Luxe', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2006-10-06', 30, 'https://www.gutenberg.org/ebooks/19479', 'en', 190), +(48964, 'The Camp Fire Girls at Long Lake; Or, Bessie King in Summer Camp', 'Stewart, Jane L.', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/12091', 'en', 622), +(48965, 'Prins Alphabet', 'Valkenstein, Kees', '2017-10-15', 7, 'https://www.gutenberg.org/ebooks/55756', 'nl', 511), +(48966, 'Schlupps, der Handwerksbursch; Mären und Schnurren', 'Berg, Clara', '2010-02-07', 20, 'https://www.gutenberg.org/ebooks/31213', 'de', 841), +(48967, 'Mr. Punch\'s Scottish Humour', NULL, '2015-06-28', 14, 'https://www.gutenberg.org/ebooks/49309', 'en', 564), +(48968, 'The Boy Scouts at Mobilization Camp', 'Shaler, Robert', '2015-10-15', 9, 'https://www.gutenberg.org/ebooks/50224', 'en', 2994), +(48969, 'Bird Children: The Little Playmates of the Flower Children', 'Gordon, Elizabeth', '2014-11-05', 11, 'https://www.gutenberg.org/ebooks/47293', 'en', 1209), +(48970, 'Dr. Adriaan', 'Couperus, Louis', '2010-12-27', 13, 'https://www.gutenberg.org/ebooks/34761', 'en', 7929), +(48971, 'Under the Prophet in Utah; the National Menace of a Political Priestcraft', 'Cannon, Frank J.', '2004-12-01', 33, 'https://www.gutenberg.org/ebooks/7066', 'en', 1440), +(48972, 'Nat Goodwin\'s Book', 'Goodwin, Nat. C. (Nathaniel Carll)', '2014-07-20', 13, 'https://www.gutenberg.org/ebooks/46341', 'en', 593), +(48973, 'The Secret Garden', 'Burnett, Frances Hodgson', '2005-09-01', 17, 'https://www.gutenberg.org/ebooks/8812', 'en', 1445), +(48974, 'Richard Wagner, Composer of Operas', 'Runciman, John F.', '2005-08-04', 22, 'https://www.gutenberg.org/ebooks/16431', 'en', 1464), +(48975, 'Children and Their Books', 'Penniman, James Hosmer', '2007-09-15', 13, 'https://www.gutenberg.org/ebooks/22604', 'en', 1063), +(48976, 'The Microscope', 'Ross, Andrew', '2013-01-31', 34, 'https://www.gutenberg.org/ebooks/41958', 'en', 10791), +(48977, 'Scientific American, Volume XLIII., No. 25, December 18, 1880\nA Weekly Journal of Practical Information, Art, Science,\nMechanics, Chemistry, and Manufactures.', 'Various', '2007-04-15', 37, 'https://www.gutenberg.org/ebooks/21081', 'en', 210), +(48978, 'Samuell Gorton: A Forgotten Founder of our Liberties; First Settler of Warwick, R. I.', 'Janes, Lewis G. (Lewis George)', '2016-07-14', 13, 'https://www.gutenberg.org/ebooks/52573', 'en', 16771), +(48979, 'The Esperantist, Vol. 2, No. 3', NULL, '2012-05-29', 7, 'https://www.gutenberg.org/ebooks/39842', 'en', 3912), +(48980, 'Metabolic Adaptation to Climate and Distribution of the Raccoon Procyon Lotor and Other Procyonidae', 'Seidensticker, John', '2011-05-05', 20, 'https://www.gutenberg.org/ebooks/36036', 'en', 16772), +(48981, 'Patty in Paris', 'Wells, Carolyn', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/5731', 'en', 15226), +(48982, 'A Collection of Essays and Fugitiv Writings\nOn Moral, Historical, Political, and Literary Subjects', 'Webster, Noah', '2013-12-13', 45, 'https://www.gutenberg.org/ebooks/44416', 'en', 16773), +(48983, 'El Marqués de Bradomín: Coloquios Románticos', 'Valle-Inclán, Ramón del', '2018-10-07', 19, 'https://www.gutenberg.org/ebooks/58049', 'es', 2729), +(48984, 'Ovington\'s Bank', 'Weyman, Stanley John', '2012-02-26', 20, 'https://www.gutenberg.org/ebooks/38990', 'en', 48), +(48985, 'Argentina from a British Point of View, and Notes on Argentine Life', NULL, '2004-12-16', 32, 'https://www.gutenberg.org/ebooks/14366', 'en', 5205), +(48986, 'The American Journal of Archaeology, 1893-1', 'Various', '2006-12-20', 58, 'https://www.gutenberg.org/ebooks/20153', 'en', 3206), +(48987, 'Homes and Haunts of the Most Eminent British Poets, Vol. 1 (of 2)', 'Howitt, William', '2012-10-24', 17, 'https://www.gutenberg.org/ebooks/41164', 'en', 16774), +(48988, 'Helen Grant\'s Schooldays', 'Douglas, Amanda M.', '2010-05-23', 25, 'https://www.gutenberg.org/ebooks/32496', 'en', 62), +(48989, '圍爐夜話', 'Wang, Yongbin', '2008-05-11', 21, 'https://www.gutenberg.org/ebooks/25421', 'zh', 16775), +(48990, 'The Second Generation', 'Phillips, David Graham', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11614', 'en', 1426), +(48991, 'Papeis Avulsos', 'Machado de Assis', '2018-04-19', 56, 'https://www.gutenberg.org/ebooks/57001', 'pt', 6307), +(48992, 'Penelope\'s Irish Experiences', 'Wiggin, Kate Douglas Smith', '1998-07-01', 23, 'https://www.gutenberg.org/ebooks/1391', 'en', 669), +(48993, '\"Carrots:\" Just a Little Boy', 'Molesworth, Mrs.', '2010-08-27', 16, 'https://www.gutenberg.org/ebooks/33544', 'en', 388), +(48994, 'Harper\'s Round Table, July 28, 1896', 'Various', '2019-02-11', 0, 'https://www.gutenberg.org/ebooks/58875', 'en', 668), +(48995, 'Kummittelijoita: Kolminäytöksinen perhenäytelmä', 'Ibsen, Henrik', '2014-05-20', 18, 'https://www.gutenberg.org/ebooks/45702', 'fi', 16776), +(48996, 'Rhoda Fleming — Volume 5', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4425', 'en', 5500), +(48997, 'Browning\'s Heroines', 'Mayne, Ethel Colburn', '2007-04-28', 33, 'https://www.gutenberg.org/ebooks/21247', 'en', 16777), +(48998, 'Marjorie\'s Maytime', 'Wells, Carolyn', '2005-02-15', 11, 'https://www.gutenberg.org/ebooks/15072', 'en', 323), +(48999, 'The Song of Hugh Glass', 'Neihardt, John G.', '2016-12-04', 20, 'https://www.gutenberg.org/ebooks/53667', 'en', 16778), +(49000, 'The Story of the 2/4th Oxfordshire and Buckinghamshire Light Infantry', 'Rose, Geoffrey Keith', '2007-01-18', 43, 'https://www.gutenberg.org/ebooks/20395', 'en', 16779), +(49001, 'Music-Study in Germany, from the Home Correspondence of Amy Fay', 'Fay, Amy', '2011-09-05', 25, 'https://www.gutenberg.org/ebooks/37322', 'en', 3899), +(49002, 'Texas Fossils: An Amateur Collector\'s Handbook', 'Matthews, William Henry', '2018-01-05', 19, 'https://www.gutenberg.org/ebooks/56315', 'en', 16780), +(49003, 'Some Personal Reminiscences of Service in the Cavalry of the Army of the Potomac', 'Thomas, Hampton Sidney', '2010-06-01', 9, 'https://www.gutenberg.org/ebooks/32650', 'en', 444), +(49004, 'I misteri del castello d\'Udolfo, vol. 2', 'Radcliffe, Ann Ward', '2010-09-20', 15, 'https://www.gutenberg.org/ebooks/33782', 'it', 428), +(49005, 'Damaged Goods\r\nThe great play \"Les avariés\" by Brieux, novelized with the approval of the author', 'Brieux, Eugène', '1998-01-01', 34, 'https://www.gutenberg.org/ebooks/1157', 'en', 16781), +(49006, 'Nooks and Corners of Pembrokeshire', 'Timmins, H. Thornhill (Henry Thornhill)', '2012-07-18', 26, 'https://www.gutenberg.org/ebooks/40270', 'en', 16782), +(49007, 'Heave Away', 'McGuinn, Roger', '2003-12-01', 4, 'https://www.gutenberg.org/ebooks/10500', 'en', 16783), +(49008, 'Stanford Stories: Tales of a Young University', 'Field, Charles K. (Charles Kellogg)', '2008-03-02', 14, 'https://www.gutenberg.org/ebooks/24735', 'en', 16784), +(49009, 'Wala\'y Igsoon.... (Sugilanon\'g Binisaya)', 'Irles, Juan Villagonzalo', '2015-01-04', 16, 'https://www.gutenberg.org/ebooks/47869', 'ceb', 16785), +(49010, 'Comte du Pape', 'Malot, Hector', '2004-09-06', 9, 'https://www.gutenberg.org/ebooks/13385', 'fr', 61), +(49011, 'The Irish Penny Journal, Vol. 1 No. 23, December 5, 1840', 'Various', '2017-03-27', 1, 'https://www.gutenberg.org/ebooks/54442', 'en', 81), +(49012, 'Principles of Political Economy\r\nAbridged with Critical, Bibliographical, and Explanatory Notes, and a Sketch of the History of Political Economy', 'Mill, John Stuart', '2009-09-27', 416, 'https://www.gutenberg.org/ebooks/30107', 'en', 1745), +(49013, 'Essays of Michel de Montaigne — Complete', 'Montaigne, Michel de', '2004-10-26', 1862, 'https://www.gutenberg.org/ebooks/3600', 'en', 1964), +(49014, 'Trails Through Western Woods', 'Sanders, Helen Fitzgerald', '2013-04-14', 8, 'https://www.gutenberg.org/ebooks/42527', 'en', 16786), +(49015, 'The Industries of Animals', 'Houssay, Frédéric', '2009-08-26', 16, 'https://www.gutenberg.org/ebooks/29816', 'en', 16787), +(49016, 'Jim Mortimer', 'Bell, R. S. Warren (Robert Stanley Warren)', '2017-09-20', 6, 'https://www.gutenberg.org/ebooks/55590', 'en', 1079), +(49017, 'The Go-Getter: A Story That Tells You How to be One', 'Kyne, Peter B. (Peter Bernard)', '2004-05-01', 179, 'https://www.gutenberg.org/ebooks/12257', 'en', 1061), +(49018, 'Thoughts on Missions', 'Dibble, Sheldon', '2008-07-15', 11, 'https://www.gutenberg.org/ebooks/26062', 'en', 16788), +(49019, 'Gipsy-Night, and Other Poems', 'Hughes, Richard Arthur Warren', '2014-10-05', 11, 'https://www.gutenberg.org/ebooks/47055', 'en', 8), +(49020, 'The Wonder-Working Magician', 'Calderón de la Barca, Pedro', '2004-08-01', 38, 'https://www.gutenberg.org/ebooks/6372', 'en', 16789), +(49021, 'The Sheriffs Bluff\n1908', 'Page, Thomas Nelson', '2007-11-16', 9, 'https://www.gutenberg.org/ebooks/23510', 'en', 179), +(49022, 'From Headquarters: Odd Tales Picked up in the Volunteer Service', 'Frye, James A. (James Albert)', '2015-04-28', 6, 'https://www.gutenberg.org/ebooks/48821', 'en', 112), +(49023, 'The Bay State Monthly, Volume 3, No. 5', 'Various', '2006-02-09', 11, 'https://www.gutenberg.org/ebooks/17725', 'en', 1593), +(49024, 'Tragicomedia de Lisandro y Roselia\nllamada Elicia, y por otro nombre cuarta obra y tercera Celestina.', 'Muñón, Sancho de, active 1542', '2016-02-05', 15, 'https://www.gutenberg.org/ebooks/51130', 'es', 206), +(49025, 'Songs of the Prairie', 'Stead, Robert J. C.', '2011-03-03', 14, 'https://www.gutenberg.org/ebooks/35475', 'en', 16790), +(49026, 'Letters from the Holy Land', 'Butler, Elizabeth (Elizabeth Southerden Thompson)', '2014-07-04', 13, 'https://www.gutenberg.org/ebooks/46187', 'en', 723), +(49027, 'The Wilderness Fugitives', 'Ellis, Edward Sylvester', '2009-10-25', 15, 'https://www.gutenberg.org/ebooks/30335', 'en', 1259), +(49028, 'Emilia Galotti', 'Lessing, Gotthold Ephraim', '2005-10-01', 86, 'https://www.gutenberg.org/ebooks/9108', 'de', 1298), +(49029, 'The Sequel\nWhat the Great War will mean to Australia', 'Taylor, George A. (George Augustine)', '2008-12-02', 8, 'https://www.gutenberg.org/ebooks/27382', 'en', 579), +(49030, '裨海紀遊', 'Yu, Yonghe, active 1691-1697', '2017-05-06', 12, 'https://www.gutenberg.org/ebooks/54670', 'zh', 16791), +(49031, 'Trois contes', 'Flaubert, Gustave', '2004-04-01', 50, 'https://www.gutenberg.org/ebooks/12065', 'fr', 6209), +(49032, 'Lincoln at Cooper Union', 'Lincoln, Abraham', '2008-08-01', 2, 'https://www.gutenberg.org/ebooks/26250', 'en', 16792), +(49033, 'Quotations from the Project Gutenberg Editions of the Works of Mark Twain', 'Twain, Mark', '2002-09-01', 13, 'https://www.gutenberg.org/ebooks/3432', 'en', 1026), +(49034, 'Pompeii, Its Life and Art', 'Mau, August', '2013-05-16', 46, 'https://www.gutenberg.org/ebooks/42715', 'en', 10290), +(49035, 'The Canterbury Tales', 'Chaucer, Geoffrey', '2007-12-01', 200, 'https://www.gutenberg.org/ebooks/23722', 'en', 9426), +(49036, 'L\'Œuvre', 'Zola, Émile', '2006-01-15', 40, 'https://www.gutenberg.org/ebooks/17517', 'fr', 16793), +(49037, 'A Primer of Quaternions', 'Hathaway, Arthur S. (Arthur Stafford)', '2006-02-01', 50, 'https://www.gutenberg.org/ebooks/9934', 'en', 9547), +(49038, 'C. M. Bellmanin Lauluja ja Loiluja', 'Bellman, Carl Michael', '2014-11-02', 14, 'https://www.gutenberg.org/ebooks/47267', 'fi', 4445), +(49039, 'Army Boys on German Soil: Our Doughboys Quelling the Mobs', 'Randall, Homer', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6140', 'en', 146), +(49040, 'The Golden Triangle: The Return of Arsène Lupin', 'Leblanc, Maurice', '2010-12-30', 70, 'https://www.gutenberg.org/ebooks/34795', 'en', 1286), +(49041, 'String Quartet No. 07 in F major Opus 59', 'Beethoven, Ludwig van', '2004-12-01', 3, 'https://www.gutenberg.org/ebooks/7092', 'en', 3385), +(49042, 'Ensign Knightley, and Other Stories', 'Mason, A. E. W. (Alfred Edward Woodley)', '2004-07-09', 14, 'https://www.gutenberg.org/ebooks/12859', 'en', 179), +(49043, 'The Canadian Portrait Gallery - Volume 3 (of 4)', 'Dent, John Charles', '2011-03-21', 4, 'https://www.gutenberg.org/ebooks/35647', 'en', 8262), +(49044, 'English Coins and Tokens, with a Chapter on Greek and Roman Coins', 'Jewitt, Llewellynn Frederick William', '2016-02-26', 12, 'https://www.gutenberg.org/ebooks/51302', 'en', 16794), +(49045, 'Graham\'s Magazine Vol. XXXII No. 2. February 1848', 'Various', '2009-06-24', 13, 'https://www.gutenberg.org/ebooks/29218', 'en', 380), +(49046, 'The Cruise of the Thetis: A Tale of the Cuban Insurrection', 'Collingwood, Harry', '2007-04-14', 24, 'https://www.gutenberg.org/ebooks/21075', 'en', 324), +(49047, 'A Journal of a Tour in the Congo Free State', 'Dorman, Marcus Roberts Phipps', '2005-03-04', 29, 'https://www.gutenberg.org/ebooks/15240', 'en', 5188), +(49048, 'Pax mundi\r\nA concise account of the progress of the movement for peace by means of arbitration, neutralization, international law and disarmament', 'Arnoldson, K. P. (Klas Pontus)', '2016-07-17', 9, 'https://www.gutenberg.org/ebooks/52587', 'en', 16795), +(49049, 'The Secret of Steeple Rocks', 'Grove, Harriet Pyne', '2014-04-29', 8, 'https://www.gutenberg.org/ebooks/45530', 'en', 323), +(49050, 'Woman\'s Trials; Or, Tales and Sketches from the Life around Us', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/4617', 'en', 3994), +(49051, 'Frontier Folk', 'Booth, George', '2011-08-17', 11, 'https://www.gutenberg.org/ebooks/37110', 'en', 16796), +(49052, 'Rank and Talent; A Novel, Vol. 1 (of 3)', 'Scargill, William Pitt', '2016-11-05', 5, 'https://www.gutenberg.org/ebooks/53455', 'en', 45), +(49053, 'George Du Maurier, the Satirist of the Victorians', 'Wood, T. Martin', '2004-12-20', 14, 'https://www.gutenberg.org/ebooks/14392', 'en', 15984), +(49054, 'Encyclopaedia Britannica, 11th Edition, \"Hudson River\" to \"Hurstmonceaux\"\r\nVolume 13, Slice 8', 'Various', '2012-02-23', 18, 'https://www.gutenberg.org/ebooks/38964', 'en', 1081), +(49055, 'Chronicles of Dustypore: A Tale of Modern Anglo-Indian Society', 'Cunningham, H. S. (Henry Stewart), Sir', '2012-10-26', 8, 'https://www.gutenberg.org/ebooks/41190', 'en', 1736), +(49056, 'The \'Mind the Paint\' Girl: A Comedy in Four Acts', 'Pinero, Arthur Wing', '2007-06-18', 45, 'https://www.gutenberg.org/ebooks/21849', 'en', 1088), +(49057, 'Warrior of the Dawn', 'Browne, Howard', '2010-05-20', 22, 'https://www.gutenberg.org/ebooks/32462', 'en', 5072), +(49058, 'The Book of the Thousand Nights and a Night — Volume 12 [Supplement]', 'Burton, Richard Francis, Sir', '2019-07-20', 490, 'https://www.gutenberg.org/ebooks/59953', 'en', 3347), +(49059, 'Die Thurmuhr: eine Rechen-Fibel für kleine Kinder', 'Normann, F. G.', '2017-12-04', 5, 'https://www.gutenberg.org/ebooks/56127', 'de', 16797), +(49060, 'The Essays of Arthur Schopenhauer; Studies in Pessimism', 'Schopenhauer, Arthur', '2004-01-01', 235, 'https://www.gutenberg.org/ebooks/10732', 'en', 9165), +(49061, 'Christianity as Mystical Fact, and the Mysteries of Antiquity', 'Steiner, Rudolf', '2008-02-04', 45, 'https://www.gutenberg.org/ebooks/24507', 'en', 13051), +(49062, 'A Philosophical Essay on Probabilities', 'Laplace, Pierre Simon, marquis de', '2019-02-13', 54, 'https://www.gutenberg.org/ebooks/58881', 'en', 2410), +(49063, 'Die Phantasie in der Malerei', 'Liebermann, Max', '2011-11-28', 17, 'https://www.gutenberg.org/ebooks/38158', 'de', 3670), +(49064, 'The Complete Poetical Works of Henry Wadsworth Longfellow', 'Longfellow, Henry Wadsworth', '1998-06-01', 181, 'https://www.gutenberg.org/ebooks/1365', 'en', 178), +(49065, 'The Deserted Yacht\nMadge Sterling Series, #2', 'Wirt, Mildred A. (Mildred Augustine)', '2012-06-19', 33, 'https://www.gutenberg.org/ebooks/40042', 'en', 454), +(49066, 'La dernière lettre écrite par des soldats français tombés au champ d\'honneur 1914-1918', NULL, '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/12401', 'fr', 5289), +(49067, 'Souvenirs d\'une actrice (1/3)', 'Fusil, Louise', '2008-09-16', 9, 'https://www.gutenberg.org/ebooks/26634', 'fr', 10781), +(49068, 'Noteworthy Mammals from Sinaloa, Mexico', 'Lee, M. Raymond', '2010-03-18', 12, 'https://www.gutenberg.org/ebooks/31683', 'en', 16798), +(49069, 'Wessex Tales', 'Hardy, Thomas', '2002-02-01', 124, 'https://www.gutenberg.org/ebooks/3056', 'en', 45), +(49070, 'The Boy Scouts with the Red Cross', 'Shaler, Robert', '2015-08-28', 15, 'https://www.gutenberg.org/ebooks/49799', 'en', 557), +(49071, 'Dissertation on the Progress of the Fine Arts', 'Scott, John Robert', '2013-03-19', 6, 'https://www.gutenberg.org/ebooks/42371', 'en', 787), +(49072, 'De Geschiedenis van Woutertje Pieterse, Deel 2\r\nUit de \'ideen\' verzameld', 'Multatuli', '2009-12-24', 13, 'https://www.gutenberg.org/ebooks/30751', 'nl', 61), +(49073, 'Unbeaten Tracks in Japan', 'Bird, Isabella L. (Isabella Lucy)', '2000-05-01', 212, 'https://www.gutenberg.org/ebooks/2184', 'en', 118), +(49074, 'Conference of Officers in Charge of Government Hospitals Serving Veterans of the World War', NULL, '2019-07-31', 234, 'https://www.gutenberg.org/ebooks/60021', 'en', 13584), +(49075, 'A Story of the Golden Age', 'Baldwin, James', '2017-02-20', 57, 'https://www.gutenberg.org/ebooks/54214', 'en', 6542), +(49076, 'Quelques créatures de ce temps', 'Goncourt, Edmond de', '2011-02-09', 12, 'https://www.gutenberg.org/ebooks/35223', 'fr', 298), +(49077, 'Valtioviisas kannunvalaja: Viisinäytöksinen komedia', 'Holberg, Ludvig', '2016-04-15', 17, 'https://www.gutenberg.org/ebooks/51766', 'fi', 1552), +(49078, 'Robert Louis Stevenson', 'Black, Margaret Moyes', '2007-08-10', 10, 'https://www.gutenberg.org/ebooks/22294', 'en', 3485), +(49079, 'O Arrependimento', 'Castelo Branco, Camilo', '2007-11-06', 14, 'https://www.gutenberg.org/ebooks/23346', 'pt', 6307), +(49080, 'The Bow of Orange Ribbon: A Romance of New York', 'Barr, Amelia E.', '2005-11-28', 20, 'https://www.gutenberg.org/ebooks/17173', 'en', 1660), +(49081, 'Birds and All Nature, Vol. 4, No. 5, November 1898\r\nIllustrated by Color Photography', 'Various', '2014-12-08', 9, 'https://www.gutenberg.org/ebooks/47603', 'en', 1584), +(49082, 'Stray Birds', 'Tagore, Rabindranath', '2004-09-01', 144, 'https://www.gutenberg.org/ebooks/6524', 'en', 8230), +(49083, 'Holidays at the Grange; or, A Week\'s Delight\r\nGames and Stories for Parlor and Fireside', 'Higgins, Emily Mayer', '2006-07-25', 15, 'https://www.gutenberg.org/ebooks/18907', 'en', 16799), +(49084, 'Great Inventions and Discoveries', 'Piercy, Willis Duff', '2011-09-30', 17, 'https://www.gutenberg.org/ebooks/37574', 'en', 1739), +(49085, 'Het Eiland Wieringen en Zijne Bewoners', 'Allan, Francis', '2013-11-01', 8, 'https://www.gutenberg.org/ebooks/44086', 'nl', 16800), +(49086, 'The Barton Experiment', 'Habberton, John', '2016-09-11', 14, 'https://www.gutenberg.org/ebooks/53031', 'en', 16801), +(49087, 'Holborn and Bloomsbury', 'Mitton, G. E. (Geraldine Edith)', '2007-05-09', 38, 'https://www.gutenberg.org/ebooks/21411', 'en', 16802), +(49088, 'Trisagio Quen Carcararag', 'Fojas, Justo Claudio', '2005-04-14', 6, 'https://www.gutenberg.org/ebooks/15624', 'ilo', 13336), +(49089, 'The Library of Work and Play: Outdoor Work', 'Miller, Mary Rogers', '2014-03-17', 20, 'https://www.gutenberg.org/ebooks/45154', 'en', 16803), +(49090, 'Nature Cure: Philosophy & Practice Based on the Unity of Disease & Cure', 'Lindlahr, Henry', '2003-07-01', 155, 'https://www.gutenberg.org/ebooks/4273', 'en', 16804), +(49091, 'Travels in Morocco, Volume 2.', 'Richardson, James', '2003-12-01', 11, 'https://www.gutenberg.org/ebooks/10356', 'en', 6762), +(49092, 'Great Western Railway Instructions', 'Grierson, William Wylie', '2018-07-12', 7, 'https://www.gutenberg.org/ebooks/57491', 'en', 16805), +(49093, 'The Shepherd of Banbury\'s Rules to Judge of the Changes of the Weather, Grounded on Forty Years\' Experience', 'Claridge, John', '2008-01-04', 17, 'https://www.gutenberg.org/ebooks/24163', 'en', 5467), +(49094, 'The Story of Waitstill Baxter', 'Wiggin, Kate Douglas Smith', '1999-04-01', 26, 'https://www.gutenberg.org/ebooks/1701', 'en', 4905), +(49095, 'Daddy Long-Legs: A Comedy in Four Acts', 'Webster, Jean', '2012-08-06', 79, 'https://www.gutenberg.org/ebooks/40426', 'en', 16806), +(49096, 'Modern Substitutes for Christianity', 'Muir, Pearson M\'Adam', '2010-04-16', 17, 'https://www.gutenberg.org/ebooks/32006', 'en', 16807), +(49097, 'The Art of the Book\r\nA Review of Some Recent European and American Work in Typography, Page Decoration & Binding', NULL, '2014-06-14', 41, 'https://www.gutenberg.org/ebooks/45968', 'en', 16808), +(49098, 'Seikkailu rosenkreuziläisten luona', 'Hartmann, Franz', '2018-02-11', 9, 'https://www.gutenberg.org/ebooks/56543', 'fi', 16809), +(49099, 'Punch, or the London Charivari, Volume 156, March 26, 1919', 'Various', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11284', 'en', 134), +(49100, 'Complete Treatise on the mare and foal at the time of delivery, with illustrations.\r\nAlso on cows and calves, with stallion and mare, when diseased by Gonorrhea (clap) or Pox, also Diarrhea and Costiveness in Colts.', 'Mitchell, Conrad', '2016-10-03', 5, 'https://www.gutenberg.org/ebooks/53203', 'en', 16810), +(49101, 'The Double Widowing', 'Dufresny, Charles Rivière', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/5193', 'en', 2971), +(49102, 'An Unwilling Maid\r\nBeing the History of Certain Episodes during the American Revolution in the Early Life of Mistress Betty Yorke, born Wolcott', 'Lincoln, Jeanie Gould', '2004-02-01', 20, 'https://www.gutenberg.org/ebooks/10958', 'en', 1293), +(49103, 'The Angel of the Gila: A Tale of Arizona', 'Marsland, Cora', '2011-10-14', 13, 'https://www.gutenberg.org/ebooks/37746', 'en', 3216), +(49104, 'History of the Anglo-Saxons, from the Earliest Period to the Norman Conquest\r\nSecond Edition', 'Miller, Thomas', '2014-04-12', 52, 'https://www.gutenberg.org/ebooks/45366', 'en', 1667), +(49105, 'Conscience', 'Follen, Eliza Lee Cabot', '2003-05-01', 20, 'https://www.gutenberg.org/ebooks/4041', 'en', 1817), +(49106, 'The Lay-Man\'s Sermon upon the Late Storm\nHeld forth at an Honest Coffee-House-Conventicle', 'Defoe, Daniel', '2011-07-10', 8, 'https://www.gutenberg.org/ebooks/36694', 'en', 3021), +(49107, 'Usury\nA Scriptural, Ethical and Economic View', 'Elliott, Calvin', '2007-05-27', 19, 'https://www.gutenberg.org/ebooks/21623', 'en', 16811), +(49108, 'The Spinners', 'Phillpotts, Eden', '2005-03-20', 18, 'https://www.gutenberg.org/ebooks/15416', 'en', 11638), +(49109, 'It Takes Practice Not To Die', 'Bartlett, Elizabeth', '2019-06-11', 81, 'https://www.gutenberg.org/ebooks/59739', 'en', 994), +(49110, 'Macbeth', 'Shakespeare, William', '1998-11-01', 369, 'https://www.gutenberg.org/ebooks/1533', 'en', 1298), +(49111, 'Gabrielle of the Lagoon: A Romance of the South Seas', 'Myddleton, W. H. (William Henry)', '2012-08-29', 13, 'https://www.gutenberg.org/ebooks/40614', 'en', 108), +(49112, 'The Black Creek Stopping-House, and Other Stories', 'McClung, Nellie L.', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10164', 'en', 1358), +(49113, 'The Triumph Of Night\n1916', 'Wharton, Edith', '2008-01-17', 24, 'https://www.gutenberg.org/ebooks/24351', 'en', 1061), +(49114, 'Explorers of the Dawn', 'De la Roche, Mazo', '2008-05-02', 21, 'https://www.gutenberg.org/ebooks/25283', 'en', 6871), +(49115, 'Harper\'s Young People, April 18, 1882\nAn Illustrated Weekly', 'Various', '2018-03-18', 5, 'https://www.gutenberg.org/ebooks/56771', 'en', 479), +(49116, 'The Lion of Janina; Or, The Last Days of the Janissaries: A Turkish Novel', 'Jókai, Mór', '2010-05-03', 26, 'https://www.gutenberg.org/ebooks/32234', 'en', 16812), +(49117, 'Dennison Grant: A Novel of To-day', 'Stead, Robert J. C.', '2006-06-03', 10, 'https://www.gutenberg.org/ebooks/3264', 'en', 65), +(49118, 'Thury Zoltán összes művei (2. kötet)\nEmberhalál és egyéb elbeszélések', 'Thury, Zoltán', '2013-02-20', 18, 'https://www.gutenberg.org/ebooks/42143', 'hu', 61), +(49119, 'A Happy Boy', 'Bjørnson, Bjørnstjerne', '2004-06-01', 33, 'https://www.gutenberg.org/ebooks/12633', 'en', 286), +(49120, 'Rikas eno: Laulunsekainen huvinäytelmä kahdessa näytöksessä', 'Blanche, August', '2008-08-23', 26, 'https://www.gutenberg.org/ebooks/26406', 'fi', 402), +(49121, 'Graham\'s Magazine, Vol. XXXVII, No. 3, September 1850', 'Various', '2017-01-19', 17, 'https://www.gutenberg.org/ebooks/54026', 'en', 162), +(49122, 'Emerson\'s Wife and Other Western Stories', 'Kelly, Florence Finch', '2006-05-04', 7, 'https://www.gutenberg.org/ebooks/18309', 'en', 315), +(49123, 'Travels in Kamtschatka, During the Years 1787 and 1788, Volume 1', 'Lesseps, Jean-Baptiste-Barthélemy, baron de', '2015-03-13', 5, 'https://www.gutenberg.org/ebooks/48479', 'en', 9709), +(49124, '高士傳', 'Huangfu, Mi', '2007-12-21', 28, 'https://www.gutenberg.org/ebooks/23948', 'zh', 11701), +(49125, 'Outlines of English History from B.C. 55 to A.D. 1895\r\nArranged in Chronological Order', 'Curtis, John Charles', '2013-07-04', 6, 'https://www.gutenberg.org/ebooks/43091', 'en', 1953), +(49126, 'The Evolution of the Country Community\nA Study in Religious Sociology', 'Wilson, Warren H. (Warren Hugh)', '2009-11-29', 12, 'https://www.gutenberg.org/ebooks/30563', 'en', 6478), +(49127, 'Blackwood\'s Edinburgh Magazine — Volume 55, No. 340, February, 1844', 'Various', '2005-07-14', 66, 'https://www.gutenberg.org/ebooks/16293', 'en', 274), +(49128, 'Poems', 'Matheson, D. M. (Duncan M.)', '2016-03-25', 5, 'https://www.gutenberg.org/ebooks/51554', 'en', 16813), +(49129, 'Torpan poika: Kuvaus kansan elämästä', 'Päivärinta, Pietari', '2011-01-20', 33, 'https://www.gutenberg.org/ebooks/35011', 'fi', 61), +(49130, 'Babylon, Volume 1', 'Allen, Grant', '2014-11-22', 29, 'https://www.gutenberg.org/ebooks/47431', 'en', 2287), +(49131, 'The Spirit of 1906', 'Brooks, George W.', '2004-10-01', 6, 'https://www.gutenberg.org/ebooks/6716', 'en', 16814), +(49132, 'A Good-For-Nothing\n1876', 'Boyesen, Hjalmar Hjorth', '2007-10-24', 14, 'https://www.gutenberg.org/ebooks/23174', 'en', 179), +(49133, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 721\nOctober 20, 1877', 'Various', '2015-11-19', 2, 'https://www.gutenberg.org/ebooks/50486', 'en', 18), +(49134, 'Su único hijo', 'Alas, Leopoldo', '2005-12-17', 39, 'https://www.gutenberg.org/ebooks/17341', 'es', 61), +(49135, 'Histoire de France 1364-1415 (Volume 5/19)', 'Michelet, Jules', '2013-02-02', 22, 'https://www.gutenberg.org/ebooks/41967', 'fr', 624), +(49136, 'A Book Written by the Spirits of the So-Called Dead', NULL, '2011-05-01', 47, 'https://www.gutenberg.org/ebooks/36009', 'en', 504), +(49137, 'A Tour Through the Pyrenees', 'Taine, Hippolyte', '2013-12-14', 21, 'https://www.gutenberg.org/ebooks/44429', 'en', 13839), +(49138, 'The Great Days of the Garden District, and the Old City of Lafayette', 'Samuel, Ray', '2018-08-29', 18, 'https://www.gutenberg.org/ebooks/57802', 'en', 16815), +(49139, 'Caliban by the Yellow Sands: A Community Masque of the Art of the Theatre', 'MacKaye, Percy', '2018-10-11', 19, 'https://www.gutenberg.org/ebooks/58076', 'en', 16816), +(49140, 'Macmillan & Co.\'s General Catalogue of Works in the Departments of History, Biography, Travels, and Belles Lettres, December, 1869', 'Macmillan & Co.', '2004-12-15', 2, 'https://www.gutenberg.org/ebooks/14359', 'en', 4845), +(49141, 'Elementary Illustrations of the Differential and Integral Calculus', 'De Morgan, Augustus', '2012-03-03', 150, 'https://www.gutenberg.org/ebooks/39041', 'en', 3759), +(49142, 'The Poetical Works of John Skelton, Volume 2 (of 2)', 'Skelton, John', '2019-07-28', 170, 'https://www.gutenberg.org/ebooks/59998', 'en', 466), +(49143, 'The House of Torchy', 'Ford, Sewell', '2007-06-21', 14, 'https://www.gutenberg.org/ebooks/21882', 'en', 1660), +(49144, 'Notes and Queries, Vol. III, Number 83, May 31, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-07-24', 16, 'https://www.gutenberg.org/ebooks/36835', 'en', 105), +(49145, 'La Grande Marnière', 'Ohnet, Georges', '2007-03-31', 14, 'https://www.gutenberg.org/ebooks/20950', 'fr', 557), +(49146, 'Reconstruction in Philosophy', 'Dewey, John', '2012-06-26', 82, 'https://www.gutenberg.org/ebooks/40089', 'en', 779), +(49147, 'New Royal Cook Book', 'Royal Baking Powder Company', '2011-12-03', 87, 'https://www.gutenberg.org/ebooks/38193', 'en', 16817), +(49148, 'Susan Lenox: Her Fall and Rise', 'Phillips, David Graham', '1996-03-01', 42, 'https://www.gutenberg.org/ebooks/450', 'en', 8517), +(49149, 'The Life of George Washington, Vol. 4\r\nCommander in Chief of the American Forces During the War\r\nwhich Established the Independence of his Country and First\r\nPresident of the United States', 'Marshall, John', '2006-06-15', 31, 'https://www.gutenberg.org/ebooks/18594', 'en', 1433), +(49150, 'Personal Friendships of Jesus', 'Miller, J. R. (James Russell)', '2008-11-28', 17, 'https://www.gutenberg.org/ebooks/27349', 'en', 16818), +(49151, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nArkansas Narratives, Part 3', 'United States. Work Projects Administration', '2006-10-03', 37, 'https://www.gutenberg.org/ebooks/19446', 'en', 9125), +(49152, 'Robert Greene: [Six Plays]', 'Greene, Robert', '2017-10-18', 98, 'https://www.gutenberg.org/ebooks/55769', 'en', 1790), +(49153, 'Jackanapes, Daddy Darwin\'s Dovecot and Other Stories', 'Ewing, Juliana Horatia Gatty', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7865', 'en', 195), +(49154, 'Seventy Years Among Savages', 'Salt, Henry S.', '2015-06-30', 27, 'https://www.gutenberg.org/ebooks/49336', 'en', 5720), +(49155, 'The Bible, King James version, Book 11: 1 Kings', 'Anonymous', '2005-04-01', 11, 'https://www.gutenberg.org/ebooks/8011', 'en', 13506); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(49156, 'The Beloved Woman', 'Norris, Kathleen Thompson', '2009-03-10', 14, 'https://www.gutenberg.org/ebooks/28301', 'en', 61), +(49157, 'The Problem of China', 'Russell, Bertrand', '2004-11-03', 303, 'https://www.gutenberg.org/ebooks/13940', 'en', 567), +(49158, 'Simon Magus\r\nAn Essay on the Founder of Simonianism Based on the Ancient Sources With a Re-Evaluation of His Philosophy and Teachings', 'Mead, G. R. S. (George Robert Stow)', '2004-07-12', 209, 'https://www.gutenberg.org/ebooks/12892', 'en', 16819), +(49159, 'Peregrine\'s Progress', 'Farnol, Jeffery', '2004-12-01', 34, 'https://www.gutenberg.org/ebooks/7059', 'en', 1351), +(49160, 'Yksinäisiä: Romaani nykyajalta', 'Onerva, L.', '2017-04-05', 5, 'https://www.gutenberg.org/ebooks/54489', 'fi', 175), +(49161, 'The Gutenberg Webster\'s Unabridged Dictionary: Section D and E', 'Project Gutenberg', '1996-09-01', 85, 'https://www.gutenberg.org/ebooks/662', 'en', 1481), +(49162, 'Greville Fane', 'James, Henry', '2001-07-01', 37, 'https://www.gutenberg.org/ebooks/2719', 'en', 3962), +(49163, 'Oxford Poetry, 1917', NULL, '2016-01-01', 16, 'https://www.gutenberg.org/ebooks/50815', 'en', 1594), +(49164, 'The History of the Crusades (vol. 1 of 3)', 'Michaud, J. Fr. (Joseph Fr.)', '2015-06-01', 59, 'https://www.gutenberg.org/ebooks/49104', 'en', 10974), +(49165, 'Edgar Huntly; or, Memoirs of a Sleep-Walker', 'Brown, Charles Brockden', '2005-06-01', 87, 'https://www.gutenberg.org/ebooks/8223', 'en', 461), +(49166, 'Best Stories from the Best Book: An Illustrated Bible Companion for the Home', 'White, James Edson', '2014-09-26', 38, 'https://www.gutenberg.org/ebooks/46970', 'en', 2181), +(49167, 'Tristan ja Isolde', 'Bédier, Joseph', '2006-10-31', 11, 'https://www.gutenberg.org/ebooks/19674', 'fi', 303), +(49168, 'The Home Medical Library, Volume 5 (of 6)', NULL, '2009-01-31', 38, 'https://www.gutenberg.org/ebooks/27947', 'en', 9499), +(49169, 'The Story of the Book of Mormon', NULL, '2015-09-21', 33, 'https://www.gutenberg.org/ebooks/50029', 'en', 2107), +(49170, 'The Nursery, May 1877, Vol. XXI. No. 5\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 16, 'https://www.gutenberg.org/ebooks/28133', 'en', 4641), +(49171, 'A Woman who went to Alaska', 'Sullivan, May Kellogg', '2007-08-26', 18, 'https://www.gutenberg.org/ebooks/22409', 'en', 5908), +(49172, 'Sämmtliche Werke 1-2: Mein Leben / Spaziergang nach Syrakus im Jahre 1802\nVierte rechtmäßige Gesammtausgabe in acht Bänden', 'Seume, Johann Gottfried', '2015-09-11', 17, 'https://www.gutenberg.org/ebooks/49938', 'de', 16820), +(49173, 'Atlanta: A Twentieth-Century City', 'Atlanta Chamber of Commerce', '2010-03-29', 22, 'https://www.gutenberg.org/ebooks/31822', 'en', 16821), +(49174, 'The Associate Hermits', 'Stockton, Frank Richard', '2008-10-12', 18, 'https://www.gutenberg.org/ebooks/26895', 'en', 797), +(49175, 'The Boy Travellers in South America\r\nAdventures of Two Youths in a Journey through Ecuador, Peru, Bolivia, Paraguay, Argentine Republic, and Chili', 'Knox, Thomas Wallace', '2019-04-30', 16, 'https://www.gutenberg.org/ebooks/59396', 'en', 16822), +(49176, 'La Comédie humaine - Volume 10\r\nScènes de la vie parisienne - Tome 02', 'Balzac, Honoré de', '2018-11-06', 53, 'https://www.gutenberg.org/ebooks/58244', 'fr', 642), +(49177, 'The Love Affairs of Great Musicians, Volume 2', 'Hughes, Rupert', '2004-03-01', 32, 'https://www.gutenberg.org/ebooks/11419', 'en', 5339), +(49178, 'Les pilotes de l\'Iroise', 'Corbière, Edouard', '2005-05-23', 11, 'https://www.gutenberg.org/ebooks/15885', 'fr', 324), +(49179, 'History of European Morals From Augustus to Charlemagne (Vol. 1 of 2)', 'Lecky, William Edward Hartpole', '2012-03-25', 49, 'https://www.gutenberg.org/ebooks/39273', 'en', 680), +(49180, 'In Honour Bound: An Original Play, in One Act.\r\n(Suggested by Scribe\'s Five Act Comedy, \"Une Chaine.\")', 'Grundy, Sydney', '2012-11-16', 8, 'https://www.gutenberg.org/ebooks/41369', 'en', 1281), +(49181, 'The Brimming Cup', 'Fisher, Dorothy Canfield', '2005-02-07', 22, 'https://www.gutenberg.org/ebooks/14957', 'en', 16823), +(49182, 'O Annel Mysterioso, Scenas da Guerra Peninsular', 'Pimentel, Alberto', '2010-09-17', 10, 'https://www.gutenberg.org/ebooks/33749', 'pt', 9943), +(49183, 'Monja y casada, vírgen y mártir', 'Riva Palacio, Vicente', '2015-07-31', 71, 'https://www.gutenberg.org/ebooks/49560', 'es', 16824), +(49184, 'Shadows in the Moonlight', 'Howard, Robert E. (Robert Ervin)', '2013-02-24', 156, 'https://www.gutenberg.org/ebooks/42188', 'en', 2513), +(49185, 'The Epistle of Paul the Apostle to the Ephesians', NULL, '2007-10-01', 16, 'https://www.gutenberg.org/ebooks/22851', 'en', 7739), +(49186, 'Afloat and Ashore: A Sea Tale', 'Cooper, James Fenimore', '2005-08-01', 69, 'https://www.gutenberg.org/ebooks/8647', 'en', 1080), +(49187, 'Faidoni\nPlatonin keskustelma Sokrateen viimeisistä hetkistä ja\nsielun kuolemattomuudesta', 'Plato', '2006-09-08', 35, 'https://www.gutenberg.org/ebooks/19210', 'fi', 9675), +(49188, '£19,000', 'Delannoy, Burford', '2011-01-12', 21, 'https://www.gutenberg.org/ebooks/34934', 'en', 61), +(49189, 'The Martin Luther King, Jr. Day, 1995, Memorial Issue', 'Various', '2008-06-29', 132, 'https://www.gutenberg.org/ebooks/206', 'en', 16825), +(49190, 'The Four Faces: A Mystery', 'Le Queux, William', '2006-01-01', 40, 'https://www.gutenberg.org/ebooks/9795', 'en', 128), +(49191, '斷鴻零雁記', 'Su, Manshu', '2007-12-23', 14, 'https://www.gutenberg.org/ebooks/23983', 'zh', 847), +(49192, 'Faro Nell and Her Friends: Wolfville Stories', 'Lewis, Alfred Henry', '2009-07-22', 32, 'https://www.gutenberg.org/ebooks/29485', 'en', 2418), +(49193, 'The Squire of Sandal-Side: A Pastoral Romance', 'Barr, Amelia E.', '2005-07-10', 10, 'https://www.gutenberg.org/ebooks/16258', 'en', 1383), +(49194, 'Whispering Tongues', 'Greene, Homer', '2014-08-07', 20, 'https://www.gutenberg.org/ebooks/46528', 'en', 3529), +(49195, 'Critical, Historical, and Miscellaneous Essays; Vol. 3\r\nWith a Memoir and Index', 'Macaulay, Thomas Babington Macaulay, Baron', '2017-11-06', 17, 'https://www.gutenberg.org/ebooks/55903', 'en', 1694), +(49196, 'The Sacred Egoism of Sinn Féin', 'Boyd, Ernest Augustus', '2010-10-20', 12, 'https://www.gutenberg.org/ebooks/34108', 'en', 1344), +(49197, 'The Panjandrum Picture Book', 'Caldecott, Randolph', '2009-04-11', 23, 'https://www.gutenberg.org/ebooks/28557', 'en', 343), +(49198, 'The Old Inns of Old England, Volume 2 (of 2)\r\nA Picturesque Account of the Ancient and Storied Hostelries of Our Own Country', 'Harper, Charles G. (Charles George)', '2013-10-02', 16, 'https://www.gutenberg.org/ebooks/43866', 'en', 16826), +(49199, 'The Power of a Lie', 'Bojer, Johan', '2019-01-05', 18, 'https://www.gutenberg.org/ebooks/58620', 'en', 286), +(49200, 'The World\'s Greatest Books — Volume 05 — Fiction', NULL, '2004-02-01', 115, 'https://www.gutenberg.org/ebooks/10993', 'en', 61), +(49201, 'Le Lutrin, poème héroï-comique', 'Boileau Despréaux, Nicolas', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/5158', 'fr', 13208), +(49202, 'U.S. Copyright Renewals, 1970 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 33, 'https://www.gutenberg.org/ebooks/11841', 'en', 4170), +(49203, 'The Secret of Life, Death and Immortality\r\nA startling proposition, with a chapter devoted to mental therapeutics and instructions for self healing', 'Fleetwood, Henry', '2018-08-10', 49, 'https://www.gutenberg.org/ebooks/57668', 'en', 1509), +(49204, 'Love\'s Pilgrimage: A Novel', 'Sinclair, Upton', '2004-06-01', 14, 'https://www.gutenberg.org/ebooks/5964', 'en', 957), +(49205, '平妖傳', 'Luo, Guanzhong', '2008-04-30', 13, 'https://www.gutenberg.org/ebooks/25248', 'zh', 5698), +(49206, 'Curiosities of the American Stage', 'Hutton, Laurence', '2012-05-04', 7, 'https://www.gutenberg.org/ebooks/39617', 'en', 16827), +(49207, 'Wheat Growing in Australia', 'Australia. Department of External Affairs', '2008-04-05', 10, 'https://www.gutenberg.org/ebooks/24994', 'en', 16828), +(49208, 'Como eu atravessei Àfrica do Atlantico ao mar Indico, volume primeiro', 'Pinto, Alexandre Alberto da Rocha de Serpa', '2007-02-02', 20, 'https://www.gutenberg.org/ebooks/20508', 'pt', 5014), +(49209, 'Ariel Dances', 'Eliot, Ethel Cook', '2018-12-05', 9, 'https://www.gutenberg.org/ebooks/58412', 'en', 61), +(49210, 'Special Method in Primary Reading and Oral Work with Stories', 'McMurry, Charles A. (Charles Alexander)', '2010-10-14', 11, 'https://www.gutenberg.org/ebooks/33923', 'en', 7069), +(49211, 'A Gallant of Lorraine; vol. 1 of 2\r\nFrançois, Seigneur de Bassompierre, Marquis d\'Haronel, Maréchal de France, 1579-1646', 'Williams, H. Noel (Hugh Noel)', '2016-05-22', 6, 'https://www.gutenberg.org/ebooks/52128', 'en', 9358), +(49212, 'O General Carlos Ribeiro\r\nRecordações da Mocidade', 'Castelo Branco, Camilo', '2008-06-19', 13, 'https://www.gutenberg.org/ebooks/25846', 'pt', 16829), +(49213, 'Kuvia ja säveliä', 'Juva, Valter', '2014-02-11', 4, 'https://www.gutenberg.org/ebooks/44871', 'fi', 8), +(49214, 'The Mysterious Wanderer, Vol. III\nA Novel in Three Volumes', 'Reeve, Sophia', '2012-04-11', 10, 'https://www.gutenberg.org/ebooks/39425', 'en', 61), +(49215, 'The Will to Power: An Attempted Transvaluation of All Values. Book I and II', 'Nietzsche, Friedrich Wilhelm', '2016-08-28', 302, 'https://www.gutenberg.org/ebooks/52914', 'en', 16307), +(49216, 'New Ideas for Work and Play: What a Girl Can Make and Do', 'Beard, Lina', '2018-02-17', 14, 'https://www.gutenberg.org/ebooks/56588', 'en', 1415), +(49217, 'The Science of Fingerprints: Classification and Uses', 'United States. Federal Bureau of Investigation', '2006-08-10', 131, 'https://www.gutenberg.org/ebooks/19022', 'en', 1935), +(49218, 'Aura: 5-näytöksinen näytelmä', 'Wuori, Martti', '2015-08-21', 10, 'https://www.gutenberg.org/ebooks/49752', 'fi', 382), +(49219, 'Life on the Mississippi, Part 5.', 'Twain, Mark', '2004-07-09', 22, 'https://www.gutenberg.org/ebooks/8475', 'en', 261), +(49220, 'Sermons at Rugby', 'Percival, John', '2005-10-11', 5, 'https://www.gutenberg.org/ebooks/16856', 'en', 2745), +(49221, 'My Fair Planet', 'Smith, Evelyn E.', '2010-03-15', 55, 'https://www.gutenberg.org/ebooks/31648', 'en', 26), +(49222, 'L\'illustre comédien, ou Le martyre de Sainct Genest', 'Desfontaines, Nicolas-Marc', '2006-03-14', 11, 'https://www.gutenberg.org/ebooks/17984', 'fr', 3323), +(49223, 'The Border Boys on the Trail', 'Goldfrap, John Henry', '2015-04-11', 15, 'https://www.gutenberg.org/ebooks/48680', 'en', 16830), +(49224, 'Secrets of the Andes', 'Foster, James H.', '2013-07-20', 21, 'https://www.gutenberg.org/ebooks/43268', 'en', 323), +(49225, 'The Journey to the Polar Sea', 'Franklin, John', '2004-09-24', 31, 'https://www.gutenberg.org/ebooks/13518', 'en', 15003), +(49226, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 23: English', 'Casanova, Giacomo', '2004-12-12', 24, 'https://www.gutenberg.org/ebooks/2973', 'en', 4391), +(49227, 'Rafael in Italy: A Geographical Reader', 'Dalrymple, Julia', '2009-05-12', 40, 'https://www.gutenberg.org/ebooks/28765', 'en', 16831), +(49228, 'The Complete Plays of Gilbert and Sullivan', 'Sullivan, Arthur', '1997-02-01', 114, 'https://www.gutenberg.org/ebooks/808', 'en', 1966), +(49229, 'The Dark', 'Andreyev, Leonid', '2015-08-04', 28, 'https://www.gutenberg.org/ebooks/49594', 'en', 5454), +(49230, 'The Quarterly Review, Volume 162, No. 324, April, 1886', 'Various', '2008-08-27', 22, 'https://www.gutenberg.org/ebooks/26439', 'en', 18), +(49231, 'Charles Gounod\r\nAutobiographical Reminiscences with Family Letters and Notes on Music', 'Gounod, Charles', '2011-04-10', 14, 'https://www.gutenberg.org/ebooks/35812', 'en', 10168), +(49232, 'Farthest North\r\nThe Life and Explorations of Lieutenant James Booth Lockwood, of the Greely Arctic Expedition', 'Lanman, Charles', '2017-01-18', 5, 'https://www.gutenberg.org/ebooks/54019', 'en', 16832), +(49233, 'The Lighted Match', 'Buck, Charles Neville', '2006-05-07', 13, 'https://www.gutenberg.org/ebooks/18336', 'en', 61), +(49234, 'Bardelys the Magnificent\r\nBeing an account of the strange wooing pursued by the Sieur Marcel de Saint-Pol, marquis of Bardelys...', 'Sabatini, Rafael', '2000-11-01', 61, 'https://www.gutenberg.org/ebooks/2389', 'en', 2436), +(49235, 'Leila or, the Siege of Granada, Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-27', 27, 'https://www.gutenberg.org/ebooks/9761', 'en', 2371), +(49236, 'Karl Marx', 'Loria, Achille', '2015-03-09', 49, 'https://www.gutenberg.org/ebooks/48446', 'en', 6394), +(49237, 'The Little Lame Prince', 'Craik, Dinah Maria Mulock', '2007-12-01', 6, 'https://www.gutenberg.org/ebooks/23977', 'en', 1007), +(49238, 'The Velvet Glove', 'Harrison, Harry', '2009-07-21', 111, 'https://www.gutenberg.org/ebooks/29471', 'en', 26), +(49239, 'The Battleship Boys in Foreign Service; or, Earning New Ratings in European Seas', 'Patchin, Frank Gee', '2013-06-13', 22, 'https://www.gutenberg.org/ebooks/42940', 'en', 16833), +(49240, 'Witch-Doctors', 'Beadle, Charles', '2007-07-18', 22, 'https://www.gutenberg.org/ebooks/22099', 'en', 16834), +(49241, 'Wissenschaft der Logik — Band 1', 'Hegel, Georg Wilhelm Friedrich', '2004-10-01', 113, 'https://www.gutenberg.org/ebooks/6729', 'de', 902), +(49242, 'Junior High School Literature, Book 1', 'Elson, William H. (William Harris)', '2017-06-01', 30, 'https://www.gutenberg.org/ebooks/54825', 'en', 2645), +(49243, 'Ein Parcerie-Vertrag\r\nErzählung zur Warnung und Belehrung für Auswanderer und ihre Freunde', 'Gerstäcker, Friedrich', '2013-10-05', 9, 'https://www.gutenberg.org/ebooks/43892', 'de', 16835), +(49244, 'Four Weeks in the Trenches: The War Story of a Violinist', 'Kreisler, Fritz', '2004-02-01', 43, 'https://www.gutenberg.org/ebooks/10967', 'en', 16836), +(49245, 'Punch, or the London Charivari, Volume 62, January 6, 1872', 'Various', '2011-10-17', 7, 'https://www.gutenberg.org/ebooks/37779', 'en', 134), +(49246, 'Punch, or the London Charivari, Vol. 108, March 16, 1895', 'Various', '2014-04-11', 9, 'https://www.gutenberg.org/ebooks/45359', 'en', 134), +(49247, 'Thomas Henry Huxley: A Character Sketch', 'Huxley, Leonard', '2005-03-21', 5, 'https://www.gutenberg.org/ebooks/15429', 'en', 1632), +(49248, 'Index of the Project Gutenberg Works of Stephen Crane', 'Crane, Stephen', '2019-06-08', 15, 'https://www.gutenberg.org/ebooks/59706', 'en', 198), +(49249, 'Railroad Accidents, Their Cause and Prevention', 'Richards, R. C. (Ralph Coffin)', '2012-02-01', 14, 'https://www.gutenberg.org/ebooks/38731', 'en', 14584), +(49250, 'Rosamond, or, the Youthful Error: A Tale of Riverside; And Other Stories', 'Holmes, Mary Jane', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5990', 'en', 61), +(49251, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1585e', 'Motley, John Lothrop', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/4842', 'en', 3372), +(49252, 'The Education of the Negro Prior to 1861\r\nA History of the Education of the Colored People of the United States from the Beginning of Slavery to the Civil War', 'Woodson, Carter Godwin', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/11089', 'en', 2222), +(49253, 'Voyages amusants', NULL, '2008-03-30', 31, 'https://www.gutenberg.org/ebooks/24960', 'fr', 1117), +(49254, 'Berels Berta: Eine Bauerngeschichte aus dem Luxemburgischen', 'Zanen, Jean-Pierre', '2019-05-18', 9, 'https://www.gutenberg.org/ebooks/59534', 'de', 6069), +(49255, 'The Impossible Voyage Home', 'Wallace, F. L. (Floyd L.)', '2010-06-13', 31, 'https://www.gutenberg.org/ebooks/32805', 'en', 26), +(49256, 'Rounding up the Raider: A Naval Story of the Great War', 'Westerman, Percy F. (Percy Francis)', '2011-06-23', 36, 'https://www.gutenberg.org/ebooks/36499', 'en', 4416), +(49257, 'The Geography of Strabo, Volume 2 (of 3)\r\nLiterally Translated, with Notes', 'Strabo', '2014-02-13', 52, 'https://www.gutenberg.org/ebooks/44885', 'en', 8354), +(49258, 'Memoir and Diary of John Yeardley, Minister of the Gospel', 'Yeardley, John', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/10369', 'en', 10874), +(49259, 'The Adventures and Vagaries of Twm Shôn Catti\r\nDescriptive of Life in Wales: Interspersed with Poems', 'Prichard, T. J. Llewelyn (Thomas Jeffery Llewelyn)', '2012-08-05', 26, 'https://www.gutenberg.org/ebooks/40419', 'en', 16837), +(49260, 'The Oxford Book of Latin Verse\nFrom the earliest fragments to the end of the Vth Century A.D.', NULL, '2012-01-06', 154, 'https://www.gutenberg.org/ebooks/38503', 'en', 4338), +(49261, 'A Strike in Santa Land: A Play in One Act', 'Preston, Effa E. (Effa Estelle)', '2016-12-30', 11, 'https://www.gutenberg.org/ebooks/53832', 'en', 3459), +(49262, 'The Third Day at Stone\'s River', 'Kniffin, G. C.', '2010-04-18', 12, 'https://www.gutenberg.org/ebooks/32039', 'en', 5228), +(49263, 'Garden Pests in New Zealand\r\nA Popular Manual for Practical Gardeners, Farmers and Schools', 'Miller, David', '2014-06-13', 25, 'https://www.gutenberg.org/ebooks/45957', 'en', 16838), +(49264, 'The Great Boer War', 'Doyle, Arthur Conan', '2002-02-01', 132, 'https://www.gutenberg.org/ebooks/3069', 'en', 1956), +(49265, 'Life on the Mississippi, Part 11.', 'Twain, Mark', '2004-07-10', 6, 'https://www.gutenberg.org/ebooks/8481', 'en', 16182), +(49266, 'The Olden Time Series, Vol. 1: Curiosities of the Old Lottery\nGleanings Chiefly from Old Newspapers of Boston and Salem, Massachusetts', 'Brooks, Henry M. (Henry Mason)', '2006-03-12', 16, 'https://www.gutenberg.org/ebooks/17970', 'en', 4354), +(49267, 'The Return of Sherlock Holmes', 'Doyle, Arthur Conan', '2005-12-01', 50, 'https://www.gutenberg.org/ebooks/9553', 'en', 834), +(49268, 'A Hundred Years Hence: The Expectations of an Optimist', 'Russell, T. Baron', '2015-04-09', 10, 'https://www.gutenberg.org/ebooks/48674', 'en', 6115), +(49269, 'Among Famous Books', 'Kelman, John', '2006-04-02', 26, 'https://www.gutenberg.org/ebooks/18104', 'en', 2156), +(49270, 'Death of a Spaceman', 'Miller, Walter M.', '2009-08-09', 53, 'https://www.gutenberg.org/ebooks/29643', 'en', 179), +(49271, 'Traveling Companion Wanted', 'Wilson, Richard', '2016-04-14', 46, 'https://www.gutenberg.org/ebooks/51759', 'en', 26), +(49272, 'Memoirs of the Court of Louis XIV. and of the Regency — Volume 01', 'Orléans, Charlotte-Elisabeth, duchesse d\'', '2004-12-03', 6, 'https://www.gutenberg.org/ebooks/3855', 'en', 1870), +(49273, 'Mark Twain: A Biography. Volume III, Part 2: 1907-1910', 'Paine, Albert Bigelow', '2004-10-04', 51, 'https://www.gutenberg.org/ebooks/2987', 'en', 9357), +(49274, 'A Son of the Middle Border', 'Garland, Hamlin', '2009-05-13', 40, 'https://www.gutenberg.org/ebooks/28791', 'en', 131), +(49275, 'Old Mr. Wiley', 'La Spina, Greye', '2007-11-06', 51, 'https://www.gutenberg.org/ebooks/23379', 'en', 179), +(49276, 'The Great Book-Collectors', 'Elton, Charles Isaac', '2006-07-29', 27, 'https://www.gutenberg.org/ebooks/18938', 'en', 16839), +(49277, 'Manuel pratique de Jardinage\r\ncontenant la manière de cultiver soi-même un jardin ou d\'en diriger la culture', 'Courtois-Gérard', '2012-06-01', 35, 'https://www.gutenberg.org/ebooks/39889', 'fr', 16840), +(49278, 'Lost Art', 'Hawk, G. K.', '2019-03-29', 45, 'https://www.gutenberg.org/ebooks/59150', 'en', 123), +(49279, 'The Sabbath at Home', 'Andrews, Silas M. (Silas Milton)', '2013-02-03', 4, 'https://www.gutenberg.org/ebooks/41993', 'en', 503), +(49280, 'The Iron Rule; Or, Tyranny in the Household', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 19, 'https://www.gutenberg.org/ebooks/4628', 'en', 2815), +(49281, 'German Influence on British Cavalry', 'Childers, Erskine', '2018-04-05', 13, 'https://www.gutenberg.org/ebooks/56924', 'en', 2000), +(49282, 'Lavengro: the Scholar - the Gypsy - the Priest', 'Borrow, George', '2006-12-27', 17, 'https://www.gutenberg.org/ebooks/20198', 'en', 95), +(49283, 'Shakspere & Typography', 'Blades, William', '2012-09-22', 17, 'https://www.gutenberg.org/ebooks/40841', 'en', 16841), +(49284, 'The Adventures of an Ugly Girl', 'Corbett, George, Mrs.', '2018-10-11', 23, 'https://www.gutenberg.org/ebooks/58082', 'en', 61), +(49285, 'Mary Louise and the Liberty Girls', 'Baum, L. Frank (Lyman Frank)', '2007-06-20', 61, 'https://www.gutenberg.org/ebooks/21876', 'en', 16842), +(49286, 'General Anatomy, Applied to Physiology and Medicine, Vol. 1 (of 3)', 'Bichat, Xavier', '2017-12-03', 53, 'https://www.gutenberg.org/ebooks/56118', 'en', 7585), +(49287, '1914', 'French, John Denton Pinkstone, Earl of Ypres', '2008-02-06', 47, 'https://www.gutenberg.org/ebooks/24538', 'en', 449), +(49288, 'The Gray Phantom', 'Landon, Herman', '2011-11-02', 109, 'https://www.gutenberg.org/ebooks/37913', 'en', 128), +(49289, 'Life Gleanings', 'Macon, T. J. (Thomas Joseph)', '2011-11-29', 10, 'https://www.gutenberg.org/ebooks/38167', 'en', 16843), +(49290, 'Aus des Angelus Silesius Cherubinischem Wandersmann', 'Angelus Silesius', '2015-02-09', 27, 'https://www.gutenberg.org/ebooks/48210', 'de', 16844), +(49291, 'The Heart of Mid-Lothian, Volume 2', 'Scott, Walter', '2004-08-20', 22, 'https://www.gutenberg.org/ebooks/6943', 'en', 16845), +(49292, 'Chopin and Other Musical Essays', 'Finck, Henry T.', '2006-06-12', 47, 'https://www.gutenberg.org/ebooks/18560', 'en', 6048), +(49293, 'Putnam\'s Word Book\r\nA Practical Aid in Expressing Ideas Through the Use of an Exact and Varied Vocabulary', 'Flemming, Louis A. (Louis Andrew)', '2004-08-15', 28, 'https://www.gutenberg.org/ebooks/13188', 'en', 9961), +(49294, 'The Dead Alive', 'Collins, Wilkie', '2005-04-01', 51, 'https://www.gutenberg.org/ebooks/7891', 'en', 16846), +(49295, 'Stanley\'s tocht ter opsporing van Livingstone\nDe Aarde en haar Volken, 1873', 'Stanley, Henry M. (Henry Morton)', '2006-01-16', 27, 'https://www.gutenberg.org/ebooks/17528', 'nl', 8363), +(49296, 'American Inventions and Inventors', 'Mowry, Arthur May', '2014-11-01', 23, 'https://www.gutenberg.org/ebooks/47258', 'en', 1739), +(49297, 'Punch, or the London Charivari, Volume 100, January 17, 1891', 'Various', '2004-07-09', 2, 'https://www.gutenberg.org/ebooks/12866', 'en', 134), +(49298, 'France', 'Home, Gordon', '2011-03-25', 19, 'https://www.gutenberg.org/ebooks/35678', 'en', 1117), +(49299, 'The Politician Out-Witted', 'Low, Samuel', '2009-06-26', 7, 'https://www.gutenberg.org/ebooks/29227', 'en', 508), +(49300, 'The Castle of Otranto', 'Walpole, Horace', '1996-10-01', 782, 'https://www.gutenberg.org/ebooks/696', 'en', 428), +(49301, 'Undine', 'La Motte-Fouqué, Friedrich Heinrich Karl, Freiherr de', '2006-07-04', 96, 'https://www.gutenberg.org/ebooks/18752', 'en', 1007), +(49302, 'What the \"Boys\" Did Over There\nBy \"Themselves\"', NULL, '2015-01-03', 29, 'https://www.gutenberg.org/ebooks/47856', 'en', 449), +(49303, 'The Seiners', 'Connolly, James B. (James Brendan)', '2009-09-30', 7, 'https://www.gutenberg.org/ebooks/30138', 'en', 324), +(49304, 'One Day\'s Courtship, and The Heralds of Fame', 'Barr, Robert', '2005-11-01', 18, 'https://www.gutenberg.org/ebooks/9305', 'en', 61), +(49305, 'Aurora Floyd, Vol. 3\r\nFifth Edition', 'Braddon, M. E. (Mary Elizabeth)', '2015-01-19', 28, 'https://www.gutenberg.org/ebooks/48022', 'en', 348), +(49306, 'Talks to Farmers', 'Spurgeon, C. H. (Charles Haddon)', '2013-04-12', 49, 'https://www.gutenberg.org/ebooks/42518', 'en', 2386), +(49307, 'Hair Breadth Escapes\r\nPerilous incidents in the lives of sailors and travelers in Japan, Cuba, East Indies, etc., etc.', 'Arthur, T. S. (Timothy Shay)', '2009-08-28', 29, 'https://www.gutenberg.org/ebooks/29829', 'en', 323), +(49308, 'Tommy Smith\'s Animals', 'Selous, Edmund', '2016-05-02', 14, 'https://www.gutenberg.org/ebooks/51933', 'en', 625), +(49309, 'The Gâtakamâlâ; Or, Garland of Birth-Stories', 'Aryasura', '2014-09-28', 36, 'https://www.gutenberg.org/ebooks/46984', 'en', 16847), +(49310, 'Childhood', 'Tolstoy, Leo, graf', '2006-11-07', 46, 'https://www.gutenberg.org/ebooks/19680', 'en', 11872), +(49311, 'Hohe Sommertage\nNeue Gedichte', 'Falke, Gustav', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/12268', 'de', 4162), +(49312, 'Through Night to Light: A Novel', 'Spielhagen, Friedrich', '2010-12-08', 7, 'https://www.gutenberg.org/ebooks/34598', 'en', 61), +(49313, 'Glossaire du patois normand', 'Du Bois, Louis François', '2010-01-09', 9, 'https://www.gutenberg.org/ebooks/30904', 'fr', 5044), +(49314, 'Η νέα γυναίκα: Δράμα εις πράξεις τέσσαρας', 'Parren, Kalliroe', '2009-05-31', 6, 'https://www.gutenberg.org/ebooks/29015', 'el', 16848), +(49315, 'The Temple of Nature; or, the Origin of Society\nA Poem, with Philosophical Notes', 'Darwin, Erasmus', '2008-10-09', 69, 'https://www.gutenberg.org/ebooks/26861', 'en', 16849), +(49316, 'Weather, Crops, and Markets. Vol. 2, No. 6', 'Anonymous', '2019-04-25', 15, 'https://www.gutenberg.org/ebooks/59362', 'en', 16850), +(49317, 'The Old Castle and Other Stories', 'Anonymous', '2007-05-02', 14, 'https://www.gutenberg.org/ebooks/21278', 'en', 195), +(49318, 'Markiisitar: Kertomus', 'Sand, George', '2016-12-03', 3, 'https://www.gutenberg.org/ebooks/53658', 'fi', 2118), +(49319, 'Colonel Chabert', 'Balzac, Honoré de', '2004-07-01', 67, 'https://www.gutenberg.org/ebooks/1954', 'en', 2118), +(49320, '苦悶の欄', 'Biggers, Earl Derr', '2012-03-28', 88, 'https://www.gutenberg.org/ebooks/39287', 'ja', 128), +(49321, 'La femme française dans les temps modernes', 'Bader, Clarisse', '2005-05-20', 28, 'https://www.gutenberg.org/ebooks/15871', 'fr', 848), +(49322, 'Light and Peace\r\nInstructions for devout souls to dispel their doubts and allay their fears', 'Quadrupani, Carlo Giuseppe', '2011-12-20', 27, 'https://www.gutenberg.org/ebooks/38355', 'en', 14309), +(49323, 'The Pool in the Desert', 'Duncan, Sara Jeannette', '1998-01-01', 22, 'https://www.gutenberg.org/ebooks/1168', 'en', 2244), +(49324, 'The Ivory Trail', 'Mundy, Talbot', '2004-02-01', 73, 'https://www.gutenberg.org/ebooks/5194', 'en', 323), +(49325, 'Kankanay Ceremonies\n(American Archaeology and Ethnology)', 'Moss, C. R. (Claude Russell)', '2011-10-13', 25, 'https://www.gutenberg.org/ebooks/37741', 'en', 16851), +(49326, 'Incaland\nA Story of Adventure in the Interior of Peru and the Closing Chapters of the War with Chile', 'Wetmore, Claude H.', '2016-10-04', 12, 'https://www.gutenberg.org/ebooks/53204', 'en', 16852), +(49327, 'A Voyage to the South Sea\r\nUndertaken by command of His Majesty for the purpose of conveying the bread-fruit tree to the West Indies in His Majesty\'s ship the Bounty commanded by Lieutenant William Bligh; including an account of the mutiny on board the said ship and the subsequent voyage of part of the crew in the ship\'s boat from Tofoa, one of the Friendly Islands, to Timor, a Dutch settlement in the East Indies', 'Bligh, William', '2005-03-19', 94, 'https://www.gutenberg.org/ebooks/15411', 'en', 10753), +(49328, 'Fifteen Chapters of Autobiography', 'Russell, George William Erskine', '2007-05-27', 26, 'https://www.gutenberg.org/ebooks/21624', 'en', 16853), +(49329, 'The Garden of Survival', 'Blackwood, Algernon', '2003-05-01', 42, 'https://www.gutenberg.org/ebooks/4046', 'en', 61), +(49330, 'Grundgedanken über Krieg und Kriegführung', 'Clausewitz, Carl von', '2011-07-10', 57, 'https://www.gutenberg.org/ebooks/36693', 'de', 1359), +(49331, 'Appletons\' Popular Science Monthly, July 1899\nVolume LV, No. 3, July 1899', 'Various', '2014-04-11', 21, 'https://www.gutenberg.org/ebooks/45361', 'en', 352), +(49332, 'Sixty years with Plymouth Church', 'Griswold, Stephen Morrell', '2008-01-18', 8, 'https://www.gutenberg.org/ebooks/24356', 'en', 16854), +(49333, 'Mohammedanism\r\nLectures on Its Origin, Its Religious and Political Growth, and Its Present State', 'Snouck Hurgronje, C. (Christiaan)', '2003-11-01', 43, 'https://www.gutenberg.org/ebooks/10163', 'en', 3852), +(49334, 'Arguments before the Committee on Patents of the House of Representatives, conjointly with the Senate Committee on Patents, on H.R. 19853, to amend and consolidate the acts respecting copyright\nJune 6, 7, 8, and 9, 1906.', 'United States. Congress. House. Committee on Patents', '2012-08-29', 6, 'https://www.gutenberg.org/ebooks/40613', 'en', 1878), +(49335, 'Encyclopaedia Britannica, 11th Edition, \"Cube\" to \"Daguerre, Louis Jacques Mandé\"\r\nVolume 7, Slice 8', 'Various', '2012-01-29', 78, 'https://www.gutenberg.org/ebooks/38709', 'en', 1081), +(49336, 'Antony and Cleopatra', 'Shakespeare, William', '1998-11-01', 56, 'https://www.gutenberg.org/ebooks/1534', 'en', 1298), +(49337, 'The Wind Among the Reeds', 'Yeats, W. B. (William Butler)', '2010-05-03', 57, 'https://www.gutenberg.org/ebooks/32233', 'en', 8), +(49338, 'Practical Hand Book of Gas, Oil and Steam Engines\r\nStationary, Marine, Traction; Gas Burners, Oil Burners, Etc.; Farm, Traction, Automobile, Locomotive; A simple, practical and comprehensive book on the construction, operation and repair of all kinds of engines. Dealing with the various parts in detail and the various types of engines and also the use of different kinds of fuel.', 'Rathbun, John B.', '2018-03-18', 37, 'https://www.gutenberg.org/ebooks/56776', 'en', 16310), +(49339, '五鳳吟', 'Yunyangchichidaoren, active 17th century-18th century', '2008-05-02', 8, 'https://www.gutenberg.org/ebooks/25284', 'zh', 1003), +(49340, 'Buchanan\'s Journal of Man, June 1887\nVolume 1, Number 5', NULL, '2008-08-23', 13, 'https://www.gutenberg.org/ebooks/26401', 'en', 210), +(49341, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 489, May 14, 1831', 'Various', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/12634', 'en', 133), +(49342, 'The Spring of the Year', 'Sharp, Dallas Lore', '2013-02-20', 19, 'https://www.gutenberg.org/ebooks/42144', 'en', 1216), +(49343, 'The Portygee', 'Lincoln, Joseph Crosby', '2006-05-30', 14, 'https://www.gutenberg.org/ebooks/3263', 'en', 16855), +(49344, 'Before and after Waterloo\r\nLetters from Edward Stanley, sometime Bishop of Norwich (1802; 1814; 1816)', 'Stanley, Edward', '2009-11-29', 20, 'https://www.gutenberg.org/ebooks/30564', 'en', 1408), +(49345, 'Leila or, the Siege of Granada, Book IV.', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 5, 'https://www.gutenberg.org/ebooks/9759', 'en', 2371), +(49346, 'Leinster', 'Gwynn, Stephen Lucius', '2013-07-05', 8, 'https://www.gutenberg.org/ebooks/43096', 'en', 16856), +(49347, 'Dorothy Dale\'s Promise', 'Penrose, Margaret', '2017-01-19', 13, 'https://www.gutenberg.org/ebooks/54021', 'en', 2154), +(49348, 'A Letter to Grover Cleveland\r\nOn His False Inaugural Address, The Usurpations and Crimes of Lawmakers and Judges, and the Consequent Poverty, Ignorance, and Servitude Of The People', 'Spooner, Lysander', '2011-01-20', 8, 'https://www.gutenberg.org/ebooks/35016', 'en', 4544), +(49349, 'The Sea Shore', 'Furneaux, William S.', '2013-06-18', 17, 'https://www.gutenberg.org/ebooks/42978', 'en', 16857), +(49350, 'The Golden Fountain\nor, The Soul\'s Love for God. Being some Thoughts and\nConfessions of One of His Lovers', 'Staveley, Lilian', '2009-07-18', 17, 'https://www.gutenberg.org/ebooks/29449', 'en', 4632), +(49351, 'England in America, 1580-1652', 'Tyler, Lyon Gardiner', '2005-07-14', 22, 'https://www.gutenberg.org/ebooks/16294', 'en', 2649), +(49352, 'Birds useful and birds harmful', 'Herman, Ottó', '2016-03-25', 11, 'https://www.gutenberg.org/ebooks/51553', 'en', 318), +(49353, 'Koditon: Romaani', 'Malot, Hector', '2015-11-18', 20, 'https://www.gutenberg.org/ebooks/50481', 'fi', 3075), +(49354, 'The Report on Unidentified Flying Objects', 'Ruppelt, Edward J.', '2005-12-18', 103, 'https://www.gutenberg.org/ebooks/17346', 'en', 7726), +(49355, 'How The Raven Died\n1902, From \"Wolfville Nights\"', 'Lewis, Alfred Henry', '2007-10-24', 9, 'https://www.gutenberg.org/ebooks/23173', 'en', 179), +(49356, 'Philip Dru: Administrator; A Story of Tomorrow, 1920-1935', 'House, Edward Mandell', '2004-10-01', 87, 'https://www.gutenberg.org/ebooks/6711', 'en', 1998), +(49357, 'The American Journal of Science and Arts, Volume 50 (First Series)\nGeneral Index to Forty-Nine Volumes', 'Various', '2014-11-23', 12, 'https://www.gutenberg.org/ebooks/47436', 'en', 210), +(49358, 'Semblanzas literarias', 'Palacio Valdés, Armando', '2013-03-20', 39, 'https://www.gutenberg.org/ebooks/42376', 'es', 5089), +(49359, 'Belford\'s Magazine, Volume II, No. 8, January, 1889', 'Various', '2010-03-18', 9, 'https://www.gutenberg.org/ebooks/31684', 'en', 13816), +(49360, 'An Open-Eyed Conspiracy; An Idyl of Saratoga', 'Howells, William Dean', '2002-02-01', 27, 'https://www.gutenberg.org/ebooks/3051', 'en', 16858), +(49361, 'Second Sight: A study of Natural and Induced Clairvoyance', 'Sepharial', '2008-09-16', 15, 'https://www.gutenberg.org/ebooks/26633', 'en', 16859), +(49362, 'Kepler', 'Bryant, Walter W. (Walter William)', '2004-05-01', 66, 'https://www.gutenberg.org/ebooks/12406', 'en', 16860), +(49363, 'Military Equipment [1917]', 'Sears, Roebuck and Company', '2017-02-20', 31, 'https://www.gutenberg.org/ebooks/54213', 'en', 16861), +(49364, 'Wars & Treaties, 1815 to 1914', 'Ponsonby, Arthur Ponsonby, Baron', '2019-07-31', 752, 'https://www.gutenberg.org/ebooks/60026', 'en', 16862), +(49365, 'The Vision of Sir Launfal\r\nAnd Other Poems by James Russell Lowell; Edited with an Introduction and Notes by Julian W. Abernethy, Ph.D.', 'Lowell, James Russell', '2006-03-08', 12, 'https://www.gutenberg.org/ebooks/17948', 'en', 178), +(49366, 'The Stones of Venice, Volume 3 (of 3)', 'Ruskin, John', '2009-12-31', 67, 'https://www.gutenberg.org/ebooks/30756', 'en', 1036), +(49367, 'Three Men on the Bummel', 'Jerome, Jerome K. (Jerome Klapka)', '2000-05-01', 229, 'https://www.gutenberg.org/ebooks/2183', 'en', 637), +(49368, 'Three Margarets', 'Richards, Laura Elizabeth Howe', '2007-08-10', 22, 'https://www.gutenberg.org/ebooks/22293', 'en', 51), +(49369, 'The Turks and Europe', 'Gaillard, Gaston', '2016-04-14', 11, 'https://www.gutenberg.org/ebooks/51761', 'en', 16863), +(49370, 'Sketches in Canada, and rambles among the red men', 'Jameson, Mrs. (Anna)', '2011-02-09', 20, 'https://www.gutenberg.org/ebooks/35224', 'en', 8351), +(49371, 'The Post Office', 'Tagore, Rabindranath', '2004-09-01', 267, 'https://www.gutenberg.org/ebooks/6523', 'en', 7901), +(49372, 'A Text-Book of the History of Painting', 'Van Dyke, John Charles', '2006-07-23', 388, 'https://www.gutenberg.org/ebooks/18900', 'en', 2227), +(49373, 'The Belle\'s Stratagem', 'Cowley, Hannah', '2014-12-08', 38, 'https://www.gutenberg.org/ebooks/47604', 'en', 3523), +(49374, 'The Makers of Canada: Bishop Laval', 'Leblond, Adrien', '2005-11-28', 19, 'https://www.gutenberg.org/ebooks/17174', 'en', 2163), +(49375, 'De monumenten van den Girnar\r\nDe Aarde en haar Volken, 1907', 'Menant, Delphine', '2007-11-05', 9, 'https://www.gutenberg.org/ebooks/23341', 'nl', 16864), +(49376, 'His Honour, and a Lady', 'Duncan, Sara Jeannette', '2016-09-12', 3, 'https://www.gutenberg.org/ebooks/53036', 'en', 2244), +(49377, 'Minnie Brown; or, The Gentle Girl', 'Wise, Daniel', '2013-10-31', 6, 'https://www.gutenberg.org/ebooks/44081', 'en', 1679), +(49378, 'Second Landing', 'Wallace, F. L. (Floyd L.)', '2008-03-30', 20, 'https://www.gutenberg.org/ebooks/24958', 'en', 585), +(49379, 'Pencil Sketches; or, Outlines of Character and Manners', 'Leslie, Eliza', '2011-09-30', 25, 'https://www.gutenberg.org/ebooks/37573', 'en', 112), +(49380, 'Wives and Daughters', 'Gaskell, Elizabeth Cleghorn', '2003-07-01', 274, 'https://www.gutenberg.org/ebooks/4274', 'en', 1080), +(49381, 'Historic Sites of Lancashire and Cheshire\r\nA Wayfarer\'s Notes in the Palatine Counties, Historical, Legendary, Genealogical, and Descriptive.', 'Croston, James', '2014-03-17', 75, 'https://www.gutenberg.org/ebooks/45153', 'en', 16865), +(49382, 'Jukes-Edwards: A Study in Education and Heredity', 'Winship, Albert E. (Albert Edward)', '2005-04-14', 28, 'https://www.gutenberg.org/ebooks/15623', 'en', 16866), +(49383, 'Randy of the River; Or, The Adventures of a Young Deckhand', 'Alger, Horatio, Jr.', '2007-05-11', 42, 'https://www.gutenberg.org/ebooks/21416', 'en', 195), +(49384, 'The Comical Adventures of Twm Shon Catty (Thomas Jones, Esq.),\r\nCommonly known as the Welsh Robin Hood', 'Prichard, T. J. Llewelyn (Thomas Jeffery Llewelyn)', '2012-08-05', 19, 'https://www.gutenberg.org/ebooks/40421', 'en', 16837), +(49385, 'A History of Science — Volume 2', 'Williams, Edward Huntington', '1999-04-01', 21, 'https://www.gutenberg.org/ebooks/1706', 'en', 186), +(49386, 'Viagens na Minha Terra\r\n(Volume I)', 'Almeida Garrett, João Batista da Silva Leitão de Almeida Garrett, Visconde de', '2008-01-04', 17, 'https://www.gutenberg.org/ebooks/24164', 'pt', 671), +(49387, 'The Works of Samuel Johnson, LL.D. Volume 10\r\nParlimentary Debates I', 'Johnson, Samuel', '2003-12-01', 29, 'https://www.gutenberg.org/ebooks/10351', 'en', 9074), +(49388, 'The Wanderers', 'Johnston, Mary', '2018-07-13', 25, 'https://www.gutenberg.org/ebooks/57496', 'en', 98), +(49389, '\"Monsieur Henri\": A Foot-Note to French History', 'Guiney, Louise Imogen', '2018-02-12', 6, 'https://www.gutenberg.org/ebooks/56544', 'en', 16867), +(49390, 'Plays of Gods and Men', 'Dunsany, Lord', '2004-02-01', 60, 'https://www.gutenberg.org/ebooks/11283', 'en', 16868), +(49391, 'Delenda est Carthago!', 'Pereira, Eduardo C. N. (Eduardo Clemente Nunes)', '2010-04-15', 18, 'https://www.gutenberg.org/ebooks/32001', 'pt', 16869), +(49392, 'Jockele und seine Frau', 'Geissler, Max', '2017-05-07', 10, 'https://www.gutenberg.org/ebooks/54677', 'de', 549), +(49393, 'The Good Shepherd: A Life of Christ for Children', 'Anonymous', '2006-06-11', 31, 'https://www.gutenberg.org/ebooks/18558', 'en', 7179), +(49394, 'The Conspirators\nThe Chevalier d\'Harmental', 'Dumas, Alexandre', '2008-12-02', 55, 'https://www.gutenberg.org/ebooks/27385', 'en', 16164), +(49395, 'The Earthly Paradise: A Poem (Part II)', 'Morris, William', '2009-10-25', 29, 'https://www.gutenberg.org/ebooks/30332', 'en', 16870), +(49396, 'Averil', 'Carey, Rosa Nouchette', '2015-02-10', 12, 'https://www.gutenberg.org/ebooks/48228', 'en', 4112), +(49397, 'A History of the City of Brooklyn and Kings County, Volume II.', 'Ostrander, Stephen M.', '2013-05-14', 16, 'https://www.gutenberg.org/ebooks/42712', 'en', 4673), +(49398, 'The Book of the Thousand Nights and a Night — Volume 01', NULL, '2002-09-01', 603, 'https://www.gutenberg.org/ebooks/3435', 'en', 3347), +(49399, 'The Boy Scouts on the Yukon', 'Victor, Ralph', '2008-08-10', 7, 'https://www.gutenberg.org/ebooks/26257', 'en', 2994), +(49400, 'Lighted to Lighten: the Hope of India\r\nA Study of Conditions among Women in India', 'Van Doren, Alice B. (Alice Boucher)', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/12062', 'en', 5173), +(49401, 'Narrative and Miscellaneous Papers — Volume 2', 'De Quincey, Thomas', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6147', 'en', 472), +(49402, 'Where Duty Called; or, In Honor Bound', 'Browne, George Waldo', '2010-12-30', 11, 'https://www.gutenberg.org/ebooks/34792', 'en', 9206), +(49403, 'Reise über Indien und China nach Japan.\r\nTagebuch mit Erfahrungen, um zu überseeischen Reisen und Unternehmungen anzuregen.', 'Eisenstein, Richard, Freiherr von und zu', '2014-11-01', 19, 'https://www.gutenberg.org/ebooks/47260', 'de', 1960), +(49404, 'When the Yule Log Burns: A Christmas Story', 'Dalrymple, Leona', '2006-01-13', 13, 'https://www.gutenberg.org/ebooks/17510', 'en', 585), +(49405, 'A Treatise on the Theory of Invariants', 'Glenn, Oliver E. (Oliver Edmunds)', '2006-02-01', 27, 'https://www.gutenberg.org/ebooks/9933', 'en', 16871), +(49406, 'Viking Boys', 'Saxby, Jessie Margaret Edmondston', '2007-12-03', 7, 'https://www.gutenberg.org/ebooks/23725', 'en', 323), +(49407, 'Confidence Game', 'Harmon, Jim', '2016-02-26', 46, 'https://www.gutenberg.org/ebooks/51305', 'en', 179), +(49408, 'Malayan Literature: Comprising Romantic Tales, Epic Poetry and Royal Chronicles', NULL, '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/7095', 'en', 16872), +(49409, 'Three Plays by Granville-Barker\nThe Marrying of Ann Leete; The Voysey Inheritance; Waste', 'Granville-Barker, Harley', '2011-03-21', 13, 'https://www.gutenberg.org/ebooks/35640', 'en', 1088), +(49410, 'The Letters of Horace Walpole, Earl of Orford — Volume 2', 'Walpole, Horace', '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/4610', 'en', 6402), +(49411, 'Interrupted', 'Pansy', '2014-04-30', 25, 'https://www.gutenberg.org/ebooks/45537', 'en', 195), +(49412, 'John Henry Smith\nA Humorous Romance of Outdoor Life', 'Adams, Frederick Upham', '2005-03-03', 6, 'https://www.gutenberg.org/ebooks/15247', 'en', 637), +(49413, 'Pearls & Parasites', 'Shipley, A. E. (Arthur Everett), Sir', '2016-07-15', 21, 'https://www.gutenberg.org/ebooks/52580', 'en', 16873), +(49414, 'The Pavement Masters of Siena (1369-1562)', 'Cust, Robert H. Hobart (Robert Henry Hobart)', '2019-03-31', 15, 'https://www.gutenberg.org/ebooks/59168', 'en', 16874), +(49415, 'The Pirate Island: A Story of the South Pacific', 'Collingwood, Harry', '2007-04-13', 44, 'https://www.gutenberg.org/ebooks/21072', 'en', 550), +(49416, 'The Affair at the Inn', 'Wiggin, Kate Douglas Smith', '2012-09-27', 28, 'https://www.gutenberg.org/ebooks/40879', 'en', 843), +(49417, 'The History of the Negro Church', 'Woodson, Carter Godwin', '2012-02-23', 20, 'https://www.gutenberg.org/ebooks/38963', 'en', 9325), +(49418, 'The History of the Life and Death of Sultan Solyman the Magnificent, Emperor of the Turks, and of His son Mustapha', 'Unknown', '2016-11-05', 6, 'https://www.gutenberg.org/ebooks/53452', 'en', 16875), +(49419, 'Septimus', 'Locke, William John', '2004-12-20', 47, 'https://www.gutenberg.org/ebooks/14395', 'en', 61), +(49420, 'Het toekomend jaar drie duizend: Eene mijmering', 'Fokke Simonsz, Arend', '2011-08-17', 13, 'https://www.gutenberg.org/ebooks/37117', 'nl', 26), +(49421, 'Pop-Guns: One Serious and One Funny', 'Fanny, Aunt', '2017-12-03', 6, 'https://www.gutenberg.org/ebooks/56120', 'en', 388), +(49422, 'Suomen kansan peikkosatuja ynnä legendoja ja kertomussatuja\nToinen sarja suomalaisia satuja lapsille', 'Härkönen, Iivo', '2019-07-20', 38, 'https://www.gutenberg.org/ebooks/59954', 'fi', 5581), +(49423, 'The Whelps of the Wolf', 'Marsh, George P. (George Perkins)', '2010-05-21', 17, 'https://www.gutenberg.org/ebooks/32465', 'en', 7941), +(49424, 'Beobachtungen über das Gefühl des Schönen und Erhabenen', 'Kant, Immanuel', '2012-10-27', 44, 'https://www.gutenberg.org/ebooks/41197', 'de', 2250), +(49425, 'Voices in the Night', 'Steel, Flora Annie Webster', '2012-06-20', 16, 'https://www.gutenberg.org/ebooks/40045', 'en', 1228), +(49426, 'The Crescent Moon', 'Young, Francis Brett', '2019-02-13', 11, 'https://www.gutenberg.org/ebooks/58886', 'en', 114), +(49427, 'Tom Swift and His Undersea Search; Or, the Treasure on the Floor of the Atlantic', 'Appleton, Victor', '1998-06-01', 38, 'https://www.gutenberg.org/ebooks/1362', 'en', 16876), +(49428, 'Shakespeare\'s Lost Years in London, 1586-1592', 'Acheson, Arthur', '2008-02-03', 20, 'https://www.gutenberg.org/ebooks/24500', 'en', 16877), +(49429, 'Christmas Eve on Lonesome and Other Stories', 'Fox, John, Jr.', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10735', 'en', 13431), +(49430, 'Sodome et Gomorrhe - Deuxième partie', 'Proust, Marcel', '2005-02-15', 53, 'https://www.gutenberg.org/ebooks/15075', 'fr', 4), +(49431, 'The Lone Ranche', 'Reid, Mayne', '2007-04-27', 50, 'https://www.gutenberg.org/ebooks/21240', 'en', 16878), +(49432, 'Rhoda Fleming — Volume 2', 'Meredith, George', '2003-09-01', 16, 'https://www.gutenberg.org/ebooks/4422', 'en', 3092), +(49433, 'The Life of Rossini', 'Edwards, H. Sutherland (Henry Sutherland)', '2014-05-20', 14, 'https://www.gutenberg.org/ebooks/45705', 'en', 15950), +(49434, 'Harry Milvaine; Or, The Wanderings of a Wayward Boy', 'Stables, Gordon', '2011-09-06', 9, 'https://www.gutenberg.org/ebooks/37325', 'en', 16879), +(49435, 'Punch, or the London Charivari, Volume 159, November 24, 1920', 'Various', '2007-01-18', 17, 'https://www.gutenberg.org/ebooks/20392', 'en', 134), +(49436, 'Riita: Kertomus siitä, kuinka Ivan Ivanovitsh ja Ivan Nikiforovitsh riitaantuivat', 'Gogol, Nikolai Vasilevich', '2016-12-04', 20, 'https://www.gutenberg.org/ebooks/53660', 'fi', 257), +(49437, 'Bessy Rane: A Novel', 'Wood, Henry, Mrs.', '2018-11-17', 42, 'https://www.gutenberg.org/ebooks/58288', 'en', 137), +(49438, 'Timon d\'Athènes', 'Shakespeare, William', '2005-05-17', 10, 'https://www.gutenberg.org/ebooks/15849', 'fr', 1298), +(49439, 'Spillthrough', 'Galouye, Daniel F.', '2010-06-02', 57, 'https://www.gutenberg.org/ebooks/32657', 'en', 616), +(49440, 'Rules and Examples of Perspective proper for Painters and Architects, etc.\r\nIn English and Latin: Containing a most easie and expeditious method to delineate in perspective all designs relating to architecture', 'Pozzo, Andrea', '2018-01-05', 18, 'https://www.gutenberg.org/ebooks/56312', 'la', 16880), +(49441, 'Myths & Legends of our New Possessions & Protectorate', 'Skinner, Charles M. (Charles Montgomery)', '2008-03-02', 21, 'https://www.gutenberg.org/ebooks/24732', 'en', 16881), +(49442, 'Mary, Erzählung', 'Bjørnson, Bjørnstjerne', '2003-12-01', 16, 'https://www.gutenberg.org/ebooks/10507', 'de', 286), +(49443, 'The Little Indian Weaver', 'Brandeis, Madeline', '2012-07-19', 10, 'https://www.gutenberg.org/ebooks/40277', 'en', 4951), +(49444, 'A Star for a Night: A Story of Stage Life', 'Janis, Elsie', '2010-09-21', 20, 'https://www.gutenberg.org/ebooks/33785', 'en', 61), +(49445, 'The Danish History, Books I-IX', 'Saxo, Grammaticus', '2006-02-11', 358, 'https://www.gutenberg.org/ebooks/1150', 'en', 16882), +(49446, 'Marion Fay: A Novel', 'Trollope, Anthony', '2009-09-27', 36, 'https://www.gutenberg.org/ebooks/30100', 'en', 95), +(49447, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 496, June 27, 1831', 'Various', '2004-09-06', 2, 'https://www.gutenberg.org/ebooks/13382', 'en', 133), +(49448, 'The Hospital Murders', 'Davis, Means', '2017-03-28', 19, 'https://www.gutenberg.org/ebooks/54445', 'en', 12866), +(49449, 'Hugh, Bishop of Lincoln\nA Short Story of One of the Makers of Mediaeval England', 'Marson, Charles L. (Charles Latimer)', '2008-07-15', 7, 'https://www.gutenberg.org/ebooks/26065', 'en', 16883), +(49450, 'Sam Steele\'s Adventures on Land and Sea', 'Baum, L. Frank (Lyman Frank)', '2017-09-21', 53, 'https://www.gutenberg.org/ebooks/55597', 'en', 1586), +(49451, 'Contes choisis de la famille', 'Grimm, Wilhelm', '2004-05-01', 47, 'https://www.gutenberg.org/ebooks/12250', 'fr', 13167), +(49452, 'The Two Story Mittens and the Little Play Mittens\r\nBeing the Fourth Book of the Series', 'Fanny, Aunt', '2009-08-26', 13, 'https://www.gutenberg.org/ebooks/29811', 'en', 388), +(49453, 'A Marriage Under the Terror', 'Wentworth, Patricia', '2013-04-12', 52, 'https://www.gutenberg.org/ebooks/42520', 'en', 248), +(49454, 'Ismailia', 'Baker, Samuel White, Sir', '2003-01-01', 17, 'https://www.gutenberg.org/ebooks/3607', 'en', 484), +(49455, 'The Bay State Monthly, Volume 3, No. 2', 'Various', '2006-02-09', 5, 'https://www.gutenberg.org/ebooks/17722', 'en', 5522), +(49456, 'The Art of Home Candy Making, with Illustrations', 'Home Candy Makers', '2015-04-30', 32, 'https://www.gutenberg.org/ebooks/48826', 'en', 1372), +(49457, 'The Angel of the Tenement', 'Martin, George Madden', '2007-11-16', 16, 'https://www.gutenberg.org/ebooks/23517', 'en', 10434), +(49458, 'Quaint Gleanings from Ancient Poetry\r\nA Collection of Curious Poetical Compositions of the XVIth, XVIIth, and XVIIIth Centuries', 'Goldsmid, Edmund', '2004-08-01', 12, 'https://www.gutenberg.org/ebooks/6375', 'en', 54), +(49459, 'Un libro para las damas: Estudios acerca de la educación de la mujer', 'Sinués de Marco, María del Pilar', '2014-10-05', 17, 'https://www.gutenberg.org/ebooks/47052', 'es', 4767), +(49460, 'Histoire de France 1724-1759 (Volume 18/19)', 'Michelet, Jules', '2008-10-09', 17, 'https://www.gutenberg.org/ebooks/26859', 'fr', 624), +(49461, 'Der Findling. Erster Band.', 'Verne, Jules', '2014-07-03', 22, 'https://www.gutenberg.org/ebooks/46180', 'de', 16884), +(49462, 'Euripides and His Age', 'Murray, Gilbert', '2011-03-03', 28, 'https://www.gutenberg.org/ebooks/35472', 'en', 16885), +(49463, 'Cause of Death', 'Tadlock, Max', '2016-02-06', 27, 'https://www.gutenberg.org/ebooks/51137', 'en', 26), +(49464, 'Manon Lescaut', 'Prévost, abbé', '1996-03-01', 175, 'https://www.gutenberg.org/ebooks/468', 'en', 16886), +(49465, 'The Wild Irish Girl: A National Tale', 'Morgan, Lady (Sydney)', '2017-05-08', 45, 'https://www.gutenberg.org/ebooks/54683', 'en', 669), +(49466, 'Medieval People', 'Power, Eileen', '2004-08-09', 117, 'https://www.gutenberg.org/ebooks/13144', 'en', 16887), +(49467, 'The Diplomatic Correspondence of the American Revolution, Vol. 01', NULL, '2008-12-01', 12, 'https://www.gutenberg.org/ebooks/27371', 'en', 330), +(49468, 'God the Known and God the Unknown', 'Butler, Samuel', '2001-02-01', 27, 'https://www.gutenberg.org/ebooks/2513', 'en', 1315), +(49469, 'By-Ways of War: The Story of the Filibusters', 'Roche, James Jeffrey', '2013-09-03', 15, 'https://www.gutenberg.org/ebooks/43634', 'en', 16888), +(49470, 'The Bible, King James version, Book 29: Joel', 'Anonymous', '2005-04-01', 5, 'https://www.gutenberg.org/ebooks/8029', 'en', 5294), +(49471, 'Broad-Sword and Single-Stick\r\nWith Chapters on Quarter-Staff, Bayonet, Cudgel, Shillalah, Walking-Stick, Umbrella and Other Weapons of Self-Defence', 'Headley, Rowland George Allanson-Winn, Baron', '2010-02-07', 91, 'https://www.gutenberg.org/ebooks/31214', 'en', 6466), +(49472, 'Bushido, the Soul of Japan', 'Nitobe, Inazo', '2004-04-01', 492, 'https://www.gutenberg.org/ebooks/12096', 'en', 16889), +(49473, 'Lucy Larcom: Life, Letters, and Diary', 'Addison, Daniel Dulany', '2017-10-14', 15, 'https://www.gutenberg.org/ebooks/55751', 'en', 16890), +(49474, 'The Horse Shoe\r\nThe True Legend of St. Dunstan and the Devil, Showing How the Horse-Shoe Came to Be a Charm against Witchcraft', 'Flight, Edward G.', '2004-11-08', 45, 'https://www.gutenberg.org/ebooks/13978', 'en', 16891), +(49475, 'Shorter Novels, Eighteenth Century\r\nThe History of Rasselas, Prince of Abyssinia; The Castle of Otranto, a Gothic Story; Vathek, an Arabian Tale', 'Johnson, Samuel', '2010-12-27', 66, 'https://www.gutenberg.org/ebooks/34766', 'en', 1529), +(49476, 'Il Nemico, vol. I', 'Oriani, Alfredo', '2014-11-05', 19, 'https://www.gutenberg.org/ebooks/47294', 'it', 1544); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(49477, 'Nya utvandrarehistorier', 'Zilliacus, Konni', '2015-10-15', 5, 'https://www.gutenberg.org/ebooks/50223', 'sv', 9227), +(49478, 'On Calvinism', 'Hull, William', '2009-03-16', 14, 'https://www.gutenberg.org/ebooks/28339', 'en', 15027), +(49479, 'Rational Horse-Shoeing', 'Russell, John E. (John Edwards)', '2007-09-14', 10, 'https://www.gutenberg.org/ebooks/22603', 'en', 16892), +(49480, 'Narrative of Captivity in Abyssinia with Some Account of the Late Emperor the Late Emperor Theodore, His Country and People', 'Blanc, Henry', '2005-09-01', 14, 'https://www.gutenberg.org/ebooks/8815', 'en', 16893), +(49481, 'Poems Every Child Should Know\nThe What-Every-Child-Should-Know-Library', NULL, '2005-08-04', 335, 'https://www.gutenberg.org/ebooks/16436', 'en', 178), +(49482, 'The History of Miss Betsy Thoughtless', 'Haywood, Eliza Fowler', '2014-07-21', 32, 'https://www.gutenberg.org/ebooks/46346', 'en', 16894), +(49483, 'A March on London: Being a Story of Wat Tyler\'s Insurrection', 'Henty, G. A. (George Alfred)', '2004-12-01', 33, 'https://www.gutenberg.org/ebooks/7061', 'en', 16895), +(49484, 'Proceedings of the Second National Conservation Congress at Saint Paul, September 5-8, 1910', 'United States. National Conservation Congress', '2011-05-05', 4, 'https://www.gutenberg.org/ebooks/36031', 'en', 16896), +(49485, 'Early Illustrated Books\r\nA History of the Decoration and Illustration of Books in the 15th and 16th Centuries', 'Pollard, Alfred W. (Alfred William)', '2012-05-29', 24, 'https://www.gutenberg.org/ebooks/39845', 'en', 13887), +(49486, 'Third Planet', 'Leinster, Murray', '2016-07-14', 79, 'https://www.gutenberg.org/ebooks/52574', 'en', 16897), +(49487, 'The Penang Pirate\nand, The Lost Pinnace', 'Hutcheson, John C. (John Conroy)', '2007-04-15', 15, 'https://www.gutenberg.org/ebooks/21086', 'en', 195), +(49488, 'Invaders from the Infinite', 'Campbell, John W., Jr. (John Wood)', '2006-12-20', 100, 'https://www.gutenberg.org/ebooks/20154', 'en', 26), +(49489, 'Carmen\'s Messenger', 'Bindloss, Harold', '2004-12-15', 18, 'https://www.gutenberg.org/ebooks/14361', 'en', 65), +(49490, 'Paris and the Parisians in 1835 (Vol. 1)', 'Trollope, Frances Milton', '2012-02-27', 18, 'https://www.gutenberg.org/ebooks/38997', 'en', 2972), +(49491, 'The World\'s Great Sermons, Volume 04: L. Beecher to Bushnell', NULL, '2013-12-12', 11, 'https://www.gutenberg.org/ebooks/44411', 'en', 3021), +(49492, 'The Professional Aunt', 'Wemyss, Mary C. E.', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/5736', 'en', 16898), +(49493, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 551, June 9, 1832', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11613', 'en', 133), +(49494, 'Broad Grins\nComprising, With New Additional Tales in Verse, Those\nFormerly Publish\'d Under the Title \"My Night-Gown and\nSlippers.\"', 'Colman, George', '2008-05-11', 8, 'https://www.gutenberg.org/ebooks/25426', 'en', 54), +(49495, 'The Wild Swans at Coole', 'Yeats, W. B. (William Butler)', '2010-05-23', 72, 'https://www.gutenberg.org/ebooks/32491', 'en', 8), +(49496, 'Noble Deeds of American Women\nWith Biographical Sketches of Some of the More Prominent', NULL, '2012-03-08', 13, 'https://www.gutenberg.org/ebooks/39079', 'en', 10260), +(49497, 'Master Wace, His Chronicle of the Norman Conquest From the Roman De Rou', 'Wace', '2012-10-24', 44, 'https://www.gutenberg.org/ebooks/41163', 'en', 2806), +(49498, 'Three Hundred Tang Poems, Volume 1', 'Various', '2007-04-04', 16, 'https://www.gutenberg.org/ebooks/20968', 'zh', 9521), +(49499, 'Rienzi, the Last of the Roman Tribunes', 'Lytton, Edward Bulwer Lytton, Baron', '2006-02-15', 52, 'https://www.gutenberg.org/ebooks/1396', 'en', 13041), +(49500, 'The Amphibians and Reptiles of Michoacán, México', 'Duellman, William Edward', '2010-08-27', 13, 'https://www.gutenberg.org/ebooks/33543', 'en', 16899), +(49501, 'The Freaks of Mayfair', 'Benson, E. F. (Edward Frederic)', '2018-04-20', 35, 'https://www.gutenberg.org/ebooks/57006', 'en', 409), +(49502, 'Harper\'s Round Table, January 28, 1896', 'Various', '2016-08-07', 3, 'https://www.gutenberg.org/ebooks/52746', 'en', 668), +(49503, 'The Tragedies of Euripides, Volume I.', 'Euripides', '2005-02-16', 137, 'https://www.gutenberg.org/ebooks/15081', 'en', 3723), +(49504, '\'Neath the Hoof of the Tartar; Or, The Scourge of God', 'Jósika, Miklós, báró', '2011-05-24', 27, 'https://www.gutenberg.org/ebooks/36203', 'en', 16900), +(49505, 'The Golf Courses of the British Isles', 'Darwin, Bernard', '2014-01-08', 27, 'https://www.gutenberg.org/ebooks/44623', 'en', 16901), +(49506, 'Serapis — Volume 04', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5504', 'en', 1814), +(49507, 'Wonderwings and other Fairy Stories', 'Howes, Edith', '2007-01-15', 31, 'https://www.gutenberg.org/ebooks/20366', 'en', 1466), +(49508, 'Thus Spake Zarathustra: A Book for All and None', 'Nietzsche, Friedrich Wilhelm', '1999-12-01', 2765, 'https://www.gutenberg.org/ebooks/1998', 'en', 902), +(49509, 'Westways: A Village Chronicle', 'Mitchell, S. Weir (Silas Weir)', '2004-11-26', 9, 'https://www.gutenberg.org/ebooks/14153', 'en', 16902), +(49510, 'Bouquiniana: notes et notules d\'un bibliologue', 'Gausseron, Bernard Henri', '2016-12-07', 13, 'https://www.gutenberg.org/ebooks/53694', 'fr', 1705), +(49511, 'Practical Exercises in Elementary Meteorology', 'Ward, Robert DeCourcy', '2012-11-11', 13, 'https://www.gutenberg.org/ebooks/41351', 'en', 7109), +(49512, 'Russell H. Conwell, Founder of the Institutional Church in America\r\nThe Work and the Man', 'Burr, Agnes Rush', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11421', 'en', 10388), +(49513, 'Ermanno Raeli', 'De Roberto, Federico', '2008-05-26', 11, 'https://www.gutenberg.org/ebooks/25614', 'it', 1544), +(49514, 'A kis királyok (2. rész)\nRegény', 'Jókai, Mór', '2018-05-29', 7, 'https://www.gutenberg.org/ebooks/57234', 'hu', 234), +(49515, 'Rudy and Babette; Or, The Capture of the Eagle\'s Nest', 'Andersen, H. C. (Hans Christian)', '2012-07-20', 19, 'https://www.gutenberg.org/ebooks/40283', 'en', 1007), +(49516, 'McClure\'s Magazine, Vol. 1, No. 2, July, 1893', 'Various', '2010-09-20', 18, 'https://www.gutenberg.org/ebooks/33771', 'en', 380), +(49517, 'Harper\'s New Monthly Magazine Vol. IV, No. 19, Dec 1851', 'Various', '2011-12-24', 6, 'https://www.gutenberg.org/ebooks/38399', 'en', 4316), +(49518, 'Eric Brighteyes', 'Haggard, H. Rider (Henry Rider)', '2006-03-31', 75, 'https://www.gutenberg.org/ebooks/2721', 'en', 7171), +(49519, 'Histoire parlementaire de France, Volume 2.\r\nRecueil complet des discours prononcés dans les chambres de 1819 à 1848', 'Guizot, François', '2009-05-23', 9, 'https://www.gutenberg.org/ebooks/28937', 'fr', 6735), +(49520, 'Herbs and Apples', 'Whitney, Helen Hay', '2013-08-06', 19, 'https://www.gutenberg.org/ebooks/43406', 'en', 178), +(49521, 'Our Legal Heritage, King AEthelbert, 596 to King George III, 1775', 'Reilly, S. A.', '2004-09-05', 24, 'https://www.gutenberg.org/ebooks/13376', 'en', 6471), +(49522, 'The Cavern of the Shining Ones', 'Wells, Hal K.', '2008-11-03', 31, 'https://www.gutenberg.org/ebooks/27143', 'en', 26), +(49523, 'Les enfants des Tuileries', 'Pitray, Olga de Ségur, vicomtesse', '2008-07-19', 18, 'https://www.gutenberg.org/ebooks/26091', 'fr', 3706), +(49524, 'The Disaster Which Eclipsed History: The Johnstown Flood', 'Fox, R. K. (Richard Kyle)', '2014-09-24', 15, 'https://www.gutenberg.org/ebooks/46948', 'en', 16903), +(49525, 'El amigo Manso', 'Pérez Galdós, Benito', '2017-09-16', 53, 'https://www.gutenberg.org/ebooks/55563', 'es', 1353), +(49526, 'The Life of Napoleon Bonaparte. Vol. 2 (of 4)', 'Sloane, William Milligan', '2010-12-01', 16, 'https://www.gutenberg.org/ebooks/31026', 'en', 2051), +(49527, 'Myths and Folk-tales of the Russians, Western Slavs, and Magyars', 'Curtin, Jeremiah', '2015-09-19', 118, 'https://www.gutenberg.org/ebooks/50011', 'en', 16904), +(49528, 'Selected Records of Reptiles and Amphibians from Kansas', 'Breukelman, John', '2010-12-03', 13, 'https://www.gutenberg.org/ebooks/34554', 'en', 16905), +(49529, 'Two Years in the French West Indies', 'Hearn, Lafcadio', '2004-08-01', 41, 'https://www.gutenberg.org/ebooks/6381', 'en', 16906), +(49530, 'Der Findling. Zweiter Band.', 'Verne, Jules', '2014-07-02', 14, 'https://www.gutenberg.org/ebooks/46174', 'de', 264), +(49531, 'The Great Gold Rush: A Tale of the Klondike', 'Jarvis, W. H. P. (William Henry Pope)', '2011-03-04', 33, 'https://www.gutenberg.org/ebooks/35486', 'en', 1555), +(49532, 'The Letter-Bag of Lady Elizabeth Spencer-Stanhope — Volume 1', NULL, '2005-01-01', 33, 'https://www.gutenberg.org/ebooks/7253', 'en', 16907), +(49533, 'Kolme kutteria: Meriseikkailukertomus', 'Marryat, Frederick', '2015-09-07', 6, 'https://www.gutenberg.org/ebooks/49900', 'fi', 11955), +(49534, 'Dave Darrin on Mediterranean Service; or, With Dan Dalzell on European Duty', 'Hancock, H. Irving (Harrie Irving)', '2007-08-29', 30, 'https://www.gutenberg.org/ebooks/22431', 'en', 16908), +(49535, 'Poison Island', 'Quiller-Couch, Arthur', '2005-08-27', 15, 'https://www.gutenberg.org/ebooks/16604', 'en', 323), +(49536, 'Anne of Geierstein; Or, The Maiden of the Mist. Volume 2 (of 2)', 'Scott, Walter', '2013-11-21', 38, 'https://www.gutenberg.org/ebooks/44247', 'en', 6916), +(49537, 'The Mabinogion', NULL, '2004-02-01', 368, 'https://www.gutenberg.org/ebooks/5160', 'en', 1948), +(49538, 'A General Plan for a Mail Communication by Steam, Between Great Britain and the Eastern and Western Parts of the World', 'MacQueen, James', '2007-02-27', 9, 'https://www.gutenberg.org/ebooks/20702', 'en', 16909), +(49539, 'The Voice of Faith in the Valley of Achor: Vol. 2 [of 2]\nbeing a series of letters to several friends on religious subjects', 'Church, J. (John)', '2019-01-04', 1, 'https://www.gutenberg.org/ebooks/58618', 'en', 16910), +(49540, 'Un amour vrai', 'Conan, Laure', '2004-12-31', 10, 'https://www.gutenberg.org/ebooks/14537', 'fr', 8062), +(49541, 'Kaarle XII: Viisikuvaelmainen näytelmä', 'Strindberg, August', '2016-06-13', 14, 'https://www.gutenberg.org/ebooks/52322', 'fi', 5375), +(49542, 'Vaaralla: Kuvia laitakaupungilta', 'Pakkala, Teuvo', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/11879', 'fi', 61), +(49543, 'A Discourse on the Evils of Dancing', 'Mesick, John F.', '2011-07-08', 8, 'https://www.gutenberg.org/ebooks/36667', 'en', 5091), +(49544, 'The Life of Sir Humphrey Davy, Bart. LL.D., Volume 2 (of 2)', 'Paris, John Ayrton', '2014-04-15', 75, 'https://www.gutenberg.org/ebooks/45395', 'en', 14279), +(49545, 'The Passing of Mars: A Modern Morality Play', 'Wilkinson, Marguerite', '2018-08-06', 9, 'https://www.gutenberg.org/ebooks/57650', 'en', 16911), +(49546, 'He Was Nailed to the Cross for Me', NULL, '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10197', 'en', 9156), +(49547, 'Ivanhoe (1/4)\nLe retour du croisé', 'Scott, Walter', '2010-08-01', 29, 'https://www.gutenberg.org/ebooks/33315', 'fr', 48), +(49548, 'The Girl of the Period, and Other Social Essays, Vol. 1 (of 2)', 'Linton, E. Lynn (Elizabeth Lynn)', '2012-12-30', 35, 'https://www.gutenberg.org/ebooks/41735', 'en', 1485), +(49549, 'The Ghost Ship', 'Middleton, Richard', '2004-02-01', 70, 'https://www.gutenberg.org/ebooks/11045', 'en', 580), +(49550, 'Am Sonnenwirbel: Eine Dorfgeschichte', 'Geissler, Max', '2018-03-18', 9, 'https://www.gutenberg.org/ebooks/56782', 'de', 549), +(49551, 'Hunters Out of Space', 'Kelleam, Joseph Everidge', '2008-05-01', 15, 'https://www.gutenberg.org/ebooks/25270', 'en', 26), +(49552, 'Périclès\nTragédie', 'Shakespeare, William', '2006-09-09', 10, 'https://www.gutenberg.org/ebooks/19228', 'fr', 9081), +(49553, 'Little Songs of Long Ago: More Old Nursery Rhymes', NULL, '2017-07-12', 20, 'https://www.gutenberg.org/ebooks/55107', 'en', 672), +(49554, 'The Dark Door', 'Nourse, Alan Edward', '2007-10-03', 37, 'https://www.gutenberg.org/ebooks/22869', 'en', 179), +(49555, 'Pohjalaisia: Kansannäytelmä kolmessa näytöksessä', 'Järviluoma, Artturi', '2015-07-31', 5, 'https://www.gutenberg.org/ebooks/49558', 'fi', 382), +(49556, 'Schnock: ein niederländisches Gemälde', 'Hebbel, Friedrich', '2002-06-01', 21, 'https://www.gutenberg.org/ebooks/3297', 'de', 7597), +(49557, 'Γραφτή και Δημοτική και το Γλωσσικό Ζήτημα στην Ελλάδα', 'Brugman, Karl', '2010-02-28', 21, 'https://www.gutenberg.org/ebooks/31442', 'el', 16912), +(49558, 'The Adventure of the Red Circle', 'Doyle, Arthur Conan', '2000-10-01', 174, 'https://www.gutenberg.org/ebooks/2345', 'en', 834), +(49559, 'The Greville Memoirs, Part 1 (of 3), Volume 2 (of 3)\r\nA Journal of the Reigns of King George IV and King William IV', 'Greville, Charles', '2009-12-03', 7, 'https://www.gutenberg.org/ebooks/30590', 'en', 10651), +(49560, 'Theoretical Ethics', 'Valentine, M. (Milton)', '2013-06-29', 13, 'https://www.gutenberg.org/ebooks/43062', 'en', 10425), +(49561, 'Notes and Queries, Number 27, May 4, 1850', 'Various', '2004-10-11', 17, 'https://www.gutenberg.org/ebooks/13712', 'en', 105), +(49562, 'Rules and Regulations of the Insane Asylum of California\nPrescribed by the Resident Physician, August 1, 1861', 'Stockton State Hospital (Calif.)', '2008-12-13', 27, 'https://www.gutenberg.org/ebooks/27527', 'en', 16913), +(49563, 'The Story of Moscow', 'Gerrare, Wirt', '2014-08-05', 33, 'https://www.gutenberg.org/ebooks/46510', 'en', 16914), +(49564, 'The Disowned — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 2, 'https://www.gutenberg.org/ebooks/7637', 'en', 137), +(49565, 'Dame Duck\'s First Lecture on Education', 'Unknown', '2007-07-12', 17, 'https://www.gutenberg.org/ebooks/22055', 'en', 16915), +(49566, 'Nouveau moyen de préparer la couche sensible des plaques destinées à recevoir les images photographiques\nLettre à M. Arago', 'Daguerre, Louis Jacques Mandé', '2005-07-11', 15, 'https://www.gutenberg.org/ebooks/16260', 'fr', 1449), +(49567, 'The Young Ship-Builders of Elm Island\nElm Island Stories', 'Kellogg, Elijah', '2015-11-17', 5, 'https://www.gutenberg.org/ebooks/50475', 'en', 153), +(49568, 'Mistress Margery', 'Holt, Emily Sarah', '2007-10-25', 10, 'https://www.gutenberg.org/ebooks/23187', 'en', 16916), +(49569, 'The Princess Galva: A Romance', 'Whitelaw, David', '2010-10-25', 5, 'https://www.gutenberg.org/ebooks/34130', 'en', 3208), +(49570, 'The Wilderness Castaways', 'Wallace, Dillon', '2013-03-21', 11, 'https://www.gutenberg.org/ebooks/42382', 'en', 16917), +(49571, 'A Discourse for the Time, delivered January 4, 1852 in the First Congregational Unitarian Church', 'Furness, William Henry', '2010-03-17', 4, 'https://www.gutenberg.org/ebooks/31670', 'en', 16918), +(49572, 'The Mercer Boys\' Cruise in the Lassie', 'Wyckoff, Capwell', '2017-08-11', 7, 'https://www.gutenberg.org/ebooks/55335', 'en', 5395), +(49573, 'Library of the World\'s Best Literature, Ancient and Modern — Volume 5', NULL, '2004-09-24', 24, 'https://www.gutenberg.org/ebooks/13520', 'en', 19), +(49574, 'Eucalyptos e Acacias: Vinte annos de experiencias', 'Lima, Jaime de Magalhães', '2009-01-06', 16, 'https://www.gutenberg.org/ebooks/27715', 'pt', 16919), +(49575, 'Thankful Blossom', 'Harte, Bret', '2000-05-01', 33, 'https://www.gutenberg.org/ebooks/2177', 'en', 50), +(49576, 'Our Little English Cousin', 'McManus, Blanche', '2013-07-19', 9, 'https://www.gutenberg.org/ebooks/43250', 'en', 16920), +(49577, 'A Woman for Mayor: A Novel of To-day', 'Winslow, Helen M. (Helen Maria)', '2007-08-08', 7, 'https://www.gutenberg.org/ebooks/22267', 'en', 16921), +(49578, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Complete', 'Goldsmith, Lewis', '2004-08-26', 7, 'https://www.gutenberg.org/ebooks/3899', 'en', 2051), +(49579, 'Taivasko vai helvetti y.m. humoreskeja', 'Twain, Mark', '2016-04-19', 11, 'https://www.gutenberg.org/ebooks/51795', 'fi', 2116), +(49580, 'The Brownies and Other Tales', 'Ewing, Juliana Horatia Gatty', '2005-06-13', 45, 'https://www.gutenberg.org/ebooks/16052', 'en', 585), +(49581, 'Giovanni Boccaccio, a Biographical Study', 'Hutton, Edward', '2014-08-29', 29, 'https://www.gutenberg.org/ebooks/46722', 'en', 4043), +(49582, 'The White Christmas and other Merry Christmas Plays', 'Hare, Walter Ben', '2006-11-16', 31, 'https://www.gutenberg.org/ebooks/19826', 'en', 3459), +(49583, 'The Real Dope', 'Lardner, Ring', '2005-02-01', 27, 'https://www.gutenberg.org/ebooks/7405', 'en', 2328), +(49584, 'The Argonautica', 'Apollonius, Rhodius', '1997-02-01', 352, 'https://www.gutenberg.org/ebooks/830', 'en', 16922), +(49585, 'The Operatic Problem', 'Galloway, William Johnson', '2010-11-12', 7, 'https://www.gutenberg.org/ebooks/34302', 'en', 16923), +(49586, 'The Riddle of the Frozen Flame', 'Hanshew, Mary E.', '2005-11-29', 72, 'https://www.gutenberg.org/ebooks/17180', 'en', 16924), +(49587, 'Istoria civile del Regno di Napoli, v. 7', 'Giannone, Pietro', '2015-12-07', 9, 'https://www.gutenberg.org/ebooks/50647', 'it', 8306), +(49588, 'Het Leven der Dieren: Deel 1, Hoofdstuk 07: De Knaagdieren', 'Brehm, Alfred Edmund', '2007-02-06', 7, 'https://www.gutenberg.org/ebooks/20530', 'nl', 2360), +(49589, 'Le bachelier', 'Vallès, Jules', '2005-01-16', 11, 'https://www.gutenberg.org/ebooks/14705', 'fr', 61), +(49590, 'Embassy to the Eastern Courts of Cochin-China, Siam, and Muscat\r\nIn the U. S. Sloop-of-war Peacock, David Geisinger, Commander, During the Years 1832-3-4', 'Roberts, Edmund', '2013-10-30', 27, 'https://www.gutenberg.org/ebooks/44075', 'en', 11693), +(49591, 'The Katipunan; or, The Rise and Fall of the Filipino Commune', 'St. Clair, Francis', '2011-10-01', 26, 'https://www.gutenberg.org/ebooks/37587', 'en', 8673), +(49592, 'Marjorie\'s Three Gifts', 'Alcott, Louisa May', '2004-03-01', 42, 'https://www.gutenberg.org/ebooks/5352', 'en', 1679), +(49593, 'Petit Glossaire des lettres de Madame de Sévigné', 'Pilastre, E. (Edouard)', '2011-06-17', 20, 'https://www.gutenberg.org/ebooks/36455', 'fr', 16925), +(49594, 'The Critique of Pure Reason', 'Kant, Immanuel', '2003-07-01', 1212, 'https://www.gutenberg.org/ebooks/4280', 'en', 902), +(49595, 'The Key Note: A Novel', 'Burnham, Clara Louise', '2016-05-20', 13, 'https://www.gutenberg.org/ebooks/52110', 'en', 7071), +(49596, 'Encyclopaedia Britannica, 11th Edition, \"Capefigue\" to \"Carneades\"\r\nVolume 5, Slice 3', 'Various', '2010-07-09', 41, 'https://www.gutenberg.org/ebooks/33127', 'en', 1081), +(49597, 'Colouration in Animals and Plants', 'Tylor, Alfred', '2014-02-09', 13, 'https://www.gutenberg.org/ebooks/44849', 'en', 16926), +(49598, 'No Paiz dos Yankees', 'Caminha, Adolfo Ferreira', '2008-01-07', 26, 'https://www.gutenberg.org/ebooks/24190', 'pt', 1110), +(49599, 'Jacquette, a Sorority Girl', 'Cody, Grace Ethelwyn', '2018-07-08', 16, 'https://www.gutenberg.org/ebooks/57462', 'en', 1669), +(49600, 'Egyptian Ideas of the Future Life', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2004-02-01', 66, 'https://www.gutenberg.org/ebooks/11277', 'en', 8607), +(49601, 'Color Value', 'Clifford, C. R. (Chandler Robbins)', '2008-04-11', 3, 'https://www.gutenberg.org/ebooks/25042', 'en', 603), +(49602, 'Freezing a Mother-in-Law; or, Suspended Animation: A farce in one act', 'Pemberton, T. Edgar (Thomas Edgar)', '2012-11-28', 7, 'https://www.gutenberg.org/ebooks/41507', 'en', 907), +(49603, 'Uit Vlaanderen', 'Buysse, Cyriel', '2015-01-19', 14, 'https://www.gutenberg.org/ebooks/48025', 'nl', 20), +(49604, 'Nanà a Milano', 'Arrighi, Cletto', '2005-11-01', 28, 'https://www.gutenberg.org/ebooks/9302', 'it', 61), +(49605, 'The Knickerbocker, Vol. 22, No. 4, October 1843', 'Various', '2015-01-01', 4, 'https://www.gutenberg.org/ebooks/47851', 'en', 18), +(49606, 'The Wonder', 'Beresford, J. D. (John Davys)', '2008-11-07', 156, 'https://www.gutenberg.org/ebooks/27188', 'en', 26), +(49607, 'Summa Theologica, Part II-II (Secunda Secundae)\r\nTranslated by Fathers of the English Dominican Province', 'Thomas, Aquinas, Saint', '2006-07-04', 162, 'https://www.gutenberg.org/ebooks/18755', 'en', 2182), +(49608, 'The Complete Works of James Whitcomb Riley — Volume 1', 'Riley, James Whitcomb', '1996-10-01', 54, 'https://www.gutenberg.org/ebooks/691', 'en', 178), +(49609, 'The Square of Sevens: An Authoritative Method of Cartomancy with a Prefatory Note', 'Prime-Stevenson, Edward', '2006-10-31', 34, 'https://www.gutenberg.org/ebooks/19687', 'en', 16927), +(49610, 'The Memoirs of a White Elephant', 'Gautier, Judith', '2014-09-27', 20, 'https://www.gutenberg.org/ebooks/46983', 'en', 16555), +(49611, 'Lukemisia lapsille 4', 'Topelius, Zacharias', '2016-05-02', 21, 'https://www.gutenberg.org/ebooks/51934', 'fi', 1007), +(49612, 'The Devil\'s Disciple', 'Shaw, Bernard', '2003-01-01', 111, 'https://www.gutenberg.org/ebooks/3638', 'en', 13863), +(49613, 'Copy of Letters Sent to Great-Britain by His Excellency Thomas Hutchinson, the Hon. Andrew Oliver, and Several Other Persons', 'Oliver, Andrew', '2015-04-28', 12, 'https://www.gutenberg.org/ebooks/48819', 'en', 453), +(49614, 'Carlo\nor Kindness Rewarded', 'Anonymous', '2007-11-17', 13, 'https://www.gutenberg.org/ebooks/23528', 'en', 450), +(49615, 'El Filibusterismo (Continuación del Noli me tángere)', 'Rizal, José', '2010-01-09', 68, 'https://www.gutenberg.org/ebooks/30903', 'es', 16928), +(49616, 'William Tell Told Again', 'Wodehouse, P. G. (Pelham Grenville)', '2005-01-01', 117, 'https://www.gutenberg.org/ebooks/7298', 'en', 564), +(49617, 'Le monete dei possedimenti veneziani di oltremare e di terraferma descritte ed illustrate da Vincenzo Lazari', 'Lazari, Vincenzo', '2008-10-10', 25, 'https://www.gutenberg.org/ebooks/26866', 'it', 16929), +(49618, 'Medley Dialect Recitations, Comprising a Series of the Most Popular Selections in German, French, and Scotch', NULL, '2016-02-02', 18, 'https://www.gutenberg.org/ebooks/51108', 'en', 1725), +(49619, 'Mémoires d\'une contemporaine. Tome 6\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-05-31', 11, 'https://www.gutenberg.org/ebooks/29012', 'fr', 1941), +(49620, 'Études sur l\'industrie et la classe industrielle à Paris au XIIIe et au XIVe siècle', 'Fagniez, Gustave', '2019-04-26', 11, 'https://www.gutenberg.org/ebooks/59365', 'fr', 16930), +(49621, 'Van Toledo naar Granada\r\nDe Aarde en haar Volken, 1906', 'Dieulafoy, Jane', '2004-11-28', 7, 'https://www.gutenberg.org/ebooks/14198', 'nl', 1514), +(49622, 'A Book of Strife in the Form of The Diary of an Old Soul', 'MacDonald, George', '1999-11-01', 65, 'https://www.gutenberg.org/ebooks/1953', 'en', 16931), +(49623, 'The Unpopular Review, Volume II Number 3', 'Various', '2005-05-22', 36, 'https://www.gutenberg.org/ebooks/15876', 'en', 1227), +(49624, 'Black Diamonds: A Novel', 'Jókai, Mór', '2010-06-03', 23, 'https://www.gutenberg.org/ebooks/32668', 'en', 7076), +(49625, '\"Lest We Forget\": Chicago\'s Awful Theater Horror', 'Everett, Marshall', '2012-03-27', 22, 'https://www.gutenberg.org/ebooks/39280', 'en', 16932), +(49626, 'Hyacinth', 'Birmingham, George A.', '2008-01-23', 33, 'https://www.gutenberg.org/ebooks/10538', 'en', 669), +(49627, 'The Ancient Phonetic Alphabet of Yucatan', 'Brinton, Daniel G. (Daniel Garrison)', '2011-12-20', 10, 'https://www.gutenberg.org/ebooks/38352', 'en', 4956), +(49628, 'Voyage autour de ma chambre', 'Maistre, Xavier de', '2012-07-15', 37, 'https://www.gutenberg.org/ebooks/40248', 'fr', 642), +(49629, 'La Política de los Estados Unidos en el Continente Americano', 'Cárdenas y Echarte, Raúl de', '2014-04-27', 18, 'https://www.gutenberg.org/ebooks/45508', 'es', 3119), +(49630, 'Turner\'s Golden Visions', 'Hind, C. Lewis (Charles Lewis)', '2018-04-05', 13, 'https://www.gutenberg.org/ebooks/56923', 'en', 2038), +(49631, 'Money: Thoughts for God\'s Stewards', 'Murray, Andrew', '2013-02-03', 46, 'https://www.gutenberg.org/ebooks/41994', 'en', 16933), +(49632, 'The Ramrodders: A Novel', 'Day, Holman', '2005-03-07', 16, 'https://www.gutenberg.org/ebooks/15278', 'en', 1238), +(49633, 'Escape Mechanism', 'Fritch, Charles E.', '2019-03-30', 36, 'https://www.gutenberg.org/ebooks/59157', 'en', 2169), +(49634, 'The Poems of Madison Cawein, Volume 5 (of 5)\r\nPoems of meditation and of forest and field', 'Cawein, Madison Julius', '2018-10-12', 14, 'https://www.gutenberg.org/ebooks/58085', 'en', 178), +(49635, 'Voltaire', 'Morley, John', '2012-09-23', 19, 'https://www.gutenberg.org/ebooks/40846', 'en', 13717), +(49636, 'Kleine Dichtungen', 'Walser, Robert', '2011-08-19', 42, 'https://www.gutenberg.org/ebooks/37128', 'de', 7092), +(49637, 'Adventures in the Far West', 'Kingston, William Henry Giles', '2007-06-19', 10, 'https://www.gutenberg.org/ebooks/21871', 'en', 1120), +(49638, 'Manhãs de Cascaes', 'Pimentel, Alberto', '2010-08-30', 12, 'https://www.gutenberg.org/ebooks/33588', 'pt', 410), +(49639, 'A Hero of Romance', 'Marsh, Richard', '2011-11-28', 11, 'https://www.gutenberg.org/ebooks/38160', 'en', 95), +(49640, 'Un été dans le Sahara', 'Fromentin, Eugène', '2011-11-02', 14, 'https://www.gutenberg.org/ebooks/37914', 'fr', 9911), +(49641, 'The Heart of Mid-Lothian, Complete', 'Scott, Walter', '2004-08-21', 94, 'https://www.gutenberg.org/ebooks/6944', 'en', 16934), +(49642, 'Frank Reade Jr. and His Engine of the Clouds\r\nOr, Chased Around the World in the Sky', 'Senarens, Luis', '2017-05-02', 11, 'https://www.gutenberg.org/ebooks/54648', 'en', 50), +(49643, 'Tintinnalogia, or, the Art of Ringing\r\nWherein is laid down plain and easie Rules for Ringing all sorts of Plain Changes', 'Stedman, Fabian', '2006-06-12', 30, 'https://www.gutenberg.org/ebooks/18567', 'en', 14609), +(49644, 'The Treasure of the Humble', 'Maeterlinck, Maurice', '2015-02-09', 30, 'https://www.gutenberg.org/ebooks/48217', 'en', 4632), +(49645, 'The Eight Strokes of the Clock', 'Leblanc, Maurice', '2005-04-01', 119, 'https://www.gutenberg.org/ebooks/7896', 'en', 4343), +(49646, 'Romeo and Juliet', 'Shakespeare, William', '2008-08-01', 22, 'https://www.gutenberg.org/ebooks/26268', 'en', 10656), +(49647, 'Pierre and His People: Tales of the Far North. Volume 5.', 'Parker, Gilbert', '2004-07-01', 12, 'https://www.gutenberg.org/ebooks/6178', 'en', 1887), +(49648, 'Monday or Tuesday', 'Woolf, Virginia', '2009-06-25', 221, 'https://www.gutenberg.org/ebooks/29220', 'en', 432), +(49649, 'Theory of the Earth\r\nWith Proofs and Illustrations, Volume 1 (of 4)', 'Hutton, James', '2004-07-09', 121, 'https://www.gutenberg.org/ebooks/12861', 'en', 15641), +(49650, 'Patience Sparhawk and Her Times: A Novel', 'Atherton, Gertrude Franklin Horn', '2016-09-08', 10, 'https://www.gutenberg.org/ebooks/53009', 'en', 50), +(49651, 'An essay on the American contribution and the democratic idea', 'Churchill, Winston', '2004-10-19', 14, 'https://www.gutenberg.org/ebooks/5399', 'en', 699), +(49652, 'First Oration of Cicero Against Catiline\nwith Notices, Notes and Complete Vocabulary', 'Cicero, Marcus Tullius', '2008-03-31', 59, 'https://www.gutenberg.org/ebooks/24967', 'la', 16935), +(49653, 'Portugal e Ilhas Adjacentes: Exposição Ethnografica Portugueza', 'Coelho, Adolfo', '2007-05-13', 44, 'https://www.gutenberg.org/ebooks/21429', 'pt', 16936), +(49654, 'Tillie', 'Phillips, Rog', '2010-06-13', 26, 'https://www.gutenberg.org/ebooks/32802', 'en', 616), +(49655, 'Secret History; or, the Horrors of St. Domingo\r\nIn a Series of Letters, Written by a Lady at Cape Francois, to Colonel Burr, Late Vice-President of the United States, Principally During the Command of General Rochambeu', 'Sansay, Leonora', '2019-05-18', 52, 'https://www.gutenberg.org/ebooks/59533', 'en', 16937), +(49656, 'Light Come, Light Go: Gambling—Gamesters—Wagers—The Turf', 'Nevill, Ralph', '2016-12-30', 5, 'https://www.gutenberg.org/ebooks/53835', 'en', 16938), +(49657, 'Robin\'s Rambles', 'Byron, May', '2012-01-06', 8, 'https://www.gutenberg.org/ebooks/38504', 'en', 7409), +(49658, 'The Black Death, and The Dancing Mania', 'Hecker, J. F. C. (Justus Friedrich Carl)', '1999-05-01', 55, 'https://www.gutenberg.org/ebooks/1739', 'en', 16939), +(49659, 'The Boy Scouts Through the Big Timber; Or, The Search for the Lost Tenderfoot', 'Carter, Herbert, active 1909-1917', '2014-02-12', 6, 'https://www.gutenberg.org/ebooks/44882', 'en', 1002), +(49660, 'Nederlandsche Doopnamen: Naar Oorsprong en Gebruik', 'Graaf, Jacobus Joannes', '2008-04-18', 14, 'https://www.gutenberg.org/ebooks/25089', 'nl', 14987), +(49661, 'Ancient Society\r\nOr, Researches in the Lines of Human Progress from Savagery, through Barbarism to Civilization', 'Morgan, Lewis Henry', '2014-06-13', 103, 'https://www.gutenberg.org/ebooks/45950', 'en', 5720), +(49662, 'Ghost Stories of an Antiquary', 'James, M. R. (Montague Rhodes)', '2005-07-01', 459, 'https://www.gutenberg.org/ebooks/8486', 'en', 2354), +(49663, 'Kenilworth I-II', 'Scott, Walter', '2013-03-17', 6, 'https://www.gutenberg.org/ebooks/42349', 'fi', 98), +(49664, 'Notes on Nursing: What It Is, and What It Is Not', 'Nightingale, Florence', '2004-05-01', 103, 'https://www.gutenberg.org/ebooks/12439', 'en', 5865), +(49665, 'Book of Nations, for Children', 'Unknown', '2019-07-30', 668, 'https://www.gutenberg.org/ebooks/60019', 'en', 7816), +(49666, '\"Contemptible\", by \"Casualty\"', NULL, '2006-04-02', 9, 'https://www.gutenberg.org/ebooks/18103', 'en', 449), +(49667, 'Elementary Composition', 'Fisher, Dorothy Canfield', '2015-04-09', 20, 'https://www.gutenberg.org/ebooks/48673', 'en', 664), +(49668, 'Charles Lamb', 'Jerrold, Walter', '2006-03-13', 28, 'https://www.gutenberg.org/ebooks/17977', 'en', 4842), +(49669, 'The Baptist Magazine, Vol. 27, January, 1835', 'Various', '2009-12-27', 26, 'https://www.gutenberg.org/ebooks/30769', 'en', 1768), +(49670, 'His Last Bow', 'Doyle, Arthur Conan', '2005-12-01', 41, 'https://www.gutenberg.org/ebooks/9554', 'en', 3511), +(49671, 'Austin and His Friends', 'Balfour, Frederic Henry', '2005-06-21', 23, 'https://www.gutenberg.org/ebooks/16099', 'en', 273), +(49672, 'Memoirs of Madame la Marquise de Montespan — Volume 6', 'Montespan, Madame de', '2004-12-02', 10, 'https://www.gutenberg.org/ebooks/3852', 'en', 1870), +(49673, 'The Island Mystery', 'Birmingham, George A.', '2009-08-09', 23, 'https://www.gutenberg.org/ebooks/29644', 'en', 579), +(49674, 'The White Doe\nThe Fate of Virginia Dare', 'Cotten, Sallie Southall', '2009-05-13', 16, 'https://www.gutenberg.org/ebooks/28796', 'en', 16940), +(49675, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 30: Old Age and Death', 'Casanova, Giacomo', '2004-12-12', 25, 'https://www.gutenberg.org/ebooks/2980', 'en', 4391), +(49676, 'The International Auxiliary Language Esperanto: Grammar & Commentary', 'Cox, George', '2011-04-10', 35, 'https://www.gutenberg.org/ebooks/35815', 'en', 12805), +(49677, 'A Mad Love', 'Brame, Charlotte M.', '2010-03-03', 20, 'https://www.gutenberg.org/ebooks/31489', 'en', 109), +(49678, 'Briefe von Goethe an Lavater aus den Jahren 1774 bis 1783', 'Goethe, Johann Wolfgang von', '2015-08-04', 17, 'https://www.gutenberg.org/ebooks/49593', 'de', 16941), +(49679, 'Sonnets', 'Shakespeare, William', '2007-12-01', 6, 'https://www.gutenberg.org/ebooks/23970', 'en', 6689), +(49680, 'Putnam\'s Phrase Book\r\nAn Aid to Social Letter Writing and to Ready and Effective Conversation, with Over 100 Model Social Letters and 6000 of the World\'s Best English Phrases', 'Carr, Edwin Hamlin', '2015-03-08', 20, 'https://www.gutenberg.org/ebooks/48441', 'en', 16942), +(49681, 'Alice, or the Mysteries — Book 04', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 75, 'https://www.gutenberg.org/ebooks/9766', 'en', 137), +(49682, 'De Graecorum Medicis Publicis', 'Pohl, Rudolf', '2006-05-06', 4, 'https://www.gutenberg.org/ebooks/18331', 'la', 4010), +(49683, 'Half-Past Bedtime', 'Bashford, H. H. (Henry Howarth), Sir', '2011-01-21', 34, 'https://www.gutenberg.org/ebooks/35029', 'en', 2203), +(49684, 'Little Ann, and Other Poems', 'Taylor, Ann', '2013-06-15', 32, 'https://www.gutenberg.org/ebooks/42947', 'en', 859), +(49685, 'Lettres de Mmes. de Villars, de Coulanges et de La Fayette, de Ninon de L\'Enclos et de Mademoiselle Aïssé\r\naccompagnées de notices bibliographiques, de notes explicatives par Louis-Simon Auger', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '2009-07-21', 39, 'https://www.gutenberg.org/ebooks/29476', 'fr', 16943), +(49686, 'An Old Coachman\'s Chatter, with Some Practical Remarks on Driving', 'Corbett, Edward', '2013-10-05', 8, 'https://www.gutenberg.org/ebooks/43895', 'en', 5362), +(49687, 'Quer Durch Borneo\r\nErgebnisse seiner Reisen in den Jahren 1894, 1896-97 und 1898-1900; Erster Teil', 'Nieuwenhuis, Anton Willem', '2005-12-23', 22, 'https://www.gutenberg.org/ebooks/17379', 'de', 16944), +(49688, 'Eversti Ansamaa: Quasi una fantasia', 'Ervast, Pekka', '2014-11-20', 8, 'https://www.gutenberg.org/ebooks/47409', 'fi', 175), +(49689, 'A Roadside Harp: A Book of Verses', 'Guiney, Louise Imogen', '2017-06-01', 8, 'https://www.gutenberg.org/ebooks/54822', 'en', 350), +(49690, 'Vergil: A Biography', 'Frank, Tenney', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/10960', 'en', 16945), +(49691, 'Israelin tyttäret', 'Haahti, Hilja', '2019-06-07', 7, 'https://www.gutenberg.org/ebooks/59701', 'fi', 175), +(49692, 'Agnes Bernauer', 'Hebbel, Friedrich', '2003-05-01', 20, 'https://www.gutenberg.org/ebooks/4079', 'de', 16946), +(49693, 'Maximilian in Mexico: A Woman\'s Reminiscences of the French Intervention 1862-1867', 'Stevenson, Sara Yorke', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5997', 'en', 16947), +(49694, 'La Niania', 'Gréville, Henry', '2008-01-20', 7, 'https://www.gutenberg.org/ebooks/24369', 'fr', 61), +(49695, 'Cours familier de Littérature - Volume 11', 'Lamartine, Alphonse de', '2012-02-02', 23, 'https://www.gutenberg.org/ebooks/38736', 'fr', 920), +(49696, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1586b', 'Motley, John Lothrop', '2004-01-01', 8, 'https://www.gutenberg.org/ebooks/4845', 'en', 3372), +(49697, 'Ruize-rijmen', 'Charivarius', '2018-03-15', 6, 'https://www.gutenberg.org/ebooks/56749', 'nl', 2651), +(49698, 'Marion Darche: A Story Without Comment', 'Crawford, F. Marion (Francis Marion)', '2010-10-14', 5, 'https://www.gutenberg.org/ebooks/33924', 'en', 434), +(49699, 'Una sfida al Polo', 'Salgari, Emilio', '2018-12-05', 63, 'https://www.gutenberg.org/ebooks/58415', 'it', 2144), +(49700, 'Rollo\'s Experiments', 'Abbott, Jacob', '2008-04-05', 49, 'https://www.gutenberg.org/ebooks/24993', 'en', 37), +(49701, 'Het Esperanto in Twintig Lessen', 'Blok, A.', '2008-06-19', 30, 'https://www.gutenberg.org/ebooks/25841', 'nl', 4976), +(49702, 'Tales of Our Coast', NULL, '2014-03-24', 36, 'https://www.gutenberg.org/ebooks/45198', 'en', 179), +(49703, 'Just Around the Corner: Romance en casserole', 'Hurst, Fannie', '2010-07-08', 18, 'https://www.gutenberg.org/ebooks/33118', 'en', 179), +(49704, 'The Cruise of the Midge (Vol. 2 of 2)', 'Scott, Michael', '2014-02-12', 18, 'https://www.gutenberg.org/ebooks/44876', 'en', 3039), +(49705, 'The Delights of Wisdom Pertaining to Conjugial Love\r\nTo Which is Added The Pleasures of Insanity Pertaining To Scortatory Love', 'Swedenborg, Emanuel', '2004-02-01', 51, 'https://www.gutenberg.org/ebooks/11248', 'en', 16948), +(49706, 'The Progress of Invention in the Nineteenth Century.', 'Byrn, Edward W. (Edward Wright)', '2012-12-02', 73, 'https://www.gutenberg.org/ebooks/41538', 'en', 15904), +(49707, 'An Anglo-American Alliance: A Serio-Comic Romance and Forecast of the Future', 'Casparian, Gregory', '2016-08-28', 22, 'https://www.gutenberg.org/ebooks/52913', 'en', 14540), +(49708, 'The Vanity Girl', 'MacKenzie, Compton', '2012-04-10', 24, 'https://www.gutenberg.org/ebooks/39422', 'en', 5040), +(49709, 'Life on the Mississippi, Part 2.', 'Twain, Mark', '2004-07-09', 7, 'https://www.gutenberg.org/ebooks/8472', 'en', 261), +(49710, 'L\'alouette du casque; ou, Victoria, la mère des camps', 'Sue, Eugène', '2005-10-10', 8, 'https://www.gutenberg.org/ebooks/16851', 'fr', 61), +(49711, 'Brief Diversions: Being Tales, Travesties and Epigrams', 'Priestley, J. B. (John Boynton)', '2015-08-21', 44, 'https://www.gutenberg.org/ebooks/49755', 'en', 2907), +(49712, 'A Sweet Little Maid', 'Blanchard, Amy Ella', '2006-08-10', 26, 'https://www.gutenberg.org/ebooks/19025', 'en', 62), +(49713, 'L\'Illustration, No. 0074, 25 Juillet 1844', 'Various', '2015-04-12', 6, 'https://www.gutenberg.org/ebooks/48687', 'fr', 150), +(49714, 'The Works of Edgar Allan Poe — Volume 2', 'Poe, Edgar Allan', '2000-04-01', 2338, 'https://www.gutenberg.org/ebooks/2148', 'en', 359), +(49715, 'Manon Lescaut', 'Prévost, abbé', '2006-03-14', 54, 'https://www.gutenberg.org/ebooks/17983', 'fr', 109), +(49716, 'Tales of the Caliph', 'Crellin, H. N. (Horatio Nelson)', '2007-08-06', 9, 'https://www.gutenberg.org/ebooks/22258', 'en', 16949), +(49717, 'Milton\'s Comus', 'Milton, John', '2006-11-15', 41, 'https://www.gutenberg.org/ebooks/19819', 'en', 8), +(49718, 'Life in the Clearings', 'Moodie, Susanna', '2009-05-01', 7, 'https://www.gutenberg.org/ebooks/28762', 'en', 16950), +(49719, 'The Memoirs of Jacques Casanova de Seingalt, 1725-1798. Volume 24: London to Berlin', 'Casanova, Giacomo', '2004-12-12', 16, 'https://www.gutenberg.org/ebooks/2974', 'en', 4164), +(49720, 'Snug Harbor; or, The Champlain Mechanics', 'Optic, Oliver', '2015-12-12', 7, 'https://www.gutenberg.org/ebooks/50678', 'en', 16951), +(49721, 'The History of England in Three Volumes, Vol.II.\r\nContinued from the Reign of William and Mary to the Death of George II.', 'Smollett, T. (Tobias)', '2006-09-08', 44, 'https://www.gutenberg.org/ebooks/19217', 'en', 641), +(49722, 'Syystähden alla: Kulkijan kertomus', 'Hamsun, Knut', '2017-07-17', 7, 'https://www.gutenberg.org/ebooks/55138', 'fi', 7), +(49723, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 321, July 5, 1828', 'Various', '2005-08-01', 18, 'https://www.gutenberg.org/ebooks/8640', 'en', 133), +(49724, 'The First Epistle of Paul the Apostle to the Corinthians', NULL, '2007-10-01', 7, 'https://www.gutenberg.org/ebooks/22856', 'en', 8741), +(49725, 'An account of the plague which raged at Moscow, in 1771', 'Mertens, Charles de', '2015-08-01', 12, 'https://www.gutenberg.org/ebooks/49567', 'en', 16952), +(49726, 'Esperanto Self-Taught with Phonetic Pronunciation', 'Mann, William W.', '2007-12-23', 57, 'https://www.gutenberg.org/ebooks/23984', 'en', 16953), +(49727, 'Redemption and two other plays', 'Tolstoy, Leo, graf', '2006-01-01', 43, 'https://www.gutenberg.org/ebooks/9792', 'en', 4249), +(49728, 'Change in the Village', 'Sturt, George', '2008-12-13', 17, 'https://www.gutenberg.org/ebooks/27518', 'en', 16954), +(49729, 'Flatland: A Romance of Many Dimensions (Illustrated)', 'Abbott, Edwin Abbott', '1995-01-01', 1158, 'https://www.gutenberg.org/ebooks/201', 'en', 9882), +(49730, 'Mystery and Confidence: A Tale. Vol. 3', 'Pinchard, Elizabeth Sibthorpe', '2011-01-13', 2, 'https://www.gutenberg.org/ebooks/34933', 'en', 61), +(49731, 'Critical, Historical, and Miscellaneous Essays; Vol. 4\r\nWith a Memoir and Index', 'Macaulay, Thomas Babington Macaulay, Baron', '2017-11-06', 14, 'https://www.gutenberg.org/ebooks/55904', 'en', 1694), +(49732, 'Zicci: A Tale — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-22', 31, 'https://www.gutenberg.org/ebooks/7608', 'en', 109), +(49733, 'The Mentor: Shakespeare\'s Country, Vol. 4, Num. 8, Serial No. 108, June 1, 1916', 'Winter, William', '2016-03-29', 9, 'https://www.gutenberg.org/ebooks/51598', 'en', 16955), +(49734, 'Benjamin Franklin', 'More, Paul Elmer', '2009-07-22', 19, 'https://www.gutenberg.org/ebooks/29482', 'en', 854), +(49735, 'Granos de oro: Pensamientos Seleccionados en las Obras de José Martí', 'Martí, José', '2013-10-01', 35, 'https://www.gutenberg.org/ebooks/43861', 'es', 16956), +(49736, 'Song in a Minor Key', 'Moore, C. L. (Catherine Lucile)', '2009-04-10', 79, 'https://www.gutenberg.org/ebooks/28550', 'en', 179), +(49737, 'The Good Resolution', NULL, '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/10994', 'en', 4099), +(49738, 'From the Earth to the Moon, Direct in Ninety-Seven Hours and Twenty Minutes: and a Trip Round It', 'Verne, Jules', '2013-11-24', 107, 'https://www.gutenberg.org/ebooks/44278', 'en', 16957), +(49739, 'Bob Steele in Strange Waters; or, Aboard a Strange Craft', 'Grayson, Donald', '2019-01-06', 4, 'https://www.gutenberg.org/ebooks/58627', 'en', 5237), +(49740, 'The Christmas Dinner', 'Knapp, Shepherd', '2004-12-29', 26, 'https://www.gutenberg.org/ebooks/14508', 'en', 3459), +(49741, 'U.S. Copyright Renewals, 1972 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11846', 'en', 4170), +(49742, 'Tales from the Old French', NULL, '2011-07-08', 20, 'https://www.gutenberg.org/ebooks/36658', 'en', 5827), +(49743, 'Mr. Bingle', 'McCutcheon, George Barr', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/5963', 'en', 585), +(49744, 'Riding for Ladies', 'Kerr, W. A. (William Alexander)', '2012-05-04', 20, 'https://www.gutenberg.org/ebooks/39610', 'en', 2240), +(49745, 'A Dream within a Dream', 'Poe, Edgar Allan', '2009-05-01', 22, 'https://www.gutenberg.org/ebooks/28908', 'en', 8), +(49746, 'Short Studies in Ethics: An Elementary Text-Book for Schools', 'Miller, John Ormsby', '2013-08-11', 11, 'https://www.gutenberg.org/ebooks/43439', 'en', 680), +(49747, 'The story of my struggles: the memoirs of Arminius Vambéry, Volume 1', 'Vámbéry, Ármin', '2015-12-31', 6, 'https://www.gutenberg.org/ebooks/50812', 'en', 14826), +(49748, 'The Gutenberg Webster\'s Unabridged Dictionary: Section M, N, and O', 'Webster, Noah', '1996-09-01', 95, 'https://www.gutenberg.org/ebooks/665', 'en', 1481), +(49749, 'Christianity: Its Evidences, Its Origin, Its Morality, Its History', 'Besant, Annie', '2004-09-01', 59, 'https://www.gutenberg.org/ebooks/13349', 'en', 1759), +(49750, 'Parasiten der Honigbiene\nund die durch dieselben bedingten Krankheiten dieses Insects.', 'Assmuss, Eduard Philibert', '2006-10-30', 22, 'https://www.gutenberg.org/ebooks/19673', 'de', 16958), +(49751, 'A Rational Wages System\nSome Notes on the Method of Paying the Worker a Reward for Efficiency in Addition to Wages', 'Atkinson, Henry', '2014-09-27', 14, 'https://www.gutenberg.org/ebooks/46977', 'en', 16959), +(49752, 'Fundamenta Krestomatio', 'Zamenhof, L. L. (Ludwik Lejzer)', '2005-06-01', 65, 'https://www.gutenberg.org/ebooks/8224', 'eo', 2282), +(49753, 'Four Ghost Stories', 'Molesworth, Mrs.', '2010-01-19', 28, 'https://www.gutenberg.org/ebooks/31019', 'en', 1373), +(49754, 'The First Printed Translations into English of the Great Foreign Classics\nA Supplement to Text-Books of English Literature', 'Harris, William James', '2015-06-01', 9, 'https://www.gutenberg.org/ebooks/49103', 'en', 16960), +(49755, 'The Nursery, June 1877, Vol. XXI. No. 6\nA Monthly Magazine for Youngest Readers', 'Various', '2009-02-20', 5, 'https://www.gutenberg.org/ebooks/28134', 'en', 4641), +(49756, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 696\nApril 28, 1877.', 'Various', '2014-10-12', 4, 'https://www.gutenberg.org/ebooks/47099', 'en', 18), +(49757, 'Musa Velha', 'Palha, Francisco', '2009-01-31', 14, 'https://www.gutenberg.org/ebooks/27940', 'pt', 8), +(49758, 'Chasing an Iron Horse\nOr, A Boy\'s Adventures in the Civil War', 'Robins, Edward', '2008-10-12', 29, 'https://www.gutenberg.org/ebooks/26892', 'en', 403), +(49759, 'Portia; Or, By Passions Rocked', 'Duchess', '2010-03-30', 18, 'https://www.gutenberg.org/ebooks/31825', 'en', 61), +(49760, 'Diaries of Sir Moses and Lady Montefiore, Volume 2 (of 2)\r\nComprising Their Life and Work as Recorded in Their Diaries, from 1812 to 1883', 'Montefiore, Moses, Sir', '2016-08-11', 9, 'https://www.gutenberg.org/ebooks/52779', 'en', 16961), +(49761, 'Index of the Project Gutenberg Works of Bertrand Russell', 'Russell, Bertrand', '2019-04-29', 67, 'https://www.gutenberg.org/ebooks/59391', 'en', 198), +(49762, 'The Korea Review, Vol. 5 No. 5, May 1905', 'Various', '2018-11-06', 11, 'https://www.gutenberg.org/ebooks/58243', 'en', 16962), +(49763, 'The Lovely Lady', 'Austin, Mary Hunter', '2007-01-14', 38, 'https://www.gutenberg.org/ebooks/20359', 'en', 61), +(49764, 'Baron Bruno; Or, The Unbelieving Philosopher, and Other Fairy Stories', 'Morgan, Louisa', '2012-03-26', 24, 'https://www.gutenberg.org/ebooks/39274', 'en', 388), +(49765, 'Mon amie Nane', 'Toulet, Paul Jean', '2005-05-23', 8, 'https://www.gutenberg.org/ebooks/15882', 'fr', 61), +(49766, 'Kirottua työtä: Kuvaus Savon kansan elämästä', 'Kauppis-Heikki', '2005-02-07', 13, 'https://www.gutenberg.org/ebooks/14950', 'fi', 41), +(49767, 'Travels in Arabia', 'Taylor, Bayard', '2013-02-01', 18, 'https://www.gutenberg.org/ebooks/41960', 'en', 5489), +(49768, 'Martin Luther', 'Koppenhaver, Carl E.', '2016-11-11', 40, 'https://www.gutenberg.org/ebooks/53499', 'en', 1073), +(49769, 'A Letter on Suspended Animation\ncontaining experiments shewing that it may be safely employed during operations on animals', 'Hickman, Henry Hill', '2018-10-10', 5, 'https://www.gutenberg.org/ebooks/58071', 'en', 16963), +(49770, 'Achtzehn Töchter: Eine Frauen-Novelle', 'Schefer, Leopold', '2018-08-29', 9, 'https://www.gutenberg.org/ebooks/57805', 'de', 138), +(49771, 'La Vendée', 'Trollope, Anthony', '2004-05-01', 39, 'https://www.gutenberg.org/ebooks/5709', 'en', 16964), +(49772, 'Polly and Eleanor', 'Roy, Lillian Elizabeth', '2008-05-11', 25, 'https://www.gutenberg.org/ebooks/25419', 'en', 62), +(49773, 'Conscript 2989: Experiences of a Drafted Man', 'Crump, Irving', '2011-07-24', 19, 'https://www.gutenberg.org/ebooks/36832', 'en', 335), +(49774, 'The Ruinous Face', 'Hewlett, Maurice', '2007-06-21', 13, 'https://www.gutenberg.org/ebooks/21885', 'en', 16965), +(49775, 'Kartanoita kalliolla: Valikoima kertoelmia', 'Frommel, Emil', '2012-03-04', 5, 'https://www.gutenberg.org/ebooks/39046', 'fi', 179), +(49776, 'An Inquiry Into the Nature and Causes of the Wealth of Nations', 'Garnier, M. (Germain)', '2011-12-03', 150, 'https://www.gutenberg.org/ebooks/38194', 'en', 1745), +(49777, 'Een Broertje van den Beer', 'Long, William J. (William Joseph)', '2007-04-01', 10, 'https://www.gutenberg.org/ebooks/20957', 'nl', 2560), +(49778, 'Prince Rupert, the Buccaneer', 'Hyne, Charles John Cutcliffe Wright', '2018-04-24', 15, 'https://www.gutenberg.org/ebooks/57039', 'en', 6161), +(49779, 'The Life of George Washington, Vol. 3\r\nCommander in Chief of the American Forces During the War\r\nwhich Established the Independence of his Country and First\r\nPresident of the United States', 'Marshall, John', '2006-06-15', 44, 'https://www.gutenberg.org/ebooks/18593', 'en', 7558), +(49780, 'The Price She Paid', 'Phillips, David Graham', '1996-03-01', 26, 'https://www.gutenberg.org/ebooks/457', 'en', 378), +(49781, 'The Bible, King James version, Book 16: Nehemiah', 'Anonymous', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/8016', 'en', 7538), +(49782, 'The Young Physician', 'Young, Francis Brett', '2015-06-29', 12, 'https://www.gutenberg.org/ebooks/49331', 'en', 16966), +(49783, 'My Friend the Chauffeur', 'Williamson, A. M. (Alice Muriel)', '2006-10-02', 39, 'https://www.gutenberg.org/ebooks/19441', 'en', 533), +(49784, 'The Sword of Antietam: A Story of the Nation\'s Crisis', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-04-01', 47, 'https://www.gutenberg.org/ebooks/7862', 'en', 491), +(49785, 'Le vicomte de Bragelonne, Tome I.', 'Dumas, Alexandre', '2004-11-04', 52, 'https://www.gutenberg.org/ebooks/13947', 'fr', 1127), +(49786, 'A vörös regina: regény', 'Abonyi, Árpád', '2010-12-27', 17, 'https://www.gutenberg.org/ebooks/34759', 'hu', 61), +(49787, 'The Christmas Fairy, and Other Stories', 'Crompton, Frances E.', '2009-03-11', 20, 'https://www.gutenberg.org/ebooks/28306', 'en', 388), +(49788, 'Notes and Queries, Number 20, March 16, 1850', 'Various', '2005-08-01', 18, 'https://www.gutenberg.org/ebooks/16409', 'en', 105), +(49789, 'Capt. W. F. Drannan, Chief of Scouts, As Pilot to Emigrant and Government Trains, Across the Plains of the Wild West of Fifty Years Ago', 'Drannan, William F.', '2004-07-12', 13, 'https://www.gutenberg.org/ebooks/12895', 'en', 930), +(49790, 'Human Origins', 'Laing, S. (Samuel)', '2014-07-23', 22, 'https://www.gutenberg.org/ebooks/46379', 'en', 1368), +(49791, 'Victorian Worthies: Sixteen Biographies', 'Blore, George Henry', '2006-12-26', 20, 'https://www.gutenberg.org/ebooks/20196', 'en', 2816), +(49792, 'Old Europe\'s Suicide; or, The Building of a Pyramid of Errors\r\nAn Account of Certain Events in Europe During the Period 1912–1919', 'Thomson, Christopher Birdwood, Baron', '2016-11-06', 10, 'https://www.gutenberg.org/ebooks/53464', 'en', 335), +(49793, 'Prairie Farmer, Vol. 56: No. 12, March 22, 1884\nA Weekly Journal for the Farm, Orchard and Fireside', 'Various', '2012-02-22', 19, 'https://www.gutenberg.org/ebooks/38955', 'en', 16967), +(49794, 'Charles Dickens\' Children Stories', 'Dickens, Charles', '2011-08-18', 54, 'https://www.gutenberg.org/ebooks/37121', 'en', 651), +(49795, 'Married Life; Its Shadows and Sunshine', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/4626', 'en', 705), +(49796, 'L\'Illustration, No. 2503, 14 février 1891', 'Various', '2014-04-26', 3, 'https://www.gutenberg.org/ebooks/45501', 'fr', 150), +(49797, 'Mammalia', 'Beddard, Frank E. (Frank Evers)', '2012-06-01', 19, 'https://www.gutenberg.org/ebooks/39887', 'en', 8505), +(49798, 'Traditions of Lancashire, Volume 1', 'Roby, John', '2005-03-07', 27, 'https://www.gutenberg.org/ebooks/15271', 'en', 16968), +(49799, 'The Willoughby Captains', 'Reed, Talbot Baines', '2007-04-12', 32, 'https://www.gutenberg.org/ebooks/21044', 'en', 7570), +(49800, 'A Lively Bit of the Front: A Tale of the New Zealand Rifles on the Western Front', 'Westerman, Percy F. (Percy Francis)', '2012-06-24', 23, 'https://www.gutenberg.org/ebooks/40073', 'en', 16969), +(49801, 'The Heath Hover Mystery', 'Mitford, Bertram', '2011-11-29', 15, 'https://www.gutenberg.org/ebooks/38169', 'en', 167), +(49802, 'Vinte Annos de Vida Litteraria', 'Pimentel, Alberto', '2010-08-30', 12, 'https://www.gutenberg.org/ebooks/33581', 'pt', 16970), +(49803, 'Chronicles of Avonlea', 'Montgomery, L. M. (Lucy Maud)', '1998-06-01', 286, 'https://www.gutenberg.org/ebooks/1354', 'en', 262), +(49804, 'Los cuatro jinetes del apocalipsis', 'Blasco Ibáñez, Vicente', '2008-02-06', 83, 'https://www.gutenberg.org/ebooks/24536', 'es', 2564); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(49805, 'The History of Rome, Book III\r\nFrom the Union of Italy to the Subjugation of Carthage and the Greek States', 'Mommsen, Theodor', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/10703', 'en', 6793), +(49806, 'Kuvaelmia itä-suomalaisten vanhoista tavoista 6: Naimistavat', 'Häyhä, Johannes', '2017-12-03', 35, 'https://www.gutenberg.org/ebooks/56116', 'fi', 9544), +(49807, 'Molly Brown\'s Sophomore Days', 'Speed, Nell', '2010-05-20', 17, 'https://www.gutenberg.org/ebooks/32453', 'en', 3529), +(49808, 'Reminiscences of a Raconteur, Between the \'40s and the \'20s', 'Ham, George H. (George Henry)', '2019-07-21', 784, 'https://www.gutenberg.org/ebooks/59962', 'en', 16971), +(49809, 'De Noordwestelijke Doorvaart\r\nDe Aarde en haar Volken, 1909', 'Amundsen, Roald', '2007-06-20', 21, 'https://www.gutenberg.org/ebooks/21878', 'nl', 16972), +(49810, 'The Works of Christopher Marlowe, Vol. 2 (of 3)', 'Marlowe, Christopher', '2013-05-16', 32, 'https://www.gutenberg.org/ebooks/42724', 'en', 1790), +(49811, 'The Register', 'Howells, William Dean', '2002-09-01', 14, 'https://www.gutenberg.org/ebooks/3403', 'en', 907), +(49812, 'Die Frau von dreißig Jahren', 'Balzac, Honoré de', '2008-08-11', 50, 'https://www.gutenberg.org/ebooks/26261', 'de', 675), +(49813, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 571 (Supplementary Number)', 'Various', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12054', 'en', 133), +(49814, 'Tube, Train, Tram, and Car; or, Up-to-date locomotion', 'Beavan, Arthur H. (Arthur Henry)', '2017-10-22', 11, 'https://www.gutenberg.org/ebooks/55793', 'en', 16973), +(49815, 'The Charm of Gardens', 'Calthrop, Dion Clayton', '2017-05-01', 18, 'https://www.gutenberg.org/ebooks/54641', 'en', 8600), +(49816, 'Punch, or the London Charivari, Volume 100, March 14, 1891', 'Various', '2004-08-15', 5, 'https://www.gutenberg.org/ebooks/13186', 'en', 134), +(49817, 'Psichopath', 'Garrett, Randall', '2009-10-20', 55, 'https://www.gutenberg.org/ebooks/30304', 'en', 784), +(49818, 'André', 'Dunlap, William', '2009-06-26', 13, 'https://www.gutenberg.org/ebooks/29229', 'en', 16974), +(49819, 'Herr Wenzel auf Rehberg und sein Knecht Kaspar Dinckel', 'Salten, Felix', '2016-02-29', 10, 'https://www.gutenberg.org/ebooks/51333', 'de', 6952), +(49820, 'The Story of Verona', 'Wiel, Alethea', '2014-07-23', 26, 'https://www.gutenberg.org/ebooks/46384', 'en', 16975), +(49821, 'The Harp of God: Proof Conclusive That Millions Now Living Will Never Die', 'Rutherford, J. F. (Joseph Franklin)', '2004-07-09', 23, 'https://www.gutenberg.org/ebooks/12868', 'en', 9869), +(49822, 'The Bible in Spain, Vol. 2 [of 2]\r\nOr, the Journeys, Adventures, and Imprisonments of an Englishman in an Attempt to Circulate the Scriptures in the Peninsula', 'Borrow, George', '2011-03-25', 15, 'https://www.gutenberg.org/ebooks/35676', 'en', 1514), +(49823, 'Memorials and Other Papers — Complete', 'De Quincey, Thomas', '2004-07-01', 21, 'https://www.gutenberg.org/ebooks/6171', 'en', 472), +(49824, 'Days in the Open', 'Crandall, Lathan A. (Lathan Augustus)', '2014-10-31', 9, 'https://www.gutenberg.org/ebooks/47256', 'en', 1945), +(49825, 'Sprotje heeft een dienst', 'Scharten-Antink, M. (Margo Sybranda Everdina)', '2006-01-16', 20, 'https://www.gutenberg.org/ebooks/17526', 'nl', 61), +(49826, 'A Deal in Wheat and Other Stories of the New and Old West', 'Norris, Frank', '2006-02-01', 47, 'https://www.gutenberg.org/ebooks/9905', 'en', 315), +(49827, 'Warlord of Mars', 'Burroughs, Edgar Rice', '2007-12-01', 56, 'https://www.gutenberg.org/ebooks/23713', 'en', 964), +(49828, 'This Giddy Globe', 'Herford, Oliver', '2008-07-14', 11, 'https://www.gutenberg.org/ebooks/26053', 'en', 190), +(49829, 'Von Haparanda bis San Francisco\nReise-Erinnerungen', 'Wasserzieher, Ernst', '2004-05-01', 37, 'https://www.gutenberg.org/ebooks/12266', 'de', 3386), +(49830, 'Ύμνος εις την Αθηνά', 'Palamas, Kostes', '2013-04-12', 20, 'https://www.gutenberg.org/ebooks/42516', 'el', 8746), +(49831, 'The Life and Amours of the Beautiful, Gay and Dashing Kate Percival\nThe Belle of the Delaware', 'Percival, Kate', '2009-08-28', 592, 'https://www.gutenberg.org/ebooks/29827', 'en', 5454), +(49832, 'On the Significance of Science and Art', 'Tolstoy, Leo, graf', '2003-01-01', 39, 'https://www.gutenberg.org/ebooks/3631', 'en', 8775), +(49833, 'A Short History of the Book of Common Prayer', 'Huntington, William Reed', '2009-09-30', 8, 'https://www.gutenberg.org/ebooks/30136', 'en', 16976), +(49834, 'Vanderdecken', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-04-01', 7, 'https://www.gutenberg.org/ebooks/54473', 'en', 323), +(49835, 'Memoir of Fleeming Jenkin', 'Stevenson, Robert Louis', '1996-10-01', 108, 'https://www.gutenberg.org/ebooks/698', 'en', 16977), +(49836, 'The Islets of the Channel', 'Dendy, Walter Cooper', '2015-01-03', 13, 'https://www.gutenberg.org/ebooks/47858', 'en', 16978), +(49837, 'Prof. Koch\'s Method to Cure Tuberculosis Popularly Treated', 'Birnbaum, Max', '2008-11-07', 15, 'https://www.gutenberg.org/ebooks/27181', 'en', 16979), +(49838, 'The Two Paths', 'Ruskin, John', '2005-01-01', 29, 'https://www.gutenberg.org/ebooks/7291', 'en', 787), +(49839, 'Aphorismes sur la sagesse dans la vie', 'Schopenhauer, Arthur', '2011-03-01', 37, 'https://www.gutenberg.org/ebooks/35444', 'fr', 779), +(49840, 'Nice Girl with 5 Husbands', 'Leiber, Fritz', '2016-02-01', 55, 'https://www.gutenberg.org/ebooks/51101', 'en', 2229), +(49841, 'Le Négrier, Vol. I\r\nAventures de mer', 'Corbière, Edouard', '2006-02-08', 14, 'https://www.gutenberg.org/ebooks/17714', 'fr', 324), +(49842, 'The Sleeping Beauty Picture Book', NULL, '2007-11-17', 128, 'https://www.gutenberg.org/ebooks/23521', 'en', 1007), +(49843, 'A Magnificent Fight: Marines in the Battle for Wake Island', 'Cressman, Robert', '2015-04-27', 24, 'https://www.gutenberg.org/ebooks/48810', 'en', 16980), +(49844, 'Kritik der reinen Vernunft\r\nZweite hin und wieder verbesserte Auflage (1787)', 'Kant, Immanuel', '2004-08-01', 297, 'https://www.gutenberg.org/ebooks/6343', 'de', 354), +(49845, 'William Blake, the Man', 'Gardner, Charles', '2010-12-08', 31, 'https://www.gutenberg.org/ebooks/34596', 'en', 16981), +(49846, 'Bekentenissen van een strandvonder: Het leven op mijn tropisch eiland', 'Banfield, E. J. (Edmund James)', '2014-10-06', 26, 'https://www.gutenberg.org/ebooks/47064', 'nl', 6857), +(49847, 'The Standard Galleries - Holland', 'Singleton, Esther', '2011-09-04', 11, 'https://www.gutenberg.org/ebooks/37313', 'en', 9825), +(49848, 'As We Are and As We May Be', 'Besant, Walter', '2004-11-28', 11, 'https://www.gutenberg.org/ebooks/14191', 'en', 3120), +(49849, 'How To Get the Most Out of Your Victrola', 'Victor Talking Machine Company', '2016-12-03', 10, 'https://www.gutenberg.org/ebooks/53656', 'en', 16982), +(49850, 'Heavenly Gifts', 'Kolom, Aaron L.', '2016-08-12', 21, 'https://www.gutenberg.org/ebooks/52784', 'en', 26), +(49851, 'The Works of the Right Honourable Edmund Burke, Vol. 01 (of 12)', 'Burke, Edmund', '2005-02-14', 370, 'https://www.gutenberg.org/ebooks/15043', 'en', 5325), +(49852, 'The Wars Between England and America', 'Smith, Theodore Clarke', '2007-05-02', 10, 'https://www.gutenberg.org/ebooks/21276', 'en', 7149), +(49853, 'Sandra Belloni — Volume 2', 'Meredith, George', '2003-09-01', 14, 'https://www.gutenberg.org/ebooks/4414', 'en', 137), +(49854, 'Famous Men and Great Events of the Nineteenth Century', 'Morris, Charles', '2014-05-23', 20, 'https://www.gutenberg.org/ebooks/45733', 'en', 16330), +(49855, 'On the Vice of Novel Reading.\nBeing a brief in appeal, pointing out errors of the lower tribunal.', 'Allison, Young Ewing', '2008-02-27', 17, 'https://www.gutenberg.org/ebooks/24704', 'en', 16983), +(49856, 'Beacon Lights of History, Volume 05: The Middle Ages', 'Lord, John', '2003-12-01', 33, 'https://www.gutenberg.org/ebooks/10531', 'en', 7868), +(49857, 'Hieroglyphics', 'Machen, Arthur', '2012-07-15', 73, 'https://www.gutenberg.org/ebooks/40241', 'en', 2156), +(49858, 'The Second Book of Modern Verse\r\nA Selection from the Work of Contemporaneous American Poets', NULL, '1998-01-01', 15, 'https://www.gutenberg.org/ebooks/1166', 'en', 994), +(49859, 'Gli amori', 'De Roberto, Federico', '2012-03-28', 12, 'https://www.gutenberg.org/ebooks/39289', 'it', 61), +(49860, 'Rembrandt van Rijn', 'Bell, Malcolm', '2010-06-02', 7, 'https://www.gutenberg.org/ebooks/32661', 'en', 596), +(49861, 'The Confessions of a Collector', 'Hazlitt, William Carew', '2012-11-17', 17, 'https://www.gutenberg.org/ebooks/41393', 'en', 4118), +(49862, 'The city of the discreet', 'Baroja, Pío', '2018-01-06', 10, 'https://www.gutenberg.org/ebooks/56324', 'en', 480), +(49863, 'Birds, Illustrated by Color Photography, Vol. 2, No. 4\r\nOctober, 1897', 'Various', '2009-11-27', 20, 'https://www.gutenberg.org/ebooks/30552', 'en', 1254), +(49864, 'The Voice', 'Deland, Margaret Wade Campbell', '2000-11-01', 12, 'https://www.gutenberg.org/ebooks/2387', 'en', 16984), +(49865, 'The Catholic World, Vol. 13, April to September, 1871', 'Various', '2015-03-10', 22, 'https://www.gutenberg.org/ebooks/48448', 'en', 96), +(49866, 'Leaves of Grass', 'Whitman, Walt', '2007-12-01', 29, 'https://www.gutenberg.org/ebooks/23979', 'en', 8), +(49867, 'Two Women, 1862; a Poem', 'Woolson, Constance Fenimore', '2017-01-23', 13, 'https://www.gutenberg.org/ebooks/54017', 'en', 15367), +(49868, 'The Complete Poems of Paul Laurence Dunbar', 'Dunbar, Paul Laurence', '2006-05-07', 91, 'https://www.gutenberg.org/ebooks/18338', 'en', 3135), +(49869, 'The Rubaiyat of a Huffy Husband', 'Little, Mary Wallace Bundy', '2008-08-26', 10, 'https://www.gutenberg.org/ebooks/26437', 'en', 3449), +(49870, 'Contes, anecdotes et récits Canadiens dans le langage du terroir', 'Filiatreault, Aristide', '2004-06-01', 47, 'https://www.gutenberg.org/ebooks/12602', 'fr', 16985), +(49871, 'Every Boy\'s Book: A Complete Encyclopædia of Sports and Amusements', NULL, '2013-02-23', 26, 'https://www.gutenberg.org/ebooks/42172', 'en', 2524), +(49872, 'The Crow\'s Nest', 'Day, Clarence', '2010-03-03', 32, 'https://www.gutenberg.org/ebooks/31480', 'en', 20), +(49873, 'Moments of Vision and Miscellaneous Verses', 'Hardy, Thomas', '2002-06-01', 37, 'https://www.gutenberg.org/ebooks/3255', 'en', 54), +(49874, 'Prehistoric Textile Fabrics Of The United States, Derived From Impressions On Pottery\r\nThird Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1881-82, Government Printing Office, Washington, 1884, pages 393-425', 'Holmes, William Henry', '2005-12-22', 16, 'https://www.gutenberg.org/ebooks/17370', 'en', 7999), +(49875, 'A Illustre Casa de Ramires', 'Queirós, Eça de', '2007-10-22', 38, 'https://www.gutenberg.org/ebooks/23145', 'pt', NULL), +(49876, 'England under the Tudors', 'Innes, Arthur D. (Arthur Donald)', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6727', 'en', 4746), +(49877, 'George Cruikshank\'s Omnibus', 'Cruikshank, George', '2014-11-20', 30, 'https://www.gutenberg.org/ebooks/47400', 'en', 1688), +(49878, 'Θεαίτητος', 'Plato', '2011-01-20', 19, 'https://www.gutenberg.org/ebooks/35020', 'el', 4235), +(49879, 'Byeways in Palestine', 'Finn, James', '2007-07-18', 28, 'https://www.gutenberg.org/ebooks/22097', 'en', 723), +(49880, 'Major Barbara', 'Shaw, Bernard', '2016-04-02', 17, 'https://www.gutenberg.org/ebooks/51565', 'en', 13691), +(49881, 'Notes and Queries, Number 59, December 14, 1850', 'Various', '2005-03-21', 21, 'https://www.gutenberg.org/ebooks/15427', 'en', 105), +(49882, 'Index of the Project Gutenberg Works of Jonathan Swift', 'Swift, Jonathan', '2019-06-08', 22, 'https://www.gutenberg.org/ebooks/59708', 'en', 198), +(49883, 'A Child of the Glens; or, Elsie\'s Fortunes', 'Hoare, Edward N.', '2007-05-25', 11, 'https://www.gutenberg.org/ebooks/21612', 'en', 669), +(49884, 'The Master Builder', 'Ibsen, Henrik', '2003-05-01', 93, 'https://www.gutenberg.org/ebooks/4070', 'en', 798), +(49885, 'Thomas Dekker\r\nEdited, with an introduction and notes by Ernest Rhys. Unexpurgated Edition', 'Dekker, Thomas', '2014-04-10', 57, 'https://www.gutenberg.org/ebooks/45357', 'en', 13130), +(49886, 'Histoire de la prostitution chez tous les peuples du monde depuis l\'antiquité la plus reculée jusqu\'à nos jours, tome 5/6', 'Jacob, P. L.', '2013-11-26', 8, 'https://www.gutenberg.org/ebooks/44285', 'fr', 2611), +(49887, 'Ski-running', 'Furse, Katharine', '2004-02-01', 100, 'https://www.gutenberg.org/ebooks/10969', 'en', 10751), +(49888, 'Darwin, and After Darwin, Volume 3 of 3\r\nPost-Darwinian Questions: Isolation and Physiological Selection', 'Romanes, George John', '2011-10-17', 12, 'https://www.gutenberg.org/ebooks/37777', 'en', 3049), +(49889, 'Spitzweg, Reime und Bilder', 'Spitzweg, Karl', '2016-10-08', 21, 'https://www.gutenberg.org/ebooks/53232', 'de', 16986), +(49890, 'The Woodlands Orchids, Described and Illustrated\r\nWith Stories of Orchid-Collecting', 'Boyle, Frederick', '2010-05-02', 27, 'https://www.gutenberg.org/ebooks/32205', 'en', 10548), +(49891, 'The Atlantic Monthly, Volume 06, No. 35, September, 1860\r\nA Magazine Of Literature, Art, And Politics', 'Various', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11087', 'en', 1227), +(49892, 'Még egy csokrot: Elbeszélések', 'Jókai, Mór', '2018-03-14', 5, 'https://www.gutenberg.org/ebooks/56740', 'hu', 234), +(49893, 'The Life of Napoleon Bonaparte. Vol. 1 (of 4)', 'Sloane, William Milligan', '2008-01-22', 40, 'https://www.gutenberg.org/ebooks/24360', 'en', 840), +(49894, 'Harper\'s Young People, May 2, 1882\nAn Illustrated Weekly', 'Various', '2018-08-14', 12, 'https://www.gutenberg.org/ebooks/57692', 'en', 479), +(49895, 'The Right of the People to Rule', 'Roosevelt, Theodore', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10155', 'en', 16987), +(49896, 'Soliloques sceptiques', 'La Mothe Le Vayer, François de', '2012-08-30', 16, 'https://www.gutenberg.org/ebooks/40625', 'fr', 4413), +(49897, 'The History of King Henry the Sixth, Third Part', 'Shakespeare, William', '1998-10-01', 29, 'https://www.gutenberg.org/ebooks/1502', 'en', 599), +(49898, 'Belgium', 'Morris, Joseph E. (Joseph Ernest)', '2003-07-01', 33, 'https://www.gutenberg.org/ebooks/4242', 'en', 2427), +(49899, 'The Happy Hypocrite: A Fairy Tale for Tired Men', 'Beerbohm, Max, Sir', '2011-06-22', 50, 'https://www.gutenberg.org/ebooks/36497', 'en', 16988), +(49900, 'Peter Parley\'s Own Story\r\nFrom the Personal Narrative of the Late Samuel G. Goodrich, (\"Peter Parley\")', 'Goodrich, Samuel G. (Samuel Griswold)', '2014-03-18', 27, 'https://www.gutenberg.org/ebooks/45165', 'en', 12788), +(49901, 'Punch, or the London Charivari, Volume 158, March 17, 1920', 'Various', '2005-04-13', 9, 'https://www.gutenberg.org/ebooks/15615', 'en', 134), +(49902, 'La trovatella di Milano', 'Invernizio, Carolina', '2007-05-12', 17, 'https://www.gutenberg.org/ebooks/21420', 'it', 61), +(49903, 'France and England in North America, Part IV: The Old Régime In Canada', 'Parkman, Francis', '2016-09-07', 21, 'https://www.gutenberg.org/ebooks/53000', 'en', 2163), +(49904, 'The Crisis — Volume 03', 'Churchill, Winston', '2004-10-19', 8, 'https://www.gutenberg.org/ebooks/5390', 'en', 403), +(49905, '\"Persons Unknown\"', 'Tracy, Virginia', '2011-09-27', 8, 'https://www.gutenberg.org/ebooks/37545', 'en', 4815), +(49906, 'Water Wonders Every Child Should Know\nLittle Studies of Dew, Frost, Snow, Ice, and Rain', 'Thompson, Jean M. (Jean May)', '2018-02-15', 15, 'https://www.gutenberg.org/ebooks/56572', 'en', 16989), +(49907, 'Babylonians and Assyrians, Life and Customs', 'Sayce, A. H. (Archibald Henry)', '2008-04-16', 33, 'https://www.gutenberg.org/ebooks/25080', 'en', 16990), +(49908, 'Open That Door!', 'Ingersoll, R. Sturgis (Robert Sturgis)', '2014-06-13', 5, 'https://www.gutenberg.org/ebooks/45959', 'en', 9561), +(49909, 'Eureka: A Prose Poem', 'Poe, Edgar Allan', '2010-04-18', 216, 'https://www.gutenberg.org/ebooks/32037', 'en', 5192), +(49910, 'Zeemans-Woordeboek\r\nBehelzende een verklaring der woorden, by scheepvaart en den handel in gebruik en een opgave der algemeene wetsbepalingen daartoe', 'Lennep, J. van (Jacob)', '2012-08-06', 13, 'https://www.gutenberg.org/ebooks/40417', 'nl', 16991), +(49911, 'Michael, Brother of Jerry', 'London, Jack', '1999-05-01', 44, 'https://www.gutenberg.org/ebooks/1730', 'en', 2464), +(49912, 'The Guardians', 'Cox, Irving E.', '2008-01-03', 68, 'https://www.gutenberg.org/ebooks/24152', 'en', 509), +(49913, 'Poems', 'Carr, John, Sir', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/10367', 'en', 8), +(49914, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 3', 'Various', '2017-02-23', 19, 'https://www.gutenberg.org/ebooks/54225', 'en', 653), +(49915, 'The Up Grade', 'Goodwin, Wilder', '2019-07-29', 1035, 'https://www.gutenberg.org/ebooks/60010', 'en', 48), +(49916, 'My Private Menagerie\nfrom The Works of Theophile Gautier Volume 19', 'Gautier, Théophile', '2009-12-26', 23, 'https://www.gutenberg.org/ebooks/30760', 'en', 77), +(49917, 'Wanderings of French Ed', 'René, J. Adelard (Joseph Adelard)', '2013-07-24', 5, 'https://www.gutenberg.org/ebooks/43292', 'en', 15441), +(49918, 'Sermons of Christmas Evans', 'Evans, Christmas', '2013-03-15', 16, 'https://www.gutenberg.org/ebooks/42340', 'en', 16992), +(49919, 'Hard Cash', 'Reade, Charles', '2002-02-01', 39, 'https://www.gutenberg.org/ebooks/3067', 'en', 137), +(49920, 'A Casa dos Fantasmas - Volume II\r\nEpisodio do Tempo dos Francezes', 'Silva, Luiz Augusto Rebello da', '2008-09-13', 18, 'https://www.gutenberg.org/ebooks/26605', 'pt', 9943), +(49921, 'A Lecture on Physical Development, and its Relations to Mental and Spiritual Development, delivered before the American Institute of Instruction, at their Twenty-Ninth Annual Meeting, in Norwich, Conn., August 20, 1858', 'Calthrop, S. R. (Samuel Robert)', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12430', 'en', 5785), +(49922, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 9, Hermas', 'Wake, William', '2004-09-01', 24, 'https://www.gutenberg.org/ebooks/6515', 'en', 7966), +(49923, 'Little Journeys to the Homes of the Great - Volume 10\r\nLittle Journeys To The Homes Of Great Teachers', 'Hubbard, Elbert', '2006-07-29', 40, 'https://www.gutenberg.org/ebooks/18936', 'en', 16993), +(49924, 'Les voyous au théâtre (Histoire de deux pièces)', 'Méténier, Oscar', '2014-12-11', 7, 'https://www.gutenberg.org/ebooks/47632', 'fr', 16994), +(49925, 'Die griechische Tänzerin, und andere Novellen', 'Schnitzler, Arthur', '2005-11-23', 47, 'https://www.gutenberg.org/ebooks/17142', 'de', 179), +(49926, 'The Story of Genesis and Exodus: An Early English Song, about 1250 A.D.', NULL, '2015-12-13', 9, 'https://www.gutenberg.org/ebooks/50685', 'en', 16995), +(49927, 'Garrison\'s Finish: A Romance of the Race Course', 'Ferguson, W. B. M. (William Blair Morton)', '2006-03-31', 16, 'https://www.gutenberg.org/ebooks/2989', 'en', 4835), +(49928, 'The Lively Poll: A Tale of the North Sea', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 45, 'https://www.gutenberg.org/ebooks/23377', 'en', 16996), +(49929, 'Samuel Pepys and the World He Lived In', 'Wheatley, Henry B. (Henry Benjamin)', '2016-04-14', 20, 'https://www.gutenberg.org/ebooks/51757', 'en', 16997), +(49930, 'The Exiles and Other Stories', 'Davis, Richard Harding', '2005-06-18', 17, 'https://www.gutenberg.org/ebooks/16090', 'en', 770), +(49931, 'The Cathedrals of Southern France', 'Mansfield, M. F. (Milburg Francisco)', '2011-02-08', 11, 'https://www.gutenberg.org/ebooks/35212', 'en', 1117), +(49932, 'The Path of the Law', 'Holmes, Oliver Wendell', '2006-02-26', 89, 'https://www.gutenberg.org/ebooks/2373', 'en', 11313), +(49933, 'Donald Ross of Heimra (Volume 3 of 3)', 'Black, William', '2013-06-28', 12, 'https://www.gutenberg.org/ebooks/43054', 'en', 1922), +(49934, 'The Frontiersmen', 'Murfree, Mary Noailles', '2004-10-12', 26, 'https://www.gutenberg.org/ebooks/13724', 'en', 3237), +(49935, 'Daisy Miller: A Study', 'James, Henry', '2008-07-03', 588, 'https://www.gutenberg.org/ebooks/208', 'en', 348), +(49936, 'The Free Range', 'Sullivan, Francis William', '2008-12-12', 40, 'https://www.gutenberg.org/ebooks/27511', 'en', 315), +(49937, 'The Camp-fires of Napoleon\r\nComprising The Most Brilliant Achievemnents of the Emperor and His Marshals', 'Watson, Henry C. (Henry Clay)', '2017-07-17', 26, 'https://www.gutenberg.org/ebooks/55131', 'en', 16998), +(49938, 'Histoire de France 1415-1440 (Volume 6/19)', 'Michelet, Jules', '2013-02-24', 20, 'https://www.gutenberg.org/ebooks/42186', 'fr', 624), +(49939, 'Indian Tales', 'Kipling, Rudyard', '2005-08-01', 231, 'https://www.gutenberg.org/ebooks/8649', 'en', 409), +(49940, 'La Guzla de Prosper Mérimée', 'Jovanović, Vojislav Mate', '2010-03-02', 23, 'https://www.gutenberg.org/ebooks/31474', 'fr', 2683), +(49941, 'Naimiskauppa: Yksinäytöksinen huvinäytelmä', 'Wuori, Martti', '2015-11-13', 4, 'https://www.gutenberg.org/ebooks/50443', 'fi', 433), +(49942, 'The Foundations of Geometry', 'Hilbert, David', '2005-12-23', 331, 'https://www.gutenberg.org/ebooks/17384', 'en', 13405), +(49943, 'Aux mines d\'or du Klondike\ndu lac Bennett à Dawson City', 'Boillot, Léon', '2009-04-11', 18, 'https://www.gutenberg.org/ebooks/28559', 'fr', 9332), +(49944, 'Introduction to the Literature of Europe in the Fifteenth, Sixteenth, and Seventeenth Centuries, Vol. 1', 'Hallam, Henry', '2013-10-02', 26, 'https://www.gutenberg.org/ebooks/43868', 'en', 2145), +(49945, 'Little Women Letters from the House of Alcott', NULL, '2010-10-20', 21, 'https://www.gutenberg.org/ebooks/34106', 'en', 16999), +(49946, 'The Black Swan at Home and Abroad\r\nor, A Biographical Sketch of Miss Elizabeth Taylor Greenfield, the American Vocalist', 'Anonymous', '2014-08-07', 36, 'https://www.gutenberg.org/ebooks/46526', 'en', 17000), +(49947, 'The Caxtons: A Family Picture — Volume 15', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7601', 'en', 376), +(49948, 'The Trail of \'98: A Northland Romance', 'Service, Robert W. (Robert William)', '2007-07-13', 33, 'https://www.gutenberg.org/ebooks/22063', 'en', 4264), +(49949, 'The Psychology of Management\r\nThe Function of the Mind in Determining, Teaching and Installing Methods of Least Waste', 'Gilbreth, Lillian Moller', '2005-07-10', 128, 'https://www.gutenberg.org/ebooks/16256', 'en', 17001), +(49950, 'Justice de femme', 'Lesueur, Daniel', '2016-03-28', 7, 'https://www.gutenberg.org/ebooks/51591', 'fr', 298), +(49951, 'Nooks and Corners\r\nbeing the companion volume to \'From Kitchen to Garret\'', 'Panton, J. E. (Jane Ellen)', '2016-06-12', 6, 'https://www.gutenberg.org/ebooks/52314', 'en', 3407), +(49952, 'The Castle of Andalusia: A Comic Opera, in Three Acts', 'O\'Keeffe, John', '2011-07-07', 15, 'https://www.gutenberg.org/ebooks/36651', 'en', 1966), +(49953, 'The Adventures of Peregrine Pickle', 'Smollett, T. (Tobias)', '2003-05-01', 106, 'https://www.gutenberg.org/ebooks/4084', 'en', 61), +(49954, 'Gesänge gegen den Tod', 'Kölwel, Gottfried', '2013-11-24', 5, 'https://www.gutenberg.org/ebooks/44271', 'de', 4162), +(49955, 'I mesi dell\'anno ebraico', 'Bachi, Felice', '2011-10-17', 25, 'https://www.gutenberg.org/ebooks/37783', 'it', 2238), +(49956, 'Beechcroft at Rockstone', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/5156', 'en', 14170), +(49957, 'Roman Antiquities, and Ancient Mythology\nFor Classical Schools (2nd ed)', 'Dillaway, Charles K. (Charles Knapp)', '2007-03-03', 37, 'https://www.gutenberg.org/ebooks/20734', 'en', 11407), +(49958, 'The Forest of Vazon\r\nA Guernsey Legend of the Eighth Century', 'Anonymous', '2004-12-28', 10, 'https://www.gutenberg.org/ebooks/14501', 'en', 17002), +(49959, 'Trotzkopf als Grossmutter', 'La Chapelle-Roobol, Suze', '2012-05-05', 35, 'https://www.gutenberg.org/ebooks/39619', 'de', 17003), +(49960, 'Women in Modern Industry', 'Hutchins, B. L.', '2012-12-25', 15, 'https://www.gutenberg.org/ebooks/41703', 'en', 17004), +(49961, 'The Illustrated Alphabet of Birds', 'Unknown', '2004-02-01', 48, 'https://www.gutenberg.org/ebooks/11073', 'en', 12910), +(49962, '琵琶記', 'Gao, Ming', '2008-04-30', 20, 'https://www.gutenberg.org/ebooks/25246', 'zh', 2312), +(49963, 'Gossamer', 'Birmingham, George A.', '2008-01-21', 25, 'https://www.gutenberg.org/ebooks/24394', 'en', 669), +(49964, 'Famous leaders among men', 'Bolton, Sarah Knowles', '2018-08-10', 17, 'https://www.gutenberg.org/ebooks/57666', 'en', 122), +(49965, 'Small Gardens, and How to Make the Most of Them', 'Biddle, Violet Purton', '2010-08-02', 35, 'https://www.gutenberg.org/ebooks/33323', 'en', 1413), +(49966, 'Glacier National Park [Montana]', 'United States. Department of the Interior', '2011-06-19', 8, 'https://www.gutenberg.org/ebooks/36463', 'en', 3778), +(49967, 'William the Conqueror\nMakers of History', 'Abbott, Jacob', '2008-06-20', 43, 'https://www.gutenberg.org/ebooks/25848', 'en', 17005), +(49968, 'Deutsche Freiheit: Ein Weckruf', 'Eucken, Rudolf', '2014-03-23', 15, 'https://www.gutenberg.org/ebooks/45191', 'de', 4559), +(49969, 'A Dream of the North Sea', 'Runciman, James', '2016-05-21', 10, 'https://www.gutenberg.org/ebooks/52126', 'en', 1563), +(49970, 'The Laws of Euchre\nAs adopted by the Somerset Club of Boston, March 1, 1888', 'Leeds, Herbert Corey', '2007-02-02', 22, 'https://www.gutenberg.org/ebooks/20506', 'en', 17006), +(49971, 'Elämän hawainnoita 01: Uudistalo; Halla=aamuna; Mökin Maiju; Noidan rangaistus', 'Päivärinta, Pietari', '2005-01-19', 19, 'https://www.gutenberg.org/ebooks/14733', 'fi', 456), +(49972, 'The Truth about Opium\r\nBeing a Refutation of the Fallacies of the Anti-Opium Society and a Defence of the Indo-China Opium Trade', 'Brereton, William H.', '2013-10-26', 27, 'https://www.gutenberg.org/ebooks/44043', 'en', 17007), +(49973, 'The Inside of the Cup — Complete', 'Churchill, Winston', '2004-10-17', 18, 'https://www.gutenberg.org/ebooks/5364', 'en', 17008), +(49974, 'Oliver Twist', 'Dickens, Charles', '2018-02-17', 77, 'https://www.gutenberg.org/ebooks/56586', 'de', 14816), +(49975, 'Wee Ones\' Bible Stories', 'Anonymous', '2004-02-01', 86, 'https://www.gutenberg.org/ebooks/11241', 'en', 2637), +(49976, 'Novelas y cuentos', 'Estébanez Calderón, Serafín', '2008-04-15', 21, 'https://www.gutenberg.org/ebooks/25074', 'es', 1353), +(49977, 'Aikamme kuvia I-III', 'Alkio, Santeri', '2012-12-01', 27, 'https://www.gutenberg.org/ebooks/41531', 'fi', 61), +(49978, 'The Origin of the Family, Private Property and the State', 'Engels, Friedrich', '2010-07-08', 211, 'https://www.gutenberg.org/ebooks/33111', 'en', 17009), +(49979, 'Making the House a Home', 'Guest, Edgar A. (Edgar Albert)', '2003-12-01', 33, 'https://www.gutenberg.org/ebooks/10393', 'en', 12362), +(49980, 'Mémoires de Garibaldi, tome 2/2', 'Dumas, Alexandre', '2018-07-06', 22, 'https://www.gutenberg.org/ebooks/57454', 'fr', 3731), +(49981, 'Expedición de Catalanes y Aragoneses al Oriente', 'Moncada, Francisco de', '2004-09-23', 63, 'https://www.gutenberg.org/ebooks/13516', 'es', 17010), +(49982, 'Moja Pierwsza Bitwa: Opowiadanie Sierżanta', 'Mickiewicz, Adam', '2009-01-06', 17, 'https://www.gutenberg.org/ebooks/27723', 'pl', 10155), +(49983, 'Strictly Business: More Stories of the Four Million', 'Henry, O.', '2000-04-01', 108, 'https://www.gutenberg.org/ebooks/2141', 'en', 2999), +(49984, 'The Princess of Ponthieu\n(in) The New-York Weekly Magazine or Miscellaneous Repository', 'Unknown', '2009-12-29', 9, 'https://www.gutenberg.org/ebooks/30794', 'en', 3208), +(49985, 'Lost in the Wilds of Brazil', 'Foster, James H.', '2013-07-20', 12, 'https://www.gutenberg.org/ebooks/43266', 'en', 323), +(49986, 'The Eve of the Revolution; A Chronicle of the Breach with England', 'Becker, Carl L. (Carl Lotus)', '2002-02-01', 31, 'https://www.gutenberg.org/ebooks/3093', 'en', 481), +(49987, 'Wit, Humor, Reason, Rhetoric, Prose, Poetry and Story Woven into Eight Popular Lectures', 'Bain, George Washington', '2005-10-12', 11, 'https://www.gutenberg.org/ebooks/16858', 'en', 659), +(49988, 'Through Our Unknown Southwest\r\nThe Wonderland of the United States—Little Known and Unappreciated—The Home of the Cliff Dweller and the Hopi, the Forest Ranger and the Navajo,—The Lure of the Painted Desert', 'Laut, Agnes C.', '2010-03-15', 12, 'https://www.gutenberg.org/ebooks/31646', 'en', 3949), +(49989, 'Winona, a Dakota Legend; and Other Poems', 'Huggins, E. L. (Eli Lundy)', '2017-08-09', 11, 'https://www.gutenberg.org/ebooks/55303', 'en', 370), +(49990, 'The Numerical Strength of the Confederate Army\r\nAn examination of the argument of the Hon. Charles Francis Adams and others', 'McKim, Randolph H. (Randolph Harrison)', '2010-11-15', 22, 'https://www.gutenberg.org/ebooks/34334', 'en', 17011), +(49991, 'Philoktetes', 'Sophocles', '1997-02-01', 115, 'https://www.gutenberg.org/ebooks/806', 'en', 17012), +(49992, 'Earth Features and Their Meaning\nAn Introduction to Geology for the Student and the General Reader', 'Hobbs, William Herbert', '2015-12-12', 17, 'https://www.gutenberg.org/ebooks/50671', 'en', 2535), +(49993, 'Archibald Hughson: An Arctic Story', 'Kingston, William Henry Giles', '2007-11-06', 19, 'https://www.gutenberg.org/ebooks/23383', 'en', 9572), +(49994, 'The Teacher\r\nOr, Moral Influences Employed in the Instruction and Government of the Young', 'Abbott, Jacob', '2007-08-06', 12, 'https://www.gutenberg.org/ebooks/22251', 'en', 341), +(49995, 'Carolina Chansons\nLegends of the Low Country', 'Heyward, DuBose', '2005-06-14', 23, 'https://www.gutenberg.org/ebooks/16064', 'en', 17013), +(49996, 'Synthesis of 2-methyl-4-selenoquinazolone, 2-phenylbenzoselenazole, and its derivatives\r\nDissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Faculty of Pure Science of Columbia University', 'Chen, Yü-Gwan', '2014-08-28', 5, 'https://www.gutenberg.org/ebooks/46714', 'en', 17014), +(49997, 'My Ántonia', 'Cather, Willa', '2006-11-14', 216, 'https://www.gutenberg.org/ebooks/19810', 'en', 5500), +(49998, 'The Awkward Age', 'James, Henry', '2005-02-01', 60, 'https://www.gutenberg.org/ebooks/7433', 'en', 1080), +(49999, 'La kolonoj de la socio: Dramo en kvar aktoj', 'Ibsen, Henrik', '2006-12-22', 9, 'https://www.gutenberg.org/ebooks/20162', 'eo', 3671), +(50000, 'Observations on the Sermons of Elias Hicks\r\nIn Several Letters to Him; With Some Introductory Remarks, Addressed to the Junior Members of the Society of Friends.', 'Waln, Robert', '2018-10-11', 14, 'https://www.gutenberg.org/ebooks/58078', 'en', 13022), +(50001, 'William Shakespeare', 'Hugo, Victor', '2016-11-10', 39, 'https://www.gutenberg.org/ebooks/53490', 'en', 17015), +(50002, 'Rudolph Eucken : a philosophy of life', 'Jones, Abel J. (Abel John)', '2004-12-15', 83, 'https://www.gutenberg.org/ebooks/14357', 'en', 16670), +(50003, 'Atala', 'Chateaubriand, François-René, vicomte de', '2013-12-14', 59, 'https://www.gutenberg.org/ebooks/44427', 'en', 1357), +(50004, 'Love and Life: An Old Story in Eighteenth Century Costume', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/5700', 'en', 137), +(50005, 'Ethel Morton and the Christmas Ship', 'Smith, Mabell S. C. (Mabell Shippie Clarke)', '2011-05-01', 12, 'https://www.gutenberg.org/ebooks/36007', 'en', 2273), +(50006, 'The Hosts of the Air', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-03-08', 40, 'https://www.gutenberg.org/ebooks/15285', 'en', 579), +(50007, 'De complete werken van Joost van Vondel. Op de Aankomste van de Koninginne van \'t Zuiden te Hierusalem, [etc.]', 'Vondel, Joost van den', '2016-07-10', 10, 'https://www.gutenberg.org/ebooks/52542', 'nl', 2651), +(50008, 'The Formation of Christendom, Volume II', 'Allies, T. W. (Thomas William)', '2012-05-31', 17, 'https://www.gutenberg.org/ebooks/39873', 'en', 13383), +(50009, 'Le Peuple / Nos Fils', 'Michelet, Jules', '2013-02-02', 14, 'https://www.gutenberg.org/ebooks/41969', 'fr', 7718), +(50010, 'With the Doughboy in France: A Few Chapters of an American Effort', 'Hungerford, Edward', '2012-06-26', 36, 'https://www.gutenberg.org/ebooks/40087', 'en', 12565), +(50011, 'The Comedies of Carlo Goldoni\nedited with an introduction by Helen Zimmern', 'Goldoni, Carlo', '2010-08-29', 38, 'https://www.gutenberg.org/ebooks/33575', 'en', 17016), +(50012, 'Index of the Project Gutenberg Works of James Whitcomb Riley', 'Riley, James Whitcomb', '2019-02-08', 4, 'https://www.gutenberg.org/ebooks/58844', 'en', 198), +(50013, 'The Pocket Lavater; or, The Science of Physiognomy\r\nTo which is added an inquiry into the analogy existing between brute and human physiognomy', 'Porta, Giambattista della', '2018-04-23', 19, 'https://www.gutenberg.org/ebooks/57030', 'en', 15406), +(50014, 'The Wrong Twin', 'Wilson, Harry Leon', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11625', 'en', 262), +(50015, 'The Miracle of the Great St. Nicolas\r\n1920', 'France, Anatole', '2008-05-09', 24, 'https://www.gutenberg.org/ebooks/25410', 'en', 58), +(50016, 'Chronique du crime et de l\'innocence, tome 8/8\r\nRecueil des événements les plus tragiques;...', 'Champagnac, J.-B.-J. (Jean-Baptiste-Joseph)', '2019-07-28', 183, 'https://www.gutenberg.org/ebooks/59996', 'fr', 824), +(50017, 'L\'Égypte d\'hier et d\'aujourd\'hui', 'Tyndale, Walter', '2012-10-23', 14, 'https://www.gutenberg.org/ebooks/41155', 'fr', 17017), +(50018, 'The Boy Scouts for City Improvement', 'Shaler, Robert', '2015-07-01', 11, 'https://www.gutenberg.org/ebooks/49338', 'en', 2994), +(50019, 'The Homicidal Diary', 'Peirce, Earl', '2010-02-08', 26, 'https://www.gutenberg.org/ebooks/31222', 'en', 12433), +(50020, 'The Printer Boy; Or, How Benjamin Franklin Made His Mark\r\nAn Example for Youth.', 'Thayer, William Makepeace', '2008-08-13', 19, 'https://www.gutenberg.org/ebooks/26295', 'en', 854), +(50021, 'Talks on Manures\r\nA Series of Familiar and Practical Talks Between the Author and the Deacon, the Doctor, and Other Neighbors, on the Whole Subject', 'Harris, Joseph', '2006-10-03', 12, 'https://www.gutenberg.org/ebooks/19448', 'en', 12687), +(50022, 'The Boy Fortune Hunters in China', 'Baum, L. Frank (Lyman Frank)', '2017-10-18', 25, 'https://www.gutenberg.org/ebooks/55767', 'en', 5716), +(50023, 'True Stories of Crime From the District Attorney\'s Office', 'Train, Arthur Cheney', '2004-08-13', 107, 'https://www.gutenberg.org/ebooks/13172', 'en', 5050), +(50024, 'Appearances: Being Notes of Travel', 'Dickinson, G. Lowes (Goldsworthy Lowes)', '2008-11-28', 9, 'https://www.gutenberg.org/ebooks/27347', 'en', 12927), +(50025, 'John Ingerfield, and Other Stories', 'Jerome, Jerome K. (Jerome Klapka)', '2001-02-01', 32, 'https://www.gutenberg.org/ebooks/2525', 'en', 45), +(50026, 'A History of Art for Beginners and Students: Painting, Sculpture, Architecture', 'Waters, Clara Erskine Clement', '2013-08-30', 148, 'https://www.gutenberg.org/ebooks/43602', 'en', 3322), +(50027, 'Die Postgeheimnisse\r\noder die hauptsächlichsten Regeln welche man beim Reisen und bei Versendungen mit der Post beobachten muß um Verdruß und Verlust zu vermeiden', 'Raabe, Heinrich August', '2007-09-16', 19, 'https://www.gutenberg.org/ebooks/22635', 'de', 17018), +(50028, 'Dutch Life in Town and Country', 'Hough, P. M.', '2005-09-01', 29, 'https://www.gutenberg.org/ebooks/8823', 'en', 17019), +(50029, 'De M. Terenti Varronis Libris Grammaticis', 'Varro, Marcus Terentius', '2005-07-31', 53, 'https://www.gutenberg.org/ebooks/16400', 'la', 17020), +(50030, 'British Flags: Their Early History, and Their Development at Sea\r\nWith an Account of the Origin of the Flag as a National Device', 'Perrin, William Gordon', '2014-07-22', 22, 'https://www.gutenberg.org/ebooks/46370', 'en', 1600), +(50031, 'Chapters of Bible Study\nA Popular Introduction to the Study of the Sacred Scriptures', 'Heuser, Herman J. (Herman Joseph)', '2011-03-25', 21, 'https://www.gutenberg.org/ebooks/35682', 'en', 3792), +(50032, 'David Poindexter\'s Disappearance, and Other Tales', 'Hawthorne, Julian', '2004-12-01', 9, 'https://www.gutenberg.org/ebooks/7057', 'en', 61), +(50033, 'Mysterio do Natal', 'Coelho Netto, Henrique', '2010-12-24', 11, 'https://www.gutenberg.org/ebooks/34750', 'pt', 17021), +(50034, 'A Romany of the Snows, Complete\r\nBeing a Continuation of the Personal Histories of \"Pierre and His People\" and the Last Existing Records of Pretty Pierre', 'Parker, Gilbert', '2004-11-16', 14, 'https://www.gutenberg.org/ebooks/6185', 'en', 2261), +(50035, 'Musta nuoli: Kertomus Ruusujen ajalta', 'Stevenson, Robert Louis', '2015-10-14', 6, 'https://www.gutenberg.org/ebooks/50215', 'fi', 1351), +(50036, 'The Golden Rule Cook Book: Six hundred recipes for meatless dishes', 'Sharpe, M. R. L. (Maud Russell Lorraine)', '2017-09-15', 160, 'https://www.gutenberg.org/ebooks/55555', 'en', 5839), +(50037, 'Punch, or the London Charivari, Volume 99, July 26, 1890', 'Various', '2004-05-01', 1, 'https://www.gutenberg.org/ebooks/12292', 'en', 134), +(50038, 'Species Plantarum, Sections XI-XIII', 'Linné, Carl von', '2010-01-18', 27, 'https://www.gutenberg.org/ebooks/31010', 'la', 6858), +(50039, 'Nona Vincent', 'James, Henry', '2001-07-01', 24, 'https://www.gutenberg.org/ebooks/2717', 'en', 8039), +(50040, 'Jerusalem I-II\nI. Taalainmaassa. II. Pyhässä maassa.', 'Lagerlöf, Selma', '2013-08-10', 14, 'https://www.gutenberg.org/ebooks/43430', 'fi', 2168), +(50041, 'Social Rights And Duties: Addresses to Ethical Societies. Vol 1 [of 2]', 'Stephen, Leslie', '2009-05-21', 10, 'https://www.gutenberg.org/ebooks/28901', 'en', 8449), +(50042, 'Mr. Isaacs, A Tale of Modern India', 'Crawford, F. Marion (Francis Marion)', '2004-08-31', 13, 'https://www.gutenberg.org/ebooks/13340', 'en', 1228), +(50043, 'Waterfowl Identification Guide', 'Central Flyway Council', '2017-04-05', 11, 'https://www.gutenberg.org/ebooks/54487', 'en', 17022), +(50044, 'The Bad Child\'s Book of Beasts', 'Belloc, Hilaire', '2008-11-06', 116, 'https://www.gutenberg.org/ebooks/27175', 'en', 1801), +(50045, 'La femme au dix-huitième siècle', 'Goncourt, Jules de', '2014-06-29', 13, 'https://www.gutenberg.org/ebooks/46142', 'fr', 17023), +(50046, 'The History of Pendennis', 'Thackeray, William Makepeace', '2005-01-01', 91, 'https://www.gutenberg.org/ebooks/7265', 'en', 957), +(50047, 'The Adventures of Piang the Moro Jungle Boy\nA Book for Young and Old', 'Stuart, Florence Partello', '2007-08-26', 26, 'https://www.gutenberg.org/ebooks/22407', 'en', 12312), +(50048, 'New Ideas for American Boys; The Jack of All Trades', 'Beard, Daniel Carter', '2015-09-11', 30, 'https://www.gutenberg.org/ebooks/49936', 'en', 1415), +(50049, 'Over Here', 'Guest, Edgar A. (Edgar Albert)', '2005-09-02', 19, 'https://www.gutenberg.org/ebooks/16632', 'en', 2100), +(50050, 'El sí de las niñas', 'Fernández de Moratín, Leandro', '2015-09-21', 38, 'https://www.gutenberg.org/ebooks/50027', 'es', 17024), +(50051, 'John Deere\'s Steel Plow', 'Kendall, Edward C.', '2010-12-04', 16, 'https://www.gutenberg.org/ebooks/34562', 'en', 8217), +(50052, 'A Treatise on Hat-Making and Felting\r\nIncluding a Full Exposition of the Singular Properties of Fur, Wool, and Hair', 'Thomson, John, hatter', '2014-10-10', 30, 'https://www.gutenberg.org/ebooks/47090', 'en', 1531), +(50053, 'Daisy', 'Warner, Susan', '2009-01-31', 31, 'https://www.gutenberg.org/ebooks/27949', 'en', 5372), +(50054, 'Siam: Its Government, Manners, Customs, &c.', 'McDonald, N. A. (Noah A.)', '2014-01-07', 22, 'https://www.gutenberg.org/ebooks/44615', 'en', 17025), +(50055, 'A Thorny Path — Volume 03', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5532', 'en', 1814), +(50056, 'The Atlantic Monthly, Volume 14, No. 83, September, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2007-01-13', 10, 'https://www.gutenberg.org/ebooks/20350', 'en', 1227), +(50057, 'Punch, or the London Charivari, Volume 101, December 12, 1891', 'Various', '2004-11-26', 2, 'https://www.gutenberg.org/ebooks/14165', 'en', 134), +(50058, 'Birds of the National Parks in Hawaii', 'Dunmire, William W.', '2019-05-01', 18, 'https://www.gutenberg.org/ebooks/59398', 'en', 17026), +(50059, 'The Ancient City', 'Woolson, Constance Fenimore', '2016-08-10', 10, 'https://www.gutenberg.org/ebooks/52770', 'en', 273), +(50060, 'Tradiciones peruanas', 'Palma, Ricardo', '2007-05-04', 71, 'https://www.gutenberg.org/ebooks/21282', 'es', 17027), +(50061, 'Old Kensington', 'Ritchie, Anne Thackeray', '2011-05-27', 14, 'https://www.gutenberg.org/ebooks/36235', 'en', 14646), +(50062, 'The Legend of Sister Beatrix', 'Nodier, Charles', '2018-05-22', 7, 'https://www.gutenberg.org/ebooks/57202', 'en', 9777), +(50063, 'The Old Bachelor: A Comedy', 'Congreve, William', '1998-02-01', 32, 'https://www.gutenberg.org/ebooks/1192', 'en', 907), +(50064, 'The Hymns of Prudentius', 'Prudentius', '2005-02-07', 47, 'https://www.gutenberg.org/ebooks/14959', 'en', 17028), +(50065, 'An Engagement of Convenience: A Novel', 'Zangwill, Louis', '2010-09-17', 21, 'https://www.gutenberg.org/ebooks/33747', 'en', 61), +(50066, 'Women of Mediæval France\nWoman: in all ages and in all countries Vol. 5 (of 10)', 'Butler, Pierce', '2010-06-05', 73, 'https://www.gutenberg.org/ebooks/32695', 'en', 17029), +(50067, 'Handbuch der praktischen Kinematographie\r\nDie verschiedenen Konstruktions-Formen des Kinematographen, die Darstellung der lebenden Lichtbilder sowie das ...', 'Liesegang, Franz Paul', '2012-11-15', 15, 'https://www.gutenberg.org/ebooks/41367', 'de', 17030), +(50068, 'French Mediaeval Romances from the Lays of Marie de France', 'Marie, de France, active 12th century', '2004-03-01', 687, 'https://www.gutenberg.org/ebooks/11417', 'en', 17031), +(50069, 'Beatrice d\'Este, Duchess of Milan, 1475-1497', 'Cartwright, Julia', '2008-05-27', 46, 'https://www.gutenberg.org/ebooks/25622', 'en', 4289), +(50070, 'Dreamthorp\nA Book of Essays Written in the Country', 'Smith, Alexander', '2006-04-09', 31, 'https://www.gutenberg.org/ebooks/18135', 'en', 20), +(50071, 'Library Cataloguing', 'Quinn, John Henry', '2015-04-05', 9, 'https://www.gutenberg.org/ebooks/48645', 'en', 11055), +(50072, 'Fables de La Fontaine. Tome Premier', 'La Fontaine, Jean de', '2006-03-07', 79, 'https://www.gutenberg.org/ebooks/17941', 'fr', 4590), +(50073, 'Barclay of Ury, and other poems\r\nPart 3 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9562', 'en', 350), +(50074, 'Macbeth', 'Shakespeare, William', '2005-10-17', 35, 'https://www.gutenberg.org/ebooks/16893', 'fi', 15014), +(50075, 'A Changed Man, and Other Tales', 'Hardy, Thomas', '2002-02-01', 67, 'https://www.gutenberg.org/ebooks/3058', 'en', 8003), +(50076, 'Book of American Baking\r\nA Practical Guide Covering Various Branches of the Baking Industry, Including Cakes, Buns, and Pastry, Bread Making, Pie Baking, Etc.', 'Various', '2015-08-28', 67, 'https://www.gutenberg.org/ebooks/49797', 'en', 17032), +(50077, 'Poems Teachers Ask For\r\nSelected by readers of \"Normal Instructor-Primary Plans\"', 'Various', '2006-07-26', 83, 'https://www.gutenberg.org/ebooks/18909', 'en', 13578), +(50078, 'Old Mother Hubbard and Her Dog', 'Unknown', '2007-11-06', 8, 'https://www.gutenberg.org/ebooks/23348', 'en', 343), +(50079, 'Prospector\'s Special', 'Sheckley, Robert', '2016-04-15', 56, 'https://www.gutenberg.org/ebooks/51768', 'en', 9609), +(50080, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 05', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 10, 'https://www.gutenberg.org/ebooks/3864', 'en', 1247), +(50081, 'Cossack Fairy Tales and Folk Tales', NULL, '2009-08-12', 17, 'https://www.gutenberg.org/ebooks/29672', 'en', 17033), +(50082, 'Denslow\'s Humpty Dumpty', 'Denslow, W. W. (William Wallace)', '2008-06-23', 125, 'https://www.gutenberg.org/ebooks/25883', 'en', 2849), +(50083, 'Sales Resistance', 'Still, Henry', '2019-05-14', 75, 'https://www.gutenberg.org/ebooks/59505', 'en', 17034), +(50084, 'Het Leven der Dieren: Hoofdstuk 7: De Pluviervogels', 'Brehm, Alfred Edmund', '2010-06-16', 8, 'https://www.gutenberg.org/ebooks/32834', 'nl', 2360), +(50085, 'Het Eiland Urk: Zijn Bodem, voortbrengselen en bewoners', 'Harting, Pieter', '2013-11-01', 6, 'https://www.gutenberg.org/ebooks/44088', 'nl', 17035), +(50086, 'The War in South Africa, Its Cause and Conduct', 'Doyle, Arthur Conan', '2008-03-29', 80, 'https://www.gutenberg.org/ebooks/24951', 'en', 1956), +(50087, 'Eurico, o presbytero', 'Herculano, Alexandre', '2014-06-14', 14, 'https://www.gutenberg.org/ebooks/45966', 'pt', 17036), +(50088, 'Deutscher Mondschein', 'Raabe, Wilhelm', '2010-04-16', 28, 'https://www.gutenberg.org/ebooks/32008', 'de', 179), +(50089, 'Woman and Artist', 'O\'Rell, Max', '2012-01-09', 11, 'https://www.gutenberg.org/ebooks/38532', 'en', 7007), +(50090, 'Report of a special committee of the City Council, on the improvement of the Fire Department\r\nand also, on the best means of obtaining an additional supply of water for fire purposes, for the city of Halifax, N.S.', 'Halifax (N.S.). City Council. Special Committee on the Improvement of the Fire Department', '2016-12-25', 9, 'https://www.gutenberg.org/ebooks/53803', 'en', 17037), +(50091, 'A Sermon, Delivered Before His Excellency Edward Everett, Governor, His Honor George Hull, Lieutenant Governor, the Honorable Council, and the Legislature of Massachusetts, on the Anniversary Election, January 2, 1839', 'Hopkins, Mark', '2012-08-06', 9, 'https://www.gutenberg.org/ebooks/40428', 'en', 4730), +(50092, 'The Boss of Little Arcady', 'Wilson, Harry Leon', '2003-12-01', 16, 'https://www.gutenberg.org/ebooks/10358', 'en', 1426), +(50093, 'Ang Sintang Dalisay ni Julieta at Romeo', 'Shakespeare, William', '2005-03-20', 16, 'https://www.gutenberg.org/ebooks/15418', 'tl', 6730), +(50094, 'The Common Rocks and Minerals of Missouri', 'Keller, W. D.', '2019-06-11', 22, 'https://www.gutenberg.org/ebooks/59737', 'en', 17038), +(50095, 'The Outline of History: Being a Plain History of Life and Mankind', 'Wells, H. G. (Herbert George)', '2014-04-12', 383, 'https://www.gutenberg.org/ebooks/45368', 'en', 346), +(50096, 'Aenmerkinge op de Missive van Parnas', 'Anonymous', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/11884', 'nl', 6273), +(50097, 'Indian speeches (1907-1909)', 'Morley, John', '2004-02-01', 44, 'https://www.gutenberg.org/ebooks/10956', 'en', 17039), +(50098, 'How to Collect a Doctor Bill', 'Davis, Franklyn Pierre', '2011-10-13', 19, 'https://www.gutenberg.org/ebooks/37748', 'en', 17040), +(50099, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1600', 'Motley, John Lothrop', '2004-01-01', 7, 'https://www.gutenberg.org/ebooks/4873', 'en', 3372), +(50100, 'Chambers\'s Twentieth Century Dictionary (part 4 of 4: S-Z and supplements)', NULL, '2012-01-28', 65, 'https://www.gutenberg.org/ebooks/38700', 'en', 1481), +(50101, 'Variétés Historiques et Littéraires (06/10)\r\nRecueil de piéces volantes rares et curieuses en prose et en vers', NULL, '2015-03-12', 8, 'https://www.gutenberg.org/ebooks/48477', 'fr', 642), +(50102, 'Lalage\'s Lovers', 'Birmingham, George A.', '2008-01-23', 10, 'https://www.gutenberg.org/ebooks/23946', 'en', 348), +(50103, 'Night and Morning, Volume 1', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 11, 'https://www.gutenberg.org/ebooks/9750', 'en', 401), +(50104, 'Three Heroines of New England Romance\r\nTheir true stories herein set forth by Mrs Harriet Spoffard, Miss Louise Imogen Guiney, and Miss Alice Brown', 'Brown, Alice', '2017-01-20', 18, 'https://www.gutenberg.org/ebooks/54028', 'en', 17041), +(50105, 'The Adventures of Akbar', 'Steel, Flora Annie Webster', '2006-05-04', 30, 'https://www.gutenberg.org/ebooks/18307', 'en', 17042), +(50106, 'The Secret of the Reef', 'Bindloss, Harold', '2011-04-10', 64, 'https://www.gutenberg.org/ebooks/35823', 'en', 167), +(50107, 'A Budget of Paradoxes, Volume II', 'De Morgan, Augustus', '2008-08-23', 57, 'https://www.gutenberg.org/ebooks/26408', 'en', 6770), +(50108, 'The Naturalist on the Thames', 'Cornish, C. J. (Charles John)', '2005-08-01', 15, 'https://www.gutenberg.org/ebooks/8682', 'en', 17043), +(50109, 'Tratado do processo criminal preparatorio ou d\'instrucção e pronuncia', 'Unknown', '2007-10-05', 11, 'https://www.gutenberg.org/ebooks/22894', 'pt', 17044), +(50110, 'El pecado y la noche', 'Hoyos y Vinent, Antonio de', '2009-04-23', 25, 'https://www.gutenberg.org/ebooks/28592', 'es', 5089), +(50111, 'Charles Baudelaire: A Study', 'Symons, Arthur', '2015-11-19', 24, 'https://www.gutenberg.org/ebooks/50488', 'en', 7759), +(50112, 'Cap\'n Dan\'s Daughter', 'Lincoln, Joseph Crosby', '2006-06-06', 21, 'https://www.gutenberg.org/ebooks/6718', 'en', 3249), +(50113, 'Miller\'s Mind training for children Book 1 (of 3)\r\nA practical training for successful living; Educational games that train the senses', 'Miller, William Emer', '2017-05-30', 38, 'https://www.gutenberg.org/ebooks/54814', 'en', 3749), +(50114, 'Leading Articles on Various Subjects', 'Miller, Hugh', '2009-07-18', 14, 'https://www.gutenberg.org/ebooks/29440', 'en', 472), +(50115, 'Macaulay\'s Life of Samuel Johnson, with a Selection from his Essay on Johnson', 'Macaulay, Thomas Babington Macaulay, Baron', '2013-06-17', 23, 'https://www.gutenberg.org/ebooks/42971', 'en', 208), +(50116, 'The Burton Holmes Lectures, Volume 1 (of 10)\nIn Ten Volumes', 'Holmes, Burton', '2018-11-14', 9, 'https://www.gutenberg.org/ebooks/58281', 'en', 885), +(50117, 'Portable Flame Thrower M2-2', 'United States. War Department', '2016-12-05', 37, 'https://www.gutenberg.org/ebooks/53669', 'en', 17045), +(50118, 'Captain Blood', 'Sabatini, Rafael', '1999-11-01', 457, 'https://www.gutenberg.org/ebooks/1965', 'en', 324), +(50119, 'Clayhanger', 'Bennett, Arnold', '2007-04-28', 49, 'https://www.gutenberg.org/ebooks/21249', 'en', 11129), +(50120, 'Klimop: Drie verhalen voor jongens en meisjes', 'Andriessen, Suze (Suzanna Maria)', '2019-04-25', 17, 'https://www.gutenberg.org/ebooks/59353', 'nl', 511), +(50121, 'The Life of Froude', 'Paul, Herbert W. (Herbert Woodfield)', '2005-02-09', 38, 'https://www.gutenberg.org/ebooks/14992', 'en', 6239), +(50122, 'In Pastures New', 'Ade, George', '2011-12-22', 16, 'https://www.gutenberg.org/ebooks/38364', 'en', 17046), +(50123, 'Fire-Tongue', 'Rohmer, Sax', '1998-01-01', 74, 'https://www.gutenberg.org/ebooks/1159', 'en', 12282); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(50124, 'Lippincott\'s Magazine, December, 1885', 'Various', '2005-05-16', 46, 'https://www.gutenberg.org/ebooks/15840', 'en', 210), +(50125, 'Memoirs of a Cavalier\nA Military Journal of the Wars in Germany, and the Wars in England.\nFrom the Year 1632 to the Year 1648.', 'Defoe, Daniel', '2004-05-01', 77, 'https://www.gutenberg.org/ebooks/12259', 'en', 5126), +(50126, 'Catalogue of Works Literary Art and Music', 'Reeves & Turner', '2016-05-01', 5, 'https://www.gutenberg.org/ebooks/51902', 'en', 17047), +(50127, 'Dariel: A Romance of Surrey', 'Blackmore, R. D. (Richard Doddridge)', '2013-04-14', 45, 'https://www.gutenberg.org/ebooks/42529', 'en', 8729), +(50128, 'The Plunderer', 'Norton, Roy', '2009-08-27', 47, 'https://www.gutenberg.org/ebooks/29818', 'en', 8152), +(50129, 'Forty Thousand Miles Over Land and Water\nThe Journal of a Tour Through the British Empire and America', 'Vincent, Ethel Gwendoline', '2015-01-18', 26, 'https://www.gutenberg.org/ebooks/48013', 'en', 819), +(50130, 'The Russian Garland, Being Russian Folk Tales', NULL, '2009-09-27', 29, 'https://www.gutenberg.org/ebooks/30109', 'en', 10174), +(50131, 'The Spectator, Volume 1\nEighteenth-Century Periodical Essays', 'Addison, Joseph', '2005-11-01', 58, 'https://www.gutenberg.org/ebooks/9334', 'en', 13005), +(50132, 'Graham\'s Magazine, Vol. XLI, No. 6, December 1852', 'Various', '2015-01-04', 9, 'https://www.gutenberg.org/ebooks/47867', 'en', 162), +(50133, 'Scientific American Supplement, No. 365, December 30, 1882', 'Various', '2006-07-06', 26, 'https://www.gutenberg.org/ebooks/18763', 'en', 210), +(50134, 'Viriatho: Narrativa epo-historica', 'Braga, Teófilo', '2008-10-09', 10, 'https://www.gutenberg.org/ebooks/26850', 'pt', 17048), +(50135, 'While I Remember', 'McKenna, Stephen', '2014-07-04', 17, 'https://www.gutenberg.org/ebooks/46189', 'en', 5611), +(50136, 'Across Mongolian Plains\nA Naturalist\'s Account of China\'s \'Great Northwest\'', 'Andrews, Roy Chapman', '2009-06-03', 59, 'https://www.gutenberg.org/ebooks/29024', 'en', 1559), +(50137, 'Encyclopaedia Britannica, 11th Edition, \"Constantine Pavlovich\" to \"Convention\"\r\nVolume 7, Slice 2', 'Various', '2010-01-11', 31, 'https://www.gutenberg.org/ebooks/30935', 'en', 1081), +(50138, 'The Ocean Waifs: A Story of Adventure on Land and Sea', 'Reid, Mayne', '2009-02-03', 73, 'https://www.gutenberg.org/ebooks/27982', 'en', 3421), +(50139, 'La manière de bien traduire d\'une langue en aultre', 'Dolet, Etienne', '2006-10-06', 23, 'https://www.gutenberg.org/ebooks/19483', 'fr', 17049), +(50140, 'Lays from the West', 'Nicholl, M. A.', '2004-11-01', 2, 'https://www.gutenberg.org/ebooks/6972', 'en', 28), +(50141, 'Der Wendekreis - Erste Folge: Novellen', 'Wassermann, Jakob', '2006-06-11', 33, 'https://www.gutenberg.org/ebooks/18551', 'de', 282), +(50142, 'Amy Foster', 'Conrad, Joseph', '2006-01-09', 266, 'https://www.gutenberg.org/ebooks/495', 'en', 109), +(50143, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 704\nJune 23, 1877', 'Various', '2015-02-09', 3, 'https://www.gutenberg.org/ebooks/48221', 'en', 18), +(50144, 'The Elson Readers, Book 5', 'Elson, William H. (William Harris)', '2005-10-01', 30, 'https://www.gutenberg.org/ebooks/9106', 'en', 1019), +(50145, 'Goethe: Een Levensbeschrijving', 'D\'Oliveira, E. (Elias)', '2009-06-24', 6, 'https://www.gutenberg.org/ebooks/29216', 'nl', 3088), +(50146, 'Cambridge', 'Home, Gordon', '2004-07-08', 18, 'https://www.gutenberg.org/ebooks/12857', 'en', 16417), +(50147, 'The Lost Mountain: A Tale of Sonora', 'Reid, Mayne', '2011-03-21', 17, 'https://www.gutenberg.org/ebooks/35649', 'en', 17050), +(50148, 'Over the Canadian Battlefields\nNotes of a Little Journey in France, in March, 1919', 'Dafoe, John Wesley', '2014-11-07', 12, 'https://www.gutenberg.org/ebooks/47269', 'en', 4962), +(50149, 'V. V.\'s Eyes', 'Harrison, Henry Sydnor', '2004-11-08', 56, 'https://www.gutenberg.org/ebooks/13985', 'en', 61), +(50150, 'Les misérables Tome V: Jean Valjean', 'Hugo, Victor', '2006-01-15', 178, 'https://www.gutenberg.org/ebooks/17519', 'fr', 98), +(50151, 'Thoughts on Art and Autobiographical Memoirs of Giovanni Duprè', 'Duprè, Giovanni', '2012-09-26', 13, 'https://www.gutenberg.org/ebooks/40870', 'en', 915), +(50152, 'Words of Cheer for the Tempted, the Toiling, and the Sorrowing', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/4619', 'en', 740), +(50153, 'Meren takaa I', 'Kallas, Aino Krohn', '2018-04-03', 11, 'https://www.gutenberg.org/ebooks/56915', 'fi', 665), +(50154, 'Eiszeit und Klimawechsel', 'Bölsche, Wilhelm', '2019-03-31', 20, 'https://www.gutenberg.org/ebooks/59161', 'de', 17051), +(50155, 'The Influence of Sea Power upon the French Revolution and Empire 1793-1812, vol 2', 'Mahan, A. T. (Alfred Thayer)', '2016-07-23', 14, 'https://www.gutenberg.org/ebooks/52589', 'en', 2121), +(50156, 'A Second Coming', 'Marsh, Richard', '2011-11-28', 15, 'https://www.gutenberg.org/ebooks/38156', 'en', 609), +(50157, 'Fighting in France', 'Kay, Ross', '2007-04-05', 16, 'https://www.gutenberg.org/ebooks/20995', 'en', 146), +(50158, 'The Indians\' Last Fight; Or, The Dull Knife Raid', 'Collins, Dennis', '2011-11-04', 10, 'https://www.gutenberg.org/ebooks/37922', 'en', 3540), +(50159, 'In the Mist of the Mountains', 'Turner, Ethel Sybil', '2008-02-04', 18, 'https://www.gutenberg.org/ebooks/24509', 'en', 421), +(50160, 'The Book of the Fly\nA nature study of the house-fly and its kin, the fly plague and a cure', 'Hardy, G. H. (George Hudleston Hurlstone)', '2017-12-05', 9, 'https://www.gutenberg.org/ebooks/56129', 'en', 17052), +(50161, 'Dr. Wortle\'s School', 'Trollope, Anthony', '2007-06-18', 27, 'https://www.gutenberg.org/ebooks/21847', 'en', 705), +(50162, 'William Hickling Prescott', 'Peck, Harry Thurston', '2012-03-09', 20, 'https://www.gutenberg.org/ebooks/39084', 'en', 12788), +(50163, 'Old Friends: Essays in Epistolary Parody', 'Lang, Andrew', '1999-12-01', 28, 'https://www.gutenberg.org/ebooks/1991', 'en', 1697), +(50164, 'Granada, Poema Oriental, precedido de la Leyenda de al-Hamar, Tomo 2', 'Zorrilla, José', '2018-11-11', 9, 'https://www.gutenberg.org/ebooks/58275', 'es', 17053), +(50165, 'Proserpina, Volume 2\r\nStudies of Wayside Flowers, While the Air was Yet Pure Among the Alps and in the Scotland and England Which My Father Knew', 'Ruskin, John', '2005-02-17', 17, 'https://www.gutenberg.org/ebooks/15088', 'en', 3879), +(50166, 'A Dictionary of English Synonymes and Synonymous or Parallel Expressions\nDesigned as a Practical Guide to Aptness and Variety of Phraseology', 'Soule, Richard', '2011-12-23', 43, 'https://www.gutenberg.org/ebooks/38390', 'en', 9961), +(50167, 'Punch, or the London Charivari, Volume 152, March 7, 1917', 'Various', '2005-02-07', 7, 'https://www.gutenberg.org/ebooks/14966', 'en', 134), +(50168, 'The Patriot (Piccolo Mondo Antico)', 'Fogazzaro, Antonio', '2010-09-20', 24, 'https://www.gutenberg.org/ebooks/33778', 'en', 16), +(50169, 'Practical Mind-Reading\r\nA Course of Lessons on Thought-Transference, Telepathy, Mental-Currents, Mental Rapport, &c.', 'Atkinson, William Walker', '2012-11-12', 120, 'https://www.gutenberg.org/ebooks/41358', 'en', 17054), +(50170, 'L\'Illustration, No. 3677, 16 Août 1913', 'Various', '2012-03-24', 5, 'https://www.gutenberg.org/ebooks/39242', 'fr', 150), +(50171, 'Punch, or the London Charivari, Volume 153, November 14, 1917', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11428', 'en', 134), +(50172, 'Under the Trees and Elsewhere', 'Mabie, Hamilton Wright', '2006-10-27', 22, 'https://www.gutenberg.org/ebooks/19645', 'en', 1216), +(50173, 'Happy Days', 'Milne, A. A. (Alan Alexander)', '2008-07-21', 43, 'https://www.gutenberg.org/ebooks/26098', 'en', 179), +(50174, 'Storia delle cinque gloriose giornate di Milano nel 1848', 'Vismara, Antonio', '2014-09-23', 11, 'https://www.gutenberg.org/ebooks/46941', 'it', 11042), +(50175, 'Poems', 'Southey, Robert', '2005-06-01', 17, 'https://www.gutenberg.org/ebooks/8212', 'en', 8), +(50176, 'Luther, vol. 4 of 6', 'Grisar, Hartmann', '2015-06-04', 18, 'https://www.gutenberg.org/ebooks/49135', 'en', 1073), +(50177, 'Hunter Quatermain\'s Story', 'Haggard, H. Rider (Henry Rider)', '2006-04-04', 90, 'https://www.gutenberg.org/ebooks/2728', 'en', 2126), +(50178, 'The Flying Machine Boys on Secret Service; Or, The Capture in the Air', 'Walton, Frank', '2016-01-01', 6, 'https://www.gutenberg.org/ebooks/50824', 'en', 557), +(50179, 'The Brochure Series of Architectural Illustration, vol. 06, No. 05, May 1900\r\nChippendale Chairs', 'Various', '2015-01-06', 4, 'https://www.gutenberg.org/ebooks/47893', 'en', 2140), +(50180, 'La princesse de Clèves', 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne)', '2006-07-09', 55, 'https://www.gutenberg.org/ebooks/18797', 'fr', 98), +(50181, 'The Chimes\r\nA Goblin Story of Some Bells That Rang an Old Year out and a New Year In', 'Dickens, Charles', '1996-09-01', 157, 'https://www.gutenberg.org/ebooks/653', 'en', 585), +(50182, 'Checkers: A Hard-luck Story', 'Blossom, Henry', '2010-03-28', 6, 'https://www.gutenberg.org/ebooks/31813', 'en', 61), +(50183, 'The Parenticide Club', 'Bierce, Ambrose', '2007-08-01', 4, 'https://www.gutenberg.org/ebooks/22438', 'en', 112), +(50184, 'Anttonius Putronius eli Antto Puuronen: Ilveilys viidessä näytelmässä', 'Holberg, Ludvig', '2015-09-08', 33, 'https://www.gutenberg.org/ebooks/49909', 'fi', 1552), +(50185, 'The Transfiguration of Miss Philura', 'Kingsley, Florence Morse', '2009-02-17', 28, 'https://www.gutenberg.org/ebooks/28102', 'en', 3305), +(50186, 'Willem Roda: Een jongensboek', 'Heimans, Eli', '2015-09-20', 14, 'https://www.gutenberg.org/ebooks/50018', 'nl', 153), +(50187, 'Mémoires du maréchal Marmont, duc de Raguse, (2/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2009-02-03', 16, 'https://www.gutenberg.org/ebooks/27976', 'fr', 3053), +(50188, 'The Lives of the Twelve Caesars, Volume 03: Tiberius', 'Suetonius', '2004-12-13', 34, 'https://www.gutenberg.org/ebooks/6388', 'en', 6221), +(50189, 'The Bible, King James version, Book 20: Proverbs', 'Anonymous', '2005-04-01', 29, 'https://www.gutenberg.org/ebooks/8020', 'en', 151), +(50190, 'C.A. Coey\'s School of Motoring, 1424-26 Michigan Ave. Chicago', 'Coey, Charles Andrew', '2015-06-28', 9, 'https://www.gutenberg.org/ebooks/49307', 'en', 17055), +(50191, 'The Young Trailers: A Story of Early Kentucky', 'Altsheler, Joseph A. (Joseph Alexander)', '2006-10-05', 39, 'https://www.gutenberg.org/ebooks/19477', 'en', 17056), +(50192, 'The Boys\' and Girls\' Herodotus\r\nBeing Parts of the History of Herodotus, Edited for Boys and Girls', 'Herodotus', '2017-10-16', 43, 'https://www.gutenberg.org/ebooks/55758', 'en', 17057), +(50193, 'Les Noces Chimiques', 'Rosencreutz, Christian', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/7854', 'fr', 5413), +(50194, 'The Story of the Heavens', 'Ball, Robert S. (Robert Stawell)', '2008-12-01', 67, 'https://www.gutenberg.org/ebooks/27378', 'en', 1683), +(50195, 'The Quest of the Golden Girl: A Romance', 'Le Gallienne, Richard', '1996-03-01', 61, 'https://www.gutenberg.org/ebooks/461', 'en', 109), +(50196, 'Hygienic Physiology : with Special Reference to the Use of Alcoholic Drinks and Narcotics', 'Steele, Joel Dorman', '2004-11-01', 32, 'https://www.gutenberg.org/ebooks/6986', 'en', 17058), +(50197, 'Das Haidedorf', 'Stifter, Adalbert', '2004-12-01', 30, 'https://www.gutenberg.org/ebooks/7068', 'de', 906), +(50198, 'The Fifteen Comforts of Matrimony: Responses from Men', 'Various', '2004-11-08', 83, 'https://www.gutenberg.org/ebooks/13971', 'en', 3429), +(50199, 'Reflections on the Operation of the Present System of Education, 1853', 'Andrews, C. C. (Christopher Columbus)', '2009-03-15', 4, 'https://www.gutenberg.org/ebooks/28330', 'en', 1302), +(50200, 'The Red Court Farm: A Novel (Vol. 2 of 2)', 'Wood, Henry, Mrs.', '2018-10-06', 13, 'https://www.gutenberg.org/ebooks/58047', 'en', 137), +(50201, 'Hebraic Literature; Translations from the Talmud, Midrashim and Kabbala', NULL, '2004-12-16', 150, 'https://www.gutenberg.org/ebooks/14368', 'en', 8848), +(50202, 'The Personality of American Cities', 'Hungerford, Edward', '2012-09-28', 33, 'https://www.gutenberg.org/ebooks/40884', 'en', 1110), +(50203, 'The Hill of Adventure', 'Meigs, Cornelia', '2018-09-02', 21, 'https://www.gutenberg.org/ebooks/57833', 'en', 17059), +(50204, 'Italian Days and Ways', 'Wharton, Anne Hollingsworth', '2013-12-13', 18, 'https://www.gutenberg.org/ebooks/44418', 'en', 1896), +(50205, 'Fiscal Ballads', 'Graham, Harry', '2011-05-05', 8, 'https://www.gutenberg.org/ebooks/36038', 'en', 17060), +(50206, 'Hans Råskov', 'Hjortø, Knud', '2013-01-31', 8, 'https://www.gutenberg.org/ebooks/41956', 'da', 6055), +(50207, 'Index of the Project Gutenberg Works of Leon Tolstoy', 'Tolstoy, Leo, graf', '2019-04-03', 39, 'https://www.gutenberg.org/ebooks/59195', 'en', 198), +(50208, 'The Masques of Ottawa', 'Bridle, Augustus', '2007-04-02', 7, 'https://www.gutenberg.org/ebooks/20961', 'en', 17061), +(50209, 'The League of the Leopard', 'Bindloss, Harold', '2011-07-21', 18, 'https://www.gutenberg.org/ebooks/36804', 'en', 11455), +(50210, 'The Sun changes its position in space\ntherefore it cannot be regarded as being \"in a condition of rest\"', 'Tischner, August', '2012-03-07', 15, 'https://www.gutenberg.org/ebooks/39070', 'en', 4188), +(50211, 'The Brain', 'Blade, Alexander', '2010-05-23', 64, 'https://www.gutenberg.org/ebooks/32498', 'en', 26), +(50212, 'The Influence of Sea Power Upon History, 1660-1783', 'Mahan, A. T. (Alfred Thayer)', '2004-09-26', 489, 'https://www.gutenberg.org/ebooks/13529', 'en', 2121), +(50213, 'Pittsburgh in 1816\r\nCompiled by the Carnegie Library of Pittsburgh on the One Hundredth Anniversary of the Granting of the City Charter', NULL, '2013-07-20', 23, 'https://www.gutenberg.org/ebooks/43259', 'en', 4510), +(50214, 'Reform and Politics\r\nPart 2 from The Works of John Greenleaf Whittier, Volume VII', 'Whittier, John Greenleaf', '2005-12-01', 17, 'https://www.gutenberg.org/ebooks/9596', 'en', 1720), +(50215, 'Cæsar or Nothing', 'Baroja, Pío', '2005-07-01', 13, 'https://www.gutenberg.org/ebooks/8444', 'en', 480), +(50216, 'The Adventures of Odysseus and The Tales of Troy', 'Colum, Padraic', '2005-10-14', 100, 'https://www.gutenberg.org/ebooks/16867', 'en', 2139), +(50217, 'North American Yellow Bats, \'Dasypterus,\' and a List of the Named Kinds of the Genus Lasiurus Gray', 'Hall, E. Raymond (Eugene Raymond)', '2010-03-17', 13, 'https://www.gutenberg.org/ebooks/31679', 'en', 2561), +(50218, 'Peeps at Many Lands: Canada', 'Bealby, J. T. (John Thomas)', '2015-08-23', 10, 'https://www.gutenberg.org/ebooks/49763', 'en', 2655), +(50219, 'Sciências Naturaes\nPela Redacção da «Educação Nacional»', 'Anonymous', '2006-08-09', 17, 'https://www.gutenberg.org/ebooks/19013', 'pt', 12675), +(50220, 'New Arabian Nights', 'Stevenson, Robert Louis', '1997-03-01', 176, 'https://www.gutenberg.org/ebooks/839', 'en', 61), +(50221, 'History of England from the Accession of James II, vol2 chapter08', 'Macaulay, Thomas Babington Macaulay, Baron', '2009-05-01', 5, 'https://www.gutenberg.org/ebooks/28754', 'en', 641), +(50222, 'Two Penniless Princesses', 'Yonge, Charlotte M. (Charlotte Mary)', '2001-12-01', 31, 'https://www.gutenberg.org/ebooks/2942', 'en', 1380), +(50223, 'Autumn Leaves: Original Pieces in Prose and Verse', NULL, '2005-11-30', 55, 'https://www.gutenberg.org/ebooks/17189', 'en', 178), +(50224, 'Memoirs of the Court of Marie Antoinette, Queen of France, Volume 7\r\nBeing the Historic Memoirs of Madam Campan, First Lady in Waiting to the Queen', 'Campan, Mme. (Jeanne-Louise-Henriette)', '2004-12-04', 3, 'https://www.gutenberg.org/ebooks/3890', 'en', 4453), +(50225, 'The Fiery Totem\nA Tale of Adventure in the Canadian North-West', 'Saxby, C. F. Argyll', '2009-08-14', 7, 'https://www.gutenberg.org/ebooks/29686', 'en', 17062), +(50226, 'The Little Gingerbread Man', 'Putnam, George Haven', '2008-06-22', 34, 'https://www.gutenberg.org/ebooks/25877', 'en', 1007), +(50227, 'The Duchess of Berry and the Court of Charles X', 'Imbert de Saint-Amand', '2003-07-01', 13, 'https://www.gutenberg.org/ebooks/4289', 'en', 17063), +(50228, 'History of Greece, Volume 08 (of 12)', 'Grote, George', '2016-05-21', 12, 'https://www.gutenberg.org/ebooks/52119', 'en', 6424), +(50229, 'Eight Girls and a Dog', 'Wells, Carolyn', '2018-12-07', 18, 'https://www.gutenberg.org/ebooks/58423', 'en', 2096), +(50230, 'The Engineering Contributions of Wendel Bollman', 'Vogel, Robert M.', '2010-10-20', 12, 'https://www.gutenberg.org/ebooks/33912', 'en', 17064), +(50231, 'Letters of Edward FitzGerald, in Two Volumes. Vol. 2', 'FitzGerald, Edward', '2007-02-06', 17, 'https://www.gutenberg.org/ebooks/20539', 'en', 3830), +(50232, 'Darwinism and Race Progress', 'Haycraft, John Berry', '2014-06-15', 18, 'https://www.gutenberg.org/ebooks/45992', 'en', 1315), +(50233, 'The Masculine Cross\nA History of Ancient and Modern Crosses and Their Connection with the Mysteries of Sex Worship; Also an Account of the Kindred Phases of Phallic Faiths and Practices', 'Anonymous', '2012-04-10', 44, 'https://www.gutenberg.org/ebooks/39414', 'en', 5684), +(50234, 'The Cultivation and Manufacture of Tea', 'Money, Edward', '2016-08-29', 27, 'https://www.gutenberg.org/ebooks/52925', 'en', 2245), +(50235, 'Talvinen tarina', 'Shakespeare, William', '2014-02-08', 22, 'https://www.gutenberg.org/ebooks/44840', 'fi', 16695), +(50236, 'Two Poems Against Pope\nOne Epistle to Mr. A. Pope and the Blatant Beast', 'Welsted, Mr. (Leonard)', '2008-01-09', 17, 'https://www.gutenberg.org/ebooks/24199', 'en', 17065), +(50237, 'The Country of the Blind, and Other Stories', 'Wells, H. G. (Herbert George)', '2004-04-01', 282, 'https://www.gutenberg.org/ebooks/11870', 'en', 5077), +(50238, 'Hardscrabble; or, the fall of Chicago: a tale of Indian warfare', 'Richardson, Major (John)', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/5169', 'en', 1357), +(50239, 'New Hampshire, A Poem; with Notes and Grace Notes', 'Frost, Robert', '2019-01-04', 72, 'https://www.gutenberg.org/ebooks/58611', 'en', 17066), +(50240, 'An Alphabet of History', 'Nesbit, Wilbur D. (Wilbur Dick)', '2012-05-05', 46, 'https://www.gutenberg.org/ebooks/39626', 'en', 9796), +(50241, '錦香亭', 'Su\'anzhuren, active 18th century', '2008-05-02', 16, 'https://www.gutenberg.org/ebooks/25279', 'zh', 1003), +(50242, 'Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years\' War, 1610a', 'Motley, John Lothrop', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/4887', 'en', 4328), +(50243, 'Iceland: Horseback tours in saga land', 'Russell, W. S. C. (Waterman Spaulding Chapman)', '2018-08-08', 7, 'https://www.gutenberg.org/ebooks/57659', 'en', 280), +(50244, 'The Tale of Tommy Fox', 'Bailey, Arthur Scott', '2004-06-01', 20, 'https://www.gutenberg.org/ebooks/5955', 'en', 1817), +(50245, 'A Life for a Life, Volume 3 (of 3)', 'Craik, Dinah Maria Mulock', '2015-03-13', 8, 'https://www.gutenberg.org/ebooks/48483', 'en', 61), +(50246, 'Collected Poems: Volume Two', 'Noyes, Alfred', '2009-12-04', 13, 'https://www.gutenberg.org/ebooks/30599', 'en', 8), +(50247, 'The Pobratim: A Slav Novel', 'Jones, P.', '2011-01-10', 3, 'https://www.gutenberg.org/ebooks/34905', 'en', 17067), +(50248, 'Sexti Properti Elegiarvm: Liber Primvs', 'Propertius, Sextus', '1995-03-01', 49, 'https://www.gutenberg.org/ebooks/237', 'la', 4338), +(50249, 'The Golden Treasury\nOf the Best Songs and Lyrical Poems in the English Language', NULL, '2006-09-09', 134, 'https://www.gutenberg.org/ebooks/19221', 'en', 1054), +(50250, 'The Heavenly Twins', 'Grand, Sarah', '2005-08-01', 36, 'https://www.gutenberg.org/ebooks/8676', 'en', 2019), +(50251, 'Schetsen uit Peru\nDe Aarde en haar volken, Jaargang 1875', 'Marcoy, Paul', '2015-07-30', 8, 'https://www.gutenberg.org/ebooks/49551', 'nl', 371), +(50252, 'The First Epistle of Paul to the Thessalonians', NULL, '2007-10-01', 0, 'https://www.gutenberg.org/ebooks/22860', 'en', 5464), +(50253, 'Hollyhock: A Spirit of Mischief', 'Meade, L. T.', '2009-04-12', 20, 'https://www.gutenberg.org/ebooks/28566', 'en', 2154), +(50254, 'Catalogue of books on philately in the Public Library of the city of Boston', 'Boston Philatelic Society', '2013-10-01', 9, 'https://www.gutenberg.org/ebooks/43857', 'en', 17068), +(50255, 'Real Gold: A Story of Adventure', 'Fenn, George Manville', '2010-10-26', 22, 'https://www.gutenberg.org/ebooks/34139', 'en', 14274), +(50256, 'The Collected Works of William Hazlitt, Vol. 01 (of 12)', 'Hazlitt, William', '2017-11-11', 42, 'https://www.gutenberg.org/ebooks/55932', 'en', 5270), +(50257, 'Robert Annys: Poor Priest. A Tale of the Great Uprising', 'Meyer, Annie Nathan', '2014-08-06', 16, 'https://www.gutenberg.org/ebooks/46519', 'en', 15272), +(50258, 'Thought-Forms', 'Besant, Annie', '2005-07-12', 418, 'https://www.gutenberg.org/ebooks/16269', 'en', 17069), +(50259, 'Social Problems in Porto Rico', 'Fleagle, Fred K.', '2013-06-18', 11, 'https://www.gutenberg.org/ebooks/42985', 'en', 17070), +(50260, 'Ivory, Apes and Peacocks', 'Huneker, James', '2010-01-19', 50, 'https://www.gutenberg.org/ebooks/31017', 'en', 250), +(50261, 'Sten Sture nuorempi ja Kristiina Gyllenstjerna I: Ruotsin Valkyria\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-09-15', 3, 'https://www.gutenberg.org/ebooks/55552', 'fi', 17071), +(50262, 'Histoire de la Révolution française, Tome 08', 'Thiers, Adolphe', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12295', 'fr', 1536), +(50263, 'Gerichtliche Leichen-Oeffnungen. Zweites Hundert.', 'Casper, Johann Ludwig', '2014-09-27', 7, 'https://www.gutenberg.org/ebooks/46979', 'de', 17072), +(50264, '庚巳編', 'Lu, Can', '2008-11-06', 83, 'https://www.gutenberg.org/ebooks/27172', 'zh', 3688), +(50265, 'Wildflowers of the Farm', 'Cooke, Arthur O. (Arthur Owens)', '2004-09-01', 80, 'https://www.gutenberg.org/ebooks/13347', 'en', 17073), +(50266, 'The Tell-Tale: An Original Collection of Moral and Amusing Stories', 'Traill, Catharine Parr Strickland', '2017-04-03', 28, 'https://www.gutenberg.org/ebooks/54480', 'en', 1817), +(50267, 'The Tale of Timber Town', 'Grace, Alfred A. (Alfred Augustus)', '2009-05-21', 11, 'https://www.gutenberg.org/ebooks/28906', 'en', 1916), +(50268, 'Memoirs of Miss Sidney Biddulph\nExtracted from her own Journal, and now first published', 'Sheridan, Frances Chamberlaine', '2013-08-10', 16, 'https://www.gutenberg.org/ebooks/43437', 'en', 1529), +(50269, 'Louise de la Valliere', 'Dumas, Alexandre', '2001-07-01', 182, 'https://www.gutenberg.org/ebooks/2710', 'en', 323), +(50270, 'The Climbers\nA Play in Four Acts', 'Fitch, Clyde', '2005-09-03', 25, 'https://www.gutenberg.org/ebooks/16635', 'en', 508), +(50271, 'A Bullet for Cinderella', 'MacDonald, John D. (John Dann)', '2015-09-10', 79, 'https://www.gutenberg.org/ebooks/49931', 'en', 128), +(50272, 'Fox\'s Book of Martyrs\nOr A History of the Lives, Sufferings, and Triumphant\nDeaths of the Primitive Protestant Martyrs', 'Foxe, John', '2007-08-25', 297, 'https://www.gutenberg.org/ebooks/22400', 'en', 7085), +(50273, 'The Country Housewife and Lady\'s Director in the Management of a House, and the Delights and Profits of a Farm', 'Bradley, Richard', '2005-01-01', 40, 'https://www.gutenberg.org/ebooks/7262', 'en', 5980), +(50274, 'The Book of Princes and Princesses', 'Lang, Mrs.', '2014-06-30', 52, 'https://www.gutenberg.org/ebooks/46145', 'en', 17074), +(50275, 'Step Lively! A Carload of the Funniest Yarns that Ever Crossed the Footlights', 'Niblo, George', '2014-10-12', 13, 'https://www.gutenberg.org/ebooks/47097', 'en', 190), +(50276, 'Crónicas de Marianela', 'Palma, Angélica', '2010-12-04', 27, 'https://www.gutenberg.org/ebooks/34565', 'es', 179), +(50277, 'The Right Way the Safe Way\nProved by Emancipation in the British West Indies, and Elsewhere', NULL, '2015-09-20', 5, 'https://www.gutenberg.org/ebooks/50020', 'en', 125), +(50278, 'Les tribulations d\'un chinois en Chine', 'Verne, Jules', '2004-11-26', 16, 'https://www.gutenberg.org/ebooks/14162', 'fr', 17075), +(50279, 'Jerry', 'Webster, Jean', '2007-01-14', 15, 'https://www.gutenberg.org/ebooks/20357', 'en', 48), +(50280, 'A Thorny Path — Volume 06', 'Ebers, Georg', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/5535', 'en', 1814), +(50281, 'Verkettung: Gedichte', 'Gumpert, Martin', '2014-01-07', 10, 'https://www.gutenberg.org/ebooks/44612', 'de', 2100), +(50282, 'The Shooting of Dan McGrew, A Novel. Based on the Famous Poem of Robert Service', 'Service, Robert W. (Robert William)', '2011-05-26', 27, 'https://www.gutenberg.org/ebooks/36232', 'en', 61), +(50283, 'The Story of a Dark Plot; Or, Tyranny on the Frontier', 'A.L.O.C.', '2007-05-04', 25, 'https://www.gutenberg.org/ebooks/21285', 'en', 17076), +(50284, 'Alaska, Its Southern Coast and the Sitkan Archipelago', 'Scidmore, Eliza Ruhamah', '2016-08-11', 14, 'https://www.gutenberg.org/ebooks/52777', 'en', 5908), +(50285, 'Glasses', 'James, Henry', '1998-02-01', 48, 'https://www.gutenberg.org/ebooks/1195', 'en', 109), +(50286, 'Ti-Ti-Pu: A Boy of Red River', 'Oxley, J. Macdonald (James Macdonald)', '2010-09-16', 8, 'https://www.gutenberg.org/ebooks/33740', 'en', 5027), +(50287, 'The Little Black Princess: A True Tale of Life in the Never-Never Land', 'Gunn, Jeannie', '2018-05-23', 17, 'https://www.gutenberg.org/ebooks/57205', 'en', 195), +(50288, 'Historic Tales: The Romance of Reality. Vol. 08 (of 15), Russian', 'Morris, Charles', '2008-05-27', 32, 'https://www.gutenberg.org/ebooks/25625', 'en', 473), +(50289, 'Wanderings in Wessex\nAn Exploration of the Southern Realm from Itchen to Otter', 'Holmes, Edric', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11410', 'en', 776), +(50290, 'The Elementary Forms of the Religious Life', 'Durkheim, Émile', '2012-11-13', 342, 'https://www.gutenberg.org/ebooks/41360', 'en', 655), +(50291, 'A Day\'s Ride: A Life\'s Romance', 'Lever, Charles James', '2010-06-04', 15, 'https://www.gutenberg.org/ebooks/32692', 'en', 61), +(50292, 'The Boy Scout Aviators', 'Durston, George', '2004-05-01', 31, 'https://www.gutenberg.org/ebooks/5707', 'en', 1002), +(50293, 'The World\'s Great Sermons, Volume 05: Guthrie to Mozley', NULL, '2013-12-14', 18, 'https://www.gutenberg.org/ebooks/44420', 'en', 3021), +(50294, 'Collection complète des oeuvres de l\'Abbé de Mably, Volume 2 (of 15)', 'Mably, Gabriel Bonnot de', '2016-11-10', 10, 'https://www.gutenberg.org/ebooks/53497', 'fr', 2807), +(50295, 'Three Voyages for the Discovery of a Northwest Passage from the Atlantic to the Pacific, and Narrative of an Attempt to Reach the North Pole, Volume 2', 'Parry, William Edward, Sir', '2004-12-14', 13, 'https://www.gutenberg.org/ebooks/14350', 'en', 9423), +(50296, 'The Theory and Practice of Perspective', 'Storey, G. A. (George Adolphus)', '2006-12-22', 123, 'https://www.gutenberg.org/ebooks/20165', 'en', 7854), +(50297, 'An Open Letter to the Right Honorable David Lloyd George\nPrime Minister of Great Britain', 'Lajpat Rai, Lala', '2012-06-01', 7, 'https://www.gutenberg.org/ebooks/39874', 'en', 2957), +(50298, 'Uncle Wiggily\'s Travels', 'Garis, Howard Roger', '2005-03-08', 61, 'https://www.gutenberg.org/ebooks/15282', 'en', 17077), +(50299, 'The Princess Nobody: A Tale of Fairyland', 'Lang, Andrew', '2016-07-10', 54, 'https://www.gutenberg.org/ebooks/52545', 'en', 580), +(50300, 'The Boy Scouts Under Fire in Mexico', 'Goldfrap, John Henry', '2011-04-30', 14, 'https://www.gutenberg.org/ebooks/36000', 'en', 2994), +(50301, 'The Prince', 'Machiavelli, Niccolò', '2018-04-23', 281, 'https://www.gutenberg.org/ebooks/57037', 'en', 17078), +(50302, 'Index of the Project Gutenberg Works of Walt Whitman', 'Whitman, Walt', '2019-02-08', 17, 'https://www.gutenberg.org/ebooks/58843', 'en', 198), +(50303, 'Breves palavras sobre a cultura da Oliveira', 'Nunes d\'Almeida, Avelino', '2010-08-29', 2, 'https://www.gutenberg.org/ebooks/33572', 'pt', 15704), +(50304, 'Mexico\r\nIts Ancient and Modern Civilisation, History, Political Conditions, Topography, Natural Resources, Industries and General Development', 'Enock, C. Reginald (Charles Reginald)', '2007-04-02', 31, 'https://www.gutenberg.org/ebooks/20959', 'en', 17079), +(50305, 'A Pictorial Booklet on Early Jamestown Commodities and Industries', 'Hudson, J. Paul', '2012-06-25', 7, 'https://www.gutenberg.org/ebooks/40080', 'en', 7365), +(50306, 'Braddock\'s Road and Three Relative Papers', 'Hulbert, Archer Butler', '2012-10-23', 9, 'https://www.gutenberg.org/ebooks/41152', 'en', 4143), +(50307, 'The Slaves of the Padishah', 'Jókai, Mór', '2012-03-04', 28, 'https://www.gutenberg.org/ebooks/39048', 'en', 2490), +(50308, 'Sermons by the Fathers of the Congregation of St. Paul the Apostle, Volume VI.', 'Church of St. Paul the Apostle (New York, N.Y.)', '2019-07-27', 209, 'https://www.gutenberg.org/ebooks/59991', 'en', 12427), +(50309, '李賀詩選', 'Li, He', '2008-05-10', 24, 'https://www.gutenberg.org/ebooks/25417', 'zh', 9521), +(50310, 'Plus fort que Sherlock Holmès', 'Twain, Mark', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11622', 'fr', 179), +(50311, 'Ambrose Lavendale, Diplomat', 'Oppenheim, E. Phillips (Edward Phillips)', '2017-10-16', 14, 'https://www.gutenberg.org/ebooks/55760', 'en', 409), +(50312, 'The Star Hyacinths', 'Schmitz, James H.', '2008-08-12', 72, 'https://www.gutenberg.org/ebooks/26292', 'en', 26), +(50313, 'The Bible, King James version, Book 18: Job', 'Anonymous', '2005-04-01', 51, 'https://www.gutenberg.org/ebooks/8018', 'en', 8458), +(50314, 'The Life and Times of Ulric Zwingli', 'Hottinger, Johann Jakob', '2010-02-14', 13, 'https://www.gutenberg.org/ebooks/31225', 'en', 17080), +(50315, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 05 of 12)', 'Frazer, James George', '2013-08-30', 51, 'https://www.gutenberg.org/ebooks/43605', 'en', 5025), +(50316, 'A Dark Night\'s Work', 'Gaskell, Elizabeth Cleghorn', '2001-02-01', 74, 'https://www.gutenberg.org/ebooks/2522', 'en', 45), +(50317, 'Outdoor Sketching\nFour Talks Given before the Art Institute of Chicago; The Scammon Lectures, 1914', 'Smith, Francis Hopkinson', '2008-11-27', 78, 'https://www.gutenberg.org/ebooks/27340', 'en', 17081), +(50318, 'The White People', 'Burnett, Frances Hodgson', '2006-03-15', 153, 'https://www.gutenberg.org/ebooks/459', 'en', 2389), +(50319, 'Ved Vejen', 'Bang, Herman', '2004-08-13', 24, 'https://www.gutenberg.org/ebooks/13175', 'da', 2590), +(50320, 'Man, Past and Present', 'Keane, A. H. (Augustus Henry)', '2011-03-26', 62, 'https://www.gutenberg.org/ebooks/35685', 'en', 3105), +(50321, 'The Swoop! or, How Clarence Saved England: A Tale of the Great Invasion', 'Wodehouse, P. G. (Pelham Grenville)', '2004-12-01', 150, 'https://www.gutenberg.org/ebooks/7050', 'en', 637), +(50322, 'A Practical Handbook on the Distillation of Alcohol from Farm Products', 'Wright, F. B. (Frederic B.)', '2014-07-23', 32, 'https://www.gutenberg.org/ebooks/46377', 'en', 17082), +(50323, 'Poems in Two Volumes, Volume 2', 'Wordsworth, William', '2005-09-01', 60, 'https://www.gutenberg.org/ebooks/8824', 'en', 54), +(50324, 'Under the Dragon Flag\nMy Experiences in the Chino-Japanese War', 'Allan, James', '2005-08-01', 37, 'https://www.gutenberg.org/ebooks/16407', 'en', 17083), +(50325, 'Á ventura', 'Pascoais, Teixeira de', '2007-09-16', 19, 'https://www.gutenberg.org/ebooks/22632', 'pt', 1638), +(50326, 'The Children\'s Book of Christmas Stories', NULL, '2009-03-11', 29, 'https://www.gutenberg.org/ebooks/28308', 'en', 585), +(50327, 'Dionysius of Halicarnassus On Literary Composition\nBeing the Greek Text of the De Compositione Verborum', 'Dionysius, of Halicarnassus', '2015-10-14', 27, 'https://www.gutenberg.org/ebooks/50212', 'grc', 68), +(50328, 'Le vicomte de Bragelonne, Tome III.', 'Dumas, Alexandre', '2004-11-04', 44, 'https://www.gutenberg.org/ebooks/13949', 'fr', 98), +(50329, 'Mashi, and Other Stories', 'Tagore, Rabindranath', '2010-12-27', 88, 'https://www.gutenberg.org/ebooks/34757', 'en', 7901), +(50330, 'A Romany of the Snows, vol. 3\r\nBeing a Continuation of the Personal Histories of \"Pierre and His People\" and the Last Existing Records of Pretty Pierre', 'Parker, Gilbert', '2004-07-01', 30, 'https://www.gutenberg.org/ebooks/6182', 'en', 1887), +(50331, 'Recollections of a Confederate Staff Officer', 'Sorrel, G. Moxley (Gilbert Moxley)', '2016-05-22', 26, 'https://www.gutenberg.org/ebooks/52121', 'en', 2723), +(50332, 'Harper\'s Young People, April 5, 1881\nAn Illustrated Weekly', 'Various', '2014-03-24', 3, 'https://www.gutenberg.org/ebooks/45196', 'en', 479), +(50333, 'The Mail Pay on the Burlington Railroad\r\nStatements of Car Space and All Facilities Furnished for the Government Mails and for Express and Passengers in All Passenger Trains on the Chicago, Burlington and Quincy Railroad', NULL, '2011-06-19', 5, 'https://www.gutenberg.org/ebooks/36464', 'en', 13245), +(50334, 'The Inside of the Cup — Volume 08', 'Churchill, Winston', '2004-10-17', 23, 'https://www.gutenberg.org/ebooks/5363', 'en', 4927), +(50335, 'London Souvenirs', 'Heckethorn, Charles William', '2013-10-26', 25, 'https://www.gutenberg.org/ebooks/44044', 'en', 17084), +(50336, 'Second Plays', 'Milne, A. A. (Alan Alexander)', '2005-01-19', 53, 'https://www.gutenberg.org/ebooks/14734', 'en', 317), +(50337, 'Kun rauhan mies sotaa kävi', 'Zschokke, Heinrich', '2007-02-01', 3, 'https://www.gutenberg.org/ebooks/20501', 'fi', 61), +(50338, 'Motor Boat Boys Among the Florida Keys; Or, The Struggle for the Leadership', 'Arundel, Louis', '2012-12-02', 28, 'https://www.gutenberg.org/ebooks/41536', 'en', 2722), +(50339, 'Overbeck', 'Atkinson, J. Beavington', '2008-04-15', 11, 'https://www.gutenberg.org/ebooks/25073', 'en', 17085), +(50340, 'D\'Orsay; or, The complete dandy', 'Shore, W. Teignmouth (William Teignmouth)', '2018-02-16', 9, 'https://www.gutenberg.org/ebooks/56581', 'en', 17086), +(50341, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 394, October 17, 1829', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11246', 'en', 133), +(50342, 'Stolen Treasure', 'Pyle, Howard', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10394', 'en', 759), +(50343, 'Kelly of the Foreign Legion: Letters of Légionnaire Russell A. Kelly', 'Kelly, Russell Anthony', '2018-07-06', 14, 'https://www.gutenberg.org/ebooks/57453', 'en', 873), +(50344, 'A Man\'s World', 'Edwards, Albert', '2014-02-11', 9, 'https://www.gutenberg.org/ebooks/44878', 'en', 61), +(50345, 'Harper\'s Round Table, August 27, 1895', 'Various', '2010-07-08', 5, 'https://www.gutenberg.org/ebooks/33116', 'en', 668), +(50346, 'The Broken Font: A Story of the Civil War, Vol. 1 (of 2)', 'Sherer, Moyle', '2013-07-20', 16, 'https://www.gutenberg.org/ebooks/43261', 'en', 4665), +(50347, 'Endres Tuchers Baumeisterbuch der Stadt Nürnberg', 'Tucher, Endres', '2015-04-12', 12, 'https://www.gutenberg.org/ebooks/48689', 'de', 17087), +(50348, 'Egmont', 'Goethe, Johann Wolfgang von', '2000-04-01', 69, 'https://www.gutenberg.org/ebooks/2146', 'de', 1298), +(50349, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Zweiter Band', 'Macaulay, Thomas Babington Macaulay, Baron', '2009-12-29', 14, 'https://www.gutenberg.org/ebooks/30793', 'de', 641), +(50350, 'The Romance of a Mummy and Egypt\r\nThe Works of Theophile Gautier, Volume 5', 'Gautier, Théophile', '2009-01-06', 36, 'https://www.gutenberg.org/ebooks/27724', 'en', 2589), +(50351, 'The Daughter of the Commandant', 'Pushkin, Aleksandr Sergeevich', '2004-09-22', 106, 'https://www.gutenberg.org/ebooks/13511', 'en', 98), +(50352, 'Azalea\'s Silver Web', 'Peattie, Elia Wilkinson', '2017-08-08', 9, 'https://www.gutenberg.org/ebooks/55304', 'en', 17088), +(50353, 'Red Eve', 'Haggard, H. Rider (Henry Rider)', '2006-04-06', 52, 'https://www.gutenberg.org/ebooks/3094', 'en', 17089), +(50354, 'Encyclopaedia Britannica, 11th Edition, \"Cincinnatus\" to \"Cleruchy\"\r\nVolume 6, Slice 4', 'Various', '2010-03-14', 59, 'https://www.gutenberg.org/ebooks/31641', 'en', 1081), +(50355, 'Gascoyne, the Sandal-Wood Trader', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 31, 'https://www.gutenberg.org/ebooks/23384', 'en', 3535), +(50356, 'The Infidel: A Story of the Great Revival', 'Braddon, M. E. (Mary Elizabeth)', '2015-12-12', 16, 'https://www.gutenberg.org/ebooks/50676', 'en', 8968), +(50357, 'Les Cenci', 'Stendhal', '1997-02-01', 41, 'https://www.gutenberg.org/ebooks/801', 'fr', 16), +(50358, 'Captain Ted: A Boy\'s Adventures Among Hiding Slackers in the Great Georgia Swamp', 'Pendleton, Louis', '2010-11-15', 18, 'https://www.gutenberg.org/ebooks/34333', 'en', 2273), +(50359, 'The Heroic Enthusiasts (Gli Eroici Furori) Part the First\r\nAn Ethical Poem', 'Bruno, Giordano', '2006-11-15', 70, 'https://www.gutenberg.org/ebooks/19817', 'en', 17090), +(50360, 'The Adventures of Joel Pepper', 'Sidney, Margaret', '2005-02-01', 62, 'https://www.gutenberg.org/ebooks/7434', 'en', 153), +(50361, 'Die Bagdadbahn', 'Rohrbach, Paul', '2014-08-28', 16, 'https://www.gutenberg.org/ebooks/46713', 'de', 17091), +(50362, 'Jack Rustig', 'Marryat, Frederick', '2005-06-14', 9, 'https://www.gutenberg.org/ebooks/16063', 'nl', 1763), +(50363, 'Sparkling Gems of Race Knowledge Worth Reading\r\nA compendium of valuable information and wise suggestions that will inspire noble effort at the hands of every race-loving man, woman, and child.', NULL, '2007-08-06', 29, 'https://www.gutenberg.org/ebooks/22256', 'en', 180), +(50364, 'The Toilers of the Field', 'Jefferies, Richard', '2008-12-13', 20, 'https://www.gutenberg.org/ebooks/27516', 'en', 10904), +(50365, 'Leonora', 'Bennett, Arnold', '2004-10-12', 35, 'https://www.gutenberg.org/ebooks/13723', 'en', 1567), +(50366, 'Donald Ross of Heimra (Volume 2 of 3)', 'Black, William', '2013-06-28', 11, 'https://www.gutenberg.org/ebooks/43053', 'en', 1922), +(50367, 'Dora Thorne', 'Brame, Charlotte M.', '2000-10-01', 22, 'https://www.gutenberg.org/ebooks/2374', 'en', 17092), +(50368, 'The Life of Nancy', 'Jewett, Sarah Orne', '2010-03-02', 20, 'https://www.gutenberg.org/ebooks/31473', 'en', 9533), +(50369, 'Poetry', 'Oldham, Thomas', '2013-02-23', 15, 'https://www.gutenberg.org/ebooks/42181', 'en', 8), +(50370, 'The Epistle of Paul the Apostle to the Philippians', NULL, '2007-10-01', 0, 'https://www.gutenberg.org/ebooks/22858', 'en', 15031), +(50371, 'Bleeding Armenia: Its history and horrors under the curse of Islam', 'Williams, Augustus Warner', '2015-08-01', 24, 'https://www.gutenberg.org/ebooks/49569', 'en', 3565), +(50372, 'La méchante femme mise à la raison\nComédie', 'Shakespeare, William', '2006-09-08', 36, 'https://www.gutenberg.org/ebooks/19219', 'fr', 907), +(50373, 'Dans le cloaque\nNotes d\'un membre de la Commission d\'enquête sur l\'affaire Rochette', 'Barrès, Maurice', '2017-07-17', 20, 'https://www.gutenberg.org/ebooks/55136', 'fr', 17093), +(50374, 'A Bilateral Division of the Parietal Bone in a Chimpanzee; with a Special Reference to the Oblique Sutures in the Parietal', 'Hrdlička, Aleš', '2010-10-19', 16, 'https://www.gutenberg.org/ebooks/34101', 'en', 17094), +(50375, 'Höxter und Corvey: Erzählung', 'Raabe, Wilhelm', '2015-11-13', 6, 'https://www.gutenberg.org/ebooks/50444', 'de', 138), +(50376, 'Quer Durch Borneo\r\nErgebnisse seiner Reisen in den Jahren 1894, 1896-97 und 1898-1900; Zweiter Teil', 'Nieuwenhuis, Anton Willem', '2005-12-23', 17, 'https://www.gutenberg.org/ebooks/17383', 'de', 14698), +(50377, 'A Book for Kids', 'Dennis, C. J. (Clarence James)', '2005-07-09', 76, 'https://www.gutenberg.org/ebooks/16251', 'en', 8237), +(50378, 'Aloys', 'Lafferty, R. A.', '2016-03-29', 64, 'https://www.gutenberg.org/ebooks/51596', 'en', 179), +(50379, 'Tess of the Storm Country', 'White, Grace Miller', '2007-07-13', 36, 'https://www.gutenberg.org/ebooks/22064', 'en', 2287), +(50380, 'Zicci: A Tale — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 60, 'https://www.gutenberg.org/ebooks/7606', 'en', 109), +(50381, 'Forty Years Among the Indians\r\nA true yet thrilling narrative of the author\'s experiences among the natives', 'Jones, Daniel W. (Daniel Webster)', '2014-08-06', 81, 'https://www.gutenberg.org/ebooks/46521', 'en', 17095), +(50382, 'U.S. Copyright Renewals, 1973 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11848', 'en', 4170), +(50383, 'A Seasonable Warning and Caution against the Insinuations of Papists and Jacobites in favour of the Pretender\nBeing a Letter from an Englishman at the Court of Hanover', 'Defoe, Daniel', '2011-07-08', 19, 'https://www.gutenberg.org/ebooks/36656', 'en', 2446), +(50384, 'Mutter und Kind: Ein Gedicht in sieben Gesängen', 'Hebbel, Friedrich', '2003-05-01', 11, 'https://www.gutenberg.org/ebooks/4083', 'de', 510), +(50385, 'Ihmispeto: Siveysromaani', 'Zola, Émile', '2016-06-12', 9, 'https://www.gutenberg.org/ebooks/52313', 'fi', 1850), +(50386, 'The Magic Makers and the Bramble Bush Man', 'Sutton, Margaret', '2019-01-06', 16, 'https://www.gutenberg.org/ebooks/58629', 'en', 4426), +(50387, 'The White Linen Nurse', 'Abbott, Eleanor Hallowell', '2004-12-29', 46, 'https://www.gutenberg.org/ebooks/14506', 'en', 7779), +(50388, 'Critical Miscellanies (Vol. 1 of 3), Essay 1: Robespierre', 'Morley, John', '2007-03-03', 27, 'https://www.gutenberg.org/ebooks/20733', 'en', 11390), +(50389, 'The Rise of Cotton Mills in the South', 'Mitchell, Broadus', '2011-10-18', 10, 'https://www.gutenberg.org/ebooks/37784', 'en', 17096), +(50390, 'The Exploits of Elaine', 'Reeve, Arthur B. (Arthur Benjamin)', '2004-02-01', 31, 'https://www.gutenberg.org/ebooks/5151', 'en', 6236), +(50391, 'The Toilet of Flora\r\nor, A collection of the most simple and approved methods of preparing baths, essences, pomatums, powders, perfumes, and sweet-scented waters. With receipts for cosmetics of every kind, that can smooth and brighten the skin, give force to beauty, and take off the appearance of old age and decay', 'Buc\'hoz, Pierre-Joseph', '2013-11-24', 39, 'https://www.gutenberg.org/ebooks/44276', 'en', 17097), +(50392, 'Surpreza\nEntre-acto original', 'Mascarenhas, Miguel J. T.', '2008-04-29', 11, 'https://www.gutenberg.org/ebooks/25241', 'pt', 3231), +(50393, 'The Damned', 'Blackwood, Algernon', '2004-02-01', 173, 'https://www.gutenberg.org/ebooks/11074', 'en', 461), +(50394, 'The Religion of Ancient Palestine in the Second Millenium B.C.', 'Cook, Stanley Arthur', '2012-12-25', 13, 'https://www.gutenberg.org/ebooks/41704', 'en', 17098), +(50395, 'K. K. K. Sketches, Humorous and Didactic\r\nTreating the More Important Events of the Ku-Klux-Klan Movement in the South.\r\nWith a Discussion of the Causes which gave Rise to it, and the Social and Political Issues Emanating from it.', 'Beard, James Melville', '2010-08-02', 11, 'https://www.gutenberg.org/ebooks/33324', 'en', 1515), +(50396, 'Helianth. Band 1\r\nBilder aus dem Leben zweier Menschen von heute und aus der norddeutschen Tiefebene', 'Schaeffer, Albrecht', '2018-08-09', 8, 'https://www.gutenberg.org/ebooks/57661', 'de', 549), +(50397, 'Our Casualty, and Other Stories\r\n1918', 'Birmingham, George A.', '2008-01-21', 17, 'https://www.gutenberg.org/ebooks/24393', 'en', 13668), +(50398, 'Comic History of the United States', 'Nye, Bill', '2007-05-13', 166, 'https://www.gutenberg.org/ebooks/21427', 'en', 190), +(50399, 'Genesis A\nTranslated from the Old English', NULL, '2005-04-13', 33, 'https://www.gutenberg.org/ebooks/15612', 'en', 5878), +(50400, 'How to Travel\r\nHints, Advice, and Suggestions to Travelers by Land and Sea all over the Globe.', 'Knox, Thomas Wallace', '2014-03-17', 23, 'https://www.gutenberg.org/ebooks/45162', 'en', 7877), +(50401, 'A History of the Early Part of the Reign of James the Second', 'Fox, Charles James', '2003-07-01', 27, 'https://www.gutenberg.org/ebooks/4245', 'en', 3001), +(50402, 'A Reconstructed Marriage', 'Barr, Amelia E.', '2011-06-21', 20, 'https://www.gutenberg.org/ebooks/36490', 'en', 705), +(50403, 'Dr. Jonathan', 'Churchill, Winston', '2004-10-19', 13, 'https://www.gutenberg.org/ebooks/5397', 'en', 17099), +(50404, 'Watt\'s Songs Against Evil', 'Watts, Isaac', '2011-09-26', 8, 'https://www.gutenberg.org/ebooks/37542', 'en', 17100), +(50405, 'Aaveiden näkijä eli Kuvauksia Nordlandista', 'Lie, Jonas', '2008-03-31', 17, 'https://www.gutenberg.org/ebooks/24969', 'fi', 286), +(50406, 'Observations on the Diseases of Seamen', 'Blane, Gilbert, Sir', '2016-09-08', 10, 'https://www.gutenberg.org/ebooks/53007', 'en', 17101), +(50407, 'Selections from Ancient Irish Poetry', NULL, '2010-04-17', 62, 'https://www.gutenberg.org/ebooks/32030', 'en', 17102), +(50408, 'Twenty Years of Hus\'ling', 'Johnston, J. P. (James Perry)', '2008-04-18', 20, 'https://www.gutenberg.org/ebooks/25087', 'en', 17103), +(50409, 'Poems from the Inner Life', 'Doten, Lizzie', '2018-02-15', 25, 'https://www.gutenberg.org/ebooks/56575', 'en', 350), +(50410, 'Kitty\'s Class Day and Other Stories', 'Alcott, Louisa May', '2003-12-01', 130, 'https://www.gutenberg.org/ebooks/10360', 'en', 112), +(50411, 'Lady Bountiful', 'Birmingham, George A.', '2008-01-23', 17, 'https://www.gutenberg.org/ebooks/24155', 'en', 13668), +(50412, 'Facino Cane', 'Balzac, Honoré de', '2004-09-22', 30, 'https://www.gutenberg.org/ebooks/1737', 'en', 58), +(50413, 'Dickens and His Illustrators\r\nCruikshank, Seymour, Buss, \"Phiz,\" Cattermole, Leech, Doyle, Stanfield, Maclise, Tenniel, Frank Stone, Landseer, Palmer, Topham, Marcus Stone, and Luke Fildes\r\n2nd. Ed.', 'Kitton, Frederic George', '2012-08-04', 12, 'https://www.gutenberg.org/ebooks/40410', 'en', 9799), +(50414, 'Guds Fred', 'Nansen, Peter', '2013-07-24', 11, 'https://www.gutenberg.org/ebooks/43295', 'da', 6055), +(50415, 'The Botanical Magazine, Vol. 04\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2006-03-14', 37, 'https://www.gutenberg.org/ebooks/17979', 'en', 13173), +(50416, 'New Apples in the Garden', 'Neville, Kris', '2009-12-26', 22, 'https://www.gutenberg.org/ebooks/30767', 'en', 26), +(50417, 'Uncle Wiggily\'s Automobile', 'Garis, Howard Roger', '2019-07-30', 1219, 'https://www.gutenberg.org/ebooks/60017', 'en', 1602), +(50418, 'Blood and Sand', 'Blasco Ibáñez, Vicente', '2017-02-22', 14, 'https://www.gutenberg.org/ebooks/54222', 'en', 15537), +(50419, 'Histoire de St. Louis, Roi de France', 'Bury, Richard Girard de', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/12437', 'fr', 10974), +(50420, 'An Account of the Conquest of Peru', 'Sancho, Pedro', '2008-09-12', 15, 'https://www.gutenberg.org/ebooks/26602', 'en', 2884), +(50421, 'The Literary Remains of Samuel Taylor Coleridge, Volume 1', 'Coleridge, Samuel Taylor', '2005-07-01', 26, 'https://www.gutenberg.org/ebooks/8488', 'en', 2156), +(50422, 'Römische Geschichte — Band 1', 'Mommsen, Theodor', '2002-02-01', 60, 'https://www.gutenberg.org/ebooks/3060', 'de', 6793), +(50423, 'Viaggio di un povero letterato', 'Panzini, Alfredo', '2013-03-16', 13, 'https://www.gutenberg.org/ebooks/42347', 'it', 892), +(50424, 'The Battle and the Breeze', 'Ballantyne, R. M. (Robert Michael)', '2007-11-06', 24, 'https://www.gutenberg.org/ebooks/23370', 'en', 3242), +(50425, 'Pollyanna', 'Porter, Eleanor H. (Eleanor Hodgman)', '2009-05-01', 26, 'https://www.gutenberg.org/ebooks/28798', 'en', 7735), +(50426, 'Hallowe\'en at Merryvale', 'Burnett, Alice Hale', '2005-11-23', 39, 'https://www.gutenberg.org/ebooks/17145', 'en', 17104), +(50427, 'The Planet Mappers', 'Evans, E. Everett (Edward Everett)', '2015-12-13', 69, 'https://www.gutenberg.org/ebooks/50682', 'en', 7815), +(50428, 'Alice\'s Blighted Profession: A Sketch for Girls', 'Clifford, Helen C.', '2014-12-11', 10, 'https://www.gutenberg.org/ebooks/47635', 'en', 17105), +(50429, 'The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 6, Clement', 'Wake, William', '2004-09-01', 11, 'https://www.gutenberg.org/ebooks/6512', 'en', 7966), +(50430, 'Archeological Investigations\nBureau of American Ethnology, Bulletin 76', 'Fowke, Gerard', '2006-07-28', 33, 'https://www.gutenberg.org/ebooks/18931', 'en', 17106), +(50431, 'The French Revolution', 'Belloc, Hilaire', '2011-02-08', 124, 'https://www.gutenberg.org/ebooks/35215', 'en', 1536), +(50432, 'Letters of Felix Mendelssohn to Ignaz and Charlotte Moscheles', 'Mendelssohn-Bartholdy, Felix', '2016-04-13', 8, 'https://www.gutenberg.org/ebooks/51750', 'en', 17107), +(50433, 'The Pursuit of the House-Boat\nBeing Some Further Account of the Divers Doings of the Associated Shades, under the Leadership of Sherlock Holmes, Esq.', 'Bangs, John Kendrick', '2005-07-13', 21, 'https://www.gutenberg.org/ebooks/16097', 'en', 430), +(50434, 'The Younger Sister: A Novel, Vol. I.', 'Hubback, Mrs. (Catherine-Anne Austen)', '2017-01-20', 7, 'https://www.gutenberg.org/ebooks/54010', 'en', 17108), +(50435, 'Little Meg\'s Children', 'Stretton, Hesba', '2009-11-28', 16, 'https://www.gutenberg.org/ebooks/30555', 'en', 11271), +(50436, 'Alice, or the Mysteries — Book 06', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 80, 'https://www.gutenberg.org/ebooks/9768', 'en', 137), +(50437, 'Das Märchen von dem Myrtenfräulein', 'Brentano, Clemens', '2000-11-01', 44, 'https://www.gutenberg.org/ebooks/2380', 'de', 900), +(50438, 'Boy Scouts on the Great Divide; Or, The Ending of the Trail', 'Fletcher, Archibald Lee', '2010-03-03', 8, 'https://www.gutenberg.org/ebooks/31487', 'en', 1002), +(50439, 'Complete Project Gutenberg Oliver Wendell Holmes, Sr. Works', 'Holmes, Oliver Wendell', '2004-10-20', 28, 'https://www.gutenberg.org/ebooks/3252', 'en', 2645), +(50440, 'The Winter Solstice Altars at Hano Pueblo', 'Fewkes, Jesse Walter', '2013-02-23', 10, 'https://www.gutenberg.org/ebooks/42175', 'en', 15102), +(50441, 'Parish Papers', 'Macleod, Norman', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/12605', 'en', 13017), +(50442, 'Essay on the Creative Imagination', 'Ribot, Th. (Théodule)', '2008-08-25', 48, 'https://www.gutenberg.org/ebooks/26430', 'en', 17109), +(50443, 'Pieniä Runoja Suomen Pojille Ratoxi', 'Various', '2014-11-20', 10, 'https://www.gutenberg.org/ebooks/47407', 'fi', 1171), +(50444, 'The Wentworth Letter', 'Smith, Joseph, Jr.', '2004-10-01', 38, 'https://www.gutenberg.org/ebooks/6720', 'en', 17110), +(50445, 'In Search of El Dorado', 'Collingwood, Harry', '2007-10-21', 15, 'https://www.gutenberg.org/ebooks/23142', 'en', 323), +(50446, 'The Works of Guy de Maupassant, Volume 4', 'Maupassant, Guy de', '2005-12-22', 25, 'https://www.gutenberg.org/ebooks/17377', 'en', 1112); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(50447, 'Vorna', 'Railo, Eino', '2016-03-26', 4, 'https://www.gutenberg.org/ebooks/51562', 'fi', 175), +(50448, 'A Manual of Wood Carving', 'Leland, Charles Godfrey', '2013-06-15', 58, 'https://www.gutenberg.org/ebooks/42949', 'en', 17111), +(50449, 'The Task of Social Hygiene', 'Ellis, Havelock', '2007-07-17', 56, 'https://www.gutenberg.org/ebooks/22090', 'en', 5443), +(50450, 'A Letter to Dion', 'Mandeville, Bernard', '2009-07-21', 17, 'https://www.gutenberg.org/ebooks/29478', 'en', 17112), +(50451, 'Mr. Punch\'s Railway Book', NULL, '2011-01-21', 82, 'https://www.gutenberg.org/ebooks/35027', 'en', 564), +(50452, 'Anno Domini 2071\nTranslated from the Dutch Original', 'Harting, Pieter', '2014-04-08', 26, 'https://www.gutenberg.org/ebooks/45350', 'en', 6716), +(50453, 'The Mariner of St. Malo : A chronicle of the voyages of Jacques Cartier', 'Leacock, Stephen', '2003-05-01', 42, 'https://www.gutenberg.org/ebooks/4077', 'en', 6591), +(50454, 'Curiosities of Literature, Vol. 1', 'Disraeli, Isaac', '2007-05-26', 75, 'https://www.gutenberg.org/ebooks/21615', 'en', 1694), +(50455, 'Broken Homes: A Study of Family Desertion and its Social Treatment', 'Colcord, Joanna C. (Joanna Carver)', '2005-03-20', 7, 'https://www.gutenberg.org/ebooks/15420', 'en', 17113), +(50456, 'The Practical Magician and Ventriloquist\'s Guide\r\nA practical manual of fireside magic and conjuring illusions, containing also complete instructions for acquiring and practising the art of ventriloquism.', 'Anonymous', '2016-10-08', 35, 'https://www.gutenberg.org/ebooks/53235', 'en', 1530), +(50457, 'Ecstasy, A Study of Happiness: A Novel', 'Couperus, Louis', '2011-10-16', 47, 'https://www.gutenberg.org/ebooks/37770', 'en', 8489), +(50458, 'The Life and Adventures of Ben Hogan, the Wickedest Man in the World', 'Hogan, Ben (Benedict)', '2013-11-25', 16, 'https://www.gutenberg.org/ebooks/44282', 'en', 17114), +(50459, 'The Orations of Marcus Tullius Cicero, Volume 4', 'Cicero, Marcus Tullius', '2004-02-01', 81, 'https://www.gutenberg.org/ebooks/11080', 'en', 16011), +(50460, 'The Grandeur That Was Rome: a survey of Roman culture and civilisation', 'Stobart, J. C. (John Clarke)', '2018-03-15', 18, 'https://www.gutenberg.org/ebooks/56747', 'en', 6793), +(50461, 'The Irish Fairy Book', NULL, '2010-05-01', 109, 'https://www.gutenberg.org/ebooks/32202', 'en', 2500), +(50462, 'American Military Insignia, 1800-1851', 'Campbell, J. Duncan, (James Duncan)', '2012-02-02', 30, 'https://www.gutenberg.org/ebooks/38738', 'en', 17115), +(50463, 'The Rape of Lucrece', 'Shakespeare, William', '1998-10-01', 112, 'https://www.gutenberg.org/ebooks/1505', 'en', 8), +(50464, 'Stories from Virgil', 'Church, Alfred John', '2012-08-30', 5, 'https://www.gutenberg.org/ebooks/40622', 'en', 12026), +(50465, 'Guy Mannering; or, The Astrologer — Complete', 'Scott, Walter', '2004-08-19', 113, 'https://www.gutenberg.org/ebooks/5999', 'en', 10988), +(50466, 'The Savage South Seas', 'Elkington, E. Way (Ernest Way)', '2018-08-14', 14, 'https://www.gutenberg.org/ebooks/57695', 'en', 17116), +(50467, 'Voice Trial - Kinetophone actor audition', 'Lett, Bob', '2003-11-01', 2, 'https://www.gutenberg.org/ebooks/10152', 'en', 15878), +(50468, 'Begriff der Arbeitsschule', 'Kerschensteiner, Georg', '2008-01-20', 16, 'https://www.gutenberg.org/ebooks/24367', 'de', 11461), +(50469, 'The Fall of the Niebelungs', NULL, '2003-01-01', 18, 'https://www.gutenberg.org/ebooks/3636', 'en', 16153), +(50470, 'The Cathedrals of Northern France', 'Mansfield, M. F. (Milburg Francisco)', '2009-08-27', 6, 'https://www.gutenberg.org/ebooks/29820', 'en', 1117), +(50471, 'Οι χαιρετισμοί της Ηλιογέννητης', 'Palamas, Kostes', '2013-04-12', 10, 'https://www.gutenberg.org/ebooks/42511', 'el', 8746), +(50472, 'Balder the Beautiful, Volume I.\nA Study in Magic and Religion: the Golden Bough, Part VII., The\nFire-Festivals of Europe and the Doctrine of the External Soul', 'Frazer, James George', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/12261', 'en', 5685), +(50473, 'Les voix intimes: Premières Poésies', 'Caouette, J. B. (Jean Baptiste)', '2006-10-31', 24, 'https://www.gutenberg.org/ebooks/19689', 'fr', 7420), +(50474, 'A Color Notation\r\nA measured color system, based on the three qualities Hue, Value and Chroma', 'Munsell, A. H. (Albert Henry)', '2008-07-14', 45, 'https://www.gutenberg.org/ebooks/26054', 'en', 603), +(50475, 'Jours d\'épreuve: Moeurs bourgeoises', 'Margueritte, Paul', '2008-11-07', 24, 'https://www.gutenberg.org/ebooks/27186', 'fr', 298), +(50476, 'New Zealand', 'Horsley, Reginald', '2017-04-01', 13, 'https://www.gutenberg.org/ebooks/54474', 'en', 17117), +(50477, 'Nye and Riley\'s Wit and Humor (Poems and Yarns)', 'Riley, James Whitcomb', '2009-09-29', 66, 'https://www.gutenberg.org/ebooks/30131', 'en', 190), +(50478, 'The Mentor: The Story of Coal, vol. 6, Num. 6, Serial No. 154, May 1, 1918', 'Talman, Charles Fitzhugh', '2016-02-02', 11, 'https://www.gutenberg.org/ebooks/51106', 'en', 17118), +(50479, 'John M. Synge: a Few Personal Recollections, with Biographical Notes', 'Masefield, John', '2005-01-01', 18, 'https://www.gutenberg.org/ebooks/7296', 'en', 10391), +(50480, 'Lost Lenore: The Adventures of a Rolling Stone', 'Reid, Mayne', '2011-03-01', 22, 'https://www.gutenberg.org/ebooks/35443', 'en', 323), +(50481, 'La femme et le pantin: roman espagnol', 'Louÿs, Pierre', '2008-10-10', 15, 'https://www.gutenberg.org/ebooks/26868', 'fr', 17119), +(50482, 'Sechs Jahre in Surinam\r\nBilder aus dem militärischen Leben dieser Colonie und Skizzen zur Kenntniss seiner socialen und naturwissenschaftlichen Verhältnisse', 'Kappler, A. (August)', '2014-10-06', 7, 'https://www.gutenberg.org/ebooks/47063', 'de', 17120), +(50483, 'The 2002 CIA World Factbook', 'United States. Central Intelligence Agency', '2004-08-01', 32, 'https://www.gutenberg.org/ebooks/6344', 'en', 9716), +(50484, 'Clue of the Silken Ladder', 'Wirt, Mildred A. (Mildred Augustine)', '2010-12-07', 49, 'https://www.gutenberg.org/ebooks/34591', 'en', 3242), +(50485, 'Runoja', 'Kaatra, Kössi', '2015-04-28', 11, 'https://www.gutenberg.org/ebooks/48817', 'fi', 1171), +(50486, 'A Velhice do Padre Eterno', 'Junqueiro, Abílio Manuel Guerra', '2007-11-17', 18, 'https://www.gutenberg.org/ebooks/23526', 'pt', 1638), +(50487, 'Ars grammaticae Iaponicae linguae', 'Collado, Diego', '2006-02-08', 36, 'https://www.gutenberg.org/ebooks/17713', 'la', 17121), +(50488, 'The Nervous Housewife', 'Myerson, Abraham', '2004-11-28', 29, 'https://www.gutenberg.org/ebooks/14196', 'en', 8907), +(50489, 'America and the World War', 'Roosevelt, Theodore', '2016-12-02', 28, 'https://www.gutenberg.org/ebooks/53651', 'en', 17122), +(50490, 'The Bradys After a Chinese Princess; Or, The Yellow Fiends of \'Frisco', 'Doughty, Francis Worcester', '2011-09-04', 10, 'https://www.gutenberg.org/ebooks/37314', 'en', 6391), +(50491, 'The Chaplain of the Fleet', 'Rice, James', '2014-05-23', 11, 'https://www.gutenberg.org/ebooks/45734', 'en', 2616), +(50492, 'Sandra Belloni — Volume 1', 'Meredith, George', '2003-09-01', 1, 'https://www.gutenberg.org/ebooks/4413', 'en', 137), +(50493, 'Chocolate: or, An Indian Drinke\nBy the wise and Moderate use whereof, Health is preserved,\nSicknesse Diverted, and Cured, especially the Plague of\nthe Guts; vulgarly called\nThe New Disease\n; Fluxes,\nConsumptions, & Coughs of the Lungs, with sundry other\ndesperate Diseases. By it also, Conception is Caused, the\nBirth Hastened and facilitated, Beauty Gain\'d and continued.', 'Colmenero de Ledesma, Antonio', '2007-05-02', 57, 'https://www.gutenberg.org/ebooks/21271', 'en', 5682), +(50494, 'Deficient Saints: A Tale of Maine', 'Saunders, Marshall', '2016-08-12', 11, 'https://www.gutenberg.org/ebooks/52783', 'en', 1541), +(50495, 'A Reversible Santa Claus', 'Nicholson, Meredith', '2005-02-14', 33, 'https://www.gutenberg.org/ebooks/15044', 'en', 585), +(50496, 'Jerry of the Islands', 'London, Jack', '1998-01-01', 53, 'https://www.gutenberg.org/ebooks/1161', 'en', 13930), +(50497, 'North Cornwall Fairies and Legends', 'Tregarthen, Enys', '2012-07-15', 28, 'https://www.gutenberg.org/ebooks/40246', 'en', 17123), +(50498, 'Project Gutenberg Fanfare', 'Erickson, Joel A.', '2003-12-01', 1, 'https://www.gutenberg.org/ebooks/10536', 'en', 17124), +(50499, 'Little Present', 'Unknown', '2008-02-27', 39, 'https://www.gutenberg.org/ebooks/24703', 'en', 294), +(50500, 'Motor Transports in War', 'Wyatt, Horace', '2018-01-06', 10, 'https://www.gutenberg.org/ebooks/56323', 'en', 17125), +(50501, 'Michigan Trees: A Handbook of the Native and Most Important Introduced Species', 'Otis, Charles Herbert', '2012-11-17', 21, 'https://www.gutenberg.org/ebooks/41394', 'en', 17126), +(50502, 'The Stepmother, A Drama in Five Acts', 'Balzac, Honoré de', '2005-05-23', 11, 'https://www.gutenberg.org/ebooks/15878', 'en', 3521), +(50503, 'Ιδανικός σύζυγος: Δράμα εις τέσσαρας πράξεις', 'Wilde, Oscar', '2010-06-02', 20, 'https://www.gutenberg.org/ebooks/32666', 'el', 907), +(50504, 'Salome', 'Marshall, Emma', '2011-08-19', 13, 'https://www.gutenberg.org/ebooks/37126', 'en', 1902), +(50505, 'Harper\'s New Monthly Magazine, Vol IV. No. XX. January, 1852.', 'Various', '2012-02-22', 23, 'https://www.gutenberg.org/ebooks/38952', 'en', 883), +(50506, 'Textos biblicos\r\narranjados de maneira a que possam facilitar o processo de examinar as Escripturas Sagradas e achar de prompto qualquer texto', 'Anonymous', '2016-11-06', 16, 'https://www.gutenberg.org/ebooks/53463', 'pt', 6984), +(50507, 'Bell\'s Cathedrals: The Cathedral Church of Durham\nA Description of Its Fabric and A Brief History of the Espiscopal See', 'Bygate, Joseph E.', '2006-12-26', 30, 'https://www.gutenberg.org/ebooks/20191', 'en', 17127), +(50508, 'The Gully of Bluemansdyke, and Other stories', 'Doyle, Arthur Conan', '2012-09-23', 37, 'https://www.gutenberg.org/ebooks/40848', 'en', 3511), +(50509, 'Reginald Cruden\nA Tale of City Life', 'Reed, Talbot Baines', '2007-04-12', 8, 'https://www.gutenberg.org/ebooks/21043', 'en', 17128), +(50510, 'Bears I Have Met—and Others', 'Kelly, Allen', '2005-03-07', 16, 'https://www.gutenberg.org/ebooks/15276', 'en', 4517), +(50511, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 1/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2012-06-01', 28, 'https://www.gutenberg.org/ebooks/39880', 'fr', 2972), +(50512, 'Josiah\'s Secret: A Play', 'Holley, Marietta', '2019-03-30', 4, 'https://www.gutenberg.org/ebooks/59159', 'en', 427), +(50513, 'Flatland: A Romance of Many Dimensions', 'Abbott, Edwin Abbott', '2014-04-27', 103, 'https://www.gutenberg.org/ebooks/45506', 'en', 9882), +(50514, 'The Two Wives; Or, Lost and Won', 'Arthur, T. S. (Timothy Shay)', '2003-11-01', 20, 'https://www.gutenberg.org/ebooks/4621', 'en', 716), +(50515, 'The History of Rome, Book IV\r\nThe Revolution', 'Mommsen, Theodor', '2004-09-13', 98, 'https://www.gutenberg.org/ebooks/10704', 'en', 6793), +(50516, 'The Continental Monthly, Vol. 2 No 4, October, 1862\nDevoted To Literature And National Policy', 'Various', '2008-02-06', 19, 'https://www.gutenberg.org/ebooks/24531', 'en', 162), +(50517, 'Drugging a Nation: The Story of China and the Opium Curse', 'Merwin, Samuel', '2010-08-30', 64, 'https://www.gutenberg.org/ebooks/33586', 'en', 12625), +(50518, 'Off on a Comet! a Journey through Planetary Space', 'Verne, Jules', '1998-06-01', 75, 'https://www.gutenberg.org/ebooks/1353', 'en', 26), +(50519, 'A Dictionary of Cebuano Visayan', 'Wolff, John U.', '2012-06-24', 182, 'https://www.gutenberg.org/ebooks/40074', 'en', 17129), +(50520, 'A Thousand Years Ago: A Romance of the Orient', 'MacKaye, Percy', '2019-07-21', 1021, 'https://www.gutenberg.org/ebooks/59965', 'en', 2199), +(50521, 'Calvert and Penn\r\nOr the Growth of Civil and Religious Liberty in America, as Disclosed in the Planting of Maryland and Pennsylvania', 'Mayer, Brantz', '2010-05-20', 12, 'https://www.gutenberg.org/ebooks/32454', 'en', 17130), +(50522, 'The Girl\'s Own Paper, Vol. XX, No. 989, December 10, 1898', 'Various', '2017-12-03', 9, 'https://www.gutenberg.org/ebooks/56111', 'en', 563), +(50523, 'Mouser Cat\'s Story', 'Prentice, Amy', '2005-04-01', 7, 'https://www.gutenberg.org/ebooks/7898', 'en', 1430), +(50524, 'Gladius Dei; Schwere Stunde', 'Mann, Thomas', '2004-04-01', 95, 'https://www.gutenberg.org/ebooks/12053', 'de', 179), +(50525, 'Zeven kleine Australiërs', 'Turner, Ethel Sybil', '2017-10-22', 19, 'https://www.gutenberg.org/ebooks/55794', 'nl', 17131), +(50526, 'The Rocket Book', 'Newell, Peter', '2008-08-01', 5, 'https://www.gutenberg.org/ebooks/26266', 'en', 5509), +(50527, 'April Hopes', 'Howells, William Dean', '2004-10-24', 12, 'https://www.gutenberg.org/ebooks/3404', 'en', 500), +(50528, 'The Unmasking of Robert-Houdin', 'Houdini, Harry', '2013-05-16', 69, 'https://www.gutenberg.org/ebooks/42723', 'en', 7312), +(50529, 'Red Belts', 'Pendexter, Hugh', '2015-02-09', 15, 'https://www.gutenberg.org/ebooks/48219', 'en', 17132), +(50530, 'The Passing of Ku Sui', 'Gilmore, Anthony', '2009-10-20', 51, 'https://www.gutenberg.org/ebooks/30303', 'en', 26), +(50531, 'A supplementary report on the results of a special inquiry into the practice of interment in towns.', 'Chadwick, Edwin', '2017-05-02', 5, 'https://www.gutenberg.org/ebooks/54646', 'en', 10870), +(50532, 'The Boy With the U.S. Census', 'Rolt-Wheeler, Francis', '2004-08-15', 20, 'https://www.gutenberg.org/ebooks/13181', 'en', 17133), +(50533, 'Voltaire\'s Philosophical Dictionary', 'Voltaire', '2006-06-12', 209, 'https://www.gutenberg.org/ebooks/18569', 'en', 7152), +(50534, 'The Messenger', 'Robins, Elizabeth', '2011-03-24', 21, 'https://www.gutenberg.org/ebooks/35671', 'en', 579), +(50535, 'Appletons\' Popular Science Monthly, September 1899\nVol. LV, May to October, 1899', 'Various', '2014-07-23', 11, 'https://www.gutenberg.org/ebooks/46383', 'en', 210), +(50536, 'The Story of Elizabeth Canning Considered', 'Hill, John', '2016-02-29', 12, 'https://www.gutenberg.org/ebooks/51334', 'en', 17134), +(50537, 'Squirrels and Other Fur-Bearers', 'Burroughs, John', '2007-12-01', 3, 'https://www.gutenberg.org/ebooks/23714', 'en', 8505), +(50538, 'Everychild\r\nA Story Which The Old May Interpret to the Young and Which the Young May Interpret to the Old', 'Dodge, Louis', '2006-01-16', 16, 'https://www.gutenberg.org/ebooks/17521', 'en', 2203), +(50539, 'The Middle of Things', 'Fletcher, J. S. (Joseph Smith)', '2006-02-01', 116, 'https://www.gutenberg.org/ebooks/9902', 'en', 128), +(50540, 'Schöpfungen der Ingenieurtechnik der Neuzeit', 'Geitel, Max', '2014-10-31', 13, 'https://www.gutenberg.org/ebooks/47251', 'de', 17135), +(50541, 'Pierre and His People: Tales of the Far North. Volume 3.', 'Parker, Gilbert', '2004-07-01', 9, 'https://www.gutenberg.org/ebooks/6176', 'en', 2261), +(50542, 'Monkey Jack and Other Stories', NULL, '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/11877', 'en', 859), +(50543, 'Knitting, Crochet, and Netting, with Twelve Illustrations', 'Riego de la Branchardière, Eléonore', '2011-07-09', 116, 'https://www.gutenberg.org/ebooks/36669', 'en', 948), +(50544, 'The Voice of Faith in the Valley of Achor: Vol. 1 [of 2]\nbeing a series of letters to several friends on religious subjects', 'Church, J. (John)', '2019-01-04', 4, 'https://www.gutenberg.org/ebooks/58616', 'en', 1130), +(50545, 'La Chèvre Jaune', 'Musset, Paul de', '2004-12-31', 12, 'https://www.gutenberg.org/ebooks/14539', 'fr', 61), +(50546, 'Detectives, Inc.: A Mystery Story for Boys', 'Heyliger, William', '2013-11-21', 17, 'https://www.gutenberg.org/ebooks/44249', 'en', 17136), +(50547, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1607b', 'Motley, John Lothrop', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/4880', 'en', 3372), +(50548, 'The Jenolan Caves: An Excursion in Australian Wonderland', 'Cook, Samuel', '2012-05-05', 11, 'https://www.gutenberg.org/ebooks/39621', 'en', 17137), +(50549, 'Down in a Georgia Jail', NULL, '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10199', 'en', 3717), +(50550, 'The Bobbsey Twins in the Great West', 'Hope, Laura Lee', '2004-06-01', 36, 'https://www.gutenberg.org/ebooks/5952', 'en', 2266), +(50551, 'The Bucolics and Eclogues', 'Virgil', '1995-03-01', 90, 'https://www.gutenberg.org/ebooks/230', 'en', 2520), +(50552, 'Basque Legends; With an Essay on the Basque Language', 'Webster, Wentworth', '2011-01-09', 37, 'https://www.gutenberg.org/ebooks/34902', 'en', 17138), +(50553, 'The peace negotiations between the governments of the South African Republic and the Orange Free State, and the representatives of the British government, which terminated in the peace concluded at Vereeniging on the 31st May, 1902', 'Velden, D. E. van', '2008-12-14', 25, 'https://www.gutenberg.org/ebooks/27529', 'en', 17139), +(50554, 'Narrative and Lyric Poems (Second Series) for Use in the Lower School', NULL, '2015-03-13', 24, 'https://www.gutenberg.org/ebooks/48484', 'en', 54), +(50555, 'Meeting of the Board', 'Nourse, Alan Edward', '2007-10-03', 41, 'https://www.gutenberg.org/ebooks/22867', 'en', 781), +(50556, 'Collecting as a Pastime', 'Rowed, Charles', '2015-07-31', 10, 'https://www.gutenberg.org/ebooks/49556', 'en', 7492), +(50557, 'The Pagans', 'Bates, Arlo', '2005-08-01', 9, 'https://www.gutenberg.org/ebooks/8671', 'en', 61), +(50558, 'Mr. Honey\'s Banking Dictionary (English-German)', 'Honig, Winfried', '2002-06-01', 44, 'https://www.gutenberg.org/ebooks/3299', 'en', 5007), +(50559, 'The Dog\'s Book of Verse', NULL, '2006-09-09', 31, 'https://www.gutenberg.org/ebooks/19226', 'en', 9880), +(50560, 'Blue Shirt and Khaki: A Comparison', 'Archibald, James F. J. (Francis Jewell)', '2017-07-13', 7, 'https://www.gutenberg.org/ebooks/55109', 'en', 17140), +(50561, 'The Lily of Leyden', 'Kingston, William Henry Giles', '2007-10-25', 5, 'https://www.gutenberg.org/ebooks/23189', 'en', 4128), +(50562, 'Uusia kertomuksia iltalampun ääressä', 'Aina', '2013-09-30', 15, 'https://www.gutenberg.org/ebooks/43850', 'fi', 61), +(50563, 'Richard III\nMakers of History', 'Abbott, Jacob', '2009-04-12', 53, 'https://www.gutenberg.org/ebooks/28561', 'en', 10585), +(50564, 'Photography in the Studio and in the Field\r\nA Practical Manual Designed as a Companion Alike to the Professional and the Amateur Photographer', 'Estabrooke, Edward M.', '2013-06-18', 28, 'https://www.gutenberg.org/ebooks/42982', 'en', 3737), +(50565, 'The Municipal and Sanitary Engineer\'s Handbook', 'Boulnois, H. Percy (Henry Percy)', '2017-11-11', 4, 'https://www.gutenberg.org/ebooks/55935', 'en', 17141), +(50566, 'The Disowned — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-23', 42, 'https://www.gutenberg.org/ebooks/7639', 'en', 137), +(50567, 'Old Portraits and Modern Sketches\r\nPart 1 from Volume VI of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 11, 'https://www.gutenberg.org/ebooks/9591', 'en', 122), +(50568, 'Drift from Two Shores', 'Harte, Bret', '2000-05-01', 31, 'https://www.gutenberg.org/ebooks/2179', 'en', 112), +(50569, 'Nibsy\'s Christmas', 'Riis, Jacob A. (Jacob August)', '2006-08-09', 18, 'https://www.gutenberg.org/ebooks/19014', 'en', 770), +(50570, 'Aristophanis Lysistrata', 'Aristophanes', '2015-08-23', 36, 'https://www.gutenberg.org/ebooks/49764', 'la', 17142), +(50571, 'The Mysteries of Montreal: Being Recollections of a Female Physician', 'Führer, Ch. (Charlotte)', '2005-07-01', 22, 'https://www.gutenberg.org/ebooks/8443', 'en', 3286), +(50572, 'A Lover in Homespun\nAnd Other Stories', 'Smith, F. Clifford (Frank Clifford)', '2005-10-12', 17, 'https://www.gutenberg.org/ebooks/16860', 'en', 179), +(50573, 'Essays — Second Series', 'Emerson, Ralph Waldo', '2001-12-01', 157, 'https://www.gutenberg.org/ebooks/2945', 'en', 620), +(50574, 'Istoria civile del Regno di Napoli, v. 9', 'Giannone, Pietro', '2015-12-07', 10, 'https://www.gutenberg.org/ebooks/50649', 'it', 8173), +(50575, 'Domestic Cookery, Useful Receipts, and Hints to Young Housekeepers', 'Lea, Elizabeth E. (Elizabeth Ellicott)', '2009-05-01', 5, 'https://www.gutenberg.org/ebooks/28753', 'en', 103), +(50576, 'Reminiscences of Sixty Years in Public Affairs, Vol. 1', 'Boutwell, George S. (George Sewall)', '2006-11-16', 9, 'https://www.gutenberg.org/ebooks/19828', 'en', 17143), +(50577, 'The Autobiography of Madame Guyon', 'Guyon, Jeanne Marie Bouvier de la Motte', '2007-08-08', 58, 'https://www.gutenberg.org/ebooks/22269', 'en', 17144), +(50578, 'A Mountain Boyhood', 'Mills, Joe', '2009-08-12', 7, 'https://www.gutenberg.org/ebooks/29681', 'en', 17145), +(50579, 'Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 6', 'Goldsmith, Lewis', '2004-12-04', 20, 'https://www.gutenberg.org/ebooks/3897', 'en', 8569), +(50580, 'A World of Girls: The Story of a School', 'Meade, L. T.', '2008-06-22', 45, 'https://www.gutenberg.org/ebooks/25870', 'en', 195), +(50581, 'Through Magic Glasses and Other Lectures\nA Sequel to The Fairyland of Science', 'Buckley, Arabella B. (Arabella Burton)', '2011-10-01', 23, 'https://www.gutenberg.org/ebooks/37589', 'en', 4329), +(50582, 'Mammals taken Along the Alaska Highway', 'Baker, Rollin H. (Rollin Harold)', '2010-10-19', 13, 'https://www.gutenberg.org/ebooks/33915', 'en', 5582), +(50583, 'The Islam of Mohamed', 'Khuda Bukhsh, S. (Salahuddin)', '2018-12-08', 15, 'https://www.gutenberg.org/ebooks/58424', 'en', 3852), +(50584, 'Elämän loppuessa: Romaani', 'Kataja, Väinö', '2016-08-29', 19, 'https://www.gutenberg.org/ebooks/52922', 'fi', 175), +(50585, 'Henry of Guise; or, The States of Blois (Vol. 3 of 3)', 'James, G. P. R. (George Payne Rainsford)', '2012-04-09', 15, 'https://www.gutenberg.org/ebooks/39413', 'en', 8102), +(50586, 'The Mystery of the Lost Dauphin (Louis XVII)', 'Pardo Bazán, Emilia, condesa de', '2012-11-29', 28, 'https://www.gutenberg.org/ebooks/41509', 'en', 7086), +(50587, 'The Slim Princess', 'Ade, George', '2004-02-01', 39, 'https://www.gutenberg.org/ebooks/11279', 'en', 1297), +(50588, 'Our Little Porto Rican Cousin', 'Wade, Mary Hazelton Blanchard', '2014-06-16', 21, 'https://www.gutenberg.org/ebooks/45995', 'en', 17146), +(50589, 'A Little Candy Book for a Little Girl', 'Waterman, Amy Harlow (Lane), Mrs.', '2014-02-09', 86, 'https://www.gutenberg.org/ebooks/44847', 'en', 1372), +(50590, 'Incidents of Travel in Yucatan, Vol. I.', 'Stephens, John L.', '2010-07-10', 45, 'https://www.gutenberg.org/ebooks/33129', 'en', 4339), +(50591, 'The Elder Brother\r\nThe Works of Francis Beaumont and John Fletcher (Volume 2 of 10)', 'Beaumont, Francis', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/12098', 'en', 907), +(50592, 'Yorkshire Lyrics\r\nPoems written in the Dialect as Spoken in the West Riding of Yorkshire. To which are added a Selection of Fugitive Verses not in the Dialect', 'Hartley, John', '2006-10-05', 29, 'https://www.gutenberg.org/ebooks/19470', 'en', 968), +(50593, 'Quentin Durward', 'Scott, Walter', '2005-04-01', 84, 'https://www.gutenberg.org/ebooks/7853', 'en', 1418), +(50594, 'Biscayne Bay, Dade Co., Florida, Between the 25th and 26th Degrees of Latitude.\r\nA complete manual of information concerning the climate, soil, products, etc., of the lands bordering on Biscayne Bay, in Florida.', NULL, '2015-06-27', 7, 'https://www.gutenberg.org/ebooks/49300', 'en', 17147), +(50595, 'The Bible, King James version, Book 27: Daniel', 'Anonymous', '2005-04-01', 18, 'https://www.gutenberg.org/ebooks/8027', 'en', 5899), +(50596, 'The Gaming Table: Its Votaries and Victims. Volume 1 (of 2)', 'Steinmetz, Andrew', '1996-03-01', 122, 'https://www.gutenberg.org/ebooks/466', 'en', 2473), +(50597, 'The Open Air', 'Jefferies, Richard', '2004-11-01', 41, 'https://www.gutenberg.org/ebooks/6981', 'en', 2503), +(50598, 'Over There with the Canadians at Vimy Ridge', 'Ralphson, G. Harvey (George Harvey)', '2014-07-20', 14, 'https://www.gutenberg.org/ebooks/46348', 'en', 1319), +(50599, 'Memoirs of Arthur Hamilton, B. A. of Trinity College, Cambridge\r\nExtracted from His Letters and Diaries, with Reminiscences of His Conversation by His Friend Christopher Carr of the Same College', 'Benson, Arthur Christopher', '2005-08-04', 20, 'https://www.gutenberg.org/ebooks/16438', 'en', 7350), +(50600, 'Hushed Up! A Mystery of London', 'Le Queux, William', '2009-03-15', 40, 'https://www.gutenberg.org/ebooks/28337', 'en', 1079), +(50601, 'Köyhää kansaa; Salakari', 'Canth, Minna', '2004-11-08', 7, 'https://www.gutenberg.org/ebooks/13976', 'fi', 456), +(50602, 'The Outlook: Uncle Sam\'s Place and Prospects in International Politics', 'Macmillan, Newton', '2010-12-28', 15, 'https://www.gutenberg.org/ebooks/34768', 'en', 225), +(50603, 'Blackwood\'s Edinburgh Magazine, Vol. 63, No. 388, February 1848', 'Various', '2018-09-02', 6, 'https://www.gutenberg.org/ebooks/57834', 'en', 274), +(50604, 'Cappy Ricks; Or, the Subjugation of Matt Peasley', 'Kyne, Peter B. (Peter Bernard)', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/5738', 'en', 6391), +(50605, 'Katerfelto: A Story of Exmoor', 'Whyte-Melville, G. J. (George John)', '2012-09-28', 29, 'https://www.gutenberg.org/ebooks/40883', 'en', 1283), +(50606, 'Southern Derringers of the Mississippi Valley', 'Kirkland, Turner', '2018-10-06', 11, 'https://www.gutenberg.org/ebooks/58040', 'en', 17148), +(50607, 'Mellifont Abbey, Co. Louth\nIts Ruins and Associations, a Guide and Popular History', 'Anonymous', '2012-02-27', 19, 'https://www.gutenberg.org/ebooks/38999', 'en', 17149), +(50608, 'Kings Mountain National Military Park, South Carolina', 'Mackenzie, George C.', '2019-04-02', 11, 'https://www.gutenberg.org/ebooks/59192', 'en', 5187), +(50609, 'A Tale of Red Pekin', 'Serjeant, Constancia', '2013-06-08', 7, 'https://www.gutenberg.org/ebooks/41951', 'en', 17150), +(50610, 'The White Squall: A Story of the Sargasso Sea', 'Hutcheson, John C. (John Conroy)', '2007-04-15', 16, 'https://www.gutenberg.org/ebooks/21088', 'en', 14467), +(50611, 'The Haunted Hangar\nSky Scouts/Air Mystery series #3', 'Powell, Van', '2018-04-21', 10, 'https://www.gutenberg.org/ebooks/57008', 'en', 167), +(50612, 'De l\'éducation d\'un homme sauvage\r\nou des premiers développemens physiques et moraux du jeune sauvage de l\'Aveyron', 'Itard, Jean Marc Gaspard', '2007-04-03', 16, 'https://www.gutenberg.org/ebooks/20966', 'fr', 17151), +(50613, 'The Doré Lectures\r\nBeing Sunday addresses at the Doré Gallery, London, given in connection with the Higher Thought Centre', 'Troward, T. (Thomas)', '1998-07-01', 23, 'https://www.gutenberg.org/ebooks/1398', 'en', 43), +(50614, 'Punch, or the London Charivari, Volume 93, December 3, 1887', 'Various', '2012-03-08', 3, 'https://www.gutenberg.org/ebooks/39077', 'en', 134), +(50615, 'Rebel Verses', 'Gilbert, Bernard', '2011-07-20', 12, 'https://www.gutenberg.org/ebooks/36803', 'en', 17152), +(50616, 'Anecdotes of Animals', 'Unknown', '2008-05-11', 39, 'https://www.gutenberg.org/ebooks/25428', 'en', 1787), +(50617, 'Notes and Queries, Number 191, June 25, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-15', 13, 'https://www.gutenberg.org/ebooks/20368', 'en', 105), +(50618, 'The Divine Comedy, Volume 2, Purgatory', 'Dante Alighieri', '1999-12-01', 88, 'https://www.gutenberg.org/ebooks/1996', 'en', 2212), +(50619, 'Index of the Project Gutenberg Works of Aleksandr Pushkin', 'Pushkin, Aleksandr Sergeevich', '2018-11-11', 9, 'https://www.gutenberg.org/ebooks/58272', 'en', 198), +(50620, 'England\'s Stewardship\r\nThe Substance of a Sermon Preached on the Fast-Day, in Trinity Church, Tunbridge Wells', 'Hoare, Edward', '2016-08-08', 8, 'https://www.gutenberg.org/ebooks/52748', 'en', 2386), +(50621, 'Sentimental Tommy\nThe Story of His Boyhood', 'Barrie, J. M. (James Matthew)', '2005-02-07', 44, 'https://www.gutenberg.org/ebooks/14961', 'en', 17153), +(50622, 'Verspreide Opstellen, II', 'Ligthart, Jan', '2011-12-24', 3, 'https://www.gutenberg.org/ebooks/38397', 'nl', 15967), +(50623, 'Quodlibet: containing some annals thereof ...', 'Kennedy, John Pendleton', '2012-03-24', 10, 'https://www.gutenberg.org/ebooks/39245', 'en', 262), +(50624, 'Sieben Jahre in Süd-Afrika. Zweiter Band.\r\nErlebnisse, Forschungen und Jagden auf meinen Reisen von den Diamantenfeldern zum Zambesi (1872-1879)', 'Holub, Emil', '2015-06-04', 8, 'https://www.gutenberg.org/ebooks/49132', 'de', 12515), +(50625, 'The Developmental Psychology of Psychopathology', 'Vaknin, Samuel', '2005-06-01', 81, 'https://www.gutenberg.org/ebooks/8215', 'en', 5245), +(50626, 'Punch, or the London Charivari, Vol. 158, May 26, 1920', 'Various', '2010-01-20', 17, 'https://www.gutenberg.org/ebooks/31028', 'en', 134), +(50627, 'Aztec Ruins National Monument, New Mexico', 'Corbett, John M.', '2014-09-24', 21, 'https://www.gutenberg.org/ebooks/46946', 'en', 17154), +(50628, 'Lights and Shadows of New York Life\nor, the Sights and Sensations of the Great City', 'McCabe, James Dabney', '2006-10-27', 32, 'https://www.gutenberg.org/ebooks/19642', 'en', 2196), +(50629, 'Grace Abounding to the Chief of Sinners', 'Bunyan, John', '1996-09-01', 226, 'https://www.gutenberg.org/ebooks/654', 'en', 17155), +(50630, 'De baanwachter', 'Conscience, Hendrik', '2004-09-06', 12, 'https://www.gutenberg.org/ebooks/13378', 'nl', 61), +(50631, 'The Insect Folk', 'Morley, Margaret Warner', '2006-07-08', 86, 'https://www.gutenberg.org/ebooks/18790', 'en', 236), +(50632, 'The Brochure Series of Architectural Illustration, vol. 06, No. 06, June 1900\r\nThe Duomo and the Campanile: Florence; Grotesques from\r\nNotre Dame, Paris.', 'Various', '2015-01-06', 3, 'https://www.gutenberg.org/ebooks/47894', 'en', 2140), +(50633, 'The Flying Boys in the Sky', 'Ellis, Edward Sylvester', '2016-01-01', 12, 'https://www.gutenberg.org/ebooks/50823', 'en', 6791), +(50634, 'This Side of Paradise', 'Fitzgerald, F. Scott (Francis Scott)', '2009-05-01', 46, 'https://www.gutenberg.org/ebooks/28939', 'en', 2934), +(50635, 'Les belles-de-nuit; ou, les anges de la famille. tome 1', 'Féval, Paul', '2013-08-06', 11, 'https://www.gutenberg.org/ebooks/43408', 'fr', 298), +(50636, 'Literary New York: Its Landmarks and Associations', 'Hemstreet, Charles', '2010-03-29', 18, 'https://www.gutenberg.org/ebooks/31814', 'en', 17156), +(50637, 'The Road to Paris: A Story of Adventure', 'Stephens, Robert Neilson', '2011-03-05', 10, 'https://www.gutenberg.org/ebooks/35488', 'en', 1293), +(50638, 'A Lover\'s Litanies', 'Mackay, Eric', '2009-02-03', 7, 'https://www.gutenberg.org/ebooks/27971', 'en', 8), +(50639, 'A Learned Dissertation on Dumpling (1726)\n[and] Pudding and Dumpling Burnt to Pot. Or a Compleat Key to the Dissertation on Dumpling (1727)', 'Carey, Henry', '2009-02-17', 20, 'https://www.gutenberg.org/ebooks/28105', 'en', 17157), +(50640, 'Her Mother\'s Secret', 'Southworth, Emma Dorothy Eliza Nevitte', '2008-08-11', 24, 'https://www.gutenberg.org/ebooks/26259', 'en', 61), +(50641, 'Editorial Wild Oats', 'Twain, Mark', '2006-10-06', 30, 'https://www.gutenberg.org/ebooks/19484', 'en', 2116), +(50642, 'Domestic Cookery, Useful Receipts, and Hints to Young Housekeepers', 'Lea, Elizabeth E. (Elizabeth Ellicott)', '2005-10-01', 75, 'https://www.gutenberg.org/ebooks/9101', 'en', 2161), +(50643, 'Dick Donnelly of the Paratroops', 'McClintock, Marshall', '2015-02-10', 17, 'https://www.gutenberg.org/ebooks/48226', 'en', 1004), +(50644, 'Macbeth', 'Shakespeare, William', '2004-11-01', 53, 'https://www.gutenberg.org/ebooks/6975', 'de', 17158), +(50645, 'Essays in the Art of Writing', 'Stevenson, Robert Louis', '1996-04-01', 191, 'https://www.gutenberg.org/ebooks/492', 'en', 935), +(50646, 'Geschichte der Philosophie im Islam', 'Boer, T. J. de (Tjitze J.)', '2017-05-07', 19, 'https://www.gutenberg.org/ebooks/54679', 'de', 17159), +(50647, 'Catalogue of Violent and Destructive Earthquakes in the Philippines\nWith an Appendix: Earthquakes in the Marianas Islands 1599-1909', 'Saderra Masó, Miguel', '2006-06-11', 18, 'https://www.gutenberg.org/ebooks/18556', 'en', 17160), +(50648, 'A Philological Essay Concerning the Pygmies of the Ancients', 'Tyson, Edward', '2004-07-08', 24, 'https://www.gutenberg.org/ebooks/12850', 'en', 17161), +(50649, 'Prevalence of Imprisonment in the U.S. Population, 1974-2001', 'Bonczar, Thomas P.', '2009-06-23', 7, 'https://www.gutenberg.org/ebooks/29211', 'en', 17162), +(50650, 'The Boy Aviators\' Treasure Quest; Or, The Golden Galleon', 'Goldfrap, John Henry', '2004-07-01', 25, 'https://www.gutenberg.org/ebooks/6149', 'en', 2279), +(50651, 'Cap\'n Abe, Storekeeper: A Story of Cape Cod', 'Cooper, James A.', '2004-11-08', 8, 'https://www.gutenberg.org/ebooks/13982', 'en', 6349), +(50652, 'Sea-Weeds, Shells and Fossils', 'Woodward, B. B. (Bernard Bolingbroke)', '2011-08-18', 14, 'https://www.gutenberg.org/ebooks/37119', 'en', 17163), +(50653, 'Caprices d\'un Bibliophile', 'Uzanne, Octave', '2012-09-27', 41, 'https://www.gutenberg.org/ebooks/40877', 'fr', 1989), +(50654, 'Outspoken Essays', 'Inge, William Ralph', '2005-03-04', 59, 'https://www.gutenberg.org/ebooks/15249', 'en', 17164), +(50655, 'Common Sense for Housemaids', 'Tytler, Ann Fraser', '2019-03-31', 21, 'https://www.gutenberg.org/ebooks/59166', 'en', 5788), +(50656, 'Novellák', 'Jókai, Mór', '2018-04-03', 8, 'https://www.gutenberg.org/ebooks/56912', 'hu', 234), +(50657, 'The Compleat Bachelor', 'Onions, Oliver', '2014-04-30', 16, 'https://www.gutenberg.org/ebooks/45539', 'en', 17165), +(50658, 'A Narrative of the Life of David Crockett, of the State of Tennessee.', 'Crockett, Davy', '2011-11-05', 107, 'https://www.gutenberg.org/ebooks/37925', 'en', 13960), +(50659, 'Tom, Dick and Harry', 'Reed, Talbot Baines', '2007-04-05', 25, 'https://www.gutenberg.org/ebooks/20992', 'en', 5086), +(50660, 'Graham\'s Magazine, Vol. XXXI, No. 4, October 1847', 'Various', '2019-02-14', 5, 'https://www.gutenberg.org/ebooks/58888', 'en', 162), +(50661, 'Kevätkukka: Perhetarina', 'Roos, Mathilda', '2011-11-27', 14, 'https://www.gutenberg.org/ebooks/38151', 'fi', 2168), +(50662, 'The Iron Boys in the Mines; or, Starting at the Bottom of the Shaft', 'Mears, James R.', '2012-03-09', 19, 'https://www.gutenberg.org/ebooks/39083', 'en', 9135), +(50663, 'The Great God Gold', 'Le Queux, William', '2012-10-27', 7, 'https://www.gutenberg.org/ebooks/41199', 'en', 167), +(50664, 'Woman\nHer Sex and Love Life', 'Robinson, William J. (William Josephus)', '2007-06-15', 60, 'https://www.gutenberg.org/ebooks/21840', 'en', 755), +(50665, 'A Short List of the Publications of E. & F. N. Spon, Ltd. June 1901', 'E. & F. N. Spon', '2018-11-14', 7, 'https://www.gutenberg.org/ebooks/58286', 'en', 12845), +(50666, 'A Defence of Poesie and Poems', 'Sidney, Philip', '1999-11-01', 99, 'https://www.gutenberg.org/ebooks/1962', 'en', 5878), +(50667, 'Gloria: A Girl and Her Dad', 'Garis, Lilian', '2019-04-25', 31, 'https://www.gutenberg.org/ebooks/59354', 'en', 3129), +(50668, 'Les Explorateurs du Centre de l\'Afrique', 'Durand, l\'Abbé (Durand, Édouard-Joseph)', '2012-07-19', 5, 'https://www.gutenberg.org/ebooks/40279', 'fr', 17166), +(50669, 'A Little Brother to the Bear, and other Animal Studies', 'Long, William J. (William Joseph)', '2011-12-22', 26, 'https://www.gutenberg.org/ebooks/38363', 'en', 2560), +(50670, 'Los Hombres de Pro', 'Pereda, José María de', '2005-02-09', 23, 'https://www.gutenberg.org/ebooks/14995', 'es', 61), +(50671, 'The Bars of Iron', 'Dell, Ethel M. (Ethel May)', '2003-12-01', 173, 'https://www.gutenberg.org/ebooks/10509', 'en', 48), +(50672, 'Jules César', 'Shakespeare, William', '2005-05-17', 41, 'https://www.gutenberg.org/ebooks/15847', 'fr', 6750), +(50673, 'An Answer to a scurrilous pamphlet, lately printed, intituled, A letter from Monsieur de Cros, to the Lord ----', 'Temple, William', '2010-06-02', 18, 'https://www.gutenberg.org/ebooks/32659', 'en', 17167), +(50674, 'The Invasion of 1910, with a full account of the siege of London', 'Le Queux, William', '2016-05-01', 35, 'https://www.gutenberg.org/ebooks/51905', 'en', 8507), +(50675, 'To-morrow?', 'Cross, Victoria', '2003-01-01', 11, 'https://www.gutenberg.org/ebooks/3609', 'en', 109), +(50676, 'Uhkapeli: Arnold Bromanin papereista', 'Kara, Jalmari', '2017-09-25', 21, 'https://www.gutenberg.org/ebooks/55599', 'fi', 175), +(50677, 'Life in Morocco and Glimpses Beyond', 'Meakin, Budgett', '2006-07-06', 76, 'https://www.gutenberg.org/ebooks/18764', 'en', 17168), +(50678, 'The Mercy of Allah', 'Belloc, Hilaire', '2015-01-03', 95, 'https://www.gutenberg.org/ebooks/47860', 'en', 1971), +(50679, 'Johnny Bear, and Other Stories from Lives of the Hunted', 'Seton, Ernest Thompson', '2005-11-01', 19, 'https://www.gutenberg.org/ebooks/9333', 'en', 625), +(50680, 'The American Postal Service\nHistory of the Postal Service from the Earliest Times', 'Melius, Louis', '2015-01-18', 22, 'https://www.gutenberg.org/ebooks/48014', 'en', 2851), +(50681, 'Treasure Valley', 'MacGregor, Mary Esther Miller', '2009-06-03', 9, 'https://www.gutenberg.org/ebooks/29023', 'en', 10914), +(50682, 'Platonis Apologia Socratis', 'Plato', '2016-02-06', 27, 'https://www.gutenberg.org/ebooks/51139', 'la', 4235), +(50683, 'Christopher and the Clockmakers', 'Bassett, Sara Ware', '2008-10-09', 23, 'https://www.gutenberg.org/ebooks/26857', 'en', 17169), +(50684, 'Marjorie Dean, High School Sophomore', 'Chase, Josephine', '2009-02-04', 23, 'https://www.gutenberg.org/ebooks/27985', 'en', 1669), +(50685, 'Before Egypt', 'Jarvis, E. K.', '2010-01-11', 21, 'https://www.gutenberg.org/ebooks/30932', 'en', 26), +(50686, 'Cunnie Rabbit, Mr. Spider and the Other Beef: West African Folk Tales', 'Cronise, Florence M.', '2015-04-30', 39, 'https://www.gutenberg.org/ebooks/48828', 'en', 17170), +(50687, 'The Mormon Menace: The Confessions of John Doyle Lee, Danite', 'Lewis, Alfred Henry', '2007-11-17', 37, 'https://www.gutenberg.org/ebooks/23519', 'en', 8885), +(50688, 'The Talkative Wig', 'Follen, Eliza Lee Cabot', '2003-05-01', 74, 'https://www.gutenberg.org/ebooks/4048', 'en', 17171), +(50689, 'Entertaining Made Easy', 'Burt, Emily Rose', '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/11883', 'en', 3268), +(50690, 'Behind the Screen', 'Goldwyn, Samuel', '2019-06-11', 107, 'https://www.gutenberg.org/ebooks/59730', 'en', 17172), +(50691, 'A Compilation of the Messages and Papers of the Presidents. Volume 5, part 1: Presidents Taylor and Fillmore', NULL, '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/10951', 'en', 447), +(50692, 'History of the United Netherlands from the Death of William the Silent to the Twelve Year\'s Truce, 1600-02', 'Motley, John Lothrop', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/4874', 'en', 3372), +(50693, 'The Philippine Islands, 1493-1898; Volume 49\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2018-03-18', 36, 'https://www.gutenberg.org/ebooks/56778', 'en', 7466), +(50694, 'Wackenroders „Herzensergießungen eines kunstliebenden Klosterbruders“ in ihrem Verhältnis zu Vasari', 'Dessauer, Ernst', '2012-01-29', 14, 'https://www.gutenberg.org/ebooks/38707', 'de', 17173), +(50695, 'Punch, or the London Charivari, Vol. 146, March 25, 1914', 'Various', '2008-01-18', 8, 'https://www.gutenberg.org/ebooks/24358', 'en', 134), +(50696, 'History of English Humour, Vol. 1\r\nWith an Introduction upon Ancient Humour', 'L\'Estrange, A. G. K. (Alfred Guy Kingan)', '2006-05-02', 30, 'https://www.gutenberg.org/ebooks/18300', 'en', 16234), +(50697, 'Leila or, the Siege of Granada, Book II.', 'Lytton, Edward Bulwer Lytton, Baron', '2006-01-01', 12, 'https://www.gutenberg.org/ebooks/9757', 'en', 2371), +(50698, 'Country Walks of a Naturalist with His Children', 'Houghton, W. (William)', '2007-12-20', 33, 'https://www.gutenberg.org/ebooks/23941', 'en', 1527), +(50699, 'Selected Works of Voltairine de Cleyre', 'De Cleyre, Voltairine', '2013-07-06', 40, 'https://www.gutenberg.org/ebooks/43098', 'en', 17174), +(50700, 'The Story of Joan of Arc', 'Lang, Andrew', '2015-03-12', 76, 'https://www.gutenberg.org/ebooks/48470', 'en', 3907), +(50701, 'Pygmalion\'s Spectacles', 'Weinbaum, Stanley G. (Stanley Grauman)', '2007-10-05', 150, 'https://www.gutenberg.org/ebooks/22893', 'en', 26), +(50702, 'Memoirs of Henry Hunt, Esq. — Volume 1', 'Hunt, Henry', '2005-08-01', 48, 'https://www.gutenberg.org/ebooks/8685', 'en', 9960), +(50703, 'All about the Klondyke gold mines', 'Pratt, J. G.', '2011-04-11', 20, 'https://www.gutenberg.org/ebooks/35824', 'en', 9332), +(50704, 'Azalea at Sunset Gap', 'Peattie, Elia Wilkinson', '2017-05-30', 13, 'https://www.gutenberg.org/ebooks/54813', 'en', 17088), +(50705, 'Elementary Instruction in the Art of Illuminating and Missal Painting on Vellum\r\nA Guide to Modern Illuminators', 'Laurent de Lara, D. (David)', '2014-11-23', 22, 'https://www.gutenberg.org/ebooks/47438', 'en', 17175), +(50706, 'Chambers\'s Edinburgh Journal, No. 432\nVolume 17, New Series, April 10, 1852', 'Various', '2005-12-18', 2, 'https://www.gutenberg.org/ebooks/17348', 'en', 18), +(50707, 'The Man Who Drove the Car', 'Pemberton, Max', '2009-04-23', 13, 'https://www.gutenberg.org/ebooks/28595', 'en', 17176), +(50708, 'Nozze d\'oro: romanzo', 'Castelnuovo, Enrico', '2013-06-18', 15, 'https://www.gutenberg.org/ebooks/42976', 'it', 61), +(50709, 'Perez the Mouse', 'Coloma, Luis', '2009-07-18', 20, 'https://www.gutenberg.org/ebooks/29447', 'en', 1132), +(50710, '雲形紋章', 'Falkner, John Meade', '2011-01-20', 39, 'https://www.gutenberg.org/ebooks/35018', 'ja', 17177), +(50711, 'Eirik the Red\'s Saga', NULL, '2006-03-08', 95, 'https://www.gutenberg.org/ebooks/17946', 'en', 13670), +(50712, 'Communism and Christianism\nAnalyzed and Contrasted from the Marxian and Darwinian Points of View', 'Brown, William Montgomery', '2009-12-25', 25, 'https://www.gutenberg.org/ebooks/30758', 'en', 17178), +(50713, 'Pennsylvania Pilgrim, and other poems\r\nPart 6 From Volume I of The Works of John Greenleaf Whittier', 'Whittier, John Greenleaf', '2005-12-01', 9, 'https://www.gutenberg.org/ebooks/9565', 'en', 350), +(50714, 'A Servant of the Public', 'Hope, Anthony', '2015-04-05', 11, 'https://www.gutenberg.org/ebooks/48642', 'en', 4815), +(50715, 'A Canadian Heroine, Volume 3\r\nA Novel', 'Coghill, Harry, Mrs.', '2006-04-08', 16, 'https://www.gutenberg.org/ebooks/18132', 'en', 500), +(50716, 'Mary: The Queen of the House of David and Mother of Jesus\nThe Story of Her Life', 'Walsh, A. Stewart (Alexander Stewart)', '2019-08-01', 847, 'https://www.gutenberg.org/ebooks/60028', 'en', 459), +(50717, '周髀算經', 'Unknown', '2004-05-01', 42, 'https://www.gutenberg.org/ebooks/12408', 'zh', 17179), +(50718, 'Chats to \'Cello Students', 'Broadley, Arthur', '2013-03-20', 11, 'https://www.gutenberg.org/ebooks/42378', 'en', 17180), +(50719, 'Scottish Poetry of the Sixteenth Century', NULL, '2015-08-27', 7, 'https://www.gutenberg.org/ebooks/49790', 'en', 11871), +(50720, 'Oscar Wilde, His Life and Confessions. Volume 1 (of 2)', 'Harris, Frank', '2005-10-17', 39, 'https://www.gutenberg.org/ebooks/16894', 'en', 17181), +(50721, 'Less than Human', 'Blade, Zoë', '2009-08-12', 13, 'https://www.gutenberg.org/ebooks/29675', 'en', 26), +(50722, 'Memoirs of Louis XIV and His Court and of the Regency — Volume 04', 'Saint-Simon, Louis de Rouvroy, duc de', '2004-12-03', 10, 'https://www.gutenberg.org/ebooks/3863', 'en', 1247), +(50723, 'A Woman\'s Place', 'Clifton, Mark', '2010-06-16', 32, 'https://www.gutenberg.org/ebooks/32833', 'en', 3972), +(50724, 'The Preparation of Bees for Outdoor Wintering', 'Demuth, Geo. S. (George S.)', '2019-05-14', 19, 'https://www.gutenberg.org/ebooks/59502', 'en', 87), +(50725, 'The Eugenic Marriage, Volume 4 (of 4)\r\nA Personal Guide to the New Science of Better Living and Better Babies', 'Hague, W. Grant (William Grant)', '2007-05-11', 38, 'https://www.gutenberg.org/ebooks/21418', 'en', 7357), +(50726, 'Found in the Philippines: The Story of a Woman\'s Letters', 'King, Charles', '2008-06-23', 12, 'https://www.gutenberg.org/ebooks/25884', 'en', 2507), +(50727, 'Live to be Useful\nor, The Story of Annie Lee and her Irish Nurse', 'Anonymous', '2008-03-30', 12, 'https://www.gutenberg.org/ebooks/24956', 'en', 5076), +(50728, 'Language: Its Nature, Development and Origin', 'Jespersen, Otto', '2016-09-12', 27, 'https://www.gutenberg.org/ebooks/53038', 'en', 6054), +(50729, 'South America: Observations and Impressions\r\nNew edition corrected and revised', 'Bryce, James Bryce, Viscount', '2014-06-14', 19, 'https://www.gutenberg.org/ebooks/45961', 'en', 227), +(50730, 'The Diggings, the Bush, and Melbourne\nor, Reminiscences of Three Years\' Wanderings in Victoria', 'Armour, James', '2018-07-13', 9, 'https://www.gutenberg.org/ebooks/57498', 'en', 7108), +(50731, 'The Red Fox\'s Son: A Romance of Bharbazonia', 'Dilley, Edgar M. (Edgar Meck)', '2016-12-25', 8, 'https://www.gutenberg.org/ebooks/53804', 'en', 257), +(50732, 'The Great Illusion\nA Study of the Relation of Military Power to National Advantage', 'Angell, Norman', '2012-01-09', 164, 'https://www.gutenberg.org/ebooks/38535', 'en', 6029), +(50733, 'A History of Science — Volume 4', 'Williams, Edward Huntington', '1999-04-01', 20, 'https://www.gutenberg.org/ebooks/1708', 'en', 186), +(50734, 'Amusement: A Force in Christian Training', 'Vincent, Marvin Richardson', '2008-04-08', 16, 'https://www.gutenberg.org/ebooks/25018', 'en', 2248), +(50735, 'Shelburne Essays, Third Series', 'More, Paul Elmer', '2012-04-14', 17, 'https://www.gutenberg.org/ebooks/39447', 'en', 1694), +(50736, 'The Great Lakes\r\nThe Vessels That Plough Them: Their Owners, Their Sailors, and Their Cargoes, Together with a Brief History of Our Inland Seas', 'Curwood, James Oliver', '2016-09-04', 21, 'https://www.gutenberg.org/ebooks/52976', 'en', 17182), +(50737, 'The Rise of the Dutch Kingdom, 1795-1813\r\nA Short Account of the Early Development of the Modern Kingdom of the Netherlands', 'Van Loon, Hendrik Willem', '2012-01-17', 9, 'https://www.gutenberg.org/ebooks/38595', 'en', 17183), +(50738, 'Sally Scott of the WAVES', 'Snell, Roy J. (Roy Judson)', '2014-02-01', 26, 'https://www.gutenberg.org/ebooks/44813', 'en', 17184), +(50739, 'Glove Lore', NULL, '2018-07-03', 1, 'https://www.gutenberg.org/ebooks/57438', 'en', 6746), +(50740, 'The Tale of Rusty Wren', 'Bailey, Arthur Scott', '2008-06-17', 24, 'https://www.gutenberg.org/ebooks/25824', 'en', 17185), +(50741, 'The White Shield', 'Mitford, Bertram', '2010-06-19', 13, 'https://www.gutenberg.org/ebooks/32893', 'en', 17186), +(50742, 'Diana Trelawny', 'Oliphant, Mrs. (Margaret)', '2018-12-14', 10, 'https://www.gutenberg.org/ebooks/58470', 'en', 3305), +(50743, 'The Mary Frances Garden Book; or, Adventures Among the Garden People', 'Fryer, Jane Eayre', '2016-09-20', 26, 'https://www.gutenberg.org/ebooks/53098', 'en', 1413), +(50744, 'The Methods of Glass Blowing and of Working Silica in the Oxy-Gas Flame\nFor the use of chemical and physical students', 'Shenstone, W. A. (William Ashwell)', '2010-10-06', 23, 'https://www.gutenberg.org/ebooks/33941', 'en', 3384), +(50745, 'The Paradise Mystery', 'Fletcher, J. S. (Joseph Smith)', '2004-03-01', 193, 'https://www.gutenberg.org/ebooks/5308', 'en', 128), +(50746, 'Iolanthe\'s Wedding', 'Sudermann, Hermann', '2010-11-18', 6, 'https://www.gutenberg.org/ebooks/34358', 'en', 61), +(50747, 'Justice', 'Galsworthy, John', '2004-09-26', 95, 'https://www.gutenberg.org/ebooks/2911', 'en', 1088), +(50748, 'Na Guella do Leão', 'Sabugosa, António Maria José de Melo César e Meneses, conde de', '2009-05-06', 11, 'https://www.gutenberg.org/ebooks/28707', 'pt', 410), +(50749, 'Ellen Duncan; And The Proctor\'s Daughter\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 6, 'https://www.gutenberg.org/ebooks/16008', 'en', 440), +(50750, 'Die Mumie von Rotterdam. Zweiter Theil', 'Döring, Georg', '2014-09-06', 9, 'https://www.gutenberg.org/ebooks/46778', 'de', 138), +(50751, 'The Works of the Right Honourable Edmund Burke, Vol. 10 (of 12)', 'Burke, Edmund', '2006-04-17', 35, 'https://www.gutenberg.org/ebooks/18192', 'en', 5325), +(50752, 'Le streghe\r\ndono del folletto alle signore', NULL, '2019-08-11', 280, 'https://www.gutenberg.org/ebooks/60088', 'it', 5685), +(50753, 'Ei ole aikaa: Komedia kolmessa näytöksessä', 'Holberg, Ludvig', '2015-08-18', 23, 'https://www.gutenberg.org/ebooks/49730', 'fi', 1552), +(50754, 'The Harris-Ingram Experiment', 'Bolton, Charles E. (Charles Edward)', '2005-10-09', 26, 'https://www.gutenberg.org/ebooks/16834', 'en', 2797), +(50755, 'What Led to the Discovery of the Source of the Nile', 'Speke, John Hanning', '2005-07-01', 31, 'https://www.gutenberg.org/ebooks/8417', 'en', 17187), +(50756, 'Takáts Sándor Szalai Barkóczy Krisztina 1671-1724 czímű könyvének ismertetése', 'Angyal, Dávid', '2006-08-14', 5, 'https://www.gutenberg.org/ebooks/19040', 'hu', 17188), +(50757, 'Out of This World Convention', 'Ackerman, Forrest J.', '2009-04-07', 29, 'https://www.gutenberg.org/ebooks/28535', 'en', 17189), +(50758, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 05 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-09-23', 9, 'https://www.gutenberg.org/ebooks/43804', 'it', 6107), +(50759, 'Birds and All Nature, Vol. 4, No. 1, July 1898\r\nIllustrated by Color Photography', 'Various', '2014-11-30', 43, 'https://www.gutenberg.org/ebooks/47498', 'en', 1584), +(50760, 'The Millionaire Mystery', 'Hume, Fergus', '2017-11-13', 25, 'https://www.gutenberg.org/ebooks/55961', 'en', 128), +(50761, 'Ripeness is All', 'Roarke, Jesse', '2013-06-26', 31, 'https://www.gutenberg.org/ebooks/43038', 'en', 26), +(50762, 'Main Street, and Other Poems', 'Kilmer, Joyce', '2008-07-09', 41, 'https://www.gutenberg.org/ebooks/264', 'en', 13310), +(50763, 'Have faith in Massachusetts; 2d ed.\nA Collection of Speeches and Messages', 'Coolidge, Calvin', '2004-10-14', 19, 'https://www.gutenberg.org/ebooks/13748', 'en', 17190), +(50764, 'Fairy Tales From all Nations', 'Montalba, Anthony R. (Anthony Reubens)', '2011-01-14', 49, 'https://www.gutenberg.org/ebooks/34956', 'en', 1007), +(50765, 'John Patrick, Third Marquess of Bute, K.T. (1847-1900), a Memoir', 'Hunter Blair, David Oswald, Sir', '2011-04-16', 7, 'https://www.gutenberg.org/ebooks/35884', 'en', 17191); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(50766, 'The Early Bird: A Business Man\'s Love Story', 'Chester, George Randolph', '2006-09-14', 17, 'https://www.gutenberg.org/ebooks/19272', 'en', 5080), +(50767, 'Variétés Historiques et Littéraires (08/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2015-07-21', 12, 'https://www.gutenberg.org/ebooks/49502', 'fr', 642), +(50768, 'Alcyone', 'Lampman, Archibald', '2007-10-02', 18, 'https://www.gutenberg.org/ebooks/22833', 'en', 28), +(50769, 'The Battle and the Ruins of Cintla', 'Brinton, Daniel G. (Daniel Garrison)', '2010-02-27', 17, 'https://www.gutenberg.org/ebooks/31418', 'en', 1382), +(50770, 'The Sign of the Four', 'Doyle, Arthur Conan', '2005-08-01', 13, 'https://www.gutenberg.org/ebooks/8625', 'en', 128), +(50771, 'Dealings with the Dead, Volume 2 (of 2)', 'Sargent, Lucius M. (Lucius Manlius)', '2012-05-12', 7, 'https://www.gutenberg.org/ebooks/39675', 'en', 9971), +(50772, 'The History of Don Quixote, Volume 1, Part 04', 'Cervantes Saavedra, Miguel de', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/5906', 'en', 89), +(50773, 'The Lake Mystery', 'Dana, Marvin', '2019-06-22', 168, 'https://www.gutenberg.org/ebooks/59790', 'en', 1516), +(50774, 'Photo-engraving, Photo-etching and Photo-lithography in Line and Half-tone\nAlso Collotype and Heliotype', 'Wilkinson, W. T.', '2016-06-19', 22, 'https://www.gutenberg.org/ebooks/52378', 'en', 17192), +(50775, 'U.S. Copyright Renewals, 1961 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11823', 'en', 4170), +(50776, 'The Religion of Babylonia and Assyria', 'Jastrow, Morris', '2007-03-07', 55, 'https://www.gutenberg.org/ebooks/20758', 'en', 15473), +(50777, 'Whipperginny', 'Graves, Robert', '2019-01-07', 17, 'https://www.gutenberg.org/ebooks/58642', 'en', 1594), +(50778, '鬼谷子', 'Guiguzi, active 4th century B.C.', '2005-01-01', 123, 'https://www.gutenberg.org/ebooks/7209', 'zh', 1493), +(50779, 'The Lightning Conductor Discovers America', 'Williamson, C. N. (Charles Norris)', '2009-06-09', 18, 'https://www.gutenberg.org/ebooks/29083', 'en', 6642), +(50780, 'Ring Once for Death', 'Arthur, Robert', '2010-03-31', 65, 'https://www.gutenberg.org/ebooks/31840', 'en', 179), +(50781, 'Teddy Bears', 'Sutton, Adah Louise', '2016-02-13', 13, 'https://www.gutenberg.org/ebooks/51199', 'en', 17193), +(50782, 'The Esperantist, Vol. 1, No. 5', NULL, '2010-01-16', 16, 'https://www.gutenberg.org/ebooks/30992', 'eo', 3912), +(50783, 'Tout est bien qui finit bien', 'Shakespeare, William', '2009-02-21', 9, 'https://www.gutenberg.org/ebooks/28151', 'fr', 997), +(50784, 'Der Nibelunge liet', NULL, '2015-05-05', 10, 'https://www.gutenberg.org/ebooks/48888', 'de', 6737), +(50785, 'The Art of Disappearing', 'Smith, John Talbot', '2009-01-29', 34, 'https://www.gutenberg.org/ebooks/27925', 'en', 3378), +(50786, 'Der Schwierige: Lustspiel in drei Akten', 'Hofmannsthal, Hugo von', '2014-09-20', 10, 'https://www.gutenberg.org/ebooks/46912', 'de', 15123), +(50787, 'Korean Tales\r\nBeing a collection of stories translated from the Korean folk lore, together with introductory chapters descriptive of Korea', 'Allen, Horace Newton', '2017-09-13', 52, 'https://www.gutenberg.org/ebooks/55539', 'en', 2039), +(50788, 'Aesop\'s Fables - Volume 01', 'Aesop', '2006-10-26', 211, 'https://www.gutenberg.org/ebooks/19616', 'en', 7140), +(50789, 'Indian Currency and Finance', 'Keynes, John Maynard', '2015-06-07', 84, 'https://www.gutenberg.org/ebooks/49166', 'en', 17194), +(50790, 'The World English Bible (WEB): 2 Chronicles', 'Anonymous', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8241', 'en', 1121), +(50791, 'Education of a Martian', 'Shallit, Joseph', '2016-01-08', 58, 'https://www.gutenberg.org/ebooks/50877', 'en', 2627), +(50792, 'A Dish of Orts : Chiefly Papers on the Imagination, and on Shakespeare', 'MacDonald, George', '2005-11-01', 57, 'https://www.gutenberg.org/ebooks/9393', 'en', 2156), +(50793, 'Notes from the Underground', 'Dostoyevsky, Fyodor', '1996-07-01', 2318, 'https://www.gutenberg.org/ebooks/600', 'en', 3081), +(50794, '比目魚', 'Aiyuezhuren', '2008-11-02', 38, 'https://www.gutenberg.org/ebooks/27119', 'zh', 3187), +(50795, 'Punch, or the London Charivari, Volume 1, November 6, 1841,', 'Various', '2005-02-07', 3, 'https://www.gutenberg.org/ebooks/14935', 'en', 134), +(50796, 'Piano Playing, with Piano Questions Answered', 'Hofmann, Josef', '2012-03-20', 48, 'https://www.gutenberg.org/ebooks/39211', 'en', 5958), +(50797, 'Siam: Land of Free Men', 'Deignan, H. G. (Herbert Girton)', '2014-01-16', 16, 'https://www.gutenberg.org/ebooks/44679', 'en', 17195), +(50798, 'Edward MacDowell: A Study', 'Gilman, Lawrence', '2004-11-21', 21, 'https://www.gutenberg.org/ebooks/14109', 'en', 5038), +(50799, 'The Ghost in the Tower: An Episode in Jacobia', 'Reed, Earl H. (Earl Howell)', '2018-11-03', 8, 'https://www.gutenberg.org/ebooks/58226', 'en', 17196), +(50800, 'The Corner House Girls on Palm Island', 'Hill, Grace Brooks', '2011-05-30', 16, 'https://www.gutenberg.org/ebooks/36259', 'en', 1625), +(50801, 'Advice to a Young Man upon First Going to Oxford\nIn Ten Letters, From an Uncle to His Nephew', 'Berens, Edward', '2007-03-29', 26, 'https://www.gutenberg.org/ebooks/20932', 'en', 17197), +(50802, 'The Nest, The White Pagoda, The Suicide, A Forsaken Temple, Miss Jones and the Masterpiece', 'Sedgwick, Anne Douglas', '2010-08-23', 5, 'https://www.gutenberg.org/ebooks/33519', 'en', 61), +(50803, 'L\'Afrique aux Noirs', 'Otlet, Paul', '2019-02-04', 18, 'https://www.gutenberg.org/ebooks/58828', 'fr', 17198), +(50804, 'A Literary History of the Arabs', 'Nicholson, Reynold Alleyne', '2011-11-11', 41, 'https://www.gutenberg.org/ebooks/37985', 'en', 13657), +(50805, 'Scientific American Supplement, No. 799, April 25, 1891', 'Various', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11649', 'en', 210), +(50806, 'The Prophet Ezekiel: An Analytical Exposition', 'Gaebelein, Arno Clemens', '2011-07-26', 24, 'https://www.gutenberg.org/ebooks/36857', 'en', 8389), +(50807, 'The Future Belongs to the People', 'Liebknecht, Karl Paul August Friedrich', '2012-03-01', 62, 'https://www.gutenberg.org/ebooks/39023', 'en', 335), +(50808, 'The Drunkard', 'Thorne, Guy', '2012-10-22', 71, 'https://www.gutenberg.org/ebooks/41139', 'en', 17199), +(50809, 'The Nature of a Gospel Church\r\nA Confession of Evangelical Principles; and the Members\' Covenant. Intended for the Use of the Church of Christ.', 'Church, J. (John)', '2018-10-03', 5, 'https://www.gutenberg.org/ebooks/58014', 'en', 2382), +(50810, 'A Manual of Conchology\r\nAccording to the System Laid Down by Lamarck, with the Late Improvements by De Blainville. Exemplified and Arranged for the Use of Students.', 'Wyatt, Thomas', '2018-09-07', 8, 'https://www.gutenberg.org/ebooks/57860', 'en', 17200), +(50811, 'A Woman\'s Hardy Garden', 'Ely, Helena Rutherfurd', '2014-07-19', 45, 'https://www.gutenberg.org/ebooks/45599', 'en', 11332), +(50812, 'Captives of the Flame', 'Delany, Samuel R.', '2013-01-24', 95, 'https://www.gutenberg.org/ebooks/41905', 'en', 26), +(50813, 'Rede, gehalten bei der Eröffnung der Versammlung deutscher Naturforscher und Ärzte in Berlin, am 18. September 1828', 'Humboldt, Alexander von', '2007-09-18', 20, 'https://www.gutenberg.org/ebooks/22659', 'de', 659), +(50814, 'The Visionary: Pictures From Nordland', 'Lie, Jonas', '2004-11-01', 25, 'https://www.gutenberg.org/ebooks/13922', 'en', 286), +(50815, 'Johan Tobias Beckin elämäkerta', 'Hyvärinen, Eero', '2015-10-22', 15, 'https://www.gutenberg.org/ebooks/50279', 'fi', 17201), +(50816, 'MindGames: Short Fiction about Bizarre Mental Health Disorders', 'Vaknin, Samuel', '2009-03-20', 39, 'https://www.gutenberg.org/ebooks/28363', 'en', 179), +(50817, 'Viaje a los Estados Unidos, Tomo I', 'Prieto, Guillermo', '2015-07-03', 61, 'https://www.gutenberg.org/ebooks/49354', 'es', 1110), +(50818, 'A Fool for Love', 'Lynde, Francis', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8073', 'en', 1239), +(50819, 'Georgina of the Rainbows', 'Johnston, Annie F. (Annie Fellows)', '2005-04-01', 13, 'https://www.gutenberg.org/ebooks/7807', 'en', 4428), +(50820, 'Bell\'s Cathedrals: The Cathedral Church of Exeter\nA Description of Its Fabric and a Brief History of the Episcopal See', 'Addleshaw, Percy', '2006-10-01', 20, 'https://www.gutenberg.org/ebooks/19424', 'en', 17202), +(50821, 'The Ambassadors', 'James, Henry', '1996-02-01', 317, 'https://www.gutenberg.org/ebooks/432', 'en', 1061), +(50822, 'The Doom of the Griffiths', 'Gaskell, Elizabeth Cleghorn', '2001-03-01', 34, 'https://www.gutenberg.org/ebooks/2549', 'en', 45), +(50823, 'Mogreb-el-Acksa: A Journey in Morocco', 'Cunninghame Graham, R. B. (Robert Bontine)', '2015-02-17', 10, 'https://www.gutenberg.org/ebooks/48286', 'en', 6762), +(50824, 'King Hacon\'s Death, and Bran and the Black Dog: Two Ballads', NULL, '2008-10-07', 12, 'https://www.gutenberg.org/ebooks/26803', 'en', 4390), +(50825, 'A Charming Fellow, Volume I', 'Trollope, Frances Eleanor', '2011-02-28', 18, 'https://www.gutenberg.org/ebooks/35428', 'en', 61), +(50826, 'Byzantine Churches in Constantinople: Their History and Architecture', 'Henderson, Arthur E. (Arthur Edward)', '2009-06-09', 44, 'https://www.gutenberg.org/ebooks/29077', 'en', 17203), +(50827, 'Sir John French: An Authentic Biography', 'Chisholm, Cecil', '2006-02-16', 31, 'https://www.gutenberg.org/ebooks/17778', 'en', 17204), +(50828, 'Miss Mouse and Her Boys', 'Molesworth, Mrs.', '2010-01-14', 14, 'https://www.gutenberg.org/ebooks/30966', 'en', 14094), +(50829, 'With the Allies to Pekin: A Tale of the Relief of the Legations', 'Henty, G. A. (George Alfred)', '2014-09-30', 28, 'https://www.gutenberg.org/ebooks/47008', 'en', 3145), +(50830, 'Tonto Cliff Dwellings Guide: Tonto National Monument, Arizona\r\n11th Edition, Revised', 'United States. National Park Service', '2015-06-11', 14, 'https://www.gutenberg.org/ebooks/49192', 'en', 17205), +(50831, 'Taxonomy and Distribution of Some American Shrews', 'Findley, James S. (James Smith)', '2010-01-26', 2, 'https://www.gutenberg.org/ebooks/31088', 'en', 9374), +(50832, 'The Jessamy Bride', 'Moore, Frank Frankfort', '2016-05-02', 10, 'https://www.gutenberg.org/ebooks/51951', 'en', 17206), +(50833, 'Meadow Grass: Tales of New England Life', 'Brown, Alice', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9367', 'en', 13), +(50834, 'Narrative and Critical History of America, Vol. 2 (of 8)\r\nSpanish Explorations and Settlements in America from the Fifteenth to the Seventeenth Century', NULL, '2016-01-09', 14, 'https://www.gutenberg.org/ebooks/50883', 'en', 207), +(50835, 'Daisy\'s Aunt', 'Benson, E. F. (Edward Frederic)', '2009-05-31', 25, 'https://www.gutenberg.org/ebooks/28999', 'en', 273), +(50836, 'Das Bücher-Dekameron\nEine Zehn-Nächte-Tour durch die europäische Gesellschaft und Literatur', 'Edschmid, Kasimir', '2015-01-21', 9, 'https://www.gutenberg.org/ebooks/48040', 'de', 2145), +(50837, 'Lore of Proserpine', 'Hewlett, Maurice', '2006-07-01', 17, 'https://www.gutenberg.org/ebooks/18730', 'en', 2203), +(50838, 'The Pansy Magazine, August 1886', 'Various', '2015-01-01', 33, 'https://www.gutenberg.org/ebooks/47834', 'en', 522), +(50839, 'Abrégé de l\'Histoire Générale des Voyages (Tome 2)', 'La Harpe, Jean-François de', '2008-03-06', 19, 'https://www.gutenberg.org/ebooks/24768', 'fr', 1332), +(50840, 'Notes and Queries, Vol. IV, Number 93, August 9, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-12-19', 11, 'https://www.gutenberg.org/ebooks/38337', 'en', 105), +(50841, 'Michelangelo Gedichte und Briefe\nIn Auswahl herausgegeben von R. A. Guardini', 'Michelangelo Buonarroti', '2005-05-11', 55, 'https://www.gutenberg.org/ebooks/15813', 'de', 17207), +(50842, 'From Dublin to Chicago: Some Notes on a Tour in America', 'Birmingham, George A.', '2018-01-09', 13, 'https://www.gutenberg.org/ebooks/56348', 'en', 1110), +(50843, 'Letters from England, 1846-1849', 'Bancroft, Elizabeth Davis', '1999-10-01', 16, 'https://www.gutenberg.org/ebooks/1936', 'en', 776), +(50844, 'Index of the Project Gutenberg Works of Bret Harte', 'Harte, Bret', '2019-04-17', 21, 'https://www.gutenberg.org/ebooks/59300', 'en', 198), +(50845, 'Lord Ormont and His Aminta — Volume 2', 'Meredith, George', '2003-09-01', 8, 'https://www.gutenberg.org/ebooks/4478', 'en', 137), +(50846, 'Selected Prose of Oscar Wilde', 'Wilde, Oscar', '1998-06-01', 132, 'https://www.gutenberg.org/ebooks/1338', 'en', 20), +(50847, 'Shakespeare: A Lecture', 'Ingersoll, Robert Green', '2011-11-22', 13, 'https://www.gutenberg.org/ebooks/38105', 'en', 3360), +(50848, 'L\'Illustration, No. 3660, 19 Avril 1913', 'Various', '2011-11-10', 3, 'https://www.gutenberg.org/ebooks/37971', 'fr', 150), +(50849, 'The Grocery Man And Peck\'s Bad Boy\nPeck\'s Bad Boy and His Pa, No. 2 - 1883', 'Peck, George W. (George Wilbur)', '2008-05-16', 10, 'https://www.gutenberg.org/ebooks/25488', 'en', 17208), +(50850, 'The Trial and Death of Jesus Christ: A Devotional History of Our Lord\'s Passion', 'Stalker, James', '2007-06-12', 10, 'https://www.gutenberg.org/ebooks/21814', 'en', 17209), +(50851, 'Ghostly Phenomena', 'O\'Donnell, Elliott', '2012-09-21', 36, 'https://www.gutenberg.org/ebooks/40823', 'en', 1245), +(50852, 'The Battle of Verdun (1914-1918)', NULL, '2016-10-30', 12, 'https://www.gutenberg.org/ebooks/53408', 'en', 17210), +(50853, 'The Little Colonel at Boarding-School', 'Johnston, Annie F. (Annie Fellows)', '2012-02-21', 31, 'https://www.gutenberg.org/ebooks/38939', 'en', 2154), +(50854, 'How to Do Mechanical Tricks\nContaining Complete Instruction for Performing Over Sixty Ingenious Mechanical Tricks', 'Anderson, A., active 1894-1902', '2018-09-13', 60, 'https://www.gutenberg.org/ebooks/57894', 'en', 1530), +(50855, 'The Beautiful Lady', 'Tarkington, Booth', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/5798', 'en', 17211), +(50856, 'St Nicotine of the Peace Pipe', 'Heward, Edward Vincent', '2018-04-08', 10, 'https://www.gutenberg.org/ebooks/56946', 'en', 8609), +(50857, 'What Have the Greeks Done for Modern Civilisation?', 'Mahaffy, J. P. (John Pentland)', '2019-03-26', 18, 'https://www.gutenberg.org/ebooks/59132', 'en', 17212), +(50858, 'Punch, or the London Charivari, Volume 103, December 17, 1892', 'Various', '2007-04-11', 10, 'https://www.gutenberg.org/ebooks/21028', 'en', 134), +(50859, 'A Breath of Prairie and other stories', 'Lillibridge, Will', '2009-06-26', 16, 'https://www.gutenberg.org/ebooks/29245', 'en', 112), +(50860, 'The Great Round World and What Is Going On In It, Vol. 1, No. 59, December 23, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-08-09', 6, 'https://www.gutenberg.org/ebooks/16498', 'en', 1), +(50861, 'Pankkiherroja', 'Leino, Eino', '2004-07-02', 14, 'https://www.gutenberg.org/ebooks/12804', 'fi', 61), +(50862, 'Love\'s Final Victory\r\nUltimate Universal Salvation on the Basis of Scripture and Reason', 'Horatio', '2006-02-01', 8, 'https://www.gutenberg.org/ebooks/9969', 'en', 17213), +(50863, 'La Navigation Aérienne L\'aviation Et La Direction Des Aérostats Dans Les Temps Anciens Et Modernes', 'Tissandier, Gaston', '2009-03-24', 23, 'https://www.gutenberg.org/ebooks/28397', 'fr', 5353), +(50864, 'The Motor Boys Overland; Or, A Long Trip for Fun and Fortune', 'Young, Clarence', '2013-05-20', 10, 'https://www.gutenberg.org/ebooks/42748', 'en', 4887), +(50865, 'A Fountain Sealed', 'Sedgwick, Anne Douglas', '2005-05-01', 11, 'https://www.gutenberg.org/ebooks/8087', 'en', 61), +(50866, 'Representative Plays by American Dramatists: 1856-1911:\nIntroduction and Bibliography', 'Moses, Montrose Jonas', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/12038', 'en', 16338), +(50867, 'The Annual Monitor for 1851\nor, Obituary of the members of the Society of Friends in Great\nBritain and Ireland, for the year 1850', 'Anonymous', '2006-06-04', 9, 'https://www.gutenberg.org/ebooks/18502', 'en', 5866), +(50868, 'Temporal Power: A Study in Supremacy', 'Corelli, Marie', '2004-11-01', 28, 'https://www.gutenberg.org/ebooks/6921', 'en', 1397), +(50869, 'Heather and Snow', 'MacDonald, George', '2005-10-01', 60, 'https://www.gutenberg.org/ebooks/9155', 'en', 942), +(50870, 'A Christmas Carol\nThe original manuscript', 'Dickens, Charles', '2009-10-30', 132, 'https://www.gutenberg.org/ebooks/30368', 'en', 6849), +(50871, 'Harper\'s Young People, July 12, 1881\nAn Illustrated Weekly', 'Various', '2015-02-15', 6, 'https://www.gutenberg.org/ebooks/48272', 'en', 479), +(50872, 'L\'Illustration, No. 2518, 30 Mai 1891', 'Various', '2014-06-11', 3, 'https://www.gutenberg.org/ebooks/45935', 'fr', 150), +(50873, 'Lapsuus, Poika-ikä, Nuoruus 2: Poika-ikä, Nuoruus', 'Tolstoy, Leo, graf', '2016-09-04', 7, 'https://www.gutenberg.org/ebooks/52982', 'fi', 17214), +(50874, 'The White Peacock', 'Lawrence, D. H. (David Herbert)', '2012-01-13', 98, 'https://www.gutenberg.org/ebooks/38561', 'en', 14298), +(50875, 'Design and Tradition\r\nA short account of the principles and historic development of architecture and the applied arts', 'Fenn, Amor', '2016-12-31', 34, 'https://www.gutenberg.org/ebooks/53850', 'en', 14419), +(50876, 'Encyclopaedia Britannica, 11th Edition, \"Carnegie Andrew\" to \"Casus Belli\"\r\nVolume 5, Slice 4', 'Various', '2010-07-17', 41, 'https://www.gutenberg.org/ebooks/33189', 'en', 1081), +(50877, 'The Enchiridion', 'Epictetus', '2014-03-10', 1447, 'https://www.gutenberg.org/ebooks/45109', 'en', 8979), +(50878, 'Communication', 'Fontenay, Charles L.', '2019-05-19', 101, 'https://www.gutenberg.org/ebooks/59556', 'en', 67), +(50879, 'The Works of the Right Honourable Edmund Burke, Vol. 03 (of 12)', 'Burke, Edmund', '2005-04-22', 250, 'https://www.gutenberg.org/ebooks/15679', 'en', 4505), +(50880, 'Mopsa the Fairy', 'Ingelow, Jean', '2010-06-18', 16, 'https://www.gutenberg.org/ebooks/32867', 'en', 1007), +(50881, 'De Sobremesa; crónicas, Cuarta Parte (de 5)', 'Benavente, Jacinto', '2018-12-17', 10, 'https://www.gutenberg.org/ebooks/58484', 'es', 1384), +(50882, 'The International Monthly, Volume 2, No. 4, March, 1851', 'Various', '2008-03-23', 7, 'https://www.gutenberg.org/ebooks/24902', 'en', 2522), +(50883, 'The Adventures of Puss in Boots\nMarks\'s Edition', 'Anonymous', '2011-09-25', 56, 'https://www.gutenberg.org/ebooks/37529', 'en', 8642), +(50884, 'Men, Women, and God\r\nA Discussion of Sex Questions from the Christian Point of View', 'Gray, A. Herbert (Arthur Herbert)', '2004-09-01', 17, 'https://www.gutenberg.org/ebooks/6579', 'en', 17215), +(50885, 'Wild Justice: Stories of the South Seas', 'Osbourne, Lloyd', '2009-08-06', 22, 'https://www.gutenberg.org/ebooks/29621', 'en', 179), +(50886, 'Hospital Sketches', 'Alcott, Louisa May', '2003-03-01', 113, 'https://www.gutenberg.org/ebooks/3837', 'en', 13163), +(50887, 'Nuove storie d\'ogni colore', 'De Marchi, Emilio', '2006-11-21', 18, 'https://www.gutenberg.org/ebooks/19888', 'it', 179), +(50888, 'Amistad funesta: Novela', 'Martí, José', '2006-04-14', 33, 'https://www.gutenberg.org/ebooks/18166', 'es', 17216), +(50889, 'Bastiljin valloitus', 'Dumas, Alexandre', '2017-02-27', 6, 'https://www.gutenberg.org/ebooks/54249', 'fi', 248), +(50890, 'John Leech\'s Pictures of Life and Character', 'Thackeray, William Makepeace', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9531', 'en', 2965), +(50891, 'Kommunistinen yhteiskunta vuonna 2000\nJatkoa ja vastaus Edward Bellamyn romaaniin \"Vuonna 2000\"', 'Michaelis, Richard', '2006-03-04', 19, 'https://www.gutenberg.org/ebooks/17912', 'fi', 5147), +(50892, 'The Redemption of Freetown', 'Sheldon, Charles M.', '2015-03-31', 13, 'https://www.gutenberg.org/ebooks/48616', 'en', 942), +(50893, 'The Strange Adventures of Captain Dangerous, Vol. 3 \r\nWho was a sailor, a soldier, a merchant, a spy, a slave\r\namong the moors...', 'Sala, George Augustus', '2008-09-19', 14, 'https://www.gutenberg.org/ebooks/26669', 'en', 2588), +(50894, 'The Young Voyageurs: Boy Hunters in the North', 'Reid, Mayne', '2007-10-20', 22, 'https://www.gutenberg.org/ebooks/23129', 'en', 246), +(50895, 'The Red House Mystery\nThe Piccadilly Novels', 'Duchess', '2017-06-05', 16, 'https://www.gutenberg.org/ebooks/54847', 'en', 61), +(50896, 'Reminiscences of Prince Talleyrand, Volume 2 (of 2)', 'Colmache, M., active 19th century', '2017-11-18', 5, 'https://www.gutenberg.org/ebooks/55995', 'en', 1343), +(50897, 'A Strange Story — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7699', 'en', 137), +(50898, 'The Voyages and Adventures of Captain Hatteras', 'Verne, Jules', '2009-07-15', 85, 'https://www.gutenberg.org/ebooks/29413', 'en', 324), +(50899, 'Notes and Queries, Index to Ninth Volume, January-June 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-06-12', 9, 'https://www.gutenberg.org/ebooks/42922', 'en', 105), +(50900, 'Doorstep', 'Laumer, Keith', '2016-03-20', 166, 'https://www.gutenberg.org/ebooks/51509', 'en', 67), +(50901, 'Dombey and Son', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9703', 'en', 14876), +(50902, 'Uhri: Perheromaani', 'Anttila, Selma', '2015-03-07', 8, 'https://www.gutenberg.org/ebooks/48424', 'fi', 456), +(50903, '虬髯客傳', 'Du, Guangting', '2007-12-19', 28, 'https://www.gutenberg.org/ebooks/23915', 'zh', 4473), +(50904, 'The Stark Munro Letters\r\nBeing series of twelve letters written by J. Stark Munro, M.B., to his friend and former fellow-student, Herbert Swanborough, of Lowell, Massachusetts, during the years 1881-1884', 'Doyle, Arthur Conan', '1995-07-01', 166, 'https://www.gutenberg.org/ebooks/290', 'en', 258), +(50905, 'Sevillan parturi eli Turha varovaisuus: Komedia neljässä näytöksessä', 'Beaumarchais, Pierre Augustin Caron de', '2006-05-08', 16, 'https://www.gutenberg.org/ebooks/18354', 'fi', 17217), +(50906, 'Coronation Anecdotes', 'Gossip, Giles', '2008-12-22', 12, 'https://www.gutenberg.org/ebooks/27589', 'en', 17218), +(50907, 'The Promise of World Peace', 'Universal House of Justice', '2006-09-18', 19, 'https://www.gutenberg.org/ebooks/19286', 'en', 7676), +(50908, 'Letter to the Right Honourable Lord Viscount Melbourne on the Cause of the Higher Average Price of Grain in Britain than on the the Continent', 'Grant Suttie, George, Sir', '2011-04-14', 2, 'https://www.gutenberg.org/ebooks/35870', 'en', 9927), +(50909, 'The Puppet Crown', 'MacGrath, Harold', '2002-05-01', 25, 'https://www.gutenberg.org/ebooks/3239', 'en', 17219), +(50910, 'The Corner of Harley Street\nBeing Some Familiar Correspondence of Peter Harding, M.D.', 'Bashford, H. H. (Henry Howarth), Sir', '2012-05-12', 10, 'https://www.gutenberg.org/ebooks/39681', 'en', 1563), +(50911, 'The Caves of Fear: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-05-06', 29, 'https://www.gutenberg.org/ebooks/32269', 'en', 1006), +(50912, 'The Rise of the Dutch Republic — Volume 19: 1572-73', 'Motley, John Lothrop', '2004-01-01', 49, 'https://www.gutenberg.org/ebooks/4820', 'en', 3372), +(50913, 'The Faith of the Millions (2nd series)', 'Tyrrell, George', '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10139', 'en', 10543), +(50914, 'Thirty Canadian V.Cs., 23d April 1915 to 30th March 1918', 'Richards, Robin', '2012-09-02', 19, 'https://www.gutenberg.org/ebooks/40649', 'en', 1525), +(50915, 'Running Sands', 'Kauffman, Reginald Wright', '2012-02-03', 78, 'https://www.gutenberg.org/ebooks/38753', 'en', 675), +(50916, 'Brazil and Her People of To-day\r\nAn Account of the Customs, Characteristics, Amusements, History and Advancement of the Brazilians, and the Development and Resources of Their Country', 'Winter, Nevin O. (Nevin Otto)', '2019-06-16', 46, 'https://www.gutenberg.org/ebooks/59764', 'en', 6260), +(50917, 'Phantom Fortune, a Novel', 'Braddon, M. E. (Mary Elizabeth)', '2004-02-01', 45, 'https://www.gutenberg.org/ebooks/10905', 'en', 137), +(50918, 'Light on the Path and Through the Gates of Gold', 'Collins, Mabel', '2005-01-05', 77, 'https://www.gutenberg.org/ebooks/14599', 'en', 43), +(50919, 'Yö ja aamu: Novelleja', 'Balázs, Alexander', '2016-03-08', 3, 'https://www.gutenberg.org/ebooks/51394', 'fi', 17220), +(50920, 'The Measure of a Man', 'Barr, Amelia E.', '2005-08-06', 11, 'https://www.gutenberg.org/ebooks/16453', 'en', 61), +(50921, 'La Mejor Cocinera, Recetas de Cocina', 'Calleja (pseudonym)', '2005-09-01', 49, 'https://www.gutenberg.org/ebooks/8870', 'es', 1369), +(50922, 'The Rainy Day Railroad War', 'Day, Holman', '2007-09-18', 8, 'https://www.gutenberg.org/ebooks/22666', 'en', 9129), +(50923, 'The Antiquary — Volume 02', 'Scott, Walter', '2004-08-17', 12, 'https://www.gutenberg.org/ebooks/7004', 'en', 4905), +(50924, 'The Soul of the Soldier: Sketches from the Western Battle-Front', 'Tiplady, Thomas', '2014-07-18', 13, 'https://www.gutenberg.org/ebooks/46323', 'en', 3601), +(50925, 'The Tower of Oblivion', 'Onions, Oliver', '2010-12-19', 37, 'https://www.gutenberg.org/ebooks/34703', 'en', 26), +(50926, 'The Romancers: A Comedy in Three Acts', 'Rostand, Edmond', '2006-01-23', 18, 'https://www.gutenberg.org/ebooks/17581', 'en', 1234), +(50927, 'Running to Waste: The Story of a Tomboy', 'Baker, George M. (George Melville)', '2015-10-17', 19, 'https://www.gutenberg.org/ebooks/50246', 'en', 195), +(50928, 'The Writings Of Thomas Paine, Volume III.\n1791-1804', 'Paine, Thomas', '2010-02-13', 49, 'https://www.gutenberg.org/ebooks/31271', 'en', 8061), +(50929, 'Notes and Queries, Number 168, January 15, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 21, 'https://www.gutenberg.org/ebooks/42783', 'en', 105), +(50930, 'Fifty-One Tales', 'Dunsany, Lord', '2005-04-01', 250, 'https://www.gutenberg.org/ebooks/7838', 'en', 2634), +(50931, 'Miss Beecher\'s Housekeeper and Healthkeeper\r\nContaining Five Hundred Receipes for Economical and Healthful Cooking; also, Many Directions for Securing Health and Happiness', 'Beecher, Catharine Esther', '2017-10-12', 18, 'https://www.gutenberg.org/ebooks/55734', 'en', 3407), +(50932, 'Cours familier de Littérature - Volume 06', 'Lamartine, Alphonse de', '2008-11-22', 14, 'https://www.gutenberg.org/ebooks/27314', 'fr', 920), +(50933, 'A Voyage to Terra Australis — Volume 2\r\nUndertaken for the purpose of completing the discovery of that vast country, and prosecuted in the years 1801, 1802 and 1803, in His Majesty\'s ship the Investigator, and subsequently in the armed vessel Porpoise and Cumberland schooner', 'Flinders, Matthew', '2004-08-06', 20, 'https://www.gutenberg.org/ebooks/13121', 'en', 885), +(50934, 'Irish Witchcraft and Demonology', 'Seymour, St. John D. (St. John Drelincourt)', '2013-09-05', 90, 'https://www.gutenberg.org/ebooks/43651', 'en', 17221), +(50935, 'Alps and Sanctuaries of Piedmont and the Canton Ticino', 'Butler, Samuel', '2001-04-01', 20, 'https://www.gutenberg.org/ebooks/2576', 'en', 17222), +(50936, 'Punch, or the London Charivari, Vol. 98, June 28 1890', 'Various', '2010-08-24', 7, 'https://www.gutenberg.org/ebooks/33526', 'en', 134), +(50937, 'The Praying Skipper, and Other Stories', 'Paine, Ralph Delahaye', '2019-02-03', 17, 'https://www.gutenberg.org/ebooks/58817', 'en', 3039), +(50938, 'Stories of Symphonic Music\r\nA Guide to the Meaning of Important Symphonies, Overtures, and Tone-poems from Beethoven to the Present Day', 'Gilman, Lawrence', '2018-04-28', 15, 'https://www.gutenberg.org/ebooks/57063', 'en', 17223), +(50939, 'Experiments upon magnesia alba, Quicklime, and some other Alcaline Substances', 'Black, Joseph', '2008-02-13', 19, 'https://www.gutenberg.org/ebooks/24591', 'en', 951), +(50940, 'Arran del Cingle', 'Morató, Joseph', '2008-05-12', 8, 'https://www.gutenberg.org/ebooks/25443', 'ca', 13552), +(50941, 'The Balkan Wars: 1912-1913\nThird Edition', 'Schurman, Jacob Gould', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11676', 'en', 12965), +(50942, 'L\'Illustration, No. 0013, 27 Mai 1843', 'Various', '2011-07-27', 13, 'https://www.gutenberg.org/ebooks/36868', 'fr', 150), +(50943, 'La voz de la conseja, t.2\r\nSelección de las mejores novelas breves y cuentos de los más esclarecidos literatos', 'Retana, Alvaro', '2012-10-18', 82, 'https://www.gutenberg.org/ebooks/41106', 'es', 1696), +(50944, 'The Tale of Peter Rabbit', 'Potter, Beatrix', '2004-12-08', 179, 'https://www.gutenberg.org/ebooks/14304', 'en', 1045), +(50945, 'The Mask: A Story of Love and Adventure', 'Hornblow, Arthur', '2006-12-18', 30, 'https://www.gutenberg.org/ebooks/20131', 'en', 8591), +(50946, 'St. George and St. Michael', 'MacDonald, George', '2004-05-01', 24, 'https://www.gutenberg.org/ebooks/5753', 'en', 4665), +(50947, 'An Introduction to the History of Japan', 'Hara, Katsuro', '2011-08-24', 40, 'https://www.gutenberg.org/ebooks/37186', 'en', 52), +(50948, 'Rousseau', 'Hensel, Paul', '2013-12-20', 5, 'https://www.gutenberg.org/ebooks/44474', 'de', 608), +(50949, 'Frederick Chopin, as a Man and Musician — Volume 1', 'Niecks, Frederick', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/4681', 'en', 392), +(50950, 'The Last of the Vikings', 'Bowling, John (Novelist)', '2011-05-07', 25, 'https://www.gutenberg.org/ebooks/36054', 'en', 17224), +(50951, 'Études: Baudelaire, Paul Claudel, André Gide, Rameau, Bach, Franck, Wagner, Moussorgsky, Debussy, Ingres, Cézanne, Gauguin', 'Rivière, Jacques', '2016-07-06', 22, 'https://www.gutenberg.org/ebooks/52511', 'fr', 7759), +(50952, 'Mollie and the Unwiseman', 'Bangs, John Kendrick', '2012-05-27', 22, 'https://www.gutenberg.org/ebooks/39820', 'en', 637), +(50953, 'The Book of Town & Window Gardening', 'Bardswell, Frances A.', '2018-06-02', 26, 'https://www.gutenberg.org/ebooks/57251', 'en', 1413), +(50954, 'Cap and Gown\nA Treasury of College Verse', NULL, '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10596', 'en', 178), +(50955, 'The Wreckers of Sable Island', 'Oxley, J. Macdonald (James Macdonald)', '2010-09-12', 27, 'https://www.gutenberg.org/ebooks/33714', 'en', 323), +(50956, 'My Experiences in a Lunatic Asylum\r\nBy a Sane Patient', 'Merivale, Herman Charles', '2012-11-09', 31, 'https://www.gutenberg.org/ebooks/41334', 'en', 17225), +(50957, 'Bocetos californianos', 'Harte, Bret', '2008-06-01', 15, 'https://www.gutenberg.org/ebooks/25671', 'es', 315), +(50958, 'Punch, or the London Charivari, Volume 153, December 12, 1917', 'Various', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/11444', 'en', 134), +(50959, 'Investigation of Communist Activities in Seattle, Wash., Area, Hearings, Part 1', 'United States. Congress. House. Committee on Un-American Activities', '2018-01-16', 8, 'https://www.gutenberg.org/ebooks/56383', 'en', 7336), +(50960, 'Barbara Blomberg — Volume 01', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5561', 'en', 803), +(50961, 'Memoirs of the Duchesse de Dino (Afterwards Duchesse de Talleyrand et de Sagan), 1836-1840', 'Dino, Dorothée, duchesse de', '2014-01-12', 12, 'https://www.gutenberg.org/ebooks/44646', 'en', 9545), +(50962, 'The Outdoor Girls at the Hostess House; Or, Doing Their Best for the Soldiers', 'Hope, Laura Lee', '2004-11-24', 25, 'https://www.gutenberg.org/ebooks/14136', 'en', 62), +(50963, 'Das große Jagen', 'Ganghofer, Ludwig', '2018-11-01', 9, 'https://www.gutenberg.org/ebooks/58219', 'de', 17226), +(50964, 'The Best Short Stories of 1915, and the Yearbook of the American Short Story', NULL, '2007-01-07', 65, 'https://www.gutenberg.org/ebooks/20303', 'en', 1516), +(50965, 'The Story of the British Army', 'King, Charles Cooper', '2016-08-05', 15, 'https://www.gutenberg.org/ebooks/52723', 'en', 6517), +(50966, 'A Select Collection of Old English Plays, Volume 05', NULL, '2014-05-28', 21, 'https://www.gutenberg.org/ebooks/45794', 'en', 1088), +(50967, 'The Bible: What It Is!', 'Bradlaugh, Charles', '2011-05-29', 22, 'https://www.gutenberg.org/ebooks/36266', 'en', 16041), +(50968, 'Der Sturm, oder Die bezauberte Insel', 'Shakespeare, William', '2005-01-01', 39, 'https://www.gutenberg.org/ebooks/7236', 'de', 3502), +(50969, 'Autour de la lune', 'Verne, Jules', '2014-06-27', 57, 'https://www.gutenberg.org/ebooks/46111', 'fr', 4350), +(50970, 'George Selwyn: His Letters and His Life', 'Selwyn, George Augustus', '2005-09-05', 9, 'https://www.gutenberg.org/ebooks/16661', 'en', 17227), +(50971, 'Heart of the World', 'Haggard, H. Rider (Henry Rider)', '2007-09-01', 25, 'https://www.gutenberg.org/ebooks/22454', 'en', 580), +(50972, 'Dao De Jing: A Minimalist Translation', 'Laozi', '2015-09-14', 358, 'https://www.gutenberg.org/ebooks/49965', 'zh', 1493), +(50973, 'La liturgio de l\' foiro (Elementoj por ekzegezo)', 'Camacho, Jorge', '2007-11-22', 7, 'https://www.gutenberg.org/ebooks/23586', 'eo', 17228), +(50974, 'The Chapel of the Holy Spirit in the Church of St. Peter\'s, Cranley Gardens, S.W.', 'Morris, Percy C.', '2015-09-29', 4, 'https://www.gutenberg.org/ebooks/50074', 'en', 17229), +(50975, 'The Pilgrim\'s Shell; Or, Fergan the Quarryman: A Tale from the Feudal Times', 'Sue, Eugène', '2010-12-01', 10, 'https://www.gutenberg.org/ebooks/34531', 'en', 17230), +(50976, 'The Water-Finders', 'Vandeleur, Judith', '2017-09-08', 16, 'https://www.gutenberg.org/ebooks/55506', 'en', 95), +(50977, 'Venäjän historia 1878-1918', 'Hedenström, Alfred von', '2006-10-24', 25, 'https://www.gutenberg.org/ebooks/19629', 'fi', 17231), +(50978, 'Letters from China and Japan', 'Dewey, John', '2010-01-22', 48, 'https://www.gutenberg.org/ebooks/31043', 'en', 1809), +(50979, 'The Prince and the Page: A Story of the Last Crusade', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-01-01', 78, 'https://www.gutenberg.org/ebooks/3696', 'en', 17232), +(50980, 'Novellen', 'Leskov, N. S. (Nikolai Semenovich)', '2015-06-07', 18, 'https://www.gutenberg.org/ebooks/49159', 'de', 1871), +(50981, 'The Crimson Tide: A Novel', 'Chambers, Robert W. (Robert William)', '2009-09-01', 33, 'https://www.gutenberg.org/ebooks/29880', 'en', 61), +(50982, 'A Prairie-Schooner Princess', 'Maule, Mary K. (Mary Katherine)', '2013-08-13', 18, 'https://www.gutenberg.org/ebooks/43463', 'en', 17233), +(50983, 'Mr. Wicker\'s Window', 'Dawson, Carley', '2009-05-24', 40, 'https://www.gutenberg.org/ebooks/28952', 'en', 2203), +(50984, 'Soldier Boy', 'Shaara, Michael', '2016-01-05', 29, 'https://www.gutenberg.org/ebooks/50848', 'en', 5065), +(50985, 'A Critic in Pall Mall: Being Extracts from Reviews and Miscellanies', 'Wilde, Oscar', '2009-10-06', 54, 'https://www.gutenberg.org/ebooks/30191', 'en', 2156), +(50986, 'Mary Stuart\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 113, 'https://www.gutenberg.org/ebooks/2744', 'en', 5050), +(50987, '\'All\'s Well!\'', 'Oxenham, John', '2008-11-06', 16, 'https://www.gutenberg.org/ebooks/27126', 'en', 2100), +(50988, 'Punch, or the London Charivari, Volume 100, May 9, 1891', 'Various', '2004-08-28', 6, 'https://www.gutenberg.org/ebooks/13313', 'en', 134), +(50989, 'The Magistrate: A Farce in Three Acts', 'Pinero, Arthur Wing', '2013-01-01', 23, 'https://www.gutenberg.org/ebooks/41750', 'en', 907), +(50990, 'Three Things', 'Glyn, Elinor', '2008-04-28', 22, 'https://www.gutenberg.org/ebooks/25215', 'en', 1451), +(50991, 'Angels and Ministers, and Other Victorian Plays', 'Housman, Laurence', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/11020', 'en', 17234), +(50992, 'The History of Don Quixote, Volume 2, Part 36', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5939', 'en', 2176), +(50993, 'A Brief Sketch of the Long and Varied Career of Marshall MacDermott, Esq., J.P. of Adelaide, South Australia', 'MacDermott, Marshall', '2018-08-04', 5, 'https://www.gutenberg.org/ebooks/57635', 'en', 14500), +(50994, 'The Monctons: A Novel. Volume 2 (of 2)', 'Moodie, Susanna', '2012-02-09', 1, 'https://www.gutenberg.org/ebooks/38798', 'en', 61), +(50995, 'Soap-Bubbles and the Forces Which Mould Them', 'Boys, C. V. (Charles Vernon)', '2010-08-07', 49, 'https://www.gutenberg.org/ebooks/33370', 'en', 17235), +(50996, 'Lulu\'s Library, Volume 1 (of 3)', 'Alcott, Louisa May', '2012-09-05', 132, 'https://www.gutenberg.org/ebooks/40682', 'en', 388), +(50997, 'The Cornplanter Memorial\r\nAn Historical Sketch of Gy-ant-wa-chia—The Cornplanter, and of the Six Nations of Indians.', 'Snowden, James Ross', '2016-06-16', 11, 'https://www.gutenberg.org/ebooks/52347', 'en', 17236), +(50998, 'New York Times Current History; The European War, Vol 2, No. 3, June, 1915\nApril-September, 1915', 'Various', '2005-03-27', 12, 'https://www.gutenberg.org/ebooks/15480', 'en', 335), +(50999, 'Tales from the Veld', 'Glanville, Ernest', '2011-07-03', 7, 'https://www.gutenberg.org/ebooks/36602', 'en', 2820), +(51000, 'Tartarin Sur Les Alpes', 'Daudet, Alphonse', '2004-02-01', 33, 'https://www.gutenberg.org/ebooks/5105', 'fr', 5119), +(51001, 'Those Times and These', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2013-11-18', 15, 'https://www.gutenberg.org/ebooks/44222', 'en', 828), +(51002, 'A Catechism of Christian Doctrine', 'Anonymous', '2005-01-01', 70, 'https://www.gutenberg.org/ebooks/14552', 'en', 8685), +(51003, 'Primitive & Mediaeval Japanese Texts\r\nTransliterated into Roman with introductions, notes and glossaries', NULL, '2016-10-16', 101, 'https://www.gutenberg.org/ebooks/53295', 'en', 17237), +(51004, 'The Life of Mansie Wauch\nTailor in Dalkeith, written by himself', 'Moir, D. M. (David Macbeth)', '2007-03-07', 23, 'https://www.gutenberg.org/ebooks/20767', 'en', 17238), +(51005, 'With the Rank and File', 'Ford, Thomas J.', '2015-11-08', 4, 'https://www.gutenberg.org/ebooks/50410', 'en', 17239), +(51006, 'History of the Revolt of the Netherlands — Complete', 'Schiller, Friedrich', '2004-12-08', 46, 'https://www.gutenberg.org/ebooks/6780', 'en', 7175), +(51007, 'Floresta de varios romances', NULL, '2010-10-28', 14, 'https://www.gutenberg.org/ebooks/34155', 'pt', 17240), +(51008, 'Kenelm Chillingly — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7652', 'en', 137), +(51009, 'The Eleusinian Mysteries and Rites', 'Wright, Dudley', '2011-01-26', 29, 'https://www.gutenberg.org/ebooks/35087', 'en', 17241), +(51010, 'Kauhun saari', 'Wells, H. G. (Herbert George)', '2014-08-13', 26, 'https://www.gutenberg.org/ebooks/46575', 'fi', 26), +(51011, 'The Physiology of Marriage, Complete', 'Balzac, Honoré de', '2005-07-04', 65, 'https://www.gutenberg.org/ebooks/16205', 'en', 2642), +(51012, 'Memoirs', 'Leland, Charles Godfrey', '2007-07-09', 98, 'https://www.gutenberg.org/ebooks/22030', 'en', 3290), +(51013, 'Tribute to Michael Hart', 'AlHydar, Majid', '2013-06-21', 114, 'https://www.gutenberg.org/ebooks/43007', 'ar', 17242), +(51014, 'Novelle', 'Goethe, Johann Wolfgang von', '2000-09-01', 35, 'https://www.gutenberg.org/ebooks/2320', 'de', 5233), +(51015, 'O Centenario de José Estevão: Homenagem da Maçonaria Portugueza', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2008-12-16', 5, 'https://www.gutenberg.org/ebooks/27542', 'pt', 9597), +(51016, 'The Siege of Kimberley\r\nIts Humorous and Social Side; Anglo-Boer War (1899-1902); Eighteen Weeks in Eighteen Chapters', 'Phelan, T.', '2004-10-18', 30, 'https://www.gutenberg.org/ebooks/13777', 'en', 17243), +(51017, 'Il segreto dei fatti palesi seguiti nel 1859', 'Tommaseo, Niccolò', '2011-01-15', 15, 'https://www.gutenberg.org/ebooks/34969', 'it', 7026), +(51018, 'Enchantment', 'MacGrath, Harold', '2017-07-21', 15, 'https://www.gutenberg.org/ebooks/55162', 'en', 112), +(51019, 'Lord Milner\'s Work in South Africa\nFrom its Commencement in 1897 to the Peace of Vereeniging in 1902', 'Worsfold, W. Basil (William Basil)', '2008-08-30', 17, 'https://www.gutenberg.org/ebooks/26490', 'en', 1956), +(51020, 'Miscellaneous Writings, 1883-1896', 'Eddy, Mary Baker', '2010-02-27', 34, 'https://www.gutenberg.org/ebooks/31427', 'en', 1206), +(51021, 'Kaffir, Kangaroo, Klondike: Tales of the Gold Fields', 'Leavitt, Thad. W. H. (Thaddeus William Henry)', '2014-12-18', 17, 'https://www.gutenberg.org/ebooks/47695', 'en', 1555), +(51022, 'The Late Miss Hollingford', 'Gilbert, Rosa M. (Rosa Mulholland)', '2006-08-05', 10, 'https://www.gutenberg.org/ebooks/18991', 'en', 669), +(51023, 'Clocks', 'Jerome, Jerome K. (Jerome Klapka)', '1997-03-01', 82, 'https://www.gutenberg.org/ebooks/855', 'en', 20), +(51024, 'The Last Cruise of the Spitfire; or, Luke Foster\'s Strange Voyage', 'Stratemeyer, Edward', '2010-11-21', 15, 'https://www.gutenberg.org/ebooks/34367', 'en', 1447), +(51025, 'Bohemian San Francisco', 'Edwords, Clarence E. (Clarence Edgar)', '2009-05-01', 22, 'https://www.gutenberg.org/ebooks/28738', 'en', 1067), +(51026, 'The Silver Menace', 'Leinster, Murray', '2015-12-05', 37, 'https://www.gutenberg.org/ebooks/50622', 'en', 26), +(51027, 'Great Epochs in American History, Volume I.\nVoyages Of Discovery And Early Explorations: 1000 A.D.-1682', NULL, '2005-06-11', 29, 'https://www.gutenberg.org/ebooks/16037', 'en', 207), +(51028, 'Aunt Rachel\r\nA Rustic Sentimental Comedy', 'Murray, David Christie', '2007-08-01', 18, 'https://www.gutenberg.org/ebooks/22202', 'en', 61), +(51029, 'How Sammy Went to Coral-Land', 'Atwater, Emily Paret', '2005-02-01', 13, 'https://www.gutenberg.org/ebooks/7460', 'en', 17244), +(51030, 'Book of Judith', 'Unknown', '2006-11-18', 6, 'https://www.gutenberg.org/ebooks/19843', 'en', 13938), +(51031, 'Gabriel Lambert', 'Dumas, Alexandre', '2014-09-01', 15, 'https://www.gutenberg.org/ebooks/46747', 'fr', 2118), +(51032, 'The Battaile of Agincourt', 'Drayton, Michael', '2009-01-11', 25, 'https://www.gutenberg.org/ebooks/27770', 'en', 17245), +(51033, 'Socialismo y ciencia positiva (Darwin-Spencer-Marx)', 'Ferri, Enrico', '2017-03-04', 25, 'https://www.gutenberg.org/ebooks/54282', 'es', 254), +(51034, 'Mary at the Farm and Book of Recipes Compiled during Her Visit\namong the \"Pennsylvania Germans\"', 'Thomas, Edith May Bertels', '2004-09-27', 94, 'https://www.gutenberg.org/ebooks/13545', 'en', 17246), +(51035, 'First on the Moon', 'Sutton, Jeff', '2013-07-17', 37, 'https://www.gutenberg.org/ebooks/43235', 'en', 1029), +(51036, 'History of Friedrich II of Prussia — Volume 12', 'Carlyle, Thomas', '2008-06-16', 41, 'https://www.gutenberg.org/ebooks/2112', 'en', 6848), +(51037, 'Chicago\'s Black Traffic in White Girls', 'Turner-Zimmermann, Jean', '2010-03-12', 19, 'https://www.gutenberg.org/ebooks/31615', 'en', 14875), +(51038, 'The Afghan Wars 1839-42 and 1878-80', 'Forbes, Archibald', '2005-07-01', 37, 'https://www.gutenberg.org/ebooks/8428', 'en', 3631), +(51039, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 537, March 10, 1832', 'Various', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/12497', 'en', 133), +(51040, 'Counterfeit Money\r\nThe \"green goods\" business exposed for the benefit of all who have dishonest inclinations.', 'Anonymous', '2017-08-12', 22, 'https://www.gutenberg.org/ebooks/55350', 'en', 13623), +(51041, 'Peter Piper\'s Practical Principles of Plain and Perfect Pronunciation', 'Anonymous', '2008-04-09', 101, 'https://www.gutenberg.org/ebooks/25027', 'en', 17247), +(51042, 'Modern India', 'Curtis, William Eleroy', '2004-02-01', 64, 'https://www.gutenberg.org/ebooks/11212', 'en', 13637), +(51043, 'The Hanging Stranger', 'Dick, Philip K.', '2012-12-05', 275, 'https://www.gutenberg.org/ebooks/41562', 'en', 179), +(51044, 'The Levellers\nA Dialogue Between Two Young Ladies, Concerning Matrimony, Proposing an Act for Enforcing Marriage, for the Equality of Matches, and Taxing Single Persons', 'Anonymous', '2012-04-18', 16, 'https://www.gutenberg.org/ebooks/39478', 'en', 1451), +(51045, 'The Curlytops Snowed In; Or, Grand Fun with Skates and Sleds', 'Garis, Howard Roger', '2010-04-22', 24, 'https://www.gutenberg.org/ebooks/32090', 'en', 31), +(51046, 'Under Sail', 'Riesenberg, Felix', '2016-09-02', 15, 'https://www.gutenberg.org/ebooks/52949', 'en', 17248), +(51047, 'Stories About Indians', 'Merrill, Rufus', '2010-07-12', 6, 'https://www.gutenberg.org/ebooks/33142', 'en', 4248), +(51048, 'Coriolanus', 'Shakespeare, William', '1999-06-01', 10, 'https://www.gutenberg.org/ebooks/1797', 'en', 1298), +(51049, '\"My Merry Rockhurst\"\r\nBeing Some Episodes in the Life of Viscount Rockhurst, a Friend of King Charles the Second, and at One Time Constable of His Majesty\'s Tower of London', 'Castle, Agnes', '2018-06-27', 4, 'https://www.gutenberg.org/ebooks/57407', 'en', 1079), +(51050, 'Af mit Levned', 'Ussing, Johan Louis', '2011-06-15', 6, 'https://www.gutenberg.org/ebooks/36430', 'da', 17249), +(51051, 'The Boy who sailed with Blake', 'Kingston, William Henry Giles', '2007-05-16', 22, 'https://www.gutenberg.org/ebooks/21487', 'en', 17250), +(51052, 'Italian Prisons\r\nSt. Angelo; the Piombi; the Vicaria; Prisons of the Roman Inquisition', 'Griffiths, Arthur', '2016-05-28', 5, 'https://www.gutenberg.org/ebooks/52175', 'en', 17251), +(51053, 'Report of the Special Committee on Moral Delinquency in Children and Adolescents', 'New Zealand. Special Committee on Moral Delinquency in Children and Adolescents', '2005-01-22', 27, 'https://www.gutenberg.org/ebooks/14760', 'en', 17252), +(51054, 'What Is and What Might Be\nA Study of Education in General and Elementary Education in Particular', 'Holmes, Edmond', '2007-02-10', 19, 'https://www.gutenberg.org/ebooks/20555', 'en', 973), +(51055, 'Thirty-One Years on the Plains and in the Mountains, Or, the Last Voice from the Plains\r\nAn Authentic Record of a Life Time of Hunting, Trapping, Scouting and Indian Fighting in the Far West', 'Drannan, William F.', '2004-03-01', 21, 'https://www.gutenberg.org/ebooks/5337', 'en', 17253), +(51056, 'Warren Commission (10 of 26): Hearings Vol. X (of 15)', 'United States. Warren Commission', '2013-10-21', 24, 'https://www.gutenberg.org/ebooks/44010', 'en', 5206), +(51057, 'The Big Time', 'Leiber, Fritz', '2010-05-05', 106, 'https://www.gutenberg.org/ebooks/32256', 'en', 2229), +(51058, 'The Weird Adventures of Professor Delapine of the Sorbonne', 'Johnson, G. Lindsay (George Lindsay)', '2018-03-10', 20, 'https://www.gutenberg.org/ebooks/56713', 'en', 2300), +(51059, 'Punchinello, Volume 2, No. 34, November 19, 1870', 'Various', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10106', 'en', 372), +(51060, 'The Privet Hedge', 'Buckrose, J. E.', '2008-01-17', 12, 'https://www.gutenberg.org/ebooks/24333', 'en', 1902), +(51061, 'A Cathedral Courtship', 'Wiggin, Kate Douglas Smith', '1998-12-01', 19, 'https://www.gutenberg.org/ebooks/1551', 'en', 1566), +(51062, 'The Story of a Red Deer', 'Fortescue, J. W. (John William), Sir', '2010-08-09', 8, 'https://www.gutenberg.org/ebooks/33384', 'en', 12583), +(51063, 'This Man\'s Wife', 'Fenn, George Manville', '2012-09-05', 10, 'https://www.gutenberg.org/ebooks/40676', 'en', 434), +(51064, 'April\'s Lady: A Novel', 'Duchess', '2007-05-29', 41, 'https://www.gutenberg.org/ebooks/21641', 'en', 61), +(51065, 'The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 1\nBooks 1, 2 and 3', NULL, '2005-03-26', 718, 'https://www.gutenberg.org/ebooks/15474', 'en', 1804), +(51066, 'The City of God, Volume I', 'Augustine, Saint, Bishop of Hippo', '2014-04-08', 873, 'https://www.gutenberg.org/ebooks/45304', 'en', 17254), +(51067, 'Candida', 'Shaw, Bernard', '2003-05-01', 161, 'https://www.gutenberg.org/ebooks/4023', 'en', 2455), +(51068, 'For Sceptre and Crown: A Romance of the Present Time. Vol. 2 (of 2)', 'Samarow, Gregor', '2011-10-11', 8, 'https://www.gutenberg.org/ebooks/37724', 'en', 6007), +(51069, 'Poesias Eroticas, Burlescas, e Satyricas de M.M. de Barbosa du Bocage\r\nnão comprehendidas na edição que das obras d\'este poeta se publicou em Lisboa, no anno de MDCCCLIII.', 'Bocage, Manuel Maria Barbosa du', '2019-01-13', 110, 'https://www.gutenberg.org/ebooks/58689', 'pt', 17255), +(51070, 'We Moderns: Enigmas and Guesses', 'Muir, Edwin', '2016-10-11', 35, 'https://www.gutenberg.org/ebooks/53261', 'en', 2159), +(51071, 'Chambers\'s Edinburgh Journal, No. 443\nVolume 17, New Series, June 26, 1852', 'Various', '2007-03-10', 7, 'https://www.gutenberg.org/ebooks/20793', 'en', 18), +(51072, 'Ruth Fielding Down East; Or, The Hermit of Beach Plum Point', 'Emerson, Alice B.', '2007-10-20', 35, 'https://www.gutenberg.org/ebooks/23116', 'en', 557), +(51073, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 3 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 67, 'https://www.gutenberg.org/ebooks/17323', 'en', 7793), +(51074, 'Matkakertomuksia Karjalan kankahilta', 'Paulaharju, Samuli', '2014-11-25', 4, 'https://www.gutenberg.org/ebooks/47453', 'fi', 13972), +(51075, 'A Source-Book of English Social History', 'Jones, M. E. Monckton (Mary Evelyn Monckton)', '2017-06-10', 16, 'https://www.gutenberg.org/ebooks/54878', 'en', 13326), +(51076, 'The Thirty Years War — Volume 05', 'Schiller, Friedrich', '2004-10-01', 16, 'https://www.gutenberg.org/ebooks/6774', 'en', 4328), +(51077, 'Flirts', 'Vasconcellos, Henrique de', '2011-01-26', 7, 'https://www.gutenberg.org/ebooks/35073', 'pt', 61), +(51078, 'The Mystery of Choice', 'Chambers, Robert W. (Robert William)', '2014-08-13', 45, 'https://www.gutenberg.org/ebooks/46581', 'en', 359), +(51079, 'Poems', 'Hill, Jennie Earngey', '2016-03-23', 10, 'https://www.gutenberg.org/ebooks/51536', 'en', 8), +(51080, 'Collected Poems: Volume One', 'Noyes, Alfred', '2009-11-19', 51, 'https://www.gutenberg.org/ebooks/30501', 'en', 8), +(51081, 'The Boy Inventors\' Radio Telephone', 'Bonner, Richard', '2004-10-18', 56, 'https://www.gutenberg.org/ebooks/13783', 'en', 17256), +(51082, 'Onnellisten saari: Kaksi kertomusta kokoelmasta \'Svenska öden och äfventyr\'', 'Strindberg, August', '2017-01-24', 8, 'https://www.gutenberg.org/ebooks/54044', 'fi', 2168), +(51083, 'The Irish Penny Journal, Vol. 1 No. 42, April 17, 1841', 'Various', '2017-07-24', 2, 'https://www.gutenberg.org/ebooks/55196', 'en', 81), +(51084, 'The Humour of Homer and Other Essays', 'Butler, Samuel', '2004-06-01', 36, 'https://www.gutenberg.org/ebooks/12651', 'en', 20), +(51085, 'Gawayne and the Green Knight', 'Lewis, Charlton Miner', '2008-09-01', 15, 'https://www.gutenberg.org/ebooks/26464', 'en', 17257), +(51086, 'Moby Multiple Language Lists of Common Words', 'Ward, Grady', '2002-05-01', 24, 'https://www.gutenberg.org/ebooks/3206', 'en', 7557), +(51087, 'Carey & Hart\'s Catalog (1852)', 'Carey & Hart', '2013-02-17', 6, 'https://www.gutenberg.org/ebooks/42121', 'en', 9612); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(51088, 'Life of Sir William Wallace of Elderslie, Vol. 1 (of 2)', 'Carrick, John D. (John Donald)', '2014-12-14', 17, 'https://www.gutenberg.org/ebooks/47661', 'en', 8692), +(51089, 'Correspondence, between the late Commodore Stephen Decatur and Commodore James Barron, which led to the unfortunate meeting of the twenty-second of March', 'Decatur, Stephen', '2010-11-22', 11, 'https://www.gutenberg.org/ebooks/34393', 'en', 17258), +(51090, 'The Substitute Prisoner', 'Marcin, Max', '2006-08-02', 15, 'https://www.gutenberg.org/ebooks/18965', 'en', 128), +(51091, 'Beethoven, the Man and the Artist, as Revealed in His Own Words', 'Beethoven, Ludwig van', '2004-09-01', 33, 'https://www.gutenberg.org/ebooks/6546', 'en', 1807), +(51092, '\"Surly Tim\": A Lancashire Story', 'Burnett, Frances Hodgson', '2007-11-04', 38, 'https://www.gutenberg.org/ebooks/23324', 'en', 797), +(51093, 'The Meaning of the War: Life & Matter in Conflict', 'Bergson, Henri', '2005-11-20', 55, 'https://www.gutenberg.org/ebooks/17111', 'en', 335), +(51094, 'Robur the Conqueror', 'Verne, Jules', '2003-03-01', 101, 'https://www.gutenberg.org/ebooks/3808', 'en', 8820), +(51095, 'Fern Vale; or, the Queensland Squatter. Volume 2', 'Munro, Colin', '2016-04-09', 10, 'https://www.gutenberg.org/ebooks/51704', 'en', 15643), +(51096, 'Notes on Philippine Birds Collected by Governor W. Cameron Forbes\r\nBulletin of the Museum of Comparative Zoölogy at Harvard College, Vol. LXV. No. 4.', 'Bangs, Outram', '2011-02-11', 9, 'https://www.gutenberg.org/ebooks/35241', 'en', 3413), +(51097, 'The Outdoor Girls in Army Service; Or, Doing Their Bit for the Soldier Boys', 'Hope, Laura Lee', '2005-02-01', 35, 'https://www.gutenberg.org/ebooks/7494', 'en', 323), +(51098, 'Tales of the Malayan Coast\nFrom Penang to the Philippines', 'Wildman, Rounsevelle', '2009-01-12', 30, 'https://www.gutenberg.org/ebooks/27784', 'en', 14127), +(51099, 'Tunneling: A Practical Treatise.', 'Prelini, Charles', '2019-08-03', 714, 'https://www.gutenberg.org/ebooks/60043', 'en', 17259), +(51100, 'Mémoires pour servir à l\'Histoire de mon temps (Tome 6)', 'Guizot, François', '2006-04-12', 9, 'https://www.gutenberg.org/ebooks/18159', 'fr', 2003), +(51101, 'Physiology and histology of the Cubomedusæ\nincluding Dr. F.S. Conant\'s notes on the physiology', 'Berger, E. W. (Edward William)', '2017-03-03', 3, 'https://www.gutenberg.org/ebooks/54276', 'en', 17260), +(51102, 'Herraskartano ja legendoja', 'Lagerlöf, Selma', '2015-04-02', 5, 'https://www.gutenberg.org/ebooks/48629', 'fi', 2168), +(51103, 'The Fate of Felix Brand', 'Kelly, Florence Finch', '2009-12-22', 17, 'https://www.gutenberg.org/ebooks/30733', 'en', 61), +(51104, 'The Anti-Slavery Crusade: A Chronicle of the Gathering Storm', 'Macy, Jesse', '2002-01-01', 47, 'https://www.gutenberg.org/ebooks/3034', 'en', 1174), +(51105, 'The Life and Letters of Lafcadio Hearn, Volume 2', 'Bisland, Elizabeth', '2013-03-23', 24, 'https://www.gutenberg.org/ebooks/42313', 'en', 16679), +(51106, 'A Compilation of the Messages and Papers of the Presidents. Volume 4, part 3: James Knox Polk', NULL, '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/12463', 'en', 447), +(51107, 'Birds, Illustrated by Color Photography, Vol. 2, No. 2\r\nAugust, 1897', 'Various', '2008-09-19', 28, 'https://www.gutenberg.org/ebooks/26656', 'en', 1254), +(51108, 'Poems from Eastern Sources: The Steadfast Prince; and Other Poems', 'Trench, Richard Chenevix', '2018-02-08', 9, 'https://www.gutenberg.org/ebooks/56521', 'en', 8), +(51109, 'Aamun miehiä: Historiallinen kuvaelma', 'Wilkuna, Kyösti', '2012-12-10', 19, 'https://www.gutenberg.org/ebooks/41596', 'fi', 247), +(51110, 'The Wine-ghosts of Bremen', 'Hauff, Wilhelm', '2010-04-19', 24, 'https://www.gutenberg.org/ebooks/32064', 'en', 803), +(51111, 'The Nature Faker', 'Davis, Richard Harding', '1999-05-01', 18, 'https://www.gutenberg.org/ebooks/1763', 'en', 61), +(51112, 'The Union: Or, Select Scots and English Poems', NULL, '2012-08-08', 3, 'https://www.gutenberg.org/ebooks/40444', 'en', 11871), +(51113, 'Van \'t viooltje dat weten wilde', 'Metz-Koning, Maria Catherina', '2003-11-01', 12, 'https://www.gutenberg.org/ebooks/10334', 'nl', 2765), +(51114, 'Egocentric Orbit', 'Cory, John', '2008-01-01', 38, 'https://www.gutenberg.org/ebooks/24101', 'en', 1061), +(51115, 'He Comes Up Smiling', 'Sherman, Charles', '2014-03-14', 13, 'https://www.gutenberg.org/ebooks/45136', 'en', 177), +(51116, 'The Treasure', 'Norris, Kathleen Thompson', '2003-07-01', 46, 'https://www.gutenberg.org/ebooks/4211', 'en', 1516), +(51117, 'Paddy Finn', 'Kingston, William Henry Giles', '2007-05-15', 46, 'https://www.gutenberg.org/ebooks/21473', 'en', 14390), +(51118, 'Il Ricciardetto, vol. II', 'Forteguerri, Niccolò', '2019-05-21', 11, 'https://www.gutenberg.org/ebooks/59569', 'it', 16683), +(51119, 'Nord contre sud', 'Verne, Jules', '2005-04-17', 10, 'https://www.gutenberg.org/ebooks/15646', 'fr', 403), +(51120, 'The Cruise of the Elena; Or, Yachting in the Hebrides', 'Ritchie, J. Ewing (James Ewing)', '2010-06-17', 8, 'https://www.gutenberg.org/ebooks/32858', 'en', 5183), +(51121, 'Hogarth\'s Works, with life and anecdotal descriptions of his pictures. Volume 3 (of 3)', 'Nichols, John', '2016-05-29', 8, 'https://www.gutenberg.org/ebooks/52181', 'en', 2557), +(51122, 'By the Aurelian Wall, and Other Elegies', 'Carman, Bliss', '2016-09-15', 1, 'https://www.gutenberg.org/ebooks/53053', 'en', 1237), +(51123, 'Ang Mananayaw', 'Almario, Rosauro', '2005-01-25', 17, 'https://www.gutenberg.org/ebooks/14794', 'tl', 61), +(51124, 'Notes and Queries, Vol. III, Number 87, June 28, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-09-23', 6, 'https://www.gutenberg.org/ebooks/37516', 'en', 105), +(51125, 'Travels in Syria and the Holy Land', 'Burckhardt, John Lewis', '2005-09-01', 56, 'https://www.gutenberg.org/ebooks/8884', 'en', 723), +(51126, 'Französische Lyrik alter und neuer Zeit in deutschen Versen', NULL, '2016-03-05', 8, 'https://www.gutenberg.org/ebooks/51360', 'de', 17261), +(51127, 'Rippling Rhymes', 'Mason, Walt', '2007-09-21', 9, 'https://www.gutenberg.org/ebooks/22692', 'en', 4723), +(51128, 'A Philosophical Dictionary, Volume 05', 'Voltaire', '2011-03-28', 28, 'https://www.gutenberg.org/ebooks/35625', 'en', 7152), +(51129, 'Handbuch der Kunstgeschichte', 'Springer, A. (Anton)', '2014-10-26', 10, 'https://www.gutenberg.org/ebooks/47205', 'de', 3322), +(51130, 'Tobogganing on Parnassus', 'Adams, Franklin P. (Franklin Pierce)', '2004-07-01', 24, 'https://www.gutenberg.org/ebooks/6122', 'en', 7712), +(51131, 'Der Zauberkaftan', 'Mikszáth, Kálmán', '2007-12-05', 9, 'https://www.gutenberg.org/ebooks/23740', 'de', 8904), +(51132, 'Hauntings\r\nFantastic Stories', 'Lee, Vernon', '2006-02-01', 131, 'https://www.gutenberg.org/ebooks/9956', 'en', 2634), +(51133, 'How to Camp Out', 'Gould, John Mead', '2006-01-22', 122, 'https://www.gutenberg.org/ebooks/17575', 'en', 2155), +(51134, 'The Book of the Thousand Nights and a Night — Volume 16', NULL, '2002-09-01', 76, 'https://www.gutenberg.org/ebooks/3450', 'en', 3347), +(51135, 'Opera nova amorosa, vol. 2\r\nTraggedia', 'Notturno, Napolitano', '2010-02-15', 4, 'https://www.gutenberg.org/ebooks/31285', 'it', 8), +(51136, 'Il secolo che muore, vol. III', 'Guerrazzi, Francesco Domenico', '2013-05-23', 12, 'https://www.gutenberg.org/ebooks/42777', 'it', 61), +(51137, 'Cousin Hatty\'s Hymns and Twilight Stories', NULL, '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/12007', 'en', 859), +(51138, 'Sunny Boy in the Country', 'White, Ramy Allison', '2008-08-08', 11, 'https://www.gutenberg.org/ebooks/26232', 'en', 6872), +(51139, 'The Principles of Biology, Volume 1 (of 2)', 'Spencer, Herbert', '2017-04-26', 103, 'https://www.gutenberg.org/ebooks/54612', 'en', 6175), +(51140, 'The Modern Regime, Volume 2', 'Taine, Hippolyte', '2008-06-22', 26, 'https://www.gutenberg.org/ebooks/2582', 'en', 4591), +(51141, 'Select Poems of Thomas Gray', 'Gray, Thomas', '2009-10-29', 41, 'https://www.gutenberg.org/ebooks/30357', 'en', 8), +(51142, 'The Magic Skin', 'Balzac, Honoré de', '2005-02-12', 126, 'https://www.gutenberg.org/ebooks/1307', 'en', 58), +(51143, 'The Thames', 'Mitton, G. E. (Geraldine Edith)', '2012-06-17', 17, 'https://www.gutenberg.org/ebooks/40020', 'en', 17043), +(51144, 'The Miracle, and Other Poems', 'Sheard, Virna', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10750', 'en', 28), +(51145, 'The Icknield Way', 'Thomas, Edward', '2018-05-05', 29, 'https://www.gutenberg.org/ebooks/57097', 'en', 17262), +(51146, 'Two Gallant Sons of Devon: A Tale of the Days of Queen Bess', 'Collingwood, Harry', '2008-02-10', 11, 'https://www.gutenberg.org/ebooks/24565', 'en', 3535), +(51147, 'Tribal Custom in Anglo-Saxon Law\r\nBeing an Essay Supplemental to (1) \'The English Village Community\', (2) \'The Tribal System in Wales\'', 'Seebohm, Frederic', '2017-12-07', 19, 'https://www.gutenberg.org/ebooks/56145', 'en', 17263), +(51148, 'The Soul of the War', 'Gibbs, Philip', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/11682', 'en', 449), +(51149, 'Paper and Printing Recipes\r\nA Handy Volume of Practical Recipes, Concerning the Every-Day Business of Stationers, Printers, Binders, and the Kindred Trades', 'Ford, John Sawtelle', '2010-05-17', 13, 'https://www.gutenberg.org/ebooks/32400', 'en', 12868), +(51150, 'The Love-Story of Aliette Brunton', 'Frankau, Gilbert', '2019-07-17', 171, 'https://www.gutenberg.org/ebooks/59931', 'en', 48), +(51151, 'Hunnutettu nainen', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2016-11-02', 7, 'https://www.gutenberg.org/ebooks/53437', 'fi', 1103), +(51152, 'Ex-President John Quincy Adams in Pittsburgh in 1843\r\nAddress of Welcome, by Wilson McCandless, and Mr. Adams\' Reply; together with a letter from Mr. Adams Relative to Judge Brackenridge\'s \"Modern Chivalry.\"', 'McCandless, Wilson', '2012-02-17', 11, 'https://www.gutenberg.org/ebooks/38906', 'en', 1340), +(51153, 'In a Glass Darkly, v. 1/3', 'Le Fanu, Joseph Sheridan', '2011-08-23', 82, 'https://www.gutenberg.org/ebooks/37172', 'en', 114), +(51154, 'The Loss of the Australia\r\nA narrative of the loss of the brig Australia by fire on her voyage from Leith to Sydney', 'Yule, Adam', '2013-12-21', 6, 'https://www.gutenberg.org/ebooks/44480', 'en', 17264), +(51155, 'The Old Market-Cart', 'Griswold, F. Burge (Frances Burge)', '2014-05-01', 6, 'https://www.gutenberg.org/ebooks/45552', 'en', 17265), +(51156, 'The Man from Mars: His Morals, Politics and Religion', 'Simpson, William', '2018-04-14', 3, 'https://www.gutenberg.org/ebooks/56979', 'en', 1998), +(51157, 'The Sea-Witch; Or, The African Quadroon: A Story of the Slave Coast', 'Ballou, Maturin M. (Maturin Murray)', '2003-11-01', 31, 'https://www.gutenberg.org/ebooks/4675', 'en', 17266), +(51158, 'La San-Felice, Tome 08, Emma Lyonna, tome 4', 'Dumas, Alexandre', '2007-04-10', 14, 'https://www.gutenberg.org/ebooks/21017', 'fr', 4110), +(51159, 'Looking Seaward Again', 'Runciman, Walter Runciman, Baron', '2005-03-01', 9, 'https://www.gutenberg.org/ebooks/15222', 'en', 885), +(51160, 'Friends in Need\nShip\'s Company, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10562', 'en', 1902), +(51161, 'The Atonement and the Modern Mind', 'Denney, James', '2008-03-05', 20, 'https://www.gutenberg.org/ebooks/24757', 'en', 17267), +(51162, 'The Tempest', 'Shakespeare, William', '1997-12-01', 79, 'https://www.gutenberg.org/ebooks/1135', 'en', 2344), +(51163, 'Natural History of Cottonmouth Moccasin, Agkistrodon piscovorus (Reptilia)', 'Burkett, Ray D.', '2011-12-15', 7, 'https://www.gutenberg.org/ebooks/38308', 'en', 17268), +(51164, 'A Letter to the Society for the Suppression of Vice, on Their Malignant Efforts to Prevent a Free Enquiry After Truth and Reason', 'Carlile, Richard', '2012-07-11', 3, 'https://www.gutenberg.org/ebooks/40212', 'en', 681), +(51165, 'The Spy: Condensed for use in schools', 'Cooper, James Fenimore', '2010-05-31', 13, 'https://www.gutenberg.org/ebooks/32632', 'en', 98), +(51166, 'Punch, or the London Charivari Volume 98, January 4, 1890', 'Various', '2008-06-03', 27, 'https://www.gutenberg.org/ebooks/25685', 'en', 134), +(51167, 'Egy magyar nábob (1. rész)', 'Jókai, Mór', '2018-01-15', 14, 'https://www.gutenberg.org/ebooks/56377', 'hu', 234), +(51168, 'The Clan Fraser in Canada: Souvenir of the First Annual Gathering', 'Fraser, Alexander', '2011-09-07', 14, 'https://www.gutenberg.org/ebooks/37340', 'en', 17269), +(51169, 'The Story of My Life — Volume 03', 'Ebers, Georg', '2004-04-01', 4, 'https://www.gutenberg.org/ebooks/5595', 'en', 7159), +(51170, 'Darwin and Modern Science', 'Seward, A. C. (Albert Charles)', '1999-09-01', 70, 'https://www.gutenberg.org/ebooks/1909', 'en', 5893), +(51171, 'Erämaan halki', 'Sienkiewicz, Henryk', '2016-11-26', 12, 'https://www.gutenberg.org/ebooks/53605', 'fi', 323), +(51172, 'Scientific American Supplement, No. 1157, March 5, 1898', 'Various', '2007-04-27', 28, 'https://www.gutenberg.org/ebooks/21225', 'en', 210), +(51173, 'Qvo vadis: Kertomus Neron ajoilta', 'Sienkiewicz, Henryk', '2005-02-10', 22, 'https://www.gutenberg.org/ebooks/15010', 'fi', 98), +(51174, 'Plays and Lyrics', 'Rice, Cale Young', '2014-05-25', 7, 'https://www.gutenberg.org/ebooks/45760', 'en', 508), +(51175, 'Average Americans', 'Roosevelt, Theodore', '2011-05-31', 51, 'https://www.gutenberg.org/ebooks/36292', 'en', 3872), +(51176, 'The Adventures of Harry Richmond — Volume 4', 'Meredith, George', '2003-09-01', 10, 'https://www.gutenberg.org/ebooks/4447', 'en', 2588), +(51177, 'The Super Race: An American Problem', 'Nearing, Scott', '2011-02-27', 12, 'https://www.gutenberg.org/ebooks/35417', 'en', 17270), +(51178, 'Fighting Instructions, 1530-1816\r\nPublications of the Navy Records Society Vol. XXIX.', 'Corbett, Julian Stafford', '2005-09-15', 49, 'https://www.gutenberg.org/ebooks/16695', 'en', 17271), +(51179, 'Appointment In Tomorrow', 'Leiber, Fritz', '2016-02-08', 66, 'https://www.gutenberg.org/ebooks/51152', 'en', 26), +(51180, 'The First Book of Eskimos', 'Brewster, Benjamin', '2015-09-17', 8, 'https://www.gutenberg.org/ebooks/49991', 'en', 17272), +(51181, 'The Fabric of Civilization\nA Short Survey of the Cotton Industry in the United States', 'Guaranty Trust Company of New York', '2009-06-05', 16, 'https://www.gutenberg.org/ebooks/29048', 'en', 17273), +(51182, 'Blackwood\'s Edinburgh Magazine, Volume 61, No. 379, May, 1847', 'Various', '2007-11-20', 13, 'https://www.gutenberg.org/ebooks/23572', 'en', 274), +(51183, 'Philochristus: Memoirs of a Disciple of the Lord', 'Abbott, Edwin Abbott', '2015-04-30', 27, 'https://www.gutenberg.org/ebooks/48843', 'en', 942), +(51184, 'Motor Matt Makes Good; or, Another Victory For the Motor Boys', 'Matthews, Stanley R.', '2015-09-30', 10, 'https://www.gutenberg.org/ebooks/50080', 'en', 5237), +(51185, 'La main froide', 'Du Boisgobey, Fortuné', '2006-02-10', 10, 'https://www.gutenberg.org/ebooks/17747', 'fr', 61), +(51186, 'George Eliot Centenary, November 1919\r\nCatalogue of Relics, Manuscrips, Prints, Paintings, Photographs & Books relating to George Eliot', 'Coventry (England). Public Libraries Committee', '2010-01-13', 2, 'https://www.gutenberg.org/ebooks/30959', 'en', 17274), +(51187, 'The Boy Scouts at the Battle of Saratoga: The Story of General Burgoyne\'s Defeat', 'Carter, Herbert, active 1909-1917', '2014-10-03', 9, 'https://www.gutenberg.org/ebooks/47037', 'en', 17275), +(51188, 'The Pastor\'s Son', 'Walter, William W.', '2004-08-01', 21, 'https://www.gutenberg.org/ebooks/6310', 'en', 1397), +(51189, 'Popular Law-making\r\nA study of the origin, history, and present tendencies of law-making by statute', 'Stimson, Frederic Jesup', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/12235', 'en', 17276), +(51190, 'The Sailor\'s Word-Book\r\nAn Alphabetical Digest of Nautical Terms, including Some More Especially Military and Scientific, but Useful to Seamen; as well as Archaisms of Early Voyagers, etc.', 'Smyth, W. H. (William Henry)', '2008-07-07', 122, 'https://www.gutenberg.org/ebooks/26000', 'en', 6113), +(51191, 'Oscar Wilde, His Life and Confessions — Volume 1', 'Harris, Frank', '2003-01-01', 31, 'https://www.gutenberg.org/ebooks/3662', 'en', 17181), +(51192, 'The Radio Detectives in the Jungle', 'Verrill, A. Hyatt (Alpheus Hyatt)', '2013-04-15', 11, 'https://www.gutenberg.org/ebooks/42545', 'en', 323), +(51193, 'Delitto ideale', 'Capuana, Luigi', '2009-08-31', 18, 'https://www.gutenberg.org/ebooks/29874', 'it', 61), +(51194, 'Trans-Himalaya: Discoveries and Adventurers in Tibet. Vol. 1 (of 2)', 'Hedin, Sven Anders', '2013-08-18', 65, 'https://www.gutenberg.org/ebooks/43497', 'en', 3800), +(51195, 'Victory: An Island Tale', 'Conrad, Joseph', '2005-11-01', 5, 'https://www.gutenberg.org/ebooks/9358', 'en', 17277), +(51196, 'Die Abenteuer Tom Sawyers', 'Twain, Mark', '2009-10-03', 172, 'https://www.gutenberg.org/ebooks/30165', 'de', 637), +(51197, 'The Practical Astronomer\r\nComprising illustrations of light and colours--practical descriptions of all kinds of telescopes--the use of the equatorial-transit--circular, and other astronomical instruments, a particular account of the Earl of Rosse\'s large telescopes, and other topics connected with astronomy', 'Dick, Thomas', '2017-03-24', 46, 'https://www.gutenberg.org/ebooks/54420', 'en', 17278), +(51198, 'Peeps Into China; Or, The Missionary\'s Children', 'Phillips, E. C. (Edith Caroline)', '2010-11-03', 30, 'https://www.gutenberg.org/ebooks/34199', 'en', 2773), +(51199, 'The New Optimism', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-06-03', 9, 'https://www.gutenberg.org/ebooks/54840', 'en', 3120), +(51200, 'The Conquest: The True Story of Lewis and Clark', 'Dye, Eva Emery', '2013-06-12', 30, 'https://www.gutenberg.org/ebooks/42925', 'en', 984), +(51201, 'An Inquiry into the Causes and Effects of the Variolae Vaccinae\nA Disease Discovered in Some of the Western Counties of England, Particularly Gloucestershire, and Known by the Name of the Cow Pox', 'Jenner, Edward', '2009-07-15', 42, 'https://www.gutenberg.org/ebooks/29414', 'en', 17279), +(51202, 'Ylenkatsotuita', 'Nikkinen, Jaakko', '2017-11-18', 0, 'https://www.gutenberg.org/ebooks/55992', 'fi', 175), +(51203, 'La petite roque', 'Maupassant, Guy de', '2006-05-08', 31, 'https://www.gutenberg.org/ebooks/18353', 'fr', 687), +(51204, 'The Flirt', 'Tarkington, Booth', '1995-07-01', 71, 'https://www.gutenberg.org/ebooks/297', 'en', 17280), +(51205, '千字文', 'Zhou, Xingsi', '2007-12-19', 24, 'https://www.gutenberg.org/ebooks/23912', 'zh', 10503), +(51206, 'Tales of English Minsters: Hereford', 'Grierson, Elizabeth W. (Elizabeth Wilson)', '2015-03-07', 5, 'https://www.gutenberg.org/ebooks/48423', 'en', 9511), +(51207, 'Doctor Marigold', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9704', 'en', 585), +(51208, 'The Terrible Answer', 'Hill, Arthur G.', '2009-11-24', 20, 'https://www.gutenberg.org/ebooks/30539', 'en', 2627), +(51209, 'The Trapper\'s Daughter: A Story of the Rocky Mountains', 'Aimard, Gustave', '2013-02-17', 9, 'https://www.gutenberg.org/ebooks/42119', 'en', 4872), +(51210, 'Marriage', 'Ferrier, Susan', '2004-06-01', 48, 'https://www.gutenberg.org/ebooks/12669', 'en', 348), +(51211, 'Group Psychology and The Analysis of The Ego', 'Freud, Sigmund', '2011-04-15', 138, 'https://www.gutenberg.org/ebooks/35877', 'en', 3640), +(51212, 'One Common Faith', 'Bahá\'í International Community', '2006-09-17', 6, 'https://www.gutenberg.org/ebooks/19281', 'en', 17281), +(51213, 'The Rise of the Dutch Republic — Volume 25: 1577, part II', 'Motley, John Lothrop', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/4827', 'en', 3372), +(51214, 'North American Stone Implements', 'Rau, Charles', '2012-05-13', 7, 'https://www.gutenberg.org/ebooks/39686', 'en', 17282), +(51215, 'The Lily of the Valley', 'Balzac, Honoré de', '2005-01-25', 103, 'https://www.gutenberg.org/ebooks/1569', 'en', 109), +(51216, 'Was heißt: sich im Denken orientieren?', 'Kant, Immanuel', '2012-02-03', 36, 'https://www.gutenberg.org/ebooks/38754', 'de', 17283), +(51217, 'The Best of the World\'s Classics, Restricted to prose. Volume III (of X) - Great Britain and Ireland I', NULL, '2007-06-04', 29, 'https://www.gutenberg.org/ebooks/21679', 'en', 19), +(51218, 'The Tariff in Our Times', 'Tarbell, Ida M. (Ida Minerva)', '2019-06-16', 32, 'https://www.gutenberg.org/ebooks/59763', 'en', 17284), +(51219, 'Horton Genealogy\r\nor Chronicles of the Descendants of Barnabas Horton, of Southold, L. I., 1640.', 'Horton, Geo. F. (George Firman)', '2016-10-11', 16, 'https://www.gutenberg.org/ebooks/53259', 'en', 17285), +(51220, 'Big and Little Sisters: A Story of an Indian Mission School', 'Jenness, Theodora R. (Theodora Robinson)', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/10902', 'en', 17286), +(51221, 'Deutsche Humoristen, 1. Band (von 8)', 'Raabe, Wilhelm', '2016-09-05', 17, 'https://www.gutenberg.org/ebooks/52985', 'de', 543), +(51222, 'The Gasoline Motor', 'Slauson, Harold Whiting', '2014-06-10', 27, 'https://www.gutenberg.org/ebooks/45932', 'en', 7094), +(51223, 'Viaje a los Estados Unidos, Tomo II', 'Prieto, Guillermo', '2018-02-08', 13, 'https://www.gutenberg.org/ebooks/56519', 'es', 1110), +(51224, '官場現形記', 'Li, Boyuan', '2008-01-03', 34, 'https://www.gutenberg.org/ebooks/24139', 'zh', 16560), +(51225, 'Journael ofte gedenckwaerdige beschrijvinghe van de Oost-Indische Reyse van Willem Ysbrantsz. Bontekoe', 'Bontekoe, Willem Ysbrantsz.', '2017-01-01', 22, 'https://www.gutenberg.org/ebooks/53857', 'nl', 17287), +(51226, 'The Roman Poets of the Republic, 3rd edition', 'Sellar, W. Y. (William Young)', '2012-01-13', 10, 'https://www.gutenberg.org/ebooks/38566', 'en', 3753), +(51227, 'Encyclopaedia Britannica, 11th Edition, \"Edwardes, Sir Herbert Benjamin\" to \"Ehrenbreitstein\"\r\nVolume 9, Slice 1', 'Various', '2010-06-17', 32, 'https://www.gutenberg.org/ebooks/32860', 'en', 1081), +(51228, 'An essay on the government of children, under three general heads, viz. health, manners, and education', 'Nelson, James', '2019-05-19', 18, 'https://www.gutenberg.org/ebooks/59551', 'en', 17288), +(51229, 'The South Pole; an account of the Norwegian Antarctic expedition in the \"Fram,\" 1910-12 — Volume 1 and Volume 2', 'Amundsen, Roald', '2003-07-01', 80, 'https://www.gutenberg.org/ebooks/4229', 'en', 4839), +(51230, 'Elämän polulla\nRunoelmia', 'Mantere, Niilo', '2008-03-24', 33, 'https://www.gutenberg.org/ebooks/24905', 'fi', 1171), +(51231, 'Comenius and the Beginnings of Educational Reform', 'Monroe, W. S. (Will Seymour)', '2018-12-16', 4, 'https://www.gutenberg.org/ebooks/58483', 'en', 17289), +(51232, 'The Canterville Ghost', 'Wilde, Oscar', '2007-01-20', 21, 'https://www.gutenberg.org/ebooks/20599', 'en', 95), +(51233, 'The Missing Link', 'Dyson, Edward', '2005-11-22', 24, 'https://www.gutenberg.org/ebooks/17129', 'en', 792), +(51234, 'Robert Blum: Ein Zeit- und Charakterbild für das deutsche Volk', 'Blum, Hans', '2014-12-13', 23, 'https://www.gutenberg.org/ebooks/47659', 'de', 17290), +(51235, 'Wonderful Balloon Ascents; Or, The Conquest of the Skies\r\nA History of Balloons and Balloon Voyages', 'Marion, Fulgence', '1997-05-01', 65, 'https://www.gutenberg.org/ebooks/899', 'en', 13393), +(51236, 'The Literature of Ecstasy', 'Mordell, Albert', '2011-02-14', 12, 'https://www.gutenberg.org/ebooks/35279', 'en', 17291), +(51237, 'Overruled', 'Shaw, Bernard', '2003-03-01', 60, 'https://www.gutenberg.org/ebooks/3830', 'en', 5266), +(51238, 'Our Young Folks, Vol 1, No. 1\nAn Illustrated Magazine', 'Various', '2009-08-06', 39, 'https://www.gutenberg.org/ebooks/29626', 'en', 563), +(51239, 'Fall and Holiday Trade, Season 1900-1901, Nerlich & Co. Illustrated Catalogue', 'Nerlich & Co.', '2015-03-30', 5, 'https://www.gutenberg.org/ebooks/48611', 'en', 17292), +(51240, 'The Newcomes\r\nMemoirs of a Most Respectable Family', 'Thackeray, William Makepeace', '2005-12-01', 5, 'https://www.gutenberg.org/ebooks/9536', 'en', 5118), +(51241, 'Les parisiennes de Paris', 'Banville, Théodore Faullain de', '2006-03-04', 28, 'https://www.gutenberg.org/ebooks/17915', 'fr', 298), +(51242, 'The Theory of the Theatre, and Other Principles of Dramatic Criticism', 'Hamilton, Clayton Meeker', '2004-10-03', 42, 'https://www.gutenberg.org/ebooks/13589', 'en', 5475), +(51243, 'The Works of the Right Honourable Edmund Burke, Vol. 08 (of 12)', 'Burke, Edmund', '2006-04-13', 52, 'https://www.gutenberg.org/ebooks/18161', 'en', 5325), +(51244, 'L\'égyptologie', 'Maspero, G. (Gaston)', '2004-01-01', 23, 'https://www.gutenberg.org/ebooks/10768', 'fr', 17293), +(51245, 'Dot and Tot of Merryland', 'Baum, L. Frank (Lyman Frank)', '2011-11-11', 40, 'https://www.gutenberg.org/ebooks/37976', 'en', 580), +(51246, 'Critical Examination of the Life of St. Paul', 'Annet, Peter', '2011-11-22', 16, 'https://www.gutenberg.org/ebooks/38102', 'en', 8733), +(51247, 'Bass, Pike, Perch, and Others', 'Henshall, James A. (James Alexander)', '2012-06-17', 15, 'https://www.gutenberg.org/ebooks/40018', 'en', 17294), +(51248, 'The Madman and the Pirate', 'Ballantyne, R. M. (Robert Michael)', '2007-06-12', 25, 'https://www.gutenberg.org/ebooks/21813', 'en', 7815), +(51249, 'Pep: The Story of a Brave Dog', 'Hawkes, Clarence', '2019-07-13', 254, 'https://www.gutenberg.org/ebooks/59909', 'en', 146), +(51250, 'The Book of Courage', 'Faris, John T. (John Thomson)', '2010-05-19', 22, 'https://www.gutenberg.org/ebooks/32438', 'en', 16376), +(51251, 'The Country School: An Entertainment in Two Scenes', 'Orne, Martha Russell', '2018-09-13', 6, 'https://www.gutenberg.org/ebooks/57893', 'en', 17295), +(51252, 'Another Summer: The Yellowstone Park and Alaska', 'Gillis, Charles J.', '2012-09-22', 4, 'https://www.gutenberg.org/ebooks/40824', 'en', 5908), +(51253, 'Development of Muslim Theology, Jurisprudence, and Constitutional Theory', 'MacDonald, Duncan Black', '2019-03-26', 21, 'https://www.gutenberg.org/ebooks/59135', 'en', 17296), +(51254, 'Sárga rózsa; A Kráó', 'Jókai, Mór', '2018-04-08', 9, 'https://www.gutenberg.org/ebooks/56941', 'hu', 234), +(51255, 'The Flowers of Evil', 'Baudelaire, Charles', '2011-05-13', 572, 'https://www.gutenberg.org/ebooks/36098', 'en', 2629), +(51256, 'Headlong Hall', 'Peacock, Thomas Love', '2004-07-02', 22, 'https://www.gutenberg.org/ebooks/12803', 'en', 1971), +(51257, 'Gutenberg, and the Art of Printing', 'Pearson, Emily C. (Emily Clemens)', '2016-03-05', 22, 'https://www.gutenberg.org/ebooks/51358', 'en', 17297), +(51258, 'Made in Tanganyika', 'Jacobi, Carl Richard', '2009-06-25', 30, 'https://www.gutenberg.org/ebooks/29242', 'en', 26), +(51259, 'The Governess', 'Lippmann, Julie M.', '2007-12-09', 12, 'https://www.gutenberg.org/ebooks/23778', 'en', 6871), +(51260, 'Medicine in Virginia, 1607-1699', 'Hughes, Thomas Proctor', '2009-03-22', 102, 'https://www.gutenberg.org/ebooks/28390', 'en', 17298), +(51261, 'A Passionate Pilgrim', 'James, Henry', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8080', 'en', 843), +(51262, 'Poems By the Way', 'Morris, William', '2002-10-01', 31, 'https://www.gutenberg.org/ebooks/3468', 'en', 532), +(51263, 'The Philosophy of History, Vol. 2 of 2', 'Schlegel, Friedrich von', '2015-02-16', 18, 'https://www.gutenberg.org/ebooks/48275', 'en', 924), +(51264, 'Imogen: A Pastoral Romance', 'Godwin, William', '2005-10-01', 24, 'https://www.gutenberg.org/ebooks/9152', 'en', 7828), +(51265, 'A Popular Schoolgirl', 'Brazil, Angela', '2006-06-05', 57, 'https://www.gutenberg.org/ebooks/18505', 'en', 1779), +(51266, 'Memories of Hawthorne', 'Lathrop, Rose Hawthorne', '2004-11-01', 14, 'https://www.gutenberg.org/ebooks/6926', 'en', 17299), +(51267, 'Le commedie - lo astrologo', 'Porta, Giambattista della', '2007-09-04', 13, 'https://www.gutenberg.org/ebooks/22498', 'it', 407), +(51268, 'Brighter Britain! (Volume 1 of 2)\nor Settler and Maori in Northern New Zealand', 'Hay, W. Delisle (William Delisle)', '2009-06-09', 43, 'https://www.gutenberg.org/ebooks/29070', 'en', 10903), +(51269, 'L\'Anti-Justine; ou, Les Delices de l\'amour', 'Restif de La Bretonne', '2008-10-07', 173, 'https://www.gutenberg.org/ebooks/26804', 'fr', 7395), +(51270, 'The Junior Classics, Volume 5: Stories that never grow old', NULL, '2004-08-01', 157, 'https://www.gutenberg.org/ebooks/6328', 'en', 1063), +(51271, 'The Rushton Boys at Rally Hall; Or, Great Days in School and Out', 'Davenport, Spencer', '2010-01-14', 9, 'https://www.gutenberg.org/ebooks/30961', 'en', 1877), +(51272, 'The Strange Schemes of Randolph Mason', 'Post, Melville Davisson', '2016-05-02', 30, 'https://www.gutenberg.org/ebooks/51956', 'en', 50), +(51273, 'Viscount Dundee', 'Barbé, Louis A.', '2015-06-11', 11, 'https://www.gutenberg.org/ebooks/49195', 'en', 4098), +(51274, 'Drawings and Pharmacy in Al-Zahrawi\'s 10th-Century Surgical Treatise', 'Hamarneh, Sami Khalaf', '2008-07-12', 18, 'https://www.gutenberg.org/ebooks/26038', 'en', 17300), +(51275, 'Archæological Essays, Vol. 2', 'Simpson, James Young', '2014-12-31', 9, 'https://www.gutenberg.org/ebooks/47833', 'en', 2011), +(51276, 'Argelaga florida', 'Roig i Raventós, Josep', '2006-07-02', 11, 'https://www.gutenberg.org/ebooks/18737', 'ca', 179), +(51277, 'Mr. Wycherly\'s Wards', 'Harker, L. Allen (Lizzie Allen)', '2017-03-23', 16, 'https://www.gutenberg.org/ebooks/54418', 'en', 2530), +(51278, 'Kultaa ja kuntoa: Romaani Klondykesta', 'London, Jack', '2015-01-22', 9, 'https://www.gutenberg.org/ebooks/48047', 'fi', 315), +(51279, 'Within the Tides', 'Conrad, Joseph', '2005-11-01', 9, 'https://www.gutenberg.org/ebooks/9360', 'en', 409), +(51280, 'Little Men: Life at Plumfield With Jo\'s Boys', 'Alcott, Louisa May', '2001-08-01', 373, 'https://www.gutenberg.org/ebooks/2788', 'en', 1631), +(51281, 'Today is Forever', 'Aycock, Roger D.', '2016-01-09', 42, 'https://www.gutenberg.org/ebooks/50884', 'en', 179), +(51282, 'The Man with the Book; or, The Bible Among the People.', 'Weylland, John Matthias', '2011-12-17', 13, 'https://www.gutenberg.org/ebooks/38330', 'en', 17301), +(51283, 'The Poetical Works of John Dryden, Volume 1\r\nWith Life, Critical Dissertation, and Explanatory Notes', 'Dryden, John', '2004-03-01', 93, 'https://www.gutenberg.org/ebooks/11488', 'en', 54), +(51284, 'Lauluja ja ballaadeja', 'Burns, Robert', '2005-05-11', 12, 'https://www.gutenberg.org/ebooks/15814', 'fi', 17302), +(51285, 'The Zeppelin\'s Passenger', 'Oppenheim, E. Phillips (Edward Phillips)', '1999-10-01', 28, 'https://www.gutenberg.org/ebooks/1931', 'en', 579), +(51286, 'The Secret Toll', 'Thorne, Mabel', '2011-09-10', 26, 'https://www.gutenberg.org/ebooks/37378', 'en', 2934), +(51287, 'The I. W. W.: A Study of American Syndicalism', 'Brissenden, Paul F. (Paul Frederick)', '2014-05-25', 14, 'https://www.gutenberg.org/ebooks/45758', 'en', 17303), +(51288, 'The April Baby\'s Book of Tunes\nwith the story of how they came to be written', 'Von Arnim, Elizabeth', '2019-04-18', 40, 'https://www.gutenberg.org/ebooks/59307', 'en', 343), +(51289, 'Selbstbetrachtungen', 'Marcus Aurelius, Emperor of Rome', '2005-02-12', 145, 'https://www.gutenberg.org/ebooks/15028', 'de', 279), +(51290, 'The Golden Link of Friendship', 'Various', '2011-11-11', 11, 'https://www.gutenberg.org/ebooks/37982', 'en', 2215), +(51291, 'The Substance of a Dream', 'Bain, F. W. (Francis William)', '2007-03-29', 39, 'https://www.gutenberg.org/ebooks/20935', 'en', 580), +(51292, 'La coucaratcha (II/III)', 'Sue, Eugène', '2012-03-01', 2, 'https://www.gutenberg.org/ebooks/39024', 'fr', 687), +(51293, 'Erdély aranykora: Regény', 'Jókai, Mór', '2017-12-16', 11, 'https://www.gutenberg.org/ebooks/56189', 'hu', 98), +(51294, 'Βέρθερος', 'Goethe, Johann Wolfgang von', '2011-07-25', 22, 'https://www.gutenberg.org/ebooks/36850', 'el', 7958), +(51295, 'Robin Linnet', 'Benson, E. F. (Edward Frederic)', '2018-09-10', 17, 'https://www.gutenberg.org/ebooks/57867', 'en', 579), +(51296, 'The Dreadnought Boys on a Submarine', 'Goldfrap, John Henry', '2018-10-03', 31, 'https://www.gutenberg.org/ebooks/58013', 'en', 4678), +(51297, 'Reminiscences of Sixty Years in Public Affairs, Vol. 2', 'Boutwell, George S. (George Sewall)', '2006-12-14', 8, 'https://www.gutenberg.org/ebooks/20109', 'en', 17143), +(51298, 'Encyclopaedia Britannica, 11th Edition, \"L\" to \"Lamellibranchia\"\r\nVolume 16, Slice 1', 'Various', '2013-01-23', 20, 'https://www.gutenberg.org/ebooks/41902', 'en', 1081), +(51299, 'A Catalogue of Books for the Young', 'E.P. Dutton (Firm)', '2012-05-27', 4, 'https://www.gutenberg.org/ebooks/39818', 'en', 17304), +(51300, 'Siniparran seitsemän vaimoa', 'France, Anatole', '2016-07-08', 11, 'https://www.gutenberg.org/ebooks/52529', 'fi', 1850), +(51301, 'Weymouth New Testament in Modern Speech, 1 Peter', 'Weymouth, Richard Francis', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8848', 'en', 16542), +(51302, 'Bases para a unificação da ortografia que deve ser adoptada nas escolas e publicações oficiais', 'Anonymous', '2009-03-20', 14, 'https://www.gutenberg.org/ebooks/28364', 'pt', 4370), +(51303, 'Notes and Queries, Number 24, April 13, 1850', 'Various', '2004-11-02', 14, 'https://www.gutenberg.org/ebooks/13925', 'en', 105), +(51304, 'Outlines of English and American Literature\r\nAn Introduction to the Chief Writers of England and America, to the Books They Wrote, and to the Times in Which They Lived', 'Long, William J. (William Joseph)', '2005-03-01', 30, 'https://www.gutenberg.org/ebooks/7800', 'en', 1694), +(51305, 'The Story of Porcelain', 'Bassett, Sara Ware', '2006-10-01', 45, 'https://www.gutenberg.org/ebooks/19423', 'en', 17305), +(51306, 'Conspecificity of two pocket mice, Perognathus goldmani and P. artus', 'Ogilvie, Marilyn Bailey', '2010-02-11', 6, 'https://www.gutenberg.org/ebooks/31249', 'en', 15913), +(51307, 'La Cité Antique\r\nÉtude sur Le Culte, Le Droit, Les Institutions de la Grèce et de Rome', 'Fustel de Coulanges', '2005-05-01', 37, 'https://www.gutenberg.org/ebooks/8074', 'fr', 4613), +(51308, 'Lives of Distinguished North Carolinians, with Illustrations and Speeches', NULL, '2015-07-03', 21, 'https://www.gutenberg.org/ebooks/49353', 'en', 17306), +(51309, 'Narrative of the Voyages and Services of the Nemesis from 1840 to 1843\r\nAnd of the Combined Naval and Military Operations in China: Comprising a Complete Account of the Colony of Hong-Kong and Remarks on the Character & Habits of the Chinese. Second Edition', 'Bernard, W. D.‏ (William Dallas)‏', '2013-09-08', 30, 'https://www.gutenberg.org/ebooks/43669', 'en', 17307), +(51310, 'The China Painter Instruction Book', 'Balluff, George Erhart', '2015-02-16', 15, 'https://www.gutenberg.org/ebooks/48281', 'en', 17308), +(51311, 'Jean François Millet\r\nA Collection of Fifteen Pictures and a Portrait of the Painter, with Introduction and Interpretation', 'Hurll, Estelle M. (Estelle May)', '2004-08-05', 28, 'https://www.gutenberg.org/ebooks/13119', 'en', 9657), +(51312, 'Miracle Mongers and Their Methods\r\nA Complete Exposé of the Modus Operandi of Fire Eaters, Heat Resisters, Poison Eaters, Venomous Reptile Defiers, Sword Swallowers, Human Ostriches, Strong Men, Etc.', 'Houdini, Harry', '1996-02-01', 124, 'https://www.gutenberg.org/ebooks/435', 'en', 17309), +(51313, 'Translations of Shakuntala and Other Works', 'Kalidasa', '2005-09-05', 175, 'https://www.gutenberg.org/ebooks/16659', 'en', 17310), +(51314, 'Dog Stories from the \"Spectator\"\r\nBeing anecdotes of the intelligence, reasoning power, affection and sympathy of dogs, selected from the correspondence columns of \"The Spectator\"', NULL, '2010-03-31', 20, 'https://www.gutenberg.org/ebooks/31847', 'en', 729), +(51315, 'The Cook and Housekeeper\'s Complete and Universal Dictionary; Including a System of Modern Cookery, in all Its Various Branches, Adapted to the Use of Private Families', 'Eaton, Mary, active 1823-1849', '2009-06-09', 75, 'https://www.gutenberg.org/ebooks/29084', 'en', 3407), +(51316, 'The Data of Ethics', 'Spencer, Herbert', '2014-06-30', 59, 'https://www.gutenberg.org/ebooks/46129', 'en', 4060), +(51317, 'David and the Phoenix', 'Ormondroyd, Edward', '2009-01-28', 46, 'https://www.gutenberg.org/ebooks/27922', 'en', 637), +(51318, 'Better Meals for Less Money', 'Greenough, Marietta McPherson', '2010-11-30', 33, 'https://www.gutenberg.org/ebooks/34509', 'en', 103), +(51319, 'Minor Detail', 'Sharkey, Jack', '2009-02-23', 22, 'https://www.gutenberg.org/ebooks/28156', 'en', 179), +(51320, 'Indian Methodist Hymn-book\r\nHymns Used on the Fraser River Indian Mission, of the Methodist Church, B. C. Conference, to Which Are Appended Hymns in Chinook, and the Lord\'s Prayer and Ten Commandments', NULL, '2010-01-16', 12, 'https://www.gutenberg.org/ebooks/30995', 'en', 17311), +(51321, 'The World English Bible (WEB): Psalms', 'Anonymous', '2005-06-01', 22, 'https://www.gutenberg.org/ebooks/8246', 'en', 11169), +(51322, 'Homestead\r\nA Complete History of the Struggle of July, 1892, between the Carnegie-Steel Company, Limited, and the Amalgamated Association of Iron and Steel Workers', 'Burgoyne, Arthur Gordon', '2013-04-24', 21, 'https://www.gutenberg.org/ebooks/42589', 'en', 17312), +(51323, 'Briefe an Ludwig Tieck (2/4)\nZweiter Band', 'Tieck, Ludwig', '2015-06-07', 5, 'https://www.gutenberg.org/ebooks/49161', 'de', 3236), +(51324, 'Der goldene Spiegel: Erzählungen in einem Rahmen', 'Wassermann, Jakob', '2006-10-24', 19, 'https://www.gutenberg.org/ebooks/19611', 'de', 282), +(51325, 'A Treatise on Painting', 'Leonardo, da Vinci', '2014-09-20', 254, 'https://www.gutenberg.org/ebooks/46915', 'en', 1538), +(51326, 'Die Augsburger Confession', 'Melanchthon, Philipp', '1996-07-01', 61, 'https://www.gutenberg.org/ebooks/607', 'la', 2382), +(51327, 'Briefe aus Frankfurt und Paris 1848-1849 (1/2)', 'Raumer, Friedrich von', '2016-01-07', 10, 'https://www.gutenberg.org/ebooks/50870', 'de', 17313), +(51328, 'The Shih King, or, Book of Poetry\r\nFrom the Sacred Books of the East Volume 3', 'Legge, James', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9394', 'en', 3528), +(51329, 'Punch, or the London Charivari, Volume 1, October 16, 1841', 'Various', '2005-02-07', 5, 'https://www.gutenberg.org/ebooks/14932', 'en', 134), +(51330, 'Terra Australis Incognita; Or, A New Southern Discovery, containing A Fifth Part of the World', 'Queirós, Pedro Fernandes de', '2018-06-04', 9, 'https://www.gutenberg.org/ebooks/57269', 'en', 885), +(51331, '巧聯珠', 'Yanxiayishi', '2008-05-30', 8, 'https://www.gutenberg.org/ebooks/25649', 'zh', 1003), +(51332, 'The Snowball', 'Weyman, Stanley John', '2012-03-20', 19, 'https://www.gutenberg.org/ebooks/39216', 'en', 6798), +(51333, 'La Odisea', 'Homer', '2018-11-02', 184, 'https://www.gutenberg.org/ebooks/58221', 'es', 17314), +(51334, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 08', 'Ebers, Georg', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/5559', 'en', 803), +(51335, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 04 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-09-23', 5, 'https://www.gutenberg.org/ebooks/43803', 'it', 6107), +(51336, 'Blackwood\'s Edinburgh Magazine, Volume 59, No. 363, January, 1846', 'Various', '2009-04-07', 15, 'https://www.gutenberg.org/ebooks/28532', 'en', 711), +(51337, 'John Leech\'s Pictures of Life and Character, Vol. 2 (of 3)\r\nFrom the Collection of \"Mr. Punch\"', 'Leech, John', '2015-11-10', 5, 'https://www.gutenberg.org/ebooks/50428', 'en', 2965), +(51338, 'St. Cuthbert\'s', 'Knowles, Robert E. (Robert Edward)', '2007-07-06', 10, 'https://www.gutenberg.org/ebooks/22008', 'en', 55), +(51339, 'In Taunton town : a story of the rebellion of James Duke of Monmouth in 1685', 'Everett-Green, Evelyn', '2017-11-14', 18, 'https://www.gutenberg.org/ebooks/55966', 'en', 5512), +(51340, 'Σοφιστής', 'Plato', '2011-01-13', 19, 'https://www.gutenberg.org/ebooks/34951', 'el', 3782), +(51341, 'Narrative of a Voyage to Hudson\'s Bay in His Majesty\'s Ship Rosamond\nContaining Some Account of the North-eastern Coast of America and of the Tribes Inhabiting That Remote Region', 'Chappell, Edward', '2017-02-02', 18, 'https://www.gutenberg.org/ebooks/54088', 'en', 17315), +(51342, 'Trees, and Other Poems', 'Kilmer, Joyce', '1995-05-01', 103, 'https://www.gutenberg.org/ebooks/263', 'en', 15195), +(51343, 'Droll Stories — Volume 2', 'Balzac, Honoré de', '2004-08-23', 32, 'https://www.gutenberg.org/ebooks/2318', 'en', 2508), +(51344, 'The New Revelation', 'Doyle, Arthur Conan', '2005-08-01', 5, 'https://www.gutenberg.org/ebooks/8622', 'en', 504), +(51345, 'Voyage of H.M.S. Pandora\r\nDespatched to Arrest the Mutineers of the \'Bounty\' in the South Seas, 1790-1791', 'Edwards, Edward, Captain R. N.', '2007-10-02', 55, 'https://www.gutenberg.org/ebooks/22834', 'en', 3580), +(51346, 'The Romance of the Microscope\r\nAn interesting description of its uses in all branches of science, industry, agriculture, and in the detection of crime, with a short account of its origin, history, and development', 'Ealand, C. A. (Charles Aubrey)', '2015-07-21', 29, 'https://www.gutenberg.org/ebooks/49505', 'en', 10791), +(51347, 'God Passes By', 'Shoghi, Effendi', '2006-09-17', 24, 'https://www.gutenberg.org/ebooks/19275', 'en', 17316), +(51348, 'War Inconsistent with the Religion of Jesus Christ', 'Dodge, David Low', '2011-04-16', 17, 'https://www.gutenberg.org/ebooks/35883', 'en', 17317), +(51349, 'Samuel F. B. Morse, His Letters and Journals\nIn Two Volumes, Volume II', 'Morse, Samuel Finley Breese', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11018', 'en', 16408), +(51350, 'Harper\'s New Monthly Magazine, No. IX.—February, 1851.—Vol. II.', 'Various', '2013-01-03', 11, 'https://www.gutenberg.org/ebooks/41768', 'en', 387), +(51351, 'How to Make an Index', 'Wheatley, Henry B. (Henry Benjamin)', '2012-05-12', 17, 'https://www.gutenberg.org/ebooks/39672', 'en', 11055), +(51352, 'Reveries over Childhood and Youth', 'Yeats, W. B. (William Butler)', '2010-08-04', 35, 'https://www.gutenberg.org/ebooks/33348', 'en', 11552), +(51353, 'Dyke Darrel the Railroad Detective; Or, The Crime of the Midnight Express', 'Pinkerton, A. Frank', '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/5901', 'en', 128), +(51354, 'U.S. Copyright Renewals, 1961 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11824', 'en', 4170), +(51355, 'El Protestantismo comparado con el Catolicismo en sus relaciones con la Civilización Europea (Vols 1-2)', 'Balmes, Jaime Luciano', '2019-06-23', 27, 'https://www.gutenberg.org/ebooks/59797', 'es', 16590), +(51356, 'Oration on Charles Sumner, Addressed to Colored People', 'Anonymous', '2019-01-07', 2, 'https://www.gutenberg.org/ebooks/58645', 'en', 17318), +(51357, 'The Indians of Carlsbad Caverns National Park', 'Williams, Jack R.', '2016-09-03', 5, 'https://www.gutenberg.org/ebooks/52971', 'en', 17319), +(51358, 'Sacred Hymns from the German\nTranslated by Frances Elizabeth Cox', NULL, '2012-04-13', 2, 'https://www.gutenberg.org/ebooks/39440', 'en', 7221), +(51359, 'Onze oude dorpskerken: Tachtig schetsen van dorpskerken in Nederland', 'Kloot Meijburg, Herman van der', '2014-02-01', 15, 'https://www.gutenberg.org/ebooks/44814', 'nl', 17320), +(51360, 'A Woman of Genius', 'Austin, Mary Hunter', '2012-01-17', 30, 'https://www.gutenberg.org/ebooks/38592', 'en', 8517), +(51361, 'The Story of an Ancient Parish: Breage with Germoe\r\nWith Some Account of Its Armigers, Worthies and Unworthies, Smugglers and Wreckers, Its Traditions and Superstitions', 'Coulthard, H. R.', '2012-08-12', 18, 'https://www.gutenberg.org/ebooks/40488', 'en', 17321), +(51362, 'In the Whirl of the Rising', 'Mitford, Bertram', '2010-06-19', 9, 'https://www.gutenberg.org/ebooks/32894', 'en', 1207), +(51363, 'The Story of Leather', 'Bassett, Sara Ware', '2008-06-17', 32, 'https://www.gutenberg.org/ebooks/25823', 'en', 17322), +(51364, 'Välskärin kertomuksia 4.1\nErämaiden kevät. Porvariskuningas.', 'Topelius, Zacharias', '2011-06-13', 6, 'https://www.gutenberg.org/ebooks/36408', 'fi', 17323), +(51365, 'The Every Day Book of History and Chronology\nEmbracing the Anniversaries of Memorable Persons and Events in Every Period and State of the World, from the Creation to the Present Time', 'Munsell, Joel', '2013-10-24', 14, 'https://www.gutenberg.org/ebooks/44028', 'en', 17324), +(51366, 'Mary Anderson', 'Farrar, J. Maurice', '2005-01-22', 18, 'https://www.gutenberg.org/ebooks/14758', 'en', 17325), +(51367, 'A Stiptick for a Bleeding Nation\r\nOr, a safe and speedy way to restore publick credit, and pay the national debts', 'Unknown', '2010-10-04', 14, 'https://www.gutenberg.org/ebooks/33946', 'en', 4681), +(51368, 'Index of the Project Gutenberg Works of Herman Melville', 'Melville, Herman', '2018-12-16', 47, 'https://www.gutenberg.org/ebooks/58477', 'en', 198), +(51369, 'Robin Hood', 'Creswick, Paul', '2009-05-06', 79, 'https://www.gutenberg.org/ebooks/28700', 'en', 3600), +(51370, 'The Foundations (An Extravagant Play)', 'Galsworthy, John', '2004-09-26', 24, 'https://www.gutenberg.org/ebooks/2916', 'en', 1088), +(51371, '顔氏家訓', 'Yan, Zhitui', '2005-02-01', 28, 'https://www.gutenberg.org/ebooks/7458', 'zh', 17326), +(51372, 'Popular Lectures on Zoonomia\nOr The Laws of Animal Life, in Health and Disease', 'Garnett, Thomas', '2009-01-08', 14, 'https://www.gutenberg.org/ebooks/27748', 'en', 3536), +(51373, 'The Girl\'s Own Paper, Vol. VIII: No. 353, October 2, 1886.', 'Various', '2006-04-17', 68, 'https://www.gutenberg.org/ebooks/18195', 'en', 563), +(51374, 'Nazi Conspiracy and Aggression (Vol. I)', 'United States. Office of Chief of Counsel for the Prosecution of Axis Criminality', '2017-08-16', 52, 'https://www.gutenberg.org/ebooks/55368', 'en', 653), +(51375, 'Sysmäläinen: Kyläinen tarina', 'Auerbach, Berthold', '2006-08-14', 30, 'https://www.gutenberg.org/ebooks/19047', 'fi', 17327), +(51376, 'Auguste Comte and Positivism', 'Mill, John Stuart', '2005-10-09', 87, 'https://www.gutenberg.org/ebooks/16833', 'en', 3926), +(51377, 'Jack of the Pony Express; Or, The Young Rider of the Mountain Trails', 'Webster, Frank V.', '2005-07-01', 18, 'https://www.gutenberg.org/ebooks/8410', 'en', 17328), +(51378, 'Suomen herännäisyyden historia XIX:llä vuosisadalla II. 1836-1844', 'Rosendal, Mauno', '2015-08-19', 12, 'https://www.gutenberg.org/ebooks/49737', 'fi', 3204), +(51379, 'Descriptive Zoopraxography; or, the science of animal locomotion made popular', 'Muybridge, Eadweard', '2012-07-11', 14, 'https://www.gutenberg.org/ebooks/40215', 'en', 1767), +(51380, 'The Life of Timon of Athens', 'Shakespeare, William', '1997-12-01', 26, 'https://www.gutenberg.org/ebooks/1132', 'en', 5046), +(51381, 'Mizora: A Prophecy\nA MSS. Found Among the Private Papers of the Princess Vera Zarovitch', 'Lane, Mary E. Bradley', '2008-03-04', 68, 'https://www.gutenberg.org/ebooks/24750', 'en', 5147), +(51382, 'Watch-Dogs\nShip\'s Company, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10565', 'en', 72), +(51383, 'Apotti Jérôme Coignardin ajatuksia', 'France, Anatole', '2018-01-14', 14, 'https://www.gutenberg.org/ebooks/56370', 'fi', 1850), +(51384, 'Bell\'s Cathedrals: The Cathedral Church of Gloucester [2nd ed.]\nA Description of Its Fabric and A Brief History of the Espicopal See', 'Massé, H. J. L. J. (Henri Jean Louis Joseph)', '2008-06-05', 4, 'https://www.gutenberg.org/ebooks/25682', 'en', 17329), +(51385, 'The Diary of Philip Westerly', 'Compton, Paul', '2010-06-01', 23, 'https://www.gutenberg.org/ebooks/32635', 'en', 179), +(51386, 'A Taxicab Tangle; or, The Mission of the Motor Boys\r\nBrave and Bold Weekly No. 362', NULL, '2016-11-26', 9, 'https://www.gutenberg.org/ebooks/53602', 'en', 336), +(51387, 'Lighter Moments from the Notebook of Bishop Walsham How', 'How, William Walsham', '2011-09-08', 12, 'https://www.gutenberg.org/ebooks/37347', 'en', 17330), +(51388, 'The Complete Short Works of Georg Ebers', 'Ebers, Georg', '2004-11-15', 34, 'https://www.gutenberg.org/ebooks/5592', 'en', 803), +(51389, 'The Pastor\'s Wife', 'Von Arnim, Elizabeth', '2011-05-31', 49, 'https://www.gutenberg.org/ebooks/36295', 'en', 4364), +(51390, 'Vittoria — Volume 6', 'Meredith, George', '2003-09-01', 11, 'https://www.gutenberg.org/ebooks/4440', 'en', 98), +(51391, 'Abraham Lincoln geschetst in zijn leven en daden', 'Bacon, G. W. (George Washington)', '2014-05-26', 19, 'https://www.gutenberg.org/ebooks/45767', 'nl', 1716), +(51392, 'Geschichte der Medizin. II. Band, Erster Teil', 'Neuburger, Max', '2019-04-21', 6, 'https://www.gutenberg.org/ebooks/59338', 'de', 8175), +(51393, 'A Dialogue Concerning Oratory, or the Causes of Corrupt Eloquence\r\nThe Works of Cornelius Tacitus, Volume 8 (of 8); With an Essay on His Life and Genius, Notes, Supplements', 'Tacitus, Cornelius', '2005-02-11', 46, 'https://www.gutenberg.org/ebooks/15017', 'en', 17331), +(51394, 'The Armourer\'s Prentices', 'Yonge, Charlotte M. (Charlotte Mary)', '2007-04-27', 12, 'https://www.gutenberg.org/ebooks/21222', 'en', 11540), +(51395, 'Stjärnornas kungabarn 1: Nattens barn\r\nEn tids- och karaktersstudie från drottning Kristinas dagar', 'Topelius, Zacharias', '2015-09-17', 13, 'https://www.gutenberg.org/ebooks/49996', 'sv', 98), +(51396, 'Beyond The Rocks: A Love Story', 'Glyn, Elinor', '2005-09-14', 40, 'https://www.gutenberg.org/ebooks/16692', 'en', 98), +(51397, 'A Complete Dictionary of Synonyms and Antonyms\nor, Synonyms and Words of Opposite Meaning', 'Fallows, Samuel', '2016-02-08', 258, 'https://www.gutenberg.org/ebooks/51155', 'en', 17332), +(51398, 'Jamaican Song and Story\nAnnancy stories, digging sings, ring tunes, and dancing tunes', NULL, '2011-02-26', 879, 'https://www.gutenberg.org/ebooks/35410', 'en', 17333), +(51399, 'Sailing Alone Around the World', 'Slocum, Joshua', '2004-08-01', 420, 'https://www.gutenberg.org/ebooks/6317', 'en', 819), +(51400, 'Kophetua the Thirteenth', 'Corbett, Julian Stafford', '2014-10-03', 19, 'https://www.gutenberg.org/ebooks/47030', 'en', 3839), +(51401, 'The Turning of Griggsby: Being a Story of Keeping up with Dan\'l Webster', 'Bacheller, Irving', '2015-09-30', 15, 'https://www.gutenberg.org/ebooks/50087', 'en', 48), +(51402, 'The Chemistry of Hat Manufacturing\nLectures Delivered Before the Hat Manufacturers\' Association', 'Smith, Watson', '2006-02-10', 30, 'https://www.gutenberg.org/ebooks/17740', 'en', 1531), +(51403, 'The Story of Captain, the Horse with the Human Brain', 'James, George Wharton', '2015-05-01', 10, 'https://www.gutenberg.org/ebooks/48844', 'en', 17334); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(51404, 'Adventures in Africa\nBy an African Trader', 'Kingston, William Henry Giles', '2007-11-21', 25, 'https://www.gutenberg.org/ebooks/23575', 'en', 6186), +(51405, 'Mattinate napoletane', 'Di Giacomo, Salvatore', '2009-08-31', 27, 'https://www.gutenberg.org/ebooks/29873', 'it', 474), +(51406, 'Lost Diaries', 'Baring, Maurice', '2013-04-15', 37, 'https://www.gutenberg.org/ebooks/42542', 'en', 564), +(51407, 'Maurine and Other Poems', 'Wilcox, Ella Wheeler', '2003-01-01', 6, 'https://www.gutenberg.org/ebooks/3665', 'en', 178), +(51408, 'According to Plato', 'Moore, Frank Frankfort', '2016-05-02', 25, 'https://www.gutenberg.org/ebooks/51969', 'en', 11283), +(51409, 'From Paris to New York by Land', 'De Windt, Harry', '2008-07-08', 18, 'https://www.gutenberg.org/ebooks/26007', 'en', 5908), +(51410, 'Punch, or the London Charivari, Volume 156, May 28, 1919', 'Various', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/12232', 'en', 134), +(51411, 'Dr. Dumany\'s Wife', 'Jókai, Mór', '2006-06-28', 31, 'https://www.gutenberg.org/ebooks/18708', 'en', 61), +(51412, 'Interessante Wanderungen durch das Sächsische Ober-Erzgebirge', 'Wild, Christian Gottlob', '2017-03-25', 15, 'https://www.gutenberg.org/ebooks/54427', 'de', 4957), +(51413, 'Old English Patent Medicines in America', 'Young, James Harvey', '2009-10-02', 28, 'https://www.gutenberg.org/ebooks/30162', 'en', 1776), +(51414, 'The Social Significance of the Modern Drama', 'Goldman, Emma', '2013-08-17', 16, 'https://www.gutenberg.org/ebooks/43490', 'en', 17335), +(51415, 'History of Embalming\r\nand of Preparations in Anatomy, Pathology, and Natural History; Including an Account of a New Process for Embalming', 'Gannal, J.-N. (Jean-Nicolas)', '2015-01-25', 16, 'https://www.gutenberg.org/ebooks/48078', 'en', 17336), +(51416, 'A Philosophical Dictionary, Volume 02', 'Voltaire', '2011-03-28', 34, 'https://www.gutenberg.org/ebooks/35622', 'en', 7152), +(51417, 'The Comedies of Terence', 'Terence', '2007-09-21', 24, 'https://www.gutenberg.org/ebooks/22695', 'en', 17337), +(51418, 'A Love Story', 'Christie, William Harvey', '2005-09-01', 19, 'https://www.gutenberg.org/ebooks/8883', 'en', 61), +(51419, 'Poems: Pastoral and Psalm', 'Copeland, Benjamin', '2016-03-05', 3, 'https://www.gutenberg.org/ebooks/51367', 'en', 350), +(51420, 'Arbetets Herravälde', 'Carnegie, Andrew', '2006-02-01', 21, 'https://www.gutenberg.org/ebooks/9951', 'sv', 17338), +(51421, 'The Last Spike\nAnd Other Railroad Stories', 'Warman, Cy', '2006-01-22', 22, 'https://www.gutenberg.org/ebooks/17572', 'en', 1239), +(51422, 'Destruction and Reconstruction:\nPersonal Experiences of the Late War', 'Taylor, Richard', '2007-12-05', 30, 'https://www.gutenberg.org/ebooks/23747', 'en', 83), +(51423, 'The Making of an American', 'Riis, Jacob A. (Jacob August)', '2004-07-01', 35, 'https://www.gutenberg.org/ebooks/6125', 'en', 17339), +(51424, 'Blut: Eine Erzählung', 'Bonsels, Waldemar', '2014-10-26', 8, 'https://www.gutenberg.org/ebooks/47202', 'de', 61), +(51425, 'The Mistress of Shenstone', 'Barclay, Florence L. (Florence Louisa)', '2008-08-09', 34, 'https://www.gutenberg.org/ebooks/26235', 'en', 401), +(51426, 'A Walk from London to John O\'Groat\'s\r\nWith Notes by the Way', 'Burritt, Elihu', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12000', 'en', 776), +(51427, 'The Story of My Life, volumes 4-6', 'Hare, Augustus J. C. (Augustus John Cuthbert)', '2013-05-22', 16, 'https://www.gutenberg.org/ebooks/42770', 'en', 17340), +(51428, 'Cours familier de Littérature - Volume 24', 'Lamartine, Alphonse de', '2015-07-08', 14, 'https://www.gutenberg.org/ebooks/49398', 'fr', 920), +(51429, 'The Man of the Forest', 'Grey, Zane', '2002-10-01', 168, 'https://www.gutenberg.org/ebooks/3457', 'en', 315), +(51430, 'Mars Confidential', 'Browne, Howard', '2010-02-15', 51, 'https://www.gutenberg.org/ebooks/31282', 'en', 179), +(51431, 'The First 1001 Fibonacci Numbers', NULL, '2001-04-01', 21, 'https://www.gutenberg.org/ebooks/2585', 'en', 13873), +(51432, 'The Philippine Islands, 1493-1898, Volume 36, 1649-1666\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the Catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century.', NULL, '2009-10-28', 43, 'https://www.gutenberg.org/ebooks/30350', 'en', 745), +(51433, 'The Miracles of Antichrist: A Novel', 'Lagerlöf, Selma', '2017-04-27', 23, 'https://www.gutenberg.org/ebooks/54615', 'en', 2186), +(51434, 'Darwiniana : Essays — Volume 02', 'Huxley, Thomas Henry', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6919', 'en', 5893), +(51435, 'The Panjab, North-West Frontier Province, and Kashmir', 'Douie, James McCrone, Sir', '2008-02-10', 65, 'https://www.gutenberg.org/ebooks/24562', 'en', 1975), +(51436, 'Pretty Saro', 'McGuinn, Roger', '2004-01-01', 1, 'https://www.gutenberg.org/ebooks/10757', 'en', 3717), +(51437, 'Scarlett of the Mounted', 'Merington, Marguerite', '2011-11-07', 9, 'https://www.gutenberg.org/ebooks/37949', 'en', 11845), +(51438, 'The Journal of Prison Discipline and Philanthropy (New Series, No. 46, January 1907)', 'Pennsylvania Prison Society', '2018-05-05', 2, 'https://www.gutenberg.org/ebooks/57090', 'en', 2509), +(51439, 'The Scarecrow, and Other Stories', 'Wormser, G. Ranger (Gwendolyn Ranger)', '2012-06-18', 22, 'https://www.gutenberg.org/ebooks/40027', 'en', 112), +(51440, 'Riders of the Purple Sage', 'Grey, Zane', '1998-05-01', 366, 'https://www.gutenberg.org/ebooks/1300', 'en', 17341), +(51441, 'Peter Jameson: A Modern Romance', 'Frankau, Gilbert', '2019-07-17', 132, 'https://www.gutenberg.org/ebooks/59936', 'en', 579), +(51442, 'Fair and Warmer', 'Von Wald, E. G.', '2010-05-17', 23, 'https://www.gutenberg.org/ebooks/32407', 'en', 26), +(51443, 'Patsy', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-12-07', 20, 'https://www.gutenberg.org/ebooks/56142', 'en', 669), +(51444, 'L\'Endimione', 'Metastasio, Pietro', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/11685', 'it', 1966), +(51445, 'Captured at Tripoli: A Tale of Adventure', 'Westerman, Percy F. (Percy Francis)', '2013-12-22', 15, 'https://www.gutenberg.org/ebooks/44487', 'en', 17342), +(51446, 'The Boy Aviators\' Flight for a Fortune', 'Goldfrap, John Henry', '2011-08-23', 34, 'https://www.gutenberg.org/ebooks/37175', 'en', 2279), +(51447, 'Twelfth Night; or, What You Will', 'Shakespeare, William', '2012-02-16', 25, 'https://www.gutenberg.org/ebooks/38901', 'en', 10802), +(51448, 'Principia Ethica', 'Moore, G. E. (George Edward)', '2016-11-02', 116, 'https://www.gutenberg.org/ebooks/53430', 'en', 680), +(51449, 'Andreas: The Legend of St. Andrew', NULL, '2005-03-01', 24, 'https://www.gutenberg.org/ebooks/15225', 'en', 17343), +(51450, 'Chambers\'s Edinburgh Journal, No. 444\nVolume 18, New Series, July 3, 1852', 'Various', '2007-04-08', 8, 'https://www.gutenberg.org/ebooks/21010', 'en', 18), +(51451, 'The Galleries of the Exposition', 'Neuhaus, Eugen', '2003-11-01', 39, 'https://www.gutenberg.org/ebooks/4672', 'en', 14347), +(51452, 'Picture Posters\r\nA Short History of the Illustrated Placard with Many Reproductions of the Most Artistic Examples in all Countries', 'Hiatt, Charles', '2014-05-01', 18, 'https://www.gutenberg.org/ebooks/45555', 'en', 17344), +(51453, 'Ang Liham ni Dr. Jose Rizal sa mga Kadalagahan sa Malolos, Bulakan', 'Rizal, José', '2005-11-20', 63, 'https://www.gutenberg.org/ebooks/17116', 'tl', 17345), +(51454, 'Stephen Grattan\'s Faith: A Canadian Story', 'Robertson, Margaret M. (Margaret Murray)', '2007-11-04', 8, 'https://www.gutenberg.org/ebooks/23323', 'en', 195), +(51455, 'Le dangereux jeune homme', 'Boylesve, René', '2006-08-01', 16, 'https://www.gutenberg.org/ebooks/18962', 'fr', 61), +(51456, 'The Boy Scouts of Bob\'s Hill\nA Sequel to \'The Bob\'s Hill Braves\'', 'Burton, Charles Pierce', '2010-11-22', 14, 'https://www.gutenberg.org/ebooks/34394', 'en', 2994), +(51457, 'South Sea Tales', 'London, Jack', '2004-09-01', 7, 'https://www.gutenberg.org/ebooks/6541', 'en', 179), +(51458, 'Viaggi di Ali Bey el-Abbassi in Africa ed in Asia, v. 3', 'Ali Bey', '2014-12-14', 23, 'https://www.gutenberg.org/ebooks/47666', 'it', 6541), +(51459, 'Arne: A Sketch of Norwegian Country Life', 'Bjørnson, Bjørnstjerne', '2011-02-12', 34, 'https://www.gutenberg.org/ebooks/35246', 'en', 286), +(51460, 'The Daughter of the Chieftain : the Story of an Indian Girl', 'Ellis, Edward Sylvester', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7493', 'en', 17346), +(51461, 'The Altar at Midnight', 'Kornbluth, C. M. (Cyril M.)', '2009-08-05', 66, 'https://www.gutenberg.org/ebooks/29619', 'en', 26), +(51462, 'Les révélées', 'Corday, Michel', '2016-04-09', 9, 'https://www.gutenberg.org/ebooks/51703', 'fr', 61), +(51463, 'Southern Lights and Shadows', NULL, '2005-12-01', 34, 'https://www.gutenberg.org/ebooks/9509', 'en', 1439), +(51464, 'Mushrooms of America, Edible and Poisonous', NULL, '2009-12-22', 22, 'https://www.gutenberg.org/ebooks/30734', 'en', 6834), +(51465, 'Carols of Canada, Etc., Etc.', 'MacLeod, E. S. (Elizabeth Susan)', '2017-03-02', 6, 'https://www.gutenberg.org/ebooks/54271', 'en', 1237), +(51466, 'Twee vroolijke geschiedenissen', 'Reuter, Fritz', '2009-01-12', 12, 'https://www.gutenberg.org/ebooks/27783', 'nl', 17347), +(51467, 'Against This Age', 'Bodenheim, Maxwell', '2019-08-03', 588, 'https://www.gutenberg.org/ebooks/60044', 'en', 994), +(51468, 'The Flaming Jewel', 'Chambers, Robert W. (Robert William)', '2008-09-18', 17, 'https://www.gutenberg.org/ebooks/26651', 'en', 3657), +(51469, 'A Compilation of the Messages and Papers of the Presidents. Volume 4, part 2: John Tyler', NULL, '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12464', 'en', 447), +(51470, 'Mount Rainier, a Record of Exploration', NULL, '2013-03-12', 32, 'https://www.gutenberg.org/ebooks/42314', 'en', 17348), +(51471, 'The Passing of the Frontier: A Chronicle of the Old West', 'Hough, Emerson', '2002-01-01', 26, 'https://www.gutenberg.org/ebooks/3033', 'en', 930), +(51472, 'Encyclopaedia Britannica, 11th Edition, \"Conduction, Electric\"\r\nVolume 6, Slice 8', 'Various', '2010-04-19', 31, 'https://www.gutenberg.org/ebooks/32063', 'en', 1081), +(51473, 'A Virginia Cousin, & Bar Harbor Tales', 'Harrison, Burton, Mrs.', '2012-12-10', 16, 'https://www.gutenberg.org/ebooks/41591', 'en', 17349), +(51474, 'How the Garden Grew', 'Maryon, Maud', '2018-02-08', 17, 'https://www.gutenberg.org/ebooks/56526', 'en', 1413), +(51475, '安樂集', 'Daochuo', '2008-01-01', 21, 'https://www.gutenberg.org/ebooks/24106', 'zh', 17350), +(51476, 'The European Anarchy', 'Dickinson, G. Lowes (Goldsworthy Lowes)', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10333', 'en', 4773), +(51477, 'The Spirit of God as Fire; the Globe Within the Sun Our Heaven', 'Mortimore, D.', '2012-08-08', 10, 'https://www.gutenberg.org/ebooks/40443', 'en', 7032), +(51478, 'Billy and the Big Stick', 'Davis, Richard Harding', '1999-05-01', 15, 'https://www.gutenberg.org/ebooks/1764', 'en', 17351), +(51479, 'Helen Ford', 'Alger, Horatio, Jr.', '2017-01-02', 26, 'https://www.gutenberg.org/ebooks/53868', 'en', 15173), +(51480, 'The Story of Assisi', 'Gordon, Lina Duff', '2012-01-12', 45, 'https://www.gutenberg.org/ebooks/38559', 'en', 17352), +(51481, 'Notes and Queries, Number 65, January 25, 1851', 'Various', '2005-04-17', 8, 'https://www.gutenberg.org/ebooks/15641', 'en', 105), +(51482, 'Harhama I', 'Lassila, Maiju', '2016-05-29', 21, 'https://www.gutenberg.org/ebooks/52186', 'fi', 175), +(51483, 'Peter the Whaler', 'Kingston, William Henry Giles', '2007-05-15', 19, 'https://www.gutenberg.org/ebooks/21474', 'en', 12217), +(51484, 'Touch and Go: A Play in Three Acts', 'Lawrence, D. H. (David Herbert)', '2003-07-01', 23, 'https://www.gutenberg.org/ebooks/4216', 'en', 1088), +(51485, 'Charles Bradlaugh: a Record of His Life and Work, Volume 2 (of 2)\r\nWith an Account of his Parliamentary Struggle, Politics and Teachings. Seventh Edition', 'Robertson, J. M. (John Mackinnon)', '2014-03-14', 17, 'https://www.gutenberg.org/ebooks/45131', 'en', 16641), +(51486, 'The Child\'s Story-Book. Second Series—No. 4', 'Anonymous', '2011-09-23', 4, 'https://www.gutenberg.org/ebooks/37511', 'en', 388), +(51487, 'Simplicianische Schriften, Erster Theil (von 2)', 'Grimmelshausen, Hans Jakob Christoph von', '2016-09-15', 15, 'https://www.gutenberg.org/ebooks/53054', 'de', 5126), +(51488, 'La vie errante', 'Maupassant, Guy de', '2005-01-24', 28, 'https://www.gutenberg.org/ebooks/14793', 'fr', 6863), +(51489, 'Dick Lester of Kurrajong', 'Bruce, Mary Grant', '2018-03-10', 16, 'https://www.gutenberg.org/ebooks/56714', 'en', 7487), +(51490, 'The Rise of the Dutch Republic — Volume 17: 1570-72', 'Motley, John Lothrop', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/4818', 'en', 3372), +(51491, 'Applied Physiology, Including the Effects of Alcohol and Narcotics', 'Overton, Frank', '2010-05-04', 38, 'https://www.gutenberg.org/ebooks/32251', 'en', 3536), +(51492, 'Synopsis of Jewish History\nFrom the Return of the Jews from the Babylonish Captivity, to the Days of Herod the Great', 'Henry, H. A. (Henry Abraham)', '2012-09-05', 35, 'https://www.gutenberg.org/ebooks/40671', 'en', 17353), +(51493, 'The Marriage Contract', 'Balzac, Honoré de', '2005-03-12', 44, 'https://www.gutenberg.org/ebooks/1556', 'en', 58), +(51494, 'Penny Nichols and the Knob Hill Mystery', 'Clark, Joan', '2010-08-08', 95, 'https://www.gutenberg.org/ebooks/33383', 'en', 17354), +(51495, 'Collected Poems in Two Volumes, Vol. II', 'Dobson, Austin', '2008-01-17', 14, 'https://www.gutenberg.org/ebooks/24334', 'en', 54), +(51496, 'A Little Boy Lost', 'Hudson, W. H. (William Henry)', '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/10101', 'en', 9366), +(51497, 'The Man of Destiny', 'Shaw, Bernard', '2003-05-01', 78, 'https://www.gutenberg.org/ebooks/4024', 'en', 8163), +(51498, 'The Life of John Taylor\r\nThird President of the Church of Jesus Christ of Latter-Day Saints', 'Roberts, B. H. (Brigham Henry)', '2014-04-01', 43, 'https://www.gutenberg.org/ebooks/45303', 'en', 17355), +(51499, 'Love Stories', 'Rinehart, Mary Roberts', '2005-03-26', 56, 'https://www.gutenberg.org/ebooks/15473', 'en', 4141), +(51500, 'How to Become Rich: A Treatise on Phrenology, Choice of Professions and Matrimony', 'Windsor, William', '2007-05-30', 117, 'https://www.gutenberg.org/ebooks/21646', 'en', 830), +(51501, 'Majoor Frans', 'Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida)', '2007-03-10', 19, 'https://www.gutenberg.org/ebooks/20794', 'nl', 319), +(51502, 'Germania', 'Tacitus, Cornelius', '2016-10-12', 15, 'https://www.gutenberg.org/ebooks/53266', 'fi', 6091), +(51503, 'For Sceptre and Crown: A Romance of the Present Time. Vol. 1 (of 2)', 'Samarow, Gregor', '2011-10-11', 4, 'https://www.gutenberg.org/ebooks/37723', 'en', 6007), +(51504, 'The Thirty Years War — Volume 04', 'Schiller, Friedrich', '2004-10-01', 9, 'https://www.gutenberg.org/ebooks/6773', 'en', 4328), +(51505, 'Egoists, A Book of Supermen\r\nStendhal, Baudelaire, Flaubert, Anatole France, Huysmans, Barrès, Nietzsche, Blake, Ibsen, Stirner, and Ernest Hello', 'Huneker, James', '2014-11-25', 54, 'https://www.gutenberg.org/ebooks/47454', 'en', 536), +(51506, 'History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 4 (of 12)', 'Maspero, G. (Gaston)', '2005-12-16', 65, 'https://www.gutenberg.org/ebooks/17324', 'en', 7793), +(51507, 'Riley Songs of Friendship', 'Riley, James Whitcomb', '2007-10-20', 11, 'https://www.gutenberg.org/ebooks/23111', 'en', 178), +(51508, 'With These Hands', 'Kornbluth, C. M. (Cyril M.)', '2016-03-22', 36, 'https://www.gutenberg.org/ebooks/51531', 'en', 179), +(51509, 'Alice Wilde: The Raftsman\'s Daughter. A Forest Romance', 'Victor, Metta Victoria Fuller', '2014-08-14', 14, 'https://www.gutenberg.org/ebooks/46586', 'en', 48), +(51510, 'His Unknown Wife', 'Tracy, Louis', '2011-01-26', 100, 'https://www.gutenberg.org/ebooks/35074', 'en', 1592), +(51511, 'Mr. Dooley: In the Hearts of His Countrymen', 'Dunne, Finley Peter', '2004-10-18', 30, 'https://www.gutenberg.org/ebooks/13784', 'en', 40), +(51512, 'The Life of Cardinal Wolsey', 'Cavendish, George', '2017-01-23', 41, 'https://www.gutenberg.org/ebooks/54043', 'en', 17356), +(51513, 'Anarchism and Socialism', 'Plekhanov, Georgii Valentinovich', '2009-11-20', 42, 'https://www.gutenberg.org/ebooks/30506', 'en', 11063), +(51514, 'L\'Histoire de France racontée par les Contemporains (Tome 1/4)\r\nExtraits des Chroniques, des Mémoires et des Documents originaux, avec des sommaires et des résumés chronologiques', NULL, '2013-02-18', 26, 'https://www.gutenberg.org/ebooks/42126', 'fr', 6457), +(51515, 'Moby Word Lists', 'Ward, Grady', '2002-05-01', 205, 'https://www.gutenberg.org/ebooks/3201', 'en', 7557), +(51516, 'The Garden Party, and Other Stories', 'Mansfield, Katherine', '2008-09-01', 14, 'https://www.gutenberg.org/ebooks/26463', 'en', 2754), +(51517, 'A History of North American Birds; Land Birds; Vol. 1 of 3', 'Brewer, T. M. (Thomas Mayo)', '2017-07-24', 7, 'https://www.gutenberg.org/ebooks/55191', 'en', 1333), +(51518, 'The Boy Allies at Liège; Or, Through Lines of Steel', 'Hayes, Clair W. (Clair Wallace)', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12656', 'en', 146), +(51519, 'Gaudeamus! Humorous Poems', 'Scheffel, Joseph Victor von', '2011-04-13', 13, 'https://www.gutenberg.org/ebooks/35848', 'en', 1867), +(51520, 'Lorenzo de\' Medici, the Magnificent (vol. 2 of 2)', 'Reumont, Alfred von', '2015-12-05', 16, 'https://www.gutenberg.org/ebooks/50625', 'en', 16591), +(51521, 'The Origin of Species\r\nFrom \'The Westminster Review\', April 1860', 'Huxley, Thomas Henry', '2001-11-01', 24, 'https://www.gutenberg.org/ebooks/2929', 'en', 5473), +(51522, 'Roses: Four One-Act Plays\nStreaks of Light—The Last Visit—Margot—The Far-away Princess', 'Sudermann, Hermann', '2010-11-18', 19, 'https://www.gutenberg.org/ebooks/34360', 'en', 493), +(51523, 'Democracy and Education: An Introduction to the Philosophy of Education', 'Dewey, John', '1997-03-01', 742, 'https://www.gutenberg.org/ebooks/852', 'en', 17357), +(51524, 'Jean-Jacques Rousseau', 'Lemaître, Jules', '2006-08-06', 21, 'https://www.gutenberg.org/ebooks/18996', 'fr', 608), +(51525, 'The English and Scottish Popular Ballads, Volume 2 (of 5)', NULL, '2014-12-17', 14, 'https://www.gutenberg.org/ebooks/47692', 'en', 4582), +(51526, 'Five Selected Short Stories', 'Lawrence, D. H. (David Herbert)', '2014-08-31', 121, 'https://www.gutenberg.org/ebooks/46740', 'fa', 179), +(51527, 'The Newcomes: Memoirs of a Most Respectable Family', 'Thackeray, William Makepeace', '2005-02-01', 58, 'https://www.gutenberg.org/ebooks/7467', 'en', 378), +(51528, 'Book of Jude', 'Unknown', '2006-11-18', 5, 'https://www.gutenberg.org/ebooks/19844', 'en', 6543), +(51529, 'In Direst Peril', 'Murray, David Christie', '2007-08-01', 10, 'https://www.gutenberg.org/ebooks/22205', 'en', 61), +(51530, 'The Great Round World and What Is Going On In It, Vol. 1, No. 49, October 14, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-06-09', 16, 'https://www.gutenberg.org/ebooks/16030', 'en', 1), +(51531, 'History of Friedrich II of Prussia — Volume 15', 'Carlyle, Thomas', '2008-06-16', 24, 'https://www.gutenberg.org/ebooks/2115', 'en', 3120), +(51532, 'The Preparation of Illustrations for Reports of the United States Geological Survey\nWith Brief Descriptions of Processes of Reproduction', 'Ridgway, John L.', '2013-07-16', 19, 'https://www.gutenberg.org/ebooks/43232', 'en', 2020), +(51533, 'El Sabor de la Venganza', 'Baroja, Pío', '2017-03-06', 24, 'https://www.gutenberg.org/ebooks/54285', 'es', 731), +(51534, 'Left Tackle Thayer', 'Barbour, Ralph Henry', '2004-09-27', 14, 'https://www.gutenberg.org/ebooks/13542', 'en', 1708), +(51535, 'Lafayette', 'Crow, Martha Foote', '2009-01-11', 19, 'https://www.gutenberg.org/ebooks/27777', 'en', 17358), +(51536, 'Scientific American Supplement, No. 492, June 6, 1885', 'Various', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12490', 'en', 210), +(51537, 'The Irish Penny Journal, Vol. 1 No. 46, May 15, 1841', 'Various', '2017-08-14', 2, 'https://www.gutenberg.org/ebooks/55357', 'en', 81), +(51538, 'The Red Book of Heroes', 'Lang, Mrs.', '2006-08-19', 33, 'https://www.gutenberg.org/ebooks/19078', 'en', 8676), +(51539, 'The Garden of Eden: Stories from the first nine books of the Old Testament', 'Hodges, George', '2015-08-15', 17, 'https://www.gutenberg.org/ebooks/49708', 'en', 17359), +(51540, 'The Very Secret Agent', 'Wolf, Mari', '2010-03-12', 27, 'https://www.gutenberg.org/ebooks/31612', 'en', 67), +(51541, 'Encyclopaedia Britannica, 11th Edition, \"Convention\" to \"Copyright\"\r\nVolume 7, Slice 3', 'Various', '2010-04-22', 27, 'https://www.gutenberg.org/ebooks/32097', 'en', 1081), +(51542, 'Consignment', 'Nourse, Alan Edward', '2012-12-05', 42, 'https://www.gutenberg.org/ebooks/41565', 'en', 26), +(51543, 'Poems (1828)', 'Gent, Thomas', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11215', 'en', 8), +(51544, 'Humanistic Nursing', 'Paterson, Josephine G.', '2008-04-08', 132, 'https://www.gutenberg.org/ebooks/25020', 'en', 5865), +(51545, 'Rambles in Istria, Dalmatia and Montenegro', 'R. H. R.', '2018-06-25', 8, 'https://www.gutenberg.org/ebooks/57400', 'en', 17360), +(51546, 'Come Out of the Kitchen! A Romance', 'Miller, Alice Duer', '2010-07-13', 66, 'https://www.gutenberg.org/ebooks/33145', 'en', 1439), +(51547, 'Troilus and Cressida', 'Shakespeare, William', '1999-06-01', 89, 'https://www.gutenberg.org/ebooks/1790', 'en', 10826), +(51548, 'The Structure and Life-history of the Cockroach (Periplaneta orientalis)\r\nAn Introduction to the Study of Insects', 'Miall, L. C. (Louis Compton)', '2016-05-28', 10, 'https://www.gutenberg.org/ebooks/52172', 'en', 17361), +(51549, 'Sunshine Bill', 'Kingston, William Henry Giles', '2007-05-15', 12, 'https://www.gutenberg.org/ebooks/21480', 'en', 3532), +(51550, 'Le mari de madame de Solange', 'Souvestre, Émile', '2011-06-15', 17, 'https://www.gutenberg.org/ebooks/36437', 'fr', 2216), +(51551, 'Le Cathécumène, traduit du chinois', NULL, '2013-10-23', 24, 'https://www.gutenberg.org/ebooks/44017', 'fr', 11699), +(51552, 'Rhyme and Reason; a Compilation of Verses, Rhymes and Senses', 'Dom', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/5330', 'en', 8), +(51553, 'Roumanian Fairy Tales', NULL, '2007-02-10', 69, 'https://www.gutenberg.org/ebooks/20552', 'en', 17362), +(51554, 'Punch, or the London Charivari, Volume 152, February 21, 1917', 'Various', '2005-01-23', 8, 'https://www.gutenberg.org/ebooks/14767', 'en', 134), +(51555, 'Miscellaneous Aphorisms; The Soul of Man', 'Wilde, Oscar', '2010-09-22', 89, 'https://www.gutenberg.org/ebooks/33979', 'en', 3769), +(51556, 'Harper\'s Young People, July 4, 1882\nAn Illustrated Weekly', 'Various', '2018-12-10', 1, 'https://www.gutenberg.org/ebooks/58448', 'en', 479), +(51557, 'Grimm\'s Fairy Stories', 'Grimm, Wilhelm', '2004-02-01', 433, 'https://www.gutenberg.org/ebooks/11027', 'en', 1007), +(51558, 'A Glossary of Provincial Words & Phrases in use in Somersetshire', 'Williams, Wadham Pigott', '2008-04-28', 29, 'https://www.gutenberg.org/ebooks/25212', 'en', 17363), +(51559, 'Roger the Bold: A Tale of the Conquest of Mexico', 'Brereton, F. S. (Frederick Sadleir)', '2013-01-02', 9, 'https://www.gutenberg.org/ebooks/41757', 'en', 17364), +(51560, 'Timár Virgil fia', 'Babits, Mihály', '2012-09-06', 13, 'https://www.gutenberg.org/ebooks/40685', 'hu', 189), +(51561, 'A architectura religiosa na Edade Média', 'Fuschini, Augusto', '2010-08-08', 23, 'https://www.gutenberg.org/ebooks/33377', 'pt', 17365), +(51562, 'The Legend of the Lincoln Imp', 'Kesson, H. J.', '2018-08-03', 12, 'https://www.gutenberg.org/ebooks/57632', 'en', 13968), +(51563, 'The Sirdar\'s Oath: A Tale of the North-West Frontier', 'Mitford, Bertram', '2011-07-03', 72, 'https://www.gutenberg.org/ebooks/36605', 'en', 1736), +(51564, 'The Salving of the \"Fusi Yama\": A Post-War Story of the Sea', 'Westerman, Percy F. (Percy Francis)', '2016-06-15', 21, 'https://www.gutenberg.org/ebooks/52340', 'en', 17366), +(51565, 'Democracy and Social Ethics', 'Addams, Jane', '2005-03-28', 66, 'https://www.gutenberg.org/ebooks/15487', 'en', 1347), +(51566, 'Iloisia juttuja II', 'Jääskeläinen, Kaapro', '2007-03-07', 4, 'https://www.gutenberg.org/ebooks/20760', 'fi', 61), +(51567, 'William Lloyd Garrison, the Abolitionist', 'Grimké, Archibald Henry', '2005-01-01', 25, 'https://www.gutenberg.org/ebooks/14555', 'en', 17367), +(51568, 'Sagenbuch des Erzgebirges', 'Köhler, Johann August Ernst', '2016-10-16', 5, 'https://www.gutenberg.org/ebooks/53292', 'de', 17368), +(51569, 'The Glory of the Coming\r\nWhat Mine Eyes Have Seen of Americans in Action in This Year of Grace and Allied Endeavor', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2013-11-18', 25, 'https://www.gutenberg.org/ebooks/44225', 'en', 449), +(51570, 'The Path of a Star', 'Duncan, Sara Jeannette', '2006-06-06', 19, 'https://www.gutenberg.org/ebooks/5102', 'en', 2244), +(51571, 'The Death of Wallenstein', 'Schiller, Friedrich', '2004-10-01', 36, 'https://www.gutenberg.org/ebooks/6787', 'en', 2341), +(51572, 'Wilson\'s Tales of the Borders and of Scotland, Volume 15', NULL, '2010-10-27', 8, 'https://www.gutenberg.org/ebooks/34152', 'en', 3672), +(51573, 'The Americans in the Great War; v. 3. The Meuse-Argonne Battlefields\r\n(Montfaucon, Romagne, Saint-Menehould)', NULL, '2015-11-09', 12, 'https://www.gutenberg.org/ebooks/50417', 'en', 15048), +(51574, 'The Life, Public Services and Select Speeches of Rutherford B. Hayes', 'Howard, J. Q. (James Quay)', '2007-07-10', 17, 'https://www.gutenberg.org/ebooks/22037', 'en', 17369), +(51575, 'A Voyage to Cacklogallinia\nWith a Description of the Religion, Policy, Customs and Manners of That Country', 'Brunt, Samuel', '2005-07-04', 38, 'https://www.gutenberg.org/ebooks/16202', 'en', 467), +(51576, 'Studies in the History and Method of Science, vol. 1 (of 2)', NULL, '2014-08-12', 23, 'https://www.gutenberg.org/ebooks/46572', 'en', 8175), +(51577, 'Kenelm Chillingly — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7655', 'en', 137), +(51578, 'The Coming of the White Men: Stories of How Our Country Was Discovered', 'Wade, Mary Hazelton Blanchard', '2017-11-13', 26, 'https://www.gutenberg.org/ebooks/55959', 'en', 17370), +(51579, 'A Hero of Ticonderoga', 'Robinson, Rowland Evans', '2011-01-25', 5, 'https://www.gutenberg.org/ebooks/35080', 'en', 17371), +(51580, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 12, No. 33, December, 1873', 'Various', '2004-10-17', 17, 'https://www.gutenberg.org/ebooks/13770', 'en', 210), +(51581, 'Diary Written in the Provincial Lunatic Asylum', 'Pengilly, Mary Huestis', '2006-05-16', 51, 'https://www.gutenberg.org/ebooks/18398', 'en', 17372), +(51582, 'Maldita Felicidade', 'Costa, Alexandre da', '2008-12-16', 10, 'https://www.gutenberg.org/ebooks/27545', 'pt', 3231), +(51583, 'Some Short Stories [by Henry James]', 'James, Henry', '2000-09-01', 92, 'https://www.gutenberg.org/ebooks/2327', 'en', 179), +(51584, 'Mennyt', 'Alkio, Santeri', '2013-06-21', 4, 'https://www.gutenberg.org/ebooks/43000', 'fi', 61), +(51585, 'La Sorcière: The Witch of the Middle Ages', 'Michelet, Jules', '2010-02-27', 67, 'https://www.gutenberg.org/ebooks/31420', 'en', 17373), +(51586, 'Bertie and the Gardeners; or, The Way to be Happy', 'Leslie, Madeline', '2008-08-31', 14, 'https://www.gutenberg.org/ebooks/26497', 'en', 31), +(51587, 'The History Teacher\'s Magazine, Vol. I, No. 3, November, 1909', 'Various', '2017-07-21', 2, 'https://www.gutenberg.org/ebooks/55165', 'en', 7693), +(51588, 'Alice Cogswell Bemis: A Sketch by a Friend', 'Anonymous', '2010-09-12', 13, 'https://www.gutenberg.org/ebooks/33713', 'en', 17374), +(51589, 'Targallyak', 'Jókai, Mór', '2018-06-02', 6, 'https://www.gutenberg.org/ebooks/57256', 'hu', 234), +(51590, 'A Lie Never Justifiable: A Study in Ethics', 'Trumbull, H. Clay (Henry Clay)', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/10591', 'en', 8561), +(51591, 'Punch, or the London Charivari, Volume 153, November 28, 1917', 'Various', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11443', 'en', 134), +(51592, 'Investigation of Communist activities in Seattle, Wash., Area, Hearings, Part 2', 'United States. Congress. House. Committee on Un-American Activities', '2018-01-16', 6, 'https://www.gutenberg.org/ebooks/56384', 'en', 7336), +(51593, 'Punch, or the London Charivari, Vol. 146, June 3, 1914', 'Various', '2008-06-02', 22, 'https://www.gutenberg.org/ebooks/25676', 'en', 134), +(51594, 'The Mardi Gras Mystery', 'Bedford-Jones, H. (Henry)', '2012-03-22', 46, 'https://www.gutenberg.org/ebooks/39229', 'en', 4475), +(51595, 'The Awakening of the Desert', 'Birge, Julius Charles', '2012-11-09', 17, 'https://www.gutenberg.org/ebooks/41333', 'en', 17375), +(51596, 'A Trip to Paris in July and August 1792', 'Twiss, Richard', '2007-01-07', 32, 'https://www.gutenberg.org/ebooks/20304', 'en', 17376), +(51597, 'The Bay State Monthly — Volume 2, No. 4, January, 1885', 'Various', '2004-11-23', 17, 'https://www.gutenberg.org/ebooks/14131', 'en', 1593), +(51598, 'Boer War Lyrics', 'Selmer, Louis', '2014-01-10', 15, 'https://www.gutenberg.org/ebooks/44641', 'en', 17377), +(51599, 'Barbara Blomberg — Volume 06', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5566', 'en', 803), +(51600, 'The Chain of Life in Geological Time\nA Sketch of the Origin and Succession of Animals and Plants', 'Dawson, John William, Sir', '2011-05-30', 20, 'https://www.gutenberg.org/ebooks/36261', 'en', 339), +(51601, 'Momus Triumphans: or, the Plagiaries of the English Stage (1688[1687])', 'Langbaine, Gerard', '2014-05-28', 7, 'https://www.gutenberg.org/ebooks/45793', 'en', 17378), +(51602, 'Glass Manufacture', 'Rosenhain, Walter', '2016-08-05', 12, 'https://www.gutenberg.org/ebooks/52724', 'en', 5156), +(51603, 'Spain, v. 1 (of 2)', 'De Amicis, Edmondo', '2015-09-14', 18, 'https://www.gutenberg.org/ebooks/49962', 'en', 1514), +(51604, 'How to Live on 24 Hours a Day', 'Bennett, Arnold', '2007-09-01', 22, 'https://www.gutenberg.org/ebooks/22453', 'en', 17379), +(51605, 'Carette of Sark', 'Oxenham, John', '2005-09-06', 22, 'https://www.gutenberg.org/ebooks/16666', 'en', 3922), +(51606, 'The Tempers', 'Williams, William Carlos', '2010-04-04', 37, 'https://www.gutenberg.org/ebooks/31878', 'en', 178), +(51607, 'Canada in Flanders, Volume III', 'Roberts, Charles G. D., Sir', '2014-06-27', 21, 'https://www.gutenberg.org/ebooks/46116', 'en', 3083), +(51608, 'Light O\' the Morning: The Story of an Irish Girl', 'Meade, L. T.', '2005-01-01', 17, 'https://www.gutenberg.org/ebooks/7231', 'en', 17380), +(51609, 'Strange Stories of Colonial Days', 'Various', '2010-12-01', 25, 'https://www.gutenberg.org/ebooks/34536', 'en', 179), +(51610, 'The Age of Stonehenge', 'Duke, Edward', '2015-09-29', 87, 'https://www.gutenberg.org/ebooks/50073', 'en', 11631), +(51611, 'Opportunities in Aviation', 'Sweetser, Arthur', '2007-11-21', 16, 'https://www.gutenberg.org/ebooks/23581', 'en', 927), +(51612, 'Memoirs to Illustrate the History of My Time, Volume 1', 'Guizot, François', '2009-02-24', 8, 'https://www.gutenberg.org/ebooks/28169', 'en', 8446), +(51613, 'Discours par Maximilien Robespierre — 17 Avril 1792-27 Juillet 1794', 'Robespierre, Maximilien', '2009-09-01', 29, 'https://www.gutenberg.org/ebooks/29887', 'fr', 1536), +(51614, 'The Turn of the Road\nA Play in Two Scenes and an Epilogue', 'Mayne, Rutherford', '2010-01-23', 9, 'https://www.gutenberg.org/ebooks/31044', 'en', 14807), +(51615, 'The World English Bible (WEB): 1 Thessalonians', 'Anonymous', '2005-06-01', 19, 'https://www.gutenberg.org/ebooks/8279', 'en', 5464), +(51616, 'Little Wars; a game for boys from twelve years of age to one hundred and fifty and for that more intelligent sort of girl who likes boys\' games and books.', 'Wells, H. G. (Herbert George)', '2003-01-01', 310, 'https://www.gutenberg.org/ebooks/3691', 'en', 11300), +(51617, 'Éducation et sociologie', 'Durkheim, Émile', '2017-09-07', 34, 'https://www.gutenberg.org/ebooks/55501', 'fr', 17381), +(51618, 'Barford Abbey, a Novel: In a Series of Letters', 'Gunning, Mrs. (Susannah)', '2004-08-28', 28, 'https://www.gutenberg.org/ebooks/13314', 'en', 3189), +(51619, 'An Outcast of the Islands', 'Conrad, Joseph', '2006-01-09', 112, 'https://www.gutenberg.org/ebooks/638', 'en', 1061), +(51620, 'Mi tio y mi cura', 'La Brète, Jean de', '2008-11-02', 15, 'https://www.gutenberg.org/ebooks/27121', 'es', 4966), +(51621, 'L\'Illustration, No. 3733, 12-19 Septembre 1914', 'Various', '2009-10-07', 14, 'https://www.gutenberg.org/ebooks/30196', 'fr', 150), +(51622, 'Massacres of the South (1551-1815)\r\nCelebrated Crimes', 'Dumas, Alexandre', '2004-09-22', 72, 'https://www.gutenberg.org/ebooks/2743', 'en', 5050), +(51623, 'A Narrative of the Mutiny, on Board the Ship Globe, of Nantucket, in the Pacific Ocean, Jan. 1824\nAnd the journal of a residence of two years on the Mulgrave\nIslands; with observations on the manners and customs of\nthe inhabitants', 'Lay, William', '2009-05-24', 28, 'https://www.gutenberg.org/ebooks/28955', 'en', 17382), +(51624, 'Lay Help the Church\'s Present Need\nA Paper read at St. Mary\'s Schools, West Brompton', 'Baird, William', '2013-08-14', 2, 'https://www.gutenberg.org/ebooks/43464', 'en', 17383), +(51625, 'The Catholic World, Vol. 11, April, 1870 to September, 1870', 'Various', '2014-07-19', 45, 'https://www.gutenberg.org/ebooks/46324', 'en', 96), +(51626, 'The Antiquary — Volume 01', 'Scott, Walter', '2004-08-16', 20, 'https://www.gutenberg.org/ebooks/7003', 'en', 4905), +(51627, 'Clarimonde', 'Gautier, Théophile', '2007-09-18', 85, 'https://www.gutenberg.org/ebooks/22661', 'en', 561), +(51628, 'Bloemlezing uit Guido Gezelle\'s Gedichten', 'Gezelle, Guido', '2009-07-01', 13, 'https://www.gutenberg.org/ebooks/29289', 'nl', 8), +(51629, 'Toadstools, mushrooms, fungi, edible and poisonous; one thousand American fungi\r\nHow to select and cook the edible; how to distinguish and avoid the poisonous, with full botanic descriptions. Toadstool poisons and their treatment, instructions to students, recipes for cooking, etc., etc.', 'Macadam, Robert K.', '2016-03-08', 27, 'https://www.gutenberg.org/ebooks/51393', 'en', 7633), +(51630, 'The Upas Tree: A Christmas Story for all the Year', 'Barclay, Florence L. (Florence Louisa)', '2005-08-06', 18, 'https://www.gutenberg.org/ebooks/16454', 'en', 585), +(51631, 'Geoffrey Strong', 'Richards, Laura Elizabeth Howe', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8877', 'en', 1563), +(51632, 'Kertomus maaseudulta', 'Nissinen, Alli', '2006-01-23', 6, 'https://www.gutenberg.org/ebooks/17586', 'fi', 61), +(51633, 'Mariquita, och andra historier från verldens utkanter', 'Zilliacus, Konni', '2015-10-17', 15, 'https://www.gutenberg.org/ebooks/50241', 'sv', 61), +(51634, 'British Goblins: Welsh Folk-lore, Fairy Mythology, Legends and Traditions', 'Sikes, Wirt', '2010-12-20', 157, 'https://www.gutenberg.org/ebooks/34704', 'en', 2844), +(51635, 'Feu de joie', 'Aragon', '2017-10-12', 53, 'https://www.gutenberg.org/ebooks/55733', 'fr', 3718), +(51636, 'Notes and Queries, Number 169, January 22, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 4, 'https://www.gutenberg.org/ebooks/42784', 'en', 105), +(51637, 'Heinrich von Kleist und die Kantische Philosophie', 'Cassirer, Ernst', '2010-02-15', 21, 'https://www.gutenberg.org/ebooks/31276', 'de', 17384), +(51638, 'Monism as Connecting Religion and Science\nA Man of Science', 'Haeckel, Ernst', '2005-10-01', 25, 'https://www.gutenberg.org/ebooks/9199', 'en', 4549), +(51639, 'Peace', 'Aristophanes', '2001-04-01', 58, 'https://www.gutenberg.org/ebooks/2571', 'en', 17385), +(51640, 'The Works of Samuel Johnson, LL.D. in Nine Volumes, Volume 02\r\nThe Rambler, Volume I', 'Johnson, Samuel', '2013-09-06', 43, 'https://www.gutenberg.org/ebooks/43656', 'en', 5416), +(51641, 'The King\'s Daughter and Other Stories for Girls', 'Various', '2004-08-06', 35, 'https://www.gutenberg.org/ebooks/13126', 'en', 1679), +(51642, 'Le Japon', 'Montblanc, Charles, comte de', '2008-11-22', 21, 'https://www.gutenberg.org/ebooks/27313', 'fr', 4331), +(51643, 'History of the Thirty-Ninth Congress of the United States', 'Barnes, William Horatio', '2008-02-13', 13, 'https://www.gutenberg.org/ebooks/24596', 'en', 4129), +(51644, 'Kirsti: Sielunkuvaus', 'Kallas, Aino Krohn', '2018-04-28', 3, 'https://www.gutenberg.org/ebooks/57064', 'fi', 175), +(51645, 'The Heavens Above: A Popular Handbook of Astronomy', 'Gillet, J. A. (Joseph Anthony)', '2019-02-02', 11, 'https://www.gutenberg.org/ebooks/58810', 'en', 1683), +(51646, 'Little Frankie at His Plays', 'Leslie, Madeline', '2010-08-24', 5, 'https://www.gutenberg.org/ebooks/33521', 'en', 1817), +(51647, 'Histoire de la Littérature Anglaise (Volume 3 de 5)', 'Taine, Hippolyte', '2012-10-18', 11, 'https://www.gutenberg.org/ebooks/41101', 'fr', 1694), +(51648, 'The Rudder Grangers Abroad and Other Stories', 'Stockton, Frank Richard', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11671', 'en', 770), +(51649, 'Dolly and I: A Story for Little Folks', 'Optic, Oliver', '2008-05-12', 13, 'https://www.gutenberg.org/ebooks/25444', 'en', 5588), +(51650, 'L\'Illustration, No. 0057, 30 Mars 1844', 'Various', '2013-12-20', 3, 'https://www.gutenberg.org/ebooks/44473', 'fr', 150), +(51651, 'Lysbeth, a Tale of the Dutch', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 48, 'https://www.gutenberg.org/ebooks/5754', 'en', 17386), +(51652, 'The War-Workers', 'Delafield, E. M.', '2011-08-23', 18, 'https://www.gutenberg.org/ebooks/37181', 'en', 579), +(51653, 'West Irish Folk-Tales and Romances', NULL, '2018-09-06', 19, 'https://www.gutenberg.org/ebooks/57858', 'en', 8056), +(51654, 'The Seventeenth Highland Light Infantry (Glasgow Chamber of Commerce Battalion)\r\nRecord of War Service, 1914-1918', NULL, '2006-12-19', 22, 'https://www.gutenberg.org/ebooks/20136', 'en', 17387), +(51655, 'Queed: A Novel', 'Harrison, Henry Sydnor', '2004-12-08', 28, 'https://www.gutenberg.org/ebooks/14303', 'en', 61), +(51656, 'The Conduct of Life', 'Emerson, Ralph Waldo', '2012-05-27', 170, 'https://www.gutenberg.org/ebooks/39827', 'en', 740), +(51657, 'San Antonio: City of Missions', 'Aniol, Claude B.', '2016-07-07', 7, 'https://www.gutenberg.org/ebooks/52516', 'en', 17388), +(51658, 'Underground: Hacking, madness and obsession on the electronic frontier', 'Dreyfus, Suelette', '2003-11-01', 140, 'https://www.gutenberg.org/ebooks/4686', 'en', 17389), +(51659, 'Little Jack Rabbit and Chippy Chipmunk', 'Cory, David', '2011-05-07', 59, 'https://www.gutenberg.org/ebooks/36053', 'en', 1045), +(51660, 'Explorations in Australia\r\n1.-Explorations in search of Dr. Leichardt and party. 2.-From Perth to Adelaide, around the great Australian bight. 3.-From Champion Bay, across the desert to the telegraph and to Adelaide. With an appendix on the condition of Western Australia.', 'Forrest, John Forrest, Baron', '2004-08-26', 40, 'https://www.gutenberg.org/ebooks/9958', 'en', 2471), +(51661, '\'Lena Rivers', 'Holmes, Mary Jane', '2004-07-07', 15, 'https://www.gutenberg.org/ebooks/12835', 'en', 1028), +(51662, 'People of Position', 'Hyatt, Stanley Portal', '2009-06-30', 11, 'https://www.gutenberg.org/ebooks/29274', 'en', 61), +(51663, 'Oesterreich\'s Betheiligung am Welthandel: Betrachtungen und Vorschläge', 'Revoltella, Pasquale', '2015-02-12', 22, 'https://www.gutenberg.org/ebooks/48243', 'de', 17390), +(51664, 'The Three Cities Trilogy: Paris, Volume 1', 'Zola, Émile', '2005-10-01', 12, 'https://www.gutenberg.org/ebooks/9164', 'en', 3319), +(51665, 'Contos e Lendas', 'Silva, Luiz Augusto Rebello da', '2009-10-29', 19, 'https://www.gutenberg.org/ebooks/30359', 'pt', 179), +(51666, 'The Child at Home: The Principles of Filial Duty, Familiarly Illustrated', 'Abbott, John S. C. (John Stevens Cabot)', '2006-06-07', 60, 'https://www.gutenberg.org/ebooks/18533', 'en', 17391), +(51667, 'Life of Her Most Gracious Majesty the Queen — Volume 1', 'Tytler, Sarah', '2004-11-01', 24, 'https://www.gutenberg.org/ebooks/6910', 'en', 7002), +(51668, 'Jean Jacques Rousseau: Een beeld van zijn leven en werken', 'Roland Holst-Van der Schalk, Henriette', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/12009', 'nl', 1616), +(51669, 'True Stories of the Great War, Volume 4 (of 6)\r\nTales of Adventure--Heroic Deeds--Exploits Told by the Soldiers, Officers, Nurses, Diplomats, Eye Witnesses', NULL, '2015-07-07', 14, 'https://www.gutenberg.org/ebooks/49391', 'en', 449), +(51670, 'Notes and Queries, Number 138, June 19, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-05-24', 20, 'https://www.gutenberg.org/ebooks/42779', 'en', 105), +(51671, 'L\'automne d\'une femme', 'Prévost, Marcel', '2007-06-13', 7, 'https://www.gutenberg.org/ebooks/21825', 'fr', 61), +(51672, 'A Cabinet Secret', 'Boothby, Guy', '2011-07-29', 22, 'https://www.gutenberg.org/ebooks/36892', 'en', 713), +(51673, 'Rübezahl\r\nNeue Sammlung der schönsten Sagen und Märchen von dem Berggeiste im Riesengebirge', 'Koch, Rosalie', '2011-11-06', 41, 'https://www.gutenberg.org/ebooks/37940', 'de', 13167), +(51674, 'Miss Crespigny', 'Burnett, Frances Hodgson', '2018-05-06', 31, 'https://www.gutenberg.org/ebooks/57099', 'en', 50), +(51675, 'The Spirit of Place, and Other Essays', 'Meynell, Alice', '1998-05-01', 34, 'https://www.gutenberg.org/ebooks/1309', 'en', 472), +(51676, 'Beyond', 'Hubbard, Henry Seward', '2011-11-25', 15, 'https://www.gutenberg.org/ebooks/38134', 'en', 6363), +(51677, 'At the Deathbed of Darwinism: A Series of Papers', 'Dennert, Eberhard', '2007-04-10', 36, 'https://www.gutenberg.org/ebooks/21019', 'en', 4602), +(51678, 'Harper\'s Young People, August 8, 1882\nAn Illustrated Weekly', 'Various', '2019-03-20', 3, 'https://www.gutenberg.org/ebooks/59103', 'en', 479), +(51679, 'Oudewater en omtrek, Geologisch, Mythologisch en Geschiedkundig Geschetst', 'Zijll, Willem Cornelis van', '2018-04-13', 8, 'https://www.gutenberg.org/ebooks/56977', 'nl', 17392), +(51680, 'Les voyageurs du XIXe siècle', 'Verne, Jules', '2016-11-03', 29, 'https://www.gutenberg.org/ebooks/53439', 'fr', 2320), +(51681, 'Kyökissä: Huvinäytelmä 1:ssä näytöksessä', 'Benedix, Roderich', '2012-02-17', 1, 'https://www.gutenberg.org/ebooks/38908', 'fi', 9839), +(51682, 'The Swastika, the Earliest Known Symbol, and Its Migration\r\nWith Observations on the Migration of Certain Industries in Prehistoric Times', 'Wilson, Thomas', '2012-09-21', 114, 'https://www.gutenberg.org/ebooks/40812', 'en', 10475), +(51683, 'Spain from Within', 'Shaw, Rafael', '2018-01-15', 7, 'https://www.gutenberg.org/ebooks/56379', 'en', 17393), +(51684, 'The Faithful Steward\r\nOr, Systematic Beneficence an Essential of Christian Character', 'Clark, Sereno D. (Sereno Dickenson)', '2005-05-12', 5, 'https://www.gutenberg.org/ebooks/15822', 'en', 16933), +(51685, 'A Galahad of the Creeks; The Widow Lamport', 'Levett Yeats, S. (Sidney)', '2011-12-14', 13, 'https://www.gutenberg.org/ebooks/38306', 'en', 1228), +(51686, 'The Kingdom of Heaven; What is it?', 'Burbidge, Edward', '2008-03-05', 7, 'https://www.gutenberg.org/ebooks/24759', 'en', 17394), +(51687, 'The Adventures of Harry Richmond — Volume 6', 'Meredith, George', '2003-09-01', 17, 'https://www.gutenberg.org/ebooks/4449', 'en', 2588), +(51688, 'The Origin and Growth of the Healing Art\nA Popular History of Medicine in All Ages and Countries', 'Berdoe, Edward', '2019-04-22', 15, 'https://www.gutenberg.org/ebooks/59331', 'en', 8175), +(51689, 'Rowdy of the Cross L', 'Bower, B. M.', '1999-09-01', 23, 'https://www.gutenberg.org/ebooks/1907', 'en', 2418), +(51690, 'Botany for Ladies\r\nor, A Popular Introduction to the Natural System of Plants, According to the Classification of De Candolle.', 'Loudon, Mrs. (Jane)', '2014-10-04', 64, 'https://www.gutenberg.org/ebooks/47039', 'en', 12555), +(51691, 'Notes and Queries, Number 231, April 1, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-02-25', 15, 'https://www.gutenberg.org/ebooks/28194', 'en', 105), +(51692, 'The Mystic Will\nA Method of Developing and Strengthening the Faculties of the Mind, through the Awakened Will, by a Simple, Scientific Process Possible to Any Person of Ordinary Intelligence', 'Leland, Charles Godfrey', '2006-02-10', 71, 'https://www.gutenberg.org/ebooks/17749', 'en', 5184), +(51693, 'Adequate Preparation for the Teacher of Biological Sciences in Secondary Schools', 'McDonald, J. Daley (James Daley)', '2010-01-13', 9, 'https://www.gutenberg.org/ebooks/30957', 'en', 5564), +(51694, 'Bible Myths and their Parallels in other Religions\r\nBeing a Comparison of the Old and New Testament Myths and Miracles with those of the Heathen Nations of Antiquity Considering also their Origin and Meaning', 'Doane, T. W. (Thomas William)', '2010-04-04', 98, 'https://www.gutenberg.org/ebooks/31885', 'en', 75), +(51695, 'The Heads of Apex', 'Weiss, George Henry', '2009-06-05', 59, 'https://www.gutenberg.org/ebooks/29046', 'en', 26), +(51696, 'Wood and Forest', 'Noyes, William', '2011-02-27', 14, 'https://www.gutenberg.org/ebooks/35419', 'en', 8388), +(51697, 'Marsk Stig\'s Daughters, and Other Songs and Ballads', NULL, '2008-10-07', 9, 'https://www.gutenberg.org/ebooks/26832', 'en', 54), +(51698, 'The Knickerbocker, Vol. 22, No. 5, November 1843', 'Various', '2014-12-29', 10, 'https://www.gutenberg.org/ebooks/47805', 'en', 18), +(51699, 'Choice Readings for the Home Circle', NULL, '2006-06-27', 17, 'https://www.gutenberg.org/ebooks/18701', 'en', 6957), +(51700, 'Svarta fanor: Sedeskildringar från sekelskiftet', 'Strindberg, August', '2015-01-25', 19, 'https://www.gutenberg.org/ebooks/48071', 'sv', 420), +(51701, 'Flora Adair; or, Love Works Wonders. Vol. 2 (of 2)', 'Donelan, A. M.', '2013-08-18', 7, 'https://www.gutenberg.org/ebooks/43499', 'en', 61), +(51702, '\'Twixt Land and Sea', 'Conrad, Joseph', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9356', 'en', 61), +(51703, 'The World English Bible (WEB): Philemon', 'Anonymous', '2005-06-01', 14, 'https://www.gutenberg.org/ebooks/8284', 'en', 9858), +(51704, 'The Ancient Stone Implements, Weapons and Ornaments, of Great Britain\nSecond Edition, Revised', 'Evans, John', '2016-05-02', 15, 'https://www.gutenberg.org/ebooks/51960', 'en', 17395), +(51705, 'How We Are Fed: A Geographical Reader', 'Chamberlain, James Franklin', '2012-02-05', 64, 'https://www.gutenberg.org/ebooks/38762', 'en', 11199), +(51706, 'Notes and Queries, Vol. V, Number 117, January 24, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-09-05', 22, 'https://www.gutenberg.org/ebooks/40678', 'en', 105), +(51707, 'A Treatise of Daunses, Wherin It is Shewed, That They Are as It Were Accessories and Dependants (Or Thynges Annexed) to Whoredome\r\nWhere Also by the Way is Touched and Proued, That Playes Are Ioyned and Knit Togeather in a Rancke or Rowe with Them (1581)', 'Anonymous', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10108', 'en', 17396), +(51708, 'The Rise of the Dutch Republic — Complete (1555-66)', 'Motley, John Lothrop', '2004-11-07', 22, 'https://www.gutenberg.org/ebooks/4811', 'en', 3372), +(51709, 'Joseph K. F. Mansfield, Brigadier General of the U.S. Army\r\nA Narrative of Events Connected with His Mortal Wounding at Antietam, Sharpsburg, Maryland, September 17, 1862', 'Gould, John Mead', '2010-05-05', 4, 'https://www.gutenberg.org/ebooks/32258', 'en', 17397), +(51710, 'Index of the Project Gutenberg Works of Joel Chandler Harris', 'Harris, Joel Chandler', '2019-01-13', 13, 'https://www.gutenberg.org/ebooks/58687', 'en', 198), +(51711, 'Punchinello, Volume 2, No. 39, December 24, 1870.', 'Various', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/10934', 'en', 372), +(51712, 'History of the Conquest of Mexico; vol. 1/4', 'Prescott, William Hickling', '2019-06-15', 93, 'https://www.gutenberg.org/ebooks/59755', 'en', 1382), +(51713, 'Brazilian Gold Mine Mystery: A Biff Brewster Mystery Adventure', 'Adams, Andy', '2016-03-23', 22, 'https://www.gutenberg.org/ebooks/51538', 'en', 167), +(51714, 'The Meaning of Evolution', 'Schmucker, Samuel Christian', '2009-07-16', 20, 'https://www.gutenberg.org/ebooks/29422', 'en', 1315), +(51715, 'Parenthood and Race Culture: An Outline of Eugenics', 'Saleeby, C. W. (Caleb Williams)', '2013-06-11', 25, 'https://www.gutenberg.org/ebooks/42913', 'en', 7357), +(51716, 'Vangittuja sieluja: Novelleja', 'Onerva, L.', '2017-06-09', 10, 'https://www.gutenberg.org/ebooks/54876', 'fi', 665), +(51717, 'A Chinese Command: A Story of Adventure in Eastern Seas', 'Collingwood, Harry', '2007-10-20', 6, 'https://www.gutenberg.org/ebooks/23118', 'en', 324), +(51718, 'Mr. Honey\'s Medium Business Dictionary (German-English)', 'Honig, Winfried', '2002-05-01', 21, 'https://www.gutenberg.org/ebooks/3208', 'en', 5219), +(51719, 'Tähtien turvatit 3: Aika- ja luonnekuvaus kuningatar Kristiinan ajoilta', 'Topelius, Zacharias', '2017-07-25', 10, 'https://www.gutenberg.org/ebooks/55198', 'fi', 61), +(51720, 'The Last Laird of MacNab\nAn Episode in the Settlement of MacNab Township, Upper Canada', NULL, '2011-04-12', 12, 'https://www.gutenberg.org/ebooks/35841', 'en', 17398), +(51721, 'De politieke partijen in Nederland en de christelijke coalitie', 'Verschave, Paul', '2011-01-17', 2, 'https://www.gutenberg.org/ebooks/34993', 'nl', 17399), +(51722, 'Az arany szalamandra', 'Donászy, Ferenc', '2006-05-10', 10, 'https://www.gutenberg.org/ebooks/18365', 'hu', 61), +(51723, 'Jenkkejä maailmalla I\nHeidän toivioretkensä Pyhälle Maalle', 'Twain, Mark', '2015-03-05', 64, 'https://www.gutenberg.org/ebooks/48415', 'fi', 885), +(51724, 'Kiddie the Scout', 'Leighton, Robert', '2007-12-19', 11, 'https://www.gutenberg.org/ebooks/23924', 'en', 315), +(51725, 'Barnaby Rudge', 'Dickens, Charles', '2006-01-01', 8, 'https://www.gutenberg.org/ebooks/9732', 'en', 98), +(51726, 'A Modern Cinderella; Or, The Little Old Shoe, and Other Stories', 'Alcott, Louisa May', '2003-03-01', 123, 'https://www.gutenberg.org/ebooks/3806', 'en', 61), +(51727, 'Las Solteronas', 'Mancey, Claude', '2009-08-05', 25, 'https://www.gutenberg.org/ebooks/29610', 'es', 3305); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(51728, 'Captain Blood', 'Sabatini, Rafael', '2004-09-01', 10, 'https://www.gutenberg.org/ebooks/6548', 'en', 1563), +(51729, 'The Prelude to Adventure', 'Walpole, Hugh', '2006-08-20', 11, 'https://www.gutenberg.org/ebooks/19085', 'en', 12433), +(51730, 'Celebrated Travels and Travellers, Part 3.\r\nThe Great Explorers of the Nineteenth Century', 'Verne, Jules', '2008-09-19', 105, 'https://www.gutenberg.org/ebooks/26658', 'en', 7544), +(51731, 'Arbetarens hustru: Skådspel i fem akter', 'Canth, Minna', '2015-04-01', 14, 'https://www.gutenberg.org/ebooks/48627', 'sv', 17400), +(51732, 'Farm Ballads', 'Carleton, Will', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/9500', 'en', 12142), +(51733, 'The Visions of England\nLyrics on leading men and events in English History', 'Palgrave, Francis Turner', '2006-03-05', 13, 'https://www.gutenberg.org/ebooks/17923', 'en', 17401), +(51734, 'Fundación de la ciudad de Buenos-Aires', NULL, '2006-04-12', 38, 'https://www.gutenberg.org/ebooks/18157', 'es', 17402), +(51735, 'Proclamation of the Twelve Apostles of the Church of Jesus Christ of Latter-Day Saints', 'Council of the Twelve Apostles (Church of Jesus Christ of Latter-day Saints)', '2017-03-03', 15, 'https://www.gutenberg.org/ebooks/54278', 'en', 1440), +(51736, 'The Complete Works of Richard Crashaw, Volume II', 'Crashaw, Richard', '2012-01-13', 13, 'https://www.gutenberg.org/ebooks/38550', 'en', 466), +(51737, 'The Apple-Tree Table, and Other Sketches', 'Melville, Herman', '2017-01-01', 97, 'https://www.gutenberg.org/ebooks/53861', 'en', 112), +(51738, 'Bypaths in Dixie: Folk Tales of the South', 'Cocke, Sarah Johnson', '2012-12-10', 18, 'https://www.gutenberg.org/ebooks/41598', 'en', 17403), +(51739, 'Mushroom Town', 'Onions, Oliver', '2012-04-19', 14, 'https://www.gutenberg.org/ebooks/39482', 'en', 17404), +(51740, 'Storia d\'Italia dal 1789 al 1814, tomo IV', 'Botta, Carlo', '2014-06-06', 25, 'https://www.gutenberg.org/ebooks/45904', 'it', 7184), +(51741, 'The Butterflys\' Ball', 'Anonymous', '2011-09-24', 12, 'https://www.gutenberg.org/ebooks/37518', 'en', 1801), +(51742, 'The Man Who Knew', 'Wallace, Edgar', '2008-03-28', 50, 'https://www.gutenberg.org/ebooks/24933', 'en', 128), +(51743, 'The Man from Jericho', 'Litsey, Edwin Carlile', '2010-09-23', 9, 'https://www.gutenberg.org/ebooks/33984', 'en', 3008), +(51744, 'Our Summer Migrants\r\nAn Account of the Migratory Birds Which Pass the Summer in the British Islands.', 'Harting, James Edmund', '2019-05-21', 24, 'https://www.gutenberg.org/ebooks/59567', 'en', 9356), +(51745, 'American Merchant Ships and Sailors', 'Abbot, Willis J. (Willis John)', '2005-04-18', 39, 'https://www.gutenberg.org/ebooks/15648', 'en', 9201), +(51746, 'Lectures on the Science of Language', 'Müller, F. Max (Friedrich Max)', '2010-06-17', 73, 'https://www.gutenberg.org/ebooks/32856', 'en', 6054), +(51747, 'Bubbles from the Brunnens of Nassau\nBy an Old Man.', 'Head, Francis Bond, Sir', '2014-03-15', 17, 'https://www.gutenberg.org/ebooks/45138', 'en', 17405), +(51748, 'Second String', 'Hope, Anthony', '2012-02-09', 68, 'https://www.gutenberg.org/ebooks/38796', 'en', 109), +(51749, 'The History of Don Quixote, Volume 2, Part 34', 'Cervantes Saavedra, Miguel de', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/5937', 'en', 3761), +(51750, 'Whilomville Stories', 'Crane, Stephen', '2012-05-07', 23, 'https://www.gutenberg.org/ebooks/39644', 'en', 112), +(51751, 'It Takes a Thief', 'Miller, Walter M.', '2019-01-11', 28, 'https://www.gutenberg.org/ebooks/58673', 'en', 179), +(51752, 'A Field Book of the Stars', 'Olcott, William Tyler', '2007-03-09', 93, 'https://www.gutenberg.org/ebooks/20769', 'en', 7884), +(51753, 'U.S. Copyright Renewals, 1955 July - December', 'Library of Congress. Copyright Office', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11812', 'en', 4170), +(51754, 'Metsän povessa: Tuokiokuvia 1:ssä näytöksessä', 'Ranta, Raiju', '2016-06-16', 1, 'https://www.gutenberg.org/ebooks/52349', 'fi', 247), +(51755, 'A Madcap Cruise', 'Bates, Oric', '2017-11-12', 6, 'https://www.gutenberg.org/ebooks/55950', 'en', 998), +(51756, 'Curiosités historiques sur Louis XIII, Louis XIV, Louis XV, Mme de Maintenon, Mme de Pompadour, Mme du Barry, etc.', 'Le Roi, J.-A. (Joseph-Adrien)', '2011-01-27', 13, 'https://www.gutenberg.org/ebooks/35089', 'fr', 1870), +(51757, 'A Rose in June', 'Oliphant, Mrs. (Margaret)', '2017-06-10', 19, 'https://www.gutenberg.org/ebooks/54882', 'en', 45), +(51758, 'The Rival Campers Ashore; or, The Mystery of the Mill', 'Smith, Ruel Perley', '2009-04-05', 12, 'https://www.gutenberg.org/ebooks/28504', 'en', 2794), +(51759, 'Lumen', 'Flammarion, Camille', '2013-09-28', 92, 'https://www.gutenberg.org/ebooks/43835', 'en', 67), +(51760, 'Washo Religion', 'Downs, James F.', '2010-02-27', 9, 'https://www.gutenberg.org/ebooks/31429', 'en', 17406), +(51761, 'The Lost World', 'Doyle, Arthur Conan', '2005-08-01', 18, 'https://www.gutenberg.org/ebooks/8614', 'en', 17407), +(51762, 'The Capsina: An Historical Novel', 'Benson, E. F. (Edward Frederic)', '2015-07-27', 14, 'https://www.gutenberg.org/ebooks/49533', 'en', 17408), +(51763, 'Litoral\r\nA Amadeo de Souza Cardoso', 'Almada Negreiros, José de', '2007-09-29', 24, 'https://www.gutenberg.org/ebooks/22802', 'pt', 8), +(51764, 'The Advent of Divine Justice', 'Shoghi, Effendi', '2006-09-15', 14, 'https://www.gutenberg.org/ebooks/19243', 'en', 5666), +(51765, 'The Moravians in Labrador', 'Anonymous', '2006-05-14', 7, 'https://www.gutenberg.org/ebooks/18391', 'en', 17409), +(51766, 'QREAD, Etext Reader for Windows', 'Scavezze, Dan', '1995-04-01', 30, 'https://www.gutenberg.org/ebooks/255', 'en', 17410), +(51767, 'Minkä mitäkin Tyrolista', 'Aho, Juhani', '2004-10-18', 9, 'https://www.gutenberg.org/ebooks/13779', 'fi', 14255), +(51768, 'The Descent of Man and Selection in Relation to Sex, Vol. I', 'Darwin, Charles', '2011-01-15', 53, 'https://www.gutenberg.org/ebooks/34967', 'en', 17411), +(51769, '古詩十九首', 'Xiao, Tong', '2013-06-22', 26, 'https://www.gutenberg.org/ebooks/43009', 'zh', 13001), +(51770, 'I Barbarò: Le lagrime del prossimo. vol. 2', 'Rovetta, Gerolamo', '2014-09-01', 15, 'https://www.gutenberg.org/ebooks/46749', 'it', 1544), +(51771, 'The Lost Lady of Lone', 'Southworth, Emma Dorothy Eliza Nevitte', '2005-06-11', 15, 'https://www.gutenberg.org/ebooks/16039', 'en', 61), +(51772, 'Heart Talks', 'Naylor, Charles Wesley', '2009-05-09', 17, 'https://www.gutenberg.org/ebooks/28736', 'en', 1130), +(51773, 'Four Short Plays', 'Galsworthy, John', '2004-09-26', 26, 'https://www.gutenberg.org/ebooks/2920', 'en', 1088), +(51774, 'Penny Nichols and the Mystery of the Lost Key', 'Clark, Joan', '2010-11-19', 11, 'https://www.gutenberg.org/ebooks/34369', 'en', 751), +(51775, 'The Way of the Wind', 'Norris, Zoé Anderson', '2006-08-17', 16, 'https://www.gutenberg.org/ebooks/19071', 'en', 14260), +(51776, 'Förbannelse över de otrogna!', 'Heller, Frank', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/12499', 'sv', 61), +(51777, 'The Jungle Fugitives: A Tale of Life and Adventure in India\r\nIncluding also Many Stories of American Adventure, Enterprise and Daring', 'Ellis, Edward Sylvester', '2005-10-06', 39, 'https://www.gutenberg.org/ebooks/16805', 'en', 246), +(51778, 'Poems of Paul Verlaine', 'Verlaine, Paul', '2005-07-01', 54, 'https://www.gutenberg.org/ebooks/8426', 'en', 2629), +(51779, 'The Mysteries of Modern London', 'Sims, George R.', '2015-08-14', 19, 'https://www.gutenberg.org/ebooks/49701', 'en', 4685), +(51780, 'The Book of Friendship: A Little Manual of Comradeship', NULL, '2018-06-27', 15, 'https://www.gutenberg.org/ebooks/57409', 'en', 2215), +(51781, '\"Ask Mamma\"; or, The Richest Commoner In England', 'Surtees, Robert Smith', '2014-02-02', 67, 'https://www.gutenberg.org/ebooks/44822', 'en', 17412), +(51782, 'Christmas at McCarthy\'s', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2017-01-05', 7, 'https://www.gutenberg.org/ebooks/53895', 'en', 3459), +(51783, 'Cymbeline', 'Shakespeare, William', '1999-06-01', 42, 'https://www.gutenberg.org/ebooks/1799', 'en', 2356), +(51784, 'Πολιτεία, Τόμος 1', 'Plato', '2012-04-18', 81, 'https://www.gutenberg.org/ebooks/39476', 'el', 1828), +(51785, 'Dolæus upon the cure of the gout by milk-diet\nTo which is prefixed, an essay upon diet', 'Doläus, Johann', '2016-08-31', 3, 'https://www.gutenberg.org/ebooks/52947', 'en', 17413), +(51786, 'Sir Walter Ralegh: A Biography', 'Stebbing, W. (William)', '2008-04-10', 24, 'https://www.gutenberg.org/ebooks/25029', 'en', 1198), +(51787, 'Peter Schlemihl', 'Chamisso, Adelbert von', '2004-03-01', 50, 'https://www.gutenberg.org/ebooks/5339', 'en', 1141), +(51788, 'Grania, The Story of an Island; vol. 1/2', 'Lawless, Emily', '2018-12-09', 3, 'https://www.gutenberg.org/ebooks/58441', 'en', 669), +(51789, 'The Raid of The Guerilla, and Other Stories', 'Murfree, Mary Noailles', '2010-09-23', 48, 'https://www.gutenberg.org/ebooks/33970', 'en', 4872), +(51790, 'The Secret of the Island', 'Verne, Jules', '2007-05-16', 116, 'https://www.gutenberg.org/ebooks/21489', 'en', 4731), +(51791, 'History of Denmark, Sweden, and Norway, Vol. 1 (of 2)', 'Dunham, S. A. (Samuel Astley)', '2019-05-24', 65, 'https://www.gutenberg.org/ebooks/59593', 'en', 6847), +(51792, 'A New Voyage Round the World, in the years 1823, 24, 25, and 26, Vol. 2', 'Kotzebue, Otto von', '2008-06-17', 22, 'https://www.gutenberg.org/ebooks/25815', 'en', 17414), +(51793, 'The Children\'s Longfellow\nTold in Prose', 'Hayman, Doris', '2009-03-18', 24, 'https://www.gutenberg.org/ebooks/28352', 'en', 17415), +(51794, 'Das Geschlechtsleben in der Deutschen Vergangenheit', 'Bauer, Max', '2015-10-18', 32, 'https://www.gutenberg.org/ebooks/50248', 'de', 3899), +(51795, 'The Port of Missing Men', 'Nicholson, Meredith', '2004-11-01', 20, 'https://www.gutenberg.org/ebooks/13913', 'en', 61), +(51796, 'How the Piano Came to Be', 'Glover, Ellye Howell', '2009-07-01', 44, 'https://www.gutenberg.org/ebooks/29280', 'en', 17416), +(51797, 'Poems of To-Day: an Anthology', 'Various', '2007-09-18', 16, 'https://www.gutenberg.org/ebooks/22668', 'en', 532), +(51798, 'The French Revolution - Volume 1', 'Taine, Hippolyte', '2008-06-22', 57, 'https://www.gutenberg.org/ebooks/2578', 'en', 1536), +(51799, 'The Greater Inclination', 'Wharton, Edith', '2005-10-01', 37, 'https://www.gutenberg.org/ebooks/9190', 'en', 2999), +(51800, 'Soldiers of Fortune', 'Davis, Richard Harding', '1996-01-01', 80, 'https://www.gutenberg.org/ebooks/403', 'en', 8300), +(51801, 'Jewish History : An Essay in the Philosophy of History', 'Dubnow, Simon', '2005-04-01', 59, 'https://www.gutenberg.org/ebooks/7836', 'en', 5932), +(51802, 'Libraries in the Medieval and Renaissance Periods\nThe Rede Lecture Delivered June 13, 1894', 'Clark, John Willis', '2006-10-01', 15, 'https://www.gutenberg.org/ebooks/19415', 'en', 17417), +(51803, 'The Bible, King James version, Book 42: Luke', 'Anonymous', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/8042', 'en', 2260), +(51804, 'La vita italiana nel Trecento: Conferenze tenute a Firenze nel 1891', 'Various', '2015-07-05', 8, 'https://www.gutenberg.org/ebooks/49365', 'it', 12508), +(51805, 'Legends of Longdendale\r\nBeing a series of tales founded upon the folk-lore of Longdendale Valley and its neighbourhood', 'Middleton, Thomas C. (Thomas Cooke)', '2012-10-19', 31, 'https://www.gutenberg.org/ebooks/41108', 'en', 17418), +(51806, 'Famous American Statesmen', 'Bolton, Sarah Knowles', '2012-02-29', 26, 'https://www.gutenberg.org/ebooks/39012', 'en', 17419), +(51807, 'La belle Gabrielle — Tome 2', 'Maquet, Auguste', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11678', 'fr', 687), +(51808, 'South Africa and the Transvaal War, Vol. 3 (of 8)\r\nFrom the Battle of Colenso, 15th Dec. 1899, to Lord Roberts\'s Advance into the Free State, 12th Feb. 1900', 'Creswicke, Louis', '2011-07-27', 19, 'https://www.gutenberg.org/ebooks/36866', 'en', 1956), +(51809, 'With Edge Tools', 'Chatfield-Taylor, H. C. (Hobart Chatfield)', '2010-08-24', 17, 'https://www.gutenberg.org/ebooks/33528', 'en', 23), +(51810, 'The Choir School of St. Bede\'s', 'Harrison, Frederick', '2019-02-03', 2, 'https://www.gutenberg.org/ebooks/58819', 'en', 153), +(51811, 'Northern Nut Growers Association Report of the Proceedings at the Twenty-Fifth Annual Meeting\nBattle Creek, Michigan, September 10 and 11, 1934', NULL, '2007-03-25', 4, 'https://www.gutenberg.org/ebooks/20903', 'en', 1628), +(51812, 'Idling in Italy: Studies of literature and of life', 'Collins, Joseph', '2013-01-28', 18, 'https://www.gutenberg.org/ebooks/41934', 'en', 7200), +(51813, 'Murattiköynnös: Runoja', 'Onerva, L.', '2018-04-15', 18, 'https://www.gutenberg.org/ebooks/56983', 'fi', 1171), +(51814, 'Plish and Plum', 'Busch, Wilhelm', '2011-08-24', 12, 'https://www.gutenberg.org/ebooks/37188', 'en', 4299), +(51815, 'Memoirs of the Reign of King George the Second, Volume 2 (of 3)', 'Walpole, Horace', '2018-09-05', 4, 'https://www.gutenberg.org/ebooks/57851', 'en', 4492), +(51816, 'Index of the Project Gutenberg Works of Friedrich Nietzsche', 'Nietzsche, Friedrich Wilhelm', '2018-10-04', 42, 'https://www.gutenberg.org/ebooks/58025', 'en', 198), +(51817, 'Vies des dames galantes', 'Brantôme, Pierre de Bourdeille', '2012-03-21', 75, 'https://www.gutenberg.org/ebooks/39220', 'fr', 17420), +(51818, 'Constituição politica da Monarchia portugueza', 'Portugal', '2005-02-04', 19, 'https://www.gutenberg.org/ebooks/14904', 'pt', 17421), +(51819, 'The Lives of the Poets of Great Britain and Ireland (1753) Volume I.', 'Cibber, Theophilus', '2004-01-01', 32, 'https://www.gutenberg.org/ebooks/10598', 'en', 8918), +(51820, 'Heresy: Its Utility And Morality. A Plea And A Justification', 'Bradlaugh, Charles', '2011-05-29', 13, 'https://www.gutenberg.org/ebooks/36268', 'en', 423), +(51821, 'Dew Drops, Vol. 37, No. 18, May 3, 1914', 'Various', '2004-11-24', 13, 'https://www.gutenberg.org/ebooks/14138', 'en', 6886), +(51822, 'The Book of Months', 'Benson, E. F. (Edward Frederic)', '2018-11-01', 16, 'https://www.gutenberg.org/ebooks/58217', 'en', 230), +(51823, 'Braddock Road', 'Lacock, John Kennedy', '2014-01-12', 22, 'https://www.gutenberg.org/ebooks/44648', 'en', 4143), +(51824, 'Het Leven der Dieren: Deel 2, Hoofdstuk 05: De Ralvogels; Hoofdstuk 06: De Kraanvogels', 'Brehm, Alfred Edmund', '2009-01-28', 10, 'https://www.gutenberg.org/ebooks/27914', 'nl', 2360), +(51825, 'The \'Pioneer\': Light Passenger Locomotive of 1851\r\nUnited States Bulletin 240, Contributions from the Museum of History and Technology, paper 42, 1964', 'White, John H.', '2009-02-23', 29, 'https://www.gutenberg.org/ebooks/28160', 'en', 17422), +(51826, 'A Filbert Is a Nut', 'Raphael, Rick', '2007-11-22', 36, 'https://www.gutenberg.org/ebooks/23588', 'en', 179), +(51827, 'The Voice of Science in Nineteenth-Century Literature\nRepresentative Prose and Verse', NULL, '2010-04-03', 10, 'https://www.gutenberg.org/ebooks/31871', 'en', 232), +(51828, 'My Four Years in Germany', 'Gerard, James W. (James Watson)', '2005-01-01', 50, 'https://www.gutenberg.org/ebooks/7238', 'en', 10700), +(51829, 'The No Breakfast Plan and the Fasting-Cure', 'Dewey, Edward Hooker', '2008-11-02', 237, 'https://www.gutenberg.org/ebooks/27128', 'en', 15688), +(51830, 'The Square Root of 7', 'Nemiroff, Robert J.', '1996-08-01', 7, 'https://www.gutenberg.org/ebooks/631', 'en', 5180), +(51831, 'Birds and All Nature, Vol. 6, No. 2, September 1899\r\nIllustrated by Color Photography', 'Various', '2015-01-26', 10, 'https://www.gutenberg.org/ebooks/48085', 'en', 1584), +(51832, 'Mechanics of the Household\nA Course of Study Devoted to Domestic Machinery and Household Mechanical Appliances', 'Keene, E. S. (Edward Spencer)', '2016-01-04', 24, 'https://www.gutenberg.org/ebooks/50846', 'en', 17423), +(51833, 'The Adventures of Squirrel Fluffytail: A Picture Story-Book for Children', 'McKenna, Dolores', '2016-05-03', 39, 'https://www.gutenberg.org/ebooks/51994', 'en', 625), +(51834, 'The Task, and Other Poems', 'Cowper, William', '2003-01-01', 243, 'https://www.gutenberg.org/ebooks/3698', 'en', 3947), +(51835, 'The World English Bible (WEB): John', 'Anonymous', '2005-06-01', 17, 'https://www.gutenberg.org/ebooks/8270', 'en', 5364), +(51836, 'The Little Girl\'s Sewing Book', NULL, '2015-06-07', 68, 'https://www.gutenberg.org/ebooks/49157', 'en', 17424), +(51837, 'Miller\'s Mind training for children Book 2 (of 3)\r\nA practical training for successful living; Educational games that train the senses', 'Miller, William Emer', '2017-09-08', 22, 'https://www.gutenberg.org/ebooks/55508', 'en', 3749), +(51838, 'Aesop\'s Fables - Volume 12', 'Aesop', '2006-10-26', 12, 'https://www.gutenberg.org/ebooks/19627', 'en', 7140), +(51839, 'Epics and Romances of the Middle Ages', 'Wägner, Wilhelm', '2014-09-21', 60, 'https://www.gutenberg.org/ebooks/46923', 'en', 17425), +(51840, 'Andiron Tales', 'Bangs, John Kendrick', '2008-01-02', 16, 'https://www.gutenberg.org/ebooks/24130', 'en', 388), +(51841, 'Alexander\'s Ragtime Band', NULL, '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10305', 'en', 7243), +(51842, 'The Indian in his Wigwam; Or, Characteristics of the Red Race of America\r\nFrom Original Notes and Manuscripts', 'Schoolcraft, Henry Rowe', '2012-08-10', 11, 'https://www.gutenberg.org/ebooks/40475', 'en', 869), +(51843, 'El Dorado: An Adventure of the Scarlet Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '1999-05-01', 116, 'https://www.gutenberg.org/ebooks/1752', 'en', 248), +(51844, 'By Right of Conquest: A Novel', 'Hornblow, Arthur', '2010-07-16', 48, 'https://www.gutenberg.org/ebooks/33187', 'en', 109), +(51845, 'The Hand', 'Sohl, Jerry', '2010-04-19', 21, 'https://www.gutenberg.org/ebooks/32055', 'en', 179), +(51846, 'Slicko, the Jumping Squirrel: Her Many Adventures', 'Barnum, Richard', '2018-02-06', 3, 'https://www.gutenberg.org/ebooks/56510', 'en', 3264), +(51847, 'Sermons', 'Lightfoot, J. B. (Joseph Barber)', '2011-09-24', 51, 'https://www.gutenberg.org/ebooks/37527', 'en', 717), +(51848, 'Letters & Lettering: A Treatise with 200 Examples', 'Brown, Frank Chouteau', '2007-02-16', 62, 'https://www.gutenberg.org/ebooks/20590', 'en', 12769), +(51849, 'At the Sign of the Silver Flagon', 'Farjeon, B. L. (Benjamin Leopold)', '2016-09-16', 10, 'https://www.gutenberg.org/ebooks/53062', 'en', 137), +(51850, 'Your Servant, Sir', 'Boren, Sol', '2019-05-20', 67, 'https://www.gutenberg.org/ebooks/59558', 'en', 179), +(51851, 'Punch, or the London Charivari, Volume 103, November 5, 1892', 'Various', '2005-04-21', 4, 'https://www.gutenberg.org/ebooks/15677', 'en', 134), +(51852, 'Factos Notaveis da Historia Portugueza e Biographia do Marquez de Pombal', 'Pinto Carneiro Perestrello, Josephina', '2010-06-18', 6, 'https://www.gutenberg.org/ebooks/32869', 'pt', 10984), +(51853, 'Your Plants\r\nPlain and Practical Directions for the Treatment of Tender and Hardy Plants in the House and in the Garden', 'Sheehan, James', '2007-05-15', 36, 'https://www.gutenberg.org/ebooks/21442', 'en', 5887), +(51854, 'An Autobiography', 'Spence, Catherine Helen', '2003-07-01', 10, 'https://www.gutenberg.org/ebooks/4220', 'en', 17426), +(51855, 'Frey and His Wife', 'Hewlett, Maurice', '2014-03-10', 21, 'https://www.gutenberg.org/ebooks/45107', 'en', 10007), +(51856, 'The Vintage: A Romance of the Greek War of Independence', 'Benson, E. F. (Edward Frederic)', '2014-09-06', 24, 'https://www.gutenberg.org/ebooks/46782', 'en', 17408), +(51857, 'Fiore di leggende\nCantari antichi I - cantari leggendari', NULL, '2006-11-21', 13, 'https://www.gutenberg.org/ebooks/19886', 'it', 739), +(51858, 'Habits that Handicap: The Menace of Opium, Alcohol, and Tobacco, and the Remedy', 'Towns, Charles Barnes', '2011-02-14', 19, 'https://www.gutenberg.org/ebooks/35270', 'en', 7859), +(51859, 'Memoirs of Marguerite de Valois, Queen of Navarre — Volume 2', 'Marguerite, Queen, consort of Henry IV, King of France', '2004-12-02', 19, 'https://www.gutenberg.org/ebooks/3839', 'en', 14468), +(51860, 'Big Baby', 'Sharkey, Jack', '2016-04-12', 36, 'https://www.gutenberg.org/ebooks/51735', 'en', 1564), +(51861, 'Fashionable Philosophy, and Other Sketches', 'Oliphant, Laurence', '2005-11-20', 22, 'https://www.gutenberg.org/ebooks/17120', 'en', 232), +(51862, 'Young Soldier', 'Anonymous', '2007-11-04', 11, 'https://www.gutenberg.org/ebooks/23315', 'en', 8840), +(51863, 'History of the Decline and Fall of the Roman Empire — Volume 1', 'Gibbon, Edward', '2008-06-07', 288, 'https://www.gutenberg.org/ebooks/890', 'en', 1292), +(51864, 'Tom Slade with the Boys Over There', 'Fitzhugh, Percy Keese', '2006-07-31', 36, 'https://www.gutenberg.org/ebooks/18954', 'en', 146), +(51865, 'The Junior Classics, Volume 6: Old-Fashioned Tales', NULL, '2004-09-01', 117, 'https://www.gutenberg.org/ebooks/6577', 'en', 1063), +(51866, 'Prosas Profanas\r\nObras Completas Vol. II', 'Darío, Rubén', '2014-12-12', 24, 'https://www.gutenberg.org/ebooks/47650', 'es', 3817), +(51867, 'The Strange Adventures of Captain Dangerous, Vol. 1\r\nWho was a sailor, a soldier, a merchant, a spy, a slave\r\namong the moors...', 'Sala, George Augustus', '2008-09-19', 22, 'https://www.gutenberg.org/ebooks/26667', 'en', 2588), +(51868, 'Fort Lafayette or, Love and Secession\r\nA Novel', 'Wood, Benjamin', '2004-05-01', 5, 'https://www.gutenberg.org/ebooks/12452', 'en', 403), +(51869, 'Little Brown Jug', 'Baker, George M. (George Melville)', '2017-08-20', 5, 'https://www.gutenberg.org/ebooks/55395', 'en', 868), +(51870, 'Flagg\'s The Far West, 1836-1837, part 1', 'Flagg, Edmund', '2013-03-13', 24, 'https://www.gutenberg.org/ebooks/42322', 'en', 8477), +(51871, 'Tom Swift and His Airship', 'Appleton, Victor', '2002-01-01', 91, 'https://www.gutenberg.org/ebooks/3005', 'en', 3124), +(51872, 'Mensonges', 'Bourget, Paul', '2009-12-18', 18, 'https://www.gutenberg.org/ebooks/30702', 'fr', 61), +(51873, 'Der Klosterjaeger: Roman aus dem XIV. Jahrhundert', 'Ganghofer, Ludwig', '2015-04-01', 15, 'https://www.gutenberg.org/ebooks/48618', 'de', 253), +(51874, 'The Heavenly Father: Lectures on Modern Atheism', 'Naville, Ernest', '2006-04-14', 18, 'https://www.gutenberg.org/ebooks/18168', 'en', 17427), +(51875, 'Beyond These Voices', 'Braddon, M. E. (Mary Elizabeth)', '2017-02-27', 14, 'https://www.gutenberg.org/ebooks/54247', 'en', 61), +(51876, 'Helsinkiin', 'Aho, Juhani', '2004-10-02', 18, 'https://www.gutenberg.org/ebooks/13580', 'fi', 10649), +(51877, 'The Forlorn Hope: A Novel (Vol. 1 of 2)', 'Yates, Edmund', '2019-08-08', 415, 'https://www.gutenberg.org/ebooks/60072', 'en', 61), +(51878, 'Amerikassa: Pila yhdessä näytöksessä', 'Aira', '2016-03-20', 2, 'https://www.gutenberg.org/ebooks/51507', 'fi', 17428), +(51879, 'Winter Fun', 'Stoddard, William O.', '2011-01-23', 28, 'https://www.gutenberg.org/ebooks/35042', 'en', 13482), +(51880, 'A Strange Story — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/7697', 'en', 137), +(51881, 'H.M.S. ----', 'Bower, John Graham', '2010-11-01', 45, 'https://www.gutenberg.org/ebooks/34190', 'en', 579), +(51882, 'Der Rangierbahnhof', 'Böhlau, Helene', '2017-06-05', 7, 'https://www.gutenberg.org/ebooks/54849', 'de', 253), +(51883, 'Miss Parloa\'s New Cook Book', 'Parloa, Maria', '2004-10-01', 45, 'https://www.gutenberg.org/ebooks/6745', 'en', 103), +(51884, 'Castara\r\nThe Third Edition of 1640; Edited and Collated with the Earlier Ones of 1634, 1635', 'Habington, William', '2014-11-26', 18, 'https://www.gutenberg.org/ebooks/47462', 'en', 466), +(51885, 'Martin Paz', 'Verne, Jules', '2005-12-15', 15, 'https://www.gutenberg.org/ebooks/17312', 'fi', 61), +(51886, 'Julian Home', 'Farrar, F. W. (Frederic William)', '2007-10-20', 22, 'https://www.gutenberg.org/ebooks/23127', 'en', 4642), +(51887, 'The Seven Ages of Man', 'Bergengren, Ralph', '2013-02-16', 19, 'https://www.gutenberg.org/ebooks/42110', 'en', 4637), +(51888, 'The Garotters', 'Howells, William Dean', '2002-05-01', 17, 'https://www.gutenberg.org/ebooks/3237', 'en', 868), +(51889, 'A History of Lumsden\'s Battery, C.S.A.', 'Maxwell, James Robert', '2008-08-28', 10, 'https://www.gutenberg.org/ebooks/26455', 'en', 17429), +(51890, 'Bohemian Days: Three American Tales', 'Townsend, George Alfred', '2006-09-15', 12, 'https://www.gutenberg.org/ebooks/19288', 'en', 61), +(51891, 'Soll die plattdeutsche Sprache gepflegt oder ausgerottet werden?\nGegen Ersteres und für Letzteres', 'Wienbarg, Ludolf', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12660', 'de', 17430), +(51892, 'Windmills, Picturesque and Historic: The Motors of the Past', 'Shelton, F. H.', '2017-01-30', 7, 'https://www.gutenberg.org/ebooks/54075', 'en', 17431), +(51893, 'A Victor of Salamis', 'Davis, William Stearns', '2008-12-22', 32, 'https://www.gutenberg.org/ebooks/27587', 'en', 17432), +(51894, 'Skipper Worse', 'Kielland, Alexander Lange', '2009-11-23', 14, 'https://www.gutenberg.org/ebooks/30530', 'en', 286), +(51895, 'Little Greta of Denmark', 'Bailey, Bernadine', '2012-09-02', 20, 'https://www.gutenberg.org/ebooks/40647', 'en', 6643), +(51896, 'The San Francisco Calamity by Earthquake and Fire', 'Morris, Charles', '2006-05-03', 17, 'https://www.gutenberg.org/ebooks/1560', 'en', 17433), +(51897, 'The Highest Treason', 'Garrett, Randall', '2008-01-15', 57, 'https://www.gutenberg.org/ebooks/24302', 'en', 26), +(51898, 'Mary Had a Little Lamb\r\nRecording taken from Movietone Production news film', 'Edison, Thomas A. (Thomas Alva)', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10137', 'en', 17434), +(51899, 'Home Scenes and Heart Studies', 'Aguilar, Grace', '2018-03-11', 16, 'https://www.gutenberg.org/ebooks/56722', 'en', 2707), +(51900, 'A Century of English Essays\nAn Anthology Ranging from Caxton to R. L. Stevenson & the Writers of Our Own Time', NULL, '2010-05-05', 21, 'https://www.gutenberg.org/ebooks/32267', 'en', 1201), +(51901, 'Tales of Northumbria', 'Pease, Howard', '2013-01-06', 32, 'https://www.gutenberg.org/ebooks/41795', 'en', 17435), +(51902, 'The Woman Thou Gavest Me; Being the Story of Mary O\'Neill', 'Caine, Hall, Sir', '2005-01-04', 78, 'https://www.gutenberg.org/ebooks/14597', 'en', 434), +(51903, 'The Golden Age', 'Grahame, Kenneth', '2016-10-10', 50, 'https://www.gutenberg.org/ebooks/53250', 'en', 2625), +(51904, 'Mother-Meg; or, The Story of Dickie\'s Attic', 'Shaw, Catharine', '2011-10-11', 10, 'https://www.gutenberg.org/ebooks/37715', 'en', 17436), +(51905, 'The Dutch Twins', 'Perkins, Lucy Fitch', '2003-05-01', 30, 'https://www.gutenberg.org/ebooks/4012', 'en', 309), +(51906, 'Toisen tahran tarina\nYm. Sherlock Holmes\'in seikkailuja', 'Doyle, Arthur Conan', '2014-04-06', 15, 'https://www.gutenberg.org/ebooks/45335', 'fi', 3511), +(51907, 'Studies of Birds Killed in Nocturnal Migration', 'Tordoff, Harrison Bruce', '2016-06-20', 3, 'https://www.gutenberg.org/ebooks/52382', 'en', 14557), +(51908, 'The Philippine Islands, 1493-1898 — Volume 14 of 55\r\n1606-1609\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of The Catholic Missions, As Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-03-23', 36, 'https://www.gutenberg.org/ebooks/15445', 'en', 745), +(51909, 'Edison\'s Conquest of Mars', 'Serviss, Garrett Putman', '2007-06-03', 32, 'https://www.gutenberg.org/ebooks/21670', 'en', 2627), +(51910, 'The Naturalist in Nicaragua', 'Belt, Thomas', '2004-08-01', 18, 'https://www.gutenberg.org/ebooks/6321', 'en', 17437), +(51911, 'In the Days of Queen Elizabeth', 'Tappan, Eva March', '2014-09-29', 27, 'https://www.gutenberg.org/ebooks/47006', 'en', 17438), +(51912, 'Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910\nTests of Creosoted Timber, Paper No. 1168', 'Gregory, W. B. (William Benjamin)', '2006-02-16', 10, 'https://www.gutenberg.org/ebooks/17776', 'en', 17439), +(51913, 'A Sunny Little Lass', 'Raymond, Evelyn', '2010-01-15', 16, 'https://www.gutenberg.org/ebooks/30968', 'en', 751), +(51914, 'Kalervo: Runollinen kalenteri', 'Bergman, Johan Albert', '2007-11-19', 11, 'https://www.gutenberg.org/ebooks/23543', 'fi', 8), +(51915, 'Woman in Sacred History\r\nA Series of Sketches Drawn from Scriptural, Historical, and Legendary Sources', 'Stowe, Harriet Beecher', '2015-05-04', 27, 'https://www.gutenberg.org/ebooks/48872', 'en', 17440), +(51916, '五色石', 'Wuseshizhuren, ju ren 1738', '2009-06-09', 25, 'https://www.gutenberg.org/ebooks/29079', 'zh', 1003), +(51917, 'Hoe ik een week te Fez doorbracht\nDe Aarde en haar Volken, 1908', 'Marlys, Jean', '2007-09-02', 6, 'https://www.gutenberg.org/ebooks/22491', 'nl', 17441), +(51918, 'The Australian Victories in France in 1918', 'Monash, John, Sir', '2016-02-10', 20, 'https://www.gutenberg.org/ebooks/51163', 'en', 3083), +(51919, 'Polaris of the Snows', 'Stilson, Charles B. (Charles Billings)', '2011-02-28', 20, 'https://www.gutenberg.org/ebooks/35426', 'en', 323), +(51920, 'Gunpowder and Ammunition, Their Origin and Progress', 'Hime, H. W. L. (Henry William Lovett)', '2017-03-22', 31, 'https://www.gutenberg.org/ebooks/54411', 'en', 17442), +(51921, 'Just So Stories', 'Kipling, Rudyard', '2001-08-01', 790, 'https://www.gutenberg.org/ebooks/2781', 'en', 179), +(51922, 'Der junge Gelehrte: Ein Lustspiel in drei Aufzügen', 'Lessing, Gotthold Ephraim', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9369', 'de', 907), +(51923, 'Essays on God and Freud', 'Vaknin, Samuel', '2009-10-01', 30, 'https://www.gutenberg.org/ebooks/30154', 'en', 8066), +(51924, 'Great Men and Famous Women, Vol. 7\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2009-05-30', 52, 'https://www.gutenberg.org/ebooks/28997', 'en', 122), +(51925, 'Uncle Wiggily in Wonderland', 'Garis, Howard Roger', '2013-04-21', 37, 'https://www.gutenberg.org/ebooks/42574', 'en', 1045), +(51926, 'I rossi e i neri, vol. 1', 'Barrili, Anton Giulio', '2009-08-29', 11, 'https://www.gutenberg.org/ebooks/29845', 'it', 9003), +(51927, 'The Guns of Bull Run: A Story of the Civil War\'s Eve', 'Altsheler, Joseph A. (Joseph Alexander)', '2003-01-01', 69, 'https://www.gutenberg.org/ebooks/3653', 'en', 17443), +(51928, '\"And they thought we wouldn\'t fight\"', 'Gibbons, Floyd Phillips', '2010-01-26', 26, 'https://www.gutenberg.org/ebooks/31086', 'en', 4411), +(51929, 'Memoirs and Correspondence of Admiral Lord de Saumarez, Vol. I', 'Ross, John, Sir', '2008-07-11', 18, 'https://www.gutenberg.org/ebooks/26031', 'en', 8366), +(51930, 'Bill\'s Lapse\nOdd Craft, Part 4.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/12204', 'en', 3421), +(51931, 'Dirty Work\nDeep Waters, Part 11.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/11481', 'en', 72), +(51932, 'A Book of American Explorers', 'Higginson, Thomas Wentworth', '2018-01-09', 45, 'https://www.gutenberg.org/ebooks/56346', 'en', 3403), +(51933, 'Reminiscences, 1819-1899', 'Howe, Julia Ward', '2010-05-30', 40, 'https://www.gutenberg.org/ebooks/32603', 'en', 11273), +(51934, 'British Quarterly Review, American Edition, Vol. LIV\r\nJuly and October, 1871', 'Various', '2012-07-13', 10, 'https://www.gutenberg.org/ebooks/40223', 'en', 5498), +(51935, 'The Comedy of Errors', 'Shakespeare, William', '1997-11-01', 20, 'https://www.gutenberg.org/ebooks/1104', 'en', 907), +(51936, 'South-African Folk-Tales', 'Honey, James A.', '2011-12-19', 64, 'https://www.gutenberg.org/ebooks/38339', 'en', 17444), +(51937, 'Psychopathia Sexualis\navec recherches spéciales sur l\'inversion sexuelle', 'Krafft-Ebing, R. von (Richard)', '2008-03-06', 104, 'https://www.gutenberg.org/ebooks/24766', 'fr', 3029), +(51938, 'Under Lock and Key: A Story. Volume 1 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-09', 13, 'https://www.gutenberg.org/ebooks/57294', 'en', 137), +(51939, 'The first New Testament printed in English', NULL, '2004-01-01', 60, 'https://www.gutenberg.org/ebooks/10553', 'en', 2781), +(51940, 'One of Our Conquerors — Complete', 'Meredith, George', '2004-11-05', 31, 'https://www.gutenberg.org/ebooks/4476', 'en', 137), +(51941, 'Nellie\'s Housekeeping\nLittle Sunbeams Series', 'Mathews, Joanna H. (Joanna Hooe)', '2014-05-25', 16, 'https://www.gutenberg.org/ebooks/45751', 'en', 3823), +(51942, 'Punch, or the London Charivari, Volume 152, April 18, 1917', 'Various', '2005-02-12', 19, 'https://www.gutenberg.org/ebooks/15021', 'en', 134), +(51943, 'The Law and Lawyers of Pickwick\nA Lecture', 'Lockwood, Frank, Sir', '2007-04-25', 17, 'https://www.gutenberg.org/ebooks/21214', 'en', 17445), +(51944, 'Resurrection', 'Tolstoy, Leo, graf', '1999-10-01', 189, 'https://www.gutenberg.org/ebooks/1938', 'en', 17446), +(51945, 'Les Bourbons bibliophiles, Rois & Princes, Reines & Princesses', 'Asse, Eugène', '2016-11-29', 24, 'https://www.gutenberg.org/ebooks/53634', 'fr', 4118), +(51946, 'South London', 'Besant, Walter', '2014-01-16', 43, 'https://www.gutenberg.org/ebooks/44683', 'en', 856), +(51947, 'The Triumph of Music, and Other Lyrics', 'Cawein, Madison Julius', '2011-09-10', 6, 'https://www.gutenberg.org/ebooks/37371', 'en', 178), +(51948, 'The Model of a Judge', 'Samachson, Joseph', '2010-05-19', 22, 'https://www.gutenberg.org/ebooks/32431', 'en', 26), +(51949, 'The Mud Larks', 'Garstin, Crosbie', '2019-07-10', 121, 'https://www.gutenberg.org/ebooks/59900', 'en', 579), +(51950, 'Sämmtliche Werke 7: Briefwechsel I', 'Gogol, Nikolai Vasilevich', '2017-12-13', 7, 'https://www.gutenberg.org/ebooks/56174', 'de', 2632), +(51951, 'David the Shepherd Boy', 'Steedman, Amy', '2008-05-16', 29, 'https://www.gutenberg.org/ebooks/25486', 'en', 13603), +(51952, 'Down South; or, Yacht Adventure in Florida', 'Optic, Oliver', '2008-02-08', 20, 'https://www.gutenberg.org/ebooks/24554', 'en', 1096), +(51953, 'Essays of Robert Louis Stevenson\r\nSelected and Edited With an Introduction and Notes by William Lyon Phelps', 'Stevenson, Robert Louis', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/10761', 'en', 20), +(51954, 'L\'Illustration, No. 0044, 30 Décembre 1843', 'Various', '2012-06-16', 16, 'https://www.gutenberg.org/ebooks/40011', 'fr', 150), +(51955, 'Shelley: An Essay', 'Thompson, Francis', '1998-06-01', 21, 'https://www.gutenberg.org/ebooks/1336', 'en', 6521), +(51956, 'J. W. v. Goethe\'s Biographie', 'Döring, Heinrich', '2005-02-28', 21, 'https://www.gutenberg.org/ebooks/15213', 'de', 3088), +(51957, 'Vähemmät eepilliset runoelmat', 'Runeberg, Johan Ludvig', '2007-04-10', 4, 'https://www.gutenberg.org/ebooks/21026', 'fi', 8), +(51958, 'An Autumn Sowing', 'Benson, E. F. (Edward Frederic)', '2018-04-09', 15, 'https://www.gutenberg.org/ebooks/56948', 'en', 432), +(51959, 'An Anthology of Jugoslav Poetry; Serbian Lyrics', NULL, '2011-05-13', 20, 'https://www.gutenberg.org/ebooks/36091', 'en', 7460), +(51960, 'The Adventures of Mr. Verdant Green', 'Bede, Cuthbert', '2003-11-01', 41, 'https://www.gutenberg.org/ebooks/4644', 'en', 10892), +(51961, 'Deeds of a Great Railway\r\nA record of the enterprise and achievements of the London and North-Western Railway company during the Great War', 'Darroch, G. R. S.', '2014-05-02', 15, 'https://www.gutenberg.org/ebooks/45563', 'en', 2600), +(51962, 'Subconscious Religion', 'Conwell, Russell H.', '2011-08-21', 24, 'https://www.gutenberg.org/ebooks/37143', 'en', 5230), +(51963, 'Journeys Through Bookland, Vol. 2', 'Sylvester, Charles Herbert', '2004-05-01', 49, 'https://www.gutenberg.org/ebooks/5796', 'en', 19), +(51964, 'Dick Hamilton\'s Touring Car; Or, A Young Millionaire\'s Race For A Fortune', 'Garis, Howard Roger', '2016-10-30', 19, 'https://www.gutenberg.org/ebooks/53406', 'en', 4887), +(51965, 'Sertum Anglicum, seu, Plantae Rariores quae in Hortis Juxta Londinum\r\nImprimis in Horto Regio Kewensi excoluntur, ab anno 1786 ad annum 1787 observata', 'L\'Héritier de Brutelle, Charles Louis', '2012-02-20', 13, 'https://www.gutenberg.org/ebooks/38937', 'la', 12410), +(51966, 'Mr. Waddington of Wyck', 'Sinclair, May', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/9967', 'en', 61), +(51967, 'Lou catounet gascoun', 'Ader, Guillaume', '2006-01-18', 24, 'https://www.gutenberg.org/ebooks/17544', 'oc', 8), +(51968, 'Die Herrin und ihr Knecht', 'Engel, Georg', '2015-11-28', 11, 'https://www.gutenberg.org/ebooks/50283', 'de', 138), +(51969, 'Four Plays of Gil Vicente', 'Vicente, Gil', '2009-03-24', 42, 'https://www.gutenberg.org/ebooks/28399', 'pt', 3231), +(51970, 'The Hoosier School-boy', 'Eggleston, Edward', '2007-12-08', 9, 'https://www.gutenberg.org/ebooks/23771', 'en', 3606), +(51971, 'A Day of Fate', 'Roe, Edward Payson', '2004-07-01', 10, 'https://www.gutenberg.org/ebooks/6113', 'en', 48), +(51972, 'On the origin of inflammation of the veins\nand of the causes, consequences, and treatment of purulent deposits', 'Lee, Henry, M.D.', '2014-10-29', 19, 'https://www.gutenberg.org/ebooks/47234', 'en', 17447), +(51973, 'Palos of the Dog Star Pack', 'Giesy, J. U. (John Ulrich)', '2011-03-19', 14, 'https://www.gutenberg.org/ebooks/35614', 'en', 17448), +(51974, 'The Spicy Sound of Success', 'Harmon, Jim', '2016-03-03', 26, 'https://www.gutenberg.org/ebooks/51351', 'en', 4350), +(51975, 'Chronicles (1 of 6): The Historie of England (1 of 8)\r\nFrom the Time That It Was First Inhabited, Vntill the Time That It Was Last Conquered: Wherein the Sundrie Alterations of the State Vnder Forren People Is Declared; And Other Manifold Observations Remembred', 'Holinshed, Raphael', '2005-08-09', 52, 'https://www.gutenberg.org/ebooks/16496', 'en', 2861), +(51976, 'Zoe', 'Whitaker, Evelyn', '2009-10-30', 7, 'https://www.gutenberg.org/ebooks/30366', 'en', 3389), +(51977, 'Nyomor', 'Bródy, Sándor', '2013-09-11', 12, 'https://www.gutenberg.org/ebooks/43694', 'hu', 7039), +(51978, 'The Common Objects of the Country', 'Wood, J. G. (John George)', '2017-04-28', 19, 'https://www.gutenberg.org/ebooks/54623', 'en', 5243), +(51979, 'The Adventures of Tom Sawyer', 'Twain, Mark', '2008-08-01', 70, 'https://www.gutenberg.org/ebooks/26203', 'en', 637), +(51980, 'Hygeia, a City of Health', 'Richardson, Benjamin Ward', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/12036', 'en', 11181), +(51981, 'Granida', 'Hooft, P. C. (Pieter Corneliszoon)', '2013-05-20', 8, 'https://www.gutenberg.org/ebooks/42746', 'nl', 17449), +(51982, 'Essays on Life, Art and Science', 'Butler, Samuel', '2002-10-01', 24, 'https://www.gutenberg.org/ebooks/3461', 'en', 15601), +(51983, 'Passages from the American Notebooks, Volume 2.', 'Hawthorne, Nathaniel', '2005-05-01', 23, 'https://www.gutenberg.org/ebooks/8089', 'en', 17450), +(51984, 'The Gold Brick', 'Stephens, Ann S. (Ann Sophia)', '2010-11-29', 19, 'https://www.gutenberg.org/ebooks/34500', 'en', 61), +(51985, 'The Art of Kissing: Curiously, Historically, Humorously, Poetically Considered', 'Rossiter, Will', '2015-09-23', 45, 'https://www.gutenberg.org/ebooks/50045', 'en', 17451), +(51986, 'Animal Children: The Friends of the Forest and the Plain', 'Kirkwood, Edith Brown', '2006-02-17', 67, 'https://www.gutenberg.org/ebooks/17782', 'en', 1801), +(51987, 'Rose, Linde und Silberner Stern: Erzählung für die Jugend', 'Siebe, Josephine', '2015-05-05', 13, 'https://www.gutenberg.org/ebooks/48886', 'de', 8611), +(51988, 'Der Weihnachtsabend\nEine Geistergeschichte', 'Dickens, Charles', '2007-08-31', 54, 'https://www.gutenberg.org/ebooks/22465', 'de', 585), +(51989, 'The Ralstons', 'Crawford, F. Marion (Francis Marion)', '2015-09-13', 8, 'https://www.gutenberg.org/ebooks/49954', 'en', 4219), +(51990, 'The Complete Home', NULL, '2005-09-04', 14, 'https://www.gutenberg.org/ebooks/16650', 'en', 3407), +(51991, 'What to Eat, How to Serve it', 'Herrick, Christine Terhune', '2016-02-13', 23, 'https://www.gutenberg.org/ebooks/51197', 'en', 1369), +(51992, 'Comic Arithmetic', 'Leigh, Percival', '2014-06-28', 20, 'https://www.gutenberg.org/ebooks/46120', 'en', 17452), +(51993, 'Menschliches, Allzumenschliches: Ein Buch Fuer Freie Geister', 'Nietzsche, Friedrich Wilhelm', '2005-01-01', 121, 'https://www.gutenberg.org/ebooks/7207', 'de', 902), +(51994, 'The Tongues of Toil And Other Poems', 'Barnard, William Francis', '2004-08-29', 6, 'https://www.gutenberg.org/ebooks/13322', 'en', 2188), +(51995, 'Tobacco in Colonial Virginia\n\"The Sovereign Remedy\"', 'Herndon, G. Melvin', '2008-11-01', 18, 'https://www.gutenberg.org/ebooks/27117', 'en', 17453), +(51996, 'A Baptist Abroad: Travels and Adventures of Europe and all Bible Lands', 'Whittle, Walter Andrew', '2016-01-09', 8, 'https://www.gutenberg.org/ebooks/50879', 'en', 2204), +(51997, 'The Good Soldier', 'Ford, Ford Madox', '2001-08-01', 289, 'https://www.gutenberg.org/ebooks/2775', 'en', 2549), +(51998, 'The Master of Game: The Oldest English Book on Hunting', 'Gaston III Phoebus, count of Foix', '2013-08-12', 57, 'https://www.gutenberg.org/ebooks/43452', 'en', 17454), +(51999, 'Het verhaal van de honingbij', 'Edwardes, Tickner', '2009-05-25', 6, 'https://www.gutenberg.org/ebooks/28963', 'nl', 15178), +(52000, 'Essais de Montaigne (self-édition) - Volume II', 'Montaigne, Michel de', '2015-06-08', 44, 'https://www.gutenberg.org/ebooks/49168', 'fr', 4252), +(52001, 'Expository Writing', 'Curl, Mervin James', '2013-04-22', 47, 'https://www.gutenberg.org/ebooks/42580', 'en', 2270), +(52002, 'A Letter Book\nSelected with an Introduction on the History and Art of Letter-Writing', 'Saintsbury, George', '2010-01-25', 28, 'https://www.gutenberg.org/ebooks/31072', 'en', 8604), +(52003, 'Jack Howlandin seikkailut', 'Curwood, James Oliver', '2017-09-13', 6, 'https://www.gutenberg.org/ebooks/55537', 'fi', 10932), +(52004, 'Aesop\'s Fables - Volume 03', 'Aesop', '2006-10-26', 14, 'https://www.gutenberg.org/ebooks/19618', 'en', 7140), +(52005, 'The Convert\nDeep Waters, Part 5.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11475', 'en', 72), +(52006, 'Los argonautas', 'Blasco Ibáñez, Vicente', '2008-05-30', 30, 'https://www.gutenberg.org/ebooks/25640', 'es', 1696), +(52007, 'Geschichten', 'Kuzmin, M. A. (Mikhail Alekseevich)', '2012-11-06', 9, 'https://www.gutenberg.org/ebooks/41305', 'de', 12221), +(52008, 'Unexplored!', 'Chaffee, Allen', '2010-09-14', 25, 'https://www.gutenberg.org/ebooks/33725', 'en', 323), +(52009, 'The Alternate Plan', 'Maddren, Gerry', '2008-03-09', 21, 'https://www.gutenberg.org/ebooks/24792', 'en', 179), +(52010, 'The Fable of the Bees; Or, Private Vices, Public Benefits', 'Mandeville, Bernard', '2018-06-04', 58, 'https://www.gutenberg.org/ebooks/57260', 'en', 17455), +(52011, 'Lord Ormont and His Aminta — Complete', 'Meredith, George', '2004-11-05', 20, 'https://www.gutenberg.org/ebooks/4482', 'en', 137), +(52012, 'The Fatal Falsehood: A Tragedy. In Five Acts', 'More, Hannah', '2011-05-29', 5, 'https://www.gutenberg.org/ebooks/36257', 'en', 17456), +(52013, 'The Two Treaties; or, Hope for Jerusalem', 'Hoare, Edward', '2016-08-03', 14, 'https://www.gutenberg.org/ebooks/52712', 'en', 2692), +(52014, 'Tabitha\'s Vacation', 'MacArthur, Ruth Brown', '2007-01-11', 11, 'https://www.gutenberg.org/ebooks/20332', 'en', 17457), +(52015, 'The Lost Stradivarius', 'Falkner, John Meade', '2004-11-21', 108, 'https://www.gutenberg.org/ebooks/14107', 'en', 398), +(52016, 'The Legends of the Iroquois', NULL, '2018-11-03', 17, 'https://www.gutenberg.org/ebooks/58228', 'en', 17458), +(52017, 'Friedrich Arnold Brockhaus, Sein Leben und Wirken. Erster Theil', 'Brockhaus, Heinrich Eduard', '2014-01-15', 16, 'https://www.gutenberg.org/ebooks/44677', 'de', 17459), +(52018, 'In the Fire of the Forge: A Romance of Old Nuremberg — Volume 08', 'Ebers, Georg', '2004-04-01', 38, 'https://www.gutenberg.org/ebooks/5550', 'en', 5290), +(52019, 'Embryology: The Beginnings of Life', 'Leighton, Gerald R. (Gerald Rowley)', '2011-09-11', 29, 'https://www.gutenberg.org/ebooks/37385', 'en', 17460), +(52020, 'Dead Man\'s Love', 'Gallon, Tom', '2012-10-21', 12, 'https://www.gutenberg.org/ebooks/41137', 'en', 167), +(52021, 'York and Lancaster, 1399-1485', NULL, '2017-12-15', 5, 'https://www.gutenberg.org/ebooks/56180', 'en', 17461), +(52022, 'Scientific American Supplement, No. 458, October 11, 1884', 'Various', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11647', 'en', 210), +(52023, 'The Invasion of France in 1814', 'Erckmann-Chatrian', '2011-07-26', 11, 'https://www.gutenberg.org/ebooks/36859', 'en', 367), +(52024, 'Blackbeard: Buccaneer', 'Paine, Ralph Delahaye', '2008-05-14', 50, 'https://www.gutenberg.org/ebooks/25472', 'en', 7815), +(52025, 'Yorkshire—Coast and Moorland Scenes', 'Home, Gordon', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10795', 'en', 10118), +(52026, 'Röda rummet: Skildringar ur artist- och författarlivet', 'Strindberg, August', '2018-04-26', 34, 'https://www.gutenberg.org/ebooks/57052', 'sv', 6023), +(52027, 'Little Frankie on a Journey', 'Leslie, Madeline', '2010-08-23', 2, 'https://www.gutenberg.org/ebooks/33517', 'en', 17462), +(52028, 'Double Take', 'Griffith, Wilson Parks', '2019-02-04', 28, 'https://www.gutenberg.org/ebooks/58826', 'en', 424), +(52029, 'Le panthéon de poche', 'Véron, Pierre', '2016-07-07', 7, 'https://www.gutenberg.org/ebooks/52520', 'fr', 17463), +(52030, 'Leçons d\'histoire,\r\nprononcées à l\'École normale; en l\'an III de la République Française; Histoire de Samuel, inventeur du sacre des rois; État physique de la Corse.', 'Volney, C.-F. (Constantin-François)', '2012-05-26', 14, 'https://www.gutenberg.org/ebooks/39811', 'fr', 1098), +(52031, 'The Life of Saint Columba, Apostle of Scotland', 'Forbes, F. A. (Frances Alice)', '2011-05-09', 24, 'https://www.gutenberg.org/ebooks/36065', 'en', 17464), +(52032, 'Journal of Entomology and Zoology, Vol. 11, No. 1, March 1919', 'Various', '2014-05-06', 7, 'https://www.gutenberg.org/ebooks/45597', 'en', 17465), +(52033, 'Bessie among the Mountains', 'Mathews, Joanna H. (Joanna Hooe)', '2013-12-16', 14, 'https://www.gutenberg.org/ebooks/44445', 'en', 1123), +(52034, 'Grammar and Vocabulary of the Lau Language, Solomon Islands', 'Ivens, W. G. (Walter George)', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/5762', 'en', 17466), +(52035, 'Runoja', 'Koskenniemi, Veikko Antero', '2006-12-14', 5, 'https://www.gutenberg.org/ebooks/20100', 'fi', 8), +(52036, 'The Nursery, Volume 17, No. 101, May, 1875\r\nA Monthly Magazine for Youngest Readers', 'Various', '2004-12-13', 8, 'https://www.gutenberg.org/ebooks/14335', 'en', 4641), +(52037, 'Kleinstadtkinder: Buben und Mädelgeschichten', 'Siebe, Josephine', '2015-10-22', 16, 'https://www.gutenberg.org/ebooks/50277', 'de', 8611), +(52038, 'Captivating Mary Carstairs', 'Harrison, Henry Sydnor', '2006-02-01', 25, 'https://www.gutenberg.org/ebooks/9993', 'en', 61), +(52039, 'At the Little Brown House', 'MacArthur, Ruth Brown', '2007-12-09', 58, 'https://www.gutenberg.org/ebooks/23785', 'en', 1123), +(52040, 'Max Carrados', 'Bramah, Ernest', '2010-12-23', 126, 'https://www.gutenberg.org/ebooks/34732', 'en', 12866), +(52041, 'The Works of John Marston. Volume 3', 'Marston, John', '2014-07-17', 31, 'https://www.gutenberg.org/ebooks/46312', 'en', 466), +(52042, 'The Hero of Hill House', 'Hale, Mabel', '2004-12-01', 14, 'https://www.gutenberg.org/ebooks/7035', 'en', 17108), +(52043, 'Steam, Its Generation and Use', 'Babcock & Wilcox Company', '2007-09-18', 275, 'https://www.gutenberg.org/ebooks/22657', 'en', 17467), +(52044, 'With the Boer Forces', 'Hillegas, Howard Clemens', '2005-08-07', 20, 'https://www.gutenberg.org/ebooks/16462', 'en', 17468), +(52045, 'Weymouth New Testament in Modern Speech, 2 Thessalonians', 'Weymouth, Richard Francis', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8841', 'en', 16469), +(52046, 'Twelve Causes of Dishonesty', 'Beecher, Henry Ward', '2009-11-02', 13, 'https://www.gutenberg.org/ebooks/30392', 'en', 5050), +(52047, 'Half a Life-Time Ago', 'Gaskell, Elizabeth Cleghorn', '2001-03-01', 43, 'https://www.gutenberg.org/ebooks/2547', 'en', 45), +(52048, 'Inheritance of Characteristics in Domestic Fowl', 'Davenport, Charles Benedict', '2015-02-17', 13, 'https://www.gutenberg.org/ebooks/48288', 'en', 6966), +(52049, 'The Vision and Creed of Piers Ploughman, Volume 1', 'Langland, William', '2013-09-07', 86, 'https://www.gutenberg.org/ebooks/43660', 'en', 9426), +(52050, 'Aunt Jane\'s Nieces at Work', 'Baum, L. Frank (Lyman Frank)', '2004-08-03', 59, 'https://www.gutenberg.org/ebooks/13110', 'en', 6556), +(52051, 'My Sword\'s My Fortune: A Story of Old France', 'Hayens, Herbert', '2008-11-25', 14, 'https://www.gutenberg.org/ebooks/27325', 'en', 17469), +(52052, 'Les Désenchantées — Roman des harems Turcs contemporains', 'Loti, Pierre', '2005-04-01', 22, 'https://www.gutenberg.org/ebooks/7809', 'fr', 4766), +(52053, 'Canoe and Camp Cookery\nA Practical Cook Book for Canoeists, Corinthian Sailors and Outers', 'Seneca (Writer on outdoor life)', '2017-10-08', 92, 'https://www.gutenberg.org/ebooks/55705', 'en', 1369), +(52054, 'Natural History of the Salamander, Aneides hardii', 'Johnston, Richard F.', '2010-02-09', 6, 'https://www.gutenberg.org/ebooks/31240', 'en', 17470), +(52055, 'The King of Ireland\'s Son', 'Colum, Padraic', '2002-10-01', 83, 'https://www.gutenberg.org/ebooks/3495', 'en', 1007), +(52056, 'Hurst & Blackett\'s Standard Library (1895)', 'Hurst & Blackett', '2018-07-03', 6, 'https://www.gutenberg.org/ebooks/57436', 'en', 2663), +(52057, 'Concerning Children', 'Gilman, Charlotte Perkins', '2012-08-11', 30, 'https://www.gutenberg.org/ebooks/40481', 'en', 5556), +(52058, 'A Thief in the Night: Further adventures of A. J. Raffles, Cricketer and Cracksman', 'Hornung, E. W. (Ernest William)', '2010-07-15', 54, 'https://www.gutenberg.org/ebooks/33173', 'en', 3933), +(52059, 'Les Mystères du Louvre', 'Féré, Octave', '2012-04-14', 10, 'https://www.gutenberg.org/ebooks/39449', 'fr', 98), +(52060, 'Stem to Stern; or, building the boat', 'Optic, Oliver', '2016-09-04', 26, 'https://www.gutenberg.org/ebooks/52978', 'en', 17471), +(52061, 'The Weird Sisters: A Romance. Volume 2 (of 3)', 'Dowling, Richard', '2012-12-04', 11, 'https://www.gutenberg.org/ebooks/41553', 'en', 16491), +(52062, 'Big Timber: A Story of the Northwest', 'Sinclair, Bertrand W.', '2004-02-01', 36, 'https://www.gutenberg.org/ebooks/11223', 'en', 12020), +(52063, 'The House of Souls', 'Machen, Arthur', '2008-04-07', 310, 'https://www.gutenberg.org/ebooks/25016', 'en', 2354); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(52064, 'Feudal England: Historical Studies on the Eleventh and Twelfth Centuries', 'Round, John Horace', '2013-10-25', 29, 'https://www.gutenberg.org/ebooks/44021', 'en', 17472), +(52065, 'Down the Ravine', 'Murfree, Mary Noailles', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/5306', 'en', 7700), +(52066, 'La Confession de Talleyrand, V. 1-5\nMémoires du Prince de Talleyrand', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2007-02-11', 31, 'https://www.gutenberg.org/ebooks/20564', 'fr', 17473), +(52067, 'Self-Doomed: A Novel', 'Farjeon, B. L. (Benjamin Leopold)', '2016-09-19', 8, 'https://www.gutenberg.org/ebooks/53096', 'en', 137), +(52068, 'Le retour de l\'exilé: Drame en cinq actes et huit tableaux', 'Fréchette, Louis Honoré', '2005-01-21', 30, 'https://www.gutenberg.org/ebooks/14751', 'fr', 11023), +(52069, 'The High School Failures\nA Study of the School Records of Pupils Failing in Academic or\nCommercial High School Subjects', 'OBrien, Francis Paul', '2005-04-22', 15, 'https://www.gutenberg.org/ebooks/15683', 'en', 17474), +(52070, 'Kreuzwege', 'Čapek, Karel', '2016-05-23', 29, 'https://www.gutenberg.org/ebooks/52144', 'de', 17475), +(52071, 'The Turn of the Tide: The Story of How Margaret Solved Her Problem', 'Porter, Eleanor H. (Eleanor Hodgman)', '2011-06-12', 34, 'https://www.gutenberg.org/ebooks/36401', 'en', 61), +(52072, 'Blackwood\'s Edinburgh Magazine, Volume 69, No. 425, March, 1851', 'Various', '2014-09-06', 8, 'https://www.gutenberg.org/ebooks/46776', 'en', 274), +(52073, 'The Countess of Escarbagnas', 'Molière', '2005-02-01', 21, 'https://www.gutenberg.org/ebooks/7451', 'en', 1467), +(52074, 'Riven Bonds. Vol. II.\nA Novel, in Two Volumes', 'Werner, E.', '2011-02-14', 4, 'https://www.gutenberg.org/ebooks/35284', 'en', 803), +(52075, 'Three French Moralists and The Gallantry of France', 'Gosse, Edmund', '2006-11-19', 16, 'https://www.gutenberg.org/ebooks/19872', 'en', 6227), +(52076, 'Blazed Trail Stories, and Stories of the Wild Life', 'White, Stewart Edward', '2007-08-04', 22, 'https://www.gutenberg.org/ebooks/22233', 'en', 315), +(52077, 'Lha Dhu; Or, The Dark Day\nThe Works of William Carleton, Volume Two', 'Carleton, William', '2005-06-07', 24, 'https://www.gutenberg.org/ebooks/16006', 'en', 440), +(52078, 'My Short Story Book', 'Various', '2015-12-05', 9, 'https://www.gutenberg.org/ebooks/50613', 'en', 179), +(52079, 'Practical Education, Volume II', 'Edgeworth, Richard Lovell', '2009-05-07', 32, 'https://www.gutenberg.org/ebooks/28709', 'en', 973), +(52080, 'Serious Hours of a Young Lady', 'Sainte-Foi, Charles', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6583', 'en', 8720), +(52081, 'The Master of Ballantrae: A Winter\'s Tale', 'Stevenson, Robert Louis', '1997-03-01', 180, 'https://www.gutenberg.org/ebooks/864', 'en', 16934), +(52082, 'Fires of St. John: A Drama in Four Acts', 'Sudermann, Hermann', '2010-11-18', 23, 'https://www.gutenberg.org/ebooks/34356', 'en', 493), +(52083, 'Punch, or the London Charivari, Vol. 147, August 26th, 1914', 'Various', '2008-09-23', 12, 'https://www.gutenberg.org/ebooks/26693', 'en', 134), +(52084, 'Flemington', 'Jacob, Violet', '2017-08-15', 21, 'https://www.gutenberg.org/ebooks/55361', 'en', 16934), +(52085, 'A Brief History of Element Discovery, Synthesis, and Analysis', 'Watson, Glen W.', '2010-03-13', 40, 'https://www.gutenberg.org/ebooks/31624', 'en', 17476), +(52086, 'The Journals of Lewis and Clark, 1804-1806', 'Lewis, Meriwether', '2005-07-01', 214, 'https://www.gutenberg.org/ebooks/8419', 'en', 11343), +(52087, 'The Crime of Sylvestre Bonnard', 'France, Anatole', '2000-03-01', 77, 'https://www.gutenberg.org/ebooks/2123', 'en', 2118), +(52088, 'The Motor Boys in Mexico; Or, The Secret of the Buried City', 'Young, Clarence', '2013-07-12', 14, 'https://www.gutenberg.org/ebooks/43204', 'en', 679), +(52089, 'Keeping Fit All the Way\r\nHow to Obtain and Maintain Health, Strength and Efficiency', 'Camp, Walter', '2004-10-01', 44, 'https://www.gutenberg.org/ebooks/13574', 'en', 5785), +(52090, 'Colonel Carter\'s Christmas and The Romance of an Old-Fashioned Gentleman', 'Smith, Francis Hopkinson', '2009-01-07', 10, 'https://www.gutenberg.org/ebooks/27741', 'en', 4850), +(52091, 'The Boy Travellers in The Russian Empire\r\nAdventures of Two Youths in a Journey in European and Asiatic Russia, with Accounts of a Tour across Siberia, Voyages on the Amoor, Volga, and Other Rivers, a Visit to Central Asia, Travels among the Exiles, and a Historical Sketch of the Empire from Its Foundation to the Present Time', 'Knox, Thomas Wallace', '2019-08-11', 455, 'https://www.gutenberg.org/ebooks/60086', 'en', 17477), +(52092, 'Pastoral Poems by Nicholas Breton, Selected Poetry by George Wither, and Pastoral Poetry by William Browne (of Tavistock)', 'Breton, Nicholas', '2007-07-06', 16, 'https://www.gutenberg.org/ebooks/22001', 'en', 466), +(52093, 'Introduction à l\'étude de la médecine expérimentale', 'Bernard, Claude', '2005-07-07', 59, 'https://www.gutenberg.org/ebooks/16234', 'fr', 17478), +(52094, 'The Theistic Conception of the World\nAn Essay in Opposition to Certain Tendencies of Modern Thought', 'Cocker, B. F. (Benjamin Franklin)', '2014-08-09', 8, 'https://www.gutenberg.org/ebooks/46544', 'en', 2903), +(52095, 'What Will He Do with It? — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7663', 'en', 137), +(52096, 'A Blot on the Scutcheon', 'Knowles, Mabel Winifred', '2010-10-29', 8, 'https://www.gutenberg.org/ebooks/34164', 'en', 61), +(52097, 'Greece\nPainted by John Fulleylove; described by J.A. McClymont', 'M\'Clymont, J. A. (James Alexander)', '2014-11-29', 17, 'https://www.gutenberg.org/ebooks/47496', 'en', 4713), +(52098, 'Historical Record of the Third, Or the King\'s Own Regiment of Light Dragoons\r\nContaining an Account of the Formation of the Regiment in 1685, and of Its Subsequent Services to 1846.', 'Cannon, Richard', '2015-11-10', 6, 'https://www.gutenberg.org/ebooks/50421', 'en', 17479), +(52099, 'The Immortal Moment: The Story of Kitty Tailleur', 'Sinclair, May', '2010-02-27', 25, 'https://www.gutenberg.org/ebooks/31416', 'en', 109), +(52100, 'Memoirs of General Count Rapp, first aide-de-camp to Napoleon', 'Rapp, Jean, comte', '2017-07-19', 44, 'https://www.gutenberg.org/ebooks/55153', 'en', 1770), +(52101, 'History of the American Clock Business for the Past Sixty Years, and Life of Chauncey Jerome\r\nBarnum\'s Connection with the Yankee Clock Business', 'Jerome, Chauncey', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/12694', 'en', 17480), +(52102, 'Gold, Sport, and Coffee Planting in Mysore\r\nWith chapters on coffee planting in Coorg, the Mysore representative assembly, the Indian congress, caste and the Indian silver question, being the 38 years\' experiences of a Mysore planter', 'Elliot, Robert H. (Robert Henry)', '2004-10-14', 25, 'https://www.gutenberg.org/ebooks/13746', 'en', 17481), +(52103, 'Jutelmia', 'Dilling, Lars', '2011-01-14', 3, 'https://www.gutenberg.org/ebooks/34958', 'fi', 61), +(52104, 'Lifvet på Island under sagotiden', 'Hildebrand, Hans', '2017-01-31', 9, 'https://www.gutenberg.org/ebooks/54081', 'sv', 17482), +(52105, 'Esprit des lois\nlivres I à V, précédés d\'une introduction de l\'éditeur', 'Montesquieu, Charles de Secondat, baron de', '2008-12-20', 57, 'https://www.gutenberg.org/ebooks/27573', 'fr', 2807), +(52106, 'Travels through France and Italy', 'Smollett, T. (Tobias)', '2000-09-01', 62, 'https://www.gutenberg.org/ebooks/2311', 'en', 17483), +(52107, 'The Life of William Ewart Gladstone: Index', 'Morley, John', '2013-06-26', 14, 'https://www.gutenberg.org/ebooks/43036', 'en', 4282), +(52108, 'Secret Power; or, The Secret of Success in Christian Life and Work', 'Moody, Dwight Lyman', '2010-08-03', 62, 'https://www.gutenberg.org/ebooks/33341', 'en', 5248), +(52109, 'Essays in Little', 'Lang, Andrew', '1999-01-01', 32, 'https://www.gutenberg.org/ebooks/1594', 'en', 2156), +(52110, 'The History of Don Quixote, Volume 1, Part 06', 'Cervantes Saavedra, Miguel de', '2004-06-01', 1, 'https://www.gutenberg.org/ebooks/5908', 'en', 361), +(52111, 'The Forest Beyond the Woodlands: A Fairy Tale', 'Kennedy, Mildred', '2018-08-05', 10, 'https://www.gutenberg.org/ebooks/57604', 'en', 1007), +(52112, 'A Hilltop on the Marne\r\nBeing Letters Written June 3-September 8, 1914', 'Aldrich, Mildred', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11011', 'en', 449), +(52113, 'The Happiness of Heaven\nBy a Father of the Society of Jesus', 'Boudreaux, F. J.', '2008-04-28', 20, 'https://www.gutenberg.org/ebooks/25224', 'en', 7032), +(52114, 'For Every Man A Reason', 'Wilkins, Patrick', '2010-05-08', 23, 'https://www.gutenberg.org/ebooks/32293', 'en', 26), +(52115, 'Traditions and Hearthside Stories of West Cornwall, Second Series', 'Bottrell, William', '2013-01-02', 29, 'https://www.gutenberg.org/ebooks/41761', 'en', 17484), +(52116, 'Rabbi and Priest: A Story', 'Goldsmith, Milton', '2007-03-06', 18, 'https://www.gutenberg.org/ebooks/20756', 'en', 2707), +(52117, 'Sheila of Big Wreck Cove: A Story of Cape Cod', 'Cooper, James A.', '2005-01-02', 16, 'https://www.gutenberg.org/ebooks/14563', 'en', 6349), +(52118, 'Harper\'s Pictorial Library of the World War, Volume XII\nThe Great Results of the War', NULL, '2013-11-17', 27, 'https://www.gutenberg.org/ebooks/44213', 'en', 14944), +(52119, 'Discoveries Made Upon Men and Matter and Some Poems', 'Jonson, Ben', '2004-02-01', 74, 'https://www.gutenberg.org/ebooks/5134', 'en', 4696), +(52120, 'King Eric and the Outlaws, Vol. 3\r\nor, the Throne, the Church, and the People in the Thirteenth Century.', 'Ingemann, Bernhard Severin', '2011-07-05', 10, 'https://www.gutenberg.org/ebooks/36633', 'en', 7234), +(52121, 'Le Vicaire de Wakefield', 'Goldsmith, Oliver', '2016-06-19', 11, 'https://www.gutenberg.org/ebooks/52376', 'fr', 11373), +(52122, 'Opúsculos por Alexandre Herculano - Tomo 08', 'Herculano, Alexandre', '2007-06-05', 31, 'https://www.gutenberg.org/ebooks/21684', 'pt', 410), +(52123, 'A Source Book of Mediæval History\nDocuments Illustrative of European Life and Institutions from the German Invasions to the Renaissance', NULL, '2012-03-21', 40, 'https://www.gutenberg.org/ebooks/39227', 'en', 17485), +(52124, 'On the Old Road Vol. 1 (of 2)\nA Collection of Miscellaneous Essays and Articles on Art and Literature', 'Ruskin, John', '2008-06-02', 22, 'https://www.gutenberg.org/ebooks/25678', 'en', 787), +(52125, 'Hawaii National Park: A Guide for the Haleakala Section, Island of Maui, Hawaii', 'Ruhle, George Cornelius', '2018-06-02', 9, 'https://www.gutenberg.org/ebooks/57258', 'en', 17486), +(52126, 'The Knights of the White Shield\nUp-the-Ladder Club Series, Round One Play', 'Rand, Edward A. (Edward Augustus)', '2005-02-04', 12, 'https://www.gutenberg.org/ebooks/14903', 'en', 17487), +(52127, 'Barbara Blomberg — Volume 08', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5568', 'en', 803), +(52128, 'The Canadian Entomologist, Vol. XII., No. 2, February 1880', 'Various', '2018-10-30', 5, 'https://www.gutenberg.org/ebooks/58210', 'en', 13161), +(52129, 'A Modern Mercenary', 'Prichard, Hesketh Vernon Hesketh', '2009-02-24', 12, 'https://www.gutenberg.org/ebooks/28167', 'en', 7704), +(52130, 'The Hole in the Wall', 'Morrison, Arthur', '2010-12-01', 49, 'https://www.gutenberg.org/ebooks/34538', 'en', 10623), +(52131, 'The Quadroon: Adventures in the Far West', 'Reid, Mayne', '2009-01-27', 39, 'https://www.gutenberg.org/ebooks/27913', 'en', 11836), +(52132, 'The Religion of Ancient Scandinavia', 'Craigie, William A. (William Alexander), Sir', '2014-06-28', 19, 'https://www.gutenberg.org/ebooks/46118', 'en', 6418), +(52133, 'Maahengen salaisuus: Tohtori salapoliisina', 'Juva, Valter', '2005-09-07', 7, 'https://www.gutenberg.org/ebooks/16668', 'fi', 128), +(52134, 'The Christian View of the Old Testament', 'Eiselen, Frederick Carl', '2010-04-03', 8, 'https://www.gutenberg.org/ebooks/31876', 'en', 9365), +(52135, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 725, November 17, 1877', 'Various', '2016-01-04', 22, 'https://www.gutenberg.org/ebooks/50841', 'en', 18), +(52136, 'Nirvana Days', 'Rice, Cale Young', '2009-10-07', 17, 'https://www.gutenberg.org/ebooks/30198', 'en', 8), +(52137, 'La Comédie humaine - Volume 04', 'Balzac, Honoré de', '2015-01-26', 54, 'https://www.gutenberg.org/ebooks/48082', 'fr', 642), +(52138, 'Memoirs of Extraordinary Popular Delusions — Volume 1', 'Mackay, Charles', '1996-08-01', 133, 'https://www.gutenberg.org/ebooks/636', 'en', 10037), +(52139, 'The Bronze Age and the Celtic World', 'Peake, Harold', '2014-09-21', 21, 'https://www.gutenberg.org/ebooks/46924', 'en', 5823), +(52140, 'Aesop\'s Fables - Volume 05', 'Aesop', '2006-10-26', 7, 'https://www.gutenberg.org/ebooks/19620', 'en', 7140), +(52141, 'Chambers\'s Edinburgh Journal, No. 308\r\nNew Series, Saturday, November 24, 1849', 'Various', '2015-06-06', 5, 'https://www.gutenberg.org/ebooks/49150', 'en', 18), +(52142, 'Life Sentence', 'McConnell, James V.', '2009-09-02', 26, 'https://www.gutenberg.org/ebooks/29889', 'en', 179), +(52143, 'The Mentor: Russian Music, Vol. 4, Num. 18, Serial No. 118, November 1, 1916', 'Finck, Henry T.', '2016-05-03', 19, 'https://www.gutenberg.org/ebooks/51993', 'en', 17488), +(52144, 'The World English Bible (WEB): Philippians', 'Anonymous', '2005-06-01', 17, 'https://www.gutenberg.org/ebooks/8277', 'en', 15031), +(52145, 'Lettre à Louis XIV', 'Fénelon, François de Salignac de La Mothe-', '2004-11-01', 39, 'https://www.gutenberg.org/ebooks/13914', 'fr', 1247), +(52146, 'The Vitalized School', 'Pearson, Francis B. (Francis Bail)', '2006-01-23', 14, 'https://www.gutenberg.org/ebooks/17588', 'en', 341), +(52147, 'La tabernaria', 'Porta, Giambattista della', '2009-03-18', 14, 'https://www.gutenberg.org/ebooks/28355', 'it', 407), +(52148, 'Aino Folk-Tales', 'Chamberlain, Basil Hall', '2009-07-01', 21, 'https://www.gutenberg.org/ebooks/29287', 'en', 1738), +(52149, 'There & Back', 'MacDonald, George', '2005-09-01', 68, 'https://www.gutenberg.org/ebooks/8879', 'en', 942), +(52150, 'Corea or Cho-sen: The Land of the Morning Calm', 'Landor, Arnold Henry Savage', '2004-08-07', 35, 'https://www.gutenberg.org/ebooks/13128', 'en', 2039), +(52151, 'Industrial Biography: Iron Workers and Tool Makers', 'Smiles, Samuel', '1996-01-01', 63, 'https://www.gutenberg.org/ebooks/404', 'en', 1328), +(52152, 'English Villages', 'Ditchfield, P. H. (Peter Hampson)', '2004-08-13', 104, 'https://www.gutenberg.org/ebooks/9197', 'en', 17489), +(52153, 'The Quiver 3/1900', 'Anonymous', '2013-09-06', 8, 'https://www.gutenberg.org/ebooks/43658', 'en', 1866), +(52154, 'Helpful Visions\r\nThe Fourteenth Book of the Faith-Promoting Series. Intended for the Instruction and Encouragement of Young Latter-day Saints', NULL, '2015-07-05', 15, 'https://www.gutenberg.org/ebooks/49362', 'en', 377), +(52155, 'The History of Freedom, and Other Essays', 'Acton, John Emerich Edward Dalberg Acton, Baron', '2010-02-15', 60, 'https://www.gutenberg.org/ebooks/31278', 'en', 7868), +(52156, 'The Bible, King James version, Book 45: Romans', 'Anonymous', '2005-04-01', 26, 'https://www.gutenberg.org/ebooks/8045', 'en', 4669), +(52157, 'When London Burned : a Story of Restoration Times and the Great Fire', 'Henty, G. A. (George Alfred)', '2005-04-01', 72, 'https://www.gutenberg.org/ebooks/7831', 'en', 323), +(52158, 'Set in Silver', 'Williamson, C. N. (Charles Norris)', '2006-09-30', 13, 'https://www.gutenberg.org/ebooks/19412', 'en', 109), +(52159, 'The Green Casket, and other stories', 'Molesworth, Mrs.', '2011-07-26', 5, 'https://www.gutenberg.org/ebooks/36861', 'en', 1817), +(52160, 'Ophiolatreia\r\nAn Account of the Rites and Mysteries Connected with the Origin, Rise, and Development of Serpent Worship in Various Parts of the World', 'Sellon, Edward', '2012-02-29', 33, 'https://www.gutenberg.org/ebooks/39015', 'en', 9034), +(52161, 'The Right Stuff: Some Episodes in the Career of a North Briton', 'Hay, Ian', '2007-03-25', 27, 'https://www.gutenberg.org/ebooks/20904', 'en', 4341), +(52162, 'A Modern History, From the Time of Luther to the Fall of Napoleon\nFor the Use of Schools and Colleges', 'Lord, John', '2008-02-13', 64, 'https://www.gutenberg.org/ebooks/24598', 'en', 11934), +(52163, 'Pages', 'Mallarmé, Stéphane', '2003-11-01', 56, 'https://www.gutenberg.org/ebooks/4688', 'fr', 2508), +(52164, 'Sussex Gorse: The Story of a Fight', 'Kaye-Smith, Sheila', '2018-04-15', 11, 'https://www.gutenberg.org/ebooks/56984', 'en', 1220), +(52165, 'The Toy Shop: A Romantic Story of Lincoln the Man', 'Gerry, Margarita Spalding', '2012-05-28', 11, 'https://www.gutenberg.org/ebooks/39829', 'en', 1457), +(52166, 'Memoirs of the Revolution in Bengal, Anno Dom. 1757', 'Watts, William, active 1737-1758', '2016-07-07', 23, 'https://www.gutenberg.org/ebooks/52518', 'en', 17490), +(52167, 'Hihhuleita: Kuvauksia Itä-Suomesta', 'Ahrenberg, Jacob', '2013-01-27', 23, 'https://www.gutenberg.org/ebooks/41933', 'fi', 61), +(52168, 'True Words for Brave Men: A Book for Soldiers\' and Sailors\' Libraries', 'Kingsley, Charles', '2006-12-19', 8, 'https://www.gutenberg.org/ebooks/20138', 'en', 2745), +(52169, 'My Queen: A Weekly Journal for Young Women. Issue 5, October 27, 1900\nMarion Marlowe Entrapped; or, The Victim of Professional Jealousy', 'Sheldon, Lurana', '2018-10-04', 6, 'https://www.gutenberg.org/ebooks/58022', 'en', 6530), +(52170, 'La fabrique de mariages, Vol. 6', 'Féval, Paul', '2018-09-06', 6, 'https://www.gutenberg.org/ebooks/57856', 'fr', 298), +(52171, 'Daniel Deronda', 'Eliot, George', '2005-02-01', 348, 'https://www.gutenberg.org/ebooks/7469', 'en', 9622), +(52172, 'Väinölä\nHelmivyö suomalaista runoutta', 'Various', '2006-08-07', 35, 'https://www.gutenberg.org/ebooks/18998', 'fi', 1171), +(52173, 'The Darwinian Hypothesis', 'Huxley, Thomas Henry', '2001-11-01', 31, 'https://www.gutenberg.org/ebooks/2927', 'en', 5315), +(52174, 'The Monkey\'s Paw', 'Jacobs, W. W. (William Wymark)', '2009-05-01', 25, 'https://www.gutenberg.org/ebooks/28731', 'en', 461), +(52175, 'Smokiana: Historical; Ethnographical', 'Pritchett, R. T. (Robert Taylor)', '2015-08-15', 11, 'https://www.gutenberg.org/ebooks/49706', 'en', 17491), +(52176, 'The Ladies\' Vase; Or, Polite Manual for Young Ladies', 'American lady', '2005-10-04', 29, 'https://www.gutenberg.org/ebooks/16802', 'en', 5272), +(52177, 'The First Book of Factoids', 'Vaknin, Samuel', '2005-07-01', 26, 'https://www.gutenberg.org/ebooks/8421', 'en', 2801), +(52178, 'The Mystery Crash\nSky Scout Series, #1', 'Powell, Van', '2017-08-15', 12, 'https://www.gutenberg.org/ebooks/55359', 'en', 128), +(52179, 'Naudsonce', 'Piper, H. Beam', '2006-08-18', 57, 'https://www.gutenberg.org/ebooks/19076', 'en', 67), +(52180, 'Solomon Crow\'s Christmas Pockets and Other Tales', 'Stuart, Ruth McEnery', '2009-01-12', 16, 'https://www.gutenberg.org/ebooks/27779', 'en', 4475), +(52181, 'An Ideal Kitchen: Miss Parloa\'s Kitchen Companion\r\nA Guide for All Who Would Be Good Housekeepers', 'Parloa, Maria', '2017-01-05', 30, 'https://www.gutenberg.org/ebooks/53892', 'en', 17492), +(52182, 'Verta verrasta', 'Shakespeare, William', '2014-02-04', 15, 'https://www.gutenberg.org/ebooks/44825', 'fi', 907), +(52183, 'The Titanic Disaster Poem', 'McKenzie, J. H.', '2010-04-23', 2, 'https://www.gutenberg.org/ebooks/32099', 'en', 17493), +(52184, 'Life of John Knox, Fifth Edition, Vol. 2 of 2\nContaining Illustrations of the History of the Reformation in Scotland', 'M\'Crie, Thomas', '2016-08-30', 5, 'https://www.gutenberg.org/ebooks/52940', 'en', 3371), +(52185, 'Zoological Illustrations, Volume 1\r\nor, Original Figures and Descriptions of New, Rare, or Interesting Animals', 'Swainson, William', '2012-04-17', 45, 'https://www.gutenberg.org/ebooks/39471', 'en', 8764), +(52186, 'Punch, or the London Charivari, Volume 152, April 11, 1917', 'Various', '2005-01-23', 6, 'https://www.gutenberg.org/ebooks/14769', 'en', 134), +(52187, 'Miss Million\'s Maid: A Romance of Love and Fortune', 'Ruck, Berta', '2010-09-27', 51, 'https://www.gutenberg.org/ebooks/33977', 'en', 432), +(52188, 'Sons and Daughters', 'Oliphant, Mrs. (Margaret)', '2018-12-09', 13, 'https://www.gutenberg.org/ebooks/58446', 'en', 61), +(52189, 'A Course of Mechanical, Magnetical, Optical, Hydrostatical and Pneumatical Experiments\r\nperform\'d by Francis Hauksbee, and the Explanatory Lectures read by William Whiston, M.A.', 'Whiston, William', '2013-10-23', 15, 'https://www.gutenberg.org/ebooks/44019', 'en', 17494), +(52190, 'The Story of an Untold Love', 'Ford, Paul Leicester', '2011-06-15', 86, 'https://www.gutenberg.org/ebooks/36439', 'en', 61), +(52191, 'La Montálvez', 'Pereda, José María de', '2008-06-16', 29, 'https://www.gutenberg.org/ebooks/25812', 'es', 818), +(52192, 'Betty\'s Virginia Christmas', 'Seawell, Molly Elliot', '2019-05-24', 28, 'https://www.gutenberg.org/ebooks/59594', 'en', 585), +(52193, 'The History of Don Quixote, Volume 2, Part 27', 'Cervantes Saavedra, Miguel de', '2004-07-24', 2, 'https://www.gutenberg.org/ebooks/5930', 'en', 3761), +(52194, 'Dietetics for Nurses', 'Proudfit, Fairfax T. (Fairfax Throckmorton)', '2010-08-08', 15, 'https://www.gutenberg.org/ebooks/33379', 'en', 8396), +(52195, 'The Bushranger\'s Secret', 'Clarke, Henry, Mrs.', '2012-02-08', 5, 'https://www.gutenberg.org/ebooks/38791', 'en', 421), +(52196, 'The Bungalow Boys Along the Yukon', 'Goldfrap, John Henry', '2012-05-07', 15, 'https://www.gutenberg.org/ebooks/39643', 'en', 17495), +(52197, 'International Law', 'Tucker, George Fox', '2013-01-02', 20, 'https://www.gutenberg.org/ebooks/41759', 'en', 4333), +(52198, 'American Hero-Myths: A Study in the Native Religions of the Western Continent', 'Brinton, Daniel G. (Daniel Garrison)', '2004-02-01', 120, 'https://www.gutenberg.org/ebooks/11029', 'en', 6626), +(52199, 'Trout Flies of Devon and Cornwall, and When and How to Use Them', 'Soltau, G. W. (George W.)', '2019-01-11', 13, 'https://www.gutenberg.org/ebooks/58674', 'en', 2080), +(52200, 'Dream Psychology: Psychoanalysis for Beginners', 'Freud, Sigmund', '2005-03-28', 664, 'https://www.gutenberg.org/ebooks/15489', 'en', 3640), +(52201, 'U.S. Copyright Renewals, 1957 January - June', 'Library of Congress. Copyright Office', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11815', 'en', 4170), +(52202, 'A Study of Army Camp Life during American Revolution', 'Snuff, Mary Hazel', '2017-11-13', 20, 'https://www.gutenberg.org/ebooks/55957', 'en', 17496), +(52203, 'Madame Thérèse\nIntroduction and notes by Edward Manley', 'Erckmann-Chatrian', '2007-07-10', 28, 'https://www.gutenberg.org/ebooks/22039', 'fr', 248), +(52204, 'Exercises upon the Different Parts of Italian Speech, with References to Veneroni\'s Grammar\r\nto which is added an abridgement of the Roman history, intended at once to make the learner acquainted with history, and the idiom of the Italian language', 'Bottarelli, Ferdinando', '2015-11-09', 17, 'https://www.gutenberg.org/ebooks/50419', 'en', 17497), +(52205, 'Our Little German Cousin', 'Wade, Mary Hazelton Blanchard', '2013-09-28', 21, 'https://www.gutenberg.org/ebooks/43832', 'en', 4933), +(52206, 'The Wit of Women\nFourth Edition', 'Sanborn, Kate', '2009-04-05', 41, 'https://www.gutenberg.org/ebooks/28503', 'en', 1697), +(52207, 'Don Carlos: A Play', 'Schiller, Friedrich', '2004-12-08', 54, 'https://www.gutenberg.org/ebooks/6789', 'en', 17498), +(52208, 'The American Missionary — Vol. 33, No. 3, March, 1879', 'Various', '2017-06-11', 4, 'https://www.gutenberg.org/ebooks/54885', 'en', 562), +(52209, 'The Jucklins: A Novel', 'Read, Opie Percival', '2008-08-31', 19, 'https://www.gutenberg.org/ebooks/26499', 'en', 17499), +(52210, 'The Light of Divine Guidance (Volume 1)', 'Shoghi, Effendi', '2006-09-15', 17, 'https://www.gutenberg.org/ebooks/19244', 'en', 17500), +(52211, 'Punch, or the London Charivari, Vol. 150, March 22, 1916', 'Various', '2007-09-29', 11, 'https://www.gutenberg.org/ebooks/22805', 'en', 134), +(52212, 'Pähkinänrusentaja ja hiirikuningas', 'Hoffmann, E. T. A. (Ernst Theodor Amadeus)', '2015-07-27', 6, 'https://www.gutenberg.org/ebooks/49534', 'fi', 548), +(52213, 'The Poison Belt', 'Doyle, Arthur Conan', '2005-08-01', 5, 'https://www.gutenberg.org/ebooks/8613', 'en', 17407), +(52214, 'Autobiography of a Pocket-Handkerchief', 'Cooper, James Fenimore', '2000-09-01', 24, 'https://www.gutenberg.org/ebooks/2329', 'en', 1141), +(52215, 'A Verdade a Passo Lento ou Guerra do Escaravelho contra a Borboleta Constitucional do Porto', 'Unknown', '2011-01-14', 13, 'https://www.gutenberg.org/ebooks/34960', 'pt', 17501), +(52216, 'Copyright Law of the United States of America\r\nContained in Title 17 of the United States Code', 'Library of Congress. Copyright Office', '1995-04-01', 57, 'https://www.gutenberg.org/ebooks/252', 'en', 1878), +(52217, 'The Modern Scottish Minstrel, Volume 1.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2006-05-15', 10, 'https://www.gutenberg.org/ebooks/18396', 'en', 17502), +(52218, 'The Vagrant Duke', 'Gibbs, George', '2009-08-06', 24, 'https://www.gutenberg.org/ebooks/29617', 'en', 323), +(52219, 'Napoleon and Blücher: An Historical Novel', 'Mühlbach, L. (Luise)', '2003-03-01', 31, 'https://www.gutenberg.org/ebooks/3801', 'en', 4854), +(52220, 'Nan Sherwood at Lakeview Hall; Or, The Mystery of the Haunted Boathouse', 'Carr, Annie Roe', '2011-02-12', 18, 'https://www.gutenberg.org/ebooks/35248', 'en', 1655), +(52221, 'De Vliegende Kogel', 'Rinke, Jan', '2014-12-14', 16, 'https://www.gutenberg.org/ebooks/47668', 'nl', 2164), +(52222, 'The Moving Picture Girls Under the Palms\nOr Lost in the Wilds of Florida', 'Hope, Laura Lee', '2005-11-20', 19, 'https://www.gutenberg.org/ebooks/17118', 'en', 3200), +(52223, 'The Destiny of the Soul: A Critical History of the Doctrine of a Future Life', 'Alger, William Rounseville', '2006-08-19', 40, 'https://www.gutenberg.org/ebooks/19082', 'en', 17503), +(52224, 'The Hidden Places', 'Sinclair, Bertrand W.', '2006-04-11', 22, 'https://www.gutenberg.org/ebooks/18150', 'en', 1061), +(52225, 'The Coryston Family\nA Novel', 'Ward, Humphry, Mrs.', '2005-12-01', 24, 'https://www.gutenberg.org/ebooks/9507', 'en', 432), +(52226, 'Iltalampun ääressä I', 'Aina', '2006-03-05', 16, 'https://www.gutenberg.org/ebooks/17924', 'fi', 61), +(52227, 'The Third Circle', 'Norris, Frank', '2015-03-31', 20, 'https://www.gutenberg.org/ebooks/48620', 'en', 1028), +(52228, 'Thoughts on the Proposed Inclosure of Waltham (commonly called Epping) and Hainault Forests\r\nIn which a new plan is suggested for disafforesting the same: with the heads of the bill now proposed for that purpose', 'Street, Thomas', '2017-01-02', 6, 'https://www.gutenberg.org/ebooks/53866', 'en', 15910), +(52229, '\"Granny\'s Chapters\" (on scriptural subjects)\r\nThe New Testament, with a Sketch of the Subsequent History of the Jews.', 'Ross, Mary, Lady', '2012-01-12', 11, 'https://www.gutenberg.org/ebooks/38557', 'en', 5932), +(52230, 'Fables in Rhyme for Little Folks\nFrom the French of La Fontaine', 'La Fontaine, Jean de', '2008-01-01', 56, 'https://www.gutenberg.org/ebooks/24108', 'en', 859), +(52231, 'Germinal', 'Zola, Émile', '2018-02-08', 213, 'https://www.gutenberg.org/ebooks/56528', 'en', 11421), +(52232, 'Storia d\'Italia dal 1789 al 1814, tomo III', 'Botta, Carlo', '2014-06-06', 20, 'https://www.gutenberg.org/ebooks/45903', 'it', 7184), +(52233, 'Ghosts and Family Legends: A Volume for Christmas', 'Crowe, Catherine', '2012-04-19', 14, 'https://www.gutenberg.org/ebooks/39485', 'en', 17504), +(52234, 'Godey\'s Lady\'s Book, Vol. 42, May, 1851', 'Various', '2010-09-23', 43, 'https://www.gutenberg.org/ebooks/33983', 'en', 5092), +(52235, 'Spiritual Reformers in the 16th & 17th Centuries', 'Jones, Rufus M. (Rufus Matthew)', '2008-03-28', 45, 'https://www.gutenberg.org/ebooks/24934', 'en', 1148), +(52236, 'Sisters', 'Cambridge, Ada', '2003-07-01', 13, 'https://www.gutenberg.org/ebooks/4218', 'en', 792), +(52237, 'Μοσκιές - Διηγήματα', 'Pasagiannes, Kostes G.', '2010-06-17', 10, 'https://www.gutenberg.org/ebooks/32851', 'el', 1348), +(52238, 'De Roode Pimpernel', 'Orczy, Emmuska Orczy, Baroness', '2016-05-29', 17, 'https://www.gutenberg.org/ebooks/52188', 'nl', 323), +(52239, 'Animal Castration', 'Liautard, Alexandre François Augustin', '2019-05-20', 15, 'https://www.gutenberg.org/ebooks/59560', 'en', 17505), +(52240, 'The Profits of Religion: An Essay in Economic Interpretation', 'Sinclair, Upton', '1998-12-01', 40, 'https://www.gutenberg.org/ebooks/1558', 'en', 1759), +(52241, 'Ιστορία της Ελληνικής Επαναστάσεως, Τόμος Γ', 'Trikoupes, Spyridon', '2012-02-04', 11, 'https://www.gutenberg.org/ebooks/38765', 'el', 4493), +(52242, 'The Rise of the Dutch Republic — Volume 15: 1568, part II', 'Motley, John Lothrop', '2004-01-01', 54, 'https://www.gutenberg.org/ebooks/4816', 'en', 6577), +(52243, 'Punchinello, Volume 2, No. 38, December 17, 1870.', 'Various', '2004-02-01', 15, 'https://www.gutenberg.org/ebooks/10933', 'en', 372), +(52244, 'Murder at Large', 'Frost, Lesley', '2016-10-13', 15, 'https://www.gutenberg.org/ebooks/53268', 'en', 1335), +(52245, 'The Land of Content', 'Delano, Edith Barnard', '2019-01-13', 11, 'https://www.gutenberg.org/ebooks/58680', 'en', 1563), +(52246, 'The Moon Maid', 'Burroughs, Edgar Rice', '2019-06-14', 225, 'https://www.gutenberg.org/ebooks/59752', 'en', 26), +(52247, 'Westminster', 'Besant, Walter', '2007-05-31', 34, 'https://www.gutenberg.org/ebooks/21648', 'en', 16428), +(52248, 'Jack Harkaway in New York; or, The Adventures of the Travelers\' Club', 'Hemyng, Bracebridge', '2014-08-15', 27, 'https://www.gutenberg.org/ebooks/46588', 'en', 323), +(52249, 'Gladiator', 'Wylie, Philip', '2013-06-11', 145, 'https://www.gutenberg.org/ebooks/42914', 'en', 2079), +(52250, 'The Confessions of a Caricaturist, Vol. 1', 'Furniss, Harry', '2009-07-16', 29, 'https://www.gutenberg.org/ebooks/29425', 'en', 15137), +(52251, 'The Great Push: An Episode of the Great War', 'MacGill, Patrick', '2017-06-09', 17, 'https://www.gutenberg.org/ebooks/54871', 'en', 1299), +(52252, 'Shapes of Clay', 'Bierce, Ambrose', '2004-06-01', 40, 'https://www.gutenberg.org/ebooks/12658', 'en', 178), +(52253, 'Ekkehard: A Tale of the Tenth Century. Vol. 1 (of 2)', 'Scheffel, Joseph Victor von', '2011-04-13', 24, 'https://www.gutenberg.org/ebooks/35846', 'en', 16317), +(52254, 'The Edinburgh New Philosophical Journal, Vol. XLIX\nApril-October 1850', 'Various', '2013-02-18', 55, 'https://www.gutenberg.org/ebooks/42128', 'en', 210), +(52255, 'Somebody\'s Luggage', 'Dickens, Charles', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9735', 'en', 45), +(52256, 'The Instruction of Ptah-Hotep and the Instruction of Ke\'Gemni\nThe Oldest Books in the World', 'Ptahhotep', '2009-11-20', 105, 'https://www.gutenberg.org/ebooks/30508', 'en', 8979), +(52257, 'How Doth the Simple Spelling Bee', 'Wister, Owen', '2007-12-19', 28, 'https://www.gutenberg.org/ebooks/23923', 'en', 781), +(52258, 'Johanna d\'Arc: Kertomus hänen elämästään ja marttyrikuolemastaan', 'Twain, Mark', '2015-03-05', 34, 'https://www.gutenberg.org/ebooks/48412', 'fi', 2494), +(52259, 'Fifteen Thousand Useful Phrases\r\nA Practical Handbook Of Pertinent Expressions, Striking Similes, Literary, Commercial, Conversational, And Oratorical Terms, For The Embellishment Of Speech And Literature, And The Improvement Of The Vocabulary Of Those Persons Who Read, Write, And Speak English', 'Kleiser, Grenville', '2006-05-10', 413, 'https://www.gutenberg.org/ebooks/18362', 'en', 5252), +(52260, 'Morning and Evening Prayers for All Days of the Week\r\nTogether With Confessional, Communion, and Other Prayers and Hymns for Mornings and Evenings, and Other Occasions', 'Habermann, Johann', '2011-01-17', 187, 'https://www.gutenberg.org/ebooks/34994', 'en', 8876), +(52261, 'New National Fourth Reader', 'Barnes, Charles J. (Charles Joseph)', '2005-05-14', 29, 'https://www.gutenberg.org/ebooks/15825', 'en', 12699), +(52262, 'Illustrated Catalogue of Cotton Machinery', 'Howard & Bullough American Machine Company', '2011-12-14', 17, 'https://www.gutenberg.org/ebooks/38301', 'en', 17506), +(52263, 'A New System of Sword Exercise for Infantry', 'Burton, Richard Francis, Sir', '2019-04-21', 54, 'https://www.gutenberg.org/ebooks/59336', 'en', 5167), +(52264, 'A Queens Delight\nThe Art of Preserving, Conserving and Candying. As also, A right\nKnowledge of making Perfumes, and Distilling the most Excellent\nWaters.', 'Anonymous', '2005-02-12', 147, 'https://www.gutenberg.org/ebooks/15019', 'en', 2927), +(52265, 'The Tatler, Volume 2', 'Steele, Richard, Sir', '2014-05-26', 27, 'https://www.gutenberg.org/ebooks/45769', 'en', 17507), +(52266, 'Varjojen kautta: Nykyajan kuvaus', 'Roos, Mathilda', '2011-09-08', 8, 'https://www.gutenberg.org/ebooks/37349', 'fi', 2168), +(52267, 'Typee: A Romance of the South Seas', 'Melville, Herman', '1999-09-01', 331, 'https://www.gutenberg.org/ebooks/1900', 'en', 3421), +(52268, 'The Paper Cap: A Story of Love and Labor', 'Barr, Amelia E.', '2015-09-30', 6, 'https://www.gutenberg.org/ebooks/50089', 'en', 8215), +(52269, 'The Go Ahead Boys and the Treasure Cave', 'Kay, Ross', '2010-01-13', 7, 'https://www.gutenberg.org/ebooks/30950', 'en', 1526), +(52270, 'Mr. Rabbit\'s Wedding\r\nHollow Tree Stories', 'Paine, Albert Bigelow', '2009-02-25', 13, 'https://www.gutenberg.org/ebooks/28193', 'en', 625), +(52271, 'Bric-à-brac', 'Dumas, Alexandre', '2004-08-01', 28, 'https://www.gutenberg.org/ebooks/6319', 'fr', 687), +(52272, 'Where the Souls of Men are Calling', 'Harris, Credo Fitch', '2008-10-07', 20, 'https://www.gutenberg.org/ebooks/26835', 'en', 579), +(52273, 'Der Eroberer\r\nEine poetische Phantasie in fünf Kaprizzen. Aus alten Urkunden mit neuen Anmerkungen', 'Weidmann, Paul', '2015-09-17', 6, 'https://www.gutenberg.org/ebooks/49998', 'de', 2529), +(52274, 'The Education of Eric Lane', 'McKenna, Stephen', '2009-06-05', 12, 'https://www.gutenberg.org/ebooks/29041', 'en', 432), +(52275, 'Cours de philosophie positive. (2/6)', 'Comte, Auguste', '2010-04-04', 33, 'https://www.gutenberg.org/ebooks/31882', 'fr', 3926), +(52276, 'The Secret Sharer', 'Conrad, Joseph', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9351', 'en', 10313), +(52277, 'Memoirs of the Duchesse De Dino (Afterwards Duchesse de Talleyrand et de Sagan), 1841-1850', 'Dino, Dorothée, duchesse de', '2015-01-25', 8, 'https://www.gutenberg.org/ebooks/48076', 'en', 2890), +(52278, 'Runoja. Uusi sarja', 'Juva, Valter', '2006-06-27', 26, 'https://www.gutenberg.org/ebooks/18706', 'fi', 8), +(52279, 'The American Missionary — Volume 33, No. 09, September, 1879', 'Various', '2017-03-25', 3, 'https://www.gutenberg.org/ebooks/54429', 'en', 562), +(52280, 'Les cavaliers de la nuit, deuxième partie (t. 3/4)', 'Ponson du Terrail', '2014-12-28', 6, 'https://www.gutenberg.org/ebooks/47802', 'fr', 298), +(52281, 'Adventures of a Young Naturalist', 'Biart, Lucien', '2008-07-08', 14, 'https://www.gutenberg.org/ebooks/26009', 'en', 2487), +(52282, 'The World English Bible (WEB): Titus', 'Anonymous', '2005-06-01', 11, 'https://www.gutenberg.org/ebooks/8283', 'en', 7470), +(52283, 'The Life and Adventures of Peter Wilkins, Complete (Volumes 1 and 2)', 'Paltock, Robert', '2016-05-02', 16, 'https://www.gutenberg.org/ebooks/51967', 'en', 323), +(52284, 'The Mythological Zoo', 'Herford, Oliver', '2007-12-06', 126, 'https://www.gutenberg.org/ebooks/23749', 'en', 6382), +(52285, 'A Complete Edition of the Works of Nancy Luce', 'Luce, Nancy', '2009-06-30', 16, 'https://www.gutenberg.org/ebooks/29273', 'en', 350), +(52286, 'A Queen of Tears, vol. 2 of 2\r\nCaroline Matilda, Queen of Denmark and Norway and Princess of Great Britain and Ireland', 'Wilkins, W. H. (William Henry)', '2016-03-05', 5, 'https://www.gutenberg.org/ebooks/51369', 'en', 4409), +(52287, 'Said the Observer', 'Stellman, Louis J. (Louis John)', '2004-07-06', 25, 'https://www.gutenberg.org/ebooks/12832', 'en', 190), +(52288, 'The Hurricane Guide\r\nBeing an Attempt to Connect the Rotary Gale or Revolving Storm with Atmospheric Waves.', 'Birt, William Radcliff', '2006-06-08', 21, 'https://www.gutenberg.org/ebooks/18534', 'en', 14859), +(52289, 'The Gerrard Street Mystery and Other Weird Tales', 'Dent, John Charles', '2004-11-01', 23, 'https://www.gutenberg.org/ebooks/6917', 'en', 128), +(52290, 'Scientific American Supplement, No. 417, December 29, 1883', 'Various', '2005-10-01', 18, 'https://www.gutenberg.org/ebooks/9163', 'en', 210), +(52291, 'Montreal, 1535-1914. Vol. 2. Under British Rule, 1760-1914', 'Atherton, William H. (William Henry)', '2015-02-12', 21, 'https://www.gutenberg.org/ebooks/48244', 'en', 7592), +(52292, 'Germany, Turkey, and Armenia\r\nA Selection of Documentary Evidence Relating to the Armenian Atrocities from German and other Sources', 'Anonymous', '2015-07-08', 13, 'https://www.gutenberg.org/ebooks/49396', 'en', 3565), +(52293, 'Quotations from the Project Gutenberg Editions of the Works of John Galsworthy', 'Galsworthy, John', '2002-10-01', 11, 'https://www.gutenberg.org/ebooks/3459', 'en', 1026), +(52294, 'William the Third', 'Traill, H. D. (Henry Duff)', '2011-07-29', 13, 'https://www.gutenberg.org/ebooks/36895', 'en', 641), +(52295, 'The Whites and the Blues', 'Dumas, Alexandre', '2019-07-17', 164, 'https://www.gutenberg.org/ebooks/59938', 'en', 4854), +(52296, 'Seeds of Pine', 'Murphy, Emily F. (Emily Ferguson)', '2010-05-18', 12, 'https://www.gutenberg.org/ebooks/32409', 'en', 2655), +(52297, 'A Lecture On Heads\r\nAs Delivered By Mr. Charles Lee Lewes, To Which Is Added, An Essay On Satire, With Forty-Seven Heads By Nesbit, From Designs By Thurston, 1812', 'Stevens, George Alexander', '2007-06-12', 12, 'https://www.gutenberg.org/ebooks/21822', 'en', 6571), +(52298, 'The Gunpowder Plot and Lord Mounteagle\'s Letter, Being a Proof, with Moral Certitude, of the Authorship of the Document\r\nTogether with Some Account of the Whole Thirteen Gunpowder Conspirators, Including Guy Fawkes', 'Spink, Henry', '2012-06-18', 24, 'https://www.gutenberg.org/ebooks/40029', 'en', 4300), +(52299, 'Jumalan kiitos, pöytä on katettu: Huvinäytelmä yhdessä näytöksessä', 'Benedix, Roderich', '2011-11-25', 10, 'https://www.gutenberg.org/ebooks/38133', 'fi', 9839), +(52300, 'Tarrytown', 'McGuinn, Roger', '2004-01-01', 1, 'https://www.gutenberg.org/ebooks/10759', 'en', 3717), +(52301, 'Incidents of Travel in Greece, Turkey, Russia, and Poland, Vol. 2 (of 2)', 'Stephens, John L.', '2011-11-09', 21, 'https://www.gutenberg.org/ebooks/37947', 'en', 4713), +(52302, 'Mrs. Farrell', 'Howells, William Dean', '2018-04-12', 9, 'https://www.gutenberg.org/ebooks/56970', 'en', 17508), +(52303, 'The Dance', NULL, '2019-03-20', 25, 'https://www.gutenberg.org/ebooks/59104', 'en', 13725), +(52304, 'Prices of Books\r\nAn Inquiry into the Changes in the Price of Books which have occurred in England at different Periods', 'Wheatley, Henry B. (Henry Benjamin)', '2012-09-22', 19, 'https://www.gutenberg.org/ebooks/40815', 'en', 17509), +(52305, 'Der Tunnel: Roman', 'Kellermann, Bernhard', '2013-12-23', 33, 'https://www.gutenberg.org/ebooks/44489', 'de', 253), +(52306, 'What Will He Do with It? — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7664', 'en', 137), +(52307, 'A History of the British Army, Vol. 1\r\nFirst Part—to the Close of the Seven Years\' War', 'Fortescue, J. W. (John William), Sir', '2017-11-14', 25, 'https://www.gutenberg.org/ebooks/55968', 'en', 462), +(52308, 'Nature Books Popular and Scientific from The Franklin Bookshop, 1910\nCatalogue 24, 1910-11 Season', 'Rhoads, Samuel N. (Samuel Nicholson)', '2014-08-09', 11, 'https://www.gutenberg.org/ebooks/46543', 'en', 17510), +(52309, 'An Essay towards Fixing the True Standards of Wit, Humour, Railery, Satire, and Ridicule (1744)', 'Morris, Corbyn', '2005-07-07', 22, 'https://www.gutenberg.org/ebooks/16233', 'en', 5576), +(52310, 'Kaksi laukausta', 'Drachmann, Holger', '2007-07-16', 9, 'https://www.gutenberg.org/ebooks/22006', 'fi', 2631), +(52311, 'My Memoirs, Vol. III, 1826 to 1830', 'Dumas, Alexandre', '2015-11-10', 18, 'https://www.gutenberg.org/ebooks/50426', 'en', 9464), +(52312, 'Motor Matt\'s Red Flyer; or, On the High Gear\r\nMotor Stories Thrilling Adventure Motor Fiction No. 6, April 3, 1909', 'Matthews, Stanley R.', '2014-11-29', 9, 'https://www.gutenberg.org/ebooks/47491', 'en', 4951), +(52313, 'The Roman Poets of the Augustan Age: Virgil', 'Sellar, W. Y. (William Young)', '2010-10-29', 17, 'https://www.gutenberg.org/ebooks/34163', 'en', 17511), +(52314, 'The Twins, and How They Entertained the New Minister: A Farce', 'Guptill, Elizabeth F. (Elizabeth Frances)', '2017-07-19', 15, 'https://www.gutenberg.org/ebooks/55154', 'en', 907), +(52315, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 11', 'Hakluyt, Richard', '2004-06-01', 17, 'https://www.gutenberg.org/ebooks/12693', 'en', 885), +(52316, 'Stories Pictures Tell. Book Four', 'Carpenter, Flora L. (Flora Leona)', '2010-02-26', 17, 'https://www.gutenberg.org/ebooks/31411', 'en', 3670), +(52317, 'George Fox: An Autobiography', 'Fox, George', '2013-06-24', 57, 'https://www.gutenberg.org/ebooks/43031', 'en', 2028), +(52318, 'The Choir Invisible', 'Allen, James Lane', '2000-09-01', 18, 'https://www.gutenberg.org/ebooks/2316', 'en', 1996), +(52319, 'Le Téléphone, le Microphone et le Phonographe', 'Du Moncel, Th., comte', '2008-12-20', 34, 'https://www.gutenberg.org/ebooks/27574', 'fr', 15796), +(52320, 'The Bay State Monthly — Volume 2, No. 2, November, 1884', 'Various', '2004-10-14', 9, 'https://www.gutenberg.org/ebooks/13741', 'en', 1593), +(52321, 'Human Leopards\nAn Account of the Trials of Human Leopards before the Special Commission Court; With a Note on Sierra Leone, Past and Present', 'Beatty, Kenneth James, Sir', '2017-01-31', 8, 'https://www.gutenberg.org/ebooks/54086', 'en', 14343), +(52322, 'A daughter of Jehu', 'Richards, Laura Elizabeth Howe', '2018-07-30', 10, 'https://www.gutenberg.org/ebooks/57603', 'en', 712), +(52323, 'How to tell the Birds from the Flowers, and other Wood-cuts\r\nA Revised Manual of Flornithology for Beginners', 'Wood, Robert Williams', '2010-08-04', 31, 'https://www.gutenberg.org/ebooks/33346', 'en', 17512), +(52324, 'How to Tell the Birds from the Flowers: A Manual of Flornithology for Beginners', 'Wood, Robert Williams', '1999-01-01', 59, 'https://www.gutenberg.org/ebooks/1593', 'en', 190), +(52325, 'The Jesuits, 1534-1921\r\nA History of the Society of Jesus from Its Foundation to the Present Time', 'Campbell, Thomas J. (Thomas Joseph)', '2013-01-03', 21, 'https://www.gutenberg.org/ebooks/41766', 'en', 11517), +(52326, 'Encyclopaedia Britannica, 11th Edition, \"Cosway, Richard\" to \"Coucy, Le Châtelain de\"\r\nVolume 7, Slice 5', 'Various', '2010-05-08', 20, 'https://www.gutenberg.org/ebooks/32294', 'en', 1081), +(52327, '俗話傾談', 'Shao, Binru', '2008-04-28', 16, 'https://www.gutenberg.org/ebooks/25223', 'zh', 1003), +(52328, 'The Port of Adventure', 'Williamson, C. N. (Charles Norris)', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/11016', 'en', 109), +(52329, 'Quotations from John L. Motley Works', 'Motley, John Lothrop', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/5133', 'en', 1026), +(52330, 'Proceedings, Third National Conference Workmen\'s Compensation for Industrial Accidents', 'National Conference on Workmen\'s Compensation for Industrial Accidents', '2013-11-18', 8, 'https://www.gutenberg.org/ebooks/44214', 'en', 17513), +(52331, 'Césarine Dietrich', 'Sand, George', '2005-01-02', 25, 'https://www.gutenberg.org/ebooks/14564', 'fr', 61), +(52332, 'Priestley in America, 1794-1804', 'Smith, Edgar Fahs', '2007-03-06', 16, 'https://www.gutenberg.org/ebooks/20751', 'en', 2565), +(52333, 'Gli duoi fratelli rivali', 'Porta, Giambattista della', '2007-06-05', 11, 'https://www.gutenberg.org/ebooks/21683', 'it', 402), +(52334, 'Armenia and the Armenians: A List of References in the New York Public Library', NULL, '2016-06-19', 15, 'https://www.gutenberg.org/ebooks/52371', 'en', 17514), +(52335, 'Art', 'Rodin, Auguste', '2019-06-24', 157, 'https://www.gutenberg.org/ebooks/59799', 'en', 787), +(52336, 'Lest We Forget: World War Stories', 'Bigwood, Inez', '2011-07-05', 23, 'https://www.gutenberg.org/ebooks/36634', 'en', 17515), +(52337, 'The Book of This and That', 'Lynd, Robert', '2010-07-15', 51, 'https://www.gutenberg.org/ebooks/33174', 'en', 20), +(52338, 'Uusi tilanhaltia', 'Jókai, Mór', '2012-08-13', 3, 'https://www.gutenberg.org/ebooks/40486', 'fi', 2326), +(52339, 'The Philippine Islands, 1493-1898, Volume 52, 1841-1898\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2018-07-01', 74, 'https://www.gutenberg.org/ebooks/57431', 'en', 8515), +(52340, 'Amtmannin Maria', 'Marlitt, E. (Eugenie)', '2008-04-07', 18, 'https://www.gutenberg.org/ebooks/25011', 'fi', 17516), +(52341, 'Utilitarianism', 'Mill, John Stuart', '2004-02-01', 447, 'https://www.gutenberg.org/ebooks/11224', 'en', 17517), +(52342, 'The Weird Sisters: A Romance. Volume 3 (of 3)', 'Dowling, Richard', '2012-12-04', 29, 'https://www.gutenberg.org/ebooks/41554', 'en', 16491), +(52343, 'Henrik Gabriel Porthan: Elämäkerran luonnos', 'Suolahti, Gunnar', '2016-09-19', 1, 'https://www.gutenberg.org/ebooks/53091', 'fi', 16394), +(52344, 'The Man in the Twilight', 'Cullum, Ridgwell', '2005-01-22', 20, 'https://www.gutenberg.org/ebooks/14756', 'en', 1690), +(52345, 'The Hollow Tree Snowed-In Book\r\nBeing a continuation of stories about the Hollow Tree and Deep Woods people', 'Paine, Albert Bigelow', '2010-10-04', 12, 'https://www.gutenberg.org/ebooks/33948', 'en', 10012), +(52346, 'Ben Hur: Una storia di Cristo', 'Wallace, Lew', '2018-12-16', 37, 'https://www.gutenberg.org/ebooks/58479', 'it', 942), +(52347, 'Terry\nA Tale of the Hill People', 'Thomson, Charles Goff', '2007-02-11', 25, 'https://www.gutenberg.org/ebooks/20563', 'en', 1351), +(52348, 'The Imperialist', 'Duncan, Sara Jeannette', '2004-03-01', 27, 'https://www.gutenberg.org/ebooks/5301', 'en', 957), +(52349, 'Riding for Ladies: With Hints on the Stable', 'O\'Donoghue, Power, Mrs.', '2013-10-24', 5, 'https://www.gutenberg.org/ebooks/44026', 'en', 2240), +(52350, 'Mercedes of Castile; Or, The Voyage to Cathay', 'Cooper, James Fenimore', '2011-06-13', 39, 'https://www.gutenberg.org/ebooks/36406', 'en', 15782), +(52351, 'The Summer Holidays: A Story for Children', 'Amerel', '2005-04-22', 8, 'https://www.gutenberg.org/ebooks/15684', 'en', 2849), +(52352, 'Fairview Boys at Lighthouse Cove; or, Carried out to Sea', 'Gordon, Frederick', '2016-05-23', 10, 'https://www.gutenberg.org/ebooks/52143', 'en', 10646), +(52353, 'Willy Reilly\nThe Works of William Carleton, Volume One', 'Carleton, William', '2005-06-07', 17, 'https://www.gutenberg.org/ebooks/16001', 'en', 440), +(52354, 'Aunt Jo\'s Scrap Bag, Volume 5\r\nJimmy\'s Cruise in the Pinafore, Etc.', 'Alcott, Louisa May', '2007-08-04', 67, 'https://www.gutenberg.org/ebooks/22234', 'en', 388), +(52355, '顔氏家訓 — Volume 05 and 06', 'Yan, Zhitui', '2005-02-01', 2, 'https://www.gutenberg.org/ebooks/7456', 'zh', 1437), +(52356, 'The Bobbin Boy; or, How Nat Got His learning', 'Thayer, William Makepeace', '2006-11-20', 10, 'https://www.gutenberg.org/ebooks/19875', 'en', 17518), +(52357, 'Riven Bonds. Vol. I.\nA Novel, in Two Volumes', 'Werner, E.', '2011-02-14', 13, 'https://www.gutenberg.org/ebooks/35283', 'en', 803), +(52358, 'Comentarios a la Constitucion de los Estados Unidos de América', 'Kent, James', '2014-09-05', 22, 'https://www.gutenberg.org/ebooks/46771', 'es', 187), +(52359, 'Princess Polly\'s Gay Winter', 'Brooks, Amy', '2004-09-01', 9, 'https://www.gutenberg.org/ebooks/6584', 'en', 62), +(52360, 'Histoire de Marie-Antoinette\nNouvelle édition revue et augmentée', 'Goncourt, Jules de', '2010-11-17', 14, 'https://www.gutenberg.org/ebooks/34351', 'fr', 4453), +(52361, 'The Mysterious Affair at Styles', 'Christie, Agatha', '1997-03-01', 3317, 'https://www.gutenberg.org/ebooks/863', 'en', 128), +(52362, 'Walter Crane\'s Painting Book\nContaining twelve coloured and twelve outline full-page plates', 'Crane, Walter', '2015-12-05', 54, 'https://www.gutenberg.org/ebooks/50614', 'en', 17519), +(52363, 'The First and the Last: A Drama in Three Scenes', 'Galsworthy, John', '2004-09-26', 35, 'https://www.gutenberg.org/ebooks/2918', 'en', 1088), +(52364, 'Modern Painters, Volume 4 (of 5)', 'Ruskin, John', '2010-03-13', 48, 'https://www.gutenberg.org/ebooks/31623', 'en', 2250), +(52365, 'Gems of Reminiscence\r\nSeventeenth Book of the Faith Promoting Series, Designed for the Instruction and Encouragement of Young Latter-day Saints', NULL, '2015-08-19', 18, 'https://www.gutenberg.org/ebooks/49739', 'en', 6249), +(52366, 'The Farmer\'s Veterinarian: A Practical Treatise on the Diseases of Farm Stock', 'Burkett, Charles William', '2017-08-16', 13, 'https://www.gutenberg.org/ebooks/55366', 'en', 10916), +(52367, 'The Builders: A Story and Study of Masonry', 'Newton, Joseph Fort', '2006-08-15', 82, 'https://www.gutenberg.org/ebooks/19049', 'en', 16306), +(52368, 'Der heilige Bürokrazius: Eine heitere Legende', 'Greinz, Rudolf', '2008-09-23', 62, 'https://www.gutenberg.org/ebooks/26694', 'de', 543), +(52369, 'Schedule of Salaries for Teachers, members of the Supervising staff and others.\nJanuary 1-August 31, 1920, inclusive', 'Boston (Mass.). School Committee', '2009-01-08', 11, 'https://www.gutenberg.org/ebooks/27746', 'en', 17520), +(52370, 'Star People', 'Dewey, Katharine Fay', '2019-08-09', 1901, 'https://www.gutenberg.org/ebooks/60081', 'en', 17521), +(52371, 'Elizabeth\'s Campaign', 'Ward, Humphry, Mrs.', '2004-10-01', 17, 'https://www.gutenberg.org/ebooks/13573', 'en', 579), +(52372, 'Kensington, Notting Hill, and Paddington\r\nWith Remembrances of the Locality 38 Years Ago', 'An Old Inhabitant', '2013-07-12', 15, 'https://www.gutenberg.org/ebooks/43203', 'en', 4685), +(52373, 'A Record of Buddhistic Kingdoms\r\nBeing an account by the Chinese monk Fa-hsien of travels in India and Ceylon (A.D. 399-414) in search of the Buddhist books of discipline', 'Faxian', '2006-03-28', 138, 'https://www.gutenberg.org/ebooks/2124', 'en', 17522); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(52374, 'The Knickerbocker, or New-York Monthly Magazine, June 1844\nVolume 23, Number 6', 'Various', '2008-05-15', 21, 'https://www.gutenberg.org/ebooks/25475', 'en', 18), +(52375, 'Historical Manual of English Prosody', 'Saintsbury, George', '2017-12-16', 28, 'https://www.gutenberg.org/ebooks/56187', 'en', 7414), +(52376, 'Love and Mr. Lewisham', 'Wells, H. G. (Herbert George)', '2004-03-01', 57, 'https://www.gutenberg.org/ebooks/11640', 'en', 17523), +(52377, 'The Stolen Statesman: Being the Story of a Hushed Up Mystery', 'Le Queux, William', '2012-10-21', 25, 'https://www.gutenberg.org/ebooks/41130', 'en', 4714), +(52378, 'The Strenuous Life\r\nThe Works of Theodore Roosevelt, Volume 12 (of 14)', 'Roosevelt, Theodore', '2019-02-03', 82, 'https://www.gutenberg.org/ebooks/58821', 'en', 14730), +(52379, 'Stories for Helen', 'Leslie, Eliza', '2010-08-23', 31, 'https://www.gutenberg.org/ebooks/33510', 'en', 2849), +(52380, 'Keeping Up Appearances\nSailor\'s Knots, Part 12.', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 28, 'https://www.gutenberg.org/ebooks/10792', 'en', 72), +(52381, 'Baily\'s Magazine of Sports and Pastimes, Volume 85\nJanuary to June, 1906', 'Various', '2018-04-26', 9, 'https://www.gutenberg.org/ebooks/57055', 'en', 17524), +(52382, 'Les Villes tentaculaires, précédées des Campagnes hallucinées', 'Verhaeren, Emile', '2014-05-05', 15, 'https://www.gutenberg.org/ebooks/45590', 'fr', 3130), +(52383, 'Orazioni', 'Negri, Ada', '2011-05-08', 19, 'https://www.gutenberg.org/ebooks/36062', 'it', 17525), +(52384, 'Macchiavellis Buch vom Fürsten', 'Machiavelli, Niccolò', '2012-05-27', 100, 'https://www.gutenberg.org/ebooks/39816', 'de', 17078), +(52385, 'Kalevala näyttämöllä: III sarja (of 3)', NULL, '2016-07-08', 1, 'https://www.gutenberg.org/ebooks/52527', 'fi', 382), +(52386, 'Cleek: the Man of the Forty Faces', 'Hanshew, Thomas W.', '2004-12-12', 65, 'https://www.gutenberg.org/ebooks/14332', 'en', 128), +(52387, 'Denmark', 'Thomson, M. Pearson', '2006-12-13', 39, 'https://www.gutenberg.org/ebooks/20107', 'en', 17526), +(52388, 'Insectivorous Plants', 'Darwin, Charles', '2004-05-01', 48, 'https://www.gutenberg.org/ebooks/5765', 'en', 17527), +(52389, 'The Orlando Innamorato', 'Boiardo, Matteo Maria', '2018-09-08', 44, 'https://www.gutenberg.org/ebooks/57869', 'en', 1535), +(52390, 'Psychologie und Logik: zur Einführung in die Philosophie', 'Elsenhans, Theodor', '2013-12-16', 11, 'https://www.gutenberg.org/ebooks/44442', 'de', 17528), +(52391, 'Il tamburo di fuoco: Dramma africano di calore, colore, rumori, odori', 'Marinetti, F. T.', '2010-12-23', 15, 'https://www.gutenberg.org/ebooks/34735', 'it', 407), +(52392, 'The Lilac Lady', 'MacArthur, Ruth Brown', '2007-12-09', 20, 'https://www.gutenberg.org/ebooks/23782', 'en', 13027), +(52393, 'The Delectable Mountains', 'Colton, Arthur', '2015-10-21', 8, 'https://www.gutenberg.org/ebooks/50270', 'en', 1028), +(52394, 'The Indian Lily and Other Stories', 'Sudermann, Hermann', '2006-02-01', 21, 'https://www.gutenberg.org/ebooks/9994', 'en', 17529), +(52395, 'Le château de La Belle-au-bois-dormant', 'Loti, Pierre', '2005-08-07', 8, 'https://www.gutenberg.org/ebooks/16465', 'fr', 16181), +(52396, 'Weymouth New Testament in Modern Speech, Hebrews', 'Weymouth, Richard Francis', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/8846', 'en', 11154), +(52397, 'The Defence of Guenevere and Other Poems', 'Morris, William', '2007-09-17', 28, 'https://www.gutenberg.org/ebooks/22650', 'en', 5139), +(52398, 'Prose Idylls, New and Old', 'Kingsley, Charles', '2004-12-01', 18, 'https://www.gutenberg.org/ebooks/7032', 'en', 5270), +(52399, 'Vital Records of the Town of Auburn, (Formerly Ward), Massachusetts, To the end of the year 1850\nWith the Inscriptions from the Old Burial Grounds', 'Rice, Franklin P. (Franklin Pierce)', '2014-07-17', 10, 'https://www.gutenberg.org/ebooks/46315', 'en', 17530), +(52400, 'An Appeal to the British Nation on the Humanity and Policy of Forming a National Institution for the Preservation of Lives and Property from Shipwreck (1825)', 'Hillary, William, Sir', '2008-11-24', 15, 'https://www.gutenberg.org/ebooks/27322', 'en', 5584), +(52401, 'The Nests and Eggs of Indian Birds, Volume 1', 'Hume, Allan Octavian', '2004-08-05', 22, 'https://www.gutenberg.org/ebooks/13117', 'en', 88), +(52402, 'Extracts Relating to Mediaeval Markets and Fairs in England', 'Douglas-Irvine, Helen', '2013-09-08', 17, 'https://www.gutenberg.org/ebooks/43667', 'en', 17531), +(52403, 'Essai historique sur l\'origine des Hongrois', 'Gérando, A. de (Auguste)', '2009-11-02', 12, 'https://www.gutenberg.org/ebooks/30395', 'fr', 6259), +(52404, 'Father and Son: A Study of Two Temperaments', 'Gosse, Edmund', '2004-11-28', 73, 'https://www.gutenberg.org/ebooks/2540', 'en', 3136), +(52405, 'Camilla: A Tale of a Violin\nBeing the Artist Life of Camilla Urso', 'Barnard, Charles', '2010-02-10', 17, 'https://www.gutenberg.org/ebooks/31247', 'en', 17532), +(52406, 'Homespun Tales', 'Wiggin, Kate Douglas Smith', '2002-10-01', 40, 'https://www.gutenberg.org/ebooks/3492', 'en', 112), +(52407, 'Day by Day with the Russian Army, 1914-15', 'Pares, Bernard', '2017-10-08', 20, 'https://www.gutenberg.org/ebooks/55702', 'en', 3601), +(52408, 'History of the War in South Africa 1899-1902 v. 1 (of 4)\nCompiled by Direction of His Majesty\'s Government', 'Great Britain. War Office', '2009-02-23', 10, 'https://www.gutenberg.org/ebooks/28158', 'en', 1956), +(52409, 'Œuvres complètes de Gustave Flaubert, tome 2: Salammbô', 'Flaubert, Gustave', '2015-05-05', 50, 'https://www.gutenberg.org/ebooks/48881', 'fr', 299), +(52410, 'The Forgery; or, Best Intentions.', 'James, G. P. R. (George Payne Rainsford)', '2015-09-23', 26, 'https://www.gutenberg.org/ebooks/50042', 'en', 61), +(52411, 'Divers Women', 'Livingston, C. M., Mrs.', '2006-02-17', 12, 'https://www.gutenberg.org/ebooks/17785', 'en', 179), +(52412, 'The Heritage of the Hills', 'Hankins, Arthur Preston', '2010-11-30', 14, 'https://www.gutenberg.org/ebooks/34507', 'en', 8226), +(52413, 'The Adventures of Tom Sawyer, Part 8.', 'Twain, Mark', '2004-06-30', 36, 'https://www.gutenberg.org/ebooks/7200', 'en', 323), +(52414, 'The Motor Boys Over the Ocean; Or, A Marvelous Rescue in Mid-Air', 'Young, Clarence', '2014-06-28', 23, 'https://www.gutenberg.org/ebooks/46127', 'en', 3124), +(52415, 'The Book of Missionary Heroes', 'Mathews, Basil', '2005-09-05', 46, 'https://www.gutenberg.org/ebooks/16657', 'en', 8849), +(52416, 'Langs Rotte, Maas en Schie. I.\nschetsen uit de geschiedenis van Rotterdam', 'Droogendijk, J. M.', '2010-03-31', 23, 'https://www.gutenberg.org/ebooks/31849', 'nl', 17533), +(52417, 'The Hymns of Ann Griffiths, of Dolwar Fechan, Translated into English Verse', 'Griffiths, Ann', '2016-02-12', 7, 'https://www.gutenberg.org/ebooks/51190', 'en', 6484), +(52418, 'The Queen\'s Maries: A Romance of Holyrood', 'Whyte-Melville, G. J. (George John)', '2015-09-13', 7, 'https://www.gutenberg.org/ebooks/49953', 'en', 9985), +(52419, 'Slingshot', 'Lande, Irving W.', '2007-08-30', 44, 'https://www.gutenberg.org/ebooks/22462', 'en', 26), +(52420, '\"Crumps\", The Plain Story of a Canadian Who Went', 'Keene, Louis', '2009-05-25', 8, 'https://www.gutenberg.org/ebooks/28964', 'en', 4962), +(52421, 'Baseball Joe in the World Series; or, Pitching for the Championship', 'Chadwick, Lester', '2013-08-12', 17, 'https://www.gutenberg.org/ebooks/43455', 'en', 195), +(52422, 'The Country House', 'Galsworthy, John', '2006-06-14', 61, 'https://www.gutenberg.org/ebooks/2772', 'en', 432), +(52423, 'The Eternal Wall', 'Gallun, Raymond Z.', '2008-10-31', 30, 'https://www.gutenberg.org/ebooks/27110', 'en', 179), +(52424, 'Sketches of the Natural History of Ceylon', 'Tennent, James Emerson, Sir', '2004-08-29', 34, 'https://www.gutenberg.org/ebooks/13325', 'en', 17534), +(52425, 'America, Through the Spectacles of an Oriental Diplomat', 'Wu, Tingfang', '1996-08-01', 82, 'https://www.gutenberg.org/ebooks/609', 'en', 17535), +(52426, 'Erämaan tytär', 'Curwood, James Oliver', '2017-09-12', 6, 'https://www.gutenberg.org/ebooks/55530', 'fi', 551), +(52427, 'In The Ranks: From the Wilderness to Appomattox Court House\r\nThe War, as Seen and Experienced by a Private Soldier in the Army of the Potomac', 'McBride, R. E. (Robert Ekin)', '2010-01-25', 18, 'https://www.gutenberg.org/ebooks/31075', 'en', 17536), +(52428, 'The World English Bible (WEB): Ecclesiastes', 'Anonymous', '2005-06-01', 18, 'https://www.gutenberg.org/ebooks/8248', 'en', 3157), +(52429, 'The Grey Friars in Oxford', 'Little, A. G. (Andrew George)', '2013-04-24', 15, 'https://www.gutenberg.org/ebooks/42587', 'en', 17537), +(52430, 'The Letters of Her Mother to Elizabeth', 'Trowbridge, W. R. H. (William Rutherford Hayes)', '2012-11-05', 7, 'https://www.gutenberg.org/ebooks/41302', 'en', 2586), +(52431, 'The Everlasting Arms', 'Hocking, Joseph', '2012-03-20', 32, 'https://www.gutenberg.org/ebooks/39218', 'en', 1380), +(52432, 'Holiday Tales', 'Wilford, Florence', '2008-05-30', 11, 'https://www.gutenberg.org/ebooks/25647', 'en', 195), +(52433, 'Paying Off\nDeep Waters, Part 2.', 'Jacobs, W. W. (William Wymark)', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11472', 'en', 3421), +(52434, 'An Account of the Late Improvements in Galvanism\r\nWith a Series of Curious and Interesting Experiments Performed Before the Commissioners of the French National Institute, and Repeated Lately in the Anatomical Theatres of London', 'Aldini, Giovanni', '2018-06-04', 12, 'https://www.gutenberg.org/ebooks/57267', 'en', 14746), +(52435, 'An Entertaining History of Tom Thumb\nWilliam Raine\'s Edition', 'Unknown', '2008-03-10', 16, 'https://www.gutenberg.org/ebooks/24795', 'en', 2296), +(52436, 'Donalblane of Darien', 'Oxley, J. Macdonald (James Macdonald)', '2010-09-14', 30, 'https://www.gutenberg.org/ebooks/33722', 'en', 153), +(52437, 'A Woman\'s War: A Novel', 'Deeping, Warwick', '2016-08-04', 14, 'https://www.gutenberg.org/ebooks/52715', 'en', 1563), +(52438, 'The Amazing Marriage — Volume 3', 'Meredith, George', '2003-09-01', 23, 'https://www.gutenberg.org/ebooks/4485', 'en', 137), +(52439, 'Arts and Crafts Essays\nby Members of the Arts and Crafts Exhibition Society', 'Arts and Crafts Exhibition Society', '2011-05-29', 101, 'https://www.gutenberg.org/ebooks/36250', 'en', 17538), +(52440, 'Margery (Gred): A Tale Of Old Nuremberg — Volume 06', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5557', 'en', 5290), +(52441, 'Los cursos', 'Veber, Pierre', '2011-09-10', 38, 'https://www.gutenberg.org/ebooks/37382', 'es', 16051), +(52442, 'Dorothy Dixon and the Double Cousin', 'Wayne, Dorothy', '2014-01-15', 23, 'https://www.gutenberg.org/ebooks/44670', 'en', 12072), +(52443, 'Eighteen Hundred and Eleven', 'Barbauld, Mrs. (Anna Letitia)', '2004-11-19', 16, 'https://www.gutenberg.org/ebooks/14100', 'en', 17539), +(52444, 'The Case of Edith Cavell\nA Study of the Rights of Non-Combatants', 'Beck, James M. (James Montgomery)', '2007-01-11', 27, 'https://www.gutenberg.org/ebooks/20335', 'en', 16635), +(52445, 'Little Grandfather', 'May, Sophie', '2008-05-15', 12, 'https://www.gutenberg.org/ebooks/25481', 'en', 195), +(52446, 'Théodore de Neuhoff, Roi de Corse', 'Le Glay, A. (André)', '2017-12-12', 3, 'https://www.gutenberg.org/ebooks/56173', 'fr', 17540), +(52447, 'The Riviera of the Corniche Road', 'Treves, Frederick', '2019-07-13', 50, 'https://www.gutenberg.org/ebooks/59907', 'en', 6325), +(52448, 'Duel on Syrtis', 'Anderson, Poul', '2010-05-19', 123, 'https://www.gutenberg.org/ebooks/32436', 'en', 179), +(52449, 'ABC\'s of Science', 'Oliver, Charles A. (Charles Alexander)', '1998-05-01', 54, 'https://www.gutenberg.org/ebooks/1331', 'en', 12675), +(52450, 'The Last Rose of Summer', 'Hughes, Rupert', '2012-06-17', 186, 'https://www.gutenberg.org/ebooks/40016', 'en', 3885), +(52451, 'Enquire Within Upon Everything\nThe Great Victorian Domestic Standby', 'Philp, Robert Kemp', '2004-01-01', 83, 'https://www.gutenberg.org/ebooks/10766', 'en', 2801), +(52452, 'The Esperantist, Vol. 1, No. 14', NULL, '2011-11-11', 25, 'https://www.gutenberg.org/ebooks/37978', 'en', 3912), +(52453, 'Critical Miscellanies (Vol. 2 of 3), Essay 4: Joseph de Maistre', 'Morley, John', '2008-02-08', 12, 'https://www.gutenberg.org/ebooks/24553', 'en', 17541), +(52454, 'Patience', 'Alexander, James W. (James Waddel)', '2014-05-02', 12, 'https://www.gutenberg.org/ebooks/45564', 'en', 17542), +(52455, 'Ο Αυτοκράτωρ Ιουστινιανός', 'Karolides, Paulos', '2011-05-13', 13, 'https://www.gutenberg.org/ebooks/36096', 'el', 13400), +(52456, 'Vignettes of San Francisco', 'Morey, Almira', '2003-11-01', 17, 'https://www.gutenberg.org/ebooks/4643', 'en', 6248), +(52457, 'Die Biene Maja und ihre Abenteuer', 'Bonsels, Waldemar', '2007-04-10', 143, 'https://www.gutenberg.org/ebooks/21021', 'de', 1063), +(52458, 'Sevenoaks: A Story of Today', 'Holland, J. G. (Josiah Gilbert)', '2005-03-01', 14, 'https://www.gutenberg.org/ebooks/15214', 'en', 2815), +(52459, 'Elsbeth von Küssaberg, das Gotteli von St. Agnesen\r\nEin episches Gedicht aus dem Kletgau', 'Würtenberger, Karl Friedrich', '2012-02-19', 6, 'https://www.gutenberg.org/ebooks/38930', 'de', 17543), +(52460, 'Never: A Hand-Book for the Uninitiated and Inexperienced Aspirants to Refined Society\'s Giddy Heights and Glittering Attainments.', 'Urner, Nathan Dane', '2016-10-29', 17, 'https://www.gutenberg.org/ebooks/53401', 'en', 788), +(52461, 'Observations on Madness and Melancholy\r\nIncluding Practical Remarks on those Diseases together with Cases and an Account of the Morbid Appearances on Dissection', 'Haslam, John', '2011-08-21', 56, 'https://www.gutenberg.org/ebooks/37144', 'en', 17544), +(52462, 'Mrs. Peter Rabbit', 'Burgess, Thornton W. (Thornton Waldo)', '2004-05-01', 61, 'https://www.gutenberg.org/ebooks/5791', 'en', 1045), +(52463, 'Dr. Stearns\'s Tour from London to Paris', 'Stearns, Samuel', '2014-10-29', 15, 'https://www.gutenberg.org/ebooks/47233', 'en', 17483), +(52464, 'The Young Firemen of Lakeville; Or, Herbert Dare\'s Pluck', 'Webster, Frank V.', '2004-07-01', 16, 'https://www.gutenberg.org/ebooks/6114', 'en', 6649), +(52465, 'The School of Recreation (1684 edition)\r\nOr, The Gentlemans Tutor, to those Most Ingenious Exercises of Hunting, Racing, Hawking, Riding, Cock-fighting, Fowling, Fishing', 'R. H. (Robert Howlett)', '2007-12-09', 10, 'https://www.gutenberg.org/ebooks/23776', 'en', 17545), +(52466, 'Punchinello, Volume 1, No. 06, May 7, 1870', 'Various', '2006-02-01', 12, 'https://www.gutenberg.org/ebooks/9960', 'en', 372), +(52467, 'Une Confédération Orientale comme solution de la Question d\'Orient (1905)', 'Anonymous', '2006-01-18', 21, 'https://www.gutenberg.org/ebooks/17543', 'fr', 10592), +(52468, 'Boyville: A History of Fifteen Years\' Work Among Newsboys', 'Gunckel, John E. (John Elstner)', '2015-10-22', 6, 'https://www.gutenberg.org/ebooks/50284', 'en', 17546), +(52469, 'The Birth of Tragedy; or, Hellenism and Pessimism', 'Nietzsche, Friedrich Wilhelm', '2016-03-04', 248, 'https://www.gutenberg.org/ebooks/51356', 'en', 17547), +(52470, 'Vergilius: A Tale of the Coming of Christ', 'Bacheller, Irving', '2005-08-08', 25, 'https://www.gutenberg.org/ebooks/16491', 'en', 609), +(52471, 'A Plan for Securing Observations of the Variable Stars', 'Pickering, Edward C. (Edward Charles)', '2011-03-19', 14, 'https://www.gutenberg.org/ebooks/35613', 'en', 17548), +(52472, 'The Irish Penny Journal, Vol. 1 No. 28, January 9, 1841', 'Various', '2017-04-28', 3, 'https://www.gutenberg.org/ebooks/54624', 'en', 81), +(52473, 'Who Wrote the Bible? : a Book for the People', 'Gladden, Washington', '2004-11-01', 24, 'https://www.gutenberg.org/ebooks/6928', 'en', 3792), +(52474, 'Summary Narrative of an Exploratory Expedition to the Sources of the Mississippi River, in 1820\nResumed and Completed, by the Discovery of its Origin in Itasca Lake, in 1832', 'Schoolcraft, Henry Rowe', '2013-09-11', 22, 'https://www.gutenberg.org/ebooks/43693', 'en', 17549), +(52475, 'The Stowaway', 'Heiner, Alvin', '2009-10-30', 30, 'https://www.gutenberg.org/ebooks/30361', 'en', 26), +(52476, 'The Foreigner: A Tale of Saskatchewan', 'Connor, Ralph', '2004-07-08', 13, 'https://www.gutenberg.org/ebooks/3466', 'en', 9639), +(52477, 'The Story of the Earth and Man', 'Dawson, John William, Sir', '2013-05-20', 22, 'https://www.gutenberg.org/ebooks/42741', 'en', 1109), +(52478, 'Collected Poems 1901-1918 in Two Volumes. Volume I.', 'De la Mare, Walter', '2004-04-01', 27, 'https://www.gutenberg.org/ebooks/12031', 'en', 54), +(52479, 'A Letter from the Lord Bishop of London, to the Clergy and People of London and Westminster; On Occasion of the Late Earthquakes', 'Sherlock, Thomas', '2008-08-06', 15, 'https://www.gutenberg.org/ebooks/26204', 'en', 17550), +(52480, 'The Ancient Egyptian Doctrine of the Immortality of the Soul', 'Wiedemann, Alfred', '2015-05-04', 27, 'https://www.gutenberg.org/ebooks/48875', 'en', 17551), +(52481, 'Glaucoma\r\nA Symposium Presented at a Meeting of the Chicago Ophthalmological Society, November 17, 1913', NULL, '2007-11-19', 20, 'https://www.gutenberg.org/ebooks/23544', 'en', 17552), +(52482, 'Winds Of Doctrine: Studies in Contemporary Opinion', 'Santayana, George', '2006-02-16', 57, 'https://www.gutenberg.org/ebooks/17771', 'en', 2694), +(52483, 'De Officiis', 'Cicero, Marcus Tullius', '2014-09-29', 137, 'https://www.gutenberg.org/ebooks/47001', 'la', 11794), +(52484, 'Half-Hours with Great Story-Tellers\r\nArtemus Ward, George Macdonald, Max Adeler, Samuel Lover, and Others', 'Various', '2004-08-01', 17, 'https://www.gutenberg.org/ebooks/6326', 'en', 179), +(52485, 'A System of Logic: Ratiocinative and Inductive, 7th Edition, Vol. II', 'Mill, John Stuart', '2011-02-27', 56, 'https://www.gutenberg.org/ebooks/35421', 'en', 516), +(52486, 'The Convict: A Tale', 'James, G. P. R. (George Payne Rainsford)', '2016-02-09', 19, 'https://www.gutenberg.org/ebooks/51164', 'en', 4448), +(52487, 'The Settlers in Canada', 'Marryat, Frederick', '2007-09-03', 49, 'https://www.gutenberg.org/ebooks/22496', 'en', 9790), +(52488, 'The Book of Saints and Friendly Beasts', 'Brown, Abbie Farwell', '2009-05-29', 31, 'https://www.gutenberg.org/ebooks/28990', 'en', 17553), +(52489, 'Ellen Terry and Her Sisters', 'Pemberton, T. Edgar (Thomas Edgar)', '2015-01-23', 19, 'https://www.gutenberg.org/ebooks/48049', 'en', 17554), +(52490, 'Jack and Jill', 'Alcott, Louisa May', '2001-08-01', 171, 'https://www.gutenberg.org/ebooks/2786', 'en', 7366), +(52491, 'Abuse, Torture, and Trauma and their Consequences and Effects', 'Vaknin, Samuel', '2009-10-01', 50, 'https://www.gutenberg.org/ebooks/30153', 'en', 5245), +(52492, 'Zophiel\nA Poem', 'Brooks, Maria Gowen', '2006-07-02', 7, 'https://www.gutenberg.org/ebooks/18739', 'en', 8), +(52493, 'The Irish Penny Journal, Vol. 1 No. 22, November 28, 1840', 'Various', '2017-03-23', 0, 'https://www.gutenberg.org/ebooks/54416', 'en', 81), +(52494, 'Blundell\'s Improvement\nOdd Craft, Part 3.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12203', 'en', 72), +(52495, 'The Sylvan Cabin: A Centenary Ode on the Birth of Lincoln, and Other Verse', 'Jones, Edward Smyth', '2008-07-12', 13, 'https://www.gutenberg.org/ebooks/26036', 'en', 3770), +(52496, 'Alfred Tennyson', 'Lang, Andrew', '2003-01-01', 19, 'https://www.gutenberg.org/ebooks/3654', 'en', 7288), +(52497, 'The German Classics, v. 20\r\nMasterpieces of German Literature Translated into English', NULL, '2010-01-25', 12, 'https://www.gutenberg.org/ebooks/31081', 'en', 4972), +(52498, 'The Mountain School-Teacher', 'Post, Melville Davisson', '2016-05-02', 7, 'https://www.gutenberg.org/ebooks/51958', 'en', 61), +(52499, 'Histology of the Blood, Normal and Pathological', 'Ehrlich, Paul', '2009-08-29', 45, 'https://www.gutenberg.org/ebooks/29842', 'en', 17555), +(52500, 'Ingres', 'Finberg, A. J. (Alexander Joseph)', '2013-04-21', 15, 'https://www.gutenberg.org/ebooks/42573', 'en', 3044), +(52501, 'The Story of the Raising and Organization of a Regiment of Volunteers in 1862\nMilitary Order of the Loyal Legion of the United States, Commandery of the District of Columbia, War Papers 46', 'Spear, Ellis', '2010-05-30', 23, 'https://www.gutenberg.org/ebooks/32604', 'en', 17556), +(52502, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 386, August 22, 1829', 'Various', '2004-03-01', 4, 'https://www.gutenberg.org/ebooks/11486', 'en', 133), +(52503, 'The American Missionary — Volume 35, No. 12, December, 1881', 'Various', '2018-01-09', 2, 'https://www.gutenberg.org/ebooks/56341', 'en', 395), +(52504, 'Ein livländisch Herz: Katharina I. von Russland; geschichtlicher Roman', 'Freimark, Hans', '2018-06-09', 5, 'https://www.gutenberg.org/ebooks/57293', 'de', 17557), +(52505, 'Right Ho, Jeeves', 'Wodehouse, P. G. (Pelham Grenville)', '2004-01-01', 1403, 'https://www.gutenberg.org/ebooks/10554', 'en', 637), +(52506, 'The Rivals: A Comedy', 'Sheridan, Richard Brinsley', '2008-03-06', 209, 'https://www.gutenberg.org/ebooks/24761', 'en', 17558), +(52507, 'King Richard III', 'Shakespeare, William', '1997-11-01', 196, 'https://www.gutenberg.org/ebooks/1103', 'en', 17559), +(52508, 'Evolution of Life and Form\r\nFour lectures delivered at the twenty-third anniversary meeting of the Theosophical Society at Adyar, Madras, 1898', 'Besant, Annie', '2012-07-13', 29, 'https://www.gutenberg.org/ebooks/40224', 'en', 1315), +(52509, 'New Ideals in Rural Schools', 'Betts, George Herbert', '2007-04-24', 11, 'https://www.gutenberg.org/ebooks/21213', 'en', 17560), +(52510, 'Forced Move', 'Lee, Henry', '2019-04-19', 45, 'https://www.gutenberg.org/ebooks/59309', 'en', 2564), +(52511, 'Punch, or the London Charivari, Volume 103, August 6, 1892', 'Various', '2005-02-12', 1, 'https://www.gutenberg.org/ebooks/15026', 'en', 134), +(52512, 'Papers and Proceedings of the Thirty-Fourth Annual Meeting of the American Library Association\r\nHeld at Ottawa, Canada, June 26-July 2, 1912', NULL, '2014-05-25', 10, 'https://www.gutenberg.org/ebooks/45756', 'en', 4281), +(52513, 'One of Our Conquerors — Volume 1', 'Meredith, George', '2003-09-01', 8, 'https://www.gutenberg.org/ebooks/4471', 'en', 8215), +(52514, 'Wang the Ninth: The Story of a Chinese Boy', 'Putnam Weale, B. L. (Bertram Lenox)', '2011-09-10', 65, 'https://www.gutenberg.org/ebooks/37376', 'en', 6011), +(52515, 'The Pilgrims\' Way from Winchester to Canterbury', 'Cartwright, Julia', '2014-01-17', 12, 'https://www.gutenberg.org/ebooks/44684', 'en', 17561), +(52516, 'Pyhän Julianuksen legenda', 'Flaubert, Gustave', '2016-11-29', 4, 'https://www.gutenberg.org/ebooks/53633', 'fi', 6209), +(52517, 'The Hazeley Family', 'Johnson, A. E. (Amelia E.)', '2011-01-23', 12, 'https://www.gutenberg.org/ebooks/35045', 'en', 17562), +(52518, 'Lucretia — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 18, 'https://www.gutenberg.org/ebooks/7690', 'en', 137), +(52519, 'Descriptive Pamphlet of the Richmond Mill Furnishing Works\r\nAll sizes of mill stones and complete grinding and bolting combined husk or portable flouring mills, portable corn and feed mills; smut and separating machines; zigzag and oat separators, dustless separators, warehouse separators, water wheels; mill shafting; pulleys; spur and bevel, iron and core, gearing....', 'Richmond Mill Furnishing Works', '2016-03-19', 6, 'https://www.gutenberg.org/ebooks/51500', 'en', 17563), +(52520, 'The King\'s Daughters', 'Holt, Emily Sarah', '2007-10-20', 9, 'https://www.gutenberg.org/ebooks/23120', 'en', 470), +(52521, 'Abe Lincoln Gets His Chance', 'Cavanah, Frances', '2005-12-15', 33, 'https://www.gutenberg.org/ebooks/17315', 'en', 10559), +(52522, 'Der Ackermann aus Böhmen', 'Johannes, von Tepl', '2014-11-26', 21, 'https://www.gutenberg.org/ebooks/47465', 'de', 10694), +(52523, 'The Bristol Royal Mail: Post, Telegraph, and Telephone', 'Tombs, Robert Charles', '2010-11-02', 22, 'https://www.gutenberg.org/ebooks/34197', 'en', 16551), +(52524, 'The School for Husbands', 'Molière', '2004-10-01', 42, 'https://www.gutenberg.org/ebooks/6742', 'en', 907), +(52525, 'Travels of Richard and John Lander into the interior of Africa, for the discovery of the course and termination of the Niger\r\nFrom unpublished documents in the possession of the late Capt. John William Barber Fullerton ... with a prefatory analysis of the previous travels of Park, Denham, Clapperton, Adams, Lyon, Ritchie, &c. into the hitherto unexplored countries of Africa', 'Huish, Robert', '2004-06-01', 26, 'https://www.gutenberg.org/ebooks/12667', 'en', 17564), +(52526, 'The Rotifers', 'Abernathy, Robert', '2011-04-16', 46, 'https://www.gutenberg.org/ebooks/35879', 'en', 179), +(52527, 'La testa della vipera', 'Bersezio, Vittorio', '2008-08-28', 13, 'https://www.gutenberg.org/ebooks/26452', 'it', 61), +(52528, 'The Counterpane Fairy', 'Pyle, Katharine', '2002-05-01', 21, 'https://www.gutenberg.org/ebooks/3230', 'en', 3822), +(52529, 'The Pirates of the Prairies: Adventures in the American Desert', 'Aimard, Gustave', '2013-02-17', 32, 'https://www.gutenberg.org/ebooks/42117', 'en', 61), +(52530, 'The Royal Book of Oz\r\nIn which the Scarecrow goes to search for his family tree and discovers that he is the Long Lost Emperor of the Silver Island', 'Baum, L. Frank (Lyman Frank)', '2009-11-24', 98, 'https://www.gutenberg.org/ebooks/30537', 'en', 14842), +(52531, 'Raleigh', 'Gosse, Edmund', '2008-12-20', 26, 'https://www.gutenberg.org/ebooks/27580', 'en', 1198), +(52532, 'Indian Biography; Vol. 2 (of 2)\r\nOr, An Historical Account of Those Individuals Who Have Been Distinguished among the North American Natives as Orators, Warriors, Statesmen, and Other Remarkable Characters', 'Thatcher, B. B. (Benjamin Bussey)', '2017-01-29', 5, 'https://www.gutenberg.org/ebooks/54072', 'en', 2180), +(52533, 'Tales from Two Hemispheres', 'Boyesen, Hjalmar Hjorth', '1995-07-01', 78, 'https://www.gutenberg.org/ebooks/299', 'en', 6344), +(52534, 'The Works of Charles and Mary Lamb — Volume 3\r\nBooks for Children', 'Lamb, Mary', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10130', 'en', 388), +(52535, 'Suzanne Normis: Roman d\'un père', 'Gréville, Henry', '2008-01-15', 48, 'https://www.gutenberg.org/ebooks/24305', 'fr', 298), +(52536, 'Poems', 'Eliot, T. S. (Thomas Stearns)', '1998-12-01', 439, 'https://www.gutenberg.org/ebooks/1567', 'en', 8), +(52537, 'The Following of the Star: A Romance', 'Barclay, Florence L. (Florence Louisa)', '2012-09-01', 42, 'https://www.gutenberg.org/ebooks/40640', 'en', 1380), +(52538, 'Theodore Watts-Dunton: Poet, Novelist, Critic', 'Douglas, James', '2013-01-06', 35, 'https://www.gutenberg.org/ebooks/41792', 'en', 6953), +(52539, 'Tourcoing', 'Belloc, Hilaire', '2010-05-05', 22, 'https://www.gutenberg.org/ebooks/32260', 'en', 17565), +(52540, 'The Balkan Peninsula', 'Fox, Frank', '2012-05-13', 16, 'https://www.gutenberg.org/ebooks/39688', 'en', 17566), +(52541, 'An Everyday Girl: A Story', 'Blanchard, Amy Ella', '2018-03-12', 19, 'https://www.gutenberg.org/ebooks/56725', 'en', 751), +(52542, 'The Rise of the Dutch Republic — Volume 27: 1577-78', 'Motley, John Lothrop', '2004-01-01', 52, 'https://www.gutenberg.org/ebooks/4829', 'en', 3372), +(52543, 'The Crime of the Congo', 'Doyle, Arthur Conan', '2011-10-11', 95, 'https://www.gutenberg.org/ebooks/37712', 'en', 17567), +(52544, 'A New Hochelagan Burying-ground Discovered at Westmount on the Western Spur of Mount Royal, Montreal, July-September, 1898', 'Lighthall, W. D. (William Douw)', '2005-01-04', 10, 'https://www.gutenberg.org/ebooks/14590', 'en', 17568), +(52545, 'Etsivä Samuel', 'Sinclair, Upton', '2016-10-11', 5, 'https://www.gutenberg.org/ebooks/53257', 'fi', 5114), +(52546, 'Milton', 'Raleigh, Walter Alexander, Sir', '2007-06-04', 18, 'https://www.gutenberg.org/ebooks/21677', 'en', 1173), +(52547, 'Dick Kent with the Malemute Mail', 'Oblinger, M. M. (Milo Milton)', '2016-06-21', 6, 'https://www.gutenberg.org/ebooks/52385', 'en', 7213), +(52548, 'Punch, or the London Charivari, Volume 101, October 31, 1891', 'Various', '2005-03-23', 14, 'https://www.gutenberg.org/ebooks/15442', 'en', 134), +(52549, 'Illuminated Manuscripts in Classical and Mediaeval Times\r\nTheir Art and Their Technique', 'Middleton, J. H. (John Henry)', '2014-04-06', 34, 'https://www.gutenberg.org/ebooks/45332', 'en', 4378), +(52550, 'The Hairy Ape', 'O\'Neill, Eugene', '2003-05-01', 133, 'https://www.gutenberg.org/ebooks/4015', 'en', 9620), +(52551, 'Ivanoff: A Play', 'Chekhov, Anton Pavlovich', '1999-05-01', 114, 'https://www.gutenberg.org/ebooks/1755', 'en', 4249), +(52552, 'With the British Legion: A Story of the Carlist Wars', 'Henty, G. A. (George Alfred)', '2017-01-01', 23, 'https://www.gutenberg.org/ebooks/53859', 'en', 1361), +(52553, 'Book of Hymns for Public and Private Devotion', NULL, '2010-07-15', 15, 'https://www.gutenberg.org/ebooks/33180', 'en', 8876), +(52554, 'Sajóvölgyi eredeti népmesék (2. kötet)', 'Merényi, László', '2012-01-13', 13, 'https://www.gutenberg.org/ebooks/38568', 'hu', 2), +(52555, 'The History of Creation, Vol. 1 (of 2)\r\nOr the Development of the Earth and its Inhabitants by the Action of Natural Causes', 'Haeckel, Ernst', '2012-08-14', 47, 'https://www.gutenberg.org/ebooks/40472', 'en', 3049), +(52556, 'Just Because She Made Dem Goo-Goo Eyes', NULL, '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10302', 'en', 8879), +(52557, '東京夢華錄', 'Meng, Yuanlao, active 1126-1147', '2008-01-03', 31, 'https://www.gutenberg.org/ebooks/24137', 'zh', 17569), +(52558, 'The Philosophy of Auguste Comte', 'Lévy-Bruhl, Lucien', '2018-02-07', 11, 'https://www.gutenberg.org/ebooks/56517', 'en', 4788), +(52559, 'Grenfell: Knight-Errant of the North', 'Waldo, Fullerton Leonard', '2010-04-19', 27, 'https://www.gutenberg.org/ebooks/32052', 'en', 10042), +(52560, 'The American Missionary — Volume 32, No. 02, February, 1878', 'Various', '2016-09-17', 4, 'https://www.gutenberg.org/ebooks/53065', 'en', 395), +(52561, 'The Ballad of Reading Gaol', 'Wilde, Oscar', '2007-01-20', 3, 'https://www.gutenberg.org/ebooks/20597', 'en', 2974), +(52562, 'Surnames as a Science', 'Ferguson, Robert', '2011-09-24', 14, 'https://www.gutenberg.org/ebooks/37520', 'en', 17570), +(52563, 'The Whirl: A Romance of Washington Society', 'Davis, Foxcroft', '2014-03-09', 5, 'https://www.gutenberg.org/ebooks/45100', 'en', 10158), +(52564, 'Tom Swift and His Wireless Message; Or, The Castaways of Earthquake Island', 'Appleton, Victor', '2003-07-01', 44, 'https://www.gutenberg.org/ebooks/4227', 'en', 196), +(52565, 'Notes and Queries, Number 181, April 16, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-05-15', 18, 'https://www.gutenberg.org/ebooks/21445', 'en', 105), +(52566, 'The Secret Chamber at Chad', 'Everett-Green, Evelyn', '2005-04-20', 9, 'https://www.gutenberg.org/ebooks/15670', 'en', 17571), +(52567, 'The Vision of Dante: A story for little children and a talk to their mothers\r\n(Second Edition)', 'Dante Alighieri', '2016-04-11', 12, 'https://www.gutenberg.org/ebooks/51732', 'en', 17572), +(52568, 'The Golden Woman: A Story of the Montana Hills', 'Cullum, Ridgwell', '2009-08-07', 18, 'https://www.gutenberg.org/ebooks/29628', 'en', 315), +(52569, 'The Childerbridge Mystery', 'Boothby, Guy', '2011-02-14', 19, 'https://www.gutenberg.org/ebooks/35277', 'en', 95), +(52570, 'Bell\'s Cathedrals: The Cathedral Church of Carlisle\r\nA Description of Its Fabric and A Brief History of the Episcopal See', 'Eley, C. King', '2006-11-20', 22, 'https://www.gutenberg.org/ebooks/19881', 'en', 17573), +(52571, 'Ylös helvetistä: Romaani', 'Lehtimäki, Konrad', '2014-09-06', 16, 'https://www.gutenberg.org/ebooks/46785', 'fi', 175), +(52572, 'Report of Governor\'s Representatives for California at Alaska-Yukon-Pacific Exposition Commission', 'California. Alaska-Yukon-Pacific exposition commission', '2014-12-13', 10, 'https://www.gutenberg.org/ebooks/47657', 'en', 17574), +(52573, 'The Tale of Dickie Deer Mouse', 'Bailey, Arthur Scott', '2006-07-31', 27, 'https://www.gutenberg.org/ebooks/18953', 'en', 625), +(52574, 'The Rose and the Ring', 'Thackeray, William Makepeace', '2006-02-05', 124, 'https://www.gutenberg.org/ebooks/897', 'en', 388), +(52575, 'Lectures and Essays', 'Smith, Goldwin', '2004-09-01', 10, 'https://www.gutenberg.org/ebooks/6570', 'en', 17575), +(52576, 'The Education of American Girls', 'Brackett, Anna C. (Anna Callender)', '2007-11-03', 22, 'https://www.gutenberg.org/ebooks/23312', 'en', 12167), +(52577, 'Niilo Klimin maanalainen matka', 'Holberg, Ludvig', '2005-11-21', 12, 'https://www.gutenberg.org/ebooks/17127', 'fi', 467), +(52578, 'Society\'s Child (audiofile)', NULL, '2002-01-01', 35, 'https://www.gutenberg.org/ebooks/3002', 'en', 8888), +(52579, 'Régi magyar vitézi énekek és elegyes dalok (1. kötet)', 'Thaly, Kálmán', '2013-03-13', 7, 'https://www.gutenberg.org/ebooks/42325', 'hu', 1645), +(52580, 'Legends of the Middle Ages\nNarrated with Special Reference to Literature and Art', 'Guerber, H. A. (Hélène Adeline)', '2004-05-01', 43, 'https://www.gutenberg.org/ebooks/12455', 'en', 638), +(52581, 'Mackinac and Lake Stories', 'Catherwood, Mary Hartwell', '2017-08-20', 16, 'https://www.gutenberg.org/ebooks/55392', 'en', 1426), +(52582, 'Plays: Complete Edition, Including the Posthumous Plays', 'Tolstoy, Leo, graf', '2008-09-20', 25, 'https://www.gutenberg.org/ebooks/26660', 'en', 4249), +(52583, 'A Memoir of Thomas Bewick\nWritten by himself', 'Bewick, Thomas', '2019-08-09', 603, 'https://www.gutenberg.org/ebooks/60075', 'en', 21), +(52584, 'Proceedings of the California Academy of Sciences, Series 3, Volume 4 (Zoology)', 'Various', '2017-02-26', 0, 'https://www.gutenberg.org/ebooks/54240', 'en', 3176), +(52585, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 290, December 29, 1827', 'Various', '2004-10-03', 7, 'https://www.gutenberg.org/ebooks/13587', 'en', 133), +(52586, 'Roundabout Papers', 'Thackeray, William Makepeace', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9538', 'en', 5270), +(52587, 'The Happy Man', 'Page, Gerald W.', '2009-12-18', 27, 'https://www.gutenberg.org/ebooks/30705', 'en', 26), +(52588, 'Out of the Earth', 'Edrich, George', '2010-03-11', 17, 'https://www.gutenberg.org/ebooks/31597', 'en', 5828), +(52589, 'The Wandering Jew — Volume 04', 'Sue, Eugène', '2004-10-25', 11, 'https://www.gutenberg.org/ebooks/3342', 'en', 1380), +(52590, 'Proceso del Dr. José Rizal Mercado y Alonso', NULL, '2013-02-10', 13, 'https://www.gutenberg.org/ebooks/42065', 'es', 6564), +(52591, 'Danny Deever', 'Kipling, Rudyard', '2004-06-01', 3, 'https://www.gutenberg.org/ebooks/12715', 'en', 2298), +(52592, 'The Fighting Edge', 'Raine, William MacLeod', '2008-09-04', 35, 'https://www.gutenberg.org/ebooks/26520', 'en', 315), +(52593, 'Wayfaring Men: A Novel', 'Lyall, Edna', '2017-02-03', 13, 'https://www.gutenberg.org/ebooks/54100', 'en', 109), +(52594, 'The Flamp, The Ameliorator, and The Schoolboy\'s Apprentice', 'Lucas, E. V. (Edward Verrall)', '2009-11-10', 5, 'https://www.gutenberg.org/ebooks/30445', 'en', 388), +(52595, 'The Consolidator', 'Defoe, Daniel', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9678', 'en', 623), +(52596, 'Twenty-Two Goblins', NULL, '2000-08-01', 58, 'https://www.gutenberg.org/ebooks/2290', 'en', 10047), +(52597, 'The East India Vade-Mecum, Volume 2 (of 2)\r\nor, complete guide to gentlemen intended for the civil, military, or naval service of the East India Company.', 'Williamson, Thomas', '2016-03-16', 17, 'https://www.gutenberg.org/ebooks/51472', 'en', 16375), +(52598, 'Prairie Flowers', 'Hendryx, James B. (James Beardsley)', '2007-07-30', 25, 'https://www.gutenberg.org/ebooks/22180', 'en', 315), +(52599, 'Lachmi Bai, Rani of Jhansi: The Jeanne D\'Arc of India', 'White, Michael', '2013-06-02', 37, 'https://www.gutenberg.org/ebooks/42859', 'en', 6733), +(52600, '\'Charge It\': Keeping Up With Harry', 'Bacheller, Irving', '2009-08-01', 12, 'https://www.gutenberg.org/ebooks/29568', 'en', 637), +(52601, 'Der Tatbestand der Piraterie nach geltendem Völkerrecht', 'Stiel, Paul', '2011-01-31', 9, 'https://www.gutenberg.org/ebooks/35137', 'de', 645), +(52602, 'Desiderius Erasmus of Rotterdam', 'Emerton, Ephraim', '2014-12-02', 30, 'https://www.gutenberg.org/ebooks/47517', 'en', 5267), +(52603, 'Curiosities of the Sky', 'Serviss, Garrett Putman', '2004-10-01', 122, 'https://www.gutenberg.org/ebooks/6630', 'en', 1683), +(52604, 'Our Soldiers: Gallant Deeds of the British Army during Victoria\'s Reign', 'Kingston, William Henry Giles', '2007-10-17', 19, 'https://www.gutenberg.org/ebooks/23052', 'en', 12835), +(52605, 'Angéline de Montbrun', 'Conan, Laure', '2005-12-09', 15, 'https://www.gutenberg.org/ebooks/17267', 'fr', 8062), +(52606, 'The Cleveland Medical Gazette, Vol. 1, No. 5, March 1886', 'Various', '2016-10-19', 5, 'https://www.gutenberg.org/ebooks/53325', 'en', 17576), +(52607, 'Of All Things', 'Benchley, Robert', '2011-10-07', 83, 'https://www.gutenberg.org/ebooks/37660', 'en', 20), +(52608, 'The Arts and Crafts of Older Spain, Volume 2 (of 3)', 'Williams, Leonard', '2013-12-10', 16, 'https://www.gutenberg.org/ebooks/44392', 'en', 10452), +(52609, 'Frontier Ballads', 'Hanson, Joseph Mills', '2014-03-28', 12, 'https://www.gutenberg.org/ebooks/45240', 'en', 17577), +(52610, 'Diary of Samuel Pepys — Volume 45: August/September 1666', 'Pepys, Samuel', '2004-12-01', 91, 'https://www.gutenberg.org/ebooks/4167', 'en', 2197), +(52611, 'In the Track of the Troops', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 26, 'https://www.gutenberg.org/ebooks/21705', 'en', 17578), +(52612, 'The Philippine Islands, 1493-1898 — Volume 17 of 55\r\n1609-1616\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-04-03', 57, 'https://www.gutenberg.org/ebooks/15530', 'en', 745), +(52613, 'Vecchie storie d\'amore', 'Albertazzi, Adolfo', '2012-01-20', 156, 'https://www.gutenberg.org/ebooks/38628', 'it', 61), +(52614, 'Doctor Marigold', 'Dickens, Charles', '1998-08-01', 50, 'https://www.gutenberg.org/ebooks/1415', 'en', 585), +(52615, 'Liverpool a few years since: by an old stager', 'Aspinall, James', '2012-09-11', 18, 'https://www.gutenberg.org/ebooks/40732', 'en', 1366), +(52616, 'The BYU Solar Cooker/Cooler', 'Jones, Steven E.', '2004-06-01', 38, 'https://www.gutenberg.org/ebooks/5889', 'en', 17579), +(52617, 'The Child under Eight', 'Smith, Henrietta Brown', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10042', 'en', 973), +(52618, 'New York: Its Upper Ten and Lower Million', 'Lippard, George', '2018-08-27', 20, 'https://www.gutenberg.org/ebooks/57785', 'en', 6947), +(52619, 'Card Trick', 'Berryman, John', '2008-01-14', 92, 'https://www.gutenberg.org/ebooks/24277', 'en', 784), +(52620, 'Life in the Soudan\nAdventures Amongst the Tribes, and Travels in Egypt, in 1881 and 1882', 'Williams, Josiah', '2018-02-27', 19, 'https://www.gutenberg.org/ebooks/56657', 'en', 17580), +(52621, 'The White Cat\nCaptains All, Book 10.', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11190', 'en', 1224), +(52622, 'Janice Day', 'Long, Helen Beecher', '2010-05-10', 19, 'https://www.gutenberg.org/ebooks/32312', 'en', 51), +(52623, 'Tales and Novels of J. de La Fontaine — Volume 13', 'La Fontaine, Jean de', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/5287', 'en', 506), +(52624, 'The Poetical Works of Elizabeth Barrett Browning, Volume 1', 'Browning, Elizabeth Barrett', '2011-09-18', 54, 'https://www.gutenberg.org/ebooks/37452', 'en', 532), +(52625, 'Curious, if True\nStrange Tales', 'Gaskell, Elizabeth Cleghorn', '2008-03-19', 85, 'https://www.gutenberg.org/ebooks/24879', 'en', 16356), +(52626, 'Motion Picture Directing: The Facts and Theories of the Newest Art', 'Milne, Peter', '2016-09-22', 6, 'https://www.gutenberg.org/ebooks/53117', 'en', 17581), +(52627, 'Expansion and Conflict', 'Dodd, William Edward', '2007-05-19', 27, 'https://www.gutenberg.org/ebooks/21537', 'en', 8831), +(52628, 'The Works of the Right Honourable Edmund Burke, Vol. 06 (of 12)', 'Burke, Edmund', '2005-04-24', 35, 'https://www.gutenberg.org/ebooks/15702', 'en', 4505), +(52629, 'How We Robbed Mexico in 1848', 'Howe, Robert Harrison', '2014-03-07', 6, 'https://www.gutenberg.org/ebooks/45072', 'en', 291), +(52630, 'David Crockett: His Life and Adventures', 'Abbott, John S. C. (John Stevens Cabot)', '2003-08-01', 58, 'https://www.gutenberg.org/ebooks/4355', 'en', 17582), +(52631, 'Dramatic Technique', 'Baker, George Pierce', '2011-07-02', 33, 'https://www.gutenberg.org/ebooks/36580', 'en', 489), +(52632, 'What Band Is This?', 'Hann\'s Emperors of Song', '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10270', 'en', 12789), +(52633, 'Recueil des expressions vicieuses et des anglicismes les plus fréquents', 'Gingras, Jules Fabien', '2007-12-26', 11, 'https://www.gutenberg.org/ebooks/24045', 'fr', 17583), +(52634, 'The Evil Genius: A Domestic Story', 'Collins, Wilkie', '1999-02-01', 39, 'https://www.gutenberg.org/ebooks/1627', 'en', 45), +(52635, 'Leatherface: A Tale of Old Flanders', 'Orczy, Emmuska Orczy, Baroness', '2012-08-14', 22, 'https://www.gutenberg.org/ebooks/40500', 'en', 960), +(52636, 'The Scrap Book, Volume 1, No. 3\nMay 1906', 'Various', '2010-04-24', 9, 'https://www.gutenberg.org/ebooks/32120', 'en', 18), +(52637, 'Mentana e il dito di Dio\r\nEpisodi narrati dal superstite Ettore Pozzi - Seconda edizione, con importanti aggiunte fatte dall\'Autore', 'Pozzi, Ernesto', '2008-04-27', 18, 'https://www.gutenberg.org/ebooks/25197', 'it', 17584), +(52638, 'An Act in a Backwater', 'Benson, E. F. (Edward Frederic)', '2018-01-30', 15, 'https://www.gutenberg.org/ebooks/56465', 'en', 2024), +(52639, 'Kimono', 'Paris, John', '2004-06-01', 25, 'https://www.gutenberg.org/ebooks/12527', 'en', 775), +(52640, 'Bulletin de Lille, 1916.08\r\npublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2008-09-27', 22, 'https://www.gutenberg.org/ebooks/26712', 'fr', 8224), +(52641, 'Introduction to the Dramas of Balzac', 'Wilson, Epiphanius', '2006-02-03', 10, 'https://www.gutenberg.org/ebooks/8598', 'en', 12428), +(52642, 'Chants for Socialists', 'Morris, William', '2002-04-01', 22, 'https://www.gutenberg.org/ebooks/3170', 'en', 16150), +(52643, 'The Southern South', 'Hart, Albert Bushnell', '2013-03-04', 21, 'https://www.gutenberg.org/ebooks/42257', 'en', 8185), +(52644, 'Macmillan & Co.\'s Catalogue. September 1874\r\nOf Works in Belles Lettres, Including Poetry, Fiction, Etc.', 'Macmillan & Co.', '2013-08-02', 4, 'https://www.gutenberg.org/ebooks/43385', 'en', 2663), +(52645, 'David Copperfield - Tome II', 'Dickens, Charles', '2006-02-26', 26, 'https://www.gutenberg.org/ebooks/17869', 'fr', 957), +(52646, 'Birds, Illustrated by Color Photography, Vol. 2, No. 5\r\nNovember 1897', 'Various', '2009-12-14', 16, 'https://www.gutenberg.org/ebooks/30677', 'en', 1254), +(52647, 'Five Minute Sermons, Volume I.\r\nFor Low Masses on all Sundays of the Year by Priests of the Congregation of St. Paul', 'Paulist Fathers', '2019-08-17', 152, 'https://www.gutenberg.org/ebooks/60107', 'en', 5091), +(52648, 'The Æsculapian Labyrinth Explored; Or, Medical Mystery Illustrated', 'Taplin, William', '2017-03-09', 6, 'https://www.gutenberg.org/ebooks/54332', 'en', 17585), +(52649, 'Mr Punch\'s Pocket Ibsen - A Collection of Some of the Master\'s Best Known Dramas', 'Anstey, F.', '2011-02-17', 15, 'https://www.gutenberg.org/ebooks/35305', 'en', 17586), +(52650, 'La Divina Comèdia: Infièr\n(Dante\'s Inferno)', 'Dante Alighieri', '2005-07-03', 13, 'https://www.gutenberg.org/ebooks/16187', 'fur', 1082), +(52651, 'A Guide to Natural Bridges National Monument, Utah', 'Anonymous', '2016-04-02', 8, 'https://www.gutenberg.org/ebooks/51640', 'en', 17587), +(52652, 'The Two Whalers; Or, Adventures in the Pacific', 'Kingston, William Henry Giles', '2007-10-31', 8, 'https://www.gutenberg.org/ebooks/23260', 'en', 31), +(52653, 'The Silver Maple', 'MacGregor, Mary Esther Miller', '2009-05-04', 6, 'https://www.gutenberg.org/ebooks/28688', 'en', 1887), +(52654, 'The Great Oakdale Mystery', 'Scott, Morgan', '2015-12-30', 10, 'https://www.gutenberg.org/ebooks/50792', 'en', 557), +(52655, 'The Submarine Boys\' Trial Trip\n\"Making Good\" as Young Experts', 'Durham, Victor G.', '2005-11-12', 13, 'https://www.gutenberg.org/ebooks/17055', 'en', 5237), +(52656, 'Minnesota, the North Star State', 'Folwell, William Watts', '2014-12-20', 9, 'https://www.gutenberg.org/ebooks/47725', 'en', 8586), +(52657, 'The Romance of Isabel Lady Burton: The Story of Her Life. Volume II', 'Wilkins, W. H. (William Henry)', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6402', 'en', 8864), +(52658, 'Personal Recollections of Birmingham and Birmingham Men', 'Edwards, Eliezer', '2006-07-13', 29, 'https://www.gutenberg.org/ebooks/18821', 'en', 17588), +(52659, 'On the Origin of Species by Means of Natural Selection', 'Darwin, Charles', '2007-04-24', 49, 'https://www.gutenberg.org/ebooks/21153', 'en', 4602), +(52660, 'Punch, or the London Charivari, Volume 103, September 24, 1892', 'Various', '2005-03-15', 21, 'https://www.gutenberg.org/ebooks/15366', 'en', 134), +(52661, 'Index of the Project Gutenberg Works of Rabelais', 'Rabelais, François', '2019-03-11', 14, 'https://www.gutenberg.org/ebooks/59049', 'en', 198), +(52662, 'Años de juventud del doctor Angélico', 'Palacio Valdés, Armando', '2012-06-13', 34, 'https://www.gutenberg.org/ebooks/39990', 'es', 1696), +(52663, 'Gods and Heroes; or, The Kingdom of Jupiter', 'Francillon, R. E. (Robert Edward)', '2014-04-20', 36, 'https://www.gutenberg.org/ebooks/45416', 'en', 8821), +(52664, 'Seven Little Australians', 'Turner, Ethel Sybil', '2003-12-01', 243, 'https://www.gutenberg.org/ebooks/4731', 'en', 17589), +(52665, 'The Key to Success', 'Conwell, Russell H.', '2011-08-11', 192, 'https://www.gutenberg.org/ebooks/37036', 'en', 15752), +(52666, 'L\'Illustration, No. 3666, 31 Mai 1913', 'Various', '2012-02-12', 2, 'https://www.gutenberg.org/ebooks/38842', 'fr', 150), +(52667, 'The Girl Scouts of the Round Table', 'Vandercook, Margaret', '2016-11-22', 17, 'https://www.gutenberg.org/ebooks/53573', 'en', 2345), +(52668, 'The Seaman\'s Friend\r\nContaining a treatise on practical seamanship, with plates, a dictionary of sea terms, customs and usages of the merchant service', 'Dana, Richard Henry', '2012-10-06', 48, 'https://www.gutenberg.org/ebooks/40958', 'en', 17590), +(52669, 'A Houseful of Girls', 'Tytler, Sarah', '2006-12-10', 48, 'https://www.gutenberg.org/ebooks/20081', 'en', 45), +(52670, 'Graphic illustrations of abortion and the diseases of menstruation\r\nConsisting of Twelve Plates from Drawings Engraved on Stone, and Coloured by Mr. J. Perry, and Two Copper-plates from the Philosophical Transactions, Coloured by the Same Artist. the Whole Representing Forty-five Specimens of Aborted Ova and Adventitious Productions of the Uterus, With Preliminary Observations, Explanations of the Figures and Remarks, Anatomical and Physiological.', 'Granville, A. B. (Augustus Bozzi)', '2019-07-08', 194, 'https://www.gutenberg.org/ebooks/59875', 'en', 17591), +(52671, 'The Golden Amazons of Venus', 'Reynolds, John Murray', '2010-05-27', 27, 'https://www.gutenberg.org/ebooks/32544', 'en', 26), +(52672, 'The Busy Woman\'s Garden Book', 'Bennett, Ida D. (Ida Dandridge)', '2017-11-19', 20, 'https://www.gutenberg.org/ebooks/56001', 'en', 1413), +(52673, 'Punch, or the London Charivari, Volume 153, September 5, 1917', 'Various', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10614', 'en', 134), +(52674, 'The Story Of Gunnlaug The Worm-Tongue And Raven The Skald\n1875', 'Anonymous', '2008-01-25', 86, 'https://www.gutenberg.org/ebooks/24421', 'en', 4764), +(52675, 'Scenes and Adventures in Affghanistan', 'Taylor, William', '2010-08-23', 34, 'https://www.gutenberg.org/ebooks/33496', 'en', 3631), +(52676, 'Hearts of Controversy', 'Meynell, Alice', '1998-03-01', 19, 'https://www.gutenberg.org/ebooks/1243', 'en', 7288), +(52677, 'History of the Opera from its Origin in Italy to the present Time\nWith Anecdotes of the Most Celebrated Composers and Vocalists of Europe', 'Edwards, H. Sutherland (Henry Sutherland)', '2012-07-08', 7, 'https://www.gutenberg.org/ebooks/40164', 'en', 4183), +(52678, 'The Epic of Paul', 'Wilkinson, William Cleaver', '2015-02-19', 8, 'https://www.gutenberg.org/ebooks/48309', 'en', 4340), +(52679, 'Algo de todo', 'Valera, Juan', '2009-10-08', 20, 'https://www.gutenberg.org/ebooks/30213', 'es', 20), +(52680, 'Hillsboro People', 'Fisher, Dorothy Canfield', '2004-08-02', 61, 'https://www.gutenberg.org/ebooks/13091', 'en', 17592), +(52681, '官場現形記', 'Li, Boyuan', '2017-05-21', 3, 'https://www.gutenberg.org/ebooks/54756', 'zh', 16560), +(52682, 'The Campaigns of the British Army at Washington and New Orleans 1814-1815', 'Gleig, G. R. (George Robert)', '2006-06-01', 13, 'https://www.gutenberg.org/ebooks/18479', 'en', 8736), +(52683, 'A Christmas Carol in Prose; Being a Ghost Story of Christmas', 'Dickens, Charles', '2004-08-11', 2999, 'https://www.gutenberg.org/ebooks/46', 'en', 531), +(52684, 'A Thousand and One Afternoons in Chicago', 'Hecht, Ben', '2005-04-01', 41, 'https://www.gutenberg.org/ebooks/7988', 'en', 17593), +(52685, 'Firebrands', 'Martin, Frank Eugene', '2017-10-06', 8, 'https://www.gutenberg.org/ebooks/55684', 'en', 17594), +(52686, 'The Three Comrades', 'Royová, Kristína', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12143', 'en', 942), +(52687, 'Odes d\'Anacréon\nTraduction littérale et rythmique', 'Anacreon', '2008-08-20', 28, 'https://www.gutenberg.org/ebooks/26376', 'fr', 17595), +(52688, 'Human Genome Project, Chromosome Number 14', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3514', 'en', 1841), +(52689, 'The Strand Magazine, Vol. 01, Issue 02, February 1891\r\nAn Illustrated Monthly', 'Various', '2013-05-03', 26, 'https://www.gutenberg.org/ebooks/42633', 'en', 4041), +(52690, 'Punch, or the London Charivari, Vol. 104, April 15, 1893', 'Various', '2007-11-24', 21, 'https://www.gutenberg.org/ebooks/23604', 'en', 134), +(52691, 'Korte Arabesken: Bébert le Boucher en André le Pêcheur', 'Couperus, Louis', '2005-12-31', 7, 'https://www.gutenberg.org/ebooks/17431', 'nl', 319); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(52692, 'I Spy', 'Lincoln, Natalie Sumner', '2006-02-01', 26, 'https://www.gutenberg.org/ebooks/9812', 'en', 17596), +(52693, 'Das Schweigen im Walde: Roman', 'Ganghofer, Ludwig', '2014-11-13', 19, 'https://www.gutenberg.org/ebooks/47341', 'de', 253), +(52694, 'King--of the Khyber Rifles: A Romance of Adventure', 'Mundy, Talbot', '2004-07-01', 83, 'https://www.gutenberg.org/ebooks/6066', 'en', 48), +(52695, 'The Man Who Pleases and the Woman Who Charms', 'Cone, John A. (John Albert)', '2011-04-03', 15, 'https://www.gutenberg.org/ebooks/35761', 'en', 788), +(52696, 'Germany\'s Dishonoured Army: Additional records of German atrocities in France', 'Morgan, J. H. (John Hartman)', '2014-07-15', 12, 'https://www.gutenberg.org/ebooks/46293', 'en', 2936), +(52697, 'Billy in Bunbury', 'Royal Baking Powder Company', '2016-02-15', 11, 'https://www.gutenberg.org/ebooks/51224', 'en', 17597), +(52698, 'The Boy Ranchers on Roaring River; Or, Diamond X and the Chinese Smugglers', 'Baker, Willard F.', '2008-10-29', 18, 'https://www.gutenberg.org/ebooks/27096', 'en', 8198), +(52699, 'Some Stories of Old Ironsides', 'Frost, Holloway Halstead', '2017-04-18', 15, 'https://www.gutenberg.org/ebooks/54564', 'en', 17598), +(52700, 'Correspondance inédite de Hector Berlioz, 1819-1868', 'Berlioz, Hector', '2009-09-18', 13, 'https://www.gutenberg.org/ebooks/30021', 'fr', 17599), +(52701, 'The Decameron, Volume I', 'Boccaccio, Giovanni', '2003-02-01', 365, 'https://www.gutenberg.org/ebooks/3726', 'en', 4187), +(52702, 'Punch, or the London Charivari, Vol. 98 February 15, 1890', 'Various', '2009-09-08', 15, 'https://www.gutenberg.org/ebooks/29930', 'en', 134), +(52703, 'Vathek; An Arabian Tale', 'Beckford, William', '2013-03-24', 194, 'https://www.gutenberg.org/ebooks/42401', 'en', 7280), +(52704, 'The Experiences of a Barrister, and Confessions of an Attorney', 'Warren, Samuel', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/12371', 'en', 17600), +(52705, 'The Rural Motor Express\r\nTo Conserve Foodstuffs and Labor and to Supply Rural Transportation.', 'United States. Council of National Defense. Highways Transport Committee', '2006-11-13', 23, 'https://www.gutenberg.org/ebooks/19799', 'en', 4067), +(52706, 'The Unicorn from the Stars and Other Plays', 'Gregory, Lady', '2008-07-29', 65, 'https://www.gutenberg.org/ebooks/26144', 'en', 5104), +(52707, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Zehnter Band: enthaltend Kapitel 19 und 20.', 'Macaulay, Thomas Babington Macaulay, Baron', '2014-10-22', 8, 'https://www.gutenberg.org/ebooks/47173', 'de', 3001), +(52708, 'John Enderby', 'Parker, Gilbert', '2004-11-18', 7, 'https://www.gutenberg.org/ebooks/6254', 'en', 17601), +(52709, 'The Prime Minister', 'Kingston, William Henry Giles', '2010-11-29', 28, 'https://www.gutenberg.org/ebooks/34481', 'en', 17602), +(52710, 'A Desk-Book of Errors in English\r\nIncluding Notes on Colloquialisms and Slang to be Avoided in Conversation', 'Vizetelly, Frank H.', '2015-05-09', 24, 'https://www.gutenberg.org/ebooks/48907', 'en', 3127), +(52711, 'Aladdin or The Wonderful Lamp', 'Anonymous', '2007-11-10', 69, 'https://www.gutenberg.org/ebooks/23436', 'en', 1007), +(52712, 'Bert Wilson in the Rockies', 'Duffield, J. W.', '2006-01-25', 11, 'https://www.gutenberg.org/ebooks/17603', 'en', 1504), +(52713, 'The Pipes of War\r\nA Record of Achievements of Pipers of Scottish and Overseas Regiments during the War, 1914-18', 'Seton, B. G. (Bruce Gordon), Sir', '2016-01-23', 18, 'https://www.gutenberg.org/ebooks/51016', 'en', 17603), +(52714, 'Egyptian Tales, Translated from the Papyri: First series, IVth to XIIth dynasty', 'Petrie, W. M. Flinders (William Matthew Flinders)', '2005-01-01', 53, 'https://www.gutenberg.org/ebooks/7386', 'en', 6339), +(52715, 'The Anglican Friar, and the Fish which he Took by Hook and by Crook\r\nA Comic Legend', 'Novice, active 19th century', '2011-03-11', 8, 'https://www.gutenberg.org/ebooks/35553', 'en', 8), +(52716, 'Salem Witchcraft and Cotton Mather: A Reply', 'Upham, Charles Wentworth', '2008-10-20', 37, 'https://www.gutenberg.org/ebooks/26978', 'en', 17604), +(52717, 'The Knickerbocker, Vol. 10, No. 1, July 1837', 'Various', '2014-05-10', 6, 'https://www.gutenberg.org/ebooks/45624', 'en', 18), +(52718, 'Geschichte vom braven Kasperl und dem schönen Annerl', 'Brentano, Clemens', '2003-10-01', 22, 'https://www.gutenberg.org/ebooks/4503', 'de', 7597), +(52719, 'Patience Wins: War in the Works', 'Fenn, George Manville', '2007-05-08', 17, 'https://www.gutenberg.org/ebooks/21361', 'en', 1001), +(52720, 'Psychology and Industrial Efficiency', 'Münsterberg, Hugo', '2005-02-23', 82, 'https://www.gutenberg.org/ebooks/15154', 'en', 17605), +(52721, 'Homeri Carmina et Cycli Epici Reliquiæ. Pars Secunda: Odyssea', 'Homer', '2016-08-01', 24, 'https://www.gutenberg.org/ebooks/52693', 'la', 2905), +(52722, 'Recuerdos de Italia (parte 1 de 2)', 'Castelar, Emilio', '2016-12-15', 11, 'https://www.gutenberg.org/ebooks/53741', 'es', 1896), +(52723, 'Carry On: Letters in War-Time', 'Dawson, Coningsby', '2004-11-18', 8, 'https://www.gutenberg.org/ebooks/14086', 'en', 3601), +(52724, 'The Ranchman', 'Seltzer, Charles Alden', '2011-08-25', 33, 'https://www.gutenberg.org/ebooks/37204', 'en', 315), +(52725, 'The Purple Fern', 'Hume, Fergus', '2017-12-23', 22, 'https://www.gutenberg.org/ebooks/56233', 'en', 1425), +(52726, 'The Arm-Chair at the Inn', 'Smith, Francis Hopkinson', '2012-11-03', 22, 'https://www.gutenberg.org/ebooks/41284', 'en', 61), +(52727, 'The Grounds of Christianity Examined by Comparing The New Testament with the Old', 'English, George Bethune', '2005-06-01', 29, 'https://www.gutenberg.org/ebooks/15968', 'en', 1616), +(52728, 'Women of the Teutonic Nations', 'Schoenfeld, Hermann', '2010-06-14', 16, 'https://www.gutenberg.org/ebooks/32776', 'en', 17606), +(52729, 'Cathedral Cities of Spain', 'Collins, W. W. (William Wiehe)', '2012-07-27', 10, 'https://www.gutenberg.org/ebooks/40356', 'en', 1514), +(52730, 'Die natürliche Tochter', 'Goethe, Johann Wolfgang von', '2003-12-01', 28, 'https://www.gutenberg.org/ebooks/10426', 'de', 402), +(52731, 'The Negro and the Nation\nA History of American Slavery and Enfranchisement', 'Merriam, George Spring', '2008-02-14', 16, 'https://www.gutenberg.org/ebooks/24613', 'en', 1795), +(52732, 'The Positive Outcome of Philosophy\nThe Nature of Human Brain Work. Letters on Logic.', 'Dietzgen, Joseph', '2012-06-10', 31, 'https://www.gutenberg.org/ebooks/39964', 'en', 4797), +(52733, 'Florence on a Certain Night, and Other Poems', 'Dawson, Coningsby', '2016-06-30', 15, 'https://www.gutenberg.org/ebooks/52455', 'en', 8), +(52734, 'American Eloquence, Volume 2\r\nStudies In American Political History (1896)', NULL, '2005-03-17', 32, 'https://www.gutenberg.org/ebooks/15392', 'en', 429), +(52735, 'Odd Bits of Travel with Brush and Camera', 'Taylor, Charles M. (Charles Maus)', '2011-05-15', 14, 'https://www.gutenberg.org/ebooks/36110', 'en', 2236), +(52736, 'The Bobbsey Twins in Washington', 'Hope, Laura Lee', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/5617', 'en', 31), +(52737, 'Hugh Miller', 'Leask, W. Keith (William Keith)', '2013-12-27', 5, 'https://www.gutenberg.org/ebooks/44530', 'en', 17607), +(52738, 'Reviews', 'Wilde, Oscar', '2004-12-02', 56, 'https://www.gutenberg.org/ebooks/14240', 'en', 17608), +(52739, 'El doncel de don Enrique el doliente, Tomo I (de 4)\nHistoria caballeresca del siglo quince', 'Larra, Mariano José de', '2016-11-25', 17, 'https://www.gutenberg.org/ebooks/53587', 'es', 2826), +(52740, 'Frank Fairlegh: Scenes from the Life of a Private Pupil', 'Smedley, Frank E. (Frank Edward)', '2006-12-10', 19, 'https://www.gutenberg.org/ebooks/20075', 'en', 17609), +(52741, 'Solomon Maimon: An Autobiography.', 'Maimon, Solomon', '2012-10-13', 37, 'https://www.gutenberg.org/ebooks/41042', 'en', 17610), +(52742, 'Bryce Canyon National Park, Utah (1952)', 'United States. National Park Service', '2019-07-10', 61, 'https://www.gutenberg.org/ebooks/59881', 'en', 17611), +(52743, 'The First Seven Divisions\nBeing a Detailed Account of the Fighting from Mons to Ypres', 'Hamilton, Ernest, Lord', '2012-03-15', 13, 'https://www.gutenberg.org/ebooks/39158', 'en', 4411), +(52744, 'Little Grandmother', 'May, Sophie', '2008-05-18', 10, 'https://www.gutenberg.org/ebooks/25507', 'en', 62), +(52745, 'Punch, or the London Charivari, Volume 156, April 16, 1919', 'Various', '2004-03-01', 7, 'https://www.gutenberg.org/ebooks/11732', 'en', 134), +(52746, 'Magyar titkok: Regény (1. kötet)', 'Nagy, Ignácz', '2018-05-10', 8, 'https://www.gutenberg.org/ebooks/57127', 'hu', 234), +(52747, 'Heritage', 'Sackville-West, V. (Victoria)', '2019-02-24', 19, 'https://www.gutenberg.org/ebooks/58953', 'en', 3994), +(52748, 'Booknologie: Le livre numérique (1971-2010)', 'Lebert, Marie', '2010-08-18', 7, 'https://www.gutenberg.org/ebooks/33462', 'fr', 2047), +(52749, 'Science and Practice in Farm Cultivation', 'Buckman, James', '2012-07-10', 18, 'https://www.gutenberg.org/ebooks/40190', 'en', 2757), +(52750, 'The Big Brother: A Story of Indian War', 'Eggleston, George Cary', '2007-03-18', 19, 'https://www.gutenberg.org/ebooks/20849', 'en', 9106), +(52751, 'Meteoric astronomy: A treatise on shooting-stars, fire-balls, and aerolites', 'Kirkwood, Daniel', '2013-09-14', 12, 'https://www.gutenberg.org/ebooks/43715', 'en', 17612), +(52752, 'Barchester Towers', 'Trollope, Anthony', '2000-12-01', 47, 'https://www.gutenberg.org/ebooks/2432', 'en', 378), +(52753, 'What I Saw in America', 'Chesterton, G. K. (Gilbert Keith)', '2008-11-13', 263, 'https://www.gutenberg.org/ebooks/27250', 'en', 17613), +(52754, 'Beethoven\'s Letters 1790-1826, Volume 1', 'Beethoven, Ludwig van', '2004-07-31', 148, 'https://www.gutenberg.org/ebooks/13065', 'en', 1807), +(52755, 'The Underdogs: A Novel of the Mexican Revolution', 'Azuela, Mariano', '1996-06-01', 178, 'https://www.gutenberg.org/ebooks/549', 'en', 9469), +(52756, 'Men I\'m Not Married To; Women I\'m Not Married To', 'Adams, Franklin P. (Franklin Pierce)', '2017-10-02', 40, 'https://www.gutenberg.org/ebooks/55670', 'en', 11677), +(52757, 'Ancient America, in Notes on American Archaeology', 'Baldwin, John D. (John Denison)', '2008-08-21', 19, 'https://www.gutenberg.org/ebooks/26382', 'en', 5412), +(52758, 'Literary and Social Essays', 'Curtis, George William', '2005-05-01', 15, 'https://www.gutenberg.org/ebooks/8108', 'en', 1172), +(52759, 'History of the Constitutions of Iowa', 'Shambaugh, Benjamin Franklin', '2010-02-21', 16, 'https://www.gutenberg.org/ebooks/31335', 'en', 17614), +(52760, 'Three Unpublished Poems', 'Alcott, Louisa May', '2009-02-28', 27, 'https://www.gutenberg.org/ebooks/28218', 'en', 17615), +(52761, 'The Rise and Fall of Nauvoo', 'Roberts, B. H. (Brigham Henry)', '2015-10-25', 32, 'https://www.gutenberg.org/ebooks/50302', 'en', 17616), +(52762, 'Boy Scouts in Southern Waters; Or, Spaniard\'s Treasure Chest', 'Ralphson, G. Harvey (George Harvey)', '2004-10-25', 25, 'https://www.gutenberg.org/ebooks/13859', 'en', 324), +(52763, 'Letters of a Javanese Princess', 'Kartini, Raden Adjeng', '2010-12-13', 81, 'https://www.gutenberg.org/ebooks/34647', 'en', 17617), +(52764, 'The Fair Haven', 'Butler, Samuel', '2004-07-01', 34, 'https://www.gutenberg.org/ebooks/6092', 'en', 1759), +(52765, 'Gedichte und Sprüche in Auswahl', 'Walther, von der Vogelweide', '2011-04-08', 24, 'https://www.gutenberg.org/ebooks/35795', 'de', 10694), +(52766, 'The Great Conspiracy, Complete', 'Logan, John Alexander', '2004-06-01', 71, 'https://www.gutenberg.org/ebooks/7140', 'en', 2268), +(52767, 'Gnadenreiche, unsere Königin', 'Jung, Franz', '2014-07-13', 6, 'https://www.gutenberg.org/ebooks/46267', 'de', 549), +(52768, 'The Forest Lovers', 'Hewlett, Maurice', '2005-09-01', 27, 'https://www.gutenberg.org/ebooks/8934', 'en', 98), +(52769, 'Liza of Lambeth', 'Maugham, W. Somerset (William Somerset)', '2005-08-12', 134, 'https://www.gutenberg.org/ebooks/16517', 'en', 6434), +(52770, 'Woordenlijst voor de spelling der Nederlandsche Taal\r\nMet aanwijzing van de geslachten der naamwoorden en de vervoeging der werkwoorden', 'Winkel, L. A. te', '2007-09-22', 40, 'https://www.gutenberg.org/ebooks/22722', 'nl', 5370), +(52771, 'Romeo i Julia\nTragedya w 5 Aktach', 'Shakespeare, William', '2008-10-27', 67, 'https://www.gutenberg.org/ebooks/27062', 'pl', 4592), +(52772, 'Talk of Uncle George to His Nephew about Draw Poker\r\nContaining valuable suggestions in connection with this great American game. Also, instruction and directions to clubs and social card parties, whose members play only for recreation and pastime, with timely warnings to young players.', 'Uncle George, active 19th century', '2017-04-23', 10, 'https://www.gutenberg.org/ebooks/54590', 'en', 17618), +(52773, 'The American Baron: A Novel', 'De Mille, James', '2004-08-22', 22, 'https://www.gutenberg.org/ebooks/13257', 'en', 61), +(52774, 'Signelil, A Tale from the Cornish, and Other Ballads', 'Borrow, George', '2009-05-14', 12, 'https://www.gutenberg.org/ebooks/28816', 'en', 8), +(52775, 'The Quest: A Romance', 'Forman, Justus Miles', '2013-08-21', 8, 'https://www.gutenberg.org/ebooks/43527', 'en', 48), +(52776, 'War and Peace', 'Tolstoy, Leo, graf', '2001-04-01', 8880, 'https://www.gutenberg.org/ebooks/2600', 'en', 98), +(52777, 'Jeugdherinneringen', 'Ligthart, Jan', '2010-01-28', 8, 'https://www.gutenberg.org/ebooks/31107', 'nl', 17619), +(52778, 'The Italians: A Novel', 'Elliot, Frances Minto Dickinson', '2004-05-01', 8, 'https://www.gutenberg.org/ebooks/12385', 'en', 17620), +(52779, 'German War Practices, Part 1: Treatment of Civilians', NULL, '2017-08-27', 15, 'https://www.gutenberg.org/ebooks/55442', 'en', 2936), +(52780, 'The Royal Institution: Its Founder and First Professors', 'Jones, Bence', '2014-09-17', 17, 'https://www.gutenberg.org/ebooks/46869', 'en', 14279), +(52781, 'Steam Shovels and Steam Shovel Work', 'Hermann, Edward Adolph', '2014-10-24', 11, 'https://www.gutenberg.org/ebooks/47187', 'en', 17621), +(52782, 'Materialized Apparitions: If Not Beings from Another Life, What Are They', 'Brackett, Edward Augustus', '2010-11-29', 27, 'https://www.gutenberg.org/ebooks/34475', 'en', 504), +(52783, 'The Negro in the American Rebellion: His Heroism and His Fidelity', 'Brown, William Wells', '2015-10-04', 16, 'https://www.gutenberg.org/ebooks/50130', 'en', 5006), +(52784, 'Sprookjes van Jean Macé', 'Macé, Jean', '2005-09-19', 12, 'https://www.gutenberg.org/ebooks/16725', 'nl', 1007), +(52785, 'Worlds Within Worlds: The Story of Nuclear Energy, Volume 3 (of 3)\nNuclear Fission; Nuclear Fusion; Beyond Fusion', 'Asimov, Isaac', '2015-08-30', 77, 'https://www.gutenberg.org/ebooks/49821', 'en', 17622), +(52786, 'Documentary History of the Rio Grande Pueblos of New Mexico; I. Bibliographic Introduction\nPapers of the School of American Archaeology, No. 13', 'Bandelier, Adolph Francis Alphonse', '2007-09-04', 18, 'https://www.gutenberg.org/ebooks/22510', 'en', 4039), +(52787, 'Septimius Felton, or, the Elixir of Life', 'Hawthorne, Nathaniel', '2005-01-01', 30, 'https://www.gutenberg.org/ebooks/7372', 'en', 1426), +(52788, 'Among the Birds in Northern Shires', 'Dixon, Charles', '2014-06-21', 11, 'https://www.gutenberg.org/ebooks/46055', 'en', 9356), +(52789, 'The Battleship Boys at Sea; Or, Two Apprentices in Uncle Sam\'s Navy', 'Patchin, Frank Gee', '2011-06-04', 15, 'https://www.gutenberg.org/ebooks/36322', 'en', 4678), +(52790, 'The Last Look: A Tale of the Spanish Inquisition', 'Kingston, William Henry Giles', '2007-05-08', 26, 'https://www.gutenberg.org/ebooks/21395', 'en', 1330), +(52791, 'The Ingenious and Diverting Letters of the Lady ---- Travels into Spain\r\nDescribing the Devotions, Nunneries, Humours, Customs, Laws, Militia, Trade, Diet and Recreations of That People', 'Aulnoy, Madame d\' (Marie-Catherine)', '2016-07-29', 10, 'https://www.gutenberg.org/ebooks/52667', 'en', 1514), +(52792, 'Primitive Christian Worship\r\nOr, The Evidence of Holy Scripture and the Church, Against the Invocation of Saints and Angels, and the Blessed Virgin Mary', 'Tyler, James Endell', '2004-11-17', 24, 'https://www.gutenberg.org/ebooks/14072', 'en', 3118), +(52793, 'Wayside Courtships', 'Garland, Hamlin', '2007-01-02', 51, 'https://www.gutenberg.org/ebooks/20247', 'en', 485), +(52794, 'The Five Books of Youth', 'Hillyer, Robert', '2004-04-01', 24, 'https://www.gutenberg.org/ebooks/5425', 'en', 8), +(52795, 'Reminiscences of a Prisoner of War and His Escape', 'Langworthy, Daniel Avery', '2014-01-18', 21, 'https://www.gutenberg.org/ebooks/44702', 'en', 2363), +(52796, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 09 1895\r\nPulpits of Southern Italy', 'Various', '2008-06-09', 11, 'https://www.gutenberg.org/ebooks/25735', 'en', 2140), +(52797, 'De val van Antwerpen (october 1914)', 'Muls, Jozef', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/11500', 'nl', 17623), +(52798, 'The Australian Explorers: Their Labours, Perils, and Achievements\r\nBeing a Narrative of Discovery from the Landing of Captain Cook to the Centennial Year', 'Grimm, George', '2012-11-02', 34, 'https://www.gutenberg.org/ebooks/41270', 'en', 15550), +(52799, 'Success Story', 'Turner, Robert', '2010-06-11', 18, 'https://www.gutenberg.org/ebooks/32782', 'en', 179), +(52800, 'Life of John Sterling', 'Carlyle, Thomas', '1997-10-01', 24, 'https://www.gutenberg.org/ebooks/1085', 'en', 53), +(52801, 'New West Indian Spiders\nBulletin of the AMNH, Vol. XXXIII, Art. XLI, pp. 639-642', 'Banks, Nathan', '2010-09-05', 9, 'https://www.gutenberg.org/ebooks/33650', 'en', 17624), +(52802, 'Races and Peoples: Lectures on the Science of Ethnography', 'Brinton, Daniel G. (Daniel Garrison)', '2018-06-12', 40, 'https://www.gutenberg.org/ebooks/57315', 'en', 7033), +(52803, 'Walladmor, Vol. 1 (of 2)\r\n\"Freely Translated into German from the English of Sir Walter Scott.\" And Now Freely Translated from the German into English.', 'Alexis, Willibald', '2010-03-08', 10, 'https://www.gutenberg.org/ebooks/31563', 'en', 61), +(52804, 'Rival Pitchers of Oakdale', 'Scott, Morgan', '2007-10-11', 13, 'https://www.gutenberg.org/ebooks/22948', 'en', 6024), +(52805, 'A Floating Home', 'Atkins, J. B. (John Black)', '2013-02-13', 20, 'https://www.gutenberg.org/ebooks/42091', 'en', 17625), +(52806, 'That House I Bought: A little leaf from life', 'Warner, Henry Edward', '2015-07-18', 8, 'https://www.gutenberg.org/ebooks/49479', 'en', 6150), +(52807, 'The Reminiscences of an Astronomer', 'Newcomb, Simon', '2006-09-17', 13, 'https://www.gutenberg.org/ebooks/19309', 'en', 17626), +(52808, 'Sämmtliche Werke 3: Abende auf dem Gutshof bei Dikanka; Phantastische Novellen', 'Gogol, Nikolai Vasilevich', '2017-07-02', 22, 'https://www.gutenberg.org/ebooks/55026', 'de', 12221), +(52809, 'Axel Thordson and Fair Valborg: a ballad', NULL, '2008-12-04', 17, 'https://www.gutenberg.org/ebooks/27406', 'en', 54), +(52810, 'Blackwood\'s Edinburgh Magazine — Volume 55, No. 342, April, 1844', 'Various', '2004-10-05', 20, 'https://www.gutenberg.org/ebooks/13633', 'en', 711), +(52811, 'A Ring of Rubies', 'Meade, L. T.', '2013-07-08', 14, 'https://www.gutenberg.org/ebooks/43143', 'en', 3621), +(52812, 'Macbeth', 'Shakespeare, William', '2000-07-01', 1006, 'https://www.gutenberg.org/ebooks/2264', 'en', 15014), +(52813, 'Molemmat kuurot: Ilveily yhdessä näytöksessä', 'Moinaux, Jules', '2016-03-17', 5, 'https://www.gutenberg.org/ebooks/51486', 'fi', 3853), +(52814, 'Poems by William Cullen Bryant', 'Bryant, William Cullen', '2005-07-21', 81, 'https://www.gutenberg.org/ebooks/16341', 'en', 350), +(52815, 'Andrew Melville', 'Morison, William', '2007-07-30', 20, 'https://www.gutenberg.org/ebooks/22174', 'en', 17627), +(52816, 'The Last of the Barons — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 19, 'https://www.gutenberg.org/ebooks/7716', 'en', 10517), +(52817, 'St. Bernard\'s: The Romance of a Medical Student', 'Berdoe, Edward', '2014-07-27', 7, 'https://www.gutenberg.org/ebooks/46431', 'en', 16966), +(52818, 'The Development of Rates of Postage: An Historical and Analytical Study', 'Smith, A. D. (Alfred Daniel)', '2010-09-28', 57, 'https://www.gutenberg.org/ebooks/34011', 'en', 4858), +(52819, 'Frédéric Mistral\nPoet and Leader in Provence', 'Downer, Charles Alfred', '2005-12-12', 14, 'https://www.gutenberg.org/ebooks/17293', 'en', 12021), +(52820, 'The Campaign of Königgrätz\r\nA Study of the Austro-Prussian Conflict in the Light of the American Civil War', 'Wagner, Arthur L. (Arthur Lockwood)', '2015-11-26', 23, 'https://www.gutenberg.org/ebooks/50554', 'en', 17628), +(52821, 'Index of the Project Gutenberg Works of Benjamin Disraeli', 'Disraeli, Benjamin, Earl of Beaconsfield', '2019-01-20', 9, 'https://www.gutenberg.org/ebooks/58739', 'en', 198), +(52822, 'Stories of the Border Marches', 'Lang, Jean', '2004-12-22', 17, 'https://www.gutenberg.org/ebooks/14416', 'en', 3672), +(52823, 'Mademoiselle de Cérignan', 'Sand, Maurice', '2007-02-20', 9, 'https://www.gutenberg.org/ebooks/20623', 'fr', 61), +(52824, 'Reason, the Only Oracle of Man; Or, A Compendius System of Natural Religion', 'Allen, Ethan', '2011-10-10', 30, 'https://www.gutenberg.org/ebooks/37694', 'en', 1616), +(52825, 'State of the Union Addresses', 'Kennedy, John F. (John Fitzgerald)', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/5041', 'en', 1276), +(52826, 'Das Abendmahl im Zusammenhang mit dem Leben Jesu und der Geschichte des Urchristentums\r\nErstes Heft. Das Abendmahlsproblem auf Grund der wissenschaftlichen Forschung des 19. Jahrhunderts und der historischen Berichte.', 'Schweitzer, Albert', '2013-12-05', 13, 'https://www.gutenberg.org/ebooks/44366', 'de', 17629), +(52827, 'Notes and Queries, Number 21, March 23, 1850', 'Various', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/11958', 'en', 105), +(52828, 'The Mountains of Oregon', 'Steel, W. G. (William Gladstone)', '2011-07-16', 17, 'https://www.gutenberg.org/ebooks/36746', 'en', 4029), +(52829, 'Diary of Samuel Pepys — Volume 69: November 1668', 'Pepys, Samuel', '2004-12-01', 12, 'https://www.gutenberg.org/ebooks/4193', 'en', 738), +(52830, 'The Comic Almanack, Volume 1 (of 2)\r\nAn Ephemeris in Jest and Earnest, Containing Merry Tales, Humerous Poetry, Quips, and Oddities', 'Thackeray, William Makepeace', '2016-06-01', 21, 'https://www.gutenberg.org/ebooks/52203', 'en', 564), +(52831, 'Shadows of Flames: A Novel', 'Rives, Amélie', '2010-07-23', 20, 'https://www.gutenberg.org/ebooks/33234', 'en', 675), +(52832, 'Exploration of the Valley of the Amazon, Part 2 (of 2)', 'Herndon, William Lewis', '2018-08-26', 18, 'https://www.gutenberg.org/ebooks/57771', 'en', 1128), +(52833, 'Down the River; Or, Buck Bradford and His Tyrants', 'Optic, Oliver', '2008-01-14', 26, 'https://www.gutenberg.org/ebooks/24283', 'en', 1817), +(52834, 'Xerxes\nMakers of History', 'Abbott, Jacob', '2008-05-06', 47, 'https://www.gutenberg.org/ebooks/25351', 'en', 17630), +(52835, 'Rough and Tumble Engineering', 'Maggard, James H.', '2004-02-01', 56, 'https://www.gutenberg.org/ebooks/11164', 'en', 17631), +(52836, 'Nouveau Code du Duel: Histoire, Législation, Droit Contemporain', 'Du Verger de Saint-Thomas, Charles, comte', '2012-12-13', 9, 'https://www.gutenberg.org/ebooks/41614', 'fr', 2823), +(52837, 'Darwiniana; Essays and Reviews Pertaining to Darwinism', 'Gray, Asa', '2004-03-01', 37, 'https://www.gutenberg.org/ebooks/5273', 'en', 5893), +(52838, 'Swatty: A Story of Real Boys', 'Butler, Ellis Parker', '2013-11-10', 17, 'https://www.gutenberg.org/ebooks/44154', 'en', 12560), +(52839, 'Santa Claus\'s Partner', 'Page, Thomas Nelson', '2005-01-06', 16, 'https://www.gutenberg.org/ebooks/14624', 'en', 585), +(52840, 'The Witch-cult in Western Europe: A Study in Anthropology', 'Murray, Margaret Alice', '2007-01-22', 212, 'https://www.gutenberg.org/ebooks/20411', 'en', 7033), +(52841, 'Suomalaisen teatterin historia 4\r\nBergbomin loppukausi: Kansallisteatteri.', 'Aspelin-Haapkylä, Eliel', '2016-05-09', 8, 'https://www.gutenberg.org/ebooks/52031', 'fi', 12139), +(52842, 'Birds in Flight', 'Pycraft, W. P. (William Plane)', '2014-03-09', 11, 'https://www.gutenberg.org/ebooks/45086', 'en', 318), +(52843, 'Baby Jane\'s Mission', 'Parnell, Reginald', '2011-07-01', 9, 'https://www.gutenberg.org/ebooks/36574', 'en', 1023), +(52844, 'The Health Master', 'Adams, Samuel Hopkins', '2018-08-02', 16, 'https://www.gutenberg.org/ebooks/57543', 'en', 4793), +(52845, 'Spring of Love', NULL, '2003-11-01', 34, 'https://www.gutenberg.org/ebooks/10284', 'en', 17632), +(52846, 'Peeps at Many Lands—India', 'Finnemore, John', '2014-02-19', 5, 'https://www.gutenberg.org/ebooks/44968', 'en', 1975), +(52847, 'The Home University Library catalogue 1914/15', 'Williams & Norgate', '2010-06-27', 6, 'https://www.gutenberg.org/ebooks/33006', 'en', 11043), +(52848, 'Annals of a Fortress', 'Viollet-le-Duc, Eugène-Emmanuel', '2012-11-21', 35, 'https://www.gutenberg.org/ebooks/41426', 'en', 17633), +(52849, 'At Good Old Siwash', 'Fitch, George', '2008-04-25', 21, 'https://www.gutenberg.org/ebooks/25163', 'en', 4642), +(52850, 'A Tale of One City: the New Birmingham\nPapers Reprinted from the \"Midland Counties Herald\"', 'Anderton, Thomas', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11356', 'en', 17588), +(52851, 'Hänen isiensä jumala', 'London, Jack', '2018-02-03', 8, 'https://www.gutenberg.org/ebooks/56491', 'fi', 828), +(52852, 'The Village of Hide and Seek', 'Wilson, Bingham Thoburn', '2017-07-28', 10, 'https://www.gutenberg.org/ebooks/55214', 'en', 388), +(52853, 'Alonzo Fitz, and Other Stories', 'Twain, Mark', '2004-09-16', 62, 'https://www.gutenberg.org/ebooks/3184', 'en', 20), +(52854, 'What Bird is That?\r\nA Pocket Museum of the Land Birds of the Eastern United States Arranged According to Season', 'Chapman, Frank M. (Frank Michler)', '2010-03-23', 38, 'https://www.gutenberg.org/ebooks/31751', 'en', 13532), +(52855, 'Our Little Hungarian Cousin', 'Nixon-Roulet, Mary F.', '2013-08-01', 18, 'https://www.gutenberg.org/ebooks/43371', 'en', 17634), +(52856, 'Näkymättömiä siteitä: Kertomuksia', 'Lagerlöf, Selma', '2015-04-26', 7, 'https://www.gutenberg.org/ebooks/48799', 'fi', 2168), +(52857, 'The Life of William Carey, Shoemaker & Missionary', 'Smith, George', '2000-02-01', 35, 'https://www.gutenberg.org/ebooks/2056', 'en', 636), +(52858, 'The Unthinking Destroyer', 'Phillips, Rog', '2009-12-15', 18, 'https://www.gutenberg.org/ebooks/30683', 'en', 26), +(52859, 'Van de Deensche expeditie naar Noord-Groenland\nDe Aarde en haar Volken, 1909', 'Trolle, Alf', '2008-12-27', 8, 'https://www.gutenberg.org/ebooks/27634', 'nl', 17635), +(52860, 'Scientific American Supplement, No. 520, December 19, 1885', 'Various', '2004-09-08', 21, 'https://www.gutenberg.org/ebooks/13401', 'en', 210), +(52861, 'Around the World in Ten Days', 'Fraser, Chelsea Curtis', '2006-11-23', 12, 'https://www.gutenberg.org/ebooks/19907', 'en', 3291), +(52862, 'The Germany and the Agricola of Tacitus', 'Tacitus, Cornelius', '2005-02-01', 256, 'https://www.gutenberg.org/ebooks/7524', 'en', 3707), +(52863, 'The Irish Ecclesiastical Record, Volume 1, October, 1864', NULL, '2014-08-17', 4, 'https://www.gutenberg.org/ebooks/46603', 'en', 3437), +(52864, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, No. 07, May 1878\r\nScribner\'s Illustrated', 'Various', '2005-07-01', 12, 'https://www.gutenberg.org/ebooks/16173', 'en', 563), +(52865, 'Exile', 'Fyfe, H. B. (Horace Bowne)', '2007-08-16', 37, 'https://www.gutenberg.org/ebooks/22346', 'en', 26), +(52866, 'Catulli Carmina', 'Ellis, Robinson', '2007-11-02', 84, 'https://www.gutenberg.org/ebooks/23294', 'la', 8), +(52867, 'The Snowball Effect', 'MacLean, Katherine', '2015-12-25', 39, 'https://www.gutenberg.org/ebooks/50766', 'en', 26), +(52868, 'The New Germany', 'Young, George', '2010-11-06', 28, 'https://www.gutenberg.org/ebooks/34223', 'en', 11168), +(52869, 'Tales of the Fish Patrol', 'London, Jack', '1997-05-01', 135, 'https://www.gutenberg.org/ebooks/911', 'en', 1468), +(52870, 'Si yo fuera rico! Novela original', 'Larra, Luis Mariano de', '2019-04-10', 27, 'https://www.gutenberg.org/ebooks/59244', 'es', 1353), +(52871, 'Elements of Trench Warfare: Bayonet Training', 'Waldron, William H. (William Henry)', '2018-12-02', 14, 'https://www.gutenberg.org/ebooks/58396', 'en', 17636), +(52872, 'The Red House Mystery', 'Milne, A. A. (Alan Alexander)', '1999-08-01', 307, 'https://www.gutenberg.org/ebooks/1872', 'en', 95), +(52873, 'Punch, or the London Charivari, Volume 103, November 19, 1892', 'Various', '2005-05-31', 13, 'https://www.gutenberg.org/ebooks/15957', 'en', 134), +(52874, 'The Challenge of the Country: A Study of Country Life Opportunity', 'Fiske, George Walter', '2010-06-09', 18, 'https://www.gutenberg.org/ebooks/32749', 'en', 15890), +(52875, 'The Silent Readers: Sixth Reader', 'Rowland, Albert Lindsay', '2012-07-29', 19, 'https://www.gutenberg.org/ebooks/40369', 'en', 1019), +(52876, 'Is the Bible Indictable?\r\nBeing an Enquiry whether the Bible Comes within the Ruling of the Lord Chief Justice as to Obscene Literature', 'Besant, Annie', '2011-12-11', 25, 'https://www.gutenberg.org/ebooks/38273', 'en', 17637), +(52877, 'Red Pottage', 'Cholmondeley, Mary', '2005-02-02', 42, 'https://www.gutenberg.org/ebooks/14885', 'en', 61), +(52878, 'The Forest Monster of Oz', 'Dulabone, Chris', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10419', 'en', 2203), +(52879, 'A Chinese Wonder Book', 'Pitman, Norman Hinsdale', '2006-06-24', 234, 'https://www.gutenberg.org/ebooks/18674', 'en', 15747), +(52880, 'The Dwelling House', 'Poore, George Vivian', '2015-01-14', 10, 'https://www.gutenberg.org/ebooks/47970', 'en', 17638), +(52881, 'Fire Worship (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 32, 'https://www.gutenberg.org/ebooks/9223', 'en', 13), +(52882, 'De Biezenstekker', 'Buysse, Cyriel', '2015-01-29', 12, 'https://www.gutenberg.org/ebooks/48104', 'nl', 61), +(52883, 'Henry Smeaton: A Jacobite Story of the Reign of George the First.', 'James, G. P. R. (George Payne Rainsford)', '2016-04-21', 9, 'https://www.gutenberg.org/ebooks/51815', 'en', 12252), +(52884, 'The Mistletoe Bough', 'Trollope, Anthony', '2003-02-01', 38, 'https://www.gutenberg.org/ebooks/3719', 'en', 179), +(52885, 'Representative British Orations Volume 1 (of 4)\r\nWith Introductions and Explanatory Notes', NULL, '2017-09-06', 5, 'https://www.gutenberg.org/ebooks/55489', 'en', 277), +(52886, 'Μικρά Φυσικά, Τόμος Πρώτος', 'Aristotle', '2009-01-26', 31, 'https://www.gutenberg.org/ebooks/27895', 'el', 5380), +(52887, 'Campaign of Battery D, First Rhode Island Light Artillery', 'Parker, Ezra Knight', '2010-01-01', 19, 'https://www.gutenberg.org/ebooks/30822', 'en', 444), +(52888, 'Ada, the Betrayed; Or, The Murder at the Old Smithy. A Romance of Passion', 'Rymer, James Malcolm', '2015-05-12', 20, 'https://www.gutenberg.org/ebooks/48938', 'en', 137), +(52889, 'Acadia\nor, A Month with the Blue Noses', 'Cozzens, Frederic S. (Frederic Swartwout)', '2007-11-08', 35, 'https://www.gutenberg.org/ebooks/23409', 'en', 3751), +(52890, 'Shipwreck in the Sky', 'Binder, Eando', '2009-06-15', 77, 'https://www.gutenberg.org/ebooks/29133', 'en', 179), +(52891, 'Letras\nObras Completas Vol. VIII', 'Darío, Rubén', '2016-01-24', 8, 'https://www.gutenberg.org/ebooks/51029', 'es', 3720), +(52892, 'La transformación de las razas en América', 'Alvarez, Agustín', '2008-10-18', 58, 'https://www.gutenberg.org/ebooks/26947', 'es', 17639), +(52893, 'The American Claimant', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9011', 'en', 8041), +(52894, 'In Search of Mademoiselle', 'Gibbs, George', '2015-02-22', 13, 'https://www.gutenberg.org/ebooks/48336', 'en', 17640), +(52895, 'Four Years', 'Yeats, W. B. (William Butler)', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6865', 'en', 14993), +(52896, 'Kuoleman rajoilla: Kertomus', 'Lassila, Maiju', '2017-05-23', 13, 'https://www.gutenberg.org/ebooks/54769', 'fi', 175), +(52897, 'A Collection of Beatrix Potter Stories', 'Potter, Beatrix', '1996-07-01', 311, 'https://www.gutenberg.org/ebooks/582', 'en', 625), +(52898, 'Scènes de la vie de Bohème', 'Murger, Henri', '2006-05-28', 85, 'https://www.gutenberg.org/ebooks/18446', 'fr', 689), +(52899, 'Terminal Compromise', 'Schwartau, Winn', '1993-08-01', 77, 'https://www.gutenberg.org/ebooks/79', 'en', 2815), +(52900, 'Vlaamsch Belgie sedert 1830\nEerste Deel', NULL, '2008-08-18', 13, 'https://www.gutenberg.org/ebooks/26349', 'nl', 17641), +(52901, 'The Eugenic Marriage, Volume 1 (of 4)\r\nA Personal Guide to the New Science of Better Living and Better Babies', 'Hague, W. Grant (William Grant)', '2006-10-21', 32, 'https://www.gutenberg.org/ebooks/19594', 'en', 7357), +(52902, 'Confession; Or, The Blind Heart. A Domestic Story', 'Simms, William Gilmore', '2004-07-01', 18, 'https://www.gutenberg.org/ebooks/6059', 'en', 378), +(52903, 'Le meunier d\'Angibault', 'Sand, George', '2004-10-29', 23, 'https://www.gutenberg.org/ebooks/13892', 'fr', 781), +(52904, 'The Chums of Scranton High out for the Pennant\r\nor, In the Three Town League', 'Ferguson, Donald', '2004-07-19', 11, 'https://www.gutenberg.org/ebooks/12940', 'en', 1669), +(52905, 'El Manuscrito de mi madre\naumentado con las comentarios, prólogo y epílogo', 'Lamartine, Alix de', '2009-07-03', 13, 'https://www.gutenberg.org/ebooks/29301', 'es', 8730), +(52906, 'The Negro', 'Du Bois, W. E. B. (William Edward Burghardt)', '2005-03-14', 149, 'https://www.gutenberg.org/ebooks/15359', 'en', 15255), +(52907, 'The Sporting Dictionary, and Rural Repository, Volume 1 (of 2)\r\nOf General Information upon Every Subject Appertaining to the Sports of the Field', 'Taplin, William', '2019-03-17', 9, 'https://www.gutenberg.org/ebooks/59076', 'en', 2937), +(52908, 'Harper\'s Round Table, April 21, 1896', 'Various', '2018-03-21', 1, 'https://www.gutenberg.org/ebooks/56802', 'en', 668), +(52909, 'The Knickerbocker, Vol. 10, No. 5, November 1837', 'Various', '2014-04-18', 30, 'https://www.gutenberg.org/ebooks/45429', 'en', 18), +(52910, 'Butterflies Worth Knowing', 'Weed, Clarence Moores', '2011-08-08', 56, 'https://www.gutenberg.org/ebooks/37009', 'en', 10917), +(52911, 'The Trial of Jesus from a Lawyer\'s Standpoint, Vol. 2 (of 2)\r\nThe Roman Trial', 'Chandler, Walter M. (Walter Marion)', '2012-10-07', 20, 'https://www.gutenberg.org/ebooks/40967', 'en', 17642), +(52912, 'It May Be True, Vol. 3 (of 3)', 'Wood, Henry, Mrs.', '2012-03-18', 16, 'https://www.gutenberg.org/ebooks/39193', 'en', 61), +(52913, 'Panegyrico de Luiz de Camões', 'Coelho, J. M. Latino (José Maria Latino)', '2007-06-27', 5, 'https://www.gutenberg.org/ebooks/21950', 'pt', 15734), +(52914, 'The Sign of the Stranger', 'Le Queux, William', '2012-10-17', 4, 'https://www.gutenberg.org/ebooks/41089', 'en', 128), +(52915, 'Kuningas Richard Kolmas', 'Shakespeare, William', '2011-10-24', 43, 'https://www.gutenberg.org/ebooks/37835', 'fi', 2048), +(52916, 'Nadeschda: Yhdeksän laulua', 'Runeberg, Johan Ludvig', '2007-03-23', 18, 'https://www.gutenberg.org/ebooks/20882', 'fi', 8), +(52917, 'Old Celtic Romances', NULL, '2011-11-17', 20, 'https://www.gutenberg.org/ebooks/38041', 'en', 8056), +(52918, 'The Church, the Falling Away, and the Restoration', 'Shepherd, J. W. (James Walton)', '2019-03-03', 5, 'https://www.gutenberg.org/ebooks/58998', 'en', 17643), +(52919, 'The Adventures of a Forty-niner\r\nAn Historic Description of California, with Events and Ideas of San Francisco and Its People in Those Early Days', 'Knower, Daniel', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12518', 'en', 17644), +(52920, 'Lone Pine: The Story of a Lost Mine', 'Townshend, R. B. (Richard Baxter)', '2013-03-05', 17, 'https://www.gutenberg.org/ebooks/42268', 'en', 8226), +(52921, 'Chetwynd Calverley\nNew Edition, 1877', 'Ainsworth, William Harrison', '2015-08-11', 10, 'https://www.gutenberg.org/ebooks/49680', 'en', 61), +(52922, 'Prayers and Meditations', 'Bahá\'u\'lláh', '2005-11-02', 34, 'https://www.gutenberg.org/ebooks/16984', 'en', 8946), +(52923, 'Prisoners of Chance\r\nThe Story of What Befell Geoffrey Benteen, Borderman, through His Love for a Lady of France', 'Parrish, Randall', '2006-02-25', 29, 'https://www.gutenberg.org/ebooks/17856', 'en', 323), +(52924, 'An Ocean Tramp', 'McFee, William', '2009-12-11', 18, 'https://www.gutenberg.org/ebooks/30648', 'en', 61), +(52925, 'The Lovels of Arden', 'Braddon, M. E. (Mary Elizabeth)', '2005-12-01', 21, 'https://www.gutenberg.org/ebooks/9475', 'en', 109), +(52926, 'Leon Roch: A Romance, vol. 1 (of 2)', 'Pérez Galdós, Benito', '2015-04-20', 13, 'https://www.gutenberg.org/ebooks/48752', 'en', 480), +(52927, 'Betty at Fort Blizzard', 'Seawell, Molly Elliot', '2006-03-20', 27, 'https://www.gutenberg.org/ebooks/18022', 'en', 61), +(52928, 'Edith and her Ayah, and Other Stories\nEdith and Her Ayah; The Butterfly; The Penitent; The Reproof; The Vase and the Dart; The Jewel; The Storm; The Sabbath-Tree; The White Robe; Crosses; The Two Countries; Do You Love God?; The Imperfect Copy; A Story of the Crimea; \"I Have a Home, a Happy Home\"', 'A. L. O. E.', '2019-08-19', 233, 'https://www.gutenberg.org/ebooks/60138', 'en', NULL), +(52929, 'Webster\'s Unabridged Dictionary', 'Various', '2009-08-22', 684, 'https://www.gutenberg.org/ebooks/29765', 'en', 1481), +(52930, 'The Ink-Stain (Tache d\'encre) — Volume 2', 'Bazin, René', '2003-04-01', 17, 'https://www.gutenberg.org/ebooks/3973', 'en', 560), +(52931, 'A Saudade: Canto elegiaco', 'Coutinho, Henrique Ernesto de Almeida', '2008-03-16', 4, 'https://www.gutenberg.org/ebooks/24846', 'pt', 1638), +(52932, 'The Indian Council in the Valley of the Walla-Walla. 1855', 'Kip, Lawrence', '2016-09-23', 8, 'https://www.gutenberg.org/ebooks/53128', 'en', 17645), +(52933, 'My Kalulu, Prince, King and Slave: A Story of Central Africa', 'Stanley, Henry M. (Henry Morton)', '2010-06-20', 25, 'https://www.gutenberg.org/ebooks/32923', 'en', 9849), +(52934, 'Trees of the Forest: Their Beauty and Use', 'Anonymous', '2019-05-01', 34, 'https://www.gutenberg.org/ebooks/59412', 'en', 3270), +(52935, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nSouth Carolina Narratives, Part 2', 'United States. Work Projects Administration', '2007-05-17', 21, 'https://www.gutenberg.org/ebooks/21508', 'en', 17646), +(52936, 'A Refutation of the Charges Made against the Confederate States of America of Having Authorized the Use of Explosive and Poisoned Musket and Rifle Balls during the Late Civil War of 1861-65', 'Hayden, Horace Edwin', '2008-07-07', 25, 'https://www.gutenberg.org/ebooks/25994', 'en', 6789), +(52937, 'Index for the Project Gutenberg Series \"American Pioneers and Patriots\"', 'Abbott, John S. C. (John Stevens Cabot)', '2018-07-27', 11, 'https://www.gutenberg.org/ebooks/57588', 'en', 207), +(52938, 'Theocritos\' Idyller', 'Theocritus', '2017-01-07', 9, 'https://www.gutenberg.org/ebooks/53914', 'sv', 17647), +(52939, 'Geographic Variation in the North American Cyprinid Fish, Hybopsis gracilis', 'Olund, Leonard J.', '2011-12-27', 6, 'https://www.gutenberg.org/ebooks/38425', 'en', 12959), +(52940, 'In the Shadow of the Glen', 'Synge, J. M. (John Millington)', '1999-01-01', 35, 'https://www.gutenberg.org/ebooks/1618', 'en', 5104), +(52941, 'A Fleet in Being: Notes of Two Trips With The Channel Squadron', 'Kipling, Rudyard', '2014-06-03', 32, 'https://www.gutenberg.org/ebooks/45871', 'en', 4131), +(52942, 'L\'archéologie égyptienne', 'Maspero, G. (Gaston)', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/10841', 'fr', 673), +(52943, 'Diary of Samuel Pepys — Volume 37: August 1665', 'Pepys, Samuel', '2004-11-30', 16, 'https://www.gutenberg.org/ebooks/4158', 'en', 738), +(52944, 'A Residence in France During the Years 1792, 1793, 1794 and 1795, Part II., 1793\nDescribed in a Series of Letters from an English Lady: with General\nand Incidental Remarks on the French Character and Manners', 'Biggs, Charlotte', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/11993', 'en', 11900), +(52945, 'Quéda que as Mulheres Têm para os Tolos', 'Hénaux, Victor', '2019-05-27', 23, 'https://www.gutenberg.org/ebooks/59620', 'pt', 17648), +(52946, 'The River Motor Boat Boys on the Mississippi; Or, On the Trail to the Gulf', 'Gordon, Harry', '2012-01-18', 5, 'https://www.gutenberg.org/ebooks/38617', 'en', 2722), +(52947, 'The Girl Scouts\' Good Turn', 'Lavell, Edith', '2008-01-11', 18, 'https://www.gutenberg.org/ebooks/24248', 'en', 2096), +(52948, 'Waverley; Or, \'Tis Sixty Years Since — Volume 1', 'Scott, Walter', '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/4964', 'en', 15656), +(52949, 'Une saison en enfer', 'Rimbaud, Arthur', '2018-03-02', 64, 'https://www.gutenberg.org/ebooks/56668', 'fr', 17649), +(52950, 'Molly Make-Believe', 'Abbott, Eleanor Hallowell', '2007-10-01', 16, 'https://www.gutenberg.org/ebooks/22983', 'en', 17650), +(52951, 'The Divine Comedy by Dante, Illustrated, Purgatory, Complete', 'Dante Alighieri', '2004-08-05', 270, 'https://www.gutenberg.org/ebooks/8795', 'en', 2212), +(52952, 'The Life, Letters and Work of Frederic Leighton. Volume I', 'Barrington, Russell, Mrs.', '2011-05-20', 12, 'https://www.gutenberg.org/ebooks/35934', 'en', 11888), +(52953, 'The Heptalogia', 'Swinburne, Algernon Charles', '2006-04-19', 24, 'https://www.gutenberg.org/ebooks/18210', 'en', 8), +(52954, 'The Architecture and Landscape Gardening of the Exposition\r\nA Pictorial Survey of the Most Beautiful Achitectural Compositions of the Panama-Pacific International Exposition', 'Mullgardt, Louis Christian', '2006-01-01', 59, 'https://www.gutenberg.org/ebooks/9647', 'en', 17651), +(52955, 'The Harlequin Opal: A Romance. Vol. 2 (of 3)', 'Hume, Fergus', '2013-07-10', 27, 'https://www.gutenberg.org/ebooks/43188', 'en', 3148), +(52956, 'A gravura em Portugal: breves apontamentos para a sua história', 'Viterbo, Francisco Marques Sousa', '2007-12-13', 15, 'https://www.gutenberg.org/ebooks/23851', 'pt', 17652), +(52957, 'Schöne Aussicht: A Journal of Our Trip Abroad', 'Spilker, Louise', '2015-03-22', 16, 'https://www.gutenberg.org/ebooks/48560', 'en', 1408), +(52958, 'Rambles in Brittany', 'Mansfield, M. F. (Milburg Francisco)', '2013-06-03', 9, 'https://www.gutenberg.org/ebooks/42866', 'en', 2281), +(52959, 'The Lord of Glory\nMeditations on the person, the work and glory of our Lord Jesus Christ', 'Gaebelein, Arno Clemens', '2009-07-31', 29, 'https://www.gutenberg.org/ebooks/29557', 'en', 17653), +(52960, 'Stories of the Nibelungen for Young People', NULL, '2011-01-29', 12, 'https://www.gutenberg.org/ebooks/35108', 'en', 17654), +(52961, 'The Latin Hymn-writers and Their Hymns', 'Duffield, Samuel Willoughby', '2017-06-13', 18, 'https://www.gutenberg.org/ebooks/54903', 'en', 17655), +(52962, 'A Satire Anthology', NULL, '2014-12-04', 29, 'https://www.gutenberg.org/ebooks/47528', 'en', 1971), +(52963, 'Oeuvres de Champlain', 'Champlain, Samuel de', '2005-12-08', 39, 'https://www.gutenberg.org/ebooks/17258', 'fr', 1643), +(52964, 'Voyage autour du monde par la frégate du roi La Boudeuse et la flûte L\'Étoile, en 1766, 1767, 1768 & 1769.', 'Bougainville, Louis-Antoine de, comte', '2009-04-03', 27, 'https://www.gutenberg.org/ebooks/28485', 'fr', 17656), +(52965, 'Secret Societies And Subversive Movements', 'Webster, Nesta Helen', '2006-08-23', 99, 'https://www.gutenberg.org/ebooks/19104', 'en', 7077), +(52966, 'The Stolen Cruiser', 'Westerman, Percy F. (Percy Francis)', '2015-08-10', 32, 'https://www.gutenberg.org/ebooks/49674', 'en', 324), +(52967, 'The Seaboard Parish Volume 3', 'MacDonald, George', '2005-07-01', 6, 'https://www.gutenberg.org/ebooks/8553', 'en', 11759), +(52968, 'De kasteelen van Koning Lodewijk II van Beieren\r\nDe Aarde en haar Volken, 1887', 'Anonymous', '2005-10-30', 17, 'https://www.gutenberg.org/ebooks/16970', 'nl', 17657), +(52969, 'Punchinello, Volume 1, No. 02, April 9, 1870', 'Various', '2005-12-01', 10, 'https://www.gutenberg.org/ebooks/9481', 'en', 372), +(52970, 'The Religion of Babylonia and Assyria', 'Pinches, Theophilus G. (Theophilus Goldridge)', '2000-02-01', 99, 'https://www.gutenberg.org/ebooks/2069', 'en', 9027), +(52971, 'Violists', 'McGowan, Richard', '1994-03-01', 30, 'https://www.gutenberg.org/ebooks/112', 'en', 48), +(52972, 'Recreations of Christopher North, Volume 2', 'Wilson, John', '2006-11-27', 25, 'https://www.gutenberg.org/ebooks/19938', 'en', 20), +(52973, 'Masters of Water-Colour Painting', NULL, '2007-08-23', 102, 'https://www.gutenberg.org/ebooks/22379', 'en', 15680), +(52974, 'The Most Sentimental Man', 'Smith, Evelyn E.', '2009-08-25', 39, 'https://www.gutenberg.org/ebooks/29791', 'en', 26), +(52975, 'Conscience — Volume 2', 'Malot, Hector', '2003-04-01', 32, 'https://www.gutenberg.org/ebooks/3987', 'en', 1563), +(52976, 'Elissa; Or, The Doom of Zimbabwe', 'Haggard, H. Rider (Henry Rider)', '2006-03-31', 42, 'https://www.gutenberg.org/ebooks/2855', 'en', 4377), +(52977, 'Grocers\' Goods\r\nA Family Guide to the Purchase of Flour, Sugar, Tea, Coffee, Spices, Canned Goods, Cigars, Wines, and All Other Articles Usually Found in American Grocery Stores', 'Goddard, Frederick B. (Frederick Bartlett)', '2015-12-24', 11, 'https://www.gutenberg.org/ebooks/50759', 'en', 11808), +(52978, 'Belly Laugh', 'Garrett, Randall', '2009-04-30', 51, 'https://www.gutenberg.org/ebooks/28643', 'en', 179), +(52979, 'Napoleon\'s Letters to Josephine, 1796-1812\r\nFor the First Time Collected and Translated, with Notes Social, Historical, and Chronological, from Contemporary Sources', 'Napoleon I, Emperor of the French', '2011-09-21', 83, 'https://www.gutenberg.org/ebooks/37499', 'en', 17658), +(52980, 'The Mysteries of Paris, Volume 6 of 6', 'Sue, Eugène', '2010-09-22', 18, 'https://www.gutenberg.org/ebooks/33805', 'en', 560), +(52981, 'The Prisoner at the Bar: Sidelights on the Administration of Criminal Justice', 'Train, Arthur Cheney', '2018-12-26', 9, 'https://www.gutenberg.org/ebooks/58534', 'en', 17659), +(52982, 'The Desert Fiddler', 'Hamby, William H. (William Henry)', '2008-07-03', 26, 'https://www.gutenberg.org/ebooks/25960', 'en', 17660), +(52983, 'Anna Karenina, 2. Band', 'Tolstoy, Leo, graf', '2014-02-18', 53, 'https://www.gutenberg.org/ebooks/44957', 'de', 2815), +(52984, 'The Orphan', 'Mulford, Clarence Edward', '2010-07-01', 40, 'https://www.gutenberg.org/ebooks/33039', 'en', 61), +(52985, 'The Border Boys with the Mexican Rangers', 'Goldfrap, John Henry', '2016-08-18', 21, 'https://www.gutenberg.org/ebooks/52832', 'en', 17661), +(52986, 'Notes and Queries, Vol. IV, Number 113, December 27, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-04-21', 18, 'https://www.gutenberg.org/ebooks/39503', 'en', 105), +(52987, 'Notes and Queries, Vol. V, Number 132, May 8, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-11-21', 8, 'https://www.gutenberg.org/ebooks/41419', 'en', 105), +(52988, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 280, October 27, 1827', 'Various', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11369', 'en', 133), +(52989, 'Dartmoor', 'Salmon, Arthur L. (Arthur Leslie)', '2014-06-05', 7, 'https://www.gutenberg.org/ebooks/45885', 'en', 17662), +(52990, 'Essais de Montaigne (self-édition) - Volume IV', 'Montaigne, Michel de', '2019-01-16', 29, 'https://www.gutenberg.org/ebooks/58706', 'fr', 4252), +(52991, 'Heroes of the Great Conflict; Life and Services of William Farrar\nSmith, Major General, United States Volunteer in the Civil War', 'Wilson, James Harrison', '2004-12-23', 9, 'https://www.gutenberg.org/ebooks/14429', 'en', 2263), +(52992, 'La lyre héroïque et dolente', 'Quillard, Pierre', '2013-12-05', 11, 'https://www.gutenberg.org/ebooks/44359', 'fr', 4086), +(52993, 'Sanomalehtimiesajoiltani', 'Aho, Juhani', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/11967', 'fi', 17663), +(52994, 'Die Lobensteiner reisen nach Böhmen: Zwölf Novellen und Geschichten', 'Döblin, Alfred', '2011-07-20', 25, 'https://www.gutenberg.org/ebooks/36779', 'de', 1212), +(52995, 'Elves and Heroes', 'Mackenzie, Donald A. (Donald Alexander)', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10089', 'en', 11268), +(52996, 'Sketches New and Old, Part 7.', 'Twain, Mark', '2004-06-27', 11, 'https://www.gutenberg.org/ebooks/5842', 'en', 2116), +(52997, 'The Adventures of a Boy Reporter', 'Morrison, Harry Steele', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/4990', 'en', 9575), +(52998, 'The Marriage of Esther', 'Boothby, Guy', '2012-05-19', 15, 'https://www.gutenberg.org/ebooks/39731', 'en', 61), +(52999, 'Lagrimas Abençoadas', 'Castelo Branco, Camilo', '2007-10-12', 24, 'https://www.gutenberg.org/ebooks/22977', 'pt', 671), +(53000, 'Cours familier de Littérature - Volume 28', 'Lamartine, Alphonse de', '2015-07-15', 12, 'https://www.gutenberg.org/ebooks/49446', 'fr', 920), +(53001, 'The Oakdale Affair', 'Burroughs, Edgar Rice', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8761', 'en', 323), +(53002, 'Literature and Life (Complete)', 'Howells, William Dean', '2004-10-22', 32, 'https://www.gutenberg.org/ebooks/3389', 'en', 20), +(53003, 'The Tangled Threads', 'Porter, Eleanor H. (Eleanor Hodgman)', '2006-09-19', 31, 'https://www.gutenberg.org/ebooks/19336', 'en', 179), +(53004, 'Historical Record of the Fifteenth, or, the Yorkshire East Riding, Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1685, and of Its Subsequent Services to 1848', 'Cannon, Richard', '2017-07-01', 6, 'https://www.gutenberg.org/ebooks/55019', 'en', 17664), +(53005, 'London Days: A Book of Reminiscences', 'Warren, Arthur', '2011-01-01', 71, 'https://www.gutenberg.org/ebooks/34812', 'en', 17665), +(53006, 'Vida De Lazarillo De Tormes Y De Sus Fortunas Y Adversidades', 'Anonymous', '1995-09-01', 157, 'https://www.gutenberg.org/ebooks/320', 'es', 1696), +(53007, 'Sundry Accounts', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2008-12-07', 13, 'https://www.gutenberg.org/ebooks/27439', 'en', 179), +(53008, 'Touring in 1600: A Study in the Development of Travel as a Means of Education', 'Bates, E. S. (Ernest Stuart)', '2015-03-27', 4, 'https://www.gutenberg.org/ebooks/48594', 'en', 17666), +(53009, 'Recollections of the Civil War\r\nWith the Leaders at Washington and in the Field in the Sixties', 'Dana, Charles A. (Charles Anderson)', '2013-06-08', 41, 'https://www.gutenberg.org/ebooks/42892', 'en', 2723); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(53010, 'A Hardy Norseman', 'Lyall, Edna', '2017-10-27', 11, 'https://www.gutenberg.org/ebooks/55825', 'en', 658), +(53011, 'Paul Clifford — Volume 02', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7729', 'en', 356), +(53012, 'Baseball Joe, Home Run King; or, The Greatest Pitcher and Batter on Record', 'Chadwick, Lester', '2013-10-12', 10, 'https://www.gutenberg.org/ebooks/43940', 'en', 3669), +(53013, 'The Fourth Invasion', 'Lowndes, Robert W.', '2007-10-20', 42, 'https://www.gutenberg.org/ebooks/23099', 'en', 26), +(53014, 'Man And His Ancestor: A Study In Evolution', 'Morris, Charles', '2009-04-02', 12, 'https://www.gutenberg.org/ebooks/28471', 'en', 1109), +(53015, 'Kahden nuoren aviovaimon muistelmat', 'Balzac, Honoré de', '2016-07-27', 3, 'https://www.gutenberg.org/ebooks/52658', 'fi', 434), +(53016, 'How to Tell the Birds from the Flowers', 'Wood, Robert Williams', '2007-01-05', 3, 'https://www.gutenberg.org/ebooks/20278', 'en', 190), +(53017, 'Bunyan Characters (2nd Series)', 'Whyte, Alexander', '1999-09-01', 19, 'https://www.gutenberg.org/ebooks/1886', 'en', 17667), +(53018, 'Les aventures du jeune Comte Potowski, Vol. 1 (of 2)\r\nUn roman de coeœur par Marat, l\'ami du peuple', 'Marat, Jean Paul', '2018-11-27', 10, 'https://www.gutenberg.org/ebooks/58362', 'fr', 10375), +(53019, 'Speeches against Catilina', 'Cicero, Marcus Tullius', '2012-04-02', 94, 'https://www.gutenberg.org/ebooks/39355', 'en', 34), +(53020, 'Poems', 'Walton, Mary Alice', '2005-02-02', 10, 'https://www.gutenberg.org/ebooks/14871', 'en', 8), +(53021, 'We\'re Civilized!', 'Clifton, Mark', '2011-12-13', 37, 'https://www.gutenberg.org/ebooks/38287', 'en', 613), +(53022, 'Hindu literature : Comprising The Book of good counsels, Nala and Damayanti, The Ramayana, and Sakoontala', 'Kalidasa', '2004-08-24', 111, 'https://www.gutenberg.org/ebooks/13268', 'en', 10701), +(53023, 'The Golden Mean', 'Nemiroff, Robert J.', '1996-12-01', 95, 'https://www.gutenberg.org/ebooks/744', 'en', 1044), +(53024, 'Practical Forestry in the Pacific Northwest\nProtecting Existing Forests and Growing New Ones, from the Standpoint of the Public and That of the Lumberman, with an Outline of Technical Methods', 'Allen, E. T. (Edward Tyson)', '2006-06-25', 15, 'https://www.gutenberg.org/ebooks/18680', 'en', 17668), +(53025, 'Le Capitaine Martin; ou, les Trois croisières', 'Reybaud, Louis', '2015-01-16', 27, 'https://www.gutenberg.org/ebooks/47984', 'fr', 298), +(53026, 'Finding the Worth While in the Southwest', 'Saunders, Charles Francis', '2016-01-15', 10, 'https://www.gutenberg.org/ebooks/50933', 'en', 4240), +(53027, 'Mémoires d\'une contemporaine. Tome 5\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-05-15', 13, 'https://www.gutenberg.org/ebooks/28829', 'fr', 1941), +(53028, 'Old Picture Books, With Other Essays on Bookish Subjects', 'Pollard, Alfred W. (Alfred William)', '2013-08-20', 24, 'https://www.gutenberg.org/ebooks/43518', 'en', 268), +(53029, 'A Year at the Shore', 'Gosse, Philip Henry', '2015-05-22', 13, 'https://www.gutenberg.org/ebooks/49022', 'en', 17669), +(53030, 'The Bible, Douay-Rheims, Book 05: Deuteronomy\r\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8305', 'en', 6264), +(53031, 'The So-called Human Race', 'Taylor, Bert Leston', '2010-01-31', 18, 'https://www.gutenberg.org/ebooks/31138', 'en', 190), +(53032, 'Minor Poets of the Caroline Period, Vol. III', NULL, '2014-09-14', 24, 'https://www.gutenberg.org/ebooks/46856', 'en', 466), +(53033, 'Quisanté', 'Hope, Anthony', '2006-11-11', 13, 'https://www.gutenberg.org/ebooks/19752', 'en', 109), +(53034, 'Kathay: A Cruise in the China Seas', 'Macaulay, W. Hastings', '2009-01-21', 22, 'https://www.gutenberg.org/ebooks/27861', 'en', 2773), +(53035, 'Pictorial Photography in America 1920', 'Pictorial Photographers of America', '2008-02-07', 58, 'https://www.gutenberg.org/ebooks/28015', 'en', 17670), +(53036, 'Lettres à M. Panizzi - 3eme édition, Tome I', 'Mérimée, Prosper', '2010-04-06', 10, 'https://www.gutenberg.org/ebooks/31904', 'fr', 980), +(53037, 'Tales from Tennyson', 'Tennyson, Alfred Tennyson, Baron', '2011-03-17', 49, 'https://www.gutenberg.org/ebooks/35598', 'en', 5671), +(53038, 'The Project Gutenberg Web Pages', 'Project Gutenberg', '1996-06-01', 2, 'https://www.gutenberg.org/ebooks/576', 'en', 340), +(53039, 'Mitteilungen aus den Memoiren des Satan — Band 2', 'Hauff, Wilhelm', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6891', 'de', 10565), +(53040, 'The Key to Peace', 'Miles, Anna Marie', '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/12188', 'en', 14132), +(53041, 'Applied Eugenics', 'Johnson, Roswell H. (Roswell Hill)', '2006-10-17', 65, 'https://www.gutenberg.org/ebooks/19560', 'en', 7357), +(53042, 'Die Argonauten', 'Grillparzer, Franz', '2005-04-01', 39, 'https://www.gutenberg.org/ebooks/7943', 'de', 17671), +(53043, 'Briefe an Ludwig Tieck (4/4)\nVierter Band', 'Tieck, Ludwig', '2015-06-14', 9, 'https://www.gutenberg.org/ebooks/49210', 'de', 3236), +(53044, 'The Girls of Central High Aiding the Red Cross\r\nOr, Amateur Theatricals for a Worthy Cause', 'Morrison, Gertrude W.', '2005-05-01', 28, 'https://www.gutenberg.org/ebooks/8137', 'en', 1669), +(53045, 'Les règles de Cicco Simonetta\r\npour le déchiffrement des écritures secrètes', 'Simonetta, Francesco', '2009-03-01', 19, 'https://www.gutenberg.org/ebooks/28227', 'fr', 17672), +(53046, 'Le Naturalisme au théâtre, les théories et les exemples', 'Zola, Émile', '2004-10-25', 22, 'https://www.gutenberg.org/ebooks/13866', 'fr', 17673), +(53047, 'Footsteps of Fate', 'Couperus, Louis', '2010-12-16', 18, 'https://www.gutenberg.org/ebooks/34678', 'en', 5417), +(53048, 'Thorley Weir', 'Benson, E. F. (Edward Frederic)', '2014-07-12', 12, 'https://www.gutenberg.org/ebooks/46258', 'en', 3850), +(53049, 'Forty-one years in India: from subaltern to commander-in-chief', 'Roberts, Frederick Sleigh Roberts, Earl', '2005-08-14', 90, 'https://www.gutenberg.org/ebooks/16528', 'en', 4877), +(53050, 'The Sense of Taste', 'Hollingworth, Harry L. (Harry Levi)', '2019-03-17', 5, 'https://www.gutenberg.org/ebooks/59082', 'en', 17674), +(53051, 'Anecdotes of Painters, Engravers, Sculptors and Architects, and Curiosities of Art, (Vol. 2 of 3)', 'Spooner, Shearjashub', '2007-04-21', 17, 'https://www.gutenberg.org/ebooks/21198', 'en', 9722), +(53052, 'Aikojen yöstä: Historiallisia kertomuksia IV', 'Wilkuna, Kyösti', '2013-01-13', 7, 'https://www.gutenberg.org/ebooks/41841', 'fi', 456), +(53053, 'Fort Laramie National Monument, Wyoming', 'Hieb, David L.', '2018-09-18', 18, 'https://www.gutenberg.org/ebooks/57924', 'en', 17675), +(53054, 'Preludes 1921-1922', 'Drinkwater, John', '2004-05-01', 8, 'https://www.gutenberg.org/ebooks/5628', 'en', 1594), +(53055, 'Spacewrecked on Venus', 'Jones, Neil R.', '2012-10-09', 44, 'https://www.gutenberg.org/ebooks/40993', 'en', 9609), +(53056, 'Literary Shrines: The Haunts of Some Famous American Authors', 'Wolfe, Theodore F. (Theodore Frelinghuysen)', '2012-02-17', 11, 'https://www.gutenberg.org/ebooks/38889', 'en', 17676), +(53057, 'The Princess Sophia', 'Benson, E. F. (Edward Frederic)', '2018-10-22', 19, 'https://www.gutenberg.org/ebooks/58150', 'en', 10876), +(53058, 'Fairies Afield', 'Molesworth, Mrs.', '2012-03-16', 19, 'https://www.gutenberg.org/ebooks/39167', 'en', 1007), +(53059, 'The Divine Vision, and Other Poems', 'Russell, George William', '2011-08-31', 12, 'https://www.gutenberg.org/ebooks/36913', 'en', 8), +(53060, 'Four American Indians: King Philip, Pontiac, Tecumseh, Osceola', 'Whitney, Edson Leone', '2008-05-20', 25, 'https://www.gutenberg.org/ebooks/25538', 'en', 9593), +(53061, 'The Padre Island Story', 'Daly, Loraine', '2018-05-08', 7, 'https://www.gutenberg.org/ebooks/57118', 'en', 17677), +(53062, 'Door Noorwegen\nDe Aarde en haar Volken, 1908', 'Bosch, G.', '2007-03-22', 7, 'https://www.gutenberg.org/ebooks/20876', 'nl', 3611), +(53063, 'Dream Days', 'Grahame, Kenneth', '1998-04-01', 81, 'https://www.gutenberg.org/ebooks/1288', 'en', 2024), +(53064, 'The Annual Catalogue (1737)\r\nOr, A New and Compleat List of All The New Books, New Editions of Books, Pamphlets, &c.', 'Warner, William', '2007-01-22', 28, 'https://www.gutenberg.org/ebooks/20416', 'en', 7503), +(53065, 'Six Little Bunkers at Grandma Bell\'s', 'Hope, Laura Lee', '2005-01-06', 21, 'https://www.gutenberg.org/ebooks/14623', 'en', 128), +(53066, 'The Adventures of a Suburbanite', 'Butler, Ellis Parker', '2013-11-10', 24, 'https://www.gutenberg.org/ebooks/44153', 'en', 6642), +(53067, 'The Chaplet of Pearls', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/5274', 'en', 2871), +(53068, 'La aldea perdida\nNovela-poema de costumbres campesinas', 'Palacio Valdés, Armando', '2011-07-01', 39, 'https://www.gutenberg.org/ebooks/36573', 'es', 1696), +(53069, 'The Apostles', 'Renan, Ernest', '2014-03-08', 15, 'https://www.gutenberg.org/ebooks/45081', 'en', 14262), +(53070, 'The American Missionary — Volume 52, No. 02, June, 1898', 'Various', '2008-07-03', 18, 'https://www.gutenberg.org/ebooks/25958', 'en', 395), +(53071, 'Un año en quince minutos: pieza en un acto', 'García González, Manuel', '2016-05-10', 11, 'https://www.gutenberg.org/ebooks/52036', 'es', 2729), +(53072, 'My Diary in Serbia: April 1, 1915-Nov. 1, 1915', 'Stanley, Monica M.', '2010-06-27', 24, 'https://www.gutenberg.org/ebooks/33001', 'en', 449), +(53073, 'History of Texas Land', 'Texas. General Land Office', '2018-07-19', 14, 'https://www.gutenberg.org/ebooks/57544', 'en', 17678), +(53074, 'Dinah Polka', NULL, '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10283', 'en', 2633), +(53075, 'Cape Cod Ballads, and Other Verse', 'Lincoln, Joseph Crosby', '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11351', 'en', 8), +(53076, 'Elias Lönnrotin matkat I: 1828-1839', 'Lönnrot, Elias', '2018-02-04', 19, 'https://www.gutenberg.org/ebooks/56496', 'fi', 7220), +(53077, 'The Flag of Distress: A Story of the South Sea', 'Reid, Mayne', '2008-04-25', 42, 'https://www.gutenberg.org/ebooks/25164', 'en', 1447), +(53078, 'The Protestants Plea for a Socinian\r\nJustifying His Doctrine from Being Opposite to Scripture or Church Authority; and Him from Being Guilty of Heresie, or Schism', 'R. H.', '2012-11-21', 5, 'https://www.gutenberg.org/ebooks/41421', 'en', 17679), +(53079, 'The Facts Concerning the Recent Carnival of Crime in Connecticut', 'Twain, Mark', '2004-09-16', 43, 'https://www.gutenberg.org/ebooks/3183', 'en', 1426), +(53080, 'Scientific American Supplement, No. 611, September 17, 1887', 'Various', '2005-10-26', 32, 'https://www.gutenberg.org/ebooks/16948', 'en', 210), +(53081, 'Screw-Thread Cutting by the Master-Screw Method since 1480', 'Battison, Edwin A.', '2010-03-24', 31, 'https://www.gutenberg.org/ebooks/31756', 'en', 17680), +(53082, 'The Girl Scouts at Miss Allen\'s School', 'Lavell, Edith', '2017-07-28', 10, 'https://www.gutenberg.org/ebooks/55213', 'en', 2154), +(53083, 'Notes and Queries, Number 43, August 24, 1850', 'Various', '2004-09-09', 12, 'https://www.gutenberg.org/ebooks/13406', 'en', 105), +(53084, 'To Mars via The Moon\nAn Astronomical Story', 'Wicks, Mark', '2008-12-27', 20, 'https://www.gutenberg.org/ebooks/27633', 'en', 26), +(53085, 'Dickory Cronke: The Dumb Philosopher, or, Great Britain\'s Wonder', 'Defoe, Daniel', '2000-01-01', 17, 'https://www.gutenberg.org/ebooks/2051', 'en', 11513), +(53086, 'The Boys of \'98', 'Otis, James', '2009-12-15', 23, 'https://www.gutenberg.org/ebooks/30684', 'en', 4387), +(53087, 'The American Language\r\nA Preliminary Inquiry into the Development of English in the United States', 'Mencken, H. L. (Henry Louis)', '2013-08-01', 107, 'https://www.gutenberg.org/ebooks/43376', 'en', 17681), +(53088, 'The Wind in the Willows', 'Grahame, Kenneth', '2007-08-01', 12, 'https://www.gutenberg.org/ebooks/22341', 'en', 2549), +(53089, 'The Gun-Brand', 'Hendryx, James B. (James Beardsley)', '2005-07-01', 27, 'https://www.gutenberg.org/ebooks/16174', 'en', 315), +(53090, 'Le 13e Hussards, types, profils, esquisses et croquis militaires... á pied et á cheval', 'Gaboriau, Emile', '2014-08-17', 29, 'https://www.gutenberg.org/ebooks/46604', 'fr', 8870), +(53091, 'The Mysteries of All Nations\r\nRise and Progress of Superstition, Laws Against and Trials of Witches, Ancient and Modern Delusions Together with Strange Customs, Fables, and Tales', 'Grant, James (Archaeologist)', '2006-11-23', 71, 'https://www.gutenberg.org/ebooks/19900', 'en', 17682), +(53092, 'The Lady of the Decoration', 'Little, Frances', '2005-02-01', 15, 'https://www.gutenberg.org/ebooks/7523', 'en', 3303), +(53093, 'Sketches of Young Couples', 'Dickens, Charles', '1997-05-01', 82, 'https://www.gutenberg.org/ebooks/916', 'en', 14852), +(53094, 'Library of the World\'s Best Literature, Ancient and Modern, Vol. 9', NULL, '2010-11-06', 48, 'https://www.gutenberg.org/ebooks/34224', 'en', 19), +(53095, 'Pitcher Pollock', 'Mathewson, Christy', '2015-12-24', 8, 'https://www.gutenberg.org/ebooks/50761', 'en', 3669), +(53096, 'Primitive Psycho-Therapy and Quackery', 'Lawrence, Robert Means', '2007-11-02', 22, 'https://www.gutenberg.org/ebooks/23293', 'en', 17683), +(53097, 'Through Swamp and Glade: A Tale of the Seminole War', 'Munroe, Kirk', '2017-07-01', 13, 'https://www.gutenberg.org/ebooks/55021', 'en', 11360), +(53098, 'The King of the Mountains', 'About, Edmond', '2013-02-15', 47, 'https://www.gutenberg.org/ebooks/42096', 'en', 356), +(53099, 'The Lost Continent', 'Burroughs, Edgar Rice', '2005-08-01', 14, 'https://www.gutenberg.org/ebooks/8759', 'en', 95), +(53100, 'Vorlesungen über Thermodynamik\nSiebente Auflage', 'Planck, Max', '2010-03-09', 41, 'https://www.gutenberg.org/ebooks/31564', 'de', 8618), +(53101, 'Julius Caesar', 'Shakespeare, William', '2000-07-01', 84, 'https://www.gutenberg.org/ebooks/2263', 'en', 1298), +(53102, 'Scamp and I: A Story of City By-Ways', 'Meade, L. T.', '2013-07-08', 4, 'https://www.gutenberg.org/ebooks/43144', 'en', 8201), +(53103, 'John Barleycorn', 'London, Jack', '1995-08-01', 345, 'https://www.gutenberg.org/ebooks/318', 'en', 17684), +(53104, 'The Continental Monthly, Vol. 1, No. 2, February, 1862\r\nDevoted To Literature And National Policy', 'Various', '2004-10-05', 5, 'https://www.gutenberg.org/ebooks/13634', 'en', 558), +(53105, 'Poems & Ballads (Second Series)\nSwinburne\'s Poems Volume III', 'Swinburne, Algernon Charles', '2008-12-04', 52, 'https://www.gutenberg.org/ebooks/27401', 'en', 3400), +(53106, 'The Rising of the Tide: The Story of Sabinsport', 'Tarbell, Ida M. (Ida Minerva)', '2014-07-28', 19, 'https://www.gutenberg.org/ebooks/46436', 'en', 579), +(53107, '\"My Novel\" — Volume 10', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 8, 'https://www.gutenberg.org/ebooks/7711', 'en', 7863), +(53108, 'The Grell Mystery', 'Froest, Frank', '2007-07-30', 42, 'https://www.gutenberg.org/ebooks/22173', 'en', 128), +(53109, 'Flying Machines Today', 'Ennis, William D. (William Duane)', '2016-03-17', 18, 'https://www.gutenberg.org/ebooks/51481', 'en', 17685), +(53110, 'Preface to the Works of Shakespeare (1734)', 'Theobald, Mr. (Lewis)', '2005-07-22', 19, 'https://www.gutenberg.org/ebooks/16346', 'en', 1735), +(53111, 'Essays in Liberalism\nBeing the Lectures and Papers Which Were Delivered at the\nLiberal Summer School at Oxford, 1922', 'Various', '2005-12-12', 19, 'https://www.gutenberg.org/ebooks/17294', 'en', 17686), +(53112, 'Buddy Jim', 'Gordon, Elizabeth', '2015-11-26', 12, 'https://www.gutenberg.org/ebooks/50553', 'en', 1123), +(53113, 'The Motor Boat Club and The Wireless; Or, the Dot, Dash and Dare Cruise', 'Hancock, H. Irving (Harrie Irving)', '2009-03-30', 19, 'https://www.gutenberg.org/ebooks/28449', 'en', 17687), +(53114, 'Uudesta Maailmasta: Hajanaisia matkakuvia Amerikasta', 'Gripenberg, Alexandra, friherrinna', '2013-10-19', 15, 'https://www.gutenberg.org/ebooks/43978', 'fi', 1110), +(53115, 'Unc\' Edinburg: A Plantation Echo', 'Page, Thomas Nelson', '2010-10-01', 15, 'https://www.gutenberg.org/ebooks/34016', 'en', 17688), +(53116, 'Blackwood\'s Edinburgh Magazine, Vol. 70, No. 431, September 1851', 'Various', '2013-12-05', 21, 'https://www.gutenberg.org/ebooks/44361', 'en', 711), +(53117, 'Monks, Popes, and their Political Intrigues', 'Alberger, John', '2011-10-10', 4, 'https://www.gutenberg.org/ebooks/37693', 'en', 10543), +(53118, 'State of the Union Addresses', 'Reagan, Ronald', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/5046', 'en', 1926), +(53119, 'Ballads of Scottish Tradition and Romance\nPopular Ballads of the Olden Times - Third Series', NULL, '2007-02-19', 10, 'https://www.gutenberg.org/ebooks/20624', 'en', 5478), +(53120, 'The Children\'s Six Minutes', 'Wright, Bruce S. (Bruce Simpson)', '2004-12-21', 114, 'https://www.gutenberg.org/ebooks/14411', 'en', 4431), +(53121, 'The Comic Almanack, Volume 2 (of 2)\r\nAn Ephemeris in Jest and Earnest, Containing Merry Tales, Humerous Poetry, Quips, and Oddities', 'Thackeray, William Makepeace', '2016-06-01', 25, 'https://www.gutenberg.org/ebooks/52204', 'en', 17689), +(53122, 'Astronomy with an Opera-glass\r\nA Popular Introduction to the Study of the Starry Heavens with the Simplest of Optical Instruments', 'Serviss, Garrett Putman', '2011-07-15', 34, 'https://www.gutenberg.org/ebooks/36741', 'en', 1683), +(53123, 'Diary of Samuel Pepys — Volume 70: December 1668', 'Pepys, Samuel', '2004-12-01', 24, 'https://www.gutenberg.org/ebooks/4194', 'en', 478), +(53124, 'Parochial and Plain Sermons, Vol. VIII (of 8)', 'Newman, John Henry', '2008-01-14', 22, 'https://www.gutenberg.org/ebooks/24284', 'en', 2745), +(53125, 'James Russell Lowell, A Biography; vol. 1/2', 'Scudder, Horace Elisha', '2018-08-26', 13, 'https://www.gutenberg.org/ebooks/57776', 'en', 131), +(53126, 'Tahara Among African Tribes', 'Sherman, Harold M. (Harold Morrow)', '2010-07-22', 71, 'https://www.gutenberg.org/ebooks/33233', 'en', 17690), +(53127, 'Mariposilla: A Novel', 'Daggett, Mary Stewart', '2012-05-16', 13, 'https://www.gutenberg.org/ebooks/39709', 'en', 211), +(53128, 'The Strand Magazine, Vol. 01, January 1891\r\nAn Illustrated Monthly', 'Various', '2012-12-12', 41, 'https://www.gutenberg.org/ebooks/41613', 'en', 4041), +(53129, 'Potterism: A Tragi-Farcical Tract', 'Macaulay, Rose', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/11163', 'en', 432), +(53130, 'Aunt Madge\'s Story', 'May, Sophie', '2008-05-06', 10, 'https://www.gutenberg.org/ebooks/25356', 'en', 3621), +(53131, 'Psmith, Journalist', 'Wodehouse, P. G. (Pelham Grenville)', '2001-04-01', 1907, 'https://www.gutenberg.org/ebooks/2607', 'en', 637), +(53132, 'The Works of Henry Fielding, vol. 11\r\nA Journey From This World to the Next; and A Voyage to Lisbon', 'Fielding, Henry', '2013-08-20', 26, 'https://www.gutenberg.org/ebooks/43520', 'en', 17691), +(53133, 'Barchester Towers', 'Trollope, Anthony', '2009-05-01', 8, 'https://www.gutenberg.org/ebooks/28811', 'en', 17692), +(53134, 'Fremde Straßen', 'Rosegger, Peter', '2017-04-24', 17, 'https://www.gutenberg.org/ebooks/54597', 'de', 13589), +(53135, 'The Chums of Scranton High at Ice Hockey', 'Ferguson, Donald', '2004-08-22', 13, 'https://www.gutenberg.org/ebooks/13250', 'en', 17693), +(53136, 'A Manual or an Easy Method of Managing Bees', 'Weeks, John M. (John Moseley)', '2008-10-27', 14, 'https://www.gutenberg.org/ebooks/27065', 'en', 4644), +(53137, 'Kissanporras: Romaani', 'Sudermann, Hermann', '2004-05-01', 6, 'https://www.gutenberg.org/ebooks/12382', 'fi', 61), +(53138, 'The Philosophy of Fine Art, volume 2 (of 4)\nHegel\'s Aesthetik', 'Hegel, Georg Wilhelm Friedrich', '2017-08-27', 35, 'https://www.gutenberg.org/ebooks/55445', 'en', 2250), +(53139, 'The Complete Project Gutenberg Works of Jane Austen\nA Linked Index of all PG Editions of Jane Austen', 'Austen, Jane', '2010-01-25', 799, 'https://www.gutenberg.org/ebooks/31100', 'en', 17694), +(53140, 'Narrative of the Battle of Cowan\'s Ford, February 1st, 1781\r\nand Narrative of the Battle of Kings Mountain', 'Henry, Robert', '2015-10-05', 6, 'https://www.gutenberg.org/ebooks/50137', 'en', 17695), +(53141, 'Origin and Early History of the Fashion Plate', 'Nevinson, J. L. (John Lea)', '2010-11-29', 18, 'https://www.gutenberg.org/ebooks/34472', 'en', 10027), +(53142, 'Amo', 'Velde, Henry van de', '2009-01-21', 14, 'https://www.gutenberg.org/ebooks/27859', 'de', 12210), +(53143, 'Appletons\' Popular Science Monthly, January 1900\nVol. 56, November, 1899 to April, 1900', 'Various', '2014-10-23', 9, 'https://www.gutenberg.org/ebooks/47180', 'en', 352), +(53144, 'A-B-C of Vegetable Gardening', 'Rexford, Eben E. (Eben Eugene)', '2014-06-20', 60, 'https://www.gutenberg.org/ebooks/46052', 'en', 903), +(53145, '大學 章句', 'Zhu, Xi', '2005-01-01', 12, 'https://www.gutenberg.org/ebooks/7375', 'zh', 17696), +(53146, 'Deutsche Literaturgeschichte in einer Stunde\nVon den ältesten Zeiten bis zur Gegenwart', 'Henschke, Alfred', '2007-09-05', 38, 'https://www.gutenberg.org/ebooks/22517', 'de', 17697), +(53147, 'The Lights on Precipice Peak', 'Tall, Stephen', '2015-08-30', 25, 'https://www.gutenberg.org/ebooks/49826', 'en', 67), +(53148, 'Americans and Others', 'Repplier, Agnes', '2005-09-19', 14, 'https://www.gutenberg.org/ebooks/16722', 'en', 4637), +(53149, 'French Painting of the 19th Century in the National Gallery of Art', 'Evans, Grose', '2019-04-16', 23, 'https://www.gutenberg.org/ebooks/59288', 'en', 12577), +(53150, 'The Seekers', 'Sampter, Jessie E. (Jessie Ethel)', '2016-07-27', 11, 'https://www.gutenberg.org/ebooks/52660', 'en', 17698), +(53151, 'Happy Jack, and Other Tales of the Sea', 'Kingston, William Henry Giles', '2007-05-08', 7, 'https://www.gutenberg.org/ebooks/21392', 'en', 324), +(53152, 'Marjorie Dean, High School Senior', 'Chase, Josephine', '2011-06-04', 19, 'https://www.gutenberg.org/ebooks/36325', 'en', 1669), +(53153, 'Mammals Collected by Dr. W. L. Abbott on the Natuna Islands\nProceedings of the Washington Academy of Sciences, Vol. III, pp. 111-138', 'Miller, Gerrit S. (Gerrit Smith)', '2014-01-19', 17, 'https://www.gutenberg.org/ebooks/44705', 'en', 17699), +(53154, 'The Masquerader', 'Thurston, Katherine Cecil', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/5422', 'en', 1463), +(53155, 'Fountain Street', 'Francoeur, Jazno', '2007-01-01', 13, 'https://www.gutenberg.org/ebooks/20240', 'en', 8), +(53156, 'Die Frauenfrage\nihre geschichtliche Entwicklung und wirtschaftliche Seite', 'Braun, Lily', '2004-11-17', 32, 'https://www.gutenberg.org/ebooks/14075', 'de', 15736), +(53157, 'Once Upon A Planet', 'Allerton, J. J.', '2010-06-12', 10, 'https://www.gutenberg.org/ebooks/32785', 'en', 26), +(53158, 'Germanernes Lærling', 'Gjellerup, Karl', '2012-11-03', 10, 'https://www.gutenberg.org/ebooks/41277', 'da', 61), +(53159, 'The Lure of San Francisco: A Romance Amid Old Landmarks', 'Gray, Mabel Thayer', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/11507', 'en', 6248), +(53160, 'The Faust-Legend and Goethe\'s \'Faust\'', 'Cotterill, H. B. (Henry Bernard)', '2008-06-09', 22, 'https://www.gutenberg.org/ebooks/25732', 'en', 17700), +(53161, 'The Nether Millstone', 'White, Fred M. (Fred Merrick)', '2018-06-12', 8, 'https://www.gutenberg.org/ebooks/57312', 'en', 1902), +(53162, 'Voyage of the Paper Canoe\r\nA Geographical Journey of 2500 Miles, from Quebec to the Gulf of Mexico, During the Years 1874-5', 'Bishop, Nathaniel H. (Nathaniel Holmes)', '1997-10-01', 30, 'https://www.gutenberg.org/ebooks/1082', 'en', 17701), +(53163, 'Leaves of Life, for Daily Inspiration', 'Steinmetz, Margaret Bird', '2005-01-31', 64, 'https://www.gutenberg.org/ebooks/14849', 'en', 7631), +(53164, 'Cinderella Jane', 'Cooke, Marjorie Benton', '2010-09-06', 18, 'https://www.gutenberg.org/ebooks/33657', 'en', 17702), +(53165, 'Konstantinopel en het Serail\r\nDe Aarde en haar Volken, 1865', 'Anonymous', '2011-05-15', 11, 'https://www.gutenberg.org/ebooks/36117', 'nl', 2570), +(53166, 'It Might Have Happened to You\r\nA Contemporary Portrait of Central and Eastern Europe', 'Dawson, Coningsby', '2016-06-30', 7, 'https://www.gutenberg.org/ebooks/52452', 'en', 17703), +(53167, 'Unelmiensa uhri: Romaani', 'Salmela, Marja', '2005-03-17', 17, 'https://www.gutenberg.org/ebooks/15395', 'fi', 175), +(53168, 'Αθηναίων Πολιτεία', 'Aristotle', '2012-06-10', 88, 'https://www.gutenberg.org/ebooks/39963', 'el', 17704), +(53169, 'Dick Merriwell\'s Pranks; Or, Lively Times in the Orient', 'Standish, Burt L.', '2013-01-19', 23, 'https://www.gutenberg.org/ebooks/41879', 'en', 153), +(53170, 'With the Colors\r\nSongs of the American Service', 'Appleton, Everard Jack', '2006-12-09', 27, 'https://www.gutenberg.org/ebooks/20072', 'en', 2100), +(53171, 'The Puering, Bating & Drenching of Skins', 'Wood, Joseph Turney', '2018-10-26', 15, 'https://www.gutenberg.org/ebooks/58168', 'en', 8138), +(53172, 'Nouveaux contes de fées pour les petits enfants', 'Ségur, Sophie, comtesse de', '2004-12-03', 59, 'https://www.gutenberg.org/ebooks/14247', 'fr', 17705), +(53173, 'The Princess Tarakanova: A Dark Chapter of Russian History', 'Danilevskii, G. P. (Grigorii Petrovich)', '2016-11-23', 11, 'https://www.gutenberg.org/ebooks/53580', 'en', 17706), +(53174, 'Das Leben Tolstois', 'Rolland, Romain', '2013-12-29', 15, 'https://www.gutenberg.org/ebooks/44537', 'de', 2372), +(53175, 'The Cardinal\'s Snuff-Box', 'Harland, Henry', '2004-05-01', 26, 'https://www.gutenberg.org/ebooks/5610', 'en', 9134), +(53176, 'Scientific American Supplement, No. 481, March 21, 1885', 'Various', '2004-03-01', 13, 'https://www.gutenberg.org/ebooks/11735', 'en', 210), +(53177, 'A London Life, and Other Tales', 'James, Henry', '2008-05-17', 49, 'https://www.gutenberg.org/ebooks/25500', 'en', 61), +(53178, 'Adrienne Lecouvreur', 'Scribe, Eugène', '2019-07-10', 58, 'https://www.gutenberg.org/ebooks/59886', 'en', 17707), +(53179, 'To verdener', 'Hjortø, Knud', '2012-10-13', 6, 'https://www.gutenberg.org/ebooks/41045', 'da', 6055), +(53180, 'The Country-Life Movement in the United States', 'Bailey, L. H. (Liberty Hyde)', '2012-07-10', 13, 'https://www.gutenberg.org/ebooks/40197', 'en', 2503), +(53181, 'Little Miss Joy', 'Marshall, Emma', '2010-08-19', 8, 'https://www.gutenberg.org/ebooks/33465', 'en', 1752), +(53182, 'The Enchanted Burro\nAnd Other Stories as I Have Known Them from Maine to Chile and California', 'Lummis, Charles Fletcher', '2019-02-24', 9, 'https://www.gutenberg.org/ebooks/58954', 'en', 112), +(53183, 'The Economy of Workshop Manipulation\r\nA logical method of learning constructive mechanics. Arranged with questions for the use of apprentice engineers and students.', 'Richards, John', '2018-05-09', 14, 'https://www.gutenberg.org/ebooks/57120', 'en', 17708), +(53184, 'Blackwood\'s Edinburgh Magazine — Volume 53, No. 328, February, 1843', 'Various', '2004-07-30', 15, 'https://www.gutenberg.org/ebooks/13062', 'en', 274), +(53185, 'Electricity for the farm\r\nLight, heat and power by inexpensive methods from the water wheel or farm engine', 'Anderson, Frederick Irving', '2008-11-14', 45, 'https://www.gutenberg.org/ebooks/27257', 'en', 17709), +(53186, 'The Crimson Fairy Book', 'Lang, Andrew', '2000-12-01', 181, 'https://www.gutenberg.org/ebooks/2435', 'en', 1223), +(53187, 'Histoire de la prostitution chez tous les peuples du monde depuis l\'antiquité la plus reculée jusqu\'à nos jours, tome 2/6', 'Jacob, P. L.', '2013-09-13', 8, 'https://www.gutenberg.org/ebooks/43712', 'fr', 2611), +(53188, 'The Origin of the Knowledge of Right and Wrong', 'Brentano, Franz', '2015-06-17', 29, 'https://www.gutenberg.org/ebooks/49228', 'en', 680), +(53189, 'A Journal of Impressions in Belgium', 'Sinclair, May', '2010-02-20', 27, 'https://www.gutenberg.org/ebooks/31332', 'en', 449), +(53190, 'Punch, or the London Charivari, Volume 104, January 7, 1893', 'Various', '2008-08-21', 20, 'https://www.gutenberg.org/ebooks/26385', 'en', 134), +(53191, 'Poesie inedite vol. II', 'Pellico, Silvio', '2006-10-16', 7, 'https://www.gutenberg.org/ebooks/19558', 'it', 8), +(53192, 'Hottentotit: Koulumuistelmia', 'Kara, Jalmari', '2017-10-03', 7, 'https://www.gutenberg.org/ebooks/55677', 'fi', 175), +(53193, 'Il pedante\r\nCommedie del Cinquecento', 'Belo, Francesco', '2010-12-13', 14, 'https://www.gutenberg.org/ebooks/34640', 'it', 11895), +(53194, 'Amelia — Volume 1', 'Fielding, Henry', '2004-07-01', 17, 'https://www.gutenberg.org/ebooks/6095', 'en', 378), +(53195, 'Storia del Quindici Maggio in Napoli\ncon l\'esposizione di alcuni fatti che han preparato la catastrofe', 'Cimino, Tommaso', '2015-10-25', 7, 'https://www.gutenberg.org/ebooks/50305', 'it', 17710), +(53196, 'Punch, or the London Charivari, Vol. 158, 1920-03-31', 'Various', '2007-09-22', 7, 'https://www.gutenberg.org/ebooks/22725', 'en', 134), +(53197, 'Popular Tales from the Norse', NULL, '2005-09-01', 112, 'https://www.gutenberg.org/ebooks/8933', 'en', 1007), +(53198, 'Essays on Education and Kindred Subjects\nEveryman\'s Library', 'Spencer, Herbert', '2005-08-11', 70, 'https://www.gutenberg.org/ebooks/16510', 'en', 973), +(53199, '\'Up the Country\': Letters Written to Her Sister from the Upper Provinces of India', 'Eden, Emily', '2014-07-12', 33, 'https://www.gutenberg.org/ebooks/46260', 'en', 1975), +(53200, 'Renaissance in Italy, Volume 4 (of 7)\r\nItalian Literature, Part 1', 'Symonds, John Addington', '2011-04-08', 25, 'https://www.gutenberg.org/ebooks/35792', 'en', 14724), +(53201, 'The French in the Heart of America', 'Finley, John H. (John Huston)', '2004-12-01', 13, 'https://www.gutenberg.org/ebooks/7147', 'en', 2163), +(53202, 'A Story of One Short Life, 1783 to 1818', 'Stryker, Elisabeth G.', '2009-09-19', 15, 'https://www.gutenberg.org/ebooks/30026', 'en', 8806), +(53203, 'The Red One', 'London, Jack', '1997-01-01', 196, 'https://www.gutenberg.org/ebooks/788', 'en', 2933), +(53204, 'The Irish Penny Journal, Vol. 1 No. 26, December 26, 1840', 'Various', '2017-04-18', 0, 'https://www.gutenberg.org/ebooks/54563', 'en', 81), +(53205, 'Falco della rupe; O, La guerra di Musso', 'Bazzoni, Giambattista', '2008-10-29', 26, 'https://www.gutenberg.org/ebooks/27091', 'it', 98), +(53206, 'The Archæology and Prehistoric Annals of Scotland', 'Wilson, Daniel, Sir', '2015-01-12', 24, 'https://www.gutenberg.org/ebooks/47948', 'en', 4205), +(53207, 'Cesar Cascabel: \"De Schoone Zwerfster\"', 'Verne, Jules', '2008-07-28', 10, 'https://www.gutenberg.org/ebooks/26143', 'nl', 1014), +(53208, 'Thirty Years in the Itinerancy', 'Miller, W. G. (Wesson Gage)', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/12376', 'en', 7248), +(53209, 'Der gelüftete Vorhang oder Lauras Erziehung', 'Mirabeau, Honoré-Gabriel de Riqueti, comte de', '2013-03-24', 52, 'https://www.gutenberg.org/ebooks/42406', 'de', 1989), +(53210, 'Les Femmes qui tuent et les Femmes qui votent', 'Dumas, Alexandre', '2009-09-08', 28, 'https://www.gutenberg.org/ebooks/29937', 'fr', 5066), +(53211, 'France and England in North America, Part I: Pioneers of France in the New World', 'Parkman, Francis', '2003-02-01', 57, 'https://www.gutenberg.org/ebooks/3721', 'en', 17711), +(53212, 'Amusing Trial in which a Yankee Lawyer Renders a Just Verdict', 'Anonymous', '2006-01-25', 7, 'https://www.gutenberg.org/ebooks/17604', 'en', 8), +(53213, 'Naughty Puppies', 'Anonymous', '2007-11-10', 24, 'https://www.gutenberg.org/ebooks/23431', 'en', 4299), +(53214, 'Tiel do: Rakontoj por malgrandaj infanoj', 'Kipling, Rudyard', '2015-05-08', 17, 'https://www.gutenberg.org/ebooks/48900', 'eo', 4589), +(53215, 'Michel and Angele [A Ladder of Swords] — Complete', 'Parker, Gilbert', '2004-11-18', 16, 'https://www.gutenberg.org/ebooks/6253', 'en', 4434), +(53216, 'Among the Red-skins; Or, Over the Rocky Mountains', 'Kingston, William Henry Giles', '2010-11-29', 13, 'https://www.gutenberg.org/ebooks/34486', 'en', 1096), +(53217, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Elfter Band: enthaltend Kapitel 21 und 22.', 'Macaulay, Thomas Babington Macaulay, Baron', '2014-10-22', 10, 'https://www.gutenberg.org/ebooks/47174', 'de', 3001), +(53218, 'The Eustace Diamonds', 'Trollope, Anthony', '2005-01-01', 122, 'https://www.gutenberg.org/ebooks/7381', 'en', 4388), +(53219, 'A Voice of Warning\r\nOr, an introduction to the faith and doctrine of The Church of Jesus Christ of Latter-Day Saints', 'Pratt, Parley P. (Parley Parker)', '2011-03-11', 54, 'https://www.gutenberg.org/ebooks/35554', 'en', 377), +(53220, 'The Ghost Camp; or, the Avengers', 'Boldrewood, Rolf', '2016-01-23', 28, 'https://www.gutenberg.org/ebooks/51011', 'en', 792), +(53221, 'The Land of Heart\'s Desire', 'Yeats, W. B. (William Butler)', '2005-02-23', 54, 'https://www.gutenberg.org/ebooks/15153', 'en', 5914), +(53222, 'St. Paul the Hero', 'Jones, Rufus M. (Rufus Matthew)', '2016-08-01', 17, 'https://www.gutenberg.org/ebooks/52694', 'en', 17712), +(53223, 'Sail Ho! A Boy at Sea', 'Fenn, George Manville', '2007-05-08', 10, 'https://www.gutenberg.org/ebooks/21366', 'en', 3535), +(53224, 'Aus der Chronika eines fahrenden Schülers (Zweite Fassung)', 'Brentano, Clemens', '2003-10-01', 19, 'https://www.gutenberg.org/ebooks/4504', 'de', 957), +(53225, 'The Old Maids\' Club', 'Zangwill, Israel', '2014-05-10', 40, 'https://www.gutenberg.org/ebooks/45623', 'en', 3305), +(53226, 'Telepathy and the Subliminal Self', 'Mason, R. Osgood (Rufus Osgood)', '2011-08-25', 101, 'https://www.gutenberg.org/ebooks/37203', 'en', 102), +(53227, 'Among the Head-Hunters of Formosa', 'McGovern, Janet B. Montgomery', '2016-12-16', 14, 'https://www.gutenberg.org/ebooks/53746', 'en', 17713), +(53228, 'The Three Jovial Huntsmen', NULL, '2004-11-18', 22, 'https://www.gutenberg.org/ebooks/14081', 'en', 2296), +(53229, 'Treasure of Kings\r\nBeing the Story of the Discovery of the \"Big Fish,\" or the Quest of the Greater Treasure of the Incas of Peru.', 'Gilson, Charles', '2012-04-07', 78, 'https://www.gutenberg.org/ebooks/39399', 'en', 323), +(53230, 'Here and There in London', 'Ritchie, J. Ewing (James Ewing)', '2010-06-11', 21, 'https://www.gutenberg.org/ebooks/32771', 'en', 856), +(53231, 'The Heroes of Asgard: Tales from Scandinavian Mythology', 'Keary, Annie', '2012-11-03', 114, 'https://www.gutenberg.org/ebooks/41283', 'en', 8119), +(53232, 'Fire in the Woods\r\nIllustrated', 'De Mille, James', '2017-12-24', 11, 'https://www.gutenberg.org/ebooks/56234', 'en', 11820), +(53233, 'The Science of Fairy Tales\nAn Inquiry into Fairy Mythology', 'Hartland, Edwin Sidney', '2008-02-14', 83, 'https://www.gutenberg.org/ebooks/24614', 'en', 1223), +(53234, 'The Life of Lord Byron', 'Galt, John', '2003-12-01', 50, 'https://www.gutenberg.org/ebooks/10421', 'en', 2265), +(53235, 'Algemeene Geschiedenis in Verhalen: Oudheid', 'Solger, H.', '2012-07-27', 15, 'https://www.gutenberg.org/ebooks/40351', 'nl', 1368), +(53236, 'The Wallet of Kai Lung', 'Bramah, Ernest', '1997-10-01', 76, 'https://www.gutenberg.org/ebooks/1076', 'en', 17714), +(53237, 'Hadda Pada', 'Guðmundur Kamban', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/4736', 'en', 11288), +(53238, 'Trois mois sous la neige: Journal d\'un jeune habitant du Jura', 'Porchat, J. Jacques (Jean Jacques)', '2014-04-16', 10, 'https://www.gutenberg.org/ebooks/45411', 'fr', 17715), +(53239, 'Library Notes', 'Russell, A. P. (Addison Peale)', '2012-06-15', 26, 'https://www.gutenberg.org/ebooks/39997', 'en', 4637), +(53240, 'Félix Poutré: Drame historique en quatre actes', 'Fréchette, Louis Honoré', '2005-03-14', 15, 'https://www.gutenberg.org/ebooks/15361', 'fr', 17716), +(53241, 'Philosophy and Fun of Algebra', 'Boole, Mary Everest', '2007-04-24', 49, 'https://www.gutenberg.org/ebooks/21154', 'en', 4325), +(53242, 'Rome: A Sketch-Book', 'Richards, Fred', '2006-12-10', 14, 'https://www.gutenberg.org/ebooks/20086', 'en', 17717), +(53243, 'Life in South Africa', 'Barker, Lady (Mary Anne)', '2016-11-22', 9, 'https://www.gutenberg.org/ebooks/53574', 'en', 6548), +(53244, 'Stories of the Scottish Border', 'Platt, William, Mrs.', '2013-07-17', 10, 'https://www.gutenberg.org/ebooks/38845', 'en', 4390), +(53245, 'English and Scottish Ballads, Volume 1 (of 8)', NULL, '2011-08-10', 25, 'https://www.gutenberg.org/ebooks/37031', 'en', 17718), +(53246, 'One Thousand Ways to Make Money', 'Fox, Page', '2017-11-19', 494, 'https://www.gutenberg.org/ebooks/56006', 'en', 2351), +(53247, 'The White Chief of the Caffres', 'Drayson, Alfred W. (Alfred Wilks)', '2010-05-27', 12, 'https://www.gutenberg.org/ebooks/32543', 'en', 17719), +(53248, 'Our Den', 'Waterworth, E. M.', '2019-07-07', 68, 'https://www.gutenberg.org/ebooks/59872', 'en', 1817), +(53249, 'The Finer Grain', 'James, Henry', '2007-06-29', 31, 'https://www.gutenberg.org/ebooks/21968', 'en', 50), +(53250, 'Árminius Vambéry, his life and adventures', 'Vámbéry, Ármin', '2012-07-08', 22, 'https://www.gutenberg.org/ebooks/40163', 'en', 14826), +(53251, 'Orders of Infinity: The \'Infinitärcalcül\' of Paul Du Bois-Reymond', 'Hardy, G. H. (Godfrey Harold)', '2011-11-21', 82, 'https://www.gutenberg.org/ebooks/38079', 'en', 17720), +(53252, 'Die Festungen gegenüber den gezogenen Geschützen', 'Prittwitz, M. von (Moritz)', '2010-08-22', 18, 'https://www.gutenberg.org/ebooks/33491', 'de', 17721), +(53253, 'Love for Love: A Comedy', 'Congreve, William', '1998-03-01', 66, 'https://www.gutenberg.org/ebooks/1244', 'en', 907), +(53254, 'Iole', 'Chambers, Robert W. (Robert William)', '2008-01-25', 10, 'https://www.gutenberg.org/ebooks/24426', 'en', 580), +(53255, 'The Theory of Social Revolutions', 'Adams, Brooks', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/10613', 'en', 5804), +(53256, 'Le Héros de Châteauguay', 'David, L.-O. (Laurent-Olivier)', '2004-08-03', 12, 'https://www.gutenberg.org/ebooks/13096', 'fr', 11765), +(53257, 'The War in Syria, Volume 2 (of 2)', 'Napier, Charles', '2017-05-20', 21, 'https://www.gutenberg.org/ebooks/54751', 'en', 17722), +(53258, 'The Legend of Sleepy Hollow', 'Irving, Washington', '2008-06-27', 2609, 'https://www.gutenberg.org/ebooks/41', 'en', 3499), +(53259, 'The Red Hell of Jupiter', 'Ernst, Paul', '2009-10-08', 67, 'https://www.gutenberg.org/ebooks/30214', 'en', 26), +(53260, 'Mark Twain\'s Speeches', 'Twain, Mark', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/9029', 'en', 429), +(53261, 'Funny Epitaphs', NULL, '2013-05-03', 23, 'https://www.gutenberg.org/ebooks/42634', 'en', 17723), +(53262, 'Human Genome Project, Chromosome Number 13', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3513', 'en', 2318), +(53263, 'Nova Sapho: Tragedia Extranha', 'Villa-Moura, Bento de Oliveira Cardoso, Visconde de', '2008-08-20', 18, 'https://www.gutenberg.org/ebooks/26371', 'pt', 2762), +(53264, 'Go-Ahead; Or, The Fisher-Boy\'s Motto', 'Castlemon, Harry', '2017-10-06', 2, 'https://www.gutenberg.org/ebooks/55683', 'en', 323), +(53265, 'The Continental Classics, Volume XVIII., Mystery Tales\nIncluding Stories by Feodor Mikhailovitch Dostoyevsky, Jörgen Wilhelm\nBergsöe and Bernhard Severin Ingemann', 'Various', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12144', 'en', 128), +(53266, 'Some Poems', 'Scott, Walter', '2004-07-01', 36, 'https://www.gutenberg.org/ebooks/6061', 'en', 8), +(53267, 'Escritos políticos, económicos y literarios', 'Varela, Florencio', '2014-11-14', 7, 'https://www.gutenberg.org/ebooks/47346', 'es', 17724), +(53268, 'The Queen\'s Cup', 'Henty, G. A. (George Alfred)', '2005-12-31', 31, 'https://www.gutenberg.org/ebooks/17436', 'en', 4471), +(53269, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 08\r\nAsia, Part I', 'Hakluyt, Richard', '2006-02-01', 16, 'https://www.gutenberg.org/ebooks/9815', 'en', 885), +(53270, 'The Music Master; Novelized from the Play', 'Klein, Charles', '2007-11-24', 14, 'https://www.gutenberg.org/ebooks/23603', 'en', 1432), +(53271, 'The Practice of Autosuggestion', 'Brooks, C. Harry (Cyrus Harry)', '2009-07-07', 46, 'https://www.gutenberg.org/ebooks/29339', 'en', 17725), +(53272, 'Deutsche Landschaften', 'Dürer, Albrecht', '2016-02-15', 43, 'https://www.gutenberg.org/ebooks/51223', 'de', 17726), +(53273, 'The Immigrant Tide, Its Ebb and Flow', 'Steiner, Edward Alfred', '2014-07-15', 18, 'https://www.gutenberg.org/ebooks/46294', 'en', 9642), +(53274, 'In Search of Gravestones Old and Curious', 'Vincent, W. T. (William Thomas)', '2004-07-21', 41, 'https://www.gutenberg.org/ebooks/12978', 'en', 17727), +(53275, 'Christine', 'Enault, Louis', '2011-04-04', 10, 'https://www.gutenberg.org/ebooks/35766', 'fr', 687), +(53276, 'Trattato generale di Archeologia e Storia dell\'Arte: Italica, Etrusca e Romana', 'Gentile, Iginio', '2016-09-21', 41, 'https://www.gutenberg.org/ebooks/53110', 'it', 13866), +(53277, 'Tales and Novels of J. de La Fontaine — Volume 06', 'La Fontaine, Jean de', '2004-03-01', 14, 'https://www.gutenberg.org/ebooks/5280', 'en', 2629), +(53278, 'The Rainbow Book: Tales of Fun & Fancy', 'Spielmann, M. H. (Mabel Henrietta)', '2011-09-16', 57, 'https://www.gutenberg.org/ebooks/37455', 'en', 1007), +(53279, 'Laughter: An Essay on the Meaning of the Comic', 'Bergson, Henri', '2003-08-01', 254, 'https://www.gutenberg.org/ebooks/4352', 'en', 4831), +(53280, 'A True Relation of the Apparition of one Mrs. Veal\r\nThe Next Day after Her Death, to one Mrs. Bargrave, at Canterbury, the 8th of September, 1705; which Apparition Recommends the Perusal of Drelincourt\'s Book of Consolations against the Fears of Death', 'Defoe, Daniel', '2011-07-03', 28, 'https://www.gutenberg.org/ebooks/36587', 'en', 17728), +(53281, 'Life and Adventures of \"Billy\" Dixon\r\nA Narrative in which is Described many things Relating to the Early Southwest', 'Dixon, Billy', '2014-03-08', 25, 'https://www.gutenberg.org/ebooks/45075', 'en', 3540), +(53282, 'The Silly Syclopedia\r\nA Terrible Thing in the Form of a Literary Torpedo which is Launched for Hilarious Purposes Only Inaccurate in Every Particular Containing Copious Etymological Derivations and Other Useless Things', 'Hobart, George V. (George Vere)', '2005-04-25', 33, 'https://www.gutenberg.org/ebooks/15705', 'en', 1697), +(53283, 'The Angel of Terror', 'Wallace, Edgar', '2007-05-19', 140, 'https://www.gutenberg.org/ebooks/21530', 'en', 128), +(53284, 'The Challenge of the Dead\r\nA vision of the war and the life of the common soldier in France, seen two years afterwards between August and November, 1920', 'Graham, Stephen', '2012-08-14', 38, 'https://www.gutenberg.org/ebooks/40507', 'en', 335), +(53285, 'The Lion and the Unicorn', 'Davis, Richard Harding', '1999-01-01', 37, 'https://www.gutenberg.org/ebooks/1620', 'en', 112), +(53286, '徬徨', 'Lu, Xun', '2007-12-26', 42, 'https://www.gutenberg.org/ebooks/24042', 'zh', 4473), +(53287, 'Hallelujah Chorus\r\nFrom The Messiah', NULL, '2003-11-01', 30, 'https://www.gutenberg.org/ebooks/10277', 'en', 7271), +(53288, 'The Old Man; or, Ravings and Ramblings round Conistone', 'Gibson, Alexander Craig', '2018-01-29', 4, 'https://www.gutenberg.org/ebooks/56462', 'en', 17729), +(53289, 'Ten Thousand Wonderful Things\r\nComprising whatever is marvellous and rare, curious, eccentric and extraordinary in all ages and nations', NULL, '2014-05-31', 52, 'https://www.gutenberg.org/ebooks/45849', 'en', 15067), +(53290, 'A Tramp\'s Notebook', 'Roberts, Morley', '2008-04-27', 17, 'https://www.gutenberg.org/ebooks/25190', 'en', 20), +(53291, 'Wheels Within', 'De Vet, Charles V.', '2010-04-24', 56, 'https://www.gutenberg.org/ebooks/32127', 'en', 26), +(53292, 'Dave Dawson with the Commandos', 'Bowen, Robert Sidney', '2013-03-03', 19, 'https://www.gutenberg.org/ebooks/42250', 'en', 1004), +(53293, 'Roughing It', 'Twain, Mark', '2004-07-03', 724, 'https://www.gutenberg.org/ebooks/3177', 'en', 1256), +(53294, 'Victorian Songs: Lyrics of the Affections and Nature', NULL, '2008-09-28', 31, 'https://www.gutenberg.org/ebooks/26715', 'en', 532), +(53295, 'Deadham Hard: A Romance', 'Malet, Lucas', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12520', 'en', 61), +(53296, 'The Women of Mormondom', 'Tullidge, Edward W. (Edward William)', '2017-03-10', 27, 'https://www.gutenberg.org/ebooks/54335', 'en', 16612), +(53297, 'Anthony Trollope; His Work, Associates and Literary Originals', 'Escott, T. H. S. (Thomas Hay Sweet)', '2019-08-14', 679, 'https://www.gutenberg.org/ebooks/60100', 'en', 5826), +(53298, 'Mr. Chipfellow\'s Jackpot', 'Purcell, Dick', '2009-12-13', 22, 'https://www.gutenberg.org/ebooks/30670', 'en', 1380), +(53299, 'Harper\'s Young People, November 16, 1880\nAn Illustrated Monthly', 'Various', '2013-08-02', 11, 'https://www.gutenberg.org/ebooks/43382', 'en', 479), +(53300, 'Roman Mosaics; Or, Studies in Rome and Its Neighbourhood', 'Macmillan, Hugh', '2005-07-02', 26, 'https://www.gutenberg.org/ebooks/16180', 'en', 2452), +(53301, 'Taloista ja taipaleelta', 'Hornborg, Karl Henrik', '2016-04-03', 18, 'https://www.gutenberg.org/ebooks/51647', 'fi', 41), +(53302, 'The Genial Idiot: His Views and Reviews', 'Bangs, John Kendrick', '2011-02-17', 36, 'https://www.gutenberg.org/ebooks/35302', 'en', 637), +(53303, 'John Keble\'s Parishes: A History of Hursley and Otterbourne', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6405', 'en', 17730), +(53304, 'La San-Felice, Tome 06', 'Dumas, Alexandre', '2006-07-13', 7, 'https://www.gutenberg.org/ebooks/18826', 'fr', 4110), +(53305, 'Journal in France in 1845 and 1848 with Letters from Italy in 1847\r\nOf Things and Persons Concerning the Church and Education', 'Allies, T. W. (Thomas William)', '2014-12-20', 15, 'https://www.gutenberg.org/ebooks/47722', 'en', 17731), +(53306, 'The Girl\'s Own Paper, Vol. XX, No. 990, December 17, 1898', 'Various', '2015-12-30', 7, 'https://www.gutenberg.org/ebooks/50795', 'en', 563), +(53307, 'The Argosy, Vol. 51, No. 6, June, 1891', 'Various', '2005-11-11', 13, 'https://www.gutenberg.org/ebooks/17052', 'en', 5498), +(53308, 'The Agrarian Crusade: A Chronicle of the Farmer in Politics', 'Buck, Solon J. (Solon Justus)', '2001-11-01', 16, 'https://www.gutenberg.org/ebooks/2899', 'en', 17732), +(53309, 'The Cannibal Islands: Captain Cook\'s Adventure in the South Seas', 'Ballantyne, R. M. (Robert Michael)', '2007-10-31', 44, 'https://www.gutenberg.org/ebooks/23267', 'en', 17656), +(53310, 'Judith of the Cumberlands', 'MacGowan, Alice', '2008-09-04', 11, 'https://www.gutenberg.org/ebooks/26527', 'en', 13431), +(53311, 'Dialogue Between Franklin and the Gout', 'Franklin, Benjamin', '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/12712', 'en', 17733), +(53312, 'Memoirs of the Life of Sir Walter Scott, Volume 4 (of 10)', 'Lockhart, J. G. (John Gibson)', '2013-02-10', 8, 'https://www.gutenberg.org/ebooks/42062', 'en', 1654), +(53313, 'Scouting with Daniel Boone', 'Tomlinson, Everett T. (Everett Titsworth)', '2010-03-10', 8, 'https://www.gutenberg.org/ebooks/31590', 'en', 17734), +(53314, 'The Wandering Jew — Volume 07', 'Sue, Eugène', '2004-10-25', 17, 'https://www.gutenberg.org/ebooks/3345', 'en', 10672), +(53315, 'Letters from My Windmill', 'Daudet, Alphonse', '2009-11-10', 112, 'https://www.gutenberg.org/ebooks/30442', 'en', 4), +(53316, 'Snow-Bound at Eagle\'s', 'Harte, Bret', '2006-05-14', 26, 'https://www.gutenberg.org/ebooks/2297', 'en', 8901), +(53317, 'Meine Lebens-Erinnerungen - Band 2', 'Oehlenschläger, Adam', '2015-03-22', 3, 'https://www.gutenberg.org/ebooks/48558', 'de', 17735), +(53318, 'Little Mr. Thimblefinger and His Queer Country', 'Harris, Joel Chandler', '2007-12-15', 57, 'https://www.gutenberg.org/ebooks/23869', 'en', 195), +(53319, 'Historical Record of the Fourteenth, or, the Buckinghamshire Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1685, and of Its Subsequent Services to 1845', 'Cannon, Richard', '2017-02-04', 2, 'https://www.gutenberg.org/ebooks/54107', 'en', 17736), +(53320, 'El Mandarín', 'Queirós, Eça de', '2006-04-22', 24, 'https://www.gutenberg.org/ebooks/18228', 'es', 61), +(53321, 'Uma visita ao primeiro romancista portuguez em S. Miguel de Seide', 'Pimentel, Alberto', '2011-01-31', 12, 'https://www.gutenberg.org/ebooks/35130', 'pt', 2272), +(53322, 'Chambers\'s Edinburgh Journal, No. 452\nVolume 18, New Series, August 28, 1852', 'Various', '2007-07-31', 9, 'https://www.gutenberg.org/ebooks/22187', 'en', 18), +(53323, 'East in the Morning', 'Fisher, David E.', '2016-03-16', 30, 'https://www.gutenberg.org/ebooks/51475', 'en', 26), +(53324, 'Tempest and Sunshine', 'Holmes, Mary Jane', '2005-12-12', 35, 'https://www.gutenberg.org/ebooks/17260', 'en', 770), +(53325, 'The Slanderer\n1901', 'Chekhov, Anton Pavlovich', '2007-10-17', 47, 'https://www.gutenberg.org/ebooks/23055', 'en', 179), +(53326, 'Der Alpenkönig und der Menschenfeind', 'Raimund, Ferdinand', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6637', 'de', 907), +(53327, 'Martta', 'Hahnsson, Theodolinda', '2014-12-02', 6, 'https://www.gutenberg.org/ebooks/47510', 'fi', 41), +(53328, 'At the Court of the Amîr: A Narrative', 'Gray, John Alfred', '2013-12-09', 22, 'https://www.gutenberg.org/ebooks/44395', 'en', 17737), +(53329, 'A Compilation of the Messages and Papers of the Presidents. Volume 2, part 2: John Quincy Adams', NULL, '2004-01-01', 11, 'https://www.gutenberg.org/ebooks/10879', 'en', 1340), +(53330, 'Three Hours after Marriage', 'Arbuthnot, John', '2011-10-08', 35, 'https://www.gutenberg.org/ebooks/37667', 'en', 907), +(53331, 'Reisen in den Philippinen', 'Jagor, Fedor', '2016-10-19', 34, 'https://www.gutenberg.org/ebooks/53322', 'de', 4048), +(53332, 'The Reign of Henry the Eighth, Volume 1 (of 3)', 'Froude, James Anthony', '2005-04-04', 29, 'https://www.gutenberg.org/ebooks/15537', 'en', 2157), +(53333, 'The History of Court Fools', 'Doran, Dr. (John)', '2019-05-27', 39, 'https://www.gutenberg.org/ebooks/59618', 'en', 10107), +(53334, 'Shifting Winds: A Tough Yarn', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 22, 'https://www.gutenberg.org/ebooks/21702', 'en', 751), +(53335, 'Diary of Samuel Pepys — Volume 39: October 1665', 'Pepys, Samuel', '2004-11-30', 34, 'https://www.gutenberg.org/ebooks/4160', 'en', 738), +(53336, 'India for Indians\nEnlarged Edition', 'Das, Chitta Ranjan', '2014-03-28', 20, 'https://www.gutenberg.org/ebooks/45247', 'en', 4397), +(53337, 'Tom Gerrard', 'Becke, Louis', '2008-01-13', 18, 'https://www.gutenberg.org/ebooks/24270', 'en', 792), +(53338, 'Dave Darrin\'s Second Year at Annapolis\nOr, Two Midshipmen as Naval Academy \"Youngsters\"', 'Hancock, H. Irving (Harrie Irving)', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10045', 'en', 9913); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(53339, 'The Cliff-Dwellers: A Novel', 'Fuller, Henry Blake', '2018-08-27', 25, 'https://www.gutenberg.org/ebooks/57782', 'en', 17738), +(53340, 'Miss Primrose: A Novel', 'Gilson, Roy Rolfe', '2012-09-11', 17, 'https://www.gutenberg.org/ebooks/40735', 'en', 3305), +(53341, 'Masterman Ready', 'Marryat, Frederick', '1998-08-01', 13, 'https://www.gutenberg.org/ebooks/1412', 'en', 1526), +(53342, 'Historia de la vida del Buscón, llamado Don Pablos, ejemplo de vagabundos y espejo de tacaños', 'Quevedo, Francisco de', '2010-05-10', 70, 'https://www.gutenberg.org/ebooks/32315', 'es', 7654), +(53343, 'Paganism Surviving in Christianity', 'Lewis, Abram Herbert', '2018-02-26', 30, 'https://www.gutenberg.org/ebooks/56650', 'en', 17739), +(53344, 'Bambi', 'Cooke, Marjorie Benton', '2004-02-01', 63, 'https://www.gutenberg.org/ebooks/11197', 'en', 4881), +(53345, 'Ariadne Florentina: Six Lectures on Wood and Metal Engraving', 'Ruskin, John', '2008-11-15', 27, 'https://www.gutenberg.org/ebooks/27268', 'en', 7949), +(53346, 'The 1995 CIA World Factbook', 'United States. Central Intelligence Agency', '1996-06-01', 67, 'https://www.gutenberg.org/ebooks/571', 'en', 1407), +(53347, 'A Brief History of the United States', 'McMaster, John Bach', '2004-11-01', 30, 'https://www.gutenberg.org/ebooks/6896', 'en', 207), +(53348, 'Glimpses of Unfamiliar Japan: First Series', 'Hearn, Lafcadio', '2005-05-01', 158, 'https://www.gutenberg.org/ebooks/8130', 'en', 10382), +(53349, 'The Chautauquan, Vol. 03, May 1883', 'Chautauqua Institution', '2015-06-15', 16, 'https://www.gutenberg.org/ebooks/49217', 'en', 1115), +(53350, 'No Refuge but in Truth', 'Smith, Goldwin', '2006-10-17', 3, 'https://www.gutenberg.org/ebooks/19567', 'en', 2566), +(53351, 'Lord Palmerston', 'Trollope, Anthony', '2017-09-29', 20, 'https://www.gutenberg.org/ebooks/55648', 'en', 3346), +(53352, 'Der Gastfreund', 'Grillparzer, Franz', '2005-04-01', 15, 'https://www.gutenberg.org/ebooks/7944', 'de', 11921), +(53353, 'Adolphe', 'Constant, Benjamin', '2004-10-25', 71, 'https://www.gutenberg.org/ebooks/13861', 'fr', 607), +(53354, 'Jenseits des Lustprinzips', 'Freud, Sigmund', '2009-02-28', 73, 'https://www.gutenberg.org/ebooks/28220', 'de', 3640), +(53355, 'Swann\'s Way', 'Proust, Marcel', '2004-12-01', 945, 'https://www.gutenberg.org/ebooks/7178', 'en', 607), +(53356, 'Grand Teton [Wyoming] National Park', 'United States. Department of the Interior', '2011-05-17', 13, 'https://www.gutenberg.org/ebooks/36128', 'en', 12379), +(53357, 'Bolax, Imp or Angel—Which?', 'Culpeper, Josephine', '2013-01-14', 7, 'https://www.gutenberg.org/ebooks/41846', 'en', 389), +(53358, 'Johann Sebastian Bach: The Organist and His Works for the Organ', 'Pirro, André', '2019-03-18', 14, 'https://www.gutenberg.org/ebooks/59085', 'en', 4674), +(53359, 'Index of the Project Gutenberg Works of Charles Dickens', 'Dickens, Charles', '2018-10-24', 21, 'https://www.gutenberg.org/ebooks/58157', 'en', 198), +(53360, 'The Radio Boys on the Mexican Border', 'Breckenridge, Gerald', '2004-12-06', 18, 'https://www.gutenberg.org/ebooks/14278', 'en', 153), +(53361, 'Zoraida: A Romance of the Harem and the Great Sahara', 'Le Queux, William', '2012-10-09', 15, 'https://www.gutenberg.org/ebooks/40994', 'en', 4766), +(53362, 'Crystal River Saga: Lore of the Colorado Rockies', 'Francis, Theresa V.', '2018-09-18', 12, 'https://www.gutenberg.org/ebooks/57923', 'en', 17740), +(53363, 'The Myth of a Guilty Nation', 'Nock, Albert Jay', '2013-12-25', 29, 'https://www.gutenberg.org/ebooks/44508', 'en', 4773), +(53364, 'A Son of the Sahara', 'Gerard, Louise', '2011-09-06', 16, 'https://www.gutenberg.org/ebooks/36914', 'en', 109), +(53365, 'Mr. Punch in the Hunting Field', NULL, '2012-03-15', 13, 'https://www.gutenberg.org/ebooks/39160', 'en', 564), +(53366, 'A Problem in Modern Ethics\r\nBeing an Inquiry into the Phenomenon of Sexual Inversion, Addressed Especially to Medical Psychologists and Jurists', 'Symonds, John Addington', '2010-05-29', 33, 'https://www.gutenberg.org/ebooks/32588', 'en', 13890), +(53367, 'Human Foods and Their Nutritive Value', 'Snyder, Harry', '2007-03-22', 54, 'https://www.gutenberg.org/ebooks/20871', 'en', 11808), +(53368, 'The Works of the Right Honourable Edmund Burke, Vol. 02 (of 12)', 'Burke, Edmund', '2005-02-28', 71, 'https://www.gutenberg.org/ebooks/15198', 'en', 5325), +(53369, 'The Call of the Canyon', 'Grey, Zane', '1999-09-01', 138, 'https://www.gutenberg.org/ebooks/1881', 'en', 17741), +(53370, 'Franz Hals', 'Knackfuss, H. (Hermann)', '2018-11-27', 5, 'https://www.gutenberg.org/ebooks/58365', 'de', 8895), +(53371, 'With the Zionists in Gallipoli', 'Patterson, J. H. (John Henry)', '2012-10-30', 28, 'https://www.gutenberg.org/ebooks/41248', 'en', 17742), +(53372, 'Gaal György magyar népmese-gyűjteménye (3. kötet)', 'Gaal, György', '2012-04-02', 10, 'https://www.gutenberg.org/ebooks/39352', 'hu', 3398), +(53373, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 531, January 28, 1832', 'Various', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11538', 'en', 133), +(53374, 'Modern Essays', NULL, '2011-12-11', 540, 'https://www.gutenberg.org/ebooks/38280', 'en', 4637), +(53375, 'The Forest Runners: A Story of the Great War Trail in Early Kentucky', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-02-02', 29, 'https://www.gutenberg.org/ebooks/14876', 'en', 9801), +(53376, 'Springtime and Other Essays', 'Darwin, Francis, Sir', '2010-09-07', 15, 'https://www.gutenberg.org/ebooks/33668', 'en', 20), +(53377, 'The Idiot', 'Dostoyevsky, Fyodor', '2001-05-01', 1439, 'https://www.gutenberg.org/ebooks/2638', 'en', 98), +(53378, 'Augusta Tabor: Her Side of the Scandal', 'Bancroft, Caroline', '2016-01-15', 24, 'https://www.gutenberg.org/ebooks/50934', 'en', 11663), +(53379, 'Lumikenttien tytär: Romaani', 'London, Jack', '2015-01-16', 11, 'https://www.gutenberg.org/ebooks/47983', 'fi', 315), +(53380, 'Daisy', 'Warner, Susan', '2006-06-26', 30, 'https://www.gutenberg.org/ebooks/18687', 'en', 9066), +(53381, 'Thoughts on Man, His Nature, Productions and Discoveries\r\nInterspersed with Some Particulars Respecting the Author', 'Godwin, William', '1996-12-01', 133, 'https://www.gutenberg.org/ebooks/743', 'en', 2159), +(53382, 'Gesammelte Abhandlungen III\nVorträge, Reden und Schriften sozialpolitischen und verwandten Inhalts', 'Abbe, Ernst', '2006-11-11', 52, 'https://www.gutenberg.org/ebooks/19755', 'de', 17743), +(53383, 'The Preservation of Antiquities: A Handbook for Curators', 'Rathgen, Friedrich', '2014-09-14', 29, 'https://www.gutenberg.org/ebooks/46851', 'en', 17744), +(53384, 'Taistelu Heikkilän talosta', 'Linnankoski, Johannes', '2008-08-04', 13, 'https://www.gutenberg.org/ebooks/26188', 'fi', 456), +(53385, 'The Bible, Douay-Rheims, Book 02: Exodus\r\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8302', 'en', 9393), +(53386, 'Hypatia, eli Uusia vihollisia vanhassa hahmossa', 'Kingsley, Charles', '2015-05-23', 6, 'https://www.gutenberg.org/ebooks/49025', 'fi', 6546), +(53387, 'The American Quarterly Review, No. 17, March 1831', NULL, '2009-02-06', 28, 'https://www.gutenberg.org/ebooks/28012', 'en', 11285), +(53388, 'A Father\'s Legacy to His Daughters', 'Gregory, John', '2015-10-01', 21, 'https://www.gutenberg.org/ebooks/50108', 'en', 1557), +(53389, 'Great Britain at War', 'Farnol, Jeffery', '2009-01-21', 22, 'https://www.gutenberg.org/ebooks/27866', 'en', 6554), +(53390, 'Carnac\'s Folly, Volume 3.', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6298', 'en', 61), +(53391, 'Anarchism: A Criticism and History of the Anarchist Theory', 'Zenker, E. V. (Ernst Viktor)', '2010-04-06', 30, 'https://www.gutenberg.org/ebooks/31903', 'en', 11063), +(53392, 'Cerddi\'r Mynydd Du\r\nSef Caneuon Hen a Diweddar', NULL, '2007-09-06', 30, 'https://www.gutenberg.org/ebooks/22528', 'cy', 15683), +(53393, 'Worlds Within Worlds: The Story of Nuclear Energy, Volume 1 (of 3)\nAtomic Weights; Energy; Electricity', 'Asimov, Isaac', '2015-08-30', 213, 'https://www.gutenberg.org/ebooks/49819', 'en', 17622), +(53394, 'Ziska: The Problem of a Wicked Soul', 'Corelli, Marie', '2004-02-01', 30, 'https://www.gutenberg.org/ebooks/5079', 'en', 2938), +(53395, 'Edina: A Novel', 'Wood, Henry, Mrs.', '2019-01-15', 21, 'https://www.gutenberg.org/ebooks/58701', 'en', 137), +(53396, 'The Desire of the Moth; and the Come On', 'Rhodes, Eugene Manlove', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/11960', 'en', 315), +(53397, 'Altruism: Its Nature and Varieties', 'Palmer, George Herbert', '2018-08-23', 14, 'https://www.gutenberg.org/ebooks/57749', 'en', 17745), +(53398, 'The Story of a Calico Clown', 'Hope, Laura Lee', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/5845', 'en', 1235), +(53399, 'Kleurig en donker', 'Amsterdam, Willem van', '2012-05-19', 14, 'https://www.gutenberg.org/ebooks/39736', 'nl', 2765), +(53400, '金石緣', NULL, '2008-05-07', 19, 'https://www.gutenberg.org/ebooks/25369', 'zh', 1003), +(53401, 'Two Boys and a Fortune; Or, The Tyler Will', 'White, Matthew', '2004-01-01', 6, 'https://www.gutenberg.org/ebooks/4997', 'en', 1246), +(53402, 'Ceremonial of Hasjelti Dailjis and Mythical Sand Painting of the Navajo Indians', 'Stevenson, James', '2006-09-20', 17, 'https://www.gutenberg.org/ebooks/19331', 'en', 12242), +(53403, 'The Chessmen of Mars', 'Burroughs, Edgar Rice', '2005-08-01', 17, 'https://www.gutenberg.org/ebooks/8766', 'en', 26), +(53404, 'Aux glaces polaires: Indiens et esquimaux', 'Duchaussois, R. P. (Pierre Jean Baptiste)', '2015-07-14', 15, 'https://www.gutenberg.org/ebooks/49441', 'fr', 10750), +(53405, 'Queixumes do Pastor Elmano Contra a Falsidade da Pastora Urselina\r\nEgloga', 'Bocage, Manuel Maria Barbosa du', '2007-10-12', 21, 'https://www.gutenberg.org/ebooks/22970', 'pt', 1638), +(53406, 'As the Goose Flies', 'Pyle, Katharine', '2015-03-27', 14, 'https://www.gutenberg.org/ebooks/48593', 'en', 9846), +(53407, 'Phrenological Development of Robert Burns\nFrom a Cast of His Skull Moulded at Dumfries, the 31st Day of March 1834', 'Combe, George', '2009-11-17', 5, 'https://www.gutenberg.org/ebooks/30489', 'en', 830), +(53408, 'The Princess Aline', 'Davis, Richard Harding', '1995-09-01', 45, 'https://www.gutenberg.org/ebooks/327', 'en', 3208), +(53409, 'Jane\'s All the World\'s Aircraft. 1913', NULL, '2011-01-02', 150, 'https://www.gutenberg.org/ebooks/34815', 'en', 17746), +(53410, 'Argonauts of the Western Pacific\r\nAn Account of Native Enterprise and Adventure in the Archipelagoes of Melanesian New Guinea', 'Malinowski, Bronislaw', '2017-10-26', 121, 'https://www.gutenberg.org/ebooks/55822', 'en', 17747), +(53411, 'Heidi', 'Spyri, Johanna', '2014-07-25', 381, 'https://www.gutenberg.org/ebooks/46409', 'en', 10623), +(53412, 'Children\'s Classics in Dramatic Form, Book Two', 'Stevenson, Augusta', '2005-07-28', 64, 'https://www.gutenberg.org/ebooks/16379', 'en', 364), +(53413, 'Arius the Libyan: A Romance of the Primitive Church', 'Kouns, Nathan C. (Nathan Chapman)', '2013-06-08', 16, 'https://www.gutenberg.org/ebooks/42895', 'en', 17748), +(53414, 'Notes and Queries, Number 194, July 16, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-04-02', 16, 'https://www.gutenberg.org/ebooks/28476', 'en', 105), +(53415, 'Comparative Religion', 'Carpenter, J. Estlin (Joseph Estlin)', '2013-10-13', 17, 'https://www.gutenberg.org/ebooks/43947', 'en', 1444), +(53416, 'Parturition without Pain or Loss of Consciousness', 'Townley, James', '2010-10-04', 11, 'https://www.gutenberg.org/ebooks/34029', 'en', 17749), +(53417, 'Why Worry?', 'Walton, George Lincoln', '2005-07-01', 17, 'https://www.gutenberg.org/ebooks/8554', 'en', 5316), +(53418, 'Food and Health', 'Lydia E. Pinkham Medicine Company', '2005-11-01', 90, 'https://www.gutenberg.org/ebooks/16977', 'en', 17750), +(53419, 'Uncle Daniel\'s Story Of \"Tom\" Anderson, and Twenty Great Battles', 'McElroy, John', '2010-03-25', 21, 'https://www.gutenberg.org/ebooks/31769', 'en', 403), +(53420, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 714\nSeptember 1, 1877', 'Various', '2015-08-10', 7, 'https://www.gutenberg.org/ebooks/49673', 'en', 18), +(53421, 'The Discovery of a World in the Moone\r\nOr, A Discovrse Tending To Prove That \'Tis Probable There May Be Another Habitable World In That Planet', 'Wilkins, John', '2006-08-23', 63, 'https://www.gutenberg.org/ebooks/19103', 'en', 17751), +(53422, 'United States Census Figures Back to 1630', 'United States. Bureau of the Census', '1994-03-01', 48, 'https://www.gutenberg.org/ebooks/115', 'en', 17133), +(53423, 'Divine Songs', 'Watts, Isaac', '2004-09-11', 135, 'https://www.gutenberg.org/ebooks/13439', 'en', 17752), +(53424, 'An Irishman\'s Difficulties with the Dutch Language', 'Brown, J. Irwin (John Irwin)', '2013-07-29', 21, 'https://www.gutenberg.org/ebooks/43349', 'en', 12523), +(53425, 'The Atlantic Monthly, Volume 05, No. 32, June, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-12-01', 13, 'https://www.gutenberg.org/ebooks/9486', 'en', 1227), +(53426, 'Fromont and Risler — Complete', 'Daudet, Alphonse', '2004-10-30', 14, 'https://www.gutenberg.org/ebooks/3980', 'en', 560), +(53427, 'Norwegische Volksmährchen vol. 1\r\ngesammelt von P. Asbjörnsen und Jörgen Moe', 'Moe, Jørgen Engebretsen', '2009-08-25', 59, 'https://www.gutenberg.org/ebooks/29796', 'de', 8336), +(53428, 'The Real Cyberpunk Fakebook', 'St. Jude', '1997-06-01', 144, 'https://www.gutenberg.org/ebooks/929', 'en', 17753), +(53429, 'Beyond the Door', 'Dick, Philip K.', '2009-04-30', 289, 'https://www.gutenberg.org/ebooks/28644', 'en', 2203), +(53430, 'The Hound of the Baskervilles', 'Doyle, Arthur Conan', '2001-10-01', 2305, 'https://www.gutenberg.org/ebooks/2852', 'en', 430), +(53431, 'The Meadow-Brook Girls by the Sea; Or, The Loss of The Lonesome Bar', 'Aldridge, Janet', '2005-11-18', 25, 'https://www.gutenberg.org/ebooks/17099', 'en', 557), +(53432, 'Forge of Foxenby', 'Goodyear, R. A. H. (Robert Arthur Hanson)', '2018-12-25', 14, 'https://www.gutenberg.org/ebooks/58533', 'en', 17754), +(53433, 'The Mysteries of Paris, Volume 3 of 6', 'Sue, Eugène', '2010-09-22', 13, 'https://www.gutenberg.org/ebooks/33802', 'en', 560), +(53434, 'The Seventh Noon', 'Bartlett, Frederick Orin', '2007-01-24', 10, 'https://www.gutenberg.org/ebooks/20429', 'en', 61), +(53435, 'Rufus and Rose; Or, The Fortunes of Rough and Ready', 'Alger, Horatio, Jr.', '2008-07-04', 42, 'https://www.gutenberg.org/ebooks/25967', 'en', 17755), +(53436, 'A Few Figs from Thistles', 'Millay, Edna St. Vincent', '2003-08-01', 55, 'https://www.gutenberg.org/ebooks/4399', 'en', 994), +(53437, 'New Lamps', 'Williams, Robert Moore', '2016-05-06', 27, 'https://www.gutenberg.org/ebooks/52009', 'en', 613), +(53438, 'The Five Jars', 'James, M. R. (Montague Rhodes)', '2007-12-31', 53, 'https://www.gutenberg.org/ebooks/24089', 'en', 2634), +(53439, 'Plane and Plank; or, The Mishaps of a Mechanic', 'Optic, Oliver', '2014-02-17', 31, 'https://www.gutenberg.org/ebooks/44950', 'en', 17756), +(53440, 'A Secret Inheritance (Volume 3 of 3)', 'Farjeon, B. L. (Benjamin Leopold)', '2014-06-04', 11, 'https://www.gutenberg.org/ebooks/45882', 'en', 10396), +(53441, 'Punch, or the London Charivari, November 25, 1893', 'Various', '2012-04-22', 3, 'https://www.gutenberg.org/ebooks/39504', 'en', 134), +(53442, 'The Art of Lead Burning\nA practical treatise explaining the apparatus and processes.', 'Fay, C. H.', '2016-08-18', 9, 'https://www.gutenberg.org/ebooks/52835', 'en', 17757), +(53443, 'Seekers after God', 'Farrar, F. W. (Frederic William)', '2004-01-01', 61, 'https://www.gutenberg.org/ebooks/10846', 'en', 7683), +(53444, 'A List of Kegan Paul, Trench & Co.\'s Publications (1887)', 'Kegan Paul, Trench & Co.', '2011-10-07', 2, 'https://www.gutenberg.org/ebooks/37658', 'en', 17758), +(53445, 'Stephen A. Douglas: A Study in American Politics', 'Johnson, Allen', '2005-03-30', 9, 'https://www.gutenberg.org/ebooks/15508', 'en', 6996), +(53446, 'The Hammond-Harwood House: A Registered National Historic Landmark', 'Anonymous', '2019-05-28', 14, 'https://www.gutenberg.org/ebooks/59627', 'en', 17759), +(53447, 'Goody Two Shoes', 'Anonymous', '2014-03-31', 52, 'https://www.gutenberg.org/ebooks/45278', 'en', 1817), +(53448, 'A Residence in France During the Years 1792, 1793, 1794 and 1795, Part III., 1794\nDescribed in a Series of Letters from an English Lady: with General\nand Incidental Remarks on the French Character and Manners', 'Biggs, Charlotte', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/11994', 'en', 17760), +(53449, 'Frank Merriwell\'s New Comedian; Or, The Rise of a Star', 'Standish, Burt L.', '2012-01-18', 32, 'https://www.gutenberg.org/ebooks/38610', 'en', 17761), +(53450, 'Moral', 'Thoma, Ludwig', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/4963', 'en', 907), +(53451, 'A Month in Yorkshire', 'White, Walter', '2011-04-22', 103, 'https://www.gutenberg.org/ebooks/35933', 'en', 10118), +(53452, 'Journal of an American Prisoner at Fort Malden and Quebec in the War of 1812', 'Reynolds, James, active 1812', '2008-09-04', 17, 'https://www.gutenberg.org/ebooks/26518', 'en', 4776), +(53453, 'The Divine Comedy by Dante, Illustrated, Purgatory, Volume 3', 'Dante Alighieri', '2004-08-04', 9, 'https://www.gutenberg.org/ebooks/8792', 'en', 365), +(53454, 'Peter Pan', 'Barrie, J. M. (James Matthew)', '2007-10-01', 62, 'https://www.gutenberg.org/ebooks/22984', 'en', 3828), +(53455, 'Vertheidigung des Herrn Wieland gegen die Wolken, von dem Verfasser der Wolken\nDeutsche Litteraturdenkmale des 18. und 19. Jahrhunderts, No. 121, Dritte Folge No. 1', 'Lenz, Jakob Michael Reinhold', '2015-03-23', 8, 'https://www.gutenberg.org/ebooks/48567', 'de', 17762), +(53456, 'The Heart of Arethusa', 'Fox, Frances Barton', '2007-12-14', 32, 'https://www.gutenberg.org/ebooks/23856', 'en', 348), +(53457, 'Georgian Poetry 1920-22', NULL, '2006-01-01', 71, 'https://www.gutenberg.org/ebooks/9640', 'en', 1594), +(53458, 'Camp Cookery. How to Live in Camp', 'Parloa, Maria', '2017-02-08', 63, 'https://www.gutenberg.org/ebooks/54138', 'en', 2155), +(53459, 'Chambers\'s Elementary Science Readers\nBook I', 'Various', '2006-04-20', 99, 'https://www.gutenberg.org/ebooks/18217', 'en', 17763), +(53460, 'Mulheres e creanças: notas sobre educação', 'Carvalho, Maria Amália Vaz de', '2009-07-30', 26, 'https://www.gutenberg.org/ebooks/29550', 'pt', 4690), +(53461, 'Homo sum: Roman', 'Ebers, Georg', '2013-06-02', 7, 'https://www.gutenberg.org/ebooks/42861', 'nl', 17347), +(53462, 'Sawtooth Ranch', 'Bower, B. M.', '2009-04-02', 36, 'https://www.gutenberg.org/ebooks/28482', 'en', 315), +(53463, 'The Dark Frigate', 'Hawes, Charles Boardman', '2015-12-03', 39, 'https://www.gutenberg.org/ebooks/50598', 'en', 1889), +(53464, 'Myths and Legends of Our Own Land — Volume 03 : on and near the Delaware', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 11, 'https://www.gutenberg.org/ebooks/6608', 'en', 725), +(53465, 'London (Ancient and Modern) from the Sanitary and Medical Point of View', 'Poore, George Vivian', '2017-06-14', 8, 'https://www.gutenberg.org/ebooks/54904', 'en', 17764), +(53466, 'The Kitáb-i-Íqán', 'Bahá\'u\'lláh', '2005-11-02', 65, 'https://www.gutenberg.org/ebooks/16983', 'en', 7255), +(53467, 'A Village Stradivarius', 'Wiggin, Kate Douglas Smith', '2002-03-01', 16, 'https://www.gutenberg.org/ebooks/3148', 'en', 770), +(53468, 'Early Renaissance Architecture in England\r\nA Historical & Descriptive Account of the Tudor, Elizabethan, & Jacobean Periods, 1500-1625', 'Gotch, J. Alfred (John Alfred)', '2015-08-12', 8, 'https://www.gutenberg.org/ebooks/49687', 'en', 17765), +(53469, 'The Story of Isaac Brock\nHero, Defender and Saviour of Upper Canada, 1812', 'Nursey, Walter R.', '2006-03-20', 20, 'https://www.gutenberg.org/ebooks/18025', 'en', 17766), +(53470, 'Elämästä: Runoja', 'Kaatra, Kössi', '2015-04-20', 8, 'https://www.gutenberg.org/ebooks/48755', 'fi', 1171), +(53471, 'The History of Mary Prince, a West Indian Slave', 'Prince, Mary', '2006-02-24', 146, 'https://www.gutenberg.org/ebooks/17851', 'en', 7883), +(53472, 'The Atlantic Monthly, Volume 05, No. 31, May, 1860\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-12-02', 19, 'https://www.gutenberg.org/ebooks/9472', 'en', 1227), +(53473, 'Unique Ghost Towns and Mountain Spots', 'Bancroft, Caroline', '2016-04-06', 16, 'https://www.gutenberg.org/ebooks/51678', 'en', 17767), +(53474, 'The Ink-Stain (Tache d\'encre) — Volume 3', 'Bazin, René', '2003-04-01', 20, 'https://www.gutenberg.org/ebooks/3974', 'en', 560), +(53475, 'FreeChildrenStories.com Collection', 'Errico, Daniel', '2009-08-22', 27, 'https://www.gutenberg.org/ebooks/29762', 'en', 859), +(53476, 'Hume\n(English Men of Letters Series)', 'Huxley, Thomas Henry', '2006-07-13', 22, 'https://www.gutenberg.org/ebooks/18819', 'en', 17768), +(53477, 'Journal of Jasper Danckaerts, 1679-1680', 'Danckaerts, Jasper', '2007-10-30', 45, 'https://www.gutenberg.org/ebooks/23258', 'en', 320), +(53478, 'Friendly Visiting among the Poor: A Handbook for Charity Workers', 'Richmond, Mary Ellen', '2008-03-15', 24, 'https://www.gutenberg.org/ebooks/24841', 'en', 17769), +(53479, 'Cinq-Mars; ou, Une conjuration sous Louis XIII (Tome 1 of 2)', 'Vigny, Alfred de', '2013-11-16', 9, 'https://www.gutenberg.org/ebooks/44198', 'fr', 2895), +(53480, 'With Cochrane the Dauntless', 'Henty, G. A. (George Alfred)', '2008-07-06', 44, 'https://www.gutenberg.org/ebooks/25993', 'en', 17770), +(53481, 'To Pay the Piper', 'Blish, James', '2019-05-02', 101, 'https://www.gutenberg.org/ebooks/59415', 'en', 5114), +(53482, 'The New Mistress: A Tale', 'Fenn, George Manville', '2010-06-20', 14, 'https://www.gutenberg.org/ebooks/32924', 'en', 3216), +(53483, 'Oud en nieuw', 'Lagerlöf, Selma', '2011-12-27', 2, 'https://www.gutenberg.org/ebooks/38422', 'nl', 4652), +(53484, 'Alamainen: Romaani', 'Mann, Heinrich', '2017-01-07', 5, 'https://www.gutenberg.org/ebooks/53913', 'fi', 15017), +(53485, 'Encyclopaedia Britannica, 11th Edition, \"Husband\" to \"Hydrolysis\"\r\nVolume 14, Slice 1', 'Various', '2012-08-19', 25, 'https://www.gutenberg.org/ebooks/40538', 'en', 1081), +(53486, 'Blues my Naughty Sweetie Gives to Me', 'Harry Raderman\'s Jazz Orchestra', '2003-11-01', 11, 'https://www.gutenberg.org/ebooks/10248', 'en', 13373), +(53487, 'Duizend en één Nacht. Arabische vertellingen. Derde deel', 'Anonymous', '2014-06-04', 30, 'https://www.gutenberg.org/ebooks/45876', 'nl', 1007), +(53488, 'Child Versus Parent: Some Chapters on the Irrepressible Conflict in the Home', 'Wise, Stephen S. (Stephen Samuel)', '2010-04-24', 16, 'https://www.gutenberg.org/ebooks/32118', 'en', 17771), +(53489, 'The Belted Seas', 'Colton, Arthur', '2004-11-01', 19, 'https://www.gutenberg.org/ebooks/6862', 'en', 1391), +(53490, 'Bright-Wits, Prince of Mogadore', 'Laughlin, Burren', '2006-05-23', 22, 'https://www.gutenberg.org/ebooks/18441', 'en', 17772), +(53491, 'Running a Thousand Miles for Freedom\r\nOr, The Escape of William and Ellen Craft from Slavery', 'Craft, Ellen', '1996-07-01', 246, 'https://www.gutenberg.org/ebooks/585', 'en', 17773), +(53492, 'Birds and All Nature, Vol 7, No. 2, February 1900\r\nIllustrated by Color Photography', 'Various', '2015-02-21', 7, 'https://www.gutenberg.org/ebooks/48331', 'en', 1584), +(53493, 'Christian Science', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9016', 'en', 10509), +(53494, 'The Third Violet', 'Crane, Stephen', '2006-10-20', 12, 'https://www.gutenberg.org/ebooks/19593', 'en', 48), +(53495, 'A Bold Stroke for a Husband: A Comedy in Five Acts', 'Cowley, Hannah', '2014-11-17', 21, 'https://www.gutenberg.org/ebooks/47379', 'en', 2455), +(53496, 'Patricia', 'Jacobs, Caroline Emilia', '2004-10-30', 10, 'https://www.gutenberg.org/ebooks/13895', 'en', 62), +(53497, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, September 1878, No. 11', 'Various', '2005-12-28', 12, 'https://www.gutenberg.org/ebooks/17409', 'en', 479), +(53498, 'Afloat on the Ohio\nAn Historical Pilgrimage of a Thousand Miles in a Skiff, from Redstone to Cairo', 'Thwaites, Reuben Gold', '2009-07-04', 17, 'https://www.gutenberg.org/ebooks/29306', 'en', 17774), +(53499, 'The Boy Scouts of the Flying Squadron', 'Shaler, Robert', '2004-07-19', 21, 'https://www.gutenberg.org/ebooks/12947', 'en', 2994), +(53500, 'Security Risk', 'Clinton, Ed M.', '2011-04-02', 40, 'https://www.gutenberg.org/ebooks/35759', 'en', 179), +(53501, 'Brewster\'s Millions', 'McCutcheon, George Barr', '2003-12-01', 81, 'https://www.gutenberg.org/ebooks/4709', 'en', 1380), +(53502, 'Gleanings from the Harvest-Fields of Literature: A Melange of Excerpta', NULL, '2018-03-21', 4, 'https://www.gutenberg.org/ebooks/56805', 'en', 813), +(53503, 'Inter-Ocean Hunting Tales', 'Randolph, Edgar Fritz', '2019-03-16', 6, 'https://www.gutenberg.org/ebooks/59071', 'en', 3595), +(53504, 'Cuestiones políticas y económicas', 'Huergo, Palemón', '2016-07-04', 9, 'https://www.gutenberg.org/ebooks/52499', 'es', 17775), +(53505, 'The History of Antiquity, Vol. 4 (of 6)', 'Duncker, Max', '2012-10-06', 34, 'https://www.gutenberg.org/ebooks/40960', 'en', 1368), +(53506, 'Lincoln\'s Plan of Reconstruction', 'McCarthy, Charles H. (Charles Hallan)', '2017-11-23', 9, 'https://www.gutenberg.org/ebooks/56039', 'en', 5784), +(53507, 'The Psychology of Singing\nA Rational Method of Voice Culture Based on a Scientific Analysis of All Systems, Ancient and Modern', 'Taylor, David C. (David Clark)', '2007-06-28', 66, 'https://www.gutenberg.org/ebooks/21957', 'en', 1290), +(53508, 'Fickle Fortune', 'Werner, E.', '2012-03-18', 87, 'https://www.gutenberg.org/ebooks/39194', 'en', 803), +(53509, 'Business English: A Practice Book', 'Buhlig, Rose', '2011-11-18', 138, 'https://www.gutenberg.org/ebooks/38046', 'en', 2270), +(53510, 'The Promised Land', 'Antin, Mary', '2007-03-23', 64, 'https://www.gutenberg.org/ebooks/20885', 'en', 17776), +(53511, 'The Danes, Sketched by Themselves. Vol. 2 (of 3)\r\nA Series of Popular Stories by the Best Danish Authors', NULL, '2011-10-23', 15, 'https://www.gutenberg.org/ebooks/37832', 'en', 7029), +(53512, 'Germany, Bohemia, and Hungary, Visited in 1837. Vol. II', 'Gleig, G. R. (George Robert)', '2008-01-28', 25, 'https://www.gutenberg.org/ebooks/24419', 'en', 7393), +(53513, 'Off to the Wilds: Being the Adventures of Two Brothers', 'Fenn, George Manville', '2007-05-08', 14, 'https://www.gutenberg.org/ebooks/21359', 'en', 3242), +(53514, 'The Pacifists', 'Fritch, Charles E.', '2019-04-10', 38, 'https://www.gutenberg.org/ebooks/59243', 'en', 67), +(53515, 'The Engineer\'s Sketch-Book\r\nOf Mechanical Movements, Devices, Appliances, Contrivances and Details Employed in the Design and Construction of Machinery for Every Purpose Classified & Arranged for Reference for the Use of Engineers, Mechanical Draughtsmen, Managers, Mechanics, Inventors, Patent Agents, and All Engaged in the Mechanical Arts', 'Barber, Thomas Walker', '2018-12-01', 61, 'https://www.gutenberg.org/ebooks/58391', 'en', 17777), +(53516, 'Vie de Henri Brulard, tome 2 (of 2)', 'Stendhal', '2016-12-21', 20, 'https://www.gutenberg.org/ebooks/53779', 'fr', 17778), +(53517, 'Painted Windows', 'Peattie, Elia Wilkinson', '1999-09-01', 21, 'https://www.gutenberg.org/ebooks/1875', 'en', 61), +(53518, 'Wilderness Ways', 'Long, William J. (William Joseph)', '2005-05-31', 61, 'https://www.gutenberg.org/ebooks/15950', 'en', 2560), +(53519, 'Bobby of the Labrador', 'Wallace, Dillon', '2005-02-02', 13, 'https://www.gutenberg.org/ebooks/14882', 'en', 17779), +(53520, 'Ecclesiastical Curiosities', NULL, '2011-12-11', 13, 'https://www.gutenberg.org/ebooks/38274', 'en', 13201), +(53521, 'Vanished Arizona: Recollections of the Army Life by a New England Woman', 'Summerhayes, Martha', '1997-09-01', 45, 'https://www.gutenberg.org/ebooks/1049', 'en', 17780), +(53522, 'Terry\'s Texas Rangers', 'Giles, L. B.', '2015-01-29', 26, 'https://www.gutenberg.org/ebooks/48103', 'en', 17781), +(53523, 'Navy Day', 'Harrison, Harry', '2009-09-18', 87, 'https://www.gutenberg.org/ebooks/30019', 'en', 26), +(53524, 'Buds and Bird Voices (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 23, 'https://www.gutenberg.org/ebooks/9224', 'en', 13), +(53525, 'Moriz: ein kleiner Roman', 'Schulz, Friedrich', '2015-01-15', 5, 'https://www.gutenberg.org/ebooks/47977', 'de', 61), +(53526, 'Astrophel and Other Poems\nTaken from The Collected Poetical Works of Algernon Charles\nSwinburne, Vol. VI', 'Swinburne, Algernon Charles', '2006-06-24', 19, 'https://www.gutenberg.org/ebooks/18673', 'en', 8), +(53527, 'The Secret City', 'Walpole, Hugh', '2004-05-01', 49, 'https://www.gutenberg.org/ebooks/12349', 'en', 17782), +(53528, 'Vitruvii De architectura libri decem', 'Vitruvius Pollio', '2016-04-20', 41, 'https://www.gutenberg.org/ebooks/51812', 'la', 805), +(53529, '\"The Santa Fe Trail,\" and Other Poems', 'Wilson, Joseph Robert', '2013-03-30', 10, 'https://www.gutenberg.org/ebooks/42439', 'en', 8), +(53530, 'The Adventurer', 'Kornbluth, C. M. (Cyril M.)', '2009-09-04', 63, 'https://www.gutenberg.org/ebooks/29908', 'en', 179), +(53531, 'The Camp Fire Girls on Ellen\'s Isle; Or, The Trail of the Seven Cedars', 'Frey, Hildegard G.', '2010-01-01', 8, 'https://www.gutenberg.org/ebooks/30825', 'en', 82), +(53532, 'Läpi neekerien maan-osan\nHenry Stanleyn matkat, seikkailut ja vaarat Afrikassa', 'Hertzberg, Rafaël', '2009-01-26', 38, 'https://www.gutenberg.org/ebooks/27892', 'fi', 4485), +(53533, 'The Vitality of \"Mormonism\": An Address', 'Talmage, James E. (James Edward)', '2014-06-26', 14, 'https://www.gutenberg.org/ebooks/46099', 'en', 1440), +(53534, 'Atalantis Major', 'Defoe, Daniel', '2008-10-17', 24, 'https://www.gutenberg.org/ebooks/26940', 'en', 15841), +(53535, 'Harper\'s Young People, September 7, 1880\nAn Illustrated Weekly', 'Various', '2009-06-15', 13, 'https://www.gutenberg.org/ebooks/29134', 'en', 479), +(53536, 'An Introduction to the Prose and Poetical Works of John Milton\r\nComprising All the Autobiographic Passages in His Works, the More Explicit Presentations of His Ideas of True Liberty.', 'Milton, John', '2014-01-23', 27, 'https://www.gutenberg.org/ebooks/44733', 'en', 10184), +(53537, 'The Memoirs of Count Grammont — Volume 06', 'Hamilton, Anthony, Count', '2004-12-04', 6, 'https://www.gutenberg.org/ebooks/5414', 'en', 10650), +(53538, 'The History of England, from the Accession of James II, Volume 1, Chapter 04', 'Macaulay, Thomas Babington Macaulay, Baron', '2007-01-05', 6, 'https://www.gutenberg.org/ebooks/20276', 'en', 641), +(53539, 'The Bittermeads Mystery', 'Punshon, E. R. (Ernest Robertson)', '1999-09-01', 45, 'https://www.gutenberg.org/ebooks/1888', 'en', 61), +(53540, 'Old Melbourne Memories\nSecond Edition, Revised', 'Boldrewood, Rolf', '2016-12-21', 16, 'https://www.gutenberg.org/ebooks/53784', 'en', 7108), +(53541, 'Een kijkje op de Tentoonstelling te Milaan\r\nDe Aarde en haar Volken, 1906', 'Ketner, Ph. J.', '2004-11-14', 5, 'https://www.gutenberg.org/ebooks/14043', 'nl', 17783), +(53542, 'The Commercial Products of the Vegetable Kingdom\r\nConsidered in Their Various Uses to Man and in Their Relation to the Arts and Manufactures; Forming a Practical Treatise & Handbook of Reference for the Colonist, Manufacturer, Merchant, and Consumer, on the Cultivation, Preparation for Shipment, and Commercial Value, &c. of the Various Substances Obtained From Trees and Plants, Entering into the Husbandry of Tropical and Sub-tropical Regions, &c.', 'Simmonds, P. L. (Peter Lund)', '2005-02-27', 49, 'https://www.gutenberg.org/ebooks/15191', 'en', 17784), +(53543, 'Ten Months in a German Raider: A prisoner of war aboard the Wolf', 'Cameron, John Stanley', '2016-07-27', 14, 'https://www.gutenberg.org/ebooks/52656', 'en', 1390), +(53544, 'Witch Winnie\'s Mystery, or The Old Oak Cabinet\nThe Story of a King\'s Daughter', 'Champney, Elizabeth W. (Elizabeth Williams)', '2011-06-04', 32, 'https://www.gutenberg.org/ebooks/36313', 'en', 195), +(53545, 'The Battle of Tsu-shima\nbetween the Japanese and Russian fleets, fought on 27th May 1905', 'Semenov, V. I. (Vladimir Ivanovich)', '2018-06-14', 22, 'https://www.gutenberg.org/ebooks/57324', 'en', 17785), +(53546, 'The Letters of a Post-Impressionist\nBeing the Familiar Correspondence of Vincent Van Gogh', 'Gogh, Vincent van', '2012-08-02', 156, 'https://www.gutenberg.org/ebooks/40393', 'en', 17786), +(53547, 'The Affecting Case of the Unfortunate Thomas Daniels\r\nWho Was Tried at the Sessions Held at the Old Bailey, September, 1761, for the Supposed Murder of His Wife; by Casting Her out of a Chamber Window: and for Which He Was Sentenced to Die, but Received His Majesty\'s Most Gracious and Free Pardon.', 'Daniels, Thomas', '2010-09-07', 21, 'https://www.gutenberg.org/ebooks/33661', 'en', 17787), +(53548, 'The Sa\'-Zada Tales', 'Fraser, William Alexander', '2011-12-13', 13, 'https://www.gutenberg.org/ebooks/38289', 'en', 625), +(53549, 'The Progress of the Marbling Art, from Technical Scientific Principles\r\nWith a Supplement on the Decoration of Book Edges', 'Halfer, Josef', '2012-10-30', 23, 'https://www.gutenberg.org/ebooks/41241', 'en', 17788), +(53550, 'The Life of Marie de Medicis, Queen of France, Consort of Henri IV, and Regent of the Kingdom under Louis XIII — Volume 1', 'Pardoe, Miss (Julia)', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11531', 'en', 14507), +(53551, 'Zola', 'Faguet, Émile', '2008-06-05', 14, 'https://www.gutenberg.org/ebooks/25704', 'fr', 11853), +(53552, 'George Crabbe: Poems, Volume 1 (of 3)', 'Crabbe, George', '2014-09-14', 33, 'https://www.gutenberg.org/ebooks/46858', 'en', 54), +(53553, 'Stories of Siegfried, Told to the Children', 'MacGregor, Mary Esther Miller', '2008-08-03', 18, 'https://www.gutenberg.org/ebooks/26181', 'en', 17654), +(53554, 'Kotto: Being Japanese Curios, with Sundry Cobwebs', 'Hearn, Lafcadio', '2017-09-01', 56, 'https://www.gutenberg.org/ebooks/55473', 'en', 14561), +(53555, 'Distribution of Some Nebraskan Mammals', 'Jones, J. Knox', '2010-01-31', 17, 'https://www.gutenberg.org/ebooks/31136', 'en', 17789), +(53556, 'Mr. Gladstone and Genesis\r\nEssay #5 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 16, 'https://www.gutenberg.org/ebooks/2631', 'en', 814), +(53557, 'La religieuse', 'Diderot, Denis', '2009-05-15', 78, 'https://www.gutenberg.org/ebooks/28827', 'fr', 17790), +(53558, 'Making a Tennis Court', 'Walsh, George E.', '2013-08-20', 6, 'https://www.gutenberg.org/ebooks/43516', 'en', 17791), +(53559, 'Final Report of the Louisiana Purchase Exposition Commission', 'Louisiana Purchase Exposition Commission', '2004-08-23', 26, 'https://www.gutenberg.org/ebooks/13266', 'en', 17792), +(53560, 'The Day Time Stopped Moving', 'Repp, Ed Earl', '2008-10-26', 52, 'https://www.gutenberg.org/ebooks/27053', 'en', 179), +(53561, 'The Deep Lake Mystery', 'Wells, Carolyn', '2014-06-21', 41, 'https://www.gutenberg.org/ebooks/46064', 'en', 128), +(53562, 'Robt. Schumann : The Story of the Boy Who Made Pictures in Music', 'Tapper, Thomas', '2011-03-17', 105, 'https://www.gutenberg.org/ebooks/35596', 'en', 17793), +(53563, 'The Church and the Empire\r\nBeing an Outline of the History of the Church from A.D. 1003 to A.D. 1304', 'Medley, D. J. (Dudley Julius)', '2005-01-01', 22, 'https://www.gutenberg.org/ebooks/7343', 'en', 559), +(53564, 'The Mentor: Napoleon Bonaparte, Serial No. 38', 'Tarbell, Ida M. (Ida Minerva)', '2015-08-29', 10, 'https://www.gutenberg.org/ebooks/49810', 'en', 840), +(53565, 'The Young Acrobat of the Great North American Circus', 'Alger, Horatio, Jr.', '2007-09-05', 36, 'https://www.gutenberg.org/ebooks/22521', 'en', 7696), +(53566, 'Under Sealed Orders', 'Cody, H. A. (Hiram Alfred)', '2005-09-17', 17, 'https://www.gutenberg.org/ebooks/16714', 'en', 65), +(53567, 'Über die Probenächte der teutschen Bauermädchen', 'Fischer, Friedrich Christoph Jonathan', '2015-09-30', 11, 'https://www.gutenberg.org/ebooks/50101', 'de', 17794), +(53568, 'The Story of the Great War, Volume 8\r\nVictory with the Allies; Armistice; Peace Congress; Canada\'s War Organizations and vast War Industries; Canadian Battles Overseas', NULL, '2010-11-25', 47, 'https://www.gutenberg.org/ebooks/34444', 'en', 335), +(53569, 'Wild Youth, Complete', 'Parker, Gilbert', '2004-11-20', 10, 'https://www.gutenberg.org/ebooks/6291', 'en', 332), +(53570, 'Shakspere and Montaigne\r\nAn Endeavour to Explain the Tendency of \'Hamlet\' from Allusions in Contemporary Works', 'Feis, Jacob', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8139', 'en', 1826), +(53571, 'Euphorion - Vol. II\r\nBeing Studies of the Antique and the Mediaeval in the Renaissance', 'Lee, Vernon', '2010-02-17', 13, 'https://www.gutenberg.org/ebooks/31304', 'en', 3484), +(53572, 'Kustaa Vaasa ja hänen aikalaisensa II: Aurinko laskee\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-09-27', 8, 'https://www.gutenberg.org/ebooks/55641', 'fi', 12230), +(53573, 'The Principles of Masonic Law\nA Treatise on the Constitutional Laws, Usages and Landmarks of\nFreemasonry', 'Mackey, Albert Gallatin', '2004-04-01', 231, 'https://www.gutenberg.org/ebooks/12186', 'en', 17795), +(53574, 'From the Earth to the Moon; and, Round the Moon', 'Verne, Jules', '1993-09-01', 786, 'https://www.gutenberg.org/ebooks/83', 'en', 8406), +(53575, 'A Thane of Wessex\r\nBeing a Story of the Great Viking Raids into Somerset', 'Whistler, Charles W. (Charles Watts)', '2004-07-29', 26, 'https://www.gutenberg.org/ebooks/13054', 'en', 6814), +(53576, 'St. Paul and Protestantism, with an Essay on Puritanism and the Church of England', 'Arnold, Matthew', '2017-05-27', 18, 'https://www.gutenberg.org/ebooks/54793', 'en', 17796), +(53577, 'Down with the Cities!', 'Nakashima, Tadashi', '1996-07-01', 52, 'https://www.gutenberg.org/ebooks/578', 'en', 17797), +(53578, 'Fantazius Mallare: A Mysterious Oath', 'Hecht, Ben', '2008-11-14', 25, 'https://www.gutenberg.org/ebooks/27261', 'en', 428), +(53579, 'Die Wahlverwandtschaften', 'Goethe, Johann Wolfgang von', '2000-11-01', 156, 'https://www.gutenberg.org/ebooks/2403', 'de', 12443), +(53580, 'Markens grøde, Første del', 'Hamsun, Knut', '2013-09-14', 61, 'https://www.gutenberg.org/ebooks/43724', 'no', 286), +(53581, 'With The Eyes Shut\n1898', 'Bellamy, Edward', '2007-09-21', 20, 'https://www.gutenberg.org/ebooks/22713', 'en', 770), +(53582, 'Lyrical Ballads, with Other Poems, 1800, Volume 1', 'Wordsworth, William', '2005-09-01', 130, 'https://www.gutenberg.org/ebooks/8905', 'en', 532), +(53583, 'Morocco', 'Bensusan, S. L. (Samuel Levy)', '2005-08-13', 30, 'https://www.gutenberg.org/ebooks/16526', 'en', 6762), +(53584, 'In the Ypres Salient\nThe Story of a Fortnight\'s Canadian Fighting, June 2-16, 1916', 'Willson, Beckles', '2014-07-12', 33, 'https://www.gutenberg.org/ebooks/46256', 'en', 3333), +(53585, 'Linda Condon', 'Hergesheimer, Joseph', '2004-12-01', 13, 'https://www.gutenberg.org/ebooks/7171', 'en', 61), +(53586, 'Macbeth', 'Shakespeare, William', '2004-10-25', 49, 'https://www.gutenberg.org/ebooks/13868', 'fr', 15014), +(53587, 'Mr. Punch\'s Country Life: Humours of Our Rustics', NULL, '2010-12-16', 16, 'https://www.gutenberg.org/ebooks/34676', 'en', 17798), +(53588, 'The Quarterly Journal of Science, Literature and the Arts, July-December, 1827', 'Various', '2014-11-17', 7, 'https://www.gutenberg.org/ebooks/47384', 'en', 210), +(53589, 'Nordenskiöldin matkat ja retket napamerillä\nNuorisolle kerrottuina', 'Hertzberg, Rafaël', '2015-10-28', 10, 'https://www.gutenberg.org/ebooks/50333', 'fi', 7979), +(53590, 'Anderson Crow, Detective', 'McCutcheon, George Barr', '2009-03-01', 34, 'https://www.gutenberg.org/ebooks/28229', 'en', 128), +(53591, 'Riders of the Silences', 'Brand, Max', '2006-12-07', 29, 'https://www.gutenberg.org/ebooks/20044', 'en', 315), +(53592, 'Panayam ng Tatlong Binata — Ikalawang Hati', 'Ignacio, Cleto R.', '2004-12-06', 12, 'https://www.gutenberg.org/ebooks/14271', 'tl', 8063), +(53593, 'How to Write a Novel: A Practical Guide to the Art of Fiction', 'Anonymous', '2012-02-15', 162, 'https://www.gutenberg.org/ebooks/38887', 'en', 7648), +(53594, 'Toy Craft', 'Baxter, Leon H.', '2013-12-24', 41, 'https://www.gutenberg.org/ebooks/44501', 'en', 132), +(53595, 'The Motormaniacs', 'Osbourne, Lloyd', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/5626', 'en', 828), +(53596, 'The Snow-Burner', 'Oyen, Henry', '2011-05-16', 14, 'https://www.gutenberg.org/ebooks/36121', 'en', 17799), +(53597, 'The Dawn of Day', 'Nietzsche, Friedrich Wilhelm', '2012-06-09', 307, 'https://www.gutenberg.org/ebooks/39955', 'en', 680), +(53598, 'Episcopal Fidelity', 'Bayley, Emilius, Sir', '2016-06-30', 9, 'https://www.gutenberg.org/ebooks/52464', 'en', 17800), +(53599, 'Little Masterpieces of American Wit and Humor, Volume I', NULL, '2007-04-21', 42, 'https://www.gutenberg.org/ebooks/21196', 'en', 190), +(53600, 'Critical Miscellanies, Vol. 1, Essay 2: Carlyle', 'Morley, John', '2007-03-22', 34, 'https://www.gutenberg.org/ebooks/20878', 'en', 17801), +(53601, 'Tales from Shakespeare', 'Lamb, Charles', '1998-04-01', 331, 'https://www.gutenberg.org/ebooks/1286', 'en', 6730), +(53602, 'Making Home Profitable', 'Saint Maur, Kate V. (Kate Vandenhoff)', '2019-02-25', 90, 'https://www.gutenberg.org/ebooks/58962', 'en', 2503), +(53603, 'A Traitor\'s Wooing', 'Hill, Headon', '2010-08-17', 17, 'https://www.gutenberg.org/ebooks/33453', 'en', 401), +(53604, 'Illustrated Horse Breaking', 'Hayes, M. Horace (Matthew Horace)', '2018-05-09', 9, 'https://www.gutenberg.org/ebooks/57116', 'en', 4743), +(53605, 'The Swiss Family Robinson; or Adventures in a Desert Island', 'Wyss, Johann David', '2004-03-01', 110, 'https://www.gutenberg.org/ebooks/11703', 'en', 1155), +(53606, 'History of the English People, Volume VIII\r\nModern England, 1760-1815', 'Green, John Richard', '2008-05-20', 16, 'https://www.gutenberg.org/ebooks/25536', 'en', 1953), +(53607, 'Little Aliens', 'Kelly, Myra', '2010-05-29', 18, 'https://www.gutenberg.org/ebooks/32581', 'en', 17802), +(53608, 'Pictures and Stories', NULL, '2012-03-16', 6, 'https://www.gutenberg.org/ebooks/39169', 'en', 17803), +(53609, 'Insula Sanctorum et Doctorum; Or, Ireland\'s Ancient Schools and Scholars', 'Healy, John', '2012-10-16', 19, 'https://www.gutenberg.org/ebooks/41073', 'en', 17804), +(53610, 'A Librarian\'s Open Shelf: Essays on Various Subjects', 'Bostwick, Arthur E. (Arthur Elmore)', '2004-09-10', 31, 'https://www.gutenberg.org/ebooks/13430', 'en', 973), +(53611, 'Notes and Queries, Number 227, March 4, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-12-24', 95, 'https://www.gutenberg.org/ebooks/27605', 'en', 105), +(53612, 'Beasts, Men and Gods', 'Ossendowski, Ferdynand Antoni', '2006-05-14', 127, 'https://www.gutenberg.org/ebooks/2067', 'en', 1559), +(53613, 'The Fair God; or, The Last of the \'Tzins: A Tale of the Conquest of Mexico', 'Wallace, Lew', '2013-07-28', 31, 'https://www.gutenberg.org/ebooks/43340', 'en', 6180), +(53614, 'Mémoires du prince de Talleyrand, Volume 5 (of 5)', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2013-03-10', 19, 'https://www.gutenberg.org/ebooks/42292', 'fr', 624), +(53615, 'Why do we need a public library? Material for a library campaign', NULL, '2010-03-24', 18, 'https://www.gutenberg.org/ebooks/31760', 'en', 17805), +(53616, 'Victor Serenus: A Story of the Pauline Era', 'Wood, Henry', '2017-07-30', 4, 'https://www.gutenberg.org/ebooks/55225', 'en', 17806), +(53617, 'L\'Illustration, No. 0005, 1er Avril 1843', 'Various', '2010-11-05', 9, 'https://www.gutenberg.org/ebooks/34212', 'fr', 150), +(53618, 'Ethics — Part 2', 'Spinoza, Benedictus de', '1997-05-01', 103, 'https://www.gutenberg.org/ebooks/920', 'en', 680), +(53619, 'La cita: novelas', 'Zamacois, Eduardo', '2015-12-23', 12, 'https://www.gutenberg.org/ebooks/50757', 'es', 1696), +(53620, 'Random Reminiscences of Men and Events', 'Rockefeller, John D. (John Davison)', '2005-11-18', 364, 'https://www.gutenberg.org/ebooks/17090', 'en', 2136), +(53621, 'Rollo in Switzerland', 'Abbott, Jacob', '2007-08-23', 16, 'https://www.gutenberg.org/ebooks/22377', 'en', 17807), +(53622, 'Conscience — Volume 4', 'Malot, Hector', '2003-04-01', 10, 'https://www.gutenberg.org/ebooks/3989', 'en', 560), +(53623, 'The Communist Threat in the Taiwan Area', 'Eisenhower, Dwight D. (Dwight David)', '2005-06-28', 15, 'https://www.gutenberg.org/ebooks/16142', 'en', 8448), +(53624, 'Humanistic Studies of the University of Kansas, Vol. 1', 'Croissant, De Witt Clinton', '2016-04-07', 6, 'https://www.gutenberg.org/ebooks/51685', 'en', 17808), +(53625, 'Histoire de la République de Venise (Vol. 2)', 'Daru, Pierre-Antoine-Noël-Bruno, comte', '2014-08-19', 24, 'https://www.gutenberg.org/ebooks/46632', 'fr', 10765), +(53626, 'Willie the Waif', 'Herbert, Minie', '2006-11-27', 13, 'https://www.gutenberg.org/ebooks/19936', 'en', 9572), +(53627, 'The Glory of the Trenches', 'Dawson, Coningsby', '2005-02-01', 43, 'https://www.gutenberg.org/ebooks/7515', 'en', 335), +(53628, 'In the Andamans and Nicobars: The Narrative of a Cruise in the Schooner \"Terrapin\"', 'Kloss, C. Boden (Cecil Boden)', '2011-06-28', 14, 'https://www.gutenberg.org/ebooks/36545', 'en', 17809), +(53629, 'A History of Greek Art\r\nWith an Introductory Chapter on Art in Egypt and Mesopotamia', 'Tarbell, F. B. (Frank Bigelow)', '2003-08-01', 49, 'https://www.gutenberg.org/ebooks/4390', 'en', 17810), +(53630, 'Talonpoika satimessa: Kolminäytöksinen huvinäytelmä', 'Holberg, Ludvig', '2016-05-05', 8, 'https://www.gutenberg.org/ebooks/52000', 'fi', 907), +(53631, 'Real Ghost Stories', 'Stead, W. T. (William Thomas)', '2007-01-22', 43, 'https://www.gutenberg.org/ebooks/20420', 'en', 531), +(53632, 'The Sable Cloud: A Southern Tale With Northern Comments (1861)', 'Adams, Nehemiah', '2005-01-06', 14, 'https://www.gutenberg.org/ebooks/14615', 'en', 6156), +(53633, 'Soldier Rigdale: How He Sailed in the Mayflower and How He Served Miles Standish', 'Dix, Beulah Marie', '2013-11-12', 14, 'https://www.gutenberg.org/ebooks/44165', 'en', 17811), +(53634, 'The Tour: A Story of Ancient Egypt', 'Couperus, Louis', '2011-09-21', 13, 'https://www.gutenberg.org/ebooks/37497', 'en', 2938), +(53635, 'Tales from the Arabic — Volume 01', NULL, '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/5242', 'en', 3756), +(53636, 'A History of China', 'Eberhard, Wolfram', '2004-02-01', 116, 'https://www.gutenberg.org/ebooks/11367', 'en', 4635), +(53637, 'All for a Scrap of Paper: A Romance of the Present War', 'Hocking, Joseph', '2008-04-23', 12, 'https://www.gutenberg.org/ebooks/25152', 'en', 579), +(53638, 'America, Volume 1 (of 6)', 'Cook, Joel', '2012-11-20', 12, 'https://www.gutenberg.org/ebooks/41417', 'en', 1110), +(53639, 'Harper\'s Round Table, June 25, 1895', 'Various', '2010-06-30', 9, 'https://www.gutenberg.org/ebooks/33037', 'en', 668), +(53640, 'The Stewardship of the Soil\r\nBaccalaureate Address by John Henry Worst, President, North Dakota Agricultural College', 'Worst, John H. (John Henry)', '2007-12-31', 11, 'https://www.gutenberg.org/ebooks/24080', 'en', 2757), +(53641, 'Tales of My Time, Vol. 2 (of 3)\r\nWho Is She? [concluded]; The Young Reformers', 'Scargill, William Pitt', '2014-02-18', 18, 'https://www.gutenberg.org/ebooks/44959', 'en', 45), +(53642, 'Maanalaiset: Seikkailuromaani kapinahankkeiden vakoilusta', 'Karila, Olli', '2018-07-23', 6, 'https://www.gutenberg.org/ebooks/57572', 'fi', 175), +(53643, 'A Bible Hand-Book', 'Holliday, F. C. (Fernandez C.)', '2016-06-03', 14, 'https://www.gutenberg.org/ebooks/52232', 'en', 6984), +(53644, 'Duty, and other Irish Comedies', 'O\'Brien, Seumas', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11969', 'en', 5104), +(53645, 'Persuasion', 'Austen, Jane', '2011-07-20', 78, 'https://www.gutenberg.org/ebooks/36777', 'fr', 17812), +(53646, 'The Knickerbocker, Vol. 10, No. 3, September 1837', 'Various', '2014-04-01', 18, 'https://www.gutenberg.org/ebooks/45285', 'en', 18), +(53647, 'L\'Illustration, No. 1605, 29 novembre 1873', 'Various', '2013-12-05', 3, 'https://www.gutenberg.org/ebooks/44357', 'fr', 150), +(53648, 'The Doctor\'s Dilemma', 'Shaw, Bernard', '2004-02-01', 136, 'https://www.gutenberg.org/ebooks/5070', 'en', 3116), +(53649, 'Fort Amity', 'Quiller-Couch, Arthur', '2007-02-17', 17, 'https://www.gutenberg.org/ebooks/20612', 'en', 893), +(53650, 'The British Journal of Photography, No. 613, Vol. XIX, February 2, 1872', 'Various', '2019-01-17', 12, 'https://www.gutenberg.org/ebooks/58708', 'en', 15979), +(53651, 'True Love\'s Reward\r\nA Sequel to Mona', 'Sheldon, Georgie, Mrs.', '2004-12-23', 13, 'https://www.gutenberg.org/ebooks/14427', 'en', 61), +(53652, 'Curious Facts in the History of Insects; Including Spiders and Scorpions.\r\nA Complete Collection of the Legends, Superstitions, Beliefs, and Ominous Signs Connected with Insects; Together with Their Uses in Medicine, Art, and as Food; and a Summary of Their Remarkable Injuries and Appearances.', 'Cowan, Frank', '2012-12-15', 15, 'https://www.gutenberg.org/ebooks/41625', 'en', 2667), +(53653, 'Editha\'s Burglar: A Story for Children', 'Burnett, Frances Hodgson', '2018-03-07', 17, 'https://www.gutenberg.org/ebooks/56692', 'en', 3608), +(53654, 'The Atlantic Monthly, Volume 07, No. 42, April, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/11155', 'en', 1227), +(53655, '孟子字義疏證', 'Dai, Zhen', '2008-05-06', 14, 'https://www.gutenberg.org/ebooks/25360', 'zh', 17813), +(53656, 'Old Lady Number 31', 'Forsslund, Louise', '2003-11-01', 33, 'https://www.gutenberg.org/ebooks/10087', 'en', 1763), +(53657, 'Kingsford, Quarter', 'Barbour, Ralph Henry', '2018-08-22', 16, 'https://www.gutenberg.org/ebooks/57740', 'en', 5031), +(53658, 'Les grandes chroniques de France (1/6)\r\nselon que elles sont conservées en l\'Eglise de Saint-Denis en France', NULL, '2010-07-19', 13, 'https://www.gutenberg.org/ebooks/33205', 'fr', 1168), +(53659, 'Henry VI, Part 2', 'Shakespeare, William', '2000-07-01', 73, 'https://www.gutenberg.org/ebooks/2255', 'en', 7878), +(53660, 'The Humors of Falconbridge\nA Collection of Humorous and Every Day Scenes', 'Falconbridge', '2009-11-15', 19, 'https://www.gutenberg.org/ebooks/30480', 'en', 190), +(53661, 'La delinquenza nella Rivoluzione francese\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Lombroso, Cesare', '2013-07-09', 20, 'https://www.gutenberg.org/ebooks/43172', 'it', 7184); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(53662, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nGeorgia Narratives, Part 1', 'United States. Work Projects Administration', '2004-10-05', 56, 'https://www.gutenberg.org/ebooks/13602', 'en', 17814), +(53663, 'Desert Dust', 'Sabin, Edwin L. (Edwin Legrand)', '2008-12-07', 21, 'https://www.gutenberg.org/ebooks/27437', 'en', 61), +(53664, 'The Keeper', 'Piper, H. Beam', '2006-09-20', 82, 'https://www.gutenberg.org/ebooks/19338', 'en', 26), +(53665, 'The Diary of Dr. John William Polidori, 1816, Relating to Byron, Shelley, etc.', 'Polidori, John William', '2017-07-01', 27, 'https://www.gutenberg.org/ebooks/55017', 'en', 17815), +(53666, 'The Tale of Peter Mink', 'Bailey, Arthur Scott', '2007-10-01', 9, 'https://www.gutenberg.org/ebooks/22979', 'en', 7950), +(53667, 'When Mother Lets Us Give a Party\r\nA book that tells little folk how best to entertain and amuse their little friends', 'Yale, Elsie Duncan', '2015-07-16', 13, 'https://www.gutenberg.org/ebooks/49448', 'en', 1560), +(53668, 'Confessions of a Summer Colonist (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 23, 'https://www.gutenberg.org/ebooks/3387', 'en', 3027), +(53669, 'Novo dicionário da língua portuguesa', 'Figueiredo, Cândido de', '2010-03-08', 76, 'https://www.gutenberg.org/ebooks/31552', 'pt', 17816), +(53670, 'The History of Chemistry, Volume 1 (of 2)', 'Thomson, Thomas', '2015-11-27', 29, 'https://www.gutenberg.org/ebooks/50565', 'en', 10696), +(53671, 'Fifty Years of Public Service\r\nPersonal Recollections of Shelby M. Cullom, Senior United States Senator from Illinois', 'Cullom, Shelby M. (Shelby Moore)', '2007-10-20', 10, 'https://www.gutenberg.org/ebooks/23097', 'en', 17817), +(53672, 'The Window at the White Cat', 'Rinehart, Mary Roberts', '2010-10-02', 73, 'https://www.gutenberg.org/ebooks/34020', 'en', 15947), +(53673, 'Revolutionary Reader: Reminiscences and Indian Legends', 'Foster, Sophie Lee', '2014-07-24', 25, 'https://www.gutenberg.org/ebooks/46400', 'en', 869), +(53674, 'The Last of the Barons — Complete', 'Lytton, Edward Bulwer Lytton, Baron', '2004-11-26', 48, 'https://www.gutenberg.org/ebooks/7727', 'en', 10517), +(53675, 'A Book of Burlesques', 'Mencken, H. L. (Henry Louis)', '2007-07-25', 67, 'https://www.gutenberg.org/ebooks/22145', 'en', 17818), +(53676, 'Lameness of the Horse\nVeterinary Practitioners\' Series, No. 1', 'Lacroix, John Victor', '2005-07-27', 13, 'https://www.gutenberg.org/ebooks/16370', 'en', 17819), +(53677, 'John Holdsworth, Chief Mate', 'Russell, William Clark', '2017-03-08', 6, 'https://www.gutenberg.org/ebooks/54303', 'en', 137), +(53678, 'The Sisters Rondoli, and Other Stories', 'Maupassant, Guy de', '2019-08-19', 441, 'https://www.gutenberg.org/ebooks/60136', 'en', 17820), +(53679, 'Il ritratto del diavolo', 'Barrili, Anton Giulio', '2006-02-25', 66, 'https://www.gutenberg.org/ebooks/17858', 'it', 61), +(53680, 'Woman under socialism', 'Bebel, August', '2009-12-10', 21, 'https://www.gutenberg.org/ebooks/30646', 'en', 15459), +(53681, 'The Writings of Samuel Adams - Volume 3', 'Adams, Samuel', '2000-03-01', 36, 'https://www.gutenberg.org/ebooks/2093', 'en', 17821), +(53682, 'Antiquities of the Mesa Verde National Park: Cliff Palace', 'Fewkes, Jesse Walter', '2013-03-05', 17, 'https://www.gutenberg.org/ebooks/42266', 'en', 17822), +(53683, 'Naturalism and Religion', 'Otto, Rudolf', '2009-03-27', 36, 'https://www.gutenberg.org/ebooks/31794', 'en', 2713), +(53684, 'The Irish Race in the Past and the Present', 'Thébaud, Augustus J.', '2002-03-01', 14, 'https://www.gutenberg.org/ebooks/3141', 'en', 7442), +(53685, 'A Little Maid of Ticonderoga', 'Curtis, Alice Turner', '2008-09-29', 23, 'https://www.gutenberg.org/ebooks/26723', 'en', 2843), +(53686, 'The Way of an Eagle', 'Dell, Ethel M. (Ethel May)', '2004-06-01', 41, 'https://www.gutenberg.org/ebooks/12516', 'en', 401), +(53687, 'On the Trail of Pontiac; Or, The Pioneer Boys of the Ohio', 'Stratemeyer, Edward', '2004-09-01', 14, 'https://www.gutenberg.org/ebooks/6433', 'en', 17823), +(53688, 'Alec Forbes of Howglen', 'MacDonald, George', '2006-07-12', 45, 'https://www.gutenberg.org/ebooks/18810', 'en', 2389), +(53689, 'English Heraldic Book-stamps', 'Davenport, Cyril', '2014-12-20', 18, 'https://www.gutenberg.org/ebooks/47714', 'en', 10522), +(53690, 'The Story of a Plush Bear', 'Hope, Laura Lee', '2005-11-14', 20, 'https://www.gutenberg.org/ebooks/17064', 'en', 17824), +(53691, 'Marianson\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 5, 'https://www.gutenberg.org/ebooks/23251', 'en', 877), +(53692, 'Montaigne et François Bacon', 'Villey, Pierre', '2007-08-24', 21, 'https://www.gutenberg.org/ebooks/22383', 'fr', 642), +(53693, 'Copyright Renewals: Periodicals: 1951', 'Library of Congress. Copyright Office', '2016-04-06', 3, 'https://www.gutenberg.org/ebooks/51671', 'en', 4170), +(53694, 'Folk-Lore and Legends: Oriental', 'Tibbitts, Charles John', '2011-02-20', 34, 'https://www.gutenberg.org/ebooks/35334', 'en', 17825), +(53695, 'The Lances of Lynwood', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-08-01', 30, 'https://www.gutenberg.org/ebooks/4364', 'en', 7229), +(53696, 'Atheensch Jongensleven', 'Kuiper, K. (Koenraad)', '2014-02-28', 6, 'https://www.gutenberg.org/ebooks/45043', 'nl', 17826), +(53697, 'Grey Roses', 'Harland, Henry', '2005-04-29', 17, 'https://www.gutenberg.org/ebooks/15733', 'en', 770), +(53698, 'The Young Llanero: A Story of War and Wild Life in Venezuela', 'Kingston, William Henry Giles', '2007-05-16', 27, 'https://www.gutenberg.org/ebooks/21506', 'en', 17827), +(53699, 'Specimens of British Trench Orders', 'Army War College (U.S.)', '2016-09-22', 21, 'https://www.gutenberg.org/ebooks/53126', 'en', 17828), +(53700, 'Rautakorko: Vallankumousromaani', 'London, Jack', '2008-03-16', 25, 'https://www.gutenberg.org/ebooks/24848', 'fi', 1238), +(53701, 'Gorillas & Chimpanzees', 'Garner, R. L. (Richard Lynch)', '2013-11-16', 22, 'https://www.gutenberg.org/ebooks/44191', 'en', 17829), +(53702, 'The Builders', 'Glasgow, Ellen Anderson Gholson', '2011-09-17', 14, 'https://www.gutenberg.org/ebooks/37463', 'en', 1994), +(53703, '20.000 Mijlen onder Zee: Westelijk Halfrond', 'Verne, Jules', '2004-03-01', 77, 'https://www.gutenberg.org/ebooks/11393', 'nl', 737), +(53704, 'Hamlet: Drama en cinco actos', 'Shakespeare, William', '2018-01-28', 64, 'https://www.gutenberg.org/ebooks/56454', 'es', 5264), +(53705, 'Diary of Battery A, First Regiment Rhode Island Light Artillery', 'Reichardt, Theodore', '2010-04-24', 16, 'https://www.gutenberg.org/ebooks/32111', 'en', 17830), +(53706, 'A Century in the Comptroller\'s Office, State of New York, 1797 to 1897', 'Roberts, James A. (James Arthur)', '2012-08-18', 4, 'https://www.gutenberg.org/ebooks/40531', 'en', 17831), +(53707, 'Cratylus', 'Plato', '1999-01-01', 112, 'https://www.gutenberg.org/ebooks/1616', 'en', 4117), +(53708, 'La Nigra Galero', 'Raabe, Wilhelm', '2007-12-29', 9, 'https://www.gutenberg.org/ebooks/24074', 'eo', 1167), +(53709, 'Modern Cotton Spinning Machinery, Its Principles and Construction', 'Nasmith, Joseph', '2018-07-26', 12, 'https://www.gutenberg.org/ebooks/57586', 'en', 17832), +(53710, 'Plaque No. 2\r\nExp. No. 5-6-7-8, Recorder #20', 'Losey\'s Orchestra', '2003-11-01', 3, 'https://www.gutenberg.org/ebooks/10241', 'en', 10794), +(53711, 'Yksinkö?', 'Malmberg, Aino', '2005-03-29', 16, 'https://www.gutenberg.org/ebooks/15501', 'fi', 61), +(53712, 'The Golden Dream: Adventures in the Far West', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 43, 'https://www.gutenberg.org/ebooks/21734', 'en', 5169), +(53713, 'Diary of Samuel Pepys — Volume 35: May/June 1665', 'Pepys, Samuel', '2004-11-30', 31, 'https://www.gutenberg.org/ebooks/4156', 'en', 478), +(53714, 'Concerning Lafcadio Hearn; With a Bibliography by Laura Stedman', 'Gould, George M. (George Milbrey)', '2011-07-19', 15, 'https://www.gutenberg.org/ebooks/36783', 'en', 16679), +(53715, 'Sota ja rauha I\nHistoriallinen romaani', 'Tolstoy, Leo, graf', '2014-03-31', 19, 'https://www.gutenberg.org/ebooks/45271', 'fi', 5734), +(53716, 'Life and Letters of Thomas Henry Huxley — Volume 1', 'Huxley, Thomas Henry', '2004-02-01', 47, 'https://www.gutenberg.org/ebooks/5084', 'en', 16643), +(53717, 'The New Paul and Virginia; Or, Positivism on an Island', 'Mallock, W. H. (William Hurrell)', '2011-10-07', 11, 'https://www.gutenberg.org/ebooks/37651', 'en', 17833), +(53718, 'America: A history', 'Mackenzie, Robert', '2016-10-18', 13, 'https://www.gutenberg.org/ebooks/53314', 'en', 4062), +(53719, 'Northern Diamonds', 'Pollock, Frank Lillie', '2010-10-08', 8, 'https://www.gutenberg.org/ebooks/32323', 'en', 5027), +(53720, 'Rukousnauha: Romaani', 'Barclay, Florence L. (Florence Louisa)', '2018-03-02', 6, 'https://www.gutenberg.org/ebooks/56666', 'fi', 7131), +(53721, 'Le Tour du Monde; Perse\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2008-05-08', 18, 'https://www.gutenberg.org/ebooks/25394', 'fr', 1182), +(53722, 'Greener Than You Think', 'Moore, Ward', '2008-01-11', 49, 'https://www.gutenberg.org/ebooks/24246', 'en', 26), +(53723, 'The Century Vocabulary Builder', 'Bachelor, Joseph M. (Joseph Morris)', '2003-11-01', 52, 'https://www.gutenberg.org/ebooks/10073', 'en', 17834), +(53724, 'The Life of Daniel De Foe', 'Chalmers, George', '2012-09-07', 5, 'https://www.gutenberg.org/ebooks/40703', 'en', 2896), +(53725, 'A Terrible Tomboy', 'Brazil, Angela', '2012-01-20', 36, 'https://www.gutenberg.org/ebooks/38619', 'en', 17835), +(53726, 'Castle Rackrent', 'Edgeworth, Maria', '2006-02-19', 128, 'https://www.gutenberg.org/ebooks/1424', 'en', 7131), +(53727, 'They Also Serve', 'Westlake, Donald E.', '2009-11-14', 41, 'https://www.gutenberg.org/ebooks/30474', 'en', 26), +(53728, 'With Trapper Jim in the North Woods', 'Leslie, Lawrence J.', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9649', 'en', 6842), +(53729, 'Walking Shadows: Sea Tales and Others', 'Noyes, Alfred', '2013-07-10', 32, 'https://www.gutenberg.org/ebooks/43186', 'en', 252), +(53730, 'The American Missionary — Volume 33, No. 12, December 1879', 'Various', '2017-02-09', 2, 'https://www.gutenberg.org/ebooks/54131', 'en', 562), +(53731, 'À travers l\'hémisphère sud, ou Mon second voyage autour du monde\nTome 2; Équateur, Panama, Antilles, Mexique, Îles Sandwich,\nNouvelle-Zélande, Tasmanie, Australie.', 'Michel, Ernest', '2008-09-02', 7, 'https://www.gutenberg.org/ebooks/26511', 'fr', 819), +(53732, 'Sonnet #116', 'Shakespeare, William', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12724', 'en', 54), +(53733, 'Vanhan pastorin muistelmia', 'Gummerus, K. J. (Kaarle Jaakko)', '2013-02-09', 7, 'https://www.gutenberg.org/ebooks/42054', 'fi', 456), +(53734, 'Their Silver Wedding Journey — Volume 3', 'Howells, William Dean', '2004-10-23', 24, 'https://www.gutenberg.org/ebooks/3373', 'en', 2035), +(53735, 'Chambers\'s Edinburgh Journal, No. 427\nVolume 17, New Series, March 6, 1852', 'Various', '2005-12-08', 36, 'https://www.gutenberg.org/ebooks/17256', 'en', 18), +(53736, 'Songs of Three Counties, and Other Poems', 'Hall, Radclyffe', '2015-12-02', 12, 'https://www.gutenberg.org/ebooks/50591', 'en', 1594), +(53737, 'The Lost Child', 'Coppée, François', '2007-10-17', 21, 'https://www.gutenberg.org/ebooks/23063', 'en', 7131), +(53738, 'Verses and Rhymes By the Way', 'Norah', '2004-10-01', 7, 'https://www.gutenberg.org/ebooks/6601', 'en', 1237), +(53739, 'Precious Memories\r\nSixteenth Book of the Faith Promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints', NULL, '2014-12-04', 15, 'https://www.gutenberg.org/ebooks/47526', 'en', 17836), +(53740, 'Abington Abbey: A Novel', 'Marshall, Archibald', '2011-01-29', 27, 'https://www.gutenberg.org/ebooks/35106', 'en', 5530), +(53741, 'A Thousand Ways to Please a Husband with Bettina\'s Best Recipes', 'Weaver, Louise Bennett', '2013-06-04', 333, 'https://www.gutenberg.org/ebooks/42868', 'en', 103), +(53742, 'They Twinkled Like Jewels', 'Farmer, Philip José', '2009-08-01', 69, 'https://www.gutenberg.org/ebooks/29559', 'en', 179), +(53743, 'Claudian, volume 1 (of 2)\nWith an English translation by Maurice Platnauer', 'Claudianus, Claudius', '2016-03-14', 33, 'https://www.gutenberg.org/ebooks/51443', 'la', 17837), +(53744, 'O Mandarim', 'Queirós, Eça de', '2005-07-29', 29, 'https://www.gutenberg.org/ebooks/16384', 'pt', 3856), +(53745, 'The Black Poodle, and Other Tales', 'Anstey, F.', '2011-08-28', 41, 'https://www.gutenberg.org/ebooks/37235', 'en', 61), +(53746, 'The Working of Steel\nAnnealing, Heat Treating and Hardening of Carbon and Alloy Steel', 'Juthe, K. A. (Kristian A.)', '2007-01-04', 31, 'https://www.gutenberg.org/ebooks/20282', 'en', 17838), +(53747, 'Hymnological Studies', 'Lundquist, Matthew Nathanael', '2016-12-20', 7, 'https://www.gutenberg.org/ebooks/53770', 'en', 17839), +(53748, 'Letters and Discussions on the Formation of Colored Regiments,\r\nand the Duty of the Colored People in Regard to the Great Slaveholders\' Rebellion, in the United States of America', 'Green, Alfred M.', '2018-12-02', 9, 'https://www.gutenberg.org/ebooks/58398', 'en', 17840), +(53749, 'Welsh Lyrics of the Nineteenth Century', NULL, '2005-02-25', 12, 'https://www.gutenberg.org/ebooks/15165', 'en', 1208), +(53750, 'Roister Doister\r\nWritten, probably also represented, before 1553. Carefully edited from the unique copy, now at Eton College', 'Udall, Nicholas', '2007-05-07', 50, 'https://www.gutenberg.org/ebooks/21350', 'en', 5266), +(53751, 'Tom Swift and His Photo Telephone or the Picture That Saved a Fortune', 'Appleton, Victor', '2003-10-01', 63, 'https://www.gutenberg.org/ebooks/4532', 'en', 3242), +(53752, 'Magyarország története. Az ifjuság használatára', 'Peregriny, Elek', '2014-05-08', 17, 'https://www.gutenberg.org/ebooks/45615', 'hu', 6259), +(53753, 'The Pianolist: A Guide for Pianola Players', 'Kobbé, Gustav', '2008-02-16', 39, 'https://www.gutenberg.org/ebooks/24622', 'en', 6664), +(53754, 'Love, Life & Work\r\nBeing a Book of Opinions Reasonably Good-Natured Concerning How to Attain the Highest Happiness for One\'s Self with the Least Possible Harm to Others', 'Hubbard, Elbert', '2003-12-01', 53, 'https://www.gutenberg.org/ebooks/10417', 'en', 740), +(53755, 'The Decoration of Houses', 'Wharton, Edith', '2012-07-29', 73, 'https://www.gutenberg.org/ebooks/40367', 'en', 4442), +(53756, 'X Y Z: A Detective Story', 'Green, Anna Katharine', '2010-09-10', 25, 'https://www.gutenberg.org/ebooks/33695', 'en', 128), +(53757, 'The Three Taverns: A Book of Poems', 'Robinson, Edwin Arlington', '1997-09-01', 29, 'https://www.gutenberg.org/ebooks/1040', 'en', 1800), +(53758, 'Dagdrömmar\nEn man utan humor I', 'Hellström, Gustaf', '2005-05-31', 9, 'https://www.gutenberg.org/ebooks/15959', 'sv', 61), +(53759, 'Travels in Tartary, Thibet, and China during the years 1844-5-6. Volume 1', 'Huc, Evariste Régis', '2010-06-08', 66, 'https://www.gutenberg.org/ebooks/32747', 'en', 3800), +(53760, '拾遺記', 'Xiao, Qi', '2017-12-18', 17, 'https://www.gutenberg.org/ebooks/56202', 'zh', 1682), +(53761, 'A Successful Shadow; Or, A Detective\'s Successful Quest', 'Old Sleuth', '2008-08-02', 15, 'https://www.gutenberg.org/ebooks/26175', 'en', 128), +(53762, 'The Story of the Herschels, a Family of Astronomers\r\nSir William Herschel, Sir John Herschel, Caroline Herschel', 'Anonymous', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/12340', 'en', 15961), +(53763, 'Sämmtliche Werke 5: Dramatische Werke', 'Gogol, Nikolai Vasilevich', '2017-09-05', 6, 'https://www.gutenberg.org/ebooks/55487', 'de', 271), +(53764, 'Liette', 'Dourliac, Arthur', '2009-09-03', 18, 'https://www.gutenberg.org/ebooks/29901', 'es', 61), +(53765, 'Colonel Washington', 'Hulbert, Archer Butler', '2013-03-29', 9, 'https://www.gutenberg.org/ebooks/42430', 'en', 14872), +(53766, 'The Parson\'s Daughter of Oxney Colne', 'Trollope, Anthony', '2003-02-01', 32, 'https://www.gutenberg.org/ebooks/3717', 'en', 1279), +(53767, 'Trees Are Where You Find Them', 'Savage, Arthur Dekker', '2009-09-17', 22, 'https://www.gutenberg.org/ebooks/30010', 'en', 179), +(53768, 'Kreuz und Quer, Erster Band\nNeue gesammelte Erzählungen', 'Gerstäcker, Friedrich', '2017-04-16', 7, 'https://www.gutenberg.org/ebooks/54555', 'de', 138), +(53769, 'The Romantic', 'Sinclair, May', '2004-08-25', 26, 'https://www.gutenberg.org/ebooks/13292', 'en', 579), +(53770, 'Lancashire Sketches\nThird Edition', 'Waugh, Edwin', '2014-06-24', 19, 'https://www.gutenberg.org/ebooks/46090', 'en', 12277), +(53771, 'Vom Musikalisch-Schönen\nEin Beitrag zur Revision der Ästhetik der Tonkunst', 'Hanslick, Eduard', '2008-10-18', 41, 'https://www.gutenberg.org/ebooks/26949', 'de', 3582), +(53772, 'A Rational Theology, as Taught by the Church of Jesus Christ of Latter-Day Saints', 'Widtsoe, John Andreas', '2011-03-12', 30, 'https://www.gutenberg.org/ebooks/35562', 'en', 3575), +(53773, 'Jaywalker', 'Rocklynne, Ross', '2016-01-24', 27, 'https://www.gutenberg.org/ebooks/51027', 'en', 1463), +(53774, 'Compte de L\'Oeuvre de la Cathédrale de Chartres en 1415-1416', 'Merlet, Luc. (Lucien)', '2006-01-29', 13, 'https://www.gutenberg.org/ebooks/17632', 'fr', 17841), +(53775, 'Up The Slot: Marines in the Central Solomons', 'Melson, Charles D.', '2015-05-12', 46, 'https://www.gutenberg.org/ebooks/48936', 'en', 4861), +(53776, 'The Tiny Picture Book', 'Anonymous', '2007-11-08', 33, 'https://www.gutenberg.org/ebooks/23407', 'en', 1801), +(53777, 'The Weavers: a tale of England and Egypt of fifty years ago - Volume 5', 'Parker, Gilbert', '2004-08-01', 9, 'https://www.gutenberg.org/ebooks/6265', 'en', 9577), +(53778, 'Kriminal-Sonette', 'Hahn, Livingstone', '2014-10-18', 10, 'https://www.gutenberg.org/ebooks/47142', 'de', 8078), +(53779, 'The Steam Engine Explained and Illustrated (Seventh Edition)\r\nWith an Account of Its Invention and Progressive Improvement, and Its Application to Navigation and Railways; Including Also a Memoir of Watt', 'Lardner, Dionysius', '2013-04-26', 47, 'https://www.gutenberg.org/ebooks/42602', 'en', 3548), +(53780, 'Music, and Other Poems', 'Van Dyke, Henry', '2002-11-01', 24, 'https://www.gutenberg.org/ebooks/3525', 'en', 178), +(53781, 'I marginalen', 'Homén, Olaf', '2008-08-18', 3, 'https://www.gutenberg.org/ebooks/26347', 'sv', 17842), +(53782, 'Alone in London', 'Stretton, Hesba', '2004-04-01', 46, 'https://www.gutenberg.org/ebooks/12172', 'en', 470), +(53783, 'The House of the Seven Gables', 'Hawthorne, Nathaniel', '1993-08-01', 592, 'https://www.gutenberg.org/ebooks/77', 'en', 98), +(53784, 'The Hard-Scrabble of Elm Island', 'Kellogg, Elijah', '2017-05-23', 5, 'https://www.gutenberg.org/ebooks/54767', 'en', 1001), +(53785, 'Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910\r\nFederal Investigations of Mine Accidents, Structural Materials and Fuels. Paper No. 1171', 'Wilson, Herbert M. (Herbert Michael)', '2006-05-25', 27, 'https://www.gutenberg.org/ebooks/18448', 'en', 4530), +(53786, 'Amparo (Memorias de un loco)', 'Fernández y González, Manuel', '2008-11-19', 15, 'https://www.gutenberg.org/ebooks/27295', 'es', 61), +(53787, 'The Strand Magazine, Vol. 05, Issue 27, March 1893\r\nAn Illustrated Monthly', 'Various', '2009-10-09', 38, 'https://www.gutenberg.org/ebooks/30222', 'en', 2998), +(53788, 'The Command in the Battle of Bunker Hill\r\nWith a Reply to \"Remarks on Frothingham\'s History of the Battle, by S. Swett\"', 'Frothingham, Richard', '2015-02-22', 7, 'https://www.gutenberg.org/ebooks/48338', 'en', 17843), +(53789, 'Two diaries From Middle St. John\'s, Berkeley, South Carolina, February-May, 1865\r\nJournals kept by Miss Susan R. Jervey and Miss Charlotte St. J. Ravenel, at Northampton and Pooshee plantations, and reminiscences of Mrs. (Waring) Henagan; with two contemporary reports from federal officials.', 'Henagan, Mary Rhodes Waring', '2016-02-14', 10, 'https://www.gutenberg.org/ebooks/51215', 'en', 83), +(53790, 'Othello', 'Shakespeare, William', '2004-12-01', 28, 'https://www.gutenberg.org/ebooks/7185', 'de', 17844), +(53791, 'History of Roman Literature from its Earliest Period to the Augustan Age. Vol. I', 'Dunlop, John Colin', '2011-04-01', 27, 'https://www.gutenberg.org/ebooks/35750', 'en', 4983), +(53792, 'Fran', 'Ellis, J. Breckenridge (John Breckenridge)', '2004-07-01', 9, 'https://www.gutenberg.org/ebooks/6057', 'en', 61), +(53793, 'The Secret Pact', 'Wirt, Mildred A. (Mildred Augustine)', '2010-12-18', 44, 'https://www.gutenberg.org/ebooks/34682', 'en', 454), +(53794, 'Punch, or the London Charivari, Vol. 109, October 12, 1895', 'Various', '2014-11-16', 10, 'https://www.gutenberg.org/ebooks/47370', 'en', 134), +(53795, 'The Wright\'s Chaste Wife\nA Merry Tale (about 1462)', 'Adam, of Cobsam', '2005-12-26', 47, 'https://www.gutenberg.org/ebooks/17400', 'enm', 4610), +(53796, 'Lives of the Poets, Volume 1', 'Johnson, Samuel', '2006-02-01', 44, 'https://www.gutenberg.org/ebooks/9823', 'en', 7153), +(53797, 'Wampum\r\nA Paper Presented to the Numismatic and Antiquarian Society of Philadelphia', 'Woodward, Ashbel', '2007-11-26', 19, 'https://www.gutenberg.org/ebooks/23635', 'en', 17845), +(53798, 'The Mating of the Moons', 'Walton, Bryce', '2012-10-07', 30, 'https://www.gutenberg.org/ebooks/40969', 'en', 613), +(53799, 'The Gentle Reader', 'Crothers, Samuel McChord', '2012-02-14', 109, 'https://www.gutenberg.org/ebooks/38873', 'en', 20), +(53800, 'L\'Iliade', 'Homer', '2004-12-07', 106, 'https://www.gutenberg.org/ebooks/14285', 'fr', 17846), +(53801, 'On the Construction of a Silvered Glass Telescope\r\nFifteen and a half inches in aperture, and its use in celestial photography', 'Draper, Henry', '2016-11-17', 26, 'https://www.gutenberg.org/ebooks/53542', 'en', 17847), +(53802, 'Appropriate Clothes for the High School Girl', 'Alexander, Virginia M.', '2011-08-08', 19, 'https://www.gutenberg.org/ebooks/37007', 'en', 1520), +(53803, 'The Unforseen Return', 'Regnard, Jean François', '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/4700', 'en', 17848), +(53804, 'George Buchanan', 'John Campbell Smith', '2014-04-17', 18, 'https://www.gutenberg.org/ebooks/45427', 'en', 17849), +(53805, 'Privatgedichte', 'Hardekopf, Ferdinand', '2016-07-03', 11, 'https://www.gutenberg.org/ebooks/52490', 'de', 4162), +(53806, 'The Notorious Mrs. Ebbsmith', 'Pinero, Arthur Wing', '2005-03-14', 20, 'https://www.gutenberg.org/ebooks/15357', 'en', 537), +(53807, 'Streets, and Other Verses', 'Goldring, Douglas', '2019-03-17', 5, 'https://www.gutenberg.org/ebooks/59078', 'en', 13967), +(53808, 'Ten Days in a Mad-house', 'Bly, Nellie', '2007-04-04', 55, 'https://www.gutenberg.org/ebooks/21162', 'en', 17850), +(53809, 'Akbar: An Eastern Romance', 'Limburg Brouwer, P. A. S. van (Petrus Abraham Samuel)', '2012-07-07', 18, 'https://www.gutenberg.org/ebooks/40155', 'en', 16463), +(53810, 'The story of Coventry', 'Harris, Mary Dormer', '2019-03-02', 9, 'https://www.gutenberg.org/ebooks/58996', 'en', 14793), +(53811, 'The Riddle of the Rhine: Chemical Strategy in Peace and War', 'Lefebure, Victor', '1998-04-01', 35, 'https://www.gutenberg.org/ebooks/1272', 'en', 17851), +(53812, 'Hollow Tree Nights and Days', 'Paine, Albert Bigelow', '2008-01-23', 27, 'https://www.gutenberg.org/ebooks/24410', 'en', 10873), +(53813, 'A Concise Dictionary of Middle English from A.D. 1150 to 1580', 'Mayhew, A. L. (Anthony Lawson)', '2004-01-01', 223, 'https://www.gutenberg.org/ebooks/10625', 'en', 17852), +(53814, 'Koneiden ääressä: Romaani', 'Tervas, Mikko', '2017-11-22', 5, 'https://www.gutenberg.org/ebooks/56030', 'fi', 17853), +(53815, 'The Science of Getting Rich', 'Wattles, W. D.', '2019-06-30', 640, 'https://www.gutenberg.org/ebooks/59844', 'en', 43), +(53816, 'The Head Girl at the Gables', 'Brazil, Angela', '2010-05-28', 28, 'https://www.gutenberg.org/ebooks/32575', 'en', 1877), +(53817, 'Histoire de la Littérature Anglaise (Volume 2 de 5)', 'Taine, Hippolyte', '2012-10-17', 12, 'https://www.gutenberg.org/ebooks/41087', 'fr', 1694), +(53818, 'Billie Bradley at Three Towers Hall; Or, Leading a Needed Rebellion', 'Wheeler, Janet D.', '2007-12-18', 15, 'https://www.gutenberg.org/ebooks/23894', 'en', 1877), +(53819, 'An Essay Upon Projects', 'Defoe, Daniel', '2006-01-01', 2, 'https://www.gutenberg.org/ebooks/9682', 'en', 9592), +(53820, 'Mollie Charane, and Other Ballads', NULL, '2008-12-04', 7, 'https://www.gutenberg.org/ebooks/27408', 'en', 4390), +(53821, 'The Value of Money', 'Anderson, Benjamin M. (Benjamin McAlester)', '2011-01-02', 40, 'https://www.gutenberg.org/ebooks/34823', 'en', 12806), +(53822, 'Bunner Sisters', 'Wharton, Edith', '2008-07-02', 123, 'https://www.gutenberg.org/ebooks/311', 'en', 11659), +(53823, 'The Lion of Petra', 'Mundy, Talbot', '2006-09-17', 35, 'https://www.gutenberg.org/ebooks/19307', 'en', 7280), +(53824, 'L\'Holocauste: Roman Contemporain', 'La Jeunesse, Ernest', '2017-07-02', 1, 'https://www.gutenberg.org/ebooks/55028', 'fr', 298), +(53825, 'Warlord of Mars', 'Burroughs, Edgar Rice', '2005-08-01', 8, 'https://www.gutenberg.org/ebooks/8750', 'en', 964), +(53826, 'The Indiscreet Letter', 'Abbott, Eleanor Hallowell', '2007-10-01', 183, 'https://www.gutenberg.org/ebooks/22946', 'en', 17650), +(53827, 'The Great Victory—Its Cost and Its Value\r\nAddress delivered at Chestnut Hill, Pennsylvania, July 4th, 1865', 'Thayer, M. Russell (Martin Russell)', '2015-07-18', 11, 'https://www.gutenberg.org/ebooks/49477', 'en', 1326), +(53828, 'One Man\'s View', 'Merrick, Leonard', '2013-10-18', 55, 'https://www.gutenberg.org/ebooks/43971', 'en', 10796), +(53829, 'The Dark Star', 'Chambers, Robert W. (Robert William)', '2009-03-29', 70, 'https://www.gutenberg.org/ebooks/28440', 'en', 48), +(53830, 'The Comic Adventures of Old Mother Hubbard, and Her Dog\r\nIn which is shewn the wonderful powers that good old lady possessed in the education of her favourite animal', 'Martin, Sarah Catherine', '2017-10-25', 11, 'https://www.gutenberg.org/ebooks/55814', 'en', 17854), +(53831, 'The Last of the Barons — Volume 04', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 6, 'https://www.gutenberg.org/ebooks/7718', 'en', 10517), +(53832, 'The Year\'s at the Spring: An Anthology of Recent Poetry', NULL, '2016-03-17', 14, 'https://www.gutenberg.org/ebooks/51488', 'en', 1594), +(53833, 'Pasáček Ali: Pověst z východu', 'Omelka, František', '2009-08-03', 20, 'https://www.gutenberg.org/ebooks/29592', 'cs', 4583), +(53834, 'A Popular History of France from the Earliest Times, Volume 6', 'Guizot, François', '2004-04-01', 43, 'https://www.gutenberg.org/ebooks/11956', 'en', 624), +(53835, 'Ruth Fielding Homeward Bound; Or, A Red Cross Worker\'s Ocean Perils', 'Emerson, Alice B.', '2011-07-16', 27, 'https://www.gutenberg.org/ebooks/36748', 'en', 1310), +(53836, 'A Publisher and His Friends\r\nMemoir and Correspondence of John Murray; with an Account of the Origin and Progress of the House, 1768-1843', 'Smiles, Samuel', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10884', 'en', 17855), +(53837, 'Jugend, Liebe und Leben\nKörperliche, seelische und sittliche Forderungen der Gegenwart', 'Peters, Emil', '2013-12-05', 8, 'https://www.gutenberg.org/ebooks/44368', 'de', 2378), +(53838, 'Index of the Project Gutenberg Works of Charles Darwin', 'Darwin, Charles', '2019-01-20', 9, 'https://www.gutenberg.org/ebooks/58737', 'en', 198), +(53839, 'Thrift', 'Smiles, Samuel', '2004-12-22', 106, 'https://www.gutenberg.org/ebooks/14418', 'en', 17856), +(53840, 'Encyclopaedia Britannica, 11th Edition, \"Isabnormal Lines\" to \"Italic\"\r\nVolume 14, Slice 8', 'Various', '2012-05-15', 20, 'https://www.gutenberg.org/ebooks/39700', 'en', 1081), +(53841, 'Farewell', 'Balzac, Honoré de', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/5873', 'en', 4), +(53842, 'Punch, or the London Charivari, Volume 108, February 9, 1895', 'Various', '2014-03-09', 18, 'https://www.gutenberg.org/ebooks/45088', 'en', 134), +(53843, 'Fragments from France', 'Bairnsfather, Bruce', '2008-07-02', 179, 'https://www.gutenberg.org/ebooks/25951', 'en', 5749), +(53844, 'Air Service Boys Over the Rhine; Or, Fighting Above the Clouds', 'Beach, Charles Amory', '2010-10-03', 26, 'https://www.gutenberg.org/ebooks/33834', 'en', 6791), +(53845, 'Cecco d\'Ascoli: racconto storico del secolo XIV', 'Fanfani, Pietro', '2018-12-20', 12, 'https://www.gutenberg.org/ebooks/58505', 'it', 17857), +(53846, 'New and Original Theories of the Great Physical Forces', 'Rogers, Henry Raymond', '2008-03-20', 17, 'https://www.gutenberg.org/ebooks/24883', 'en', 1194), +(53847, 'The Atlantic Monthly, Volume 08, No. 48, October, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/11358', 'en', 1227), +(53848, 'Le Naturalisme', 'Pardo Bazán, Emilia, condesa de', '2012-11-21', 16, 'https://www.gutenberg.org/ebooks/41428', 'fr', 14002), +(53849, 'Canadian Melodies and Poems', 'Merkley, George E. (George Earle)', '2016-08-14', 5, 'https://www.gutenberg.org/ebooks/52803', 'en', 1237), +(53850, 'Curious Epitaphs', NULL, '2012-04-25', 26, 'https://www.gutenberg.org/ebooks/39532', 'en', 10211), +(53851, 'Landolin', 'Auerbach, Berthold', '2010-06-28', 16, 'https://www.gutenberg.org/ebooks/33008', 'en', 803), +(53852, 'Craft Gilds', 'Cunningham, W. (William)', '2014-02-19', 11, 'https://www.gutenberg.org/ebooks/44966', 'en', 2764), +(53853, 'At the Earth\'s Core', 'Burroughs, Edgar Rice', '1994-04-01', 246, 'https://www.gutenberg.org/ebooks/123', 'en', 323), +(53854, 'Ballads of Beauty', NULL, '2015-04-26', 14, 'https://www.gutenberg.org/ebooks/48797', 'en', 8), +(53855, 'Messer Marco Polo', 'Byrne, Donn', '2000-02-01', 23, 'https://www.gutenberg.org/ebooks/2058', 'en', 984), +(53856, 'The Best Ghost Stories', NULL, '2006-03-01', 151, 'https://www.gutenberg.org/ebooks/17893', 'en', 531), +(53857, 'The Seaboard Parish, Complete', 'MacDonald, George', '2005-07-01', 63, 'https://www.gutenberg.org/ebooks/8562', 'en', 942), +(53858, 'The Hidden Words of Bahá\'u\'lláh', 'Bahá\'u\'lláh', '2005-10-21', 48, 'https://www.gutenberg.org/ebooks/16941', 'en', 7255), +(53859, 'The Mentor: Belgium the Brave, Vol. 8, Num. 3, Serial No. 199, March 15, 1920', 'Wood, Ruth Kedzie', '2015-08-07', 1, 'https://www.gutenberg.org/ebooks/49645', 'en', 2427), +(53860, 'The Southerner: A Romance of the Real Lincoln', 'Dixon, Thomas, Jr.', '2006-08-28', 33, 'https://www.gutenberg.org/ebooks/19135', 'en', 1457), +(53861, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 9. September, 1880', 'Various', '2009-05-03', 20, 'https://www.gutenberg.org/ebooks/28672', 'en', 1829), +(53862, 'The Trumpet-Major', 'Hardy, Thomas', '2001-10-01', 66, 'https://www.gutenberg.org/ebooks/2864', 'en', 8003), +(53863, 'My Memoirs, Vol. V, 1831 to 1832', 'Dumas, Alexandre', '2015-12-25', 14, 'https://www.gutenberg.org/ebooks/50768', 'en', 9464), +(53864, 'Alexander\'s Bridge', 'Cather, Willa', '2007-08-01', 24, 'https://www.gutenberg.org/ebooks/22348', 'en', 1061), +(53865, 'Good Cheer Stories Every Child Should Know', NULL, '2006-11-23', 73, 'https://www.gutenberg.org/ebooks/19909', 'en', 14372), +(53866, 'El doncel de don Enrique el doliente, Tomo III (de 4)\nHistoria caballeresca del siglo quince', 'Larra, Mariano José de', '2016-11-25', 16, 'https://www.gutenberg.org/ebooks/53589', 'es', 2826), +(53867, 'Dwight L. Moody: Hänen elämänsä ja vaikutuksensa', 'Northrop, Henry Davenport', '2018-10-25', 2, 'https://www.gutenberg.org/ebooks/58161', 'fi', 3292), +(53868, 'Die Ammen-Uhr: Aus des Knaben Wunderhorn', 'Arnim, Ludwig Achim, Freiherr von', '2018-09-16', 26, 'https://www.gutenberg.org/ebooks/57915', 'de', 2296), +(53869, 'Essays on Mankind and Political Arithmetic', 'Petty, William, Sir', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/5619', 'en', 17858), +(53870, 'Gold and Incense: A West Country Story', 'Pearse, Mark Guy', '2013-01-18', 7, 'https://www.gutenberg.org/ebooks/41870', 'en', 4744), +(53871, 'A Mere Chance: A Novel. Vol. 2', 'Cambridge, Ada', '2011-11-22', 7, 'https://www.gutenberg.org/ebooks/38084', 'en', 348), +(53872, 'India: What can it teach us?\nA Course of Lectures Delivered before the University Of Cambridge', 'Müller, F. Max (Friedrich Max)', '2007-03-18', 147, 'https://www.gutenberg.org/ebooks/20847', 'en', 13637), +(53873, 'Magyar titkok: Regény (3. kötet)', 'Nagy, Ignácz', '2018-05-10', 2, 'https://www.gutenberg.org/ebooks/57129', 'hu', 234), +(53874, 'The World\'s Greatest Books — Volume 15 — Science', NULL, '2008-05-17', 244, 'https://www.gutenberg.org/ebooks/25509', 'en', 814), +(53875, 'Antarctic Penguins: A Study of Their Social Habits', 'Levick, G. Murray (George Murray)', '2011-08-01', 28, 'https://www.gutenberg.org/ebooks/36922', 'en', 17859), +(53876, 'Philosophy and Religion\nSix Lectures Delivered at Cambridge', 'Rashdall, Hastings', '2007-07-04', 36, 'https://www.gutenberg.org/ebooks/21995', 'en', 2566), +(53877, 'La Vie en Famille: Comment Vivre à Deux?', 'Gausseron, Bernard Henri', '2012-03-15', 29, 'https://www.gutenberg.org/ebooks/39156', 'fr', 17860), +(53878, 'Captain Cook\'s Journal During His First Voyage Round the World\r\nMade in H. M. Bark \"Endeavour\", 1768-71', 'Cook, James', '2005-05-01', 206, 'https://www.gutenberg.org/ebooks/8106', 'en', 9240), +(53879, 'The Works of John Dryden, now first collected in eighteen volumes. Volume 09', 'Dryden, John', '2015-06-16', 16, 'https://www.gutenberg.org/ebooks/49221', 'en', 1201), +(53880, 'Alice in Wonderland, Retold in Words of One Syllable', 'Gorham, J. C., Mrs.', '2006-10-16', 121, 'https://www.gutenberg.org/ebooks/19551', 'en', 388), +(53881, 'Homer and His Age', 'Lang, Andrew', '2005-04-01', 38, 'https://www.gutenberg.org/ebooks/7972', 'en', 12183), +(53882, 'Fighting France', 'Lauzanne, Stéphane', '2006-06-01', 23, 'https://www.gutenberg.org/ebooks/18483', 'en', 6227), +(53883, 'Baron Trigault\'s Vengeance', 'Gaboriau, Emile', '2008-07-02', 87, 'https://www.gutenberg.org/ebooks/547', 'en', 61), +(53884, 'Prime Ministers and Some Others: A Book of Reminiscences', 'Russell, George William Erskine', '2005-08-12', 10, 'https://www.gutenberg.org/ebooks/16519', 'en', 2816), +(53885, 'Eugene Field, a Study in Heredity and Contradictions — Volume 2', 'Thompson, Slason', '2004-07-22', 8, 'https://www.gutenberg.org/ebooks/12985', 'en', 17861), +(53886, 'Mark Tidd in Business', 'Kelland, Clarence Budington', '2014-07-13', 22, 'https://www.gutenberg.org/ebooks/46269', 'en', 153), +(53887, 'La reine Margot - Tome II', 'Dumas, Alexandre', '2004-10-25', 38, 'https://www.gutenberg.org/ebooks/13857', 'fr', 9690), +(53888, 'The Right to Ignore the State', 'Spencer, Herbert', '2010-12-14', 42, 'https://www.gutenberg.org/ebooks/34649', 'en', 11063), +(53889, 'Respiration Calorimeters for Studying the Respiratory Exchange and Energy Transformations of Man', 'Benedict, Francis Gano', '2009-02-28', 9, 'https://www.gutenberg.org/ebooks/28216', 'en', 7236), +(53890, 'Overland Red: A Romance of the Moonstone Cañon Trail', 'Knibbs, Henry Herbert', '2006-11-11', 29, 'https://www.gutenberg.org/ebooks/19763', 'en', 315), +(53891, 'Novelle e ghiribizzi', 'Fanfani, Pietro', '2014-09-15', 8, 'https://www.gutenberg.org/ebooks/46867', 'it', 407), +(53892, 'The Bible, Douay-Rheims, Book 34: Joel\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8334', 'en', 5294), +(53893, 'Taxonomic Notes on Mexican Bats of the Genus Rhogeëssa', 'Hall, E. Raymond (Eugene Raymond)', '2010-01-28', 2, 'https://www.gutenberg.org/ebooks/31109', 'en', 2561), +(53894, 'La venganza de Don Mendo', 'Muñoz Seca, Pedro', '2015-05-21', 32, 'https://www.gutenberg.org/ebooks/49013', 'es', 2729), +(53895, 'The Giant of Bern and Orm Ungerswayne: A Ballad', 'Borrow, George', '2009-05-14', 16, 'https://www.gutenberg.org/ebooks/28818', 'en', 8), +(53896, 'Secresy; or, Ruin on the Rock', 'Fenwick, E. (Eliza)', '2013-08-21', 13, 'https://www.gutenberg.org/ebooks/43529', 'en', 3994), +(53897, 'How to Be a Detective', 'Brady, James', '2016-01-11', 17, 'https://www.gutenberg.org/ebooks/50902', 'en', 1833), +(53898, 'Ylösnousemus III', 'Tolstoy, Leo, graf', '2004-08-23', 26, 'https://www.gutenberg.org/ebooks/13259', 'fi', 17862), +(53899, 'When the Sleeper Wakes', 'Wells, H. G. (Herbert George)', '1997-01-01', 421, 'https://www.gutenberg.org/ebooks/775', 'en', 509), +(53900, 'With Haig on the Somme', 'Parry, D. H.', '2008-10-21', 17, 'https://www.gutenberg.org/ebooks/26982', 'en', 579), +(53901, 'Sumerian Liturgies and Psalms', 'Langdon, Stephen', '2010-04-10', 46, 'https://www.gutenberg.org/ebooks/31935', 'en', 6731), +(53902, 'Pictorial Photography in America 1922', 'Pictorial Photographers of America', '2009-02-08', 31, 'https://www.gutenberg.org/ebooks/28024', 'en', 17670), +(53903, 'The Young Alaskans in the Rockies', 'Hough, Emerson', '2009-01-20', 26, 'https://www.gutenberg.org/ebooks/27850', 'en', 13882), +(53904, 'Ein Geschlecht: Tragödie', 'Unruh, Fritz von', '2014-10-24', 7, 'https://www.gutenberg.org/ebooks/47189', 'de', 3978), +(53905, 'La vecchia casa', 'Neera', '2018-11-25', 14, 'https://www.gutenberg.org/ebooks/58353', 'it', 1544), +(53906, 'Legend Land, Vol. 2\r\nBeing a Collection of Some of the Old Tales Told in Those Western Parts of Britain Served by the Great Western Railway', 'Barham, G. Basil (George Basil)', '2007-01-02', 39, 'https://www.gutenberg.org/ebooks/20249', 'en', 17863), +(53907, 'Champlain', 'Hanotaux, Gabriel', '2016-07-29', 15, 'https://www.gutenberg.org/ebooks/52669', 'fr', 3998), +(53908, 'Index of the Project Gutenberg Works of Henry Wadsworth Longfellow', 'Longfellow, Henry Wadsworth', '2019-04-14', 8, 'https://www.gutenberg.org/ebooks/59281', 'en', 198), +(53909, 'Vaihdokas: Kuvaus vanhan kansan elämästä', 'Reijonen, Juho Heikki', '2005-01-30', 28, 'https://www.gutenberg.org/ebooks/14840', 'fi', 61), +(53910, 'Rich Relatives', 'MacKenzie, Compton', '2012-04-03', 19, 'https://www.gutenberg.org/ebooks/39364', 'en', 348), +(53911, 'Come Rack! Come Rope!', 'Benson, Robert Hugh', '2005-06-05', 70, 'https://www.gutenberg.org/ebooks/15992', 'en', 4434), +(53912, 'Index of the Project Gutenberg Works of Edna Ferber', 'Ferber, Edna', '2018-10-30', 25, 'https://www.gutenberg.org/ebooks/58195', 'en', 198), +(53913, 'Encyclopaedia Britannica, 11th Edition, \"Joints\" to \"Justinian I.\"\r\nVolume 15, Slice 5', 'Various', '2012-10-06', 17, 'https://www.gutenberg.org/ebooks/40956', 'en', 1081), +(53914, 'Stories of the Railroad', 'Hill, John A. (John Alexander)', '2011-08-11', 14, 'https://www.gutenberg.org/ebooks/37038', 'en', 179), +(53915, 'Deutschlands Beruf in der Gegenwart und Zukunft', 'Rohmer, Theodor', '2014-04-16', 17, 'https://www.gutenberg.org/ebooks/45418', 'de', 6075), +(53916, 'Naturalistic Photography for Students of the Art.', 'Emerson, P. H. (Peter Henry)', '2018-03-24', 23, 'https://www.gutenberg.org/ebooks/56833', 'en', 3737), +(53917, 'La situacion de Puerto-Rico\r\nLas falacias de los conservadores y los compromisos del partido radical', 'Anonymous', '2013-01-20', 21, 'https://www.gutenberg.org/ebooks/41884', 'es', 8980), +(53918, 'Fugitive Pieces', 'Byron, George Gordon Byron, Baron', '2005-03-15', 39, 'https://www.gutenberg.org/ebooks/15368', 'en', 8), +(53919, 'La scienza in cucina e l\'arte di mangiar bene\nManuale pratico per le famiglie', 'Artusi, Pellegrino', '2019-03-11', 207, 'https://www.gutenberg.org/ebooks/59047', 'it', 1881), +(53920, 'Bransford of Rainbow Range\nOriginally Published under the title of Bransford in Arcadia, or, The Little Eohippus', 'Rhodes, Eugene Manlove', '2010-08-25', 37, 'https://www.gutenberg.org/ebooks/33498', 'en', 61), +(53921, 'The Norwegian Fairy Book', 'Stroebe, Klara', '2011-11-20', 162, 'https://www.gutenberg.org/ebooks/38070', 'en', 14462), +(53922, 'The Poetical Works of Robert Bridges, Excluding the Eight Dramas', 'Bridges, Robert', '2011-10-20', 11, 'https://www.gutenberg.org/ebooks/37804', 'en', 54), +(53923, 'A Filha do Cabinda', 'Campos, Alfredo', '2007-06-29', 4, 'https://www.gutenberg.org/ebooks/21961', 'pt', 17864), +(53924, 'Plays by Anton Chekhov, Second Series', 'Chekhov, Anton Pavlovich', '2005-04-01', 440, 'https://www.gutenberg.org/ebooks/7986', 'en', 4249), +(53925, 'The Care of Books', 'Clark, John Willis', '2008-08-20', 23, 'https://www.gutenberg.org/ebooks/26378', 'en', 17865), +(53926, 'Anne Bradstreet and Her Time', 'Campbell, Helen', '2004-11-01', 22, 'https://www.gutenberg.org/ebooks/6854', 'en', 17866), +(53927, 'The 1992 CIA World Factbook', 'United States. Central Intelligence Agency', '1993-01-01', 115, 'https://www.gutenberg.org/ebooks/48', 'en', 10662), +(53928, 'Briefe aus Frankfurt und Paris 1848-1849 (2/2)', 'Raumer, Friedrich von', '2017-05-22', 10, 'https://www.gutenberg.org/ebooks/54758', 'de', 17313), +(53929, 'The Science of Human Nature\nA Psychology for Beginners', 'Pyle, William Henry', '2006-05-31', 181, 'https://www.gutenberg.org/ebooks/18477', 'en', 1947), +(53930, 'Genom Canada: Reseskildringar från 1904', 'Waldenström, P. (Paul)', '2015-02-19', 7, 'https://www.gutenberg.org/ebooks/48307', 'sv', 17867), +(53931, 'Those Extraordinary Twins', 'Twain, Mark', '2005-09-01', 6, 'https://www.gutenberg.org/ebooks/9020', 'en', 17868), +(53932, 'Laulajat: Jutelma', 'Schwartz, Marie Sophie', '2009-07-06', 9, 'https://www.gutenberg.org/ebooks/29330', 'fi', 61), +(53933, 'The Man in Lonely Land', 'Bosher, Kate Langley', '2004-07-20', 12, 'https://www.gutenberg.org/ebooks/12971', 'en', 48), +(53934, 'The Pony Rider Boys in Montana; Or, The Mystery of the Old Custer Trail', 'Patchin, Frank Gee', '2004-07-01', 26, 'https://www.gutenberg.org/ebooks/6068', 'en', 17059), +(53935, 'Dracula', 'Stoker, Bram', '2006-11-15', 105, 'https://www.gutenberg.org/ebooks/19797', 'en', 258), +(53936, 'How Paris Amuses Itself', 'Smith, F. Berkeley (Frank Berkeley)', '2014-09-18', 10, 'https://www.gutenberg.org/ebooks/46893', 'en', 17869), +(53937, 'World in a Bottle', 'Lang, Allen Kim', '2016-04-21', 29, 'https://www.gutenberg.org/ebooks/51824', 'en', 26), +(53938, 'The Getting of Wisdom', 'Richardson, Henry Handel', '2003-02-01', 41, 'https://www.gutenberg.org/ebooks/3728', 'en', 1080), +(53939, 'Théâtre de Hrotsvitha\r\nreligieuse allemande du dixième siècle, traduit pour la première fois en français avec le texte latin revu sur le manuscrit de Munich', 'Hrotsvitha', '2015-02-02', 16, 'https://www.gutenberg.org/ebooks/48135', 'fr', 17870), +(53940, 'Snow Flakes (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 31, 'https://www.gutenberg.org/ebooks/9212', 'en', 3175), +(53941, 'Technology and Books for All', 'Lebert, Marie', '2008-10-29', 13, 'https://www.gutenberg.org/ebooks/27098', 'en', 2599), +(53942, 'Das Labyrinth: Ein Lebenslauf aus dem 18. Jahrhundert', 'Seidel, Ina', '2015-01-11', 12, 'https://www.gutenberg.org/ebooks/47941', 'de', 17871), +(53943, 'Thackeray', 'Trollope, Anthony', '2006-06-21', 80, 'https://www.gutenberg.org/ebooks/18645', 'en', 5826), +(53944, 'Sinking of the Titanic and Great Sea Disasters', NULL, '1997-01-01', 99, 'https://www.gutenberg.org/ebooks/781', 'en', 1162), +(53945, 'The Poetical Works of Oliver Wendell Holmes — Volume 01: Earlier Poems (1830-1836)', 'Holmes, Oliver Wendell', '2004-09-30', 2, 'https://www.gutenberg.org/ebooks/7388', 'en', 178), +(53946, 'Ahab Israelin kuningas: Viisinäytöksinen murhenäytelmä', 'Noponen, Alpo', '2008-10-20', 9, 'https://www.gutenberg.org/ebooks/26976', 'fi', 17872), +(53947, 'Three Days in the Village, and Other Sketches.\r\nWritten from September 1909 to July 1910.', 'Tolstoy, Leo, graf', '2016-01-23', 27, 'https://www.gutenberg.org/ebooks/51018', 'en', 1377), +(53948, 'Nach Amerika! Ein Volksbuch. Fünfter Band', 'Gerstäcker, Friedrich', '2009-06-12', 12, 'https://www.gutenberg.org/ebooks/29102', 'de', 10912), +(53949, 'The Ashes of a God', 'Bain, F. W. (Francis William)', '2015-05-09', 17, 'https://www.gutenberg.org/ebooks/48909', 'en', 580), +(53950, 'A Ribband of Blue, and Other Bible Studies', 'Taylor, James Hudson', '2007-11-10', 21, 'https://www.gutenberg.org/ebooks/23438', 'en', 5113), +(53951, 'Notes and Queries, Number 234, April 22, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-12-31', 19, 'https://www.gutenberg.org/ebooks/30813', 'en', 105), +(53952, 'Uit Marokko\r\nDe Aarde en haar Volken, 1906', 'Genthe, Siegfried', '2004-11-18', 20, 'https://www.gutenberg.org/ebooks/14088', 'nl', 6762), +(53953, 'Vera, the Medium', 'Davis, Richard Harding', '1999-08-01', 16, 'https://www.gutenberg.org/ebooks/1843', 'en', 17873), +(53954, 'Gemälde und ihre Meister', 'Reimann, Arnold', '2019-04-13', 12, 'https://www.gutenberg.org/ebooks/59275', 'de', 5927), +(53955, 'Die Aufgeregten', 'Goethe, Johann Wolfgang von', '2003-12-01', 51, 'https://www.gutenberg.org/ebooks/10428', 'de', 9080), +(53956, 'Voyage en Égypte et en Syrie - Tome 1', 'Volney, C.-F. (Constantin-François)', '2011-12-07', 14, 'https://www.gutenberg.org/ebooks/38242', 'fr', 17874), +(53957, 'Salta', 'Dávalos, Juan Carlos', '2012-07-28', 27, 'https://www.gutenberg.org/ebooks/40358', 'es', 17875), +(53958, 'A Voyage of Consolation\r\n(being in the nature of a sequel to the experiences of \'An American girl in London\')', 'Duncan, Sara Jeannette', '2005-06-01', 9, 'https://www.gutenberg.org/ebooks/15966', 'en', 533), +(53959, 'A Pushcart at the Curb', 'Dos Passos, John', '2010-06-11', 21, 'https://www.gutenberg.org/ebooks/32778', 'en', 8), +(53960, 'Der Hase: Eine Erzählung', 'Vischer, Melchior', '2012-04-06', 6, 'https://www.gutenberg.org/ebooks/39390', 'de', 61), +(53961, 'The Young Man\'s Guide', 'Alcott, William A. (William Andrus)', '2007-12-14', 90, 'https://www.gutenberg.org/ebooks/23860', 'en', 9851), +(53962, 'Costume: Fanciful, Historical and Theatrical', 'Aria, Mrs. (Eliza Davis)', '2015-03-22', 17, 'https://www.gutenberg.org/ebooks/48551', 'en', 17876), +(53963, 'Silas Marner', 'Eliot, George', '2006-01-01', 6, 'https://www.gutenberg.org/ebooks/9676', 'en', 45), +(53964, 'De aardbeving van San Francisco\r\nDe Aarde en haar Volken, 1907', 'Vries, Hugo de', '2006-04-21', 20, 'https://www.gutenberg.org/ebooks/18221', 'nl', 11678), +(53965, 'Cosas nuevas y viejas (apuntes sevillanos)', 'Chaves Rey, Manuel', '2011-04-19', 14, 'https://www.gutenberg.org/ebooks/35905', 'es', 17877), +(53966, 'To Remember Charlie By', 'Aycock, Roger D.', '2010-03-11', 76, 'https://www.gutenberg.org/ebooks/31599', 'en', 10770), +(53967, 'The Provinces of the Roman Empire, from Caesar to Diocletian. v. 2', 'Mommsen, Theodor', '2015-07-18', 38, 'https://www.gutenberg.org/ebooks/49483', 'en', 7245), +(53968, 'Domitia', 'Baring-Gould, S. (Sabine)', '2013-10-20', 34, 'https://www.gutenberg.org/ebooks/43985', 'en', 4407), +(53969, 'Weather and Folk Lore of Peterborough and District', 'Dack, Charles', '2005-12-09', 31, 'https://www.gutenberg.org/ebooks/17269', 'en', 17878), +(53970, 'President Heber C. Kimball\'s Journal\r\nSeventh Book of the Faith-Promoting Series. Designed for the Instruction and Encouragement of Young Latter-day Saints', 'Kimball, Heber C. (Heber Chase)', '2014-12-03', 25, 'https://www.gutenberg.org/ebooks/47519', 'en', 17879), +(53971, 'Italian Backgrounds', 'Wharton, Edith', '2017-06-19', 92, 'https://www.gutenberg.org/ebooks/54932', 'en', 1896), +(53972, 'Manual for Noncommissioned Officers and Privates of Cavalry of the Army\r\nof the United States 1917. To be also used by Engineer Companies (Mounted) for Cavalry Instruction and Training', 'United States. War Department', '2011-02-01', 28, 'https://www.gutenberg.org/ebooks/35139', 'en', 13512), +(53973, 'Journals of Dorothy Wordsworth, Vol. 2 (of 2)', 'Wordsworth, Dorothy', '2013-06-02', 23, 'https://www.gutenberg.org/ebooks/42857', 'en', 16116), +(53974, 'The Centurion\'s Story', 'Burrell, David James', '2009-08-01', 18, 'https://www.gutenberg.org/ebooks/29566', 'en', 10287), +(53975, 'The Journal of Geology, January-February 1893\nA Semi-Quarterly Magazine of Geology and Related Sciences', 'Various', '2019-05-26', 14, 'https://www.gutenberg.org/ebooks/59611', 'en', 11610), +(53976, 'Diary of Samuel Pepys — Volume 47: November 1666', 'Pepys, Samuel', '2004-12-01', 11, 'https://www.gutenberg.org/ebooks/4169', 'en', 1231), +(53977, 'Are You a Bromide?\r\nThe Sulphitic Theory Expounded and Exemplified According to the Most Recent Researches into the Psychology of Boredom, Including Many Well-Known Bromidioms Now in Use', 'Burgess, Gelett', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/10870', 'en', 190), +(53978, 'Leah Mordecai: A Novel', 'Abbott, Belle K. (Belle Kendrick)', '2004-01-01', 34, 'https://www.gutenberg.org/ebooks/4955', 'en', 61), +(53979, 'Idle Hours in a Library', 'Hudson, William Henry', '2018-02-28', 20, 'https://www.gutenberg.org/ebooks/56659', 'en', 1694), +(53980, 'The Labor Divide', 'Vaknin, Samuel', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5887', 'en', 17880), +(53981, 'Valdemarsborg\'in sukukartano', 'Onkel Adam', '2008-01-14', 7, 'https://www.gutenberg.org/ebooks/24279', 'fi', 2168), +(53982, 'Heimatlos: Two stories for children, and for those who love children', 'Spyri, Johanna', '2012-01-20', 35, 'https://www.gutenberg.org/ebooks/38626', 'en', 3427), +(53983, 'The Blue Envelope', 'Snell, Roy J. (Roy Judson)', '2007-05-20', 20, 'https://www.gutenberg.org/ebooks/21539', 'en', 62), +(53984, 'Into the Unknown: A Romance of South Africa', 'Fletcher, Lawrence', '2010-06-20', 7, 'https://www.gutenberg.org/ebooks/32912', 'en', 323), +(53985, 'Famous Fighters of the Fleet\nGlimpses through the Cannon Smoke in the Days of the Old Navy', 'Fraser, Edward', '2019-05-03', 23, 'https://www.gutenberg.org/ebooks/59423', 'en', 8761), +(53986, 'Haapaniemen hanhenpoika: Huvi-näytelmä yhdessä näytöksessä', 'Lemoine, Gustave', '2016-09-22', 22, 'https://www.gutenberg.org/ebooks/53119', 'fi', 4568), +(53987, 'Tales and Novels of J. de La Fontaine — Volume 15', 'La Fontaine, Jean de', '2004-03-01', 6, 'https://www.gutenberg.org/ebooks/5289', 'en', 506), +(53988, 'Lucy Maud Montgomery Short Stories, 1907 to 1908', 'Montgomery, L. M. (Lucy Maud)', '2008-03-19', 133, 'https://www.gutenberg.org/ebooks/24877', 'en', 2261), +(53989, 'Historias de Reis e Principes', 'Pimentel, Alberto', '2014-05-30', 12, 'https://www.gutenberg.org/ebooks/45840', 'pt', 3856), +(53990, 'Cantoni il volontario', 'Garibaldi, Giuseppe', '2008-04-27', 16, 'https://www.gutenberg.org/ebooks/25199', 'it', 98), +(53991, 'Belgiens Volkscharakter, Belgiens Kunst', 'Bredt, Ernst Wilhelm', '2017-01-08', 11, 'https://www.gutenberg.org/ebooks/53925', 'de', 17881); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(53992, 'Ιστορία της Ελληνικής Επαναστάσεως, Τόμος Α', 'Trikoupes, Spyridon', '2011-12-26', 27, 'https://www.gutenberg.org/ebooks/38414', 'el', 4493), +(53993, '\"I Say No\"', 'Collins, Wilkie', '1999-02-01', 43, 'https://www.gutenberg.org/ebooks/1629', 'en', 3092), +(53994, 'Travelling Sketches', 'Trollope, Anthony', '2014-02-24', 26, 'https://www.gutenberg.org/ebooks/44992', 'en', 7877), +(53995, 'Floyd\'s Flowers; Or, Duty and Beauty for Colored Children\r\nBeing One Hundred Short Stories Gleaned from the Storehouse of Human Knowledge and Experience: Simple, Amusing, Elevating', 'Floyd, Silas Xavier', '2019-08-16', 693, 'https://www.gutenberg.org/ebooks/60109', 'en', 195), +(53996, 'Representation of Deities of the Maya Manuscripts', 'Schellhas, Paul', '2006-03-18', 90, 'https://www.gutenberg.org/ebooks/18013', 'en', 7519), +(53997, 'A Book of Giants: Tales of Very Tall Men of Myth, Legend, History, and Science.', 'Lanier, Henry Wysham', '2015-04-22', 102, 'https://www.gutenberg.org/ebooks/48763', 'en', 17882), +(53998, 'The Helpmate', 'Sinclair, May', '2006-02-26', 14, 'https://www.gutenberg.org/ebooks/17867', 'en', 705), +(53999, 'The Trouble with Telstar', 'Berryman, John', '2009-12-14', 143, 'https://www.gutenberg.org/ebooks/30679', 'en', 26), +(54000, 'Samantha among the Brethren — Volume 2', 'Holley, Marietta', '2004-08-10', 12, 'https://www.gutenberg.org/ebooks/9444', 'en', 11733), +(54001, 'The Wheel O\' Fortune', 'Tracy, Louis', '2005-07-01', 33, 'https://www.gutenberg.org/ebooks/8596', 'en', 61), +(54002, 'The People of the Black Circle', 'Howard, Robert E. (Robert Ervin)', '2013-03-04', 256, 'https://www.gutenberg.org/ebooks/42259', 'en', 4698), +(54003, 'Quiet Talks on Service', 'Gordon, S. D. (Samuel Dickey)', '2004-06-01', 40, 'https://www.gutenberg.org/ebooks/12529', 'en', 1130), +(54004, 'Wild Ducks: How to Rear and Shoot Them', 'Oates, W. Coape', '2009-05-04', 17, 'https://www.gutenberg.org/ebooks/28686', 'en', 17883), +(54005, 'Епопея на забравените', 'Vazov, Ivan Minchov', '2001-10-01', 26, 'https://www.gutenberg.org/ebooks/2890', 'bg', 8), +(54006, 'La Divina Comèdia: Paradìs\nEnglish title is Dante\'s Paradise', 'Dante Alighieri', '2005-07-03', 4, 'https://www.gutenberg.org/ebooks/16189', 'fur', 8), +(54007, 'The Confession of a Child of the Century — Complete', 'Musset, Alfred de', '2004-10-30', 35, 'https://www.gutenberg.org/ebooks/3942', 'en', 58), +(54008, 'Whittier-land\r\nA Handbook of North Essex, Containing Many Anecdotes of and Poems by John Greenleaf Whittier Never Before Collected.', 'Pickard, Samuel T. (Samuel Thomas)', '2009-08-22', 4, 'https://www.gutenberg.org/ebooks/29754', 'en', 17884), +(54009, 'The Nest of the Sparrowhawk: A Romance of the XVIIth Century', 'Orczy, Emmuska Orczy, Baroness', '2004-04-01', 38, 'https://www.gutenberg.org/ebooks/12175', 'en', 98), +(54010, 'Of Natural and Supernatural Things\r\nAlso of the first Tincture, Root, and Spirit of Metals and Minerals, how the same are Conceived, Generated, Brought forth, Changed, and Augmented.', 'Basilius Valentinus', '2008-08-17', 67, 'https://www.gutenberg.org/ebooks/26340', 'en', 11914), +(54011, 'Human Genome Project, Chromosome Number 22', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3522', 'en', 1841), +(54012, 'A Sermon Preached in Christ Church, Hartford, January 29th, 1865\r\nIn Commemoration of the Rt. Rev. Thomas Church Brownell, D. D., LL. D., Third Bishop of Connecticut, and Presiding Bishop of the Protestant Episcopal Church in the United States by his Assistant and Successor', 'Williams, J. (John)', '2013-04-27', 6, 'https://www.gutenberg.org/ebooks/42605', 'en', 17885), +(54013, 'Many Gods', 'Rice, Cale Young', '2009-10-10', 9, 'https://www.gutenberg.org/ebooks/30225', 'en', 8), +(54014, 'In Defense of Harriet Shelley', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9018', 'en', 17886), +(54015, '夢溪筆談', 'Shen, Kuo', '2008-11-18', 33, 'https://www.gutenberg.org/ebooks/27292', 'zh', 2525), +(54016, 'What Is Man? and Other Essays', 'Twain, Mark', '2004-09-13', 895, 'https://www.gutenberg.org/ebooks/70', 'en', 4637), +(54017, 'The Earth and its inhabitants, Volume 1: Europe.\r\nGreece, Turkey in Europe, Rumania, Servia, Montenegro, Italy, Spain, and Portugal.', 'Reclus, Elisée', '2017-05-22', 26, 'https://www.gutenberg.org/ebooks/54760', 'en', 2832), +(54018, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 01', 'Hakluyt, Richard', '2004-12-01', 69, 'https://www.gutenberg.org/ebooks/7182', 'en', 885), +(54019, 'Contes Français', NULL, '2004-07-19', 159, 'https://www.gutenberg.org/ebooks/12949', 'fr', 100), +(54020, 'Our Katie', 'Anonymous', '2011-04-02', 19, 'https://www.gutenberg.org/ebooks/35757', 'en', 9492), +(54021, 'The Flag, and Other Poems, 1918', 'Roddick, Amy Redpath', '2016-02-14', 3, 'https://www.gutenberg.org/ebooks/51212', 'en', 919), +(54022, 'Small World', 'Nolan, William F.', '2009-07-04', 30, 'https://www.gutenberg.org/ebooks/29308', 'en', 26), +(54023, '\'way Down In Lonesome Cove\r\n1895', 'Murfree, Mary Noailles', '2007-11-26', 13, 'https://www.gutenberg.org/ebooks/23632', 'en', 61), +(54024, 'A Journal of the Swedish Embassy in the Years 1653 and 1654, Vol II.', 'Whitlocke, Bulstrode', '2005-12-28', 16, 'https://www.gutenberg.org/ebooks/17407', 'en', 17887), +(54025, 'Observations Géologiques sur les Îles Volcaniques Explorées par l\'Expédition du \"Beagle\"\r\nEt Notes sur la Géologie de l\'Australie et du Cap de Bonne-Espérance', 'Darwin, Charles', '2006-02-01', 23, 'https://www.gutenberg.org/ebooks/9824', 'fr', 8149), +(54026, 'The Strand Magazine, Vol. 07, Issue 42, June, 1894\r\nAn Illustrated Monthly', 'Various', '2014-11-17', 15, 'https://www.gutenberg.org/ebooks/47377', 'en', 4041), +(54027, 'The Roots of the Mountains\r\nWherein Is Told Somewhat of the Lives of the Men of Burgdale, Their Friends, Their Neighbours, Their Foemen, and Their Fellows in Arms', 'Morris, William', '2004-07-01', 99, 'https://www.gutenberg.org/ebooks/6050', 'en', 580), +(54028, 'Vestigia. Vol. I.', 'Fleming, George', '2011-02-03', 14, 'https://www.gutenberg.org/ebooks/34685', 'en', 1028), +(54029, 'The Proper Limits of the Government\'s Interference with the Affairs of the East-India Company\r\nAttempted to be Assigned with some few Reflections Extorted by, and on, the Distracted State of the Times', 'Stair, John Dalrymple, Earl of', '2011-08-07', 7, 'https://www.gutenberg.org/ebooks/37000', 'en', 2721), +(54030, 'A Merry Dialogue Declaringe the Properties of Shrowde Shrews and Honest Wives', 'Erasmus, Desiderius', '2004-12-07', 26, 'https://www.gutenberg.org/ebooks/14282', 'en', 3806), +(54031, 'Canadian Battlefields, and Other Poems', 'Wilkinson, J. R. (John Richardson)', '2016-11-17', 4, 'https://www.gutenberg.org/ebooks/53545', 'en', 1237), +(54032, 'Browning and His Century', 'Clarke, Helen Archibald', '2012-02-14', 67, 'https://www.gutenberg.org/ebooks/38874', 'en', 14869), +(54033, 'The First Battle of Bull Run', 'Beauregard, G. T. (Gustave Toutant)', '2007-04-04', 16, 'https://www.gutenberg.org/ebooks/21165', 'en', 3520), +(54034, 'Työn kourissa: Romaani', 'Anttila, Selma', '2016-07-04', 12, 'https://www.gutenberg.org/ebooks/52497', 'fi', 456), +(54035, 'A History of English Prose Fiction', 'Tuckerman, Bayard', '2005-03-13', 18, 'https://www.gutenberg.org/ebooks/15350', 'en', 7049), +(54036, 'Lectures on Poetry\nRead in the Schools of Natural Philosophy at Oxford', 'Trapp, Joseph', '2014-04-16', 23, 'https://www.gutenberg.org/ebooks/45420', 'en', 5878), +(54037, 'The Valley of Silent Men: A Story of the Three River Country', 'Curwood, James Oliver', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/4707', 'en', 315), +(54038, 'The Lives of the Poets of Great Britain and Ireland (1753) Volume III.', 'Cibber, Theophilus', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/10622', 'en', 7656), +(54039, 'The Forest King\nWild Hunter of the Adaca', 'Keyes, Hervey', '2008-01-24', 9, 'https://www.gutenberg.org/ebooks/24417', 'en', 14321), +(54040, 'Mary Queen of Scots, 1542-1587', NULL, '2011-11-18', 10, 'https://www.gutenberg.org/ebooks/38048', 'en', 6347), +(54041, 'Inhibition', 'Causey, James', '2019-03-01', 19, 'https://www.gutenberg.org/ebooks/58991', 'en', 179), +(54042, 'Alexandria and Her Schools\r\nFour Lectures Delivered at the Philosophical Institution, Edinburgh', 'Kingsley, Charles', '1998-04-01', 18, 'https://www.gutenberg.org/ebooks/1275', 'en', 17888), +(54043, 'Phil-o-rum\'s Canoe, and Madeleine Vercheres: Two Poems', 'Drummond, William Henry', '2012-07-07', 8, 'https://www.gutenberg.org/ebooks/40152', 'en', 17889), +(54044, 'Letters from a Self-Made Merchant to His Son\r\nBeing the Letters written by John Graham, Head of the House of Graham & Company, Pork-Packers in Chicago, familiarly known on \'Change as \"Old Gorgon Graham,\" to his Son, Pierrepont, facetiously known to his intimates as \"Piggy.\"', 'Lorimer, George Horace', '2007-06-28', 177, 'https://www.gutenberg.org/ebooks/21959', 'en', 974), +(54045, 'Cours familier de Littérature - Volume 22', 'Lamartine, Alphonse de', '2012-10-16', 11, 'https://www.gutenberg.org/ebooks/41080', 'fr', 1765), +(54046, 'Hans Andersen\'s Fairy Tales. Second Series', 'Andersen, H. C. (Hans Christian)', '2010-05-28', 424, 'https://www.gutenberg.org/ebooks/32572', 'en', 1007), +(54047, 'The Palace and Park\r\nIts Natural History, and Its Portrait Gallery, Together with a Description of the Pompeian Court', 'Forbes, Edward', '2019-06-30', 36, 'https://www.gutenberg.org/ebooks/59843', 'en', 17890), +(54048, 'Sorrow of War: Poems', 'Golding, Louis', '2017-11-23', 8, 'https://www.gutenberg.org/ebooks/56037', 'en', 1367), +(54049, 'Cussons\' Horncastle Compendium, 1837', 'Cussons, D.', '2016-12-20', 1, 'https://www.gutenberg.org/ebooks/53777', 'en', 17891), +(54050, 'Velhovuorella: Yksinäytöksinen laulunsekainen idylli', 'Bögh, Erik', '2007-01-04', 8, 'https://www.gutenberg.org/ebooks/20285', 'fi', 402), +(54051, 'Supernatural Religion, Vol. 2 (of 3)\r\nAn Inquiry into the Reality of Divine Revelation', 'Cassels, Walter Richard', '2011-08-28', 11, 'https://www.gutenberg.org/ebooks/37232', 'en', 3792), +(54052, 'Sub la Meznokta Suno: Nordlandaj Rakontoj', NULL, '2014-05-08', 13, 'https://www.gutenberg.org/ebooks/45612', 'eo', 9373), +(54053, 'Sylvia\'s Lovers — Volume 2', 'Gaskell, Elizabeth Cleghorn', '2003-10-01', 30, 'https://www.gutenberg.org/ebooks/4535', 'en', 109), +(54054, 'Nic Revel: A White Slave\'s Adventures in Alligator Land', 'Fenn, George Manville', '2007-05-08', 19, 'https://www.gutenberg.org/ebooks/21357', 'en', 8687), +(54055, 'Scotland\'s Mark on America', 'Black, George Fraser', '2005-02-24', 28, 'https://www.gutenberg.org/ebooks/15162', 'en', 17892), +(54056, 'Vie de Jeanne d\'Arc. Vol. 1 de 2', 'France, Anatole', '2010-09-10', 41, 'https://www.gutenberg.org/ebooks/33692', 'fr', 3907), +(54057, 'The New Machiavelli', 'Wells, H. G. (Herbert George)', '1997-09-01', 69, 'https://www.gutenberg.org/ebooks/1047', 'en', 6360), +(54058, 'Guide to Yosemite\r\nA handbook of the trails and roads of Yosemite valley and the adjacent region', 'Hall, Ansel F. (Ansel Franklin)', '2012-07-28', 11, 'https://www.gutenberg.org/ebooks/40360', 'en', 17893), +(54059, 'The Powers and Maxine', 'Williamson, A. M. (Alice Muriel)', '2003-12-01', 28, 'https://www.gutenberg.org/ebooks/10410', 'en', 1319), +(54060, 'Os Filhos do Padre Anselmo', 'Albergaria, António José da Costa Couto Sá de', '2008-02-15', 25, 'https://www.gutenberg.org/ebooks/24625', 'pt', 671), +(54061, 'Voyager 1 Encounters Saturn', 'United States. National Aeronautics and Space Administration', '2017-12-18', 15, 'https://www.gutenberg.org/ebooks/56205', 'en', 17894), +(54062, 'Πεζογραφήματα', 'Krystalles, Kostas', '2010-06-08', 20, 'https://www.gutenberg.org/ebooks/32740', 'el', 1348), +(54063, 'An Unprotected Female at the Pyramids', 'Trollope, Anthony', '2003-02-01', 15, 'https://www.gutenberg.org/ebooks/3710', 'en', 2938), +(54064, 'Aunt Jimmy\'s Will', 'Wright, Mabel Osgood', '2013-03-30', 42, 'https://www.gutenberg.org/ebooks/42437', 'en', 1660), +(54065, 'Modern Painters, Volume 2 (of 5)', 'Ruskin, John', '2009-09-04', 37, 'https://www.gutenberg.org/ebooks/29906', 'en', 3670), +(54066, 'The Morgesons: A Novel', 'Stoddard, Elizabeth', '2004-05-01', 59, 'https://www.gutenberg.org/ebooks/12347', 'en', 348), +(54067, 'Granada, Poema Oriental, precedido de la Leyenda de al-Hamar, Tomo 1', 'Zorrilla, José', '2017-09-03', 16, 'https://www.gutenberg.org/ebooks/55480', 'es', 17053), +(54068, 'Union and Communion; or, Thoughts on the Song of Solomon', 'Taylor, James Hudson', '2008-08-02', 24, 'https://www.gutenberg.org/ebooks/26172', 'en', 13769), +(54069, 'The True Life Story of Swiftwater Bill Gates', 'Beebe, Iola', '2015-01-15', 13, 'https://www.gutenberg.org/ebooks/47979', 'en', 9332), +(54070, 'Dutch and Flemish Furniture', 'Singleton, Esther', '2017-04-15', 3, 'https://www.gutenberg.org/ebooks/54552', 'en', 17895), +(54071, 'The Youth of the Great Elector', 'Mühlbach, L. (Luise)', '2004-08-26', 15, 'https://www.gutenberg.org/ebooks/13295', 'en', 17896), +(54072, 'My Father\'s Dragon', 'Gannett, Ruth Stiles', '2009-09-18', 539, 'https://www.gutenberg.org/ebooks/30017', 'en', 2093), +(54073, 'La Biblia en España, Tomo II (de 3)\nO viajes, aventuras y prisiones de un inglés en su intento de difundir las Escrituras por la Península', 'Borrow, George', '2016-01-24', 19, 'https://www.gutenberg.org/ebooks/51020', 'es', 8344), +(54074, 'The Mormons and the Theatre; or, The History of Theatricals in Utah', 'Lindsay, John S. (John Shanks)', '2011-03-12', 19, 'https://www.gutenberg.org/ebooks/35565', 'en', 1440), +(54075, 'Trooper Bluegum at the Dardanelles\r\nDescriptive Narratives of the More Desperate Engagements on the Gallipoli Peninsula', 'Hogue, Oliver', '2014-06-25', 20, 'https://www.gutenberg.org/ebooks/46097', 'en', 17897), +(54076, 'Martti Jänne', 'Salmela, Marja', '2014-10-18', 12, 'https://www.gutenberg.org/ebooks/47145', 'fi', 175), +(54077, 'The Weavers: a tale of England and Egypt of fifty years ago - Volume 2', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6262', 'en', 9577), +(54078, 'A Lenda da Meia-Noite', 'Chagas, Manuel Pinheiro', '2007-11-07', 27, 'https://www.gutenberg.org/ebooks/23400', 'pt', 3856), +(54079, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 03, May 8, 1858', NULL, '2015-05-11', 4, 'https://www.gutenberg.org/ebooks/48931', 'en', 1741), +(54080, 'Repertory of The Comedie Humaine, Complete, A — Z', 'Christophe, Jules François', '2006-01-29', 35, 'https://www.gutenberg.org/ebooks/17635', 'en', 17898), +(54081, 'Dame Trot and Her Cat', 'Anonymous', '2014-03-31', 6, 'https://www.gutenberg.org/ebooks/45276', 'en', 15498), +(54082, 'Diary of Samuel Pepys — Volume 31: October/November 1664', 'Pepys, Samuel', '2004-11-30', 14, 'https://www.gutenberg.org/ebooks/4151', 'en', 738), +(54083, 'McClure\'s Magazine, Vol. 1, No. 4, September 1893', 'Various', '2011-07-19', 7, 'https://www.gutenberg.org/ebooks/36784', 'en', 380), +(54084, 'The Giant of the North: Pokings Round the Pole', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 54, 'https://www.gutenberg.org/ebooks/21733', 'en', 10234), +(54085, 'Philip Winwood\nA Sketch of the Domestic History of an American Captain in the War of Independence; Embracing Events that Occurred between and during the Years 1763 and 1786, in New York and London: written by His Enemy in War, Herbert Russell, Lieutenant in the Loyalist Forces.', 'Stephens, Robert Neilson', '2005-03-30', 12, 'https://www.gutenberg.org/ebooks/15506', 'en', 1293), +(54086, 'Juan José: Drama en tres actos y en prosa', 'Dicenta, Joaquín', '2019-05-29', 10, 'https://www.gutenberg.org/ebooks/59629', 'es', 2094), +(54087, 'Maailmankaupunki: Romaani', 'Sinclair, Upton', '2016-10-18', 8, 'https://www.gutenberg.org/ebooks/53313', 'fi', 10158), +(54088, 'The Man of Feeling', 'Mackenzie, Henry', '2004-02-01', 94, 'https://www.gutenberg.org/ebooks/5083', 'en', 1061), +(54089, 'Natalie\r\nOr, A Gem Among the Sea-Weeds', 'Vale, Ferna', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/10848', 'en', 17899), +(54090, 'Thomas Hart Benton', 'Roosevelt, Theodore', '2011-10-07', 16, 'https://www.gutenberg.org/ebooks/37656', 'en', 17900), +(54091, '施公案', 'Anonymous', '2008-05-08', 31, 'https://www.gutenberg.org/ebooks/25393', 'zh', 17901), +(54092, 'Hacking Through Belgium', 'Dane, Edmund (Military historian)', '2018-02-28', 15, 'https://www.gutenberg.org/ebooks/56661', 'en', 4411), +(54093, 'Sam, This Is You', 'Leinster, Murray', '2010-05-10', 27, 'https://www.gutenberg.org/ebooks/32324', 'en', 179), +(54094, 'No Thoroughfare', 'Collins, Wilkie', '1998-08-01', 81, 'https://www.gutenberg.org/ebooks/1423', 'en', 45), +(54095, 'Franklin: A Sketch', 'Bigelow, John', '2012-09-07', 11, 'https://www.gutenberg.org/ebooks/40704', 'en', 854), +(54096, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 269, August 18, 1827', 'Various', '2003-10-13', 8, 'https://www.gutenberg.org/ebooks/10074', 'en', 133), +(54097, 'Judy of York Hill', 'Bennett, Ethel Hume', '2008-01-11', 26, 'https://www.gutenberg.org/ebooks/24241', 'en', 62), +(54098, 'Ocean Steamships\r\nA popular account of their construction, development, management and appliances', 'Kelley, J. D. Jerrold (James Douglas Jerrold)', '2017-02-08', 31, 'https://www.gutenberg.org/ebooks/54136', 'en', 17902), +(54099, 'The Trumpeter Swan', 'Bailey, Temple', '2006-04-21', 60, 'https://www.gutenberg.org/ebooks/18219', 'en', 109), +(54100, 'Meine Lebens-Erinnerungen - Band 4', 'Oehlenschläger, Adam', '2015-03-23', 6, 'https://www.gutenberg.org/ebooks/48569', 'de', 17903), +(54101, 'La musica\r\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Panzacchi, Enrico', '2013-07-10', 9, 'https://www.gutenberg.org/ebooks/43181', 'it', 10642), +(54102, 'The American Credo\nA Contribution Toward the Interpretation of the National Mind', 'Nathan, George Jean', '2007-12-14', 35, 'https://www.gutenberg.org/ebooks/23858', 'en', 190), +(54103, 'De complete werken van Joost van Vondel. Het Pascha', 'Vondel, Joost van den', '2009-11-14', 15, 'https://www.gutenberg.org/ebooks/30473', 'nl', 7450), +(54104, 'The Entire March Family Trilogy', 'Howells, William Dean', '2004-10-23', 41, 'https://www.gutenberg.org/ebooks/3374', 'en', 61), +(54105, 'Διδαχή των Δώδεκα αποστόλων = Teaching of the Twelve Apostles', NULL, '2013-02-09', 38, 'https://www.gutenberg.org/ebooks/42053', 'en', 17904), +(54106, 'Sonnet #106', 'Shakespeare, William', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12723', 'en', 6689), +(54107, 'The Log of the Sun: A Chronicle of Nature\'s Year', 'Beebe, William', '2008-09-03', 17, 'https://www.gutenberg.org/ebooks/26516', 'en', 1216), +(54108, 'Life and Times of Her Majesty Caroline Matilda, Vol. 1 (of 3)\r\nQueen of Denmark and Norway, and Sister of H. M. George III. of England', 'Wraxall, Lascelles, Sir', '2014-12-03', 15, 'https://www.gutenberg.org/ebooks/47521', 'en', 17905), +(54109, 'Myths and Legends of Our Own Land — Volume 01: the Hudson and its hills', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 9, 'https://www.gutenberg.org/ebooks/6606', 'en', 725), +(54110, 'Punch, or the London Charivari, Vol. 150, June 7, 1916', 'Various', '2007-10-17', 17, 'https://www.gutenberg.org/ebooks/23064', 'en', 134), +(54111, 'Valentine', 'Sand, George', '2005-12-08', 25, 'https://www.gutenberg.org/ebooks/17251', 'fr', 687), +(54112, 'Quinneys\'', 'Vachell, Horace Annesley', '2015-12-02', 10, 'https://www.gutenberg.org/ebooks/50596', 'en', 230), +(54113, 'Claudian, volume 2 (of 2)\nWith an English translation by Maurice Platnauer', 'Claudianus, Claudius', '2016-03-14', 23, 'https://www.gutenberg.org/ebooks/51444', 'la', 17837), +(54114, 'Dotty Dimple Out West', 'May, Sophie', '2005-07-29', 24, 'https://www.gutenberg.org/ebooks/16383', 'en', 17906), +(54115, 'Diary of a U-Boat Commander', 'King-Hall, Stephen, Sir', '2011-01-28', 9, 'https://www.gutenberg.org/ebooks/35101', 'en', 17907), +(54116, 'Notes and Queries, Number 232, April 8, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-12-10', 11, 'https://www.gutenberg.org/ebooks/30641', 'en', 105), +(54117, 'The Writings of Samuel Adams - Volume 4', 'Adams, Samuel', '2000-03-01', 15, 'https://www.gutenberg.org/ebooks/2094', 'en', 1648), +(54118, 'Estes Park, Colorado', 'Estes Park Chamber of Commerce', '2019-08-18', 178, 'https://www.gutenberg.org/ebooks/60131', 'en', 7996), +(54119, 'Urith: A Tale of Dartmoor', 'Baring-Gould, S. (Sabine)', '2017-03-08', 13, 'https://www.gutenberg.org/ebooks/54304', 'en', 4305), +(54120, 'Blackwood\'s Edinburgh Magazine — Volume 53, No. 332, June, 1843', 'Various', '2004-06-01', 19, 'https://www.gutenberg.org/ebooks/12511', 'en', 711), +(54121, 'Tarinoita Kalifornian kultamailta', 'Harte, Bret', '2008-09-29', 9, 'https://www.gutenberg.org/ebooks/26724', 'fi', 315), +(54122, 'Encyclopaedia Britannica, 11th Edition, \"Clervaux\" to \"Cockade\"\r\nVolume 6, Slice 5', 'Various', '2010-03-27', 15, 'https://www.gutenberg.org/ebooks/31793', 'en', 1081), +(54123, 'Two on a Tower', 'Hardy, Thomas', '2002-03-01', 97, 'https://www.gutenberg.org/ebooks/3146', 'en', 2815), +(54124, 'Jeppe Niilonpoika eli Talonpojan ihmeelliset seikkailut\nViisinäytöksinen huvinäytelmä', 'Holberg, Ludvig', '2015-08-12', 32, 'https://www.gutenberg.org/ebooks/49689', 'fi', 1552), +(54125, 'De opheffing van de slavernij en de toekomst van Nederlandsch West-Indie', 'Netscher, Adriaan David van der Gon', '2013-03-04', 8, 'https://www.gutenberg.org/ebooks/42261', 'nl', 17908), +(54126, 'The King Of Beaver, and Beaver Lights\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 9, 'https://www.gutenberg.org/ebooks/23256', 'en', 877), +(54127, 'A Lost Leader', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-11-14', 25, 'https://www.gutenberg.org/ebooks/17063', 'en', 128), +(54128, 'Peter und Lutz\nEine Erzählung mit sechzehn Holzschnitten von Frans Masereel', 'Rolland, Romain', '2014-12-20', 18, 'https://www.gutenberg.org/ebooks/47713', 'de', 109), +(54129, 'A Brief History of the United States', 'Steele, Joel Dorman', '2004-09-01', 17, 'https://www.gutenberg.org/ebooks/6434', 'en', 207), +(54130, 'Ralestone Luck', 'Norton, Andre', '2006-07-13', 88, 'https://www.gutenberg.org/ebooks/18817', 'en', 5233), +(54131, 'Life of Heber C. Kimball, an Apostle\nThe Father and Founder of the British Mission', 'Whitney, Orson F. (Orson Ferguson)', '2011-02-19', 97, 'https://www.gutenberg.org/ebooks/35333', 'en', 17909), +(54132, 'Cyclopedia of Commerce, Accountancy, Business Administration, v. 05 (of 10)', 'American School of Correspondence', '2016-04-06', 21, 'https://www.gutenberg.org/ebooks/51676', 'en', 2351), +(54133, 'Chateaubriand et Madame de Custine: Episodes et correspondance inédite', 'Custine, Delphine de Sabran, marquise de', '2007-08-24', 14, 'https://www.gutenberg.org/ebooks/22384', 'fr', 17910), +(54134, 'Beginnings of the American People', 'Becker, Carl L. (Carl Lotus)', '2007-05-16', 33, 'https://www.gutenberg.org/ebooks/21501', 'en', 481), +(54135, 'Aus Kroatien: Skizzen und Erzählungen', 'Achleitner, Arthur', '2005-04-30', 45, 'https://www.gutenberg.org/ebooks/15734', 'de', 17067), +(54136, 'The Great Small Cat, and Others: Seven Tales', 'Southworth, May E. (May Elizabeth)', '2014-02-28', 6, 'https://www.gutenberg.org/ebooks/45044', 'en', 17911), +(54137, 'Beyond Good and Evil', 'Nietzsche, Friedrich Wilhelm', '2003-08-01', 3367, 'https://www.gutenberg.org/ebooks/4363', 'en', 902), +(54138, 'Bluebeard', 'Johnson, Clifton', '2011-09-17', 19, 'https://www.gutenberg.org/ebooks/37464', 'en', 388), +(54139, 'The Indian Scout: A Story of the Aztec City', 'Aimard, Gustave', '2013-11-16', 10, 'https://www.gutenberg.org/ebooks/44196', 'en', 2335), +(54140, 'Love: A Treatise on the Science of Sex-attraction\r\nfor the use of Physicians and Students of Medical Jurisprudence', 'Talmey, Bernard Simon', '2016-09-22', 33, 'https://www.gutenberg.org/ebooks/53121', 'en', 3052), +(54141, 'When the Cock Crows', 'Baily, Waldron', '2010-04-24', 15, 'https://www.gutenberg.org/ebooks/32116', 'en', 61), +(54142, 'The \"Ayesha,\" being the adventures of the landing squad of the \"Emden\"', 'Mücke, Hellmuth von', '2014-06-04', 19, 'https://www.gutenberg.org/ebooks/45878', 'en', 17912), +(54143, 'Fighting in Flanders', 'Powell, E. Alexander (Edward Alexander)', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11394', 'en', 3333), +(54144, 'The Egregious English', 'Crosland, T. W. H. (Thomas William Hodgson)', '2018-01-28', 10, 'https://www.gutenberg.org/ebooks/56453', 'en', 8617), +(54145, 'The Evolution of the Idea of God: An Inquiry Into the Origins of Religions', 'Allen, Grant', '2018-07-25', 54, 'https://www.gutenberg.org/ebooks/57581', 'en', 655), +(54146, 'Sensation Jazz: One-Step', NULL, '2003-11-01', 65, 'https://www.gutenberg.org/ebooks/10246', 'en', 11606), +(54147, 'General John Regan', 'Birmingham, George A.', '2008-01-23', 21, 'https://www.gutenberg.org/ebooks/24073', 'en', 669), +(54148, 'Seventeen\r\nA Tale of Youth and Summer Time and the Baxter Family, Especially William', 'Tarkington, Booth', '2006-02-22', 62, 'https://www.gutenberg.org/ebooks/1611', 'en', 376), +(54149, 'Whittaker & Co.\'s List of Classical, Educational and Technical Works. July 1889', 'Whittaker & Co.', '2012-08-19', 9, 'https://www.gutenberg.org/ebooks/40536', 'en', 2663), +(54150, 'The History of the Devils of Loudun, Volumes I-III\r\nThe Alleged Possession of the Ursuline Nuns, and the Trial and Execution of Urbain Grandier, Told by an Eye-witness', 'Des Niau', '2014-03-31', 26, 'https://www.gutenberg.org/ebooks/45282', 'en', 17913), +(54151, 'Sun and Saddle Leather', 'Clark, Badger', '2011-07-17', 26, 'https://www.gutenberg.org/ebooks/36770', 'en', 17914), +(54152, 'The Governor of England', 'Bowen, Marjorie', '2016-06-04', 22, 'https://www.gutenberg.org/ebooks/52235', 'en', 17915), +(54153, 'The Exemplary Novels of Cervantes', 'Cervantes Saavedra, Miguel de', '2004-12-22', 84, 'https://www.gutenberg.org/ebooks/14420', 'en', 61), +(54154, 'The Master-Knot of Human Fate', 'Meredith, Ellis', '2007-02-17', 18, 'https://www.gutenberg.org/ebooks/20615', 'en', 61), +(54155, 'Marmion: A Tale of Flodden Field in Six Cantos', 'Scott, Walter', '2004-02-01', 122, 'https://www.gutenberg.org/ebooks/5077', 'en', 7265), +(54156, 'My Miscellanies, Vol. 2 (of 2)', 'Collins, Wilkie', '2013-12-05', 28, 'https://www.gutenberg.org/ebooks/44350', 'en', 232), +(54157, '漱玉詞', 'Li, Qingzhao', '2008-05-07', 36, 'https://www.gutenberg.org/ebooks/25367', 'zh', 1721), +(54158, 'The Radio Boys with the Border Patrol', 'Breckenridge, Gerald', '2018-03-07', 7, 'https://www.gutenberg.org/ebooks/56695', 'en', 3343), +(54159, 'Nummisuutarit', 'Kivi, Aleksis', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/11152', 'fi', 247), +(54160, 'The Notebooks of Leonardo Da Vinci — Volume 2', 'Leonardo, da Vinci', '2004-01-01', 43, 'https://www.gutenberg.org/ebooks/4999', 'en', 11987), +(54161, 'Futuria Fantasia, Summer 1939', 'Bradbury, Ray', '2012-12-14', 116, 'https://www.gutenberg.org/ebooks/41622', 'en', 2527), +(54162, 'Lélia', 'Sand, George', '2012-05-19', 38, 'https://www.gutenberg.org/ebooks/39738', 'fr', 298), +(54163, 'Einführung in die Hauptgesetze der Zeichnerischen Darstellungsmethoden', 'Schoenflies, A. (Arthur)', '2010-07-19', 28, 'https://www.gutenberg.org/ebooks/33202', 'de', 7854), +(54164, 'Mobilizing Woman-Power', 'Blatch, Harriot Stanton', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10080', 'en', 4418), +(54165, 'La forêt, ou l\'abbaye de Saint-Clair (tome 3/3)\ntraduit de l\'anglais sur la seconde édition', 'Radcliffe, Ann Ward', '2018-08-22', 6, 'https://www.gutenberg.org/ebooks/57747', 'fr', 428), +(54166, 'The Critical Period of American History', 'Fiske, John', '2008-12-07', 22, 'https://www.gutenberg.org/ebooks/27430', 'en', 16637), +(54167, 'Island Nights\' Entertainments', 'Stevenson, Robert Louis', '1995-09-01', 157, 'https://www.gutenberg.org/ebooks/329', 'en', 179), +(54168, 'The Principal Navigations, Voyages, Traffiques, and Discoveries of The English Nation — Volume 12\r\nAmerica, Part I', 'Hakluyt, Richard', '2004-10-05', 29, 'https://www.gutenberg.org/ebooks/13605', 'en', 2528), +(54169, 'Ugo Foscolo (1778-1827)\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Chiarini, Giuseppe', '2013-07-09', 7, 'https://www.gutenberg.org/ebooks/43175', 'it', 1941), +(54170, 'Much Ado About Nothing', 'Shakespeare, William', '2018-10-28', 37, 'https://www.gutenberg.org/ebooks/2252', 'en', 1665), +(54171, 'Confessions of a Neurasthenic', 'Marrs, William Taylor', '2009-11-17', 8, 'https://www.gutenberg.org/ebooks/30487', 'en', 8907), +(54172, 'Staccato Notes of a Vanished Summer (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 24, 'https://www.gutenberg.org/ebooks/3380', 'en', 1541), +(54173, 'Tarzan the Terrible', 'Burroughs, Edgar Rice', '2005-08-01', 12, 'https://www.gutenberg.org/ebooks/8768', 'en', 323), +(54174, 'Under the Liberty Tree: A Story of The \'Boston Massacre\'', 'Otis, James', '2010-03-08', 16, 'https://www.gutenberg.org/ebooks/31555', 'en', 17916), +(54175, 'Charlestown Navy Yard: Boston National Historical Park, Massachusetts', 'United States. National Park Service', '2017-06-30', 15, 'https://www.gutenberg.org/ebooks/55010', 'en', 17917), +(54176, 'The Cup of Comus: Fact and Fancy', 'Cawein, Madison Julius', '2010-10-04', 11, 'https://www.gutenberg.org/ebooks/34027', 'en', 178), +(54177, 'Notes and Queries, Number 196, July 30, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-04-02', 12, 'https://www.gutenberg.org/ebooks/28478', 'en', 105), +(54178, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 09 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-10-14', 10, 'https://www.gutenberg.org/ebooks/43949', 'it', 6107), +(54179, 'Yr Ynys Unyg\nThe Lonely Island', 'Winton, Julia de', '2007-10-20', 16, 'https://www.gutenberg.org/ebooks/23090', 'en', 246), +(54180, 'Kalevipoeg jumalaistarulliselta ja historialliselta kannalta', 'Donner, Otto', '2015-11-27', 8, 'https://www.gutenberg.org/ebooks/50562', 'fi', 17918), +(54181, 'The Blue Book of Chess\r\nTeaching the Rudiments of the Game, and Giving an Analysis of All the Recognized Openings', 'Staunton, Howard', '2005-07-28', 207, 'https://www.gutenberg.org/ebooks/16377', 'en', 3733), +(54182, 'The Modern Scottish Minstrel, Volume 5.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2007-07-25', 15, 'https://www.gutenberg.org/ebooks/22142', 'en', 17502), +(54183, 'The Last of the Barons — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 10, 'https://www.gutenberg.org/ebooks/7720', 'en', 10517), +(54184, 'Memoirs of the Empress Catherine II.\nWritten by Herself', 'Catherine II, Empress of Russia', '2014-07-25', 69, 'https://www.gutenberg.org/ebooks/46407', 'en', 2077), +(54185, 'Rossetti', 'Pissarro, Lucien', '2013-07-29', 19, 'https://www.gutenberg.org/ebooks/43347', 'en', 2284), +(54186, 'The History of Caliph Vathek', 'Beckford, William', '2000-02-01', 105, 'https://www.gutenberg.org/ebooks/2060', 'en', 401), +(54187, 'The Line of Love; Dizain des Mariages', 'Cabell, James Branch', '2005-12-01', 36, 'https://www.gutenberg.org/ebooks/9488', 'en', 580), +(54188, 'The True Story Book', NULL, '2008-12-23', 30, 'https://www.gutenberg.org/ebooks/27602', 'en', 7868), +(54189, 'Best Russian Short Stories', NULL, '2004-09-11', 853, 'https://www.gutenberg.org/ebooks/13437', 'en', 4078), +(54190, 'Misunderstood', 'Montgomery, Florence', '2017-07-29', 15, 'https://www.gutenberg.org/ebooks/55222', 'en', 17108), +(54191, 'The Discipline of War\nNine Addresses on the Lessons of the War in Connection with Lent', 'Potter, John Hasloch', '2005-11-01', 19, 'https://www.gutenberg.org/ebooks/16979', 'en', 14761), +(54192, 'The Peacemaker', 'Coppel, Alfred', '2010-03-25', 50, 'https://www.gutenberg.org/ebooks/31767', 'en', 26), +(54193, 'Palvelusväkeä', 'Alkio, Santeri', '2013-03-10', 3, 'https://www.gutenberg.org/ebooks/42295', 'fi', 61), +(54194, 'The Officer\'s Manual: Napoleon\'s Maxims of War', 'Napoleon I, Emperor of the French', '2015-12-23', 104, 'https://www.gutenberg.org/ebooks/50750', 'en', 1359), +(54195, 'Bunny Brown and His Sister Sue in the Big Woods', 'Hope, Laura Lee', '2005-11-18', 20, 'https://www.gutenberg.org/ebooks/17097', 'en', 9243), +(54196, 'The Lamplighter', 'Dickens, Charles', '1997-05-01', 222, 'https://www.gutenberg.org/ebooks/927', 'en', 637), +(54197, 'Shadowings', 'Hearn, Lafcadio', '2010-11-05', 99, 'https://www.gutenberg.org/ebooks/34215', 'en', 17919), +(54198, 'The Reckoning\nA Play in One Act', 'Wilde, Percival', '2006-11-27', 26, 'https://www.gutenberg.org/ebooks/19931', 'en', 402), +(54199, 'Heidi kann brauchen, was es gelernt hat', 'Spyri, Johanna', '2005-02-01', 84, 'https://www.gutenberg.org/ebooks/7512', 'de', 17920), +(54200, 'Gospel Philosophy\r\nShowing the Absurdities of Infidelity, and the Harmony of the Gospel with Science and History', 'Ward, J. H. (Joseph Harvey)', '2014-08-20', 18, 'https://www.gutenberg.org/ebooks/46635', 'en', 3434), +(54201, 'Journals of Two Expeditions of Discovery in North-West and Western Australia, Volume 2', 'Grey, George, Sir', '2005-06-29', 43, 'https://www.gutenberg.org/ebooks/16145', 'en', 17921), +(54202, 'The Imitation of Earth', 'Stamers, James', '2016-04-07', 16, 'https://www.gutenberg.org/ebooks/51682', 'en', 179), +(54203, 'Japan', 'Murray, David', '2009-08-25', 18, 'https://www.gutenberg.org/ebooks/29798', 'en', 52), +(54204, 'A Little Maid of Old Philadelphia', 'Curtis, Alice Turner', '2007-08-21', 13, 'https://www.gutenberg.org/ebooks/22370', 'en', 2843), +(54205, 'Discoveries and Inventions: A lecture by Abraham Lincoln delivered in 1860', 'Lincoln, Abraham', '2016-05-05', 5, 'https://www.gutenberg.org/ebooks/52007', 'en', 1739), +(54206, 'Chimney-Pot Papers', 'Brooks, Charles S. (Charles Stephen)', '2008-07-04', 14, 'https://www.gutenberg.org/ebooks/25969', 'en', 20), +(54207, 'The American Occupation of the Philippines 1898-1912', 'Blount, James H. (James Henderson)', '2011-06-28', 539, 'https://www.gutenberg.org/ebooks/36542', 'en', 17922), +(54208, 'The Forsyte Saga - Complete', 'Galsworthy, John', '2006-06-14', 313, 'https://www.gutenberg.org/ebooks/4397', 'en', 17923), +(54209, 'The Gray Phantom\'s Return', 'Landon, Herman', '2011-09-20', 18, 'https://www.gutenberg.org/ebooks/37490', 'en', 61), +(54210, 'Tales from the Arabic — Complete', NULL, '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/5245', 'en', 1113), +(54211, 'Le miroir de mort', 'Chastellain, Georges', '2013-11-11', 13, 'https://www.gutenberg.org/ebooks/44162', 'fr', 11671), +(54212, 'Chambers\'s Edinburgh Journal, No. 421\r\nVolume 17, New Series, January 24, 1852', 'Various', '2005-01-06', 15, 'https://www.gutenberg.org/ebooks/14612', 'en', 18), +(54213, 'Custer, and Other Poems.', 'Wilcox, Ella Wheeler', '2007-01-23', 11, 'https://www.gutenberg.org/ebooks/20427', 'en', 8), +(54214, 'Dick Hamilton\'s Football Team; Or, A Young Millionaire On The Gridiron', 'Garis, Howard Roger', '2012-11-19', 25, 'https://www.gutenberg.org/ebooks/41410', 'en', 5031), +(54215, 'How to Draw a Straight Line: A Lecture on Linkages', 'Kempe, A. B. (Alfred Bray)', '2008-04-24', 69, 'https://www.gutenberg.org/ebooks/25155', 'en', 17924), +(54216, 'Sacred and Profane Love: A Novel in Three Episodes', 'Bennett, Arnold', '2004-02-01', 38, 'https://www.gutenberg.org/ebooks/11360', 'en', 109), +(54217, 'Motherhood and the Relationships of the Sexes', 'Hartley, C. Gasquoine (Catherine Gasquoine)', '2018-07-24', 16, 'https://www.gutenberg.org/ebooks/57575', 'en', 3052), +(54218, 'Rakkaita sukulaisia', 'Jókai, Mór', '2007-12-31', 4, 'https://www.gutenberg.org/ebooks/24087', 'fi', 2326), +(54219, 'Chiquita, an American Novel: The Romance of a Ute Chief\'s Daughter', 'Tileston, Merrill', '2010-06-30', 14, 'https://www.gutenberg.org/ebooks/33030', 'en', 14656), +(54220, 'The Guests Of Hercules', 'Williamson, A. M. (Alice Muriel)', '2006-10-18', 28, 'https://www.gutenberg.org/ebooks/19569', 'en', 348), +(54221, 'The Family at Gilje: A Domestic Story of the Forties', 'Lie, Jonas', '2017-09-29', 30, 'https://www.gutenberg.org/ebooks/55646', 'en', 1938), +(54222, 'The Story of Bessie Costrell', 'Ward, Humphry, Mrs.', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12181', 'en', 61), +(54223, 'Euphorion - Vol. I\r\nBeing Studies of the Antique and the Mediaeval in the Renaissance', 'Lee, Vernon', '2010-02-17', 27, 'https://www.gutenberg.org/ebooks/31303', 'en', 17925), +(54224, 'Ginevra, o, L\'Orfana della Nunziata', 'Ranieri, Antonio', '2015-06-15', 5, 'https://www.gutenberg.org/ebooks/49219', 'it', 860), +(54225, 'A Burlesque Translation of Homer', 'Bridges, Thomas, active 1759-1775', '2013-09-14', 12, 'https://www.gutenberg.org/ebooks/43723', 'en', 17926), +(54226, 'Italienische Reise — Band 1', 'Goethe, Johann Wolfgang von', '2000-11-01', 168, 'https://www.gutenberg.org/ebooks/2404', 'de', 17927), +(54227, 'The Seventh Day Sabbath, a Perpetual Sign\n1847 edition', 'Bates, Joseph', '2008-11-15', 16, 'https://www.gutenberg.org/ebooks/27266', 'en', 503), +(54228, 'Frankenstein; Or, The Modern Prometheus', 'Shelley, Mary Wollstonecraft', '1993-10-01', 9997, 'https://www.gutenberg.org/ebooks/84', 'en', 17928), +(54229, 'International Weekly Miscellany of Literature, Art, and Science — Volume 1, No. 4, July 22, 1850', 'Various', '2004-07-29', 42, 'https://www.gutenberg.org/ebooks/13053', 'en', 380), +(54230, 'The World\'s Illusion, Volume 1 (of 2): Eva', 'Wassermann, Jakob', '2017-05-27', 17, 'https://www.gutenberg.org/ebooks/54794', 'en', 803), +(54231, 'The Boys of Columbia High on the Gridiron : or, the Struggle for the Silver Cup', 'Forbes, Graham B.', '2004-11-01', 14, 'https://www.gutenberg.org/ebooks/6898', 'en', 5031), +(54232, 'A Letter to a Hindu', 'Tolstoy, Leo, graf', '2004-12-01', 133, 'https://www.gutenberg.org/ebooks/7176', 'en', 17929), +(54233, 'Old Continental Towns', 'Gallichan, Walter M. (Walter Matthew)', '2014-07-11', 39, 'https://www.gutenberg.org/ebooks/46251', 'en', 17930), +(54234, 'The Flight of the Shadow', 'MacDonald, George', '2005-09-01', 46, 'https://www.gutenberg.org/ebooks/8902', 'en', 2389), +(54235, 'Fanny Goes to War', 'Washington, Pat Beauchamp', '2005-08-13', 22, 'https://www.gutenberg.org/ebooks/16521', 'en', 449), +(54236, 'Deserted\n1898', 'Bellamy, Edward', '2007-09-21', 17, 'https://www.gutenberg.org/ebooks/22714', 'en', 770), +(54237, 'Pearl-Fishing; Choice Stories from Dickens\' Household Words; Second Series', 'Dickens, Charles', '2015-10-28', 16, 'https://www.gutenberg.org/ebooks/50334', 'en', 137), +(54238, 'Dryden\'s Works Vol. 13 (of 18)', 'Dryden, John', '2014-11-17', 25, 'https://www.gutenberg.org/ebooks/47383', 'en', 8), +(54239, 'Camps and Trails', 'Abbott, Henry', '2010-12-16', 24, 'https://www.gutenberg.org/ebooks/34671', 'en', 2155), +(54240, 'Baron d\'Holbach : a Study of Eighteenth Century Radicalism in France', 'Cushing, Max Pearson', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/5621', 'en', 13329), +(54241, 'Christuslegenden', 'Lagerlöf, Selma', '2013-12-25', 19, 'https://www.gutenberg.org/ebooks/44506', 'nl', 609), +(54242, 'The Land of Song, Book 2. For lower grammar grades', NULL, '2012-02-14', 9, 'https://www.gutenberg.org/ebooks/38880', 'en', 178), +(54243, 'Fresco Painting', 'Ward, James', '2018-10-24', 50, 'https://www.gutenberg.org/ebooks/58159', 'en', 17931), +(54244, 'Italian Journeys', 'Howells, William Dean', '2004-12-06', 35, 'https://www.gutenberg.org/ebooks/14276', 'en', 1896), +(54245, 'The Angel Children\nor, Stories from Cloud-Land', 'Higgins, Charlotte M.', '2006-12-06', 36, 'https://www.gutenberg.org/ebooks/20043', 'en', 17932), +(54246, 'La San-Felice, Tome 09, Emma Lyonna, tome 5', 'Dumas, Alexandre', '2007-04-19', 6, 'https://www.gutenberg.org/ebooks/21191', 'fr', 4110), +(54247, 'With the Judæans in the Palestine Campaign', 'Patterson, J. H. (John Henry)', '2013-01-15', 30, 'https://www.gutenberg.org/ebooks/41848', 'en', 17933), +(54248, 'Neues Altes', 'Altenberg, Peter', '2016-06-30', 23, 'https://www.gutenberg.org/ebooks/52463', 'de', 60), +(54249, 'The Iowa', 'Foster, Thomas, of Washington, D.C.', '2012-06-09', 16, 'https://www.gutenberg.org/ebooks/39952', 'en', 17934), +(54250, 'A Journey to Ohio in 1810, as Recorded in the Journal of Margaret Van Horn Dwight', 'Dwight, Margaret Van Horn', '2011-05-16', 25, 'https://www.gutenberg.org/ebooks/36126', 'en', 17935), +(54251, 'Warren Commission (13 of 26): Hearings Vol. XIII (of 15)', 'United States. Warren Commission', '2018-05-08', 5, 'https://www.gutenberg.org/ebooks/57111', 'en', 5206), +(54252, 'Tom Swift and His Aerial Warship; Or, The Naval Terror of the Seas', 'Appleton, Victor', '1998-04-01', 56, 'https://www.gutenberg.org/ebooks/1281', 'en', 2279), +(54253, 'Mathilde: mémoires d\'une jeune femme', 'Sue, Eugène', '2010-08-17', 3, 'https://www.gutenberg.org/ebooks/33454', 'fr', 61), +(54254, 'Harper\'s Round Table, August 4, 1896', 'Various', '2019-02-26', 0, 'https://www.gutenberg.org/ebooks/58965', 'en', 668), +(54255, 'Ruins and Old Trees, Associated with Memorable Events in English History', 'Roberts, Mary', '2012-10-16', 15, 'https://www.gutenberg.org/ebooks/41074', 'en', 776), +(54256, 'O condemnado, drama em tres actos e quatro quadros;\r\nSeguido do drama em um acto, Como os anjos se vingam', 'Castelo Branco, Camilo', '2010-05-29', 18, 'https://www.gutenberg.org/ebooks/32586', 'pt', 402), +(54257, 'Representative Plays by American Dramatists: 1856-1911: The Moth and the Flame', 'Fitch, Clyde', '2008-05-20', 14, 'https://www.gutenberg.org/ebooks/25531', 'en', 508), +(54258, 'Punch, or the London Charivari, Volume 153, July 25, 1917', 'Various', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11704', 'en', 134), +(54259, 'Kuolemantuomitun viimeinen päivä', 'Hugo, Victor', '2016-12-21', 6, 'https://www.gutenberg.org/ebooks/53783', 'fi', 2118), +(54260, 'The Angels of Mons: The Bowmen and Other Legends of the War', 'Machen, Arthur', '2004-11-14', 66, 'https://www.gutenberg.org/ebooks/14044', 'en', 1747), +(54261, 'Heidi', 'Spyri, Johanna', '2007-01-05', 39, 'https://www.gutenberg.org/ebooks/20271', 'en', 17920), +(54262, 'The Memoirs of Count Grammont — Volume 05', 'Hamilton, Anthony, Count', '2004-12-04', 17, 'https://www.gutenberg.org/ebooks/5413', 'en', 10650), +(54263, 'Training for the Trenches\r\nA Practical Handbook Based upon Personal Experience During the First Two Years of the War in France', 'Vickers, Leslie', '2014-01-23', 35, 'https://www.gutenberg.org/ebooks/44734', 'en', 2658), +(54264, 'The Radio Boys Rescue the Lost Alaska Expedition', 'Breckenridge, Gerald', '2011-06-04', 76, 'https://www.gutenberg.org/ebooks/36314', 'en', 3343), +(54265, 'Punch, or the London Charivari, Volume 103, September 10, 1892', 'Various', '2005-02-28', 2, 'https://www.gutenberg.org/ebooks/15196', 'en', 134), +(54266, 'Forest Trees of Texas: How to Know Them', 'Mattoon, Wilbur R. (Wilbur Reed)', '2016-07-26', 15, 'https://www.gutenberg.org/ebooks/52651', 'en', 17936), +(54267, 'The Relation of the Hrólfs Saga Kraka and the Bjarkarímur to Beowulf\r\nA Contribution To The History Of Saga Development In England And The\r\nScandinavian Countries', 'Olson, Oscar Ludvig', '2005-02-02', 33, 'https://www.gutenberg.org/ebooks/14878', 'en', 17937), +(54268, 'A Captured Santa Claus', 'Page, Thomas Nelson', '2010-09-07', 43, 'https://www.gutenberg.org/ebooks/33666', 'en', 585), +(54269, 'Sketches from the Subject and Neighbour Lands of Venice', 'Freeman, Edward A. (Edward Augustus)', '2012-08-02', 20, 'https://www.gutenberg.org/ebooks/40394', 'en', 592), +(54270, 'Hartmann, the Anarchist; Or, The Doom of the Great City', 'Fawcett, E. Douglas (Edward Douglas)', '2018-06-14', 25, 'https://www.gutenberg.org/ebooks/57323', 'en', 26), +(54271, 'Northern Nut Growers Association Report of the Proceedings at the 44th Annual Meeting\nRochester, N.Y. August 31 and September 1, 1953', NULL, '2008-06-05', 3, 'https://www.gutenberg.org/ebooks/25703', 'en', 8570), +(54272, 'Town and Country Sermons', 'Kingsley, Charles', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/11536', 'en', 2745), +(54273, 'A Journey to Crete, Costantinople, Naples and Florence: Three Months Abroad', 'Vivanti, Annie', '2012-10-30', 7, 'https://www.gutenberg.org/ebooks/41246', 'en', 6863), +(54274, 'Boys\' Book of Indian Warriors and Heroic Indian Women', 'Sabin, Edwin L. (Edwin Legrand)', '2010-01-30', 38, 'https://www.gutenberg.org/ebooks/31131', 'en', 2180), +(54275, 'A Manual of Shoemaking and Leather and Rubber Products', 'Dooley, William H. (William Henry)', '2017-09-01', 59, 'https://www.gutenberg.org/ebooks/55474', 'en', 8138), +(54276, 'When the Birds Begin to Sing', 'Graham, Winifred (Matilda Winifred Muriel)', '2008-08-04', 15, 'https://www.gutenberg.org/ebooks/26186', 'en', 137), +(54277, 'Sihteeri Lundbergin häät: Kertomus kansan elämästä', 'Axelson, Maximilian', '2008-10-26', 47, 'https://www.gutenberg.org/ebooks/27054', 'fi', 2168), +(54278, 'The Wide, Wide World', 'Warner, Susan', '2006-06-26', 35, 'https://www.gutenberg.org/ebooks/18689', 'en', 348), +(54279, 'Jason: A Romance', 'Forman, Justus Miles', '2004-08-23', 19, 'https://www.gutenberg.org/ebooks/13261', 'en', 560), +(54280, 'I fantasmi: Dramma in quattro atti\r\n(Taken from Roberto Bracco Teatro, Vol. VII)', 'Bracco, Roberto', '2013-08-19', 12, 'https://www.gutenberg.org/ebooks/43511', 'it', 407), +(54281, 'Counsel for the Defense', 'Scott, Leroy', '2009-05-15', 21, 'https://www.gutenberg.org/ebooks/28820', 'en', 14342), +(54282, 'The Historical Nights\' Entertainment: First Series', 'Sabatini, Rafael', '2001-05-01', 53, 'https://www.gutenberg.org/ebooks/2636', 'en', 10663), +(54283, 'Amusements in Mathematics', 'Dudeney, Henry Ernest', '2005-09-17', 244, 'https://www.gutenberg.org/ebooks/16713', 'en', 5332), +(54284, 'Cubs of the Wolf', 'Jones, Raymond F.', '2007-09-06', 31, 'https://www.gutenberg.org/ebooks/22526', 'en', 26), +(54285, 'A Tour Up the Straits, from Gibraltar to Constantinople\r\nWith the Leading Events in the Present War Between the Austrians, Russians, and the Turks, to the Commencement of the Year 1789', 'Sutherland, David, Captain', '2015-08-29', 15, 'https://www.gutenberg.org/ebooks/49817', 'en', 2970), +(54286, 'The Daughter Pays', 'Reynolds, Baillie, Mrs.', '2011-03-17', 25, 'https://www.gutenberg.org/ebooks/35591', 'en', 705), +(54287, 'Archibald Malmaison', 'Hawthorne, Julian', '2005-01-01', 24, 'https://www.gutenberg.org/ebooks/7344', 'en', 2797), +(54288, 'The Classic Myths in English Literature and in Art (2nd ed.) (1911)\r\nBased Originally on Bulfinch\'s \"Age of Fable\" (1855)', 'Bulfinch, Thomas', '2014-06-21', 45, 'https://www.gutenberg.org/ebooks/46063', 'en', 6418), +(54289, 'The Glow-Worm and Other Beetles', 'Fabre, Jean-Henri', '2009-01-22', 42, 'https://www.gutenberg.org/ebooks/27868', 'en', 17938), +(54290, 'The Camp Fire Girls at the Seashore; Or, Bessie King\'s Happiness', 'Stewart, Jane L.', '2010-11-25', 21, 'https://www.gutenberg.org/ebooks/34443', 'en', 2096), +(54291, 'Carnac\'s Folly, Volume 1.', 'Parker, Gilbert', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6296', 'en', 61), +(54292, 'Greece and the Ægean Islands', 'Marden, Philip Sanford', '2015-10-01', 11, 'https://www.gutenberg.org/ebooks/50106', 'en', 4713), +(54293, 'The Railway Man and His Children', 'Oliphant, Mrs. (Margaret)', '2019-05-03', 31, 'https://www.gutenberg.org/ebooks/59424', 'en', 154), +(54294, 'Sir Hilton\'s Sin', 'Fenn, George Manville', '2010-06-20', 15, 'https://www.gutenberg.org/ebooks/32915', 'en', 61), +(54295, 'The Dover Road: Annals of an Ancient Turnpike', 'Harper, Charles G. (Charles George)', '2011-07-03', 8, 'https://www.gutenberg.org/ebooks/36589', 'en', 226), +(54296, 'The Stars, My Brothers', 'Hamilton, Edmond', '2008-03-18', 56, 'https://www.gutenberg.org/ebooks/24870', 'en', 26), +(54297, 'Area Handbook for Albania', 'Peters, Stephen', '2010-04-25', 48, 'https://www.gutenberg.org/ebooks/32129', 'en', 17939), +(54298, 'The Writings of Thomas Jefferson, Vol. 1 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2014-05-31', 89, 'https://www.gutenberg.org/ebooks/45847', 'en', 1648), +(54299, 'Dick & Fitzgerald Catalog (1866)', 'Dick & Fitzgerald', '2014-02-24', 10, 'https://www.gutenberg.org/ebooks/44995', 'en', 9404), +(54300, 'Uncle Tom\'s Cabin: Entrance of Topsy', 'Stowe, Harriet Beecher', '2003-11-01', 10, 'https://www.gutenberg.org/ebooks/10279', 'en', 17940), +(54301, 'Punch, or the London Charivari, Vol. 107, July 28th 1894', 'Various', '2012-08-15', 3, 'https://www.gutenberg.org/ebooks/40509', 'en', 134), +(54302, 'The King of Schnorrers: Grotesques and Fantasies', 'Zangwill, Israel', '2011-12-26', 38, 'https://www.gutenberg.org/ebooks/38413', 'en', 637), +(54303, 'Valkopukuinen nainen 1\r\nPerheromaani', 'Collins, Wilkie', '2017-01-08', 12, 'https://www.gutenberg.org/ebooks/53922', 'fi', 5233), +(54304, 'Stories from Hans Andersen', 'Andersen, H. C. (Hans Christian)', '2006-02-26', 231, 'https://www.gutenberg.org/ebooks/17860', 'en', 179), +(54305, 'Samantha among the Brethren — Volume 1', 'Holley, Marietta', '2004-08-10', 12, 'https://www.gutenberg.org/ebooks/9443', 'en', 10437), +(54306, 'Herra Oblomov: Romaani maaorjuuden ajoilta', 'Goncharov, Ivan Aleksandrovich', '2015-04-22', 8, 'https://www.gutenberg.org/ebooks/48764', 'fi', 417), +(54307, 'Pile et face', 'Biart, Lucien', '2006-03-19', 14, 'https://www.gutenberg.org/ebooks/18014', 'fr', 61), +(54308, 'The American Claimant', 'Twain, Mark', '2004-06-01', 112, 'https://www.gutenberg.org/ebooks/3179', 'en', 637), +(54309, 'French Lyrics', NULL, '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/8591', 'fr', 701), +(54310, 'The Sequel of Appomattox: A Chronicle of the Reunion of the States', 'Fleming, Walter L. (Walter Lynwood)', '2001-11-01', 40, 'https://www.gutenberg.org/ebooks/2897', 'en', 5784), +(54311, 'The Cook\'s Oracle; and Housekeeper\'s Manual', 'Kitchiner, William', '2009-05-04', 68, 'https://www.gutenberg.org/ebooks/28681', 'en', 4911); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(54312, 'The Heir of Kilfinnan: A Tale of the Shore and Ocean', 'Kingston, William Henry Giles', '2007-10-31', 29, 'https://www.gutenberg.org/ebooks/23269', 'en', 9771), +(54313, 'Selections From the Writings of the Báb', 'Bab, `Ali Muhammad Shirazi', '2006-06-15', 31, 'https://www.gutenberg.org/ebooks/18828', 'en', 4457), +(54314, 'The Gorgeous Girl', 'Bartley, Nalbro', '2009-08-22', 22, 'https://www.gutenberg.org/ebooks/29753', 'en', 61), +(54315, 'The Mysteries of London, v. 4/4', 'Reynolds, George W. M. (George William MacArthur)', '2016-04-03', 48, 'https://www.gutenberg.org/ebooks/51649', 'en', 1079), +(54316, 'Monsieur de Camors — Volume 3', 'Feuillet, Octave', '2003-04-01', 21, 'https://www.gutenberg.org/ebooks/3945', 'en', 560), +(54317, 'Round the Fire Stories', 'Doyle, Arthur Conan', '2017-02-04', 117, 'https://www.gutenberg.org/ebooks/54109', 'en', 2354), +(54318, 'My Young Days', 'Anonymous', '2006-04-22', 544, 'https://www.gutenberg.org/ebooks/18226', 'en', 1700), +(54319, 'Pandora', 'James, Henry', '2000-08-01', 30, 'https://www.gutenberg.org/ebooks/2299', 'en', 512), +(54320, 'Daniel Deronda', 'Eliot, George', '2006-01-01', 14, 'https://www.gutenberg.org/ebooks/9671', 'en', 2815), +(54321, 'Harper\'s Round Table, November 12, 1895', 'Various', '2015-03-22', 3, 'https://www.gutenberg.org/ebooks/48556', 'en', 668), +(54322, '斬鬼傳', 'Liu, Zhang', '2007-12-15', 17, 'https://www.gutenberg.org/ebooks/23867', 'zh', 1003), +(54323, 'My Friend Pasquale, and Other Stories', 'Tait, James Selwin', '2015-07-19', 10, 'https://www.gutenberg.org/ebooks/49484', 'en', 61), +(54324, 'The Dakotan Languages, and Their Relations to Other Languages', 'Williamson, A. W. (Andrew Woods)', '2008-09-04', 6, 'https://www.gutenberg.org/ebooks/26529', 'en', 17941), +(54325, 'Final Proof; Or, The Value of Evidence', 'Ottolengui, Rodrigues', '2011-04-18', 9, 'https://www.gutenberg.org/ebooks/35902', 'en', 61), +(54326, 'Märchen-Almanach auf das Jahr 1827', 'Hauff, Wilhelm', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6639', 'de', 900), +(54327, 'Kryss och landkänning', 'Engström, Albert', '2017-06-19', 10, 'https://www.gutenberg.org/ebooks/54935', 'sv', 6503), +(54328, 'Stories of the Old World', 'Church, Alfred John', '2013-10-19', 36, 'https://www.gutenberg.org/ebooks/43982', 'en', 2139), +(54329, 'In a Little Town', 'Hughes, Rupert', '2009-08-01', 51, 'https://www.gutenberg.org/ebooks/29561', 'en', 2358), +(54330, 'Parables of the Cross', 'Trotter, I. Lilias (Isabella Lilias)', '2007-08-01', 53, 'https://www.gutenberg.org/ebooks/22189', 'en', 2313), +(54331, 'The Pied Piper of Hamelin, and Other Poems\r\nEvery Boy\'s Library', 'Browning, Robert', '2013-05-30', 22, 'https://www.gutenberg.org/ebooks/42850', 'en', 17942), +(54332, 'The History of Signboards, from the Earliest times to the Present Day', 'Larwood, Jacob', '2014-03-28', 32, 'https://www.gutenberg.org/ebooks/45249', 'en', 17943), +(54333, 'The Great Round World and What Is Going On In It, Vol. 1, No. 27, May 13, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-04-04', 19, 'https://www.gutenberg.org/ebooks/15539', 'en', 1), +(54334, 'A Little Knowledge', 'Winterbotham, R. R. (Russell Robert)', '2019-05-26', 112, 'https://www.gutenberg.org/ebooks/59616', 'en', 8779), +(54335, 'The Tragedies of the Medici', 'Staley, Edgcumbe', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10877', 'en', 17944), +(54336, 'In the Arctic Seas\r\nA Narrative of the Discovery of the Fate of Sir John Franklin and his Companions', 'M\'Clintock, Francis Leopold, Sir', '2011-10-08', 32, 'https://www.gutenberg.org/ebooks/37669', 'en', 17945), +(54337, 'Life of John Coleridge Patteson : Missionary Bishop of the Melanesian Islands', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/4952', 'en', 17946), +(54338, 'Claire de Lune', 'Maupassant, Guy de', '2004-02-01', 43, 'https://www.gutenberg.org/ebooks/11199', 'fr', 100), +(54339, 'Doctrine of the Will', 'Mahan, Asa', '2012-01-20', 7, 'https://www.gutenberg.org/ebooks/38621', 'en', 4680), +(54340, 'Reina Valera New Testament of the Bible 1865', NULL, '2004-06-01', 15, 'https://www.gutenberg.org/ebooks/5880', 'es', 2781), +(54341, 'Growing Up: A Story of the Girlhood of Judith Mackenzie', 'Conklin, Nathaniel, Mrs.', '2013-03-24', 19, 'https://www.gutenberg.org/ebooks/42408', 'en', 2739), +(54342, 'The Chinese Fairy Book', NULL, '2009-09-08', 88, 'https://www.gutenberg.org/ebooks/29939', 'en', 15747), +(54343, 'The Back of Our Heads', 'Barr, Stephen', '2016-04-21', 51, 'https://www.gutenberg.org/ebooks/51823', 'en', 26), +(54344, 'Volcanoes', 'Tilling, Robert I.', '2014-09-18', 13, 'https://www.gutenberg.org/ebooks/46894', 'en', 9063), +(54345, 'Der Schimmelreiter', 'Storm, Theodor', '2006-11-15', 27, 'https://www.gutenberg.org/ebooks/19790', 'de', 4273), +(54346, 'Punch, or the London Charivari, Volume 99, August 30, 1890', 'Various', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12378', 'en', 134), +(54347, 'Hard Times', 'Dickens, Charles', '1997-01-01', 1124, 'https://www.gutenberg.org/ebooks/786', 'en', 95), +(54348, 'Women of the Romance Countries', 'Effinger, John R. (John Robert)', '2006-06-21', 14, 'https://www.gutenberg.org/ebooks/18642', 'en', 17947), +(54349, 'Myladyn poika: Historiallinen romaani', 'Dumas, Alexandre', '2015-01-11', 7, 'https://www.gutenberg.org/ebooks/47946', 'fi', 1127), +(54350, 'The Award of Justice; Or, Told in the Rockies: A Pen Picture of the West', 'Barbour, A. Maynard (Anna Maynard)', '2009-09-19', 14, 'https://www.gutenberg.org/ebooks/30028', 'en', 7600), +(54351, 'Chippings with a Chisel (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 21, 'https://www.gutenberg.org/ebooks/9215', 'en', 179), +(54352, 'Essays Upon Heredity and Kindred Biological Problems\nAuthorised Translation', 'Weismann, August', '2015-02-01', 17, 'https://www.gutenberg.org/ebooks/48132', 'en', 17948), +(54353, 'El pintor de Salzburgo', 'Nodier, Charles', '2009-06-12', 16, 'https://www.gutenberg.org/ebooks/29105', 'es', 17949), +(54354, 'Utopia', 'More, Thomas, Saint', '2008-10-20', 54, 'https://www.gutenberg.org/ebooks/26971', 'de', 1828), +(54355, 'The Cruise of the Frolic', 'Kingston, William Henry Giles', '2010-11-29', 33, 'https://www.gutenberg.org/ebooks/34488', 'en', 195), +(54356, 'Die Colonie: Brasilianisches Lebensbild. Zweiter Band.', 'Gerstäcker, Friedrich', '2009-12-31', 19, 'https://www.gutenberg.org/ebooks/30814', 'de', 138), +(54357, 'The Diplomatists of Europe', 'Capefigue, M. (Jean Baptiste Honoré Raymond)', '2016-12-17', 11, 'https://www.gutenberg.org/ebooks/53748', 'en', 17950), +(54358, 'The Scholemaster', 'Ascham, Roger', '1999-08-01', 38, 'https://www.gutenberg.org/ebooks/1844', 'en', 17951), +(54359, 'The Use and Abuse of Church Bells; With Practical Suggestions Concerning Them', 'Blunt, Walter', '2019-04-13', 6, 'https://www.gutenberg.org/ebooks/59272', 'en', 17952), +(54360, 'The Silver Canyon: A Tale of the Western Plains', 'Fenn, George Manville', '2007-05-08', 23, 'https://www.gutenberg.org/ebooks/21368', 'en', 17953), +(54361, 'Atlantic Classics, Second Series', NULL, '2011-12-07', 69, 'https://www.gutenberg.org/ebooks/38245', 'en', 4637), +(54362, 'The Scouts of the Valley', 'Altsheler, Joseph A. (Joseph Alexander)', '1997-10-01', 55, 'https://www.gutenberg.org/ebooks/1078', 'en', 17954), +(54363, 'One of Cleopatra\'s Nights and Other Fantastic Romances', 'Gautier, Théophile', '2012-04-07', 45, 'https://www.gutenberg.org/ebooks/39397', 'en', 179), +(54364, 'Turns of Fortune, and Other Tales', 'Hall, S. C., Mrs.', '2005-05-31', 18, 'https://www.gutenberg.org/ebooks/15961', 'en', 17955), +(54365, 'Johnny Ludlow, Fifth Series', 'Wood, Henry, Mrs.', '2012-10-06', 19, 'https://www.gutenberg.org/ebooks/40951', 'en', 409), +(54366, 'The Atlantic Monthly, Volume 16, No. 97, November, 1865\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2006-12-11', 6, 'https://www.gutenberg.org/ebooks/20088', 'en', 1227), +(54367, 'Winning His \"Y\": A Story of School Athletics', 'Barbour, Ralph Henry', '2018-10-30', 11, 'https://www.gutenberg.org/ebooks/58192', 'en', 845), +(54368, 'A Child\'s Guide to Pictures', 'Caffin, Charles H. (Charles Henry)', '2019-03-09', 15, 'https://www.gutenberg.org/ebooks/59040', 'en', 1258), +(54369, 'The Great Acceptance: The Life Story of F. N. Charrington', 'Thorne, Guy', '2012-06-15', 21, 'https://www.gutenberg.org/ebooks/39999', 'en', 1944), +(54370, 'Gesänge aus den drei Reichen: Ausgewählte Gedichte', 'Werfel, Franz', '2013-01-20', 16, 'https://www.gutenberg.org/ebooks/41883', 'de', 8), +(54371, 'Three Prayers and Sermons', 'Swift, Jonathan', '2003-12-01', 35, 'https://www.gutenberg.org/ebooks/4738', 'en', 17956), +(54372, 'The Polly Page Yacht Club', 'Forrester, Izola L. (Izola Louise)', '2018-03-24', 6, 'https://www.gutenberg.org/ebooks/56834', 'en', 13837), +(54373, 'Our Fathers Have Told Us\nPart I. The Bible of Amiens', 'Ruskin, John', '2008-01-26', 31, 'https://www.gutenberg.org/ebooks/24428', 'en', 624), +(54374, 'Rocky Mountain Boys; Or, Camping in the Big Game Country', 'Rathborne, St. George', '2011-10-19', 12, 'https://www.gutenberg.org/ebooks/37803', 'en', 8160), +(54375, 'British Birds in Their Haunts', 'Johns, C. A. (Charles Alexander)', '2011-11-21', 23, 'https://www.gutenberg.org/ebooks/38077', 'en', 9356), +(54376, 'Propos de ville et propos de théâtre', 'Murger, Henri', '2007-06-29', 15, 'https://www.gutenberg.org/ebooks/21966', 'fr', 2508), +(54377, 'Mirèio, a Provençal Poem', 'Mistral, Frédéric', '2017-11-19', 38, 'https://www.gutenberg.org/ebooks/56008', 'en', 17957), +(54378, 'Synthetic Tannins, Their Synthesis, Industrial Production and Application', 'Grasser, Georg', '2005-04-01', 34, 'https://www.gutenberg.org/ebooks/7981', 'en', 17958), +(54379, 'Alonzo Fitz and Other Stories', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9027', 'en', 179), +(54380, 'Scientific American, Volume 56, No. 9, February 26, 1887', 'Various', '2015-02-18', 25, 'https://www.gutenberg.org/ebooks/48300', 'en', 210), +(54381, 'Betty Gordon in Washington; Or, Strange Adventures in a Great City', 'Emerson, Alice B.', '2004-11-01', 42, 'https://www.gutenberg.org/ebooks/6853', 'en', 17959), +(54382, 'The Second Latchkey', 'Williamson, A. M. (Alice Muriel)', '2006-05-29', 27, 'https://www.gutenberg.org/ebooks/18470', 'en', 109), +(54383, 'Punch, or the London Charivari, Volume 100, February 28, 1891', 'Various', '2004-08-03', 8, 'https://www.gutenberg.org/ebooks/13098', 'en', 134), +(54384, 'Early Israel and the Surrounding Nations', 'Sayce, A. H. (Archibald Henry)', '2004-07-21', 54, 'https://www.gutenberg.org/ebooks/12976', 'en', 1368), +(54385, 'Joseph Bonaparte\nMakers of History', 'Abbott, John S. C. (John Stevens Cabot)', '2011-04-04', 21, 'https://www.gutenberg.org/ebooks/35768', 'en', 17960), +(54386, 'Japanese Fairy World\nStories from the Wonder-Lore of Japan', 'Griffis, William Elliot', '2009-07-06', 44, 'https://www.gutenberg.org/ebooks/29337', 'en', 1304), +(54387, 'Mrs. Wilson\'s Cook Book\nNumerous New Recipes Based on Present Economic Conditions', 'Wilson, Mary A.', '2006-01-01', 62, 'https://www.gutenberg.org/ebooks/17438', 'en', 103), +(54388, 'Boscobel; or, the royal oak: A tale of the year 1651', 'Ainsworth, William Harrison', '2014-11-14', 32, 'https://www.gutenberg.org/ebooks/47348', 'en', 16616), +(54389, 'Reminiscences of the Nineteenth Massachusetts Regiment', 'Adams, John G. B. (John Gregory Bishop)', '2015-05-21', 8, 'https://www.gutenberg.org/ebooks/49014', 'en', 444), +(54390, 'The Bible, Douay-Rheims, Book 33: Osee\nThe Challoner Revision', NULL, '2005-06-01', 2, 'https://www.gutenberg.org/ebooks/8333', 'en', 14054), +(54391, 'O Napoleão de Notting Hill', 'Chesterton, G. K. (Gilbert Keith)', '2014-09-15', 33, 'https://www.gutenberg.org/ebooks/46860', 'pt', 17961), +(54392, 'The Moccasin Ranch: A Story of Dakota', 'Garland, Hamlin', '2006-11-11', 28, 'https://www.gutenberg.org/ebooks/19764', 'en', 17962), +(54393, 'Moral Emblems', 'Stevenson, Robert Louis', '1997-01-01', 170, 'https://www.gutenberg.org/ebooks/772', 'en', 8), +(54394, 'The Case for Birth Control: A Supplementary Brief and Statement of Facts', 'Sanger, Margaret', '2017-04-24', 16, 'https://www.gutenberg.org/ebooks/54599', 'en', 7357), +(54395, 'The Vicomte De Bragelonne', 'Dumas, Alexandre', '2001-04-01', 276, 'https://www.gutenberg.org/ebooks/2609', 'en', 1127), +(54396, 'Yesterday House', 'Leiber, Fritz', '2016-01-12', 45, 'https://www.gutenberg.org/ebooks/50905', 'en', 1541), +(54397, 'Christmas Every Day and Other Stories', 'Howells, William Dean', '2007-09-05', 36, 'https://www.gutenberg.org/ebooks/22519', 'en', 179), +(54398, 'De Abbé Constantijn', 'Halévy, Ludovic', '2015-08-30', 5, 'https://www.gutenberg.org/ebooks/49828', 'nl', 12607), +(54399, 'Contamination Crew', 'Nourse, Alan Edward', '2010-04-09', 35, 'https://www.gutenberg.org/ebooks/31932', 'en', 179), +(54400, 'Killykinick', 'Waggaman, Mary T. (Mary Theresa)', '2008-10-21', 29, 'https://www.gutenberg.org/ebooks/26985', 'en', 12970), +(54401, 'The Dominant Dollar', 'Lillibridge, Will', '2009-01-21', 18, 'https://www.gutenberg.org/ebooks/27857', 'en', 61), +(54402, 'A Practical Treatise on the Manufacture of Perfumery\r\nComprising directions for making all kinds of perfumes, sachet powders, fumigating materials, dentrifices, cosmetics, etc., etc., with a full account of the volatile oils, balsams, resins, and other natural and artificial perfume-substances, including the manufacture of fruit ethers, and tests of their purity', 'Deite, C. (Carl)', '2015-10-06', 52, 'https://www.gutenberg.org/ebooks/50139', 'en', 17963), +(54403, 'Pictorial Photography in America 1921', 'Pictorial Photographers of America', '2009-02-08', 22, 'https://www.gutenberg.org/ebooks/28023', 'en', 17670), +(54404, 'Viisas tyttö', 'Walford, Lucy Bethia', '2018-11-25', 4, 'https://www.gutenberg.org/ebooks/58354', 'fi', 10767), +(54405, 'The Disadvantages and Opportunities of the Colored Youth', 'Ransom, Reverdy C. (Reverdy Cassius)', '2019-04-15', 11, 'https://www.gutenberg.org/ebooks/59286', 'en', 17964), +(54406, 'Veden päällä liikkuva kaupunki', 'Verne, Jules', '2005-01-31', 28, 'https://www.gutenberg.org/ebooks/14847', 'fi', 17965), +(54407, 'Mammals of Northwestern South Dakota', 'Jones, J. Knox', '2010-09-07', 12, 'https://www.gutenberg.org/ebooks/33659', 'en', 7481), +(54408, 'The Life of Jesus Christ for the Young, Vol. 3', 'Newton, Richard', '2004-03-01', 18, 'https://www.gutenberg.org/ebooks/11509', 'en', 9355), +(54409, 'Salambo: Ein Roman aus Alt-Karthago', 'Flaubert, Gustave', '2005-06-06', 50, 'https://www.gutenberg.org/ebooks/15995', 'de', 98), +(54410, 'Observations d\'un sourd et muèt sur un cours élémentaire d\'éducation des sourds et muèts publié en 1779 par M. l\'Abbé Deshamps, Chapelain de l\'Église d\'Orléans', 'Desloges, Pierre', '2012-04-03', 9, 'https://www.gutenberg.org/ebooks/39363', 'fr', 17966), +(54411, 'The Butterfly Book\nA Popular Guide to a Knowledge of the Butterflies of North America', 'Holland, W. J. (William Jacob)', '2012-11-03', 49, 'https://www.gutenberg.org/ebooks/41279', 'en', 10917), +(54412, 'The Rt. Hon. John Bright M.P.\r\nCartoons from the Collection of \"Mr. Punch\"', 'Various', '2013-12-29', 4, 'https://www.gutenberg.org/ebooks/44539', 'en', 1688), +(54413, 'A Class Room Logic\r\nDeductive and Inductive, with Special Application to the Science and Art of Teaching', 'McNair, George Hastings', '2018-09-16', 22, 'https://www.gutenberg.org/ebooks/57912', 'en', 4797), +(54414, 'The Art of Tying the Cravat; Demonstrated in sixteen lessons', 'Le Blanc, H.', '2018-10-25', 15, 'https://www.gutenberg.org/ebooks/58166', 'en', 17967), +(54415, 'Half A Chance', 'Isham, Frederic Stewart', '2004-12-03', 27, 'https://www.gutenberg.org/ebooks/14249', 'en', 4448), +(54416, 'The Lure of the Mississippi', 'Lange, D. (Dietrich)', '2013-01-19', 37, 'https://www.gutenberg.org/ebooks/41877', 'en', 6027), +(54417, 'The Cinder Pond', 'Rankin, Carroll Watson', '2011-05-15', 22, 'https://www.gutenberg.org/ebooks/36119', 'en', 17968), +(54418, 'Mabel: A Novel. Vol. 2 (of 3)', 'Newby, C. J., Mrs.', '2012-07-10', 7, 'https://www.gutenberg.org/ebooks/40199', 'en', 61), +(54419, 'Rebel Spurs', 'Norton, Andre', '2007-03-17', 102, 'https://www.gutenberg.org/ebooks/20840', 'en', 17969), +(54420, 'A Mere Chance: A Novel. Vol. 1', 'Cambridge, Ada', '2011-11-22', 11, 'https://www.gutenberg.org/ebooks/38083', 'en', 348), +(54421, 'Termini medici in lingua fennica occurrentes\nDissertatio academica', 'Törngren, Johannes Agapetus', '2019-07-10', 21, 'https://www.gutenberg.org/ebooks/59888', 'la', 17970), +(54422, 'Swift and Sure: The Story of a Hydroplane', 'Strang, Herbert', '2012-03-14', 154, 'https://www.gutenberg.org/ebooks/39151', 'en', 17971), +(54423, 'Christianity and Progress', 'Fosdick, Harry Emerson', '2007-07-19', 5, 'https://www.gutenberg.org/ebooks/21992', 'en', 2566), +(54424, 'Indian and Other Tales', 'Hope, M. L.', '2011-07-31', 7, 'https://www.gutenberg.org/ebooks/36925', 'en', 28), +(54425, 'Kalevala katsottuna kaunotieteen kannalta', 'Krohn, Julius', '2006-10-16', 9, 'https://www.gutenberg.org/ebooks/19556', 'fi', 5727), +(54426, 'Presiding Ladies of the White House\r\ncontaining biographical appreciations together with a short history of the Executive mansion and a treatise on its etiquette and customs', 'Woolfall, Lila G. A.', '2017-10-05', 40, 'https://www.gutenberg.org/ebooks/55679', 'en', 4289), +(54427, 'Memoirs of James Robert Hope-Scott, Volume 2', 'Ornsby, Robert', '2005-04-01', 32, 'https://www.gutenberg.org/ebooks/7975', 'en', 17972), +(54428, 'George Frideric Handel', 'Peyser, Herbert F. (Herbert Francis)', '2015-06-17', 16, 'https://www.gutenberg.org/ebooks/49226', 'en', 8480), +(54429, 'Bertram Cope\'s Year', 'Fuller, Henry Blake', '2005-05-01', 28, 'https://www.gutenberg.org/ebooks/8101', 'en', 2394), +(54430, 'The Red Fairy Book', NULL, '1996-05-01', 442, 'https://www.gutenberg.org/ebooks/540', 'en', 1223), +(54431, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nGeorgia Narratives, Part 3', 'United States. Work Projects Administration', '2006-06-01', 29, 'https://www.gutenberg.org/ebooks/18484', 'en', 17814), +(54432, 'A Soldier in the Philippines', 'Freeman, Needom N.', '2008-11-14', 7, 'https://www.gutenberg.org/ebooks/27259', 'en', 17973), +(54433, 'International Weekly Miscellany of Literature, Art and Science — Volume 1, No. 3, July 15, 1850', 'Various', '2004-07-22', 3, 'https://www.gutenberg.org/ebooks/12982', 'en', 380), +(54434, 'The Poetical Works of Henry Kirk White : With a Memoir by Sir Harris Nicolas', 'White, Henry Kirke', '2004-12-01', 33, 'https://www.gutenberg.org/ebooks/7149', 'en', 8), +(54435, 'Alfred de Musset et George Sand\ndessins par Alfred de Musset', 'Clouard, Maurice', '2009-02-27', 22, 'https://www.gutenberg.org/ebooks/28211', 'fr', 1285), +(54436, 'Panu', 'Aho, Juhani', '2004-10-25', 24, 'https://www.gutenberg.org/ebooks/13850', 'fi', 7410), +(54437, 'The Invasion of America: a fact story based on the inexorable mathematics of war', 'Muller, J. W. (Julius Washington)', '2016-05-10', 25, 'https://www.gutenberg.org/ebooks/52038', 'en', 8507), +(54438, 'La desheredada', 'Pérez Galdós, Benito', '2008-07-02', 62, 'https://www.gutenberg.org/ebooks/25956', 'es', 818), +(54439, 'Commercial Geography\nA Book for High Schools, Commercial Courses, and Business Colleges', 'Redway, Jacques W. (Jacques Wardlaw)', '2008-03-20', 51, 'https://www.gutenberg.org/ebooks/24884', 'en', 17974), +(54440, 'Lords of the North', 'Laut, Agnes C.', '2007-01-22', 20, 'https://www.gutenberg.org/ebooks/20418', 'en', 315), +(54441, 'Madame X: a story of mother-love', 'McConaughy, J. W.', '2018-12-19', 7, 'https://www.gutenberg.org/ebooks/58502', 'en', 2833), +(54442, 'Glories of Spain', 'Wood, Charles W. (Charles William)', '2010-10-03', 17, 'https://www.gutenberg.org/ebooks/33833', 'en', 1514), +(54443, 'History of European Morals From Augustus to Charlemagne (Vol. 2 of 2)', 'Lecky, William Edward Hartpole', '2012-04-15', 70, 'https://www.gutenberg.org/ebooks/39535', 'en', 680), +(54444, 'The Squaw Man: A Novel', 'Royle, Edwin Milton', '2016-08-14', 26, 'https://www.gutenberg.org/ebooks/52804', 'en', 17975), +(54445, 'La mandragola - La Clizia - Belfagor', 'Machiavelli, Niccolò', '2018-02-04', 77, 'https://www.gutenberg.org/ebooks/56498', 'it', 407), +(54446, 'Reise zur deutschen Front, 1915', 'Ganghofer, Ludwig', '2014-02-18', 30, 'https://www.gutenberg.org/ebooks/44961', 'de', 449), +(54447, 'Franco-Gallia\nOr, An Account of the Ancient Free State of France, and\nMost Other Parts of Europe, Before the Loss of Their\nLiberties', 'Hotman, François', '2006-03-01', 31, 'https://www.gutenberg.org/ebooks/17894', 'en', 4591), +(54448, 'The Catholic World, Vol. 15, Nos. 85-90, April 1872-September 1872\r\nA Monthly Magazine', 'Various', '2015-04-25', 7, 'https://www.gutenberg.org/ebooks/48790', 'en', 96), +(54449, 'Excursions in the mountains of Ronda and Granada, with characteristic sketches of the inhabitants of southern Spain, vol. 1/2', 'Scott, C. Rochfort‏ (Charles Rochfort)', '2013-08-01', 20, 'https://www.gutenberg.org/ebooks/43378', 'en', 1514), +(54450, 'Deuterocanonical Books of the Bible\r\nApocrypha', 'Anonymous', '1994-04-01', 388, 'https://www.gutenberg.org/ebooks/124', 'en', 17976), +(54451, 'Our Stage and Its Critics\r\nBy \"E.F.S.\" of \"The Westminster Gazette\"', 'Spence, Edward Fordham', '2004-09-09', 12, 'https://www.gutenberg.org/ebooks/13408', 'en', 402), +(54452, 'Banbury Chap Books and Nursery Toy Book Literature\r\n[of the XVIII. and Early XIX. Centuries]', 'Pearson, Edwin', '2006-08-28', 22, 'https://www.gutenberg.org/ebooks/19132', 'en', 17977), +(54453, 'The Girl\'s Own Paper, Vol. XX, No. 983, October 29, 1898', 'Various', '2015-08-06', 23, 'https://www.gutenberg.org/ebooks/49642', 'en', 563), +(54454, 'A Book of German Lyrics', NULL, '2005-07-01', 67, 'https://www.gutenberg.org/ebooks/8565', 'de', 5045), +(54455, 'Kitty Canary: A Novel', 'Bosher, Kate Langley', '2005-10-25', 10, 'https://www.gutenberg.org/ebooks/16946', 'en', 348), +(54456, 'Call Him Savage', 'Browne, Howard', '2010-03-24', 13, 'https://www.gutenberg.org/ebooks/31758', 'en', 26), +(54457, 'Satires of Circumstance, Lyrics and Reveries, with Miscellaneous Pieces', 'Hardy, Thomas', '2001-10-01', 51, 'https://www.gutenberg.org/ebooks/2863', 'en', 54), +(54458, 'Red Men and White', 'Wister, Owen', '2009-05-04', 32, 'https://www.gutenberg.org/ebooks/28675', 'en', 3196), +(54459, 'Sketches of Young Gentlemen', 'Dickens, Charles', '1997-05-01', 76, 'https://www.gutenberg.org/ebooks/918', 'en', 3136), +(54460, 'The Golden Road', 'Montgomery, L. M. (Lucy Maud)', '2008-07-05', 255, 'https://www.gutenberg.org/ebooks/316', 'en', 17978), +(54461, 'Roger Davis, Loyalist', 'Baird, Frank', '2011-02-15', 15, 'https://www.gutenberg.org/ebooks/34824', 'en', 8903), +(54462, 'Moll Flanders', 'Defoe, Daniel', '2006-01-01', 17, 'https://www.gutenberg.org/ebooks/9685', 'en', 89), +(54463, 'The Melting-Pot', 'Zangwill, Israel', '2007-12-18', 81, 'https://www.gutenberg.org/ebooks/23893', 'en', 13785), +(54464, 'Con la Pluma y con el Sable: Crónica de 1820 a 1823', 'Baroja, Pío', '2015-07-18', 19, 'https://www.gutenberg.org/ebooks/49470', 'es', 731), +(54465, 'Punch, or the London Charivari, Vol. 150, May 3, 1916', 'Various', '2007-10-10', 10, 'https://www.gutenberg.org/ebooks/22941', 'en', 134), +(54466, 'Windows: A Book About Stained & Painted Glass', 'Day, Lewis F. (Lewis Foreman)', '2013-02-15', 16, 'https://www.gutenberg.org/ebooks/42098', 'en', 9040), +(54467, 'At the Earth\'s Core', 'Burroughs, Edgar Rice', '2005-08-01', 33, 'https://www.gutenberg.org/ebooks/8757', 'en', 26), +(54468, 'A Traveler\'s Narrative Written to Illustrate the Episode of the Báb', '`Abdu\'l-Bahá', '2006-09-18', 25, 'https://www.gutenberg.org/ebooks/19300', 'en', 17979), +(54469, 'Encyclopaedia Britannica, 11th Edition, \"Anjar\" to \"Apollo\"\r\nVolume 2, Slice 2', 'Various', '2010-10-02', 44, 'https://www.gutenberg.org/ebooks/34018', 'en', 1081), +(54470, 'A Treatise of Schemes and Tropes', 'Sherry, Richard', '2009-03-30', 22, 'https://www.gutenberg.org/ebooks/28447', 'en', 17980), +(54471, 'Ancient Plants\r\nBeing a Simple Account of the past Vegetation of the Earth and of the Recent Important Discoveries Made in This Realm of Nature', 'Stopes, Marie Carmichael', '2013-10-18', 33, 'https://www.gutenberg.org/ebooks/43976', 'en', 16650), +(54472, 'Funny Little Socks\nBeing the Fourth Book', 'Barrow, Sarah L.', '2009-08-03', 14, 'https://www.gutenberg.org/ebooks/29595', 'en', 859), +(54473, 'Dreamland', 'Lippmann, Julie M.', '2005-07-23', 8, 'https://www.gutenberg.org/ebooks/16348', 'en', 388), +(54474, 'Archery Rules', 'Hinrichs, Charles F. A.', '2014-07-28', 17, 'https://www.gutenberg.org/ebooks/46438', 'en', 8616), +(54475, 'Autobiography of a Female Slave', 'Browne, Martha Griffith', '2017-10-25', 37, 'https://www.gutenberg.org/ebooks/55813', 'en', 9849), +(54476, 'A Popular History of France from the Earliest Times, Volume 1', 'Guizot, François', '2004-04-01', 65, 'https://www.gutenberg.org/ebooks/11951', 'en', 624), +(54477, 'Miracle by Price', 'Cox, Irving E.', '2019-01-19', 20, 'https://www.gutenberg.org/ebooks/58730', 'en', 4884), +(54478, 'Dio\'s Rome, Volume 4\r\nAn Historical Narrative Originally Composed in Greek During the\r\nReigns of Septimius Severus, Geta and Caracalla, Macrinus,\r\nElagabalus and Alexander Severus: and Now Presented in English Form', 'Cassius Dio Cocceianus', '2004-01-01', 71, 'https://www.gutenberg.org/ebooks/10883', 'en', 6793), +(54479, 'State of the Union Addresses', 'Clinton, Bill', '2004-02-01', 5, 'https://www.gutenberg.org/ebooks/5048', 'en', 1276), +(54480, 'Bert Lloyd\'s Boyhood: A Story from Nova Scotia', 'Oxley, J. Macdonald (James Macdonald)', '2008-05-06', 14, 'https://www.gutenberg.org/ebooks/25358', 'en', 1655), +(54481, 'Mr. Punch\'s Life in London', NULL, '2012-05-15', 17, 'https://www.gutenberg.org/ebooks/39707', 'en', 17981), +(54482, 'A Sheaf', 'Galsworthy, John', '2018-08-26', 20, 'https://www.gutenberg.org/ebooks/57778', 'en', 20), +(54483, 'Dawn', 'Porter, Eleanor H. (Eleanor Hodgman)', '2004-06-01', 33, 'https://www.gutenberg.org/ebooks/5874', 'en', 2526), +(54484, 'The Lucky Man', 'Baron, Monsieur (Michel)', '2004-01-01', 10, 'https://www.gutenberg.org/ebooks/4906', 'en', 901), +(54485, 'Heidi', 'Spyri, Johanna', '1998-09-01', 264, 'https://www.gutenberg.org/ebooks/1448', 'en', 264), +(54486, 'Hoof and Claw', 'Roberts, Charles G. D., Sir', '2012-01-26', 20, 'https://www.gutenberg.org/ebooks/38675', 'en', 4589), +(54487, 'Old Days at Beverly Farms', 'Dow, Mary Larcom', '2019-05-31', 41, 'https://www.gutenberg.org/ebooks/59642', 'en', 17982), +(54488, 'Hudson Bay', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 26, 'https://www.gutenberg.org/ebooks/21758', 'en', 9661), +(54489, 'Reise durch England und Schottland', 'Schopenhauer, Johanna', '2004-01-01', 31, 'https://www.gutenberg.org/ebooks/10823', 'de', 2364), +(54490, 'A Mother\'s Year Book', NULL, '2016-10-26', 11, 'https://www.gutenberg.org/ebooks/53378', 'en', 17983), +(54491, 'A Cold Night for Crying', 'Marlowe, Stephen', '2019-01-30', 22, 'https://www.gutenberg.org/ebooks/58790', 'en', 26), +(54492, 'How a Farthing Made a Fortune; or \"Honesty is the best policy\"', 'Bowen, C. E. (Charlotte Elizabeth)', '2017-06-22', 9, 'https://www.gutenberg.org/ebooks/54961', 'en', 11271), +(54493, 'The Life of Sir Rowland Hill and the History of Penny Postage, Vol. 2 (of 2)', 'Hill, George Birkbeck Norman', '2014-08-03', 17, 'https://www.gutenberg.org/ebooks/46498', 'en', 17984), +(54494, 'Buff: A Collie, and Other Dog-Stories', 'Terhune, Albert Payson', '2013-05-25', 33, 'https://www.gutenberg.org/ebooks/42804', 'en', 766), +(54495, 'The Hands', 'Sternbach, Richard A.', '2009-07-29', 30, 'https://www.gutenberg.org/ebooks/29535', 'en', 179), +(54496, 'Buried Cities, Volume 1: Pompeii', 'Hall, Jennie', '2004-08-10', 12, 'https://www.gutenberg.org/ebooks/9625', 'en', 10290), +(54497, 'Traditional Nursery Songs of England\nWith Pictures by Eminent Modern Artists', NULL, '2009-11-07', 10, 'https://www.gutenberg.org/ebooks/30418', 'en', 672), +(54498, '商君書', 'Shang, Yang', '2007-12-12', 8, 'https://www.gutenberg.org/ebooks/23833', 'zh', 17985), +(54499, 'Der Held von Uganda: Leben und Wirken des Pioniermissionars Alexander Mackay', 'Schneider, Carl', '2015-03-16', 7, 'https://www.gutenberg.org/ebooks/48502', 'de', 17986), +(54500, 'Valikoima runoelmia', 'Tavaststjerna, Karl August', '2006-04-27', 11, 'https://www.gutenberg.org/ebooks/18272', 'fi', 8), +(54501, 'Tales of the Trains\r\nBeing Some Chapters of Railroad Romance by Tilbury Tramp, Queen\'s Messenger', 'Lever, Charles James', '2011-01-08', 28, 'https://www.gutenberg.org/ebooks/34884', 'en', 179), +(54502, 'Recollections of My Youth', 'Renan, Ernest', '2004-06-26', 26, 'https://www.gutenberg.org/ebooks/12748', 'en', 152), +(54503, 'A Northern Countryside', 'Richards, Rosalind', '2011-04-25', 9, 'https://www.gutenberg.org/ebooks/35956', 'en', 17987), +(54504, 'Notes and Queries, Number 136, June 5, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-07', 6, 'https://www.gutenberg.org/ebooks/42038', 'en', 105), +(54505, 'Battle of the Crater; and Experiences of Prison Life', 'Shearman, Sumner U. (Sumner Upham)', '2014-12-25', 20, 'https://www.gutenberg.org/ebooks/47778', 'en', 2363), +(54506, 'A Counter-Blaste to Tobacco', 'James I, King of England', '2005-11-05', 24, 'https://www.gutenberg.org/ebooks/17008', 'en', 8609), +(54507, 'Jordens Inre', 'Witt, Otto', '2009-08-16', 14, 'https://www.gutenberg.org/ebooks/29707', 'sv', 26), +(54508, 'The Confessions of Jean Jacques Rousseau — Volume 11', 'Rousseau, Jean-Jacques', '2004-12-06', 45, 'https://www.gutenberg.org/ebooks/3911', 'en', 1419), +(54509, 'A Song of a Single Note: A Love Story', 'Barr, Amelia E.', '2011-02-22', 8, 'https://www.gutenberg.org/ebooks/35358', 'en', 48), +(54510, '\"Thirty Years In Hell\" Or, \"From Darkness to Light\"', 'Fresenborg, Bernard', '2006-03-23', 25, 'https://www.gutenberg.org/ebooks/18040', 'en', 4859), +(54511, 'Far from the Madding Crowd', 'Hardy, Thomas', '2005-12-01', 12, 'https://www.gutenberg.org/ebooks/9417', 'en', 2815), +(54512, 'La Zaffetta\nRaccolta di rarissimi opuscoli italiani degli XV e XVI secoli II', 'Veniero, Lorenzo', '2006-02-23', 19, 'https://www.gutenberg.org/ebooks/17834', 'it', 8), +(54513, 'Elderflowers', 'Raabe, Wilhelm', '2015-04-18', 10, 'https://www.gutenberg.org/ebooks/48730', 'en', 17988), +(54514, 'What is Darwinism?', 'Hodge, Charles', '2006-09-06', 86, 'https://www.gutenberg.org/ebooks/19192', 'en', 5893), +(54515, 'Our sentimental journey through France and Italy\nA new edition with Appendix', 'Pennell, Elizabeth Robins', '2018-01-26', 18, 'https://www.gutenberg.org/ebooks/56438', 'en', 17989), +(54516, 'John Leech\'s Pictures of Life and Character, Vol. 3 (of 3)\r\nFrom the Collection of \"Mr. Punch\"', 'Leech, John', '2014-06-01', 13, 'https://www.gutenberg.org/ebooks/45813', 'en', 2965), +(54517, 'The Hall and the Grange: A Novel', 'Marshall, Archibald', '2012-05-02', 19, 'https://www.gutenberg.org/ebooks/39595', 'en', 400), +(54518, 'Why Armenia Should Be Free: Armenia\'s Rôle in the Present War', 'Garo, Armen', '2017-01-16', 11, 'https://www.gutenberg.org/ebooks/53976', 'en', 15037), +(54519, 'Adventures in Swaziland: The Story of a South African Boer', 'O\'Neil, Owen Rowe', '2011-12-30', 30, 'https://www.gutenberg.org/ebooks/38447', 'en', 17990), +(54520, 'The Golfer\'s Rubaiyat', 'Boynton, Henry Walcott', '2007-12-24', 21, 'https://www.gutenberg.org/ebooks/24018', 'en', 5509), +(54521, 'The Town Traveller', 'Gissing, George', '2003-08-01', 24, 'https://www.gutenberg.org/ebooks/4308', 'en', 45), +(54522, 'Tachyhippodamia; Or, The new secret of taming horses\r\nTo which is added The breaking, training, and taming horses', 'Powell, Willis J.', '2016-05-18', 17, 'https://www.gutenberg.org/ebooks/52098', 'en', 4743), +(54523, '何處へ', 'Masamune, Hakuchō', '2010-06-21', 67, 'https://www.gutenberg.org/ebooks/32941', 'ja', 61), +(54524, 'Laboratory', 'Bixby, Jerome', '2019-05-10', 88, 'https://www.gutenberg.org/ebooks/59470', 'en', 424), +(54525, 'Mémoires de madame de Rémusat (1/3)\r\npubliées par son petit-fils, Paul de Rémusat', 'Rémusat, Madame de (Claire Elisabeth Jeanne Gravier de Vergennes)', '2010-10-30', 13, 'https://www.gutenberg.org/ebooks/33893', 'fr', 1870), +(54526, 'Os deputados brasileiros nas Côrtes Geraes de 1821', 'Carvalho, Manuel Emílio Gomes de', '2008-03-14', 12, 'https://www.gutenberg.org/ebooks/24824', 'pt', 17991), +(54527, 'Henry Esmond; The English Humourists; The Four Georges', 'Thackeray, William Makepeace', '2009-07-10', 40, 'https://www.gutenberg.org/ebooks/29363', 'en', 4464), +(54528, 'Novelleja ja Kertomuksia III', 'Various', '2016-02-22', 1, 'https://www.gutenberg.org/ebooks/51279', 'fi', 179), +(54529, 'Burke', 'Morley, John', '2004-07-17', 24, 'https://www.gutenberg.org/ebooks/12922', 'en', 17992), +(54530, '21', 'Crane, Frank', '2007-11-29', 17, 'https://www.gutenberg.org/ebooks/23659', 'en', 740), +(54531, 'Custer\'s Last Shot; or, The Boy Trailer of the Little Horn', 'Travers, J. M., Col.', '2015-06-26', 17, 'https://www.gutenberg.org/ebooks/49286', 'en', 17993), +(54532, 'Cowley\'s Essays', 'Cowley, Abraham', '2002-11-01', 33, 'https://www.gutenberg.org/ebooks/3549', 'en', 779), +(54533, 'A Midsummer Holiday and Other Poems', 'Swinburne, Algernon Charles', '2006-05-19', 13, 'https://www.gutenberg.org/ebooks/18424', 'en', 8), +(54534, 'Pickle the Spy; Or, the Incognito of Prince Charles', 'Lang, Andrew', '2004-11-01', 27, 'https://www.gutenberg.org/ebooks/6807', 'en', 5814), +(54535, 'The Roof of France; Or, the Causses of the Lozère', 'Betham-Edwards, Matilda', '2005-10-01', 17, 'https://www.gutenberg.org/ebooks/9073', 'en', 17994), +(54536, 'Cleg Kelly, Arab of the City: His Progress and Adventures', 'Crockett, S. R. (Samuel Rutherford)', '2015-02-24', 14, 'https://www.gutenberg.org/ebooks/48354', 'en', 2720), +(54537, 'Σύντομος αφήγησις του βίου του Ιωάννου Καποδιστρίου', 'Vrokines, Laurentios S.', '2012-07-04', 8, 'https://www.gutenberg.org/ebooks/40139', 'el', 926), +(54538, 'Memoirs of an American Prima Donna', 'Kellogg, Clara Louise', '2011-11-15', 17, 'https://www.gutenberg.org/ebooks/38023', 'en', 17995), +(54539, 'Beacon Lights of History, Volume 14: The New Era\r\nA Supplementary Volume, by Recent Writers, as Set Forth in the Preface and Table of Contents', 'Lord, John', '2004-01-01', 39, 'https://www.gutenberg.org/ebooks/10649', 'en', 7868), +(54540, 'The Haunted Mine', 'Castlemon, Harry', '2011-10-26', 5, 'https://www.gutenberg.org/ebooks/37857', 'en', 3242), +(54541, 'The eBook is 40 (1971-2011)', 'Lebert, Marie', '2011-08-06', 23, 'https://www.gutenberg.org/ebooks/36985', 'en', 2047), +(54542, 'The String of Pearls; Or, The Barber of Fleet Street. A Domestic Romance.', 'Prest, Thomas Peckett', '2019-06-28', 137, 'https://www.gutenberg.org/ebooks/59828', 'en', 1335), +(54543, 'Christovam Colombo e o descobrimento da America', 'Silva, J. M. Pereira da (João Manuel Pereira)', '2010-05-24', 33, 'https://www.gutenberg.org/ebooks/32519', 'pt', 3403), +(54544, 'Embarrassments', 'James, Henry', '2007-06-25', 35, 'https://www.gutenberg.org/ebooks/21932', 'en', 61), +(54545, 'Defenders of Democracy', 'Anonymous', '2012-09-30', 8, 'https://www.gutenberg.org/ebooks/40905', 'en', 17996), +(54546, 'Beyond the Marne: Quincy, Huiry, Voisins before and during the battle', 'Cuvru-Magot, Henriette', '2014-01-06', 17, 'https://www.gutenberg.org/ebooks/44599', 'en', 17997), +(54547, 'The Conquest of Plassans (La Conquête de Plassans)', 'Zola, Émile', '2018-03-27', 18, 'https://www.gutenberg.org/ebooks/56860', 'en', 2373), +(54548, 'The Journal of Prison Discipline and Philanthropy, March 1912\nNew Series No. 51', 'Pennsylvania Prison Society', '2019-03-05', 1, 'https://www.gutenberg.org/ebooks/59014', 'en', 4611), +(54549, 'De H. Nikolaas in het folklore', 'Schrijnen, Jos.', '2011-12-05', 5, 'https://www.gutenberg.org/ebooks/38211', 'nl', 17998), +(54550, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 276, October 6, 1827', 'Various', '2005-05-29', 1, 'https://www.gutenberg.org/ebooks/15935', 'en', 133), +(54551, 'Wild Honey: Stories of South Africa', 'Stockley, Cynthia', '2011-08-29', 7, 'https://www.gutenberg.org/ebooks/37259', 'en', 179), +(54552, 'A Second Home', 'Balzac, Honoré de', '2005-08-29', 17, 'https://www.gutenberg.org/ebooks/1810', 'en', 58), +(54553, 'Index of the Project Gutenberg Works of Samuel Taylor Coleridge', 'Coleridge, Samuel Taylor', '2019-04-08', 15, 'https://www.gutenberg.org/ebooks/59226', 'en', 198), +(54554, 'A Woman\'s Part in a Revolution', 'Hammond, Natalie Harris', '2005-02-19', 11, 'https://www.gutenberg.org/ebooks/15109', 'en', 7296), +(54555, 'Les grandes chroniques de France (5/6)\nselon que elles sont conservées en l\'Eglise de Saint-Denis en France', NULL, '2014-05-18', 14, 'https://www.gutenberg.org/ebooks/45679', 'fr', 1168), +(54556, 'The Bradys Beyond Their Depth; Or, The Great Swamp Mystery', 'Doughty, Francis Worcester', '2008-10-14', 15, 'https://www.gutenberg.org/ebooks/26925', 'en', 61), +(54557, 'Telepathy, Genuine and Fraudulent', 'Baggally, W. W. (William Wortley)', '2009-06-17', 11, 'https://www.gutenberg.org/ebooks/29151', 'en', 102), +(54558, 'A Hermit of Carmel, and Other Poems', 'Santayana, George', '2015-09-06', 16, 'https://www.gutenberg.org/ebooks/49888', 'en', 178), +(54559, 'Titanic', 'Young, Filson', '2010-04-15', 66, 'https://www.gutenberg.org/ebooks/31992', 'en', 17999), +(54560, 'The Girls of Central High on Lake Luna; Or, The Crew That Won', 'Morrison, Gertrude W.', '2010-01-04', 26, 'https://www.gutenberg.org/ebooks/30840', 'en', 1669), +(54561, 'Omantunnon mato: 3-näytöksinen (4 kuvaelmaa) kansannäytelmä lauluineen', 'Anzengruber, Ludwig', '2015-10-13', 15, 'https://www.gutenberg.org/ebooks/50199', 'fi', 18000), +(54562, 'Semper der Jüngling', 'Schmidt, Otto Ernst', '2009-02-14', 17, 'https://www.gutenberg.org/ebooks/28083', 'de', 253), +(54563, 'The Trail of the Sword, Volume 4', 'Parker, Gilbert', '2004-08-01', 14, 'https://www.gutenberg.org/ebooks/6209', 'en', 1890), +(54564, 'Punch, or the London Charivari, Volume 147, August 12, 1914', 'Various', '2008-07-24', 12, 'https://www.gutenberg.org/ebooks/26119', 'en', 134), +(54565, 'Life in the Backwoods', 'Moodie, Susanna', '2005-06-01', 21, 'https://www.gutenberg.org/ebooks/8393', 'en', 8351), +(54566, 'The Fraud of Feminism', 'Bax, Ernest Belfort', '2016-04-27', 52, 'https://www.gutenberg.org/ebooks/51877', 'en', 4223), +(54567, 'John Inglefield\'s Thanksgiving\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 13, 'https://www.gutenberg.org/ebooks/9241', 'en', 179), +(54568, 'The Chautauquan, Vol. 03, December 1882\r\nA Monthly Magazine Devoted to the Promotion of True Culture.\r\nOrgan of the Chautauqua Literary and Scientific Circle', 'Chautauqua Literary and Scientific Circle', '2015-02-05', 59, 'https://www.gutenberg.org/ebooks/48166', 'en', 1115), +(54569, 'Moral Principles and Medical Practice: The Basis of Medical Jurisprudence', 'Coppens, Charles', '2006-06-18', 10, 'https://www.gutenberg.org/ebooks/18616', 'en', 14089), +(54570, 'The Works of Richard Hurd, Volume 5 (of 8)', 'Hurd, Richard', '2017-04-12', 8, 'https://www.gutenberg.org/ebooks/54539', 'en', 8595), +(54571, 'The Burning Wheel', 'Huxley, Aldous', '2015-01-08', 132, 'https://www.gutenberg.org/ebooks/47912', 'en', 1594), +(54572, 'La terre et la lune: forme extérieure et structure interne', 'Puiseux, P. (Pierre Henri)', '2009-07-13', 10, 'https://www.gutenberg.org/ebooks/29397', 'fr', 4280), +(54573, 'The War in the Air', 'Wells, H. G. (Herbert George)', '2005-09-01', 3, 'https://www.gutenberg.org/ebooks/8969', 'en', 2564), +(54574, 'Voyage du Prince Fan-Federin dans la romancie', 'Bougeant, G.-H. (Guillaume-Hyacinthe)', '2004-10-20', 16, 'https://www.gutenberg.org/ebooks/13804', 'fr', 2176), +(54575, 'When Knighthood Was in Flower\nor, the Love Story of Charles Brandon and Mary Tudor the King\'s Sister, and Happening in the Reign of His August Majesty King Henry the Eighth', 'Major, Charles', '2006-01-13', 35, 'https://www.gutenberg.org/ebooks/17498', 'en', 18001), +(54576, 'Prisoners of Poverty Abroad', 'Campbell, Helen', '2009-03-04', 14, 'https://www.gutenberg.org/ebooks/28245', 'en', 11731), +(54577, 'Leon Roch: A Romance, vol. 2 (of 2)', 'Pérez Galdós, Benito', '2015-06-24', 16, 'https://www.gutenberg.org/ebooks/49272', 'en', 480), +(54578, 'Glimpses of the Past: History of the River St. John, A.D. 1604-1784', 'Raymond, W. O. (William Odber)', '2010-02-23', 33, 'https://www.gutenberg.org/ebooks/31368', 'en', 18002), +(54579, 'Colonel Thorndyke\'s Secret', 'Henty, G. A. (George Alfred)', '2005-05-01', 48, 'https://www.gutenberg.org/ebooks/8155', 'en', 128), +(54580, 'American Historical and Literary Curiosities, Part 21.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-16', 8, 'https://www.gutenberg.org/ebooks/7921', 'en', 453), +(54581, 'Frank Merriwell\'s Chums', 'Standish, Burt L.', '2006-10-08', 36, 'https://www.gutenberg.org/ebooks/19502', 'en', 2154), +(54582, 'Little Women', 'Alcott, Louisa May', '1996-05-01', 6502, 'https://www.gutenberg.org/ebooks/514', 'en', 957), +(54583, 'George Sand', 'Caro, E. (Elme-Marie)', '2004-07-28', 33, 'https://www.gutenberg.org/ebooks/13038', 'fr', 1285), +(54584, 'Eleanor', 'Ward, Humphry, Mrs.', '2005-10-01', 11, 'https://www.gutenberg.org/ebooks/9087', 'en', 61), +(54585, 'Le Mariage de Mademoiselle Gimel, Dactylographe', 'Bazin, René', '2013-09-16', 16, 'https://www.gutenberg.org/ebooks/43748', 'fr', 100), +(54586, 'The Psychology of Nations\nA Contribution to the Philosophy of History', 'Partridge, G. E. (George Everett)', '2007-03-14', 53, 'https://www.gutenberg.org/ebooks/20814', 'en', 973), +(54587, 'Rollo in Naples', 'Abbott, Jacob', '2008-02-02', 25, 'https://www.gutenberg.org/ebooks/24488', 'en', 18003), +(54588, 'The Captured Scout of the Army of the James\r\nA Sketch of the Life of Sergeant Henry H. Manning, of the Twenty-fourth Mass. Regiment', 'Trumbull, H. Clay (Henry Clay)', '2011-08-04', 4, 'https://www.gutenberg.org/ebooks/36971', 'en', 18004), +(54589, 'Wise Saws and Modern Instances, Volume 2 (of 2)', 'Cooper, Thomas', '2012-03-11', 21, 'https://www.gutenberg.org/ebooks/39105', 'en', 137), +(54590, 'Fanny Hill: Memoirs of a Woman of Pleasure', 'Cleland, John', '2006-11-06', 443, 'https://www.gutenberg.org/ebooks/20028', 'en', 5454), +(54591, 'Tom Pagdin, Pirate', 'Brady, E. J. (Edwin James)', '2018-10-18', 18, 'https://www.gutenberg.org/ebooks/58132', 'en', 153), +(54592, 'In the Dead of Night: A Novel. Volume 2 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-09-21', 4, 'https://www.gutenberg.org/ebooks/57946', 'en', 137), +(54593, 'The Complete Poetical Works of Percy Bysshe Shelley — Volume 2', 'Shelley, Percy Bysshe', '2003-12-01', 54, 'https://www.gutenberg.org/ebooks/4798', 'en', 54), +(54594, 'Nancy Brandon\'s Mystery', 'Garis, Lilian', '2018-04-02', 23, 'https://www.gutenberg.org/ebooks/56894', 'en', 557), +(54595, 'Kuningas Henrik Viides', 'Shakespeare, William', '2012-06-07', 16, 'https://www.gutenberg.org/ebooks/39939', 'fi', 14125), +(54596, 'The Wide World Magazine, Vol. 22, No. 132, March, 1909', 'Various', '2016-06-25', 10, 'https://www.gutenberg.org/ebooks/52408', 'en', 1673), +(54597, 'Belford\'s Magazine, Vol II, No. 10, March 1889', 'Various', '2013-01-12', 11, 'https://www.gutenberg.org/ebooks/41823', 'en', 13816), +(54598, 'Practical Stair Building and Handrailing\nBy the square section and falling line system.', 'Wood, W. H.', '2018-06-18', 17, 'https://www.gutenberg.org/ebooks/57348', 'en', 18005), +(54599, 'The Life and Death of Richard Yea-and-Nay', 'Hewlett, Maurice', '2005-01-26', 53, 'https://www.gutenberg.org/ebooks/14813', 'en', 14797), +(54600, 'La vita comincia domani: romanzo', 'Verona, Guido da', '2012-04-01', 22, 'https://www.gutenberg.org/ebooks/39337', 'it', 1544), +(54601, 'Tartarin On The Alps', 'Daudet, Alphonse', '2008-06-12', 13, 'https://www.gutenberg.org/ebooks/25768', 'en', 5119), +(54602, 'Cleopatra — Volume 06', 'Ebers, Georg', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/5478', 'en', 10937), +(54603, 'Das erste Schuljahr: Eine Erzählung für Kinder von 7-12 Jahren', 'Sapper, Agnes', '2018-11-17', 9, 'https://www.gutenberg.org/ebooks/58300', 'de', 2154), +(54604, 'The Room with the Tassels', 'Wells, Carolyn', '2014-06-17', 14, 'https://www.gutenberg.org/ebooks/46008', 'en', 61), +(54605, 'Pulpit and Press', 'Eddy, Mary Baker', '2005-10-02', 10, 'https://www.gutenberg.org/ebooks/16778', 'en', 1206), +(54606, 'Cathedrals of Spain', 'Gade, John A. (John Allyne)', '2010-04-12', 12, 'https://www.gutenberg.org/ebooks/31966', 'en', 8704), +(54607, 'Friends in Feathers and Fur, and Other Neighbors: For Young Folks', 'Johonnot, James', '2009-02-14', 18, 'https://www.gutenberg.org/ebooks/28077', 'en', 6059), +(54608, 'Alas! A Novel', 'Broughton, Rhoda', '2010-11-24', 15, 'https://www.gutenberg.org/ebooks/34428', 'en', 61), +(54609, 'Kerkhofblommen', 'Gezelle, Guido', '2009-01-13', 12, 'https://www.gutenberg.org/ebooks/27803', 'nl', 8), +(54610, 'Evolution: Its nature, its evidence, and its relation to religious thought', 'LeConte, Joseph', '2014-09-10', 20, 'https://www.gutenberg.org/ebooks/46834', 'en', 5893), +(54611, 'Warwick Woodlands: Things as they Were There Twenty Years Ago', 'Herbert, Henry William', '2006-11-06', 17, 'https://www.gutenberg.org/ebooks/19730', 'en', 5343), +(54612, 'Costumes Madrilenos\nNotas de um Viajante', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2009-09-15', 22, 'https://www.gutenberg.org/ebooks/29999', 'pt', 18006), +(54613, 'Attila: Historiallinen romaani kansainvaelluksen ajoilta', 'Dahn, Felix', '2015-05-24', 8, 'https://www.gutenberg.org/ebooks/49040', 'fi', 12035), +(54614, 'Evelyn Byrd', 'Eggleston, George Cary', '2016-04-28', 2, 'https://www.gutenberg.org/ebooks/51883', 'en', 7291), +(54615, 'The Bible, Douay-Rheims, Book 67: 1 Peter\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8367', 'en', 1626), +(54616, 'Dorothy Dainty at the Mountains', 'Brooks, Amy', '2009-09-25', 40, 'https://www.gutenberg.org/ebooks/30088', 'en', 1655), +(54617, 'Kirkkopuheet', 'Järnefelt, Arvid', '2016-01-17', 3, 'https://www.gutenberg.org/ebooks/50951', 'fi', 18007), +(54618, 'Gräfin Elisa von Ahlefeldt, die Gattin Adolphs von Lützow, die Freundin Karl Immermann\'s', 'Assing, Ludmilla', '2015-02-07', 11, 'https://www.gutenberg.org/ebooks/48192', 'de', 18008), +(54619, 'A Psychological Counter-Current in Recent Fiction', 'Howells, William Dean', '1996-11-01', 26, 'https://www.gutenberg.org/ebooks/726', 'en', 61), +(54620, 'The Misfit Christmas Puddings', 'Consolation Club', '2012-05-21', 6, 'https://www.gutenberg.org/ebooks/39753', 'en', 10912), +(54621, 'The New Stone Age in Northern Europe', 'Tyler, John M. (John Mason)', '2012-12-18', 18, 'https://www.gutenberg.org/ebooks/41649', 'en', 18009), +(54622, 'Haabløse Slægter', 'Bang, Herman', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11139', 'da', 6055), +(54623, 'The Gilded Age, Part 3.', 'Warner, Charles Dudley', '2004-06-20', 17, 'https://www.gutenberg.org/ebooks/5820', 'en', 781), +(54624, 'Travels in Tartary, Thibet, and China During the years 1844-5-6. Volume 2', 'Huc, Evariste Régis', '2010-07-26', 22, 'https://www.gutenberg.org/ebooks/33269', 'en', 3800), +(54625, 'Practical Basketry', 'Gill, Anna A.', '2012-01-27', 15, 'https://www.gutenberg.org/ebooks/38681', 'en', 18010), +(54626, 'The Collected Works of Ambrose Bierce, Volume 8\r\nNegligible Tales, On With the Dance, Epigrams', 'Bierce, Ambrose', '2005-04-11', 57, 'https://www.gutenberg.org/ebooks/15599', 'en', 2645), +(54627, 'Sous les marronniers: Contes et récits', 'Muller, Eugène', '2004-04-01', 47, 'https://www.gutenberg.org/ebooks/11905', 'fr', 179), +(54628, 'Cycle Rides Round London', 'Harper, Charles G. (Charles George)', '2019-01-24', 16, 'https://www.gutenberg.org/ebooks/58764', 'en', 18011), +(54629, 'Baby-Land', 'Frink, Almira Louisa Corey, Mrs.', '2015-11-20', 8, 'https://www.gutenberg.org/ebooks/50509', 'en', 18012), +(54630, 'Original Photographs Taken on the Battlefields during the Civil War of the United States', 'Miller, Francis Trevelyan', '2013-10-10', 79, 'https://www.gutenberg.org/ebooks/43922', 'en', 18013), +(54631, 'The Student\'s Companion to Latin Authors', 'Middleton, George', '2009-03-25', 19, 'https://www.gutenberg.org/ebooks/28413', 'en', 4983), +(54632, 'Inns and Taverns of Old London', 'Shelley, Henry C. (Henry Charles)', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6699', 'en', 4685), +(54633, 'Uncle Wiggily\'s Fortune', 'Garis, Howard Roger', '2017-06-28', 23, 'https://www.gutenberg.org/ebooks/54995', 'en', 625), +(54634, 'Known to the Police', 'Holmes, Thomas', '2017-10-29', 18, 'https://www.gutenberg.org/ebooks/55847', 'en', 904), +(54635, '\"Wee Tim\'rous Beasties\": Studies of Animal life and Character', 'English, Douglas', '2007-07-24', 14, 'https://www.gutenberg.org/ebooks/22129', 'en', 2360), +(54636, 'The Comedy of Errors', 'Shakespeare, William', '2000-07-01', 73, 'https://www.gutenberg.org/ebooks/2239', 'en', 15879), +(54637, 'Margaret Ogilvy', 'Barrie, J. M. (James Matthew)', '1995-10-01', 89, 'https://www.gutenberg.org/ebooks/342', 'en', 18014), +(54638, 'Studies in the Poetry of Italy, Part II. Italian', 'Kuhns, Oscar', '2011-01-07', 2, 'https://www.gutenberg.org/ebooks/34870', 'en', 18015), +(54639, 'The Miller Of Old Church', 'Glasgow, Ellen Anderson Gholson', '2006-04-30', 12, 'https://www.gutenberg.org/ebooks/18286', 'en', 348), +(54640, 'The Story of the Treasure Seekers', 'Nesbit, E. (Edith)', '2008-09-01', 10, 'https://www.gutenberg.org/ebooks/26589', 'en', 2496), +(54641, 'Lessons in Music Form\r\nA Manual of Analysis of All the Structural Factors and Designs Employed in Musical Composition', 'Goetschius, Percy', '2006-09-22', 102, 'https://www.gutenberg.org/ebooks/19354', 'en', 9299), +(54642, 'The New Land\r\nStories of Jews Who Had a Part in the Making of Our Country', 'Levinger, Elma Ehrlich', '2007-10-08', 30, 'https://www.gutenberg.org/ebooks/22915', 'en', 18016); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(54643, 'Die Schatzinsel: Roman', 'Stevenson, Robert Louis', '2015-07-12', 66, 'https://www.gutenberg.org/ebooks/49424', 'de', 324), +(54644, 'The Doré Bible Gallery, Volume 3', NULL, '2004-07-28', 28, 'https://www.gutenberg.org/ebooks/8703', 'en', 9674), +(54645, 'Ang mga Anak Dalita', 'Mariano, Patricio', '2006-07-22', 12, 'https://www.gutenberg.org/ebooks/18888', 'tl', 8), +(54646, 'Lendas do sul', 'Lopes Neto, J. Simões (João Simões)', '2001-09-01', 28, 'https://www.gutenberg.org/ebooks/2837', 'pt', 18017), +(54647, 'The Metamorphoses of Publius Ovidus Naso in English blank verse Vols. I & II', 'Ovid', '2009-04-27', 55, 'https://www.gutenberg.org/ebooks/28621', 'en', 18018), +(54648, 'Widger\'s Quotes and Images from Madame Chrysantheme by Pierre Loti\r\nThe French Immortals: Quotes and Images', 'Loti, Pierre', '2009-07-13', 11, 'https://www.gutenberg.org/ebooks/7579', 'en', 2391), +(54649, 'The Haunted Hotel: A Mystery of Modern Venice', 'Collins, Wilkie', '1994-10-01', 166, 'https://www.gutenberg.org/ebooks/170', 'en', 2295), +(54650, 'The Johnstown Horror!!!\r\nor, Valley of Death, being A Complete and Thrilling Account\r\nof the Awful Floods and Their Appalling Ruin', 'Walker, James Herbert', '2008-12-31', 30, 'https://www.gutenberg.org/ebooks/27669', 'en', 16903), +(54651, 'Lady Hollyhock and Her Friends: A Book of Nature Dolls and Others', 'Walker, Margaret Coulson', '2015-08-05', 9, 'https://www.gutenberg.org/ebooks/49616', 'en', 18019), +(54652, 'The Life of the Right Honourable Horatio Lord Viscount Nelson, Volume 1', 'Harrison, James', '2005-10-21', 17, 'https://www.gutenberg.org/ebooks/16912', 'en', 10139), +(54653, 'Tales and Novels — Volume 10\r\nHelen', 'Edgeworth, Maria', '2005-07-01', 42, 'https://www.gutenberg.org/ebooks/8531', 'en', 45), +(54654, 'Daniel Boone, Backwoodsman', 'Forbes-Lindsay, C. H.', '2017-08-03', 16, 'https://www.gutenberg.org/ebooks/55249', 'en', 18020), +(54655, 'The Quirt', 'Bower, B. M.', '2006-09-03', 35, 'https://www.gutenberg.org/ebooks/19166', 'en', 315), +(54656, 'Barbers\' Manual (Part 1); Text Book on Taxidermy (Part 2)', 'McConnaughay, T. J.', '2016-08-19', 5, 'https://www.gutenberg.org/ebooks/52850', 'en', 2132), +(54657, 'The Raising and Care of Guinea Pigs\r\nA complete guide to the breeding, feeding, housing, exhibiting and marketing of cavies', 'Smith, Allen Christian', '2010-04-30', 45, 'https://www.gutenberg.org/ebooks/32189', 'en', 18021), +(54658, 'అగ్నిగుండం', 'Ramamohan Rao, Mahidhara', '2012-04-28', 42, 'https://www.gutenberg.org/ebooks/39561', 'te', 61), +(54659, 'The Irish Penny Journal, Vol. 1 No. 07, August 15, 1840', 'Various', '2017-01-17', 16, 'https://www.gutenberg.org/ebooks/53982', 'en', 81), +(54660, 'Myths and Legends of the Mississippi Valley and the Great Lakes', NULL, '2014-02-16', 18, 'https://www.gutenberg.org/ebooks/44935', 'en', 18022), +(54661, 'Mr. Punch at the Play: Humours of Music and the Drama', NULL, '2011-06-27', 27, 'https://www.gutenberg.org/ebooks/36529', 'en', 564), +(54662, 'The History of England, from the Accession of James II.\r\nComplete Contents of the Five Volumes', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 25, 'https://www.gutenberg.org/ebooks/25902', 'en', 3001), +(54663, 'St. Augustine, Florida\'s Colonial Capital', 'Campen, J. T. Van', '2019-05-11', 15, 'https://www.gutenberg.org/ebooks/59484', 'en', 4634), +(54664, 'Stray Thoughts for Girls', 'Soulsby, Lucy Helen Muriel', '2005-01-13', 14, 'https://www.gutenberg.org/ebooks/14679', 'en', 1794), +(54665, 'King of Camargue', 'Aicard, Jean', '2010-10-16', 19, 'https://www.gutenberg.org/ebooks/33867', 'en', 61), +(54666, 'The Lament of the Mormon Wife: A Poem', 'Holley, Marietta', '2018-12-27', 20, 'https://www.gutenberg.org/ebooks/58556', 'en', 18023), +(54667, 'The Son of a Servant', 'Strindberg, August', '2013-11-05', 29, 'https://www.gutenberg.org/ebooks/44109', 'en', 4184), +(54668, 'Countess Erika\'s Apprenticeship', 'Schubin, Ossip', '2011-03-08', 141, 'https://www.gutenberg.org/ebooks/35531', 'en', 1949), +(54669, 'Don\'t Shoot', 'Zacks, Robert', '2016-01-29', 34, 'https://www.gutenberg.org/ebooks/51074', 'en', 4440), +(54670, 'History of the Second Massachusetts Regiment of Infantry: Beverly Ford.', 'Oakey, Daniel', '2007-09-12', 12, 'https://www.gutenberg.org/ebooks/22586', 'en', 2347), +(54671, 'Fauna der Nassauischen Mollusken', 'Kobelt, Wilhelm', '2015-05-15', 11, 'https://www.gutenberg.org/ebooks/48965', 'de', 18024), +(54672, 'Sweets for Leisure Hours\nAmusing Tales for Little Readers', 'Phillips, E.', '2007-11-12', 8, 'https://www.gutenberg.org/ebooks/23454', 'en', 4299), +(54673, 'La Recluse', 'Zaccone, Pierre', '2006-02-02', 10, 'https://www.gutenberg.org/ebooks/17661', 'fr', 642), +(54674, 'Letters from a Farmer in Pennsylvania, to the Inhabitants of the British Colonies', 'Dickinson, John', '2014-10-14', 36, 'https://www.gutenberg.org/ebooks/47111', 'en', 18025), +(54675, 'The Battle of the Strong: A Romance of Two Kingdoms — Complete', 'Parker, Gilbert', '2004-11-17', 14, 'https://www.gutenberg.org/ebooks/6236', 'en', 11237), +(54676, 'Pictures of Sweden', 'Andersen, H. C. (Hans Christian)', '2004-05-01', 25, 'https://www.gutenberg.org/ebooks/12313', 'en', 15326), +(54677, 'A Poor Man\'s House', 'Reynolds, Stephen Sydney', '2008-07-25', 24, 'https://www.gutenberg.org/ebooks/26126', 'en', 1299), +(54678, 'The Trial; Or, More Links of the Daisy Chain', 'Yonge, Charlotte M. (Charlotte Mary)', '2003-02-01', 49, 'https://www.gutenberg.org/ebooks/3744', 'en', 378), +(54679, 'Dick Kent at Half-Way House', 'Oblinger, M. M. (Milo Milton)', '2016-04-24', 9, 'https://www.gutenberg.org/ebooks/51848', 'en', 7213), +(54680, 'A Letter to the Hon. Samuel A. Eliot, Representative in Congress From the City of Boston, In Reply to His Apology For Voting For the Fugitive Slave Bill.', 'Dexter, Franklin', '2010-02-05', 12, 'https://www.gutenberg.org/ebooks/31191', 'en', 18026), +(54681, 'The American Mind\nThe E. T. Earl Lectures', 'Perry, Bliss', '2009-09-10', 26, 'https://www.gutenberg.org/ebooks/29952', 'en', 7462), +(54682, 'La Vie de Madame Élisabeth, soeur de Louis XVI, Volume 2', 'Beauchesne, A. de (Alcide)', '2013-04-03', 19, 'https://www.gutenberg.org/ebooks/42463', 'fr', 10315), +(54683, 'Kokka-tarinoita', 'Anonymous', '2015-02-04', 10, 'https://www.gutenberg.org/ebooks/48159', 'fi', 18027), +(54684, 'Recollections of a Tour Made in Scotland A.D. 1803', 'Wordsworth, Dorothy', '2009-05-19', 52, 'https://www.gutenberg.org/ebooks/28880', 'en', 2714), +(54685, 'Elsie Venner', 'Holmes, Oliver Wendell', '2004-09-28', 35, 'https://www.gutenberg.org/ebooks/2696', 'en', 114), +(54686, 'Lutezia', 'Barrili, Anton Giulio', '2009-09-20', 14, 'https://www.gutenberg.org/ebooks/30043', 'it', 2972), +(54687, 'Nature Near London', 'Jefferies, Richard', '2006-06-19', 27, 'https://www.gutenberg.org/ebooks/18629', 'en', 10904), +(54688, 'The Birth and Babyhood of the Telephone', 'Watson, Thomas Augustus', '2017-04-07', 7, 'https://www.gutenberg.org/ebooks/54506', 'en', 3741), +(54689, 'The Peace Negotiations: A Personal Narrative', 'Lansing, Robert', '2003-12-01', 290, 'https://www.gutenberg.org/ebooks/10444', 'en', 14944), +(54690, 'Project Gutenberg Edition of The Memoirs of Four Civil War Generals', 'Sheridan, Philip Henry', '2009-05-18', 30, 'https://www.gutenberg.org/ebooks/57383', 'en', 2723), +(54691, 'Making a Garden of Perennials', 'Egan, W. C. (William Constantine)', '2008-02-22', 31, 'https://www.gutenberg.org/ebooks/24671', 'en', 5887), +(54692, 'The First Men in the Moon', 'Wells, H. G. (Herbert George)', '2004-10-20', 407, 'https://www.gutenberg.org/ebooks/1013', 'en', 26), +(54693, 'Birds in London', 'Hudson, W. H. (William Henry)', '2012-07-25', 46, 'https://www.gutenberg.org/ebooks/40334', 'en', 18028), +(54694, 'Souvenir Book of the Great Chelsea Fire April 12, 1908\nContaining Thirty-Four Views of the Burned District and Prominent Buildings', 'Anonymous', '2010-06-06', 5, 'https://www.gutenberg.org/ebooks/32714', 'en', 18029), +(54695, 'Compendio de la historia general de América. Tomo I', 'Navarro y Lamarca, Carlos', '2017-12-25', 18, 'https://www.gutenberg.org/ebooks/56251', 'es', 10498), +(54696, 'La Maison Tellier', 'Maupassant, Guy de', '2004-03-01', 51, 'https://www.gutenberg.org/ebooks/11596', 'fr', 687), +(54697, 'Reigen: Zehn Dialoge', 'Schnitzler, Arthur', '2011-08-29', 46, 'https://www.gutenberg.org/ebooks/37266', 'de', 10919), +(54698, 'The Thames', 'Mitton, G. E. (Geraldine Edith)', '2014-01-30', 19, 'https://www.gutenberg.org/ebooks/44794', 'en', 776), +(54699, 'Early English Hero Tales', 'Marks, Jeannette Augustus', '2016-12-12', 32, 'https://www.gutenberg.org/ebooks/53723', 'en', 14723), +(54700, 'Devon Boys: A Tale of the North Shore', 'Fenn, George Manville', '2007-05-04', 40, 'https://www.gutenberg.org/ebooks/21303', 'en', 7371), +(54701, 'Der Deutsche Lausbub in Amerika: Erinnerungen und Eindrücke. Band 3 (von 3)', 'Rosen, Erwin', '2019-04-06', 13, 'https://www.gutenberg.org/ebooks/59219', 'de', 1110), +(54702, 'Amedeide\r\nPoema eroico', 'Chiabrera, Gabriello', '2005-02-22', 13, 'https://www.gutenberg.org/ebooks/15136', 'it', 8), +(54703, 'Punch, or the London Charivari, Volume 107, October 6, 1894', 'Various', '2014-05-14', 7, 'https://www.gutenberg.org/ebooks/45646', 'en', 134), +(54704, 'Espace Perdu: Poésie', 'Bertrand, Huguette', '2003-10-01', 28, 'https://www.gutenberg.org/ebooks/4561', 'fr', 8), +(54705, 'A Preliminary Revision of the North American Species of Cactus, Anhalonium, and Lophophora', 'Coulter, John Merle', '1998-02-01', 105, 'https://www.gutenberg.org/ebooks/1221', 'en', 18030), +(54706, 'Loimologia: Or, an Historical Account of the Plague in London in 1665\nWith Precautionary Directions Against the Like Contagion', 'Quincy, John', '2012-06-29', 17, 'https://www.gutenberg.org/ebooks/40106', 'en', 14715), +(54707, 'The Reign of Greed', 'Rizal, José', '2004-01-01', 790, 'https://www.gutenberg.org/ebooks/10676', 'en', 15749), +(54708, 'Ανάλεκτα Τόμος Πρώτος\r\nΔιηγήματα - Κοινωνικαί εικόνες και μελέται', 'Vlachos, Angelos', '2011-10-27', 8, 'https://www.gutenberg.org/ebooks/37868', 'el', 1348), +(54709, 'An Australian Lassie', 'Turner, Lilian', '2008-01-28', 22, 'https://www.gutenberg.org/ebooks/24443', 'en', 421), +(54710, 'Punch, or the London Charivari, Vol. 158, May 19, 1920', 'Various', '2008-05-25', 15, 'https://www.gutenberg.org/ebooks/25591', 'en', 134), +(54711, 'Oxford Mountaineering Essays', NULL, '2017-11-28', 10, 'https://www.gutenberg.org/ebooks/56063', 'en', 5109), +(54712, 'Blue Ridge Parkway, Virginia and North Carolina (1949)', 'United States. National Park Service', '2019-06-26', 46, 'https://www.gutenberg.org/ebooks/59817', 'en', 18031), +(54713, 'Asja', 'Turgenev, Ivan Sergeevich', '2010-05-25', 14, 'https://www.gutenberg.org/ebooks/32526', 'fi', 18032), +(54714, 'The Strand Magazine, Vol. 27, No. 161, May 1904', 'Various', '2012-02-10', 36, 'https://www.gutenberg.org/ebooks/38820', 'en', 4041), +(54715, 'Tulella ja miekalla: Kuvaus menneiltä ajoilta. 1', 'Sienkiewicz, Henryk', '2016-11-12', 12, 'https://www.gutenberg.org/ebooks/53511', 'fi', 5459), +(54716, 'Ciarle e macchiette', 'Vassallo, Luigi Arnaldo', '2011-08-12', 16, 'https://www.gutenberg.org/ebooks/37054', 'it', 179), +(54717, 'The Laws of Etiquette; Or, Short Rules and Reflections for Conduct in Society', 'Unknown', '2004-05-01', 45, 'https://www.gutenberg.org/ebooks/5681', 'en', 788), +(54718, 'Uncle Sam, Detective', 'DuPuy, William Atherton', '2014-04-24', 40, 'https://www.gutenberg.org/ebooks/45474', 'en', 128), +(54719, 'Florulae Insularum Australium Prodromus', 'Forster, Georg', '2011-05-22', 9, 'https://www.gutenberg.org/ebooks/36186', 'la', 18033), +(54720, 'The Forfeiture', 'Dufresny, Charles Rivière', '2003-12-01', 9, 'https://www.gutenberg.org/ebooks/4753', 'en', 2971), +(54721, 'Amos Huntingdon', 'Wilson, Theodore P.', '2007-04-18', 16, 'https://www.gutenberg.org/ebooks/21131', 'en', 3621), +(54722, 'A Portraiture of Quakerism, Volume 3\r\nTaken from a View of the Education and Discipline, Social Manners, Civil and Political Economy, Religious Principles and Character, of the Society of Friends', 'Clarkson, Thomas', '2005-03-09', 5, 'https://www.gutenberg.org/ebooks/15304', 'en', 4759), +(54723, 'The Life of Jesus', 'Renan, Ernest', '2005-08-22', 80, 'https://www.gutenberg.org/ebooks/16581', 'en', 10446), +(54724, 'Great Disasters and Horrors in the World\'s History', 'Godbey, Allen Howard', '2016-02-18', 59, 'https://www.gutenberg.org/ebooks/51246', 'en', 18034), +(54725, 'Four and Twenty Beds', 'Vogel, Nancy Casteel', '2011-03-28', 70, 'https://www.gutenberg.org/ebooks/35703', 'en', 18035), +(54726, 'Norman Macleod', 'Wellwood, John', '2014-11-09', 17, 'https://www.gutenberg.org/ebooks/47323', 'en', 18036), +(54727, 'Helden', 'Shaw, Bernard', '2004-07-01', 45, 'https://www.gutenberg.org/ebooks/6004', 'de', 18037), +(54728, 'Mission Furniture: How to Make It, Part 3', 'Windsor, H. H. (Henry Haven)', '2007-11-30', 133, 'https://www.gutenberg.org/ebooks/23666', 'en', 16520), +(54729, 'War is Kind', 'Crane, Stephen', '2006-02-01', 33, 'https://www.gutenberg.org/ebooks/9870', 'en', 8), +(54730, '\"Boy\" the Wandering Dog: Adventures of a Fox-Terrier', 'Saunders, Marshall', '2015-11-06', 23, 'https://www.gutenberg.org/ebooks/50394', 'en', 2464), +(54731, 'Up in Ardmuirland', 'Barrett, Michael', '2006-01-04', 15, 'https://www.gutenberg.org/ebooks/17453', 'en', 2389), +(54732, 'Recollections of the Private Life of Napoleon — Volume 09', 'Wairy, Louis Constant', '2002-12-01', 18, 'https://www.gutenberg.org/ebooks/3576', 'en', 840), +(54733, 'Henriette Goldschmidt: Ihr Leben und ihr Schaffen', 'Siebe, Josephine', '2013-05-05', 5, 'https://www.gutenberg.org/ebooks/42651', 'de', 18038), +(54734, 'The Lady of the Barge\nThe Lady of the Barge and Others, Part 1.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12121', 'en', 1224), +(54735, 'Viajes por España', 'Alarcón, Pedro Antonio de', '2008-08-14', 73, 'https://www.gutenberg.org/ebooks/26314', 'es', 1514), +(54736, 'Tales of Laughter\nA third fairy book', NULL, '2017-05-16', 38, 'https://www.gutenberg.org/ebooks/54734', 'en', 1007), +(54737, 'O Pioneers!', 'Cather, Willa', '2008-06-27', 445, 'https://www.gutenberg.org/ebooks/24', 'en', 14336), +(54738, 'Le Dernier Jour d\'un Condamné', 'Hugo, Victor', '2004-11-01', 141, 'https://www.gutenberg.org/ebooks/6838', 'fr', 18039), +(54739, 'Kaffe ja Tupakki', 'Eurén, Gustaf Erik', '2013-09-21', 6, 'https://www.gutenberg.org/ebooks/43783', 'fi', 8609), +(54740, 'The Grecian Daughter', 'Murphy, Arthur', '2009-10-16', 7, 'https://www.gutenberg.org/ebooks/30271', 'en', 1088), +(54741, 'A Sketch of the Life of Elizabeth T. Stone and of Her Persecutions\r\nWith an Appendix of Her Treatment and Sufferings While in the Charlestown McLean Assylum, Where She Was Confined Under the Pretence of Insanity', 'Stone, Elizabeth T.', '2018-01-20', 12, 'https://www.gutenberg.org/ebooks/56407', 'en', 18040), +(54742, 'Marley\'s Chain', 'Nourse, Alan Edward', '2010-04-26', 28, 'https://www.gutenberg.org/ebooks/32142', 'en', 179), +(54743, 'Rhymes a la Mode', 'Lang, Andrew', '1999-02-01', 19, 'https://www.gutenberg.org/ebooks/1645', 'en', 54), +(54744, 'Ein Kampf um Rom: Historischer Roman. Zweiter Band', 'Dahn, Felix', '2010-07-05', 35, 'https://www.gutenberg.org/ebooks/33090', 'de', 6999), +(54745, 'Graham\'s Magazine, Vol. XXXIV, No. 2, February 1849', 'Various', '2017-01-12', 15, 'https://www.gutenberg.org/ebooks/53949', 'en', 380), +(54746, 'Narrative of the Circumnavigation of the Globe by the Austrian Frigate Novara, Volume III\r\n(Commodore B. Von Wullerstorf-Urbair,) Undertaken by Order of the Imperial Government in the Years 1857, 1858, & 1859, Under the Immediate Auspices of His I. and R. Highness the Archduke Ferdinand Maximilian, Commander-In-Chief of the\r\nAustrian Navy.', 'Scherzer, Karl, Ritter von', '2012-01-03', 30, 'https://www.gutenberg.org/ebooks/38478', 'en', 2361), +(54747, 'Snowflakes', 'Karn, Esther Nelson', '2012-08-22', 7, 'https://www.gutenberg.org/ebooks/40562', 'en', 8), +(54748, 'Peck\'s Bad Boy with the Circus', 'Peck, George W. (George Wilbur)', '2003-11-01', 7, 'https://www.gutenberg.org/ebooks/10212', 'en', 3133), +(54749, '醉醒石', 'Donglugukuangsheng, active 17th century', '2007-12-25', 9, 'https://www.gutenberg.org/ebooks/24027', 'zh', 5698), +(54750, 'Oliver Cromwell', 'Gardiner, Samuel Rawson', '2014-02-25', 43, 'https://www.gutenberg.org/ebooks/45010', 'en', 18041), +(54751, 'Power Through Repose', 'Call, Annie Payson', '2003-08-01', 44, 'https://www.gutenberg.org/ebooks/4337', 'en', 251), +(54752, 'The Mission; or Scenes in Africa', 'Marryat, Frederick', '2007-05-21', 20, 'https://www.gutenberg.org/ebooks/21555', 'en', 2126), +(54753, 'The Forest of Swords: A Story of Paris and the Marne', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-05-03', 51, 'https://www.gutenberg.org/ebooks/15760', 'en', 579), +(54754, 'The Scratch Pack', 'Conyers, Dorothea', '2016-09-30', 4, 'https://www.gutenberg.org/ebooks/53175', 'en', 757), +(54755, 'Shakspere, Personal Recollections', 'Joyce, John A. (John Alexander)', '2007-01-31', 10, 'https://www.gutenberg.org/ebooks/20487', 'en', 9267), +(54756, 'The Sin of Monsieur Pettipon, and other humorous tales', 'Connell, Richard Edward', '2011-09-15', 52, 'https://www.gutenberg.org/ebooks/37430', 'en', 61), +(54757, 'The Incarnate Purpose: Essays on the Spiritual Unity of Life', 'Percival, G. H.', '2014-12-23', 20, 'https://www.gutenberg.org/ebooks/47747', 'en', 2566), +(54758, 'Applied Psychology for Nurses', 'Porter, Mary F.', '2006-07-16', 74, 'https://www.gutenberg.org/ebooks/18843', 'en', 18042), +(54759, 'The Scientific Monthly, October to December, 1915', 'Various', '1997-07-01', 36, 'https://www.gutenberg.org/ebooks/987', 'en', 210), +(54760, 'Problems in American Democracy', 'Williamson, Thames', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6460', 'en', 18043), +(54761, 'Armand Durand\r\nou, La promesse accomplie', 'Leprohon, Mrs. (Rosanna Eleanor)', '2007-10-26', 10, 'https://www.gutenberg.org/ebooks/23202', 'fr', 1219), +(54762, 'History of the English People, Volume I\r\nEarly England, 449-1071; Foreign Kings, 1071-1204; The Charter, 1204-1216', 'Green, John Richard', '2005-11-09', 43, 'https://www.gutenberg.org/ebooks/17037', 'en', 1953), +(54763, 'Extracts from the Galactick Almanack: Music Around the Universe', 'Janifer, Laurence M.', '2016-04-02', 28, 'https://www.gutenberg.org/ebooks/51622', 'en', 26), +(54764, 'Stille Helden: Roman', 'Boy-Ed, Ida', '2009-08-19', 9, 'https://www.gutenberg.org/ebooks/29738', 'de', 549), +(54765, 'Mad: A Story of Dust and Ashes', 'Fenn, George Manville', '2011-02-23', 10, 'https://www.gutenberg.org/ebooks/35367', 'en', 61), +(54766, 'The Fox Jumps Over the Parson\'s Gate', NULL, '2006-12-02', 34, 'https://www.gutenberg.org/ebooks/19991', 'en', 2296), +(54767, 'A Visit to the Philippine Islands', 'Bowring, John', '2014-08-26', 39, 'https://www.gutenberg.org/ebooks/46695', 'en', 18044), +(54768, 'Navaho Legends', 'Matthews, Washington', '2019-08-24', 133, 'https://www.gutenberg.org/ebooks/60165', 'en', NULL), +(54769, 'Greatheart', 'Dell, Ethel M. (Ethel May)', '2004-09-18', 49, 'https://www.gutenberg.org/ebooks/13497', 'en', 400), +(54770, 'Jed, the Poorhouse Boy', 'Alger, Horatio, Jr.', '2017-03-13', 18, 'https://www.gutenberg.org/ebooks/54350', 'en', 11271), +(54771, 'A Group of Noble Dames', 'Hardy, Thomas', '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9428', 'en', 2019), +(54772, 'Ομήρου Οδύσσεια Τόμος Γ', 'Homer', '2009-12-06', 22, 'https://www.gutenberg.org/ebooks/30615', 'el', 18045), +(54773, 'The Pilgrim, and the American of Today—(1892)', 'Warner, Charles Dudley', '2004-12-05', 7, 'https://www.gutenberg.org/ebooks/3112', 'en', 20), +(54774, 'Rising Wolf, the White Blackfoot\r\nHugh Monroe\'s Story of His First Year on the Plains', 'Schultz, James Willard', '2013-03-01', 18, 'https://www.gutenberg.org/ebooks/42235', 'en', 18046), +(54775, 'Work [Travail]', 'Zola, Émile', '2017-08-06', 31, 'https://www.gutenberg.org/ebooks/55282', 'en', 58), +(54776, 'Traditions of the Tinguian: a Study in Philippine Folk-Lore', 'Cole, Fay-Cooper', '2004-06-01', 70, 'https://www.gutenberg.org/ebooks/12545', 'en', 4260), +(54777, 'Notes and Queries, Index of Volume 3, January-June, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-04', 22, 'https://www.gutenberg.org/ebooks/26770', 'en', 198), +(54778, 'Buying a Horse', 'Howells, William Dean', '2007-10-14', 6, 'https://www.gutenberg.org/ebooks/23030', 'en', 8308), +(54779, 'The Big-Town Round-Up', 'Raine, William MacLeod', '2005-12-03', 36, 'https://www.gutenberg.org/ebooks/17205', 'en', 315), +(54780, 'The Story of a Country Town', 'Howe, E. W. (Edgar Watson)', '2014-12-07', 18, 'https://www.gutenberg.org/ebooks/47575', 'en', 14260), +(54781, 'Muutaman työmiehen elämän-vaiheet eli Orjuus Ruotsissa', 'Thomasson, Pehr', '2010-10-16', 26, 'https://www.gutenberg.org/ebooks/34087', 'fi', 2168), +(54782, 'The Humorous Poetry of the English Language; from Chaucer to Saxe', NULL, '2004-10-01', 10, 'https://www.gutenberg.org/ebooks/6652', 'en', 190), +(54783, 'The Betrothed\nFrom the Italian of Alessandro Manzoni', 'Manzoni, Alessandro', '2011-02-03', 333, 'https://www.gutenberg.org/ebooks/35155', 'en', 1058), +(54784, 'Notes to Shakespeare — Volume 01: Comedies', 'Johnson, Samuel', '2005-03-01', 27, 'https://www.gutenberg.org/ebooks/7780', 'en', 1735), +(54785, 'Dr. Elsie Inglis', 'Balfour, Frances, Lady', '2016-03-09', 10, 'https://www.gutenberg.org/ebooks/51410', 'en', 18047), +(54786, 'The Lost Kafoozalum', 'Ashwell, Pauline', '2009-11-08', 65, 'https://www.gutenberg.org/ebooks/30427', 'en', 26), +(54787, 'De vroolijke tocht', 'Buysse, Cyriel', '2008-12-10', 19, 'https://www.gutenberg.org/ebooks/27490', 'nl', 1117), +(54788, 'The Great God Pan', 'Machen, Arthur', '1996-01-01', 803, 'https://www.gutenberg.org/ebooks/389', 'en', 114), +(54789, 'The New English Canaan of Thomas Morton with Introductory Matter and Notes', 'Morton, Thomas', '2017-02-14', 54, 'https://www.gutenberg.org/ebooks/54162', 'en', 18048), +(54790, 'The Young Engineers in Nevada; Or, Seeking Fortune on the Turn of a Pick', 'Hancock, H. Irving (Harrie Irving)', '2004-06-29', 13, 'https://www.gutenberg.org/ebooks/12777', 'en', 9616), +(54791, 'Les mille et une nuits: contes choisis', NULL, '2011-04-26', 53, 'https://www.gutenberg.org/ebooks/35969', 'fr', 3347), +(54792, 'On The Affinities of Leptarctus primus of Leidy\nAmerican Museum of Natural History, Vol. VI, Article VIII, pp. 229-331.', 'Wortman, Jacob Lawson', '2008-09-05', 9, 'https://www.gutenberg.org/ebooks/26542', 'en', 18049), +(54793, 'Mohammed Ali and His House', 'Mühlbach, L. (Luise)', '2002-07-01', 12, 'https://www.gutenberg.org/ebooks/3320', 'en', 18050), +(54794, 'Sir Christopher Wren: His Family and His Times\r\nWith Original Letters and a Discourse on Architecture Hitherto Unpublished. 1585-1723.', 'Phillimore, Lucy', '2013-02-04', 24, 'https://www.gutenberg.org/ebooks/42007', 'en', 18051), +(54795, 'The Youth of Parnassus, and Other Stories', 'Smith, Logan Pearsall', '2012-12-21', 17, 'https://www.gutenberg.org/ebooks/41682', 'en', 10892), +(54796, 'Secret Diplomatic History of The Eighteenth Century', 'Marx, Karl', '2010-05-14', 78, 'https://www.gutenberg.org/ebooks/32370', 'en', 18052), +(54797, 'In Memorabilia Mortis', 'Sherman, Francis', '2013-06-02', 2, 'https://www.gutenberg.org/ebooks/39798', 'en', 28), +(54798, 'The Girl\'s Own Paper, Vol. XX, No. 998, February 11, 1899', 'Various', '2018-02-24', 10, 'https://www.gutenberg.org/ebooks/56635', 'en', 563), +(54799, 'Chopin : the Man and His Music', 'Huneker, James', '2004-01-01', 24, 'https://www.gutenberg.org/ebooks/4939', 'en', 392), +(54800, 'The Strand Magazine: Vol. 07, Issue 37, January, 1894.\r\nAn Illustrated Monthly', 'Various', '2003-11-01', 32, 'https://www.gutenberg.org/ebooks/10020', 'en', 2998), +(54801, 'The Comedies of William Congreve: Volume 1 [of 2]', 'Congreve, William', '2008-01-07', 27, 'https://www.gutenberg.org/ebooks/24215', 'en', 907), +(54802, 'The Toys of Peace, and Other Papers', 'Saki', '1998-10-01', 192, 'https://www.gutenberg.org/ebooks/1477', 'en', 179), +(54803, 'Les grands explorateurs: La Mission Marchand (Congo-Nil)', 'Ivoi, Paul d\'', '2012-09-13', 6, 'https://www.gutenberg.org/ebooks/40750', 'fr', 18053), +(54804, 'Agatha\'s Husband: A Novel', 'Craik, Dinah Maria Mulock', '2007-06-08', 29, 'https://www.gutenberg.org/ebooks/21767', 'en', 61), +(54805, 'Christmas Outside of Eden', 'Dawson, Coningsby', '2005-04-05', 15, 'https://www.gutenberg.org/ebooks/15552', 'en', 585), +(54806, 'Auch ich, auch du: Aufzeichnungen eines Irren.', 'Siemsen, Hans', '2016-06-10', 7, 'https://www.gutenberg.org/ebooks/52295', 'de', 549), +(54807, 'Storia della decadenza e rovina dell\'impero romano, volume 08', 'Gibbon, Edward', '2014-03-26', 27, 'https://www.gutenberg.org/ebooks/45222', 'it', 7245), +(54808, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 5', 'Ames, Azel', '2003-06-01', 14, 'https://www.gutenberg.org/ebooks/4105', 'en', 18054), +(54809, 'A Synopsis of Neotropical Hylid Frogs, Genus Osteocephalus', 'Duellman, William Edward', '2011-10-03', 8, 'https://www.gutenberg.org/ebooks/37602', 'en', 18055), +(54810, 'Physiology', 'Foster, M. (Michael), Sir', '2016-10-22', 24, 'https://www.gutenberg.org/ebooks/53347', 'en', 3536), +(54811, 'Twenty-six and One, and Other Stories', 'Gorky, Maksim', '2004-12-27', 32, 'https://www.gutenberg.org/ebooks/14480', 'en', 85), +(54812, 'The Continental Monthly, Vol 2, No 6, December 1862\nDevoted to Literature and National Policy', 'Various', '2008-04-19', 12, 'https://www.gutenberg.org/ebooks/25101', 'en', 558), +(54813, 'Wilson\'s Tales of the Borders and of Scotland, Volume 22', NULL, '2004-02-01', 13, 'https://www.gutenberg.org/ebooks/11334', 'en', 3672), +(54814, 'The Dogs of Boytown', 'Dyer, Walter A. (Walter Alden)', '2012-11-23', 7, 'https://www.gutenberg.org/ebooks/41444', 'en', 2526), +(54815, 'The Blind Man\'s Eyes', 'MacHarg, William', '2010-07-03', 28, 'https://www.gutenberg.org/ebooks/33064', 'en', 167), +(54816, 'Notes on the book of Exodus', 'Mackintosh, Charles Henry', '2012-08-27', 13, 'https://www.gutenberg.org/ebooks/40596', 'en', 1653), +(54817, 'The Junior Classics, Volume 2: Folk Tales and Myths', NULL, '2018-07-16', 44, 'https://www.gutenberg.org/ebooks/57521', 'en', 630), +(54818, 'Harper\'s New Monthly Magazine, vol. 3, no. 18, November, 1851', 'Harper, Various (magazine)', '2011-06-25', 17, 'https://www.gutenberg.org/ebooks/36516', 'en', 4316), +(54819, 'The Sperry Gyro-Compass', 'Sperry Gyroscope Company', '2016-05-12', 16, 'https://www.gutenberg.org/ebooks/52053', 'en', 7838), +(54820, 'Plum Pudding: Of Divers Ingredients, Discreetly Blended & Seasoned', 'Morley, Christopher', '2005-05-07', 31, 'https://www.gutenberg.org/ebooks/15794', 'en', 20), +(54821, 'Christopher and Columbus', 'Von Arnim, Elizabeth', '2005-01-10', 53, 'https://www.gutenberg.org/ebooks/14646', 'en', 18056), +(54822, 'The Adventurous Simplicissimus\r\nbeing the description of the Life of a Strange vagabond named Melchior Sternfels von Fuchshaim', 'Grimmelshausen, Hans Jakob Christoph von', '2010-10-14', 109, 'https://www.gutenberg.org/ebooks/33858', 'en', 5126), +(54823, 'Eräitä kertoelmia', 'Wells, H. G. (Herbert George)', '2016-10-01', 8, 'https://www.gutenberg.org/ebooks/53181', 'fi', 26), +(54824, 'Beyond the Horizon', 'O\'Neill, Eugene', '2018-12-30', 35, 'https://www.gutenberg.org/ebooks/58569', 'en', 8785), +(54825, 'Grace Harlowe\'s Third Year at Overton College', 'Chase, Josephine', '2007-01-28', 43, 'https://www.gutenberg.org/ebooks/20473', 'en', 4642), +(54826, 'The Famous Missions of California', 'Hudson, William Henry', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/5211', 'en', 11923), +(54827, 'Auszug aus der Alten, Mittleren und Neueren Geschichte', 'Ploetz, Carl', '2013-11-08', 17, 'https://www.gutenberg.org/ebooks/44136', 'de', 18057), +(54828, 'Mr. World and Miss Church-Member: A Twentieth Century Allegory', 'Harris, W. S. (William Shuler)', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6494', 'en', 942), +(54829, 'Howard Pyle\'s Book of Pirates\r\nFiction, Fact & Fancy Concerning the Buccaneers & Marooners of the Spanish Main', 'Pyle, Howard', '2006-02-05', 76, 'https://www.gutenberg.org/ebooks/973', 'en', 3175), +(54830, 'Kenelm Chillingly: Hänen elämänvaiheensa ja mielipiteensä', 'Lytton, Edward Bulwer Lytton, Baron', '2010-11-08', 10, 'https://www.gutenberg.org/ebooks/34241', 'fi', 1585), +(54831, 'The National Geographic Magazine, Vol. I., No. 4, October, 1889', 'Various', '2015-12-16', 22, 'https://www.gutenberg.org/ebooks/50704', 'en', 3550), +(54832, 'Treatises on Friendship and Old Age', 'Cicero, Marcus Tullius', '2001-09-01', 185, 'https://www.gutenberg.org/ebooks/2808', 'en', 14402), +(54833, 'Opúsculos por Alexandre Herculano - Tomo 01', 'Herculano, Alexandre', '2005-06-22', 33, 'https://www.gutenberg.org/ebooks/16111', 'pt', 410), +(54834, 'Pushed and the Return Push', 'Nichols, George Herbert Fosdike', '2007-08-15', 33, 'https://www.gutenberg.org/ebooks/22324', 'en', 3601), +(54835, 'Quotes and Images From The Works of William Dean Howells', 'Howells, William Dean', '2004-08-27', 48, 'https://www.gutenberg.org/ebooks/7546', 'en', 1026), +(54836, 'Measles', 'Rucker, William Colby', '2006-11-29', 14, 'https://www.gutenberg.org/ebooks/19965', 'en', 18058), +(54837, 'The Revellers', 'Tracy, Louis', '2011-02-24', 27, 'https://www.gutenberg.org/ebooks/35393', 'en', 6777), +(54838, 'North Dakota: A Guide to the Northern Prairie State', 'Federal Writers\' Project of the Works Progress Administration for the State of North Dakota', '2014-08-23', 27, 'https://www.gutenberg.org/ebooks/46661', 'en', 18059), +(54839, 'De verwoeste steden aan de straat van Messina\r\nDe Aarde en haar Volken, 1909', 'd\'Albay, Jacques Tournadour', '2008-12-29', 10, 'https://www.gutenberg.org/ebooks/27656', 'nl', 14285), +(54840, 'Notes and Queries, Number 48, September 28, 1850', 'Various', '2004-09-15', 18, 'https://www.gutenberg.org/ebooks/13463', 'en', 105), +(54841, 'Histoire du Consulat et de l\'Empire, (Vol. 09 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2013-07-26', 7, 'https://www.gutenberg.org/ebooks/43313', 'fr', 2051), +(54842, 'Waverley; Or, \'Tis Sixty Years Since', 'Scott, Walter', '2006-02-26', 22, 'https://www.gutenberg.org/ebooks/2034', 'en', 98), +(54843, 'Der Widerspenstigen Zähmung', 'Ettlinger, Karl', '2010-03-22', 13, 'https://www.gutenberg.org/ebooks/31733', 'de', 61), +(54844, 'Beadle\'s Dime Song Book No. 3\nA Collection of New and Popular Comic and Sentimental Songs.', 'Various', '2015-08-06', 7, 'https://www.gutenberg.org/ebooks/49629', 'en', 8833), +(54845, 'Twilight', 'Frankau, Julia', '2017-08-06', 24, 'https://www.gutenberg.org/ebooks/55276', 'en', 3499), +(54846, 'Project Gutenberg DVD: The July 2006 Special', NULL, '2006-07-14', 22, 'https://www.gutenberg.org/ebooks/19159', 'en', NULL), +(54847, 'Ιφιγένεια εν Αυλίδι', 'Euripides', '2008-10-06', 27, 'https://www.gutenberg.org/ebooks/26784', 'el', 1298), +(54848, 'Gospel Themes: A Treatise on Salient Features of \"Mormonism\"', 'Whitney, Orson F. (Orson Ferguson)', '2015-11-22', 8, 'https://www.gutenberg.org/ebooks/50536', 'en', 377), +(54849, 'Birds and All Nature, Vol. 4, No. 3, September 1898\r\nIllustrated by Color Photography', 'Various', '2014-12-07', 8, 'https://www.gutenberg.org/ebooks/47581', 'en', 490), +(54850, 'The New Gresham Encyclopedia. A to Amide\r\nVol. 1 Part 1', 'Various', '2010-10-15', 30, 'https://www.gutenberg.org/ebooks/34073', 'en', 1081), +(54851, 'The Journal of Arthur Stirling : (\"The Valley of the Shadow\")', 'Sinclair, Upton', '2005-03-01', 20, 'https://www.gutenberg.org/ebooks/7774', 'en', 918), +(54852, 'The New Spirit\nThird Edition', 'Ellis, Havelock', '2017-11-02', 28, 'https://www.gutenberg.org/ebooks/55878', 'en', 2372), +(54853, 'Die Regeln des Anstands, der Höflichkeit und der guten Sitte.', 'Lehmann, Ignaz', '2014-07-30', 10, 'https://www.gutenberg.org/ebooks/46453', 'de', 9152), +(54854, 'The Continental Monthly, Vol. 4, No. 4, October, 1863\r\nDevoted to Literature and National Policy', 'Various', '2005-07-18', 14, 'https://www.gutenberg.org/ebooks/16323', 'en', 558), +(54855, 'Discoverers and Explorers', 'Shaw, Edward R. (Edward Richard)', '2007-07-22', 22, 'https://www.gutenberg.org/ebooks/22116', 'en', 7544), +(54856, 'Amethyst: The Story of a Beauty', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-07', 15, 'https://www.gutenberg.org/ebooks/43121', 'en', 45), +(54857, 'Human Genome Project, rough draft, Chromosome Number 06', 'Human Genome Project', '2000-06-01', 2, 'https://www.gutenberg.org/ebooks/2206', 'en', 2318), +(54858, 'A Scientist Rises', 'Hall, Desmond Winter', '2008-12-09', 40, 'https://www.gutenberg.org/ebooks/27464', 'en', 179), +(54859, 'The Practical Book of Oriental Rugs', 'Lewis, G. Griffin (George Griffin)', '2017-02-19', 20, 'https://www.gutenberg.org/ebooks/54196', 'en', 13189), +(54860, 'Alphabetical Catalogue of Books in Fiction and General Literature Published by Chatto & Windus, Sept. 1905', 'Chatto & Windus (Firm)', '2004-10-06', 2, 'https://www.gutenberg.org/ebooks/13651', 'en', 2663), +(54861, 'Les Mémoires d\'un âne.', 'Ségur, Sophie, comtesse de', '2004-06-29', 29, 'https://www.gutenberg.org/ebooks/12783', 'fr', 1731), +(54862, 'En sommarsaga från Finland', 'Alfthan, Johannes', '2017-07-04', 17, 'https://www.gutenberg.org/ebooks/55044', 'sv', 61), +(54863, 'The Sensitive Man', 'Anderson, Poul', '2010-03-04', 116, 'https://www.gutenberg.org/ebooks/31501', 'en', 26), +(54864, 'Armour & Weapons', 'Ffoulkes, Charles John', '2012-12-20', 31, 'https://www.gutenberg.org/ebooks/41676', 'en', 3441), +(54865, 'An Humble Proposal to the People of England, for the Increase of their Trade, and Encouragement of Their Manufactures\nWhether the Present Uncertainty of Affairs Issues in Peace or War', 'Defoe, Daniel', '2010-05-15', 17, 'https://www.gutenberg.org/ebooks/32384', 'en', 18060), +(54866, 'The Great K. & A. Robbery', 'Ford, Paul Leicester', '2008-05-05', 9, 'https://www.gutenberg.org/ebooks/25333', 'en', 16764), +(54867, 'The Girl at Cobhurst', 'Stockton, Frank Richard', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/11106', 'en', 637), +(54868, 'The Animal Parasites of Man', 'Stephens, J. W. W. (John William Watson)', '2018-08-17', 93, 'https://www.gutenberg.org/ebooks/57713', 'en', 18061), +(54869, 'Margery Beade ja Beden armeliaisuus', 'Stretton, Hesba', '2010-07-25', 4, 'https://www.gutenberg.org/ebooks/33256', 'fi', 4927), +(54870, 'Forty Centuries of Ink\r\nOr, A chronological narrative concerning ink and its backgrounds, introducing incidental observations and deductions, parallels of time and color phenomena, bibliography, chemistry, poetical effusions, citations, anecdotes and curiosa together with some evidence respecting the evanescent character of most inks of to-day and an epitome of chemico-legal ink.', 'Carvalho, David Nunes', '1998-10-01', 43, 'https://www.gutenberg.org/ebooks/1483', 'en', 18062), +(54871, 'Obiter Dicta: Second Series', 'Birrell, Augustine', '2007-06-10', 10, 'https://www.gutenberg.org/ebooks/21793', 'en', 9546), +(54872, 'A Record of St. Cybi\'s Church, Holyhead\nand the Sermon preached after its Restoration, 1879', 'Stanley, Arthur Penrhyn', '2016-06-07', 5, 'https://www.gutenberg.org/ebooks/52261', 'en', 2386), +(54873, 'The Frithiof Saga', 'Tegnér, Esaias', '2019-06-07', 48, 'https://www.gutenberg.org/ebooks/59689', 'en', 18063), +(54874, 'Dutch the Diver; Or, A Man\'s Mistake', 'Fenn, George Manville', '2011-07-13', 13, 'https://www.gutenberg.org/ebooks/36724', 'en', 323), +(54875, 'State of the Union Addresses', 'Buchanan, James', '2004-02-01', 16, 'https://www.gutenberg.org/ebooks/5023', 'en', 1276), +(54876, 'The Deserter, and Other Stories: A Book of Two Wars', 'Frederic, Harold', '2013-11-28', 17, 'https://www.gutenberg.org/ebooks/44304', 'en', 10517), +(54877, 'The Chemical History of a Candle', 'Faraday, Michael', '2004-12-26', 191, 'https://www.gutenberg.org/ebooks/14474', 'en', 292), +(54878, 'Through Three Campaigns: A Story of Chitral, Tirah and Ashanti', 'Henty, G. A. (George Alfred)', '2007-02-21', 61, 'https://www.gutenberg.org/ebooks/20641', 'en', 18064), +(54879, 'Mr. Pim Passes By: A Comedy in Three Acts', 'Milne, A. A. (Alan Alexander)', '2005-01-01', 17, 'https://www.gutenberg.org/ebooks/7310', 'en', 317), +(54880, 'A Revision of the Treaty\r\nBeing a Sequel to The Economic Consequence of the Peace', 'Keynes, John Maynard', '2014-06-19', 46, 'https://www.gutenberg.org/ebooks/46037', 'en', 18065), +(54881, 'Among the Burmans: A Record of Fifteen Years of Work and its Fruitage', 'Cochrane, Henry Park', '2016-01-30', 10, 'https://www.gutenberg.org/ebooks/51080', 'en', 18066), +(54882, 'A Canadian Manor and Its Seigneurs: The Story of a Hundred Years, 1761-1861', 'Wrong, George McKinnon', '2005-09-25', 23, 'https://www.gutenberg.org/ebooks/16747', 'en', 18067), +(54883, 'Seven Poems and a Fragment', 'Yeats, W. B. (William Butler)', '2010-04-12', 17, 'https://www.gutenberg.org/ebooks/31959', 'en', 1136), +(54884, 'The History of Java, v. 1-2', 'Raffles, Thomas Stamford, Sir', '2015-09-01', 126, 'https://www.gutenberg.org/ebooks/49843', 'en', 13992), +(54885, 'Fêtes et coutumes populaires\r\nLes fêtes patronales—Le réveillon—Masques et travestis—Le joli mois de Mai—Les noces en Bretagne—La fête des morts—Les feux de la Saint-Jean—Danses et Musiques populaires', 'Le Goffic, Charles', '2007-09-11', 14, 'https://www.gutenberg.org/ebooks/22572', 'fr', 18068), +(54886, 'Leyte: The Return to the Philippines', 'Cannon, M. Hamlin', '2015-05-18', 32, 'https://www.gutenberg.org/ebooks/48991', 'en', 18069), +(54887, 'Shepherd of the Planets', 'Mattox, Alan', '2009-02-11', 20, 'https://www.gutenberg.org/ebooks/28048', 'en', 179), +(54888, 'A history of China., [3d ed. rev. and enl.]', 'Eberhard, Wolfram', '2006-02-07', 113, 'https://www.gutenberg.org/ebooks/17695', 'en', 4635), +(54889, 'Liverpool', 'Scott, Dixon', '2015-10-07', 16, 'https://www.gutenberg.org/ebooks/50152', 'en', 18070), +(54890, 'Walt Whitman: An Address', 'Ingersoll, Robert Green', '2011-09-24', 7, 'https://www.gutenberg.org/ebooks/34417', 'en', 18071), +(54891, 'For the Defence', 'Hume, Fergus', '2017-08-23', 18, 'https://www.gutenberg.org/ebooks/55420', 'en', 12596), +(54892, 'The Church Handy Dictionary', 'Anonymous', '2010-02-03', 8, 'https://www.gutenberg.org/ebooks/31165', 'en', 9973), +(54893, 'The Bible, Douay-Rheims, Book 58: Colossians\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8358', 'en', 14389), +(54894, 'Les historiettes de Tallemant des Réaux, tome quatrième\r\nMémoires pour servir à l\'histoire du XVIIe siècle', 'Tallemant des Réaux', '2013-04-08', 16, 'https://www.gutenberg.org/ebooks/42497', 'fr', 2874), +(54895, 'Comments on the Taxonomy and Geographic Distribution of Some North American Rabbits', 'Hall, E. Raymond (Eugene Raymond)', '2009-05-19', 11, 'https://www.gutenberg.org/ebooks/28874', 'en', 18072), +(54896, 'Detection of the Common Food Adulterants', 'Bruce, Edwin M.', '2013-08-23', 14, 'https://www.gutenberg.org/ebooks/43545', 'en', 9964), +(54897, 'Under the Greenwood Tree; Or, The Mellstock Quire\r\nA Rural Painting of the Dutch School', 'Hardy, Thomas', '2001-06-01', 147, 'https://www.gutenberg.org/ebooks/2662', 'en', 8003), +(54898, 'What the Moon Saw: and Other Tales', 'Andersen, H. C. (Hans Christian)', '2008-10-24', 58, 'https://www.gutenberg.org/ebooks/27000', 'en', 7830), +(54899, 'The Plays of W. E. Henley and R. L. Stevenson', 'Henley, William Ernest', '1996-11-01', 73, 'https://www.gutenberg.org/ebooks/719', 'en', 402), +(54900, 'In the Ranks of the C.I.V.', 'Childers, Erskine', '2004-08-20', 19, 'https://www.gutenberg.org/ebooks/13235', 'en', 18073), +(54901, 'Muinais-tiedustuksia Pohjanperiltä', 'Calamnius, J. W. (Johan Wiktor)', '2018-06-23', 7, 'https://www.gutenberg.org/ebooks/57377', 'fi', 7220), +(54902, 'Heroes of the Goodwin Sands', 'Treanor, Thomas Stanley', '2008-02-25', 16, 'https://www.gutenberg.org/ebooks/24685', 'en', 5584), +(54903, 'Evangelines Genvordigheder: Til Kvinder med rødt Haar', 'Glyn, Elinor', '2010-09-04', 25, 'https://www.gutenberg.org/ebooks/33632', 'da', 348), +(54904, 'The Eve of All-Hallows; Or, Adelaide of Tyrconnel, v. 1 of 3', 'Hartstonge, Matthew Weld', '2012-11-01', 5, 'https://www.gutenberg.org/ebooks/41212', 'en', 61), +(54905, 'Walks in Rome', 'Hare, Augustus J. C. (Augustus John Cuthbert)', '2012-03-29', 72, 'https://www.gutenberg.org/ebooks/39308', 'en', 2452), +(54906, 'Scarabs\r\nThe History, Manufacture and Symbolism of the Scarabæus in Ancient Egypt, Phoenicia, Sardinia, Etruria, etc.', 'Myer, Isaac', '2008-06-10', 27, 'https://www.gutenberg.org/ebooks/25757', 'en', 10475), +(54907, 'Inquiries into Human Faculty and Its Development', 'Galton, Francis', '2004-03-01', 66, 'https://www.gutenberg.org/ebooks/11562', 'en', 7357), +(54908, 'Uarda : a Romance of Ancient Egypt — Volume 09', 'Ebers, Georg', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/5447', 'en', 803), +(54909, 'Thoughts for the Quiet Hour', NULL, '2011-09-02', 49, 'https://www.gutenberg.org/ebooks/37292', 'en', 2064), +(54910, 'Punch, or the London Charivari, Vol. 108, May 11th, 1895', 'Various', '2014-01-26', 7, 'https://www.gutenberg.org/ebooks/44760', 'en', 134), +(54911, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 574, November 3, 1832 Title', 'Various', '2004-11-10', 6, 'https://www.gutenberg.org/ebooks/14010', 'en', 133), +(54912, 'The Story of a Play\nA Novel', 'Howells, William Dean', '2006-12-30', 21, 'https://www.gutenberg.org/ebooks/20225', 'en', 705), +(54913, 'Eine langweilige Geschichte: Aus den Aufzeichnungen eines alten Mannes', 'Chekhov, Anton Pavlovich', '2016-07-19', 15, 'https://www.gutenberg.org/ebooks/52605', 'de', 1871), +(54914, 'Heart-Histories and Life-Pictures', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 16, 'https://www.gutenberg.org/ebooks/4595', 'en', 50), +(54915, 'From Chart House to Bush Hut\nBeing the Record of a Sailor\'s 7 Years in the Queensland Bush', 'Bryde, C. W.', '2011-06-06', 23, 'https://www.gutenberg.org/ebooks/36340', 'en', 18074), +(54916, 'Legendary Tales of the Highlands (Volume 2 of 3)\nA sequel to Highland Rambles', 'Lauder, Thomas Dick, Sir', '2019-02-21', 10, 'https://www.gutenberg.org/ebooks/58931', 'en', 12165), +(54917, 'The Book of Susan: A Novel', 'Dodd, Lee Wilson', '2010-08-10', 15, 'https://www.gutenberg.org/ebooks/33400', 'en', 18075), +(54918, 'Gorgias', 'Plato', '2018-05-12', 14, 'https://www.gutenberg.org/ebooks/57145', 'fi', 5325), +(54919, 'Les chasseurs de chevelures', 'Reid, Mayne', '2004-01-01', 21, 'https://www.gutenberg.org/ebooks/10682', 'fr', 17953), +(54920, 'Representative Plays by American Dramatists: 1856-1911: The New York Idea', 'Mitchell, Langdon Elwyn', '2008-05-23', 17, 'https://www.gutenberg.org/ebooks/25565', 'en', 508), +(54921, 'J. S. Le Fanu\'s Ghostly Tales, Volume 3\r\nThe Haunted Baronet (1871)', 'Le Fanu, Joseph Sheridan', '2004-03-01', 64, 'https://www.gutenberg.org/ebooks/11750', 'en', 531), +(54922, 'The Ranch Girls at Boarding School', 'Vandercook, Margaret', '2017-12-01', 10, 'https://www.gutenberg.org/ebooks/56097', 'en', 18076), +(54923, 'Clara Vaughan, Volume 1 (of 3)', 'Blackmore, R. D. (Richard Doddridge)', '2012-10-10', 98, 'https://www.gutenberg.org/ebooks/41020', 'en', 18077), +(54924, 'Poor Jack', 'Marryat, Frederick', '2004-11-30', 11, 'https://www.gutenberg.org/ebooks/14222', 'en', 324), +(54925, 'Pages for Laughing Eyes', 'Unknown', '2006-12-04', 25, 'https://www.gutenberg.org/ebooks/20017', 'en', 388), +(54926, 'The Holiday Round', 'Milne, A. A. (Alan Alexander)', '2004-05-01', 17, 'https://www.gutenberg.org/ebooks/5675', 'en', 409), +(54927, 'Mother, Nurse and Infant\r\nA Manual Especially Adapted for the Guidance of Mothers and Monthly Nurses, Comprising Full Instruction in Regard To Pregnancy, Preparation for Child-birth, and the Care of Mother and Child, and Designed to Impart so Much Knowledge of Anatomy, Physiology, Midwifery, and the Proper Use of Medicines as Will Serve Intelligently to Direct the Wife, Mother and Nurse in All Emergencies.', 'Sackett, S. P.', '2018-09-27', 12, 'https://www.gutenberg.org/ebooks/57979', 'en', 9867), +(54928, 'Science and the Criminal', 'Mitchell, C. Ainsworth (Charles Ainsworth)', '2013-12-31', 15, 'https://www.gutenberg.org/ebooks/44552', 'en', 18078), +(54929, 'The Liberty Bell', 'Wallace, William Ross', '2014-04-24', 4, 'https://www.gutenberg.org/ebooks/45480', 'en', 18079), +(54930, 'Geschwister Tanner', 'Walser, Robert', '2011-05-21', 36, 'https://www.gutenberg.org/ebooks/36172', 'de', 376), +(54931, '\'Farewell, Nikola\'', 'Boothby, Guy', '2012-06-04', 24, 'https://www.gutenberg.org/ebooks/39906', 'en', 2295), +(54932, 'The Heart of Cherry McBain: A Novel', 'Durkin, Douglas', '2016-06-29', 9, 'https://www.gutenberg.org/ebooks/52437', 'en', 65), +(54933, 'An Inquiry into the Permanent Causes of the Decline and Fall of Powerful and Wealthy Nations.\nDesigned To Shew How The Prosperity Of The British Empire\nMay Be Prolonged', 'Playfair, William', '2005-08-21', 50, 'https://www.gutenberg.org/ebooks/16575', 'en', 13326), +(54934, 'The Literary Remains of Samuel Taylor Coleridge, Volume 3', 'Coleridge, Samuel Taylor', '2005-09-01', 39, 'https://www.gutenberg.org/ebooks/8956', 'en', 2156), +(54935, 'The Apple Dumpling and Other Stories for Young Boys and Girls', 'Fanny, Aunt', '2007-09-23', 18, 'https://www.gutenberg.org/ebooks/22740', 'en', 388), +(54936, 'The Emigrant Mechanic and Other Tales in Verse\r\nTogether with Numerous Songs Upon Canadian Subjects', 'Cowherd, Thomas', '2004-12-01', 6, 'https://www.gutenberg.org/ebooks/7122', 'en', 8), +(54937, 'Jack Among the Indians; Or, A Boy\'s Summer on the Buffalo Plains', 'Grinnell, George Bird', '2014-07-06', 32, 'https://www.gutenberg.org/ebooks/46205', 'en', 10882), +(54938, 'Juizo Verdadeiro sobre a carta contra os Medicos, Cirurgioens e Boticarios', 'Morganti, Bento', '2010-12-11', 21, 'https://www.gutenberg.org/ebooks/34625', 'pt', 9499), +(54939, 'South Africa and the Transvaal War, Vol. 1 (of 8)\r\nFrom the Foundation of Cape Colony to the Boer Ultimatum of 9th Oct. 1899', 'Creswicke, Louis', '2007-12-03', 23, 'https://www.gutenberg.org/ebooks/23692', 'en', 1956), +(54940, 'The Chautauquan, Vol. 03, April 1883', 'Chautauqua Institution', '2015-11-01', 6, 'https://www.gutenberg.org/ebooks/50360', 'en', 1453), +(54941, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 264, July 14, 1827', 'Various', '2006-02-01', 24, 'https://www.gutenberg.org/ebooks/9884', 'en', 133), +(54942, 'The Ultroom Error', 'Sohl, Jerry', '2010-02-22', 36, 'https://www.gutenberg.org/ebooks/31357', 'en', 26), +(54943, 'Essays of Michel de Montaigne — Volume 02', 'Montaigne, Michel de', '2004-11-01', 97, 'https://www.gutenberg.org/ebooks/3582', 'en', 1964), +(54944, 'The American Missionary — Volume 35, No. 7, July, 1881', 'Various', '2017-09-24', 5, 'https://www.gutenberg.org/ebooks/55612', 'en', 562), +(54945, 'The White Mice', 'Davis, Richard Harding', '2008-11-11', 33, 'https://www.gutenberg.org/ebooks/27232', 'en', 7962), +(54946, 'The Edda, Volume 1\r\nThe Divine Mythology of the North\r\nPopular Studies in Mythology, Romance, and Folklore, No. 12', 'Faraday, L. Winifred', '2004-07-23', 161, 'https://www.gutenberg.org/ebooks/13007', 'en', 6418), +(54947, 'Az uj földesur (1. kötet)', 'Jókai, Mór', '2013-09-20', 6, 'https://www.gutenberg.org/ebooks/43777', 'hu', 18080), +(54948, 'How I Filmed the War\r\nA Record of the Extraordinary Experiences of the Man Who Filmed the Great Somme Battles, etc.', 'Malins, Geoffrey H.', '2009-10-19', 27, 'https://www.gutenberg.org/ebooks/30285', 'en', 2396), +(54949, 'Boyhood', 'Tolstoy, Leo, graf', '2006-03-22', 132, 'https://www.gutenberg.org/ebooks/2450', 'en', 417), +(54950, 'Ηθικά Νικομάχεια, Τόμος Πρώτος', 'Aristotle', '2009-04-27', 60, 'https://www.gutenberg.org/ebooks/28626', 'el', 680), +(54951, 'Reginald', 'Saki', '2001-09-01', 102, 'https://www.gutenberg.org/ebooks/2830', 'en', 1902), +(54952, 'Handbook of Medical Entomology', 'Johannsen, O. A. (Oskar Augustus)', '2010-11-11', 48, 'https://www.gutenberg.org/ebooks/34279', 'en', 5693), +(54953, 'Blackwood\'s Edinburgh Magazine, Volume 68, No. 421, November 1850', 'Various', '2014-08-23', 14, 'https://www.gutenberg.org/ebooks/46659', 'en', 274), +(54954, 'In Luck at Last', 'Besant, Walter', '2005-06-25', 22, 'https://www.gutenberg.org/ebooks/16129', 'en', 376), +(54955, 'The American', 'James, Henry', '2006-03-12', 187, 'https://www.gutenberg.org/ebooks/177', 'en', 18081), +(54956, 'De Roos van Dekama', 'Lennep, J. van (Jacob)', '2006-09-02', 13, 'https://www.gutenberg.org/ebooks/19161', 'nl', 98), +(54957, 'Notes and Queries, Number 31, June 1, 1850', 'Various', '2004-06-01', 6, 'https://www.gutenberg.org/ebooks/12589', 'en', 105), +(54958, 'The Life of Nelson, Volume 2\r\nThe Embodiment of the Sea Power of Great Britain', 'Mahan, A. T. (Alfred Thayer)', '2005-10-21', 39, 'https://www.gutenberg.org/ebooks/16915', 'en', 18082), +(54959, 'Philip Gilbert Hamerton\nAn Autobiography, 1834-1858, and a Memoir by His Wife, 1858-1894', 'Hamerton, Eugénie', '2005-07-01', 15, 'https://www.gutenberg.org/ebooks/8536', 'en', 18083), +(54960, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 4 (of 8)\r\nThe Hour-glass. Cathleen ni Houlihan. The Golden Helmet. The Irish Dramatic Movement', 'Yeats, W. B. (William Butler)', '2015-08-05', 98, 'https://www.gutenberg.org/ebooks/49611', 'en', 1728), +(54961, 'Curiosities of Heat', 'Tefft, Lyman Beecher', '2012-04-29', 17, 'https://www.gutenberg.org/ebooks/39566', 'en', 2713), +(54962, 'Tierras Solares\r\nObras Completas Vol. III', 'Darío, Rubén', '2016-08-20', 15, 'https://www.gutenberg.org/ebooks/52857', 'es', 18084), +(54963, 'De Vegetarische Keuken\r\nKookboek van den Nederlandschen Vegetariërsbond', 'Valk-Heijnsdijk, E. M.', '2008-04-22', 28, 'https://www.gutenberg.org/ebooks/25139', 'nl', 3321), +(54964, 'A fekete vér; Lenczi fráter', 'Jókai, Mór', '2018-07-16', 13, 'https://www.gutenberg.org/ebooks/57519', 'hu', 234); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(54965, 'Free Thought and Official Propaganda', 'Russell, Bertrand', '2014-02-16', 224, 'https://www.gutenberg.org/ebooks/44932', 'en', 1191), +(54966, 'The Celtic Christianity of Cornwall: Divers Sketches and Studies', 'Taylor, Thomas', '2017-01-17', 14, 'https://www.gutenberg.org/ebooks/53985', 'en', 18085), +(54967, 'The Pivot of Civilization', 'Sanger, Margaret', '2006-02-22', 179, 'https://www.gutenberg.org/ebooks/1689', 'en', 5722), +(54968, 'Tum Tum, the Jolly Elephant: His Many Adventures', 'Barnum, Richard', '2007-05-24', 17, 'https://www.gutenberg.org/ebooks/21599', 'en', 3133), +(54969, 'Tumacacori National Monument, Arizona', 'United States. National Park Service', '2019-05-11', 18, 'https://www.gutenberg.org/ebooks/59483', 'en', 18086), +(54970, 'The $100 Prize Essay on the Cultivation of the Potato.\r\nPrize offered by W. T. Wylie and awarded to D. H. Compton.\r\nHow to Cook the Potato, Furnished by Prof. Blot.', 'Compton, D. A.', '2008-06-26', 24, 'https://www.gutenberg.org/ebooks/25905', 'en', 18087), +(54971, 'Felix O\'Day', 'Smith, Francis Hopkinson', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/5229', 'en', 1660), +(54972, 'Lodrix, the Little Lake Dweller', 'Wiley, Belle', '2018-12-26', 11, 'https://www.gutenberg.org/ebooks/58551', 'en', 18088), +(54973, 'The Autobiography of Thomas Platter, a schoolmaster of the sixteenth century.', 'Platter, Thomas', '2010-10-15', 18, 'https://www.gutenberg.org/ebooks/33860', 'en', 18089), +(54974, 'Franz Liszt', 'Huneker, James', '2012-05-21', 34, 'https://www.gutenberg.org/ebooks/39754', 'en', 18090), +(54975, 'Die Liebe der Erika Ewald: Novellen', 'Zweig, Stefan', '2012-01-27', 70, 'https://www.gutenberg.org/ebooks/38686', 'de', 61), +(54976, 'The Problems of Philosophy', 'Russell, Bertrand', '2004-06-01', 1277, 'https://www.gutenberg.org/ebooks/5827', 'en', 16283), +(54977, 'A Peep into Toorkisthan', 'Burslem, Rollo Gillespie', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/11902', 'en', 16073), +(54978, 'L\'allegoria dell\'autunno: Omaggio offerto a Venezia da Gabriele D\'Annunzio', 'D\'Annunzio, Gabriele', '2016-06-07', 26, 'https://www.gutenberg.org/ebooks/52259', 'it', 3942), +(54979, 'Jack Jingle, and Sucky Shingle', 'Anonymous', '2019-01-24', 8, 'https://www.gutenberg.org/ebooks/58763', 'en', 4299), +(54980, 'The Heavenly Life', 'Allen, James', '2007-02-03', 51, 'https://www.gutenberg.org/ebooks/20679', 'en', 1130), +(54981, 'Prolegomena to the Study of Hegel\'s Philosophy, and Especially of His Logic', 'Wallace, William', '2017-06-27', 34, 'https://www.gutenberg.org/ebooks/54992', 'en', 4797), +(54982, 'Theatro de João d\'Andrade Corvo - I\nO Alliciador - O Astrologo', 'Corvo, João de Andrade', '2009-03-26', 36, 'https://www.gutenberg.org/ebooks/28414', 'pt', 3231), +(54983, 'The Prairie Flower: A Tale of the Indian Border', 'Aimard, Gustave', '2013-10-10', 7, 'https://www.gutenberg.org/ebooks/43925', 'en', 315), +(54984, 'The Torn Bible; Or, Hubert\'s Best Friend', 'Somerton, Alice', '2011-02-07', 40, 'https://www.gutenberg.org/ebooks/35199', 'en', 18091), +(54985, 'Seekers in Sicily: Being a Quest for Persephone by Jane and Peripatetica', 'Hoyt, Anne', '2017-10-28', 6, 'https://www.gutenberg.org/ebooks/55840', 'en', 9580), +(54986, 'An Account of the Proceedings on the Trial of Susan B. Anthony, on the Charge of Illegal Voting, at the Presidential Election in Nov., 1872, and on the Trial of Beverly W. Jones, Edwin T. Marsh, and William B. Hall, the Inspectors of Election by Whom Her Vote was Received.', 'Anonymous', '2006-04-28', 49, 'https://www.gutenberg.org/ebooks/18281', 'en', 18092), +(54987, 'The New Dr. Price Cookbook', 'Royal Baking Powder Company', '2004-10-07', 59, 'https://www.gutenberg.org/ebooks/13669', 'en', 1369), +(54988, 'Chats on Old Furniture: A Practical Guide for Collectors', 'Hayden, Arthur', '2011-01-08', 4, 'https://www.gutenberg.org/ebooks/34877', 'en', 7492), +(54989, 'Dracula', 'Stoker, Bram', '1995-10-01', 9354, 'https://www.gutenberg.org/ebooks/345', 'en', 428), +(54990, 'David\'s Little Lad', 'Meade, L. T.', '2013-07-07', 6, 'https://www.gutenberg.org/ebooks/43119', 'en', 2788), +(54991, 'Nordostpassagens Historia; Eller, Vega-Expeditionens Föregångare', 'Stuxberg, Anton', '2010-03-07', 20, 'https://www.gutenberg.org/ebooks/31539', 'sv', 7979), +(54992, 'The Doré Bible Gallery, Volume 4', NULL, '2004-07-28', 11, 'https://www.gutenberg.org/ebooks/8704', 'en', 9674), +(54993, 'Pyhän Patrikin päivä eli Luutnantin keinot: Ilveilys', 'Sheridan, Richard Brinsley', '2015-07-12', 10, 'https://www.gutenberg.org/ebooks/49423', 'fi', 18093), +(54994, 'Phyllis: A Twin', 'Whitehill, Dorothy', '2007-10-07', 12, 'https://www.gutenberg.org/ebooks/22912', 'en', 2154), +(54995, 'Captain Jinks, Hero', 'Crosby, Ernest Howard', '2006-09-22', 15, 'https://www.gutenberg.org/ebooks/19353', 'en', 2815), +(54996, 'The Tale of Jemima Puddle-Duck', 'Potter, Beatrix', '2005-01-27', 169, 'https://www.gutenberg.org/ebooks/14814', 'en', 4818), +(54997, 'Away in a Manger', 'McGuinn, Roger', '2003-12-01', 8, 'https://www.gutenberg.org/ebooks/10488', 'en', 583), +(54998, 'Immortal Youth: A Study in the Will to Create', 'Price, Lucien', '2012-04-01', 69, 'https://www.gutenberg.org/ebooks/39330', 'en', 18094), +(54999, 'Über das Aussterben der Naturvölker', 'Gerland, Georg Karl Cornelius', '2004-11-12', 27, 'https://www.gutenberg.org/ebooks/14028', 'de', 3105), +(55000, 'The Military Adventures of Charles O\'Neil\r\nWho was a Soldier in the Army of Lord Wellington during the Memorable Peninsular War and the Continental Campaigns from 1811 to 1815', 'O\'Neil, Charles', '2018-11-18', 12, 'https://www.gutenberg.org/ebooks/58307', 'en', 7120), +(55001, 'Stuurman Flink; of, De schipbreuk van \"De Vrede\"', 'Marryat, Frederick', '2014-01-26', 15, 'https://www.gutenberg.org/ebooks/44758', 'nl', 123), +(55002, 'Ancient Manners; Also Known As Aphrodite', 'Louÿs, Pierre', '2011-06-11', 73, 'https://www.gutenberg.org/ebooks/36378', 'en', 18095), +(55003, 'Joy Ride', 'Meadows, Mark', '2010-04-12', 15, 'https://www.gutenberg.org/ebooks/31961', 'en', 26), +(55004, '說苑, Volume 5-8', 'Liu, Xiang', '2005-01-01', 7, 'https://www.gutenberg.org/ebooks/7328', 'zh', 1682), +(55005, 'The Boarding School: Familiar conversations between a governess and her pupils.\r\nWritten for the amusement and instruction of young ladies.', 'Unknown', '2009-01-14', 11, 'https://www.gutenberg.org/ebooks/27804', 'en', 1877), +(55006, 'A Man of Two Countries', 'Harriman, Alice', '2009-02-14', 13, 'https://www.gutenberg.org/ebooks/28070', 'en', 1238), +(55007, 'The Pirate Slaver: A Story of the West African Coast', 'Collingwood, Harry', '2007-11-15', 27, 'https://www.gutenberg.org/ebooks/23498', 'en', 18096), +(55008, 'Eevan sisaret: Yksinäytöksinen kuvaelma', 'Bäckström, Edvard', '2016-04-28', 9, 'https://www.gutenberg.org/ebooks/51884', 'fi', 5375), +(55009, 'Haydn', 'Hadden, J. Cuthbert (James Cuthbert)', '2003-02-01', 72, 'https://www.gutenberg.org/ebooks/3788', 'en', 18097), +(55010, 'The Bible, Douay-Rheims, Book 60: 2 Thessalonians\nThe Challoner Revision', NULL, '2005-06-01', 2, 'https://www.gutenberg.org/ebooks/8360', 'en', 6723), +(55011, 'Molnbilder: Dikter', 'Alfthan, Johannes', '2015-05-25', 15, 'https://www.gutenberg.org/ebooks/49047', 'sv', 8), +(55012, 'The Irish Penny Journal, Vol. 1 No. 47, May 22, 1841', 'Various', '2017-08-23', 2, 'https://www.gutenberg.org/ebooks/55418', 'en', 81), +(55013, 'The Principles of Gothic Ecclesiastical Architecture, Elucidated by Question and Answer, 4th ed.', 'Bloxam, Matthew Holbeche', '2006-11-08', 78, 'https://www.gutenberg.org/ebooks/19737', 'en', 15049), +(55014, 'Hector Graeme', 'Brentwood, Evelyn', '2014-09-10', 7, 'https://www.gutenberg.org/ebooks/46833', 'en', 18098), +(55015, 'Le Livre 010101, Tome 2 (1998-2003)', 'Lebert, Marie', '2008-10-26', 19, 'https://www.gutenberg.org/ebooks/27038', 'fr', 2047), +(55016, 'The Birds\' Christmas Carol', 'Wiggin, Kate Douglas Smith', '1996-11-01', 59, 'https://www.gutenberg.org/ebooks/721', 'en', 388), +(55017, 'A Report upon the Mollusk Fisheries of Massachusetts', 'Massachusetts. Commissioners on Fisheries and Game', '2015-02-08', 13, 'https://www.gutenberg.org/ebooks/48195', 'en', 18099), +(55018, 'Russia\'s Part in the World War', 'Shumsky-Solomonov, C. M.', '2016-01-18', 7, 'https://www.gutenberg.org/ebooks/50956', 'en', 6144), +(55019, 'Astounding Stories of Super-Science April 1930', 'Pelcher, Anthony', '2009-07-12', 162, 'https://www.gutenberg.org/ebooks/29390', 'en', 842), +(55020, 'The Remarkable Adventures of an Old Woman and Her Pig\nAn Ancient Tale in a Modern Dress', 'Anonymous', '2007-09-27', 18, 'https://www.gutenberg.org/ebooks/22778', 'en', 343), +(55021, 'An Appeal in Favor of that Class of Americans Called Africans', 'Child, Lydia Maria', '2009-03-03', 51, 'https://www.gutenberg.org/ebooks/28242', 'en', 1174), +(55022, 'The Oxford Circus: A Novel of Oxford and Youth', 'Mortimer, Raymond', '2015-10-31', 8, 'https://www.gutenberg.org/ebooks/50358', 'en', 10892), +(55023, 'Making His Way; Or, Frank Courtney\'s Struggle Upward', 'Alger, Horatio, Jr.', '2004-10-20', 66, 'https://www.gutenberg.org/ebooks/13803', 'en', 5105), +(55024, 'Endymion', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-04-27', 29, 'https://www.gutenberg.org/ebooks/7926', 'en', 45), +(55025, 'A Christmas Carol', 'Dickens, Charles', '2006-10-10', 48, 'https://www.gutenberg.org/ebooks/19505', 'en', 13723), +(55026, 'Henrik Ibsen', 'Gosse, Edmund', '2005-05-01', 31, 'https://www.gutenberg.org/ebooks/8152', 'en', 18100), +(55027, 'Metal Spinning', 'Painter, William A.', '2015-06-25', 34, 'https://www.gutenberg.org/ebooks/49275', 'en', 18101), +(55028, 'Repertory of The Comedie Humaine, Part 1', 'Cerfberr, Anatole', '2001-01-01', 13, 'https://www.gutenberg.org/ebooks/2468', 'en', 17898), +(55029, 'The Children\'s Own Longfellow', 'Longfellow, Henry Wadsworth', '2005-10-01', 17, 'https://www.gutenberg.org/ebooks/9080', 'en', 1209), +(55030, 'The Snow Image', 'Hawthorne, Nathaniel', '1996-05-01', 145, 'https://www.gutenberg.org/ebooks/513', 'en', 13), +(55031, 'Sea-Hounds', 'Freeman, Lewis R. (Lewis Ransome)', '2010-08-15', 24, 'https://www.gutenberg.org/ebooks/33438', 'en', 10034), +(55032, 'The Hastings Road and the \"Happy Springs of Tunbridge\"', 'Harper, Charles G. (Charles George)', '2019-02-18', 8, 'https://www.gutenberg.org/ebooks/58909', 'en', 776), +(55033, 'How Lisa Loved the King', 'Eliot, George', '2007-03-13', 19, 'https://www.gutenberg.org/ebooks/20813', 'en', 8), +(55034, 'John Leech, His Life and Work, Vol. 2 [of 2]', 'Frith, William Powell', '2012-10-10', 34, 'https://www.gutenberg.org/ebooks/41018', 'en', 9211), +(55035, 'The Auto Boys\' Quest', 'Braden, James A. (James Andrew)', '2012-03-10', 15, 'https://www.gutenberg.org/ebooks/39102', 'en', 4887), +(55036, 'The Works of Samuel Johnson, LL.D. in Nine Volumes, Volume 05\r\nMiscellaneous Pieces', 'Johnson, Samuel', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/11768', 'en', 5416), +(55037, '裁判', 'Rice, Elmer', '2011-08-05', 13, 'https://www.gutenberg.org/ebooks/36976', 'ja', 427), +(55038, 'Engineer Port Repair Ship', 'United States. War Department', '2018-09-21', 21, 'https://www.gutenberg.org/ebooks/57941', 'en', 18102), +(55039, 'Το κεφάλαιον\r\nΠερίληψις Παύλου Λαφάργκ, μετά προλόγου Β. Παρέτο', 'Marx, Karl', '2011-08-15', 95, 'https://www.gutenberg.org/ebooks/37098', 'el', 18103), +(55040, 'The Saint\'s Everlasting Rest\r\nA Treatise of the Blessed State of the Saints in Their Enjoyment of God in Heaven', 'Baxter, Richard', '2018-10-19', 42, 'https://www.gutenberg.org/ebooks/58135', 'en', 6957), +(55041, 'Hogarth', 'Hind, C. Lewis (Charles Lewis)', '2013-01-12', 15, 'https://www.gutenberg.org/ebooks/41824', 'en', 2557), +(55042, 'Nervous Ills, Their Cause and Cure', 'Sidis, Boris', '2018-04-02', 39, 'https://www.gutenberg.org/ebooks/56893', 'en', 12076), +(55043, 'Fiori d\'arancio', 'Bracco, Roberto', '2011-12-04', 20, 'https://www.gutenberg.org/ebooks/38216', 'it', 407), +(55044, 'In het Oerwoud en bij de Kannibalen op de Nieuwe Hebriden (deel 1 van 2)\nDe Aarde en haar Volken, 1917', 'Speiser, Felix', '2008-02-19', 12, 'https://www.gutenberg.org/ebooks/24649', 'nl', 3259), +(55045, 'Cupid\'s Cyclopedia', 'Clay, John Cecil', '2017-12-30', 16, 'https://www.gutenberg.org/ebooks/56269', 'en', 13125), +(55046, 'The Literature of the Ancient Egyptians', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2005-05-29', 97, 'https://www.gutenberg.org/ebooks/15932', 'en', 18104), +(55047, 'A Question of Latitude', 'Davis, Richard Harding', '2006-05-12', 6, 'https://www.gutenberg.org/ebooks/1817', 'en', 61), +(55048, 'Poil de Carotte', 'Renard, Jules', '2003-10-01', 67, 'https://www.gutenberg.org/ebooks/4559', 'fr', 3210), +(55049, 'Hakkaa päälle! Sotarunoja valkoiselle armeijalle', 'Kianto, Ilmari', '2019-04-07', 4, 'https://www.gutenberg.org/ebooks/59221', 'fi', 1171), +(55050, 'The Reluctant Weapon', 'Myers, Howard L.', '2010-04-15', 29, 'https://www.gutenberg.org/ebooks/31995', 'en', 26), +(55051, 'The Project Gutenberg Works of Joseph Conrad: An Index', 'Conrad, Joseph', '2009-06-18', 74, 'https://www.gutenberg.org/ebooks/29156', 'en', 198), +(55052, 'The Golden Road', 'Allen, Frank Waller', '2011-03-07', 37, 'https://www.gutenberg.org/ebooks/35509', 'en', 61), +(55053, '春柳鶯', 'Nanbeiheguanshizhe', '2008-10-14', 30, 'https://www.gutenberg.org/ebooks/26922', 'zh', 1003), +(55054, 'Flying the Atlantic in Sixteen Hours\nWith a Discussion of Aircraft in Commerce and Transportation', 'Brown, Arthur Whitten, Sir', '2014-10-15', 18, 'https://www.gutenberg.org/ebooks/47129', 'en', 18105), +(55055, 'Malcolm Sage, Detective', 'Jenkins, Herbert George', '2009-02-14', 26, 'https://www.gutenberg.org/ebooks/28084', 'en', 128), +(55056, 'Noodlot', 'Couperus, Louis', '2006-02-01', 37, 'https://www.gutenberg.org/ebooks/17659', 'nl', 61), +(55057, 'Compound Words\nTypographic Technical Series for Apprentices #36', 'Hamilton, Frederick W. (Frederick William)', '2010-01-04', 19, 'https://www.gutenberg.org/ebooks/30847', 'en', 18106), +(55058, 'The Doings of Raffles Haw', 'Doyle, Arthur Conan', '2005-06-01', 65, 'https://www.gutenberg.org/ebooks/8394', 'en', 2634), +(55059, 'Peregrinaciones\nObras Completas Vol. XII', 'Darío, Rubén', '2016-04-26', 13, 'https://www.gutenberg.org/ebooks/51870', 'es', 18107), +(55060, 'The Brochure Series of Architectural Illustration, vol. 06, No. 09, September 1900\r\nThe Ducal Palace: Venice; Types of Italian Garden Fountains', 'Various', '2015-01-08', 11, 'https://www.gutenberg.org/ebooks/47915', 'en', 2140), +(55061, 'Les vrais sous-offs\r\nRéponse à M. Descaves', 'Dubus, Édouard', '2006-06-17', 14, 'https://www.gutenberg.org/ebooks/18611', 'fr', 18108), +(55062, 'The Pennycomequicks, Volume 1 (of 3)', 'Baring-Gould, S. (Sabine)', '2015-02-04', 27, 'https://www.gutenberg.org/ebooks/48161', 'en', 1380), +(55063, 'The Life of Isaac Ingalls Stevens, Volume 1 (of 2)', 'Stevens, Hazard', '2013-08-30', 25, 'https://www.gutenberg.org/ebooks/43589', 'en', 13871), +(55064, 'Sketches from Memory\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 19, 'https://www.gutenberg.org/ebooks/9246', 'en', 20), +(55065, 'The World\'s Best Poetry, Volume 10: Poetical Quotations', NULL, '2004-07-17', 47, 'https://www.gutenberg.org/ebooks/12925', 'en', 2346), +(55066, 'Elements of Foreign Exchange: A Foreign Exchange Primer', 'Escher, Franklin', '2009-07-10', 39, 'https://www.gutenberg.org/ebooks/29364', 'en', 18109), +(55067, 'A Select Collection of Old English Plays, Volume 06', NULL, '2006-02-01', 24, 'https://www.gutenberg.org/ebooks/9848', 'en', 1088), +(55068, 'Krigskorrespondenter och andra lögnare', 'Strömberg, Sigge', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/12119', 'sv', 61), +(55069, 'Seeing the Elephant', 'Baker, George M. (George Melville)', '2015-06-25', 9, 'https://www.gutenberg.org/ebooks/49281', 'en', 868), +(55070, 'Dell\'Emancipazione civile degl\'Israeliti', 'Azeglio, Massimo d\'', '2013-05-08', 23, 'https://www.gutenberg.org/ebooks/42669', 'it', 18110), +(55071, 'Samuel Pepys and the Royal Navy', 'Tanner, J. R. (Joseph Robson)', '2015-02-24', 10, 'https://www.gutenberg.org/ebooks/48353', 'en', 18111), +(55072, 'Stories from Thucydides', 'Thucydides', '2005-10-01', 59, 'https://www.gutenberg.org/ebooks/9074', 'en', 18112), +(55073, 'Ways of Nature', 'Burroughs, John', '2009-10-13', 83, 'https://www.gutenberg.org/ebooks/30249', 'en', 11805), +(55074, 'Old Kaskaskia', 'Catherwood, Mary Hartwell', '2006-05-19', 6, 'https://www.gutenberg.org/ebooks/18423', 'en', 18113), +(55075, 'The Works of Frederick Schiller', 'Schiller, Friedrich', '2004-12-08', 77, 'https://www.gutenberg.org/ebooks/6800', 'en', 18114), +(55076, 'The Philippine Islands, 1493-1898; Volume 50\r\nExplorations by early navigators, descriptions of the islands and their peoples, their history and records of the catholic missions, as related in contemporaneous books and manuscripts, showing the political, economic, commercial and religious conditions of those islands from their earliest relations with European nations to the close of the nineteenth century', NULL, '2018-05-20', 23, 'https://www.gutenberg.org/ebooks/57189', 'en', 7466), +(55077, 'Remarks on the practice and policy of lending Bodleian printed books and manuscripts', 'Chandler, Henry W. (Henry William)', '2011-10-26', 10, 'https://www.gutenberg.org/ebooks/37850', 'en', 2761), +(55078, 'An Essay on Comedy and the Uses of the Comic Spirit', 'Meredith, George', '1998-02-01', 38, 'https://www.gutenberg.org/ebooks/1219', 'en', 15187), +(55079, 'Dwarf Fruit Trees\r\nTheir propagation, pruning, and general management, adapted to the United States and Canada', 'Waugh, F. A. (Frank Albert)', '2011-11-15', 28, 'https://www.gutenberg.org/ebooks/38024', 'en', 6679), +(55080, 'Prince Prigio\nFrom \"His Own Fairy Book\"', 'Lang, Andrew', '2007-06-25', 26, 'https://www.gutenberg.org/ebooks/21935', 'en', 388), +(55081, 'Het voedsel der Goden en hoe het op Aarde kwam', 'Wells, H. G. (Herbert George)', '2011-08-05', 10, 'https://www.gutenberg.org/ebooks/36982', 'nl', 14023), +(55082, 'Thais', 'France, Anatole', '2016-11-14', 12, 'https://www.gutenberg.org/ebooks/53529', 'fi', 2938), +(55083, 'Miss Ellis\'s Mission', 'Smith, Mary P. Wells (Mary Prudence Wells)', '2012-02-10', 16, 'https://www.gutenberg.org/ebooks/38818', 'en', 18115), +(55084, 'Histoire amoureuse des Gaules; suivie des Romans historico-satiriques du XVIIe siècle, Tome IV', 'Bussy, Roger de Rabutin, comte de', '2012-09-30', 23, 'https://www.gutenberg.org/ebooks/40902', 'fr', 1870), +(55085, 'Big Game: A Story for Girls', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 26, 'https://www.gutenberg.org/ebooks/21109', 'en', 2024), +(55086, 'Sketches in Duneland', 'Reed, Earl H. (Earl Howell)', '2019-03-05', 11, 'https://www.gutenberg.org/ebooks/59013', 'en', 18116), +(55087, 'Haapaniemen keinu: Kuvauksia sydänmaan kylästä', 'Talvio, Maila', '2018-03-29', 3, 'https://www.gutenberg.org/ebooks/56867', 'fi', 41), +(55088, 'Air Service Boys in the Big Battle; Or, Silencing the Big Guns', 'Beach, Charles Amory', '2004-09-01', 22, 'https://www.gutenberg.org/ebooks/6458', 'en', 2279), +(55089, 'Serge Panine — Volume 03', 'Ohnet, Georges', '2003-04-01', 10, 'https://www.gutenberg.org/ebooks/3916', 'en', 560), +(55090, 'Poetical Works of William Cullen Bryant\nHousehold Edition', 'Bryant, William Cullen', '2009-08-15', 43, 'https://www.gutenberg.org/ebooks/29700', 'en', 8), +(55091, 'Turkish Harems & Circassian Homes', 'Hope, Andrée', '2015-04-18', 27, 'https://www.gutenberg.org/ebooks/48737', 'en', 18117), +(55092, 'Helen of the Old House', 'Wright, Harold Bell', '2005-12-01', 20, 'https://www.gutenberg.org/ebooks/9410', 'en', 61), +(55093, 'An Apologie for the Royal Party (1659); and A Panegyric to Charles the Second (1661)', 'Evelyn, John', '2006-02-23', 19, 'https://www.gutenberg.org/ebooks/17833', 'en', 18118), +(55094, 'Dio\'s Rome, Volume 1 (of 6)\nAn Historical Narrative Originally Composed in Greek during the Reigns of Septimius Severus, Geta and Caracalla, Macrinus, Elagabalus and Alexander Severus: and Now Presented in English Form', 'Cassius Dio Cocceianus', '2006-03-24', 88, 'https://www.gutenberg.org/ebooks/18047', 'en', 6793), +(55095, 'Die Harpyen von Madrit, oder die Postkutsche\nAus dem Spanischen des Verfassers der Donna Rufina', 'Castillo Solórzano, Alonso de', '2017-03-15', 6, 'https://www.gutenberg.org/ebooks/54368', 'de', 18119), +(55096, 'Rollo in the Woods', 'Abbott, Jacob', '2006-09-07', 25, 'https://www.gutenberg.org/ebooks/19195', 'en', 1123), +(55097, '幻中游', 'Yanxiazhuren, active 18th century', '2008-10-02', 8, 'https://www.gutenberg.org/ebooks/26748', 'zh', 18120), +(55098, 'Ten Months in the Field with the Boers', 'Anonymous', '2012-11-24', 20, 'https://www.gutenberg.org/ebooks/41488', 'en', 1956), +(55099, 'Princess Mary\'s Gift Book\r\nAll profits on sale given to the Queen\'s \"Work for Women\" Fund which is acting in Conjunction with The National Relief Fund', NULL, '2012-05-02', 62, 'https://www.gutenberg.org/ebooks/39592', 'en', 1201), +(55100, 'An Advanced English Grammar with Exercises', 'Farley, Frank Edgar', '2014-05-29', 304, 'https://www.gutenberg.org/ebooks/45814', 'en', 1979), +(55101, 'A Distributional Study of the Amphibians of the Isthmus of Tehuantepec, México', 'Duellman, William Edward', '2011-12-30', 21, 'https://www.gutenberg.org/ebooks/38440', 'en', 18121), +(55102, 'Anmärkningar och nödvändiga Upplysningar vid Herr C. J. Holms Anteckningar öfver Fälttågen emot Ryssland åren 1808 och 1809', 'Adlercreutz, Gustav Magnus', '2017-01-16', 15, 'https://www.gutenberg.org/ebooks/53971', 'sv', 18122), +(55103, 'Harper\'s Round Table, October 20, 1896', 'Various', '2019-05-11', 5, 'https://www.gutenberg.org/ebooks/59477', 'en', 668), +(55104, '\"Same old Bill, eh Mable!\"', 'Streeter, Edward', '2005-05-03', 18, 'https://www.gutenberg.org/ebooks/15758', 'en', 5749), +(55105, 'Where the Pavement Ends', 'Russell, John', '2010-06-22', 31, 'https://www.gutenberg.org/ebooks/32946', 'en', 797), +(55106, 'The Boy Scouts on the Trail; or, Scouting through the Big Game Country', 'Carter, Herbert, active 1909-1917', '2014-02-27', 3, 'https://www.gutenberg.org/ebooks/45028', 'en', 1002), +(55107, 'The Rising Tide of Color Against White World-Supremacy', 'Stoddard, Lothrop', '2011-09-12', 188, 'https://www.gutenberg.org/ebooks/37408', 'en', 18123), +(55108, 'Silas Marner', 'Eliot, George', '2008-03-13', 29, 'https://www.gutenberg.org/ebooks/24823', 'es', 95), +(55109, 'Mémoires de madame de Rémusat (2/3)\npubliées par son petit-fils, Paul de Rémusat', 'Rémusat, Madame de (Claire Elisabeth Jeanne Gravier de Vergennes)', '2010-10-31', 10, 'https://www.gutenberg.org/ebooks/33894', 'fr', 1870), +(55110, 'The Only True Mother Goose Melodies', 'Anonymous', '2004-01-01', 25, 'https://www.gutenberg.org/ebooks/4901', 'en', 859), +(55111, 'Récits d\'une tante (Vol. 2 de 4)\nMémoires de la Comtesse de Boigne, née d\'Osmond', 'Boigne, Louise-Eléonore-Charlotte-Adélaide d\'Osmond, comtesse de', '2010-05-12', 16, 'https://www.gutenberg.org/ebooks/32348', 'fr', 6735), +(55112, 'Punch, or the London Charivari, Volume 105, September 30th 1893', 'Various', '2012-01-25', 2, 'https://www.gutenberg.org/ebooks/38672', 'en', 134), +(55113, 'Les Cent Nouvelles Nouvelles, tome II', NULL, '2012-09-15', 18, 'https://www.gutenberg.org/ebooks/40768', 'fr', 642), +(55114, 'Punchinello, Volume 1, No. 05, April 30, 1870', 'Various', '2003-11-01', 18, 'https://www.gutenberg.org/ebooks/10018', 'en', 372), +(55115, 'Our Base Ball Club and How It Won the Championship', 'Brooks, Noah', '2019-06-01', 20, 'https://www.gutenberg.org/ebooks/59645', 'en', 3669), +(55116, 'David Crockett, Scout\r\nSmall Boy, Pilgrim, Mountaineer, Soldier, Bear-Hunter and Congressman; Defender of the Alamo', 'Allen, Charles Fletcher', '2019-01-31', 21, 'https://www.gutenberg.org/ebooks/58797', 'en', 17582), +(55117, 'Un tournoi à Romans en 1484', 'Chevalier, Ulysse', '2004-02-01', 24, 'https://www.gutenberg.org/ebooks/10824', 'fr', 18124), +(55118, 'Handbook to the Mennonite Hymnary', 'Hostetler, Lester', '2017-06-24', 10, 'https://www.gutenberg.org/ebooks/54966', 'en', 12494), +(55119, 'The Sheriff and His Partner', 'Harris, Frank', '2007-10-12', 18, 'https://www.gutenberg.org/ebooks/23008', 'en', 179), +(55120, 'That Which Hath Wings: A Novel of the Day', 'Dehan, Richard', '2016-03-12', 12, 'https://www.gutenberg.org/ebooks/51428', 'en', 579), +(55121, 'Six Centuries of Painting', 'Davies, Randall', '2009-07-28', 29, 'https://www.gutenberg.org/ebooks/29532', 'en', 2227), +(55122, 'Living on a Little', 'Benton, Caroline French', '2013-05-25', 34, 'https://www.gutenberg.org/ebooks/42803', 'en', 1369), +(55123, 'Barrington. Volume 2 (of 2)', 'Lever, Charles James', '2011-01-08', 7, 'https://www.gutenberg.org/ebooks/34883', 'en', 1380), +(55124, 'The Rectory Children', 'Molesworth, Mrs.', '2006-04-28', 28, 'https://www.gutenberg.org/ebooks/18275', 'en', 1655), +(55125, 'David Blaize and the Blue Door', 'Benson, E. F. (Edward Frederic)', '2015-03-16', 20, 'https://www.gutenberg.org/ebooks/48505', 'en', 10012), +(55126, '青箱雜記', 'Wu, Chuhou, jin shi 1053', '2007-12-12', 6, 'https://www.gutenberg.org/ebooks/23834', 'zh', 2525), +(55127, 'Lyrical Ballads, With a Few Other Poems (1798)', 'Wordsworth, William', '2006-01-01', 467, 'https://www.gutenberg.org/ebooks/9622', 'en', 3947), +(55128, 'Days with Sir Roger De Coverley', 'Addison, Joseph', '2002-07-01', 74, 'https://www.gutenberg.org/ebooks/3318', 'en', 472), +(55129, 'Jacques Ortis; Les fous du docteur Miraglia', 'Foscolo, Ugo', '2011-04-24', 14, 'https://www.gutenberg.org/ebooks/35951', 'fr', 8187), +(55130, 'The Black Hills, Mid-Continent Resort', 'Williams, Albert N. (Albert Nathaniel)', '2017-07-11', 5, 'https://www.gutenberg.org/ebooks/55088', 'en', 4733), +(55131, 'How Does a Tree Grow? Or, Botany for Young Australians', 'Bonwick, James', '2018-05-12', 12, 'https://www.gutenberg.org/ebooks/57142', 'en', 18125), +(55132, 'Curiosités Infernales', 'Jacob, P. L.', '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/10685', 'fr', 1223), +(55133, 'Bee and Butterfly: A Tale of Two Cousins', 'Madison, Lucy Foster', '2010-08-11', 26, 'https://www.gutenberg.org/ebooks/33407', 'en', 18126), +(55134, 'Soljalan emäntä', 'Railo, Eino', '2019-02-22', 3, 'https://www.gutenberg.org/ebooks/58936', 'fi', 175), +(55135, 'The Revolt of the Star Men', 'Gallun, Raymond Z.', '2012-10-11', 34, 'https://www.gutenberg.org/ebooks/41027', 'en', 26), +(55136, 'The Velveteen Rabbit', 'Bianco, Margery Williams', '2004-03-01', 388, 'https://www.gutenberg.org/ebooks/11757', 'en', 1045), +(55137, 'Wild Life in a Southern County', 'Jefferies, Richard', '2011-08-02', 19, 'https://www.gutenberg.org/ebooks/36949', 'en', 18127), +(55138, 'Woman\'s Profession as Mother and Educator, with Views in Opposition to Woman Suffrage', 'Beecher, Catharine Esther', '2017-11-30', 13, 'https://www.gutenberg.org/ebooks/56090', 'en', 3605), +(55139, 'William Adolphus Turnpike', 'Banks, William', '2008-05-22', 19, 'https://www.gutenberg.org/ebooks/25562', 'en', 65), +(55140, 'Systematic Theology (Volume 2 of 3)', 'Strong, Augustus Hopkins', '2013-12-31', 31, 'https://www.gutenberg.org/ebooks/44555', 'en', 18128), +(55141, 'The Voice on the Wire', 'Ball, Eustace Hale', '2004-05-01', 27, 'https://www.gutenberg.org/ebooks/5672', 'en', 128), +(55142, 'The Calico Cat', 'Thompson, Charles Miner', '2006-12-03', 12, 'https://www.gutenberg.org/ebooks/20010', 'en', 1853), +(55143, 'Bergrichters Erdenwallen', 'Achleitner, Arthur', '2004-12-01', 23, 'https://www.gutenberg.org/ebooks/14225', 'de', 841), +(55144, '\"Nothing Between\"\r\nThe Special Doctrines Vindicated at the Reformation as Bearing upon the Spiritual Life of the Church', 'Hoare, Edward', '2016-06-29', 2, 'https://www.gutenberg.org/ebooks/52430', 'en', 18129), +(55145, 'L\'Illustration, No. 0043, 23 Décembre 1843', 'Various', '2012-06-02', 3, 'https://www.gutenberg.org/ebooks/39901', 'fr', 150), +(55146, 'Letters of Major Jack Downing, of the Downingville Militia', 'Smith, Seba', '2011-05-20', 30, 'https://www.gutenberg.org/ebooks/36175', 'en', 2665), +(55147, 'Erämaan kutsu', 'London, Jack', '2014-04-24', 20, 'https://www.gutenberg.org/ebooks/45487', 'fi', 2464), +(55148, 'A New Witness for God (Volume 1 of 3)', 'Roberts, B. H. (Brigham Henry)', '2014-07-06', 25, 'https://www.gutenberg.org/ebooks/46202', 'en', 310), +(55149, 'Catherine Booth — a Sketch', 'Duff, Mildred', '2004-12-01', 25, 'https://www.gutenberg.org/ebooks/7125', 'en', 18130), +(55150, 'Financial Crime and Corruption', 'Vaknin, Samuel', '2007-09-23', 33, 'https://www.gutenberg.org/ebooks/22747', 'en', 18131), +(55151, 'Indians of the Yosemite Valley and Vicinity\nTheir History, Customs and Traditions', 'Clark, Galen', '2005-08-21', 8, 'https://www.gutenberg.org/ebooks/16572', 'en', 4181), +(55152, 'Scientific American, Volume 17, No. 26 December 28, 1867\r\nA Weekly Journal of Practical Information, Art, Science, Mechanics, Chemistry, and Manufactures.', 'Various', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8951', 'en', 352), +(55153, 'Stjärnornas kungabarn 3: Makalös\nEn tids- och karaktersstudie från drottning Kristinas dagar', 'Topelius, Zacharias', '2015-11-02', 71, 'https://www.gutenberg.org/ebooks/50367', 'sv', 98), +(55154, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 263, Supplementary Number (1827)', 'Various', '2006-02-01', 10, 'https://www.gutenberg.org/ebooks/9883', 'en', 133), +(55155, 'The Little Gray Lady\n1909', 'Smith, Francis Hopkinson', '2007-12-03', 24, 'https://www.gutenberg.org/ebooks/23695', 'en', 109), +(55156, 'A Bibliotheca Nacional de Lisboa\r\nSuas deficiencias e remedios d\'essas deficiencias', 'Cunha, Xavier da', '2010-12-11', 5, 'https://www.gutenberg.org/ebooks/34622', 'pt', 18132), +(55157, 'American Historical and Literary Curiosities, Part 19.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-16', 9, 'https://www.gutenberg.org/ebooks/7919', 'en', 453), +(55158, 'Murtoviivoja: Novelleja', 'Onerva, L.', '2017-09-24', 0, 'https://www.gutenberg.org/ebooks/55615', 'fi', 665), +(55159, 'Bible Studies in the Life of Paul, Historical and Constructive', 'Sell, Henry T. (Henry Thorne)', '2010-02-22', 15, 'https://www.gutenberg.org/ebooks/31350', 'en', 8733), +(55160, 'Essays of Michel de Montaigne — Volume 05', 'Montaigne, Michel de', '2004-11-01', 39, 'https://www.gutenberg.org/ebooks/3585', 'en', 1964), +(55161, 'Early English Alliterative Poems\nin the West-Midland Dialect of the Fourteenth Century', NULL, '2009-10-19', 49, 'https://www.gutenberg.org/ebooks/30282', 'en', 4610), +(55162, 'Stories By English Authors: Italy (Selected by Scribners)', NULL, '2006-04-04', 34, 'https://www.gutenberg.org/ebooks/2457', 'en', 179), +(55163, 'La Patria lontana', 'Corradini, Enrico', '2015-03-02', 8, 'https://www.gutenberg.org/ebooks/48398', 'it', 1544), +(55164, 'Gardens of the Caribbees, v. 1/2\nSketches of a Cruise to the West Indies and the Spanish Main', 'Starr, Ida May Hill', '2013-09-20', 12, 'https://www.gutenberg.org/ebooks/43770', 'en', 3841), +(55165, 'The Rough Riders', 'Roosevelt, Theodore', '2004-07-23', 71, 'https://www.gutenberg.org/ebooks/13000', 'en', 529), +(55166, 'The Voyage Alone in the Yawl \"Rob Roy\"', 'MacGregor, John', '2008-11-12', 29, 'https://www.gutenberg.org/ebooks/27235', 'en', 6105), +(55167, 'Le Tour du Monde; Afrique Orientale\r\nJournal des voyages et des voyageurs; 2. sem. 1860', 'Various', '2007-09-11', 15, 'https://www.gutenberg.org/ebooks/22575', 'fr', 1182), +(55168, 'William Cobbett: A Biography in Two Volumes, Vol. 1', 'Smith, Edward', '2015-09-01', 20, 'https://www.gutenberg.org/ebooks/49844', 'en', 18133), +(55169, 'History of the Scottish Regiments in the British Army', 'Murray, Archibald K.', '2016-01-30', 1, 'https://www.gutenberg.org/ebooks/51087', 'en', 6517), +(55170, 'The Busie Body', 'Centlivre, Susanna', '2005-09-24', 35, 'https://www.gutenberg.org/ebooks/16740', 'en', 1088), +(55171, 'Of Walks and Walking Tours: An Attempt to find a Philosophy and a Creed', 'Haultain, Arnold', '2014-06-19', 45, 'https://www.gutenberg.org/ebooks/46030', 'en', 3350), +(55172, '夢溪筆談, Volume 01-26', 'Shen, Kuo', '2005-01-01', 11, 'https://www.gutenberg.org/ebooks/7317', 'zh', 2525), +(55173, 'The Treasure of the Isle of Mist', 'Tarn, W. W. (William Woodthorpe)', '2010-11-23', 31, 'https://www.gutenberg.org/ebooks/34410', 'en', 1007), +(55174, 'L\'élixir de vie\nConte magique', 'Lermina, Jules', '2006-02-06', 12, 'https://www.gutenberg.org/ebooks/17692', 'fr', 580), +(55175, 'Cathay', 'Li, Bai', '2015-10-08', 94, 'https://www.gutenberg.org/ebooks/50155', 'en', 8), +(55176, 'India and Tibet\r\nA history of the relations which have subsisted between the two countries from the time of Warren Hastings to 1910; with a particular account of the mission to Lhasa of 1904', 'Younghusband, Francis Edward, Sir', '2015-05-19', 22, 'https://www.gutenberg.org/ebooks/48996', 'en', 18134), +(55177, 'The Shire Horse in Peace and War', 'Frost, J. Albert', '2015-05-29', 5, 'https://www.gutenberg.org/ebooks/49078', 'en', 2777), +(55178, 'Outwitting the Hun: My Escape from a German Prison Camp', 'O\'Brien, Pat', '2013-04-08', 56, 'https://www.gutenberg.org/ebooks/42490', 'en', 1390), +(55179, 'The International Monthly, Volume 5, No. 3, March, 1852', 'Various', '2010-02-03', 9, 'https://www.gutenberg.org/ebooks/31162', 'en', 3080), +(55180, 'A Tour Through Old Provence', 'Forrest, A. S. (Archibald Stevenson)', '2017-08-25', 12, 'https://www.gutenberg.org/ebooks/55427', 'en', 209), +(55181, 'Cape Cod Folks', 'Greene, Sarah Pratt McLean', '2006-11-04', 16, 'https://www.gutenberg.org/ebooks/19708', 'en', 6349), +(55182, 'Stories of California', 'Sexton, Ella M. (Ella May)', '2004-08-20', 20, 'https://www.gutenberg.org/ebooks/13232', 'en', 7593), +(55183, 'Notes and Queries, Number 210, November 5, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 23, 'https://www.gutenberg.org/ebooks/27007', 'en', 105), +(55184, 'Big Ancestor', 'Wallace, F. L. (Floyd L.)', '2016-01-19', 48, 'https://www.gutenberg.org/ebooks/50969', 'en', 109), +(55185, 'The Professor at the Breakfast-Table', 'Holmes, Oliver Wendell', '2004-09-27', 37, 'https://www.gutenberg.org/ebooks/2665', 'en', 2688), +(55186, 'Beginners Luck', 'Hahn, Emily', '2013-08-23', 18, 'https://www.gutenberg.org/ebooks/43542', 'en', 2547), +(55187, 'Track\'s End\r\nBeing the Narrative of Judson Pitcher\'s Strange Winter Spent There as Told by Himself and Edited by Hayden Carruth Including an Accurate Account of His Numerous Adventures, and the Facts Concerning His Several Surprising Escapes from Death Now First Printed in Full', 'Carruth, Hayden', '2009-05-19', 63, 'https://www.gutenberg.org/ebooks/28873', 'en', 1351), +(55188, 'The Great Discovery', 'Maclean, Norman', '2010-09-04', 19, 'https://www.gutenberg.org/ebooks/33635', 'en', 6554), +(55189, 'Quilts: Their Story and How to Make Them', 'Webster, Marie D. (Marie Daugherty)', '2008-02-24', 80, 'https://www.gutenberg.org/ebooks/24682', 'en', 18135), +(55190, 'The Mysteries of Heron Dyke: A Novel of Incident. Volume 2 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-06-21', 15, 'https://www.gutenberg.org/ebooks/57370', 'en', 137), +(55191, 'Friends, though divided: A Tale of the Civil War', 'Henty, G. A. (George Alfred)', '2004-03-01', 85, 'https://www.gutenberg.org/ebooks/11565', 'en', 2521), +(55192, 'Colonial Born: A Tale of the Queensland bush', 'Scott, G. Firth', '2008-06-10', 29, 'https://www.gutenberg.org/ebooks/25750', 'en', 792), +(55193, 'Selected Poems of Francis Thompson', 'Thompson, Francis', '2012-10-28', 25, 'https://www.gutenberg.org/ebooks/41215', 'en', 54), +(55194, 'An Ethical Problem\r\nOr, Sidelights upon Scientific Experimentation on Man and Animals', 'Leffingwell, Albert', '2006-12-29', 18, 'https://www.gutenberg.org/ebooks/20222', 'en', 5852), +(55195, 'Clara A. Swain, M.D.', 'Hoskins, Robert, Mrs.', '2004-11-11', 4, 'https://www.gutenberg.org/ebooks/14017', 'en', 18136), +(55196, 'The life and correspondence of Sir Anthony Panizzi, K.C.B., Vol. 1 (of 2)\r\nLate principal librarian of the British museum, senator of Italy, etc.', 'Fagan, Louis', '2018-11-24', 8, 'https://www.gutenberg.org/ebooks/58338', 'en', 8426), +(55197, 'Richard Wagner His Life and His Dramas\nA Biographical Study of the Man and an Explanation of His Work', 'Henderson, W. J. (William James)', '2014-01-26', 11, 'https://www.gutenberg.org/ebooks/44767', 'en', 15234), +(55198, 'Uarda : a Romance of Ancient Egypt — Volume 02', 'Ebers, Georg', '2004-04-01', 15, 'https://www.gutenberg.org/ebooks/5440', 'en', 803), +(55199, 'Soft Candy for Bees', 'Gates, Burton N. (Burton Noble)', '2011-09-02', 10, 'https://www.gutenberg.org/ebooks/37295', 'en', 87), +(55200, 'Cast Adrift', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 19, 'https://www.gutenberg.org/ebooks/4592', 'en', 716), +(55201, 'Holman Hunt', 'Coleridge, Mary E. (Mary Elizabeth)', '2011-06-07', 26, 'https://www.gutenberg.org/ebooks/36347', 'en', 18137), +(55202, 'Eine dänische Geschichte: Roman', 'Schopenhauer, Adele', '2016-07-18', 5, 'https://www.gutenberg.org/ebooks/52602', 'de', 138), +(55203, 'The New Gresham Encyclopedia. Amiel to Atrauli\r\nVol. 1 Part 2', 'Various', '2010-10-15', 29, 'https://www.gutenberg.org/ebooks/34074', 'en', 1081), +(55204, 'Everyday Objects; Or, Picturesque Aspects of Natural History.', 'Adams, W. H. Davenport (William Henry Davenport)', '2014-12-08', 31, 'https://www.gutenberg.org/ebooks/47586', 'en', 871), +(55205, 'On Sulphonfluoresceïn and Some of Its Derivatives', 'Hayes, C. W. (Charles Willard)', '2015-11-22', 11, 'https://www.gutenberg.org/ebooks/50531', 'en', 1821), +(55206, 'Pour cause de fin de bail\nOEuvres anthumes', 'Allais, Alphonse', '2007-07-20', 36, 'https://www.gutenberg.org/ebooks/22111', 'fr', 1032), +(55207, 'The Women of the Caesars', 'Ferrero, Guglielmo', '2005-07-18', 76, 'https://www.gutenberg.org/ebooks/16324', 'en', 18138), +(55208, 'In Vain', 'Sienkiewicz, Henryk', '2014-07-30', 16, 'https://www.gutenberg.org/ebooks/46454', 'en', 1676), +(55209, 'Diamond Dust', 'Shearin, K. Kay', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7773', 'en', 18139), +(55210, 'An Address to the Sisters of St. Peter\'s Home, Brompton', 'Goulburn, Edward Meyrick', '2017-02-18', 0, 'https://www.gutenberg.org/ebooks/54191', 'en', 18140), +(55211, 'A Series of Lessons in Raja Yoga', 'Atkinson, William Walker', '2004-10-06', 103, 'https://www.gutenberg.org/ebooks/13656', 'en', 8086), +(55212, 'Mammals of the San Gabriel Mountains of California', 'Vaughan, Terry A.', '2011-01-05', 20, 'https://www.gutenberg.org/ebooks/34848', 'en', 18141), +(55213, 'The Wonders of the Jungle, Book Two', 'Ghosh, Sarath Kumar', '2008-12-09', 15, 'https://www.gutenberg.org/ebooks/27463', 'en', 7394), +(55214, 'Human Genome Project, rough draft, Chromosome Number 01', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2201', 'en', 1841), +(55215, 'The Children of the Castle', 'Molesworth, Mrs.', '2013-07-08', 13, 'https://www.gutenberg.org/ebooks/43126', 'en', 18142), +(55216, 'The Sweet Girl Graduates: A Farce in Three Acts and an Epilogue', 'Woodman, H. Rea (Hannah Rea)', '2010-03-04', 16, 'https://www.gutenberg.org/ebooks/31506', 'en', 508), +(55217, 'The Prose Works of Jonathan Swift, D.D. — Volume 06\r\nThe Drapier\'s Letters', 'Swift, Jonathan', '2004-06-29', 59, 'https://www.gutenberg.org/ebooks/12784', 'en', 18143), +(55218, 'Airiselän tukinajossa: Kuvaus Lapin rajoilta', 'Kataja, Väinö', '2017-07-04', 33, 'https://www.gutenberg.org/ebooks/55043', 'fi', 175), +(55219, 'Coleridge\'s Ancient Mariner and Select Poems', 'Coleridge, Samuel Taylor', '2004-02-01', 81, 'https://www.gutenberg.org/ebooks/11101', 'en', 54), +(55220, 'Deerfoot in The Mountains', 'Ellis, Edward Sylvester', '2008-05-05', 38, 'https://www.gutenberg.org/ebooks/25334', 'en', 12591), +(55221, 'Two Wyoming Girls and Their Homestead Claim: A Story for Girls', 'Marshall, Caroline Louise', '2010-05-15', 9, 'https://www.gutenberg.org/ebooks/32383', 'en', 18144), +(55222, 'Double Challenge', 'Kjelgaard, Jim', '2012-12-20', 23, 'https://www.gutenberg.org/ebooks/41671', 'en', 110), +(55223, 'Hempfield: A Novel', 'Grayson, David', '2010-07-24', 9, 'https://www.gutenberg.org/ebooks/33251', 'en', 262), +(55224, 'The Four Horsemen of the Apocalypse', 'Blasco Ibáñez, Vicente', '2006-05-03', 97, 'https://www.gutenberg.org/ebooks/1484', 'en', 2564), +(55225, 'The Gilded Age, Part 1.', 'Warner, Charles Dudley', '2004-06-20', 15, 'https://www.gutenberg.org/ebooks/5818', 'en', 1238), +(55226, 'Index of the Project Gutenberg Works of Don Marquis', 'Marquis, Don', '2018-08-17', 16, 'https://www.gutenberg.org/ebooks/57714', 'en', 198), +(55227, 'One Maid\'s Mischief', 'Fenn, George Manville', '2011-07-13', 9, 'https://www.gutenberg.org/ebooks/36723', 'en', 61), +(55228, 'Sigrid Liljeholm: Roman', 'Runeberg, Fredrika Charlotta Tengström', '2016-06-07', 5, 'https://www.gutenberg.org/ebooks/52266', 'sv', 98), +(55229, 'The Boy from the Ranch; Or, Roy Bradner\'s City Experiences', 'Webster, Frank V.', '2007-06-10', 12, 'https://www.gutenberg.org/ebooks/21794', 'en', 8611), +(55230, 'The Nabob, Vol. 1 (of 2)', 'Daudet, Alphonse', '2007-02-22', 22, 'https://www.gutenberg.org/ebooks/20646', 'en', 3075), +(55231, 'Birds of Guernsey (1879)\r\nAnd the Neighbouring Islands: Alderney, Sark, Jethou, Herm; Being a Small Contribution to the Ornitholony of the Channel Islands', 'Smith, Cecil', '2004-12-26', 32, 'https://www.gutenberg.org/ebooks/14473', 'en', 18145), +(55232, 'A Chambermaid\'s Diary', 'Mirbeau, Octave', '2013-11-28', 37, 'https://www.gutenberg.org/ebooks/44303', 'en', 58), +(55233, 'State of the Union Addresses', 'Lincoln, Abraham', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/5024', 'en', 1926), +(55234, 'Two Chancellors: Prince Gortchakof and Prince Bismarck', 'Klaczko, Julian', '2012-04-28', 9, 'https://www.gutenberg.org/ebooks/39559', 'en', 8222), +(55235, 'Japanese Homes and Their Surroundings', 'Morse, Edward Sylvester', '2016-08-21', 107, 'https://www.gutenberg.org/ebooks/52868', 'en', 18146), +(55236, 'The Audiencia in the Spanish Colonies\nAs illustrated by the Audiencia of Manila (1583-1800)', 'Cunningham, Charles Henry', '2012-11-23', 17, 'https://www.gutenberg.org/ebooks/41443', 'en', 7136), +(55237, 'The Pearl Story Book\nA Collection of Tales, Original and Selected', 'Colman, Mrs. (Pamela Chandler)', '2004-02-01', 29, 'https://www.gutenberg.org/ebooks/11333', 'en', 388), +(55238, '\"The Gallant, Good Riou\", and Jack Renton\r\n1901', 'Becke, Louis', '2008-04-19', 18, 'https://www.gutenberg.org/ebooks/25106', 'en', 324), +(55239, 'Sarah Winnemucca\'s Practical Solution of the Indian Problem\nA Letter to Dr. Lyman Abbot of the \"Christian Union\"', 'Peabody, Elizabeth Palmer', '2018-07-17', 8, 'https://www.gutenberg.org/ebooks/57526', 'en', 18147), +(55240, 'Alexander Hamilton', 'Conant, Charles A. (Charles Arthur)', '2012-08-27', 73, 'https://www.gutenberg.org/ebooks/40591', 'en', 18148), +(55241, 'Plane Geometry', 'Wentworth, G. A. (George Albert)', '2010-07-03', 104, 'https://www.gutenberg.org/ebooks/33063', 'en', 10013), +(55242, 'Kahden vuoden loma-aika', 'Verne, Jules', '2016-05-12', 9, 'https://www.gutenberg.org/ebooks/52054', 'fi', 1526), +(55243, 'An Unpardonable Liar', 'Parker, Gilbert', '2005-05-07', 10, 'https://www.gutenberg.org/ebooks/15793', 'en', 61), +(55244, 'The Weight of the Crown', 'White, Fred M. (Fred Merrick)', '2011-06-24', 77, 'https://www.gutenberg.org/ebooks/36511', 'en', 2004), +(55245, 'The Esperantist, Vol. 2, No. 5', NULL, '2013-11-08', 8, 'https://www.gutenberg.org/ebooks/44131', 'eo', 3912), +(55246, 'Film: Set of 4 Atomic Bomb Test Films', NULL, '2004-03-01', 56, 'https://www.gutenberg.org/ebooks/5216', 'en', 9753), +(55247, 'Grace Harlowe\'s Fourth Year at Overton College', 'Chase, Josephine', '2007-01-28', 36, 'https://www.gutenberg.org/ebooks/20474', 'en', 5010), +(55248, 'The Golden Calf, Which the World Adores, and Desires\r\nIn Which Is Handled the Most Rare and Incomparable Wonder of Nature, in Transmuting Metals; viz. How the Intire Substance of Lead, Was in One Moment Transmuted in Gold-Obrizon, with an Exceeding Small Particle of the True Philosophick Stone', 'Helvetius, Johann Friedrich', '2005-01-09', 35, 'https://www.gutenberg.org/ebooks/14641', 'en', 7276), +(55249, 'Life of James Buchanan, Fifteenth President of the United States. v. 1 (of 2)', 'Curtis, George Ticknor', '2016-10-02', 5, 'https://www.gutenberg.org/ebooks/53186', 'en', 11357), +(55250, 'Vuoksen varrella: 1-näytöksinen laulunsekainen kansannäytelmä', 'Wuori, Martti', '2015-12-16', 11, 'https://www.gutenberg.org/ebooks/50703', 'fi', 247), +(55251, 'The Cuckoo Clock', 'Molesworth, Mrs.', '2009-04-27', 13, 'https://www.gutenberg.org/ebooks/28619', 'en', 2203), +(55252, 'Mediaeval Lore from Bartholomew Anglicus', 'Bartholomaeus, Anglicus, active 13th century', '2004-09-01', 69, 'https://www.gutenberg.org/ebooks/6493', 'en', 6026), +(55253, 'Of High Descent', 'Fenn, George Manville', '2010-11-08', 8, 'https://www.gutenberg.org/ebooks/34246', 'en', 61), +(55254, 'The Secret Agent: A Simple Tale', 'Conrad, Joseph', '1997-07-01', 910, 'https://www.gutenberg.org/ebooks/974', 'en', 235), +(55255, 'Blackwood\'s Edinburgh Magazine, Volume 69, No. 424, February 1851', 'Various', '2014-08-24', 20, 'https://www.gutenberg.org/ebooks/46666', 'en', 274), +(55256, 'Quotes and Images from Celebrated Crimes', 'Dumas, Alexandre', '2005-02-01', 42, 'https://www.gutenberg.org/ebooks/7541', 'en', 1026), +(55257, 'The Bridling of Pegasus: Prose Papers on Poetry', 'Austin, Alfred', '2011-02-24', 22, 'https://www.gutenberg.org/ebooks/35394', 'en', 8), +(55258, 'Piccaninnies', 'Peacocke, Isabel M. (Isabel Maud)', '2006-11-29', 18, 'https://www.gutenberg.org/ebooks/19962', 'en', 3822), +(55259, 'Impressions of South Africa', 'Bryce, James Bryce, Viscount', '2007-08-14', 35, 'https://www.gutenberg.org/ebooks/22323', 'en', 8745), +(55260, 'Studies of Trees', 'Levison, Jacob Joshua', '2005-06-23', 112, 'https://www.gutenberg.org/ebooks/16116', 'en', 7267), +(55261, 'The Unknown Guest', 'Maeterlinck, Maurice', '2000-01-01', 36, 'https://www.gutenberg.org/ebooks/2033', 'en', 6363), +(55262, 'Adventures on the Roof of the World', 'Le Blond, Aubrey, Mrs.', '2013-07-26', 9, 'https://www.gutenberg.org/ebooks/43314', 'en', 3982), +(55263, 'Essays on Taste', 'Armstrong, John', '2004-09-15', 9, 'https://www.gutenberg.org/ebooks/13464', 'en', 2250), +(55264, 'The Autobiography of Benjamin Franklin', 'Franklin, Benjamin', '1994-07-01', 2002, 'https://www.gutenberg.org/ebooks/148', 'en', 854), +(55265, 'The Two Hundredth Anniversary of the Settlement of the Town of New Milford, Conn. June 17th, 1907\nAddress Delivered by Daniel Davenport, of Bridgeport, Conn.', 'Davenport, Daniel', '2008-12-29', 6, 'https://www.gutenberg.org/ebooks/27651', 'en', 18149), +(55266, 'The Story of the Kearsarge and Alabama', 'Browne, A. K.', '2008-10-06', 10, 'https://www.gutenberg.org/ebooks/26783', 'en', 18150), +(55267, 'Luonnon-kirja: Ala-alkeiskouluin tarpeiksi', 'Topelius, Zacharias', '2017-08-06', 7, 'https://www.gutenberg.org/ebooks/55271', 'fi', 7177), +(55268, 'Extract from a Sermon Delivered at the Bulfinch-Street Church, Boston, Jan. 9, 1853, the Sunday Following the Interment of the Late Amos Lawrence', 'Gray, Frederick T. (Frederick Turell)', '2010-03-22', 13, 'https://www.gutenberg.org/ebooks/31734', 'en', 18151), +(55269, 'Among My Books. Second Series', 'Lowell, James Russell', '2005-07-01', 13, 'https://www.gutenberg.org/ebooks/8509', 'en', 1173), +(55270, 'The Pearl Fishers', 'Stacpoole, H. De Vere (Henry De Vere)', '2017-06-22', 13, 'https://www.gutenberg.org/ebooks/54959', 'en', 1592), +(55271, 'A Historical Geography of the British Colonies, Vol. V\r\nCanada—Part I, Historical', 'Lucas, Charles Prestwood, Sir', '2010-10-16', 17, 'https://www.gutenberg.org/ebooks/34080', 'en', 2163), +(55272, 'Tom Slade : Boy Scout of the Moving Pictures', 'Fitzhugh, Percy Keese', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6655', 'en', 18152), +(55273, 'La vieja verde: Estudios al natural', 'Fernández y González, Manuel', '2014-12-07', 12, 'https://www.gutenberg.org/ebooks/47572', 'es', 98), +(55274, 'Lists of Stories and Programs for Story Hours', NULL, '2005-12-02', 6, 'https://www.gutenberg.org/ebooks/17202', 'en', 6258), +(55275, 'Stories in Verse', 'Abbey, Henry', '2007-10-16', 28, 'https://www.gutenberg.org/ebooks/23037', 'en', 8), +(55276, 'Tytöt talosilla: Kertomus', 'Lassila, Maiju', '2016-03-11', 8, 'https://www.gutenberg.org/ebooks/51417', 'fi', 175), +(55277, 'Algic Researches, Comprising Inquiries Respecting the Mental Characteristics of the North American Indians, First Series. Indian Tales and Legends, Vol. 1 of 2', 'Schoolcraft, Henry Rowe', '2011-02-03', 50, 'https://www.gutenberg.org/ebooks/35152', 'en', 1749), +(55278, 'A Complete Grammar of Esperanto', 'Reed, Ivy Kellerman', '2005-03-01', 167, 'https://www.gutenberg.org/ebooks/7787', 'en', 12805), +(55279, 'Ariosto, Shakespeare and Corneille', 'Croce, Benedetto', '2017-02-15', 21, 'https://www.gutenberg.org/ebooks/54165', 'en', 18153), +(55280, 'Napoleão no Kremlin', 'Leal, José da Silva Mendes', '2008-12-11', 6, 'https://www.gutenberg.org/ebooks/27497', 'pt', 8), +(55281, 'The Poets\' Lincoln\nTributes in Verse to the Martyred President', NULL, '2009-11-07', 16, 'https://www.gutenberg.org/ebooks/30420', 'en', 3770), +(55282, 'On the Mexican Highlands, with a Passing Glimpse of Cuba', 'Edwards, William Seymour', '2013-02-08', 5, 'https://www.gutenberg.org/ebooks/42000', 'en', 747), +(55283, 'Bulfinch\'s Mythology: The Age of Fable', 'Bulfinch, Thomas', '2002-07-01', 136, 'https://www.gutenberg.org/ebooks/3327', 'en', 75), +(55284, 'Antonio Azorín\npequeño libro en que se habla de la vida de este peregrino señor', 'Martínez Ruiz, José', '2008-09-06', 36, 'https://www.gutenberg.org/ebooks/26545', 'es', 18154), +(55285, 'By Right of Conquest; Or, With Cortez in Mexico', 'Henty, G. A. (George Alfred)', '2006-09-28', 65, 'https://www.gutenberg.org/ebooks/19398', 'en', 6180); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(55286, 'A Study of the Topography and Municipal History of Praeneste', 'Magoffin, Ralph Van Deman', '2004-06-29', 23, 'https://www.gutenberg.org/ebooks/12770', 'en', 18155), +(55287, 'Two Little Women and Treasure House', 'Wells, Carolyn', '2018-02-24', 17, 'https://www.gutenberg.org/ebooks/56632', 'en', 1669), +(55288, 'A Struggle for Rome, v. 3', 'Dahn, Felix', '2010-05-15', 16, 'https://www.gutenberg.org/ebooks/32377', 'en', 6461), +(55289, 'Encyclopaedia Britannica, 11th Edition, \"Latin Language\" to \"Lefebvre, François-Joseph\"\r\nVolume 16, Slice 3', 'Various', '2012-12-21', 27, 'https://www.gutenberg.org/ebooks/41685', 'en', 1081), +(55290, 'The Nursery, June 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2012-09-14', 6, 'https://www.gutenberg.org/ebooks/40757', 'en', 4641), +(55291, 'The Fall of the Moghul Empire of Hindustan', 'Keene, H. G. (Henry George)', '1998-09-01', 84, 'https://www.gutenberg.org/ebooks/1470', 'en', 18156), +(55292, 'Im Saal: Novelle', 'Storm, Theodor', '2008-01-07', 24, 'https://www.gutenberg.org/ebooks/24212', 'de', 906), +(55293, 'The Triple Alliance, Its Trials and Triumphs', 'Avery, Harold', '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10027', 'en', 2154), +(55294, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 2', 'Ames, Azel', '2003-06-01', 16, 'https://www.gutenberg.org/ebooks/4102', 'en', 18054), +(55295, 'Storia della decadenza e rovina dell\'impero romano, volume 11', 'Gibbon, Edward', '2014-03-26', 21, 'https://www.gutenberg.org/ebooks/45225', 'it', 7245), +(55296, 'La chasse à l\'oppossum', NULL, '2005-04-05', 13, 'https://www.gutenberg.org/ebooks/15555', 'fr', 176), +(55297, 'Report of the Committee of Fifteen\r\nRead at the Cleveland Meeting of the Department of Superintendence, February 19-21, 1884, with the Debate', 'Harris, William Torrey', '2016-06-10', 6, 'https://www.gutenberg.org/ebooks/52292', 'en', 18157), +(55298, 'The Wonder Island Boys: Adventures on Strange Islands', 'Finlay, Roger Thompson', '2007-06-07', 38, 'https://www.gutenberg.org/ebooks/21760', 'en', 550), +(55299, 'The American Missionary — Volume 32, No. 08, August, 1878', 'Various', '2016-10-22', 10, 'https://www.gutenberg.org/ebooks/53340', 'en', 562), +(55300, 'The Lion\'s Share', 'Bennett, Arnold', '2004-12-27', 37, 'https://www.gutenberg.org/ebooks/14487', 'en', 3994), +(55301, '惡魔', 'Tanizaki, Jun\'ichiro', '2011-10-03', 47, 'https://www.gutenberg.org/ebooks/37605', 'ja', 61), +(55302, 'The Poetical Works of William Lisle Bowles Vol. 2', 'Bowles, William Lisle', '2010-04-26', 20, 'https://www.gutenberg.org/ebooks/32145', 'en', 54), +(55303, 'Memoirs of John Abernethy\nWith a View of His Lectures, His Writings, and Character; with Additional Extracts from Original Documents, Now First Published', 'Macilwain, George', '2018-01-19', 7, 'https://www.gutenberg.org/ebooks/56400', 'en', 15522), +(55304, 'Romola', 'Eliot, George', '2007-12-24', 153, 'https://www.gutenberg.org/ebooks/24020', 'en', 378), +(55305, 'Manfredo Palavicino, o, I Francesi e gli Sforzeschi\r\nStoria Italiana', 'Rovani, Giuseppe', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10215', 'it', 18158), +(55306, 'A Yankee in the Far East', 'Allen, George Hoyt', '2012-08-23', 22, 'https://www.gutenberg.org/ebooks/40565', 'en', 819), +(55307, 'Euthyphro', 'Plato', '1999-02-01', 254, 'https://www.gutenberg.org/ebooks/1642', 'en', 18159), +(55308, 'Blackwood\'s Edinburgh Magazine, Volume 57, No. 354, April 1845', 'Various', '2010-07-06', 16, 'https://www.gutenberg.org/ebooks/33097', 'en', 274), +(55309, 'Mary Wollstonecraft and the beginnings of female emancipation in France and England', 'Bouten, Jacob', '2019-05-06', 18, 'https://www.gutenberg.org/ebooks/59448', 'en', 18160), +(55310, 'The Texan Scouts: A Story of the Alamo and Goliad', 'Altsheler, Joseph A. (Joseph Alexander)', '2005-05-04', 29, 'https://www.gutenberg.org/ebooks/15767', 'en', 2564), +(55311, 'Interpreters', 'Van Vechten, Carl', '2010-06-26', 20, 'https://www.gutenberg.org/ebooks/32979', 'en', 18161), +(55312, 'Masterman Ready; Or, The Wreck of the \"Pacific\"', 'Marryat, Frederick', '2007-05-21', 26, 'https://www.gutenberg.org/ebooks/21552', 'en', 194), +(55313, 'Two Expeditions into the Interior of Southern Australia — Complete', 'Sturt, Charles', '2004-08-30', 39, 'https://www.gutenberg.org/ebooks/4330', 'en', 3894), +(55314, 'Het boek van Siman den Javaan\r\nEen roman van rijst, dividend en menschelijkheid', 'Douwes Dekker, E. F. E.', '2014-02-25', 21, 'https://www.gutenberg.org/ebooks/45017', 'nl', 18162), +(55315, 'The Wanderer; or, Female Difficulties (Volume 1 of 5)', 'Burney, Fanny', '2011-09-15', 45, 'https://www.gutenberg.org/ebooks/37437', 'en', 18163), +(55316, 'Palmistry for All', 'Cheiro', '2007-01-29', 428, 'https://www.gutenberg.org/ebooks/20480', 'en', 12706), +(55317, 'Stargazing: Past and Present', 'Lockyer, Norman, Sir', '2016-09-30', 9, 'https://www.gutenberg.org/ebooks/53172', 'en', 1683), +(55318, 'Super Man and the Bug Out', 'Doctorow, Cory', '2005-11-20', 47, 'https://www.gutenberg.org/ebooks/17030', 'en', 26), +(55319, 'Notes and Queries, Number 71, March 8, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-26', 17, 'https://www.gutenberg.org/ebooks/23205', 'en', 105), +(55320, 'Alice Adams', 'Tarkington, Booth', '1997-07-01', 174, 'https://www.gutenberg.org/ebooks/980', 'en', 154), +(55321, 'The Rebellion of Margaret', 'Mockler, Geraldine', '2006-07-16', 20, 'https://www.gutenberg.org/ebooks/18844', 'en', 62), +(55322, 'Letters to His Children', 'Roosevelt, Theodore', '2006-04-22', 47, 'https://www.gutenberg.org/ebooks/6467', 'en', 14496), +(55323, 'L\'Illustration, No. 1603, 15 novembre 1873', 'Various', '2014-12-22', 4, 'https://www.gutenberg.org/ebooks/47740', 'fr', 150), +(55324, 'Caudebec in America\nA Record of the Descendants of Jacques Caudebec 1700 to 1920', 'Cuddeback, William Louis', '2014-08-26', 16, 'https://www.gutenberg.org/ebooks/46692', 'en', 18164), +(55325, 'The Atlantic Monthly, Volume 16, No. 96, October 1865\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2006-12-02', 28, 'https://www.gutenberg.org/ebooks/19996', 'en', 1227), +(55326, 'Joseph Smith the Prophet-Teacher: A Discourse', 'Roberts, B. H. (Brigham Henry)', '2011-02-22', 28, 'https://www.gutenberg.org/ebooks/35360', 'en', 18165), +(55327, 'Prince Zilah — Volume 3', 'Claretie, Jules', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3929', 'en', 560), +(55328, 'Reviisori: Huvinäytelmä viidessä näytöksessä', 'Gogol, Nikolai Vasilevich', '2016-04-02', 7, 'https://www.gutenberg.org/ebooks/51625', 'fi', 4249), +(55329, 'Records of Later Life', 'Kemble, Fanny', '2009-12-06', 13, 'https://www.gutenberg.org/ebooks/30612', 'en', 18166), +(55330, 'Den Hunting as a Means of Coyote Control', 'Dobyns, Harold Warren', '2015-04-15', 4, 'https://www.gutenberg.org/ebooks/48708', 'en', 8414), +(55331, 'Soldier Silhouettes on Our Front', 'Stidger, William L. (William Le Roy)', '2006-03-30', 12, 'https://www.gutenberg.org/ebooks/18078', 'en', 12270), +(55332, 'Corysandre', 'Malot, Hector', '2004-09-18', 12, 'https://www.gutenberg.org/ebooks/13490', 'fr', 61), +(55333, 'Lehrbuch der Physik zum Schulgebrauche.', 'Winter, Wilhelm', '2017-03-13', 18, 'https://www.gutenberg.org/ebooks/54357', 'de', 18167), +(55334, 'Solario the Tailor\nHis Tales of the Magic Doublet', 'Bowen, William', '2019-08-24', 76, 'https://www.gutenberg.org/ebooks/60162', 'en', NULL), +(55335, 'A Revolução Portugueza: O 5 de Outubro (Lisboa 1910)', 'Abreu, Francisco Jorge de', '2008-10-04', 25, 'https://www.gutenberg.org/ebooks/26777', 'pt', 18168), +(55336, 'Lives of Famous London Beggars\nWith Forty Portraits of the Most Remarkable.', 'Smith, John Thomas', '2017-08-07', 7, 'https://www.gutenberg.org/ebooks/55285', 'en', 18169), +(55337, 'Ravenna, a Study', 'Hutton, Edward', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12542', 'en', 18170), +(55338, 'A Child\'s Dream of a Star', 'Dickens, Charles', '2013-03-01', 29, 'https://www.gutenberg.org/ebooks/42232', 'en', 7992), +(55339, 'The Indeterminate Sentence: What Shall Be Done with the Criminal Class?', 'Warner, Charles Dudley', '2004-12-05', 18, 'https://www.gutenberg.org/ebooks/3115', 'en', 18171), +(55340, 'Out Like a Light', 'Garrett, Randall', '2008-01-28', 53, 'https://www.gutenberg.org/ebooks/24444', 'en', 12098), +(55341, 'The Botanic Garden. Part II.\nContaining the Loves of the Plants. a Poem.\nWith Philosophical Notes.', 'Darwin, Erasmus', '2004-01-01', 116, 'https://www.gutenberg.org/ebooks/10671', 'en', 871), +(55342, 'Popular Technology; or, Professions and Trades. Vol. 2 (of 2)', 'Hazen, Edward', '2012-06-28', 17, 'https://www.gutenberg.org/ebooks/40101', 'en', 11855), +(55343, 'The Journal of Abnormal Psychology, Volume 10', 'Various', '1998-03-01', 87, 'https://www.gutenberg.org/ebooks/1226', 'en', 18172), +(55344, 'Keep-Well Stories for Little Folks', 'Jones, May Farinholt', '2010-05-25', 15, 'https://www.gutenberg.org/ebooks/32521', 'en', 4880), +(55345, 'Shenandoah National Park, Virginia', 'United States. National Park Service', '2019-06-25', 32, 'https://www.gutenberg.org/ebooks/59810', 'en', 18173), +(55346, 'Der Luftpirat und sein lenkbares Luftschiff 1: Der Beherrscher der Lüfte', 'Anonymous', '2017-11-28', 41, 'https://www.gutenberg.org/ebooks/56064', 'de', 26), +(55347, 'The Keepers of the Trail: A Story of the Great Woods', 'Altsheler, Joseph A. (Joseph Alexander)', '2008-05-25', 20, 'https://www.gutenberg.org/ebooks/25596', 'en', 1849), +(55348, 'Insurrections et guerre des barricades dans les grandes villes\npar le général de brigade Roguet', 'Roguet, Christophe-Michel, comte', '2011-08-12', 9, 'https://www.gutenberg.org/ebooks/37053', 'fr', 18174), +(55349, 'Four Months in a Sneak-Box\r\nA Boat Voyage of 2600 Miles Down the Ohio and Mississippi Rivers, and Along the Gulf of Mexico', 'Bishop, Nathaniel H. (Nathaniel Holmes)', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/5686', 'en', 18175), +(55350, 'This Misery of Boots', 'Wells, H. G. (Herbert George)', '2016-11-13', 22, 'https://www.gutenberg.org/ebooks/53516', 'en', 254), +(55351, 'Journeys in Persia and Kurdistan, Volume 1 (of 2)\r\nIncluding a Summer in the Upper Karun Region and a Visit to the Nestorian Rayahs', 'Bird, Isabella L. (Isabella Lucy)', '2012-02-11', 49, 'https://www.gutenberg.org/ebooks/38827', 'en', 4925), +(55352, 'Coriolan', 'Shakespeare, William', '2005-03-09', 22, 'https://www.gutenberg.org/ebooks/15303', 'fr', 1298), +(55353, 'For Fortune and Glory: A Story of the Soudan War', 'Hough, Lewis', '2007-04-18', 17, 'https://www.gutenberg.org/ebooks/21136', 'en', 18176), +(55354, 'The Three Charters of the Virginia Company of London\nWith Seven Related Documents; 1606-1621', 'Virginia 350th Anniversary Celebration Corporation', '2011-05-21', 23, 'https://www.gutenberg.org/ebooks/36181', 'en', 18177), +(55355, 'Heart of Europe', 'Cram, Ralph Adams', '2018-03-27', 15, 'https://www.gutenberg.org/ebooks/56858', 'en', 5992), +(55356, 'The Philosophy of Despair', 'Jordan, David Starr', '2003-12-01', 104, 'https://www.gutenberg.org/ebooks/4754', 'en', 9165), +(55357, 'Charles Sumner: his complete works, volume 02 (of 20)', 'Sumner, Charles', '2014-04-24', 18, 'https://www.gutenberg.org/ebooks/45473', 'en', 429), +(55358, 'Wonder Stories: The Best Myths for Boys and Girls', 'Bailey, Carolyn Sherwin', '2011-03-29', 60, 'https://www.gutenberg.org/ebooks/35704', 'en', 8821), +(55359, 'The Voyage of the Rattletrap', 'Carruth, Hayden', '2005-08-24', 14, 'https://www.gutenberg.org/ebooks/16586', 'en', 17962), +(55360, 'Bridge Crossing', 'Dryfoos, Dave', '2016-02-17', 68, 'https://www.gutenberg.org/ebooks/51241', 'en', 26), +(55361, 'Punchinello, Volume 1, No. 16, July 16, 1870', 'Various', '2006-02-01', 4, 'https://www.gutenberg.org/ebooks/9877', 'en', 372), +(55362, 'Jüdische Flieger im Kriege, ein Blatt der Erinnerung', 'Theilhaber, Felix A. (Felix Aaron)', '2015-11-05', 12, 'https://www.gutenberg.org/ebooks/50393', 'de', 4704), +(55363, 'Chr. M. Wieland\'s Biographie', 'Döring, Heinrich', '2006-01-04', 12, 'https://www.gutenberg.org/ebooks/17454', 'de', 11444), +(55364, 'The Essays of \"George Eliot\"\nComplete', 'Eliot, George', '2009-03-09', 245, 'https://www.gutenberg.org/ebooks/28289', 'en', 2156), +(55365, 'The Book of Dragons', 'Nesbit, E. (Edith)', '2007-11-29', 320, 'https://www.gutenberg.org/ebooks/23661', 'en', 2093), +(55366, 'Story of Aeneas', 'Clarke, Michael', '2004-07-01', 12, 'https://www.gutenberg.org/ebooks/6003', 'en', 302), +(55367, 'Poésies de Daniel Lesueur', 'Lesueur, Daniel', '2014-11-09', 8, 'https://www.gutenberg.org/ebooks/47324', 'fr', 4086), +(55368, 'The Young Farmer: Some Things He Should Know', 'Hunt, Thomas Forsyth', '2008-08-14', 29, 'https://www.gutenberg.org/ebooks/26313', 'en', 2757), +(55369, 'In the Library\nThe Lady of the Barge and Others, Part 6.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 20, 'https://www.gutenberg.org/ebooks/12126', 'en', 72), +(55370, 'The Cross and Crown', 'Curtis, T. D. (Thomas Day)', '2013-05-07', 7, 'https://www.gutenberg.org/ebooks/42656', 'en', 1808), +(55371, 'Recollections of the Private Life of Napoleon — Volume 04', 'Wairy, Louis Constant', '2002-12-01', 19, 'https://www.gutenberg.org/ebooks/3571', 'en', 840), +(55372, 'The Moon Metal', 'Serviss, Garrett Putman', '2005-05-01', 33, 'https://www.gutenberg.org/ebooks/8199', 'en', 26), +(55373, 'Some Imagist Poets: An Anthology', 'Fletcher, John Gould', '2009-10-17', 111, 'https://www.gutenberg.org/ebooks/30276', 'en', 1594), +(55374, 'Le mort vivant', 'Stevenson, Robert Louis', '2013-09-21', 28, 'https://www.gutenberg.org/ebooks/43784', 'fr', 400), +(55375, 'The Manatitlans\r\nor, A record of recent scientific explorations in the Andean La Plata, S. A.', 'Smile, R. Elton', '2017-05-16', 13, 'https://www.gutenberg.org/ebooks/54733', 'en', 2797), +(55376, 'Narrative of the Life of Frederick Douglass, an American Slave', 'Douglass, Frederick', '2006-01-12', 3978, 'https://www.gutenberg.org/ebooks/23', 'en', 5168), +(55377, 'Dictionnaire des calembours et des jeux de mots, lazzis, coqs-à-l\'âne, quolibets, quiproquos, amphigouris, etc.', 'Passard, François Lubin', '2009-06-19', 27, 'https://www.gutenberg.org/ebooks/29169', 'fr', 1032), +(55378, 'The Child-Voice in Singing\r\nTreated from a physiological and a practical standpoint and especially adapted to schools and boy choirs', 'Howard, Francis E. (Francis Edward)', '2007-09-12', 23, 'https://www.gutenberg.org/ebooks/22581', 'en', 1290), +(55379, 'Little Almond Blossoms: A Book of Chinese Stories for Children', 'Knox, Jessie Juliet', '2016-01-29', 27, 'https://www.gutenberg.org/ebooks/51073', 'en', 18178), +(55380, 'The Poems and Verses of Charles Dickens', 'Dickens, Charles', '2011-03-10', 46, 'https://www.gutenberg.org/ebooks/35536', 'en', 532), +(55381, 'The Battle of the Strong: A Romance of Two Kingdoms — Volume 2', 'Parker, Gilbert', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6231', 'en', 9794), +(55382, '\"Their Majesties\' Servants.\" Annals of the English Stage (Volume 1 of 3)', 'Doran, Dr. (John)', '2014-10-14', 21, 'https://www.gutenberg.org/ebooks/47116', 'en', 11821), +(55383, 'Lucia Rudini: Somewhere in Italy', 'Trent, Martha', '2006-02-02', 19, 'https://www.gutenberg.org/ebooks/17666', 'en', 10024), +(55384, 'Il re dei re, vol. 1\r\nConvoglio diretto nell\'XI secolo', 'Petruccelli della Gattina, Ferdinando', '2010-01-06', 21, 'https://www.gutenberg.org/ebooks/30878', 'it', 8454), +(55385, 'The Book of One Syllable', 'Bakewell, Esther', '2007-11-12', 17, 'https://www.gutenberg.org/ebooks/23453', 'en', 388), +(55386, 'Anno 7603: Skuespil i 6 Acter', 'Wessel, Johan Herman', '2015-05-15', 27, 'https://www.gutenberg.org/ebooks/48962', 'da', 402), +(55387, 'Variétés Historiques et Littéraires (01/10)\r\nRecueil de pièces volantes rares et curieuses en prose et en vers', NULL, '2013-04-03', 10, 'https://www.gutenberg.org/ebooks/42464', 'fr', 642), +(55388, 'Passeggiate per l\'Italia, vol. 1', 'Gregorovius, Ferdinand', '2009-09-10', 52, 'https://www.gutenberg.org/ebooks/29955', 'it', 1896), +(55389, 'The Writings of Thomas Paine — Volume 4 (1794-1796): The Age of Reason', 'Paine, Thomas', '2003-02-01', 504, 'https://www.gutenberg.org/ebooks/3743', 'en', 1616), +(55390, 'Time and Tide by Weare and Tyne\nTwenty-five Letters to a Working Man of Sunderland on the Laws of Work', 'Ruskin, John', '2010-02-06', 15, 'https://www.gutenberg.org/ebooks/31196', 'en', 1072), +(55391, 'Notes and Queries, Number 33, June 15, 1850', 'Various', '2008-07-24', 11, 'https://www.gutenberg.org/ebooks/26121', 'en', 105), +(55392, 'Ashton-Kirk, Investigator', 'McIntyre, John Thomas', '2004-05-01', 46, 'https://www.gutenberg.org/ebooks/12314', 'en', 557), +(55393, 'Two Dianas in Somaliland: The Record of a Shooting Trip', 'Herbert, Agnes', '2017-04-07', 6, 'https://www.gutenberg.org/ebooks/54501', 'en', 2748), +(55394, 'Nan Sherwood at Pine Camp; Or, The Old Lumberman\'s Secret', 'Carr, Annie Roe', '2001-07-01', 25, 'https://www.gutenberg.org/ebooks/2691', 'en', 14658), +(55395, 'Fighting France, from Dunkerque to Belfort', 'Wharton, Edith', '2005-11-01', 3, 'https://www.gutenberg.org/ebooks/9279', 'en', 449), +(55396, 'The Carnivore', 'MacLean, Katherine', '2009-09-20', 48, 'https://www.gutenberg.org/ebooks/30044', 'en', 26), +(55397, 'The Boy Broker; Or, Among the Kings of Wall Street', 'Munsey, Frank Andrew', '2009-05-20', 10, 'https://www.gutenberg.org/ebooks/28887', 'en', 1655), +(55398, 'A Rich Man\'s Relatives (Vol. 3 of 3)', 'Cleland, Robert', '2012-07-27', 3, 'https://www.gutenberg.org/ebooks/40333', 'en', 65), +(55399, 'The Lure of the Dim Trails', 'Bower, B. M.', '1997-08-01', 46, 'https://www.gutenberg.org/ebooks/1014', 'en', 315), +(55400, 'De roman van Bernard Bandt', 'Robbers, Herman Johan', '2011-12-06', 11, 'https://www.gutenberg.org/ebooks/38229', 'nl', 319), +(55401, 'Peeps at Many Lands: Norway', 'Mockler-Ferryman, A. F. (Augustus Ferryman)', '2008-02-23', 57, 'https://www.gutenberg.org/ebooks/24676', 'en', 3611), +(55402, 'The Rayner-Slade Amalgamation', 'Fletcher, J. S. (Joseph Smith)', '2003-12-01', 69, 'https://www.gutenberg.org/ebooks/10443', 'en', 128), +(55403, '\"The One\" Dog and \"The Others\": A Study of Canine Character', 'Slaughter, Frances E. (Frances Elizabeth)', '2018-06-24', 21, 'https://www.gutenberg.org/ebooks/57384', 'en', 729), +(55404, 'A Probable Italian Source of Shakespeare\'s \"Julius Cæsar\"', 'Boecker, Alexander', '2017-12-27', 12, 'https://www.gutenberg.org/ebooks/56256', 'en', 18179), +(55405, 'Hugo de Groot en zijn rechtsphilosophie', 'Bertens, H.', '2004-03-01', 19, 'https://www.gutenberg.org/ebooks/11591', 'nl', 6273), +(55406, 'Women of the Romance Countries (Illustrated)\nWoman: In all ages and in all countries Vol. 6 (of 10)', 'Effinger, John R. (John Robert)', '2010-06-06', 7, 'https://www.gutenberg.org/ebooks/32713', 'en', 17947), +(55407, 'Chronicles of the Canongate, 1st Series', 'Scott, Walter', '1999-07-01', 27, 'https://www.gutenberg.org/ebooks/1828', 'en', 1922), +(55408, 'Jessie Trim', 'Farjeon, B. L. (Benjamin Leopold)', '2016-12-12', 11, 'https://www.gutenberg.org/ebooks/53724', 'en', 137), +(55409, 'Kertomuksia Intian ylängöiltä ja laaksoista', 'Kipling, Rudyard', '2014-01-29', 24, 'https://www.gutenberg.org/ebooks/44793', 'fi', 2244), +(55410, 'The Bigamist', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-08-29', 7, 'https://www.gutenberg.org/ebooks/37261', 'en', 109), +(55411, 'Entre la chair et l\'âme: Poésie', 'Bertrand, Huguette', '2003-10-01', 11, 'https://www.gutenberg.org/ebooks/4566', 'fr', 8), +(55412, 'Vesper Talks to Girls', 'Knott, Laura A. (Laura Anna)', '2014-05-13', 16, 'https://www.gutenberg.org/ebooks/45641', 'en', 18180), +(55413, 'With Rimington', 'Phillipps, L. March (Lisle March)', '2005-02-21', 37, 'https://www.gutenberg.org/ebooks/15131', 'en', 1311), +(55414, 'Begumbagh: A Tale of the Indian Mutiny', 'Fenn, George Manville', '2007-05-04', 23, 'https://www.gutenberg.org/ebooks/21304', 'en', 2244), +(55415, 'Zenith Television Receiver Operating Manual', 'Anonymous', '2009-01-18', 31, 'https://www.gutenberg.org/ebooks/27832', 'en', 18181), +(55416, 'The Ancient Law', 'Glasgow, Ellen Anderson Gholson', '2010-11-23', 14, 'https://www.gutenberg.org/ebooks/34419', 'en', 5870), +(55417, 'Critical and Historical Essays, Volume III (of 3)', 'Macaulay, Thomas Babington Macaulay, Baron', '2009-02-10', 40, 'https://www.gutenberg.org/ebooks/28046', 'en', 1953), +(55418, 'Heart', 'Slesar, Henry', '2010-01-07', 36, 'https://www.gutenberg.org/ebooks/30885', 'en', 26), +(55419, 'Chronicles of England, Scotland and Ireland (2 of 6): England (03 of 12)\r\nHenrie I.', 'Holinshed, Raphael', '2005-09-25', 34, 'https://www.gutenberg.org/ebooks/16749', 'en', 18182), +(55420, 'Lectures on Horsemanship\r\nWherein Is Explained Every Necessary Instruction for Both Ladies and Gentlemen, in the Useful and Polite Art of Riding, with Ease, Elegance, and Safety', 'Unknown', '2010-04-12', 4, 'https://www.gutenberg.org/ebooks/31957', 'en', 2240), +(55421, 'G-r-r-r...!', 'Locke, Robert Donald', '2009-06-21', 34, 'https://www.gutenberg.org/ebooks/29194', 'en', 580), +(55422, 'Dynamite Stories, and Some Interesting Facts About Explosives', 'Maxim, Hudson', '2014-06-20', 23, 'https://www.gutenberg.org/ebooks/46039', 'en', 18183), +(55423, 'Chita: A Memory of Last Island', 'Hearn, Lafcadio', '1996-11-01', 101, 'https://www.gutenberg.org/ebooks/717', 'en', 98), +(55424, 'Dave Dawson on Convoy Patrol', 'Bowen, Robert Sidney', '2016-01-18', 20, 'https://www.gutenberg.org/ebooks/50960', 'en', 1004), +(55425, 'Sanctuary', 'Wharton, Edith', '2005-11-01', 0, 'https://www.gutenberg.org/ebooks/9284', 'en', 378), +(55426, 'The Bible, Douay-Rheims, Book 56: Ephesians\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8356', 'en', 7739), +(55427, 'Miracle Gold: A Novel (Vol. 3 of 3)', 'Dowling, Richard', '2013-04-08', 5, 'https://www.gutenberg.org/ebooks/42499', 'en', 61), +(55428, 'James\'s Account of S. H. Long\'s Expedition, 1819-1820, part 2', 'James, Edwin', '2015-05-29', 11, 'https://www.gutenberg.org/ebooks/49071', 'en', 3971), +(55429, 'Health Work in the Public Schools', 'Ayres, May', '2006-11-02', 22, 'https://www.gutenberg.org/ebooks/19701', 'en', 18184), +(55430, 'Die Gedichte von Sommer und Tod', 'Blass, Ernst', '2014-09-08', 20, 'https://www.gutenberg.org/ebooks/46805', 'de', 4162), +(55431, 'Lives of the Most Eminent Painters Sculptors and Architects, Vol. 02 (of 10)\r\nBerna to Michelozzo Michelozzi', 'Vasari, Giorgio', '2008-06-11', 93, 'https://www.gutenberg.org/ebooks/25759', 'en', 9689), +(55432, 'The Memoirs of Jacques Casanova de Seingalt, Vol. VI (of VI), \"Spanish Passions\"\r\nThe First Complete and Unabridged English Translation, Illustrated with Old Engravings', 'Casanova, Giacomo', '2012-03-29', 19, 'https://www.gutenberg.org/ebooks/39306', 'en', 4164), +(55433, 'Kartilyang Makabayan\nMga Tanong at Sagot Ukol Kay Andrés Bonifacio at sa KKK', 'Cruz, Hermenegildo', '2005-01-28', 24, 'https://www.gutenberg.org/ebooks/14822', 'tl', 18185), +(55434, 'The Nile in 1904', 'Willcocks, William, Sir', '2018-06-23', 13, 'https://www.gutenberg.org/ebooks/57379', 'en', 18186), +(55435, 'Recuerdos de mi vida (tomo 1 de 2)', 'Ramón y Cajal, Santiago', '2018-11-24', 25, 'https://www.gutenberg.org/ebooks/58331', 'es', 18187), +(55436, 'Uarda : a Romance of Ancient Egypt — Complete', 'Ebers, Georg', '2004-11-15', 55, 'https://www.gutenberg.org/ebooks/5449', 'en', 1802), +(55437, 'The Million Dollar Mystery\nNovelized from the Scenario of F. Lonergan', 'MacGrath, Harold', '2012-03-14', 19, 'https://www.gutenberg.org/ebooks/39134', 'en', 128), +(55438, 'El señorito Octavio', 'Palacio Valdés, Armando', '2011-08-01', 34, 'https://www.gutenberg.org/ebooks/36940', 'es', 1696), +(55439, 'The Review, Vol. 1, No. 2, February 1911', 'Various', '2017-12-01', 0, 'https://www.gutenberg.org/ebooks/56099', 'en', 4611), +(55440, 'The Recollections of Alexis de Tocqueville', 'Tocqueville, Alexis de', '2011-10-31', 35, 'https://www.gutenberg.org/ebooks/37892', 'en', 9222), +(55441, 'Bulletin de Lille, 1916.06\npublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2007-03-15', 15, 'https://www.gutenberg.org/ebooks/20825', 'fr', 8224), +(55442, 'Variation in the Muscles and Nerves of the Leg in Two Genera of Grouse (Tympanuchus and Pedioecetes)', 'Holmes, E. Bruce', '2013-01-10', 5, 'https://www.gutenberg.org/ebooks/41812', 'en', 18188), +(55443, 'Encyclopaedia Britannica, 11th Edition, \"Inscriptions\" to \"Ireland, William Henry\"\r\nVolume 14, Slice 6', 'Various', '2012-06-03', 17, 'https://www.gutenberg.org/ebooks/39908', 'en', 1081), +(55444, 'An Essay to Shew the Cause of Electricity; and Why Some Things are Non-Electricable.\r\nIn Which Is Also Consider\'d Its Influence in the Blasts on Human Bodies, in the Blights on Trees, in the Damps in Mines; And as It May Affect the Sensitive Plant, &c.', 'Freke, John', '2016-06-30', 10, 'https://www.gutenberg.org/ebooks/52439', 'en', 18189), +(55445, 'Voli di guerra: Impressioni di un giornalista pilota', 'Cavara, Otello', '2018-09-25', 9, 'https://www.gutenberg.org/ebooks/57977', 'it', 15162), +(55446, '20 poemas para ser leídos en el tranvía', 'Girondo, Oliverio', '2018-10-15', 48, 'https://www.gutenberg.org/ebooks/58103', 'es', 18190), +(55447, 'Lectures on Landscape\nDelivered at Oxford in Lent Term, 1871', 'Ruskin, John', '2006-12-04', 109, 'https://www.gutenberg.org/ebooks/20019', 'en', 18191), +(55448, 'The Beauties of Nature, and the Wonders of the World We Live In', 'Lubbock, John, Sir', '2009-03-08', 32, 'https://www.gutenberg.org/ebooks/28274', 'en', 871), +(55449, 'The Amulet', 'Conscience, Hendrik', '2004-10-22', 10, 'https://www.gutenberg.org/ebooks/13835', 'en', 18192), +(55450, 'The Age of Innocence', 'Wharton, Edith', '2005-09-01', 18, 'https://www.gutenberg.org/ebooks/8958', 'en', 4330), +(55451, 'Az uj földesur (3. kötet)', 'Jókai, Mór', '2013-09-20', 3, 'https://www.gutenberg.org/ebooks/43779', 'hu', 18080), +(55452, 'Chats on Royal Copenhagen Porcelain', 'Hayden, Arthur', '2015-03-01', 14, 'https://www.gutenberg.org/ebooks/48391', 'en', 18193), +(55453, 'Youth, a Narrative', 'Conrad, Joseph', '2006-01-09', 253, 'https://www.gutenberg.org/ebooks/525', 'en', 324), +(55454, 'The Reign of Andrew Jackson: A Chronicle of the Frontier in Politics', 'Ogg, Frederic Austin', '2004-07-23', 27, 'https://www.gutenberg.org/ebooks/13009', 'en', 5758), +(55455, 'American Historical and Literary Curiosities, Part 10', 'Watson, John F. (John Fanning)', '2004-07-15', 6, 'https://www.gutenberg.org/ebooks/7910', 'en', 1587), +(55456, 'Stories of Great Inventors\nFulton, Whitney, Morse, Cooper, Edison', 'Macomber, Hattie E.', '2006-10-13', 117, 'https://www.gutenberg.org/ebooks/19533', 'en', 1739), +(55457, 'Notes and Queries, Number 235, April 29, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2010-02-22', 14, 'https://www.gutenberg.org/ebooks/31359', 'en', 105), +(55458, 'My Man Jeeves', 'Wodehouse, P. G. (Pelham Grenville)', '2005-05-01', 985, 'https://www.gutenberg.org/ebooks/8164', 'en', 18194), +(55459, 'From Dartmouth to the Dardanelles: A Midshipman\'s Log', 'Forester, Wolston B. C. W. (Wolston Beaumont Charles Weld)', '2015-06-20', 16, 'https://www.gutenberg.org/ebooks/49243', 'en', 3601), +(55460, 'Mrs. Caudle\'s Curtain Lectures', 'Jerrold, Douglas William', '2014-02-14', 19, 'https://www.gutenberg.org/ebooks/44904', 'en', 564), +(55461, 'Scientific American, Vol. XLIII.—No. 1. [New Series.], July 3, 1880\r\nA Weekly Journal of Practical Information, Art, Science, Mechanics, Chemistry, and Manufactures', 'Various', '2012-01-03', 125, 'https://www.gutenberg.org/ebooks/38482', 'en', 352), +(55462, 'Children of Christmas, and Others', 'Thomas, Edith Matilda', '2012-08-28', 6, 'https://www.gutenberg.org/ebooks/40598', 'en', 178), +(55463, 'Kolme kohtausta: Novelleja', 'Didring, Ernst', '2016-08-20', 9, 'https://www.gutenberg.org/ebooks/52861', 'fi', 4836), +(55464, 'The Hotel St. Francis Cook Book', 'Hirtzler, Victor', '2012-04-27', 49, 'https://www.gutenberg.org/ebooks/39550', 'en', 1369), +(55465, 'Elements of Folk Psychology\nOutline of a Psychological History of the Development of Mankind', 'Wundt, Wilhelm Max', '2013-11-08', 37, 'https://www.gutenberg.org/ebooks/44138', 'en', 7691), +(55466, 'Bij de Parsi\'s van Bombay en Gudsjerat\r\nDe Aarde en haar Volken, 1909-1910', 'Menant, Delphine', '2005-01-10', 13, 'https://www.gutenberg.org/ebooks/14648', 'nl', 11809), +(55467, 'Lettres persanes, tome II', 'Montesquieu, Charles de Secondat, baron de', '2010-10-12', 28, 'https://www.gutenberg.org/ebooks/33856', 'fr', 258), +(55468, 'Plutarch on the Delay of the Divine Justice', 'Plutarch', '2018-12-30', 25, 'https://www.gutenberg.org/ebooks/58567', 'en', 18195), +(55469, 'An Essay on the Trial by Jury', 'Spooner, Lysander', '2010-06-27', 19, 'https://www.gutenberg.org/ebooks/32984', 'en', 1789), +(55470, 'English as She is Wrote\r\nShowing Curious Ways in which the English Language may be made to Convey Ideas or obscure them.', 'Anonymous', '2008-06-30', 39, 'https://www.gutenberg.org/ebooks/25933', 'en', 13616), +(55471, 'All Men are Ghosts', 'Jacks, L. P. (Lawrence Pearsall)', '2011-06-26', 30, 'https://www.gutenberg.org/ebooks/36518', 'en', 179), +(55472, 'Quotes and Images From The Confessions of Harry Lorrequer', 'Lever, Charles James', '2004-08-30', 23, 'https://www.gutenberg.org/ebooks/7548', 'en', 1026), +(55473, 'Singoalla', 'Rydberg, Viktor', '2009-04-26', 9, 'https://www.gutenberg.org/ebooks/28610', 'sv', 109), +(55474, 'The Phantom \'Rickshaw, and Other Ghost Stories', 'Kipling, Rudyard', '2001-09-01', 144, 'https://www.gutenberg.org/ebooks/2806', 'en', 1373), +(55475, 'Chess Generalship, Vol. I. Grand Reconnaissance', 'Young, Franklin K.‏ (Franklin Knowles)', '2017-08-06', 20, 'https://www.gutenberg.org/ebooks/55278', 'en', 3733), +(55476, 'A Mother\'s List of Books for Children', 'Arnold, Gertrude Weld', '2006-09-01', 19, 'https://www.gutenberg.org/ebooks/19157', 'en', 7917), +(55477, 'A Handbook for Latin Clubs', 'Paxson, Susan', '2005-10-23', 25, 'https://www.gutenberg.org/ebooks/16923', 'en', 18196), +(55478, 'Plays: Comrades; Facing Death; Pariah; Easter', 'Strindberg, August', '2005-07-01', 21, 'https://www.gutenberg.org/ebooks/8500', 'en', 4675), +(55479, 'The Ohio River Trade, 1788-1830', 'Shaw, Hazel Yearsley', '2015-08-05', 13, 'https://www.gutenberg.org/ebooks/49627', 'en', 18197), +(55480, 'Het Verloren Tooverland', 'Blicher-Clausen, J. (Jenny)', '2008-12-29', 10, 'https://www.gutenberg.org/ebooks/27658', 'nl', 18198), +(55481, 'J.-K. Huysmans et le satanisme\nd\'après des documents inédits', 'Bricaud, Joanny', '2006-03-30', 21, 'https://www.gutenberg.org/ebooks/18085', 'fr', 18199), +(55482, 'Mansfield Park', 'Austen, Jane', '1994-06-01', 2199, 'https://www.gutenberg.org/ebooks/141', 'en', 18200), +(55483, 'Official Report of the Niger Valley Exploring Party', 'Delany, Martin Robison', '2007-07-22', 56, 'https://www.gutenberg.org/ebooks/22118', 'en', 18201), +(55484, 'In the Prison City, Brussels, 1914-1918: A Personal Narrative', 'Twells, J. H. (Julia Helen Watts)', '2017-11-02', 27, 'https://www.gutenberg.org/ebooks/55876', 'en', 449), +(55485, 'Aus dem Matrosenleben', 'Gerstäcker, Friedrich', '2013-10-08', 12, 'https://www.gutenberg.org/ebooks/43913', 'de', 18202), +(55486, 'Lives of the most Eminent Painters Sculptors and Architects, Vol. 06 (of 10)\r\nFra Giocondo to Niccolo Soggi', 'Vasari, Giorgio', '2009-03-27', 67, 'https://www.gutenberg.org/ebooks/28422', 'en', 915), +(55487, 'Viimevuotiset ystävämme', 'Alcott, Louisa May', '2015-11-23', 13, 'https://www.gutenberg.org/ebooks/50538', 'fi', 348), +(55488, 'Through the Fray: A Tale of the Luddite Riots', 'Henty, G. A. (George Alfred)', '2005-08-01', 37, 'https://www.gutenberg.org/ebooks/8732', 'en', 18203), +(55489, 'Pathfinder; or, The Missing Tenderfoot', 'Douglas, Alan, Captain', '2007-10-08', 22, 'https://www.gutenberg.org/ebooks/22924', 'en', 2994), +(55490, 'The Boy\'s Own Book of Indoor Games and Recreations\nA Popular Encyclopædia for Boys', 'Maskelyne, John Nevil', '2015-07-10', 50, 'https://www.gutenberg.org/ebooks/49415', 'en', 16799), +(55491, 'Everlasting Pearl: One of China\'s Women', 'Johannsen, Anna Magdalena', '2006-09-24', 19, 'https://www.gutenberg.org/ebooks/19365', 'en', 9734), +(55492, 'The History of Don Quixote de la Mancha', 'Cervantes Saavedra, Miguel de', '2011-04-29', 61, 'https://www.gutenberg.org/ebooks/35993', 'en', 3761), +(55493, 'Lay Morals, and Other Papers', 'Stevenson, Robert Louis', '1995-12-01', 172, 'https://www.gutenberg.org/ebooks/373', 'en', 20), +(55494, 'Canterbury: A Sketch Book', 'Keesey, Walter M.', '2017-02-19', 6, 'https://www.gutenberg.org/ebooks/54198', 'en', 11793), +(55495, 'L\'autre Tartuffe, ou La mère coupable', 'Beaumarchais, Pierre Augustin Caron de', '2011-01-03', 32, 'https://www.gutenberg.org/ebooks/34841', 'fr', 5508), +(55496, 'Human Genome Project, rough draft, Chromosome Number 08', 'Human Genome Project', '2000-06-01', 1, 'https://www.gutenberg.org/ebooks/2208', 'en', 2318), +(55497, 'Mémoires de Madame la Duchesse de Tourzel\nGouvernante des enfants de France pendant les années 1789 à 1795', 'Tourzel, Louise Elisabeth, Duchesse de', '2010-07-25', 78, 'https://www.gutenberg.org/ebooks/33258', 'fr', 5208), +(55498, 'Following the Equator: A Journey Around the World. Part 4', 'Twain, Mark', '2004-06-24', 16, 'https://www.gutenberg.org/ebooks/5811', 'en', 3614), +(55499, 'Aus dem Durchschnitt', 'Falke, Gustav', '2004-02-01', 9, 'https://www.gutenberg.org/ebooks/11108', 'de', 18204), +(55500, 'Belford\'s Magazine, Vol. II, No. 3, February 1889\nDec 1888-May 1889', 'Various', '2012-12-21', 5, 'https://www.gutenberg.org/ebooks/41678', 'en', 13816), +(55501, 'Etymologisches Wörterbuch der deutschen Seemannssprache', 'Goedel, Gustav', '2012-05-22', 30, 'https://www.gutenberg.org/ebooks/39762', 'de', 18205), +(55502, 'A Lost Leader: A Tale of Restoration Days', 'Townshend, Dorothea', '2019-01-22', 3, 'https://www.gutenberg.org/ebooks/58755', 'en', 15000), +(55503, 'Primitive Love and Love-Stories', 'Finck, Henry T.', '2004-04-01', 45, 'https://www.gutenberg.org/ebooks/11934', 'en', 5136), +(55504, 'Mar sanguigno (Offerta al nostro buon vecchio Dio)', 'Milanesi, Guido', '2019-06-06', 12, 'https://www.gutenberg.org/ebooks/59687', 'it', 579), +(55505, '冷眼观', 'Wang, Junqing', '2007-12-25', 16, 'https://www.gutenberg.org/ebooks/24029', 'zh', 1003), +(55506, 'Lincoln\'s Gettysburg Address\r\nGiven November 19, 1863 on the battlefield near Gettysburg, Pennsylvania, USA', 'Lincoln, Abraham', '1973-11-01', 185, 'https://www.gutenberg.org/ebooks/4', 'en', 18206), +(55507, 'La señorita de Trevelez: Farsa cómica en tres actos', 'Arniches y Barrera, Carlos', '2017-01-12', 19, 'https://www.gutenberg.org/ebooks/53947', 'es', 2729), +(55508, 'A menekülő Élet', 'Ady, Endre', '2012-01-03', 7, 'https://www.gutenberg.org/ebooks/38476', 'hu', 1645), +(55509, 'Laukaus y.m. kertomuksia', 'Pushkin, Aleksandr Sergeevich', '2016-08-25', 14, 'https://www.gutenberg.org/ebooks/52895', 'fi', 4710), +(55510, 'Balsamo, the Magician; or, The Memoirs of a Physician', 'Dumas, Alexandre', '2014-05-30', 69, 'https://www.gutenberg.org/ebooks/45822', 'en', 6598), +(55511, 'Historical record of the Seventeenth Regiment of Light Dragoons;—Lancers\r\nContaining an account of the formation of the regiment in 1759 and of its subsequent services to 1841.', 'Cannon, Richard', '2018-01-21', 11, 'https://www.gutenberg.org/ebooks/56409', 'en', 18207), +(55512, 'Translations of German Poetry in American Magazines 1741-1810', 'Davis, Edward Ziegler', '2008-03-12', 14, 'https://www.gutenberg.org/ebooks/24815', 'en', 18208), +(55513, 'The Garden of God', 'Stacpoole, H. De Vere (Henry De Vere)', '2019-01-01', 38, 'https://www.gutenberg.org/ebooks/58593', 'en', 108), +(55514, 'Henry of Monmouth, Volume 2\r\nOr, Memoirs of the Life and Character of Henry the Fifth, as Prince of Wales and King of England', 'Tyler, James Endell', '2007-01-31', 33, 'https://www.gutenberg.org/ebooks/20489', 'en', 4394), +(55515, 'Harper\'s Round Table, May 21, 1895', 'Various', '2010-06-25', 6, 'https://www.gutenberg.org/ebooks/32970', 'en', 668), +(55516, 'Nacha Regules', 'Gálvez, Manuel', '2019-05-05', 16, 'https://www.gutenberg.org/ebooks/59441', 'en', 13868), +(55517, 'Nerves and Common Sense', 'Call, Annie Payson', '2003-08-01', 103, 'https://www.gutenberg.org/ebooks/4339', 'en', 251), +(55518, 'The Highlands of Ethiopia', 'Harris, William Cornwallis, Sir', '2011-02-23', 30, 'https://www.gutenberg.org/ebooks/35369', 'en', 1936), +(55519, 'The Red Lily — Volume 02', 'France, Anatole', '2003-04-01', 17, 'https://www.gutenberg.org/ebooks/3920', 'en', 109), +(55520, 'Continental Monthly, Vol. III, No IV, April 1863\nDevoted to Literature and National Policy', 'Various', '2009-08-19', 17, 'https://www.gutenberg.org/ebooks/29736', 'en', 558), +(55521, 'The Salmon Fishery of Penobscot Bay and River in 1895-96', 'Smith, Hugh M. (Hugh McCormick)', '2005-11-10', 33, 'https://www.gutenberg.org/ebooks/17039', 'en', 18209), +(55522, 'Letters from a Sûfî Teacher', 'Maniri, Sharaf al-Din Ahmad ibn Yahya', '2014-12-23', 40, 'https://www.gutenberg.org/ebooks/47749', 'en', 12681), +(55523, 'Theologico-Political Treatise — Part 1', 'Spinoza, Benedictus de', '1997-07-01', 285, 'https://www.gutenberg.org/ebooks/989', 'en', 2055), +(55524, 'The Black Galley', 'Raabe, Wilhelm', '2015-04-13', 18, 'https://www.gutenberg.org/ebooks/48701', 'en', 1167), +(55525, 'Moments of Vision', 'Hardy, Thomas', '2005-12-01', 1, 'https://www.gutenberg.org/ebooks/9426', 'en', 54), +(55526, 'Lezioni e Racconti per i bambini', 'Baccini, Ida', '2006-02-20', 118, 'https://www.gutenberg.org/ebooks/17805', 'it', 388), +(55527, 'Two Little Savages\r\nBeing the adventures of two boys who lived as Indians and what they learned', 'Seton, Ernest Thompson', '2004-09-19', 87, 'https://www.gutenberg.org/ebooks/13499', 'en', 3), +(55528, 'The Spinster Book', 'Reed, Myrtle', '2006-03-29', 13, 'https://www.gutenberg.org/ebooks/18071', 'en', 1451), +(55529, 'Tommy Tregennis', 'Phillips, Mary Elizabeth', '2013-05-29', 12, 'https://www.gutenberg.org/ebooks/42835', 'en', 376), +(55530, 'What\'s He Doing in There?', 'Leiber, Fritz', '2009-07-24', 38, 'https://www.gutenberg.org/ebooks/29504', 'en', 26), +(55531, 'La dama joven', 'Pardo Bazán, Emilia, condesa de', '2017-11-04', 33, 'https://www.gutenberg.org/ebooks/55882', 'es', 1353), +(55532, 'The Vermilion Pencil: A Romance of China', 'Lea, Homer', '2017-06-20', 6, 'https://www.gutenberg.org/ebooks/54950', 'en', 6011), +(55533, 'The Celestial Omnibus, and Other Stories', 'Forster, E. M. (Edward Morgan)', '2010-10-17', 171, 'https://www.gutenberg.org/ebooks/34089', 'en', 409), +(55534, 'Glimpses of Three Coasts', 'Jackson, Helen Hunt', '2013-02-04', 5, 'https://www.gutenberg.org/ebooks/42009', 'en', 1408), +(55535, 'Helen with the High Hand (2nd ed.)', 'Bennett, Arnold', '2004-06-29', 33, 'https://www.gutenberg.org/ebooks/12779', 'en', 1567), +(55536, 'Das Problem des platonischen Symposion.', 'Kleemann, August Ritter von', '2011-04-26', 17, 'https://www.gutenberg.org/ebooks/35967', 'de', 18210), +(55537, 'A Truthful Woman in Southern California', 'Sanborn, Kate', '2006-09-27', 13, 'https://www.gutenberg.org/ebooks/19391', 'en', 18211), +(55538, 'Bezoek aan den berg Athos\nDe Aarde en haar Volken, 1873', 'Anonymous', '2006-04-24', 17, 'https://www.gutenberg.org/ebooks/18243', 'nl', 18212), +(55539, 'Vailima Letters\r\nBeing Correspondence Addressed by Robert Louis Stevenson to Sidney Colvin, November 1890-October 1894', 'Stevenson, Robert Louis', '1996-01-01', 70, 'https://www.gutenberg.org/ebooks/387', 'en', 1859), +(55540, 'The Arena, Volume 4, No. 23, October, 1891', 'Various', '2007-12-10', 14, 'https://www.gutenberg.org/ebooks/23802', 'en', 883), +(55541, 'Sweet Hours', 'Sylva, Carmen', '2015-03-19', 17, 'https://www.gutenberg.org/ebooks/48533', 'en', 8), +(55542, 'The Case of Richard Meynell', 'Ward, Humphry, Mrs.', '2006-01-01', 20, 'https://www.gutenberg.org/ebooks/9614', 'en', 3014), +(55543, 'Was Man Created?', 'Mott, Henry A. (Henry Augustus)', '2009-11-08', 13, 'https://www.gutenberg.org/ebooks/30429', 'en', 1109), +(55544, 'A Vanished Arcadia: Being Some Account of the Jesuits in Paraguay 1607-1767', 'Cunninghame Graham, R. B. (Robert Bontine)', '1998-10-01', 44, 'https://www.gutenberg.org/ebooks/1479', 'en', 2523), +(55545, 'Gleanings by the Way', 'Clark, John A. (John Alonzo)', '2012-01-22', 59, 'https://www.gutenberg.org/ebooks/38644', 'en', 1110), +(55546, 'Hudibras, in Three Parts, Written in the Time of the Late Wars', 'Butler, Samuel', '2004-01-01', 72, 'https://www.gutenberg.org/ebooks/4937', 'en', 466), +(55547, 'A Canadian Calendar: XII Lyrics', 'Sherman, Francis', '2013-06-02', 9, 'https://www.gutenberg.org/ebooks/39796', 'en', 28), +(55548, 'Our Cavalry', 'Rimington, Michael Frederic', '2016-10-23', 6, 'https://www.gutenberg.org/ebooks/53349', 'en', 18213), +(55549, 'The Worshipper of the Image', 'Le Gallienne, Richard', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/10812', 'en', 61), +(55550, 'Songs Of The Road', 'Doyle, Arthur Conan', '2007-06-08', 26, 'https://www.gutenberg.org/ebooks/21769', 'en', 54), +(55551, 'The Life or Legend of Gaudama, the Buddha of the Burmese (Volume II)', 'Bigandet, Paul Ambroise', '2019-06-03', 31, 'https://www.gutenberg.org/ebooks/59673', 'en', 16546), +(55552, 'The Lane That Had No Turning, Volume 2', 'Parker, Gilbert', '2004-08-01', 7, 'https://www.gutenberg.org/ebooks/6238', 'en', 1219), +(55553, 'Legends & Romances of Brittany', 'Spence, Lewis', '2010-01-06', 74, 'https://www.gutenberg.org/ebooks/30871', 'en', 9756), +(55554, 'From Lower Deck to Pulpit', 'Cowling, Henry', '2007-09-12', 7, 'https://www.gutenberg.org/ebooks/22588', 'en', 18082), +(55555, 'Operation Lorelie', 'Salton, William P.', '2009-06-19', 34, 'https://www.gutenberg.org/ebooks/29160', 'en', 179), +(55556, 'Do que o fogo não queima', 'Lima, Jaime de Magalhães', '2008-10-14', 9, 'https://www.gutenberg.org/ebooks/26914', 'pt', 335), +(55557, 'Runnymede and Lincoln Fair: A Story of the Great Charter', 'Edgar, John G. (John George)', '2015-01-09', 28, 'https://www.gutenberg.org/ebooks/47923', 'en', 18214), +(55558, 'Notre-Dame-d\'Amour', 'Aicard, Jean', '2006-06-19', 27, 'https://www.gutenberg.org/ebooks/18627', 'fr', 298), +(55559, 'The Santa Claus\' Book of Games and Puzzles\r\nA Collection of Riddles, Charades, Enigmas, Rebuses, Anagrams, Labyrinths, Acrostics, etc. With a Hieroglyphic Preface', NULL, '2017-04-08', 23, 'https://www.gutenberg.org/ebooks/54508', 'en', 18215), +(55560, 'Illumination and Its Development in the Present Day', 'Farnsworth, Sidney', '2015-02-04', 19, 'https://www.gutenberg.org/ebooks/48157', 'en', 4378), +(55561, 'The Battle of the Books', 'Swift, Jonathan', '2005-11-01', 12, 'https://www.gutenberg.org/ebooks/9270', 'en', 1971), +(55562, 'A Mortal Antipathy', 'Holmes, Oliver Wendell', '2004-09-29', 18, 'https://www.gutenberg.org/ebooks/2698', 'en', 18216), +(55563, 'The Cambridge Book of Poetry for Children\nParts 1 and 2', NULL, '2016-01-22', 55, 'https://www.gutenberg.org/ebooks/50994', 'en', 859), +(55564, 'Kansa ja sen kuninkaat: Kertomuksia nuorten ja vanhain luettavaksi', 'Heidenstam, Verner von', '2016-04-23', 1, 'https://www.gutenberg.org/ebooks/51846', 'fi', 16766), +(55565, 'Erziehung zur Mannhaftigkeit', 'Gurlitt, Ludwig', '2015-05-30', 12, 'https://www.gutenberg.org/ebooks/49085', 'de', 18217), +(55566, 'The Writer, Volume VI, April 1892.\nA Monthly Magazine to Interest and Help All Literary Workers', 'Various', '2008-07-25', 37, 'https://www.gutenberg.org/ebooks/26128', 'en', 380), +(55567, 'La Montaña', 'Reclus, Elisée', '2004-03-01', 53, 'https://www.gutenberg.org/ebooks/11598', 'es', 14397), +(55568, 'The Rover Boys on the River; Or, The Search for the Missing Houseboat', 'Stratemeyer, Edward', '2005-05-25', 25, 'https://www.gutenberg.org/ebooks/15904', 'en', 12062), +(55569, 'Ved Nytaarstid i Nøddebo Præstegaard', 'Scharling, C. Henrik (Carl Henrik)', '2011-12-04', 9, 'https://www.gutenberg.org/ebooks/38220', 'da', 4927), +(55570, 'Lady Penelope', 'Roberts, Morley', '2014-05-14', 10, 'https://www.gutenberg.org/ebooks/45648', 'en', 348), +(55571, 'The Land of Desolation: Being a Personal Narrative of Observation and Adventure in Greenland', 'Hayes, I. I. (Isaac Israel)', '2019-04-06', 26, 'https://www.gutenberg.org/ebooks/59217', 'en', 14313), +(55572, 'A Hoosier Chronicle', 'Nicholson, Meredith', '2005-02-22', 12, 'https://www.gutenberg.org/ebooks/15138', 'en', 3016), +(55573, 'A Charmed Life', 'Davis, Richard Harding', '2006-05-12', 13, 'https://www.gutenberg.org/ebooks/1821', 'en', 61), +(55574, 'Hot corn: Life Scenes in New York Illustrated', 'Robinson, Solon', '2011-08-29', 38, 'https://www.gutenberg.org/ebooks/37268', 'en', 716), +(55575, 'The Californians', 'Atherton, Gertrude Franklin Horn', '2007-06-22', 52, 'https://www.gutenberg.org/ebooks/21903', 'en', 315), +(55576, 'Merrimeg', 'Bowen, William', '2019-06-26', 42, 'https://www.gutenberg.org/ebooks/59819', 'en', 62), +(55577, 'The Lusiad; Or, The Discovery of India, an Epic Poem', 'Camões, Luís de', '2010-05-26', 203, 'https://www.gutenberg.org/ebooks/32528', 'en', 18218), +(55578, 'Histoire de la Révolution française, Tome 04', 'Thiers, Adolphe', '2004-01-01', 15, 'https://www.gutenberg.org/ebooks/10678', 'fr', 1536), +(55579, 'A Humble Enterprise', 'Cambridge, Ada', '2011-10-27', 13, 'https://www.gutenberg.org/ebooks/37866', 'en', 61), +(55580, 'Ottavia', 'Alfieri, Vittorio', '2011-11-14', 23, 'https://www.gutenberg.org/ebooks/38012', 'it', 1298), +(55581, 'Tales of Secret Egypt', 'Rohmer, Sax', '2012-06-29', 91, 'https://www.gutenberg.org/ebooks/40108', 'en', 557), +(55582, 'Index of the Project Gutenberg Works of Lucius Annaeus Seneca', 'Seneca, Lucius Annaeus', '2019-03-06', 89, 'https://www.gutenberg.org/ebooks/59025', 'en', 198), +(55583, 'The Judicial Murder of Mary E. Surratt', 'DeWitt, David Miller', '2011-05-22', 7, 'https://www.gutenberg.org/ebooks/36188', 'en', 80), +(55584, 'Shakspeare\'s Mental Photographs', 'Shakespeare, William', '2018-03-27', 18, 'https://www.gutenberg.org/ebooks/56851', 'en', 5750), +(55585, 'The Shriek: A Satirical Burlesque', 'Somerville, Charles', '2012-10-04', 26, 'https://www.gutenberg.org/ebooks/40934', 'en', 781), +(55586, 'Bell\'s Cathedrals: The Cathedral Church of Salisbury\nA Description of its Fabric and a Brief History of the See of Sarum', 'White, Gleeson', '2007-11-30', 27, 'https://www.gutenberg.org/ebooks/23668', 'en', 18219), +(55587, 'Reise in die Aequinoctial-Gegenden des neuen Continents. Band 3.', 'Humboldt, Alexander von', '2009-03-08', 20, 'https://www.gutenberg.org/ebooks/28280', 'de', 227), +(55588, 'Moral Science; a Compendium of Ethics', 'Bain, Alexander', '2004-07-15', 17, 'https://www.gutenberg.org/ebooks/12913', 'en', 680), +(55589, 'The Library of Entertainment: Handbook', 'Scammell, John Chilton', '2016-02-18', 11, 'https://www.gutenberg.org/ebooks/51248', 'en', 19), +(55590, 'Great Men and Famous Women, Vol. 8\r\nA series of pen and pencil sketches of the lives of more than 200 of the most prominent personages in History', NULL, '2009-07-08', 10, 'https://www.gutenberg.org/ebooks/29352', 'en', 122), +(55591, 'Öfversigt af Nordiska Mytologien', 'Sundén, Daniel Anton', '2015-02-26', 20, 'https://www.gutenberg.org/ebooks/48365', 'sv', 6418), +(55592, 'Extracts from Adam\'s Diary', 'Twain, Mark', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/9042', 'en', 2101), +(55593, 'Histoires incroyables, Tome I', 'Lermina, Jules', '2006-05-18', 11, 'https://www.gutenberg.org/ebooks/18415', 'fr', 61), +(55594, 'Three Men and a Maid', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 213, 'https://www.gutenberg.org/ebooks/6836', 'en', 637), +(55595, 'A Wodehouse Miscellany: Articles & Stories', 'Wodehouse, P. G. (Pelham Grenville)', '2005-05-01', 210, 'https://www.gutenberg.org/ebooks/8190', 'en', 18220), +(55596, 'Recollections of the Private Life of Napoleon — Volume 11', 'Wairy, Louis Constant', '2002-12-01', 14, 'https://www.gutenberg.org/ebooks/3578', 'en', 840), +(55597, 'Scarlet and Hyssop: A Novel', 'Benson, E. F. (Edward Frederic)', '2012-09-18', 91, 'https://www.gutenberg.org/ebooks/40795', 'en', 705), +(55598, 'Facundo', 'Sarmiento, Domingo Faustino', '2010-07-26', 99, 'https://www.gutenberg.org/ebooks/33267', 'es', 7609), +(55599, 'The Sermon on the Mount: A Practical Exposition', 'Gore, Charles', '2018-08-18', 25, 'https://www.gutenberg.org/ebooks/57722', 'en', 5968), +(55600, 'Twenty-Two Years a Slave, and Forty Years a Freeman\r\nEmbracing a Correspondence of Several Years, While President of Wilberforce Colony, London, Canada West', 'Steward, Austin', '2004-02-01', 27, 'https://www.gutenberg.org/ebooks/11137', 'en', 3779), +(55601, 'Jack\n1877', 'Daudet, Alphonse', '2008-05-02', 38, 'https://www.gutenberg.org/ebooks/25302', 'en', 58), +(55602, 'A Fool\'s Paradise: An Original Play in Three Acts', 'Grundy, Sydney', '2012-12-18', 10, 'https://www.gutenberg.org/ebooks/41647', 'en', 1281), +(55603, 'The Founder of New France - A Chronicle of Champlain', 'Colby, Charles W. (Charles William)', '2007-02-03', 4, 'https://www.gutenberg.org/ebooks/20670', 'en', 3998), +(55604, 'From Farm Boy to Senator\r\nBeing the History of the Boyhood and Manhood of Daniel Webster', 'Alger, Horatio, Jr.', '2016-10-27', 86, 'https://www.gutenberg.org/ebooks/53382', 'en', 18221), +(55605, 'Confidences: Talks With a Young Girl Concerning Herself', 'Lowry, E. B. (Edith Belle)', '2004-12-24', 30, 'https://www.gutenberg.org/ebooks/14445', 'en', 2378), +(55606, 'Curialia Miscellanea, or Anecdotes of Old Times\r\nRegal, Noble, Gentilitial, and Miscellaneous: Including Authentic Anecdotes of the Royal Household, and the Manners and Customs of the Court, at an Early Period of the English History', 'Pegge, Samuel', '2013-12-01', 11, 'https://www.gutenberg.org/ebooks/44335', 'en', 18222), +(55607, 'State of the Union Addresses', 'Jefferson, Thomas', '2004-02-01', 19, 'https://www.gutenberg.org/ebooks/5012', 'en', 1926), +(55608, 'Yekl: A Tale of the New York Ghetto', 'Cahan, Abraham', '2011-07-12', 32, 'https://www.gutenberg.org/ebooks/36715', 'en', 1695); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(55609, 'Stories of American Life and Adventure', 'Eggleston, Edward', '2005-04-09', 48, 'https://www.gutenberg.org/ebooks/15597', 'en', 10122), +(55610, 'A Nurse\'s Life in War and Peace', 'Laurence, E. C. (Eleanor Constance)', '2016-06-06', 16, 'https://www.gutenberg.org/ebooks/52250', 'en', 18223), +(55611, 'Notes and Queries, Number 34, June 22, 1850\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-07-24', 4, 'https://www.gutenberg.org/ebooks/22127', 'en', 105), +(55612, 'Patnubay nang Cabataan ó Talinhagang Buhay ni Eliseo at ni Hortensio', 'Tuason, Joaquín', '2005-07-16', 4, 'https://www.gutenberg.org/ebooks/16312', 'tl', 8), +(55613, 'Recollections of a Policeman', 'Russell, William', '2014-07-31', 26, 'https://www.gutenberg.org/ebooks/46462', 'en', 3511), +(55614, 'The Parisians — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7745', 'en', 1165), +(55615, 'Torrent of Portyngale', NULL, '2011-02-09', 23, 'https://www.gutenberg.org/ebooks/35190', 'en', 11889), +(55616, 'Truth [Vérité]', 'Zola, Émile', '2017-10-30', 19, 'https://www.gutenberg.org/ebooks/55849', 'en', 1225), +(55617, 'Once Upon a Time in Connecticut', 'Newton, Caroline Clifford', '2004-10-01', 32, 'https://www.gutenberg.org/ebooks/6697', 'en', 18224), +(55618, 'The Esperantist, Vol. 1, No. 8', NULL, '2010-10-07', 8, 'https://www.gutenberg.org/ebooks/34042', 'eo', 3912), +(55619, 'Eighteenth Century Waifs', 'Ashton, John', '2015-11-20', 16, 'https://www.gutenberg.org/ebooks/50507', 'en', 8800), +(55620, 'Geschichte von England seit der Thronbesteigung Jakob\'s des Zweiten. Erster Band enthaltend Kapitel 1 und 2', 'Macaulay, Thomas Babington Macaulay, Baron', '2010-03-07', 16, 'https://www.gutenberg.org/ebooks/31530', 'de', 3001), +(55621, 'The Paradise Mystery', 'Fletcher, J. S. (Joseph Smith)', '2008-09-01', 2, 'https://www.gutenberg.org/ebooks/26587', 'en', 128), +(55622, 'The Writings of Thomas Jefferson, Vol. 6 (of 9)\r\nBeing His Autobiography, Correspondence, Reports, Messages, Addresses, and Other Writings, Official and Private', 'Jefferson, Thomas', '2017-07-08', 26, 'https://www.gutenberg.org/ebooks/55075', 'en', 1648), +(55623, 'The Correspondence of Thomas Carlyle and Ralph Waldo Emerson, 1834-1872, Vol II.', 'Emerson, Ralph Waldo', '2004-10-06', 223, 'https://www.gutenberg.org/ebooks/13660', 'en', 2518), +(55624, 'Northern Nut Growers Association, report of the proceedings at the sixth annual meeting\r\nRochester, New York, September 1 and 2, 1915', NULL, '2006-04-30', 10, 'https://www.gutenberg.org/ebooks/18288', 'en', 1486), +(55625, 'The Radio Boys at the Sending Station; Or, Making Good in the Wireless Room', 'Chapman, Allen', '2008-12-08', 16, 'https://www.gutenberg.org/ebooks/27455', 'en', 3343), +(55626, 'The Merry Wives of Windsor', 'Shakespeare, William', '2000-07-01', 42, 'https://www.gutenberg.org/ebooks/2237', 'en', 6844), +(55627, 'Tell Me a Story', 'Molesworth, Mrs.', '2013-07-06', 118, 'https://www.gutenberg.org/ebooks/43110', 'en', 195), +(55628, 'Bayou Folk', 'Chopin, Kate', '2014-08-22', 69, 'https://www.gutenberg.org/ebooks/46650', 'en', 18225), +(55629, 'Widger\'s Quotes and Images from The Red Lily by Anatole France\r\nThe French Immortals: Quotes and Images', 'France, Anatole', '2009-07-13', 10, 'https://www.gutenberg.org/ebooks/7577', 'en', 2391), +(55630, 'L\'amie rustique et autres vers divers', 'La Tour d\'Albenas, François Bérenger de', '2006-11-28', 22, 'https://www.gutenberg.org/ebooks/19954', 'fr', 8), +(55631, 'Slain By The Doones', 'Blackmore, R. D. (Richard Doddridge)', '2007-08-14', 23, 'https://www.gutenberg.org/ebooks/22315', 'en', 45), +(55632, 'Kertoelmia ja kuvauksia', 'Reijonen, Juho Heikki', '2005-06-23', 15, 'https://www.gutenberg.org/ebooks/16120', 'fi', 665), +(55633, 'Too Fat to Fight', 'Beach, Rex', '2015-12-21', 14, 'https://www.gutenberg.org/ebooks/50735', 'en', 579), +(55634, 'Franse Toestanden', 'Heine, Heinrich', '2001-09-01', 7, 'https://www.gutenberg.org/ebooks/2839', 'nl', 18226), +(55635, 'Green Mansions: A Romance of the Tropical Forest', 'Hudson, W. H. (William Henry)', '1997-06-01', 98, 'https://www.gutenberg.org/ebooks/942', 'en', 48), +(55636, 'Barbara Ladd', 'Roberts, Charles G. D., Sir', '2010-11-10', 46, 'https://www.gutenberg.org/ebooks/34270', 'en', 2739), +(55637, 'Franklin Kane', 'Sedgwick, Anne Douglas', '2006-07-22', 10, 'https://www.gutenberg.org/ebooks/18886', 'en', 109), +(55638, 'The Friar\'s Daughter: A Story of the American Occupation of the Philippines', 'Phifer, Charles Lincoln', '2014-12-26', 16, 'https://www.gutenberg.org/ebooks/47782', 'en', 18227), +(55639, 'Night Operations for Infantry\r\nCompiled for the Use of Company Officers', 'Dawkins, C. T.', '2017-08-02', 17, 'https://www.gutenberg.org/ebooks/55247', 'en', 5167), +(55640, 'Beneficiary Features of American Trade Unions', 'Kennedy, James Boyd', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/12580', 'en', 18228), +(55641, 'Studies in Forensic Psychiatry', 'Glueck, Bernard', '2006-09-03', 40, 'https://www.gutenberg.org/ebooks/19168', 'en', 13826), +(55642, 'Faith and Duty: Sermons on Free Texts, with Reference to the Church-Year', 'Buchheimer, L. B. (Louis Balthaser)', '2015-08-05', 3, 'https://www.gutenberg.org/ebooks/49618', 'en', 18229), +(55643, '\'A vilanza (la bilancia); Cappiddazzu paga tuttu\r\nTeatro dialettale siciliano, volume settimo', 'Pirandello, Luigi', '2010-03-19', 27, 'https://www.gutenberg.org/ebooks/31702', 'it', 6068), +(55644, 'Piccadilly Jim', 'Wodehouse, P. G. (Pelham Grenville)', '1999-12-01', 198, 'https://www.gutenberg.org/ebooks/2005', 'en', 637), +(55645, 'Kotona: Kuvaelma Itä-Suomesta', 'Ahrenberg, Jacob', '2013-07-27', 3, 'https://www.gutenberg.org/ebooks/43322', 'fi', 61), +(55646, 'Kontrovers-Predigt über H. Clauren und den Mann im Mond\r\nGehalten vor dem deutschen Publikum in der Herbstmesse 1827', 'Hauff, Wilhelm', '2004-09-13', 14, 'https://www.gutenberg.org/ebooks/13452', 'de', 659), +(55647, 'Nirvana: Lemmentarina', 'Kianto, Ilmari', '2017-03-20', 4, 'https://www.gutenberg.org/ebooks/54395', 'fi', 175), +(55648, 'Scientific American Supplement, No. 647, May 26, 1888', 'Various', '2008-12-31', 7, 'https://www.gutenberg.org/ebooks/27667', 'en', 210), +(55649, 'The American Missionary — Volume 36, No. 3, March, 1882', 'Various', '2018-07-15', 5, 'https://www.gutenberg.org/ebooks/57510', 'en', 395), +(55650, 'Her Season in Bath: A Story of Bygone Days', 'Marshall, Emma', '2010-07-02', 22, 'https://www.gutenberg.org/ebooks/33055', 'en', 13537), +(55651, 'At the Sign of the Cat and Racket', 'Balzac, Honoré de', '2004-06-01', 85, 'https://www.gutenberg.org/ebooks/1680', 'en', 58), +(55652, 'Pleistocene Soricidae from San Josecito Cave, Nuevo Leon, Mexico', 'Findley, James S. (James Smith)', '2010-04-30', 5, 'https://www.gutenberg.org/ebooks/32187', 'en', 18230), +(55653, 'Old Times in Dixie Land: A Southern Matron\'s Memories', 'Merrick, Caroline E. (Caroline Elizabeth)', '2012-11-24', 26, 'https://www.gutenberg.org/ebooks/41475', 'en', 5674), +(55654, 'La Campagna del 1796 nel Veneto\r\nParte prima: La decadenza militare della serenissima uomini ed armi', 'Barbarich, Eugenio', '2004-02-01', 34, 'https://www.gutenberg.org/ebooks/11305', 'it', 10765), +(55655, '夜雨秋燈錄', 'Xuan, Ding', '2008-04-22', 17, 'https://www.gutenberg.org/ebooks/25130', 'zh', 4473), +(55656, 'The Growth of a Soul', 'Strindberg, August', '2013-11-05', 11, 'https://www.gutenberg.org/ebooks/44107', 'en', 957), +(55657, 'The Satyricon — Volume 03: Encolpius and His Companions', 'Petronius Arbiter', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/5220', 'en', 10146), +(55658, 'A Catalogue of Early Pennsylvania and Other Firearms and Edged Weapons at \"Restless Oaks\", McElhattan, Pa.', 'Shoemaker, Henry W.', '2007-01-25', 24, 'https://www.gutenberg.org/ebooks/20442', 'en', 18231), +(55659, 'Contes de Noël', 'Mirmont, Madame Henri de la Ville de', '2005-01-12', 14, 'https://www.gutenberg.org/ebooks/14677', 'fr', 585), +(55660, 'Mémoires du maréchal Marmont, duc de Raguse (7/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2010-10-17', 18, 'https://www.gutenberg.org/ebooks/33869', 'fr', 3053), +(55661, 'Christmas at Thompson Hall', 'Trollope, Anthony', '2018-12-28', 30, 'https://www.gutenberg.org/ebooks/58558', 'en', 95), +(55662, 'Literatura Mondo, numero 1, 1922 Oktobro', NULL, '2016-05-14', 8, 'https://www.gutenberg.org/ebooks/52062', 'eo', 18232), +(55663, 'Punch, or the London Charivari, Volume 98, January 18, 1890', 'Various', '2007-05-23', 16, 'https://www.gutenberg.org/ebooks/21590', 'en', 134), +(55664, 'Välskärin kertomuksia 5\nVapaa-ajattelija. Iltamyrskyjä. Aamun valkeneminen.', 'Topelius, Zacharias', '2011-06-26', 17, 'https://www.gutenberg.org/ebooks/36527', 'fi', 8032), +(55665, 'Historia de las Indias (vol. 2 de 5)', 'Casas, Bartolomé de las', '2015-10-31', 33, 'https://www.gutenberg.org/ebooks/50351', 'es', 3785), +(55666, 'Elsie at Home', 'Finley, Martha', '2006-01-12', 34, 'https://www.gutenberg.org/ebooks/17496', 'en', 470), +(55667, 'The Little Girl Who Was Taught by Experience', 'Anonymous', '2010-12-09', 25, 'https://www.gutenberg.org/ebooks/34614', 'en', 1679), +(55668, 'Guingamor, Lanval, Tyolet, Bisclaveret: Four lais rendered into English prose', 'Marie, de France, active 12th century', '2014-07-09', 47, 'https://www.gutenberg.org/ebooks/46234', 'en', 9541), +(55669, 'The Land of Midian (Revisited) — Volume 2', 'Burton, Richard Francis, Sir', '2004-12-01', 21, 'https://www.gutenberg.org/ebooks/7113', 'en', 13365), +(55670, 'Cattle and Their Diseases\r\nEmbracing Their History and Breeds, Crossing and Breeding, and Feeding and Management; with the Diseases to Which They Are Subject, and the Remedies Best Adapted to Their Cure', 'Jennings, Robert', '2007-09-26', 27, 'https://www.gutenberg.org/ebooks/22771', 'en', 13069), +(55671, 'Clairvoyance', 'Leadbeater, C. W. (Charles Webster)', '2009-07-13', 46, 'https://www.gutenberg.org/ebooks/29399', 'en', 746), +(55672, 'The Boy Scouts In Russia', 'Blaine, John', '2005-08-18', 44, 'https://www.gutenberg.org/ebooks/16544', 'en', 1002), +(55673, 'Maa kuuluu kaikille! Matkoiltani Laukon laulumailla', 'Järnefelt, Arvid', '2016-02-22', 4, 'https://www.gutenberg.org/ebooks/51283', 'fi', 18233), +(55674, 'The Door in the Wall, and Other Stories', 'Wells, H. G. (Herbert George)', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/8967', 'en', 5077), +(55675, 'Handel', 'Dent, Edward J. (Edward Joseph)', '2005-10-01', 41, 'https://www.gutenberg.org/ebooks/9089', 'en', 8480), +(55676, 'The Lady of Lyons; Or, Love and Pride', 'Lytton, Edward Bulwer Lytton, Baron', '2001-01-01', 18, 'https://www.gutenberg.org/ebooks/2461', 'en', 137), +(55677, 'Apró regények (1. kötet)', 'Bródy, Sándor', '2013-09-16', 7, 'https://www.gutenberg.org/ebooks/43746', 'hu', 189), +(55678, 'Le Conscrit ou Le Retour de Crimée', 'Doin, Ernest', '2004-07-28', 7, 'https://www.gutenberg.org/ebooks/13036', 'fr', 11023), +(55679, 'Self Mastery Through Conscious Autosuggestion', 'Coué, Emile', '2008-11-08', 116, 'https://www.gutenberg.org/ebooks/27203', 'en', 5184), +(55680, 'The Philosophy of Fine Art, volume 3 (of 4)\nHegel\'s Aesthetik', 'Hegel, Georg Wilhelm Friedrich', '2017-09-25', 35, 'https://www.gutenberg.org/ebooks/55623', 'en', 2250), +(55681, 'Histoire de France 1440-1465 (Volume 7/19)', 'Michelet, Jules', '2013-05-11', 24, 'https://www.gutenberg.org/ebooks/42694', 'fr', 624), +(55682, 'A Little Dusky Hero', 'Comstock, Harriet T. (Harriet Theresa)', '2010-02-23', 10, 'https://www.gutenberg.org/ebooks/31366', 'en', 1361), +(55683, 'Pony Tracks', 'Remington, Frederic', '2012-10-10', 30, 'https://www.gutenberg.org/ebooks/41011', 'en', 3540), +(55684, 'Scientific American Supplement, No. 514, November 7, 1885', 'Various', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11761', 'en', 210), +(55685, 'Van hoog en laag\nHet eerste levensboek', 'Buysse, Cyriel', '2008-05-21', 6, 'https://www.gutenberg.org/ebooks/25554', 'nl', 61), +(55686, 'Samlede Værker, Første Bind', 'Aakjær, Jeppe', '2008-02-02', 32, 'https://www.gutenberg.org/ebooks/24486', 'da', 2653), +(55687, 'The American Missionary — Volume 41, No. 10, October, 1887', 'Various', '2018-05-17', 4, 'https://www.gutenberg.org/ebooks/57174', 'en', 395), +(55688, 'Where Animals Talk: West African Folk Lore Tales', 'Nassau, Robert Hamill', '2019-02-17', 23, 'https://www.gutenberg.org/ebooks/58900', 'en', 18234), +(55689, 'The Dangerous Classes of New York, and Twenty Years\' Work Among Them', 'Brace, Charles Loring', '2010-08-14', 27, 'https://www.gutenberg.org/ebooks/33431', 'en', 18235), +(55690, 'The Long Dim Trail', 'Hooker, Forrestine C. (Forrestine Cooper)', '2012-06-07', 81, 'https://www.gutenberg.org/ebooks/39937', 'en', 315), +(55691, 'Prehistoric Man\nResearches into the Origin of Civilization in the Old and the New World', 'Wilson, Daniel, Sir', '2016-06-25', 18, 'https://www.gutenberg.org/ebooks/52406', 'en', 2170), +(55692, 'Jack Tier; Or, The Florida Reef', 'Cooper, James Fenimore', '2003-12-01', 52, 'https://www.gutenberg.org/ebooks/4796', 'en', 10770), +(55693, 'The Mapleson Memoirs, 1848-1888, vol I', 'Mapleson, James Henry', '2011-05-18', 7, 'https://www.gutenberg.org/ebooks/36143', 'en', 18236), +(55694, 'Thackerayana: Notes and Anecdotes', NULL, '2014-01-02', 19, 'https://www.gutenberg.org/ebooks/44563', 'en', 5826), +(55695, 'Sganarelle, ou le Cocu imaginaire', 'Molière', '2004-05-01', 21, 'https://www.gutenberg.org/ebooks/5644', 'fr', 907), +(55696, 'Calvinin aikoina', 'Alcock, Deborah', '2018-09-22', 13, 'https://www.gutenberg.org/ebooks/57948', 'fi', 98), +(55697, 'A Song of the English', 'Kipling, Rudyard', '2011-08-15', 45, 'https://www.gutenberg.org/ebooks/37091', 'en', 8), +(55698, 'Fables for the Frivolous', 'Carryl, Guy Wetmore', '2006-11-06', 4, 'https://www.gutenberg.org/ebooks/20026', 'en', 5509), +(55699, 'Three Months of My Life', 'Foster, J. F. (John Frederick)', '2004-11-30', 28, 'https://www.gutenberg.org/ebooks/14213', 'en', 3479), +(55700, 'Historical Record of the Twelfth, or the Prince of Wales\'s Royal Regiment of Lancers\r\nContaining an Account of the Formation of the Regiment in 1715, and of Its Subsequent Services to 1848.', 'Cannon, Richard', '2018-01-02', 4, 'https://www.gutenberg.org/ebooks/56294', 'en', 18237), +(55701, 'The Wonders of Prayer\nA Record of Well Authenticated and Wonderful Answers to Prayer', NULL, '2004-03-01', 55, 'https://www.gutenberg.org/ebooks/11553', 'en', 5230), +(55702, 'The Immortal\nOr, One Of The \"Forty.\" (L\'immortel) - 1877', 'Daudet, Alphonse', '2008-06-12', 23, 'https://www.gutenberg.org/ebooks/25766', 'en', 18238), +(55703, 'Superwomen', 'Terhune, Albert Payson', '2012-04-01', 34, 'https://www.gutenberg.org/ebooks/39339', 'en', 4289), +(55704, 'Punch, or the London Charivari, Volume 107, December 1, 1894', 'Various', '2012-10-29', 9, 'https://www.gutenberg.org/ebooks/41223', 'en', 134), +(55705, 'Eros und die Evangelien, aus den Notizen eines Vagabunden', 'Bonsels, Waldemar', '2010-09-01', 30, 'https://www.gutenberg.org/ebooks/33603', 'de', 61), +(55706, 'Rautatie', 'Aho, Juhani', '2003-12-01', 26, 'https://www.gutenberg.org/ebooks/10481', 'fi', 61), +(55707, 'Streifzüge im Süden: Reiseskizzen aus Italien und Tunis', 'Freund, Erich', '2018-06-17', 38, 'https://www.gutenberg.org/ebooks/57346', 'de', 1896), +(55708, 'L\'art du taupier; ou, méthode amusante et infaillible de prendre les taupes', 'Dralet, M. (Etienne François)', '2011-06-10', 23, 'https://www.gutenberg.org/ebooks/36371', 'fr', 6669), +(55709, 'The Wonder-Child: An Australian Story', 'Turner, Ethel Sybil', '2014-05-25', 20, 'https://www.gutenberg.org/ebooks/45683', 'en', 18239), +(55710, 'Women\'s Work', 'Whitley, Margaret', '2016-07-23', 13, 'https://www.gutenberg.org/ebooks/52634', 'en', 11731), +(55711, 'Instruction for Using a Slide Rule', 'Stanley, W.', '2006-12-29', 26, 'https://www.gutenberg.org/ebooks/20214', 'en', 18240), +(55712, 'Lord of the World', 'Benson, Robert Hugh', '2004-11-11', 213, 'https://www.gutenberg.org/ebooks/14021', 'en', 18241), +(55713, 'The Search Party', 'Birmingham, George A.', '2014-01-25', 12, 'https://www.gutenberg.org/ebooks/44751', 'en', 669), +(55714, 'Cleopatra — Volume 04', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5476', 'en', 10937), +(55715, 'The Enchanted Barn', 'Hill, Grace Livingston', '2011-10-11', 104, 'https://www.gutenberg.org/ebooks/34426', 'en', 376), +(55716, 'Harper\'s Young People, November 29, 1881\nAn Illustrated Weekly', 'Various', '2015-10-08', 3, 'https://www.gutenberg.org/ebooks/50163', 'en', 479), +(55717, 'The Castaways', 'Collingwood, Harry', '2007-11-15', 16, 'https://www.gutenberg.org/ebooks/23491', 'en', 324), +(55718, 'The Honest American Voter\'s Little Catechism for 1880', 'Harding, Blythe', '2009-02-14', 12, 'https://www.gutenberg.org/ebooks/28079', 'en', 18242), +(55719, 'The Alhambra', 'Irving, Washington', '2015-09-04', 22, 'https://www.gutenberg.org/ebooks/49872', 'en', 18243), +(55720, 'L\'art et maniere de semer', 'Brossard, David', '2007-09-08', 15, 'https://www.gutenberg.org/ebooks/22543', 'fr', 6679), +(55721, 'Poems of Passion', 'Wilcox, Ella Wheeler', '2005-09-30', 34, 'https://www.gutenberg.org/ebooks/16776', 'en', 178), +(55722, 'The Birth of the War-God: A Poem by Kálidása', 'Kalidasa', '2010-04-12', 31, 'https://www.gutenberg.org/ebooks/31968', 'en', 11948), +(55723, 'The Black Tortoise: Being the Strange Story of Old Frick\'s Diamond', 'Sparre, Christian', '2014-06-16', 16, 'https://www.gutenberg.org/ebooks/46006', 'en', 286), +(55724, 'The Nibelungenlied\nTranslated into Rhymed English Verse in the Metre of the Original', NULL, '2005-01-01', 74, 'https://www.gutenberg.org/ebooks/7321', 'en', 3095), +(55725, 'Emile Zola', 'Howells, William Dean', '1996-11-01', 106, 'https://www.gutenberg.org/ebooks/728', 'en', 11853), +(55726, 'Sermons to the Natural Man', 'Shedd, William G. T. (William Greenough Thayer)', '2004-08-17', 42, 'https://www.gutenberg.org/ebooks/13204', 'en', 2248), +(55727, 'De l\'imprimé à Internet', 'Lebert, Marie', '2008-10-26', 8, 'https://www.gutenberg.org/ebooks/27031', 'fr', 2047), +(55728, 'Has Anyone Here Seen Kelly?', 'Walton, Bryce', '2009-09-25', 22, 'https://www.gutenberg.org/ebooks/30086', 'en', 179), +(55729, 'The Papers and Writings of Abraham Lincoln — Volume 1: 1832-1843', 'Lincoln, Abraham', '2004-09-30', 36, 'https://www.gutenberg.org/ebooks/2653', 'en', 1716), +(55730, 'Good Things to Eat as Suggested by Rufus', 'Estes, Rufus', '2009-05-01', 36, 'https://www.gutenberg.org/ebooks/28845', 'en', 103), +(55731, 'Carpentry and Woodwork', 'Foster, Edwin W.', '2013-08-27', 96, 'https://www.gutenberg.org/ebooks/43574', 'en', 8540), +(55732, 'Soldados da Revolução', 'Quental, Antero de', '2009-09-15', 16, 'https://www.gutenberg.org/ebooks/29997', 'pt', 18244), +(55733, 'Le Blé qui lève', 'Bazin, René', '2010-02-01', 34, 'https://www.gutenberg.org/ebooks/31154', 'fr', 259), +(55734, 'The Bible, Douay-Rheims, Book 69: 1 John\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8369', 'en', 3902), +(55735, 'The Jewel of Seven Stars', 'Stoker, Bram', '2003-02-01', 179, 'https://www.gutenberg.org/ebooks/3781', 'en', 4374), +(55736, 'Vallankumouskertomuksia', 'France, Anatole', '2017-08-22', 10, 'https://www.gutenberg.org/ebooks/55411', 'fi', 1152), +(55737, 'Selections from the Table Talk of Martin Luther', 'Luther, Martin', '2006-02-01', 79, 'https://www.gutenberg.org/ebooks/9841', 'en', 18245), +(55738, 'Great Italian and French Composers', 'Ferris, George T. (George Titus)', '2006-01-04', 15, 'https://www.gutenberg.org/ebooks/17462', 'en', 18246), +(55739, 'That Sweet Little Old Lady', 'Garrett, Randall', '2007-11-29', 42, 'https://www.gutenberg.org/ebooks/23657', 'en', 26), +(55740, 'The Triple Marriage', 'Destouches, Néricault', '2004-07-01', 19, 'https://www.gutenberg.org/ebooks/6035', 'en', 16036), +(55741, 'The Mysteries of London, v. 1/4', 'Reynolds, George W. M. (George William MacArthur)', '2014-11-08', 84, 'https://www.gutenberg.org/ebooks/47312', 'en', 1079), +(55742, 'Histoire littéraire d\'Italie (5/9)', 'Ginguené, Pierre Louis', '2011-03-31', 16, 'https://www.gutenberg.org/ebooks/35732', 'fr', 7200), +(55743, 'Indian Frontier Policy', 'Adye, John, Sir', '2007-09-01', 12, 'https://www.gutenberg.org/ebooks/22785', 'en', 3631), +(55744, 'The Mysterious Island', 'Verne, Jules', '2005-09-01', 262, 'https://www.gutenberg.org/ebooks/8993', 'en', 9528), +(55745, 'A Summer\'s Poems', 'Lys, Francis J. (Francis John)', '2016-02-21', 4, 'https://www.gutenberg.org/ebooks/51277', 'en', 532), +(55746, 'Susy, a Story of the Plains', 'Harte, Bret', '2006-05-17', 26, 'https://www.gutenberg.org/ebooks/2495', 'en', 50), +(55747, 'The Big Trip Up Yonder', 'Vonnegut, Kurt', '2009-10-13', 413, 'https://www.gutenberg.org/ebooks/30240', 'en', 26), +(55748, 'Moby Dick', 'Melville, Herman', '1991-05-01', 881, 'https://www.gutenberg.org/ebooks/15', 'en', 8412), +(55749, 'The Sorceress: A Drama in Five Acts', 'Sardou, Victorien', '2017-05-11', 10, 'https://www.gutenberg.org/ebooks/54705', 'en', 1234), +(55750, 'The Doctor\'s Daughter', 'Vera', '2004-11-01', 17, 'https://www.gutenberg.org/ebooks/6809', 'en', 61), +(55751, 'A Mulher Portugueza', 'Lucci, Eduardo Shwalbach', '2008-08-16', 9, 'https://www.gutenberg.org/ebooks/26325', 'pt', 18247), +(55752, 'The Scornful Lady', 'Fletcher, John', '2004-04-01', 45, 'https://www.gutenberg.org/ebooks/12110', 'en', 907), +(55753, 'Experiments on Animals', 'Paget, Stephen', '2013-05-08', 12, 'https://www.gutenberg.org/ebooks/42660', 'en', 5852), +(55754, 'The Dinosaur Quarry. Dinosaur National Monument, Colorado-Utah', 'Good, John M. (John Maxwell)', '2015-06-26', 19, 'https://www.gutenberg.org/ebooks/49288', 'en', 18248), +(55755, 'See America First', 'Herr, Charles J.', '2002-11-01', 13, 'https://www.gutenberg.org/ebooks/3547', 'en', 1110), +(55756, 'The Inhabited', 'Wilson, Richard', '2010-02-25', 35, 'https://www.gutenberg.org/ebooks/31392', 'en', 67), +(55757, 'The Unadjusted Girl, With Cases and Standpoint for Behavior Analysis', 'Thomas, William Isaac', '2019-06-27', 76, 'https://www.gutenberg.org/ebooks/59826', 'en', 1557), +(55758, 'Black Forest Village Stories', 'Auerbach, Berthold', '2010-05-24', 40, 'https://www.gutenberg.org/ebooks/32517', 'en', 712), +(55759, 'Human Genome Project, Build 34, Chromosome Number 21', 'Human Genome Project', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11795', 'en', 1385), +(55760, 'Jääkärien jäljiltä: Kymmenen kertomusta', 'Kara, Jalmari', '2017-11-26', 10, 'https://www.gutenberg.org/ebooks/56052', 'fi', 665), +(55761, 'The Heroic Women of Early Indiana Methodism: An Address Delivered Before the Indiana Methodist Historical Society', 'Goodwin, T. A. (Thomas Aiken)', '2008-01-31', 9, 'https://www.gutenberg.org/ebooks/24472', 'en', 18249), +(55762, 'The Literary Shop, and Other Tales', 'Ford, James L. (James Lauren)', '2018-05-19', 18, 'https://www.gutenberg.org/ebooks/57180', 'en', 1227), +(55763, 'Beacon Lights of History, Volume 12: American Leaders', 'Lord, John', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10647', 'en', 414), +(55764, 'The Call of the Mountains, and Other Poems', 'Pickering, James E.', '2011-10-26', 21, 'https://www.gutenberg.org/ebooks/37859', 'en', 8), +(55765, 'The Red, White, and Green', 'Hayens, Herbert', '2012-07-03', 192, 'https://www.gutenberg.org/ebooks/40137', 'en', 18250), +(55766, 'Kwaidan: Stories and Studies of Strange Things', 'Hearn, Lafcadio', '1998-02-01', 391, 'https://www.gutenberg.org/ebooks/1210', 'en', 531), +(55767, 'Madame Chrysanthème', 'Loti, Pierre', '2005-03-12', 21, 'https://www.gutenberg.org/ebooks/15335', 'en', 775), +(55768, 'Titus Andronicus', 'Shakespeare, William', '2007-04-16', 13, 'https://www.gutenberg.org/ebooks/21100', 'fi', 7980), +(55769, 'Civil Government of Virginia\r\nA Text-book for Schools Based Upon the Constitution of 1902 and Conforming to the Laws Enacted in Accordance Therewith', 'Fox, William Fayette', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/4762', 'en', 18251), +(55770, 'Tutkielmia: Valikoima', 'Montaigne, Michel de', '2014-04-21', 6, 'https://www.gutenberg.org/ebooks/45445', 'fi', 18252), +(55771, 'Harper\'s Young People, January 18, 1881\nAn Illustrated Monthly', 'Various', '2014-01-05', 5, 'https://www.gutenberg.org/ebooks/44597', 'en', 479), +(55772, 'Totem und Tabu\nEinige Übereinstimmungen im Seelenleben der Wilden und der Neurotiker', 'Freud, Sigmund', '2011-08-13', 72, 'https://www.gutenberg.org/ebooks/37065', 'de', 7691), +(55773, 'The Works of Robert G. Ingersoll, Vol. 11 (of 12)\nDresden Edition—Miscellany', 'Ingersoll, Robert Green', '2012-02-09', 38, 'https://www.gutenberg.org/ebooks/38811', 'en', 1191), +(55774, 'The Author\'s Desk Book\r\nBeing a Reference Volume upon Questions of the Relations of the Author to the Publisher, Copyright, The Relation of the Contributor to the Magazine, Mechanics of the Book, Arrangement of the Book, Making of the Index, Etc.', 'Orcutt, William Dana', '2016-11-13', 16, 'https://www.gutenberg.org/ebooks/53520', 'en', 8249), +(55775, 'Through Spain to the Sahara', 'Betham-Edwards, Matilda', '2017-12-27', 7, 'https://www.gutenberg.org/ebooks/56260', 'en', 10950), +(55776, 'The Sympathy of Religions', 'Higginson, Thomas Wentworth', '2008-06-14', 31, 'https://www.gutenberg.org/ebooks/25792', 'en', 18253), +(55777, 'Work for Women', 'Manson, George J.', '2010-06-07', 20, 'https://www.gutenberg.org/ebooks/32725', 'en', 2449), +(55778, 'Problems of the Pacific', 'Fox, Frank', '2012-07-23', 24, 'https://www.gutenberg.org/ebooks/40305', 'en', 18254), +(55779, 'Walking', 'Thoreau, Henry David', '1997-08-01', 431, 'https://www.gutenberg.org/ebooks/1022', 'en', 3489), +(55780, '\"Old Mary\"\r\n1901', 'Becke, Louis', '2008-02-18', 10, 'https://www.gutenberg.org/ebooks/24640', 'en', 2357), +(55781, 'The Mirror of Literature, Amusement, and Instruction. Volume 12, No. 326, August 9, 1828', 'Various', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/10475', 'en', 133), +(55782, 'Tales from the Fjeld: A Second Series of Popular Tales', 'Asbjørnsen, Peter Christen', '2011-06-11', 47, 'https://www.gutenberg.org/ebooks/36385', 'en', 1007), +(55783, 'Fighting France, from Dunkerque to Belfort', 'Wharton, Edith', '2003-10-01', 42, 'https://www.gutenberg.org/ebooks/4550', 'en', 449), +(55784, 'Popular Amusements', 'Crane, J. T. (Jonathan Townley)', '2014-05-18', 26, 'https://www.gutenberg.org/ebooks/45677', 'en', 14516), +(55785, 'Index of the Project Gutenberg Works of Anatole France', 'France, Anatole', '2019-04-08', 11, 'https://www.gutenberg.org/ebooks/59228', 'en', 198), +(55786, 'La corde au cou', 'Gaboriau, Emile', '2005-02-18', 23, 'https://www.gutenberg.org/ebooks/15107', 'fr', 128), +(55787, 'Charles Dickens as a Reader', 'Kent, Charles', '2007-05-05', 32, 'https://www.gutenberg.org/ebooks/21332', 'en', 18255), +(55788, 'The Boy Inventors\' Flying Ship', 'Bonner, Richard', '2016-12-11', 10, 'https://www.gutenberg.org/ebooks/53712', 'en', 3124), +(55789, 'The Claw', 'Stockley, Cynthia', '2011-08-29', 68, 'https://www.gutenberg.org/ebooks/37257', 'en', 1207), +(55790, 'Cleopatra — Complete', 'Ebers, Georg', '2004-11-15', 47, 'https://www.gutenberg.org/ebooks/5482', 'en', 6232), +(55791, 'The Trail of the Sword, Volume 2', 'Parker, Gilbert', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/6207', 'en', 1890), +(55792, 'Quarter-Back Bates', 'Barbour, Ralph Henry', '2014-10-15', 8, 'https://www.gutenberg.org/ebooks/47120', 'en', 5031), +(55793, 'The Sonnets, Triumphs, and Other Poems of Petrarch', 'Petrarca, Francesco', '2006-01-31', 104, 'https://www.gutenberg.org/ebooks/17650', 'en', 18256), +(55794, 'Aus halbvergessenem Lande. Culturbilder aus Dalmatien', 'Schiff, Theodor', '2015-10-13', 10, 'https://www.gutenberg.org/ebooks/50197', 'de', 6602), +(55795, 'Despertar Para Morir (Novela)', 'Espina, Concha', '2015-05-14', 20, 'https://www.gutenberg.org/ebooks/48954', 'es', 1384), +(55796, 'The Story of the Three Goblins', 'Taggart, Mabel G.', '2007-11-13', 11, 'https://www.gutenberg.org/ebooks/23465', 'en', 2257), +(55797, 'Harper\'s Young People, November 8, 1881\nAn Illustrated Weekly', 'Various', '2015-09-05', 1, 'https://www.gutenberg.org/ebooks/49886', 'en', 479), +(55798, 'Ephemerides Barometricae Mutinenses (anni M.DC.XCIV)\nCum Disquisitione Causae ascensus ac descensus Mercurii in Torricelliana fistula iuxta diversum Aeris statum', 'Torti, Francesco', '2016-01-26', 6, 'https://www.gutenberg.org/ebooks/51045', 'la', 18257), +(55799, 'Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 2', 'Jefferson, Thomas', '2005-09-30', 24, 'https://www.gutenberg.org/ebooks/16782', 'en', 3311), +(55800, 'Nuts and Nutcrackers', 'Lever, Charles James', '2011-03-06', 16, 'https://www.gutenberg.org/ebooks/35500', 'en', 20), +(55801, 'Stories of Later American History', 'Gordy, Wilbur F. (Wilbur Fisk)', '2006-06-19', 46, 'https://www.gutenberg.org/ebooks/18618', 'en', 7583), +(55802, 'Musical Instruments', 'Engel, Carl', '2017-04-11', 14, 'https://www.gutenberg.org/ebooks/54537', 'en', 13313), +(55803, 'Angelot: A Story of the First Empire', 'Price, Eleanor C. (Eleanor Catherine)', '2009-09-23', 9, 'https://www.gutenberg.org/ebooks/30072', 'en', 4751), +(55804, 'Horses Past and Present', 'Gilbey, Walter, Sir', '2013-08-27', 6, 'https://www.gutenberg.org/ebooks/43580', 'en', 18258), +(55805, 'Funny Stories Told by the Soldiers\r\nPranks, Jokes and Laughable Affairs of Our Boys and Their Allies in the Great War', 'Case, Carleton B. (Carleton Britton)', '2015-02-05', 31, 'https://www.gutenberg.org/ebooks/48168', 'en', 5749), +(55806, 'Goodbye, Dead Man!', 'Harris, Tom W.', '2009-09-12', 20, 'https://www.gutenberg.org/ebooks/29963', 'en', 26), +(55807, 'Uruguay', 'Koebel, W. H. (William Henry)', '2013-04-01', 13, 'https://www.gutenberg.org/ebooks/42452', 'en', 15992), +(55808, 'Napoleon Bonaparte', 'Abbott, John S. C. (John Stevens Cabot)', '2003-02-01', 113, 'https://www.gutenberg.org/ebooks/3775', 'en', 18259), +(55809, 'The City of the Sultan; and Domestic Manners of the Turks, in 1836, Vol. 2 (of 2)', 'Pardoe, Miss (Julia)', '2016-04-29', 19, 'https://www.gutenberg.org/ebooks/51879', 'en', 8599), +(55810, 'Sketches of the Fair Sex, in All Parts of the World', 'Anonymous', '2008-07-24', 347, 'https://www.gutenberg.org/ebooks/26117', 'en', 1485), +(55811, 'Poetical Works of Edmund Waller and Sir John Denham', 'Waller, Edmund', '2004-05-01', 55, 'https://www.gutenberg.org/ebooks/12322', 'en', 8), +(55812, 'Marianne-rouva: Romaani', 'Benedictsson, Victoria', '2012-09-14', 22, 'https://www.gutenberg.org/ebooks/40761', 'fi', 2168), +(55813, 'Perfect Behavior: A Guide for Ladies and Gentlemen in All Social Crises', 'Stewart, Donald Ogden', '1998-09-01', 51, 'https://www.gutenberg.org/ebooks/1446', 'en', 18260), +(55814, 'The Great Miss Driver', 'Hope, Anthony', '2010-07-30', 18, 'https://www.gutenberg.org/ebooks/33293', 'en', 10117), +(55815, '平山冷燕', 'Tianhuazangzhuren', '2008-01-10', 14, 'https://www.gutenberg.org/ebooks/24224', 'zh', 1003), +(55816, '365 Foreign Dishes\r\nA Foreign Dish for Every Day in the Year', 'Unknown', '2003-11-01', 91, 'https://www.gutenberg.org/ebooks/10011', 'en', 1369), +(55817, 'Hänen ylhäisyytensä seikkailu: Salapoliisiromaani', 'Elvestad, Sven', '2018-02-19', 9, 'https://www.gutenberg.org/ebooks/56604', 'fi', 4285), +(55818, 'Five of Maxwell\'s Papers', 'Maxwell, James Clerk', '2004-01-01', 132, 'https://www.gutenberg.org/ebooks/4908', 'en', 1044), +(55819, 'Davenport Dunn, a Man of Our Day. Volume 1 (of 2)', 'Lever, Charles James', '2010-05-11', 9, 'https://www.gutenberg.org/ebooks/32341', 'en', 3373), +(55820, 'Peterchens Mondfahrt', 'Bassewitz, Gerdt von', '2007-02-03', 72, 'https://www.gutenberg.org/ebooks/20684', 'de', 18261), +(55821, 'The American Missionary — Volume 32, No. 09, September, 1878', 'Various', '2016-10-27', 2, 'https://www.gutenberg.org/ebooks/53376', 'en', 395), +(55822, 'Societies of the Kiowas', 'Lowie, Robert Harry', '2011-10-05', 16, 'https://www.gutenberg.org/ebooks/37633', 'en', 12426), +(55823, 'Diary of Samuel Pepys — Volume 16: May/June 1662', 'Pepys, Samuel', '2004-11-29', 23, 'https://www.gutenberg.org/ebooks/4134', 'en', 738), +(55824, 'Les Romans de la Table Ronde (4/ 5)\r\nMis en nouveau langage et accompagnés de recherches sur l\'origine et le caractère de ces grandes compositions', NULL, '2014-03-25', 8, 'https://www.gutenberg.org/ebooks/45213', 'fr', 5637), +(55825, 'Reason and Faith; Their Claims and Conflicts\r\nFrom The Edinburgh Review, October 1849, Volume 90, No. CLXXXII. (Pages 293-356)', 'Rogers, Henry', '2005-04-06', 8, 'https://www.gutenberg.org/ebooks/15563', 'en', 18262), +(55826, 'Philosopher Jack', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 21, 'https://www.gutenberg.org/ebooks/21756', 'en', 194), +(55827, 'Man in a Quandary', 'Stecher, L. J., Jr.', '2016-03-11', 16, 'https://www.gutenberg.org/ebooks/51421', 'en', 26), +(55828, 'Cuentos Clásicos del Norte, Segunda Serie', 'Hale, Edward Everett', '2014-08-03', 43, 'https://www.gutenberg.org/ebooks/46496', 'es', 6380), +(55829, 'The Secret Battle', 'Herbert, A. P. (Alan Patrick)', '2011-02-04', 52, 'https://www.gutenberg.org/ebooks/35164', 'en', 2564), +(55830, 'Country Life in Canada Fifty Years Ago\r\nPersonal recollections and reminiscences of a sexagenarian', 'Haight, Canniff', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6663', 'en', 18263), +(55831, 'Tähtimantteli: Sikermä', 'Lehtonen, Joel', '2014-12-05', 12, 'https://www.gutenberg.org/ebooks/47544', 'fi', 456), +(55832, 'Antiquités d\'Herculanum, Tome IV.\r\nBronzes', 'Piroli, Tommaso', '2005-12-05', 14, 'https://www.gutenberg.org/ebooks/17234', 'fr', 10954), +(55833, 'By The Sea\n1887', 'Chaplin, Heman White', '2007-10-12', 12, 'https://www.gutenberg.org/ebooks/23001', 'en', 13), +(55834, 'Le Crépuscule des Dieux', 'Bourges, Elémir', '2013-02-06', 23, 'https://www.gutenberg.org/ebooks/42036', 'fr', 298), +(55835, 'The Californiacs', 'Gillmore, Inez Haynes', '2002-07-01', 16, 'https://www.gutenberg.org/ebooks/3311', 'en', 1623), +(55836, 'On the Duty of Civil Disobedience', 'Thoreau, Henry David', '2008-09-01', 23, 'https://www.gutenberg.org/ebooks/26573', 'en', 18264), +(55837, 'The Prose Works of Jonathan Swift, D.D. — Volume 04\r\nSwift\'s Writings on Religion and the Church — Volume 2', 'Swift, Jonathan', '2004-06-25', 39, 'https://www.gutenberg.org/ebooks/12746', 'en', 717), +(55838, 'A Review of Edwards\'s \"Inquiry into the Freedom of the Will\"', 'Tappan, Henry Philip', '2011-04-25', 8, 'https://www.gutenberg.org/ebooks/35958', 'en', 14542), +(55839, 'The Delinquent (Vol. IV, No. 2), February, 1914', 'Various', '2017-07-09', 2, 'https://www.gutenberg.org/ebooks/55081', 'en', 4611), +(55840, 'Biographical Sketches of the Generals of the Continental Army of the Revolution', 'Leiter, Mary Theresa', '2017-02-12', 5, 'https://www.gutenberg.org/ebooks/54153', 'en', 3643), +(55841, 'Mince Pie', 'Morley, Christopher', '2004-10-10', 49, 'https://www.gutenberg.org/ebooks/13694', 'en', 8965), +(55842, 'Waste Not, Want', 'Dryfoos, Dave', '2009-11-07', 36, 'https://www.gutenberg.org/ebooks/30416', 'en', 26), +(55843, 'Betty Grier', 'Waugh, Joseph Laing', '2011-02-22', 77, 'https://www.gutenberg.org/ebooks/35356', 'en', 2389), +(55844, 'Widger\'s Quotes and Images from Serge Panine by George Ohnet\r\nThe French Immortals: Quotes and Images', 'Ohnet, Georges', '2009-07-13', 10, 'https://www.gutenberg.org/ebooks/7583', 'en', 2391), +(55845, 'Valikoima runoelmia', 'Heine, Heinrich', '2009-08-16', 11, 'https://www.gutenberg.org/ebooks/29709', 'fi', 8), +(55846, 'Engelsk-Svensk och Svensk-Engelsk Ordbok Med Fullständig Uttalsbeteckning', 'Lönnkvist, Frederick', '2016-03-31', 31, 'https://www.gutenberg.org/ebooks/51613', 'sv', 18265), +(55847, 'Two Christmas Celebrations', 'Parker, Theodore', '2005-11-05', 14, 'https://www.gutenberg.org/ebooks/17006', 'en', 3941), +(55848, 'Posthumous Works of the Author of A Vindication of the Rights of Woman', 'Wollstonecraft, Mary', '2007-10-29', 23, 'https://www.gutenberg.org/ebooks/23233', 'en', 1785), +(55849, 'The Field of Clover', 'Housman, Laurence', '2006-07-19', 17, 'https://www.gutenberg.org/ebooks/18872', 'en', 1007), +(55850, 'The Wood Fire in No. 3', 'Smith, Francis Hopkinson', '2010-11-11', 13, 'https://www.gutenberg.org/ebooks/34284', 'en', 297), +(55851, 'The Rover Boys on the Great Lakes; Or, The Secret of the Island Cave', 'Stratemeyer, Edward', '2004-09-01', 31, 'https://www.gutenberg.org/ebooks/6451', 'en', 10121), +(55852, 'The Dreadnought Boys on Battle Practice', 'Goldfrap, John Henry', '2014-12-24', 33, 'https://www.gutenberg.org/ebooks/47776', 'en', 1447), +(55853, 'I\'m a Stranger Here Myself', 'Reynolds, Mack', '2008-10-01', 43, 'https://www.gutenberg.org/ebooks/26741', 'en', 179), +(55854, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 556, July 7, 1832', 'Various', '2004-06-01', 2, 'https://www.gutenberg.org/ebooks/12574', 'en', 133), +(55855, 'Our Little Turkish Cousin', 'Wade, Mary Hazelton Blanchard', '2013-02-26', 29, 'https://www.gutenberg.org/ebooks/42204', 'en', 18266), +(55856, 'The Novel and the Common School', 'Warner, Charles Dudley', '2004-12-05', 4, 'https://www.gutenberg.org/ebooks/3123', 'en', 8827), +(55857, 'The Dynasts', 'Hardy, Thomas', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9419', 'en', 8163), +(55858, 'Alexander the Great\nMakers of History', 'Abbott, Jacob', '2009-12-07', 209, 'https://www.gutenberg.org/ebooks/30624', 'en', 18267), +(55859, 'The Works of John Dryden, Now First Collected in Eighteen Volumes; Vol. 12 (of 18)', 'Dryden, John', '2017-03-14', 18, 'https://www.gutenberg.org/ebooks/54361', 'en', 1201), +(55860, 'The Red Cross Girls in the British Trenches', 'Vandercook, Margaret', '2019-08-23', 148, 'https://www.gutenberg.org/ebooks/60154', 'en', NULL), +(55861, 'Little Folks (October 1884)\nA Magazine for the Young', 'Various', '2009-01-03', 10, 'https://www.gutenberg.org/ebooks/27693', 'en', 1860), +(55862, 'Photographic Reproduction Processes', 'Duchochois, Peter C.', '2007-12-24', 28, 'https://www.gutenberg.org/ebooks/24016', 'en', 18268), +(55863, 'Meyers Konversationslexikon Band 15', 'Various', '2003-11-01', 45, 'https://www.gutenberg.org/ebooks/10223', 'de', 1081), +(55864, 'The Queen Bee, and Other Nature Stories', 'Ewald, Carl', '2012-08-21', 27, 'https://www.gutenberg.org/ebooks/40553', 'en', 37), +(55865, 'The Narrative of Sojourner Truth', 'Gilbert, Olive', '1999-03-01', 83, 'https://www.gutenberg.org/ebooks/1674', 'en', 5168), +(55866, 'Veien til Skjønhed, Sundhed og et Langt Liv', 'Laynard, Boyd', '2017-01-16', 19, 'https://www.gutenberg.org/ebooks/53978', 'no', 3765), +(55867, 'Het Stoomhuis: De Waanzinnige der Nerbudda (2/2)', 'Verne, Jules', '2011-12-31', 3, 'https://www.gutenberg.org/ebooks/38449', 'nl', 6733), +(55868, 'Under Boy Scout Colors', 'Ames, Joseph Bushnell', '2010-04-29', 15, 'https://www.gutenberg.org/ebooks/32173', 'en', 2994), +(55869, 'Astounding Stories of Super-Science January 1930', NULL, '2012-11-25', 607, 'https://www.gutenberg.org/ebooks/41481', 'en', 2527), +(55870, 'The Great Valley', 'Masters, Edgar Lee', '2018-01-25', 8, 'https://www.gutenberg.org/ebooks/56436', 'en', 178), +(55871, 'Voyages et Avantures de Jaques Massé', 'Tyssot de Patot, Simon', '2011-09-11', 19, 'https://www.gutenberg.org/ebooks/37401', 'fr', 467), +(55872, 'Poèmes', 'Wilde, Oscar', '2005-01-13', 13, 'https://www.gutenberg.org/ebooks/14683', 'fr', 8), +(55873, 'Correspondence of the Family of Haddock, 1657-1719\r\nThe Camden Miscellany: Volume the Eighth', NULL, '2016-09-25', 3, 'https://www.gutenberg.org/ebooks/53144', 'en', 18269), +(55874, 'Plays\r\nBeing: An unhistorical pastoral: A romantic farce: Bruce, a chronicle play: Smith, a tragic farce: and Scaramouch in Naxos, a pantomime.', NULL, '2016-05-17', 10, 'https://www.gutenberg.org/ebooks/52096', 'en', 402), +(55875, 'A Selection of Books Published by Methuen and Co. Ltd., October 1910', 'Methuen & Co.', '2005-05-02', 4, 'https://www.gutenberg.org/ebooks/15751', 'en', 727), +(55876, 'Catecismo d\'a Doutrina Labrega', 'Lamas Carvajal, Valentín', '2007-05-22', 19, 'https://www.gutenberg.org/ebooks/21564', 'gl', 18270), +(55877, 'Veranilda', 'Gissing, George', '2003-08-01', 20, 'https://www.gutenberg.org/ebooks/4306', 'en', 18271), +(55878, 'Jack the Giant Killer', 'Leigh, Percival', '2014-02-26', 24, 'https://www.gutenberg.org/ebooks/45021', 'en', 859), +(55879, 'Citizenship: A Manual for Voters', 'Cromwell, Emma Guy', '2008-05-25', 15, 'https://www.gutenberg.org/ebooks/25598', 'en', 13438), +(55880, 'The Millionaire Baby', 'Green, Anna Katharine', '2007-06-22', 42, 'https://www.gutenberg.org/ebooks/21904', 'en', 128), +(55881, 'On the Origin of Species By Means of Natural Selection\r\nOr, the Preservation of Favoured Races in the Struggle for Life', 'Darwin, Charles', '1998-03-01', 1016, 'https://www.gutenberg.org/ebooks/1228', 'en', 5893), +(55882, 'De Re Metallica, Translated from the First Latin Edition of 1556', 'Agricola, Georg', '2011-11-14', 204, 'https://www.gutenberg.org/ebooks/38015', 'en', 1205), +(55883, 'Poems - Second Series', 'Squire, John Collings, Sir', '2011-10-26', 7, 'https://www.gutenberg.org/ebooks/37861', 'en', 1594), +(55884, 'L\'auca del senyor Esteve\nab redolins dibuixats per en Ramón Casas; escrits per en Gabriel Alomar', 'Rusiñol, Santiago', '2018-03-27', 29, 'https://www.gutenberg.org/ebooks/56856', 'ca', 13552), +(55885, 'Myself When Young: Confessions', 'Waugh, Alec', '2019-03-06', 18, 'https://www.gutenberg.org/ebooks/59022', 'en', 1299), +(55886, 'Love\'s Meinie: Three Lectures on Greek and English Birds', 'Ruskin, John', '2007-04-18', 19, 'https://www.gutenberg.org/ebooks/21138', 'en', 18272), +(55887, 'The Wonderful Story of Lincoln\nAnd the Meaning of His Life for the Youth and Patriotism of America', 'Stevens, C. M. (Charles McClellan)', '2012-10-04', 19, 'https://www.gutenberg.org/ebooks/40933', 'en', 5733), +(55888, 'Right Tackle Todd', 'Barbour, Ralph Henry', '2016-11-13', 3, 'https://www.gutenberg.org/ebooks/53518', 'en', 5031), +(55889, 'Garden-Craft Old and New', 'Sedding, John Dando', '2012-02-11', 23, 'https://www.gutenberg.org/ebooks/38829', 'en', 18273), +(55890, 'Scribner\'s Magazine, Volume 26, October 1899', 'Various', '2018-09-28', 12, 'https://www.gutenberg.org/ebooks/57984', 'en', 1227), +(55891, 'The Innocents Abroad — Volume 01', 'Twain, Mark', '2004-06-22', 33, 'https://www.gutenberg.org/ebooks/5688', 'en', 885), +(55892, 'The Amateur Gentleman', 'Farnol, Jeffery', '2006-02-01', 36, 'https://www.gutenberg.org/ebooks/9879', 'en', 1380), +(55893, 'The Lady of the Lake', 'Scott, Walter', '2009-03-09', 42, 'https://www.gutenberg.org/ebooks/28287', 'en', 10774), +(55894, 'The Odyssey of Sam Meecham', 'Fritch, Charles E.', '2009-07-08', 26, 'https://www.gutenberg.org/ebooks/29355', 'en', 26), +(55895, 'Over the Top With the Third Australian Division', 'Cuttriss, G. P.', '2005-08-24', 30, 'https://www.gutenberg.org/ebooks/16588', 'en', 3601), +(55896, 'One Hundred Best Books\r\nWith Commentary and an Essay on Books and Reading', 'Powys, John Cowper', '2004-07-15', 62, 'https://www.gutenberg.org/ebooks/12914', 'en', 1076), +(55897, 'De Pleiters', 'Racine, Jean', '2006-05-18', 14, 'https://www.gutenberg.org/ebooks/18412', 'nl', 402), +(55898, 'Oden', 'Lessing, Gotthold Ephraim', '2004-11-01', 23, 'https://www.gutenberg.org/ebooks/6831', 'de', 1518), +(55899, 'Die Jüdin von Toledo\nHistorisches Trauerspiel in fünf Aufzügen', 'Grillparzer, Franz', '2005-10-01', 29, 'https://www.gutenberg.org/ebooks/9045', 'de', 18274), +(55900, 'Friars and Filipinos\nAn Abridged Translation of Dr. Jose Rizal\'s Tagalog Novel,\n\'Noli Me Tangere.\'', 'Rizal, José', '2009-10-17', 43, 'https://www.gutenberg.org/ebooks/30278', 'en', 98), +(55901, 'The Western Front\nDrawings by Muirhead Bone', NULL, '2015-02-26', 33, 'https://www.gutenberg.org/ebooks/48362', 'en', 15672), +(55902, 'Fletcher of Saltoun', 'Omond, George W. T. (George William Thomson)', '2013-05-07', 26, 'https://www.gutenberg.org/ebooks/42658', 'en', 18275), +(55903, 'India\'s Love Lyrics', 'Hope, Laurence', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8197', 'en', 18276), +(55904, 'A Tiger\'s Skin\nThe Lady of the Barge and Others, Part 8.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/12128', 'en', 1902), +(55905, 'Plus fort que la haine', 'Tinseau, Léon de', '2006-02-03', 9, 'https://www.gutenberg.org/ebooks/17668', 'fr', 61), +(55906, 'Eternal Life', 'Drummond, Henry', '2010-01-06', 15, 'https://www.gutenberg.org/ebooks/30876', 'en', 1509), +(55907, '\"Their Majesties\' Servants.\" Annals of the English Stage (Volume 3 of 3)', 'Doran, Dr. (John)', '2014-10-14', 20, 'https://www.gutenberg.org/ebooks/47118', 'en', 11821), +(55908, 'O Assassino de Macario: Comedia em tres actos', 'Castelo Branco, Camilo', '2008-10-13', 9, 'https://www.gutenberg.org/ebooks/26913', 'pt', 402), +(55909, 'The Squatter and the Don\r\nA Novel Descriptive of Contemporary Occurrences in California', 'Ruiz de Burton, María Amparo', '2011-03-09', 54, 'https://www.gutenberg.org/ebooks/35538', 'en', 18277), +(55910, 'Secret Memoirs: The Story of Louise, Crown Princess', 'Fischer, Henry W. (Henry William)', '2009-06-19', 19, 'https://www.gutenberg.org/ebooks/29167', 'en', 18278), +(55911, 'Crucial Instances', 'Wharton, Edith', '2005-11-01', 0, 'https://www.gutenberg.org/ebooks/9277', 'en', 112), +(55912, 'Lion Ben of Elm Island\nElm Island Stories', 'Kellogg, Elijah', '2016-01-22', 10, 'https://www.gutenberg.org/ebooks/50993', 'en', 1096), +(55913, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 702\nJune 9, 1877', 'Various', '2015-02-03', 16, 'https://www.gutenberg.org/ebooks/48150', 'en', 18), +(55914, 'The Mexican Twins', 'Perkins, Lucy Fitch', '2009-05-20', 16, 'https://www.gutenberg.org/ebooks/28889', 'en', 309), +(55915, 'Phantasten', 'Mendelssohn, Erich von', '2006-06-19', 18, 'https://www.gutenberg.org/ebooks/18620', 'de', 1526), +(55916, 'Bob: The Story of Our Mocking-bird', 'Lanier, Sidney', '2015-01-09', 14, 'https://www.gutenberg.org/ebooks/47924', 'en', 18279), +(55917, 'Moskovasta Waterloohon: Romaani Napoleonin ajoilta', 'Erckmann-Chatrian', '2015-05-30', 3, 'https://www.gutenberg.org/ebooks/49082', 'fi', 6074), +(55918, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 730\nDecember 22, 1877', 'Various', '2016-04-23', 3, 'https://www.gutenberg.org/ebooks/51841', 'en', 18), +(55919, 'Legenden en Romances van Spanje', 'Spence, Lewis', '2010-02-06', 9, 'https://www.gutenberg.org/ebooks/31198', 'nl', 4785), +(55920, 'Bart Stirling\'s Road to Success; Or, The Young Express Agent', 'Chapman, Allen', '2005-05-25', 18, 'https://www.gutenberg.org/ebooks/15903', 'en', 18280), +(55921, 'Hans Nielsen Hauge', 'Bull, Jacob B. (Jacob Breda)', '2017-12-27', 9, 'https://www.gutenberg.org/ebooks/56258', 'fi', 18281), +(55922, 'The Three Commanders', 'Kingston, William Henry Giles', '2008-02-23', 26, 'https://www.gutenberg.org/ebooks/24678', 'en', 3535), +(55923, 'The Rainbow, After the Thunder-Storm', 'Anonymous', '2011-12-05', 9, 'https://www.gutenberg.org/ebooks/38227', 'en', 1817), +(55924, 'Comediettas and Farces', 'Morton, John Maddison', '2019-04-05', 17, 'https://www.gutenberg.org/ebooks/59210', 'en', 907), +(55925, 'Les Visages Du Temps: Poésie', 'Bertrand, Huguette', '2003-10-01', 12, 'https://www.gutenberg.org/ebooks/4568', 'fr', 8), +(55926, 'Sarrasine', 'Balzac, Honoré de', '2005-08-22', 153, 'https://www.gutenberg.org/ebooks/1826', 'en', 58), +(55927, 'John Galsworthy', 'Kaye-Smith, Sheila', '2017-11-04', 8, 'https://www.gutenberg.org/ebooks/55885', 'en', 18282), +(55928, 'Memoirs of My Dead Life', 'Moore, George', '2005-03-01', 34, 'https://www.gutenberg.org/ebooks/7789', 'en', 16098), +(55929, 'The Hated', 'Pohl, Frederik', '2009-07-24', 69, 'https://www.gutenberg.org/ebooks/29503', 'en', 179), +(55930, 'A Synopsis of the Birds of North America', 'Audubon, John James', '2013-05-28', 20, 'https://www.gutenberg.org/ebooks/42832', 'en', 18283), +(55931, 'Valekuollut: Romaani', 'Jókai, Mór', '2016-03-11', 5, 'https://www.gutenberg.org/ebooks/51419', 'fi', 2326), +(55932, 'Marit Skjölte', 'Janson, Kristofer', '2007-10-16', 17, 'https://www.gutenberg.org/ebooks/23039', 'fi', 7), +(55933, 'The New German Constitution', 'Brunet, René', '2017-06-21', 7, 'https://www.gutenberg.org/ebooks/54957', 'en', 18284), +(55934, 'On the Spanish Main; Or, Some English forays on the Isthmus of Darien', 'Masefield, John', '2006-09-28', 30, 'https://www.gutenberg.org/ebooks/19396', 'en', 10), +(55935, 'The Lure of the Camera', 'Olcott, Charles S. (Charles Sumner)', '2011-04-25', 39, 'https://www.gutenberg.org/ebooks/35960', 'en', 3737), +(55936, 'Caesar and Cleopatra', 'Shaw, Bernard', '2002-07-01', 156, 'https://www.gutenberg.org/ebooks/3329', 'en', 18285), +(55937, 'The Young Buglers', 'Henty, G. A. (George Alfred)', '2006-01-01', 45, 'https://www.gutenberg.org/ebooks/9613', 'en', 5773), +(55938, 'With the Flag to Pretoria: A History of the Boer War of 1899-1900. Volume 1', 'Wilson, Herbert Wrigley', '2015-03-19', 12, 'https://www.gutenberg.org/ebooks/48534', 'en', 1956), +(55939, 'For The Honor Of France\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 10, 'https://www.gutenberg.org/ebooks/23805', 'en', 770), +(55940, 'Weir of Hermiston: An Unfinished Romance', 'Stevenson, Robert Louis', '1995-12-01', 100, 'https://www.gutenberg.org/ebooks/380', 'en', 2389), +(55941, 'Contes merveilleux, Tome I', 'Andersen, H. C. (Hans Christian)', '2006-04-24', 81, 'https://www.gutenberg.org/ebooks/18244', 'fr', 18286), +(55942, 'Folk-lore and Legends: German', 'Anonymous', '2008-12-11', 32, 'https://www.gutenberg.org/ebooks/27499', 'en', 841), +(55943, 'The Hunt Ball Mystery', 'Magnay, William, Sir', '2003-11-01', 14, 'https://www.gutenberg.org/ebooks/10029', 'en', 128), +(55944, 'The Old Road', 'Belloc, Hilaire', '2012-09-14', 52, 'https://www.gutenberg.org/ebooks/40759', 'en', 18287), +(55945, 'Bourdonnements', 'Karr, Alphonse', '2012-01-22', 9, 'https://www.gutenberg.org/ebooks/38643', 'fr', 12008), +(55946, 'Farm Mechanics: Machinery and Its Use to Save Hand Labor on the Farm.', 'Shearer, Herbert A.', '2012-05-25', 31, 'https://www.gutenberg.org/ebooks/39791', 'en', 18288); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(55947, 'O Primeiro de Maio', 'Lima, S. de Magalhães (Sebastião de Magalhães)', '2010-05-15', 13, 'https://www.gutenberg.org/ebooks/32379', 'pt', 18289), +(55948, 'Paste Jewels', 'Bangs, John Kendrick', '2004-11-20', 12, 'https://www.gutenberg.org/ebooks/4930', 'en', 256), +(55949, 'A Compilation of the Messages and Papers of the Presidents. Volume 4, part 1: William Henry Harrison', NULL, '2004-01-01', 13, 'https://www.gutenberg.org/ebooks/10815', 'en', 337), +(55950, 'Nightfall', 'Pryde, Anthony', '2005-06-30', 18, 'https://www.gutenberg.org/ebooks/14489', 'en', 109), +(55951, 'Homes of the London Poor', 'Hill, Octavia', '2019-06-04', 43, 'https://www.gutenberg.org/ebooks/59674', 'en', 18290), +(55952, 'Dick Randall, the Young Athlete', 'Clark, Ellery H. (Ellery Harding)', '2012-01-02', 5, 'https://www.gutenberg.org/ebooks/38471', 'en', 12848), +(55953, 'The Truth About Tristrem Varick: A Novel', 'Saltus, Edgar', '2010-07-07', 22, 'https://www.gutenberg.org/ebooks/33099', 'en', 61), +(55954, 'Haw-Ho-Noo; Or, Records of a Tourist', 'Lanman, Charles', '2017-01-11', 5, 'https://www.gutenberg.org/ebooks/53940', 'en', 1110), +(55955, 'John F. Kennedy\'s Inaugural Address', 'Kennedy, John F. (John Fitzgerald)', '1973-11-01', 250, 'https://www.gutenberg.org/ebooks/3', 'en', 9921), +(55956, 'The Aeroplane', 'Harper, Harry', '2014-05-30', 20, 'https://www.gutenberg.org/ebooks/45825', 'en', 927), +(55957, 'Die Familie Selicke: Drama in drei Aufzügen', 'Holz, Arno', '2016-08-25', 12, 'https://www.gutenberg.org/ebooks/52892', 'de', 5137), +(55958, 'White Lightning', 'Lewis, Edwin Herbert', '2019-01-01', 11, 'https://www.gutenberg.org/ebooks/58594', 'en', 5114), +(55959, 'The Three Midshipmen', 'Kingston, William Henry Giles', '2008-03-12', 25, 'https://www.gutenberg.org/ebooks/24812', 'en', 2126), +(55960, 'The Wanderer; or, Female Difficulties (Volume 3 of 5)', 'Burney, Fanny', '2011-09-15', 33, 'https://www.gutenberg.org/ebooks/37439', 'en', 2564), +(55961, 'The Works of Francis Maitland Balfour, Volume 3 (of 4)\r\nA Treatise on Comparative Embryology: Vertebrata', 'Balfour, Francis M. (Francis Maitland)', '2014-02-26', 10, 'https://www.gutenberg.org/ebooks/45019', 'en', 4745), +(55962, 'Under the Big Dipper', 'Dery, Desiderius George', '2019-05-06', 16, 'https://www.gutenberg.org/ebooks/59446', 'en', 6240), +(55963, 'In the Wars of the Roses: A Story for the Young', 'Everett-Green, Evelyn', '2005-05-05', 19, 'https://www.gutenberg.org/ebooks/15769', 'en', 18291), +(55964, 'From Sea to Sea; Letters of Travel', 'Kipling, Rudyard', '2010-06-25', 56, 'https://www.gutenberg.org/ebooks/32977', 'en', 1960), +(55965, 'El Capitán Veneno\nThe Hispanic Series', 'Alarcón, Pedro Antonio de', '2009-08-19', 54, 'https://www.gutenberg.org/ebooks/29731', 'es', 61), +(55966, 'Prince Zilah — Volume 1', 'Claretie, Jules', '2003-04-01', 11, 'https://www.gutenberg.org/ebooks/3927', 'en', 560), +(55967, 'Rural Architecture\nBeing a Complete Description of Farm Houses, Cottages, and Out Buildings', 'Allen, Lewis Falley', '2006-12-03', 171, 'https://www.gutenberg.org/ebooks/19998', 'en', 2800), +(55968, 'Queen Victoria, her girlhood and womanhood', 'Greenwood, Grace', '2004-09-01', 15, 'https://www.gutenberg.org/ebooks/6469', 'en', 7002), +(55969, 'The Ghost', 'O\'Connor, William Douglas', '2008-10-05', 33, 'https://www.gutenberg.org/ebooks/26779', 'en', 585), +(55970, 'The Boy Trapper', 'Castlemon, Harry', '2006-03-29', 10, 'https://www.gutenberg.org/ebooks/18076', 'en', 388), +(55971, 'Suomalaisia', 'Wainio, Niilo E.', '2017-03-14', 3, 'https://www.gutenberg.org/ebooks/54359', 'fi', 1171), +(55972, 'Jude the Obscure', 'Hardy, Thomas', '2005-12-01', 7, 'https://www.gutenberg.org/ebooks/9421', 'en', 2815), +(55973, 'Myth and Science\nAn Essay', 'Vignoli, Tito', '2006-02-19', 20, 'https://www.gutenberg.org/ebooks/17802', 'en', 11307), +(55974, 'The Mikirs', 'Stack, Edward', '2015-04-14', 13, 'https://www.gutenberg.org/ebooks/48706', 'en', 18292), +(55975, 'A History of Architecture in all Countries, Volume 1, 3rd ed.\nFrom the Earliest Times to the Present Day', 'Fergusson, James', '2017-11-01', 16, 'https://www.gutenberg.org/ebooks/55871', 'en', 10026), +(55976, 'The Cave Twins', 'Perkins, Lucy Fitch', '2009-03-28', 22, 'https://www.gutenberg.org/ebooks/28425', 'en', 309), +(55977, 'Das höllische Automobil: Novellen', 'Bierbaum, Otto Julius', '2013-10-08', 10, 'https://www.gutenberg.org/ebooks/43914', 'de', 1212), +(55978, 'Friedrich Nietzsche', 'Brandes, Georg', '2014-12-08', 37, 'https://www.gutenberg.org/ebooks/47588', 'en', 18293), +(55979, 'Heroines That Every Child Should Know\nTales for Young People of the World\'s Heroines of All Ages', NULL, '2011-04-29', 49, 'https://www.gutenberg.org/ebooks/35994', 'en', 18294), +(55980, 'In the Year 2889', 'Verne, Michel', '2006-09-23', 233, 'https://www.gutenberg.org/ebooks/19362', 'en', 179), +(55981, 'The Women of The American Revolution, Vol. 2', 'Ellet, E. F. (Elizabeth Fries)', '2015-07-10', 11, 'https://www.gutenberg.org/ebooks/49412', 'en', 3643), +(55982, 'Pieni helmivyö\nSuomen runoja koulunuorisolle', NULL, '2007-10-08', 7, 'https://www.gutenberg.org/ebooks/22923', 'fi', 1171), +(55983, 'Euthenics, the science of controllable environment\r\nA plea for better living conditions as a first step toward higher human efficiency', 'Richards, Ellen H. (Ellen Henrietta)', '2010-03-05', 21, 'https://www.gutenberg.org/ebooks/31508', 'en', 18295), +(55984, 'The Revolutions of Time', 'Dunn, Jonathan', '2005-08-01', 29, 'https://www.gutenberg.org/ebooks/8735', 'en', 26), +(55985, 'Jasper', 'Molesworth, Mrs.', '2013-07-08', 11, 'https://www.gutenberg.org/ebooks/43128', 'en', 389), +(55986, 'Der Todesgruß der Legionen, 2. Band', 'Samarow, Gregor', '2004-10-06', 9, 'https://www.gutenberg.org/ebooks/13658', 'de', 18296), +(55987, 'Robert Tournay: A Romance of the French Revolution', 'Sage, William', '2011-01-04', 71, 'https://www.gutenberg.org/ebooks/34846', 'en', 248), +(55988, 'Fantastic Fables', 'Bierce, Ambrose', '1995-12-01', 180, 'https://www.gutenberg.org/ebooks/374', 'en', 9933), +(55989, 'Successful Exploration Through the Interior of Australia\r\nFrom Melbourne To The Gulf Of Carpentaria', 'Wills, William John', '2004-06-01', 34, 'https://www.gutenberg.org/ebooks/5816', 'en', 18297), +(55990, 'Les français peints par eux-mêmes, tome 1', NULL, '2012-05-22', 35, 'https://www.gutenberg.org/ebooks/39765', 'fr', 3093), +(55991, 'The De Coverley Papers, From \'The Spectator\'', 'Steele, Richard, Sir', '2007-02-22', 57, 'https://www.gutenberg.org/ebooks/20648', 'en', 472), +(55992, 'The Ivory Workers of the Middle Ages', 'Cust, Anna Maria Elizabeth', '2019-01-22', 4, 'https://www.gutenberg.org/ebooks/58752', 'en', 18298), +(55993, 'Venus. To the Venus of Melos', 'Rodin, Auguste', '2019-06-05', 42, 'https://www.gutenberg.org/ebooks/59680', 'en', 4135), +(55994, 'Wonder Stories of Travel', 'Brown, E. E. (Emma Elizabeth)', '2016-06-08', 33, 'https://www.gutenberg.org/ebooks/52268', 'en', 885), +(55995, 'A Narrative of a Nine Months\' Residence in New Zealand in 1827', 'Earle, Augustus', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/11933', 'en', 3572), +(55996, 'Ancient Pagan and Modern Christian Symbolism\r\nWith an Essay on Baal Worship, on the Assyrian Sacred \"Grove,\" and Other Allied Symbols', 'Inman, Thomas', '2012-01-03', 104, 'https://www.gutenberg.org/ebooks/38485', 'en', 4368), +(55997, 'Colin Clink, Volume 3 (of 3)', 'Hooton, Charles', '2014-02-14', 20, 'https://www.gutenberg.org/ebooks/44903', 'en', 18299), +(55998, 'The Making of the Great West, 1512-1883', 'Drake, Samuel Adams', '2018-07-17', 13, 'https://www.gutenberg.org/ebooks/57528', 'en', 3403), +(55999, 'The South Seaman\nAn Incident In The Sea Story Of Australia - 1901', 'Becke, Louis', '2008-04-19', 13, 'https://www.gutenberg.org/ebooks/25108', 'en', 18300), +(56000, 'Kuningas Henrik Neljäs I', 'Shakespeare, William', '2012-04-28', 21, 'https://www.gutenberg.org/ebooks/39557', 'fi', 1665), +(56001, 'Eclectic Magazine of Foreign Literature, Science, and Art, January 1885', 'Various', '2016-08-21', 4, 'https://www.gutenberg.org/ebooks/52866', 'en', 883), +(56002, 'Index of the Project Gutenberg Works of E. W. Hornung', 'Hornung, E. W. (Ernest William)', '2018-12-28', 9, 'https://www.gutenberg.org/ebooks/58560', 'en', 198), +(56003, 'L\'Illustration, No. 0004, 25 Mars 1843', 'Various', '2010-10-10', 8, 'https://www.gutenberg.org/ebooks/33851', 'fr', 150), +(56004, 'The American Missionary — Volume 32, No. 05, May, 1878', 'Various', '2016-10-01', 4, 'https://www.gutenberg.org/ebooks/53188', 'en', 562), +(56005, 'The Satyricon — Volume 01: Introduction', 'Petronius Arbiter', '2004-06-01', 36, 'https://www.gutenberg.org/ebooks/5218', 'en', 10146), +(56006, 'Portugal e Marrocos perante a historia e a politica europea', 'Testa, Carlos', '2008-06-30', 5, 'https://www.gutenberg.org/ebooks/25934', 'pt', 18301), +(56007, 'Harper\'s New Monthly Magazine, No. 22, March, 1852, Volume 4.', NULL, '2010-06-26', 21, 'https://www.gutenberg.org/ebooks/32983', 'en', 883), +(56008, 'The American Missionary — Volume 43, No. 05, May, 1889', 'Various', '2005-06-23', 12, 'https://www.gutenberg.org/ebooks/16118', 'en', 395), +(56009, 'Chronicles of England, Scotland and Ireland (2 of 6): England (09 of 12)\r\nEdward the First, Surnamed Longshanks, the Eldest Sonne of Henrie the Third', 'Holinshed, Raphael', '2014-08-24', 40, 'https://www.gutenberg.org/ebooks/46668', 'en', 4746), +(56010, 'The Man with a Shadow', 'Fenn, George Manville', '2010-11-08', 14, 'https://www.gutenberg.org/ebooks/34248', 'en', 61), +(56011, 'The Commonwealth of Oceana', 'Harrington, James', '2001-09-01', 41, 'https://www.gutenberg.org/ebooks/2801', 'en', 1828), +(56012, 'Astounding Stories of Super-Science February 1930', 'Various', '2009-04-26', 259, 'https://www.gutenberg.org/ebooks/28617', 'en', 842), +(56013, 'An Alphabetical Catalogue of New Works in General and Miscellaneous Literature, Published by Messrs. Longman, Brown, Green, and Longmans, Paternoster Row, London', 'Longman, Brown, Green, and Longmans', '2015-08-05', 6, 'https://www.gutenberg.org/ebooks/49620', 'en', 18302), +(56014, 'Chambers\'s Edinburgh Journal, No. 425\nVolume 17, New Series, February 21, 1852', 'Various', '2005-10-23', 16, 'https://www.gutenberg.org/ebooks/16924', 'en', 18), +(56015, 'Ten Great Events in History', 'Johonnot, James', '2005-07-01', 111, 'https://www.gutenberg.org/ebooks/8507', 'en', 7868), +(56016, 'The Red Conspiracy', 'Mereto, Joseph J.', '2006-08-31', 31, 'https://www.gutenberg.org/ebooks/19150', 'en', 17303), +(56017, 'A Little Princess\r\nBeing the whole story of Sara Crewe now told for the first time', 'Burnett, Frances Hodgson', '1994-07-01', 1365, 'https://www.gutenberg.org/ebooks/146', 'en', 1079), +(56018, 'Marilia de Dirceo', 'Gonzaga, Tomás António', '2006-03-30', 12, 'https://www.gutenberg.org/ebooks/18082', 'pt', 8), +(56019, 'The Bicyclers and Three Other Farces', 'Bangs, John Kendrick', '2004-03-01', 31, 'https://www.gutenberg.org/ebooks/11759', 'en', 907), +(56020, 'Les primitifs: Études d\'ethnologie comparée', 'Reclus, Élie', '2011-08-02', 9, 'https://www.gutenberg.org/ebooks/36947', 'fr', 12846), +(56021, 'The Dramas of Victor Hugo: Mary Tudor, Marion de Lorme, Esmeralda', 'Hugo, Victor', '2012-03-14', 24, 'https://www.gutenberg.org/ebooks/39133', 'en', 3521), +(56022, 'The Moon Destroyers', 'Ruch, Monroe K.', '2012-10-11', 26, 'https://www.gutenberg.org/ebooks/41029', 'en', 3828), +(56023, 'The Camp Fire Girls on the March; Or, Bessie King\'s Test of Friendship', 'Stewart, Jane L.', '2007-03-15', 22, 'https://www.gutenberg.org/ebooks/20822', 'en', 622), +(56024, 'The Ranch Girls at Rainbow Lodge', 'Vandercook, Margaret', '2010-08-11', 21, 'https://www.gutenberg.org/ebooks/33409', 'en', 315), +(56025, 'English Hours', 'James, Henry', '2019-02-22', 52, 'https://www.gutenberg.org/ebooks/58938', 'en', 776), +(56026, 'Sieluntaisteluita', 'Roos, Mathilda', '2011-10-31', 18, 'https://www.gutenberg.org/ebooks/37895', 'fi', 2168), +(56027, 'Stories of Old Greece and Rome', 'Baker, Emilie K. (Emilie Kip)', '2014-04-25', 125, 'https://www.gutenberg.org/ebooks/45489', 'en', 18303), +(56028, 'Le web, une encyclopédie multilingue', 'Lebert, Marie', '2013-01-10', 17, 'https://www.gutenberg.org/ebooks/41815', 'fr', 2069), +(56029, 'Observations on Coroners', 'Hewitt, William', '2018-10-15', 4, 'https://www.gutenberg.org/ebooks/58104', 'en', 18304), +(56030, 'Two Tracts on Civil Liberty, the War with America, and the Debts and Finances of the Kingdom\nWith a General Introduction and Supplement', 'Price, Richard', '2018-09-24', 11, 'https://www.gutenberg.org/ebooks/57970', 'en', 18305), +(56031, 'Romance of California Life\r\nIllustrated by Pacific Slope Stories, Thrilling, Pathetic and Humorous', 'Habberton, John', '2004-10-22', 28, 'https://www.gutenberg.org/ebooks/13832', 'en', 211), +(56032, 'Men of Mawm', 'Riley, W. (William)', '2015-11-02', 10, 'https://www.gutenberg.org/ebooks/50369', 'en', 1445), +(56033, 'The Cruise of the Betsey\nor, A Summer Ramble Among the Fossiliferous Deposits of the Hebrides. With Rambles of a Geologist or, Ten Thousand Miles Over the Fossiliferous Deposits of Scotland', 'Miller, Hugh', '2009-03-08', 19, 'https://www.gutenberg.org/ebooks/28273', 'en', 18306), +(56034, 'From Edinburgh to India & Burmah', 'Burn Murdoch, W. G. (William Gordon)', '2007-09-24', 28, 'https://www.gutenberg.org/ebooks/22749', 'en', 1354), +(56035, 'The Chinese Boy and Girl', 'Headland, Isaac Taylor', '1996-05-01', 36, 'https://www.gutenberg.org/ebooks/522', 'en', 15747), +(56036, 'Trent\'s Trust, and Other Stories', 'Harte, Bret', '2006-05-17', 24, 'https://www.gutenberg.org/ebooks/2459', 'en', 315), +(56037, 'Patty\'s Perversities', 'Bates, Arlo', '2015-03-01', 14, 'https://www.gutenberg.org/ebooks/48396', 'en', 770), +(56038, 'The Dim Lantern', 'Bailey, Temple', '2019-08-11', 558, 'https://www.gutenberg.org/ebooks/60090', 'en', 757), +(56039, 'Fundamental Philosophy, Vol. 2 (of 2)', 'Balmes, Jaime Luciano', '2015-06-20', 14, 'https://www.gutenberg.org/ebooks/49244', 'en', 3451), +(56040, 'Handbook of Universal Literature, From the Best and Latest Authorities', 'Botta, Anne C. Lynch (Anne Charlotte Lynch)', '2005-05-01', 15, 'https://www.gutenberg.org/ebooks/8163', 'en', 2156), +(56041, 'American Historical and Literary Curiosities, Part 17.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 10, 'https://www.gutenberg.org/ebooks/7917', 'en', 453), +(56042, 'Russia, as Seen and Described by Famous Writers', NULL, '2006-10-14', 15, 'https://www.gutenberg.org/ebooks/19534', 'en', 9293), +(56043, 'God and Mr. Wells: A Critical Examination of \'God the Invisible King\'', 'Archer, William', '2010-01-07', 23, 'https://www.gutenberg.org/ebooks/30882', 'en', 18307), +(56044, 'In the Village of Viger', 'Scott, Duncan Campbell', '2015-05-19', 11, 'https://www.gutenberg.org/ebooks/48998', 'en', 2261), +(56045, 'Selections from the Poems and Plays of Robert Browning', 'Browning, Robert', '2009-02-09', 27, 'https://www.gutenberg.org/ebooks/28041', 'en', 2346), +(56046, 'Wiesław\r\nsielanka krakowska w pięciu aktach', 'Brodziński, Kazimierz', '2009-01-19', 13, 'https://www.gutenberg.org/ebooks/27835', 'pl', 8), +(56047, 'Good Sense', 'Holbach, Paul Henri Thiry, baron d\'', '2005-01-01', 43, 'https://www.gutenberg.org/ebooks/7319', 'en', 471), +(56048, 'Dream Town', 'Slesar, Henry', '2009-06-21', 37, 'https://www.gutenberg.org/ebooks/29193', 'en', 580), +(56049, 'Did Betsey Ross Design the Flag of the United States of America?\r\nPublication of the Scottsville Literary Society', 'Hanford, Franklin', '2016-01-31', 11, 'https://www.gutenberg.org/ebooks/51089', 'en', 18308), +(56050, 'Encyclopaedia Britannica, 11th Edition, \"Columbus\" to \"Condottiere\"\r\nVolume 6, Slice 7', 'Various', '2010-04-11', 32, 'https://www.gutenberg.org/ebooks/31950', 'en', 1081), +(56051, 'Virvatulten tarinoita: Kertomus', 'Petersen, Marie', '2016-01-19', 8, 'https://www.gutenberg.org/ebooks/50967', 'fi', 6168), +(56052, 'Artemis to Actaeon and Other Verses', 'Wharton, Edith', '2005-11-01', 1, 'https://www.gutenberg.org/ebooks/9283', 'en', 994), +(56053, 'Love of Life, and Other Stories', 'London, Jack', '1996-11-01', 296, 'https://www.gutenberg.org/ebooks/710', 'en', 315), +(56054, 'Notes and Queries, Number 212, November 19, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 12, 'https://www.gutenberg.org/ebooks/27009', 'en', 105), +(56055, 'The Biotic Associations of Cockroaches', 'Willis, Edwin R.', '2014-09-07', 27, 'https://www.gutenberg.org/ebooks/46802', 'en', 17361), +(56056, 'Social Life in the Reign of Queen Anne, Taken from Original Sources', 'Ashton, John', '2017-08-26', 15, 'https://www.gutenberg.org/ebooks/55429', 'en', 13776), +(56057, 'Brood of the Witch-Queen', 'Rohmer, Sax', '2006-11-03', 116, 'https://www.gutenberg.org/ebooks/19706', 'en', 4923), +(56058, 'Helmivyö: Suomalaista runoutta', NULL, '2015-05-29', 11, 'https://www.gutenberg.org/ebooks/49076', 'fi', 1171), +(56059, 'The Bible, Douay-Rheims, Book 51: Acts\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8351', 'en', 5995), +(56060, 'The Memoirs of Jacques Casanova de Seingalt, Vol. I (of VI), \"Venetian Years\"\r\nThe First Complete and Unabridged English Translation, Illustrated with Old Engravings', 'Casanova, Giacomo', '2012-03-29', 70, 'https://www.gutenberg.org/ebooks/39301', 'en', 4164), +(56061, 'Our Foreigners: A Chronicle of Americans in the Making', 'Orth, Samuel Peter', '2005-01-28', 36, 'https://www.gutenberg.org/ebooks/14825', 'en', 9642), +(56062, 'Visionen und andere phantastische Erzählungen', 'Turgenev, Ivan Sergeevich', '2011-06-07', 17, 'https://www.gutenberg.org/ebooks/36349', 'de', 85), +(56063, 'The Sheepfold and the Common; Or, Within and Without. Vol. 2 (of 2)', 'East, Timothy', '2014-01-27', 16, 'https://www.gutenberg.org/ebooks/44769', 'en', 1130), +(56064, 'The Harvard Classics, Volume 49, Epic and Saga\nWith Introductions And Notes', NULL, '2004-11-11', 32, 'https://www.gutenberg.org/ebooks/14019', 'en', 1999), +(56065, 'Sea Scouts up-Channel', 'Westerman, Percy F. (Percy Francis)', '2018-11-24', 11, 'https://www.gutenberg.org/ebooks/58336', 'en', 16016), +(56066, 'Serge Panine — Complete', 'Ohnet, Georges', '2004-10-30', 29, 'https://www.gutenberg.org/ebooks/3918', 'en', 58), +(56067, 'Poems of Pleasure', 'Wilcox, Ella Wheeler', '2016-03-31', 9, 'https://www.gutenberg.org/ebooks/51614', 'en', 350), +(56068, 'Fishing and Shooting Sketches', 'Cleveland, Grover', '2011-02-21', 13, 'https://www.gutenberg.org/ebooks/35351', 'en', 1945), +(56069, 'Widger\'s Quotes and Images from An Attic Philosopher in Paris by Émile Souvestre\r\nThe French Immortals: Quotes and Images', 'Souvestre, Émile', '2009-07-13', 34, 'https://www.gutenberg.org/ebooks/7584', 'en', 2391), +(56070, 'Mirk Abbey, Volume 1 (of 3)', 'Payn, James', '2014-12-24', 19, 'https://www.gutenberg.org/ebooks/47771', 'en', 61), +(56071, 'History of Modern Philosophy', 'Benn, Alfred William', '2010-11-11', 160, 'https://www.gutenberg.org/ebooks/34283', 'en', 18309), +(56072, 'The Prairie Wife', 'Stringer, Arthur', '2006-07-19', 18, 'https://www.gutenberg.org/ebooks/18875', 'en', 5477), +(56073, 'Public Opinion', 'Lippmann, Walter', '2004-09-01', 574, 'https://www.gutenberg.org/ebooks/6456', 'en', 1771), +(56074, 'Semiramis, and Other Plays', 'Dargan, Olive Tilford', '2007-10-29', 14, 'https://www.gutenberg.org/ebooks/23234', 'en', 18310), +(56075, 'An Elementary Course in Synthetic Projective Geometry', 'Lehmer, Derrick Norman', '2005-11-04', 54, 'https://www.gutenberg.org/ebooks/17001', 'en', 18311), +(56076, 'The People for Whom Shakespeare Wrote', 'Warner, Charles Dudley', '2004-12-05', 13, 'https://www.gutenberg.org/ebooks/3124', 'en', 12536), +(56077, 'Our Little Dutch Cousin', 'McManus, Blanche', '2013-02-26', 9, 'https://www.gutenberg.org/ebooks/42203', 'en', 18312), +(56078, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 08\r\nMasterpieces of German Literature Translated into English', NULL, '2004-06-01', 101, 'https://www.gutenberg.org/ebooks/12573', 'en', 652), +(56079, '分甘余話', 'Wang, Shizhen', '2008-10-01', 11, 'https://www.gutenberg.org/ebooks/26746', 'zh', 5195), +(56080, 'Winter Sports in Switzerland', 'Benson, E. F. (Edward Frederic)', '2019-08-23', 99, 'https://www.gutenberg.org/ebooks/60153', 'en', NULL), +(56081, 'Oeuvres Completes de Rollin Tome 1\nHistoire Ancienne Tome 1', 'Rollin, Charles', '2009-01-03', 15, 'https://www.gutenberg.org/ebooks/27694', 'fr', 1368), +(56082, 'The Diary of an Ennuyée', 'Jameson, Mrs. (Anna)', '2006-03-26', 17, 'https://www.gutenberg.org/ebooks/18049', 'en', 1896), +(56083, 'A Colonial Reformer, Vol. 3 (of 3)', 'Boldrewood, Rolf', '2017-03-15', 19, 'https://www.gutenberg.org/ebooks/54366', 'en', 13959), +(56084, 'Kynnyksellä: Runoja', 'Kaatra, Kössi', '2015-04-18', 31, 'https://www.gutenberg.org/ebooks/48739', 'fi', 1171), +(56085, 'The Missourian', 'Lyle, Eugene P. (Eugene Percy)', '2009-12-07', 19, 'https://www.gutenberg.org/ebooks/30623', 'en', 18313), +(56086, 'Lesser Hippias', 'Plato (spurious and doubtful works)', '1999-03-01', 37, 'https://www.gutenberg.org/ebooks/1673', 'en', 2286), +(56087, 'Journal of a Horticultural Tour through Germany, Belgium, and part of France, in the Autumn of 1835\r\nTo which is added, a Catalogue of the different Species of Cacteæ in the Gardens at Woburn Abbey.', 'Forbes, James', '2012-08-21', 17, 'https://www.gutenberg.org/ebooks/40554', 'en', 18314), +(56088, 'Kalitan, Our Little Alaskan Cousin', 'Nixon-Roulet, Mary F.', '2003-11-01', 28, 'https://www.gutenberg.org/ebooks/10224', 'en', 18315), +(56089, 'Zodiac Town\nThe Rhymes of Amos and Ann', 'Turner, Nancy Byrd', '2007-12-24', 12, 'https://www.gutenberg.org/ebooks/24011', 'en', 18316), +(56090, 'Annali d\'Italia, vol. 6\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2018-01-25', 15, 'https://www.gutenberg.org/ebooks/56431', 'it', 6107), +(56091, 'La Sorcière', 'Michelet, Jules', '2012-11-25', 42, 'https://www.gutenberg.org/ebooks/41486', 'fr', 17373), +(56092, 'Historia da Grecia', 'Costa, Fernandes', '2010-04-29', 14, 'https://www.gutenberg.org/ebooks/32174', 'pt', 6424), +(56093, 'Mr. Dooley Says', 'Dunne, Finley Peter', '2005-01-13', 31, 'https://www.gutenberg.org/ebooks/14684', 'en', 40), +(56094, 'Henley\'s Twentieth Century Formulas, Recipes and Processes', NULL, '2016-09-25', 134, 'https://www.gutenberg.org/ebooks/53143', 'en', 11855), +(56095, 'On the Field of Glory: An Historical Novel of the Time of King John Sobieski', 'Sienkiewicz, Henryk', '2011-09-12', 21, 'https://www.gutenberg.org/ebooks/37406', 'en', 18317), +(56096, 'The Four Corners Abroad', 'Blanchard, Amy Ella', '2014-02-27', 14, 'https://www.gutenberg.org/ebooks/45026', 'en', 13835), +(56097, 'The Nether World', 'Gissing, George', '2003-08-01', 72, 'https://www.gutenberg.org/ebooks/4301', 'en', 1079), +(56098, 'Octavia: Tragedia em 5 Actos', 'Alfieri, Vittorio', '2007-05-22', 19, 'https://www.gutenberg.org/ebooks/21563', 'pt', 1298), +(56099, 'Enkelten suojatit: Lastuja lapsista ja heidän kohtaloistaan', 'Sillanpää, Frans Eemil', '2019-05-11', 1, 'https://www.gutenberg.org/ebooks/59479', 'fi', 175), +(56100, 'An essay on the foundations of geometry', 'Russell, Bertrand', '2016-05-17', 100, 'https://www.gutenberg.org/ebooks/52091', 'en', 13405), +(56101, 'Der Kalendermann vom Veitsberg: Eine Erzählung für das Volk', 'Glaubrecht, O. (Otto)', '2005-05-03', 7, 'https://www.gutenberg.org/ebooks/15756', 'de', 12589), +(56102, 'Henri Poincaré: Biographie, Bibliographie Analytique des Écrits', 'Lebon, Ernest', '2010-06-23', 20, 'https://www.gutenberg.org/ebooks/32948', 'fr', 18318), +(56103, 'Punchinello, Volume 1, No. 21, August 20, 1870', 'Various', '2003-11-01', 13, 'https://www.gutenberg.org/ebooks/10016', 'en', 372), +(56104, '小爾雅', 'Kong, Fu', '2008-01-10', 15, 'https://www.gutenberg.org/ebooks/24223', 'zh', 18319), +(56105, 'The Story of an African Farm', 'Schreiner, Olive', '1998-09-01', 139, 'https://www.gutenberg.org/ebooks/1441', 'en', 5500), +(56106, 'On the Heights: A Novel', 'Auerbach, Berthold', '2010-07-30', 18, 'https://www.gutenberg.org/ebooks/33294', 'en', 5101), +(56107, 'Nationalism', 'Tagore, Rabindranath', '2012-09-15', 369, 'https://www.gutenberg.org/ebooks/40766', 'en', 11831), +(56108, 'Keep Your Shape', 'Sheckley, Robert', '2010-05-12', 72, 'https://www.gutenberg.org/ebooks/32346', 'en', 26), +(56109, 'A Boy in the Peninsular War\r\nThe Services, Adventures and Experiences of Robert Blakeney', 'Blakeney, Robert', '2018-02-19', 9, 'https://www.gutenberg.org/ebooks/56603', 'en', 1360), +(56110, 'Raison et sensibilité, ou les deux manières d\'aimer (Tome 4)', 'Austen, Jane', '2011-10-05', 41, 'https://www.gutenberg.org/ebooks/37634', 'fr', 13613), +(56111, 'History of the Australian Bushrangers', 'Boxall, George', '2019-02-01', 8, 'https://www.gutenberg.org/ebooks/58799', 'en', 18320), +(56112, 'The Haslemere Museum Gazette, Vol. 1, No. 2, June 1906\nA Journal of Objective Education and Field-Study', 'Various', '2016-10-26', 13, 'https://www.gutenberg.org/ebooks/53371', 'en', 1584), +(56113, '奥の細道', 'Matsuo, Bashō', '2007-02-03', 72, 'https://www.gutenberg.org/ebooks/20683', 'ja', 118), +(56114, 'The Middy and the Moors: An Algerine Story', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 23, 'https://www.gutenberg.org/ebooks/21751', 'en', 323), +(56115, 'The Philippine Islands, 1493-1898 — Volume 18 of 55 \r\n1617-1620\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-04-06', 50, 'https://www.gutenberg.org/ebooks/15564', 'en', 8515), +(56116, 'The Russian Grandmother\'s Wonder Tales', 'Krauss, Friedrich S. (Friedrich Salomo)', '2014-03-25', 25, 'https://www.gutenberg.org/ebooks/45214', 'en', 11506), +(56117, 'Diary of Samuel Pepys — Volume 15: March/April 1661-62', 'Pepys, Samuel', '2004-11-29', 13, 'https://www.gutenberg.org/ebooks/4133', 'en', 201), +(56118, 'Raison et sensibilité, ou les deux manières d\'aimer (Tome 3)', 'Austen, Jane', '2011-02-04', 34, 'https://www.gutenberg.org/ebooks/35163', 'fr', 154), +(56119, 'Journal of the Proceedings of the Linnean Society - Vol. 4\r\nZoology', 'Linnean Society of London', '2014-08-03', 6, 'https://www.gutenberg.org/ebooks/46491', 'en', 3176), +(56120, 'Henry D. Thoreau', 'Sanborn, F. B. (Franklin Benjamin)', '2016-03-12', 24, 'https://www.gutenberg.org/ebooks/51426', 'en', 6476), +(56121, 'Five Hundred Dollars\nFirst published in the \"Century Magazine\"', 'Chaplin, Heman White', '2007-10-12', 10, 'https://www.gutenberg.org/ebooks/23006', 'en', 13), +(56122, 'Antiquités d\'Herculanum, Tome III.\r\nPeintures', 'Piroli, Tommaso', '2005-12-05', 10, 'https://www.gutenberg.org/ebooks/17233', 'fr', 10954), +(56123, 'Ett land i kamp: Dikter', 'Hemmer, Jarl', '2014-12-05', 10, 'https://www.gutenberg.org/ebooks/47543', 'sv', 18321), +(56124, 'Famous Composers and Their Works, Vol. 1', NULL, '2017-06-23', 17, 'https://www.gutenberg.org/ebooks/54968', 'en', 250), +(56125, 'The Story of a Child', 'Loti, Pierre', '2006-04-22', 26, 'https://www.gutenberg.org/ebooks/6664', 'en', 2811), +(56126, 'Risen from the Ranks; Or, Harry Walton\'s Success', 'Alger, Horatio, Jr.', '2004-06-25', 42, 'https://www.gutenberg.org/ebooks/12741', 'en', 195), +(56127, 'Poems', 'Dowden, Edward', '2017-07-10', 12, 'https://www.gutenberg.org/ebooks/55086', 'en', 1136), +(56128, 'The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar', 'Leblanc, Maurice', '2008-09-01', 16, 'https://www.gutenberg.org/ebooks/26574', 'en', 179), +(56129, 'How Members of Congress Are Bribed', 'Moore, J. Hampton (Joseph Hampton)', '2002-07-01', 12, 'https://www.gutenberg.org/ebooks/3316', 'en', 8757), +(56130, 'Διονυσίου Σολωμού - Άπαντα τα Ευρισκόμενα', 'Solomos, Dionysios', '2013-02-06', 85, 'https://www.gutenberg.org/ebooks/42031', 'el', 8746), +(56131, 'English as she is spoke; or, a jest in sober earnest', 'Fonseca, José da', '2009-11-07', 91, 'https://www.gutenberg.org/ebooks/30411', 'en', 10922), +(56132, 'Vision and Design', 'Fry, Roger', '2017-02-12', 68, 'https://www.gutenberg.org/ebooks/54154', 'en', 787), +(56133, 'The Theory of Numbers', 'Carmichael, R. D. (Robert Daniel)', '2004-10-10', 180, 'https://www.gutenberg.org/ebooks/13693', 'en', 6206), +(56134, 'Jewish Theology, Systematically and Historically Considered', 'Kohler, Kaufmann', '2010-06-06', 33, 'https://www.gutenberg.org/ebooks/32722', 'en', 18322), +(56135, 'Lord Kitchener', 'Chesterton, G. K. (Gilbert Keith)', '2008-06-15', 48, 'https://www.gutenberg.org/ebooks/25795', 'en', 18323), +(56136, 'The Game Fish, of the Northern States and British Provinces\r\nWith an account of the salmon and sea-trout fishing of Canada and New Brunswick, together with simple directions for tying artificial flies, etc., etc.', 'Roosevelt, Robert Barnwell', '2017-12-30', 27, 'https://www.gutenberg.org/ebooks/56267', 'en', 12776), +(56137, 'Arthurian Chronicles: Roman de Brut', 'Wace', '2003-12-01', 71, 'https://www.gutenberg.org/ebooks/10472', 'en', 5637), +(56138, 'The Standard Operaglass\nDetailed Plots of One Hundred and Fifty-one Celebrated Operas', 'Annesley, Charles, pseud.', '2009-01-14', 21, 'https://www.gutenberg.org/ebooks/24647', 'en', 5808), +(56139, 'Essays; Political, Economical, and Philosophical — Volume 1', 'Rumford, Benjamin, Graf von', '1997-08-01', 20, 'https://www.gutenberg.org/ebooks/1025', 'en', 5534), +(56140, 'La fine dell\'amore', 'Bracco, Roberto', '2011-12-04', 22, 'https://www.gutenberg.org/ebooks/38218', 'it', 407), +(56141, 'Sporting Society; or, Sporting Chat and Sporting Memories, Vol. 2 (of 2)', NULL, '2012-07-23', 24, 'https://www.gutenberg.org/ebooks/40302', 'en', 18324), +(56142, 'The Moving Finger', 'Gaunt, Mary', '2007-05-05', 19, 'https://www.gutenberg.org/ebooks/21335', 'en', 129), +(56143, 'The Voyage of Governor Phillip to Botany Bay\r\nWith an Account of the Establishment of the Colonies of Port Jackson\r\nand Norfolk Island (1789)', 'Phillip, Arthur', '2005-02-18', 42, 'https://www.gutenberg.org/ebooks/15100', 'en', 18325), +(56144, 'Seeteufel: Abenteuer aus meinem Leben', 'Luckner, Felix, Graf von', '2014-05-17', 19, 'https://www.gutenberg.org/ebooks/45670', 'de', 10034), +(56145, 'Der Unterkiefer des Homo Heidelbergensis: Aus den Sanden von Mauer bei Heidelberg', 'Schoetensack, Otto', '2011-06-11', 28, 'https://www.gutenberg.org/ebooks/36382', 'de', 1381), +(56146, 'The Idea of Progress: An Inguiry into Its Origin and Growth', 'Bury, J. B. (John Bagnell)', '2003-10-01', 80, 'https://www.gutenberg.org/ebooks/4557', 'en', 7427), +(56147, 'Caybigan', 'Hopper, James', '2011-08-29', 15, 'https://www.gutenberg.org/ebooks/37250', 'en', 18326), +(56148, 'The Emperor — Volume 03', 'Ebers, Georg', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/5485', 'en', 1814), +(56149, 'The Messengers', 'Davis, Richard Harding', '2006-05-12', 10, 'https://www.gutenberg.org/ebooks/1819', 'en', 61), +(56150, 'Sydän unhotettu: Komedia yhdessä näytöksessä', 'Putlitz, Gustav Heinrich Gans, Edler Herr von und zu', '2016-12-11', 15, 'https://www.gutenberg.org/ebooks/53715', 'fi', 4568), +(56151, 'More Russian Picture Tales', 'Karrik, Valerian Viliamovich', '2007-11-12', 123, 'https://www.gutenberg.org/ebooks/23462', 'en', 10103), +(56152, 'The Invasions of England', 'Home, Gordon', '2015-05-13', 26, 'https://www.gutenberg.org/ebooks/48953', 'en', 8761), +(56153, 'Belagerung von Mainz', 'Goethe, Johann Wolfgang von', '2006-02-01', 54, 'https://www.gutenberg.org/ebooks/17657', 'de', 11359), +(56154, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 20', 'Stevenson, Robert Louis', '2010-01-04', 24, 'https://www.gutenberg.org/ebooks/30849', 'en', 18327), +(56155, 'Vankien ystävä: Piirteitä Mathilda Wreden elämästä ja toiminnasta', 'Fogelberg, Evy', '2015-10-13', 9, 'https://www.gutenberg.org/ebooks/50190', 'fi', 18328), +(56156, 'Tradition, Principally with Reference to Mythology and the Law of Nations', 'Arundell of Wardour, John Francis Arundell, Baron', '2014-10-15', 26, 'https://www.gutenberg.org/ebooks/47127', 'en', 2332), +(56157, 'The Greek View of Life', 'Dickinson, G. Lowes (Goldsworthy Lowes)', '2004-07-01', 39, 'https://www.gutenberg.org/ebooks/6200', 'en', 16179), +(56158, 'Tales and Trails of Wakarusa', 'Harvey, Alexander Miller', '2011-03-06', 10, 'https://www.gutenberg.org/ebooks/35507', 'en', 18329), +(56159, 'The Nakimu Caves, Glacier Dominion Park, B. C.', 'Canada. National Parks Branch', '2016-01-26', 21, 'https://www.gutenberg.org/ebooks/51042', 'en', 18330), +(56160, 'Our Catholic Heritage in English Literature of Pre-Conquest Days', 'Hickey, Emily Henrietta', '2005-10-01', 13, 'https://www.gutenberg.org/ebooks/16785', 'en', 18331), +(56161, 'Lippincott\'s Magazine, September, 1885', 'Various', '2009-06-18', 10, 'https://www.gutenberg.org/ebooks/29158', 'en', 210), +(56162, 'Reminiscencies of a Confederate soldier of Co. C, 2nd Va. Cavalry', 'Peck, Rufus H.', '2015-09-05', 12, 'https://www.gutenberg.org/ebooks/49881', 'en', 83), +(56163, 'Princeton Stories', 'Williams, Jesse Lynch', '2013-08-28', 9, 'https://www.gutenberg.org/ebooks/43587', 'en', 18332), +(56164, 'Other Tales and Sketches\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 22, 'https://www.gutenberg.org/ebooks/9248', 'en', 3499), +(56165, 'Our Next-Door Neighbors', 'Maniates, Belle Kanaris', '2009-09-24', 24, 'https://www.gutenberg.org/ebooks/30075', 'en', 61), +(56166, 'The knife-grinder\'s budget of pictures & poetry, for boys and girls', 'Unknown', '2017-04-10', 4, 'https://www.gutenberg.org/ebooks/54530', 'en', 859), +(56167, 'A General History and Collection of Voyages and Travels — Volume 03\r\nArranged in Systematic Order: Forming a Complete History of the Origin and Progress of Navigation, Discovery, and Commerce, by Sea and Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/12325', 'en', 885), +(56168, 'O Olho de Vidro', 'Castelo Branco, Camilo', '2008-07-22', 8, 'https://www.gutenberg.org/ebooks/26110', 'pt', 18333), +(56169, 'The Student\'s Elements of Geology', 'Lyell, Charles, Sir', '2003-02-01', 69, 'https://www.gutenberg.org/ebooks/3772', 'en', 2535), +(56170, 'The Mystery of the Sea', 'Stoker, Bram', '2013-04-02', 120, 'https://www.gutenberg.org/ebooks/42455', 'en', 18334), +(56171, 'Clarissa: Preface, Hints of Prefaces, and Postscript', 'Richardson, Samuel', '2009-09-12', 24, 'https://www.gutenberg.org/ebooks/29964', 'en', 14816), +(56172, 'Private Spud Tamson', 'Campbell, R. W.', '2014-11-08', 17, 'https://www.gutenberg.org/ebooks/47315', 'en', 579), +(56173, 'Memoirs or Chronicle of the Fourth Crusade and the Conquest of Constantinople', 'Villehardouin, Geoffroi de', '2004-07-01', 55, 'https://www.gutenberg.org/ebooks/6032', 'en', 15901), +(56174, 'Ten Boys from History', 'Sweetser, Kate Dickinson', '2007-11-28', 53, 'https://www.gutenberg.org/ebooks/23650', 'en', 10065), +(56175, 'Excursions', 'Thoreau, Henry David', '2006-02-01', 121, 'https://www.gutenberg.org/ebooks/9846', 'en', 20), +(56176, 'Great Singers, Second Series\nMalibran To Titiens', 'Ferris, George T. (George Titus)', '2006-01-04', 9, 'https://www.gutenberg.org/ebooks/17465', 'en', 18161), +(56177, 'What Katy Did', 'Coolidge, Susan', '2005-09-01', 186, 'https://www.gutenberg.org/ebooks/8994', 'en', 31), +(56178, 'Novelleja ja Kertomuksia II', 'Auerbach, Berthold', '2016-02-22', 17, 'https://www.gutenberg.org/ebooks/51270', 'fi', 179), +(56179, 'The Buddha: A Drama in Five Acts and Four Interludes', 'Carus, Paul', '2007-09-27', 17, 'https://www.gutenberg.org/ebooks/22782', 'en', 18335), +(56180, 'The Gnostic Crucifixion', 'Mead, G. R. S. (George Robert Stow)', '2011-04-01', 53, 'https://www.gutenberg.org/ebooks/35735', 'en', 17209), +(56181, 'Through the Looking-Glass', 'Carroll, Lewis', '2008-06-25', 2182, 'https://www.gutenberg.org/ebooks/12', 'en', 10012), +(56182, 'A Translation of Octavia, a Latin Tragedy, with Notes and Introduction', NULL, '2017-05-11', 24, 'https://www.gutenberg.org/ebooks/54702', 'en', 15203), +(56183, 'Orpheus in Mayfair, and Other Stories and Sketches', 'Baring, Maurice', '2006-04-04', 30, 'https://www.gutenberg.org/ebooks/2492', 'en', 230), +(56184, 'Mabel\'s Mistake', 'Stephens, Ann S. (Ann Sophia)', '2009-10-13', 21, 'https://www.gutenberg.org/ebooks/30247', 'en', 61), +(56185, 'The Census in Moscow', 'Tolstoy, Leo, graf', '2002-11-01', 25, 'https://www.gutenberg.org/ebooks/3540', 'en', 3120), +(56186, 'Railway Adventures and Anecdotes: Extending over More Than Fifty Years', NULL, '2010-02-25', 16, 'https://www.gutenberg.org/ebooks/31395', 'en', 3931), +(56187, 'The Deserted City', 'Sherman, Francis', '2013-05-08', 17, 'https://www.gutenberg.org/ebooks/42667', 'en', 6193), +(56188, 'Excentriske Noveller', 'Bang, Herman', '2004-04-01', 12, 'https://www.gutenberg.org/ebooks/12117', 'da', 61), +(56189, 'Peterkin', 'Molesworth, Mrs.', '2008-08-15', 19, 'https://www.gutenberg.org/ebooks/26322', 'en', 3248), +(56190, 'Human Genome Project, Build 34, Chromosome Number 18', 'Human Genome Project', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11792', 'en', 1385), +(56191, 'Neitsyt Maarian lahja: ynnä muita legendoja', 'Onerva, L.', '2017-11-27', 20, 'https://www.gutenberg.org/ebooks/56055', 'fi', 665), +(56192, 'The Life of William Ewart Gladstone, Vol. 2 (of 3)\r\n1859-1880', 'Morley, John', '2010-05-24', 14, 'https://www.gutenberg.org/ebooks/32510', 'en', 13426), +(56193, 'Handbook of the new Library of Congress', NULL, '2019-06-27', 42, 'https://www.gutenberg.org/ebooks/59821', 'en', 18336), +(56194, 'Penelope\'s Experiences in Scotland\r\nBeing Extracts from the Commonplace Book of Penelope Hamilton', 'Wiggin, Kate Douglas Smith', '1998-02-01', 19, 'https://www.gutenberg.org/ebooks/1217', 'en', 2389), +(56195, 'A Day with John Milton', 'Byron, May', '2012-07-03', 19, 'https://www.gutenberg.org/ebooks/40130', 'en', 1173), +(56196, 'Ein Ehzuchtbüchlein', 'Oeser, Hermann', '2018-05-20', 14, 'https://www.gutenberg.org/ebooks/57187', 'de', 18038), +(56197, 'Beacon Lights of History, Volume 09: European Statesmen', 'Lord, John', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10640', 'en', 7868), +(56198, 'The Nursery, February 1873, Vol. XIII.\r\nA Monthly Magazine for Youngest Readers', 'Various', '2008-01-31', 23, 'https://www.gutenberg.org/ebooks/24475', 'en', 4641), +(56199, 'A Camera Actress in the Wilds of Togoland\r\nThe adventures, observations & experiences of a cinematograph actress in West African forests whilst collecting films depicting native life and when posing as the white woman in Anglo-African cinematograph dramas', 'Gehrts, Meg', '2014-04-20', 30, 'https://www.gutenberg.org/ebooks/45442', 'en', 18337), +(56200, 'The Art of Being Happy\nIn a Series of Letters from a Father to His Children: with Observations and Comments', 'Droz, Joseph', '2018-03-29', 20, 'https://www.gutenberg.org/ebooks/56869', 'en', 6079), +(56201, 'Loyalties', 'Galsworthy, John', '2004-09-26', 26, 'https://www.gutenberg.org/ebooks/4765', 'en', 1088), +(56202, 'On Board the Esmeralda\nMartin Leigh\'s Log - A Sea Story', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 27, 'https://www.gutenberg.org/ebooks/21107', 'en', 195), +(56203, 'Punch, or the London Charivari, Volume 103, September 17, 1892', 'Various', '2005-03-12', 6, 'https://www.gutenberg.org/ebooks/15332', 'en', 134), +(56204, 'The Existence and Attributes of God, Volumes 1 and 2', 'Charnock, Stephen', '2016-11-14', 75, 'https://www.gutenberg.org/ebooks/53527', 'en', 18338), +(56205, 'Poor Relations', 'MacKenzie, Compton', '2012-02-09', 24, 'https://www.gutenberg.org/ebooks/38816', 'en', 843), +(56206, 'The Thousandth Woman', 'Hornung, E. W. (Ernest William)', '2011-08-13', 44, 'https://www.gutenberg.org/ebooks/37062', 'en', 1335), +(56207, 'A Tale of Two Tunnels: A Romance of the Western Waters', 'Russell, William Clark', '2014-01-05', 19, 'https://www.gutenberg.org/ebooks/44590', 'en', 324), +(56208, 'The Sicilian Bandit\nFrom the Volume \"Captain Paul\"', 'Dumas, Alexandre', '2012-10-29', 41, 'https://www.gutenberg.org/ebooks/41224', 'en', 356), +(56209, 'St. Bernard of Clairvaux\'s Life of St. Malachy of Armagh', 'Bernard, of Clairvaux, Saint', '2008-06-11', 37, 'https://www.gutenberg.org/ebooks/25761', 'en', 18339), +(56210, 'Historical Record of the Tenth, or the North Lincolnshire, Regiment of Foot,\r\nContaining an Account of the Formation of the Regiment in 1685, and of its Subsequent Services to 1847', 'Cannon, Richard', '2018-01-02', 5, 'https://www.gutenberg.org/ebooks/56293', 'en', 18340), +(56211, 'The Crimes of England', 'Chesterton, G. K. (Gilbert Keith)', '2004-03-01', 64, 'https://www.gutenberg.org/ebooks/11554', 'en', 7115), +(56212, 'Twelve Gates to the City', 'McGuinn, Roger', '2003-12-01', 6, 'https://www.gutenberg.org/ebooks/10486', 'en', 6070), +(56213, 'My Year in a Log Cabin', 'Howells, William Dean', '2018-06-16', 13, 'https://www.gutenberg.org/ebooks/57341', 'en', 9461), +(56214, 'Tony Butler', 'Lever, Charles James', '2010-09-01', 21, 'https://www.gutenberg.org/ebooks/33604', 'en', 61), +(56215, 'J\'accuse (Ich klage an): Zwei Jahre in französischer Gefangenschaft', 'Brausewetter, Max Georg', '2016-07-23', 6, 'https://www.gutenberg.org/ebooks/52633', 'de', 18341), +(56216, 'My Mamie Rose: The Story of My Regeneration', 'Kildare, Owen', '2014-05-29', 7, 'https://www.gutenberg.org/ebooks/45684', 'en', 15987), +(56217, 'The Life of Benjamin Franklin\r\nWith Many Choice Anecdotes and admirable sayings of this great man never before published by any of his biographers', 'Weems, M. L. (Mason Locke)', '2011-06-13', 22, 'https://www.gutenberg.org/ebooks/36376', 'en', 854), +(56218, 'Joshua — Volume 5', 'Ebers, Georg', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/5471', 'en', 803), +(56219, 'L\'Illustration, No. 2498, 10 Janvier 1891', 'Various', '2014-01-26', 7, 'https://www.gutenberg.org/ebooks/44756', 'fr', 150), +(56220, 'Spiritual Life and the Word of God', 'Swedenborg, Emanuel', '2004-11-11', 40, 'https://www.gutenberg.org/ebooks/14026', 'en', 18342), +(56221, 'Lettres d\'un satyre', 'Gourmont, Remy de', '2018-11-18', 7, 'https://www.gutenberg.org/ebooks/58309', 'fr', 642), +(56222, 'Peace on Earth, Good-will to Dogs', 'Abbott, Eleanor Hallowell', '2006-12-29', 45, 'https://www.gutenberg.org/ebooks/20213', 'en', 585), +(56223, 'How Britannia Came to Rule the Waves\nUpdated to 1900', 'Kingston, William Henry Giles', '2007-11-15', 28, 'https://www.gutenberg.org/ebooks/23496', 'en', 8669), +(56224, 'Elämän taistelu', 'Dickens, Charles', '2015-10-08', 45, 'https://www.gutenberg.org/ebooks/50164', 'fi', 1585), +(56225, 'The Escaping Club', 'Evans, A. J. (Alfred John)', '2010-11-23', 45, 'https://www.gutenberg.org/ebooks/34421', 'en', 8718), +(56226, 'The Yeoman Adventurer', 'Gough, George W.', '2005-01-01', 38, 'https://www.gutenberg.org/ebooks/7326', 'en', 1567), +(56227, 'A Parody on Iolanthe', 'Dalziel, D. (Davison)', '2014-06-16', 10, 'https://www.gutenberg.org/ebooks/46001', 'en', 18343), +(56228, 'Jacqueline of Golden River', 'Egbert, H. M.', '2005-09-28', 12, 'https://www.gutenberg.org/ebooks/16771', 'en', 61), +(56229, 'A World is Born', 'Brackett, Leigh Douglass', '2007-09-08', 79, 'https://www.gutenberg.org/ebooks/22544', 'en', 26), +(56230, 'The History of the 2/6th (Rifle) Battalion, \"the King\'s\" (Liverpool Regiment) 1914-1919', 'Wurtzburg, C. E. (Charles Edward)', '2015-09-04', 15, 'https://www.gutenberg.org/ebooks/49875', 'en', 18344), +(56231, 'Savage Island: An Account of a Sojourn in Niué and Tonga', 'Thomson, Basil', '2013-08-27', 9, 'https://www.gutenberg.org/ebooks/43573', 'en', 18345), +(56232, 'Don Quixote, Volume 1', 'Cervantes Saavedra, Miguel de', '2009-05-01', 51, 'https://www.gutenberg.org/ebooks/28842', 'en', 3761), +(56233, 'The Arena, Volume 18, No. 92, July, 1897', 'Various', '2009-09-25', 13, 'https://www.gutenberg.org/ebooks/30081', 'en', 883), +(56234, 'Representative Women of Deseret: A Book of Biographical Sketches', 'Crocheron, Augusta Joyce', '2016-01-18', 7, 'https://www.gutenberg.org/ebooks/50958', 'en', 18346), +(56235, 'The Papers and Writings of Abraham Lincoln — Volume 2: 1843-1858', 'Lincoln, Abraham', '2004-09-30', 31, 'https://www.gutenberg.org/ebooks/2654', 'en', 18347), +(56236, 'Le Livre 010101: Enquête', 'Lebert, Marie', '2008-10-26', 20, 'https://www.gutenberg.org/ebooks/27036', 'fr', 2047), +(56237, 'Original Letters and Biographic Epitomes', 'Slater, J. Atwood', '2004-08-17', 12, 'https://www.gutenberg.org/ebooks/13203', 'en', 18348), +(56238, 'Salaperäinen nainen', 'Collins, Wilkie', '2017-08-23', 5, 'https://www.gutenberg.org/ebooks/55416', 'fi', 4458), +(56239, 'Modern American Prose Selections', NULL, '2006-11-08', 20, 'https://www.gutenberg.org/ebooks/19739', 'en', 8883), +(56240, 'Telempathy', 'Simonds, Vance', '2010-02-01', 14, 'https://www.gutenberg.org/ebooks/31153', 'en', 179), +(56241, 'The Recollections of Geoffrey Hamlyn', 'Kingsley, Henry', '2003-02-01', 30, 'https://www.gutenberg.org/ebooks/3786', 'en', 95), +(56242, 'Satellite System', 'Fyfe, H. B. (Horace Bowne)', '2009-09-14', 46, 'https://www.gutenberg.org/ebooks/29990', 'en', 26), +(56243, 'The Motor Boys Under the Sea; or, From Airship to Submarine', 'Young, Clarence', '2015-05-26', 24, 'https://www.gutenberg.org/ebooks/49049', 'en', 2279), +(56244, 'Woman\'s Work in English Fiction, from the Restoration to the Mid-Victorian Period', 'Whitmore, Clara Helen', '2010-12-09', 15, 'https://www.gutenberg.org/ebooks/34613', 'en', 18349), +(56245, 'Chroniques de J. Froissart, tome 2/13', 'Froissart, Jean', '2015-10-31', 18, 'https://www.gutenberg.org/ebooks/50356', 'fr', 8369), +(56246, 'La Tribuna', 'Pardo Bazán, Emilia, condesa de', '2006-01-11', 27, 'https://www.gutenberg.org/ebooks/17491', 'es', 18350), +(56247, 'Trekkerswee\nMet tekeninge van J.H. Pierneef', 'Totius', '2005-08-18', 32, 'https://www.gutenberg.org/ebooks/16543', 'af', 7041), +(56248, 'The Ways of the Planets', 'Martin, Martha Evans', '2016-02-22', 16, 'https://www.gutenberg.org/ebooks/51284', 'en', 12455), +(56249, 'The Great Riots of New York, 1712 to 1873', 'Headley, Joel Tyler', '2005-09-01', 6, 'https://www.gutenberg.org/ebooks/8960', 'en', 12623), +(56250, 'From a Terrace in Prague', 'Baker, B. Granville (Bernard Granville)', '2007-09-27', 48, 'https://www.gutenberg.org/ebooks/22776', 'en', 18351), +(56251, 'Une Vie, a Piece of String and Other Stories', 'Maupassant, Guy de', '2004-12-01', 38, 'https://www.gutenberg.org/ebooks/7114', 'en', 1112), +(56252, 'With the Black Prince', 'Stoddard, William O.', '2014-07-09', 18, 'https://www.gutenberg.org/ebooks/46233', 'en', 18352), +(56253, '滿江紅', 'Yue, Fei', '2008-11-08', 13, 'https://www.gutenberg.org/ebooks/27204', 'zh', 10521), +(56254, 'Indian Games and Dances with Native Songs', 'Fletcher, Alice C. (Alice Cunningham)', '2004-07-26', 22, 'https://www.gutenberg.org/ebooks/13031', 'en', 18353), +(56255, 'Old Friends and New Fancies: An Imaginary Sequel to the Novels of Jane Austen', 'Brinton, Sybil G.', '2013-09-16', 102, 'https://www.gutenberg.org/ebooks/43741', 'en', 500), +(56256, 'Virgin Soil', 'Turgenev, Ivan Sergeevich', '2001-01-01', 41, 'https://www.gutenberg.org/ebooks/2466', 'en', 11004), +(56257, 'The Deaves Affair', 'Footner, Hulbert', '2010-02-22', 20, 'https://www.gutenberg.org/ebooks/31361', 'en', 128), +(56258, 'Harper\'s New Monthly Magazine, No. XXVI, July 1852, Vol. V', 'Various', '2013-05-11', 43, 'https://www.gutenberg.org/ebooks/42693', 'en', 883), +(56259, 'The Poet\'s Poet : essays on the character and mission of the poet as interpreted in English verse of the last one hundred and fifty years', 'Atkins, Elizabeth', '2005-04-01', 12, 'https://www.gutenberg.org/ebooks/7928', 'en', 18354), +(56260, 'The Young Train Dispatcher', 'Stevenson, Burton Egbert', '2017-09-25', 23, 'https://www.gutenberg.org/ebooks/55624', 'en', 1239), +(56261, 'My Flower-pot\nChild\'s Picture Book', 'Unknown', '2008-05-21', 7, 'https://www.gutenberg.org/ebooks/25553', 'en', 5694), +(56262, 'Contes bruns', 'Chasles, Philarète', '2004-04-01', 26, 'https://www.gutenberg.org/ebooks/11766', 'fr', 12454), +(56263, 'Le chef d\'orchestre: théorie de son art', 'Berlioz, Hector', '2011-08-05', 26, 'https://www.gutenberg.org/ebooks/36978', 'fr', 661), +(56264, 'The Land of Song, Book 3. For upper grammar grades', NULL, '2012-10-10', 12, 'https://www.gutenberg.org/ebooks/41016', 'en', 54), +(56265, 'The Irish Ecclesiastical Record, Volume 1, December 1864', NULL, '2010-08-15', 3, 'https://www.gutenberg.org/ebooks/33436', 'en', 3437), +(56266, 'A B C of Gothic Architecture', 'Parker, John Henry', '2019-02-17', 29, 'https://www.gutenberg.org/ebooks/58907', 'en', 10078), +(56267, 'A Yankee Girl at Shiloh', 'Curtis, Alice Turner', '2018-05-16', 22, 'https://www.gutenberg.org/ebooks/57173', 'en', 18355), +(56268, 'Schetsen uit Napels en Omgeving\nDe Aarde en haar Volken, 1909', 'Groot, G. J. de', '2008-01-31', 11, 'https://www.gutenberg.org/ebooks/24481', 'nl', 1896), +(56269, 'Voyage au Centre de la Terre', 'Verne, Jules', '2003-12-01', 179, 'https://www.gutenberg.org/ebooks/4791', 'fr', 2399), +(56270, 'The Mapleson Memoirs, 1848-1888, vol II', 'Mapleson, James Henry', '2011-05-24', 15, 'https://www.gutenberg.org/ebooks/36144', 'en', 18236), +(56271, 'Mr Britling pääsee selvyyteen I', 'Wells, H. G. (Herbert George)', '2016-06-23', 9, 'https://www.gutenberg.org/ebooks/52401', 'fi', 579), +(56272, 'El proletario en España y el Negro en Cuba', 'Espinosa, Ramón J.', '2012-06-06', 15, 'https://www.gutenberg.org/ebooks/39930', 'es', 18356), +(56273, 'Ylhäiset ja alhaiset', 'Gummerus, K. J. (Kaarle Jaakko)', '2004-11-30', 22, 'https://www.gutenberg.org/ebooks/14214', 'fi', 61), +(56274, 'Suomalaisia sananlaskuja', NULL, '2006-12-05', 15, 'https://www.gutenberg.org/ebooks/20021', 'fi', 6458), +(56275, 'Ranson\'s Folly', 'Davis, Richard Harding', '2004-05-01', 18, 'https://www.gutenberg.org/ebooks/5643', 'en', 179); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(56276, 'Bibliographie Cornélienne\r\nDescription raisonnée de toutes les éditions des oeuvres de Pierre Corneille', 'Picot, Emile', '2011-08-15', 4, 'https://www.gutenberg.org/ebooks/37096', 'fr', 18357), +(56277, 'History of the Kingdom of Siam\r\nand of the revolutions that have caused the overthrow of the empire, up to A. D. 1770', 'Turpin, F. H. (François Henri)', '2014-01-02', 34, 'https://www.gutenberg.org/ebooks/44564', 'en', 17195), +(56278, 'The Diamond Cross Mystery\nBeing a Somewhat Different Detective Story', 'Steele, Chester K.', '2005-06-25', 15, 'https://www.gutenberg.org/ebooks/16127', 'en', 128), +(56279, 'Northern Nut Growers Association Report of the Proceedings at the Second Annual Meeting\nIthaca, New York, December 14 and 15, 1911', NULL, '2007-08-14', 5, 'https://www.gutenberg.org/ebooks/22312', 'en', 1628), +(56280, 'Widger\'s Quotes and Images from Cosmopolis by Paul Bourget\r\nThe French Immortals: Quotes And Images', 'Bourget, Paul', '2009-07-13', 18, 'https://www.gutenberg.org/ebooks/7570', 'en', 2391), +(56281, 'Origin and Development of Form and Ornament in Ceramic Art.\r\nFourth Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1882-1883, Government Printing Office, Washington, 1886, pages 437-466.', 'Holmes, William Henry', '2006-11-28', 30, 'https://www.gutenberg.org/ebooks/19953', 'en', 18358), +(56282, 'Die Mumie von Rotterdam. Erster Theil', 'Döring, Georg', '2014-08-22', 11, 'https://www.gutenberg.org/ebooks/46657', 'de', 138), +(56283, 'The Rock of the Lion', 'Seawell, Molly Elliot', '2014-12-26', 12, 'https://www.gutenberg.org/ebooks/47785', 'en', 153), +(56284, 'The Idiot', 'Bangs, John Kendrick', '2006-07-20', 60, 'https://www.gutenberg.org/ebooks/18881', 'en', 2255), +(56285, 'A Mysterious Disappearance', 'Tracy, Louis', '2010-11-11', 40, 'https://www.gutenberg.org/ebooks/34277', 'en', 61), +(56286, 'Dust', 'Haldeman-Julius, Marcet', '1997-06-01', 22, 'https://www.gutenberg.org/ebooks/945', 'en', 675), +(56287, 'Devil Crystals of Arret', 'Wells, Hal K.', '2009-04-28', 33, 'https://www.gutenberg.org/ebooks/28628', 'en', 26), +(56288, 'Rebilius Cruso: Robinson Crusoe, in Latin; a book to lighten tedium to a learner', 'Defoe, Daniel', '2015-12-20', 69, 'https://www.gutenberg.org/ebooks/50732', 'la', 323), +(56289, 'The Social Direction of Evolution: An Outline of the Science of Eugenics', 'Kellicott, William E. (William Erskine)', '2010-03-20', 20, 'https://www.gutenberg.org/ebooks/31705', 'en', 7357), +(56290, 'A Touch of Sun, and Other Stories', 'Foote, Mary Hallock', '2005-07-01', 14, 'https://www.gutenberg.org/ebooks/8538', 'en', 828), +(56291, 'More Italian Yesterdays', 'Fraser, Hugh, Mrs.', '2017-08-01', 9, 'https://www.gutenberg.org/ebooks/55240', 'en', 12753), +(56292, 'The Man Who Laughs: A Romance of English History', 'Hugo, Victor', '2004-06-01', 239, 'https://www.gutenberg.org/ebooks/12587', 'en', 18359), +(56293, 'A Book Without a Title', 'Nathan, George Jean', '2008-12-30', 15, 'https://www.gutenberg.org/ebooks/27660', 'en', 2645), +(56294, 'The Rover Boys In The Mountains; Or, A Hunt for Fun and Fortune', 'Stratemeyer, Edward', '2004-09-14', 16, 'https://www.gutenberg.org/ebooks/13455', 'en', 2322), +(56295, 'A Complete History of Music\r\nfor Schools, Clubs, and Private Reading', 'Baltzell, W. J. (Winton James)', '2017-03-20', 105, 'https://www.gutenberg.org/ebooks/54392', 'en', 250), +(56296, 'The Europeans', 'James, Henry', '2006-03-15', 151, 'https://www.gutenberg.org/ebooks/179', 'en', 2024), +(56297, 'Her Benny: A Story of Street Life', 'Hocking, Silas K. (Silas Kitto)', '2013-07-27', 40, 'https://www.gutenberg.org/ebooks/43325', 'en', 18360), +(56298, 'Sonnets from the Portuguese', 'Browning, Elizabeth Barrett', '1999-12-01', 329, 'https://www.gutenberg.org/ebooks/2002', 'en', 6689), +(56299, 'Encyclopaedia Britannica, 11th Edition, \"Camorra\" to \"Cape Colony\"\r\nVolume 5, Slice 2', 'Various', '2010-07-03', 38, 'https://www.gutenberg.org/ebooks/33052', 'en', 1081), +(56300, 'Parmenides', 'Plato', '1999-03-01', 179, 'https://www.gutenberg.org/ebooks/1687', 'en', 18361), +(56301, 'Imported Americans\nThe Story of the Experiences of a Disguised American and His Wife Studying the Immigration Question', 'Brandenburg, Broughton', '2018-07-16', 43, 'https://www.gutenberg.org/ebooks/57517', 'en', 18362), +(56302, '玉蟾記', 'Tongyuanzi', '2008-04-24', 30, 'https://www.gutenberg.org/ebooks/25137', 'zh', 1003), +(56303, 'Diario de la navegacion empredida en 1781\r\nDesde el Rio Negro, para reconocer la Bahia de Todos los Santos, las Islas del Buen Suceso, y el desague del Rio Colorado', 'Villarino, Basilio', '2004-02-01', 18, 'https://www.gutenberg.org/ebooks/11302', 'es', 15258), +(56304, 'Encyclopaedia Britannica, 11th Edition, \"Lightfoot, Joseph\" to \"Liquidation\"\r\nVolume 16, Slice 6', 'Various', '2012-11-24', 47, 'https://www.gutenberg.org/ebooks/41472', 'en', 1081), +(56305, 'William Jay and the Constitutional Movement for the Abolition of Slavery', 'Tuckerman, Bayard', '2012-04-29', 18, 'https://www.gutenberg.org/ebooks/39568', 'en', 18363), +(56306, 'The Cholera Gazette, Vol. I. No. 5. Wednesday, August 8th, 1832.', 'Various', '2016-08-20', 1, 'https://www.gutenberg.org/ebooks/52859', 'en', 18364), +(56307, 'Een acht en twintigtal voorwerpen uit de natuurlijke geschiedenis, geschikt voor rederijkers- & nutsvoordrachten,\r\nin den trant van de gedichten van den schoolmeester, met een aanbevelend woord van wijlen Mr. J. Van Lennep', 'Ribbius, Gerlacus', '2010-04-29', 6, 'https://www.gutenberg.org/ebooks/32180', 'nl', 2651), +(56308, 'Det går an', 'Almqvist, C. J. L. (Carl Jonas Love)', '2005-01-11', 81, 'https://www.gutenberg.org/ebooks/14670', 'sv', 4184), +(56309, 'The Coast of Chance', 'Chamberlain, Lucia', '2007-01-25', 30, 'https://www.gutenberg.org/ebooks/20445', 'en', 167), +(56310, 'Sant\' Ilario', 'Crawford, F. Marion (Francis Marion)', '2004-03-01', 39, 'https://www.gutenberg.org/ebooks/5227', 'en', 235), +(56311, 'Ruth of Boston: A Story of the Massachusetts Bay Colony', 'Otis, James', '2013-11-03', 14, 'https://www.gutenberg.org/ebooks/44100', 'en', 5111), +(56312, 'The Descent of Man and Selection in Relation to Sex, Vol. II (1st Edition)', 'Darwin, Charles', '2011-06-25', 26, 'https://www.gutenberg.org/ebooks/36520', 'en', 18365), +(56313, 'Jersey Street and Jersey Lane: Urban and Suburban Sketches', 'Bunner, H. C. (Henry Cuyler)', '2007-05-24', 14, 'https://www.gutenberg.org/ebooks/21597', 'en', 770), +(56314, 'Les moments perdus de John Shag', 'Gilbert de Voisins', '2016-05-14', 10, 'https://www.gutenberg.org/ebooks/52065', 'fr', 16181), +(56315, 'The Moneychangers', 'Sinclair, Upton', '2004-06-01', 62, 'https://www.gutenberg.org/ebooks/5829', 'en', 4419), +(56316, 'Wright Brothers National Memorial, North Carolina', 'East, Omega G.', '2018-08-19', 13, 'https://www.gutenberg.org/ebooks/57725', 'en', 15880), +(56317, 'Zoological Mythology; or, The Legends of Animals, Volume 2 (of 2)', 'De Gubernatis, Angelo', '2012-09-05', 19, 'https://www.gutenberg.org/ebooks/38688', 'en', 4119), +(56318, 'Custom and Myth\nNew Edition', 'Lang, Andrew', '2010-07-26', 45, 'https://www.gutenberg.org/ebooks/33260', 'en', 655), +(56319, 'Behind the Scenes in Warring Germany', 'Fox, Edward Lyell', '2012-09-19', 30, 'https://www.gutenberg.org/ebooks/40792', 'en', 449), +(56320, 'The Diplomatic Correspondence of the American Revolution, Vol. 04', NULL, '2012-12-17', 13, 'https://www.gutenberg.org/ebooks/41640', 'en', 330), +(56321, 'Memoirs of Fanny Hill\r\nA New and Genuine Edition from the Original Text (London, 1749)', 'Cleland, John', '2008-05-02', 2281, 'https://www.gutenberg.org/ebooks/25305', 'en', 5454), +(56322, 'Greek in a Nutshell', 'Strong, James', '2004-02-01', 53, 'https://www.gutenberg.org/ebooks/11130', 'en', 18366), +(56323, 'State of the Union Addresses of John Quincy Adams', 'Adams, John Quincy', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/5015', 'en', 429), +(56324, 'Blackwood\'s Edinburgh Magazine, Volume 67, No. 411, January 1850', 'Various', '2013-12-01', 37, 'https://www.gutenberg.org/ebooks/44332', 'en', 274), +(56325, 'For Your Sweet Sake: Poems', 'McGirt, James E. (James Ephraim)', '2016-10-27', 10, 'https://www.gutenberg.org/ebooks/53385', 'en', 8563), +(56326, 'Memoirs of Major Alexander Ramkins (1718)', 'Defoe, Daniel', '2004-12-24', 24, 'https://www.gutenberg.org/ebooks/14442', 'en', 2224), +(56327, 'God and the State', 'Bakunin, Mikhail Aleksandrovich', '2007-02-03', 37, 'https://www.gutenberg.org/ebooks/20677', 'en', 471), +(56328, 'Rough Stone Monuments and Their Builders', 'Peet, T. Eric (Thomas Eric)', '2005-04-08', 47, 'https://www.gutenberg.org/ebooks/15590', 'en', 8999), +(56329, 'When Sarah Saved the Day', 'Singmaster, Elsie', '2016-06-07', 11, 'https://www.gutenberg.org/ebooks/52257', 'en', 18367), +(56330, 'The Best Psychic Stories', NULL, '2011-07-12', 77, 'https://www.gutenberg.org/ebooks/36712', 'en', 114), +(56331, 'The Parisians — Volume 06', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 7, 'https://www.gutenberg.org/ebooks/7742', 'en', 137), +(56332, 'The Bandolero; Or, A Marriage among the Mountains', 'Reid, Mayne', '2011-02-07', 20, 'https://www.gutenberg.org/ebooks/35197', 'en', 14699), +(56333, 'Der Erbe: Roman. Dritter Band.', 'Gerstäcker, Friedrich', '2014-08-01', 9, 'https://www.gutenberg.org/ebooks/46465', 'de', 138), +(56334, 'Nurmeksen kapina: Historiallinen kertomus Itä-Suomesta', 'Bergman, Johan Albert', '2005-07-16', 29, 'https://www.gutenberg.org/ebooks/16315', 'fi', 98), +(56335, 'Chaucer\'s Works, Volume 4 (of 7) — The Canterbury Tales', 'Chaucer, Geoffrey', '2007-07-22', 549, 'https://www.gutenberg.org/ebooks/22120', 'enm', 9426), +(56336, 'The Deserted Village', 'Goldsmith, Oliver', '2015-11-19', 38, 'https://www.gutenberg.org/ebooks/50500', 'en', 3947), +(56337, 'The Revolution in Tanner\'s Lane', 'White, William Hale', '2004-10-01', 19, 'https://www.gutenberg.org/ebooks/6690', 'en', 1397), +(56338, 'A Christmas Child: A Sketch of a Boy-Life', 'Molesworth, Mrs.', '2010-10-08', 12, 'https://www.gutenberg.org/ebooks/34045', 'en', 470), +(56339, 'La dame qui a perdu son peintre', 'Bourget, Paul', '2017-07-08', 19, 'https://www.gutenberg.org/ebooks/55072', 'fr', 2499), +(56340, 'Many Voices', 'Nesbit, E. (Edith)', '2008-09-01', 2, 'https://www.gutenberg.org/ebooks/26580', 'en', 8), +(56341, 'Dr A. Oetkers Grundlehren der Kochkunst\nsowie preisgekrönte Rezepte für Haus und Küche', 'Oetker, August', '2010-03-07', 95, 'https://www.gutenberg.org/ebooks/31537', 'de', 1957), +(56342, 'Maud Florence Nellie; or, Don\'t care!', 'Coleridge, Christabel R. (Christabel Rose)', '2013-07-07', 5, 'https://www.gutenberg.org/ebooks/43117', 'en', 62), +(56343, 'Faust: Der Tragödie zweiter Teil', 'Goethe, Johann Wolfgang von', '2000-06-01', 220, 'https://www.gutenberg.org/ebooks/2230', 'de', 3470), +(56344, 'A Tour of the Missions: Observations and Conclusions', 'Strong, Augustus Hopkins', '2008-12-08', 31, 'https://www.gutenberg.org/ebooks/27452', 'en', 12927), +(56345, 'Bog-Myrtle and Peat\r\nTales Chiefly of Galloway Gathered from the Years 1889 to 1895', 'Crockett, S. R. (Samuel Rutherford)', '2004-10-07', 27, 'https://www.gutenberg.org/ebooks/13667', 'en', 18368), +(56346, 'Κρατύλος', 'Plato', '2011-01-08', 22, 'https://www.gutenberg.org/ebooks/34879', 'el', 8789), +(56347, 'Ten Thousand Dreams Interpreted; Or, What\'s in a Dream\r\nA Scientific and Practical Exposition', 'Miller, Gustavus Hindman', '1997-05-01', 221, 'https://www.gutenberg.org/ebooks/926', 'en', 6758), +(56348, 'Francis Beaumont: Dramatist\r\nA Portrait, with Some Account of His Circle, Elizabethan and Jacobean,\r\nAnd of His Association with John Fletcher', 'Gayley, Charles Mills', '2010-11-05', 23, 'https://www.gutenberg.org/ebooks/34214', 'en', 12961), +(56349, 'The Teacup Club', 'Bengough, Elisa Armstrong', '2015-12-23', 5, 'https://www.gutenberg.org/ebooks/50751', 'en', 109), +(56350, 'Bunny Brown and His Sister Sue at Camp Rest-A-While', 'Hope, Laura Lee', '2005-11-18', 13, 'https://www.gutenberg.org/ebooks/17096', 'en', 31), +(56351, 'Harry', 'Hart, Fanny Wheeler', '2005-06-28', 5, 'https://www.gutenberg.org/ebooks/16144', 'en', 8), +(56352, 'The Surprising and Singular Adventures of a Hen as Related by Herself to Her Family of Chickens', 'Anonymous', '2016-04-07', 7, 'https://www.gutenberg.org/ebooks/51683', 'en', 7698), +(56353, 'The Chief End of Man', 'Merriam, George Spring', '2007-08-22', 12, 'https://www.gutenberg.org/ebooks/22371', 'en', 2566), +(56354, 'Los espectros: Novelas breves', 'Andreyev, Leonid', '2009-08-25', 48, 'https://www.gutenberg.org/ebooks/29799', 'es', 18369), +(56355, 'O. T., A Danish Romance', 'Andersen, H. C. (Hans Christian)', '2005-02-01', 28, 'https://www.gutenberg.org/ebooks/7513', 'en', 2590), +(56356, 'The Boy Ranchers Among the Indians; Or, Trailing the Yaquis', 'Baker, Willard F.', '2006-11-27', 23, 'https://www.gutenberg.org/ebooks/19930', 'en', 3946), +(56357, 'Life of Richard Trevithick, with an Account of His Inventions. Volume 2 (of 2)', 'Trevithick, Francis', '2014-08-19', 16, 'https://www.gutenberg.org/ebooks/46634', 'en', 5779), +(56358, 'The Red True Story Book', NULL, '2008-12-23', 33, 'https://www.gutenberg.org/ebooks/27603', 'en', 7868), +(56359, 'Authorised Guide to the Tower of London', 'Loftie, W. J. (William John)', '2004-09-11', 31, 'https://www.gutenberg.org/ebooks/13436', 'en', 18370), +(56360, 'The Other World; or, Glimpses of the Supernatural (Vol. 2 of 2)\r\nBeing Facts, Records, and Traditions Relating to Dreams, Omens, Miraculous Occurrences, Apparitions, Wraiths, Warnings, Second-sight, Witchcraft, Necromancy, etc.', NULL, '2013-07-29', 24, 'https://www.gutenberg.org/ebooks/43346', 'en', 10588), +(56361, 'Michael O\'Halloran', 'Stratton-Porter, Gene', '2005-12-01', 37, 'https://www.gutenberg.org/ebooks/9489', 'en', 2815), +(56362, 'Shorter Prose Pieces', 'Wilde, Oscar', '2000-02-01', 102, 'https://www.gutenberg.org/ebooks/2061', 'en', 20), +(56363, 'Dante: \"The Central Man of All the World\"\nA Course of Lectures Delivered Before the Student Body of the New York State College for Teachers, Albany, 1919, 1920', 'Slattery, John T. (John Theodore)', '2005-11-01', 20, 'https://www.gutenberg.org/ebooks/16978', 'en', 3406), +(56364, 'Five Hundred Mistakes of Daily Occurrence in Speaking, Pronouncing, and Writing the English Language, Corrected', 'Burgess, Walton', '2010-03-25', 25, 'https://www.gutenberg.org/ebooks/31766', 'en', 5238), +(56365, 'Il 1859 da Plombières a Villafranca', 'Panzini, Alfredo', '2013-03-10', 27, 'https://www.gutenberg.org/ebooks/42294', 'it', 7026), +(56366, 'Metsäherran herjaaja', 'Kianto, Ilmari', '2017-07-29', 27, 'https://www.gutenberg.org/ebooks/55223', 'fi', 175), +(56367, 'Slave Narratives: A Folk History of Slavery in the United States from Interviews with Former Slaves, Arkansas Narratives, Part 4', 'United States. Work Projects Administration', '2008-04-24', 27, 'https://www.gutenberg.org/ebooks/25154', 'en', 9125), +(56368, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 377, June 27, 1829', 'Various', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/11361', 'en', 133), +(56369, 'Harper\'s New Monthly Magazine, Vol. III, No. XVII, October 1851', 'Various', '2012-11-19', 7, 'https://www.gutenberg.org/ebooks/41411', 'en', 387), +(56370, 'L\'Illustration No. 3228, 7 Janvier 1905', 'Various', '2010-06-30', 9, 'https://www.gutenberg.org/ebooks/33031', 'fr', 150), +(56371, 'Sir Edwin Landseer', 'Stephens, Frederic George', '2018-07-24', 5, 'https://www.gutenberg.org/ebooks/57574', 'en', 15065), +(56372, 'Over the Rocky Mountains: Wandering Will in the Land of the Redskin', 'Ballantyne, R. M. (Robert Michael)', '2007-12-31', 22, 'https://www.gutenberg.org/ebooks/24086', 'en', 18371), +(56373, 'Newspaper Reporting and Correspondence\r\nA Manual for Reporters, Correspondents, and Students of Newspaper Writing', 'Hyde, Grant Milnor', '2008-07-04', 28, 'https://www.gutenberg.org/ebooks/25968', 'en', 7973), +(56374, 'The Woman Who Did', 'Allen, Grant', '2003-08-01', 54, 'https://www.gutenberg.org/ebooks/4396', 'en', 2019), +(56375, 'The Motley Muse (Rhymes for the Times)', 'Graham, Harry', '2011-06-28', 16, 'https://www.gutenberg.org/ebooks/36543', 'en', 3625), +(56376, 'Les liaisons dangereuses\r\nLettres recueillies dans une Société et publiées pour l\'instruction de quelques autres', 'Laclos, Choderlos de', '2016-05-05', 175, 'https://www.gutenberg.org/ebooks/52006', 'fr', 258), +(56377, 'The Foundations of Japan\nNotes Made During Journeys Of 6,000 Miles In The Rural Districts As\nA Basis For A Sounder Knowledge Of The Japanese People', 'Robertson Scott, J. W. (John William)', '2005-01-06', 26, 'https://www.gutenberg.org/ebooks/14613', 'en', 118), +(56378, 'Form and Function: A Contribution to the History of Animal Morphology', 'Russell, E. S. (Edward Stuart)', '2007-01-23', 33, 'https://www.gutenberg.org/ebooks/20426', 'en', 18372), +(56379, 'Tales from the Arabic — Volume 03', NULL, '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/5244', 'en', 3756), +(56380, 'Les bijoux indiscrets', 'Diderot, Denis', '2011-09-20', 71, 'https://www.gutenberg.org/ebooks/37491', 'fr', 8136), +(56381, 'London in the Sixties (with a few digressions)', NULL, '2013-11-11', 33, 'https://www.gutenberg.org/ebooks/44163', 'en', 856), +(56382, 'The Spell of Scotland', 'Clark, Keith', '2012-12-14', 22, 'https://www.gutenberg.org/ebooks/41623', 'en', 2714), +(56383, 'Œuvres de P. Corneille, Tome 04', 'Corneille, Pierre', '2012-05-19', 23, 'https://www.gutenberg.org/ebooks/39739', 'fr', 5816), +(56384, '慎子', 'Shen, Dao', '2008-05-07', 18, 'https://www.gutenberg.org/ebooks/25366', 'zh', 3892), +(56385, 'The Notebooks of Leonardo Da Vinci — Volume 1', 'Leonardo, da Vinci', '2004-01-01', 88, 'https://www.gutenberg.org/ebooks/4998', 'en', 11987), +(56386, 'Five Little Bush Girls', 'Ryan, E. Lee (Emily Lee)', '2018-03-07', 2, 'https://www.gutenberg.org/ebooks/56694', 'en', 421), +(56387, 'No Hero', 'Hornung, E. W. (Ernest William)', '2004-02-01', 74, 'https://www.gutenberg.org/ebooks/11153', 'en', 1351), +(56388, 'The Boy Allies at Jutland; Or, The Greatest Naval Battle of History', 'Hayes, Clair W. (Clair Wallace)', '2003-11-01', 44, 'https://www.gutenberg.org/ebooks/10081', 'en', 4416), +(56389, 'La forêt, ou l\'abbaye de Saint-Clair (tome 2/3)\ntraduit de l\'anglais sur la seconde édition', 'Radcliffe, Ann Ward', '2018-08-22', 11, 'https://www.gutenberg.org/ebooks/57746', 'fr', 428), +(56390, 'Lives of the most Eminent Painters Sculptors and Architects, Vol. 10 (of 10)\r\nBronzino to Vasari, & General Index.', 'Vasari, Giorgio', '2010-07-20', 67, 'https://www.gutenberg.org/ebooks/33203', 'en', 3898), +(56391, 'Harhama II', 'Lassila, Maiju', '2016-06-04', 19, 'https://www.gutenberg.org/ebooks/52234', 'fi', 175), +(56392, 'Systematic Theology (Volume 3 of 3)', 'Strong, Augustus Hopkins', '2014-03-31', 31, 'https://www.gutenberg.org/ebooks/45283', 'en', 18128), +(56393, 'The Phantoms of the Foot-Bridge, and Other Stories', 'Murfree, Mary Noailles', '2011-07-17', 12, 'https://www.gutenberg.org/ebooks/36771', 'en', 7700), +(56394, 'The Spoilers', 'Beach, Rex', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/5076', 'en', 18373), +(56395, 'Agent Nine Solves His First Case: A Story of the Daring Exploits of the \"G\" Men', 'Dean, Graham M.', '2013-12-05', 23, 'https://www.gutenberg.org/ebooks/44351', 'en', 128), +(56396, 'Wilson\'s Tales of the Borders and of Scotland, Volume 24', NULL, '2004-12-22', 10, 'https://www.gutenberg.org/ebooks/14421', 'en', 3672), +(56397, 'The Wonder Island Boys: The Mysteries of the Caverns', 'Finlay, Roger Thompson', '2007-02-17', 15, 'https://www.gutenberg.org/ebooks/20614', 'en', 550), +(56398, 'Storia delle repubbliche italiane dei secoli di mezzo, v. 08 (of 16)', 'Sismondi, J.-C.-L. Simonde de (Jean-Charles-Léonard Simonde)', '2013-10-14', 6, 'https://www.gutenberg.org/ebooks/43948', 'it', 6107), +(56399, 'The Troubadour', 'Lowndes, Robert W.', '2007-10-20', 20, 'https://www.gutenberg.org/ebooks/23091', 'en', 26), +(56400, 'Hymns from the East\r\nBeing Centos and Suggestions from the Office Books of the Holy Eastern Church', 'Brownlie, John', '2009-04-02', 22, 'https://www.gutenberg.org/ebooks/28479', 'en', 897), +(56401, 'Harmaan karhun elämäntarina', 'Seton, Ernest Thompson', '2015-11-27', 3, 'https://www.gutenberg.org/ebooks/50563', 'fi', 8554), +(56402, 'Blackwood\'s Edinburgh Magazine, Volume 59, No. 368, June 1846', 'Various', '2010-10-04', 6, 'https://www.gutenberg.org/ebooks/34026', 'en', 274), +(56403, 'The Last of the Barons — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 15, 'https://www.gutenberg.org/ebooks/7721', 'en', 10517), +(56404, 'Twelve Naval Captains\nBeing a Record of Certain Americans Who Made Themselves Immortal', 'Seawell, Molly Elliot', '2014-07-25', 19, 'https://www.gutenberg.org/ebooks/46406', 'en', 14200), +(56405, 'Browning\'s Shorter Poems', 'Browning, Robert', '2005-07-28', 69, 'https://www.gutenberg.org/ebooks/16376', 'en', 54), +(56406, 'The Panama Canal Conflict between Great Britain and the United States of America\nA Study', 'Oppenheim, L. (Lassa)', '2007-07-25', 8, 'https://www.gutenberg.org/ebooks/22143', 'en', 1232), +(56407, 'Il Regno d\'Etruria\r\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Vogüé, Eugène-Melchior, vicomte de', '2013-07-09', 10, 'https://www.gutenberg.org/ebooks/43174', 'it', 10642), +(56408, 'Shirley', 'Brontë, Charlotte', '2009-11-16', 292, 'https://www.gutenberg.org/ebooks/30486', 'en', 18374), +(56409, 'Henry V', 'Shakespeare, William', '2000-07-01', 199, 'https://www.gutenberg.org/ebooks/2253', 'en', 12211), +(56410, 'The Adventures of Daniel Boone: the Kentucky rifleman', 'Hawks, Francis L. (Francis Lister)', '2008-12-07', 55, 'https://www.gutenberg.org/ebooks/27431', 'en', 90), +(56411, 'A Heap o\' Livin\'', 'Guest, Edgar A. (Edgar Albert)', '1995-09-01', 38, 'https://www.gutenberg.org/ebooks/328', 'en', 8), +(56412, 'Thrilling Stories Of The Ocean\nFrom Authentic Accounts Of Modern Voyagers And Travellers; Designed\nFor The Entertainment And Instruction Of Young People', 'Park, Marmaduke', '2004-10-06', 54, 'https://www.gutenberg.org/ebooks/13604', 'en', 324), +(56413, 'The Poems of Madison Cawein, Volume 3 (of 5)\r\nNature poems', 'Cawein, Madison Julius', '2017-06-30', 25, 'https://www.gutenberg.org/ebooks/55011', 'en', 178), +(56414, 'Lectures on Russian Literature: Pushkin, Gogol, Turgenef, Tolstoy', 'Panin, Ivan', '2010-03-08', 65, 'https://www.gutenberg.org/ebooks/31554', 'en', 18375), +(56415, 'The Efficiency Expert', 'Burroughs, Edgar Rice', '2005-08-01', 3, 'https://www.gutenberg.org/ebooks/8769', 'en', 14218), +(56416, 'The Standard Household-Effect Company (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 18, 'https://www.gutenberg.org/ebooks/3381', 'en', 179), +(56417, 'The Bellman Book of Fiction, 1906-1919', NULL, '2018-06-13', 32, 'https://www.gutenberg.org/ebooks/57322', 'en', 112), +(56418, 'The Hilltop Boys on Lost Island', 'Burleigh, Cyril', '2005-02-02', 37, 'https://www.gutenberg.org/ebooks/14879', 'en', 6840), +(56419, 'Two Prisoners', 'Page, Thomas Nelson', '2010-09-07', 16, 'https://www.gutenberg.org/ebooks/33667', 'en', 62), +(56420, 'Theory of Groups of Finite Order', 'Burnside, William', '2012-08-02', 60, 'https://www.gutenberg.org/ebooks/40395', 'en', 9112), +(56421, 'Ten Thousand a-Year. Volume 3.', 'Warren, Samuel', '2012-10-30', 20, 'https://www.gutenberg.org/ebooks/41247', 'en', 61), +(56422, 'The Kingdom Round the Corner: A Novel', 'Dawson, Coningsby', '2008-06-05', 17, 'https://www.gutenberg.org/ebooks/25702', 'en', 432), +(56423, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 530, January 21, 1832', 'Various', '2004-03-01', 3, 'https://www.gutenberg.org/ebooks/11537', 'en', 133), +(56424, 'The Memoirs of Count Grammont — Volume 04', 'Hamilton, Anthony, Count', '2004-12-04', 14, 'https://www.gutenberg.org/ebooks/5412', 'en', 10650), +(56425, 'Punch, or the London Charivari, Vol. 109, August 3, 1895', 'Various', '2014-01-23', 10, 'https://www.gutenberg.org/ebooks/44735', 'en', 134), +(56426, 'Mestari Olavi: Viisinäytöksinen näytelmä', 'Strindberg, August', '2016-12-21', 11, 'https://www.gutenberg.org/ebooks/53782', 'fi', 5375), +(56427, 'At a Winter\'s Fire', 'Capes, Bernard Edward Joseph', '2004-11-14', 32, 'https://www.gutenberg.org/ebooks/14045', 'en', 2634), +(56428, 'Heart of Darkness', 'Conrad, Joseph', '2007-01-05', 77, 'https://www.gutenberg.org/ebooks/20270', 'en', 1061), +(56429, 'Notes and Queries, Number 29, May 18, 1850', 'Various', '2005-02-28', 6, 'https://www.gutenberg.org/ebooks/15197', 'en', 105), +(56430, 'Hear Me, Pilate!', 'Blythe, LeGette', '2016-07-26', 13, 'https://www.gutenberg.org/ebooks/52650', 'en', 18376), +(56431, 'Catherine de Médicis (1519-1589)', 'Mariéjol, Jean-H. (Jean-Hippolyte)', '2011-06-03', 5, 'https://www.gutenberg.org/ebooks/36315', 'fr', 18377), +(56432, 'Travels in Alaska', 'Muir, John', '2005-01-01', 139, 'https://www.gutenberg.org/ebooks/7345', 'en', 5908), +(56433, 'The Story of a Genius', 'Schubin, Ossip', '2011-03-16', 16, 'https://www.gutenberg.org/ebooks/35590', 'en', 1949), +(56434, 'Der Kunstreiter, 3. Band', 'Gerstäcker, Friedrich', '2014-06-21', 4, 'https://www.gutenberg.org/ebooks/46062', 'de', 138), +(56435, 'Some Turns of Thought in Modern Philosophy: Five Essays', 'Santayana, George', '2005-09-17', 107, 'https://www.gutenberg.org/ebooks/16712', 'en', 2694), +(56436, 'The Mentor: The Mediterranean, Vol. 1, Num. 39, Serial No. 39, November 10, 1913', 'Elmendorf, Dwight L. (Dwight Lathrop)', '2015-08-29', 6, 'https://www.gutenberg.org/ebooks/49816', 'en', 2970), +(56437, 'Beyond the Vanishing Point', 'Cummings, Ray', '2007-09-06', 44, 'https://www.gutenberg.org/ebooks/22527', 'en', 26), +(56438, 'Julius LeVallon: An Episode', 'Blackwood, Algernon', '2015-10-01', 23, 'https://www.gutenberg.org/ebooks/50107', 'en', 8208), +(56439, 'A Theodicy, or, Vindication of the Divine Glory', 'Bledsoe, Albert Taylor', '2009-01-22', 11, 'https://www.gutenberg.org/ebooks/27869', 'en', 18378), +(56440, 'Carnac\'s Folly, Volume 2.', 'Parker, Gilbert', '2004-08-01', 8, 'https://www.gutenberg.org/ebooks/6297', 'en', 61), +(56441, 'The Voodoo Gold Trail', 'Walden, Walter', '2010-11-25', 17, 'https://www.gutenberg.org/ebooks/34442', 'en', 759), +(56442, 'Captain John Smith', 'Forbes-Lindsay, C. H.', '2017-09-02', 56, 'https://www.gutenberg.org/ebooks/55475', 'en', 13367), +(56443, 'The Gentle Art of Cooking Wives', 'Worthington, Elizabeth Strong', '2008-08-04', 20, 'https://www.gutenberg.org/ebooks/26187', 'en', 1451), +(56444, 'Boys\' Book of Frontier Fighters', 'Sabin, Edwin L. (Edwin Legrand)', '2010-01-30', 135, 'https://www.gutenberg.org/ebooks/31130', 'en', 17253), +(56445, 'The Works of Charles Dudley Warner\nProject Gutenberg Editions', 'Warner, Charles Dudley', '2009-05-15', 7, 'https://www.gutenberg.org/ebooks/28821', 'en', 198), +(56446, 'The Ethnology of Europe', 'Latham, R. G. (Robert Gordon)', '2013-08-19', 21, 'https://www.gutenberg.org/ebooks/43510', 'en', 3159), +(56447, 'Youth', 'Tolstoy, Leo, graf', '2001-05-01', 73, 'https://www.gutenberg.org/ebooks/2637', 'en', 957), +(56448, 'Punch, or the London Charivari, Vol. 147, September 2nd, 1914', 'Various', '2008-10-26', 16, 'https://www.gutenberg.org/ebooks/27055', 'en', 134), +(56449, 'Droll Stories — Complete\r\nCollected from the Abbeys of Touraine', 'Balzac, Honoré de', '2004-08-23', 132, 'https://www.gutenberg.org/ebooks/13260', 'en', 4), +(56450, 'Daisy in the Field', 'Warner, Susan', '2006-06-26', 21, 'https://www.gutenberg.org/ebooks/18688', 'en', 5086), +(56451, 'The Girl and Her Religion', 'Slattery, Margaret', '2005-08-13', 11, 'https://www.gutenberg.org/ebooks/16520', 'en', 10894), +(56452, 'The Atlantic Monthly, Volume 02, No. 08, June 1858\r\nA Magazine of Literature, Art, and Politics', 'Various', '2005-09-01', 9, 'https://www.gutenberg.org/ebooks/8903', 'en', 1227), +(56453, 'The Cold Snap\n1898', 'Bellamy, Edward', '2007-09-21', 9, 'https://www.gutenberg.org/ebooks/22715', 'en', 179), +(56454, 'My Tropic Isle', 'Banfield, E. J. (Edmund James)', '2004-12-01', 18, 'https://www.gutenberg.org/ebooks/7177', 'en', 18379), +(56455, 'The Thorn in the Nest', 'Finley, Martha', '2014-07-11', 19, 'https://www.gutenberg.org/ebooks/46250', 'en', 458), +(56456, 'The Sounds of Spoken English: A Manual of Ear Training for English Students\r\n(4th edition)', 'Ripman, Walter', '2014-11-18', 28, 'https://www.gutenberg.org/ebooks/47382', 'en', 18380), +(56457, 'Camping at Cherry Pond', 'Abbott, Henry', '2010-12-16', 24, 'https://www.gutenberg.org/ebooks/34670', 'en', 2155), +(56458, 'American War Ballads and Lyrics, Volume 1 (of 2)\r\nA Collection of the Songs and Ballads of the Colonial Wars, the Revolutions, the War of 1812-15, the War with Mexico and the Civil War', NULL, '2015-10-29', 9, 'https://www.gutenberg.org/ebooks/50335', 'en', 14669), +(56459, 'The Negro: What is His Ethnological Status? 2nd Ed.', 'Ariel', '2010-02-17', 12, 'https://www.gutenberg.org/ebooks/31302', 'en', 15255), +(56460, 'Von der Hexe die eine Heilige war', 'Günther, Agnes', '2015-06-15', 14, 'https://www.gutenberg.org/ebooks/49218', 'de', 4088), +(56461, 'Fekete gyémántok', 'Jókai, Mór', '2017-09-29', 3, 'https://www.gutenberg.org/ebooks/55647', 'hu', 234), +(56462, 'Clarissa Harlowe; or the history of a young lady — Volume 8', 'Richardson, Samuel', '2004-04-01', 52, 'https://www.gutenberg.org/ebooks/12180', 'en', 14816), +(56463, 'The Religious Situation', 'Smith, Goldwin', '2006-10-17', 12, 'https://www.gutenberg.org/ebooks/19568', 'en', 7753), +(56464, 'La Russie en 1839, Volume III', 'Custine, Astolphe, marquis de', '2008-11-15', 23, 'https://www.gutenberg.org/ebooks/27267', 'fr', 2408), +(56465, 'The Children\'s Pilgrimage', 'Meade, L. T.', '2004-11-01', 29, 'https://www.gutenberg.org/ebooks/6899', 'en', 246), +(56466, 'The Mistress of the Manse', 'Holland, J. G. (Josiah Gilbert)', '2004-07-29', 7, 'https://www.gutenberg.org/ebooks/13052', 'en', 8), +(56467, 'The Poacher\'s Wife', 'Phillpotts, Eden', '2017-05-27', 24, 'https://www.gutenberg.org/ebooks/54795', 'en', 4305), +(56468, 'The Beasts of Tarzan', 'Burroughs, Edgar Rice', '1993-10-01', 629, 'https://www.gutenberg.org/ebooks/85', 'en', 15087), +(56469, 'Blackwood\'s Edinburgh Magazine, Vol. 66 No.406, August 1849', 'Various', '2013-09-14', 10, 'https://www.gutenberg.org/ebooks/43722', 'en', 274), +(56470, 'Italienische Reise — Band 2', 'Goethe, Johann Wolfgang von', '2000-11-01', 80, 'https://www.gutenberg.org/ebooks/2405', 'de', 17927), +(56471, 'Roadtown', 'Chambless, Edgar', '2019-02-25', 11, 'https://www.gutenberg.org/ebooks/58964', 'en', 6072), +(56472, 'To Cuba and Back', 'Dana, Richard Henry', '2010-08-17', 41, 'https://www.gutenberg.org/ebooks/33455', 'en', 750), +(56473, 'Spoon River Anthology', 'Masters, Edgar Lee', '1998-04-01', 392, 'https://www.gutenberg.org/ebooks/1280', 'en', 178), +(56474, 'David Livingstone', 'Horne, C. Silvester (Charles Silvester)', '2018-05-07', 22, 'https://www.gutenberg.org/ebooks/57110', 'en', 8363), +(56475, 'Die Nymphe des Brunnens', 'Musäus, Johann Karl August', '2008-05-19', 18, 'https://www.gutenberg.org/ebooks/25530', 'de', 900), +(56476, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 560, August 4, 1832', 'Various', '2004-03-01', 1, 'https://www.gutenberg.org/ebooks/11705', 'en', 133), +(56477, 'The Curiosities and Law of Wills', 'Proffatt, John', '2012-10-16', 19, 'https://www.gutenberg.org/ebooks/41075', 'en', 18381), +(56478, 'The Ambassador', 'Merwin, Sam', '2010-05-29', 57, 'https://www.gutenberg.org/ebooks/32587', 'en', 11935), +(56479, 'Punch, or the London Charivari, Volume 100, April 25, 1891', 'Various', '2004-12-06', 4, 'https://www.gutenberg.org/ebooks/14277', 'en', 134), +(56480, 'In Kali\'s Country: Tales from Sunny India', 'Sheets, Emily Churchill Thompson', '2012-02-14', 20, 'https://www.gutenberg.org/ebooks/38881', 'en', 6015), +(56481, 'Index of the Project Gutenberg Works of Louisa M. Alcott', 'Alcott, Louisa May', '2018-10-24', 24, 'https://www.gutenberg.org/ebooks/58158', 'en', 198), +(56482, 'Relação do formidavel, e lastimoso terremoto succedido no Reino de Valença\nNo dia 23 de Março deste presente anno de 1748 pelas 6.\nhoras, e tres quartos da manhã', 'Anonymous', '2006-12-06', 13, 'https://www.gutenberg.org/ebooks/20042', 'pt', 18382), +(56483, 'Palaces and Courts of the Exposition\r\nA Handbook of the Architecture, Sculpture and Mural Paintings, with Special Reference to the Symbolism', 'James, Juliet Helena Lumbard', '2004-05-01', 28, 'https://www.gutenberg.org/ebooks/5620', 'en', 3035), +(56484, 'Het Eiland Marken en Zijne Bewoners', 'Allan, Francis', '2013-12-25', 17, 'https://www.gutenberg.org/ebooks/44507', 'nl', 18383), +(56485, 'Curious Myths of the Middle Ages', 'Baring-Gould, S. (Sabine)', '2011-05-17', 190, 'https://www.gutenberg.org/ebooks/36127', 'en', 18384), +(56486, 'Expositions of Holy Scripture\nSecond Corinthians, Galatians, and Philippians Chapters\nI to End. Colossians, Thessalonians, and First Timothy.', 'Maclaren, Alexander', '2007-04-19', 26, 'https://www.gutenberg.org/ebooks/21190', 'en', 18385), +(56487, 'The Human Race', 'Figuier, Louis', '2013-01-15', 22, 'https://www.gutenberg.org/ebooks/41849', 'en', 1470), +(56488, 'Diane de Poitiers', 'Capefigue, M. (Jean Baptiste Honoré Raymond)', '2012-06-09', 11, 'https://www.gutenberg.org/ebooks/39953', 'fr', 18386), +(56489, 'Round About the North Pole', 'Gordon, W. J. (William John)', '2016-07-01', 5, 'https://www.gutenberg.org/ebooks/52462', 'en', 1614), +(56490, 'By the Sapphire Sea', NULL, '2003-12-01', 9, 'https://www.gutenberg.org/ebooks/10411', 'en', 18387), +(56491, 'The Red Romance Book', NULL, '2008-02-15', 93, 'https://www.gutenberg.org/ebooks/24624', 'en', 1007), +(56492, 'God, the Invisible King', 'Wells, H. G. (Herbert George)', '2006-05-03', 47, 'https://www.gutenberg.org/ebooks/1046', 'en', 13236), +(56493, 'Vie de Jeanne d\'Arc. Vol. 2 de 2', 'France, Anatole', '2010-09-10', 27, 'https://www.gutenberg.org/ebooks/33693', 'fr', 3907), +(56494, 'The Air Pirate', 'Thorne, Guy', '2012-07-28', 31, 'https://www.gutenberg.org/ebooks/40361', 'en', 8820), +(56495, 'Ποιήματα - Τόμος Πέμπτος - Φασουλής Φιλόσοφος', 'Souris, Georgios', '2010-06-08', 10, 'https://www.gutenberg.org/ebooks/32741', 'el', 8746), +(56496, 'The Unspeakable Scot', 'Crosland, T. W. H. (Thomas William Hodgson)', '2017-12-18', 12, 'https://www.gutenberg.org/ebooks/56204', 'en', 13990), +(56497, 'Supernatural Religion, Vol. 3 (of 3)\r\nAn Inquiry into the Reality of Divine Revelation', 'Cassels, Walter Richard', '2011-08-28', 25, 'https://www.gutenberg.org/ebooks/37233', 'en', 10561), +(56498, 'The First Report of the Horncastle Teetotal Society, 1843', 'Anonymous', '2016-12-20', 12, 'https://www.gutenberg.org/ebooks/53776', 'en', 10795), +(56499, 'Uusi Grottelaulu', 'Rydberg, Viktor', '2007-01-04', 7, 'https://www.gutenberg.org/ebooks/20284', 'fi', 8), +(56500, 'Nat the Naturalist: A Boy\'s Adventures in the Eastern Seas', 'Fenn, George Manville', '2007-05-08', 17, 'https://www.gutenberg.org/ebooks/21356', 'en', 1096), +(56501, 'Sagen van den Rijn', 'Ruland, Wilhelm', '2005-02-24', 17, 'https://www.gutenberg.org/ebooks/15163', 'nl', 2179), +(56502, 'Don Winslow of the Navy', 'Martinek, Frank V. (Frank Victor)', '2014-05-08', 15, 'https://www.gutenberg.org/ebooks/45613', 'en', 1447), +(56503, 'Sylvia\'s Lovers — Volume 1', 'Gaskell, Elizabeth Cleghorn', '2003-10-01', 27, 'https://www.gutenberg.org/ebooks/4534', 'en', 98), +(56504, 'Laos Folk-Lore of Farther India', 'Fleeson, Katherine Neville', '2011-03-12', 12, 'https://www.gutenberg.org/ebooks/35564', 'en', 18388), +(56505, 'Sonia Married', 'McKenna, Stephen', '2014-06-25', 14, 'https://www.gutenberg.org/ebooks/46096', 'en', 432), +(56506, 'The Geological History of Plants', 'Dawson, John William, Sir', '2016-01-23', 29, 'https://www.gutenberg.org/ebooks/51021', 'en', 16650), +(56507, 'Stephen H. Branch\'s Alligator, Vol. 1 no. 02, May 1, 1858', NULL, '2015-05-11', 7, 'https://www.gutenberg.org/ebooks/48930', 'en', 1741), +(56508, 'Our Pets', 'Anonymous', '2007-11-07', 12, 'https://www.gutenberg.org/ebooks/23401', 'en', 18389), +(56509, 'Punch, or the London Charivari, Volume 152, May 30, 1917', 'Various', '2006-01-29', 13, 'https://www.gutenberg.org/ebooks/17634', 'en', 134), +(56510, 'Over the Brazier', 'Graves, Robert', '2014-10-18', 31, 'https://www.gutenberg.org/ebooks/47144', 'en', 2100), +(56511, 'The Weavers: a tale of England and Egypt of fifty years ago - Volume 2', 'Parker, Gilbert', '2004-08-01', 9, 'https://www.gutenberg.org/ebooks/6263', 'en', 9577), +(56512, 'A Roman Singer', 'Crawford, F. Marion (Francis Marion)', '2004-05-01', 19, 'https://www.gutenberg.org/ebooks/12346', 'en', 1432), +(56513, 'Turjanlinnan satukirja', 'Kianto, Ilmari', '2017-09-03', 9, 'https://www.gutenberg.org/ebooks/55481', 'fi', 5797), +(56514, 'The Stephens Family: A Genealogy of the Descendants of Joshua Stevens', 'Stephens, Bascom Asbury Cecil', '2008-08-02', 8, 'https://www.gutenberg.org/ebooks/26173', 'en', 18390), +(56515, 'The Relics of General Chasse: A Tale of Antwerp', 'Trollope, Anthony', '2003-02-01', 18, 'https://www.gutenberg.org/ebooks/3711', 'en', 637), +(56516, 'Modern Painters, Volume 1 (of 5)', 'Ruskin, John', '2009-09-04', 133, 'https://www.gutenberg.org/ebooks/29907', 'en', 3670), +(56517, 'Amelia Calani ed altri scritti', 'Guerrazzi, Francesco Domenico', '2013-03-30', 16, 'https://www.gutenberg.org/ebooks/42436', 'it', 3942), +(56518, 'Medical Investigation in Seventeenth Century England\nPapers Read at a Clark Library Seminar, October 14, 1967', 'Bodemer, Charles W.', '2009-09-18', 25, 'https://www.gutenberg.org/ebooks/30016', 'en', 18391), +(56519, 'La vendetta paterna', 'Guerrazzi, Francesco Domenico', '2015-01-15', 6, 'https://www.gutenberg.org/ebooks/47978', 'it', 860), +(56520, 'Zone Therapy; Or, Relieving Pain at Home', 'Fitzgerald, Wm. H. (William Henry Hope)', '2017-04-15', 36, 'https://www.gutenberg.org/ebooks/54553', 'en', 18392), +(56521, 'Food for the Lambs; or, Helps for Young Christians', 'Orr, Charles Ebert', '2004-08-26', 33, 'https://www.gutenberg.org/ebooks/13294', 'en', 6957), +(56522, 'The Art of Bookbinding: A practical treatise, with plates and diagrams', 'Zaehnsdorf, Joseph William', '2016-02-14', 59, 'https://www.gutenberg.org/ebooks/51213', 'en', 3349), +(56523, 'The Death-Traps of FX-31', 'Wright, Sewell Peaslee', '2009-07-04', 46, 'https://www.gutenberg.org/ebooks/29309', 'en', 26), +(56524, 'The Boy Scouts with the Motion Picture Players', 'Shaler, Robert', '2004-07-19', 19, 'https://www.gutenberg.org/ebooks/12948', 'en', 2994), +(56525, 'The Knight Of Gwynne, Vol. 2 (of 2)', 'Lever, Charles James', '2011-04-02', 21, 'https://www.gutenberg.org/ebooks/35756', 'en', 11569), +(56526, 'Doctor Grimshawe\'s Secret — a Romance', 'Hawthorne, Nathaniel', '2004-12-01', 42, 'https://www.gutenberg.org/ebooks/7183', 'en', 61), +(56527, 'The Strand Magazine, Vol. 07, Issue 41, May, 1894\r\nAn Illustrated Monthly', 'Various', '2014-11-17', 18, 'https://www.gutenberg.org/ebooks/47376', 'en', 2998), +(56528, 'English Pharisees French Crocodiles, and Other Anglo-French Typical Characters', 'O\'Rell, Max', '2010-12-18', 13, 'https://www.gutenberg.org/ebooks/34684', 'en', 8617), +(56529, 'Stella Fregelius: A Tale of Three Destinies', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 45, 'https://www.gutenberg.org/ebooks/6051', 'en', 1280), +(56530, 'His \"Day In Court\"\n1895', 'Murfree, Mary Noailles', '2007-11-26', 10, 'https://www.gutenberg.org/ebooks/23633', 'en', 61), +(56531, 'A Calendar of Sonnets', 'Jackson, Helen Hunt', '2006-02-01', 24, 'https://www.gutenberg.org/ebooks/9825', 'en', 18393), +(56532, 'Un viaje de novios', 'Pardo Bazán, Emilia, condesa de', '2005-12-28', 38, 'https://www.gutenberg.org/ebooks/17406', 'es', 1696), +(56533, 'Human Genome Project, X Chromosome', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3523', 'en', 1385), +(56534, 'Stories of the Ships', 'Freeman, Lewis R. (Lewis Ransome)', '2013-04-27', 14, 'https://www.gutenberg.org/ebooks/42604', 'en', 10034), +(56535, 'Baccara', 'Malot, Hector', '2004-04-01', 19, 'https://www.gutenberg.org/ebooks/12174', 'fr', 5080), +(56536, 'On The Structure of Greek Tribal Society: An Essay', 'Seebohm, Hugh E. (Hugh Exton)', '2008-08-18', 81, 'https://www.gutenberg.org/ebooks/26341', 'en', 10599), +(56537, 'A sketch of the life and services of Gen. Otho Holland Williams\r\nRead before the Maryland historical society, on Thursday\r\nevening, March 6, 1851', 'Tiffany, Osmond', '2008-11-19', 12, 'https://www.gutenberg.org/ebooks/27293', 'en', 1371), +(56538, 'Children of Men', 'Lessing, Bruno', '2017-05-23', 36, 'https://www.gutenberg.org/ebooks/54761', 'en', 2120), +(56539, 'On the Duty of Civil Disobedience', 'Thoreau, Henry David', '1993-06-01', 794, 'https://www.gutenberg.org/ebooks/71', 'en', 17929), +(56540, 'A Dog\'s Tale', 'Twain, Mark', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/9019', 'en', 2464), +(56541, 'A Prairie Infanta', 'Brodhead, Eva Wilder', '2009-10-10', 11, 'https://www.gutenberg.org/ebooks/30224', 'en', 3013), +(56542, 'Martin Hyde, the Duke\'s Messenger', 'Masefield, John', '1998-04-01', 18, 'https://www.gutenberg.org/ebooks/1274', 'en', 18394), +(56543, 'Louisa May Alcott : Her Life, Letters, and Journals', 'Alcott, Louisa May', '2011-11-18', 132, 'https://www.gutenberg.org/ebooks/38049', 'en', 131), +(56544, 'The Eastern, or Turkish Bath\r\nIts History, Revival in Britain, and Application to the Purposes of Health.', 'Wilson, Erasmus, Sir', '2019-03-01', 4, 'https://www.gutenberg.org/ebooks/58990', 'en', 9089), +(56545, 'The First True Gentleman: A Study of the Human Nature of Our Lord', 'Anonymous', '2012-07-07', 16, 'https://www.gutenberg.org/ebooks/40153', 'en', 18395), +(56546, 'Plays', 'Glaspell, Susan', '2004-01-01', 977, 'https://www.gutenberg.org/ebooks/10623', 'en', 508), +(56547, 'Life and Work in Benares and Kumaon, 1839-1877', 'Kennedy, James', '2008-01-24', 29, 'https://www.gutenberg.org/ebooks/24416', 'en', 1975), +(56548, 'Inside the Lines', 'Biggers, Earl Derr', '2017-11-23', 21, 'https://www.gutenberg.org/ebooks/56036', 'en', 1319), +(56549, 'Frank Merriwell\'s Races', 'Standish, Burt L.', '2007-06-28', 20, 'https://www.gutenberg.org/ebooks/21958', 'en', 14196), +(56550, 'The Paston Letters, A.D. 1422-1509. Volume 4 (of 6)\r\nNew Complete Library Edition', NULL, '2012-10-16', 39, 'https://www.gutenberg.org/ebooks/41081', 'en', 9732), +(56551, 'Operation Boomerang', 'Revelle, George', '2019-06-30', 290, 'https://www.gutenberg.org/ebooks/59842', 'en', 8406), +(56552, 'History of the Colony and Ancient Dominion of Virginia', 'Campbell, Charles', '2010-05-28', 93, 'https://www.gutenberg.org/ebooks/32573', 'en', 18396), +(56553, 'The Maid of Honour: A Tale of the Dark Days of France. Vol. 2 (of 3)', 'Wingfield, Lewis', '2012-02-14', 5, 'https://www.gutenberg.org/ebooks/38875', 'en', 98), +(56554, 'Dew Drops, Vol. 37, No. 16, April 19, 1914', 'Various', '2004-12-07', 5, 'https://www.gutenberg.org/ebooks/14283', 'en', 6886), +(56555, 'George at the Wheel; Or, Life in the Pilot-House', 'Castlemon, Harry', '2016-11-17', 9, 'https://www.gutenberg.org/ebooks/53544', 'en', 676), +(56556, 'Sisaret: Romaani', 'Ebers, Georg', '2011-08-07', 5, 'https://www.gutenberg.org/ebooks/37001', 'fi', 803), +(56557, 'Theodore Roosevelt\r\nAn Address Delivered by Henry Cabot Lodge Before the Congress of the United States', 'Lodge, Henry Cabot', '2014-04-16', 15, 'https://www.gutenberg.org/ebooks/45421', 'en', 4594), +(56558, 'Yama [The Pit], a Novel in Three Parts', 'Kuprin, A. I. (Aleksandr Ivanovich)', '2003-12-01', 29, 'https://www.gutenberg.org/ebooks/4706', 'en', 1014), +(56559, 'The Enchanted Island of Yew', 'Baum, L. Frank (Lyman Frank)', '2007-04-24', 2, 'https://www.gutenberg.org/ebooks/21164', 'en', 1655), +(56560, 'Nenä', 'Gogol, Nikolai Vasilevich', '2016-07-04', 2, 'https://www.gutenberg.org/ebooks/52496', 'fi', 18397), +(56561, 'H. G. Wells', 'Beresford, J. D. (John Davys)', '2005-03-13', 24, 'https://www.gutenberg.org/ebooks/15351', 'en', 18398), +(56562, 'Les civilisés: Roman', 'Farrère, Claude', '2014-12-20', 16, 'https://www.gutenberg.org/ebooks/47712', 'fr', 18399), +(56563, 'Stand By The Union', 'Optic, Oliver', '2006-07-13', 41, 'https://www.gutenberg.org/ebooks/18816', 'en', 2131), +(56564, 'The Principles of Scientific Management', 'Taylor, Frederick Winslow', '2004-09-01', 328, 'https://www.gutenberg.org/ebooks/6435', 'en', 18400), +(56565, 'Clair de Lune\nA Play in Two Acts and Six Scenes', 'Strange, Michael', '2007-10-30', 7, 'https://www.gutenberg.org/ebooks/23257', 'en', 508), +(56566, 'The Crock of Gold: A Rural Novel', 'Tupper, Martin Farquhar', '2005-11-14', 9, 'https://www.gutenberg.org/ebooks/17062', 'en', 61), +(56567, 'The Mentor: The National Gallery—London, Vol. 4, Num. 4, Serial No. 104, April 1, 1916\nGreat Galleries of the World', 'Van Dyke, John Charles', '2016-04-06', 5, 'https://www.gutenberg.org/ebooks/51677', 'en', 18401), +(56568, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon\nTome V', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2007-08-25', 12, 'https://www.gutenberg.org/ebooks/22385', 'fr', 1770), +(56569, 'Our Artist in Cuba\r\nFifty drawings on wood. Leaves from the Sketch-book of a traveler, During the Winter of 1864-5.', 'Carleton, George Washington', '2011-02-19', 11, 'https://www.gutenberg.org/ebooks/35332', 'en', 18402), +(56570, 'Kylän lauluja', 'Larin-Kyösti', '2019-08-18', 23, 'https://www.gutenberg.org/ebooks/60130', 'fi', 1171), +(56571, 'Meine Tante Anna', 'Villinger, Hermine', '2017-03-08', 5, 'https://www.gutenberg.org/ebooks/54305', 'de', 549), +(56572, 'Clotelle: A Tale of the Southern States', 'Brown, William Wells', '2000-03-01', 14, 'https://www.gutenberg.org/ebooks/2095', 'en', 9472), +(56573, 'Anything Once', 'Ostrander, Isabel', '2009-12-09', 29, 'https://www.gutenberg.org/ebooks/30640', 'en', 61), +(56574, 'A Summer in a Canyon: A California Story', 'Wiggin, Kate Douglas Smith', '2002-03-01', 27, 'https://www.gutenberg.org/ebooks/3147', 'en', 211), +(56575, 'An Old Chester Secret', 'Deland, Margaret Wade Campbell', '2010-03-27', 22, 'https://www.gutenberg.org/ebooks/31792', 'en', 7935), +(56576, 'Weggeloopen!', 'Buckland, James', '2013-03-04', 29, 'https://www.gutenberg.org/ebooks/42260', 'nl', 527), +(56577, 'Suomen herännäisyyden historia XIX:llä vuosisadalla I. 1796-1835', 'Rosendal, Mauno', '2015-08-12', 24, 'https://www.gutenberg.org/ebooks/49688', 'fi', 3204), +(56578, 'Targum\r\nOr Metrical Translations From Thirty Languages And Dialects', 'Borrow, George', '2004-06-01', 16, 'https://www.gutenberg.org/ebooks/12510', 'en', 2346), +(56579, 'Two Little Confederates', 'Page, Thomas Nelson', '2008-09-29', 19, 'https://www.gutenberg.org/ebooks/26725', 'en', 491), +(56580, 'L\'Illustration, No. 2511, 11 Avril 1891', 'Various', '2014-06-04', 15, 'https://www.gutenberg.org/ebooks/45879', 'fr', 150), +(56581, 'Cheerful—By Request', 'Ferber, Edna', '2004-03-01', 43, 'https://www.gutenberg.org/ebooks/11395', 'en', 797), +(56582, 'Colección de Documentos Inéditos Relativos al Descubrimiento, Conquista y Organización de las Antiguas Posesiones Españolas de Ultramar. Tomo 5, De Los Documentos Legislativos, I', NULL, '2018-01-28', 16, 'https://www.gutenberg.org/ebooks/56452', 'es', 4786), +(56583, 'Eleven Possible Cases', 'Fyles, Franklin', '2010-04-24', 97, 'https://www.gutenberg.org/ebooks/32117', 'en', 61), +(56584, 'The Bible, Douay-Rheims, Old Testament — Part 2', NULL, '1999-01-01', 27, 'https://www.gutenberg.org/ebooks/1610', 'en', 8036), +(56585, 'The History of Chivalry', 'James, G. P. R. (George Payne Rainsford)', '2012-08-19', 21, 'https://www.gutenberg.org/ebooks/40537', 'en', 10974), +(56586, 'On Sunset Highways: A Book of Motor Rambles in California', 'Murphy, Thos. D. (Thomas Dowler)', '2018-07-25', 16, 'https://www.gutenberg.org/ebooks/57580', 'en', 1623), +(56587, 'Dixieland\r\nOne-Step', 'Lopez and Hamilton\'s Kings of Harmony', '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10247', 'en', 18403), +(56588, 'First Italian Readings', 'Various', '2007-12-29', 143, 'https://www.gutenberg.org/ebooks/24072', 'it', 18404), +(56589, 'A Little Girl in Old Washington', 'Douglas, Amanda M.', '2014-02-28', 12, 'https://www.gutenberg.org/ebooks/45045', 'en', 18405), +(56590, 'Personal Memoirs of P. H. Sheridan, General, United States Army — Complete', 'Sheridan, Philip Henry', '2004-06-01', 109, 'https://www.gutenberg.org/ebooks/4362', 'en', 1365), +(56591, 'Memoirs of the Court of Queen Elizabeth', 'Aikin, Lucy', '2007-05-16', 31, 'https://www.gutenberg.org/ebooks/21500', 'en', 18406), +(56592, 'History of the Negro Race in America From 1619 to 1880. Vol 1\nNegroes as Slaves, as Soldiers, and as Citizens', 'Williams, George Washington', '2005-04-30', 91, 'https://www.gutenberg.org/ebooks/15735', 'en', 3302), +(56593, 'When All the Woods Are Green: A Novel', 'Mitchell, S. Weir (Silas Weir)', '2016-09-22', 7, 'https://www.gutenberg.org/ebooks/53120', 'en', 50), +(56594, 'Punch, or the London Charivari, Vol. 93, November 5, 1887', 'Various', '2011-09-17', 8, 'https://www.gutenberg.org/ebooks/37465', 'en', 134), +(56595, 'Die Schädigung der Rasse\ndurch soziales und wirtschaftliches Aufsteigen bewiesen an den Berliner Juden', 'Theilhaber, Felix A. (Felix Aaron)', '2013-11-16', 16, 'https://www.gutenberg.org/ebooks/44197', 'de', 18407), +(56596, 'The Adventures of Huckleberry Finn (Tom Sawyer\'s Comrade)', 'Twain, Mark', '2010-05-10', 154, 'https://www.gutenberg.org/ebooks/32325', 'en', 3210), +(56597, '西湖二集', 'Zhou, Qingyuan, active 16th century-17th century', '2008-05-08', 24, 'https://www.gutenberg.org/ebooks/25392', 'zh', 18408), +(56598, 'You\'re on the Air', 'Heyliger, William', '2018-02-28', 15, 'https://www.gutenberg.org/ebooks/56660', 'en', 18409), +(56599, 'A Narrative of the Life and Adventures of Venture, a Native of Africa, but Resident above Sixty Years in the United States of America, Related by Himself', 'Smith, Venture', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10075', 'en', 18410), +(56600, '墨子', 'Mo, Di', '2008-01-11', 42, 'https://www.gutenberg.org/ebooks/24240', 'zh', 1493); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(56601, 'Going into Society', 'Dickens, Charles', '1998-08-01', 30, 'https://www.gutenberg.org/ebooks/1422', 'en', 61), +(56602, 'Tom Wallis: A Tale of the South Seas', 'Becke, Louis', '2012-09-07', 226, 'https://www.gutenberg.org/ebooks/40705', 'en', 108), +(56603, 'Fort Desolation: Red Indians and Fur Traders of Rupert\'s Land', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 29, 'https://www.gutenberg.org/ebooks/21732', 'en', 1120), +(56604, 'Harper\'s Young People, September 19, 1882\nAn Illustrated Weekly', 'Various', '2019-05-29', 8, 'https://www.gutenberg.org/ebooks/59628', 'en', 479), +(56605, 'Charles Duran\r\nOr, The Career of a Bad Boy\r\nBy the author of \"The Waldos\"', NULL, '2005-03-30', 3, 'https://www.gutenberg.org/ebooks/15507', 'en', 2526), +(56606, 'Studies in Folk-Song and Popular Poetry', 'Williams, Alfred M. (Alfred Mason)', '2014-03-31', 22, 'https://www.gutenberg.org/ebooks/45277', 'en', 4940), +(56607, 'Treading the Narrow Way', 'Barrett, Robert Emmet', '2011-07-19', 92, 'https://www.gutenberg.org/ebooks/36785', 'en', 740), +(56608, 'Diary of Samuel Pepys — Volume 30: August/September 1664', 'Pepys, Samuel', '2004-11-30', 16, 'https://www.gutenberg.org/ebooks/4150', 'en', 2197), +(56609, 'Saved at Sea\nA Lighthouse Story', 'Walton, O. F., Mrs.', '2004-01-01', 36, 'https://www.gutenberg.org/ebooks/10849', 'en', 550), +(56610, 'The Comic History of Rome', 'À Beckett, Gilbert Abbott', '2011-10-07', 38, 'https://www.gutenberg.org/ebooks/37657', 'en', 18411), +(56611, 'Le chateâu des Carpathes', 'Verne, Jules', '2004-02-01', 59, 'https://www.gutenberg.org/ebooks/5082', 'fr', 2490), +(56612, 'Bygone Berkshire', NULL, '2016-10-18', 31, 'https://www.gutenberg.org/ebooks/53312', 'en', 18412), +(56613, 'Die Gründung des Deutschen Zollvereins', 'Treitschke, Heinrich von', '2007-10-17', 30, 'https://www.gutenberg.org/ebooks/23065', 'de', 18413), +(56614, 'Mother West Wind \"Where\" Stories', 'Burgess, Thornton W. (Thornton Waldo)', '2005-12-07', 42, 'https://www.gutenberg.org/ebooks/17250', 'en', 625), +(56615, 'Flute and Violin, and Other Kentucky Tales and Romances', 'Allen, James Lane', '2015-12-02', 17, 'https://www.gutenberg.org/ebooks/50597', 'en', 3008), +(56616, 'Our Pilgrim Forefathers: Thanksgiving Studies', 'Nelson, Loveday A.', '2014-12-03', 7, 'https://www.gutenberg.org/ebooks/47520', 'en', 18054), +(56617, 'Myths and Legends of Our Own Land — Volume 02 : the Isle of Manhattoes and nearby', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 10, 'https://www.gutenberg.org/ebooks/6607', 'en', 725), +(56618, 'L\'Illustration, No. 0011, 13 Mai 1843', 'Various', '2011-01-28', 14, 'https://www.gutenberg.org/ebooks/35100', 'fr', 150), +(56619, 'Sordman the Protector', 'Purdom, Tom', '2016-03-14', 27, 'https://www.gutenberg.org/ebooks/51445', 'en', 26), +(56620, 'In Clive\'s Command: A Story of the Fight for India', 'Strang, Herbert', '2005-07-29', 52, 'https://www.gutenberg.org/ebooks/16382', 'en', 1736), +(56621, 'Vincenzo Monti (1754-1828)\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Masi, Ernesto', '2013-07-10', 7, 'https://www.gutenberg.org/ebooks/43180', 'it', 7184), +(56622, 'A Venetian June', 'Fuller, Anna', '2007-12-14', 9, 'https://www.gutenberg.org/ebooks/23859', 'en', 2295), +(56623, 'The Gate of Remembrance\r\nThe Story of the Psychological Experiment which Resulted in the Discovery of the Edgar Chapel at Glastonbury', 'Bond, Frederick Bligh', '2015-03-23', 21, 'https://www.gutenberg.org/ebooks/48568', 'en', 18414), +(56624, 'Needlework As Art', 'Alford, Marianne Margaret Compton Cust, Viscountess', '2009-11-14', 46, 'https://www.gutenberg.org/ebooks/30472', 'en', 6945), +(56625, 'The Works of the Right Honourable Edmund Burke, Vol. 11 (of 12)', 'Burke, Edmund', '2006-04-20', 38, 'https://www.gutenberg.org/ebooks/18218', 'en', 5325), +(56626, 'Logic as the Science of the Pure Concept', 'Croce, Benedetto', '2017-02-08', 13, 'https://www.gutenberg.org/ebooks/54137', 'en', 4797), +(56627, 'Sonnet #100', 'Shakespeare, William', '2004-06-01', 2, 'https://www.gutenberg.org/ebooks/12722', 'en', 6689), +(56628, 'Mary Jane\'s City Home', 'Judson, Clara Ingram', '2008-09-03', 19, 'https://www.gutenberg.org/ebooks/26517', 'en', 7735), +(56629, 'The Landlord at Lion\'s Head — Volume 1', 'Howells, William Dean', '2004-10-23', 33, 'https://www.gutenberg.org/ebooks/3375', 'en', 3249), +(56630, 'The Golden Helm, and Other Verse', 'Gibson, Wilfrid Wilson', '2013-02-08', 11, 'https://www.gutenberg.org/ebooks/42052', 'en', 54), +(56631, 'Practical Lithography', 'Seymour, Alfred', '2012-07-10', 19, 'https://www.gutenberg.org/ebooks/40198', 'en', 5148), +(56632, 'Os Pobres\r\nPrecedido de uma Carta-Prefacio de Guerra Junqueiro', 'Brandão, Raul', '2007-03-17', 27, 'https://www.gutenberg.org/ebooks/20841', 'pt', 1763), +(56633, 'Il Libro Nero', 'Barrili, Anton Giulio', '2011-11-21', 33, 'https://www.gutenberg.org/ebooks/38082', 'it', 98), +(56634, 'The Letters of Amerigo Vespucci, and Other Documents Illustrative of His Career', 'Vespucci, Amerigo', '2011-07-31', 76, 'https://www.gutenberg.org/ebooks/36924', 'en', 18415), +(56635, 'Thomas l\'imposteur\nHistoire', 'Cocteau, Jean', '2019-07-10', 111, 'https://www.gutenberg.org/ebooks/59889', 'fr', 11613), +(56636, 'A Hero of Liége: A Story of the Great War', 'Strang, Herbert', '2012-03-14', 28, 'https://www.gutenberg.org/ebooks/39150', 'en', 1523), +(56637, 'The Devil\'s Pool', 'Sand, George', '2007-07-04', 61, 'https://www.gutenberg.org/ebooks/21993', 'en', 8575), +(56638, 'Homes and How to Make Them', 'Gardner, E. C. (Eugene Clarence)', '2004-12-03', 74, 'https://www.gutenberg.org/ebooks/14248', 'en', 2800), +(56639, 'Harper\'s Round Table, June 16, 1896', 'Various', '2018-10-26', 2, 'https://www.gutenberg.org/ebooks/58167', 'en', 668), +(56640, 'Armour in England, from the Earliest Times to the Reign of James the First', 'Gardner, John Starkie', '2013-12-29', 22, 'https://www.gutenberg.org/ebooks/44538', 'en', 18416), +(56641, 'Women and Economics\r\nA Study of the Economic Relation Between Men and Women as a Factor in Social Evolution', 'Gilman, Charlotte Perkins', '2018-09-16', 65, 'https://www.gutenberg.org/ebooks/57913', 'en', 4633), +(56642, 'A Crime of the Under-seas', 'Boothby, Guy', '2011-05-15', 30, 'https://www.gutenberg.org/ebooks/36118', 'en', 179), +(56643, 'The Yellow Book, An Illustrated Quarterly, Vol. 2, July 1894', NULL, '2013-01-19', 28, 'https://www.gutenberg.org/ebooks/41876', 'en', 18417), +(56644, 'Lectures on Dramatic Art and Literature', 'Schlegel, August Wilhelm von', '2004-12-01', 32, 'https://www.gutenberg.org/ebooks/7148', 'en', 7292), +(56645, 'Rescuing the Czar\r\nTwo authentic diaries arranged and translated', 'Smythe, James P.', '2004-07-22', 8, 'https://www.gutenberg.org/ebooks/12983', 'en', 18418), +(56646, 'The Downfall', 'Zola, Émile', '2004-10-25', 72, 'https://www.gutenberg.org/ebooks/13851', 'en', 1180), +(56647, 'Alfred de Musset', 'Barine, Arvède', '2009-02-27', 19, 'https://www.gutenberg.org/ebooks/28210', 'fr', 14171), +(56648, 'Kittyleen\r\nFlaxie Frizzle Stories', 'May, Sophie', '2015-06-17', 39, 'https://www.gutenberg.org/ebooks/49227', 'en', 195), +(56649, 'Reize naar Surinamen en door de binnenste gedeelten van Guiana — Compleet', 'Stedman, John Gabriel', '2005-05-01', 20, 'https://www.gutenberg.org/ebooks/8100', 'nl', 5392), +(56650, 'The Pilot: A Tale of the Sea', 'Cooper, James Fenimore', '2005-04-01', 83, 'https://www.gutenberg.org/ebooks/7974', 'en', 2564), +(56651, 'Mrs. Radigan: Her Biography, with that of Miss Pearl Veal, and the Memoirs of J. Madison Mudison', 'Lloyd, Nelson', '2017-10-03', 2, 'https://www.gutenberg.org/ebooks/55678', 'en', 781), +(56652, 'Musical Portraits : Interpretations of Twenty Modern Composers', 'Rosenfeld, Paul', '2006-10-16', 25, 'https://www.gutenberg.org/ebooks/19557', 'en', 3342), +(56653, 'Slave Narratives: a Folk History of Slavery in the United States\r\nFrom Interviews with Former Slaves\r\nGeorgia Narratives, Part 4', 'United States. Work Projects Administration', '2006-06-01', 38, 'https://www.gutenberg.org/ebooks/18485', 'en', 18419), +(56654, 'The Age of Innocence', 'Wharton, Edith', '1996-05-01', 1456, 'https://www.gutenberg.org/ebooks/541', 'en', 847), +(56655, 'From Slave to College President: Being the Life Story of Booker T. Washington', 'Pike, G. Holden (Godfrey Holden)', '2008-11-14', 26, 'https://www.gutenberg.org/ebooks/27258', 'en', 11580), +(56656, 'Across the Mesa', 'Bagg, Helen', '2008-10-21', 31, 'https://www.gutenberg.org/ebooks/26984', 'en', 48), +(56657, 'The Geological History of Fossil Butte National Monument and Fossil Basin', 'Casilliano, Michael', '2015-08-30', 12, 'https://www.gutenberg.org/ebooks/49829', 'en', 18420), +(56658, 'Quaint Epitaphs', 'Various', '2007-09-05', 19, 'https://www.gutenberg.org/ebooks/22518', 'en', 17723), +(56659, 'Landmarks of Scientific Socialism: \"Anti-Duehring\"', 'Engels, Friedrich', '2010-04-09', 35, 'https://www.gutenberg.org/ebooks/31933', 'en', 18421), +(56660, 'Doomsday Eve', 'Williams, Robert Moore', '2015-10-05', 80, 'https://www.gutenberg.org/ebooks/50138', 'en', 26), +(56661, 'El Diablo', 'Norton, Brayton', '2009-02-08', 22, 'https://www.gutenberg.org/ebooks/28022', 'en', 323), +(56662, 'Bandit Love', 'Savage, Juanita', '2009-01-21', 13, 'https://www.gutenberg.org/ebooks/27856', 'en', 3909), +(56663, 'The Runaway Donkey, and Other Rhymes for Children', 'Poulsson, Emilie', '2014-09-15', 13, 'https://www.gutenberg.org/ebooks/46861', 'en', 859), +(56664, 'Vikings of the Pacific\nThe Adventures of the Explorers who Came from the West, Eastward', 'Laut, Agnes C.', '2006-11-11', 27, 'https://www.gutenberg.org/ebooks/19765', 'en', 2320), +(56665, 'Venäläistä rakkautta', 'Chekhov, Anton Pavlovich', '2015-05-21', 6, 'https://www.gutenberg.org/ebooks/49015', 'fi', 147), +(56666, 'The Bible, Douay-Rheims, Book 32: Daniel\nThe Challoner Revision', NULL, '2005-06-01', 7, 'https://www.gutenberg.org/ebooks/8332', 'en', 5899), +(56667, 'On the Fourth Planet', 'Bone, Jesse F. (Jesse Franklin)', '2016-01-12', 70, 'https://www.gutenberg.org/ebooks/50904', 'en', 26), +(56668, 'Roundabout Papers', 'Thackeray, William Makepeace', '2006-05-22', 23, 'https://www.gutenberg.org/ebooks/2608', 'en', 5270), +(56669, 'Lord Arthur Savile\'s Crime; The Portrait of Mr. W.H., and Other Stories', 'Wilde, Oscar', '1997-01-01', 184, 'https://www.gutenberg.org/ebooks/773', 'en', 409), +(56670, 'The Crimson Sign\r\nA Narrative of the Adventures of Mr. Gervase Orme, Sometime Lieutenant in Mountjoy\'s Regiment of Foot', 'Keightley, S. R. (Samuel Robert)', '2017-04-24', 10, 'https://www.gutenberg.org/ebooks/54598', 'en', 98), +(56671, 'Punch, or the London Charivari, Volume 103, July 16, 1892', 'Various', '2005-01-31', 5, 'https://www.gutenberg.org/ebooks/14846', 'en', 134), +(56672, 'A History of English Poetry: an Unpublished Continuation', 'Warton, Thomas', '2010-09-06', 13, 'https://www.gutenberg.org/ebooks/33658', 'en', 3973), +(56673, 'Punch, or the London Charivari, October 28th 1893', 'Various', '2012-04-03', 3, 'https://www.gutenberg.org/ebooks/39362', 'en', 134), +(56674, 'A Reckless Character, and Other Stories', 'Turgenev, Ivan Sergeevich', '2005-06-06', 45, 'https://www.gutenberg.org/ebooks/15994', 'en', 85), +(56675, 'Pastoral Days; or, Memories of a New England Year', 'Gibson, W. Hamilton (William Hamilton)', '2012-11-03', 24, 'https://www.gutenberg.org/ebooks/41278', 'en', 14181), +(56676, 'Reminiscences of a Pioneer', 'Thompson, William', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11508', 'en', 18422), +(56677, 'The Three Brothers', 'Phillpotts, Eden', '2018-11-25', 14, 'https://www.gutenberg.org/ebooks/58355', 'en', 712), +(56678, 'Freeway', 'Walton, Bryce', '2019-04-16', 48, 'https://www.gutenberg.org/ebooks/59287', 'en', 26), +(56679, 'The Seven Darlings', 'Morris, Gouverneur', '2013-10-19', 18, 'https://www.gutenberg.org/ebooks/43977', 'en', 18423), +(56680, 'Uncle Terry: A Story of the Maine Coast', 'Munn, Charles Clark', '2009-03-30', 14, 'https://www.gutenberg.org/ebooks/28446', 'en', 1541), +(56681, 'The Popes and Science\r\nThe History of the Papal Relations to Science During the Middle Ages and Down to Our Own Time', 'Walsh, James J. (James Joseph)', '2010-10-02', 14, 'https://www.gutenberg.org/ebooks/34019', 'en', 186), +(56682, 'Romantic Ireland; volume 2/2', 'McManus, Blanche', '2014-07-28', 7, 'https://www.gutenberg.org/ebooks/46439', 'en', 117), +(56683, 'Cuentos de navidad y reyes; cuentos de la patria; cuentos antiguos', 'Pardo Bazán, Emilia, condesa de', '2017-10-25', 12, 'https://www.gutenberg.org/ebooks/55812', 'es', 3452), +(56684, 'Red, White, Blue Socks. Part Second\nBeing the Second Book of the Series', 'Barrow, Sarah L.', '2009-08-03', 13, 'https://www.gutenberg.org/ebooks/29594', 'en', 4581), +(56685, 'The Book of the Bush\r\nContaining Many Truthful Sketches of the Early Colonial Life of Squatters, Whalers, Convicts, Diggers, and Others Who Left Their Native Land and Never Returned', 'Dunderdale, George', '2005-07-24', 26, 'https://www.gutenberg.org/ebooks/16349', 'en', 767), +(56686, 'From London to Land\'s End', 'Defoe, Daniel', '2006-01-01', 3, 'https://www.gutenberg.org/ebooks/9684', 'en', 4627), +(56687, 'Carried Off: A Story of Pirate Times', 'Stuart, Esmè', '2012-08-06', 11, 'https://www.gutenberg.org/ebooks/23892', 'en', 3828), +(56688, 'The Culprit Fay, and Other Poems', 'Drake, Joseph Rodman', '1995-08-01', 34, 'https://www.gutenberg.org/ebooks/317', 'en', 18424), +(56689, 'She Buildeth Her House', 'Comfort, Will Levington', '2011-01-02', 19, 'https://www.gutenberg.org/ebooks/34825', 'en', 18425), +(56690, 'Extracts from a Journal of a Voyage of Visitation in the \"Hawk,\" 1859', 'Feild, Edward', '2006-09-16', 4, 'https://www.gutenberg.org/ebooks/19301', 'en', 18426), +(56691, 'Punch, or the London Charivari, Vol. 146, April 15, 1914', 'Various', '2007-10-10', 12, 'https://www.gutenberg.org/ebooks/22940', 'en', 134), +(56692, 'Frank Before Vicksburg\nThe Gun-Boat Series', 'Castlemon, Harry', '2013-02-15', 14, 'https://www.gutenberg.org/ebooks/42099', 'en', 1447), +(56693, 'The Stories Polly Pepper Told to the Five Little Peppers in the Little Brown House', 'Sidney, Margaret', '2015-07-18', 40, 'https://www.gutenberg.org/ebooks/49471', 'en', 3621), +(56694, 'The Monster Men', 'Burroughs, Edgar Rice', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8756', 'en', 580), +(56695, 'Mother West Wind\'s Animal Friends', 'Burgess, Thornton W. (Thornton Waldo)', '2012-05-15', 71, 'https://www.gutenberg.org/ebooks/39706', 'en', 179), +(56696, 'Boys and Girls Bookshelf; a Practical Plan of Character Building, Volume I (of 17)\nFun and Thought for Little Folk', 'Various', '2008-05-06', 158, 'https://www.gutenberg.org/ebooks/25359', 'en', 1063), +(56697, 'The Rover Boys on the Ocean; Or, A chase for a fortune', 'Stratemeyer, Edward', '2004-06-01', 33, 'https://www.gutenberg.org/ebooks/5875', 'en', 10121), +(56698, 'The Catholic World, Vol. 25, April 1877 to September 1877', 'Various', '2018-08-26', 32, 'https://www.gutenberg.org/ebooks/57779', 'en', 96), +(56699, 'Preliminary Report of the Commission Appointed by the University of Pennsylvania to Investigate Modern Spiritualism\r\nIn Accordance with the Request of the Late Henry Seybert', 'University of Pennsylvania. Seybert Commission for Investigating Modern Spiritualism', '2004-04-01', 37, 'https://www.gutenberg.org/ebooks/11950', 'en', 9649), +(56700, 'State of the Union Addresses', 'Bush, George W. (George Walker)', '2004-02-01', 23, 'https://www.gutenberg.org/ebooks/5049', 'en', 1926), +(56701, 'The Eagle\'s Shadow', 'Cabell, James Branch', '2004-01-01', 66, 'https://www.gutenberg.org/ebooks/10882', 'en', 2442), +(56702, 'A View of Society and Manners in France, Switzerland, and Germany, Vol. 2 (of 2)\r\nWith Anecdotes Relating to Some Eminent Characters', 'Moore, John', '2019-01-19', 6, 'https://www.gutenberg.org/ebooks/58731', 'en', 13880), +(56703, 'Der Spiegel: Anekdoten zeitgenössischer deutscher Erzähler', NULL, '2018-02-04', 7, 'https://www.gutenberg.org/ebooks/56499', 'de', 18427), +(56704, 'Where the Phph Pebbles Go', 'De Ford, Miriam Allen', '2016-08-14', 34, 'https://www.gutenberg.org/ebooks/52805', 'en', 26), +(56705, 'Tentamen Botanicum de Filicum Generibus Dorsiferarum\nMémoires de l\'Académie Royale des Sciences de Turin vol. 5, 401-422', 'Smith, James Edward', '2012-04-25', 14, 'https://www.gutenberg.org/ebooks/39534', 'la', 18428), +(56706, 'Angélique de Mackau, Marquise de Bombelles, et la Cour de Madame Élisabeth', 'Fleury, Maurice, comte', '2014-02-18', 10, 'https://www.gutenberg.org/ebooks/44960', 'fr', 4032), +(56707, 'The Contemporary Review, January 1883\nVol 43, No. 1', 'Various', '2008-07-03', 28, 'https://www.gutenberg.org/ebooks/25957', 'en', 11045), +(56708, 'The Jesuits', 'Hoare, Edward', '2016-05-10', 14, 'https://www.gutenberg.org/ebooks/52039', 'en', 14439), +(56709, 'Gigolo', 'Ferber, Edna', '2007-01-22', 32, 'https://www.gutenberg.org/ebooks/20419', 'en', 112), +(56710, 'Mémoires du maréchal Marmont, duc de Raguse (5/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2010-10-02', 6, 'https://www.gutenberg.org/ebooks/33832', 'fr', 3053), +(56711, 'Life in Afrikanderland as viewed by an Afrikander\nA story of life in South Africa, based on truth', 'CIOS', '2018-12-19', 5, 'https://www.gutenberg.org/ebooks/58503', 'en', 18429), +(56712, 'The Atlantic Monthly, Volume 14, No. 85, November, 1864\r\nA Magazine of Literature, Art, and Politics', 'Various', '2008-03-21', 33, 'https://www.gutenberg.org/ebooks/24885', 'en', 1227), +(56713, 'Ethics — Part 1', 'Spinoza, Benedictus de', '1997-05-01', 119, 'https://www.gutenberg.org/ebooks/919', 'en', 680), +(56714, 'The Twins of Table Mountain, and Other Stories', 'Harte, Bret', '2006-06-03', 32, 'https://www.gutenberg.org/ebooks/2862', 'en', 315), +(56715, 'Babylonian and Assyrian Laws, Contracts and Letters', 'Johns, C. H. W. (Claude Hermann Walter)', '2009-05-03', 23, 'https://www.gutenberg.org/ebooks/28674', 'en', 18430), +(56716, 'A Girl of the Limberlost', 'Stratton-Porter, Gene', '2006-03-08', 196, 'https://www.gutenberg.org/ebooks/125', 'en', 18431), +(56717, 'The Horse-Stealers and Other Stories', 'Chekhov, Anton Pavlovich', '2004-09-09', 134, 'https://www.gutenberg.org/ebooks/13409', 'en', 85), +(56718, 'Opúsculos por Alexandre Herculano - Tomo 05', 'Herculano, Alexandre', '2006-03-01', 26, 'https://www.gutenberg.org/ebooks/17895', 'pt', 410), +(56719, 'Hands Up; or, Thirty-Five Years of Detective Life in the Mountains and on the Plains\r\nReminiscences by General D. J. Cook, Chief of the Rocky Mountains Detective Association', 'Cook, D. J.‏ ‎(David J.)', '2013-08-02', 21, 'https://www.gutenberg.org/ebooks/43379', 'en', 18432), +(56720, 'Project Gutenberg Newsletters 1999\r\nThirteen Letters: December 1998 to December 1999', 'Hart, Michael', '2015-04-22', 26, 'https://www.gutenberg.org/ebooks/48791', 'en', 340), +(56721, 'The Children\'s Tabernacle; Or, Hand-Work and Heart-Work', 'A. L. O. E.', '2015-08-07', 37, 'https://www.gutenberg.org/ebooks/49643', 'en', 31), +(56722, 'Wyandot Government: A Short Study of Tribal Society\nBureau of American Ethnology', 'Powell, John Wesley', '2005-10-25', 40, 'https://www.gutenberg.org/ebooks/16947', 'en', 18433), +(56723, 'The Infant\'s Skull; Or, The End of the World. A Tale of the Millennium', 'Sue, Eugène', '2010-03-24', 11, 'https://www.gutenberg.org/ebooks/31759', 'en', 1475), +(56724, 'Life and Travels of Mungo Park', 'Park, Mungo', '2005-07-01', 19, 'https://www.gutenberg.org/ebooks/8564', 'en', 9053), +(56725, 'Practical Rules for the Management of a Locomotive Engine\nin the Station, on the Road, and in cases of Accident', 'Gregory, Charles Hutton', '2006-08-28', 5, 'https://www.gutenberg.org/ebooks/19133', 'en', 18434), +(56726, 'Wanted: A Cook\nDomestic Dialogues', 'Dale, Alan', '2013-10-19', 26, 'https://www.gutenberg.org/ebooks/43983', 'en', 1994), +(56727, 'España Contemporánea\nObras Completas Vol. XIX', 'Darío, Rubén', '2017-06-19', 13, 'https://www.gutenberg.org/ebooks/54934', 'es', 4023), +(56728, 'Märchen-Almanach auf das Jahr 1826', 'Hauff, Wilhelm', '2004-10-01', 49, 'https://www.gutenberg.org/ebooks/6638', 'de', 900), +(56729, 'The Comedies of Terence\nLiterally Translated into English Prose, with Notes', 'Terence', '2007-07-31', 75, 'https://www.gutenberg.org/ebooks/22188', 'en', 18435), +(56730, 'Agawan ng Dangal', 'Cortes, Fausta', '2013-05-30', 12, 'https://www.gutenberg.org/ebooks/42851', 'tl', 11944), +(56731, 'M. P.\'s in Session: From Mr. Punch\'s Parliamentary Portrait Gallery', 'Furniss, Harry', '2009-08-01', 15, 'https://www.gutenberg.org/ebooks/29560', 'en', 18436), +(56732, 'Specimens with Memoirs of the Less-known British Poets, Complete', NULL, '2006-01-01', 15, 'https://www.gutenberg.org/ebooks/9670', 'en', 54), +(56733, 'Great Astronomers', 'Ball, Robert S. (Robert Stawell)', '2000-08-01', 232, 'https://www.gutenberg.org/ebooks/2298', 'en', 1590), +(56734, 'The House That Jack Built, a Game of Forfeits\r\nTo Which is Added, the Entertaining Fable of \"The Magpie\"', 'Anonymous', '2007-12-15', 12, 'https://www.gutenberg.org/ebooks/23866', 'en', 1141), +(56735, 'Meine Lebens-Erinnerungen - Band 1', 'Oehlenschläger, Adam', '2015-03-22', 11, 'https://www.gutenberg.org/ebooks/48557', 'de', 17903), +(56736, 'Some Spring Days in Iowa', 'Lazell, Frederick John', '2006-04-22', 12, 'https://www.gutenberg.org/ebooks/18227', 'en', 1216), +(56737, 'Squire Arden; volume 1 of 3', 'Oliphant, Mrs. (Margaret)', '2017-02-04', 16, 'https://www.gutenberg.org/ebooks/54108', 'en', 376), +(56738, 'Odd Numbers\nBeing Further Chronicles of Shorty McCabe', 'Ford, Sewell', '2008-09-04', 43, 'https://www.gutenberg.org/ebooks/26528', 'en', 2116), +(56739, 'Rose Leaf and Apple Leaf', 'Rodd, Rennell', '2011-04-18', 11, 'https://www.gutenberg.org/ebooks/35903', 'en', 532), +(56740, 'Natalìa ed altri racconti', 'Castelnuovo, Enrico', '2015-07-19', 9, 'https://www.gutenberg.org/ebooks/49485', 'it', 474), +(56741, 'Christianity and Islam', 'Becker, Carl Heinrich', '2004-02-01', 69, 'https://www.gutenberg.org/ebooks/11198', 'en', 18437), +(56742, 'Revolution, and Other Essays', 'London, Jack', '2004-01-01', 74, 'https://www.gutenberg.org/ebooks/4953', 'en', 4637), +(56743, 'Reina Valera New Testament of the Bible 1909', NULL, '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/5881', 'es', 2781), +(56744, 'Brock Centenary, 1812-1912', NULL, '2012-01-20', 4, 'https://www.gutenberg.org/ebooks/38620', 'en', 10383), +(56745, 'When Wilderness was King: A Tale of the Illinois Country', 'Parrish, Randall', '2019-05-27', 29, 'https://www.gutenberg.org/ebooks/59617', 'en', 8288), +(56746, 'Hetty Gray\r\nNobody\'s Bairn', 'Gilbert, Rosa M. (Rosa Mulholland)', '2005-04-04', 15, 'https://www.gutenberg.org/ebooks/15538', 'en', 766), +(56747, 'The Winepress', 'Beals, Christine', '2014-03-28', 11, 'https://www.gutenberg.org/ebooks/45248', 'en', 109), +(56748, 'At Sunwich Port, Complete', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/10876', 'en', 11501), +(56749, 'Flemish Legends', 'Coster, Charles de', '2011-10-08', 35, 'https://www.gutenberg.org/ebooks/37668', 'en', 18438), +(56750, 'Letters Exhibiting the Most Prominent Doctrines of the Church of Jesus Christ of Latter-Day Saints', 'Spencer, Orson', '2014-05-31', 20, 'https://www.gutenberg.org/ebooks/45846', 'en', 377), +(56751, 'The Enormous Room', 'Gold, H. L. (Horace Leonard)', '2010-04-25', 33, 'https://www.gutenberg.org/ebooks/32128', 'en', 26), +(56752, 'True Stories of Girl Heroines', 'Everett-Green, Evelyn', '2012-08-15', 20, 'https://www.gutenberg.org/ebooks/40508', 'en', 4289), +(56753, 'Valkopukuinen nainen 2\r\nPerheromaani', 'Collins, Wilkie', '2017-01-08', 9, 'https://www.gutenberg.org/ebooks/53923', 'fi', 48), +(56754, 'The Young and Field Literary Readers, Book 2', 'Young, Ella Flagg', '2011-12-26', 6, 'https://www.gutenberg.org/ebooks/38412', 'en', 1019), +(56755, 'A Lady\'s Tour in Corsica, Vol. 2 (of 2)', 'Forde, Gertrude', '2014-02-24', 19, 'https://www.gutenberg.org/ebooks/44994', 'en', 7348), +(56756, 'Sei Forse L\'Angelo Fedele\r\nFrom Eugene Onegin', NULL, '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10278', 'it', 4227), +(56757, 'The Red Derelict', 'Mitford, Bertram', '2011-07-03', 5, 'https://www.gutenberg.org/ebooks/36588', 'en', 323), +(56758, 'Tales of South Africa', 'Bryden, H. A. (Henry Anderson)', '2010-06-20', 19, 'https://www.gutenberg.org/ebooks/32914', 'en', 13321), +(56759, 'The Seaman\'s Medical Instructor\nIn a Course of Lectures on Accidents and Diseases Incident to Seamen', 'Falck, N. D. (Nikolai Detlef)', '2019-05-03', 31, 'https://www.gutenberg.org/ebooks/59425', 'en', 8392), +(56760, 'The Bag of Diamonds', 'Fenn, George Manville', '2008-03-19', 31, 'https://www.gutenberg.org/ebooks/24871', 'en', 1563), +(56761, 'Winner Take All', 'Evans, Larry', '2006-07-14', 28, 'https://www.gutenberg.org/ebooks/18829', 'en', 61), +(56762, 'Story of the Session of the California Legislature of 1909', 'Hichborn, Franklin', '2001-11-01', 17, 'https://www.gutenberg.org/ebooks/2896', 'en', 18439), +(56763, 'The Scalp Hunters', 'Reid, Mayne', '2007-10-31', 54, 'https://www.gutenberg.org/ebooks/23268', 'en', 18440), +(56764, 'The Young Surveyor; Or, Jack on the Prairies', 'Trowbridge, J. T. (John Townsend)', '2009-05-04', 11, 'https://www.gutenberg.org/ebooks/28680', 'en', 18441), +(56765, 'An Orkney Maid', 'Barr, Amelia E.', '2009-08-22', 14, 'https://www.gutenberg.org/ebooks/29752', 'en', 14828), +(56766, 'Monsieur de Camors — Volume 2', 'Feuillet, Octave', '2003-04-01', 15, 'https://www.gutenberg.org/ebooks/3944', 'en', 560), +(56767, 'Kaupungin lapsi', 'Anttila, Selma', '2016-04-03', 15, 'https://www.gutenberg.org/ebooks/51648', 'fi', 456), +(56768, 'Jean-nu-pieds, Vol. 1\r\nchronique de 1832', 'Delpit, Albert', '2006-03-19', 16, 'https://www.gutenberg.org/ebooks/18015', 'fr', 5511), +(56769, 'Helbeck of Bannisdale — Volume II', 'Ward, Humphry, Mrs.', '2005-12-01', 16, 'https://www.gutenberg.org/ebooks/9442', 'en', 1397), +(56770, 'The Wrack of the Storm', 'Maeterlinck, Maurice', '2006-02-26', 20, 'https://www.gutenberg.org/ebooks/17861', 'en', 335), +(56771, 'Der Sinn und Wert des Lebens', 'Eucken, Rudolf', '2015-04-22', 12, 'https://www.gutenberg.org/ebooks/48765', 'de', 29), +(56772, 'Auld Licht Idyls', 'Barrie, J. M. (James Matthew)', '2005-07-01', 23, 'https://www.gutenberg.org/ebooks/8590', 'en', 5681), +(56773, 'The Gilded Age: A Tale of Today', 'Twain, Mark', '2004-06-21', 272, 'https://www.gutenberg.org/ebooks/3178', 'en', 1238), +(56774, 'Our Philadelphia', 'Pennell, Elizabeth Robins', '2011-11-21', 24, 'https://www.gutenberg.org/ebooks/38076', 'en', 18442), +(56775, 'Zur Psychopathologie des Alltagslebens\nÜber Vergessen, Versprechen, Vergreifen, Aberglaube und Irrtum', 'Freud, Sigmund', '2008-01-26', 47, 'https://www.gutenberg.org/ebooks/24429', 'de', 18443), +(56776, 'The Heritage of the Kurts, Volume 2 (of 2)', 'Bjørnson, Bjørnstjerne', '2011-10-19', 21, 'https://www.gutenberg.org/ebooks/37802', 'en', 1938), +(56777, 'Marjorie in Command', 'Wells, Carolyn', '2017-11-19', 13, 'https://www.gutenberg.org/ebooks/56009', 'en', 31), +(56778, 'Athaliah\nA Tragedy, Intended For Reading Only, Translated Into\nEnglish Blank Verse, From Racine (A. Gombert\'s Edition,\n1825)', 'Racine, Jean', '2007-06-29', 33, 'https://www.gutenberg.org/ebooks/21967', 'en', 18444), +(56779, 'The Dreamer of Dreams', 'Marie, Queen, consort of Ferdinand I, King of Romania', '2012-10-06', 34, 'https://www.gutenberg.org/ebooks/40950', 'en', 1007), +(56780, 'Kootut teokset 3: Näytelmät', 'Erkko, J. H.', '2006-12-11', 12, 'https://www.gutenberg.org/ebooks/20089', 'fi', 247), +(56781, 'Villars and Its Environs', 'Flemwell, G. (George)', '2018-10-30', 7, 'https://www.gutenberg.org/ebooks/58193', 'en', 18445), +(56782, 'Két kritika', 'Babits, Mihály', '2018-03-25', 15, 'https://www.gutenberg.org/ebooks/56835', 'hu', 7039), +(56783, 'Fly Leaves', 'Calverley, Charles Stuart', '2003-12-01', 7, 'https://www.gutenberg.org/ebooks/4739', 'en', 532), +(56784, 'Sermons Preached at the Church of St. Paul the Apostle, New York, During the Year 1861.', 'Paulist Fathers', '2019-03-10', 10, 'https://www.gutenberg.org/ebooks/59041', 'en', 5091), +(56785, 'The Science of Animal Locomotion (Zoopraxography)\r\nAn Electro-Photographic Investigation of Consecutive Phases of Animal Movements', 'Muybridge, Eadweard', '2012-06-15', 23, 'https://www.gutenberg.org/ebooks/39998', 'en', 2396), +(56786, 'Der Tor: Roman', 'Kellermann, Bernhard', '2013-01-20', 15, 'https://www.gutenberg.org/ebooks/41882', 'de', 253), +(56787, 'Durch Wüste und Harem\nGesammelte Reiseromane, Band I', 'May, Karl', '2009-07-06', 74, 'https://www.gutenberg.org/ebooks/29336', 'de', 323), +(56788, 'Black Beetles in Amber', 'Bierce, Ambrose', '2004-07-21', 57, 'https://www.gutenberg.org/ebooks/12977', 'en', 8), +(56789, 'Dilemmas of Pride, (Vol 1 of 3)', 'Loudon, Mrs. (Margracia)', '2011-04-04', 9, 'https://www.gutenberg.org/ebooks/35769', 'en', 61), +(56790, 'The Wild Garden\r\nOr Our Groves and Gardens Made Beautiful by the Naturalisation of Hardy Exotic Plants; Being One Way Onwards from the Dark Ages', 'Robinson, W. (William)', '2014-11-14', 47, 'https://www.gutenberg.org/ebooks/47349', 'en', 18446), +(56791, 'Mother\'s Remedies\r\nOver One Thousand Tried and Tested Remedies from Mothers of the United States and Canada', 'Ritter, Thomas Jefferson', '2006-01-01', 78, 'https://www.gutenberg.org/ebooks/17439', 'en', 2161), +(56792, 'The Sewerage of Sea Coast Towns', 'Adams, Henry Charles', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7980', 'en', 18447), +(56793, 'Runoja', 'Hellaakoski, Aaro', '2004-08-03', 27, 'https://www.gutenberg.org/ebooks/13099', 'fi', 8), +(56794, 'Ueber die schrecklichen Wirkungen des Aufsturzes eines Kometen auf die Erde\nund über die vor fünftausend Jahren gehabte Erscheinung dieser Art', 'Gelpke, August Heinrich Christian', '2006-05-29', 31, 'https://www.gutenberg.org/ebooks/18471', 'de', 1590), +(56795, 'Venus in Furs', 'Sacher-Masoch, Leopold, Ritter von', '2004-11-01', 1384, 'https://www.gutenberg.org/ebooks/6852', 'en', 14084), +(56796, 'The Innocents Abroad', 'Twain, Mark', '2005-09-01', 5, 'https://www.gutenberg.org/ebooks/9026', 'en', 885), +(56797, 'From Snotty to Sub', 'Forester, Wolston B. C. W. (Wolston Beaumont Charles Weld)', '2015-02-18', 15, 'https://www.gutenberg.org/ebooks/48301', 'en', 3601), +(56798, '彭公案', 'Tanmengdaoren', '2008-10-20', 33, 'https://www.gutenberg.org/ebooks/26970', 'zh', 4096), +(56799, 'The Web of the Golden Spider', 'Bartlett, Frederick Orin', '2009-06-12', 12, 'https://www.gutenberg.org/ebooks/29104', 'en', 48), +(56800, 'The Hate Disease', 'Leinster, Murray', '2009-12-31', 63, 'https://www.gutenberg.org/ebooks/30815', 'en', 26), +(56801, 'Antony Waymouth; Or, The Gentlemen Adventurers', 'Kingston, William Henry Giles', '2010-11-29', 19, 'https://www.gutenberg.org/ebooks/34489', 'en', 3823), +(56802, 'Punch, or the London Charivari, Vol. 109, August 24, 1895', 'Various', '2014-09-18', 7, 'https://www.gutenberg.org/ebooks/46895', 'en', 134), +(56803, 'Ylösnousemus I', 'Tolstoy, Leo, graf', '2004-05-01', 23, 'https://www.gutenberg.org/ebooks/12379', 'fi', 18448), +(56804, 'Der Struwwelpeter', 'Hoffmann, Heinrich', '2006-11-15', 17, 'https://www.gutenberg.org/ebooks/19791', 'de', 6086), +(56805, 'Blackwood\'s Edinburgh Magazine, Volume 59, No. 364, February 1846', 'Various', '2009-09-08', 6, 'https://www.gutenberg.org/ebooks/29938', 'en', 711), +(56806, 'Sea Stories', NULL, '2013-03-25', 195, 'https://www.gutenberg.org/ebooks/42409', 'en', 324), +(56807, 'Arcturus Times Three', 'Sharkey, Jack', '2016-04-21', 36, 'https://www.gutenberg.org/ebooks/51822', 'en', 1564), +(56808, 'The White Old Maid (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 17, 'https://www.gutenberg.org/ebooks/9214', 'en', 3175), +(56809, 'Lost in Translation', 'Janifer, Laurence M.', '2009-09-19', 56, 'https://www.gutenberg.org/ebooks/30029', 'en', 179), +(56810, 'The Secret Victory', 'McKenna, Stephen', '2015-02-01', 17, 'https://www.gutenberg.org/ebooks/48133', 'en', 2902), +(56811, 'The First Landing on Wrangel Island\nWith Some Remarks on the Northern Inhabitants', 'Rosse, Irving C. (Irving Collins)', '2006-06-21', 30, 'https://www.gutenberg.org/ebooks/18643', 'en', 18449), +(56812, 'The Man Between: An International Romance', 'Barr, Amelia E.', '1997-01-01', 72, 'https://www.gutenberg.org/ebooks/787', 'en', 48), +(56813, 'Self Knowledge and Guide to Sex Instruction: Vital Facts of Life for All Ages', 'Shannon, Thomas W. (Thomas Washington)', '2015-01-11', 142, 'https://www.gutenberg.org/ebooks/47947', 'en', 5472), +(56814, 'The Life and Opinions of Tristram Shandy, Gentleman', 'Sterne, Laurence', '1997-10-01', 670, 'https://www.gutenberg.org/ebooks/1079', 'en', 9324), +(56815, 'Histoire de France - Moyen Âge; (Vol. 2 / 10)', 'Michelet, Jules', '2011-12-07', 25, 'https://www.gutenberg.org/ebooks/38244', 'fr', 624), +(56816, 'Literary Character of Men of Genius\nDrawn from Their Own Feelings and Confessions', 'Disraeli, Isaac', '2005-05-31', 40, 'https://www.gutenberg.org/ebooks/15960', 'en', 18450), +(56817, 'A Population Study of the Prairie Vole (Microtus ochrogaster) in Northeastern Kansas', 'Martin, Edwin Perry', '2012-04-07', 11, 'https://www.gutenberg.org/ebooks/39396', 'en', 4346), +(56818, 'Zuleika Dobson; Or, An Oxford Love Story', 'Beerbohm, Max, Sir', '1999-08-01', 148, 'https://www.gutenberg.org/ebooks/1845', 'en', 48), +(56819, 'Vie de Henri Brulard, tome 1 (of 2)', 'Stendhal', '2016-12-17', 40, 'https://www.gutenberg.org/ebooks/53749', 'fr', 4588), +(56820, 'Discovering \"Evelina\": An Old-fashioned Romance\r\nA Companion Book to \"The Jessamy Bride\"', 'Moore, Frank Frankfort', '2019-04-13', 42, 'https://www.gutenberg.org/ebooks/59273', 'en', 18451), +(56821, 'Ring o\' Roses: A Nursery Rhyme Picture Book', 'Anonymous', '2007-05-11', 2, 'https://www.gutenberg.org/ebooks/21369', 'en', 859), +(56822, 'A History of Babylon, from the Foundation of the Monarchy to the Persian Conquest', 'King, L. W. (Leonard William)', '2018-03-02', 71, 'https://www.gutenberg.org/ebooks/56667', 'en', 2877), +(56823, 'The Ministry of the Spirit', 'Gordon, A. J. (Adoniram Judson)', '2008-05-08', 43, 'https://www.gutenberg.org/ebooks/25395', 'en', 5248), +(56824, 'The Boy With the U.S. Miners', 'Rolt-Wheeler, Francis', '2010-05-10', 12, 'https://www.gutenberg.org/ebooks/32322', 'en', 18452), +(56825, 'Gretchen: A Novel', 'Holmes, Mary Jane', '2012-09-07', 56, 'https://www.gutenberg.org/ebooks/40702', 'en', 61), +(56826, 'El Verdugo', 'Balzac, Honoré de', '2005-11-02', 42, 'https://www.gutenberg.org/ebooks/1425', 'en', 58), +(56827, 'La Liberté et le Déterminisme', 'Fouillée, Alfred', '2012-01-18', 19, 'https://www.gutenberg.org/ebooks/38618', 'fr', 6550), +(56828, 'Gun for Hire', 'Reynolds, Mack', '2008-01-11', 62, 'https://www.gutenberg.org/ebooks/24247', 'en', 9294), +(56829, 'English Housewifery\r\nExemplified in above Four Hundred and Fifty Receipts Giving Directions for most Parts of Cookery', 'Moxon, Elizabeth', '2003-11-01', 93, 'https://www.gutenberg.org/ebooks/10072', 'en', 6316), +(56830, 'More Misrepresentative Men', 'Graham, Harry', '2011-07-19', 8, 'https://www.gutenberg.org/ebooks/36782', 'en', 5509), +(56831, 'Diary of Samuel Pepys — Volume 36: July 1665', 'Pepys, Samuel', '2004-11-30', 18, 'https://www.gutenberg.org/ebooks/4157', 'en', 738), +(56832, 'The Seven Ages of Childhood', 'Wells, Carolyn', '2014-03-31', 15, 'https://www.gutenberg.org/ebooks/45270', 'en', 18453), +(56833, 'Sanny Kortmanin koulu\nHuvinäytelmä 3:ssa näytöksessä', 'Kiljander, Robert', '2005-03-29', 17, 'https://www.gutenberg.org/ebooks/15500', 'fi', 247), +(56834, 'The Floating Light of the Goodwin Sands', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 33, 'https://www.gutenberg.org/ebooks/21735', 'en', 470), +(56835, 'Hesiodi Carmina', 'Hesiod', '2016-10-18', 26, 'https://www.gutenberg.org/ebooks/53315', 'la', 18454), +(56836, 'An Enquiry into the Causes of the Frequent Executions at Tyburn (1725)', 'Mandeville, Bernard', '2011-10-06', 24, 'https://www.gutenberg.org/ebooks/37650', 'en', 7121), +(56837, 'Characters of Shakespeare\'s Plays', 'Hazlitt, William', '2004-02-01', 117, 'https://www.gutenberg.org/ebooks/5085', 'en', 8132), +(56838, 'The Moccasin Maker', 'Johnson, E. Pauline', '2004-06-24', 58, 'https://www.gutenberg.org/ebooks/6600', 'en', 7650), +(56839, 'Lillian Morris, and Other Stories', 'Sienkiewicz, Henryk', '2014-12-04', 39, 'https://www.gutenberg.org/ebooks/47527', 'en', 18455), +(56840, 'Isa Pang Bayani', 'Arsciwals, Juan Lauro', '2005-12-08', 20, 'https://www.gutenberg.org/ebooks/17257', 'tl', 18456), +(56841, 'Four in Camp: A Story of Summer Adventures in the New Hampshire Woods', 'Barbour, Ralph Henry', '2015-12-02', 15, 'https://www.gutenberg.org/ebooks/50590', 'en', 3), +(56842, 'The Broken Cup', 'Zschokke, Heinrich', '2007-10-17', 22, 'https://www.gutenberg.org/ebooks/23062', 'en', 179), +(56843, 'Boy Scouts Handbook\nThe First Edition, 1911', 'Boy Scouts of America', '2009-08-01', 478, 'https://www.gutenberg.org/ebooks/29558', 'en', 18457), +(56844, 'The Montessori Elementary Material\r\nThe Advanced Montessori Method', 'Montessori, Maria', '2013-06-04', 99, 'https://www.gutenberg.org/ebooks/42869', 'en', 4672), +(56845, 'A Beginner\'s Psychology', 'Titchener, Edward Bradford', '2016-03-14', 129, 'https://www.gutenberg.org/ebooks/51442', 'en', 1151), +(56846, 'Obras poéticas de Nicoláo Tolentino de Almeida, Tom. II', 'Tolentino, Nicolau', '2005-07-29', 17, 'https://www.gutenberg.org/ebooks/16385', 'pt', 8), +(56847, 'Cruise and Captures of the Alabama', 'Goodrich, Albert M.', '2011-01-29', 18, 'https://www.gutenberg.org/ebooks/35107', 'en', 18458), +(56848, 'Wall Street stories', 'Lefevre, Edwin', '2017-02-07', 36, 'https://www.gutenberg.org/ebooks/54130', 'en', 2999), +(56849, 'Tip Lewis and His Lamp', 'Pansy', '2006-01-01', 29, 'https://www.gutenberg.org/ebooks/9648', 'en', 470), +(56850, 'With a Vengeance', 'Woodley, J. B.', '2009-11-14', 39, 'https://www.gutenberg.org/ebooks/30475', 'en', 26), +(56851, 'The Harlequin Opal: A Romance. Vol. 1 (of 3)', 'Hume, Fergus', '2013-07-10', 24, 'https://www.gutenberg.org/ebooks/43187', 'en', 3148), +(56852, 'Your Mind and How to Use It: A Manual of Practical Psychology', 'Atkinson, William Walker', '2013-02-09', 438, 'https://www.gutenberg.org/ebooks/42055', 'en', 1151), +(56853, 'Their Silver Wedding Journey — Volume 2', 'Howells, William Dean', '2004-10-23', 39, 'https://www.gutenberg.org/ebooks/3372', 'en', 2035), +(56854, 'À travers l\'hémisphère sud, ou Mon second voyage autour du monde\nTome 1; Portugal, Sénégal, Brésil, Uruguay, République\nArgentine, Chili, Pérou.', 'Michel, Ernest', '2008-09-02', 13, 'https://www.gutenberg.org/ebooks/26510', 'fr', 885), +(56855, 'The Vale of Cedars; Or, The Martyr', 'Aguilar, Grace', '2004-06-01', 22, 'https://www.gutenberg.org/ebooks/12725', 'en', 15782), +(56856, 'Interludes\nbeing Two Essays, a Story, and Some Verses', 'Smith, Horace', '2005-11-14', 10, 'https://www.gutenberg.org/ebooks/17065', 'en', 8), +(56857, 'The Skeleton On Round Island\nFrom \"Mackinac And Lake Stories\", 1899', 'Catherwood, Mary Hartwell', '2007-10-30', 20, 'https://www.gutenberg.org/ebooks/23250', 'en', 877), +(56858, 'The Light Princess and Other Fairy Stories', 'MacDonald, George', '2006-07-12', 141, 'https://www.gutenberg.org/ebooks/18811', 'en', 4799), +(56859, 'Betty Wales, Sophomore', 'Dunton, Edith K. (Edith Kellogg)', '2004-09-01', 16, 'https://www.gutenberg.org/ebooks/6432', 'en', 1655), +(56860, 'The Works of William Shakespeare [Cambridge Edition] [Vol. 7 of 9]', 'Shakespeare, William', '2014-12-20', 39, 'https://www.gutenberg.org/ebooks/47715', 'en', 1088), +(56861, 'The Sherrods', 'McCutcheon, George Barr', '2011-02-24', 8, 'https://www.gutenberg.org/ebooks/35335', 'en', 18459), +(56862, 'The Iliad of Homer (1873)', 'Homer', '2007-08-23', 159, 'https://www.gutenberg.org/ebooks/22382', 'en', 17846), +(56863, 'The Mentor: Chinese Rugs, Vol. 4, Num. 2, Serial No. 102, March 1, 1916', 'Mumford, John Kimberly', '2016-04-06', 4, 'https://www.gutenberg.org/ebooks/51670', 'en', 13189), +(56864, 'The Writings of Samuel Adams - Volume 2', 'Adams, Samuel', '2000-03-01', 28, 'https://www.gutenberg.org/ebooks/2092', 'en', 1648), +(56865, 'Colloquium heptaplomeres de rerum sublimium arcanis abditis', 'Bodin, Jean', '2006-02-26', 17, 'https://www.gutenberg.org/ebooks/17859', 'la', 1444), +(56866, 'Mystery at Geneva: An Improbable Tale of Singular Happenings', 'Macaulay, Rose', '2009-12-11', 57, 'https://www.gutenberg.org/ebooks/30647', 'en', 3730), +(56867, 'College Men Without Money', 'Riddle, Carl Brown', '2017-03-08', 2, 'https://www.gutenberg.org/ebooks/54302', 'en', 18460), +(56868, 'Una Cristiana', 'Pardo Bazán, Emilia, condesa de', '2019-08-19', 79, 'https://www.gutenberg.org/ebooks/60137', 'es', 1353), +(56869, 'DIR: Gedichte', 'Vogeler, Heinrich', '2008-09-28', 16, 'https://www.gutenberg.org/ebooks/26722', 'de', 8), +(56870, 'Punch, or the London Charivari, Volume 99, November 15, 1890', 'Various', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12517', 'en', 134), +(56871, 'Harper\'s New Monthly Magazine, No. XXIV, May 1852, Vol. IV', 'Various', '2013-03-05', 16, 'https://www.gutenberg.org/ebooks/42267', 'en', 387), +(56872, 'Idle Ideas in 1905', 'Jerome, Jerome K. (Jerome Klapka)', '2002-03-01', 45, 'https://www.gutenberg.org/ebooks/3140', 'en', 1697), +(56873, 'Yellow-Cap and Other Fairy-Stories For Children', 'Hawthorne, Julian', '2010-03-27', 36, 'https://www.gutenberg.org/ebooks/31795', 'en', 1007), +(56874, 'Montezuma: An Epic on the Origin and Fate of the Aztec Nation', 'Richmond, Hiram Hoyt', '2010-04-24', 11, 'https://www.gutenberg.org/ebooks/32110', 'en', 18461), +(56875, 'Not Pretty, but Precious; And Other Short Stories', NULL, '2004-03-01', 58, 'https://www.gutenberg.org/ebooks/11392', 'en', 112), +(56876, 'Rebellion', 'Patterson, Joseph Medill', '2018-01-28', 13, 'https://www.gutenberg.org/ebooks/56455', 'en', 2083), +(56877, '千字文', 'Zhou, Xingsi', '2007-12-30', 12, 'https://www.gutenberg.org/ebooks/24075', 'zh', 10503), +(56878, 'The Elves of Mount Fern', 'Creighton, Katherine', '2018-07-27', 16, 'https://www.gutenberg.org/ebooks/57587', 'en', 3822), +(56879, 'Plaque No. 1\r\nExp. No. 1-2-3-4, Recorder #20', 'Losey\'s Orchestra', '2003-11-01', 4, 'https://www.gutenberg.org/ebooks/10240', 'en', 10794), +(56880, 'Essai d\'Introduction à l\'Histoire Généalogique', 'Poli, Oscar de (Philippe François Joseph)', '2012-08-18', 18, 'https://www.gutenberg.org/ebooks/40530', 'fr', 10455), +(56881, 'The Wind in the Rose-Bush, and Other Stories of the Supernatural', 'Freeman, Mary Eleanor Wilkins', '1999-01-01', 96, 'https://www.gutenberg.org/ebooks/1617', 'en', 3480), +(56882, 'Contes de bord', 'Corbière, Edouard', '2005-04-29', 11, 'https://www.gutenberg.org/ebooks/15732', 'fr', 324), +(56883, 'Chums in Dixie; or, The Strange Cruise of a Motorboat', 'Rathborne, St. George', '2007-05-17', 10, 'https://www.gutenberg.org/ebooks/21507', 'en', 2722), +(56884, 'Supplementary Copyright Statutes, US Copy. Office', 'Library of Congress. Copyright Office', '2003-08-01', 22, 'https://www.gutenberg.org/ebooks/4365', 'en', 1878), +(56885, 'A Mock Idyl', 'Ross, Percy', '2014-02-28', 9, 'https://www.gutenberg.org/ebooks/45042', 'en', 61), +(56886, 'A Little Present for a Good Child', 'Unknown', '2008-03-16', 26, 'https://www.gutenberg.org/ebooks/24849', 'en', 859), +(56887, 'Boys of the Light Brigade: A Story of Spain and the Peninsular War', 'Strang, Herbert', '2013-11-15', 19, 'https://www.gutenberg.org/ebooks/44190', 'en', 5773), +(56888, 'Boating', 'Woodgate, Walter Bradford', '2011-09-19', 15, 'https://www.gutenberg.org/ebooks/37462', 'en', 6926), +(56889, 'San Xavier Del Bac, Arizona: A Descriptive and Historical Guide', 'Writers\' Program of the Work Projects Administration in the State of Arizona', '2016-09-23', 5, 'https://www.gutenberg.org/ebooks/53127', 'en', 18462), +(56890, 'History of Roman Literature from its Earliest Period to the Augustan Age. Vol. II', 'Dunlop, John Colin', '2011-04-01', 11, 'https://www.gutenberg.org/ebooks/35751', 'en', 4983), +(56891, 'A Heart-Song of To-day (Disturbed by Fire from the \'Unruly Member\'): A Novel', 'Savigny, Annie G. (Annie Gregg)', '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/7184', 'en', 1219), +(56892, 'La solitude', 'Zimmermann, Johann Georg', '2016-02-14', 22, 'https://www.gutenberg.org/ebooks/51214', 'fr', 12986), +(56893, 'Mrs. Mary Robinson, Written by Herself,\r\nWith the lives of the Duchesses of Gordon and Devonshire', 'Robinson, Mary', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/9822', 'en', 18463), +(56894, 'The Time Machine', 'Wells, H. G. (Herbert George)', '2005-12-26', 177, 'https://www.gutenberg.org/ebooks/17401', 'en', 2229), +(56895, 'Italian Popular Tales', 'Crane, Thomas Frederick', '2007-11-26', 16, 'https://www.gutenberg.org/ebooks/23634', 'en', 18464), +(56896, 'Intra Muros', 'Springer, Rebecca Ruter', '2011-05-30', 78, 'https://www.gutenberg.org/ebooks/34683', 'en', 18465), +(56897, 'The Desired Woman', 'Harben, Will N. (Will Nathaniel)', '2004-07-01', 23, 'https://www.gutenberg.org/ebooks/6056', 'en', 8079), +(56898, 'First Lessons in the Maori Language, with a Short Vocabulary', 'Williams, W. L. (William Leonard)', '2014-11-16', 20, 'https://www.gutenberg.org/ebooks/47371', 'en', 18466), +(56899, 'Our Bird Comrades', 'Keyser, Leander S. (Leander Sylvester)', '2008-08-18', 26, 'https://www.gutenberg.org/ebooks/26346', 'en', 318), +(56900, 'The Two Lovers of Heaven: Chrysanthus and Daria\nA Drama of Early Christian Rome', 'Calderón de la Barca, Pedro', '2004-04-01', 21, 'https://www.gutenberg.org/ebooks/12173', 'en', 18467), +(56901, 'San Francisco and the Nicaragua Canal', 'Merry, William L. (William Lawrence)', '2013-04-27', 4, 'https://www.gutenberg.org/ebooks/42603', 'en', 18468), +(56902, 'Human Genome Project, Y Chromosome', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3524', 'en', 1841), +(56903, 'Bridge Disasters in America: The Cause and the Remedy', 'Vose, George L. (George Leonard)', '2009-10-09', 6, 'https://www.gutenberg.org/ebooks/30223', 'en', 18469), +(56904, 'Mr. Punch in Wig and Gown: The Lighter Side of Bench and Bar', NULL, '2015-02-22', 18, 'https://www.gutenberg.org/ebooks/48339', 'en', 18470), +(56905, 'The Treasure of Heaven: A Romance of Riches', 'Corelli, Marie', '2006-05-25', 32, 'https://www.gutenberg.org/ebooks/18449', 'en', 61), +(56906, 'The Traitor: A Story of the Fall of the Invisible Empire', 'Dixon, Thomas, Jr.', '2017-05-23', 24, 'https://www.gutenberg.org/ebooks/54766', 'en', 793), +(56907, 'Adventures of Huckleberry Finn', 'Twain, Mark', '2004-06-29', 6102, 'https://www.gutenberg.org/ebooks/76', 'en', 3210), +(56908, '方言', 'Yang, Xiong', '2008-11-19', 23, 'https://www.gutenberg.org/ebooks/27294', 'zh', 18471), +(56909, 'Miragaia: Romance Popular', 'Almeida Garrett, João Batista da Silva Leitão de Almeida Garrett, Visconde de', '2008-01-23', 21, 'https://www.gutenberg.org/ebooks/24411', 'pt', 8), +(56910, 'Three John Silence Stories', 'Blackwood, Algernon', '2004-01-01', 111, 'https://www.gutenberg.org/ebooks/10624', 'en', 2354), +(56911, 'Sing a Song of Sixpence', 'Holdsworth, Mary', '2012-07-07', 277, 'https://www.gutenberg.org/ebooks/40154', 'en', 4014), +(56912, 'The Autobiography of a Slander', 'Lyall, Edna', '1998-04-01', 31, 'https://www.gutenberg.org/ebooks/1273', 'en', 61), +(56913, 'Harper\'s Round Table, August 11, 1896', 'Various', '2019-03-02', 1, 'https://www.gutenberg.org/ebooks/58997', 'en', 668), +(56914, 'The Telenizer', 'Thompson, Don', '2010-05-28', 25, 'https://www.gutenberg.org/ebooks/32574', 'en', 26), +(56915, 'The Able McLaughlins', 'Wilson, Margaret', '2019-07-01', 60, 'https://www.gutenberg.org/ebooks/59845', 'en', 18472), +(56916, 'Randolph Caldecott: A Personal Memoir of His Early Art Career', 'Blackburn, Henry', '2012-10-17', 7, 'https://www.gutenberg.org/ebooks/41086', 'en', 18473), +(56917, 'Kiljusen Plättä', 'Finne, Jalmari', '2017-11-22', 53, 'https://www.gutenberg.org/ebooks/56031', 'fi', 5797), +(56918, 'Fire Cloud; Or, The Mysterious Cave. A Story of Indians and Pirates.', 'Fletcher, Samuel', '2011-08-08', 15, 'https://www.gutenberg.org/ebooks/37006', 'en', 3828), +(56919, 'Desire No More', 'Budrys, Algis', '2012-10-07', 72, 'https://www.gutenberg.org/ebooks/40968', 'en', 8406), +(56920, 'Truxton King: A Story of Graustark', 'McCutcheon, George Barr', '2004-12-07', 20, 'https://www.gutenberg.org/ebooks/14284', 'en', 18474), +(56921, 'Järjen sanoja sodasta: Englantilaisen \"kapinoitsijan\" arvostelua', 'Shaw, Bernard', '2016-11-17', 6, 'https://www.gutenberg.org/ebooks/53543', 'fi', 335), +(56922, 'A Little Wizard', 'Weyman, Stanley John', '2012-02-13', 87, 'https://www.gutenberg.org/ebooks/38872', 'en', 98), +(56923, 'Uuteen elämään: Idylli erämaasta', 'Kataja, Väinö', '2019-03-17', 7, 'https://www.gutenberg.org/ebooks/59079', 'fi', 175), +(56924, 'The Theatrical Primer', 'Vivian, Harold Acton', '2016-07-03', 5, 'https://www.gutenberg.org/ebooks/52491', 'en', 18475), +(56925, 'Red Money', 'Hume, Fergus', '2005-03-14', 39, 'https://www.gutenberg.org/ebooks/15356', 'en', 1380), +(56926, 'The Emerald City of Oz', 'Baum, L. Frank (Lyman Frank)', '2007-04-24', 20, 'https://www.gutenberg.org/ebooks/21163', 'en', 12281), +(56927, 'The Ethics of the Dust', 'Ruskin, John', '2003-12-01', 24, 'https://www.gutenberg.org/ebooks/4701', 'en', 13696), +(56928, 'English Illustration \'The Sixties\': 1855-70\r\nWith Numerous Illustrations by Ford Madox Brown: A. Boyd Houghton: Arthur Hughes: Charles Keene: M. J. Lawless: Lord Leighton, P.R.A.: Sir J. E. Millais, P.R.A.: G. Du Maurier: J. W. North, R.A.: G. J. Pinwell: Dante Gabriel Rossetti: W. Small: Frederick Sandys: J. Mcneill Whistler: Frederick Walker, A.R.A.: and Others', 'White, Gleeson', '2014-04-17', 27, 'https://www.gutenberg.org/ebooks/45426', 'en', 18476), +(56929, 'Mary Ware in Texas', 'Johnston, Annie F. (Annie Fellows)', '2012-07-29', 18, 'https://www.gutenberg.org/ebooks/40366', 'en', 51), +(56930, 'Shakespeare\'s Sonnets', 'Shakespeare, William', '1997-09-01', 709, 'https://www.gutenberg.org/ebooks/1041', 'en', 6689); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(56931, 'Tales from \"Blackwood,\" Volume 3', 'Various', '2010-09-10', 39, 'https://www.gutenberg.org/ebooks/33694', 'en', 179), +(56932, 'Mother Goose\nThe Original Volland Edition', NULL, '2008-02-15', 36, 'https://www.gutenberg.org/ebooks/24623', 'en', 2296), +(56933, 'There\'s a Little Bit of Bad in Every Good Little Girl', NULL, '2003-12-01', 16, 'https://www.gutenberg.org/ebooks/10416', 'en', 7243), +(56934, 'List of Post Offices in Canada, with the Names of the Postmasters ... 1864', 'Canada. Post Office Department', '2017-12-18', 7, 'https://www.gutenberg.org/ebooks/56203', 'en', 4740), +(56935, 'French and English: A Story of the Struggle in America', 'Everett-Green, Evelyn', '2005-05-31', 25, 'https://www.gutenberg.org/ebooks/15958', 'en', 676), +(56936, 'The Revival of Irish Literature\r\nAddresses by Sir Charles Gavan Duffy, K.C.M.G, Dr. George Sigerson, and Dr. Douglas Hyde', 'Hyde, Douglas', '2010-06-08', 20, 'https://www.gutenberg.org/ebooks/32746', 'en', 18477), +(56937, 'Women\'s Wild Oats: Essays on the Re-fixing of Moral Standards', 'Hartley, C. Gasquoine (Catherine Gasquoine)', '2007-01-04', 17, 'https://www.gutenberg.org/ebooks/20283', 'en', 10985), +(56938, 'Die Welt der Planeten', 'Meyer, M. W. (Max Wilhelm)', '2018-12-02', 9, 'https://www.gutenberg.org/ebooks/58399', 'de', 12455), +(56939, 'Bee: The Princess of the Dwarfs', 'France, Anatole', '2016-12-19', 28, 'https://www.gutenberg.org/ebooks/53771', 'en', 2314), +(56940, 'My Path to Atheism', 'Besant, Annie', '2011-08-28', 53, 'https://www.gutenberg.org/ebooks/37234', 'en', 1616), +(56941, 'The Hermit and the Wild Woman, and Other Stories', 'Wharton, Edith', '2003-10-01', 35, 'https://www.gutenberg.org/ebooks/4533', 'en', 112), +(56942, 'Chronicles of England, Scotland and Ireland (3 of 6): England (5 of 9)\nThe History of Edward the Fift and King Richard the Third Unfinished', 'Holinshed, Raphael', '2014-05-08', 14, 'https://www.gutenberg.org/ebooks/45614', 'en', 288), +(56943, 'Folk Tales Every Child Should Know', NULL, '2005-02-24', 135, 'https://www.gutenberg.org/ebooks/15164', 'en', 1007), +(56944, 'The Prayer Book Explained', 'Jackson, Percival', '2007-05-08', 46, 'https://www.gutenberg.org/ebooks/21351', 'en', 5230), +(56945, 'Germany\'s Fighting Machine\r\nHer Army, her Navy, her Air-ships and Why She Arrayed Them Against the Allied Powers of Europe', 'Henderson, Ernest F. (Ernest Flagg)', '2016-01-24', 18, 'https://www.gutenberg.org/ebooks/51026', 'en', 8699), +(56946, 'The Octoroon; or, Life in Louisiana. A Play in Five acts', 'Boucicault, Dion', '2014-06-24', 82, 'https://www.gutenberg.org/ebooks/46091', 'en', 18478), +(56947, 'Modern Women and What is Said of Them\nA Reprint of A Series of Articles in the Saturday Review (1868)', 'Linton, E. Lynn (Elizabeth Lynn)', '2008-10-18', 20, 'https://www.gutenberg.org/ebooks/26948', 'en', 1619), +(56948, 'The Clergyman\'s Hand-book of Law: The Law of Church and Grave', 'Scanlan, Charles Martin', '2011-03-12', 22, 'https://www.gutenberg.org/ebooks/35563', 'en', 18479), +(56949, 'The Weavers: a tale of England and Egypt of fifty years ago - Volume 4', 'Parker, Gilbert', '2004-08-01', 10, 'https://www.gutenberg.org/ebooks/6264', 'en', 9577), +(56950, 'The Poetical Works of William Wordsworth — Volume 7 (of 8)', 'Wordsworth, William', '2014-10-18', 52, 'https://www.gutenberg.org/ebooks/47143', 'en', 3947), +(56951, 'Saratoga and How to See It', 'Dearborn, R. F.', '2006-01-29', 29, 'https://www.gutenberg.org/ebooks/17633', 'en', 18480), +(56952, 'Dog of St. Bernard and Other Stories', 'Anonymous', '2007-11-08', 6, 'https://www.gutenberg.org/ebooks/23406', 'en', 18481), +(56953, 'The Wiving of Lance Cleaverage', 'MacGowan, Alice', '2015-05-12', 14, 'https://www.gutenberg.org/ebooks/48937', 'en', 109), +(56954, 'Lawrence', 'Bensusan, S. L. (Samuel Levy)', '2013-03-29', 14, 'https://www.gutenberg.org/ebooks/42431', 'en', 18482), +(56955, 'Nos femmes de lettres', 'Flat, Paul', '2009-09-03', 16, 'https://www.gutenberg.org/ebooks/29900', 'fr', 18483), +(56956, 'Mrs. General Talboys', 'Trollope, Anthony', '2003-02-01', 13, 'https://www.gutenberg.org/ebooks/3716', 'en', 9134), +(56957, 'The Machine That Saved The World', 'Leinster, Murray', '2008-08-02', 46, 'https://www.gutenberg.org/ebooks/26174', 'en', 2797), +(56958, 'Against the Grain', 'Huysmans, J.-K. (Joris-Karl)', '2004-05-01', 304, 'https://www.gutenberg.org/ebooks/12341', 'en', 58), +(56959, 'The American Missionary — Volume 35, No. 5, May, 1881', 'Various', '2017-09-04', 2, 'https://www.gutenberg.org/ebooks/55486', 'en', 395), +(56960, 'History of the settlement of Upper Canada (Ontario,)\r\nwith special reference to the Bay Quinté', 'Canniff, William', '2017-04-16', 10, 'https://www.gutenberg.org/ebooks/54554', 'en', 18484), +(56961, 'Tales of the Five Towns', 'Bennett, Arnold', '2004-08-25', 60, 'https://www.gutenberg.org/ebooks/13293', 'en', 262), +(56962, 'An Aviator\'s Field Book\r\nBeing the field reports of Oswald Bölcke, from August 1, 1914 to October 28, 1916', 'Boelcke, Oswald', '2009-09-17', 37, 'https://www.gutenberg.org/ebooks/30011', 'en', 18485), +(56963, 'Motor Matt\'s Daring; or, True to His Friends\r\nMotor Stories Thrilling Adventure Motor Fiction No. 2, March 6, 1909', 'Matthews, Stanley R.', '2014-07-12', 15, 'https://www.gutenberg.org/ebooks/46257', 'en', 336), +(56964, 'The Life and Genius of Nathaniel Hawthorne', 'Stearns, Frank Preston', '2004-12-01', 17, 'https://www.gutenberg.org/ebooks/7170', 'en', 6216), +(56965, 'Lost\n1898', 'Bellamy, Edward', '2007-09-21', 27, 'https://www.gutenberg.org/ebooks/22712', 'en', 179), +(56966, '1001 задача для умственного счета', 'Rachinskii, Sergei Aleksandrovich', '2005-08-14', 208, 'https://www.gutenberg.org/ebooks/16527', 'ru', 18486), +(56967, 'How to Do It', 'Hale, Edward Everett', '2005-09-01', 20, 'https://www.gutenberg.org/ebooks/8904', 'en', 12189), +(56968, 'The Diamond Lens', 'O\'Brien, Fitz James', '2015-10-28', 33, 'https://www.gutenberg.org/ebooks/50332', 'en', 1335), +(56969, 'The Battle with the Slum', 'Riis, Jacob A. (Jacob August)', '2009-03-01', 31, 'https://www.gutenberg.org/ebooks/28228', 'en', 8443), +(56970, 'In Roemenië\r\nDe Aarde en haar Volken, 1906', 'Hebbelynck, Th.', '2004-10-26', 35, 'https://www.gutenberg.org/ebooks/13869', 'nl', 18487), +(56971, 'Red Eagle and the Wars With the Creek Indians of Alabama.', 'Eggleston, George Cary', '2010-12-17', 23, 'https://www.gutenberg.org/ebooks/34677', 'en', 18488), +(56972, 'The White Shield', 'Reed, Myrtle', '2014-11-17', 19, 'https://www.gutenberg.org/ebooks/47385', 'en', 112), +(56973, 'Atlas de poche des mammifères de la France, de la Suisse romane et de la Belgique\r\navec leur description, moeurs et organisation', 'Martin, René', '2017-09-27', 9, 'https://www.gutenberg.org/ebooks/55640', 'fr', 18489), +(56974, 'The Mystery of 31 New Inn', 'Freeman, R. Austin (Richard Austin)', '2004-04-01', 131, 'https://www.gutenberg.org/ebooks/12187', 'en', 1563), +(56975, 'Atta Troll', 'Heine, Heinrich', '2010-02-17', 67, 'https://www.gutenberg.org/ebooks/31305', 'en', 1867), +(56976, 'War-time Silhouettes', 'Hudson, Stephen', '2005-05-01', 13, 'https://www.gutenberg.org/ebooks/8138', 'en', 3115), +(56977, 'Briefe aus der Schweiz', 'Goethe, Johann Wolfgang von', '2000-11-01', 41, 'https://www.gutenberg.org/ebooks/2402', 'de', 1988), +(56978, 'Markens grøde, Anden del', 'Hamsun, Knut', '2013-09-14', 32, 'https://www.gutenberg.org/ebooks/43725', 'no', 286), +(56979, 'A General History and Collection of Voyages and Travels — Volume 09\r\nArranged in Systematic Order: Forming a Complete History of the Origin and Progress of Navigation, Discovery, and Commerce, by Sea and Land, from the Earliest Ages to the Present Time', 'Kerr, Robert', '2004-07-30', 38, 'https://www.gutenberg.org/ebooks/13055', 'en', 885), +(56980, 'The American Missionary — Volume 32, No. 12, December, 1878', 'Various', '2017-05-26', 2, 'https://www.gutenberg.org/ebooks/54792', 'en', 562), +(56981, 'The Poems of Sidney Lanier', 'Lanier, Sidney', '1996-07-01', 76, 'https://www.gutenberg.org/ebooks/579', 'en', 3557), +(56982, 'Ivanhoe: A Romance', 'Scott, Walter', '2008-06-25', 1137, 'https://www.gutenberg.org/ebooks/82', 'en', 9622), +(56983, 'East of Suez\nCeylon, India, China and Japan', 'Penfield, Frederic Courtland', '2008-11-14', 33, 'https://www.gutenberg.org/ebooks/27260', 'en', 12927), +(56984, 'Henry Ford: Highlights of His Life', 'Henry Ford Museum and Greenfield Village', '2018-05-08', 9, 'https://www.gutenberg.org/ebooks/57117', 'en', 18490), +(56985, 'Critical Miscellanies, Vol. 1, Essay 3: Byron', 'Morley, John', '2007-03-22', 15, 'https://www.gutenberg.org/ebooks/20879', 'en', 2265), +(56986, 'Harper\'s New Monthly Magazine, No. V, October, 1850, Volume I.', NULL, '2010-08-17', 23, 'https://www.gutenberg.org/ebooks/33452', 'en', 387), +(56987, 'The Journal of Prison Discipline and Philanthropy (New Series, No. 50) November 1911', 'Pennsylvania Prison Society', '2019-02-25', 0, 'https://www.gutenberg.org/ebooks/58963', 'en', 2509), +(56988, 'The Poems of Goethe, Translated in the Original Metres', 'Goethe, Johann Wolfgang von', '1998-04-01', 118, 'https://www.gutenberg.org/ebooks/1287', 'en', 18491), +(56989, 'Sophia: A Romance', 'Weyman, Stanley John', '2012-03-16', 9, 'https://www.gutenberg.org/ebooks/39168', 'en', 348), +(56990, 'The Golgotha Dancers', 'Wellman, Manly Wade', '2010-05-29', 39, 'https://www.gutenberg.org/ebooks/32580', 'en', 179), +(56991, 'Leonora Christina Ulfeldt\'s \"Jammers-minde\". En egenhændig skiedring of hendes fangenskab i Blaataarn i aarene 1663-1685', 'Ulfeldt, Leonora Christina, grevinde', '2012-10-16', 30, 'https://www.gutenberg.org/ebooks/41072', 'da', 18492), +(56992, 'Washington and his colleagues; a chronicle of the rise and fall of federalism', 'Ford, Henry Jones', '2004-03-01', 23, 'https://www.gutenberg.org/ebooks/11702', 'en', 18493), +(56993, 'Paisagens da China e do Japão', 'Moraes, Wenceslau de', '2008-05-20', 18, 'https://www.gutenberg.org/ebooks/25537', 'pt', 567), +(56994, 'The Criminal', 'Ellis, Havelock', '2013-12-24', 47, 'https://www.gutenberg.org/ebooks/44500', 'en', 18494), +(56995, 'String Quartet No. 10 in E-flat Major, Opus 124, No. 1', 'Schubert, Franz', '2004-05-01', 6, 'https://www.gutenberg.org/ebooks/5627', 'en', 909), +(56996, 'Großer Lärm', 'Kafka, Franz', '2006-12-08', 19, 'https://www.gutenberg.org/ebooks/20045', 'de', 6776), +(56997, 'The Wild Flowers of California: Their Names, Haunts, and Habits', 'Parsons, Mary Elizabeth', '2012-02-15', 70, 'https://www.gutenberg.org/ebooks/38886', 'en', 18495), +(56998, 'Panayam ng Tatlong Binata — Unang Hati', 'Ignacio, Cleto R.', '2004-12-06', 13, 'https://www.gutenberg.org/ebooks/14270', 'tl', 8063), +(56999, 'The faithful servant\r\nA sermon, preached in St. Peter\'s, Southborough, on occasion of the death of the Rev. Stephen Langston', 'Hoare, Edward', '2016-06-30', 6, 'https://www.gutenberg.org/ebooks/52465', 'en', 18496), +(57000, 'With Americans of Past and Present Days', 'Jusserand, J. J. (Jean Jules)', '2012-06-09', 11, 'https://www.gutenberg.org/ebooks/39954', 'en', 18497), +(57001, 'Diego Collado\'s Grammar of the Japanese Language', 'Collado, Diego', '2007-04-21', 41, 'https://www.gutenberg.org/ebooks/21197', 'en', 18498), +(57002, 'Essays', 'Hume, David', '2011-05-17', 102, 'https://www.gutenberg.org/ebooks/36120', 'en', 779), +(57003, 'A magyar népköltés gyöngyei: A legszebb népdalok gyüjteménye', 'Benedek, Elek', '2012-08-01', 14, 'https://www.gutenberg.org/ebooks/40392', 'hu', 1422), +(57004, 'Our National Defense: The Patriotism of Peace', 'Maxwell, George Hebard', '2011-12-13', 1, 'https://www.gutenberg.org/ebooks/38288', 'en', 18499), +(57005, 'The Year When Stardust Fell', 'Jones, Raymond F.', '2010-09-07', 52, 'https://www.gutenberg.org/ebooks/33660', 'en', 262), +(57006, 'Artful Anticks', 'Herford, Oliver', '2018-06-14', 40, 'https://www.gutenberg.org/ebooks/57325', 'en', 3059), +(57007, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 529, January 14, 1832', 'Various', '2004-03-01', 11, 'https://www.gutenberg.org/ebooks/11530', 'en', 133), +(57008, 'Suma y narracion de los Incas, que los indios llamaron Capaccuna, que fueron señores de la ciudad del Cuzco y de todo lo á ella subjeto', 'Betanzos, Juan de', '2008-06-05', 38, 'https://www.gutenberg.org/ebooks/25705', 'es', 2884), +(57009, 'Kinderen uit m\'n klas', 'Cohen de Vries, P. J.', '2012-10-30', 6, 'https://www.gutenberg.org/ebooks/41240', 'nl', 18500), +(57010, 'The History of England, from the Accession of\r\nJames II, vol1, chapter 05', 'Macaulay, Thomas Babington Macaulay, Baron', '2007-01-05', 2, 'https://www.gutenberg.org/ebooks/20277', 'en', 641), +(57011, 'The Violin and Old Violin Makers\r\nBeing a Historical & Biographical Account of the Violin, with Facsimiles of Labels of the Old Makers', 'Clarke, A. Mason', '2016-12-21', 10, 'https://www.gutenberg.org/ebooks/53785', 'en', 525), +(57012, 'Een vliegreisje in het Land der Rijzende Zon\r\nDe Aarde en haar Volken, 1906', 'Boer, T. Tj. de', '2004-11-14', 15, 'https://www.gutenberg.org/ebooks/14042', 'nl', 118), +(57013, 'Bird Neighbors\r\nAn Introductory Acquaintance with One Hundred and Fifty Birds Commonly Found in the Gardens, Meadows, and Woods About Our Homes', 'Blanchan, Neltje', '1999-09-01', 44, 'https://www.gutenberg.org/ebooks/1889', 'en', 318), +(57014, 'The Library of Work and Play: Housekeeping', 'Gilman, Elizabeth Hale', '2014-01-23', 29, 'https://www.gutenberg.org/ebooks/44732', 'en', 3407), +(57015, 'The Memoirs of Count Grammont — Volume 07', 'Hamilton, Anthony, Count', '2004-12-04', 15, 'https://www.gutenberg.org/ebooks/5415', 'en', 11561), +(57016, 'Witchcraft of New England Explained by Modern Spiritualism', 'Putnam, Allen', '2011-06-03', 14, 'https://www.gutenberg.org/ebooks/36312', 'en', 939), +(57017, 'With the Harmony to Labrador\r\nNotes of a Visit to the Moravian Mission Stations on the North-East\r\nCoast of Labrador', 'La Trobe, Benjamin', '2005-02-27', 20, 'https://www.gutenberg.org/ebooks/15190', 'en', 18501), +(57018, 'A Treatise of Cleanness in Meats and Drinks, of the Preparation of Food,\r\nthe Excellency of Good Airs, and the Benefits of Clean Sweet Beds. Also of the Generation of Bugs, and Their Cure. To Which Is Added, a Short Discourse of the Pain in the Teeth, Shewing What Cause It Does Chiefly Proceed, and Also How to Prevent It.', 'Tryon, Thomas', '2016-07-27', 11, 'https://www.gutenberg.org/ebooks/52657', 'en', 18502), +(57019, 'Cattle and Cattle-breeders', 'McCombie, William', '2007-09-05', 14, 'https://www.gutenberg.org/ebooks/22520', 'en', 18503), +(57020, 'The Mentor: The Conquest of the Poles, Serial No. 37', 'Peary, Robert E. (Robert Edwin)', '2015-08-29', 14, 'https://www.gutenberg.org/ebooks/49811', 'en', 7063), +(57021, 'Sir Walter Scott as a Critic of Literature', 'Ball, Margaret', '2005-09-18', 16, 'https://www.gutenberg.org/ebooks/16715', 'en', 8269), +(57022, 'L\'Illustration, No. 2522, 27 Juin 1891', 'Various', '2014-06-21', 10, 'https://www.gutenberg.org/ebooks/46065', 'fr', 150), +(57023, '詩品', 'Zhong, Rong, active 502-519', '2005-01-01', 17, 'https://www.gutenberg.org/ebooks/7342', 'zh', 9527), +(57024, 'A Treatise on the Brewing of Beer', 'Hughes, E.', '2011-03-17', 46, 'https://www.gutenberg.org/ebooks/35597', 'en', 2366), +(57025, 'Wild Youth, Volume 2.', 'Parker, Gilbert', '2004-08-01', 11, 'https://www.gutenberg.org/ebooks/6290', 'en', 332), +(57026, 'Œuvres de P. Corneille, Tome 02', 'Corneille, Pierre', '2010-11-25', 25, 'https://www.gutenberg.org/ebooks/34445', 'fr', 5816), +(57027, 'How to Do Chemical Tricks\r\nContaining Over One Hundred Highly Amusing and Instructive Tricks With Chemicals', 'Anderson, A., active 1894-1902', '2015-09-30', 36, 'https://www.gutenberg.org/ebooks/50100', 'en', 18504), +(57028, 'La Robe brodée d\'argent', 'Maryan, M.', '2010-01-31', 15, 'https://www.gutenberg.org/ebooks/31137', 'fr', 61), +(57029, 'Balzac', 'Saltus, Edgar', '2014-09-16', 8, 'https://www.gutenberg.org/ebooks/46859', 'en', 4588), +(57030, 'Mother America', 'McClatchie, Sam', '2008-08-03', 41, 'https://www.gutenberg.org/ebooks/26180', 'en', 179), +(57031, 'Ski-running', 'Richardson, E. C.', '2017-08-31', 5, 'https://www.gutenberg.org/ebooks/55472', 'en', 10751), +(57032, 'The Threshold Grace: Meditations in the Psalms', 'Ainsworth, Percy C. (Percy Clough)', '2004-08-24', 10, 'https://www.gutenberg.org/ebooks/13267', 'en', 18505), +(57033, 'Sunny Boy in the Big City', 'White, Ramy Allison', '2008-10-26', 10, 'https://www.gutenberg.org/ebooks/27052', 'en', 153), +(57034, 'The Interpreters of Genesis and the Interpreters of Nature\r\nEssay #4 from \"Science and Hebrew Tradition\"', 'Huxley, Thomas Henry', '2001-05-01', 18, 'https://www.gutenberg.org/ebooks/2630', 'en', 9677), +(57035, 'Bell\'s Cathedrals: The Church of St. Martin, Canterbury\r\nAn Illustrated Account of its History and Fabric', 'Routledge, C. F. (Charles Francis)', '2013-08-20', 12, 'https://www.gutenberg.org/ebooks/43517', 'en', 18506), +(57036, 'The Song of Deirdra, King Byrge and his Brothers, and Other Ballads', 'Borrow, George', '2009-05-15', 19, 'https://www.gutenberg.org/ebooks/28826', 'en', 8), +(57037, 'The Boy in the Bush', 'Rowe, Richard', '2018-03-07', 3, 'https://www.gutenberg.org/ebooks/56693', 'en', 421), +(57038, 'The Atlantic Monthly, Volume 08, No. 45, July, 1861\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 8, 'https://www.gutenberg.org/ebooks/11154', 'en', 1227), +(57039, 'Punch, or the London Charivari, Volume 93, August 13, 1887', 'Various', '2008-05-07', 11, 'https://www.gutenberg.org/ebooks/25361', 'en', 134), +(57040, 'Futuria Fantasia, Fall 1939', 'Bradbury, Ray', '2012-12-15', 88, 'https://www.gutenberg.org/ebooks/41624', 'en', 2527), +(57041, 'Subspeciation in the Meadow Mouse, Microtus pennsylvanicus, in Wyoming, Colorado, and Adjacent Areas', 'Anderson, Sydney', '2010-07-19', 18, 'https://www.gutenberg.org/ebooks/33204', 'en', 1214), +(57042, 'The Minute Boys of the Mohawk Valley', 'Otis, James', '2003-11-01', 37, 'https://www.gutenberg.org/ebooks/10086', 'en', 2843), +(57043, 'Der kleine Dämon', 'Sologub, Fyodor', '2018-08-22', 18, 'https://www.gutenberg.org/ebooks/57741', 'de', 3606), +(57044, 'Kansanlauluja', 'Lönnrot, Elias', '2004-04-01', 17, 'https://www.gutenberg.org/ebooks/11968', 'fi', 1171), +(57045, 'Inventions in the Century', 'Doolittle, William Henry', '2011-07-18', 86, 'https://www.gutenberg.org/ebooks/36776', 'en', 1739), +(57046, 'Sota ja rauha II', 'Tolstoy, Leo, graf', '2014-04-01', 21, 'https://www.gutenberg.org/ebooks/45284', 'fi', 2564), +(57047, 'The Legend of Dah-nol-yo, Squaw Rock', 'Carpenter, Helen McCowen', '2016-06-03', 34, 'https://www.gutenberg.org/ebooks/52233', 'en', 4499), +(57048, 'Über Psychoanalyse: Fünf Vorlesungen', 'Freud, Sigmund', '2007-02-17', 87, 'https://www.gutenberg.org/ebooks/20613', 'de', 3640), +(57049, 'London to Ladysmith via Pretoria', 'Churchill, Winston', '2004-12-23', 91, 'https://www.gutenberg.org/ebooks/14426', 'en', 1956), +(57050, 'When Scout Meets Scout; or, The Aeroplane Spy', 'Sayler, H. L. (Harry Lincoln)', '2019-01-17', 3, 'https://www.gutenberg.org/ebooks/58709', 'en', 1002), +(57051, 'Bonaparte et les Républiques Italiennes (1796-1799)', 'Gaffarel, Paul', '2013-12-05', 7, 'https://www.gutenberg.org/ebooks/44356', 'fr', 18507), +(57052, 'The Philanderer', 'Shaw, Bernard', '2004-02-01', 51, 'https://www.gutenberg.org/ebooks/5071', 'en', 18508), +(57053, 'Small Souls', 'Couperus, Louis', '2010-10-02', 6, 'https://www.gutenberg.org/ebooks/34021', 'en', 376), +(57054, 'The History of Ink, Including Its Etymology, Chemistry, and Bibliography', 'Davids, Thaddeus', '2015-11-27', 13, 'https://www.gutenberg.org/ebooks/50564', 'en', 18062), +(57055, 'And Judas Iscariot\nTogether with other evangelistic addresses', 'Chapman, J. Wilbur (John Wilbur)', '2007-10-20', 16, 'https://www.gutenberg.org/ebooks/23096', 'en', 2248), +(57056, 'Good Old Anna', 'Lowndes, Marie Belloc', '2007-07-25', 17, 'https://www.gutenberg.org/ebooks/22144', 'en', 579), +(57057, 'Bluebell\nA Novel', 'Huddleston, G. C., Mrs.', '2005-07-27', 13, 'https://www.gutenberg.org/ebooks/16371', 'en', 65), +(57058, 'The Story of Nuremberg', 'Headlam, Cecil', '2014-07-24', 36, 'https://www.gutenberg.org/ebooks/46401', 'en', 18509), +(57059, 'The Last of the Barons — Volume 12', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 5, 'https://www.gutenberg.org/ebooks/7726', 'en', 10517), +(57060, 'The Hawaiian Romance Of Laieikawai', 'Haleole, S. N.', '2004-10-05', 30, 'https://www.gutenberg.org/ebooks/13603', 'en', 18510), +(57061, 'Brand Blotters', 'Raine, William MacLeod', '2008-12-07', 41, 'https://www.gutenberg.org/ebooks/27436', 'en', 315), +(57062, 'Ioläus\nThe man that was a ghost', 'Mackereth, James Allan', '2009-11-16', 11, 'https://www.gutenberg.org/ebooks/30481', 'en', 8), +(57063, 'Henry VI, Part 1', 'Shakespeare, William', '2000-07-01', 15, 'https://www.gutenberg.org/ebooks/2254', 'en', 599), +(57064, 'Donne, salotti e costumi\nLa vita italiana durante la Rivoluzione francese e l\'Impero', 'Martini, Ferdinando', '2013-07-09', 12, 'https://www.gutenberg.org/ebooks/43173', 'it', 5931), +(57065, 'The Still-Room', 'Roundell, Charles, Mrs.', '2015-07-16', 18, 'https://www.gutenberg.org/ebooks/49449', 'en', 15802), +(57066, 'The Essays of Francis Bacon', 'Bacon, Francis', '2007-10-01', 48, 'https://www.gutenberg.org/ebooks/22978', 'en', 10566), +(57067, 'University Education in Ireland', 'Haughton, Samuel', '2010-03-08', 11, 'https://www.gutenberg.org/ebooks/31553', 'en', 18511), +(57068, 'The Editor\'s Relations with the Young Contributor (from Literature and Life)', 'Howells, William Dean', '2004-10-22', 22, 'https://www.gutenberg.org/ebooks/3386', 'en', 20), +(57069, 'The American Missionary, Volume 34, No. 12, December 1880', 'Various', '2017-07-01', 2, 'https://www.gutenberg.org/ebooks/55016', 'en', 562), +(57070, 'With The Immortal Seventh Division', 'Kennedy, Edmund John', '2006-09-20', 15, 'https://www.gutenberg.org/ebooks/19339', 'en', 2223), +(57071, 'Hatanpään Heikki ja hänen morsiamensa: Kertomus Tuomas piispan ajoilta', 'Jahnsson, Evald Ferdinand', '2015-12-23', 13, 'https://www.gutenberg.org/ebooks/50756', 'fi', 41), +(57072, 'Oliver Cromwell: A Play', 'Drinkwater, John', '2005-11-18', 12, 'https://www.gutenberg.org/ebooks/17091', 'en', 9881), +(57073, 'Kort og sandfærdig Beretning om den vidtudraabte Besættelse udi Thisted', 'Árni Magnússon', '2010-11-05', 22, 'https://www.gutenberg.org/ebooks/34213', 'da', 12097), +(57074, 'De Profundis', 'Wilde, Oscar', '1997-05-01', 915, 'https://www.gutenberg.org/ebooks/921', 'en', 7170), +(57075, 'The \"Characters\" of Jean de La Bruyère', 'La Bruyère, Jean de', '2014-08-19', 82, 'https://www.gutenberg.org/ebooks/46633', 'en', 6571), +(57076, 'A Guide to Stoicism', 'Stock, St. George William Joseph', '2005-02-01', 300, 'https://www.gutenberg.org/ebooks/7514', 'en', 15061), +(57077, 'The Departing Soul\'s Address to the Body: A Fragment of a Semi-Saxon Poem\r\nDiscovered Among the Archives of Worcester Cathedral', NULL, '2006-11-27', 24, 'https://www.gutenberg.org/ebooks/19937', 'en', 8), +(57078, 'Love to the Uttermost\nExpositions of John XIII.-XXI.', 'Meyer, F. B. (Frederick Brotherton)', '2007-08-23', 14, 'https://www.gutenberg.org/ebooks/22376', 'en', 13786), +(57079, 'A Man and a Woman', 'Waterloo, Stanley', '2005-06-28', 8, 'https://www.gutenberg.org/ebooks/16143', 'en', 61), +(57080, 'Irja: Kuvaus', 'Kataja, Väinö', '2016-04-07', 42, 'https://www.gutenberg.org/ebooks/51684', 'fi', 175), +(57081, 'Conscience — Volume 3', 'Malot, Hector', '2003-04-01', 26, 'https://www.gutenberg.org/ebooks/3988', 'en', 1563), +(57082, 'Wildfire', 'Grey, Zane', '2000-02-01', 99, 'https://www.gutenberg.org/ebooks/2066', 'en', 2985), +(57083, 'The Bird', 'Michelet, Jules', '2013-07-28', 31, 'https://www.gutenberg.org/ebooks/43341', 'en', 318), +(57084, 'André', 'Sand, George', '2004-09-10', 42, 'https://www.gutenberg.org/ebooks/13431', 'fr', 61), +(57085, 'A History of the Japanese People\r\nFrom the Earliest Times to the End of the Meiji Era', 'Kikuchi, Dairoku', '2008-12-23', 42, 'https://www.gutenberg.org/ebooks/27604', 'en', 52), +(57086, 'The American Missionary — Volume 34, No. 7, July, 1880', 'Various', '2017-07-29', 5, 'https://www.gutenberg.org/ebooks/55224', 'en', 562), +(57087, 'Van den Vos Reynaerde', NULL, '2013-03-10', 21, 'https://www.gutenberg.org/ebooks/42293', 'nl', 1733), +(57088, 'Wilson\'s Tales of the Borders and of Scotland, Volume 11', NULL, '2010-03-24', 7, 'https://www.gutenberg.org/ebooks/31761', 'en', 3672), +(57089, 'Aikansa lapsipuoli', 'Ivalo, Santeri', '2012-11-20', 5, 'https://www.gutenberg.org/ebooks/41416', 'fi', 61), +(57090, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 02\r\nMasterpieces of German Literature Translated into English. in Twenty Volumes', NULL, '2004-02-01', 69, 'https://www.gutenberg.org/ebooks/11366', 'en', 652), +(57091, 'Tales of a Wayside Inn', 'Longfellow, Henry Wadsworth', '2008-04-24', 75, 'https://www.gutenberg.org/ebooks/25153', 'en', 178), +(57092, 'L\'expiation de Saveli', 'Gréville, Henry', '2007-12-31', 8, 'https://www.gutenberg.org/ebooks/24081', 'fr', 85), +(57093, 'Les quatre livres de philosophie morale et politique de la Chine', 'Confucius', '2014-02-18', 79, 'https://www.gutenberg.org/ebooks/44958', 'fr', 18512), +(57094, 'Studies in the Evolutionary Psychology of Feeling', 'Stanley, Hiram Miner', '2018-07-24', 23, 'https://www.gutenberg.org/ebooks/57573', 'en', 6997), +(57095, 'Punch, or the London Charivari, Volume 93, August 20, 1887.', 'Various', '2010-06-30', 8, 'https://www.gutenberg.org/ebooks/33036', 'en', 134), +(57096, 'The Little Child\'s Book of Divinity\r\nor Grandmamma\'s Stories about Bible Doctrines', 'Macduff, John R. (John Ross)', '2016-05-05', 12, 'https://www.gutenberg.org/ebooks/52001', 'en', 18513), +(57097, 'Selections from the Principles of Philosophy', 'Descartes, René', '2003-08-01', 185, 'https://www.gutenberg.org/ebooks/4391', 'en', 779), +(57098, 'Pope, His Descent and Family Connections: Facts and Conjectures', 'Hunter, Joseph', '2011-06-28', 8, 'https://www.gutenberg.org/ebooks/36544', 'en', 18514), +(57099, 'Criminal Types', 'Masten, V. M. (Vincent Myron)', '2013-11-12', 9, 'https://www.gutenberg.org/ebooks/44164', 'en', 12622), +(57100, 'Tales from the Arabic — Volume 02', NULL, '2004-03-01', 41, 'https://www.gutenberg.org/ebooks/5243', 'en', 3756), +(57101, 'Notes and Queries, Vol. III, Number 86, June 21, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2011-09-21', 12, 'https://www.gutenberg.org/ebooks/37496', 'en', 105), +(57102, 'Proserpina, Volume 1\r\nStudies of Wayside Flowers, While the Air was Yet Pure Among the Alps and in the Scotland and England Which My Father Knew', 'Ruskin, John', '2007-01-22', 26, 'https://www.gutenberg.org/ebooks/20421', 'en', 4656), +(57103, 'Sister Teresa', 'Moore, George', '2005-01-06', 5, 'https://www.gutenberg.org/ebooks/14614', 'en', 1397), +(57104, 'La Biblia en España, Tomo I (de 3)\r\nO viajes, aventuras y prisiones de un inglés en su intento de difundir las Escrituras por la Península', 'Borrow, George', '2016-01-24', 53, 'https://www.gutenberg.org/ebooks/51019', 'es', 8344), +(57105, 'Grimhild\'s Vengeance: Three Ballads', 'Borrow, George', '2009-06-12', 17, 'https://www.gutenberg.org/ebooks/29103', 'en', 8), +(57106, 'The Poetical Works of Oliver Wendell Holmes — Volume 02\r\nAdditional Poems (1837-1848)', 'Holmes, Oliver Wendell', '2004-09-30', 14, 'https://www.gutenberg.org/ebooks/7389', 'en', 178), +(57107, 'The Old Tobacco Shop\nA True Account of What Befell a Little Boy in Search of Adventure', 'Bowen, William', '2008-10-20', 15, 'https://www.gutenberg.org/ebooks/26977', 'en', 2203), +(57108, 'Attention Saint Patrick', 'Leinster, Murray', '2007-11-10', 57, 'https://www.gutenberg.org/ebooks/23439', 'en', 26), +(57109, 'Legends of Norseland', NULL, '2015-05-09', 103, 'https://www.gutenberg.org/ebooks/48908', 'en', 8119), +(57110, 'With the French in France and Salonika', 'Davis, Richard Harding', '2009-12-31', 11, 'https://www.gutenberg.org/ebooks/30812', 'en', 449), +(57111, 'Widger\'s Quotations from Project Gutenberg Edition of Memoirs of Napoleon', 'Various', '2003-02-01', 14, 'https://www.gutenberg.org/ebooks/3729', 'en', 1026), +(57112, 'Folksångerna om Robin Hood: Akademisk afhandling', 'Estlander, Carl Gustaf', '2016-04-22', 9, 'https://www.gutenberg.org/ebooks/51825', 'sv', 1821), +(57113, 'Discourse on the Method of Rightly Conducting One\'s Reason and of Seeking Truth in the Sciences', 'Descartes, René', '2006-11-15', 32, 'https://www.gutenberg.org/ebooks/19796', 'en', 411), +(57114, 'The Eternal Boy: Being the Story of the Prodigious Hickey', 'Johnson, Owen', '2014-09-18', 7, 'https://www.gutenberg.org/ebooks/46892', 'en', 18515), +(57115, 'Reminiscences of Queensland, 1862-1869', 'Corfield, W. H. (William Henry)', '2008-10-30', 33, 'https://www.gutenberg.org/ebooks/27099', 'en', 5657), +(57116, 'Als U-Boots-Kommandant gegen England', 'Forstner, Georg-Günther, Freiherr von', '2015-01-11', 22, 'https://www.gutenberg.org/ebooks/47940', 'de', 2511), +(57117, 'The War in the Air', 'Wells, H. G. (Herbert George)', '1997-01-01', 265, 'https://www.gutenberg.org/ebooks/780', 'en', 26), +(57118, 'The Swindler and Other Stories', 'Dell, Ethel M. (Ethel May)', '2006-06-21', 58, 'https://www.gutenberg.org/ebooks/18644', 'en', 179), +(57119, 'Electric Transmission of Water Power', 'Adams, Alton D.', '2015-02-01', 15, 'https://www.gutenberg.org/ebooks/48134', 'en', 18516), +(57120, 'The Seven Vagabonds (From \"Twice Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 16, 'https://www.gutenberg.org/ebooks/9213', 'en', 3175), +(57121, 'Histoire de France - Moyen Âge; (Vol. 1 / 10)', 'Michelet, Jules', '2011-12-07', 36, 'https://www.gutenberg.org/ebooks/38243', 'fr', 624), +(57122, 'The Fairy Ring', NULL, '2012-07-28', 25, 'https://www.gutenberg.org/ebooks/40359', 'en', 1007), +(57123, 'Miss Lulu Bett', 'Gale, Zona', '2003-12-01', 35, 'https://www.gutenberg.org/ebooks/10429', 'en', 18517), +(57124, 'Der Hasenroman', 'Jammes, Francis', '2012-04-06', 14, 'https://www.gutenberg.org/ebooks/39391', 'de', 13546), +(57125, 'Suomen maan Meripedot: maalikuvilla selitetyt', 'Eurén, Gustaf Erik', '2005-06-01', 12, 'https://www.gutenberg.org/ebooks/15967', 'fi', 18518), +(57126, 'Above the Battle', 'Rolland, Romain', '2010-06-12', 25, 'https://www.gutenberg.org/ebooks/32779', 'en', 335), +(57127, 'Michael Strogoff; Or, The Courier of the Czar', 'Verne, Jules', '1999-08-01', 114, 'https://www.gutenberg.org/ebooks/1842', 'en', 12695), +(57128, 'Homestead on the Hillside', 'Holmes, Mary Jane', '2004-11-19', 14, 'https://www.gutenberg.org/ebooks/14089', 'en', 179), +(57129, 'Campfire Tales of Jackson Hole', 'Various', '2019-04-13', 27, 'https://www.gutenberg.org/ebooks/59274', 'en', 18519), +(57130, 'Les Nuits chaudes du Cap français', 'Rebell, Hugues', '2011-10-20', 13, 'https://www.gutenberg.org/ebooks/37805', 'fr', 18520), +(57131, 'The Guards Came Through, and Other Poems', 'Doyle, Arthur Conan', '2011-11-21', 13, 'https://www.gutenberg.org/ebooks/38071', 'en', 2100), +(57132, 'Stories That End Well', 'Thanet, Octave', '2010-08-25', 32, 'https://www.gutenberg.org/ebooks/33499', 'en', 61), +(57133, 'Blue Bonnet\'s Ranch Party', 'Jacobs, Caroline Elliott Hoogs', '2007-06-28', 15, 'https://www.gutenberg.org/ebooks/21960', 'en', 62), +(57134, 'The Red Room', 'Strindberg, August', '2011-08-11', 76, 'https://www.gutenberg.org/ebooks/37039', 'en', 6023), +(57135, 'Tirso de Molina', 'Molina, Tirso de', '2018-10-30', 32, 'https://www.gutenberg.org/ebooks/58194', 'es', 206), +(57136, 'Leibniz\'s New Essays Concerning the Human Understanding: A Critical Exposition', 'Dewey, John', '2012-10-06', 74, 'https://www.gutenberg.org/ebooks/40957', 'en', 18521), +(57137, 'Kwan-yin', 'Benson, Stella', '2013-01-20', 19, 'https://www.gutenberg.org/ebooks/41885', 'en', 402), +(57138, 'Erzgebirgische Christ- und Mettenspiele\nEin Versuch zur Rettung alten Volksgutes', NULL, '2019-03-10', 7, 'https://www.gutenberg.org/ebooks/59046', 'de', 4088), +(57139, 'Old Scores and New Readings: Discussions on Music & Certain Musicians', 'Runciman, John F.', '2005-03-15', 24, 'https://www.gutenberg.org/ebooks/15369', 'en', 4183), +(57140, 'The Religio-Medical Masquerade: A Complete Exposure of Christian Science', 'Peabody, Frederick William', '2014-04-16', 11, 'https://www.gutenberg.org/ebooks/45419', 'en', 10509), +(57141, 'The London Burial Grounds\nNotes on Their History from the Earliest Times to the Present Day', 'Holmes, Isabella M.', '2018-03-24', 25, 'https://www.gutenberg.org/ebooks/56832', 'en', 18522), +(57142, 'The Head Hunters of Northern Luzon', 'Willcox, Cornélis De Witt', '2004-07-21', 42, 'https://www.gutenberg.org/ebooks/12970', 'en', 18523), +(57143, 'The Crevice', 'Burns, William J.', '2009-07-06', 38, 'https://www.gutenberg.org/ebooks/29331', 'en', 128), +(57144, 'The Pony Rider Boys in the Ozarks; Or, The Secret of Ruby Mountain', 'Patchin, Frank Gee', '2004-07-01', 20, 'https://www.gutenberg.org/ebooks/6069', 'en', 5911), +(57145, 'The Fair Maid of Perth; Or, St. Valentine\'s Day', 'Scott, Walter', '2005-04-01', 72, 'https://www.gutenberg.org/ebooks/7987', 'en', 18524), +(57146, 'Vice in its Proper Shape\nOr, The Wonderful and Melancholy Transformation of Several\nNaughty Masters and Misses Into Those Contemptible Animals\nWhich They Most Resemble In Disposition.', 'Anonymous', '2008-08-20', 56, 'https://www.gutenberg.org/ebooks/26379', 'en', 1817), +(57147, 'Selected Poems', 'Brooke, Rupert', '2015-02-18', 17, 'https://www.gutenberg.org/ebooks/48306', 'en', 1594), +(57148, 'Fenimore Cooper\'s Literary Offences', 'Twain, Mark', '2005-09-01', 0, 'https://www.gutenberg.org/ebooks/9021', 'en', 18525), +(57149, 'Yksinkertainen sydän', 'Flaubert, Gustave', '2006-05-31', 12, 'https://www.gutenberg.org/ebooks/18476', 'fi', 7101), +(57150, 'Handbuch der Aquarellmalerei\r\nNach dem heutigen Standpunkte und mit vorzüglicher Anwendung auf Landschaft und Architektur nebst einem Anhange über Holzmalerei', 'Jaennicke, Friedrich', '2017-05-22', 11, 'https://www.gutenberg.org/ebooks/54759', 'de', 14795), +(57151, 'Surfing the Internet: An Introduction\r\nVersion 2.0.2', 'Polly, Jean Armour', '1993-01-01', 140, 'https://www.gutenberg.org/ebooks/49', 'en', 18526), +(57152, 'Ideala', 'Grand, Sarah', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6855', 'en', 18527), +(57153, 'The Ocean Wireless Boys on War Swept Seas', 'Goldfrap, John Henry', '2014-05-30', 19, 'https://www.gutenberg.org/ebooks/45841', 'en', 146), +(57154, 'La Cintia', 'Porta, Giambattista della', '2008-04-27', 4, 'https://www.gutenberg.org/ebooks/25198', 'it', 407), +(57155, 'A Lady\'s Tour in Corsica, Vol. 1 (of 2)', 'Forde, Gertrude', '2014-02-24', 6, 'https://www.gutenberg.org/ebooks/44993', 'en', 7348), +(57156, 'My Lady\'s Money', 'Collins, Wilkie', '2006-03-22', 69, 'https://www.gutenberg.org/ebooks/1628', 'en', 45), +(57157, 'Gas-Engines and Producer-Gas Plants\r\nA Practice Treatise Setting Forth the Principles of Gas-Engines and Producer Design, the Selection and Installation of an Engine, Conditions of Perfect Operation, Producer-Gas Engines and Their Possibilities, the Care of Gas-Engines and Producer-Gas Plants, with a Chapter on Volatile Hydrocarbon and Oil Engines', 'Mathot, Rodolphe Edgard', '2011-12-26', 16, 'https://www.gutenberg.org/ebooks/38415', 'en', 7094), +(57158, 'Abroad and at Home; Practical Hints for Tourists', 'Phillips, Morris', '2017-01-08', 20, 'https://www.gutenberg.org/ebooks/53924', 'en', 9092), +(57159, 'Souvenir of the George Borrow Celebration\nNorwich, July 5th, 1913', 'Hooper, James', '2007-05-20', 17, 'https://www.gutenberg.org/ebooks/21538', 'en', 53), +(57160, 'Wisdom\'s Daughter: The Life and Love Story of She-Who-Must-be-Obeyed', 'Haggard, H. Rider (Henry Rider)', '2019-05-03', 112, 'https://www.gutenberg.org/ebooks/59422', 'en', 5752), +(57161, 'Through South Africa\nHis Visit to Rhodesia, the Transvaal, Cape Colony, Natal', 'Stanley, Henry M. (Henry Morton)', '2010-06-20', 20, 'https://www.gutenberg.org/ebooks/32913', 'en', 6548), +(57162, 'Tales and Novels of J. de La Fontaine — Volume 14', 'La Fontaine, Jean de', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/5288', 'en', 2629), +(57163, 'Lucy Maud Montgomery Short Stories, 1905 to 1906', 'Montgomery, L. M. (Lucy Maud)', '2008-03-19', 167, 'https://www.gutenberg.org/ebooks/24876', 'en', 2261), +(57164, 'Excursions in Victorian Bibliography', 'Sadleir, Michael', '2016-09-22', 23, 'https://www.gutenberg.org/ebooks/53118', 'en', 18528), +(57165, 'The Only True Mother Goose Melodies\nWithout Addition or Abridgement', 'Unknown', '2009-05-04', 37, 'https://www.gutenberg.org/ebooks/28687', 'en', 343), +(57166, 'Howards End', 'Forster, E. M. (Edward Morgan)', '2001-11-01', 637, 'https://www.gutenberg.org/ebooks/2891', 'en', 9821), +(57167, 'Monsieur de Camors — Volume 1', 'Feuillet, Octave', '2003-04-01', 19, 'https://www.gutenberg.org/ebooks/3943', 'en', 560), +(57168, 'La Divina Comèdia: Purgatòri\nEnglish title is Dante\'s Purgatorio', 'Dante Alighieri', '2005-07-03', 5, 'https://www.gutenberg.org/ebooks/16188', 'fur', 8), +(57169, 'Mémoires d\'une contemporaine. Tome 7\r\nSouvenirs d\'une femme sur les principaux personnages de la République, du Consulat, de l\'Empire, etc...', 'Saint-Elme, Ida', '2009-08-22', 27, 'https://www.gutenberg.org/ebooks/29755', 'fr', 1941), +(57170, 'History of the Decline and Fall of the Roman Empire', 'Gibbon, Edward', '2015-04-22', 35, 'https://www.gutenberg.org/ebooks/48762', 'en', 1292), +(57171, 'Samantha among the Brethren — Volume 3', 'Holley, Marietta', '2004-08-10', 26, 'https://www.gutenberg.org/ebooks/9445', 'en', 11508), +(57172, 'Murder in the Gunroom', 'Piper, H. Beam', '2006-02-26', 152, 'https://www.gutenberg.org/ebooks/17866', 'en', 1335), +(57173, 'Supplement to \"Punch\", 16th December 1914\nThe Unspeakable Turk', 'Various', '2009-12-14', 17, 'https://www.gutenberg.org/ebooks/30678', 'en', 18529), +(57174, 'The legend of the blemished king, and other poems', 'Cousins, James Henry', '2019-08-16', 391, 'https://www.gutenberg.org/ebooks/60108', 'en', 1136), +(57175, 'Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad.\nMeadows Division and Harrison Transfer Yard. Paper No. 1153', 'Temple, E. B.', '2006-03-18', 16, 'https://www.gutenberg.org/ebooks/18012', 'en', 4530), +(57176, 'A Voyage Round the World, Volume I\r\nIncluding Travels in Africa, Asia, Australasia, America, etc., etc., from 1827 to 1832', 'Holman, James', '2004-06-01', 37, 'https://www.gutenberg.org/ebooks/12528', 'en', 819), +(57177, 'A Sportsman\'s Sketches\nWorks of Ivan Turgenev, Volume I', 'Turgenev, Ivan Sergeevich', '2005-07-01', 144, 'https://www.gutenberg.org/ebooks/8597', 'en', 85), +(57178, 'The Expositor\'s Bible: The Acts of the Apostles, Vol. 1', 'Stokes, George Thomas', '2013-03-04', 22, 'https://www.gutenberg.org/ebooks/42258', 'en', 5002), +(57179, 'Shakespeare\'s Comedy of The Tempest', 'Shakespeare, William', '2014-12-03', 61, 'https://www.gutenberg.org/ebooks/47518', 'en', 11685), +(57180, 'Kadonnut pikajuna y.m. kertomuksia', 'Doyle, Arthur Conan', '2017-06-19', 10, 'https://www.gutenberg.org/ebooks/54933', 'fi', 16029), +(57181, 'Chaucer for Children: A Golden Key', 'Chaucer, Geoffrey', '2013-10-20', 97, 'https://www.gutenberg.org/ebooks/43984', 'en', 18530), +(57182, 'Ontario Teachers\' Manuals: History', 'Ontario. Department of Education', '2005-12-09', 35, 'https://www.gutenberg.org/ebooks/17268', 'en', 1098), +(57183, 'As obras dos Jeronymos\r\nparecer apresentado à Commissão dos Monumentos Nacionaes\r\nem sessão de 7 de Novembro de 1895', 'Cordeiro, Luciano', '2009-08-01', 9, 'https://www.gutenberg.org/ebooks/29567', 'pt', 18531), +(57184, 'Journals of Dorothy Wordsworth, Vol. 1 (of 2)', 'Wordsworth, Dorothy', '2013-06-02', 47, 'https://www.gutenberg.org/ebooks/42856', 'en', 18532), +(57185, 'Literature for Children', 'Lowe, Orton', '2011-02-01', 15, 'https://www.gutenberg.org/ebooks/35138', 'en', 1063), +(57186, 'A Cidade e as Serras', 'Queirós, Eça de', '2006-04-21', 77, 'https://www.gutenberg.org/ebooks/18220', 'pt', 4147), +(57187, 'Campaigning in Kaffirland; Or, Scenes and Adventures in the Kaffir War of 1851-52', 'King, William Ross', '2015-03-22', 21, 'https://www.gutenberg.org/ebooks/48550', 'en', 10864), +(57188, 'The Story of the Great War, Volume V (of 12)\nNeuve Chapelle, Battle of Ypres, Przemysl, Mazurian Lakes', NULL, '2007-12-14', 16, 'https://www.gutenberg.org/ebooks/23861', 'en', 335), +(57189, 'Of Captain Mission', 'Defoe, Daniel', '2006-01-01', 1, 'https://www.gutenberg.org/ebooks/9677', 'en', 3828), +(57190, 'The Egyptian Cat Mystery: A Rick Brant Science-Adventure Story', 'Goodwin, Harold L. (Harold Leland)', '2010-03-11', 23, 'https://www.gutenberg.org/ebooks/31598', 'en', 18533), +(57191, 'La Comédie humaine - Volume 05. Scènes de la vie de Province - Tome 01', 'Balzac, Honoré de', '2015-07-18', 51, 'https://www.gutenberg.org/ebooks/49482', 'fr', 642), +(57192, 'The Five Arrows', 'Chase, Allan', '2011-04-19', 11, 'https://www.gutenberg.org/ebooks/35904', 'en', 18534), +(57193, 'Danny Again\nFurther Adventures of \"Danny the Detective\"', 'Barclay, Vera C. (Vera Charlesworth)', '2018-02-28', 20, 'https://www.gutenberg.org/ebooks/56658', 'en', 651), +(57194, 'Laicus; Or, the Experiences of a Layman in a Country Parish.', 'Abbott, Lyman', '2004-01-01', 27, 'https://www.gutenberg.org/ebooks/4954', 'en', 2287), +(57195, 'Queen Victoria as I Knew Her', 'Martin, Theodore, Sir', '2012-01-20', 9, 'https://www.gutenberg.org/ebooks/38627', 'en', 18535), +(57196, 'String Quartet in F Major, Op. 74 no. 2', 'Haydn, Joseph', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/5886', 'en', 909), +(57197, 'The Green Beret', 'Purdom, Tom', '2008-01-14', 28, 'https://www.gutenberg.org/ebooks/24278', 'en', 2126), +(57198, 'Diary of Samuel Pepys — Volume 46: October 1666', 'Pepys, Samuel', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/4168', 'en', 478), +(57199, 'Index of the Project Gutenberg Works of George William Foote', 'Foote, G. W. (George William)', '2019-05-26', 12, 'https://www.gutenberg.org/ebooks/59610', 'en', 198), +(57200, 'At Sunwich Port, Part 1.\nContents: Chapters 1-5', 'Jacobs, W. W. (William Wymark)', '2004-01-01', 5, 'https://www.gutenberg.org/ebooks/10871', 'en', 1391), +(57201, 'Het leven en de lotgevallen van Robinson Crusoe, t. 2', 'Defoe, Daniel', '2012-11-21', 19, 'https://www.gutenberg.org/ebooks/41429', 'nl', 4731), +(57202, 'L\'Illustration, No. 0038, 18 Novembre 1843', 'Various', '2012-04-25', 10, 'https://www.gutenberg.org/ebooks/39533', 'fr', 150), +(57203, 'The Later Renaissance', 'Hannay, David', '2016-08-14', 18, 'https://www.gutenberg.org/ebooks/52802', 'en', 18536), +(57204, 'Punch, or the London Charivari, Volume 156, February 26, 1919', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11359', 'en', 134), +(57205, 'Livserindringer', 'Madvig, J. N. (Johan Nikolai)', '2014-02-19', 5, 'https://www.gutenberg.org/ebooks/44967', 'da', 18537), +(57206, 'The Atlantic Monthly, Volume 16, No. 98, December, 1865\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2010-06-28', 12, 'https://www.gutenberg.org/ebooks/33009', 'en', 1227), +(57207, 'Punch, or the London Charivari, Volume 108, February 16, 1895', 'Various', '2014-03-09', 27, 'https://www.gutenberg.org/ebooks/45089', 'en', 134), +(57208, 'The Complete Bachelor: Manners for Men', 'Germain, Walter', '2008-07-02', 12, 'https://www.gutenberg.org/ebooks/25950', 'en', 788), +(57209, 'Privateering and Piracy in the Colonial Period\nIllustrative Documents', NULL, '2008-03-20', 78, 'https://www.gutenberg.org/ebooks/24882', 'en', 5774), +(57210, 'Harper\'s Round Table, July 14, 1896', 'Various', '2018-12-20', 4, 'https://www.gutenberg.org/ebooks/58504', 'en', 668), +(57211, 'Journal of Voyages\r\nContaining an Account of the Author\'s being Twice Captured by the English and Once by Gibbs the Pirate...', 'Dunham, Jacob', '2010-10-03', 23, 'https://www.gutenberg.org/ebooks/33835', 'en', 885), +(57212, 'The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 10. October, 1880', 'Various', '2009-05-03', 10, 'https://www.gutenberg.org/ebooks/28673', 'en', 1829), +(57213, 'Stone Art\r\nThirteenth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1891-1892, Government Printing Office, Washington, 1896, pages 47-178.', 'Fowke, Gerard', '2015-12-26', 15, 'https://www.gutenberg.org/ebooks/50769', 'en', 18538), +(57214, 'Otto of the Silver Hand', 'Pyle, Howard', '2001-10-01', 122, 'https://www.gutenberg.org/ebooks/2865', 'en', 282), +(57215, 'Essays on Scandinavian Literature', 'Boyesen, Hjalmar Hjorth', '2006-11-23', 18, 'https://www.gutenberg.org/ebooks/19908', 'en', 18539), +(57216, 'The Camp of the Dog', 'Blackwood, Algernon', '2007-08-01', 6, 'https://www.gutenberg.org/ebooks/22349', 'en', 3507), +(57217, 'Index Expurgatorius Anglicanus\r\nOr, a descriptive catalogue of the principal books printed or published in England, which have been suppressed, or burnt by the common hangman, or censured, or for which the authors, printers, or publishers have been prosecuted', 'Hart, W. H. (William Henry)', '2015-04-26', 11, 'https://www.gutenberg.org/ebooks/48796', 'en', 18540), +(57218, 'Honey-Sweet', 'Turpin, Edna Henry Lee', '2006-03-01', 34, 'https://www.gutenberg.org/ebooks/17892', 'en', 62), +(57219, 'The Little Shepherd of Kingdom Come', 'Fox, John, Jr.', '2000-02-01', 55, 'https://www.gutenberg.org/ebooks/2059', 'en', 2564), +(57220, 'The Return of the Native', 'Hardy, Thomas', '2006-03-08', 359, 'https://www.gutenberg.org/ebooks/122', 'en', 48), +(57221, 'The Empire of Love', 'Dawson, W. J. (William James)', '2006-08-28', 20, 'https://www.gutenberg.org/ebooks/19134', 'en', 11915), +(57222, 'Gleanings from the Writings of Bahá\'u\'lláh', 'Bahá\'u\'lláh', '2005-06-23', 29, 'https://www.gutenberg.org/ebooks/16940', 'en', 7255), +(57223, 'La Terre', 'Zola, Émile', '2005-07-01', 46, 'https://www.gutenberg.org/ebooks/8563', 'fr', 18541), +(57224, 'Motor Matt\'s Quest; or Three Chums in Strange Waters', 'Matthews, Stanley R.', '2015-08-07', 2, 'https://www.gutenberg.org/ebooks/49644', 'en', 323), +(57225, 'A Modern Cinderella', 'Douglas, Amanda M.', '2009-03-29', 23, 'https://www.gutenberg.org/ebooks/28441', 'en', 3621), +(57226, 'Every Day Life in the Massachusetts Bay Colony', 'Dow, George Francis', '2013-10-17', 26, 'https://www.gutenberg.org/ebooks/43970', 'en', 18542), +(57227, 'Church History, Volume 1 (of 3)', 'Kurtz, J. H. (Johann Heinrich)', '2016-03-17', 7, 'https://www.gutenberg.org/ebooks/51489', 'en', 958), +(57228, 'Red, White, Blue Socks, Part First\nBeing the First Book', 'Barrow, Sarah L.', '2009-08-03', 8, 'https://www.gutenberg.org/ebooks/29593', 'en', 195), +(57229, 'The Last of the Barons — Volume 05', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7719', 'en', 10517), +(57230, 'Peggy Plays Off-Broadway', 'Hughes, Virginia', '2017-10-26', 9, 'https://www.gutenberg.org/ebooks/55815', 'en', 18543), +(57231, 'The King\'s Wake, and Other Ballads', 'Borrow, George', '2008-12-04', 18, 'https://www.gutenberg.org/ebooks/27409', 'en', 54), +(57232, 'The Century Cook Book', 'Ronald, Mary', '2011-01-02', 144, 'https://www.gutenberg.org/ebooks/34822', 'en', 103), +(57233, 'Before Adam', 'London, Jack', '2008-06-29', 229, 'https://www.gutenberg.org/ebooks/310', 'en', 580), +(57234, 'The Buckle My Shoe Picture Book', NULL, '2007-12-19', 18, 'https://www.gutenberg.org/ebooks/23895', 'en', 343), +(57235, 'A Journal of the Plague Year', 'Defoe, Daniel', '2006-01-01', 8, 'https://www.gutenberg.org/ebooks/9683', 'en', 5120), +(57236, 'Thuvia, Maid of Mars', 'Burroughs, Edgar Rice', '2005-08-01', 10, 'https://www.gutenberg.org/ebooks/8751', 'en', 26), +(57237, 'Thoughts on General and Partial Inoculations\r\nContaining a translation of two treatises written when the author was at Petersburg, and published there, by Command of her Imperial Majesty, in the Russian Language', 'Dimsdale, Thomas', '2015-07-18', 6, 'https://www.gutenberg.org/ebooks/49476', 'en', 9977), +(57238, 'Peace On Earth, Good-Will To Dogs', 'Abbott, Eleanor Hallowell', '2007-10-01', 24, 'https://www.gutenberg.org/ebooks/22947', 'en', 2464), +(57239, 'Kuvaelmia ja kertomuksia', 'Daudet, Alphonse', '2017-07-02', 6, 'https://www.gutenberg.org/ebooks/55029', 'fi', 1850), +(57240, 'Wat er te zien valt in Armenië\nDe Aarde en haar Volken, 1907-1908', 'Dolens, Noël', '2006-09-17', 6, 'https://www.gutenberg.org/ebooks/19306', 'nl', 11430), +(57241, 'Heroines of the Crusades', 'Bloss, C. A. (Celestia Angenette)', '2012-05-15', 20, 'https://www.gutenberg.org/ebooks/39701', 'en', 18544), +(57242, 'Cashel Byron\'s Profession', 'Shaw, Bernard', '2004-06-01', 21, 'https://www.gutenberg.org/ebooks/5872', 'en', 6185), +(57243, 'The Wing-and-Wing; Or, Le Feu-Follet', 'Cooper, James Fenimore', '2004-04-01', 31, 'https://www.gutenberg.org/ebooks/11957', 'en', 324), +(57244, 'The Stronghold: A Story of Historic Northern Neck of Virginia and Its People', 'Haynie, Miriam', '2011-07-16', 15, 'https://www.gutenberg.org/ebooks/36749', 'en', 18545), +(57245, 'Grammatical Sketch of the Heve Language\r\nShea\'s Library of American Linguistics. Volume III.', 'Smith, Buckingham', '2004-12-22', 26, 'https://www.gutenberg.org/ebooks/14419', 'en', 18546), +(57246, 'English Church Architecture of the Middle Ages: An Elementary Handbook', 'Smith, A. Freeman', '2019-01-20', 5, 'https://www.gutenberg.org/ebooks/58736', 'en', 10078), +(57247, 'Stories from the Italian Poets: with Lives of the Writers, Volume 1', 'Hunt, Leigh', '2004-01-01', 18, 'https://www.gutenberg.org/ebooks/10885', 'en', 2988), +(57248, 'Pals: Young Australians in Sport and Adventure', 'Bowes, Joseph', '2013-12-08', 7, 'https://www.gutenberg.org/ebooks/44369', 'en', 421), +(57249, 'The Memoirs of Madame Vigée Lebrun', 'Vigée-Lebrun, Louise-Elisabeth', '2010-04-10', 39, 'https://www.gutenberg.org/ebooks/31934', 'en', 2134), +(57250, 'Sangre y arena', 'Blasco Ibáñez, Vicente', '2008-10-21', 53, 'https://www.gutenberg.org/ebooks/26983', 'es', 15537); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(57251, 'A Christmas Faggot', 'Gurney, Alfred', '2009-01-20', 5, 'https://www.gutenberg.org/ebooks/27851', 'en', 381), +(57252, 'Le collier des jours: Souvenirs de ma vie', 'Gautier, Judith', '2014-10-24', 16, 'https://www.gutenberg.org/ebooks/47188', 'fr', 4122), +(57253, 'The Story of John G. Paton; Or, Thirty Years Among South Sea Cannibals', 'Paton, John Gibson', '2009-02-08', 56, 'https://www.gutenberg.org/ebooks/28025', 'en', 6104), +(57254, 'Violence and the Labor Movement', 'Hunter, Robert', '2010-01-28', 16, 'https://www.gutenberg.org/ebooks/31108', 'en', 2860), +(57255, 'The Bible, Douay-Rheims, Book 35: Amos\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8335', 'en', 4593), +(57256, 'The postal power of Congress: A study in constitutional expansion', 'Rogers, Lindsay', '2015-05-21', 8, 'https://www.gutenberg.org/ebooks/49012', 'en', 18547), +(57257, 'How to Eat: A Cure for \"Nerves\"', 'Hinkle, Thomas C. (Thomas Clark)', '2006-11-11', 21, 'https://www.gutenberg.org/ebooks/19762', 'en', 8396), +(57258, 'The Adventures of Peter Cottontail', 'Burgess, Thornton W. (Thornton Waldo)', '2014-09-15', 49, 'https://www.gutenberg.org/ebooks/46866', 'en', 625), +(57259, 'Consuelo, Tome 2 (1861)', 'Sand, George', '2004-08-23', 23, 'https://www.gutenberg.org/ebooks/13258', 'fr', 2295), +(57260, 'Essays and Lectures', 'Wilde, Oscar', '1997-01-01', 188, 'https://www.gutenberg.org/ebooks/774', 'en', 20), +(57261, 'The Irish Penny Journal, Vol. 1 No. 03, July 18, 1840', 'Various', '2013-08-21', 6, 'https://www.gutenberg.org/ebooks/43528', 'en', 81), +(57262, 'The School Queens', 'Meade, L. T.', '2009-05-15', 22, 'https://www.gutenberg.org/ebooks/28819', 'en', 2154), +(57263, 'Sleight of Hand: A Practical Manual of Legerdemain for Amateurs & Others', 'Sachs, Edwin Thomas', '2016-01-11', 141, 'https://www.gutenberg.org/ebooks/50903', 'en', 3590), +(57264, 'Life of Lord Byron, Vol. 6\r\nWith His Letters and Journals', 'Moore, Thomas', '2005-01-30', 20, 'https://www.gutenberg.org/ebooks/14841', 'en', 6521), +(57265, '25 vuotta\nValikoima runoja', 'Leino, Kasimir', '2005-06-06', 23, 'https://www.gutenberg.org/ebooks/15993', 'fi', 8), +(57266, 'Η φιλοσοφία του Σωκράτους κατά A. Fouillée', 'Vrailas-Armenes, Petros', '2012-04-03', 3, 'https://www.gutenberg.org/ebooks/39365', 'el', 2286), +(57267, 'Religion und Kosmos', 'Schlaf, Johannes', '2018-11-25', 15, 'https://www.gutenberg.org/ebooks/58352', 'de', 347), +(57268, 'The Necessity of Atheism', 'Brooks, David Marshall', '2007-01-02', 126, 'https://www.gutenberg.org/ebooks/20248', 'en', 2713), +(57269, 'Index of the Project Gutenberg Works of Nathaniel Hawthorne', 'Hawthorne, Nathaniel', '2019-04-14', 23, 'https://www.gutenberg.org/ebooks/59280', 'en', 198), +(57270, 'Making Over Martha', 'Lippmann, Julie M.', '2016-07-28', 16, 'https://www.gutenberg.org/ebooks/52668', 'en', 13), +(57271, 'Magyar titkok: Regény (2. kötet)', 'Nagy, Ignácz', '2018-05-10', 5, 'https://www.gutenberg.org/ebooks/57128', 'hu', 234), +(57272, 'A Mere Chance: A Novel. Vol. 3', 'Cambridge, Ada', '2011-11-22', 6, 'https://www.gutenberg.org/ebooks/38085', 'en', 348), +(57273, 'Handwork in Wood', 'Noyes, William', '2007-03-17', 147, 'https://www.gutenberg.org/ebooks/20846', 'en', 4986), +(57274, 'Prince Ricardo of Pantouflia: Being the Adventures of Prince Prigio\'s Son', 'Lang, Andrew', '2007-07-04', 23, 'https://www.gutenberg.org/ebooks/21994', 'en', 1007), +(57275, 'A System of Practical Medicine. By American Authors. Vol. 1\r\nPathology and General Diseases', NULL, '2012-03-15', 29, 'https://www.gutenberg.org/ebooks/39157', 'en', 736), +(57276, 'The Strand District', 'Mitton, G. E. (Geraldine Edith)', '2008-05-17', 23, 'https://www.gutenberg.org/ebooks/25508', 'en', 18548), +(57277, 'Pawnee Hero Stories and Folk-Tales\nWith notes on the origin, customs and character of the Pawnee people', 'Grinnell, George Bird', '2011-07-31', 21, 'https://www.gutenberg.org/ebooks/36923', 'en', 1749), +(57278, 'Six Plays', 'Darwin, Florence Henrietta Fisher, Lady', '2004-05-01', 15, 'https://www.gutenberg.org/ebooks/5618', 'en', 402), +(57279, 'The Romance of Wills and Testaments', 'Vine Hall, Edgar', '2018-09-16', 16, 'https://www.gutenberg.org/ebooks/57914', 'en', 18549), +(57280, 'Allen\'s West London Street Directory, 1868', 'Allen, Samuel', '2018-10-24', 11, 'https://www.gutenberg.org/ebooks/58160', 'en', 5690), +(57281, 'El doncel de don Enrique el doliente, Tomo II (de 4)\nHistoria caballeresca del siglo quince', 'Larra, Mariano José de', '2016-11-25', 14, 'https://www.gutenberg.org/ebooks/53588', 'es', 2826), +(57282, 'Scribner\'s Magazine, Volume 26, July 1899', 'Various', '2013-01-19', 21, 'https://www.gutenberg.org/ebooks/41871', 'en', 1227), +(57283, 'Eugene Field, a Study in Heredity and Contradictions — Volume 1', 'Thompson, Slason', '2004-07-22', 26, 'https://www.gutenberg.org/ebooks/12984', 'en', 17861), +(57284, 'Die Musen: Eine Ode', 'Claudel, Paul', '2014-07-13', 9, 'https://www.gutenberg.org/ebooks/46268', 'de', 18550), +(57285, 'A Day\'s Tour\r\nA Journey through France and Belgium by Calais, Tournay, Orchies, Douai, Arras, Béthune, Lille, Comines, Ypres, Hazebrouck, Berg', 'Fitzgerald, Percy', '2005-08-12', 18, 'https://www.gutenberg.org/ebooks/16518', 'en', 2427), +(57286, 'Dante et Goethe : dialogues', 'Stern, Daniel', '2009-02-28', 22, 'https://www.gutenberg.org/ebooks/28217', 'fr', 14460), +(57287, 'La reine Margot - Tome I', 'Dumas, Alexandre', '2004-10-25', 60, 'https://www.gutenberg.org/ebooks/13856', 'fr', 984), +(57288, 'Les terres d\'or', 'Aimard, Gustave', '2010-12-13', 24, 'https://www.gutenberg.org/ebooks/34648', 'fr', 61), +(57289, 'Napoleon\'s Campaign in Russia, Anno 1812; Medico-Historical', 'Rose, Achilles', '2005-04-01', 39, 'https://www.gutenberg.org/ebooks/7973', 'en', 10230), +(57290, 'Natural History of the Mammalia of India and Ceylon', 'Sterndale, Robert Armitage', '2006-10-16', 65, 'https://www.gutenberg.org/ebooks/19550', 'en', 18551), +(57291, 'The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 06\r\nMadiera, the Canaries, Ancient Asia, Africa, etc.', 'Hakluyt, Richard', '2005-05-01', 27, 'https://www.gutenberg.org/ebooks/8107', 'en', 885), +(57292, 'Leila at Home\na continuation of Leila in England', 'Tytler, Ann Fraser', '2015-06-15', 6, 'https://www.gutenberg.org/ebooks/49220', 'en', 470), +(57293, 'Under the Andes', 'Stout, Rex', '1996-06-01', 176, 'https://www.gutenberg.org/ebooks/546', 'en', 18552), +(57294, 'The Most Ancient Lives of Saint Patrick\nIncluding the Life by Jocelin, Hitherto Unpublished in America, and His Extant Writings', NULL, '2006-06-01', 43, 'https://www.gutenberg.org/ebooks/18482', 'en', 4519), +(57295, 'The Sword of the King', 'MacDonald, Ronald', '2019-07-07', 184, 'https://www.gutenberg.org/ebooks/59873', 'en', 18553), +(57296, 'Dave Dawson on Guadalcanal', 'Bowen, Robert Sidney', '2010-05-26', 29, 'https://www.gutenberg.org/ebooks/32542', 'en', 1004), +(57297, 'The Outcry', 'James, Henry', '2007-06-29', 28, 'https://www.gutenberg.org/ebooks/21969', 'en', 18554), +(57298, 'The Sagamore of Saco', 'Smith, Elizabeth Oakes Prince', '2017-11-20', 28, 'https://www.gutenberg.org/ebooks/56007', 'en', 3909), +(57299, 'Princess Zara', 'Beeckman, Ross', '2008-01-26', 19, 'https://www.gutenberg.org/ebooks/24427', 'en', 48), +(57300, 'Supply and Demand', 'Henderson, Hubert Douglas, Sir', '2004-01-01', 71, 'https://www.gutenberg.org/ebooks/10612', 'en', 18555), +(57301, 'The Humour and Pathos of Anglo-Indian Life\r\nExtracts from his brother\'s note-book, made by Dr. Ticklemore', 'Mayer, J. E.', '2012-07-08', 9, 'https://www.gutenberg.org/ebooks/40162', 'en', 15995), +(57302, 'Night and Day', 'Woolf, Virginia', '1998-03-01', 361, 'https://www.gutenberg.org/ebooks/1245', 'en', 1079), +(57303, 'The Gambler: A Novel', 'Thurston, Katherine Cecil', '2010-08-22', 13, 'https://www.gutenberg.org/ebooks/33490', 'en', 61), +(57304, 'Siam : The Land of the White Elephant as It Was and Is', 'Bacon, George B. (George Blagden)', '2011-11-25', 34, 'https://www.gutenberg.org/ebooks/38078', 'en', 1893), +(57305, 'The Easiest Way in Housekeeping and Cooking\nAdapted to Domestic Use or Study in Classes', 'Campbell, Helen', '2005-03-14', 59, 'https://www.gutenberg.org/ebooks/15360', 'en', 3407), +(57306, 'The History of Painting in Italy, Vol. 5 (of 6)\r\nFrom the Period of the Revival of the Fine Arts to the End of the Eighteenth Century', 'Lanzi, Luigi', '2012-06-14', 10, 'https://www.gutenberg.org/ebooks/39996', 'en', 7807), +(57307, 'Poet To His Love', 'Bodenheim, Maxwell', '2007-04-04', 20, 'https://www.gutenberg.org/ebooks/21155', 'en', 8), +(57308, 'A Tale of a Tub', 'Swift, Jonathan', '2003-12-01', 244, 'https://www.gutenberg.org/ebooks/4737', 'en', 1971), +(57309, 'Composition', 'Dow, Arthur W. (Arthur Wesley)', '2014-04-15', 405, 'https://www.gutenberg.org/ebooks/45410', 'en', 11466), +(57310, 'Some Famous Problems of the Theory of Numbers and in Particular Waring\'s Problem\r\nAn Inaugural Lecture delivered before the University of Oxford', 'Hardy, G. H. (Godfrey Harold)', '2011-08-10', 52, 'https://www.gutenberg.org/ebooks/37030', 'en', 6206), +(57311, 'The Pony Rider Boys in Texas; Or, The Veiled Riddle of the Plains', 'Patchin, Frank Gee', '2006-12-10', 29, 'https://www.gutenberg.org/ebooks/20087', 'en', 18556), +(57312, 'Little Friend Lydia', 'Phillips, Ethel Calvert', '2012-02-12', 113, 'https://www.gutenberg.org/ebooks/38844', 'en', 751), +(57313, 'Tulella ja miekalla: Kuvaus menneiltä ajoilta. 3', 'Sienkiewicz, Henryk', '2016-11-22', 17, 'https://www.gutenberg.org/ebooks/53575', 'fi', 1202), +(57314, 'The Poetical Works of Mark Akenside', 'Akenside, Mark', '2006-02-01', 43, 'https://www.gutenberg.org/ebooks/9814', 'en', 3947), +(57315, 'Health and Education', 'Kingsley, Charles', '2005-12-31', 41, 'https://www.gutenberg.org/ebooks/17437', 'en', 295), +(57316, 'Won from the Waves', 'Kingston, William Henry Giles', '2007-11-24', 16, 'https://www.gutenberg.org/ebooks/23602', 'en', 3535), +(57317, 'Philistia', 'Allen, Grant', '2004-07-01', 19, 'https://www.gutenberg.org/ebooks/6060', 'en', 61), +(57318, 'Empire Partnership', 'Dafoe, John Wesley', '2014-11-17', 13, 'https://www.gutenberg.org/ebooks/47347', 'en', 18557), +(57319, 'Capitale e mano d\'opera\nLe Commedie, vol. 1', 'Carrera, Valentino', '2014-07-15', 3, 'https://www.gutenberg.org/ebooks/46295', 'it', 4296), +(57320, 'Le Général Dourakine', 'Ségur, Sophie, comtesse de', '2004-07-21', 17, 'https://www.gutenberg.org/ebooks/12979', 'fr', 98), +(57321, 'Saloilta ja vesiltä: Metsästys- ja pyyntiretkiä', 'Wetterhoff, Onni', '2011-04-04', 11, 'https://www.gutenberg.org/ebooks/35767', 'fi', 176), +(57322, 'England and Germany', 'Dillon, Emile Joseph', '2009-07-06', 22, 'https://www.gutenberg.org/ebooks/29338', 'en', 10303), +(57323, 'A Captive at Carlsruhe and Other German Prison Camps', 'Lee, Joseph', '2016-02-15', 6, 'https://www.gutenberg.org/ebooks/51222', 'en', 2223), +(57324, 'The Mysterious Stranger', 'Twain, Mark', '2005-09-01', 7, 'https://www.gutenberg.org/ebooks/9028', 'en', 770), +(57325, 'Intarsia and Marquetry', 'Jackson, F. Hamilton (Frederick Hamilton)', '2009-10-08', 35, 'https://www.gutenberg.org/ebooks/30215', 'en', 18558), +(57326, 'NorthWestNet User Services Internet Resource Guide (NUSIRG)', 'Kochmer, Jonathan', '1992-09-01', 22, 'https://www.gutenberg.org/ebooks/40', 'en', 2599), +(57327, 'Lives of the Most Remarkable Criminals Who have been Condemned and Executed for Murder, the Highway, Housebreaking, Street Robberies, Coining or other offences', NULL, '2004-08-03', 96, 'https://www.gutenberg.org/ebooks/13097', 'en', 8522), +(57328, 'Selvään veteen: Runoja ja tunnuslauseita', 'Siljo, Juhani', '2017-05-20', 7, 'https://www.gutenberg.org/ebooks/54750', 'fi', 1171), +(57329, 'Mémoires de Hector Berlioz\r\ncomprenant ses voyages en Italie, en Allemagne, en Russie et en Angleterre, 1803-1865', 'Berlioz, Hector', '2008-08-20', 73, 'https://www.gutenberg.org/ebooks/26370', 'fr', 6776), +(57330, 'Quincas Borba', 'Machado de Assis', '2017-10-05', 71, 'https://www.gutenberg.org/ebooks/55682', 'pt', 18559), +(57331, 'The Poetical Works of William Wordsworth — Volume 2 (of 8)', 'Wordsworth, William', '2004-04-01', 59, 'https://www.gutenberg.org/ebooks/12145', 'en', 3947), +(57332, 'Abrégé de l\'Histoire Générale des Voyages (Tome 6)', 'La Harpe, Jean-François de', '2013-05-03', 7, 'https://www.gutenberg.org/ebooks/42635', 'fr', 885), +(57333, 'Human Genome Project, Chromosome Number 12', 'Human Genome Project', '2002-11-01', 1, 'https://www.gutenberg.org/ebooks/3512', 'en', 2318), +(57334, 'The Perils and Adventures of Harry Skipwith by Land and Sea', 'Kingston, William Henry Giles', '2010-11-29', 30, 'https://www.gutenberg.org/ebooks/34487', 'en', 3532), +(57335, 'Michel and Angele [A Ladder of Swords] — Volume 3', 'Parker, Gilbert', '2004-08-01', 53, 'https://www.gutenberg.org/ebooks/6252', 'en', 4434), +(57336, 'Herrn de Charreards deutsche Kinder: Die Geschichte einer Familie', 'Siebe, Josephine', '2014-10-22', 21, 'https://www.gutenberg.org/ebooks/47175', 'de', 98), +(57337, 'Le Pèlerin du silence', 'Gourmont, Remy de', '2006-01-25', 14, 'https://www.gutenberg.org/ebooks/17605', 'fr', 642), +(57338, 'Die Reden Gotamo Buddhos. Mittlere Sammlung, zweiter Band', NULL, '2015-05-10', 5, 'https://www.gutenberg.org/ebooks/48901', 'de', 639), +(57339, 'Rollo in Rome', 'Abbott, Jacob', '2007-11-10', 25, 'https://www.gutenberg.org/ebooks/23430', 'en', 1001), +(57340, 'The Novel; what it is', 'Crawford, F. Marion (Francis Marion)', '2016-01-23', 7, 'https://www.gutenberg.org/ebooks/51010', 'en', 61), +(57341, 'Kim', 'Kipling, Rudyard', '2011-03-11', 188, 'https://www.gutenberg.org/ebooks/35555', 'en', 1319), +(57342, 'Alone', 'Douglas, Norman', '2005-01-01', 24, 'https://www.gutenberg.org/ebooks/7380', 'en', 1896), +(57343, 'The Gathering of Brother Hilarius', 'Fairless, Michael', '1997-01-01', 54, 'https://www.gutenberg.org/ebooks/789', 'en', 137), +(57344, 'The History Teacher\'s Magazine, Vol. I, No. 1, September, 1909', 'Various', '2017-04-18', 1, 'https://www.gutenberg.org/ebooks/54562', 'en', 7692), +(57345, 'Great Pirate Stories', NULL, '2008-10-29', 40, 'https://www.gutenberg.org/ebooks/27090', 'en', 645), +(57346, 'A True Account of the Battle of Jutland, May 31, 1916', 'Frothingham, Thomas Goddard', '2015-01-12', 20, 'https://www.gutenberg.org/ebooks/47949', 'en', 12055), +(57347, 'Sult', 'Hamsun, Knut', '2009-09-19', 125, 'https://www.gutenberg.org/ebooks/30027', 'no', 12091), +(57348, 'Flamedown', 'Fyfe, H. B. (Horace Bowne)', '2009-09-08', 54, 'https://www.gutenberg.org/ebooks/29936', 'en', 179), +(57349, 'Misrepresentative Women', 'Graham, Harry', '2013-03-24', 19, 'https://www.gutenberg.org/ebooks/42407', 'en', 18560), +(57350, 'Returning Home', 'Trollope, Anthony', '2003-02-01', 17, 'https://www.gutenberg.org/ebooks/3720', 'en', 611), +(57351, 'Peat and its Uses as Fertilizer and Fuel', 'Johnson, Samuel W. (Samuel William)', '2008-07-28', 12, 'https://www.gutenberg.org/ebooks/26142', 'en', 18561), +(57352, 'The Court of Boyville', 'White, William Allen', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12377', 'en', 153), +(57353, 'Picked up Adrift\r\nIllustrated', 'De Mille, James', '2017-12-24', 5, 'https://www.gutenberg.org/ebooks/56235', 'en', 246), +(57354, 'The Intriguers', 'Le Queux, William', '2010-06-11', 26, 'https://www.gutenberg.org/ebooks/32770', 'en', 1079), +(57355, 'A System of Easy Lettering', 'Cromwell, John Howard', '2012-04-07', 8, 'https://www.gutenberg.org/ebooks/39398', 'en', 12769), +(57356, 'The Strange Adventures of Andrew Battell, of Leigh, in Angola and the Adjoining Regions', 'Battell, Andrew', '2012-11-03', 29, 'https://www.gutenberg.org/ebooks/41282', 'en', 18562), +(57357, 'Government in Republican China', 'Linebarger, Paul Myron Anthony', '2012-07-27', 26, 'https://www.gutenberg.org/ebooks/40350', 'en', 18563), +(57358, 'The Mirror of Kong Ho', 'Bramah, Ernest', '1997-10-01', 52, 'https://www.gutenberg.org/ebooks/1077', 'en', 637), +(57359, 'A Middy of the King: A Romance of the Old British Navy', 'Collingwood, Harry', '2008-02-14', 9, 'https://www.gutenberg.org/ebooks/24615', 'en', 7815), +(57360, 'The Principles of Success in Literature', 'Lewes, George Henry', '2003-12-01', 34, 'https://www.gutenberg.org/ebooks/10420', 'en', 935), +(57361, 'Die drei Nüsse', 'Brentano, Clemens', '2003-10-01', 24, 'https://www.gutenberg.org/ebooks/4505', 'de', 179), +(57362, 'The Curved Blades', 'Wells, Carolyn', '2014-05-10', 30, 'https://www.gutenberg.org/ebooks/45622', 'en', 61), +(57363, 'Saint-Pierre & Miquelon', 'Premio-Real, comte de', '2005-02-22', 10, 'https://www.gutenberg.org/ebooks/15152', 'fr', 18564), +(57364, 'The Blessed Damozel', 'Rossetti, Dante Gabriel', '2016-08-01', 24, 'https://www.gutenberg.org/ebooks/52695', 'en', 532), +(57365, 'Sappers and Miners: The Flood beneath the Sea', 'Fenn, George Manville', '2007-05-08', 23, 'https://www.gutenberg.org/ebooks/21367', 'en', 11147), +(57366, 'Richard Coeur de Lion and Blondel', 'Brontë, Charlotte', '2016-12-16', 16, 'https://www.gutenberg.org/ebooks/53747', 'en', 532), +(57367, 'Custom and Myth', 'Lang, Andrew', '2004-11-17', 71, 'https://www.gutenberg.org/ebooks/14080', 'en', 1470), +(57368, 'Kasperle auf Burg Himmelhoch', 'Siebe, Josephine', '2011-08-25', 26, 'https://www.gutenberg.org/ebooks/37202', 'de', 4810), +(57369, 'For the Liberty of Texas', 'Stratemeyer, Edward', '2007-07-31', 14, 'https://www.gutenberg.org/ebooks/22186', 'en', 18565), +(57370, 'Der Tabak: Studien über seine Kultur und Biologie', 'Koning, C. J. (Cornelis Johan)', '2016-03-16', 12, 'https://www.gutenberg.org/ebooks/51474', 'de', 8609), +(57371, 'O descobrimento do Brasil por Pedro Alvares Cabral', 'Baldaque da Silva, Antonio Arthur', '2011-01-31', 26, 'https://www.gutenberg.org/ebooks/35131', 'pt', 15836), +(57372, 'Hold Up Your Heads, Girls! Helps for Girls, in School and Out', 'Ryder, Annie H.', '2004-10-01', 18, 'https://www.gutenberg.org/ebooks/6636', 'en', 3668), +(57373, 'Haiti: Its dawn of progress after years in a night of revolution', 'Kuser, John Dryden', '2014-12-02', 7, 'https://www.gutenberg.org/ebooks/47511', 'en', 266), +(57374, 'Correspondance de Chateaubriand avec la marquise de V...\nUn dernier amour de René', 'Chateaubriand, François-René, vicomte de', '2005-12-09', 13, 'https://www.gutenberg.org/ebooks/17261', 'fr', 18566), +(57375, 'The Dean\'s Watch', 'Erckmann-Chatrian', '2007-10-17', 15, 'https://www.gutenberg.org/ebooks/23054', 'en', 179), +(57376, 'Paul Cézanne', 'Coquiot, Gustave', '2013-02-10', 28, 'https://www.gutenberg.org/ebooks/42063', 'fr', 18567), +(57377, 'The Wandering Jew — Volume 06', 'Sue, Eugène', '2004-10-25', 25, 'https://www.gutenberg.org/ebooks/3344', 'en', 6229), +(57378, 'Language of Flowers', 'Greenaway, Kate', '2010-03-10', 343, 'https://www.gutenberg.org/ebooks/31591', 'en', 18568), +(57379, 'Stingaree', 'Hornung, E. W. (Ernest William)', '2008-09-04', 38, 'https://www.gutenberg.org/ebooks/26526', 'en', 432), +(57380, 'The Rhyme of the Ancient Mariner', 'Coleridge, Samuel Taylor', '2004-06-01', 39, 'https://www.gutenberg.org/ebooks/12713', 'en', 8), +(57381, 'Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910\nThe New York Tunnel Extension of the Pennsylvania Railroad.\nPaper No. 1150', 'Raymond, Charles W.', '2006-04-22', 15, 'https://www.gutenberg.org/ebooks/18229', 'en', 8219), +(57382, 'Neighbours on the Green', 'Oliphant, Mrs. (Margaret)', '2017-02-03', 16, 'https://www.gutenberg.org/ebooks/54106', 'en', 45), +(57383, 'Pillars of Society', 'Ibsen, Henrik', '2000-08-01', 79, 'https://www.gutenberg.org/ebooks/2296', 'en', 16510), +(57384, 'The Strand Magazine, Vol. 05, Issue 29, May 1893\r\nAn Illustrated Monthly', 'Various', '2009-11-10', 28, 'https://www.gutenberg.org/ebooks/30443', 'en', 4041), +(57385, 'Vanishing Point', 'Beck, C. C. (Charles Clarence)', '2007-12-15', 50, 'https://www.gutenberg.org/ebooks/23868', 'en', 26), +(57386, 'Meine Lebens-Erinnerungen - Band 3', 'Oehlenschläger, Adam', '2015-03-22', 7, 'https://www.gutenberg.org/ebooks/48559', 'de', 17735), +(57387, 'The Socialist', 'Thorne, Guy', '2012-09-11', 11, 'https://www.gutenberg.org/ebooks/40734', 'en', 109), +(57388, 'Tom Tiddler\'s Ground', 'Dickens, Charles', '1998-08-01', 52, 'https://www.gutenberg.org/ebooks/1413', 'en', 401), +(57389, 'Children\'s Rhymes, Children\'s Games, Children\'s Songs, Children\'s Stories\nA Book for Bairns and Big Folk', 'Ford, Robert', '2008-01-13', 64, 'https://www.gutenberg.org/ebooks/24271', 'en', 343), +(57390, 'The Father of British Canada: a Chronicle of Carleton', 'Wood, William', '2003-11-01', 16, 'https://www.gutenberg.org/ebooks/10044', 'en', 17766), +(57391, 'The Legislative Manual, of the State of Colorado\r\nComprising the History of Colorado, Annals of the Legislature, Manual of Customs, Precedents and Forms, Rules of Parliamentary Parliamentary Practice, and the Constitutions of the United States and the History of Colorado, Annals of the Legislature, Manual of Customs, Precedents and Forms, Rules of Parliamentary Practice, and the Constitutions of the United States and the State of Colorado. Also, Chronological Table of American History, Lists and Tables for Reference, Biographies, Etc.', 'Corbett, Thomas B.', '2018-08-27', 16, 'https://www.gutenberg.org/ebooks/57783', 'en', 18569), +(57392, 'Primus Annus', 'Paine, W. L. (Walter Lionel)', '2018-02-26', 264, 'https://www.gutenberg.org/ebooks/56651', 'en', 12071), +(57393, 'The Atlantic Monthly, Volume 04, No. 21, July, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11196', 'en', 1227), +(57394, 'The Esperantist, Vol. 1, No. 7', NULL, '2010-05-10', 9, 'https://www.gutenberg.org/ebooks/32314', 'eo', 3912), +(57395, 'Evenings at Home; Or, The Juvenile Budget Opened', 'Barbauld, Mrs. (Anna Letitia)', '2016-10-19', 14, 'https://www.gutenberg.org/ebooks/53323', 'en', 859), +(57396, 'The Boy Chums in the Gulf of Mexico\nor, On a Dangerous Cruise with the Greek Spongers', 'Ely, Wilmer M. (Wilmer Mateo)', '2013-12-09', 7, 'https://www.gutenberg.org/ebooks/44394', 'en', 18570), +(57397, 'The Mule\r\nA Treatise on the Breeding, Training, and Uses to Which He May Be Put', 'Riley, Harvey', '2004-01-01', 9, 'https://www.gutenberg.org/ebooks/10878', 'en', 18571), +(57398, 'Report on the Cost of Living in Ireland, June 1922', 'Ireland. Ministry of Economic Affairs', '2011-10-08', 4, 'https://www.gutenberg.org/ebooks/37666', 'en', 18572), +(57399, 'Diary of Samuel Pepys — Volume 40: November/December 1665', 'Pepys, Samuel', '2004-11-30', 6, 'https://www.gutenberg.org/ebooks/4161', 'en', 738), +(57400, 'Gróf Gvadányi József és Fazekas Mihály (Magyar remekirók 6. kötet)', 'Gvadányi, József, gróf', '2014-03-28', 16, 'https://www.gutenberg.org/ebooks/45246', 'hu', 1645), +(57401, 'Beyond the Black Waters', 'A. L. O. E.', '2019-05-27', 63, 'https://www.gutenberg.org/ebooks/59619', 'en', 18573), +(57402, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 579, December 8, 1832', 'Various', '2005-04-04', 15, 'https://www.gutenberg.org/ebooks/15536', 'en', 133), +(57403, 'Silver Lake', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 43, 'https://www.gutenberg.org/ebooks/21703', 'en', 676), +(57404, 'Die Weise von Liebe und Tod des Cornets Christoph Rilke', 'Rilke, Rainer Maria', '2007-12-26', 93, 'https://www.gutenberg.org/ebooks/24043', 'de', 18574), +(57405, 'Gloria\r\nFrom The Twelfth Mass by Wolfgang Amadeus Mozart', NULL, '2003-11-01', 26, 'https://www.gutenberg.org/ebooks/10276', 'la', 18575), +(57406, 'A könyv története (2. rész)\r\nA könyv történeti fejlődése', 'Steinhofer, Károly', '2012-08-14', 14, 'https://www.gutenberg.org/ebooks/40506', 'hu', 18576), +(57407, 'Miss or Mrs.?', 'Collins, Wilkie', '2006-03-22', 32, 'https://www.gutenberg.org/ebooks/1621', 'en', 3511), +(57408, 'Freudian Slip', 'Abel, Franklin', '2010-04-24', 23, 'https://www.gutenberg.org/ebooks/32126', 'en', 26), +(57409, 'Bacon\'s Essays, and Wisdom of the Ancients', 'Bacon, Francis', '2018-01-29', 188, 'https://www.gutenberg.org/ebooks/56463', 'en', 11407), +(57410, 'Up the Orinoco and down the Magdalena', 'Zahm, J. A. (John Augustine)', '2014-05-31', 14, 'https://www.gutenberg.org/ebooks/45848', 'en', 16282), +(57411, 'The Continental Monthly, Vol 3 No 3, March 1863\nDevoted To Literature And National Policy', 'Various', '2008-04-27', 11, 'https://www.gutenberg.org/ebooks/25191', 'en', 162), +(57412, 'The Automobile Girls Along the Hudson; Or, Fighting Fire in Sleepy Hollow', 'Crane, Laura Dent', '2011-09-16', 15, 'https://www.gutenberg.org/ebooks/37454', 'en', 18577), +(57413, 'Tales and Novels of J. de La Fontaine — Volume 07', 'La Fontaine, Jean de', '2004-03-01', 15, 'https://www.gutenberg.org/ebooks/5281', 'en', 506), +(57414, 'Half-hours with the Highwaymen - Vol 1\r\nPicturesque Biographies and Traditions of the \"Knights of the Road\"', 'Harper, Charles G. (Charles George)', '2016-10-10', 24, 'https://www.gutenberg.org/ebooks/53111', 'en', 8522), +(57415, 'Far to Seek\nA Romance of England and India', 'Diver, Maud', '2005-04-25', 31, 'https://www.gutenberg.org/ebooks/15704', 'en', 61), +(57416, 'Woodwork Joints: How They Are Set Out, How Made and Where Used.', 'Fairham, William', '2007-05-19', 252, 'https://www.gutenberg.org/ebooks/21531', 'en', 4986), +(57417, 'Παραμύθια της Χαλιμάς Τόμος 1\r\nΉτοι Διηγήσεις και Συβεβηκότα λίαν περίεργα και ωραία Συνταχθέντα εις την Αραβικήν υπό του πολυμαθούς Δερβίς Αμπου Mπεκήρ Κατά την έκδοσιν της Βενετίας', NULL, '2011-07-03', 20, 'https://www.gutenberg.org/ebooks/36586', 'el', 1007), +(57418, 'Five Thousand an Hour: How Johnny Gamble Won the Heiress', 'Chester, George Randolph', '2003-08-01', 12, 'https://www.gutenberg.org/ebooks/4353', 'en', 48), +(57419, 'The Vision Splendid', 'Broster, D. K. (Dorothy Kathleen)', '2014-03-08', 14, 'https://www.gutenberg.org/ebooks/45074', 'en', 11770), +(57420, 'Beaumont and Fletcher\'s Works, Vol. 08 of 10', 'Beaumont, Francis', '2011-02-17', 19, 'https://www.gutenberg.org/ebooks/35303', 'en', 1088), +(57421, 'Young Lion of the Woods\r\nOr, A Story of Early Colonial Days', 'Smith, Thomas Barlow', '2005-07-02', 20, 'https://www.gutenberg.org/ebooks/16181', 'en', 18578), +(57422, 'The War Book of the German General Staff\r\nBeing \"The Usages of War on Land\" Issued by the Great General Staff of the German Army', 'Prussia (Germany). Armee. Grosser Generalstab. Kriegsgeschichtliche Abteilung II', '2016-04-03', 44, 'https://www.gutenberg.org/ebooks/51646', 'en', 6943), +(57423, 'Pioneers of the Old South: A Chronicle of English Colonial Beginnings', 'Johnston, Mary', '2001-11-01', 35, 'https://www.gutenberg.org/ebooks/2898', 'en', 18579), +(57424, 'The Haunted Ship', 'Tucker, Kate Marion', '2015-12-30', 12, 'https://www.gutenberg.org/ebooks/50794', 'en', 82), +(57425, 'Kate Bonnet: The Romance of a Pirate\'s Daughter', 'Stockton, Frank Richard', '2005-11-12', 61, 'https://www.gutenberg.org/ebooks/17053', 'en', 18580), +(57426, 'Janet\'s Love and Service', 'Robertson, Margaret M. (Margaret Murray)', '2007-10-31', 24, 'https://www.gutenberg.org/ebooks/23266', 'en', 539), +(57427, 'The Poetical Works of Edward Young, Volume 2', 'Young, Edward', '2006-07-14', 13, 'https://www.gutenberg.org/ebooks/18827', 'en', 54), +(57428, 'More Pages from a Journal', 'White, William Hale', '2004-09-01', 19, 'https://www.gutenberg.org/ebooks/6404', 'en', 472), +(57429, 'The Island of Enchantment', 'Forman, Justus Miles', '2014-12-20', 33, 'https://www.gutenberg.org/ebooks/47723', 'en', 3208), +(57430, 'The Captain\'s Bunk\nA Story for Boys', 'Manwell, M. B.', '2008-09-28', 11, 'https://www.gutenberg.org/ebooks/26714', 'en', 2815), +(57431, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 583, December 29, 1832', 'Various', '2004-06-01', 4, 'https://www.gutenberg.org/ebooks/12521', 'en', 133), +(57432, 'The Expositor\'s Bible: The Book of Revelation', 'Milligan, William', '2013-03-03', 29, 'https://www.gutenberg.org/ebooks/42251', 'en', 10558), +(57433, 'The Innocents Abroad', 'Twain, Mark', '2004-06-22', 1383, 'https://www.gutenberg.org/ebooks/3176', 'en', 2204), +(57434, 'The Brownings, Their Life and Art', 'Whiting, Lilian', '2009-12-14', 13, 'https://www.gutenberg.org/ebooks/30671', 'en', 18581), +(57435, 'Galen: On the Natural Faculties', 'Galen', '2013-08-02', 95, 'https://www.gutenberg.org/ebooks/43383', 'grc', 4010), +(57436, 'Europe in the Middle Ages', 'Plunket, Ierne L. (Ierne Lifford)', '2017-03-10', 37, 'https://www.gutenberg.org/ebooks/54334', 'en', 6411), +(57437, 'Large Fees and How to Get Them: A book for the private use of physicians', 'Harmon, Albert V.', '2019-08-14', 702, 'https://www.gutenberg.org/ebooks/60101', 'en', 18582), +(57438, 'The Knickerbocker, or New-York Monthly Magazine, May 1844\nVolume 23, Number 5', 'Various', '2007-07-30', 3, 'https://www.gutenberg.org/ebooks/22172', 'en', 18), +(57439, 'Pirttipohjalaiset', 'Lassila, Maiju', '2016-03-17', 15, 'https://www.gutenberg.org/ebooks/51480', 'fi', 175), +(57440, 'Miscellanea', 'Ewing, Juliana Horatia Gatty', '2005-07-22', 16, 'https://www.gutenberg.org/ebooks/16347', 'en', 1063), +(57441, 'The Tragedy of Wild River Valley', 'Finley, Martha', '2014-07-28', 22, 'https://www.gutenberg.org/ebooks/46437', 'en', 527), +(57442, '\"My Novel\" — Volume 09', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7710', 'en', 2975), +(57443, 'Deep Moat Grange', 'Crockett, S. R. (Samuel Rutherford)', '2010-10-01', 10, 'https://www.gutenberg.org/ebooks/34017', 'en', 1040), +(57444, 'Kauppahuone Playfair ja Kumpp\neli Pumpulilasti ja Sydän', 'Verne, Jules', '2005-12-12', 11, 'https://www.gutenberg.org/ebooks/17295', 'fi', 16009), +(57445, 'Acids, Alkalis and Salts', 'Adlam, George Henry Joseph', '2015-11-26', 27, 'https://www.gutenberg.org/ebooks/50552', 'en', 18583), +(57446, 'The Real Jefferson Davis', 'Knight, Landon', '2013-10-19', 10, 'https://www.gutenberg.org/ebooks/43979', 'en', 18584), +(57447, 'The Campfire Girls of Roselawn; Or, a Strange Message from the Air', 'Penrose, Margaret', '2009-03-30', 13, 'https://www.gutenberg.org/ebooks/28448', 'en', 18585), +(57448, 'Musical Criticisms', 'Johnstone, Arthur', '2013-02-15', 18, 'https://www.gutenberg.org/ebooks/42097', 'en', 250), +(57449, 'The Works of Balzac: A linked index to all Project Gutenberg editions', 'Balzac, Honoré de', '2010-03-08', 98, 'https://www.gutenberg.org/ebooks/31565', 'en', 58), +(57450, 'Jungle Tales of Tarzan', 'Burroughs, Edgar Rice', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8758', 'en', 580), +(57451, 'The Last Egyptian: A Romance of the Nile', 'Baum, L. Frank (Lyman Frank)', '2017-07-01', 53, 'https://www.gutenberg.org/ebooks/55020', 'en', 2938), +(57452, 'The Ways of Men', 'Gregory, Eliot', '1995-08-01', 144, 'https://www.gutenberg.org/ebooks/319', 'en', 620), +(57453, 'New York Times Current History: The European War, Vol 1, No. 1\r\nFrom the Beginning to March, 1915, With Index', 'Various', '2004-10-05', 61, 'https://www.gutenberg.org/ebooks/13635', 'en', 335), +(57454, 'The Martian: A Novel', 'Du Maurier, George', '2008-12-03', 43, 'https://www.gutenberg.org/ebooks/27400', 'en', 2627), +(57455, 'Timon of Athens', 'Shakespeare, William', '2000-07-01', 44, 'https://www.gutenberg.org/ebooks/2262', 'en', 5046), +(57456, 'The Squire\'s Little Girl', 'Meade, L. T.', '2013-07-08', 9, 'https://www.gutenberg.org/ebooks/43145', 'en', 62), +(57457, 'Bert Wilson at Panama', 'Duffield, J. W.', '2010-07-22', 18, 'https://www.gutenberg.org/ebooks/33232', 'en', 1655), +(57458, 'Days Off, and Other Digressions', 'Van Dyke, Henry', '2008-01-14', 17, 'https://www.gutenberg.org/ebooks/24285', 'en', 20), +(57459, 'James Russell Lowell, A Biography; vol 2/2', 'Scudder, Horace Elisha', '2018-08-26', 12, 'https://www.gutenberg.org/ebooks/57777', 'en', 14748), +(57460, 'The Story of Little Black Mingo', 'Bannerman, Helen', '2004-02-01', 87, 'https://www.gutenberg.org/ebooks/11162', 'en', 18586), +(57461, 'A Hundred Fables of La Fontaine', 'La Fontaine, Jean de', '2008-05-06', 34, 'https://www.gutenberg.org/ebooks/25357', 'en', 506), +(57462, 'The Mortal Gods, and Other Plays', 'Dargan, Olive Tilford', '2012-05-16', 20, 'https://www.gutenberg.org/ebooks/39708', 'en', 427), +(57463, 'A középkor főbb krónikásai a magyarok honfoglalása koráig', 'Márki, Sándor', '2012-12-12', 20, 'https://www.gutenberg.org/ebooks/41612', 'hu', 18587), +(57464, 'Young Americans Abroad\r\nVacation in Europe: Travels in England, France, Holland, Belgium, Prussia and Switzerland', NULL, '2007-02-19', 12, 'https://www.gutenberg.org/ebooks/20625', 'en', 1408), +(57465, 'Gawayne and the Green Knight\r\nA Fairy Tale', 'Lewis, Charlton Miner', '2004-12-21', 53, 'https://www.gutenberg.org/ebooks/14410', 'en', 17257), +(57466, 'The Amenities of Book-Collecting and Kindred Affections', 'Newton, A. Edward (Alfred Edward)', '2013-12-05', 18, 'https://www.gutenberg.org/ebooks/44360', 'en', 4118), +(57467, 'State of the Union Addresses', 'Bush, George', '2004-02-01', 25, 'https://www.gutenberg.org/ebooks/5047', 'en', 1926), +(57468, 'Cathedral Cities of Italy', 'Collins, W. W. (William Wiehe)', '2011-10-10', 7, 'https://www.gutenberg.org/ebooks/37692', 'en', 1896), +(57469, 'Diary of Samuel Pepys — Complete 1668 N.S.', 'Pepys, Samuel', '2004-10-31', 31, 'https://www.gutenberg.org/ebooks/4195', 'en', 201), +(57470, 'Peggy Owen, Patriot: A Story for Girls', 'Madison, Lucy Foster', '2011-07-15', 51, 'https://www.gutenberg.org/ebooks/36740', 'en', 5640), +(57471, '肉蒲團', 'Li, Yu', '2016-06-01', 184, 'https://www.gutenberg.org/ebooks/52205', 'zh', 8323), +(57472, 'Letter on Corpulence, Addressed to the Public', 'Banting, William', '2018-07-20', 42, 'https://www.gutenberg.org/ebooks/57545', 'en', 8743), +(57473, 'Polish National Dance', NULL, '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10282', 'en', 872), +(57474, 'A New History of the United States\r\nThe greater republic, embracing the growth and achievements of our country from the earliest days of discovery and settlement to the present eventful year', 'Morris, Charles', '2010-07-18', 19, 'https://www.gutenberg.org/ebooks/33000', 'en', 207), +(57475, 'In the Days of Washington: A Story of the American Revolution', 'Graydon, William Murray', '2012-11-21', 7, 'https://www.gutenberg.org/ebooks/41420', 'en', 2843), +(57476, 'The Mirror of Literature, Amusement, and Instruction. Volume 13, No. 376, June 20, 1829', 'Various', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/11350', 'en', 133), +(57477, 'Elias Lönnrotin matkat II: 1841-1844', 'Lönnrot, Elias', '2018-02-04', 7, 'https://www.gutenberg.org/ebooks/56497', 'fi', 7220), +(57478, 'The Candy Country', 'Alcott, Louisa May', '2008-04-25', 39, 'https://www.gutenberg.org/ebooks/25165', 'en', 2203), +(57479, 'Red Head and Whistle Breeches', 'Butler, Ellis Parker', '2013-11-10', 13, 'https://www.gutenberg.org/ebooks/44152', 'en', 179), +(57480, 'Tales and Novels of J. de La Fontaine — Volume 01', 'La Fontaine, Jean de', '2004-03-01', 78, 'https://www.gutenberg.org/ebooks/5275', 'en', 2629), +(57481, 'The Outline of Science, Vol. 1 (of 4)\nA Plain Story Simply Told', 'Thomson, J. Arthur (John Arthur)', '2007-01-22', 211, 'https://www.gutenberg.org/ebooks/20417', 'en', 814), +(57482, 'As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1873-10/11)', NULL, '2005-01-06', 10, 'https://www.gutenberg.org/ebooks/14622', 'pt', 10301), +(57483, 'Lukkarin arkityöt: Yksinäytöksinen huvinäytelmä', 'Niemi, Vihtori', '2016-05-10', 2, 'https://www.gutenberg.org/ebooks/52037', 'fi', 433), +(57484, 'What and Where is God? A Human Answer to the Deep Religious Cry of the Modern Soul', 'Swain, Richard La Rue', '2011-07-01', 18, 'https://www.gutenberg.org/ebooks/36572', 'en', 13236), +(57485, 'The Pan-Angles\nA Consideration of the Federation of the Seven English-Speaking Nations', 'Kennedy, Sinclair', '2014-03-08', 8, 'https://www.gutenberg.org/ebooks/45080', 'en', 15402), +(57486, 'Littlebourne Lock', 'Harrison, F. Bayford', '2008-07-03', 14, 'https://www.gutenberg.org/ebooks/25959', 'en', 2815), +(57487, 'Thomas Otway\nThe Best Plays of the Old Dramatists', 'Otway, Thomas', '2014-08-17', 18, 'https://www.gutenberg.org/ebooks/46605', 'en', 126), +(57488, 'King Coal : a Novel', 'Sinclair, Upton', '2005-02-01', 62, 'https://www.gutenberg.org/ebooks/7522', 'en', 6008), +(57489, 'The Castle Of The Shadows', 'Williamson, A. M. (Alice Muriel)', '2006-11-23', 30, 'https://www.gutenberg.org/ebooks/19901', 'en', 323), +(57490, 'The Wind in the Willows', 'Grahame, Kenneth', '2007-08-01', 10, 'https://www.gutenberg.org/ebooks/22340', 'en', 1383), +(57491, 'The Great Round World And What Is Going On In It, Vol. 1, November 4, 1897, No. 52\nA Weekly Magazine for Boys and Girls', 'Various', '2005-07-02', 6, 'https://www.gutenberg.org/ebooks/16175', 'en', 1), +(57492, 'Hassan; or, The Child of the Pyramid: An Egyptian Tale', 'Murray, Charles Augustus, Sir', '2015-12-24', 14, 'https://www.gutenberg.org/ebooks/50760', 'en', 18588), +(57493, 'Ted and the Telephone', 'Bassett, Sara Ware', '2007-11-02', 47, 'https://www.gutenberg.org/ebooks/23292', 'en', 3774), +(57494, 'Barnaby Rudge: A Tale of the Riots of \'Eighty', 'Dickens, Charles', '2006-04-27', 322, 'https://www.gutenberg.org/ebooks/917', 'en', 13877), +(57495, 'Zápisky z mrtvého domu', 'Dostoyevsky, Fyodor', '2010-11-06', 31, 'https://www.gutenberg.org/ebooks/34225', 'cs', 15171), +(57496, 'Why Frau Frohmann Raised Her Prices, and Other Stories', 'Trollope, Anthony', '2017-07-28', 37, 'https://www.gutenberg.org/ebooks/55212', 'en', 409), +(57497, 'Flowers from a Persian Garden and Other Papers', 'Clouston, W. A. (William Alexander)', '2005-10-26', 70, 'https://www.gutenberg.org/ebooks/16949', 'en', 18589), +(57498, 'お目出たき人', 'Mushanokoji, Saneatsu', '2010-03-24', 21, 'https://www.gutenberg.org/ebooks/31757', 'ja', 61), +(57499, 'Some Rambling Notes of an Idle Excursion', 'Twain, Mark', '2004-09-16', 40, 'https://www.gutenberg.org/ebooks/3182', 'en', 512), +(57500, 'Encyclopaedia Britannica, 11th Edition, \"Demijohn\" to \"Destructors\"\r\nVolume 8, Slice 2', 'Various', '2009-12-15', 25, 'https://www.gutenberg.org/ebooks/30685', 'en', 1081), +(57501, 'Old John Brown, the man whose soul is marching on', 'Hawkins, Walter', '2000-01-01', 18, 'https://www.gutenberg.org/ebooks/2050', 'en', 4763), +(57502, 'Leather: From the Raw Material to the Finished Product', 'Adcock, K. J.', '2013-08-01', 39, 'https://www.gutenberg.org/ebooks/43377', 'en', 8138), +(57503, 'A Series of Lessons in Gnani Yoga: The Yoga of Wisdom', 'Atkinson, William Walker', '2004-09-09', 80, 'https://www.gutenberg.org/ebooks/13407', 'en', 18590), +(57504, 'Transactions of the American Society of Civil Engineers, vol. LXXII, June, 1911\nWater Purification Plant, Washington, D. C. Results of Operation.', 'American Society of Civil Engineers', '2008-12-27', 30, 'https://www.gutenberg.org/ebooks/27632', 'en', 18591), +(57505, 'Virgil', 'Collins, W. Lucas (William Lucas)', '2019-07-11', 111, 'https://www.gutenberg.org/ebooks/59887', 'en', 18592), +(57506, 'English and Scottish Ballads, Volume 7 (of 8)', NULL, '2012-10-13', 13, 'https://www.gutenberg.org/ebooks/41044', 'en', 5478), +(57507, 'Scientific American Supplement, No. 460, October 25, 1884', 'Various', '2004-03-01', 16, 'https://www.gutenberg.org/ebooks/11734', 'en', 210), +(57508, '易經', 'Anonymous', '2008-05-17', 104, 'https://www.gutenberg.org/ebooks/25501', 'zh', 3637), +(57509, 'Humility: The Beauty of Holiness', 'Murray, Andrew', '2018-05-09', 163, 'https://www.gutenberg.org/ebooks/57121', 'en', 18593), +(57510, 'The Oxford Book of American Essays', NULL, '2012-07-10', 464, 'https://www.gutenberg.org/ebooks/40196', 'en', 4637), +(57511, 'The Girl\'s Own Paper, Vol. XX. No. 999, February 18, 1899', 'Various', '2019-02-24', 12, 'https://www.gutenberg.org/ebooks/58955', 'en', 563), +(57512, 'Roses and Rose Growing', 'Kingsley, Rose Georgina', '2010-08-18', 26, 'https://www.gutenberg.org/ebooks/33464', 'en', 16380), +(57513, 'The Works of Sir Thomas Browne, Volume 3', 'Browne, Thomas, Sir', '2012-11-05', 52, 'https://www.gutenberg.org/ebooks/39962', 'en', 680), +(57514, 'Joseph Conrad', 'Walpole, Hugh', '2016-06-30', 8, 'https://www.gutenberg.org/ebooks/52453', 'en', 4965), +(57515, 'American Eloquence, Volume 4\r\nStudies In American Political History (1897)', NULL, '2005-03-17', 14, 'https://www.gutenberg.org/ebooks/15394', 'en', 207), +(57516, 'Changing China', 'Gascoyne-Cecil, William', '2013-01-19', 12, 'https://www.gutenberg.org/ebooks/41878', 'en', 6825), +(57517, 'Νόμοι και Επινομίς, Τόμος B', 'Plato', '2011-05-15', 19, 'https://www.gutenberg.org/ebooks/36116', 'el', 5325), +(57518, 'Georgian Folk Tales', NULL, '2013-12-28', 100, 'https://www.gutenberg.org/ebooks/44536', 'en', 18594), +(57519, 'The Satyricon of Petronius Arbiter', 'Petronius Arbiter', '2004-05-01', 71, 'https://www.gutenberg.org/ebooks/5611', 'en', 10219), +(57520, 'Diophantine Analysis', 'Carmichael, R. D. (Robert Daniel)', '2006-12-09', 54, 'https://www.gutenberg.org/ebooks/20073', 'en', 18595), +(57521, 'Mercadet: A Comedy in Three Acts', 'Balzac, Honoré de', '2004-12-03', 16, 'https://www.gutenberg.org/ebooks/14246', 'en', 3521), +(57522, 'Flora', 'A. L. O. E.', '2016-11-22', 27, 'https://www.gutenberg.org/ebooks/53581', 'en', 18596), +(57523, 'Hegel\'s Lectures on the History of Philosophy: Volume 3 (of 3)', 'Hegel, Georg Wilhelm Friedrich', '2018-10-26', 109, 'https://www.gutenberg.org/ebooks/58169', 'en', 3566), +(57524, 'Arabian-pulweria: Komedia yhtenä näytöksenä, kahdella waihoksella', 'Holberg, Ludvig', '2015-10-25', 14, 'https://www.gutenberg.org/ebooks/50304', 'fi', 1552), +(57525, 'The Scouts of Stonewall: The Story of the Great Valley Campaign', 'Altsheler, Joseph A. (Joseph Alexander)', '2004-07-01', 36, 'https://www.gutenberg.org/ebooks/6094', 'en', 491), +(57526, 'Gl\'ingannati degli accademici intronati di Siena\r\nCommedie del Cinquecento', 'Unknown', '2010-12-13', 24, 'https://www.gutenberg.org/ebooks/34641', 'it', 11895), +(57527, 'Friends of France\nThe Field Service of the American Ambulance Described by its Members', NULL, '2014-07-12', 17, 'https://www.gutenberg.org/ebooks/46261', 'en', 18597), +(57528, 'Cecilia; Or, Memoirs of an Heiress — Volume 2', 'Burney, Fanny', '2004-12-01', 48, 'https://www.gutenberg.org/ebooks/7146', 'en', 348), +(57529, 'Seeing Things at Night', 'Broun, Heywood', '2011-04-08', 40, 'https://www.gutenberg.org/ebooks/35793', 'en', 20), +(57530, 'Punch, or the London Charivari, Vol. 104, March 25, 1893', 'Various', '2007-09-22', 4, 'https://www.gutenberg.org/ebooks/22724', 'en', 134), +(57531, 'Chronicles (1 of 6): The Historie of England (3 of 8)', 'Holinshed, Raphael', '2005-08-11', 29, 'https://www.gutenberg.org/ebooks/16511', 'en', 2861), +(57532, 'Lessons in Life; A Series of Familiar Essays', 'Holland, J. G. (Josiah Gilbert)', '2005-09-01', 16, 'https://www.gutenberg.org/ebooks/8932', 'en', 740), +(57533, 'New Atlantis', 'Bacon, Francis', '2000-12-01', 376, 'https://www.gutenberg.org/ebooks/2434', 'en', 1828), +(57534, 'The Butterflies of the British Isles', 'South, Richard', '2013-09-13', 22, 'https://www.gutenberg.org/ebooks/43713', 'en', 10018), +(57535, 'Kootut teokset 1: Runoelmia 1868-1885', 'Erkko, J. H.', '2004-07-30', 13, 'https://www.gutenberg.org/ebooks/13063', 'fi', 1171), +(57536, 'A Pioneer Railway of the West', 'Lafferty, Maude Ward', '2008-11-14', 14, 'https://www.gutenberg.org/ebooks/27256', 'en', 18598), +(57537, 'Separation and Service; or, Thoughts on Numbers VI, VII.', 'Taylor, James Hudson', '2008-08-21', 11, 'https://www.gutenberg.org/ebooks/26384', 'en', 18599), +(57538, 'Told by Uncle Remus: New Stories of the Old Plantation', 'Harris, Joel Chandler', '2017-10-03', 56, 'https://www.gutenberg.org/ebooks/55676', 'en', 625), +(57539, 'Book of illustrations : Ancient Tragedy', 'Euripides', '2006-10-16', 47, 'https://www.gutenberg.org/ebooks/19559', 'en', 15867), +(57540, 'Yule-Tide Yarns', NULL, '2015-06-18', 35, 'https://www.gutenberg.org/ebooks/49229', 'en', 246), +(57541, 'The Disfranchisement of the Negro\nThe American Negro Academy. Occasional Papers No. 6', 'Love, John L.', '2010-02-21', 8, 'https://www.gutenberg.org/ebooks/31333', 'en', 9371), +(57542, 'Robert E. Lee: A Story and a Play', 'Hill, Ruth', '2010-11-29', 7, 'https://www.gutenberg.org/ebooks/34473', 'en', 364), +(57543, '黄帝宅經', 'Unknown', '2009-01-21', 31, 'https://www.gutenberg.org/ebooks/27858', 'zh', 18600), +(57544, 'Appletons\' Popular Science Monthly, February 1900\nVol. 56, November, 1899 to April, 1900', 'Various', '2014-10-23', 19, 'https://www.gutenberg.org/ebooks/47181', 'en', 210), +(57545, 'Die Oberheudorfer in der Stadt\nAllerlei heitere Geschichten von den Oberheudorfer Buben und Mädeln', 'Siebe, Josephine', '2015-10-05', 5, 'https://www.gutenberg.org/ebooks/50136', 'de', 16037), +(57546, 'Pygmalion and the Image', 'Morris, William', '2015-08-30', 21, 'https://www.gutenberg.org/ebooks/49827', 'en', 18601), +(57547, 'Ehstnische Märchen. Zweite Hälfte', NULL, '2007-09-05', 26, 'https://www.gutenberg.org/ebooks/22516', 'de', 18602), +(57548, 'Mooses ja hänen hevosensa: Romaani', 'Meriläinen, Heikki', '2005-09-19', 9, 'https://www.gutenberg.org/ebooks/16723', 'fi', 61), +(57549, 'Der Kunstreiter, 1. Band', 'Gerstäcker, Friedrich', '2014-06-20', 9, 'https://www.gutenberg.org/ebooks/46053', 'de', 138), +(57550, 'An American Politician: A Novel', 'Crawford, F. Marion (Francis Marion)', '2005-01-01', 18, 'https://www.gutenberg.org/ebooks/7374', 'en', 4347), +(57551, 'Nelly Channell', 'Doudney, Sarah', '2017-04-24', 7, 'https://www.gutenberg.org/ebooks/54596', 'en', 401), +(57552, 'The Chums of Scranton High on the Cinder Path\r\nOr, The Mystery of the Haunted Quarry', 'Ferguson, Donald', '2004-08-22', 20, 'https://www.gutenberg.org/ebooks/13251', 'en', 1669), +(57553, 'Dulce y sabrosa', 'Picón, Jacinto Octavio', '2008-10-27', 52, 'https://www.gutenberg.org/ebooks/27064', 'es', 4815), +(57554, 'The Pigeon Pie', 'Yonge, Charlotte M. (Charlotte Mary)', '2001-04-01', 19, 'https://www.gutenberg.org/ebooks/2606', 'en', 18603), +(57555, 'The Devil\'s Pool', 'Sand, George', '2009-05-01', 7, 'https://www.gutenberg.org/ebooks/28810', 'en', 8575), +(57556, 'Niitä näitä runouden alalta', 'Blom, E. J. (Erik Johan)', '2013-08-20', 6, 'https://www.gutenberg.org/ebooks/43521', 'fi', 1171), +(57557, 'Spenser', 'Church, R. W. (Richard William)', '2010-01-27', 6, 'https://www.gutenberg.org/ebooks/31101', 'en', 6862), +(57558, 'The Poetical Works of William Wordsworth — Volume 3 (of 8)', 'Wordsworth, William', '2004-05-01', 128, 'https://www.gutenberg.org/ebooks/12383', 'en', 532), +(57559, 'The Chautauquan, Vol. 05, July 1885, No. 10', 'Chautauqua Institution', '2017-08-27', 6, 'https://www.gutenberg.org/ebooks/55444', 'en', 1453), +(57560, 'The Old Bell of Independence; Or, Philadelphia in 1776', 'Watson, Henry C. (Henry Clay)', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/11506', 'en', 2336), +(57561, 'Tam O\'Shanter', 'Burns, Robert', '2008-06-09', 25, 'https://www.gutenberg.org/ebooks/25733', 'en', 11268), +(57562, 'The Dark Goddess', 'Shaver, Richard S.', '2010-06-12', 27, 'https://www.gutenberg.org/ebooks/32784', 'en', 67), +(57563, 'Miles Tremenhere: A Novel. Vol. 2 of 2', 'Maillard, Annette Marie', '2012-11-03', 11, 'https://www.gutenberg.org/ebooks/41276', 'en', 401), +(57564, 'The Story of Miss Moppet', 'Potter, Beatrix', '2005-01-31', 188, 'https://www.gutenberg.org/ebooks/14848', 'en', 18604), +(57565, 'The Ranch Girls\' Pot of Gold', 'Vandercook, Margaret', '2010-09-06', 10, 'https://www.gutenberg.org/ebooks/33656', 'en', 315), +(57566, 'The Arrow of Gold: A Story Between Two Notes', 'Conrad, Joseph', '1997-10-01', 68, 'https://www.gutenberg.org/ebooks/1083', 'en', 18605), +(57567, 'The Feeding of School Children', 'Bulkley, M. E. (Mildred Emily)', '2018-06-12', 5, 'https://www.gutenberg.org/ebooks/57313', 'en', 18606), +(57568, 'Lost in the Jungle; Narrated for Young People', 'Du Chaillu, Paul B. (Paul Belloni)', '2011-06-05', 13, 'https://www.gutenberg.org/ebooks/36324', 'en', 18607), +(57569, 'Short and Sweet: A Comic Drama, in One Act', 'Troughton, Adolphus Charles', '2016-07-27', 11, 'https://www.gutenberg.org/ebooks/52661', 'en', 1281), +(57570, 'The Twilight Years', 'Drussai, Kirk', '2019-04-16', 48, 'https://www.gutenberg.org/ebooks/59289', 'en', 18608), +(57571, 'Hendricks the Hunter; Or, The Border Farm: A Tale of Zululand', 'Kingston, William Henry Giles', '2007-05-08', 13, 'https://www.gutenberg.org/ebooks/21393', 'en', 323), +(57572, 'The Palace of Pleasure, Volume 1', NULL, '2007-01-01', 79, 'https://www.gutenberg.org/ebooks/20241', 'en', 58), +(57573, 'Punch, or the London Charivari, Volume 101, November 14, 1891', 'Various', '2004-11-17', 1, 'https://www.gutenberg.org/ebooks/14074', 'en', 134), +(57574, 'The World\'s Greatest Books — Volume 20 — Miscellaneous Literature and Index', NULL, '2014-01-18', 289, 'https://www.gutenberg.org/ebooks/44704', 'en', 19), +(57575, 'L\'homme Qui Rit', 'Hugo, Victor', '2004-04-01', 225, 'https://www.gutenberg.org/ebooks/5423', 'fr', 6512), +(57576, 'The Ink-Stain (Tache d\'encre) — Complete', 'Bazin, René', '2004-10-30', 21, 'https://www.gutenberg.org/ebooks/3975', 'en', 560), +(57577, 'The Unpopular Review, Vol. 2, No. 4, October-December 1914, including Vol. 2 Index', 'Various', '2016-04-06', 4, 'https://www.gutenberg.org/ebooks/51679', 'en', 1227), +(57578, 'Alex the Great', 'Witwer, H. C. (Harry Charles)', '2009-08-22', 16, 'https://www.gutenberg.org/ebooks/29763', 'en', 1660), +(57579, 'Home Taxidermy for Pleasure and Profit\nA Guide for Those Who Wish to Prepare and Mount Animals, Birds, Fish, Reptiles, etc., for Home, Den, or Office Decoration', 'Farnham, Albert Burton', '2007-10-31', 45, 'https://www.gutenberg.org/ebooks/23259', 'en', 2132), +(57580, 'On the Evolution of Language\r\nFirst Annual Report of the Bureau of Ethnology to the Secretary of the Smithsonian Institution, 1879-80, Government Printing Office, Washington, 1881, pages 1-16', 'Powell, John Wesley', '2006-07-13', 81, 'https://www.gutenberg.org/ebooks/18818', 'en', 2772), +(57581, 'Marm Lisa', 'Wiggin, Kate Douglas Smith', '2002-03-01', 24, 'https://www.gutenberg.org/ebooks/3149', 'en', 211); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(57582, 'Bunny Rabbit\'s Diary', 'Blaisdell, Mary Frances', '2005-11-02', 25, 'https://www.gutenberg.org/ebooks/16982', 'en', 625), +(57583, 'Little Prudy\'s Cousin Grace', 'May, Sophie', '2015-08-11', 10, 'https://www.gutenberg.org/ebooks/49686', 'en', 18609), +(57584, 'The Dardanelles: Colour Sketches From Gallipoli', 'Wilkinson, Norman', '2015-04-23', 15, 'https://www.gutenberg.org/ebooks/48754', 'en', 1074), +(57585, 'The Knights of the Cross, or, Krzyzacy: Historical Romance', 'Sienkiewicz, Henryk', '2005-12-01', 67, 'https://www.gutenberg.org/ebooks/9473', 'en', 18610), +(57586, 'La pergamena distrutta\nRomanzo del secolo XVI', 'Mulazzi, Virginia', '2006-02-24', 20, 'https://www.gutenberg.org/ebooks/17850', 'it', 98), +(57587, 'Dictionnaire Argot-Français', 'Hayard, Napoléon', '2006-03-20', 56, 'https://www.gutenberg.org/ebooks/18024', 'fr', 2899), +(57588, 'The St. Louis Blues', NULL, '2003-11-01', 21, 'https://www.gutenberg.org/ebooks/10249', 'en', 13373), +(57589, 'Über die bürgerliche Verbesserung der Weiber', 'Hippel, Theodor Gottlieb von', '2017-01-07', 19, 'https://www.gutenberg.org/ebooks/53912', 'de', 7165), +(57590, 'Why Lincoln Laughed', 'Conwell, Russell H.', '2011-12-28', 8, 'https://www.gutenberg.org/ebooks/38423', 'en', 2597), +(57591, 'A Lost Cause', 'Thorne, Guy', '2012-08-19', 19, 'https://www.gutenberg.org/ebooks/40539', 'en', 16656), +(57592, 'The Scrap Book. Volume 1, No. 2\nApril 1906', 'Various', '2010-04-24', 18, 'https://www.gutenberg.org/ebooks/32119', 'en', 18), +(57593, 'Duizend en één Nacht. Arabische vertellingen. Vierde deel', 'Anonymous', '2014-06-04', 26, 'https://www.gutenberg.org/ebooks/45877', 'nl', 3347), +(57594, 'The Re-echo Club', 'Wells, Carolyn', '2008-03-15', 8, 'https://www.gutenberg.org/ebooks/24840', 'en', 5509), +(57595, 'Cinq-Mars; ou, Une conjuration sous Louis XIII (Tome 2 of 2)', 'Vigny, Alfred de', '2013-11-16', 9, 'https://www.gutenberg.org/ebooks/44199', 'fr', 492), +(57596, 'The King\'s Assegai: A Matabili Story', 'Mitford, Bertram', '2010-06-20', 17, 'https://www.gutenberg.org/ebooks/32925', 'en', 1615), +(57597, 'Shango', 'Jakes, John', '2019-05-02', 51, 'https://www.gutenberg.org/ebooks/59414', 'en', 26), +(57598, 'The Martyrs of Science, or, The lives of Galileo, Tycho Brahe, and Kepler', 'Brewster, David', '2008-07-07', 83, 'https://www.gutenberg.org/ebooks/25992', 'en', 6237), +(57599, 'The Brighton Road: The Classic Highway to the South', 'Harper, Charles G. (Charles George)', '2012-01-22', 31, 'https://www.gutenberg.org/ebooks/38611', 'en', 18611), +(57600, 'The Story of Germ Life', 'Conn, H. W. (Herbert William)', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/4962', 'en', 10726), +(57601, 'The Maids Tragedy', 'Beaumont, Francis', '2004-01-01', 30, 'https://www.gutenberg.org/ebooks/10847', 'en', 5264), +(57602, 'Vondel\'s Lucifer', 'Vondel, Joost van den', '2011-10-07', 45, 'https://www.gutenberg.org/ebooks/37659', 'en', 18612), +(57603, 'American Indian Fairy Tales', 'Larned, W. T. (William Trowbridge)', '2014-03-31', 79, 'https://www.gutenberg.org/ebooks/45279', 'en', 1749), +(57604, 'A Residence in France During the Years 1792, 1793, 1794 and 1795, Part IV., 1795\nDescribed in a Series of Letters from an English Lady: with General\nand Incidental Remarks on the French Character and Manners', 'Biggs, Charlotte', '2004-04-01', 5, 'https://www.gutenberg.org/ebooks/11995', 'en', 1536), +(57605, 'Gudrun', 'Schmidt, Ferdinand', '2019-05-28', 45, 'https://www.gutenberg.org/ebooks/59626', 'en', 7823), +(57606, 'Laurier: A Study in Canadian Politics', 'Dafoe, John Wesley', '2005-03-30', 20, 'https://www.gutenberg.org/ebooks/15509', 'en', 18613), +(57607, 'The Andes of Southern Peru\nGeographical Reconnaissance along the Seventy-Third Meridian', 'Bowman, Isaiah', '2013-06-02', 13, 'https://www.gutenberg.org/ebooks/42860', 'en', 18614), +(57608, 'Told by the Northmen: Stories from the Eddas and Sagas', 'Wilmot-Buxton, E. M. (Ethel Mary)', '2009-07-30', 22, 'https://www.gutenberg.org/ebooks/29551', 'en', 6418), +(57609, 'Trials of War Criminals before the Nuernberg Military Tribunals under Control Council Law No. 10, Volume II', 'Various', '2017-06-14', 17, 'https://www.gutenberg.org/ebooks/54905', 'en', 1666), +(57610, 'Myths and Legends of Our Own Land — Volume 04 : Tales of Puritan Land', 'Skinner, Charles M. (Charles Montgomery)', '2004-12-14', 15, 'https://www.gutenberg.org/ebooks/6609', 'en', 725), +(57611, 'Legends of Vancouver', 'Johnson, E. Pauline', '2009-04-02', 22, 'https://www.gutenberg.org/ebooks/28483', 'en', 5321), +(57612, 'Luotsi ja hänen vaimonsa', 'Lie, Jonas', '2015-12-03', 8, 'https://www.gutenberg.org/ebooks/50599', 'fi', 7), +(57613, 'The Divine Comedy by Dante, Illustrated, Purgatory, Volume 4', 'Dante Alighieri', '2004-08-05', 7, 'https://www.gutenberg.org/ebooks/8793', 'en', 2212), +(57614, 'History of the United States, Volume 1', 'Beard, Charles A. (Charles Austin)', '2007-10-01', 38, 'https://www.gutenberg.org/ebooks/22985', 'en', 207), +(57615, 'Inquiry Into the Origin and Course of Political Parties in the United States', 'Van Buren, Martin', '2011-04-22', 12, 'https://www.gutenberg.org/ebooks/35932', 'en', 17732), +(57616, 'To Love', 'Peterson, Margaret', '2008-09-03', 18, 'https://www.gutenberg.org/ebooks/26519', 'en', 109), +(57617, 'Pathfinders of the West\nBeing the Thrilling Story of the Adventures of the Men Who\nDiscovered the Great Northwest: Radisson, La Vérendrye,\nLewis and Clark', 'Laut, Agnes C.', '2006-04-20', 21, 'https://www.gutenberg.org/ebooks/18216', 'en', 18615), +(57618, 'Murrosaikana', 'Nielsen, Zakarias', '2017-02-09', 12, 'https://www.gutenberg.org/ebooks/54139', 'fi', 2631), +(57619, 'The New York and Albany Post Road\nFrom Kings Bridge to \"The Ferry at Crawlier, over against\nAlbany,\" Being an Account of a Jaunt on Foot Made at Sundry\nConvenient Times between May and November, Nineteen Hundred\nand Five', 'Hine, C. G. (Charles Gilbert)', '2007-12-14', 22, 'https://www.gutenberg.org/ebooks/23857', 'en', 7655), +(57620, 'Barracks, Bivouacs and Battles', 'Forbes, Archibald', '2015-03-23', 10, 'https://www.gutenberg.org/ebooks/48566', 'en', 5635), +(57621, 'Ugo: Scene del secolo X', 'Bazzero, Ambrogio', '2006-01-01', 24, 'https://www.gutenberg.org/ebooks/9641', 'it', 61), +(57622, 'A Sea Queen\'s Sailing', 'Whistler, Charles W. (Charles Watts)', '2005-05-31', 16, 'https://www.gutenberg.org/ebooks/15951', 'en', 2703), +(57623, 'The Ruling Passion: Tales of Nature and Human Nature', 'Van Dyke, Henry', '1997-09-01', 24, 'https://www.gutenberg.org/ebooks/1048', 'en', 61), +(57624, 'Are these Things So? (1740) The Great Man\'s Answer to Are These things So: (1740)', 'Miller, James', '2011-12-11', 4, 'https://www.gutenberg.org/ebooks/38275', 'en', 5933), +(57625, 'Grandmother Elsie', 'Finley, Martha', '2005-02-02', 43, 'https://www.gutenberg.org/ebooks/14883', 'en', 1397), +(57626, 'The Ocean Cat\'s Paw: The Story of a Strange Cruise', 'Fenn, George Manville', '2007-05-08', 31, 'https://www.gutenberg.org/ebooks/21358', 'en', 1001), +(57627, 'Witness', 'Smith, George H. (George Henry)', '2019-04-10', 58, 'https://www.gutenberg.org/ebooks/59242', 'en', 7580), +(57628, 'The Railway Children', 'Nesbit, E. (Edith)', '1999-08-01', 528, 'https://www.gutenberg.org/ebooks/1874', 'en', 5530), +(57629, 'First Lessons in Natural Philosophy for Beginners', 'Martindale, Joseph C. (Joseph Comly)', '2016-12-20', 10, 'https://www.gutenberg.org/ebooks/53778', 'en', 1194), +(57630, 'Breaking the Wilderness\r\nThe Story of the Conquest of the Far West, From the Wanderings of Cabeza de Vaca, to the First Descent of the Colorado by Powell, and the Completion of the Union Pacific Railway, With Particular Account of the Exploits of Trappers and Traders', 'Dellenbaugh, Frederick Samuel', '2018-12-01', 15, 'https://www.gutenberg.org/ebooks/58390', 'en', 5921), +(57631, 'Punch or the London Charivari, Vol. 147, September 23, 1914', 'Various', '2009-01-26', 5, 'https://www.gutenberg.org/ebooks/27893', 'en', 134), +(57632, 'The Rushton Boys at Treasure Cove; Or, The Missing Chest of Gold', 'Davenport, Spencer', '2010-01-01', 5, 'https://www.gutenberg.org/ebooks/30824', 'en', 2794), +(57633, 'With the Night Mail: A Story of 2000 A.D.\r\n(Together with extracts from the comtemporary magazine in which it appeared)', 'Kipling, Rudyard', '2009-06-16', 107, 'https://www.gutenberg.org/ebooks/29135', 'en', 8820), +(57634, 'In the Name of Liberty: A Story of the Terror', 'Johnson, Owen', '2014-06-25', 16, 'https://www.gutenberg.org/ebooks/46098', 'en', 248), +(57635, 'Wanted—7 Fearless Engineers!', 'Tremaine, Frederick Orlin', '2008-10-17', 39, 'https://www.gutenberg.org/ebooks/26941', 'en', 26), +(57636, 'Race Improvement; or, Eugenics: A Little Book on a Great Subject', 'Baker, La Reine Helen McKenzie', '2015-01-15', 16, 'https://www.gutenberg.org/ebooks/47976', 'en', 7357), +(57637, 'Poignet-d\'acier\nOu Les Chippiouais', 'Chevalier, H. Emile (Henri Emile)', '2006-06-24', 13, 'https://www.gutenberg.org/ebooks/18672', 'fr', 18616), +(57638, 'Blackwood\'s Edinburgh Magazine, Vol. 71, No. 438, April 1852', 'Various', '2015-01-28', 10, 'https://www.gutenberg.org/ebooks/48102', 'en', 711), +(57639, 'Monsieur du Miroir (From \"Mosses from an Old Manse\")', 'Hawthorne, Nathaniel', '2005-11-01', 24, 'https://www.gutenberg.org/ebooks/9225', 'en', 13), +(57640, 'Punch, or the London Charivari, Vol. 98, February 22nd, 1890', 'Various', '2009-09-18', 3, 'https://www.gutenberg.org/ebooks/30018', 'en', 134), +(57641, 'The Bee-keeper\'s Manual\r\nor Practical Hints on the Management and Complete Preservation of the Honey-bee.', 'Taylor, Henry', '2016-04-20', 45, 'https://www.gutenberg.org/ebooks/51813', 'en', 18617), +(57642, 'A Singer from the Sea', 'Barr, Amelia E.', '2009-09-04', 15, 'https://www.gutenberg.org/ebooks/29909', 'en', 166), +(57643, 'The Rise of Rail-Power in War and Conquest, 1833-1914', 'Pratt, Edwin A.', '2013-03-30', 21, 'https://www.gutenberg.org/ebooks/42438', 'en', 18618), +(57644, 'Richard Vandermarck: A Novel', 'Harris, Miriam Coles', '2004-05-01', 13, 'https://www.gutenberg.org/ebooks/12348', 'en', 264), +(57645, 'The Florentine Painters of the Renaissance\nWith An Index To Their Works', 'Berenson, Bernard', '2005-12-28', 66, 'https://www.gutenberg.org/ebooks/17408', 'en', 15307), +(57646, 'Mrs. Darrell', 'Davis, Foxcroft', '2014-11-17', 29, 'https://www.gutenberg.org/ebooks/47378', 'en', 18619), +(57647, 'The Great Adventure: A Play of Fancy in Four Acts', 'Bennett, Arnold', '2004-10-29', 24, 'https://www.gutenberg.org/ebooks/13894', 'en', 1088), +(57648, 'The Boy Scouts on Picket Duty', 'Shaler, Robert', '2004-07-19', 11, 'https://www.gutenberg.org/ebooks/12946', 'en', 5221), +(57649, 'Nixchen. Ein Beitrag zur Psychologie der höheren Tochter', 'Kahlenberg, Hans von', '2011-04-02', 24, 'https://www.gutenberg.org/ebooks/35758', 'de', 109), +(57650, 'North American Medical and Surgical Journal, Vol. 2, No. 3, July, 1826', 'Various', '2009-07-04', 15, 'https://www.gutenberg.org/ebooks/29307', 'en', 3905), +(57651, 'Ferdinand of Bulgaria: The Amazing Career of a Shoddy Czar', 'Anonymous', '2015-02-21', 13, 'https://www.gutenberg.org/ebooks/48330', 'en', 18620), +(57652, 'A Double Barrelled Detective Story', 'Twain, Mark', '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/9017', 'en', 128), +(57653, 'Our Nig; Or, Sketches from the Life of a Free Black, in a Two-story White House, North\r\nShowing That Slavery\'s Shadows Fall Even There', 'Wilson, Harriet E.', '1996-07-01', 104, 'https://www.gutenberg.org/ebooks/584', 'en', 539), +(57654, 'Logic: Deductive and Inductive', 'Read, Carveth', '2006-05-23', 181, 'https://www.gutenberg.org/ebooks/18440', 'en', 4797), +(57655, 'The Passing of New France : a Chronicle of Montcalm', 'Wood, William', '2004-11-01', 24, 'https://www.gutenberg.org/ebooks/6863', 'en', 18621), +(57656, 'Frank and Fearless; or, The Fortunes of Jasper Kent', 'Alger, Horatio, Jr.', '2006-10-20', 39, 'https://www.gutenberg.org/ebooks/19592', 'en', 195), +(57657, 'Report of the Knaresbrough Rail-way Committee', 'Knaresbrough Rail-Way Committee (Knaresborough, England)', '2007-06-28', 9, 'https://www.gutenberg.org/ebooks/21956', 'en', 18622), +(57658, 'Legends of Gods and Ghosts (Hawaiian Mythology)\nCollected and Translated from the Hawaiian', 'Westervelt, W. D. (William Drake)', '2012-03-18', 51, 'https://www.gutenberg.org/ebooks/39195', 'en', 837), +(57659, 'Port Arthur: A Monster Heroism', 'Barry, Richard', '2017-11-23', 26, 'https://www.gutenberg.org/ebooks/56038', 'en', 4765), +(57660, 'The Danes, Sketched by Themselves. Vol. 3 (of 3)\r\nA Series of Popular Stories by the Best Danish Authors', NULL, '2011-10-23', 14, 'https://www.gutenberg.org/ebooks/37833', 'en', 7029), +(57661, 'The Quantum Jump', 'Wicks, Robert', '2008-01-24', 43, 'https://www.gutenberg.org/ebooks/24418', 'en', 2797), +(57662, 'Social Value: A Study in Economic Theory, Critical and Constructive', 'Anderson, Benjamin M. (Benjamin McAlester)', '2011-11-18', 62, 'https://www.gutenberg.org/ebooks/38047', 'en', 16261), +(57663, 'Yhdyselämää', 'Lie, Jonas', '2007-03-23', 11, 'https://www.gutenberg.org/ebooks/20884', 'fi', 61), +(57664, 'No. 13 Toroni: A Mystery', 'Regis, Julius', '2016-07-04', 13, 'https://www.gutenberg.org/ebooks/52498', 'en', 1834), +(57665, 'Index of the Project Gutenberg Works of Gustave Doré', 'Doré, Gustave', '2019-03-16', 15, 'https://www.gutenberg.org/ebooks/59070', 'en', 198), +(57666, 'Milyenek a nők?; Milyenek a férfiak?\r\nElbeszélések', 'Jókai, Mór', '2018-03-21', 7, 'https://www.gutenberg.org/ebooks/56804', 'hu', 1532), +(57667, 'Les Chansons De Bilitis', 'Louÿs, Pierre', '2003-12-01', 65, 'https://www.gutenberg.org/ebooks/4708', 'fr', 701), +(57668, 'Luna Escapade', 'Fyfe, H. B. (Horace Bowne)', '2012-10-06', 55, 'https://www.gutenberg.org/ebooks/40961', 'en', 26), +(57669, 'The Mirror of Literature, Amusement, and Instruction. Volume 19, No. 535, February 25, 1832', 'Various', '2004-03-01', 2, 'https://www.gutenberg.org/ebooks/11539', 'en', 133), +(57670, 'Among the Humorists and After Dinner Speakers, Vol. 1\r\nA New Collection of Humorous Stories and Anecdotes', NULL, '2012-10-31', 24, 'https://www.gutenberg.org/ebooks/41249', 'en', 311), +(57671, 'Encyclopaedia Britannica, 11th Edition, \"Hero\" to \"Hindu Chronology\"\r\nVolume 13, Slice 4', 'Various', '2012-04-02', 31, 'https://www.gutenberg.org/ebooks/39353', 'en', 1081), +(57672, 'The Tale of Ginger and Pickles', 'Potter, Beatrix', '2005-02-02', 141, 'https://www.gutenberg.org/ebooks/14877', 'en', 1430), +(57673, 'Punch, or the London Charivari, Volume 93. August 6, 1887.', 'Various', '2010-09-07', 6, 'https://www.gutenberg.org/ebooks/33669', 'en', 134), +(57674, 'Der König Candaules: Drama in drei Akten', 'Gide, André', '2011-12-11', 16, 'https://www.gutenberg.org/ebooks/38281', 'de', 18623), +(57675, 'The Reformed Librarie-Keeper (1650)', 'Dury, John', '2005-02-28', 25, 'https://www.gutenberg.org/ebooks/15199', 'en', 18624), +(57676, 'The Wreck of the \"Royal Charter\"\nCompiled from Authentic Sources, with Some Original Matter', 'Fowler, Frank', '2018-11-27', 11, 'https://www.gutenberg.org/ebooks/58364', 'en', 18625), +(57677, 'The Pathfinder; Or, The Inland Sea', 'Cooper, James Fenimore', '1999-09-01', 151, 'https://www.gutenberg.org/ebooks/1880', 'en', 48), +(57678, 'Scientific American magazine, Vol. 2 Issue 1\nThe advocate of Industry and Journal of Scientific,\nMechanical and Other Improvements', 'Various', '2009-01-21', 87, 'https://www.gutenberg.org/ebooks/27867', 'en', 352), +(57679, 'Carnac\'s Folly, Complete', 'Parker, Gilbert', '2004-11-20', 22, 'https://www.gutenberg.org/ebooks/6299', 'en', 61), +(57680, 'Old New England Traits', NULL, '2009-02-06', 14, 'https://www.gutenberg.org/ebooks/28013', 'en', 4354), +(57681, 'The Mysterious Stranger: A Romance', 'Twain, Mark', '2015-10-01', 347, 'https://www.gutenberg.org/ebooks/50109', 'en', 5436), +(57682, 'Tom Burke Of \"Ours\", Volume II', 'Lever, Charles James', '2010-04-06', 13, 'https://www.gutenberg.org/ebooks/31902', 'en', 11932), +(57683, 'Animal Life and Intelligence', 'Morgan, C. Lloyd (Conwy Lloyd)', '2015-08-29', 10, 'https://www.gutenberg.org/ebooks/49818', 'en', 11805), +(57684, 'The Twelve Labours of Hercules, Son of Jupiter & Alcmena', 'Anonymous', '2007-09-06', 53, 'https://www.gutenberg.org/ebooks/22529', 'en', 18626), +(57685, 'Les petites alliées', 'Farrère, Claude', '2015-01-16', 26, 'https://www.gutenberg.org/ebooks/47982', 'fr', 5454), +(57686, 'Editorials from the Hearst Newspapers', 'Brisbane, Arthur', '1996-12-01', 64, 'https://www.gutenberg.org/ebooks/742', 'en', 18627), +(57687, 'Melbourne House', 'Warner, Susan', '2006-06-26', 23, 'https://www.gutenberg.org/ebooks/18686', 'en', 470), +(57688, 'Star, Bright', 'Clifton, Mark', '2016-01-15', 67, 'https://www.gutenberg.org/ebooks/50935', 'en', 784), +(57689, 'Villa Rubein, and Other Stories', 'Galsworthy, John', '2006-06-14', 13, 'https://www.gutenberg.org/ebooks/2639', 'en', 401), +(57690, 'The Bible, Douay-Rheims, Book 03: Leviticus\r\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8303', 'en', 14604), +(57691, 'Goethes Briefe an Auguste zu Stolberg', 'Goethe, Johann Wolfgang von', '2015-05-23', 30, 'https://www.gutenberg.org/ebooks/49024', 'de', 18628), +(57692, 'Debit and Credit\nTranslated from the German of Gustav Freytag', 'Freytag, Gustav', '2006-11-11', 47, 'https://www.gutenberg.org/ebooks/19754', 'en', 18629), +(57693, 'The Motor Boys on the Wing; Or, Seeking the Airship Treasure', 'Young, Clarence', '2014-09-14', 23, 'https://www.gutenberg.org/ebooks/46850', 'en', 557), +(57694, 'A Spoil of Office: A Story of the Modern West', 'Garland, Hamlin', '2008-08-04', 16, 'https://www.gutenberg.org/ebooks/26189', 'en', 6069), +(57695, 'Dorothy\'s Triumph', 'Raymond, Evelyn', '2009-02-28', 22, 'https://www.gutenberg.org/ebooks/28221', 'en', 13674), +(57696, 'Men of the Bible; Some Lesser-Known Characters', 'Lewis, H. Elvet (Howell Elvet)', '2004-10-25', 19, 'https://www.gutenberg.org/ebooks/13860', 'en', 6367), +(57697, 'Beside the Bonnie Brier Bush', 'Maclaren, Ian', '2004-12-01', 37, 'https://www.gutenberg.org/ebooks/7179', 'en', 1922), +(57698, 'Margot la Ravaudeuse', 'Fougeret de Monbron, Louis Charles', '2008-11-15', 31, 'https://www.gutenberg.org/ebooks/27269', 'fr', 18630), +(57699, 'The Little Savage', 'Marryat, Frederick', '2004-11-01', 16, 'https://www.gutenberg.org/ebooks/6897', 'en', 3972), +(57700, 'The Moravians in Georgia, 1735-1740', 'Fries, Adelaide L. (Adelaide Lisetta)', '1996-06-01', 83, 'https://www.gutenberg.org/ebooks/570', 'en', 18631), +(57701, 'Medea', 'Grillparzer, Franz', '2005-04-01', 20, 'https://www.gutenberg.org/ebooks/7945', 'de', 17671), +(57702, 'Matkustus Suomessa', 'Topelius, Zacharias', '2017-09-29', 5, 'https://www.gutenberg.org/ebooks/55649', 'fi', 7220), +(57703, 'Fables of Infidelity and Facts of Faith\nBeing an Examination of the Evidences of Infidelity', 'Patterson, Robert', '2006-10-17', 22, 'https://www.gutenberg.org/ebooks/19566', 'en', 8592), +(57704, 'The Misses Mallett (The Bridge Dividing)', 'Young, E. H. (Emily Hilda)', '2005-05-01', 7, 'https://www.gutenberg.org/ebooks/8131', 'en', 61), +(57705, 'The Threshold Covenant; or, The Beginning of Religious Rites', 'Trumbull, H. Clay (Henry Clay)', '2015-06-14', 19, 'https://www.gutenberg.org/ebooks/49216', 'en', 4798), +(57706, 'Blackwood\'s Edinburgh Magazine, Volume 57, No. 353, March 1845', 'Various', '2010-05-30', 13, 'https://www.gutenberg.org/ebooks/32589', 'en', 711), +(57707, 'Settlers and Scouts: A Tale of the African Highlands', 'Strang, Herbert', '2012-03-15', 62, 'https://www.gutenberg.org/ebooks/39161', 'en', 18632), +(57708, 'His Lady of the Sonnets', 'Norwood, Robert Winkworth', '2011-09-08', 2, 'https://www.gutenberg.org/ebooks/36915', 'en', 28), +(57709, 'The Motor Girls Through New England; or, Held by the Gypsies', 'Penrose, Margaret', '2007-03-22', 31, 'https://www.gutenberg.org/ebooks/20870', 'en', 2096), +(57710, 'Baseball Joe in the Central League; or, Making Good as a Professional Pitcher', 'Chadwick, Lester', '2013-01-14', 17, 'https://www.gutenberg.org/ebooks/41847', 'en', 3334), +(57711, 'A Modern Legionary', 'Le Poer, John Patrick', '2019-03-21', 19, 'https://www.gutenberg.org/ebooks/59084', 'en', 11195), +(57712, 'Μελέται: 10 άρθρα του στον «Νουμά»', 'Dragoumes, Ion', '2011-05-16', 26, 'https://www.gutenberg.org/ebooks/36129', 'el', 16179), +(57713, 'Julia France and Her Times: A Novel', 'Atherton, Gertrude Franklin Horn', '2018-09-17', 15, 'https://www.gutenberg.org/ebooks/57922', 'en', 14408), +(57714, 'A Manual of the Historical Development of Art\nPre-Historic—Ancient—Classic—Early Christian; with Special Reference to Architecture, Sculpture, Painting, and Ornamentation', 'Zerffi, G. G. (Gustavus George)', '2013-12-25', 25, 'https://www.gutenberg.org/ebooks/44509', 'en', 3322), +(57715, 'The Ancient Life History of the Earth\r\nA Comprehensive Outline of the Principles and Leading Facts of Palæontological Science', 'Nicholson, Henry Alleyne', '2004-12-06', 38, 'https://www.gutenberg.org/ebooks/14279', 'en', 339), +(57716, 'Barbro Bertingin tyttövuodet', 'Kuylenstierna-Wenster, Elisabeth', '2018-10-24', 10, 'https://www.gutenberg.org/ebooks/58156', 'fi', 14303), +(57717, 'The Zeppelin Destroyer: Being Some Chapters of Secret History', 'Le Queux, William', '2012-10-09', 19, 'https://www.gutenberg.org/ebooks/40995', 'en', 579), +(57718, 'Gerfaut — Volume 1', 'Bernard, Charles de', '2003-04-01', 14, 'https://www.gutenberg.org/ebooks/3981', 'en', 58), +(57719, 'The Prison Chaplaincy, And Its Experiences', 'Quinby, Hosea', '2009-08-25', 13, 'https://www.gutenberg.org/ebooks/29797', 'en', 18633), +(57720, 'Lost in the Future', 'Peterson, John Victor', '2009-04-30', 37, 'https://www.gutenberg.org/ebooks/28645', 'en', 26), +(57721, 'Riquet à la Houppe: Conte', 'Perrault, Charles', '2005-11-18', 22, 'https://www.gutenberg.org/ebooks/17098', 'fr', 1007), +(57722, 'Quo Vadis: A Narrative of the Time of Nero', 'Sienkiewicz, Henryk', '2001-10-01', 192, 'https://www.gutenberg.org/ebooks/2853', 'en', 98), +(57723, 'Alice\'s Adventures in Wonderland\nHTML Edition', 'Carroll, Lewis', '1997-05-01', 463, 'https://www.gutenberg.org/ebooks/928', 'en', 580), +(57724, 'Dearest', 'Piper, H. Beam', '2006-08-22', 54, 'https://www.gutenberg.org/ebooks/19102', 'en', 179), +(57725, 'The Texan\nA Story of the Cattle Country', 'Hendryx, James B. (James Beardsley)', '2005-10-31', 26, 'https://www.gutenberg.org/ebooks/16976', 'en', 9815), +(57726, 'The Economic Functions of Vice', 'McElroy, John', '2010-03-25', 12, 'https://www.gutenberg.org/ebooks/31768', 'en', 740), +(57727, 'Initiation into Literature', 'Faguet, Émile', '2005-07-01', 15, 'https://www.gutenberg.org/ebooks/8555', 'en', 2156), +(57728, '\"Father Clark,\" or The Pioneer Preacher', 'Peck, John Mason', '2015-08-10', 10, 'https://www.gutenberg.org/ebooks/49672', 'en', 18634), +(57729, 'The Paston Letters, A.D. 1422-1509. Volume 1 (of 6)\r\nNew Complete Library Edition', NULL, '2013-07-29', 101, 'https://www.gutenberg.org/ebooks/43348', 'en', 8604), +(57730, 'A Fair Barbarian', 'Burnett, Frances Hodgson', '2005-12-01', 33, 'https://www.gutenberg.org/ebooks/9487', 'en', 6777), +(57731, 'The Tenniel Illustrations for Carroll\'s Alice in Wonderland', 'Tenniel, John', '1994-03-01', 178, 'https://www.gutenberg.org/ebooks/114', 'en', 580), +(57732, 'A King\'s Comrade\nA Story of Old Hereford', 'Whistler, Charles W. (Charles Watts)', '2004-09-11', 15, 'https://www.gutenberg.org/ebooks/13438', 'en', 18635), +(57733, 'Lincoln\'s Last Hours', 'Leale, Charles Augustus', '2007-12-31', 29, 'https://www.gutenberg.org/ebooks/24088', 'en', 18636), +(57734, 'The Motor Boys in Strange Waters; or, Lost in a Floating Forest', 'Young, Clarence', '2014-02-17', 15, 'https://www.gutenberg.org/ebooks/44951', 'en', 5221), +(57735, 'Guernsey Folk Lore\r\na collection of popular superstitions, legendary tales, peculiar customs, proverbs, weather sayings, etc., of the people of that island', 'MacCulloch, Edgar, Sir', '2016-08-18', 43, 'https://www.gutenberg.org/ebooks/52834', 'en', 18637), +(57736, 'Punch, or the London Charivari, December 2, 1893', 'Various', '2012-04-22', 18, 'https://www.gutenberg.org/ebooks/39505', 'en', 134), +(57737, 'Time and Time-Tellers', 'Benson, James W., active 1857-1887', '2014-06-04', 16, 'https://www.gutenberg.org/ebooks/45883', 'en', 8727), +(57738, 'The Mysteries of Paris, Volume 4 of 6', 'Sue, Eugène', '2010-09-22', 28, 'https://www.gutenberg.org/ebooks/33803', 'en', 560), +(57739, 'Une rencontre: roman de deux touristes sur le Saint-Laurent et le Saguenay', 'Howells, William Dean', '2018-12-24', 17, 'https://www.gutenberg.org/ebooks/58532', 'fr', 18638), +(57740, 'Bertha and Her Baptism', 'Adams, Nehemiah', '2007-01-23', 16, 'https://www.gutenberg.org/ebooks/20428', 'en', 18639), +(57741, 'Dante Rossetti and the Pre-Raphaelite movement', 'Wood, Esther (of Hampstead)', '2016-05-05', 6, 'https://www.gutenberg.org/ebooks/52008', 'en', 2284), +(57742, 'Camp-fire and Wigwam', 'Ellis, Edward Sylvester', '2008-07-04', 29, 'https://www.gutenberg.org/ebooks/25966', 'en', 1259), +(57743, 'The Tides of Barnegat', 'Smith, Francis Hopkinson', '2003-08-01', 27, 'https://www.gutenberg.org/ebooks/4398', 'en', 18640), +(57744, 'The Adventures of Johnny Chuck', 'Burgess, Thornton W. (Thornton Waldo)', '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/5844', 'en', 4716), +(57745, 'Graham\'s Magazine, Vol. XXXVI, No. 5, May 1850', 'Various', '2018-08-22', 15, 'https://www.gutenberg.org/ebooks/57748', 'en', 380), +(57746, '西京雜記', 'Ge, Hong', '2008-05-07', 15, 'https://www.gutenberg.org/ebooks/25368', 'zh', 4780), +(57747, 'Number Seventeen', 'Tracy, Louis', '2004-01-01', 29, 'https://www.gutenberg.org/ebooks/4996', 'en', 128), +(57748, 'Magyar népdalok (Magyar remekirók 54. kötet)', 'Endrődi, Sándor', '2012-05-19', 7, 'https://www.gutenberg.org/ebooks/39737', 'hu', 6460), +(57749, 'Crimes and Punishments\nIncluding a New Translation of Beccaria\'s \'Dei Delitti e delle Pene\'', 'Farrer, James Anson', '2019-01-15', 72, 'https://www.gutenberg.org/ebooks/58700', 'en', 18641), +(57750, 'When a Man Comes to Himself', 'Wilson, Woodrow', '2004-02-01', 11, 'https://www.gutenberg.org/ebooks/5078', 'en', 740), +(57751, 'The Lords of the Wild: A Story of the Old New York Border', 'Altsheler, Joseph A. (Joseph Alexander)', '2004-04-01', 18, 'https://www.gutenberg.org/ebooks/11961', 'en', 4783), +(57752, 'The Art of Perfumery, and Methods of Obtaining the Odors of Plants\r\nWith Instructions for the Manufacture of Perfumes for the Handkerchief, Scented Powders, Odorous Vinegars, Dentifrices, Pomatums, Cosmetics, Perfumed Soap, Etc., to which is Added an Appendix on Preparing Artificial Fruit-Essences, Etc.', 'Piesse, G. W. Septimus (George William Septimus)', '2005-07-28', 178, 'https://www.gutenberg.org/ebooks/16378', 'en', 16720), +(57753, 'The Shadow of Victory: A Romance of Fort Dearborn', 'Reed, Myrtle', '2013-06-08', 13, 'https://www.gutenberg.org/ebooks/42894', 'en', 23), +(57754, 'Satuja ja tarinoita III', 'Andersen, H. C. (Hans Christian)', '2017-10-26', 10, 'https://www.gutenberg.org/ebooks/55823', 'fi', 1007), +(57755, 'A Monograph on the Sub-class Cirripedia (Volume 2 of 2)\nThe Balanidæ, (or Sessile Cirripedes); the Verrucidæ, etc., etc.', 'Darwin, Charles', '2014-07-25', 16, 'https://www.gutenberg.org/ebooks/46408', 'en', 18642), +(57756, 'Races and Immigrants in America', 'Commons, John R. (John Rogers)', '2010-10-04', 37, 'https://www.gutenberg.org/ebooks/34028', 'en', 9642), +(57757, 'The Sea-beach at Ebb-tide\r\nA Guide to the Study of the Seaweeds and the Lower Animal Life Found Between Tide-marks', 'Arnold, Augusta Foote', '2013-10-13', 31, 'https://www.gutenberg.org/ebooks/43946', 'en', 4467), +(57758, 'Notes and Queries, Number 195, July 23, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2009-04-02', 5, 'https://www.gutenberg.org/ebooks/28477', 'en', 105), +(57759, 'Tarzan the Untamed', 'Burroughs, Edgar Rice', '2005-08-01', 10, 'https://www.gutenberg.org/ebooks/8767', 'en', 580), +(57760, 'Les trois Don Juan\r\nDon Juan Tenorio d\'Espagne, Don Juan de Maraña des Flandres, Don Juan d\'Angleterre', 'Apollinaire, Guillaume', '2007-10-12', 76, 'https://www.gutenberg.org/ebooks/22971', 'fr', 18643), +(57761, 'York', 'Benson, George', '2015-07-14', 5, 'https://www.gutenberg.org/ebooks/49440', 'en', 12480), +(57762, 'An Apache Princess: A Tale of the Indian Frontier', 'King, Charles', '2006-09-19', 42, 'https://www.gutenberg.org/ebooks/19330', 'en', 5458), +(57763, 'Steep Trails\r\nCalifornia, Utah, Nevada, Washington, Oregon, the Grand Canyon', 'Muir, John', '1995-09-01', 279, 'https://www.gutenberg.org/ebooks/326', 'en', 18644), +(57764, 'My Actor-Husband: A true story of American stage life', 'Anonymous', '2011-01-01', 15, 'https://www.gutenberg.org/ebooks/34814', 'en', 705), +(57765, 'The Square Jaw', 'Ruffin, Henry', '2015-03-27', 15, 'https://www.gutenberg.org/ebooks/48592', 'en', 4411), +(57766, 'The Green Helmet and Other Poems', 'Yeats, W. B. (William Butler)', '2009-11-17', 97, 'https://www.gutenberg.org/ebooks/30488', 'en', 1136), +(57767, 'The Marbeck Inn: A Novel', 'Brighouse, Harold', '2015-10-04', 15, 'https://www.gutenberg.org/ebooks/50131', 'en', 1902), +(57768, 'Model Women', 'Anderson, William', '2014-10-24', 16, 'https://www.gutenberg.org/ebooks/47186', 'en', 4289), +(57769, 'Joan of Arc, the Warrior Maid', 'Madison, Lucy Foster', '2010-11-29', 17, 'https://www.gutenberg.org/ebooks/34474', 'en', 3907), +(57770, 'The Path to Rome', 'Belloc, Hilaire', '2005-01-01', 95, 'https://www.gutenberg.org/ebooks/7373', 'en', 1896), +(57771, 'The Boy Allies with the Terror of the Seas; Or, The Last Shot of Submarine D-16', 'Hayes, Clair W. (Clair Wallace)', '2014-06-20', 10, 'https://www.gutenberg.org/ebooks/46054', 'en', 146), +(57772, 'The Campaign of 1760 in Canada\nA Narrative Attributed to Chevalier Johnstone', 'Johnstone, James Johnstone, chevalier de', '2005-09-19', 16, 'https://www.gutenberg.org/ebooks/16724', 'en', 13698), +(57773, 'Rollo on the Rhine', 'Abbott, Jacob', '2007-09-05', 23, 'https://www.gutenberg.org/ebooks/22511', 'en', 18645), +(57774, 'Worlds Within Worlds: The Story of Nuclear Energy, Volume 2 (of 3)\nMass and Energy; The Neutron; The Structure of the Nucleus', 'Asimov, Isaac', '2015-08-30', 85, 'https://www.gutenberg.org/ebooks/49820', 'en', 17622), +(57775, 'Cremorne and the Later London Gardens', 'Wroth, Warwick William', '2013-08-21', 27, 'https://www.gutenberg.org/ebooks/43526', 'en', 17084), +(57776, 'The Dalby Bear, and Other Ballads', 'Borrow, George', '2009-05-14', 12, 'https://www.gutenberg.org/ebooks/28817', 'en', 8), +(57777, 'Heartsease; Or, The Brother\'s Wife', 'Yonge, Charlotte M. (Charlotte Mary)', '2001-04-01', 35, 'https://www.gutenberg.org/ebooks/2601', 'en', 675), +(57778, 'The Hero', 'Maugham, W. Somerset (William Somerset)', '2008-10-27', 90, 'https://www.gutenberg.org/ebooks/27063', 'en', 713), +(57779, 'An English Girl in Japan', 'Bennett, Ella M. Hart', '2017-04-23', 10, 'https://www.gutenberg.org/ebooks/54591', 'en', 118), +(57780, 'Le petit chose', 'Daudet, Alphonse', '2004-08-22', 30, 'https://www.gutenberg.org/ebooks/13256', 'fr', 1080), +(57781, 'Battle-Pieces and Aspects of the War', 'Melville, Herman', '2004-05-01', 135, 'https://www.gutenberg.org/ebooks/12384', 'en', 14669), +(57782, 'Psycho-Analysis and the War Neuroses', 'Simmel, Ernst', '2017-08-27', 59, 'https://www.gutenberg.org/ebooks/55443', 'en', 3640), +(57783, 'Reise nach dem skandinavischen Norden und der Insel Island im Jahre 1845. Erster Band.', 'Pfeiffer, Ida', '2014-09-15', 15, 'https://www.gutenberg.org/ebooks/46868', 'de', 581), +(57784, 'Brooke\'s Daughter: A Novel', 'Sergeant, Adeline', '2010-01-28', 35, 'https://www.gutenberg.org/ebooks/31106', 'en', 61), +(57785, 'History of the Johnstown Flood\r\nIncluding all the Fearful Record; the Breaking of the South Fork Dam; the Sweeping Out of the Conemaugh Valley; the Over-Throw of Johnstown; the Massing of the Wreck at the Railroad Bridge; Escapes, Rescues, Searches for Survivors and the Dead; Relief Organizations, Stupendous Charities, etc., etc., With Full Accounts also of the Destruction on the Susquehanna and Juniata Rivers, and the Bald Eagle Creek.', 'Johnson, Willis Fletcher', '2012-11-02', 25, 'https://www.gutenberg.org/ebooks/41271', 'en', 16903), +(57786, 'Encyclopaedia Britannica, 11th Edition, \"Drama\" to \"Dublin\"\r\nVolume 8, Slice 7', 'Various', '2010-06-11', 32, 'https://www.gutenberg.org/ebooks/32783', 'en', 1081), +(57787, 'Correspondance de Voltaire avec le roi de Prusse', 'Frederick II, King of Prussia', '2008-06-09', 31, 'https://www.gutenberg.org/ebooks/25734', 'fr', 642), +(57788, 'Laughing Bill Hyde and Other Stories', 'Beach, Rex', '2004-03-01', 36, 'https://www.gutenberg.org/ebooks/11501', 'en', 179), +(57789, 'The Yellow Face', 'White, Fred M. (Fred Merrick)', '2018-06-12', 25, 'https://www.gutenberg.org/ebooks/57314', 'en', 1425), +(57790, 'The Shadow of a Man', 'Hornung, E. W. (Ernest William)', '2010-09-06', 108, 'https://www.gutenberg.org/ebooks/33651', 'en', 792), +(57791, 'Recipes Tried and True', 'First Presbyterian Church (Marion, Ohio). Ladies\' Aid Society', '1997-10-01', 51, 'https://www.gutenberg.org/ebooks/1084', 'en', 103), +(57792, 'Priscilla\'s Spies', 'Birmingham, George A.', '2008-01-23', 22, 'https://www.gutenberg.org/ebooks/21394', 'en', 669), +(57793, 'Glimpses of Ocean Life; Or, Rock-Pools and the Lessons they Teach', 'Harper, John', '2016-07-28', 12, 'https://www.gutenberg.org/ebooks/52666', 'en', 2560), +(57794, 'Two Boys of the Battleship; Or, For the Honor of Uncle Sam', 'Webster, Frank V.', '2011-06-05', 26, 'https://www.gutenberg.org/ebooks/36323', 'en', 2564), +(57795, 'Icelandic Primer with Grammar, Notes and Glossary', 'Sweet, Henry', '2004-04-01', 111, 'https://www.gutenberg.org/ebooks/5424', 'en', 18646), +(57796, 'The Eighteen Christian Centuries', 'White, James', '2014-01-18', 11, 'https://www.gutenberg.org/ebooks/44703', 'en', 2555), +(57797, 'Berättelser från Finland', 'Sten, Daniel', '2004-11-17', 14, 'https://www.gutenberg.org/ebooks/14073', 'sv', 61), +(57798, 'Œuvres complètes de Alfred de Musset - Tome 3', 'Musset, Alfred de', '2007-01-02', 16, 'https://www.gutenberg.org/ebooks/20246', 'fr', 642), +(57799, 'The Adventures of Bobby Orde', 'White, Stewart Edward', '2008-05-17', 19, 'https://www.gutenberg.org/ebooks/25506', 'en', 153), +(57800, 'A Mere Accident', 'Moore, George', '2004-03-01', 20, 'https://www.gutenberg.org/ebooks/11733', 'en', 500), +(57801, 'The Old First Massachusetts Coast Artillery in War and Peace', 'Cutler, Frederick Morse', '2012-10-13', 25, 'https://www.gutenberg.org/ebooks/41043', 'en', 18647), +(57802, 'Bird Biographies', 'Ball, Alice Eliza', '2019-07-10', 130, 'https://www.gutenberg.org/ebooks/59880', 'en', 13532), +(57803, 'Sky Island\r\nBeing the Further Exciting Adventures of Trot and Cap\'n Bill After Their Visit to the Sea Fairies', 'Baum, L. Frank (Lyman Frank)', '2012-03-15', 78, 'https://www.gutenberg.org/ebooks/39159', 'en', 2203), +(57804, 'Le chat de la mère Michel: Complainte', 'La Bédollière, Emile de', '2010-08-18', 34, 'https://www.gutenberg.org/ebooks/33463', 'fr', 11941), +(57805, 'The Red Chancellor', 'Magnay, William, Sir', '2019-02-24', 7, 'https://www.gutenberg.org/ebooks/58952', 'en', 17219), +(57806, 'Josh Billings\' Farmer\'s Allminax, 1870-1879', 'Billings, Josh', '2012-07-10', 32, 'https://www.gutenberg.org/ebooks/40191', 'en', 18648), +(57807, 'An Elementary Study of Chemistry', 'McPherson, William', '2007-03-18', 141, 'https://www.gutenberg.org/ebooks/20848', 'en', 292), +(57808, 'The Greek Philosophers, Vol. 1 (of 2)', 'Benn, Alfred William', '2018-05-10', 27, 'https://www.gutenberg.org/ebooks/57126', 'en', 2286), +(57809, 'Prophets of Dissent : Essays on Maeterlinck, Strindberg, Nietzsche and Tolstoy', 'Heller, Otto', '2011-05-15', 25, 'https://www.gutenberg.org/ebooks/36111', 'en', 5723), +(57810, 'Eben Holden\'s Last Day A-Fishing', 'Bacheller, Irving', '2016-06-30', 4, 'https://www.gutenberg.org/ebooks/52454', 'en', 5500), +(57811, 'American Eloquence, Volume 3\r\nStudies In American Political History (1897)', NULL, '2005-03-17', 16, 'https://www.gutenberg.org/ebooks/15393', 'en', 1720), +(57812, 'American Big-Game Hunting: The Book of the Boone and Crockett Club', 'Boone and Crockett Club', '2012-06-10', 26, 'https://www.gutenberg.org/ebooks/39965', 'en', 18649), +(57813, 'More English Fairy Tales', NULL, '2004-12-02', 108, 'https://www.gutenberg.org/ebooks/14241', 'en', 4483), +(57814, 'Tulella ja miekalla: Kuvaus menneiltä ajoilta. 4', 'Sienkiewicz, Henryk', '2016-11-23', 13, 'https://www.gutenberg.org/ebooks/53586', 'fi', 18650), +(57815, 'The Story of the Cambrian: A Biography of a Railway', 'Gasquoine, C. P. (Charles Penrhyn)', '2006-12-10', 33, 'https://www.gutenberg.org/ebooks/20074', 'en', 18651), +(57816, 'The Madman: His Parables and Poems', 'Gibran, Kahlil', '2004-05-01', 180, 'https://www.gutenberg.org/ebooks/5616', 'en', 9471), +(57817, 'The Boyhood of Jesus', 'Anonymous', '2013-12-28', 13, 'https://www.gutenberg.org/ebooks/44531', 'en', 7179), +(57818, 'Far Away and Long Ago: A History of My Early Life', 'Hudson, W. H. (William Henry)', '2004-07-01', 61, 'https://www.gutenberg.org/ebooks/6093', 'en', 1299), +(57819, 'The Laws Of War, Affecting Commerce And Shipping', 'Thomson, H. Byerley (Henry Byerley)', '2004-10-25', 38, 'https://www.gutenberg.org/ebooks/13858', 'en', 6943), +(57820, 'The Story of Norway', 'Boyesen, Hjalmar Hjorth', '2010-12-14', 20, 'https://www.gutenberg.org/ebooks/34646', 'en', 5200), +(57821, 'Advice to Young Musicians. Musikalische Haus- und Lebens-Regeln', 'Schumann, Robert', '2009-02-28', 47, 'https://www.gutenberg.org/ebooks/28219', 'de', 6664), +(57822, 'Araapilainen pulveri: Yksinäytöksinen huvinäytelmä', 'Holberg, Ludvig', '2015-10-25', 17, 'https://www.gutenberg.org/ebooks/50303', 'fi', 907), +(57823, 'Walker\'s Appeal, with a Brief Sketch of His Life\nAnd Also Garnet\'s Address to the Slaves of the United States of America', 'Walker, David', '2005-08-12', 37, 'https://www.gutenberg.org/ebooks/16516', 'en', 125), +(57824, 'Dream Tales and Prose Poems', 'Turgenev, Ivan Sergeevich', '2005-09-01', 40, 'https://www.gutenberg.org/ebooks/8935', 'en', 13787), +(57825, 'Os Sinos\r\nPoesia Narrativa', 'Proença, Raul Sangreman', '2007-09-22', 12, 'https://www.gutenberg.org/ebooks/22723', 'pt', 8), +(57826, 'Suburban Sketches', 'Howells, William Dean', '2004-12-01', 22, 'https://www.gutenberg.org/ebooks/7141', 'en', 18652), +(57827, 'Märchen und Erzählungen für Anfänger. Erster Teil', NULL, '2011-04-08', 236, 'https://www.gutenberg.org/ebooks/35794', 'de', 6116), +(57828, 'The Sharper Detected and Exposed', 'Robert-Houdin, Jean-Eugène', '2014-07-13', 11, 'https://www.gutenberg.org/ebooks/46266', 'en', 18653), +(57829, '\"Some Say\"; Neighbours in Cyrus', 'Richards, Laura Elizabeth Howe', '2008-11-13', 16, 'https://www.gutenberg.org/ebooks/27251', 'en', 14256), +(57830, 'Persia Revisited', 'Gordon, Thomas Edward, Sir', '2004-07-30', 18, 'https://www.gutenberg.org/ebooks/13064', 'en', 18654), +(57831, 'Project Trinity, 1945-1946', 'Maag, Carl R.', '1996-06-01', 109, 'https://www.gutenberg.org/ebooks/548', 'en', 18655), +(57832, 'The Boy Spies with the Regulators\r\nThe Story of How the Boys Assisted the Carolina Patriots to Drive the British from That State', 'Otis, James', '2013-09-14', 18, 'https://www.gutenberg.org/ebooks/43714', 'en', 195), +(57833, 'Donal Grant', 'MacDonald, George', '2000-12-01', 27, 'https://www.gutenberg.org/ebooks/2433', 'en', 2389), +(57834, 'Descriptions of Two Species of Frogs, Genus Ptychohyla\nStudies of American Hylid Frogs, V', 'Duellman, William Edward', '2010-02-21', 22, 'https://www.gutenberg.org/ebooks/31334', 'en', 823), +(57835, 'Early Bardic Literature, Ireland.', 'O\'Grady, Standish', '2005-05-01', 31, 'https://www.gutenberg.org/ebooks/8109', 'en', 3209), +(57836, 'Women I\'m Not Married To', 'Adams, Franklin P. (Franklin Pierce)', '2017-10-02', 21, 'https://www.gutenberg.org/ebooks/55671', 'en', 1084), +(57837, 'Anna Seward, and Classic Lichfield', 'Martin, Stapleton', '2008-08-21', 10, 'https://www.gutenberg.org/ebooks/26383', 'en', 18656), +(57838, 'Edelweiss: A Story', 'Auerbach, Berthold', '2010-06-28', 8, 'https://www.gutenberg.org/ebooks/33007', 'en', 803), +(57839, 'Index for Works of Neil Munro\nHyperlinks to all Chapters of all Individual Ebooks', 'Munro, Neil', '2018-07-19', 9, 'https://www.gutenberg.org/ebooks/57542', 'en', 198), +(57840, 'Ma Rag Time Baby', 'Peerless Orchestra (Edison studio ensemble)', '2003-11-01', 6, 'https://www.gutenberg.org/ebooks/10285', 'en', 11516), +(57841, 'The English and Scottish Popular Ballads, Volume 1 (of 5)', NULL, '2014-02-20', 61, 'https://www.gutenberg.org/ebooks/44969', 'en', 4582), +(57842, '池北偶談', 'Wang, Shizhen', '2008-04-25', 10, 'https://www.gutenberg.org/ebooks/25162', 'zh', 5195), +(57843, 'Jimgrim and Allah\'s Peace', 'Mundy, Talbot', '2004-02-01', 56, 'https://www.gutenberg.org/ebooks/11357', 'en', 18657), +(57844, 'History of Spanish Literature, vol. 3 (of 3)', 'Ticknor, George', '2018-02-03', 4, 'https://www.gutenberg.org/ebooks/56490', 'en', 4785), +(57845, 'Het leven en de lotgevallen van Robinson Crusoe, t. 1', 'Defoe, Daniel', '2012-11-21', 29, 'https://www.gutenberg.org/ebooks/41427', 'nl', 4731), +(57846, 'Military Instructors Manual', 'Cole, J. P. (James Perry)', '2005-01-09', 87, 'https://www.gutenberg.org/ebooks/14625', 'en', 3655), +(57847, 'Notes and Queries, Number 187, May 28, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-01-21', 19, 'https://www.gutenberg.org/ebooks/20410', 'en', 105), +(57848, 'The Sea Fogs', 'Stevenson, Robert Louis', '2004-03-01', 45, 'https://www.gutenberg.org/ebooks/5272', 'en', 18658), +(57849, 'How It Feels to Be Fifty', 'Butler, Ellis Parker', '2013-11-10', 27, 'https://www.gutenberg.org/ebooks/44155', 'en', 20), +(57850, 'Punch, or the London Charavari, Volume 93, October 8, 1887', 'Various', '2014-03-09', 16, 'https://www.gutenberg.org/ebooks/45087', 'en', 134), +(57851, 'The Count of Narbonne: A Tragedy, in Five Acts', 'Jephson, Robert', '2011-07-01', 8, 'https://www.gutenberg.org/ebooks/36575', 'en', 402), +(57852, 'The Dawn of History: An Introduction to Pre-Historic Study', 'Keary, C. F. (Charles Francis)', '2016-05-09', 43, 'https://www.gutenberg.org/ebooks/52030', 'en', 1368), +(57853, 'The American Missionary — Volume 43, No. 12, December, 1889', 'Various', '2005-07-01', 3, 'https://www.gutenberg.org/ebooks/16172', 'en', 562), +(57854, 'Through Canal-Land in a Canadian Canoe', 'Hughes, Vincent', '2007-08-16', 14, 'https://www.gutenberg.org/ebooks/22347', 'en', 14393), +(57855, 'The History of Roman Literature\r\nFrom the Earliest Period to the Death of Marcus Aurelius', 'Cruttwell, Charles Thomas', '2005-02-01', 46, 'https://www.gutenberg.org/ebooks/7525', 'en', 4983), +(57856, 'Winning a Cause: World War Stories', 'Thompson, John G. (John Gilbert)', '2006-11-23', 30, 'https://www.gutenberg.org/ebooks/19906', 'en', 10122), +(57857, 'Lydia Knight\'s History\nThe First Book of the Noble Women\'s Lives', 'Gates, Susa Young', '2014-08-17', 28, 'https://www.gutenberg.org/ebooks/46602', 'en', 18659), +(57858, 'Das Unheimliche', 'Freud, Sigmund', '2010-11-06', 112, 'https://www.gutenberg.org/ebooks/34222', 'de', 18660), +(57859, 'White Fang', 'London, Jack', '1997-05-01', 1255, 'https://www.gutenberg.org/ebooks/910', 'en', 323), +(57860, 'Grace Darling, Heroine of the Farne Islands', 'Farningham, Marianne', '2007-11-03', 18, 'https://www.gutenberg.org/ebooks/23295', 'en', 18661), +(57861, 'Life\'s Dawn on Earth\r\nBeing the history of the oldest known fossil remains, and their relations to geological time and to the development of the animal kingdom', 'Dawson, John William, Sir', '2015-12-25', 10, 'https://www.gutenberg.org/ebooks/50767', 'en', 18662), +(57862, 'Lippincott\'s Magazine of Popular Literature and Science, Volume 20. July, 1877.', 'Various', '2010-03-23', 21, 'https://www.gutenberg.org/ebooks/31750', 'en', 162), +(57863, 'Those Extraordinary Twins', 'Twain, Mark', '2004-09-16', 62, 'https://www.gutenberg.org/ebooks/3185', 'en', 17868), +(57864, 'Cuando la tierra era niña', 'Hawthorne, Nathaniel', '2017-07-28', 43, 'https://www.gutenberg.org/ebooks/55215', 'es', 3412), +(57865, 'The Canterbury Puzzles, and Other Curious Problems', 'Dudeney, Henry Ernest', '2008-12-27', 103, 'https://www.gutenberg.org/ebooks/27635', 'en', 5882), +(57866, 'Conscience', 'Malot, Hector', '2004-09-08', 11, 'https://www.gutenberg.org/ebooks/13400', 'fr', 560), +(57867, 'Mein buntes Buch: Naturschilderungen', 'Löns, Hermann', '2015-04-26', 9, 'https://www.gutenberg.org/ebooks/48798', 'de', 18663), +(57868, 'Candy-Making at Home\nTwo hundred ways to make candy with home flavors and professional finish', 'Wright, Mary M.‏ (Mary Mason)', '2013-08-01', 26, 'https://www.gutenberg.org/ebooks/43370', 'en', 1372), +(57869, 'Buxton and its Medicinal Waters', 'Gifford-Bennet, Robert Ottiwell', '2009-12-14', 30, 'https://www.gutenberg.org/ebooks/30682', 'en', 18664), +(57870, 'The Last of the Plainsmen', 'Grey, Zane', '2000-02-01', 84, 'https://www.gutenberg.org/ebooks/2057', 'en', 9790), +(57871, 'The Last of the Barons — Volume 03', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7717', 'en', 10645), +(57872, 'The Camp-life of the Third Regiment', 'Kerlin, Robert Thomas', '2014-07-27', 16, 'https://www.gutenberg.org/ebooks/46430', 'en', 18665), +(57873, 'Othmar', 'Ouida', '2016-03-17', 15, 'https://www.gutenberg.org/ebooks/51487', 'en', 61), +(57874, 'A Cynic Looks at Life', 'Bierce, Ambrose', '2005-07-21', 78, 'https://www.gutenberg.org/ebooks/16340', 'en', 20), +(57875, 'Stories from the Ballads, Told to the Children', 'MacGregor, Mary Esther Miller', '2007-07-30', 45, 'https://www.gutenberg.org/ebooks/22175', 'en', 18666), +(57876, 'The New Frontiers of Freedom from the Alps to the Ægean', 'Powell, E. Alexander (Edward Alexander)', '2005-12-12', 15, 'https://www.gutenberg.org/ebooks/17292', 'en', 18667), +(57877, 'Bibliographic Notes on One Hundred Books Famous in English Literature', 'Kent, Henry Watson', '2015-11-26', 9, 'https://www.gutenberg.org/ebooks/50555', 'en', 5775), +(57878, 'The History and Antiquities of the Doric Race, Vol. 2 of 2', 'Müller, Karl Otfried', '2010-09-28', 15, 'https://www.gutenberg.org/ebooks/34010', 'en', 9399), +(57879, 'Führer durch das böhmische Erzgebirge, das Mittelgebirge und die angrenzenden Gebiete', 'Weymann, August', '2017-07-02', 9, 'https://www.gutenberg.org/ebooks/55027', 'de', 18668), +(57880, 'Pioneers and Founders\nor, Recent Workers in the Mission field', 'Yonge, Charlotte M. (Charlotte Mary)', '2006-09-17', 18, 'https://www.gutenberg.org/ebooks/19308', 'en', 8849), +(57881, 'Το Ταξείδι μου', 'Psicharis, Ioannis', '2010-03-08', 17, 'https://www.gutenberg.org/ebooks/31562', 'el', 61), +(57882, 'A Mysterious Disappearance: A Farce', 'Baker, George M. (George Melville)', '2015-07-18', 17, 'https://www.gutenberg.org/ebooks/49478', 'en', 868), +(57883, 'Winesburg, Ohio', 'Anderson, Sherwood', '2007-10-01', 54, 'https://www.gutenberg.org/ebooks/22949', 'en', 728), +(57884, 'Flagg\'s The Far West, 1836-1837, part 2; and De Smet\'s Letters and Sketches, 1841-1842', 'Flagg, Edmund', '2013-02-13', 20, 'https://www.gutenberg.org/ebooks/42090', 'en', 8477), +(57885, 'A London Baby: The Story of King Roy', 'Meade, L. T.', '2013-07-08', 3, 'https://www.gutenberg.org/ebooks/43142', 'en', 18669), +(57886, 'Hamlet', 'Shakespeare, William', '2000-07-01', 810, 'https://www.gutenberg.org/ebooks/2265', 'en', 1298), +(57887, 'The Return of the Dead, and Other Ballads', NULL, '2008-12-04', 8, 'https://www.gutenberg.org/ebooks/27407', 'en', 54), +(57888, 'The Bay State Monthly — Volume 1, No. 5, May, 1884', 'Various', '2004-10-05', 15, 'https://www.gutenberg.org/ebooks/13632', 'en', 1593), +(57889, 'Lapin muisteluksia', 'Paulaharju, Samuli', '2018-08-25', 5, 'https://www.gutenberg.org/ebooks/57770', 'fi', 5707), +(57890, 'Attrition', 'Wannamaker, Jim', '2008-01-14', 43, 'https://www.gutenberg.org/ebooks/24282', 'en', 26), +(57891, 'A Defence of the Hessians', 'Rosengarten, J. G. (Joseph George)', '2010-07-23', 7, 'https://www.gutenberg.org/ebooks/33235', 'en', 9195), +(57892, 'Tuffy Todd\'s Adventure: A True Story', 'Harlow, Lewis D. (Lewis Davis)', '2012-12-13', 3, 'https://www.gutenberg.org/ebooks/41615', 'en', 9880), +(57893, '蕩寇志', 'Yu, Wanchun', '2008-05-06', 15, 'https://www.gutenberg.org/ebooks/25350', 'zh', 5736), +(57894, 'Wild Wings: A Romance of Youth', 'Chalmers, Margaret Piper', '2004-02-01', 10, 'https://www.gutenberg.org/ebooks/11165', 'en', 847), +(57895, 'State of the Union Addresses', 'Eisenhower, Dwight D. (Dwight David)', '2004-02-01', 3, 'https://www.gutenberg.org/ebooks/5040', 'en', 1276), +(57896, 'Auricular Confession and Popish Nunneries\nVolumes I. and II., Complete', 'Hogan, William', '2011-10-10', 15, 'https://www.gutenberg.org/ebooks/37695', 'en', 18670), +(57897, 'The Mentor: Walter Scott, Vol. 4, Num. 15, Serial No. 115, September 15, 1916', 'Mabie, Hamilton Wright', '2013-12-05', 23, 'https://www.gutenberg.org/ebooks/44367', 'en', 1654), +(57898, 'The Agamemnon of Aeschylus\r\nTranslated into English Rhyming Verse with Explanatory Notes', 'Aeschylus', '2004-12-22', 180, 'https://www.gutenberg.org/ebooks/14417', 'en', 704), +(57899, 'On Horseback Through Asia Minor, Volume 2 (of 2)', NULL, '2019-01-20', 11, 'https://www.gutenberg.org/ebooks/58738', 'en', 213), +(57900, 'The Kentucky Ranger', 'Curnick, Edward T.', '2007-02-19', 9, 'https://www.gutenberg.org/ebooks/20622', 'en', 942), +(57901, 'Washington, its sights and insights', 'Monroe, Harriet Earhart', '2016-05-31', 9, 'https://www.gutenberg.org/ebooks/52202', 'en', 18671), +(57902, 'Diary of Samuel Pepys — Volume 68: September/October 1668', 'Pepys, Samuel', '2004-12-01', 19, 'https://www.gutenberg.org/ebooks/4192', 'en', 478), +(57903, 'A Brief Memoir with Portions of the Diary, Letters, and Other Remains,\nof Eliza Southall, Late of Birmingham, England', 'Southall, Eliza Allen', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11959', 'en', 18672); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(57904, 'Ruth Fielding Down in Dixie; Or, Great Times in the Land of Cotton', 'Emerson, Alice B.', '2011-07-16', 20, 'https://www.gutenberg.org/ebooks/36747', 'en', 18673), +(57905, 'After Dark', 'Collins, Wilkie', '1999-02-01', 152, 'https://www.gutenberg.org/ebooks/1626', 'en', 1566), +(57906, 'The Blower of Bubbles', 'Baxter, Beverley', '2012-08-14', 15, 'https://www.gutenberg.org/ebooks/40501', 'en', 61), +(57907, 'Höchstes Vertrauen\r\n(aus Lohengrin)', NULL, '2003-11-01', 8, 'https://www.gutenberg.org/ebooks/10271', 'de', 4227), +(57908, 'Myths and Legends of Christmastide', 'Herrick, Bertha F.', '2007-12-26', 25, 'https://www.gutenberg.org/ebooks/24044', 'en', 4324), +(57909, '百家姓', 'Anonymous', '2008-04-27', 45, 'https://www.gutenberg.org/ebooks/25196', 'zh', 18674), +(57910, 'Turkish Literature; Comprising Fables, Belles-lettres, and Sacred Traditions', NULL, '2018-01-30', 34, 'https://www.gutenberg.org/ebooks/56464', 'en', 18675), +(57911, 'The Scrap Book, Volume 1, No. 4\nJune 1906', 'Various', '2010-04-24', 9, 'https://www.gutenberg.org/ebooks/32121', 'en', 18), +(57912, 'Right Guard Grant', 'Barbour, Ralph Henry', '2016-09-22', 4, 'https://www.gutenberg.org/ebooks/53116', 'en', 2154), +(57913, 'The Barber of Paris', 'Kock, Paul de', '2011-09-16', 24, 'https://www.gutenberg.org/ebooks/37453', 'en', 58), +(57914, 'Tales and Novels of J. de La Fontaine — Volume 12', 'La Fontaine, Jean de', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/5286', 'en', 2629), +(57915, 'Lucy Maud Montgomery Short Stories, 1909 to 1922', 'Montgomery, L. M. (Lucy Maud)', '2008-03-19', 199, 'https://www.gutenberg.org/ebooks/24878', 'en', 2261), +(57916, 'Pikku kuvia elämästä', 'Päivärinta, Pietari', '2014-03-08', 12, 'https://www.gutenberg.org/ebooks/45073', 'fi', 665), +(57917, 'Four American Naval Heroes\r\nPaul Jones, Oliver H. Perry, Admiral Farragut, Admiral Dewey', 'Beebe, Mabel Borton', '2011-07-02', 35, 'https://www.gutenberg.org/ebooks/36581', 'en', 1848), +(57918, 'By the Ionian Sea: Notes of a Ramble in Southern Italy', 'Gissing, George', '2003-08-01', 28, 'https://www.gutenberg.org/ebooks/4354', 'en', 18676), +(57919, 'Paul the Minstrel and Other Stories\nReprinted from The Hill of Trouble and The Isles of Sunset', 'Benson, Arthur Christopher', '2007-05-19', 5, 'https://www.gutenberg.org/ebooks/21536', 'en', 179), +(57920, 'Modern: En Berättelse', 'Benedictsson, Victoria', '2005-04-25', 54, 'https://www.gutenberg.org/ebooks/15703', 'sv', 420), +(57921, 'A Little Rebel', 'Duchess', '2005-07-02', 13, 'https://www.gutenberg.org/ebooks/16186', 'en', 451), +(57922, 'The Hermitage, Home of General Andrew Jackson', 'Dorris, Mary C. (Mary C. Currey)', '2016-04-02', 6, 'https://www.gutenberg.org/ebooks/51641', 'en', 18677), +(57923, 'The Last Stroke: A Detective Story', 'Lynch, Lawrence L.', '2011-02-17', 268, 'https://www.gutenberg.org/ebooks/35304', 'en', 61), +(57924, 'Pääskyisen Pakinat: Kertomia kiehkurainen Suomen kieltä oppivaisten hytödyksi', NULL, '2014-12-20', 13, 'https://www.gutenberg.org/ebooks/47724', 'fi', 7177), +(57925, 'The Continental Monthly, Vol. 5, No. 4, April, 1864', 'Various', '2006-07-13', 18, 'https://www.gutenberg.org/ebooks/18820', 'en', 558), +(57926, 'Petty Troubles of Married Life, Second Part', 'Balzac, Honoré de', '2004-09-01', 5, 'https://www.gutenberg.org/ebooks/6403', 'en', 1451), +(57927, 'Duncan Polite, the Watchman of Glenoro', 'MacGregor, Mary Esther Miller', '2009-05-04', 16, 'https://www.gutenberg.org/ebooks/28689', 'en', 18678), +(57928, 'Oowikapun, or, How the Gospel reached the Nelson River Indians', 'Young, Egerton Ryerson', '2007-10-31', 11, 'https://www.gutenberg.org/ebooks/23261', 'en', 18679), +(57929, 'Cousin Lucy\'s Conversations\nBy the Author of the Rollo Books', 'Abbott, Jacob', '2015-12-30', 20, 'https://www.gutenberg.org/ebooks/50793', 'en', 388), +(57930, 'The Submarine Boys on Duty\r\nLife on a Diving Torpedo Boat', 'Durham, Victor G.', '2005-11-12', 12, 'https://www.gutenberg.org/ebooks/17054', 'en', 5237), +(57931, 'In Defence of Harriet Shelley', 'Twain, Mark', '2004-09-16', 111, 'https://www.gutenberg.org/ebooks/3171', 'en', 17886), +(57932, 'Fairy Tales from the Arabian Nights', 'Dixon, E.', '2005-07-01', 303, 'https://www.gutenberg.org/ebooks/8599', 'en', 9762), +(57933, 'Le roman de Tristan et Iseut', 'Bédier, Joseph', '2013-03-04', 52, 'https://www.gutenberg.org/ebooks/42256', 'fr', 18680), +(57934, 'Boy Scouts in Northern Wilds; Or, The Signal from the Hills', 'Fletcher, Archibald Lee', '2004-06-01', 12, 'https://www.gutenberg.org/ebooks/12526', 'en', 18681), +(57935, 'Norman Ten Hundred\nA Record of the 1st (Service) Bn. Royal Guernsey Light Infantry', 'Blicq, A. Stanley', '2008-09-27', 15, 'https://www.gutenberg.org/ebooks/26713', 'en', 18682), +(57936, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 6/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2019-08-16', 215, 'https://www.gutenberg.org/ebooks/60106', 'fr', 2972), +(57937, 'Miriam: A Tale of Pole Moor and the Greenfield Hills', 'Sykes, D. F. E.', '2017-03-09', 5, 'https://www.gutenberg.org/ebooks/54333', 'en', 1445), +(57938, 'A Complete List of the Books Included in the S. & C. Series of Elementary Manuals for Mechanics and Students published by E. & F. N. Spon, Ltd., London. January 1912', 'E. & F. N. Spon', '2013-08-02', 8, 'https://www.gutenberg.org/ebooks/43384', 'en', 852), +(57939, 'David Copperfield - Tome I', 'Dickens, Charles', '2006-02-26', 37, 'https://www.gutenberg.org/ebooks/17868', 'fr', 1080), +(57940, 'Primary Handwork', 'Dobbs, Ella Victoria', '2009-12-14', 22, 'https://www.gutenberg.org/ebooks/30676', 'en', 18683), +(57941, 'Pilgrim Trails: A Plymouth-to-Provincetown Sketchbook', 'Warner, Frances Lester', '2011-01-31', 11, 'https://www.gutenberg.org/ebooks/35136', 'en', 18684), +(57942, 'The Donkey, the Elephant, and the Goat at a Public Meeting', 'Preston, Jack', '2016-03-16', 6, 'https://www.gutenberg.org/ebooks/51473', 'en', 18685), +(57943, 'The Mysterious Murder of Pearl Bryan, or: the Headless Horror.', 'Unknown', '2009-08-02', 15, 'https://www.gutenberg.org/ebooks/29569', 'en', 18686), +(57944, 'The Maid and the Magpie\r\nAn Interesting Tale Founded on Facts', 'Moreton, Charles', '2007-07-30', 20, 'https://www.gutenberg.org/ebooks/22181', 'en', 859), +(57945, 'De ontredderden. Eerste bundel. I en II.', 'Hulzen, Gertrudis Hendricus Ignaaz van', '2013-06-02', 11, 'https://www.gutenberg.org/ebooks/42858', 'nl', 319), +(57946, 'Night of the Living Dead', 'Romero, George A.', '2007-10-17', 95, 'https://www.gutenberg.org/ebooks/23053', 'en', 18687), +(57947, 'The Banner Boy Scouts; or, The Struggle for Leadership', 'Warren, George A.', '2005-12-09', 34, 'https://www.gutenberg.org/ebooks/17266', 'en', 1002), +(57948, 'Haukansilmä', 'Cooper, James Fenimore', '2014-12-02', 14, 'https://www.gutenberg.org/ebooks/47516', 'fi', 893), +(57949, 'The Sculpture and Mural Decorations of the Exposition\r\nA Pictorial Survey of the Art of the Panama-Pacific international exposition', 'Perry, Stella G. S. (Stella George Stern)', '2004-10-01', 54, 'https://www.gutenberg.org/ebooks/6631', 'en', 3035), +(57950, 'Alone', 'Poe, Edgar Allan', '2004-06-01', 10, 'https://www.gutenberg.org/ebooks/12714', 'en', 8), +(57951, 'Earthmen Bearing Gifts', 'Brown, Fredric', '2008-09-04', 97, 'https://www.gutenberg.org/ebooks/26521', 'en', 26), +(57952, 'The Wandering Jew — Volume 05', 'Sue, Eugène', '2004-10-25', 9, 'https://www.gutenberg.org/ebooks/3343', 'en', 98), +(57953, 'The Art and Craft of Printing', 'Morris, William', '2010-03-10', 64, 'https://www.gutenberg.org/ebooks/31596', 'en', 18688), +(57954, 'Après le divorce', 'Bovet, Marie-Anne de', '2013-02-10', 11, 'https://www.gutenberg.org/ebooks/42064', 'fr', 61), +(57955, 'David Elginbrod', 'MacDonald, George', '2000-08-01', 52, 'https://www.gutenberg.org/ebooks/2291', 'en', 942), +(57956, 'The Life, Adventures and Piracies of the Famous Captain Singleton', 'Defoe, Daniel', '2006-01-01', 4, 'https://www.gutenberg.org/ebooks/9679', 'en', 324), +(57957, 'The Turkish Bath, Its Design and Construction', 'Allsop, Robert Owen', '2009-11-10', 20, 'https://www.gutenberg.org/ebooks/30444', 'en', 9089), +(57958, 'Cowardice Court', 'McCutcheon, George Barr', '2017-02-03', 7, 'https://www.gutenberg.org/ebooks/54101', 'en', 13091), +(57959, 'Klondyke Nuggets\nA Brief Description of the Great Gold Regions in the Northwest', 'Ladue, Joseph', '2003-11-01', 9, 'https://www.gutenberg.org/ebooks/10043', 'en', 9332), +(57960, 'Chatto & Windus\'s List of Books, July 1878', 'Chatto & Windus (Firm)', '2018-08-27', 6, 'https://www.gutenberg.org/ebooks/57784', 'en', 2663), +(57961, 'Crime and Corruption', 'Vaknin, Samuel', '2004-06-01', 68, 'https://www.gutenberg.org/ebooks/5888', 'en', 18689), +(57962, 'The Coffin Cure', 'Nourse, Alan Edward', '2008-01-14', 57, 'https://www.gutenberg.org/ebooks/24276', 'en', 2797), +(57963, 'Somebody\'s Luggage', 'Dickens, Charles', '1998-08-01', 50, 'https://www.gutenberg.org/ebooks/1414', 'en', 45), +(57964, 'Charles Darwin: His Life Told in an Autobiographical Chapter, and in a Selected Series of His Published Letters', 'Darwin, Charles', '2012-01-20', 27, 'https://www.gutenberg.org/ebooks/38629', 'en', 5315), +(57965, 'Frühling', 'Schlaf, Johannes', '2012-09-11', 6, 'https://www.gutenberg.org/ebooks/40733', 'de', 422), +(57966, 'The Esperantist, Vol. 1, No. 6', NULL, '2010-05-10', 17, 'https://www.gutenberg.org/ebooks/32313', 'eo', 3912), +(57967, 'Medical Jurisprudence as it Relates to Insanity, According to the Law of England', 'Haslam, John', '2018-02-27', 8, 'https://www.gutenberg.org/ebooks/56656', 'en', 18690), +(57968, 'Captains All and Others', 'Jacobs, W. W. (William Wymark)', '2004-02-01', 14, 'https://www.gutenberg.org/ebooks/11191', 'en', 72), +(57969, 'The War of the Axe; Or, Adventures in South Africa', 'Groves, J. Percy (John Percy)', '2011-10-08', 5, 'https://www.gutenberg.org/ebooks/37661', 'en', 7669), +(57970, 'The Arts and Crafts of Older Spain, Volume 3 (of 3)', 'Williams, Leonard', '2013-12-10', 18, 'https://www.gutenberg.org/ebooks/44393', 'en', 10452), +(57971, 'Tales of the R.I.C.', NULL, '2016-10-19', 29, 'https://www.gutenberg.org/ebooks/53324', 'en', 18691), +(57972, 'Six Months at the Cape', 'Ballantyne, R. M. (Robert Michael)', '2007-06-06', 34, 'https://www.gutenberg.org/ebooks/21704', 'en', 4990), +(57973, 'Florante\r\nVersión castellana del poema tagalo con un ensayo crítico', 'Balagtas, Francisco', '2005-04-03', 24, 'https://www.gutenberg.org/ebooks/15531', 'es', 18692), +(57974, 'Popular British Ballads, Ancient and Modern, Vol. 1 (of 4)', NULL, '2014-03-28', 9, 'https://www.gutenberg.org/ebooks/45241', 'en', 4582), +(57975, 'Diary of Samuel Pepys — Volume 44: July 1666', 'Pepys, Samuel', '2004-12-01', 4, 'https://www.gutenberg.org/ebooks/4166', 'en', 478), +(57976, 'Reis naar Merw\nDe Aarde en haar Volken, 1887', 'Anonymous', '2007-11-10', 7, 'https://www.gutenberg.org/ebooks/23437', 'nl', 18693), +(57977, 'Schools of to-morrow', 'Dewey, Evelyn', '2015-05-09', 52, 'https://www.gutenberg.org/ebooks/48906', 'en', 8827), +(57978, 'Quelques recherches sur le tombeau de Virgile au mont Pausilipe (1840)', 'Peignot, Gabriel', '2006-01-25', 12, 'https://www.gutenberg.org/ebooks/17602', 'fr', 18592), +(57979, 'Ainoa hetki: Kolmi-näytöksinen näytelmä', 'Hahnsson, Theodolinda', '2014-10-22', 7, 'https://www.gutenberg.org/ebooks/47172', 'fi', 433), +(57980, 'Campobello: An Historical Sketch', 'Wells, Kate Gannett', '2010-11-29', 2, 'https://www.gutenberg.org/ebooks/34480', 'en', 18694), +(57981, 'There Is Sorrow on the Sea', 'Parker, Gilbert', '2004-11-18', 24, 'https://www.gutenberg.org/ebooks/6255', 'en', 11955), +(57982, 'Tales from \"Blackwood,\" Volume 5', 'Various', '2011-03-11', 14, 'https://www.gutenberg.org/ebooks/35552', 'en', 179), +(57983, 'Grisly Grisell; Or, The Laidly Lady of Whitburn: A Tale of the Wars of the Roses', 'Yonge, Charlotte M. (Charlotte Mary)', '2005-01-01', 32, 'https://www.gutenberg.org/ebooks/7387', 'en', 10517), +(57984, '海島算經', 'Liu, Hui, active 3rd century-4th century', '2008-10-20', 20, 'https://www.gutenberg.org/ebooks/26979', 'zh', 1914), +(57985, 'Anecdotes of the Learned Pig\nWith Notes, Critical and Explanatory, and Illustrations from Bozzy, Piozzi &c. &c.', 'Boswell, James', '2016-01-23', 23, 'https://www.gutenberg.org/ebooks/51017', 'en', 18695), +(57986, 'The Matsuyama Mirror', NULL, '2009-09-18', 15, 'https://www.gutenberg.org/ebooks/30020', 'en', 1007), +(57987, 'The Boy Ranchers in Death Valley; Or, Diamond X and the Poison Mystery', 'Baker, Willard F.', '2008-10-29', 14, 'https://www.gutenberg.org/ebooks/27097', 'en', 3946), +(57988, 'Der Vogelflug als Grundlage der Fliegekunst\r\nEin Beitrag zur Systematik der Flugtechnik', 'Lilienthal, Otto', '2017-04-18', 18, 'https://www.gutenberg.org/ebooks/54565', 'de', 927), +(57989, 'The Farringdons', 'Fowler, Ellen Thorneycroft', '2006-11-13', 20, 'https://www.gutenberg.org/ebooks/19798', 'en', 48), +(57990, 'Bagh O Bahar, or Tales of the Four Darweshes', 'Amir Khusraw Dihlavi', '2004-05-01', 49, 'https://www.gutenberg.org/ebooks/12370', 'en', 10731), +(57991, 'The Tell El Amarna Period', 'Niebuhr, Carl', '2008-07-29', 52, 'https://www.gutenberg.org/ebooks/26145', 'en', 7311), +(57992, 'Maurice Guest', 'Richardson, Henry Handel', '2003-02-01', 29, 'https://www.gutenberg.org/ebooks/3727', 'en', 18696), +(57993, 'Mr. Punch\'s Book of Love: Being the Humours of Courtship and Matrimony', NULL, '2013-03-24', 107, 'https://www.gutenberg.org/ebooks/42400', 'en', 564), +(57994, 'The Big Tomorrow', 'Shaver, Richard S.', '2009-09-08', 36, 'https://www.gutenberg.org/ebooks/29931', 'en', 26), +(57995, 'Why we should read--', 'Mais, S. P. B. (Stuart Petre Brodie)', '2012-11-04', 105, 'https://www.gutenberg.org/ebooks/41285', 'en', 1694), +(57996, 'Mestarin nuuskarasia\nYksinäytöksinen huvinäytelmä', 'Kiljander, Robert', '2005-06-02', 15, 'https://www.gutenberg.org/ebooks/15969', 'fi', 247), +(57997, 'The Great Keinplatz Experiment and Other Tales of Twilight and the Unseen', 'Doyle, Arthur Conan', '2010-06-11', 51, 'https://www.gutenberg.org/ebooks/32777', 'en', 409), +(57998, 'The Boys of Grand Pré School\r\nIllustrated', 'De Mille, James', '2017-12-24', 25, 'https://www.gutenberg.org/ebooks/56232', 'en', 195), +(57999, 'Scientific Essays and Lectures', 'Kingsley, Charles', '2003-12-01', 29, 'https://www.gutenberg.org/ebooks/10427', 'en', 814), +(58000, 'The Monitor and the Merrimac\nBoth sides of the story', 'Watson, Eugene Winslow', '2008-02-15', 20, 'https://www.gutenberg.org/ebooks/24612', 'en', 18697), +(58001, 'Four Months Afoot in Spain', 'Franck, Harry Alverson', '2012-07-27', 102, 'https://www.gutenberg.org/ebooks/40357', 'en', 1514), +(58002, 'Old Gold: The Cruise of the \"Jason\" Brig', 'Fenn, George Manville', '2007-05-08', 10, 'https://www.gutenberg.org/ebooks/21360', 'en', 14274), +(58003, 'Windjammers and Sea Tramps', 'Runciman, Walter Runciman, Baron', '2005-02-23', 12, 'https://www.gutenberg.org/ebooks/15155', 'en', 750), +(58004, 'Homeri Carmina et Cycli Epici Reliquiæ. Pars Prima: Ilias', 'Homer', '2016-08-01', 27, 'https://www.gutenberg.org/ebooks/52692', 'la', 7047), +(58005, 'The Story of the Munsters at Etreux, Festubert, Rue du Bois and Hulloch', 'Rickard, Jessie Louisa Moore', '2014-05-10', 17, 'https://www.gutenberg.org/ebooks/45625', 'en', 18698), +(58006, 'Die mehreren Wehmüller und ungarischen Nationalgesichter', 'Brentano, Clemens', '2003-10-01', 17, 'https://www.gutenberg.org/ebooks/4502', 'de', 8919), +(58007, 'The Sea and the Jungle', 'Tomlinson, H. M. (Henry Major)', '2011-08-26', 25, 'https://www.gutenberg.org/ebooks/37205', 'en', 18699), +(58008, 'The Telescope', 'Bell, Louis', '2016-12-16', 32, 'https://www.gutenberg.org/ebooks/53740', 'en', 17278), +(58009, 'The Jungle Girl', 'Casserly, Gordon', '2004-11-18', 43, 'https://www.gutenberg.org/ebooks/14087', 'en', 1736), +(58010, 'Schetsen uit de Dierenwereld', 'Elliot, Daniel Giraud', '2017-11-19', 9, 'https://www.gutenberg.org/ebooks/56000', 'nl', 8764), +(58011, 'The Haunters of the Silences: A Book of Animal Life', 'Roberts, Charles G. D., Sir', '2010-05-27', 10, 'https://www.gutenberg.org/ebooks/32545', 'en', 1787), +(58012, 'Around the End', 'Barbour, Ralph Henry', '2019-07-08', 97, 'https://www.gutenberg.org/ebooks/59874', 'en', 1877), +(58013, 'Unconscious Comedians', 'Balzac, Honoré de', '1998-03-01', 32, 'https://www.gutenberg.org/ebooks/1242', 'en', 58), +(58014, 'From Xylographs to Lead Molds; A.D. 1440-A.D. 1921', 'Forster, H. C.', '2010-08-24', 12, 'https://www.gutenberg.org/ebooks/33497', 'en', 3239), +(58015, 'Die Versuchung: Ein Gespräch des Dichters mit dem Erzengel und Luzifer', 'Werfel, Franz', '2012-07-08', 22, 'https://www.gutenberg.org/ebooks/40165', 'de', 3978), +(58016, 'An Essay Concerning Humane Understanding, Volume 1\r\nMDCXC, Based on the 2nd Edition, Books 1 and 2', 'Locke, John', '2004-01-01', 389, 'https://www.gutenberg.org/ebooks/10615', 'en', 5717), +(58017, 'The Story Of Frithiof The Bold\n1875', 'Anonymous', '2008-01-25', 41, 'https://www.gutenberg.org/ebooks/24420', 'en', 6418), +(58018, 'Dorothy Dixon Solves the Conway Case', 'Wayne, Dorothy', '2014-04-21', 10, 'https://www.gutenberg.org/ebooks/45417', 'en', 557), +(58019, 'The Songs of a Sentimental Bloke', 'Dennis, C. J. (Clarence James)', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/4730', 'en', 2474), +(58020, 'On Loving God', 'Bernard, of Clairvaux, Saint', '2007-04-04', 28, 'https://www.gutenberg.org/ebooks/21152', 'en', 18700), +(58021, 'Index of the Project Gutenberg Works of Antoine de La Salle', 'La Sale, Antoine de', '2019-03-11', 5, 'https://www.gutenberg.org/ebooks/59048', 'en', 198), +(58022, 'The Hosts of the Lord', 'Steel, Flora Annie Webster', '2012-06-13', 8, 'https://www.gutenberg.org/ebooks/39991', 'en', 1228), +(58023, 'The Magic Speech Flower\nor Little Luke and His Animal Friends', 'Hix, Melvin', '2005-03-15', 10, 'https://www.gutenberg.org/ebooks/15367', 'en', 625), +(58024, 'The American Missionary — Volume 33, No. 04, April 1879', 'Various', '2016-11-22', 2, 'https://www.gutenberg.org/ebooks/53572', 'en', 562), +(58025, 'The Egypt of the Hebrews and Herodotos', 'Sayce, A. H. (Archibald Henry)', '2012-02-12', 24, 'https://www.gutenberg.org/ebooks/38843', 'en', 14213), +(58026, 'Le Cocu (Novels of Paul de Kock Volume XVIII)', 'Kock, Paul de', '2012-10-06', 16, 'https://www.gutenberg.org/ebooks/40959', 'en', 298), +(58027, 'Little Pollie\r\nOr a Bunch of Violets', 'Dyer, Gertrude P.', '2006-12-10', 12, 'https://www.gutenberg.org/ebooks/20080', 'en', 9891), +(58028, 'Sääskiä: 1. parvi. Runollisia kokeita', 'Rahkonen, Aleksanteri', '2011-08-11', 35, 'https://www.gutenberg.org/ebooks/37037', 'fi', 8), +(58029, 'Earthquakes', 'Shedlock, Kaye M.', '2014-11-13', 22, 'https://www.gutenberg.org/ebooks/47340', 'en', 18701), +(58030, 'The Pony Rider Boys in the Rockies; Or, The Secret of the Lost Claim', 'Patchin, Frank Gee', '2004-07-01', 22, 'https://www.gutenberg.org/ebooks/6067', 'en', 5911), +(58031, 'Nights in London', 'Burke, Thomas', '2007-11-24', 33, 'https://www.gutenberg.org/ebooks/23605', 'en', 9012), +(58032, 'Santo Domingo: A Country with a Future', 'Schoenrich, Otto', '2006-02-01', 14, 'https://www.gutenberg.org/ebooks/9813', 'en', 18702), +(58033, 'Morsamor\nperegrinaciones heroicas y lances de amor y fortuna de\nMiguel de Zuheros y Tiburcio de Simahonda', 'Valera, Juan', '2005-12-31', 26, 'https://www.gutenberg.org/ebooks/17430', 'es', 1353), +(58034, 'Madeleine, jeune femme', 'Boylesve, René', '2016-02-15', 18, 'https://www.gutenberg.org/ebooks/51225', 'fr', 259), +(58035, 'Marriage and Divorce Laws of the World', 'Ringrose, Hyacinthe', '2011-04-03', 35, 'https://www.gutenberg.org/ebooks/35760', 'en', 18703), +(58036, 'Selina: Her Hopeful Efforts and Her Livelier Failures', 'Martin, George Madden', '2014-07-15', 39, 'https://www.gutenberg.org/ebooks/46292', 'en', 3606), +(58037, 'Anne of Avonlea', 'Montgomery, L. M. (Lucy Maud)', '2006-03-08', 1332, 'https://www.gutenberg.org/ebooks/47', 'en', 3606), +(58038, 'John Ward, Preacher', 'Deland, Margaret Wade Campbell', '2006-05-31', 22, 'https://www.gutenberg.org/ebooks/18478', 'en', 55), +(58039, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 494, June 18, 1831', 'Various', '2004-08-02', 4, 'https://www.gutenberg.org/ebooks/13090', 'en', 133), +(58040, 'The Sultan and His People', 'Oscanyan, C. (Christopher)', '2017-05-21', 17, 'https://www.gutenberg.org/ebooks/54757', 'en', 213), +(58041, 'Orleans\'in neitsyt: Romantillinen murhenäytelmä', 'Schiller, Friedrich', '2015-02-19', 28, 'https://www.gutenberg.org/ebooks/48308', 'fi', 8294), +(58042, 'The Great Cattle Trail', 'Ellis, Edward Sylvester', '2009-10-08', 37, 'https://www.gutenberg.org/ebooks/30212', 'en', 2046), +(58043, 'Human Genome Project, Chromosome Number 15', 'Human Genome Project', '2002-11-01', 2, 'https://www.gutenberg.org/ebooks/3515', 'en', 1841), +(58044, 'Private Letters of Edward Gibbon (1753-1794) Volume 2 (of 2)', 'Gibbon, Edward', '2013-05-03', 15, 'https://www.gutenberg.org/ebooks/42632', 'en', 7489), +(58045, 'The Post Office and Its Story\r\nAn interesting account of the activities of a great government department', 'Bennett, Edward', '2017-10-06', 14, 'https://www.gutenberg.org/ebooks/55685', 'en', 1179), +(58046, 'Sterne', 'Traill, H. D. (Henry Duff)', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12142', 'en', 18704), +(58047, 'The Great God Success: A Novel', 'Phillips, David Graham', '2005-04-01', 25, 'https://www.gutenberg.org/ebooks/7989', 'en', 15456), +(58048, 'New York Times Current History; The European War, Vol 2, No. 4, July, 1915\nApril-September, 1915', 'Various', '2008-08-20', 16, 'https://www.gutenberg.org/ebooks/26377', 'en', 335), +(58049, 'The Young Step-Mother; Or, A Chronicle of Mistakes', 'Yonge, Charlotte M. (Charlotte Mary)', '2004-06-01', 27, 'https://www.gutenberg.org/ebooks/5843', 'en', 378), +(58050, 'Thaumaturgia; Or, Elucidations of the Marvellous', 'Oxonian', '2003-11-01', 36, 'https://www.gutenberg.org/ebooks/10088', 'en', 3324), +(58051, 'The Girl Who Had Nothing', 'Williamson, A. M. (Alice Muriel)', '2012-05-18', 173, 'https://www.gutenberg.org/ebooks/39730', 'en', 348), +(58052, 'The Pony Rider Boys in New Mexico; Or, The End of the Silver Trail', 'Patchin, Frank Gee', '2004-01-01', 30, 'https://www.gutenberg.org/ebooks/4991', 'en', 5911), +(58053, 'La Tía Tula (Novela)', 'Unamuno, Miguel de', '2013-12-05', 49, 'https://www.gutenberg.org/ebooks/44358', 'es', 1384), +(58054, 'The Life and Correspondence of Sir Isaac Brock, K.B.\r\nInterspersed with notices of the celebrated Indian chief, Tecumseh, and comprising brief memoirs of Daniel De Lisle Brock, Esq., Lieutenant E.W. Tupper, R.N., and Colonel W. De Vic Tupper', 'Brock, Isaac, Sir', '2004-12-23', 19, 'https://www.gutenberg.org/ebooks/14428', 'en', 10383), +(58055, 'Kirsteen: The Story of a Scotch Family Seventy Years Ago', 'Oliphant, Mrs. (Margaret)', '2019-01-16', 12, 'https://www.gutenberg.org/ebooks/58707', 'en', 378), +(58056, 'The Village Sunday School, with brief sketches of three of its scholars', 'Symons, John C. (John Christian)', '2004-04-01', 11, 'https://www.gutenberg.org/ebooks/11966', 'en', 2149), +(58057, 'Twenty-Five Years in the Rifle Brigade', 'Surtees, William', '2011-07-19', 16, 'https://www.gutenberg.org/ebooks/36778', 'en', 1770), +(58058, 'Paul Clifford — Volume 01', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 20, 'https://www.gutenberg.org/ebooks/7728', 'en', 356), +(58059, 'From Dan to Beersheba\r\nA Description of the Wonderful Land, with Maps and Engravings and a Prologue by the Author Containing the Latest Explorations and Discoveries', 'Newman, John Philip', '2017-10-26', 8, 'https://www.gutenberg.org/ebooks/55824', 'en', 723), +(58060, 'The Guardians of the Columbia\nMount Hood, Mount Adams and Mount St. Helens', 'Williams, John H. (John Harvey)', '2013-06-08', 13, 'https://www.gutenberg.org/ebooks/42893', 'en', 18705), +(58061, 'Punch, or the London Charivari, Vol. 147, November 4, 1914', 'Various', '2009-04-01', 8, 'https://www.gutenberg.org/ebooks/28470', 'en', 134), +(58062, 'Erämaan taistelu: Historiallinen romaani', 'Ivalo, Santeri', '2013-10-12', 8, 'https://www.gutenberg.org/ebooks/43941', 'fi', 456), +(58063, 'La Femme Abbé', 'Maréchal, Sylvain', '2007-10-20', 13, 'https://www.gutenberg.org/ebooks/23098', 'fr', 61), +(58064, 'Good Times with the Juniors', 'Heath, Lilian M.', '2017-07-01', 11, 'https://www.gutenberg.org/ebooks/55018', 'en', 1415), +(58065, 'A Christmas Carol', 'Dickens, Charles', '2006-09-20', 592, 'https://www.gutenberg.org/ebooks/19337', 'en', 13723), +(58066, 'History of the War in Afghanistan, Vol. 2 (of 3)\r\nThird Edition', 'Kaye, John William, Sir', '2015-07-15', 29, 'https://www.gutenberg.org/ebooks/49447', 'en', 3631), +(58067, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves, North Carolina Narratives, Part 1', 'United States. Work Projects Administration', '2007-10-12', 34, 'https://www.gutenberg.org/ebooks/22976', 'en', 9493), +(58068, 'The Man of Letters as a Man of Business', 'Howells, William Dean', '2004-10-22', 12, 'https://www.gutenberg.org/ebooks/3388', 'en', 20), +(58069, 'The Mad King', 'Burroughs, Edgar Rice', '2005-08-01', 11, 'https://www.gutenberg.org/ebooks/8760', 'en', 580), +(58070, 'Ihmisruumiin substanssi suomalais-ugrilaisten kansojen taikuudessa\nTaikapsykologinen tutkimus', 'Hämäläinen, Albert', '2015-03-28', 11, 'https://www.gutenberg.org/ebooks/48595', 'fi', 18706), +(58071, 'Caravans By Night: A Romance of India', 'Hervey, Harry', '2011-01-01', 27, 'https://www.gutenberg.org/ebooks/34813', 'en', 1228), +(58072, 'Moran of the Lady Letty', 'Norris, Frank', '2008-07-09', 119, 'https://www.gutenberg.org/ebooks/321', 'en', 323), +(58073, '\'Me--Smith\'', 'Lockhart, Caroline', '2008-12-08', 3116, 'https://www.gutenberg.org/ebooks/27438', 'en', 2418), +(58074, 'Pleasant Journey', 'Thieme, Richard', '2009-08-25', 19, 'https://www.gutenberg.org/ebooks/29790', 'en', 26), +(58075, 'Cervantes e Portugal\r\nCuriosidade Litteraria', 'Barroso, Carlos', '2007-08-22', 9, 'https://www.gutenberg.org/ebooks/22378', 'pt', 14295), +(58076, 'Conscience — Volume 1', 'Malot, Hector', '2003-04-01', 25, 'https://www.gutenberg.org/ebooks/3986', 'en', 1563), +(58077, 'History Of The Missions Of The American Board Of Commissioners For Foreign Missions To The Oriental Churches, Volume II.', 'Anderson, Rufus', '2006-11-27', 8, 'https://www.gutenberg.org/ebooks/19939', 'en', 15885), +(58078, 'The New England Historical & Genealogical Register, Vol. 1, No. 3, July 1847', 'Various', '2015-12-24', 37, 'https://www.gutenberg.org/ebooks/50758', 'en', 18707), +(58079, 'Sir Francis Drake Revived', NULL, '2006-03-31', 26, 'https://www.gutenberg.org/ebooks/2854', 'en', 18708), +(58080, 'Joe Strong on the Trapeze\nor The Daring Feats of a Young Circus Performer', 'Barnum, Vance', '2009-04-30', 11, 'https://www.gutenberg.org/ebooks/28642', 'en', 153), +(58081, 'Hawkins Electrical Guide v. 05 (of 10)\r\nQuestions, Answers, & Illustrations, A progressive course of study for engineers, electricians, students and those desiring to acquire a working knowledge of electricity and its applications', 'Hawkins, N. (Nehemiah)', '2015-08-11', 15, 'https://www.gutenberg.org/ebooks/49675', 'en', 1863), +(58082, 'A Prince of Sinners', 'Oppenheim, E. Phillips (Edward Phillips)', '2005-10-30', 39, 'https://www.gutenberg.org/ebooks/16971', 'en', 1351), +(58083, 'The Seaboard Parish Volume 2', 'MacDonald, George', '2005-07-01', 7, 'https://www.gutenberg.org/ebooks/8552', 'en', 11759), +(58084, 'Punch, or the London Charivari, Volume 159, December 1, 1920', 'Various', '2006-08-23', 7, 'https://www.gutenberg.org/ebooks/19105', 'en', 134), +(58085, 'The Secret Garden', 'Burnett, Frances Hodgson', '1994-03-01', 3015, 'https://www.gutenberg.org/ebooks/113', 'en', 264), +(58086, 'Keziah Coffin', 'Lincoln, Joseph Crosby', '2006-05-14', 9, 'https://www.gutenberg.org/ebooks/2068', 'en', 539), +(58087, 'In the Heart of the Vosges and Other Sketches by a \"Devious Traveller\"', 'Betham-Edwards, Matilda', '2005-12-01', 29, 'https://www.gutenberg.org/ebooks/9480', 'en', 1117), +(58088, 'Due North; or, Glimpses of Scandinavia and Russia', 'Ballou, Maturin M. (Maturin Murray)', '2010-07-01', 21, 'https://www.gutenberg.org/ebooks/33038', 'en', 4506), +(58089, 'Anna Karenina, 1. Band', 'Tolstoy, Leo, graf', '2014-02-18', 86, 'https://www.gutenberg.org/ebooks/44956', 'de', 1871), +(58090, 'Stories of Inventors: The Adventures of Inventors and Engineers', 'Doubleday, Russell', '2004-02-01', 70, 'https://www.gutenberg.org/ebooks/11368', 'en', 14292), +(58091, 'English Coast Defences\nFrom Roman Times to the Early Years of the Nineteenth Century', 'Clinch, George', '2014-06-05', 15, 'https://www.gutenberg.org/ebooks/45884', 'en', 1512), +(58092, 'Copyright: Its History and Its Law', 'Bowker, R. R. (Richard Rogers)', '2012-04-21', 45, 'https://www.gutenberg.org/ebooks/39502', 'en', 18709), +(58093, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 733, January 12, 1878', 'Various', '2016-08-18', 10, 'https://www.gutenberg.org/ebooks/52833', 'en', 18), +(58094, 'Contraband; Or, A Losing Hazard', 'Whyte-Melville, G. J. (George John)', '2012-11-20', 26, 'https://www.gutenberg.org/ebooks/41418', 'en', 45), +(58095, 'The Gracious Designs of God, Accomplished by the Malice of His Enemies\r\nBeing the Substance of an Address, Delivered on Wednesday, November 24th, 1819, at the Surrey Tabernacle, by J. Church, Being the Day of His Deliverance.', 'Church, J. (John)', '2018-12-26', 7, 'https://www.gutenberg.org/ebooks/58535', 'en', 18710), +(58096, 'The Mysteries of Paris, Volume 5 of 6', 'Sue, Eugène', '2010-09-22', 22, 'https://www.gutenberg.org/ebooks/33804', 'en', 560), +(58097, 'Stories of Old Kentucky', 'Purcell, Martha C. Grassham, Mrs.', '2011-09-21', 17, 'https://www.gutenberg.org/ebooks/37498', 'en', 3099), +(58098, 'Bib Ballads', 'Lardner, Ring', '2008-07-03', 27, 'https://www.gutenberg.org/ebooks/25961', 'en', 178), +(58099, 'Kijkjes in een mooi werk over Chili\r\nDe Aarde en haar Volken, 1906', 'Wright, Marie Robinson', '2004-10-25', 8, 'https://www.gutenberg.org/ebooks/13867', 'nl', 18711), +(58100, 'Jonathan and His Continent: Rambles Through American Society', 'O\'Rell, Max', '2010-12-16', 64, 'https://www.gutenberg.org/ebooks/34679', 'en', 517), +(58101, 'The War in the Air; Vol. 1\nThe Part played in the Great War by the Royal Air Force', 'Raleigh, Walter Alexander, Sir', '2009-03-01', 49, 'https://www.gutenberg.org/ebooks/28226', 'en', 18712), +(58102, 'Lost Leaders', 'Lang, Andrew', '2005-08-14', 37, 'https://www.gutenberg.org/ebooks/16529', 'en', 20), +(58103, 'Die Gewerkschaftsbewegung\r\nDarstellung der gewerkschaftlichen Organisation der Arbeiter und der Arbeitgeber aller Länder.', 'Kulemann, Wilhelm', '2014-07-12', 12, 'https://www.gutenberg.org/ebooks/46259', 'de', 16724), +(58104, 'Mitteilungen aus den Memoiren des Satan — Band 1', 'Hauff, Wilhelm', '2004-11-01', 28, 'https://www.gutenberg.org/ebooks/6890', 'de', 10565), +(58105, 'The Works of Samuel Johnson, in Sixteen Volumes. Volume 04', 'Johnson, Samuel', '1996-07-01', 13, 'https://www.gutenberg.org/ebooks/577', 'en', 20), +(58106, 'Botany: The Science of Plant Life', 'Taylor, Norman', '2015-06-14', 176, 'https://www.gutenberg.org/ebooks/49211', 'en', 4656), +(58107, 'Henry Fielding: a Memoir\r\nIncluding Newly Discovered Letters and Records with Illustrations from Contemporary Prints', 'Godden, G. M. (Gertrude M.)', '2005-05-01', 24, 'https://www.gutenberg.org/ebooks/8136', 'en', 18713), +(58108, 'Little Eyolf', 'Ibsen, Henrik', '2005-04-01', 42, 'https://www.gutenberg.org/ebooks/7942', 'en', 798), +(58109, 'The Outdoor Girls in a Motor Car; Or, The Haunted Mansion of Shadow Valley', 'Hope, Laura Lee', '2006-10-17', 24, 'https://www.gutenberg.org/ebooks/19561', 'en', 8766), +(58110, 'Jim Waring of Sonora-Town; Or, Tang of Life', 'Knibbs, Henry Herbert', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/12189', 'en', 315), +(58111, 'The Hero in Man', 'Russell, George William', '2011-08-31', 22, 'https://www.gutenberg.org/ebooks/36912', 'en', 20), +(58112, 'Vojaĝo interne de mia ĉambro', 'Maistre, Xavier de', '2008-05-12', 12, 'https://www.gutenberg.org/ebooks/25539', 'eo', 18714), +(58113, 'The White Terror and The Red: A Novel of Revolutionary Russia', 'Cahan, Abraham', '2012-03-16', 19, 'https://www.gutenberg.org/ebooks/39166', 'en', 13282), +(58114, 'Mother West Wind\'s Children', 'Burgess, Thornton W. (Thornton Waldo)', '2007-03-22', 56, 'https://www.gutenberg.org/ebooks/20877', 'en', 625), +(58115, 'Three Ghost Stories', 'Dickens, Charles', '1998-04-01', 263, 'https://www.gutenberg.org/ebooks/1289', 'en', 401), +(58116, 'An Account of the Life and Writings of S. Irenæus, Bishop of Lyons and Martyr\r\nIntended to Illustrate the Doctrine, Discipline, Practices, and History of the Church, and the Tenets and Practices of the Gnostic Heretics During the Second Century', 'Beaven, James', '2018-05-08', 45, 'https://www.gutenberg.org/ebooks/57119', 'en', 18715), +(58117, 'Memories grave and gay', 'Hall, Florence Howe', '2019-03-17', 7, 'https://www.gutenberg.org/ebooks/59083', 'en', 18716), +(58118, 'Histoire de la Nouvelle France\nRelation derniere de ce qui s\'est passé au voyage du sieur\nde Poutrincourt en la Nouvelle France depuis 10 mois ença', 'Lescarbot, Marc', '2007-04-22', 6, 'https://www.gutenberg.org/ebooks/21199', 'fr', 18717), +(58119, 'The Elements of Geology; Adapted to the Use of Schools and Colleges', 'Loomis, Justin R. (Justin Rudolph)', '2013-01-13', 18, 'https://www.gutenberg.org/ebooks/41840', 'en', 2535), +(58120, 'The Martian', 'Hilliard, A. R. (Alec Rowley)', '2012-10-09', 56, 'https://www.gutenberg.org/ebooks/40992', 'en', 67), +(58121, 'Out of a Labyrinth', 'Lynch, Lawrence L.', '2012-02-15', 27, 'https://www.gutenberg.org/ebooks/38888', 'en', 61), +(58122, 'An Essay on the Encroachments of the German Ocean Along the Norfolk Coast\r\nWith a Design to Arrest Its Further Depredations', 'Hewitt, William', '2018-10-22', 5, 'https://www.gutenberg.org/ebooks/58151', 'en', 18718), +(58123, 'Dorothy Dale: A Girl of To-Day', 'Penrose, Margaret', '2004-05-01', 29, 'https://www.gutenberg.org/ebooks/5629', 'en', 51), +(58124, 'Master Simon\'s Garden: A Story', 'Meigs, Cornelia', '2018-09-18', 12, 'https://www.gutenberg.org/ebooks/57925', 'en', 4428), +(58125, 'Automobiel-rijden', 'Schilperoort, Tom', '2012-04-02', 7, 'https://www.gutenberg.org/ebooks/39354', 'nl', 18719), +(58126, 'The Protector', 'Bindloss, Harold', '2011-12-12', 25, 'https://www.gutenberg.org/ebooks/38286', 'en', 61), +(58127, 'Rebuilding Britain: A Survey of Problems of Reconstruction After the World War', 'Hopkinson, Alfred, Sir', '2005-02-02', 10, 'https://www.gutenberg.org/ebooks/14870', 'en', 18720), +(58128, 'Karl XII i klämman', 'Åberg, J. O. (Johan Olof)', '2016-07-27', 7, 'https://www.gutenberg.org/ebooks/52659', 'sv', 5198), +(58129, 'The Veterinarian', 'Korinek, Charles James', '2007-01-04', 8, 'https://www.gutenberg.org/ebooks/20279', 'en', 10916), +(58130, 'Sketches of Indian Character\r\nBeing a Brief Survey of the Principal Features of Character Exhibited by the North American Indians; Illustrating the Aphorism of the Socialists, that \"Man is the creature of circumstances\"', 'Bailey, James Napier', '2018-11-27', 10, 'https://www.gutenberg.org/ebooks/58363', 'en', 869), +(58131, 'The Life of the Spider', 'Fabre, Jean-Henri', '1999-09-01', 177, 'https://www.gutenberg.org/ebooks/1887', 'en', 6799), +(58132, 'Jeden miesiąc życia: utwory prozą', 'Bruner, Ludwik', '2009-02-07', 30, 'https://www.gutenberg.org/ebooks/28014', 'pl', 18721), +(58133, 'The Message', 'Dawson, A. J. (Alec John)', '2009-01-21', 14, 'https://www.gutenberg.org/ebooks/27860', 'en', 95), +(58134, 'The Funny Philosophers, or Wags and Sweethearts. A Novel', 'Yellott, George', '2011-03-17', 18, 'https://www.gutenberg.org/ebooks/35599', 'en', 61), +(58135, 'Contos', 'Câmara, João da', '2010-04-06', 16, 'https://www.gutenberg.org/ebooks/31905', 'pt', 6307), +(58136, 'Petrified Forest National Monument, Arizona', 'Smith, Dama Margaret', '2016-01-15', 13, 'https://www.gutenberg.org/ebooks/50932', 'en', 12066), +(58137, 'Commentary on the Maya Manuscript in the Royal Public Library of Dresden', 'Förstemann, Ernst Wilhelm', '2013-08-20', 23, 'https://www.gutenberg.org/ebooks/43519', 'en', 18722), +(58138, 'Œuvres complètes de lord Byron, Tome 8\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-05-15', 15, 'https://www.gutenberg.org/ebooks/28828', 'fr', 3504), +(58139, 'Across the Fruited Plain', 'Means, Florence Crannell', '2006-06-25', 14, 'https://www.gutenberg.org/ebooks/18681', 'en', 18723), +(58140, 'Punch, or the London Charivari, Volume 100, March 21, 1891', 'Various', '2004-08-24', 12, 'https://www.gutenberg.org/ebooks/13269', 'en', 134), +(58141, 'One Divided by Pi (To 1 Million Digits)', 'Kanada, Yasumasa', '1996-12-01', 15, 'https://www.gutenberg.org/ebooks/745', 'en', 1044), +(58142, 'Lyyrillisiä runoelmia 2', 'Runeberg, Johan Ludvig', '2015-01-16', 17, 'https://www.gutenberg.org/ebooks/47985', 'fi', 8), +(58143, 'Sons of the Morning', 'Phillpotts, Eden', '2014-09-14', 15, 'https://www.gutenberg.org/ebooks/46857', 'en', 4305), +(58144, 'The Youth of Goethe', 'Brown, Peter Hume', '2006-11-11', 24, 'https://www.gutenberg.org/ebooks/19753', 'en', 7537), +(58145, 'Tennessee at the Battle of New Orleans', 'Watson, Elbert L.', '2015-05-22', 10, 'https://www.gutenberg.org/ebooks/49023', 'en', 5758), +(58146, 'The Plow-Woman', 'Gates, Eleanor', '2010-01-31', 17, 'https://www.gutenberg.org/ebooks/31139', 'en', 17962), +(58147, 'The Bible, Douay-Rheims, Book 04: Numbers\r\nThe Challoner Revision', NULL, '2005-06-01', 7, 'https://www.gutenberg.org/ebooks/8304', 'en', 15645), +(58148, 'Compilation of the Messages and Papers of the Presidents: William McKinley; Messages, Proclamations, and Executive Orders Relating to the Spanish-American War', 'McKinley, William', '2004-10-29', 29, 'https://www.gutenberg.org/ebooks/13893', 'en', 337), +(58149, 'Bricks Without Straw: A Novel', 'Tourgée, Albion Winegar', '2004-07-01', 31, 'https://www.gutenberg.org/ebooks/6058', 'en', 18724), +(58150, 'Rodney, the Partisan', 'Castlemon, Harry', '2009-07-03', 13, 'https://www.gutenberg.org/ebooks/29300', 'en', 491), +(58151, 'The Scranton High Chums on the Cinder Path\r\nOr, The Mystery of the Haunted Quarry', 'Ferguson, Donald', '2004-07-19', 17, 'https://www.gutenberg.org/ebooks/12941', 'en', 1669), +(58152, 'Tarzan of the Apes', 'Burroughs, Edgar Rice', '1993-08-01', 1004, 'https://www.gutenberg.org/ebooks/78', 'en', 18725), +(58153, 'Bland ödebygder och skär\nBerättelser från Finland', 'Sten, Daniel', '2006-05-25', 14, 'https://www.gutenberg.org/ebooks/18447', 'sv', 61), +(58154, 'Tarina kolmesta leijonasta', 'Haggard, H. Rider (Henry Rider)', '2017-05-23', 9, 'https://www.gutenberg.org/ebooks/54768', 'fi', 2126), +(58155, 'The Woman in White', 'Collins, Wilkie', '1996-07-01', 1134, 'https://www.gutenberg.org/ebooks/583', 'en', 18726), +(58156, 'Average Jones', 'Adams, Samuel Hopkins', '2004-11-01', 37, 'https://www.gutenberg.org/ebooks/6864', 'en', 61), +(58157, 'On the Decay of the Art of Lying', 'Twain, Mark', '2005-09-01', 2, 'https://www.gutenberg.org/ebooks/9010', 'en', 20), +(58158, 'Her Lord and Master', 'Morton, Martha', '2015-02-21', 7, 'https://www.gutenberg.org/ebooks/48337', 'en', 3016), +(58159, 'Lisbeth Longfrock', 'Aanrud, Hans', '2008-08-18', 81, 'https://www.gutenberg.org/ebooks/26348', 'en', 62), +(58160, 'Essays on Various Subjects, Principally Designed for Young Ladies', 'More, Hannah', '2006-10-21', 26, 'https://www.gutenberg.org/ebooks/19595', 'en', 3605), +(58161, 'It May Be True, Vol. 2 (of 3)', 'Wood, Henry, Mrs.', '2012-03-18', 15, 'https://www.gutenberg.org/ebooks/39192', 'en', 61), +(58162, 'Jan Amos Komenský\nJohano Amos Comenius', 'Novák, Jan Václav', '2007-06-27', 5, 'https://www.gutenberg.org/ebooks/21951', 'eo', 18727), +(58163, 'Passeggiate per l\'Italia, vol. 4', 'Gregorovius, Ferdinand', '2012-10-17', 18, 'https://www.gutenberg.org/ebooks/41088', 'it', 1896), +(58164, 'Lyyrillisiä runoelmia 1', 'Runeberg, Johan Ludvig', '2007-03-23', 10, 'https://www.gutenberg.org/ebooks/20883', 'fi', 8), +(58165, 'Punch, or the London Charivari, Vol. 62, Jan 27, 1872', 'Various', '2011-11-17', 2, 'https://www.gutenberg.org/ebooks/38040', 'en', 134), +(58166, 'Arkielämää', 'Beskow, Elisabeth Maria', '2019-03-03', 5, 'https://www.gutenberg.org/ebooks/58999', 'fi', 2168), +(58167, 'Authors and Writers Associated with Morristown\nWith a Chapter on Historic Morristown', 'Colles, Julia Keese', '2011-10-24', 33, 'https://www.gutenberg.org/ebooks/37834', 'en', 18728), +(58168, 'Physical Amusements and Diverting Experiments\nComposed and Performed in Different Capitals of Europe, and in London', 'Pinetti, Giuseppe', '2018-03-21', 21, 'https://www.gutenberg.org/ebooks/56803', 'en', 3590), +(58169, 'Histoire de la musique', 'Lavoix, Henri', '2014-04-17', 25, 'https://www.gutenberg.org/ebooks/45428', 'fr', 250), +(58170, 'The Sahara', 'Loti, Pierre', '2019-03-17', 17, 'https://www.gutenberg.org/ebooks/59077', 'en', 18729), +(58171, 'The Great Round World and What Is Going On In It, Vol. 1, No. 17, March 4, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-03-14', 6, 'https://www.gutenberg.org/ebooks/15358', 'en', 1), +(58172, 'The Trial of Jesus from a Lawyer\'s Standpoint, Vol. 1 (of 2)\r\nThe Hebrew Trial', 'Chandler, Walter M. (Walter Marion)', '2012-10-07', 92, 'https://www.gutenberg.org/ebooks/40966', 'en', 18730), +(58173, 'Leo Tolstoin kertomuksia', 'Tolstoy, Leo, graf', '2011-08-08', 10, 'https://www.gutenberg.org/ebooks/37008', 'fi', 4710), +(58174, 'Vellenaux\nA Novel', 'Forrest, E. W. (Edmund William)', '2005-05-31', 10, 'https://www.gutenberg.org/ebooks/15956', 'en', 6733), +(58175, 'Mate in Two Moves', 'Marks, Winston K. (Winston Kinney)', '2010-06-08', 39, 'https://www.gutenberg.org/ebooks/32748', 'en', 26), +(58176, 'The Money Moon: A Romance', 'Farnol, Jeffery', '2003-12-01', 40, 'https://www.gutenberg.org/ebooks/10418', 'en', 48), +(58177, 'An Annapolis First Classman', 'Beach, Edward L. (Edward Latimer)', '2012-07-29', 8, 'https://www.gutenberg.org/ebooks/40368', 'en', 9913), +(58178, 'Famous Violinists of To-day and Yesterday', 'Lahee, Henry Charles', '2005-02-02', 48, 'https://www.gutenberg.org/ebooks/14884', 'en', 18731), +(58179, 'Suomen kansan satuja ja tarinoita', NULL, '2011-12-11', 14, 'https://www.gutenberg.org/ebooks/38272', 'fi', 18732), +(58180, 'The Nautilus. Vol. XXXI, No. 2, October 1917\nA Quarterly Journal Devoted to the Interests of Conchologists', 'Various', '2019-04-11', 12, 'https://www.gutenberg.org/ebooks/59245', 'en', 18733), +(58181, 'Gambara', 'Balzac, Honoré de', '2004-10-16', 23, 'https://www.gutenberg.org/ebooks/1873', 'en', 58), +(58182, 'Washington the Model of Character for American Youth\r\nAn Address Delivered to the Boys of the Public Schools', 'M\'Jilton, J. N. (John Nelson)', '2018-12-02', 6, 'https://www.gutenberg.org/ebooks/58397', 'en', 10245), +(58183, 'Memoirs of Life and Literature', 'Mallock, W. H. (William Hurrell)', '2010-01-01', 4, 'https://www.gutenberg.org/ebooks/30823', 'en', 18734), +(58184, 'Far from Home', 'Taylor, J. A.', '2007-11-08', 54, 'https://www.gutenberg.org/ebooks/23408', 'en', 26), +(58185, 'Heleija: Kertomus thüringiläisestä kansanelämästä', 'Ludwig, Otto', '2015-05-12', 9, 'https://www.gutenberg.org/ebooks/48939', 'fi', 1103), +(58186, 'The Pearl of Lima: A Story of True Love', 'Verne, Jules', '2009-01-26', 34, 'https://www.gutenberg.org/ebooks/27894', 'en', 2707), +(58187, 'The Defence of Stonington (Connecticut) Against a British Squadron, August 9th to 12th, 1814', 'Trumbull, J. Hammond (James Hammond)', '2008-10-18', 9, 'https://www.gutenberg.org/ebooks/26946', 'en', 18735), +(58188, 'The Gun', 'Dick, Philip K.', '2009-06-15', 302, 'https://www.gutenberg.org/ebooks/29132', 'en', 26), +(58189, 'The Protector', 'Curtis, Betsy', '2016-01-24', 26, 'https://www.gutenberg.org/ebooks/51028', 'en', 179), +(58190, 'A Select Party', 'Hawthorne, Nathaniel', '2005-11-01', 10, 'https://www.gutenberg.org/ebooks/9222', 'en', 179), +(58191, 'Dictionary of Quotations from Ancient and Modern, English and Foreign Sources\r\nIncluding Phrases, Mottoes, Maxims, Proverbs, Definitions, Aphorisms, and Sayings of Wise Men, in Their Bearing on Life, Literature, Speculation, Science, Art, Religion, and Morals, Especially in the Modern Aspects of Them', 'Wood, James, Rev.', '2015-01-29', 130, 'https://www.gutenberg.org/ebooks/48105', 'en', 1026), +(58192, 'Modern Skepticism: A Journey Through the Land of Doubt and Back Again\nA Life Story', 'Barker, Joseph', '2006-06-24', 32, 'https://www.gutenberg.org/ebooks/18675', 'en', 18736), +(58193, 'Field Book of Western Wild Flowers', 'Thornber, J. J. (John James)', '2015-01-14', 45, 'https://www.gutenberg.org/ebooks/47971', 'en', 18737), +(58194, 'Zijn Excellentie Eugène Rougon', 'Zola, Émile', '2017-09-05', 14, 'https://www.gutenberg.org/ebooks/55488', 'nl', 2373), +(58195, 'George Walker at Suez', 'Trollope, Anthony', '2003-02-01', 14, 'https://www.gutenberg.org/ebooks/3718', 'en', 2387), +(58196, 'Preferred Risk', 'McCann, Edson', '2016-04-21', 103, 'https://www.gutenberg.org/ebooks/51814', 'en', 26), +(58197, 'Die Harzreise', 'Heine, Heinrich', '2008-01-11', 123, 'https://www.gutenberg.org/ebooks/24249', 'de', 510), +(58198, 'Where Love is There God is Also', 'Tolstoy, Leo, graf', '2012-01-18', 99, 'https://www.gutenberg.org/ebooks/38616', 'en', 179), +(58199, 'Pelikello: Salapoliisikertomus', 'Elvestad, Sven', '2018-03-02', 5, 'https://www.gutenberg.org/ebooks/56669', 'fi', 7), +(58200, 'Waverley; Or, \'Tis Sixty Years Since — Volume 2', 'Scott, Walter', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4965', 'en', 98), +(58201, 'The Explorers of Australia and their Life-work', 'Favenc, Ernest', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10840', 'en', 7544), +(58202, 'Why Crime Does Not Pay', 'Burke, Sophie Van Elkan Lyons, Mrs.', '2019-05-27', 59, 'https://www.gutenberg.org/ebooks/59621', 'en', 6098), +(58203, 'A Residence in France During the Years 1792, 1793, 1794 and 1795, Part I. 1792\nDescribed in a Series of Letters from an English Lady: with General\nand Incidental Remarks on the French Character and Manners', 'Biggs, Charlotte', '2004-04-01', 9, 'https://www.gutenberg.org/ebooks/11992', 'en', 11900), +(58204, 'Diary of Samuel Pepys — Volume 38: September 1665', 'Pepys, Samuel', '2004-11-30', 3, 'https://www.gutenberg.org/ebooks/4159', 'en', 1231), +(58205, 'Shakespeare in the Theatre', 'Poel, William', '2011-01-29', 28, 'https://www.gutenberg.org/ebooks/35109', 'en', 18738), +(58206, 'The American Missionary — Volume 38, No. 06, June, 1884', 'Various', '2009-07-31', 13, 'https://www.gutenberg.org/ebooks/29556', 'en', 562), +(58207, 'Klea en Irene: roman', 'Ebers, Georg', '2013-06-03', 7, 'https://www.gutenberg.org/ebooks/42867', 'nl', 17347), +(58208, 'His Second Wife', 'Poole, Ernest', '2005-12-09', 20, 'https://www.gutenberg.org/ebooks/17259', 'en', 675), +(58209, 'The Philosophy of the Conditioned', 'Mansel, Henry Longueville', '2009-04-03', 11, 'https://www.gutenberg.org/ebooks/28484', 'en', 7765), +(58210, 'The Poems of Madison Cawein, Volume 2 (of 5)\r\nNew world idylls and poems of love', 'Cawein, Madison Julius', '2017-06-13', 7, 'https://www.gutenberg.org/ebooks/54902', 'en', 178), +(58211, 'Oliver Twist, Vol. 1 (of 3)', 'Dickens, Charles', '2014-12-04', 128, 'https://www.gutenberg.org/ebooks/47529', 'en', 1079), +(58212, 'The Life, Letters and Work of Frederic Leighton. Volume II', 'Barrington, Russell, Mrs.', '2011-05-20', 12, 'https://www.gutenberg.org/ebooks/35935', 'en', 11888), +(58213, 'Little Eve Edgarton', 'Abbott, Eleanor Hallowell', '2007-10-01', 19, 'https://www.gutenberg.org/ebooks/22982', 'en', 17812), +(58214, 'The Divine Comedy by Dante, Illustrated, Purgatory, Volume 5', 'Dante Alighieri', '2004-08-05', 12, 'https://www.gutenberg.org/ebooks/8794', 'en', 2212), +(58215, 'Horace: Odes and Epodes', 'Horace', '2006-01-01', 105, 'https://www.gutenberg.org/ebooks/9646', 'la', 18739), +(58216, 'Berkshire', 'Monckton, Horace Woollaston', '2015-03-22', 28, 'https://www.gutenberg.org/ebooks/48561', 'en', 18740), +(58217, 'The Harlequin Opal: A Romance. Vol. 3 (of 3)', 'Hume, Fergus', '2013-07-10', 15, 'https://www.gutenberg.org/ebooks/43189', 'en', 3148), +(58218, '老殘遊記', 'Liu, E', '2007-12-13', 18, 'https://www.gutenberg.org/ebooks/23850', 'zh', 13230), +(58219, 'Servitude et grandeur militaires', 'Vigny, Alfred de', '2006-04-19', 12, 'https://www.gutenberg.org/ebooks/18211', 'fr', 6311), +(58220, 'Kid Scanlan', 'Witwer, H. C. (Harry Charles)', '2009-08-22', 9, 'https://www.gutenberg.org/ebooks/29764', 'en', 6185), +(58221, 'The Ink-Stain (Tache d\'encre) — Volume 1', 'Bazin, René', '2003-04-01', 16, 'https://www.gutenberg.org/ebooks/3972', 'en', 560), +(58222, 'The Constable De Bourbon', 'Ainsworth, William Harrison', '2015-08-11', 17, 'https://www.gutenberg.org/ebooks/49681', 'en', 18741), +(58223, 'Nederlandsche dames en heeren: Novellen', 'Brink, Jan ten', '2013-03-05', 8, 'https://www.gutenberg.org/ebooks/42269', 'nl', 61), +(58224, 'The Proclamation of Bahá\'u\'lláh', 'Bahá\'u\'lláh', '2005-11-02', 8, 'https://www.gutenberg.org/ebooks/16985', 'en', 18742), +(58225, 'The Virginia Housewife\r\nOr Methodical Cook', 'Randolph, Mary', '2004-06-01', 130, 'https://www.gutenberg.org/ebooks/12519', 'en', 103), +(58226, 'In het Oerwoud en bij de Kannibalen op de Nieuwe Hebriden\nDe Aarde en haar Volken, 1918', 'Speiser, Felix', '2006-03-20', 3, 'https://www.gutenberg.org/ebooks/18023', 'nl', 3259), +(58227, 'Graham\'s Magazine, Vol. XL, No. 2, February 1852', 'Various', '2019-08-20', 118, 'https://www.gutenberg.org/ebooks/60139', 'en', 380), +(58228, 'Cameos from English History, from Rollo to Edward II', 'Yonge, Charlotte M. (Charlotte Mary)', '2005-12-01', 37, 'https://www.gutenberg.org/ebooks/9474', 'en', 18743), +(58229, 'Forgotten Books of the American Nursery\nA History of the Development of the American Story-Book', 'Halsey, Rosalie Vrylina', '2006-02-25', 30, 'https://www.gutenberg.org/ebooks/17857', 'en', 18744); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(58230, 'Last Resort', 'Bartholomew, Stephen', '2009-12-11', 35, 'https://www.gutenberg.org/ebooks/30649', 'en', 26), +(58231, 'Ten Acres Enough\r\nA practical experience, showing how a very small farm may be made to keep a very large family', 'Morris, Edmund', '2015-04-20', 46, 'https://www.gutenberg.org/ebooks/48753', 'en', 18745), +(58232, 'La Celestina', 'Rojas, Fernando de', '1999-01-01', 185, 'https://www.gutenberg.org/ebooks/1619', 'es', 1696), +(58233, 'Notes of a Son and Brother', 'James, Henry', '2011-12-27', 54, 'https://www.gutenberg.org/ebooks/38424', 'en', 10942), +(58234, 'Folk-Lore of West and Mid-Wales', 'Davies, Jonathan Ceredig', '2017-01-07', 40, 'https://www.gutenberg.org/ebooks/53915', 'en', 11848), +(58235, 'Silverspur; or, The Mountain Heroine: A Tale of the Arapaho Country', 'Willett, Edward', '2018-07-28', 17, 'https://www.gutenberg.org/ebooks/57589', 'en', 14664), +(58236, 'Gold, Gold, in Cariboo! A Story of Adventure in British Columbia', 'Phillipps-Wolley, Clive', '2014-06-03', 21, 'https://www.gutenberg.org/ebooks/45870', 'en', 4336), +(58237, 'Korvenkylän nuoriso: Näytelmä kahdessa näytöksessä', 'Vuokko, Väikkö', '2016-09-23', 16, 'https://www.gutenberg.org/ebooks/53129', 'fi', 247), +(58238, 'Ramo de Flores\nacompanhado de varias criticas das Flores do Campo', 'Deus, João de', '2008-03-16', 11, 'https://www.gutenberg.org/ebooks/24847', 'pt', 1638), +(58239, 'As We Sweep Through The Deep', 'Stables, Gordon', '2008-07-07', 15, 'https://www.gutenberg.org/ebooks/25995', 'en', 324), +(58240, 'The Wooing of Wistaria', 'Eaton, Winnifred', '2019-05-02', 26, 'https://www.gutenberg.org/ebooks/59413', 'en', 775), +(58241, 'A Veldt Official: A Novel of Circumstance', 'Mitford, Bertram', '2010-06-20', 29, 'https://www.gutenberg.org/ebooks/32922', 'en', 194), +(58242, 'Rowena & Harold\nA Romance in Rhyme of an Olden Time, of Hastyngs and Normanhurst', 'Pryer, William Stephen', '2007-05-17', 12, 'https://www.gutenberg.org/ebooks/21509', 'en', 8), +(58243, 'The Satyricon — Volume 02: Dinner of Trimalchio', 'Petronius Arbiter', '2004-06-01', 40, 'https://www.gutenberg.org/ebooks/5219', 'en', 10146), +(58244, 'The Slizzers', 'Bixby, Jerome', '2010-10-10', 46, 'https://www.gutenberg.org/ebooks/33850', 'en', 26), +(58245, 'The History of Parliamentary Taxation in England', 'Morgan, Shepard Ashman', '2016-10-01', 5, 'https://www.gutenberg.org/ebooks/53189', 'en', 18746), +(58246, 'Rocky Mountain National Park, Colorado', 'Alberts, Edwin C.', '2018-12-28', 21, 'https://www.gutenberg.org/ebooks/58561', 'en', 18747), +(58247, 'Student\'s Hand-book of Mushrooms of America, Edible and Poisonous', 'Taylor, Thomas', '2010-06-26', 65, 'https://www.gutenberg.org/ebooks/32982', 'en', 18748), +(58248, 'Northern Nut Growers Association Report of the Proceedings at the 43rd Annual Meeting\nRockport, Indiana, August 25, 26 and 27, 1952', NULL, '2008-06-30', 5, 'https://www.gutenberg.org/ebooks/25935', 'en', 1628), +(58249, 'Colin Clink, Volume 2 (of 3)', 'Hooton, Charles', '2014-02-14', 11, 'https://www.gutenberg.org/ebooks/44902', 'en', 18299), +(58250, 'Lexington and Concord: A Camera Impression', 'Chamberlain, Samuel', '2018-07-17', 11, 'https://www.gutenberg.org/ebooks/57529', 'en', 18749), +(58251, 'Abraham Lincoln: The True Story of a Great Life, Volume 2 (of 2)', 'Weik, Jesse William', '2012-01-03', 87, 'https://www.gutenberg.org/ebooks/38484', 'en', 1716), +(58252, 'Experiments on the Spoilage of Tomato Ketchup', 'Bitting, A. W. (Arvill Wayne)', '2016-08-21', 16, 'https://www.gutenberg.org/ebooks/52867', 'en', 5011), +(58253, 'Guy and Pauline', 'MacKenzie, Compton', '2012-04-28', 28, 'https://www.gutenberg.org/ebooks/39556', 'en', 61), +(58254, 'Susâni\n1901', 'Becke, Louis', '2008-04-19', 17, 'https://www.gutenberg.org/ebooks/25109', 'en', 179), +(58255, 'Punch, or the London Charivari, Volume 159, August 11, 1920', 'Various', '2006-08-31', 9, 'https://www.gutenberg.org/ebooks/19151', 'en', 134), +(58256, 'The Father and Daughter: A Tale, in Prose', 'Opie, Amelia', '2015-08-05', 15, 'https://www.gutenberg.org/ebooks/49621', 'en', 378), +(58257, 'In Exile, and Other Stories', 'Foote, Mary Hallock', '2005-07-01', 16, 'https://www.gutenberg.org/ebooks/8506', 'en', 770), +(58258, 'Sally Bishop: A Romance', 'Thurston, E. Temple (Ernest Temple)', '2005-10-23', 13, 'https://www.gutenberg.org/ebooks/16925', 'en', 109), +(58259, 'Smarra ou les démons de la nuit: Songes romantiques', 'Nodier, Charles', '2006-03-30', 18, 'https://www.gutenberg.org/ebooks/18083', 'fr', 61), +(58260, 'Common Sense', 'Paine, Thomas', '1994-07-01', 1528, 'https://www.gutenberg.org/ebooks/147', 'en', 5325), +(58261, 'Chronicles of England, Scotland and Ireland (2 of 6): England (10 of 12)\r\nEdward the Second, the Sonne of Edward the First', 'Holinshed, Raphael', '2014-08-24', 16, 'https://www.gutenberg.org/ebooks/46669', 'en', 288), +(58262, 'Doctrina Christiana\r\nThe first book printed in the Philippines, Manila, 1593.', NULL, '2005-06-23', 268, 'https://www.gutenberg.org/ebooks/16119', 'en', 12218), +(58263, 'The Koran (Al-Qur\'an)', NULL, '2001-09-01', 331, 'https://www.gutenberg.org/ebooks/2800', 'en', 542), +(58264, 'Penshurst Castle in the Time of Sir Philip Sidney', 'Marshall, Emma', '2009-04-26', 17, 'https://www.gutenberg.org/ebooks/28616', 'en', 18750), +(58265, 'Los Cent Conçeyls del Conçeyl de Cent', 'Gener, Pompeyo', '2010-11-08', 9, 'https://www.gutenberg.org/ebooks/34249', 'ca', 18751), +(58266, 'The Posy Ring: A Book of Verse for Children', NULL, '2007-10-08', 14, 'https://www.gutenberg.org/ebooks/22922', 'en', 13578), +(58267, 'El señor de Bembibre', 'Gil y Carrasco, Enrique', '2015-07-10', 31, 'https://www.gutenberg.org/ebooks/49413', 'es', 1353), +(58268, 'East of Paris: Sketches in the Gâtinais, Bourbonnais, and Champagne', 'Betham-Edwards, Matilda', '2005-08-01', 17, 'https://www.gutenberg.org/ebooks/8734', 'en', 1117), +(58269, 'Obras Completas de Luis de Camões, Tomo II', 'Camões, Luís de', '2010-03-05', 45, 'https://www.gutenberg.org/ebooks/31509', 'pt', 3425), +(58270, 'Daddy Do-Funny\'s Wisdom Jingles', 'Stuart, Ruth McEnery', '2006-09-25', 23, 'https://www.gutenberg.org/ebooks/19363', 'en', 11372), +(58271, 'William Blake: A Critical Essay', 'Swinburne, Algernon Charles', '2011-05-02', 42, 'https://www.gutenberg.org/ebooks/35995', 'en', 5919), +(58272, 'Der Todesgruß der Legionen, 3. Band', 'Samarow, Gregor', '2004-10-06', 10, 'https://www.gutenberg.org/ebooks/13659', 'de', 18752), +(58273, 'Following the Color Line\r\nAn account of Negro citizenship in the American democracy', NULL, '2011-01-04', 36, 'https://www.gutenberg.org/ebooks/34847', 'en', 2574), +(58274, 'An Occurrence at Owl Creek Bridge', 'Bierce, Ambrose', '1995-12-01', 1985, 'https://www.gutenberg.org/ebooks/375', 'en', 4448), +(58275, 'The Laurel Walk', 'Molesworth, Mrs.', '2013-07-08', 7, 'https://www.gutenberg.org/ebooks/43129', 'en', 7171), +(58276, 'A History of Architecture in all Countries, Volumes 1 and 2, 3rd ed.\nFrom the Earliest Times to the Present Day', 'Fergusson, James', '2017-11-01', 20, 'https://www.gutenberg.org/ebooks/55870', 'en', 10026), +(58277, 'Judithi: Kuvaus 4:ssä Kohtauksessa', 'Lagervall, Jacob Fredrik', '2014-12-08', 14, 'https://www.gutenberg.org/ebooks/47589', 'fi', 2321), +(58278, 'Theodor Leschetizky', 'Hullah, Annette', '2013-10-08', 20, 'https://www.gutenberg.org/ebooks/43915', 'en', 18753), +(58279, 'Tales From Scottish Ballads', 'Grierson, Elizabeth W. (Elizabeth Wilson)', '2009-03-27', 37, 'https://www.gutenberg.org/ebooks/28424', 'en', 18754), +(58280, 'Oomphel in the Sky', 'Piper, H. Beam', '2007-02-23', 69, 'https://www.gutenberg.org/ebooks/20649', 'en', 26), +(58281, 'The Roses of Saint Elizabeth', 'Woodruff, Jane Scott', '2019-01-22', 7, 'https://www.gutenberg.org/ebooks/58753', 'en', 18755), +(58282, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 576, November 17, 1832', 'Various', '2004-04-01', 10, 'https://www.gutenberg.org/ebooks/11932', 'en', 133), +(58283, '幼學瓊林', 'Cheng, Yunsheng', '2016-06-08', 25, 'https://www.gutenberg.org/ebooks/52269', 'zh', 10503), +(58284, 'The Century World\'s Fair Book for Boys and Girls\r\nBeing the Adventures of Harry and Philip with Their Tutor, Mr. Douglass, at the World\'s Columbian Exposition', 'Jenks, Tudor', '2019-06-05', 53, 'https://www.gutenberg.org/ebooks/59681', 'en', 722), +(58285, 'The Clockmaker — or, the Sayings and Doings of Samuel Slick, of Slickville', 'Haliburton, Thomas Chandler', '2004-06-01', 29, 'https://www.gutenberg.org/ebooks/5817', 'en', 15120), +(58286, 'Κύρου Ανάβασις Τόμος 1', 'Xenophon', '2012-05-22', 61, 'https://www.gutenberg.org/ebooks/39764', 'el', 7233), +(58287, 'Allan Quatermain', 'Haggard, H. Rider (Henry Rider)', '2004-11-18', 312, 'https://www.gutenberg.org/ebooks/711', 'en', 7017), +(58288, 'Notes and Queries, Number 211, November 12, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 23, 'https://www.gutenberg.org/ebooks/27008', 'en', 105), +(58289, 'Madame de Treymes', 'Wharton, Edith', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9282', 'en', 797), +(58290, 'On the Fourfold Root of the Principle of Sufficient Reason, and On the Will in Nature: Two Essays (revised edition)', 'Schopenhauer, Arthur', '2016-01-19', 192, 'https://www.gutenberg.org/ebooks/50966', 'en', 4680), +(58291, 'The Art of Horse-Shoeing: A Manual for Farriers', 'Hunting, William', '2015-05-29', 28, 'https://www.gutenberg.org/ebooks/49077', 'en', 16892), +(58292, 'The Bible, Douay-Rheims, Book 50: John\nThe Challoner Revision', NULL, '2005-06-01', 5, 'https://www.gutenberg.org/ebooks/8350', 'en', 5364), +(58293, 'Diary of Richard Cocks, Volume 1\r\nCape-Merchant in the English Factory in Japan, 1615-1622, with Correspondence', 'Cocks, Richard', '2014-09-07', 24, 'https://www.gutenberg.org/ebooks/46803', 'en', 18756), +(58294, 'One Wonderful Night: A Romance of New York', 'Tracy, Louis', '2006-11-03', 22, 'https://www.gutenberg.org/ebooks/19707', 'en', 1660), +(58295, 'The Steam Engine Familiarly Explained and Illustrated\r\nWith an historical sketch of its invention and progressive improvement; its applications to navigation and railways; with plain axioms for railway speculators', 'Lardner, Dionysius', '2017-08-26', 13, 'https://www.gutenberg.org/ebooks/55428', 'en', 18757), +(58296, 'Paul and the Printing Press', 'Bassett, Sara Ware', '2009-01-19', 11, 'https://www.gutenberg.org/ebooks/27834', 'en', 18758), +(58297, 'Abessinien, das Alpenland unter den Tropen und seine Grenzländer', 'Andree, Richard', '2010-01-07', 33, 'https://www.gutenberg.org/ebooks/30883', 'de', 1936), +(58298, 'The Boy Scouts of the Signal Corps', 'Shaler, Robert', '2015-05-19', 14, 'https://www.gutenberg.org/ebooks/48999', 'en', 14463), +(58299, 'Robin Tremayne\r\nA Story of the Marian Persecution', 'Holt, Emily Sarah', '2009-02-09', 10, 'https://www.gutenberg.org/ebooks/28040', 'en', 18759), +(58300, 'De strijd tusschen Noord en Zuid\r\nDe Zwarte Kreek van Texar', 'Verne, Jules', '2009-06-21', 7, 'https://www.gutenberg.org/ebooks/29192', 'nl', 403), +(58301, 'The History of the First United States Flag\r\nand the Patriotism of Betsy Ross, the Immortal Heroine That Originated the First Flag of the Union', 'Reigart, J. Franklin (John Franklin)', '2016-01-31', 14, 'https://www.gutenberg.org/ebooks/51088', 'en', 1618), +(58302, 'Geographic Distribution and Taxonomy of the Chipmunks of Wyoming', 'White, John A.', '2010-04-11', 6, 'https://www.gutenberg.org/ebooks/31951', 'en', 6833), +(58303, 'The Bravest of the Brave — or, with Peterborough in Spain', 'Henty, G. A. (George Alfred)', '2005-01-01', 73, 'https://www.gutenberg.org/ebooks/7318', 'en', 18760), +(58304, 'Our Artist in Cuba, Peru, Spain and Algiers\nLeaves from The Sketch-Book of a Traveller, 1864-1868', 'Carleton, George Washington', '2011-06-07', 9, 'https://www.gutenberg.org/ebooks/36348', 'en', 18402), +(58305, 'Wanderings in Corsica: Its History and Its Heroes. Vol. 2 of 2', 'Gregorovius, Ferdinand', '2018-11-24', 8, 'https://www.gutenberg.org/ebooks/58337', 'en', 18761), +(58306, 'Marie', 'Richards, Laura Elizabeth Howe', '2004-11-11', 21, 'https://www.gutenberg.org/ebooks/14018', 'en', 195), +(58307, 'Harper\'s Young People, February 8, 1881\nAn Illustrated Weekly', 'Various', '2014-01-27', 5, 'https://www.gutenberg.org/ebooks/44768', 'en', 479), +(58308, 'The Psychology of Arithmetic', 'Thorndike, Edward L. (Edward Lee)', '2012-03-29', 40, 'https://www.gutenberg.org/ebooks/39300', 'en', 18762), +(58309, 'Furnishing the Home of Good Taste\r\nA Brief Sketch of the Period Styles in Interior Decoration with Suggestions as to Their Employment in the Homes of Today', 'Throop, Lucy Abbot', '2005-01-28', 32, 'https://www.gutenberg.org/ebooks/14824', 'en', 4442), +(58310, 'The web, a multilingual encyclopedia', 'Lebert, Marie', '2013-01-10', 14, 'https://www.gutenberg.org/ebooks/41814', 'en', 2069), +(58311, 'Memoiren einer Grossmutter, Band I\nBilder aus der Kulturgeschichte der Juden Russlands im 19. Jahrhundert', 'Wengeroff, Pauline', '2014-04-25', 15, 'https://www.gutenberg.org/ebooks/45488', 'de', 18763), +(58312, 'The Boston School Atlas, Embracing a Compendium of Geography', 'Edmands, B. Franklin (Benjamin Franklin)', '2018-09-24', 5, 'https://www.gutenberg.org/ebooks/57971', 'en', 3515), +(58313, 'A Letter to the Bishop of Exeter', 'Alderson, Edward Hall, Sir', '2018-10-15', 7, 'https://www.gutenberg.org/ebooks/58105', 'en', 18764), +(58314, 'Mathieu Ropars: et cetera', 'Young, William', '2012-03-13', 17, 'https://www.gutenberg.org/ebooks/39132', 'en', 61), +(58315, 'The Spirit of the Ghetto: Studies of the Jewish Quarter in New York', 'Hapgood, Hutchins', '2012-10-11', 20, 'https://www.gutenberg.org/ebooks/41028', 'en', 18765), +(58316, 'Baldy of Nome', 'Darling, Esther Birdsall', '2004-03-01', 24, 'https://www.gutenberg.org/ebooks/11758', 'en', 729), +(58317, 'Biography of Rev. Hosea Ballou', 'Ballou, Maturin M. (Maturin Murray)', '2011-08-02', 38, 'https://www.gutenberg.org/ebooks/36946', 'en', 18766), +(58318, 'A Quantitative Study of the Nocturnal Migration of Birds', 'Lowery, George H., Jr.', '2011-10-31', 81, 'https://www.gutenberg.org/ebooks/37894', 'en', 14557), +(58319, 'Bulletin de Lille, 1916.04\npublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2007-03-15', 17, 'https://www.gutenberg.org/ebooks/20823', 'fr', 6227), +(58320, 'The Dolphin in History', 'Lilly, John Cunningham', '2019-02-22', 10, 'https://www.gutenberg.org/ebooks/58939', 'en', 18767), +(58321, 'L\'Illustration, No. 0002, 11 Mars 1843', 'Various', '2010-08-11', 8, 'https://www.gutenberg.org/ebooks/33408', 'fr', 150), +(58322, 'Sermons on the Card, and Other Discourses', 'Latimer, Hugh', '2001-01-01', 11, 'https://www.gutenberg.org/ebooks/2458', 'en', 18768), +(58323, 'Luotsina Mississippi-joella: Humoristinen kertomus', 'Twain, Mark', '2015-03-02', 19, 'https://www.gutenberg.org/ebooks/48397', 'fi', 261), +(58324, 'Court Life in China: The Capital, Its Officials and People', 'Headland, Isaac Taylor', '1996-05-01', 41, 'https://www.gutenberg.org/ebooks/523', 'en', 18769), +(58325, 'George Bernard Shaw', 'Chesterton, G. K. (Gilbert Keith)', '2006-10-13', 61, 'https://www.gutenberg.org/ebooks/19535', 'en', 18770), +(58326, 'American Historical and Literary Curiosities, Part 16.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 6, 'https://www.gutenberg.org/ebooks/7916', 'en', 453), +(58327, 'The Unexploited West\r\nA Compilation of all of the authentic information available at the present time as to the Natural Resources of the Unexploited Regions of Northern Canada', 'Chambers, Ernest J.', '2015-06-20', 14, 'https://www.gutenberg.org/ebooks/49245', 'en', 2483), +(58328, 'Modern Painting', 'Moore, George', '2005-05-01', 41, 'https://www.gutenberg.org/ebooks/8162', 'en', 3670), +(58329, 'King Solomon\'s Goat', 'Bartlett, George Willard', '2015-11-02', 18, 'https://www.gutenberg.org/ebooks/50368', 'en', 1191), +(58330, 'Biographia Scoticana (Scots Worthies)\nA Brief Historical Account of the Lives, Characters, and Memorable Transactions of the Most Eminent Scots Worthies', 'Howie, John', '2009-03-07', 14, 'https://www.gutenberg.org/ebooks/28272', 'en', 5121), +(58331, 'Blackfeet Indian Stories', 'Grinnell, George Bird', '2004-10-22', 43, 'https://www.gutenberg.org/ebooks/13833', 'en', 13254), +(58332, 'Explanation of Terms Used in Entomology', 'Smith, John Bernhard', '2007-09-23', 86, 'https://www.gutenberg.org/ebooks/22748', 'en', 18771), +(58333, 'The Story of Cooperstown', 'Birdsall, Ralph', '2006-06-19', 16, 'https://www.gutenberg.org/ebooks/18621', 'en', 18772), +(58334, 'Pomander Walk', 'Parker, Louis Napoleon', '2015-01-09', 9, 'https://www.gutenberg.org/ebooks/47925', 'en', 18773), +(58335, 'Elementary Principles of Statistical Mechanics\r\nDeveloped with Especial Reference to the Rational Foundation of Thermodynamics', 'Gibbs, J. Willard (Josiah Willard)', '2016-01-22', 127, 'https://www.gutenberg.org/ebooks/50992', 'en', 8618), +(58336, 'Three Sermons, Three Prayers', 'Swift, Jonathan', '2005-11-01', 1, 'https://www.gutenberg.org/ebooks/9276', 'en', 1971), +(58337, 'A History of Inventions, Discoveries, and Origins, Volume 1 (of 2)', 'Beckmann, Johann', '2015-02-04', 25, 'https://www.gutenberg.org/ebooks/48151', 'en', 6792), +(58338, 'Il Re prega: Romanzo', 'Petruccelli della Gattina, Ferdinando', '2009-05-20', 14, 'https://www.gutenberg.org/ebooks/28888', 'it', 860), +(58339, 'Briefe an Ludwig Tieck (1/4)\nErster Band', 'Tieck, Ludwig', '2015-05-30', 11, 'https://www.gutenberg.org/ebooks/49083', 'de', 3236), +(58340, 'The Spoilers', 'Beach, Rex', '2016-04-23', 38, 'https://www.gutenberg.org/ebooks/51840', 'en', 18774), +(58341, 'Die Letzten', 'Rilke, Rainer Maria', '2010-02-06', 38, 'https://www.gutenberg.org/ebooks/31199', 'de', 1212), +(58342, 'Fragments of Earth Lore: Sketches & Addresses Geological and Geographical', 'Geikie, James', '2014-10-14', 17, 'https://www.gutenberg.org/ebooks/47119', 'en', 18775), +(58343, 'The Three Brides, Love in a Cottage, and Other Tales', 'Durivage, Francis A. (Francis Alexander)', '2006-02-03', 39, 'https://www.gutenberg.org/ebooks/17669', 'en', 179), +(58344, 'The Painter in Oil\r\nA complete treatise on the principles and technique necessary to the painting of pictures in oil colors', 'Parkhurst, Daniel Burleigh', '2010-01-06', 66, 'https://www.gutenberg.org/ebooks/30877', 'en', 18776), +(58345, 'The Flying Mercury', 'Ingram, Eleanor M. (Eleanor Marie)', '2009-06-19', 18, 'https://www.gutenberg.org/ebooks/29166', 'en', 14982), +(58346, 'Report of the Juvenile Delinquency Committee', 'Algie, R. M. (Ronald Macmillan)', '2008-10-13', 5, 'https://www.gutenberg.org/ebooks/26912', 'en', 17252), +(58347, 'Is The Bible Worth Reading, and Other Essays', 'Washburn, L. K. (Lemuel Kelley)', '2011-03-10', 15, 'https://www.gutenberg.org/ebooks/35539', 'en', 1191), +(58348, 'Mots Rouge Espoir: Poésie', 'Bertrand, Huguette', '2003-10-01', 18, 'https://www.gutenberg.org/ebooks/4569', 'fr', 8), +(58349, 'The Marriage of Elinor', 'Oliphant, Mrs. (Margaret)', '2019-04-05', 21, 'https://www.gutenberg.org/ebooks/59211', 'en', 434), +(58350, 'The Life of Charlotte Brontë — Volume 1', 'Gaskell, Elizabeth Cleghorn', '1999-07-01', 137, 'https://www.gutenberg.org/ebooks/1827', 'en', 8668), +(58351, 'In the Line', 'Dudley, Albertus T. (Albertus True)', '2017-12-27', 5, 'https://www.gutenberg.org/ebooks/56259', 'en', 5031), +(58352, 'Poker!', 'Hurston, Zora Neale', '2005-05-25', 47, 'https://www.gutenberg.org/ebooks/15902', 'en', 18777), +(58353, 'Thoughts Out of Season, Part II', 'Nietzsche, Friedrich Wilhelm', '2011-12-05', 101, 'https://www.gutenberg.org/ebooks/38226', 'en', 1356), +(58354, 'Lilith\nThe Legend of the First Woman', 'Collier, Ada Langworthy', '2008-02-23', 41, 'https://www.gutenberg.org/ebooks/24679', 'en', 178), +(58355, 'Index of the Project Gutenberg Works of Immanuel Kant', 'Kant, Immanuel', '2019-03-06', 34, 'https://www.gutenberg.org/ebooks/59023', 'en', 198), +(58356, 'Johnny Crow\'s Garden', 'Brooke, L. Leslie (Leonard Leslie)', '2007-04-24', 2, 'https://www.gutenberg.org/ebooks/21139', 'en', 343), +(58357, 'Carlo Porta e la sua Milano', 'Barbiera, Raffaello', '2018-03-27', 13, 'https://www.gutenberg.org/ebooks/56857', 'it', 18778), +(58358, 'The Innocents Abroad — Volume 02', 'Twain, Mark', '2004-06-22', 24, 'https://www.gutenberg.org/ebooks/5689', 'en', 2204), +(58359, 'Letters to Persons Who Are Engaged in Domestic Service', 'Beecher, Catharine Esther', '2018-09-28', 21, 'https://www.gutenberg.org/ebooks/57985', 'en', 5788), +(58360, 'Washington\'s Road (Nemacolin\'s path) the First Chapter of the Old French War', 'Hulbert, Archer Butler', '2012-10-04', 18, 'https://www.gutenberg.org/ebooks/40932', 'en', 14872), +(58361, 'Journeys in Persia and Kurdistan, Volume 2 (of 2)\r\nIncluding a Summer in the Upper Karun Region and a Visit to the Nestorian Rayahs', 'Bird, Isabella L. (Isabella Lucy)', '2012-02-11', 93, 'https://www.gutenberg.org/ebooks/38828', 'en', 4925), +(58362, 'Horace Walpole and His World: Select Passages from His Letters', 'Walpole, Horace', '2016-11-13', 26, 'https://www.gutenberg.org/ebooks/53519', 'en', 18779), +(58363, 'A Guide for the Religious Instruction of Jewish Youth', 'Reggio, Isaac Samuel', '2007-06-22', 7, 'https://www.gutenberg.org/ebooks/21905', 'en', 18780), +(58364, 'Heart Utterances at Various Periods of a Chequered Life', 'Gurney, Eliza Paul', '2008-05-25', 7, 'https://www.gutenberg.org/ebooks/25599', 'en', 18781), +(58365, 'Poems - First Series', 'Squire, John Collings, Sir', '2011-10-26', 16, 'https://www.gutenberg.org/ebooks/37860', 'en', 1594), +(58366, 'Government in the United States, National, State and Local', 'Garner, James Wilford', '2011-11-14', 34, 'https://www.gutenberg.org/ebooks/38014', 'en', 1720), +(58367, 'Select Poems of Sidney Lanier', 'Lanier, Sidney', '1998-03-01', 15, 'https://www.gutenberg.org/ebooks/1229', 'en', 350), +(58368, 'The One Hoss Shay\nWith its Companion Poems How the Old Horse Won the Bet &\nThe Broomstick Train', 'Holmes, Oliver Wendell', '2009-10-18', 18, 'https://www.gutenberg.org/ebooks/30279', 'en', 178), +(58369, 'Weh dem, der lügt\nLustspiel in fünf Aufzügen', 'Grillparzer, Franz', '2005-10-01', 25, 'https://www.gutenberg.org/ebooks/9044', 'de', 907), +(58370, 'The Little Grey House', 'Taggart, Marion Ames', '2015-02-26', 17, 'https://www.gutenberg.org/ebooks/48363', 'en', 18782), +(58371, 'Der Landprediger', 'Lenz, Jakob Michael Reinhold', '2004-11-01', 18, 'https://www.gutenberg.org/ebooks/6830', 'de', 55), +(58372, 'Prudence of the Parsonage', 'Hueston, Ethel', '2006-05-18', 27, 'https://www.gutenberg.org/ebooks/18413', 'en', 264), +(58373, 'A Mixed Proposal\nThe Lady of the Barge and Others, Part 9.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/12129', 'en', 1902), +(58374, 'Tableau historique et pittoresque de Paris depuis les Gaulois jusqu\'à nos jours (Volume 8/8)', 'Saint-Victor, J. B. de (Jacques-Benjamin)', '2013-05-07', 20, 'https://www.gutenberg.org/ebooks/42659', 'fr', 2972), +(58375, 'Under the Skylights', 'Fuller, Henry Blake', '2005-05-01', 10, 'https://www.gutenberg.org/ebooks/8196', 'en', 770), +(58376, 'The Survey of Cornwall\nAnd an epistle concerning the excellencies of the English tongue', 'Carew, Richard', '2006-02-01', 77, 'https://www.gutenberg.org/ebooks/9878', 'en', 18783), +(58377, 'Les Contemporains, 6ème Série\r\nÉtudes et Portraits Littéraires', 'Lemaître, Jules', '2009-03-09', 8, 'https://www.gutenberg.org/ebooks/28286', 'fr', 2650), +(58378, 'The White Devil', 'Webster, John', '2004-07-16', 195, 'https://www.gutenberg.org/ebooks/12915', 'en', 1298), +(58379, 'This One Problem', 'Pease, M. C.', '2009-07-08', 23, 'https://www.gutenberg.org/ebooks/29354', 'en', 179), +(58380, 'The Killer', 'White, Stewart Edward', '2005-08-24', 55, 'https://www.gutenberg.org/ebooks/16589', 'en', 315), +(58381, 'The Queen\'s Scarlet\nThe Adventures and Misadventures of Sir Richard Frayne', 'Fenn, George Manville', '2008-03-12', 6, 'https://www.gutenberg.org/ebooks/24813', 'en', 2224), +(58382, 'The Wanderer; or, Female Difficulties (Volume 2 of 5)', 'Burney, Fanny', '2011-09-15', 30, 'https://www.gutenberg.org/ebooks/37438', 'en', 2564), +(58383, 'The Golden Boys Rescued by Radio', 'Wyman, L. P. (Levi Parker)', '2019-01-01', 7, 'https://www.gutenberg.org/ebooks/58595', 'en', 323), +(58384, 'The Gist of Swedenborg', 'Swedenborg, Emanuel', '2005-05-05', 104, 'https://www.gutenberg.org/ebooks/15768', 'en', 18784), +(58385, 'Harper\'s Round Table, May 28, 1895', 'Various', '2010-06-25', 11, 'https://www.gutenberg.org/ebooks/32976', 'en', 668), +(58386, 'The Barbarians', 'Godwin, Tom', '2019-05-06', 82, 'https://www.gutenberg.org/ebooks/59447', 'en', 67), +(58387, 'The Works of Francis Maitland Balfour, Volume 2 (of 4)\r\nA Treatise on Comparative Embryology: Invertebrata', 'Balfour, Francis M. (Francis Maitland)', '2014-02-26', 15, 'https://www.gutenberg.org/ebooks/45018', 'en', 15471), +(58388, 'The United States Bill of Rights\r\nThe Ten Original Amendments to the Constitution of the United States', 'United States', '1972-12-01', 267, 'https://www.gutenberg.org/ebooks/2', 'en', 18785), +(58389, 'Ancient and Modern Ships, Part 1: Wooden Sailing Ships', 'Holmes, George Charles Vincent, Sir', '2010-07-06', 62, 'https://www.gutenberg.org/ebooks/33098', 'en', 18786), +(58390, 'The Theatrocrat: A Tragic Play of Church and Stage', 'Davidson, John', '2017-01-11', 17, 'https://www.gutenberg.org/ebooks/53941', 'en', 402), +(58391, 'Lord John in New York', 'Williamson, C. N. (Charles Norris)', '2012-01-02', 15, 'https://www.gutenberg.org/ebooks/38470', 'en', 6124), +(58392, 'Œuvres complètes de Gustave Flaubert, tome 4: L\'éducation sentimentale, v. 2', 'Flaubert, Gustave', '2016-08-25', 27, 'https://www.gutenberg.org/ebooks/52893', 'fr', 560), +(58393, 'Social Comptabilism\r\nThe Cheque and Clearing Service in the Austrian Postal Savings Bank. Proposed Law laid before the Chamber of Representatives of Belgium', 'Denis, Hector', '2014-05-30', 16, 'https://www.gutenberg.org/ebooks/45824', 'en', 18787), +(58394, 'The Ocean Wireless Boys and the Naval Code', 'Goldfrap, John Henry', '2008-10-05', 46, 'https://www.gutenberg.org/ebooks/26778', 'en', 196), +(58395, 'Laxdæla Saga\nTranslated from the Icelandic', NULL, '2006-02-20', 53, 'https://www.gutenberg.org/ebooks/17803', 'en', 4764), +(58396, 'The Hand of Ethelberta', 'Hardy, Thomas', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9420', 'en', 2004), +(58397, 'Gentlemen of the Jury: A Farce', 'Baker, George M. (George Melville)', '2015-04-15', 10, 'https://www.gutenberg.org/ebooks/48707', 'en', 907), +(58398, 'Gettysburg: Stories of the Red Harvest and the Aftermath', 'Singmaster, Elsie', '2017-03-14', 18, 'https://www.gutenberg.org/ebooks/54358', 'en', 8347), +(58399, 'We and the World: A Book for Boys. Part I', 'Ewing, Juliana Horatia Gatty', '2006-03-29', 20, 'https://www.gutenberg.org/ebooks/18077', 'en', 324), +(58400, 'The Drummer Boy', 'Trowbridge, J. T. (John Townsend)', '2006-12-03', 11, 'https://www.gutenberg.org/ebooks/19999', 'en', 491), +(58401, 'Desserts and Salads', 'Lemcke, Gesine', '2009-08-19', 46, 'https://www.gutenberg.org/ebooks/29730', 'en', 6493), +(58402, 'Monsieur, Madame, and Bébé — Complete', 'Droz, Gustave', '2004-10-30', 26, 'https://www.gutenberg.org/ebooks/3926', 'en', 1155), +(58403, 'On a Torn-Away World; Or, the Captives of the Great Earthquake', 'Rockwood, Roy', '2004-09-01', 14, 'https://www.gutenberg.org/ebooks/6468', 'en', 26), +(58404, 'Man and Superman: A Comedy and a Philosophy', 'Shaw, Bernard', '2006-03-22', 274, 'https://www.gutenberg.org/ebooks/3328', 'en', 2455), +(58405, 'The Inconstant', 'Farquhar, George', '2011-04-25', 19, 'https://www.gutenberg.org/ebooks/35961', 'en', 907), +(58406, 'History of Rationalism Embracing a Survey of the Present State of Protestant Theology', 'Hurst, J. F. (John Fletcher)', '2006-09-28', 26, 'https://www.gutenberg.org/ebooks/19397', 'en', 16590), +(58407, 'Contes merveilleux, Tome II', 'Andersen, H. C. (Hans Christian)', '2006-04-24', 45, 'https://www.gutenberg.org/ebooks/18245', 'fr', 18286), +(58408, 'Memories and Portraits', 'Stevenson, Robert Louis', '1995-12-01', 139, 'https://www.gutenberg.org/ebooks/381', 'en', 3163), +(58409, 'Dôr e Luz\n(Versos de um seminarista)', 'Silva, Acúrcio Correia da', '2008-12-11', 36, 'https://www.gutenberg.org/ebooks/27498', 'pt', 8), +(58410, 'The Botanic Garden\r\nA Poem in Two Parts. Part 1: the Economy of Vegetation', 'Darwin, Erasmus', '2006-01-01', 201, 'https://www.gutenberg.org/ebooks/9612', 'en', 18788), +(58411, 'Our Pirate Hoard\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 7, 'https://www.gutenberg.org/ebooks/23804', 'en', 770), +(58412, 'Spanish America, Its Romance, Reality and Future, Vol. 2 (of 2)', 'Enock, C. Reginald (Charles Reginald)', '2015-03-19', 7, 'https://www.gutenberg.org/ebooks/48535', 'en', 15610), +(58413, 'Topics on Tournaments', 'Moon, John W.', '2013-05-28', 33, 'https://www.gutenberg.org/ebooks/42833', 'en', 18789), +(58414, 'Little Masterpieces of Science: Explorers', NULL, '2009-07-24', 16, 'https://www.gutenberg.org/ebooks/29502', 'en', 7544), +(58415, '\"1812\" Napoleon I in Russia', 'Vereshchagin, Vasilïĭ Vasilʹevich', '2016-03-12', 69, 'https://www.gutenberg.org/ebooks/51418', 'en', 4415), +(58416, 'Blindfolded', 'Walcott, Earle Ashley', '2005-03-01', 25, 'https://www.gutenberg.org/ebooks/7788', 'en', 6391), +(58417, 'Kustaa II Aadolf ja hänen aikalaisensa I: Kuningas Jumalan armosta\nHistoriallis-romanttinen kuvaus', 'Stjernström, Louise', '2017-11-04', 10, 'https://www.gutenberg.org/ebooks/55884', 'fi', 2002), +(58418, 'Viipurin pamaus: Historiallinen romaani', 'Ivalo, Santeri', '2017-06-21', 6, 'https://www.gutenberg.org/ebooks/54956', 'fi', 98), +(58419, 'Quiet Talks on the Crowned Christ of Revelation', 'Gordon, S. D. (Samuel Dickey)', '2007-10-16', 41, 'https://www.gutenberg.org/ebooks/23038', 'en', 9623), +(58420, 'Elsie\'s Kith and Kin', 'Finley, Martha', '2004-12-27', 46, 'https://www.gutenberg.org/ebooks/14488', 'en', 195), +(58421, 'Legends, Tales and Poems', 'Bécquer, Gustavo Adolfo', '2004-01-01', 329, 'https://www.gutenberg.org/ebooks/10814', 'en', 188), +(58422, 'Index of the Project Gutenberg Works on Women\'s Suffrage\r\nFour volumes edited by Elizabeth Cady Stanton, Susan B. Anthony, and Matilda Joslyn Gage', NULL, '2019-06-04', 15, 'https://www.gutenberg.org/ebooks/59675', 'en', 7165), +(58423, 'Genius in Sunshine and Shadow', 'Ballou, Maturin M. (Maturin Murray)', '2012-09-14', 29, 'https://www.gutenberg.org/ebooks/40758', 'en', 18790), +(58424, 'The Diplomatic Correspondence of the American Revolution, Vol. 10', NULL, '2012-01-22', 14, 'https://www.gutenberg.org/ebooks/38642', 'en', 330), +(58425, 'Spalding\'s Official Baseball Guide - 1913', NULL, '2003-10-12', 11, 'https://www.gutenberg.org/ebooks/10028', 'en', 3377), +(58426, 'Won By the Sword : a tale of the Thirty Years\' War', 'Henty, G. A. (George Alfred)', '2004-01-01', 70, 'https://www.gutenberg.org/ebooks/4931', 'en', 18791), +(58427, 'O Marquez de Pombal\r\nLance d\'olhos sobre a sua sciencia; politica e systema de administração; ideias liberaes que o dominavam; plano e primeiras tentativas democraticas', 'Garcia, Manuel Emídio', '2010-05-15', 24, 'https://www.gutenberg.org/ebooks/32378', 'pt', 10984), +(58428, 'An American Four-in-Hand in Britain', 'Carnegie, Andrew', '2012-05-25', 31, 'https://www.gutenberg.org/ebooks/39790', 'en', 2364), +(58429, 'בית נכות ההלכות\r\nאו תורתן של ראשונים, חלק ראשון', NULL, '2013-09-16', 25, 'https://www.gutenberg.org/ebooks/43740', 'he', 18792), +(58430, 'Ghosts: A Domestic Tragedy in Three Acts', 'Ibsen, Henrik', '2001-01-01', 56, 'https://www.gutenberg.org/ebooks/2467', 'en', 13153), +(58431, 'Die Physiologie und Psychologie des Lachens und des Komischen.\r\nEin Beitrag zur experimentellen Psychologie für Naturforscher, Philosophen und gebildete Laien.', 'Hecker, Ewald', '2008-11-09', 94, 'https://www.gutenberg.org/ebooks/27205', 'de', 15187), +(58432, 'The German Classics of the Nineteenth and Twentieth Centuries, Volume 09\r\nFriedrich Hebbel and Otto Ludwig', NULL, '2004-07-26', 30, 'https://www.gutenberg.org/ebooks/13030', 'en', 4972), +(58433, 'Webster & Tourneur', 'Tourneur, Cyril', '2017-09-25', 13, 'https://www.gutenberg.org/ebooks/55625', 'en', 1790), +(58434, 'Parisians in the Country', 'Balzac, Honoré de', '2005-04-01', 19, 'https://www.gutenberg.org/ebooks/7929', 'en', 607), +(58435, 'Anthropology\nAs a Science and as a Branch of University Education in the United States', 'Brinton, Daniel G. (Daniel Garrison)', '2010-02-22', 14, 'https://www.gutenberg.org/ebooks/31360', 'en', 18793), +(58436, 'An Idyll of All Fools\' Day', 'Bacon, Josephine Daskam', '2013-05-11', 20, 'https://www.gutenberg.org/ebooks/42692', 'en', 637), +(58437, 'Origin of the \'Reorganized\' Church and the Question of Succession', 'Smith, Joseph Fielding', '2015-10-31', 8, 'https://www.gutenberg.org/ebooks/50357', 'en', 11811), +(58438, 'The Memorable Thoughts of Socrates', 'Xenophon', '2006-01-10', 151, 'https://www.gutenberg.org/ebooks/17490', 'en', 4235), +(58439, 'Encyclopaedia Britannica, 11th Edition, \"Bent, James\" to \"Bibirine\"\r\nVolume 3, Slice 6', 'Various', '2010-12-09', 29, 'https://www.gutenberg.org/ebooks/34612', 'en', 1081), +(58440, 'Giant Hours with Poet Preachers', 'Stidger, William L. (William Le Roy)', '2004-12-01', 8, 'https://www.gutenberg.org/ebooks/7115', 'en', 2398), +(58441, 'The Boy\'s Book of New Inventions', 'Maule, Harry E. (Harry Edward)', '2014-07-09', 27, 'https://www.gutenberg.org/ebooks/46232', 'en', 1739), +(58442, 'Der arme Spielmann', 'Grillparzer, Franz', '2005-09-01', 31, 'https://www.gutenberg.org/ebooks/8961', 'de', 6085), +(58443, '\"Imperialism\" and \"The Tracks of Our Forefathers\"', 'Adams, Charles Francis', '2005-08-17', 26, 'https://www.gutenberg.org/ebooks/16542', 'en', 14730), +(58444, 'With Cavalry in 1915\r\nThe British Trooper in the Trench Line, Through the Second Battle of Ypres', 'Coleman, Frederic', '2016-02-23', 9, 'https://www.gutenberg.org/ebooks/51285', 'en', 449), +(58445, 'History of the United States, Volume 5', 'Andrews, Elisha Benjamin', '2007-09-27', 17, 'https://www.gutenberg.org/ebooks/22777', 'en', 207), +(58446, 'Népdalok és mondák (1. kötet)', 'Erdélyi, János', '2012-06-06', 12, 'https://www.gutenberg.org/ebooks/39931', 'hu', 1645), +(58447, 'Famous Men of Ancient Times', 'Goodrich, Samuel G. (Samuel Griswold)', '2016-06-23', 118, 'https://www.gutenberg.org/ebooks/52400', 'en', 18794), +(58448, 'No Treason, Vol. VI.: The Constitution of No Authority', 'Spooner, Lysander', '2011-05-18', 33, 'https://www.gutenberg.org/ebooks/36145', 'en', 187), +(58449, 'Half a Rogue', 'MacGrath, Harold', '2003-12-01', 15, 'https://www.gutenberg.org/ebooks/4790', 'en', 61), +(58450, 'What Works: Schools Without Drugs', 'United States. Department of Education', '2011-08-15', 17, 'https://www.gutenberg.org/ebooks/37097', 'en', 18795), +(58451, 'Harry Heathcote of Gangoil: A Tale of Australian Bush-Life', 'Trollope, Anthony', '2004-05-01', 20, 'https://www.gutenberg.org/ebooks/5642', 'en', 3237), +(58452, 'Die Freigabe der Vernichtung lebensunwerten Lebens\nIhr Maß und ihre Form; Zweite Auflage', 'Binding, Karl', '2014-01-02', 36, 'https://www.gutenberg.org/ebooks/44565', 'de', 18796), +(58453, 'Landas na Tuntunin', 'Morante, José', '2004-11-30', 5, 'https://www.gutenberg.org/ebooks/14215', 'tl', 18797), +(58454, 'Tienhaarassa', 'Anonymous', '2006-12-04', 12, 'https://www.gutenberg.org/ebooks/20020', 'fi', 402), +(58455, 'South Africa and the Transvaal War, Vol. 5 (of 8)\r\nFrom the Disaster at Koorn Spruit to Lord Roberts\'s Entry into Pretoria', 'Creswicke, Louis', '2012-10-10', 9, 'https://www.gutenberg.org/ebooks/41017', 'en', 2724), +(58456, 'Milk for You and Me', 'Randell, Winifred', '2008-05-21', 15, 'https://www.gutenberg.org/ebooks/25552', 'en', 18798), +(58457, 'Contes à Jeannot', 'Girardin, Jules', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/11767', 'fr', 168), +(58458, 'Finger Prints', 'Galton, Francis', '2011-08-05', 22, 'https://www.gutenberg.org/ebooks/36979', 'en', 18799), +(58459, 'Life and Adventures of Frances Namon Sorcho\nThe Only Woman Deep Sea Diver in the World', 'Captain Louis Sorcho Great Deep Sea Diving Co.', '2018-05-16', 6, 'https://www.gutenberg.org/ebooks/57172', 'en', 18800), +(58460, 'Castilië en Andalusië\nDe Aarde en haar Volken, 1909', 'Dieulafoy, Jane', '2008-01-31', 6, 'https://www.gutenberg.org/ebooks/24480', 'nl', 18801), +(58461, 'Ruth: Kertomus tytöille', 'Anonymous', '2019-02-17', 9, 'https://www.gutenberg.org/ebooks/58906', 'fi', 1679), +(58462, 'Cyclopedia of Telephony and Telegraphy, Vol. 2\nA General Reference Work on Telephony, etc. etc.', 'American School of Correspondence', '2010-08-15', 31, 'https://www.gutenberg.org/ebooks/33437', 'en', 6843), +(58463, 'Mr. Poskitt\'s Nightcaps: Stories of a Yorkshire Farmer', 'Fletcher, J. S. (Joseph Smith)', '2014-05-29', 40, 'https://www.gutenberg.org/ebooks/45685', 'en', 409), +(58464, 'Dave Porter on Cave Island; Or, A Schoolboy\'s Mysterious Mission', 'Stratemeyer, Edward', '2011-06-13', 22, 'https://www.gutenberg.org/ebooks/36377', 'en', 550), +(58465, 'The Third Officer: A Present-day Pirate Story', 'Westerman, Percy F. (Percy Francis)', '2016-07-23', 19, 'https://www.gutenberg.org/ebooks/52632', 'en', 7815), +(58466, 'A Description of Greenland', 'Egede, Hans', '2018-11-18', 14, 'https://www.gutenberg.org/ebooks/58308', 'en', 14313), +(58467, 'Abydos\r\nDe Aarde en haar Volken, 1906', 'Amélineau, E. (Emile)', '2004-11-11', 21, 'https://www.gutenberg.org/ebooks/14027', 'nl', 18802), +(58468, 'Police Your Planet', 'Del Rey, Lester', '2006-12-29', 100, 'https://www.gutenberg.org/ebooks/20212', 'en', 26), +(58469, 'Joshua — Volume 4', 'Ebers, Georg', '2004-04-01', 13, 'https://www.gutenberg.org/ebooks/5470', 'en', 803), +(58470, 'Kertomuksia Suomen historiasta III\nEerikki XIV ja Juhana III', 'Krohn, Julius', '2014-01-26', 11, 'https://www.gutenberg.org/ebooks/44757', 'fi', 1578), +(58471, 'The Comedienne', 'Reymont, Władysław Stanisław', '2008-06-11', 35, 'https://www.gutenberg.org/ebooks/25760', 'en', 1316), +(58472, 'Kultur in Cartoons\nWith accompanying notes by well-known English writers', 'Raemaekers, Louis', '2018-01-02', 19, 'https://www.gutenberg.org/ebooks/56292', 'en', 2328), +(58473, 'Our Farm of Four Acres and the Money we Made by it', 'Coulton, Miss', '2004-03-01', 35, 'https://www.gutenberg.org/ebooks/11555', 'en', 2757), +(58474, 'The Bashful Lover (Novels of Paul de Kock Volume XIX)', 'Kock, Paul de', '2012-10-29', 12, 'https://www.gutenberg.org/ebooks/41225', 'en', 58), +(58475, 'The Girl Aviators and the Phantom Airship', 'Burnham, Margaret', '2010-09-01', 25, 'https://www.gutenberg.org/ebooks/33605', 'en', 1892), +(58476, 'Alabama Bound', 'McGuinn, Roger', '2003-12-01', 5, 'https://www.gutenberg.org/ebooks/10487', 'en', 3717), +(58477, 'Coffee and Chicory:\r\nTheir culture, chemical composition, preparation for market, and consumption, with simple tests for detecting adulteration, and practical hints for the producer and consumer', 'Simmonds, P. L. (Peter Lund)', '2018-06-16', 30, 'https://www.gutenberg.org/ebooks/57340', 'en', 9964), +(58478, 'Le Livre 010101, Tome 1 (1993-1998)', 'Lebert, Marie', '2008-10-26', 26, 'https://www.gutenberg.org/ebooks/27037', 'fr', 2047), +(58479, '\"Co. Aytch,\" Maury Grays, First Tennessee Regiment\r\nOr, A Side Show of the Big Show', 'Watkins, Samuel R. (Samuel Rush)', '2004-08-17', 154, 'https://www.gutenberg.org/ebooks/13202', 'en', 18803), +(58480, 'Youth, a Narrative', 'Conrad, Joseph', '2009-05-01', 10, 'https://www.gutenberg.org/ebooks/28843', 'en', 324), +(58481, 'A Commentary to Kant\'s \'Critique of Pure Reason\'', 'Smith, Norman Kemp', '2013-08-27', 66, 'https://www.gutenberg.org/ebooks/43572', 'en', 18804), +(58482, 'The Papers and Writings of Abraham Lincoln — Volume 3: The Lincoln-Douglas Debates', 'Lincoln, Abraham', '2004-09-30', 38, 'https://www.gutenberg.org/ebooks/2655', 'en', 11076), +(58483, 'Samlade Skrifter #28. Hemsöborna och Skärkarlsliv', 'Strindberg, August', '2009-09-25', 10, 'https://www.gutenberg.org/ebooks/30080', 'sv', 5198), +(58484, 'End as a World', 'Wallace, F. L. (Floyd L.)', '2016-01-18', 37, 'https://www.gutenberg.org/ebooks/50959', 'en', 3210), +(58485, 'Nature and Art', 'Inchbald, Mrs.', '2003-02-01', 29, 'https://www.gutenberg.org/ebooks/3787', 'en', 258), +(58486, 'Pleistocene Pocket Gophers From San Josecito Cave, Nuevo Leon, Mexico', 'Russell, Robert J.', '2010-02-01', 4, 'https://www.gutenberg.org/ebooks/31152', 'en', 18805), +(58487, 'The Boy Scouts on Belgian Battlefields', 'Goldfrap, John Henry', '2009-09-14', 18, 'https://www.gutenberg.org/ebooks/29991', 'en', 6589), +(58488, 'Two Centuries of New Milford Connecticut\r\nAn Account of the Bi-Centennial Celebration of the Founding of the Town Held June 15, 16, 17, and 18, 1907, With a Number of Historical Articles and Reminiscences', 'Various', '2015-05-25', 4, 'https://www.gutenberg.org/ebooks/49048', 'en', 18806), +(58489, 'Aventures extraordinaires d\'un savant russe; I. La lune', 'Le Faure, Georges', '2006-11-08', 15, 'https://www.gutenberg.org/ebooks/19738', 'fr', 623), +(58490, 'The Gentleman Who Vanished: A Psychological Phantasy', 'Hume, Fergus', '2017-08-23', 20, 'https://www.gutenberg.org/ebooks/55417', 'en', 3724), +(58491, 'Riya\'s Foundling', 'Budrys, Algis', '2010-11-23', 42, 'https://www.gutenberg.org/ebooks/34420', 'en', 179), +(58492, 'Through Forest and Stream: The Quest of the Quetzal', 'Fenn, George Manville', '2007-11-15', 13, 'https://www.gutenberg.org/ebooks/23497', 'en', 18807), +(58493, 'The Flying Machine Boys on Duty; Or, The Clue Above the Clouds', 'Walton, Frank', '2015-10-09', 7, 'https://www.gutenberg.org/ebooks/50165', 'en', 2279), +(58494, 'The Adventure of Two Dutch Dolls and a \'Golliwogg\'', 'Upton, Bertha', '2005-09-28', 48, 'https://www.gutenberg.org/ebooks/16770', 'en', 11239), +(58495, 'Chambers\'s Journal of Popular Literature, Science, and Art, No. 718\nSeptember 29, 1877', 'Various', '2015-09-04', 3, 'https://www.gutenberg.org/ebooks/49874', 'en', 18), +(58496, 'Warning from the Stars', 'Cocking, Ron', '2007-09-09', 44, 'https://www.gutenberg.org/ebooks/22545', 'en', 26), +(58497, '說苑, Volume 1-4', 'Liu, Xiang', '2005-01-01', 24, 'https://www.gutenberg.org/ebooks/7327', 'zh', 1682), +(58498, 'Cuentos ingenuos', 'Trigo, Felipe', '2014-06-16', 29, 'https://www.gutenberg.org/ebooks/46000', 'es', 1384), +(58499, 'Pygmies & Papuans: The Stone Age To-day in Dutch New Guinea', 'Wollaston, A. F. R. (Alexander Frederick Richmond)', '2016-10-27', 19, 'https://www.gutenberg.org/ebooks/53384', 'en', 18808), +(58500, 'Sketches in the House\r\nThe Story of a Memorable Session (1893)', 'O\'Connor, T. P. (Thomas Power)', '2004-12-24', 22, 'https://www.gutenberg.org/ebooks/14443', 'en', 18809), +(58501, 'Genesis', NULL, '2007-02-03', 27, 'https://www.gutenberg.org/ebooks/20676', 'he', 4202), +(58502, 'State of the Union Addresses', 'Monroe, James', '2004-02-01', 12, 'https://www.gutenberg.org/ebooks/5014', 'en', 1276), +(58503, 'Hesperothen; Notes from the West, Vol. 2 (of 2)\r\nA Record of a Ramble in the United States and Canada in the Spring and Summer of 1881', 'Russell, William Howard, Sir', '2013-12-01', 6, 'https://www.gutenberg.org/ebooks/44333', 'en', 1110), +(58504, 'The Haunted Homestead: A Novel', 'Southworth, Emma Dorothy Eliza Nevitte', '2011-07-12', 15, 'https://www.gutenberg.org/ebooks/36713', 'en', 61), +(58505, 'A Woman Named Smith', 'Oemler, Marie Conway', '2005-04-08', 188, 'https://www.gutenberg.org/ebooks/15591', 'en', 48), +(58506, 'The Lead Pencil Manufactory of A. W. Faber at Stein near Nürnberg, Bavaria\r\nAn Historical Sketch', 'Faber-Castell (Firm)', '2016-06-07', 22, 'https://www.gutenberg.org/ebooks/52256', 'en', 18810), +(58507, 'Bindle: Some Chapters in the Life of Joseph Bindle', 'Jenkins, Herbert George', '2010-07-26', 25, 'https://www.gutenberg.org/ebooks/33261', 'en', 6434), +(58508, 'The Turnstile', 'Mason, A. E. W. (Alfred Edward Woodley)', '2012-01-27', 61, 'https://www.gutenberg.org/ebooks/38689', 'en', 61), +(58509, 'The Rubicon', 'Benson, E. F. (Edward Frederic)', '2012-09-19', 13, 'https://www.gutenberg.org/ebooks/40793', 'en', 18811), +(58510, 'A Cyclopaedia of Canadian Biography: Being Chiefly Men of the Time\r\nA Collection of Persons Distinguished in Professional and Political Life, Leaders in the Commerce and Industry of Canada, and Successful Pioneers', NULL, '2018-08-18', 10, 'https://www.gutenberg.org/ebooks/57724', 'en', 18812), +(58511, 'In the Pecos Country', 'Ellis, Edward Sylvester', '2004-06-01', 8, 'https://www.gutenberg.org/ebooks/5828', 'en', 2046), +(58512, 'The Shadow On The Dial, and Other Essays\n1909', 'Bierce, Ambrose', '2008-05-02', 61, 'https://www.gutenberg.org/ebooks/25304', 'en', 20), +(58513, 'Pierre et Jean', 'Maupassant, Guy de', '2004-02-01', 41, 'https://www.gutenberg.org/ebooks/11131', 'fr', 1380), +(58514, 'Just Sixteen.', 'Coolidge, Susan', '2012-12-17', 22, 'https://www.gutenberg.org/ebooks/41641', 'en', 470), +(58515, 'Pan Tadeusz\r\nCzyli Ostatni Zajazd na Litwie. Historja Szlachecka z r. 1811 i 1812 we Dwunastu Księgach Wierszem', 'Mickiewicz, Adam', '2010-03-07', 109, 'https://www.gutenberg.org/ebooks/31536', 'pl', 18813), +(58516, 'The Trial of Aaron Burr', 'Brady, Joseph P. (Joseph Plunkett)', '2017-07-08', 6, 'https://www.gutenberg.org/ebooks/55073', 'en', 9491), +(58517, 'Master and Man', 'Tolstoy, Leo, graf', '2008-09-01', 8, 'https://www.gutenberg.org/ebooks/26581', 'en', 974), +(58518, 'Colorado Jim', 'Goodchild, George', '2008-12-08', 9, 'https://www.gutenberg.org/ebooks/27453', 'en', 4264), +(58519, 'A Study of Fairy Tales', 'Kready, Laura Fry', '2004-10-07', 19, 'https://www.gutenberg.org/ebooks/13666', 'en', 8386), +(58520, 'Encyclopaedia Britannica, 11th Edition, \"Dyer, Sir Edward\" to \"Echidna\"\r\nVolume 8, Slice 9', 'Various', '2011-01-08', 34, 'https://www.gutenberg.org/ebooks/34878', 'en', 1081), +(58521, 'Lectures on the Philosophy of the Human Mind (Vol. 1 of 3)', 'Brown, Thomas', '2013-07-07', 21, 'https://www.gutenberg.org/ebooks/43116', 'en', 779), +(58522, 'All Roads Lead to Calvary', 'Jerome, Jerome K. (Jerome Klapka)', '2000-06-01', 48, 'https://www.gutenberg.org/ebooks/2231', 'en', 18814), +(58523, 'Lukemisia lapsille 2', 'Topelius, Zacharias', '2005-07-16', 43, 'https://www.gutenberg.org/ebooks/16314', 'fi', 1007), +(58524, 'Olive: A Novel', 'Craik, Dinah Maria Mulock', '2007-07-23', 36, 'https://www.gutenberg.org/ebooks/22121', 'en', 378), +(58525, 'Gwen Wynn: A Romance of the Wye', 'Reid, Mayne', '2011-02-07', 38, 'https://www.gutenberg.org/ebooks/35196', 'en', 1313), +(58526, 'The Parisians — Volume 07', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 3, 'https://www.gutenberg.org/ebooks/7743', 'en', 137), +(58527, 'The Little Cryptogram\r\nA Literal Application to the Play of Hamlet of the Cipher System of Mr. Ignatius Donnelly.', 'Pyle, Joseph Gilpin', '2014-08-01', 41, 'https://www.gutenberg.org/ebooks/46464', 'en', 18815), +(58528, 'Bee Hunting: A Book of Valuable Information for Bee Hunters\r\nTells How to Line Bees to Trees, Etc.', 'Lockard, John Ready', '2010-10-08', 30, 'https://www.gutenberg.org/ebooks/34044', 'en', 4644), +(58529, 'Discours Civiques de Danton', 'Danton, Georges Jacques', '2004-10-01', 40, 'https://www.gutenberg.org/ebooks/6691', 'fr', 1536), +(58530, 'The Mediæval Hospitals of England', 'Clay, Rotha Mary', '2015-11-19', 15, 'https://www.gutenberg.org/ebooks/50501', 'en', 18816), +(58531, 'The Chautauquan, Vol. 05, November 1884, No. 2', 'Chautauqua Institution', '2017-08-01', 4, 'https://www.gutenberg.org/ebooks/55241', 'en', 1453), +(58532, 'Satan', 'Chafer, Lewis Sperry', '2004-06-01', 65, 'https://www.gutenberg.org/ebooks/12586', 'en', 5763), +(58533, 'In Those Days: The Story of an Old Man', 'Steinberg, Judah', '2005-07-01', 10, 'https://www.gutenberg.org/ebooks/8539', 'en', 2707), +(58534, 'Type Cases and Composing-room Furniture\r\nA Primer of Information About Type Cases, Work Stands, Cabinets, Case Racks, Galley Racks, Standing Galleys, &c.', 'Stewart, A. A. (Alexander A.)', '2010-03-20', 68, 'https://www.gutenberg.org/ebooks/31704', 'en', 18817), +(58535, 'Csongrádmegyei gyüjtés (Népköltési gyüjtemény 2. kötet)', 'Török, Károly', '2013-07-27', 6, 'https://www.gutenberg.org/ebooks/43324', 'hu', 1645), +(58536, 'Spirits in Bondage: A Cycle of Lyrics', 'Lewis, C. S. (Clive Staples)', '1999-12-01', 200, 'https://www.gutenberg.org/ebooks/2003', 'en', 18818), +(58537, 'Master of the Vineyard', 'Reed, Myrtle', '2008-12-30', 24, 'https://www.gutenberg.org/ebooks/27661', 'en', 109), +(58538, 'Aylwin', 'Watts-Dunton, Theodore', '2004-09-14', 21, 'https://www.gutenberg.org/ebooks/13454', 'en', 61), +(58539, 'Prétextes: Réflexions sur quelques points de littérature et de morale', 'Gide, André', '2017-03-20', 27, 'https://www.gutenberg.org/ebooks/54393', 'fr', 1765), +(58540, 'Confidence', 'James, Henry', '2006-03-15', 58, 'https://www.gutenberg.org/ebooks/178', 'en', 2035), +(58541, 'To the Front: A Sequel to Cadet Days', 'King, Charles', '2006-11-28', 26, 'https://www.gutenberg.org/ebooks/19952', 'en', 1357), +(58542, 'Widger\'s Quotes and Images from Zilah by Jules Claretie\r\nThe French Immortals: Quotes And Images', 'Claretie, Jules', '2009-07-13', 3, 'https://www.gutenberg.org/ebooks/7571', 'en', 2391), +(58543, 'The Ghost of Mystery Airport', 'Powell, Van', '2014-08-22', 20, 'https://www.gutenberg.org/ebooks/46656', 'en', 531), +(58544, 'English Satires', NULL, '2005-06-24', 43, 'https://www.gutenberg.org/ebooks/16126', 'en', 1971), +(58545, 'Punch, or the London Charivari, Volume 150, February 2, 1916', 'Various', '2007-08-14', 7, 'https://www.gutenberg.org/ebooks/22313', 'en', 134), +(58546, 'Phoebe, Junior', 'Oliphant, Mrs. (Margaret)', '2009-04-28', 29, 'https://www.gutenberg.org/ebooks/28629', 'en', 378), +(58547, 'Wij en ons ezeltje', 'Le Feuvre, Amy', '2015-12-20', 17, 'https://www.gutenberg.org/ebooks/50733', 'nl', 1731), +(58548, 'Sí sé por qué: Novela', 'Trigo, Felipe', '2014-12-26', 10, 'https://www.gutenberg.org/ebooks/47784', 'es', 1384), +(58549, 'A Vista Alegre: apontamentos para a sua historia', 'Gomes, Marques', '2010-11-11', 18, 'https://www.gutenberg.org/ebooks/34276', 'pt', 18819); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(58550, 'The Voyage of the Beagle', 'Darwin, Charles', '1997-06-01', 660, 'https://www.gutenberg.org/ebooks/944', 'en', 9436), +(58551, 'The New York Times Current History: the European War, February, 1915', 'Various', '2006-07-20', 25, 'https://www.gutenberg.org/ebooks/18880', 'en', 335), +(58552, 'Life and Letters of Thomas Henry Huxley — Volume 2', 'Huxley, Thomas Henry', '2004-03-01', 22, 'https://www.gutenberg.org/ebooks/5226', 'en', 16643), +(58553, 'The Holy Roman Empire', 'Bryce, James Bryce, Viscount', '2013-11-04', 54, 'https://www.gutenberg.org/ebooks/44101', 'en', 18820), +(58554, 'Dorothy Vernon of Haddon Hall', 'Major, Charles', '2005-01-11', 29, 'https://www.gutenberg.org/ebooks/14671', 'en', 98), +(58555, 'The Knickerbocker, or New-York Monthly Magazine, March 1844\r\nVolume 23, Number 3', 'Various', '2007-01-25', 9, 'https://www.gutenberg.org/ebooks/20444', 'en', 18), +(58556, 'The American Architect and Building News, Vol. 27, Jan-Mar, 1890', 'Various', '2007-05-24', 18, 'https://www.gutenberg.org/ebooks/21596', 'en', 2140), +(58557, 'Literatura Mondo, numero 3, 1922 Decembro', NULL, '2016-05-14', 4, 'https://www.gutenberg.org/ebooks/52064', 'eo', 18821), +(58558, 'Pietro Vannucci, called Perugino', 'Williamson, George Charles', '2011-06-25', 20, 'https://www.gutenberg.org/ebooks/36521', 'en', 6983), +(58559, 'Die Pharisäer\nEin Beitrag zum leichern Verstehen der Evangelien und zur Selbstprüfung', 'Wirth, Michael', '2018-07-15', 9, 'https://www.gutenberg.org/ebooks/57516', 'de', 15417), +(58560, 'The Secret of the Night', 'Leroux, Gaston', '1999-03-01', 79, 'https://www.gutenberg.org/ebooks/1686', 'en', 128), +(58561, 'Camping & Tramping with Roosevelt', 'Burroughs, John', '2010-07-02', 27, 'https://www.gutenberg.org/ebooks/33053', 'en', 4594), +(58562, 'Vita e avventure di Riccardo Joanna: romanzo', 'Serao, Matilde', '2012-11-24', 8, 'https://www.gutenberg.org/ebooks/41473', 'it', 1544), +(58563, 'The Cholera Gazette, Vol. I. No. 4. Wednesday, August 1st, 1832.', 'Various', '2016-08-20', 4, 'https://www.gutenberg.org/ebooks/52858', 'en', 18364), +(58564, 'Do Unto Others', 'Clifton, Mark', '2010-04-29', 50, 'https://www.gutenberg.org/ebooks/32181', 'en', 273), +(58565, 'The Adhesive Postage Stamp', 'Chalmers, Patrick', '2012-04-29', 10, 'https://www.gutenberg.org/ebooks/39569', 'en', 952), +(58566, 'The Pomp of Yesterday', 'Hocking, Joseph', '2008-04-22', 19, 'https://www.gutenberg.org/ebooks/25136', 'en', 6707), +(58567, 'Vain Fortune: A Novel', 'Moore, George', '2004-06-01', 35, 'https://www.gutenberg.org/ebooks/11303', 'en', 348), +(58568, 'Wastralls: A Novel', 'Dawson Scott, C. A. (Catharine Amy)', '2016-10-26', 56, 'https://www.gutenberg.org/ebooks/53370', 'en', 166), +(58569, 'The Gun Runners', 'Williams, Ralph', '2019-01-31', 23, 'https://www.gutenberg.org/ebooks/58798', 'en', 2229), +(58570, 'Northanger Abbey', 'Austen, Jane', '2007-02-03', 26, 'https://www.gutenberg.org/ebooks/20682', 'en', 18822), +(58571, 'Victor Hugo: His Life and Work', 'Smith, George Barnett', '2011-10-05', 12, 'https://www.gutenberg.org/ebooks/37635', 'en', 5643), +(58572, 'Storia della decadenza e rovina dell\'impero romano, volume 01', 'Gibbon, Edward', '2014-03-26', 118, 'https://www.gutenberg.org/ebooks/45215', 'it', 1292), +(58573, 'Diary of Samuel Pepys — Volume 14: January/February 1661-62', 'Pepys, Samuel', '2004-11-29', 13, 'https://www.gutenberg.org/ebooks/4132', 'en', 1231), +(58574, 'Martin Rattler', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 27, 'https://www.gutenberg.org/ebooks/21750', 'en', 4548), +(58575, 'Sir John Constantine\r\nMemoirs of His Adventures At Home and Abroad and Particularly in the Island of Corsica: Beginning with the Year 1756', 'Quiller-Couch, Arthur', '2005-04-06', 43, 'https://www.gutenberg.org/ebooks/15565', 'en', 8660), +(58576, 'Encyclopaedia Britannica, 11th Edition, \"Celtes, Konrad\" to \"Ceramics\"\r\nVolume 5, Slice 6', 'Various', '2010-07-30', 68, 'https://www.gutenberg.org/ebooks/33295', 'en', 1081), +(58577, 'Woman and Labour', 'Schreiner, Olive', '1998-08-01', 66, 'https://www.gutenberg.org/ebooks/1440', 'en', 11731), +(58578, 'Old Plantation Days: Being Recollections of Southern Life Before the Civil War', 'De Saussure, N. B. (Nancy Bostick)', '2012-09-15', 23, 'https://www.gutenberg.org/ebooks/40767', 'en', 12205), +(58579, 'Punchinello, Volume 1, No. 23, September 3, 1870', 'Various', '2003-11-01', 17, 'https://www.gutenberg.org/ebooks/10017', 'en', 372), +(58580, 'The Story of Eclipses', 'Chambers, George F. (George Frederick)', '2008-01-10', 65, 'https://www.gutenberg.org/ebooks/24222', 'en', 18823), +(58581, 'Frank Hunter\'s Peril', 'Alger, Horatio, Jr.', '2018-02-19', 18, 'https://www.gutenberg.org/ebooks/56602', 'en', 1889), +(58582, 'Time Fuze', 'Garrett, Randall', '2010-05-12', 211, 'https://www.gutenberg.org/ebooks/32347', 'en', 26), +(58583, 'Now It Can Be Told', 'Gibbs, Philip', '2002-07-01', 183, 'https://www.gutenberg.org/ebooks/3317', 'en', 6554), +(58584, 'The Rocky Mountain Wonderland', 'Mills, Enos A.', '2013-02-06', 19, 'https://www.gutenberg.org/ebooks/42030', 'en', 9483), +(58585, 'An Autobiography of Buffalo Bill (Colonel W. F. Cody)', 'Buffalo Bill', '2004-06-25', 54, 'https://www.gutenberg.org/ebooks/12740', 'en', 18824), +(58586, 'Historical Record of the Forty-sixth or South Devonshire Regiment of Foot\r\nContaining an Account of the Formation of the Regiment in 1741 and of Its Subsequent Services to 1851', 'Cannon, Richard', '2017-07-10', 6, 'https://www.gutenberg.org/ebooks/55087', 'en', 18825), +(58587, 'Selected Lullabies', 'Field, Eugene', '2008-09-01', 7, 'https://www.gutenberg.org/ebooks/26575', 'en', 859), +(58588, 'The Irish Penny Journal, Vol. 1 No. 11, September 12, 1840', 'Various', '2017-02-12', 5, 'https://www.gutenberg.org/ebooks/54155', 'en', 81), +(58589, 'Hyperbolic Functions', 'McMahon, James', '2004-10-10', 47, 'https://www.gutenberg.org/ebooks/13692', 'en', 18826), +(58590, 'Christology of the Old Testament: And a Commentary on the Messianic Predictions, Vol. 1', 'Hengstenberg, Ernst Wilhelm', '2009-11-06', 19, 'https://www.gutenberg.org/ebooks/30410', 'en', 13442), +(58591, 'Glorious Deeds of Australasians in the Great War', 'Buley, E. C. (Ernest Charles)', '2016-03-12', 8, 'https://www.gutenberg.org/ebooks/51427', 'en', 1074), +(58592, 'Gullible\'s Travels, Etc.', 'Lardner, Ring', '2011-02-04', 45, 'https://www.gutenberg.org/ebooks/35162', 'en', 500), +(58593, 'L\'Illustration, No. 1586, 19 Juillet 1873', 'Various', '2014-08-03', 6, 'https://www.gutenberg.org/ebooks/46490', 'fr', 150), +(58594, 'Mire megvénülünk (2. kötet)', 'Jókai, Mór', '2014-12-05', 9, 'https://www.gutenberg.org/ebooks/47542', 'hu', 8904), +(58595, 'The United States of America, Part 1: 1783-1830', 'Sparks, Edwin Erle', '2004-10-01', 8, 'https://www.gutenberg.org/ebooks/6665', 'en', 207), +(58596, 'Sound', 'Tyndall, John', '2017-06-23', 20, 'https://www.gutenberg.org/ebooks/54969', 'en', 18827), +(58597, 'The Village Convict\nFirst published in the \"Century Magazine\"', 'Chaplin, Heman White', '2007-10-12', 15, 'https://www.gutenberg.org/ebooks/23007', 'en', 13), +(58598, 'Antiquités d\'Herculanum, Tome II.\r\nPeintures', 'Piroli, Tommaso', '2005-12-05', 12, 'https://www.gutenberg.org/ebooks/17232', 'fr', 10954), +(58599, 'The World\'s Greatest Books — Volume 10 — Lives and Letters', NULL, '2004-06-01', 106, 'https://www.gutenberg.org/ebooks/12572', 'en', 122), +(58600, 'Reminiscences of two years with the colored troops\r\nPersonal Narratives of events in the War of the Rebellion, being papers read before the Rhode Island Soldiers and Sailors Historical Society. No. 7, Second Series', 'Addeman, Joshua M. (Joshua Melancthon)', '2008-10-01', 22, 'https://www.gutenberg.org/ebooks/26747', 'en', 18828), +(58601, 'The Complete Essays of Charles Dudley Warner', 'Warner, Charles Dudley', '2004-10-11', 20, 'https://www.gutenberg.org/ebooks/3125', 'en', 20), +(58602, 'Under the Red Crescent\r\nAdventures of an English Surgeon with the Turkish Army at Plevna and Erzeroum 1877-1878', 'Ryan, Charles S. (Charles Snodgrass)', '2013-02-25', 19, 'https://www.gutenberg.org/ebooks/42202', 'en', 18829), +(58603, 'Wermlänningarne\r\nSorglustigt tal- sång- och dansspel i två afdelningar och sex indelningar', 'Dahlgren, Fredrik August', '2015-04-19', 9, 'https://www.gutenberg.org/ebooks/48738', 'sv', 8235), +(58604, 'The Unknown Quantity: A Book of Romance and Some Half-Told Tales', 'Van Dyke, Henry', '2009-12-07', 17, 'https://www.gutenberg.org/ebooks/30622', 'en', 179), +(58605, 'History of the Reformation in Europe in the time of Calvin. Vol. 2 (of 8)', 'Merle d\'Aubigné, J. H. (Jean Henri)', '2019-08-23', 0, 'https://www.gutenberg.org/ebooks/60152', 'en', 827), +(58606, 'La cuerda del ahorcado\nÚltimas aventuras de Rocambole: I El Loco de Bedlam', 'Ponson du Terrail', '2009-01-03', 23, 'https://www.gutenberg.org/ebooks/27695', 'es', 61), +(58607, 'A Blundering Boy: A Humorous Story', 'Munro, Bruce Weston', '2017-03-15', 5, 'https://www.gutenberg.org/ebooks/54367', 'en', 3210), +(58608, 'Football Days\nMemories of the Game and of the Men behind the Ball', 'Edwards, William H. (William Hanford)', '2006-03-25', 37, 'https://www.gutenberg.org/ebooks/18048', 'en', 3471), +(58609, 'Widger\'s Quotes and Images from A Woodland Queen by André Theuriet\r\nThe French Immortals: Quotes and Images', 'Theuriet, André', '2009-07-13', 27, 'https://www.gutenberg.org/ebooks/7585', 'en', 2391), +(58610, 'Mysteries of the Rosie Cross\nOr, the History of that Curious Sect of the Middle Ages, Known as the Rosicrucians; with Examples of their Pretensions and Claims as Set Forth in the Writings of Their Leaders and Disciples', 'Anonymous', '2011-02-21', 51, 'https://www.gutenberg.org/ebooks/35350', 'en', 5413), +(58611, 'A Matter of Protocol', 'Sharkey, Jack', '2016-04-01', 31, 'https://www.gutenberg.org/ebooks/51615', 'en', 26), +(58612, 'The Red Lily — Volume 01', 'France, Anatole', '2003-04-01', 9, 'https://www.gutenberg.org/ebooks/3919', 'en', 58), +(58613, 'Notes and Queries, Number 197, August 6, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-29', 11, 'https://www.gutenberg.org/ebooks/23235', 'en', 105), +(58614, 'Of the Orthographie and Congruitie of the Britan Tongue\nA Treates, noe shorter than necessarie, for the Schooles', 'Hume, Alexander, schoolmaster', '2005-11-04', 27, 'https://www.gutenberg.org/ebooks/17000', 'en', 11050), +(58615, 'The Saturday Magazine, No. 65, July 6th, 1833', 'Various', '2014-12-24', 23, 'https://www.gutenberg.org/ebooks/47770', 'en', 10335), +(58616, 'The Diary and Letters of Madame D\'Arblay — Volume 3', 'Burney, Fanny', '2004-07-01', 14, 'https://www.gutenberg.org/ebooks/6457', 'en', 18830), +(58617, 'The Boy With the U. S. Foresters', 'Rolt-Wheeler, Francis', '2006-07-19', 13, 'https://www.gutenberg.org/ebooks/18874', 'en', 18831), +(58618, 'Jupiter Lights', 'Woolson, Constance Fenimore', '2010-11-11', 24, 'https://www.gutenberg.org/ebooks/34282', 'en', 61), +(58619, 'William Blake: A Study of His Life and Art Work', 'Langridge, Irene', '2011-09-12', 35, 'https://www.gutenberg.org/ebooks/37407', 'en', 16981), +(58620, 'The Philippine Islands, 1493-1898 — Volume 11 of 55 \r\n1599-1602\r\nExplorations by Early Navigators, Descriptions of the Islands and Their Peoples, Their History and Records of the Catholic Missions, as Related in Contemporaneous Books and Manuscripts, Showing the Political, Economic, Commercial and Religious Conditions of Those Islands from Their Earliest Relations with European Nations to the Close of the Nineteenth Century', NULL, '2005-01-13', 66, 'https://www.gutenberg.org/ebooks/14685', 'en', 7466), +(58621, 'The Men of the Nineties', 'Muddiman, Bernard', '2016-09-25', 8, 'https://www.gutenberg.org/ebooks/53142', 'en', 12243), +(58622, 'The Gulf and Inland Waters\nThe Navy in the Civil War. Volume 3.', 'Mahan, A. T. (Alfred Thayer)', '2007-05-22', 63, 'https://www.gutenberg.org/ebooks/21562', 'en', 36), +(58623, 'Man a Machine', 'La Mettrie, Julien Offray de', '2016-05-16', 36, 'https://www.gutenberg.org/ebooks/52090', 'en', 16487), +(58624, 'Consideraciones Sobre el Origen del Nombre de los Números en Tagalog', 'Pardo de Tavera, T. H. (Trinidad Hermenegildo)', '2005-05-03', 26, 'https://www.gutenberg.org/ebooks/15757', 'es', 18832), +(58625, 'The American Country Girl', 'Crow, Martha Foote', '2010-06-23', 13, 'https://www.gutenberg.org/ebooks/32949', 'en', 18833), +(58626, 'The Adventures of Dr. Thorndyke\n(The Singing Bone)', 'Freeman, R. Austin (Richard Austin)', '2019-05-11', 140, 'https://www.gutenberg.org/ebooks/59478', 'en', 2383), +(58627, 'Chaucer\'s Works, Volume 3 (of 7) — The House of Fame; The Legend of Good Women; The Treatise on the Astrolabe; The Sources of the Canterbury Tales', 'Chaucer, Geoffrey', '2014-02-27', 42, 'https://www.gutenberg.org/ebooks/45027', 'en', 4610), +(58628, 'Ulysses', 'Joyce, James', '2003-07-01', 8109, 'https://www.gutenberg.org/ebooks/4300', 'en', 378), +(58629, 'Their Crimes', NULL, '2003-11-01', 24, 'https://www.gutenberg.org/ebooks/10225', 'en', 2936), +(58630, 'The Gods are Athirst', 'France, Anatole', '2007-12-24', 62, 'https://www.gutenberg.org/ebooks/24010', 'en', 248), +(58631, 'Gorgias', 'Plato', '1999-03-01', 383, 'https://www.gutenberg.org/ebooks/1672', 'en', 5325), +(58632, 'No Man\'s Island', 'Strang, Herbert', '2012-08-21', 87, 'https://www.gutenberg.org/ebooks/40555', 'en', 1655), +(58633, 'Ian Hamilton\'s March', 'Churchill, Winston', '2012-11-17', 303, 'https://www.gutenberg.org/ebooks/41487', 'en', 1956), +(58634, 'Preliminary Survey of a Paleocene Faunule from the Angels Peak Area, New Mexico', 'Wilson, Robert W. (Robert Warren)', '2010-04-29', 6, 'https://www.gutenberg.org/ebooks/32175', 'en', 18834), +(58635, 'The Race of the Swift', 'Litsey, Edwin Carlile', '2018-01-25', 10, 'https://www.gutenberg.org/ebooks/56430', 'en', 4589), +(58636, 'Under the Maples', 'Burroughs, John', '2009-10-13', 63, 'https://www.gutenberg.org/ebooks/30246', 'en', 1216), +(58637, 'The Adventures of Paddy the Beaver', 'Burgess, Thornton W. (Thornton Waldo)', '2001-02-01', 50, 'https://www.gutenberg.org/ebooks/2493', 'en', 5662), +(58638, 'Things to be Remembered in Daily Life\r\nWith Personal Experiences and Recollections', 'Timbs, John', '2017-05-11', 30, 'https://www.gutenberg.org/ebooks/54703', 'en', 1081), +(58639, 'The Hunting of the Snark: An Agony in Eight Fits', 'Carroll, Lewis', '2008-06-25', 493, 'https://www.gutenberg.org/ebooks/13', 'en', 986), +(58640, 'Struwwelpeter: Merry Stories and Funny Pictures', 'Hoffmann, Heinrich', '2004-04-01', 784, 'https://www.gutenberg.org/ebooks/12116', 'en', 1817), +(58641, 'The Suffrage Cook Book', NULL, '2008-08-15', 347, 'https://www.gutenberg.org/ebooks/26323', 'en', 3357), +(58642, 'A Week\'s Tramp in Dickens-Land\r\nTogether with Personal Reminiscences of the \'Inimitable Boz\' Therein Collected', 'Hughes, William R. (William Richard)', '2010-02-25', 15, 'https://www.gutenberg.org/ebooks/31394', 'en', 4393), +(58643, 'What to Do? Thoughts Evoked By the Census of Moscow', 'Tolstoy, Leo, graf', '2002-11-01', 58, 'https://www.gutenberg.org/ebooks/3541', 'en', 3120), +(58644, 'Across Patagonia', 'Dixie, Florence, Lady', '2013-05-08', 41, 'https://www.gutenberg.org/ebooks/42666', 'en', 3639), +(58645, 'Test Rocket!', 'Douglas, Jack', '2007-11-28', 56, 'https://www.gutenberg.org/ebooks/23651', 'en', 26), +(58646, 'Great Singers, First Series\nFaustina Bordoni To Henrietta Sontag', 'Ferris, George T. (George Titus)', '2006-01-04', 15, 'https://www.gutenberg.org/ebooks/17464', 'en', 18161), +(58647, 'Bacon is Shake-Speare\r\nTogether with a Reprint of Bacon\'s Promus of Formularies and Elegancies', 'Durning-Lawrence, Edwin, Sir', '2006-02-01', 29, 'https://www.gutenberg.org/ebooks/9847', 'en', 2784), +(58648, 'The Philosophy of Natural Theology\nAn Essay in confutation of the scepticism of the present day', 'Jackson, William', '2014-11-08', 32, 'https://www.gutenberg.org/ebooks/47314', 'en', 18253), +(58649, 'Petty Troubles of Married Life, First Part', 'Balzac, Honoré de', '2004-07-01', 12, 'https://www.gutenberg.org/ebooks/6033', 'en', 1451), +(58650, 'Punch, or The London Charivari, Volume 105, July 22nd, 1893', 'Various', '2011-03-31', 11, 'https://www.gutenberg.org/ebooks/35734', 'en', 134), +(58651, 'The History of the Highland Clearances\nSecond Edition, Altered and Revised', 'Mackenzie, Alexander', '2016-02-21', 35, 'https://www.gutenberg.org/ebooks/51271', 'en', 18835), +(58652, 'What Katy Did Next', 'Coolidge, Susan', '2005-09-01', 144, 'https://www.gutenberg.org/ebooks/8995', 'en', 51), +(58653, 'The New England Magazine Volume 1, No. 3, March, 1886\nBay State Monthly Volume 4, No. 3, March, 1886', 'Various', '2007-09-27', 10, 'https://www.gutenberg.org/ebooks/22783', 'en', 1593), +(58654, 'Bob Strong\'s Holidays\nAdrift in the Channel', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 5, 'https://www.gutenberg.org/ebooks/21106', 'en', 31), +(58655, 'The Confessions of Nat Turner\r\nThe Leader of the Late Insurrections in Southampton, Va. As Fully and Voluntarily Made to Thomas R. Gray, in the Prison Where He Was Confined, and Acknowledged by Him to be Such when Read Before the Court of Southampton; With the Certificate, Under Seal of the Court Convened at Jerusalem, Nov. 5, 1831, For His Trial. Also, an Authentic Account of the Whole Insurrection.', 'Turner, Nat', '2005-03-12', 77, 'https://www.gutenberg.org/ebooks/15333', 'en', 18836), +(58656, 'Jack the Young Explorer: A Boy\'s Experiances in the Unknown Northwest', 'Grinnell, George Bird', '2014-04-20', 3, 'https://www.gutenberg.org/ebooks/45443', 'en', 17059), +(58657, 'A Family Man : in three acts', 'Galsworthy, John', '2004-09-26', 25, 'https://www.gutenberg.org/ebooks/4764', 'en', 1088), +(58658, 'The Boy Traders; Or, The Sportsman\'s Club Among the Boers', 'Castlemon, Harry', '2018-03-29', 16, 'https://www.gutenberg.org/ebooks/56868', 'en', 18837), +(58659, 'George Morland: Sixteen examples in colour of the artist\'s work', 'Cuming, E. D. (Edward William Dirom)', '2011-08-13', 5, 'https://www.gutenberg.org/ebooks/37063', 'en', 18838), +(58660, 'The Knickerbocker, Vol. 22, No. 6, December 1843', 'Various', '2014-01-05', 13, 'https://www.gutenberg.org/ebooks/44591', 'en', 18), +(58661, 'The Irish Penny Journal, Vol. 1 No. 01, July 4, 1840', 'Various', '2012-02-10', 16, 'https://www.gutenberg.org/ebooks/38817', 'en', 81), +(58662, 'Cardinal Wolsey', 'Creighton, M. (Mandell)', '2016-11-14', 20, 'https://www.gutenberg.org/ebooks/53526', 'en', 18839), +(58663, 'History of the Conquest of Mexico; vol. 2/4', 'Prescott, William Hickling', '2019-06-27', 65, 'https://www.gutenberg.org/ebooks/59820', 'en', 1382), +(58664, 'Margaret Fuller (Marchesa Ossoli)', 'Howe, Julia Ward', '2010-05-24', 45, 'https://www.gutenberg.org/ebooks/32511', 'en', 18840), +(58665, 'Human Genome Project, Build 34, Chromosome Number 19', 'Human Genome Project', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11793', 'en', 1385), +(58666, 'Les trois mousquetaires, Volume 1 (of 2)', 'Dumas, Alexandre', '2017-11-26', 101, 'https://www.gutenberg.org/ebooks/56054', 'fr', 2588), +(58667, 'Bayonet Training Manual Used by the British Forces', 'Anonymous', '2018-05-20', 8, 'https://www.gutenberg.org/ebooks/57186', 'en', 17636), +(58668, 'Beacon Lights of History, Volume 10: European Leaders', 'Lord, John', '2004-01-01', 22, 'https://www.gutenberg.org/ebooks/10641', 'en', 7868), +(58669, 'The Nursery, January 1873, Vol. XIII.\r\nA Monthly Magazine for Youngest Readers', 'Various', '2008-01-31', 37, 'https://www.gutenberg.org/ebooks/24474', 'en', 4641), +(58670, 'Reflections on the Decline of Science in England, and on Some of Its Causes', 'Babbage, Charles', '1998-02-01', 57, 'https://www.gutenberg.org/ebooks/1216', 'en', 18841), +(58671, 'Early Travels in Palestine\r\nComprising the Narratives of Arculf, Willibald, Bernard, Sæwulf, Sigurd, Benjamin of Tudela, Sir John Maundeville, de la Brocquière, and Maundrell', NULL, '2012-07-03', 19, 'https://www.gutenberg.org/ebooks/40131', 'en', 3981), +(58672, 'Myth-Land', 'Hulme, F. Edward (Frederick Edward)', '2014-05-17', 14, 'https://www.gutenberg.org/ebooks/45671', 'en', 8771), +(58673, 'A Woman of Thirty', 'Seiffert, Marjorie Allen', '2003-10-01', 27, 'https://www.gutenberg.org/ebooks/4556', 'en', 994), +(58674, 'A Canterbury Pilgrimage', 'Pennell, Joseph', '2011-06-11', 30, 'https://www.gutenberg.org/ebooks/36383', 'en', 18842), +(58675, 'The Beaux-Stratagem', 'Farquhar, George', '2007-05-05', 51, 'https://www.gutenberg.org/ebooks/21334', 'en', 5266), +(58676, 'The Mountain Spring and Other Poems', 'Glass, Nancy Rebecca Campbell', '2005-02-18', 9, 'https://www.gutenberg.org/ebooks/15101', 'en', 8), +(58677, 'Mehiläispyytäjä: Kertomus Lännen saloilta', 'Cooper, James Fenimore', '2016-12-11', 4, 'https://www.gutenberg.org/ebooks/53714', 'fi', 1357), +(58678, 'The Spy', 'Davis, Richard Harding', '2006-05-12', 39, 'https://www.gutenberg.org/ebooks/1818', 'en', 61), +(58679, 'The Emperor — Volume 02', 'Ebers, Georg', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/5484', 'en', 803), +(58680, 'In Touch with Nature: Tales and Sketches from the Life', 'Stables, Gordon', '2011-08-29', 9, 'https://www.gutenberg.org/ebooks/37251', 'en', 14581), +(58681, 'Indian Legends of Minnesota', NULL, '2008-06-14', 25, 'https://www.gutenberg.org/ebooks/25794', 'en', 7833), +(58682, 'Poetical Works of Robert Bridges, Volume 4', 'Bridges, Robert', '2017-12-30', 7, 'https://www.gutenberg.org/ebooks/56266', 'en', 54), +(58683, 'The Minute Boys of Boston', 'Otis, James', '2010-06-07', 39, 'https://www.gutenberg.org/ebooks/32723', 'en', 2843), +(58684, 'A General Introduction to Psychoanalysis', 'Freud, Sigmund', '2011-12-04', 377, 'https://www.gutenberg.org/ebooks/38219', 'en', 3640), +(58685, 'The Wrecker', 'Stevenson, Robert Louis', '2006-02-11', 115, 'https://www.gutenberg.org/ebooks/1024', 'en', 759), +(58686, 'The Rover Boys Down East; or, The Struggle for the Stanhope Fortune', 'Stratemeyer, Edward', '2012-07-23', 13, 'https://www.gutenberg.org/ebooks/40303', 'en', 18843), +(58687, 'The Heart of the Range', 'White, William Patterson', '2003-12-01', 17, 'https://www.gutenberg.org/ebooks/10473', 'en', 315), +(58688, 'O Livro de Elysa\r\nFragmentos', 'Lemos, João de', '2008-02-19', 13, 'https://www.gutenberg.org/ebooks/24646', 'pt', 5136), +(58689, 'Travels to Discover the Source of the Nile, Volume 3 (of 5)\r\nIn the years 1768, 1769, 1770, 1771, 1772 and 1773', 'Bruce, James', '2017-04-10', 44, 'https://www.gutenberg.org/ebooks/54531', 'en', 2589), +(58690, 'A Popular Account of the Manners and Customs of India', 'Acland, Charles', '2013-08-28', 16, 'https://www.gutenberg.org/ebooks/43586', 'en', 2422), +(58691, 'Jessica, the Heiress', 'Raymond, Evelyn', '2009-09-24', 13, 'https://www.gutenberg.org/ebooks/30074', 'en', 61), +(58692, 'Dr. Bullivant\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 21, 'https://www.gutenberg.org/ebooks/9249', 'en', 18844), +(58693, 'Hopes and Fears for Art', 'Morris, William', '2003-02-01', 41, 'https://www.gutenberg.org/ebooks/3773', 'en', 6656), +(58694, 'Two Thousand Miles Below', 'Diffin, Charles Willard', '2009-09-12', 40, 'https://www.gutenberg.org/ebooks/29965', 'en', 26), +(58695, 'Πλουτάρχου Βίοι Παράλληλοι - Τόμος 1 \r\nΘησεύς - Ρωμύλος - Λυκούργος - Νουμάς', 'Plutarch', '2013-04-01', 33, 'https://www.gutenberg.org/ebooks/42454', 'el', 6092), +(58696, 'The Elizabethan Parish in its Ecclesiastical and Financial Aspects', 'Ware, Sedley Lynch', '2004-05-01', 14, 'https://www.gutenberg.org/ebooks/12324', 'en', 18845), +(58697, 'In A New World; or, Among The Gold Fields Of Australia', 'Alger, Horatio, Jr.', '2008-07-23', 24, 'https://www.gutenberg.org/ebooks/26111', 'en', 13959), +(58698, 'Why We Punctuate; or, Reason Versus Rule in the Use of Marks', 'Klein, William Livingston', '2014-10-15', 16, 'https://www.gutenberg.org/ebooks/47126', 'en', 14013), +(58699, 'Cumner\'s Son and Other South Sea Folk — Complete', 'Parker, Gilbert', '2004-11-16', 21, 'https://www.gutenberg.org/ebooks/6201', 'en', 108), +(58700, 'Phases of Irish History', 'Mac Neill, Eoin', '2015-05-13', 12, 'https://www.gutenberg.org/ebooks/48952', 'en', 18846), +(58701, 'La culotte du brigadier', 'Pharaon, Florian', '2007-11-12', 7, 'https://www.gutenberg.org/ebooks/23463', 'fr', 179), +(58702, 'Gertrude et Veronique', 'Theuriet, André', '2006-02-01', 14, 'https://www.gutenberg.org/ebooks/17656', 'fr', 298), +(58703, 'Mrs. Cliff\'s Yacht', 'Stockton, Frank Richard', '2010-01-04', 18, 'https://www.gutenberg.org/ebooks/30848', 'en', 4013), +(58704, 'Mrs. Beeton\'s Dictionary of Every-Day Cookery\nThe \"All About It\" Books', 'Beeton, Mrs. (Isabella Mary)', '2015-10-13', 83, 'https://www.gutenberg.org/ebooks/50191', 'en', 4911), +(58705, 'The Good Gray Poet, A Vindication', 'O\'Connor, William Douglas', '2016-01-26', 9, 'https://www.gutenberg.org/ebooks/51043', 'en', 12619), +(58706, 'Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 4', 'Jefferson, Thomas', '2005-09-30', 43, 'https://www.gutenberg.org/ebooks/16784', 'en', 1648), +(58707, 'Acid Bath', 'Garson, Bill', '2009-06-19', 67, 'https://www.gutenberg.org/ebooks/29159', 'en', 179), +(58708, 'Romeo en Julia', 'Shakespeare, William', '2015-09-04', 20, 'https://www.gutenberg.org/ebooks/49880', 'nl', 2504), +(58709, 'Cloud City Cook-Book', 'Nash, William H., Mrs.', '2011-03-06', 14, 'https://www.gutenberg.org/ebooks/35506', 'en', 103), +(58710, 'Baby Pitcher\'s Trials\nLittle Pitcher Stories', 'May, Carrie L.', '2006-09-27', 21, 'https://www.gutenberg.org/ebooks/19390', 'en', 388), +(58711, 'The Young Engineers in Mexico; Or, Fighting the Mine Swindlers', 'Hancock, H. Irving (Harrie Irving)', '2004-06-29', 18, 'https://www.gutenberg.org/ebooks/12778', 'en', 9616), +(58712, 'Loveliness: A Story', 'Phelps, Elizabeth Stuart', '2011-04-25', 13, 'https://www.gutenberg.org/ebooks/35966', 'en', 2464), +(58713, 'Telling Fortunes by Cards\r\nA Symposium of the Several Ancient and Modern Methods as Practiced by Arab Seers and Sibyls and the Romany Gypsies', 'Ali, Mohammed', '2013-02-04', 72, 'https://www.gutenberg.org/ebooks/42008', 'en', 16927), +(58714, 'The Last Days of Fort Vaux, March 9-June 7, 1916', 'Bordeaux, Henry', '2015-03-19', 8, 'https://www.gutenberg.org/ebooks/48532', 'en', 449), +(58715, 'A Border Ruffian\n1891', 'Janvier, Thomas A. (Thomas Allibone)', '2007-12-10', 20, 'https://www.gutenberg.org/ebooks/23803', 'en', 770), +(58716, 'Elam Storm, the Wolfer; Or, The Lost Nugget', 'Castlemon, Harry', '2009-11-08', 4, 'https://www.gutenberg.org/ebooks/30428', 'en', 1001), +(58717, 'The Diary of a Superfluous Man and Other Stories', 'Turgenev, Ivan Sergeevich', '2006-01-01', 99, 'https://www.gutenberg.org/ebooks/9615', 'en', 1566), +(58718, 'Virginibus Puerisque, and Other Papers', 'Stevenson, Robert Louis', '1996-01-01', 135, 'https://www.gutenberg.org/ebooks/386', 'en', 20), +(58719, 'Behind the Arras: A Book of the Unseen', 'Carman, Bliss', '2006-04-24', 8, 'https://www.gutenberg.org/ebooks/18242', 'en', 8), +(58720, 'Mykkä paholainen: Kertomuksia', 'Kara, Jalmari', '2017-11-04', 17, 'https://www.gutenberg.org/ebooks/55883', 'fi', 175), +(58721, 'Suggestions to the Jews\r\nfor improvement in reference to their charities, education, and general government', 'Faudel, Henry', '2009-07-25', 6, 'https://www.gutenberg.org/ebooks/29505', 'en', 18847), +(58722, 'The Red Track: A Story of Social Life in Mexico', 'Aimard, Gustave', '2013-05-29', 22, 'https://www.gutenberg.org/ebooks/42834', 'en', 3865), +(58723, 'The History of the Lives and Bloody Exploits of the Most Noted Pirates; Their Trials and Executions\nIncluding a Correct Account of the Late Piracies Committed in the West-Indies, and the Expedition of Commodore Porter; also, Those Committed on the Brig Mexican, Who Were Tried and Executed at Boston, in 1835', 'Strong, Ezra Baldwin', '2017-06-21', 39, 'https://www.gutenberg.org/ebooks/54951', 'en', 18848), +(58724, 'A Poached Peerage', 'Magnay, William, Sir', '2010-10-16', 29, 'https://www.gutenberg.org/ebooks/34088', 'en', 61), +(58725, 'A Versailles Christmas-Tide', 'Boyd, Mary Stuart', '2004-01-01', 19, 'https://www.gutenberg.org/ebooks/10813', 'en', 18849), +(58726, 'Some Irish Yesterdays', 'Somerville, E. Oe. (Edith Oenone)', '2016-10-22', 16, 'https://www.gutenberg.org/ebooks/53348', 'en', 11552), +(58727, 'A Desert Drama: Being The Tragedy Of The \"Korosko\"', 'Doyle, Arthur Conan', '2007-06-08', 68, 'https://www.gutenberg.org/ebooks/21768', 'en', 3415), +(58728, 'A Day with Ludwig Beethoven', 'Byron, May', '2019-06-03', 34, 'https://www.gutenberg.org/ebooks/59672', 'en', 1807), +(58729, 'Minstrel Weather', 'Storm, Marian', '2012-01-23', 14, 'https://www.gutenberg.org/ebooks/38645', 'en', 1216), +(58730, 'A Parody Outline of History\r\nWherein May Be Found a Curiously Irreverent Treatment of American Historical Events, Imagining Them as They Would Be Narrated by America\'s Most Characteristic Contemporary Authors', 'Stewart, Donald Ogden', '1998-10-01', 65, 'https://www.gutenberg.org/ebooks/1478', 'en', 6619), +(58731, 'A Prelude', 'Sherman, Francis', '2013-06-02', 4, 'https://www.gutenberg.org/ebooks/39797', 'en', 28), +(58732, 'Romanz De L\'estoire Dou Graal', 'Robert, de Boron, active 13th century', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/4936', 'fr', 8), +(58733, 'Milch Cows and Dairy Farming\r\nComprising the Breeds, Breeding, and Management, in Health and Disease, of Dairy and Other Stock, the Selection of Milch Cows, with a Full Explanation of Guenon\'s Method; The Culture of Forage Plants, and the Production of Milk, Butter, and Cheese: Embodying the Most Recent Improvements, and Adapted to Farming in the United States and British Provinces. With a Treatise upon the Dairy Husbandry of Holland; To Which Is Added Horsfall\'s System of Dairy Management', 'Flint, Charles Louis', '2019-01-01', 23, 'https://www.gutenberg.org/ebooks/58592', 'en', 18850), +(58734, 'Henry of Monmouth, Volume 1\r\nOr, Memoirs of the Life and Character of Henry the Fifth, as Prince of Wales and King of England', 'Tyler, James Endell', '2007-01-31', 86, 'https://www.gutenberg.org/ebooks/20488', 'en', 4394), +(58735, 'The Forest Exiles: The Perils of a Peruvian Family in the Wilds of the Amazon', 'Reid, Mayne', '2008-03-12', 17, 'https://www.gutenberg.org/ebooks/24814', 'en', 323), +(58736, 'The Freedom of Life', 'Call, Annie Payson', '2003-08-01', 37, 'https://www.gutenberg.org/ebooks/4338', 'en', 251), +(58737, 'Rake Knitting Patterns', 'Thompson, Bertha', '2019-05-05', 45, 'https://www.gutenberg.org/ebooks/59440', 'en', 690), +(58738, 'The Eagle\'s Nest', 'Cartwright, S. E.', '2010-06-25', 11, 'https://www.gutenberg.org/ebooks/32971', 'en', 4426), +(58739, 'In Jeopardy', 'Sutphen, Van Tassel', '2012-01-03', 65, 'https://www.gutenberg.org/ebooks/38477', 'en', 167), +(58740, 'Ein deutsches Kriegsschiff in der Südsee', 'Werner, Bartholomäus von', '2017-01-11', 15, 'https://www.gutenberg.org/ebooks/53946', 'de', 885), +(58741, 'The United States Constitution', 'United States', '1975-12-01', 393, 'https://www.gutenberg.org/ebooks/5', 'en', 18851), +(58742, '東坡樂府', 'Su, Shi', '2007-12-25', 14, 'https://www.gutenberg.org/ebooks/24028', 'zh', 1721), +(58743, 'Essays in Rationalism', 'Newman, Charles Robert', '2014-05-30', 8, 'https://www.gutenberg.org/ebooks/45823', 'en', 1616), +(58744, 'The Mail Carrier', 'Castlemon, Harry', '2018-01-21', 6, 'https://www.gutenberg.org/ebooks/56408', 'en', 323), +(58745, 'Azul...\nObras Completas Vol. IV', 'Darío, Rubén', '2016-08-25', 60, 'https://www.gutenberg.org/ebooks/52894', 'es', 2730), +(58746, 'Poets and Dreamers: Studies and translations from the Irish', 'Gregory, Lady', '2006-03-29', 15, 'https://www.gutenberg.org/ebooks/18070', 'en', 18852), +(58747, 'The Fortieth Door', 'Bradley, Mary Hastings', '2004-09-19', 25, 'https://www.gutenberg.org/ebooks/13498', 'en', 2938), +(58748, 'On Cambrian and Cumbrian Hills: Pilgrimages to Snowdon and Scafell', 'Salt, Henry S.', '2015-04-13', 11, 'https://www.gutenberg.org/ebooks/48700', 'en', 13483), +(58749, 'If You\'re Going to Live in the Country', 'Ormsbee, Thomas H. (Thomas Hamilton)', '2006-02-20', 14, 'https://www.gutenberg.org/ebooks/17804', 'en', 18853), +(58750, 'The Return of the Native', 'Hardy, Thomas', '2005-12-01', 8, 'https://www.gutenberg.org/ebooks/9427', 'en', 2815), +(58751, 'The Red Lily — Volume 03', 'France, Anatole', '2003-04-01', 13, 'https://www.gutenberg.org/ebooks/3921', 'en', 109), +(58752, 'The Leper in England: with some account of English lazar-houses', 'Hope, Robert Charles', '2009-08-19', 19, 'https://www.gutenberg.org/ebooks/29737', 'en', 18854), +(58753, 'Friends I Have Made', 'Fenn, George Manville', '2011-02-23', 8, 'https://www.gutenberg.org/ebooks/35368', 'en', 61), +(58754, 'The Reason Why\r\nA Careful Collection of Many Hundreds of Reasons for Things Which, Though Generally Believed, Are Imperfectly Understood', 'Philp, Robert Kemp', '2014-12-23', 14, 'https://www.gutenberg.org/ebooks/47748', 'en', 814), +(58755, 'The Education of the Child', 'Key, Ellen', '1997-07-01', 10, 'https://www.gutenberg.org/ebooks/988', 'en', 973), +(58756, 'History of the English People, Volume II\r\nThe Charter, 1216-1307; The Parliament, 1307-1400', 'Green, John Richard', '2005-11-10', 29, 'https://www.gutenberg.org/ebooks/17038', 'en', 1953), +(58757, 'In Search of a Son', 'Walsh, William Shepard', '2011-05-22', 4, 'https://www.gutenberg.org/ebooks/36189', 'en', 1817), +(58758, 'The Night the Mountain Fell: The Story of the Montana-Yellowstone Earthquake', 'Christopherson, Edmund', '2018-03-27', 27, 'https://www.gutenberg.org/ebooks/56850', 'en', 18855), +(58759, 'Index of the Project Gutenberg Works of Arthur Schopenhauer', 'Schopenhauer, Arthur', '2019-03-06', 32, 'https://www.gutenberg.org/ebooks/59024', 'en', 198), +(58760, 'A Greek-English Lexicon to the New Testament', 'Greenfield, William', '2012-10-04', 95, 'https://www.gutenberg.org/ebooks/40935', 'en', 18856), +(58761, 'España invertebrada: Bosquejo de algunos pensamientos históricos', 'Ortega y Gasset, José', '2018-09-27', 68, 'https://www.gutenberg.org/ebooks/57982', 'es', 18857), +(58762, 'The Atlantic Monthly, Volume 17, No. 103, May, 1866\r\nA Magazine of Literature, Science, Art, and Politics', 'Various', '2007-06-22', 10, 'https://www.gutenberg.org/ebooks/21902', 'en', 1227), +(58763, 'Διηγήματα', 'Rhoides, Emmanouel D.', '2010-05-26', 19, 'https://www.gutenberg.org/ebooks/32529', 'el', 1348), +(58764, 'The Markenmore Mystery', 'Fletcher, J. S. (Joseph Smith)', '2019-06-26', 350, 'https://www.gutenberg.org/ebooks/59818', 'en', 1425), +(58765, 'Animals of the Past', 'Lucas, Frederic A. (Frederic Augustus)', '2011-11-14', 70, 'https://www.gutenberg.org/ebooks/38013', 'en', 339), +(58766, 'Taxidermy and Zoological Collecting\r\nA Complete Handbook for the Amateur Taxidermist, Collector, Osteologist, Museum-Builder, Sportsman, and Traveller', 'Hornaday, William T. (William Temple)', '2012-06-30', 19, 'https://www.gutenberg.org/ebooks/40109', 'en', 11703), +(58767, 'The Story of the Other Wise Man', 'Van Dyke, Henry', '2004-01-01', 59, 'https://www.gutenberg.org/ebooks/10679', 'en', 609), +(58768, 'Divine Songs and Meditacions (1653)', 'Collins, An, active 17th century', '2011-10-27', 33, 'https://www.gutenberg.org/ebooks/37867', 'en', 2064), +(58769, 'The Little Warrior', 'Wodehouse, P. G. (Pelham Grenville)', '2004-11-01', 96, 'https://www.gutenberg.org/ebooks/6837', 'en', 6509), +(58770, 'The Girl\'s Own Paper, Vol. VIII, No. 355, October 16, 1886', 'Various', '2006-05-18', 34, 'https://www.gutenberg.org/ebooks/18414', 'en', 563), +(58771, 'Noted Speeches of Abraham Lincoln, Including the Lincoln-Douglas Debate', 'Lincoln, Abraham', '2015-02-26', 40, 'https://www.gutenberg.org/ebooks/48364', 'en', 15491), +(58772, 'May Day with the Muses', 'Bloomfield, Robert', '2005-10-01', 12, 'https://www.gutenberg.org/ebooks/9043', 'en', 54), +(58773, 'Recollections of the Private Life of Napoleon — Volume 12', 'Wairy, Louis Constant', '2002-12-01', 8, 'https://www.gutenberg.org/ebooks/3579', 'en', 6527), +(58774, 'Our Master: Thoughts for Salvationists about Their Lord', 'Booth, Bramwell', '2005-05-01', 21, 'https://www.gutenberg.org/ebooks/8191', 'en', 18858), +(58775, 'Cecilia Valdés o la Loma del Ángel', 'Villaverde, Cirilo', '2009-03-08', 41, 'https://www.gutenberg.org/ebooks/28281', 'es', 11419), +(58776, 'Summit', 'Reynolds, Mack', '2007-12-01', 48, 'https://www.gutenberg.org/ebooks/23669', 'en', 26), +(58777, 'Spacemen Die at Home', 'Ludwig, Edward W.', '2016-02-18', 21, 'https://www.gutenberg.org/ebooks/51249', 'en', 3591), +(58778, 'Vampires of Space', 'Wright, Sewell Peaslee', '2009-07-08', 45, 'https://www.gutenberg.org/ebooks/29353', 'en', 26), +(58779, 'The Price of Love', 'Bennett, Arnold', '2004-07-14', 30, 'https://www.gutenberg.org/ebooks/12912', 'en', 3994), +(58780, 'California as It Is and as It May Be: A Guide to the Gold Region', 'Wierzbicki, Felix Paul', '2015-02-04', 12, 'https://www.gutenberg.org/ebooks/48156', 'en', 1623), +(58781, 'Mad Barbara', 'Deeping, Warwick', '2016-01-22', 18, 'https://www.gutenberg.org/ebooks/50995', 'en', 8189), +(58782, 'Pages from an Old Volume of Life; A Collection of Essays, 1857-1881', 'Holmes, Oliver Wendell', '2004-09-28', 20, 'https://www.gutenberg.org/ebooks/2699', 'en', 20), +(58783, 'The Bickerstaff-Partridge Papers', 'Swift, Jonathan', '2005-11-01', 2, 'https://www.gutenberg.org/ebooks/9271', 'en', 1971), +(58784, 'The Brochure Series of Architectural Illustration, vol. 06, No. 12, December 1900\nThe Cathedrals of England', 'Various', '2015-01-09', 7, 'https://www.gutenberg.org/ebooks/47922', 'en', 2140), +(58785, 'The Irish Penny Journal, Vol. 1 No. 24, December 12, 1840', 'Various', '2017-04-08', 4, 'https://www.gutenberg.org/ebooks/54509', 'en', 81), +(58786, 'The Tale of Major Monkey', 'Bailey, Arthur Scott', '2006-06-19', 17, 'https://www.gutenberg.org/ebooks/18626', 'en', 25), +(58787, 'John Hus: A brief story of the life of a martyr', 'Dallmann, William', '2008-07-25', 16, 'https://www.gutenberg.org/ebooks/26129', 'en', 122), +(58788, 'Birds and Beasts', 'Lemonnier, Camille', '2016-04-24', 26, 'https://www.gutenberg.org/ebooks/51847', 'en', 625), +(58789, 'Mitteilungen aus dem Germanischen Nationalmuseum. Jahrgang 1900', 'Germanisches Nationalmuseum Nürnberg', '2015-05-30', 3, 'https://www.gutenberg.org/ebooks/49084', 'de', 12634), +(58790, 'The Works of Robert Louis Stevenson - Swanston Edition, Vol. 11', 'Stevenson, Robert Louis', '2010-01-06', 49, 'https://www.gutenberg.org/ebooks/30870', 'en', 16934), +(58791, 'The Lane That Had No Turning, Volume 3', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6239', 'en', 179), +(58792, 'A Guerra: Depoimentos de Herejes', 'Lima, Jaime de Magalhães', '2008-10-14', 15, 'https://www.gutenberg.org/ebooks/26915', 'pt', 335), +(58793, 'Entre as Nymphéas', 'Carvalho, João Marques de', '2009-06-19', 25, 'https://www.gutenberg.org/ebooks/29161', 'pt', 18859), +(58794, 'Jubilation, U.S.A.', 'Vandenburg, G. L.', '2007-09-12', 28, 'https://www.gutenberg.org/ebooks/22589', 'en', 179), +(58795, 'Notizie del pubblico giardino de\' semplici di Padova compilate intorno l\'anno 1771', 'Marsili, Giovanni', '2005-02-22', 16, 'https://www.gutenberg.org/ebooks/15139', 'it', 18860), +(58796, 'The Courtship of Miles Standish', 'Longfellow, Henry Wadsworth', '2019-04-06', 24, 'https://www.gutenberg.org/ebooks/59216', 'en', 5020), +(58797, 'Saituri: Komedia 5:ssä näytöksessä', 'Molière', '2014-05-15', 20, 'https://www.gutenberg.org/ebooks/45649', 'fi', 907), +(58798, 'The Triumph of Jill', 'Young, F. E. Mills (Florence Ethel Mills)', '2011-08-29', 5, 'https://www.gutenberg.org/ebooks/37269', 'en', 2190), +(58799, 'A Wasted Day', 'Davis, Richard Harding', '2006-05-12', 20, 'https://www.gutenberg.org/ebooks/1820', 'en', 179), +(58800, 'Collected Essays, Volume V\nScience and Christian Tradition: Essays', 'Huxley, Thomas Henry', '2005-05-25', 39, 'https://www.gutenberg.org/ebooks/15905', 'en', 5036), +(58801, 'Withered Leaves from Memory\'s Garland', 'Hanna, Abigail Stanley', '2004-03-01', 9, 'https://www.gutenberg.org/ebooks/11599', 'en', 8), +(58802, 'Hedelmällisyys: Romaani', 'Zola, Émile', '2011-12-04', 10, 'https://www.gutenberg.org/ebooks/38221', 'fi', 1850), +(58803, 'How to Catalogue a Library', 'Wheatley, Henry B. (Henry Benjamin)', '2013-01-10', 16, 'https://www.gutenberg.org/ebooks/41813', 'en', 11055), +(58804, 'Imperfectly Proper', 'Donovan, Peter', '2016-06-29', 11, 'https://www.gutenberg.org/ebooks/52438', 'en', 13693), +(58805, 'The Poems of Philip Freneau, Poet of the American Revolution. Volume 3 (of 3)', 'Freneau, Philip Morin', '2012-06-03', 16, 'https://www.gutenberg.org/ebooks/39909', 'en', 178), +(58806, 'Representative British Orations Volume 4 (of 4)\r\nWith Introductions and Explanatory Notes', NULL, '2018-10-15', 10, 'https://www.gutenberg.org/ebooks/58102', 'en', 277), +(58807, 'Evenings at Donaldson Manor; Or, The Christmas Guest', 'McIntosh, Maria J. (Maria Jane)', '2006-12-04', 22, 'https://www.gutenberg.org/ebooks/20018', 'en', 61), +(58808, 'The Island of Appledore', 'Meigs, Cornelia', '2018-09-25', 19, 'https://www.gutenberg.org/ebooks/57976', 'en', 323), +(58809, 'Théorie des Fonctions Elliptiques', 'Bouquet, M. (Jean Claude)', '2011-08-02', 13, 'https://www.gutenberg.org/ebooks/36941', 'fr', 2584), +(58810, 'Drei Erzählungen für junge Mädchen', 'Helm, Clementine', '2017-12-01', 12, 'https://www.gutenberg.org/ebooks/56098', 'de', 6086), +(58811, 'Notes and Queries, Vol. IV, Number 107, November 15, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-03-14', 15, 'https://www.gutenberg.org/ebooks/39135', 'en', 105), +(58812, 'Bulletin de Lille, 1916.05\npublié sous le contrôle de l\'autorité allemande', 'Anonymous', '2007-03-15', 10, 'https://www.gutenberg.org/ebooks/20824', 'fr', 11807), +(58813, 'Oxford and Her Colleges: A View from the Radcliffe Library', 'Smith, Goldwin', '2011-10-31', 8, 'https://www.gutenberg.org/ebooks/37893', 'en', 3139), +(58814, 'Ann Veronica: A Modern Love Story', 'Wells, H. G. (Herbert George)', '2006-03-18', 128, 'https://www.gutenberg.org/ebooks/524', 'en', 2153), +(58815, 'The Edda, Volume 2\r\nThe Heroic Mythology of the North\r\nPopular Studies in Mythology, Romance, and Folklore, No. 13', 'Faraday, L. Winifred', '2004-07-23', 71, 'https://www.gutenberg.org/ebooks/13008', 'en', 6418), +(58816, 'Social England under the Regency, Vol. 1 (of 2)', 'Ashton, John', '2015-03-01', 19, 'https://www.gutenberg.org/ebooks/48390', 'en', 3136), +(58817, 'Az uj földesur (2. kötet)', 'Jókai, Mór', '2013-09-20', 3, 'https://www.gutenberg.org/ebooks/43778', 'hu', 18080), +(58818, 'The Geste of Duke Jocelyn', 'Farnol, Jeffery', '2005-05-01', 20, 'https://www.gutenberg.org/ebooks/8165', 'en', 48), +(58819, 'Harper\'s New Monthly Magazine, Volume 1, No. 4, September, 1850', 'Various', '2010-02-22', 14, 'https://www.gutenberg.org/ebooks/31358', 'en', 4316), +(58820, 'A Practical Treatise on Smallpox', 'Fox, George Henry', '2015-06-20', 8, 'https://www.gutenberg.org/ebooks/49242', 'en', 18861), +(58821, 'Sol de Inverno\nultimos versos : 1915', 'Feijó, António Joaquim de Castro', '2006-10-13', 20, 'https://www.gutenberg.org/ebooks/19532', 'pt', 1638), +(58822, 'American Historical and Literary Curiosities, Part 11.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 8, 'https://www.gutenberg.org/ebooks/7911', 'en', 453), +(58823, 'À se tordre: Histoires chatnoiresques', 'Allais, Alphonse', '2004-10-22', 95, 'https://www.gutenberg.org/ebooks/13834', 'fr', 637), +(58824, 'Harper\'s Young People, December 30, 1879\nAn Illustrated Weekly', 'Various', '2009-03-08', 12, 'https://www.gutenberg.org/ebooks/28275', 'en', 479), +(58825, 'Narratives of New Netherland, 1609-1664', NULL, '2005-09-01', 1, 'https://www.gutenberg.org/ebooks/8959', 'en', 1255), +(58826, 'Summer', 'Wharton, Edith', '2005-11-01', 7, 'https://www.gutenberg.org/ebooks/9285', 'en', 2103), +(58827, 'The Slipper Point Mystery', 'Seaman, Augusta Huiell', '2016-01-18', 17, 'https://www.gutenberg.org/ebooks/50961', 'en', 10102), +(58828, 'The Cruise of the Jasper B.', 'Marquis, Don', '1996-11-01', 42, 'https://www.gutenberg.org/ebooks/716', 'en', 323), +(58829, 'Tendresses impériales', 'Napoleon I, Emperor of the French', '2006-11-02', 11, 'https://www.gutenberg.org/ebooks/19700', 'fr', 17658), +(58830, 'Bentley\'s Miscellany, Volume II', 'Various', '2014-09-07', 27, 'https://www.gutenberg.org/ebooks/46804', 'en', 10335), +(58831, 'The Bible, Douay-Rheims, Book 57: Philippians\nThe Challoner Revision', NULL, '2005-06-01', 7, 'https://www.gutenberg.org/ebooks/8357', 'en', 15031), +(58832, 'Nuclear Clocks\nRevised', 'Faul, Henry', '2015-05-29', 7, 'https://www.gutenberg.org/ebooks/49070', 'en', 18862), +(58833, 'Miracle Gold: A Novel (Vol. 1 of 3)', 'Dowling, Richard', '2013-04-08', 2, 'https://www.gutenberg.org/ebooks/42498', 'en', 61), +(58834, 'Strange Alliance', 'Walton, Bryce', '2009-02-11', 29, 'https://www.gutenberg.org/ebooks/28047', 'en', 1061), +(58835, 'Step IV', 'Brown, Rosel George', '2010-01-07', 40, 'https://www.gutenberg.org/ebooks/30884', 'en', 179), +(58836, 'Paedagogische Overwegingen', 'Asscher, Eva Wilhelmina', '2009-01-18', 8, 'https://www.gutenberg.org/ebooks/27833', 'nl', 973), +(58837, 'Patarouva', 'Pushkin, Aleksandr Sergeevich', '2010-11-23', 18, 'https://www.gutenberg.org/ebooks/34418', 'fi', 147), +(58838, 'Shinto (the Way of the Gods)', 'Aston, W. G. (William George)', '2014-06-21', 41, 'https://www.gutenberg.org/ebooks/46038', 'en', 15246), +(58839, 'Chronicles of England, Scotland and Ireland (2 of 6): England (02 of 12)\r\nWilliam Rufus', 'Holinshed, Raphael', '2005-09-25', 17, 'https://www.gutenberg.org/ebooks/16748', 'en', 288), +(58840, 'Garth and the Visitor', 'Stecher, L. J., Jr.', '2010-04-12', 22, 'https://www.gutenberg.org/ebooks/31956', 'en', 26), +(58841, 'It\'s All Yours', 'Merwin, Sam', '2009-06-21', 21, 'https://www.gutenberg.org/ebooks/29195', 'en', 26), +(58842, 'Uarda : a Romance of Ancient Egypt — Volume 10', 'Ebers, Georg', '2004-04-01', 6, 'https://www.gutenberg.org/ebooks/5448', 'en', 803), +(58843, 'The Dune Country', 'Reed, Earl H. (Earl Howell)', '2018-11-23', 14, 'https://www.gutenberg.org/ebooks/58330', 'en', 18116), +(58844, 'Rome, Turkey and Jerusalem', 'Hoare, Edward', '2012-03-29', 9, 'https://www.gutenberg.org/ebooks/39307', 'en', 2692), +(58845, 'A German Pompadour\r\nBeing the Extraordinary History of Wilhelmine van Grävenitz, Landhofmeisterin of Wirtemberg', 'Hay, Marie, Hon. (Agnes Blanche Marie)', '2008-06-11', 67, 'https://www.gutenberg.org/ebooks/25758', 'en', 18863), +(58846, 'Kuninkaitten aarteet', 'Ruskin, John', '2018-06-23', 5, 'https://www.gutenberg.org/ebooks/57378', 'fi', 6644), +(58847, 'A Student in Arms: Second Series', 'Hankey, Donald', '2005-01-28', 22, 'https://www.gutenberg.org/ebooks/14823', 'en', 335), +(58848, 'Memoirs of Orange Jacobs', 'Jacobs, Orange', '2011-04-29', 26, 'https://www.gutenberg.org/ebooks/35992', 'en', 18422), +(58849, 'The Brochure Series of Architectural Illustration, Vol. 01, No. 05, May 1895\r\nTwo Florentine Pavements', 'Various', '2006-09-24', 21, 'https://www.gutenberg.org/ebooks/19364', 'en', 2140), +(58850, 'The Hermits', 'Kingsley, Charles', '2005-08-01', 22, 'https://www.gutenberg.org/ebooks/8733', 'en', 18864), +(58851, 'Monsieur Bergeret in Paris', 'France, Anatole', '2015-07-10', 23, 'https://www.gutenberg.org/ebooks/49414', 'en', 18865), +(58852, 'The Story of Young Abraham Lincoln', 'Whipple, Wayne', '2007-10-08', 118, 'https://www.gutenberg.org/ebooks/22925', 'en', 938), +(58853, 'Human Genome Project, rough draft, Chromosome Number 09', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2209', 'en', 1385), +(58854, 'Prince Otto, a Romance', 'Stevenson, Robert Louis', '1995-12-01', 163, 'https://www.gutenberg.org/ebooks/372', 'en', 5233), +(58855, 'Florence: A Sketch-Book', 'Richards, Fred', '2017-02-19', 11, 'https://www.gutenberg.org/ebooks/54199', 'en', 18866), +(58856, 'The Palace of Pleasure, Volume 3', NULL, '2011-01-03', 29, 'https://www.gutenberg.org/ebooks/34840', 'en', 1058), +(58857, 'The Widowing of Mrs. Holroyd: A Drama in Three Acts', 'Lawrence, D. H. (David Herbert)', '2017-11-02', 16, 'https://www.gutenberg.org/ebooks/55877', 'en', 18867), +(58858, 'The Satires of A. Persius Flaccus', 'Persius', '2007-07-22', 51, 'https://www.gutenberg.org/ebooks/22119', 'la', 18739), +(58859, 'Harper\'s Young People, March 30, 1880\nAn Illustrated Weekly', 'Various', '2009-03-27', 21, 'https://www.gutenberg.org/ebooks/28423', 'en', 479), +(58860, 'Practical Italian Recipes for American Kitchens\nSold to aid the Families of Italian Soldiers', 'Cuniberti, Julia Lovejoy', '2013-10-08', 68, 'https://www.gutenberg.org/ebooks/43912', 'en', 1881), +(58861, 'The Man of Genius', 'Lombroso, Cesare', '2015-11-23', 39, 'https://www.gutenberg.org/ebooks/50539', 'en', 18868), +(58862, 'Soffrona and Her Cat Muff', 'Sherwood, Mrs. (Mary Martha)', '2019-01-22', 4, 'https://www.gutenberg.org/ebooks/58754', 'en', 1625), +(58863, 'Dramas de Guillermo Shakspeare [vol. 4]', 'Shakespeare, William', '2019-06-06', 22, 'https://www.gutenberg.org/ebooks/59686', 'es', 18869), +(58864, 'Mysticism in English Literature', 'Spurgeon, Caroline F. E. (Caroline Frances Eleanor)', '2004-04-01', 119, 'https://www.gutenberg.org/ebooks/11935', 'en', 1694), +(58865, 'Following the Equator: A Journey Around the World. Part 3', 'Twain, Mark', '2004-06-23', 8, 'https://www.gutenberg.org/ebooks/5810', 'en', 3614), +(58866, 'The Day of His Youth', 'Brown, Alice', '2010-07-25', 11, 'https://www.gutenberg.org/ebooks/33259', 'en', 109), +(58867, 'Our Little Ones and The Nursery, Vol. V, No. 9, July 1885', 'Various', '2012-12-21', 6, 'https://www.gutenberg.org/ebooks/41679', 'en', 563), +(58868, 'Einheimische Fische; Die Süßwasserfische unsrer Heimat', 'Floericke, Kurt', '2012-05-22', 27, 'https://www.gutenberg.org/ebooks/39763', 'de', 18870), +(58869, 'Punch, or the London Charivari, Volume 156, February 12, 1919', 'Various', '2004-02-01', 28, 'https://www.gutenberg.org/ebooks/11109', 'en', 134); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(58870, 'Travels and Adventures of Little Baron Trump and His Wonderful Dog Bulger', 'Lockwood, Ingersoll', '2018-12-29', 103, 'https://www.gutenberg.org/ebooks/58566', 'en', 3145), +(58871, 'Sata ja yksi laulua; Hiihtäjän virsiä; Pyhä kevät', 'Leino, Eino', '2005-01-10', 15, 'https://www.gutenberg.org/ebooks/14649', 'fi', 8), +(58872, 'The Lost Manuscript: A Novel', 'Freytag, Gustav', '2010-10-14', 30, 'https://www.gutenberg.org/ebooks/33857', 'en', 803), +(58873, 'Le Calvaire', 'Mirbeau, Octave', '2013-11-09', 12, 'https://www.gutenberg.org/ebooks/44139', 'fr', 607), +(58874, 'Short History of the London Rifle Brigade', 'Unknown', '2008-06-29', 14, 'https://www.gutenberg.org/ebooks/25932', 'en', 18871), +(58875, 'The Childhood of Distinguished Women', 'Bower, Selina A.', '2011-06-26', 13, 'https://www.gutenberg.org/ebooks/36519', 'en', 4289), +(58876, 'A Modern Wizard', 'Ottolengui, Rodrigues', '2010-06-27', 26, 'https://www.gutenberg.org/ebooks/32985', 'en', 16436), +(58877, 'Abraham Lincoln: The True Story of a Great Life, Volume 1 (of 2)', 'Herndon, William Henry', '2012-01-03', 31, 'https://www.gutenberg.org/ebooks/38483', 'en', 1716), +(58878, 'Punch, or the London Charivari, Volume 93, December 31, 1887', 'Various', '2012-08-28', 6, 'https://www.gutenberg.org/ebooks/40599', 'en', 134), +(58879, 'Outlines of Educational Doctrine', 'Herbart, Johann Friedrich', '2014-02-14', 16, 'https://www.gutenberg.org/ebooks/44905', 'en', 7652), +(58880, 'Ethics', 'Tufts, James Hayden', '2012-04-28', 83, 'https://www.gutenberg.org/ebooks/39551', 'en', 680), +(58881, 'Our Story Book: Jingles, Stories and Rhymes for Little Folks', 'Various', '2016-08-20', 9, 'https://www.gutenberg.org/ebooks/52860', 'en', 859), +(58882, 'Ice Creams, Water Ices, Frozen Puddings Together with Refreshments for all Social Affairs', 'Rorer, S. T.', '2005-07-01', 49, 'https://www.gutenberg.org/ebooks/8501', 'en', 4684), +(58883, 'Opúsculos por Alexandre Herculano - Tomo 02', 'Herculano, Alexandre', '2005-10-23', 5, 'https://www.gutenberg.org/ebooks/16922', 'pt', 410), +(58884, 'Il passaggio: Romanzo', 'Aleramo, Sibilla', '2015-08-05', 51, 'https://www.gutenberg.org/ebooks/49626', 'it', 892), +(58885, 'The Continental Monthly, Vol III, Issue VI, June, 1863\nDevoted to Literature and National Policy', 'Various', '2006-09-01', 4, 'https://www.gutenberg.org/ebooks/19156', 'en', 558), +(58886, 'Latest Magic, Being original conjuring tricks', 'Hoffmann, Professor', '2017-08-06', 38, 'https://www.gutenberg.org/ebooks/55279', 'en', 1530), +(58887, 'Op het Balkan-schiereiland\nDe Aarde en haar Volken, 1909', 'Henderson, Percy E. (Percy Edward)', '2008-12-29', 10, 'https://www.gutenberg.org/ebooks/27659', 'nl', 14868), +(58888, 'The Jungle', 'Sinclair, Upton', '2006-03-11', 1614, 'https://www.gutenberg.org/ebooks/140', 'en', 18872), +(58889, 'Rapport au Ministre des Finances sur l\'Administration des Postes\nExtrait de L\'Annuaire des Postes de 1865', 'Vandal, Édouard', '2006-03-30', 7, 'https://www.gutenberg.org/ebooks/18084', 'fr', 10378), +(58890, 'Quotes and Images From The Short Stories of Maupassant', 'Maupassant, Guy de', '2004-09-04', 17, 'https://www.gutenberg.org/ebooks/7549', 'en', 18873), +(58891, 'Polarforskningen', 'Nathorst, A. G. (Alfred Gabriel)', '2009-04-26', 6, 'https://www.gutenberg.org/ebooks/28611', 'sv', 18874), +(58892, 'To Have and to Hold', 'Johnston, Mary', '2001-09-01', 90, 'https://www.gutenberg.org/ebooks/2807', 'en', 4969), +(58893, 'Origin of the Anglo-Boer War Revealed (2nd ed.)\nThe Conspiracy of the 19th Century Unmasked', 'Thomas, C. H.', '2005-02-18', 28, 'https://www.gutenberg.org/ebooks/15106', 'en', 3004), +(58894, 'Henriette, oder die schöne Sängerin: Eine Geschichte unserer Tage', 'Rellstab, Ludwig', '2019-04-08', 4, 'https://www.gutenberg.org/ebooks/59229', 'de', 18875), +(58895, 'Doom Castle', 'Munro, Neil', '2007-05-05', 39, 'https://www.gutenberg.org/ebooks/21333', 'en', 16934), +(58896, 'Europe Revised', 'Cobb, Irvin S. (Irvin Shrewsbury)', '2003-10-01', 17, 'https://www.gutenberg.org/ebooks/4551', 'en', 1408), +(58897, 'The Squire\'s Daughter', 'Hocking, Silas K. (Silas Kitto)', '2011-06-11', 14, 'https://www.gutenberg.org/ebooks/36384', 'en', 15091), +(58898, 'Flower Guide: Wild Flowers East of the Rockies\r\n(Revised and with New Illustrations)', 'Reed, Chester A. (Chester Albert)', '2014-05-18', 24, 'https://www.gutenberg.org/ebooks/45676', 'en', 18876), +(58899, 'The Emperor — Volume 01', 'Ebers, Georg', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/5483', 'en', 10090), +(58900, 'Jack Buntline', 'Kingston, William Henry Giles', '2011-08-29', 18, 'https://www.gutenberg.org/ebooks/37256', 'en', 3535), +(58901, 'Das österreichische Antlitz: Essays', 'Salten, Felix', '2016-12-11', 10, 'https://www.gutenberg.org/ebooks/53713', 'de', 18877), +(58902, 'Feet of Clay', 'Hoskins, Robert', '2010-06-07', 23, 'https://www.gutenberg.org/ebooks/32724', 'en', 179), +(58903, 'The Journal of the American-Irish Historical Society (Vol. I)', 'Various', '2017-12-27', 6, 'https://www.gutenberg.org/ebooks/56261', 'en', 18878), +(58904, 'Critical Miscellanies (Vol. 3 of 3), Essay 6: Harriet Martineau', 'Morley, John', '2008-06-14', 14, 'https://www.gutenberg.org/ebooks/25793', 'en', 18879), +(58905, '\"Martin Of Nitendi\"; and The River Of Dreams\r\n1901', 'Becke, Louis', '2008-02-18', 26, 'https://www.gutenberg.org/ebooks/24641', 'en', 2357), +(58906, 'The Lost Naval Papers', 'Copplestone, Bennet', '2003-12-01', 10, 'https://www.gutenberg.org/ebooks/10474', 'en', 18880), +(58907, 'Die Spur', 'Viertel, Berthold', '2012-07-23', 5, 'https://www.gutenberg.org/ebooks/40304', 'de', 7281), +(58908, 'Bleak House', 'Dickens, Charles', '1997-08-01', 1365, 'https://www.gutenberg.org/ebooks/1023', 'en', 2530), +(58909, 'Encyclopaedia Britannica, 11th Edition, \"Destructors\" to \"Diameter\"\r\nVolume 8, Slice 3', 'Various', '2009-09-24', 58, 'https://www.gutenberg.org/ebooks/30073', 'en', 1081), +(58910, 'The Post of Honour\r\nStories of Daring Deeds Done by Men of the British Empire in the Great War', 'Wilson, Richard', '2015-02-05', 23, 'https://www.gutenberg.org/ebooks/48169', 'en', 93), +(58911, 'Fruits of the Hawaiian Islands', 'Wilder, Gerrit Parmile', '2013-08-27', 10, 'https://www.gutenberg.org/ebooks/43581', 'en', 18881), +(58912, 'Boy Scouts at Crater Lake\nA Story of Crater Lake National Park and the High Cascades', 'Eaton, Walter Prichard', '2017-04-10', 5, 'https://www.gutenberg.org/ebooks/54536', 'en', 1002), +(58913, 'The Modern Scottish Minstrel, Volume 2.\r\nThe Songs of Scotland of the Past Half Century', NULL, '2006-06-19', 17, 'https://www.gutenberg.org/ebooks/18619', 'en', 17502), +(58914, 'The Art of Angling\r\nWherein are discovered many rare secrets, very necessary to be knowne by all that delight in that recreation', 'Barker, Thomas, active 1651', '2008-07-24', 15, 'https://www.gutenberg.org/ebooks/26116', 'en', 1945), +(58915, 'Punch, or the London Charivari, Volume 99, August 2, 1890', 'Various', '2004-05-01', 7, 'https://www.gutenberg.org/ebooks/12323', 'en', 134), +(58916, 'Suomalaisen kirjallisuuden vaiheet', 'Krohn, Julius', '2013-04-01', 0, 'https://www.gutenberg.org/ebooks/42453', 'fi', 11241), +(58917, 'Celebrity', 'McKimmey, James', '2009-09-12', 46, 'https://www.gutenberg.org/ebooks/29962', 'en', 26), +(58918, 'The City of the Sultan; and Domestic Manners of the Turks, in 1836, Vol. 1 (of 2)', 'Pardoe, Miss (Julia)', '2016-04-28', 12, 'https://www.gutenberg.org/ebooks/51878', 'en', 8599), +(58919, 'The Eskimo Twins', 'Perkins, Lucy Fitch', '2003-02-01', 26, 'https://www.gutenberg.org/ebooks/3774', 'en', 309), +(58920, 'Helgelannin sankarit: Näytelmä neljässä näytöksessä', 'Ibsen, Henrik', '2006-01-31', 13, 'https://www.gutenberg.org/ebooks/17651', 'fi', 3671), +(58921, 'Rambles in Cuba', 'Anonymous', '2015-10-13', 9, 'https://www.gutenberg.org/ebooks/50196', 'en', 747), +(58922, 'A Life of William Shakespeare\nwith portraits and facsimiles', 'Lee, Sidney, Sir', '2007-11-12', 49, 'https://www.gutenberg.org/ebooks/23464', 'en', 10080), +(58923, 'The Ocean Wireless Boys on the Atlantic', 'Goldfrap, John Henry', '2015-05-14', 27, 'https://www.gutenberg.org/ebooks/48955', 'en', 196), +(58924, 'The Trail of the Sword, Volume 1', 'Parker, Gilbert', '2004-08-01', 15, 'https://www.gutenberg.org/ebooks/6206', 'en', 1890), +(58925, 'Agnes Strickland\'s Queens of England, Vol. 1. (of 3)\r\nAbridged and Fully Illustrated', 'Strickland, Elisabeth', '2014-10-15', 17, 'https://www.gutenberg.org/ebooks/47121', 'en', 1583), +(58926, 'The Condition of Catholics Under James I.\r\nFather Gerard\'s Narrative of the Gunpowder Plot', 'Gerard, John', '2011-02-07', 50, 'https://www.gutenberg.org/ebooks/35501', 'en', 18882), +(58927, 'Pensées d\'une amazone', 'Barney, Natalie Clifford', '2015-09-06', 45, 'https://www.gutenberg.org/ebooks/49887', 'fr', 18883), +(58928, 'Haoma ja Anahita: Kertomus', 'Hahl, Jalmari', '2016-01-26', 11, 'https://www.gutenberg.org/ebooks/51044', 'fi', 456), +(58929, 'Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 3', 'Jefferson, Thomas', '2005-09-30', 24, 'https://www.gutenberg.org/ebooks/16783', 'en', 3311), +(58930, 'Woman on the American Frontier\r\nA Valuable and Authentic History of the Heroism, Adventures, Privations, Captivities, Trials, and Noble Lives and Deaths of the \"Pioneer Mothers of the Republic\"', 'Fowler, William Worthington', '2004-11-01', 40, 'https://www.gutenberg.org/ebooks/6808', 'en', 16796), +(58931, 'Marriage as a Trade', 'Hamilton, Cicely', '2017-05-11', 26, 'https://www.gutenberg.org/ebooks/54704', 'en', 18884), +(58932, 'The 1990 CIA World Factbook', 'United States. Central Intelligence Agency', '1991-04-01', 206, 'https://www.gutenberg.org/ebooks/14', 'en', 1407), +(58933, 'The Person and Work of The Holy Spirit', 'Torrey, R. A. (Reuben Archer)', '2009-10-13', 284, 'https://www.gutenberg.org/ebooks/30241', 'en', 5248), +(58934, 'For Greater Things: The Story of Saint Stanislaus Kostka', 'Kane, William T. (William Terence)', '2001-02-01', 8, 'https://www.gutenberg.org/ebooks/2494', 'en', 18885), +(58935, 'Scientific Romances (First Series)', 'Hinton, Charles Howard', '2015-06-26', 33, 'https://www.gutenberg.org/ebooks/49289', 'en', 9882), +(58936, 'The Golden Bough: A Study in Magic and Religion (Third Edition, Vol. 09 of 12)', 'Frazer, James George', '2013-05-07', 38, 'https://www.gutenberg.org/ebooks/42661', 'en', 5685), +(58937, 'The Camp Fire Girls on the Field of Honor', 'Vandercook, Margaret', '2010-02-25', 4, 'https://www.gutenberg.org/ebooks/31393', 'en', 146), +(58938, 'The Eureka Stockade', 'Carboni, Raffaello', '2002-11-01', 56, 'https://www.gutenberg.org/ebooks/3546', 'en', 18886), +(58939, 'Ravensdene Court', 'Fletcher, J. S. (Joseph Smith)', '2008-08-15', 47, 'https://www.gutenberg.org/ebooks/26324', 'en', 128), +(58940, 'The Glories of Ireland', NULL, '2004-04-01', 22, 'https://www.gutenberg.org/ebooks/12111', 'en', 3364), +(58941, 'Rhyme and Reason Volume Two', 'Dom', '2004-07-01', 5, 'https://www.gutenberg.org/ebooks/6034', 'en', 8), +(58942, 'Savon jääkäri: Kolmi-näytöksinen näytelmä', 'Hahnsson, Theodolinda', '2014-11-08', 13, 'https://www.gutenberg.org/ebooks/47313', 'fi', 433), +(58943, 'Great Violinists and Pianists', 'Ferris, George T. (George Titus)', '2006-01-04', 23, 'https://www.gutenberg.org/ebooks/17463', 'en', 11595), +(58944, 'Vivian Grey', 'Disraeli, Benjamin, Earl of Beaconsfield', '2006-02-01', 67, 'https://www.gutenberg.org/ebooks/9840', 'en', 1351), +(58945, 'Northern Nut Growers Association, Report of the Proceedings at the Third Annual Meeting\nLancaster, Pennsylvania, December 18 and 19, 1912', NULL, '2007-11-28', 4, 'https://www.gutenberg.org/ebooks/23656', 'en', 1628), +(58946, 'On Laboratory Arts', 'Threlfall, Richard', '2007-09-27', 56, 'https://www.gutenberg.org/ebooks/22784', 'en', 18887), +(58947, 'Erzgebirgs-Kammwegführer\r\nTetschen (Schneeberg) - Erzgebirge - Asch (Hainberg). Mit einer Karte des Kammweges', 'Prasse, E. A.', '2016-02-21', 24, 'https://www.gutenberg.org/ebooks/51276', 'de', 5250), +(58948, 'The Blockade Runners', 'Verne, Jules', '2005-09-01', 42, 'https://www.gutenberg.org/ebooks/8992', 'en', 16009), +(58949, 'Leigh Hunt\'s Relations with Byron, Shelley and Keats', 'Miller, Barnette', '2011-03-31', 13, 'https://www.gutenberg.org/ebooks/35733', 'en', 53), +(58950, 'The Game of Logic', 'Carroll, Lewis', '2003-12-01', 404, 'https://www.gutenberg.org/ebooks/4763', 'en', 2897), +(58951, 'Letters from an Old Railway Official. Second Series: [To] His Son, a General Manager', 'Hine, Charles De Lano', '2014-04-21', 18, 'https://www.gutenberg.org/ebooks/45444', 'en', 14818), +(58952, 'Mindanao: Su Historia y Geografía', 'Nieto Aguilar, José', '2005-03-12', 10, 'https://www.gutenberg.org/ebooks/15334', 'es', 18888), +(58953, 'Pixie O\'Shaughnessy', 'Vaizey, George de Horne, Mrs.', '2007-04-16', 17, 'https://www.gutenberg.org/ebooks/21101', 'en', 62), +(58954, 'Oysters and Fish', 'Murrey, Thomas J. (Thomas Jefferson)', '2016-11-13', 22, 'https://www.gutenberg.org/ebooks/53521', 'en', 1342), +(58955, 'The Works of Robert G. Ingersoll, Vol. 10 (of 12)\nDresden Edition—Legal', 'Ingersoll, Robert Green', '2012-02-09', 31, 'https://www.gutenberg.org/ebooks/38810', 'en', 1191), +(58956, 'Harper\'s Young People, December 28, 1880\nAn Illustrated Monthly', 'Various', '2014-01-05', 1, 'https://www.gutenberg.org/ebooks/44596', 'en', 479), +(58957, 'Encyclopaedia Britannica, 11th Edition, \"Frost\" to \"Fyzabad\"\r\nVolume 11, Slice 3', 'Various', '2011-08-13', 44, 'https://www.gutenberg.org/ebooks/37064', 'en', 1081), +(58958, 'Human Genome Project, Build 34, Chromosome Number 20', 'Human Genome Project', '2004-03-01', 0, 'https://www.gutenberg.org/ebooks/11794', 'en', 1385), +(58959, 'The Day of Doom; Or, a Poetical Description of the Great and Last Judgement', 'Wigglesworth, Michael', '2017-11-26', 21, 'https://www.gutenberg.org/ebooks/56053', 'en', 2447), +(58960, 'A Marriage at Sea', 'Russell, William Clark', '2010-05-24', 19, 'https://www.gutenberg.org/ebooks/32516', 'en', 61), +(58961, 'My Life and Loves, Vol. 1 (of 4)', 'Harris, Frank', '2019-06-27', 362, 'https://www.gutenberg.org/ebooks/59827', 'en', 1299), +(58962, 'The Mercy of the Lord', 'Steel, Flora Annie Webster', '2012-07-03', 14, 'https://www.gutenberg.org/ebooks/40136', 'en', 1228), +(58963, 'A Selection from the Lyrical Poems of Robert Herrick', 'Herrick, Robert', '1998-02-01', 39, 'https://www.gutenberg.org/ebooks/1211', 'en', 466), +(58964, 'The Cat and the Mouse: A Book of Persian Fairy Tales', NULL, '2008-01-31', 144, 'https://www.gutenberg.org/ebooks/24473', 'en', 18889), +(58965, 'Colored girls and boys\' inspiring United States history\nand a heart to heart talk about white folks', 'Harrison, William Henry', '2018-05-19', 9, 'https://www.gutenberg.org/ebooks/57181', 'en', 18890), +(58966, 'Roddy McCorley', 'McGuinn, Roger', '2004-01-01', 3, 'https://www.gutenberg.org/ebooks/10646', 'en', 4856), +(58967, 'Leaves in the Wind', 'Gardiner, A. G. (Alfred George)', '2011-10-26', 138, 'https://www.gutenberg.org/ebooks/37858', 'en', 3835), +(58968, 'Studies on the Legend of the Holy Grail\nWith Especial Reference to the Hypothesis of Its Celtic Origin', 'Nutt, Alfred Trübner', '2013-02-26', 48, 'https://www.gutenberg.org/ebooks/42205', 'en', 18891), +(58969, 'England', 'Warner, Charles Dudley', '2004-12-05', 27, 'https://www.gutenberg.org/ebooks/3122', 'en', 18892), +(58970, 'The Picture of Dorian Gray', 'Wilde, Oscar', '2008-10-01', 353, 'https://www.gutenberg.org/ebooks/26740', 'en', 2815), +(58971, 'The Mirror of Literature, Amusement, and Instruction. Volume 17, No. 471, January 15, 1831', 'Various', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/12575', 'en', 133), +(58972, 'The Silicon Jungle', 'Rothman, David H.', '2017-03-14', 17, 'https://www.gutenberg.org/ebooks/54360', 'en', 18893), +(58973, 'Pen Pictures of British Battles', 'Various', '2019-08-23', 97, 'https://www.gutenberg.org/ebooks/60155', 'en', NULL), +(58974, 'Romulus\r\nMakers of History', 'Abbott, Jacob', '2009-01-03', 33, 'https://www.gutenberg.org/ebooks/27692', 'en', 18894), +(58975, 'Punch, or the London Charivari, Vol. 98, May 3, 1890.', 'Various', '2009-12-07', 14, 'https://www.gutenberg.org/ebooks/30625', 'en', 134), +(58976, 'Desperate Remedies', 'Hardy, Thomas', '2005-12-01', 4, 'https://www.gutenberg.org/ebooks/9418', 'en', 8003), +(58977, 'Runoelmia', 'Mäkinen, Antti', '2009-08-16', 17, 'https://www.gutenberg.org/ebooks/29708', 'fi', 8), +(58978, 'Œuvres de P. Corneille, Tome 07', 'Corneille, Pierre', '2016-03-31', 17, 'https://www.gutenberg.org/ebooks/51612', 'fr', 5816), +(58979, 'Widger\'s Quotes and Images from The Confession of a Child of the Century by Alfred de Musset\r\nThe French Immortals: Quotes and Images', 'Musset, Alfred de', '2009-07-13', 13, 'https://www.gutenberg.org/ebooks/7582', 'en', 2391), +(58980, 'Curious Creatures', 'Anonymous', '2011-02-22', 23, 'https://www.gutenberg.org/ebooks/35357', 'en', 1801), +(58981, 'The Prairie', 'Cooper, James Fenimore', '2004-09-01', 116, 'https://www.gutenberg.org/ebooks/6450', 'en', 98), +(58982, 'Partie carrée', 'Gautier, Théophile', '2010-11-11', 16, 'https://www.gutenberg.org/ebooks/34285', 'fr', 687), +(58983, 'Contes et légendes. 1re Partie', 'Guerber, H. A. (Hélène Adeline)', '2006-07-19', 26, 'https://www.gutenberg.org/ebooks/18873', 'fr', 2216), +(58984, 'Ekkehard: Kertoelma kymmenenneltä vuosisadalta', 'Scheffel, Joseph Victor von', '2014-12-24', 8, 'https://www.gutenberg.org/ebooks/47777', 'fi', 16317), +(58985, 'Imaginäre Brücken: Studien und Aufsätze', 'Wassermann, Jakob', '2005-11-05', 27, 'https://www.gutenberg.org/ebooks/17007', 'de', 3720), +(58986, 'The Servant Problem', 'Young, Robert F.', '2007-10-29', 52, 'https://www.gutenberg.org/ebooks/23232', 'en', 26), +(58987, 'My Friend Prospero', 'Harland, Henry', '2005-01-13', 26, 'https://www.gutenberg.org/ebooks/14682', 'en', 16), +(58988, 'The Great Taxicab Robbery: A True Detective Story', 'Collins, James H. (James Hiram)', '2016-09-25', 21, 'https://www.gutenberg.org/ebooks/53145', 'en', 18895), +(58989, 'The Travels and Adventures of James Massey', 'Tyssot de Patot, Simon', '2011-09-11', 23, 'https://www.gutenberg.org/ebooks/37400', 'en', 467), +(58990, 'In the Year of Jubilee', 'Gissing, George', '2003-08-01', 34, 'https://www.gutenberg.org/ebooks/4307', 'en', 18896), +(58991, 'The Divining Rod: Virgula Divina—Baculus Divinatorius (Water-Witching)', 'Latimer, Charles', '2014-02-26', 23, 'https://www.gutenberg.org/ebooks/45020', 'en', 18897), +(58992, 'Andy Gordon; Or, The Fortunes of A Young Janitor', 'Alger, Horatio, Jr.', '2016-05-18', 21, 'https://www.gutenberg.org/ebooks/52097', 'en', 18898), +(58993, 'Pee-wee Harris on the Trail', 'Fitzhugh, Percy Keese', '2005-05-02', 14, 'https://www.gutenberg.org/ebooks/15750', 'en', 2994), +(58994, 'The Queen\'s Matrimonial Ladder\r\nA National Toy, With Fourteen Step Scenes; and Illustrations in Verse, With Eighteen other Cuts', 'Hone, William', '2014-01-14', 56, 'https://www.gutenberg.org/ebooks/21565', 'en', 18899), +(58995, 'Aristotle and Ancient Educational Ideals', 'Davidson, Thomas', '2012-08-21', 100, 'https://www.gutenberg.org/ebooks/40552', 'en', 505), +(58996, 'Modern Magic', 'Schele de Vere, M. (Maximilian)', '2011-12-30', 165, 'https://www.gutenberg.org/ebooks/38448', 'en', 5685), +(58997, 'The Borzoi 1920: Being a sort of record of five years\' publishing', 'Alfred A. Knopf, Inc.', '2017-01-17', 38, 'https://www.gutenberg.org/ebooks/53979', 'en', 9404), +(58998, 'New Forces in Old China: An Inevitable Awakening', 'Brown, Arthur Judson', '1999-03-01', 21, 'https://www.gutenberg.org/ebooks/1675', 'en', 18900), +(58999, 'Das Motiv der Kästchenwahl', NULL, '2007-12-24', 36, 'https://www.gutenberg.org/ebooks/24017', 'de', 18901), +(59000, 'The Pilgrims of New England\nA Tale of the Early American Settlers', 'Webb-Peploe, Mrs. (Annie)', '2003-11-01', 25, 'https://www.gutenberg.org/ebooks/10222', 'en', 18902), +(59001, 'Rice Papers', 'Norris, Hugh Leigh', '2018-01-25', 13, 'https://www.gutenberg.org/ebooks/56437', 'en', 6011), +(59002, 'Children\'s Stories in American Literature, 1660-1860', 'Wright, Henrietta Christian', '2010-04-28', 27, 'https://www.gutenberg.org/ebooks/32172', 'en', 18903), +(59003, 'Christmas Evans, the Preacher of Wild Wales\r\nHis country, his times, and his contemporaries', 'Hood, Edwin Paxton', '2012-11-25', 15, 'https://www.gutenberg.org/ebooks/41480', 'en', 18904), +(59004, 'Journal of Entomology and Zoology, Vol. 11, No. 4, December 1919', 'Various', '2011-10-05', 15, 'https://www.gutenberg.org/ebooks/37632', 'en', 11920), +(59005, 'Poetics', 'Aristotle', '2007-02-03', 48, 'https://www.gutenberg.org/ebooks/20685', 'en', 5878), +(59006, 'The American Missionary — Volume 32, No. 10, October, 1878', 'Various', '2016-10-27', 2, 'https://www.gutenberg.org/ebooks/53377', 'en', 562), +(59007, 'The S. W. F. Club', 'Jacobs, Caroline Emilia', '2005-04-06', 11, 'https://www.gutenberg.org/ebooks/15562', 'en', 18905), +(59008, 'The Hot Swamp', 'Ballantyne, R. M. (Robert Michael)', '2007-06-07', 31, 'https://www.gutenberg.org/ebooks/21757', 'en', 3532), +(59009, 'Diary of Samuel Pepys — Volume 17: July/August 1662', 'Pepys, Samuel', '2004-11-29', 18, 'https://www.gutenberg.org/ebooks/4135', 'en', 738), +(59010, 'Les Romans de la Table Ronde (3 / 5)\r\nMis en nouveau langage et accompagnés de recherches sur l\'origine et le caractère de ces grandes compositions', NULL, '2014-03-25', 5, 'https://www.gutenberg.org/ebooks/45212', 'fr', 5637), +(59011, '戲中戲', 'Aiyuezhuren', '2008-01-10', 59, 'https://www.gutenberg.org/ebooks/24225', 'zh', NULL), +(59012, 'The Eulogies of Howard: A Vision', 'Hayley, William', '2003-11-01', 15, 'https://www.gutenberg.org/ebooks/10010', 'en', 18906), +(59013, 'Fifty Years in Chains; or, the Life of an American Slave', 'Ball, Charles', '2012-09-14', 76, 'https://www.gutenberg.org/ebooks/40760', 'en', 18907), +(59014, 'Punch or the London Charivari, Vol. 98 June 7, 1890', 'Various', '2010-07-30', 9, 'https://www.gutenberg.org/ebooks/33292', 'en', 134), +(59015, 'The Illustrious Prince', 'Oppenheim, E. Phillips (Edward Phillips)', '1998-09-01', 28, 'https://www.gutenberg.org/ebooks/1447', 'en', 905), +(59016, 'The O\'Donoghue: Tale of Ireland Fifty Years Ago', 'Lever, Charles James', '2010-05-11', 20, 'https://www.gutenberg.org/ebooks/32340', 'en', 669), +(59017, 'Олаф ван Гелдерн', 'Slaveikov, Pencho P.', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4909', 'bg', NULL), +(59018, 'Madame de Staël', 'Duffy, Bella', '2018-02-19', 5, 'https://www.gutenberg.org/ebooks/56605', 'en', 14887), +(59019, 'Chips from a German Workshop, Volume 3\r\nEssays on Literature, Biography, and Antiquities', 'Müller, F. Max (Friedrich Max)', '2008-09-10', 10, 'https://www.gutenberg.org/ebooks/26572', 'en', 1223), +(59020, 'The Story of Grettir the Strong', NULL, '2004-06-26', 54, 'https://www.gutenberg.org/ebooks/12747', 'en', 18908), +(59021, 'The Widow\'s Vow: A Farce, in Two Acts', 'Inchbald, Mrs.', '2011-04-25', 9, 'https://www.gutenberg.org/ebooks/35959', 'en', 1088), +(59022, 'The Worst Boy in Town', 'Habberton, John', '2017-07-09', 28, 'https://www.gutenberg.org/ebooks/55080', 'en', 3334), +(59023, 'Notes and Queries, Number 135, May 29, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-07', 12, 'https://www.gutenberg.org/ebooks/42037', 'en', 105), +(59024, 'A Forgotten Empire (Vijayanagar): A Contribution to the History of India', 'Paes, Domingos, active 16th century', '2002-07-01', 211, 'https://www.gutenberg.org/ebooks/3310', 'en', 18909), +(59025, 'The Bright Face of Danger\r\nBeing an Account of Some Adventures of Henri de Launay, Son of the Sieur de la Tournoire', 'Stephens, Robert Neilson', '2009-11-07', 14, 'https://www.gutenberg.org/ebooks/30417', 'en', 98), +(59026, 'U.S. Copyright Renewals: Artwork 1951-1959\r\nCatalog of Copyright Entries', 'Library of Congress. Copyright Office', '2017-02-11', 17, 'https://www.gutenberg.org/ebooks/54152', 'en', 15118), +(59027, 'A Love Episode', 'Zola, Émile', '2004-10-11', 35, 'https://www.gutenberg.org/ebooks/13695', 'en', 607), +(59028, 'The Legend of Sir Lancelot du Lac\r\nStudies upon its Origin, Development, and Position in the Arthurian Romantic Cycle', 'Weston, Jessie L. (Jessie Laidlay)', '2014-08-03', 27, 'https://www.gutenberg.org/ebooks/46497', 'en', 18910), +(59029, 'The Crooked Stick; Or, Pollie\'s Probation', 'Boldrewood, Rolf', '2011-02-04', 8, 'https://www.gutenberg.org/ebooks/35165', 'en', 792), +(59030, 'License to Steal', 'Newman, Louis', '2016-03-11', 22, 'https://www.gutenberg.org/ebooks/51420', 'en', 424), +(59031, 'Antiquités d\'Herculanum, Tome V.\r\nBronzes', 'Piroli, Tommaso', '2005-12-05', 17, 'https://www.gutenberg.org/ebooks/17235', 'fr', 10954), +(59032, 'Orley Farm', 'Trollope, Anthony', '2007-10-13', 93, 'https://www.gutenberg.org/ebooks/23000', 'en', 3376), +(59033, 'Little Citizens: The Humours of School Life', 'Kelly, Myra', '2004-10-01', 10, 'https://www.gutenberg.org/ebooks/6662', 'en', 18911), +(59034, 'Kun kansa nousee: Muistelmia ja kokemuksia Suomen vapaussodasta', 'Wilkuna, Kyösti', '2014-12-05', 19, 'https://www.gutenberg.org/ebooks/47545', 'fi', 18912), +(59035, 'Les nuits mexicaines', 'Aimard, Gustave', '2015-08-05', 33, 'https://www.gutenberg.org/ebooks/49619', 'fr', 298), +(59036, '\'Mid Pleasures and Palaces', 'McKimmey, James', '2010-03-19', 18, 'https://www.gutenberg.org/ebooks/31703', 'en', 179), +(59037, 'Baseball ABC', NULL, '2006-09-03', 31, 'https://www.gutenberg.org/ebooks/19169', 'en', 18913), +(59038, 'Yorkshire Vales and Wolds', 'Home, Gordon', '2017-08-02', 11, 'https://www.gutenberg.org/ebooks/55246', 'en', 10118), +(59039, 'Elbow-Room: A Novel Without a Plot', 'Clark, Charles Heber', '2004-06-01', 5, 'https://www.gutenberg.org/ebooks/12581', 'en', 637), +(59040, 'The Testing of Diana Mallory', 'Ward, Humphry, Mrs.', '2004-09-14', 28, 'https://www.gutenberg.org/ebooks/13453', 'en', 48), +(59041, 'A Biography of the Signers of the Declaration of Independence, and of Washington and Patrick Henry\r\nWith an appendix, containing the Constitution of the United States, and other documents', 'Judson, L. Carroll (Levi Carroll)', '2017-03-20', 54, 'https://www.gutenberg.org/ebooks/54394', 'en', 18914), +(59042, 'Seek and Find; or, The Adventures of a Smart Boy', 'Optic, Oliver', '2008-12-31', 11, 'https://www.gutenberg.org/ebooks/27666', 'en', 13782), +(59043, 'Pigs is Pigs', 'Butler, Ellis Parker', '1999-12-01', 78, 'https://www.gutenberg.org/ebooks/2004', 'en', 637), +(59044, 'Hints on cheese-making, for the dairyman, the factoryman, and the manufacturer', 'Curtis, T. D. (Thomas Day)', '2013-07-27', 36, 'https://www.gutenberg.org/ebooks/43323', 'en', 13218), +(59045, 'Mysticism and its Results: Being an Inquiry into the Uses and Abuses of Secrecy', 'Delafield, John', '2007-08-14', 17, 'https://www.gutenberg.org/ebooks/22314', 'en', 7077), +(59046, 'Brothers of Pity and Other Tales of Beasts and Men', 'Ewing, Juliana Horatia Gatty', '2005-06-23', 28, 'https://www.gutenberg.org/ebooks/16121', 'en', 625), +(59047, 'A Soldier of the Legion', 'Morlae, Edward', '2014-08-22', 18, 'https://www.gutenberg.org/ebooks/46651', 'en', 449), +(59048, 'L\'institution des enfans, ou conseils d\'un père à son fils\nImités des vers que Muret a écrits en latin, pour l\'usage\nde son neveu, et qui peuvent servir à tous les jeunes\nécoliers', 'François de Neufchâteau, Nicolas Louis, comte', '2006-11-28', 20, 'https://www.gutenberg.org/ebooks/19955', 'fr', 18915), +(59049, 'Widger\'s Quotes and Images from Monsieur de Camors by Octave Feuillet\r\nThe French Immortals: Quotes and Images', 'Feuillet, Octave', '2009-07-13', 15, 'https://www.gutenberg.org/ebooks/7576', 'en', 2391), +(59050, 'Si Rizal at ang mga Diwata: Zarzuelang Tagalog na may Dalawang Yugto', 'Sevilla, Jose N.', '2006-07-22', 8, 'https://www.gutenberg.org/ebooks/18887', 'tl', 9065), +(59051, 'Misalliance', 'Shaw, Bernard', '1997-06-01', 213, 'https://www.gutenberg.org/ebooks/943', 'en', 317), +(59052, 'Is Polite Society Polite? and Other Essays', 'Howe, Julia Ward', '2010-11-10', 24, 'https://www.gutenberg.org/ebooks/34271', 'en', 4637), +(59053, 'L\'Illustration, No. 1604, 22 novembre 1873', 'Various', '2014-12-26', 11, 'https://www.gutenberg.org/ebooks/47783', 'fr', 150), +(59054, 'De Beurs Lacht', 'Heine, Heinrich', '2001-09-01', 12, 'https://www.gutenberg.org/ebooks/2838', 'nl', 18916), +(59055, 'Report of Mr. Wood\'s Visit to the Choctaw and Cherokee Missions. 1855', 'Wood, George W. (George Warren)', '2015-12-21', 5, 'https://www.gutenberg.org/ebooks/50734', 'en', 18917), +(59056, 'The Letter of the Contract', 'King, Basil', '2007-01-25', 24, 'https://www.gutenberg.org/ebooks/20443', 'en', 2083), +(59057, 'The Essays of Adam Smith', 'Smith, Adam', '2018-12-28', 146, 'https://www.gutenberg.org/ebooks/58559', 'en', 680), +(59058, 'Women and War Work', 'Fraser, Helen', '2005-01-12', 32, 'https://www.gutenberg.org/ebooks/14676', 'en', 4418), +(59059, 'The Casque\'s Lark; or, Victoria, the Mother of the Camps', 'Sue, Eugène', '2010-10-17', 9, 'https://www.gutenberg.org/ebooks/33868', 'en', 4545), +(59060, 'The Confession of a Fool', 'Strindberg, August', '2013-11-05', 17, 'https://www.gutenberg.org/ebooks/44106', 'en', 11814), +(59061, 'The Satyricon — Volume 04 : Escape by Sea', 'Petronius Arbiter', '2004-06-01', 11, 'https://www.gutenberg.org/ebooks/5221', 'en', 10219), +(59062, 'Legendy i pieśni ludu polskiego nowo odkryte', 'Maciejowski, Wacław Aleksander', '2011-06-26', 22, 'https://www.gutenberg.org/ebooks/36526', 'pl', 10374), +(59063, 'Literatura Mondo, numero 2, 1922 Novembro', NULL, '2016-05-14', 4, 'https://www.gutenberg.org/ebooks/52063', 'eo', 18821), +(59064, 'The Harbours of England', 'Ruskin, John', '2007-05-23', 23, 'https://www.gutenberg.org/ebooks/21591', 'en', 18918), +(59065, 'Eryxias', 'Plato (spurious and doubtful works)', '1999-03-01', 22, 'https://www.gutenberg.org/ebooks/1681', 'en', 2286), +(59066, 'Harper\'s Round Table, July 9, 1895', 'Various', '2010-07-02', 11, 'https://www.gutenberg.org/ebooks/33054', 'en', 668), +(59067, 'Index for Works of Ruth Ogden\nHyperlinks to all Chapters of all Individual Ebooks', 'Ogden, Ruth', '2018-07-15', 7, 'https://www.gutenberg.org/ebooks/57511', 'en', 198), +(59068, 'The Lake', 'Moore, George', '2004-02-01', 21, 'https://www.gutenberg.org/ebooks/11304', 'en', 520), +(59069, '吳越春秋', 'Zhao, Ye, active 40', '2008-04-22', 10, 'https://www.gutenberg.org/ebooks/25131', 'zh', 18919), +(59070, 'Tales from \"Blackwood,\" Volume 2', 'Various', '2010-04-30', 12, 'https://www.gutenberg.org/ebooks/32186', 'en', 61), +(59071, 'The Dixie Book of Days', 'Andrews, Matthew Page', '2012-11-24', 15, 'https://www.gutenberg.org/ebooks/41474', 'en', 18920), +(59072, 'Chantilly in History and Art', 'Richter, Luise', '2013-12-01', 21, 'https://www.gutenberg.org/ebooks/44334', 'en', 18921), +(59073, 'State of the Union Addresses', 'Madison, James', '2004-02-01', 6, 'https://www.gutenberg.org/ebooks/5013', 'en', 1926), +(59074, 'The Copyright Question: A Letter to the Toronto Board of Trade', 'Morang, George N. (George Nathaniel)', '2007-02-03', 1, 'https://www.gutenberg.org/ebooks/20671', 'en', 2983), +(59075, 'The Story of Don John of Austria', 'Coloma, Luis', '2016-10-27', 21, 'https://www.gutenberg.org/ebooks/53383', 'en', 18922), +(59076, 'The Complete English Tradesman (1839 ed.)', 'Defoe, Daniel', '2004-12-24', 57, 'https://www.gutenberg.org/ebooks/14444', 'en', 18923), +(59077, 'Bressant: A Novel', 'Hawthorne, Julian', '2005-04-09', 19, 'https://www.gutenberg.org/ebooks/15596', 'en', 847), +(59078, 'Constantinople, v. 2 (of 2)', 'De Amicis, Edmondo', '2016-06-06', 24, 'https://www.gutenberg.org/ebooks/52251', 'en', 18924), +(59079, 'Dickens', 'Ward, Adolphus William, Sir', '2011-07-12', 21, 'https://www.gutenberg.org/ebooks/36714', 'en', 5826), +(59080, 'The Orkneyinga Saga', 'Anonymous', '2018-08-18', 45, 'https://www.gutenberg.org/ebooks/57723', 'en', 18925), +(59081, 'Essays in Experimental Logic', 'Dewey, John', '2012-09-19', 48, 'https://www.gutenberg.org/ebooks/40794', 'en', 1482), +(59082, 'Herr und Knecht: Novelle', 'Tolstoy, Leo, graf', '2010-07-26', 50, 'https://www.gutenberg.org/ebooks/33266', 'de', 1871), +(59083, 'Emmeline, the Orphan of the Castle', 'Smith, Charlotte', '2012-12-17', 34, 'https://www.gutenberg.org/ebooks/41646', 'en', 428), +(59084, 'A Discourse Upon the Origin and the Foundation of the Inequality Among Mankind', 'Rousseau, Jean-Jacques', '2004-02-01', 333, 'https://www.gutenberg.org/ebooks/11136', 'en', 8061), +(59085, 'The Bad Boy at Home, and His Experiences in Trying to Become an Editor\r\n1885', 'Victor, Metta Victoria Fuller', '2008-05-02', 15, 'https://www.gutenberg.org/ebooks/25303', 'en', 18926), +(59086, 'Studies in Pessimism', 'Schopenhauer, Arthur', '2008-09-01', 11, 'https://www.gutenberg.org/ebooks/26586', 'en', 9165), +(59087, 'The Cruise of the Sally D', 'Otis, James', '2017-07-08', 7, 'https://www.gutenberg.org/ebooks/55074', 'en', 141), +(59088, 'O Sprawie Glodowej W Galicyi 1866\nLuzne Uwagi', 'Langie, Karol', '2010-03-07', 24, 'https://www.gutenberg.org/ebooks/31531', 'pl', 18927), +(59089, 'The Two Gentlemen of Verona', 'Shakespeare, William', '2000-07-01', 32, 'https://www.gutenberg.org/ebooks/2236', 'en', 4991), +(59090, 'The Personal History of David Copperfield', 'Dickens, Charles', '2013-07-06', 91, 'https://www.gutenberg.org/ebooks/43111', 'en', 3210), +(59091, 'Diario de un viage a la costa de la mar Magallanica', 'Lozano, Pedro', '2006-04-30', 23, 'https://www.gutenberg.org/ebooks/18289', 'es', 3639), +(59092, 'Der Bankerott: Eine gesellschaftliche Tragödie in fünf Akten', 'Müller, Florian', '2004-10-06', 12, 'https://www.gutenberg.org/ebooks/13661', 'de', 402), +(59093, 'In Her Own Right', 'Scott, John Reed', '2008-12-08', 56, 'https://www.gutenberg.org/ebooks/27454', 'en', 48), +(59094, 'Brani inediti dei Promessi Sposi, vol. 2\r\nOpere di Alessando Manzoni vol. 2 parte 2', 'Manzoni, Alessandro', '2014-07-31', 18, 'https://www.gutenberg.org/ebooks/46463', 'it', 5122), +(59095, 'Some notes on the bibliography of the Philippines', 'Middleton, Thomas C. (Thomas Cooke)', '2011-02-07', 13, 'https://www.gutenberg.org/ebooks/35191', 'en', 18928), +(59096, 'Satuja ja tarinoita IV', 'Andersen, H. C. (Hans Christian)', '2017-10-29', 12, 'https://www.gutenberg.org/ebooks/55848', 'fi', 1007), +(59097, 'The Parisians — Volume 08', 'Lytton, Edward Bulwer Lytton, Baron', '2005-03-01', 2, 'https://www.gutenberg.org/ebooks/7744', 'en', 1165), +(59098, 'Notes and Queries, Number 35, June 29, 1850\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-07-24', 17, 'https://www.gutenberg.org/ebooks/22126', 'en', 105), +(59099, 'Hovin Inkeri\nHistoriallinen kertomus Pohjois-Karjalasta', 'Kepplerus, Anni', '2005-07-16', 9, 'https://www.gutenberg.org/ebooks/16313', 'fi', 98), +(59100, 'Down the Orinoco in a Canoe', 'Pérez Triana, Santiago', '2015-11-20', 9, 'https://www.gutenberg.org/ebooks/50506', 'en', 3628), +(59101, 'The Esperantist, Vol. 1, No. 9', NULL, '2010-10-07', 13, 'https://www.gutenberg.org/ebooks/34043', 'en', 3912), +(59102, 'Die Leute von Seldwyla — Band 1', 'Keller, Gottfried', '2004-10-01', 50, 'https://www.gutenberg.org/ebooks/6696', 'de', 4038), +(59103, 'Leurs Excellences', 'Puliga, Henrietta de Quigini', '2016-07-24', 9, 'https://www.gutenberg.org/ebooks/52635', 'fr', 298), +(59104, 'The Bishop and the Boogerman', 'Harris, Joel Chandler', '2011-06-10', 25, 'https://www.gutenberg.org/ebooks/36370', 'en', 62), +(59105, 'Gray youth: The story of a very modern courtship and a very modern marriage', 'Onions, Oliver', '2014-05-18', 29, 'https://www.gutenberg.org/ebooks/45682', 'en', 14342), +(59106, 'The Library of Work and Play: Home Decoration', 'Warner, Charles Franklin', '2014-01-25', 12, 'https://www.gutenberg.org/ebooks/44750', 'en', 1837), +(59107, 'Cleopatra — Volume 05', 'Ebers, Georg', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/5477', 'en', 984), +(59108, 'An Onlooker in France 1917-1919', 'Orpen, William, Sir', '2006-12-29', 38, 'https://www.gutenberg.org/ebooks/20215', 'en', 449), +(59109, 'The Works of Horace', 'Horace', '2004-11-11', 156, 'https://www.gutenberg.org/ebooks/14020', 'en', 2673), +(59110, 'Notes and Queries, Vol. IV, Number 110, December 6, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2012-04-01', 6, 'https://www.gutenberg.org/ebooks/39338', 'en', 105), +(59111, 'Captain Paul', 'Dumas, Alexandre', '2012-10-29', 29, 'https://www.gutenberg.org/ebooks/41222', 'en', 4024), +(59112, 'Török világ Magyarországon (1. rész)\r\nTörténeti regény', 'Jókai, Mór', '2018-01-02', 4, 'https://www.gutenberg.org/ebooks/56295', 'hu', 2490), +(59113, 'Slave Narratives: a Folk History of Slavery in the United States\nFrom Interviews with Former Slaves\nMaryland Narratives', 'United States. Work Projects Administration', '2004-03-01', 49, 'https://www.gutenberg.org/ebooks/11552', 'en', 18929), +(59114, 'Picture and Text\n1893', 'James, Henry', '2008-06-12', 44, 'https://www.gutenberg.org/ebooks/25767', 'en', 787), +(59115, 'Kauppa-Lopo', 'Canth, Minna', '2003-12-01', 12, 'https://www.gutenberg.org/ebooks/10480', 'fi', 456), +(59116, 'A Motor-Flight Through France', 'Wharton, Edith', '2018-06-18', 30, 'https://www.gutenberg.org/ebooks/57347', 'en', 18930), +(59117, 'The Firebrand', 'Crockett, S. R. (Samuel Rutherford)', '2010-09-01', 11, 'https://www.gutenberg.org/ebooks/33602', 'en', 4403), +(59118, 'Personal Memoirs of P. H. Sheridan, General, United States Army — Volume 2', 'Sheridan, Philip Henry', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/2652', 'en', 2723), +(59119, 'Amaryllis at the Fair', 'Jefferies, Richard', '2009-09-25', 25, 'https://www.gutenberg.org/ebooks/30087', 'en', 61), +(59120, 'Annali d\'Italia, vol. 2\ndal principio dell\'era volgare sino all\'anno 1750', 'Muratori, Lodovico Antonio', '2013-08-27', 19, 'https://www.gutenberg.org/ebooks/43575', 'it', 6107), +(59121, 'The Souls of Black Folk', 'Du Bois, W. E. B. (William Edward Burghardt)', '2009-05-01', 44, 'https://www.gutenberg.org/ebooks/28844', 'en', 180), +(59122, 'Hackers, Heroes of the Computer Revolution\r\nChapters 1 and 2', 'Levy, Steven', '1996-11-01', 373, 'https://www.gutenberg.org/ebooks/729', 'en', 17753), +(59123, 'Civics: as Applied Sociology', 'Geddes, Patrick, Sir', '2004-08-17', 30, 'https://www.gutenberg.org/ebooks/13205', 'en', 4292), +(59124, 'From the Print Media to the Internet', 'Lebert, Marie', '2008-10-26', 18, 'https://www.gutenberg.org/ebooks/27030', 'en', 7900), +(59125, 'Henkimaailman salaisuuksia', 'Schöldström, Birger', '2017-08-22', 9, 'https://www.gutenberg.org/ebooks/55410', 'fi', 504), +(59126, 'Manifesto dos Estudantes da Universidade de Coimbra á opinião illustrada do paiz', 'Quental, Antero de', '2009-09-15', 8, 'https://www.gutenberg.org/ebooks/29996', 'pt', 18931), +(59127, 'The King\'s Highway', 'James, G. P. R. (George Payne Rainsford)', '2003-02-01', 12, 'https://www.gutenberg.org/ebooks/3780', 'en', 10150), +(59128, 'The Bible, Douay-Rheims, Book 68: 2 Peter\nThe Challoner Revision', NULL, '2005-06-01', 3, 'https://www.gutenberg.org/ebooks/8368', 'en', 4082), +(59129, 'The Academy Keeper\r\nOr Variety of useful Directions Concerning the Management of an Academy, The Terms, Diet, Lodging, Recreation, Discipline, and Instruction of Young Gentlemen. With the Proper Methods of addressing Parents and Guardians of all Ranks and Conditions', 'Anonymous', '2010-02-01', 31, 'https://www.gutenberg.org/ebooks/31155', 'en', 1971), +(59130, 'Songs of love and empire', 'Nesbit, E. (Edith)', '2015-10-08', 24, 'https://www.gutenberg.org/ebooks/50162', 'en', 532), +(59131, 'Adolphe : Anecdote trouvée dans les papiers d\'un inconnu\r\nSuivi de quelques réflexions sur le théâtre allemand et sur la tragédie de Wallstein, et de l\'esprit de conquête et de l\'usurpation', 'Constant, Benjamin', '2009-02-14', 26, 'https://www.gutenberg.org/ebooks/28078', 'fr', 7185), +(59132, 'Pickwickian Studies', 'Fitzgerald, Percy', '2007-11-15', 40, 'https://www.gutenberg.org/ebooks/23490', 'en', 12331), +(59133, 'Dr. Lavendar\'s People', 'Deland, Margaret Wade Campbell', '2011-10-11', 26, 'https://www.gutenberg.org/ebooks/34427', 'en', 712), +(59134, 'Our Young Aeroplane Scouts in Russia; or, Lost on the Frozen Steppes', 'Porter, Horace', '2014-06-16', 12, 'https://www.gutenberg.org/ebooks/46007', 'en', 325), +(59135, 'Afghanistan and the Anglo-Russian Dispute', 'Rodenbough, Theophilus F. (Theophilus Francis)', '2005-01-01', 21, 'https://www.gutenberg.org/ebooks/7320', 'en', 14229), +(59136, 'Jesus the Christ\nA Study of the Messiah and His Mission According to Holy\nScriptures Both Ancient and Modern', 'Talmage, James E. (James Edward)', '2007-09-08', 290, 'https://www.gutenberg.org/ebooks/22542', 'en', 18932), +(59137, 'The Boys\' Book of Submarines', 'Collins, Virgil D. (Virgil Dewey)', '2015-09-04', 20, 'https://www.gutenberg.org/ebooks/49873', 'en', 18933), +(59138, 'The Heart of the Desert\nKut-Le of the Desert', 'Morrow, Honoré', '2005-09-30', 18, 'https://www.gutenberg.org/ebooks/16777', 'en', 315), +(59139, 'Eleven days in the militia during the war of the rebellion\nA journal of the \'Emergency\' campaign of 1862', 'Richards, Louis', '2010-04-12', 7, 'https://www.gutenberg.org/ebooks/31969', 'en', 444), +(59140, 'The Rowley Poems', 'Chatterton, Thomas', '2004-07-28', 38, 'https://www.gutenberg.org/ebooks/13037', 'en', 3947), +(59141, 'Wagner, the Wehr-Wolf', 'Reynolds, George W. M. (George William MacArthur)', '2008-11-08', 75, 'https://www.gutenberg.org/ebooks/27202', 'en', 1811), +(59142, 'The Madonna of the Future', 'James, Henry', '2001-01-01', 43, 'https://www.gutenberg.org/ebooks/2460', 'en', 297), +(59143, 'Thoroughbreds', 'Fraser, William Alexander', '2005-10-01', 27, 'https://www.gutenberg.org/ebooks/9088', 'en', 4835), +(59144, 'Apró regények (2. kötet)', 'Bródy, Sándor', '2013-09-16', 13, 'https://www.gutenberg.org/ebooks/43747', 'hu', 189), +(59145, 'Œuvres complètes de Chamfort (Tome 2)\r\nRecueillies et publiées, avec une notice historique sur la vie et les écrits de l\'auteur.', 'Chamfort, Sébastien-Roch-Nicolas', '2013-05-11', 38, 'https://www.gutenberg.org/ebooks/42695', 'fr', 742), +(59146, 'The Training of a Forester', 'Pinchot, Gifford', '2010-02-23', 49, 'https://www.gutenberg.org/ebooks/31367', 'en', 18934), +(59147, 'Red Wagon Stories; or, Tales Told Under the Tent', 'Hawks, Wells', '2017-09-24', 23, 'https://www.gutenberg.org/ebooks/55622', 'en', 7696), +(59148, 'Alaska, the Great Country', 'Higginson, Ella', '2010-12-10', 14, 'https://www.gutenberg.org/ebooks/34615', 'en', 5908), +(59149, 'History, Manners, and Customs of the Indian Nations Who Once Inhabited Pennsylvania and the Neighbouring States.', 'Heckewelder, John Gottlieb Ernestus', '2015-10-31', 20, 'https://www.gutenberg.org/ebooks/50350', 'en', 18935), +(59150, 'Ole Mammy\'s Torment', 'Johnston, Annie F. (Annie Fellows)', '2006-01-12', 21, 'https://www.gutenberg.org/ebooks/17497', 'en', 751), +(59151, 'French Reader on the Cumulative Method\nThe story of Rodolphe and Coco the Chimpanzee', 'Dreyspring, Adolphe', '2009-07-13', 8, 'https://www.gutenberg.org/ebooks/29398', 'fr', 2216), +(59152, 'The Continental Monthly, Vol. 5, No. 5, May, 1864\nDevoted To Literature And National Policy', 'Various', '2007-09-26', 16, 'https://www.gutenberg.org/ebooks/22770', 'en', 162), +(59153, 'Secret Places of the Heart', 'Wells, H. G. (Herbert George)', '2005-09-01', 4, 'https://www.gutenberg.org/ebooks/8966', 'en', 61), +(59154, 'King Alfred of England\nMakers of History', 'Abbott, Jacob', '2005-08-18', 65, 'https://www.gutenberg.org/ebooks/16545', 'en', 18936), +(59155, 'Lords and Lovers, and Other Dramas', 'Dargan, Olive Tilford', '2016-02-22', 10, 'https://www.gutenberg.org/ebooks/51282', 'en', 427), +(59156, 'The Passing of the Turkish Empire in Europe', 'Baker, B. Granville (Bernard Granville)', '2014-07-09', 24, 'https://www.gutenberg.org/ebooks/46235', 'en', 12965), +(59157, 'Erema; Or, My Father\'s Sin', 'Blackmore, R. D. (Richard Doddridge)', '2006-06-06', 24, 'https://www.gutenberg.org/ebooks/7112', 'en', 4905), +(59158, 'Punch, or the London Charivari, Vol. 105, August 26th 1893', 'Various', '2011-05-19', 6, 'https://www.gutenberg.org/ebooks/36142', 'en', 134), +(59159, 'The Complete Poetical Works of Percy Bysshe Shelley — Volume 1', 'Shelley, Percy Bysshe', '2003-12-01', 72, 'https://www.gutenberg.org/ebooks/4797', 'en', 54), +(59160, 'Second Base Sloan', 'Mathewson, Christy', '2016-06-25', 11, 'https://www.gutenberg.org/ebooks/52407', 'en', 6620), +(59161, 'Meg\'s Friend: A Story for Girls', 'Corkran, Alice', '2012-06-07', 15, 'https://www.gutenberg.org/ebooks/39936', 'en', 3248), +(59162, 'Grimms\' Fairy Tales', 'Grimm, Jacob', '2006-11-06', 16, 'https://www.gutenberg.org/ebooks/20027', 'en', 900), +(59163, 'Viinantehtailia', 'Hahnsson, Theodolinda', '2004-11-30', 8, 'https://www.gutenberg.org/ebooks/14212', 'fi', 402), +(59164, 'A Dictionary of Arts, Manufactures and Mines\ncontaining a clear exposition of their principles and practice', 'Ure, Andrew', '2014-01-01', 25, 'https://www.gutenberg.org/ebooks/44562', 'en', 16049), +(59165, 'Were You Ever a Child?', 'Dell, Floyd', '2018-09-22', 29, 'https://www.gutenberg.org/ebooks/57949', 'en', 973), +(59166, 'Our Knowledge of the External World as a Field for Scientific Method in Philosophy', 'Russell, Bertrand', '2011-08-15', 160, 'https://www.gutenberg.org/ebooks/37090', 'en', 18937), +(59167, 'Sketches by Seymour — Volume 01', 'Seymour, Robert', '2004-07-11', 21, 'https://www.gutenberg.org/ebooks/5645', 'en', 1688), +(59168, 'The World\'s Great Sermons, Volume 10: Drummond to Jowett, and General Index', NULL, '2004-03-01', 28, 'https://www.gutenberg.org/ebooks/11760', 'en', 3021), +(59169, 'Fairy Tales of the Slav Peasants and Herdsmen', 'Chodzko, Alexander', '2008-05-22', 94, 'https://www.gutenberg.org/ebooks/25555', 'en', 18938), +(59170, 'A Colony of Girls', 'Willard, Kate Livingston', '2012-10-10', 11, 'https://www.gutenberg.org/ebooks/41010', 'en', 5925), +(59171, 'Mosada: A dramatic poem', 'Yeats, W. B. (William Butler)', '2010-08-14', 19, 'https://www.gutenberg.org/ebooks/33430', 'en', 402), +(59172, 'A View of Society and Manners in Italy, Volume 1 (of 2)\r\nWith Anecdotes Relating to some Eminent Characters', 'Moore, John', '2019-02-17', 5, 'https://www.gutenberg.org/ebooks/58901', 'en', 10994), +(59173, 'The Story of Pocahontas and Captain John Smith', 'Smith, E. Boyd (Elmer Boyd)', '2008-02-02', 73, 'https://www.gutenberg.org/ebooks/24487', 'en', 2259), +(59174, 'The Autobiography of an Indian Princess', 'Sunity Devee, Maharani of Cooch Behar', '2018-05-17', 25, 'https://www.gutenberg.org/ebooks/57175', 'en', 18939), +(59175, 'Matins', 'Sherman, Francis', '2013-05-08', 7, 'https://www.gutenberg.org/ebooks/42668', 'en', 28), +(59176, 'Los Caminos del Mundo', 'Baroja, Pío', '2015-06-25', 36, 'https://www.gutenberg.org/ebooks/49280', 'es', 731), +(59177, 'The American Missionary — Volume 42, No. 05, May, 1888', 'Various', '2004-04-01', 2, 'https://www.gutenberg.org/ebooks/12118', 'en', 562), +(59178, 'Beverly of Graustark', 'McCutcheon, George Barr', '2004-11-01', 34, 'https://www.gutenberg.org/ebooks/6801', 'en', 9901), +(59179, 'Modern Eloquence: Vol III, After-Dinner Speeches P-Z', NULL, '2006-05-19', 26, 'https://www.gutenberg.org/ebooks/18422', 'en', 659), +(59180, 'Discorso sopra la calamita', 'Castelli, Benedetto', '2015-02-24', 13, 'https://www.gutenberg.org/ebooks/48352', 'it', 11707), +(59181, 'Crayon Portraiture\r\nComplete Instructions for Making Crayon Portraits on Crayon Paper and on Platinum, Silver and Bromide Enlargements', 'Barhydt, Jerome A.', '2009-10-13', 28, 'https://www.gutenberg.org/ebooks/30248', 'en', 6535), +(59182, 'Rico and Wiseli', 'Spyri, Johanna', '2005-10-01', 29, 'https://www.gutenberg.org/ebooks/9075', 'en', 10024), +(59183, 'Browning\'s England: A Study in English Influences in Browning', 'Clarke, Helen Archibald', '2009-07-10', 10, 'https://www.gutenberg.org/ebooks/29365', 'en', 18940), +(59184, 'The World\'s Best Poetry, Volume 08: National Spirit', NULL, '2004-07-17', 17, 'https://www.gutenberg.org/ebooks/12924', 'en', 2346), +(59185, 'The Brown Mask', 'Brebner, Percy James', '2006-02-01', 18, 'https://www.gutenberg.org/ebooks/9849', 'en', 323), +(59186, 'Behind the Mirrors: The Psychology of Disintegration at Washington', 'Gilbert, Clinton W. (Clinton Wallace)', '2012-02-10', 76, 'https://www.gutenberg.org/ebooks/38819', 'en', 18941), +(59187, 'Keikari sekä muita kertomuksia', 'Strindberg, August', '2016-11-14', 4, 'https://www.gutenberg.org/ebooks/53528', 'fi', 4836), +(59188, 'Motor Boat Boys on the Great Lakes; or, Exploring the Mystic Isle of Mackinac', 'Arundel, Louis', '2012-09-30', 13, 'https://www.gutenberg.org/ebooks/40903', 'en', 2722), +(59189, 'Enllà: Poesies', 'Maragall, Joan', '2018-03-29', 16, 'https://www.gutenberg.org/ebooks/56866', 'ca', 18942), +(59190, 'Fritz and Eric\nThe Brother Crusoes', 'Hutcheson, John C. (John Conroy)', '2007-04-16', 11, 'https://www.gutenberg.org/ebooks/21108', 'en', 3242), +(59191, 'Young Jack Harkaway Fighting the Pirates of the Red Sea', 'Hemyng, Bracebridge', '2019-03-05', 12, 'https://www.gutenberg.org/ebooks/59012', 'en', 18943), +(59192, 'Fables for Children, Stories for Children, Natural Science Stories, Popular Education, Decembrists, Moral Tales', 'Tolstoy, Leo, graf', '2011-11-15', 121, 'https://www.gutenberg.org/ebooks/38025', 'en', 10505), +(59193, 'The Adventures of Jimmie Dale', 'Packard, Frank L. (Frank Lucius)', '2006-05-03', 49, 'https://www.gutenberg.org/ebooks/1218', 'en', 61), +(59194, 'Beautiful Lakeland', 'Abraham, Ashley Perry', '2018-05-20', 20, 'https://www.gutenberg.org/ebooks/57188', 'en', 6570), +(59195, 'L\'Illustration, No. 3656, 22 Mars 1913', 'Various', '2011-10-26', 4, 'https://www.gutenberg.org/ebooks/37851', 'fr', 150), +(59196, 'The Life of Mr. Richard Savage\r\nWho was Condemn\'d with Mr. James Gregory, the last Sessions at the Old Baily, for the Murder of Mr. James Sinclair, at Robinson\'s Coffee-house at Charing-Cross.', NULL, '2011-08-06', 12, 'https://www.gutenberg.org/ebooks/36983', 'en', 18944); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(59197, 'The Gold Of Fairnilee', 'Lang, Andrew', '2007-06-25', 20, 'https://www.gutenberg.org/ebooks/21934', 'en', 1007), +(59198, 'Tattine', 'Ogden, Ruth', '1999-07-01', 9, 'https://www.gutenberg.org/ebooks/1816', 'en', 14094), +(59199, 'Trail-Tales of Western Canada', 'Robinson, F. A. (Frank Alfred)', '2019-04-07', 30, 'https://www.gutenberg.org/ebooks/59220', 'en', 18945), +(59200, 'Barry Lyndon', 'Thackeray, William Makepeace', '2003-10-01', 194, 'https://www.gutenberg.org/ebooks/4558', 'en', 637), +(59201, 'A Theory of Creation: A Review of \'Vestiges of the Natural History of Creation\'', 'Bowen, Francis', '2008-02-19', 22, 'https://www.gutenberg.org/ebooks/24648', 'en', 5893), +(59202, 'Don Pietro Caruso', 'Bracco, Roberto', '2011-12-04', 12, 'https://www.gutenberg.org/ebooks/38217', 'it', 407), +(59203, 'Stories of Childhood', NULL, '2005-05-29', 115, 'https://www.gutenberg.org/ebooks/15933', 'en', 179), +(59204, '25 Billeder for Børn', 'Winther, Christian', '2017-12-30', 14, 'https://www.gutenberg.org/ebooks/56268', 'da', 18946), +(59205, 'Das Paradies: Geschichten und Betrachtungen', 'Jammes, Francis', '2016-04-26', 16, 'https://www.gutenberg.org/ebooks/51871', 'de', 12818), +(59206, 'The Gods of Pegana', 'Dunsany, Lord', '2005-06-01', 372, 'https://www.gutenberg.org/ebooks/8395', 'en', 2634), +(59207, 'Palestine', 'Conder, C. R. (Claude Reignier)', '2013-08-28', 19, 'https://www.gutenberg.org/ebooks/43588', 'en', 723), +(59208, 'Life in the War Zone', 'Atherton, Gertrude Franklin Horn', '2015-02-04', 24, 'https://www.gutenberg.org/ebooks/48160', 'en', 3872), +(59209, 'Fragments from the Journal of a Solitary Man\n(From: \"The Doliver Romance and Other Pieces: Tales and Sketches\")', 'Hawthorne, Nathaniel', '2005-11-01', 51, 'https://www.gutenberg.org/ebooks/9247', 'en', 1566), +(59210, 'The Brochure Series of Architectural Illustration, vol. 06, No. 08, August 1900\r\nThe Guild Halls of London', 'Various', '2015-01-08', 8, 'https://www.gutenberg.org/ebooks/47914', 'en', 2140), +(59211, 'Éloge du sein des femmes\nOuvrage curieux', 'Mercier de Compiègne, Claude-François-Xavier', '2006-06-17', 50, 'https://www.gutenberg.org/ebooks/18610', 'fr', 1989), +(59212, 'Benjamin Franklin\nRepresentative selections, with introduction, bibliograpy, and notes', 'Franklin, Benjamin', '2011-03-06', 49, 'https://www.gutenberg.org/ebooks/35508', 'en', 854), +(59213, 'Emergency Childbirth\r\nA Reference Guide for Students of the Medical Self-help Training Course, Lesson No. 11', 'United States. Office of Civil Defense', '2008-10-14', 34, 'https://www.gutenberg.org/ebooks/26923', 'en', 18947), +(59214, 'The Forests of Mount Rainier National Park', 'Allen, G. F. (Grenville F.)', '2010-04-15', 17, 'https://www.gutenberg.org/ebooks/31994', 'en', 18948), +(59215, 'The Coinages of the Channel Islands', 'Lowsley, B.', '2009-06-18', 24, 'https://www.gutenberg.org/ebooks/29157', 'en', 18949), +(59216, 'In Griekenland\nDe Aarde en haar Volken, 1909', 'Adossidès, A.', '2009-02-15', 32, 'https://www.gutenberg.org/ebooks/28085', 'nl', 4713), +(59217, 'The Harbor Master', 'Goodridge Roberts, Theodore', '2006-02-01', 19, 'https://www.gutenberg.org/ebooks/17658', 'en', 65), +(59218, 'The Tragedy Of Caesar\'s Revenge', NULL, '2010-01-04', 19, 'https://www.gutenberg.org/ebooks/30846', 'en', 1298), +(59219, 'Billy Topsail, M.D.: A Tale of Adventure With Doctor Luke of the Labrador', 'Duncan, Norman', '2014-10-15', 13, 'https://www.gutenberg.org/ebooks/47128', 'en', 3554), +(59220, 'Harper\'s Young People, October 10, 1882\nAn Illustrated Weekly', 'Various', '2019-05-31', 9, 'https://www.gutenberg.org/ebooks/59644', 'en', 479), +(59221, 'La Navidad en las Montañas', 'Altamirano, Ignacio Manuel', '2004-01-01', 73, 'https://www.gutenberg.org/ebooks/10825', 'es', 585), +(59222, 'Through the Wheat', 'Boyd, Thomas', '2019-01-31', 9, 'https://www.gutenberg.org/ebooks/58796', 'en', 579), +(59223, 'Récits d\'une tante (Vol. 3 de 4)\nMémoires de la Comtesse de Boigne, née d\'Osmond', 'Boigne, Louise-Eléonore-Charlotte-Adélaide d\'Osmond, comtesse de', '2010-05-12', 21, 'https://www.gutenberg.org/ebooks/32349', 'fr', 18950), +(59224, 'PG Edition of Netherlands series — Complete', 'Motley, John Lothrop', '2004-11-09', 93, 'https://www.gutenberg.org/ebooks/4900', 'en', 1498), +(59225, 'Punchinello, Volume 1, No. 22, August 27, 1870', 'Various', '2003-11-01', 29, 'https://www.gutenberg.org/ebooks/10019', 'en', 372), +(59226, 'Édes anyaföldem! : Egy nép s egy ember története (2. kötet)', 'Benedek, Elek', '2012-01-25', 9, 'https://www.gutenberg.org/ebooks/38673', 'hu', 11059), +(59227, 'Encyclopaedia Britannica, 11th Edition, \"Kelly, Edward\" to \"Kite\"\r\nVolume 15, Slice 7', 'Various', '2012-09-15', 49, 'https://www.gutenberg.org/ebooks/40769', 'en', 1081), +(59228, '隋唐演義', 'Chu, Renhu, active 1675-1695', '2007-12-12', 51, 'https://www.gutenberg.org/ebooks/23835', 'zh', 1574), +(59229, 'The Double Garden', 'Maeterlinck, Maurice', '2015-03-16', 20, 'https://www.gutenberg.org/ebooks/48504', 'en', 20), +(59230, 'Wir fanden einen Pfad: Neue Gedichte', 'Morgenstern, Christian', '2006-01-01', 22, 'https://www.gutenberg.org/ebooks/9623', 'de', 4162), +(59231, 'A Book of Natural History\nYoung Folks\' Library Volume XIV.', NULL, '2006-04-28', 61, 'https://www.gutenberg.org/ebooks/18274', 'en', 4745), +(59232, 'Barrington. Volume 1 (of 2)', 'Lever, Charles James', '2011-01-08', 9, 'https://www.gutenberg.org/ebooks/34882', 'en', 1380), +(59233, 'Lives of Poor Boys Who Became Famous', 'Bolton, Sarah Knowles', '2011-04-24', 50, 'https://www.gutenberg.org/ebooks/35950', 'en', 122), +(59234, 'Little Miss Grasshopper', 'Spyri, Johanna', '2017-07-10', 36, 'https://www.gutenberg.org/ebooks/55089', 'en', 3427), +(59235, 'Letters to Dead Authors', 'Lang, Andrew', '2002-07-01', 39, 'https://www.gutenberg.org/ebooks/3319', 'en', 8765), +(59236, 'A Modern Idyll', 'Harris, Frank', '2007-10-12', 24, 'https://www.gutenberg.org/ebooks/23009', 'en', 61), +(59237, 'Anecdotes of the American Indians\nIllustrating their Eccentricities of Character', 'Blake, John Lauris', '2017-06-23', 20, 'https://www.gutenberg.org/ebooks/54967', 'en', 18951), +(59238, 'The Bird Watcher in the Shetlands, with Some Notes on Seals—and Digressions', 'Selous, Edmund', '2016-03-13', 16, 'https://www.gutenberg.org/ebooks/51429', 'en', 18952), +(59239, 'The Riddle of the Mysterious Light', 'Hanshew, Mary E.', '2013-05-25', 58, 'https://www.gutenberg.org/ebooks/42802', 'en', 1480), +(59240, 'The Red Hand of Ulster', 'Birmingham, George A.', '2009-07-29', 22, 'https://www.gutenberg.org/ebooks/29533', 'en', 13487), +(59241, 'The Romance of Madame Tussaud\'s', 'Tussaud, John Theodore', '2017-03-15', 17, 'https://www.gutenberg.org/ebooks/54369', 'en', 18953), +(59242, 'Una notte fatale\novvero il racconto dell\'esiliato / bozzetti milanesi', 'Porati, R. A.', '2006-03-24', 11, 'https://www.gutenberg.org/ebooks/18046', 'it', 61), +(59243, 'Legends of the Patriarchs and Prophets\r\nAnd Other Old Testament Characters from Various Sources', 'Baring-Gould, S. (Sabine)', '2015-04-18', 34, 'https://www.gutenberg.org/ebooks/48736', 'en', 18954), +(59244, 'Une ville flottante', 'Verne, Jules', '2006-02-22', 25, 'https://www.gutenberg.org/ebooks/17832', 'fr', 17965), +(59245, 'Legends of the Gods\r\nThe Egyptian Texts, edited with Translations', 'Budge, E. A. Wallis (Ernest Alfred Wallis), Sir', '2005-12-01', 229, 'https://www.gutenberg.org/ebooks/9411', 'en', 6339), +(59246, 'Rebel Raider', 'Piper, H. Beam', '2006-09-06', 38, 'https://www.gutenberg.org/ebooks/19194', 'en', 403), +(59247, 'La rêverie esthétique; essai sur la psychologie du poète', 'Souriau, Paul', '2008-09-28', 9, 'https://www.gutenberg.org/ebooks/26749', 'fr', 2250), +(59248, 'The Girl Aviators on Golden Wings', 'Burnham, Margaret', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6459', 'en', 3242), +(59249, 'Serge Panine — Volume 04', 'Ohnet, Georges', '2003-04-01', 15, 'https://www.gutenberg.org/ebooks/3917', 'en', 58), +(59250, 'The Mother\'s Manual of Children\'s Diseases', 'West, Charles', '2009-08-15', 14, 'https://www.gutenberg.org/ebooks/29701', 'en', 18955), +(59251, 'On the Yukon Trail\nRadio-Phone Boys Series, #2', 'Snell, Roy J. (Roy Judson)', '2014-02-27', 23, 'https://www.gutenberg.org/ebooks/45029', 'en', 3343), +(59252, 'Crowds\nA Moving-Picture of Democracy', 'Lee, Gerald Stanley', '2005-05-03', 26, 'https://www.gutenberg.org/ebooks/15759', 'en', 3120), +(59253, 'On Snake-Poison: Its Action and Its Antidote', 'Mueller, A.', '2010-06-23', 15, 'https://www.gutenberg.org/ebooks/32947', 'en', 18956), +(59254, 'More E. K. Means\r\nIs This a Title? It Is Not. It Is the Name of a Writer of Negro Stories, Who Has Made Himself So Completely the Writer of Negro Stories That This Second Book, Like the First, Needs No Title', 'Means, E. K. (Eldred Kurtz)', '2019-05-10', 21, 'https://www.gutenberg.org/ebooks/59476', 'en', 112), +(59255, 'Mémoires de madame de Rémusat (3/3)\npubliées par son petit-fils, Paul de Rémusat', 'Rémusat, Madame de (Claire Elisabeth Jeanne Gravier de Vergennes)', '2010-10-30', 10, 'https://www.gutenberg.org/ebooks/33895', 'fr', 1870), +(59256, 'Louis XIV and La Grande Mademoiselle, 1652-1693', 'Barine, Arvède', '2011-09-12', 10, 'https://www.gutenberg.org/ebooks/37409', 'en', 6965), +(59257, 'The Queen\'s Twin and Other Stories', 'Jewett, Sarah Orne', '2008-03-13', 22, 'https://www.gutenberg.org/ebooks/24822', 'en', 770), +(59258, 'The Great Pestilence (A.D. 1348-9), Now Commonly Known as the Black Death', 'Gasquet, Francis Aidan', '2014-05-29', 35, 'https://www.gutenberg.org/ebooks/45815', 'en', 18957), +(59259, 'One of Clive\'s Heroes: A Story of the Fight for India', 'Strang, Herbert', '2012-11-25', 137, 'https://www.gutenberg.org/ebooks/41489', 'en', 1025), +(59260, 'Aunt \'Liza\'s Hero, and Other Stories', 'Johnston, Annie F. (Annie Fellows)', '2012-05-02', 14, 'https://www.gutenberg.org/ebooks/39593', 'en', 195), +(59261, 'Memoirs of the life, exile, and conversations of the Emperor Napoleon. (Vol. IV)', 'Las Cases, Emmanuel-Auguste-Dieudonné, comte de', '2017-01-16', 29, 'https://www.gutenberg.org/ebooks/53970', 'en', 2362), +(59262, 'A New Species of Wood Rat (Neotoma) from Northeastern Mexico', 'Alvarez, Ticul', '2011-12-30', 3, 'https://www.gutenberg.org/ebooks/38441', 'en', 8657), +(59263, 'History of the Royal Regiment of Artillery, Vol. 1\nCompiled from the Original Records', 'Duncan, Francis', '2016-06-07', 13, 'https://www.gutenberg.org/ebooks/52258', 'en', 5059), +(59264, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 573, October 27, 1832', 'Various', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/11903', 'en', 133), +(59265, 'The New-Year\'s Bargain', 'Coolidge, Susan', '2019-01-24', 13, 'https://www.gutenberg.org/ebooks/58762', 'en', 3822), +(59266, 'The Tory Maid', 'Stimpson, Herbert Baird', '2007-02-26', 30, 'https://www.gutenberg.org/ebooks/20678', 'en', 1293), +(59267, 'The Story of Peter Pan, Retold from the fairy play by Sir James Barrie', 'O\'Connor, Daniel', '2012-05-21', 82, 'https://www.gutenberg.org/ebooks/39755', 'en', 4426), +(59268, 'The Diary and Letters of Madame D\'Arblay — Volume 1', 'Burney, Fanny', '2004-06-01', 72, 'https://www.gutenberg.org/ebooks/5826', 'en', 18958), +(59269, 'Zoological Mythology; or, The Legends of Animals, Volume 1 (of 2)', 'De Gubernatis, Angelo', '2012-02-28', 60, 'https://www.gutenberg.org/ebooks/38687', 'en', 18959), +(59270, 'A Bevy of Girls', 'Meade, L. T.', '2013-07-07', 10, 'https://www.gutenberg.org/ebooks/43118', 'en', 18960), +(59271, 'Le château des Désertes', 'Sand, George', '2004-10-07', 26, 'https://www.gutenberg.org/ebooks/13668', 'fr', 298), +(59272, 'The \'Blackwood\' Group', 'Douglas, George', '2011-01-07', 18, 'https://www.gutenberg.org/ebooks/34876', 'en', 18961), +(59273, 'The Merry Men, and Other Tales and Fables', 'Stevenson, Robert Louis', '1995-10-01', 134, 'https://www.gutenberg.org/ebooks/344', 'en', 759), +(59274, 'Enter Bridget', 'Cobb, Thomas', '2006-04-28', 5, 'https://www.gutenberg.org/ebooks/18280', 'en', 61), +(59275, 'Herbal Simples Approved for Modern Uses of Cure', 'Fernie, William Thomas', '2006-09-22', 94, 'https://www.gutenberg.org/ebooks/19352', 'en', 2443), +(59276, 'The Doré Bible Gallery, Volume 5', NULL, '2004-07-28', 14, 'https://www.gutenberg.org/ebooks/8705', 'en', 9674), +(59277, 'Peter Schlemihl\'s wundersame Geschichte', 'Chamisso, Adelbert von', '2010-03-07', 65, 'https://www.gutenberg.org/ebooks/31538', 'de', 1141), +(59278, 'Winning His Way', 'Coffin, Charles Carleton', '2007-10-07', 14, 'https://www.gutenberg.org/ebooks/22913', 'en', 403), +(59279, 'A Select Collection of Old English Plays, Volume 13', 'Dodsley, Robert', '2015-07-12', 11, 'https://www.gutenberg.org/ebooks/49422', 'en', 1088), +(59280, 'Histoire de la civilisation égyptienne des origines à la conquête d\'Alexandre', 'Jéquier, Gustave', '2013-10-10', 21, 'https://www.gutenberg.org/ebooks/43924', 'fr', 673), +(59281, 'History Plays for the Grammar Grades', 'Lyng, Mary Ella', '2009-03-26', 11, 'https://www.gutenberg.org/ebooks/28415', 'en', 599), +(59282, 'The Beadle Collection of Dime Novels\nGiven to the New York Public Library By Dr. Frank P. O\'Brien', 'New York Public Library', '2017-06-28', 15, 'https://www.gutenberg.org/ebooks/54993', 'en', 18962), +(59283, 'What Not: A Prophetic Comedy', 'Macaulay, Rose', '2011-02-07', 86, 'https://www.gutenberg.org/ebooks/35198', 'en', 26), +(59284, 'The Catholic World, Vol. 06, October, 1867 to March, 1868.', 'Various', '2017-10-28', 3, 'https://www.gutenberg.org/ebooks/55841', 'en', 96), +(59285, 'Roderick Hudson', 'James, Henry', '2006-03-12', 155, 'https://www.gutenberg.org/ebooks/176', 'en', 8097), +(59286, 'Lonesome Land', 'Bower, B. M.', '2005-07-01', 54, 'https://www.gutenberg.org/ebooks/8537', 'en', 315), +(59287, 'The Life of Nelson, Volume 1\r\nThe Embodiment of the Sea Power of Great Britain', 'Mahan, A. T. (Alfred Thayer)', '2005-10-21', 38, 'https://www.gutenberg.org/ebooks/16914', 'en', 10139), +(59288, 'The Collected Works in Verse and Prose of William Butler Yeats, Vol. 3 (of 8)\r\nThe Countess Cathleen. The Land of Heart\'s Desire. The Unicorn from the Stars', 'Yeats, W. B. (William Butler)', '2015-08-05', 56, 'https://www.gutenberg.org/ebooks/49610', 'en', 1728), +(59289, 'Cavour', 'Martinengo-Cesaresco, Evelyn Lilian Hazeldine Carrington, contessa', '2004-06-01', 13, 'https://www.gutenberg.org/ebooks/12588', 'en', 18963), +(59290, 'Disturbed Ireland\nBeing the Letters Written During the Winter of 1880-81.', 'Becker, Bernard Henry', '2006-09-02', 18, 'https://www.gutenberg.org/ebooks/19160', 'en', 18964), +(59291, 'The Secrets of Potsdam\r\nA Startling Exposure of the Inner Life of the Courts of the Kaiser and Crown-Prince', 'Le Queux, William', '2010-11-11', 21, 'https://www.gutenberg.org/ebooks/34278', 'en', 18965), +(59292, 'Incentives to the Study of the Ancient Period of American History\nAn address, delivered before the New York Historical\nSociety, at its forty-second anniversary, 17th November 1846', 'Schoolcraft, Henry Rowe', '2009-04-27', 9, 'https://www.gutenberg.org/ebooks/28627', 'en', 10898), +(59293, 'A Bundle of Ballads', NULL, '2001-09-01', 19, 'https://www.gutenberg.org/ebooks/2831', 'en', 8239), +(59294, 'Le Jour des Rois', 'Shakespeare, William', '2005-06-25', 24, 'https://www.gutenberg.org/ebooks/16128', 'fr', 4465), +(59295, '\"Sterminator Vesevo\" (Vesuvius the great exterminator)\r\nDiary of the Eruption of April 1906', 'Serao, Matilde', '2014-08-22', 18, 'https://www.gutenberg.org/ebooks/46658', 'en', 12943), +(59296, 'John the Baptist', 'Meyer, F. B. (Frederick Brotherton)', '2008-06-26', 30, 'https://www.gutenberg.org/ebooks/25904', 'en', 18966), +(59297, 'Punch, or the London Charivari, Volume 104, January 14, 1893', 'Various', '2007-05-24', 9, 'https://www.gutenberg.org/ebooks/21598', 'en', 134), +(59298, 'Pere Marquette State Park', 'Illinois. Department of Conservation', '2019-05-11', 1, 'https://www.gutenberg.org/ebooks/59482', 'en', 18967), +(59299, 'Mémoires du maréchal Marmont, duc de Raguse (6/9)', 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse', '2010-10-15', 16, 'https://www.gutenberg.org/ebooks/33861', 'fr', 1169), +(59300, 'Children of the Cliff', 'Edick, Grace Willard', '2018-12-26', 14, 'https://www.gutenberg.org/ebooks/58550', 'en', 11199), +(59301, 'Ayesha, the Return of She', 'Haggard, H. Rider (Henry Rider)', '2006-04-22', 230, 'https://www.gutenberg.org/ebooks/5228', 'en', 5048), +(59302, 'Dokter Helmond en zijn vrouw', 'Cremer, Jacobus Jan', '2008-04-22', 11, 'https://www.gutenberg.org/ebooks/25138', 'nl', 319), +(59303, 'Anzeiger für Kunde der deutschen Vorzeit (1868)\nNeue Folge. Fünfzehnter Band.', 'Various', '2016-08-20', 5, 'https://www.gutenberg.org/ebooks/52856', 'de', 8580), +(59304, 'Two Little Waifs', 'Molesworth, Mrs.', '2012-04-29', 30, 'https://www.gutenberg.org/ebooks/39567', 'en', 7279), +(59305, 'The People of the Abyss', 'London, Jack', '1999-03-01', 262, 'https://www.gutenberg.org/ebooks/1688', 'en', 4562), +(59306, 'Tarzan, apinain kuningas: Seikkailuromaani Afrikan aarniometsistä', 'Burroughs, Edgar Rice', '2017-01-17', 19, 'https://www.gutenberg.org/ebooks/53984', 'fi', 580), +(59307, 'Catalogue of the Retrospective Loan Exhibition of European Tapestries', 'San Francisco Museum of Art', '2018-07-16', 6, 'https://www.gutenberg.org/ebooks/57518', 'en', 18968), +(59308, 'Punch or the London Charivari, Vol. 148, February 10, 1915', 'Various', '2014-02-16', 8, 'https://www.gutenberg.org/ebooks/44933', 'en', 134), +(59309, 'The Young Engineers in Arizona; or, Laying Tracks on the Man-killer Quicksand', 'Hancock, H. Irving (Harrie Irving)', '2005-05-01', 27, 'https://www.gutenberg.org/ebooks/8153', 'en', 315), +(59310, 'A Guide to the Exhibition of English Medals', 'Grueber, Herbert A. (Herbert Appold)', '2015-06-25', 8, 'https://www.gutenberg.org/ebooks/49274', 'en', 18969), +(59311, 'A Calendar of Sonnets', 'Jackson, Helen Hunt', '2006-10-10', 13, 'https://www.gutenberg.org/ebooks/19504', 'en', 18393), +(59312, 'The Celibates', 'Balzac, Honoré de', '2005-08-10', 34, 'https://www.gutenberg.org/ebooks/7927', 'en', 2118), +(59313, 'Mosses from an Old Manse, and Other Stories', 'Hawthorne, Nathaniel', '1996-04-01', 872, 'https://www.gutenberg.org/ebooks/512', 'en', 179), +(59314, 'The Bacillus of Beauty: A Romance of To-day', 'Stark, Harriet', '2005-10-01', 22, 'https://www.gutenberg.org/ebooks/9081', 'en', 109), +(59315, 'Repertory of The Comedie Humaine, Part 2', 'Cerfberr, Anatole', '2001-01-01', 7, 'https://www.gutenberg.org/ebooks/2469', 'en', 17898), +(59316, 'The False Chevalier\nor, The Lifeguard of Marie Antoinette', 'Lighthall, W. D. (William Douw)', '2007-09-27', 18, 'https://www.gutenberg.org/ebooks/22779', 'en', 98), +(59317, 'Blue-grass and Broadway', 'Daviess, Maria Thompson', '2009-07-12', 12, 'https://www.gutenberg.org/ebooks/29391', 'en', 18970), +(59318, 'Indrukken van Finland\r\nDe Aarde en haar Volken, 1906', 'Engelen, Clara', '2004-10-20', 10, 'https://www.gutenberg.org/ebooks/13802', 'nl', 7220), +(59319, 'Nach Amerika! Ein Volksbuch. Vierter Band', 'Gerstäcker, Friedrich', '2009-03-04', 18, 'https://www.gutenberg.org/ebooks/28243', 'de', 10912), +(59320, 'Avioliiton ilveily: Romaani', 'Geijerstam, Gustaf af', '2015-11-01', 4, 'https://www.gutenberg.org/ebooks/50359', 'fi', 2168), +(59321, 'The Manchester and Glasgow Road, Volume 1 (of 2)\r\nThis Way to Gretna Green', 'Harper, Charles G. (Charles George)', '2018-10-19', 12, 'https://www.gutenberg.org/ebooks/58134', 'en', 776), +(59322, 'La donna fiorentina del buon tempo antico', 'Del Lungo, Isidoro', '2018-09-20', 9, 'https://www.gutenberg.org/ebooks/57940', 'it', 4693), +(59323, 'Passeggiate per l\'Italia, vol. 2', 'Gregorovius, Ferdinand', '2011-08-15', 15, 'https://www.gutenberg.org/ebooks/37099', 'it', 1896), +(59324, 'Pensées sans langage', 'Picabia, Francis', '2018-04-01', 19, 'https://www.gutenberg.org/ebooks/56892', 'fr', 3718), +(59325, 'The Road Builders', 'Merwin, Samuel', '2013-01-12', 23, 'https://www.gutenberg.org/ebooks/41825', 'en', 315), +(59326, 'The Initials: A Story of Modern Life', 'Tautphoeus, Jemima Montgomery, Baroness', '2019-02-17', 5, 'https://www.gutenberg.org/ebooks/58908', 'en', 18971), +(59327, 'A Reading Book in Irish History', 'Joyce, P. W. (Patrick Weston)', '2010-08-15', 36, 'https://www.gutenberg.org/ebooks/33439', 'en', 7442), +(59328, 'History of the English People, Volume III\r\nThe Parliament, 1399-1461; The Monarchy 1461-1540', 'Green, John Richard', '2007-03-13', 16, 'https://www.gutenberg.org/ebooks/20812', 'en', 1953), +(59329, 'Un mois en Afrique', 'Bonaparte, Pierre Napoléon, prince', '2004-04-01', 23, 'https://www.gutenberg.org/ebooks/11769', 'fr', 18972), +(59330, 'The Village of Youth, and Other Fairy Tales', 'Hatton, Bessie', '2011-08-05', 15, 'https://www.gutenberg.org/ebooks/36977', 'en', 1007), +(59331, 'Lectures on the Philosophy and Practice of Slavery\r\nAs Exhibited in the Institution of Domestic Slavery in the United States, with the Duties of Masters to Slaves', 'Smith, William A. (William Andrew)', '2012-10-11', 15, 'https://www.gutenberg.org/ebooks/41019', 'en', 125), +(59332, 'The Circus, and Other Essays and Fugitive Pieces', 'Kilmer, Joyce', '2012-03-10', 52, 'https://www.gutenberg.org/ebooks/39103', 'en', 4637), +(59333, 'Punch, or the London Charivari, Vol. 108, May 4th, 1895', 'Various', '2014-01-26', 4, 'https://www.gutenberg.org/ebooks/44759', 'en', 134), +(59334, 'Novellenbuch 1. Band', 'Meyer, Conrad Ferdinand', '2018-11-18', 5, 'https://www.gutenberg.org/ebooks/58306', 'de', 138), +(59335, 'Chateau and Country Life in France', 'Waddington, Mary King', '2004-11-12', 30, 'https://www.gutenberg.org/ebooks/14029', 'en', 3093), +(59336, 'La famiglia Bonifazio; racconto', 'Caccianiga, Antonio', '2011-06-11', 18, 'https://www.gutenberg.org/ebooks/36379', 'it', 61), +(59337, 'An English Garner: Critical Essays & Literary Fragments', NULL, '2003-12-01', 28, 'https://www.gutenberg.org/ebooks/10489', 'en', 1694), +(59338, 'Peck\'s Compendium of Fun\r\nComprising the Choicest Gems of Wit, Humor, Sarcasm and Pathos of America\'s Favorite Humorist', 'Peck, George W. (George Wilbur)', '2005-01-27', 18, 'https://www.gutenberg.org/ebooks/14815', 'en', 190), +(59339, 'Histoire des salons de Paris (Tome 1/6)\r\nTableaux et portraits du grand monde sous Louis XVI, Le Directoire, le Consulat et l\'Empire, la Restauration et le règne de Louis-Philippe Ier', 'Abrantès, Laure Junot, duchesse d\'', '2012-04-01', 79, 'https://www.gutenberg.org/ebooks/39331', 'fr', 4916), +(59340, 'Six Little Bunkers at Aunt Jo\'s', 'Hope, Laura Lee', '2006-11-07', 24, 'https://www.gutenberg.org/ebooks/19736', 'en', 31), +(59341, 'Rund um Süd-Amerika: Reisebriefe', 'Riesemann, Oskar von', '2017-08-23', 9, 'https://www.gutenberg.org/ebooks/55419', 'de', 227), +(59342, 'L\'Illustration, No. 0067, 8 Juin 1844', 'Various', '2014-09-10', 4, 'https://www.gutenberg.org/ebooks/46832', 'fr', 150), +(59343, 'The Bible, Douay-Rheims, Book 61: 1 Timothy\nThe Challoner Revision', NULL, '2005-06-01', 4, 'https://www.gutenberg.org/ebooks/8361', 'en', 6538), +(59344, 'Preface to Major Barbara: First Aid to Critics', 'Shaw, Bernard', '2003-02-01', 44, 'https://www.gutenberg.org/ebooks/3789', 'en', 8416), +(59345, 'The Trade Signs of Essex\r\nA popular account of the origin and meanings of the public houses & other signs', 'Christy, Miller', '2016-04-28', 5, 'https://www.gutenberg.org/ebooks/51885', 'en', 18973), +(59346, 'Harper\'s Young People, August 30, 1881\nAn Illustrated Weekly', 'Various', '2015-05-25', 8, 'https://www.gutenberg.org/ebooks/49046', 'en', 479), +(59347, 'Ryerson Memorial Volume\r\nPrepared on the occasion of the unveiling of the Ryerson statute in the grounds of the Education department on the Queen\'s birthday, 1889', 'Hodgins, J. George (John George)', '2015-02-08', 3, 'https://www.gutenberg.org/ebooks/48194', 'en', 14417), +(59348, 'Man and the Glacial Period', 'Wright, G. Frederick (George Frederick)', '2016-01-18', 8, 'https://www.gutenberg.org/ebooks/50957', 'en', 11096), +(59349, 'Project Gutenberg (1971-2005)', 'Lebert, Marie', '2008-10-26', 7, 'https://www.gutenberg.org/ebooks/27039', 'en', 340), +(59350, 'Almayer\'s Folly: A Story of an Eastern River', 'Conrad, Joseph', '1996-11-01', 191, 'https://www.gutenberg.org/ebooks/720', 'en', 18974), +(59351, '說苑, Volume 9-12', 'Liu, Xiang', '2005-01-01', 6, 'https://www.gutenberg.org/ebooks/7329', 'zh', 1682), +(59352, 'The Covenanters of Damascus; A Hitherto Unknown Jewish Sect', 'Moore, George Foot', '2010-04-12', 27, 'https://www.gutenberg.org/ebooks/31960', 'en', 8409), +(59353, 'The Hunters\' Feast: Conversations Around the Camp Fire', 'Reid, Mayne', '2007-11-15', 84, 'https://www.gutenberg.org/ebooks/23499', 'en', 176), +(59354, 'The Red Triangle: Being Some Further Chronicles of Martin Hewitt, Investigator', 'Morrison, Arthur', '2009-02-14', 125, 'https://www.gutenberg.org/ebooks/28071', 'en', 3511), +(59355, 'The Wind in the Willows', 'Grahame, Kenneth', '2009-01-14', 564, 'https://www.gutenberg.org/ebooks/27805', 'en', 1383), +(59356, 'Sun-Up, and Other Poems', 'Ridge, Lola', '2003-08-01', 10, 'https://www.gutenberg.org/ebooks/4331', 'en', 8), +(59357, 'With Rod and Line in Colorado Waters', 'France, Lewis B.', '2014-02-25', 10, 'https://www.gutenberg.org/ebooks/45016', 'en', 182), +(59358, 'The Claverings', 'Trollope, Anthony', '2005-05-03', 74, 'https://www.gutenberg.org/ebooks/15766', 'en', 847), +(59359, '下宿人', 'Lowndes, Marie Belloc', '2010-06-26', 90, 'https://www.gutenberg.org/ebooks/32978', 'ja', 1727), +(59360, 'History of the government of the island of Newfoundland\r\nWith an appendix containing the Acts of Parliament made respecting the trade and fishery', 'Reeves, John', '2019-05-07', 8, 'https://www.gutenberg.org/ebooks/59449', 'en', 18975), +(59361, 'Mr. Midshipman Easy', 'Marryat, Frederick', '2007-05-21', 57, 'https://www.gutenberg.org/ebooks/21553', 'en', 957), +(59362, 'Continental Monthly , Vol. 6, No. 1, July, 1864\r\nDevoted to Literature and National Policy.', 'Various', '2007-01-29', 22, 'https://www.gutenberg.org/ebooks/20481', 'en', 162), +(59363, 'Helena Nybloms Sagor', 'Nyblom, Helena', '2016-09-30', 7, 'https://www.gutenberg.org/ebooks/53173', 'sv', 1007), +(59364, 'Verfall und Triumph, Zweiter Teil: Versuche in Prosa', 'Becher, Johannes Robert', '2011-09-15', 7, 'https://www.gutenberg.org/ebooks/37436', 'de', 253), +(59365, 'Fairy Tales from Gold Lands: Second Series', 'Wentworth, May', '2018-01-19', 30, 'https://www.gutenberg.org/ebooks/56401', 'en', 548), +(59366, 'Jan Vedder\'s Wife', 'Barr, Amelia E.', '2010-04-26', 15, 'https://www.gutenberg.org/ebooks/32144', 'en', 4376), +(59367, 'Jeremias: Eine dramatische Dichtung in neun Bildern', 'Zweig, Stefan', '2012-08-22', 31, 'https://www.gutenberg.org/ebooks/40564', 'de', 5728), +(59368, 'Years of Plenty', 'Brown, Ivor John Carnegie', '2010-07-06', 10, 'https://www.gutenberg.org/ebooks/33096', 'en', 10892), +(59369, 'Meno', 'Plato', '1999-02-01', 278, 'https://www.gutenberg.org/ebooks/1643', 'en', 11794), +(59370, '杜騙新書', 'Zhang, Yingyu, active 16th century-17th century', '2007-12-24', 13, 'https://www.gutenberg.org/ebooks/24021', 'zh', 18976), +(59371, 'Introduction to the Philosophy and Writings of Plato', 'Taylor, Thomas', '2003-11-01', 77, 'https://www.gutenberg.org/ebooks/10214', 'en', 6030), +(59372, 'Punch, or the London Charivari, Volume 101, August 15, 1891', 'Various', '2004-09-18', 7, 'https://www.gutenberg.org/ebooks/13491', 'en', 134), +(59373, 'Runeberg Suomen kansan runoilijana', 'Vasenius, Valfrid', '2017-03-13', 2, 'https://www.gutenberg.org/ebooks/54356', 'fi', 12643), +(59374, 'Autumn', 'Nathan, Robert', '2006-03-30', 15, 'https://www.gutenberg.org/ebooks/18079', 'en', 13), +(59375, 'Culinary Chemistry\nThe Scientific Principles of Cookery, with Concise\nInstructions for Preparing Good and Wholesome Pickles,\nVinegar, Conserves, Fruit Jellies, Marmalades, and Various\nOther Alimentary Substances Employed in Domestic Economy,\nwith Observations on the Chemical Constitution and Nutritive\nQualities of Different Kinds of Food.', 'Accum, Frederick', '2019-08-24', 154, 'https://www.gutenberg.org/ebooks/60163', 'en', NULL), +(59376, 'Ομήρου Οδύσσεια Τόμος Α', 'Homer', '2009-12-06', 43, 'https://www.gutenberg.org/ebooks/30613', 'el', 18045), +(59377, 'Information for the Guidance of Field Men and Cooperators of the Bureau of Biological Survey Engaged in the Control of Injurious Rodents and Predatory Animals', 'Redington, Paul G. (Paul Goodwin)', '2015-04-15', 10, 'https://www.gutenberg.org/ebooks/48709', 'en', 18977), +(59378, 'The Third Window', 'Sedgwick, Anne Douglas', '2013-03-01', 18, 'https://www.gutenberg.org/ebooks/42233', 'en', 6211), +(59379, 'The Education of the Negro', 'Warner, Charles Dudley', '2004-12-05', 14, 'https://www.gutenberg.org/ebooks/3114', 'en', 2222), +(59380, 'A philosophia da natureza dos naturalistas', 'Quental, Antero de', '2008-10-04', 20, 'https://www.gutenberg.org/ebooks/26776', 'pt', 18978), +(59381, 'Reminiscences of Leo Nicolayevitch Tolstoi', 'Gorky, Maksim', '2017-08-07', 21, 'https://www.gutenberg.org/ebooks/55284', 'en', 2372), +(59382, 'The Mirror of Literature, Amusement, and Instruction. Volume 20, No. 582, December 22, 1832', 'Various', '2004-06-01', 7, 'https://www.gutenberg.org/ebooks/12543', 'en', 133), +(59383, 'The Intellectual Development of the Canadian People: An Historical Review', 'Bourinot, John George', '2004-09-01', 18, 'https://www.gutenberg.org/ebooks/6466', 'en', 18979), +(59384, 'Seeing Europe with Famous Authors, Volume 7\nItaly, Sicily, and Greece (Part One)', NULL, '2006-07-16', 21, 'https://www.gutenberg.org/ebooks/18845', 'en', 1896), +(59385, 'Beowulf', NULL, '1997-07-01', 572, 'https://www.gutenberg.org/ebooks/981', 'en', 18980), +(59386, 'Der Begriff der Religion im System der Philosophie', 'Cohen, Hermann', '2014-12-22', 42, 'https://www.gutenberg.org/ebooks/47741', 'de', 5449), +(59387, 'The Disentanglers', 'Lang, Andrew', '2005-11-08', 31, 'https://www.gutenberg.org/ebooks/17031', 'en', 61), +(59388, 'Notes and Queries, Number 70, March 1, 1851\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2007-10-26', 8, 'https://www.gutenberg.org/ebooks/23204', 'en', 105), +(59389, 'Dallo Stelvio al mare', 'Bontempelli, Massimo', '2016-04-02', 22, 'https://www.gutenberg.org/ebooks/51624', 'it', 15162), +(59390, 'Prince Zilah — Volume 2', 'Claretie, Jules', '2003-04-01', 16, 'https://www.gutenberg.org/ebooks/3928', 'en', 560), +(59391, 'The Passport', 'Bagot, Richard', '2014-08-27', 81, 'https://www.gutenberg.org/ebooks/46693', 'en', 16), +(59392, 'The Wicked Marquis', 'Oppenheim, E. Phillips (Edward Phillips)', '2011-02-22', 51, 'https://www.gutenberg.org/ebooks/35361', 'en', 128), +(59393, 'Amerigo Vespucci', 'Ober, Frederick A. (Frederick Albion)', '2006-12-03', 21, 'https://www.gutenberg.org/ebooks/19997', 'en', 11478), +(59394, 'The Age of Pope\n(1700-1744)', 'Dennis, John', '2009-11-07', 67, 'https://www.gutenberg.org/ebooks/30421', 'en', 8503), +(59395, 'Sortovuosilta: Poliittisia muistelmia', 'Zilliacus, Konni', '2017-02-14', 1, 'https://www.gutenberg.org/ebooks/54164', 'fi', 18981), +(59396, 'Continental Monthly, Vol. 4, No 3, September 1863\nDevoted to Literature and National Policy', 'Various', '2008-12-11', 13, 'https://www.gutenberg.org/ebooks/27496', 'en', 558), +(59397, 'The Dance Festivals of the Alaskan Eskimo', 'Hawkes, Ernest William', '2008-09-06', 13, 'https://www.gutenberg.org/ebooks/26544', 'en', 18982), +(59398, 'Famous Americans of Recent Times', 'Parton, James', '2004-06-29', 24, 'https://www.gutenberg.org/ebooks/12771', 'en', 414), +(59399, 'St. Nicholas Magazine for Boys and Girls, Vol. 5, January 1878, No. 3', 'Various', '2006-09-28', 18, 'https://www.gutenberg.org/ebooks/19399', 'en', 563), +(59400, 'Notes and Queries, Number 221, January 21, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 6, 'https://www.gutenberg.org/ebooks/42001', 'en', 105), +(59401, 'The Well-Beloved: A Sketch of a Temperament', 'Hardy, Thomas', '2002-07-01', 55, 'https://www.gutenberg.org/ebooks/3326', 'en', 109), +(59402, 'Witchcraft and Devil Lore in the Channel Islands\r\nTranscripts from the Official Records of the Guernsey Royal Court, with an English Translation and Historical Introduction', 'Pitts, John Linwood', '2005-12-02', 58, 'https://www.gutenberg.org/ebooks/17203', 'en', 18983), +(59403, 'Dave Darrin After the Mine Layers; Or, Hitting the Enemy a Hard Naval Blow', 'Hancock, H. Irving (Harrie Irving)', '2007-10-14', 30, 'https://www.gutenberg.org/ebooks/23036', 'en', 4678), +(59404, 'Der Verschwender', 'Raimund, Ferdinand', '2004-10-01', 28, 'https://www.gutenberg.org/ebooks/6654', 'de', 907), +(59405, 'Among the An-ko-me-nums, or Flathead Tribes of Indians of the Pacific Coast', 'Crosby, Thomas', '2017-06-22', 4, 'https://www.gutenberg.org/ebooks/54958', 'en', 18984), +(59406, 'Myths & Legends of the Celtic Race', 'Rolleston, T. W. (Thomas William)', '2010-10-17', 243, 'https://www.gutenberg.org/ebooks/34081', 'en', 7936), +(59407, 'Sosialismi ja individualismi', 'Wilde, Oscar', '2014-12-07', 8, 'https://www.gutenberg.org/ebooks/47573', 'fi', 254), +(59408, 'The One Great Reality', 'Clayton, Louisa', '2005-03-01', 13, 'https://www.gutenberg.org/ebooks/7786', 'en', 18858), +(59409, 'Far Off Things', 'Machen, Arthur', '2011-02-03', 50, 'https://www.gutenberg.org/ebooks/35153', 'en', 12095), +(59410, 'De Hazen en de Kabouters', 'de Holl, Henr.', '2016-03-11', 14, 'https://www.gutenberg.org/ebooks/51416', 'nl', 3078), +(59411, 'Le parfum de la Dame en noir', 'Leroux, Gaston', '2005-04-05', 55, 'https://www.gutenberg.org/ebooks/15554', 'fr', 128), +(59412, 'On the various forces of nature and their relations to each other', 'Faraday, Michael', '2016-06-10', 54, 'https://www.gutenberg.org/ebooks/52293', 'en', 1194), +(59413, 'Synopsis of Some Genera of the Large Pyrenomycetes\r\nCamillea, Thamnomyces, Engleromyces', 'Lloyd, C. G. (Curtis Gates)', '2007-06-07', 19, 'https://www.gutenberg.org/ebooks/21761', 'en', 18985), +(59414, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 3', 'Ames, Azel', '2003-06-01', 7, 'https://www.gutenberg.org/ebooks/4103', 'en', 7031), +(59415, 'Storia della decadenza e rovina dell\'impero romano, volume 10', 'Gibbon, Edward', '2014-03-26', 24, 'https://www.gutenberg.org/ebooks/45224', 'it', 1292), +(59416, 'Cours familier de Littérature - Volume 10', 'Lamartine, Alphonse de', '2011-10-03', 9, 'https://www.gutenberg.org/ebooks/37604', 'fr', 1765), +(59417, 'The Dorrington Deed-Box', 'Morrison, Arthur', '2016-10-22', 73, 'https://www.gutenberg.org/ebooks/53341', 'en', 3511), +(59418, 'The Thunder Bird', 'Bower, B. M.', '2004-12-27', 29, 'https://www.gutenberg.org/ebooks/14486', 'en', 6905), +(59419, 'Notes on Stable Management in India and the Colonies', 'Nunn, Joshua A. (Joshua Arthur)', '2010-05-15', 16, 'https://www.gutenberg.org/ebooks/32376', 'en', 18986), +(59420, 'Εγχειρίδιον Βυζαντινής Ιστορίας', 'Karolides, Paulos', '2012-12-21', 23, 'https://www.gutenberg.org/ebooks/41684', 'el', 4222), +(59421, 'The City That Was', 'Smith, Stephen', '2018-02-24', 20, 'https://www.gutenberg.org/ebooks/56633', 'en', 18987), +(59422, 'Marthe und ihre Uhr: Novelle', 'Storm, Theodor', '2008-01-07', 24, 'https://www.gutenberg.org/ebooks/24213', 'de', 906), +(59423, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 268, August 11, 1827', 'Various', '2003-10-09', 35, 'https://www.gutenberg.org/ebooks/10026', 'en', 133), +(59424, 'The Nursery, May 1881, Vol. XXIX\nA Monthly Magazine for Youngest Readers', 'Various', '2012-09-14', 9, 'https://www.gutenberg.org/ebooks/40756', 'en', 4641), +(59425, 'New Poems', 'Thompson, Francis', '1998-09-01', 16, 'https://www.gutenberg.org/ebooks/1471', 'en', 54), +(59426, 'Chats on Old Lace and Needlework', 'Lowes, Emily Leigh', '2008-07-24', 66, 'https://www.gutenberg.org/ebooks/26120', 'en', 4518), +(59427, 'Shanty the Blacksmith; a Tale of Other Times', 'Sherwood, Mrs. (Mary Martha)', '2004-05-01', 10, 'https://www.gutenberg.org/ebooks/12315', 'en', 15416), +(59428, 'There is a Reaper ...', 'De Vet, Charles V.', '2009-09-10', 50, 'https://www.gutenberg.org/ebooks/29954', 'en', 26), +(59429, 'Vidéki hirek, és más elbeszélések', 'Móricz, Zsigmond', '2013-04-03', 25, 'https://www.gutenberg.org/ebooks/42465', 'hu', 1532), +(59430, 'Os jesuitas e o ensino', 'Calógeras, João Pandiá', '2010-02-06', 23, 'https://www.gutenberg.org/ebooks/31197', 'pt', 18988), +(59431, 'The Writings of Thomas Paine — Volume 2 (1779-1792): The Rights of Man', 'Paine, Thomas', '2003-02-01', 227, 'https://www.gutenberg.org/ebooks/3742', 'en', 18989), +(59432, 'Planet of Dreams', 'McKimmey, James', '2009-09-20', 45, 'https://www.gutenberg.org/ebooks/30045', 'en', 179), +(59433, 'Bunner Sisters', 'Wharton, Edith', '2005-11-01', 4, 'https://www.gutenberg.org/ebooks/9278', 'en', 11659), +(59434, 'Coral Reefs', 'Darwin, Charles', '2001-06-01', 33, 'https://www.gutenberg.org/ebooks/2690', 'en', 9436), +(59435, 'The Hickory Limb', 'Fillmore, Parker', '2009-05-20', 11, 'https://www.gutenberg.org/ebooks/28886', 'en', 62), +(59436, 'Journal of a West India Proprietor\nKept During a Residence in the Island of Jamaica', 'Lewis, M. G. (Matthew Gregory)', '2017-04-07', 36, 'https://www.gutenberg.org/ebooks/54500', 'en', 18990), +(59437, 'Do the Dead Return? A True Story of Startling Seances in San Francisco', 'Anonymous', '2011-03-10', 15, 'https://www.gutenberg.org/ebooks/35537', 'en', 8607), +(59438, 'Het Geheimzinnige Eiland\r\nDe Verlatene', 'Verne, Jules', '2007-09-11', 22, 'https://www.gutenberg.org/ebooks/22580', 'nl', 26), +(59439, 'Houlihan\'s Equation', 'Sheldon, Walter J.', '2009-06-19', 22, 'https://www.gutenberg.org/ebooks/29168', 'en', 26), +(59440, 'Shamar\'s War', 'Neville, Kris', '2016-01-29', 34, 'https://www.gutenberg.org/ebooks/51072', 'en', 1238), +(59441, 'Dialogues of the Dead', 'Lyttelton, George Lyttelton, Baron', '2006-02-03', 81, 'https://www.gutenberg.org/ebooks/17667', 'en', 4432), +(59442, 'The Life of Blessed John B. Marie Vianney, Curé of Ars\nWith a Novena and Litany to this Zealous Worker in the Vineyard of the Lord', 'Anonymous', '2010-01-06', 22, 'https://www.gutenberg.org/ebooks/30879', 'en', 18991), +(59443, 'The Viper of Milan: A Romance of Lombardy', 'Bowen, Marjorie', '2015-05-15', 23, 'https://www.gutenberg.org/ebooks/48963', 'en', 98), +(59444, 'The Trial of William Tinkling\nWritten by Himself at the Age of 8 Years', 'Dickens, Charles', '2007-11-12', 73, 'https://www.gutenberg.org/ebooks/23452', 'en', 651), +(59445, 'The Battle of the Strong: A Romance of Two Kingdoms — Volume 1', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6230', 'en', 9794), +(59446, '\"Their Majesties\' Servants.\" Annals of the English Stage (Volume 2 of 3)', 'Doran, Dr. (John)', '2014-10-14', 16, 'https://www.gutenberg.org/ebooks/47117', 'en', 18992), +(59447, 'Buffon\'s Natural History, Volume 01 (of 10)\r\nContaining a Theory of the Earth, a General History of Man, of the Brute Creation, and of Vegetables, Mineral, &c. &c', 'Buffon, Georges Louis Leclerc, comte de', '2014-01-29', 53, 'https://www.gutenberg.org/ebooks/44792', 'en', 871), +(59448, 'The Outspan: Tales of South Africa', 'Fitzpatrick, Percy', '2011-08-29', 7, 'https://www.gutenberg.org/ebooks/37260', 'en', 179), +(59449, 'From Palmerston to Disraeli (1856-1876)', NULL, '2016-12-12', 3, 'https://www.gutenberg.org/ebooks/53725', 'en', 10626), +(59450, 'Mae Madden', 'Mason, Mary Murdoch', '2006-05-12', 14, 'https://www.gutenberg.org/ebooks/1829', 'en', 2741), +(59451, 'The Fugitive Blacksmith\r\nor, Events in the History of James W. C. Pennington, Pastor of a Presbyterian Church, New York, Formerly a Slave in the State of Maryland, United States', 'Pennington, James W. C.', '2005-02-21', 19, 'https://www.gutenberg.org/ebooks/15130', 'en', 56), +(59452, 'A Dash from Diamond City', 'Fenn, George Manville', '2007-05-04', 16, 'https://www.gutenberg.org/ebooks/21305', 'en', 8201), +(59453, 'Strates Amoureuses: Poésie', 'Bertrand, Huguette', '2003-10-01', 11, 'https://www.gutenberg.org/ebooks/4567', 'fr', 8), +(59454, 'Beggars', 'Davies, W. H. (William Henry)', '2014-05-13', 14, 'https://www.gutenberg.org/ebooks/45640', 'en', 18993), +(59455, 'Entwurf einer neuen Ästhetik der Tonkunst', 'Busoni, Ferruccio', '2008-02-23', 21, 'https://www.gutenberg.org/ebooks/24677', 'de', 3582), +(59456, 'La Comédie de la mort', 'Gautier, Théophile', '2003-12-01', 27, 'https://www.gutenberg.org/ebooks/10442', 'fr', 11671), +(59457, 'The Collected Works of William Hazlitt, Vol. 09 (of 12)', 'Hazlitt, William', '2018-06-24', 30, 'https://www.gutenberg.org/ebooks/57385', 'en', 5270), +(59458, 'A Rich Man\'s Relatives (Vol. 2 of 3)', 'Cleland, Robert', '2012-07-25', 6, 'https://www.gutenberg.org/ebooks/40332', 'en', 65), +(59459, 'Captain June', 'Rice, Alice Caldwell Hegan', '2011-12-06', 5, 'https://www.gutenberg.org/ebooks/38228', 'en', 153), +(59460, 'The Oregon Trail: Sketches of Prairie and Rocky-Mountain Life', 'Parkman, Francis', '2006-04-27', 141, 'https://www.gutenberg.org/ebooks/1015', 'en', 18994), +(59461, 'Cube Root of Conquest', 'Phillips, Rog', '2010-06-06', 23, 'https://www.gutenberg.org/ebooks/32712', 'en', 26), +(59462, 'Geschiedenis van Suriname', 'Wolbers, J.', '2017-12-27', 12, 'https://www.gutenberg.org/ebooks/56257', 'nl', 18995), +(59463, 'Les Français en Amérique pendant la guerre de l\'indépendance des États-Unis 1777-1783', 'Balch, Thomas', '2004-03-01', 44, 'https://www.gutenberg.org/ebooks/11590', 'fr', 18497), +(59464, 'Bolanyo', 'Read, Opie Percival', '2012-02-10', 16, 'https://www.gutenberg.org/ebooks/38826', 'en', 18996), +(59465, 'Los Caudillos de 1830', 'Baroja, Pío', '2016-11-13', 15, 'https://www.gutenberg.org/ebooks/53517', 'es', 731), +(59466, 'The Water of Life, and Other Sermons', 'Kingsley, Charles', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/5687', 'en', 2386), +(59467, 'L\'Instruction Publique en France et en Italie au dix-neuvième siècle', 'Dejob, Charles', '2011-08-12', 23, 'https://www.gutenberg.org/ebooks/37052', 'fr', 18997), +(59468, 'California and the Californians', 'Jordan, David Starr', '2003-12-01', 13, 'https://www.gutenberg.org/ebooks/4755', 'en', 1623), +(59469, 'Heraldiek', 'Godefroy, Jan', '2011-05-21', 14, 'https://www.gutenberg.org/ebooks/36180', 'nl', 9449), +(59470, 'La \"National Gallery\"', 'Dayot, Armand', '2018-03-27', 14, 'https://www.gutenberg.org/ebooks/56859', 'fr', 9466), +(59471, 'Ruhtinas', 'Machiavelli, Niccolò', '2014-04-24', 30, 'https://www.gutenberg.org/ebooks/45472', 'fi', 3559), +(59472, 'The Man with the Clubfoot', 'Williams, Valentine', '2005-03-09', 48, 'https://www.gutenberg.org/ebooks/15302', 'en', 167), +(59473, 'Parkhurst Boys, and Other Stories of School Life', 'Reed, Talbot Baines', '2007-04-18', 17, 'https://www.gutenberg.org/ebooks/21137', 'en', 1779), +(59474, 'Life Histories of North American Wood Warblers, Part One and Part Two', 'Bent, Arthur Cleveland', '2012-06-28', 13, 'https://www.gutenberg.org/ebooks/40100', 'en', 1333), +(59475, 'The Expression of the Emotions in Man and Animals', 'Darwin, Charles', '1998-03-01', 175, 'https://www.gutenberg.org/ebooks/1227', 'en', 10212), +(59476, 'Elämän tarina', 'Maupassant, Guy de', '2008-01-28', 3, 'https://www.gutenberg.org/ebooks/24445', 'fi', 61), +(59477, 'With Zola in England: A Story of Exile', 'Vizetelly, Ernest Alfred', '2004-01-01', 16, 'https://www.gutenberg.org/ebooks/10670', 'en', 11853), +(59478, 'Der Luftpirat und sein lenkbares Luftschiff 40: Die Empörung im Weltenfahrzeug', 'Anonymous', '2017-11-28', 15, 'https://www.gutenberg.org/ebooks/56065', 'de', 26), +(59479, 'Northern Nut Growers Association, Report of the Proceedings at the Seventh Annual Meeting\nWashington, D. C. September 8 and 9, 1916.', NULL, '2008-05-25', 4, 'https://www.gutenberg.org/ebooks/25597', 'en', 1628), +(59480, 'Rainbow Bridge National Monument, Utah (1951)', 'United States. National Park Service', '2019-06-25', 30, 'https://www.gutenberg.org/ebooks/59811', 'en', 18998), +(59481, 'Hildegarde\'s Harvest', 'Richards, Laura Elizabeth Howe', '2010-05-25', 20, 'https://www.gutenberg.org/ebooks/32520', 'en', 18999), +(59482, 'Gleanings among the Sheaves', 'Spurgeon, C. H. (Charles Haddon)', '2013-05-07', 78, 'https://www.gutenberg.org/ebooks/42657', 'en', 6957), +(59483, 'The Fourth Watch', 'Cody, H. A. (Hiram Alfred)', '2005-05-01', 9, 'https://www.gutenberg.org/ebooks/8198', 'en', 1219), +(59484, 'Recollections of the Private Life of Napoleon — Volume 03', 'Wairy, Louis Constant', '2002-12-01', 14, 'https://www.gutenberg.org/ebooks/3570', 'en', 840), +(59485, 'The Lost Art of Reading', 'Lee, Gerald Stanley', '2008-08-14', 32, 'https://www.gutenberg.org/ebooks/26312', 'en', 9561), +(59486, 'Captain Rogers\nThe Lady of the Barge and Others, Part 7.', 'Jacobs, W. W. (William Wymark)', '2004-04-01', 8, 'https://www.gutenberg.org/ebooks/12127', 'en', 1224), +(59487, 'Roget\'s Thesaurus', 'Roget, Peter Mark', '1991-12-01', 282, 'https://www.gutenberg.org/ebooks/22', 'en', 9961), +(59488, 'Songs for the Little Ones at Home', NULL, '2017-05-16', 5, 'https://www.gutenberg.org/ebooks/54732', 'en', 4299), +(59489, 'A tanító / Pompei utolsó éje', 'Horváth, Ákos', '2009-10-17', 19, 'https://www.gutenberg.org/ebooks/30277', 'hu', 12226), +(59490, 'Ruth Erskine\'s Son', 'Pansy', '2013-09-21', 13, 'https://www.gutenberg.org/ebooks/43785', 'en', 19000), +(59491, 'Historic Tales: The Romance of Reality. Vol. 05 (of 15), German', 'Morris, Charles', '2005-08-24', 17, 'https://www.gutenberg.org/ebooks/16587', 'en', 1921), +(59492, 'The Addicts', 'Samachson, Joseph', '2016-02-17', 124, 'https://www.gutenberg.org/ebooks/51240', 'en', 4787), +(59493, 'The Spanish Cavalier: A Story of Seville', 'A. L. O. E.', '2011-03-29', 23, 'https://www.gutenberg.org/ebooks/35705', 'en', 19001), +(59494, 'Little Miss By-The-Day', 'Van Slyke, Lucille', '2004-07-01', 7, 'https://www.gutenberg.org/ebooks/6002', 'en', 348), +(59495, 'Kim: Koko maailman pikku ystävä', 'Kipling, Rudyard', '2014-11-10', 9, 'https://www.gutenberg.org/ebooks/47325', 'fi', 19002), +(59496, 'Town Life in the Fifteenth Century, Volume 1 (of 2)', 'Green, Alice Stopford', '2015-11-05', 33, 'https://www.gutenberg.org/ebooks/50392', 'en', 19003), +(59497, 'The Poison Tree: A Tale of Hindu Life in Bengal', 'Chatterji, Bankim Chandra', '2006-01-04', 79, 'https://www.gutenberg.org/ebooks/17455', 'en', 6015), +(59498, 'The Atlantic Monthly, Volume 10, No. 58, August, 1862\r\nA Magazine of Literature, Art, and Politics', 'Various', '2006-02-01', 15, 'https://www.gutenberg.org/ebooks/9876', 'en', 1227), +(59499, 'The Problems of Psychical Research\nExperiments and Theories in the Realm of the Supernormal', 'Carrington, Hereward', '2007-11-29', 33, 'https://www.gutenberg.org/ebooks/23660', 'en', 6363), +(59500, 'Vanished towers and chimes of Flanders', 'Edwards, George Wharton', '2009-03-09', 19, 'https://www.gutenberg.org/ebooks/28288', 'en', 14609), +(59501, 'Danger in Deep Space', 'Rockwell, Carey', '2006-11-04', 67, 'https://www.gutenberg.org/ebooks/19709', 'en', 8374), +(59502, 'William Wycherley [Four Plays]', 'Wycherley, William', '2017-08-25', 78, 'https://www.gutenberg.org/ebooks/55426', 'en', 126), +(59503, 'Lady Eureka; or, The Mystery: A Prophecy of the Future. Volume 1', 'Williams, Robert Folkestone', '2013-04-08', 28, 'https://www.gutenberg.org/ebooks/42491', 'en', 61), +(59504, 'Storia degli Esseni: Lezioni', 'Benamozegh, Elia', '2015-05-30', 34, 'https://www.gutenberg.org/ebooks/49079', 'it', 19004), +(59505, 'Are We Ruined by the Germans?', 'Cox, Harold', '2010-02-03', 10, 'https://www.gutenberg.org/ebooks/31163', 'en', 19005), +(59506, 'Zanoni', 'Lytton, Edward Bulwer Lytton, Baron', '2006-02-19', 137, 'https://www.gutenberg.org/ebooks/2664', 'en', 19006), +(59507, 'The Origin of the Red Cross: \"Un souvenir de Solferino\"', 'Dunant, Henry', '2016-01-19', 12, 'https://www.gutenberg.org/ebooks/50968', 'en', 6650), +(59508, 'Frank Mildmay, De zeeofficier', 'Marryat, Frederick', '2009-05-18', 14, 'https://www.gutenberg.org/ebooks/28872', 'nl', 324), +(59509, 'Adventures in the Moon, and Other Worlds', 'Russell, John Russell, Earl', '2013-08-23', 9, 'https://www.gutenberg.org/ebooks/43543', 'en', 1998), +(59510, 'Ang Tunay na Búhay ni P. Dr. José Burgos at Nang Manga Nacasama Niya na Sina P. Jacinto Zamora, P. Mariano Gómez at and Nadayang Miguel Zaldua', 'López, Honorio', '2004-08-20', 16, 'https://www.gutenberg.org/ebooks/13233', 'tl', 19007), +(59511, 'Notes and Queries, Number 207, October 15, 1853\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2008-10-24', 9, 'https://www.gutenberg.org/ebooks/27006', 'en', 105), +(59512, 'Brani inediti dei Promessi Sposi, vol. 1\r\nOpere di Alessando Manzoni vol. 2 parte 1', 'Manzoni, Alessandro', '2014-06-19', 16, 'https://www.gutenberg.org/ebooks/46031', 'it', 5122), +(59513, '夢溪筆談, Volume 22-26', 'Shen, Kuo', '2005-01-01', 10, 'https://www.gutenberg.org/ebooks/7316', 'zh', 2525), +(59514, 'William Cobbett: A Biography in Two Volumes, Vol. 2', 'Smith, Edward', '2015-09-01', 14, 'https://www.gutenberg.org/ebooks/49845', 'en', 18133), +(59515, 'The Best Portraits in Engraving', 'Sumner, Charles', '2007-09-11', 29, 'https://www.gutenberg.org/ebooks/22574', 'en', 2854), +(59516, 'Raymond; or, Life and Death\r\nWith examples of the evidence for survival of memory and affection after death.', 'Lodge, Oliver, Sir', '2016-01-30', 41, 'https://www.gutenberg.org/ebooks/51086', 'en', 504), +(59517, 'Aunt Phillis\'s Cabin; Or, Southern Life As It Is', 'Eastman, Mary H. (Mary Henderson)', '2005-09-24', 52, 'https://www.gutenberg.org/ebooks/16741', 'en', 9849), +(59518, 'La San-Felice, Tome 01', 'Dumas, Alexandre', '2006-02-06', 13, 'https://www.gutenberg.org/ebooks/17693', 'fr', 4110), +(59519, 'Contes de lundi', 'Daudet, Alphonse', '2015-10-08', 40, 'https://www.gutenberg.org/ebooks/50154', 'fr', 100), +(59520, '\"Back from Hell\"', 'Benson, Samuel Cranston', '2015-05-19', 27, 'https://www.gutenberg.org/ebooks/48997', 'en', 3872), +(59521, 'Pipistrellus cinnamomeus Miller 1902 Referred to the Genus Myotis', 'Dalquest, Walter Woelber', '2010-11-23', 27, 'https://www.gutenberg.org/ebooks/34411', 'en', 2561); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(59522, 'The Library of Work and Play: Needlecraft', 'Archer, Effie Archer', '2014-01-26', 65, 'https://www.gutenberg.org/ebooks/44766', 'en', 6945), +(59523, 'The Red Cross Barge', 'Lowndes, Marie Belloc', '2011-09-02', 22, 'https://www.gutenberg.org/ebooks/37294', 'en', 579), +(59524, 'Uarda : a Romance of Ancient Egypt — Volume 03', 'Ebers, Georg', '2004-04-01', 7, 'https://www.gutenberg.org/ebooks/5441', 'en', 803), +(59525, 'Two Boys in Wyoming: A Tale of Adventure\r\n(Northwest Series, No. 3)', 'Ellis, Edward Sylvester', '2006-12-30', 25, 'https://www.gutenberg.org/ebooks/20223', 'en', 8160), +(59526, 'Upplevelser under krigsåren 1914-1918', 'Thesleff, Wilhelm', '2018-11-24', 7, 'https://www.gutenberg.org/ebooks/58339', 'sv', 8329), +(59527, 'John Knox and the Reformation', 'Lang, Andrew', '2004-11-10', 30, 'https://www.gutenberg.org/ebooks/14016', 'en', 3371), +(59528, 'The History and Remarkable Life of the Truly Honourable Colonel Jacque, Commonly Called Colonel Jack', 'Defoe, Daniel', '2016-07-18', 29, 'https://www.gutenberg.org/ebooks/52603', 'en', 4359), +(59529, 'The Mandarin\'s Fan', 'Hume, Fergus', '2011-06-07', 13, 'https://www.gutenberg.org/ebooks/36346', 'en', 128), +(59530, 'Friends and Neighbors; Or, Two Ways of Living in the World', NULL, '2003-10-01', 23, 'https://www.gutenberg.org/ebooks/4593', 'en', 658), +(59531, 'Nan Sherwood at Palm Beach; Or, Strange Adventures Among The Orange Groves', 'Carr, Annie Roe', '2008-02-25', 18, 'https://www.gutenberg.org/ebooks/24683', 'en', 1655), +(59532, 'Fenris, the Wolf: A Tragedy', 'MacKaye, Percy', '2018-06-21', 40, 'https://www.gutenberg.org/ebooks/57371', 'en', 19008), +(59533, 'The Night Operator', 'Packard, Frank L. (Frank Lucius)', '2010-09-04', 32, 'https://www.gutenberg.org/ebooks/33634', 'en', 179), +(59534, 'Totem and Taboo\nResemblances Between the Psychic Lives of Savages and Neurotics', 'Freud, Sigmund', '2012-10-28', 180, 'https://www.gutenberg.org/ebooks/41214', 'en', 10269), +(59535, 'An Essay on War, in Blank Verse; Honington Green, a Ballad; the Culprit, an Elegy; and Other Poems, on Various Subjects', 'Bloomfield, Nathaniel', '2004-03-01', 5, 'https://www.gutenberg.org/ebooks/11564', 'en', 8), +(59536, 'The Best of the World\'s Classics, Restricted to Prose, Vol. VIII (of X) - Continental Europe II.', NULL, '2008-06-10', 19, 'https://www.gutenberg.org/ebooks/25751', 'en', 19), +(59537, 'Pequeñeces', 'Coloma, Luis', '2006-12-03', 30, 'https://www.gutenberg.org/ebooks/20011', 'es', 19009), +(59538, 'Samoa, A Hundred Years Ago And Long Before', 'Turner, George', '2004-12-01', 41, 'https://www.gutenberg.org/ebooks/14224', 'en', 19010), +(59539, 'Letters of Samuel Taylor Coleridge, Vol. 2 (of 2)', 'Coleridge, Samuel Taylor', '2014-01-01', 28, 'https://www.gutenberg.org/ebooks/44554', 'en', 7897), +(59540, 'The Young Musician; Or, Fighting His Way', 'Alger, Horatio, Jr.', '2004-05-01', 41, 'https://www.gutenberg.org/ebooks/5673', 'en', 1432), +(59541, 'French Classics', 'Wilkinson, William Cleaver', '2011-05-20', 60, 'https://www.gutenberg.org/ebooks/36174', 'en', 1765), +(59542, 'Het Uilennest', 'Schippers, W.', '2014-04-24', 13, 'https://www.gutenberg.org/ebooks/45486', 'nl', 319), +(59543, 'The Slipper Point Mystery', 'Seaman, Augusta Huiell', '2012-06-02', 46, 'https://www.gutenberg.org/ebooks/39900', 'en', 62), +(59544, 'Voyages en Sibérie', 'Kubalski, N. A. (Nicolas A.)', '2016-06-29', 8, 'https://www.gutenberg.org/ebooks/52431', 'fr', 19011), +(59545, 'The Mary Frances Sewing Book; Or, Adventures Among the Thimble People', 'Fryer, Jane Eayre', '2019-02-28', 108, 'https://www.gutenberg.org/ebooks/58937', 'en', 19012), +(59546, 'Heath\'s Modern Language Series: Spanish Short Stories', NULL, '2010-08-11', 78, 'https://www.gutenberg.org/ebooks/33406', 'es', 188), +(59547, 'History of Greece, Volume 02 (of 12)', 'Grote, George', '2018-05-12', 14, 'https://www.gutenberg.org/ebooks/57143', 'en', 6424), +(59548, 'A History of Freedom of Thought', 'Bury, J. B. (John Bagnell)', '2004-01-01', 62, 'https://www.gutenberg.org/ebooks/10684', 'en', 19013), +(59549, 'Creierul, O Enigma Descifrata', 'Moisa, Dorin Teodor', '2004-03-01', 76, 'https://www.gutenberg.org/ebooks/11756', 'ro', 6623), +(59550, 'The Gamekeeper at Home: Sketches of Natural History and Rural Life', 'Jefferies, Richard', '2011-08-02', 32, 'https://www.gutenberg.org/ebooks/36948', 'en', 2441), +(59551, 'Kuvaelmia itä-suomalaisten vanhoista tavoista 1: Joulun vietto', 'Häyhä, Johannes', '2017-11-30', 8, 'https://www.gutenberg.org/ebooks/56091', 'fi', 9544), +(59552, 'Horace', 'Tuckwell, William', '2008-05-22', 8, 'https://www.gutenberg.org/ebooks/25563', 'en', 19014), +(59553, 'The Barefoot Time', 'Caldwell, Adelbert Farrington', '2012-10-11', 9, 'https://www.gutenberg.org/ebooks/41026', 'en', 1209), +(59554, 'Essays of Michel de Montaigne — Volume 04', 'Montaigne, Michel de', '2004-11-01', 10, 'https://www.gutenberg.org/ebooks/3584', 'en', 1964), +(59555, 'A Record of Study in Aboriginal American Languages', 'Brinton, Daniel G. (Daniel Garrison)', '2010-02-22', 8, 'https://www.gutenberg.org/ebooks/31351', 'en', 19015), +(59556, 'The Bayeux Tapestry Elucidated', 'Bruce, J. Collingwood (John Collingwood)', '2017-09-24', 14, 'https://www.gutenberg.org/ebooks/55614', 'en', 19016), +(59557, 'American Historical and Literary Curiosities, Part 18.\r\nSecond Series', 'Smith, J. Jay (John Jay)', '2004-07-15', 10, 'https://www.gutenberg.org/ebooks/7918', 'en', 1587), +(59558, 'California: Four Months among the Gold-Finders\r\nBeing the Diary of an Expedition from San Francisco to the Gold Districts', 'Vizetelly, Henry', '2004-07-23', 11, 'https://www.gutenberg.org/ebooks/13001', 'en', 1555), +(59559, 'My Father as I Recall Him', 'Dickens, Mamie', '2008-11-11', 23, 'https://www.gutenberg.org/ebooks/27234', 'en', 19017), +(59560, 'The History of Herodotus — Volume 2', 'Herodotus', '2001-01-01', 274, 'https://www.gutenberg.org/ebooks/2456', 'en', 5663), +(59561, 'The Sound of Silence', 'Constant, Barbara', '2009-10-19', 80, 'https://www.gutenberg.org/ebooks/30283', 'en', 26), +(59562, 'Gardens of the Caribbees, v. 2/2\nSketches of a Cruise to the West Indies and the Spanish Main', 'Starr, Ida May Hill', '2013-09-20', 7, 'https://www.gutenberg.org/ebooks/43771', 'en', 3841), +(59563, 'Kingless Folk, and Other Addresses on Bible Animals', 'Adams, John', '2015-03-02', 20, 'https://www.gutenberg.org/ebooks/48399', 'en', 16369), +(59564, 'The Copy/South Dossier\nIssues in the economics, politics, and ideology of copyright in the global South', NULL, '2007-09-23', 16, 'https://www.gutenberg.org/ebooks/22746', 'en', 2983), +(59565, 'Scientific American Supplement, No. 385, May 19, 1883', 'Various', '2005-09-01', 22, 'https://www.gutenberg.org/ebooks/8950', 'en', 210), +(59566, 'The Honorable Senator Sage-Brush', 'Lynde, Francis', '2005-08-21', 31, 'https://www.gutenberg.org/ebooks/16573', 'en', 2079), +(59567, 'Über das Geistige in der Kunst, Insbesondere in der Malerei', 'Kandinsky, Wassily', '2014-07-06', 32, 'https://www.gutenberg.org/ebooks/46203', 'de', 2250), +(59568, 'The Coral Island: A Tale of the Pacific Ocean', 'Ballantyne, R. M. (Robert Michael)', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/7124', 'en', 550), +(59569, 'O Claro Riso Medieval', 'Lima, João de Lebre e', '2010-12-11', 5, 'https://www.gutenberg.org/ebooks/34623', 'pt', 19018), +(59570, 'The Mirror of Literature, Amusement, and Instruction. Volume 10, No. 262, July 7, 1827', 'Various', '2006-02-01', 15, 'https://www.gutenberg.org/ebooks/9882', 'en', 133), +(59571, 'Proof-Reading\r\nA Series of Essays for Readers and Their Employers, and for Authors and Editors', 'Teall, F. Horace (Francis Horace)', '2015-11-02', 9, 'https://www.gutenberg.org/ebooks/50366', 'en', 8841), +(59572, 'Homo\n1909', 'Smith, Francis Hopkinson', '2007-12-03', 17, 'https://www.gutenberg.org/ebooks/23694', 'en', 179), +(59573, 'La vie infernale\n1. Pascale et Marguerite; 2. Lia d\'Argelès', 'Gaboriau, Emile', '2011-06-24', 29, 'https://www.gutenberg.org/ebooks/36510', 'fr', 687), +(59574, 'The Heart of Penelope', 'Lowndes, Marie Belloc', '2016-05-13', 20, 'https://www.gutenberg.org/ebooks/52055', 'en', 401), +(59575, 'Folk Lore\nSuperstitious Beliefs in the West of Scotland within This Century', 'Napier, James', '2005-05-07', 23, 'https://www.gutenberg.org/ebooks/15792', 'en', 3131), +(59576, 'The Two Admirals', 'Cooper, James Fenimore', '2007-01-29', 60, 'https://www.gutenberg.org/ebooks/20475', 'en', 19019), +(59577, 'McGuffey\'s First Eclectic Reader, Revised Edition', 'McGuffey, William Holmes', '2005-06-29', 546, 'https://www.gutenberg.org/ebooks/14640', 'en', 1019), +(59578, 'Harper\'s Young People, February 7, 1882\nAn Illustrated Weekly', 'Various', '2016-10-02', 5, 'https://www.gutenberg.org/ebooks/53187', 'en', 479), +(59579, 'The Esperantist, Vol. 2, No. 4', NULL, '2013-11-08', 5, 'https://www.gutenberg.org/ebooks/44130', 'eo', 3912), +(59580, 'Tales', 'Crabbe, George', '2004-03-01', 12, 'https://www.gutenberg.org/ebooks/5217', 'en', 532), +(59581, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 381, July 18, 1829', 'Various', '2004-02-01', 4, 'https://www.gutenberg.org/ebooks/11332', 'en', 133), +(59582, 'Sarréo\n1901', 'Becke, Louis', '2008-04-19', 42, 'https://www.gutenberg.org/ebooks/25107', 'en', 108), +(59583, 'On the Connexion of the Physical Sciences', 'Somerville, Mary', '2016-08-21', 36, 'https://www.gutenberg.org/ebooks/52869', 'en', 814), +(59584, 'Mrs. Tree\'s Will', 'Richards, Laura Elizabeth Howe', '2012-04-29', 15, 'https://www.gutenberg.org/ebooks/39558', 'en', 1380), +(59585, 'Alkuperäisiä suomalaisia uuteloita II-III', 'Gummerus, K. J. (Kaarle Jaakko)', '2012-11-22', 5, 'https://www.gutenberg.org/ebooks/41442', 'fi', 456), +(59586, 'A Century of Science, and Other Essays', 'Fiske, John', '2012-08-27', 22, 'https://www.gutenberg.org/ebooks/40590', 'en', 7621), +(59587, 'A Short History of French Literature', 'Saintsbury, George', '2010-07-03', 25, 'https://www.gutenberg.org/ebooks/33062', 'en', 1765), +(59588, 'The great white way;\r\na record of an unusual voyage of discovery, and some romantic love affairs amid strange surroundings', 'Paine, Albert Bigelow', '2018-07-17', 13, 'https://www.gutenberg.org/ebooks/57527', 'en', 26), +(59589, 'Punch, or the London Charivari, Volume 101, July 25, 1891', 'Various', '2004-09-15', 6, 'https://www.gutenberg.org/ebooks/13465', 'en', 134), +(59590, 'The Lost Continent', 'Burroughs, Edgar Rice', '1994-07-01', 239, 'https://www.gutenberg.org/ebooks/149', 'en', 580), +(59591, 'The Doers', 'Hopkins, William John', '2008-12-29', 12, 'https://www.gutenberg.org/ebooks/27650', 'en', 4718), +(59592, 'Martin Pippin in the Apple Orchard', 'Farjeon, Eleanor', '2000-01-01', 29, 'https://www.gutenberg.org/ebooks/2032', 'en', 19020), +(59593, 'Œuvres Complètes de Frédéric Bastiat, tome 3\r\nmises en ordre, revues et annotées d\'après les manuscrits de l\'auteur', 'Bastiat, Frédéric', '2013-07-26', 21, 'https://www.gutenberg.org/ebooks/43315', 'fr', 1745), +(59594, 'The Evolution of Man Scientifically Disproved in 50 Arguments', 'Williams, William A. (William Asbury)', '2005-07-01', 29, 'https://www.gutenberg.org/ebooks/8508', 'en', 1315), +(59595, 'The Psilent Partner', 'Peterson, John Victor', '2010-03-22', 16, 'https://www.gutenberg.org/ebooks/31735', 'en', 179), +(59596, 'It Could Be Anything', 'Laumer, Keith', '2008-10-05', 128, 'https://www.gutenberg.org/ebooks/26782', 'en', 26), +(59597, 'The Ways of Life: Two Stories', 'Oliphant, Mrs. (Margaret)', '2017-08-05', 16, 'https://www.gutenberg.org/ebooks/55270', 'en', 61), +(59598, 'Caught in a Trap', 'Hutcheson, John C. (John Conroy)', '2010-11-08', 15, 'https://www.gutenberg.org/ebooks/34247', 'en', 1380), +(59599, 'Ethics — Part 5', 'Spinoza, Benedictus de', '1997-07-01', 20, 'https://www.gutenberg.org/ebooks/975', 'en', 680), +(59600, 'Biographies of Working Men', 'Allen, Grant', '2004-09-01', 13, 'https://www.gutenberg.org/ebooks/6492', 'en', 5691), +(59601, 'Venus Boy', 'Sutton, Lee', '2015-12-15', 21, 'https://www.gutenberg.org/ebooks/50702', 'en', 19021), +(59602, 'From Farm House to the White House\r\nThe life of George Washington, his boyhood, youth, manhood, public and private life and services', 'Thayer, William Makepeace', '2009-04-27', 19, 'https://www.gutenberg.org/ebooks/28618', 'en', 7558), +(59603, 'A Legend of Old Persia and Other Poems', 'Tennyson, A. B. S. (Alfred Browning Stanley)', '2007-08-14', 12, 'https://www.gutenberg.org/ebooks/22322', 'en', 8), +(59604, 'Het land der Bagas en de Rio-Nuñez\r\nDe Aarde en haar Volken, 1887', 'Coffinières de Nordeck, Grégoire-Gaspard-Félix', '2005-06-23', 12, 'https://www.gutenberg.org/ebooks/16117', 'nl', 708), +(59605, 'Chronicles of England, Scotland and Ireland (2 of 6): England (08 of 12)\r\nHenrie the Third, the Eldest Sonne of King Iohn', 'Holinshed, Raphael', '2014-08-24', 33, 'https://www.gutenberg.org/ebooks/46667', 'en', 4746), +(59606, 'Stop Look and Dig', 'Smith, George O. (George Oliver)', '2006-11-29', 25, 'https://www.gutenberg.org/ebooks/19963', 'en', 2169), +(59607, 'The Letters of Anne Gilchrist and Walt Whitman', 'Gilchrist, Anne (Anne Burrows)', '2011-02-24', 31, 'https://www.gutenberg.org/ebooks/35395', 'en', 19022), +(59608, 'Quotes and Images from Christopher Columbus', 'Young, Filson', '2004-08-30', 26, 'https://www.gutenberg.org/ebooks/7540', 'en', 1026), +(59609, 'An Enchanted Garden: Fairy Stories', 'Molesworth, Mrs.', '2013-07-08', 9, 'https://www.gutenberg.org/ebooks/43127', 'en', 1817), +(59610, 'The Spirit of the School', 'Barbour, Ralph Henry', '2017-02-18', 9, 'https://www.gutenberg.org/ebooks/54190', 'en', 19023), +(59611, 'Der Todesgruß der Legionen, 1. Band', 'Samarow, Gregor', '2004-10-06', 28, 'https://www.gutenberg.org/ebooks/13657', 'de', 18752), +(59612, 'The Rival Crusoes; Or, The Ship Wreck\r\nAlso A Voyage to Norway; and The Fisherman\'s Cottage.', 'Strickland, Agnes', '2011-01-04', 3, 'https://www.gutenberg.org/ebooks/34849', 'en', 61), +(59613, 'The Last Evolution', 'Campbell, John W., Jr. (John Wood)', '2008-12-09', 119, 'https://www.gutenberg.org/ebooks/27462', 'en', 179), +(59614, 'The Atlantic Monthly, Volume 11, No. 64, February, 1863\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-06-30', 11, 'https://www.gutenberg.org/ebooks/12785', 'en', 1227), +(59615, 'Tar-Heel Tales in Vernacular Verse', 'Doyle, J. E. P. (John Edward Parker)', '2017-07-04', 14, 'https://www.gutenberg.org/ebooks/55042', 'en', 19024), +(59616, 'Peggy Raymond\'s Vacation; Or, Friendly Terrace Transplanted', 'Smith, Harriet L. (Harriet Lummis)', '2010-03-04', 40, 'https://www.gutenberg.org/ebooks/31507', 'en', 82), +(59617, 'Die Wupper: Schauspiel in 5 Aufzügen', 'Lasker-Schüler, Else', '2015-11-22', 18, 'https://www.gutenberg.org/ebooks/50530', 'de', 3978), +(59618, 'The New Gresham Encyclopedia. Atrebates to Bedlis\r\nVol. 1 Part 3', 'Various', '2010-10-15', 14, 'https://www.gutenberg.org/ebooks/34075', 'en', 1081), +(59619, 'Anatole France', 'Brandes, Georg', '2014-12-08', 9, 'https://www.gutenberg.org/ebooks/47587', 'en', 11170), +(59620, 'Life on a Mediaeval Barony\nA Picture of a Typical Feudal Community in the Thirteenth Century', 'Davis, William Stearns', '2014-07-30', 95, 'https://www.gutenberg.org/ebooks/46455', 'en', 19025), +(59621, 'Les Quarante-Cinq — Tome 3', 'Dumas, Alexandre', '2005-03-01', 25, 'https://www.gutenberg.org/ebooks/7772', 'fr', 9760), +(59622, 'Martian V.F.W.', 'Vandenburg, G. L.', '2007-07-20', 43, 'https://www.gutenberg.org/ebooks/22110', 'en', 26), +(59623, 'Science in Arcady', 'Allen, Grant', '2005-07-18', 17, 'https://www.gutenberg.org/ebooks/16325', 'en', 2011), +(59624, '鶯鶯傳', 'Yuan, Zhen', '2016-06-08', 13, 'https://www.gutenberg.org/ebooks/52267', 'zh', 947), +(59625, 'Fred Fearnot\'s New Ranch\r\nand How He and Terry Managed It', 'Shackleford, H. K. (Harvey King)', '2007-06-10', 14, 'https://www.gutenberg.org/ebooks/21795', 'en', 9206), +(59626, 'The Revision Revised\r\nThree Articles Reprinted from the \"Quarterly Review.\" I. The New Greek Text. II. The New English Version. III. Westcott and Hort\'s New Textual Theory. To Which is Added a Reply to Bishop Ellicott\'s Pamphlet in Defence of the Revisers and Their Greek Text of the New Testament: Including a Vindication of the Traditional Reading of 1 Timothy III. 16.', 'Burgon, John William', '2011-07-13', 78, 'https://www.gutenberg.org/ebooks/36722', 'en', 19026), +(59627, 'Plays by August Strindberg, Fourth Series', 'Strindberg, August', '2013-11-27', 28, 'https://www.gutenberg.org/ebooks/44302', 'en', 4675), +(59628, 'State of the Union Addresses', 'Johnson, Andrew', '2004-02-01', 22, 'https://www.gutenberg.org/ebooks/5025', 'en', 1276), +(59629, 'The Continental Monthly, Vol. 2, No 3, September, 1862\nDevoted to Literature and National Policy.', 'Various', '2007-02-22', 9, 'https://www.gutenberg.org/ebooks/20647', 'en', 162), +(59630, 'Showell\'s Dictionary of Birmingham\r\nA History and Guide, Arranged Alphabetically', 'Showell, Walter', '2004-12-26', 29, 'https://www.gutenberg.org/ebooks/14472', 'en', 19027), +(59631, 'Old Friends and New', 'Jewett, Sarah Orne', '2010-05-15', 27, 'https://www.gutenberg.org/ebooks/32382', 'en', 112), +(59632, 'Carinus; A nagyenyedi két fűzfa', 'Jókai, Mór', '2012-12-20', 8, 'https://www.gutenberg.org/ebooks/41670', 'hu', 12184), +(59633, 'History of Modern Philosophy\nFrom Nicolas of Cusa to the Present Time', 'Falckenberg, Richard', '2004-02-01', 73, 'https://www.gutenberg.org/ebooks/11100', 'en', 18309), +(59634, 'Robert Burns. Vol. 1, La Vie', 'Angellier, Auguste', '2008-05-05', 24, 'https://www.gutenberg.org/ebooks/25335', 'fr', 5193), +(59635, 'Footsteps of Dr. Johnson (Scotland)', 'Hill, George Birkbeck Norman', '2018-08-17', 51, 'https://www.gutenberg.org/ebooks/57715', 'en', 2714), +(59636, 'The Gilded Age, Part 2.', 'Warner, Charles Dudley', '2004-06-20', 17, 'https://www.gutenberg.org/ebooks/5819', 'en', 10812), +(59637, 'The Use and Need of the Life of Carry A. Nation', 'Nation, Carry Amelia', '1998-10-01', 25, 'https://www.gutenberg.org/ebooks/1485', 'en', 19028), +(59638, 'L\'art roman dans le Sud-Manche: Album', 'Lebert, Marie', '2010-07-24', 6, 'https://www.gutenberg.org/ebooks/33250', 'fr', 1117), +(59639, 'Index of the Project Gutenberg Works of Harriet Beecher Stowe', 'Stowe, Harriet Beecher', '2018-11-17', 5, 'https://www.gutenberg.org/ebooks/58301', 'en', 198), +(59640, 'Cleopatra — Volume 07', 'Ebers, Georg', '2004-04-01', 16, 'https://www.gutenberg.org/ebooks/5479', 'en', 10937), +(59641, 'A Midsummer Drive Through the Pyrenees', 'Dix, Edwin Asa', '2005-01-26', 22, 'https://www.gutenberg.org/ebooks/14812', 'en', 13839), +(59642, 'Table d\'Hôte', 'Ridge, W. Pett (William Pett)', '2018-06-18', 36, 'https://www.gutenberg.org/ebooks/57349', 'en', 409), +(59643, 'More Cargoes\n1897', 'Jacobs, W. W. (William Wymark)', '2008-06-12', 30, 'https://www.gutenberg.org/ebooks/25769', 'en', 1224), +(59644, 'Gaal György magyar népmese-gyűjteménye (2. kötet)', 'Gaal, György', '2012-04-01', 7, 'https://www.gutenberg.org/ebooks/39336', 'hu', 2), +(59645, 'Ultimatum de 11 de Janeiro', 'Quental, Antero de', '2009-09-15', 6, 'https://www.gutenberg.org/ebooks/29998', 'pt', 15363), +(59646, 'Kate Greenaway', 'Layard, George Somes', '2015-05-24', 23, 'https://www.gutenberg.org/ebooks/49041', 'en', 19029), +(59647, 'The Bible, Douay-Rheims, Book 66: James\nThe Challoner Revision', NULL, '2005-06-01', 6, 'https://www.gutenberg.org/ebooks/8366', 'en', 7164), +(59648, 'Trial of the Major War Criminals Before the International Military Tribunal, Nuremburg, 14 November 1945-1 October 1946, Volume 2', 'Various', '2016-04-28', 30, 'https://www.gutenberg.org/ebooks/51882', 'en', 653), +(59649, 'Impressioni d\'America', 'Giacosa, Giuseppe', '2014-09-10', 11, 'https://www.gutenberg.org/ebooks/46835', 'it', 1110), +(59650, 'Under the Ocean to the South Pole; Or, the Strange Cruise of the Submarine Wonder', 'Rockwood, Roy', '2006-11-07', 45, 'https://www.gutenberg.org/ebooks/19731', 'en', 5237), +(59651, 'The Star-Spangled Banner', 'Carpenter, John A.', '1996-11-01', 40, 'https://www.gutenberg.org/ebooks/727', 'en', 2941), +(59652, 'Young Barbarians', 'Maclaren, Ian', '2009-09-25', 21, 'https://www.gutenberg.org/ebooks/30089', 'en', 61), +(59653, 'State of the Union Addresses of Barack Obama, 2009-2016', 'Obama, Barack', '2016-01-17', 14, 'https://www.gutenberg.org/ebooks/50950', 'en', 1276), +(59654, 'Commentary on Genesis, Vol. 1: Luther on the Creation', 'Luther, Martin', '2015-02-07', 143, 'https://www.gutenberg.org/ebooks/48193', 'en', 11656), +(59655, 'A Ryght Profytable Treatyse Compendiously Drawen Out Of Many and Dyvers Wrytynges Of Holy Men', 'Betson, Thomas', '2005-10-02', 18, 'https://www.gutenberg.org/ebooks/16779', 'en', 1130), +(59656, 'Graded Poetry: Third Year', NULL, '2010-04-12', 11, 'https://www.gutenberg.org/ebooks/31967', 'en', 6294), +(59657, 'The Privy Purse Expenses of King Henry VIII from November MDXXIX, to December MDXXXII', 'Nicolas, Nicholas Harris, Sir', '2014-06-17', 7, 'https://www.gutenberg.org/ebooks/46009', 'en', 2157), +(59658, 'Check-list of the Birds of Kansas', 'Tordoff, Harrison Bruce', '2010-11-24', 15, 'https://www.gutenberg.org/ebooks/34429', 'en', 13533), +(59659, 'Darius the Great\nMakers of History', 'Abbott, Jacob', '2009-01-13', 80, 'https://www.gutenberg.org/ebooks/27802', 'en', 19030), +(59660, 'Original Short Stories, Complete, Volumes 1-13\nAn Index to All Stories', 'Maupassant, Guy de', '2009-02-14', 96, 'https://www.gutenberg.org/ebooks/28076', 'en', 1112), +(59661, 'Historic Tales: The Romance of Reality. Vol. 03 (of 15), Spanish American', 'Morris, Charles', '2006-10-09', 18, 'https://www.gutenberg.org/ebooks/19503', 'en', 10498), +(59662, 'American Historical and Literary Curiosities, Part 20', 'Smith, J. Jay (John Jay)', '2004-07-15', 10, 'https://www.gutenberg.org/ebooks/7920', 'en', 453), +(59663, 'ABC of the Steel Square and Its Uses', 'Hodgson, Fred. T. (Frederick Thomas)', '2015-06-24', 55, 'https://www.gutenberg.org/ebooks/49273', 'en', 19031), +(59664, 'Revolutionary Heroes, and Other Historical Papers', 'Parton, James', '2005-05-01', 25, 'https://www.gutenberg.org/ebooks/8154', 'en', 3643), +(59665, 'Nationality and Race from an Anthropologist\'s Point of View\r\nBeing the Robert Boyle lecture delivered before the Oxford university junior scientific club on November 17, 1919', 'Keith, Arthur, Sir', '2010-02-23', 10, 'https://www.gutenberg.org/ebooks/31369', 'en', 11831), +(59666, 'Die Witwe von Pisa', 'Heyse, Paul', '2005-10-01', 26, 'https://www.gutenberg.org/ebooks/9086', 'de', 16), +(59667, 'The Carpet from Bagdad', 'MacGrath, Harold', '2013-09-16', 14, 'https://www.gutenberg.org/ebooks/43749', 'en', 7280), +(59668, 'Margret Howth: A Story of To-day', 'Davis, Rebecca Harding', '1996-05-01', 100, 'https://www.gutenberg.org/ebooks/515', 'en', 61), +(59669, 'Shenandoah : A Military Comedy\r\nRepresentative Plays by American Dramatists: 1856-1911', 'Howard, Bronson', '2004-07-28', 10, 'https://www.gutenberg.org/ebooks/13039', 'en', 13211), +(59670, 'Kypron prinsessa: 4-näytöksinen satunäytelmä', 'Topelius, Zacharias', '2009-07-13', 6, 'https://www.gutenberg.org/ebooks/29396', 'fi', 402), +(59671, 'The World Set Free', 'Wells, H. G. (Herbert George)', '2005-09-01', 8, 'https://www.gutenberg.org/ebooks/8968', 'en', 2564), +(59672, 'A Jolly by Josh', NULL, '2006-01-13', 3, 'https://www.gutenberg.org/ebooks/17499', 'en', 9029), +(59673, 'The Gay Rebellion', 'Chambers, Robert W. (Robert William)', '2009-03-04', 30, 'https://www.gutenberg.org/ebooks/28244', 'en', 26), +(59674, 'Todsünden', 'Heiberg, Hermann', '2004-10-20', 10, 'https://www.gutenberg.org/ebooks/13805', 'de', 906), +(59675, 'In the Dead of Night: A Novel. Volume 3 (of 3)', 'Speight, T. W. (Thomas Wilkinson)', '2018-09-21', 10, 'https://www.gutenberg.org/ebooks/57947', 'en', 137), +(59676, 'Las Fábulas de Esopo, Vol. 02', 'Townsend, George Fyler', '2006-11-06', 11, 'https://www.gutenberg.org/ebooks/20029', 'es', 2609), +(59677, 'Twentieth Century Culture and Deportment\r\nOr the Lady and Gentleman at Home and Abroad; Containing Rules of Etiquette for All Occasions, Including Calls; Invitations; Parties; Weddings; Receptions; Dinners and Teas; Etiquette of the Street; Public Places, Etc., Etc. Forming a Complete Guide to Self-Culture; the Art of Dressing Well; Conversation; Courtship; Etiquette for Children; Letter-Writing; Artistic Home and Interior Decorations, Etc.', 'Cooke, Maud C.', '2018-10-18', 46, 'https://www.gutenberg.org/ebooks/58133', 'en', 788), +(59678, 'Visions & Cants', 'Maragall, Joan', '2016-06-25', 8, 'https://www.gutenberg.org/ebooks/52409', 'ca', 18942), +(59679, 'Drei Abhandlungen zur Sexualtheorie', 'Freud, Sigmund', '2012-06-07', 38, 'https://www.gutenberg.org/ebooks/39938', 'de', 3052), +(59680, 'Phroso: A Romance', 'Hope, Anthony', '2013-01-11', 26, 'https://www.gutenberg.org/ebooks/41822', 'en', 48), +(59681, 'A Yankee Flier in the Far East', 'Montgomery, Rutherford G. (Rutherford George)', '2018-04-02', 16, 'https://www.gutenberg.org/ebooks/56895', 'en', 19032), +(59682, 'The Complete Poetical Works of Percy Bysshe Shelley — Volume 3', 'Shelley, Percy Bysshe', '2003-12-01', 53, 'https://www.gutenberg.org/ebooks/4799', 'en', 54), +(59683, 'Little White Fox and his Arctic Friends', 'Snell, Roy J. (Roy Judson)', '2008-02-02', 20, 'https://www.gutenberg.org/ebooks/24489', 'en', 625), +(59684, 'A Soldier of the Legion', 'Williamson, C. N. (Charles Norris)', '2007-03-14', 22, 'https://www.gutenberg.org/ebooks/20815', 'en', 2126), +(59685, 'Sketches of Reforms and Reformers, of Great Britain and Ireland', 'Stanton, Henry B. (Henry Brewster)', '2012-03-11', 12, 'https://www.gutenberg.org/ebooks/39104', 'en', 5067), +(59686, 'The Confessions of a Poacher', 'Watson, John, F.L.S.', '2011-08-04', 25, 'https://www.gutenberg.org/ebooks/36970', 'en', 19033), +(59687, 'Charlotte Temple', 'Rowson, Mrs.', '2006-03-12', 173, 'https://www.gutenberg.org/ebooks/171', 'en', 19034), +(59688, 'Βάτραχοι', 'Aristophanes', '2008-12-31', 43, 'https://www.gutenberg.org/ebooks/27668', 'el', 19035), +(59689, 'Billy Whiskers: The Autobiography of a Goat', 'Montgomery, Frances Trego', '2006-09-03', 14, 'https://www.gutenberg.org/ebooks/19167', 'en', 16727), +(59690, 'Aatteiden mies: Piirteitä August Fredrik Soldanin elämästä', 'Aho, Juhani', '2017-08-03', 5, 'https://www.gutenberg.org/ebooks/55248', 'fi', 19036), +(59691, 'The Good Crow\'s Happy Shop', 'Beard, Patten', '2015-08-05', 15, 'https://www.gutenberg.org/ebooks/49617', 'en', 1415), +(59692, 'A Study of Hawthorne', 'Lathrop, George Parsons', '2005-07-01', 25, 'https://www.gutenberg.org/ebooks/8530', 'en', 6216), +(59693, 'The Life of the Right Honourable Horatio Lord Viscount Nelson, Volume 2', 'Harrison, James', '2005-10-21', 11, 'https://www.gutenberg.org/ebooks/16913', 'en', 10139), +(59694, 'Abraham Lincoln and the Union: A Chronicle of the Embattled North', 'Stephenson, Nathaniel W. (Nathaniel Wright)', '2001-09-01', 26, 'https://www.gutenberg.org/ebooks/2836', 'en', 1716), +(59695, 'Helena Wrede: Romanttinen kertomus Kustaavi II Adolfin ajalta', 'Mellin, G. H. (Gustaf Henrik)', '2009-04-27', 14, 'https://www.gutenberg.org/ebooks/28620', 'fi', 2168), +(59696, 'Mémoire sur la réunion des trois services, des postes aux chevaux, de la poste aux lettres, et des messageries, sous une seule administration', 'Fenis, M.', '2006-07-22', 23, 'https://www.gutenberg.org/ebooks/18889', 'fr', 10378), +(59697, 'Widger\'s Quotes and Images from L\'Abbe Constantin by Ludovic Halévy\r\nThe French Immortals: Quotes and Images', 'Halévy, Ludovic', '2009-07-13', 5, 'https://www.gutenberg.org/ebooks/7578', 'en', 2391), +(59698, 'Wintering Bees in Cellars', 'Demuth, Geo. S. (George S.)', '2019-05-12', 17, 'https://www.gutenberg.org/ebooks/59485', 'en', 87), +(59699, 'Monsieur Vénus', 'Rachilde', '2011-06-26', 83, 'https://www.gutenberg.org/ebooks/36528', 'fr', 3213), +(59700, 'The Miscellaneous Writings and Speeches of Lord Macaulay\nComplete Table of Contents of the Four Volumes', 'Macaulay, Thomas Babington Macaulay, Baron', '2008-06-26', 18, 'https://www.gutenberg.org/ebooks/25903', 'en', 198), +(59701, 'The Inferno', 'Strindberg, August', '2013-11-05', 104, 'https://www.gutenberg.org/ebooks/44108', 'en', 8810), +(59702, 'Autobiography of Miss Cornelia Knight, lady companion to the Princess Charlotte of Wales, Volume 2 (of 2)\nwith extracts from her journals and anecdote books', 'Knight, Ellis Cornelia', '2018-12-28', 10, 'https://www.gutenberg.org/ebooks/58557', 'en', 19037), +(59703, 'The War of the Wenuses', 'Lucas, E. V. (Edward Verrall)', '2005-01-13', 14, 'https://www.gutenberg.org/ebooks/14678', 'en', 19038), +(59704, 'La zampa del gatto\nTeatro in prosa vol. II', 'Giacosa, Giuseppe', '2010-10-15', 22, 'https://www.gutenberg.org/ebooks/33866', 'it', 907), +(59705, 'Fairy Circles\r\nTales and Legends of Giants, Dwarfs, Fairies, Water-Sprites, and Hobgoblins', 'Villamaria', '2012-04-28', 52, 'https://www.gutenberg.org/ebooks/39560', 'en', 1007), +(59706, 'A Little Bit of Fluff: A Farce in Three Acts', 'Ellis, Walter', '2016-08-19', 12, 'https://www.gutenberg.org/ebooks/52851', 'en', 317), +(59707, 'Eikon Basilike\nThe Pourtracture of His Sacred Majestie, in His Solitudes and Sufferings', 'Gauden, John', '2010-04-30', 40, 'https://www.gutenberg.org/ebooks/32188', 'en', 19039), +(59708, 'Captives Among the Indians', 'Harbison, Massy', '2014-02-16', 44, 'https://www.gutenberg.org/ebooks/44934', 'en', 19040), +(59709, 'The Irish Penny Journal, Vol. 1 No. 08, August 22, 1840', 'Various', '2017-01-17', 4, 'https://www.gutenberg.org/ebooks/53983', 'en', 81), +(59710, 'Ailsa Paige: A Novel', 'Chambers, Robert W. (Robert William)', '2004-04-01', 34, 'https://www.gutenberg.org/ebooks/11904', 'en', 8347), +(59711, 'Advis de la deffaicte des Anglois et autres heretiques\nvenuz en Bretaigne, pour le Roy de Navarre, pres Chasteau-bourg.', 'Sainct Maixant, M.', '2005-04-09', 7, 'https://www.gutenberg.org/ebooks/15598', 'fr', 19041), +(59712, 'The Cowardly Lion of Oz', 'Thompson, Ruth Plumly', '2019-01-24', 54, 'https://www.gutenberg.org/ebooks/58765', 'en', 14842), +(59713, 'Comic History of England', 'Nye, Bill', '2004-02-01', 46, 'https://www.gutenberg.org/ebooks/11138', 'en', 6245), +(59714, 'Fairy Legends and Traditions of the South of Ireland', 'Croker, Thomas Crofton', '2012-05-21', 52, 'https://www.gutenberg.org/ebooks/39752', 'en', 6157), +(59715, 'Millais', 'Baldry, A. L. (Alfred Lys)', '2012-12-18', 19, 'https://www.gutenberg.org/ebooks/41648', 'en', 19042), +(59716, 'The Thirteenth, Greatest of Centuries', 'Walsh, James J. (James Joseph)', '2012-01-27', 40, 'https://www.gutenberg.org/ebooks/38680', 'en', 19043), +(59717, 'Maria Edgeworth', 'Zimmern, Helen', '2010-07-26', 11, 'https://www.gutenberg.org/ebooks/33268', 'en', 12321), +(59718, 'The Gilded Age, Part 4.', 'Twain, Mark', '2004-06-20', 20, 'https://www.gutenberg.org/ebooks/5821', 'en', 5080), +(59719, 'Songs of the Springtides and Birthday Ode\nTaken from The Collected Poetical Works of Algernon Charles\nSwinburne—Vol. III', 'Swinburne, Algernon Charles', '2006-04-30', 14, 'https://www.gutenberg.org/ebooks/18287', 'en', 8), +(59720, 'Fables', 'Stevenson, Robert Louis', '1995-10-01', 99, 'https://www.gutenberg.org/ebooks/343', 'en', 179), +(59721, 'The Englishman from Paris', 'Murphy, Arthur', '2011-01-07', 8, 'https://www.gutenberg.org/ebooks/34871', 'en', 402), +(59722, 'Measure for Measure', 'Shakespeare, William', '2000-07-01', 42, 'https://www.gutenberg.org/ebooks/2238', 'en', 4465), +(59723, 'The Wide World Magazine, Vol. 22, No. 127, October to March, 1909', 'Various', '2015-07-12', 10, 'https://www.gutenberg.org/ebooks/49425', 'en', 2539), +(59724, 'The Sceptical Chymist\nor Chymico-Physical Doubts & Paradoxes, Touching the Spagyrist\'s Principles Commonly call\'d Hypostatical; As they are wont to be Propos\'d and Defended by the Generality of Alchymists. Whereunto is præmis\'d Part of another Discourse relating to the same Subject.', 'Boyle, Robert', '2007-10-08', 180, 'https://www.gutenberg.org/ebooks/22914', 'en', 951), +(59725, 'The Doré Bible Gallery, Volume 2', NULL, '2004-07-28', 21, 'https://www.gutenberg.org/ebooks/8702', 'en', 9674), +(59726, 'Ophelia', 'De la Mare, Walter', '2008-09-01', 4, 'https://www.gutenberg.org/ebooks/26588', 'en', 19044), +(59727, 'A Book of Prefaces', 'Mencken, H. L. (Henry Louis)', '2006-09-22', 67, 'https://www.gutenberg.org/ebooks/19355', 'en', 19045), +(59728, 'Squib and His Friends', 'Everett-Green, Evelyn', '2017-06-28', 5, 'https://www.gutenberg.org/ebooks/54994', 'en', 3427), +(59729, 'Phänomenologie des Geistes', 'Hegel, Georg Wilhelm Friedrich', '2004-10-01', 189, 'https://www.gutenberg.org/ebooks/6698', 'de', 19046), +(59730, 'The Memoirs of Admiral Lord Beresford', 'Beresford, Charles William De la Poer Beresford, Baron', '2015-11-20', 9, 'https://www.gutenberg.org/ebooks/50508', 'en', 6020), +(59731, 'La race future', 'Lytton, Edward Bulwer Lytton, Baron', '2009-03-25', 22, 'https://www.gutenberg.org/ebooks/28412', 'fr', 5147), +(59732, 'Le lion du désert: Scènes de la vie indienne dans les prairies', 'Aimard, Gustave', '2013-10-10', 18, 'https://www.gutenberg.org/ebooks/43923', 'fr', 61), +(59733, 'Bessie Costrell', 'Ward, Humphry, Mrs.', '2007-07-26', 9, 'https://www.gutenberg.org/ebooks/22128', 'en', 1763), +(59734, 'Boat Sailing in Fair Weather and Foul, 6th ed.', 'Kenealy, A. J. (Ahmed John)', '2017-10-29', 30, 'https://www.gutenberg.org/ebooks/55846', 'en', 14235), +(59735, 'Il pastor fido in lingua napolitana', 'Guarini, Giovanni Battista', '2006-02-23', 38, 'https://www.gutenberg.org/ebooks/17835', 'nap', 19047), +(59736, 'A Changed Man and Other Tales', 'Hardy, Thomas', '2005-12-01', 0, 'https://www.gutenberg.org/ebooks/9416', 'en', 8003), +(59737, 'Les Misérables, v. 1/5: Fantine', 'Hugo, Victor', '2015-04-18', 72, 'https://www.gutenberg.org/ebooks/48731', 'en', 2986), +(59738, 'Celtic Religion\nin Pre-Christian Times', 'Anwyl, E. (Edward)', '2006-03-23', 26, 'https://www.gutenberg.org/ebooks/18041', 'en', 11093), +(59739, 'Making the Most of Life', 'Miller, J. R. (James Russell)', '2006-09-06', 21, 'https://www.gutenberg.org/ebooks/19193', 'en', 1130), +(59740, 'Studies in Occultism; A Series of Reprints from the Writings of H. P. Blavatsky\nNo. 1: Practical Occultism—Occultism versus the Occult\nArts—The Blessings of Publicity', 'Blavatsky, H. P. (Helena Petrovna)', '2005-11-05', 94, 'https://www.gutenberg.org/ebooks/17009', 'en', 746), +(59741, 'A List of Educational Works Published by Methuen & Company - June 1900', 'Methuen & Co.', '2014-12-25', 4, 'https://www.gutenberg.org/ebooks/47779', 'en', 6345), +(59742, 'Jimmie Moore of Bucktown', 'Trotter, Melvin E. (Melvin Earnest)', '2011-02-22', 7, 'https://www.gutenberg.org/ebooks/35359', 'en', 4927), +(59743, 'Cartas de mi molino', 'Daudet, Alphonse', '2009-08-16', 38, 'https://www.gutenberg.org/ebooks/29706', 'es', 4), +(59744, 'The Confessions of Jean Jacques Rousseau — Volume 10', 'Rousseau, Jean-Jacques', '2004-12-06', 7, 'https://www.gutenberg.org/ebooks/3910', 'en', 608), +(59745, 'Haaksirikko', 'Tagore, Rabindranath', '2019-05-10', 8, 'https://www.gutenberg.org/ebooks/59471', 'fi', 1228), +(59746, 'Neljän merkit', 'Doyle, Arthur Conan', '2016-05-18', 15, 'https://www.gutenberg.org/ebooks/52099', 'fi', 430), +(59747, 'Encyclopaedia Britannica, 11th Edition, \"England\" to \"English Finance\"\r\nVolume 9, Slice 4', 'Various', '2010-06-21', 19, 'https://www.gutenberg.org/ebooks/32940', 'en', 1081), +(59748, 'Demos', 'Gissing, George', '2003-08-01', 23, 'https://www.gutenberg.org/ebooks/4309', 'en', 95), +(59749, 'The Ghost of Chatham; A Vision\nDedicated to the House of Peers', 'Anonymous', '2008-03-13', 7, 'https://www.gutenberg.org/ebooks/24825', 'en', 8), +(59750, 'Regina, or the Sins of the Fathers', 'Sudermann, Hermann', '2010-10-30', 14, 'https://www.gutenberg.org/ebooks/33892', 'en', 61), +(59751, 'The Little Colonel\'s Knight Comes Riding', 'Johnston, Annie F. (Annie Fellows)', '2012-05-02', 20, 'https://www.gutenberg.org/ebooks/39594', 'en', 19048), +(59752, 'Old Clinkers: A Story of the New York Fire Department', 'O\'Higgins, Harvey Jerrold', '2018-01-26', 12, 'https://www.gutenberg.org/ebooks/56439', 'en', 1660), +(59753, 'Insect Adventures', 'Zimm, Louise Hasbrouck', '2014-05-29', 50, 'https://www.gutenberg.org/ebooks/45812', 'en', 2667), +(59754, 'Excelsior', 'Harte, Bret', '2007-12-24', 15, 'https://www.gutenberg.org/ebooks/24019', 'en', 19049), +(59755, 'Outlines of a Philosophy of Religion based on Psychology and History', 'Sabatier, Auguste', '2011-12-30', 15, 'https://www.gutenberg.org/ebooks/38446', 'en', 19050), +(59756, 'Aeneidi', 'Virgil', '2017-01-16', 17, 'https://www.gutenberg.org/ebooks/53977', 'fi', 19051), +(59757, 'Family Tree', 'Fontenay, Charles L.', '2019-05-31', 131, 'https://www.gutenberg.org/ebooks/59643', 'en', 14614), +(59758, 'Kate Coventry: An Autobiography', 'Whyte-Melville, G. J. (George John)', '2007-06-07', 11, 'https://www.gutenberg.org/ebooks/21759', 'en', 1902), +(59759, 'Precepts in Practice; or, Stories Illustrating the Proverbs', 'A. L. O. E.', '2019-01-30', 35, 'https://www.gutenberg.org/ebooks/58791', 'en', 388), +(59760, 'Japanilaisia satuja', NULL, '2016-10-27', 22, 'https://www.gutenberg.org/ebooks/53379', 'fi', 8436), +(59761, 'El paraiso de las mujeres\r\nNovela', 'Blasco Ibáñez, Vicente', '2004-01-01', 67, 'https://www.gutenberg.org/ebooks/10822', 'es', 2042), +(59762, 'Moths of the Limberlost: A Book About Limberlost Cabin', 'Stratton-Porter, Gene', '2004-01-01', 37, 'https://www.gutenberg.org/ebooks/4907', 'en', 19052), +(59763, 'De la terre à la lune, trajet direct en 97 heures 20 minutes', 'Verne, Jules', '2012-01-25', 37, 'https://www.gutenberg.org/ebooks/38674', 'fr', 1029), +(59764, 'The Valley of the Moon', 'London, Jack', '1998-09-01', 94, 'https://www.gutenberg.org/ebooks/1449', 'en', 287), +(59765, 'Garden Ornaments', 'Northend, Mary Harrod', '2011-01-08', 26, 'https://www.gutenberg.org/ebooks/34885', 'en', 8600), +(59766, 'The Wild Tribes of Davao District, Mindanao\r\nThe R. F. Cummings Philippine Expedition', 'Cole, Fay-Cooper', '2006-04-28', 44, 'https://www.gutenberg.org/ebooks/18273', 'en', 2334), +(59767, 'How to Form a Library, 2nd ed', 'Wheatley, Henry B. (Henry Benjamin)', '2009-11-07', 17, 'https://www.gutenberg.org/ebooks/30419', 'en', 7900), +(59768, 'Directions for Cookery, in its Various Branches', 'Leslie, Eliza', '2006-01-01', 57, 'https://www.gutenberg.org/ebooks/9624', 'en', 103), +(59769, 'Birds and Nature, Vol. 08, No. 1, June 1900\r\nIn Natural Colors', 'Various', '2015-03-16', 13, 'https://www.gutenberg.org/ebooks/48503', 'en', 490), +(59770, 'Summerfield\nor, Life on a Farm', 'Lee, Day Kellogg', '2007-12-12', 9, 'https://www.gutenberg.org/ebooks/23832', 'en', 2625), +(59771, 'Notes and Queries, Number 137, June 12, 1852\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-07', 7, 'https://www.gutenberg.org/ebooks/42039', 'en', 105), +(59772, 'Études Littéraires; dix-huitième siècle', 'Faguet, Émile', '2004-06-26', 10, 'https://www.gutenberg.org/ebooks/12749', 'fr', 19053), +(59773, 'The Go Ahead Boys in the Island Camp', 'Kay, Ross', '2011-04-25', 45, 'https://www.gutenberg.org/ebooks/35957', 'en', 1864), +(59774, 'Hernach', 'Busch, Wilhelm', '2017-06-22', 15, 'https://www.gutenberg.org/ebooks/54960', 'de', 543), +(59775, 'The Myxomycetes of the Miami Valley, Ohio', 'Morgan, A. P. (Andrew Price)', '2009-07-29', 8, 'https://www.gutenberg.org/ebooks/29534', 'en', 19054), +(59776, 'The History of Little Jack, a Foundling', 'Day, Thomas', '2013-05-25', 8, 'https://www.gutenberg.org/ebooks/42805', 'en', 1889), +(59777, 'Honest Money', 'Fonda, Arthur Isaac', '2014-08-04', 32, 'https://www.gutenberg.org/ebooks/46499', 'en', 19055), +(59778, 'Massimilla Doni', 'Balzac, Honoré de', '2005-03-12', 26, 'https://www.gutenberg.org/ebooks/1811', 'en', 58), +(59779, 'Pink Gods and Blue Demons', 'Stockley, Cynthia', '2011-08-29', 8, 'https://www.gutenberg.org/ebooks/37258', 'en', 19056), +(59780, 'Tales of the Covenanters', 'Guthrie, Ellen Emma', '2014-05-17', 6, 'https://www.gutenberg.org/ebooks/45678', 'en', 5744), +(59781, 'Lazarre', 'Catherwood, Mary Hartwell', '2005-02-19', 12, 'https://www.gutenberg.org/ebooks/15108', 'en', 19057), +(59782, 'Index of the Project Gutenberg Works of Charlotte Perkins Gilman', 'Gilman, Charlotte Perkins', '2019-04-08', 17, 'https://www.gutenberg.org/ebooks/59227', 'en', 198), +(59783, 'L\'Illustration, No. 0022, 29 Juillet 1843', 'Various', '2011-12-04', 4, 'https://www.gutenberg.org/ebooks/38210', 'fr', 150), +(59784, 'His Excellency the Minister', 'Claretie, Jules', '2005-05-29', 14, 'https://www.gutenberg.org/ebooks/15934', 'en', 61), +(59785, 'Le salon de Madame Truphot: moeurs littéraires', 'Kolney, Fernand', '2016-04-27', 2, 'https://www.gutenberg.org/ebooks/51876', 'fr', 259), +(59786, 'Hin und Her: Ein Buch für die Kinder', 'Fick, Henry H.', '2005-06-01', 74, 'https://www.gutenberg.org/ebooks/8392', 'de', 6116), +(59787, 'Mémoire sur les équations résolubles algébriquement', 'Despeyrous, Théodore', '2008-07-24', 13, 'https://www.gutenberg.org/ebooks/26118', 'fr', 4325), +(59788, 'Miss Esperance and Mr Wycherly', 'Harker, L. Allen (Lizzie Allen)', '2017-04-10', 4, 'https://www.gutenberg.org/ebooks/54538', 'en', 2389), +(59789, 'On The Blockade', 'Optic, Oliver', '2006-06-18', 49, 'https://www.gutenberg.org/ebooks/18617', 'en', 4837), +(59790, 'Makbeto', 'Shakespeare, William', '2015-01-08', 31, 'https://www.gutenberg.org/ebooks/47913', 'eo', 15014), +(59791, 'The Man of Adamant\n(From: \"The Snow Image and Other Twice-Told Tales\")', 'Hawthorne, Nathaniel', '2005-11-01', 34, 'https://www.gutenberg.org/ebooks/9240', 'en', 179), +(59792, 'The Children of the Valley', 'Spofford, Harriet Elizabeth Prescott', '2015-02-05', 30, 'https://www.gutenberg.org/ebooks/48167', 'en', 76), +(59793, 'Holbein', 'Fortescue, Beatrice', '2009-06-17', 19, 'https://www.gutenberg.org/ebooks/29150', 'en', 6306), +(59794, 'Pikku naisia', 'Alcott, Louisa May', '2015-09-06', 25, 'https://www.gutenberg.org/ebooks/49889', 'fi', 378), +(59795, '\'Round the yule-log: Christmas in Norway', 'Asbjørnsen, Peter Christen', '2010-04-15', 38, 'https://www.gutenberg.org/ebooks/31993', 'en', 585), +(59796, 'Flash-lights from the Seven Seas', 'Stidger, William L. (William Le Roy)', '2008-10-14', 20, 'https://www.gutenberg.org/ebooks/26924', 'en', 12927), +(59797, 'The Trail of the Sword, Volume 3', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6208', 'en', 1890), +(59798, 'The Rover Boys in the Land of Luck; Or, Stirring Adventures in the Oil Fields', 'Stratemeyer, Edward', '2010-01-04', 19, 'https://www.gutenberg.org/ebooks/30841', 'en', 5372), +(59799, 'Mary Jane Down South', 'Judson, Clara Ingram', '2015-10-13', 15, 'https://www.gutenberg.org/ebooks/50198', 'en', 19058), +(59800, 'Œuvres complètes de lord Byron, Tome 5\r\ncomprenant ses mémoires publiés par Thomas Moore', 'Byron, George Gordon Byron, Baron', '2009-02-14', 12, 'https://www.gutenberg.org/ebooks/28082', 'fr', 3504), +(59801, 'Travel Stories Retold from St. Nicholas', 'Various', '2015-06-26', 14, 'https://www.gutenberg.org/ebooks/49287', 'en', 9584), +(59802, 'The Pharisee and the Publican', 'Bunyan, John', '2002-11-01', 34, 'https://www.gutenberg.org/ebooks/3548', 'en', 19059), +(59803, 'Life of Johnson, Volume 2\r\n1765-1776', 'Boswell, James', '2005-10-01', 47, 'https://www.gutenberg.org/ebooks/9072', 'en', 6953), +(59804, 'Legends and Satires from Mediæval Literature', NULL, '2015-02-25', 7, 'https://www.gutenberg.org/ebooks/48355', 'en', 17425), +(59805, 'The Hallam Succession', 'Barr, Amelia E.', '2004-11-01', 13, 'https://www.gutenberg.org/ebooks/6806', 'en', 8968), +(59806, 'Een Kapitein van Vijftien Jaar\r\nDe Walvischjagers', 'Verne, Jules', '2006-05-19', 14, 'https://www.gutenberg.org/ebooks/18425', 'nl', 533), +(59807, 'The Laird\'s Luck and Other Fireside Tales', 'Quiller-Couch, Arthur', '2004-07-17', 25, 'https://www.gutenberg.org/ebooks/12923', 'en', 409), +(59808, 'The Goat-gland Transplantation\r\nAs Originated and Successfully Performed by J. R. Brinkley, M. D., of Milford, Kansas, U. S. A., in Over 600 Operations Upon Men and Women', 'Flower, Sydney Blanshard', '2009-07-10', 36, 'https://www.gutenberg.org/ebooks/29362', 'en', 19060), +(59809, 'Grace O\'Malley, Princess and Pirate', 'Machray, Robert', '2016-02-21', 18, 'https://www.gutenberg.org/ebooks/51278', 'en', 19061), +(59810, 'Punch, or the London Charivari, Vol. 147, July 15, 1914', 'Various', '2007-11-29', 8, 'https://www.gutenberg.org/ebooks/23658', 'en', 134), +(59811, 'Ein Blick in die Zukunft\nEine Antwort auf: Ein Rückblick von Edward Bellamy', 'Michaelis, Richard', '2014-01-05', 9, 'https://www.gutenberg.org/ebooks/44598', 'de', 19062), +(59812, 'The Mystery of the Pinckney Draught', 'Nott, Charles C.', '2012-09-30', 10, 'https://www.gutenberg.org/ebooks/40904', 'en', 19063), +(59813, 'The Shadowy Third, and Other Stories', 'Glasgow, Ellen Anderson Gholson', '2019-03-05', 30, 'https://www.gutenberg.org/ebooks/59015', 'en', 531), +(59814, 'Gambolling with Galatea: a Bucolic Romance', 'Dunham, Curtis', '2018-03-28', 10, 'https://www.gutenberg.org/ebooks/56861', 'en', 2625), +(59815, 'Beacon Lights of History, Volume 13: Great Writers\r\nDr Lord\'s Uncompleted Plan, Supplemented with Essays by Emerson, Macaulay, Hedge, and Mercer Adam', 'Lord, John', '2004-01-01', 35, 'https://www.gutenberg.org/ebooks/10648', 'en', 7868), +(59816, 'The Determined Angler and the Brook Trout\r\nan anthological volume of trout fishing, trout histories, trout lore, trout resorts, and trout tackle', 'Bradford, Charles Barker', '2011-10-26', 20, 'https://www.gutenberg.org/ebooks/37856', 'en', 19064), +(59817, 'Der Hirtenknabe Nikolas; oder, Der deutsche Kinderkreuzzug im Jahre 1212', 'Schefer, Leopold', '2012-07-04', 10, 'https://www.gutenberg.org/ebooks/40138', 'de', 19065), +(59818, 'Nature and Culture', 'Rice, Harvey', '2011-11-15', 10, 'https://www.gutenberg.org/ebooks/38022', 'en', 1347), +(59819, 'The Adventures of a Cat, and a Fine Cat Too!', 'Elwes, Alfred', '2010-05-24', 42, 'https://www.gutenberg.org/ebooks/32518', 'en', 1430), +(59820, 'The Queer Folk of Fife: Tales from the Kingdom', 'Pryde, David', '2019-06-28', 90, 'https://www.gutenberg.org/ebooks/59829', 'en', 179), +(59821, 'Much Darker Days', 'Lang, Andrew', '2007-06-25', 20, 'https://www.gutenberg.org/ebooks/21933', 'en', 19066), +(59822, 'Fifty Contemporary One-Act Plays', NULL, '2011-08-06', 23, 'https://www.gutenberg.org/ebooks/36984', 'en', 16646), +(59823, 'Birds in the Calendar', 'Aflalo, Frederick G. (Frederick George)', '2008-12-09', 21, 'https://www.gutenberg.org/ebooks/27465', 'en', 9356), +(59824, 'Cambridge: A Sketch-Book', 'Keesey, Walter M.', '2017-02-19', 7, 'https://www.gutenberg.org/ebooks/54197', 'en', 19067), +(59825, 'Nonsense Books', 'Lear, Edward', '2004-10-08', 188, 'https://www.gutenberg.org/ebooks/13650', 'en', 986), +(59826, 'Dumps - A Plain Girl', 'Meade, L. T.', '2013-07-07', 14, 'https://www.gutenberg.org/ebooks/43120', 'en', 19068), +(59827, 'Human Genome Project, rough draft, Chromosome Number 07', 'Human Genome Project', '2000-06-01', 0, 'https://www.gutenberg.org/ebooks/2207', 'en', 1841), +(59828, 'The Position of Woman in Primitive Society: A Study of the Matriarchy', 'Hartley, C. Gasquoine (Catherine Gasquoine)', '2010-03-04', 22, 'https://www.gutenberg.org/ebooks/31500', 'en', 19069), +(59829, 'Œuvres de Napoléon Bonaparte, Tome II.', 'Napoleon I, Emperor of the French', '2004-06-29', 16, 'https://www.gutenberg.org/ebooks/12782', 'fr', 1943), +(59830, 'All about Battersea', 'Simmonds, Henry S.', '2017-07-04', 6, 'https://www.gutenberg.org/ebooks/55045', 'en', 19070), +(59831, 'Birds and All Nature, Vol. 4, No. 2, August 1898\r\nIllustrated by Color Photography', 'Various', '2014-12-07', 15, 'https://www.gutenberg.org/ebooks/47580', 'en', 1584), +(59832, 'The Evolution of an Empire: A Brief Historical Sketch of Germany', 'Parmele, Mary Platt', '2010-10-15', 10, 'https://www.gutenberg.org/ebooks/34072', 'en', 1921), +(59833, 'Kokeita suomalaisessa laulannassa', 'Lönnrot, Elias', '2015-11-23', 15, 'https://www.gutenberg.org/ebooks/50537', 'fi', 19071), +(59834, 'Luther Examined and Reexamined\nA Review of Catholic Criticism and a Plea for Revaluation', 'Dau, W. H. T. (William Herman Theodore)', '2005-07-18', 14, 'https://www.gutenberg.org/ebooks/16322', 'en', 1073), +(59835, 'Across Coveted Lands\nor a Journey from Flushing (Holland) to Calcutta Overland', 'Landor, Arnold Henry Savage', '2007-07-22', 51, 'https://www.gutenberg.org/ebooks/22117', 'en', 1992), +(59836, 'La psychologie comme science naturelle, son présent et son avenir\nApplication de la méthode expérimentale aux phénomènes de l\'âme', 'Delboeuf, Joseph-Remi-Leopold', '2017-11-02', 17, 'https://www.gutenberg.org/ebooks/55879', 'fr', 19072), +(59837, 'Memoirs of the Life of the Rt. Hon. Richard Brinsley Sheridan — Volume 02', 'Moore, Thomas', '2005-03-01', 11, 'https://www.gutenberg.org/ebooks/7775', 'en', 19073), +(59838, 'The Strand Magazine, Vol. 01, No. 05, May 1891\r\nAn Illustrated Monthly', 'Various', '2014-07-30', 31, 'https://www.gutenberg.org/ebooks/46452', 'en', 4041), +(59839, 'On the Cross: A Romance of the Passion Play at Oberammergau', 'Hillern, Wilhelmine von', '2011-07-15', 9, 'https://www.gutenberg.org/ebooks/36725', 'en', 19074), +(59840, 'Mémoires du duc de Rovigo, pour servir à l\'histoire de l\'empereur Napoléon, Tome 4', 'Savary, Anne-Jean-Marie-René, duc de Rovigo', '2007-06-10', 9, 'https://www.gutenberg.org/ebooks/21792', 'fr', 1770), +(59841, 'Chiricahua National Monument (1958)', 'United States. National Park Service', '2019-06-07', 28, 'https://www.gutenberg.org/ebooks/59688', 'en', 19075), +(59842, 'The Visitor\'s Hand-Book for Holyhead\r\nComprising a History of the Town, the Antiquities and Sublime Scenery of the Mountain', 'Jackson, Thomas', '2016-06-07', 4, 'https://www.gutenberg.org/ebooks/52260', 'en', 19076), +(59843, 'Mary Erskine', 'Abbott, Jacob', '2004-12-26', 37, 'https://www.gutenberg.org/ebooks/14475', 'en', 1123), +(59844, 'Le Râmâyana - tome second\r\nPoème sanscrit de Valmiky', 'Valmiki', '2007-02-21', 14, 'https://www.gutenberg.org/ebooks/20640', 'fr', 19077); +INSERT INTO `books` (`id`, `title`, `creator`, `issued`, `downloads`, `url`, `language`, `subject_id`) VALUES +(59845, 'State of the Union Addresses', 'Pierce, Franklin', '2004-02-01', 7, 'https://www.gutenberg.org/ebooks/5022', 'en', 1926), +(59846, 'El Mulato Plácido o El Poeta Mártir', 'Lemoine, Joaquín', '2013-11-28', 9, 'https://www.gutenberg.org/ebooks/44305', 'es', 98), +(59847, '阿Q正傳', 'Lu, Xun', '2008-05-05', 51, 'https://www.gutenberg.org/ebooks/25332', 'zh', 3224), +(59848, 'Theobald, the Iron-Hearted\r\nOr, Love to Enemies', 'Malan, César', '2004-02-01', 17, 'https://www.gutenberg.org/ebooks/11107', 'en', 450), +(59849, 'The British Navy Book', 'Field, Cyril', '2012-12-21', 32, 'https://www.gutenberg.org/ebooks/41677', 'en', 1953), +(59850, 'Die Fürstin', 'Edschmid, Kasimir', '2010-05-15', 14, 'https://www.gutenberg.org/ebooks/32385', 'de', 61), +(59851, 'Modeste Mignon', 'Balzac, Honoré de', '1998-10-01', 41, 'https://www.gutenberg.org/ebooks/1482', 'en', 58), +(59852, 'Under the Mendips: A Tale', 'Marshall, Emma', '2010-07-25', 17, 'https://www.gutenberg.org/ebooks/33257', 'en', 19078), +(59853, 'Proses moroses', 'Gourmont, Remy de', '2018-08-17', 8, 'https://www.gutenberg.org/ebooks/57712', 'fr', 100), +(59854, 'The Puzzle King\r\nAmusing arithmetic, book-keeping blunders, commercial comicalities, curious \"catches\", peculiar problems, perplexing paradoxes, quaint questions, queer quibbles, school stories, interesting items, tricks with figures, cards, draughts, dice, dominoes, etc., etc., etc.', 'Scott, John', '2016-05-12', 53, 'https://www.gutenberg.org/ebooks/52052', 'en', 8797), +(59855, 'The Rover Boys in Camp; or, The Rivals of Pine Island', 'Stratemeyer, Edward', '2005-05-07', 24, 'https://www.gutenberg.org/ebooks/15795', 'en', 2788), +(59856, 'Amusing Prose Chap Books', NULL, '2011-06-25', 28, 'https://www.gutenberg.org/ebooks/36517', 'en', 4749), +(59857, 'The Borough', 'Crabbe, George', '2004-03-01', 53, 'https://www.gutenberg.org/ebooks/5210', 'en', 54), +(59858, 'Turun linnassa: Kertomus Juhana-herttuan ajoilta', 'Lindman, Volmar', '2013-11-08', 4, 'https://www.gutenberg.org/ebooks/44137', 'fi', 9234), +(59859, 'Tales of the Trail: Short Stories of Western Life', 'Inman, Henry', '2018-12-30', 30, 'https://www.gutenberg.org/ebooks/58568', 'en', 315), +(59860, 'The Cave in the Mountain\r\nA Sequel to In the Pecos Country', 'Ellis, Edward Sylvester', '2005-01-10', 40, 'https://www.gutenberg.org/ebooks/14647', 'en', 388), +(59861, 'The Old Riddle and the Newest Answer', 'Gerard, John', '2010-10-15', 19, 'https://www.gutenberg.org/ebooks/33859', 'en', 2713), +(59862, 'Ylimys: Romaani', 'Galsworthy, John', '2016-10-01', 17, 'https://www.gutenberg.org/ebooks/53180', 'fi', 8836), +(59863, 'Grace Harlowe\'s Plebe Year at High School\nThe Merry Doings of the Oakdale Freshmen Girls', 'Chase, Josephine', '2007-01-28', 59, 'https://www.gutenberg.org/ebooks/20472', 'en', 1669), +(59864, 'Frankenstein; Or, The Modern Prometheus', 'Shelley, Mary Wollstonecraft', '2012-11-23', 529, 'https://www.gutenberg.org/ebooks/41445', 'en', 10254), +(59865, 'The Story of Commodore John Barry', 'Griffin, Martin I. J. (Martin Ignatius Joseph)', '2008-04-19', 18, 'https://www.gutenberg.org/ebooks/25100', 'en', 19079), +(59866, 'The Einstein Theory of Relativity\r\nA Concise Statement', 'Lorentz, H. A. (Hendrik Antoon)', '2004-02-01', 84, 'https://www.gutenberg.org/ebooks/11335', 'en', 6989), +(59867, 'Folk Lore Notes. Vol. II—Konkan', 'Jackson, A. M. T. (Arthur Mason Tippetts)', '2018-07-16', 10, 'https://www.gutenberg.org/ebooks/57520', 'en', 1772), +(59868, 'The Indian Drum', 'MacHarg, William', '2010-07-03', 10, 'https://www.gutenberg.org/ebooks/33065', 'en', 19080), +(59869, 'Miniature essays: Igor Stravinsky', 'Anonymous', '2012-08-27', 17, 'https://www.gutenberg.org/ebooks/40597', 'fr', 19081), +(59870, 'Histoire du Consulat et de l\'Empire, (Vol. 08 / 20)\r\nfaisant suite à l\'Histoire de la Révolution Française', 'Thiers, Adolphe', '2013-07-26', 8, 'https://www.gutenberg.org/ebooks/43312', 'fr', 2051), +(59871, 'Stories by English Authors: The Orient (Selected by Scribners)', NULL, '2006-03-26', 128, 'https://www.gutenberg.org/ebooks/2035', 'en', 179), +(59872, 'Het bergland van den Roewenzori\nDe Aarde en haar Volken, 1909', 'Savoia, Luigi Amedeo di, duca degli Abruzzi', '2008-12-29', 7, 'https://www.gutenberg.org/ebooks/27657', 'nl', 19082), +(59873, 'Notes and Queries, Number 46, September 14, 1850', 'Various', '2004-09-15', 9, 'https://www.gutenberg.org/ebooks/13462', 'en', 105), +(59874, 'The Return', 'McGuire, John Joseph', '2006-09-01', 124, 'https://www.gutenberg.org/ebooks/19158', 'en', 26), +(59875, 'The Gallery of Portraits: with Memoirs. Volume 3 (of 7)', 'Malkin, Arthur Thomas', '2017-08-06', 16, 'https://www.gutenberg.org/ebooks/55277', 'en', 122), +(59876, 'Modern British Poetry', NULL, '2008-10-06', 44, 'https://www.gutenberg.org/ebooks/26785', 'en', 532), +(59877, 'The Sex Side of Life: An Explanation for Young People', 'Dennett, Mary Ware', '2010-03-22', 86, 'https://www.gutenberg.org/ebooks/31732', 'en', 3052), +(59878, 'Beadle\'s Dime Union Song Book No. 2\nA Collection of New and Popular Comic and Sentimental Songs.', 'Various', '2015-08-06', 9, 'https://www.gutenberg.org/ebooks/49628', 'en', 1506), +(59879, 'Main-Travelled Roads', 'Garland, Hamlin', '2001-09-01', 25, 'https://www.gutenberg.org/ebooks/2809', 'en', 179), +(59880, 'The de Bercy Affair', 'Tracy, Louis', '2015-12-17', 16, 'https://www.gutenberg.org/ebooks/50705', 'en', 1079), +(59881, 'The Devil\'s Dictionary', 'Bierce, Ambrose', '1997-07-01', 950, 'https://www.gutenberg.org/ebooks/972', 'en', 3260), +(59882, 'Nevermore', 'Boldrewood, Rolf', '2010-11-08', 102, 'https://www.gutenberg.org/ebooks/34240', 'en', 19083), +(59883, 'Great Fortunes from Railroads', 'Myers, Gustavus', '2004-09-01', 9, 'https://www.gutenberg.org/ebooks/6495', 'en', 19084), +(59884, 'A Woman\'s Experiences in the Great War', 'Mack, Louise', '2011-02-24', 39, 'https://www.gutenberg.org/ebooks/35392', 'en', 449), +(59885, 'Regeneration', 'Dye, Charles', '2006-11-29', 33, 'https://www.gutenberg.org/ebooks/19964', 'en', 26), +(59886, 'Quotes and Images from the Writings of Abraham Lincoln', 'Lincoln, Abraham', '2004-08-29', 81, 'https://www.gutenberg.org/ebooks/7547', 'en', 19085), +(59887, 'Talleyrand: A Biographical Study', 'McCabe, Joseph', '2014-08-23', 15, 'https://www.gutenberg.org/ebooks/46660', 'en', 1343), +(59888, 'Viage al Parnaso\nLa Numancia (Tragedia) y El Trato de Argel (Comedia)', 'Cervantes Saavedra, Miguel de', '2005-06-22', 69, 'https://www.gutenberg.org/ebooks/16110', 'es', 7911), +(59889, 'The Art of Modern Lace Making', NULL, '2007-08-15', 85, 'https://www.gutenberg.org/ebooks/22325', 'en', 4518), +(59890, 'The Curious Lore of Precious Stones\r\nBeing a description of their sentiments and folk lore, superstitions, symbolism, mysticism, use in medicine, protection, prevention, religion, and divination. Crystal gazing, birth-stones, lucky stones and talismans, astral, zodiacal, and planetary', 'Kunz, George Frederick', '2018-09-26', 105, 'https://www.gutenberg.org/ebooks/57978', 'en', 19086), +(59891, 'Hector\'s Inheritance, Or, the Boys of Smith Institute', 'Alger, Horatio, Jr.', '2004-05-01', 35, 'https://www.gutenberg.org/ebooks/5674', 'en', 9066), +(59892, 'Letters of Samuel Taylor Coleridge, Vol. 1 (of 2)', 'Coleridge, Samuel Taylor', '2014-01-01', 44, 'https://www.gutenberg.org/ebooks/44553', 'en', 19087), +(59893, 'Untersuchungen über Goethes Faust in seiner ältesten Gestalt', 'Collin, J. (Josef)', '2004-12-01', 15, 'https://www.gutenberg.org/ebooks/14223', 'de', 3659), +(59894, 'Home Rule\nSecond Edition', 'Spender, Harold', '2006-12-04', 13, 'https://www.gutenberg.org/ebooks/20016', 'en', 1751), +(59895, 'Fifteen Discourses', 'Reynolds, Joshua, Sir', '2016-06-29', 18, 'https://www.gutenberg.org/ebooks/52436', 'en', 787), +(59896, 'Wilderness of Spring', 'Pangborn, Edgar', '2012-06-03', 24, 'https://www.gutenberg.org/ebooks/39907', 'en', 14321), +(59897, 'What Is Christian Science?', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-04-24', 14, 'https://www.gutenberg.org/ebooks/45481', 'en', 1206), +(59898, 'A Rambler\'s lease', 'Torrey, Bradford', '2011-05-20', 21, 'https://www.gutenberg.org/ebooks/36173', 'en', 6805), +(59899, 'Ypres to Verdun\nA Collection of Photographs of the War areas in France & Flanders', 'Kennedy, Alex. B. W. (Alexander Blackie William)', '2018-05-12', 17, 'https://www.gutenberg.org/ebooks/57144', 'en', 4411), +(59900, 'Lettre à l\'Empereur Alexandre sur la traite des noirs', 'Wilberforce, William', '2004-01-01', 12, 'https://www.gutenberg.org/ebooks/10683', 'fr', 9785), +(59901, 'The Little Schoolmaster Mark: A Spiritual Romance', 'Shorthouse, J. H. (Joseph Henry)', '2010-08-10', 17, 'https://www.gutenberg.org/ebooks/33401', 'en', 61), +(59902, 'It Happened in Japan', 'Anethan, Albert d\', Baroness', '2019-02-21', 12, 'https://www.gutenberg.org/ebooks/58930', 'en', 19088), +(59903, 'Clara Vaughan, Volume 2 (of 3)', 'Blackmore, R. D. (Richard Doddridge)', '2012-10-10', 58, 'https://www.gutenberg.org/ebooks/41021', 'en', 18077), +(59904, 'The Water-Babies: A Fairy Tale for a Land-Baby', 'Kingsley, Charles', '2008-05-23', 115, 'https://www.gutenberg.org/ebooks/25564', 'en', 4483), +(59905, 'The Atlantic Monthly, Volume 03, No. 20, June, 1859\r\nA Magazine of Literature, Art, and Politics', 'Various', '2004-03-01', 8, 'https://www.gutenberg.org/ebooks/11751', 'en', 1227), +(59906, 'The Gallery of Portraits: with Memoirs. Volume 7 (of 7)', 'Malkin, Arthur Thomas', '2017-12-01', 6, 'https://www.gutenberg.org/ebooks/56096', 'en', 122), +(59907, 'The American Missionary — Volume 35, No. 8, August, 1881', 'Various', '2017-09-24', 1, 'https://www.gutenberg.org/ebooks/55613', 'en', 562), +(59908, 'Essays of Michel de Montaigne — Volume 03', 'Montaigne, Michel de', '2004-11-01', 32, 'https://www.gutenberg.org/ebooks/3583', 'en', 1964), +(59909, 'The Man Who Staked the Stars', 'MacLean, Katherine', '2010-02-22', 23, 'https://www.gutenberg.org/ebooks/31356', 'en', 26), +(59910, 'The Expeditions of Zebulon Montgomery Pike, Volume 3 (of 3)\r\nTo Headwaters of the Mississippi River Through Louisiana Territory, and in New Spain, During the Years 1805-6-7.', 'Pike, Zebulon Montgomery', '2013-09-21', 6, 'https://www.gutenberg.org/ebooks/43776', 'en', 16719), +(59911, 'Caught in the Net', 'Gaboriau, Emile', '2006-03-31', 110, 'https://www.gutenberg.org/ebooks/2451', 'en', 560), +(59912, 'Virginia under the Stuarts 1607-1688', 'Wertenbaker, Thomas Jefferson', '2009-10-19', 17, 'https://www.gutenberg.org/ebooks/30284', 'en', 7365), +(59913, 'The Critic in the Orient', 'Fitch, George Hamlin', '2008-11-11', 25, 'https://www.gutenberg.org/ebooks/27233', 'en', 12927), +(59914, 'Representative Plays by American Dramatists: 1856-1911: Paul Kauvar; or, Anarchy', 'MacKaye, Steele', '2004-07-23', 11, 'https://www.gutenberg.org/ebooks/13006', 'en', 508), +(59915, 'Home Vegetable Gardening\r\nA Complete and Practical Guide to the Planting and Care of All Vegetables, Fruits and Berries Worth Growing for Home Use', 'Rockwell, F. F. (Frederick Frye)', '2004-12-01', 64, 'https://www.gutenberg.org/ebooks/7123', 'en', 6679), +(59916, 'Wege und Umwege', 'Kolb, Annette', '2014-07-06', 15, 'https://www.gutenberg.org/ebooks/46204', 'de', 9214), +(59917, 'The Life of Samuel Taylor Coleridge\n1838', 'Gillman, James', '2005-09-01', 11, 'https://www.gutenberg.org/ebooks/8957', 'en', 6953), +(59918, 'The Twins: A Domestic Novel', 'Tupper, Martin Farquhar', '2005-08-21', 15, 'https://www.gutenberg.org/ebooks/16574', 'en', 61), +(59919, 'Physiologie du goût', 'Brillat-Savarin', '2007-09-23', 75, 'https://www.gutenberg.org/ebooks/22741', 'fr', 1337), +(59920, 'The Blue Birds\' Winter Nest', 'Roy, Lillian Elizabeth', '2007-12-03', 16, 'https://www.gutenberg.org/ebooks/23693', 'en', 11121), +(59921, 'Punchinello, Volume 1, No. 17, July 23, 1870', 'Various', '2006-02-01', 9, 'https://www.gutenberg.org/ebooks/9885', 'en', 372), +(59922, 'Wet Magic', 'Nesbit, E. (Edith)', '2015-11-01', 88, 'https://www.gutenberg.org/ebooks/50361', 'en', 3133), +(59923, 'Elogio Historico do Conde de Ficalho', 'Burnay, Eduardo', '2010-12-11', 9, 'https://www.gutenberg.org/ebooks/34624', 'pt', 19089), +(59924, 'The Bible, Douay-Rheims, Book 59: 1 Thessalonians\nThe Challoner Revision', NULL, '2005-06-01', 8, 'https://www.gutenberg.org/ebooks/8359', 'en', 5464), +(59925, 'Der violette Tod, und andere Novellen', 'Meyrink, Gustav', '2010-02-03', 35, 'https://www.gutenberg.org/ebooks/31164', 'de', 179), +(59926, 'Miracle Gold: A Novel (Vol. 2 of 3)', 'Dowling, Richard', '2013-04-08', 5, 'https://www.gutenberg.org/ebooks/42496', 'en', 61), +(59927, 'Secrets of the Bosphorus', 'Morgenthau, Henry', '2017-08-24', 19, 'https://www.gutenberg.org/ebooks/55421', 'en', 4725), +(59928, 'Jewish Children', 'Sholem Aleichem', '2008-10-24', 63, 'https://www.gutenberg.org/ebooks/27001', 'en', 2120), +(59929, 'Tono-Bungay', 'Wells, H. G. (Herbert George)', '2006-03-18', 195, 'https://www.gutenberg.org/ebooks/718', 'en', 19090), +(59930, 'Ester Ried', 'Pansy', '2004-08-20', 26, 'https://www.gutenberg.org/ebooks/13234', 'en', 11271), +(59931, 'The philosophy of life, and philosophy of language, in a course of lectures', 'Schlegel, Friedrich von', '2013-08-23', 41, 'https://www.gutenberg.org/ebooks/43544', 'en', 8789), +(59932, 'A Man\'s Value to Society: Studies in Self Culture and Character', 'Hillis, Newell Dwight', '2009-05-19', 40, 'https://www.gutenberg.org/ebooks/28875', 'en', 12189), +(59933, 'Minna Von Barnhelm', 'Lessing, Gotthold Ephraim', '2001-06-01', 51, 'https://www.gutenberg.org/ebooks/2663', 'en', 493), +(59934, 'The Amateurs', 'Cogan, Alan', '2016-01-30', 44, 'https://www.gutenberg.org/ebooks/51081', 'en', 179), +(59935, 'Inquiries and Opinions', 'Matthews, Brander', '2005-09-25', 12, 'https://www.gutenberg.org/ebooks/16746', 'en', 536), +(59936, 'Tunturikoski: Jemtlantilainen kertomus', 'Onkel Adam', '2010-04-12', 9, 'https://www.gutenberg.org/ebooks/31958', 'fi', 2168), +(59937, 'Punch, or the London Charivari, Vol. 146, February 11, 1914', 'Various', '2007-09-11', 9, 'https://www.gutenberg.org/ebooks/22573', 'en', 134), +(59938, 'The Rise and Fall of Anarchy in America\nFrom its Incipient Stage to the First Bomb Thrown in Chicago', 'McLean, George N.', '2015-09-01', 11, 'https://www.gutenberg.org/ebooks/49842', 'en', 19091), +(59939, 'The Leatherwood God', 'Howells, William Dean', '2005-01-01', 19, 'https://www.gutenberg.org/ebooks/7311', 'en', 2004), +(59940, 'The Sidereal Messenger of Galileo Galilei\r\nand a Part of the Preface to Kepler\'s Dioptrics Containing the Original Account of Galileo\'s Astronomical Discoveries', 'Galilei, Galileo', '2014-06-19', 137, 'https://www.gutenberg.org/ebooks/46036', 'en', 19092), +(59941, 'The River\'s Children: An Idyl of the Mississippi', 'Stuart, Ruth McEnery', '2010-11-23', 7, 'https://www.gutenberg.org/ebooks/34416', 'en', 3814), +(59942, 'Old-Dad', 'Abbott, Eleanor Hallowell', '2015-05-18', 24, 'https://www.gutenberg.org/ebooks/48990', 'en', 109), +(59943, 'Balady i romanse', 'Mickiewicz, Adam', '2009-02-11', 28, 'https://www.gutenberg.org/ebooks/28049', 'pl', 8), +(59944, 'Adventures in New Guinea', 'Chalmers, James', '2006-02-06', 32, 'https://www.gutenberg.org/ebooks/17694', 'en', 19093), +(59945, '\"Wanted, a Young Lady\" : A Farce, in One Act', 'Suter, William E.', '2015-10-08', 14, 'https://www.gutenberg.org/ebooks/50153', 'en', 1281), +(59946, 'The Mirror of Literature, Amusement, and Instruction. Volume 14, No. 389, September 12, 1829', 'Various', '2004-11-10', 1, 'https://www.gutenberg.org/ebooks/14011', 'en', 133), +(59947, 'The Invisible Government', 'Smoot, Dan', '2006-12-30', 46, 'https://www.gutenberg.org/ebooks/20224', 'en', 19094), +(59948, 'The Works of \"Fiona Macleod\", Volume IV', NULL, '2011-09-02', 21, 'https://www.gutenberg.org/ebooks/37293', 'en', 8791), +(59949, 'Uarda : a Romance of Ancient Egypt — Volume 08', 'Ebers, Georg', '2004-04-01', 33, 'https://www.gutenberg.org/ebooks/5446', 'en', 1802), +(59950, 'The Way to Abolish Slavery', 'Stearns, Charles (Abolitionist)', '2014-01-26', 12, 'https://www.gutenberg.org/ebooks/44761', 'en', 125), +(59951, 'Gunpowder Treason and Plot, and Other Stories for Boys', 'Avery, Harold', '2011-06-06', 24, 'https://www.gutenberg.org/ebooks/36341', 'en', 3943), +(59952, 'Home Lights and Shadows', 'Arthur, T. S. (Timothy Shay)', '2003-10-01', 13, 'https://www.gutenberg.org/ebooks/4594', 'en', 50), +(59953, 'Harper\'s Round Table, January 21, 1896', 'Various', '2016-07-18', 4, 'https://www.gutenberg.org/ebooks/52604', 'en', 668), +(59954, 'L\'Illustration, No. 3245, 6 Mai 1905', 'Various', '2010-09-04', 7, 'https://www.gutenberg.org/ebooks/33633', 'fr', 150), +(59955, 'Annals and Antiquities of Rajasthan, v. 3 of 3\nor the Central and Western Rajput States of India', 'Tod, James', '2018-07-07', 14, 'https://www.gutenberg.org/ebooks/57376', 'en', 19095), +(59956, 'Science and Morals and Other Essays', 'Windle, Bertram Coghill Alan, Sir', '2008-02-25', 7, 'https://www.gutenberg.org/ebooks/24684', 'en', 20), +(59957, 'Mémoires du prince de Talleyrand, Volume 1 (of 5)', 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent', '2008-06-10', 65, 'https://www.gutenberg.org/ebooks/25756', 'fr', 4438), +(59958, 'Morning Bells; Or, Waking Thoughts for Little Ones', 'Havergal, Frances Ridley', '2004-03-01', 25, 'https://www.gutenberg.org/ebooks/11563', 'en', 10784), +(59959, 'The Secrets of a Kuttite\nAn Authentic Story of Kut, Adventures in Captivity and Stamboul Intrigue', 'Mousley, Edward O. (Edward Opotiki)', '2012-10-28', 10, 'https://www.gutenberg.org/ebooks/41213', 'en', 19096), +(59960, 'A Day at a Time, and Other Talks on Life and Religion', 'Alexander, Archibald', '2012-03-29', 24, 'https://www.gutenberg.org/ebooks/39309', 'en', 717), +(59961, 'Heroic Romances of Ireland, Translated into English Prose and Verse — Complete', 'Leahy, Arthur Herbert', '2004-05-01', 38, 'https://www.gutenberg.org/ebooks/5680', 'en', 10152), +(59962, 'An Alphabetical List of Books Contained in Bohn\'s Libraries (1892)', 'George Bell & Sons', '2011-08-12', 11, 'https://www.gutenberg.org/ebooks/37055', 'en', 2393), +(59963, 'Sketch of the Sikhs\r\nA Singular Nation Who Inhabit the Provinces of Penjab, Situated Between the Rivers Jumna and Indus', 'Malcolm, John', '2016-11-12', 21, 'https://www.gutenberg.org/ebooks/53510', 'en', 19097), +(59964, 'A Ten Years\' War: An Account of the Battle with the Slum in New York', 'Riis, Jacob A. (Jacob August)', '2012-02-10', 5, 'https://www.gutenberg.org/ebooks/38821', 'en', 9540), +(59965, 'Book of Wise Sayings\nSelected Largely from Eastern Sources', 'Clouston, W. A. (William Alexander)', '2007-04-18', 82, 'https://www.gutenberg.org/ebooks/21130', 'en', 5699), +(59966, 'L\'influence d\'un livre: Roman historique', 'Aubert de Gaspé, Philippe', '2005-03-09', 33, 'https://www.gutenberg.org/ebooks/15305', 'fr', 8062), +(59967, 'The Bible Unveiled', 'Mangasarian, M. M. (Mangasar Mugurditch)', '2014-04-24', 27, 'https://www.gutenberg.org/ebooks/45475', 'en', 3792), +(59968, 'The Spirit of Contradiction', 'Dufresny, Charles Rivière', '2003-12-01', 9, 'https://www.gutenberg.org/ebooks/4752', 'en', 2971), +(59969, 'Punch, or the London Charivari, Volume 93, October 15th 1887', 'Various', '2011-05-22', 10, 'https://www.gutenberg.org/ebooks/36187', 'en', 134), +(59970, 'Biographical Memorials of James Oglethorpe\r\nFounder of the Colony of Georgia, in North America.', 'Harris, Thaddeus Mason', '2004-01-01', 20, 'https://www.gutenberg.org/ebooks/10677', 'en', 13127), +(59971, 'De Ellendigen (Deel 4 van 5)', 'Hugo, Victor', '2011-10-27', 20, 'https://www.gutenberg.org/ebooks/37869', 'nl', 264), +(59972, 'Report on the Department of Ports and Harbours for the Year 1890-91', 'Australia. Queensland. Department of Ports and Harbours', '2008-01-27', 2, 'https://www.gutenberg.org/ebooks/24442', 'en', 19098), +(59973, 'The Atheist\'s Mass', 'Balzac, Honoré de', '2005-12-03', 67, 'https://www.gutenberg.org/ebooks/1220', 'en', 58), +(59974, 'L\'Illustration, No. 0045, 6 Janvier 1844', 'Various', '2012-06-29', 2, 'https://www.gutenberg.org/ebooks/40107', 'fr', 150), +(59975, 'The adventures of Alphonso and Marina: An Interesting Spanish Tale', 'Florian', '2010-05-25', 30, 'https://www.gutenberg.org/ebooks/32527', 'en', 179), +(59976, 'Tom Slade with the Flying Corps: A Campfire Tale', 'Fitzhugh, Percy Keese', '2019-06-26', 63, 'https://www.gutenberg.org/ebooks/59816', 'en', 19099), +(59977, 'The Silly Jelly-Fish\nTold in English', 'Chamberlain, Basil Hall', '2008-05-25', 9, 'https://www.gutenberg.org/ebooks/25590', 'en', 8436), +(59978, 'From Zone to Zone\nOr, The Wonderful Trip of Frank Reade, Jr., with His Latest Air-Ship', 'Senarens, Luis', '2017-11-28', 20, 'https://www.gutenberg.org/ebooks/56062', 'en', 6611), +(59979, 'Nouveaux contes bleus', 'Laboulaye, Édouard', '2004-04-01', 14, 'https://www.gutenberg.org/ebooks/12120', 'fr', 179), +(59980, 'Shakespeare\'s Family', 'Stopes, C. C. (Charlotte Carmichael)', '2008-08-14', 13, 'https://www.gutenberg.org/ebooks/26315', 'en', 19100), +(59981, 'Recollections of the Private Life of Napoleon — Volume 10', 'Wairy, Louis Constant', '2002-12-01', 7, 'https://www.gutenberg.org/ebooks/3577', 'en', 840), +(59982, 'The Boy Craftsman\nPractical and Profitable Ideas for a Boy\'s Leisure Hours', 'Hall, A. Neely (Albert Neely)', '2013-05-05', 49, 'https://www.gutenberg.org/ebooks/42650', 'en', 4986), +(59983, 'Gringalette', 'Rebell, Hugues', '2013-09-21', 20, 'https://www.gutenberg.org/ebooks/43782', 'fr', 5971), +(59984, 'That Mother-in-Law of Mine', 'Anonymous', '2009-10-16', 27, 'https://www.gutenberg.org/ebooks/30270', 'en', 19101), +(59985, 'The Old Roman World : the Grandeur and Failure of Its Civilization.', 'Lord, John', '2004-11-01', 8, 'https://www.gutenberg.org/ebooks/6839', 'en', 19102), +(59986, 'The 1991 CIA World Factbook', 'United States. Central Intelligence Agency', '1992-02-01', 322, 'https://www.gutenberg.org/ebooks/25', 'en', 1407), +(59987, 'The Girl\'s Own Paper, Vol. XX, No. 995, January 21, 1899', 'Various', '2017-05-16', 10, 'https://www.gutenberg.org/ebooks/54735', 'en', 563), +(59988, 'The White Gauntlet', 'Reid, Mayne', '2011-03-28', 22, 'https://www.gutenberg.org/ebooks/35702', 'en', 6668), +(59989, 'The Great Round World and What Is Going On In It, Vol. 1, No. 60, December 30, 1897\nA Weekly Magazine for Boys and Girls', 'Various', '2005-08-22', 11, 'https://www.gutenberg.org/ebooks/16580', 'en', 1), +(59990, 'Dead End', 'Macfarlane, Wallace', '2016-02-18', 27, 'https://www.gutenberg.org/ebooks/51247', 'en', 7863), +(59991, 'Woodland Tales', 'Seton, Ernest Thompson', '2007-11-30', 61, 'https://www.gutenberg.org/ebooks/23667', 'en', 37), +(59992, 'The Americans in the Great War; v 1. The Second Battle of the Marne\r\n(Château-Thierry, Soissons, Fismes)', NULL, '2015-11-06', 15, 'https://www.gutenberg.org/ebooks/50395', 'en', 19103), +(59993, 'Adventures in Criticism', 'Quiller-Couch, Arthur', '2006-01-03', 98, 'https://www.gutenberg.org/ebooks/17452', 'en', 2145), +(59994, 'The Avenger', 'Oppenheim, E. Phillips (Edward Phillips)', '2006-02-01', 22, 'https://www.gutenberg.org/ebooks/9871', 'en', 167), +(59995, 'Alfried Krupp: Ein Lebensbild', 'Frobenius, Herman', '2014-11-09', 13, 'https://www.gutenberg.org/ebooks/47322', 'de', 19104), +(59996, 'Celibates', 'Moore, George', '2004-07-01', 13, 'https://www.gutenberg.org/ebooks/6005', 'en', 61), +(59997, 'The Overland Route to the Road of a Thousand Wonders\r\nThe Route of the Union Pacific & The Southern Pacific Railroads from Omaha to San Francisco, a Journey of Eighteen Hundred Miles Where Once the Bison & the Indian Reigned', 'Southern Pacific Company. Passenger Department', '2016-04-24', 14, 'https://www.gutenberg.org/ebooks/51849', 'en', 497), +(59998, 'Tratado das Cores\r\nQue consta de tres partes: analytica, synthetica, hermeneutica', 'Sampaio, Diogo de Carvalho e', '2010-02-05', 16, 'https://www.gutenberg.org/ebooks/31190', 'pt', 6535), +(59999, 'The Road to Providence', 'Daviess, Maria Thompson', '2003-02-01', 9, 'https://www.gutenberg.org/ebooks/3745', 'en', 12633), +(60000, 'Barbara Rebell', 'Lowndes, Marie Belloc', '2013-04-03', 18, 'https://www.gutenberg.org/ebooks/42462', 'en', 61), +(60001, 'Commercialism and Journalism', 'Holt, Hamilton', '2009-09-10', 8, 'https://www.gutenberg.org/ebooks/29953', 'en', 3183), +(60002, 'A King, and No King', 'Fletcher, John', '2004-05-01', 30, 'https://www.gutenberg.org/ebooks/12312', 'en', 8679), +(60003, 'Gouden Daden', 'Kieviet, Cornelis Johannes', '2008-07-25', 15, 'https://www.gutenberg.org/ebooks/26127', 'nl', 8842), +(60004, 'Russian Memories', 'Novikova, Olga Alekseevna', '2017-04-08', 43, 'https://www.gutenberg.org/ebooks/54507', 'en', 6352), +(60005, 'Oração funebre recitada nas exequias do Illm.^o e Exm.^o Sr. Pedro Alexandrino da Cunha', 'Vasconcelos, António Augusto Teixeira de', '2006-06-19', 11, 'https://www.gutenberg.org/ebooks/18628', 'pt', 19105), +(60006, 'Die Bibliothek meines Oheims: Eine Genfer Novelle', 'Töpffer, Rodolphe', '2015-02-04', 14, 'https://www.gutenberg.org/ebooks/48158', 'de', 61), +(60007, 'Harper\'s Young People, May 4, 1880\nAn Illustrated Weekly', 'Various', '2009-05-19', 9, 'https://www.gutenberg.org/ebooks/28881', 'en', 479), +(60008, 'Streifzüge an der Riviera', 'Strasburger, Eduard', '2009-09-20', 23, 'https://www.gutenberg.org/ebooks/30042', 'de', 19106), +(60009, 'The Guardian Angel', 'Holmes, Oliver Wendell', '2004-09-29', 25, 'https://www.gutenberg.org/ebooks/2697', 'en', 19107), +(60010, 'A Stone and a Spear', 'Jones, Raymond F.', '2016-01-29', 31, 'https://www.gutenberg.org/ebooks/51075', 'en', 3487), +(60011, 'Northern Nut Growers Association Thirty-Fourth Annual Report 1943', NULL, '2007-09-12', 9, 'https://www.gutenberg.org/ebooks/22587', 'en', 1486), +(60012, 'Fundamental Peace Ideas including The Westphalian Peace Treaty (1648) and The League Of Nations (1919)\nin connection with International Psychology and Revolutions', 'MacDonald, Arthur', '2011-03-08', 16, 'https://www.gutenberg.org/ebooks/35530', 'en', 19108), +(60013, 'Pamphlets on the Constitution of the United States\r\nPublished During Its Discussion by the People 1787-1788', NULL, '2014-10-14', 13, 'https://www.gutenberg.org/ebooks/47110', 'en', 13594), +(60014, 'The Lane That Had No Turning, Volume 1', 'Parker, Gilbert', '2004-08-01', 6, 'https://www.gutenberg.org/ebooks/6237', 'en', 1219), +(60015, 'Plain Jane', 'George, G. M.', '2007-11-12', 16, 'https://www.gutenberg.org/ebooks/23455', 'en', 859), +(60016, 'Ett pennskaft som piga', 'Holtz, Anton', '2015-05-15', 22, 'https://www.gutenberg.org/ebooks/48964', 'sv', 19109), +(60017, 'L\'archipel en feu', 'Verne, Jules', '2006-02-01', 46, 'https://www.gutenberg.org/ebooks/17660', 'fr', 17408), +(60018, 'Viviane', 'Tennyson, Alfred Tennyson, Baron', '2016-12-12', 28, 'https://www.gutenberg.org/ebooks/53722', 'fr', 5671), +(60019, 'So sollt ihr leben! Winke und Rathschläge für Gesunde und Kranke...', 'Kneipp, Sebastian', '2011-08-29', 40, 'https://www.gutenberg.org/ebooks/37267', 'de', 295), +(60020, 'Aids to Reflection; and, The Confessions of an Inquiring Spirit', 'Coleridge, Samuel Taylor', '2014-01-30', 86, 'https://www.gutenberg.org/ebooks/44795', 'en', 7857), +(60021, 'La vita militare: bozzetti', 'De Amicis, Edmondo', '2014-05-14', 26, 'https://www.gutenberg.org/ebooks/45647', 'it', 16), +(60022, 'Verses', 'Coolidge, Susan', '2003-10-01', 43, 'https://www.gutenberg.org/ebooks/4560', 'en', 178), +(60023, 'Charge! A Story of Briton and Boer', 'Fenn, George Manville', '2007-05-04', 47, 'https://www.gutenberg.org/ebooks/21302', 'en', 713), +(60024, 'The Tale of Mrs. Tiggy-Winkle', 'Potter, Beatrix', '2005-02-22', 128, 'https://www.gutenberg.org/ebooks/15137', 'en', 13380), +(60025, 'Der Deutsche Lausbub in Amerika: Erinnerungen und Eindrücke. Band 2 (von 3)', 'Rosen, Erwin', '2019-04-06', 16, 'https://www.gutenberg.org/ebooks/59218', 'de', 10639), +(60026, 'La Divina Commedia di Dante', 'Dante Alighieri', '1997-08-01', 457, 'https://www.gutenberg.org/ebooks/1012', 'it', 1906), +(60027, 'The Bath Keepers; Or, Paris in Those Days, v.1\r\n(Novels of Paul de Kock Volume VII)', 'Kock, Paul de', '2012-07-25', 12, 'https://www.gutenberg.org/ebooks/40335', 'en', 58), +(60028, 'American Big Game in Its Haunts: The Book of the Boone and Crockett Club', NULL, '2003-12-01', 39, 'https://www.gutenberg.org/ebooks/10445', 'en', 18649), +(60029, 'My Chinese Marriage', 'Franking, Mae M.', '2018-06-23', 25, 'https://www.gutenberg.org/ebooks/57382', 'en', 19110), +(60030, 'The Botanical Magazine Vol. 08\r\nOr, Flower-Garden Displayed', 'Curtis, William', '2008-02-22', 53, 'https://www.gutenberg.org/ebooks/24670', 'en', 5898), +(60031, 'Santa Claus\' Message: A Christmas Story', 'Tregaskis, E. Franklin', '2017-12-25', 16, 'https://www.gutenberg.org/ebooks/56250', 'en', 792), +(60032, 'Mlle Fifi\nNouveaux Contes', 'Maupassant, Guy de', '2004-03-01', 17, 'https://www.gutenberg.org/ebooks/11597', 'fr', 100), +(60033, 'A History of the Third French Republic', 'Wright, C. H. C. (Charles Henry Conrad)', '2010-06-06', 30, 'https://www.gutenberg.org/ebooks/32715', 'en', 12008), +(60034, 'Unthinkable', 'Phillips, Rog', '2008-12-11', 50, 'https://www.gutenberg.org/ebooks/27491', 'en', 26), +(60035, 'The Crossing', 'Churchill, Winston', '2004-10-19', 84, 'https://www.gutenberg.org/ebooks/388', 'en', 98), +(60036, 'Ski-runs in the High Alps', 'Roget, F. F. (François Frédéric)', '2017-02-13', 6, 'https://www.gutenberg.org/ebooks/54163', 'en', 19111), +(60037, 'Rhymes Old and New : collected by M.E.S. Wright', NULL, '2009-11-08', 15, 'https://www.gutenberg.org/ebooks/30426', 'en', 859), +(60038, 'Children of the Whirlwind', 'Scott, Leroy', '2002-07-01', 23, 'https://www.gutenberg.org/ebooks/3321', 'en', 48), +(60039, 'Notes and Queries, Number 230, March 25, 1854\r\nA Medium of Inter-communication for Literary Men, Artists, Antiquaries, Genealogists, etc.', 'Various', '2013-02-04', 8, 'https://www.gutenberg.org/ebooks/42006', 'en', 105), +(60040, 'Dave Darrin at Vera Cruz: Fighting with the U.S. Navy in Mexico', 'Hancock, H. Irving (Harrie Irving)', '2004-06-29', 17, 'https://www.gutenberg.org/ebooks/12776', 'en', 4678), +(60041, 'A Check-List of the Birds of Idaho', 'Arvey, M. Dale (Martin Dale)', '2011-04-26', 13, 'https://www.gutenberg.org/ebooks/35968', 'en', 19112), +(60042, 'Clematis', 'Cobb, Ernest', '2008-09-06', 10, 'https://www.gutenberg.org/ebooks/26543', 'en', 19113), +(60043, 'Dorian Grayn muotokuva', 'Wilde, Oscar', '2014-12-07', 25, 'https://www.gutenberg.org/ebooks/47574', 'fi', 19114), +(60044, 'Voyages of Samuel De Champlain — Volume 01', 'Champlain, Samuel de', '2004-10-01', 47, 'https://www.gutenberg.org/ebooks/6653', 'en', 278), +(60045, 'The Ifs of History', 'Chamberlin, Joseph Edgar', '2010-10-16', 12, 'https://www.gutenberg.org/ebooks/34086', 'en', 7868), +(60046, 'Wonderful Adventures of Mrs. Seacole in Many Lands', 'Seacole, Mary', '2007-10-14', 84, 'https://www.gutenberg.org/ebooks/23031', 'en', 19115), +(60047, 'Researches on curves of the second order\r\nAlso on cones and spherical conics treated analytically, in which the tangencies of Apollonius are investigated, and general geometrical constructions deduced from analysis; also several of the geometrical conclusions of M. Chasles are analytically resolved, together with many properties entirely original', 'Hearn, George Whitehead', '2005-12-01', 23, 'https://www.gutenberg.org/ebooks/17204', 'en', 12569), +(60048, 'The Campaign in Russian Poland', 'Standing, Percy Cross', '2016-03-09', 15, 'https://www.gutenberg.org/ebooks/51411', 'en', 8329), +(60049, 'La Vita Sul Pianeta Marte', 'Schiaparelli, G. V. (Giovanni Virginio)', '2005-03-01', 40, 'https://www.gutenberg.org/ebooks/7781', 'it', 14351), +(60050, 'A Hero of the Pen', 'Werner, E.', '2011-02-03', 8, 'https://www.gutenberg.org/ebooks/35154', 'en', 803), +(60051, 'Storia della decadenza e rovina dell\'impero romano, volume 09', 'Gibbon, Edward', '2014-03-26', 20, 'https://www.gutenberg.org/ebooks/45223', 'it', 7245), +(60052, 'The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 4', 'Ames, Azel', '2003-06-01', 7, 'https://www.gutenberg.org/ebooks/4104', 'en', 7031), +(60053, 'Ionica', 'Cory, William Johnson', '2007-06-08', 46, 'https://www.gutenberg.org/ebooks/21766', 'en', 8), +(60054, 'The Golden Treasury of American Songs and Lyrics', NULL, '2005-04-05', 33, 'https://www.gutenberg.org/ebooks/15553', 'en', 178), +(60055, 'Harhama III', 'Lassila, Maiju', '2016-06-10', 17, 'https://www.gutenberg.org/ebooks/52294', 'fi', 175), +(60056, 'The Analogy of Religion to the Constitution and Course of Nature\r\nTo which are added two brief dissertations: I. On personal identity. II. On the nature of virtue.', 'Butler, Joseph', '2016-10-22', 19, 'https://www.gutenberg.org/ebooks/53346', 'en', 7522), +(60057, 'The Function of the Poet, and Other Essays', 'Lowell, James Russell', '2004-12-27', 10, 'https://www.gutenberg.org/ebooks/14481', 'en', 2156), +(60058, 'The History of the Nineteenth Century in Caricature', 'Cooper, Frederic Taber', '2011-10-03', 20, 'https://www.gutenberg.org/ebooks/37603', 'en', 19116), +(60059, 'U.S. Presidential Inaugural Addresses', 'United States. Presidents', '2004-01-01', 14, 'https://www.gutenberg.org/ebooks/4938', 'en', 9921), +(60060, 'The Monist, Vol. 1, 1890-1891', 'Various', '2018-02-24', 12, 'https://www.gutenberg.org/ebooks/56634', 'en', 19117), +(60061, 'Figurák. (Furcsa emberekről furcsa históriák.)', 'Gárdonyi, Géza', '2012-12-21', 20, 'https://www.gutenberg.org/ebooks/41683', 'hu', 61), +(60062, 'Bobby Blake at Rockledge School; or, Winning the Medal of Honor', 'Warner, Frank A.', '2013-06-03', 5, 'https://www.gutenberg.org/ebooks/39799', 'en', 845), +(60063, 'The Bonadventure: A Random Journal of an Atlantic Holiday', 'Blunden, Edmund', '2010-05-14', 33, 'https://www.gutenberg.org/ebooks/32371', 'en', 885), +(60064, 'Chance: A Tale in Two Parts', 'Conrad, Joseph', '1998-09-01', 100, 'https://www.gutenberg.org/ebooks/1476', 'en', 3380), +(60065, 'The Old Man of the Mountain', 'Strang, Herbert', '2012-09-13', 180, 'https://www.gutenberg.org/ebooks/40751', 'en', 1025), +(60066, 'Tenterhooks', 'Leverson, Ada', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10021', 'en', 109), +(60067, 'Im Brauerhause: Novelle', 'Storm, Theodor', '2008-01-07', 26, 'https://www.gutenberg.org/ebooks/24214', 'de', 906), +(60068, 'Frank Mildmay; Or, the Naval Officer', 'Marryat, Frederick', '2007-05-21', 19, 'https://www.gutenberg.org/ebooks/21554', 'en', 3648), +(60069, 'Om utvandringen, dess betydelse och orsaker\r\nFöredrag, hållet i Stockholm den 25 och den 28 November samt i Upsala den 3 December 1881', 'Wicksell, Knut', '2005-05-03', 23, 'https://www.gutenberg.org/ebooks/15761', 'sv', 19118), +(60070, 'The Logs of the Serapis--Allance--Ariel, Under the Command of John Paul Jones, 1779-1780', NULL, '2014-02-25', 18, 'https://www.gutenberg.org/ebooks/45011', 'en', 1848), +(60071, 'An Inquiry into the Nature and Progress of Rent, and the Principles by Which It is Regulated', 'Malthus, T. R. (Thomas Robert)', '2003-08-01', 21, 'https://www.gutenberg.org/ebooks/4336', 'en', 19119), +(60072, 'Pride and Prejudice, a play founded on Jane Austen\'s novel', 'Austen, Jane', '2011-09-15', 162, 'https://www.gutenberg.org/ebooks/37431', 'en', 3258), +(60073, 'Æschylos Tragedies and Fragments', 'Aeschylus', '2016-09-30', 47, 'https://www.gutenberg.org/ebooks/53174', 'en', 9835), +(60074, 'Tiverton Tales', 'Brown, Alice', '2007-01-30', 26, 'https://www.gutenberg.org/ebooks/20486', 'en', 179), +(60075, 'The Romantic Analogue', 'Skupeldyckle, W. W.', '2010-04-26', 33, 'https://www.gutenberg.org/ebooks/32143', 'en', 26), +(60076, 'Poetical Works of Robert Bridges, Volume 5', 'Bridges, Robert', '2018-01-20', 15, 'https://www.gutenberg.org/ebooks/56406', 'en', 1088), +(60077, 'The Everlasting Whisper', 'Gregory, Jackson', '2003-11-01', 22, 'https://www.gutenberg.org/ebooks/10213', 'en', 211), +(60078, 'Joulun-aatto', 'Dickens, Charles', '2007-12-25', 28, 'https://www.gutenberg.org/ebooks/24026', 'fi', 19120), +(60079, 'The Freedmen\'s Book', 'Child, Lydia Maria', '2012-01-03', 24, 'https://www.gutenberg.org/ebooks/38479', 'en', 19121), +(60080, 'A Volunteer with Pike\r\nThe True Narrative of One Dr. John Robinson and of His Love for the Fair Señorita Vallois', 'Bennet, Robert Ames', '2010-07-05', 41, 'https://www.gutenberg.org/ebooks/33091', 'en', 19122), +(60081, 'Graham\'s Magazine, Vol. XXXIV, No. 1, January 1849', 'Various', '2017-01-12', 8, 'https://www.gutenberg.org/ebooks/53948', 'en', 380), +(60082, 'The Adventures of Gerard', 'Doyle, Arthur Conan', '1999-02-01', 106, 'https://www.gutenberg.org/ebooks/1644', 'en', 4751), +(60083, 'Captain Calamity\nSecond Edition', 'Bennett, Rolf', '2012-08-22', 21, 'https://www.gutenberg.org/ebooks/40563', 'en', 579), +(60084, 'Ομήρου Οδύσσεια Τόμος Β', 'Homer', '2009-12-06', 29, 'https://www.gutenberg.org/ebooks/30614', 'el', 18045), +(60085, 'A Pair of Blue Eyes', 'Hardy, Thomas', '2005-12-01', 3, 'https://www.gutenberg.org/ebooks/9429', 'en', 847), +(60086, 'Fancies versus Fads', 'Chesterton, G. K. (Gilbert Keith)', '2019-08-24', 113, 'https://www.gutenberg.org/ebooks/60164', 'en', NULL), +(60087, 'The White Morning: A Novel of the Power of the German Women in Wartime', 'Atherton, Gertrude Franklin Horn', '2004-09-18', 19, 'https://www.gutenberg.org/ebooks/13496', 'en', 19123), +(60088, 'In Beaver Cove and Elsewhere', 'Crim, Matt, Miss', '2017-03-12', 12, 'https://www.gutenberg.org/ebooks/54351', 'en', 112), +(60089, 'The Bet, and other stories', 'Chekhov, Anton Pavlovich', '2017-08-07', 169, 'https://www.gutenberg.org/ebooks/55283', 'en', 1377), +(60090, 'The Love Letters of Dorothy Osborne to Sir William Temple, 1652-54', 'Osborne, Dorothy', '2004-06-01', 18, 'https://www.gutenberg.org/ebooks/12544', 'en', 19124), +(60091, 'Thespis (novelas cortas y cuentos)', 'Bunge, Carlos O. (Carlos Octavio)', '2008-10-04', 10, 'https://www.gutenberg.org/ebooks/26771', 'es', 179), +(60092, 'Some Causes of the Prevailing Discontent', 'Warner, Charles Dudley', '2004-12-05', 9, 'https://www.gutenberg.org/ebooks/3113', 'en', 20), +(60093, 'The Storm\r\nor, a Collection of the most Remarkable Casualties and Disasters which Happen\'d in the Late Dreadful Tempest, both by Sea and Land', 'Defoe, Daniel', '2013-03-01', 62, 'https://www.gutenberg.org/ebooks/42234', 'en', 19125), +(60094, 'Scenas Contemporaneas', 'Castelo Branco, Camilo', '2007-10-26', 31, 'https://www.gutenberg.org/ebooks/23203', 'pt', 61), +(60095, 'Opúsculos por Alexandre Herculano - Tomo 07', 'Herculano, Alexandre', '2005-11-09', 34, 'https://www.gutenberg.org/ebooks/17036', 'pt', 410), +(60096, 'Campfire and Battlefield\nAn Illustrated History of the Campaigns and Conflicts of the Great Civil War', 'Gordon, John Brown', '2014-12-22', 40, 'https://www.gutenberg.org/ebooks/47746', 'en', 18013), +(60097, 'Facing the World', 'Alger, Horatio, Jr.', '2004-09-01', 78, 'https://www.gutenberg.org/ebooks/6461', 'en', 10371), +(60098, 'Master and Man', 'Tolstoy, Leo, graf', '2006-02-05', 187, 'https://www.gutenberg.org/ebooks/986', 'en', 5203), +(60099, 'Elizabethan Sonnet-Cycles: Delia - Diana', 'Constable, Henry', '2006-07-16', 32, 'https://www.gutenberg.org/ebooks/18842', 'en', 6689), +(60100, 'Little Abe, or, the Bishop of Berry Brow\r\nBeing the Life of Abraham Lockwood', 'Jewell, F.', '2006-12-02', 18, 'https://www.gutenberg.org/ebooks/19990', 'en', 19126), +(60101, 'Tom Clark and His Wife\r\nTheir Double Dreams, And the Curious Things that Befell Them Therein; Being the Rosicrucian\'s Story', 'Randolph, Paschal Beverly', '2011-02-23', 15, 'https://www.gutenberg.org/ebooks/35366', 'en', 19006), +(60102, 'Under Sail', 'Colcord, Lincoln', '2014-08-27', 11, 'https://www.gutenberg.org/ebooks/46694', 'en', 6077), +(60103, 'Always a Qurono', 'Harmon, Jim', '2016-04-02', 45, 'https://www.gutenberg.org/ebooks/51623', 'en', 26), +(60104, 'Little Masterpieces of Science: The Naturalist as Interpreter and Seer', NULL, '2009-08-20', 20, 'https://www.gutenberg.org/ebooks/29739', 'en', 871); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `books_subjects` +-- + +CREATE TABLE `books_subjects` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(1023) COLLATE utf8mb4_unicode_ci NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `books_subjects` +-- + +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(1, 'History, Modern -- 19th century -- Juvenile literature -- Periodicals'), +(2, 'Tales -- Hungary'), +(3, 'Camping -- Juvenile fiction'), +(4, 'France -- Social life and customs -- Fiction'), +(5, 'Christmas music -- Texts'), +(6, 'Rome -- History -- Republic, 265-30 B.C. -- Juvenile fiction'), +(7, 'Norwegian fiction -- Translations into Finnish'), +(8, 'Poetry'), +(9, 'Messengers -- Juvenile fiction'), +(10, 'Buccaneers'), +(11, 'Spain -- Court and courtiers'), +(12, 'Northwest, Canadian -- Description and travel'), +(13, 'New England -- Social life and customs -- Fiction'), +(14, 'Lancashire (England) -- History'), +(15, 'Sculpture'), +(16, 'Italy -- Fiction'), +(17, 'Art -- Korea'), +(18, 'Periodicals'), +(19, 'Literature -- Collections'), +(20, 'Essays'), +(21, 'Bewick, Thomas, 1753-1828'), +(22, 'Man in the Iron Mask'), +(23, 'Chicago (Ill.) -- Fiction'), +(24, 'Railroad accidents -- Ohio -- Ashtabula'), +(25, 'Monkeys -- Juvenile fiction'), +(26, 'Science fiction'), +(27, 'Pompadour, Jeanne Antoinette Poisson, marquise de, 1721-1764'), +(28, 'Canadian poetry'), +(29, 'Values'), +(30, 'Debates and debating'), +(31, 'Brothers and sisters -- Juvenile fiction'), +(32, 'Balloon ascensions -- Fiction'), +(33, 'Lowell, James Russell, 1819-1891'), +(34, 'Rome -- History -- Conspiracy of Catiline, 65-62 B.C.'), +(35, 'Bible -- History of Biblical events -- Textbooks'), +(36, 'United States -- History -- Civil War, 1861-1865 -- Naval operations'), +(37, 'Natural history -- Juvenile literature'), +(38, 'Pirates -- Biography'), +(39, 'Ward, Frederick Townsend, 1831-1862'), +(40, 'Irish Americans -- Fiction'), +(41, 'Finnish fiction -- 19th century'), +(42, 'Marriage -- History'), +(43, 'New Thought'), +(44, 'Juana, la Loca, Queen of Castile, 1479-1555'), +(45, 'England -- Social life and customs -- 19th century -- Fiction'), +(46, 'Lancashire (England) -- Fiction'), +(47, 'Acting'), +(48, 'Love stories'), +(49, 'Renaissance -- France'), +(50, 'American fiction -- 19th century'), +(51, 'Young women -- Juvenile fiction'), +(52, 'Japan -- History'), +(53, 'Authors, English -- 19th century -- Biography'), +(54, 'English poetry'), +(55, 'Clergy -- Fiction'), +(56, 'Slaves -- United States -- Biography'), +(57, 'Agriculture -- Periodicals'), +(58, 'French fiction -- Translations into English'), +(59, 'Paris (France) -- Social life and customs -- Fiction'), +(60, 'German literature -- 20th century'), +(61, 'Fiction'), +(62, 'Girls -- Juvenile fiction'), +(63, 'Smuggling -- Great Britain'), +(64, 'Loti, Pierre, 1850-1923 -- Travel -- Iran'), +(65, 'Canada -- Fiction'), +(66, 'United States -- Antiquities -- Catalogs'), +(67, 'Human-alien encounters -- Fiction'), +(68, 'Rhetoric -- Early works to 1800'), +(69, 'Kingsley, Mary Henrietta, 1862-1900 -- Travel -- Africa, West'), +(70, 'Lost tribes of Israel'), +(71, 'Sudan -- History -- 1881-1899'), +(72, 'Humorous stories, English'), +(73, 'Jesus Christ -- Passion -- Devotional literature'), +(74, 'Louis XI, King of France, 1423-1483'), +(75, 'Mythology'), +(76, 'Bears -- Juvenile fiction'), +(77, 'Animals -- Biography'), +(78, 'Soto, Hernando de, approximately 1500-1542'), +(79, 'Tales -- Greece'), +(80, 'Lincoln, Abraham, 1809-1865 -- Assassination'), +(81, 'Ireland -- Periodicals'), +(82, 'Vacations -- Juvenile fiction'), +(83, 'United States -- History -- Civil War, 1861-1865 -- Personal narratives, Confederate'), +(84, 'Reformed Church -- Doctrines'), +(85, 'Russia -- Social life and customs -- Fiction'), +(86, 'China -- Historical geography'), +(87, 'Bee culture'), +(88, 'Birds -- India'), +(89, 'Picaresque literature'), +(90, 'Kentucky -- History -- To 1792'), +(91, 'Plants, Cultivated'), +(92, 'Railroads -- Austria -- History'), +(93, 'World War, 1914-1918 -- Anecdotes'), +(94, 'Social classes -- Juvenile fiction'), +(95, 'England -- Fiction'), +(96, 'Catholic Church -- Periodicals'), +(97, 'Botanical illustration -- Periodicals'), +(98, 'Historical fiction'), +(99, 'Oregon Territory -- History'), +(100, 'Short stories, French'), +(101, 'Pennsylvania -- History -- Civil War, 1861-1865 -- Regimental histories'), +(102, 'Telepathy'), +(103, 'Cooking, American'), +(104, 'Justice -- Early works to 1800'), +(105, 'Questions and answers -- Periodicals'), +(106, 'Netherlands -- History -- 19th century'), +(107, 'Brigands and robbers -- Juvenile fiction'), +(108, 'Oceania -- Fiction'), +(109, 'Man-woman relationships -- Fiction'), +(110, 'Deer -- Juvenile fiction'), +(111, 'Grant, Ulysses S. (Ulysses Simpson), 1822-1885'), +(112, 'Short stories, American'), +(113, 'China -- History -- Zhou dynasty, 1122-221 B.C. -- Fiction'), +(114, 'Paranormal fiction'), +(115, 'England -- Drama'), +(116, 'Finland -- Fiction'), +(117, 'Ireland -- Description and travel'), +(118, 'Japan -- Description and travel'), +(119, 'War, Maritime (International law)'), +(120, 'Browne, Thomas, Sir, 1605-1682'), +(121, 'Casuistry'), +(122, 'Biography'), +(123, 'Survival -- Fiction'), +(124, 'Florida -- Juvenile fiction'), +(125, 'Slavery -- United States'), +(126, 'English drama -- 17th century'), +(127, 'Mathematics -- History'), +(128, 'Detective and mystery stories'), +(129, 'Short stories, Australian'), +(130, 'Mammals -- Mexico -- Tamaulipas'), +(131, 'Authors, American -- 19th century -- Biography'), +(132, 'Toys'), +(133, 'Popular literature -- Great Britain -- Periodicals'), +(134, 'English wit and humor -- Periodicals'), +(135, 'Mammals -- Michigan -- Berrien County'), +(136, 'United States. Army -- Officers -- Fiction'), +(137, 'English fiction -- 19th century'), +(138, 'German fiction -- 19th century'), +(139, 'Ireland -- Poetry'), +(140, 'Folly -- Early works to 1800'), +(141, 'Maine -- Juvenile fiction'), +(142, 'Great Britain -- History -- Norman period, 1066-1154 -- Sources'), +(143, 'Castro, Inês de, -1355 -- Drama'), +(144, 'Sri Lanka -- Description and travel'), +(145, 'Dead -- Fiction'), +(146, 'World War, 1914-1918 -- Juvenile fiction'), +(147, 'Russian fiction -- Translations into Finnish'), +(148, 'Teachers -- Juvenile fiction'), +(149, 'Cooking (Vegetables)'), +(150, 'Illustrated periodicals -- France'), +(151, 'Bible. Proverbs'), +(152, 'Renan, Ernest, 1823-1892'), +(153, 'Boys -- Juvenile fiction'), +(154, 'Social classes -- Fiction'), +(155, 'Lincoln, Abraham, 1809-1865 -- Correspondence'), +(156, 'Criminals -- Ireland'), +(157, 'Harvesting machinery'), +(158, 'Wigtownshire (Scotland) -- Fiction'), +(159, 'Middle Ages -- Juvenile fiction'), +(160, 'Fijians'), +(161, 'Psychiatric hospitals -- New York (State) -- History -- 19th century'), +(162, 'Literature, Modern -- 19th century -- Periodicals'), +(163, 'Fiction -- Dictionaries'), +(164, 'Garrick, David, 1717-1779 -- Poetry'), +(165, 'Farrar, F. W. (Frederic William), 1831-1903. New apology'), +(166, 'Cornwall (England : County) -- Fiction'), +(167, 'Mystery fiction'), +(168, 'Children\'s stories, French'), +(169, 'Finland -- History -- Revolution, 1917-1918'), +(170, 'Brandy -- Therapeutic use'), +(171, 'Sailors -- Anecdotes'), +(172, 'Dogma, Development of'), +(173, 'Plantation life -- Fiction'), +(174, 'Oz (Imaginary place) -- Juvenile fiction'), +(175, 'Finnish fiction -- 20th century'), +(176, 'Hunting stories'), +(177, 'Criminals -- Fiction'), +(178, 'American poetry'), +(179, 'Short stories'), +(180, 'African Americans'), +(181, 'New York (State) -- Description and travel -- Fiction'), +(182, 'Colorado -- Description and travel'), +(183, 'Dreams -- Drama'), +(184, 'Ludwig II, King of Bavaria, 1845-1886'), +(185, 'Divination'), +(186, 'Science -- History'), +(187, 'Constitutional law -- United States'), +(188, 'Spanish language -- Readers'), +(189, 'Hungarian fiction'), +(190, 'American wit and humor'), +(191, 'Italian wit and humor'), +(192, 'Jealousy -- Fiction'), +(193, 'Mythology, Celtic -- Ireland'), +(194, 'Shipwrecks -- Fiction'), +(195, 'Conduct of life -- Juvenile fiction'), +(196, 'Telegraph, Wireless -- Juvenile fiction'), +(197, 'Hymns'), +(198, 'Indexes'), +(199, 'Herbs -- Early works to 1800'), +(200, 'Sunday schools -- United States -- Periodicals'), +(201, 'Great Britain -- History -- Charles II, 1660-1685 -- Sources'), +(202, 'Working class -- Great Britain -- Biography'), +(203, 'Love -- Early works to 1800'), +(204, 'Epworth League (U.S.) -- Fiction'), +(205, 'Jews -- Music'), +(206, 'Spanish drama -- Classical period, 1500-1700'), +(207, 'United States -- History'), +(208, 'Johnson, Samuel, 1709-1784'), +(209, 'Provence (France) -- Description and travel'), +(210, 'Science -- Periodicals'), +(211, 'California -- Fiction'), +(212, 'Florida -- Guidebooks'), +(213, 'Turkey -- Description and travel'), +(214, 'Costume -- France -- History'), +(215, 'Netherlands'), +(216, 'Social history'), +(217, 'Social conflict -- Spain -- History -- 19th century -- Fiction'), +(218, 'Beccles (England) -- Independent church'), +(219, 'Risk Allah, Habeeb -- Travel -- Europe'), +(220, 'Rowson, Mrs., 1762-1824 -- Fiction'), +(221, 'Texas -- History -- 20th century -- Fiction'), +(222, 'Hat trade'), +(223, 'Michigan -- Fiction'), +(224, 'France -- History -- To 987 -- Fiction'), +(225, 'United States -- Foreign relations'), +(226, 'England -- Social life and customs'), +(227, 'South America -- Description and travel'), +(228, 'Bible. Matthew'), +(229, 'Ireland -- Juvenile literature'), +(230, 'English fiction -- 20th century'), +(231, 'Cardiff (Wales) -- Pictorial works'), +(232, 'English literature -- 19th century'), +(233, 'Education of princes -- Fiction'), +(234, 'Hungarian fiction -- 19th century'), +(235, 'Conspiracies -- Fiction'), +(236, 'Insects -- Juvenile literature'), +(237, 'Tragic, The -- Religious aspects -- Christianity'), +(238, 'Executions and executioners -- Fiction'), +(239, 'Detectives -- France -- Biography'), +(240, 'Cycling -- Fiction'), +(241, 'Mississippi River -- Discovery and exploration'), +(242, 'Slave trade -- Africa'), +(243, 'Soul'), +(244, 'Neutrality -- Netherlands'), +(245, 'Athens (Greece) -- Social life and customs'), +(246, 'Voyages and travels -- Juvenile fiction'), +(247, 'Finnish drama'), +(248, 'France -- History -- Revolution, 1789-1799 -- Fiction'), +(249, 'Cooking (Cheese)'), +(250, 'Music -- History and criticism'), +(251, 'Mental health'), +(252, 'Sea stories, English'), +(253, 'German fiction'), +(254, 'Socialism'), +(255, 'Spanish Main -- Fiction'), +(256, 'Married people -- United States -- Fiction'), +(257, 'Male friendship -- Fiction'), +(258, 'Epistolary fiction'), +(259, 'French fiction -- 20th century'), +(260, 'Communism'), +(261, 'Mississippi River Valley -- Social life and customs -- 19th century'), +(262, 'City and town life -- Fiction'), +(263, 'Monasticism and religious orders -- England'), +(264, 'Orphans -- Fiction'), +(265, 'Marguerite, Queen, consort of Henry IV, King of France, 1553-1615'), +(266, 'Haiti -- Description and travel'), +(267, 'Sahara -- Fiction'), +(268, 'Bibliography'), +(269, 'Love poetry, Canadian'), +(270, 'Travelers -- Fiction'), +(271, 'Russian drama -- Translations into German'), +(272, 'Squirrels'), +(273, 'Aunts -- Fiction'), +(274, 'Scotland -- Periodicals'), +(275, 'Sports -- Moral and ethical aspects'), +(276, 'Antigone (Mythological character) -- Drama'), +(277, 'Speeches, addresses, etc., English'), +(278, 'America -- Discovery and exploration -- French'), +(279, 'Life'), +(280, 'Iceland -- Description and travel'), +(281, 'Metaphysics'), +(282, 'Germany -- Fiction'), +(283, 'Songs, German -- Texts'), +(284, 'Fugitive slaves -- Legal status, laws, etc. -- Maryland'), +(285, 'Bigelow, Timothy, 1739-1790'), +(286, 'Norway -- Fiction'), +(287, 'Working class -- Fiction'), +(288, 'Great Britain -- History -- To 1485'), +(289, 'Maryland -- Description and travel -- Poetry'), +(290, 'Jerusalem -- Social life and customs'), +(291, 'Mexican War, 1846-1848'), +(292, 'Chemistry'), +(293, 'Spain -- History -- 711-1516'), +(294, 'Readers (Primary)'), +(295, 'Hygiene'), +(296, 'Feeds'), +(297, 'Artists -- Fiction'), +(298, 'French fiction -- 19th century'), +(299, 'Carthage (Extinct city) -- History -- Fiction'), +(300, 'Naval history'), +(301, 'Flight attendants -- Juvenile fiction'), +(302, 'Virgil. Aeneis'), +(303, 'Iseult (Legendary character) -- Romances -- Adaptations'), +(304, 'Delacroix, Eugène, 1798-1863'), +(305, 'Armada, 1588'), +(306, 'Järnefelt, Arvid, 1861-1932'), +(307, 'Geometry, Descriptive'), +(308, 'Alerte (Yacht)'), +(309, 'Twins -- Juvenile fiction'), +(310, 'Mormon Church'), +(311, 'Anecdotes'), +(312, 'Natural history -- United States'), +(313, 'Kings and rulers -- Fiction'), +(314, 'Highlands (Scotland) -- Fiction'), +(315, 'Western stories'), +(316, 'Books and reading -- United States'), +(317, 'English drama -- 20th century'), +(318, 'Birds'), +(319, 'Dutch fiction'), +(320, 'New York (State) -- History -- Colonial period, ca. 1600-1775'), +(321, 'British -- Foreign countries -- Fiction'), +(322, 'Aesthetics -- Early works to 1800'), +(323, 'Adventure stories'), +(324, 'Sea stories'), +(325, 'World War, 1914-1918 -- Aerial operations -- Juvenile fiction'), +(326, 'Great Britain. Army -- Ordnance facilities'), +(327, 'Transvaal (South Africa) -- History -- War of 1880-1881 -- Fiction'), +(328, 'Pirates -- Poetry'), +(329, 'Lönnrot, Elias, 1802-1884. Kanteletar'), +(330, 'United States -- Foreign relations -- 1775-1783'), +(331, 'Northmen -- Fiction'), +(332, 'Canadian fiction -- 20th century'), +(333, 'Painting, Japanese'), +(334, 'Texas -- History -- Revolution, 1835-1836'), +(335, 'World War, 1914-1918'), +(336, 'Dime novels'), +(337, 'United States -- History -- Sources'), +(338, 'Marbling'), +(339, 'Paleontology'), +(340, 'Project Gutenberg'), +(341, 'Teaching'), +(342, 'India -- Languages'), +(343, 'Nursery rhymes'), +(344, 'Children\'s stories, Flemish'), +(345, 'Carducci, Giosuè, 1835-1907'), +(346, 'World history'), +(347, 'Religion -- Philosophy'), +(348, 'Young women -- Fiction'), +(349, 'Drill and minor tactics'), +(350, 'American poetry -- 19th century'), +(351, 'English language -- Slang -- Dictionaries'), +(352, 'Technology -- Periodicals'), +(353, 'World War, 1914-1918 -- Food supply -- United States'), +(354, 'Knowledge, Theory of'), +(355, 'Sick children -- Juvenile fiction'), +(356, 'Brigands and robbers -- Fiction'), +(357, 'Birds -- Eggs'), +(358, 'Christian antiquities -- Italy -- Rome'), +(359, 'Horror tales, American'), +(360, 'Hotels -- New York (State)'), +(361, 'Knights and knighthood -- Spain -- Fiction'), +(362, 'Rubber industry and trade -- Congo (Democratic Republic)'), +(363, 'Malta -- History'), +(364, 'Children\'s plays'), +(365, 'Epic poetry, Italian -- Translations into English'), +(366, 'Howells, William Dean, 1837-1920 -- Friends and associates'), +(367, 'France -- History -- Invasion of 1814 -- Fiction'), +(368, 'Jews -- Italy -- Drama'), +(369, 'Sex (Psychology)'), +(370, 'Dakota Indians -- Folklore'), +(371, 'Peru -- Description and travel'), +(372, 'American wit and humor -- Periodicals'), +(373, 'Cooking -- Juvenile literature'), +(374, 'Shipwrecks -- Indian Ocean -- Juvenile fiction'), +(375, 'Bao, Zheng, 999-1062 -- Fiction'), +(376, 'Families -- Fiction'), +(377, 'Mormon Church -- Doctrines'), +(378, 'Domestic fiction'), +(379, 'Railroads, Local and light -- England'), +(380, 'Literature -- Periodicals'), +(381, 'Christmas -- Poetry'), +(382, 'Finnish drama -- 20th century'), +(383, 'Religion in literature'), +(384, 'Educators -- United States -- Biography'), +(385, 'Charlemagne, Emperor, 742-814 -- Fiction'), +(386, 'Caine, Hall, 1853-1931'), +(387, 'Culture -- Periodicals'), +(388, 'Children\'s stories'), +(389, 'Families -- Juvenile fiction'), +(390, 'Philosophy, American'), +(391, 'Education -- England -- History'), +(392, 'Chopin, Frédéric, 1810-1849'), +(393, 'Norwegian fiction -- Translations into German'), +(394, 'Money-making projects for children -- Juvenile fiction'), +(395, 'Congregational churches -- Missions -- Periodicals'), +(396, 'Finland -- Biography'), +(397, 'Electricity -- Fiction'), +(398, 'Musical fiction'), +(399, 'Dalmatia (Croatia) -- Politics and government'), +(400, 'Brothers -- Fiction'), +(401, 'English fiction'), +(402, 'Drama'), +(403, 'United States -- History -- Civil War, 1861-1865 -- Fiction'), +(404, 'Great Britain -- History -- Medieval period, 1066-1485 -- Fiction'), +(405, 'Law -- France -- Humor'), +(406, 'Girls -- Conduct of life -- Fiction'), +(407, 'Italian drama'), +(408, 'Dreams -- Fiction'), +(409, 'Short stories, English'), +(410, 'Portuguese literature -- 19th century'), +(411, 'Methodology'), +(412, 'Clergy -- England -- Biography'), +(413, 'Folk literature, Danish -- Denmark -- Jutland'), +(414, 'United States -- Biography'), +(415, 'French drama'), +(416, 'Shepherds -- Scotland -- Juvenile fiction'), +(417, 'Russia -- Social life and customs -- 1533-1917 -- Fiction'), +(418, 'Millbank Prison (London, England)'), +(419, 'Dance -- England'), +(420, 'Swedish fiction'), +(421, 'Australia -- Juvenile fiction'), +(422, 'German literature'), +(423, 'Heresy'), +(424, 'Extraterrestrial beings -- Fiction'), +(425, 'Adana (Turkey) -- History'), +(426, 'Woolston, Thomas, 1670-1733. Sixth discourse on the miracles of our Saviour'), +(427, 'American drama -- 20th century'), +(428, 'Gothic fiction'), +(429, 'Speeches, addresses, etc., American'), +(430, 'Holmes, Sherlock (Fictitious character) -- Fiction'), +(431, 'Family -- Scotland -- Juvenile fiction'), +(432, 'England -- Social life and customs -- 20th century -- Fiction'), +(433, 'Finnish drama -- 19th century'), +(434, 'Married women -- Fiction'), +(435, 'Miners -- Juvenile fiction'), +(436, 'Skating -- Juvenile fiction'), +(437, 'McKinlay, John, 1819-1872'), +(438, 'Women -- Biography -- Juvenile literature'), +(439, 'Solar Queen (Imaginary space vehicle) -- Fiction'), +(440, 'Ireland -- Social life and customs -- Fiction'), +(441, 'Bible. Apocrypha. Wisdom of Solomon'), +(442, 'Women -- Employment -- New York (State) -- New York -- History -- Sources'), +(443, 'Mexican-American Border Region -- Juvenile fiction'), +(444, 'United States -- History -- Civil War, 1861-1865 -- Personal narratives'), +(445, 'Constitutional history -- Great Britain'), +(446, 'Devon (England) -- Social life and customs'), +(447, 'Presidents -- United States'), +(448, 'Funeral rites and ceremonies'), +(449, 'World War, 1914-1918 -- Personal narratives'), +(450, 'Kindness -- Juvenile fiction'), +(451, 'Older men -- Fiction'), +(452, 'Children\'s periodicals, Swedish'), +(453, 'United States -- History -- Revolution, 1775-1783 -- Sources'), +(454, 'Women detectives -- Juvenile fiction'), +(455, 'United States -- Social life and customs -- 1783-1865'), +(456, 'Finnish fiction'), +(457, 'Legal ethics -- United States'), +(458, 'Frontier and pioneer life -- Ohio -- Fiction'), +(459, 'Christian women saints -- Fiction'), +(460, 'Cant'), +(461, 'Horror tales'), +(462, 'Great Britain -- History, Military'), +(463, 'Hazlitt, William, 1778-1830 -- Correspondence'), +(464, 'Chemists -- Great Britain -- Biography'), +(465, 'War -- Early works to 1800'), +(466, 'English poetry -- Early modern, 1500-1700'), +(467, 'Voyages, Imaginary -- Early works to 1800'), +(468, 'Muhammad, Prophet, -632'), +(469, 'Balearic Islands (Spain) -- History'), +(470, 'Christian life -- Juvenile fiction'), +(471, 'Atheism'), +(472, 'English essays'), +(473, 'Russia -- History'), +(474, 'Short stories, Italian'), +(475, 'Wilderness survival -- Juvenile fiction'), +(476, 'Scientists -- Great Britain -- Biography'), +(477, 'Paris (France) -- History -- Commune, 1871'), +(478, 'Great Britain -- Social life and customs -- 17th century -- Sources'), +(479, 'Children\'s periodicals, American'), +(480, 'Spanish fiction -- Translations into English'), +(481, 'United States -- History -- Revolution, 1775-1783'), +(482, 'Composers -- Germany -- Biography -- Juvenile literature'), +(483, 'Wasps'), +(484, 'Africa, Central -- Description and travel'), +(485, 'West (U.S.) -- Social life and customs -- Fiction'), +(486, 'Arabs'), +(487, 'Diligence -- Juvenile fiction'), +(488, 'Garibaldi, Giuseppe, 1807-1882'), +(489, 'Drama -- Technique'), +(490, 'Birds -- Periodicals'), +(491, 'United States -- History -- Civil War, 1861-1865 -- Juvenile fiction'), +(492, 'Cinq-Mars, Henri Coiffier Ruzé d\'Effiat, marquis de, 1620-1642 -- Fiction'), +(493, 'German drama -- Translations into English'), +(494, 'Mine accidents -- Juvenile fiction'), +(495, 'Jewish legends'), +(496, 'Architecture -- France -- Normandy'), +(497, 'West (U.S.) -- Description and travel'), +(498, 'West (U.S.) -- Guidebooks'), +(499, 'Italian drama (Comedy) -- 19th century'), +(500, 'Courtship -- Fiction'), +(501, 'Casa Grande National Monument (Ariz.)'), +(502, 'World War, 1914-1918 -- Italy'), +(503, 'Sabbath'), +(504, 'Spiritualism'), +(505, 'Aristotle, 384 BC-322 BC'), +(506, 'Fables, French -- Translations into English'), +(507, 'Russia -- Court and courtiers'), +(508, 'American drama'), +(509, 'Dystopias -- Fiction'), +(510, 'German poetry -- 19th century'), +(511, 'Children\'s stories, Dutch'), +(512, 'Passenger ships -- Fiction'), +(513, 'Mothers and sons'), +(514, 'Epic poetry, Latin -- Translations into English'), +(515, 'Teenage boys -- Juvenile fiction'), +(516, 'Science -- Methodology'), +(517, 'United States -- Social life and customs'), +(518, 'Sunday schools -- Juvenile fiction'), +(519, 'Missionaries -- Fiction'), +(520, 'Unmarried mothers -- Fiction'), +(521, 'Moffat, Robert, 1795-1883'), +(522, 'American literature -- 19th century -- Periodicals'), +(523, 'Apparitions'), +(524, 'Americanisms'), +(525, 'Violin -- History'), +(526, 'Great Britain -- Social life and customs -- 20th century -- Fiction'), +(527, 'Farm life -- Juvenile fiction'), +(528, 'Malabar (India) -- Description and travel'), +(529, 'Spanish-American War, 1898 -- Regimental histories'), +(530, 'Birds -- Ohio'), +(531, 'Ghost stories'), +(532, 'English poetry -- 19th century'), +(533, 'Voyages and travels -- Fiction'), +(534, 'Law -- England'), +(535, 'Alaska -- Fiction'), +(536, 'Literature, Modern -- 19th century -- History and criticism'), +(537, 'Marriage -- Drama'), +(538, 'United States -- Social life and customs -- 19th century -- Juvenile fiction'), +(539, 'New England -- Fiction'), +(540, 'Realism in literature'), +(541, 'Upper class families -- Fiction'), +(542, 'Qur\'an'), +(543, 'German wit and humor'), +(544, 'Eugenics -- Congresses'), +(545, 'Queensland -- Economic conditions'), +(546, 'Paper bag cooking'), +(547, 'Women authors, English -- Biography'), +(548, 'Christmas -- Juvenile fiction'), +(549, 'German fiction -- 20th century'), +(550, 'Islands -- Juvenile fiction'), +(551, 'Northwest, Canadian -- Fiction'), +(552, 'Dragons -- Poetry'), +(553, 'Scots language'), +(554, 'Chevreuse, Marie de Rohan, duchesse de, 1600-1679'), +(555, 'Poets, English -- Middle English, 1100-1500 -- Biography'), +(556, 'Aran Islands (Ireland) -- Description and travel'), +(557, 'Mystery and detective stories'), +(558, 'United States -- Politics and government -- 19th century -- Periodicals'), +(559, 'Church history -- Middle Ages, 600-1500'), +(560, 'Paris (France) -- Fiction'), +(561, 'Vampires -- Fiction'), +(562, 'Home missions -- Periodicals'), +(563, 'Children\'s literature -- Periodicals'), +(564, 'English wit and humor'), +(565, 'Spain -- History -- Philip II, 1556-1598'), +(566, 'Lafayette, Marie Joseph Paul Yves Roch Gilbert Du Motier, marquis de, 1757-1834'), +(567, 'China -- Civilization'), +(568, 'World War, 1914-1918 -- Humor'), +(569, 'Dietzgen, Joseph, 1828-1888 -- Criticism and interpretation'), +(570, 'Auction bridge'), +(571, 'Ponies -- Juvenile fiction'), +(572, 'Folklore -- Belgium'), +(573, 'English language -- Old English, ca. 450-1100 -- Dictionaries'), +(574, 'Jewelry theft -- Fiction'), +(575, 'Ireland -- Guidebooks'), +(576, 'Pastoral drama'), +(577, 'Missionaries -- Nigeria -- Biography'), +(578, 'Helen, of Troy, Queen of Sparta -- Drama'), +(579, 'World War, 1914-1918 -- Fiction'), +(580, 'Fantasy fiction'), +(581, 'Scandinavia -- Description and travel'), +(582, 'United States -- Politics and government -- 1837-1841'), +(583, 'Christmas music'), +(584, 'African Americans -- Civil rights'), +(585, 'Christmas stories'), +(586, 'Christmas poetry'), +(587, 'United States. Army. Ohio Infantry Regiment, 124th (1862-1865)'), +(588, 'Virginia -- Politics and government -- To 1775'), +(589, 'Québec (Province) -- Fiction'), +(590, 'Clergy -- Finland -- Helsinki -- Biography'), +(591, 'Swedish literature -- History and criticism'), +(592, 'Venice (Italy) -- Description and travel'), +(593, 'Actors -- Correspondence'), +(594, 'Jerusalem -- History'), +(595, 'Abbeys -- Wales -- Valle Crucis -- History'), +(596, 'Rembrandt Harmenszoon van Rijn, 1606-1669'), +(597, 'Animals -- Great Britain'), +(598, 'Biochemistry'), +(599, 'Historical drama'), +(600, 'Donegal (Ireland : County) -- Description and travel'), +(601, 'Medici, Isabella Romola de\', 1542-1576 -- Fiction'), +(602, 'Epigrams, German -- Translations into English'), +(603, 'Color'), +(604, 'Business -- Fiction'), +(605, 'Smith, George, 1830-'), +(606, 'New Zealand -- Social life and customs -- Fiction'), +(607, 'France -- Social life and customs -- 19th century -- Fiction'), +(608, 'Rousseau, Jean-Jacques, 1712-1778'), +(609, 'Jesus Christ -- Fiction'), +(610, 'Lassalle, Ferdinand, 1825-1864'), +(611, 'Travel -- Fiction'), +(612, 'World War, 1914-1918 -- Drama'), +(613, 'Mars (Planet) -- Fiction'), +(614, 'Ordnance -- Fiction'), +(615, 'Dairying -- Australia'), +(616, 'Space flight -- Fiction'), +(617, 'Labor unions -- United States'), +(618, 'Middle class -- France -- Drama'), +(619, 'Antarctica -- Discovery and exploration -- British'), +(620, 'American essays -- 19th century'), +(621, 'Boarding schools -- England -- Juvenile fiction'), +(622, 'Camp Fire Girls -- Juvenile fiction'), +(623, 'Interplanetary voyages -- Fiction'), +(624, 'France -- History'), +(625, 'Animals -- Juvenile fiction'), +(626, 'Mormon pioneers -- Utah -- Manti -- Biography'), +(627, 'Danish drama -- Translations into English'), +(628, 'Accidents -- Juvenile fiction'), +(629, 'French literature -- 19th century -- History and criticism'), +(630, 'Mythology -- Juvenile literature'), +(631, 'Logic -- Early works to 1800'), +(632, 'Education -- England -- Oxford -- History -- 16th century'), +(633, 'Syria -- Church history'), +(634, 'Currency question -- Great Britain'), +(635, 'Tarzan (Fictitious character) -- Fiction'), +(636, 'Missions -- India'), +(637, 'Humorous stories'), +(638, 'Legends'), +(639, 'Buddhism'), +(640, 'Sumner, Charles, 1811-1874'), +(641, 'Great Britain -- History -- William and Mary, 1689-1702'), +(642, 'French literature'), +(643, 'Christian poetry, English -- 19th century'), +(644, 'Italian poetry -- 20th century'), +(645, 'Pirates'), +(646, 'Vermont -- History'), +(647, 'Alcoholics -- Fiction'), +(648, 'Horology'), +(649, 'Wine and wine making'), +(650, 'California -- Social life and customs -- Fiction'), +(651, 'Children\'s stories, English'), +(652, 'German literature -- 20th century -- Translations into English'), +(653, 'War crime trials -- Germany -- Nuremberg'), +(654, 'Revenge -- Fiction'), +(655, 'Religion'), +(656, 'Cork'), +(657, 'Desertion, Military -- Texas'), +(658, 'Conduct of life -- Fiction'), +(659, 'Speeches, addresses, etc.'), +(660, 'Operas -- Excerpts, Arranged'), +(661, 'Conducting'), +(662, 'Christian saints'), +(663, 'Sanborn, Kate, 1839-1917'), +(664, 'English language -- Composition and exercises'), +(665, 'Short stories, Finnish'), +(666, 'Scudéry, Madeleine de, 1607-1701'), +(667, 'Science -- Popular works'), +(668, 'Children\'s periodicals'), +(669, 'Ireland -- Fiction'), +(670, 'Snakes -- Texas'), +(671, 'Portuguese fiction'), +(672, 'Nursery rhymes, English'), +(673, 'Egypt -- Antiquities'), +(674, 'Women -- Ontario -- Social conditions -- 19th century -- Fiction'), +(675, 'Marriage -- Fiction'), +(676, 'Indians of North America -- Juvenile fiction'), +(677, 'Christian saints -- Italy -- Cascia -- Biography'), +(678, 'Law -- Great Britain'), +(679, 'Extinct cities -- Juvenile fiction'), +(680, 'Ethics'), +(681, 'Paine, Thomas, 1737-1809. Age of reason'), +(682, 'Germany -- History -- Hohenstaufen, 1138-1254 -- Fiction'), +(683, 'India -- Religion'), +(684, 'Ireland -- History -- 18th century -- Fiction'), +(685, 'Richard III, King of England, 1452-1485 -- Early works to 1800'), +(686, 'Christian literature, English'), +(687, 'French fiction'), +(688, 'Warwickshire (England) -- Description and travel'), +(689, 'Paris (France) -- Intellectual life -- 19th century -- Fiction'), +(690, 'Knitting'), +(691, 'Folklore -- Borneo'), +(692, 'Sanitation -- History'), +(693, 'Italian fiction -- 15th century -- Translations into English'), +(694, 'Radio broadcasting'), +(695, 'Nuclear physics -- Computer programs'), +(696, 'New South Wales -- Discovery and exploration -- Early works to 1800'), +(697, 'Nursery rhymes -- History and criticism'), +(698, 'Men -- Societies and clubs -- Drama'), +(699, 'World War, 1914-1918 -- United States'), +(700, 'World War, 1914-1918 -- Miscellanea'), +(701, 'French poetry'), +(702, 'Mutiny -- Fiction'), +(703, 'Tales -- Tanzania'), +(704, 'Agamemnon, King of Mycenae (Mythological character) -- Drama'), +(705, 'Married people -- Fiction'), +(706, 'Middle class -- Fiction'), +(707, 'Sweden -- Juvenile fiction'), +(708, 'Africa -- Description and travel'), +(709, 'Queens -- Biography -- Juvenile literature'), +(710, 'Consolation'), +(711, 'England -- Periodicals'), +(712, 'Villages -- Fiction'), +(713, 'South African War, 1899-1902 -- Fiction'), +(714, 'Women automobile drivers -- Fiction'), +(715, 'Grizzly bear'), +(716, 'Temperance -- Fiction'), +(717, 'Sermons, English'), +(718, 'Grace (Theology) -- Sermons'), +(719, 'Du Barry, Jeanne Bécu, comtesse, 1743-1793'), +(720, 'World War, 1914-1918 -- Campaigns -- Turkey'), +(721, 'Italian poetry -- 19th century'), +(722, 'World\'s Columbian Exposition (1893 : Chicago, Ill.)'), +(723, 'Palestine -- Description and travel'), +(724, 'British -- France -- Fiction'), +(725, 'Folklore -- United States'), +(726, 'Argenson, René-Louis de Voyer, marquis d\', 1694-1757'), +(727, 'Methuen & Co. -- Catalogs'), +(728, 'Ohio -- Social life and customs -- Fiction'), +(729, 'Dogs -- Folklore'), +(730, 'Swimming -- Juvenile fiction'), +(731, 'Aviraneta e Ibargoyen, Eugenio de, 1792-1872 -- Fiction'), +(732, 'Chinese literature -- Ming dynasty, 1368-1644'), +(733, 'Interpersonal relations -- Juvenile fiction'), +(734, 'Confucius. Chun qiu'), +(735, 'Waterloo, Battle of, Waterloo, Belgium, 1815'), +(736, 'Medicine -- Practice'), +(737, 'Submarines (Ships) -- Fiction'), +(738, 'Pepys, Samuel, 1633-1703 -- Diaries'), +(739, 'Italian poetry'), +(740, 'Conduct of life'), +(741, 'Medicine -- Anecdotes'), +(742, 'French literature -- 18th century'), +(743, 'Coney Island (New York, N.Y.) -- Fiction'), +(744, 'Worcester (England) -- Fiction'), +(745, 'Philippines -- Discovery and exploration'), +(746, 'Theosophy'), +(747, 'Cuba -- Description and travel'), +(748, 'Indian mythology -- Peru'), +(749, 'Dakota Indians -- Biography'), +(750, 'Seafaring life'), +(751, 'Orphans -- Juvenile fiction'), +(752, 'Holmes, Oliver Wendell, 1809-1894'), +(753, 'Augustine, Saint, Bishop of Hippo -- Fiction'), +(754, 'Cook, James, 1728-1779'), +(755, 'Women -- Health and hygiene'), +(756, 'Bible. Judges -- Commentaries'), +(757, 'Mate selection -- Fiction'), +(758, 'United States. Army -- Biography'), +(759, 'Treasure troves -- Fiction'), +(760, 'Future life -- Fiction'), +(761, 'Bread'), +(762, 'Businesswomen -- Fiction'), +(763, 'Gilbert, William, 1544-1603'), +(764, 'Mormons -- Controversial literature'), +(765, 'Buddhism -- Sacred books'), +(766, 'Dogs -- Juvenile fiction'), +(767, 'Australia -- Description and travel'), +(768, 'Jesuits -- Canada'), +(769, 'Sex -- Caricatures and cartoons'), +(770, 'United States -- Social life and customs -- 19th century -- Fiction'), +(771, 'Railroads -- Juvenile fiction'), +(772, 'Thackeray, William Makepeace, 1811-1863 -- Travel -- Belgium'), +(773, 'Ranching -- New Mexico -- Fiction'), +(774, 'Ranch life -- Fiction'), +(775, 'Japan -- Fiction'), +(776, 'England -- Description and travel'), +(777, 'Uncles -- Fiction'), +(778, 'Italy, Northern -- Description and travel'), +(779, 'Philosophy'), +(780, 'United States -- Politics and government -- 1933-1945'), +(781, 'Satire'), +(782, 'Authors, Swiss -- 19th century -- Diairies'), +(783, 'Shakespeare, William, 1564-1616 -- Tragedies'), +(784, 'Parapsychology -- Fiction'), +(785, 'Paraffin injections'), +(786, 'Insects -- Juvenile poetry'), +(787, 'Art'), +(788, 'Etiquette'), +(789, 'Switzerland -- History -- 19th century -- Fiction'), +(790, 'South Pole'), +(791, 'Saunders, David, 1717-1796'), +(792, 'Australia -- Fiction'), +(793, 'Reconstruction (U.S. history, 1865-1877) -- Fiction'), +(794, 'Hinduism -- Sacred books'), +(795, 'Hotel Danieli (Venice, Italy)'), +(796, 'Prince Edward Island -- History -- 20th century -- Fiction'), +(797, 'Manners and customs -- Fiction'), +(798, 'Norwegian drama -- Translations into English'), +(799, 'Mollusks -- Juvenile literature'), +(800, 'American literature -- Southern States'), +(801, 'Hannay, Richard (Fictitious character) -- Fiction'), +(802, 'Valtellina (Italy) -- History'), +(803, 'German fiction -- Translations into English'), +(804, 'Tanks (Military science)'), +(805, 'Architecture -- Early works to 1800'), +(806, 'Germany -- History -- 1871-1918 -- Caricatures and cartoons'), +(807, 'Locomotives -- History -- Juvenile fiction'), +(808, 'Bible. Chronicles, 1st'), +(809, 'Victoria, Queen of Great Britain, 1819-1901 -- Anniversaries, etc.'), +(810, 'Fables, English'), +(811, 'Sealing ships -- Fiction'), +(812, 'Adolescence'), +(813, 'Literary curiosa'), +(814, 'Science'), +(815, 'Newfoundland and Labrador -- Description and travel'), +(816, 'Buddhism -- Relations -- Christianity'), +(817, 'Weeds -- Seeds'), +(818, 'Madrid (Spain) -- Social life and customs -- Fiction'), +(819, 'Voyages around the world'), +(820, 'Operations, Surgical'), +(821, 'Austrian fiction -- Translations into Finnish'), +(822, 'Indians of North America -- Great Plains'), +(823, 'Frogs'), +(824, 'Criminals -- France'), +(825, 'Acadians -- Poetry'), +(826, 'Thailand -- History -- 1782-1945 -- Fiction'), +(827, 'Reformation'), +(828, 'United States -- Social life and customs -- 20th century -- Fiction'), +(829, 'Hydrotherapy'), +(830, 'Phrenology'), +(831, 'Robots -- Fiction'), +(832, 'Dancers -- Fiction'), +(833, 'Constitutional amendments -- United States'), +(834, 'Private investigators -- England -- Fiction'), +(835, 'Race relations -- Fiction'), +(836, 'Twain, Mark, 1835-1910'), +(837, 'Legends -- Hawaii'), +(838, 'Clergy -- France'), +(839, 'Exiles -- Fiction'), +(840, 'Napoleon I, Emperor of the French, 1769-1821'), +(841, 'Tales -- Germany'), +(842, 'Science fiction, American -- Periodicals'), +(843, 'Americans -- England -- Fiction'), +(844, 'Society for Pure English'), +(845, 'Sports stories'), +(846, 'Bumblebees -- Juvenile fiction'), +(847, 'Triangles (Interpersonal relations) -- Fiction'), +(848, 'Women -- France'), +(849, 'Train, George Francis, 1829-1904'), +(850, 'Conrad, Joseph, 1857-1924 -- Travel'), +(851, 'Judaism'), +(852, 'E. & F. N. Spon -- Catalogs'), +(853, 'Pioneers -- United States -- Biography -- Anecdotes'), +(854, 'Franklin, Benjamin, 1706-1790'), +(855, 'Dakota art'), +(856, 'London (England) -- Description and travel'), +(857, 'Indians of North America -- Dwellings'), +(858, 'Deich, L. G. (Lev Grigor\'evich), 1855-1941'), +(859, 'Children\'s poetry'), +(860, 'Italian fiction -- 19th century'), +(861, 'Children -- Conduct of life -- Juvenile poetry'), +(862, 'Art schools -- Juvenile fiction'), +(863, 'Victoria, Queen of Great Britain, 1819-1901 -- Anniversaries, etc. -- Poetry'), +(864, 'Fury (Ship)'), +(865, 'Waldenses'), +(866, 'World War, 1914-1918 -- Technology'), +(867, 'Russian poetry -- Translations into English'), +(868, 'American drama -- 19th century'), +(869, 'Indians of North America'), +(870, 'Short stories, German -- Translations into English'), +(871, 'Natural history'), +(872, 'Violin and piano music'), +(873, 'France. Armée. Légion étrangère'), +(874, 'Hawthorne, Nathaniel, 1804-1864'), +(875, 'Youth and death -- Fiction'), +(876, 'Manatee County (Fla.)'), +(877, 'Mackinac Island (Mich. : Island) -- Fiction'), +(878, 'Wallin, Georg August'), +(879, 'Folklore -- Hawaii'), +(880, 'Portuguese -- India -- Fiction'), +(881, 'Military chaplains -- Free Church of Scotland'), +(882, 'Danish poetry -- Translations into English'), +(883, 'American literature -- Periodicals'), +(884, 'Epic poetry, Italian -- Adaptations'), +(885, 'Voyages and travels'), +(886, 'School management and organization -- Portugal'), +(887, 'Mongols -- History'), +(888, 'Opium abuse -- Fiction'), +(889, 'Definite integrals'), +(890, 'Russo-Swedish War, 1808-1809 -- Fiction'), +(891, 'Animals -- Australia -- Juvenile fiction'), +(892, 'Italian fiction -- 20th century'), +(893, 'United States -- History -- French and Indian War, 1754-1763 -- Fiction'), +(894, 'Children -- Panama -- Juvenile fiction'), +(895, 'Investments'), +(896, 'Birds in literature'), +(897, 'Hymns, Greek -- Translations into English'), +(898, 'Bicycle touring -- Asia'), +(899, 'Art -- Periodicals'), +(900, 'Fairy tales -- Germany'), +(901, 'French drama -- 17th century -- Translations into English'), +(902, 'Philosophy, German'), +(903, 'Vegetable gardening'), +(904, 'Crime -- England -- London'), +(905, 'Princes -- Fiction'), +(906, 'Germany, Northern -- Fiction'), +(907, 'Comedies'), +(908, 'Cooking (Soybeans)'), +(909, 'String quartets -- Scores'), +(910, 'Germans -- United States'), +(911, 'Child development'), +(912, 'Tarkington, Booth, 1869-1946'), +(913, 'African American clergy -- Education'), +(914, 'New York (State) -- Social life and customs -- Fiction'), +(915, 'Artists -- Italy -- Biography'), +(916, 'Devil\'s Lake (Wis.)'), +(917, 'School principals -- Fiction'), +(918, 'Authors -- Fiction'), +(919, 'Canadian poetry -- 20th century'), +(920, 'France -- Politics and government -- 1789-1900'), +(921, 'Ballads, English -- Texts'), +(922, 'Radiolaria'), +(923, 'Ostrogoths -- Kings and rulers -- Biography'), +(924, 'History -- Philosophy'), +(925, 'Florida -- Description and travel'), +(926, 'Kapodistrias, Iōannēs Antōniou, 1776-1831'), +(927, 'Aeronautics'), +(928, 'Fantasy fiction -- Periodicals'), +(929, 'Astronautics -- United States'), +(930, 'Frontier and pioneer life -- West (U.S.)'), +(931, 'Assyria -- History'), +(932, 'World War, 1914-1918 -- Germany'), +(933, 'Grand Junction Railway Company (Great Britain) -- Guidebooks'), +(934, 'Chekhov, Anton Pavlovich, 1860-1904 -- Translations into English'), +(935, 'Authorship'), +(936, 'Lake District (England) -- Pictorial works'), +(937, 'Society of Friends -- Apologetic works'), +(938, 'Lincoln, Abraham, 1809-1865 -- Childhood and youth'), +(939, 'Witchcraft -- New England'), +(940, 'French language -- Slang'), +(941, 'Madrid (Spain) -- Fiction'), +(942, 'Christian fiction'), +(943, 'Lincoln, Abraham, 1809-1865 -- Drama'), +(944, 'Political ethics -- China'), +(945, 'Bible. Old Testament -- Textbooks'), +(946, 'World War, 1914-1918 -- Campaigns'), +(947, 'Chinese fiction -- Tang dynasty, 618-907'), +(948, 'Knitting -- Patterns'), +(949, 'Christmas'), +(950, 'Intrenchments'), +(951, 'Chemistry -- Early works to 1800'), +(952, 'Postage stamps'), +(953, 'Mayflower (Ship)'), +(954, 'Working class women -- France -- Fiction'), +(955, 'Great Britain. Army. Royal Irish Rifles. Battalion, 11th -- History'), +(956, 'Bible. Old Testament -- Biography -- Juvenile literature'), +(957, 'Autobiographical fiction'), +(958, 'Church history'), +(959, 'Greece -- History -- Peloponnesian War, 431-404 B.C. -- Drama'), +(960, 'Flanders -- History -- Fiction'), +(961, 'Paris (France) -- History -- Capitulation, 1814 -- Personal narratives'), +(962, 'El Dorado'), +(963, 'Subscription libraries -- England -- London'), +(964, 'Dejah Thoris (Fictitious character) -- Fiction'), +(965, 'Dialogues'), +(966, 'Soldiers -- France -- Fiction'), +(967, 'Finnish fiction -- Collections'), +(968, 'Yorkshire (England) -- Poetry'), +(969, 'Great Britain -- History -- Lancaster and York, 1399-1485 -- Fiction'), +(970, 'Gaul -- History -- Gallic Wars, 58-51 B.C.'), +(971, 'Siemens, Werner von, 1816-1892'), +(972, 'Crime -- Fiction'), +(973, 'Education'), +(974, 'Merchants -- Fiction'), +(975, 'Stratford-upon-Avon (England) -- Pictorial works'), +(976, 'Nala (Hindu mythology) -- Poetry'), +(977, 'Commercial law -- United States'), +(978, 'Nieces -- Fiction'), +(979, 'Relics'), +(980, 'Mérimée, Prosper, 1803-1870 -- Correspondence'), +(981, 'Princes -- Juvenile fiction'), +(982, 'Endocrinology'), +(983, 'Japan -- Civilization'), +(984, 'Biographical fiction'), +(985, 'Children of the rich -- Juvenile fiction'), +(986, 'Nonsense verses, English'), +(987, 'Brazil -- Fiction'), +(988, 'Greek literature, Modern'), +(989, 'America -- Early accounts to 1600'), +(990, 'United States. Army. Ohio Infantry Regiment, 123rd (1862-1865)'), +(991, 'Mineral waters -- Sweden'), +(992, 'Jesuits -- Missions'), +(993, 'Yellowstone National Park -- Description and travel'), +(994, 'American poetry -- 20th century'), +(995, 'Cuba -- History'), +(996, 'Guilt -- Fiction'), +(997, 'Married women -- Drama'), +(998, 'Ocean travel -- Fiction'), +(999, 'Italy -- History -- 1815-1870'), +(1000, 'Asbestos'), +(1001, 'Uncles -- Juvenile fiction'), +(1002, 'Boy Scouts -- Juvenile fiction'), +(1003, 'Chinese fiction -- Qing dynasty, 1644-1912'), +(1004, 'World War, 1939-1945 -- Juvenile fiction'), +(1005, 'Gas -- Electric ignition'), +(1006, 'Scientists -- Juvenile fiction'), +(1007, 'Fairy tales'), +(1008, 'Beaumarchais, Pierre Augustin Caron de, 1732-1799'), +(1009, 'Presidents -- United States -- Biography'), +(1010, 'Christian poetry'), +(1011, 'Lucian, of Samosata -- Translations into English'), +(1012, 'Communism -- Finland'), +(1013, 'Columbia River'), +(1014, 'Russia -- Fiction'), +(1015, 'Yakama Indians -- Government relations'), +(1016, 'Crocheting -- Patterns'), +(1017, 'United States -- Economic conditions -- To 1865'), +(1018, 'Klondike River Valley (Yukon) -- Gold discoveries -- Juvenile fiction'), +(1019, 'Readers'), +(1020, 'Africa, West -- Fiction'), +(1021, 'Geological Survey (U.S.) -- Juvenile fiction'), +(1022, 'Lifesaving -- Juvenile fiction'), +(1023, 'Africa -- Juvenile fiction'), +(1024, 'Gold mines and mining'), +(1025, 'British -- India -- Juvenile fiction'), +(1026, 'Quotations'), +(1027, 'Women and literature -- England -- History -- 16th century'), +(1028, 'American fiction'), +(1029, 'Moon -- Fiction'), +(1030, 'Papermaking'), +(1031, 'Chesterton, G. K. (Gilbert Keith), 1874-1936 -- Criticism and interpretation'), +(1032, 'French wit and humor'), +(1033, 'Hotels, motels, etc. -- Fiction'), +(1034, 'Winthrop, John, 1588-1649 -- Poetry'), +(1035, 'United States -- Politics and government -- 1913-1921'), +(1036, 'Architecture -- Italy -- Venice'), +(1037, 'Rome -- History -- Empire, 30 B.C.-284 A.D.'), +(1038, 'Pawnee Indians -- Fiction'), +(1039, 'Circumcision'), +(1040, 'Northumberland (England) -- Fiction'), +(1041, 'Human genetics'), +(1042, 'Freethinker'), +(1043, 'Missouri -- Fiction'), +(1044, 'Mathematics'), +(1045, 'Rabbits -- Juvenile fiction'), +(1046, 'Hugo, Victor, 1802-1885 -- Travel -- France'), +(1047, 'Fiction -- History and criticism'), +(1048, 'Sausages'), +(1049, 'Indians -- Languages'), +(1050, 'Afghan Wars -- Juvenile fiction'), +(1051, 'Slaves -- Fiction'), +(1052, 'Ladybugs -- Juvenile fiction'), +(1053, 'Books -- Reviews -- Periodicals'), +(1054, 'Songs, English -- Texts'), +(1055, 'Motley, John Lothrop, 1814-1877'), +(1056, 'World War, 1914-1918 -- Regimental histories -- Canada'), +(1057, 'Lincoln, Abraham, 1809-1865 -- Religion'), +(1058, 'Italian fiction -- Translations into English'), +(1059, 'Folk songs, English'), +(1060, 'Trials (Breach of promise) -- Fiction'), +(1061, 'Psychological fiction'), +(1062, 'Steam-boilers -- Handbooks, manuals, etc.'), +(1063, 'Children\'s literature'), +(1064, 'World War, 1939-1945 -- Aerial operations -- Juvenile fiction'), +(1065, 'Boston terrier'), +(1066, 'Uighur (Turkic people)'), +(1067, 'Hotels -- California -- San Francisco'), +(1068, 'Women prophets -- Fiction'), +(1069, 'Istanbul (Turkey) -- Pictorial works'), +(1070, 'Fur trade -- Canada'), +(1071, 'Mormons -- Fiction'), +(1072, 'Social sciences'), +(1073, 'Luther, Martin, 1483-1546'), +(1074, 'World War, 1914-1918 -- Campaigns -- Turkey -- Gallipoli Peninsula'), +(1075, 'East Asia'), +(1076, 'Best books -- Great Britain'), +(1077, 'Frontier and pioneer life -- Texas'), +(1078, 'Philosophy, Chinese -- Early works to 1800'), +(1079, 'London (England) -- Fiction'), +(1080, 'Bildungsromans'), +(1081, 'Encyclopedias and dictionaries'), +(1082, 'Hell -- Poetry'), +(1083, 'Gold mines and mining -- Australia -- Western Australia'), +(1084, 'Women -- Humor'), +(1085, 'Poultry -- Breeding'), +(1086, 'Santa Fe (Argentina : Province) -- History -- Fiction'), +(1087, 'Stanton, Elizabeth Cady, 1815-1902'), +(1088, 'English drama'), +(1089, 'Apparitions -- Early works to 1800'), +(1090, 'Darcy, Lord (Fictitious character) -- Fiction'), +(1091, 'First aid in illness and injury'), +(1092, 'Martin, Homer Dodge, 1836-1897'), +(1093, 'Great Britain -- History -- Richard II, 1377-1399 -- Fiction'), +(1094, 'Nature -- Juvenile literature'), +(1095, 'Foxtrots'), +(1096, 'Natural history -- Juvenile fiction'), +(1097, 'Thackeray, William Makepeace, 1811-1863 -- Travel -- Middle East'), +(1098, 'History -- Study and teaching'), +(1099, 'Bank employees -- England -- London -- Humor'), +(1100, 'Telegraphers -- Juvenile fiction'), +(1101, 'Discoveries in geography -- Fiction'), +(1102, 'Bunker Hill, Battle of, Boston, Mass., 1775 -- Poetry'), +(1103, 'German fiction -- Translations into Finnish'), +(1104, 'Temperance -- Poetry'), +(1105, 'Ballroom dancing'), +(1106, 'Krakatoa (Indonesia) -- Juvenile fiction'), +(1107, 'World War, 1914-1918 -- Great Britain -- Fiction'), +(1108, 'Asia -- Fiction'), +(1109, 'Human beings -- Origin'), +(1110, 'United States -- Description and travel'), +(1111, 'Characters and characteristics in literature -- Drama'), +(1112, 'Short stories, French -- Translations into English'), +(1113, 'Folklore -- Arab countries'), +(1114, 'Vishnu (Hindu deity)'), +(1115, 'Chautauqua Institution -- Periodicals'), +(1116, 'Great Britain -- History -- Victoria, 1837-1901 -- Biography'), +(1117, 'France -- Description and travel'), +(1118, 'Sea poetry'), +(1119, 'Gualtieri di Brienne, duca di Atene, -1356 -- Fiction'), +(1120, 'Outdoor life -- Juvenile fiction'), +(1121, 'Bible. Chronicles, 2nd'), +(1122, 'Peace'), +(1123, 'Country life -- Juvenile fiction'), +(1124, 'Frontier and pioneer life -- Rocky Mountains'), +(1125, 'Squirrels -- Juvenile literature'), +(1126, 'Authors, Scottish -- 19th century -- Diaries'), +(1127, 'France -- History -- Louis XIV, 1643-1715 -- Fiction'), +(1128, 'Bolivia -- Description and travel'), +(1129, 'Dakota Indians -- Fiction'), +(1130, 'Christian life'), +(1131, 'Arlington County (Va.) -- Boundaries'), +(1132, 'Mice -- Juvenile fiction'), +(1133, 'Salem (Mass.) -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(1134, 'Immaculate Conception'), +(1135, 'Church history -- Primitive and early church, ca. 30-600 -- Fiction'), +(1136, 'English poetry -- Irish authors'), +(1137, 'Vicksburg National Military Park (Miss.)'), +(1138, 'Cox, James M. (James Middleton), 1870-1957'), +(1139, 'Sieges'), +(1140, 'Bible. Corinthians, 2nd -- Criticism, interpretation, etc.'), +(1141, 'Fables'), +(1142, 'Legends -- France'), +(1143, 'Cambridge University Press -- History'), +(1144, 'Adirondack Mountains (N.Y.)'), +(1145, 'Children\'s stories, Scandinavian -- Translations into English'), +(1146, 'French -- North America -- Fiction'), +(1147, 'Pleasure'), +(1148, 'Reformers'), +(1149, 'United States. Army. Massachusetts Infantry Regiment, 17th (1861-1865)'), +(1150, 'Castles -- France'), +(1151, 'Psychology'), +(1152, 'Short stories, French -- Translations into Finnish'), +(1153, 'Medicinal plants -- India'), +(1154, 'Eddas -- Translations into English'), +(1155, 'Family life -- Fiction'), +(1156, 'Functions, Abelian'), +(1157, 'French language -- Pronunciation'), +(1158, 'Voyages around the world -- Fiction'), +(1159, 'Hermits -- Fiction'), +(1160, 'Trafalgar, Battle of, 1805 -- Fiction'), +(1161, 'Great Britain -- Antiquities, Roman'), +(1162, 'Titanic (Steamship)'), +(1163, 'English language -- Dictionaries -- Humor'), +(1164, 'Norwegian fiction -- Translations into Dutch'), +(1165, 'Paris (France) -- Social life and customs -- 19th century -- Fiction'), +(1166, 'Women murderers -- Fiction'), +(1167, 'Netherlands -- History -- Eighty Years\' War, 1568-1648 -- Fiction'), +(1168, 'France -- History -- Sources'), +(1169, 'France -- History -- 1789-1900'), +(1170, 'Kassala (Sudan : Province) -- Description and travel'), +(1171, 'Finnish poetry'), +(1172, 'American literature -- 19th century -- History and criticism'), +(1173, 'Milton, John, 1608-1674'), +(1174, 'Antislavery movements -- United States'), +(1175, 'Minnesota -- History -- To 1858'), +(1176, 'World War, 1914-1918 -- Campaigns -- Palestine'), +(1177, 'Sherman, William T. (William Tecumseh), 1820-1891'), +(1178, 'Technology -- England -- 19th century'), +(1179, 'Postal service -- Great Britain -- History'), +(1180, 'Franco-Prussian War, 1870-1871 -- Fiction'), +(1181, 'Overland journeys to the Pacific'), +(1182, 'Travelers -- Periodicals'), +(1183, 'Paris (France) -- Intellectual life -- 19th century'), +(1184, 'Reeve, Henry, 1813-1895'), +(1185, 'Bible'), +(1186, 'Pioneer (Space probes)'), +(1187, 'United States -- Juvenile fiction'), +(1188, 'World War, 1914-1918 -- Campaigns -- Turkey and the Near East'), +(1189, 'School sports -- Juvenile fiction'), +(1190, 'Farm life'), +(1191, 'Free thought'), +(1192, 'Germany -- History -- Frederick I, 1152-1190 -- Fiction'), +(1193, 'Arthur, King -- Legends'), +(1194, 'Physics'), +(1195, 'Authors, American -- 20th century -- Biography'), +(1196, 'African American men -- Fiction'), +(1197, 'Argentina -- Social conditions'), +(1198, 'Raleigh, Walter, Sir, 1552?-1618'), +(1199, 'Prospecting'), +(1200, 'Japan -- History -- Kamakura period, 1185-1333 -- Fiction'), +(1201, 'English literature'), +(1202, 'Cossacks -- Poland -- Fiction'), +(1203, 'Pontiac\'s Conspiracy, 1763-1765 -- Fiction'), +(1204, 'George III, King of Great Britain, 1738-1820'), +(1205, 'Zoology -- Pre-Linnaean works'), +(1206, 'Christian Science'), +(1207, 'South Africa -- Fiction'), +(1208, 'Welsh poetry -- Translations into English'), +(1209, 'Children\'s poetry, American'), +(1210, 'Behavior'), +(1211, 'Blas, Gil (Fictitious character) -- Fiction'), +(1212, 'Short stories, German'), +(1213, 'Vegetable gardening -- Northwest, Pacific'), +(1214, 'Mice'), +(1215, 'Evolution (Biology) -- History'), +(1216, 'Natural history -- Outdoor books'), +(1217, 'Severn Valley Railway'), +(1218, 'Horses -- Age'), +(1219, 'Canadian fiction'), +(1220, 'Sussex (England) -- Fiction'), +(1221, 'Ethics -- Fiction'), +(1222, 'North America -- History'), +(1223, 'Folklore'), +(1224, 'River life -- Fiction'), +(1225, 'Villages -- France -- Fiction'), +(1226, 'Transvaal (South Africa) -- Fiction'), +(1227, 'American periodicals'), +(1228, 'India -- Fiction'), +(1229, 'Shipwreck survival -- Juvenile fiction'), +(1230, 'Ferns'), +(1231, 'Cabinet officers -- Great Britain -- Diaries'), +(1232, 'Panama Canal (Panama)'), +(1233, 'Church history -- 11th century'), +(1234, 'French drama -- Translations into English'), +(1235, 'Toys -- Juvenile fiction'), +(1236, 'Fairies'), +(1237, 'Canadian poetry -- 19th century'), +(1238, 'Political fiction'), +(1239, 'Railroad stories'), +(1240, 'Marmontel, Jean François, 1723-1799'), +(1241, 'Indians of North America -- Iowa'), +(1242, 'Villages -- Juvenile fiction'), +(1243, 'Brest-Litovsk Peace Conference (1917-1918)'), +(1244, 'Novenas'), +(1245, 'Ghosts'), +(1246, 'Rescues -- Juvenile fiction'), +(1247, 'France -- History -- Louis XIV, 1643-1715'), +(1248, 'Pets -- Fiction'), +(1249, 'Olav II, King of Norway, 995-1030 -- Fiction'), +(1250, 'World War, 1914-1918 -- Juvenile literature'), +(1251, 'Juvenile courts -- New York (State) -- New York'), +(1252, 'Paris (France) -- Pictorial works'), +(1253, 'Glacier National Park (Mont.) -- Description and travel'), +(1254, 'Zoological illustration -- Periodicals'), +(1255, 'New York (State) -- History -- Colonial period, ca. 1600-1775 -- Sources'), +(1256, 'Authors, American -- Homes and haunts -- West (U.S.)'), +(1257, 'Best friends -- Juvenile fiction'), +(1258, 'Art -- Juvenile literature'), +(1259, 'Frontier and pioneer life -- Juvenile fiction'), +(1260, 'Dacquin, Jeanne Françoise, 1811-1895'), +(1261, 'Soul -- Early works to 1800'), +(1262, 'Extinct cities -- Fiction'), +(1263, 'Birds -- United States -- Pictorial works'), +(1264, 'Russia -- History -- Rebellion of Pugachev, 1773-1775 -- Fiction'), +(1265, 'Mentally ill -- Commitment and detention -- Illinois -- History -- 19th century'), +(1266, 'War -- Juvenile fiction'), +(1267, 'Stamp collecting'), +(1268, 'Vikings'), +(1269, 'Boston (Dance)'), +(1270, 'Cost and standard of living -- Massachusetts -- Fall River'), +(1271, 'Adams, Abigail, 1744-1818'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(1272, 'Bank robberies -- United States'), +(1273, 'Longhi, Pietro, 1702-1785'), +(1274, 'Nile River'), +(1275, 'Fantasy drama'), +(1276, 'United States -- Politics and government -- Sources'), +(1277, 'Wreyland (England)'), +(1278, 'Alphabet'), +(1279, 'Devon (England) -- Fiction'), +(1280, 'Inventors -- Fiction'), +(1281, 'English drama -- 19th century'), +(1282, 'Litterateurs'), +(1283, 'Exmoor (England) -- Fiction'), +(1284, 'Christian education -- Periodicals'), +(1285, 'Sand, George, 1804-1876'), +(1286, 'Burglars -- Fiction'), +(1287, 'Horses -- Juvenile fiction'), +(1288, 'Mogul Empire -- History -- 16th century'), +(1289, 'Stuart, Arabella, Lady, 1575-1615 -- Fiction'), +(1290, 'Singing'), +(1291, 'Republican Party (U.S. : 1854- ) -- History'), +(1292, 'Byzantine Empire -- History -- To 527'), +(1293, 'United States -- History -- Revolution, 1775-1783 -- Fiction'), +(1294, 'Geography -- Pictorial works -- Periodicals'), +(1295, 'Birds of paradise (Birds) -- Juvenile literature'), +(1296, 'Iran -- History'), +(1297, 'East and West -- Fiction'), +(1298, 'Tragedies'), +(1299, 'Authors, English -- 20th century -- Biography'), +(1300, 'Twain, Mark, 1835-1910 -- Correspondence'), +(1301, 'French poetry -- Translations into Finnish'), +(1302, 'Moral education'), +(1303, 'Hymns -- History and criticism'), +(1304, 'Folklore -- Japan'), +(1305, 'Folk songs -- United States'), +(1306, 'Krupp, Bertha, 1886-1957 -- Fiction'), +(1307, 'Switzerland -- Description and travel'), +(1308, 'Ponies'), +(1309, 'Boarding schools -- England -- Fiction'), +(1310, 'Fielding, Ruth (Fictitious character) -- Juvenile fiction'), +(1311, 'South African War, 1899-1902 -- Personal narratives'), +(1312, 'Free trade'), +(1313, 'Murder -- Juvenile fiction'), +(1314, 'Rome (Italy) -- Fiction'), +(1315, 'Evolution'), +(1316, 'Poland -- Fiction'), +(1317, 'Botany -- Philippines'), +(1318, 'Couperus, Louis, 1863-1923 -- Travel -- Greece'), +(1319, 'Spy stories'), +(1320, 'Sulawesi (Indonesia) -- History -- Fiction'), +(1321, 'Touraine (France) -- Guidebooks'), +(1322, 'Rome (Italy) -- Social life and customs -- 19th century -- Fiction'), +(1323, 'Trees -- Juvenile literature'), +(1324, 'Antinoüs, approximately 110-130 -- Fiction'), +(1325, 'Ciphers -- Juvenile literature'), +(1326, 'Fourth of July orations'), +(1327, 'Faust, -approximately 1540'), +(1328, 'Industrial arts -- Biography'), +(1329, 'Thieves -- Fiction'), +(1330, 'Revenge -- Juvenile fiction'), +(1331, 'Motion pictures -- Psychological aspects'), +(1332, 'Africa, West -- Description and travel'), +(1333, 'Birds -- North America'), +(1334, 'Missions -- Philippines'), +(1335, 'Murder -- Fiction'), +(1336, 'Crusoe, Robinson (Fictitious character) -- Fiction'), +(1337, 'Gastronomy'), +(1338, 'Courtly love -- Poetry'), +(1339, 'Solomon Islands -- Description and travel'), +(1340, 'Adams, John Quincy, 1767-1848'), +(1341, 'Eskildz, Niels P. L., 1836-'), +(1342, 'Cooking (Oysters)'), +(1343, 'Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838'), +(1344, 'Sinn Fein'), +(1345, 'Arsenic -- Toxicology'), +(1346, 'Deafblind women -- United States -- Biography'), +(1347, 'United States -- Social conditions -- 1865-1918'), +(1348, 'Greek fiction, Modern'), +(1349, 'Hamilton, Alexander, 1757-1804 -- Fiction'), +(1350, 'New England -- Politics and government -- Fiction'), +(1351, 'Young men -- Fiction'), +(1352, 'Architecture'), +(1353, 'Spanish fiction -- 19th century'), +(1354, 'Burma -- Description and travel'), +(1355, 'Landscape painting, American'), +(1356, 'Schopenhauer, Arthur, 1788-1860'), +(1357, 'Indians of North America -- Fiction'), +(1358, 'Manitoba -- Fiction'), +(1359, 'Military art and science'), +(1360, 'Peninsular War, 1807-1814 -- Personal narratives, British'), +(1361, 'Soldiers -- Juvenile fiction'), +(1362, 'Middle class -- Germany -- Fiction'), +(1363, 'France -- Relations -- Germany'), +(1364, 'Life insurance -- Fiction'), +(1365, 'Sheridan, Philip Henry, 1831-1888'), +(1366, 'Liverpool (England) -- History'), +(1367, 'War poetry'), +(1368, 'History, Ancient'), +(1369, 'Cooking'), +(1370, 'Netherlands -- Description and travel -- Early works to 1800'), +(1371, 'United States -- History -- Revolution, 1775-1783 -- Personal narratives'), +(1372, 'Confectionery'), +(1373, 'Ghost stories, English'), +(1374, 'Exposition universelle de 1889 (Paris, France)'), +(1375, 'Women -- Conduct of life -- Fiction'), +(1376, 'Camping -- Fiction'), +(1377, 'Russian fiction -- Translations into English'), +(1378, 'Edmonton (London, England) -- Drama'), +(1379, 'Folk music -- United States'), +(1380, 'Inheritance and succession -- Fiction'), +(1381, 'Prehistoric peoples'), +(1382, 'Mexico -- History -- Conquest, 1519-1540'), +(1383, 'Pastoral fiction'), +(1384, 'Spanish fiction -- 20th century'), +(1385, 'Nucleotide sequence'), +(1386, 'Bourrienne, Louis Antoine Fauvelet de, 1769-1834'), +(1387, 'Racer snake'), +(1388, 'Fathers and daughters -- Juvenile fiction'), +(1389, 'Masturbation'), +(1390, 'World War, 1914-1918 -- Prisoners and prisons, German'), +(1391, 'Ship captains -- Fiction'), +(1392, 'Scotland -- History'), +(1393, 'Oratorio'), +(1394, 'Labrador (N.L.) -- Discovery and exploration'), +(1395, 'Music appreciation'), +(1396, 'History -- Popular works'), +(1397, 'Religious fiction'), +(1398, 'Great Britain -- History, Naval -- 19th century -- Fiction'), +(1399, 'Russia -- Politics and government -- 1801-1917'), +(1400, 'Clans -- Scotland -- Highlands -- History'), +(1401, 'Hebrew wit and humor -- History and criticism'), +(1402, 'Wales -- Description and travel'), +(1403, 'Reynolds, Joshua, Sir, 1723-1792'), +(1404, 'Duchesne, Philippine, Saint, 1769-1852'), +(1405, 'Halloween'), +(1406, 'Edison, Thomas A. (Thomas Alva), 1847-1931'), +(1407, 'Political science -- Handbooks, manuals, etc.'), +(1408, 'Europe -- Description and travel'), +(1409, 'Emergency management -- United States'), +(1410, 'Dinsmore, Elsie (Fictitious character) -- Juvenile fiction'), +(1411, 'American fiction -- Translations into French'), +(1412, 'Shakespeare, William, 1564-1616 -- Translations into French'), +(1413, 'Gardening'), +(1414, 'Erotic literature -- Early works to 1800'), +(1415, 'Amusements'), +(1416, 'Ortigão, Ramalho, 1836-1915'), +(1417, 'Midas (Legendary character) -- Drama'), +(1418, 'Louis XI, King of France, 1423-1483 -- Fiction'), +(1419, 'Authors, French -- 18th century -- Biography'), +(1420, 'Whist'), +(1421, 'Anthropometry -- Borneo'), +(1422, 'Folklore -- Hungary'), +(1423, 'Animals -- Juvenile literature'), +(1424, 'Tukuarika Indians'), +(1425, 'Murder -- Investigation -- Fiction'), +(1426, 'United States -- Social life and customs -- Fiction'), +(1427, 'Baptism'), +(1428, 'Ireland -- Politics and government'), +(1429, 'United States -- History -- Revolution, 1775-1783 -- Causes'), +(1430, 'Cats -- Juvenile fiction'), +(1431, 'India -- History -- Sepoy Rebellion, 1857-1858'), +(1432, 'Musicians -- Fiction'), +(1433, 'Generals -- United States -- Biography'), +(1434, 'Cheerfulness -- Juvenile fiction'), +(1435, 'Women -- Conduct of life'), +(1436, 'Iowa -- Politics and government'), +(1437, 'Ethics -- China'), +(1438, 'Brazing'), +(1439, 'Southern States -- Social life and customs -- Fiction'), +(1440, 'Mormons'), +(1441, 'Cuba -- Economic conditions'), +(1442, 'Vikings -- Fiction'), +(1443, 'Meteorites'), +(1444, 'Religions'), +(1445, 'Yorkshire (England) -- Fiction'), +(1446, 'Private investigators -- England -- London -- Fiction'), +(1447, 'Sailors -- Juvenile fiction'), +(1448, 'British Antarctic Expedition (1907-1909)'), +(1449, 'Daguerreotype'), +(1450, 'Railroads -- United States'), +(1451, 'Marriage'), +(1452, 'South Carolina -- Fiction'), +(1453, 'Chautauqua Literary and Scientific Circle -- Periodicals'), +(1454, 'Tapestry'), +(1455, 'Brazilian drama'), +(1456, 'Swift, Tom (Fictitious character) -- Juvenile fiction'), +(1457, 'Lincoln, Abraham, 1809-1865 -- Fiction'), +(1458, 'Coaching (Transportation) -- France'), +(1459, 'Johns Hopkins University'), +(1460, 'English literature -- 20th century -- History and criticism'), +(1461, 'Brazil -- Politics and government -- 1889-1930'), +(1462, 'Albania -- Description and travel'), +(1463, 'Husband and wife -- Fiction'), +(1464, 'Wagner, Richard, 1813-1883'), +(1465, 'Seneca Indians -- Missions'), +(1466, 'Children\'s stories, New Zealand'), +(1467, 'Molière, 1622-1673 -- Translations into English'), +(1468, 'Immigrants -- Fiction'), +(1469, 'Canada -- History -- Rebellion, 1837-1838'), +(1470, 'Manners and customs'), +(1471, 'East Indians -- England -- Fiction'), +(1472, 'Authors, Scottish -- 18th century -- Biography'), +(1473, 'Shawnee Indians -- Kings and rulers -- Biography'), +(1474, 'Theology -- Sermons'), +(1475, 'France -- History -- Capetians, 987-1328 -- Fiction'), +(1476, 'United States. Supreme Court'), +(1477, 'Swindlers and swindling -- Juvenile fiction'), +(1478, 'Xunzi, 340-245 B.C. Xunzi'), +(1479, 'Zines'), +(1480, 'Cleek, Hamilton (Fictitious character) -- Fiction'), +(1481, 'English language -- Dictionaries'), +(1482, 'Thought and thinking'), +(1483, 'Utopian fiction'), +(1484, 'Georgia -- Antiquities'), +(1485, 'Women'), +(1486, 'Nut trees -- Periodicals'), +(1487, 'London (England) -- History -- To 1500'), +(1488, 'Astronomy -- Juvenile literature'), +(1489, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories'), +(1490, 'Rogues and vagabonds -- England -- Fiction'), +(1491, 'Napoleon I, Emperor of the French, 1769-1821 -- Death and burial'), +(1492, 'Great Britain -- History -- Stephen, 1135-1154'), +(1493, 'Philosophy, Chinese'), +(1494, 'Colorado -- History -- To 1876 -- Juvenile fiction'), +(1495, 'Soldiers -- West (U.S.) -- Fiction'), +(1496, 'Bird watching'), +(1497, 'Blacksmithing -- History'), +(1498, 'Netherlands -- History'), +(1499, 'Walnut'), +(1500, 'Ambition -- Fiction'), +(1501, 'Knightsbridge (London, England)'), +(1502, 'Wye, River (Wales and England) -- Description and travel'), +(1503, 'Austen, Jane, 1775-1817'), +(1504, 'Ranchers -- Juvenile fiction'), +(1505, 'Sikh War, 1845-1846 -- Personal narratives, British'), +(1506, 'United States -- History -- Civil War, 1861-1865 -- Songs and music'), +(1507, 'Spiritual warfare -- Fiction'), +(1508, 'Masterson, Bat, 1853-1921 -- Fiction'), +(1509, 'Immortality'), +(1510, 'Katipunan (Philippines) -- Drama'), +(1511, 'Terrorism'), +(1512, 'Great Britain -- Defenses'), +(1513, 'Shipwrecks -- Australia -- New South Wales'), +(1514, 'Spain -- Description and travel'), +(1515, 'Ku Klux Klan (19th century)'), +(1516, 'American fiction -- 20th century'), +(1517, 'United States -- History -- Civil War, 1861-1865 -- Anecdotes'), +(1518, 'German poetry -- 18th century'), +(1519, 'Gwyn, Nell, 1650-1687 -- Fiction'), +(1520, 'Clothing and dress'), +(1521, 'Prehistoric peoples -- Europe'), +(1522, 'Colbert, Jean-Baptiste, 1619-1683'), +(1523, 'World War, 1914-1918 -- France -- Juvenile fiction'), +(1524, 'Fan magazines'), +(1525, 'World War, 1914-1918 -- Canada'), +(1526, 'Islands -- Fiction'), +(1527, 'Nature study -- Juvenile literature'), +(1528, 'Browning, Robert, 1812-1889 -- Handbooks, manuals, etc.'), +(1529, 'English fiction -- 18th century'), +(1530, 'Magic tricks -- Handbooks, manuals, etc.'), +(1531, 'Hats'), +(1532, 'Short stories, Hungarian'), +(1533, 'Literary landmarks -- England -- London'), +(1534, 'Yukon -- Fiction'), +(1535, 'Roland (Legendary character) -- Romances'), +(1536, 'France -- History -- Revolution, 1789-1799'), +(1537, 'World War, 1914-1918 -- Chronology'), +(1538, 'Painting -- Technique -- Early works to 1800'), +(1539, 'Children -- Family relationships -- Juvenile fiction'), +(1540, 'Indians of Central America -- Folklore'), +(1541, 'Maine -- Fiction'), +(1542, 'Art objects -- Collectors and collecting'), +(1543, 'Ypres, 3rd Battle of, Ieper, Belgium, 1917'), +(1544, 'Italian fiction'), +(1545, 'Slavs'), +(1546, 'Himalaya Mountains -- Description and travel'), +(1547, 'Small cities -- Juvenile fiction'), +(1548, 'Germany -- History -- Revolution, 1848-1849'), +(1549, 'Missions -- India -- Jammu and Kashmir'), +(1550, 'Mowgli (Fictitious character) -- Fiction'), +(1551, 'Mysticism -- Poetry'), +(1552, 'Danish drama -- Translations into Finnish'), +(1553, 'Formulas, recipes, etc. -- Early works to 1800'), +(1554, 'Commercial law'), +(1555, 'Gold mines and mining -- Fiction'), +(1556, 'Sicily (Italy) -- Religious life and customs'), +(1557, 'Young women'), +(1558, 'Asianists -- Germany -- Biography'), +(1559, 'Mongolia -- Description and travel'), +(1560, 'Games'), +(1561, 'United States -- History -- 1865-1921'), +(1562, 'Kashubian literature -- 19th century'), +(1563, 'Physicians -- Fiction'), +(1564, 'Life on other planets -- Fiction'), +(1565, 'Legends -- England -- Cornwall (County)'), +(1566, 'Diary fiction'), +(1567, 'Staffordshire (England) -- Fiction'), +(1568, 'Ruusbroec, Jan van, 1293-1381'), +(1569, 'Women pioneers -- Fiction'), +(1570, 'Vertebrates -- Mexico'), +(1571, 'Pilot guides -- Newfoundland and Labrador'), +(1572, 'Haggard, H. Rider (Henry Rider), 1856-1925. She -- Parodies, imitations, etc.'), +(1573, 'Lookalikes -- Fiction'), +(1574, 'China -- History -- Tang dynasty, 618-907 -- Fiction'), +(1575, 'Cattle drives -- Fiction'), +(1576, 'Cats'), +(1577, 'Airplanes'), +(1578, 'Finland -- History'), +(1579, 'Social isolation -- Fiction'), +(1580, 'Hosiery'), +(1581, 'Aulnay, Charles de Menou d\', 1604?-1650 -- Fiction'), +(1582, 'Nihilism (Philosophy) -- Fiction'), +(1583, 'Queens -- Great Britain -- Biography'), +(1584, 'Natural history -- Periodicals'), +(1585, 'English fiction -- Translations into Finnish'), +(1586, 'Alaska -- Juvenile fiction'), +(1587, 'Autographs -- United States -- Facsimiles'), +(1588, 'Scottish Gaelic poetry -- Translations into English'), +(1589, 'Latin America -- Description and travel'), +(1590, 'Astronomy -- History'), +(1591, 'Military cadets -- United States -- Biography'), +(1592, 'Shipwreck survival -- Fiction'), +(1593, 'New England -- Periodicals'), +(1594, 'English poetry -- 20th century'), +(1595, 'Avatars (Religion)'), +(1596, 'British -- Canada -- Fiction'), +(1597, 'Copperwork -- Mexico'), +(1598, 'Crete (Greece) -- History -- Insurrection, 1866-1868 -- Fiction'), +(1599, 'Great Britain -- History -- Stephen, 1135-1154 -- Fiction'), +(1600, 'Flags -- Great Britain'), +(1601, 'Khasi (Indic people) -- Folklore'), +(1602, 'Birds -- Juvenile fiction'), +(1603, 'Brewing industry -- Germany -- Berlin -- History'), +(1604, 'Naval art and science'), +(1605, 'French language -- Composition and exercises'), +(1606, 'Short stories, Norwegian -- Translations into Finnish'), +(1607, 'Religious poetry, American'), +(1608, 'Maya calendar'), +(1609, 'New England -- History'), +(1610, 'Bible. Habakkuk'), +(1611, 'Bears -- Fiction'), +(1612, 'Boston (Mass.) -- Fiction'), +(1613, 'Finnish students -- France -- Paris -- History'), +(1614, 'North Pole'), +(1615, 'Zulu (African people) -- Fiction'), +(1616, 'Rationalism'), +(1617, 'Life change events -- Fiction'), +(1618, 'Flags -- United States'), +(1619, 'Women -- Social and moral questions'), +(1620, 'Health resorts -- Minnesota'), +(1621, 'Scientists -- Biography -- Juvenile literature'), +(1622, 'World War, 1914-1918 -- Children -- France -- Drama'), +(1623, 'California -- Description and travel'), +(1624, 'College stories, American'), +(1625, 'Sisters -- Juvenile fiction'), +(1626, 'Bible. Peter, 1st'), +(1627, 'Seri Indians'), +(1628, 'Nuts -- Periodicals'), +(1629, 'Insects -- Pictorial works'), +(1630, 'Milton, John, 1608-1674 -- Knowledge -- Astronomy'), +(1631, 'Boarding schools -- Fiction'), +(1632, 'Huxley, Thomas Henry, 1825-1895'), +(1633, 'Christian pilgrims and pilgrimages -- Fiction'), +(1634, 'Plunkitt, George Washington, 1842-1924'), +(1635, 'Lucian, of Samosata -- Translations into Modern Greek'), +(1636, 'Dogs'), +(1637, 'Folk literature, Finnish'), +(1638, 'Portuguese poetry'), +(1639, 'Anesthetics'), +(1640, 'Butterflies'), +(1641, 'Military hospitals -- Great Britain'), +(1642, 'Bible as literature'), +(1643, 'Indians of North America -- Canada'), +(1644, 'Wilberforce, William, 1759-1833'), +(1645, 'Hungarian poetry'), +(1646, 'Fatherless families -- Juvenile fiction'), +(1647, 'Hip joint -- Dislocation -- Juvenile fiction'), +(1648, 'United States -- Politics and government -- 1775-1783'), +(1649, 'Tanzania -- Description and travel'), +(1650, 'Women -- Social conditions'), +(1651, 'Legends -- Germany'), +(1652, 'Stephenson, George, 1781-1848 -- Juvenile literature'), +(1653, 'Bible. Exodus -- Commentaries'), +(1654, 'Scott, Walter, 1771-1832'), +(1655, 'Friendship -- Juvenile fiction'), +(1656, 'Children -- Books and reading'), +(1657, 'Great Britain -- Foreign relations -- Fiction'), +(1658, 'Guangzhou (China) -- Description and travel'), +(1659, 'Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 -- Translations into English'), +(1660, 'New York (N.Y.) -- Fiction'), +(1661, 'Switzerland -- Fiction'), +(1662, 'Bracciolini, Poggio, 1380-1459'), +(1663, 'Courtship'), +(1664, 'Central America -- Antiquities'), +(1665, 'Great Britain -- History -- Henry IV, 1399-1413 -- Drama'), +(1666, 'Nuremberg Trial of Major German War Criminals, Nuremberg, Germany, 1945-1946'), +(1667, 'Great Britain -- History -- Anglo-Saxon period, 449-1066'), +(1668, 'Space warfare -- Fiction'), +(1669, 'High school students -- Juvenile fiction'), +(1670, 'Indians of North America -- Arizona'), +(1671, 'Newton, Isaac, Sir, 1642-1727'), +(1672, 'World War, 1914-1918 -- United States -- Fiction'), +(1673, 'Voyages and travels -- Periodicals'), +(1674, 'Swedish fiction -- Translations into German'), +(1675, 'Children of the rich -- Drama'), +(1676, 'Polish fiction -- Translations into English'), +(1677, 'Thoma, Ludwig, 1867-1921'), +(1678, 'Hardy, Thomas, 1840-1928'), +(1679, 'Girls -- Conduct of life -- Juvenile fiction'), +(1680, 'Dunstan, Saint, 909-988 -- Juvenile fiction'), +(1681, 'Ambrister, Robert Christie, 1785?-1818'), +(1682, 'China -- History -- Anecdotes'), +(1683, 'Astronomy'), +(1684, 'Russia -- History -- Nicholas I, 1825-1855 -- Fiction'), +(1685, 'Brussels (Belgium) -- Fiction'), +(1686, 'Swine -- Juvenile poetry'), +(1687, 'Rats -- Control'), +(1688, 'Caricatures and cartoons -- Great Britain'), +(1689, 'Mayas -- History'), +(1690, 'Labrador (N.L.) -- Fiction'), +(1691, 'Rocky Mountains -- Description and travel'), +(1692, 'Orléans, Henriette-Anne, duchesse d\', 1644-1670'), +(1693, 'Legends, Swedish'), +(1694, 'English literature -- History and criticism'), +(1695, 'Jews -- New York (State) -- New York -- Fiction'), +(1696, 'Spanish fiction'), +(1697, 'Wit and humor'), +(1698, 'Scotland -- History -- To 1603'), +(1699, 'Mail steamers -- Great Britain'), +(1700, 'Children and death -- Juvenile fiction'), +(1701, 'Swiss fiction (German) -- Translations into Finnish'), +(1702, 'Bengali poetry -- Translations into English'), +(1703, 'Competition -- Juvenile fiction'), +(1704, 'Cervantes Saavedra, Miguel de, 1547-1616 -- Translations into German'), +(1705, 'Bibliomania'), +(1706, 'Georgia -- History -- 1775-1865 -- Fiction'), +(1707, 'India -- Politics and government -- 1765-1947'), +(1708, 'New York (N.Y.) -- Juvenile fiction'), +(1709, 'Physics -- Experiments'), +(1710, 'Moore, Thomas, 1779-1852 -- Fiction'), +(1711, 'Dickens, Charles, 1812-1870 -- Characters -- Girls'), +(1712, 'Portugal -- History -- Maria II, 1834-1853'), +(1713, 'Macpherson, James, 1736-1796 -- Influence'), +(1714, 'Junqueiro, Guerra, 1850-1923. Velhice do Padre Eterno'), +(1715, 'Massachusetts -- History -- Revolution, 1775-1783'), +(1716, 'Lincoln, Abraham, 1809-1865'), +(1717, 'United States -- History -- Civil War, 1861-1865'), +(1718, 'Samoa -- Description and travel'), +(1719, 'Capitalists and financiers -- Fiction'), +(1720, 'United States -- Politics and government'), +(1721, 'Chinese poetry -- Song dynasty, 960-1279'), +(1722, 'Crécy, Battle of, Crécy-en-Ponthieu, France, 1346'), +(1723, 'Corinth (Greece) -- Fiction'), +(1724, 'Birds -- Malaysia -- Sabah'), +(1725, 'Recitations'), +(1726, 'World politics -- Handbooks, manuals, etc.'), +(1727, 'Jack, the Ripper -- Fiction'), +(1728, 'English literature -- Irish authors'), +(1729, 'Mongols -- Iran -- History'), +(1730, 'World War, 1914-1918 -- African Americans'), +(1731, 'Donkeys -- Juvenile fiction'), +(1732, 'Epic poetry, Assyro-Babylonian -- Translations into English'), +(1733, 'Reynard the Fox (Legendary character) -- Poetry'), +(1734, 'World War, 1939-1945 -- Participation, Female -- Juvenile fiction'), +(1735, 'Shakespeare, William, 1564-1616 -- Criticism and interpretation'), +(1736, 'India -- History -- British occupation, 1765-1947 -- Fiction'), +(1737, 'Great Britain -- History -- Roman period, 55 B.C.-449 A.D. -- Fiction'), +(1738, 'Tales -- Japan'), +(1739, 'Inventions'), +(1740, 'Erotic poetry, French'), +(1741, 'New York (N.Y.) -- Politics and government'), +(1742, 'Finland -- History -- Russian Conquest, 1808-1809 -- Poetry'), +(1743, 'Teenage girls'), +(1744, 'Bible. Kings, 2nd -- Commentaries'), +(1745, 'Economics'), +(1746, 'Emperors -- Rome'), +(1747, 'Supernatural -- Fiction'), +(1748, 'Omaha Indians -- Social life and customs'), +(1749, 'Indians of North America -- Folklore'), +(1750, 'Texas -- Description and travel'), +(1751, 'Home rule -- Ireland'), +(1752, 'Ship captains -- Juvenile fiction'), +(1753, 'World War, 1914-1918 -- Campaigns -- France -- Juvenile fiction'), +(1754, 'Blind children -- Juvenile fiction'), +(1755, 'Bats -- Nicaragua'), +(1756, 'Berlioz, Hector, 1803-1869'), +(1757, 'Legislators -- Great Britain -- Correspondence'), +(1758, 'Constitutional history -- England -- Sources'), +(1759, 'Christianity -- Controversial literature'), +(1760, 'Bible -- Paraphrases -- Early works to 1800'), +(1761, 'Trapshooting'), +(1762, 'Communication and traffic -- Great Britain'), +(1763, 'Poor -- Fiction'), +(1764, 'World War, 1914-1918 -- England -- London'), +(1765, 'French literature -- History and criticism'), +(1766, 'Composers -- France'), +(1767, 'Animal locomotion'), +(1768, 'Baptists -- Periodicals'), +(1769, 'Novelists -- Fiction'), +(1770, 'Napoleon I, Emperor of the French, 1769-1821 -- Contemporaries'), +(1771, 'Social psychology'), +(1772, 'Folklore -- India'), +(1773, 'Physical geography -- Arabian Peninsula'), +(1774, 'Wilderness areas -- New York (State) -- Adirondack Mountains'), +(1775, 'New South Wales -- Description and travel'), +(1776, 'Patent medicines'), +(1777, 'Page, Walter Hines, 1855-1918'), +(1778, 'Storage batteries'), +(1779, 'Schools -- Fiction'), +(1780, 'Grand Canyon (Ariz.) -- Description and travel'), +(1781, 'Indians of North America -- Implements'), +(1782, 'French fiction -- Translations into Greek'), +(1783, 'Mexico -- History -- 1910-1946'), +(1784, 'Dialect literature, American'), +(1785, 'Authors, English -- 18th century -- Correspondence'), +(1786, 'Ireland -- History -- Easter Rising, 1916'), +(1787, 'Animals -- Anecdotes'), +(1788, 'Dublin (Ireland) -- Fiction'), +(1789, 'Jury -- Great Britain'), +(1790, 'English drama -- Early modern and Elizabethan, 1500-1600'), +(1791, 'Mountaineering'), +(1792, 'Plague -- Early works to 1800'), +(1793, 'Canals -- Louisiana'), +(1794, 'Character'), +(1795, 'Slavery -- United States -- History'), +(1796, 'Mackenzie (N.W.T.) -- Description and travel'), +(1797, 'Rome -- Biography -- Juvenile literature'), +(1798, 'Italy -- History -- Drama'), +(1799, 'World history -- Popular works'), +(1800, 'Lyric poetry'), +(1801, 'Animals -- Juvenile poetry'), +(1802, 'Egypt -- History -- To 332 B.C. -- Fiction'), +(1803, 'Explosives'), +(1804, 'Epic literature, Sanskrit'), +(1805, 'Canada -- History -- 1841-1867'), +(1806, 'Lathes'), +(1807, 'Beethoven, Ludwig van, 1770-1827'), +(1808, 'Religious poetry'), +(1809, 'Japan -- Social life and customs'), +(1810, 'Missouri River -- Description and travel'), +(1811, 'Werewolves -- Fiction'), +(1812, 'Monadology'), +(1813, 'Spain -- Fiction'), +(1814, 'Egypt -- History -- 30 B.C.-640 A.D. -- Fiction'), +(1815, 'Russian drama -- Translations into Finnish'), +(1816, 'Church'), +(1817, 'Children -- Conduct of life -- Juvenile fiction'), +(1818, 'Hampshire (England) -- History'), +(1819, 'Slaves -- United States -- Social conditions'), +(1820, 'Refuse and refuse disposal'), +(1821, 'Thesis (Ph. D.)'), +(1822, 'African American Episcopalians -- Sermons'), +(1823, 'Girondists'), +(1824, 'Indian children -- North America'), +(1825, 'Lourdes (France) -- Fiction'), +(1826, 'Jonson, Ben, 1573?-1637'), +(1827, 'Eastern Shore (Md. and Va.) -- Social life and customs -- Fiction'), +(1828, 'Utopias -- Early works to 1800'), +(1829, 'Religion and science -- Periodicals'), +(1830, 'Irish poetry'), +(1831, 'Catholic ex-priests -- Fiction'), +(1832, 'Mohawk Indians -- Sudan -- History -- 19th century'), +(1833, 'Detectives'), +(1834, 'Swedish fiction -- Translations into English'), +(1835, 'Finland -- History -- Club War, 1596-1597 -- Fiction'), +(1836, 'Wood-engraving -- History'), +(1837, 'Handicraft'), +(1838, 'Schoolcraft, Henry Rowe, 1793-1864'), +(1839, 'Bunyan, Paul (Legendary character)'), +(1840, 'Churches -- France -- Manche'), +(1841, 'Human Genome Project'), +(1842, 'Parker, Penny (Fictitious character) -- Juvenile fiction'), +(1843, 'World War, 1914-1918 -- Territorial questions -- Latvia'), +(1844, 'Bible. Epistle of John, 2nd'), +(1845, 'Richard II, King of England, 1367-1400'), +(1846, 'Youth -- Conduct of life'), +(1847, 'Princes, Robbery of the, Germany, 1455'), +(1848, 'Jones, John Paul, 1747-1792'), +(1849, 'Wilderness areas -- Fiction'), +(1850, 'French fiction -- Translations into Finnish'), +(1851, 'World War, 1914-1918 -- Personal narratives, Irish'), +(1852, 'Bible. Psalms -- Commentaries'), +(1853, 'Cats -- Fiction'), +(1854, 'Raffles (Fictitious character) -- Fiction'), +(1855, 'Woodruff, Wilford, 1807-1898 -- Diaries'), +(1856, 'Painting, French -- 19th century -- Exhibitions'), +(1857, 'United States -- Military policy'), +(1858, 'Surrey (England) -- Description and travel'), +(1859, 'Stevenson, Robert Louis, 1850-1894 -- Correspondence'), +(1860, 'Children\'s periodicals, English'), +(1861, 'Tin Woodman (Fictitious character) -- Juvenile fiction'), +(1862, 'Turkey -- History -- Ottoman Empire, 1288-1918 -- Fiction'), +(1863, 'Electrical engineering -- Handbooks, manuals, etc.'), +(1864, 'Adirondack Mountains (N.Y.) -- Juvenile fiction'), +(1865, 'Poets, English -- 19th century -- Correspondence'), +(1866, 'Religious newspapers and periodicals'), +(1867, 'German poetry -- Translations into English'), +(1868, 'Sermons -- Periodicals'), +(1869, 'Cromer Ladies\' Bible Association'), +(1870, 'France -- Court and courtiers'), +(1871, 'Russian fiction -- Translations into German'), +(1872, 'Holcombe, Steve P., 1835-'), +(1873, 'Marshall, John, 1755-1835'), +(1874, 'Dogs -- Biography'), +(1875, 'Murder victims\' families -- Drama'), +(1876, 'Painting, Spanish'), +(1877, 'Boarding schools -- Juvenile fiction'), +(1878, 'Copyright -- United States'), +(1879, 'Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 -- Drama'), +(1880, 'Science -- Study and teaching (Elementary) -- Ontario'), +(1881, 'Cooking, Italian'), +(1882, 'Literature, Modern'), +(1883, 'Good and evil -- Fiction'), +(1884, 'Acupuncture'), +(1885, 'Italian fiction -- Translations into Finnish'), +(1886, 'America -- Discovery and exploration -- British'), +(1887, 'Canada, Northern -- Fiction'), +(1888, 'Numerals'), +(1889, 'Youth -- Conduct of life -- Juvenile fiction'), +(1890, 'Canada -- History -- To 1763 (New France) -- Fiction'), +(1891, 'South Carolina -- History -- Colonial period, ca. 1600-1775'), +(1892, 'Airplanes -- Juvenile fiction'), +(1893, 'Thailand -- Description and travel'), +(1894, 'Provençal poetry -- Translations into French'), +(1895, 'Indians of South America -- Argentina -- Juvenile fiction'), +(1896, 'Italy -- Description and travel'), +(1897, 'French language -- Etymology'), +(1898, 'Vision'), +(1899, 'Trinidad -- Description and travel'), +(1900, 'Trials (Witchcraft) -- Juvenile fiction'), +(1901, 'New Orleans (La.) -- Description and travel'), +(1902, 'England -- Social life and customs -- Fiction'), +(1903, 'Economics -- History -- To 1800'), +(1904, 'Trapping'), +(1905, 'Stülpner, Karl Heinrich'), +(1906, 'Italian poetry -- To 1400'), +(1907, 'Europe -- Fiction'), +(1908, 'Police -- Fiction'), +(1909, 'Vendetta -- Fiction'), +(1910, 'Sturt, Charles, 1795-1869'), +(1911, 'Great Britain -- Antiquities'), +(1912, 'Lützen, Battle of, Lützen, Germany, 1632 -- Fiction'), +(1913, 'Ducks'), +(1914, 'Arithmetic -- Early works to 1900'), +(1915, 'Paleontology -- North America'), +(1916, 'New Zealand -- Fiction'), +(1917, 'Betterton, Thomas, 1635?-1710 -- Fiction'), +(1918, 'Gentry -- England'), +(1919, 'Electrotherapeutics'), +(1920, 'Hertfordshire (England) -- Guidebooks'), +(1921, 'Germany -- History'), +(1922, 'Scotland -- Social life and customs -- Fiction'), +(1923, 'Portugal -- Description and travel'), +(1924, 'Middle Ages -- Social life and customs'), +(1925, 'North West Company'), +(1926, 'Presidents -- United States -- Messages'), +(1927, 'Shakespeare, William, 1564-1616 -- Stories, plots, etc. -- Juvenile literature'), +(1928, 'Crime -- England -- London -- Early works to 1800'), +(1929, 'Reindeer herders -- Fiction'), +(1930, 'Country life -- Poetry'), +(1931, 'Newcomer, Charlie Martin, 1880-1893 -- Juvenile literature'), +(1932, 'Twain, Mark, 1835-1910 -- Travel'), +(1933, 'Naval art and science -- Dictionaries -- French'), +(1934, 'Agriculture -- Cyprus'), +(1935, 'Fingerprints'), +(1936, 'Ethiopia -- Description and travel'), +(1937, 'Handicraft -- Indexes'), +(1938, 'Norwegian fiction -- Translations into English'), +(1939, 'Collier, Jeremy, 1650-1726. Short view of the immorality and profaneness of the English stage'), +(1940, 'Punishment -- France'), +(1941, 'France -- History -- 1789-1815'), +(1942, 'Sagas'), +(1943, 'France -- History -- 1789-1815 -- Sources'), +(1944, 'Poor -- England -- London'), +(1945, 'Fishing'), +(1946, 'Mollusks -- Great Britain -- Identification'), +(1947, 'Educational psychology'), +(1948, 'Welsh literature -- 1100-1400 -- Translations into English'), +(1949, 'Austrian fiction -- Translations into English'), +(1950, 'Witt, Johan de, 1625-1672 -- Fiction'), +(1951, 'Culture'), +(1952, 'Partridge shooting -- Spain'), +(1953, 'Great Britain -- History'), +(1954, 'Pirates -- Early works to 1800'), +(1955, 'Hunt, Leigh, 1784-1859 -- Ethics'), +(1956, 'South African War, 1899-1902'), +(1957, 'Cooking, German'), +(1958, 'African Americans -- Fiction'), +(1959, 'Rasputin, Grigorii Efimovich, 1869-1916'), +(1960, 'Asia -- Description and travel'), +(1961, 'Short story'), +(1962, 'Philosophy -- Quotations, maxims, etc.'), +(1963, 'Tearooms -- Juvenile fiction'), +(1964, 'French essays -- Translations into English'), +(1965, 'College verse, English -- England -- Oxford'), +(1966, 'Operas -- Librettos'), +(1967, 'Religious education'), +(1968, 'Insects -- Behavior'), +(1969, 'Bible and geology'), +(1970, 'Bible. Acts I, 8 -- Sermons'), +(1971, 'Satire, English'), +(1972, 'Canada -- History -- Fiction'), +(1973, 'Roosevelt River (Brazil)'), +(1974, 'Phrenology -- Periodicals'), +(1975, 'India -- Description and travel'), +(1976, 'Religion -- Early works to 1800'), +(1977, 'Keats, John, 1795-1821'), +(1978, 'Education -- Great Britain -- History -- 19th century'), +(1979, 'English language -- Grammar'), +(1980, 'Wesleyan Methodist Church -- Clergy -- Biography'), +(1981, 'Missouri -- History -- Civil War, 1861-1865 -- Regimental histories'), +(1982, 'Great Britain -- History -- Stuarts, 1603-1714 -- Fiction'), +(1983, 'Virginia -- Description and travel'), +(1984, 'Impersonation -- Fiction'), +(1985, 'English language'), +(1986, 'Ocean bottom'), +(1987, 'Farm life -- Periodicals'), +(1988, 'Goethe, Johann Wolfgang von, 1749-1832 -- Correspondence'), +(1989, 'Erotic literature'), +(1990, 'Artists'), +(1991, 'Black humor'), +(1992, 'Asia, Central -- Description and travel'), +(1993, 'Paris (France) -- History'), +(1994, 'Household employees -- Fiction'), +(1995, 'Courts -- United States'), +(1996, 'Kentucky -- Fiction'), +(1997, 'Riddles, Juvenile'), +(1998, 'Utopias'), +(1999, 'Epic poetry'), +(2000, 'Cavalry'), +(2001, 'Postal service -- United States -- History -- Colonial period, ca. 1600-1775'), +(2002, 'Gustav II Adolf, King of Sweden, 1594-1632 -- Fiction'), +(2003, 'France -- Politics and government -- 1830-1848'), +(2004, 'Impostors and imposture -- Fiction'), +(2005, 'Indians -- Bibliography'), +(2006, 'Great Britain. Army'), +(2007, 'Chinese -- Foreign countries -- Fiction'), +(2008, 'Caricatures and cartoons'), +(2009, 'Zapus'), +(2010, 'France -- History -- Louis XVIII, 1814-1824 -- Fiction'), +(2011, 'Archaeology'), +(2012, 'Poets, English -- Biography'), +(2013, 'American literature -- New York (State) -- New York'), +(2014, 'Gangsters -- Juvenile fiction'), +(2015, 'Jews -- California -- San Francisco -- Fiction'), +(2016, 'Jesus Christ -- Teachings'), +(2017, 'Tramps -- Juvenile fiction'), +(2018, 'Force and energy'), +(2019, 'Women -- England -- Fiction'), +(2020, 'Illustration of books'), +(2021, 'Trials (Murder) -- Italy -- Rome -- History -- 17th century -- Sources'), +(2022, 'Polynesia -- Description and travel -- Fiction'), +(2023, 'Duryea automobile'), +(2024, 'Brothers and sisters -- Fiction'), +(2025, 'Christian saints -- Juvenile literature'), +(2026, 'Boats and boating -- England -- Thames River -- Fiction'), +(2027, 'Indians -- Origin'), +(2028, 'Fox, George, 1624-1691'), +(2029, 'Booksellers\' catalogs -- England -- London'), +(2030, 'Scottish literature -- History and criticism'), +(2031, 'Guyana -- Description and travel'), +(2032, 'Charles, Duke of Burgundy, 1433-1477'), +(2033, 'Great Britain -- History -- 1714-1837 -- Periodicals'), +(2034, 'Dostoyevsky, Fyodor, 1821-1881'), +(2035, 'Americans -- Europe -- Fiction'), +(2036, 'Columbus, Christopher'), +(2037, 'Criminals -- Rehabilitation'), +(2038, 'Turner, J. M. W. (Joseph Mallord William), 1775-1851'), +(2039, 'Korea -- Description and travel'), +(2040, 'Great Britain -- History -- Henry I, 1100-1135 -- Fiction'), +(2041, 'Arsonists -- Fiction'), +(2042, 'Engineers -- Fiction'), +(2043, 'Queens -- France -- Fiction'), +(2044, 'Ireland -- Social life and customs -- 19th century -- Fiction'), +(2045, 'Middle East -- History -- 1517-'), +(2046, 'West (U.S.) -- Juvenile fiction'), +(2047, 'Electronic books'), +(2048, 'Great Britain -- Kings and rulers -- Drama'), +(2049, 'Borgia, Lucrezia, 1480-1519'), +(2050, 'Rome -- Social life and customs'), +(2051, 'France -- History -- Consulate and First Empire, 1799-1815'), +(2052, 'Straw industries'), +(2053, 'Catholic ex-priests -- United States -- Biography'), +(2054, 'Crime -- France'), +(2055, 'Philosophy and religion -- Early works to 1800'), +(2056, 'Clocks and watches -- Escapements'), +(2057, 'California -- Gold discoveries -- Fiction'), +(2058, 'Xhosa (African people) -- Fiction'), +(2059, 'Library science'), +(2060, 'Asquith, Margot, 1864-1945'), +(2061, 'World War, 1914-1918 -- Economic aspects'), +(2062, 'Bible. Hebrews -- Criticism, interpretation, etc.'), +(2063, 'Kansas -- Juvenile fiction'), +(2064, 'Meditations'), +(2065, 'Great Britain -- History -- Victoria, 1837-1901 -- Fiction'), +(2066, 'Actresses'), +(2067, 'Bugle calls'), +(2068, 'Henry VIII, King of England, 1491-1547 -- Family'), +(2069, 'World Wide Web'), +(2070, 'Great Britain -- Civilization -- Scandinavian influences'), +(2071, 'World War, 1914-1918 -- Pictorial works'), +(2072, 'Bible. Epistle of John, 3rd'), +(2073, 'Land tenure -- Great Britain'), +(2074, 'United States. Marine Corps. Marine Division, 3rd -- History'), +(2075, 'Clans -- Scotland -- Periodicals'), +(2076, 'Seneca Indians -- Kings and rulers -- Biography'), +(2077, 'Russia -- History -- Catherine II, 1762-1796'), +(2078, 'Missionaries -- Sudan -- Biography'), +(2079, 'Fathers and sons -- Fiction'), +(2080, 'Flies, Artificial'), +(2081, 'Puvis de Chavannes, Pierre, 1824-1898'), +(2082, 'Cornwall (England : County) -- Description and travel'), +(2083, 'Divorce -- Fiction'), +(2084, 'Vaccination'), +(2085, 'Weather'), +(2086, 'Charity -- Juvenile fiction'), +(2087, 'Country life -- United States'), +(2088, 'Orient -- Fiction'), +(2089, 'World War, 1914-1918 -- Prisoners and prisons, British'), +(2090, 'McGill University -- History'), +(2091, 'Hell'), +(2092, 'Cookbooks'), +(2093, 'Dragons -- Fiction'), +(2094, 'Spanish drama -- 19th century'), +(2095, 'Invalids -- Fiction'), +(2096, 'Girls -- Societies and clubs -- Juvenile fiction'), +(2097, 'Saijinhua, 1874-1936 -- Fiction'), +(2098, 'University of Cambridge -- History'), +(2099, 'Texas Rangers -- Juvenile fiction'), +(2100, 'World War, 1914-1918 -- Poetry'), +(2101, 'Bible. Genesis -- History of Biblical events -- Fiction'), +(2102, 'Finland -- History -- Fiction'), +(2103, 'Berkshire Hills (Mass.) -- Fiction'), +(2104, 'Tops'), +(2105, 'Mesmerism'), +(2106, 'Pirates -- Borneo'), +(2107, 'Book of Mormon'), +(2108, 'Women\'s rights -- United States'), +(2109, 'Jewish literature -- History and criticism'), +(2110, 'Great Britain -- Pictorial works'), +(2111, 'Sauk Indians -- History'), +(2112, 'Newfoundland and Labrador -- Fiction'), +(2113, 'Ants -- Juvenile fiction'), +(2114, 'Honor'), +(2115, 'Madhya Pradesh (India) -- Religion'), +(2116, 'Humorous stories, American'), +(2117, 'Japanese poetry'), +(2118, 'France -- Fiction'), +(2119, 'Jews -- Spain -- History'), +(2120, 'Jewish fiction'), +(2121, 'Sea-power'), +(2122, 'London (England) -- Description and travel -- Early works to 1800'), +(2123, 'Tahiti (French Polynesia : Island) -- Fiction'), +(2124, 'Montenegro -- Description and travel'), +(2125, 'Montréal (Québec) -- History -- Fiction'), +(2126, 'Africa -- Fiction'), +(2127, 'Prometheus (Greek deity) -- Drama'), +(2128, 'Federal Reserve banks'), +(2129, 'Flores, Battle of, Azores, 1591 -- Fiction'), +(2130, 'Lake-dwellers and lake-dwellings -- Europe'), +(2131, 'United States -- History -- Civil War, 1861-1865 -- Naval operations -- Juvenile fiction'), +(2132, 'Taxidermy'), +(2133, 'Widowers -- Fiction'), +(2134, 'Painters -- France -- Biography'), +(2135, 'Great Britain -- History -- Victoria, 1837-1901'), +(2136, 'Charity'), +(2137, 'Hunting -- New York (State)'), +(2138, 'World War, 1914-1918 -- Influence'), +(2139, 'Mythology, Greek -- Juvenile literature'), +(2140, 'Architecture -- Periodicals'), +(2141, 'Railroads -- History -- Fiction'), +(2142, 'Spiritualists -- United States -- Biography'), +(2143, 'Quental, Antero de, 1842-1891. Bom senso e bom gosto'), +(2144, 'Arctic regions -- Fiction'), +(2145, 'Literature, Modern -- History and criticism'), +(2146, 'Boy Scouts -- United States'), +(2147, 'Magic mirrors -- Japan'), +(2148, 'Balloons -- Fiction'), +(2149, 'Sunday schools'), +(2150, 'Merriwell, Frank (Fictitious character) -- Juvenile fiction'), +(2151, 'American loyalists'), +(2152, 'Insects -- Development'), +(2153, 'Feminism -- Fiction'), +(2154, 'Schools -- Juvenile fiction'), +(2155, 'Camping'), +(2156, 'Literature -- History and criticism'), +(2157, 'Henry VIII, King of England, 1491-1547'), +(2158, 'James, Henry, 1843-1916 -- Correspondence'), +(2159, 'Human beings'), +(2160, 'Regeneration (Biology)'), +(2161, 'Formulas, recipes, etc.'), +(2162, 'Zuni mythology'), +(2163, 'Canada -- History -- To 1763 (New France)'), +(2164, 'Stories in rhyme'), +(2165, 'Tyrol (Austria) -- History -- Uprising of 1809 -- Fiction'), +(2166, 'Mountain life -- Juvenile fiction'), +(2167, 'Refrigeration and refrigerating machinery'), +(2168, 'Swedish fiction -- Translations into Finnish'), +(2169, 'Telepathy -- Fiction'), +(2170, 'Civilization -- History'), +(2171, 'Louis Bonaparte, King of Holland, 1778-1846'), +(2172, 'Garve, Christian, 1742-1798 -- Correspondence'), +(2173, 'Völsunga saga'), +(2174, 'Traherne, Patrick, 1885-1917'), +(2175, 'Automobile travel'), +(2176, 'Romances'), +(2177, 'Kahnawake (Québec)'), +(2178, 'Scotland -- History -- 17th century -- Fiction'), +(2179, 'Legends -- Rhine River'), +(2180, 'Indians of North America -- Biography'), +(2181, 'Bible -- History of Biblical events'), +(2182, 'Theology, Doctrinal -- Early works to 1800'), +(2183, 'Colonization -- History'), +(2184, 'Clock chimes'), +(2185, 'Love poetry'), +(2186, 'Socialism -- Fiction'), +(2187, 'Heredity, Human'), +(2188, 'Working class -- Poetry'), +(2189, 'Gettysburg Campaign, 1863 -- Juvenile fiction'), +(2190, 'Children of the rich -- Fiction'), +(2191, 'Idealism'), +(2192, 'Borrow, George, 1803-1881'), +(2193, 'Fantasy poetry, American'), +(2194, 'Spain -- Colonies'), +(2195, 'Folklore -- Europe'), +(2196, 'New York (N.Y.) -- Description and travel'), +(2197, 'Diarists -- Great Britain -- Diaries'), +(2198, 'Alaska -- Description and travel -- Juvenile fiction'), +(2199, 'China -- Drama'), +(2200, 'Adam -- (Biblical figure)'), +(2201, 'Art, Finnish -- History'), +(2202, 'Immigrants -- Denmark -- Fiction'), +(2203, 'Fantasy literature'), +(2204, 'Middle East -- Description and travel'), +(2205, 'Rich people -- Drama'), +(2206, 'East Indians -- England -- Juvenile fiction'), +(2207, 'Spanish language -- Textbooks for foreign speakers -- English'), +(2208, 'Moundville Archaeological Park (Moundville, Ala.)'), +(2209, 'Chaucer, Geoffrey, -1400 -- Homes and haunts -- England'), +(2210, 'Beaked whales'), +(2211, 'Forests and forestry'), +(2212, 'Italian poetry -- To 1400 -- Translations into English'), +(2213, 'Pettigrew, James Johnston, 1828-1863'), +(2214, 'Minnesota -- History -- Fiction'), +(2215, 'Friendship'), +(2216, 'French language -- Readers'), +(2217, 'Brion, Friederike-Elisabeth, 1752-1813'), +(2218, 'Catamarca (Argentina : Province) -- Antiquities'), +(2219, 'Monarchy'), +(2220, 'Loyalty -- Juvenile fiction'), +(2221, 'France -- History -- Consulate and First Empire, 1799-1815 -- Fiction'), +(2222, 'African Americans -- Education'), +(2223, 'World War, 1914-1918 -- Personal narratives, British'), +(2224, 'Soldiers -- Fiction'), +(2225, 'Prisons -- Austria -- History'), +(2226, 'Musicians -- United States -- Biography'), +(2227, 'Painting -- History'), +(2228, 'Paleontology -- Pliocene'), +(2229, 'Time travel -- Fiction'), +(2230, 'Butterflies -- Collection and Preservation -- Juvenile fiction'), +(2231, 'O\'Hanlon, Virginia -- Juvenile literature'), +(2232, 'End of the world -- Fiction'), +(2233, 'Glasgow (Scotland) -- Fiction'), +(2234, 'Great Britain -- History -- Edward VII, 1901-1910 -- Drama'), +(2235, 'United States Military Academy -- Fiction'), +(2236, 'Netherlands -- Description and travel'), +(2237, 'Belgian poetry (French) -- Translations into English'), +(2238, 'Jewish calendar'), +(2239, 'Land grants -- California -- Los Angeles County'), +(2240, 'Horsemanship'), +(2241, 'Newspaper vendors -- Juvenile fiction'), +(2242, 'Blind -- Fiction'), +(2243, 'Paris (France) -- Social life and customs'), +(2244, 'British -- India -- Fiction'), +(2245, 'Tea'), +(2246, 'Mary, Blessed Virgin, Saint -- Poetry'), +(2247, 'Cathédrale de Chartres'), +(2248, 'Sermons, American'), +(2249, 'Law, John, 1671-1729 -- Fiction'), +(2250, 'Aesthetics'), +(2251, 'Silver compounds'), +(2252, 'Perpetual motion'), +(2253, 'Gibson, Edmund, 1669-1748'), +(2254, 'Orestes, King of Argos (Mythological character) -- Drama'), +(2255, 'Boardinghouses -- Fiction'), +(2256, 'Thames Valley (England)'), +(2257, 'Goblins -- Juvenile fiction'), +(2258, 'Zionism'), +(2259, 'Pocahontas, -1617'), +(2260, 'Bible. Luke'), +(2261, 'Short stories, Canadian'), +(2262, 'Anarchists -- United States -- Biography'), +(2263, 'United States -- History -- Civil War, 1861-1865 -- Biography'), +(2264, 'Emblems'), +(2265, 'Byron, George Gordon Byron, Baron, 1788-1824'), +(2266, 'Bobbsey Twins (Fictitious characters) -- Juvenile fiction'), +(2267, 'Russia -- Drama'), +(2268, 'United States -- Politics and government -- 1861-1865'), +(2269, 'United States -- History -- War of 1812 -- Juvenile fiction'), +(2270, 'English language -- Rhetoric'), +(2271, 'Animal behavior -- Juvenile literature'), +(2272, 'Castelo Branco, Camilo, 1825-1890'), +(2273, 'World War, 1914-1918 -- United States -- Juvenile fiction'), +(2274, 'Voltaire, 1694-1778 -- Translations into Spanish'), +(2275, 'Cook, James, 1728-1779 -- Death and burial'), +(2276, 'Latin drama (Comedy)'), +(2277, 'British and Foreign Bible Society'), +(2278, 'Scientific expeditions'), +(2279, 'Aeronautics -- Juvenile fiction'), +(2280, 'Macau (China : Special Administrative Region) -- History'), +(2281, 'Brittany (France) -- Description and travel'), +(2282, 'Esperanto -- Readers'), +(2283, 'Journalists -- Fiction'), +(2284, 'Rossetti, Dante Gabriel, 1828-1882'), +(2285, 'Great Britain -- Politics and government -- 1820-1830'), +(2286, 'Philosophy, Ancient'), +(2287, 'New York (State) -- Fiction'), +(2288, 'Children -- Drama'), +(2289, 'Popular literature -- United States'), +(2290, 'Nonviolence -- Religious aspects -- Christianity'), +(2291, 'Economics -- Periodicals'), +(2292, 'Connacht (Ireland) -- Fiction'), +(2293, 'Women in literature'), +(2294, 'Portugal -- Politics and government -- 1861-1889'), +(2295, 'Venice (Italy) -- Fiction'), +(2296, 'Picture books for children'), +(2297, 'De tribus impostoribus -- Bibliography'), +(2298, 'Soldiers -- Poetry'), +(2299, 'Quakers -- Fiction'), +(2300, 'Spiritualism -- Fiction'), +(2301, 'Kendall, Henry, 1839-1882'), +(2302, 'Legends -- Scotland -- Highlands'), +(2303, 'Philo, of Alexandria'), +(2304, 'Bishops -- Algeria -- Hippo (Extinct city) -- Biography'), +(2305, 'Virtues -- Juvenile fiction'), +(2306, 'Volcanoes -- United States'), +(2307, 'Yellowstone National Park -- Fiction'), +(2308, 'Swindlers and swindling -- Fiction'), +(2309, 'Finn MacCool -- Legends'), +(2310, 'Rome -- Biography -- Early works to 1800'), +(2311, 'Antimony -- Therapeutic use'), +(2312, 'Chinese drama'), +(2313, 'Salvation'), +(2314, 'Kings and rulers -- Juvenile fiction'), +(2315, 'Louisiana -- History'), +(2316, 'Daniel (Biblical figure) -- Fiction'), +(2317, 'France -- History -- Revolution, 1789-1799 -- Causes'), +(2318, 'Human gene mapping'), +(2319, 'Wood-carving'), +(2320, 'Discoveries in geography'), +(2321, 'Bible plays'), +(2322, 'Treasure troves -- Juvenile fiction'), +(2323, 'Crowds'), +(2324, 'Lion hunting -- Juvenile fiction'), +(2325, 'Vanderbilt Mansion National Historic Site (Hyde Park, Dutchess County, N.Y.)'), +(2326, 'Hungarian fiction -- Translations into Finnish'), +(2327, 'Brooklyn (New York, N.Y.) -- Statistics'), +(2328, 'World War, 1914-1918 -- Caricatures and cartoons'), +(2329, 'Game and game-birds -- Pacific Coast'), +(2330, 'Indians of South America -- Juvenile fiction'), +(2331, 'Edison, Thomas A. (Thomas Alva), 1847-1931 -- Homes and haunts'), +(2332, 'Natural law'), +(2333, 'Automobile travel -- Europe'), +(2334, 'Ethnology -- Philippines -- Mindanao Island'), +(2335, 'Aztecs -- Fiction'), +(2336, 'United States -- History -- Revolution, 1775-1783 -- Anecdotes'), +(2337, 'Indians of North America -- Ontario -- Fiction'), +(2338, 'Great Britain -- Social life and customs -- 1066-1485 -- Sources'), +(2339, 'Flying Dutchman -- Fiction'), +(2340, 'France -- History -- Fiction'), +(2341, 'Wallenstein, Albrecht Wenzel Eusebius von, Herzog von Friedland, 1583-1634 -- Drama'), +(2342, 'Slaves -- North Carolina -- Biography'), +(2343, 'Cornwall (England : County) -- History'), +(2344, 'Political refugees -- Drama'), +(2345, 'Girl Scouts -- Juvenile fiction'), +(2346, 'Poetry -- Collections'), +(2347, 'United States. Army. Massachusetts Infantry Regiment, 2nd (1861-1864)'), +(2348, 'New France -- Discovery and exploration -- Fiction'), +(2349, 'Psalmody'), +(2350, 'Chinese literature -- History and criticism'), +(2351, 'Business'), +(2352, 'Natural history -- Florida -- Everglades'), +(2353, 'Aesthetics, German -- 19th century'), +(2354, 'Horror tales, English'), +(2355, 'Boats and boating'), +(2356, 'Great Britain -- History -- Roman period, 55 B.C.-449 A.D. -- Drama'), +(2357, 'Adventure stories, Australian'), +(2358, 'Middle West -- Fiction'), +(2359, 'Bible. Gospels -- Harmonies, English'), +(2360, 'Animals'), +(2361, 'Novara Expedition (1857-1859)'), +(2362, 'Napoleon I, Emperor of the French, 1769-1821 -- Captivity, 1815-1821'), +(2363, 'United States -- History -- Civil War, 1861-1865 -- Prisoners and prisons'), +(2364, 'Great Britain -- Description and travel'), +(2365, 'Women -- Social conditions -- Drama'), +(2366, 'Beer'), +(2367, 'Illustrators -- Great Britain -- Correspondence'), +(2368, 'Calcutta (India) -- Fiction'), +(2369, 'Civil disobedience -- India'), +(2370, 'London (England) -- Periodicals'), +(2371, 'Sieges -- Fiction'), +(2372, 'Tolstoy, Leo, graf, 1828-1910'), +(2373, 'France -- History -- Second Empire, 1852-1870 -- Fiction'), +(2374, 'Lumber -- Drying'), +(2375, 'Chappaqua (N.Y.)'), +(2376, 'Feminism -- Great Britain -- History -- 18th century -- Sources'), +(2377, 'Gowrie Conspiracy, 1600 -- Fiction'), +(2378, 'Sex instruction'), +(2379, 'Devon (England) -- Description and travel'), +(2380, 'Russia -- Social conditions -- 1801-1917'), +(2381, 'Great Britain. Army. Black Watch (Royal Highlanders)'), +(2382, 'Theology, Doctrinal'), +(2383, 'Thorndyke, Doctor (Fictitious character) -- Fiction'), +(2384, 'African Americans -- New York (State) -- New York'), +(2385, 'Swedish literature'), +(2386, 'Sermons, English -- 19th century'), +(2387, 'British -- Egypt -- Fiction'), +(2388, 'Parent and child -- Fiction'), +(2389, 'Scotland -- Fiction'), +(2390, 'Libraries -- Canada -- Bibliography'), +(2391, 'Quotations, French -- Translations into English'), +(2392, 'Charles V, Holy Roman Emperor, 1500-1558 -- Fiction'), +(2393, 'George Bell & Sons -- Catalogs'), +(2394, 'Gay men -- Fiction'), +(2395, 'Lloyd George, David, 1863-1945'), +(2396, 'Motion pictures'), +(2397, 'Religion and science -- History'), +(2398, 'American poetry -- 20th century -- History and criticism'), +(2399, 'Earth (Planet) -- Core -- Fiction'), +(2400, 'Statesmen -- Portugal -- Biography'), +(2401, 'Acetylene'), +(2402, 'Napoleon I, Emperor of the French, 1769-1821 -- Relations with Russians'), +(2403, 'Medicine -- Early works to 1800'), +(2404, 'Natural history -- England -- Isle of Wight'), +(2405, 'Birds -- Egypt'), +(2406, 'Norfolk (England) -- History'), +(2407, 'Christianity -- Essence, genius, nature'), +(2408, 'Russia -- Description and travel'), +(2409, 'Catchpole, Margaret, 1762-1819 -- Fiction'), +(2410, 'Probabilities'), +(2411, 'Pulitzer, Joseph, 1847-1911'), +(2412, 'Fire fighters -- New York (State) -- New York -- Juvenile fiction'), +(2413, 'Great Britain -- History -- 1760-1789'), +(2414, 'Yellowstone National Park'), +(2415, 'Copperwork'), +(2416, 'Telescopes -- Juvenile fiction'), +(2417, 'United States. Army. Infantry -- Drill and tactics'), +(2418, 'Cowboys -- Fiction'), +(2419, 'Philosophy, Asian'), +(2420, 'Microscopy'), +(2421, 'Great Britain. Army. Northumberland Fusiliers'), +(2422, 'India -- Social life and customs'), +(2423, 'Van Dyck, Anthony, 1599-1641'), +(2424, 'Geological time'), +(2425, 'Opium abuse -- England'), +(2426, 'Europe -- History -- 1517-1648'), +(2427, 'Belgium -- Description and travel'), +(2428, 'Haunted houses -- Scotland -- Perthshire'), +(2429, 'Polynesia -- Fiction'), +(2430, 'World War, 1939-1945 -- Campaigns -- Palau -- Peleliu Island'), +(2431, 'Coal mines and mining -- Great Britain -- Juvenile fiction'), +(2432, 'Bible. Ezra'), +(2433, 'Police'), +(2434, 'World history -- Juvenile literature'), +(2435, 'Education, Medieval'), +(2436, 'France -- History -- Louis XIII, 1610-1643 -- Fiction'), +(2437, 'Evangelistic work'), +(2438, 'Health resorts -- Fiction'), +(2439, 'Balboa, Vasco Nuñez de (17475-1519)'), +(2440, 'Women -- Greece -- Athens -- Politics and government -- Drama'), +(2441, 'Hunting'), +(2442, 'Middle Ages -- Fiction'), +(2443, 'Botany, Medical'), +(2444, 'Ballads, Spanish'), +(2445, 'Sigismund III, King of Poland and Sweden, 1566-1632 -- Fiction'), +(2446, 'James, Prince of Wales, 1688-1766 -- Early works to 1800'), +(2447, 'Judgment Day -- Poetry'), +(2448, 'Blavatsky, H. P. (Helena Petrovna), 1831-1891'), +(2449, 'Occupations'), +(2450, 'Chester County (Pa.) -- History'), +(2451, 'Great Fire, London, England, 1666 -- Early works to 1800'), +(2452, 'Rome (Italy) -- Description and travel'), +(2453, 'Vienna (Austria) -- Fiction'), +(2454, 'Geese'), +(2455, 'Man-woman relationships -- Drama'), +(2456, 'Henry IV, King of France, 1553-1610 -- Fiction'), +(2457, 'Infants switched at birth -- Fiction'), +(2458, 'Hate -- Fiction'), +(2459, 'Knights of the Golden Circle'), +(2460, 'Functions'), +(2461, 'China -- History -- Han dynasty, 202 B.C.-220 A.D.'), +(2462, 'Dragonflies'), +(2463, 'Intersexuality'), +(2464, 'Dogs -- Fiction'), +(2465, 'Memling, Hans, 1430?-1494'), +(2466, 'Aristotle, 384 BC-322 BC. Poetics'), +(2467, 'Owls'), +(2468, 'Honey, Comb'), +(2469, 'Lamb, Mary, 1764-1847 -- Correspondence'), +(2470, 'Turgenev, Ivan Sergeevich, 1818-1883 -- Bibliography'), +(2471, 'Australia -- Discovery and exploration'), +(2472, 'Persian cat -- Poetry'), +(2473, 'Gambling'), +(2474, 'Australian poetry'), +(2475, 'Classical poetry -- Translations into English'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(2476, 'English language -- Old English, ca. 450-1100 -- Grammar'), +(2477, 'Long Island (N.Y.) -- Drama'), +(2478, 'Tuberculosis -- Patients -- Fiction'), +(2479, 'Racially mixed people'), +(2480, 'Privateering -- Caribbean Sea -- Fiction'), +(2481, 'War'), +(2482, 'House plants'), +(2483, 'Canada -- Economic conditions'), +(2484, 'Good and evil'), +(2485, 'Belgium -- Guidebooks'), +(2486, 'Young women -- Social life and customs -- Juvenile fiction'), +(2487, 'Mexico -- Description and travel'), +(2488, 'Peninsular War, 1807-1814'), +(2489, 'Cambridge, Ada, 1844-1926'), +(2490, 'Transylvania (Romania) -- Fiction'), +(2491, 'Tomatoes'), +(2492, 'French language -- Orthography and spelling'), +(2493, 'Esperanto'), +(2494, 'Joan, of Arc, Saint, 1412-1431 -- Fiction'), +(2495, 'Fairy tales -- Poetry'), +(2496, 'Great Britain -- History -- 19th century -- Fiction'), +(2497, 'Numbers, Prime'), +(2498, 'Frontenac, Louis de Buade, comte de, 1620-1698'), +(2499, 'Art -- Fiction'), +(2500, 'Fairy tales -- Ireland'), +(2501, 'Bunyan, John, 1628-1688'), +(2502, 'Canadian literature -- History and criticism'), +(2503, 'Country life'), +(2504, 'Youth -- Drama'), +(2505, 'Italy -- Politics and government -- 1815-1870'), +(2506, 'Short stories -- Periodicals'), +(2507, 'Philippines -- Fiction'), +(2508, 'French literature -- 19th century'), +(2509, 'Charities -- Periodicals'), +(2510, 'Wooster, Bertie (Fictitious character) -- Fiction'), +(2511, 'World War, 1914-1918 -- Naval operations -- Submarine'), +(2512, 'England -- Civilization'), +(2513, 'Fantasy fiction, American'), +(2514, 'Biwa Lake Region (Japan) -- Fiction'), +(2515, 'Istanbul (Turkey) -- Social life and customs'), +(2516, 'Art, Renaissance -- Italy'), +(2517, 'Jefferson, Thomas, 1743-1826 -- Relations with women -- Fiction'), +(2518, 'Authors, American -- 19th century -- Correspondence'), +(2519, 'Skull'), +(2520, 'Country life -- Rome -- Poetry'), +(2521, 'Great Britain -- History -- Civil War, 1642-1649 -- Juvenile fiction'), +(2522, 'Science -- History -- Periodicals'), +(2523, 'Paraguay -- History -- To 1811'), +(2524, 'Sports'), +(2525, 'China -- History -- Song dynasty, 960-1279 -- Anecdotes'), +(2526, 'Boys -- Conduct of life -- Juvenile fiction'), +(2527, 'Science fiction -- Periodicals'), +(2528, 'Discoveries in geography -- English'), +(2529, 'Parodies'), +(2530, 'Guardian and ward -- Fiction'), +(2531, 'New Brunswick -- Description and travel'), +(2532, 'Templars'), +(2533, 'World War, 1914-1918 -- Regimental histories -- Australia'), +(2534, 'Railroad travel -- Fiction'), +(2535, 'Geology'), +(2536, 'Great Britain. Army. King\'s Royal Rifle Corps'), +(2537, 'Sunday school literature -- Periodicals'), +(2538, 'Evelyn, John, 1620-1706 -- Diaries'), +(2539, 'History, Modern -- 20th century -- Periodicals'), +(2540, 'Great Britain. Army. Regiment of Foot, 16th (Bedfordshire)'), +(2541, 'Alphabet books'), +(2542, 'Maximilian I, Holy Roman Emperor, 1459-1519'), +(2543, 'Coyote'), +(2544, 'Storrs, Harriet, 1786-1834 -- Death and burial -- Sermons'), +(2545, 'Brazil -- Juvenile fiction'), +(2546, 'Belgium -- History -- 1794-1814'), +(2547, 'New Mexico -- Fiction'), +(2548, 'Inventors -- Juvenile fiction'), +(2549, 'Friendship -- Fiction'), +(2550, 'San Francisco (Calif.) -- Description and travel'), +(2551, 'Pheasants -- Juvenile fiction'), +(2552, 'Abranches, Alvaro Vaz de Almada, conde de, -1449'), +(2553, 'Songs, French'), +(2554, 'Mine pumps -- Early works to 1800'), +(2555, 'Middle Ages'), +(2556, 'Cycling -- Italy'), +(2557, 'Hogarth, William, 1697-1764'), +(2558, 'Sevastopol (Ukraine) -- History -- Siege, 1854-1855 -- Fiction'), +(2559, 'Sebalduskirche (Nuremberg, Germany)'), +(2560, 'Animal behavior'), +(2561, 'Bats'), +(2562, 'Walton, Izaak, 1593-1683. Compleat angler'), +(2563, 'Pyrrhus, King of Epirus, 318-272 B.C.'), +(2564, 'War stories'), +(2565, 'Priestley, Joseph, 1733-1804'), +(2566, 'Christianity'), +(2567, 'Utah Expedition (1857-1858) -- Fiction'), +(2568, 'Finland -- History -- To 1523 -- Drama'), +(2569, 'Political satire, English'), +(2570, 'Istanbul (Turkey) -- Description and travel'), +(2571, 'Alabama -- Antiquities -- Handbooks, manuals, etc.'), +(2572, 'Mythology, Finno-Ugrian'), +(2573, 'World War, 1914-1918 -- Diplomatic history'), +(2574, 'United States -- Race relations'), +(2575, 'Civil engineers -- Fiction'), +(2576, 'Counties -- Virginia -- History'), +(2577, 'Philosophy, Chinese -- 960-1644'), +(2578, 'Geography -- Textbooks'), +(2579, 'Popular literature'), +(2580, 'Art, Primitive'), +(2581, 'Legends -- Southern States'), +(2582, 'Reformation -- Spain -- Fiction'), +(2583, 'Scotland'), +(2584, 'Elliptic functions'), +(2585, 'Spain -- History -- Philip II, 1556-1598 -- Fiction'), +(2586, 'Mothers and daughters -- Fiction'), +(2587, 'Behavior -- Fiction'), +(2588, 'Adventure and adventurers -- Fiction'), +(2589, 'Egypt -- Description and travel'), +(2590, 'Denmark -- Fiction'), +(2591, 'Weather -- Fiction'), +(2592, 'Italian language -- History'), +(2593, 'Romanies -- England -- Juvenile fiction'), +(2594, 'Photojournalists -- Juvenile fiction'), +(2595, 'Dionysus (Greek deity) -- Drama'), +(2596, 'Electric baths'), +(2597, 'Lincoln, Abraham, 1809-1865 -- Anecdotes'), +(2598, 'Fortification -- United States'), +(2599, 'Internet'), +(2600, 'World War, 1914-1918 -- Transportation'), +(2601, 'Toasts'), +(2602, 'Italy -- Drama'), +(2603, 'Guitar music, Arranged'), +(2604, 'Northwestern States -- History'), +(2605, 'Legends -- California -- San Francisco'), +(2606, 'Canada -- History -- Sources'), +(2607, 'Vendée (France) -- History -- Juvenile fiction'), +(2608, 'Transatlantic cables'), +(2609, 'Fables, Greek -- Translations into Spanish'), +(2610, 'Great Britain -- History -- George III, 1760-1820'), +(2611, 'Prostitution'), +(2612, 'Social problems -- Fiction'), +(2613, 'Henry VI, King of England, 1421-1471 -- Drama'), +(2614, 'Physicians -- Correspondence'), +(2615, 'Kentucky Derby'), +(2616, 'London (England) -- History -- 18th century -- Fiction'), +(2617, 'Spain -- History -- Napoleonic Conquest, 1808-1813 -- Pictorial works'), +(2618, 'Norwich (England) -- Pictorial works'), +(2619, 'Epic poetry, Greek -- Translations into English'), +(2620, 'University of Cambridge -- Anecdotes'), +(2621, 'Ojibwa Indians -- Missions'), +(2622, 'Australian fiction'), +(2623, 'Imagist poetry'), +(2624, 'Wit and humor, Pictorial'), +(2625, 'Country life -- Fiction'), +(2626, 'Bastille'), +(2627, 'Martians -- Fiction'), +(2628, 'Weight control'), +(2629, 'French poetry -- Translations into English'), +(2630, 'Rama (Hindu deity) -- Poetry'), +(2631, 'Danish fiction -- Translations into Finnish'), +(2632, 'Gogol, Nikolai Vasilevich, 1809-1852 -- Correspondence'), +(2633, 'Polkas'), +(2634, 'Fantasy fiction, English'), +(2635, 'Indians'), +(2636, 'South African War, 1899-1902 -- Hospitals, charities, etc.'), +(2637, 'Bible stories, English -- Juvenile literature'), +(2638, 'Taverns (Inns) -- England'), +(2639, 'Natural history -- South America'), +(2640, 'Cub Scouts -- Juvenile fiction'), +(2641, 'Criticism'), +(2642, 'Marriage -- Humor'), +(2643, 'France -- History -- Louis XV, 1715-1774 -- Fiction'), +(2644, 'English literature -- 19th century -- History and criticism'), +(2645, 'American literature'), +(2646, 'Postage stamps -- Canada'), +(2647, 'Infants'), +(2648, 'Sévigné, Marie de Rabutin-Chantal, marquise de, 1626-1696'), +(2649, 'United States -- History -- Colonial period, ca. 1600-1775'), +(2650, 'Authors, French'), +(2651, 'Dutch poetry'), +(2652, 'Design'), +(2653, 'Danish poetry'), +(2654, 'Kościuszko, Tadeusz, 1746-1817'), +(2655, 'Canada -- Description and travel'), +(2656, 'Eton College'), +(2657, 'Goethe, Johann Wolfgang von, 1749-1832. Hermann und Dorothea'), +(2658, 'Offensive (Military science)'), +(2659, 'Imaginary wars and battles -- Fiction'), +(2660, 'Defoe, Daniel, 1661?-1731'), +(2661, 'Guatemala'), +(2662, 'Royal Canadian Mounted Police -- Fiction'), +(2663, 'Publishers\' catalogs -- England -- London'), +(2664, 'Poisonous snakes -- Kansas'), +(2665, 'Lincoln, Abraham, 1809-1865 -- Caricatures and cartoons'), +(2666, 'Savary, Anne-Jean-Marie-René, duc de Rovigo, 1774-1833'), +(2667, 'Insects'), +(2668, 'Vienna (Austria) -- Description and travel'), +(2669, 'Paraphilias in literature -- Bibliography'), +(2670, 'Gold mines and mining -- Alaska -- Fiction'), +(2671, 'Caribbean Area -- Fiction'), +(2672, 'Farmers -- Juvenile fiction'), +(2673, 'Horace -- Translations into English'), +(2674, 'Relay racing -- Juvenile fiction'), +(2675, 'Zulu War, 1879 -- Juvenile fiction'), +(2676, 'Technology -- Juvenile literature'), +(2677, 'United States -- Social conditions -- 1865-1918 -- Fiction'), +(2678, 'Science -- Bibliography -- Catalogs'), +(2679, 'Kolos'), +(2680, 'Rowing -- Juvenile fiction'), +(2681, 'Chipmunks -- Juvenile fiction'), +(2682, 'Americans -- England -- Drama'), +(2683, 'Vampires'), +(2684, 'Wiltshire (England) -- Biography'), +(2685, 'Clyde, Colin Campbell, Baron, 1792-1863'), +(2686, 'Fort Sumter (Charleston, S.C.)'), +(2687, 'World War, 1914-1918 -- Czech Republic -- Bohemia'), +(2688, 'Conversation -- Fiction'), +(2689, 'Jesus Christ -- Poetry'), +(2690, 'Frontier thesis'), +(2691, 'Tungsten lamps -- Testing'), +(2692, 'Second Advent'), +(2693, 'Grace (Theology)'), +(2694, 'Philosophy, Modern'), +(2695, 'Firozpur (India) -- Politics and government'), +(2696, 'Dying and rising gods -- Comparative studies'), +(2697, 'Frontier and pioneer life -- Ontario'), +(2698, 'Washington (D.C.) -- Social life and customs'), +(2699, 'Indians of North America -- Statistics'), +(2700, 'Anthony, Susan B. (Susan Brownell), 1820-1906'), +(2701, 'Literature and medicine'), +(2702, 'Petroleum'), +(2703, 'Vikings -- Juvenile fiction'), +(2704, 'Louis XIV, King of France, 1638-1715 -- Fiction'), +(2705, 'English language -- Dictionaries -- Esperanto'), +(2706, 'Unitarianism'), +(2707, 'Jews -- Fiction'), +(2708, 'Overland journeys to the Pacific -- Fiction'), +(2709, 'Telford, Thomas, 1757-1834'), +(2710, 'Free thought -- History'), +(2711, 'Young women -- Conduct of life -- Juvenile fiction'), +(2712, 'Eastman, Charles Alexander, 1858-1939 -- Childhood and youth'), +(2713, 'Religion and science'), +(2714, 'Scotland -- Description and travel'), +(2715, 'Play'), +(2716, 'Portuguese literature'), +(2717, 'Virginia -- History -- Revolution, 1775-1783 -- Fiction'), +(2718, 'Morgenthaler, Hans, 1890-1928'), +(2719, 'Physicians'), +(2720, 'Edinburgh (Scotland) -- Fiction'), +(2721, 'Great Britain -- Politics and government -- 1760-1789'), +(2722, 'Motorboats -- Juvenile fiction'), +(2723, 'United States -- History -- Civil War, 1861-1865 -- Campaigns'), +(2724, 'Transvaal (South Africa) -- History'), +(2725, 'Bible. Kings, 2nd'), +(2726, 'Adoption -- Fiction'), +(2727, 'Courtesy -- Early works to 1800'), +(2728, 'Cattle breeders -- Fiction'), +(2729, 'Spanish drama'), +(2730, 'Nicaraguan literature'), +(2731, 'Dime novels -- History and criticism'), +(2732, 'Labrador (N.L.) -- Economic conditions'), +(2733, 'Catholic Church -- Customs and practices'), +(2734, 'Maori (New Zealand people)'), +(2735, 'Ocean'), +(2736, 'Great Britain -- History -- Wars of the Roses, 1455-1485'), +(2737, 'Abelard, Peter, 1079-1142 -- Relations with women'), +(2738, 'Daughters of Charity of St. Vincent de Paul'), +(2739, 'Girls -- Fiction'), +(2740, 'Economics -- Examinations, questions, etc.'), +(2741, 'Americans -- Italy -- Fiction'), +(2742, 'Geology -- Juvenile literature'), +(2743, 'Christian saints -- Spain -- Avila -- Biography'), +(2744, 'Two thousand, A.D. -- Fiction'), +(2745, 'Church of England -- Sermons'), +(2746, 'Horses -- History'), +(2747, 'Women -- Early works to 1800'), +(2748, 'Horn of Africa -- Description and travel'), +(2749, 'Bible. Old Testament -- Introductions'), +(2750, 'Spiritual life -- Catholic Church'), +(2751, 'France -- History -- Francis I, 1515-1547'), +(2752, 'Birds -- Florida'), +(2753, 'Northwest, Canadian -- Juvenile fiction'), +(2754, 'Short stories, New Zealand'), +(2755, 'Carr, O. A., Mrs., 1846-1907'), +(2756, 'Aging parents -- Drama'), +(2757, 'Agriculture'), +(2758, 'Hedonism'), +(2759, 'Trollope, Anthony, 1815-1882 -- Criticism and interpretation'), +(2760, 'Hazing -- Juvenile fiction'), +(2761, 'Bodleian Library'), +(2762, 'Portuguese fiction -- 20th century'), +(2763, 'Runaway teenagers -- Fiction'), +(2764, 'Guilds'), +(2765, 'Short stories, Dutch'), +(2766, 'Chastity -- Drama'), +(2767, 'Banks and banking'), +(2768, 'Surrey (England) -- Pictorial works'), +(2769, 'Cornaro, Luigi, 1475-1566'), +(2770, 'Plants, Useful -- Tropics'), +(2771, 'Letter writing -- History -- To 1500 -- Sources'), +(2772, 'Indians of North America -- Languages'), +(2773, 'China -- Description and travel'), +(2774, 'Norway -- Social life and customs -- Fiction'), +(2775, 'Fishing -- Norway'), +(2776, 'Spies -- Great Britain -- Biography'), +(2777, 'Horses'), +(2778, 'Nitrogen-fixing microorganisms'), +(2779, 'Mahdi, Muhammad Ahmad, 1848-1885 -- Fiction'), +(2780, 'Catholic Church -- France'), +(2781, 'Bible. New Testament'), +(2782, 'Arabic poetry -- Translations into English'), +(2783, 'Nova Scotia -- History -- 20th century -- Fiction'), +(2784, 'Shakespeare, William, 1564-1616 -- Authorship -- Baconian theory'), +(2785, 'Sandwiches'), +(2786, 'British -- Austria -- Fiction'), +(2787, 'Idaho -- Politics and government'), +(2788, 'Brothers -- Juvenile fiction'), +(2789, 'Civilization, Homeric'), +(2790, 'Indians of North America -- West (U.S.)'), +(2791, 'Witches -- Juvenile fiction'), +(2792, 'Casas, Bartolomé de las, 1474-1566'), +(2793, 'Tales -- Wales'), +(2794, 'Boats and boating -- Juvenile fiction'), +(2795, 'Authors, French -- 17th century -- Drama'), +(2796, 'Canadian Rockies (B.C. and Alta.) -- Fiction'), +(2797, 'Science fiction, American'), +(2798, 'India -- History -- Chitral Campaign, 1895'), +(2799, 'Frontier and pioneer life -- Montana'), +(2800, 'Architecture, Domestic'), +(2801, 'Handbooks, vade-mecums, etc.'), +(2802, 'Cricket'), +(2803, 'Boys -- England -- Juvenile fiction'), +(2804, 'Plantation life -- Alabama'), +(2805, 'Knowledge, Theory of (Religion) -- Early works to 1800'), +(2806, 'Great Britain -- History -- William I, 1066-1087'), +(2807, 'Law -- Philosophy'), +(2808, 'Art -- Italy -- Rome'), +(2809, 'Adventure stories, English'), +(2810, 'Building'), +(2811, 'Children -- Fiction'), +(2812, 'Great Britain. Army. Manchester Regiment. Battalion, 7th (Territorial)'), +(2813, 'Heart -- Diseases'), +(2814, 'Church and state -- Fiction'), +(2815, 'Didactic fiction'), +(2816, 'Great Britain -- Biography'), +(2817, 'Confederate States of America. Army. Tennessee Cavalry Regiment, 4th'), +(2818, 'Crummell, Alexander, 1819-1898'), +(2819, 'United States -- Politics and government -- 1865-1900'), +(2820, 'Storytelling -- Fiction'), +(2821, 'Jesus Christ -- Last days'), +(2822, 'Chinese poetry -- Translations into English'), +(2823, 'Dueling'), +(2824, 'Rome (Italy) -- History -- Revolution of 1848-1849'), +(2825, 'Bee culture -- Periodicals'), +(2826, 'Henry III, King of Castile and León, 1379-1406 -- Fiction'), +(2827, 'Magic -- Fiction'), +(2828, 'Singers -- Fiction'), +(2829, 'Lewis, Meriwether, 1774-1809 -- Travel -- West (U.S.)'), +(2830, 'Amateur plays'), +(2831, 'Inn signs'), +(2832, 'Geography'), +(2833, 'Mothers and sons -- Fiction'), +(2834, 'Cello'), +(2835, 'Guarani Indians -- Fiction'), +(2836, 'Laudatory poetry, Latin -- Translations into English'), +(2837, 'Great Britain. Army. Highland Light Infantry. Battalion, 5th'), +(2838, 'Sheppard, Jack, 1702-1724'), +(2839, 'Criminal anthropology'), +(2840, 'Baseball players -- Fiction'), +(2841, 'Coal mines and mining -- Safety measures -- Juvenile fiction'), +(2842, 'Gardens -- Juvenile fiction'), +(2843, 'United States -- History -- Revolution, 1775-1783 -- Juvenile fiction'), +(2844, 'Wales -- Social life and customs'), +(2845, 'California, Southern -- Description and travel'), +(2846, 'Relativity (Physics)'), +(2847, 'English literature -- Bio-bibliography'), +(2848, 'Papacy -- History -- 1799-1870'), +(2849, 'Children\'s stories, American'), +(2850, 'Saudi Arabia -- Juvenile literature'), +(2851, 'Postal service -- United States -- History'), +(2852, 'Dialect poetry, English -- England -- Yorkshire'), +(2853, 'Nannies -- Juvenile fiction'), +(2854, 'Engraving'), +(2855, 'Bridges'), +(2856, 'Welsh literature -- 18th century'), +(2857, 'Suez (Egypt) -- Description and travel'), +(2858, 'Grandmothers -- Juvenile fiction'), +(2859, 'Chinese essays'), +(2860, 'Labor movement'), +(2861, 'Great Britain -- History -- To 55 B.C.'), +(2862, 'Thames River (England) -- Fiction'), +(2863, 'California -- Juvenile fiction'), +(2864, 'Trachemys scripta'), +(2865, 'Rome (Italy) -- Social life and customs'), +(2866, 'Coniston (Cumbria, England)'), +(2867, 'Galton, Francis, 1822-1911'), +(2868, 'Ruskin, John, 1819-1900'), +(2869, 'Isle of Wight (England) -- Description and travel'), +(2870, 'French drama -- 20th century'), +(2871, 'Saint Bartholomew\'s Day, Massacre of, France, 1572 -- Fiction'), +(2872, 'Natural history -- Patagonia (Argentina and Chile)'), +(2873, 'Catholics -- United States -- Fiction'), +(2874, 'France -- Biography'), +(2875, 'Jefferson, Thomas, 1743-1826 -- Fiction'), +(2876, 'Advertising -- Books'), +(2877, 'Babylonia -- History'), +(2878, 'Zoology -- History'), +(2879, 'Generals'), +(2880, 'Perry, Matthew Calbraith, 1794-1858'), +(2881, 'Literature, Medieval -- History and criticism'), +(2882, 'Lyons, Richard Bickerton Pemell Lyons, Earl, 1817-1887'), +(2883, 'Summer -- Juvenile fiction'), +(2884, 'Peru -- History -- Conquest, 1522-1548'), +(2885, 'Scotland -- Description and travel -- Juvenile literature'), +(2886, 'Lake District (England) -- Literary collections'), +(2887, 'Jefferson, Thomas, 1743-1826'), +(2888, 'Peru -- History -- Insurrection of Tupac Amaru, 1780-1781'), +(2889, 'Napoleon III, Emperor of the French, 1808-1873'), +(2890, 'Dino, Dorothée, duchesse de, 1793-1862'), +(2891, 'Theosophy -- Controversial literature'), +(2892, 'Du Barry, Jeanne Bécu, comtesse, 1743-1793 -- Fiction'), +(2893, 'Dance -- Early works to 1800'), +(2894, 'South America -- History'), +(2895, 'Richelieu, Armand Jean du Plessis, duc de, 1585-1642 -- Fiction'), +(2896, 'Authors, English -- 18th century -- Biography'), +(2897, 'Logic, Symbolic and mathematical'), +(2898, 'Great Britain -- History -- James I, 1603-1625 -- Fiction'), +(2899, 'French language -- Slang -- Dictionaries'), +(2900, 'Stepsisters -- Fiction'), +(2901, 'Indians of North America -- Northwest, Canadian'), +(2902, 'World War, 1914-1918 -- England -- Fiction'), +(2903, 'Theism'), +(2904, 'Rome -- History -- Republic, 265-30 B.C.'), +(2905, 'Odysseus, King of Ithaca (Mythological character) -- Poetry'), +(2906, 'Basketball stories'), +(2907, 'English literature -- 20th century'), +(2908, 'Fishing -- England -- Tees River'), +(2909, 'Voyages, Imaginary'), +(2910, 'Illness -- Fiction'), +(2911, 'Homeopathy -- Materia medica and therapeutics'), +(2912, 'Smith, Joseph, Jr., 1805-1844 -- Fiction'), +(2913, 'Wool industry -- England -- Early works to 1800'), +(2914, 'Hunting -- Africa'), +(2915, 'Great Britain -- History -- Fiction'), +(2916, 'Chautauqua Institution'), +(2917, 'Artists -- Europe'), +(2918, 'China -- History -- Tang dynasty, 618-907 -- Anecdotes'), +(2919, 'Great Britain. Stamp Act (1765)'), +(2920, 'Goethe, Johann Wolfgang von, 1749-1832 -- Fiction'), +(2921, 'Kestner, Johann Christian, 1741-1800'), +(2922, 'Books -- History'), +(2923, 'Vacations -- Fiction'), +(2924, 'Stringed instruments'), +(2925, 'Medicine, Popular'), +(2926, 'Canada -- Poetry'), +(2927, 'Traditional medicine'), +(2928, 'Scientists -- Biography'), +(2929, 'Ireland -- Biography'), +(2930, 'Indians of North America -- Southwest, New -- Juvenile fiction'), +(2931, 'African Americans -- History -- 1877-1964 -- Sources'), +(2932, 'Afrikaners -- Fiction'), +(2933, 'Adventure stories, American'), +(2934, 'World War, 1914-1918 -- Veterans -- Fiction'), +(2935, 'Magalhães, Fernão de, -1521 -- Juvenile literature'), +(2936, 'World War, 1914-1918 -- Atrocities'), +(2937, 'Hunting -- Dictionaries'), +(2938, 'Egypt -- Fiction'), +(2939, 'San Francisco (Calif.) -- Juvenile fiction'), +(2940, 'South Africa -- History -- Frontier Wars, 1811-1878 -- Juvenile fiction'), +(2941, 'National songs -- United States'), +(2942, 'Geographical myths -- Fiction'), +(2943, 'Game-laws -- United States'), +(2944, 'Glass'), +(2945, 'Bible. Song of Solomon'), +(2946, 'Pietism'), +(2947, 'Kansas -- Fiction'), +(2948, 'London (England) -- Religion'), +(2949, 'Passive resistance'), +(2950, 'Collective settlements -- United States'), +(2951, 'Children\'s poetry, English'), +(2952, 'Federal Writers\' Project. Slave narratives'), +(2953, 'Shakespeare, William, 1564-1616 -- Knowledge -- Ornithology'), +(2954, 'Corporation of London (England) -- Politics and government'), +(2955, 'Waterloo, Battle of, Waterloo, Belgium, 1815 -- Personal narratives, British'), +(2956, 'Romney, George, 1734-1802'), +(2957, 'India -- History -- British occupation, 1765-1947'), +(2958, 'Sakhalin (Sakhalinskaia oblast\', Russia)'), +(2959, 'Intellectuals -- Ireland -- Biography'), +(2960, 'Oulu (Finland) -- Biography -- Anecdotes, facetiae, satire, etc.'), +(2961, 'Belief and doubt -- Fiction'), +(2962, 'Church history -- 4th century -- Fiction'), +(2963, 'Resorts -- Fiction'), +(2964, 'Great Britain -- History -- Norman period, 1066-1154'), +(2965, 'English wit and humor, Pictorial'), +(2966, 'World War, 1914-1918 -- Campaigns -- Turkey and the Near East -- Mesopotamia'), +(2967, 'Clergy -- Kentucky -- Biography'), +(2968, 'Shenandoah River Valley (Va. and W. Va.) -- History'), +(2969, 'Victoria -- Social life and customs'), +(2970, 'Mediterranean Region -- Description and travel'), +(2971, 'French drama -- 18th century -- Translations into English'), +(2972, 'Paris (France) -- Description and travel'), +(2973, 'Radiation'), +(2974, 'Prisoners -- Poetry'), +(2975, 'Rhine River -- Fiction'), +(2976, 'Norfolk Island -- History'), +(2977, 'Fraud'), +(2978, 'United States. Life-Saving Service -- History -- Juvenile fiction'), +(2979, 'Electricity'), +(2980, 'Houston (Tex.) -- Description and travel'), +(2981, 'Nonsense verses'), +(2982, 'Spanish literature -- 19th century'), +(2983, 'Copyright, International'), +(2984, 'Satire, American'), +(2985, 'Utah -- Fiction'), +(2986, 'Epic literature'), +(2987, 'Mississippi River Valley -- Discovery and exploration'), +(2988, 'Poets, Italian -- Biography'), +(2989, 'Coca -- Therapeutic use'), +(2990, 'Children\'s songs'), +(2991, 'Local government -- Italy -- Lombardy'), +(2992, 'Authors, English -- Early modern, 1500-1700 -- Biography'), +(2993, 'Gautier, Théophile, 1811-1872'), +(2994, 'Boy Scouts of America -- Juvenile fiction'), +(2995, 'Puddings -- Juvenile fiction'), +(2996, 'Small houses -- United States -- Designs and plans -- Catalogs'), +(2997, 'Jewish cooking'), +(2998, 'English literature -- Periodicals'), +(2999, 'New York (N.Y.) -- Social life and customs -- Fiction'), +(3000, 'Florence (Italy) -- History -- To 1421'), +(3001, 'Great Britain -- History -- James II, 1685-1688'), +(3002, 'Vassar College'), +(3003, 'Democracy'), +(3004, 'South African War, 1899-1902 -- Causes'), +(3005, 'China -- Politics and government'), +(3006, 'Rodin, Auguste, 1840-1917'), +(3007, 'France -- History -- February Revolution, 1848 -- Fiction'), +(3008, 'Kentucky -- Social life and customs -- Fiction'), +(3009, 'Libraries -- Kentucky -- Louisville'), +(3010, 'Napoleon I, Emperor of the French, 1769-1821 -- Influence'), +(3011, 'Popular instrumental music -- 1911-1920'), +(3012, 'Hawaii -- Politics and government -- To 1893'), +(3013, 'Colorado -- Juvenile fiction'), +(3014, 'Clergy -- England -- Fiction'), +(3015, 'Editors -- Fiction'), +(3016, 'Indiana -- Fiction'), +(3017, 'French drama -- 19th century'), +(3018, 'Precious metals -- Europe'), +(3019, 'Huguenots -- France -- Juvenile fiction'), +(3020, 'Railroads -- United States -- Finance'), +(3021, 'Sermons'), +(3022, 'Restaurants -- England -- London -- Guidebooks'), +(3023, 'Soap'), +(3024, 'Men -- Fiction'), +(3025, 'Finance -- Argentina'), +(3026, 'Belgium'), +(3027, 'Atlantic Coast (U.S.) -- Description and travel'), +(3028, 'Fig'), +(3029, 'Paraphilias'), +(3030, 'Sheep -- Juvenile literature'), +(3031, 'Technology -- Social aspects'), +(3032, 'Scots language -- Etymology -- Dictionaries'), +(3033, 'Power (Mechanics) -- Fiction'), +(3034, 'Jews -- Egypt'), +(3035, 'Panama-Pacific International Exposition (1915 : San Francisco, Calif.)'), +(3036, 'Yukon River Valley (Yukon and Alaska) -- Fiction'), +(3037, 'Ampleforth College -- Pictorial works'), +(3038, 'Journalism -- Handbooks, manuals, etc.'), +(3039, 'Seafaring life -- Fiction'), +(3040, 'York (England) -- Social life and customs'), +(3041, 'Argentina -- Colonization'), +(3042, 'Isabel, Queen, consort of Dinis, King of Portugal, 1271-1336'), +(3043, 'American literature -- History and criticism'), +(3044, 'Ingres, Jean-Auguste-Dominique, 1780-1867'), +(3045, 'Sonatas (Piano) -- History and criticism'), +(3046, 'Devotional exercises'), +(3047, 'Crete (Greece) -- Antiquities'), +(3048, 'Sousa-Cardoso, Amadeu de, 1887-1918 -- Exhibitions'), +(3049, 'Heredity'), +(3050, 'Gunpowder Plot, 1605 -- Fiction'), +(3051, 'Padua (Italy) -- Drama'), +(3052, 'Sex'), +(3053, 'Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse, 1774-1852'), +(3054, 'Pinkerton, Allan, 1819-1884'), +(3055, 'Fire fighters'), +(3056, 'Turning (Lathe work)'), +(3057, 'Foxes -- Fiction'), +(3058, 'Folk songs, Slavic'), +(3059, 'Wit and humor, Juvenile'), +(3060, 'Boys -- Conduct of life -- Juvenile poetry'), +(3061, 'Asia, Central -- History'), +(3062, 'France -- History -- Wars of the Huguenots, 1562-1598 -- Fiction'), +(3063, 'Bird, Isabella L. (Isabella Lucy), 1831-1904 -- Travel -- China -- Tibet Autonomous Region'), +(3064, 'Langford, Nathaniel Pitt, 1832-1911 -- Diaries'), +(3065, 'Judaism -- Fiction'), +(3066, 'Nautical charts'), +(3067, 'Verrazzano, Giovanni da, 1485-1528'), +(3068, 'Kindergarten -- Methods and manuals'), +(3069, 'Ferrier, James Frederick, 1808-1864'), +(3070, 'Painting, Industrial'), +(3071, 'Trees -- Fiction'), +(3072, 'Shelley, Percy Bysshe, 1792-1822'), +(3073, 'Beavers'), +(3074, 'Missouri -- History -- Civil War, 1861-1865'), +(3075, 'France -- History -- 19th century -- Fiction'), +(3076, 'Peritoneum'), +(3077, 'Horror tales, German'), +(3078, 'Children\'s poetry, Dutch'), +(3079, 'Bible. Minor Prophets -- Commentaries'), +(3080, 'Art, Modern -- 19th century -- Periodicals'), +(3081, 'Russia -- Officials and employees -- Fiction'), +(3082, 'Iles-de-la-Madeleine (Québec) -- Fiction'), +(3083, 'World War, 1914-1918 -- Campaigns -- France'), +(3084, 'Female friendship -- Fiction'), +(3085, 'Mars, Mademoiselle, 1779-1847'), +(3086, 'Storms -- Great Britain -- Early works to 1800'), +(3087, 'Animal welfare -- Juvenile fiction'), +(3088, 'Goethe, Johann Wolfgang von, 1749-1832'), +(3089, 'Plants -- Alaska'), +(3090, 'Municipal government -- Fiction'), +(3091, 'Sawyer, Tom (Fictitious character) -- Fiction'), +(3092, 'Great Britain -- Social life and customs -- 19th century -- Fiction'), +(3093, 'France -- Social life and customs'), +(3094, 'Physicians\' spouses -- Fiction'), +(3095, 'Epic poetry, German -- Translations into English'), +(3096, 'Rogerenes -- History'), +(3097, 'Social registers -- Fiction'), +(3098, 'Flights around the world -- Juvenile fiction'), +(3099, 'Kentucky -- History'), +(3100, 'Great Britain -- History -- Roman period, 55 B.C.-449 A.D.'), +(3101, 'Germany, Northern -- Juvenile fiction'), +(3102, 'Law -- Spain -- History'), +(3103, 'Cuffe, Paul, 1795 or 1796-'), +(3104, 'Digital media -- Dictionaries'), +(3105, 'Anthropology'), +(3106, 'Mechanics -- Fiction'), +(3107, 'Lausanne (Switzerland) -- Description and travel'), +(3108, 'Birds -- England'), +(3109, 'Thompson, Samuel, 1810-1886'), +(3110, 'Oceania -- Discovery and exploration -- Dutch -- Fiction'), +(3111, 'Bible. Gospels -- Criticism, interpretation, etc.'), +(3112, 'Communism -- Russia'), +(3113, 'Diderot, Denis, 1713-1784'), +(3114, 'Deserts -- Juvenile fiction'), +(3115, 'War poetry, English'), +(3116, 'Physicians -- Drama'), +(3117, 'Burgundy (France) -- Fiction'), +(3118, 'Christian saints -- Cult'), +(3119, 'United States -- Territorial expansion'), +(3120, 'Social problems'), +(3121, 'Wang, Zhaojun, 53 B.C.-18 A.D. -- Fiction'), +(3122, 'Romances, Dutch'), +(3123, 'French language -- Dialects -- Switzerland'), +(3124, 'Airships -- Juvenile fiction'), +(3125, 'Wordsworth, William, 1770-1850'), +(3126, 'Zanzibar -- Description and travel'), +(3127, 'English language -- Slang'), +(3128, 'Reproduction'), +(3129, 'Aunts -- Juvenile fiction'), +(3130, 'Belgian poetry (French)'), +(3131, 'Folklore -- Scotland'), +(3132, 'Bible stories, English -- New Testament -- Juvenile literature'), +(3133, 'Circus -- Juvenile fiction'), +(3134, 'Marie Louise, Empress, consort of Napoleon I, Emperor of the French, 1791-1847'), +(3135, 'African Americans -- Poetry'), +(3136, 'England -- Social life and customs -- 19th century'), +(3137, 'Italian literature -- Translations into Finnish'), +(3138, 'Svalbard (Norway) -- Description and travel'), +(3139, 'University of Oxford'), +(3140, 'Vico, Giambattista, 1668-1744'), +(3141, 'Elephants -- Sri Lanka'), +(3142, 'Fuji, Mount (Japan) -- Description and travel'), +(3143, 'Mozart, Wolfgang Amadeus, 1756-1791'), +(3144, 'Children\'s stories, German -- Translations into English'), +(3145, 'Youth and death -- Juvenile fiction'), +(3146, 'Woomera, 1817-1900'), +(3147, 'Scientific apparatus and instruments'), +(3148, 'Central America -- Fiction'), +(3149, 'Litchfield (Conn.) -- Poetry'), +(3150, 'Pharmacology -- Periodicals'), +(3151, 'India -- Religion -- Fiction'), +(3152, 'Kelvin, William Thomson, Baron, 1824-1907'), +(3153, 'Château de Versailles (Versailles, France)'), +(3154, 'Christian saints -- Quotations'), +(3155, 'Airships -- Britain -- History'), +(3156, 'Connecticut -- Intellectual life'), +(3157, 'Bible. Ecclesiastes'), +(3158, 'French -- Mississippi River Valley'), +(3159, 'Ethnology -- Europe'), +(3160, 'Salomons, Anna Maria Francisca, 1885-1980'), +(3161, 'Mormon pioneers -- Fiction'), +(3162, 'Chiado, António Ribeiro, approximately 1520-1591'), +(3163, 'Stevenson, Robert Louis, 1850-1894'), +(3164, 'Tecumseh, Shawnee chief, 1768-1813 -- Drama'), +(3165, 'Russia -- Social conditions -- 1801-1917 -- Drama'), +(3166, 'Axholme, Isle of (England) -- History -- Fiction'), +(3167, 'Students -- Germany'), +(3168, 'Paris (France) -- Buildings, structures, etc.'), +(3169, 'Bible. Jeremiah -- Commentaries'), +(3170, 'Andersonville Prison'), +(3171, 'Oregon Caves National Monument (Or.)'), +(3172, 'Southern States -- Description and travel'), +(3173, 'Peasants -- France -- Fiction'), +(3174, 'Hens -- Juvenile fiction'), +(3175, 'Historical fiction, American'), +(3176, 'Zoology -- Periodicals'), +(3177, 'Christian literature, English -- History and criticism'), +(3178, 'Totemism'), +(3179, 'National libraries -- New Zealand -- Periodicals'), +(3180, 'Book ornamentation'), +(3181, 'Mysticism -- Catholic Church'), +(3182, 'Composers -- Russia -- Biography'), +(3183, 'Journalism'), +(3184, 'Elocution'), +(3185, 'Jews -- Netherlands -- Amsterdam'), +(3186, 'Mormons -- Arizona -- History'), +(3187, 'Chinese fiction'), +(3188, 'Mistaken identity -- Juvenile fiction'), +(3189, 'Epistolary fiction, English -- 18th century'), +(3190, 'Primates'), +(3191, 'Success in business'), +(3192, 'Maritime Provinces -- Description and travel'), +(3193, 'Mariamne, consort of Herod I, King of Judea, approximately 57 B.C.-approximately 29 B.C. -- Drama'), +(3194, 'Richardson, Samuel, 1689-1761. Pamela'), +(3195, 'Radio -- Fiction'), +(3196, 'Frontier and pioneer life -- West (U.S.) -- Fiction'), +(3197, 'Fermentation'), +(3198, 'African Americans -- Music'), +(3199, 'Great Britain -- Politics and government -- 1660-1714'), +(3200, 'Motion pictures -- Production and direction -- Juvenile fiction'), +(3201, 'Railroads -- Great Britain'), +(3202, 'Saints -- Scotland'), +(3203, 'Celts -- Folklore'), +(3204, 'Finland -- Church history'), +(3205, 'Pacific Area -- Fiction'), +(3206, 'Archaeology -- Periodicals'), +(3207, 'Legends -- Scandinavia'), +(3208, 'Princesses -- Fiction'), +(3209, 'Civilization, Celtic, in literature'), +(3210, 'Boys -- Fiction'), +(3211, 'Washington, George, 1732-1799 -- Juvenile fiction'), +(3212, 'Fuller, Margaret, 1810-1850 -- Travel -- Northwest, Old'), +(3213, 'Sex role -- Fiction'), +(3214, 'Catholic Church -- Prayers and devotions'), +(3215, 'Smith College -- Fiction'), +(3216, 'Women teachers -- Fiction'), +(3217, 'Crimean War, 1853-1856'), +(3218, 'Botticelli, Sandro, 1444 or 5-1510'), +(3219, 'United States -- History -- War of 1812 -- Naval operations -- Juvenile fiction'), +(3220, 'First loves -- Juvenile fiction'), +(3221, 'Railroads -- England -- London'), +(3222, 'Great Britain -- Intellectual life'), +(3223, 'French wit and humor -- Translations into English'), +(3224, 'Chinese fiction -- 20th century'), +(3225, 'United States -- Social life and customs -- 20th century -- Juvenile fiction'), +(3226, 'Solomon, King of Israel -- Fiction'), +(3227, 'African Americans -- History'), +(3228, 'Salome (Biblical figure) -- Fiction'), +(3229, 'Leonardo, da Vinci, 1452-1519. Mona Lisa -- Fiction'), +(3230, 'Romances -- Translations into English'), +(3231, 'Portuguese drama'), +(3232, 'United States artillery. Gatling gun detachment (5th corps) 1898'), +(3233, 'Xuanzang, approximately 596-664 -- Fiction'), +(3234, 'William II, German Emperor, 1859-1941'), +(3235, 'Tales -- North America'), +(3236, 'Tieck, Ludwig, 1773-1853 -- Correspondence'), +(3237, 'Frontier and pioneer life -- Fiction'), +(3238, 'India -- History -- Autonomy and independence movements -- Fiction'), +(3239, 'Printing -- History'), +(3240, 'St. Paul\'s Cathedral (London, England)'), +(3241, 'Crook, George, 1829-1890'), +(3242, 'Adventure and adventurers -- Juvenile fiction'), +(3243, 'Shakespeare, William, 1564-1616 -- Poetry'), +(3244, 'Cathedrals -- England'), +(3245, 'Frontier and pioneer life -- Minnesota -- Fiction'), +(3246, 'Clothing and dress -- Great Britain'), +(3247, 'Eden, Emily, 1797-1869 -- Correspondence'), +(3248, 'Girls -- England -- Juvenile fiction'), +(3249, 'Massachusetts -- Fiction'), +(3250, 'Indians of North America -- Antiquities'), +(3251, 'Entertaining -- Juvenile fiction'), +(3252, 'Physicians -- Biography'), +(3253, 'Differential equations'), +(3254, 'Ritual'), +(3255, 'United States -- History -- Civil War, 1861-1865 -- Poetry'), +(3256, 'Shoemakers -- Juvenile fiction'), +(3257, 'Bible stories, Swedish -- Periodicals'), +(3258, 'Courtship -- Drama'), +(3259, 'Oceania -- Description and travel'), +(3260, 'English language -- Semantics -- Humor'), +(3261, 'Whaling'), +(3262, 'Purcell, Henry, 1659-1695'), +(3263, 'Gérôme, Jean Léon, 1824-1904'), +(3264, 'Squirrels -- Juvenile fiction'), +(3265, 'College teachers -- Fiction'), +(3266, 'World War, 1914-1918 -- Treaties'), +(3267, 'Unitarians'), +(3268, 'Entertaining'), +(3269, 'Cannibalism -- Juvenile fiction'), +(3270, 'Trees -- United States'), +(3271, 'America -- Discovery and exploration -- Spanish -- Early works to 1800'), +(3272, 'London (England) -- Church history'), +(3273, 'Church of Jesus Christ of Latter-day Saints -- History'), +(3274, 'Information society'), +(3275, 'Plants -- India, South'), +(3276, 'Wolves -- Fiction'), +(3277, 'Criminals'), +(3278, 'Bible. Mark'), +(3279, 'Charles I, King of England, 1600-1649'), +(3280, 'Nashville, Battle of, Nashville, Tenn., 1864'), +(3281, 'Fairs -- Juvenile fiction'), +(3282, 'Bruges (Belgium) -- Pictorial works'), +(3283, 'Romanian poetry'), +(3284, 'Spain -- Social life and customs -- Fiction'), +(3285, 'Woodruff, Wilford, 1807-1898'), +(3286, 'Women physicians -- Fiction'), +(3287, 'Sailors -- England -- History -- 16th century'), +(3288, 'Mexico -- History -- European intervention, 1861-1867 -- Personal narratives, Canadian'), +(3289, 'Parrots'), +(3290, 'Leland, Charles Godfrey, 1824-1903'), +(3291, 'Voyages around the world -- Juvenile fiction'), +(3292, 'Evangelists -- United States -- Biography'), +(3293, 'Trees -- Illinois'), +(3294, 'Romanies -- Fiction'), +(3295, 'Rites and ceremonies'), +(3296, 'Songs, English -- West (U.S.) -- Texts'), +(3297, 'Japan -- Religion'), +(3298, 'Goethe, Johann Wolfgang von, 1749-1832 -- Criticism and interpretation'), +(3299, 'Blacksmiths -- Fiction'), +(3300, 'Boys'), +(3301, 'Christian life -- Anglican authors'), +(3302, 'Liberia'), +(3303, 'Japan -- History -- Meiji period, 1868-1912 -- Fiction'), +(3304, 'China -- Social life and customs'), +(3305, 'Single women -- Fiction'), +(3306, 'Electric lighting'), +(3307, 'Ireland -- History -- 1760-1820'), +(3308, 'Cities and towns -- Canada'), +(3309, 'Soils'), +(3310, 'Catholic Church. Officium Hebdomadae Sanctae'), +(3311, 'United States -- Politics and government -- 1783-1865'), +(3312, 'Psychiatry -- Early works to 1900'), +(3313, 'Titan (Satellite) -- Fiction'), +(3314, 'Color prints'), +(3315, 'Exeter (England) -- Description and travel'), +(3316, 'Maratha (Indic people) -- History -- Fiction'), +(3317, 'Manned space flight -- Fiction'), +(3318, 'World War, 1914-1918 -- Belgium -- Fiction'), +(3319, 'Catholics -- Fiction'), +(3320, 'World War, 1914-1918 -- Naval operations, British'), +(3321, 'Vegetarian cooking'), +(3322, 'Art -- History'), +(3323, 'French drama -- 17th century'), +(3324, 'Occultism'), +(3325, 'Globalization'), +(3326, 'England -- Humor'), +(3327, 'Chinese fiction -- Translations into French'), +(3328, 'United States. Constitution. 18th amendment'), +(3329, 'Apples'), +(3330, 'Merchant mariners -- Fiction'), +(3331, 'Hardwicke, Charles Philip Yorke, Earl of, 1799-1873'), +(3332, 'British -- Uruguay -- Fiction'), +(3333, 'World War, 1914-1918 -- Campaigns -- Belgium'), +(3334, 'Success -- Juvenile fiction'), +(3335, 'Indians of South America -- Brazil -- Social life and customs'), +(3336, 'Salvation Army'), +(3337, 'Drinking songs'), +(3338, 'Enghien, Louis-Antoine-Henri de Bourbon, duc d\', 1772-1804'), +(3339, 'Frontier and pioneer life -- Ohio River Valley'), +(3340, 'Charleston (S.C.) -- Guidebooks'), +(3341, 'Generals -- Confederate States of America -- Biography'), +(3342, 'Music -- 19th century -- History and criticism'), +(3343, 'Radio -- Juvenile fiction'), +(3344, 'Spiritual life'), +(3345, 'Lumber trade -- Juvenile fiction'), +(3346, 'Great Britain -- Politics and government -- 1837-1901'), +(3347, 'Tales -- Arab countries'), +(3348, 'Rome -- Politics and government -- 510-30 B.C.'), +(3349, 'Bookbinding'), +(3350, 'Outdoor life'), +(3351, 'Ten commandments -- Name of God -- Juvenile fiction'), +(3352, 'Light'), +(3353, 'Precious stones'), +(3354, 'Xenopus laevis -- Dissection'), +(3355, 'Helsinki (Finland) -- Biography'), +(3356, 'Lorraine (France) -- Description and travel'), +(3357, 'Women -- Suffrage -- United States'), +(3358, 'Proverbs'), +(3359, 'Public housing -- England -- London'), +(3360, 'Shakespeare, William, 1564-1616'), +(3361, 'Mammals -- Montana'), +(3362, 'English literature -- Middle English, 1100-1500'), +(3363, 'Midrash -- Translations into English'), +(3364, 'Ireland -- Civilization'), +(3365, 'Brussels (Belgium)'), +(3366, 'English language -- Pronunciation'), +(3367, 'Fantasy fiction, Chinese'), +(3368, 'Vaterland (Steamship)'), +(3369, 'Browning, Robert, 1812-1889 -- Encyclopedias'), +(3370, 'Sweden -- Social life and customs -- 19th century -- Fiction'), +(3371, 'Knox, John, approximately 1514-1572'), +(3372, 'Netherlands -- History -- Eighty Years\' War, 1568-1648'), +(3373, 'Aristocracy (Social class) -- Great Britain -- Fiction'), +(3374, 'Indian Ocean Region -- Commerce -- History'), +(3375, 'Witchcraft -- England -- History'), +(3376, 'Landowners -- Fiction'), +(3377, 'Baseball'), +(3378, 'Runaway husbands -- Fiction'), +(3379, 'Ireland -- Languages'), +(3380, 'Children of prisoners -- Fiction'), +(3381, 'Middle-aged women -- Fiction'), +(3382, 'Dog owners -- Fiction'), +(3383, 'Wildlife conservation -- United States'), +(3384, 'Glass blowing and working'), +(3385, 'Music'), +(3386, 'Germany -- Description and travel'), +(3387, 'Swine'), +(3388, 'Winter sports -- Juvenile fiction'), +(3389, 'Foundlings -- Fiction'), +(3390, 'Bryan, William Jennings, 1860-1925'), +(3391, 'Swordsmen -- Fiction'), +(3392, 'Italian essays'), +(3393, 'Juan, Don (Legendary character) -- Drama'), +(3394, 'Prostitution -- New York (State) -- New York'), +(3395, 'Bible -- Chronology'), +(3396, 'Pioneers -- West (U.S.) -- Biography'), +(3397, 'Holidays -- Fiction'), +(3398, 'Folk literature, Hungarian'), +(3399, 'Bible. Philippians -- Commentaries'), +(3400, 'Ballads, English'), +(3401, 'Children'), +(3402, 'Park, Mungo, 1771-1806'), +(3403, 'America -- Discovery and exploration'), +(3404, 'Italy -- Intellectual life -- 19th century'), +(3405, 'Vigée-Lebrun, Louise-Elisabeth, 1755-1842'), +(3406, 'Dante Alighieri, 1265-1321. Divina commedia'), +(3407, 'Home economics'), +(3408, 'New England -- History -- Colonial period, ca. 1600-1775'), +(3409, 'Fruit-culture -- Queensland'), +(3410, 'Africa, Central -- Juvenile fiction'), +(3411, 'Cooking, Roman -- Early works to 1800'), +(3412, 'Mythology, Greek'), +(3413, 'Birds -- Philippines'), +(3414, 'Atlantic Coast (U.S.) -- Description and travel -- Fiction'), +(3415, 'Hostages -- Fiction'), +(3416, 'London (England) -- Drama'), +(3417, 'Lazarus, of Bethany, Saint'), +(3418, 'Architectural models'), +(3419, 'Liquors'), +(3420, 'Dramatists, English -- 18th century -- Correspondence'), +(3421, 'Sailors -- Fiction'), +(3422, 'Mitchell, Maria, 1818-1889'), +(3423, 'Paint'), +(3424, 'Lönnrot, Elias, 1802-1884'), +(3425, 'Portuguese poetry -- Classical period, 1500-1700'), +(3426, 'Spain -- History -- 19th century -- Fiction'), +(3427, 'Switzerland -- Juvenile fiction'), +(3428, 'Cold War -- Fiction'), +(3429, 'English literature -- 18th century'), +(3430, 'Folklore -- Ireland'), +(3431, 'Carson, Kit, 1809-1868 -- Fiction'), +(3432, 'Pittsburgh (Pa.) -- Fiction'), +(3433, 'Trials (Obscenity) -- France -- History -- 19th century'), +(3434, 'Church of Jesus Christ of Latter-day Saints -- Doctrines'), +(3435, 'Boston (Mass.) -- Social life and customs -- Fiction'), +(3436, 'United States -- Race relations -- Fiction'), +(3437, 'Catholic Church -- Ireland -- Periodicals'), +(3438, 'Furniture -- Private collections -- Belgium -- Inventories.'), +(3439, 'Thoreau, Henry David, 1817-1862 -- Diaries'), +(3440, 'Castelo Branco, Camilo, 1825-1890 -- Bibliography'), +(3441, 'Armor'), +(3442, 'Indians of North America -- Origin'), +(3443, 'Guatemala -- Antiquities'), +(3444, 'Cartagena (Colombia) -- History -- Siege, 1741'), +(3445, 'Low German literature -- Germany -- Osnabrück'), +(3446, 'Alcoholism'), +(3447, 'Rejuvenation -- Fiction'), +(3448, 'Hunt riding'), +(3449, 'Omar Khayyam -- Parodies, imitations, etc.'), +(3450, 'Latin language -- Readers'), +(3451, 'Philosophy, Spanish'), +(3452, 'Short stories, Spanish'), +(3453, 'Snobs and snobbishness -- Humor'), +(3454, 'Church vestments'), +(3455, 'Reconstruction (U.S. history, 1865-1877) -- Georgia'), +(3456, 'Eaton, Peggy, 1799?-1879 -- Fiction'), +(3457, 'Violinists -- Biography'), +(3458, 'Oregon -- Fiction'), +(3459, 'Christmas plays'), +(3460, 'Jesus Christ -- Messiahship'), +(3461, 'Church history -- Primitive and early church, ca. 30-600 -- Sources'), +(3462, 'United States. Navy -- History -- War of 1812'), +(3463, 'Diet'), +(3464, 'Bumppo, Natty (Fictitious character) -- Fiction'), +(3465, 'Women -- Louisiana -- New Orleans -- Social conditions -- Fiction'), +(3466, 'United States. Army -- Juvenile fiction'), +(3467, 'Parker, Cynthia Ann, 1827?-1864'), +(3468, 'Wallenstein, Albrecht Wenzel Eusebius von, Herzog von Friedland, 1583-1634 -- Fiction'), +(3469, 'Fielding, Henry, 1707-1754'), +(3470, 'Faust, -approximately 1540 -- Drama'), +(3471, 'Football'), +(3472, 'Constitutional history -- United States'), +(3473, 'Ducklings -- Juvenile poetry'), +(3474, 'Education -- History'), +(3475, 'Natural history -- Indonesia -- Sumatra'), +(3476, 'Painting -- Italy -- Venice -- History'), +(3477, 'Scotland -- Religious life and customs'), +(3478, 'Grief'), +(3479, 'Jammu and Kashmir (India) -- Description and travel'), +(3480, 'Ghost stories, American'), +(3481, 'Frontier and pioneer life -- California'), +(3482, 'Goncourt, Jules de, 1830-1870 -- Diaries'), +(3483, 'Great Britain -- History -- John, 1199-1216'), +(3484, 'Renaissance -- Italy'), +(3485, 'Authors, Scottish -- 19th century -- Biography'), +(3486, 'Landscape gardening -- Early works to 1800'), +(3487, 'Scientists -- Fiction'), +(3488, 'Cromer (England) -- Guidebooks'), +(3489, 'Nature'), +(3490, 'Huts -- Design and construction'), +(3491, 'United States -- History -- Civil War, 1861-1865 -- Blockades -- Juvenile fiction'), +(3492, 'Parliamentary practice'), +(3493, 'Political corruption -- Fiction'), +(3494, 'Weaving'), +(3495, 'Natural resources'), +(3496, 'Confederate States of America. Army. Tennessee Infantry Regiment, 13th'), +(3497, 'Mammals -- Wyoming'), +(3498, 'Cooking (Game)'), +(3499, 'Ghosts -- Fiction'), +(3500, 'Game and game-birds -- Spain'), +(3501, 'Quotations, English'), +(3502, 'Fathers and daughters -- Drama'), +(3503, 'Sociology'), +(3504, 'English literature -- Translations into French'), +(3505, 'Women -- Suffrage'), +(3506, 'Transformations (Mathematics)'), +(3507, 'Silence, John (Fictitious character) -- Fiction'), +(3508, 'Mary, Queen of Scots, 1542-1587 -- Drama'), +(3509, 'Vocabulary -- Humor'), +(3510, 'Girl Scouts -- United States'), +(3511, 'Detective and mystery stories, English'), +(3512, 'Chaitanya, 1486-1534'), +(3513, 'Missions -- California -- Fiction'), +(3514, 'Frontier and pioneer life -- Ohio'), +(3515, 'Atlases'), +(3516, 'Saratoga Campaign, N.Y., 1777'), +(3517, 'Naturalists -- Great Britain -- Diaries'), +(3518, 'Scotland -- Social life and customs'), +(3519, 'Copyright infringement -- United States'), +(3520, 'Bull Run, 1st Battle of, Va., 1861'), +(3521, 'French drama -- 19th century -- Translations into English'), +(3522, 'United States -- Foreign relations -- Great Britain'), +(3523, 'Married people -- Drama'), +(3524, 'Pests -- Control'), +(3525, 'Tiger -- Juvenile fiction'), +(3526, 'Grandfathers -- Juvenile fiction'), +(3527, 'Radcliffe College -- Juvenile fiction'), +(3528, 'Confucianism'), +(3529, 'College students -- Juvenile fiction'), +(3530, 'Great Britain -- History -- James II, 1685-1688 -- Fiction'), +(3531, 'Finance, Personal -- Fiction'), +(3532, 'Shipwrecks -- Juvenile fiction'), +(3533, 'Rural churches'), +(3534, 'French literature -- To 1500'), +(3535, 'Seafaring life -- Juvenile fiction'), +(3536, 'Physiology'), +(3537, 'North Carolina -- Description and travel -- Early works to 1800'), +(3538, 'United States. Army. Ohio Infantry Regiment, 7th (1861-1864) -- History'), +(3539, 'Young women -- Social conditions -- Juvenile fiction'), +(3540, 'Indians of North America -- Wars -- 1866-1895'), +(3541, 'Frontier and pioneer life -- Québec (Province) -- Juvenile fiction'), +(3542, 'New York (State) -- Politics and government'), +(3543, 'Fort Pulaski (Ga.) -- Siege, 1862'), +(3544, 'Falls Church (Va.) -- History'), +(3545, 'Marquesas Islands (French Polynesia) -- Fiction'), +(3546, 'Variation (Biology)'), +(3547, 'Mythology -- Dictionaries'), +(3548, 'Watt, James, 1736-1819'), +(3549, 'Scott, Winfield, 1786-1866'), +(3550, 'Geography -- Periodicals'), +(3551, 'Theosophy -- Fiction'), +(3552, 'Frontier and pioneer life -- Indiana -- Fiction'), +(3553, 'Indians of North America -- Wars -- Montana'), +(3554, 'Labrador (N.L.) -- Juvenile fiction'), +(3555, 'Puritans -- Fiction'), +(3556, 'Philosophy -- Early works to 1800'), +(3557, 'Pastoral poetry'), +(3558, 'American fiction -- Translations into Finnish'), +(3559, 'State, The -- Early works to 1800'), +(3560, 'Reformed Church -- France -- Clergy -- Correspondence'), +(3561, 'Charleston (S.C.) -- History -- Civil War, 1861-1865 -- Juvenile fiction'), +(3562, 'Governesses -- Juvenile fiction'), +(3563, 'Kachari (Indic people) -- Folklore'), +(3564, 'New Orleans (La.) -- Guidebooks'), +(3565, 'Armenian question'), +(3566, 'Philosophy -- History'), +(3567, 'Free thought -- Early works to 1800'), +(3568, 'Dinners and dining -- Europe'), +(3569, 'Reynolds, Robert Rice, 1884-1963 -- Travel'), +(3570, 'Great Britain. Army. Queen\'s Royal Regiment (West Surrey)'), +(3571, 'Germany -- History -- Late Middle Ages, 1254-1517 -- Fiction'), +(3572, 'New Zealand -- Description and travel'), +(3573, 'Rennie, John, Sir, 1794-1874'), +(3574, 'Rome -- History -- Juvenile literature'), +(3575, 'Theology'), +(3576, 'Shipwreck victims -- Fiction'), +(3577, 'Love-letters -- Early works to 1800'), +(3578, 'Libertarianism'), +(3579, 'Sabotage -- Fiction'), +(3580, 'Voyages around the world -- Early works to 1800'), +(3581, 'Woody plants -- Great Britain'), +(3582, 'Music -- Philosophy and aesthetics'), +(3583, 'Tagalog language -- Grammar'), +(3584, 'Palestine -- History'), +(3585, 'Zola, Émile, 1840-1902 -- Correspondence'), +(3586, 'Dairy microbiology'), +(3587, 'Trilobites'), +(3588, 'Episcopal Church -- Sermons'), +(3589, 'First Coalition, War of the, 1792-1797 -- Campaigns -- Italy -- Fiction'), +(3590, 'Magic tricks'), +(3591, 'Space travelers -- Fiction'), +(3592, 'Germany -- History -- Bibliography'), +(3593, 'Military education -- Juvenile fiction'), +(3594, 'Michelangelo Buonarroti, 1475-1564'), +(3595, 'Hunting -- United States'), +(3596, 'Prostitutes -- Great Britain -- Drama'), +(3597, 'Shropshire (England) -- Description and travel'), +(3598, 'Napoleonic Wars, 1800-1815 -- Personal narratives, French'), +(3599, 'Extraterrestrial beings -- Juvenile fiction'), +(3600, 'Folklore -- England'), +(3601, 'World War, 1914-1918 -- Personal narratives, English'), +(3602, 'Argentine fiction -- 19th century'), +(3603, 'Brittany (France) -- Fiction'), +(3604, 'No plays -- Translations into English'), +(3605, 'Women -- Education'), +(3606, 'Teachers -- Fiction'), +(3607, 'Society of Friends -- Poetry'), +(3608, 'Parent and child -- Juvenile fiction'), +(3609, 'Scotland -- History -- Outlines, syllabi, etc.'), +(3610, 'Fire prevention'), +(3611, 'Norway -- Description and travel'), +(3612, 'Aggada -- Translations into English'), +(3613, 'Psychiatric hospitals -- New York'), +(3614, 'Equator -- Description and travel'), +(3615, 'Irish Americans -- Juvenile fiction'), +(3616, 'Chinese poetry -- 220-589'), +(3617, 'Runaways -- Fiction'), +(3618, 'Christmas stories, American'), +(3619, 'English drama -- 18th century'), +(3620, 'Jephthah (Biblical judge) -- Drama'), +(3621, 'Family -- Juvenile fiction'), +(3622, 'Chinese drama (Tragedy)'), +(3623, 'Christmas -- Juvenile poetry'), +(3624, 'Judith (Biblical figure) -- Drama'), +(3625, 'Humorous poetry, English'), +(3626, 'Machado de Assis, 1839-1908 -- Criticism and interpretation'), +(3627, 'Bjørnson, Bjørnstjerne, 1832-1910'), +(3628, 'Venezuela -- Description and travel'), +(3629, 'Fort Snelling (Minn.)'), +(3630, 'France -- History, Military -- 1789-1815'), +(3631, 'Afghan Wars'), +(3632, 'Nutrition -- Periodicals'), +(3633, 'Canoes and canoeing -- Fiction'), +(3634, 'Spanish-American War, 1898 -- Participation, African American'), +(3635, 'Chittenden, Mary Dunster, 1818-'), +(3636, 'Hawaii -- Description and travel'), +(3637, 'Chinese classics'), +(3638, 'Germany -- Politics and government'), +(3639, 'Patagonia (Argentina and Chile) -- Description and travel'), +(3640, 'Psychoanalysis'), +(3641, 'Artists -- United States -- Biography'), +(3642, 'English poetry -- Old English, ca. 450-1100 -- Modernized versions'), +(3643, 'United States -- History -- Revolution, 1775-1783 -- Biography'), +(3644, 'Edwards, Jonathan, 1703-1758'), +(3645, 'Salt'), +(3646, 'Arnold, Thomas, 1795-1842'), +(3647, 'Winter'), +(3648, 'Great Britain. Royal Navy -- Officers -- Fiction'), +(3649, 'United States. Marine Corps -- Juvenile fiction'), +(3650, 'Young women -- France -- Social conditions -- Fiction'), +(3651, 'Riemann surfaces'), +(3652, 'Isle of Man -- Fiction'), +(3653, 'Cook, James, 1728-1779 -- Travel'), +(3654, 'Church of England -- Customs and practices'), +(3655, 'United States. Army -- Military life'), +(3656, 'Hyde Park (London, England)'), +(3657, 'Jewel thieves -- Fiction'), +(3658, 'Crystallography, Mathematical'), +(3659, 'Goethe, Johann Wolfgang von, 1749-1832. Faust'), +(3660, 'Ethnology -- Philippines'), +(3661, 'Monica, Saint, -387'), +(3662, 'Gardens -- United States'), +(3663, 'Voice'), +(3664, 'Lamarck, Jean Baptiste Pierre Antoine de Monet de, 1744-1829'), +(3665, 'Child welfare'), +(3666, 'Belgioioso, Cristina, 1808-1871'), +(3667, 'Milan (Italy) -- Description and travel'), +(3668, 'Girls'), +(3669, 'Baseball stories'), +(3670, 'Painting'), +(3671, 'Norwegian drama'), +(3672, 'Scottish Borders (Scotland) -- Fiction'), +(3673, 'Ireland -- Politics and government -- 1837-1901'), +(3674, 'Teresa, of Avila, Saint, 1515-1582'), +(3675, 'Hudson River (N.Y. and N.J.) -- Guidebooks'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(3676, 'People with disabilities -- Fiction'), +(3677, 'Ontario. Bureau of Archives'), +(3678, 'Galway (Ireland : County) -- History'), +(3679, 'Appell, Paul, 1855-1930 -- Bibliography'), +(3680, 'Howe, Julia Ward, 1819-1910'), +(3681, 'Lassen Volcanic National Park (Calif.) -- Guidebooks'), +(3682, 'Lighthouse keepers -- Fiction'), +(3683, 'Entertainers -- United States -- Fiction'), +(3684, 'Villages -- Germany -- Fiction'), +(3685, 'Operas -- Stories, plots, etc. -- Juvenile literature'), +(3686, 'Literature, Medieval -- Translations into English'), +(3687, 'Pre-Raphaelitism'), +(3688, 'China -- History -- Ming dynasty, 1368-1644 -- Anecdotes'), +(3689, 'Slave insurrections -- United States'), +(3690, 'Puppet plays'), +(3691, 'Riviera (France)'), +(3692, 'Christianity -- Origin'), +(3693, 'Canada -- Emigration and immigration -- Juvenile fiction'), +(3694, 'Hortense, Queen, consort of Louis Bonaparte, King of Holland, 1783-1837'), +(3695, 'Normandy (France) -- History -- To 1515'), +(3696, 'Ambassadors -- England -- Fiction'), +(3697, 'Erie Canal (N.Y.)'), +(3698, 'Funeral sermons'), +(3699, 'Osler family'), +(3700, 'Stevenson, Robert Louis, 1850-1894 -- Miscellanea'), +(3701, 'Angelico, fra, approximately 1400-1455'), +(3702, 'Pettie, John, 1839-1893'), +(3703, 'Ludington, Henry, 1739-1817'), +(3704, 'Violin -- Construction'), +(3705, 'Shirley, Anne (Fictitious character) -- Fiction'), +(3706, 'France -- Juvenile fiction'), +(3707, 'Agricola, Gnaeus Julius, 40-93'), +(3708, 'Carter, John (Fictitious character) -- Fiction'), +(3709, 'Keys, Mary Grey, 1545?-1578'), +(3710, 'Feuerbach, Ludwig, 1804-1872'), +(3711, 'Scotland -- History -- Sources'), +(3712, 'Priests -- Portugal -- Fiction'), +(3713, 'Paris (France) -- Social life and customs -- 19th century'), +(3714, 'Drafts'), +(3715, 'Gould, W. J. D.'), +(3716, 'Eunuchs -- Legal status, laws, etc.'), +(3717, 'Folk songs, English -- United States'), +(3718, 'French poetry -- 20th century'), +(3719, 'Bible -- Quotations'), +(3720, 'Literature'), +(3721, 'Women -- Diseases'), +(3722, 'Burton, William E. (William Evans), 1802-1860'), +(3723, 'Mythology, Greek -- Drama'), +(3724, 'Mesmerism -- Fiction'), +(3725, 'Coasts -- Great Britain -- Pictorial works'), +(3726, 'Stepsisters -- Juvenile fiction'), +(3727, 'Punahou School -- History -- 19th century'), +(3728, 'Great Britain. Army. Regiment of Dragoon Guards, 3rd'), +(3729, 'Mississippi River -- Juvenile fiction'), +(3730, 'Geneva (Switzerland) -- Fiction'), +(3731, 'Revolutionaries -- Italy -- Biography'), +(3732, 'Carr family'), +(3733, 'Chess'), +(3734, 'Allen, James Lane, 1849-1925'), +(3735, 'Criminals -- Great Britain'), +(3736, 'Deerpark (N.Y. : Town) -- History'), +(3737, 'Photography'), +(3738, 'Browning, Robert, 1812-1889 -- Religion'), +(3739, 'Twenty-second century -- Fiction'), +(3740, 'Indians of North America -- Government relations -- Fiction'), +(3741, 'Telephone -- History'), +(3742, 'Cells'), +(3743, 'Obstetrics -- Early works to 1800'), +(3744, 'Poachers -- Fiction'), +(3745, 'Colorado River (Colo.-Mexico) -- Description and travel'), +(3746, 'France -- History -- Louis XIII, 1610-1643'), +(3747, 'English language -- Syllabication'), +(3748, 'Naples, Bay of (Italy)'), +(3749, 'Senses and sensation'), +(3750, 'Law -- Political aspects -- California'), +(3751, 'Nova Scotia -- Description and travel'), +(3752, 'Boy Scouts'), +(3753, 'Latin poetry -- History and criticism'), +(3754, 'Statesmen -- United States -- Biography'), +(3755, 'Cebuano language -- Grammar'), +(3756, 'Fairy tales -- Arab countries'), +(3757, 'German literature -- Translations into English'), +(3758, 'Tales -- Sri Lanka'), +(3759, 'Calculus'), +(3760, 'Claudius, Emperor of Rome, 10 B.C.-54 A.D. -- Humor'), +(3761, 'Spain -- Social life and customs -- 16th century -- Fiction'), +(3762, 'Racially mixed people -- Fiction'), +(3763, 'Smugglers -- Juvenile fiction'), +(3764, 'World War, 1914-1918 -- Peace'), +(3765, 'Beauty, Personal'), +(3766, 'World War, 1914-1918 -- Finance -- United States'), +(3767, 'Rubber'), +(3768, 'Multatuli'), +(3769, 'Aphorisms and apothegms'), +(3770, 'Lincoln, Abraham, 1809-1865 -- Poetry'), +(3771, 'Northwest, Pacific -- History'), +(3772, 'Whistler, James McNeill, 1834-1903'), +(3773, 'Amusements -- Great Britain'), +(3774, 'Floods -- Juvenile fiction'), +(3775, 'Spanish language -- Programmed instruction'), +(3776, 'Rome -- History -- Civil War, 49-48 B.C.'), +(3777, 'Fantasy fiction, French -- Translations into English'), +(3778, 'Glacier National Park (Mont.)'), +(3779, 'Slavery -- Virginia'), +(3780, 'Yosemite Valley (Calif.)'), +(3781, 'Washington (D.C.) -- Drama'), +(3782, 'Ontology'), +(3783, 'Poetry of places'), +(3784, 'Judaism -- Prayers and devotions'), +(3785, 'Indians, Treatment of -- Latin America -- Early works to 1800'), +(3786, 'Napoleon I, Emperor of the French, 1769-1821 -- Relations with private secretaries'), +(3787, 'Greece -- Religion'), +(3788, 'Plants -- Irritability and movements'), +(3789, 'Great Britain -- Civilization'), +(3790, 'Great Britain -- History -- George IV, 1820-1830'), +(3791, 'Letter-pictures'), +(3792, 'Bible -- Criticism, interpretation, etc.'), +(3793, 'Obstetrics'), +(3794, 'Municipal ownership -- Fiction'), +(3795, 'Exhumation -- England'), +(3796, 'Hemp industry -- Fiction'), +(3797, 'Riddles, Finnish'), +(3798, 'Franco-Prussian War, 1870-1871'), +(3799, 'Murder in literature'), +(3800, 'Tibet Autonomous Region (China) -- Description and travel'), +(3801, 'Great Britain -- Politics and government -- 1702-1714 -- Humor'), +(3802, 'London (England) -- Juvenile literature'), +(3803, 'Aboriginal Australians -- Folklore -- Poetry'), +(3804, 'Baldwin locomotives'), +(3805, 'Clouds'), +(3806, 'Dialogues, Latin (Medieval and modern) -- Translations into English'), +(3807, 'Cruikshank, George, 1792-1878'), +(3808, 'Rock gardens'), +(3809, 'Great Britain -- Kings and rulers -- Succession'), +(3810, 'Sound production by animals'), +(3811, 'Ship models'), +(3812, 'Boone, Daniel, 1734-1820'), +(3813, 'Flanders (Belgium) -- History'), +(3814, 'Mississippi River -- Fiction'), +(3815, 'Phytogeography'), +(3816, 'Medical laws and legislation'), +(3817, 'Nicaraguan poetry'), +(3818, 'Hyla microcephala'), +(3819, 'Collective settlements'), +(3820, 'Nature (Aesthetics)'), +(3821, 'Poitiers, Battle of, France, 1356'), +(3822, 'Fairies -- Juvenile fiction'), +(3823, 'Courtship -- Juvenile fiction'), +(3824, 'Economics -- History'), +(3825, 'Quatermain, Allan (Fictitious character) -- Fiction'), +(3826, 'Frog culture'), +(3827, 'Mohawk Indians -- Kings and rulers -- Biography'), +(3828, 'Pirates -- Fiction'), +(3829, 'Dueling -- Fiction'), +(3830, 'Authors, English -- 19th century -- Correspondence'), +(3831, 'Teenage girls -- Juvenile fiction'), +(3832, 'Women book collectors'), +(3833, 'United States -- History, Naval'), +(3834, 'Aircraft accidents'), +(3835, 'English essays -- 20th century'), +(3836, 'Human-animal relationships -- Juvenile fiction'), +(3837, 'Explorers -- Great Britain -- Biography'), +(3838, 'Phototelegraphy'), +(3839, 'Africa, Central -- Fiction'), +(3840, 'Women authors, German -- Biography'), +(3841, 'West Indies -- Description and travel'), +(3842, 'North West Mounted Police (Canada) -- Juvenile fiction'), +(3843, 'Salmon'), +(3844, 'Illegitimacy -- Fiction'), +(3845, 'Book burning -- Great Britain'), +(3846, 'Etiquette -- United States'), +(3847, 'Nullification (States\' rights)'), +(3848, 'Whitehall (London, England) -- Fiction'), +(3849, 'Canada, Western -- Fiction'), +(3850, 'Painters -- Fiction'), +(3851, 'Influenza'), +(3852, 'Islam'), +(3853, 'French drama -- Translations into Finnish'), +(3854, 'Quacks and quackery'), +(3855, 'Symphonies -- Analysis, appreciation'), +(3856, 'Portuguese fiction -- 19th century'), +(3857, 'Napoleon I, Emperor of the French, 1769-1821 -- Relations with valets'), +(3858, 'United States -- History -- War of 1812 -- Fiction'), +(3859, 'Europe -- Politics and government -- 1871-1918'), +(3860, 'Mythology, Germanic'), +(3861, 'Religious Tract Society (Great Britain) -- Catalogs'), +(3862, 'Spirit photography'), +(3863, 'Lithography'), +(3864, 'Wild flowers -- Great Britain -- Identification'), +(3865, 'Mexico -- Fiction'), +(3866, 'Greek poetry -- Translations into English'), +(3867, 'Fishing -- Yellowstone National Park'), +(3868, 'Slaves -- Kentucky -- Social conditions -- 19th century'), +(3869, 'Railroads -- United States -- History'), +(3870, 'China -- History -- Song dynasty, 960-1279 -- Fiction'), +(3871, 'Kissing'), +(3872, 'World War, 1914-1918 -- Personal narratives, American'), +(3873, 'Constitutions -- United States'), +(3874, 'Ireland -- History -- War of 1689-1691'), +(3875, 'Charlemagne, Emperor, 742-814'), +(3876, 'Camões, Luís de, 1524?-1580 -- Knowledge -- Naval art and science'), +(3877, 'Dogs -- Diseases'), +(3878, 'Jünger, Ernst, 1895-1998'), +(3879, 'Flowers'), +(3880, 'Change'), +(3881, 'Industries, Primitive'), +(3882, 'Preston, Jennet, -1612'), +(3883, 'Cheerfulness -- Poetry'), +(3884, 'Dutch literature -- 1500-1800 -- History and criticism'), +(3885, 'Older women -- Fiction'), +(3886, 'Abelard, Peter, 1079-1142 -- Correspondence'), +(3887, 'Epic poetry, Italian'), +(3888, 'Slaves -- Missouri -- Social conditions'), +(3889, 'Animal traps'), +(3890, 'Hallucinations and illusions'), +(3891, 'Wales, North -- Description and travel'), +(3892, 'Taoism'), +(3893, 'Pulp literature'), +(3894, 'New South Wales -- Discovery and exploration'), +(3895, 'Rustic woodwork'), +(3896, 'Milton, John, 1608-1674 -- Anniversaries, etc.'), +(3897, 'Krishna (Hindu deity)'), +(3898, 'Painters -- Italy -- Biography'), +(3899, 'Germany -- Social life and customs'), +(3900, 'Pastoral poetry, Greek'), +(3901, 'Prisons -- Asia -- History'), +(3902, 'Bible. Epistle of John, 1st'), +(3903, 'Trials (Robbery) -- Scotland'), +(3904, 'Rattazzi, Marie, 1833-1902. Portugal à vol d\'oiseau'), +(3905, 'Medicine -- Periodicals'), +(3906, 'Oratory'), +(3907, 'Joan, of Arc, Saint, 1412-1431'), +(3908, 'Russia -- Commerce -- China'), +(3909, 'Romance fiction'), +(3910, 'Revolutions -- Europe'), +(3911, 'Military engineers -- Fiction'), +(3912, 'Esperanto -- Periodicals'), +(3913, 'Railroad travel -- United States'), +(3914, 'Fishing -- Juvenile literature'), +(3915, 'Platonic love -- Fiction'), +(3916, 'Freethinkers -- Biography'), +(3917, 'Fisheries -- Germany'), +(3918, 'Kensington (London, England)'), +(3919, 'Ixion (Greek mythology) -- Fiction'), +(3920, 'Washoe County (Nev.)'), +(3921, 'Language arts -- Problems, exercises, etc.'), +(3922, 'Sark (Channel Islands) -- Fiction'), +(3923, 'Russian literature -- History and criticism'), +(3924, 'Massachusetts -- Politics and government -- 1775-1783'), +(3925, 'Augustinian Canons'), +(3926, 'Positivism'), +(3927, 'Civic improvement -- Pennsylvania -- Pittsburgh'), +(3928, 'Prague (Czech Republic) -- Fiction'), +(3929, 'Poetry -- Periodicals'), +(3930, 'Bible. Apocrypha. Maccabees, 2nd'), +(3931, 'Railroads'), +(3932, 'Oughtred, William, 1575-1660'), +(3933, 'Criminals -- England -- Fiction'), +(3934, 'United States -- Discovery and exploration'), +(3935, 'Kings, queens, rulers, etc.'), +(3936, 'French drama (Comedy) -- Translations into English'), +(3937, 'Belgium -- History'), +(3938, 'Engraving -- Printing'), +(3939, 'Women -- Education -- Great Britain'), +(3940, 'Dutch -- Indonesia -- Fiction'), +(3941, 'Jesus Christ'), +(3942, 'Italian literature'), +(3943, 'Schools -- England -- Juvenile fiction'), +(3944, 'Colorado River (Colo.-Mexico)'), +(3945, 'Mexico -- History -- Wars of Independence, 1810-1821 -- Fiction'), +(3946, 'Ranches -- Juvenile fiction'), +(3947, 'English poetry -- 18th century'), +(3948, 'Sussex (England) -- Description and travel'), +(3949, 'Hopi Indians'), +(3950, 'Mabini, Apolinario, 1864-1903'), +(3951, 'Omaha (Neb.) -- Tornado, 1913'), +(3952, 'Kangaroos -- Juvenile fiction'), +(3953, 'Magicians -- Juvenile fiction'), +(3954, 'West (U.S)'), +(3955, 'Barcelona (Spain) -- Fiction'), +(3956, 'Arnold, Benedict, 1741-1801 -- Drama'), +(3957, 'Finnish literature -- 19th century -- History and criticism'), +(3958, 'James V, King of Scotland, 1512-1542 -- Fiction'), +(3959, 'Lucknow (India) -- History -- Siege, 1857 -- Personal narratives'), +(3960, 'World War, 1914-1918 -- France -- Fiction'), +(3961, 'William, of Colchester, Abbot of Westminster, approximately 1338-1420'), +(3962, 'Women authors -- Fiction'), +(3963, 'Canadian wit and humor'), +(3964, 'Great Yarmouth (England) -- History'), +(3965, 'World War, 1914-1918 -- Canada -- Fiction'), +(3966, 'Electric apparatus and appliances'), +(3967, 'Great Britain -- Social life and customs -- 19th century'), +(3968, 'Germ theory of disease'), +(3969, 'Moravians'), +(3970, 'Circus -- Rome -- Fiction'), +(3971, 'Rocky Mountains'), +(3972, 'Robinsonades'), +(3973, 'English poetry -- History and criticism'), +(3974, 'Fairy tales -- Azores'), +(3975, 'Romance fiction, Greek -- Translations into English'), +(3976, 'Prince Edward Island -- Juvenile fiction'), +(3977, 'Conversation'), +(3978, 'German drama -- 20th century'), +(3979, 'Irish wit and humor'), +(3980, 'Fictitious characters -- Autobiography'), +(3981, 'Palestine -- Description and travel -- Early works to 1800'), +(3982, 'Alps -- Description and travel'), +(3983, 'Slavery -- Arkansas'), +(3984, 'Columbus, Christopher -- Early works to 1800'), +(3985, 'Folklore -- Austria -- Tyrol'), +(3986, 'Zululand (South Africa) -- Fiction'), +(3987, 'Japan -- History -- 1185-1600 -- Drama'), +(3988, 'Erzgebirge (Czech Republic and Germany) -- Fiction'), +(3989, 'Perthshire (Scotland) -- Description and travel'), +(3990, 'Runaway husbands -- Drama'), +(3991, 'Family -- England -- Fiction'), +(3992, 'Méduse (Ship)'), +(3993, 'Poets, American -- 19th century -- Correspondence'), +(3994, 'Women -- Fiction'), +(3995, 'Philosophers'), +(3996, 'Lobster fisheries -- Maine'), +(3997, 'Jews -- Restoration'), +(3998, 'Champlain, Samuel de, 1574-1635'), +(3999, 'New York (N.Y.)'), +(4000, 'Great Britain -- Politics and government -- 1714-1837'), +(4001, 'England -- Social life and customs -- 20th century -- Drama'), +(4002, 'Miscegenation'), +(4003, 'Crusades -- Third, 1189-1192 -- Fiction'), +(4004, 'Geology -- England -- Bedford Level'), +(4005, 'Stupor'), +(4006, 'Printing -- Portugal -- Lisbon -- History'), +(4007, 'Animals -- Literary collections'), +(4008, 'Sicily (Italy) -- Fiction'), +(4009, 'North Carolina -- History -- Civil War, 1861-1865'), +(4010, 'Medicine, Greek and Roman'), +(4011, 'James, Frank, 1844-1915'), +(4012, 'India -- History -- British occupation, 1765-1947 -- Juvenile fiction'), +(4013, 'Widows -- Fiction'), +(4014, 'Missing children -- Juvenile fiction'), +(4015, 'Umbrellas'), +(4016, 'Turkey -- History'), +(4017, 'Corridos'), +(4018, 'New Forest (England : Forest)'), +(4019, 'Ivanhoe, Wilfred of, Sir (Fictitious character) -- Fiction'), +(4020, 'World War, 1914-1918 -- Medical care'), +(4021, 'Women -- Italy -- Rome -- Social life and customs'), +(4022, 'Tennis'), +(4023, 'Spain -- Social life and customs'), +(4024, 'Jones, John Paul, 1747-1792 -- Fiction'), +(4025, 'Rubber industry and trade -- Peru'), +(4026, 'Brühl, Heinrich, Graf von, 1700-1763 -- Fiction'), +(4027, 'Robin Hood (Legendary character)'), +(4028, 'Finnish poetry -- Translations into Swedish'), +(4029, 'Oregon -- Description and travel'), +(4030, 'Webster, Daniel, 1782-1852. Seventh of March speech'), +(4031, 'Creoles -- Fiction'), +(4032, 'Bombelles, Angélique de Mackau, marquise de, 1762-1800'), +(4033, 'Florida -- History -- Huguenot colony, 1562-1565 -- Juvenile fiction'), +(4034, 'Banbury (Oxfordshire, England)'), +(4035, 'Civilization, Greco-Roman'), +(4036, 'Snakes'), +(4037, 'Shields'), +(4038, 'Germany -- Social life and customs -- Fiction'), +(4039, 'Pueblo Indians'), +(4040, 'Literature -- Study and teaching'), +(4041, 'Short stories, English -- Periodicals'), +(4042, 'Constitutional history -- France -- Sources'), +(4043, 'Boccaccio, Giovanni, 1313-1375'), +(4044, 'Novelists, American -- 20th century -- Biography'), +(4045, 'Italian fiction -- Translations into Spanish'), +(4046, 'Advertising'), +(4047, 'Chivalry -- Fiction'), +(4048, 'Philippines -- Description and travel'), +(4049, 'Radio plays'), +(4050, 'Police -- England'), +(4051, 'Heraldry -- Juvenile literature'), +(4052, 'Lessona, Michele, 1823-1894 -- Travel -- Egypt'), +(4053, 'Bible. Zephaniah'), +(4054, 'Algebra, Universal'), +(4055, 'Columbus, Christopher -- Fiction'), +(4056, 'World War, 1914-1918 -- Regimental histories -- Great Britain'), +(4057, 'Common law'), +(4058, 'Evacuation Day, New York, N.Y., 1783'), +(4059, 'British -- Japan -- Drama'), +(4060, 'Ethics, Evolutionary'), +(4061, 'Carlile, Richard, 1790-1843'), +(4062, 'America -- History'), +(4063, 'Verse drama'), +(4064, 'Catholic Church -- New Jersey -- Paterson'), +(4065, 'Success'), +(4066, 'Authors, Latin -- Rome -- Correspondence'), +(4067, 'Roads'), +(4068, 'Burgundy (France) -- Description and travel'), +(4069, 'Hormones'), +(4070, 'French drama (Comedy) -- Translations into Esperanto'), +(4071, 'Saxony (Germany) -- Court and courtiers'), +(4072, 'Moselle River Valley'), +(4073, 'African Americans -- Colonization -- Africa'), +(4074, 'United States. Army. Ambulance Company, 139th -- Directories'), +(4075, 'Montezuma Castle National Monument (Ariz.)'), +(4076, 'Lyth, Mary, 1782-1860'), +(4077, 'Laboratories -- Juvenile fiction'), +(4078, 'Short stories, Russian -- Translations into English'), +(4079, 'Suffragists -- Great Britain -- Biography'), +(4080, 'Attorney and client -- Fiction'), +(4081, 'Black Hawk War, 1832'), +(4082, 'Bible. Peter, 2nd'), +(4083, 'Printing -- United States'), +(4084, 'Women agricultural laborers -- Fiction'), +(4085, 'Great Britain. Army. Division, 36th'), +(4086, 'French poetry -- 19th century'), +(4087, 'Finnish poetry -- Translations into English'), +(4088, 'German drama'), +(4089, 'Great Britain -- Social conditions -- 19th century'), +(4090, 'Drawing, English'), +(4091, 'Connecticut -- Politics and government -- 1775-1865'), +(4092, 'Arbor Day'), +(4093, 'Cherokee Indians -- Missions -- Georgia'), +(4094, 'Semiramis, Queen, consort of Shamshi-Adad V, King of Assyria, active 9th century B.C. -- Fiction'), +(4095, 'Education, Secondary'), +(4096, 'China -- History -- Qing dynasty, 1644-1912 -- Fiction'), +(4097, 'Mechanics -- Juvenile fiction'), +(4098, 'Graham, John, Viscount Dundee, 1648-1689'), +(4099, 'Sunday school literature'), +(4100, 'Persian literature -- History and criticism'), +(4101, 'Cattle -- Age determination'), +(4102, 'Church of England -- Apologetic works'), +(4103, 'Mill, John Stuart, 1806-1873'), +(4104, 'Deserts -- Research'), +(4105, 'Dakota Indians -- Wars, 1876 -- Fiction'), +(4106, 'Military art and science -- History'), +(4107, 'World War, 1914-1918 -- Participation, African American'), +(4108, 'Gulliver, Lemuel (Fictitious character) -- Fiction'), +(4109, 'Johns Hopkins University -- History'), +(4110, 'Hamilton, Emma, Lady, 1761?-1815 -- Fiction'), +(4111, 'Iranians -- Europe -- Fiction'), +(4112, 'Young women -- Conduct of life -- Fiction'), +(4113, 'United States -- Commerce -- History'), +(4114, 'Aerial photography'), +(4115, 'Frontier and pioneer life -- Mississippi River Valley'), +(4116, 'Great Britain -- History -- Alfred, 871-899'), +(4117, 'Classical literature'), +(4118, 'Book collecting'), +(4119, 'Animals, Mythical'), +(4120, 'Pears'), +(4121, 'Newman, John Henry, 1801-1890'), +(4122, 'Paris (France) -- Intellectual life'), +(4123, 'European Union'), +(4124, 'American poetry -- 19th century -- Translations into French'), +(4125, 'Aesop\'s fables -- Translations into English'), +(4126, 'Novelists, American -- 19th century -- Diaries'), +(4127, 'Sand, George, 1804-1876 -- Correspondence'), +(4128, 'Netherlands -- History -- Eighty Years\' War, 1568-1648 -- Juvenile fiction'), +(4129, 'United States -- Politics and government -- 1865-1869'), +(4130, 'Verse satire, English -- History and criticism'), +(4131, 'Great Britain. Royal Navy'), +(4132, 'Law -- United States'), +(4133, 'Epidemics -- History'), +(4134, 'Parker, Quanah, 1845?-1911 -- Juvenile fiction'), +(4135, 'Venus de Milo'), +(4136, 'Pamphlets'), +(4137, 'Gundungurra (Australian people)'), +(4138, 'Scottish poetry -- 19th century'), +(4139, 'Speeches, addresses, etc., Greek -- Translations into English'), +(4140, 'Cid, approximately 1043-1099 -- Romances'), +(4141, 'Love stories, American'), +(4142, 'Muscle contraction'), +(4143, 'Braddock\'s Campaign, 1755'), +(4144, 'Mazarin, Jules, 1602-1661'), +(4145, 'Fishes -- Anatomy'), +(4146, 'Christian life -- Quaker authors'), +(4147, 'Portugal -- Fiction'), +(4148, 'Missionaries -- Juvenile literature'), +(4149, 'Bible -- Prophecies'), +(4150, 'Subways -- United States'), +(4151, 'Dupin, C. Auguste (Fictitious character) -- Fiction'), +(4152, 'Remus, Uncle (Fictitious character) -- Fiction'), +(4153, 'Folk songs, Portuguese -- Texts'), +(4154, 'Art -- France -- Paris -- Catalogs'), +(4155, 'PDP-3 (Computer)'), +(4156, 'Slavery -- United States -- Songs and music'), +(4157, 'Playing cards -- History'), +(4158, 'Women -- Legal status, laws, etc. -- Fiction'), +(4159, 'Dinners and dining'), +(4160, 'Fantasy fiction, Danish -- Translations into English'), +(4161, 'United States -- History -- Revolution, 1775-1783 -- Registers'), +(4162, 'German poetry -- 20th century'), +(4163, 'Yugoslavs'), +(4164, 'Europe -- History -- 18th century -- Biography'), +(4165, 'Mendel\'s law'), +(4166, 'Rolle, Richard, of Hampole, 1290?-1349'), +(4167, 'Little Gidding (Christian community)'), +(4168, 'Gibraltar'), +(4169, 'Flaubert, Gustave, 1821-1880'), +(4170, 'Copyright -- United States -- Catalogs'), +(4171, 'Boxing stories'), +(4172, 'Shipwreck survival -- Juvenile literature'), +(4173, 'Taiwan -- Description and travel'), +(4174, 'Wingfold, Thomas (Fictitious character) -- Fiction'), +(4175, 'Literary style'), +(4176, 'Dance recitals -- Programs'), +(4177, 'Great Britain. Army. Regiment of Foot, 1st (Royal Scots)'), +(4178, 'Mushrooms -- Italy -- Identification'), +(4179, 'Protocols of the wise men of Zion'), +(4180, 'Jesus Christ -- Words'), +(4181, 'Indians of North America -- California'), +(4182, 'Theology -- Early works to 1800'), +(4183, 'Opera'), +(4184, 'Sweden -- Fiction'), +(4185, 'Erotic stories'), +(4186, 'Newport (R.I.) -- Fiction'), +(4187, 'Allegories'), +(4188, 'Solar system -- Miscellanea'), +(4189, 'Church of England. Thirty-nine Articles'), +(4190, 'Bible. Joshua'), +(4191, 'Folklore -- Flanders'), +(4192, 'Greece -- History -- Expedition of Cyrus, 401 B.C.'), +(4193, 'Microcomputers'), +(4194, 'Islands of the Pacific -- Description and travel'), +(4195, 'Turkey -- Politics and government -- 1918-1960'), +(4196, 'Poland -- History -- Michael Wisniowiecki, 1669-1673 -- Fiction'), +(4197, 'Canada -- Description and travel -- Fiction'), +(4198, 'Church history -- Primitive and early church, ca. 30-600'), +(4199, 'Earthquakes -- Chile'), +(4200, 'Diplomacy -- Juvenile fiction'), +(4201, 'Osage Indians -- Religion'), +(4202, 'Bible. Genesis'), +(4203, 'Germany -- Emigration and immigration'), +(4204, 'Scottish Borders (England and Scotland) -- Songs and music'), +(4205, 'Scotland -- Antiquities'), +(4206, 'Silverwork, Colonial -- Virginia'), +(4207, 'Children -- India -- Juvenile literature'), +(4208, 'Armenian literature -- History and criticism'), +(4209, 'Luxembourg -- Description and travel'), +(4210, 'Fairy tales -- North America'), +(4211, 'English language -- Etymology'), +(4212, 'Atlantic Ocean -- Fiction'), +(4213, 'Irreligion and sociology'), +(4214, 'Puritans -- Massachusetts'), +(4215, 'La Tour, Charles de Saint-Etienne de, 1593-1666 -- Fiction'), +(4216, 'Middle class -- England -- History -- 19th century -- Humor'), +(4217, 'State, The'), +(4218, 'Friction'), +(4219, 'Interpersonal relations -- Fiction'), +(4220, 'Jesuits -- France'), +(4221, 'Occupations -- Juvenile fiction'), +(4222, 'Byzantine Empire -- History'), +(4223, 'Women -- Suffrage -- Great Britain'), +(4224, 'Market Street Dutch Reformed Church (New York, N.Y.)'), +(4225, 'Theosophy -- Periodicals'), +(4226, 'Art, American'), +(4227, 'Operas -- Excerpts'), +(4228, 'Colombia -- History -- War of Independence, 1810-1822 -- Juvenile fiction'), +(4229, 'Killarney, Lakes of (Ireland)'), +(4230, 'Bible stories, English -- Luke -- Juvenile literature'), +(4231, 'Insects -- New Zealand'), +(4232, 'Inquisition -- Spain'), +(4233, 'Bible. Ephesians -- Commentaries'), +(4234, 'Grapes'), +(4235, 'Socrates, 470 BC-399 BC'), +(4236, 'Women\'s rights -- Fiction'), +(4237, 'Paradise'), +(4238, 'New Zealand'), +(4239, 'Portuguese -- China -- Macau (Special Administrative Region)'), +(4240, 'Southwest, New -- Description and travel'), +(4241, 'Bible stories, English'), +(4242, 'Authors, Irish -- 18th century -- Biography'), +(4243, 'Great Britain. Army. Royal Regiment of Artillery. Divisional Artillery, 33rd'), +(4244, 'Hunting -- West (U.S.)'), +(4245, 'Arnould, Sophie, 1740-1802'), +(4246, 'Privateering -- Juvenile fiction'), +(4247, 'Legends -- China'), +(4248, 'Indians of North America -- Juvenile literature'), +(4249, 'Russian drama -- Translations into English'), +(4250, 'Physical geography'), +(4251, 'Fishers -- Fiction'), +(4252, 'French essays'), +(4253, 'Food conservation'), +(4254, 'Aeneas (Legendary character) -- In literature'), +(4255, 'Irrigation (Medicine)'), +(4256, 'Ku Klux Klan (19th century) -- Fiction'), +(4257, 'Diptera'), +(4258, 'Freedmen'), +(4259, 'Drawing'), +(4260, 'Tinguian (Philippine people)'), +(4261, 'Magicians -- Biography'), +(4262, 'Jeanne, of Constantinople, approximately 1200-1244'), +(4263, 'Salome (Biblical figure) -- Drama'), +(4264, 'Klondike River Valley (Yukon) -- Gold discoveries -- Fiction'), +(4265, 'Reformation -- Italy'), +(4266, 'Achilles (Mythological character) -- Poetry'), +(4267, 'Oxford movement -- Fiction'), +(4268, 'Birds -- Micronesia'), +(4269, 'Geometry, Non-Euclidean'), +(4270, 'Aeronautics -- Competitions'), +(4271, 'Fishing -- Scotland'), +(4272, 'English poetry -- Translations into French'), +(4273, 'Dikes (Engineering) -- Germany -- Schleswig-Holstein -- Fiction'), +(4274, 'Finnish language'), +(4275, 'New Hampshire -- History -- Colonial period, ca. 1600-1775 -- Juvenile literature'), +(4276, 'Italy -- History -- Revolution of 1848 -- Fiction'), +(4277, 'Canada -- History -- To 1763 (New France) -- Poetry'), +(4278, 'Clinton, Bill, 1946- -- Inauguration, 1993'), +(4279, 'Great Britain -- History -- Juvenile literature'), +(4280, 'Moon'), +(4281, 'American Library Association'), +(4282, 'Gladstone, W. E. (William Ewart), 1809-1898'), +(4283, 'Julian Alps (Slovenia and Italy) -- Guidebooks'), +(4284, 'Lectures and lecturing -- United States'), +(4285, 'Krag, Asbjørn (Fictitious character) -- Fiction'), +(4286, 'Social adjustment -- Juvenile fiction'), +(4287, 'Cassels, Walter Richard, 1826-1907. Supernatural religion'), +(4288, 'Great Britain -- Social life and customs -- Fiction'), +(4289, 'Women -- Biography'), +(4290, 'Medicine in the Bible'), +(4291, 'Communicable diseases -- Early works to 1800'), +(4292, 'Cities and towns'), +(4293, 'Jersey (Channel Islands) -- Juvenile fiction'), +(4294, 'Language, Universal'), +(4295, 'Blasphemy'), +(4296, 'Italian drama -- 19th century'), +(4297, 'Methodist women -- United States -- Biography'), +(4298, 'Schiller, Friedrich, 1759-1805'), +(4299, 'Conduct of life -- Juvenile poetry'), +(4300, 'Gunpowder Plot, 1605'), +(4301, 'Esperanto -- Congresses'), +(4302, 'Canada -- Politics and government -- 19th century'), +(4303, 'Soviet Union -- History -- Revolution, 1917-1921'), +(4304, 'Idols and images -- Worship'), +(4305, 'Dartmoor (England) -- Fiction'), +(4306, 'Emblems -- England -- History'), +(4307, 'Fruitlands (Harvard, Mass.)'), +(4308, 'Scheele, Carl Wilhelm, 1742-1786'), +(4309, 'Censorship'), +(4310, 'Slavery -- South Carolina'), +(4311, 'Phosphorus'), +(4312, 'McCarthy, Carlton, 1847-'), +(4313, 'Bellini, Giovanni, -1516'), +(4314, 'Pastoral poetry, Latin'), +(4315, 'Burma'), +(4316, 'Civilization -- Periodicals'), +(4317, 'Wealth -- Fiction'), +(4318, 'Flat-headed snake'), +(4319, 'French language -- Usage -- Dictionaries'), +(4320, 'France -- History, Naval'), +(4321, 'Oceania -- Juvenile fiction'), +(4322, 'Philip II, King of France, 1165-1223 -- Fiction'), +(4323, 'Jamestown (Va.) -- Social life and customs'), +(4324, 'Christmas -- History'), +(4325, 'Algebra'), +(4326, 'Free love'), +(4327, 'Tagore, Rabindranath, 1861-1941 -- Translations into German'), +(4328, 'Thirty Years\' War, 1618-1648'), +(4329, 'Science -- Juvenile literature'), +(4330, 'Upper class -- Fiction'), +(4331, 'Japan'), +(4332, 'Coke, Thomas William, Earl of Leicester, 1752-1842 -- Poetry'), +(4333, 'International law'), +(4334, 'Violin and piano music, Arranged'), +(4335, 'Córdoba (Spain) -- Description and travel'), +(4336, 'Artists -- Juvenile fiction'), +(4337, 'Selling -- Psychological aspects'), +(4338, 'Latin poetry'), +(4339, 'Yucatán (Mexico : State) -- Description and travel'), +(4340, 'Paul, the Apostle, Saint -- Poetry'), +(4341, 'Great Britain -- Fiction'), +(4342, 'Gardening -- Juvenile literature'), +(4343, 'Lupin, Arsène (Fictitious character) -- Fiction'), +(4344, 'England -- Social life and customs -- Drama'), +(4345, 'Bible. Esther'), +(4346, 'Microtus'), +(4347, 'Politicians -- Fiction'), +(4348, 'Confederate States of America -- History'), +(4349, 'Hunting -- Mozambique'), +(4350, 'Space ships -- Fiction'), +(4351, 'Multiple personality -- Fiction'), +(4352, 'Suicide victims -- Fiction'), +(4353, 'Punishment'), +(4354, 'New England -- Social life and customs'), +(4355, 'Marquesas Islands (French Polynesia)'), +(4356, 'Authors, English -- 19th century'), +(4357, 'Romanies -- Juvenile fiction'), +(4358, 'Christchurch (Dorset, England)'), +(4359, 'Picaresque fiction'), +(4360, 'Confederate States of America. Army of Northern Virginia'), +(4361, 'Jacobite Rebellion, 1715'), +(4362, 'Japan -- Emigration and immigration'), +(4363, 'Norfolk County (Mass.) -- Description and travel'), +(4364, 'Spouses of clergy -- Fiction'), +(4365, 'Cowboys -- Juvenile fiction'), +(4366, 'Boon Island (Me.)'), +(4367, 'Plumbing -- Amateurs\' manuals'), +(4368, 'Christian art and symbolism'), +(4369, 'Catholic Church -- Education'), +(4370, 'Portuguese language -- Orthography and spelling'), +(4371, 'Bible. Judges'), +(4372, 'Oxford movement'), +(4373, 'Cats -- Behavior'), +(4374, 'Archaeologists -- Fiction'), +(4375, 'Dickens, Charles, 1812-1870 -- Travel -- United States'), +(4376, 'Shetland (Scotland) -- Fiction'), +(4377, 'Zimbabwe -- Fiction'), +(4378, 'Illumination of books and manuscripts'), +(4379, 'John I Tzimisces, Emperor of the East, 925-976'), +(4380, 'Excavations (Archaeology) -- Egypt -- Fiction'), +(4381, 'Women in the Bible'), +(4382, 'Catholic Church -- Doctrines -- Catholic authors'), +(4383, 'Poor children -- Fiction'), +(4384, 'China -- History -- Boxer Rebellion, 1899-1901'), +(4385, 'Vercingetorix, Chief of the Arverni, -46 B.C.'), +(4386, 'Great Britain -- Foreign relations -- Netherlands'), +(4387, 'Spanish-American War, 1898'), +(4388, 'Palliser, Plantagenet (Fictitious character) -- Fiction'), +(4389, 'Abolitionists -- Fiction'), +(4390, 'Ballads'), +(4391, 'Casanova, Giacomo, 1725-1798'), +(4392, 'China -- Economic conditions -- 1912-1949'), +(4393, 'Dickens, Charles, 1812-1870'), +(4394, 'Henry V, King of England, 1387-1422'), +(4395, 'Brazil -- Description and travel'), +(4396, 'Confederate States of America. Army. Georgia Artillery. Howell\'s Battery'), +(4397, 'India -- Politics and government -- 1919-1947'), +(4398, 'Yorkshire (England) -- Social life and customs -- Fiction'), +(4399, 'Gay Head (Mass.) -- Pictorial works'), +(4400, 'Proverbs, Creole'), +(4401, 'Poets, English -- 18th century -- Correspondence'), +(4402, 'Pragmatism'), +(4403, 'Spain -- History -- Carlist War, 1833-1840 -- Fiction'), +(4404, 'School music -- Bibliography'), +(4405, 'Advertising -- Fiction'), +(4406, 'Oratory -- Early works to 1800'), +(4407, 'Rome -- History -- Nero, 54-68 -- Fiction'), +(4408, 'Rural families -- Fiction'), +(4409, 'Caroline Mathilde, Queen, consort of Christian VII, King of Denmark, 1751-1775'), +(4410, 'Philippines -- Juvenile literature'), +(4411, 'World War, 1914-1918 -- Campaigns -- Western Front'), +(4412, 'Europe -- History -- 1492-1648'), +(4413, 'Skepticism'), +(4414, 'Beards'), +(4415, 'Napoleonic Wars, 1800-1815 -- Campaigns -- Russia'), +(4416, 'World War, 1914-1918 -- Naval operations -- Juvenile fiction'), +(4417, 'Legends -- England -- Lake District'), +(4418, 'World War, 1914-1918 -- Women'), +(4419, 'Wall Street (New York, N.Y.) -- Fiction'), +(4420, 'Romances, English -- History and criticism'), +(4421, 'Poland -- Emigration and immigration -- Fiction'), +(4422, 'Industrial arts -- History'), +(4423, 'Newspapers'), +(4424, 'Conduct of life -- Juvenile literature'), +(4425, 'Mortimer, George, 1784-1844'), +(4426, 'Children -- Juvenile fiction'), +(4427, 'Japan -- Juvenile fiction'), +(4428, 'New England -- Juvenile fiction'), +(4429, 'Philosophers -- Great Britain -- Biography'), +(4430, 'Polish literature -- Periodicals'), +(4431, 'Children\'s sermons'), +(4432, 'Dialogues, English -- Early works to 1800'), +(4433, 'Washington (D.C.) -- History -- Capture by the British, 1814 -- Juvenile fiction'), +(4434, 'Great Britain -- History -- Elizabeth, 1558-1603 -- Fiction'), +(4435, 'Daughters -- Juvenile fiction'), +(4436, 'Shi jing'), +(4437, 'Prisons -- Design and construction'), +(4438, 'Choiseul, Etienne-François, duc de, 1719-1785'), +(4439, 'Utopias -- Canada'), +(4440, 'Motion picture industry -- Fiction'), +(4441, 'Sailors -- England -- Biography'), +(4442, 'Interior decoration'), +(4443, 'Cibber, Colley, 1671-1757'), +(4444, 'Cousins -- Fiction'), +(4445, 'Swedish poetry -- Translations into Finnish'), +(4446, 'Sempach, Battle of, Switzerland, 1386 -- Fiction'), +(4447, 'Ceriocleptes xenurus -- Classification'), +(4448, 'Prisoners -- Fiction'), +(4449, 'Burney, Fanny, 1752-1840 -- Friends and associates'), +(4450, 'Alchemy -- History'), +(4451, 'Inventors -- United States -- Biography'), +(4452, 'Verse satire, Latin -- Translations into English'), +(4453, 'Marie Antoinette, Queen, consort of Louis XVI, King of France, 1755-1793'), +(4454, 'Perugia (Italy) -- History'), +(4455, 'Country life -- England -- Wiltshire'), +(4456, 'Delilah (Biblical figure) -- Drama'), +(4457, 'Bahai Faith'), +(4458, 'Suspense fiction'), +(4459, 'Turkey -- Fiction'), +(4460, 'Edinburgh (Scotland) -- Description and travel'), +(4461, 'Glengarry (Ont.) -- Fiction'), +(4462, 'Chiang, Kai-shek, 1887-1975'), +(4463, 'Fram Expedition'), +(4464, 'Great Britain -- History -- Anne, 1702-1714 -- Fiction'), +(4465, 'Brothers and sisters -- Drama'), +(4466, 'Slatin, Rudolf Carl, Freiherr von, 1857-1932'), +(4467, 'Marine animals'), +(4468, 'Cape Breton Island (N.S.) -- Fiction'), +(4469, 'East Indies -- Description and travel -- Juvenile literature'), +(4470, 'Surgery'), +(4471, 'Yachting -- Juvenile fiction'), +(4472, 'Dolphins -- Juvenile fiction'), +(4473, 'Short stories, Chinese'), +(4474, 'Vaudeville'), +(4475, 'New Orleans (La.) -- Fiction'), +(4476, 'Seduction -- Poetry'), +(4477, 'Christmas stories, English'), +(4478, 'Peasant uprisings -- Spain -- Jerez de la Frontera -- History -- Fiction'), +(4479, 'Rome -- Antiquities'), +(4480, 'Britons -- Fiction'), +(4481, 'Pickett, George E. (George Edward), 1825-1875'), +(4482, 'Muslims -- Fiction'), +(4483, 'Fairy tales -- England'), +(4484, 'Women air pilots -- Juvenile fiction'), +(4485, 'Stanley, Henry M. (Henry Morton), 1841-1904'), +(4486, 'Malay language -- Grammar'), +(4487, 'Nobility -- Great Britain -- Biography'), +(4488, 'African Americans -- Bibliography'), +(4489, 'Aristocracy (Social class) -- Hungary -- Fiction'), +(4490, 'Yellow fever -- Pennsylvania -- Philadelphia'), +(4491, 'Charleston (S.C.) -- Fiction'), +(4492, 'Great Britain -- History -- George II, 1727-1760'), +(4493, 'Greece -- History -- War of Independence, 1821-1829'), +(4494, 'Moon -- Juvenile fiction'), +(4495, 'Bible. Malachi'), +(4496, 'Bergbom, Kaarlo Johan, 1843-1906'), +(4497, 'Chinese literature -- Translations into English'), +(4498, 'Maritime law -- Portugal'), +(4499, 'Indians of North America -- California -- Folklore'), +(4500, 'MacLane, Mary, 1881-1929'), +(4501, 'Molière, 1622-1673'), +(4502, 'Indians of Mexico'), +(4503, 'Caffeine -- Physiological effect'), +(4504, 'India -- History -- Sepoy Rebellion, 1857-1858 -- Juvenile fiction'), +(4505, 'Great Britain -- Politics and government -- 1760-1820'), +(4506, 'Europe, Northern -- Description and travel'), +(4507, 'Robin Hood (Legendary character) -- Juvenile literature'), +(4508, 'Gillespie, George, 1613-1648'), +(4509, 'Tarawa, Battle of, Kiribati, 1943'), +(4510, 'Pittsburgh (Pa.) -- History'), +(4511, 'Ethnology -- India -- Assam'), +(4512, 'Scott, Walter, 1771-1832 -- Influence'), +(4513, 'South Carolina -- History -- Civil War, 1861-1865'), +(4514, 'United States -- Politics and government -- 1861-1865 -- Sermons'), +(4515, 'Henry, Infante of Portugal, 1394-1460 -- Poetry'), +(4516, 'Solar system'), +(4517, 'Bears'), +(4518, 'Lace and lace making'), +(4519, 'Patrick, Saint, 373?-463?'), +(4520, 'Bindle, Joseph (Fictitious character) -- Fiction'), +(4521, 'Trials (Adultery) -- Great Britain'), +(4522, 'Cage birds'), +(4523, 'West (U.S.) -- History -- To 1848'), +(4524, 'Vinegar'), +(4525, 'Lumber trade -- Washington (State)'), +(4526, 'Yosemite National Park (Calif.) -- Description and travel'), +(4527, 'Self-experimentation in medicine -- Fiction'), +(4528, 'Fairy poetry'), +(4529, 'Scotts\' Shipbuilding & Engineering Co. Ltd.'), +(4530, 'Civil engineering -- Periodicals'), +(4531, 'World War, 1914-1918 -- Belgium'), +(4532, 'Police -- England -- London'), +(4533, 'Cape of Good Hope (South Africa) -- Juvenile fiction'), +(4534, 'People with visual disabilities -- Fiction'), +(4535, 'Art -- Collectors and collecting -- Fiction'), +(4536, 'Mississippi River Valley -- History'), +(4537, 'Minho (Portugal) -- Fiction'), +(4538, 'Creation'), +(4539, 'Legends -- Finland'), +(4540, 'Hebrides (Scotland) -- Fiction'), +(4541, 'Huysum, Jan van, 1682-1749 -- Poetry'), +(4542, 'Clemenceau, Georges, 1841-1929'), +(4543, 'Lion -- Juvenile fiction'), +(4544, 'Cleveland, Grover, 1837-1908'), +(4545, 'Gaul -- History -- 58 B.C.-511 A.D. -- Fiction'), +(4546, 'Pennsylvania Dutch Country (Pa.) -- Fiction'), +(4547, 'Richardson, James, 1806-1851'), +(4548, 'Young men -- Conduct of life -- Juvenile fiction'), +(4549, 'Monism'), +(4550, 'Anthropology -- History'), +(4551, 'Great Britain -- History -- 18th century -- Fiction'), +(4552, 'Courts and courtiers'), +(4553, 'Romance-language literature -- 16th century -- History and criticism'), +(4554, 'Mary, Blessed Virgin, Saint -- Meditations'), +(4555, 'Henry VIII, King of England, 1491-1547 -- Fiction'), +(4556, 'Witchcraft -- Pomerania (Poland and Germany)'), +(4557, 'Genealogy -- Fiction'), +(4558, 'Gray wolf -- Reintroduction -- Michigan'), +(4559, 'Liberty'), +(4560, 'Arnold, Matthew, 1822-1888'), +(4561, 'Love, Nat, 1854-1921'), +(4562, 'London (England) -- Social conditions'), +(4563, 'Antiques'), +(4564, 'Life (Biology)'), +(4565, 'Band music, Arranged'), +(4566, 'Kings and rulers -- Succession -- Drama'), +(4567, 'United States. Social Security Act'), +(4568, 'German drama -- Translations into Finnish'), +(4569, 'Abelard, Peter, 1079-1142 -- Poetry'), +(4570, 'New York (State) -- History -- Revolution, 1775-1783 -- Fiction'), +(4571, 'Legends -- Rome -- Poetry'), +(4572, 'Steele, Richard, Sir, 1672-1729'), +(4573, 'Prisoners -- Biography'), +(4574, 'Ethnology -- India, South'), +(4575, 'Drinking of alcoholic beverages'), +(4576, 'Mothers and sons -- Juvenile fiction'), +(4577, 'Plumbing -- Handbooks, manuals, etc.'), +(4578, 'Kierkegaard, Søren, 1813-1855 -- Translations into Finnish'), +(4579, 'World War, 1914-1918 -- Baltic Sea -- Juvenile fiction'), +(4580, 'Hinduism -- Relations -- Christianity'), +(4581, 'Play -- Juvenile fiction'), +(4582, 'Ballads, English -- England -- Texts'), +(4583, 'Courts and courtiers -- Fiction'), +(4584, 'Civil engineering -- England -- London'), +(4585, 'Meredith, George, 1828-1909'), +(4586, 'Christian life -- Early works to 1800'), +(4587, 'Sri Lanka -- History -- 1505-1948'), +(4588, 'Novelists, French -- 19th century -- Biography'), +(4589, 'Animals -- Fiction'), +(4590, 'Fables, French'), +(4591, 'France -- Politics and government'), +(4592, 'Conflict of generations -- Drama'), +(4593, 'Bible. Amos'), +(4594, 'Roosevelt, Theodore, 1858-1919'), +(4595, 'Bjørnson, Bjørnstjerne, 1832-1910 -- Translations into English'), +(4596, 'Folk songs, Finnish'), +(4597, 'Francis, of Assisi, Saint, 1182-1226'), +(4598, 'Authorship -- Fiction'), +(4599, 'Raccoon -- Juvenile fiction'), +(4600, 'English fiction -- Stories, plots, etc. -- Juvenile literature'), +(4601, 'Kachari (Indic people)'), +(4602, 'Natural selection'), +(4603, 'S. W. Partridge & Co. (London, England) -- Catalogs'), +(4604, 'Encyclopedists'), +(4605, 'Intellectual property -- Fiction'), +(4606, 'Patriotism -- Juvenile fiction'), +(4607, 'Athens (Greece) -- Description and travel'), +(4608, 'Apologetics'), +(4609, 'Lynching'), +(4610, 'English poetry -- Middle English, 1100-1500'), +(4611, 'Prisons -- Periodicals'), +(4612, 'Degeneration'), +(4613, 'Cities and towns, Ancient'), +(4614, 'World War, 1914-1918 -- Personal narratives, Finnish'), +(4615, 'Rouen (France) -- Description and travel'), +(4616, 'Magic -- Juvenile fiction'), +(4617, 'Great Britain -- History -- Anglo-Saxon period, 449-1066 -- Fiction'), +(4618, 'Indians of North America -- Canada -- Languages -- Glossaries, vocabularies, etc.'), +(4619, 'Chelsea (London, England) -- Guidebooks'), +(4620, 'Methodist Episcopal Church -- Controversial literature'), +(4621, 'Ohio -- Fiction'), +(4622, 'Saxony (Germany) -- Description and travel'), +(4623, 'Discoveries in geography -- Portuguese'), +(4624, 'Templars -- History'), +(4625, 'Dentistry'), +(4626, 'Iphigenia (Mythological character) -- Drama'), +(4627, 'England -- Description and travel -- Early works to 1800'), +(4628, 'Philippines -- History -- Philippine American War, 1899-1902'), +(4629, 'Lipari Islands (Italy) -- Description and travel'), +(4630, 'Japan -- Social life and customs -- 1868-1912 -- Fiction'), +(4631, 'Cleopatra, Queen of Egypt, -30 B.C.'), +(4632, 'Mysticism'), +(4633, 'Women -- Economic conditions'), +(4634, 'Saint Augustine (Fla.) -- History'), +(4635, 'China -- History'), +(4636, 'Bengal (India) -- History'), +(4637, 'American essays'), +(4638, 'Working class women -- Fiction'), +(4639, 'Worshipful Company of Skinners'), +(4640, 'Tell, Wilhelm -- Drama'), +(4641, 'Children\'s literature, American -- Periodicals'), +(4642, 'College stories'), +(4643, 'Time -- Fiction'), +(4644, 'Bees'), +(4645, 'Turkey -- History, Naval'), +(4646, 'Romania -- Social life and customs'), +(4647, 'White-winged dove'), +(4648, 'Richard I, Duke of Normandy, approximately 932-996 -- Juvenile fiction'), +(4649, 'Airplanes -- Piloting -- Juvenile fiction'), +(4650, 'Twentieth century -- Forecasts'), +(4651, 'Virginia -- History -- Civil War, 1861-1865'), +(4652, 'Swedish fiction -- Translations into Dutch'), +(4653, 'Human beings -- Migrations'), +(4654, 'Maine -- History -- Revolution, 1775-1783 -- Juvenile fiction'), +(4655, 'Confederate States of America. Army. Tennessee Infantry Regiment, 1st'), +(4656, 'Plants'), +(4657, 'Fortification -- Texas -- Maps'), +(4658, 'West Lake (China) -- Description and travel'), +(4659, 'Italy -- History -- To 476'), +(4660, 'Islamic philosophy -- Early works to 1800'), +(4661, 'Americans -- China -- Fiction'), +(4662, 'Pound, Ezra, 1885-1972 -- Technique'), +(4663, 'Authors, American -- Homes and haunts -- Southern States'), +(4664, 'Pilgrims (New Plymouth Colony) -- Drama'), +(4665, 'Great Britain -- History -- Civil War, 1642-1649 -- Fiction'), +(4666, 'Ecuador -- Description and travel'), +(4667, 'Trees -- Great Britain'), +(4668, 'Catherine, of Genoa, Saint, 1447-1510'), +(4669, 'Bible. Romans'), +(4670, 'United States. Army. Illinois Cavalry Regiment, 2nd (1861-1865) -- History'), +(4671, 'Wilde, Oscar, 1854-1900 -- Criticism and interpretation'), +(4672, 'Montessori method of education'), +(4673, 'Kings County (N.Y.) -- History'), +(4674, 'Composers -- Germany -- Biography'), +(4675, 'Strindberg, August, 1849-1912 -- Translations into English'), +(4676, 'Early maps'), +(4677, 'Universities and colleges -- United States'), +(4678, 'United States. Navy -- Juvenile fiction'), +(4679, 'Jolin, Philippe, -1829'), +(4680, 'Will'), +(4681, 'Coinage -- Great Britain -- Early works to 1800'), +(4682, 'Portugal -- Politics and government -- 19th century'), +(4683, 'Siberia (Russia) -- Description and travel'), +(4684, 'Ice cream, ices, etc.'), +(4685, 'London (England) -- History'), +(4686, 'Democracy -- United States'), +(4687, 'Japan -- Civilization -- Zen influences'), +(4688, 'Birds -- Yucatan Peninsula'), +(4689, 'Heraldry, Ornamental'), +(4690, 'Child care'), +(4691, 'English literature -- 18th century -- History and criticism'), +(4692, 'Pirates -- China Sea'), +(4693, 'Florence (Italy) -- History'), +(4694, 'English fiction -- 19th century -- History and criticism'), +(4695, 'Copyright -- Great Britain -- History -- Sources'), +(4696, 'Commonplace books'), +(4697, 'Legends -- England -- Lancashire'), +(4698, 'Conan (Fictitious character) -- Fiction'), +(4699, 'New England -- Religious life and customs'), +(4700, 'Balls (Parties) -- Fiction'), +(4701, 'Novelists, English -- 19th century -- Correspondence'), +(4702, 'Boxing -- England -- Fiction'), +(4703, 'Aram, Eugene, 1704-1759 -- Fiction'), +(4704, 'World War, 1914-1918 -- Aerial operations'), +(4705, 'Imaginary conversations'), +(4706, 'Tea -- Health aspects -- India'), +(4707, 'Lowestoft (England) -- Description and travel'), +(4708, 'Bible. Daniel -- Criticism, interpretation, etc.'), +(4709, 'Bailiffs'), +(4710, 'Short stories, Russian -- Translations into Finnish'), +(4711, 'Finland -- History -- Russian Conquest, 1808-1809'), +(4712, 'Glastonbury Abbey -- Fiction'), +(4713, 'Greece -- Description and travel'), +(4714, 'Kidnapping -- Fiction'), +(4715, 'United States. Army of the Potomac -- Biography'), +(4716, 'Woodchuck -- Juvenile fiction'), +(4717, 'Tablets (Medicine)'), +(4718, 'Readers (Elementary)'), +(4719, 'May, Phil, 1864-1903'), +(4720, 'Railroads -- Freight -- Rates -- Great Britain'), +(4721, 'Hamilton, Emma, Lady, 1761?-1815 -- Correspondence'), +(4722, 'England -- Description and travel -- Fiction'), +(4723, 'Prose poems'), +(4724, 'Physical sciences -- Juvenile fiction'), +(4725, 'World War, 1914-1918 -- Turkey'), +(4726, 'Great Britain -- History -- Richard II, 1377-1399 -- Drama'), +(4727, 'Greece -- History -- 323-1453'), +(4728, 'Wandering Jew -- Fiction'), +(4729, 'Newman, John Henry, 1801-1890 -- Songs and music'), +(4730, 'Election sermons -- Massachusetts'), +(4731, 'Castaways -- Fiction'), +(4732, 'Indigenous peoples -- Fiction'), +(4733, 'Black Hills (S.D. and Wyo.) -- Description and travel'), +(4734, 'Mississippi River Valley -- Social life and customs'), +(4735, 'Pickering (England)'), +(4736, 'Bird Day'), +(4737, 'Legends -- Japan'), +(4738, 'Theater -- Juvenile fiction'), +(4739, 'Knights of Malta -- History'), +(4740, 'Postal service -- Canada -- Guides'), +(4741, 'Folklore -- Brazil'), +(4742, 'Titian, approximately 1488-1576'), +(4743, 'Horses -- Training'), +(4744, 'West Country (England) -- Fiction'), +(4745, 'Zoology'), +(4746, 'Great Britain -- History -- Tudors, 1485-1603'), +(4747, 'Apuleius. Metamorphoses'), +(4748, 'Love stories, French -- Translations into English'), +(4749, 'Chapbooks'), +(4750, 'Grain'), +(4751, 'Napoleonic Wars, 1800-1815 -- Fiction'), +(4752, 'Prayer -- Christianity'), +(4753, 'Logging -- Fiction'), +(4754, 'Women\'s rights -- United States -- History -- 19th century'), +(4755, 'Grandparent and child -- Fiction'), +(4756, 'Italy -- Civilization -- 19th century'), +(4757, 'Harte, Bret, 1836-1902'), +(4758, 'France -- History -- Revolution, 1789-1799 -- Juvenile fiction'), +(4759, 'Society of Friends'), +(4760, 'Drummond, Lake (Va.)'), +(4761, 'Vikings -- Great Britain'), +(4762, 'France -- History -- 17th century -- Drama'), +(4763, 'Brown, John, 1800-1859'), +(4764, 'Sagas -- Translations into English'), +(4765, 'Lüshun (China) -- History -- Siege, 1904-1905'), +(4766, 'Harems -- Fiction'), +(4767, 'Family life education'), +(4768, 'Universities and colleges'), +(4769, 'Soviet Union -- Foreign relations -- United States'), +(4770, 'Blanc, Mont (France and Italy)'), +(4771, 'Unitarian Universalist churches -- Sermons'), +(4772, 'Attempted murder -- Fiction'), +(4773, 'World War, 1914-1918 -- Causes'), +(4774, 'Guardian angels -- Fiction'), +(4775, 'Science -- Philosophy'), +(4776, 'United States -- History -- War of 1812 -- Personal narratives'), +(4777, 'Slavery -- United States -- Poetry'), +(4778, 'France -- History -- Regency, 1715-1723'), +(4779, 'Cuba -- History -- Revolution, 1895-1898 -- Fiction'), +(4780, 'China -- History -- Han dynasty, 202 B.C.-220 A.D. -- Anecdotes'), +(4781, 'Red River Settlement'), +(4782, 'Franco-Prussian War, 1870-1871 -- Personal narratives'), +(4783, 'United States -- History -- French and Indian War, 1754-1763 -- Juvenile fiction'), +(4784, 'Pottery'), +(4785, 'Spanish literature -- History and criticism'), +(4786, 'America -- Discovery and exploration -- Spanish'), +(4787, 'Asteroids -- Fiction'), +(4788, 'Comte, Auguste, 1798-1857'), +(4789, 'United States -- History -- War of 1812 -- Participation, African American'), +(4790, 'Britons'), +(4791, 'Mallet, David, 1705?-1765. Elvira'), +(4792, 'Authors -- Correspondence, reminiscences, etc.'), +(4793, 'Health'), +(4794, 'Selling'), +(4795, 'Mental healing'), +(4796, 'Philippines -- Social life and customs'), +(4797, 'Logic'), +(4798, 'Covenants -- Religious aspects'), +(4799, 'Fairy tales -- Great Britain'), +(4800, 'St. Albans Cathedral'), +(4801, 'Cornwall (England : County) -- Social life and customs -- 19th century -- Juvenile fiction'), +(4802, 'Lemmings'), +(4803, 'Korea -- History -- Japanese occupation, 1910-1945'), +(4804, 'World War, 1914-1918 -- Battlefields -- Guidebooks'), +(4805, 'Pelée, Mount (Martinique) -- Eruption, 1902'), +(4806, 'West (U.S.) -- Fiction'), +(4807, 'Freedom of speech'), +(4808, 'Explorers -- Juvenile fiction'), +(4809, 'Short stories, Italian -- Translations into English'), +(4810, 'Puppets -- Juvenile fiction'), +(4811, 'Priests -- Fiction'), +(4812, 'Engineers -- Great Britain -- Biography'), +(4813, 'Art -- Germany'), +(4814, 'Bible. Haggai'), +(4815, 'Actresses -- Fiction'), +(4816, 'Nobility -- Portugal -- Fiction'), +(4817, 'Eulenspiegel (Satire) -- Legends'), +(4818, 'Domestic animals -- Juvenile fiction'), +(4819, 'Massachusetts -- History -- Civil War, 1861-1865 -- Regimental histories'), +(4820, 'Fredericksburg (Va.) -- History'), +(4821, 'Ballads, Finnish -- History and criticism'), +(4822, 'England -- Social life and customs -- 1066-1485'), +(4823, 'Deception -- Juvenile fiction'), +(4824, 'Franco-Prussian War, 1870-1871 -- Diplomatic history'), +(4825, 'Bahais -- Japan'), +(4826, 'Women -- History'), +(4827, 'Songs, English -- United States -- Texts'), +(4828, 'India, South -- Social life and customs'), +(4829, 'Intellect'), +(4830, 'Poisoners'), +(4831, 'Laughter'), +(4832, 'Didactic poetry, English (Old)'), +(4833, 'Whitney, William Dwight, 1827-1894'), +(4834, 'Americans -- Cuba -- Fiction'), +(4835, 'Horse racing -- Fiction'), +(4836, 'Short stories, Swedish -- Translations into Finnish'), +(4837, 'Steamboats -- Juvenile fiction'), +(4838, 'Dakota Indians -- Wars -- 1862-1865'), +(4839, 'Amundsen, Roald, 1872-1928 -- Travel -- Antarctica'), +(4840, 'World War, 1914-1918 -- Trench warfare -- Juvenile fiction'), +(4841, 'Lutheran Church -- Catechisms -- English'), +(4842, 'Lamb, Charles, 1775-1834'), +(4843, 'Italian literature -- 19th century'), +(4844, 'Art -- Italy -- History'), +(4845, 'Macmillan & Co. -- Catalogs'), +(4846, 'Golf'), +(4847, 'Great Britain -- Foreign relations -- United States'), +(4848, 'Ireland -- History -- 17th century'), +(4849, 'Annapolis (Md.) -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(4850, 'Virginia -- Fiction'), +(4851, 'Literature -- Philosophy'), +(4852, 'Great Britain. Army. Royal Leicestershire Regiment'), +(4853, 'Monmouth\'s Rebellion, 1685 -- Juvenile fiction'), +(4854, 'Napoleon I, Emperor of the French, 1769-1821 -- Fiction'), +(4855, 'Astragalus earlei'), +(4856, 'Folk songs, English -- Ireland'), +(4857, 'New Jersey -- History'), +(4858, 'Postal rates'), +(4859, 'Catholic Church -- Controversial literature'), +(4860, 'James, Henry, 1843-1916 -- Travel -- Italy'), +(4861, 'United States. Marine Corps -- History -- World War, 1939-1945'), +(4862, 'Geology -- Utah -- Arches National Park -- Guidebooks'), +(4863, 'Cosmology -- Early works to 1800'), +(4864, 'Violin -- Maintenance and repair'), +(4865, 'Grossmith, George, 1847-1912'), +(4866, 'Scotland -- History -- Robert I, 1306-1329 -- Poetry'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(4867, 'Prussia (Germany) -- History -- Frederick II, 1740-1786 -- Fiction'), +(4868, 'Remus, Uncle (Fictitious character) -- Literary collections'), +(4869, 'Moneylenders -- Drama'), +(4870, 'Personnel management'), +(4871, 'Veterinarians -- Fiction'), +(4872, 'Mountain life -- Fiction'), +(4873, 'Bible. Psalms XXIII -- Criticism, interpretation, etc.'), +(4874, 'British Columbia -- Fiction'), +(4875, 'Southwest, Old -- History'), +(4876, 'Readers (Primary) -- Early works to 1800'), +(4877, 'Roberts, Frederick Sleigh Roberts, Earl, 1832-1914'), +(4878, 'Heroes -- Juvenile literature'), +(4879, 'Arran, Island of (Scotland) -- Social life and customs -- Fiction'), +(4880, 'Hygiene -- Juvenile literature'), +(4881, 'Theater -- Fiction'), +(4882, 'Mounds -- Ohio'), +(4883, 'Earthquakes'), +(4884, 'Inventions -- Fiction'), +(4885, 'Cicero, Marcus Tullius -- Correspondence'), +(4886, 'Orchid culture'), +(4887, 'Automobiles -- Juvenile fiction'), +(4888, 'Nova Scotia -- History'), +(4889, 'Peirce, Charles S. (Charles Sanders), 1839-1914'), +(4890, 'Celebrities -- Fiction'), +(4891, 'Peter I, Emperor of Russia, 1672-1725'), +(4892, 'Wentworth, W. C. (William Charles), 1790-1872'), +(4893, 'Yorkshire (England) -- Drama'), +(4894, 'Homer -- Translations into English'), +(4895, 'Mayas -- Antiquities'), +(4896, 'Russia -- Social life and customs -- 19th century -- Fiction'), +(4897, 'Washington, George, 1732-1799 -- Homes and haunts -- Virginia -- Mount Vernon (Estate)'), +(4898, 'Grammar, Comparative and general'), +(4899, 'Great Britain. Army. Lumsden\'s Horse'), +(4900, 'English drama -- Restoration, 1660-1700'), +(4901, 'Mother and child -- Juvenile fiction'), +(4902, 'Andes -- Description and travel'), +(4903, 'Women in politics -- Biography'), +(4904, 'Eliot, George, 1819-1880 -- Diaries'), +(4905, 'Fathers and daughters -- Fiction'), +(4906, 'Philosophy of nature'), +(4907, 'Art, Italian -- Fiction'), +(4908, 'Vedanta -- Early works to 1800'), +(4909, 'Alabama -- Politics and government'), +(4910, 'Micmac Indians'), +(4911, 'Cooking, English'), +(4912, 'Chemists -- Fiction'), +(4913, 'Manchus'), +(4914, 'Ojibwa language -- Grammar'), +(4915, 'Germany -- Drama'), +(4916, 'Salons -- France -- Paris'), +(4917, 'Epilepsy'), +(4918, 'Flemish fiction'), +(4919, 'Folklore -- Bosnia and Herzegovina'), +(4920, 'Saint Louis (Mo.) -- History -- Juvenile fiction'), +(4921, 'Ballad operas -- Librettos'), +(4922, 'Swindlers and swindling'), +(4923, 'Witches -- Fiction'), +(4924, 'Bible. Ruth'), +(4925, 'Iran -- Description and travel'), +(4926, 'Litteraere expeditionen til Vest-Grønland, 1902-1904'), +(4927, 'Christian life -- Fiction'), +(4928, 'World War, 1914-1918 -- Jews'), +(4929, 'Maryland -- Fiction'), +(4930, 'Mineral waters -- England -- Harrogate -- Early works to 1800'), +(4931, 'Bible. Corinthians'), +(4932, 'Wesley, John, 1703-1791'), +(4933, 'Amusements -- Juvenile fiction'), +(4934, 'Bergson, Henri, 1859-1941'), +(4935, 'Folklore -- Germany -- Rhine Valley'), +(4936, 'Bookplates'), +(4937, 'Russia -- History -- Revolution, 1905-1907 -- Fiction'), +(4938, 'Mushrooms -- England'), +(4939, 'French language -- Versification'), +(4940, 'Folk songs -- History and criticism'), +(4941, 'Egypt -- History -- Fiction'), +(4942, 'Princesses -- Drama'), +(4943, 'Mozambique -- History'), +(4944, 'Tahiti (French Polynesia : Island) -- Description and travel'), +(4945, 'Art, Medieval'), +(4946, 'Linacre lecture, St. John\'s college, Cambridge'), +(4947, 'Cactus'), +(4948, 'Libraries, Medical -- Massachusetts -- 19th century'), +(4949, 'Diamond jewelry -- Juvenile fiction'), +(4950, 'Recreation areas -- Oregon -- Grant County'), +(4951, 'Arizona -- Juvenile fiction'), +(4952, 'Spanish poetry -- To 1500'), +(4953, 'Composers'), +(4954, 'School children -- Juvenile fiction'), +(4955, 'Cactus -- Southwest, New'), +(4956, 'Mayan languages -- Writing'), +(4957, 'Erzgebirge (Czech Republic and Germany) -- Description and travel'), +(4958, 'Adorne, Anselme, 1424-1483'), +(4959, 'Housekeepers -- Fiction'), +(4960, 'Hungary -- Biography'), +(4961, 'World War, 1914-1918 -- Gift books'), +(4962, 'World War, 1914-1918 -- Personal narratives, Canadian'), +(4963, 'Fruit-culture -- Great Britain'), +(4964, 'Prisoners of war'), +(4965, 'Conrad, Joseph, 1857-1924'), +(4966, 'French fiction -- Translations into Spanish'), +(4967, 'Trails -- United States'), +(4968, 'Germany -- History -- Revolution, 1848-1849 -- Fiction'), +(4969, 'Virginia -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(4970, 'Amphibians, Fossil'), +(4971, 'Polish fiction -- Translations into Finnish'), +(4972, 'German literature -- 19th century -- Translations into English'), +(4973, 'Christina, Queen of Sweden, 1626-1689 -- Fiction'), +(4974, 'Frontier and pioneer life -- Australia -- Poetry'), +(4975, 'Gases'), +(4976, 'Esperanto -- Textbooks'), +(4977, 'World War, 1914-1918 -- Women -- Great Britain'), +(4978, 'Birds -- Conservation'), +(4979, 'Trials (Slander) -- Great Britain'), +(4980, 'Tree worship'), +(4981, 'Traveling sales personnel -- Fiction'), +(4982, 'Spencer, George, 1799-1864'), +(4983, 'Latin literature -- History and criticism'), +(4984, 'Fascism'), +(4985, 'Man-woman relationships -- Quotations, maxims, etc.'), +(4986, 'Woodwork'), +(4987, 'Philippines'), +(4988, 'Lutheran Church -- Catechisms'), +(4989, 'Mathematics -- Periodicals'), +(4990, 'Cape of Good Hope (South Africa) -- Description and travel'), +(4991, 'Exiles -- Drama'), +(4992, 'China -- History -- To 221 B.C. -- Chronology'), +(4993, 'Books -- Conservation and restoration'), +(4994, 'Indian captivities -- Juvenile fiction'), +(4995, 'Punic War, 2nd, 218-201 B.C.'), +(4996, 'Agriculture -- United States -- Periodicals'), +(4997, 'Theater -- Moral and ethical aspects -- Early works to 1800'), +(4998, 'New Brunswick -- Fiction'), +(4999, 'Meat industry and trade -- Fiction'), +(5000, 'Arctic regions -- Discovery and exploration'), +(5001, 'English literature -- Old English, ca. 450-1100 -- History and criticism'), +(5002, 'Bible. Acts -- Criticism, interpretation, etc.'), +(5003, 'Indians of South America -- History'), +(5004, 'African American arts'), +(5005, 'Henner, Jean-Jacques, 1829-1905'), +(5006, 'African American soldiers -- History -- 19th century'), +(5007, 'English language -- Dictionaries -- German'), +(5008, 'Great Britain. Army. Suffolk Regiment'), +(5009, 'Botanical chemistry'), +(5010, 'Women college students -- Juvenile fiction'), +(5011, 'Ketchup'), +(5012, 'Missions to Jews'), +(5013, 'Americans -- Japan -- Fiction'), +(5014, 'Angola -- Description and travel'), +(5015, 'Majorca (Spain) -- Fiction'), +(5016, 'Menus'), +(5017, 'London (England) -- Biography'), +(5018, 'Fathers -- Death -- Drama'), +(5019, 'Tales'), +(5020, 'Standish, Myles, 1584?-1656 -- Poetry'), +(5021, 'Equal pay for equal work'), +(5022, 'Pinocchio (Fictitious character) -- Juvenile fiction'), +(5023, 'Vertebrates'), +(5024, 'Owls -- Juvenile fiction'), +(5025, 'Superstition'), +(5026, 'Western Australia -- Discovery and exploration'), +(5027, 'Canada -- Juvenile fiction'), +(5028, 'Military engineers -- United States -- Biography'), +(5029, 'Banks and banking -- Juvenile fiction'), +(5030, 'Müller, George, 1805-1898'), +(5031, 'Football -- Juvenile fiction'), +(5032, 'Maine -- Social life and customs -- Fiction'), +(5033, 'Frederick II, King of Prussia, 1712-1786'), +(5034, 'Grieg, Edvard, 1843-1907 -- Juvenile literature'), +(5035, 'Sheppard, Jack, 1702-1724 -- Fiction'), +(5036, 'Agnosticism'), +(5037, 'China -- Religion'), +(5038, 'MacDowell, Edward, 1860-1908'), +(5039, 'Antigua -- History'), +(5040, 'Social classes -- England -- Fiction'), +(5041, 'Novelists, French -- 19th century -- Correspondence'), +(5042, 'Mackintosh, James, Sir, 1765-1832'), +(5043, 'Irving, Henry, Sir, 1838-1905 -- Travel -- United States'), +(5044, 'French language -- Dialects -- Dictionaries'), +(5045, 'German poetry'), +(5046, 'Timon of Athens (Legendary character) -- Drama'), +(5047, 'Doria, Andrea, 1466-1560'), +(5048, 'Immortalism -- Fiction'), +(5049, 'Arkansas -- Fiction'), +(5050, 'Crime'), +(5051, 'Fungi'), +(5052, 'Frederick I, King of Bohemia, 1596-1632 -- Fiction'), +(5053, 'Honduras -- Description and travel'), +(5054, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Army of the Cumberland'), +(5055, 'Devil -- Early works to 1800'), +(5056, 'Society of Friends -- History -- Early works to 1800'), +(5057, 'Holy Roman Empire -- History -- Charles V, 1519-1556 -- Fiction'), +(5058, 'Illinois -- Description and travel'), +(5059, 'Great Britain. Army. Royal Regiment of Artillery'), +(5060, 'Algebraic functions'), +(5061, 'Veracruz-Llave (Mexico : State)'), +(5062, 'Hart, George Vaughan, 1752-1832'), +(5063, 'United States -- History -- Revolution, 1775-1783 -- Campaigns'), +(5064, 'Poisons'), +(5065, 'Space colonies -- Fiction'), +(5066, 'Women\'s rights'), +(5067, 'Great Britain -- Politics and government'), +(5068, 'Oil fields -- Juvenile fiction'), +(5069, 'Sousa, Luís de, 1555?-1632'), +(5070, 'British -- Portugal -- Porto -- Fiction'), +(5071, 'Romans à clef'), +(5072, 'Prehistoric peoples -- Fiction'), +(5073, 'Literature -- Humor'), +(5074, 'African American churches'), +(5075, 'Trick photography'), +(5076, 'Children with disabilities -- Juvenile fiction'), +(5077, 'Science fiction, English'), +(5078, 'Hungary -- History -- 1699-1848 -- Fiction'), +(5079, 'Plotinus'), +(5080, 'Businessmen -- Fiction'), +(5081, 'Helen, of Troy, Queen of Sparta -- Poetry'), +(5082, 'Portuguese poetry -- 19th century'), +(5083, 'Baghdad (Iraq) -- History'), +(5084, 'Great Britain -- Court and courtiers'), +(5085, 'Children\'s literature, Cuban -- Periodicals'), +(5086, 'Students -- Juvenile fiction'), +(5087, 'Songs, English'), +(5088, 'English language -- Dialects -- England -- Yorkshire'), +(5089, 'Spanish literature'), +(5090, 'Legends -- Serbia'), +(5091, 'Sermons, American -- 19th century'), +(5092, 'Fashion -- 19th century -- Periodicals'), +(5093, 'Finger play'), +(5094, 'Antisemitism -- United States'), +(5095, 'Turkeys'), +(5096, 'Inger Ottesdater, -1555 -- Drama'), +(5097, 'Animals -- Africa, Central'), +(5098, 'Folklore -- Philippines'), +(5099, 'Assassins -- Drama'), +(5100, 'Wolfdogs -- Fiction'), +(5101, 'Love -- Fiction'), +(5102, 'Suriname -- History -- To 1814'), +(5103, 'Pure Land Buddhism -- Sacred books'), +(5104, 'Ireland -- Drama'), +(5105, 'Honesty -- Juvenile fiction'), +(5106, 'Caribbean Area -- Description and travel'), +(5107, 'Osteopathic medicine'), +(5108, 'Walking -- Fiction'), +(5109, 'Alps'), +(5110, 'Impostors and imposture -- Early works to 1800'), +(5111, 'Massachusetts -- History -- Colonial period, ca. 1600-1775 -- Juvenile literature'), +(5112, 'Cambridge (England) -- Languages -- Dictionaries'), +(5113, 'Bible -- Study and teaching'), +(5114, 'United States -- Fiction'), +(5115, 'Fancy work'), +(5116, 'Naturalists -- Great Britain -- Biography'), +(5117, 'Myxomycetes'), +(5118, 'Families -- England -- Fiction'), +(5119, 'Alps -- Fiction'), +(5120, 'Great Fire, London, England, 1666 -- Fiction'), +(5121, 'Scotland -- Biography'), +(5122, 'Manzoni, Alessandro, 1785-1873'), +(5123, 'Eliot, George, 1819-1880'), +(5124, 'Machinery -- Drawings'), +(5125, 'World War, 1914-1918 -- Participation, British'), +(5126, 'Thirty Years\' War, 1618-1648 -- Fiction'), +(5127, 'Genoa (Italy) -- History -- Drama'), +(5128, 'French fiction -- 18th century'), +(5129, 'France -- Foreign relations -- Great Britain'), +(5130, 'Canadian Rockies (B.C. and Alta.)'), +(5131, 'Jesuits -- North America'), +(5132, 'Egypt -- History -- To 332 B.C. -- Biography'), +(5133, 'Shakespeare, William, 1564-1616 -- Handbooks, manuals, etc.'), +(5134, 'World War, 1939-1945 -- Campaigns -- Marshall Islands'), +(5135, 'Military art and science -- Early works to 1800'), +(5136, 'Love'), +(5137, 'German drama -- 19th century'), +(5138, 'Goat farmers -- Juvenile fiction'), +(5139, 'Arthurian romances -- Adaptations'), +(5140, 'Theater -- Periodicals'), +(5141, 'Bothwell, James Hepburn, Earl of, 1536?-1578 -- Fiction'), +(5142, 'Hopi Indians -- Antiquities'), +(5143, 'Napoleon I, Emperor of the French, 1769-1821 -- Marriage'), +(5144, 'Bible. Jeremiah'), +(5145, 'Romanies'), +(5146, 'World War, 1914-1918 -- Secret service -- Germany'), +(5147, 'Utopias -- Fiction'), +(5148, 'Photolithography'), +(5149, 'Currency question -- United States'), +(5150, 'Foliage plants'), +(5151, 'University of Oxford -- Degrees'), +(5152, 'Children -- Sweden -- Juvenile literature'), +(5153, 'Short Stories, Zambian (English)'), +(5154, 'Reformation -- Germany -- Sources'), +(5155, 'Conspiracies -- Drama'), +(5156, 'Glass manufacture'), +(5157, 'Art -- Censorship'), +(5158, 'Fur traders -- Fiction'), +(5159, 'Vischer, Peter, approximately 1455-1529'), +(5160, 'Classical poetry -- History and criticism'), +(5161, 'Bible -- Evidences, authority, etc.'), +(5162, 'Pied Piper of Hamelin (Legendary character) -- Drama'), +(5163, 'Railroads -- Safety applications'), +(5164, 'Ontario -- Politics and government -- 19th century'), +(5165, 'Birds -- California'), +(5166, 'Girl Scouts'), +(5167, 'Infantry drill and tactics'), +(5168, 'Abolitionists -- United States -- Biography'), +(5169, 'California -- Gold discoveries -- Juvenile fiction'), +(5170, 'Waterloo, Battle of, Waterloo, Belgium, 1815 -- Juvenile fiction'), +(5171, 'Portuguese language -- Orthography and spelling -- Handbooks, manuals, etc.'), +(5172, 'Loss (Psychology) -- Fiction'), +(5173, 'India -- Social conditions'), +(5174, 'Kanpur (India) -- History -- Siege, 1857'), +(5175, 'Psychology, Applied'), +(5176, 'Single women -- Drama'), +(5177, 'Streets -- Pennsylvania -- Pittsburgh'), +(5178, 'Rotkäppchen'), +(5179, 'Scotland. Parliament -- History'), +(5180, 'Square root'), +(5181, 'Canada -- History'), +(5182, 'Detective and mystery stories, French'), +(5183, 'Yachting'), +(5184, 'Mental suggestion'), +(5185, 'Italian literature -- Italy -- Tuscany'), +(5186, 'Eskimos -- Biography'), +(5187, 'King\'s Mountain, Battle of, S.C., 1780'), +(5188, 'Congo (Democratic Republic) -- Description and travel'), +(5189, 'Glacial epoch -- Fiction'), +(5190, 'Church of England -- Periodicals'), +(5191, 'National characteristics -- Juvenile fiction'), +(5192, 'Cosmology'), +(5193, 'Burns, Robert, 1759-1796'), +(5194, 'Theater, Traveling -- Fiction'), +(5195, 'China -- History -- Qing dynasty, 1644-1912 -- Anecdotes'), +(5196, 'France -- History -- Charles IX, 1560-1574 -- Sources'), +(5197, 'Kerkyra (Greece)'), +(5198, 'Short stories, Swedish'), +(5199, 'France. Marine -- Drama'), +(5200, 'Norway -- History'), +(5201, 'Urbino (Italy)'), +(5202, 'Essex, Robert Devereux, Earl of, 1566-1601 -- Fiction'), +(5203, 'Sacrifice -- Fiction'), +(5204, 'J. & A. Churchill -- Catalogs'), +(5205, 'Argentina -- Social life and customs'), +(5206, 'Kennedy, John F. (John Fitzgerald), 1917-1963 -- Assassination'), +(5207, 'Mohawk Indians'), +(5208, 'France -- History -- Revolution, 1789-1799 -- Personal narratives'), +(5209, 'France. Armée -- Military life'), +(5210, 'Blood -- Circulation -- History'), +(5211, 'Ventriloquists -- Fiction'), +(5212, 'Fatigue'), +(5213, 'Bookplates, American'), +(5214, 'Clairvoyance'), +(5215, 'Jacobite Rebellion, 1745-1746 -- Sources'), +(5216, 'Natural history -- Sri Lanka'), +(5217, 'Slavery -- United States -- Speeches in Congress'), +(5218, 'Women -- Great Britain -- Social conditions'), +(5219, 'German language -- Dictionaries -- English'), +(5220, 'Art objects -- Exhibitions'), +(5221, 'Everglades (Fla.) -- Juvenile fiction'), +(5222, 'Ukraine -- Fiction'), +(5223, 'Thackeray, William Makepeace, 1811-1863 -- Characters'), +(5224, 'Birds -- Drama'), +(5225, 'Pueblo Indians -- Antiquities'), +(5226, 'Great Britain -- Social life and customs'), +(5227, 'Family life -- Italy -- Juvenile fiction'), +(5228, 'Stones River, Battle of, Murfreesboro, Tenn., 1862-1863'), +(5229, 'Poets, American -- 19th century -- Biography'), +(5230, 'Prayer'), +(5231, 'Roman law -- Sources'), +(5232, 'Folklore -- Norway'), +(5233, 'Nobility -- Fiction'), +(5234, 'Parasites -- Fiction'), +(5235, 'Nettelbeck, Joachim Christian, 1738-1824'), +(5236, 'Latin poetry -- Adaptations'), +(5237, 'Submarines (Ships) -- Juvenile fiction'), +(5238, 'English language -- Errors of usage'), +(5239, 'Missions -- Japan'), +(5240, 'Legends -- Germany -- Drama'), +(5241, 'Fighter pilots -- Germany -- Biography'), +(5242, 'Roosters -- Drama'), +(5243, 'Zoology -- Popular works'), +(5244, 'Fort Duquesne (Pa.) -- History'), +(5245, 'Narcissism'), +(5246, 'Whalers (Persons) -- Juvenile fiction'), +(5247, 'Thompson, Charles, 1833-'), +(5248, 'Holy Spirit'), +(5249, 'Patents -- United States'), +(5250, 'Erzgebirge (Czech Republic and Germany) -- Guidebooks'), +(5251, 'Thieves -- Juvenile fiction'), +(5252, 'English language -- Terms and phrases'), +(5253, 'Military miniatures -- Juvenile fiction'), +(5254, 'Disinheritance -- Fiction'), +(5255, 'England -- Social life and customs -- 19th century -- Drama'), +(5256, 'Great Britain. Army -- Medals, badges, decorations, etc.'), +(5257, 'Architecture, Norman'), +(5258, 'Smoking'), +(5259, 'Rats -- Juvenile fiction'), +(5260, 'Seaside resorts -- Juvenile fiction'), +(5261, 'Pescara, Ferdinando Francesco d\'Avalos, marchese di, 1489-1525 -- Fiction'), +(5262, 'Leite Pereira, Domingos, -1647 -- Fiction'), +(5263, 'Homeopathy -- Popular works'), +(5264, 'Revenge -- Drama'), +(5265, 'Sparrows'), +(5266, 'English drama (Comedy)'), +(5267, 'Erasmus, Desiderius, -1536'), +(5268, 'Wales -- Social life and customs -- Fiction'), +(5269, 'Lincoln, Abraham, 1809-1865 -- Psychology'), +(5270, 'English essays -- 19th century'), +(5271, 'Yukon River Valley (Yukon and Alaska) -- Gold discoveries'), +(5272, 'Etiquette for women'), +(5273, 'Superstition -- France'), +(5274, 'Spiritual direction'), +(5275, 'Soccer'), +(5276, 'Voice culture'), +(5277, 'Medicine -- Formulae, receipts, prescriptions'), +(5278, 'Loneliness -- Juvenile fiction'), +(5279, 'Christian literature, Latin (Medieval and modern) -- Translations into English'), +(5280, 'Saguaro National Park (Ariz.) -- Guidebooks'), +(5281, 'Cruelty -- Juvenile literature'), +(5282, 'Scots -- Foreign countries -- Fiction'), +(5283, 'Germany -- History -- Thirty Years\' War, 1618-1648 -- Fiction'), +(5284, 'Pangermanism'), +(5285, 'Catholic Church -- Relations -- Lutheran Church -- Early works to 1800'), +(5286, 'Trials -- Fiction'), +(5287, 'Scotland -- Church history'), +(5288, 'Bunyan, John, 1628-1688 -- Criticism and interpretation'), +(5289, 'World War, 1914-1918 -- Personal narratives, French'), +(5290, 'Nuremberg (Germany) -- Fiction'), +(5291, 'Museum of History and Technology (U.S.). Division of Medical Sciences'), +(5292, 'Educational change -- Germany'), +(5293, 'Turnour, Jules, -1931'), +(5294, 'Bible. Joel'), +(5295, 'Art -- Italy -- Tuscany'), +(5296, 'Frontier and pioneer life -- Ohio River Valley -- Juvenile fiction'), +(5297, 'Thoreau, Henry David, 1817-1862'), +(5298, 'Ireland -- Social conditions'), +(5299, 'Hungarian fiction -- 20th century'), +(5300, 'Peter, the Apostle, Saint'), +(5301, 'Navajo children -- Education -- Juvenile fiction'), +(5302, 'Whitman, Marcus, 1802-1847'), +(5303, 'Morgan, Godfrey Charles, 1830-1913 -- Quotations'), +(5304, 'Caesar, Julius -- Drama'), +(5305, 'Fishing -- Anecdotes'), +(5306, 'Indonesia -- Description and travel'), +(5307, 'Chouans -- Fiction'), +(5308, 'Privacy, Right of'), +(5309, 'Coal mines and mining -- Juvenile fiction'), +(5310, 'Drama -- Periodicals'), +(5311, 'Jewelry'), +(5312, 'Great Britain -- History -- Tudors, 1485-1603 -- Biography'), +(5313, 'Fantasy games -- Juvenile fiction'), +(5314, 'Palaces -- Spain -- Zaragoza'), +(5315, 'Darwin, Charles, 1809-1882'), +(5316, 'Worry'), +(5317, 'Latin poetry -- Translations into Finnish'), +(5318, 'Income tax -- United States'), +(5319, 'Detective and mystery stories, American'), +(5320, 'Americans -- England -- History -- 19th century'), +(5321, 'Legends -- British Columbia -- Vancouver'), +(5322, 'Flodden, Battle of, England, 1513 -- Juvenile fiction'), +(5323, 'Folklore -- Finland'), +(5324, 'Carter, Harry, 1749-1829'), +(5325, 'Political science -- Early works to 1800'), +(5326, 'Battles'), +(5327, 'Art -- Minnesota -- Minneapolis'), +(5328, 'Netherlands -- Ethnic relations'), +(5329, 'Empresses -- China -- Anecdotes'), +(5330, 'Miners in art'), +(5331, 'Danish drama'), +(5332, 'Puzzles'), +(5333, 'World War, 1914-1918 -- Blockades'), +(5334, 'Defoe, Daniel, 1661?-1731. Robinson Crusoe -- Illustrations'), +(5335, 'Poe, Edgar Allan, 1809-1849 -- Appreciation'), +(5336, 'Portuguese literature -- History and criticism'), +(5337, 'Population'), +(5338, 'History -- Miscellanea'), +(5339, 'Composers -- Biography'), +(5340, 'Food poisoning'), +(5341, 'Judgment (Aesthetics)'), +(5342, 'Americanization'), +(5343, 'New York (State) -- Description and travel'), +(5344, 'Mindanao Island (Philippines) -- History'), +(5345, 'Courage -- Early works to 1800'), +(5346, 'Hunting -- Juvenile fiction'), +(5347, 'Vlieland (Netherlands)'), +(5348, 'Canada, Northern -- Juvenile fiction'), +(5349, 'Great Britain -- History -- Edward, the Confessor, 1042-1066 -- Fiction'), +(5350, 'Politicians -- United States -- Biography'), +(5351, 'Fugitive slaves -- Fiction'), +(5352, 'Fishing -- British Columbia'), +(5353, 'Aeronautics -- History'), +(5354, 'Arne, Thomas Augustine, 1710-1778'), +(5355, 'Forensic scientists -- Fiction'), +(5356, 'World War, 1914-1918 -- Personal narratives, German'), +(5357, 'Epistolary fiction, English'), +(5358, 'Mexican literature -- Translations into English'), +(5359, 'Confederate States of America. Army -- Fiction'), +(5360, 'Presbyterian Church -- Clergy -- Biography'), +(5361, 'Detective and mystery stories, Portuguese'), +(5362, 'Driving of horse-drawn vehicles'), +(5363, 'Rob Roy, 1671-1734 -- Fiction'), +(5364, 'Bible. John'), +(5365, 'Missing persons -- Fiction'), +(5366, 'Blasco Ibáñez, Vicente, 1867-1928'), +(5367, 'Factories -- Fiction'), +(5368, 'Perceval (Legendary character) -- Romances -- Adaptations'), +(5369, 'Natural history -- Massachusetts'), +(5370, 'Dutch language -- Orthography and spelling'), +(5371, 'Mammals -- Michigan -- Washtenaw County'), +(5372, 'Cousins -- Juvenile fiction'), +(5373, 'France -- History -- 15th century -- Fiction'), +(5374, 'Sex (Biology)'), +(5375, 'Swedish drama -- Translations into Finnish'), +(5376, 'George V, King of Great Britain, 1865-1936'), +(5377, 'Acrobats'), +(5378, 'Mammoth Cave (Ky.)'), +(5379, 'Locke, John, 1632-1704'), +(5380, 'Psychology -- Early works to 1850'), +(5381, 'Poison ivy'), +(5382, 'Esperanto poetry'), +(5383, 'British Columbia -- Description and travel'), +(5384, 'Scotland -- History -- Mary Stuart, 1542-1567 -- Fiction'), +(5385, 'Alcoholics -- United States -- Biography'), +(5386, 'Slaves -- Virginia -- Biography'), +(5387, 'Impostors and imposture -- Biography'), +(5388, 'Dutch literature'), +(5389, 'Orators'), +(5390, 'Moose'), +(5391, 'United States -- Civilization'), +(5392, 'Slavery -- Suriname'), +(5393, 'Kinglake, Alexander William, 1809-1891 -- Travel -- Middle East'), +(5394, 'Clive, Robert Clive, Baron, 1725-1774'), +(5395, 'Sailing -- Juvenile fiction'), +(5396, 'Soviet Union -- Politics and government -- 1917-1936'), +(5397, 'Lotteries -- Fiction'), +(5398, 'Luther, Martin, 1483-1546. Kleine Katechismus'), +(5399, 'Wit and humor -- History and criticism'), +(5400, 'Kingdom of the Two Sicilies -- History -- 1848-1861 -- Juvenile fiction'), +(5401, 'United States. Army. Illinois Infantry Regiment, 113th (1862-1865)'), +(5402, 'Sweden -- Social life and customs'), +(5403, 'Sex customs -- Rome'), +(5404, 'Insects -- Fiction'), +(5405, 'Decoration and ornament -- Plant forms'), +(5406, 'Michal Korybut Wisniowiecki, King of Poland, 1640-1673 -- Fiction'), +(5407, 'Separated people -- Fiction'), +(5408, 'Organ (Musical instrument) -- Construction'), +(5409, 'Historic buildings -- England'), +(5410, 'Massacres -- Juvenile fiction'), +(5411, 'Composers -- Italy -- Biography'), +(5412, 'Indians -- Antiquities'), +(5413, 'Rosicrucians'), +(5414, 'Trials -- Juvenile fiction'), +(5415, 'Dakota Indians -- Politics and government'), +(5416, 'English essays -- 18th century'), +(5417, 'Dutch fiction -- Translations into English'), +(5418, 'Attention'), +(5419, 'Industries -- Great Britain'), +(5420, 'Teddy bears -- Juvenile poetry'), +(5421, 'Convents -- Controversial literature'), +(5422, 'Armies -- Organization'), +(5423, 'Short stories, Belgian (French) -- Translations into German'), +(5424, 'Railroad stations -- Design and construction'), +(5425, 'Marryat, Frederick, 1792-1848 -- Travel -- America'), +(5426, 'Geometry, Analytic'), +(5427, 'Bentham, Jeremy, 1748-1832'), +(5428, 'Gift books'), +(5429, 'Shoghi, Effendi, 1897-1957 -- Correspondence'), +(5430, 'Strachey, John St. Loe, 1860-1927'), +(5431, 'Salish Indians -- Fiction'), +(5432, 'Bohemianism -- Fiction'), +(5433, 'Persian poetry -- Translations into English'), +(5434, 'Morris dances'), +(5435, 'Women -- History -- Middle Ages, 500-1500'), +(5436, 'Devil -- Fiction'), +(5437, 'Persian literature -- Translations into English'), +(5438, 'Latin language -- Synonyms and antonyms'), +(5439, 'American drama (Comedy) -- 20th century'), +(5440, 'Temple, William, Sir, 1628-1699 -- Early works to 1800'), +(5441, 'Motorcycles -- Juvenile fiction'), +(5442, 'San Francisco Earthquake and Fire, Calif., 1906 -- Pictorial works'), +(5443, 'Sexual ethics'), +(5444, 'Secord, Laura Ingersoll, 1775-1868 -- Drama'), +(5445, 'Pisa (Italy) -- Description and travel'), +(5446, 'Slaves -- South Carolina -- Social conditions'), +(5447, 'Bible. Micah'), +(5448, 'Libraries -- Anecdotes'), +(5449, 'Philosophy and religion'), +(5450, 'Peru -- History -- War of Independence, 1820-1829'), +(5451, 'Emigration and immigration law -- Argentina'), +(5452, 'Peasants -- Juvenile fiction'), +(5453, 'Sweden -- History -- 1523-1718 -- Fiction'), +(5454, 'Prostitutes -- Fiction'), +(5455, 'Forbes Road (Pa.)'), +(5456, 'Spencer, Herbert, 1820-1903'), +(5457, 'Hudson Bay -- Fiction'), +(5458, 'Apache Indians -- Fiction'), +(5459, 'Poland -- History -- John II Casimir, 1648-1668 -- Fiction'), +(5460, 'Jackson, Andrew, 1767-1845 -- Homes and haunts -- Tennessee -- Hermitage'), +(5461, 'Humanism'), +(5462, 'Mendelssohn-Bartholdy, Felix, 1809-1847'), +(5463, 'Eton College -- Fiction'), +(5464, 'Bible. Thessalonians, 1st'), +(5465, 'Trent, Philip (Fictitious character) -- Fiction'), +(5466, 'Lexicographers -- Great Britain -- Biography'), +(5467, 'Weather forecasting'), +(5468, 'Steinlen, Théophile Alexandre, 1859-1923'), +(5469, 'Venice (Italy) -- Drama'), +(5470, 'Albemarle Region (N.C.) -- History'), +(5471, 'Jessopp, Augustus, 1823-1914'), +(5472, 'Sexual health'), +(5473, 'Darwin, Charles, 1809-1882. On the origin of species'), +(5474, 'Labor laws and legislation -- Germany'), +(5475, 'Theater'), +(5476, 'Publishers and publishing'), +(5477, 'Frontier and pioneer life -- Prairie Provinces -- Fiction'), +(5478, 'Ballads, Scots -- Scotland -- Texts'), +(5479, 'Child witnesses -- Fiction'), +(5480, 'Fishing -- Finland'), +(5481, 'Hudson River Region (N.Y. and N.J.) -- History'), +(5482, 'Pilots and pilotage -- Mississippi River'), +(5483, 'Fantasy fiction, German -- Translations into English'), +(5484, 'Postal service -- New York (State) -- Buffalo'), +(5485, 'Bahai education of children'), +(5486, 'Beethoven, Ludwig van, 1770-1827 -- Fiction'), +(5487, 'Confectionery -- Early works to 1800'), +(5488, 'Spanish fiction -- Translations into French'), +(5489, 'Arabian Peninsula -- Description and travel'), +(5490, 'Spiders -- Juvenile literature'), +(5491, 'Warlocks -- Czech Republic -- Prague -- Fiction'), +(5492, 'Shelby County (Ill.) -- Social life and customs'), +(5493, 'Angus (Scotland) -- Poetry'), +(5494, 'Chemistry -- Study and teaching -- Early works to 1800'), +(5495, 'Stream of consciousness fiction'), +(5496, 'Furniture -- England'), +(5497, 'Reclamation of land -- Netherlands'), +(5498, 'English periodicals'), +(5499, 'Great Britain -- History -- Victoria, 1837-1901 -- Humor'), +(5500, 'Farm life -- Fiction'), +(5501, 'Electric industries -- Germany -- History'), +(5502, 'Cantatas -- History and criticism'), +(5503, 'College sports -- Juvenile fiction'), +(5504, 'Plants -- Folklore'), +(5505, 'America'), +(5506, 'Architecture -- United States'), +(5507, 'Soldiers -- New York (State) -- Biography'), +(5508, 'French drama -- 18th century'), +(5509, 'Humorous poetry'), +(5510, 'Prime Meridian -- Congresses'), +(5511, 'France -- History -- Wars of the Vendée, 1793-1832 -- Fiction'), +(5512, 'Courage -- Juvenile fiction'), +(5513, 'Wales, South -- Social life and customs -- 19th century -- Fiction'), +(5514, 'Sulfonic acids'), +(5515, 'Spanish language -- Composition and exercises'), +(5516, 'Industrial management'), +(5517, 'Jews -- United States'), +(5518, 'Pollen'), +(5519, 'Hortense, Queen, consort of Louis Bonaparte, King of Holland, 1783-1837 -- Fiction'), +(5520, 'American poetry -- New York (State)'), +(5521, 'Frontier and pioneer life -- Ontario -- Fiction'), +(5522, 'Massachusetts -- Periodicals'), +(5523, 'Russia -- Intellectual life -- 1801-1917 -- Fiction'), +(5524, 'Indians of North America -- History'), +(5525, 'Poisoners -- Great Britain -- Biography'), +(5526, 'Flowers -- Juvenile fiction'), +(5527, 'Reinforced concrete'), +(5528, 'Iroquois Indians -- Juvenile fiction'), +(5529, 'Bees -- Juvenile fiction'), +(5530, 'Country life -- England -- Fiction'), +(5531, 'Albigenses'), +(5532, 'Imaginary letters'), +(5533, 'Rocks -- United States'), +(5534, 'Fireplaces'), +(5535, 'Zoogeography'), +(5536, 'Epigrams'), +(5537, 'Manin, Daniele, 1804-1857'), +(5538, 'Good Samaritan (Parable) -- Poetry'), +(5539, 'Waltzes'), +(5540, 'Ferns -- United States'), +(5541, 'Mutiny -- Juvenile fiction'), +(5542, 'Antrim (Northern Ireland : County) -- Poetry'), +(5543, 'Political satire'), +(5544, 'Lepidoptera -- Great Britain'), +(5545, 'Sewage disposal plants -- Design and construction'), +(5546, 'Virginia -- Description and travel -- Early works to 1800'), +(5547, 'Tramps'), +(5548, 'Paine, Thomas, 1737-1809'), +(5549, 'Wallis and Futuna Islands -- Social life and customs'), +(5550, 'London Bridge (London, England) -- History'), +(5551, 'Narcotics'), +(5552, 'Banks and banking -- United States'), +(5553, 'W.B. Saunders Company -- Catalogs'), +(5554, 'McChesney, Emma (Fictitious character) -- Fiction'), +(5555, 'Franklin, Benjamin, 1706-1790 -- Fiction'), +(5556, 'Child rearing'), +(5557, 'Social workers -- Fiction'), +(5558, 'African American freemasonry'), +(5559, 'Body snatching'), +(5560, 'Byron, George Gordon Byron, Baron, 1788-1824. Parisina -- Adaptations'), +(5561, 'Swansea (Wales) -- Directories'), +(5562, 'Moles (Animals) -- Juvenile fiction'), +(5563, 'Slavery -- North Carolina'), +(5564, 'Teachers -- Training of'), +(5565, 'Ethnology -- Australia'), +(5566, 'Spanish-American War, 1898 -- Campaigns'), +(5567, 'Irish -- Canada -- Juvenile fiction'), +(5568, 'Society verse'), +(5569, 'Judges -- Great Britain -- Biography'), +(5570, 'Pampas (Argentina) -- Juvenile fiction'), +(5571, 'Lourdes (France)'), +(5572, 'Religious thought -- Greece'), +(5573, 'Ramsay, Anders, 1832-1910'), +(5574, 'American literature -- 19th century'), +(5575, 'Governors\' spouses -- New Zealand -- Correspondence'), +(5576, 'Comedy'), +(5577, 'Aragona, Tullia d\', approximately 1510-1556 -- Criticism and interpretation'), +(5578, 'Majorca (Spain) -- Description and travel'), +(5579, 'Panama Canal (Panama) -- History -- Juvenile fiction'), +(5580, 'Nuts'), +(5581, 'Fairy tales -- Finland'), +(5582, 'Mammals -- North America'), +(5583, 'Teenage boys -- Fiction'), +(5584, 'Shipwrecks'), +(5585, 'Industries -- Germany (West)'), +(5586, 'Women -- Employment -- United States'), +(5587, 'Nero, Emperor of Rome, 37-68 -- Drama'), +(5588, 'Dolls -- Juvenile fiction'), +(5589, 'Scotland -- Foreign relations -- England'), +(5590, 'Astronomy -- Miscellanea'), +(5591, 'United States -- Fugitive slave law (1850)'), +(5592, 'Anne, of Brittany, Queen, consort of Louis XII, King of France, 1476-1514'), +(5593, 'Bible. Obadiah'), +(5594, 'Jesus Christ -- Historicity'), +(5595, 'Java (Indonesia) -- History -- 19th century -- Fiction'), +(5596, 'Southern States -- History -- 1865-1951'), +(5597, 'Bonds -- Juvenile fiction'), +(5598, 'Baja California (Mexico : Peninsula) -- Antiquities'), +(5599, 'Legends -- England'), +(5600, 'Lawrenceville School -- Fiction'), +(5601, 'Zodiac in art'), +(5602, 'David, King of Israel -- Fiction'), +(5603, 'Electra (Greek mythological figure) -- Drama'), +(5604, 'Satire, French'), +(5605, 'Arctic regions'), +(5606, 'Bolton, Judy (Fictitious character) -- Juvenile fiction'), +(5607, 'Second Coalition, War of the, 1798-1801 -- Campaigns -- Egypt -- Juvenile fiction'), +(5608, 'Nubia -- Description and travel'), +(5609, 'Zoology -- Argentina -- Pampas'), +(5610, 'Worshipful Company of Ironmongers (London, England) -- History'), +(5611, 'Great Britain -- Social conditions'), +(5612, 'Leadwork'), +(5613, 'National Air and Space Museum'), +(5614, 'Rome -- History -- Civil War, 49-45 B.C. -- Fiction'), +(5615, 'Spanish fiction -- Classical period, 1500-1700'), +(5616, 'Carpets'), +(5617, 'Brooklyn (New York, N.Y.) -- Fiction'), +(5618, 'Household employees -- Conduct of life'), +(5619, 'Nobility -- England -- Fiction'), +(5620, 'Bohemianism'), +(5621, 'Postal service -- Great Britain -- Juvenile fiction'), +(5622, 'Christmas -- England'), +(5623, 'Craniology -- Egypt'), +(5624, 'United States -- History -- Civil War, 1861-1865 -- Foreign public opinion'), +(5625, 'Schiermonnikoog (Netherlands)'), +(5626, 'Catholic Church -- Apologetic works'), +(5627, 'Hunting -- Canada'), +(5628, 'United States. Army. Machine Gun Battalion, 102nd. Company D'), +(5629, 'Harold, King of England, 1022?-1066 -- Fiction'), +(5630, 'Animals -- Folklore -- Literary collections'), +(5631, 'Folk art -- Hungary'), +(5632, 'Palm Beach (Fla.) -- Juvenile fiction'), +(5633, 'Nature -- Effect of human beings on'), +(5634, 'Castaways -- Juvenile fiction'), +(5635, 'Great Britain. Army -- Military life'), +(5636, 'Old Norse poetry'), +(5637, 'Arthurian romances'), +(5638, 'Mormons -- Missionary experiences'), +(5639, 'Italy -- Social life and customs -- 18th century -- Fiction'), +(5640, 'Philadelphia (Pa.) -- History -- Revolution, 1775-1783 -- Juvenile fiction'), +(5641, 'Women -- Drama'), +(5642, 'Fairy tales -- Europe'), +(5643, 'Authors, French -- 19th century -- Biography'), +(5644, 'Bible. Revelation'), +(5645, 'London (England) -- Social life and customs -- 18th century'), +(5646, 'Astrologers -- Great Britain -- Biography'), +(5647, 'Lumbering'), +(5648, 'Tulip Mania, 1634-1637 -- Fiction'), +(5649, 'Northwest, Pacific -- History -- Periodicals'), +(5650, 'Zoology -- Laboratory manuals'), +(5651, 'Egypt -- Religion'), +(5652, 'Jesus Christ -- Resurrection -- Juvenile literature'), +(5653, 'Folklore -- Estonia'), +(5654, 'Lawrence, John Laird Mair, 1811-1879'), +(5655, 'Roanoke Colony -- Fiction'), +(5656, 'Remarriage -- Poetry'), +(5657, 'Queensland -- History'), +(5658, 'Willis, Nathaniel Parker, 1806-1867'), +(5659, 'Swift, Jonathan, 1667-1745 -- Correspondence'), +(5660, 'Borneo -- Juvenile fiction'), +(5661, 'Brucellosis in cattle'), +(5662, 'Beavers -- Juvenile fiction'), +(5663, 'Greece -- History -- To 146 B.C.'), +(5664, 'Witchcraft -- New England -- Early works to 1800'), +(5665, 'Spool knitting -- Juvenile literature'), +(5666, 'Bahai Faith -- North America'), +(5667, 'Historical materialism'), +(5668, 'Graining'), +(5669, 'Integrals, Hyperelliptic'), +(5670, 'Aksakov, S. T. (Sergei Timofeevich), 1791-1859 -- Family'), +(5671, 'Tennyson, Alfred Tennyson, Baron, 1809-1892 -- Adaptations'), +(5672, 'Sparks, Jared, 1789-1866'), +(5673, 'Success -- Fiction'), +(5674, 'Louisiana -- History -- Civil War, 1861-1865'), +(5675, 'Family farms -- Juvenile fiction'), +(5676, 'Sulfur'), +(5677, 'Andes Region -- Fiction'), +(5678, 'Hylidae'), +(5679, 'Oswald, Lee Harvey'), +(5680, 'Coral reefs and islands'), +(5681, 'Scotland -- Social life and customs -- 19th century -- Fiction'), +(5682, 'Chocolate -- Early works to 1800'), +(5683, 'Mice -- Fiction'), +(5684, 'Crosses'), +(5685, 'Magic'), +(5686, 'Americans -- Italy -- Juvenile fiction'), +(5687, 'Bible. Timothy, 2nd'), +(5688, 'Humorous stories, Canadian'), +(5689, 'Nature study'), +(5690, 'London (England) -- Directories'), +(5691, 'Biography -- 19th century'), +(5692, 'Bacon\'s Rebellion, 1676 -- Fiction'), +(5693, 'Insects as carriers of disease'), +(5694, 'Flowers -- Juvenile poetry'), +(5695, 'Epic poetry, Sanskrit -- Translations into English'), +(5696, 'Catharine Howard, Queen, consort of Henry VIII, King of England, -1542 -- Fiction'), +(5697, 'Manuscripts, Medieval -- Collectors and collecting'), +(5698, 'Chinese fiction -- Ming dynasty, 1368-1644'), +(5699, 'Maxims'), +(5700, 'African American pioneers -- Fiction'), +(5701, 'Westmorland (England) -- Languages -- Dictionaries'), +(5702, 'Anger'), +(5703, 'Great Britain -- Social life and customs -- Juvenile fiction'), +(5704, 'Cooking -- Periodicals'), +(5705, 'Fireworks'), +(5706, 'Maryland -- Juvenile fiction'), +(5707, 'Lapland -- Description and travel'), +(5708, 'Portuguese language -- Readers'), +(5709, 'Love poetry, English'), +(5710, 'Rome -- Drama'), +(5711, 'German East Africa -- Description and travel'), +(5712, 'Short stories, Czech'), +(5713, 'Hero (Greek mythology) -- Poetry'), +(5714, 'Italy -- History -- 1492-1559 -- Fiction'), +(5715, 'Lille (France) -- Guidebooks'), +(5716, 'China -- Juvenile fiction'), +(5717, 'Knowledge, Theory of -- Early works to 1800'), +(5718, 'Popes -- Infallibility'), +(5719, 'Worcester, Edward Somerset, Marquis of, 1601-1667'), +(5720, 'Civilization'), +(5721, 'Magicians -- Great Britain -- Biography'), +(5722, 'Birth control'), +(5723, 'Nietzsche, Friedrich Wilhelm, 1844-1900'), +(5724, 'German essays -- 20th century'), +(5725, 'Tieck, Ludwig, 1773-1853'), +(5726, 'Deluge -- Juvenile literature'), +(5727, 'Kalevala'), +(5728, 'Jeremiah (Biblical prophet) -- Drama'), +(5729, 'New England -- Description and travel'), +(5730, 'Gold mines and mining -- Australia -- Ballarat (Vic.) -- Fiction'), +(5731, 'Marylebone (London, England)'), +(5732, 'London (England) -- Antiquities'), +(5733, 'Lincoln, Abraham, 1809-1865 -- Juvenile literature'), +(5734, 'Napoleonic Wars, 1800-1815 -- Campaigns -- Russia -- Fiction'), +(5735, 'Prince Edward Island -- History'), +(5736, 'China -- History -- Three kingdoms, 220-265 -- Fiction'), +(5737, 'Tragicomedy'), +(5738, 'Alfred, King of England, 849-899 -- Poetry'), +(5739, 'Monasteries -- Wales'), +(5740, 'Leicester (England) -- Description and travel'), +(5741, 'Motors'), +(5742, 'Harper, Henry Albert, 1873-1901'), +(5743, 'Rhetoric, Ancient'), +(5744, 'Covenanters -- Fiction'), +(5745, 'Rome -- Religion'), +(5746, 'School management and organization'), +(5747, 'American poetry -- Translations into German'), +(5748, 'Citizenship -- Problems, exercises, etc.'), +(5749, 'World War, 1914-1918 -- Humor, caricatures, etc.'), +(5750, 'Fortune-telling'), +(5751, 'Ballad opera -- Fiction'), +(5752, 'Ayesha (Fictitious character : Haggard) -- Fiction'), +(5753, 'Royal North West Mounted Police (Canada) -- Fiction'), +(5754, 'Frisian language -- Grammar'), +(5755, 'Clothing and dress -- Greece'), +(5756, 'United States -- History -- Outlines, syllabi, etc.'), +(5757, 'Geikie, James, 1839-1915'), +(5758, 'Jackson, Andrew, 1767-1845'), +(5759, 'Italians -- Bulgaria -- Drama'), +(5760, 'Freskin family'), +(5761, 'Space flight'), +(5762, 'Legislators -- United States -- Fiction'), +(5763, 'Spiritual life -- Christianity'), +(5764, 'Maria Theresa, Empress of Austria, 1717-1780'), +(5765, 'Hale, Nathan, 1755-1776'), +(5766, 'Women soldiers -- France -- Juvenile fiction'), +(5767, 'Christian women -- Conduct of life'), +(5768, 'United States. Declaration of Independence'), +(5769, 'Europe -- Kings and rulers'), +(5770, 'Weapons -- Scotland -- History'), +(5771, 'Wave theory of light'), +(5772, 'Maryland -- History -- Fiction'), +(5773, 'Peninsular War, 1807-1814 -- Juvenile fiction'), +(5774, 'Privateering'), +(5775, 'Best books'), +(5776, 'Wolfe, James, 1727-1759'), +(5777, 'Salem (Mass.) -- Fiction'), +(5778, 'Hopper, Isaac T. (Isaac Tatem), 1771-1852'), +(5779, 'Cornwall (England : County) -- Biography'), +(5780, 'Weddings -- Fiction'), +(5781, 'Bible. Epistles -- Commentaries'), +(5782, 'Wedding music'), +(5783, 'Animal traps -- Juvenile literature'), +(5784, 'Reconstruction (U.S. history, 1865-1877)'), +(5785, 'Physical education and training'), +(5786, 'Goldsmith, Oliver, 1730?-1774'), +(5787, 'Tasmania -- History'), +(5788, 'Household employees'), +(5789, 'Children\'s poetry, German'), +(5790, 'Etching -- Technique'), +(5791, 'Air pilots, Military -- Fiction'), +(5792, 'Winchester Cathedral'), +(5793, 'New Forest (England : Forest) -- Fiction'), +(5794, 'North America -- History -- Colonial period, ca. 1600-1775'), +(5795, 'Finland -- Social life and customs -- Juvenile literature'), +(5796, 'Whaling ships -- Fiction'), +(5797, 'Children\'s stories, Finnish'), +(5798, 'World War, 1914-1918 -- Campaigns -- Belgium -- Juvenile fiction'), +(5799, 'Authorship -- Style manuals'), +(5800, 'Booth, William, 1829-1912'), +(5801, 'Shakespeare, William, 1564-1616 -- Translations into Norwegian'), +(5802, 'Skis and skiing -- Juvenile fiction'), +(5803, 'Bible. Jeremiah -- Criticism, interpretation, etc.'), +(5804, 'Revolutions'), +(5805, 'Tyrol (Austria) -- Guidebooks'), +(5806, 'Bible. Samuel, 1st'), +(5807, 'Church of the Province of New Zealand -- History'), +(5808, 'Operas -- Stories, plots, etc.'), +(5809, 'Roads -- United States'), +(5810, 'Sewage -- Purification'), +(5811, 'Friesland (Netherlands) -- History'), +(5812, 'Great Britain. Army. Coldstream Guards'), +(5813, 'Pyramids'), +(5814, 'Jacobite Rebellion, 1745-1746'), +(5815, 'Kelly, Ned, 1855-1880'), +(5816, 'French drama (Tragedy) -- 17th century'), +(5817, 'Human beings -- Effect of environment on'), +(5818, 'Joinville, François-Ferdinand-Philippe-Louis-Marie d\'Orléans, prince de, 1818-1900'), +(5819, 'Sewing machines -- History'), +(5820, 'Keely, John Ernest Worrell, 1827-1898'), +(5821, 'African Americans -- Employment -- New York (State) -- New York'), +(5822, 'Iran -- History -- To 640'), +(5823, 'Indo-Europeans'), +(5824, 'Eustache, le Moine, -1217 -- Romances'), +(5825, 'Midlife crisis -- Fiction'), +(5826, 'Novelists, English -- 19th century -- Biography'), +(5827, 'Tales -- France -- Translations into English'), +(5828, 'Civilization, Subterranean -- Fiction'), +(5829, 'Egoism'), +(5830, 'Russia -- Religion'), +(5831, 'Smuggling -- Fiction'), +(5832, 'Marriage customs and rites -- United States'), +(5833, 'Parrots -- Pictorial works'), +(5834, 'English language -- Etymology -- Dictionaries'), +(5835, 'Minnesota State Prison (Stillwater, Minn.) -- History'), +(5836, 'Religion -- Fiction'), +(5837, 'South Pole -- Discovery and exploration -- Norwegian'), +(5838, 'China -- Foreign relations -- Great Britain'), +(5839, 'Vegetarianism'), +(5840, 'Clallam Indians -- Missions'), +(5841, 'Marriage -- Poetry'), +(5842, 'England -- Social life and customs -- 18th century -- Fiction'), +(5843, 'Bullying -- Juvenile fiction'), +(5844, 'Judges -- Fiction'), +(5845, 'Circus'), +(5846, 'Philosophy, Medieval'), +(5847, 'Argentina -- Fiction'), +(5848, 'Covenanters'), +(5849, 'Rome (Italy) -- Social life and customs -- Fiction'), +(5850, 'Battlefields -- France -- Guidebooks'), +(5851, 'Geology, Stratigraphic -- Cretaceous'), +(5852, 'Vivisection'), +(5853, 'Renard Island (Alaska) in art'), +(5854, 'Transvaal (South Africa) -- Politics and government'), +(5855, 'Confectionery -- Juvenile fiction'), +(5856, 'Zheng, He, 1371-1435'), +(5857, 'Rome -- History -- Republic, 265-30 B.C. -- Fiction'), +(5858, 'Biogeography'), +(5859, 'Indians of North America -- Canada -- Folklore'), +(5860, 'Ballades'), +(5861, 'Discoveries in geography -- Scandinavian'), +(5862, 'Great Britain -- History -- Norman period, 1066-1154 -- Fiction'), +(5863, 'Russia -- Juvenile fiction'), +(5864, 'Ulster (Northern Ireland and Ireland) -- Description and travel'), +(5865, 'Nursing'), +(5866, 'Quakers -- Biography'), +(5867, 'Chinese literature'), +(5868, 'Papacy -- History'), +(5869, 'Stocks'), +(5870, 'Ex-convicts -- Fiction'), +(5871, 'Freemasonry -- Rituals'), +(5872, 'Round towers -- Ireland'), +(5873, 'Governors -- Juvenile literature'), +(5874, 'Baldwin, Archbishop of Canterbury, approximately 1120-1190'), +(5875, 'Satanism'), +(5876, 'Reptiles'), +(5877, 'Forests and forestry -- Great Britain'), +(5878, 'Poetry -- Early works to 1800'), +(5879, 'Monopolies -- United States'), +(5880, 'Plants -- Suriname -- Classification'), +(5881, 'Common fallacies'), +(5882, 'Riddles'), +(5883, 'Wells, H. G. (Herbert George), 1866-1946'), +(5884, 'Christian heretics'), +(5885, 'Astronomy, Greek'), +(5886, 'Post-apocalyptic fiction'), +(5887, 'Flower gardening'), +(5888, 'Russia -- History -- Alexander I, 1801-1825 -- Fiction'), +(5889, 'Hindu mythology'), +(5890, 'Gordon, Charles George, 1833-1885'), +(5891, 'Bible. Old Testament -- Biography'), +(5892, 'English drama (Tragedy) -- History and criticism'), +(5893, 'Evolution (Biology)'), +(5894, 'Prairie dogs -- Juvenile fiction'), +(5895, 'United States -- Politics and government -- 1815-1861'), +(5896, 'Dogs -- War use -- History -- 20th century'), +(5897, 'Odysseus, King of Ithaca (Mythological character) -- Fiction'), +(5898, 'Plants, Cultivated -- Periodicals'), +(5899, 'Bible. Daniel'), +(5900, 'Alice (Fictitious character from Carroll) -- Juvenile fiction'), +(5901, 'Massachusetts Bay Company -- Fiction'), +(5902, 'Authors, German -- 19th century'), +(5903, 'Caste -- India, South'), +(5904, 'Children -- Greece -- Juvenile literature'), +(5905, 'Chloroform'), +(5906, 'Burroughs, John, 1837-1921'), +(5907, 'Transvaal (South Africa) -- History -- To 1880'), +(5908, 'Alaska -- Description and travel'), +(5909, 'Rome -- History -- 53-44 B.C. -- Sources'), +(5910, 'Botany, Economic -- Oceania'), +(5911, 'Horsemanship -- Juvenile fiction'), +(5912, 'Children in art'), +(5913, 'Oldenbarnevelt, Johan van, 1547-1619'), +(5914, 'Fairy plays'), +(5915, 'Great Britain -- Social life and customs -- 20th century -- Drama'), +(5916, 'Memory -- Fiction'), +(5917, 'Space ships -- Juvenile fiction'), +(5918, 'Darwin, Charles, 1809-1882 -- Correspondence'), +(5919, 'Poets, English -- 18th century -- Biography'), +(5920, 'Northern bobwhite -- Juvenile fiction'), +(5921, 'West (U.S.) -- History'), +(5922, 'Pontiac\'s Conspiracy, 1763-1765'), +(5923, 'Lynching -- United States'), +(5924, 'Money -- History'), +(5925, 'Country homes -- Fiction'), +(5926, 'Ludendorff, Erich, 1865-1937'), +(5927, 'Painters'), +(5928, 'Blacks -- Africa -- Juvenile fiction'), +(5929, 'Woodwork (Manual training)'), +(5930, 'Boucher, François, 1703-1770'), +(5931, 'Italy -- Civilization'), +(5932, 'Jews -- History'), +(5933, 'Great Britain -- Politics and government -- 1727-1760 -- Poetry'), +(5934, 'Chesterton, G. K. (Gilbert Keith), 1874-1936'), +(5935, 'Philosophy, German -- 19th century'), +(5936, 'Arctic regions -- Discovery and exploration -- Scandinavian'), +(5937, 'Romeo (Fictitious character) -- Drama'), +(5938, 'Indic poetry (English)'), +(5939, 'Leopardi, Giacomo, 1798-1837'), +(5940, 'Chinese fiction -- Translations into English'), +(5941, 'Moravians -- Missions'), +(5942, 'Drugs -- Fiction'), +(5943, 'German language -- Dialects -- Brazil'), +(5944, 'Social classes -- England -- Juvenile fiction'), +(5945, 'Luini, Bernardino, 1475?-1533?'), +(5946, 'Penis'), +(5947, 'Indians of Mexico -- Religion'), +(5948, 'Catholic Church -- History -- Modern period, 1500-'), +(5949, 'Surgery, Aseptic and antiseptic'), +(5950, 'World War, 1914-1918 -- Campaigns -- Tanzania'), +(5951, 'Sphere'), +(5952, 'Middle East -- History -- To 622'), +(5953, 'Communism -- Soviet Union'), +(5954, 'Southeast Asia -- Description and travel -- Early works to 1800'), +(5955, 'Yankton Indians -- Government relations'), +(5956, 'Swift, Jonathan, 1667-1745. Proposal for correcting, improving, and ascertaining the English tongue'), +(5957, 'Women -- Social conditions -- 20th century -- Fiction'), +(5958, 'Piano -- Instruction and study'), +(5959, 'Milton, Mary Powell, -1652 -- Fiction'), +(5960, 'Mormons -- Illinois'), +(5961, 'Assyro-Babylonian literature'), +(5962, 'Ships -- Fiction'), +(5963, 'Fletcher, John, 1729-1785'), +(5964, 'Animal welfare'), +(5965, 'Incas'), +(5966, 'Raeburn, Henry, Sir, 1756-1823'), +(5967, 'Mental fatigue'), +(5968, 'Sermon on the mount'), +(5969, 'Women artists -- Biography'), +(5970, 'Singapore -- Description and travel'), +(5971, 'Flagellation -- Fiction'), +(5972, 'West Indies, British--History'), +(5973, 'Frontier and pioneer life -- Canada -- Fiction'), +(5974, 'Paleography'), +(5975, 'Sheffield (England) -- Genealogy'), +(5976, 'Medici, Piero di Lorenzo de\', 1472-1503'), +(5977, 'Blacks -- Jamaica -- Fiction'), +(5978, 'Socrates -- Trials, litigation, etc. -- Early works to 1800'), +(5979, 'Natural history -- North America'), +(5980, 'Cooking -- Early works to 1800'), +(5981, 'Executions and executioners'), +(5982, 'Wild flowers -- Southwestern States'), +(5983, 'Deism -- Early works to 1800'), +(5984, 'Poets, French -- 19th century -- Biography'), +(5985, 'Caesar, Julius'), +(5986, 'Burroughs, John, 1837-1921 -- Childhood and youth'), +(5987, 'Mothers and daughters -- Juvenile fiction'), +(5988, 'Mechanism (Philosophy)'), +(5989, 'Dickens, Charles, 1812-1870 -- Adaptations'), +(5990, 'Greece -- History -- Peloponnesian War, 431-404 B.C.'), +(5991, 'Pioneers -- Colorado -- Elbert County -- Biography'), +(5992, 'Europe -- History'), +(5993, 'United States. Army. Massachusetts Naval Brigade. Company H (1898)'), +(5994, 'Jamaica Plain (Boston, Mass.) -- History'), +(5995, 'Bible. Acts'), +(5996, 'Europe -- Social life and customs -- 19th century -- Fiction'), +(5997, 'Child psychology'), +(5998, 'Confederate States of America. Navy'), +(5999, 'Chelsea (London, England) -- Description and travel'), +(6000, 'Great Britain. Army. Royal Sappers and Miners'), +(6001, 'Wales -- History -- Fiction'), +(6002, 'Politics, Practical'), +(6003, 'Authors, Chinese -- Biography'), +(6004, 'Riots -- Pennsylvania -- Christiana'), +(6005, 'French language -- Study and teaching'), +(6006, 'Ireland -- Social life and customs -- Juvenile literature'), +(6007, 'Austro-Prussian War, 1866 -- Fiction'), +(6008, 'Coal miners -- Fiction'), +(6009, 'Sri Lanka -- Description and travel -- Early works to 1800'), +(6010, 'SCM Corporation. Kleinschmidt Division'), +(6011, 'China -- Fiction'), +(6012, 'Great Plains -- Fiction'), +(6013, 'Richards, Caroline Cowles, 1842-1913'), +(6014, 'Sun dance'), +(6015, 'India -- Social life and customs -- Fiction'), +(6016, 'Country life -- England -- Juvenile fiction'), +(6017, 'Locomotives -- Handbooks, manuals, etc.'), +(6018, 'Women pioneers -- Wyoming -- Correspondence'), +(6019, 'Southern States -- Intellectual life'), +(6020, 'Great Britain -- History, Naval -- 19th century'), +(6021, 'Comanche Indians -- Fiction'), +(6022, 'Chinese -- United States -- Social life and customs'), +(6023, 'Stockholm (Sweden) -- Fiction'), +(6024, 'Preparatory schools -- Juvenile fiction'), +(6025, 'Tarn (France) -- Description and travel'), +(6026, 'Civilization, Medieval'), +(6027, 'Minnesota -- Juvenile fiction'), +(6028, 'Bocage, Manuel Maria Barbosa du, 1765-1805 -- Drama'), +(6029, 'Imperialism'), +(6030, 'Plato'), +(6031, 'Homer'), +(6032, 'Offa, King of the Mercians, -796 -- In literature'), +(6033, 'Romanies -- Great Britain'), +(6034, 'Europeans -- Africa -- Fiction'), +(6035, 'Wellesley College'), +(6036, 'Tunisia -- Description and travel'), +(6037, 'Devotion -- Juvenile fiction'), +(6038, 'African American orators'), +(6039, 'Zimbabwe -- History -- Shona Revolt, 1896-1897 -- Fiction'), +(6040, 'Computers -- Humor'), +(6041, 'Zen priests -- Biography'), +(6042, 'Huguenots -- France'), +(6043, 'Princes -- Russia -- Fiction'), +(6044, 'Universities and colleges -- Spain'), +(6045, 'Short stories, Uruguayan'), +(6046, 'Nuristan (Afghanistan) -- Description and travel'), +(6047, 'Bible -- Appreciation'), +(6048, 'Schumann, Robert, 1810-1856'), +(6049, 'Authors, Black -- Cuba'), +(6050, 'Spain -- Social life and customs -- 19th century -- Fiction'), +(6051, 'Kangaroo rats'), +(6052, 'Versification'), +(6053, 'Authors, English'), +(6054, 'Language and languages'), +(6055, 'Danish fiction'), +(6056, 'Mansions -- North Carolina'), +(6057, 'Marriages of royalty and nobility -- Great Britain -- History -- 16th century'), +(6058, 'Labor movement -- United States'), +(6059, 'Birds -- Juvenile literature'), +(6060, 'Froude, James Anthony, 1818-1894. English in the West Indies'), +(6061, 'Composers -- Great Britain -- Correspondence'), +(6062, 'Virginia -- Civilization'), +(6063, 'Heaven -- Christianity'), +(6064, 'Zululand (South Africa) -- History'), +(6065, 'Protozoa -- Massachusetts -- Woods Hole'), +(6066, 'Dantas, Júlio, 1876-1962'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(6067, 'Short stories, French -- Translations into German'), +(6068, 'Italian drama -- Italy -- Sicily'), +(6069, 'Farmers -- Fiction'), +(6070, 'Gospel music'), +(6071, 'Working class -- Great Britain'), +(6072, 'City planning'), +(6073, 'Cosmetics industry -- Fiction'), +(6074, 'Wars of Liberation, 1813-1814 -- Fiction'), +(6075, 'Germany -- Civilization'), +(6076, 'United States -- Foreign relations -- Latin America'), +(6077, 'Sea stories, American'), +(6078, 'World War, 1939-1945 -- Campaigns -- Solomon Islands'), +(6079, 'Happiness'), +(6080, 'Americans -- Australia -- Fiction'), +(6081, 'Chippewa, Battle of, Ont., 1814 -- Drama'), +(6082, 'Society of Friends -- Discipline'), +(6083, 'Stone age -- Juvenile fiction'), +(6084, 'Great Britain -- Relations -- France'), +(6085, 'Austria -- Fiction'), +(6086, 'Children\'s stories, German'), +(6087, 'Painters -- United States'), +(6088, 'Log cabins -- Design and construction'), +(6089, 'Nature -- Juvenile fiction'), +(6090, 'Church and state -- England'), +(6091, 'Germanic peoples -- Early works to 1800'), +(6092, 'Greece -- Biography -- Early works to 1800'), +(6093, 'Kensington Palace (London, England) -- Guidebooks'), +(6094, 'West (U.S.) -- In art'), +(6095, 'Ranchers -- Fiction'), +(6096, 'Women -- Quotations, maxims, etc.'), +(6097, 'West Point (N.Y.) -- Fiction'), +(6098, 'Criminals -- Biography'), +(6099, 'Neill, Alexander Sutherland, 1883-1973'), +(6100, 'Malthusianism'), +(6101, 'Military education -- Fiction'), +(6102, 'Conflict (Psychology) -- Juvenile fiction'), +(6103, 'Trails -- West (U.S.)'), +(6104, 'Missions -- Vanuatu'), +(6105, 'Yachts'), +(6106, 'Asia -- Guidebooks'), +(6107, 'Italy -- History'), +(6108, 'James, Henry, 1843-1916 -- Travel -- France'), +(6109, 'Hunt, Henry, 1773-1835'), +(6110, 'Wagner, Richard, 1813-1883 -- Stories, plots, etc.'), +(6111, 'Pilawin (Volhynia, Ukraine)'), +(6112, 'Mines and mineral resources -- Juvenile fiction'), +(6113, 'Naval art and science -- Dictionaries'), +(6114, 'Almshouses -- Juvenile fiction'), +(6115, 'Forecasting'), +(6116, 'German language -- Readers'), +(6117, 'Physics -- Early works to 1800'), +(6118, 'Bengali poetry -- Translations into Greek'), +(6119, 'Marie, de France, active 12th century -- Poetry'), +(6120, 'W.P. Nimmo, Hay & Mitchell -- Catalogs'), +(6121, 'Hairwork'), +(6122, 'Authors, English -- Homes and haunts -- England -- London'), +(6123, 'Finance, Public -- United States -- History -- 1901-1933'), +(6124, 'British -- United States -- Fiction'), +(6125, 'Women -- Religious life'), +(6126, 'Moore, John, Sir 1761-1809 -- Juvenile fiction'), +(6127, 'Ukraine -- Social life and customs -- Fiction'), +(6128, 'World\'s Columbian Exposition (1893 : Chicago, Ill.) -- Pictorial works'), +(6129, 'Drake, Francis, approximately 1540-1596 -- Juvenile fiction'), +(6130, 'Rome -- History -- Fiction'), +(6131, 'Students -- Fiction'), +(6132, 'Family life -- New England -- Fiction'), +(6133, 'O\'Brien, Frederick, 1869-1932 -- Diaries'), +(6134, 'Eskimos -- Folklore'), +(6135, 'Nevada -- Fiction'), +(6136, 'Australian essays'), +(6137, 'French drama (Comedy) -- 19th century'), +(6138, 'Athens (Greece) -- History'), +(6139, 'Belgian literature (French) -- 19th century -- History and criticism'), +(6140, 'Penal transportation -- Fiction'), +(6141, 'Sects'), +(6142, 'Working class -- Political activity'), +(6143, 'Northwest, Old'), +(6144, 'World War, 1914-1918 -- Soviet Union'), +(6145, 'Newton, Isaac, Sir, 1642-1727 -- Poetry'), +(6146, 'Great Britain -- Emigration and immigration'), +(6147, 'Gamma functions'), +(6148, 'British -- Ireland -- Fiction'), +(6149, 'Public health -- England -- History -- 19th century'), +(6150, 'Home'), +(6151, 'Paleontology -- Nebraska -- Agate Fossil Beds National Monument'), +(6152, 'Poets, Spanish'), +(6153, 'Tailors -- Fiction'), +(6154, 'Cinematography'), +(6155, 'Slavery -- Illinois'), +(6156, 'Southern States -- Fiction'), +(6157, 'Legends -- Ireland'), +(6158, 'Nicholas, Saint, Bishop of Myra'), +(6159, 'Lutheran Church -- Doctrinal and controversial works'), +(6160, 'Veterinary obstetrics'), +(6161, 'Buccaneers -- Fiction'), +(6162, 'Decoration and ornament'), +(6163, 'Animal behavior -- Humor'), +(6164, 'Migrations of nations -- Fiction'), +(6165, 'Golf stories'), +(6166, 'Houdini, Harry, 1874-1926'), +(6167, 'Betrothal -- Social aspects -- Juvenile fiction'), +(6168, 'Fairy tales -- Germany -- Translations into Finnish'), +(6169, 'Fawkes, Guy, 1570-1606 -- Fiction'), +(6170, 'Authors'), +(6171, 'Heroes'), +(6172, 'Scott, Greenwood & Co. -- Catalogs'), +(6173, 'Wrestlers'), +(6174, 'Tobacco -- Early works to 1800'), +(6175, 'Biology'), +(6176, 'Fu Manchu, Doctor (Fictitious character) -- Fiction'), +(6177, 'Alexandria (Va.) -- History'), +(6178, 'Goethe, Johann Wolfgang von, 1749-1832. Faust -- Illustrations'), +(6179, 'Crystal gazing'), +(6180, 'Mexico -- History -- Conquest, 1519-1540 -- Fiction'), +(6181, 'Brazil -- History'), +(6182, 'Tales -- South Africa -- Zululand'), +(6183, 'Turkey -- Foreign relations -- Germany'), +(6184, 'Harvey, William, 1578-1657 -- Portraits'), +(6185, 'Boxers (Sports) -- Fiction'), +(6186, 'South Africa -- Juvenile fiction'), +(6187, 'Humorous recitations'), +(6188, 'Camp Fire Girls -- Drama'), +(6189, 'Casco Bay (Me.) -- History'), +(6190, 'Russo-Japanese War, 1904-1905 -- Juvenile fiction'), +(6191, 'Harriot, Thomas, 1560-1621'), +(6192, 'Clubs -- England -- London'), +(6193, 'Sonnets'), +(6194, 'Fairies -- Fiction'), +(6195, 'Bible. Old Testament -- History of Biblical events'), +(6196, 'Dramatists, English -- 18th century -- Biography'), +(6197, 'Foster home care -- Juvenile fiction'), +(6198, 'Genoa (Italy) -- History'), +(6199, 'Businesspeople -- Fiction'), +(6200, 'Arizona -- Fiction'), +(6201, 'Almshouses -- Fiction'), +(6202, 'Investments -- Fiction'), +(6203, 'Dogsledding -- Alaska -- Fiction'), +(6204, 'Christian saints -- Portugal -- Biography'), +(6205, 'Fireflies -- Juvenile fiction'), +(6206, 'Number theory'), +(6207, 'Birds -- Conservation -- Periodicals'), +(6208, 'African Americans -- Alabama -- Biography'), +(6209, 'Julian, the Hospitaller, Saint -- Fiction'), +(6210, 'Campaign literature, 1865 -- American'), +(6211, 'Disabled veterans -- England -- Fiction'), +(6212, 'Dürer, Albrecht, 1471-1528'), +(6213, 'Bible. Zechariah'), +(6214, 'Indic drama'), +(6215, 'United States -- Social conditions -- Periodicals'), +(6216, 'Novelists, American -- 19th century -- Biography'), +(6217, 'Indochina -- Description and travel'), +(6218, 'Great Britain. Royal Navy -- Officers -- Biography'), +(6219, 'Bible. Daniel -- Prophecies'), +(6220, 'Physician and patient -- Fiction'), +(6221, 'Emperors -- Rome -- Biography -- Early works to 1800'), +(6222, 'Gutenberg, Johann, 1397?-1468 -- Fiction'), +(6223, 'Clerks -- Fiction'), +(6224, 'Java (Indonesia) -- Description and travel'), +(6225, 'Mollusks -- Dictionaries'), +(6226, 'De Gurowski, Adam G., count, 1805-1866 -- Diaries'), +(6227, 'World War, 1914-1918 -- France'), +(6228, 'Ice'), +(6229, 'Jesuits -- Fiction'), +(6230, 'Vatican -- Fiction'), +(6231, 'Great Britain. Army. 23rd Royal Fusiliers'), +(6232, 'Egypt -- History -- 332-30 B.C. -- Fiction'), +(6233, 'Milan (Italy) -- History -- Sources'), +(6234, 'Ritualism'), +(6235, 'Christian saints -- Fiction'), +(6236, 'Kennedy, Craig (Fictitious character) -- Fiction'), +(6237, 'Galilei, Galileo, 1564-1642'), +(6238, 'England -- Civilization -- 17th century'), +(6239, 'Historians -- Great Britain -- Biography'), +(6240, 'Diplomats -- Fiction'), +(6241, 'Temperance'), +(6242, 'Texas -- History'), +(6243, 'Hinduism'), +(6244, 'Foxes -- Juvenile fiction'), +(6245, 'Great Britain -- History -- Humor'), +(6246, 'Uther Pendragon (Legendary character) -- Fiction'), +(6247, 'United States. Army. Infantry, 307th. Company B'), +(6248, 'San Francisco (Calif.)'), +(6249, 'Church of Jesus Christ of Latter-day Saints -- Missions'), +(6250, 'Spain -- History'), +(6251, 'Cowardice -- Fiction'), +(6252, 'Didactic poetry'), +(6253, 'George I, King of the Hellenes, 1845-1913'), +(6254, 'Lutheran Church -- United States -- History'), +(6255, 'Methodist women -- Biography'), +(6256, 'Africa -- Juvenile literature'), +(6257, 'Coleridge, Samuel Taylor, 1772-1834'), +(6258, 'Storytelling'), +(6259, 'Hungary -- History'), +(6260, 'Brazil'), +(6261, 'Languages, Modern -- Study and teaching'), +(6262, 'Women -- China'), +(6263, 'Catholic Church -- Doctrines'), +(6264, 'Bible. Deuteronomy'), +(6265, 'Corsica (France) -- History -- 19th century -- Fiction'), +(6266, 'Waterfalls'), +(6267, 'Spanish drama (Comedy) -- Translations into Esperanto'), +(6268, 'Argüello y Morago, María de la Concepción Marcela, -1857'), +(6269, 'Finance, Public -- Greece -- Athens -- Early works to 1800'), +(6270, 'Great Britain -- History -- Mary I, 1553-1558 -- Fiction'), +(6271, 'Twickenham (London, England) -- Imprints'), +(6272, 'Egmont, Lamoraal, Graaf van, 1522-1568 -- Drama'), +(6273, 'Grotius, Hugo, 1583-1645'), +(6274, 'Illegitimacy'), +(6275, 'Daudet, Alphonse, 1840-1897'), +(6276, 'Test pilots'), +(6277, 'Ælfthryth, queen consort of Edgar, 945?-1000'), +(6278, 'Belisarius, approximately 505-565 -- Fiction'), +(6279, 'Children\'s stories, French -- Translations into English'), +(6280, 'Ozark Mountains -- Fiction'), +(6281, 'Flemish literature -- Translations into Esperanto'), +(6282, 'Cooking, French'), +(6283, 'Kindness -- Juvenile literature'), +(6284, 'Berengaria (Ship)'), +(6285, 'Machinery'), +(6286, 'Presidents -- United States -- Election -- 1876'), +(6287, 'Uppingham School -- Poetry'), +(6288, 'Chiropractic'), +(6289, 'Interlingua (Latin without inflections)'), +(6290, 'Trials (Espionage) -- New York (State) -- Tappan'), +(6291, 'Blood -- Circulation'), +(6292, 'Middle-aged persons -- Fiction'), +(6293, 'Torpedoes'), +(6294, 'Readers -- Poetry'), +(6295, 'Montez, Lola, 1818-1861'), +(6296, 'Philosophers -- England -- Biography'), +(6297, 'Dadaist literature'), +(6298, 'Coasts -- France -- History'), +(6299, 'Seashore biology -- Massachusetts -- Massachusetts Bay'), +(6300, 'Capitalists and financiers -- Drama'), +(6301, 'Initials'), +(6302, 'Young women -- France -- Fiction'), +(6303, 'Women intellectuals -- Fiction'), +(6304, 'Robertson, J. M. (John Mackinnon), 1856-1933'), +(6305, 'Epigrams -- History and criticism'), +(6306, 'Holbein, Hans, 1497-1543'), +(6307, 'Short stories, Portuguese'), +(6308, 'Missions'), +(6309, 'Cape Cod (Mass.)'), +(6310, 'Great Britain -- History -- Civil War, 1642-1649'), +(6311, 'Soldiers'), +(6312, 'Church of England'), +(6313, 'Actresses -- United States'), +(6314, 'Alexandria (Egypt) -- History'), +(6315, 'Trees -- Great Britain -- Identification'), +(6316, 'Cooking, English -- Early works to 1800'), +(6317, 'Robbery -- Fiction'), +(6318, 'Great Exhibition (1851 : London, England)'), +(6319, 'Shropshire (England) -- Poetry'), +(6320, 'Naval hygiene'), +(6321, 'English-speaking countries -- Intellectual life'), +(6322, 'Cyrano de Bergerac, 1619-1655 -- Drama'), +(6323, 'Arabian Peninsula -- History -- Juvenile fiction'), +(6324, 'Rousseau, Jean-Jacques, 1712-1778 -- Influence'), +(6325, 'Riviera (France) -- Description and travel'), +(6326, 'Socialism -- History'), +(6327, 'Dance'), +(6328, 'Crime -- England -- Fiction'), +(6329, 'Canada -- History -- Periodicals'), +(6330, 'Mafikeng (South Africa) -- History -- Siege, 1899-1900'), +(6331, 'Sozialdemokratische Partei Deutschlands'), +(6332, 'Railroads -- Employees -- Juvenile fiction'), +(6333, 'Air travel -- Fiction'), +(6334, 'Postal service -- Fiction'), +(6335, 'Ethics -- History'), +(6336, 'Monte-Carlo (Monaco) -- Fiction'), +(6337, 'Pocket gophers'), +(6338, 'Economists -- Great Britain -- Biography'), +(6339, 'Egyptian literature -- Translations into English'), +(6340, 'Mormons -- Biography'), +(6341, 'Rescues -- Great Britain'), +(6342, 'Persecution -- Juvenile fiction'), +(6343, 'Farm life -- Manitoba -- Fiction'), +(6344, 'Norwegian Americans -- Fiction'), +(6345, 'Publishers\' catalogs -- England'), +(6346, 'Christian biography'), +(6347, 'Mary, Queen of Scots, 1542-1587'), +(6348, 'Fantômas (Fictitious character) -- Fiction'), +(6349, 'Cape Cod (Mass.) -- Fiction'), +(6350, 'Chicago (Ill.) -- Exhibitions -- Pictorial works'), +(6351, 'Orchestral music, Arranged'), +(6352, 'Russia -- Social life and customs'), +(6353, 'Young women -- Attitudes -- Juvenile fiction'), +(6354, 'German essays -- 19th century'), +(6355, 'Müller, F. Max (Friedrich Max), 1823-1900'), +(6356, 'Illinois -- History -- Civil War, 1861-1865 -- Registers'), +(6357, 'Women employees -- New York (State) -- New York'), +(6358, 'Alvares, Rahul'), +(6359, 'Berlichingen, Götz von, 1480-1562 -- Drama'), +(6360, 'Adultery -- Fiction'), +(6361, 'Guizot, M. (François), 1787-1874'), +(6362, 'Italian poetry -- Translations into English'), +(6363, 'Parapsychology'), +(6364, 'Atomic bomb -- Blast effect'), +(6365, 'Women -- Suffrage -- United States -- Fiction'), +(6366, 'Dissenters -- France -- Fiction'), +(6367, 'Bible -- Biography'), +(6368, 'Bible. Psalms, XLII -- Commentaries'), +(6369, 'Asia -- Description and travel -- Early works to 1800'), +(6370, 'United States -- National Guard -- Juvenile fiction'), +(6371, 'Soviet Union -- Social conditions'), +(6372, 'English letters -- 19th century'), +(6373, 'Riviera (Italy) -- Description and travel'), +(6374, 'Silver mines and mining -- Fiction'), +(6375, 'United States. Army. Mormon Battalion'), +(6376, 'Piano music'), +(6377, 'Brutus, Marcus Junius, 85 B.C.?-42 B.C. -- Drama'), +(6378, 'New York (N.Y.) -- History -- 1865-1898 -- Fiction'), +(6379, 'Portuguese literature -- Classical period, 1500-1700'), +(6380, 'American literature -- Translations into Spanish'), +(6381, 'Göring, Hermann, 1893-1946 -- Trials, litigation, etc.'), +(6382, 'Mythology, Classical -- Poetry'), +(6383, 'Shetland (Scotland) -- History'), +(6384, 'Geometry, Solid'), +(6385, 'Arms and armor -- Spain'), +(6386, 'Atlantic Ocean -- Description and travel'), +(6387, 'Antiseptics in obstetrics'), +(6388, 'Indians of North America -- Illinois'), +(6389, 'United States -- Social life and customs -- 1865-1918'), +(6390, 'Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773. Letters to his son'), +(6391, 'San Francisco (Calif.) -- Fiction'), +(6392, 'Architecture -- India'), +(6393, 'Pastoral poetry, Latin -- History and criticism'), +(6394, 'Capitalism'), +(6395, 'Glacier Bay National Park and Preserve (Alaska)'), +(6396, 'Fathers and daughters -- Poetry'), +(6397, 'Great Britain -- Social conditions -- 19th century -- Fiction'), +(6398, 'Folklore -- Czechoslovakia'), +(6399, 'Church of Scotland -- Clergy -- Biography'), +(6400, 'Howells, William Dean, 1837-1920 -- Travel -- Italy -- Venice'), +(6401, 'Dutch language -- Synonyms and antonyms'), +(6402, 'Nobility -- Great Britain -- Correspondence'), +(6403, 'Gardeners -- Fiction'), +(6404, 'United States -- Description and travel -- Juvenile literature'), +(6405, 'African American soldiers'), +(6406, 'Macdonald, John Alexander, Sir, 1815-1891'), +(6407, 'Transcendentalists (New England) -- Biography'), +(6408, 'West, Benjamin, 1738-1820'), +(6409, 'Philip II, King of Spain, 1527-1598'), +(6410, 'Pocahontas, -1617 -- Poetry'), +(6411, 'Europe -- History -- 476-1492'), +(6412, 'Burial'), +(6413, 'Steel industry and trade -- Juvenile fiction'), +(6414, 'Portugal -- History'), +(6415, 'Church of St. Peter Mancroft (Norwich, England)'), +(6416, 'Pennsylvania Dutch Country (Pa.) -- Drama'), +(6417, 'Gods -- Fiction'), +(6418, 'Mythology, Norse'), +(6419, 'Adopted children -- Juvenile fiction'), +(6420, 'Bible. Jonah'), +(6421, 'Dürer, Albrecht, 1471-1528 -- Fiction'), +(6422, 'Amazon River -- Navigation'), +(6423, 'Bible -- History of Biblical events -- Poetry'), +(6424, 'Greece -- History'), +(6425, 'Browning, Elizabeth Barrett, 1806-1861 -- Correspondence'), +(6426, 'Afghans'), +(6427, 'Fans'), +(6428, 'Jews'), +(6429, 'Iroquois Indians'), +(6430, 'English poetry -- Scottish authors'), +(6431, 'New England -- Social life and customs -- 19th century -- Fiction'), +(6432, 'Santa Fe National Historic Trail'), +(6433, 'Charity -- Juvenile literature'), +(6434, 'Working class -- England -- Fiction'), +(6435, 'United States. Army. Massachusetts Infantry Regiment, 34th (1862-1865)'), +(6436, 'Art -- Technique'), +(6437, 'World War, 1914-1918 -- Campaigns -- Italy -- Juvenile fiction'), +(6438, 'Orchids -- Pictorial works'), +(6439, 'Philippines -- Discovery and exploration -- Spanish'), +(6440, 'Bruges (Belgium)'), +(6441, 'Buenos Aires (Argentina : Province) -- Boundaries'), +(6442, 'United States. Navy -- Small-boat service'), +(6443, 'English poetry -- 19th century -- History and criticism'), +(6444, 'Courtesans -- Egypt -- Alexandria -- Fiction'), +(6445, 'Volland, Sophie, 1716-1784 -- Correspondence'), +(6446, 'Children -- Health and hygiene'), +(6447, 'Beavers -- Classification'), +(6448, 'Frontier and pioneer life -- Australia -- Fiction'), +(6449, 'Frisian language -- Texts'), +(6450, 'Household employees -- Poetry'), +(6451, 'Burrows, Mary Louise (Fictitious character) -- Juvenile fiction'), +(6452, 'New Jersey -- Fiction'), +(6453, 'Newspapers -- Illustrations'), +(6454, 'Indians of Mexico -- Folklore'), +(6455, 'Books -- Prices'), +(6456, 'Coal'), +(6457, 'France -- History -- To 987'), +(6458, 'Proverbs, Finnish'), +(6459, 'Cornwall (England : County) -- Antiquities, Celtic'), +(6460, 'Folk songs, Hungarian'), +(6461, 'Rome -- History -- Empire, 284-476 -- Fiction'), +(6462, 'Barnum, P. T. (Phineas Taylor), 1810-1891'), +(6463, 'Arabic literature'), +(6464, 'Muslim saints'), +(6465, 'Bible. Job -- Illustrations'), +(6466, 'Fencing'), +(6467, 'Historical fiction, Tagalog'), +(6468, 'Cleaning'), +(6469, 'Streets -- France -- Paris'), +(6470, 'Cheltenham Ladies\' College -- History'), +(6471, 'Law -- England -- History'), +(6472, 'Crusades -- Juvenile fiction'), +(6473, 'Bible. Leviticus -- Commentaries'), +(6474, 'Transvaal (South Africa) -- History -- 1880-1910'), +(6475, 'Deaf -- Juvenile fiction'), +(6476, 'Naturalists -- United States -- Biography'), +(6477, 'Ohio River -- Juvenile fiction'), +(6478, 'Christian sociology'), +(6479, 'Marches'), +(6480, 'Tourists'), +(6481, 'Pleasure -- Early works to 1800'), +(6482, 'Women -- Suffrage -- France'), +(6483, 'Social values -- Juvenile fiction'), +(6484, 'Hymns, Welsh -- Translations into English'), +(6485, 'Chinese -- United States -- Education'), +(6486, 'Bothwell Bridge, Battle of, Scotland, 1679 -- Fiction'), +(6487, 'Ballads, Scots -- Scotland -- History and criticism'), +(6488, 'United States -- History -- Civil War, 1861-1865 -- Poetry -- Confederate'), +(6489, 'Submarine mines'), +(6490, 'Rome -- History -- Flavians, 69-96 -- Fiction'), +(6491, 'Macy\'s (Firm)'), +(6492, 'Dakota Indians -- Poetry'), +(6493, 'Salads'), +(6494, 'Gardening -- Dictionaries'), +(6495, 'Nietzsche, Friedrich Wilhelm, 1844-1900 -- Criticism and interpretation'), +(6496, 'Scotland -- Kings and rulers -- Biography'), +(6497, 'Horn, Cape (Chile) -- Description and travel'), +(6498, 'Rodents -- Control'), +(6499, 'Bible. Chronicles -- Commentaries'), +(6500, 'Sealers (Persons) -- Fiction'), +(6501, 'Istanbul (Turkey) -- History -- Siege, 1453 -- Fiction'), +(6502, 'Spanish-American War, 1898 -- Fiction'), +(6503, 'Swedish wit and humor'), +(6504, 'Venice (Italy : Province) -- History -- 697-1508 -- Fiction'), +(6505, 'Ranch life -- West (U.S.) -- Fiction'), +(6506, 'Kincaid, J. (John), 1787-1862'), +(6507, 'Civil rights -- Fiction'), +(6508, 'Virginia -- Social life and customs'), +(6509, 'Long Island (N.Y.) -- Fiction'), +(6510, 'Snakes -- North America'), +(6511, 'Rocky Mountains -- Poetry'), +(6512, 'Clowns -- Fiction'), +(6513, 'Robert I, King of Scots, 1274-1329 -- Fiction'), +(6514, 'Tolstoy, Leo, graf, 1828-1910 -- Translations into English'), +(6515, 'Hypnotism'), +(6516, 'Debtor and creditor -- Humor'), +(6517, 'Great Britain. Army -- History'), +(6518, 'Moriscos'), +(6519, 'Parthenon (Art museum : Nashville, Tenn.)'), +(6520, 'Paris (France) -- History -- Siege, 1870-1871'), +(6521, 'Poets, English -- 19th century -- Biography'), +(6522, 'Conductors (Music) -- Fiction'), +(6523, 'Portugal -- History -- Sancho II, 1223-1248'), +(6524, 'Stevenson, Robert Louis, 1850-1894 -- Travel'), +(6525, 'Great Britain -- History -- 13th century'), +(6526, 'German poetry -- Middle High German, 1050-1500 -- Translations into English'), +(6527, 'Wairy, Louis Constant, 1778-1845'), +(6528, 'Parody'), +(6529, 'Ballads, German -- Translations into French'), +(6530, 'Young women -- Periodicals'), +(6531, 'Horsemanship -- Poetry'), +(6532, 'Aeronautics -- United States -- History'), +(6533, 'Frontier and pioneer life -- Australia -- Northern Territory'), +(6534, 'Napoleon I, Emperor of the French, 1769-1821 -- Elba and the Hundred Days, 1814-1815'), +(6535, 'Colors'), +(6536, 'Cotton manufacture'), +(6537, 'Life -- Origin'), +(6538, 'Bible. Timothy, 1st'), +(6539, 'Hooker, Richard, 1553 or 4-1600'), +(6540, 'Intercessory prayer -- Christianity'), +(6541, 'Africa, North -- Description and travel'), +(6542, 'Hunters -- Juvenile fiction'), +(6543, 'Bible. Jude'), +(6544, 'Locomotives -- History'), +(6545, 'Normandy (France) -- Description and travel'), +(6546, 'Hypatia, -415 -- Fiction'), +(6547, 'Great Britain. Army. London Regiment. 4th (City of London) Battalion'), +(6548, 'South Africa -- Description and travel'), +(6549, 'Reformation -- Germany'), +(6550, 'Free will and determinism'), +(6551, 'Scottish Borders (Scotland) -- Songs and music'), +(6552, 'Women -- Asia -- History'), +(6553, 'Friedrich Wilhelm, Elector of Brandenburg, 1620-1688 -- Juvenile literature'), +(6554, 'World War, 1914-1918 -- Great Britain'), +(6555, 'Psychology, Pathological'), +(6556, 'New York (State) -- Juvenile fiction'), +(6557, 'Chinese drama -- Yuan dynasty, 1260-1368'), +(6558, 'Rome -- History -- Tiberius, 14-37 -- Fiction'), +(6559, 'Supernatural -- Poetry -- Bibliography'), +(6560, 'Handball'), +(6561, 'Poor -- Health and hygiene -- Great Britain'), +(6562, 'Polishes'), +(6563, 'T.B. Peterson & Brothers (Philadelphia, Pa.) -- Catalogs'), +(6564, 'Rizal, José, 1861-1896'), +(6565, 'Great Britain. Army. Machine Gun Squadron, 20th -- History'), +(6566, 'Riel Rebellion, 1885 -- Fiction'), +(6567, 'Ohio River -- Poetry'), +(6568, 'Uganda Railway'), +(6569, 'Georgia (Republic) -- Description and travel'), +(6570, 'Lake District (England)'), +(6571, 'Characters and characteristics'), +(6572, 'Ireland -- Description and travel -- Juvenile fiction'), +(6573, 'Croce, Benedetto, 1866-1952'), +(6574, 'Artists -- Correspondence'), +(6575, 'Theology -- History -- 18th century'), +(6576, 'Cost and standard of living -- England -- London'), +(6577, 'Netherlands -- Church history'), +(6578, 'Bible. Galatians -- Commentaries'), +(6579, 'Lewis and Clark Expedition (1804-1806)'), +(6580, 'England -- Social life and customs -- 18th century -- Drama'), +(6581, 'Civilization, Western'), +(6582, 'Canada, Western -- Gold discoveries -- Fiction'), +(6583, 'High schools -- Juvenile fiction'), +(6584, 'Henry IV, King of England, 1367-1413 -- Drama'), +(6585, 'Ireland -- Politics and government -- 1922-1949'), +(6586, 'Slavery -- Economic aspects -- United States'), +(6587, 'Homeopathy'), +(6588, 'English fiction -- Early modern, 1500-1700'), +(6589, 'Belgium -- Juvenile fiction'), +(6590, 'Kindergarten'), +(6591, 'New France -- Discovery and exploration'), +(6592, 'Short stories, American -- Hawaii'), +(6593, 'French language -- Textbooks for foreign speakers -- English'), +(6594, 'Ireland -- History -- 1649-1660 -- Fiction'), +(6595, 'Long Island (N.Y.) -- Juvenile fiction'), +(6596, 'Mennonites -- Fiction'), +(6597, 'Poetry -- 20th century -- Periodicals'), +(6598, 'Marie Antoinette, Queen, consort of Louis XVI, King of France, 1755-1793 -- Fiction'), +(6599, 'Bible. New Testament -- History of Biblical events'), +(6600, 'Metropolitan Museum of Art (New York, N.Y.)'), +(6601, 'Hernani (Fictitious character) -- Drama'), +(6602, 'Dalmatia (Croatia) -- Description and travel'), +(6603, 'Briton (Ship)'), +(6604, 'France. Armée'), +(6605, 'Schoolgirls -- Juvenile fiction'), +(6606, 'Feudalism -- History'), +(6607, 'British -- Germany -- Fiction'), +(6608, 'Livestock -- Juvenile fiction'), +(6609, 'Great Britain. Royal Air Force -- Juvenile fiction'), +(6610, 'Norwegian literature -- 19th century -- History and criticism'), +(6611, 'Inventors -- United States -- Fiction'), +(6612, 'Othello (Fictitious character) -- Drama'), +(6613, 'Ohio River Valley -- History'), +(6614, 'Satire, Portuguese'), +(6615, 'Jute fiber'), +(6616, 'Poland -- History -- Stanislaus II Augustus, 1764-1795 -- Fiction'), +(6617, 'Americans -- Foreign countries -- Fiction'), +(6618, 'Siberia (Russia) -- Fiction'), +(6619, 'United States -- History -- Humor'), +(6620, 'Baseball -- Juvenile fiction'), +(6621, 'Campanella, Tommaso, 1568-1639 -- Translations into English'), +(6622, 'White Horse, Vale of (England)'), +(6623, 'Brain'), +(6624, 'Wyoming Valley (Pa.) -- Juvenile fiction'), +(6625, 'Working class -- England -- Lancashire'), +(6626, 'Indians -- Religion'), +(6627, 'China -- History -- Sui dynasty, 581-618 -- Anecdotes'), +(6628, 'Easter stories'), +(6629, 'Artists -- Germany -- Correspondence'), +(6630, 'Philosophy, Hindu'), +(6631, 'Bible. Gospels'), +(6632, 'France -- History -- Revolution, 1789-1799 -- Refugees'), +(6633, 'Scientists'), +(6634, 'Juteini, Jaakko, 1781-1855'), +(6635, 'Farragut, David Glasgow, 1801-1870'), +(6636, 'Russia -- History -- Catherine II, 1762-1796 -- Fiction'), +(6637, 'Erotic literature, French'), +(6638, 'Letter writing'), +(6639, 'Bacon\'s Rebellion, 1676'), +(6640, 'Rodney, George Brydges Rodney, Baron, 1719-1792'), +(6641, 'London (England) -- Juvenile poetry'), +(6642, 'Automobiles -- Fiction'), +(6643, 'Children -- Denmark -- Juvenile literature'), +(6644, 'Books and reading -- Great Britain'), +(6645, 'Drugstores -- Southern States -- Periodicals'), +(6646, 'Inquisition -- History'), +(6647, 'Rebecca Riots, 1839-1844 -- Fiction'), +(6648, 'Yorkshire (England) -- History'), +(6649, 'Fire fighters -- Juvenile fiction'), +(6650, 'Red Cross and Red Crescent'), +(6651, 'Deaconesses'), +(6652, 'Elevators -- History'), +(6653, 'Epic poetry, Assyro-Babylonian'), +(6654, 'Ireland -- History -- 18th century'), +(6655, 'Short stories, Latin'), +(6656, 'Arts and crafts movement'), +(6657, 'Bamboo'), +(6658, 'Italy -- Social life and customs -- Fiction'), +(6659, 'Reptiles -- Korea'), +(6660, 'Radio -- Receivers and reception -- Handbooks, manuals, etc.'), +(6661, 'America -- Description and travel'), +(6662, 'Domestic animals'), +(6663, 'Caste -- India -- Madhya Pradesh'), +(6664, 'Music -- Instruction and study'), +(6665, 'Women household employees -- Australia -- Biography'), +(6666, 'Barnave, Antoine, 1761-1793'), +(6667, 'Cuba'), +(6668, 'Knights and knighthood -- Juvenile fiction'), +(6669, 'Moles (Animals)'), +(6670, 'Tocqueville, Alexis de, 1805-1859'), +(6671, 'Machinery, Kinematics of'), +(6672, 'Great Britain. Army. Queen\'s Own Royal West Kent Regiment'), +(6673, 'School of logicians (Chinese philosophy)'), +(6674, 'Chronology, Philippine'), +(6675, 'New Jersey -- Social life and customs -- Fiction'), +(6676, 'Romances -- Appreciation -- Fiction'), +(6677, 'Frontier and pioneer life -- United States -- Juvenile literature'), +(6678, 'Erigena, Johannes Scotus, approximately 810-approximately 877'), +(6679, 'Fruit-culture'), +(6680, 'Abel, Niels Henrik, 1802-1829'), +(6681, 'Stevenson, Robert Louis, 1850-1894 -- Travel -- New Jersey -- Manasquan'), +(6682, 'Italy -- Colonies -- Africa -- Poetry'), +(6683, 'Epidemics -- Great Britain -- History'), +(6684, 'Hares -- Fiction'), +(6685, 'Greece -- Fiction'), +(6686, 'Psychiatrists -- Fiction'), +(6687, 'Palestine -- Description and travel -- Juvenile literature'), +(6688, 'Muller, Philomena, -1881'), +(6689, 'Sonnets, English'), +(6690, 'Dewey, George, 1837-1917'), +(6691, 'Jews -- History -- To 70 A.D. -- Fiction'), +(6692, 'Shelley, Percy Bysshe, 1792-1822 -- Criticism and interpretation'), +(6693, 'Wolves'), +(6694, 'Near-death experiences -- Fiction'), +(6695, 'Great Britain -- History -- Regency, 1800-1837 -- Fiction'), +(6696, 'Burma -- History -- 1824-1948'), +(6697, 'Mistaken identity -- Drama'), +(6698, 'Baptism -- Church of England'), +(6699, 'Assyria -- History -- Sources'), +(6700, 'Motion pictures -- Catalogs'), +(6701, 'Science fiction plays'), +(6702, 'Prisons -- Kansas'), +(6703, 'Novelists, Russian -- 19th century -- Biography'), +(6704, 'United States -- Social life and customs -- 19th century -- Periodicals'), +(6705, 'Criticism -- Early works to 1800'), +(6706, 'Frontier and pioneer life -- Michigan -- Dearborn'), +(6707, 'Methodist Church (Great Britain) -- Fiction'), +(6708, 'Connacht (Ireland) -- Description and travel'), +(6709, 'Europeans -- Southeast Asia -- Fiction'), +(6710, 'Drama in education'), +(6711, 'Agriculture -- Michigan'), +(6712, 'Birds -- Behavior'), +(6713, 'Old Man of the Mountain (N.H.) -- Fiction'), +(6714, 'Creek War, 1813-1814 -- Poetry'), +(6715, 'Wild flowers -- Hawaii'), +(6716, 'Prophecies'), +(6717, 'Opossums'), +(6718, 'Lumbering -- Northwestern States'), +(6719, 'Dance of death'), +(6720, 'Beethoven, Ludwig van, 1770-1827. Symphonies'), +(6721, 'Radio -- Receivers and reception'), +(6722, 'Silver question -- Speeches in Congress'), +(6723, 'Bible. Thessalonians, 2nd'), +(6724, 'Astor, John Jacob, 1763-1848'), +(6725, 'Bohemia (Czech Republic) -- Drama'), +(6726, 'Hensman, Howard, -1916'), +(6727, 'Greenwich Village (New York, N.Y.) -- Fiction'), +(6728, 'Bible. Nahum'), +(6729, 'Liszt, Franz, 1811-1886 -- Correspondence'), +(6730, 'Shakespeare, William, 1564-1616 -- Adaptations'), +(6731, 'Sumerian language -- Texts'), +(6732, 'Bible. Philemon -- Commentaries'), +(6733, 'India -- History -- Sepoy Rebellion, 1857-1858 -- Fiction'), +(6734, 'Verdun, Battle of, Verdun, France, 1916'), +(6735, 'France -- History -- Restoration, 1814-1830'), +(6736, 'Cycling -- South Australia'), +(6737, 'Epic poetry, German'), +(6738, 'Conversion -- Juvenile fiction'), +(6739, 'Hughes, William Morris, 1864-1952'), +(6740, 'Bahai Faith -- Government'), +(6741, 'Unitarianism -- United States'), +(6742, 'Russian literature -- Translations into Finnish'), +(6743, 'Polynesia -- Description and travel'), +(6744, 'Harems'), +(6745, 'Gadsden (Ariz.) -- Fiction'), +(6746, 'Gloves'), +(6747, 'Gardening -- Early works to 1800'), +(6748, 'London (England) -- Description and travel -- Juvenile literature'), +(6749, 'Swiss fiction (French) -- Translations into Finnish'), +(6750, 'Rome -- History -- Civil War, 43-31 B.C. -- Drama'), +(6751, 'Belize -- Fiction'), +(6752, 'Bible -- Dictionaries'), +(6753, 'Oldcastle, John, Sir, -1417 -- Drama'), +(6754, 'Custody of children -- Fiction'), +(6755, 'Netherlands -- History -- 19th century -- Juvenile fiction'), +(6756, 'John, King of England, 1167-1216 -- Drama'), +(6757, 'Massieu, Jean, 1772-1846'), +(6758, 'Dreams'), +(6759, 'Ferret'), +(6760, 'Impostors and imposture'), +(6761, 'Indians of North America -- Drama'), +(6762, 'Morocco -- Description and travel'), +(6763, 'Bible. Prophets'), +(6764, 'Latin poetry -- Translations into English'), +(6765, 'Literary journeys -- France'), +(6766, 'Ranch life -- Juvenile fiction'), +(6767, 'Women dancers -- Juvenile fiction'), +(6768, 'Detective and mystery stories, English -- Translations into French'), +(6769, 'Sudan -- History -- 1821-1881'), +(6770, 'Science -- Miscellanea'), +(6771, 'Crime -- Illinois -- Chicago'), +(6772, 'Survival skills -- Juvenile fiction'), +(6773, 'Oklahoma -- Biography'), +(6774, 'Agriculture -- Canada -- Societies, etc.'), +(6775, 'Greek drama -- History and criticism'), +(6776, 'Autobiographies'), +(6777, 'Villages -- England -- Fiction'), +(6778, 'Crimean War, 1853-1856 -- Fiction'), +(6779, 'More, Thomas, Saint, 1478-1535 -- Drama'), +(6780, 'Carpaccio, Vittore, 1455?-1525? Dream of Saint Ursula'), +(6781, 'Banks and banking -- France -- History -- 19th -- Fiction'), +(6782, 'Space stations -- Fiction'), +(6783, 'Great Britain -- History -- Alfred, 871-899 -- Fiction'), +(6784, 'Referendum'), +(6785, 'Turpin, Richard, 1706-1739 -- Fiction'), +(6786, 'Hundred Years\' War, 1339-1453'), +(6787, 'Gainsborough, Thomas, 1727-1788'), +(6788, 'Great Britain -- History -- Richard I, 1189-1199 -- Fiction'), +(6789, 'Confederate States of America'), +(6790, 'Counter-Reformation -- England -- Fiction'), +(6791, 'Air pilots -- Juvenile fiction'), +(6792, 'Inventions -- History'), +(6793, 'Rome -- History'), +(6794, 'New Jersey -- History -- Revolution, 1775-1783'), +(6795, 'Twins -- Drama'), +(6796, 'Watercolor painting -- Technique'), +(6797, 'Argentina -- History -- 1776-1810 -- Sources'), +(6798, 'France -- History -- Henry IV, 1589-1610 -- Fiction'), +(6799, 'Spiders'), +(6800, 'Women -- Suffrage -- Great Britain -- Fiction'), +(6801, 'English language -- Lexicography -- History'), +(6802, 'Women\'s rights -- France -- History -- 19th century'), +(6803, 'Cramp, Charles Henry, 1828-1913'), +(6804, 'Church architecture'), +(6805, 'New England'), +(6806, 'Didactic literature -- History and criticism'), +(6807, 'Frogs -- South America'), +(6808, 'Lear, King (Legendary character) -- Drama'), +(6809, 'Smuggling -- Great Britain -- History'), +(6810, 'Greece -- History -- Macedonian Expansion, 359-323 B.C.'), +(6811, 'Patent laws and legislation -- Hawaii'), +(6812, 'Great Britain. Army. Royal Irish Dragoon Guards, 4th'), +(6813, 'Journalists -- New York (State) -- New York -- Fiction'), +(6814, 'Great Britain -- History -- Anglo-Saxon period, 449-1066 -- Juvenile fiction'), +(6815, 'Painting -- Poetry'), +(6816, 'Literary landmarks -- Wales'), +(6817, 'Naval strategy -- Decision making'), +(6818, 'Herculano, Alexandre, 1810-1877'), +(6819, 'Technology -- Fiction'), +(6820, 'Chinese poetry -- Yuan dynasty, 1260-1368'), +(6821, 'Priestley, Joseph, 1733-1804. Letters to a philosophical unbeliever'), +(6822, 'South Dakota -- History -- Fiction'), +(6823, 'Women novelists, French -- 19th century -- Biography'), +(6824, 'Rifles'), +(6825, 'China'), +(6826, 'Electric apparatus and appliances -- Amateurs\' manuals'), +(6827, 'Youth -- Fiction'), +(6828, 'Businesswomen -- Juvenile fiction'), +(6829, 'Social history -- Medieval, 500-1500'), +(6830, 'Beijing (China) -- History -- Siege, 1900 -- Fiction'), +(6831, 'Indian literature'), +(6832, 'Amazons'), +(6833, 'Chipmunks'), +(6834, 'Mushrooms'), +(6835, 'Turkey -- History -- Mahmud I, 1730-1754 -- Fiction'), +(6836, 'Wild flowers -- North America'), +(6837, 'Fibiger, J. (Johannes), 1821-1897'), +(6838, 'Provence (France) -- Social life and customs'), +(6839, 'FitzGerald, Edward, 1809-1883'), +(6840, 'Preparatory school students -- Juvenile fiction'), +(6841, 'Boswell, James, 1740-1795'), +(6842, 'Trappers -- Juvenile fiction'), +(6843, 'Telephone'), +(6844, 'Falstaff, John, Sir (Fictitious character) -- Drama'), +(6845, 'Horses -- Diseases'), +(6846, 'Art -- Japan'), +(6847, 'Scandinavia -- History'), +(6848, 'Prussia (Germany) -- History -- Frederick II, 1740-1786'), +(6849, 'Sick children -- Fiction'), +(6850, 'Georgia -- History -- Revolution, 1775-1783 -- Campaigns'), +(6851, 'Turtles, Fossil'), +(6852, 'Fever -- Fiction'), +(6853, 'Yeast'), +(6854, 'Nottinghamshire (England) -- Description and travel'), +(6855, 'Thuringia (Germany) -- Description and travel'), +(6856, 'Ypres, 1st Battle of, Ieper, Belgium, 1914'), +(6857, 'Dunk Island (Qld.)'), +(6858, 'Plants -- Classification -- Early works to 1800'), +(6859, 'Bible stories, English -- Gospels -- Juvenile literature'), +(6860, 'Philosophy, French'), +(6861, 'Fuegians -- Juvenile fiction'), +(6862, 'Spenser, Edmund, 1552?-1599'), +(6863, 'Mediterranean Sea -- Description and travel'), +(6864, 'Medicine -- California -- Santa Clara County'), +(6865, 'Housing and health'), +(6866, 'Girl Scouts of the United States of America'), +(6867, 'African Americans -- Social conditions -- Juvenile fiction'), +(6868, 'Horses -- Anecdotes'), +(6869, 'Florida -- Description and travel -- Juvenile fiction'), +(6870, 'Mexico City (Mexico) -- History'), +(6871, 'Governesses -- Fiction'), +(6872, 'Travel -- Juvenile fiction'), +(6873, 'Utah -- Description and travel'), +(6874, 'Information storage and retrieval systems -- Agriculture'), +(6875, 'Poets -- Fiction'), +(6876, 'Maryland -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(6877, 'Round barns -- Illinois'), +(6878, 'English prose literature -- 18th century'), +(6879, 'Folly -- Religious aspects -- Christianity'), +(6880, 'Women immigrants -- Fiction'), +(6881, 'Jerusalem -- History -- Siege, 70 A.D. -- Fiction'), +(6882, 'Renaissance'), +(6883, 'Young men -- France -- Fiction'), +(6884, 'Guarani Indians -- Missions'), +(6885, 'French literature -- Translations into English'), +(6886, 'Christian literature for children -- Periodicals'), +(6887, 'Bahá\'u\'lláh, 1817-1892'), +(6888, 'English language -- England -- London -- Slang -- Dictionaries'), +(6889, 'Adventure stories, French'), +(6890, 'Cuba -- Description and travel -- Juvenile fiction'), +(6891, 'Rosary'), +(6892, 'Guarino, Veronese, 1374-1460'), +(6893, 'Early memories -- Fiction'), +(6894, 'Germanic peoples'), +(6895, 'Cumbria (England) -- Description and travel -- Fiction'), +(6896, 'Americans -- France -- Fiction'), +(6897, 'Painters -- Germany -- Correspondence'), +(6898, 'Parasites'), +(6899, 'Murder -- Massachusetts -- Boston'), +(6900, 'Tagore, Rabindranath, 1861-1941 -- Translations into Finnish'), +(6901, 'Sacco-Vanzetti Trial, Dedham, Mass., 1921'), +(6902, 'Japan -- Literary collections'), +(6903, 'Indians of North America -- Languages -- Bibliography'), +(6904, 'Tobacco -- Poetry'), +(6905, 'Air pilots -- Fiction'), +(6906, 'Ouida, 1839-1908 -- Quotations'), +(6907, 'Johnson, Martin, 1884-1937'), +(6908, 'Eccentrics and eccentricities -- England'), +(6909, 'Lee, William Henry Fitzhugh, 1837-1891'), +(6910, 'Voltaire, 1694-1778 -- Translations into English'), +(6911, 'Signorelli, Luca, 1441?-1523'), +(6912, 'Mound-builders -- Art'), +(6913, 'Cormac Mac Airt, King of Ireland, fl. 227-260 -- Legends'), +(6914, 'Hymns, Latin -- Translations into English'), +(6915, 'Physicists'), +(6916, 'France -- History -- Louis XI, 1461-1483 -- Fiction'), +(6917, 'Gettysburg Campaign, 1863'), +(6918, 'World War, 1914-1918 -- War work -- Salvation Army'), +(6919, 'Great Britain -- History -- George III, 1760-1820 -- Juvenile fiction'), +(6920, 'Bernhard, Duke of Saxe-Weimar-Eisenach, 1792-1862 -- Travel -- United States'), +(6921, 'Galicia (Spain : Region)'), +(6922, 'Science -- Juvenile fiction'), +(6923, 'Slavery -- United States -- Fiction'), +(6924, 'Masculinity -- Poetry'), +(6925, 'Explorers -- Fiction'), +(6926, 'Rowing'), +(6927, 'Ely Cathedral'), +(6928, 'Mountaineering -- England'), +(6929, 'Pacific Area -- Description and travel'), +(6930, 'British -- France -- Paris -- Fiction'), +(6931, 'Stevenson, Robert Louis, 1850-1894 -- Travel -- Samoan Islands'), +(6932, 'Cardano, Girolamo, 1501-1576'), +(6933, 'Unemployed'), +(6934, 'Gastroenteritis'), +(6935, 'Sicily (Italy) -- History'), +(6936, 'Holidays -- Juvenile fiction'), +(6937, 'Mushrooms -- Identification'), +(6938, 'Russell, John Russell, Earl, 1792-1878'), +(6939, 'Chaucer, Geoffrey, -1400. Canterbury tales -- Criticism, interpretation, etc.'), +(6940, 'Phoenicia -- History'), +(6941, 'Portugal -- Social life and customs -- Periodicals'), +(6942, 'Gallipoli Peninsula (Turkey) -- History, Military'), +(6943, 'War (International law)'), +(6944, 'Morphine'), +(6945, 'Needlework'), +(6946, 'Swedish drama -- Translations into English'), +(6947, 'City and town life -- New York (State) -- New York -- Fiction'), +(6948, 'Magnifying glasses -- Early works to 1800'), +(6949, 'Italian literature -- Translations into English'), +(6950, 'Antigua -- Description and travel'), +(6951, 'Hippopotamidae -- Juvenile fiction'), +(6952, 'Austrian fiction'), +(6953, 'Critics -- Great Britain -- Biography'), +(6954, 'Immanence of God'), +(6955, 'South African fiction (English)'), +(6956, 'World politics'), +(6957, 'Devotional literature'), +(6958, 'Eastern question'), +(6959, 'Maine -- Poetry'), +(6960, 'Mashpee Indians -- Legal status, laws, etc.'), +(6961, 'Lutheran Church -- Early works to 1800'), +(6962, 'American poetry -- Periodicals'), +(6963, 'Romanies -- England'), +(6964, 'Tatars'), +(6965, 'Louis XIV, King of France, 1638-1715'), +(6966, 'Poultry'), +(6967, 'Splashes'), +(6968, 'Great Britain -- History -- George III, 1760-1820 -- Sources'), +(6969, 'Propylaea (Acropolis, Athens, Greece)'), +(6970, 'Confession'), +(6971, 'World War, 1914-1918 -- New Zealand -- Fiction'), +(6972, 'Discipline of children'), +(6973, 'Tobacco -- Anecdotes'), +(6974, 'Ocean travel'), +(6975, 'Actors -- Biography'), +(6976, 'United States -- History -- Revolution, 1775-1783 -- Prisoners and prisons'), +(6977, 'Widows -- Juvenile fiction'), +(6978, 'France -- Foreign relations -- 1792-1815'), +(6979, 'Woffington, Margaret, -1760 -- Drama'), +(6980, 'Greece -- Politics and government -- 1913-1917'), +(6981, 'Wool-carding'), +(6982, 'Great Britain. Royal Commission on Poor Laws and Relief of Distress'), +(6983, 'Perugino, approximately 1450-1523'), +(6984, 'Bible -- Indexes'), +(6985, 'Toledo (Spain) -- Fiction'), +(6986, 'Art, Italian -- Italy -- Florence'), +(6987, 'Piccadilly (London, England) -- Fiction'), +(6988, 'Labor inspection -- Sweden'), +(6989, 'Einstein, Albert, 1879-1955'), +(6990, 'Europe -- Politics and government'), +(6991, 'Nelson, Horatio Nelson, Viscount, 1758-1805 -- Death and burial'), +(6992, 'Edwin, King of Northumbria, 585?-633 -- Fiction'), +(6993, 'Mysticism -- Germany -- History -- Middle Ages, 600-1500 -- Sources'), +(6994, 'Finnish literature'), +(6995, 'Authors, Belgian -- 20th century -- Biography'), +(6996, 'Douglas, Stephen A. (Stephen Arnold), 1813-1861'), +(6997, 'Emotions'), +(6998, 'Seven Years\' War, 1756-1763 -- Fiction'), +(6999, 'Byzantine Empire -- Fiction'), +(7000, 'Railroad Strike, U.S., 1877'), +(7001, 'Southern States -- Juvenile literature'), +(7002, 'Victoria, Queen of Great Britain, 1819-1901'), +(7003, 'Christianity and other religions -- Buddhism'), +(7004, 'Adventure stories, French -- Translations into English'), +(7005, 'Hoosier (Nickname)'), +(7006, 'Patents'), +(7007, 'London (England) -- Social life and customs -- 19th century -- Fiction'), +(7008, 'Naples (Italy) -- Description and travel'), +(7009, 'Ives, Charles, 1874-1954. Sonatas, piano, no. 2'), +(7010, 'Nutrition'), +(7011, 'France -- Social conditions -- 18th century'), +(7012, 'French language -- Québec (Province) -- Glossaries, vocabularies, etc.'), +(7013, 'Adirondack Mountains (N.Y.) -- Fiction'), +(7014, 'Albemarle County (Va.) -- Guidebooks'), +(7015, 'Tobacco farmers -- Fiction'), +(7016, 'Fairy plays -- Sources'), +(7017, 'Hunting guides -- Fiction'), +(7018, 'B.G. Teubner (Firm) -- Catalogs'), +(7019, 'Venus (Roman deity) -- Poetry'), +(7020, 'Science fiction, English -- Translations into Finnish'), +(7021, 'Cressida (Fictitious character) -- Drama'), +(7022, 'Syria -- Description and travel'), +(7023, 'Trials (Poisoning) -- Great Britain'), +(7024, 'Nudity -- Therapeutic use'), +(7025, 'Poets, French -- 19th century -- Diaries'), +(7026, 'Italy -- History -- 1849-1870'), +(7027, 'Woodpeckers'), +(7028, 'Snakes -- Europe'), +(7029, 'Short stories, Danish -- Translations into English'), +(7030, 'Egypt -- History'), +(7031, 'Massachusetts -- History -- New Plymouth, 1620-1691'), +(7032, 'Heaven'), +(7033, 'Ethnology'), +(7034, 'Islands -- Drama'), +(7035, 'Georgia -- History -- Civil War, 1861-1865'), +(7036, 'Inflammation'), +(7037, 'Bible. Pentateuch -- Sermons'), +(7038, 'Sex role -- Drama'), +(7039, 'Hungarian literature'), +(7040, 'Reed, Joseph, 1741-1785'), +(7041, 'Afrikaans poetry'), +(7042, 'Bashfulness'), +(7043, 'Sex customs -- Fiction'), +(7044, 'Euahlayi (Australian people)'), +(7045, 'Great Britain -- History -- House of York, 1461-1485 -- Fiction'), +(7046, 'Nova Scotia -- Biography'), +(7047, 'Trojan War -- Poetry'), +(7048, 'Channel Islands -- History -- Puritan Revolution, 1642-1660 -- Fiction'), +(7049, 'English fiction -- History and criticism'), +(7050, 'Edward I, King of England, 1239-1307'), +(7051, 'Grandmothers -- Juvenile poetry'), +(7052, 'Bible. Isaiah'), +(7053, 'Knots and splices'), +(7054, 'World War, 1939-1945 -- Campaigns -- Northern Mariana Islands -- Saipan'), +(7055, 'Military art and science -- China -- Early works to 1800'), +(7056, 'Medical fiction'), +(7057, 'African Americans -- Drama'), +(7058, 'Scandinavia -- Juvenile literature'), +(7059, 'Australia. Australian Army. Australian Imperial Force (1914-1921) Engineers. 11th Field Company'), +(7060, 'Sanskrit fiction -- Translations into English'), +(7061, 'College verse, American -- Massachusetts -- Williamstown'), +(7062, 'New York (State) -- Social life and customs -- Juvenile fiction'), +(7063, 'North Pole -- Discovery and exploration'), +(7064, 'Fox hunting'), +(7065, 'Lizards'), +(7066, 'Prisons'), +(7067, 'Horticulture -- Minnesota -- Periodicals'), +(7068, 'Christian saints -- Biography'), +(7069, 'Reading (Elementary)'), +(7070, 'English language -- Grammar -- Humor'), +(7071, 'New England -- Social life and customs -- 20th century -- Fiction'), +(7072, 'Haunted houses -- Fiction'), +(7073, 'Hanseatic League'), +(7074, 'Witchcraft'), +(7075, 'Herbs -- Therapeutic use'), +(7076, 'Hungarian fiction -- Translations into English'), +(7077, 'Secret societies'), +(7078, 'Lutheran Church -- Doctrines'), +(7079, 'Motion picture authorship'), +(7080, 'Oregon -- History -- To 1859'), +(7081, 'United States -- History -- Civil War, 1861-1865 -- Songs and music -- Confederate States'), +(7082, 'Natural history -- Specimens'), +(7083, 'Generals -- United States -- Biography -- Juvenile literature'), +(7084, 'Astronomical clocks'), +(7085, 'Martyrs'), +(7086, 'Louis XVII, of France, 1785-1795 -- Fiction'), +(7087, 'Jinn -- Fiction'), +(7088, 'Christian education -- Teacher training'), +(7089, 'Clavichord'), +(7090, 'Executive power -- United States'), +(7091, 'Damien, Saint, Father, 1840-1889'), +(7092, 'Swiss fiction (German)'), +(7093, 'Open Library'), +(7094, 'Internal combustion engines'), +(7095, 'Frontier and pioneer life -- United States -- Fiction'), +(7096, 'Poverty Bay, N.Z., Massacre, 1868'), +(7097, 'England -- Church history -- 449-1066'), +(7098, 'Gardens -- Fiction'), +(7099, 'University of Cambridge -- Pictorial works'), +(7100, 'Country life -- Ireland -- Fiction'), +(7101, 'Women household employees -- France -- Fiction'), +(7102, 'Northwest, Canadian -- Economic conditions'), +(7103, 'Virtues -- Poetry'), +(7104, 'Economic history'), +(7105, 'Suriname -- Description and travel'), +(7106, 'Cooking, American -- Early works to 1800'), +(7107, 'Poor laws -- Ireland -- History'), +(7108, 'Victoria -- Description and travel'), +(7109, 'Meteorology'), +(7110, 'Pearl Harbor (Hawaii), Attack on, 1941'), +(7111, 'Atlantis (Legendary place)'), +(7112, 'Dams -- Juvenile fiction'), +(7113, 'Hydraulic machinery'), +(7114, 'Troilus (Legendary character) -- Poetry'), +(7115, 'Irish question'), +(7116, 'Wollstonecraft, Mary, 1759-1797'), +(7117, 'Business -- California'), +(7118, 'Lorimer, George Horace, 1869-1937. Letters from a self-made merchant to his son -- Parodies, imitations, etc.'), +(7119, 'Hunt riding -- Poetry'), +(7120, 'Europe -- History -- 1789-1815'), +(7121, 'Executions and executioners -- Great Britain'), +(7122, 'Cocoa'), +(7123, 'Circus performers -- Fiction'), +(7124, 'Palo Duro State Park (Tex.)'), +(7125, 'Composers -- Poland -- Biography -- Juvenile literature'), +(7126, 'Cattle -- Florida'), +(7127, 'Weather vanes -- Portugal'), +(7128, 'Wagner, Richard, 1813-1883. Tristan und Isolde'), +(7129, 'Radiogenetics'), +(7130, 'Mah jong'), +(7131, 'Rich people -- Fiction'), +(7132, 'Diseases -- Fiction'), +(7133, 'Adams, Samuel, 1722-1803'), +(7134, 'Trials (Sodomy) -- England'), +(7135, 'Gaul -- History'), +(7136, 'Philippines -- History -- 1521-1812'), +(7137, 'United States. Army. Rhode Island Infantry Regiment, 12th (1862-1863)'), +(7138, 'Mammals -- Mexico -- Michoacán de Ocampo'), +(7139, 'Cicero, Marcus Tullius'), +(7140, 'Fables, Greek -- Translations into English'), +(7141, 'Apologetics -- Early works to 1800'), +(7142, 'Identity -- Fiction'), +(7143, 'Nova Scotia -- Description and travel -- Juvenile fiction'), +(7144, 'Golden section'), +(7145, 'Sweden -- History -- Gustav I Vasa, 1523-1560'), +(7146, 'Chelsea (London, England) -- Fiction'), +(7147, 'Illumination of books and manuscripts -- Juvenile fiction'), +(7148, 'Waterloo, Battle of, Waterloo, Belgium, 1815 -- Fiction'), +(7149, 'United States -- History -- War of 1812'), +(7150, 'Disciples of Christ -- History'), +(7151, 'Business ethics'), +(7152, 'Philosophy -- Dictionaries'), +(7153, 'English poetry -- 18th century -- History and criticism'), +(7154, 'Printing -- Virginia -- Williamsburg -- History -- 18th century'), +(7155, 'Peasants -- England -- Fiction'), +(7156, 'Seventh-Day Baptists -- Fiction'), +(7157, 'Great Britain -- Church history'), +(7158, 'Aesthetics -- Fiction'), +(7159, 'Ebers, Georg, 1837-1898'), +(7160, 'Girls\' schools -- Fiction'), +(7161, 'Fugitive slaves -- United States -- Biography'), +(7162, 'Duty -- Juvenile fiction'), +(7163, 'India -- History -- 19th century -- Fiction'), +(7164, 'Bible. James'), +(7165, 'Women\'s rights -- History'), +(7166, 'Ansgar, Saint, Archbishop of Hamburg and Bremen, approximately 801-865'), +(7167, 'Women college students -- Fiction'), +(7168, 'World War, 1914-1918 -- Campaigns -- Western Front -- Personal narratives'), +(7169, 'Ndebele (African people)'), +(7170, 'Suffering'), +(7171, 'Sisters -- Fiction'), +(7172, 'Pennsylvania German dialect'), +(7173, 'Childéric I, King of the Franks, -481'), +(7174, 'Fairy tales -- France'), +(7175, 'Huguenots'), +(7176, 'Variations (Piano)'), +(7177, 'Finnish language -- Readers'), +(7178, 'Labor unions -- United States -- History'), +(7179, 'Jesus Christ -- Biography -- Juvenile literature'), +(7180, 'Novelists, Canadian -- 20th century -- Biography'), +(7181, 'Women -- Employment -- New York (State) -- New York'), +(7182, 'Melodrama'), +(7183, 'Agricultural chemistry'), +(7184, 'Italy -- History -- 1789-1815'), +(7185, 'Theater -- Germany'), +(7186, 'East Asia -- Bibliography'), +(7187, 'Powders -- Toxicology -- England -- Loughton (Essex)'), +(7188, 'Seasons -- Juvenile literature'), +(7189, 'San Francisco (Calif.) -- Social life and customs -- Juvenile fiction'), +(7190, 'Liberty -- Philosophy'), +(7191, 'Pullman Company'), +(7192, 'Superman (Philosophical concept)'), +(7193, 'Crete (Greece) -- History -- Insurrection, 1866-1868'), +(7194, 'France -- History -- Occupation and evacuation, 1871-1873'), +(7195, 'United States. Army. Connecticut Infantry Regiment, 6th (1861-1865)'), +(7196, 'Lyell, Charles, Sir, 1797-1875'), +(7197, 'Church of England -- England -- Clergy -- Correspondence'), +(7198, 'Church, J. (John), approximately 1780-approximately 1825 -- Trials, litigation, etc.'), +(7199, 'Chickamauga, Battle of, Ga., 1863'), +(7200, 'Italian literature -- History and criticism'), +(7201, 'Clerks (Retail trade) -- Juvenile fiction'), +(7202, 'Congregational churches -- Sermons'), +(7203, 'Dostoyevsky, Fyodor, 1821-1881 -- Translations into English'), +(7204, 'Great Britain -- Court and courtiers -- History -- 18th century'), +(7205, 'Airplanes -- Models'), +(7206, 'Richardson, Samuel, 1689-1761'), +(7207, 'Ireland -- Politics and government -- 19th century'), +(7208, 'Agricultural machinery -- United States -- Exhibitions'), +(7209, 'Dickens, Charles, 1812-1870 -- Homes and haunts -- England -- London'), +(7210, 'Moukhanoff, Helen de Smirnoff, 1878-1963'), +(7211, 'South African War, 1899-1902 -- War work'), +(7212, 'Bible. Timothy'), +(7213, 'Royal Canadian Mounted Police -- Juvenile fiction'), +(7214, 'History, Ancient -- Juvenile literature'), +(7215, 'Australia -- History'), +(7216, 'Bible -- Juvenile literature'), +(7217, 'Great Britain -- Politics and government -- 1901-1910'), +(7218, 'English language -- History'), +(7219, 'Art -- Italy -- Catania'), +(7220, 'Finland -- Description and travel'), +(7221, 'Hymns, German -- Translations into English'), +(7222, 'Sanctification'), +(7223, 'Wild flowers -- Utah -- Cedar Breaks National Monument -- Pictorial works'), +(7224, 'Iroquois Indians -- Social life and customs'), +(7225, 'Colorado -- Social life and customs -- Fiction'), +(7226, 'Fiancées -- Fiction'), +(7227, 'English language -- Dialects -- England -- Somerset'), +(7228, 'Natural history -- England -- Norfolk'), +(7229, 'Great Britain -- History -- Edward III, 1327-1377 -- Fiction'), +(7230, 'Chandler, Zachariah, 1813-1879'), +(7231, 'Lucidor, Lasse, 1638-1674'), +(7232, 'Lambs -- Juvenile fiction'), +(7233, 'Cyrus, the Younger, approximately 423 B.C.-401 B.C.'), +(7234, 'Denmark -- History -- Erik Menved, 1286-1319 -- Fiction'), +(7235, 'Fiji -- Description and travel'), +(7236, 'Respiration'), +(7237, 'Explorers -- France -- Biography'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(7238, 'Shark Bay (W.A.) -- Discovery and exploration -- Early works to 1800'), +(7239, 'Kobbe, Theodor von, 1798-1845'), +(7240, 'Birds -- Eggs -- Periodicals'), +(7241, 'United States. Army. Iowa Infantry Regiment, 5th (1861-1864) -- Biography'), +(7242, 'Moscheles, Felix, 1833-1917'), +(7243, 'Popular music -- 1911-1920'), +(7244, 'Mineralogy -- Texas'), +(7245, 'Rome -- History -- Empire, 30 B.C.-476 A.D.'), +(7246, 'Dewey, Orville, 1794-1882'), +(7247, 'Universalist churches -- Sermons'), +(7248, 'Frontier and pioneer life -- Wisconsin'), +(7249, 'Rare books -- New York (State) -- New York -- Bibliography -- Catalogs'), +(7250, 'United States. Army -- Supplies and stores'), +(7251, 'Education -- Portugal'), +(7252, 'Belloc, Hilaire, 1870-1953 -- Criticism and interpretation'), +(7253, 'Chautauqua (N.Y.) -- Juvenile fiction'), +(7254, 'Canterbury (N.Z.) -- Description and travel'), +(7255, 'Bahai Faith -- Doctrines'), +(7256, 'Ireland -- Juvenile fiction'), +(7257, 'Glaciers -- Alps'), +(7258, 'Empire State (Steamship)'), +(7259, 'Skunks'), +(7260, 'Police -- United States'), +(7261, 'Molière, 1622-1673 -- Criticism and interpretation'), +(7262, 'Romanticism -- Great Britain -- History -- 18th century'), +(7263, 'France -- Foreign relations -- 1830-1848'), +(7264, 'Westminster Abbey'), +(7265, 'Flodden, Battle of, England, 1513 -- Poetry'), +(7266, 'Lovers of Teruel (Legend) -- Drama'), +(7267, 'Trees'), +(7268, 'Apprentices -- Juvenile fiction'), +(7269, 'Dialogues, French'), +(7270, 'Spiders -- United States'), +(7271, 'Oratorios -- Excerpts'), +(7272, 'Argentina -- History -- To 1810'), +(7273, 'Russia -- Social life and customs -- Drama'), +(7274, 'Europe -- Intellectual life'), +(7275, 'Holy Roman Empire -- Kings and rulers -- Biography'), +(7276, 'Alchemy'), +(7277, 'Laos -- Description and travel'), +(7278, 'Indians of North America -- Social life and customs'), +(7279, 'Generosity -- Juvenile fiction'), +(7280, 'Middle East -- Fiction'), +(7281, 'Austrian poetry -- 20th century'), +(7282, 'Generals -- Drama'), +(7283, 'Hina (Polynesian deity)'), +(7284, 'Pigments'), +(7285, 'Mathematics teachers -- Great Britain -- Biography'), +(7286, 'Geology, Economic'), +(7287, 'Alchemists -- Fiction'), +(7288, 'Tennyson, Alfred Tennyson, Baron, 1809-1892'), +(7289, 'Transatlantic voyages -- Fiction'), +(7290, 'Bible. Luke II, 14 -- Meditations'), +(7291, 'Virginia -- History -- Civil War, 1861-1865 -- Fiction'), +(7292, 'Drama -- History and criticism'), +(7293, 'Human-animal communication -- Juvenile fiction'), +(7294, 'Knights of Malta'), +(7295, 'Nepal -- Description and travel'), +(7296, 'Jameson\'s Raid, 1895-1896'), +(7297, 'Mississippi River -- History -- Civil War, 1861-1865 -- Juvenile fiction'), +(7298, 'Manitoba -- Description and travel'), +(7299, 'Greek poetry -- History and criticism'), +(7300, 'Pinzón, Martín Alonso, 1440?-1493 -- Juvenile fiction'), +(7301, 'Venice (Italy) -- History -- Juvenile fiction'), +(7302, 'Picts'), +(7303, 'Italian poetry -- 16th century'), +(7304, 'Great Britain. Army. Rifle Brigade (Prince Consort\'s Own)'), +(7305, 'Upham, Charles Wentworth, 1802-1875. Salem witchcraft'), +(7306, 'Marriages of royalty and nobility -- Fiction'), +(7307, 'Indians of North America -- Canada -- Juvenile fiction'), +(7308, 'Sculptors -- Italy -- Biography'), +(7309, 'Odysseus, King of Ithaca (Mythological character) -- Juvenile literature'), +(7310, 'Philosophy -- Fiction'), +(7311, 'Middle East -- History'), +(7312, 'Robert-Houdin, Jean-Eugène, 1805-1871'), +(7313, 'Church buildings -- Fiction'), +(7314, 'Ingersoll, Robert Green, 1833-1899'), +(7315, 'Women doctors -- Fiction'), +(7316, 'Scottish Borders (Scotland) -- Description and travel'), +(7317, 'Castles -- Finland -- Turku'), +(7318, 'Opera -- Anecdotes'), +(7319, 'Contraception'), +(7320, 'Fort Ticonderoga (N.Y.) -- Capture, 1777 -- Juvenile fiction'), +(7321, 'Brooklyn Bridge (New York, N.Y.)'), +(7322, 'Colorado -- Fiction'), +(7323, 'Milan (Italy) -- History -- Revolution of 1848'), +(7324, 'Sousa, John Philip, 1854-1932'), +(7325, 'Chicago and Alton Railroad Company -- Drama'), +(7326, 'Saints -- Philippines'), +(7327, 'Camps -- Juvenile fiction'), +(7328, 'Music -- Bio-Bibliography'), +(7329, 'Washington (State) -- Industries'), +(7330, 'Plants -- Juvenile literature'), +(7331, 'Radioactivity'), +(7332, 'Women -- Suffrage -- Poetry'), +(7333, 'Fire insurance -- Fiction'), +(7334, 'Great Britain -- Genealogy'), +(7335, 'St. Davids Cathedral'), +(7336, 'Communism -- Washington (State) -- Seattle'), +(7337, 'Dentistry -- History'), +(7338, 'Iuka (Miss.) -- History -- Siege, 1862'), +(7339, 'Bible. Galatians'), +(7340, 'Mathematical constants'), +(7341, 'Angels in art'), +(7342, 'Taine, Hippolyte, 1828-1893. Origines de la France contemporaine'), +(7343, 'Bible. Corinthians, 2nd'), +(7344, 'Davis, Richard Harding, 1864-1916'), +(7345, 'Sharpies (Sailboats)'), +(7346, 'Nelson, Horatio Nelson, Viscount, 1758-1805 -- Juvenile fiction'), +(7347, 'Bashkirtseff, Marie, 1860-1884'), +(7348, 'Corsica (France) -- Description and travel'), +(7349, 'United States -- Description and travel -- Juvenile fiction'), +(7350, 'College students -- Fiction'), +(7351, 'Omar Khayyam. Rubaiyat'), +(7352, 'African Americans -- Periodicals'), +(7353, 'Ohio River -- Description and travel -- Juvenile literature'), +(7354, 'Building, Fireproof'), +(7355, 'World War, 1939-1945 -- Prisoners and prisons, Japanese'), +(7356, 'Abipon Indians'), +(7357, 'Eugenics'), +(7358, 'Siegfried (Legendary character)'), +(7359, 'Meissen (Saxony, Germany) -- Description and travel'), +(7360, 'Bicycles'), +(7361, 'Europe -- History -- 17th century'), +(7362, 'Jerusalem -- Description and travel'), +(7363, 'Rome (Italy) -- History -- 476-1420 -- Fiction'), +(7364, 'East Anglia (England) -- Description and travel'), +(7365, 'Virginia -- History -- Colonial period, ca. 1600-1775'), +(7366, 'New England -- Social life and customs -- Juvenile fiction'), +(7367, 'Latin America -- Economic conditions'), +(7368, 'Internet -- History'), +(7369, 'Cheerfulness'), +(7370, 'Gish, Lillian, 1893-1993'), +(7371, 'Fishing -- Juvenile fiction'), +(7372, 'Yachting -- Fiction'), +(7373, 'Creative activities and seat work'), +(7374, 'Home missions -- New York (State) -- New York'), +(7375, 'Van Dusen, Augustus S. F. X. (Fictitious character) -- Fiction'), +(7376, 'Iron and steel workers -- United States'), +(7377, 'Québec (Québec) -- Description and travel'), +(7378, 'Humorists, American -- 20th century -- Biography'), +(7379, 'King, Thomas Starr, 1824-1864'), +(7380, 'Oxford (England) -- Description and travel'), +(7381, 'Chilkat Indians -- Folklore'), +(7382, 'England -- Imprints'), +(7383, 'France -- History, Military'), +(7384, 'Mormon Church -- Great Britain'), +(7385, 'Grail -- Fiction'), +(7386, 'Maine -- Description and travel -- Juvenile fiction'), +(7387, 'Frothingham, Richard, 1812-1880. History of the siege of Boston, and of the battles of Lexington, Concord, and Bunker Hill'), +(7388, 'Cyprus -- Description and travel'), +(7389, 'Architecture -- England'), +(7390, 'Massachusetts -- History -- New Plymouth, 1620-1691 -- Poetry'), +(7391, 'United States -- Politics and government -- 1809-1817'), +(7392, 'Macedonia (Republic)'), +(7393, 'Austria -- Description and travel'), +(7394, 'Zoology -- Juvenile literature'), +(7395, 'Erotic stories, French'), +(7396, 'Spellers'), +(7397, 'Oceania -- Economic conditions'), +(7398, 'Slaves -- Emancipation -- United States -- Songs and music'), +(7399, 'Canyon de Chelly National Monument (Ariz.)'), +(7400, 'Great Britain. Parliament. House of Commons -- Biography'), +(7401, 'Butter'), +(7402, 'Monaco -- Politics and government -- Fiction'), +(7403, 'Fungi -- Identification'), +(7404, 'Danube River -- Navigation -- Fiction'), +(7405, 'Houseboats -- Juvenile fiction'), +(7406, 'Gems'), +(7407, 'English poetry -- England -- Yorkshire'), +(7408, 'Wagner, Richard, 1813-1883. Ring des Nibelungen'), +(7409, 'Robins -- Juvenile fiction'), +(7410, 'Finland -- History -- To 1523 -- Fiction'), +(7411, 'Finland -- Civilization'), +(7412, 'Rossetti, Gabriele, 1783-1854'), +(7413, 'Ireland -- Economic conditions'), +(7414, 'English language -- Versification'), +(7415, 'Airplanes -- History'), +(7416, 'Chinook jargon -- Glossaries, vocabularies, etc.'), +(7417, 'El Salvador -- Foreign economic relations -- Great Britain'), +(7418, 'Cement'), +(7419, 'Plants -- Michigan'), +(7420, 'French-Canadian poetry'), +(7421, 'Songs with piano'), +(7422, 'Boats and boating -- Fiction'), +(7423, 'Bible. Job -- Commentaries'), +(7424, 'Njáll Thorgursson, approximately 930-1011'), +(7425, 'Cyrus, King of Persia, -529 B.C.'), +(7426, 'Folk literature, Finnish -- History and criticism'), +(7427, 'Progress'), +(7428, 'Strikes and lockouts -- Building trades -- Illinois -- Chicago'), +(7429, 'Somme, 1st Battle of the, France, 1916 -- Fiction'), +(7430, 'Church of Jesus Christ of Latter-day Saints -- Apostles -- Biography'), +(7431, 'Bahais -- Biography'), +(7432, 'United States -- Economic conditions'), +(7433, 'Spanish-American War, 1898 -- Juvenile fiction'), +(7434, 'Composers -- Fiction'), +(7435, 'Milky Way'), +(7436, 'Bach, Johann Sebastian, 1685-1750'), +(7437, 'Covilhã, Pêro da -- Fiction'), +(7438, 'Indian captivities'), +(7439, 'Protagoras'), +(7440, 'World War, 1914-1918 -- Naval operations, British -- Juvenile fiction'), +(7441, 'Hydrography -- Cabo Verde'), +(7442, 'Ireland -- History'), +(7443, 'Lucknow (India) -- History -- Siege, 1857 -- Sources'), +(7444, 'Shoes'), +(7445, 'Arizona -- History'), +(7446, 'Looms'), +(7447, 'Sermons, English -- Excerpts'), +(7448, 'Rape victims in literature'), +(7449, 'Agincourt, Battle of, Agincourt, France, 1415 -- Juvenile fiction'), +(7450, 'Dutch drama'), +(7451, 'Turtles'), +(7452, 'University of Kansas. Natural History Reservation'), +(7453, 'Balloons'), +(7454, 'Chinese classics -- Bibliography'), +(7455, 'Mascagni, Pietro, 1863-1945'), +(7456, 'Flags -- United States -- Poetry'), +(7457, 'Depressions -- 1929 -- United States -- Sources'), +(7458, 'Churches -- Montana -- Beaverhead County'), +(7459, 'Republics'), +(7460, 'Serbian poetry -- Translations into English'), +(7461, 'Wales -- Guidebooks'), +(7462, 'National characteristics, American'), +(7463, 'Acadians -- Biography'), +(7464, 'Manners and customs -- Drama'), +(7465, 'Java (Indonesia) -- Social life and customs'), +(7466, 'Demarcation line of Alexander VI'), +(7467, 'St. John\'s College (University of Cambridge) -- History'), +(7468, 'Mexico -- Antiquities'), +(7469, 'Music -- Germany -- History and criticism'), +(7470, 'Bible. Titus'), +(7471, 'New York (N.Y.) -- History -- 1775-1865 -- Fiction'), +(7472, 'Missions -- Fiction'), +(7473, 'Beethoven, Ludwig van, 1770-1827 -- Juvenile literature'), +(7474, 'Songs, English -- England -- Derbyshire -- Texts'), +(7475, 'France -- History -- Louis IX, 1226-1270 -- Juvenile fiction'), +(7476, 'Bluebeard (Legendary character) -- Juvenile fiction'), +(7477, 'Wawenock Indians -- Folklore'), +(7478, 'Switzerland -- Social life and customs -- Fiction'), +(7479, 'North Carolina -- History -- Civil War, 1861-1865 -- Fiction'), +(7480, 'Philippines -- History'), +(7481, 'Mammals -- South Dakota'), +(7482, 'Benedictines -- Rules'), +(7483, 'Bounty (Ship)'), +(7484, 'Atmosphere'), +(7485, 'Rama (Hindu deity) -- Fiction'), +(7486, 'Gynecology'), +(7487, 'Country life -- Australia -- Juvenile fiction'), +(7488, 'Romanticism'), +(7489, 'Scholars -- Great Britain -- Correspondence'), +(7490, 'Massachusetts -- History -- Revolution, 1775-1783 -- Fiction'), +(7491, 'Mayfair (London, England) -- Description and travel'), +(7492, 'Collectors and collecting'), +(7493, 'Turgenev, Ivan Sergeevich, 1818-1883 -- Correspondence'), +(7494, 'National characteristics, Turkish'), +(7495, 'Luncheons'), +(7496, 'Steamboats -- Fiction'), +(7497, 'England, Northern -- Fiction'), +(7498, 'Burns, Robert, 1759-1796 -- Correspondence'), +(7499, 'Misers -- Drama'), +(7500, 'Poetry -- Translating -- Early works to 1800'), +(7501, 'Military cadets -- United States -- Juvenile fiction'), +(7502, 'Happiness -- Early works to 1800'), +(7503, 'Great Britain -- Imprints'), +(7504, 'Housefly'), +(7505, 'Champnell, Augustus (Fictitious character) -- Fiction'), +(7506, 'Songs -- Instrumental settings'), +(7507, 'Poland -- History'), +(7508, 'Burns, Robert, 1759-1796 -- Fiction'), +(7509, 'Mafulus'), +(7510, 'Wagner, Richard, 1813-1883 -- Correspondence'), +(7511, 'Names, Personal -- England -- London'), +(7512, 'Mechanical drawing'), +(7513, 'Monsters -- Poetry'), +(7514, 'Epic poetry, Germanic -- Greek influences'), +(7515, 'Historic buildings -- United States'), +(7516, 'Grubbe, Marie, approximately 1640-1718 -- Fiction'), +(7517, 'Palermo (Italy) -- Social life and customs'), +(7518, 'Dyes and dyeing -- Feathers'), +(7519, 'Manuscripts, Maya'), +(7520, 'Cumberland Road'), +(7521, 'Postage stamps -- Saint Vincent and the Grenadines'), +(7522, 'Eschatology'), +(7523, 'Card games'), +(7524, 'Nursing -- History -- 19th century'), +(7525, 'Church music'), +(7526, 'Philanthropists -- Drama'), +(7527, 'Copenhagen (Denmark) -- Fiction'), +(7528, 'Christian poetry, English (Middle)'), +(7529, 'Snakes -- Mexico'), +(7530, 'German poetry -- History and criticism'), +(7531, 'Cotswold Hills (England) -- Fiction'), +(7532, 'Abbeys -- Scotland'), +(7533, 'Sophists (Greek philosophy)'), +(7534, 'Ci (Chinese poetry)'), +(7535, 'Rome -- History -- Civil War, 49-45 B.C. -- Poetry'), +(7536, 'Business libraries'), +(7537, 'Authors, German -- 19th century -- Biography'), +(7538, 'Bible. Nehemiah'), +(7539, 'Frontier and pioneer life -- New York (State) -- Fiction'), +(7540, 'Bell Rock Lighthouse (Scotland)'), +(7541, 'Water -- Purification -- Chlorination'), +(7542, 'Hawthorne, Sophia Peabody, 1809-1871 -- Correspondence'), +(7543, 'Young men -- Germany -- Fiction'), +(7544, 'Explorers'), +(7545, 'Rome, Watertown & Ogdensburg Railroad Company'), +(7546, 'Jews -- Czech Republic -- Prague -- Fiction'), +(7547, 'Young women -- Crimes against -- Fiction'), +(7548, 'Great Britain -- Foreign relations -- France'), +(7549, 'Indians of North America -- Utah'), +(7550, 'Legislators -- Italy -- Biography'), +(7551, 'British -- Japan -- Fiction'), +(7552, 'Bible. Mark -- Commentaries'), +(7553, 'Kensington (London, England) -- Description and travel'), +(7554, 'Poussin, Nicolas, 1594?-1665 -- Fiction'), +(7555, 'Earthquakes -- Fiction'), +(7556, 'Carducci, Giosuè, 1835-1907 -- Criticism and interpretation'), +(7557, 'Words and phrase lists -- English'), +(7558, 'Washington, George, 1732-1799'), +(7559, 'Sierra Nevada (Calif. and Nev.) -- Description and travel'), +(7560, 'Scotland -- Church history -- 17th century'), +(7561, 'Cybernetics -- Fiction'), +(7562, 'Justice, Administration of -- United States'), +(7563, 'Natural history -- England -- Hampshire'), +(7564, 'Baseball -- Humor'), +(7565, 'Ghost stories, Indic (English)'), +(7566, 'Canadian Invasion, 1775-1776 -- Fiction'), +(7567, 'Florence (Italy) -- Fiction'), +(7568, 'Finland -- Religion'), +(7569, 'Fly fishing'), +(7570, 'Students -- Social life and customs -- Juvenile fiction'), +(7571, 'Miguel I, King of Portugal, 1802-1866'), +(7572, 'Mythology, Maori'), +(7573, 'Fantasy poetry, French'), +(7574, 'Tea -- Social aspects'), +(7575, 'Pens'), +(7576, 'Dreyfus, Alfred, 1859-1935'), +(7577, 'Forest fires -- Prevention and control -- Juvenile fiction'), +(7578, 'Criticism (Philosophy)'), +(7579, 'England -- Juvenile fiction'), +(7580, 'Artificial intelligence -- Fiction'), +(7581, 'Slaveholders -- Fiction'), +(7582, 'Shrubs -- Great Britain -- Identification -- Pictorial works'), +(7583, 'United States -- History -- Juvenile literature'), +(7584, 'Canada -- History -- 1867-1914'), +(7585, 'Human physiology'), +(7586, 'County Gaol & House of Correction (Reading, England)'), +(7587, 'Chivalry'), +(7588, 'Children\'s songs -- United States'), +(7589, 'Philadelphia (Pa.) -- History -- 19th century -- Fiction'), +(7590, 'Scots -- Ontario -- Fiction'), +(7591, 'Civilization, Medieval, in literature'), +(7592, 'Montréal (Québec) -- History'), +(7593, 'California'), +(7594, 'Princesses -- Great Britain -- Biography'), +(7595, 'Christianity, Conversion to -- Fiction'), +(7596, 'Photography -- Printing processes -- Silver'), +(7597, 'Germany -- Social life and customs -- 19th century -- Fiction'), +(7598, 'Salt -- Physiological effect'), +(7599, 'Floods -- Mississippi River'), +(7600, 'Rocky Mountains -- Fiction'), +(7601, 'Arawak language'), +(7602, 'Horology -- History'), +(7603, 'Steam-engines'), +(7604, 'Culloden, Battle of, Scotland, 1746 -- Fiction'), +(7605, 'Fur -- Dressing and dyeing'), +(7606, 'Plants -- South America'), +(7607, 'Tic disorders'), +(7608, 'Socrates -- Drama'), +(7609, 'Argentina -- Description and travel'), +(7610, 'Education -- Kentucky'), +(7611, 'Funeral rites and ceremonies -- Oceania'), +(7612, 'Fowling'), +(7613, 'Bible. Gospels -- Harmonies'), +(7614, 'Deception -- Fiction'), +(7615, 'Mogul Empire'), +(7616, 'Cruelty'), +(7617, 'Ottawa (Ont.) -- History -- Poetry'), +(7618, 'Etiquette -- Great Britain -- Handbooks, manuals, etc.'), +(7619, 'Metaphor'), +(7620, 'Visitations (Church work) -- England -- London'), +(7621, 'Arbitration (International law)'), +(7622, 'Armenian question -- Poetry'), +(7623, 'Laurier, Wilfrid, Sir, 1841-1919'), +(7624, 'Tower of London (London, England)'), +(7625, 'Haiti -- History -- Revolution, 1791-1804'), +(7626, 'Printing'), +(7627, 'French wit and humor, Pictorial'), +(7628, 'Winslow, Anna Green, 1759-1779'), +(7629, 'Iowa -- Fiction'), +(7630, 'Scott, Walter, 1771-1832 -- Homes and haunts -- Scotland -- Scottish Borders'), +(7631, 'Calendars'), +(7632, 'Scott, Dred, 1809-1858'), +(7633, 'Cooking (Mushrooms)'), +(7634, 'Gama, Vasco da, 1469-1524'), +(7635, 'Klondike River Valley (Yukon) -- Gold discoveries -- Poetry'), +(7636, 'Canning and preserving'), +(7637, 'Miramichi River Valley (N.B.) -- Fiction'), +(7638, 'Surgery -- Early works to 1800'), +(7639, 'Saint-Mihiel, Battle of, Saint-Mihiel, France, 1918'), +(7640, 'Schneeberg (Saxony, Germany)'), +(7641, 'Labrador (N.L.) -- Juvenile literature'), +(7642, 'French fiction -- 17th century'), +(7643, 'Clothing and dress -- Assyria'), +(7644, 'Therapeutics'), +(7645, 'Mexico -- Social life and customs'), +(7646, 'Bulldog'), +(7647, 'Cooking -- Study and teaching -- Ontario'), +(7648, 'Fiction -- Technique'), +(7649, 'Silk -- Juvenile literature'), +(7650, 'Indians of North America -- Canada -- Fiction'), +(7651, 'Portuguese literature -- 19th century -- History and criticism'), +(7652, 'Education -- Philosophy'), +(7653, 'Longfellow, Henry Wadsworth, 1807-1882'), +(7654, 'Picaresque literature, Spanish'), +(7655, 'Hudson River Valley (N.Y. and N.J.) -- Description and travel'), +(7656, 'Poets, Irish -- Biography -- Early works to 1800'), +(7657, 'Cumbria (England) -- Description and travel'), +(7658, 'Theology, Doctrinal -- History'), +(7659, 'Irish poetry -- Translations into English'), +(7660, 'Italian drama (Tragedy)'), +(7661, 'Rome -- History -- Nero, 54-68 -- Drama'), +(7662, 'Marriage customs and rites -- Netherlands'), +(7663, 'Ethnology -- Vanuatu'), +(7664, 'Gawain (Legendary character) -- Romances'), +(7665, 'Finnish language -- Grammar'), +(7666, 'Mental retardation'), +(7667, 'Customary law -- France'), +(7668, 'Observation (Psychology)'), +(7669, 'South Africa -- History -- Frontier Wars, 1811-1878 -- Fiction'), +(7670, 'Conservation of natural resources'), +(7671, 'Puranas. Bhagavatapurana. English'), +(7672, 'Russo-Japanese War, 1904-1905'), +(7673, 'Girls -- Education'), +(7674, 'Coffin, Charles Carleton, 1823-1896'), +(7675, 'Philosophy, Arab'), +(7676, 'Peace -- Religious aspects -- Bahai Faith'), +(7677, 'Preaching'), +(7678, 'Chateaubriand, François-René, vicomte de, 1768-1848'), +(7679, 'Natural Bridges National Monument (Utah)'), +(7680, 'Mercia (Kingdom) -- History'), +(7681, 'Hubbard, Leonidas, 1872-1903'), +(7682, 'Newspaper vendors -- Manitoba -- Winnipeg -- Biography'), +(7683, 'Epictetus'), +(7684, 'Slavery -- Juvenile fiction'), +(7685, 'Missions -- Taiwan'), +(7686, 'Peninsular War, 1807-1814 -- Poetry'), +(7687, 'Membranes (Biology)'), +(7688, 'Patriotic plays, American'), +(7689, 'Organized crime -- United States -- History -- 19th century'), +(7690, 'Working class -- United States'), +(7691, 'Ethnopsychology'), +(7692, 'Social sciences -- Study and teaching -- Periodicals'), +(7693, 'History -- Study and teaching -- Periodicals'), +(7694, 'Providence and government of God -- Christianity'), +(7695, 'Cooks -- Fiction'), +(7696, 'Circus -- Fiction'), +(7697, 'Railroads -- Freight -- Rates -- United States'), +(7698, 'Chickens -- Juvenile fiction'), +(7699, 'Railroads -- California -- History'), +(7700, 'Tennessee -- Social life and customs -- Fiction'), +(7701, 'Space flight to Mars -- Fiction'), +(7702, 'Cumberland (England) -- Fiction'), +(7703, 'Nebraska -- Description and travel'), +(7704, 'British -- Europe -- Fiction'), +(7705, 'Finland -- Politics and government -- 1809-1917'), +(7706, 'Buckingham, George Villiers, Duke of, 1592-1628'), +(7707, 'Satire, German -- 19th century'), +(7708, 'Arctic regions -- Juvenile fiction'), +(7709, 'Virginia -- History -- Colonial period, ca. 1600-1775 -- Juvenile fiction'), +(7710, 'Smith, Joseph, Jr., 1805-1844'), +(7711, 'Gauchos -- Poetry'), +(7712, 'Humorous poetry, American'), +(7713, 'Birds -- Folklore'), +(7714, 'Chancellorsville, Battle of, Chancellorsville, Va., 1863'), +(7715, 'Zoological illustration'), +(7716, 'Calais (France) -- History -- Siege, 1346-1347 -- Drama'), +(7717, 'Administrative agencies -- Fiction'), +(7718, 'France -- Social conditions'), +(7719, 'Mexico -- History'), +(7720, 'St. Oswald\'s Church (Grasmere, England)'), +(7721, 'Great Britain -- Colonies -- Asia'), +(7722, 'Wharton, Philip Wharton, Duke of, 1698-1731 -- Fiction'), +(7723, 'Exercise music'), +(7724, 'Valaorites, Aristoteles, 1824-1879'), +(7725, 'Europe -- Social life and customs'), +(7726, 'Unidentified flying objects'), +(7727, 'Massachusetts -- Intellectual life -- 20th century'), +(7728, 'Ecclesiastical law -- Scotland'), +(7729, 'Education -- Fiction'), +(7730, 'Gold mines and mining -- British Columbia'), +(7731, 'Mammals -- Kansas'), +(7732, 'Napoleonic Wars, 1800-1815 -- Campaigns -- Germany -- Prussia -- Fiction'), +(7733, 'Vienna (Austria) -- Drama'), +(7734, 'Kerry (Ireland) -- Social life and customs'), +(7735, 'Family life -- Juvenile fiction'), +(7736, 'Melbourne (Vic.) -- Social life and customs'), +(7737, 'James I, King of Scotland, 1394-1437 -- Fiction'), +(7738, 'Emin Pasha, 1840-1892'), +(7739, 'Bible. Ephesians'), +(7740, 'Persecution'), +(7741, 'Soldiers -- Great Britain -- Correspondence'), +(7742, 'Architecture -- Italy'), +(7743, 'Colonna, Francesco, -1527. Hypnerotomachia Poliphili -- Fiction'), +(7744, 'Napoleon I, Emperor of the French, 1769-1821 -- Relations with British'), +(7745, 'Atlantis (Legendary place) -- Fiction'), +(7746, 'Privateering -- Early works to 1800'), +(7747, 'Dogs -- Alaska -- Anecdotes'), +(7748, 'Ohio River'), +(7749, 'Malabar Coast (India) -- Description and travel'), +(7750, 'Optical illusions'), +(7751, 'Southern States -- Biography'), +(7752, 'Queens -- Egypt -- Drama'), +(7753, 'Christianity -- 20th century'), +(7754, 'Central America -- Description and travel'), +(7755, 'Menus -- Periodicals'), +(7756, 'Spedizione dei Mille (1860) -- Fiction'), +(7757, 'Navajo weavers'), +(7758, 'England -- Social conditions -- 19th century -- Juvenile fiction'), +(7759, 'Baudelaire, Charles, 1821-1867'), +(7760, 'Magic squares'), +(7761, 'Stenbäck, Lars, 1811-1870'), +(7762, 'Grand Canyon (Ariz.)'), +(7763, 'Legends -- Netherlands'), +(7764, 'Mammals -- Colorado'), +(7765, 'Mill, John Stuart, 1806-1873. Examination of Sir William Hamilton\'s philosophy'), +(7766, 'Families -- Religious life'), +(7767, 'Jason (Greek mythology)'), +(7768, 'Paderewski, Ignace Jan, 1860-1941'), +(7769, 'Seminole War, 1st, 1817-1818 -- Fiction'), +(7770, 'Deer -- Fiction'), +(7771, 'Birds -- Nests -- Periodicals'), +(7772, 'Mines and mineral resources'), +(7773, 'Flowers -- Southwest, New'), +(7774, 'Holberg, Ludvig, 1684-1754'), +(7775, 'Lamb, Charles, 1775-1834 -- Bibliography'), +(7776, 'Fortescue, Seymour John, Sir, 1856-1942'), +(7777, 'Social problems -- Early works to 1800'), +(7778, 'Book-worms'), +(7779, 'Nurses -- Fiction'), +(7780, 'Comparative literature -- German and Sanskrit'), +(7781, 'May-December romances -- Fiction'), +(7782, 'Neoplatonism'), +(7783, 'Alice Lee Elliott Memorial School -- History'), +(7784, 'Boston and Sandwich Glass Company'), +(7785, 'Vendetta -- Drama'), +(7786, 'Russian drama -- Translations into Greek'), +(7787, 'Nursery rhymes -- Poetry'), +(7788, 'Ethnicity -- Juvenile poetry'), +(7789, 'Gold mines and mining -- Juvenile fiction'), +(7790, 'Architects -- Fiction'), +(7791, 'Frederick William III, King of Prussia, 1770-1840 -- Correspondence'), +(7792, 'Comparative literature -- Icelandic and English'), +(7793, 'Civilization, Ancient'), +(7794, 'Pastoral theology'), +(7795, 'Hoover, Herbert, 1874-1964'), +(7796, 'Tennyson, Alfred Tennyson, Baron, 1809-1892. Princess'), +(7797, 'Nahuatl language -- Glossaries, vocabularies, etc.'), +(7798, 'Overpopulation -- Fiction'), +(7799, 'National parks and reserves -- United States'), +(7800, 'Methodist Church -- Sermons'), +(7801, 'Indians of North America -- Southwestern States'), +(7802, 'Paranoia'), +(7803, 'Prisons -- United States'), +(7804, 'Ruyter, Michiel Adriaanszoon de, 1607-1676 -- Juvenile fiction'), +(7805, 'Punta Arenas (Chile) -- History'), +(7806, 'Henry VIII, King of England, 1491-1547 -- Divorce'), +(7807, 'Painting -- Italy -- History'), +(7808, 'Slaves -- United States -- Fiction'), +(7809, 'Snell, Hannah, 1723-1792'), +(7810, 'A1 Road (England and Scotland)'), +(7811, 'Southern States'), +(7812, 'Mural painting and decoration -- United States'), +(7813, 'Giakos, Demetres'), +(7814, 'Peru -- Social life and customs -- Fiction'), +(7815, 'Pirates -- Juvenile fiction'), +(7816, 'Geography -- Juvenile literature'), +(7817, 'Partito politico futurista (Italy)'), +(7818, 'Frisians -- History'), +(7819, 'Bible. English -- Versions -- Revised'), +(7820, 'Germany. Kriegsmarine -- History'), +(7821, 'Divorce'), +(7822, 'Pine Barrens (N.J.) -- Fiction'), +(7823, 'Legends -- Juvenile literature'), +(7824, 'Guilds -- Juvenile fiction'), +(7825, 'United States -- Religion'), +(7826, 'United States -- History -- 1815-1861 -- Fiction'), +(7827, 'Smith, Annie Rebekah, 1828-1855'), +(7828, 'Wales -- Fiction'), +(7829, 'Ghana -- Description and travel'), +(7830, 'Fairy tales -- Denmark'), +(7831, 'Tahoe National Forest (Calif.)'), +(7832, 'Spain -- History -- Philip IV, 1621-1665'), +(7833, 'Indians of North America -- Poetry'), +(7834, 'Iroquois mythology'), +(7835, 'Browning, Robert, 1812-1889'), +(7836, 'Artists\' models -- Fiction'), +(7837, 'Southern States -- Social life and customs -- To 1775'), +(7838, 'Gyro compass'), +(7839, 'Surgery, Military'), +(7840, 'Anecdotes -- Great Britain'), +(7841, 'Giangaleazzo Visconti, Duke of Milan, 1351-1402 -- Fiction'), +(7842, 'Karelia (Russia) -- Social life and customs'), +(7843, 'Ignatius, of Loyola, Saint, 1491-1556'), +(7844, 'Whalers (Persons) -- Fiction'), +(7845, 'Women in war -- South Africa'), +(7846, 'Birds -- Argentina'), +(7847, 'Norwegian drama -- Translations into Dutch'), +(7848, 'Canadian fiction -- 19th century'), +(7849, 'Butler, Samuel, 1835-1902 -- Notebooks, sketchbooks, etc.'), +(7850, 'Transportation -- Fiction'), +(7851, 'Sex -- Religious aspects'), +(7852, 'Tattooing'), +(7853, 'Rome -- History -- Germanic Invasions, 3rd-6th centuries -- Fiction'), +(7854, 'Perspective'), +(7855, 'Unitarians -- Biography'), +(7856, 'Fugitive slaves -- United States'), +(7857, 'Bible -- History'), +(7858, 'Chautauquas'), +(7859, 'Opium abuse -- United States'), +(7860, 'Nicaragua -- Description and travel'), +(7861, 'Art appreciation'), +(7862, 'Bible. English -- History'), +(7863, 'Death -- Fiction'), +(7864, 'Istanbul (Turkey)'), +(7865, 'Hittites'), +(7866, 'Oligarchy -- Fiction'), +(7867, 'Cutbush, James, 1788-1823'), +(7868, 'History'), +(7869, 'Butler, Benjamin F. (Benjamin Franklin), 1818-1893 -- Poetry'), +(7870, 'Nobility -- Great Britain'), +(7871, 'Woolman, John, 1720-1772'), +(7872, 'Red Cross and Red Crescent -- Juvenile fiction'), +(7873, 'Steam-engines -- History'), +(7874, 'Yukon River (Yukon and Alaska) -- Description and travel'), +(7875, 'Andreyev, Leonid, 1871-1919 -- Translations into English'), +(7876, 'Lighthouses'), +(7877, 'Travel'), +(7878, 'Great Britain -- History -- Henry VI, 1422-1461 -- Drama'), +(7879, 'England -- Maps'), +(7880, 'Oedipus (Greek mythological figure) -- Drama'), +(7881, 'Esperanto literature'), +(7882, 'Hennepin, Louis, active 17th century -- Poetry'), +(7883, 'Slavery -- West Indies'), +(7884, 'Constellations'), +(7885, 'Romantic suspense fiction'), +(7886, 'United States. Army. Massachusetts Infantry Regiment, 29th (1861-1865)'), +(7887, 'Smoking -- Anecdotes'), +(7888, 'Church of God (Anderson, Ind.) -- History'), +(7889, 'Prostitution -- France -- Manuals'), +(7890, 'Psychoanalysis and art'), +(7891, 'Short stories, Danish'), +(7892, 'Bulbs (Plants)'), +(7893, 'Music, Greek and Roman'), +(7894, 'Truth'), +(7895, 'Floods -- Fiction'), +(7896, 'Beckford, William, 1760-1844'), +(7897, 'Coleridge, Samuel Taylor, 1772-1834 -- Correspondence'), +(7898, 'Nobility -- France -- Diaries'), +(7899, 'Shakespeare, William, 1564-1616 -- Characters -- Fools'), +(7900, 'Books'), +(7901, 'Tagore, Rabindranath, 1861-1941 -- Translations into English'), +(7902, 'Chancellorsville, Battle of, Chancellorsville, Va., 1863 -- Fiction'), +(7903, 'Camping -- Cascade Range -- History -- 20th century'), +(7904, 'William I, King of England, 1027 or 8-1087 -- Fiction'), +(7905, 'Hertfordshire (England)'), +(7906, 'Grandparent and child -- Juvenile fiction'), +(7907, 'Manufactures -- India'), +(7908, 'Mines and mineral resources -- Brazil'), +(7909, 'Reformation -- Scotland'), +(7910, 'Yiddish literature -- History and criticism'), +(7911, 'Spanish poetry'), +(7912, 'Latin drama (Comedy) -- History and criticism -- Early works to 1800'), +(7913, 'Slaves -- Great Britain -- Biography'), +(7914, 'Teamwork (Sports) -- Juvenile fiction'), +(7915, 'Prisoners of war -- South Africa -- Biography'), +(7916, 'Attitude change -- Fiction'), +(7917, 'Children\'s literature -- Bibliography'), +(7918, 'Children\'s Crusade, 1212 -- Fiction'), +(7919, 'Maxims, American'), +(7920, 'Peninsular War, 1807-1814 -- Fiction'), +(7921, 'Bible. Epistles of Paul'), +(7922, 'World War, 1914-1918 -- Regimental histories'), +(7923, 'Gibson, William, 1914-2008'), +(7924, 'Horse trainers -- Fiction'), +(7925, 'Tools'), +(7926, 'Composition (Art)'), +(7927, 'America -- History -- Juvenile literature'), +(7928, 'Children\'s literature, English -- History and criticism'), +(7929, 'Netherlands -- Fiction'), +(7930, 'Short stories, Russian -- Translations into Tagalog'), +(7931, 'Jami, 1414-1492'), +(7932, 'Marches (Band)'), +(7933, 'Northwest, Old -- Discovery and exploration'), +(7934, 'Agricultural laborers -- Galicia (Poland and Ukraine)'), +(7935, 'Pennsylvania -- Fiction'), +(7936, 'Celts -- Religion'), +(7937, 'Actors -- Great Britain -- Biography'), +(7938, 'Child actors -- Juvenile fiction'), +(7939, 'Ground squirrels'), +(7940, 'Bank fraud -- England'), +(7941, 'Trappers -- Fiction'), +(7942, 'Guatemala -- Description and travel'), +(7943, 'Southern States -- Poetry'), +(7944, 'Cataloging -- United States'), +(7945, 'Astronomy -- Observations'), +(7946, 'Great Britain -- History -- Elizabeth, 1558-1603'), +(7947, 'Dialogues, English (Middle)'), +(7948, 'English drama -- To 1500'), +(7949, 'Wood-engraving'), +(7950, 'Minks -- Juvenile fiction'), +(7951, 'Art -- Textbooks'), +(7952, 'Stoves -- Juvenile fiction'), +(7953, 'Kansas'), +(7954, 'Eastern question (Far East)'), +(7955, 'Bio-bibliography'), +(7956, 'World War, 1914-1918 -- Campaigns -- Africa, East'), +(7957, 'World War, 1914-1918 -- United States -- Periodicals'), +(7958, 'Unrequited love -- Fiction'), +(7959, 'Walpole, Robert, Earl of Orford, 1676-1745'), +(7960, 'Drama -- Outlines, syllabi, etc.'), +(7961, 'Virginia -- History -- Colonial period, ca. 1600-1775 -- Sources'), +(7962, 'South America -- Fiction'), +(7963, 'Short stories, Spanish -- Translations into English'), +(7964, 'Trading posts -- Fiction'), +(7965, 'Sled dog racing -- Alaska'), +(7966, 'Apocryphal books (New Testament)'), +(7967, 'Red River Settlement -- Juvenile fiction'), +(7968, 'America -- Discovery and exploration -- Juvenile literature'), +(7969, 'Anarchism -- Periodicals'), +(7970, 'Textile fabrics'), +(7971, 'University of Oxford -- Pictorial works'), +(7972, 'Clay'), +(7973, 'Reporters and reporting'), +(7974, 'Haiti -- Foreign relations -- United States'), +(7975, 'Authors, American'), +(7976, 'Executions and executioners -- Russia -- Fiction'), +(7977, 'Interlibrary loans -- New York (State) -- Long Island -- Handbooks, manuals, etc.'), +(7978, 'Arizona -- History -- To 1912'), +(7979, 'Northeast Passage'), +(7980, 'Rome -- History -- Germanic invasions, 3rd-6th centuries -- Drama'), +(7981, 'Church work -- Fiction'), +(7982, 'St. Paul\'s Cathedral (London, England) -- Fiction'), +(7983, 'Schoolcraft (Mich.) -- History'), +(7984, 'Whitefield, George, 1714-1770'), +(7985, 'Potter, Israel, 1744-1826? -- Fiction'), +(7986, 'Urdu poetry -- Translations into English'), +(7987, 'Advertising layout and typography -- United States'), +(7988, 'English language -- Rhetoric -- Early works to 1800'), +(7989, 'United States. Navy -- History'), +(7990, 'Readers -- United States'), +(7991, 'Irrigation'), +(7992, 'Children -- Death -- Juvenile fiction'), +(7993, 'Howard, Robert E. (Robert Ervin), 1906-1936 -- Poetry'), +(7994, 'Feminism'), +(7995, 'Judicial corruption -- England -- History'), +(7996, 'Rocky Mountain National Park (Colo.)'), +(7997, 'Henry, Infante of Portugal, 1394-1460'), +(7998, 'Bates, E. Katherine (Emily Katherine)'), +(7999, 'Indian pottery -- North America'), +(8000, 'Hunting -- British Columbia -- Vancouver Island'), +(8001, 'Germany -- Foreign relations -- 1871-1918'), +(8002, 'Church of England -- Liturgical objects'), +(8003, 'Wessex (England) -- Fiction'), +(8004, 'Industrialists -- Fiction'), +(8005, 'Sleep -- Poetry'), +(8006, 'Paraguay -- Boundaries -- Brazil'), +(8007, 'Danish drama -- Translations into Esperanto'), +(8008, 'Santa Fe National Historic Trail -- Fiction'), +(8009, 'Slave narratives -- Florida'), +(8010, 'Poetry, Modern -- 19th century'), +(8011, 'American literature -- Maine -- Portland'), +(8012, 'Physiology -- Juvenile literature'), +(8013, 'Bulgaria -- Description and travel'), +(8014, 'Russia -- History -- Peter I, 1689-1725'), +(8015, 'Church of Jesus Christ of Latter-day Saints'), +(8016, 'Time in literature'), +(8017, 'Eight-hour movement'), +(8018, 'Ducks -- Juvenile fiction'), +(8019, 'Landscape architecture -- Italy'), +(8020, 'Papua (Indonesia) -- Discovery and exploration'), +(8021, 'María de las Mercedes, Queen, consort of Alfonso XII, King of Spain, 1860-1878'), +(8022, 'Communism -- United States'), +(8023, 'Human experimentation in psychology -- Fiction'), +(8024, 'Chocolate'), +(8025, 'Fort Wayne (Ind.) -- History'), +(8026, 'Albigenses -- Fiction'), +(8027, 'Navigation (Aeronautics) -- Early works to 1900'), +(8028, 'Student adjustment -- Juvenile fiction'), +(8029, 'James II, King of England, 1633-1701'), +(8030, 'Potomac River'), +(8031, 'Munster (Ireland) -- Description and travel'), +(8032, 'Sweden -- History -- Adolphus Frederick, 1751-1771 -- Fiction'), +(8033, 'Hunting -- Uganda'), +(8034, 'Connecticut -- Church history'), +(8035, 'Asparagus'), +(8036, 'Bible. Old Testament'), +(8037, 'Readers -- Citizenship'), +(8038, 'Heimdal (Ship)'), +(8039, 'Dramatists -- Fiction'), +(8040, 'Mazaruni River (Guyana)'), +(8041, 'Mistaken identity -- Fiction'), +(8042, 'Bible -- Influence'), +(8043, 'Great Britain. Army. Regiment of Foot, 67th (South Hampshire)'), +(8044, 'Eskimos -- Alaska'), +(8045, 'Steam engineering'), +(8046, 'Organ (Musical instrument) -- History'), +(8047, 'Mineral industries -- Finance'), +(8048, 'Color -- Early works to 1800'), +(8049, 'Navajo Indians -- Juvenile poetry'), +(8050, 'Fishing -- United States'), +(8051, 'Alchemists -- Drama'), +(8052, 'Wound healing'), +(8053, 'Fables, Latin -- Translations into Finnish'), +(8054, 'Cowgirls -- West (U.S.) -- Biography'), +(8055, 'Jesus Christ -- Miracles'), +(8056, 'Tales -- Ireland'), +(8057, 'Philosophy, Italian'), +(8058, 'Mountains -- Juvenile fiction'), +(8059, 'Theater -- France -- History'), +(8060, 'Calvé, Emma, 1858-1942'), +(8061, 'Political science'), +(8062, 'French-Canadian fiction'), +(8063, 'Tagalog poetry'), +(8064, 'Montrose, James Graham, Marquis of, 1612-1650'), +(8065, 'Architecture -- France -- Provence'), +(8066, 'God'), +(8067, 'Mafia -- Louisiana -- New Orleans -- Fiction'), +(8068, 'Morrison, Donald, 1858-1894 -- Fiction'), +(8069, 'English poetry -- Book reviews'), +(8070, 'Toombs, Robert Augustus, 1810-1885'), +(8071, 'Britons -- Kings and rulers -- Drama'), +(8072, 'Mythology, Chinese'), +(8073, 'Libraries -- Poetry'), +(8074, 'Cortés, Hernán, 1485-1547 -- Juvenile literature'), +(8075, 'Colonate'), +(8076, 'German literature -- 20th century -- History and criticism'), +(8077, 'Pirandello, Luigi, 1867-1936 -- Translations into English'), +(8078, 'Humorous poetry, German'), +(8079, 'Georgia -- Fiction'), +(8080, 'Judges -- Ireland -- Biography'), +(8081, 'Women poets -- Fiction'), +(8082, 'Catholic Church -- Clergy -- Appointment, call, and election'), +(8083, 'Naaman, the Syrian -- Drama'), +(8084, 'Spartacus, -71 B.C. -- Drama'), +(8085, 'Religion and state'), +(8086, 'Yoga'), +(8087, 'Slaves -- United States -- Social conditions -- 19th century'), +(8088, 'France -- Description and travel -- Juvenile literature'), +(8089, 'Caucasus -- Fiction'), +(8090, 'Poor families -- Drama'), +(8091, 'Mississippi -- History'), +(8092, 'Portugal -- History -- Modern, 1580-'), +(8093, 'Turgot, Anne-Robert-Jacques, baron de l\'Aulne, 1727-1781'), +(8094, 'Agriculture -- Poetry'), +(8095, 'Desert reclamation -- Mali -- Fiction'), +(8096, 'Christian women -- Biography -- Juvenile literature'), +(8097, 'Sculptors -- Fiction'), +(8098, 'Urban poor -- Fiction'), +(8099, 'Shipwreck victims -- Drama'), +(8100, 'Musicians -- Biography'), +(8101, 'Peru -- History -- Conquest, 1522-1548 -- Fiction'), +(8102, 'Guise, Henri, duc de, 1550-1588 -- Fiction'), +(8103, 'Muhammad, Prophet, -632 -- Teachings'), +(8104, 'Perceval (Legendary character) -- Romances'), +(8105, 'Ojibwa Indians'), +(8106, 'Sweet clover'), +(8107, 'Bible. Lamentations'), +(8108, 'Bookbinding -- Repairing'), +(8109, 'Scottish Canadians -- Ontario -- History'), +(8110, 'South African War, 1899-1902 -- Regimental histories'), +(8111, 'Blind -- Biography'), +(8112, 'United States. Bureau of Refugees, Freedmen and Abandoned Lands'), +(8113, 'Mount Desert Island (Me.) -- History -- Colonial period, ca. 1600-1775 -- Juvenile fiction'), +(8114, 'Medicine -- Kentucky -- History'), +(8115, 'Turkey -- History -- 1288-1453'), +(8116, 'Panama -- Social life and customs'), +(8117, 'Folklore -- Armenia'), +(8118, 'Europe -- Politics and government -- 1989-'), +(8119, 'Mythology, Norse -- Juvenile literature'), +(8120, 'Artists -- France'), +(8121, 'World War, 1939-1945 -- United States -- Fiction'), +(8122, 'Medicine -- Biography'), +(8123, 'Devil -- Drama'), +(8124, 'Experiments -- Fiction'), +(8125, 'Secret service'), +(8126, 'Recreation -- Early works to 1800'), +(8127, 'United States -- History -- Anecdotes'), +(8128, 'Customary law -- Great Britain'), +(8129, 'Comedians -- Fiction'), +(8130, 'Anarchists -- Fiction'), +(8131, 'Jews in literature'), +(8132, 'Shakespeare, William, 1564-1616 -- Characters'), +(8133, 'United States -- History -- 19th century -- Fiction'), +(8134, 'Women in charitable work -- England -- Fiction'), +(8135, 'Royal Military Asylum'), +(8136, 'Louis XV, King of France, 1710-1774 -- Fiction'), +(8137, 'Brainwashing -- Fiction'), +(8138, 'Leather'), +(8139, 'Association of the Miraculous Medal'), +(8140, 'Mind and body'), +(8141, 'Christian union'), +(8142, 'Fish hatcheries -- New England'), +(8143, 'English language -- Terms and phrases -- Early works to 1800'), +(8144, 'Catalan language -- Texts'), +(8145, 'Church work with criminals'), +(8146, 'Space flight -- Juvenile fiction'), +(8147, 'Rosetta stone'), +(8148, 'Saltwater fishing -- Fiction'), +(8149, 'Geology -- South America'), +(8150, 'Surgery -- History'), +(8151, 'Natural history -- Pre-Linnean works'), +(8152, 'Miners -- Fiction'), +(8153, 'Pitamakan -- Siksika Chief -- Fiction'), +(8154, 'Algeria -- Fiction'), +(8155, 'Social history -- 20th century'), +(8156, 'Curling -- History'), +(8157, 'Summer -- Juvenile literature'), +(8158, 'Fur trade -- North America'), +(8159, 'Law -- Poetry'), +(8160, 'Wyoming -- Juvenile fiction'), +(8161, 'Telegraphers -- Fiction'), +(8162, 'Garfield, James A. (James Abram), 1831-1881'), +(8163, 'Napoleon I, Emperor of the French, 1769-1821 -- Drama'), +(8164, 'Frothingham, Octavius Brooks, 1822-1895'), +(8165, 'Brendan, Saint, the Voyager, approximately 483-577'), +(8166, 'Prehistoric peoples -- Juvenile literature'), +(8167, 'Composers -- Biography -- Juvenile literature'), +(8168, 'Liberty -- History'), +(8169, 'Magi -- Fiction'), +(8170, 'Coaching (Transportation)'), +(8171, 'Jesus Christ -- Passion -- Texts'), +(8172, 'Stanford-Binet Test'), +(8173, 'Italy -- History -- 476-1492'), +(8174, 'Reform Judaism'), +(8175, 'Medicine -- History'), +(8176, 'Railroads -- Great Britain -- History'), +(8177, 'Domesday book'), +(8178, 'Willenhall (Walsall, England)'), +(8179, 'Beecher, Henry Ward, 1813-1887'), +(8180, 'Slavery'), +(8181, 'Italy -- Social life and customs -- 19th century -- Fiction'), +(8182, 'New York (State) -- History -- Civil War, 1861-1865 -- Regimental histories'), +(8183, 'Latin America -- Fiction'), +(8184, 'Cooking, French -- Early works to 1800'), +(8185, 'Southern States -- Social conditions'), +(8186, 'Margaret, of Anjou, Queen, consort of Henry VI, King of England, 1430-1482'), +(8187, 'Italian fiction -- Translations into French'), +(8188, 'Humorous songs'), +(8189, 'Great Britain -- History -- Charles II, 1660-1685 -- Fiction'), +(8190, 'Winter -- Juvenile literature'), +(8191, 'Lyonnais (France) -- History -- To 1500'), +(8192, 'Immigrants -- United States -- Fiction'), +(8193, 'Wyoming -- Fiction'), +(8194, 'Leatherwork'), +(8195, 'Honeymoons -- Fiction'), +(8196, 'Women labor union members'), +(8197, 'Hunting -- Anecdotes'), +(8198, 'Smuggling -- Juvenile fiction'), +(8199, 'Geology -- Florida -- Jackson County'), +(8200, 'Turtles -- Juvenile fiction'), +(8201, 'Theft -- Juvenile fiction'), +(8202, 'Judas Maccabaeus (Judah Maccabee, יהודה המכבי)'), +(8203, 'Airplanes -- Motors (Diesel)'), +(8204, 'Sylva, Carmen, 1843-1916'), +(8205, 'Parsons, Thomas William, 1819-1892'), +(8206, 'Folklore -- Greenland'), +(8207, 'Skin boats -- North America'), +(8208, 'Reincarnation -- Fiction'), +(8209, 'Prokofiev, Sergey, 1891-1953. Orchestra music'), +(8210, 'Aeronautics, Military'), +(8211, 'Chicago (Ill.) -- Moral conditions'), +(8212, 'Jacobites -- Fiction'), +(8213, 'Voyages and travels -- Poetry'), +(8214, 'Diaries -- Fiction'), +(8215, 'England -- Social conditions -- 19th century -- Fiction'), +(8216, 'Folklore -- Africa'), +(8217, 'Plows'), +(8218, 'Young, Brigham, 1801-1877'), +(8219, 'Railroad tunnels -- Design and construction'), +(8220, 'British -- Algeria -- Fiction'), +(8221, 'Leonardo, da Vinci, 1452-1519'), +(8222, 'Bismarck, Otto, Fürst von, 1815-1898'), +(8223, 'Cynicism -- Poetry'), +(8224, 'World War, 1914-1918 -- Periodicals'), +(8225, 'London (England) -- Juvenile fiction'), +(8226, 'Mines and mineral resources -- Fiction'), +(8227, 'Historic buildings -- Mississippi -- Natchez'), +(8228, 'Hapgood, Hutchins, 1869-1944'), +(8229, 'Savings and loan associations -- Great Britain'), +(8230, 'Indic poetry -- Translations into English'), +(8231, 'Humorists, American -- 19th century -- Biography'), +(8232, 'Orléans, Charlotte-Elisabeth, duchesse d\', 1652-1722'), +(8233, 'Artists -- Russia -- Correspondence'), +(8234, 'Transylvania (Romania) -- Description and travel'), +(8235, 'Swedish drama'), +(8236, 'Blind -- Education'), +(8237, 'Children\'s poetry, Australian'), +(8238, 'Mammals -- Behavior'), +(8239, 'Songs, English -- England -- Texts'), +(8240, 'Mathematics -- Quotations, maxims, etc.'), +(8241, 'Writing -- History'), +(8242, 'English language -- United States -- Slang'), +(8243, 'Belize -- Juvenile fiction'), +(8244, 'Cattle -- Pedigrees -- Periodicals'), +(8245, 'Witness bearing (Christianity)'), +(8246, 'Shakespeare, William, 1564-1616 -- Authorship'), +(8247, 'Human anatomy'), +(8248, 'Inventors -- Biography -- Juvenile literature'), +(8249, 'Authorship -- Handbooks, manuals, etc.'), +(8250, 'Voltaire, 1694-1778. Candide'), +(8251, 'Medals -- United States'), +(8252, 'Geology -- Connecticut River Valley'), +(8253, 'Germany -- History -- Henry IV, 1056-1106 -- Fiction'), +(8254, 'Shakespeare, William, 1564-1616 -- Knowledge -- Occultism'), +(8255, 'Sale, Florentia Wynch, 1790-1853 -- Travel -- Afghanistan'), +(8256, 'Radioactive tracers'), +(8257, 'Macbeth, King of Scotland, active 11th century -- Drama'), +(8258, 'Inuit -- Greenland'), +(8259, 'Music -- 16th century -- History and criticism'), +(8260, 'Amusements -- Juvenile poetry'), +(8261, 'Bereavement -- Poetry'), +(8262, 'Canada -- Biography'), +(8263, 'Hoare, E. (Edward), 1812-1894'), +(8264, 'Bible. Samuel, 2nd -- Commentaries'), +(8265, 'Marvell, Andrew, 1621-1678'), +(8266, 'Tarnowska, Marie, Countess'), +(8267, 'Biographical fiction, American'), +(8268, 'Abbott, Jacob, 1803-1879 -- Parodies, imitations, etc.'), +(8269, 'Scott, Walter, 1771-1832 -- Knowledge -- Literature'), +(8270, 'English language -- Dictionaries -- Spanish'), +(8271, 'Erzgebirge (Czech Republic and Germany)'), +(8272, 'Yucatán (Mexico : State) -- Antiquities'), +(8273, 'Cacao'), +(8274, 'Bièvre River (France)'), +(8275, 'Meteorology -- Early works to 1800'), +(8276, 'Monumento nazionale Vittorio Emmanuele II (Rome, Italy) -- 1910-1920'), +(8277, 'United States. Army. Pennsylvania Infantry Regiment, 84th (1861-1865)'), +(8278, 'Hiawatha, active 15th century'), +(8279, 'Fröbel, Friedrich, 1782-1852'), +(8280, 'Short stories, American -- Periodicals'), +(8281, 'Schlegel, August Wilhelm, 1767-1845'), +(8282, 'Valleys -- Scotland'), +(8283, 'Short stories, Italian -- Translations into Spanish'), +(8284, 'National characteristics, Irish'), +(8285, 'Richardson, Sarah J., 1835-'), +(8286, 'Norway -- Social life and customs -- 19th century -- Fiction'), +(8287, 'Martineau, Harriet, 1802-1876 -- Travel -- United States'), +(8288, 'Illinois -- Fiction'), +(8289, 'Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron, 1857-1941'), +(8290, 'Fry, Elizabeth Gurney, 1780-1845'), +(8291, 'Arthur, King -- Juvenile fiction'), +(8292, 'Methodist Church (U.S.) -- Fiction'), +(8293, 'Waxwings -- Phylogeny'), +(8294, 'Joan, of Arc, Saint, 1412-1431 -- Drama'), +(8295, 'Rugs'), +(8296, 'Mine pumps -- History'), +(8297, 'Fort Ticonderoga (N.Y.) -- History'), +(8298, 'Nasopharynx -- Adenoid vegetations'), +(8299, 'Grasses'), +(8300, 'Soldiers of fortune -- Fiction'), +(8301, 'Oliphant, Mrs. (Margaret), 1828-1897'), +(8302, 'Virgin Islands -- Juvenile fiction'), +(8303, 'Americanisms -- New York (State) -- New York -- Dictionaries'), +(8304, 'Impresarios -- Biography'), +(8305, 'North Island (N.Z.) -- Description and travel'), +(8306, 'Naples (Kingdom) -- History'), +(8307, 'Robin Hood (Legendary character) -- Legends'), +(8308, 'Horses -- Fiction'), +(8309, 'Go (Game) -- China'), +(8310, 'Wives -- Drama'), +(8311, 'Children -- Italy -- Juvenile literature'), +(8312, 'Proverbs, Irish'), +(8313, 'Visual education'), +(8314, 'Antislavery movements -- United States -- Periodicals'), +(8315, 'Language policy -- Ontario'), +(8316, 'Birds -- Illinois'), +(8317, 'Autographs'), +(8318, 'Meteorological instruments'), +(8319, 'Alaska -- Description and travel -- Juvenile literature'), +(8320, 'Agriculture -- Korea'), +(8321, 'Chicken breeders -- Fiction'), +(8322, 'Bacon, Francis, 1561-1626 -- Authorship'), +(8323, 'Erotic literature, Chinese'), +(8324, 'Pushtuns'), +(8325, 'Santa Catalina Island (Calif.) -- Fiction'), +(8326, 'Church work with children'), +(8327, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Kentucky'), +(8328, 'Australian literature -- History and criticism'), +(8329, 'World War, 1914-1918 -- Campaigns -- Eastern Front'), +(8330, 'United States -- History -- Civil War, 1861-1865 -- Blockades'), +(8331, 'Thomson, Thomas, 1817-1878 -- Travel -- Himalaya Mountains Region'), +(8332, 'Athens (Greece) -- Drama'), +(8333, 'Jews -- France'), +(8334, 'Women singers -- Fiction'), +(8335, 'Bengali drama -- Translations into English'), +(8336, 'Tales -- Norway'), +(8337, 'War songs -- United States -- Texts'), +(8338, 'Allied Naval Armistice Commission'), +(8339, 'Herbs'), +(8340, 'Havana (Cuba) -- History -- Siege, 1762'), +(8341, 'Natural history -- Guyana'), +(8342, 'Great Britain -- History -- 1714-1837'), +(8343, 'Sauk Indians -- Biography'), +(8344, 'Borrow, George, 1803-1881 -- Travel -- Spain'), +(8345, 'Tales -- India -- Punjab'), +(8346, 'River boats -- Mississippi River -- History -- 19th century'), +(8347, 'War stories, American'), +(8348, 'Macedo, José Agostinho de, 1761-1831'), +(8349, 'Civilization -- Philosophy'), +(8350, 'Elizabeth I, Queen of England, 1533-1603 -- Drama'), +(8351, 'Ontario -- Description and travel'), +(8352, 'Africa, West -- Juvenile fiction'), +(8353, 'Mesa Verde National Park (Colo.)'), +(8354, 'Geography -- Early works to 1800'), +(8355, 'Siegfried (Legendary character) -- Romances'), +(8356, 'Frontier and pioneer life -- Kentucky -- Juvenile literature'), +(8357, 'National songs -- Australia'), +(8358, 'Botany -- Textbooks'), +(8359, 'World War, 1914-1918 -- Campaigns -- Western Front -- Personal narratives, Swedish'), +(8360, 'Canaries'), +(8361, 'Frogs -- Juvenile fiction'), +(8362, 'Trials (Murder) -- England -- London'), +(8363, 'Livingstone, David, 1813-1873'), +(8364, 'Slavery and the church'), +(8365, 'Philanthropists -- Massachusetts -- Boston -- Biography'), +(8366, 'Admirals -- Great Britain -- Biography'), +(8367, 'Prisons -- Russia (Federation) -- Siberia'), +(8368, 'Arapaho language -- Texts'), +(8369, 'France -- History -- House of Valois, 1328-1589'), +(8370, 'Chemistry, Forensic'), +(8371, 'French-Canadians -- Juvenile fiction'), +(8372, 'Malays (Asian people)'), +(8373, 'Single tax'), +(8374, 'Astronauts -- Juvenile fiction'), +(8375, 'Transportation -- United States -- History'), +(8376, 'Clare, John, 1793-1864'), +(8377, 'Children -- United States'), +(8378, 'Orthodox Eastern Church -- Hymns'), +(8379, 'Man-woman relationships'), +(8380, 'Great Britain -- History -- Puritan Revolution, 1642-1660'), +(8381, 'Digby, Everard, Sir, 1578-1606'), +(8382, 'American wit and humor, Pictorial'), +(8383, 'Etna, Mount (Italy)'), +(8384, 'Inquisition'), +(8385, 'Rats -- Fiction'), +(8386, 'Fairy tales -- History and criticism'), +(8387, 'Montagu, Victor Alexander, 1841-1915'), +(8388, 'Wood'), +(8389, 'Bible. Ezekiel -- Commentaries'), +(8390, 'Worth, Patience (Spirit)'), +(8391, 'Portuguese wit and humor'), +(8392, 'Medicine, Popular -- Early works to 1800'), +(8393, 'Badgers'), +(8394, 'Radar -- Juvenile fiction'), +(8395, 'Criminal psychology'), +(8396, 'Diet in disease'), +(8397, 'Women journalists -- Fiction'), +(8398, 'Generals -- Great Britain'), +(8399, 'Apocryphal books (Old Testament) -- Juvenile literature'), +(8400, 'Bible stories -- Old Testament'), +(8401, 'Underground areas -- Fiction'), +(8402, 'Spelling reform -- Early works to 1800'), +(8403, 'Central America'), +(8404, 'Flynt, Josiah, 1869-1907'), +(8405, 'Chaco Culture National Historical Park (N.M.)'), +(8406, 'Space flight to the moon -- Fiction'), +(8407, 'Borgia, Cesare, 1476?-1507 -- Fiction'), +(8408, 'Roses -- Poetry'), +(8409, 'Judaism -- History -- To 70 A.D.'), +(8410, 'New England -- Social life and customs -- To 1775'), +(8411, 'Spanish prose literature'), +(8412, 'Whales -- Fiction'), +(8413, 'Chemistry, Technical'), +(8414, 'Coyote -- Control'), +(8415, 'Leiden (Netherlands) -- Description and travel'), +(8416, 'Prefaces'), +(8417, 'China -- Commerce -- Great Britain'), +(8418, 'Church work with loggers -- Minnesota'), +(8419, 'Folklore -- Spain -- Catalonia'), +(8420, 'Bonnefoux, Pierre-Marie-Joseph, baron de, 1782-1855'), +(8421, 'Triangles (Interpersonal relations) -- Drama'), +(8422, 'Opera -- New York (State) -- New York'), +(8423, 'United States Military Academy -- Juvenile fiction'), +(8424, 'Forging'), +(8425, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Illinois'), +(8426, 'Panizzi, Anthony, Sir, 1797-1879'), +(8427, 'Poor laws -- Great Britain'), +(8428, 'Naval education -- Great Britain'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(8429, 'Folklore -- Australia'), +(8430, 'Polish poetry -- Translations into English'), +(8431, 'Psychological warfare'), +(8432, 'Mojave Desert -- Description and travel'), +(8433, 'Alves Martins, António, 1808-1882'), +(8434, 'China -- History -- Spring and Autumn period, 722-481 B.C.'), +(8435, 'Fornaro, Carlo de, 1871-1949'), +(8436, 'Fairy tales -- Japan'), +(8437, 'Folk songs, French'), +(8438, 'Richardson, Samuel, 1689-1761 -- Parodies, imitations, etc.'), +(8439, 'Spain'), +(8440, 'Horror tales, American -- Translations into German'), +(8441, 'Legal stories, American'), +(8442, 'Reducing diets -- Fiction'), +(8443, 'Poor'), +(8444, 'Randolph-Macon College'), +(8445, 'Norway -- History -- 1030-1397'), +(8446, 'France -- History -- Louis Philippe, 1830-1848'), +(8447, 'Wills'), +(8448, 'United States -- Foreign relations -- China'), +(8449, 'Social ethics'), +(8450, 'Church history -- Juvenile literature'), +(8451, 'Valets -- Fiction'), +(8452, 'Ellwood, Thomas, 1639-1713'), +(8453, 'Prairie animals -- Juvenile fiction'), +(8454, 'Papacy -- History -- To 1309'), +(8455, 'Tasso, Torquato, 1544-1595 -- Drama'), +(8456, 'Scotland -- History -- 1660-1688 -- Fiction'), +(8457, 'Architecture, Medieval'), +(8458, 'Bible. Job'), +(8459, 'Iceboating -- Juvenile fiction'), +(8460, 'United States'), +(8461, 'Castles -- Juvenile fiction'), +(8462, 'Germany -- Social conditions'), +(8463, 'History -- Dictionaries'), +(8464, 'Computer programmers -- United States -- Biography'), +(8465, 'Tubman, Harriet, 1822-1913'), +(8466, 'Birmingham (England) -- History'), +(8467, 'York Minster'), +(8468, 'Sugar -- Juvenile literature'), +(8469, 'Fuseli, Henry, 1741-1825'), +(8470, 'Pioneers -- Ontario -- Biography'), +(8471, 'Natural disasters -- Fiction'), +(8472, 'Children\'s stories, German -- Translations into Finnish'), +(8473, 'Floods -- New Jersey -- Passaic River Valley'), +(8474, 'Europe -- History -- 1789-1900'), +(8475, 'Women -- Suffrage -- Philippines'), +(8476, 'Nicaragua -- Juvenile fiction'), +(8477, 'Mississippi River Valley -- Description and travel'), +(8478, 'Browning, Robert, 1812-1889 -- Criticism and interpretation'), +(8479, 'Women -- Great Britain -- History'), +(8480, 'Handel, George Frideric, 1685-1759'), +(8481, 'Pakkala, Teuvo, 1862-1925'), +(8482, 'Incubators (Pediatrics) -- Fiction'), +(8483, 'Piano -- Tuning'), +(8484, 'Mexican War, 1846-1848 -- Juvenile fiction'), +(8485, 'Vendetta -- Kentucky'), +(8486, 'Antirent War, N.Y., 1839-1846 -- Fiction'), +(8487, 'Bernoulli numbers'), +(8488, 'Nature -- Religious aspects'), +(8489, 'Sexual attraction -- Fiction'), +(8490, 'Riddles, German'), +(8491, 'Robbery -- Great Britain'), +(8492, 'World War, 1914-1918 -- Prisoners and prisons, Swiss'), +(8493, 'United States -- Politics and government -- 1857-1861'), +(8494, 'Jews -- Morocco -- Fiction'), +(8495, 'Magic -- History'), +(8496, 'Pony express'), +(8497, 'Headhunters -- Borneo -- Juvenile fiction'), +(8498, 'Trees -- West Virginia'), +(8499, 'Sales personnel -- Fiction'), +(8500, 'Children -- Italy -- Rome'), +(8501, 'Department stores -- Fiction'), +(8502, 'Gregory family'), +(8503, 'Pope, Alexander, 1688-1744'), +(8504, 'Germany -- Biography'), +(8505, 'Mammals'), +(8506, 'Natural history -- Dominica'), +(8507, 'Imaginary wars and battles'), +(8508, 'Girardin, Emile de, Mme, 1804-1855'), +(8509, 'Fifth Avenue (New York, N.Y.)'), +(8510, 'French fiction -- History and criticism'), +(8511, 'Ptychohyla'), +(8512, 'Antislavery movements -- Puerto Rico'), +(8513, 'Italy -- History -- 1849-1870 -- Sources'), +(8514, 'Women\'s rights -- United States -- History'), +(8515, 'Philippines -- History -- Sources'), +(8516, 'Deserts -- Fiction'), +(8517, 'Women -- United States -- Fiction'), +(8518, 'Sicily (Italy) -- Social life and customs'), +(8519, 'Alamo (San Antonio, Tex.) -- Siege, 1836 -- Fiction'), +(8520, 'Historic buildings -- New England'), +(8521, 'Sonora (Mexico : State) -- Description and travel'), +(8522, 'Crime -- Great Britain'), +(8523, 'Underwear -- Catalogs'), +(8524, 'Handicraft for boys'), +(8525, 'Taormina (Italy) -- Description and travel'), +(8526, 'Shore, Jane, -1527? -- Drama'), +(8527, 'Christmas cards'), +(8528, 'London Missionary Society -- Missions'), +(8529, 'Deaf -- Education -- United States'), +(8530, 'Salvation Army -- Doctrines'), +(8531, 'Exmouth, Edward Pellew, Viscount, 1757-1833'), +(8532, 'Miller, Hugh, 1802-1856 -- Knowledge and learning'), +(8533, 'Conophis'), +(8534, 'Furniture'), +(8535, 'Caricatures and cartoons -- Germany -- History -- 19th century'), +(8536, 'La Rochejaquelein, Marie-Louise-Victoire, marquise de, 1772-1857'), +(8537, 'Indian Ocean -- Fiction'), +(8538, 'Colonies -- Oceania -- Fiction'), +(8539, 'Marinetti, Filippo Tommaso, 1876-1944. Mafarka le futuriste'), +(8540, 'Carpentry'), +(8541, 'Lucian, of Samosata -- Translations into Finnish'), +(8542, 'Farms -- Recreational use -- United States -- Fiction'), +(8543, 'British -- Baluchistan -- Fiction'), +(8544, 'Philippine poetry (Spanish)'), +(8545, 'Greenhouses'), +(8546, 'Quevedo, Francisco de, 1580-1645 -- Drama'), +(8547, 'Oriental antiquities'), +(8548, 'Indian captivities -- Massachusetts'), +(8549, 'Church and state'), +(8550, 'Mattioli, Ercole Antonio, conte, 1640-1703'), +(8551, 'Alcoforado, Mariana, 1640-1723 -- Fiction'), +(8552, 'Interracial marriage -- Drama'), +(8553, 'Hazardous occupations'), +(8554, 'Grizzly bear -- Juvenile fiction'), +(8555, 'Art objects -- Nigeria -- Benin City -- Catalogs'), +(8556, 'Judaism -- Relations -- Christianity'), +(8557, 'Architecture, Domestic -- United States -- Designs and plans'), +(8558, 'Embroidered bindings (Bookbinding)'), +(8559, 'Cherry'), +(8560, 'Indians of Central America -- Panama'), +(8561, 'Truthfulness and falsehood'), +(8562, 'Children -- France -- Correspondence'), +(8563, 'American poetry -- African American authors'), +(8564, 'Standish, Myles, 1584?-1656'), +(8565, 'Truthfulness and falsehood -- Juvenile fiction'), +(8566, 'Tales -- India'), +(8567, 'Europe, Eastern -- Economic conditions -- 1989-'), +(8568, 'Colorado -- History'), +(8569, 'France -- Kings and rulers -- Biography'), +(8570, 'Northern Nut Growers Association -- Periodicals'), +(8571, 'Fugitive slaves -- Legal status, laws, etc. -- United States'), +(8572, 'Arranged marriage -- Drama'), +(8573, 'German language -- Grammar'), +(8574, 'Transatlantic flights -- Juvenile fiction'), +(8575, 'Pastoral fiction, French'), +(8576, 'United States -- History -- Civil War, 1861-1865 -- Veterans -- Fiction'), +(8577, 'Catiline, approximately 108 B.C.-62 B.C. -- Drama'), +(8578, 'Women capitalists and financiers -- Fiction'), +(8579, 'Robert I, Duke of Normandy, approximately 1010-1035 -- Romances'), +(8580, 'Germany -- Antiquities -- Periodicals'), +(8581, 'Love-letters -- Fiction'), +(8582, 'Classical dictionaries -- Dutch'), +(8583, 'Bookbinding -- Virginia -- Williamsburg'), +(8584, 'Song Taizu, Emperor of China, 927-976 -- Fiction'), +(8585, 'Danish fiction -- Translations into Hebrew'), +(8586, 'Minnesota -- History'), +(8587, 'Fishers -- Drama'), +(8588, 'Imaginary places -- Drawings'), +(8589, 'Merchant marine -- United States'), +(8590, 'Italian poetry -- 19th century -- History and criticism'), +(8591, 'Twins -- Fiction'), +(8592, 'Apologetics -- History -- 19th century'), +(8593, 'Slaves -- Indiana -- Social conditions'), +(8594, 'Julian, Emperor of Rome, 331-363'), +(8595, 'Poetry -- History and criticism'), +(8596, 'Bible. Samuel, 1st -- Commentaries'), +(8597, 'Evangelists -- Biography'), +(8598, 'Bible. John -- Commentaries'), +(8599, 'Turkey -- Social life and customs'), +(8600, 'Gardens'), +(8601, 'Christian Science -- Fiction'), +(8602, 'Prostitution -- California'), +(8603, 'English literature -- Early modern, 1500-1700'), +(8604, 'English letters'), +(8605, 'Conversion -- Christianity -- Juvenile fiction'), +(8606, 'Mercury (Planet) -- Fiction'), +(8607, 'Future life'), +(8608, 'Armistice Day -- Great Britain'), +(8609, 'Tobacco'), +(8610, 'Ingersoll, Robert Green, 1833-1899 -- Quotations'), +(8611, 'City and town life -- Juvenile fiction'), +(8612, 'Penn, William, 1644-1718'), +(8613, 'Tennessee, East -- Fiction'), +(8614, 'Secrets -- Fiction'), +(8615, 'Caves -- Juvenile fiction'), +(8616, 'Archery'), +(8617, 'National characteristics, English'), +(8618, 'Thermodynamics'), +(8619, 'English language -- Study and teaching -- Welsh speakers'), +(8620, 'Sculpture -- Italy -- History'), +(8621, 'Fireworks -- Early works to 1800'), +(8622, 'Journalism -- Anecdotes'), +(8623, 'Peak District (England) -- Description and travel'), +(8624, 'Sermons, English (Old)'), +(8625, 'Arizona -- Social life and customs -- Fiction'), +(8626, 'Demosthenes -- Translations into Finnish'), +(8627, 'Martyn, Henry, 1781-1812'), +(8628, 'Epic poetry, English (Old)'), +(8629, 'Harput (Turkey) -- Economic conditions -- 20th century'), +(8630, 'Battles -- Juvenile fiction'), +(8631, 'Eyck, Jan van, 1390-1440'), +(8632, 'Neuray, Fernand, 1874-1934 -- Travel -- Egypt'), +(8633, 'Mormon Church -- Poetry'), +(8634, 'Bosnia and Herzegovina -- Description and travel'), +(8635, 'Sociolinguistics'), +(8636, 'Amsterdam (Netherlands) -- Fiction'), +(8637, 'Accident victims -- Fiction'), +(8638, 'Poison sumac'), +(8639, 'Episcopal Church in Scotland -- Liturgy -- Texts'), +(8640, 'Iraq -- Drama'), +(8641, 'Belgium -- History -- German occupation, 1914-1918'), +(8642, 'Cats -- Juvenile poetry'), +(8643, 'Computers -- Slang -- Dictionaries'), +(8644, 'Women -- Japan -- Fiction'), +(8645, 'Art, Spanish -- Spain -- Alava (Province) -- Catalogs'), +(8646, 'El Paso County, Colo. -- History'), +(8647, 'Teeth -- Extraction'), +(8648, 'Children -- Portugal -- Juvenile literature'), +(8649, 'Theater -- England -- Early works to 1800'), +(8650, 'Mothers -- Great Britain -- Biography'), +(8651, 'Pipistrellus'), +(8652, 'Fort Edward (N.Y.) -- History -- Drama'), +(8653, 'Geology -- Wyoming -- Devils Tower National Monument'), +(8654, 'Steinmetz, Sebald Rudolf, 1862-1940'), +(8655, 'Southwest, New -- History -- Civil War, 1861-1865'), +(8656, 'Comparative linguistics'), +(8657, 'Wood rats'), +(8658, 'Farm life -- Canada -- Fiction'), +(8659, 'Physical sciences -- Juvenile literature'), +(8660, 'Corsica (France) -- Fiction'), +(8661, 'Ireland -- History -- 1837-1901'), +(8662, 'Andersen, H. C. (Hans Christian), 1805-1875'), +(8663, 'Alfred, King of England, 849-899 -- Fiction'), +(8664, 'Saving and investment -- Fiction'), +(8665, 'Bible -- Inspiration'), +(8666, 'Greece -- Politics and government'), +(8667, 'Worcester (Mass.)'), +(8668, 'Brontë, Charlotte, 1816-1855'), +(8669, 'Great Britain. Royal Navy -- History'), +(8670, 'English language -- Textbooks for foreign speakers -- Indic'), +(8671, 'Charities -- England -- London'), +(8672, 'Bonheur, Rosa, 1822-1899'), +(8673, 'Philippines -- History -- Revolution, 1896-1898'), +(8674, 'Dairying'), +(8675, 'Great Britain. Army. Queen\'s Own Corps of Guides (Lumsden\'s)'), +(8676, 'Biography -- Juvenile literature'), +(8677, 'Chekhov, Anton Pavlovich, 1860-1904 -- Notebooks, sketchbooks, etc.'), +(8678, 'Voyages and travels -- Early works to 1800'), +(8679, 'Kings and rulers -- Drama'), +(8680, 'Campbell, Thomas, 1777-1844'), +(8681, 'Casentino (Italy) -- Description and travel'), +(8682, 'Mission San Antonio de Pala'), +(8683, 'Oxley, John, 1783-1828'), +(8684, 'Hoisting machinery'), +(8685, 'Catholic Church -- Catechisms -- English'), +(8686, 'London (England) -- History -- 18th century'), +(8687, 'West Indies -- Juvenile fiction'), +(8688, 'Generals -- Great Britain -- Biography'), +(8689, 'Davis, Charles G. (Charles Gideon), 1820-1903 -- Trials, litigation, etc.'), +(8690, 'Lee, Robert E. (Robert Edward), 1843-1914'), +(8691, 'Gordon, Adam Lindsay, 1833-1870'), +(8692, 'Wallace, William, Sir, -1305'), +(8693, 'Arabian Peninsula -- Fiction'), +(8694, 'Jacquerie, 1358 -- Fiction'), +(8695, 'Big business -- United States -- History'), +(8696, 'Darboux, Gaston, 1842-1917'), +(8697, 'Myhrberg, August Maximilian, 1797-1867'), +(8698, 'Novelists'), +(8699, 'Germany. Kriegsmarine'), +(8700, 'Rivers -- Juvenile literature'), +(8701, 'Cossacks -- Fiction'), +(8702, 'Zeebrugge-Ostend Raids, 1918 -- Juvenile fiction'), +(8703, 'Iron industry and trade -- England'), +(8704, 'Cathedrals -- Spain'), +(8705, 'Poisonous arthropoda -- Handbooks, manuals, etc.'), +(8706, 'Etiquette for men'), +(8707, 'Fantasy fiction, American -- Translations into French'), +(8708, 'Solitaire (Game)'), +(8709, 'Composers -- Austria -- Biography -- Juvenile literature'), +(8710, 'Hunting -- Great Britain'), +(8711, 'Soviet Union -- Fiction'), +(8712, 'Nevis -- Fiction'), +(8713, 'United States -- Foreign relations -- 2001-'), +(8714, 'Cervantes Saavedra, Miguel de, 1547-1616 -- Translations into English'), +(8715, 'Henry, VIII, King of England, 1491-1547 -- Drama'), +(8716, 'Household employees -- Juvenile fiction'), +(8717, 'Genealogy -- Periodicals'), +(8718, 'World War, 1914-1918 -- Prisoners and prisons, Turkish'), +(8719, 'Louis Philippe, King of the French, 1773-1850'), +(8720, 'Young women -- Conduct of life'), +(8721, 'Child abuse -- Great Britain'), +(8722, 'Congregationalism -- History'), +(8723, 'Dogs -- Training'), +(8724, 'California -- Biography'), +(8725, 'Jesus Christ -- Significance'), +(8726, 'Drinking of alcoholic beverages -- Great Britain'), +(8727, 'Clocks and watches'), +(8728, 'Sophonisba, -203 B.C. -- Drama'), +(8729, 'Surrey (England) -- Fiction'), +(8730, 'France -- Social life and customs -- 19th century'), +(8731, 'Health -- Popular works'), +(8732, 'Vermont -- Description and travel -- Juvenile literature'), +(8733, 'Paul, the Apostle, Saint'), +(8734, 'Canada'), +(8735, 'Monograms'), +(8736, 'Washington (D.C.) -- History -- Capture by the British, 1814'), +(8737, 'Motion pictures -- Periodicals'), +(8738, 'Saint-Saëns, Camille, 1835-1921'), +(8739, 'Southwest, Old -- Social life and customs'), +(8740, 'Saint Lawrence River Valley -- Fiction'), +(8741, 'Bible. Corinthians, 1st'), +(8742, 'Journalists -- 19th century -- Fiction'), +(8743, 'Obesity'), +(8744, 'Dime novels -- Periodicals'), +(8745, 'Blacks -- South Africa'), +(8746, 'Greek poetry, Modern'), +(8747, 'Hudson Bay Region -- Fiction'), +(8748, 'Southern States -- Juvenile fiction'), +(8749, 'Hickok, Wild Bill, 1837-1876'), +(8750, 'Crane, William E. (William Edmund)'), +(8751, 'Spiritualism -- Drama'), +(8752, 'Fables, Spanish -- Translations into English'), +(8753, 'Coffee'), +(8754, 'Children -- France -- Juvenile literature'), +(8755, 'Rio de Janeiro (Brazil) -- Description and travel'), +(8756, 'Esperanto fiction'), +(8757, 'United States. Congress'), +(8758, 'Melons'), +(8759, 'Fossils'), +(8760, 'Artists -- Baltic States -- Dictionaries'), +(8761, 'Great Britain -- History, Naval'), +(8762, 'Motion pictures -- Reviews'), +(8763, 'Horace -- Influence'), +(8764, 'Animals -- Pictorial work'), +(8765, 'Authors, English -- Biography'), +(8766, 'Automobile travel -- Juvenile fiction'), +(8767, 'Saxon Switzerland (Germany) -- Description and travel'), +(8768, 'Farm produce -- Marketing -- Statistics -- Periodicals'), +(8769, 'Loève-Veimars, Elisa, 1805-1875'), +(8770, 'Legends -- Switzerland -- Juvenile literature'), +(8771, 'Animals -- Folklore'), +(8772, 'Plants -- Germany -- Identification'), +(8773, 'Otters -- Fiction'), +(8774, 'French language -- Dictionaries'), +(8775, 'Art and science'), +(8776, 'Sunday'), +(8777, 'Bible. James -- Commentaries'), +(8778, 'Florida -- History -- To 1565'), +(8779, 'Television programs -- Fiction'), +(8780, 'Obedience -- Juvenile fiction'), +(8781, 'Bible. Joshua -- Commentaries'), +(8782, 'United States. Navy -- Medals, badges, decorations, etc.'), +(8783, 'National characteristics, Chinese'), +(8784, 'Secession'), +(8785, 'Brothers -- Drama'), +(8786, 'Diakos, Athanases, approximately 1788-1821 -- Poetry'), +(8787, 'Austria -- Politics and government -- Fiction'), +(8788, 'Equality -- Fiction'), +(8789, 'Language and languages -- Philosophy'), +(8790, 'Education -- Early works to 1800'), +(8791, 'Scottish literature'), +(8792, 'Prayers'), +(8793, 'Historic buildings -- Virginia -- Loudoun County'), +(8794, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Missouri'), +(8795, 'Aristophanes'), +(8796, 'Stock exchanges -- Great Britain'), +(8797, 'Mathematical recreations'), +(8798, 'Railroad trains -- Dispatching'), +(8799, 'Alexandria (Egypt) -- History -- Bombardment, 1882 -- Juvenile fiction'), +(8800, 'Great Britain -- Social life and customs -- 18th century'), +(8801, 'Albert, Lake (Congo and Uganda)'), +(8802, 'Peasants -- Switzerland'), +(8803, 'Dickens, Charles, 1812-1870 -- Characters -- Boys'), +(8804, 'Mounds -- United States'), +(8805, 'United States. Army. Corps of Engineers'), +(8806, 'Missionaries -- United States -- Biography'), +(8807, 'Huguenots -- France -- Nîmes'), +(8808, 'Bronze age -- Ireland'), +(8809, 'Church of England -- Clergy -- Correspondence'), +(8810, 'Strindberg, August, 1849-1912'), +(8811, 'Iran -- Foreign relations -- Italy -- Venice'), +(8812, 'Bible. Hebrews -- Commentaries'), +(8813, 'Plants -- Faroe Islands'), +(8814, 'New York Stock Exchange'), +(8815, 'Scotland -- Church history -- 16th century'), +(8816, 'Prisoner-of-war escapes'), +(8817, 'Fort Garland (Colo.) -- History -- Fiction'), +(8818, 'Zoologists'), +(8819, 'Hysteria'), +(8820, 'Aeronautics -- Fiction'), +(8821, 'Mythology, Classical -- Juvenile literature'), +(8822, 'Steam-pipes'), +(8823, 'Pantheism'), +(8824, 'Hearn, Lafcadio, 1850-1904 -- Correspondence'), +(8825, 'Hallam, Arthur Henry, 1811-1833 -- In literature'), +(8826, 'Estonian drama'), +(8827, 'Education -- United States'), +(8828, 'Elegiac poetry, Italian'), +(8829, 'New York (State) -- History -- Civil War, 1861-1865 -- Fiction'), +(8830, 'Gunpowder Plot, 1605 -- Juvenile fiction'), +(8831, 'United States -- History -- 1783-1865'), +(8832, 'Philippines -- Biography'), +(8833, 'Songbooks'), +(8834, 'Gran Chaco -- Bibliography'), +(8835, 'Judas Iscariot -- Poetry'), +(8836, 'Upper class -- England -- Fiction'), +(8837, 'Caribou -- Nunavut -- Keewatin'), +(8838, 'Miracles -- Fiction'), +(8839, 'Spanish drama -- History and criticism'), +(8840, 'Soldiers -- Juvenile literature'), +(8841, 'Proofreading'), +(8842, 'History -- Juvenile literature'), +(8843, 'Van Orsdel, W. W. (William Wesley), 1848-1919'), +(8844, 'Mines and mineral resources -- Colorado -- Fiction'), +(8845, 'Great Britain -- History -- Edward IV, 1461-1483'), +(8846, 'Barton, Clara, 1821-1912'), +(8847, 'Ladysmith (South Africa) -- History -- Siege, 1899-1900'), +(8848, 'Hebrew literature -- Translations into English'), +(8849, 'Missionaries'), +(8850, 'General strikes'), +(8851, 'Polyeuctus, Saint, -approximately 259 -- Drama'), +(8852, 'Puns and punning'), +(8853, 'Sales personnel -- Clothing and dress'), +(8854, 'Great Britain -- History -- 19th century -- Juvenile fiction'), +(8855, 'Castles -- Fiction'), +(8856, 'Deaf'), +(8857, 'Architectural drawing'), +(8858, 'Abbesses, Christian -- France -- Correspondence'), +(8859, 'Slavery -- Kansas'), +(8860, 'Fairy poetry, Scottish'), +(8861, 'Busbecq, Ogier Ghislain de, 1522-1592'), +(8862, 'Great Britain -- Politics and government -- 19th century -- Fiction'), +(8863, 'Kensington Gardens (London, England) -- Fiction'), +(8864, 'Adventure and adventurers'), +(8865, 'United States -- Armed Forces -- Officers\' handbooks'), +(8866, 'Rivers -- Canada'), +(8867, 'San Francisco (Calif.) -- History'), +(8868, 'Byzantine Empire -- History -- Heraclius, 610-641'), +(8869, 'Women -- Ireland -- Fiction'), +(8870, 'France. Armée -- Military life -- Fiction'), +(8871, 'Berries'), +(8872, 'Andes -- Juvenile fiction'), +(8873, 'Epic poetry, Serbian -- Translations into French'), +(8874, 'Philadelphia (Pa.) -- Fiction'), +(8875, 'Bible -- Study and teaching -- Fiction'), +(8876, 'Hymns, English'), +(8877, 'Canadian poetry -- Indian authors'), +(8878, 'Cameras -- Catalogs'), +(8879, 'Popular music -- 1901-1910'), +(8880, 'Social change -- Fiction'), +(8881, 'Cattle stealing -- Juvenile fiction'), +(8882, 'Geography, Ancient -- Maps'), +(8883, 'American prose literature'), +(8884, 'English literature -- 18th century -- Bibliography'), +(8885, 'Mountain Meadows Massacre, Utah, 1857'), +(8886, 'Demonology -- Early works to 1800'), +(8887, 'Rain and rainfall'), +(8888, 'Popular music -- 1961-1970'), +(8889, 'Great Britain. Army. King\'s Own Royal Regiment (Lancaster)'), +(8890, 'Provençal poetry -- History and criticism'), +(8891, 'Higgins, Francis Edmund, 1865-1915'), +(8892, 'Utilitarianism -- Fiction'), +(8893, 'Richter, Ludwig, 1803-1884'), +(8894, 'Sudan -- Description and travel'), +(8895, 'Hals, Frans, 1584-1666'), +(8896, 'Brahms, Johannes, 1833-1897'), +(8897, 'Electricity -- Juvenile literature'), +(8898, 'Eugene, of Savoy, Prince of Savoy, 1663-1736 -- Fiction'), +(8899, 'Chaucer, Geoffrey, -1400 -- Knowledge -- Astronomy'), +(8900, 'Norwegian fiction'), +(8901, 'Sierra Nevada (Calif. and Nev.) -- Fiction'), +(8902, 'Florida -- History -- To 1821'), +(8903, 'United Empire loyalists -- Fiction'), +(8904, 'Hungary -- Fiction'), +(8905, 'Crandall, Reuben, 1805?-1838 -- Trials, litigation, etc.'), +(8906, 'Emperors -- Rome -- Biography'), +(8907, 'Neurasthenia'), +(8908, 'Giggleswick School (Giggleswick, England) -- History'), +(8909, 'Rescues -- Fiction'), +(8910, 'Prussia (Germany) -- History -- 1640-1740 -- Fiction'), +(8911, 'Ballets -- Librettos'), +(8912, 'Fort Gibson (Okla.) -- History'), +(8913, 'Physicians -- Scotland -- Biography'), +(8914, 'Pikes Peak (Colo.) -- Fiction'), +(8915, 'Wisconsin -- History'), +(8916, 'Cooking, Canadian'), +(8917, 'Bible. Matthew -- Criticism, interpretation, etc.'), +(8918, 'Poets, English -- Biography -- Early works to 1800'), +(8919, 'Europe, Eastern -- Fiction'), +(8920, 'Italy -- History -- 1789-1870'), +(8921, 'Grain elevators -- Design and construction -- Fiction'), +(8922, 'Euthanasia of animals -- Juvenile literature'), +(8923, 'Antarctica -- Discovery and exploration -- Fiction'), +(8924, 'Loughton (Essex, England) -- History'), +(8925, 'Coming of age -- Juvenile fiction'), +(8926, 'Bell vireo'), +(8927, 'Novelists, French -- 19th century -- Diaries'), +(8928, 'Shells -- New Zealand'), +(8929, 'Manx poetry (English)'), +(8930, 'World War, 1914-1918 -- Hospitals'), +(8931, 'Carthach, Saint, Bishop of Lismore, fl. 570-637 -- Legends'), +(8932, 'Hydrostatics'), +(8933, 'Maine -- Description and travel'), +(8934, 'Strikes and lockouts -- Fiction'), +(8935, 'Microscopes -- Catalogs'), +(8936, 'Actors'), +(8937, 'Medicine -- Netherlands -- History'), +(8938, 'Suicide -- Drama'), +(8939, 'Baccalaureate addresses -- General Society of Mechanics and Tradesmen of the City of New York'), +(8940, 'Rabbits -- Juvenile poetry'), +(8941, 'Drake, Francis, approximately 1540-1596 -- Fiction'), +(8942, 'Indian baskets -- Connecticut'), +(8943, 'World maps'), +(8944, 'Portuguese literature -- 20th century'), +(8945, 'Gettysburg, Battle of, Gettysburg, Pa., 1863'), +(8946, 'Bahai Faith -- Prayers and devotions'), +(8947, 'Russia -- History -- 1801-1917'), +(8948, 'Baptists -- Missions'), +(8949, 'Advent -- Meditations'), +(8950, 'Great Britain -- Church history -- To 449'), +(8951, 'Dry Tortugas National Park (Fla.)'), +(8952, 'Bible. New Testament -- Introductions'), +(8953, 'Dye plants'), +(8954, 'Edward, Thomas, 1814-1886'), +(8955, 'Walther, von der Vogelweide, active 12th century'), +(8956, 'English prose literature'), +(8957, 'Orthopedics'), +(8958, 'Tennessee -- Antiquities'), +(8959, 'Cassell & Company -- Catalogs'), +(8960, 'Plant diseases'), +(8961, 'Natural history -- Lapland'), +(8962, 'Criminals -- England -- London'), +(8963, 'Conservationists -- United States -- Biography'), +(8964, 'Baseball players -- Juvenile fiction'), +(8965, 'American essays -- 20th century'), +(8966, 'Latin letters -- Translations into English'), +(8967, 'Spencer, Herbert, 1820-1903. Data of ethics'), +(8968, 'Methodists -- Fiction'), +(8969, 'Singing -- Instruction and study'), +(8970, 'United States. Army -- Non-commissioned officers\' handbooks'), +(8971, 'Barbershop quartets'), +(8972, 'Portugal -- History -- Afonso III, 1248-1279'), +(8973, 'Juan, Don (Legendary character) -- Poetry'), +(8974, 'Goncourt, Edmond de, 1822-1896 -- Diaries'), +(8975, 'Astronomers -- Poetry'), +(8976, 'English literature -- First editions -- Bibliography -- Catalogs'), +(8977, 'Authors, Scottish -- 19th century -- Correspondence'), +(8978, 'Sewage disposal'), +(8979, 'Conduct of life -- Early works to 1800'), +(8980, 'Puerto Rico -- Politics and government -- To 1898'), +(8981, 'Justices of the peace -- Fiction'), +(8982, 'Eskimos'), +(8983, 'Americans -- Belgium -- Juvenile fiction'), +(8984, 'Mythology, Celtic -- Fiction'), +(8985, 'United States -- History, Military -- To 1900'), +(8986, 'Marriage proposals -- Drama'), +(8987, 'Teasing -- Juvenile fiction'), +(8988, 'Pottery -- England -- Devon'), +(8989, 'Geneva, Lake (Switzerland and France)'), +(8990, 'Jesus Christ -- Person and offices'), +(8991, 'Animals -- Great Britain -- Fiction'), +(8992, 'World War, 1914-1918 -- Religious aspects'), +(8993, 'Sorel, Agnès, approximately 1422-1450 -- Fiction'), +(8994, 'Latin language -- Terms and phrases'), +(8995, 'Navies'), +(8996, 'Soldiers\' National Cemetery (Gettysburg, Pa.)'), +(8997, 'Gauss, Carl Friedrich, 1777-1855'), +(8998, 'African Americans -- Juvenile fiction'), +(8999, 'Megalithic monuments'), +(9000, 'Humboldt, Alexander von, 1769-1859 -- Travel -- South America'), +(9001, 'Christian life -- Periodicals'), +(9002, 'Ciphers'), +(9003, 'Genoa (Italy) -- Fiction'), +(9004, 'Dante Alighieri, 1265-1321 -- Criticism and interpretation'), +(9005, 'Home economics -- Periodicals'), +(9006, 'Tromp, Maarten Harpertsz., 1598-1653'), +(9007, 'Finland -- History -- Civil War, 1918 -- Fiction'), +(9008, 'Latin language -- Pronunciation'), +(9009, 'Tactics'), +(9010, 'Spies'), +(9011, 'World War, 1914-1918 -- Campaigns -- Poland'), +(9012, 'London (England) -- Social life and customs'), +(9013, 'Selfishness -- Juvenile fiction'), +(9014, 'Rome -- Biography'), +(9015, 'Memphis (Tenn.) -- Fiction'), +(9016, 'Rattazzi, Marie, 1833-1902'), +(9017, 'Wood-carving -- Juvenile fiction'), +(9018, 'Palmistry -- India'), +(9019, 'Spanish literature -- Translations into English'), +(9020, 'West (U.S.) -- Pictorial works'), +(9021, 'Pimlico (London, England) -- Fiction'), +(9022, 'Boston (Mass.) -- Juvenile fiction'), +(9023, 'Clancarty, Donogh MacCarty, Earl of, 1667 or 1668-1734 -- Fiction'), +(9024, 'Puerto Rico -- Economic conditions'), +(9025, 'Spanish language -- Dictionaries -- Bagobo'), +(9026, 'New England -- Description and travel -- Juvenile fiction'), +(9027, 'Assyro-Babylonian religion'), +(9028, 'Russia -- History -- December Uprising, 1825 -- Fiction'), +(9029, 'Young men -- Conduct of life'), +(9030, 'Postal savings banks -- Great Britain'), +(9031, 'Maluku (Indonesia) -- History'), +(9032, 'Geometry -- History'), +(9033, 'Hamsun, Knut, 1859-1952'), +(9034, 'Phallicism'), +(9035, 'Pirates -- China'), +(9036, 'United States. Army. Massachusetts Infantry Regiment, 36th (1862-1865)'), +(9037, 'Franklin, Benjamin, 1706-1790 -- Correspondence'), +(9038, 'Military art and science -- Rome -- Early works to 1800'), +(9039, 'Africa, East -- Description and travel'), +(9040, 'Glass painting and staining'), +(9041, 'California -- History -- To 1846 -- Fiction'), +(9042, 'Natural history -- Montana -- Glacier National Park (Mont.)'), +(9043, 'Admirals -- Great Britain -- Biography -- Early works to 1800'), +(9044, 'Women -- Education -- Fiction'), +(9045, 'Religion -- Biography'), +(9046, 'William I, King of England, 1027 or 8-1087 -- Drama'), +(9047, 'Birds -- Nests'), +(9048, 'Lucerne (Switzerland) -- Description and travel'), +(9049, 'Tipping'), +(9050, 'Great Britain -- History -- Richard II, 1377-1399'), +(9051, 'Spiritual life -- Christianity -- Early works to 1800'), +(9052, 'Locks and keys'), +(9053, 'Africa -- Discovery and exploration'), +(9054, 'Forbes Expedition against Fort Duquesne, Pa., 1758 -- Juvenile fiction'), +(9055, 'Charters'), +(9056, 'Tea -- United States'), +(9057, 'Proverbs, Serbian'), +(9058, 'Yogananda, Paramahansa, 1893-1952'), +(9059, 'Ruskin, John, 1819-1900 -- Correspondence'), +(9060, 'Dickens, Charles, 1812-1870 -- Illustrations'), +(9061, 'Naples (Kingdom) -- Politics and government'), +(9062, 'West Indies -- History'), +(9063, 'Volcanoes'), +(9064, 'Indian textile fabrics -- Peru'), +(9065, 'Tagalog drama'), +(9066, 'Inheritance and succession -- Juvenile fiction'), +(9067, 'Songs, English -- England -- Yorkshire -- Texts'), +(9068, 'Staffs (Sticks, canes, etc.) -- Juvenile fiction'), +(9069, 'Bible. Peter -- Criticism, interpretation, etc.'), +(9070, 'United States -- History -- 1789-1801'), +(9071, 'Great Britain -- Court and courtiers -- History -- 19th century'), +(9072, 'Church and state -- Byzantine Empire'), +(9073, 'Cooking, Dutch'), +(9074, 'Great Britain. Parliament. House of Commons -- History -- 18th century'), +(9075, 'Virgin birth'), +(9076, 'Retief (Fictitious character) -- Fiction'), +(9077, 'Anarchists'), +(9078, 'Fishes -- Kansas'), +(9079, 'Shakespeare, William, 1564-1616 -- Translations into Spanish'), +(9080, 'Europe -- Social conditions -- 19th century -- Drama'), +(9081, 'Tyre (Lebanon) -- Drama'), +(9082, 'Internationale Koloniale en Uitvoerhandel Tentoonstelling (1883 : Amsterdam, Netherlands) -- Humor'), +(9083, 'Moulton, Louise Chandler, 1835-1908'), +(9084, 'Aristophanes -- Translations into English'), +(9085, 'Wales -- History'), +(9086, 'Brouwer, P. A. S. van Limburg (Petrus Abraham Samuel van Limburg), 1829-1873'), +(9087, 'Inland navigation -- Great Britain'), +(9088, 'Ships -- Electric equipment'), +(9089, 'Baths, Turkish'), +(9090, 'Netherlands -- History -- 1648-1714'), +(9091, 'Naval strategy'), +(9092, 'Travel -- Guidebooks'), +(9093, 'Sea songs'), +(9094, 'London (England) -- Maps -- Early works to 1800'), +(9095, 'Prospecting -- Juvenile fiction'), +(9096, 'Latin language -- Readers -- Poetry'), +(9097, 'Newspapers -- Directories'), +(9098, 'Penobscot Indians -- Folklore'), +(9099, 'Atlantis (Legendary place) -- Juvenile fiction'), +(9100, 'Howard, Bronson, 1842-1908. Banker\'s daughter'), +(9101, 'Canadian Rockies (B.C. and Alta.) -- Pictorial works'), +(9102, 'Dartmoor (England)'), +(9103, 'Finland -- History -- Revolution, 1917-1918 -- Fiction'), +(9104, 'Classical antiquities'), +(9105, 'Scotland -- Description and travel -- Early works to 1800'), +(9106, 'Canoes and canoeing -- Juvenile fiction'), +(9107, 'Procter, John, 1632-1692'), +(9108, 'Dogs -- Humor'), +(9109, 'Libraries -- Iraq -- Nineveh (Extinct city)'), +(9110, 'Seabury, Samuel, 1729-1796'), +(9111, 'Peach'), +(9112, 'Group theory'), +(9113, 'Family -- Fiction'), +(9114, 'Bronze'), +(9115, 'Cries -- England -- London'), +(9116, 'Prisoners of war -- United States -- Biography'), +(9117, 'Slavery -- Sahara -- Fiction'), +(9118, 'Gas-burners'), +(9119, 'Shetland pony'), +(9120, 'Halifax (N.S.) -- Fiction'), +(9121, 'Wright, Silas, 1795-1847 -- Fiction'), +(9122, 'United States. Army. New York Infantry Regiment, 50th (1861)'), +(9123, 'Iroquois Indians -- Folklore'), +(9124, 'Bees -- Folklore'), +(9125, 'Slaves -- Arkansas -- Social conditions'), +(9126, 'Afghan War, 2001-'), +(9127, 'New York (N.Y.) -- History -- 19th century -- Juvenile fiction'), +(9128, 'Great Britain -- History -- Roman period, 55 B.C.-449 A.D. -- Juvenile fiction'), +(9129, 'Railroads -- Fiction'), +(9130, 'Purgatory'), +(9131, 'Conference on the Limitation of Armament (1921-1922 : Washington, D.C.)'), +(9132, 'Children -- Romania -- Juvenile literature'), +(9133, 'Railroads -- United States -- Periodicals'), +(9134, 'British -- Italy -- Fiction'), +(9135, 'Iron mines and mining -- Juvenile fiction'), +(9136, 'Wagon trains -- Fiction'), +(9137, 'Witchcraft -- Great Britain'), +(9138, 'United States Steel Corporation'), +(9139, 'Damrosch, Walter, 1862-1950'), +(9140, 'Prostitution -- Netherlands'), +(9141, 'Georgetown (Washington, D.C.) -- History'), +(9142, 'Leisure class'), +(9143, 'Irish literature -- History and criticism'), +(9144, 'Tea -- China -- History'), +(9145, 'Electrons'), +(9146, 'Children -- Humor'), +(9147, 'Villon, François, 1431-1463 -- Fiction'), +(9148, 'Guano'), +(9149, 'Madden, Edward, 1850 or 1851-1874'), +(9150, 'Manet, Édouard, 1832-1883'), +(9151, 'Spanish-American War, 1898 -- Regimental histories -- United States'), +(9152, 'Etiquette for children and teenagers'), +(9153, 'Maxims, Portuguese'), +(9154, 'Psichari, Ernest, 1883-1914'), +(9155, 'Science -- China -- History'), +(9156, 'Old-time music'), +(9157, 'Loti, Pierre, 1850-1923 -- Travel -- Jerusalem'), +(9158, 'Hampton Court (Richmond upon Thames, London, England)'), +(9159, 'Psychiatric hospital care -- North Carolina'), +(9160, 'David, Jacques Louis, 1748-1825'), +(9161, 'Frontier and pioneer life'), +(9162, 'Rainier, Mount (Wash.)'), +(9163, 'Ajax (Greek mythological figure) -- Drama'), +(9164, 'Lighthouse keepers -- Juvenile fiction'), +(9165, 'Pessimism'), +(9166, 'Bible. Psalms -- Criticism, interpretation, etc.'), +(9167, 'Indians of Mexico -- Social life and customs'), +(9168, 'Lassen Volcanic National Park (Calif.)'), +(9169, 'Vermont -- History -- Revolution, 1775-1783 -- Fiction'), +(9170, 'Pontiac\'s Conspiracy, 1763-1765 -- Drama'), +(9171, 'Mountaineering -- Alaska -- McKinley, Mount'), +(9172, 'Scotland -- Juvenile fiction'), +(9173, 'Man-woman relationships -- Religious aspects -- Fiction'), +(9174, 'Admirals -- Great Britain'), +(9175, 'Lord\'s prayer'), +(9176, 'Frontier and pioneer life -- Middle West'), +(9177, 'Social classes -- United States -- Fiction'), +(9178, 'Agriculture -- Philippines -- Periodicals'), +(9179, 'Bjørnson, Bjørnstjerne, 1832-1910 -- Translations into Finnish'), +(9180, 'Prophets -- Germany -- Rhineland'), +(9181, 'Nervous system -- Hygiene'), +(9182, 'Cambridgeshire (England) -- Description and travel'), +(9183, 'Embroidery'), +(9184, 'Intestines -- Diseases'), +(9185, 'Indian land transfers -- Indiana'), +(9186, 'Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707'), +(9187, 'Moore, Thomas, 1779-1852'), +(9188, 'Great Britain -- History -- James I, 1603-1625'), +(9189, 'Bedbugs'), +(9190, 'Interstellar travel -- Fiction'), +(9191, 'Violinists -- Fiction'), +(9192, 'Safroni-Middleton, A. (Arnold), 1873-1950'), +(9193, 'Parks -- France'), +(9194, 'Moran, Edward, 1829-1901'), +(9195, 'United States -- History -- Revolution, 1775-1783 -- Participation, German'), +(9196, 'Everest, Mount (China and Nepal)'), +(9197, 'Revolutionaries -- Canada -- Biography'), +(9198, 'Fables, Polish'), +(9199, 'Rare books -- France -- Bibliography'), +(9200, 'Women sales personnel -- Fiction'), +(9201, 'Merchant marine -- United States -- History'), +(9202, 'Majolica'), +(9203, 'Musicals -- Librettos -- Parodies, imitations, etc.'), +(9204, 'Goths -- Italy'), +(9205, 'Nares, George S. (George Strong), 1831-1915'), +(9206, 'Young men -- Juvenile fiction'), +(9207, 'Bach, Johann Sebastian, 1685-1750 -- Juvenile literature'), +(9208, 'Oklahoma -- Poetry'), +(9209, 'Bushrangers -- Australia -- Fiction'), +(9210, 'Australia -- Poetry'), +(9211, 'Leech, John, 1817-1864'), +(9212, 'Celebes (Indonesia) -- Description and travel'), +(9213, 'Egyptologists -- Fiction'), +(9214, 'Kolb, Annette, 1870-1967'), +(9215, 'Bankruptcy -- Fiction'), +(9216, 'Golf -- Juvenile fiction'), +(9217, 'Latin language -- Readers -- Biography'), +(9218, 'Irish-American wit and humor'), +(9219, 'Trojan War'), +(9220, 'Granada (Spain : Reino) -- History -- Spanish Conquest, 1476-1492'), +(9221, 'Mogul Empire -- Fiction'), +(9222, 'France -- History -- February Revolution, 1848'), +(9223, 'Altruism -- Juvenile fiction'), +(9224, 'Empathy'), +(9225, 'Mammals -- China'), +(9226, 'Spanish-American War, 1898 -- Campaigns -- Cuba -- Juvenile Fiction'), +(9227, 'Finnish Americans -- Fiction'), +(9228, 'Jackson, John Baptist, 1701-1780?'), +(9229, 'Richard III, King of England, 1452-1485'), +(9230, 'Congregational churches -- Sermons -- Early works to 1800'), +(9231, 'Sermons, English -- 17th century'), +(9232, 'South African poetry (English)'), +(9233, 'Women -- Employment -- Canada'), +(9234, 'John III, King of Sweden, 1537-1592 -- Fiction'), +(9235, 'New York (State) -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(9236, 'Universalism'), +(9237, 'Seduction -- Fiction'), +(9238, 'Australia -- Social life and customs -- Fiction'), +(9239, 'Weapons'), +(9240, 'Oceania -- Discovery and exploration -- Early works to 1800'), +(9241, 'Strauss, Richard, 1864-1949'), +(9242, 'Privateering -- Fiction'), +(9243, 'Brown, Bunny (Fictitious character) -- Juvenile fiction'), +(9244, 'Bank robberies -- Minnesota -- Northfield'), +(9245, 'Variables (Mathematics)'), +(9246, 'Tyrol (Austria) -- History'), +(9247, 'Conrad, Joseph, 1857-1924 -- Criticism and interpretation'), +(9248, 'Northwest, Old -- History -- 1775-1865'), +(9249, 'Middle class -- France -- History -- 19th century -- Fiction'), +(9250, 'Indians of North America -- Southwest, New'), +(9251, 'Magyars'), +(9252, 'Hay fever'), +(9253, 'France -- History -- Revolution, 1789-1799 -- Sources'), +(9254, 'Georgia -- Social life and customs -- Fiction'), +(9255, 'Athens (Greece) -- Politics and government -- Early works to 1800'), +(9256, 'Church architecture -- Great Britain'), +(9257, 'South Africa -- Politics and government'), +(9258, 'Haydn, Joseph, 1732-1809 -- Juvenile literature'), +(9259, 'Missionaries, Medical -- Gabon -- Biography'), +(9260, 'Political ethics -- Early works to 1800'), +(9261, 'Revolutionaries -- Fiction'), +(9262, 'Stoughton, John, 1807-1897'), +(9263, 'Kumaun (India) -- Fiction'), +(9264, 'Yosemite National Park (Calif.)'), +(9265, 'Finnish periodicals'), +(9266, 'Talon, Jean, comte d\'Orsainville, 1625?-1694'), +(9267, 'Shakespeare, William, 1564-1616 -- Fiction'), +(9268, 'New York (N.Y.) -- Social life and customs -- 20th century -- Fiction'), +(9269, 'Heroes -- Ulster (Northern Ireland and Ireland) -- Legends'), +(9270, 'Euclid\'s Elements'), +(9271, 'Benson family'), +(9272, 'Portugal -- History -- To 1385'), +(9273, 'Tuzigoot National Monument (Ariz.) -- Problems and exercises -- Juvenile literature'), +(9274, 'Indians of North America -- Portraits -- Catalogs'), +(9275, 'Africa, North -- History -- 647-1517 -- Fiction'), +(9276, 'United States -- Economic conditions -- 1865-1918'), +(9277, 'Boston (Mass.) -- History -- Revolution, 1775-1783 -- Fiction'), +(9278, 'Chronometers -- Early works to 1800'), +(9279, 'Young, Egerton Ryerson, 1840-1909 -- Travel -- Northwest, Canadian'), +(9280, 'United States. Army. Infantry Division, 4th'), +(9281, 'Hyla'), +(9282, 'Constitutional history -- France'), +(9283, 'Furniture -- History'), +(9284, 'Cinchona'), +(9285, 'Plants -- Early works to 1800'), +(9286, 'Cyprus -- History'), +(9287, 'Patrick, Saint, 373?-463? -- Drama'), +(9288, 'United States -- Social life and customs -- 19th century'), +(9289, 'Algonquian Indians -- Folklore'), +(9290, 'Kemp, Harry, 1883-1960'), +(9291, 'New York (N.Y.) -- Description and travel -- Juvenile fiction'), +(9292, 'Concerti grossi'), +(9293, 'Russia'), +(9294, 'Assassins -- Fiction'), +(9295, 'French language -- Study and teaching -- Bibliography'), +(9296, 'Band music'), +(9297, 'South Dakota -- Biography'), +(9298, 'English language -- Orthography and spelling'), +(9299, 'Musical form'), +(9300, 'Heine, Heinrich, 1797-1856'), +(9301, 'Greuze, Jean-Baptiste, 1725-1805'), +(9302, 'Osborne, Edward, 1530?-1591 -- Fiction'), +(9303, 'Bible -- Introductions'), +(9304, 'Yucatán Peninsula -- Antiquities'), +(9305, 'Temperance -- Humor'), +(9306, 'Poets, American -- Homes and haunts -- Maryland -- Cecil County'), +(9307, 'Generals -- Fiction'), +(9308, 'Hungarian wit and humor'), +(9309, 'Zuni Indians'), +(9310, 'Operating systems (Computers)'), +(9311, 'Women -- Indonesia -- Java -- Social conditions'), +(9312, 'Wales, North'), +(9313, 'Ships -- England -- Liverpool -- History'), +(9314, 'Scottish Borders (Scotland) -- History'), +(9315, 'Belgium -- History -- Revolution, 1830-1839'), +(9316, 'Mayas'), +(9317, 'English poetry -- Old English, ca. 450-1100'), +(9318, 'Women -- Education -- Early works to 1800'), +(9319, 'Polish fiction'), +(9320, 'Sagunto (Spain) -- History -- Siege, 219-218 B.C. -- Fiction'), +(9321, 'Gogol, Nikolai Vasilevich, 1809-1852 -- Translations into English'), +(9322, 'English essays -- Translations into Finnish'), +(9323, 'Cid, approximately 1043-1099 -- Drama'), +(9324, 'Fiction -- Authorship -- Fiction'), +(9325, 'African Americans -- Religion'), +(9326, 'Frontier and pioneer life -- Texas -- Fort Worth'), +(9327, 'Cornwall (England : County)'), +(9328, 'Shipping -- Canada -- History'), +(9329, 'Rodents'), +(9330, 'Wharton, Edith, 1862-1937 -- Travel -- Morocco'), +(9331, 'Intermediate state'), +(9332, 'Klondike River Valley (Yukon) -- Gold discoveries'), +(9333, 'Birds -- North America -- Congresses'), +(9334, 'Women and literature -- France'), +(9335, 'Sá de Miranda, Francisco de, 1481?-1558'), +(9336, 'Prohibition -- Moral and ethical aspects'), +(9337, 'Adulthood'), +(9338, 'Baptism -- Biblical teaching'), +(9339, 'Rupert, Prince, Count Palatine, 1619-1682'), +(9340, 'Eye -- Diseases'), +(9341, 'Manitoba -- Antiquities'), +(9342, 'Gnosticism'), +(9343, 'Early printed books -- France -- Bibliography'), +(9344, 'Scottish Gaelic language -- Grammar'), +(9345, 'Shakespeare, William, 1564-1616 -- Illustrations'), +(9346, 'Thoreau, Henry David, 1817-1862 -- Homes and haunts -- Massachusetts -- Walden Woods'), +(9347, 'Folklore -- Romania'), +(9348, 'Women travelers -- Biography'), +(9349, 'Great Britain -- History -- Henry VII, 1485-1509'), +(9350, 'Poe, Edgar Allan, 1809-1849'), +(9351, 'Flemish literature -- History and criticism'), +(9352, 'Great Britain -- Foreign relations'), +(9353, 'Ritchie, J. Ewing (James Ewing), 1820-1898'), +(9354, 'Mothers -- Juvenile poetry'), +(9355, 'Jesus Christ -- Art'), +(9356, 'Birds -- Great Britain'), +(9357, 'Journalists -- United States -- Biography'), +(9358, 'France -- History -- Bourbons, 1589-1789'), +(9359, 'Calderón, Rodrigo, -1621 -- Fiction'), +(9360, 'Taoism -- Sacred books'), +(9361, 'Visions -- Early works to 1800'), +(9362, 'World War, 1914-1918 -- Campaigns -- Turkey -- Gallipoli Peninsula -- Juvenile fiction'), +(9363, 'Ghosts -- England'), +(9364, 'World War, 1914-1918 -- Economic aspects -- Austria'), +(9365, 'Bible. Old Testament -- Criticism, interpretation, etc.'), +(9366, 'Self-reliance -- Juvenile fiction'), +(9367, 'Women -- Diseases -- Early works to 1800'), +(9368, 'Working class -- Germany -- Fiction'), +(9369, 'Assaying'), +(9370, 'Seashore biology -- Juvenile literature'), +(9371, 'African Americans -- Suffrage'), +(9372, 'Ibsen, Henrik, 1828-1906 -- Bibliography'), +(9373, 'Folklore -- Scandinavia'), +(9374, 'Shrews'), +(9375, 'Names, Personal -- English'), +(9376, 'Algeria -- History -- 1830-1962'), +(9377, 'Alligators -- Juvenile fiction'), +(9378, 'Cid, approximately 1043-1099 -- Fiction'), +(9379, 'Westminster Palace (London, England) -- Lords'), +(9380, 'Historical fiction -- Bibliography'), +(9381, 'Illustrated books -- Great Britain -- Bibliography'), +(9382, 'Study skills'), +(9383, 'North West Mounted Police (Canada) -- Fiction'), +(9384, 'Children\'s writings, American'), +(9385, 'Italy -- Social life and customs'), +(9386, 'Fairies -- China'), +(9387, 'Hunting -- Ethiopia'), +(9388, 'Abolitionists -- United States'), +(9389, 'Portuguese -- India -- Biography'), +(9390, 'Dutch literature -- Translations into French'), +(9391, 'Tombouctou (Mali) -- Description and travel'), +(9392, 'Sun, Bin, active 4th century B.C. -- Fiction'), +(9393, 'Bible. Exodus'), +(9394, 'Natural history -- China -- Yunnan Sheng'), +(9395, 'Agricultural laborers -- Russia'), +(9396, 'War -- Drama'), +(9397, 'Swami-Narayanis'), +(9398, 'Polish people -- Poetry'), +(9399, 'Dorians -- History'), +(9400, 'Trials -- Great Britain'), +(9401, 'Curiosity -- Juvenile fiction'), +(9402, 'Faughnan, Thomas, active 1835-1883'), +(9403, 'Soldiers -- Virginia -- Biography'), +(9404, 'Publishers\' catalogs -- New York (State) -- New York'), +(9405, 'Päivärinta, Pietari, 1827-1913'), +(9406, 'Agriculture -- California'), +(9407, 'Tales -- India -- Bengal'), +(9408, 'Denmark -- History -- 17th century -- Fiction'), +(9409, 'Gyges, King of Lydia, -approximately 648 B.C. -- Drama'), +(9410, 'Fawcett, Henry, 1833-1884'), +(9411, 'Mann, Heinrich, 1871-1950'), +(9412, 'Monasteries -- Fiction'), +(9413, 'Philosophy, Iranian'), +(9414, 'Siberia (Russia) -- Languages'), +(9415, 'Authors, Latin -- Correspondence'), +(9416, 'Yser, Battle of the, Belgium, 1914'), +(9417, 'United States Sanitary Commission'), +(9418, 'Americans -- Netherlands -- Fiction'), +(9419, 'Revolvers'), +(9420, 'Irish drama -- History and criticism'), +(9421, 'Tiberius, Emperor of Rome 42 B.C.-37 A.D. -- Fiction'), +(9422, 'San Francisco Bay (Calif.) -- Poetry'), +(9423, 'Northwest Passage'), +(9424, 'Gruyère, Counts of'), +(9425, 'Poets, English -- 14th century -- Fiction'), +(9426, 'Christian pilgrims and pilgrimages -- Poetry'), +(9427, 'Sleepwalking'), +(9428, 'Great Britain -- History -- Commonwealth and Protectorate, 1649-1660 -- Sources'), +(9429, 'Harald III Harðráði, King of Norway, 1015-1066'), +(9430, 'Pendulum'), +(9431, 'Trials (Military offenses) -- Drama'), +(9432, 'Nightingale, Florence, 1820-1910'), +(9433, 'Bank of the Manhattan Company -- History'), +(9434, 'Andros, Edmund, Sir, 1637-1714'), +(9435, 'Jesus Christ -- Parables -- Juvenile poetry'), +(9436, 'Beagle Expedition (1831-1836)'), +(9437, 'Rochester Cathedral (Rochester, Kent, England)'), +(9438, 'Legends -- New York (State) -- Suffolk County'), +(9439, 'Postage stamps -- Gambia'), +(9440, 'Airships'), +(9441, 'Induction coils'), +(9442, 'Inscriptions, Runic -- Scotland -- Orkney'), +(9443, 'Mental health laws -- New Zealand'), +(9444, 'Brazil -- Social life and customs -- Fiction'), +(9445, 'Alsace-Lorraine question'), +(9446, 'Vietnam -- Social life and customs'), +(9447, 'Housewives -- Fiction'), +(9448, 'Millionaires -- Juvenile fiction'), +(9449, 'Heraldry'), +(9450, 'France -- History -- 16th century -- Fiction'), +(9451, 'Books and reading -- Great Britain -- History'), +(9452, 'United States. Army. Pennsylvania Infantry Regiment, 106th (1861-1864)'), +(9453, 'Bible. Corinthians, 2nd, II, 17-III, 1-6 -- Sermons'), +(9454, 'Inflation (Finance) -- France -- History'), +(9455, 'World War, 1914-1918 -- Prince Edward Island -- Juvenile fiction'), +(9456, 'Proechimys'), +(9457, 'United States -- Social conditions'), +(9458, 'Bible -- Canon'), +(9459, 'Love, Maternal -- Fiction'), +(9460, 'Sailing ships -- Fiction'), +(9461, 'Howells, William Dean, 1837-1920 -- Childhood and youth'), +(9462, 'Women in journalism -- Juvenile fiction'), +(9463, 'Black Hawk War, 1832 -- Fiction'), +(9464, 'Dumas, Alexandre, 1802-1870'), +(9465, 'Underground Railroad'), +(9466, 'Painting -- England -- London -- Catalogs'), +(9467, 'Book collectors'), +(9468, 'Illinois -- Politics and government -- 18th century'), +(9469, 'Mexico -- History -- Revolution, 1910-1920 -- Fiction'), +(9470, 'Missionaries\' spouses -- Burma -- Biography'), +(9471, 'Parables'), +(9472, 'Illegitimate children -- Fiction'), +(9473, 'Courthouses -- Virginia -- Fairfax County -- History'), +(9474, 'Children with mental disabilities -- Education'), +(9475, 'Dressage'), +(9476, 'Ether'), +(9477, 'England -- Rural conditions'), +(9478, 'Treasure troves'), +(9479, 'Reno (Nev.)'), +(9480, 'Press -- Belgium'), +(9481, 'Mirbeau, Octave, 1848-1917'), +(9482, 'Mistresses -- Fiction'), +(9483, 'Rocky Mountain National Park (Colo.) -- History'), +(9484, 'Ghosts -- Juvenile fiction'), +(9485, 'Military law -- United States'), +(9486, 'Buddhists -- Fiction'), +(9487, 'Theater -- Japan'), +(9488, 'Anglo-Saxons -- Early works to 1800'), +(9489, 'Mentally ill -- Care -- New York (State) -- Utica'), +(9490, 'Children -- Switzerland -- Juvenile literature'), +(9491, 'Burr, Aaron, 1756-1836'), +(9492, 'Child labor -- Juvenile fiction'), +(9493, 'African Americans -- North Carolina -- Biography'), +(9494, 'Scots -- France -- Fiction'), +(9495, 'Mysteries and miracle-plays'), +(9496, 'India -- History'), +(9497, 'Snails -- Great Britain'), +(9498, 'Minerals -- Catalogs and collections'), +(9499, 'Medicine'), +(9500, 'Anatomy -- Study and teaching -- England -- History -- 16th century'), +(9501, 'Great Britain. Royal Navy -- Medical care -- Anecdotes'), +(9502, 'Clergy -- England'), +(9503, 'Hastings (England) -- Pictorial works'), +(9504, 'Tatting'), +(9505, 'Europeans -- Indonesia -- Fiction'), +(9506, 'Ethnology -- Great Britain'), +(9507, 'Dogs -- Anecdotes'), +(9508, 'Rezanov, Nikolai Petrovich, 1764-1807 -- Fiction'), +(9509, 'Indians of North America -- British Columbia'), +(9510, 'Abnormalities, Human'), +(9511, 'Hereford Cathedral'), +(9512, 'Indians of Mexico -- Antiquities'), +(9513, 'Mont-Saint-Michel (Abbey : France) -- Fiction'), +(9514, 'Plants -- Periodicals'), +(9515, 'Songs, English -- England -- Newcastle upon Tyne'), +(9516, 'Ireland -- Social life and customs -- 18th century'), +(9517, 'Socialism -- Drama'), +(9518, 'Witches -- Juvenile drama'), +(9519, 'Medicine, Magic, mystic, and spagiric'), +(9520, 'Language and languages -- Early works to 1800'), +(9521, 'Chinese poetry -- Tang dynasty, 618-907'), +(9522, 'Algebra -- Problems, exercises, etc.'), +(9523, 'Antarctica -- Discovery and exploration'), +(9524, 'Gamblers -- Fiction'), +(9525, 'Europe -- History -- 1648-1789 -- Juvenile literature'), +(9526, 'Uncle Tom (Fictitious character) -- Fiction'), +(9527, 'Chinese poetry -- History and criticism'), +(9528, 'Islands of the Pacific -- Fiction'), +(9529, 'Theophrastus. Characters'), +(9530, 'Islam -- Relations -- Christianity'), +(9531, 'Louisiana Purchase Exposition (1904 : Saint Louis, Mo.) -- New York (State)'), +(9532, 'Crimean War, 1853-1856 -- Personal narratives'), +(9533, 'Women -- New England -- Fiction'), +(9534, 'Sacraments -- Church of England'), +(9535, 'Great Britain -- History -- John, 1199-1216 -- Drama'), +(9536, 'Seeley, John Robert, Sir, 1834-1895. The expansion of England'), +(9537, 'Mexico -- History -- Revolution, 1910-1920 -- Juvenile fiction'), +(9538, 'Greece -- Social life and customs -- Fiction'), +(9539, 'Women dressmakers -- Fiction'), +(9540, 'Poor -- New York (State) -- New York'), +(9541, 'Knights and knighthood -- Poetry'), +(9542, 'France. Armée -- Handbooks, manuals, etc.'), +(9543, 'Wood-engraving -- Printing'), +(9544, 'Finns -- Russia (Federation) -- Karelia -- Folklore'), +(9545, 'Europe -- Politics and government -- 1815-1848'), +(9546, 'Historiography'), +(9547, 'Quaternions'), +(9548, 'Burgundy (France) -- History -- Fiction'), +(9549, 'Trotter, Catharine, 1679-1749 -- Drama'), +(9550, 'Cherokee Indians'), +(9551, 'Robin Hood (Legendary character) -- Drama'), +(9552, 'Gods, Greek -- Fiction'), +(9553, 'Maya language -- Grammar'), +(9554, 'Rural poor -- England -- Fiction'), +(9555, 'Natural history -- Oceania'), +(9556, 'Calvin, Jean, 1509-1564'), +(9557, 'Paris (France) -- History -- 1789-1799 -- Sources'), +(9558, 'Inuit -- Greenland -- Fiction'), +(9559, 'Hill, C. W. (Cedric Waters), 1891-1975'), +(9560, 'Tobacco use'), +(9561, 'Books and reading'), +(9562, 'Legal stories'), +(9563, 'Garrick, David, 1717-1779 -- Fiction'), +(9564, 'Sahara -- Description and travel'), +(9565, 'Shipwrecks -- Drama'), +(9566, 'Mary, Blessed Virgin, Saint -- Art'), +(9567, 'Islands -- Sweden -- Fiction'), +(9568, 'Gifted children'), +(9569, 'Jérôme Bonaparte, King of Westphalia, 1784-1860 -- Fiction'), +(9570, 'French -- England -- History -- 18th century'), +(9571, 'Southern States -- Periodicals'), +(9572, 'Runaway children -- Juvenile fiction'), +(9573, 'Tabaguet, Jean Baptiste, fl. 1590'), +(9574, 'Philippines -- History -- Philippine American War, 1899-1902 -- Regimental histories -- United States'), +(9575, 'Reporters and reporting -- Juvenile fiction'), +(9576, 'New York evening journal'), +(9577, 'Society of Friends -- Fiction'), +(9578, 'Worcester (England) -- History'), +(9579, 'Home economics, Rural'), +(9580, 'Sicily (Italy) -- Description and travel'), +(9581, 'Socialites -- New York (State) -- New York -- Biography'), +(9582, 'National characteristics, English -- Fiction'), +(9583, 'Seven Years\' War, 1756-1763 -- Juvenile fiction'), +(9584, 'Voyages and travels -- Juvenile literature'), +(9585, 'Dora Riparia (Italy)'), +(9586, 'Birds -- Alaska'), +(9587, 'London Fire Brigade -- Juvenile fiction'), +(9588, 'Mantegna, Andrea, 1431-1506'), +(9589, 'Detective and mystery stories, French -- Translations into English'), +(9590, 'Goethe, Johann Wolfgang von, 1749-1832 -- Miscellanea'), +(9591, 'Great Britain -- History -- Angevin period, 1154-1216'), +(9592, 'Economics -- Early works to 1800'), +(9593, 'Philip, Sachem of the Wampanoags, -1676'), +(9594, 'Lincoln Highway'), +(9595, 'Ghost stories, Chinese'), +(9596, 'Loneliness -- Fiction'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(9597, 'Estêvão, José, 1809-1862'), +(9598, 'Tales -- Ireland -- Adaptations'), +(9599, 'Dutch fiction -- Translations into French'), +(9600, 'Inventions -- United States'), +(9601, 'Pilgrims (New Plymouth Colony) -- Juvenile fiction'), +(9602, 'Ido'), +(9603, 'Iban (Bornean people)'), +(9604, 'Pullman Strike, 1894'), +(9605, 'Opium -- Toxicology'), +(9606, 'Blacks -- France -- Colonies'), +(9607, 'Welsh literature -- 19th century'), +(9608, 'Indic poetry -- Translations into German'), +(9609, 'Venus (Planet) -- Fiction'), +(9610, 'Appalachians (People)'), +(9611, 'Memory (Philosophy) -- History'), +(9612, 'Publishers\' catalogs -- United States'), +(9613, 'Music -- Periodicals'), +(9614, 'Yoga -- Early works to 1800'), +(9615, 'Hylidae -- Latin America'), +(9616, 'Civil engineers -- Juvenile fiction'), +(9617, 'German language -- Middle High German, 1050-1500 -- Grammar'), +(9618, 'Revelation -- Biblical teaching'), +(9619, 'Young women -- England -- Fiction'), +(9620, 'Social classes -- Drama'), +(9621, 'Southern States -- Social life and customs'), +(9622, 'Jews -- England -- Fiction'), +(9623, 'Bible. Revelation -- Criticism, interpretation, etc.'), +(9624, 'Freemasonry -- United States -- Rituals'), +(9625, 'Fruit -- Diseases and pests'), +(9626, 'Philippines -- History -- Philippine American War, 1899-1902 -- Fiction'), +(9627, 'Knox, Thomas Wallace, 1835-1896'), +(9628, 'Slavery -- Washington (D.C.)'), +(9629, 'Mound-builders'), +(9630, 'Turkeys -- Juvenile fiction'), +(9631, 'Libraries -- Great Britain'), +(9632, 'Educational assistance, American -- Philippines'), +(9633, 'Tagore, Rabindranath, 1861-1941'), +(9634, 'Wellington, Arthur Wellesley, Duke of, 1769-1852 -- Military leadership'), +(9635, 'Industries'), +(9636, 'Comparative literature -- Hebrew and Assyro-Babylonian'), +(9637, 'Orthodox Eastern Church'), +(9638, 'Cheesemaking -- Netherlands -- Handbooks, manuals, etc.'), +(9639, 'Saskatchewan -- Fiction'), +(9640, 'New York (N.Y.) -- History -- 1865-1898 -- Juvenile fiction'), +(9641, 'Erotic literature, English'), +(9642, 'United States -- Emigration and immigration'), +(9643, 'Caricatures and cartoons -- United States'), +(9644, 'Civilization, Modern'), +(9645, 'Floriculture -- Periodicals'), +(9646, 'Violin'), +(9647, 'Harpsichord -- History'), +(9648, 'Literature -- Translations into Italian'), +(9649, 'Parapsychology -- Investigation'), +(9650, 'Housing -- New York (State) -- New York -- Anecdotes'), +(9651, 'Cattle'), +(9652, 'Rapid dominance (Military science)'), +(9653, 'Lumbering -- Washington (State)'), +(9654, 'Enema'), +(9655, 'Llangollen (Wales)'), +(9656, 'Fairy tales -- Wales'), +(9657, 'Millet, Jean François, 1814-1875'), +(9658, 'Shipping bounties and subsidies'), +(9659, 'Missions, Spanish -- California'), +(9660, 'Boufflers, Marie Françoise Catherine de Beauvau, marquise de, 1711-1786'), +(9661, 'Hudson\'s Bay Company'), +(9662, 'Moriaen -- Romances'), +(9663, 'Mexico -- History -- Conquest, 1519-1540 -- Juvenile literature'), +(9664, 'Solomon Islands'), +(9665, 'Central America -- Juvenile fiction'), +(9666, 'Conscience -- Religious aspects -- Fiction'), +(9667, 'Tales, Tamil'), +(9668, 'Flight -- Juvenile fiction'), +(9669, 'Witchcraft -- History'), +(9670, 'Household employees -- Drama'), +(9671, 'Youth -- Conduct of life -- Fiction'), +(9672, 'Campbell, Archibald, 1787- -- Travel'), +(9673, 'French language -- Terms and phrases'), +(9674, 'Bible -- Illustrations'), +(9675, 'Immortality (Philosophy) -- Early works to 1800'), +(9676, 'Victoria -- Fiction'), +(9677, 'Bible and science'), +(9678, 'Portraits -- Fiction'), +(9679, 'Flanders -- Description and travel'), +(9680, 'Gynecology -- Bibliography'), +(9681, 'Great Britain. Army. Infantry. 6th Regiment (Royal 1st Warwickshire)'), +(9682, 'Nieces -- Juvenile fiction'), +(9683, 'Families'), +(9684, 'Impostors and imposture -- Juvenile fiction'), +(9685, 'Butler, Eleanor, Lady, 1738 or 9-1829'), +(9686, 'Campanella, Tommaso, 1568-1639'), +(9687, 'Diatoms -- Pennsylvania -- Philadelphia'), +(9688, 'Conscience'), +(9689, 'Art, Italian'), +(9690, 'Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 -- Fiction'), +(9691, 'Otis, James, 1725-1783'), +(9692, 'Book of Mormon stories'), +(9693, 'Morris dance'), +(9694, 'Guinea (Region) -- Discovery and exploration -- Early works to 1800'), +(9695, 'Ducklings -- Juvenile fiction'), +(9696, 'Hamlet (Legendary character) -- Drama'), +(9697, 'Algonquian Indians -- Legends'), +(9698, 'Ireland -- Politics and government -- 1901-1910'), +(9699, 'Tolstaia, S. A. (Sofia Andreevna), 1844-1919'), +(9700, 'Rocks -- Collection and preservation -- Juvenile literature'), +(9701, 'Romanticism -- Great Britain'), +(9702, 'Cooking, American -- Juvenile literature'), +(9703, 'British -- Belgium -- Fiction'), +(9704, 'Humanities -- Periodicals'), +(9705, 'Tuskegee Institute'), +(9706, 'Farm life -- Sweden -- Fiction'), +(9707, 'New England -- Biography'), +(9708, 'Bible. Acts -- Commentaries'), +(9709, 'Kamchatka Peninsula (Russia) -- Description and travel'), +(9710, 'Russia -- Social life and customs -- 1533-1917'), +(9711, 'Rome -- Historiography'), +(9712, 'Salvation Army -- Sermons'), +(9713, 'Siksika Indians'), +(9714, 'Trucking'), +(9715, 'Powhatan Indians -- Biography'), +(9716, 'Geography -- Handbooks, manuals, etc.'), +(9717, 'Songs, Latin (Medieval and modern) -- Translations into English'), +(9718, 'Holm, Carl Johan, 1781-1867'), +(9719, 'Nahuatl-Spanish dialect -- Texts'), +(9720, 'Physical geography -- Philippines'), +(9721, 'Wollstonecraft, Mary, 1759-1797 -- Correspondence'), +(9722, 'Artists -- Anecdotes'), +(9723, 'Aeronautics -- Flights'), +(9724, 'Sarti, Lorenzo, 1774 or 1775-'), +(9725, 'Flanders -- History'), +(9726, 'Parkman, Francis, 1823-1893'), +(9727, 'Walker, Hovenden, Sir, 1656?-1728'), +(9728, 'Great Britain -- Social conditions -- 20th century'), +(9729, 'Engineering'), +(9730, 'Moravian Church -- Missions'), +(9731, 'Slavery -- Africa -- Fiction'), +(9732, 'Paston family -- Correspondence'), +(9733, 'Villages -- Russia (Federation) -- Karelia -- Folklore'), +(9734, 'Missions -- China'), +(9735, 'Great Britain. Royal Navy -- Officers -- Drama'), +(9736, 'Women -- Crimes against -- United States'), +(9737, 'Families -- Drama'), +(9738, 'Authors, German -- 20th century -- Biography'), +(9739, 'Americans -- Great Britain -- Juvenile fiction'), +(9740, 'Blackie & Son -- Catalogs'), +(9741, 'Wynne, Ellis, 1671-1734'), +(9742, 'Biology -- History'), +(9743, 'Bible -- Commentaries'), +(9744, 'Speeches, addresses, etc., Portuguese'), +(9745, 'Indians of North America -- Legal status, laws, etc. -- Northwest Territories'), +(9746, 'Portugal -- History -- Dinis, 1279-1325'), +(9747, 'Chemistry teachers -- Fiction'), +(9748, 'Frontier and pioneer life -- Canada'), +(9749, 'Stowaways -- Juvenile fiction'), +(9750, 'Legends -- Russia (Federation)'), +(9751, 'United States. Army. New York Infantry Regiment, 61st -- History'), +(9752, 'Bengali (South Asian people) -- Folklore'), +(9753, 'Nuclear weapons -- Testing'), +(9754, 'Esther, Queen of Persia -- Drama'), +(9755, 'Borrow, George, 1803-1881 -- Bibliography'), +(9756, 'Legends -- France -- Brittany'), +(9757, 'Charles XII, King of Sweden, 1682-1718 -- Fiction'), +(9758, 'Diplomatic and consular service, British'), +(9759, 'Great Lakes (North America)'), +(9760, 'France -- History -- Henry III, 1574-1589 -- Fiction'), +(9761, 'Jacquard weaving'), +(9762, 'Arabs -- Folklore'), +(9763, 'Fasts and feasts -- Poetry'), +(9764, 'Education, Higher'), +(9765, 'Chemistry, Analytic -- Quantitative'), +(9766, 'England -- Social life and customs -- 19th century -- Juvenile fiction'), +(9767, 'Sculpture, Italian'), +(9768, 'Mediums'), +(9769, 'Eggleston, George Cary, 1839-1911'), +(9770, 'Lockwood, Richard. Reasons why a Churchman may ... refuse to subscribe to the British and Foreign Bible Society'), +(9771, 'Fishers -- Juvenile fiction'), +(9772, 'Automobiles -- History -- Juvenile fiction'), +(9773, 'United States. Army -- Ordnance and ordnance stores'), +(9774, 'Great Britain -- History -- Henry VIII, 1509-1547'), +(9775, 'Decoration and ornament, Jacobean'), +(9776, 'Workshops'), +(9777, 'Nuns -- Fiction'), +(9778, 'Italian literature -- 15th century -- History and criticism'), +(9779, 'Indians of North America -- Indian Territory -- History'), +(9780, 'Copyright'), +(9781, 'Glasgow (Scotland) -- Pictorial works'), +(9782, 'Van Winkle, Rip (Fictitious character) -- Drama'), +(9783, 'Irish literature -- Translations into English'), +(9784, 'Rome -- History -- Empire, 30 B.C.-476 A.D. -- Fiction'), +(9785, 'Slave trade'), +(9786, 'Iowa -- Description and travel'), +(9787, 'London (England) -- Pictorial works'), +(9788, 'Military fireworks'), +(9789, 'Absentee landlordism -- Fiction'), +(9790, 'Pioneers -- Fiction'), +(9791, 'Sophocles -- Translations into English'), +(9792, 'Hunting -- Nepal'), +(9793, 'Agriculture -- France -- History -- 18th century'), +(9794, 'Channel Islands -- Fiction'), +(9795, 'Household employees -- Sweden'), +(9796, 'Alphabets'), +(9797, 'World War, 1914-1918 -- Campaigns -- Middle East'), +(9798, 'College freshmen -- United States -- Life skills guides'), +(9799, 'Illustration of books -- Great Britain -- 19th century'), +(9800, 'Five Little Peppers (Fictitious characters) -- Juvenile fiction'), +(9801, 'Kentucky -- Juvenile fiction'), +(9802, 'University of North Carolina (1793-1962) -- Students'), +(9803, 'Lucerne Lake (Switzerland)'), +(9804, 'Slaves -- Missouri -- Biography'), +(9805, 'Walking'), +(9806, 'Carroll, Anna Ella, 1815-1894'), +(9807, 'Somerset (England) -- Fiction'), +(9808, 'Nihilism -- Fiction'), +(9809, 'Chess -- Early works to 1800'), +(9810, 'Physicists -- Great Britain -- Biography'), +(9811, 'Express service -- Fiction'), +(9812, 'Bonaparte, François-Charles-Joseph, Herzog von Reichstadt, 1811-1832'), +(9813, 'Normandy (France) -- Fiction'), +(9814, 'Sinai (Egypt) -- History'), +(9815, 'Texas -- Fiction'), +(9816, 'Aeneas (Legendary character) -- Poetry'), +(9817, 'Electric automobiles'), +(9818, 'Spain -- Description and travel -- Anecdotes, facetiae, satire, etc.'), +(9819, 'Animals -- Poetry'), +(9820, 'Fall of man -- Poetry'), +(9821, 'Remarried people -- Fiction'), +(9822, 'Cenci, Beatrice, 1577-1599 -- Fiction'), +(9823, 'Elocution -- Study and teaching -- Early works to 1800'), +(9824, 'Agriculture -- Juvenile fiction'), +(9825, 'Painting, Dutch'), +(9826, 'United States -- History -- Constitutional period, 1789-1809 -- Fiction'), +(9827, 'China -- History -- Tang dynasty, 618-907'), +(9828, 'Tonsils -- Diseases'), +(9829, 'Selling -- Shoes'), +(9830, 'Olympia (Greece : Ancient sanctuary)'), +(9831, 'Pennsylvania Dutch -- Fiction'), +(9832, 'Great Britain -- Colonies -- Australia'), +(9833, 'Plantation life -- Mauritius -- Fiction'), +(9834, 'West Indies, British -- Description and travel'), +(9835, 'Aeschylus -- Translations into English'), +(9836, 'Racing -- Juvenile fiction'), +(9837, 'Scurvy'), +(9838, 'Moors (Wetlands)'), +(9839, 'German drama (Comedy) -- Translations into Finnish'), +(9840, 'Washington (D.C.) -- Pictorial works'), +(9841, 'Geology -- Utah -- Canyonlands National Park -- Guidebooks'), +(9842, 'University of California (1868-1952). Library -- Handbooks, manuals, etc.'), +(9843, 'Comparative literature'), +(9844, 'Bible -- Theology'), +(9845, 'Constitutional history -- United States -- Sources'), +(9846, 'Storytelling -- Juvenile fiction'), +(9847, 'Jewish sermons -- Great Britain'), +(9848, 'Provençal poetry -- 19th century'), +(9849, 'Slavery -- Fiction'), +(9850, 'Merlin (Legendary character) -- Poetry'), +(9851, 'Young men'), +(9852, 'Judaism -- Early works to 1800'), +(9853, 'Swetnam, Joseph, active 1617 -- Drama'), +(9854, 'Allegheny Mountains'), +(9855, 'Beneficial insects'), +(9856, 'Inventors -- Biography'), +(9857, 'Zola, Émile, 1840-1902. Assommoir'), +(9858, 'Bible. Philemon'), +(9859, 'Jataka stories, English'), +(9860, 'Abelard, Peter, 1079-1142'), +(9861, 'Jewish men -- Fiction'), +(9862, 'El Dorado -- Fiction'), +(9863, 'Geology -- Study and teaching'), +(9864, 'Creation -- Juvenile literature'), +(9865, 'L\'Epée, Charles-Michel de, 1712-1789'), +(9866, 'Chinese fiction -- History and criticism'), +(9867, 'Infants -- Care'), +(9868, 'Alcoholic beverages'), +(9869, 'Jehovah\'s witnesses -- Controversial literature'), +(9870, 'England -- Social life and customs -- 20th century'), +(9871, 'Hell -- Humor'), +(9872, 'Geneva (Switzerland) -- History'), +(9873, 'Chase, Salmon P. (Salmon Portland), 1808-1873'), +(9874, 'Indians of North America -- Maryland -- Poetry'), +(9875, 'Adventure and adventurers -- Juvenile literature'), +(9876, 'Memory'), +(9877, 'Legislators -- Fiction'), +(9878, 'Socinianism'), +(9879, 'Christian saints, Celtic -- Biography'), +(9880, 'Dogs -- Poetry'), +(9881, 'Cromwell, Oliver, 1599-1658 -- Drama'), +(9882, 'Fourth dimension'), +(9883, 'Shakespeare, William, 1564-1616 -- Homes and haunts -- England -- Stratford-upon-Avon -- Fiction'), +(9884, 'Northwest Coast of North America -- Social life and customs'), +(9885, 'Women -- Biblical teaching'), +(9886, 'Sanskrit drama -- Adaptations'), +(9887, 'Eteocles, King of Thebes (Mythological character) -- Drama'), +(9888, 'Anatomy -- Humor'), +(9889, 'Universities and colleges -- United States -- Juvenile fiction'), +(9890, 'Anatomy, Surgical and topographical -- Atlases'), +(9891, 'Temperance -- Juvenile fiction'), +(9892, 'Mental illness'), +(9893, 'National banks (United States) -- Fiction'), +(9894, 'Czech fiction -- Translations into Finnish'), +(9895, 'Women farmers -- Fiction'), +(9896, 'Chicago (Ill.) -- History -- 19th century -- Juvenile fiction'), +(9897, 'Older people'), +(9898, 'Valets -- France -- Biography'), +(9899, 'Roman provinces -- Administration'), +(9900, 'Wellington, Arthur Wellesley, Duke of, 1769-1852 -- Correspondence'), +(9901, 'Imaginary places -- Europe, Eastern -- Fiction'), +(9902, 'Horticulture -- Periodicals'), +(9903, 'Buddha (The concept) -- Juvenile literature'), +(9904, 'Walking -- New York (State)'), +(9905, 'Dante Alighieri, 1265-1321 -- Fiction'), +(9906, 'Alaska -- Gold discoveries -- Juvenile fiction'), +(9907, 'Ballads, English -- West (U.S.)'), +(9908, 'Barletta (Italy) -- History -- Siege, 1503 -- Fiction'), +(9909, 'Southwest, Old -- Description and travel'), +(9910, 'Extrasolar planets -- Fiction'), +(9911, 'Fromentin, Eugène, 1820-1876'), +(9912, 'Japanese literature'), +(9913, 'United States Naval Academy -- Juvenile fiction'), +(9914, 'Great Britain -- History -- Canute, 1017-1035 -- Fiction'), +(9915, 'Brazil -- Emigration and immigration'), +(9916, 'Russian literature -- 20th century -- Translations into English'), +(9917, 'Frontier and pioneer life -- Australia -- Queensland'), +(9918, 'Bohemia (Czech Republic) -- Guidebooks'), +(9919, 'Literature -- Adaptations'), +(9920, 'Geometry -- Early works to 1800'), +(9921, 'Presidents -- United States -- Inaugural addresses'), +(9922, 'Churches of Christ'), +(9923, 'Gardening -- Periodicals'), +(9924, 'London (England) -- Social life and customs -- 19th century'), +(9925, 'Rocky Mountains -- Description and travel -- Juvenile fiction'), +(9926, 'Architecture -- France -- Maine'), +(9927, 'Corn laws (Great Britain)'), +(9928, 'Folklore -- Sri Lanka'), +(9929, 'Concrete -- Juvenile fiction'), +(9930, 'Blennerhassett, Harman, 1765-1831 -- Fiction'), +(9931, 'Madeira River (Brazil and Bolivia) -- Navigation'), +(9932, 'Dreams -- Juvenile fiction'), +(9933, 'Fables, American'), +(9934, 'Explorers -- Great Britain -- Biography -- Early works to 1800'), +(9935, 'Trees -- North America'), +(9936, 'Silver question'), +(9937, 'Phoenicia -- Civilization -- Juvenile fiction'), +(9938, 'Ojibwa Indians -- Religion'), +(9939, 'Apostles\' Creed'), +(9940, 'Alcoholism -- Juvenile fiction'), +(9941, 'Auburn Prison'), +(9942, 'Penha, João, 1839-1919 -- Criticism and interpretation'), +(9943, 'Portugal -- History -- Maria I, 1777-1816 -- Fiction'), +(9944, 'Paris Peace Conference (1919-1920)'), +(9945, 'Gods, Roman -- Poetry'), +(9946, 'Herzl, Theodor, 1860-1904'), +(9947, 'Cooking -- Humor'), +(9948, 'Street entertainers -- Fiction'), +(9949, 'Cattle stealing -- Fiction'), +(9950, 'Germany -- Politics and government -- 1888-1918 -- Biography'), +(9951, 'Margaret, of Anjou, Queen, consort of Henry VI, King of England, 1430-1482 -- Drama'), +(9952, 'Darío, Rubén, 1867-1916'), +(9953, 'Alligators -- Digestive organs'), +(9954, 'Chartres (France)'), +(9955, 'Chattanooga, Battle of, Chattanooga, Tenn., 1863'), +(9956, 'Christian life -- Presbyterian authors'), +(9957, 'Fiction -- Authorship -- Humor'), +(9958, 'Legends -- Pennsylvania'), +(9959, 'Light -- Speed'), +(9960, 'Social reformers -- Great Britain -- Biography'), +(9961, 'English language -- Synonyms and antonyms'), +(9962, 'Trials -- Italy -- Rome'), +(9963, 'Tales -- Burma'), +(9964, 'Food adulteration and inspection'), +(9965, 'Lepidoptera -- New Zealand'), +(9966, 'Sex instruction for children'), +(9967, 'Ford automobile -- Handbooks, manuals, etc.'), +(9968, 'Frontier and pioneer life -- Kentucky -- Fiction'), +(9969, 'Pike, Zebulon Montgomery, 1779-1813 -- Travel -- West (U.S.)'), +(9970, 'Giants -- Fiction'), +(9971, 'Death'), +(9972, 'Reincarnation -- Drama'), +(9973, 'Theology -- Dictionaries'), +(9974, 'William (Fictitious character : Crompton) -- Juvenile fiction'), +(9975, 'Gibraltar -- Description and travel'), +(9976, 'Livestock'), +(9977, 'Smallpox -- Vaccination -- Early works to 1800'), +(9978, 'Boston (Mass.) -- History -- Siege, 1775-1776'), +(9979, 'Children -- Scotland -- Juvenile literature'), +(9980, 'Americans -- Scotland -- Fiction'), +(9981, 'Garfield County (Wash.) -- History'), +(9982, 'Portuguese -- India'), +(9983, 'Social history -- Medieval, 500-1500 -- Sources'), +(9984, 'Rajasthan (India) -- History'), +(9985, 'Mary, Queen of Scots, 1542-1587 -- Fiction'), +(9986, 'Country life -- United States -- Poetry'), +(9987, 'Enemies -- Juvenile fiction'), +(9988, 'South Africa -- Social life and customs'), +(9989, 'Authors, Irish -- 18th century -- Correspondence'), +(9990, 'Joan, of Arc, Saint, 1412-1431 -- Trials, litigation, etc.'), +(9991, 'W. Kent and Co. -- Catalogs'), +(9992, 'Midshipmen -- Juvenile fiction'), +(9993, 'Knights and knighthood -- Juvenile poetry'), +(9994, 'Coal miners -- Diseases'), +(9995, 'Great Britain -- Colonies -- India -- Administration'), +(9996, 'Africa -- Description and travel -- Juvenile literature'), +(9997, 'Commercial photography'), +(9998, 'Florence (Italy) -- Guidebooks'), +(9999, 'Machinery in the workplace'), +(10000, 'Nursery rhymes, Welsh'), +(10001, 'Ottokar II, King of Bohemia, 1230?-1278 -- Drama'), +(10002, 'International relations -- Study and teaching'), +(10003, 'Russia -- History -- Ivan IV, 1533-1584 -- Fiction'), +(10004, 'Perennials'), +(10005, 'Blowpipe'), +(10006, 'Neighbors -- Juvenile fiction'), +(10007, 'Sagas -- Adaptations'), +(10008, 'Robbery -- Juvenile fiction'), +(10009, 'Landlords -- Juvenile fiction'), +(10010, 'Matter -- Constitution'), +(10011, 'Elegiac poetry, Latin -- Translations into English'), +(10012, 'Imaginary places -- Juvenile fiction'), +(10013, 'Geometry, Plane'), +(10014, 'Ghouls and ogres -- Juvenile fiction'), +(10015, 'Rome (Italy) -- History -- 1798-1870 -- Fiction'), +(10016, 'Shakespeare, William, 1564-1616 -- Characters -- Falstaff'), +(10017, 'Howard, Kathleen, 1884-1956'), +(10018, 'Butterflies -- Great Britain'), +(10019, 'Telegraph -- History'), +(10020, 'African Americans -- Southern States'), +(10021, 'Pantomime'), +(10022, 'Hus, Jan, 1369?-1415'), +(10023, 'Rome -- History -- Flavians, 69-96'), +(10024, 'Italy -- Juvenile fiction'), +(10025, 'Frisian literature -- History and criticism'), +(10026, 'Architecture -- History'), +(10027, 'Fashion -- History'), +(10028, 'Kansas -- Biography'), +(10029, 'Orphans -- Juvenile poetry'), +(10030, 'Inquisition -- France'), +(10031, 'Riddles, French'), +(10032, 'Libraries -- History -- To 400'), +(10033, 'Kindergarten -- California -- San Francisco'), +(10034, 'World War, 1914-1918 -- Naval operations'), +(10035, 'Dorset (England) -- In literature'), +(10036, 'South Downs (England) -- Fiction'), +(10037, 'Occultism -- Early works to 1900'), +(10038, 'Constitutions -- North Carolina'), +(10039, 'Great Britain -- Social life and customs -- Early works to 1800'), +(10040, 'Laryngoscopy'), +(10041, 'Wales, Betty (Fictitious character) -- Juvenile fiction'), +(10042, 'Grenfell, Wilfred Thomason, Sir, 1865-1940'), +(10043, 'Activity programs in education'), +(10044, 'Typhoons'), +(10045, 'Didactic fiction, English'), +(10046, 'Ann Arbor (Mich.) -- Fiction'), +(10047, 'Fairy tales -- India'), +(10048, 'Gods, Greek -- Drama'), +(10049, 'Woodworking tools -- History'), +(10050, 'World War, 1914-1918 -- Netherlands'), +(10051, 'Malecite Indians'), +(10052, 'Tales -- Czech Republic -- Bohemia'), +(10053, 'George Edwards, 1850-1933'), +(10054, 'Rome -- History -- Julian, 361-363 -- Fiction'), +(10055, 'Davies, W. H. (William Henry), 1871-1940'), +(10056, 'Scots -- England -- Fiction'), +(10057, 'Socialists -- Germany -- Biography'), +(10058, 'Scottish Borders (Scotland) -- Poetry'), +(10059, 'Frontier and pioneer life -- California -- Fiction'), +(10060, 'Delaware Indians -- Juvenile fiction'), +(10061, 'Presbyterian Church -- Missions'), +(10062, 'African Americans -- Congresses'), +(10063, 'Type and type-founding -- England -- History'), +(10064, 'Pelycosauria'), +(10065, 'Boys -- Biography'), +(10066, 'Lima (Peru) -- Description and travel'), +(10067, 'Crécy, Battle of, Crécy-en-Ponthieu, France, 1346 -- Fiction'), +(10068, 'Alabama -- Biography'), +(10069, 'Tolstoy, Leo, graf, 1828-1910 -- Anecdotes'), +(10070, 'Peter Pan (Fictitious character)'), +(10071, 'Imperial federation'), +(10072, 'English language -- Dialects'), +(10073, 'Lantern projection'), +(10074, 'Alfred, King of England, 849-899 -- Juvenile fiction'), +(10075, 'Latin language -- Readers -- Mythology'), +(10076, 'Castles -- Netherlands'), +(10077, 'Upper class -- England -- Drama'), +(10078, 'Architecture, Gothic'), +(10079, 'Miami Indians'), +(10080, 'Shakespeare, William, 1564-1616 -- Biography'), +(10081, 'Americans -- Austria -- Fiction'), +(10082, 'Esperanto -- Texts'), +(10083, 'Church of Scotland'), +(10084, 'Armies -- Medical and sanitary affairs'), +(10085, 'Panama -- Description and travel'), +(10086, 'Ballads, English -- Great Britain -- Texts'), +(10087, 'Children -- Spain -- Juvenile literature'), +(10088, 'Sargasso Sea -- Juvenile fiction'), +(10089, 'Horse racing -- Great Britain'), +(10090, 'Hadrian, Emperor of Rome, 76-138 -- Fiction'), +(10091, 'North Atlantic Ocean -- Juvenile fiction'), +(10092, 'India -- History -- 1526-1765'), +(10093, 'Plague -- France -- Marseille -- Early works to 1800'), +(10094, 'Social secretaries -- Fiction'), +(10095, 'Sahara'), +(10096, 'Edward, Prince of Wales, 1330-1376 -- Juvenile fiction'), +(10097, 'Actresses -- Great Britain -- Biography'), +(10098, 'Haarlemmermeer (Netherlands)'), +(10099, 'Hotels -- Juvenile fiction'), +(10100, 'Journalists -- Great Britain -- Biography'), +(10101, 'Children -- Austria -- Juvenile literature'), +(10102, 'New Jersey -- Juvenile fiction'), +(10103, 'Folklore -- Russia'), +(10104, 'Pennsylvania -- History -- Civil War, 1861-1865 -- Fiction'), +(10105, 'Religious satire, English'), +(10106, 'China -- History -- Tang dynasty, 618-907 -- Sources'), +(10107, 'Fools and jesters'), +(10108, 'Lauder, Harry, Sir, 1870-1950'), +(10109, 'Plant anatomy'), +(10110, 'Candles'), +(10111, 'Philosophers, Ancient -- Biography'), +(10112, 'Persecution -- History -- Early church, ca. 30-600 -- Fiction'), +(10113, 'Gairloch (Scotland) -- History'), +(10114, 'Compromise (Ethics)'), +(10115, 'Weights and measures -- History'), +(10116, 'Prisons -- Great Britain'), +(10117, 'Elopement -- Fiction'), +(10118, 'Yorkshire (England) -- Description and travel'), +(10119, 'Lisieux (France) -- Biography'), +(10120, 'Game and game-birds -- North America'), +(10121, 'Yachts -- Juvenile fiction'), +(10122, 'Readers -- History'), +(10123, 'Prussia (Germany) -- History -- Frederick William I, 1713-1740'), +(10124, 'Toulouse-Lautrec, Henri de, 1864-1901'), +(10125, 'Explorers (Boy Scouts) -- Juvenile fiction'), +(10126, 'Keller, Gottfried, 1819-1890'), +(10127, 'Emmet, Robert, 1778-1803'), +(10128, 'Reformed Presbyterian Church of Ireland -- History'), +(10129, 'Teachers -- Scotland -- Biography'), +(10130, 'Great Britain -- History -- Edward III, 1327-1377'), +(10131, 'Ciudad Juárez (Mexico) -- Fiction'), +(10132, 'Crustacea -- Great Britain'), +(10133, 'Ethnology -- Africa'), +(10134, 'Niagara River (N.Y. and Ont.)'), +(10135, 'Gold -- Juvenile fiction'), +(10136, 'Hesiod -- Translations into English'), +(10137, 'Indian captivities -- Southwest, New'), +(10138, 'Freedom of the press -- Portugal'), +(10139, 'Nelson, Horatio Nelson, Viscount, 1758-1805'), +(10140, 'Laudatory poetry, Latin -- Adaptations'), +(10141, 'Athens (Greece) -- Fiction'), +(10142, 'Literature and folklore -- England -- History -- 16th century'), +(10143, 'Egoism -- Fiction'), +(10144, 'Irving, Washington, 1783-1859'), +(10145, 'Thanksgiving Day addresses'), +(10146, 'Rome -- Fiction'), +(10147, 'Bible. Daniel -- Commentaries'), +(10148, 'Westmorland (England) -- Antiquities'), +(10149, 'Diorama'), +(10150, 'Great Britain -- History -- William and Mary, 1689-1702 -- Fiction'), +(10151, 'Soups'), +(10152, 'Epic literature, Irish -- Translations into English'), +(10153, 'English language -- Semantics'), +(10154, 'Thomas, à Becket, Saint, 1118?-1170'), +(10155, 'Stoczek, Battle of, Poland, 1831'), +(10156, 'Sheffield plate'), +(10157, 'Tarot'), +(10158, 'Socialites -- Fiction'), +(10159, 'Dwellings -- Japan'), +(10160, 'Riley, James Whitcomb, 1849-1916'), +(10161, 'Knight, Ellis Cornelia, 1757-1837'), +(10162, 'Children\'s stories, Canadian'), +(10163, 'Lancashire (England) -- Antiquities'), +(10164, 'TRS-80 computers -- Handbooks, manuals, etc.'), +(10165, 'Sculpture, Greek'), +(10166, 'Authors, English -- 19th century -- Biography -- Juvenile literature'), +(10167, 'Freemasonry -- Symbolism'), +(10168, 'Composers -- France -- Biography'), +(10169, 'Brazil -- History -- Empire, 1822-1889'), +(10170, 'Humorous stories, Spanish'), +(10171, 'Tides'), +(10172, 'Lee, Robert E. (Robert Edward), 1807-1870 -- Fiction'), +(10173, 'Domestic fiction, American'), +(10174, 'Tales -- Russia'), +(10175, 'Henry III, King of England, 1207-1272'), +(10176, 'Painting, French -- France -- Provence'), +(10177, 'Russian literature -- Translations into German'), +(10178, 'Verdi, Giuseppe, 1813-1901 -- Juvenile literature'), +(10179, 'Romania -- History'), +(10180, 'Proverbs, Italian'), +(10181, 'Haunted houses -- Juvenile fiction'), +(10182, 'Natural history -- England -- Wiltshire'), +(10183, 'Grenades'), +(10184, 'Poets, English -- Early modern, 1500-1700 -- Biography'), +(10185, 'Mayflower Compact (1620)'), +(10186, 'Erotic poetry, Latin'), +(10187, 'New Forest (England : Forest) -- Juvenile fiction'), +(10188, 'Plane trigonometry'), +(10189, 'French -- Texas'), +(10190, 'Men -- England -- Fiction'), +(10191, 'Franz Joseph I, Emperor of Austria, 1830-1916'), +(10192, 'Nature in literature'), +(10193, 'Mythology, Greek -- Poetry'), +(10194, 'Occultism -- Miscellanea'), +(10195, 'West Indies -- Fiction'), +(10196, 'Quiché drama'), +(10197, 'Consciousness'), +(10198, 'Bible. Proverbs -- Criticism, interpretation, etc.'), +(10199, 'Germany -- Social life and customs -- 18th century -- Fiction'), +(10200, 'United States -- Population -- Statistics'), +(10201, 'United States -- Foreign relations -- Netherlands'), +(10202, 'Cromwell, Thomas, Earl of Essex, 1485?-1540'), +(10203, 'Northern War, 1700-1721 -- Fiction'), +(10204, 'Pottery, Ancient'), +(10205, 'Ireland -- Politics and government -- 18th century -- Humor'), +(10206, 'Mendelssohn-Bartholdy, Felix, 1809-1847. Elias'), +(10207, 'Great Britain -- Politics and government -- 1660-1688'), +(10208, 'Scranton (Pa.) -- Juvenile fiction'), +(10209, 'Blacks -- Biography'), +(10210, 'Disraeli, Benjamin, 1804-1881'), +(10211, 'Epitaphs -- Great Britain'), +(10212, 'Psychology, Comparative'), +(10213, 'Russians -- England -- Fiction'), +(10214, 'Rome -- Social life and customs -- Early works to 1800'), +(10215, 'Legends -- Pyrenees'), +(10216, 'Bourgogne, Adrien-Jean-Baptiste-François, 1785-1867'), +(10217, 'Peru (Ill.) -- History'), +(10218, 'Indians of North America -- Pacific Coast of North America'), +(10219, 'Satire, Latin -- Translations into English'), +(10220, 'Mozambique -- Description and travel'), +(10221, 'Gettysburg National Military Park (Pa.)'), +(10222, 'Missing children -- Fiction'), +(10223, 'Harrogate (England) -- Poetry'), +(10224, 'Children\'s stories, Japanese'), +(10225, 'Lodi, Francesco Melzi d\'Eril, duca di, 1753-1816'), +(10226, 'Bizet, Georges, 1838-1875 -- Correspondence'), +(10227, 'Skåne (Sweden) -- Fiction'), +(10228, 'Squash (Game)'), +(10229, 'Japan -- Social life and customs -- 19th century'), +(10230, 'Napoleon I, Emperor of the French, 1769-1821 -- Military leadership'), +(10231, 'Pageants -- Fiction'), +(10232, 'Type and type-founding'), +(10233, 'Red fox -- Anecdotes'), +(10234, 'Eskimos -- Juvenile fiction'), +(10235, 'Wessex (England) -- Description and travel'), +(10236, 'Missionaries -- India -- Biography'), +(10237, 'Camões, Luís de, 1524?-1580 -- Poetry'), +(10238, 'Holy Roman Empire -- History -- Rudolf II, 1576-1612 -- Drama'), +(10239, 'Critical thinking'), +(10240, 'Germany. Heer -- History -- World War, 1914-1918'), +(10241, 'Liberalism -- Spain -- History -- 19th century -- Fiction'), +(10242, 'Manners and customs -- Juvenile literature'), +(10243, 'World War, 1914-1918 -- Campaigns -- France -- Somme -- Pictorial works'), +(10244, 'Dentistry -- Periodicals'), +(10245, 'Washington, George, 1732-1799 -- Juvenile literature'), +(10246, 'Taiwan -- History'), +(10247, 'West Country (England) -- Social life and customs -- Fiction'), +(10248, 'Bank employees -- Fiction'), +(10249, 'Tripoli (Libya) -- Description and travel'), +(10250, 'W. & R. Chambers Ltd. -- Catalogs'), +(10251, 'Hawker, Robert Stephen, 1803?-1875'), +(10252, 'Dance -- History -- Early works to 1800'), +(10253, 'Torture -- Fiction'), +(10254, 'Monsters -- Fiction'), +(10255, 'Military cadets -- Juvenile fiction'), +(10256, 'Alabama -- History -- Civil War, 1861-1865 -- Fiction'), +(10257, 'Indian mythology -- Mexico'), +(10258, 'Prisons -- Poetry'), +(10259, 'Iran -- Fiction'), +(10260, 'Women -- United States -- Biography'), +(10261, 'Roads, Roman -- Portugal'), +(10262, 'Children of police -- Juvenile fiction'), +(10263, 'Musicians -- Germany'), +(10264, 'Cattraeth, Battle of, Catterick, England, ca. 600 -- Poetry'), +(10265, 'Brandenburg (Germany) -- Description and travel'), +(10266, 'Prussia (Germany) -- Fiction'), +(10267, 'Tobacco -- History'), +(10268, 'Playing cards'), +(10269, 'Taboo'), +(10270, 'Electricity -- Biography'), +(10271, 'Portuguese language'), +(10272, 'Louisiana -- History -- Civil War, 1861-1865 -- Fiction'), +(10273, 'General stores -- Fiction'), +(10274, 'Holidays -- Juvenile literature'), +(10275, 'Fathers -- Juvenile fiction'), +(10276, 'English language -- Study and teaching'), +(10277, 'Italic type'), +(10278, 'Artists -- Correspondence, reminiscences, etc.'), +(10279, 'Sailors -- Poetry'), +(10280, 'Anglican Communion -- Liturgy'), +(10281, 'Natural history -- Sierra Nevada (Calif. and Nev.)'), +(10282, 'Legends -- Colorado -- Pikes Peak Region'), +(10283, 'Ballantyne, R. M. (Robert Michael), 1825-1894 -- Anecdotes'), +(10284, 'Cherokee language -- Glossaries, vocabularies, etc.'), +(10285, 'Voyages, Imaginary -- Fiction'), +(10286, 'Nightmares'), +(10287, 'Bible. New Testament -- History of Biblical events -- Fiction'), +(10288, 'Pondicherry (India) -- Description and travel'), +(10289, 'Sequences (Liturgy)'), +(10290, 'Pompeii (Extinct city)'), +(10291, 'Classical languages -- Pronunciation'), +(10292, 'Fortune'), +(10293, 'Andronicus, Titus (Legendary character) -- Drama'), +(10294, 'Prussia (Germany). Armee. Grosser Generalstab'), +(10295, 'Blind'), +(10296, 'Blenheim, Battle of, Blindheim, Bavaria, Germany, 1704 -- Juvenile fiction'), +(10297, 'Ireland -- History -- Famine, 1845-1852'), +(10298, 'Pistols'), +(10299, 'Gloucestershire (England) -- Social life and customs'), +(10300, 'Geneva (Switzerland) -- Description and travel'), +(10301, 'Portugal -- Politics and government -- Periodicals'), +(10302, 'United States -- History -- Civil War, 1861-1865 -- War work'), +(10303, 'Germany -- Foreign relations'), +(10304, 'Westmorland (England) -- Fiction'), +(10305, 'Fairy tales -- Czechoslovakia'), +(10306, 'French -- West (U.S.) -- Fiction'), +(10307, 'Working class'), +(10308, 'Weights and measures'), +(10309, 'Leander (Greek mythology) -- Drama'), +(10310, 'Children\'s libraries -- United States'), +(10311, 'Worcester (Mass.) -- Biography'), +(10312, 'Jellyfishes'), +(10313, 'Fugitives from justice -- Fiction'), +(10314, 'Religion and medicine'), +(10315, 'Elisabeth, Princess of France, 1764-1794'), +(10316, 'Strawberries -- Michigan -- Catalogs'), +(10317, 'Ware, Mary L. (Mary Lovell), 1798-1849'), +(10318, 'Mammals -- Rocky Mountains -- Identification'), +(10319, 'African Americans -- Legal status, laws, etc.'), +(10320, 'Oriental literature -- Translations into English'), +(10321, 'Gnomes -- Juvenile fiction'), +(10322, 'Folklore -- Babylonia'), +(10323, 'Kirkcaldy, William, Sir, -1573'), +(10324, 'Children\'s stories, Danish -- Translations into English'), +(10325, 'United States -- History -- Revolution, 1775-1783 -- Naval operations'), +(10326, 'Napoleonic Wars, 1800-1815 -- Campaigns -- Italy -- Fiction'), +(10327, 'Lawns'), +(10328, 'Zhong yong'), +(10329, 'Taylor, Thomas E.'), +(10330, 'Botany -- Great Britain -- History'), +(10331, 'Naturalists -- Correspondence'), +(10332, 'Folk literature, Italian -- Florence'), +(10333, 'Canada -- Humor'), +(10334, 'Political corruption -- West (U.S.) -- Fiction'), +(10335, 'Welsh periodicals -- 19th century'), +(10336, 'Health -- Religious aspects'), +(10337, 'Unemployed -- United States'), +(10338, 'Great Britain -- Colonies -- Administration -- History -- 19th century'), +(10339, 'Publishers\' catalogs -- Pennsylvania -- Philadelphia'), +(10340, 'Paleontology -- Pleistocene'), +(10341, 'Asiatic elephant -- Juvenile fiction'), +(10342, 'Muhammad, Prophet, -632 -- Fiction'), +(10343, 'Auburndale Watch Company (Auburndale, Mass.)'), +(10344, 'Indonesia -- Antiquities'), +(10345, 'Folklore -- South Africa'), +(10346, 'Great Britain -- Politics and government -- 19th century'), +(10347, 'Caucasus -- History -- Juvenile fiction'), +(10348, 'Jersey (Channel Islands) -- Fiction'), +(10349, 'Poe, Edgar Allan, 1809-1849 -- Translations into French'), +(10350, 'Gran Chaco -- Juvenile fiction'), +(10351, 'Apocryphal Gospels'), +(10352, 'Commodus, Emperor of Rome, 161-192 -- Fiction'), +(10353, 'Dauphiné (France) -- Description and travel'), +(10354, 'Industrial arts -- Juvenile literature'), +(10355, 'Fleas'), +(10356, 'Mississippi -- Description and travel'), +(10357, 'Douglas, Stephen A. (Stephen Arnold), 1813-1861 -- Fiction'), +(10358, 'Child labor'), +(10359, 'Satire, Latin -- Translations into French'), +(10360, 'Hangzhou (China) -- History -- Fiction'), +(10361, 'Prostitutes -- Great Britain -- Social conditions -- 19th century -- Drama'), +(10362, 'Winchester (England) -- Description and travel'), +(10363, 'South African War, 1899-1902 -- Juvenile fiction'), +(10364, 'Reincarnation'), +(10365, 'Western Apache Indians -- Folklore'), +(10366, 'Lajimonière, Marie Anne Gaboury, 1782-1878'), +(10367, 'Bunin, Ivan Alekseevich, 1870-1953 -- Translations into English'), +(10368, 'Swearing'), +(10369, 'Bath (England) -- Pictorial works'), +(10370, 'African Americans -- Suffrage -- Southern States'), +(10371, 'Heroes -- Juvenile fiction'), +(10372, 'Charles, Duke of Burgundy, 1433-1477 -- Fiction'), +(10373, 'Monastic and religious life -- Fiction'), +(10374, 'Polish poetry'), +(10375, 'Poland -- History -- Partition period, 1763-1796 -- Fiction'), +(10376, 'Burma -- Fiction'), +(10377, 'Etiquette -- France'), +(10378, 'Postal service -- France'), +(10379, 'Neptune (Steamship)'), +(10380, 'Schubert, Franz, 1797-1828'), +(10381, 'Universität Basel'), +(10382, 'Hearn, Lafcadio, 1850-1904 -- Homes and haunts -- Japan'), +(10383, 'Brock, Isaac, Sir, 1769-1812'), +(10384, 'Free trade -- Canada'), +(10385, 'Quaker Hill (N.Y.)'), +(10386, 'Aristocracy (Social class)'), +(10387, 'Slave narratives -- Arkansas'), +(10388, 'Conwell, Russell H., 1843-1925'), +(10389, 'China -- History -- Tatar Conquest, 1643-1644 -- Fiction'), +(10390, 'Apollo 11 (Spacecraft)'), +(10391, 'Synge, J. M. (John Millington), 1871-1909'), +(10392, 'Presbyterian Church -- Scotland -- History -- Sources'), +(10393, 'León, Luis de, 1527-1591'), +(10394, 'Finnish Fiction -- Translations into Esperanto'), +(10395, 'Travel, Medieval'), +(10396, 'Sleepwalking -- Fiction'), +(10397, 'Frontier and pioneer life -- Oklahoma -- Juvenile fiction'), +(10398, 'China -- History -- Taiping Rebellion, 1850-1864'), +(10399, 'Smith, Joseph, Jr., 1805-1844 -- Juvenile literature'), +(10400, 'Maes Howe (Scotland)'), +(10401, 'Lepadidae'), +(10402, 'Gardening -- England -- Early works to 1800'), +(10403, 'Portugal -- History -- Afonso I, 1139-1185'), +(10404, 'Moravian Church -- History'), +(10405, 'Birdhouses'), +(10406, 'Missions -- Hawaii'), +(10407, 'Indifferentism (Religion)'), +(10408, 'South Africa -- History -- 19th century -- Fiction'), +(10409, 'Genius'), +(10410, 'Guerrilla warfare'), +(10411, 'India -- History -- 18th century'), +(10412, 'University of Chicago. University Elementary School'), +(10413, 'Fort Dearborn Massacre, Chicago, Ill., 1812'), +(10414, 'Cold -- Juvenile fiction'), +(10415, 'Jungles -- Juvenile fiction'), +(10416, 'Brigid, of Ireland, Saint, approximately 453-approximately 524'), +(10417, 'Hoosac Tunnel (Mass.)'), +(10418, 'Political science -- China -- Early works to 1800'), +(10419, 'Etiquette, Medieval'), +(10420, 'Great Britain -- History -- Edward II, 1307-1327 -- Drama'), +(10421, 'Oregon Territory -- History -- Fiction'), +(10422, 'Musical analysis'), +(10423, 'Isaac Pitman & Sons -- Catalogs'), +(10424, 'Bruges (Belgium) -- Description and travel'), +(10425, 'Christian ethics'), +(10426, 'Philosophy, Renaissance'), +(10427, 'Huguenots -- Fiction'), +(10428, 'Architecture -- England -- History'), +(10429, 'Estonian literature -- History and criticism'), +(10430, 'Dressmaking'), +(10431, 'Charles XII, King of Sweden, 1682-1718'), +(10432, 'Chinese poetry -- Qing dynasty, 1644-1912'), +(10433, 'Eliot, John, 1604-1690'), +(10434, 'Tenement houses -- Fiction'), +(10435, 'Adventure stories -- Periodicals'), +(10436, 'California -- History'), +(10437, 'Methodism -- Humor'), +(10438, 'Québec (Province) -- History'), +(10439, 'Balneology'), +(10440, 'Brown, James S. (James Stephens), 1828-1902'), +(10441, 'English language -- Foreign elements -- French'), +(10442, 'Madagascar -- History -- Juvenile fiction'), +(10443, 'Great Britain -- History -- Angevin period, 1154-1216 -- Sources'), +(10444, 'Rivers -- Great Britain'), +(10445, 'Actors and actresses -- Fiction'), +(10446, 'Jesus Christ -- Biography'), +(10447, 'Schooners -- Fiction'), +(10448, 'Women textile workers -- Massachusetts -- Lowell -- Biography'), +(10449, 'Lancaster (Ky.) -- History -- Poetry'), +(10450, 'America -- Discovery and exploration -- Chinese'), +(10451, 'New South Wales -- Social life and customs'), +(10452, 'Decorative arts -- Spain -- History'), +(10453, 'United States. Army -- Military life -- Fiction'), +(10454, 'Custer, Elizabeth Bacon, 1842-1933'), +(10455, 'France -- Civilization'), +(10456, 'Astronomical Society of the Pacific -- Periodicals'), +(10457, 'Graham, John, Viscount Dundee, 1648-1689 -- Fiction'), +(10458, 'English fiction -- 20th century -- History and criticism'), +(10459, 'Archimedes'), +(10460, 'Calabria -- Description and travel'), +(10461, 'Drainage'), +(10462, 'Young women -- Societies and clubs -- Juvenile fiction'), +(10463, 'Secret service -- United States -- Juvenile fiction'), +(10464, 'Trafalgar, Battle of, 1805 -- Juvenile fiction'), +(10465, 'Folk poetry, Karelian -- Translations into Finnish'), +(10466, 'United States -- History -- Revolution, 1775-1783 -- Prisoners and prisons -- Personal narratives'), +(10467, 'Great Britain -- Commercial policy'), +(10468, 'Bloomingdale Asylum for the Insane'), +(10469, 'Jews -- History -- To 70 A.D.'), +(10470, 'Marine animals -- Juvenile literature'), +(10471, 'Yakima River Valley (Wash.) -- Antiquities'), +(10472, 'Experience'), +(10473, 'Children, Prehistoric -- Juvenile fiction'), +(10474, 'Farm management -- Early works to 1800'), +(10475, 'Symbolism'), +(10476, 'Brandão, Raul, 1867-1930'), +(10477, 'Circuit riders -- Fiction'), +(10478, 'Peking to Paris Motor Challenge (1st : 1907)'), +(10479, 'Anarchism -- History'), +(10480, 'Louisiana Purchase Exposition (1904 : Saint Louis, Mo.) -- Fiction'), +(10481, 'Wishes -- Fiction'), +(10482, 'Children -- Québec (Province) -- Juvenile literature'), +(10483, 'Puerto Rican literature'), +(10484, 'Italian literature -- Translations into Dutch'), +(10485, 'Horror tales, French'), +(10486, 'Great Britain. Royal Navy -- Officers -- Juvenile fiction'), +(10487, 'United States Military Academy'), +(10488, 'Charles XII, King of Sweden, 1682-1718 -- Juvenile fiction'), +(10489, 'La Salle, Robert Cavelier, sieur de, 1643-1687 -- Fiction'), +(10490, 'Blackboard drawing'), +(10491, 'Carson Kit, 1809-1868'), +(10492, 'Christian sects -- History -- 19th century'), +(10493, 'Pottery, English -- History'), +(10494, 'Spinning'), +(10495, 'Sudan -- History, Military'), +(10496, 'James River (Va.)'), +(10497, 'Suffering -- Religious aspects -- Christianity'), +(10498, 'Latin America -- History'), +(10499, 'Elgin, James Bruce, Earl of, 1811-1863'), +(10500, 'Pittsburgh (Pa.) -- Poetry'), +(10501, 'Great Britain. Army. Queen\'s Own Cameron Highlanders'), +(10502, 'Origen. Contra Celsum'), +(10503, 'Chinese language -- Readers'), +(10504, 'Accordion music'), +(10505, 'Russian literature -- Translations into English'), +(10506, 'Mendes, Carlos Fradique -- Correspondence'), +(10507, 'Respiration -- Religious aspects -- Hinduism'), +(10508, 'Druids and druidism -- Fiction'), +(10509, 'Christian Science -- Controversial literature'), +(10510, 'United States -- Description and travel -- Fiction'), +(10511, 'Celts -- Isle of Man -- Folklore'), +(10512, 'Labor -- United States'), +(10513, 'Great Britain -- History -- Henry VII, 1485-1509 -- Fiction'), +(10514, 'Counterpoint'), +(10515, 'Järnefelt, Arvid, 1861-1932 -- Travel -- Russia'), +(10516, 'Religion and ethics'), +(10517, 'Great Britain -- History -- Wars of the Roses, 1455-1485 -- Fiction'), +(10518, 'Lutheran Church -- Missions'), +(10519, 'Travelers -- Great Britain -- Diaries'), +(10520, 'Haywood, Eliza Fowler, 1693?-1756'), +(10521, 'Chinese poetry'), +(10522, 'Heraldry -- Great Britain'), +(10523, 'Missionary Education Movement of the United States and Canada'), +(10524, 'Bengali poetry -- Translations into Dutch'), +(10525, 'Love poetry, Romance'), +(10526, 'Thanksgiving Day sermons'), +(10527, 'Como, Lake (Italy) -- Description and travel'), +(10528, 'Intellectuals -- France -- Paris -- Fiction'), +(10529, 'Siegfried (Legendary character) -- Fiction'), +(10530, 'Automobiles -- Motors -- Carburetors'), +(10531, 'New York State Historical Association -- Periodicals'), +(10532, 'Plague -- England -- London -- Fiction'), +(10533, 'Consumption (Economics) -- Fiction'), +(10534, 'Politicians -- France -- 19th century -- Fiction'), +(10535, 'Poets, Welsh -- 20th century -- Biography'), +(10536, 'Canada. Post Office Department'), +(10537, 'Plant, Henry Bradley, 1819-1899'), +(10538, 'Newfoundland and Labrador -- Juvenile fiction'), +(10539, 'Philosophy, Modern -- 18th century'), +(10540, 'Godunov, Boris Fyodorovich, Czar of Russia, 1551 or 2-1605 -- Drama'), +(10541, 'Postal service -- Canada'), +(10542, 'Life on other planets'), +(10543, 'Catholic Church'), +(10544, 'Canada -- History -- Fenian invasions, 1866-1870 -- Fiction'), +(10545, 'Paper industry'), +(10546, 'Incantations'), +(10547, 'Railroads -- Freight -- Rates'), +(10548, 'Orchids'), +(10549, 'IJssel Lake (Netherlands)'), +(10550, 'Great Britain -- History -- Henry VIII, 1509-1547 -- Drama'), +(10551, 'Mechanical engineering'), +(10552, 'Great Britain -- History -- Henry III, 1216-1272 -- Fiction'), +(10553, 'Fractures -- Treatment'), +(10554, 'Bible. Kings, 1st -- Commentaries'), +(10555, 'Orphanages -- Great Britain'), +(10556, 'Women dramatists -- Juvenile fiction'), +(10557, 'Mountaineering -- Periodicals'), +(10558, 'Bible. Revelation -- Commentaries'), +(10559, 'Lincoln, Abraham, 1809-1865 -- Juvenile fiction'), +(10560, 'Buffalo Bill, 1846-1917 -- Fiction'), +(10561, 'Bible. New Testament -- Criticism, interpretation, etc.'), +(10562, 'Jerusalem -- History -- Siege, 70 A.D. -- Poetry'), +(10563, 'Ireland -- Antiquities'), +(10564, 'Hague (Netherlands) -- Fiction'), +(10565, 'Devil in literature'), +(10566, 'English essays -- Early modern, 1500-1700'), +(10567, 'Ignatius, Saint, Bishop of Antioch, -approximately 110. Correspondence. Polyglot'), +(10568, 'Iran -- Social life and customs'), +(10569, 'Puerto Rico -- Annexation to the United States'), +(10570, 'Eumeces fasciatus'), +(10571, 'Magdeburg (Germany) -- History -- Siege, 1631'), +(10572, 'Olive oil'), +(10573, 'Madagascar -- Discovery and exploration'), +(10574, 'Pocket gophers -- Utah'), +(10575, 'Curzon, Robert, 1810-1873 -- Travel -- Armenia'), +(10576, 'Boxing'), +(10577, 'Christianity -- Great Britain'), +(10578, 'Sun, Yat-sen, 1866-1925. San min zhu yi'), +(10579, 'Hundred Years\' War, 1339-1453 -- Juvenile fiction'), +(10580, 'Mayors -- Fiction'), +(10581, 'Pontmartin, Armand, comte de, 1811-1890'), +(10582, 'Indian pottery -- Mississippi River Valley'), +(10583, 'Turtles, Fossil -- Oklahoma'), +(10584, 'Cauliflower'), +(10585, 'Great Britain -- History -- Richard III, 1483-1485'), +(10586, 'Cornwall (England : County) -- Juvenile fiction'), +(10587, 'Alphabet rhymes'), +(10588, 'Supernatural'), +(10589, 'Seashore animals -- Juvenile literature'), +(10590, 'Animals -- Pictorial works -- Juvenile literature'), +(10591, 'Bermuda Islands -- Fiction'), +(10592, 'Eastern question (Balkan)'), +(10593, 'Condillac, Etienne Bonnot de, 1714-1780'), +(10594, 'China. Hai guan zong shui wu si shu -- History'), +(10595, 'Legends -- Alaska'), +(10596, 'Postage stamps -- United States'), +(10597, 'Gordon Riots, 1780 -- Fiction'), +(10598, 'Mimicry (Biology)'), +(10599, 'Tribes'), +(10600, 'Western Australia -- Description and travel'), +(10601, 'Reformed Church -- Switzerland -- Geneva -- Clergy -- Correspondence'), +(10602, 'Dreyfus, Alfred, 1859-1935 -- Trials, litigation, etc.'), +(10603, 'English drama -- Irish authors'), +(10604, 'Sinagua culture -- Arizona -- Walnut Canyon National Monument'), +(10605, 'Springs -- Scotland -- Folklore'), +(10606, 'Mexican Americans -- Fiction'), +(10607, 'Great Britain -- Politics and government -- 1800-1837'), +(10608, 'Animals -- Yellowstone National Park'), +(10609, 'France -- History -- Regency, 1715-1723 -- Fiction'), +(10610, 'Yosemite National Park (Calif.) -- Guidebooks'), +(10611, 'Montparnasse (Paris, France) -- Fiction'), +(10612, 'Great Britain -- History -- Charles I, 1625-1649 -- Fiction'), +(10613, 'Conformity -- Fiction'), +(10614, 'Aliens -- United States'), +(10615, 'Women\'s rights -- France'), +(10616, 'Advertising -- Cotton thread'), +(10617, 'Christian life -- Methodist authors'), +(10618, 'Canals -- Panama'), +(10619, 'Subconsciousness'), +(10620, 'Czech language -- Grammar'), +(10621, 'Aristocracy (Social class) -- Fiction'), +(10622, 'Prairie Provinces -- Fiction'), +(10623, 'Grandfathers -- Fiction'), +(10624, 'Slavery -- Tennessee'), +(10625, 'Knights and knighthood in literature'), +(10626, 'Great Britain -- History -- Victoria, 1837-1901 -- Sources'), +(10627, 'Red Cross and Red Crescent -- Juvenile literature'), +(10628, 'Seven Days\' Battles, Va., 1862'), +(10629, 'Missionaries -- Juvenile fiction'), +(10630, 'Tanning'), +(10631, 'Geology -- Wyoming -- Grand Teton National Park'), +(10632, 'Nonassociative algebras'), +(10633, 'Bayard, Pierre Terrail, seigneur de, approximately 1473-1524'), +(10634, 'Somme, 1st Battle of the, France, 1916'), +(10635, 'Women -- Societies and clubs'), +(10636, 'Pringle, Elizabeth W. Allston (Elizabeth Waties Allston), 1845-1921'), +(10637, 'Feminist fiction'), +(10638, 'Watteau, Antoine, 1684-1721'), +(10639, 'Spanish-American War, 1898 -- Personal narratives'), +(10640, 'Jacqueline, Countess of Hainaut, 1401-1436'), +(10641, 'Glass painting and staining -- England'), +(10642, 'Italy -- Social conditions'), +(10643, 'France -- Juvenile literature'), +(10644, 'Patton, Francis L. (Francis Landey), 1843-1932'), +(10645, 'Warwick, Richard Neville, Earl of, 1428-1471 -- Fiction'), +(10646, 'Lighthouses -- Juvenile fiction'), +(10647, 'Prospecting -- Fiction'), +(10648, 'Swedish poetry'), +(10649, 'Students -- Finland -- Helsinki -- Fiction'), +(10650, 'Gramont, Philibert, comte de, 1621-1707'), +(10651, 'Great Britain -- History -- William IV, 1830-1837'), +(10652, 'Astronomy -- Observers\' manuals'), +(10653, 'Polish question'), +(10654, 'Railroads -- Design and construction -- Fiction'), +(10655, 'Cowgirls -- Juvenile fiction'), +(10656, 'Verona (Italy) -- Drama'), +(10657, 'Seminole War, 2nd, 1835-1842'), +(10658, 'Lyly, John, 1554?-1606 -- Criticism and interpretation'), +(10659, 'African Americans -- Music -- History and criticism'), +(10660, 'Games -- Juvenile literature'), +(10661, 'Women -- Conduct of life -- Drama'), +(10662, 'Political statistics -- Handbooks, manuals, etc.'), +(10663, 'Europe -- Social life and customs -- Fiction'), +(10664, 'Peonage -- United States'), +(10665, 'Paris (France) -- History -- Siege, 1870-1871 -- Personal narratives'), +(10666, 'Dvaita (Vedanta) -- Early works to 1800'), +(10667, 'Poets, English -- 19th century -- Diaries'), +(10668, 'Leutwein, Theodor Gotthilf von, 1849-1921'), +(10669, 'Learning and scholarship -- Germany'), +(10670, 'Writing -- Identification'), +(10671, 'Palgrave, William, 1745-1822 -- Poetry'), +(10672, 'France -- History -- Louis Philippe, 1830-1848 -- Fiction'), +(10673, 'Children and adults -- Fiction'), +(10674, 'Orders of knighthood and chivalry -- Great Britain -- History'), +(10675, 'Women -- Greece -- History'), +(10676, 'Gardening -- Juvenile fiction'), +(10677, 'Travel -- Juvenile literature'), +(10678, 'Children -- Iran -- Juvenile literature'), +(10679, 'Sanitation, Household'), +(10680, 'Roanoke River Valley (Va. and N.C.) -- Fiction'), +(10681, 'Short stories, Bulgarian'), +(10682, 'Children and animals -- Juvenile fiction'), +(10683, 'Authors, Russian -- 19th century -- Correspondence'), +(10684, 'Queens -- Juvenile fiction'), +(10685, 'Great Britain. Army. Regiment of Foot, 53rd -- History'), +(10686, 'Gauguin, Paul, 1848-1903'), +(10687, 'Hugo, Victor, 1802-1885'), +(10688, 'Monophysites'), +(10689, 'United States. Army. Massachusetts Infantry Regiment, 45th (1862-1863)'), +(10690, 'Mérimée, Prosper, 1803-1870'), +(10691, 'Bible. Numbers -- Commentaries'), +(10692, 'Architecture -- Pennsylvania -- Philadelphia'), +(10693, 'Philosophy, Ancient -- Poetry'), +(10694, 'German poetry -- Middle High German, 1050-1500'), +(10695, 'Earth (Planet)'), +(10696, 'Chemistry -- History'), +(10697, 'Jews -- History -- 70-'), +(10698, 'Wales -- Biography'), +(10699, 'Church buildings -- England -- London -- Directories'), +(10700, 'Germany -- Foreign relations -- United States'), +(10701, 'Sanskrit literature -- Translations into English'), +(10702, 'Women college graduates -- Fiction'), +(10703, 'Bandelier National Monument (N.M.)'), +(10704, 'Scotland -- History -- 1057-1603 -- Fiction'), +(10705, 'Brontë, Emily, 1818-1848'), +(10706, 'Revolutions -- Fiction'), +(10707, 'Bible. Apocrypha. Baruch'), +(10708, 'Mythology, Japanese'), +(10709, 'Women -- Suffrage -- History'), +(10710, 'Paraguayan War, 1865-1870'), +(10711, 'Sweden -- History -- Charles XII, 1697-1718 -- Fiction'), +(10712, 'Immortality -- Fiction'), +(10713, 'France -- Foreign relations -- United States'), +(10714, 'Great Britain -- History -- Tudors, 1485-1603 -- Fiction'), +(10715, 'Confederate States of America. Navy -- Biography'), +(10716, 'Private secretaries -- Fiction'), +(10717, 'Portugal. Laws, etc.'), +(10718, 'Rio de la Plata (Argentina and Uruguay) -- Discovery and exploration'), +(10719, 'Fur-bearing animals'), +(10720, 'Elba (Italy) -- Fiction'), +(10721, 'American poetry -- Revolutionary period, 1775-1783 -- Bibliography'), +(10722, 'Logic, Ancient'), +(10723, 'Whole body counters'), +(10724, 'Bible. New Testament -- History'), +(10725, 'Catholic Church -- Doctrines -- Early works to 1800'), +(10726, 'Bacteria'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(10727, 'Books -- Literary collections'), +(10728, 'Barsetshire (England: Imaginary place) -- Fiction'), +(10729, 'Statesmen -- Rome -- Biography'), +(10730, 'Viticulture -- California'), +(10731, 'Hindus -- Folklore'), +(10732, 'Indians of South America'), +(10733, 'Fissure in Ano'), +(10734, 'Slessor, Mary Mitchell, 1848-1915'), +(10735, 'Great Britain -- History -- Edward III, 1327-1377 -- Juvenile fiction'), +(10736, 'Bible. Historical Books -- Commentaries'), +(10737, 'Bannock Indians'), +(10738, 'Shakespeare, William, 1564-1616 -- Philosophy'), +(10739, 'Indians of Central America'), +(10740, 'Smith, Charles W.'), +(10741, 'Pterosauria'), +(10742, 'Labor unions -- United States -- Drama'), +(10743, 'Soldiers -- Conduct of life'), +(10744, 'Cathedrals -- France'), +(10745, 'United States. Army -- Communication systems'), +(10746, 'Cooking (Fruit) -- Early works to 1800'), +(10747, 'Gautama Buddha -- Legends -- Adaptations'), +(10748, 'Dogs -- Early works to 1800'), +(10749, 'Amazon River -- Juvenile fiction'), +(10750, 'Missions -- Canada'), +(10751, 'Skis and skiing'), +(10752, 'French language -- Canada -- Dictionaries'), +(10753, 'Bounty Mutiny, 1789'), +(10754, 'Guinea pigs -- Juvenile fiction'), +(10755, 'Pirates -- History'), +(10756, 'Bible. Corinthians -- Criticism, interpretation, etc.'), +(10757, 'Americans -- Russia -- Juvenile fiction'), +(10758, 'Journalism -- Fiction'), +(10759, 'Mothers -- Conduct of life'), +(10760, 'Lincoln, Abraham, 1809-1865 -- Political career before 1861'), +(10761, 'Fishes -- United States'), +(10762, 'Private libraries -- England -- Catalogs'), +(10763, 'Johnson, Samuel, 1709-1784 -- Travel -- Scotland -- Hebrides'), +(10764, 'Crows -- Juvenile poetry'), +(10765, 'Venice (Italy) -- History'), +(10766, 'Emerson, Ralph Waldo, 1803-1882'), +(10767, 'Schoolgirls -- Fiction'), +(10768, 'Prodigal son (Parable) -- Commentaries'), +(10769, 'Armenia -- Fiction'), +(10770, 'Florida -- Fiction'), +(10771, 'France -- History -- Louis XV, 1715-1774'), +(10772, 'Premo camera -- Catalogs'), +(10773, 'Rape victims -- Fiction'), +(10774, 'Lady of the Lake (Legendary character) -- Poetry'), +(10775, 'United States -- Biography -- Juvenile literature'), +(10776, 'Bats -- Mexico -- Izamal -- Classification'), +(10777, 'Vienna (Austria) -- Intellectual life -- 18th century'), +(10778, 'Swedish language -- Readers'), +(10779, 'Chantal, Jeanne-Françoise de, Saint, 1572-1641 -- Correspondence'), +(10780, 'Theater -- Moral and ethical aspects'), +(10781, 'Actresses -- France -- Correspondence'), +(10782, 'Geometry -- Study and teaching'), +(10783, 'Chinese fiction -- To 618'), +(10784, 'Christian life -- Juvenile literature'), +(10785, 'India -- History -- Mysore War, 1799 -- Fiction'), +(10786, 'Crystal Palace (London, England)'), +(10787, 'Europe -- History -- Hanseatic League'), +(10788, 'Society of Friends -- Doctrines -- Early works to 1800'), +(10789, 'Miniature painting'), +(10790, 'Scriptoria -- England'), +(10791, 'Microscopes'), +(10792, 'West Riding of Yorkshire (England) -- Fiction'), +(10793, 'Textile industry'), +(10794, 'Sound -- Recording and reproducing'), +(10795, 'Temperance -- Societies, etc.'), +(10796, 'Divorced women -- Fiction'), +(10797, 'Vocational guidance'), +(10798, 'Canada -- History -- Fenian Invasions, 1866-1870'), +(10799, 'Ward, Humphry, Mrs., 1851-1920'), +(10800, 'Bridge whist'), +(10801, 'War posters'), +(10802, 'Illyria -- Drama'), +(10803, 'Conduct of life -- Drama'), +(10804, 'Maritime law -- United States'), +(10805, 'Homer -- Translations into French'), +(10806, 'Ethnology -- Africa, West'), +(10807, 'Peterloo Massacre, Manchester, England, 1819'), +(10808, 'Jupiter (Planet) -- Fiction'), +(10809, 'Juvenile fiction'), +(10810, 'Children -- Czechoslovakia -- Juvenile literature'), +(10811, 'Hymenoptera -- Great Britain'), +(10812, 'Speculation -- Fiction'), +(10813, 'Juggling -- Early works to 1800'), +(10814, 'World War, 1914-1918 -- Australia'), +(10815, 'Patriotism'), +(10816, 'Anacreon -- Parodies, imitations, etc.'), +(10817, 'Printing -- United States -- History'), +(10818, 'Stradella, Alessandro, 1639-1682 -- Fiction'), +(10819, 'Bicycle touring'), +(10820, 'Machine theory'), +(10821, 'Minnesota -- History, Local'), +(10822, 'Tuxpan de Rodríguez Cano (Mexico)'), +(10823, 'Assyro-Babylonian literature -- Translations into English'), +(10824, 'Fables -- Juvenile literature'), +(10825, 'Ku Klux Klan (1915- )'), +(10826, 'Trojan War -- Drama'), +(10827, 'Cathedrals -- Rhine River Valley'), +(10828, 'Opium abuse'), +(10829, 'Manors -- Québec (Province) -- Lacolle'), +(10830, 'Scouting (Reconnaissance) -- Fiction'), +(10831, 'Sanitation'), +(10832, 'Dinners and dining -- Greece'), +(10833, 'Pattison, Mark, 1813-1884. Memoirs'), +(10834, 'Zoroastrianism -- Poetry'), +(10835, 'Seven Years\' War, 1756-1763 -- Medical care'), +(10836, 'Irish literature'), +(10837, 'Psychics -- Fiction'), +(10838, 'Military training camps -- United States'), +(10839, 'Franciscans -- California'), +(10840, 'Pottery, Chinese'), +(10841, 'Austen, Jane, 1775-1817 -- Criticism and interpretation'), +(10842, 'Geography, Medieval'), +(10843, 'Table service'), +(10844, 'Agriculture -- United States'), +(10845, 'New Zealand poetry -- 20th century'), +(10846, 'Journalism -- Style manuals'), +(10847, 'Art thefts -- Fiction'), +(10848, 'Lippi, Filippo, approximately 1406-1469'), +(10849, 'Cathedrals -- England -- London'), +(10850, 'Gas manufacture and works -- Periodicals'), +(10851, 'Italian drama -- 20th century'), +(10852, 'Invalids -- Juvenile fiction'), +(10853, 'Devil'), +(10854, 'Dice'), +(10855, 'Bayern (Bavaria, Germany : Province) -- Fiction'), +(10856, 'Great Britain -- History -- Tudors, 1485-1603 -- Sources'), +(10857, 'Mines (Military explosives) -- Warfare'), +(10858, 'Boston (Mass.) -- Description and travel'), +(10859, 'Donatists'), +(10860, 'Monasticism and religious orders for women -- Anglican Communion'), +(10861, 'Saint Lawrence River Region -- Fiction'), +(10862, 'Vianen (Netherlands)'), +(10863, 'Combustion'), +(10864, 'South Africa -- History -- Frontier Wars, 1811-1878'), +(10865, 'Robbers and outlaws -- Fiction'), +(10866, 'Numa Pompilius, King of Rome, fl. 715-673 B.C. -- Religion'), +(10867, 'Beijing (China) -- History -- Siege, 1900'), +(10868, 'Ordine della Santissima Annunziata'), +(10869, 'Tramps -- United States'), +(10870, 'Public health -- Great Britain'), +(10871, 'Clipper ships'), +(10872, 'Confederate States of America. Army. Georgia Infantry Regiment, 1st (1861-1865)'), +(10873, 'Trees -- Juvenile fiction'), +(10874, 'Clergy -- United States -- Biography'), +(10875, 'Air -- Early works to 1800'), +(10876, 'Gambling -- Fiction'), +(10877, 'Composers -- United States -- Biography'), +(10878, 'Charlemagne, Emperor, 742-814 -- Romances'), +(10879, 'Pyrenees -- Social life and customs -- Fiction'), +(10880, 'Fortune-telling by tea leaves'), +(10881, 'Witchcraft -- Early works to 1800'), +(10882, 'Great Plains -- Juvenile fiction'), +(10883, 'Babur, Emperor of Hindustan, 1483-1530 -- Fiction'), +(10884, 'French language -- Paronyms -- Dictionaries'), +(10885, 'Wax flowers'), +(10886, 'Abbeys -- Great Britain'), +(10887, 'Mythology, Classical, in art'), +(10888, 'American literature -- Outlines, syllabi, etc.'), +(10889, 'Poisonous snakes'), +(10890, 'Spies -- Fiction'), +(10891, 'Dictionary catalogs -- Rules'), +(10892, 'University of Oxford -- Fiction'), +(10893, 'Welsh fiction -- 20th century'), +(10894, 'Girls -- Conduct of life'), +(10895, 'Sikh War, 1845-1846'), +(10896, 'Nootka Sound (B.C.)'), +(10897, 'Sidesaddle riding'), +(10898, 'America -- Antiquities'), +(10899, 'Tall tales'), +(10900, 'Asotin County (Wash.) -- History'), +(10901, 'Venezuela -- Economic conditions'), +(10902, 'Hedin, Sven Anders, 1865-1952 -- Travel -- China -- Tibet Autonomous Region'), +(10903, 'Ethnology -- New Zealand'), +(10904, 'Country life -- England'), +(10905, 'Niagara Falls (N.Y. and Ont.) -- Commerce -- History'), +(10906, 'Indians of North America -- Wars -- Juvenile fiction'), +(10907, 'Poor -- Great Britain -- Juvenile fiction'), +(10908, 'Treasure hunting -- Fiction'), +(10909, 'Denmark -- History -- 1448-1660 -- Fiction'), +(10910, 'Gargantua (Legendary character) -- Fiction'), +(10911, 'Kittens -- Juvenile poetry'), +(10912, 'German Americans -- Fiction'), +(10913, 'Concord (Mass.) -- Social life and customs'), +(10914, 'Canada -- Social life and customs -- Fiction'), +(10915, 'Questions and answers -- Fiction'), +(10916, 'Veterinary medicine'), +(10917, 'Butterflies -- North America'), +(10918, 'Seminole Indians -- History'), +(10919, 'Love -- Drama'), +(10920, 'Lieven, Dorothea, Princess, 1785-1857'), +(10921, 'IBM 1401 (Computer) -- Programming'), +(10922, 'Errors and blunders, Literary'), +(10923, 'Romanticism -- England'), +(10924, 'Australia -- Social conditions -- Juvenile fiction'), +(10925, 'Geese -- Juvenile fiction'), +(10926, 'Massenet, Jules, 1842-1912'), +(10927, 'Military history, Medieval'), +(10928, 'Silverwork -- Great Britain'), +(10929, 'World War, 1914-1918 -- Societies, etc.'), +(10930, 'Church of Jesus Christ of Latter-day Saints -- Sacred books'), +(10931, 'Labor unions -- Fiction'), +(10932, 'Northwest Territories -- Fiction'), +(10933, 'Gunshot wounds'), +(10934, 'Monmouth\'s Rebellion, 1685 -- Fiction'), +(10935, 'Australia -- History -- Sources'), +(10936, 'Rome (Italy) -- History -- 476-1420'), +(10937, 'Cleopatra, Queen of Egypt, -30 B.C. -- Fiction'), +(10938, 'Scotland -- In literature'), +(10939, 'California -- History -- To 1846 -- Sources'), +(10940, 'Intellectuals -- United States'), +(10941, 'Orient -- Social life and customs'), +(10942, 'James, William, 1842-1910'), +(10943, 'Cooking, American -- Southern style'), +(10944, 'Castilho, Antonio Feliciano de, 1800-1875'), +(10945, 'Valentine\'s Day -- Drama'), +(10946, 'Whittington, Richard, -1423'), +(10947, 'Manners and customs -- South Africa'), +(10948, 'China -- History -- Qin dynasty, 221-207 B.C.'), +(10949, 'Pitching (Baseball)'), +(10950, 'Algeria -- Description and travel'), +(10951, 'Rolland, Romain, 1866-1944'), +(10952, 'Shakespeare, William, 1564-1616 -- Childhood and youth'), +(10953, 'Chinese -- California -- San Francisco'), +(10954, 'Herculaneum (Extinct city) -- Antiquities'), +(10955, 'European drama -- 20th century -- History and criticism'), +(10956, 'Judas Iscariot -- Fiction'), +(10957, 'Musicians'), +(10958, 'Herculano, Alexandre, 1810-1877 -- Criticism and interpretation'), +(10959, 'Waiters -- Fiction'), +(10960, 'Dal Pozzo, Cassiano, 1588-1657'), +(10961, 'Christian ethics -- Catholic authors'), +(10962, 'Great Britain -- History -- 14th century -- Sources'), +(10963, 'United States. Army -- Insignia'), +(10964, 'Manitoba -- Politics and government -- Fiction'), +(10965, 'Japanese -- United States -- Juvenile fiction'), +(10966, 'Florida -- History -- Huguenot colony, 1562-1565 -- Fiction'), +(10967, 'Ireland -- Politics and government -- 1760-1820'), +(10968, 'Persian Gulf -- Fiction'), +(10969, 'Kant, Immanuel, 1724-1804'), +(10970, 'Painters -- Italy -- Venice'), +(10971, 'Reindeer -- Finland'), +(10972, 'Folk high schools -- Denmark'), +(10973, 'Ducks -- Canada -- Identification'), +(10974, 'Crusades'), +(10975, 'Irish language -- Readers'), +(10976, 'Wild men'), +(10977, 'Electric currents, Alternating'), +(10978, 'Poultry -- Color'), +(10979, 'Whiskey'), +(10980, 'Frontenac, Anne (de la Grange) de Buade, comtesse de, 1632-1707 -- Fiction'), +(10981, 'Spirit writings'), +(10982, 'Bible. Old Testament -- Selections'), +(10983, 'Great Britain -- History -- Lancaster and York, 1399-1485 -- Biography'), +(10984, 'Pombal, Sebastião José de Carvalho e Melo, Marquês de, 1699-1782'), +(10985, 'Women -- Great Britain'), +(10986, 'Plants -- Identification'), +(10987, 'Satire, English -- Early works to 1800'), +(10988, 'Astrologers -- Fiction'), +(10989, 'Congregational churches -- Clergy -- Biography'), +(10990, 'Hejaz (Saudi Arabia) -- Description and travel'), +(10991, 'Counterfeits and counterfeiting -- Juvenile fiction'), +(10992, 'Medical geography -- Egypt'), +(10993, 'Musicians -- England'), +(10994, 'Italy -- Social life and customs -- Early works to 1800'), +(10995, 'Wisconsin -- History -- Periodicals'), +(10996, 'Mississippi River Valley -- History -- To 1803'), +(10997, 'Medicine, Medieval'), +(10998, 'Besant, Annie, 1847-1933'), +(10999, 'Botany Bay (N.S.W.) -- History'), +(11000, 'America -- Discovery and exploration -- Norse'), +(11001, 'Isle of Man -- Description and travel'), +(11002, 'Maryland Campaign, 1862'), +(11003, 'Governors -- India -- Goa, Daman and Diu -- Portraits'), +(11004, 'Revolutionaries -- Russia -- Fiction'), +(11005, 'Insects -- Host plants'), +(11006, 'Monasteries -- History'), +(11007, 'Richard II, King of England, 1367-1400 -- Drama'), +(11008, 'Deep diving -- Juvenile fiction'), +(11009, 'Frontier and pioneer life -- Nebraska'), +(11010, 'Spanish poetry -- History and criticism'), +(11011, 'Christian literature, Early'), +(11012, 'Ordeal'), +(11013, 'Bible. Isaiah -- Commentaries'), +(11014, 'Columbus, Christopher -- Juvenile literature'), +(11015, 'English fiction -- Translations into French'), +(11016, 'Bessbrook (Northern Ireland)'), +(11017, 'Natural history -- England -- Birmingham'), +(11018, 'France -- History -- Insurrection of the Camisards, 1702-1710 -- Fiction'), +(11019, 'Jews -- Russia -- Fiction'), +(11020, 'Acid rain -- Environmental aspects -- Washington (D.C.)'), +(11021, 'Gorham, George Cornelius -- Trials, litigation, etc.'), +(11022, 'Caddoan Indians'), +(11023, 'French-Canadian drama'), +(11024, 'Human geography -- Bibliography'), +(11025, 'Bards and bardism -- Poetry'), +(11026, 'Scale insects'), +(11027, 'Shipwrecks -- Massachusetts -- Poetry'), +(11028, 'Incunabula -- Facsimiles'), +(11029, 'English language -- Dictionaries -- Welsh'), +(11030, 'Europe -- Biography -- Early works to 1800'), +(11031, 'Adrian IV, Pope, -1159'), +(11032, 'Crown jewels -- Great Britain'), +(11033, 'Sloths'), +(11034, 'England -- Foreign relations -- Scotland'), +(11035, 'Hudson automobile -- Handbooks, manuals, etc.'), +(11036, 'Textbooks'), +(11037, 'Cádiz (Spain) -- History -- Fiction'), +(11038, 'Wales, South -- Poetry'), +(11039, 'Avarice -- Fiction'), +(11040, 'Justinian I, Emperor of the East, 483?-565'), +(11041, 'Charles II, King of England, 1630-1685 -- Early works to 1800'), +(11042, 'Italy -- History -- Revolution of 1848'), +(11043, 'Publishers\' catalogs'), +(11044, 'Oregon question'), +(11045, 'Political science -- Periodicals'), +(11046, 'Cholera'), +(11047, 'Colonists -- Juvenile fiction'), +(11048, 'Chimney sweeps -- Juvenile fiction'), +(11049, 'Notaries -- France -- Fiction'), +(11050, 'English language -- Orthography and spelling -- Early works to 1800'), +(11051, 'African Americans -- Songs and music'), +(11052, 'Charles II, King of England, 1630-1685'), +(11053, 'World War, 1914-1918 -- Economic aspects -- United States'), +(11054, 'Police corruption -- Illinois -- Chicago'), +(11055, 'Cataloging -- Great Britain'), +(11056, 'Iraq -- Antiquities'), +(11057, 'Rhodes (Greece : Island) -- History -- Siege, 1480 -- Juvenile fiction'), +(11058, 'Franco-Prussian War, 1870-1871 -- Civilian relief'), +(11059, 'Authors, Hungarian -- 20th century -- Biography'), +(11060, 'Nobility -- Great Britain -- History -- To 1500'), +(11061, 'Allusions'), +(11062, 'Authors, Finnish'), +(11063, 'Anarchism'), +(11064, 'East End (London, England) -- Fiction'), +(11065, 'Landscape painters -- United States -- Correspondence'), +(11066, 'Elephants'), +(11067, 'Industrial relations -- Drama'), +(11068, 'Jewish religious education of children -- United States'), +(11069, 'Arctic regions -- Discovery and exploration -- American'), +(11070, 'Chicago Race Riot, Chicago, Ill., 1919'), +(11071, 'Weapons of mass destruction -- Fiction'), +(11072, 'English fiction -- Early modern, 1500-1700 -- History and criticism'), +(11073, 'Grand Teton National Park (Wyo.) -- Guidebooks'), +(11074, 'Washington, Mary Ball, 1708-1789'), +(11075, 'Guyon, Jeanne Marie Bouvier de La Motte, 1648-1717'), +(11076, 'Lincoln-Douglas Debates, Ill., 1858'), +(11077, 'Great Britain -- History -- Mary I, 1553-1558'), +(11078, 'Natural history -- Australia -- Queensland'), +(11079, 'Prussia (Germany) -- Court and courtiers'), +(11080, 'Fairy tales -- Parodies, imitations, etc.'), +(11081, 'Canada -- Politics and government -- 1841-1867'), +(11082, 'Italy -- Politics and government'), +(11083, 'Tales -- Germany -- Baden'), +(11084, 'Mitchell, T. L. (Thomas Livingstone), 1792-1855'), +(11085, 'French language -- Dictionaries -- English'), +(11086, 'Toronto (Ont.) -- Fiction'), +(11087, 'Caricature -- History'), +(11088, 'Haunted places -- Juvenile fiction'), +(11089, 'Fleet Prison (London, England)'), +(11090, 'British -- Sudan -- Fiction'), +(11091, 'Lumber trade -- Fiction'), +(11092, 'Grading and marking (Students)'), +(11093, 'Mythology, Celtic'), +(11094, 'Shipwrecks -- Torres Strait'), +(11095, 'Spirit possession -- Fiction'), +(11096, 'Glacial epoch'), +(11097, 'Opal mines and mining -- Australia -- Fiction'), +(11098, 'Tree houses -- Juvenile fiction'), +(11099, 'France -- History -- Robert I, 922-923'), +(11100, 'Hare, William, 1792?-1870?'), +(11101, 'England -- Intellectual life -- 16th century'), +(11102, 'Public speaking'), +(11103, 'Indian pottery -- Panama'), +(11104, 'Appalachian Region -- Description and travel'), +(11105, 'Beijing (China) -- History -- Siege, 1900 -- Personal narratives'), +(11106, 'Virtual reality -- Fiction'), +(11107, 'New York Zoological Park'), +(11108, 'Animal welfare -- Fiction'), +(11109, 'Messengers -- Fiction'), +(11110, 'America -- Discovery and exploration -- Norse -- Juvenile fiction'), +(11111, 'Decoration and ornament, Architectural -- History'), +(11112, 'Cocke, Charles Lewis, 1820-1901'), +(11113, 'Men in the Bible'), +(11114, 'Names, Indian -- North America'), +(11115, 'Jews -- Romania'), +(11116, 'Homing pigeons'), +(11117, 'Cherokee Indians -- Government relations'), +(11118, 'India -- History -- 19th century -- Juvenile fiction'), +(11119, 'Almshouses -- Great Britain -- Early works to 1800'), +(11120, 'Mexican-American Border Region -- Fiction'), +(11121, 'Children and adults -- Juvenile fiction'), +(11122, 'Endowed public schools (Great Britain)'), +(11123, 'Egypt -- Description and travel -- Juvenile literature'), +(11124, 'Glendower, Owen, approximately 1354-1416'), +(11125, 'Songs, French -- France -- Bresse (Region)'), +(11126, 'Children -- Palestine -- Juvenile literature'), +(11127, 'Hanseatic League -- Commerce -- Great Britain'), +(11128, 'Folklore -- Cuba'), +(11129, 'Stoke-on-Trent (England) -- Fiction'), +(11130, 'Women -- Social conditions -- Fiction'), +(11131, 'Essex, Robert Devereux, Earl of, 1566-1601 -- Drama'), +(11132, 'Lutheran Church -- Prayers and devotions'), +(11133, 'Henry, Patrick, 1736-1799'), +(11134, 'Tilden, Samuel J. (Samuel Jones), 1814-1886'), +(11135, 'Iron -- History -- Juvenile fiction'), +(11136, 'Isaacson, Lauren Ann, 1961-1986'), +(11137, 'Children -- Conversion to Christianity -- Juvenile fiction'), +(11138, 'Cooking (Fish)'), +(11139, 'Indians of North America -- Illinois -- Antiquities'), +(11140, 'Washington (State)'), +(11141, 'Napa Valley (Calif.) -- Description and travel'), +(11142, 'Hunters -- South Africa -- Anecdotes'), +(11143, 'Women household employees -- Fiction'), +(11144, 'Astronomy -- History -- 19th century'), +(11145, 'Labyrinths'), +(11146, 'Italy -- Foreign relations -- 1870-1914'), +(11147, 'Fathers and sons -- Juvenile fiction'), +(11148, 'Nicotiana'), +(11149, 'Paleontologists -- United States -- Biography'), +(11150, 'Armenia (Republic) -- Social life and customs -- Juvenile literature'), +(11151, 'Indians of South America -- Peru -- History'), +(11152, 'Rome -- History -- Julio-Claudians, 30 B.C.-68 A.D.'), +(11153, 'Insects -- History'), +(11154, 'Bible. Hebrews'), +(11155, 'Household appliances'), +(11156, 'Children -- Borneo'), +(11157, 'Suicide'), +(11158, 'Cosmography'), +(11159, 'Indians of North America -- Religion'), +(11160, 'La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne), 1634-1693'), +(11161, 'Egypt -- Juvenile fiction'), +(11162, 'Courtesans -- France -- Biography'), +(11163, 'Stoves -- Catalogs'), +(11164, 'Opera -- Italy'), +(11165, 'Canada -- History -- 1763-'), +(11166, 'Housekeeping -- Fiction'), +(11167, 'Cities and towns -- Great Britain'), +(11168, 'Germany -- History -- Revolution, 1918'), +(11169, 'Bible. Psalms'), +(11170, 'France, Anatole, 1844-1924'), +(11171, 'Women -- China -- Biography'), +(11172, 'English poetry -- Welsh authors'), +(11173, 'Norfolk (England) -- Description and travel'), +(11174, 'Angkor (Extinct city) -- Description and travel'), +(11175, 'Mycenae (Extinct city)'), +(11176, 'Riggs, Stephen Return, 1812-1883'), +(11177, 'Jeannette (Ship)'), +(11178, 'Italians -- New York (State) -- New York'), +(11179, 'Almeida, Fialho d\', 1857-1911'), +(11180, 'Otolaryngology -- Periodicals'), +(11181, 'Public health'), +(11182, 'Havana (Cuba) -- Description and travel'), +(11183, 'Chesterton, G. K. (Gilbert Keith), 1874-1936 -- Calendars'), +(11184, 'Buddhism -- Fiction'), +(11185, 'Iroquois Indians -- Kings and rulers -- Poetry'), +(11186, 'Brittany (France) -- History -- 1341-1532 -- Fiction'), +(11187, 'Wealth -- Moral and ethical aspects'), +(11188, 'Mendelssohn-Bartholdy, Felix, 1809-1847 -- Fiction'), +(11189, 'Clergy -- Office -- Early works to 1800'), +(11190, 'Military exchanges -- United States -- Accounting'), +(11191, 'Climatic changes'), +(11192, 'Dostoyevsky, Fyodor, 1821-1881 -- Criticism and interpretation'), +(11193, 'Tricks'), +(11194, 'Preston (Lancashire, England) -- Church history'), +(11195, 'France. Armée. Légion étrangère -- Fiction'), +(11196, 'Screens (Church decoration)'), +(11197, 'Fairfax (Va.) -- History'), +(11198, 'Crime -- France -- History'), +(11199, 'Readers -- Geography'), +(11200, 'Operation Crossroads, Marshall Islands, 1946'), +(11201, 'Werewolves'), +(11202, 'Pressure cooking'), +(11203, 'Europe -- History -- 1871-1918'), +(11204, 'Handicraft -- Juvenile literature'), +(11205, 'Master and servant -- Fiction'), +(11206, 'Vieusseux, Gian Pietro, 1779-1863'), +(11207, 'Sicily (Italy) -- Drama'), +(11208, 'Novelists, Russian'), +(11209, 'Law -- Ireland'), +(11210, 'French -- England -- London -- Fiction'), +(11211, 'Elkab (Extinct city)'), +(11212, 'Skin -- Diseases -- Periodicals'), +(11213, 'Wisconsin -- History -- To 1848'), +(11214, 'Queens -- India -- Fiction'), +(11215, 'Berlin (Ship)'), +(11216, 'Hudson River (N.Y. and N.J.) -- History'), +(11217, 'Corot, Jean-Baptiste-Camille, 1796-1875'), +(11218, 'Egypt -- History -- To 640 A.D.'), +(11219, 'Channel Islands'), +(11220, 'Mary, of Egypt, Saint -- Fiction'), +(11221, 'Crater Lake National Park (Or.)'), +(11222, 'Lazarus, of Bethany, Saint -- Fiction'), +(11223, 'Ice caves'), +(11224, 'German poetry -- Translations into Finnish'), +(11225, 'Marx, Karl, 1818-1883'), +(11226, 'Brunel, Isambard Kingdom, 1806-1859'), +(11227, 'Asbestos -- Québec (Province)'), +(11228, 'Jerusalem -- History -- Latin Kingdom, 1099-1244 -- Fiction'), +(11229, 'Crustacea'), +(11230, 'Limericks'), +(11231, 'Maccabees -- Fiction'), +(11232, 'Brittany (France) -- Folklore'), +(11233, 'Painters -- Italy'), +(11234, 'Francesca, da Rimini, -approximately 1285 -- Drama'), +(11235, 'Natural history -- Brazil'), +(11236, 'Jews -- Intellectual life'), +(11237, 'Anglo-French War, 1793-1802 -- Fiction'), +(11238, 'Jewish mythology'), +(11239, 'Dolls -- Juvenile poetry'), +(11240, 'Journalists -- Biography'), +(11241, 'Finnish literature -- History and criticism'), +(11242, 'Land tenure -- Great Britain -- History -- 16th century'), +(11243, 'War stories, English'), +(11244, 'Statesmen -- Great Britain'), +(11245, 'New York (N.Y.) -- Social life and customs'), +(11246, 'Women -- Great Britain -- Biography'), +(11247, 'Sexual ethics -- Drama'), +(11248, 'Socialism -- Germany'), +(11249, 'Marin County (Calif.) -- History'), +(11250, 'Steam-boilers'), +(11251, 'Eliot, George, 1819-1880. Mill on the Floss -- Adaptations'), +(11252, 'Eve (Biblical figure) -- Poetry'), +(11253, 'Indian sign language'), +(11254, 'Packing-house products'), +(11255, 'Jews -- History -- To 1200 B.C. -- Fiction'), +(11256, 'Amazon River Valley -- Description and travel'), +(11257, 'Nobility -- Germany -- Fiction'), +(11258, 'Giants -- Juvenile fiction'), +(11259, 'Mathematicians -- Biography'), +(11260, 'Mass media'), +(11261, 'Sericulture'), +(11262, 'Massinger, Philip, 1583-1640 -- Criticism and interpretation'), +(11263, 'Riperdá, Juan Guillermo, Duke of, 1680-1737 -- Fiction'), +(11264, 'Encyclopedias and dictionaries, Chinese'), +(11265, 'World War, 1914-1918 -- Naval operations -- Submarine -- Juvenile fiction'), +(11266, 'Indians of North America -- Funeral customs and rites'), +(11267, 'Kuki (Indic people)'), +(11268, 'Scottish poetry'), +(11269, 'Handel, George Frideric, 1685-1759 -- Juvenile literature'), +(11270, 'Britons -- Kings and rulers -- Poetry'), +(11271, 'Poverty -- Juvenile fiction'), +(11272, 'Women in medicine'), +(11273, 'Feminists -- United States -- Biography'), +(11274, 'Missions -- Nigeria'), +(11275, 'Sewage'), +(11276, 'Alabama -- History -- Civil War, 1861-1865'), +(11277, 'Vancouver Island (B.C.) -- History'), +(11278, 'Bok, Edward William, 1863-1930'), +(11279, 'Acton, John Emerich Edward Dalberg Acton, Baron, 1834-1902 -- Correspondence'), +(11280, 'Salt industry and trade -- China'), +(11281, 'Working class -- Massachusetts -- Boston'), +(11282, 'Folk literature'), +(11283, 'London (England) -- Social life and customs -- Fiction'), +(11284, 'Berlin (Germany) -- Fiction'), +(11285, 'Intellectual life -- Periodicals'), +(11286, 'Coinage -- Asia -- History'), +(11287, 'Crosses -- England'), +(11288, 'Icelandic drama -- Translations into English'), +(11289, 'Kipling, Rudyard, 1865-1936 -- Criticism and interpretation'), +(11290, 'Electronic publishing -- Handbooks, manuals, etc.'), +(11291, 'Love in art -- History'), +(11292, 'Italy -- Politics and government -- 476-1268'), +(11293, 'Ants'), +(11294, 'Huntley (Va.)'), +(11295, 'Hughes, George E., 1821-1872'), +(11296, 'Science fiction, French -- Translations into English'), +(11297, 'Intelligence service -- Fiction'), +(11298, 'Salvage -- Fiction'), +(11299, 'Pius X, Pope, 1835-1914'), +(11300, 'War games'), +(11301, 'Devon (England) -- Biography'), +(11302, 'Napoleonic Wars, 1800-1815 -- Prisoners and prisons, British -- Fiction'), +(11303, 'Virtue -- Early works to 1800'), +(11304, 'Fichte, Johann Gottlieb, 1762-1814 -- Correspondence'), +(11305, 'Appalachian Region, Southern -- Description and travel'), +(11306, 'Peasants -- Italy -- Fiction'), +(11307, 'Myth'), +(11308, 'Hall, Angeline (Stickney) 1830-1892'), +(11309, 'Palissy, Bernard, 1510?-1590'), +(11310, 'Zuni Indians -- Juvenile fiction'), +(11311, 'Girls -- Societies and clubs -- Juvenile drama'), +(11312, 'Yale University -- Fiction'), +(11313, 'Law -- History'), +(11314, 'Paulist Fathers -- United States -- Biography'), +(11315, 'Volney, C.-F. (Constantin-François), 1757-1820 -- Travel -- Syria'), +(11316, 'Illinois -- History -- 1778-1865'), +(11317, 'Florists -- Fiction'), +(11318, 'James, Henry, 1843-1916 -- Criticism and interpretation'), +(11319, 'Bible. Deuteronomy -- Commentaries'), +(11320, 'Art -- Assyria -- History'), +(11321, 'Malay Archipelago -- Description and travel'), +(11322, 'Gentry -- Poland -- Social life and customs -- 19th century -- Fiction'), +(11323, 'Indiana -- Social life and customs -- Fiction'), +(11324, 'Norwich (England) -- History'), +(11325, 'Ogden, David, 1764-'), +(11326, 'Woman\'s Christian Temperance Union. State of New York'), +(11327, 'Cowper, William, 1731-1800'), +(11328, 'Diet -- Italy -- Early works to 1800'), +(11329, 'Children -- Religious life'), +(11330, 'Children\'s stories, Swedish'), +(11331, 'Yellow fever -- Louisiana -- Shreveport -- 1873 -- Fiction'), +(11332, 'Landscape gardening'), +(11333, 'Urban women'), +(11334, 'Sangharakshita, Bhikshu, 1925-'), +(11335, 'Great Britain -- Social conditions -- Fiction'), +(11336, 'Folklore -- Burma'), +(11337, 'Estêvão, José, 1809-1862 -- Poetry'), +(11338, 'Armenia'), +(11339, 'Protest poetry, American'), +(11340, 'Nore Mutiny, 1797 -- Fiction'), +(11341, 'New Mexico -- History'), +(11342, 'Falkland Islands'), +(11343, 'Lewis, Meriwether, 1774-1809'), +(11344, 'Coal mines and mining -- Drama'), +(11345, 'Harrow (London, England) -- Pictorial works'), +(11346, 'Limericks, Juvenile'), +(11347, 'Portugal -- History -- Revolution, 1640'), +(11348, 'Great Britain. Royal Navy -- History -- 19th century'), +(11349, 'Railroads -- Germany'), +(11350, 'Lanier, Sidney, 1842-1881'), +(11351, 'Vienna (Austria) -- History'), +(11352, 'Topanga Canyon (Calif.)'), +(11353, 'Americans -- Spain -- Fiction'), +(11354, 'Midhat Paşa, 1822-1884'), +(11355, 'Persian literature'), +(11356, 'Barr, Amelia E., 1831-1919'), +(11357, 'Buchanan, James, 1791-1868'), +(11358, 'Time measurements'), +(11359, 'Mainz (Rhineland-Palatinate, Germany) -- History -- Siege, 1793'), +(11360, 'Swamps -- Juvenile fiction'), +(11361, 'Byron, George Gordon Byron, Baron, 1788-1824 -- Marriage'), +(11362, 'Gardens -- Japan'), +(11363, 'Bible. Peter -- Commentaries'), +(11364, 'Hawarden Castle (Wales) -- Guidebooks'), +(11365, 'English language -- Homonyms'), +(11366, 'Experimental fiction'), +(11367, 'Somerset (England) -- Description and travel'), +(11368, 'Lion hunting -- Fiction'), +(11369, 'Velázquez, Diego, 1599-1660'), +(11370, 'Austrian drama -- 19th century'), +(11371, 'Lecturers -- Fiction'), +(11372, 'Dialect poetry, American'), +(11373, 'Children of clergy -- Fiction'), +(11374, 'North Carolina -- Fiction'), +(11375, 'Classical education'), +(11376, 'Paleontology -- Oligocene'), +(11377, 'Girls -- Ireland -- Fiction'), +(11378, 'Bering Strait -- Discovery and exploration'), +(11379, 'Fitzherbert, Maria Anne, 1756-1837'), +(11380, 'Sailors -- United States -- Fiction'), +(11381, 'Malthus, T. R. (Thomas Robert), 1766-1834 -- Correspondence'), +(11382, 'Seasons'), +(11383, 'Witchcraft -- England'), +(11384, 'Adelphi (London, England) -- History'), +(11385, 'Festivals -- Juvenile literature'), +(11386, 'Tunis (Tunisia) -- Description and travel'), +(11387, 'Khasi (Indic people)'), +(11388, 'Symbolism of numbers'), +(11389, 'Justice, Administration of'), +(11390, 'Robespierre, Maximilien, 1758-1794'), +(11391, 'United States Naval Academy -- Fiction'), +(11392, 'Fox trapping'), +(11393, 'Philippines -- History -- 1812-1898 -- Fiction'), +(11394, 'Palmer, William, 1824-1856 -- Trials, litigation, etc.'), +(11395, 'Spaniards -- England -- Fiction'), +(11396, 'Castelo Branco, Camilo, 1825-1890. Voltareis, ó Christo?'), +(11397, 'Jacob (Biblical patriarch) -- Juvenile literature'), +(11398, 'Nuclear weapons -- Marshall Islands -- Bikini Atoll -- Testing'), +(11399, 'Serbo-Croatian language -- Alphabet'), +(11400, 'Schools -- Humor'), +(11401, 'Mail steamers'), +(11402, 'Grey, George, Sir, 1812-1898'), +(11403, 'Massachusetts -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(11404, 'Physicians -- England -- Biography'), +(11405, 'Architecture, Domestic -- Designs and plans'), +(11406, 'Jugurthine War, 111-105 B.C.'), +(11407, 'Mythology, Classical'), +(11408, 'Napoleon I, emperor of the French, 1769-1821 -- Childhood and youth'), +(11409, 'Lumber trade -- United States -- Cases'), +(11410, 'Dyes and dyeing'), +(11411, 'Radio programs'), +(11412, 'Bicycle touring -- Juvenile fiction'), +(11413, 'Wager (Ship)'), +(11414, 'Fronde -- Fiction'), +(11415, 'Aquariums'), +(11416, 'Paris (France) -- History -- Commune, 1871 -- Fiction'), +(11417, 'Bombay (India) -- Social life and customs'), +(11418, 'Poor -- Europe'), +(11419, 'Cuba -- Fiction'), +(11420, 'Cabot, John, -1498?'), +(11421, 'Coal mines and mining -- Fiction'), +(11422, 'Big game hunting -- Juvenile fiction'), +(11423, 'Tagalog literature'), +(11424, 'Homeless persons -- Fiction'), +(11425, 'English language -- Dictionaries -- Italian -- Early works to 1800'), +(11426, 'London (England)'), +(11427, 'PDP-15 (Computer) -- Catalogs'), +(11428, 'Bonaparte, François-Charles-Joseph, Herzog von Reichstadt, 1811-1832 -- Drama'), +(11429, 'Mexico -- History -- Revolution, 1910-1920'), +(11430, 'Armenia -- Description and travel'), +(11431, 'Parricide -- Fiction'), +(11432, 'Geology -- New York (State) -- Onondaga County'), +(11433, 'Electronic mail systems'), +(11434, 'Wilderness survival -- Fiction'), +(11435, 'Mortality -- Early works to 1800'), +(11436, 'Agricultural credit -- Portugal'), +(11437, 'Manipur (India) -- Description and travel'), +(11438, 'American mink -- Louisiana'), +(11439, 'Sexism'), +(11440, 'Guilds -- History'), +(11441, 'Meditations -- Early works to 1800'), +(11442, 'Quantum theory'), +(11443, 'Dickens, Charles, 1812-1870. Mystery of Edwin Drood'), +(11444, 'Authors, German -- 18th century -- Biography'), +(11445, 'Children -- Egypt -- Juvenile fiction'), +(11446, 'Cottontails -- Control'), +(11447, 'Aging -- Fiction'), +(11448, 'Soviet Union -- History -- Revolution, 1917-1921 -- Participation, American'), +(11449, 'China -- Politics and government -- 221 B.C.-960 A.D.'), +(11450, 'Spain -- History -- Carlist War, 1873-1876 -- Fiction'), +(11451, 'Comparative literature -- English and German'), +(11452, 'Hungary -- History -- Uprising of 1848-1849 -- Fiction'), +(11453, 'Yorkshire (England) -- Miscellanea'), +(11454, 'Inclosures'), +(11455, 'Magicians -- Fiction'), +(11456, 'Caves'), +(11457, 'Virginia -- Politics and government -- 1775-1783 -- Sources'), +(11458, 'Paraguay -- Foreign relations -- Argentina -- Sources'), +(11459, 'Supernatural in the Bible'), +(11460, 'James W. Paige (Ship)'), +(11461, 'Vocational education'), +(11462, 'Wives -- Fiction'), +(11463, 'Ferns -- Canada'), +(11464, 'Architects -- Drama'), +(11465, 'Royal Observatory, Greenwich'), +(11466, 'Art -- Study and teaching'), +(11467, 'Geometry -- Famous problems'), +(11468, 'Fulton, Robert, 1765-1815'), +(11469, 'Tales -- China'), +(11470, 'Danton, Georges Jacques, 1759-1794 -- Drama'), +(11471, 'Mining engineering'), +(11472, 'Manuscripts, Spanish -- Catalogs'), +(11473, 'Peter, the Hermit, -1115'), +(11474, 'Belgium -- Colonies -- Administration'), +(11475, 'Russo-Japanese War, 1904-1905 -- Fiction'), +(11476, 'British Somaliland'), +(11477, 'Stonemasons -- Juvenile fiction'), +(11478, 'Vespucci, Amerigo, 1451-1512'), +(11479, 'Chelsea (London, England) -- History -- 19th century'), +(11480, 'Chardin, Jean Baptiste Siméon, 1699-1779'), +(11481, 'Police -- Juvenile fiction'), +(11482, 'Parapsychology and medicine'), +(11483, 'Kansas -- History -- 1854-1861'), +(11484, 'Merchant mariners -- Great Britain'), +(11485, 'Riots -- New York (State) -- New York'), +(11486, 'Prisons -- Straits Settlements'), +(11487, 'Dudley (England) -- History'), +(11488, 'Cooking for the sick'), +(11489, 'United States -- History -- Colonial period, ca. 1600-1775 -- Sources'), +(11490, 'Women -- Suffrage -- Netherlands'), +(11491, 'Sullivan, Arthur, 1842-1900. Operas'), +(11492, 'Disasters -- Handbooks, manuals, etc.'), +(11493, 'Surratt, John H. (John Harrison), 1844-1916'), +(11494, 'Postal service -- United States -- Juvenile fiction'), +(11495, 'China -- History -- Qianlong, 1736-1795 -- Fiction'), +(11496, 'Evangelistic sermons'), +(11497, 'Railroad stations -- England -- London -- Fiction'), +(11498, 'Organ music'), +(11499, 'Concrete'), +(11500, 'Russian poetry -- Translations into Finnish'), +(11501, 'Betrothal -- Fiction'), +(11502, 'Argentina -- Biography'), +(11503, 'Yazd (Iran)'), +(11504, 'Forty-seven Ronin -- Drama'), +(11505, 'Banks and banking -- Great Britain'), +(11506, 'Slavs -- Folklore'), +(11507, 'Hiking -- Juvenile fiction'), +(11508, 'Women in church work -- Methodist church -- Humor'), +(11509, 'Women -- Soviet Union -- Social conditions'), +(11510, 'Smallpox vaccine'), +(11511, 'Literary quarrels -- Poetry'), +(11512, 'Antonius, Marcus, 83?-30 B.C. -- Drama'), +(11513, 'Philosophers -- Fiction'), +(11514, 'Declan, Saint, Bishop of Ardmore, active 6th century -- Legends'), +(11515, 'Mathematics -- Philosophy'), +(11516, 'Ragtime music'), +(11517, 'Jesuits -- History'), +(11518, 'Frontier and pioneer life -- Arizona'), +(11519, 'American literature -- Study and teaching'), +(11520, 'Argentina -- Civilization'), +(11521, 'Salt Lake City (Utah) -- Fiction'), +(11522, 'South Africa -- History -- 1836-1909'), +(11523, 'Tadmur (Syria) -- Fiction'), +(11524, 'Manuscripts, English -- England -- Cambridge -- Catalogs'), +(11525, 'Cooperation'), +(11526, 'United States -- History -- Revolution, 1775-1783 -- Participation, African American'), +(11527, 'Piano -- Performance'), +(11528, 'Nelson, Frank Howard, 1869-1939'), +(11529, 'Abandoned children -- Juvenile fiction'), +(11530, 'Barbers\' Company (London, England) -- History'), +(11531, 'Women poets -- Poetry'), +(11532, 'World War, 1914-1918 -- France -- Brittany'), +(11533, 'Mass -- Juvenile literature'), +(11534, 'Solidarity'), +(11535, 'Style, Literary'), +(11536, 'Bookplates, French'), +(11537, 'Fishing boats -- Juvenile fiction'), +(11538, 'Progressivism (United States politics)'), +(11539, 'Edward VII, King of Great Britain, 1841-1910'), +(11540, 'Great Britain -- History -- Henry VIII, 1509-1547 -- Fiction'), +(11541, 'Indians of North America -- Government relations'), +(11542, 'Stevenson, Robert Louis, 1850-1894 -- Travel -- Polynesia'), +(11543, 'Fishery law and legislation -- United States'), +(11544, 'Gustav II Adolf, King of Sweden, 1594-1632'), +(11545, 'Trusses (Surgery)'), +(11546, 'Peasants -- Ireland -- Fiction'), +(11547, 'Physiology -- Early works to 1800'), +(11548, 'Egypt -- History -- 332-30 B.C. -- Drama'), +(11549, 'England -- Social life and customs -- 1066-1485 -- Fiction'), +(11550, 'Petrology -- Texas'), +(11551, 'Mumming plays'), +(11552, 'Ireland -- Social life and customs'), +(11553, 'Gothic language -- Grammar'), +(11554, 'Brewing -- Early works to 1800'), +(11555, 'Frontier and pioneer life -- Northwest, Old'), +(11556, 'Abbotsford (Scotland)'), +(11557, 'Blessing and cursing -- Fiction'), +(11558, 'United States. Navy. Atlantic Fleet -- Cruise, 1907-1909'), +(11559, 'Edinburgh (Scotland) -- History'), +(11560, 'Hospital buildings -- Sanitation -- Statistics'), +(11561, 'Great Britain -- History -- Charles II, 1660-1685'), +(11562, 'Cixi, Empress dowager of China, 1835-1908 -- Fiction'), +(11563, 'Family owned business enterprises -- Succession -- Juvenile fiction'), +(11564, 'Kline, John, 1797-1864'), +(11565, 'Children -- Poland -- Juvenile literature'), +(11566, 'Ships -- Juvenile literature'), +(11567, 'Sabotage'), +(11568, 'Literary landmarks'), +(11569, 'Ireland -- History -- Union, 1801 -- Fiction'), +(11570, 'Pathogenic bacteria'), +(11571, 'Shakespeare, William, 1564-1616 -- Criticism, Textual'), +(11572, 'Strathearn (Scotland) -- History'), +(11573, 'Champagne (Wine)'), +(11574, 'Jesus Christ -- Biography -- History and criticism'), +(11575, 'Turgenev, Ivan Sergeevich, 1818-1883 -- Criticism and interpretation'), +(11576, 'Sexually transmitted diseases -- New Zealand'), +(11577, 'Villeinage -- England -- History -- To 1500'), +(11578, 'Wisconsin -- Juvenile fiction'), +(11579, 'Tangos'), +(11580, 'Washington, Booker T., 1856-1915'), +(11581, 'Adonis (Greek deity) -- Poetry'), +(11582, 'Malay Peninsula -- Juvenile fiction'), +(11583, 'London (England) -- History -- 17th century'), +(11584, 'Blizzards -- England -- Long Mynd'), +(11585, 'Mice -- Poetry'), +(11586, 'British Museum (Natural History). Department of Mineralogy'), +(11587, 'Brooke, Henry Francis, 1836-1880'), +(11588, 'Brittany (France) -- Guidebooks'), +(11589, 'Indians of Central America -- Antiquities'), +(11590, 'Machinery -- Juvenile literature'), +(11591, 'Banks and banking, International -- Fiction'), +(11592, 'Diaries'), +(11593, 'Trojan War -- Literature and the war'), +(11594, 'Chemists -- England -- Biography'), +(11595, 'Pianists -- Biography'), +(11596, 'Hindman Settlement School'), +(11597, 'Delaney, Theresa, 1849-1913 -- Captivity'), +(11598, 'Great Britain. Army. Regiment of Light Dragoons, 13th'), +(11599, 'Oklahoma -- Fiction'), +(11600, 'Kings and rulers -- Juvenile literature'), +(11601, 'Michigan, Lake, Region -- Fiction'), +(11602, 'Froude, James Anthony, 1818-1894. History of England'), +(11603, 'Women -- Religious aspects -- Christianity'), +(11604, 'Classification, Dewey decimal'), +(11605, 'Pascal, Blaise, 1623-1662'), +(11606, 'Jazz -- To 1921'), +(11607, 'Bernhardt, Sarah, 1844-1923'), +(11608, 'Hernández, José, 1834-1886. Martín Fierro'), +(11609, 'Metchnikoff, Elie, 1845-1916'), +(11610, 'Geology -- Periodicals'), +(11611, 'Rural schools -- Fiction'), +(11612, 'White, William Hale, 1831-1913 -- Childhood and youth'), +(11613, 'Imagination -- Fiction'), +(11614, 'Trademarks'), +(11615, 'Bible. Ezekiel'), +(11616, 'Wallace, Alfred Russel, 1823-1913'), +(11617, 'Camões, Luís de, 1524?-1580 -- Criticism and interpretation'), +(11618, 'Maori (New Zealand people) -- Social life and customs'), +(11619, 'Norwich (England) -- Directories'), +(11620, 'Constitutional law -- Portugal'), +(11621, 'Long Island, Battle of, New York, N.Y., 1776'), +(11622, 'English literature -- Bibliography'), +(11623, 'Fisher County (Tex.) -- Biography'), +(11624, 'Generals -- Great Britain -- Diaries'), +(11625, 'Convents -- England'), +(11626, 'Papuans'), +(11627, 'Materia medica'), +(11628, 'Casco Bay (Me.) -- Fiction'), +(11629, 'Turkey -- Foreign relations'), +(11630, 'Mohawk language -- Texts'), +(11631, 'Stonehenge (England)'), +(11632, 'Radio'), +(11633, 'Prisons -- Great Britain -- History'), +(11634, 'Roland, Mme (Marie-Jeanne), 1754-1793'), +(11635, 'Atlantic Coast (Ireland) -- Social life and customs'), +(11636, 'Dinosaurs'), +(11637, 'Southampton Insurrection, 1831 -- Fiction'), +(11638, 'Dorset (England) -- Fiction'), +(11639, 'Southwest, New -- Bibliography'), +(11640, 'England -- Biography'), +(11641, 'Heirlooms -- Juvenile fiction'), +(11642, 'Netherlands -- Juvenile fiction'), +(11643, 'Children -- Russia -- Juvenile literature'), +(11644, 'Dakota Indians -- Juvenile fiction'), +(11645, 'English language -- Usage'), +(11646, 'Anarchists -- United States'), +(11647, 'Krakatoa (Indonesia) -- Eruption, 1883'), +(11648, 'Reithrodontomys'), +(11649, 'Names, Geographical -- Europe'), +(11650, 'China -- History -- Boxer Rebellion, 1899-1901 -- Fiction'), +(11651, 'Internet -- Fiction'), +(11652, 'Frontier and pioneer life -- Mexico -- Fiction'), +(11653, 'Elizabeth I, Queen of England, 1533-1603'), +(11654, 'French language -- Conversation and phrase books'), +(11655, 'Nelson, Horatio Nelson, Viscount, 1758-1805 -- Fiction'), +(11656, 'Bible. Genesis -- Commentaries'), +(11657, 'Death -- Causes'), +(11658, 'Hedonism -- Fiction'), +(11659, 'New York (N.Y.) -- Social life and customs -- 19th century -- Fiction'), +(11660, 'West (U.S.) -- Biography'), +(11661, 'Stock Exchange (London, England)'), +(11662, 'Mausoleum (Halicarnassus)'), +(11663, 'Pioneers -- Colorado -- Pikes Peak Region -- Biography'), +(11664, 'Christmas -- Exercises, recitations, etc.'), +(11665, 'Louis XV, King of France, 1710-1774'), +(11666, 'Vitamins'), +(11667, 'Railroad repair shops'), +(11668, 'Architecture, Gothic -- Spain'), +(11669, 'Insects -- Collection and preservation'), +(11670, 'Fishing boats -- Fiction'), +(11671, 'Death -- Poetry'), +(11672, 'French language -- Idioms'), +(11673, 'Church history -- Miscellanea'), +(11674, 'Rasputin, Grigorii Efimovich, 1869-1916 -- Fiction'), +(11675, 'German language -- Conversation and phrase books'), +(11676, 'Germany -- History, Military -- 19th century -- Sources'), +(11677, 'Men -- Humor'), +(11678, 'San Francisco Earthquake and Fire, Calif., 1906'), +(11679, 'Maugham, W. Somerset (William Somerset), 1874-1965 -- Travel -- Spain -- Andalusia'), +(11680, 'Colorado River (Colo.-Mexico) -- Juvenile fiction'), +(11681, 'Sex determination, Genetic'), +(11682, 'Catedral (Córdoba, Spain)'), +(11683, 'Africa, North -- Fiction'), +(11684, 'Immigrants -- France -- Fiction'), +(11685, 'Magicians -- Drama'), +(11686, 'Islamic poetry, Persian -- Translations into English'), +(11687, 'Trolls -- Juvenile fiction'), +(11688, 'National characteristics, German'), +(11689, 'Peru -- Juvenile fiction'), +(11690, 'Serbia -- Description and travel'), +(11691, 'Great Britain -- History -- Pictorial works'), +(11692, 'Children of alcoholics -- Juvenile fiction'), +(11693, 'Southeast Asia -- Description and travel'), +(11694, 'Pushkin, Aleksandr Sergeevich, 1799-1837 -- Translations into English'), +(11695, 'Covenant theology'), +(11696, 'Department stores -- Employees -- Fiction'), +(11697, 'Animals -- Europe'), +(11698, 'Yorktown (Va.) -- History -- Siege, 1781 -- Juvenile fiction'), +(11699, 'Christianity -- Controversial literature -- Early works to 1800'), +(11700, 'Lancashire (England) -- Social life and customs -- Fiction'), +(11701, 'China -- Biography'), +(11702, 'Madhya Pradesh (India) -- Scheduled tribes'), +(11703, 'Zoological specimens -- Collection and preservation'), +(11704, 'Robertson, T. W. (Thomas William), 1829-1871. \"School\"'), +(11705, 'Crustacea -- Portugal'), +(11706, 'Czech Republic -- Moravia -- Fiction'), +(11707, 'Magnetism'), +(11708, 'Gardens -- Design'), +(11709, 'Breastfeeding'), +(11710, 'Clover'), +(11711, 'Chinese prose literature'), +(11712, 'British -- Europe -- History -- 16th century'), +(11713, 'World War, 1914-1918 -- France -- Reims'), +(11714, 'Upshur County (Tex.) -- History'), +(11715, 'Guardian and ward -- Juvenile fiction'), +(11716, 'Burlington Strike, 1888 -- Fiction'), +(11717, 'Americans -- Canada -- Juvenile fiction'), +(11718, 'Dairying, Cooperative'), +(11719, 'Aleut language -- Dictionaries -- English'), +(11720, 'Hudson Bay -- Juvenile fiction'), +(11721, 'Noailles, Anna de, 1876-1933'), +(11722, 'Arctic regions -- Discovery and exploration -- Fiction'), +(11723, 'China -- History -- Jin dynasty, 265-419 -- Anecdotes'), +(11724, 'Joanna of Castile, 1479-1555'), +(11725, 'Prairie vole'), +(11726, 'Pineapple'), +(11727, 'Norway -- Juvenile fiction'), +(11728, 'Great Britain -- History -- 13th century -- Sources'), +(11729, 'Cape of Good Hope (South Africa) -- Fiction'), +(11730, 'Hurricanes -- Texas -- Galveston -- History -- 20th century'), +(11731, 'Women -- Employment'), +(11732, 'Public worship -- Presbyterian Church -- History'), +(11733, 'Women\'s rights -- Humor'), +(11734, 'National characteristics, American, in literature'), +(11735, 'Ship models -- Juvenile literature'), +(11736, 'Kennedy, Edmund Besley Court, 1818-1848'), +(11737, 'Library science -- Social aspects'), +(11738, 'Revere Copper Company'), +(11739, 'Law reports, digests, etc. -- New Jersey'), +(11740, 'Buffalo Bill, 1846-1917'), +(11741, 'Ibn Khallikan, 1211-1282. Wafayat al-a\'yan'), +(11742, 'Executors and administrators -- Great Britain'), +(11743, 'Hiding places -- Great Britain'), +(11744, 'Political ballads and songs -- United States -- Texts'), +(11745, 'Grand Teton National Park (Wyo.) -- Description and travel'), +(11746, 'Fanshawe, Richard, 1608-1666'), +(11747, 'Legislators -- United States'), +(11748, 'Portugal -- Civilization -- Periodicals'), +(11749, 'Theater -- United States'), +(11750, 'China -- Social life and customs -- Fiction'), +(11751, 'Natural history -- Massachusetts -- Ipswich'), +(11752, 'Xylophone with orchestra'), +(11753, 'Sardinia (Italy) -- Description and travel'), +(11754, 'Hymns, Greek (Classical) -- Translations into Latin'), +(11755, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Pennsylvania Infantry -- 140th -- Company K'), +(11756, 'Dartmouth College -- History'), +(11757, 'Spain -- History -- 19th century'), +(11758, 'Military hospitals -- Juvenile fiction'), +(11759, 'Neighborhoods -- Scotland -- Fiction'), +(11760, 'Strikes and lockouts -- Drama'), +(11761, 'Negro River (Río Negro, Argentina)'), +(11762, 'Poets, English -- Homes and haunts'), +(11763, 'Art, Egyptian'), +(11764, 'Rhode Island -- History'), +(11765, 'Chateauguay, Battle of, Québec, 1813'), +(11766, 'Industrial arts -- Dictionaries'), +(11767, 'Mythology, Roman'), +(11768, 'Plague'), +(11769, 'Boarding school students -- Fiction'), +(11770, 'French -- England -- Fiction'), +(11771, 'Dinosaurs -- Fiction'), +(11772, 'Honey plants -- Texas'), +(11773, 'Allen, Ethan, 1738-1789 -- Juvenile fiction'), +(11774, 'Cape Cod (Mass.) -- Juvenile fiction'), +(11775, 'Scott, Walter, 1771-1832 -- Homes and haunts'), +(11776, 'Mineralogy'), +(11777, 'Church and education -- Philippines'), +(11778, 'Iceland -- Fiction'), +(11779, 'Empathy -- Juvenile fiction'), +(11780, 'Prussia (Germany) -- History -- Frederick William III, 1797-1840 -- Fiction'), +(11781, 'Quartier latin (Paris, France) -- Fiction'), +(11782, 'Generals -- France -- Biography'), +(11783, 'Scotland -- History -- Robert II, 1371-1390 -- Fiction'), +(11784, 'Nebular hypothesis'), +(11785, 'Mammals -- Anatomy'), +(11786, 'Incas -- Fiction'), +(11787, 'World War, 1939-1945 -- Transportation -- United States'), +(11788, 'English essays -- Early modern, 1500-1700 -- Translations into Finnish'), +(11789, 'Big Bend National Park (Tex.)'), +(11790, 'United States. Navy'), +(11791, 'Christian saints -- Algeria -- Hippo (Extinct city) -- Biography'), +(11792, 'Highland fling (Dance) -- Handbooks, manuals, etc.'), +(11793, 'Canterbury (England) -- Pictorial works'), +(11794, 'Ethics -- Early works to 1800'), +(11795, 'Scandinavia -- Description and travel -- Early works to 1800'), +(11796, 'Socialists -- France -- Biography'), +(11797, 'Ireland -- History -- 16th century'), +(11798, 'Trumbull, Lyman, 1813-1896'), +(11799, 'Canada -- Social life and customs'), +(11800, 'Paleontology -- Australia'), +(11801, 'Baseball -- Periodicals'), +(11802, 'Art -- History -- Study and teaching'), +(11803, 'Quantity cooking'), +(11804, 'Astronauts -- Fiction'), +(11805, 'Animal intelligence'), +(11806, 'Rural health'), +(11807, 'Lille (France) -- History'), +(11808, 'Food'), +(11809, 'Parsees'), +(11810, 'Shang, Yang, -338 B.C.'), +(11811, 'Mormon Church -- Government'), +(11812, 'Eskimos -- Implements -- Catalogs'), +(11813, 'Dudley, Amy Robsart, Lady, 1532?-1560 -- Fiction'), +(11814, 'Authors, Swedish -- 19th century -- Biography'), +(11815, 'Disguise -- Fiction'), +(11816, 'Tales -- Italy -- Florence'), +(11817, 'Great Britain -- Commerce -- India'), +(11818, 'Columbia River -- Description and travel'), +(11819, 'Southwark Cathedral (London, England)'), +(11820, 'Grand Pré (N.S.) -- Juvenile fiction'), +(11821, 'Theater -- Great Britain -- History'), +(11822, 'Hebrew literature, Modern -- History and criticism'), +(11823, 'Slavery -- History'), +(11824, 'Butterflies, Fossil'), +(11825, 'Missionaries -- Manitoba -- Biography'), +(11826, 'Sharp, William, 1855-1905'), +(11827, 'Buddhism -- Catechisms'), +(11828, 'Shen, Fu, 1763-ca. 1808'), +(11829, 'Evolution (Biology) -- Early works to 1800'), +(11830, 'University of Michigan -- History'), +(11831, 'Nationalism'), +(11832, 'Bahai Faith -- Controversial literature'), +(11833, 'Inn signs -- Great Britain'), +(11834, 'Postal stationery -- Canada'), +(11835, 'Russian fiction -- Translations into French'), +(11836, 'Louisiana -- Fiction'), +(11837, 'Scientific recreations'), +(11838, 'Journalism -- Corrupt practices'), +(11839, 'Materia medica -- Early works to 1800'), +(11840, 'Lindsay, Vachel, 1879-1931 -- Travel -- United States'), +(11841, 'Great Britain. Army. Regiment of Light Dragoons, 14th'), +(11842, 'Great Britain. Army. Dragoons, 2nd (Royal Scots Greys)'), +(11843, 'Medicine, Chinese -- Early works to 1800'), +(11844, 'Poets, Italian -- 16th century -- Correspondence'), +(11845, 'Mounted police -- Fiction'), +(11846, 'Violin -- Instruction and study'), +(11847, 'Borrow, George, 1803-1881 -- Travel -- Wales'), +(11848, 'Folklore -- Wales'), +(11849, 'Africa, North -- History -- 647-1517 -- Early works to 1800'), +(11850, 'Cubism -- Humor'), +(11851, 'Liberia -- History -- 1847-1944'), +(11852, 'Shakespeare, William, 1564-1616. Julius Caesar. Selections'), +(11853, 'Zola, Émile, 1840-1902'), +(11854, 'Gurney, Anna, 1795-1857 -- Death and burial -- Sermons'), +(11855, 'Industrial arts'), +(11856, 'Legends -- Iceland'), +(11857, 'Dramatists, French -- 17th century -- Biography'), +(11858, 'World War, 1914-1918 -- Regimental histories -- United States -- 28th (Iron) division'), +(11859, 'Raleigh, Walter, 1861-1922. War in the air. Volume 1'), +(11860, 'Pastoral poetry, English'), +(11861, 'Secession -- United States'), +(11862, 'Brighton (England) -- History'), +(11863, 'Isle of Wight (England) -- Guidebooks'), +(11864, 'Girls -- Social life and customs -- Juvenile fiction'), +(11865, 'Folk songs, Hungarian -- Romania -- Transylvania'), +(11866, 'Appomattox Campaign, 1865'), +(11867, 'Actresses -- France -- Biography'), +(11868, 'Mnemonics'), +(11869, 'Yucatán (Mexico : State) -- History'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(11870, 'Moses (Biblical leader) -- Juvenile literature'), +(11871, 'Scotland -- Poetry'), +(11872, 'Tolstoy, Leo, graf, 1828-1910 -- Childhood and youth -- Fiction'), +(11873, 'Law -- Iraq -- Babylonia'), +(11874, 'Vedanta'), +(11875, 'Poets, American'), +(11876, 'Literary ethics'), +(11877, 'Killing of the elderly -- Fiction'), +(11878, 'Noto Peninsula (Japan) -- Description and travel'), +(11879, 'Heiresses -- Fiction'), +(11880, 'Germany -- Politics and government -- 1888-1918'), +(11881, 'Telepathy -- Juvenile fiction'), +(11882, 'Brown, John, 1810-1882 -- Childhood and youth'), +(11883, 'Atonement -- Mormon Church'), +(11884, 'Great Britain -- History -- Mary I, 1553-1558 -- Juvenile fiction'), +(11885, 'Tropical medicine'), +(11886, 'Northwest, Canadian -- Discovery and exploration -- British'), +(11887, 'Women automobile drivers -- History'), +(11888, 'Leighton of Stretton, Frederic Leighton, Baron, 1830-1896'), +(11889, 'Romances, English'), +(11890, 'Mammals -- Washington (State)'), +(11891, 'Guernsey (Channel Islands) -- Fiction'), +(11892, 'Atonement -- Fiction'), +(11893, 'Lapland -- Description and travel -- Juvenile literature'), +(11894, 'Petrarca, Francesco, 1304-1374 -- Translations into English'), +(11895, 'Italian drama (Comedy)'), +(11896, 'History -- Periodicals'), +(11897, 'Pombal, Sebastião José de Carvalho e Melo, Marquês de, 1699-1782 -- Poetry'), +(11898, 'London (England) -- Guidebooks -- Juvenile literature'), +(11899, 'World War, 1914-1918 -- Public opinion'), +(11900, 'France -- Description and travel -- Early works to 1800'), +(11901, 'Hemp'), +(11902, 'Exodus, The -- Fiction'), +(11903, 'Peddlers -- Juvenile fiction'), +(11904, 'France -- Kings and rulers -- Paramours -- Biography'), +(11905, 'Canada. Canadian Army. French-Canadian Battalion, 22nd'), +(11906, 'Welsh language -- Dictionaries -- English'), +(11907, 'Tennyson, Alfred Tennyson, Baron, 1809-1892 -- Friends and associates'), +(11908, 'D. Van Nostrand Company -- Catalogs'), +(11909, 'Surveying -- Juvenile fiction'), +(11910, 'Frontier and pioneer life -- Iowa -- Fiction'), +(11911, 'Songs, Scots -- Scotland -- Texts'), +(11912, 'Netherlands -- History -- 1648-1714 -- Fiction'), +(11913, 'Classification, Decimal'), +(11914, 'Alchemy -- Early works to 1800'), +(11915, 'Love -- Religious aspects -- Christianity'), +(11916, 'Wupatki National Monument (Ariz.)'), +(11917, 'Jews -- Austria -- Fiction'), +(11918, 'World War, 1914-1918 -- Great Britain -- Societies, etc.'), +(11919, 'Mythology, Assyro-Babylonian'), +(11920, 'Zoology -- California -- Periodicals'), +(11921, 'Medea, consort of Aegeus, King of Athens (Mythological character) -- Drama'), +(11922, 'Cost and standard of living'), +(11923, 'Spanish mission buildings -- California'), +(11924, 'Gallatin, Albert, 1761-1849'), +(11925, 'Indians of North America -- Mississippi River Valley'), +(11926, 'Cassidy, Hopalong (Fictitious character) -- Fiction'), +(11927, 'Herriges, John'), +(11928, 'Marriage -- Germany -- Fiction'), +(11929, 'Lightning conductors -- Bibliography'), +(11930, 'Devon (England)'), +(11931, 'Andalusia (Spain)'), +(11932, 'France -- History -- 1789-1900 -- Fiction'), +(11933, 'Indians of North America -- Legal status, laws, etc.'), +(11934, 'History, Modern'), +(11935, 'Computers -- Fiction'), +(11936, 'Aboriginal Australians -- Folklore'), +(11937, 'Melanchthon, Philipp, 1497-1560'), +(11938, 'Psychiatric hospital care -- United States -- History'), +(11939, 'Historic buildings -- North Carolina'), +(11940, 'Woody plants -- Texas -- Dallas County -- Identification'), +(11941, 'Cats -- Poetry'), +(11942, 'Zaandam (Netherlands) -- History -- Juvenile fiction'), +(11943, 'Lost continents -- Fiction'), +(11944, 'Tagalog fiction'), +(11945, 'Great Britain -- History -- Medieval period, 1066-1485'), +(11946, 'Ghosts -- Nova Scotia -- Amherst'), +(11947, 'Great Britain -- Social life and customs -- 19th century -- Caricatures and cartoons'), +(11948, 'Sanskrit poetry -- Translations into English'), +(11949, 'United States. Army. Massachusetts Artillery Battery, 2nd (1861-1865)'), +(11950, 'Marathon running -- Juvenile fiction'), +(11951, 'Seven Reductions, War of the, 1754-1756'), +(11952, 'Chinese poetry -- Translations into French'), +(11953, 'Beardsley, Aubrey, 1872-1898'), +(11954, 'Architecture -- Egypt -- Details'), +(11955, 'Smugglers -- Fiction'), +(11956, 'Hyperspace'), +(11957, 'Fern, Fanny, 1811-1872'), +(11958, 'Piano -- Construction'), +(11959, 'Taquari River (Rio Grande do Sul, Brazil)'), +(11960, 'Poultry -- Hybridization'), +(11961, 'Music -- England -- History and criticism'), +(11962, 'Ghost stories, Scottish'), +(11963, 'South African War, 1899-1902 -- Personal narratives, Afrikaner'), +(11964, 'Yukon River Valley (Yukon and Alaska) -- Poetry'), +(11965, 'Arabs -- Africa, Central -- Fiction'), +(11966, 'Clergy -- Juvenile fiction'), +(11967, 'Grocery shopping -- Juvenile fiction'), +(11968, 'Umbria (Italy) -- Description and travel'), +(11969, 'Dramatists -- Drama'), +(11970, 'English periodicals -- 19th century -- History'), +(11971, 'Religious poetry, Dutch'), +(11972, 'Niobe (Greek mythology) -- Drama'), +(11973, 'Christian patron saints -- Biography'), +(11974, 'Sejanus, Lucius Aelius, -31 -- Drama'), +(11975, 'Stradivari, Antonio, approximately 1644-1737'), +(11976, 'Longevity -- Fiction'), +(11977, 'Arthur, King -- Fiction'), +(11978, 'South America -- Description and travel -- Early works to 1800'), +(11979, 'Blenheim, Battle of, Blindheim, Bavaria, Germany, 1704'), +(11980, 'Americans -- Germany -- Fiction'), +(11981, 'Cowper, William, 1731-1800 -- Correspondence'), +(11982, 'Technical education -- Germany'), +(11983, 'France -- History -- Revolution, 1789-1799 -- Drama'), +(11984, 'Adelaide, Queen, consort of William IV, King of Great Britain, 1792-1849'), +(11985, 'Québec (Québec) -- History -- Fiction'), +(11986, 'Wallenrod, Konrad, -1393 -- Poetry'), +(11987, 'Leonardo, da Vinci, 1452-1519 -- Notebooks, sketchbooks, etc.'), +(11988, 'Intelligence tests'), +(11989, 'Martínez Montiño, Francisco, active 16th century -- Fiction'), +(11990, 'Stephen, Saint, -approximately 36 -- Fiction'), +(11991, 'England, Northern -- Poetry'), +(11992, 'Appendicitis'), +(11993, 'Metamorphosis -- Fiction'), +(11994, 'Oregon -- History -- Periodicals'), +(11995, 'Slide-rule'), +(11996, 'New England -- Climate'), +(11997, 'Murder -- United States'), +(11998, 'Water resources development -- Systems engineering -- Oregon -- History'), +(11999, 'Theater -- History'), +(12000, 'Brant, Joseph, 1742-1807'), +(12001, 'Stillwell, Leander, 1843-1934'), +(12002, 'Arthur, Chester Alan, 1829-1886'), +(12003, 'France -- Intellectual life'), +(12004, 'Short stories, Tagalog'), +(12005, 'Great Britain -- History -- Stuarts, 1603-1714'), +(12006, 'Lifeboats -- Juvenile fiction'), +(12007, 'Great Britain -- History -- Anne, 1702-1714 -- Juvenile fiction'), +(12008, 'France -- History -- Third Republic, 1870-1940'), +(12009, 'Floriculture -- ​Canada -- ​Periodicals'), +(12010, 'Bible. Ecclesiastes -- Meditations'), +(12011, 'Napoleon I, Emperor of the French, 1769-1821 -- Caricatures and cartoons'), +(12012, 'Catholic Church -- Spain -- Clergy -- Fiction'), +(12013, 'Richard I, King of England, 1157-1199'), +(12014, 'Saint Lawrence River -- Description and travel'), +(12015, 'Grey, Jane, Lady, 1537-1554'), +(12016, 'Anglo-Saxons'), +(12017, 'Czech poetry -- Translations into German'), +(12018, 'Bible. Gospels -- Criticism, Textual'), +(12019, 'Europaeus, D. E. D. (David Emanuel Daniel), 1820-1884'), +(12020, 'Northwest, Pacific -- Fiction'), +(12021, 'Mistral, Frédéric, 1830-1914'), +(12022, 'Kentucky -- History -- 19th century -- Fiction'), +(12023, 'Frogs -- Central America'), +(12024, 'Railroads -- United States -- Employees'), +(12025, 'India -- Juvenile literature'), +(12026, 'Virgil -- Adaptations'), +(12027, 'Bible. Ezekiel -- Criticism, interpretation, etc.'), +(12028, 'Indians of North America -- Commerce'), +(12029, 'Fitz, Henry, 1808-1863'), +(12030, 'Young Ireland Party -- History'), +(12031, 'Sami (European people)'), +(12032, 'Gold mines and mining -- Drama'), +(12033, 'Merchant marine -- Juvenile fiction'), +(12034, 'Sévigné, Marie de Rabutin-Chantal, marquise de, 1626-1696 -- Correspondence'), +(12035, 'Attila, -453 -- Fiction'), +(12036, 'Pine'), +(12037, 'Cooking -- Study and teaching (Secondary)'), +(12038, 'Unmarried couples -- Fiction'), +(12039, 'Running races -- Fiction'), +(12040, 'Epic literature, Irish -- History and criticism'), +(12041, 'Coconut -- Philippines'), +(12042, 'Women\'s rights -- Drama'), +(12043, 'Sarawak (Malaysia) -- History'), +(12044, 'Short stories, American -- Translations into French'), +(12045, 'Florence (Italy) -- Description and travel'), +(12046, 'New Zealand -- Politics and government'), +(12047, 'Representative government and representation'), +(12048, 'Tuscany (Italy) -- Description and travel'), +(12049, 'Physicians -- United States -- Biography'), +(12050, 'William I, Prince of Orange, 1533-1584'), +(12051, 'Chelsea (London, England) -- Politics and government'), +(12052, 'Conflict of generations -- Fiction'), +(12053, 'Fairy tales -- Yugoslavia'), +(12054, 'Swedish drama -- Translations into German'), +(12055, 'Jutland, Battle of, 1916'), +(12056, 'Home economics -- Juvenile literature'), +(12057, 'Electronic data processing -- Terminology -- Humor'), +(12058, 'Extemporaneous preaching'), +(12059, 'Galician poetry'), +(12060, 'East India Company -- Early works to 1800'), +(12061, 'Afonso V, King of Portugal, 1432-1481'), +(12062, 'Kidnapping -- Juvenile fiction'), +(12063, 'Predestination'), +(12064, 'Glaciers -- British Columbia'), +(12065, 'Indians of North America -- Treaties'), +(12066, 'Petrified Forest National Park (Ariz.)'), +(12067, 'Melancholy -- Early works to 1800'), +(12068, 'Short stories, Danish -- Translations into Finnish'), +(12069, 'Outlaws -- Fiction'), +(12070, 'Wesley, Charles, 1707-1788 -- Fiction'), +(12071, 'Latin language -- Grammar -- Problems, exercises, etc.'), +(12072, 'Spies -- Juvenile fiction'), +(12073, 'Mermaids -- Fiction'), +(12074, 'Pacific Area -- Social life and customs -- Fiction'), +(12075, 'Cooking (Curry)'), +(12076, 'Neuroses'), +(12077, 'Trees -- Pennsylvania'), +(12078, 'Latin America -- Biography'), +(12079, 'Lodging-houses -- Great Britain'), +(12080, 'Incas -- Drama'), +(12081, 'Russia -- History -- 1904-1914 -- Fiction'), +(12082, 'Political corruption -- United States'), +(12083, 'Pathology'), +(12084, 'Insurance -- United States'), +(12085, 'Nurses -- Juvenile fiction'), +(12086, 'Shipping companies (Marine transportation) -- Fiction'), +(12087, 'White Mountains (N.H. and Me.) -- Description and travel'), +(12088, 'Dickens, Charles, 1812-1870 -- Poetry'), +(12089, 'Fraans-Vlaanderen (La Flandre française, French Flanders, France : Province) -- Description and travel'), +(12090, 'Jews -- United States -- History'), +(12091, 'Hunger -- Fiction'), +(12092, 'Pennsylvania -- History -- Colonial period, ca. 1600-1775'), +(12093, 'Gold mines and mining -- Alaska -- Juvenile fiction'), +(12094, 'Inventors -- United States'), +(12095, 'Machen, Arthur, 1863-1947'), +(12096, 'Europe -- History -- 1517-1648 -- Fiction'), +(12097, 'Trials (Witchcraft) -- Denmark'), +(12098, 'United States. Federal Bureau of Investigation -- Fiction'), +(12099, 'Geometry'), +(12100, 'Cassandra (Legendary character) -- Drama'), +(12101, 'Children -- South Africa -- Transvaal -- Juvenile literature'), +(12102, 'Family -- England -- Juvenile fiction'), +(12103, 'Plague -- Fiction'), +(12104, 'Racism -- Fiction'), +(12105, 'Great Britain. Coastguard Service -- Juvenile fiction'), +(12106, 'Saws -- History'), +(12107, 'Han, Xiangzi -- Fiction'), +(12108, 'Russia -- Kings and rulers'), +(12109, 'Rocky Mountains -- Juvenile fiction'), +(12110, 'Fables, English -- Early works to 1800'), +(12111, 'Universalist Church -- Biography'), +(12112, 'Spanish language -- Sound recordings for English speakers'), +(12113, 'Naval architects -- Northern Ireland -- Belfast -- Biography'), +(12114, 'World War, 1914-1918 -- Jews -- Germany'), +(12115, 'New York (N.Y.) -- Social life and customs -- Periodicals'), +(12116, 'Di, Renjie, 629-700 -- Fiction'), +(12117, 'Boufflers, Stanislas-Jean de, 1738-1815'), +(12118, 'Portugal -- History -- 1826-1853'), +(12119, 'Epigrams, Latin -- Translations into English'), +(12120, 'Gilmour, James, 1843-1891'), +(12121, 'Ascension of the soul'), +(12122, 'Virtues (Buddhism)'), +(12123, 'Scandinavians -- United States'), +(12124, 'Costume -- Netherlands -- History'), +(12125, 'Psychiatric epidemiology'), +(12126, 'Hunter Blair, David Oswald, Sir, 1853-1939'), +(12127, 'Augustinians -- France -- Charters'), +(12128, 'Green Spring Farm (Va.)'), +(12129, 'Argentina -- History -- 1535-1617 -- Poetry'), +(12130, 'Indians of North America -- Nova Scotia'), +(12131, 'Nobility -- Scotland -- Fiction'), +(12132, 'Painting -- Early works to 1800'), +(12133, 'United States -- Politics and government -- 1845-1849'), +(12134, 'Tang Xuanzong, Emperor of China, 685-762 -- Anecdotes'), +(12135, 'Fortune-telling -- New York (State) -- Humor'), +(12136, 'Punic War, 2nd, 218-201 B.C. -- Poetry'), +(12137, 'William D. Ticknor (Firm : Boston, Mass.)'), +(12138, 'Jews -- United States -- Periodicals'), +(12139, 'Theater -- Finland'), +(12140, 'Reasoning'), +(12141, 'Black Death'), +(12142, 'Farm life -- Poetry'), +(12143, 'Industries -- Soviet Union'), +(12144, 'Debts, Public'), +(12145, 'Gold mines and mining -- Australia -- Victoria'), +(12146, 'Jupiter probes'), +(12147, 'Field, Cyrus W. (Cyrus West), 1819-1892'), +(12148, 'Finland -- Social life and customs -- Fiction'), +(12149, 'Eyth, Max, 1836-1906'), +(12150, 'Christian poetry, English (Middle) -- Translations into English'), +(12151, 'Benevolence'), +(12152, 'Bastille -- History'), +(12153, 'Great Britain -- History -- Alfred, 871-899 -- Juvenile fiction'), +(12154, 'Gardening -- Bibliography'), +(12155, 'Great Britain -- History -- Henry II, 1154-1189'), +(12156, 'New Britain Island (Papua New Guinea) -- History'), +(12157, 'Farm buildings'), +(12158, 'Jaffna (Sri Lanka) -- History'), +(12159, 'Mammals -- Alaska'), +(12160, 'Diamond mines and mining -- South Africa -- Fiction'), +(12161, 'Railroads -- Early works to 1850'), +(12162, 'German fiction -- Translations into Spanish'), +(12163, 'Spices'), +(12164, 'Masts and rigging -- Juvenile fiction'), +(12165, 'Legends -- Scotland'), +(12166, 'Letter writing -- Handbooks, manuals, etc.'), +(12167, 'Women -- Education -- United States'), +(12168, 'Jersey City (N.J.) -- History'), +(12169, 'Virginia -- History -- Colonial period, ca. 1600-1775 -- Study and teaching (Secondary)'), +(12170, 'Crumpton, H. J. (Hezekiah John), 1828-'), +(12171, 'Washington, George, 1732-1799 -- Freemasonry'), +(12172, 'France. Ministère des P.T.T. -- History'), +(12173, 'History, Modern -- 19th century'), +(12174, 'Pike'), +(12175, 'Chemical industry -- Sweden'), +(12176, 'Brooklyn (New York, N.Y.) -- History'), +(12177, 'Ainu'), +(12178, 'Peyton, John Howe, 1778-1847'), +(12179, 'South Pole -- Discovery and exploration -- British'), +(12180, 'Art -- Italy -- Venice'), +(12181, 'Engström, Albert, 1869-1940'), +(12182, 'France -- History -- July Revolution, 1830'), +(12183, 'Epic poetry, Greek -- History and criticism'), +(12184, 'Rome -- History -- Empire, 30 B.C.-284 A.D -- Fiction'), +(12185, 'Gaza'), +(12186, 'Italian poetry -- 18th century -- History and criticism'), +(12187, 'Science, Medieval -- Early works to 1800'), +(12188, 'Salzburg (Austria : Land) -- History -- Fiction'), +(12189, 'Self-culture'), +(12190, 'Mexico -- Statistics'), +(12191, 'Healers -- Fiction'), +(12192, 'United States. Army. Field Artillery Battalion, 311th. Battery D'), +(12193, 'Shakespeare, William, 1564-1616. Tempest'), +(12194, 'Northrop Collegiate School (Minneapolis, Minn.) -- Students -- Yearbooks'), +(12195, 'McKinley, William, 1843-1901'), +(12196, 'Gibraltar -- History -- Siege, 1779-1783 -- Fiction'), +(12197, 'Benton, Frank, 1853-1921 -- Anecdotes'), +(12198, 'Historical fiction, English'), +(12199, 'Debutantes -- Fiction'), +(12200, 'Homeric hymns -- Translations into English'), +(12201, 'Accounting'), +(12202, 'Sawmills'), +(12203, 'Maury, Matthew Fontaine, 1806-1873'), +(12204, 'Hairdressing'), +(12205, 'Plantation life'), +(12206, 'Solitude -- Poetry'), +(12207, 'English literature -- Women authors -- History and criticism'), +(12208, 'Domestic relations -- Fiction'), +(12209, 'Greece -- Economic conditions -- 19th century'), +(12210, 'Art -- Philosophy'), +(12211, 'Henry V, King of England, 1387-1422 -- Drama'), +(12212, 'Great Britain -- Intellectual life -- 18th century'), +(12213, 'Solar eclipses -- 1869'), +(12214, 'Régnier, Henri de, 1864-1936 -- Criticism and interpretation'), +(12215, 'World War, 1914-1918 -- Hospitals, charities, etc.'), +(12216, 'Coal mines and mining -- Belgium -- Liège (Province)'), +(12217, 'Whaling -- Juvenile fiction'), +(12218, 'Tagalog language -- Texts'), +(12219, 'Adultery -- Drama'), +(12220, 'England -- Social life and customs -- 18th century'), +(12221, 'Short stories, Russian -- Translations into German'), +(12222, 'United States. Federal Bureau of Investigation -- Juvenile fiction'), +(12223, 'Joseph II, Holy Roman Emperor, 1741-1790'), +(12224, 'Electric bells'), +(12225, 'Rembrandt Harmenszoon van Rijn, 1606-1669 -- Catalogs'), +(12226, 'Hungarian drama'), +(12227, 'Bible. Mark XVI, 9-20 -- Criticism, Textual'), +(12228, 'Romances -- History and criticism'), +(12229, 'Painting -- Germany'), +(12230, 'Gustav I Vasa, King of Sweden, 1496-1560 -- Fiction'), +(12231, 'Europe -- Civilization'), +(12232, 'Misers -- Juvenile fiction'), +(12233, 'Johnson, Andrew, 1808-1875 -- Impeachment'), +(12234, 'Kinglake, Alexander William, 1809-1891'), +(12235, 'Panama -- Fiction'), +(12236, 'Albany, Louise Maximiliane Caroline Emanuele, Princess of Stolberg-Gedern, calling herself Countess of, 1752-1824'), +(12237, 'Davis, Noah, 1803 or 1804-'), +(12238, 'Submarines (Ships)'), +(12239, 'Detectives -- Juvenile fiction'), +(12240, 'Noailles, Anne-Paule-Dominique de, marquise de Montagu, 1766-1839'), +(12241, 'Mississippi kite'), +(12242, 'Navajo Indians -- Rites and ceremonies'), +(12243, 'Art -- England'), +(12244, 'Children -- North America'), +(12245, 'Plague -- Europe -- History -- Fiction'), +(12246, 'Mendaña de Neira, Alvaro de, 1542?-1595'), +(12247, 'Ritualism -- History -- 19th century'), +(12248, 'Amoeboid movement'), +(12249, 'Chile -- History -- War of Independence, 1810-1824 -- Fiction'), +(12250, 'Great Britain -- History -- Edward I, 1272-1307 -- Juvenile fiction'), +(12251, 'Drinking customs -- Early works to 1800'), +(12252, 'Jacobite Rebellion, 1715 -- Fiction'), +(12253, 'Brook Farm Phalanx (West Roxbury, Boston, Mass.)'), +(12254, 'Social surveys -- Pennsylvania -- Pittsburgh'), +(12255, 'Pageants -- England -- History'), +(12256, 'Biology -- Textbooks'), +(12257, 'Bible and evolution'), +(12258, 'Guyana'), +(12259, 'Interior decoration -- History'), +(12260, 'South Africa -- History -- 1836-1909 -- Fiction'), +(12261, 'Fishes -- Kansas -- Wakarusa River'), +(12262, 'World War, 1914-1918 -- Campaigns -- Iraq'), +(12263, 'Bookbinding -- Handbooks, manuals, etc.'), +(12264, 'Magnetism -- Early works to 1800'), +(12265, 'Flanders (Belgium) -- Juvenile fiction'), +(12266, 'Generals -- United States -- Correspondence'), +(12267, 'Growth'), +(12268, 'Blind -- Employment'), +(12269, 'Slaves -- Texas -- Biography'), +(12270, 'World War, 1914-1918 -- War work -- Young Men\'s Christian Associations'), +(12271, 'Freshwater animals -- India'), +(12272, 'North Carolina -- History -- Civil War, 1861-1865 -- Personal narratives, Confederate'), +(12273, 'Peasants\' War, 1524-1525'), +(12274, 'Portugal -- History -- Revolution, 1820'), +(12275, 'Vera y Figueroa, Juan Antonio de, conde de la Roca, 1588-1658. Centón epistolario'), +(12276, 'Employees -- Recruiting'), +(12277, 'Lancashire (England) -- Description and travel'), +(12278, 'International cooperation'), +(12279, 'Pius IX, Pope, 1792-1878'), +(12280, 'Folk poetry, American -- Kentucky -- Themes, motives'), +(12281, 'Good and evil -- Juvenile fiction'), +(12282, 'Secret societies -- Fiction'), +(12283, 'Queensland -- Description and travel'), +(12284, 'Maternity nursing'), +(12285, 'English language -- Old English, ca. 450-1100'), +(12286, 'Demosthenes -- Translations into English'), +(12287, 'Family secrets -- Drama'), +(12288, 'Egypt -- Social life and customs'), +(12289, 'Gay men -- England -- Fiction'), +(12290, 'Sewerage -- Mexico -- Monterrey'), +(12291, 'Slaves\' writings, American'), +(12292, 'Pugachev, Emelian Ivanovich, -1775 -- Fiction'), +(12293, 'Pickles'), +(12294, 'John Murray (Firm) -- Catalogs'), +(12295, 'Campaign literature -- Republican'), +(12296, 'Burma -- Religion'), +(12297, 'Glass manufacture -- Juvenile literature'), +(12298, 'Spanish language -- Dictionaries -- German'), +(12299, 'Bible -- Publication and distribution'), +(12300, 'Voltaire, 1694-1778 -- Friends and associates'), +(12301, 'Lenz, Frederick, 1950-'), +(12302, 'Water spirits -- Fiction'), +(12303, 'Clothing trade -- New York (State) -- New York -- Fiction'), +(12304, 'Jewish girls -- Fiction'), +(12305, 'France -- Politics and government -- 1814-1830'), +(12306, 'Art, French -- 19th century -- History and criticism'), +(12307, 'Germany -- Politics and government -- 1871-'), +(12308, 'Eskimos -- Alaska -- Barrow, Point, Region'), +(12309, 'United States. Army. New York Cavalry Regiment, 2nd (1861-1865)'), +(12310, 'Women and war -- Fiction'), +(12311, 'Pecan'), +(12312, 'Philippines -- Juvenile fiction'), +(12313, 'Breast'), +(12314, 'Wild flowers -- Canada -- Pictorial works'), +(12315, 'Commercial products'), +(12316, 'British -- Indonesia -- Fiction'), +(12317, 'Cromer (England) -- Description and travel'), +(12318, 'Nephews -- Juvenile fiction'), +(12319, 'Orange County (N.Y.) -- History'), +(12320, 'British -- Afghanistan -- Fiction'), +(12321, 'Novelists, Irish -- 19th century -- Biography'), +(12322, 'United States. Army -- Fiction'), +(12323, 'Independent Order of Odd Fellows'), +(12324, 'Incandescent lamps'), +(12325, 'Teenage girls -- Fiction'), +(12326, 'Soil mechanics'), +(12327, 'Alec-Tweedie, Mrs. (Ethel), -1940'), +(12328, 'Women outlaws -- Fiction'), +(12329, 'Great Britain -- History -- 1689-1714 -- Sources'), +(12330, 'Covenanters -- Scotland -- History'), +(12331, 'Dickens, Charles, 1812-1870. Pickwick papers'), +(12332, 'Finland -- History -- Autonomy and independence movements'), +(12333, 'Mafia -- Fiction'), +(12334, 'Demonology'), +(12335, 'Viticulture -- United States'), +(12336, 'Massacre survivors -- Illinois -- Chicago'), +(12337, 'Clergy -- Scotland -- Biography'), +(12338, 'Agriculture -- Virginia -- Fairfax County -- History'), +(12339, 'Dance parties -- Juvenile fiction'), +(12340, 'New Hampshire -- Fiction'), +(12341, 'Blasting'), +(12342, 'Dancing mice'), +(12343, 'Edison, Thomas A. (Thomas Alva), 1847-1931 -- Juvenile literature'), +(12344, 'Children -- Thailand -- Juvenile literature'), +(12345, 'Tuscany (Italy) -- History'), +(12346, 'Cain (Biblical figure) -- Drama'), +(12347, 'Québec (Province) -- History -- Autonomy and independence movements -- Fiction'), +(12348, 'Heidegger, John James, 1659?-1748'), +(12349, 'Philippines -- Social life and customs -- Fiction'), +(12350, 'Philippines -- Social conditions'), +(12351, 'Hale, Frederick, 1874-1963'), +(12352, 'Mazzini, Giuseppe, 1805-1872'), +(12353, 'Buenos Aires (Argentina) -- Description and travel'), +(12354, 'Lobbyists -- Indiana -- Correspondence'), +(12355, 'Newman, Francis William, 1805-1897'), +(12356, 'Book of Mormon stories, English'), +(12357, 'Fortune-tellers -- Fiction'), +(12358, 'Music -- California -- History and criticism'), +(12359, 'Spanish drama -- Translations into Finnish'), +(12360, 'Great Britain -- Religion'), +(12361, 'Kurdistan -- Fiction'), +(12362, 'Family'), +(12363, 'Months'), +(12364, 'Bible. Ecclesiastes -- Commentaries'), +(12365, 'Byron, George Gordon Byron, Baron, 1788-1824 -- Last years'), +(12366, 'Serpent worship'), +(12367, 'France -- Colonies -- History'), +(12368, 'Poland -- Description and travel'), +(12369, 'Women -- Legal status, laws, etc. -- France'), +(12370, 'Impressment -- Juvenile fiction'), +(12371, 'Terig, Duncan -- Trials, litigation, etc.'), +(12372, 'Lake poets'), +(12373, 'Digestive enzymes'), +(12374, 'Theocritus'), +(12375, 'Private secretaries -- France -- Biography'), +(12376, 'Agriculture -- England -- History'), +(12377, 'Great Britain -- History -- Anglo-Saxon period, 449-1066 -- Sources'), +(12378, 'Italy -- History -- 1870-1914'), +(12379, 'Grand Teton National Park (Wyo.)'), +(12380, 'Interracial marriage -- Fiction'), +(12381, 'Service books (Music) -- Catholic Church'), +(12382, 'Menzel, Adolph, 1815-1905'), +(12383, 'Cattle -- Artificial insemination'), +(12384, 'Southern States -- Social life and customs -- 1775-1865 -- Fiction'), +(12385, 'Patagonia (Argentina and Chile) -- Fiction'), +(12386, 'Flags'), +(12387, 'Seville (Spain)'), +(12388, 'Chemistry, Organic'), +(12389, 'Harvey, William, 1578-1657'), +(12390, 'Cockerell, C. R. (Charles Robert), 1788-1863'), +(12391, 'Cronin, Patrick Henry, 1846-1889'), +(12392, 'African Americans -- Census'), +(12393, 'Hindu law'), +(12394, 'Education -- Ohio -- Curricula'), +(12395, 'Linn County (Iowa) -- History'), +(12396, 'Oceania -- Discovery and exploration -- Portuguese'), +(12397, 'Taylder, T. W. P. Materialism of the Mormons or Latter-day Saints, examined and exposed'), +(12398, 'Finnish Americans'), +(12399, 'Petersburg (Va.) -- History -- Siege, 1864-1865'), +(12400, 'English Church (Paris, France)'), +(12401, 'Dracula, Count (Fictitious character) -- Fiction'), +(12402, 'Boxing -- Drama'), +(12403, 'Scholars -- China -- Fiction'), +(12404, 'Pastoral poetry -- History and criticism'), +(12405, 'Catholic Church -- Clergy -- Juvenile fiction'), +(12406, 'Materia medica -- Handbooks, manuals, etc.'), +(12407, 'Maurice, Elector of Saxony, 1521-1553'), +(12408, 'Shakespeare, William, 1564-1616 -- Criticism and interpretation -- History -- 19th century'), +(12409, 'Pierce, Franklin, 1804-1869 -- Humor'), +(12410, 'Royal Botanic Gardens, Kew'), +(12411, 'Trump, Donald, 1946- -- Inauguration, 2017'), +(12412, 'Dolci, Carlo, 1616-1686'), +(12413, 'Butler, Joseph, 1692-1752'), +(12414, 'Motion picture theaters -- Juvenile fiction'), +(12415, 'Cubism'), +(12416, 'Taiwan -- History -- To 1895'), +(12417, 'Crocheting'), +(12418, 'Rafts -- Fiction'), +(12419, 'Natural history -- Australia'), +(12420, 'Tyler\'s Insurrection, 1381 -- Fiction'), +(12421, 'Children -- Anecdotes, facetiae, satire, etc.'), +(12422, 'Knights and knighthood -- Fiction'), +(12423, 'Greece -- Antiquities'), +(12424, 'Humanists -- Netherlands -- Biography'), +(12425, 'Cupeño Indians -- Juvenile fiction'), +(12426, 'Kiowa Indians'), +(12427, 'Catholic Church -- Sermons'), +(12428, 'Balzac, Honoré de, 1799-1850'), +(12429, 'Irish Americans -- Southern States'), +(12430, 'Missions -- Papua New Guinea'), +(12431, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Massachusetts'), +(12432, 'Secret service -- Juvenile fiction'), +(12433, 'Murderers -- Fiction'), +(12434, 'Greenwich Village (New York, N.Y.)'), +(12435, 'Virginia -- Religion'), +(12436, 'Book of Mormon -- Juvenile literature'), +(12437, 'Trials (Libel) -- England'), +(12438, 'Elections'), +(12439, 'Kentucky. Militia'), +(12440, 'Classical philology'), +(12441, 'Indians of North America -- Government relations -- 1789-1869'), +(12442, 'Color prints, Japanese'), +(12443, 'Love stories, German'), +(12444, 'Forests and forestry -- Maine -- Juvenile literature'), +(12445, 'Pitt, William, Earl of Chatham, 1708-1778'), +(12446, 'Dictation recordings'), +(12447, 'Postal service -- Great Britain'), +(12448, 'Methodist Church -- Juvenile literature'), +(12449, 'Arabic poetry -- Translations into German'), +(12450, 'Villages -- Netherlands -- Juvenile fiction'), +(12451, 'Russia (Federation) -- Politics and government -- 1991-'), +(12452, 'Confederate States of America. Army -- Supplies and stores'), +(12453, 'Queens -- Egypt -- Biography'), +(12454, 'Fantasy fiction, French'), +(12455, 'Planets'), +(12456, 'Munich (Germany) -- Fiction'), +(12457, 'Electrophysiology -- Early works to 1800'), +(12458, 'Hygiene -- Handbooks, manuals, etc. -- Early works to 1800'), +(12459, 'Lewis, Sinclair, 1885-1951 -- Parodies, imitations, etc.'), +(12460, 'Chaplin, Charlie, -- 1889-1977 -- Travel -- Europe'), +(12461, 'Great Britain -- Intellectual life -- 19th century'), +(12462, 'Carriage and wagon painting'), +(12463, 'Quental, Antero de, 1842-1891'), +(12464, 'Birds -- Territoriality'), +(12465, 'Rivers -- Fiction'), +(12466, 'Women -- Philippines'), +(12467, 'Fireships -- Fiction'), +(12468, 'Love -- Religious aspects'), +(12469, 'Holiness'), +(12470, 'Bible. Apocrypha. Ecclesiasticus'), +(12471, 'Bolívar, Simón, 1783-1830'), +(12472, 'Criminals -- Argentina -- Buenos Aires'), +(12473, 'Charlotte Elizabeth, 1790-1846'), +(12474, 'Liga Filipina'), +(12475, 'United States -- Politics and government -- 20th century'), +(12476, 'Murillo, Bartolomé Esteban, 1617-1682'), +(12477, 'Children -- Social life and customs -- Juvenile fiction'), +(12478, 'Picture books for children -- United States'), +(12479, 'Peru -- History -- To 1548'), +(12480, 'York (England) -- Description and travel'), +(12481, 'Haiti -- History -- Revolution, 1791-1804 -- Personal narratives'), +(12482, 'Insects -- Juvenile fiction'), +(12483, 'Franklin, John, 1786-1847'), +(12484, 'Lutherans -- New York (State) -- New York'), +(12485, 'Wisdom'), +(12486, 'Folklore -- England -- Lancashire'), +(12487, 'Geology, Stratigraphic'), +(12488, 'Carving (Meat, etc.)'), +(12489, 'Putnam, Israel, 1718-1790'), +(12490, 'Folklore -- Italy -- Rome'), +(12491, 'Allen, William G., fl. 1849-1853'), +(12492, 'West (U.S.) -- Intellectual life -- 19th century'), +(12493, 'Tales -- Mexico'), +(12494, 'Hymns, English -- History and criticism'), +(12495, 'Philosophy, Chinese -- 221 B.C.-960 A.D.'), +(12496, 'Crown jewels -- Great Britain -- History -- 17th century'), +(12497, 'Levant Island (France)'), +(12498, 'Fate and fatalism'), +(12499, 'Entertainment -- Fiction'), +(12500, 'Montgomery (Ala.) -- Description and travel'), +(12501, 'Great Britain -- History -- Edward VII, 1901-1910 -- Juvenile fiction'), +(12502, 'East Anglia (England) -- Fiction'), +(12503, 'Great Britain. Army. Gordon Highlanders -- Fiction'), +(12504, 'Lang, John, 1816-1864 -- Travel -- India'), +(12505, 'Renaissance -- England'), +(12506, 'Extrasensory perception in animals'), +(12507, 'Norway -- Juvenile literature'), +(12508, 'Italian literature -- To 1400 -- History and criticism'), +(12509, 'Luxemburg, Rosa, 1871-1919'), +(12510, 'Plant propagation'), +(12511, 'Scholars -- Great Britain -- Biography'), +(12512, 'Tableaux -- Juvenile fiction'), +(12513, 'Gutenberg, Johann, 1397?-1468 -- Drama'), +(12514, 'American literature -- Humor'), +(12515, 'Hunting -- South Africa'), +(12516, 'Ethics -- Greece'), +(12517, 'Algebraic fields'), +(12518, 'Urbino, Dukes of'), +(12519, 'England -- Economic conditions -- 1066-1485'), +(12520, 'Art, Japanese'), +(12521, 'Roberval, Marguerite de -- Fiction'), +(12522, 'Tyrol (Austria) -- Fiction'), +(12523, 'Dutch language -- Humor'), +(12524, 'Shipbuilding'), +(12525, 'Indians of North America -- Music'), +(12526, 'Greg, William R. (William Rathbone), 1809-1881'), +(12527, 'Wheat trade -- Fiction'), +(12528, 'Prostitutes -- France -- Fiction'), +(12529, 'Glacier National Park (Mont.) -- Juvenile fiction'), +(12530, 'Epic poetry, German -- Adaptations'), +(12531, 'Judaism -- Apologetic works'), +(12532, 'Indians of North America -- Mississippi River Valley -- Antiquities'), +(12533, 'Catholic Church -- Controversial literature -- Protestant authors'), +(12534, 'German language -- Idioms'), +(12535, 'Verse satire, English'), +(12536, 'England -- Social life and customs -- 16th century'), +(12537, 'Love poetry, American'), +(12538, 'Canons, fugues, etc.'), +(12539, 'Delaware -- History -- Fiction'), +(12540, 'Venezuela -- History -- 1556-1810'), +(12541, 'Faraday, Michael, 1791-1867'), +(12542, 'Historic sites -- England -- Thames Valley'), +(12543, 'Shamil, Imam, 1798?-1871'), +(12544, 'Pliny, the Younger -- Correspondence'), +(12545, 'Bible. Matthew IX-XXVIII -- Commentaries'), +(12546, 'Victoria Cross'), +(12547, 'Washington (D.C.) -- Remote-sensing images'), +(12548, 'Catechisms, English'), +(12549, 'Illustration of books -- France'), +(12550, 'Romans -- Great Britain'), +(12551, 'Press -- India -- Goa (State)'), +(12552, 'Song, Shangjie, 1901-1944 -- Diaries'), +(12553, 'Marryat, Frederick, 1792-1848'), +(12554, 'Prisoners -- Juvenile fiction'), +(12555, 'Botany'), +(12556, 'Audubon, John James, 1785-1851'), +(12557, 'London (England) -- Gazetteers -- Early works to 1800'), +(12558, 'Public health laws -- Pennsylvania -- Philadelphia'), +(12559, 'Wells Cathedral'), +(12560, 'Mississippi River Valley -- Fiction'), +(12561, 'Josephine, Empress, consort of Napoleon I, Emperor of the French, 1763-1814'), +(12562, 'Madison, Dolley, 1768-1849'), +(12563, 'Balloon ascensions -- France'), +(12564, 'Frederick II, King of Prussia, 1712-1786 -- Fiction'), +(12565, 'American National Red Cross'), +(12566, 'Circus -- England'), +(12567, 'Dante Alighieri, 1265-1321. Divina commedia -- History and criticism'), +(12568, 'Panama Canal (Panama) -- Pictorial works'), +(12569, 'Conic sections'), +(12570, 'King\'s College (University of Cambridge). Chapel'), +(12571, 'African American women -- Fiction'), +(12572, 'Government ownership'), +(12573, 'Slavery -- United States -- Religious aspects'), +(12574, 'Tragedy -- Early works to 1800'), +(12575, 'Lincoln, Abraham, 1809-1865 -- Homes and haunts -- Pictorial works'), +(12576, 'Men -- Societies and clubs -- Fiction'), +(12577, 'Painting, French'), +(12578, 'Louisbourg (N.S.) -- History -- Siege, 1745'), +(12579, 'Land grants -- Virginia -- History'), +(12580, 'Carbonari -- Fiction'), +(12581, 'Constable (Firm) -- Catalogs'), +(12582, 'Lobo, Jerónimo, 1596?-1678 -- Travel -- Ethiopia'), +(12583, 'Death -- Juvenile fiction'), +(12584, 'Louisiana -- Juvenile fiction'), +(12585, 'Boswell, James, 1740-1795 -- Friends and associates'), +(12586, 'Charities'), +(12587, 'Poor -- Great Britain'), +(12588, 'Working class women -- Literary collections'), +(12589, 'Hessen (Hesse, Germany : Province) -- Fiction'), +(12590, 'Harmonic analysis'), +(12591, 'Siksika Indians -- Juvenile fiction'), +(12592, 'Peru -- Fiction'), +(12593, 'Lumber camps -- Juvenile fiction'), +(12594, 'Italy -- Economic conditions'), +(12595, 'Poachers -- Great Britain'), +(12596, 'Trials (Murder) -- Fiction'), +(12597, 'Arithmetic -- Foundations'), +(12598, 'Automobiles -- History'), +(12599, 'Swords -- Juvenile fiction'), +(12600, 'Passos, José da Silva, 1800-1863'), +(12601, 'Drinking customs'), +(12602, 'Women authors -- Juvenile fiction'), +(12603, 'Sick children -- Drama'), +(12604, 'Abel (Biblical figure) -- Drama'), +(12605, 'Young women -- United States'), +(12606, 'Fishing villages -- Fiction'), +(12607, 'Catholic Church -- Clergy -- Fiction'), +(12608, 'Symmes, John Cleves, 1780-1829'), +(12609, 'Petrarca, Francesco, 1304-1374 -- Correspondence'), +(12610, 'Argentina -- Commerce'), +(12611, 'Jury -- Fiction'), +(12612, 'Algonquian Indians -- Fiction'), +(12613, 'Immigrants -- United States -- Biography'), +(12614, 'Hercegovina (Bosnia and Hercegovina) -- History'), +(12615, 'Journalism -- Great Britain -- History -- 19th century'), +(12616, 'Saxons -- Juvenile fiction'), +(12617, 'Genghis Khan, 1162-1227'), +(12618, 'Weihai (China) -- History'), +(12619, 'Whitman, Walt, 1819-1892'), +(12620, 'Skin -- Diseases'), +(12621, 'Adam, Juliette, 1836-1936'), +(12622, 'Criminals -- United States'), +(12623, 'New York (N.Y.) -- History'), +(12624, 'Paraguay River'), +(12625, 'Opium trade'), +(12626, 'Cooking -- Iowa -- Burlington'), +(12627, 'Grouchy, Emmanuel, marquis de, 1766-1847'), +(12628, 'Lightships'), +(12629, 'Adopted children -- Fiction'), +(12630, 'Germany. Heer -- Military life -- Fiction'), +(12631, 'Sermons, Low German'), +(12632, 'Greek drama (Satyr play)'), +(12633, 'Tennessee -- Fiction'), +(12634, 'Germany -- Antiquities'), +(12635, 'Character sketches'), +(12636, 'Warships -- Great Britain -- Juvenile fiction'), +(12637, 'Rebuses'), +(12638, 'Indians of North America -- Land tenure'), +(12639, 'Durham (England) -- Pictorial works'), +(12640, 'Purgatory -- Drama'), +(12641, 'Whitman, Walt, 1819-1892 -- Bibliography'), +(12642, 'Ornamental trees -- Diseases and pests -- Southern States'), +(12643, 'Runeberg, Johan Ludvig, 1804-1877'), +(12644, 'English poetry -- 20th century -- History and criticism'), +(12645, 'Africa, Southern -- Fiction'), +(12646, 'Legends -- Caucasus'), +(12647, 'Constitutional history -- Japan'), +(12648, 'Theater -- Great Britain'), +(12649, 'Goya, Francisco, 1746-1828'), +(12650, 'Arithmetic'), +(12651, 'British -- China -- Tibet Autonomous Region'), +(12652, 'Housing -- California -- San Francisco'), +(12653, 'Yellowstone River'), +(12654, 'United States. Army. Cavalry -- Fiction'), +(12655, 'Rome -- History -- Diocletian, 284-305 -- Fiction'), +(12656, 'West Point (N.Y.) -- Guidebooks'), +(12657, 'Radcliffe, John, 1650-1714'), +(12658, 'Photography -- History'), +(12659, 'Recruiting and enlistment -- Drama'), +(12660, 'Passamaquoddy Indians -- Folklore'), +(12661, 'Indians of North America -- California -- Religion'), +(12662, 'World War, 1939-1945 -- Personal narratives, American'), +(12663, 'American Tract Society'), +(12664, 'Pioneers -- United States -- Fiction'), +(12665, 'Brazilian literature -- Periodicals'), +(12666, 'Legends -- North Carolina'), +(12667, 'Récamier, Jeanne Françoise Julie Adélaïde Bernard, 1777-1849 -- Correspondance'), +(12668, 'Robartes of Truro, Frances Robartes, Baroness, -1626 -- Sermons'), +(12669, 'Appalachian Mountains -- Juvenile fiction'), +(12670, 'New Guinea -- Description and travel'), +(12671, 'Printing -- Missouri -- Saint Louis -- History'), +(12672, 'Christina, von Stommeln, 1242-1312'), +(12673, 'California -- Gold discoveries'), +(12674, 'Generative organs -- Diseases'), +(12675, 'Science -- Study and teaching'), +(12676, 'Ngati Toa (New Zealand people) -- Biography'), +(12677, 'Philosophy, English -- 18th century'), +(12678, 'Painters -- France'), +(12679, 'Piracy -- United States'), +(12680, 'Laundry'), +(12681, 'Sufism -- Early works to 1800'), +(12682, 'Personality disorders'), +(12683, 'Slavs -- History'), +(12684, 'Indians of South America -- Fiction'), +(12685, 'Eureka Springs (Ark.) -- History'), +(12686, 'Vocation, Ecclesiastical'), +(12687, 'Manures'), +(12688, 'Culture shock -- Fiction'), +(12689, 'Hawaii -- Social life and customs -- Fiction'), +(12690, 'Mental health -- Popular works'), +(12691, 'Silk industry'), +(12692, 'Profiteering'), +(12693, 'Kent (England) -- Fiction'), +(12694, 'Superstition -- Religious aspects -- Italy -- Fiction'), +(12695, 'Heroes -- Fiction'), +(12696, 'Ewing, Juliana Horatia Gatty, 1841-1885'), +(12697, 'Fables, French -- Translations into Esperanto'), +(12698, 'Dickens, Charles, 1812-1870 -- Criticism and interpretation'), +(12699, 'Readers (Secondary)'), +(12700, 'Nollet, abbé (Jean Antoine), 1700-1770. Lettres sur l\'électricité'), +(12701, 'Sports -- Humor'), +(12702, 'Mishnah. Avot'), +(12703, 'Vermont -- Juvenile fiction'), +(12704, 'Arlington House, the Robert E. Lee Memorial (Va.)'), +(12705, 'Botanists -- Great Britain -- Biography'), +(12706, 'Palmistry'), +(12707, 'Ferns -- United States -- Identification'), +(12708, 'Apache Indians -- Kings and rulers -- Biography -- Juvenile literature'), +(12709, 'Gentile, Giovanni, 1875-1944'), +(12710, 'Zodiac -- Poetry'), +(12711, 'Maxamad Cabdulle Xasan, 1864-1920 -- Juvenile fiction'), +(12712, 'Diphtheria'), +(12713, 'Self-interest'), +(12714, 'Natural history -- Australia -- Central Australia'), +(12715, 'Great Britain. Army. Regiment of Foot, 18th (Royal Irish)'), +(12716, 'Bridget, of Sweden, Saint, approximately 1303-1373 -- Fiction'), +(12717, 'Monteagle, William Parker, Baron, 1574 or 1575-1622'), +(12718, 'Snow family'), +(12719, 'Dutch literature -- History and criticism'), +(12720, 'Provençal language -- Grammar'), +(12721, 'Gardening -- England'), +(12722, 'Epic poetry, Italian -- Translations into Dutch'), +(12723, 'Art -- Egypt -- History'), +(12724, 'Great Western Railway (Great Britain) -- Employees'), +(12725, 'United States. Army. Pennsylvania Infantry Regiment, 132nd (1862-1863) -- Biography'), +(12726, 'Sable Island (N.S.) -- History -- Fiction'), +(12727, 'Legends -- Great Britain'), +(12728, 'Cornwall (England : County) -- Guidebooks'), +(12729, 'Interest'), +(12730, 'Wilde, Oscar, 1854-1900. Picture of Dorian Gray'), +(12731, 'Grabbe, Christian Dietrich, 1801-1836'), +(12732, 'Wigmakers'), +(12733, 'Cordero, Rafael, 1790-1868'), +(12734, 'Germany'), +(12735, 'Peninsular War, 1807-1814 -- Personal narratives'), +(12736, 'Bourgeoys, Marguerite, Saint, 1620-1700'), +(12737, 'Waiters -- Handbooks, manuals, etc.'), +(12738, 'Apache Indians -- Kings and rulers -- Biography'), +(12739, 'Tagore, Rabindranath, 1861-1941 -- Correspondence'), +(12740, 'Arizona'), +(12741, 'Bible. Apocrypha. Tobit'), +(12742, 'Finland -- Intellectual life'), +(12743, 'Stuck, Hudson, 1863-1920'), +(12744, 'Desert resources development -- Southwest, New'), +(12745, 'Confederate States of America. Army. Virginia Infantry Regiment, 37th'), +(12746, 'Prisons -- Fiction'), +(12747, 'Children -- Prayers and devotions'), +(12748, 'Ballet'), +(12749, 'English poetry -- Translations into Finnish'), +(12750, 'Sexual intercourse'), +(12751, 'Lady Nelson (Ship)'), +(12752, 'Jews -- Antiquities'), +(12753, 'Italy -- Church history'), +(12754, 'Singing -- Methods'), +(12755, 'Nova Scotia -- Fiction'), +(12756, 'Tuscarora Indians -- Fiction'), +(12757, 'Holidays -- Great Britain -- Juvenile literature'), +(12758, 'Mammoths -- North America'), +(12759, 'God -- Attributes -- Early works to 1800'), +(12760, 'India -- Juvenile fiction'), +(12761, 'Lightning conductors'), +(12762, 'Plants -- Great Britain'), +(12763, 'Czech drama -- 20th century'), +(12764, 'Zion National Park (Utah) -- Guidebooks'), +(12765, 'Chicago (Ill.) -- Juvenile fiction'), +(12766, 'Rome (Italy) -- Church history -- Primitive and early church, ca. 30-600 -- Fiction'), +(12767, 'Great Britain -- History -- George IV, 1820-1830 -- Fiction'), +(12768, 'Rogues and vagabonds -- England -- Early works to 1800'), +(12769, 'Lettering'), +(12770, 'Parcel post -- United States'), +(12771, 'Oneonta (N.Y.) -- History'), +(12772, 'Hell -- Fiction'), +(12773, 'Lightning'), +(12774, 'Ephesus (Extinct city) -- Fiction'), +(12775, 'Poetics -- History -- To 1500'), +(12776, 'Fishing -- North America'), +(12777, 'Indian captivities -- Argentina'), +(12778, 'Folk songs, Spanish -- Cuba'), +(12779, 'Bible. Ruth. Esperanto'), +(12780, 'Motion picture industry -- Juvenile fiction'), +(12781, 'Satire, Hebrew'), +(12782, 'Silverwork'), +(12783, 'Pasteur, Louis, 1822-1895'), +(12784, 'Panama Canal (Panama) -- Juvenile fiction'), +(12785, 'Napoleon I, Emperor of the French, 1769-1821 -- Juvenile fiction'), +(12786, 'Free Methodist Church of North America'), +(12787, 'Earthworms'), +(12788, 'Historians -- United States -- Biography'), +(12789, 'Spirituals (Songs)'), +(12790, 'Spiritual life -- Fiction'), +(12791, 'Merchants -- Humor'), +(12792, 'Immortality -- Christianity'), +(12793, 'Printing -- Style manuals'), +(12794, 'Indian textile fabrics -- East (U.S.)'), +(12795, 'Comets'), +(12796, 'France. Armée -- Biography'), +(12797, 'Jews -- Election, Doctrine of'), +(12798, 'Marxian economics'), +(12799, 'Slavery -- Georgia'), +(12800, 'Working class women -- Great Britain -- Drama'), +(12801, 'Fugitive slaves -- Juvenile fiction'), +(12802, 'Waldenses -- Fiction'), +(12803, 'Sheridan, Richard Brinsley, 1751-1816 -- Fiction'), +(12804, 'Assembly, Right of -- England'), +(12805, 'Esperanto -- Grammar'), +(12806, 'Money'), +(12807, 'Abortion -- New Zealand'), +(12808, 'Japanese tea ceremony'), +(12809, 'Palaces -- Great Britain'), +(12810, 'North Carolina -- History'), +(12811, 'Tales -- Nigeria, Southern'), +(12812, 'Mother Goose -- Parodies, imitations, etc.'), +(12813, 'Virginia -- Social life and customs -- Fiction'), +(12814, 'Improved Order of Red Men. Great Council of Kentucky'), +(12815, 'Rings'), +(12816, 'Monmouth, Battle of, Freehold, N.J., 1778 -- Fiction'), +(12817, 'London (England) -- Social life and customs -- 20th century -- Fiction'), +(12818, 'French fiction -- Translations into German'), +(12819, 'Blasco Ibáñez, Vicente, 1867-1928 -- Travel -- Europe'), +(12820, 'Plymouth (Mass.) -- Guidebooks'), +(12821, 'English drama -- Early modern and Elizabethan, 1500-1600 -- History and criticism'), +(12822, 'Zuni Indians -- Religion'), +(12823, 'Geotropism'), +(12824, 'Home schooling'), +(12825, 'World War, 1914-1918 -- War work -- Australia'), +(12826, 'Neighborhoods -- Juvenile fiction'), +(12827, 'Nuclear optical models'), +(12828, 'Journalism -- France -- History -- 19th century'), +(12829, 'Guyenne (France)'), +(12830, 'Cheshire (England) -- History'), +(12831, 'Women in the theater -- United States -- Juvenile fiction'), +(12832, 'Chicago (Ill.) -- Social life and customs -- 19th century -- Fiction'), +(12833, 'Big Hole, Battle of the, Mont., 1877'), +(12834, 'United States Virgin Islands -- Description and travel'), +(12835, 'Great Britain -- History, Military -- 19th century'), +(12836, 'Díaz, Porfirio, 1830-1915'), +(12837, 'Ballou, Maturin Murray, 1820-1895 -- Travel'), +(12838, 'Obama, Barack, 1961- -- Inauguration, 2009'), +(12839, 'Parallels (Geometry)'), +(12840, 'France -- Foreign relations -- 1815-1848'), +(12841, 'Bible. Samuel, 2nd'), +(12842, 'Biological warfare -- Health aspects -- Handbooks, manuals, etc.'), +(12843, 'Tlingit Indians -- Fiction'), +(12844, 'Children\'s songs, English'), +(12845, 'Engineering -- Bibliography -- Catalogs'), +(12846, 'Primitive societies'), +(12847, 'Syndicalism -- France'), +(12848, 'Athletics -- Juvenile fiction'), +(12849, 'Bonaventure, Saint, Cardinal, approximately 1217-1274'), +(12850, 'Russo-Japanese War, 1904-1905 -- Causes'), +(12851, 'Paris (France) -- History -- 1789-1799 -- Fiction'), +(12852, 'England -- Church history -- 1066-1485'), +(12853, 'Newport (R.I.)'), +(12854, 'Mars (Planet) -- Miscellanea'), +(12855, 'Short stories, Swedish -- Translations into English'), +(12856, 'Campaign literature, 1872 -- Republican'), +(12857, 'Deep diving -- Juvenile literature'), +(12858, 'Shakespeare, William, 1564-1616 -- Forgeries -- Fiction'), +(12859, 'Great Britain -- Colonies -- Juvenile fiction -- Periodicals'), +(12860, 'Thailand -- Religious life and customs'), +(12861, 'Arkansas -- Description and travel'), +(12862, 'Indians of South America -- Peru'), +(12863, 'Labor -- Biography'), +(12864, 'California -- History, Local'), +(12865, 'Hula (Dance)'), +(12866, 'Private investigators -- Fiction'), +(12867, 'Wizard of Oz (Fictitious character) -- Juvenile fiction'), +(12868, 'Printing -- United States -- Handbooks, manuals, etc.'), +(12869, 'Consanguinity -- United States'), +(12870, 'Russell, Bertrand, 1872-1970'), +(12871, 'French literature -- To 1500 -- History and criticism'), +(12872, 'Heine, Heinrich, 1797-1856 -- Translations into English'), +(12873, 'Housing'), +(12874, 'Scots -- India -- Fiction'), +(12875, 'Military camps'), +(12876, 'Girl Scouts -- Handbooks, manuals, etc.'), +(12877, 'Ruined buildings -- Kentucky -- Louisville -- Pictorial works'), +(12878, 'Inventions -- Early works to 1800'), +(12879, 'Zen Buddhism -- Doctrines -- Early works to 1800'), +(12880, 'Monks -- Fiction'), +(12881, 'Intendants -- Canada -- Biography'), +(12882, 'Norwegian literature -- History and criticism'), +(12883, 'Authors, Russian -- 19th century -- Diaries'), +(12884, 'Americans -- Travel -- Fiction'), +(12885, 'Miracles'), +(12886, 'Oxyacetylene welding and cutting'), +(12887, 'Church of England -- Clergy'), +(12888, 'India -- Commerce -- Great Britain'), +(12889, 'Fables, Latin -- Translations into English'), +(12890, 'Borgia, Cesare, 1476?-1507'), +(12891, 'Lord\'s Supper -- Church of England'), +(12892, 'Egypt -- History -- British occupation, 1882-1936'), +(12893, 'Musicians -- Juvenile fiction'), +(12894, 'Flying-machines -- Humor'), +(12895, 'Québec Campaign, Québec, 1759 -- Juvenile fiction'), +(12896, 'World War, 1939-1945 -- Fiction'), +(12897, 'Lexicology'), +(12898, 'France -- History -- 15th century -- Juvenile fiction'), +(12899, 'Peter Pan (Fictitious character) -- Fiction'), +(12900, 'Project Mariner (U.S.)'), +(12901, 'Bibliographical literature -- Bibliography'), +(12902, 'English language -- Obsolete words'), +(12903, 'Hungary -- Description and travel'), +(12904, 'Concord, Battle of, Concord, Mass., 1775'), +(12905, 'Glaciers'), +(12906, 'Eskimos -- Music'), +(12907, 'Madeira Islands'), +(12908, 'Napoleon I, Emperor of the French, 1769-1821 -- Bibliography'), +(12909, 'Translating and interpreting'), +(12910, 'Birds -- Juvenile poetry'), +(12911, 'Portugal -- Social life and customs -- Poetry'), +(12912, 'Women missionaries'), +(12913, 'Paris (France) -- History -- 19th century'), +(12914, 'Agaricaceae -- Europe'), +(12915, 'Surgery -- Germany -- History'), +(12916, 'Cousins -- Drama'), +(12917, 'Niger River'), +(12918, 'Antinoüs, approximately 110-130 -- Poetry'), +(12919, 'Daphnis (Greek mythology) -- Fiction'), +(12920, 'Arteries -- Diseases'), +(12921, 'Drinking cups'), +(12922, 'Pennsylvania Dutch -- Poetry'), +(12923, 'Tennessee, East -- History -- Civil War, 1861-1865'), +(12924, 'Dialogues, French -- Translations into Finnish'), +(12925, 'Gregory I, Pope, approximately 540-604'), +(12926, 'Electricity -- Dictionaries'), +(12927, 'East Asia -- Description and travel'), +(12928, 'Rashi, 1040-1105'), +(12929, 'Winchester (England) -- Pictorial works'), +(12930, 'Great Britain -- History -- Civil War, 1642-1649 -- Poetry'), +(12931, 'Epigrams, English'), +(12932, 'Sloyd'), +(12933, 'Outer space -- Exploration -- Fiction'), +(12934, 'Hymn tunes'), +(12935, 'Cricket -- Poetry'), +(12936, 'Richardson, Merrick Abner, 1841-'), +(12937, 'Epidemics -- Fiction'), +(12938, 'Text processing (Computer science) -- Congresses'), +(12939, 'Arago, Dominique François Jean, 1786-1853'), +(12940, 'Open Court Publishing Company -- Catalogs'), +(12941, 'Nuclear physics -- Vocational guidance'), +(12942, 'Springfield (Ill.) -- In literature'), +(12943, 'Vesuvius (Italy)'), +(12944, 'Theater -- Great Britain -- Fiction'), +(12945, 'United States. Army. Corps, 19th'), +(12946, 'Bank tellers -- Fiction'), +(12947, 'Northup, Solomon, 1808-1863?'), +(12948, 'Birds -- Pictorial works'), +(12949, 'Gingerbread men -- Juvenile fiction'), +(12950, 'Agriculture -- Ontario'), +(12951, 'Sabbath -- Poetry'), +(12952, 'Muslims -- Italy -- Sicily'), +(12953, 'Bible. Revelation XIII, 11-17 -- Prophecies'), +(12954, 'Great Britain -- Colonies -- Administration'), +(12955, 'Music and literature'), +(12956, 'Life insurance'), +(12957, 'Plant ecology'), +(12958, 'Hungary -- Drama'), +(12959, 'Fishes -- North America'), +(12960, 'Bats -- Solomon Islands'), +(12961, 'Beaumont, Francis, 1584-1616'), +(12962, 'Seneca, Lucius Annaeus, approximately 4 B.C.-65 A.D. -- Translations into English'), +(12963, 'Boarding school students -- Juvenile fiction'), +(12964, 'French language -- Dictionaries -- Onondaga'), +(12965, 'Balkan Peninsula -- History -- War of 1912-1913'), +(12966, 'Continental drift'), +(12967, 'Boats and boating -- Humor'), +(12968, 'Public works -- India -- History -- 19th century'), +(12969, 'Romania'), +(12970, 'Seashore -- Juvenile fiction'), +(12971, 'United States -- Social life and customs -- To 1775'), +(12972, 'Foresters -- Fiction'), +(12973, 'Charlotte, of Bourbon, consort of William I, Prince of Orange, 1548?-1582'), +(12974, 'Worcestershire (England) -- Antiquities'), +(12975, 'Pearl fisheries -- Fiction'), +(12976, 'Composers -- Hungary -- Correspondence'), +(12977, 'Psychiatric hospitals -- Great Britain'), +(12978, 'Giorgione, 1477-1511'), +(12979, 'Henry III, King of France, 1551-1589 -- Drama'), +(12980, 'Epic poetry, English'), +(12981, 'Paris (France) -- Description and travel -- Juvenile fiction'), +(12982, 'Naples (Kingdom) -- History -- Spanish rule, 1442-1707'), +(12983, 'Indians of North America -- Wars -- 1750-1815'), +(12984, 'Consumer cooperatives --New York (State)'), +(12985, 'Mink trapping'), +(12986, 'Solitude'), +(12987, 'Cremation'), +(12988, 'Explorers -- America -- Biography'), +(12989, 'Zarzuela -- Philippines'), +(12990, 'Norwegians -- United States'), +(12991, 'Dyes and dyeing -- Wool'), +(12992, 'Bristol (England) -- Pictorial works'), +(12993, 'Science fiction, English -- History and criticism'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(12994, 'Authors, Portuguese -- 19th century -- Biography'), +(12995, 'Slavery -- Scandinavia'), +(12996, 'Angora goat'), +(12997, 'Pilgrim Holiness Church -- Controversial literature'), +(12998, 'Metal-work'), +(12999, 'Newton, Isaac, 1642-1727. Principia'), +(13000, 'Frontier and pioneer life -- Wisconsin -- Juvenile fiction'), +(13001, 'Chinese poetry -- Qin and Han dynasties, 221 B.C.-220 A.D.'), +(13002, 'Opie, Amelia, 1769-1853 -- Correspondence'), +(13003, 'Chesapeake and Ohio Canal (Md. and Washington, D.C.)'), +(13004, 'France -- History -- Charles VI, 1380-1422'), +(13005, 'English essays -- 18th century -- Periodicals'), +(13006, 'Short stories -- Translations into Finnish'), +(13007, 'Dramatic monologues -- History and criticism'), +(13008, 'Connecticut -- Fiction'), +(13009, 'Verhaeren, Emile, 1855-1916'), +(13010, 'Indians of South America -- Argentina'), +(13011, 'Watts, George Frederick, 1817-1904'), +(13012, 'Navigation'), +(13013, 'Weininger, Otto, 1880-1903. Geschlecht und Charakter'), +(13014, 'Famines -- Ireland -- Skibbereen'), +(13015, 'Great Britain. Army -- Sanitary affairs'), +(13016, 'Dollhouses -- Juvenile fiction'), +(13017, 'Church history -- 19th century'), +(13018, 'Fian, John, -1591'), +(13019, 'Missions -- Syria'), +(13020, 'Philosophy, Medical'), +(13021, 'Royalists -- France -- Fiction'), +(13022, 'Hicks, Elias, 1748-1830'), +(13023, 'South America -- History -- Wars of Independence, 1806-1830'), +(13024, 'Cats -- Juvenile literature'), +(13025, 'Chinese -- England -- Fiction'), +(13026, 'University of Oxford -- History'), +(13027, 'People with disabilities -- Juvenile fiction'), +(13028, 'Brontë family'), +(13029, 'Paris (France) -- Social life and customs -- 17th century -- Fiction'), +(13030, 'Lawyers -- Great Britain'), +(13031, 'Bibracte (Extinct city) -- Description and travel'), +(13032, 'Coronado, Francisco Vásquez de, 1510-1554'), +(13033, 'Isle of Man -- History'), +(13034, 'Gods, Roman -- Fiction'), +(13035, 'Istanbul (Turkey) -- History -- Siege, 1453'), +(13036, 'German East Africa -- Juvenile fiction'), +(13037, 'Working class -- England'), +(13038, 'San Francisco (Calif.) -- History -- Poetry'), +(13039, 'Wood, Leonard, 1860-1927'), +(13040, 'Port wine'), +(13041, 'Rienzo, Cola di, -1354 -- Fiction'), +(13042, 'Hungary -- Social life and customs -- Fiction'), +(13043, 'Leiv Eiriksson, -approximately 1020 -- Fiction'), +(13044, 'Greece -- Historiography'), +(13045, 'Spain -- Court and courtiers -- Drama'), +(13046, 'Flower gardening -- England'), +(13047, 'Tzoneca language -- Glossaries, vocabularies, etc.'), +(13048, 'Paleo-Indians'), +(13049, 'Selous, Frederick Courteney, 1851-1917'), +(13050, 'Blood accusation'), +(13051, 'Anthroposophy'), +(13052, 'Westminster Abbey -- Biography'), +(13053, 'Maultasch, Margarete, Gräfin von Tirol, 1318-1369 -- Fiction'), +(13054, 'Shakespeare, William, 1564-1616 -- Outlines, syllabi, etc.'), +(13055, 'Ballads, Scots -- History and criticism'), +(13056, 'Delaney, Lucy A. (Lucy Ann), 1828?-'), +(13057, 'Lima, Jaime de Magalhães, 1859-1936'), +(13058, 'Emperors -- Fiction'), +(13059, 'Advertising -- History'), +(13060, 'Chinese literature -- Qing dynasty, 1644-1912'), +(13061, 'Landscapes -- France -- Juvenile fiction'), +(13062, 'Voice -- Care and hygiene'), +(13063, 'Lace and lace making -- History'), +(13064, 'Hemp -- Culture'), +(13065, 'Utilitarianism -- Great Britain -- History'), +(13066, 'Haskalah -- Soviet Union'), +(13067, 'Tacoma (Wash.) -- Description and travel'), +(13068, 'Jesus Christ -- Parables'), +(13069, 'Cattle -- Diseases'), +(13070, 'Maluku (Indonesia) -- Description and travel'), +(13071, 'Malacca (Malacca) -- Description and travel'), +(13072, 'New York (N.Y.) -- History -- 19th century -- Fiction'), +(13073, 'Jews -- Biography'), +(13074, 'Ether (Space)'), +(13075, 'Saint Lawrence River -- Juvenile fiction'), +(13076, 'Public health -- England -- London'), +(13077, 'Embalming'), +(13078, 'Family recreation'), +(13079, 'Galvani, Luigi, 1737-1798'), +(13080, 'Rose culture'), +(13081, 'New Zealand -- History -- Juvenile fiction'), +(13082, 'Prentiss, E. (Elizabeth), 1818-1878'), +(13083, 'Massachusetts -- History -- New Plymouth, 1620-1691 -- Juvenile fiction'), +(13084, 'Women and literature -- England -- History -- 19th century'), +(13085, 'African Americans -- Pennsylvania'), +(13086, 'Hermetism'), +(13087, 'Optimism -- Fiction'), +(13088, 'Ibrahim Pasa, 1493?-1536'), +(13089, 'Hawaii -- Economic conditions'), +(13090, 'Germany, Southern -- Fiction'), +(13091, 'Neighbors -- Fiction'), +(13092, 'Sainte Ligue (1576-1593)'), +(13093, 'Histology, Pathological'), +(13094, 'Scotland -- History -- James II, 1437-1460 -- Fiction'), +(13095, 'Trollope, Thomas Adolphus, 1810-1892'), +(13096, 'Thompson, George, 1823-'), +(13097, 'Greenland -- Poetry'), +(13098, 'Tazewell, Littleton Waller, 1774-1860'), +(13099, 'Eve (Biblical figure) -- Fiction'), +(13100, 'Plants in literature'), +(13101, 'Incarnation'), +(13102, 'Suburbs -- Great Britain -- Fiction'), +(13103, 'Monmouth, Battle of, Freehold, N.J., 1778 -- Juvenile fiction'), +(13104, 'Danish fiction -- Translations into Esperanto'), +(13105, 'Lombardy (Italy) -- History'), +(13106, 'Geography, Ancient'), +(13107, 'Hake, Thomas Gordon, 1809-1895'), +(13108, 'World War, 1914-1918 -- Aerial operations -- Fiction'), +(13109, 'Railroad travel -- Southwest, New -- Fiction'), +(13110, 'Musical notation'), +(13111, 'Graphology'), +(13112, 'Sex role -- Biblical teaching -- Humor'), +(13113, 'Telegraph -- Employees -- Juvenile fiction'), +(13114, 'Ifugao (Philippine people) -- Religion'), +(13115, 'Domestic animals -- Juvenile literature'), +(13116, 'Swift, Jonathan, 1667-1745. Gulliver\'s travels'), +(13117, 'Tower of London (London, England) -- Fiction'), +(13118, 'Thames River (England) -- Description and travel'), +(13119, 'Superstition -- Juvenile fiction'), +(13120, 'Maine -- History -- Colonial period, ca. 1600-1775'), +(13121, 'Women authors, American -- Biography'), +(13122, 'Fantasy fiction, Italian'), +(13123, 'Carriages and carts'), +(13124, 'Geishas -- Fiction'), +(13125, 'Love -- Humor'), +(13126, 'Mathematical geography'), +(13127, 'Georgia -- History -- Colonial period, ca. 1600-1775'), +(13128, 'Deaf -- Means of communication -- Case studies -- Early works to 1800'), +(13129, 'Utah -- History'), +(13130, 'Witches -- Drama'), +(13131, 'Luther, Katharina von Bora, 1499-1552'), +(13132, 'Judaism -- Relations -- Christianity -- Fiction'), +(13133, 'Legislative power -- United States'), +(13134, 'Europe -- Antiquities'), +(13135, 'Wizards -- Juvenile fiction'), +(13136, 'Montpensier, Anne-Marie-Louise d\'Orléans, duchesse de, 1627-1693'), +(13137, 'Le Bon, Gustave, 1841-1931 -- Travel -- Nepal'), +(13138, 'Islamic Empire -- History'), +(13139, 'Slaves -- Texas -- Social conditions'), +(13140, 'Germany -- Juvenile literature'), +(13141, 'Secret service -- Germany'), +(13142, 'Champlain, Lake -- Juvenile fiction'), +(13143, 'Babbage, Charles, 1791-1871'), +(13144, 'Crimea (Ukraine) -- Description and travel'), +(13145, 'Church of England -- Government'), +(13146, 'Vosges Mountains (France) -- Fiction'), +(13147, 'Monasteries -- Middle East'), +(13148, 'Toronto (Ont.) -- Description and travel'), +(13149, 'Sermons, Portuguese'), +(13150, 'Love poetry, French -- Translations into English'), +(13151, 'Catholic Church -- Clergy -- Religious life'), +(13152, 'Astronomical instruments -- Catalogs'), +(13153, 'Mothers and sons -- Drama'), +(13154, 'Animals, Prosecution and punishment of -- History'), +(13155, 'Literature -- Societies, etc. -- Fiction'), +(13156, 'Hydrodynamics'), +(13157, 'Girls -- Biography'), +(13158, 'Electric wiring, Interior'), +(13159, 'Jesus Christ -- Miracles -- Juvenile literature'), +(13160, 'Great Britain -- History -- 19th century -- Sources'), +(13161, 'Entomology -- Periodicals'), +(13162, 'Sargent, John Singer, 1856-1925'), +(13163, 'United States -- History -- Civil War, 1861-1865 -- Hospitals'), +(13164, 'Government publications'), +(13165, 'India -- Discovery and exploration -- Poetry'), +(13166, 'Love poetry, Greek -- Translations into English'), +(13167, 'Folklore -- Germany'), +(13168, 'Mackinac Island (Mich. : Island) -- Social life and customs -- Fiction'), +(13169, 'Separatists -- England -- Early works to 1800'), +(13170, 'Formula Concordiae -- Catechisms'), +(13171, 'Peru -- History -- War of Independence, 1820-1829 -- Fiction'), +(13172, 'Delaware -- History'), +(13173, 'Plants, Ornamental -- Periodicals'), +(13174, 'Shakers -- Fiction'), +(13175, 'Guard duty'), +(13176, 'Poets, Scottish -- 18th century -- Correspondence'), +(13177, 'Seasonal cooking'), +(13178, 'Housing -- United States -- Statistics'), +(13179, 'Dialect literature, German -- Erzgebirge (Czech Republic and Germany)'), +(13180, 'Cats -- Anecdotes'), +(13181, 'Lenclos, Ninon de, 1620-1705'), +(13182, 'Great Britain -- Colonies -- Africa -- Administration -- Fiction'), +(13183, 'Sedgwick, Catharine Maria, 1789-1867'), +(13184, 'Eschatology -- History of doctrines'), +(13185, 'Prophets -- Great Britain -- Biography'), +(13186, 'Jews -- Poland -- Fiction'), +(13187, 'Florida -- History -- Bibliography'), +(13188, 'Indians -- Folklore'), +(13189, 'Rugs, Oriental'), +(13190, 'Stadler, Ernst, 1883-1914'), +(13191, 'Literary forgeries and mystifications'), +(13192, 'Consumer education'), +(13193, 'Chapple, William Allan, 1864-1936. The fertility of the unfit'), +(13194, 'Brazilian literature -- History and criticism'), +(13195, 'Railroads -- Equipment and supplies'), +(13196, 'Transvaal (South Africa) -- Foreign relations -- Great Britain'), +(13197, 'Short stories -- Translations into English'), +(13198, 'Stephenson, George, 1781-1848'), +(13199, 'Marlborough, John Churchill, Duke of, 1650-1722 -- Juvenile fiction'), +(13200, 'Revelation'), +(13201, 'Churches -- England'), +(13202, 'Women clergy -- Fiction'), +(13203, 'Chelly, Canyon de (Ariz.)'), +(13204, 'Browere, John Henri Isaac, 1792-1834'), +(13205, 'Labor movement -- Fiction'), +(13206, 'Decorations of honor -- Serbia'), +(13207, 'Astronomy -- Juvenile literature -- Early works to 1800'), +(13208, 'French poetry -- 17th century'), +(13209, 'Brontë, Patrick Branwell, 1817-1848'), +(13210, 'Architecture -- Portugal'), +(13211, 'United States -- History -- Civil War, 1861-1865 -- Drama'), +(13212, 'Amiens (France) -- History'), +(13213, 'Motorcycles, Military -- United States'), +(13214, 'Christian literature for children'), +(13215, 'Cage birds -- Juvenile literature'), +(13216, 'Frontier and pioneer life -- United States -- Anecdotes'), +(13217, 'Time'), +(13218, 'Cheese'), +(13219, 'Ghosts -- Poetry'), +(13220, 'Women -- Scandinavia -- Social conditions'), +(13221, 'Churchill, Randolph Henry Spencer, Lord, 1849-1895'), +(13222, 'Architecture, Colonial'), +(13223, 'Connecticut -- History -- Colonial period, ca. 1600-1775'), +(13224, 'Halifax (N.S.) -- History'), +(13225, 'Cooking, Mexican'), +(13226, 'Hamburg chicken'), +(13227, 'African American farmers -- Southern States'), +(13228, 'Churchill, Winston, 1874-1965'), +(13229, 'Indians of North America -- Canada -- Treaties'), +(13230, 'Tai Mountains (China) -- Fiction'), +(13231, 'Bastien-Lepage, Jules, 1848-1884'), +(13232, 'Achilles (Mythological character) -- Juvenile literature'), +(13233, 'Mules -- Juvenile fiction'), +(13234, 'Technical education -- United States'), +(13235, 'Glassware -- Collectors and collecting'), +(13236, 'God (Christianity)'), +(13237, 'Mystics -- Germany -- Biography'), +(13238, 'Otto III, Holy Roman Emperor, 980-1002 -- Fiction'), +(13239, 'Securities industry'), +(13240, 'Footprints, Fossil -- Connecticut River Valley'), +(13241, 'Cross-examination -- United States'), +(13242, 'Decoration and ornament -- Victorian style'), +(13243, 'Portrait painters -- United States'), +(13244, 'Hunting -- Kenya'), +(13245, 'Railway mail service -- United States'), +(13246, 'Older people -- Juvenile fiction'), +(13247, 'Greece -- Juvenile fiction'), +(13248, 'Collotype'), +(13249, 'Heyn, Piet, 1578-1629‏ -- Juvenile fiction'), +(13250, 'Macaulay, Thomas Babington Macaulay, Baron, 1800-1859'), +(13251, 'Death Valley (Calif. and Nev.)'), +(13252, 'Auctions -- Juvenile fiction'), +(13253, 'Human trafficking -- Fiction'), +(13254, 'Siksika Indians -- Folklore'), +(13255, 'Horses -- Great Britain -- History'), +(13256, 'Attila, -453'), +(13257, 'Americans -- Cuba'), +(13258, 'Travel -- Anecdotes, facetiae, satire, etc.'), +(13259, 'Family reunions -- Juvenile fiction'), +(13260, 'Pusiano Lake (Italy) -- Description and travel'), +(13261, 'Condorcet, Jean-Antoine-Nicolas de Caritat, marquis de, 1743-1794'), +(13262, 'Cock Robin (Fictitious character) -- Poetry'), +(13263, 'Newgate (Prison : London, England)'), +(13264, 'Lynmouth (England) -- Guidebooks'), +(13265, 'California, Southern'), +(13266, 'Siouan Indians'), +(13267, 'Library science -- Congresses'), +(13268, 'Campanini, Barberina, 1721-1799 -- Fiction'), +(13269, 'Artists -- Relations with women'), +(13270, 'Jesus Christ -- Juvenile fiction'), +(13271, 'Pottery -- Marks'), +(13272, 'Religious thought -- Middle Ages, 600-1500'), +(13273, 'Namibia -- History -- Herero Revolt, 1904-1907'), +(13274, 'Cortés, Hernán, 1485-1547'), +(13275, 'Southwest, New -- History -- 1848-'), +(13276, 'Nasreddin Hoca (Legendary character) -- Humor'), +(13277, 'Folk songs, English -- Canada'), +(13278, 'Nationalism -- Spain -- País Vasco -- History -- Fiction'), +(13279, 'British -- Africa, East -- Fiction'), +(13280, 'Women social reformers -- Great Britain -- Biography'), +(13281, 'Smollett, T. (Tobias), 1721-1771'), +(13282, 'Russia -- History -- Alexander II, 1855-1881 -- Fiction'), +(13283, 'Oral history'), +(13284, 'Sexual dominance and submission -- Fiction'), +(13285, 'Hunting -- India'), +(13286, 'Bible. Matthew IX, 1-8'), +(13287, 'English language -- Dialects -- England -- Wiltshire'), +(13288, 'Russia -- Civilization'), +(13289, 'Civilization, Modern -- 20th century'), +(13290, 'Psyche (Greek deity) -- Fiction'), +(13291, 'Revolutionaries -- Scotland -- Biography'), +(13292, 'Kansas -- History'), +(13293, 'Steam-boiler explosions'), +(13294, 'Portugal -- Politics and government -- 1910-1926'), +(13295, 'California -- Guidebooks'), +(13296, 'Steam-turbines'), +(13297, 'Rhesus (Legendary character) -- Drama'), +(13298, 'Canadian literature'), +(13299, 'Danilo I Petrovic Njegos, Prince of Montenegro, 1826-1860'), +(13300, 'South Africa -- History -- Rebellion, 1914-1915'), +(13301, 'Firearms'), +(13302, 'Bible. Epistles of John -- Commentaries'), +(13303, 'Sanger, Margaret, 1879-1966'), +(13304, 'Southern States -- History -- 1865-1877 -- Juvenile fiction'), +(13305, 'McGuffey, William Holmes, 1800-1873'), +(13306, 'Peace -- Poetry'), +(13307, 'Moon -- Folklore'), +(13308, 'Young adults -- Social life and customs -- Fiction'), +(13309, 'Korea -- Civilization'), +(13310, 'City and town life -- Poetry'), +(13311, 'Booth, William, 1829-1912. In darkest England, and the way out'), +(13312, 'Reynolds, Frank, 1876-1953'), +(13313, 'Musical instruments'), +(13314, 'Japan -- Foreign relations -- Great Britain'), +(13315, 'Plantations -- Cuba -- History -- 19th century'), +(13316, 'Muslims -- Spain -- History'), +(13317, 'Sunbeam (Yacht)'), +(13318, 'Goldman, Emma, 1869-1940'), +(13319, 'Architecture, Colonial -- Virginia'), +(13320, 'England -- Social life and customs -- 17th century -- Fiction'), +(13321, 'South Africa -- Social life and customs -- Fiction'), +(13322, 'Rejection (Psychology) -- Fiction'), +(13323, 'Norwich Cathedral (Norwich, England)'), +(13324, 'Indians of North America -- Government relations -- 1869-1934'), +(13325, 'Slave narratives -- Kentucky'), +(13326, 'Great Britain -- Economic conditions'), +(13327, 'Mormons -- Juvenile fiction'), +(13328, 'Presence of God'), +(13329, 'Philosophers -- France -- Biography'), +(13330, 'Correggio, 1489?-1534'), +(13331, 'World\'s Columbian Exposition (1893 : Chicago, Ill.) -- Fiction'), +(13332, 'Police -- England -- Fiction'), +(13333, 'Bolivia -- History, Local'), +(13334, 'Piano music -- Analysis, appreciation'), +(13335, 'Mexico -- History -- To 1519 -- Fiction'), +(13336, 'Catholic Church -- Prayers and devotions -- Iloko'), +(13337, 'Animals -- Oregon'), +(13338, 'Phillips Exeter Academy -- Juvenile fiction'), +(13339, 'Mary, Queen of Scots, 1542-1587 -- Death and burial'), +(13340, 'Cooking -- Pennsylvania'), +(13341, 'Saint Petersburg (Russia) -- Fiction'), +(13342, 'Heroines -- Fiction'), +(13343, 'Lithography, American'), +(13344, 'Agriculture -- Economic aspects'), +(13345, 'Devils Tower National Monument (Wyo.)'), +(13346, 'Flowers -- Rocky Mountains'), +(13347, 'Mining law -- Ohio'), +(13348, 'Zululand (South Africa) -- History -- Fiction'), +(13349, 'Animals, Mythical -- Juvenile fiction'), +(13350, 'Nationalism -- India'), +(13351, 'Pharmacy -- England'), +(13352, 'Walpole, Thomas, 1727-1803'), +(13353, 'Aquatic plants'), +(13354, 'David, King of Israel -- Drama'), +(13355, 'Architecture -- Study and teaching'), +(13356, 'Jesus Christ -- Popular works'), +(13357, 'Cree mythology'), +(13358, 'Fisheries -- Juvenile fiction'), +(13359, 'Johnson, Andrew, 1808-1875'), +(13360, 'Nobility -- France -- Fiction'), +(13361, 'Grasshoppers -- Juvenile fiction'), +(13362, 'Theatrical makeup'), +(13363, 'Prairies -- Fiction'), +(13364, 'Midshipmen -- Fiction'), +(13365, 'Burton, Richard Francis, Sir, 1821-1890'), +(13366, 'Bees -- Early works to 1800'), +(13367, 'Smith, John, 1580-1631'), +(13368, 'Cockfighting'), +(13369, 'Swine -- Juvenile fiction'), +(13370, 'Richthofen, Manfred, Freiherr von, 1892-1918'), +(13371, 'Celibacy -- Catholic Church'), +(13372, 'France. Edit de révocation de l\'Edit de Nantes'), +(13373, 'Blues (Music)'), +(13374, 'Hickok, Wild Bill, 1837-1876 -- Fiction'), +(13375, 'Louisbourg (N.S.) -- History -- Siege, 1758'), +(13376, 'Music and literature -- History -- 16th century'), +(13377, 'Sermons, English -- 18th century'), +(13378, 'Deaf children'), +(13379, 'Education -- France'), +(13380, 'Hedgehogs -- Juvenile fiction'), +(13381, 'Library science -- Great Britain -- Handbooks, manuals, etc.'), +(13382, 'Church of England -- History -- 18th century'), +(13383, 'Christianity -- Miscellanea'), +(13384, 'Dialogues, English'), +(13385, 'Great Britain -- Economic conditions -- 18th century'), +(13386, 'Diplomatic and consular service, American'), +(13387, 'Southern States -- History -- 1865-1877 -- Fiction'), +(13388, 'Extortion -- Fiction'), +(13389, 'Shipwrecks -- Senegal'), +(13390, 'Muffs'), +(13391, 'East India Company -- Appropriations and expenditures'), +(13392, 'Loudoun County (Va.) -- History'), +(13393, 'Balloon ascensions'), +(13394, 'Pioneers -- Kentucky -- Biography -- Juvenile literature'), +(13395, 'Finn, Huckleberry (Fictitious character) -- Fiction'), +(13396, 'Cant -- Dictionaries'), +(13397, 'Baroja, Pío, 1872-1956'), +(13398, 'Solar system -- Motion in space'), +(13399, 'Mackinac Island (Mich. : Island) -- History'), +(13400, 'Byzantine Empire -- History -- Justinian I, 527-565'), +(13401, 'African Americans -- History -- 19th century'), +(13402, 'Great Britain. Army. West India regiment, 1st'), +(13403, 'Mammals -- Mexico'), +(13404, 'Books -- Poetry'), +(13405, 'Geometry -- Foundations'), +(13406, 'Libraries'), +(13407, 'Madog ab Owain Gwynedd, 1150-1180?'), +(13408, 'Knowles, Matilda Darroch, 1811-1886'), +(13409, 'History, Modern -- Periodicals'), +(13410, 'Prisons -- England'), +(13411, 'Victoria and Albert Museum'), +(13412, 'Retribution -- Fiction'), +(13413, 'Political corruption -- California -- San Francisco'), +(13414, 'Northumberland (England) -- History'), +(13415, 'Brewing'), +(13416, 'Zizka, Jan, approximately 1360-1424'), +(13417, 'Gastroenterology -- Early works to 1800'), +(13418, 'Italy -- History -- 476-1492 -- Fiction'), +(13419, 'Otters'), +(13420, 'Uruguay -- Description and travel'), +(13421, 'Physical anthropology'), +(13422, 'Theatines -- Missions -- Borneo -- Early works to 1800'), +(13423, 'Spirits'), +(13424, 'Great Britain -- History -- Charles II, 1660-1685 -- Biography'), +(13425, 'Charleston (S.C.) -- History -- Civil War, 1861-1865'), +(13426, 'Prime ministers -- Great Britain -- Biography'), +(13427, 'Greece -- History -- War of Independence, 1821-1829 -- Participation, German'), +(13428, 'Yeats, W. B. (William Butler), 1865-1939 -- Homes and haunts -- Ireland -- Sligo (County)'), +(13429, 'Chand Bibi, sultana, -1600 -- Fiction'), +(13430, 'Magalhães, Fernão de, -1521'), +(13431, 'Cumberland Mountains -- Fiction'), +(13432, 'Saint Francois County (Mo.) -- Biography'), +(13433, 'Russia -- Social life and customs -- 20th century -- Fiction'), +(13434, 'Ukraine -- History -- Fiction'), +(13435, 'Americans -- Ireland -- Juvenile fiction'), +(13436, 'Computer networks'), +(13437, 'Soldiers -- Finland -- Biography'), +(13438, 'United States -- Politics and government -- Handbooks, manuals, etc.'), +(13439, 'Lichfield Cathedral'), +(13440, 'Carson, Kit, 1809-1868 -- Juvenile fiction'), +(13441, 'Maori (New Zealand people) -- Warfare'), +(13442, 'Bible. Old Testament -- Prophecies'), +(13443, 'Books -- History -- 1450-1600'), +(13444, 'Dry farming'), +(13445, 'Tunneling -- History'), +(13446, 'Salon (Exhibition : Paris, France) (1883)'), +(13447, 'Austria -- Social life and customs'), +(13448, 'Circus performers -- Juvenile fiction'), +(13449, 'Ireland -- Politics and government -- 18th century'), +(13450, 'Universities and colleges -- Fiction'), +(13451, 'San Francisco Committee of Vigilance of 1856'), +(13452, 'Mattson, Hans, 1832-1893'), +(13453, 'Thanksgiving Day -- Fiction'), +(13454, 'Hungary -- History -- Joseph II, 1780-1790 -- Fiction'), +(13455, 'Great Britain -- Biography -- Dictionaries'), +(13456, 'Parapsychology -- Investigation -- Great Britain'), +(13457, 'Chess -- Fiction'), +(13458, 'Bible. Apocrypha. Maccabees, 1st'), +(13459, 'Thebes (Egypt : Extinct city)'), +(13460, 'Lewis and Clark Expedition (1804-1806) -- Fiction'), +(13461, 'Samoan Islands -- History'), +(13462, 'Verse satire, German'), +(13463, 'Travel writers -- Great Britain -- Biography'), +(13464, 'Confederate States of America. Army. Georgia Infantry Regiment, 1st (1861-1862). Oglethorpe Infantry Company -- Biography'), +(13465, 'Norfolk (England) -- Fiction'), +(13466, 'Hayden, F. V. (Ferdinand Vandeveer), 1829-1887'), +(13467, 'Bells'), +(13468, 'Geneviève, of Brabant (Legendary character) -- Fiction'), +(13469, 'Touraine (France) -- Description and travel'), +(13470, 'Zimbabwe -- History -- Ndebele Revolt, 1896'), +(13471, 'Vandals'), +(13472, 'Conference proceedings'), +(13473, 'Northwestern States -- Description and travel'), +(13474, 'Beverages -- Southern States'), +(13475, 'Lowell, Percival, 1855-1916. Mars and its canals'), +(13476, 'Atheism -- England'), +(13477, 'Raeto-Romance language -- Early works to 1800'), +(13478, 'Alamo (San Antonio, Tex.) -- Siege, 1836 -- Juvenile fiction'), +(13479, 'Peterborough (England) -- History'), +(13480, 'Jews -- Russia -- History'), +(13481, 'Great Britain. Army. Queen\'s Own Hussars, 7th'), +(13482, 'Winter -- Juvenile fiction'), +(13483, 'Caernarvonshire (Wales) -- Description and travel'), +(13484, 'Erotic stories, Chinese'), +(13485, 'Liverpool (England) -- Pictorial works'), +(13486, 'Uppingham School'), +(13487, 'Ulster (Northern Ireland and Ireland) -- Fiction'), +(13488, 'Cooking (Eggs)'), +(13489, 'Peterborough Cathedral'), +(13490, 'Poetics -- Early works to 1800'), +(13491, 'Prejudices -- Juvenile fiction'), +(13492, 'Railroads -- Design and construction'), +(13493, 'Sugarcane'), +(13494, 'Juvenile delinquents'), +(13495, 'Arts -- Periodicals'), +(13496, 'Industries -- Ohio -- Cleveland'), +(13497, 'Jungles -- Fiction'), +(13498, 'Alighieri, Dante, 1265-1321 -- Fiction'), +(13499, 'Reconstruction (U.S. history, 1865-1877) -- Mississippi'), +(13500, 'Equations, Theory of'), +(13501, 'Howe, William Howe, Viscount, 1729-1814'), +(13502, 'Conversion'), +(13503, 'Celestial mechanics -- Early works to 1800'), +(13504, 'Great Britain -- History -- Richard III, 1483-1485 -- Fiction'), +(13505, 'Building -- Periodicals'), +(13506, 'Bible. Kings, 1st'), +(13507, 'Radioisotopes in agriculture'), +(13508, 'Shipp, John, 1784-1834'), +(13509, 'Passenger pigeon'), +(13510, 'Welsh poetry -- 19th century'), +(13511, 'Judges -- United States -- Biography'), +(13512, 'United States. Army -- Handbooks, manuals, etc.'), +(13513, 'Science fiction, French'), +(13514, 'Thames River (England) -- Pictorial works'), +(13515, 'Lothingland (England)'), +(13516, 'Trial practice -- United States'), +(13517, 'Fables, Greek -- Adaptations'), +(13518, 'Great Fire, Chicago, Ill., 1871 -- Poetry'), +(13519, 'Zululand (South Africa)'), +(13520, 'Railroads -- Massachusetts'), +(13521, 'Li, Shishi -- Fiction'), +(13522, 'Chatto & Windus (Firm) -- Catalogs'), +(13523, 'Folk songs, Lithuanian'), +(13524, 'World War, 1914-1918 -- New Zealand'), +(13525, 'Molière, 1622-1673 -- Dictionaries'), +(13526, 'China -- Literary collections'), +(13527, 'Rockets (Ordnance)'), +(13528, 'Pretenders to the throne -- France -- 19th century'), +(13529, 'Los Angeles (Calif.) -- Fiction'), +(13530, 'Washington, George, 1732-1799 -- Anniversaries, etc.'), +(13531, 'Rural poor -- Fiction'), +(13532, 'Birds -- United States'), +(13533, 'Birds -- Kansas'), +(13534, 'Materia medica -- India'), +(13535, 'Great Exhibition (1851 : London, England) -- Juvenile literature'), +(13536, 'Arbuthnot, John, 1667-1735 -- Library -- Catalogs'), +(13537, 'Bath (England) -- Fiction'), +(13538, 'Indian drama'), +(13539, 'Teaching, Freedom of'), +(13540, 'Ravens -- Poetry'), +(13541, 'Botany -- Europe -- History'), +(13542, 'Proverbs, Scottish'), +(13543, 'Lifesaving -- Great Britain'), +(13544, 'Prairies -- Juvenile fiction'), +(13545, 'Spectrum analysis'), +(13546, 'French literature -- Translations into German'), +(13547, 'Folklore -- Korea'), +(13548, 'Wales -- Poetry'), +(13549, 'Illustrators -- United States -- Biography'), +(13550, 'Wayfaring life -- Germany'), +(13551, 'Australia -- Social life and customs'), +(13552, 'Catalan fiction'), +(13553, 'Ohio -- History'), +(13554, 'New York Giants (Baseball team) -- Juvenile fiction'), +(13555, 'Catalan literature'), +(13556, 'Geography -- History'), +(13557, 'Women -- Louisiana -- Fiction'), +(13558, 'Boardinghouses -- Juvenile fiction'), +(13559, 'Pluto (Dwarf planet) -- Fiction'), +(13560, 'John, of Austria, 1547-1578 -- Fiction'), +(13561, 'Pharmacy -- History -- United States'), +(13562, 'Mexican War, 1846-1848 -- Regimental histories -- United States -- Engineers'), +(13563, 'Maitland, Frederic William, 1850-1906'), +(13564, 'Disciples of Christ -- Hymns'), +(13565, 'East India Company'), +(13566, 'Forwood, William Bower, Sir, 1840-1928'), +(13567, 'Scotland -- History -- War of Independence, 1285-1371 -- Fiction'), +(13568, 'Buddhism -- Poetry'), +(13569, 'Italy -- History -- 13th century -- Fiction'), +(13570, 'Social contract'), +(13571, 'Short stories, Icelandic -- Translations into English'), +(13572, 'Automobile travel -- France -- Guidebooks'), +(13573, 'Fort Dearborn Massacre, Chicago, Ill., 1812 -- Fiction'), +(13574, 'Women and literature -- Great Britain -- History -- 19th century'), +(13575, 'Natural history -- Alaska'), +(13576, 'Roosevelt, Theodore, 1858-1919 -- Juvenile literature'), +(13577, 'Omaha Indians'), +(13578, 'English poetry -- Collections'), +(13579, 'Philanthropists'), +(13580, 'Shirley, Dame, 1819-1906 -- Correspondence'), +(13581, 'Fishery products -- Preservation'), +(13582, 'Postal service -- India'), +(13583, 'Mohave Indians -- Art'), +(13584, 'Medicine, Military'), +(13585, 'Finland -- History -- Civil War, 1918'), +(13586, 'Crows -- Juvenile fiction'), +(13587, 'Puerto Rico -- Juvenile fiction'), +(13588, 'Chattanooga Railroad Expedition, 1862'), +(13589, 'Short stories, Austrian'), +(13590, 'Danites (Mormon Church) -- Fiction'), +(13591, 'Art -- Italy -- Barga'), +(13592, 'Censorship -- Fiction'), +(13593, 'British -- Norway -- Fiction'), +(13594, 'United States. Constitution'), +(13595, 'Women -- Turkey'), +(13596, 'Punishment -- United States -- History -- 18th century'), +(13597, 'Altenahr (Germany) -- Description and travel'), +(13598, 'Fate and fatalism -- Fiction'), +(13599, 'Mayors -- Maryland -- Baltimore -- Biography'), +(13600, 'Henrietta Maria, Queen, consort of Charles I, King of England, 1609-1669'), +(13601, 'Venezuela -- History -- To 1556'), +(13602, 'Great Britain -- History -- Restoration, 1660-1688'), +(13603, 'David, King of Israel'), +(13604, 'Finland'), +(13605, 'Romanies -- Spain'), +(13606, 'Evolution (Biology) -- Wit and humor'), +(13607, 'Wilson, Woodrow, 1856-1924'), +(13608, 'Ball\'s Bluff, Battle of, Va., 1861'), +(13609, 'Linotype'), +(13610, 'Dilke, Charles Wentworth, Sir, 1843-1911'), +(13611, 'Computer crimes -- United States'), +(13612, 'Space and time'), +(13613, 'Gentry -- England -- Fiction'), +(13614, 'Leiden (Netherlands) -- History -- Siege, 1573-1574 -- Fiction'), +(13615, 'London (England) -- Pictorial works -- Catalogs'), +(13616, 'English language -- Idioms'), +(13617, 'Artists -- Biography'), +(13618, 'Concrete construction'), +(13619, 'Oral tradition -- India -- Punjab'), +(13620, 'Crimean War, 1853-1856 -- Juvenile fiction'), +(13621, 'Portugal -- History -- Alfonso V, 1438-1481'), +(13622, 'País Vasco (Spain) -- Fiction'), +(13623, 'Counterfeits and counterfeiting'), +(13624, 'Oudh (India) -- Description and travel'), +(13625, 'Latin America -- Foreign relations -- United States'), +(13626, 'Salem (Mass.) -- History -- Colonial period, ca. 1600-1775'), +(13627, 'Iraq -- Description and travel'), +(13628, 'Women employees -- New York (State) -- New York -- Fiction'), +(13629, 'Strassburger Münster'), +(13630, 'Afrikaans literature -- History and criticism'), +(13631, 'Weapons -- Europe'), +(13632, 'Flowering trees'), +(13633, 'Harvard College Observatory'), +(13634, 'Crichton, James, 1560-1582'), +(13635, 'Lime'), +(13636, 'Poisonous animals -- Southwest, New'), +(13637, 'India'), +(13638, 'Alaska -- Emigration and immigration'), +(13639, 'Social sciences -- Miscellanea'), +(13640, 'New Hampshire -- History -- Colonial period, ca. 1600-1775'), +(13641, 'Topelius, Zacharias, 1818-1898'), +(13642, 'Booksellers and bookselling -- United States'), +(13643, 'China -- History -- Taiping Rebellion, 1850-1864 -- Personal narratives, British'), +(13644, 'Fox hunting -- Poetry'), +(13645, 'Festivals -- France -- Provence'), +(13646, 'Theater -- England -- London -- History'), +(13647, 'Burke County (N.C.) -- History'), +(13648, 'Phips, William, Sir, 1651-1695 -- Fiction'), +(13649, 'Inquisition -- Spain -- Majorca'), +(13650, 'Great Britain. Army. Infantry Division, 29th -- History'), +(13651, 'Afrikaners -- History'), +(13652, 'Snakes -- Latin America'), +(13653, 'Art, Ancient'), +(13654, 'Ohio -- Social life and customs'), +(13655, 'Delaware language -- Texts'), +(13656, 'Great Britain. Army -- Military life -- Poetry'), +(13657, 'Arabic literature -- History and criticism'), +(13658, 'Girls -- Diaries'), +(13659, 'Popular music'), +(13660, 'World War, 1914-1918 -- Secret service -- Great Britain'), +(13661, 'Ireland -- Rural conditions'), +(13662, 'Gardens, English'), +(13663, 'Missions -- China -- Huo-hsien (Shansi Province)'), +(13664, 'Women -- France -- Fiction'), +(13665, 'Catholic Church -- Italy -- History'), +(13666, 'Weddings -- Drama'), +(13667, 'Poland -- Social life and customs -- Fiction'), +(13668, 'Short stories, Irish'), +(13669, 'Birds -- New York Metropolitan Area'), +(13670, 'Old Norse literature -- Translations into English'), +(13671, 'Europe, Southern -- Description and travel'), +(13672, 'Chagas, Manuel Pinheiro, 1842-1895. Desenvolvimento da litteratura portugueza'), +(13673, 'London (England) -- Guidebooks'), +(13674, 'Chester, Dorothy (Fictitious character) -- Juvenile fiction'), +(13675, 'Mountain life -- Alps -- Juvenile fiction'), +(13676, 'Columbia River -- Juvenile fiction'), +(13677, 'Golf -- Poetry'), +(13678, 'Monasteries -- England'), +(13679, 'Depressions'), +(13680, 'Rationalists -- Biography'), +(13681, 'Constipation'), +(13682, 'Jesuits -- Paraguay'), +(13683, 'Aurès Mountains (Algeria)'), +(13684, 'Vision -- Early works to 1800'), +(13685, 'Rogers, Robert, 1731-1795 -- Juvenile fiction'), +(13686, 'Great Britain -- Colonies -- America -- Early works to 1800'), +(13687, 'Wisconsin -- Social life and customs'), +(13688, 'Boccaccio, Giovanni, 1313-1375. Decamerone'), +(13689, 'Villages'), +(13690, 'Caillaux, Joseph, 1863-1944'), +(13691, 'Crime -- Drama'), +(13692, 'Great Britain. Army. Royal Fusiliers (City of London Regiment)'), +(13693, 'Canadian essays'), +(13694, 'Nacogdoches (Tex.) -- History'), +(13695, 'Germany -- Social life and customs -- 20th century -- Fiction'), +(13696, 'Crystallography'), +(13697, 'French language -- Dialects -- France -- Bray (Region)'), +(13698, 'United States -- History -- French and Indian War, 1754-1763'), +(13699, 'United States. Army. Ohio Cavalry Regiment, 7th (1862-1865)'), +(13700, 'Art -- Portugal'), +(13701, 'Ensor, James, 1860-1949'), +(13702, 'Engelbrekt Engelbrektsson, -1436 -- Fiction'), +(13703, 'Airedale terrier'), +(13704, 'Venice (Italy) -- Kings and rulers'), +(13705, 'Leino, Eino, 1878-1926'), +(13706, 'Tunisia -- Church history -- Fiction'), +(13707, 'Legends -- British Columbia -- Vancouver Island'), +(13708, 'Newcastle upon Tyne (England) -- Pictorial works'), +(13709, 'Dean, John, 1679-1761'), +(13710, 'Windsor (Berkshire, England) -- Drama'), +(13711, 'France -- History -- Revolution, 1789-1799 -- Refugees -- Fiction'), +(13712, 'Proverbs, Spanish'), +(13713, 'Taiwan -- Fiction'), +(13714, 'Plants -- Variation'), +(13715, 'Folk songs, French -- Canada'), +(13716, 'United States -- Social life and customs -- Poetry'), +(13717, 'Voltaire, 1694-1778'), +(13718, 'Ashanti war, 1873-1874 -- Juvenile fiction'), +(13719, 'Architecture -- Spain'), +(13720, 'Circus animals -- Juvenile fiction'), +(13721, 'Saint-Pierre, Bernardin de, 1737-1814'), +(13722, 'Automobiles -- Ignition -- Maintenance and repair'), +(13723, 'Poor families -- Fiction'), +(13724, 'Peasants -- Russia -- Fiction'), +(13725, 'Dance -- History'), +(13726, 'Blue Ridge Mountains -- Fiction'), +(13727, 'Cotton'), +(13728, 'Suez Canal (Egypt)'), +(13729, 'Vermont State Prison'), +(13730, 'English language -- Dialects -- England -- Lancashire -- Texts'), +(13731, 'Industries -- France -- Folklore'), +(13732, 'International organization'), +(13733, 'Maya language'), +(13734, 'Bills, Legislative -- United States'), +(13735, 'Nome, Cape (Alaska : Cape) -- History'), +(13736, 'Faroe Islands -- Description and travel'), +(13737, 'Children -- Folklore'), +(13738, 'Cid, approximately 1043-1099 -- Poetry'), +(13739, 'Shipwrecks -- North Atlantic Ocean -- Fiction'), +(13740, 'Java (Indonesia) -- Description and travel -- Juvenile literature'), +(13741, 'Beowulf -- Adaptations'), +(13742, 'Tuberculosis'), +(13743, 'Pennsylvania -- History -- Fiction'), +(13744, 'South Carolina -- History -- Revolution, 1775-1783 -- Fiction'), +(13745, 'Ventilation'), +(13746, 'Oyster fisheries -- Juvenile fiction'), +(13747, 'South African War, 1899-1902 -- Regimental histories -- Great Britain'), +(13748, 'Sicily (Italy) -- History -- 800-1016'), +(13749, 'Cigarette industry -- Fiction'), +(13750, 'Ballads, French'), +(13751, 'Literary forgeries and mystifications -- History -- 18th century'), +(13752, 'Jensen, Wilhelm, 1837-1911. Gradiva'), +(13753, 'Housing -- United States'), +(13754, 'Cellists'), +(13755, 'British Columbia -- Juvenile fiction'), +(13756, 'Johnson, Samuel, 1709-1784 -- Poetry'), +(13757, 'Goethe, Johann Wolfgang von, 1749-1832 -- Philosophy'), +(13758, 'Folklore -- Arizona'), +(13759, 'York (England) -- Pictorial works'), +(13760, 'Twain, Mark, 1835-1910 -- Travel -- West (U.S.)'), +(13761, 'Mason bees'), +(13762, 'Takla Haymanot, Saint'), +(13763, 'Chelsea (London, England) -- History'), +(13764, 'Chemistry, Analytic -- Qualitative'), +(13765, 'Divine office'), +(13766, 'Geul River Valley (Belgium and Netherlands) -- Description and travel'), +(13767, 'Folklore -- Italy'), +(13768, 'Detectives -- West (U.S.) -- Fiction'), +(13769, 'Bible. Song of Solomon -- Commentaries'), +(13770, 'Photography -- Early works to 1850'), +(13771, 'Pennsylvania -- Description and travel'), +(13772, 'Lunt, Dolly Sumner, 1817-1891'), +(13773, 'Draft'), +(13774, 'Rome -- History -- Tiberius, 14-37'), +(13775, 'Anatomy'), +(13776, 'Great Britain -- History -- Anne, 1702-1714'), +(13777, 'Poverty -- Fiction'), +(13778, 'Stuart, John McDouall, 1815-1866'), +(13779, 'Women -- Great Britain -- Drama'), +(13780, 'Allen, Ethan, 1738-1789'), +(13781, 'Sculptors -- United States'), +(13782, 'Children -- Conduct of life -- Fiction'), +(13783, 'Phosphorescence'), +(13784, 'Children -- Japan -- Juvenile literature'), +(13785, 'Jews -- Drama'), +(13786, 'Bible. John -- Criticism, interpretation, etc.'), +(13787, 'Turgenev, Ivan Sergeevich, 1818-1883 -- Translations into English'), +(13788, 'Plants -- Norfolk Island'), +(13789, 'Immigrants -- New York (State) -- New York -- Fiction'), +(13790, 'Shaving'), +(13791, 'Spermatogenesis'), +(13792, 'Catholic Church -- Controversial literature -- Early works to 1800'), +(13793, 'Bibliography of bibliographies -- History'), +(13794, 'Carroll, Lewis, 1832-1898 -- Parodies, imitations, etc.'), +(13795, 'Stubbs, Laura--Travel -- Samoan Islands'), +(13796, 'Neufeld, Charles, 1856-1918'), +(13797, 'Philosophy, Chinese -- To 221 B.C.'), +(13798, 'Water -- Juvenile fiction'), +(13799, 'Sequoia National Park (Calif.)'), +(13800, 'Postal service -- New York (State) -- New York'), +(13801, 'Agincourt, Battle of, Agincourt, France, 1415 -- Fiction'), +(13802, 'Church of England. Book of common prayer'), +(13803, 'Imprisonment -- Fiction'), +(13804, 'Pilniak, Boris, 1894-1937 -- Translations into English'), +(13805, 'Long Island, Battle of, New York, N.Y., 1776 -- Juvenile fiction'), +(13806, 'Toronto Region (Ont.) -- History'), +(13807, 'Fur trade -- West (U.S.)'), +(13808, 'China -- History -- Three kingdoms, 220-265 -- Sources'), +(13809, 'Catacombs -- Italy -- Rome'), +(13810, 'Mentally ill women -- Fiction'), +(13811, 'Nottingham Galley (Merchant ship)'), +(13812, 'Secularism'), +(13813, 'Missions -- Iran'), +(13814, 'Married people -- England -- Fiction'), +(13815, 'Crusades -- First, 1096-1099'), +(13816, 'United States -- Politics and government -- Periodicals'), +(13817, 'Death (Biology)'), +(13818, 'Isle of Wight (England) -- Pictorial works'), +(13819, 'Ingalls, E. S. (Eleazer Stillman), 1820-1879'), +(13820, 'Goethe, Johann Wolfgang von, 1749-1832 -- Homes and haunts'), +(13821, 'Rome -- History -- Republic, 510-30 B.C.'), +(13822, 'Tipu Sultan, Fath \'Ali, Nawab of Mysore, 1753-1799 -- Fiction'), +(13823, 'Shakespeare, William, 1564-1616 -- Stage history -- To 1625'), +(13824, 'Charity -- Sermons'), +(13825, 'Keeler, Ralph, 1840-1873'), +(13826, 'Mentally ill offenders'), +(13827, 'Apache Indians -- Rites and ceremonies'), +(13828, 'Arts'), +(13829, 'Copernicus, Nicolaus, 1473-1543'), +(13830, 'Portuguese literature -- Periodicals'), +(13831, 'Artists -- Germany -- Biography'), +(13832, 'Bacon, Francis, 1561-1626'), +(13833, 'Sugar'), +(13834, 'Tower Menagerie (London, England)'), +(13835, 'Americans -- Europe -- Juvenile fiction'), +(13836, 'Developmental biology'), +(13837, 'Virginia -- Juvenile fiction'), +(13838, 'Bhutan -- Description and travel'), +(13839, 'Pyrenees -- Description and travel'), +(13840, 'Croquet'), +(13841, 'Great Britain -- History -- 1800-1837 -- Sources'), +(13842, 'Selborne (England) -- Antiquities -- Early works to 1800'), +(13843, 'Austen, Jane, 1775-1817 -- Correspondence'), +(13844, 'Great Britain. Royal Marines -- History'), +(13845, 'Hume, David, 1711-1776'), +(13846, 'Picture-writing, Indian'), +(13847, 'Geology -- California, Southern'), +(13848, 'Mangue language'), +(13849, 'Bahais'), +(13850, 'Beer -- Germany'), +(13851, 'Shadow-pictures'), +(13852, 'Das, Chitta Ranjan, 1870-1925'), +(13853, 'Reconstruction (1914-1939)'), +(13854, 'London (England) -- Social life and customs -- Illustrations'), +(13855, 'Glory of God -- Juvenile fiction'), +(13856, 'Wilde, Oscar, 1854-1900'), +(13857, 'Acrobats -- Fiction'), +(13858, 'Autopsy'), +(13859, 'Geology -- Utah -- Zion National Park'), +(13860, 'Religious fanaticism -- Fiction'), +(13861, 'Greek literature -- History and criticism'), +(13862, 'Washington Square (New York, N.Y.) -- Fiction'), +(13863, 'United States -- History -- Revolution, 1775-1783 -- Drama'), +(13864, 'Game and game-birds -- England -- Cornwall (County)'), +(13865, 'Constable, John, 1776-1837'), +(13866, 'Italy -- Antiquities'), +(13867, 'Spherical trigonometry'), +(13868, 'Prostitution -- Fiction'), +(13869, 'Shlissel\'burgskaiatiur\'ma'), +(13870, 'Lawyers -- Great Britain -- Biography'), +(13871, 'Mexican War, 1846-1848 -- Personal narratives'), +(13872, 'Integral equations'), +(13873, 'Fibonacci numbers'), +(13874, 'Infants -- Juvenile fiction'), +(13875, 'Raphael, 1483-1520'), +(13876, 'Cushing, Alonzo H., 1841-1863'), +(13877, 'Locksmiths -- Fiction'), +(13878, 'Gymnastics'), +(13879, 'Dragons in literature -- Bibliography'), +(13880, 'Europe -- Description and travel -- Early works to 1800'), +(13881, 'Bible. Jonah -- Commentaries'), +(13882, 'Canadian Rockies (B.C. and Alta.) -- Juvenile fiction'), +(13883, 'Chambers, John, 1797-1875'), +(13884, 'Voyages around the world -- History -- 19th century'), +(13885, 'Law -- Great Britain -- Humor'), +(13886, 'Lexington (Ky.) -- History'), +(13887, 'Incunabula -- Bibliography'), +(13888, 'Durham Miners\' Association -- History'), +(13889, 'Japanese diaries -- Women authors -- Translations into English'), +(13890, 'Homosexuality'), +(13891, 'Balzac, Honoré de, 1799-1850 -- Fiction'), +(13892, 'Jardine, Alexander -- Travel -- Australia -- Queensland'), +(13893, 'Notaries -- History'), +(13894, 'Amazon River Valley'), +(13895, 'Jews -- Germany'), +(13896, 'Parks -- Germany -- Muskau'), +(13897, 'Europeans -- United States -- Fiction'), +(13898, 'Home economics -- England'), +(13899, 'Indians of North America -- Wars -- 1750-1815 -- Fiction'), +(13900, 'Self-interest -- Juvenile fiction'), +(13901, 'Vienna (Austria) -- History -- Siege, 1683'), +(13902, 'New York post'), +(13903, 'Yukon -- Description and travel'), +(13904, 'Country homes'), +(13905, 'Halifax Explosion, Halifax, N.S., 1917'), +(13906, 'Yorkshire (England) -- Social life and customs'), +(13907, 'Newnham College'), +(13908, 'Pan (Greek deity) -- Fiction'), +(13909, 'Samplers'), +(13910, 'Musicians -- Drama'), +(13911, 'Women -- Employment -- Great Britain'), +(13912, 'Animal behavior -- Juvenile fiction'), +(13913, 'Nagai, Kafu, 1879-1959 -- Travel -- United States'), +(13914, 'Chaucer, Geoffrey, -1400'), +(13915, 'Hungarian literature -- 19th century -- History and criticism'), +(13916, 'Convents -- Juvenile fiction'), +(13917, 'Northwest, Pacific -- Juvenile fiction'), +(13918, 'Bird watching -- North Dakota'), +(13919, 'Scots -- United States -- Fiction'), +(13920, 'Women -- Political activity'), +(13921, 'India -- Civilization -- Dictionaries'), +(13922, 'Spirituality'), +(13923, 'Homiletical illustrations'), +(13924, 'Brianza (Italy) -- Description and travel'), +(13925, 'Little Bighorn, Battle of the, Mont., 1876'), +(13926, 'Whitman, Walt, 1819-1892 -- Homes and haunts'), +(13927, 'Cerberus (Greek mythology)'), +(13928, 'Messiah -- Prophecies'), +(13929, 'Hairdressing -- History'), +(13930, 'Solomon Islands -- Fiction'), +(13931, 'Vegetarianism -- Religious aspects'), +(13932, 'Spanish essays'), +(13933, 'Holidays -- United States'), +(13934, 'United States. Weather Bureau -- Juvenile literature'), +(13935, 'Donner Party'), +(13936, 'Washington, George, 1732-1799 -- Fiction'), +(13937, 'Cornish language -- History'), +(13938, 'Bible. Apocrypha. Judith'), +(13939, 'Congregational churches -- England -- London'), +(13940, 'Factories -- Drama'), +(13941, 'Precious stones -- United States'), +(13942, 'Phase rule and equilibrium'), +(13943, 'Transportation'), +(13944, 'Clergy -- Anecdotes'), +(13945, 'Canada -- History -- 1914-1945 -- Fiction'), +(13946, 'Hjort, Daniel Theodori, -1615 -- Drama'), +(13947, 'Short stories, Greek'), +(13948, 'Bowling alleys -- Catalogs'), +(13949, 'School management and organization -- Norway'), +(13950, 'Unitarian churches -- Doctrinal and controversial works'), +(13951, 'Mafikeng (South Africa) -- History -- Siege, 1899-1900 -- Personal narratives, British'), +(13952, 'Trials (Treason) -- Fiction'), +(13953, 'Envy -- Fiction'), +(13954, 'Borden, Andrew Jackson, 1822-1892'), +(13955, 'Soldiers -- Mental health -- Drama'), +(13956, 'Great Smoky Mountains National Park (N.C. and Tenn.)'), +(13957, 'Scipio, Africanus, approximately 236 B.C.-183 B.C. -- In literature'), +(13958, 'Philippines -- History -- Philippine American War, 1899-1902 -- Juvenile fiction'), +(13959, 'Australia -- History -- 19th century -- Fiction'), +(13960, 'Legislators -- United States -- Biography'), +(13961, 'English language -- Middle English, 1100-1500 -- Glossaries, vocabularies, etc.'), +(13962, 'Zion National Park (Utah)'), +(13963, 'Gifts -- Fiction'), +(13964, 'Bartolomeo, fra, 1472-1517'), +(13965, 'Shelley, Percy Bysshe, 1792-1822 -- Homes and haunts -- England -- Oxford'), +(13966, 'Oxford (England) -- Pictorial works'), +(13967, 'London (England) -- Poetry'), +(13968, 'Lincoln Cathedral'), +(13969, 'Painters -- France -- Fiction'), +(13970, 'Clocks and watches -- Repairing'), +(13971, 'Socialism -- Great Britain -- History -- 19th century'), +(13972, 'Karelia (Russia) -- Description and travel'), +(13973, 'Younger, Cole, 1844-1916'), +(13974, 'Children\'s poetry, French'), +(13975, 'Slums -- Fiction'), +(13976, 'Leipzig, Battle of, Leipzig, Germany, 1813'), +(13977, 'Chamois'), +(13978, 'Architectural inscriptions -- Portugal'), +(13979, 'Frontier and pioneer life -- Kansas'), +(13980, 'Greek drama (Comedy) -- Translations into English'), +(13981, 'Americans -- Oceania -- Juvenile fiction'), +(13982, 'Chemistry, Physical and theoretical'), +(13983, 'Libraries -- New Zealand -- Periodicals'), +(13984, 'Didactic poetry, English'), +(13985, 'Oils and fats, Edible'), +(13986, 'National characteristics, Prussian -- Fiction'), +(13987, 'Arctic regions -- Discovery and exploration -- British'), +(13988, 'Priesthood -- Catholic Church'), +(13989, 'Pottery -- History'), +(13990, 'National characteristics, Scottish'), +(13991, 'Scientific recreations -- Juvenile literature'), +(13992, 'Java (Indonesia) -- History'), +(13993, 'Seattle (Wash.) -- Biography -- Portraits'), +(13994, 'Gratitude -- Juvenile fiction'), +(13995, 'Sudan -- History'), +(13996, 'Bats -- Mexico'), +(13997, 'Margarine'), +(13998, 'Central America -- History'), +(13999, 'Hood, Thomas, 1799-1845'), +(14000, 'Mountaineering -- Wales'), +(14001, 'France -- Court and courtiers -- History'), +(14002, 'Naturalism in literature'), +(14003, 'Eumeces pluvialis'), +(14004, 'Atlantic Intracoastal Waterway -- Juvenile fiction'), +(14005, 'Great Britain -- History -- To 1066'), +(14006, 'De Quincey, Thomas, 1785-1859'), +(14007, 'Bookbinding -- Conservation and restoration'), +(14008, 'Reformation -- Fiction'), +(14009, 'Authority -- Religious aspects'), +(14010, 'Tutors and tutoring -- Fiction'), +(14011, 'Du Guesclin, Bertrand, comte de Longueville, approximately 1320-1380 -- Fiction'), +(14012, 'Salona (McLean, Va.)'), +(14013, 'English language -- Punctuation'), +(14014, 'Days'), +(14015, 'Puritans -- England -- Northamptonshire'), +(14016, 'America -- Biography'), +(14017, 'Philippines -- Description and travel -- Early works to 1800'), +(14018, 'Mascarene Islands -- Description and travel'), +(14019, 'Bible -- Antiquities'), +(14020, 'Determinants'), +(14021, 'Penis -- Abnormalities'), +(14022, 'Pork'), +(14023, 'Food supply -- Fiction'), +(14024, 'Netherlands -- History -- To 1384 -- Juvenile fiction'), +(14025, 'Mythology, Egyptian'), +(14026, 'Fletcher, John, 1579-1625. Two noble kinsmen'), +(14027, 'Mathematicians -- Great Britain -- Biography'), +(14028, 'Balkan Peninsula -- Politics and government'), +(14029, 'Book industries and trade'), +(14030, 'Imprisonment -- Poetry'), +(14031, 'Children -- History'), +(14032, 'Woodstock (Conn. : Town) -- History'), +(14033, 'Voyager Project'), +(14034, 'Public works -- Finance'), +(14035, 'Amish -- Fiction'), +(14036, 'Copper mines and mining -- Michigan -- Upper Peninsula -- History'), +(14037, 'Missions -- Korea'), +(14038, 'Women and religion'), +(14039, 'Helgoland (Germany) -- Juvenile fiction'), +(14040, 'Marriage -- Juvenile fiction'), +(14041, 'Crusades -- First, 1096-1099 -- Fiction'), +(14042, 'Sainte-Beuve, Charles Augustin, 1804-1869'), +(14043, 'Du Maurier, George, 1834-1896. Trilby'), +(14044, 'Kemble, Fanny, 1809-1893'), +(14045, 'International Peace Conference (1st : 1899 : Hague, Netherlands)'), +(14046, 'Great Lakes Region (North America) -- Juvenile fiction'), +(14047, 'Haydn, Joseph, 1732-1809'), +(14048, 'Comets -- Fiction'), +(14049, 'Church records and registers -- England'), +(14050, 'Faust, -approximately 1540 -- Fiction'), +(14051, 'Medicine, Military -- History'), +(14052, 'Indians of North America -- Medicine'), +(14053, 'Saint Augustine (Fla.) -- Guidebooks'), +(14054, 'Bible. Hosea'), +(14055, 'Forest birds -- North America'), +(14056, 'Children -- Japan'), +(14057, 'French poetry -- 16th century'), +(14058, 'Zoology -- Pictorial works'), +(14059, 'Telegraph, Wireless'), +(14060, 'England -- Social life and customs -- Illustrations'), +(14061, 'Drawing, French'), +(14062, 'Queens -- Drama'), +(14063, 'Phaedra (Greek mythology) -- Drama'), +(14064, 'Georgia -- Description and travel'), +(14065, 'Katsushika, Hokusai, 1760-1849'), +(14066, 'Boston (Mass.) -- Guidebooks'), +(14067, 'Paint mixing'), +(14068, 'Switzerland -- History'), +(14069, 'Julián, Governor of Ceuta, active 711 -- Drama'), +(14070, 'Baby Doe, -1935'), +(14071, 'Hrotsvitha, approximately 935-approximately 975 -- Translations into English'), +(14072, 'Middlesex (England) -- Description and travel'), +(14073, 'Peace-Athabasca Delta (Alta.) -- Fiction'), +(14074, 'Engraving -- History'), +(14075, 'Spanish drama -- Translations into English'), +(14076, 'Mountain goat'), +(14077, 'Lever, Charles James, 1806-1872 -- Correspondence'), +(14078, 'Yellowstone National Park -- Juvenile fiction'), +(14079, 'Portugal -- Politics and government'), +(14080, 'Pharmacy -- Virginia -- Williamsburg'), +(14081, 'Folklore -- Armenia (Republic)'), +(14082, 'Helsinki (Finland) -- History'), +(14083, 'Society of Friends -- Doctrines'), +(14084, 'Sadomasochism -- Fiction'), +(14085, 'St. John de Crèvecoeur, J. Hector, 1735-1813'), +(14086, 'Canals, Interoceanic'), +(14087, 'Florida -- History -- Spanish colony, 1565-1763'), +(14088, 'Volcanoes -- Juvenile literature'), +(14089, 'Medical ethics'), +(14090, 'Authorship -- Juvenile fiction'), +(14091, 'Elves -- Juvenile poetry'), +(14092, 'Malay Peninsula -- Description and travel'), +(14093, 'Tales -- Philippines'), +(14094, 'Pets -- Juvenile fiction'), +(14095, 'France -- Foreign relations -- Russia'), +(14096, 'Great Britain -- History -- George II, 1727-1760 -- Fiction'), +(14097, 'Musicians -- Juvenile literature'), +(14098, 'Wildlife conservation -- Newfoundland and Labrador -- Labrador'), +(14099, 'Great Britain -- Politics and government -- 1603-1625'), +(14100, 'Catholic Church -- Canada'), +(14101, 'Fancy work -- Handbooks, manuals, etc.'), +(14102, 'Performance practice (Music) -- Early works to 1800'), +(14103, 'Clothing and dress -- United States -- History'), +(14104, 'Knights and knighthood -- Drama'), +(14105, 'Cyclotrons'), +(14106, 'Judgment (Logic)'), +(14107, 'Christian fiction, American'), +(14108, 'Breckinridge, Margaret (Miller), Mrs., 1802-1838'), +(14109, 'Edward III, King of England, 1312-1377 -- Drama'), +(14110, 'Ci (Chinese poetry) -- History and criticism'), +(14111, 'Life skills'), +(14112, 'Marlborough, John Churchill, Duke of, 1650-1722'), +(14113, 'Flowers -- Great Britain'), +(14114, 'World War, 1914-1918 -- Belgium -- Juvenile fiction'), +(14115, 'Punic War, 2nd, 218-201 B.C. -- Juvenile literature'), +(14116, 'Greek language -- Dialects -- Drama'), +(14117, 'Pintoricchio, approximately 1454-1513'), +(14118, 'Indians of North America -- Québec (Province) -- Ungava Peninsula -- Folklore'), +(14119, 'Air -- Juvenile literature'), +(14120, 'Housewives -- Juvenile fiction'), +(14121, 'Mary, Blessed Virgin, Saint'), +(14122, 'Bertrand, Joseph, 1822-1900'), +(14123, 'Ireland -- Economic conditions -- Fiction'), +(14124, 'Marylebone Penny Readings'), +(14125, 'Great Britain -- History -- Henry V, 1413-1422 -- Drama'), +(14126, 'Alkali lands -- Juvenile fiction'), +(14127, 'Malaya -- Fiction'), +(14128, 'South Carolina -- Militia -- Biography'), +(14129, 'Lisbon Earthquake, Portugal, 1755'), +(14130, 'Moon -- Exploration -- Fiction'), +(14131, 'Dartmoor Prison'), +(14132, 'Sin'), +(14133, 'Names, Personal -- German'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(14134, 'Projectiles'), +(14135, 'Solomon, King of Israel'), +(14136, 'France -- History -- Louis XVI, 1774-1793 -- Fiction'), +(14137, 'Byzantine Empire -- History -- John V Palaeologus, 1341-1391 -- Fiction'), +(14138, 'Equality'), +(14139, 'Sudan -- History -- To 1821'), +(14140, 'Publishers and publishing -- England -- Oxford -- History'), +(14141, 'Munich (Germany) -- Description and travel'), +(14142, 'Great Britain -- Politics and government -- Fiction'), +(14143, 'Ireland -- History -- Easter Rising, 1916 -- Personal narratives'), +(14144, 'Rifle practice'), +(14145, 'Birds -- Africa'), +(14146, 'Hammersmith (London, England) -- Description and travel'), +(14147, 'Masks (Sculpture)'), +(14148, 'Pompeii (Extinct city) -- Fiction'), +(14149, 'Irish -- Foreign countries -- Fiction'), +(14150, 'Mythology, Slavic -- Juvenile literature'), +(14151, 'Canadian-American Border Region -- Fiction'), +(14152, 'Earth houses -- Design and construction'), +(14153, 'Louisville (Ky.) -- Description and travel'), +(14154, 'Tales -- Africa, French-speaking West'), +(14155, 'Gray, Asa, 1810-1888 -- Correspondence'), +(14156, 'Falconry'), +(14157, 'Social problems -- Bibliography'), +(14158, 'Dragons -- Juvenile fiction'), +(14159, 'Ireland -- History -- Rebellion of 1641'), +(14160, 'Boatbuilding'), +(14161, 'Agriculture -- Handbooks, manuals, etc.'), +(14162, 'Nahuatl language -- Readers'), +(14163, 'Haciendas in art'), +(14164, 'Capitalists and financiers -- United States'), +(14165, 'New York (N.Y.) -- Social life and customs -- 19th century'), +(14166, 'Painters -- Juvenile literature'), +(14167, 'Vatican Council (1st : 1869-1870 : Basilica di San Pietro in Vaticano)'), +(14168, 'Arnault, A.-V. (Antoine-Vincent), 1766-1834'), +(14169, 'Africa, Southern -- Description and travel'), +(14170, 'Upper class -- England -- History -- 19th century -- Fiction'), +(14171, 'Musset, Alfred de, 1810-1857'), +(14172, 'Saltus, Edgar, 1855-1921'), +(14173, 'Quartier latin (Paris, France)'), +(14174, 'Calculators'), +(14175, 'Bruno, Giordano, 1548-1600'), +(14176, 'Telegraph -- Canada -- History'), +(14177, 'Constitutional law -- Japan'), +(14178, 'Europe, Southern'), +(14179, 'Catherine II, Empress of Russia, 1729-1796 -- Drama'), +(14180, 'Mississippi River -- Discovery and exploration -- Juvenile fiction'), +(14181, 'Natural history -- New England'), +(14182, 'Guilds -- England -- History'), +(14183, 'Froude, Richard Hurrell, 1803-1836'), +(14184, 'Color printing'), +(14185, 'Poets, Chinese -- Tang dynasty, 618-907 -- Biography'), +(14186, 'Sex -- Early works to 1800'), +(14187, 'Textbooks -- Catalogs'), +(14188, 'Railroads -- Brazil'), +(14189, 'Performing arts -- United States -- History -- 19th century -- Fiction'), +(14190, 'Property'), +(14191, 'Thomas Hickathrift'), +(14192, 'Tombs -- Egypt'), +(14193, 'North Carolina -- History -- Fiction'), +(14194, 'Atomic bomb -- New Mexico -- Testing -- History'), +(14195, 'Larynx -- Surgery'), +(14196, 'Sports -- Juvenile fiction'), +(14197, 'Chinese poetry -- Five dynasties and the Ten kingdoms, 907-979'), +(14198, 'Pennell, Elizabeth Robins, 1855-1936 -- Homes and haunts -- England -- London'), +(14199, 'Country homes -- England'), +(14200, 'United States. Navy -- Biography'), +(14201, 'Charleston (S.C.) -- Biography'), +(14202, 'Tales -- Serbia'), +(14203, 'Sicilian Vespers, Italy, 1282'), +(14204, 'United States -- History -- Poetry'), +(14205, 'Universalist Church of America -- Sermons'), +(14206, 'Congress of Vienna (1814-1815)'), +(14207, 'Nightclubs -- Germany -- Fiction'), +(14208, 'Lady of the Lake (Legendary character) -- Romances'), +(14209, 'Hospitality -- Fiction'), +(14210, 'Hawaii -- Fiction'), +(14211, 'Virginia -- History -- Colonial period, ca. 1600-1775 -- Bibliography'), +(14212, 'Missions -- Islands of the Pacific -- Juvenile fiction'), +(14213, 'Egypt -- History, Ancient'), +(14214, 'Laestadius, L. L. (Lars Levi), 1800-1861'), +(14215, 'Handicraft -- Juvenile fiction'), +(14216, 'Fête de la Fédération, 1790'), +(14217, 'Fasts and feasts -- England -- Cornwall (County)'), +(14218, 'College graduates -- Fiction'), +(14219, 'Ethnic groups -- California'), +(14220, 'Soft-shelled turtles'), +(14221, 'Fisheries -- Maine, Gulf of'), +(14222, 'Lassalle, Ferdinand, 1825-1864 -- Fiction'), +(14223, 'Fantasy fiction -- History and criticism -- Periodicals'), +(14224, 'Detectives -- United States'), +(14225, 'Human evolution'), +(14226, 'Nobility -- Italy -- History'), +(14227, 'Astrology'), +(14228, 'Santa Rita, Guilherme Augusto Cau da Costa, 1889-1918 -- Appreciation -- Portugal'), +(14229, 'Eastern question (Central Asia)'), +(14230, 'Exiles -- French Guiana -- Cayenne'), +(14231, 'Strict Baptists -- Doctrines'), +(14232, 'Sweating-sickness -- Early works to 1800'), +(14233, 'Fremantle, Arthur James Lyon, Sir, 1835-1901 -- Travel -- Confederate States of America'), +(14234, 'Great Britain. Royal Navy -- Pictorial works'), +(14235, 'Sailing'), +(14236, 'German literature -- Translations into Finnish'), +(14237, 'Bombings -- Fiction'), +(14238, 'Great Britain. Army. Royal Tank Corps'), +(14239, 'Armenian literature'), +(14240, 'Schools -- Exercises and recreations'), +(14241, 'Brooklyn Theater (New York, N.Y.) -- History'), +(14242, 'Marriage law -- Great Britain'), +(14243, 'Fraud -- Juvenile fiction'), +(14244, 'Businesspeople -- United States -- Biography'), +(14245, 'Garden cities'), +(14246, 'Puritans -- Juvenile fiction'), +(14247, 'Frontier and pioneer life -- Pennsylvania'), +(14248, 'Education -- Philippines'), +(14249, 'America -- Maps'), +(14250, 'Oahu (Hawaii) -- Guidebooks'), +(14251, 'Apartment houses -- Fiction'), +(14252, 'Book industries and trade -- Great Britain -- History'), +(14253, 'Bullitt, Alexander Clark, 1807-1868'), +(14254, 'Finnish essays'), +(14255, 'Tyrol (Austria) -- Description and travel'), +(14256, 'Sick -- Juvenile fiction'), +(14257, 'Normans -- Great Britain -- Fiction'), +(14258, 'Frost -- Social aspects -- Great Britain'), +(14259, 'Society of Rosicrucians'), +(14260, 'Frontier and pioneer life -- Kansas -- Fiction'), +(14261, 'Cliff-dwellings -- Colorado -- Pictorial works'), +(14262, 'Apostles'), +(14263, 'Criminal law -- India'), +(14264, 'Orthodox Eastern Church -- Liturgy'), +(14265, 'Jesuits. Constitutiones'), +(14266, 'Wilmington (N.C.) -- History -- Fiction'), +(14267, 'Religious poetry, English'), +(14268, 'Plurality of worlds'), +(14269, 'English fiction -- Irish authors'), +(14270, 'Habit'), +(14271, 'Accidents -- Prevention'), +(14272, 'Earthquakes -- California'), +(14273, 'Attempted murder -- Juvenile fiction'), +(14274, 'South America -- Juvenile fiction'), +(14275, 'Materia medica, Vegetable'), +(14276, 'Europe -- History -- 1918-1945'), +(14277, 'Astronomy -- Early works to 1800'), +(14278, 'Caucasus -- Description and travel'), +(14279, 'Davy, Humphry, Sir, 1778-1829'), +(14280, 'Cappella degli Scrovegni nell\'Arena (Padua, Italy)'), +(14281, 'Texas -- History -- Civil War, 1861-1865'), +(14282, 'Cholera -- Fiction'), +(14283, 'Snow camping -- Juvenile fiction'), +(14284, 'Inheritance and succession -- Drama'), +(14285, 'Earthquakes -- Italy -- Messina'), +(14286, 'Physicists -- Fiction'), +(14287, 'Kamilaroi language -- Terms and phrases'), +(14288, 'Maroons -- Jamaica'), +(14289, 'Swimming'), +(14290, 'Plants -- Wisconsin'), +(14291, 'Slavery -- Missouri'), +(14292, 'Inventors'), +(14293, 'Coaching (Transportation) -- History'), +(14294, 'Private libraries'), +(14295, 'Cervantes Saavedra, Miguel de, 1547-1616'), +(14296, 'Sea stories, Greek (Modern)'), +(14297, 'Rákóczi Ferenc II, Prince of Transylvania, 1676-1735'), +(14298, 'Midlands (England) -- Fiction'), +(14299, 'Indians of North America -- Kentucky -- Juvenile fiction'), +(14300, 'Portsmouth Road (England)'), +(14301, 'World\'s Columbian Exposition (1893 : Chicago, Ill.) -- Juvenile fiction'), +(14302, 'India. Army -- History'), +(14303, 'Children\'s stories, Swedish -- Translations into Finnish'), +(14304, 'Cities and towns -- Palestine'), +(14305, 'Wine and wine making -- United States'), +(14306, 'Fishing -- History'), +(14307, 'Number concept'), +(14308, 'Hymns, German'), +(14309, 'Christian life -- Catholic authors'), +(14310, 'Religion and science -- Fiction'), +(14311, 'Inland navigation -- Northwest, Pacific'), +(14312, 'Royal Canadian Mounted Police'), +(14313, 'Greenland -- Description and travel'), +(14314, 'Sex customs -- France -- History -- 17th century'), +(14315, 'Tales -- Croatia'), +(14316, 'Bisayan languages -- Glossaries, vocabularies, etc.'), +(14317, 'Craven (England : District) -- Registers'), +(14318, 'Germany -- Foreign relations -- Denmark'), +(14319, 'Louis XVI, King of France, 1754-1793 -- Humor'), +(14320, 'Chastity, Vow of -- Fiction'), +(14321, 'United States -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(14322, 'College sports -- Fiction'), +(14323, 'Dudley Observatory'), +(14324, 'Poor -- Medical care'), +(14325, 'Bloomsbury (London, England) -- Fiction'), +(14326, 'British Museum'), +(14327, 'Manhattan Project (U.S.)'), +(14328, 'United States -- Politics and government -- 1853-1857'), +(14329, 'Yugoslavia'), +(14330, 'Indians, Treatment of -- Latin America'), +(14331, 'Free thought -- Biography'), +(14332, 'Alhambra (Granada, Spain)'), +(14333, 'Chichester Cathedral'), +(14334, 'Symbolism (Literary movement) -- France'), +(14335, 'American literature -- 20th century -- History and criticism'), +(14336, 'Swedish Americans -- Fiction'), +(14337, 'Andalusia (Spain) -- Social life and customs -- Fiction'), +(14338, 'Schools -- England'), +(14339, 'Toledo (Spain) -- Description and travel'), +(14340, 'Complaint poetry, English'), +(14341, 'Great Britain -- History -- 19th century'), +(14342, 'Women -- Social and moral questions -- Fiction'), +(14343, 'Cannibalism'), +(14344, 'Optics -- Early works to 1800'), +(14345, 'Philippines -- History -- 1898-1946'), +(14346, 'Lesotho -- Social life and customs'), +(14347, 'Art -- Exhibitions'), +(14348, 'Soviet Union -- Description and travel'), +(14349, 'World War, 1914-1918 -- Prisoners and prisons'), +(14350, 'Scandals -- Fiction'), +(14351, 'Mars (Planet)'), +(14352, 'Free Church of England -- Sermons'), +(14353, 'Pellico, Silvio, 1789-1854 -- Imprisonment'), +(14354, 'Book collecting -- Great Britain'), +(14355, 'Agriculture -- Economic aspects -- England'), +(14356, 'Ferns -- Hawaii -- Hawaii Volcanoes National Park -- Identification'), +(14357, 'Slavery and the church -- United States'), +(14358, 'Scandinavia -- Antiquities'), +(14359, 'Peru -- Antiquities'), +(14360, 'Women social reformers -- United States -- Biography'), +(14361, 'Cut glass -- Ireland'), +(14362, 'United States -- History -- War of 1812 -- Naval operations'), +(14363, 'War stories, German'), +(14364, 'Adams, Charles Francis, 1835-1915. Confederacy and the Transvaal'), +(14365, 'God -- Proof, Ontological'), +(14366, 'Lamb, Charles, 1775-1834 -- Family'), +(14367, 'Bishops -- England -- Chester -- Biography'), +(14368, 'Church and state -- England -- History -- 19th century'), +(14369, 'Happiness -- Fiction'), +(14370, 'Catholic Church -- Ontario -- Ottawa -- Catechisms'), +(14371, 'Temptation'), +(14372, 'Thanksgiving Day -- Juvenile fiction'), +(14373, 'Holy Coat'), +(14374, 'Great Britain. Army. Royal Irish Regiment'), +(14375, 'Mormon Church -- History'), +(14376, 'Enthusiasm -- Religious aspects -- Christianity'), +(14377, 'Great Britain -- Kings and rulers -- Fiction'), +(14378, 'Howitt, Mary Botham, 1799-1888'), +(14379, 'Trials (Treason) -- Massachusetts'), +(14380, 'Love stories, Chinese'), +(14381, 'Great Britain -- Civilization -- 19th century'), +(14382, 'Washita Campaign, 1868-1869'), +(14383, 'Riquet de Bonrepos, Pierre-Paul, 1604-1680'), +(14384, 'Christian life -- Pictorial works'), +(14385, 'Flour mills -- Virginia -- History'), +(14386, 'Friendship -- Quotations, maxims, etc.'), +(14387, 'German literature -- Middle High German, 1050-1500'), +(14388, 'Bananas'), +(14389, 'Bible. Colossians'), +(14390, 'Great Britain. Royal Navy -- Juvenile fiction'), +(14391, 'Sitka (Alaska)'), +(14392, 'Revolutionaries -- Ireland -- Biography'), +(14393, 'Canoes and canoeing'), +(14394, 'United States -- History -- French and Indian War, 1754-1763 -- Regimental histories'), +(14395, 'Economics -- Greece -- History'), +(14396, 'Great Britain. Army. Dragoons, 1st (Royal)'), +(14397, 'Mountains'), +(14398, 'Middlesex (England) -- Fiction'), +(14399, 'Great Britain -- Church history -- 17th century'), +(14400, 'Chair caning'), +(14401, 'Americans -- Great Britain -- Fiction'), +(14402, 'Old age'), +(14403, 'Como, Lake, Region (Italy) -- Buildings, structures, etc.'), +(14404, 'Gates -- Design and construction'), +(14405, 'Women\'s periodicals, American'), +(14406, 'Gardens, Japanese -- Japan'), +(14407, 'Portugal -- History -- 19th century'), +(14408, 'Suffragists -- Fiction'), +(14409, 'Biographical fiction, French'), +(14410, 'Natural history -- Mexico'), +(14411, 'Fairy tales -- France -- Translations into German'), +(14412, 'Mecklenburg (Germany : Region) -- Fiction'), +(14413, 'Swedes -- Finland -- Social life and customs -- Juvenile fiction'), +(14414, 'Health -- Early works to 1800'), +(14415, 'Russia -- Description and travel -- Juvenile fiction'), +(14416, 'Nuclear activation analysis'), +(14417, 'Education -- Ontario'), +(14418, 'Alexander, the Great, 356-323 B.C.'), +(14419, 'Decoration and ornament -- History'), +(14420, 'Ethnology -- Borneo'), +(14421, 'Henry IV, King of France, 1553-1610'), +(14422, 'Wiradjuri language'), +(14423, 'Walker, William, 1824-1860'), +(14424, 'Australasia -- Description and travel'), +(14425, 'Socialism -- United States'), +(14426, 'Washington (D.C.) -- History -- Civil War, 1861-1865'), +(14427, 'Franklin, John, 1786-1847 -- Poetry'), +(14428, 'Ombre (Game) -- Early works to 1800'), +(14429, 'Antislavery movements -- Massachusetts -- Boston'), +(14430, 'Books -- History -- To 400'), +(14431, 'African Americans -- Virginia -- Early works to 1800'), +(14432, 'Homing pigeons -- Fiction'), +(14433, 'Women -- Orient'), +(14434, 'Geography -- Outlines, syllabi, etc.'), +(14435, 'Fairies -- Juvenile poetry'), +(14436, 'Britons -- Drama'), +(14437, 'Anatomy, Artistic'), +(14438, 'Great Britain -- History -- James I, 1603-1625 -- Juvenile fiction'), +(14439, 'Jesuits -- Controversial Literature'), +(14440, 'Popes -- Temporal power'), +(14441, 'Jews -- Civilization'), +(14442, 'Parker, Carleton H. (Carleton Hubbell), 1879-1918'), +(14443, 'Buddhism -- Burma'), +(14444, 'Bible. Luke -- Commentaries'), +(14445, 'Lexicographers -- United States -- Biography'), +(14446, 'Suburbs -- England -- London'), +(14447, 'Missions -- Newfoundland and Labrador'), +(14448, 'Fairy tales -- Netherlands'), +(14449, 'Executives -- Fiction'), +(14450, 'Explosives in agriculture'), +(14451, 'Shooting'), +(14452, 'Fouquet, Nicolas, 1615-1680'), +(14453, 'Trials (Blasphemy) -- England -- London'), +(14454, 'Airplanes -- Motors'), +(14455, 'Natural history -- Washington (State) -- Olympic National Park'), +(14456, 'Faith'), +(14457, 'Laughter -- Juvenile fiction'), +(14458, 'Saratoga County (N.Y.) -- Politics and government'), +(14459, 'Pitt, William, 1759-1806'), +(14460, 'Dante Alighieri, 1265-1321'), +(14461, 'Bible -- Paraphrases, English'), +(14462, 'Fairy tales -- Norway'), +(14463, 'United States. Army. Signal Corps -- Juvenile fiction'), +(14464, 'Great Britain -- Relations -- Germany'), +(14465, 'Frances, of Rome, Saint, 1384-1440'), +(14466, 'Mythology, Classical -- Humor'), +(14467, 'Sargasso Sea -- Fiction'), +(14468, 'Huguenots -- History -- 16th century'), +(14469, 'Galicia (Spain : Region) -- Description and travel'), +(14470, 'Butler, Samuel, 1835-1902'), +(14471, 'Occasional verse -- Early works to 1800'), +(14472, 'Dutch language -- Foreign words and phrases'), +(14473, 'Solitude -- Fiction'), +(14474, 'Constitutional law -- Canada'), +(14475, 'Foxes'), +(14476, 'Folk songs, Dutch -- Netherlands -- Texts'), +(14477, 'Nationalists -- Poetry'), +(14478, 'Sologub, Fyodor, 1863-1927 -- Translations into English'), +(14479, 'Adriatic Sea'), +(14480, 'Rudolf I, King of Germany, 1218-1291 -- Poetry'), +(14481, 'Christian pilgrims and pilgrimages -- Juvenile fiction'), +(14482, 'Violin makers'), +(14483, 'Mondego River (Portugal)'), +(14484, 'Mayas -- Poetry'), +(14485, 'Slave trade -- Poetry'), +(14486, 'England -- Social life and customs -- Humor'), +(14487, 'Tales -- Great Britain'), +(14488, 'Turkey -- History -- 1878-1909'), +(14489, 'Menai Bridge (Wales)'), +(14490, 'Women -- Japan -- Social life and customs'), +(14491, 'Livingston family'), +(14492, 'Indian Territory'), +(14493, 'Argentina'), +(14494, 'Jaundice'), +(14495, 'Gorky, Maksim, 1868-1936'), +(14496, 'Presidents -- United States -- Correspondence'), +(14497, 'String quartets'), +(14498, 'Photogravure'), +(14499, 'China -- History -- Song dynasty, 960-1279'), +(14500, 'Immigrants -- Australia -- Biography'), +(14501, 'Induction (Logic) -- Early works to 1800'), +(14502, 'United States. Forest Service'), +(14503, 'Ships'), +(14504, 'Costa Rica -- Description and travel'), +(14505, 'Slave narratives -- South Carolina'), +(14506, 'Embalming -- Early works to 1800'), +(14507, 'Marie de Médicis, Queen, consort of Henry IV, King of France, 1573-1642'), +(14508, 'Nasreddin Hoca (Legendary character)'), +(14509, 'Ulster (Northern Ireland and Ireland)'), +(14510, 'Generals -- England -- Biography'), +(14511, 'Tchaikovsky, Peter Ilich, 1840-1893. Orchestra music'), +(14512, 'Postal service -- United States -- Second-class matter'), +(14513, 'Mammals -- Colorado -- Mesa Verde National Park'), +(14514, 'Great Britain -- Colonies -- America -- History -- 18th century -- Sources'), +(14515, 'Radicalism -- Great Britain -- History -- 19th century'), +(14516, 'Amusements -- Religious aspects'), +(14517, 'Fredericksburg (Va.) -- Guidebooks'), +(14518, 'Women -- Germany -- Fiction'), +(14519, 'Ex-nuns -- United States -- Biography'), +(14520, 'Hubbell Trading Post National Historic Site (Ganado, Ariz.) -- Problems and exercises -- Juvenile literature'), +(14521, 'British -- Spain -- Fiction'), +(14522, 'Botany -- Juvenile literature'), +(14523, 'Spain -- History -- Ferdinand and Isabella, 1479-1516'), +(14524, 'Nursery rhymes -- Adaptations'), +(14525, 'Reptiles, Fossil'), +(14526, 'Library science -- Great Britain'), +(14527, 'Forest rangers -- Fiction'), +(14528, 'Woman\'s journal (Boston, Mass. : 1870)'), +(14529, 'Birds -- Australia'), +(14530, 'Inscriptions, Egyptian'), +(14531, 'Oriental poetry -- Translations into English'), +(14532, 'Poetry -- Translations into Finnish'), +(14533, 'Birds -- Mexico'), +(14534, 'Hunting -- Ukraine -- Crimea'), +(14535, 'Greek literature -- Translations into Finnish'), +(14536, 'Connemara (Ireland) -- Description and travel'), +(14537, 'Sweden - -Politics and government -- 1814-1905'), +(14538, 'Sarmiento, Domingo Faustino, 1811-1888'), +(14539, 'Dutch literature -- 19th century -- History and criticism'), +(14540, 'Lesbians -- Fiction'), +(14541, 'Rome -- Politics and government -- 265-30 B.C.'), +(14542, 'Edwards, Jonathan, 1703-1758. Freedom of the will'), +(14543, 'Folklore -- Turkey'), +(14544, 'Meissonier, Jean Louis Ernest, 1815-1891'), +(14545, 'Compiègne (France) -- History -- Siege, 1430 -- Fiction'), +(14546, 'Women abolitionists -- United States -- Biography'), +(14547, 'Shipwreck survival -- Drama'), +(14548, 'Families -- History'), +(14549, 'Japanese drama -- Translations into English'), +(14550, 'Margaret, of Austria, Regent of the Netherlands, 1480-1530'), +(14551, 'Anglo-Saxons -- England -- Wessex -- Kings and rulers -- Biography'), +(14552, 'Temper -- Juvenile fiction'), +(14553, 'Nute, Benjamin H.'), +(14554, 'San Francisco Bay Area (Calif.)'), +(14555, 'Literary quarrels'), +(14556, 'Women -- Legal status, laws, etc. -- Iowa'), +(14557, 'Birds -- Migration'), +(14558, 'Billiards'), +(14559, 'Houtman Abrolhos (W.A.) -- Description and travel'), +(14560, 'French poetry -- 19th century -- History and criticism'), +(14561, 'Japan -- Social life and customs -- Fiction'), +(14562, 'Ruggles, Lorain, 1823-'), +(14563, 'Arthur, King -- Juvenile literature'), +(14564, 'Radha (Hindu deity) -- Poetry'), +(14565, 'Industries -- Russia -- History -- 19th century'), +(14566, 'Aquaculture'), +(14567, 'Nagasaki-shi (Japan) -- History -- Bombardment, 1945'), +(14568, 'German Americans -- New York (State) -- New York -- Social life and customs'), +(14569, 'Harpers Ferry (W. Va.) -- History -- John Brown\'s Raid, 1859'), +(14570, 'Baluchistan -- Description and travel'), +(14571, 'Roman law'), +(14572, 'Swan, Moses, 1812-'), +(14573, 'New York weekly journal'), +(14574, 'Air pilots -- France -- Biography'), +(14575, 'Tales -- England'), +(14576, 'Sculpture, Greek -- Catalogs'), +(14577, 'Pratt, Parley P. (Parley Parker), 1807-1857'), +(14578, 'Mahratta War, 1803 -- Fiction'), +(14579, 'Russell, Frances Anna Maria (Elliot) Russell, countess, 1815-1898'), +(14580, 'Husband and wife -- Poetry'), +(14581, 'Nature stories'), +(14582, 'Seminole Indians -- Juvenile fiction'), +(14583, 'Cant -- Great Britain'), +(14584, 'Railroad accidents'), +(14585, 'Grimaldi, Joseph, 1779-1837'), +(14586, 'Poe, Edgar Allan, 1809-1849 -- Homes and haunts'), +(14587, 'Indians of North America -- Oregon -- Fiction'), +(14588, 'Russo-Turkish War, 1877-1878'), +(14589, 'Raitenau, Wolf Dietrich von, 1559-1617'), +(14590, 'World War, 1914-1918 -- Photography'), +(14591, 'Veronese, 1528-1588'), +(14592, 'Susquehanna Indians'), +(14593, 'Tell el-Amarna (Egypt)'), +(14594, 'Jesus Christ -- Rationalistic interpretations -- Early works to 1800'), +(14595, 'Lancashire (England) -- Social life and customs'), +(14596, 'Jefferies, Richard, 1848-1887'), +(14597, 'Painters -- Spain -- Biography'), +(14598, 'Babur, Emperor of Hindustan, 1483-1530'), +(14599, 'Saint John (N.B.) -- Fire, 1877'), +(14600, 'Australia. Australian Army. Australian Imperial Force (1914-1921). Australian Field Ambulance, 4th'), +(14601, 'Valencia (Spain : Province) -- Fiction'), +(14602, 'Runaways -- Juvenile fiction'), +(14603, 'Photography -- Juvenile fiction'), +(14604, 'Bible. Leviticus'), +(14605, 'Astrology -- Handbooks, manuals, etc.'), +(14606, 'Libraries -- Handbooks, manuals, etc.'), +(14607, 'Horace -- Criticism and interpretation'), +(14608, 'Music -- Italy'), +(14609, 'Change ringing'), +(14610, 'Speculation'), +(14611, 'Lingard, Tom (Fictitious character) -- Fiction'), +(14612, 'United States. Army. Ohio Infantry Regiment, 26th (1861-1865)'), +(14613, 'Divers -- Fiction'), +(14614, 'Polygamy -- Fiction'), +(14615, 'Sully, Alfred, 1821-1879 -- Fiction'), +(14616, 'Boulanger, Georges-Ernest-Jean-Marie, 1837-1891'), +(14617, 'Cross-dressers -- France -- Biography'), +(14618, 'Military airships -- United States'), +(14619, 'Kenilworth (England) -- Pictorial works'), +(14620, 'Forgiveness -- Fiction'), +(14621, 'Canterbury (England) -- Description and travel'), +(14622, 'Computer networks -- Law and legislation -- United States'), +(14623, 'Prisoners -- Australia'), +(14624, 'Dunbarton Center (N.H.) -- History'), +(14625, 'England -- Intellectual life -- 1066-1485'), +(14626, 'Mammals -- New Zealand'), +(14627, 'Etiquette -- Anecdotes'), +(14628, 'World War, 1914-1918 -- Naval operations, German'), +(14629, 'Geometry, Algebraic'), +(14630, 'Jewish law -- History'), +(14631, 'Private duty nursing'), +(14632, 'Italian literature -- Translations into French'), +(14633, 'Paddington (London, England)'), +(14634, 'Wolf hunting'), +(14635, 'Ward, Leslie, Sir, 1851-1922'), +(14636, 'Mothers'), +(14637, 'Hunting -- Africa, East'), +(14638, 'Church and state -- Sweden'), +(14639, 'Marine plants -- Juvenile literature'), +(14640, 'Booth-Clibborn, Catherine, 1860-1955'), +(14641, 'Roman question'), +(14642, 'Jews -- Morocco -- Marrakech -- Fiction'), +(14643, 'Canada -- History -- Poetry'), +(14644, 'Physical education for women'), +(14645, 'Kent (England) -- Description and travel'), +(14646, 'Kensington (London, England) -- Fiction'), +(14647, 'Eden'), +(14648, 'Female offenders -- Biography'), +(14649, 'James S. Virtue (Firm) -- Catalogs'), +(14650, 'Oxygen'), +(14651, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Pennsylvania Infantry -- 30th -- Company K'), +(14652, 'Ireland'), +(14653, 'Danish literature'), +(14654, 'Broadsides'), +(14655, 'Psychological tests'), +(14656, 'Indian women -- Fiction'), +(14657, 'Abstracting'), +(14658, 'Michigan -- Juvenile fiction'), +(14659, 'Windsor Castle'), +(14660, 'Violinists -- Norway -- Biography'), +(14661, 'France -- History -- Medieval period, 987-1515'), +(14662, 'Horse stealing -- Drama'), +(14663, 'Women -- Societies and clubs -- Fiction'), +(14664, 'Crow Indians -- Fiction'), +(14665, 'Vampires -- India -- Folklore'), +(14666, 'Boats and boating -- Green River (Wyo.-Utah)'), +(14667, 'Mars (Planet) -- Pictorial works'), +(14668, 'Glass painting and staining -- France'), +(14669, 'War poetry, American'), +(14670, 'Horace -- Parodies, imitations, etc.'), +(14671, 'Heidelberger Schloss (Heidelberg, Germany) -- Fiction'), +(14672, 'Greece -- History -- Persian Wars, 500-449 B.C. -- Drama'), +(14673, 'Watterson, Henry, 1840-1921'), +(14674, 'Bridges -- Design and construction -- Fiction'), +(14675, 'New York (State) -- Guidebooks'), +(14676, 'Councils and synods, Ecumenical -- History'), +(14677, 'Diamond mines and mining -- Brazil'), +(14678, 'Catholic Church -- Italy -- History -- To 1500 -- Fiction'), +(14679, 'Southwest, New -- History -- Fiction'), +(14680, 'Melville, Herman, 1819-1891'), +(14681, 'United States. Army. Massachusetts Infantry Regiment, 24th (1861-1866)'), +(14682, 'Newfoundland and Labrador -- History'), +(14683, 'Troy (Extinct city) -- Drama'), +(14684, 'Bible. Psalms XXIII -- Commentaries'), +(14685, 'Romsey Abbey'), +(14686, 'Indigenous peoples'), +(14687, 'Bread -- History'), +(14688, 'World War, 1914-1918 -- Campaigns -- Iraq -- Juvenile fiction'), +(14689, 'Alps, Italian (Italy) -- Description and travel'), +(14690, 'Golden, M. (Meletios)'), +(14691, 'Detective and mystery stories, German'), +(14692, 'Hymns, Danish -- History and criticism'), +(14693, 'Mesa Verde National Park (Colo.) -- Problems and exercises -- Juvenile literature'), +(14694, 'Lenten menus'), +(14695, 'Haunted houses -- Connecticut -- Fiction'), +(14696, 'Suicide -- Fiction'), +(14697, 'Malays (Asian people) -- Folklore'), +(14698, 'Borneo -- Description and travel'), +(14699, 'Mexico -- History -- 19th century -- Fiction'), +(14700, 'Portugal -- History -- Period of discoveries, 1385-1580'), +(14701, 'Yosemite Valley (Calif.) -- History'), +(14702, 'Zeebrugge-Ostend Raids, 1918'), +(14703, 'Manchester (England) -- History'), +(14704, 'Camões, Luís de, 1524?-1580 -- Parodies, imitations, etc.'), +(14705, 'United States. Army. New York Infantry Regiment, 128th (1862-1865)'), +(14706, 'Jocelyn, Percy, 1764-1843 -- Trials, litigation, etc.'), +(14707, 'Turkey -- History -- Bayezid I, 1389-1403'), +(14708, 'Hypnotists -- Fiction'), +(14709, 'Lake-dwellers and lake-dwellings -- Ireland'), +(14710, 'Short stories, Chinese -- Translations into English'), +(14711, 'Beijing (China) -- Description and travel'), +(14712, 'Fox, Travis (Fictitious character) -- Fiction'), +(14713, 'Bermejo River (Bolivia and Argentina) -- Discovery and exploration'), +(14714, 'Napier, Charles James, 1782-1853'), +(14715, 'Plague -- England -- London -- Early works to 1800'), +(14716, 'Trout fishing'), +(14717, 'School discipline'), +(14718, 'Social service'), +(14719, 'ALGOL (Computer program language)'), +(14720, 'Elk hunting -- Wyoming'), +(14721, 'France -- History -- Second Republic, 1848-1852'), +(14722, 'Caesar, Julius. De bello Gallico'), +(14723, 'Folklore -- Great Britain'), +(14724, 'Italian literature -- 16th century -- History and criticism'), +(14725, 'Franck, César, 1822-1890'), +(14726, 'Salis, Rodolphe, 1851-1897'), +(14727, 'France. Armée. Troupes coloniales'), +(14728, 'Paper industry -- Periodicals'), +(14729, 'Cities and towns -- United States'), +(14730, 'United States -- Colonial question'), +(14731, 'Horse racing -- Betting -- Corrupt practices -- Juvenile fiction'), +(14732, 'Shelley, Percy Bysshe, 1792-1822 -- Travel -- Europe'), +(14733, 'Carpet beetles -- Control'), +(14734, 'Military art and science -- Greece -- Early works to 1800'), +(14735, 'Excavations (Archaeology) -- Virginia -- Marlborough'), +(14736, 'Chemical industry'), +(14737, 'Medical protozoology'), +(14738, 'Puerto Rico -- History'), +(14739, 'Nuclear energy'), +(14740, 'Discoveries in geography -- Juvenile literature'), +(14741, 'Slave trade -- United States -- History'), +(14742, 'Homer. Odyssey'), +(14743, 'Baltimore (Md.) -- Fiction'), +(14744, 'Aboriginal Australians -- Childhood and youth -- Juvenile literature'), +(14745, 'Shoemakers -- Fiction'), +(14746, 'Electricity -- Early works to 1850'), +(14747, 'Games -- Greece -- Poetry'), +(14748, 'Diplomats -- United States -- Biography'), +(14749, 'Iron industry and trade -- Juvenile fiction'), +(14750, 'Animals -- Law and legislation -- History'), +(14751, 'Fables -- Translations into English'), +(14752, 'Bible. Corinthians, 1st -- Commentaries'), +(14753, 'Hamlet (Legendary character)'), +(14754, 'Doyle, Arthur Conan, 1859-1930'), +(14755, 'Grapes -- Varieties -- United States'), +(14756, 'FitzGerald, Edward, 1809-1883 -- Correspondence'), +(14757, 'Stuttering'), +(14758, 'Conversion -- Psychology'), +(14759, 'Choirboys -- Training of -- England'), +(14760, 'Pharmacy -- Periodicals'), +(14761, 'World War, 1914-1918 -- Sermons'), +(14762, 'Children\'s stories, Greek (Modern)'), +(14763, 'Verplanck, Gulian C. (Gulian Crommelin), 1786-1870'), +(14764, 'Sappho -- Translations into English'), +(14765, 'Church of God (Anderson, Ind.) -- Fiction'), +(14766, 'Catholic Church -- Missions -- Nova Scotia'), +(14767, 'Kentucky -- Social life and customs'), +(14768, 'German poetry -- 19th century -- History and criticism'), +(14769, 'Shapeshifting -- Fiction'), +(14770, 'Indians of North America -- West (U.S.) -- Folklore'), +(14771, 'Mammals -- America'), +(14772, 'Vacations -- Juvenile poetry'), +(14773, 'Norwich (England). Public Libraries'), +(14774, 'Austria -- History'), +(14775, 'Steam-engines -- Juvenile literature'), +(14776, 'Matabeleland (Zimbabwe)'), +(14777, 'Burritt College -- History'), +(14778, 'Hymns, Chinook jargon'), +(14779, 'Beef cattle -- Louisiana'), +(14780, 'Grail -- Legends -- History and criticism'), +(14781, 'Benedictsson, Victoria, 1850-1888'), +(14782, 'China -- Politics and government -- 581-907'), +(14783, 'Embroidery -- England'), +(14784, 'Wages -- United States'), +(14785, 'Estonian fiction -- Translations into Finnish'), +(14786, 'Laclos, Choderlos de, 1741-1803'), +(14787, 'Dickens, Charles, 1812-1870 -- Knowledge -- Prisons'), +(14788, 'Journalists -- Correspondence'), +(14789, 'Caxton, William, approximately 1422-1491 or 1492'), +(14790, 'Naaman, the Syrian -- Juvenile fiction'), +(14791, 'Huguenots -- Juvenile fiction'), +(14792, 'China -- Social conditions -- 960-1644 -- Fiction'), +(14793, 'Coventry (England) -- History'), +(14794, 'Egypt -- History -- Tawfīq, 1879-1892'), +(14795, 'Watercolor painting'), +(14796, 'Wood -- Preservation'), +(14797, 'Richard I, King of England, 1157-1199 -- Fiction'), +(14798, 'Prisons -- France -- Paris'), +(14799, 'Argentina -- Juvenile fiction'), +(14800, 'California -- History -- 1846-1850 -- Fiction'), +(14801, 'Confederate States of America. Army. Morgan\'s Cavalry Division'), +(14802, 'Maybrick, Florence Elizabeth, 1862-1941'), +(14803, 'Race discrimination -- Fiction'), +(14804, 'Cagots'), +(14805, 'Bible. Psalms -- Paraphrases, English'), +(14806, 'French poetry -- To 1500'), +(14807, 'Ulster (Northern Ireland and Ireland) -- Drama'), +(14808, 'Esperanto -- Conversation and phrase books'), +(14809, 'Lincoln, Abraham, 1809-1865 -- Humor'), +(14810, 'Sheep'), +(14811, 'Nopalea cochinellifera'), +(14812, 'Birds -- United States -- Juvenile literature'), +(14813, 'Missing children -- Australia -- Juvenile fiction'), +(14814, 'Shoe shiners -- Fiction'), +(14815, 'Rowlandson, Thomas, 1756-1827'), +(14816, 'Kidnapping victims -- Fiction'), +(14817, 'Kentucky -- Literary collections'), +(14818, 'Railroads -- Management'), +(14819, 'Separation (Psychology) -- Fiction'), +(14820, 'Mammals -- Utah'), +(14821, 'Toulon (France) -- History'), +(14822, 'Markets -- New York (State) -- New York'), +(14823, 'Dialect poetry, English -- England -- Lancashire'), +(14824, 'Québec (Province) -- Description and travel'), +(14825, 'Providence and government of God'), +(14826, 'Vámbéry, Ármin, 1832-1913'), +(14827, 'Buenos Aires (Argentina : Province) -- Description and travel'), +(14828, 'Orkney (Scotland) -- Fiction'), +(14829, 'Steward, Rebecca Gould, Mrs., 1820-1877'), +(14830, 'Carbonari'), +(14831, 'Clubs -- Fiction'), +(14832, 'Portages -- North America'), +(14833, 'Osage Indians -- Folklore'), +(14834, 'Scalping -- Juvenile fiction'), +(14835, 'Railroads -- England -- Worcestershire -- Early works to 1850'), +(14836, 'Automobiles -- Juvenile literature'), +(14837, 'Georgia -- History'), +(14838, 'Priests -- Controversial literature'), +(14839, 'Richards, Laura Elizabeth Howe, 1850-1943'), +(14840, 'Fénelon, François de Salignac de La Mothe-, 1651-1715'), +(14841, 'Monasticism and religious orders for women -- History -- Middle Ages, 600-1500'), +(14842, 'Cowardly Lion (Fictitious character) -- Juvenile fiction'), +(14843, 'Cipher and telegraph codes -- Grain trade'), +(14844, 'Norwegian poetry -- 19th century'), +(14845, 'Mormon temples'), +(14846, 'Portuguese poetry -- To 1500'), +(14847, 'Foundlings -- Juvenile fiction'), +(14848, 'Chesapeake Bay Region (Md. and Va.) -- Fiction'), +(14849, 'Svenska missionsförbundet -- Periodicals'), +(14850, 'Berry, Marie-Caroline de Bourbon-Sicile, duchesse de, 1798-1870 -- Fiction'), +(14851, 'Clergy'), +(14852, 'Couples -- England'), +(14853, 'Hawke, Edward Hawke, Baron, 1705-1781'), +(14854, 'Law -- United States -- History'), +(14855, 'Jaina sects'), +(14856, 'Scotland -- History -- Poetry'), +(14857, 'Suites (Orchestra) -- Excerpts'), +(14858, 'Badger, Joseph, 1792-1852'), +(14859, 'Storms'), +(14860, 'Massachusetts Homoeopathic Medical Society'), +(14861, 'Boston (Mass.) -- Centennial celebrations, etc.'), +(14862, 'Housing -- Scotland -- Edinburgh -- History -- 19th century -- Sources'), +(14863, 'Canned foods'), +(14864, 'Women intellectuals -- France -- Correspondence'), +(14865, 'Wood-engraving -- Technique'), +(14866, 'Gautier, Théophile, 1811-1872 -- Travel -- Spain'), +(14867, 'Furniture, Colonial -- Virginia -- Williamsburg'), +(14868, 'Balkan Peninsula -- Description and travel'), +(14869, 'Nineteenth century'), +(14870, 'Okinawa Island (Japan) -- History, Military'), +(14871, 'Horsham (West Sussex, England)'), +(14872, 'Washington, George, 1732-1799 -- Military leadership'), +(14873, 'Hai, Rui, 1514-1587 -- Fiction'), +(14874, 'Materia medica -- China'), +(14875, 'Prostitution -- Illinois -- Chicago'), +(14876, 'Dysfunctional families -- Fiction'), +(14877, 'Indiana -- History -- Revolution, 1775-1783 -- Fiction'), +(14878, 'Spain -- History -- Juvenile fiction'), +(14879, 'Surgery, Operative'), +(14880, 'Indians of South America -- Peru -- Social life and customs'), +(14881, 'Differential equations, Partial'), +(14882, 'Secret service -- Fiction'), +(14883, 'Myers, Ned, approximately 1793-1849'), +(14884, 'Mediterranean Sea -- Juvenile fiction'), +(14885, 'Bachelors -- Poetry'), +(14886, 'Dream interpretation'), +(14887, 'Staël, Madame de (Anne-Louise-Germaine), 1766-1817'), +(14888, 'Verlaine, Paul, 1844-1896 -- Criticism and interpretation'), +(14889, 'Motion pictures -- Humor'), +(14890, 'Crossley reflector'), +(14891, 'Gamache, Louis Olivier, 1784-1854'), +(14892, 'Phlebotomy -- History'), +(14893, 'Kabylia (Algeria) -- Description and travel'), +(14894, 'Catholics -- Great Britain -- History'), +(14895, 'Flight'), +(14896, 'Johnson, Samuel, 1709-1784 -- Criticism and interpretation'), +(14897, 'Universities and colleges -- Sermons'), +(14898, 'Cotton spinning'), +(14899, 'Saint Paul (Minn.) -- History'), +(14900, 'Lehigh River Valley (Pa.) -- Pictorial works'), +(14901, 'Handel, George Frideric, 1685-1759. Oratorios'), +(14902, 'Women philanthropists -- Fiction'), +(14903, 'English language -- Phonetics -- Study and teaching'), +(14904, 'African American poets -- Biography'), +(14905, 'Zeeland (Netherlands : Province) -- Description and travel'), +(14906, 'Oxfordshire (England) -- Fiction'), +(14907, 'Deaf -- Education -- Juvenile fiction'), +(14908, 'Pets -- Social aspects -- Juvenile fiction'), +(14909, 'Choiseul-Praslin, Charles Laure Hugues Théobald, duc de, 1805-1847'), +(14910, 'Cucumbers'), +(14911, 'International Freethought Congress (1st : 1904 : Rome, Italy)'), +(14912, 'Viticulture'), +(14913, 'Eastern Cape (South Africa) -- Description and travel'), +(14914, 'Christian saints in art'), +(14915, 'Gujarat (India) -- History'), +(14916, 'Dramatists, Swedish -- 19th century -- Biography'), +(14917, 'New York (State) -- History -- 19th century -- Juvenile fiction'), +(14918, 'Battles -- Great Britain'), +(14919, 'Private schools -- Juvenile fiction'), +(14920, 'Inventions -- Juvenile fiction'), +(14921, 'Islam -- Spain'), +(14922, 'Epitaphs -- Rome'), +(14923, 'Modernism (Christian theology)'), +(14924, 'Sweatshops -- Great Britain'), +(14925, 'Dunkirk, Battle of, Dunkerque, France, 1940 -- Juvenile fiction'), +(14926, 'Criminals -- New York (State) -- New York'), +(14927, 'Despotism -- Early works to 1800'), +(14928, 'Trials (Murder) -- Scotland'), +(14929, 'Juana de la Cruz, sor, 1481-1534 -- Fiction'), +(14930, 'Crusades -- Second, 1147-1149 -- Fiction'), +(14931, 'Secretaries -- Fiction'), +(14932, 'Art -- Collectors and collecting'), +(14933, 'Andalusia (Spain) -- Fiction'), +(14934, 'Prostitution -- China -- Hong Kong'), +(14935, 'Butlers -- Drama'), +(14936, 'Home ownership -- Fiction'), +(14937, 'Gold mines and mining -- Australia'), +(14938, 'Physics -- Philosophy'), +(14939, 'Southwest, New -- Fiction'), +(14940, 'Shakespeare, William, 1564-1616 -- Homes and haunts -- England'), +(14941, 'Richmond (Va.) -- History -- Siege, 1864-1865'), +(14942, 'Religious poetry, French -- Translations into German'), +(14943, 'Blacks -- Jamaica'), +(14944, 'League of Nations'), +(14945, 'Booksellers\' catalogs -- New York (State) -- New York'), +(14946, 'Mammals -- Washington (State) -- Mount Rainier National Park'), +(14947, 'Hotels -- Drama'), +(14948, 'Lamb, Charles, 1775-1834 -- Correspondence'), +(14949, 'Fort Pillow, Battle of, Tenn., 1864'), +(14950, 'Runaway teenagers -- Juvenile fiction'), +(14951, 'Women -- Periodicals'), +(14952, 'Earth (Planet) -- Miscellanea'), +(14953, 'Czech literature -- History and criticism'), +(14954, 'Chaucer, Geoffrey, -1400 -- Friends and associates'), +(14955, 'Scandinavia -- Social life and customs -- Fiction'), +(14956, 'Aristarchus, of Samos. On the sizes and distances of the sun and moon'), +(14957, 'Washington National Monument Society'), +(14958, 'Thoreau, Henry David, 1817-1862 -- Travel -- Merrimack River (N.H. and Mass.)'), +(14959, 'Latin language -- Grammar'), +(14960, 'Overland journeys to the Pacific -- Juvenile fiction'), +(14961, 'Ethiopia -- History'), +(14962, 'African American women teachers -- Biography'), +(14963, 'Canadian drama -- 20th century'), +(14964, 'Balance of power'), +(14965, 'Zen Buddhism'), +(14966, 'Washington (D.C.)'), +(14967, 'Evesham (England) -- Description and travel'), +(14968, 'Fowling -- Florida -- Everglades -- Juvenile fiction'), +(14969, 'Ireland -- History -- Rebellion of 1798'), +(14970, 'Whiteley, Opal Stanley -- Diaries'), +(14971, 'Proverbs -- History and criticism'), +(14972, 'Scotland -- History -- 1689-1745 -- Fiction'), +(14973, 'Egypt -- History -- To 332 B.C.'), +(14974, 'Birds -- Washington (State)'), +(14975, 'United States -- History -- Civil War, 1861-1865 -- Secret service'), +(14976, 'Groome, Robert Hindes, 1810-1889'), +(14977, 'Weight loss'), +(14978, 'Women in politics -- United States'), +(14979, 'Great Britain. Parliament -- Election'), +(14980, 'Law -- Miscellanea'), +(14981, 'Rubens, Peter Paul, 1577-1640'), +(14982, 'Automobile racing -- Fiction'), +(14983, 'World War, 1914-1918 -- Great Britain -- Drama'), +(14984, 'Elves -- Fiction'), +(14985, 'Mary I, Queen of England, 1516-1558 -- Fiction'), +(14986, 'Oklahoma -- History -- Land Rush, 1889 -- Juvenile fiction'), +(14987, 'Names, Personal -- Netherlands'), +(14988, 'London (England) -- Moral conditions'), +(14989, 'Natural history -- Arizona -- Saguaro National Park'), +(14990, 'Gardens, English -- Early works to 1800'), +(14991, 'Missing persons -- Juvenile fiction'), +(14992, 'Crawford, F. Marion (Francis Marion), 1854-1909. Mr. Isaacs -- Parodies, imitations, etc.'), +(14993, 'Poets, Irish -- 20th century -- Biography'), +(14994, 'Church -- Biblical teaching'), +(14995, 'Railroads -- Juvenile literature'), +(14996, 'Cave dwellers -- Juvenile literature'), +(14997, 'Germany. Kriegsmarine -- Officers -- Fiction'), +(14998, 'Niagara Navigation Company (Toronto, Ont.)'), +(14999, 'Nobbs, Moses James, 1817-'), +(15000, 'Great Britain -- History -- Restoration, 1660-1688 -- Juvenile fiction'), +(15001, 'New Brunswick -- Social life and customs -- 19th century -- Fiction'), +(15002, 'Siouan Indians -- Religion'), +(15003, 'Explorers -- Great Britain -- Diaries'), +(15004, 'Orthodox Eastern Church -- Prayers and devotions'), +(15005, 'Arianism'), +(15006, 'Pacific Ocean -- Fiction'), +(15007, 'Whales'), +(15008, 'San Joaquin Valley (Calif.) -- Population'), +(15009, 'Flathead Indian Reservation (Mont.) -- Fiction'), +(15010, 'Dogs -- Colorado -- Biography'), +(15011, 'Portuguese -- Ethiopia -- History'), +(15012, 'New Orleans, Battle of, New Orleans, La., 1815'), +(15013, 'Winter storms -- Juvenile fiction'), +(15014, 'Regicides -- Drama'), +(15015, 'Auroras'), +(15016, 'Competition'), +(15017, 'Germany -- Politics and government -- Fiction'), +(15018, 'Trust -- Juvenile fiction'), +(15019, 'Chambers, Robert, 1802-1871. Vestiges of the natural history of creation'), +(15020, 'Smithfield (London, England)'), +(15021, 'Local transit -- New York (State) -- New York'), +(15022, 'Cave dwellings -- Europe'), +(15023, 'Strabismus'), +(15024, 'Marie, Duchess of Burgundy, 1457-1482 -- Fiction'), +(15025, 'Middle East -- Social life and customs'), +(15026, 'Great Britain. Commissioners Appointed to Inquire into the Rubrics, Orders, and Directions for Regulating the Course and Conduct of Public Worship, &c, According to the Use of the United Church of England and Ireland'), +(15027, 'Calvinism -- Controversial literature'), +(15028, 'Stair, John Dalrymple, Earl of, 1648-1707 -- Fiction'), +(15029, 'Saint Louis (Mo.) -- Fiction'), +(15030, 'Women -- Greece -- Poetry'), +(15031, 'Bible. Philippians'), +(15032, 'Nuclear medicine'), +(15033, 'Greeks -- Turkey'), +(15034, 'Khuzistan (Iran) -- Description and travel'), +(15035, 'Redemption'), +(15036, 'American poetry -- Translations into Spanish'), +(15037, 'World War, 1914-1918 -- Armenia'), +(15038, 'Optimism -- Juvenile fiction'), +(15039, 'Bahai Faith -- New Zealand'), +(15040, 'United States -- Social life and customs -- 1865-1918 -- Fiction'), +(15041, 'Caricature -- France -- History'), +(15042, 'Greek language -- Study and teaching'), +(15043, 'Domestic animals -- Juvenile poetry'), +(15044, 'West Indies -- Description and travel -- Early works to 1800'), +(15045, 'Austria -- History -- 1789-1815'), +(15046, 'Steinheil, Marguerite, 1869-1954'), +(15047, 'Werewolves -- Poetry'), +(15048, 'France -- Guidebooks'), +(15049, 'Church architecture -- England'), +(15050, 'England -- Social life and customs -- Juvenile fiction'), +(15051, 'Sauk Indians -- Fiction'), +(15052, 'Koolemans Beynen, L. R. (Laurens Reinhart), 1852-1879'), +(15053, 'Fishing -- New York (State)'), +(15054, 'Irish -- England -- Juvenile fiction'), +(15055, 'Agassiz, Louis, 1807-1873'), +(15056, 'Jews -- Belarus -- Minsk -- Biography'), +(15057, 'Adventure stories, American -- Periodicals'), +(15058, 'Great Britain. Army. Division, 6th'), +(15059, 'Nuts -- Wisconsin'), +(15060, 'Psyche (Greek deity) -- Drama'), +(15061, 'Stoics'), +(15062, 'Queen Charlotte Islands (B.C.)'), +(15063, 'Clifford, Henry de Clifford, 14th lord, 1455?-1523 -- Fiction'), +(15064, 'Women composers -- Biography'), +(15065, 'Landseer, Edwin Henry, Sir, 1802-1873'), +(15066, 'Publishers and publishing -- Hungary'), +(15067, 'Curiosities and wonders'), +(15068, 'False testimony -- Fiction'), +(15069, 'Nautical instruments -- History'), +(15070, 'Denmark -- History -- Erik Glipping, 1259-1286 -- Fiction'), +(15071, 'Great Britain. Royal Navy -- Fiction'), +(15072, 'Bertie, Robert, Lord, 1721-1782'), +(15073, 'Dumas, Alexandre, 1802-1870. Vicomte de Bragelonne'), +(15074, 'East Anglia (England)'), +(15075, 'Shropshire (England) -- Fiction'), +(15076, 'Missouri River -- Juvenile fiction'), +(15077, 'Stars -- Atlases'), +(15078, 'Women -- France -- Drama'), +(15079, 'New South Wales -- History -- Sources'), +(15080, 'Evolution -- Moral and ethical aspects'), +(15081, 'Land tenure -- Ireland'), +(15082, 'Rio de Janeiro (Brazil) -- Fiction'), +(15083, 'Country life -- New Brunswick -- History -- 19th century'), +(15084, 'Andromache (Legendary character) -- Drama'), +(15085, 'Cooking (Cranberries)'), +(15086, 'Art -- New York (State) -- New York -- Catalogs'), +(15087, 'Jungle animals -- Fiction'), +(15088, 'Sins'), +(15089, 'Pyrometry'), +(15090, 'Polish essays -- Translations into English'), +(15091, 'Landlord and tenant -- Fiction'), +(15092, 'Cotton growing -- Brazil -- Early works to 1800'), +(15093, 'Young women -- Education -- Fiction'), +(15094, 'Tipu Sultan, Fath \'Ali, Nawab of Mysore, 1753-1799'), +(15095, 'Cold-frames'), +(15096, 'Vesuvius (Italy) -- Early works to 1800'), +(15097, 'Animal worship -- India'), +(15098, 'Austria -- Foreign relations -- 1740-1780 -- France'), +(15099, 'Bible. Thessalonians -- Criticism, interpretation, etc.'), +(15100, 'Vignettes'), +(15101, 'Tieck, Ludwig, 1773-1853. Leben und Tod der heiligen Genoveva'), +(15102, 'Indian mythology -- North America'), +(15103, 'Poor laws -- Great Britain -- History'), +(15104, 'Church history -- Primitive and early church, ca. 30-600 -- Juvenile fiction'), +(15105, 'Latin America -- Politics and government'), +(15106, 'British -- Africa -- Fiction'), +(15107, 'Women travelers -- England -- Fiction'), +(15108, 'Mormons -- Missouri -- History -- 19th century'), +(15109, 'Domestic drama'), +(15110, 'Charter Oak (Hartford, Conn.)'), +(15111, 'Spain -- Colonies -- America'), +(15112, 'Brittany (France) -- Social life and customs'), +(15113, 'Charities, Medical -- Great Britain'), +(15114, 'Ripon Cathedral'), +(15115, 'Respiratory organs -- Diseases -- Treatment'), +(15116, 'Romance languages -- Dialects'), +(15117, 'Southern States -- Economic conditions'), +(15118, 'Copyright -- Art -- United States -- Catalogs -- Periodicals'), +(15119, 'Fulton Market (New York, N.Y.) -- Juvenile literature'), +(15120, 'Slick, Sam (Fictitious character) -- Fiction'), +(15121, 'Portuguese language -- Slang -- Dictionaries'), +(15122, 'Weather -- Folklore'), +(15123, 'Austrian drama -- 20th century'), +(15124, 'Hungarians -- Turkey'), +(15125, 'Samoyeds'), +(15126, 'Fritchie, Barbara, 1766-1862 -- Juvenile poetry'), +(15127, 'Henry VIII, King of England, 1491-1547 -- Relations with courts and courtiers'), +(15128, 'Bruges (Belgium) -- Fiction'), +(15129, 'Pawnee Indians'), +(15130, 'Courts and courtiers -- Drama'), +(15131, 'Law, Primitive -- Philippines'), +(15132, 'Religion -- Juvenile fiction'), +(15133, 'Egyptian language -- Demotic, ca. 650 B.C.-450 A.D. -- Texts -- Translations into English'), +(15134, 'Furniture industry and trade -- Vocational guidance'), +(15135, 'Technology and civilization'), +(15136, 'Chaucer, Geoffrey, -1400 -- Criticism, Textual'), +(15137, 'Furniss, Harry, 1854-1925'), +(15138, 'Bible. Romans -- Commentaries'), +(15139, 'Fire-eating -- Juvenile fiction'), +(15140, 'Cambodia -- Description and travel'), +(15141, 'Sexual disorders -- Popular works'), +(15142, 'Young women -- Spain -- Fiction'), +(15143, 'Brunehaut, Queen, consort of Sigebert, King of Austrasia, 534-613 -- Poetry'), +(15144, 'Europe -- History -- Fiction'), +(15145, 'Indian captivities -- Illinois -- Fiction'), +(15146, 'Cullingham, Elizabeth, 1812-1840'), +(15147, 'Authors, French -- Biography'), +(15148, 'Maputo (Mozambique)'), +(15149, 'British Columbia -- Gold discoveries -- Juvenile fiction'), +(15150, 'Natural history -- South Africa'), +(15151, 'Asteroids'), +(15152, 'Caesar, Julius -- Assassination -- Drama'), +(15153, 'Library legislation -- Great Britain'), +(15154, 'Caroline, Queen, consort of George IV, King of Great Britain, 1768-1821 -- Poetry'), +(15155, 'Bacteriology'), +(15156, 'Canada. Canadian Army. Battalion Mount-Royal Rifles (65th.)'), +(15157, 'Magic tricks -- Early works to 1800'), +(15158, 'Rome -- History -- Poetry'), +(15159, 'Shays\' Rebellion, 1786-1787 -- Fiction'), +(15160, 'Art, Prehistoric -- France -- Vallon-Pont-d\'Arc'), +(15161, 'France -- History -- Charles VII, 1422-1461 -- Drama'), +(15162, 'World War, 1914-1918 -- Personal narratives, Italian'), +(15163, 'Futurism (Literary movement) -- Italy'), +(15164, 'Cakchikel Indians'), +(15165, 'Appleton family'), +(15166, 'Gaskell, Elizabeth Cleghorn, 1810-1865'), +(15167, 'Alexander, the Great, 356-323 B.C. -- Juvenile literature'), +(15168, 'Germany -- Colonies'), +(15169, 'Great Britain. Army -- Colonial forces -- India -- Juvenile fiction'), +(15170, 'Christian martyrs -- Great Britain -- Biography'), +(15171, 'Exiles -- Russia (Federation) -- Siberia -- Fiction'), +(15172, 'Printers\' marks'), +(15173, 'Forgery -- Juvenile fiction'), +(15174, 'Manchester Cathedral (England)'), +(15175, 'Langley, S. P. (Samuel Pierpont), 1834-1906'), +(15176, 'Witchcraft -- Scotland -- History -- Sources'), +(15177, 'Labor disputes -- Fiction'), +(15178, 'Honeybee'), +(15179, 'Napoleonic Wars, 1800-1815 -- Participation, Mameluke'), +(15180, 'Romanticism -- Germany'), +(15181, 'Shiloh, Battle of, Tenn., 1862'), +(15182, 'Kitchen utensils'), +(15183, 'Ethnology -- Oceania'), +(15184, 'Canadian Invasion, 1775-1776'), +(15185, 'Digby, Kenelm, Sir, 1603-1665'), +(15186, 'Langdon, Roger, 1825-1894'), +(15187, 'Comic, The'), +(15188, 'Woffington, Margaret, -1760 -- Fiction'), +(15189, 'Rutherford, Samuel, 1600?-1661 -- Correspondence'), +(15190, 'Vehicles -- Juvenile literature'), +(15191, 'Natural resources -- United States'), +(15192, 'Polygamy -- Religious aspects'), +(15193, 'Cotton -- Juvenile fiction'), +(15194, 'Legends -- England -- Yorkshire'), +(15195, 'Poetry, Modern -- 20th century'), +(15196, 'Portugal -- Colonies -- Africa'), +(15197, 'Electric transformers -- History'), +(15198, 'Sales personnel -- Drama'), +(15199, 'Divorce -- United States'), +(15200, 'Denmark -- History -- Frederick III, 1648-1670 -- Sources'), +(15201, 'Folklore -- Scotland -- Highlands'), +(15202, 'Socialism and Christianity -- Netherlands'), +(15203, 'Octavia, consort of Nero, Emperor of Rome, approximately 42-62 -- Drama'), +(15204, 'Japanese poetry -- Translations into German'), +(15205, 'Delacroix, Eugène, 1798-1863 -- Diaries'), +(15206, 'Visions -- Fiction'), +(15207, 'Interpersonal attraction -- Fiction'), +(15208, 'Mexican War, 1846-1848 -- Poetry'), +(15209, 'Frame-stories'), +(15210, 'Fear'), +(15211, 'Fort Sumter (Charleston, S.C.) -- History'), +(15212, 'Spouses -- Fiction'), +(15213, 'IBM 360 (Computer)'), +(15214, 'Numantia (Extinct city) -- Drama'), +(15215, 'Birds -- West (U.S.)'), +(15216, 'United States -- Pictorial works'), +(15217, 'Pinos Altos (N.M.) -- History'), +(15218, 'Achievement motivation'), +(15219, 'Hua, Mulan (Legendary character) -- Fiction'), +(15220, 'Klondike River Valley (Yukon) -- Fiction'), +(15221, 'Agricultural laborers -- Fiction'), +(15222, 'Dauthendey, Max, 1867-1918'), +(15223, 'Shakespeare, William, 1564-1616 -- Spurious and doubtful works'), +(15224, 'Cliff-dwellings -- Arizona'), +(15225, 'Assassination'), +(15226, 'Paris (France) -- Juvenile fiction'), +(15227, 'Bagpipe -- Juvenile fiction'), +(15228, 'Tea tax (American colonies)'), +(15229, 'Great Britain -- History -- To 1066 -- Fiction'), +(15230, 'Fabre, Jean-Henri, 1823-1915'), +(15231, 'Children\'s stories, Danish -- Translations into Finnish'), +(15232, 'University of Edinburgh -- Biography'), +(15233, 'Consciousness -- Religious aspects -- Hinduism'), +(15234, 'Wagner, Richard, 1813-1883. Operas'), +(15235, 'Riel, Louis, 1844-1885'), +(15236, 'Japan -- Constitution'), +(15237, 'London (England) -- Social life and customs -- 17th century'), +(15238, 'Hannibal, 247-182 B.C. -- Fiction'), +(15239, 'Toro, Battle of, 1476'), +(15240, 'Political crimes and offenses -- Germany'), +(15241, 'Rogues and vagabonds -- Fiction'), +(15242, 'Lady Augusta (Ship)'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(15243, 'Raleigh, Walter, Sir, 1552?-1618 -- Fiction'), +(15244, 'Peasants -- Norway -- Fiction'), +(15245, 'Angels -- Fiction'), +(15246, 'Shinto'), +(15247, 'Authors, Norwegian -- 19th century -- Correspondence'), +(15248, 'Women journalists'), +(15249, 'Dutch language -- Slang'), +(15250, 'Tramps -- New England'), +(15251, 'French drama -- 17th century -- Translations into Finnish'), +(15252, 'Sermons, American -- 20th century'), +(15253, 'Chivalry -- Early works to 1800'), +(15254, 'Riddles -- Juvenile fiction'), +(15255, 'Black race'), +(15256, 'Islamic decoration and ornament -- Spain'), +(15257, 'Papacy'), +(15258, 'Argentina -- Discovery and exploration'), +(15259, 'Literacy -- Fiction'), +(15260, 'Botanists -- United States -- Correspondence'), +(15261, 'Natural history -- Iowa'), +(15262, 'Danish fiction -- Translations into English'), +(15263, 'Bessemer process'), +(15264, 'Flower vending -- Drama'), +(15265, 'Mahdi, Muhammad Ahmad, 1848-1885'), +(15266, 'Havelok the Dane (Legendary character) -- Romances'), +(15267, 'Château de Coucy (Coucy-le-Château-Auffrique, France)'), +(15268, 'Postal service -- Scotland'), +(15269, 'Greek poetry -- Translations into Swedish'), +(15270, 'Ex-nuns -- Québec (Province) -- Biography'), +(15271, 'South Pacific Ocean -- Fiction'), +(15272, 'Lollards -- Fiction'), +(15273, 'Jesuits -- Missions -- New France -- History -- 17th century'), +(15274, 'Tupper, Martin Farquhar, 1810-1889'), +(15275, 'Jefferson (Tex.) -- History'), +(15276, 'World War, 1939-1945 -- Personal narratives'), +(15277, 'Cancer'), +(15278, 'Dakota Indians -- Missions'), +(15279, 'Rejection (Psychology) -- Drama'), +(15280, 'Indians of North America -- Colorado'), +(15281, 'English poetry -- Early modern, 1500-1700 -- History and criticism'), +(15282, 'Islands of the Baltic -- Fiction'), +(15283, 'Bremen (Germany). Baumwollbörse'), +(15284, 'Bahamas -- Fiction'), +(15285, 'Violets -- Poetry'), +(15286, 'Pomo dance'), +(15287, 'Authors, German -- Biography'), +(15288, 'Hotels'), +(15289, 'World War, 1914-1918 -- Regimental histories -- Scotland'), +(15290, 'Berlin (Germany) -- Description and travel'), +(15291, 'Self-confidence -- Fiction'), +(15292, 'Helena, Saint, approximately 255-approximately 330 -- Legends'), +(15293, 'Ulrich, Duke of Württemberg, 1487-1550 -- Fiction'), +(15294, 'Burne-Jones, Edward Coley, 1833-1898'), +(15295, 'Europeans -- China -- Fiction'), +(15296, 'Sick -- Fiction'), +(15297, 'Civil service -- Fiction'), +(15298, 'French language -- Idioms -- Dictionaries'), +(15299, 'Sihasapa Indians -- Fiction'), +(15300, 'Food -- Analysis'), +(15301, 'Sundials'), +(15302, 'United States -- Politics and government -- 1783-1789'), +(15303, 'Myriapoda'), +(15304, 'Fighter pilots -- France -- Biography'), +(15305, 'Knights and knighthood -- Folklore'), +(15306, 'World War, 1914-1918 -- Naval operations -- Fiction'), +(15307, 'Art, Renaissance'), +(15308, 'Azores'), +(15309, 'Charleston (S.C.) -- History -- Slave Insurrection, 1822'), +(15310, 'Great Britain. Army. Princess Charlotte of Wales\'s Dragoon Guards, 5th'), +(15311, 'Genoa (Italy) -- History -- Sources'), +(15312, 'Whitman, Walt, 1819-1892 -- Criticism and interpretation'), +(15313, 'Australasian Antarctic Expedition (1911-1914)'), +(15314, 'United States -- Social life and customs -- To 1775 -- Fiction'), +(15315, 'Queensland -- Discovery and exploration'), +(15316, 'Women -- Canada'), +(15317, 'Peter I, Emperor of Russia, 1672-1725 -- Drama'), +(15318, 'San Martín, José de, 1778-1850'), +(15319, 'Femmes fatales -- Fiction'), +(15320, 'Nova Scotia -- History -- 1713-1763 -- Fiction'), +(15321, 'Universities and colleges -- Europe'), +(15322, 'Bulgaria'), +(15323, 'Federal government'), +(15324, 'Béarn (France) -- Description and travel'), +(15325, 'Bailén, Battle of, Bailén, Spain, 1808 -- Fiction'), +(15326, 'Fairy tales -- Sweden'), +(15327, 'France -- History -- Henry II, 1547-1559 -- Fiction'), +(15328, 'Rivers'), +(15329, 'Latin America -- Description and travel -- Early works to 1800'), +(15330, 'Boxcar children (Fictitious characters) -- Juvenile fiction'), +(15331, 'Good works (Theology)'), +(15332, 'North Carolina -- Social life and customs'), +(15333, 'Mohave Indians'), +(15334, 'Garonne River (Spain and France) -- Fiction'), +(15335, 'Islamic civilization'), +(15336, 'Cooking, Belgian'), +(15337, 'Carlsbad Caverns National Park (N.M.) -- History'), +(15338, 'Gold miners -- Juvenile fiction'), +(15339, 'Swords -- Japan -- Catalogs'), +(15340, 'Beothuk Indians'), +(15341, 'Airplanes -- Piloting'), +(15342, 'Fortification -- Juvenile fiction'), +(15343, 'Natural history -- Indochina'), +(15344, 'Constitutional law -- Italian Republic (1802-1805)'), +(15345, 'Legends -- Québec (Province)'), +(15346, 'Families -- Russia -- Fiction'), +(15347, 'Muskrat -- Juvenile fiction'), +(15348, 'Wichita (Kan.) -- Pictorial works'), +(15349, 'French language -- Onomatopoeic words -- Dictionaries'), +(15350, 'Spring -- Juvenile fiction'), +(15351, 'Differential equations, Linear'), +(15352, 'Altona (Germany)'), +(15353, 'Pueblo architecture'), +(15354, 'Periodical cicada'), +(15355, 'Butler, Samuel, 1835-1902 -- Bibliography'), +(15356, 'Dryden, John, 1631-1700. Absalom and Achitophel'), +(15357, 'Lucca (Italy) -- History'), +(15358, 'Capitals (Cities) -- Latin America'), +(15359, 'Blincoe, Robert, approximately 1792-'), +(15360, 'Tales, Medieval'), +(15361, 'Diede, Charlotte (Charlotte Hildebrand), 1769-1846'), +(15362, 'Music -- United States -- History and criticism'), +(15363, 'Portugal -- Politics and government -- 1889-1908'), +(15364, 'Cliff-dwellers -- New Mexico'), +(15365, 'Police -- Australia -- Fiction'), +(15366, 'United States. Army. Illinois Infantry Regiment, 125th (1861-1865) -- History'), +(15367, 'Man-woman relationships -- Poetry'), +(15368, 'Stevenson, Robert Louis, 1850-1894 -- Poetry'), +(15369, 'Caricatures and cartoons -- England'), +(15370, 'Novelists, Irish -- 19th century -- Correspondence'), +(15371, 'New York (State) -- History -- 1775-1865 -- Fiction'), +(15372, 'Women authors, French -- History and criticism'), +(15373, 'Saint Elias, Mount (Alaska and Yukon)'), +(15374, 'Landslides -- Germany -- Brannenburg'), +(15375, 'Indians of North America -- Languages -- Glossaries, vocabularies, etc.'), +(15376, 'Magic, Romani'), +(15377, 'Gay, Mary Ann Harris, 1827-'), +(15378, 'Clive, Mrs. (Catherine) 1711-1785'), +(15379, 'Christian pilgrims and pilgrimages -- Juvenile literature'), +(15380, 'Singers'), +(15381, 'London (England) -- Social life and customs -- Pictorial works'), +(15382, 'Great Britain -- Kings and rulers -- Succession -- Early works to 1800'), +(15383, 'Children\'s literature, American'), +(15384, 'World War, 1939-1945 -- Italy -- Juvenile fiction'), +(15385, 'Sarawak (Malaysia) -- Description and travel'), +(15386, 'Meadows -- Juvenile fiction'), +(15387, 'Bahai Faith -- History -- 20th century'), +(15388, 'Afonso II, King of Portugal, 1185-1223'), +(15389, 'Pornography'), +(15390, 'Aeta (Philippine people)'), +(15391, 'Lincoln, Abraham, 1809-1865 -- Quotations'), +(15392, 'Futurism (Art)'), +(15393, 'Puerto Rico -- Description and travel'), +(15394, 'Railroad cars -- Catalogs'), +(15395, 'Women -- France -- 18th century -- Fiction'), +(15396, 'Vieux-Québec (Québec, Québec) -- History'), +(15397, 'Bible. Epistles of Paul -- Prayers'), +(15398, 'Ciaran, Saint, abbot of Clonmacnois'), +(15399, 'Boll weevil'), +(15400, 'Jihad'), +(15401, 'Roby, John, 1793-1850'), +(15402, 'United States -- Relations -- Great Britain'), +(15403, 'Rutledge, Ann, -1835'), +(15404, 'Jemison, Mary, 1743-1833'), +(15405, 'Sealing'), +(15406, 'Physiognomy'), +(15407, 'Freemasonry'), +(15408, 'Therapeutics, Suggestive'), +(15409, 'Church history -- Primitive and early church, ca. 30-600 -- Controversial literature'), +(15410, 'Leatherwork -- Virginia -- Williamsburg'), +(15411, 'Tales -- Africa'), +(15412, 'Indian captivities -- West (U.S.)'), +(15413, 'Wind ensembles, Arranged'), +(15414, 'Great Britain -- Kings and rulers -- Juvenile fiction'), +(15415, 'Aquitaine (France) -- Description and travel'), +(15416, 'Wealth -- Juvenile fiction'), +(15417, 'Pharisees'), +(15418, 'Painting -- China -- History'), +(15419, 'Trapping -- Juvenile fiction'), +(15420, 'New Hampshire -- Biography'), +(15421, 'Authors, American -- Homes and haunts -- Kentucky'), +(15422, 'Exiles -- Russia (Federation) -- Siberia -- History'), +(15423, 'Battles -- England -- Yorkshire'), +(15424, 'Weddings -- Juvenile fiction'), +(15425, 'Instrumentation and orchestration'), +(15426, 'Aegean Sea -- Fiction'), +(15427, 'Benbow, John, 1653?-1702 -- Fiction'), +(15428, 'Swallows -- Anatomy'), +(15429, 'East End (London, England)'), +(15430, 'Hungary -- History -- Matthias, 1458-1490 -- Juvenile fiction'), +(15431, 'Color -- Study and teaching'), +(15432, 'Surgery -- Kentucky -- History'), +(15433, 'Shipping -- Juvenile fiction'), +(15434, 'Africans -- France -- Fiction'), +(15435, 'Norway -- History -- Christian IV, 1588-1648 -- Fiction'), +(15436, 'Portugal -- Emigration and immigration'), +(15437, 'Wine and wine making -- France'), +(15438, 'Bierce, Ambrose, 1842-1914?'), +(15439, 'Law -- Iraq -- Babylonia -- Sources'), +(15440, 'Commercial crimes -- Fiction'), +(15441, 'French Canadians -- Fiction'), +(15442, 'Parrots -- Juvenile fiction'), +(15443, 'Plantation owners\' spouses -- Georgia -- Diaries'), +(15444, 'Giotto, 1266?-1337'), +(15445, 'Canals'), +(15446, 'Drinking customs -- United States'), +(15447, 'Religious thought -- 16th century -- Fiction'), +(15448, 'Hygiene -- Popular works'), +(15449, 'Frontier and pioneer life -- South Dakota'), +(15450, 'Argonauts (Greek mythology) -- Juvenile literature'), +(15451, 'Sweden -- Description and travel'), +(15452, 'Alcestis, Queen, consort of Admetus, King of Pherae -- Drama'), +(15453, 'Toys -- Catalogs'), +(15454, 'Dance -- Moral and ethical aspects'), +(15455, 'Fables, Irish'), +(15456, 'Journalists -- United States -- Fiction'), +(15457, 'Blind -- Institutional care -- England'), +(15458, 'Businessmen -- New York (State) -- New York -- Biography'), +(15459, 'Women and socialism'), +(15460, 'Stel, Willem Adriaan van der, 1664-1733'), +(15461, 'Washington (D.C.) -- History'), +(15462, 'Finnish poetry (Swedish)'), +(15463, 'Portugal -- History -- Miguel I, 1828-1834 -- Fiction'), +(15464, 'Ethics, Ancient'), +(15465, 'Safaris -- Congo (Democratic Republic) -- Fiction'), +(15466, 'Medicinal plants -- United States'), +(15467, 'Massachuset language -- Glossaries, vocabularies, etc. -- Early works to 1800'), +(15468, 'Expedition of the Thousand, Italy, 1860 -- Personal narratives'), +(15469, 'Teruel (Spain)'), +(15470, 'Latin America -- History -- Outlines, syllabi, etc.'), +(15471, 'Embryology'), +(15472, 'Coal mines and mining -- Pennsylvania -- Fiction'), +(15473, 'Omens'), +(15474, 'German language -- Readers -- Science'), +(15475, 'New Shakspere Society (Great Britain)'), +(15476, 'Hahnemann, Samuel, 1755-1843'), +(15477, 'Stevenson, Robert Louis, 1850-1894 -- Quotations'), +(15478, 'Jesuits'), +(15479, 'Europe -- Biography'), +(15480, 'Extortion'), +(15481, 'Kings and rulers -- Biography'), +(15482, 'Scott, Walter, 1771-1832. Waverley novels -- Illustrations'), +(15483, 'China -- History -- Republic, 1912-1949'), +(15484, 'Sontag, Henriette, 1806-1854'), +(15485, 'Hyla proboscidea'), +(15486, 'Germany -- Foreign relations -- Great Britain'), +(15487, 'Li, Bai, 701-762'), +(15488, 'Oliveira Martins, J. P. (Joaquim Pedro), 1845-1894'), +(15489, 'Government publications -- United States -- Bibliography'), +(15490, 'Tuberculosis -- Fiction'), +(15491, 'Lincoln, Abraham, 1809-1865 -- Oratory'), +(15492, 'Finance -- Guernsey'), +(15493, 'Wales, South -- Description and travel'), +(15494, 'Manual training'), +(15495, 'Currency question'), +(15496, 'Wyoming -- Social life and customs -- Juvenile fiction'), +(15497, 'Women -- Education (Higher)'), +(15498, 'Dogs -- Juvenile poetry'), +(15499, 'Generals -- Rome -- Drama'), +(15500, 'Great Britain -- Colonies -- Africa'), +(15501, 'San Gimignano (Italy) -- History'), +(15502, 'Samaritan woman (Biblical figure) -- Drama'), +(15503, 'Antisemitism -- France -- History -- 19th century'), +(15504, 'Longueville, Anne Geneviève de Bourbon-Condé, duchesse de, 1619-1679'), +(15505, 'Women -- India -- Conduct of life'), +(15506, 'Romance literature'), +(15507, 'Krohn, Julius, 1835-1888'), +(15508, 'Names'), +(15509, 'Indians of North America -- New York (State) -- Fiction'), +(15510, 'Bosco, Giovanni, Saint, 1815-1888'), +(15511, 'Alberta -- Juvenile fiction'), +(15512, 'Shelley, Percy Bysshe, 1792-1822 -- Political and social views'), +(15513, 'Cabbage'), +(15514, 'Armed Forces -- Prayers and devotions'), +(15515, 'Morvan (France)'), +(15516, 'Glaciers -- France -- Savoie'), +(15517, 'Mackenzie, A. R. D. (Alfred Robert Davidson), 1835-'), +(15518, 'Kielland, Alexander Lange, 1849-1906 -- Translations into English'), +(15519, 'Funeral orations'), +(15520, 'United States -- Politics and government -- 1865-1933'), +(15521, 'Architecture, Islamic'), +(15522, 'Physicians -- Great Britain -- Biography'), +(15523, 'Mushroom culture'), +(15524, 'Imagination -- Juvenile fiction'), +(15525, 'Jews -- England -- London -- Fiction'), +(15526, 'Symbolism in literature'), +(15527, 'Rome -- History -- Empire, 284-476'), +(15528, 'Animals in the Bible'), +(15529, 'Charles II, King of England, 1630-1685 -- Fiction'), +(15530, 'Vicksburg (Miss.) -- History -- Siege, 1863 -- Juvenile fiction'), +(15531, 'China -- Anecdotes'), +(15532, 'Trdina, Janez, 1830-1905'), +(15533, 'Herschel, William, Sir, 1738-1822'), +(15534, 'Wagner, Richard, 1813-1883 -- Criticism and interpretation'), +(15535, 'Genealogy'), +(15536, 'Church property'), +(15537, 'Bullfighters -- Fiction'), +(15538, 'Gardening -- ​Colorado -- ​Periodicals'), +(15539, 'Socialism -- France'), +(15540, 'Clubs -- Juvenile fiction'), +(15541, 'Isabella I, Queen of Spain, 1451-1504'), +(15542, 'Pacific Ocean'), +(15543, 'Loeben, Otto Heinrich, Graf von, 1786-1825'), +(15544, 'Teenage boys -- England -- Fiction'), +(15545, 'Welsh literature -- History and criticism'), +(15546, 'Detroit (Mich.) -- Fiction'), +(15547, 'Cartography'), +(15548, 'Sports in art'), +(15549, 'Prague (Czech Republic) -- History'), +(15550, 'Explorers -- Australia'), +(15551, 'Mausoleum of Theodoric (Ravenna, Italy)'), +(15552, 'Human experimentation in medicine -- Fiction'), +(15553, 'Authors, Russian -- 19th century -- Biography'), +(15554, 'Singers -- Juvenile fiction'), +(15555, 'Jewish literature'), +(15556, 'Elgar, Edward, 1857-1934'), +(15557, 'Values -- Juvenile fiction'), +(15558, 'Slaves -- Emancipation -- West Indies, British'), +(15559, 'Patriotic poetry, English'), +(15560, 'Scalds and scaldic poetry'), +(15561, 'Cellulose'), +(15562, 'Berry (France) -- Description and travel'), +(15563, 'United States. Army. New Jersey Infantry Regiment, 15th (1862-1865)'), +(15564, 'Kropotkin, Petr Alekseevich, kniaz\', 1842-1921'), +(15565, 'Textbooks -- United States'), +(15566, 'Gladiolus'), +(15567, 'Physiology -- Study and teaching'), +(15568, 'Courtesans -- Great Britain -- Biography'), +(15569, 'Wallace, Alfred Russel, 1823-1913 -- Travel -- Malay Archipelago'), +(15570, 'Fishes, Fossil'), +(15571, 'Guernsey (Channel Islands) -- Guidebooks'), +(15572, 'Bible -- Geography -- Maps'), +(15573, 'Globes'), +(15574, 'God (Christianity) -- Wisdom'), +(15575, 'Rome (Italy) -- Antiquities'), +(15576, 'Austria -- Juvenile fiction'), +(15577, 'Bora Indians'), +(15578, 'Somerset (England) -- Guidebooks'), +(15579, 'Pacifism'), +(15580, 'Children -- Australia -- Juvenile literature'), +(15581, 'Great Britain -- History -- James III, 1701-1766 -- Fiction'), +(15582, 'Woodhall Spa (England)'), +(15583, 'Chester (England) -- Pictorial works'), +(15584, 'Periodic law'), +(15585, 'Catholic Church -- England -- History -- 19th century'), +(15586, 'Mormon pioneers -- Utah -- Biography'), +(15587, 'Older people -- Fiction'), +(15588, 'Blasco Ibáñez, Vicente, 1867-1928 -- Criticism and interpretation'), +(15589, 'Personality'), +(15590, 'Judicial process'), +(15591, 'Seville (Spain) -- Social life and customs'), +(15592, 'Epic poetry -- History and criticism'), +(15593, 'Fruit -- Preservation -- United States'), +(15594, 'Last words'), +(15595, 'Palestine -- History -- To 70 A.D. -- Fiction'), +(15596, 'Scotland -- Pictorial works'), +(15597, 'Exiles -- Australia -- New South Wales'), +(15598, 'Newspapers -- History'), +(15599, 'Wallis Islands (Wallis and Futuna Islands) -- Description and travel'), +(15600, 'Mohawk River Valley (N.Y.) -- Fiction'), +(15601, 'Art criticism'), +(15602, 'Balzac, Honoré de, Madame, approximately 1800-1881 or 1882 -- Correspondence'), +(15603, 'Criticism -- Great Britain -- History -- 16th century'), +(15604, 'Inquisition -- Fiction'), +(15605, 'Castles -- Great Britain'), +(15606, 'Rain-making'), +(15607, 'Gleichen, Charles Henri, baron de, 1733-1807'), +(15608, 'Jews -- History -- 586 B.C.-70 A.D. -- Fiction'), +(15609, 'Water birds -- Juvenile literature'), +(15610, 'Latin America'), +(15611, 'United States. President (1861-1865 : Lincoln). Emancipation Proclamation'), +(15612, 'Calcutta (India) -- Description and travel'), +(15613, 'Scandinavians -- England'), +(15614, 'United States -- History -- 1901-1953'), +(15615, 'Unemployed -- Great Britain'), +(15616, 'Kansas Territory. Constitutional Convention (1859)'), +(15617, 'Missouri -- History -- Civil War, 1861-1865 -- Juvenile fiction'), +(15618, 'Proverbs, Swedish'), +(15619, 'Kalmyks -- Folklore'), +(15620, 'Ranching -- California -- Fiction'), +(15621, 'Tecumseh, Shawnee chief, 1768-1813'), +(15622, 'Experimental fiction, American'), +(15623, 'United States. Army. New Jersey Infantry Regiment, 14th (1862-1865)'), +(15624, 'Rare books -- Connecticut -- New Haven -- Bibliography -- Catalogs'), +(15625, 'Thebes (Greece) -- Drama'), +(15626, 'Frederick Henry, Prince of Orange, 1584-1647 -- Contemporaries -- Biography'), +(15627, 'Cervantes Saavedra, Miguel de, 1547-1616. Don Quixote'), +(15628, 'Sports -- Juvenile literature'), +(15629, 'Megalithic monuments -- Great Britain'), +(15630, 'Maryland -- History -- Civil War, 1861-1865'), +(15631, 'Lee, Robert E. (Robert Edward), 1807-1870'), +(15632, 'Fables, Spanish'), +(15633, 'Plants -- Pacific Ocean'), +(15634, 'Franklin, Battle of, Franklin, Tenn., 1864'), +(15635, 'New York (State) -- History -- Fiction'), +(15636, 'Furniture, Mission -- Design and construction'), +(15637, 'Animals, Mythical -- Fiction'), +(15638, 'Old age -- Early works to 1800'), +(15639, 'American-Irish Historical Society -- Periodicals'), +(15640, 'Bank robberies -- Minnesota -- Northfield -- History -- 19th century'), +(15641, 'Geology -- Early works to 1800'), +(15642, 'Frogs -- Mexico'), +(15643, 'Queensland -- Fiction'), +(15644, 'Mayow, Mayow Wynell, 1810-1895. Eight sermons on the priesthood, altar, and sacrifice'), +(15645, 'Bible. Numbers'), +(15646, 'Women and literature -- Greece'), +(15647, 'Walden Woods (Mass.) -- Social life and customs'), +(15648, 'Hawthorne, Nathaniel, 1804-1864 -- Homes and haunts -- England'), +(15649, 'Nelson, Horatio Nelson, Viscount, 1758-1805 -- Military leadership'), +(15650, 'Shakespeare, William, 1564-1616 -- Authorship -- Marlowe theory'), +(15651, 'Abduction -- Fiction'), +(15652, 'Diagnosis, Laboratory'), +(15653, 'Radioactive fallout'), +(15654, 'Rouen (France) -- Guidebooks'), +(15655, 'Conscience, Hendrik, 1812-1883'), +(15656, 'Jacobite Rebellion, 1745-1746 -- Fiction'), +(15657, 'Cameron, Agnes Deans, 1865-1912 -- Travel -- Northwest, Canadian'), +(15658, 'Children -- Korea -- Juvenile literature'), +(15659, 'South Africa -- Description and travel -- Juvenile fiction'), +(15660, 'Pigeons'), +(15661, 'Literary landmarks -- England -- Devon'), +(15662, 'Soldiers -- India -- Conduct of life'), +(15663, 'Guilds -- England -- London -- History'), +(15664, 'Maori language -- Grammar'), +(15665, 'Chilean fiction'), +(15666, 'Robinson, William, 1840-1921'), +(15667, 'Poole, Sophia Lane, 1804-1891 -- Travel -- Egypt'), +(15668, 'Scottish drama -- 18th century'), +(15669, 'Canada -- Emigration and immigration -- Fiction'), +(15670, 'Huygens, Constantijn, 1596-1687 -- Homes and haunts -- Netherlands -- Voorburg -- Poetry'), +(15671, 'Bushrangers -- Australia -- Queensland'), +(15672, 'World War, 1914-1918 -- Art and the war'), +(15673, 'Syphilis'), +(15674, 'North America'), +(15675, 'Cattle -- Juvenile fiction'), +(15676, 'Cerro y Zamudio, José Santiago'), +(15677, 'Hartford (Conn.) -- Biography'), +(15678, 'Women -- Suffrage -- Great Britain -- Drama'), +(15679, 'City walls -- Turkey -- Istanbul -- History'), +(15680, 'Watercolor painting, British'), +(15681, 'British -- Armenia -- Fiction'), +(15682, 'Folklore -- France -- Lorraine'), +(15683, 'Welsh poetry'), +(15684, 'Herbart, Johann Friedrich, 1776-1841'), +(15685, 'Parks -- Massachusetts -- Boston'), +(15686, 'Gowrie Conspiracy, 1600'), +(15687, 'American literature -- Wisconsin'), +(15688, 'Fasting'), +(15689, 'Bible. Zechariah -- Commentaries'), +(15690, 'Taverns (Inns) -- Massachusetts -- Boston'), +(15691, 'Burial, Premature'), +(15692, 'Great Britain -- History -- Barons\' War, 1263-1267 -- Juvenile fiction'), +(15693, 'Press agents -- Fiction'), +(15694, 'Piano trios'), +(15695, 'Naples (Italy) -- Fiction'), +(15696, 'Jerusalem -- History -- Fiction'), +(15697, 'Bunker Hill, Battle of, Boston, Mass., 1775 -- Juvenile fiction'), +(15698, 'Folk literature -- Themes, motives'), +(15699, 'Authors -- Juvenile fiction'), +(15700, 'Self-perception -- Juvenile fiction'), +(15701, 'Neuralgia'), +(15702, 'Americans -- Mexico -- Juvenile fiction'), +(15703, 'War neuroses'), +(15704, 'Olive'), +(15705, 'Barbados -- Fiction'), +(15706, 'British -- Italy -- Venice -- Juvenile fiction'), +(15707, 'Journalists -- Kentucky -- Biography'), +(15708, 'Sea stories, French'), +(15709, 'Rhine River Valley -- Description and travel'), +(15710, 'Seaplanes -- Juvenile fiction'), +(15711, 'Trumpet with orchestra'), +(15712, 'Clergy -- Legal status, laws, etc. -- Great Britain'), +(15713, 'Napoleon I, Emperor of the French, 1769-1821 -- Portraits, caricatures, etc.'), +(15714, 'Marriage -- Gift books'), +(15715, 'Assassins (Ismailites)'), +(15716, 'Ornate box turtle'), +(15717, 'Serbia'), +(15718, 'Plants -- Abnormalities'), +(15719, 'Longevity'), +(15720, 'Charities -- New York (State) -- New York'), +(15721, 'United States Military Academy -- Poetry'), +(15722, 'France -- Politics and government -- 1789-1900 -- Fiction'), +(15723, 'Scott, Robert Falcon, 1868-1912'), +(15724, 'Tobacco industry'), +(15725, 'Organists -- Juvenile fiction'), +(15726, 'Philippines -- History -- 1898-1946 -- Drama'), +(15727, 'Young men -- Psychology -- Fiction'), +(15728, 'Zarzuelas -- Librettos'), +(15729, 'Fisheries -- Great Britain'), +(15730, 'Auvergne (France) -- Description and travel'), +(15731, 'Freshwater fishes -- Kansas -- Population dynamics -- Stocks'), +(15732, 'Northwestern States -- Fiction'), +(15733, 'Prison riots -- Fiction'), +(15734, 'Camões, Luís de, 1524?-1580'), +(15735, 'Philosophy -- Poetry'), +(15736, 'Women -- History -- 19th century'), +(15737, 'Europe -- History -- 476-1492 -- Sources'), +(15738, 'Vaudeville -- Fiction'), +(15739, 'Cleveland (Ohio) -- Biography'), +(15740, 'Patent medicines -- United States'), +(15741, 'Fernando I, King of Portugal, 1345-1383'), +(15742, 'Poets, Scottish -- 18th century -- Biography'), +(15743, 'England -- Literary collections'), +(15744, 'Soldiers\' monuments'), +(15745, 'Sleep disorders'), +(15746, 'Christ Church Cathedral (Oxford, England)'), +(15747, 'Folklore -- China'), +(15748, 'Borrow, George, 1803-1881 -- Correspondence'), +(15749, 'Philippines -- History -- Fiction'), +(15750, 'Bookbinding -- History'), +(15751, 'Medical colleges -- Alumni and alumnae -- Maryland -- Baltimore -- Periodicals'), +(15752, 'Leadership'), +(15753, 'Roscoe, Henry E. (Henry Enfield), 1833-1915'), +(15754, 'Cooking (Lemons)'), +(15755, 'Military prisons'), +(15756, 'Glen Canyon Dam (Ariz.)'), +(15757, 'Suffragists -- United States -- Songs and music -- Texts'), +(15758, 'Tottenham (London, England)'), +(15759, 'Plant hybridization'), +(15760, 'Target practice'), +(15761, 'Bible. New Testament. Greek'), +(15762, 'Lyctidae'), +(15763, 'Railroads -- Grades'), +(15764, 'Fishing -- Early works to 1800'), +(15765, 'Victoria (B.C.)'), +(15766, 'Jews -- Russia -- Politics and government'), +(15767, 'North Holland (Netherlands)'), +(15768, 'Presbyterianism'), +(15769, 'Fort Michilimackinac (Mackinaw City, Mich.)'), +(15770, 'English poetry -- Translations from German'), +(15771, 'Socialism -- Philosophy -- History'), +(15772, 'Chinese -- Juvenile fiction'), +(15773, 'French poetry -- 18th century'), +(15774, 'Bees -- Guyana -- Bartica Region -- Classification'), +(15775, 'Gold miners -- Fiction'), +(15776, 'Captive wild animals -- Juvenile fiction'), +(15777, 'Pottery -- Spain -- History'), +(15778, 'African American abolitionists -- Biography'), +(15779, 'Puccini, Giacomo, 1858-1924'), +(15780, 'Pampas (Argentina)'), +(15781, 'Venom -- Physiological effect'), +(15782, 'Spain -- History -- Ferdinand and Isabella, 1479-1516 -- Fiction'), +(15783, 'Home economics -- Equipment and supplies'), +(15784, 'Catholic Church -- Catechisms'), +(15785, 'Dantès, Edmond (Fictitious character) -- Fiction'), +(15786, 'Coaching (Transportation) -- England'), +(15787, 'Farms -- Finland'), +(15788, 'Luther, Martin, 1483-1546 -- Criticism and interpretation'), +(15789, 'World War, 1914-1918 -- Russia'), +(15790, 'Animal training'), +(15791, 'Bolton, Bill (Fictitious character) -- Juvenile fiction'), +(15792, 'Dickens, Charles, 1812-1870 -- Correspondence'), +(15793, 'Metal-work -- Collectors and collecting'), +(15794, 'Apollonius, of Tyana'), +(15795, 'Plants -- Finland'), +(15796, 'Phonograph'), +(15797, 'Growth (Plants)'), +(15798, 'Carvalhal, Alvaro do -- Correspondence'), +(15799, 'Guinea, Gulf of -- Fiction'), +(15800, 'Alaska -- Poetry'), +(15801, 'Congo River -- Description and travel'), +(15802, 'Distillation'), +(15803, 'Petroleum industry and trade -- North America -- History'), +(15804, 'Australians -- England -- Fiction'), +(15805, 'Vases, Greek'), +(15806, 'Earthwork'), +(15807, 'Liquids'), +(15808, 'White, Andrew Dickson, 1832-1918'), +(15809, 'Witchcraft -- Scotland'), +(15810, 'Slave trade -- Juvenile fiction'), +(15811, 'Pen drawing'), +(15812, 'Halloween -- Poetry'), +(15813, 'Frontier and pioneer life -- Northwestern States'), +(15814, 'Arranged marriage -- Fiction'), +(15815, 'Book industries and trade -- Fiction'), +(15816, 'Australia -- Social life and customs -- 1788-1900'), +(15817, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- New York Infantry -- 22nd'), +(15818, 'Courts and courtiers -- Juvenile fiction'), +(15819, 'Stone age'), +(15820, 'Bassompierre, François de, 1579-1646'), +(15821, 'Maputo (Mozambique : Province)'), +(15822, 'John, the Apostle, Saint'), +(15823, 'Horses -- Juvenile poetry'), +(15824, 'Slaves -- South Carolina -- Biography'), +(15825, 'Children\'s gardens'), +(15826, 'Madras (India)'), +(15827, 'Voyeurism -- Fiction'), +(15828, 'New Jersey -- History -- Colonial period, ca. 1600-1775'), +(15829, 'Guiney, Louise Imogen, 1861-1920'), +(15830, 'Ticonderoga (N.Y.) -- History -- French and Indian War, 1754-1763 -- Fiction'), +(15831, 'Caves -- Black Hills (S.D. and Wyo.)'), +(15832, 'Demographic surveys -- Fiction'), +(15833, 'Cyprinidae'), +(15834, 'Texas -- Biography'), +(15835, 'Weininger, Otto, 1880-1903'), +(15836, 'Brazil -- Discovery and exploration'), +(15837, 'Songs, Neapolitan -- Instrumental settings'), +(15838, 'Dominica -- Description and travel'), +(15839, 'Nightmares -- Physiological aspects -- Early works to 1800'), +(15840, 'Mammals -- Michigan -- Ontonagon County'), +(15841, 'Great Britain -- Politics and government -- 1702-1714'), +(15842, 'Brewing industry -- United States'), +(15843, 'Sierra Nevada (Calif. and Nev.) -- Description and travel -- Juvenile fiction'), +(15844, 'Automobiles'), +(15845, 'Deer -- Minnesota'), +(15846, 'Spanish Succession, War of, 1701-1714 -- Fiction'), +(15847, 'Copyright licenses -- United States'), +(15848, 'Bonaparte family'), +(15849, 'Paris (France) -- History -- 19th century -- Fiction'), +(15850, 'Washington (State) -- Fiction'), +(15851, 'Athanasius, Saint, Patriarch of Alexandria, -373'), +(15852, 'Black bear -- Folklore'), +(15853, 'Minstrel shows -- Songs and music'), +(15854, 'Games -- Great Britain'), +(15855, 'Birds -- Louisiana'), +(15856, 'Zulu War, 1879'), +(15857, 'Romani poetry'), +(15858, 'Identity (Philosophical concept) -- Juvenile fiction'), +(15859, 'China -- History -- Three kingdoms, 220-265'), +(15860, 'Great Britain. Royal Naval Artillery Volunteers'), +(15861, 'Lead'), +(15862, 'World War, 1914-1918 -- Territorial questions -- Ukraine'), +(15863, 'Roe, Edward Payson, 1838-1888'), +(15864, 'Steam-boilers -- Testing'), +(15865, 'Paper-cutting machines'), +(15866, 'Village communities -- Great Britain'), +(15867, 'Greek drama (Tragedy) -- Translations into English'), +(15868, 'Foxes -- Juvenile poetry'), +(15869, 'Cuba -- History -- Revolution, 1895-1898 -- Personal narratives, American'), +(15870, 'Christian life -- Congregational authors'), +(15871, 'Hilary, Saint, Bishop of Poitiers, -367? -- Correspondence'), +(15872, 'Terra Nova (Ship)'), +(15873, 'Elgin (Ont. : County) -- History'), +(15874, 'Montana -- Fiction'), +(15875, 'Highlands (Scotland) -- Juvenile fiction'), +(15876, 'Change -- Religious aspects -- Fiction'), +(15877, 'Mutsun dialect -- Grammar'), +(15878, 'Auditions'), +(15879, 'Greece -- Drama'), +(15880, 'Wright, Orville, 1871-1948'), +(15881, 'Philippine languages -- Alphabets'), +(15882, 'Willoughby, Hugh, Sir, -1554'), +(15883, 'Cromwell, Thomas, Earl of Essex, 1485?-1540 -- Drama'), +(15884, 'Working class families -- Fiction'), +(15885, 'Missions -- Eastern churches'), +(15886, 'Passover'), +(15887, 'Dante Alighieri, 1265-1321. Inferno'), +(15888, 'Codex Dresdensis Maya'), +(15889, 'Archaeology -- Juvenile literature'), +(15890, 'Sociology, Rural'), +(15891, 'Manufacturing industries -- Great Britain'), +(15892, 'Tutors and tutoring -- Juvenile fiction'), +(15893, 'South African War, 1899-1902 -- Periodicals'), +(15894, 'Unionism (Irish politics)'), +(15895, 'Turkey -- Description and travel -- Early works to 1800'), +(15896, 'Panama -- Juvenile fiction'), +(15897, 'Paper dolls'), +(15898, 'Game and game-birds'), +(15899, 'Chinese in literature'), +(15900, 'Italy -- History -- Sources'), +(15901, 'Latin Empire, 1204-1261'), +(15902, 'Jestbooks, English'), +(15903, 'Shakespeare, William, 1564-1616 -- Childhood and youth -- Juvenile fiction'), +(15904, 'Inventions -- History -- 19th century'), +(15905, 'Brunanburh, Battle of, 937 -- Poetry'), +(15906, 'Universities and colleges -- Europe -- History'), +(15907, 'Chalmers, Thomas, 1780-1847'), +(15908, 'Abenaki Indians -- Treaties'), +(15909, 'Dryden, John, 1631-1700'), +(15910, 'Epping Forest (England : Forest)'), +(15911, 'Diseases -- Causes and theories of causation'), +(15912, 'Wire rope'), +(15913, 'Pocket mice'), +(15914, 'Loti, Pierre, 1850-1923 -- Fiction'), +(15915, 'Fís Adamnáin'), +(15916, 'Africa -- Colonization'), +(15917, 'Shakespeare, William, 1564-1616 -- Bibliography -- Catalogs'), +(15918, 'Leander (Greek mythology) -- Poetry'), +(15919, 'Traffic fatalities -- Fiction'), +(15920, 'Santa Claus -- Juvenile poetry'), +(15921, 'English -- Italy -- Fiction'), +(15922, 'Tristan (Legendary character) -- Drama'), +(15923, 'Women -- Suffrage -- Australia'), +(15924, 'Moral conditions'), +(15925, 'Obelisks'), +(15926, 'Vatican City -- Description and travel'), +(15927, 'Catullus, Gaius Valerius -- Translations into English'), +(15928, 'Children\'s stories, Scandinavian'), +(15929, 'Political science -- Great Britain -- History'), +(15930, 'Royal National Life-Boat Institution for the Preservation of Life from Shipwreck (Great Britain) -- Juvenile fiction'), +(15931, 'Chad, Lake -- Description and travel'), +(15932, 'Small cities -- Social life and customs -- Fiction'), +(15933, 'Greek drama (Tragedy) -- Stories, plots, etc.'), +(15934, 'Brinvilliers, Marie-Madeleine Gobelin, marquise de, 1630-1676 -- Fiction'), +(15935, 'Messina (Italy) -- Drama'), +(15936, 'Gossip -- Fiction'), +(15937, 'Birds -- Maine -- Periodicals'), +(15938, 'Automobiles -- Anecdotes'), +(15939, 'Socialists -- Fiction'), +(15940, 'Breckinridge, John C. (John Cabell), 1821-1875'), +(15941, 'Chorales'), +(15942, 'Epic poetry -- Adaptations'), +(15943, 'Jinn -- Juvenile fiction'), +(15944, 'Acadians'), +(15945, 'Great Britain -- History -- Elizabeth, 1558-1603 -- Juvenile fiction'), +(15946, 'Berlioz, Hector, 1803-1869 -- Correspondence'), +(15947, 'Lawyers -- Fiction'), +(15948, 'Negrillos'), +(15949, 'Science -- Early works to 1800'), +(15950, 'Rossini, Gioacchino, 1792-1868'), +(15951, 'Suez Canal (Egypt) -- History'), +(15952, 'Grape juice'), +(15953, 'Education and state'), +(15954, 'Music -- To 500 -- History and criticism'), +(15955, 'Erotic literature -- History and criticism'), +(15956, 'Peasants -- Mexico -- Juvenile fiction'), +(15957, 'Peanuts'), +(15958, 'Granada (Spain) -- History -- Siege, 1491-1492 -- Fiction'), +(15959, 'Astronomy -- Amateurs\' manuals'), +(15960, 'Children -- Russia (Federation) -- Siberia -- Juvenile literature'), +(15961, 'Herschel, Caroline Lucretia, 1750-1848'), +(15962, 'Indian mythology -- Bolivia'), +(15963, 'Finches'), +(15964, 'Fairy tales -- Poland'), +(15965, 'Hospitals -- Maternity services'), +(15966, 'Indians of North America -- Missouri River Valley'), +(15967, 'Education -- Netherlands'), +(15968, 'Korea -- History'), +(15969, 'Africa, North -- History'), +(15970, 'Argentina -- History -- War of Independence, 1810-1817'), +(15971, 'Mammals -- Southwest, New'), +(15972, 'Gunnery'), +(15973, 'Mormons -- Michigan'), +(15974, 'New York (State) -- Politics and government -- 1775-1865'), +(15975, 'Women -- Societies and clubs -- History'), +(15976, 'Peterborough Cathedral -- Guidebooks'), +(15977, 'Korean language -- Dictionaries -- English'), +(15978, 'George Washington Birthplace National Monument (Va.)'), +(15979, 'Photography -- Periodicals'), +(15980, 'Railroads -- Canada'), +(15981, 'Brampton, Henry Hawkins, Baron, 1817-1907'), +(15982, 'Greece -- Civilization -- To 146 B.C.'), +(15983, 'Château de Vaux-le-Vicomte (Maincy, France)'), +(15984, 'Du Maurier, George, 1834-1896'), +(15985, 'South African War, 1899-1902 -- Concentration camps -- South Africa -- Personal narrativies'), +(15986, 'United States -- History -- Queen Anne\'s War, 1702-1713'), +(15987, 'New York (N.Y.) -- Biography'), +(15988, 'Catholics -- Minnesota'), +(15989, 'Civilization, Celtic'), +(15990, 'American poetry -- Southern States'), +(15991, 'Trees -- Indiana'), +(15992, 'Uruguay'), +(15993, 'Bacon, Francis, 1561-1626 -- Cipher'), +(15994, 'Pastry -- Early works to 1800'), +(15995, 'British -- India'), +(15996, 'Pedro I, King of Portugal, 1320-1367'), +(15997, 'Lime -- Early works to 1800'), +(15998, 'License system -- Great Britain'), +(15999, 'Tadpoles'), +(16000, 'Cooking -- Bibliography'), +(16001, 'Skeleton'), +(16002, 'Warwick (England) -- Description and travel'), +(16003, 'Dutch -- Philippines'), +(16004, 'Education -- China'), +(16005, 'Cotton weaving'), +(16006, 'Construction industry -- Fiction'), +(16007, 'Bluebeard (Legendary character) -- Fiction'), +(16008, 'India -- History, Military'), +(16009, 'United States -- History -- Civil War, 1861-1865 -- Blockades -- Fiction'), +(16010, 'Bocage, Manuel Maria Barbosa du, 1765-1805 -- Poetry'), +(16011, 'Speeches, addresses, etc., Latin -- Translations into English'), +(16012, 'United States. Marine Corps. Marine Raider Regiment, 1st -- History'), +(16013, 'Eads, James Buchanan, 1820-1887'), +(16014, 'Finnish wit and humor'), +(16015, 'Philippines -- History -- Revolution, 1896-1898 -- Fiction'), +(16016, 'Sailboats -- Juvenile fiction'), +(16017, 'Didactic poetry, Latin -- Translations into Greek'), +(16018, 'Juniata River Valley (Pa.) -- Genealogy'), +(16019, 'Styria (Austria) -- Description and travel'), +(16020, 'Gronniosaw, James Albert Ukawsaw'), +(16021, 'French literature -- 17th century'), +(16022, 'Hunting -- Juvenile poetry'), +(16023, 'Folklorists -- Finland -- Correspondence'), +(16024, 'Ingoldsby, Thomas, 1788-1845. Ingoldsby legends'), +(16025, 'Apache Indians -- Wars'), +(16026, 'Mississippi -- Biography'), +(16027, 'Comparative literature -- Greek and modern'), +(16028, 'Political ethics'), +(16029, 'Short stories, English -- Translations into Finnish'), +(16030, 'Indochina -- Social life and customs'), +(16031, 'Holy Week sermons'), +(16032, 'Nonviolence'), +(16033, 'Venice (Italy) -- Pictorial works'), +(16034, 'Whitman, Elizabeth, 1752-1788 -- Fiction'), +(16035, 'Children\'s stories, Spanish'), +(16036, 'French drama (Comedy)'), +(16037, 'Germany -- Juvenile fiction'), +(16038, 'Glass manufacture -- History'), +(16039, 'African Americans -- Migrations -- History'), +(16040, 'Sex customs -- History'), +(16041, 'Bible. Pentateuch -- Commentaries'), +(16042, 'Dorr, David F. -- Travel -- Europe'), +(16043, 'Bardsey Island (Wales) -- Poetry'), +(16044, 'Europe -- Juvenile fiction'), +(16045, 'Arab countries -- Fiction'), +(16046, 'Self-sacrifice -- Fiction'), +(16047, 'Gulf Coast (Ala.) -- Juvenile fiction'), +(16048, 'Rome (Italy) -- History -- 1798-1870'), +(16049, 'Technology -- Dictionaries'), +(16050, 'Catholic Church -- History'), +(16051, 'One-act plays'), +(16052, 'Empress of Ireland (Steamship)'), +(16053, 'Russo-Swedish War, 1808-1809'), +(16054, 'Education -- Germany -- Fiction'), +(16055, 'Maori language -- Influence on English -- Dictionaries'), +(16056, 'Sweden -- History -- Gustav I Vasa, 1523-1560 -- Fiction'), +(16057, 'Tristan da Cunha -- Description and travel'), +(16058, 'Newark (N.J.) -- History'), +(16059, 'Theology, Doctrinal -- Popular works'), +(16060, 'Names, Geographical -- England'), +(16061, 'Roanoke Island (N.C.) -- History'), +(16062, 'Fisheries -- Florida -- Juvenile fiction'), +(16063, 'Theology -- History -- 16th century -- Early works to 1800'), +(16064, 'Women -- Social life and customs -- Fiction'), +(16065, 'Pirates -- Juvenile literature'), +(16066, 'Poets, French -- Biography'), +(16067, 'Skepticism -- Controversial literature'), +(16068, 'Irish drama -- 19th century'), +(16069, 'Slovaks'), +(16070, 'Shoshone National Forest (Wyo.)'), +(16071, 'South Carolina -- History -- 1865- -- Fiction'), +(16072, 'Baudelaire, Charles, 1821-1867 -- Translations into English'), +(16073, 'Afghanistan -- Description and travel'), +(16074, 'Great Britain. Army. Royal Scots Fusiliers'), +(16075, 'Sichuan Sheng (China) -- History'), +(16076, 'Columbus, Christopher -- Poetry'), +(16077, 'Cults -- Rome'), +(16078, 'Rome -- Colonies'), +(16079, 'Farrar, Geraldine, 1882-1967'), +(16080, 'Amputation -- Early works to 1800'), +(16081, 'Massachusetts -- History -- Colonial period, ca. 1600-1775'), +(16082, 'Reid, Mayne, 1818-1883'), +(16083, 'German literature -- 19th century'), +(16084, 'Society of Friends -- History -- Poetry'), +(16085, 'Antarctica -- Discovery and exploration -- Juvenile fiction'), +(16086, 'Psicharis, Ioannis, 1854-1929'), +(16087, 'Great Britain -- History, Naval -- Juvenile literature'), +(16088, 'Terrorism -- Fiction'), +(16089, 'Nahuatl poetry'), +(16090, 'Catholic Church -- Spain'), +(16091, 'Venice (Italy) -- History -- 1508-1797 -- Drama'), +(16092, 'Moraes, Manoel de, 1596-1651'), +(16093, 'Tintoretto, 1518-1594'), +(16094, 'Japan -- Commerce -- Great Britain -- Early works to 1800'), +(16095, 'Amphibians -- Guatemala -- Petén (Department)'), +(16096, 'New Zealand -- Emigration and immigration'), +(16097, 'Mexico -- Description and travel -- Juvenile fiction'), +(16098, 'Intellectuals -- Fiction'), +(16099, 'Netting'), +(16100, 'Children\'s stories, Danish -- Translations into Catalan'), +(16101, 'Victoria, Empress, consort of Frederick III, German Emperor, 1840-1901'), +(16102, 'Escapes -- Fiction'), +(16103, 'Coligny, Gaspard de, seigneur de Châtillon, 1519-1572 -- Juvenile fiction'), +(16104, 'Cruelty -- Juvenile fiction'), +(16105, 'London, Jack, 1876-1916 -- Travel -- Oceania'), +(16106, 'Zuni Indians -- Folklore'), +(16107, 'Acrobatics'), +(16108, 'Lumbering -- Fiction'), +(16109, 'City planning -- France -- Paris'), +(16110, 'Fantasy fiction, Irish'), +(16111, 'Rosalind (Fictitious character) -- Fiction'), +(16112, 'Walpole, Hugh, 1884-1941'), +(16113, 'Indians of North America -- Social life and customs -- Juvenile fiction'), +(16114, 'Greek poetry, Modern -- Translations into English'), +(16115, 'Printing -- History -- Origin and antecedents'), +(16116, 'Wordsworth, William, 1770-1850 -- Family'), +(16117, 'Bathing suits -- History'), +(16118, 'Literature -- Translations into Esperanto'), +(16119, 'Ambition'), +(16120, 'Songs with instrumental ensemble'), +(16121, 'Bellhops -- Poetry'), +(16122, 'Children -- Biography'), +(16123, 'French-Canadians -- United States -- Fiction'), +(16124, 'Indic drama -- Translations into German'), +(16125, 'Irish drama -- 20th century'), +(16126, 'White supremacy movements -- Fiction'), +(16127, 'Moths -- Great Britain'), +(16128, 'Norway -- History -- Scottish Expedition, 1612'), +(16129, 'Gynecology -- Popular works'), +(16130, 'Augustine, Saint, Bishop of Hippo'), +(16131, 'Chivalry -- Juvenile fiction'), +(16132, 'Communication and traffic'), +(16133, 'Public domain (Copyright law)'), +(16134, 'Toronto (Ont.) -- History'), +(16135, 'War correspondents -- United States -- Biography'), +(16136, 'Women\'s clothing'), +(16137, 'Freemasonry -- Early works to 1800'), +(16138, 'Fisheries -- Virginia'), +(16139, 'Cuba -- History -- Revolution, 1895-1898'), +(16140, 'Women art students -- Fiction'), +(16141, 'Embroidery -- United States'), +(16142, 'Plantations -- Virginia -- Fiction'), +(16143, 'Spain -- Social conditions'), +(16144, 'Oriental languages -- Transliteration'), +(16145, 'Japanning'), +(16146, 'Warships -- History'), +(16147, 'Anarchists -- Italy -- Biography'), +(16148, 'Quarantine -- Fiction'), +(16149, 'Mutual security program, 1951-'), +(16150, 'Socialism -- Poetry'), +(16151, 'Lectures and lecturing'), +(16152, 'Temple, William, 1628-1699. Memoirs of what past in Christendom from the war begun 1672 to the peace concluded 1679'), +(16153, 'Epic poetry, Germanic'), +(16154, 'Great Britain. Sovereign (1660-1685 : Charles II) His Majesties declaration to all his loving subjects'), +(16155, 'Printing -- England -- History'), +(16156, 'United States. Army. Infantry. Colored Infantry Regiment, 43rd (1864-1865)'), +(16157, 'Kidd, William, -1701'), +(16158, 'James II, King of England, 1633-1701 -- Fiction'), +(16159, 'Goths -- Fiction'), +(16160, 'Stevenson, Robert, 1772-1850'), +(16161, 'Foch, Ferdinand, 1851-1929'), +(16162, 'Rutgers Female College (New York, N.Y.)'), +(16163, 'Paranormal fiction, English'), +(16164, 'Orléans, Philippe, duc d\', 1674-1723 -- Fiction'), +(16165, 'France -- History -- Charles VII, 1422-1461 -- Biography'), +(16166, 'Trials (Treason) -- United States'), +(16167, 'Virginia -- Social life and customs -- To 1775'), +(16168, 'Fire extinction -- Juvenile fiction'), +(16169, 'Aeronautics, Military -- Canada'), +(16170, 'Fountains Abbey (North Yorkshire, England)'), +(16171, 'French -- Caribbean Area -- History'), +(16172, 'Psychophysiology'), +(16173, 'Gold mines and mining -- Alaska'), +(16174, 'Wasson, David Atwood, 1823-1887'), +(16175, 'Josephus, Flavius'), +(16176, 'United States. Army. Field Artillery, 149th -- Regimental histories'), +(16177, 'Plants -- United States'), +(16178, 'Geology, Stratigraphic -- Tertiary'), +(16179, 'Greece -- Civilization'), +(16180, 'Italy -- History -- 476-1268 -- Fiction'), +(16181, 'French literature -- 20th century'), +(16182, 'Twain, Mark, 1835-1910 -- Travel -- Mississippi River'), +(16183, 'Melodrama, English -- 19th century'), +(16184, 'Fairs -- England -- London'), +(16185, 'Dukes, Paul, 1889-1967'), +(16186, 'Egypt -- History -- Mohammed Ali, 1805-1849'), +(16187, 'Moor\'s Indian Charity School'), +(16188, 'Artists -- Relations with women -- Fiction'), +(16189, 'Psychology and religion'), +(16190, 'Jurisprudence'), +(16191, 'Universalism -- Doctrines'), +(16192, 'Tampere (Finland) -- History'), +(16193, 'Prostitution -- England -- London'), +(16194, 'Art, Dutch'), +(16195, 'Postal service -- Great Britain -- Rates'), +(16196, 'Character sketches -- Early works to 1800'), +(16197, 'Indians of North America -- Wars -- 1815-1875'), +(16198, 'Victory (Ship)'), +(16199, 'Ascomycetes'), +(16200, 'Rome -- In literature'), +(16201, 'Wesley, John, 1703-1791 -- Juvenile literature'), +(16202, 'Natural History -- England -- Cheshire'), +(16203, 'Sedan Campaign, 1870'), +(16204, 'Schleswig-Holstein (Germany) -- Fiction'), +(16205, 'Russian fiction -- History and criticism'), +(16206, 'Appearance (Philosophy) -- Fiction'), +(16207, 'Curwood, James Oliver, 1878-1927'), +(16208, 'Naval battles'), +(16209, 'Albemarle, George Monck, Duke of, 1608-1670'), +(16210, 'College ethics'), +(16211, 'Golf -- Anecdotes'), +(16212, 'Dossi, Carlo, 1849-1910'), +(16213, 'Industrialists -- United States -- Biography'), +(16214, 'Germany. Kriegsmarine -- Fiction'), +(16215, 'Bulgarian poetry'), +(16216, 'Bombay (India) -- Description and travel'), +(16217, 'Sports -- Greece'), +(16218, 'Great Britain -- Colonies -- America -- Administration'), +(16219, 'Butler, Robert, 1784- -- Travel -- India'), +(16220, 'Folk music -- England'), +(16221, 'Poor -- Juvenile poetry'), +(16222, 'Middle-aged men -- Fiction'), +(16223, 'Wells'), +(16224, 'Executions (Islamic law)'), +(16225, 'Counter-Reformation'), +(16226, 'Race War, Cuba, 1912'), +(16227, 'Venom -- Physiological effect -- Early works to 1800'), +(16228, 'Glaciers -- Fiction'), +(16229, 'Palo Duro Canyon (Tex.)'), +(16230, 'Women pirates -- Fiction'), +(16231, 'Authors -- Biography'), +(16232, 'Indigo industry -- India -- Bengal -- Drama'), +(16233, 'Slavery -- Africa, North'), +(16234, 'English wit and humor -- History and criticism'), +(16235, 'Civil war -- Fiction'), +(16236, 'Jex-Blake, Sophia, 1840-1912'), +(16237, 'Railroad tunnels -- Massachusetts'), +(16238, 'Texel (Netherlands)'), +(16239, 'Church year -- Poetry'), +(16240, 'Inquisition -- Spain -- History -- Sources'), +(16241, 'Ocean travel -- Juvenile fiction'), +(16242, 'Poets -- Drama'), +(16243, 'Poets, American -- Kentucky'), +(16244, 'Psychology, Experimental'), +(16245, 'Mendelssohn-Bartholdy, Felix, 1809-1847 -- Correspondence'), +(16246, 'Crime -- Case studies'), +(16247, 'Mundy, Talbot, 1879-1940 -- Bibliography'), +(16248, 'Great Britain -- History -- Henry VI, 1422-1461'), +(16249, 'Christian women saints -- Italy -- Siena -- Correspondence'), +(16250, 'Floods -- Texas -- Galveston -- History -- 20th century'), +(16251, 'Scandinavian Americans'), +(16252, 'Bacteriology -- Technique'), +(16253, 'Men with mental disabilities -- Fiction'), +(16254, 'Jesus Christ -- Biography -- Apocryphal and legendary literature'), +(16255, 'Maya language -- Texts'), +(16256, 'Pharmaceutical industry -- Periodicals'), +(16257, 'Book clubs (Bookselling)'), +(16258, 'Single women -- Juvenile fiction'), +(16259, 'Montréal (Québec) -- Fiction'), +(16260, 'Isles of Scilly (England) -- Description and travel'), +(16261, 'Value'), +(16262, 'Crows'), +(16263, 'Medicine -- California'), +(16264, 'Astral body'), +(16265, 'Romania -- Social life and customs -- Fiction'), +(16266, 'Kurds'), +(16267, 'Palestine -- Social life and customs'), +(16268, 'Skiathos Island (Greece) -- Social conditions -- Fiction'), +(16269, 'Slavery -- Poetry -- Early works to 1800'), +(16270, 'Cambridge (Mass.) -- Biography'), +(16271, 'United States -- History -- Revolution, 1775-1783 -- Naval operations, British'), +(16272, 'Colonsay (Scotland) -- Fiction'), +(16273, 'Music -- Puerto Rico -- History and criticism'), +(16274, 'Patagonia (Argentina and Chile) -- History'), +(16275, 'Death -- Sermons'), +(16276, 'Volcanoes -- Juvenile fiction'), +(16277, 'War and emergency powers -- United States'), +(16278, 'Seventh-Day Adventists -- Doctrines'), +(16279, 'Romani language -- Texts'), +(16280, 'Darrow, Clarence, 1857-1938'), +(16281, 'Abandoned houses -- Juvenile fiction'), +(16282, 'Colombia -- Description and travel'), +(16283, 'Philosophy -- Introductions'), +(16284, 'Washington (State) -- Guidebooks'), +(16285, 'Interstellar travel -- Juvenile fiction'), +(16286, 'Grinnell Expedition (1st : 1850-1851)'), +(16287, 'Tell, Wilhelm -- Fiction'), +(16288, 'Atlantic States -- Description and travel'), +(16289, 'Greece -- History -- Spartan and Theban Supremacies, 404-362 B.C.'), +(16290, 'Statesmen -- Great Britain -- Biography'), +(16291, 'Lithuania'), +(16292, 'Postal service -- United States'), +(16293, 'Women travelers -- Fiction'), +(16294, 'German literature -- Periodicals'), +(16295, 'Nicolay, Paul, friherre, 1860-1919'), +(16296, 'Contraband of war'), +(16297, 'Hawthorne, Nathaniel, 1804-1864 -- Correspondence'), +(16298, 'Santa Fe (N.M.) -- Description and travel'), +(16299, 'Hellenism'), +(16300, 'Manners and customs -- Handbooks, manuals, etc.'), +(16301, 'Ocean travel -- Europe'), +(16302, 'Fairy tales -- Germany -- Translations into Hungarian'), +(16303, 'Riddles, Philippine'), +(16304, 'London (England) -- Social life and customs -- To 1500'), +(16305, 'Presbyterian Church -- Government'), +(16306, 'Freemasons'), +(16307, 'Power (Philosophy)'), +(16308, 'Minnesota -- Description and travel -- Early works to 1800'), +(16309, 'Portugal -- History -- Revolution, 1891'), +(16310, 'Traction-engines'), +(16311, 'Bible. Proverbs -- Commentaries'), +(16312, 'Civil society -- History'), +(16313, 'Celtic literature -- History and criticism'), +(16314, 'Cake'), +(16315, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Rhode Island'), +(16316, 'Nuclear physics -- Juvenile fiction'), +(16317, 'Hedwig, Herzogin von Schwaben, approximately 938-994 -- Fiction'), +(16318, 'Pacific railroads'), +(16319, 'Shiukichi, Shigemi, 1865-1928'), +(16320, 'Macaronic poetry'), +(16321, 'Rock River (Wis. and Ill.)'), +(16322, 'Icebergs'), +(16323, 'Canada -- History -- 19th century -- Fiction'), +(16324, 'Nightmares -- Fiction'), +(16325, 'New York (N.Y.) -- History -- Colonial period, ca. 1600-1775 -- Fiction'), +(16326, 'Brakna'), +(16327, 'Bookbinding -- England -- History'), +(16328, 'Washington (State) -- In literature -- Bibliography'), +(16329, 'Georgia -- Politics and government'), +(16330, 'Nineteenth century -- History'), +(16331, 'Ethnology -- New Guinea'), +(16332, 'Scarlatina'), +(16333, 'Paris (France) -- Drama'), +(16334, 'World War, 1914-1918 -- Campaigns -- Eastern Front -- Juvenile fiction'), +(16335, 'Alencar, José Martiniano de, 1829-1877'), +(16336, 'Hoffman, Frederick L. (Frederick Ludwig), 1865-1946. Race traits and tendencies of the American Negro'), +(16337, 'Women heroes -- Biography'), +(16338, 'American drama -- Bibliography'), +(16339, 'Japan -- Description and travel -- Juvenile literature'), +(16340, 'Antarah ibn Shaddad, active 6th century -- Legends'), +(16341, 'Music -- Anecdotes'), +(16342, 'France -- History -- Third Republic, 1870-1940 -- Fiction'), +(16343, 'Madison, James, 1751-1836'), +(16344, 'Education, Higher -- Great Britain'), +(16345, 'New England Historic Genealogical Society -- Periodicals'), +(16346, 'Auckland (N.Z.) -- History'), +(16347, 'Lincolnshire (England) -- Fiction'), +(16348, 'Hot-water heating'), +(16349, 'Hastings, Battle of, England, 1066'), +(16350, 'Women -- United States -- History'), +(16351, 'France -- History -- July Revolution, 1830 -- Fiction'), +(16352, 'Folk literature, Philippine'), +(16353, 'Mongolia -- Juvenile fiction'), +(16354, 'Space flight to Mars -- Juvenile fiction'), +(16355, 'Cooper, Peter, 1791-1883'), +(16356, 'Curiosities and wonders -- Fiction'), +(16357, 'Rain gods -- Egypt'), +(16358, 'Japan -- Social life and customs -- Juvenile literature'), +(16359, 'Baking'), +(16360, 'Bioethics'), +(16361, 'Agriculture -- Virginia -- History'), +(16362, 'Monasticism and religious orders -- Philippines'), +(16363, 'Magdala, Battle of, Amba Maryam, Ethiopia, 1868'), +(16364, 'Romances, Spanish -- Translations into English'), +(16365, 'London, Jack, 1876-1916'), +(16366, 'Views'), +(16367, 'Forests and forestry -- History'), +(16368, 'Baths -- North Sea'), +(16369, 'Nature in the Bible'), +(16370, 'America -- Discovery and exploration -- Welsh'), +(16371, 'Magic, Greek'), +(16372, 'Papal States -- History'), +(16373, 'San Francisco Committee of Vigilance of 1856 -- History'), +(16374, 'Didactic drama'), +(16375, 'India -- Social life and customs -- 19th century -- Handbooks, manuals, etc.'), +(16376, 'Courage'), +(16377, 'Gold mines and mining -- Yukon -- Fiction'), +(16378, 'Milton, John, 1608-1674 -- Translations into English'), +(16379, 'Parkinson\'s disease'), +(16380, 'Roses'), +(16381, 'Shipbuilding -- Great Britain -- History'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(16382, 'Dies (Metal-working)'), +(16383, 'Lowestoft (England) -- History'), +(16384, 'Authors, Russian -- 19th century -- Drama'), +(16385, 'Birds -- England -- Suffolk'), +(16386, 'Troubadours'), +(16387, 'Yangtze River (China) -- Description and travel'), +(16388, 'Stock exchanges -- Fiction'), +(16389, 'Epic poetry, French -- Translations into Esperanto'), +(16390, 'Atomic theory'), +(16391, 'Prisoners -- New York (State) -- Biography'), +(16392, 'Runaway children -- Fiction'), +(16393, 'Vernon, Dorothy, -1584 -- Fiction'), +(16394, 'Porthan, Henrik Gabriel, 1739-1804'), +(16395, 'Reading'), +(16396, 'Art -- Italy'), +(16397, 'Children\'s songs, French'), +(16398, 'Optimism'), +(16399, 'Women scientists -- Great Britain -- Biography'), +(16400, 'Verdun, Battle of, Verdun, France, 1914'), +(16401, 'Harvard University -- Fiction'), +(16402, 'Canada -- Bibliography'), +(16403, 'Great Britain -- Kings and rulers -- Succession -- History -- 16th century'), +(16404, 'Windham, William, 1750-1810'), +(16405, 'Vegetable gardening -- United States'), +(16406, 'Bible. English -- Versions -- Authorized'), +(16407, 'Foundations'), +(16408, 'Morse, Samuel Finley Breese, 1791-1872'), +(16409, 'New Brunswick -- History'), +(16410, 'Freedom of the press -- Early works to 1800'), +(16411, 'Calendar, Philippine'), +(16412, 'Missions -- Bermuda Islands'), +(16413, 'Cheshire (England)'), +(16414, 'Catholic Church -- Doctrines -- Protestant authors'), +(16415, 'Frontier and pioneer life -- West (U.S.) -- Juvenile fiction'), +(16416, 'Browne, Hablot Knight, 1815-1882'), +(16417, 'University of Cambridge'), +(16418, 'English literature -- Early modern, 1500-1700 -- History and criticism'), +(16419, 'Military education'), +(16420, 'Germany -- History -- William II, 1888-1918 -- Sources'), +(16421, 'Eden Hall (Torresdale, Pa.)'), +(16422, 'Sonnets, Italian'), +(16423, 'Home missions'), +(16424, 'Welsh Borders (England and Wales) -- Fiction'), +(16425, 'Salishan Indians'), +(16426, 'Christian education -- Textbooks for children'), +(16427, 'Forman, Samuel S., 1765-1862'), +(16428, 'Westminster (London, England) -- Description and travel'), +(16429, 'Bahíyyih, Khánum -- Correspondence'), +(16430, 'Firearms -- Patents'), +(16431, 'United States. Army. Sharpshooters Regiment, 1st (1861-1864). Company F'), +(16432, 'Transvaal (South Africa) -- History -- War of 1880-1881'), +(16433, 'Atchison County (Kan.) -- Biography'), +(16434, 'Presbyterian Church -- Sermons'), +(16435, 'Church and state -- Early works to 1800'), +(16436, 'Hypnotism -- Fiction'), +(16437, 'Jamaica -- Fiction'), +(16438, 'Postal service -- Canada -- Handbooks, manuals, etc.'), +(16439, 'Ethnology -- Scotland -- Orkney'), +(16440, 'Jellicoe, John Rushworth, 1859-1935'), +(16441, 'Women -- France -- History'), +(16442, 'Sailors -- Italy -- Language'), +(16443, 'American bison'), +(16444, 'Bodelschwingh, Friedrich von 1831-1910'), +(16445, 'Carroll, Lewis, 1832-1898'), +(16446, 'Horncastle (England) -- History'), +(16447, 'Portugal -- History -- John III, 1521-1557 -- Fiction'), +(16448, 'Keene, Charles, 1823-1891'), +(16449, 'Peasant uprisings -- Fiction'), +(16450, 'Natural history museums -- England -- London -- Guidebooks'), +(16451, 'Fertilization of plants'), +(16452, 'Shakespeare, William, 1564-1616 -- Homes and haunts'), +(16453, 'Trials (Manslaughter) -- Fiction'), +(16454, 'Great Britain -- Gazetteers'), +(16455, 'Howe, Joseph, 1804-1873'), +(16456, 'Language and languages -- Philosophy -- Early works to 1800'), +(16457, 'Jamestown (Va.)'), +(16458, 'Pastoral poetry, English -- History and criticism'), +(16459, 'Eugenics -- Fiction'), +(16460, 'Sherlock, Thomas, 1678-1761'), +(16461, 'Québec expedition, 1690 -- Fiction'), +(16462, 'Edward I, King of England, 1239-1307 -- Fiction'), +(16463, 'Akbar, Emperor of Hindustan, 1542-1605 -- Fiction'), +(16464, 'Tahiti (French Polynesia : Island)'), +(16465, 'Dakota Indians -- Social life and customs'), +(16466, 'Music -- Humor'), +(16467, 'Hymns, Latin'), +(16468, 'Scott, Walter, 1771-1832 -- Adaptations'), +(16469, 'Bible. Thessalonians'), +(16470, 'Maratha War, 1803 -- Juvenile fiction'), +(16471, 'Arbitration, Industrial -- Portugal'), +(16472, 'Dexter, Timothy, 1747-1806'), +(16473, 'English-speaking countries -- Intellectual life -- 20th century'), +(16474, 'Great Britain. Army. Inniskilling Dragoons, 6th'), +(16475, 'Department stores'), +(16476, 'Mary, Blessed Virgin, Saint -- May devotions'), +(16477, 'Automobile industry and trade -- United States -- History'), +(16478, 'Mythology, Greek, in literature'), +(16479, 'Bohemia (Czech Republic) -- History -- To 1526'), +(16480, 'Regulus, Marcus Atilius, -250 B.C.? -- Drama'), +(16481, 'Honey -- Quality'), +(16482, 'Norwich (England)'), +(16483, 'Yorktown (Va.) -- Guidebooks'), +(16484, 'Dickens, Charles, 1812-1870 -- Homes and haunts -- England'), +(16485, 'Cattle trade -- Illinois -- History'), +(16486, 'France -- History -- 1848-1870 -- Fiction'), +(16487, 'Materialism'), +(16488, 'Composers -- Austria -- Correspondence'), +(16489, 'Netherlands -- History -- To 1384 -- Fiction'), +(16490, 'Soldiers -- Great Britain -- Biography'), +(16491, 'Bankers -- Fiction'), +(16492, 'Euripides -- Translations into English'), +(16493, 'Mental illness -- Jurisprudence'), +(16494, 'Napoleon I, Emperor of the French, 1769-1821 -- Humor'), +(16495, 'Seventh-Day Adventists -- Doctrinal and controversial works'), +(16496, 'Capital punishment -- Fiction'), +(16497, 'Garter snakes'), +(16498, 'Foster, Myles Birket, 1825-1899'), +(16499, 'Lusitania (Steamship)'), +(16500, 'Apocryphal books (Old Testament) -- Commentaries'), +(16501, 'Milan (Italy) -- Fiction'), +(16502, 'American periodicals -- Pennsylvania -- Philadelphia'), +(16503, 'Paganism'), +(16504, 'Sheep-shearing -- Australia'), +(16505, 'United States -- History -- 1801-1809'), +(16506, 'Istanbul (Turkey) -- History -- 19th century -- Fiction'), +(16507, 'Children\'s literature -- Catalogs'), +(16508, 'Thanksgiving Day'), +(16509, 'Valois, House of'), +(16510, 'Hypocrisy -- Drama'), +(16511, 'Sandom, Richard -- Trials, litigation, etc.'), +(16512, 'Psychiatric nursing'), +(16513, 'Practical jokes -- Juvenile fiction'), +(16514, 'Blacks -- West Indies'), +(16515, 'Sanitation -- England -- London'), +(16516, 'Shinto -- Japan'), +(16517, 'Hawthorne, Nathaniel, 1804-1864 -- Homes and haunts -- New England'), +(16518, 'Automobile racing -- Juvenile fiction'), +(16519, 'Greece -- History -- Juvenile fiction'), +(16520, 'Furniture making -- Amateurs\' manuals'), +(16521, 'Exchange of publications'), +(16522, 'Iraq -- Fiction'), +(16523, 'Shakespeare, William, 1564-1616 -- Stage history -- England -- London'), +(16524, 'Mackenzie family'), +(16525, 'Piers -- Design and construction'), +(16526, 'Amusement parks -- Fiction'), +(16527, 'Craven, William Craven, Baron, 1737 or 8-1791 -- Poetry'), +(16528, 'Pérez, Antonio, -1611'), +(16529, 'Children -- Brazil -- Juvenile literature'), +(16530, 'Austrian literature'), +(16531, 'Romanes, George John, 1848-1894. Mental evolution in animals'), +(16532, 'Italian literature -- 19th century -- History and criticism'), +(16533, 'Ojibwa Indians -- Folklore'), +(16534, 'Bill o\'th\' Hoylus End'), +(16535, 'Great Britain -- History -- Outlines, syllabi, etc.'), +(16536, 'Stevenson, Robert Louis, 1850-1894 -- Travel -- Oceania'), +(16537, 'Bible -- Commentaries -- Indexes'), +(16538, 'College freshmen -- Juvenile fiction'), +(16539, 'Women hunters'), +(16540, 'China -- Poetry'), +(16541, 'Scotland -- History -- James IV, 1488-1513 -- Drama'), +(16542, 'Bible. Peter'), +(16543, 'Rural conditions'), +(16544, 'Plague -- France -- Marseille -- History -- 18th century -- Fiction'), +(16545, 'Penmanship -- Early works to 1800'), +(16546, 'Gautama Buddha'), +(16547, 'Social conflict -- Great Britain -- Drama'), +(16548, 'Brooke, Rupert, 1887-1915'), +(16549, 'Spain -- Politics and government'), +(16550, 'Bahai Faith -- Australia'), +(16551, 'Postal service -- England -- Bristol'), +(16552, 'Maori language -- Texts'), +(16553, 'Corneille, Pierre, 1606-1684 -- Juvenile literature'), +(16554, 'Gardening -- England -- Lancashire'), +(16555, 'Elephants -- Juvenile fiction'), +(16556, 'Bible. Psalms, XXIII -- Meditations'), +(16557, 'Buccaneers -- Juvenile literature'), +(16558, 'Japanese fiction -- Translations into English'), +(16559, 'Germans'), +(16560, 'China -- Social life and customs -- 1644-1912 -- Fiction'), +(16561, 'Zhuangzi'), +(16562, 'Indian captivities -- Fiction'), +(16563, 'Fragonard, Jean Honoré, 1732-1806'), +(16564, 'Belief and doubt'), +(16565, 'Endowed public schools (Great Britain) -- Juvenile fiction'), +(16566, 'Fairy tales -- Brazil'), +(16567, 'Epic poetry, Greek -- Adaptations'), +(16568, 'Nîmes (France) -- History -- Fiction'), +(16569, 'Indians of North America -- Industries'), +(16570, 'Birds -- British Columbia'), +(16571, 'Penguins -- Fiction'), +(16572, 'Slave trade -- Early works to 1800'), +(16573, 'Tales -- France -- Lorraine'), +(16574, 'Freedom of speech -- United States'), +(16575, 'Art -- Italy -- Florence'), +(16576, 'Drugs -- Periodicals'), +(16577, 'Great Britain -- History -- 1789-1820'), +(16578, 'Louisiana -- Description and travel -- Early works to 1800'), +(16579, 'Scotland -- History -- Charles I, 1625-1649 -- Fiction'), +(16580, 'Québec (Québec) -- Juvenile fiction'), +(16581, 'Zola, Émile, 1840-1902. Rougon-Macquart -- Dictionaries'), +(16582, 'Baltimore catechism'), +(16583, 'Steiner, Edward Alfred, 1866-1956'), +(16584, 'Political prisoners -- Italy -- Biography'), +(16585, 'Rome (Italy) -- Social life and customs -- 20th century -- Fiction'), +(16586, 'Sherman, John, 1823-1900'), +(16587, 'Dampier, William, 1652-1715'), +(16588, 'Methodism -- Poetry'), +(16589, 'Soviet Union -- History'), +(16590, 'Protestantism'), +(16591, 'Medici, Lorenzo de\', 1449-1492'), +(16592, 'Murray, David Christie, 1847-1907'), +(16593, 'English language -- Old English, ca. 450-1100 -- Readers'), +(16594, 'Muslims -- India'), +(16595, 'Rome -- History -- Nero, 54-68'), +(16596, 'California -- History -- 1846-1850 -- Drama'), +(16597, 'Abyssinian Expedition (1867-1868)'), +(16598, 'Church of the United Brethren in Christ (New constitution) -- Hymns'), +(16599, 'Stockyards -- Fiction'), +(16600, 'Poultry -- Housing'), +(16601, 'Bookkeepers -- Fiction'), +(16602, 'Moses (Biblical leader) -- Fiction'), +(16603, 'Balloonists -- Juvenile fiction'), +(16604, 'Oluf, Hark, 1708-1754'), +(16605, 'Huns'), +(16606, 'Montagu, Mary Wortley, Lady 1689-1762 -- Correspondence'), +(16607, 'Xinjiang Uygur Zizhiqu (China) -- History'), +(16608, 'Frontier and pioneer life -- Minnesota'), +(16609, 'Gibran, Kahlil, 1883-1931'), +(16610, 'Northwest Coast of North America'), +(16611, 'Moravian Church -- Liturgy -- Texts'), +(16612, 'Mormons -- History'), +(16613, 'Browning, Robert, 1812-1889. Ring and the book'), +(16614, 'Ferdinand V, King of Spain, 1452-1516'), +(16615, 'Virtue -- Fiction'), +(16616, 'Great Britain -- History -- Commonwealth and Protectorate, 1649-1660 -- Fiction'), +(16617, 'Catholic Church -- Ireland -- Clergy -- History'), +(16618, 'Pienaar, F. F. (Filippus Fourie), 1877-1948'), +(16619, 'Yale University -- Periodicals'), +(16620, 'Scotland -- History -- Stuarts, to the Union, 1371-1707'), +(16621, 'Potential theory (Mathematics)'), +(16622, 'Confederate States of America. Army -- Officers -- Biography'), +(16623, 'Day, Daniel, 1683-1767'), +(16624, 'Patriotic poetry, American'), +(16625, 'Young women -- Drama'), +(16626, 'Women -- India'), +(16627, 'Corsets -- Pictorial works'), +(16628, 'McCormick, Cyrus Hall, 1809-1884'), +(16629, 'Art thieves -- Juvenile fiction'), +(16630, 'English prose literature -- History and criticism'), +(16631, 'Jackson, Elizabeth, 1637-1692'), +(16632, 'Shotguns'), +(16633, 'Castro, Inês de, -1355 -- Poetry'), +(16634, 'Opera -- Russia'), +(16635, 'Cavell, Edith, 1865-1915'), +(16636, 'Letters -- Fiction'), +(16637, 'United States -- History -- Confederation, 1783-1789'), +(16638, 'Frogs -- Juvenile poetry'), +(16639, 'Bears -- Juvenile poetry'), +(16640, 'Fishes -- Bibliography'), +(16641, 'Bradlaugh, Charles, 1833-1891'), +(16642, 'Orient'), +(16643, 'Naturalists -- England -- Biography'), +(16644, 'Westminster Assembly (1643-1652). Larger catechism'), +(16645, 'Iraq -- History -- To 634 -- Fiction'), +(16646, 'Drama -- Collections'), +(16647, 'Forster, John, 1812-1876'), +(16648, 'Marcus Aurelius, Emperor of Rome, 121-180'), +(16649, 'World War, 1914-1918 -- Balkan Peninsula -- Juvenile fiction'), +(16650, 'Paleobotany'), +(16651, 'Magnetism -- Experiments'), +(16652, 'Bawdy poetry'), +(16653, 'Hidatsa Indians -- Social life and customs'), +(16654, 'Spiritual life -- Miscellanea'), +(16655, 'France -- History -- Francis I, 1515-1547 -- Fiction'), +(16656, 'Church of England -- Fiction'), +(16657, 'Czech language -- Readers'), +(16658, 'United States -- History -- Civil War, 1861-1865 -- Destruction and pillage'), +(16659, 'Art and literature'), +(16660, 'Ethnology -- United States -- Periodicals'), +(16661, 'Lighthouses -- United States'), +(16662, 'Proverbs, Yiddish'), +(16663, 'Dinis, King of Portugal, 1261-1325'), +(16664, 'Alsace (France) -- Fiction'), +(16665, 'Canterbury Cathedral'), +(16666, 'Allison, Young Ewing, 1853-1932'), +(16667, 'Decoration and ornament -- Queen Anne style'), +(16668, 'Trollope, Anthony, 1815-1882'), +(16669, 'Monroe doctrine'), +(16670, 'Eucken, Rudolf, 1846-1926'), +(16671, 'Surfaces'), +(16672, 'Great Britain -- History -- Medieval period, 1066-1485 -- Juvenile fiction'), +(16673, 'Library science -- France'), +(16674, 'Mary, Blessed Virgin, Saint -- May devotions -- Portuguese'), +(16675, 'Opticians -- Juvenile fiction'), +(16676, 'Mountain life -- Literary collections'), +(16677, 'Hermanos Penitentes -- New Mexico -- Abiquiu'), +(16678, 'Lawyers -- Great Britain -- Anecdotes'), +(16679, 'Hearn, Lafcadio, 1850-1904'), +(16680, 'Cape Cod (Mass.) -- Description and travel'), +(16681, 'Christian Churches and Churches of Christ'), +(16682, 'Bible. Isaiah, XXVIII-XXXIII -- Criticism, interpretation, etc.'), +(16683, 'Italian poetry -- 18th century'), +(16684, 'Assyro-Babylonian cults'), +(16685, 'Spain -- Foreign relations -- United States'), +(16686, 'Morrell, William, -1692 -- Fiction'), +(16687, 'Trusts, Industrial'), +(16688, 'United States. Supreme Court -- Biography'), +(16689, 'Malplaquet, Battle of, Malplaquet, France, 1709'), +(16690, 'Shoemakers -- Biography'), +(16691, 'Stevenson, Robert Louis, 1850-1894 -- Marriage'), +(16692, 'British -- Switzerland -- Fiction'), +(16693, 'Dyes and dyeing -- Cotton'), +(16694, 'Texas -- History -- 1846-1950'), +(16695, 'Castaways -- Drama'), +(16696, 'Cooking for military personnel'), +(16697, 'Scholars -- Fiction'), +(16698, 'Painters -- France -- Diaries'), +(16699, 'Sphinx vespiformis'), +(16700, 'Coins, Italian'), +(16701, 'United States. Army -- History'), +(16702, 'Corals'), +(16703, 'Historic buildings -- India -- Agra Region'), +(16704, 'Vietnam War, 1961-1975 -- Campaigns -- Vietnam -- Khe Sanh'), +(16705, 'Transcendentalism (New England)'), +(16706, 'Shoemakers'), +(16707, 'Talavera, Battle of, Talavera de la Reina, Spain, 1809 -- Poetry'), +(16708, 'Randalls Island (N.Y.) -- Juvenile fiction'), +(16709, 'Motherless families -- Juvenile fiction'), +(16710, 'Frontier and pioneer life -- Dakota Territory -- Fiction'), +(16711, 'Architecture, Domestic -- England'), +(16712, 'Christmas -- Devotional literature'), +(16713, 'Bible. Gospels -- Evidences, authority, etc.'), +(16714, 'Smallpox -- Vaccination'), +(16715, 'Medical jurisprudence -- Austria'), +(16716, 'Oceania -- Description and travel -- Fiction'), +(16717, 'Children -- Hawaii --Juvenile literature'), +(16718, 'Convict ships'), +(16719, 'Mississippi River -- Description and travel'), +(16720, 'Perfumes'), +(16721, 'Fairies -- Ulster (Northern Ireland and Ireland)'), +(16722, 'Mammals -- North Atlantic Ocean'), +(16723, 'Russia -- Social conditions -- Drama'), +(16724, 'Labor unions'), +(16725, 'Home economics -- Great Britain'), +(16726, 'Marital violence -- Fiction'), +(16727, 'Goats -- Juvenile fiction'), +(16728, 'Germany -- History -- 1517-1648 -- Juvenile fiction'), +(16729, 'Short stories, Scandinavian -- Translations into English'), +(16730, 'Courtesy'), +(16731, 'Creoles -- Louisiana -- Biography'), +(16732, 'Sanskrit literature -- History and criticism'), +(16733, 'Fireworks -- Fiction'), +(16734, 'Pride and vanity -- Juvenile literature'), +(16735, 'Romans -- Egypt -- Drama'), +(16736, 'Zorrilla, José, 1817-1893'), +(16737, 'Bible -- Humor'), +(16738, 'Swordsmen -- China'), +(16739, 'Vámbéry, Ármin, 1832-1913 -- Travel -- Asia, Central'), +(16740, 'Denmark -- Social life and customs -- Fiction'), +(16741, 'Dubrovnik (Croatia) -- History'), +(16742, 'Aristocracy (Social class) -- England -- London'), +(16743, 'Shakespeare, William, 1564-1616 -- Knowledge -- Geology'), +(16744, 'Cottontails'), +(16745, 'Deerhurst (England). Priory church'), +(16746, 'Northwest, Canadian'), +(16747, 'Scots -- America'), +(16748, 'Nobility -- Ireland -- Drama'), +(16749, 'Bars (Drinking establishments) -- New York (State) -- New York'), +(16750, 'Franciszka Krasińska, Countess, consort of Charles, Duke of Courland, 1743-1796 -- Fiction'), +(16751, 'Geology -- Colorado -- Colorado National Monument'), +(16752, 'Slavery -- Justification'), +(16753, 'Scottish wit and humor'), +(16754, 'Bible. Pastoral Epistles -- Criticism, interpretation, etc.'), +(16755, 'British -- Thailand -- History -- 19th century'), +(16756, 'Spanish Main'), +(16757, 'Great Britain -- History, Naval -- 18th century -- Sources'), +(16758, 'Fabian Society (Great Britain)'), +(16759, 'United States -- Maps'), +(16760, 'Gothic fiction -- Parodies, imitations, etc.'), +(16761, 'Dodge, Grenville Mellen, 1831-1916'), +(16762, 'Massachusetts -- History -- New Plymouth, 1620-1691 -- Fiction'), +(16763, 'Apes'), +(16764, 'Train robberies -- Fiction'), +(16765, 'Confederate States of America. Army. Texas Cavalry Regiment, 3rd'), +(16766, 'Sweden -- History'), +(16767, 'Bradford, William, 1590-1657'), +(16768, 'English drama -- To 1500 -- History and criticism'), +(16769, 'Paris (France) -- Guidebooks'), +(16770, 'Ojibwa Indians -- Michigan'), +(16771, 'Rhode Island -- History -- Colonial period, ca. 1600-1775'), +(16772, 'Raccoon -- Geographical distribution -- Climatic factors'), +(16773, 'United States -- History -- Confederation, 1783-1789 -- Sources'), +(16774, 'Literary landmarks -- Great Britain'), +(16775, 'Conduct of life -- Early works to 1900'), +(16776, 'Norwegian drama -- Translations into Finnish'), +(16777, 'Browning, Robert, 1812-1889 -- Characters -- Women'), +(16778, 'Fur trade -- West (U.S.) -- History -- Poetry'), +(16779, 'Great Britain. Army. Oxfordshire and Buckinghamshire Light Infantry'), +(16780, 'Paleontology -- Texas'), +(16781, 'Sexually transmitted diseases -- Fiction'), +(16782, 'Pembrokeshire (Wales) -- Description and travel'), +(16783, 'Sea songs -- United States'), +(16784, 'Stanford University -- Fiction'), +(16785, 'Short stories, Cebuano'), +(16786, 'Montana -- Description and travel'), +(16787, 'Animals -- Habitations'), +(16788, 'Missions -- Theory'), +(16789, 'Cyprian, Saint, -304 -- Drama'), +(16790, 'Prairie Provinces -- Poetry'), +(16791, 'Taiwan -- History -- 17th century'), +(16792, 'Lincoln, Abraham, 1809-1865 -- Views on slavery'), +(16793, 'Paris (France) -- Intellectual life -- Fiction'), +(16794, 'Numismatics -- Great Britain'), +(16795, 'Neutrality'), +(16796, 'Frontier and pioneer life -- United States'), +(16797, 'Numbers -- Juvenile literature'), +(16798, 'Mammals -- Mexico -- Sinaloa (State)'), +(16799, 'Amusements -- Juvenile literature'), +(16800, 'Wieringen (Netherlands)'), +(16801, 'Evangelistic work -- Fiction'), +(16802, 'Holborn (London, England) -- Description and travel'), +(16803, 'Agriculture -- Juvenile literature'), +(16804, 'Naturopathy'), +(16805, 'Railroad rails'), +(16806, 'Orphans -- Drama'), +(16807, 'Non-church-affiliated people'), +(16808, 'Printing -- Specimens'), +(16809, 'Alps, Bavarian (Germany) -- Fiction'), +(16810, 'Veterinary gynecology'), +(16811, 'Usury'), +(16812, 'Turkey -- History -- Mahmud II, 1808-1839 -- Fiction'), +(16813, 'War poetry, Canadian (English)'), +(16814, 'Insurance, Disaster -- California -- San Francisco'), +(16815, 'Garden District (New Orleans, La.)'), +(16816, 'Shakespeare, William, 1564-1616 -- Anniversaries, etc.'), +(16817, 'Pastry'), +(16818, 'Jesus Christ -- Friends and associates'), +(16819, 'Simon, Magus, active 1st century'), +(16820, 'Seume, Johann Gottfried, 1763-1810'), +(16821, 'Atlanta (Ga.) -- Description and travel'), +(16822, 'South America -- Description and travel -- Juvenile literature'), +(16823, 'Vermont -- Fiction'), +(16824, 'Mexico -- History -- Spanish colony, 1540-1810 -- Fiction'), +(16825, 'African Americans -- Social conditions -- To 1964'), +(16826, 'Hotels -- England'), +(16827, 'Theater -- United States -- History'), +(16828, 'Wheat -- Australia'), +(16829, 'Ribeiro, Carlos, 1813-1882'), +(16830, 'Southwest, New -- Juvenile fiction'), +(16831, 'Children -- Italy'), +(16832, 'Lady Franklin Bay Expedition (1881-1884)'), +(16833, 'Battleships -- Juvenile fiction'), +(16834, 'Indigenous peoples -- Africa, Central -- Fiction'), +(16835, 'Brazil -- Emigration and Immigration -- Fiction'), +(16836, 'World War, 1914-1918 -- Personal narratives, Austrian'), +(16837, 'Jones, Thomas, approximately 1530-approximately 1620 -- Fiction'), +(16838, 'Agricultural pests'), +(16839, 'Book collectors -- Biography'), +(16840, 'Gardening -- France'), +(16841, 'Shakespeare, William, 1564-1616 -- Knowledge -- Book industries and trade'), +(16842, 'Liberty bonds -- Juvenile fiction'), +(16843, 'Confederate States of America. Army. Virginia Artillery. Richmond Howitzers'), +(16844, 'German poetry -- Early modern, 1500-1700'), +(16845, 'Women prisoners -- Fiction'), +(16846, 'Judicial error -- Fiction'), +(16847, 'Gautama Buddha -- Pre-existence'), +(16848, 'Greek drama, Modern'), +(16849, 'Cosmology -- Poetry'), +(16850, 'Agriculture -- United States -- Statistics -- Periodicals'), +(16851, 'Kankanay language -- Texts'), +(16852, 'War of the Pacific, 1879-1884 -- Fiction'), +(16853, 'Russell, George William Erskine, 1853-1919'), +(16854, 'Plymouth Church (Brooklyn, New York, N.Y.)'), +(16855, 'Spanish Americans -- Fiction'), +(16856, 'Leinster (Ireland) -- Description and travel'), +(16857, 'Marine biology -- Great Britain'), +(16858, 'Saratoga (N.Y.) -- Fiction'), +(16859, 'Precognition'), +(16860, 'Kepler, Johannes, 1571-1630'), +(16861, 'Military supplies -- Catalogs'), +(16862, 'Treaties'), +(16863, 'World War, 1914-1918 -- Territorial questions -- Turkey'), +(16864, 'Girnar Mountain (India) -- Description and travel'), +(16865, 'Lancashire (England)'), +(16866, 'Edwards family'), +(16867, 'La Rochejaquelein, Henri du Vergier, comte de, 1772-1794'), +(16868, 'Fantasy drama, English'), +(16869, 'Secret societies -- Portugal'), +(16870, 'Tales, Medieval -- Adaptations'), +(16871, 'Invariants'), +(16872, 'Malay literature -- Translations into English'), +(16873, 'Zebras'), +(16874, 'Duomo di Siena'), +(16875, 'Turkey -- History -- Süleyman I, 1520-1566'), +(16876, 'Underwater exploration -- Juvenile fiction'), +(16877, 'Falstaff, John, Sir (Fictitious character)'), +(16878, 'New Mexico -- Juvenile fiction'), +(16879, 'Surgeons -- Juvenile fiction'), +(16880, 'Perspective -- Early works to 1800'), +(16881, 'Tales -- West Indies'), +(16882, 'Denmark -- History -- To 1241'), +(16883, 'Hugh, of Lincoln, Saint, 1140-1200'), +(16884, 'Social classes -- Ireland -- Fiction'), +(16885, 'Euripides -- Criticism and interpretation'), +(16886, 'Lescaut, Manon, 1689-1721 -- Fiction'), +(16887, 'Marginality, Social -- Europe -- History -- To 1500'), +(16888, 'Filibusters'), +(16889, 'Ethics -- Japan'), +(16890, 'Larcom, Lucy, 1824-1893'), +(16891, 'Charms -- Poetry'), +(16892, 'Horseshoeing'), +(16893, 'Ethiopia -- History -- 1490-1889'), +(16894, 'Abused wives -- Fiction'), +(16895, 'Tyler\'s Insurrection, 1381 -- Juvenile fiction'), +(16896, 'Conservation of natural resources -- United States'), +(16897, 'Nuclear warfare -- Fiction'), +(16898, 'Sisters-in-law -- Fiction'), +(16899, 'Reptiles -- Mexico -- Michoacán de Ocampo'), +(16900, 'Hungary -- History -- Mongol Invasion, 1241-1242 -- Fiction'), +(16901, 'Golf courses -- Great Britain'), +(16902, 'Pennsylvania -- History -- 19th century -- Fiction'), +(16903, 'Floods -- Pennsylvania -- Johnstown (Cambria County)'), +(16904, 'Fairy tales -- Russia'), +(16905, 'Amphibians -- Kansas'), +(16906, 'Martinique -- Description and travel'), +(16907, 'Spencer-Stanhope, Elizabeth Wilhelmina Coke, Lady, 1795-1873'), +(16908, 'United States. Navy -- Fiction'), +(16909, 'Postal service -- Great Britain -- Colonies'), +(16910, 'Church, J. (John), approximately 1780-approximately 1825 -- Correspondence'), +(16911, 'Morality plays'), +(16912, 'Greek language, Modern -- Study and teaching -- Greece -- History'), +(16913, 'Psychiatric hospitals -- California'), +(16914, 'Moscow (Russia) -- History'), +(16915, 'Ducks -- Juvenile poetry'), +(16916, 'Great Britain -- History -- Henry IV, 1399-1413 -- Juvenile fiction'), +(16917, 'Canada, Eastern -- Description and travel -- Fiction'), +(16918, 'Church and state -- Sermons'), +(16919, 'Acacia'), +(16920, 'England -- Description and travel -- Juvenile literature'), +(16921, 'Women mayors -- Fiction'), +(16922, 'Medea, consort of Aegeus, King of Athens (Mythological character)'), +(16923, 'Opera -- England'), +(16924, 'Police -- Great Britain -- Fiction'), +(16925, 'Sévigné, Marie de Rabutin-Chantal, marquise de, 1626-1696. Lettres'), +(16926, 'Plants -- Color'), +(16927, 'Fortune-telling by cards'), +(16928, 'Philippine fiction (Spanish)'), +(16929, 'Coins -- Greece'), +(16930, 'Guilds -- France -- Paris -- History -- To 1500'), +(16931, 'Christian poetry, English'), +(16932, 'Iroquois Theater, Chicago -- Fire, 1903'), +(16933, 'Christian stewardship'), +(16934, 'Scotland -- History -- 18th century -- Fiction'), +(16935, 'Speeches, addresses, etc., Latin'), +(16936, 'Ethnology -- Portugal'), +(16937, 'Haiti -- Social life and customs'), +(16938, 'Horse racing'), +(16939, 'Chorea, Epidemic'), +(16940, 'Dare, Virginia, 1587- -- Poetry'), +(16941, 'Lavater, Johann Caspar, 1741-1801 -- Correspondence'), +(16942, 'English language -- Conversation and phrase books'), +(16943, 'French letters'), +(16944, 'Borneo -- Ethnology'), +(16945, 'Poets, Latin -- Biography'), +(16946, 'Bernauer, Agnes, -1435 -- Drama'), +(16947, 'Mexico -- History -- European intervention, 1861-1867'), +(16948, 'Marriage -- Religious aspects -- New Jerusalem Church'), +(16949, 'Harun al-Rashid, Caliph, approximately 763-809 -- Fiction'), +(16950, 'Moodie, Susannah, 1803-1885'), +(16951, 'Carpenters -- Juvenile fiction'), +(16952, 'Plague -- Russia (Federation) -- Moscow -- Early works to 1800'), +(16953, 'Esperanto -- Conversation and phrase books -- English'), +(16954, 'Working class -- England -- History -- 19th century'), +(16955, 'Shakespeare, William, 1564-1616 -- Homes and haunts -- England -- Warwickshire'), +(16956, 'Martí, José, 1853-1895 -- Selections'), +(16957, 'Herodotus. History'), +(16958, 'Bees -- Parasites of'), +(16959, 'Wages -- Great Britain'), +(16960, 'Literature -- Translations into English -- Bibliography'), +(16961, 'Jews -- Europe'), +(16962, 'Korea -- Periodicals'), +(16963, 'Anesthesia'), +(16964, 'Vendée (France) -- Fiction'), +(16965, 'Helen, of Troy, Queen of Sparta'), +(16966, 'Medical students -- Fiction'), +(16967, 'United States -- Rural conditions -- Periodicals'), +(16968, 'English literature -- England -- Lancashire'), +(16969, 'World War, 1914-1918 -- New Zealand -- Juvenile fiction'), +(16970, 'Authors, Portuguese'), +(16971, 'Journalists -- Canada -- Biography'), +(16972, 'Gjøa (Ship)'), +(16973, 'Street-railroads -- England -- London'), +(16974, 'Spies -- Drama'), +(16975, 'Verona (Italy) -- History'), +(16976, 'Episcopal Church. Book of common prayer'), +(16977, 'Jenkin, Fleeming, 1833-1885'), +(16978, 'Channel Islands -- Description and travel'), +(16979, 'Tuberculin'), +(16980, 'Wake Island, Battle of, Wake Island, 1941'), +(16981, 'Blake, William, 1757-1827'), +(16982, 'Phonograph -- Catalogs'), +(16983, 'Fiction in libraries'), +(16984, 'Clergy -- United States -- Fiction'), +(16985, 'French-Canadian wit and humor'), +(16986, 'Spitzweg, Karl, 1808-1885'), +(16987, 'Political oratory -- United States'), +(16988, 'Masks -- Fiction'), +(16989, 'Meteorology -- Juvenile literature'), +(16990, 'Assyria -- Social life and customs'), +(16991, 'Dutch language -- Dictionaries'), +(16992, 'Sermons, Welsh -- Translations into English'), +(16993, 'Moses (Biblical leader)'), +(16994, 'Méténier, Oscar, 1859-1913. Casserole'), +(16995, 'Bible. Genesis -- History of Biblical events -- Poetry'), +(16996, 'Missions -- Great Britain -- Fiction'), +(16997, 'Great Britain -- Social life and customs -- 17th century'), +(16998, 'Napoleon I, Emperor of the French, 1769-1821 -- Relations with marshals'), +(16999, 'Alcott family'), +(17000, 'Greenfield, Elizabeth Taylor, approximately 1819-1876'), +(17001, 'Industrial efficiency'), +(17002, 'Legends -- Channel Islands -- Guernsey'), +(17003, 'Grandmothers -- Germany -- Fiction'), +(17004, 'Women labor union members -- Great Britain'), +(17005, 'Normans -- England'), +(17006, 'Euchre'), +(17007, 'Opium trade -- Great Britain -- History -- 19th century'), +(17008, 'Christian ethics -- Fiction'), +(17009, 'Morgan, Lewis Henry, 1818-1881. Ancient society'), +(17010, 'Byzantine Empire -- History -- Andronicus II Palaeologus, 1282-1328'), +(17011, 'Confederate States of America. Army'), +(17012, 'Philoctetes (Mythological character) -- Drama'), +(17013, 'South Carolina -- Poetry'), +(17014, 'Organic compounds -- Synthesis'), +(17015, 'Stratford-upon-Avon (England) -- Biography'), +(17016, 'Goldoni, Carlo, 1707-1793 -- Translations into English'), +(17017, 'Cairo (Egypt) -- Description and travel'), +(17018, 'Postal service'), +(17019, 'Netherlands -- Social life and customs'), +(17020, 'Varro, Marcus Terentius'), +(17021, 'Jesus Christ -- Nativity'), +(17022, 'Waterfowl -- Texas'), +(17023, 'Eighteenth century'), +(17024, 'Spanish drama (Comedy)'), +(17025, 'Americans -- Thailand'), +(17026, 'Birds -- Hawaii'), +(17027, 'Peru -- History'), +(17028, 'Christian poetry, Latin -- Translations into English'), +(17029, 'Biography -- Middle Ages, 500-1500'), +(17030, 'Cinematography -- Handbooks, manuals, etc.'), +(17031, 'Lays -- Translations into English'), +(17032, 'Baking -- United States'), +(17033, 'Fairy tales -- Ukraine'), +(17034, 'Courts -- Fiction'), +(17035, 'Urk (Netherlands)'), +(17036, 'Celibacy -- Catholic Church -- Fiction'), +(17037, 'Water-supply -- Nova Scotia -- Halifax'), +(17038, 'Mineralogy -- Missouri'), +(17039, 'Great Britain -- Colonies -- Asia -- Administration'), +(17040, 'Medicine -- Practice -- Management'), +(17041, 'Surriage, Agnes, 1726-1783'), +(17042, 'Akbar, emperor of Hindustan, 1542-1605 -- Juvenile fiction'), +(17043, 'Thames River (England)'), +(17044, 'Criminal law -- Portugal'), +(17045, 'Flame throwers -- Handbooks, manuals, etc.'), +(17046, 'London (England) -- Description and travel -- Humor'), +(17047, 'Reeves & Turner -- Catalogs'), +(17048, 'Viriathus, -approximately 139 B.C. -- Fiction'), +(17049, 'French language -- Middle French, 1300-1600'), +(17050, 'Coyote -- Juvenile fiction'), +(17051, 'Climatology'), +(17052, 'Housefly -- Control'), +(17053, 'Granada (Spain) -- History -- Poetry'), +(17054, 'Telepathy -- Handbooks, manuals, etc.'), +(17055, 'Automobile driver education'), +(17056, 'Kentucky -- History -- To 1792 -- Juvenile fiction'), +(17057, 'Greece -- History -- To 146 B.C. -- Juvenile literature'), +(17058, 'Alcohol -- Physiological effect'), +(17059, 'Montana -- Juvenile fiction'), +(17060, 'Great Britain -- Politics and government -- 1901-1910 -- Poetry'), +(17061, 'Statesmen -- Canada'), +(17062, 'Frontier and pioneer life -- Northwest, Canadian -- Juvenile fiction'), +(17063, 'Berry, Marie-Caroline de Bourbon-Sicile, duchesse de, 1798-1870'), +(17064, 'Bollman, W. (Wendel), 1814-1884'), +(17065, 'Pope, Alexander, 1688-1744 -- Poetry'), +(17066, 'New Hampshire -- Poetry'), +(17067, 'Balkan Peninsula -- Fiction'), +(17068, 'Stamp collecting -- Bibliography'), +(17069, 'Theosophy -- Doctrines'), +(17070, 'Puerto Rico -- Social conditions'), +(17071, 'Sture, Sten, approximately 1492-1520'), +(17072, 'Medical jurisprudence'), +(17073, 'Wild flowers -- Great Britain'), +(17074, 'Princesses'), +(17075, 'Happiness -- Juvenile fiction'), +(17076, 'Smith, William W.'), +(17077, 'Uncle Wiggily (Fictitious character) -- Juvenile fiction'), +(17078, 'Political science -- Philosophy -- Early works to 1800'), +(17079, 'Mexico'), +(17080, 'Reformation -- Switzerland'), +(17081, 'Landscape drawing'), +(17082, 'Alcohol'), +(17083, 'Sino-Japanese War, 1894-1895'), +(17084, 'London (England) -- History -- 1800-1950'), +(17085, 'Overbeck, Johann Friedrich, 1789-1869'), +(17086, 'Orsay, Alfred Guillaume Gabriel, comte d\', 1801-1852'), +(17087, 'Nuremberg (Germany) -- History -- Sources'), +(17088, 'Blue Ridge Mountains -- Juvenile fiction'), +(17089, 'Europe -- History -- 14th century -- Fiction'), +(17090, 'Philosophical anthropology'), +(17091, 'Baghdad Railway'), +(17092, 'Nobility -- Great Britain -- Fiction'), +(17093, 'Finance, Public -- France'), +(17094, 'Cranial sutures'), +(17095, 'Mormon pioneers -- Biography'), +(17096, 'Working class -- Southern States'), +(17097, 'Beauty, Personal -- Early works to 1800'), +(17098, 'Palestine -- Religion'), +(17099, 'New England -- Drama'), +(17100, 'Christian life -- Juvenile poetry'), +(17101, 'Sailors -- Diseases'), +(17102, 'Irish poetry -- To 1100 -- Translations into English'), +(17103, 'Johnston, J. P. (James Perry), 1852-'), +(17104, 'Halloween -- Juvenile fiction'), +(17105, 'Girls -- Drama'), +(17106, 'Missouri -- Antiquities'), +(17107, 'Moscheles, Charlotte, 1805-1889'), +(17108, 'Motherless families -- Fiction'), +(17109, 'Imagination'), +(17110, 'Mormon Church -- History -- 19th century'), +(17111, 'Wood-carving -- Technique'), +(17112, 'Berkeley, George, 1685-1753. Alciphron'), +(17113, 'Desertion and non-support'), +(17114, 'Hogan, Ben (Benedict), 1841?-'), +(17115, 'United States -- Militia -- Insignia'), +(17116, 'Oceania -- Social life and customs.'), +(17117, 'New Zealand -- History'), +(17118, 'Coal mines and mining'), +(17119, 'Control (Psychology) -- Fiction'), +(17120, 'Netherlands. Koninklijke Landmacht -- Biography'), +(17121, 'Japanese language -- Grammar -- Early works to 1800'), +(17122, 'Neutrality -- Belgium'), +(17123, 'Folklore -- England -- Cornwall (County)'), +(17124, 'Fanfares'), +(17125, 'Automobiles, Military'), +(17126, 'Trees -- Michigan'), +(17127, 'Church of England. Diocese of Durham'), +(17128, 'Snobs and snobbishness -- Juvenile fiction'), +(17129, 'Cebuano language -- Dictionaries -- English'), +(17130, 'Maryland -- History -- Colonial period, ca. 1600-1775'), +(17131, 'Family life -- Australia -- Fiction'), +(17132, 'Frontier and pioneer life -- Tennessee -- Fiction'), +(17133, 'United States -- Census'), +(17134, 'Trials (Perjury) -- England'), +(17135, 'Engineering -- History'), +(17136, 'Blind -- Juvenile fiction'), +(17137, 'Jenolan Caves (N.S.W.)'), +(17138, 'Basque language'), +(17139, 'South Africa -- History'), +(17140, 'United States. Army'), +(17141, 'Municipal engineering'), +(17142, 'Women and peace -- Drama'), +(17143, 'Boutwell, George S. (George Sewall), 1818-1905'), +(17144, 'Catholics -- France -- Biography'), +(17145, 'Estes Park Region (Colo.) -- Social life and customs'), +(17146, 'Children -- Puerto Rico -- Juvenile literature'), +(17147, 'Biscayne Bay (Fla.) -- Description and travel'), +(17148, 'Firearms industry and trade -- Mississippi River Valley'), +(17149, 'Cistercians -- Ireland'), +(17150, 'Missions -- China -- Juvenile fiction'), +(17151, 'Wild Boy of Aveyron'), +(17152, 'Dialect poetry, English -- England -- Lincolnshire'), +(17153, 'London (England) -- History -- 19th century -- Fiction'), +(17154, 'Aztec Ruins National Monument (N.M.)'), +(17155, 'Christian biography -- England'), +(17156, 'American literature -- New York (State) -- New York -- History and criticism'), +(17157, 'Dumplings -- Humor'), +(17158, 'Scotland -- Kings and rulers -- Drama'), +(17159, 'Islamic philosophy -- History'), +(17160, 'Earthquakes -- Philippines'), +(17161, 'Pygmies'), +(17162, 'Imprisonment -- United States -- Statistics'), +(17163, 'Mollusks -- Identification -- Juvenile literature'), +(17164, 'Christianity -- England -- 20th century'), +(17165, 'Bachelors -- Fiction'), +(17166, 'Africa, Central -- Discovery and exploration'), +(17167, 'Du Cros, Simon, active 17th century. Lettre de Monsieur Du Cros à Mylord **** afin de servir de réponse aux impostures de Monsieur le chevalier Temple'), +(17168, 'Morocco'), +(17169, 'Clock and watch making -- Juvenile literature'), +(17170, 'Anansi (Legendary character)'), +(17171, 'Snow -- Juvenile fiction'), +(17172, 'Motion picture actors and actresses'), +(17173, 'Vasari, Giorgio, 1511-1574'), +(17174, 'Feminism -- Literary collections'), +(17175, 'Illumination of books and manuscripts -- Technique'), +(17176, 'Chauffeurs -- Fiction'), +(17177, 'Heraldry -- Fiction'), +(17178, 'Christian socialism'), +(17179, 'Mathematics, Chinese -- Early works to 1800'), +(17180, 'Cello -- Instruction and study'), +(17181, 'Authors, Irish -- 19th century -- Biography'), +(17182, 'Shipping -- Great Lakes (North America)'), +(17183, 'Netherlands -- History -- 1795-1815'), +(17184, 'Airplane crash survival -- Juvenile fiction'), +(17185, 'Wrens -- Juvenile fiction'), +(17186, 'Mzilikazi, Matabele King, 1790-1868 -- Fiction'), +(17187, 'Tanganyika, Lake'), +(17188, 'Takáts, Sándor, 1860-1932. Szalai Barkóczy Krisztina, 1671-1724'), +(17189, 'World Science Fiction Convention (14th : 1956 : New York, N.Y.)'), +(17190, 'Massachusetts'), +(17191, 'Bute, John Patrick Crichton-Stuart, Marquess of, 1847-1900'), +(17192, 'Photomechanical processes'), +(17193, 'Teddy bears -- Juvenile fiction'), +(17194, 'Finance -- India'), +(17195, 'Thailand -- History'), +(17196, 'Water towers -- Fiction'), +(17197, 'University of Oxford -- Students'), +(17198, 'Africa'), +(17199, 'Alcoholism -- Great Britain -- Fiction'), +(17200, 'Mollusks'), +(17201, 'Beck, J. T. (Johann Tobias), 1804-1878'), +(17202, 'Exeter Cathedral'), +(17203, 'Church architecture -- Turkey -- Istanbul'), +(17204, 'Marshals -- Great Britain -- Biography'), +(17205, 'Cliff-dwellings -- Arizona -- Tonto National Monument -- Guidebooks'), +(17206, 'Goldsmith, Oliver, 1730?-1774 -- Fiction'), +(17207, 'Italian poetry -- 16th century -- Translations into German'), +(17208, 'Practical jokes -- Fiction'), +(17209, 'Jesus Christ -- Crucifixion'), +(17210, 'Verdun (France) -- Guidebooks'), +(17211, 'Millionaires -- Fiction'), +(17212, 'Greece -- Intellectual life'), +(17213, 'Future punishment -- Controversial literature'), +(17214, 'Russia -- History -- 1801-1917 -- Fiction'), +(17215, 'Sexual ethics -- Early 20th century'), +(17216, 'Martí, José, 1853-1895'), +(17217, 'French drama (Comedy) -- 18th century'), +(17218, 'Coronations -- Great Britain'), +(17219, 'Imaginary places -- Fiction'), +(17220, 'Short stories, Hungarian -- Translations into Finnish'), +(17221, 'Witchcraft -- Ireland'), +(17222, 'Piedmont (Italy) -- Description and travel'), +(17223, 'Orchestral music -- Analysis, appreciation'), +(17224, 'Great Britain -- History -- William I, 1066-1087 -- Fiction'), +(17225, 'Insanity (Law)'), +(17226, 'Germany -- History -- 18th century -- Fiction'), +(17227, 'Selwyn, George Augustus, 1719-1791 -- Correspondence'), +(17228, 'Silfer, Giorgio, 1949-'), +(17229, 'Church architecture -- England -- London'), +(17230, 'Feudalism -- France -- Fiction'), +(17231, 'Russia -- History -- Nicholas II, 1894-1917'), +(17232, 'Crusades -- Eighth, 1270 -- Fiction'), +(17233, 'Frontier and pioneer life -- Nebraska -- Fiction'), +(17234, 'Victoria, Queen of Great Britain, 1819-1901 -- Drama'), +(17235, 'Bubbles'), +(17236, 'Cornplanter, Seneca chief, 1732?-1836'), +(17237, 'Japanese literature -- To 1868'), +(17238, 'Dalkeith (Scotland) -- Fiction'), +(17239, 'United States. Army. Wisconsin Infantry Regiment, 24th (1862-1865)'), +(17240, 'Ballads, Portuguese'), +(17241, 'Eleusinian mysteries'), +(17242, 'Hart, Michael, 1947-2011'), +(17243, 'Kimberley (South Africa) -- History -- Siege, 1899-1900'), +(17244, 'Salmon -- Juvenile literature'), +(17245, 'Agincourt, Battle of, Agincourt, France, 1415 -- Poetry'), +(17246, 'Germans -- Pennsylvania'), +(17247, 'Tongue twisters'), +(17248, 'A. J. Fuller (Ship)'), +(17249, 'Ussing, Johan Louis, 1820-1905'), +(17250, 'Blake, Robert, 1599-1657 -- Juvenile fiction'), +(17251, 'Punishment -- Italy'), +(17252, 'Juvenile delinquency -- New Zealand'), +(17253, 'Indians of North America -- Wars'), +(17254, 'Kingdom of God -- Early works to 1800'), +(17255, 'Erotic poetry, Portuguese'), +(17256, 'Radiotelephone -- Juvenile fiction'), +(17257, 'Gawain (Legendary character) -- Poetry'), +(17258, 'Decatur, Stephen, 1779-1820 -- Correspondence'), +(17259, 'Tunneling'), +(17260, 'Cubomedusae'), +(17261, 'French poetry -- Translations into German'), +(17262, 'Thomas, Edward, 1878-1917'), +(17263, 'Tribes -- Great Britain'), +(17264, 'Castaways -- Atlantic Ocean'), +(17265, 'Weeds -- Juvenile fiction'), +(17266, 'Slave trade -- Africa -- Fiction'), +(17267, 'Atonement'), +(17268, 'Agkistrodon piscivorus'), +(17269, 'Fraser family'), +(17270, 'Eugenics -- United States'), +(17271, 'Naval tactics'), +(17272, 'Eskimos -- Juvenile literature'), +(17273, 'Cotton manufacture -- United States'), +(17274, 'Eliot, George, 1819-1880 -- Exhibitions'), +(17275, 'Saratoga Campaign, N.Y., 1777 -- Juvenile fiction'), +(17276, 'Legislation -- United States'), +(17277, 'Women musicians -- Fiction'), +(17278, 'Telescopes'), +(17279, 'Vaccinia -- Early works to 1800'), +(17280, 'Forgery -- Fiction'), +(17281, 'Religions -- Relations'), +(17282, 'United States -- Antiquities'), +(17283, 'Reason'), +(17284, 'Tariff -- United States -- History'), +(17285, 'Horton family'), +(17286, 'Indians of North America -- Education -- Juvenile fiction'), +(17287, 'Indonesia -- Description and travel -- Early works to 1800'), +(17288, 'Child rearing -- England -- History -- 18th century'), +(17289, 'Educational change -- History'), +(17290, 'Politicians -- Germany -- Biography'), +(17291, 'Ecstasy'), +(17292, 'Commercial catalogs -- Canada'), +(17293, 'Egyptology -- History'), +(17294, 'Fishes'), +(17295, 'Schools -- Drama'), +(17296, 'Islam and state -- History'), +(17297, 'Gutenberg, Johann, 1397?-1468'), +(17298, 'Medicine -- Virginia'), +(17299, 'Hawthorne, Nathaniel, 1804-1864 -- Family'), +(17300, 'Pharmacy -- Early works to 1800'), +(17301, 'London City Mission'), +(17302, 'Scottish poetry -- Translations into Finnish'), +(17303, 'Industrial Workers of the World'), +(17304, 'Children\'s books -- Catalogs'), +(17305, 'Pottery -- Juvenile literature'), +(17306, 'North Carolina -- Biography'), +(17307, 'Nemesis (Steamer)'), +(17308, 'China painting'), +(17309, 'Magic tricks -- History'), +(17310, 'Sanskrit drama -- Translations into English'), +(17311, 'Methodist Church (Canada)'), +(17312, 'Homestead Strike, Homestead, Pa., 1892'), +(17313, 'Germany -- Foreign relations -- France'), +(17314, 'Odysseus, King of Ithaca (Mythological character)'), +(17315, 'Cree language -- Dictionaries -- English'), +(17316, 'Bahai Faith -- History'), +(17317, 'Peace -- Religious aspects -- Christianity'), +(17318, 'Sumner, Charles, 1811-1874 -- Poetry'), +(17319, 'Carlsbad Caverns National Park (N.M.)'), +(17320, 'Church buildings -- Netherlands'), +(17321, 'Germoe (England) -- History'), +(17322, 'Leather -- Juvenile literature'), +(17323, 'Sweden -- History -- Frederick I, 1720-1751 -- Fiction'), +(17324, 'Chronology, Historical'), +(17325, 'Anderson, Mary, 1859-1940'), +(17326, 'Philosophers -- China'), +(17327, 'Black Forest (Germany) -- Fiction'), +(17328, 'Pony express -- Juvenile fiction'), +(17329, 'Gloucester Cathedral'), +(17330, 'Church of England -- Humor'), +(17331, 'Dialogues, Latin'), +(17332, 'English language -- 19th century -- Synonyms and antonyms'), +(17333, 'Folk songs, English -- Jamaica'), +(17334, 'Captain (horse)'), +(17335, 'European drama -- History and criticism'), +(17336, 'Embalming -- History'), +(17337, 'Terence -- Translations into English'), +(17338, 'Wealth'), +(17339, 'Riis, Jacob A. (Jacob August), 1849-1914'), +(17340, 'Hare, Augustus J. C. (Augustus John Cuthbert), 1834-1903'), +(17341, 'Mormon women -- Fiction'), +(17342, 'Tripoli (Libya) -- History -- 20th century -- Juvenile fiction'), +(17343, 'Andrew, Apostle, Saint -- Legends'), +(17344, 'Posters -- History'), +(17345, 'Rizal, José, 1861-1896 -- Correspondence'), +(17346, 'Indian women -- North America -- Fiction'), +(17347, 'German fiction -- Translations into Dutch'), +(17348, 'Glaciers -- Washington (State) -- Rainier, Mount'), +(17349, 'Bar Harbor (Me.) -- Fiction'), +(17350, 'Pure Land Buddhism -- Doctrines -- Early works to 1800'), +(17351, 'Haiti -- Officials and employees -- Salaries, etc. -- Fiction'), +(17352, 'Assisi (Italy)'), +(17353, 'Jews -- History -- 586 B.C.-70 A.D.'), +(17354, 'Wills -- Juvenile fiction'), +(17355, 'Taylor, John, 1808-1887'), +(17356, 'Great Britain -- Politics and government -- 1509-1547'), +(17357, 'Education -- Social aspects'), +(17358, 'Lafayette, Marie Joseph Paul Yves Roch Gilbert Du Motier, marquis de, 1757-1834 -- Juvenile literature'), +(17359, 'Bible stories, English -- Old Testament'), +(17360, 'Istria (Croatia and Slovenia) -- Description and travel'), +(17361, 'Cockroaches'), +(17362, 'Fairy tales -- Romania'), +(17363, 'English language -- Provincialisms -- England -- Somerset'), +(17364, 'Mexico -- History -- Conquest, 1519-1540 -- Juvenile fiction'), +(17365, 'Religious architecture'), +(17366, 'Warships -- Salvaging -- Juvenile fiction'), +(17367, 'Garrison, William Lloyd, 1805-1879'), +(17368, 'Legends -- Erzgebirge (Czech Republic and Germany)'), +(17369, 'United States -- Politics and government -- 1865-1877'), +(17370, 'America -- Discovery and exploration -- Juvenile fiction'), +(17371, 'Vermont -- History -- To 1791 -- Fiction'), +(17372, 'Mentally ill -- Care -- New Brunswick'), +(17373, 'Superstition -- History -- To 1500'), +(17374, 'Bemis, Alice Cogswell, 1845-1917'), +(17375, 'West (U.S.) -- Social life and customs'), +(17376, 'France -- History -- 1789-1793'), +(17377, 'South African War, 1899-1902 -- Poetry'), +(17378, 'English drama -- Bibliography'), +(17379, 'Time management'), +(17380, 'Aristocracy (Social class) -- Ireland -- Juvenile fiction'), +(17381, 'Educational sociology'), +(17382, 'Globe Mutiny, 1824'), +(17383, 'Laity -- Church of England'), +(17384, 'Kleist, Heinrich von, 1777-1811'), +(17385, 'Peace treaties -- Drama'), +(17386, 'Netherlands -- History -- House of Habsburg, 1477-1556 -- Fiction'), +(17387, 'Great Britain. Army. Highland Light Infantry'), +(17388, 'San Antonio (Tex.) -- Pictorial works'), +(17389, 'Computer hackers -- Australia -- Biography'), +(17390, 'Austria -- Commerce'), +(17391, 'Children -- Conduct of life'), +(17392, 'Oudewater (Netherlands)'), +(17393, 'Shaw, Rafael'), +(17394, 'Heaven -- Biblical teaching'), +(17395, 'Stone age -- Great Britain'), +(17396, 'Dance -- Moral and ethical aspects -- Early works to 1800'), +(17397, 'Mansfield, Joseph K. F. (Joseph King Fenno), 1803-1862'), +(17398, 'MacNab, Archibald, 1778?-1860'), +(17399, 'Church and state -- Netherlands'), +(17400, 'Finnish drama -- Translations into Swedish'), +(17401, 'Great Britain -- History -- Poetry'), +(17402, 'Buenos Aires (Argentina) -- History'), +(17403, 'Tales -- Southern States'), +(17404, 'Cities and towns -- Growth -- Fiction'), +(17405, 'Mineral waters -- Germany -- Nassau (Duchy)'), +(17406, 'Washoe Indians -- Religion'), +(17407, 'Challenger, Professor (Fictitious character) -- Fiction'), +(17408, 'Greece -- History -- War of Independence, 1821-1829 -- Fiction'), +(17409, 'Eskimos -- Missions'), +(17410, 'Electronic book readers'), +(17411, 'Sexual dimorphism (Animals)'), +(17412, 'Fox hunting -- Fiction'), +(17413, 'Gout -- Treatment -- Early works to 1800'), +(17414, 'Predpriiatie (Ship)'), +(17415, 'American poetry -- Adaptations'), +(17416, 'Piano -- History'), +(17417, 'Libraries -- History -- 1400-1600'), +(17418, 'Folklore -- England -- Cheshire'), +(17419, 'Statesmen -- United States'), +(17420, 'Women -- France -- Biography'), +(17421, 'Constitutions -- Portugal'), +(17422, 'Locomotives'), +(17423, 'Lighting'), +(17424, 'Sewing'), +(17425, 'Literature, Medieval'), +(17426, 'South Australia -- Social conditions'), +(17427, 'God -- Proof'), +(17428, 'Railroad travel -- Drama'), +(17429, 'Confederate States of America. Army. Lumsden\'s Battery'), +(17430, 'Germanic languages'), +(17431, 'Windmills -- History'), +(17432, 'Leonidas, King of Sparta, -480 B.C. -- Fiction'), +(17433, 'San Francisco (Calif.) -- Biography'), +(17434, 'Nursery rhymes, American'), +(17435, 'Folklore -- England -- Northumberland'), +(17436, 'London (England) -- Social conditions -- 19th century -- Fiction'), +(17437, 'Natural history -- Nicaragua'), +(17438, 'Elizabeth I, Queen of England, 1533-1603 -- Fiction'), +(17439, 'Wood -- Testing'), +(17440, 'Women in the Bible -- Biography'), +(17441, 'Fès (Morocco) -- Description and travel'), +(17442, 'Gunpowder'), +(17443, 'Bull Run, 1st Battle of, Va., 1861 -- Juvenile fiction'), +(17444, 'Tales -- South Africa'), +(17445, 'Lawyers in literature'), +(17446, 'Trials (Murder) -- Russia -- Fiction'), +(17447, 'Veins -- Diseases'), +(17448, 'Astral projection -- Fiction'), +(17449, 'Dutch drama -- Early modern, 1500-1700'), +(17450, 'Authors, American -- Homes and haunts -- New England'), +(17451, 'Sex customs -- United States -- History -- 19th century'), +(17452, 'Arithmetic -- Humor'), +(17453, 'Tobacco -- Virginia -- History'), +(17454, 'Hunting -- Early works to 1800'), +(17455, 'Charity-schools -- Early works to 1800'), +(17456, 'English Drama (Tragedy)'), +(17457, 'Nevada -- Juvenile fiction'), +(17458, 'Iroquois Indians -- Kings and rulers -- Folklore'), +(17459, 'F.A. Brockhaus Verlag Leipzig'), +(17460, 'Embryology, Human'), +(17461, 'Great Britain -- History -- Lancaster and York, 1399-1485 -- Sources'), +(17462, 'Learning -- Juvenile fiction'), +(17463, 'France -- Biography -- Humor'), +(17464, 'Columba, Saint, 521-597'), +(17465, 'Entomology -- California -- Periodicals'), +(17466, 'Lau language'), +(17467, 'Steam-boilers, Water-tube'), +(17468, 'Afrikaners'), +(17469, 'France -- History -- 17th century -- Fiction'), +(17470, 'Sacramento Mountain salamander'), +(17471, 'Boatbuilding -- Juvenile fiction'), +(17472, 'Feudalism -- Great Britain'), +(17473, 'France -- History -- Revolution, 1789-1799 -- Biography'), +(17474, 'High school dropouts'), +(17475, 'Short stories, Czech -- Translations into German'), +(17476, 'Transuranium elements -- Synthesis'), +(17477, 'Exiles -- Juvenile fiction'), +(17478, 'Medicine, Experimental'), +(17479, 'Great Britain. Army. Light Dragoons, 3rd'), +(17480, 'Clock and watch making -- United States'), +(17481, 'Caste -- India'), +(17482, 'Iceland -- History'), +(17483, 'France -- Social life and customs -- 18th century'), +(17484, 'Cornwall (England : County) -- Social life and customs'), +(17485, 'Middle Ages -- Sources'), +(17486, 'Hawaii Volcanoes National Park (Hawaii)'), +(17487, 'Boys -- Societies and clubs -- Juvenile fiction'), +(17488, 'Composers -- Russia'), +(17489, 'England -- Antiquities'), +(17490, 'Plassey, Battle of, Palashi, India, 1757'), +(17491, 'Tobacco pipes'), +(17492, 'Kitchens'), +(17493, 'Titanic (Steamship) -- Poetry'), +(17494, 'Physical instruments'), +(17495, 'Yukon River Valley (Yukon and Alaska) -- Juvenile fiction'), +(17496, 'United States -- Armed Forces -- Military life'), +(17497, 'Italian language -- Grammar'), +(17498, 'Carlos, Prince of Asturias, 1545-1568 -- Drama'), +(17499, 'Mountain people -- North Carolina -- Fiction'), +(17500, 'Bahai Faith -- Germany'), +(17501, 'Letters to the editor -- Portugal'), +(17502, 'Songs, Scottish Gaelic -- Texts'), +(17503, 'Future life -- Christianity -- Bibliography'), +(17504, 'Ghosts -- Great Britain'), +(17505, 'Castration'), +(17506, 'Textile machinery industry -- Catalogs'), +(17507, 'Great Britain -- Politics and government -- 1702-1714 -- Periodicals'), +(17508, 'Farms -- Fiction'), +(17509, 'Books -- Prices -- History'), +(17510, 'Booksellers\' catalogs -- Pennsylvania -- Philadelphia'), +(17511, 'Augustus, Emperor of Rome, 63 B.C.-14 A.D.-- Influence'), +(17512, 'Nature study -- Humor'), +(17513, 'Employers\' liability -- Congresses'), +(17514, 'Armenia -- Bibliography'), +(17515, 'Readers -- World War, 1914-1918'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(17516, 'Thuringia (Germany) -- Fiction'), +(17517, 'Utilitarianism'), +(17518, 'Political oratory -- Juvenile literature'), +(17519, 'Coloring books -- Specimens'), +(17520, 'Teachers -- Salaries, etc. -- Massachusetts -- Boston'), +(17521, 'Constellations -- Juvenile fiction'), +(17522, 'Buddhism -- Early works to 1800'), +(17523, 'Spiritualists -- England -- Fiction'), +(17524, 'Sports -- Periodicals'), +(17525, 'Sarfatti, Roberto, 1900-1917'), +(17526, 'Denmark -- Description and travel'), +(17527, 'Plants -- Assimilation'), +(17528, 'Psychology -- Outlines, syllabi, etc.'), +(17529, 'Sudermann, Hermann, 1857-1928 -- Translations into English'), +(17530, 'Auburn (Mass. : Town) -- Genealogy'), +(17531, 'Markets -- England'), +(17532, 'Urso, Camilla, 1842-1902'), +(17533, 'Rotterdam (Netherlands) -- History'), +(17534, 'Asiatic elephant -- Sri Lanka'), +(17535, 'United States -- Civilization -- 1865-1918'), +(17536, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Pennsylvania Infantry -- 191st'), +(17537, 'Franciscans -- Great Britain'), +(17538, 'Decorative arts'), +(17539, 'Great Britain -- Poetry'), +(17540, 'Neuhof, Théodore-Antoine, baron de, 1690-1756'), +(17541, 'Maistre, Joseph Marie, comte de, 1753-1821'), +(17542, 'Patience -- Religious aspects -- Christianity'), +(17543, 'German literature -- Klettgau Valley (Germany and Switzerland)'), +(17544, 'Depression, Mental'), +(17545, 'Recreation -- Handbooks, manuals, etc.'), +(17546, 'Newsboys'), +(17547, 'Greek drama (Tragedy) -- History and criticism -- Theory, etc.'), +(17548, 'Variable stars'), +(17549, 'Mississippi River -- Sources'), +(17550, 'Earthquakes -- Religious aspects -- Early works to 1800'), +(17551, 'Eschatology, Egyptian'), +(17552, 'Glaucoma'), +(17553, 'Christian saints -- Legends'), +(17554, 'Terry, Ellen, Dame, 1847-1928'), +(17555, 'Blood cells -- Anatomy and histology'), +(17556, 'United States. Army -- Recruiting, enlistment, etc. -- Civil War, 1861-1865'), +(17557, 'Catherine I, Empress of Russia, 1684-1727 -- Fiction'), +(17558, 'Bath (England) -- Drama'), +(17559, 'Richard III, King of England, 1452-1485 -- Drama'), +(17560, 'Public schools'), +(17561, 'Christian pilgrims and pilgrimages -- England -- Winchester'), +(17562, 'African American families -- Fiction'), +(17563, 'Flour industry -- Equipment and supplies -- Catalogs'), +(17564, 'Lander, John, 1807-1839'), +(17565, 'Tourcoing, Battle of, Tourcoing, France, 1794'), +(17566, 'Balkan Peninsula -- History'), +(17567, 'Congo (Democratic Republic) -- Politics and government'), +(17568, 'Burial -- Québec (Province) -- Montréal'), +(17569, 'China -- Social conditions'), +(17570, 'Names, Personal'), +(17571, 'Heresy -- Juvenile fiction'), +(17572, 'Dante Alighieri, 1265-1321 -- Adaptations'), +(17573, 'Carlisle Cathedral (Carlisle, England)'), +(17574, 'Alaska-Yukon-Pacific Exposition (1909 : Seattle, Wash.)'), +(17575, 'Canadian essays -- 19th century'), +(17576, 'Surgery -- Periodicals'), +(17577, 'West (U.S.) -- Poetry'), +(17578, 'Turkey -- Juvenile fiction'), +(17579, 'Solar ovens -- Handbooks, manuals, etc.'), +(17580, 'Sudan -- Discovery and exploration'), +(17581, 'Motion pictures -- Production and direction'), +(17582, 'Crockett, Davy, 1786-1836'), +(17583, 'French language -- Canada -- Foreign words and phrases -- English'), +(17584, 'Mentana, Battle of, Mentana, Italy, 1867'), +(17585, 'Pharmacists -- Early works to 1800'), +(17586, 'Ibsen, Henrik, 1828-1906 -- Parodies, imitations, etc.'), +(17587, 'Natural Bridges National Monument (Utah) -- Guidebooks'), +(17588, 'Birmingham (England)'), +(17589, 'Australia -- History -- 1788-1900 -- Fiction'), +(17590, 'Merchant marine'), +(17591, 'Menstruation'), +(17592, 'Vermont -- Poetry'), +(17593, 'Hecht, Ben, 1893-1964 -- Homes and haunts -- Illinois -- Chicago'), +(17594, 'Fires'), +(17595, 'Greek poetry -- Translations into French'), +(17596, 'Washington (D.C.) -- Fiction'), +(17597, 'Advertising -- Baking powder'), +(17598, 'Constitution (Frigate)'), +(17599, 'Composers -- France -- Correspondence'), +(17600, 'Legal stories, English'), +(17601, 'Great Britain -- History -- 17th century -- Fiction'), +(17602, 'Portugal -- History -- Joseph, 1750-1777 -- Fiction'), +(17603, 'Bagpipe -- Scotland'), +(17604, 'Witchcraft -- Massachusetts -- Salem -- History -- 17th century'), +(17605, 'Psychology, Industrial'), +(17606, 'Women, Germanic -- History'), +(17607, 'Miller, Hugh, 1802-1856'), +(17608, 'Books -- Reviews'), +(17609, 'Upper class -- England -- Juvenile fiction'), +(17610, 'Maimon, Salomon, 1754-1800'), +(17611, 'Bryce Canyon National Park (Utah) -- Guidebooks'), +(17612, 'Meteors'), +(17613, 'United States -- Civilization -- 1918-1945'), +(17614, 'Constitutions -- Iowa'), +(17615, 'Alcott, Amos Bronson, 1799-1888'), +(17616, 'Mormons -- Illinois -- Nauvoo'), +(17617, 'Kartini, Raden Adjeng, 1879-1904 -- Correspondence'), +(17618, 'Poker'), +(17619, 'Educators -- Netherlands -- Biography'), +(17620, 'Lucca (Italy) -- Fiction'), +(17621, 'Steam shovels'), +(17622, 'Nuclear energy -- Popular works'), +(17623, 'World War, 1914-1918 -- Belgium -- Antwerp'), +(17624, 'Arachnida -- Puerto Rico -- Classification'), +(17625, 'Essex (England) -- Description and travel'), +(17626, 'Astronomers -- United States -- Biography'), +(17627, 'Melville, Andrew, 1545-1622'), +(17628, 'Königgrätz, Battle of, Sadová, Czech Republic, 1866'), +(17629, 'Lord\'s Supper -- History -- 19th century'), +(17630, 'Xerxes I, King of Persia, 519-465 or 4 B.C.'), +(17631, 'Farm engines'), +(17632, 'Trios (Piano, flute, violin)'), +(17633, 'Fortification -- France -- History'), +(17634, 'Children -- Hungary -- Juvenile literature'), +(17635, 'Greenland -- Discovery and exploration -- Danish'), +(17636, 'Bayonets'), +(17637, 'Bible -- Miscellanea'), +(17638, 'Plumbing'), +(17639, 'Latin America -- Civilization'), +(17640, 'Florida -- History -- Spanish colony, 1565-1763 -- Fiction'), +(17641, 'Flanders (Belgium : Province) -- History'), +(17642, 'Trials (Treason) -- Jerusalem'), +(17643, 'Disciples of Christ -- Doctrines'), +(17644, 'Real estate development -- California'), +(17645, 'Indians of North America -- Washington (State)'), +(17646, 'African Americans -- Folklore'), +(17647, 'Pastoral poetry, Greek -- Translations into Swedish'), +(17648, 'French essays -- Translations into Portuguese'), +(17649, 'Prose poems, French'), +(17650, 'Letter writing -- Fiction'), +(17651, 'Landscape architecture -- Exhibitions'), +(17652, 'Engraving -- Portugal'), +(17653, 'Jesus Christ -- Meditations'), +(17654, 'Nibelungenlied -- Adaptations'), +(17655, 'Hymns, Latin -- History and criticism'), +(17656, 'Oceania -- Discovery and exploration'), +(17657, 'Castles -- Germany -- Bavaria'), +(17658, 'Napoleon I, Emperor of the French, 1769-1821 -- Correspondence'), +(17659, 'Crime -- United States'), +(17660, 'Cotton farmers -- Fiction'), +(17661, 'Mexico -- Juvenile fiction'), +(17662, 'Dartmoor (England) -- Description and travel'), +(17663, 'Authors, Finnish -- 20th century -- Biography'), +(17664, 'Great Britain. Army. East Yorkshire Regiment'), +(17665, 'London (England) -- Intellectual life'), +(17666, 'Travel -- History'), +(17667, 'Bunyan, John, 1628-1688. Pilgrim\'s progress'), +(17668, 'Pacific Coast -- Forestry'), +(17669, 'Marine animals -- Great Britain'), +(17670, 'Photography, Artistic -- Periodicals'), +(17671, 'Argonauts (Greek mythology) -- Drama'), +(17672, 'Cryptography'), +(17673, 'French drama -- 19th century -- History and criticism'), +(17674, 'Taste'), +(17675, 'Fort Laramie (Wyo.)'), +(17676, 'Authors, American -- Homes and haunts -- Massachusetts -- Concord'), +(17677, 'Rio Grande Valley (Colo.-Mexico and Tex.) -- Description and travel'), +(17678, 'Public lands -- Texas'), +(17679, 'Socinianism -- Early works to 1800'), +(17680, 'Screw-cutting machines -- History'), +(17681, 'Names -- United States'), +(17682, 'Trials (Witchcraft)'), +(17683, 'Medical misconceptions'), +(17684, 'Drinking of alcoholic beverages -- United States'), +(17685, 'Flying-machines'), +(17686, 'Great Britain -- Politics and government -- 1910-1936'), +(17687, 'Telegraph -- Juvenile fiction'), +(17688, 'African Americans -- Virginia -- Fiction'), +(17689, 'Almanacs, English -- England -- London'), +(17690, 'Tribes -- Africa -- Juvenile fiction'), +(17691, 'Ocean travel -- History -- 18th century'), +(17692, 'Barchester (England : Imaginary place) -- Fiction'), +(17693, 'Hockey'), +(17694, 'Love stories, English'), +(17695, 'Cowan\'s Ford, Battle of, N.C., 1781'), +(17696, 'Da xue'), +(17697, 'German literature -- History and criticism'), +(17698, 'Philosophy and religion -- Study and teaching (Secondary) -- United States'), +(17699, 'Mammals -- Indonesia -- Natuna Islands'), +(17700, 'Faust, -approximately 1540 -- Legends'), +(17701, 'Bishop, Nathaniel H. (Nathaniel Holmes), 1837-1902 -- Travel -- Canada, Eastern'), +(17702, 'Portrait painters -- Fiction'), +(17703, 'Children -- Europe'), +(17704, 'Constitutional history -- Greece -- Athens -- To 146 B.C.'), +(17705, 'Tales -- France'), +(17706, 'Tarakanova, Elizaveta, 1745-1775 -- Fiction'), +(17707, 'Lecouvreur, Adrienne, 1692-1730 -- Drama'), +(17708, 'Machine-shop practice'), +(17709, 'Electricity in agriculture'), +(17710, 'Kingdom of the Two Sicilies -- History -- Revolution, 1848'), +(17711, 'Florida -- History -- Huguenot colony, 1562-1565'), +(17712, 'Apostles -- Biography -- Juvenile literature'), +(17713, 'Ethnology -- Taiwan'), +(17714, 'Kai Lung (Fictitious character) -- Fiction'), +(17715, 'Accidents -- Jura Mountains (France and Switzerland)'), +(17716, 'Poutré, Félix, 1814-1885 -- Drama'), +(17717, 'Architecture -- Sketch-books'), +(17718, 'Ballads, English -- England -- Bibliography'), +(17719, 'Animals -- South Africa -- Juvenile fiction'), +(17720, 'Du Bois-Reymond, Paul, 1831-1889'), +(17721, 'Fortification'), +(17722, 'Turkey -- History -- 1829-1878'), +(17723, 'Epitaphs'), +(17724, 'Argentina -- History -- 1817-1860'), +(17725, 'Coué, Emile, 1857-1926'), +(17726, 'Watercolor painting, German'), +(17727, 'Sepulchral monuments'), +(17728, 'Apparitions -- England -- Canterbury -- Case studies'), +(17729, 'Lake District (England) -- Description and travel'), +(17730, 'Hampshire (England) -- Description and travel'), +(17731, 'France -- Church history -- 19th century'), +(17732, 'Political parties -- United States'), +(17733, 'Franklin, Benjamin, 1706-1790 -- Humor'), +(17734, 'Boone, Daniel, 1734-1820 -- Juvenile fiction'), +(17735, 'Oehlenschläger, Adam, 1779-1850'), +(17736, 'Great Britain. Army. Regiment of Foot, 14th (Buckinghamshire)'), +(17737, 'Afghanistan -- History'), +(17738, 'Chicago (Ill.) -- Social conditions -- 19th century -- Fiction'), +(17739, 'Christianity and other religions'), +(17740, 'Crystal River (Colo.)'), +(17741, 'Fiancés -- Fiction'), +(17742, 'Great Britain. Army. Jewish Legion'), +(17743, 'Germany -- Social policy -- History'), +(17744, 'Art objects -- Conservation and restoration'), +(17745, 'Altruism'), +(17746, 'Airships -- Periodicals'), +(17747, 'Massim (Papua New Guinean people) -- Rites and ceremonies'), +(17748, 'Arius, -approximately 336 -- Fiction'), +(17749, 'Anesthesia in obstetrics'), +(17750, 'Lydia E. Pinkham Medicine Company'), +(17751, 'Moon -- Early works to 1800'), +(17752, 'Hymns, English -- Early works to 1800'), +(17753, 'Computer hackers'), +(17754, 'Schoolboys -- Juvenile fiction'), +(17755, 'Stepfathers -- Fiction'), +(17756, 'Carpentry -- Juvenile fiction'), +(17757, 'Lead burning'), +(17758, 'Kegan Paul, Trench & Co. -- Catalogs'), +(17759, 'Hammond-Harwood House (Annapolis, Md.)'), +(17760, 'France -- Social life and customs -- 1789-1815'), +(17761, 'Dramatists -- Juvenile fiction'), +(17762, 'Wieland, Christoph Martin, 1733-1813'), +(17763, 'Science -- Readers'), +(17764, 'Sanitation -- England -- London -- History -- 19th century'), +(17765, 'Architecture, Renaissance'), +(17766, 'Canada -- History -- 1763-1867'), +(17767, 'Colorado -- Guidebooks'), +(17768, 'Philosophers, Modern -- England -- Biography'), +(17769, 'Friendly visiting'), +(17770, 'Dundonald, Thomas Cochrane, Earl of, 1775-1860'), +(17771, 'Parent and child'), +(17772, 'Puzzles -- Juvenile literature'), +(17773, 'Craft, William'), +(17774, 'Thwaites, Reuben Gold, 1853-1913 -- Travel -- Ohio River'), +(17775, 'Argentina -- Economic conditions'), +(17776, 'Jews -- Belarus -- Polatsk -- Biography'), +(17777, 'Mechanical movements'), +(17778, 'Stendhal, 1783-1842'), +(17779, 'Polar regions -- Juvenile fiction'), +(17780, 'Arizona -- Description and travel'), +(17781, 'United States -- History -- Civil War, 1861-1865 -- Regimental histories -- Texas Cavalry -- 8th'), +(17782, 'British -- Russia -- Fiction'), +(17783, 'Exposition internationale de Milan (1906)'), +(17784, 'Botany, Economic'), +(17785, 'Tsushima, Battle of, 1905'), +(17786, 'Post-impressionism (Art)'), +(17787, 'Daniels, Thomas -- Trials, litigation, etc.'), +(17788, 'Marbled papers'), +(17789, 'Mammals -- Nebraska'), +(17790, 'Convents -- Fiction'), +(17791, 'Tennis courts'), +(17792, 'Louisiana Purchase Exposition (1904 : Saint Louis, Mo.)'), +(17793, 'Schumann, Robert, 1810-1856 -- Juvenile literature'), +(17794, 'Women -- Germany -- Early works to 1800'), +(17795, 'Freemasons -- Legal status, laws, etc.'), +(17796, 'Puritans'), +(17797, 'Urban ecology (Sociology) -- Japan'), +(17798, 'Country life -- England -- Humor'), +(17799, 'Minnesota -- Fiction'), +(17800, 'Bible. Timothy, 1st, IV, 16 -- Sermons'), +(17801, 'Carlyle, Thomas, 1795-1881'), +(17802, 'Immigrant children -- Fiction'), +(17803, 'Children -- Conduct of life -- Juvenile literature'), +(17804, 'Education -- Ireland -- History'), +(17805, 'Public libraries'), +(17806, 'Paul, the Apostle, Saint -- Fiction'), +(17807, 'Switzerland -- Description and travel -- Juvenile literature'), +(17808, 'Humanities'), +(17809, 'Natural history -- India -- Andaman and Nicobar Islands'), +(17810, 'Art, Greek -- History'), +(17811, 'Mayflower (Ship) -- Fiction'), +(17812, 'First loves -- Fiction'), +(17813, 'Mencius. Mengzi'), +(17814, 'Slave narratives -- Georgia'), +(17815, 'Poets, English -- Homes and haunts -- Europe'), +(17816, 'Portuguese language -- Dictionaries'), +(17817, 'Illinois -- Politics and government -- 1865-1950'), +(17818, 'Burlesques'), +(17819, 'Lameness in horses'), +(17820, 'Maupassant, Guy de, 1850-1893 -- Translations into English'), +(17821, 'United States -- Politics and government -- 1783-1809'), +(17822, 'Colorado -- Antiquities'), +(17823, 'Pontiac\'s Conspiracy, 1763-1765 -- Juvenile fiction'), +(17824, 'Stuffed animals (Toys) -- Juvenile fiction'), +(17825, 'Folklore -- Asia'), +(17826, 'Greece -- Social life and customs'), +(17827, 'Venezuela -- Juvenile fiction'), +(17828, 'Military orders'), +(17829, 'Chimpanzees'), +(17830, 'United States. Army. Rhode Island Light Artillery Regiment, 1st (1861-1865). Battery A'), +(17831, 'Finance -- New York (State)'), +(17832, 'Cotton machinery'), +(17833, 'Positivism -- Fiction'), +(17834, 'Vocabulary'), +(17835, 'Great Britain -- Juvenile fiction'), +(17836, 'Briggs, Thomas, 1832-1917'), +(17837, 'Claudianus, Claudius -- Translations into English'), +(17838, 'Steel'), +(17839, 'Lutheran Church -- Hymns -- History and criticism'), +(17840, 'United States -- History -- Civil War, 1861-1865 -- Participation, African American'), +(17841, 'Cathédrale de Chartres -- History'), +(17842, 'Literature, Modern -- 20th century'), +(17843, 'Bunker Hill, Battle of, Boston, Mass., 1775'), +(17844, 'Jealousy -- Drama'), +(17845, 'Wampum'), +(17846, 'Achilles (Mythological character)'), +(17847, 'Reflecting telescopes'), +(17848, 'Haunted houses -- France -- Drama'), +(17849, 'Buchanan, George, 1506-1582'), +(17850, 'N.Y. City Lunatic Asylum'), +(17851, 'Gases, Asphyxiating and poisonous -- War use'), +(17852, 'English language -- Middle English, 1100-1500 -- Dictionaries'), +(17853, 'Oulu (Finland) -- Fiction'), +(17854, 'Women dog owners -- Juvenile poetry'), +(17855, 'Publishers and publishing -- Great Britain -- Correspondence'), +(17856, 'Saving and investment'), +(17857, 'Cecco d\'Ascoli, 1269-1327 -- Fiction'), +(17858, 'London (England) -- Population'), +(17859, 'Penguins'), +(17860, 'Family life'), +(17861, 'Field, Eugene, 1850-1895'), +(17862, 'Aristocracy (Social class) -- Russia -- Fiction'), +(17863, 'Folk literature, English'), +(17864, 'Slavery -- Brazil -- Fiction'), +(17865, 'Libraries -- History'), +(17866, 'Bradstreet, Anne, 1612?-1672'), +(17867, 'Swedes -- Canada'), +(17868, 'Conjoined twins -- Fiction'), +(17869, 'Amusements -- France -- Paris'), +(17870, 'Drama, Medieval'), +(17871, 'Forster, Georg, 1754-1794 -- Fiction'), +(17872, 'Ahab, King of Israel -- Drama'), +(17873, 'Mediums -- Fiction'), +(17874, 'Egypt -- Description and travel -- Early works to 1800'), +(17875, 'Salta (Argentina)'), +(17876, 'Costume -- History'), +(17877, 'Seville (Spain) -- History'), +(17878, 'Folklore -- England -- Peterborough'), +(17879, 'Kimball, Heber C. (Heber Chase), 1801-1868 -- Diaries'), +(17880, 'Labor'), +(17881, 'National characteristics, Belgian'), +(17882, 'Giants'), +(17883, 'Duck shooting'), +(17884, 'Whittier, John Greenleaf, 1807-1892 -- Homes and haunts -- Massachusetts -- Essex County'), +(17885, 'Brownell, Thomas Church, 1779-1865'), +(17886, 'Shelley, Harriet Westbrook, -1816'), +(17887, 'Sweden -- Foreign relations -- Great Britain'), +(17888, 'Alexandrian school'), +(17889, 'Verchères, Madeleine de, 1678-1747 -- Poetry'), +(17890, 'Crystal Palace (Sydenham, London, England)'), +(17891, 'Almanacs'), +(17892, 'Scottish Americans'), +(17893, 'Yosemite Valley (Calif.) -- Guidebooks'), +(17894, 'Saturn (Planet) -- Photographs from space'), +(17895, 'Furniture -- Netherlands'), +(17896, 'Friedrich Wilhelm, Elector of Brandenburg, 1620-1688 -- Fiction'), +(17897, 'World War, 1914-1918 -- Personal narratives, Australian'), +(17898, 'Balzac, Honoré de, 1799-1850. Comédie humaine'), +(17899, 'Nantucket Island (Mass.) -- Fiction'), +(17900, 'Benton, Thomas Hart, 1782-1858'), +(17901, 'Detective and mystery stories, Chinese'), +(17902, 'Steam-navigation -- History'), +(17903, 'Authors, Danish -- 19th century -- Biography'), +(17904, 'Didache'), +(17905, 'Denmark -- History -- Christian VII, 1766-1808'), +(17906, 'Railroad travel -- United States -- Juvenile fiction'), +(17907, 'World War, 1914-1918 -- Germany -- Fiction'), +(17908, 'Slaves -- Emancipation'), +(17909, 'Kimball, Heber C. (Heber Chase), 1801-1868'), +(17910, 'Custine, Delphine de Sabran, marquise de, 1770-1826'), +(17911, 'Cats -- Folklore'), +(17912, 'Choising (Steamship)'), +(17913, 'Grandier, Urbain, 1590-1634'), +(17914, 'Cowboys -- Poetry'), +(17915, 'Cromwell, Oliver, 1599-1658 -- Fiction'), +(17916, 'Boston Massacre, 1770 -- Juvenile fiction'), +(17917, 'Charlestown Navy Yard (Mass.) -- History'), +(17918, 'Kalevipoeg'), +(17919, 'Cicada (Genus)'), +(17920, 'Mountain life -- Switzerland -- Fiction'), +(17921, 'Natural history -- Australia -- Western Australia'), +(17922, 'Philippines -- Politics and government -- 1898-1935'), +(17923, 'Forsyte family (Fictitious characters) -- Fiction'), +(17924, 'Straight-line mechanisms'), +(17925, 'Epic poetry, Italian -- History and criticism'), +(17926, 'Homer -- Parodies, imitations, etc.'), +(17927, 'Italy -- Description and travel -- Early works to 1800'), +(17928, 'Frankenstein, Victor (Fictitious character) -- Fiction'), +(17929, 'Government, Resistance to'), +(17930, 'Cities and towns -- Europe'), +(17931, 'Mural painting and decoration'), +(17932, 'Angels -- Juvenile fiction'), +(17933, 'World War, 1914-1918 -- Participation, Jewish'), +(17934, 'Iowa Indians'), +(17935, 'Ohio -- Description and travel'), +(17936, 'Trees -- Identification'), +(17937, 'Bjarkarimur'), +(17938, 'Beetles'), +(17939, 'Albania'), +(17940, 'Stowe, Harriet Beecher, 1811-1896. Uncle Tom\'s cabin. Selections'), +(17941, 'Dakota language'), +(17942, 'Missing children -- Juvenile poetry'), +(17943, 'Inn signs -- England -- History'), +(17944, 'Medici, House of'), +(17945, 'M\'Clintock, Francis Leopold, Sir, 1819-1907 -- Travel -- Arctic regions'), +(17946, 'Patteson, John Coleridge, 1827-1871'), +(17947, 'Women -- Spain -- History'), +(17948, 'Genetics'), +(17949, 'Short stories, French -- Translations into Spanish'), +(17950, 'Diplomats'), +(17951, 'Latin language -- Grammar -- Early works to 1800'), +(17952, 'Change ringing -- England'), +(17953, 'Frontier and pioneer life -- New Mexico -- Juvenile fiction'), +(17954, 'Chemung River Valley (N.Y. and Pa.) -- Fiction'), +(17955, 'Love -- Juvenile fiction'), +(17956, 'Trinity -- Early works to 1800'), +(17957, 'Occitan poetry -- Translations into English'), +(17958, 'Tannins'), +(17959, 'Washington (D.C.) -- Juvenile fiction'), +(17960, 'Joseph Bonaparte, King of Spain, 1768-1844'), +(17961, 'Notting Hill (London, England) -- Fiction'), +(17962, 'Dakota Territory -- Fiction'), +(17963, 'Perfumes industry'), +(17964, 'African American youth -- Conduct of life'), +(17965, 'Great Eastern (Steamship) -- Fiction'), +(17966, 'Deschamps, abbé (Claude François), 1745-1791. Cours élémentaire d\'éducation des sourds et muèts'), +(17967, 'Neckties'), +(17968, 'Upper Peninsula (Mich.) -- Juvenile fiction'), +(17969, 'Veterans -- United States -- 19th century -- Fiction'), +(17970, 'Finnish language -- Foreign words and phrases -- Latin'), +(17971, 'Hydroplanes -- Juvenile fiction'), +(17972, 'Hope-Scott, James Robert, 1812-1873 -- Correspondence'), +(17973, 'Philippines -- History -- Philippine American War, 1899-1902 -- Personal narratives'), +(17974, 'Commercial geography'), +(17975, 'Indians of North America -- West (U.S.) -- Fiction'), +(17976, 'Bible. Apocrypha'), +(17977, 'Children\'s literature, English -- Illustrations'), +(17978, 'Publishers and publishing -- Juvenile fiction'), +(17979, 'Babism'), +(17980, 'Figures of speech'), +(17981, 'London (England) -- Humor'), +(17982, 'Dow, Mary Larcom, 1835-1920'), +(17983, 'Motherhood -- Literary collections'), +(17984, 'Hill, Rowland, Sir, 1795-1879'), +(17985, 'China -- Politics and government -- To 221 B.C.'), +(17986, 'Mackay, A. M. (Alexander Murdoch), 1849-1890'), +(17987, 'Kennebec County (Me.) -- Description and travel'), +(17988, 'Prague (Czech Republic) -- History -- 19th century -- Fiction'), +(17989, 'Cycling -- France'), +(17990, 'O\'Neil, Owen Rowe'), +(17991, 'Brazil -- History -- 1763-1822'), +(17992, 'Orators -- Great Britain -- Biography'), +(17993, 'Custer, George A. (George Armstrong), 1839-1876 -- Fiction'), +(17994, 'Lozère (France : Dept.) -- Description and travel'), +(17995, 'Singers -- United States -- Biography'), +(17996, 'World War, 1914-1918 -- Alabama'), +(17997, 'Marne, 1st Battle of the, France, 1914'), +(17998, 'Folklore -- Netherlands'), +(17999, 'Shipwrecks -- North Atlantic Ocean -- History'), +(18000, 'Villages -- Drama'), +(18001, 'Mary, Queen, consort of Louis XII, King of France, 1496-1533 -- Fiction'), +(18002, 'Saint John River Valley (Me. and N.B.)'), +(18003, 'Naples (Italy) -- Description and travel -- Juvenile literature'), +(18004, 'Manning, Henry Hatch, 1844-1868'), +(18005, 'Hand-railing'), +(18006, 'Madrid (Spain) -- Social life and customs'), +(18007, 'Sermons, Finnish'), +(18008, 'Ahlefeldt, Elise von, 1788-1855'), +(18009, 'Stone age -- Europe'), +(18010, 'Basket making'), +(18011, 'Cycling -- England'), +(18012, 'Infants -- Poetry'), +(18013, 'United States -- History -- Civil War, 1861-1865 -- Pictorial works'), +(18014, 'Barrie, Margaret Ogilvy'), +(18015, 'Italian poetry -- History and criticism'), +(18016, 'Jews -- America'), +(18017, 'Indians of South America -- Brazil -- Folklore'), +(18018, 'Metamorphosis -- Mythology -- Poetry'), +(18019, 'Dolls'), +(18020, 'Boone, Daniel, 1734-1820 -- Fiction'), +(18021, 'Guinea pigs'), +(18022, 'Indians of North America -- Great Lakes Region (North America) -- Folklore'), +(18023, 'Mormons -- Poetry'), +(18024, 'Mollusks -- Germany -- Hesse-Nassau'), +(18025, 'Finance -- Great Britain -- Colonies'), +(18026, 'Eliot, Samuel Atkins, 1798-1862'), +(18027, 'Fables, Finnish'), +(18028, 'Birds -- England -- London'), +(18029, 'Fires -- Massachusetts -- Chelsea'), +(18030, 'Plants -- North America'), +(18031, 'Blue Ridge Parkway (N.C. and Va.)'), +(18032, 'Turgenev, Ivan Sergeevich, 1818-1883 -- Translations into Finnish'), +(18033, 'Plants -- Australia'), +(18034, 'Disasters'), +(18035, 'Tourist camps, hostels, etc.'), +(18036, 'Macleod, Norman, 1812-1872'), +(18037, 'Serbo-Bulgarian War, 1885 -- Drama'), +(18038, 'Women -- Germany -- Social conditions -- Sources'), +(18039, 'Prisoners -- France -- Fiction'), +(18040, 'Mental illness -- Personal narratives'), +(18041, 'Great Britain -- History -- Commonwealth and Protectorate, 1649-1660'), +(18042, 'Nurses'), +(18043, 'United States -- Economic conditions -- 1918-1945'), +(18044, 'Philippines -- Social life and customs -- 19th century'), +(18045, 'Epic poetry, Greek'), +(18046, 'Monroe, Hugh, 1798-1895 or 1896'), +(18047, 'Inglis, Elsie Maud, 1864-1917'), +(18048, 'Indians of North America -- Massachusetts -- History -- 17th century'), +(18049, 'Paleontology -- Miocene'), +(18050, 'Egypt -- History -- Mohammed Ali, 1805-1849 -- Fiction'), +(18051, 'Great Britain -- History -- Stuarts, 1603-1714 -- Biography'), +(18052, 'Northern War, 1700-1721'), +(18053, 'Mission Marchand (1896-1899)'), +(18054, 'Pilgrims (New Plymouth Colony)'), +(18055, 'Frogs -- Ecuador'), +(18056, 'Germans -- Foreign countries -- Fiction'), +(18057, 'History -- Outlines, syllabi, etc.'), +(18058, 'Measles'), +(18059, 'North Dakota -- Guidebooks'), +(18060, 'Great Britain -- Commerce'), +(18061, 'Medical parasitology'), +(18062, 'Ink'), +(18063, 'Northmen -- Juvenile literature'), +(18064, 'India -- History -- Chitral Campaign, 1895 -- Juvenile fiction'), +(18065, 'World War, 1914-1918 -- Reparations'), +(18066, 'Burma -- Social life and customs'), +(18067, 'La Malbaie (Québec)'), +(18068, 'Holidays -- France'), +(18069, 'Leyte Island (Philippines) -- History, Military'), +(18070, 'Liverpool (England) -- Description and travel'), +(18071, 'Whitman, Walt, 1819-1892 -- Political and social views'), +(18072, 'Rabbits'), +(18073, 'Childers, Erskine, 1870-1922 -- Diaries'), +(18074, 'Frontier and pioneer life -- Australia -- Queensland -- Fiction'), +(18075, 'New Haven (Conn.) -- Fiction'), +(18076, 'Hudson River Valley (N.Y. and N.J.) -- Social life and customs -- Juvenile fiction'), +(18077, 'Murder victims\' families -- Fiction'), +(18078, 'Evidence (Law)'), +(18079, 'Liberty Bell'), +(18080, 'Hungary -- History -- 1849-1867 -- Fiction'), +(18081, 'Culture conflict -- Fiction'), +(18082, 'Great Britain. Royal Navy -- Biography'), +(18083, 'Hamerton, Philip Gilbert, 1834-1894'), +(18084, 'Darío, Rubén, 1867-1916 -- Travel -- Spain -- Andalusia'), +(18085, 'Cornwall (England : County) -- Church history'), +(18086, 'Tumacácori National Historical Park (Ariz.)'), +(18087, 'Potatoes'), +(18088, 'Prehistoric peoples -- Switzerland -- Juvenile fiction'), +(18089, 'Education -- Switzerland -- History -- 16th century'), +(18090, 'Liszt, Franz, 1811-1886'), +(18091, 'Repentance -- Juvenile fiction'), +(18092, 'Anthony, Susan B. (Susan Brownell), 1820-1906 -- Trials, litigation, etc.'), +(18093, 'English drama -- Translations into Finnish'), +(18094, 'Demmler, Fred Adolph, 1888-1918'), +(18095, 'Alexandria (Egypt) -- Fiction'), +(18096, 'Slaves -- Juvenile fiction'), +(18097, 'Composers -- Austria -- Biography'), +(18098, 'Great Britain. Army -- Officers -- Fiction'), +(18099, 'Shellfish fisheries -- Massachusetts'), +(18100, 'Ibsen, Henrik, 1828-1906'), +(18101, 'Metal-spinning'), +(18102, 'Repair ships -- Handbooks, manuals, etc.'), +(18103, 'Capital'), +(18104, 'Egyptian literature -- History and criticism'), +(18105, 'Aeronautics, Commercial'), +(18106, 'English language -- Compound words'), +(18107, 'Exposition universelle (1900 : Paris, France)'), +(18108, 'Soldiers -- France'), +(18109, 'Foreign exchange'), +(18110, 'Jewish question'), +(18111, 'Pepys, Samuel, 1633-1703'), +(18112, 'Greece -- History -- Peloponnesian War, 431-404 B.C. -- Fiction'), +(18113, 'Kaskaskia (Ill.) -- Fiction'), +(18114, 'Schiller, Friedrich, 1759-1805 -- Translations into English'), +(18115, 'Home missions -- United States -- Unitarian Church'), +(18116, 'Sand dunes'), +(18117, 'Circassia (Russia) -- Social life and customs'), +(18118, 'Great Britain -- Politics and government -- 1649-1660 -- Pamphlets'), +(18119, 'Spanish fiction -- Translations into German'), +(18120, 'Su, Shi, 1037-1101 -- Fiction'), +(18121, 'Amphibians -- Mexico -- Tehuantepec, Isthmus of'), +(18122, 'Holm, Carl Johan, 1781-1867. Anteckningar öfver fälttågen emot Ryssland åren 1808 och 1809'), +(18123, 'Caucasian race'), +(18124, 'Tournaments, Medieval -- France'), +(18125, 'Plant physiology -- Juvenile literature'), +(18126, 'Entomologists -- Fiction'), +(18127, 'Wiltshire (England) -- Description and travel'), +(18128, 'Baptists -- Doctrines'), +(18129, 'Church of England -- Doctrines'), +(18130, 'Booth, Catherine Mumford, 1829-1890'), +(18131, 'Commercial crimes'), +(18132, 'Biblioteca Nacional de Lisboa'), +(18133, 'Cobbett, William 1763-1835'), +(18134, 'India -- Foreign relations -- China -- Tibet Autonomous Region'), +(18135, 'Coverlets'), +(18136, 'Swain, Clara A., 1834-1910'), +(18137, 'Hunt, William Holman, 1827-1910'), +(18138, 'Women -- Rome -- Biography'), +(18139, 'Whistle blowing -- Delaware'), +(18140, 'Nursing -- Religious aspects -- Christianity'), +(18141, 'Mammals -- California, Southern'), +(18142, 'Princesses -- Juvenile fiction'), +(18143, 'Coinage -- Ireland'), +(18144, 'Homestead law -- West (U.S.) -- Juvenile fiction'), +(18145, 'Birds -- Channel Islands'), +(18146, 'Architecture, Domestic -- Japan'), +(18147, 'Paiute Indians -- Education'), +(18148, 'Hamilton, Alexander, 1757-1804'), +(18149, 'New Milford (Conn.) -- History'), +(18150, 'Kearsarge (Sloop)'), +(18151, 'Lawrence, Amos, 1786-1852'), +(18152, 'Character -- Juvenile fiction'), +(18153, 'Corneille, Pierre, 1606-1684'), +(18154, 'Azorín, 1873-1967'), +(18155, 'Palestrina (Italy)'), +(18156, 'Mogul Empire -- History'), +(18157, 'Education, Elementary -- United States'), +(18158, 'Lombardy (Italy) -- History -- 16th century -- Fiction'), +(18159, 'Piety -- Early works to 1800'), +(18160, 'Women -- History -- 18th century'), +(18161, 'Singers -- Biography'), +(18162, 'Java (Indonesia) -- Fiction'), +(18163, 'Refugees -- Fiction'), +(18164, 'Caudebec-en-Caux (France)'), +(18165, 'Mormon Church -- Apologetic works'), +(18166, 'Actresses -- Great Britain -- Correspondence'), +(18167, 'Physics -- Textbooks'), +(18168, 'Portugal -- History -- Revolution, 1910'), +(18169, 'Beggars -- England -- London'), +(18170, 'Ravenna (Italy) -- History'), +(18171, 'Indeterminate sentences -- United States'), +(18172, 'Psychology, Pathological -- Periodicals'), +(18173, 'Shenandoah National Park (Va.) -- Guidebooks'), +(18174, 'Riots'), +(18175, 'Ohio River -- Description and travel'), +(18176, 'Sudan -- History -- 1881-1899 -- Fiction'), +(18177, 'Great Britain. Laws, statutes, etc., 1603-1625 (James I)'), +(18178, 'Chinese American children'), +(18179, 'Pescetti, Orlando, approximately 1556-approximately 1624. Cesare'), +(18180, 'Students'), +(18181, 'Television -- Handbooks, manuals, etc.'), +(18182, 'Great Britain -- History -- Henry I, 1100-1135'), +(18183, 'Explosions'), +(18184, 'Public schools -- Ohio -- Cleveland'), +(18185, 'Kaatastaasan, Kagalanggalang Katipunan ng mga Anak ng Bayan (Organization)'), +(18186, 'Water-supply -- Egypt'), +(18187, 'Ramón y Cajal, Santiago, 1852-1934'), +(18188, 'Leg -- Innervation'), +(18189, 'Martin, Benjamin, 1705-1782. Essay on electricity'), +(18190, 'Argentine poetry'), +(18191, 'Landscape painting'), +(18192, 'Antwerp (Belgium) -- History -- 16th century -- Fiction'), +(18193, 'Copenhagen porcelain'), +(18194, 'Single men -- Fiction'), +(18195, 'Punishment -- Early works to 1800'), +(18196, 'Latin language -- Study and teaching'), +(18197, 'Ohio River -- History'), +(18198, 'Danish fiction -- Translations into Dutch'), +(18199, 'Huysmans, J.-K. (Joris-Karl), 1848-1907 -- Criticism and interpretation'), +(18200, 'Adoptees -- Fiction'), +(18201, 'Liberia -- Description and travel'), +(18202, 'Australia -- Gold discoveries -- Fiction'), +(18203, 'Luddites -- Juvenile fiction'), +(18204, 'Hamburg (Germany) -- Fiction'), +(18205, 'Seafaring life -- Dictionaries -- German'), +(18206, 'Consecration of cemeteries -- Pennsylvania -- Gettysburg'), +(18207, 'Great Britain. Army. Lancers, 17th -- History'), +(18208, 'American periodicals -- Bibliography'), +(18209, 'Atlantic salmon fisheries -- Maine'), +(18210, 'Plato. Symposium'), +(18211, 'Women -- California'), +(18212, 'Athos (Greece) -- Description and travel'), +(18213, 'Great Britain. Army -- Cavalry'), +(18214, 'Great Britain -- History -- John, 1199-1216 -- Fiction'), +(18215, 'Charades'), +(18216, 'Psychotherapy patients -- Fiction'), +(18217, 'Teachers -- Germany'), +(18218, 'Explorers -- Portugal -- Poetry'), +(18219, 'Salisbury Cathedral'), +(18220, 'Jeeves (Fictitious character) -- Fiction'), +(18221, 'Legislators -- United States -- Biography -- Juvenile literature'), +(18222, 'Great Britain -- Court and courtiers -- Early works to 1800'), +(18223, 'South African War, 1899-1902 -- Medical care'), +(18224, 'Connecticut -- History'), +(18225, 'Louisiana -- Social life and customs -- Fiction'), +(18226, 'Cholera -- France -- Paris -- History -- 19th century'), +(18227, 'Philippines -- History -- 1898-1946 -- Fiction'), +(18228, 'Fraternal insurance -- United States'), +(18229, 'Lutheran Church -- Sermons'), +(18230, 'Paleontology -- Mexico'), +(18231, 'Firearms -- Catalogs'), +(18232, 'Esperanto literature -- Periodicals'), +(18233, 'Social movements -- Finland -- History -- 20th century'), +(18234, 'Tales -- Africa, West'), +(18235, 'New York (N.Y.) -- Social conditions'), +(18236, 'Opera -- England -- London'), +(18237, 'Great Britain. Army. Royal Lancers, 12th'), +(18238, 'Intellectuals -- France -- Fiction'), +(18239, 'Gifted children -- Juvenile fiction'), +(18240, 'Slide-rule -- Handbooks, manuals, etc.'), +(18241, 'Second Advent -- Fiction'), +(18242, 'Campaign literature, 1880 -- Democratic'), +(18243, 'Palaces -- Spain -- Granada'), +(18244, 'Quental, Antero de, 1842-1891 -- Correspondence'), +(18245, 'Table-talk'), +(18246, 'Musicians -- Italy'), +(18247, 'Women -- Portugal'), +(18248, 'Paleontology -- Jurassic'), +(18249, 'Women in church work -- Methodist Church'), +(18250, 'Hungary -- History -- 19th century -- Juvenile fiction'), +(18251, 'Virginia -- Politics and government'), +(18252, 'French essays -- Translations into Finnish'), +(18253, 'Natural theology'), +(18254, 'Competition, International'), +(18255, 'Dickens, Charles, 1812-1870 -- Readings'), +(18256, 'Petrarca, Francesco, 1304-1374'), +(18257, 'Barometers -- Early works to 1800'), +(18258, 'Horses -- England'), +(18259, 'Emperors -- France -- Biography'), +(18260, 'Etiquette -- Humor'), +(18261, 'Beetles -- Juvenile fiction'), +(18262, 'Faith and reason -- Christianity'), +(18263, 'Ontario -- Social life and customs'), +(18264, 'Civil disobedience'), +(18265, 'English language -- Dictionaries -- Swedish'), +(18266, 'Children -- Turkey -- Juvenile literature'), +(18267, 'Greece -- History -- Macedonian expansion, 359-323 B.C. -- Juvenile literature'), +(18268, 'Photographic reproduction of plans, drawings, etc.'), +(18269, 'Haddock family'), +(18270, 'Peasants -- Spain -- Galicia (Region) -- Social conditions'), +(18271, 'Italy -- History -- 476-774 -- Fiction'), +(18272, 'Swallows'), +(18273, 'Landscape architecture'), +(18274, 'Jews -- Spain -- Castile -- Drama'), +(18275, 'Fletcher, Andrew, 1655-1716'), +(18276, 'India -- Poetry'), +(18277, 'Land tenure -- Fiction'), +(18278, 'Toscana, Luise von, 1870-1947'), +(18279, 'Mockingbirds'), +(18280, 'Express service -- Juvenile fiction'), +(18281, 'Hauge, Hans Nielsen, 1771-1824 -- Fiction'), +(18282, 'Galsworthy, John, 1867-1933 -- Criticism and interpretation'), +(18283, 'Birds -- Classification'), +(18284, 'Germany. Verfassung (1919)'), +(18285, 'Cleopatra, Queen of Egypt, -30 B.C. -- Drama'), +(18286, 'Children\'s stories, Danish -- Translations into French'), +(18287, 'Roads -- Great Britain'), +(18288, 'Agricultural machinery'), +(18289, 'Socialism -- Europe'), +(18290, 'Working class -- Dwellings'), +(18291, 'Great Britain -- History -- Wars of the Roses, 1455-1485 -- Juvenile fiction'), +(18292, 'Mikir (Indic people)'), +(18293, 'Philosophers -- Germany -- Biography'), +(18294, 'Women heroes'), +(18295, 'Euthenics'), +(18296, 'Georg V, King of Hannover, 1819-1878 -- Fiction'), +(18297, 'Burke and Wills Expedition, (1860-1861)'), +(18298, 'Ivories, Medieval'), +(18299, 'Man-woman relationships -- England -- Fiction'), +(18300, 'Mutiny'), +(18301, 'Morocco -- Foreign relations -- Portugal'), +(18302, 'Longman, Brown, Green, and Longmans -- Catalogs'), +(18303, 'Mythology, Roman -- Juvenile literature'), +(18304, 'Coroners -- Great Britain'), +(18305, 'Finance, Public -- Great Britain -- History -- 1688-1815'), +(18306, 'Geology -- Scotland'), +(18307, 'Wells, H. G. (Herbert George), 1866-1946. God the invisible king'), +(18308, 'Ross, Betsy, 1752-1836'), +(18309, 'Philosophy, Modern -- History'), +(18310, 'Carlota, Empress, consort of Maximilian, Emperor of Mexico, 1840-1927 -- Drama'), +(18311, 'Geometry, Projective'), +(18312, 'Children -- Netherlands -- Juvenile literature'), +(18313, 'Mexico -- History -- European intervention, 1861-1867 -- Fiction'), +(18314, 'Botanical gardens -- Europe'), +(18315, 'Children -- Alaska -- Juvenile literature'), +(18316, 'Poetry -- Juvenile fiction'), +(18317, 'Poland -- History -- John III Sobieski, 1674-1696 -- Fiction'), +(18318, 'Poincaré, Henri, 1854-1912'), +(18319, 'Chinese language -- Semantics'), +(18320, 'Bushrangers -- Australia'), +(18321, 'Finland -- History -- Civil War, 1918 -- Poetry'), +(18322, 'Judaism -- Doctrines'), +(18323, 'Kitchener, Horatio Herbert Kitchener, Earl, 1850-1916'), +(18324, 'Fishing -- Great Britain'), +(18325, 'Natural history -- Australia -- New South Wales'), +(18326, 'Americans -- Philippines -- Fiction'), +(18327, 'Prisoners of war -- Fiction'), +(18328, 'Wrede, Mathilda, 1864-1928'), +(18329, 'Wakarusa River Valley (Kan.)'), +(18330, 'Nakimu Caves (B.C.)'), +(18331, 'English literature -- Catholic authors -- History and criticism'), +(18332, 'Princeton University -- Fiction'), +(18333, 'Abreu, Brás Luís de, 1692-1756 -- Fiction'), +(18334, 'Prophecies -- Fiction'), +(18335, 'Buddhism -- Drama'), +(18336, 'Library of Congress -- Handbooks, manuals, etc.'), +(18337, 'Togo -- Description and travel'), +(18338, 'God (Christianity) -- Attributes'), +(18339, 'Malachy, Saint, 1094?-1148'), +(18340, 'Great Britain. Army. North Lincolnshire Regiment of Foot'), +(18341, 'World War, 1914-1918 -- Prisoners and prisons, French'), +(18342, 'Ten commandments'), +(18343, 'Railroads -- Illinois -- Drama'), +(18344, 'Great Britain. Army. King\'s Liverpool Regiment'), +(18345, 'Niue'), +(18346, 'Mormon women'), +(18347, 'United States -- Politics and government -- 1845-1861'), +(18348, 'Slater, J. Atwood -- Correspondence'), +(18349, 'Women and literature -- Great Britain -- History'), +(18350, 'Political satire, Spanish'), +(18351, 'Bohemia (Czech Republic) -- History'), +(18352, 'Archers -- Juvenile fiction'), +(18353, 'Indians of North America -- Games'), +(18354, 'American poetry -- History and criticism'), +(18355, 'Grant, Ulysses S. (Ulysses Simpson), 1822-1885 -- Juvenile fiction'), +(18356, 'Cuba -- Social life and customs'), +(18357, 'Corneille, Pierre, 1606-1684 -- Bibliography'), +(18358, 'Indian art -- North America'), +(18359, 'Traveling theater -- Fiction'), +(18360, 'Farms -- Juvenile fiction'), +(18361, 'Dialectic -- Early works to 1800'), +(18362, 'Italy -- Emigration and immigration'), +(18363, 'Jay, William, 1789-1858'), +(18364, 'Cholera -- Periodicals'), +(18365, 'Sexual selection in animals'), +(18366, 'Greek language -- Grammar'), +(18367, 'Teenagers -- Fiction'), +(18368, 'Dumfries and Galloway (Scotland) -- Fiction'), +(18369, 'Short stories, Russian -- Translations into Spanish'), +(18370, 'Tower of London (London, England) -- Guidebooks'), +(18371, 'Prairies -- North America -- Juvenile fiction'), +(18372, 'Morphology (Animals) -- History'), +(18373, 'Political corruption -- Alaska -- Fiction'), +(18374, 'Textile industry -- Fiction'), +(18375, 'Russian literature -- 19th century -- History and criticism'), +(18376, 'Pilate, Pontius, active 1st century -- Fiction'), +(18377, 'Catherine de Médicis, Queen, consort of Henry II, King of France, 1519-1589'), +(18378, 'Theodicy'), +(18379, 'Natural history -- Australia -- Dunk Island (Qld.)'), +(18380, 'English language -- Phonetics'), +(18381, 'Wills -- United States'), +(18382, 'Earthquakes -- Portugal -- Valença'), +(18383, 'Marken Island (Netherlands)'), +(18384, 'Legends -- History and criticism'), +(18385, 'Bible. Epistles of Paul -- Commentaries'), +(18386, 'Poitiers, Diane de, Duchess of Valentinois, 1499-1566'), +(18387, 'Love songs'), +(18388, 'Folklore -- Laos'), +(18389, 'Pets -- Juvenile literature'), +(18390, 'Stevens family'), +(18391, 'Embryology -- England -- History -- 17th century'), +(18392, 'Therapeutics, Physiological'), +(18393, 'Months -- Poetry'), +(18394, 'Monmouth, James Scott, Duke of, 1649-1685 -- Fiction'), +(18395, 'Jesus Christ -- Natures'), +(18396, 'Virginia -- History -- Revolution, 1775-1783'), +(18397, 'Saint Petersburg (Russia) -- Officials and employees -- Fiction'), +(18398, 'Wells, H. G. (Herbert George), 1866-1946 -- Criticism and interpretation'), +(18399, 'France -- Colonies -- Indochina -- Fiction'), +(18400, 'Industrial engineering'), +(18401, 'National Gallery (Great Britain)'), +(18402, 'Cuba -- Social life and customs -- Pictorial works'), +(18403, 'Dixieland music'), +(18404, 'Italian language -- Readers'), +(18405, 'Madison, Dolley, 1768-1849 -- Juvenile fiction'), +(18406, 'Elizabeth I, Queen of England, 1533-1603 -- Relations with courts and courtiers'), +(18407, 'Acculturation -- Case studies'), +(18408, 'West Lake (China) -- History -- Fiction'), +(18409, 'Radio broadcasting -- Juvenile fiction'), +(18410, 'Slavery -- Connecticut'), +(18411, 'Rome -- History -- Humor'), +(18412, 'Berkshire (England) -- History'), +(18413, 'Customs unions -- Germany -- History'), +(18414, 'Glastonbury Abbey -- Miscellanea'), +(18415, 'Ojeda, Alonso de, approximately 1466-approximately 1515'), +(18416, 'Armor -- England'), +(18417, 'English literature -- 19th century -- Periodicals'), +(18418, 'Nicholas II, Emperor of Russia, 1868-1918 -- Fiction'), +(18419, 'African Americans -- Georgia -- Biography'), +(18420, 'Fossil Butte National Monument (Wyo.)'), +(18421, 'Dühring, E. (Eugen), 1833-1921'), +(18422, 'Frontier and pioneer life -- Oregon'), +(18423, 'Hotels -- Fiction'), +(18424, 'New York (State) -- Poetry'), +(18425, 'Critics -- Fiction'), +(18426, 'Church of England -- Missions'), +(18427, 'Anecdotes -- Germany'), +(18428, 'Aspleniaceae'), +(18429, 'South Africa -- History -- Fiction'), +(18430, 'Civilization, Assyro-Babylonian -- Sources'), +(18431, 'Swamps -- Fiction'), +(18432, 'Criminals -- West (U.S.) -- History'), +(18433, 'Wyandot Indians'), +(18434, 'Locomotives -- Maintenance and repair'), +(18435, 'Latin drama (Comedy) -- Translations into English'), +(18436, 'Great Britain. Parliament -- Biography -- Portraits'), +(18437, 'Christianity and other religions -- Islam'), +(18438, 'Flemings -- Folklore'), +(18439, 'California -- Politics and government'), +(18440, 'New Mexico -- Social life and customs -- 19th century -- Juvenile fiction'), +(18441, 'Surveyors -- Juvenile fiction'), +(18442, 'Pennell, Elizabeth Robins, 1855-1936'), +(18443, 'Paragrammatism'), +(18444, 'Athaliah, Queen of Judah -- Drama'), +(18445, 'Villars-le-Grand (Switzerland) -- Description and travel'), +(18446, 'Wild flower gardening -- Great Britain'), +(18447, 'Sewerage'), +(18448, 'Russia -- Social conditions -- 1801-1917 -- Fiction'), +(18449, 'Saint Lawrence Island (Alaska)'), +(18450, 'James I, King of England, 1566-1625'), +(18451, 'Burney, Fanny, 1752-1840 -- Fiction'), +(18452, 'United States. Bureau of Mines -- Juvenile fiction'), +(18453, 'Children -- Juvenile poetry'), +(18454, 'Didactic poetry, Greek -- Translations into Latin'), +(18455, 'Short stories, Polish -- Translations into English'), +(18456, 'Labor -- Philippines'), +(18457, 'Boy Scouts -- United States -- Handbooks, manuals, etc.'), +(18458, 'Alabama (Screw sloop)'), +(18459, 'Bigamy -- Fiction'), +(18460, 'Students -- United States'), +(18461, 'Aztecs -- Poetry'), +(18462, 'Mission San Xavier del Bac (Tucson, Ariz.)'), +(18463, 'Gordon, Jane Gordon, Duchess of, 1748-1812'), +(18464, 'Tales -- Italy'), +(18465, 'Near-death experiences -- Religious aspects'), +(18466, 'Maori language -- Vocabulary'), +(18467, 'Christian martyrs -- Italy -- Rome -- Drama'), +(18468, 'Nicaragua Canal (Nicaragua)'), +(18469, 'Bridges -- Accidents'), +(18470, 'Law -- Humor'), +(18471, 'Chinese language -- Dialects'), +(18472, 'Scottish Americans -- Fiction'), +(18473, 'Caldecott, Randolph, 1846-1886'), +(18474, 'Graustark (Imaginary place) -- Fiction'), +(18475, 'Theater -- Humor'), +(18476, 'Illustration of books, Victorian -- Great Britain'), +(18477, 'English literature -- Irish authors -- History and criticism'), +(18478, 'Louisiana -- Drama'), +(18479, 'Burial laws -- United States'), +(18480, 'Saratoga Springs (N.Y.) -- Guidebooks'), +(18481, 'Lifesaving -- Juvenile literature'), +(18482, 'Lawrence, Thomas, Sir, 1769-1830'), +(18483, 'French literature -- 20th century -- History and criticism'), +(18484, 'Ontario -- History'), +(18485, 'Boelcke, Oswald, 1891-1916'), +(18486, 'Word problems (Mathematics)'), +(18487, 'Romania -- Description and travel'), +(18488, 'Weatherford, William, approximately 1780-1824'), +(18489, 'Mammals -- France'), +(18490, 'Ford, Henry, 1863-1947'), +(18491, 'Goethe, Johann Wolfgang von, 1749-1832 -- Translations into English'), +(18492, 'Ulfeldt, Leonora Christina, grevinde, 1621-1698'), +(18493, 'United States -- History -- Constitutional period, 1789-1809'), +(18494, 'Criminology'), +(18495, 'Wild flowers -- California'), +(18496, 'Langston, Stephen, -1878 -- Death and burial -- Sermons'), +(18497, 'United States -- History -- Revolution, 1775-1783 -- Participation, French'), +(18498, 'Japanese language -- Grammar'), +(18499, 'United States -- Defenses'), +(18500, 'School children -- Netherlands'), +(18501, 'Indians of North America -- Missions'), +(18502, 'Hygiene -- Early works to 1800'), +(18503, 'Cattle -- Breeding'), +(18504, 'Tricks -- Handbooks, manuals, etc.'), +(18505, 'Bible. Psalms -- Meditations'), +(18506, 'St. Martin\'s Church (Canterbury, England)'), +(18507, 'First Coalition, War of the, 1792-1797 -- Campaigns -- Italy'), +(18508, 'Paramours -- Drama'), +(18509, 'Nuremberg (Germany) -- History'), +(18510, 'Tales -- Hawaii'), +(18511, 'Universities and colleges -- Ireland'), +(18512, 'Confucian ethics'), +(18513, 'Christianity -- Juvenile literature'), +(18514, 'Pope, Alexander, 1688-1744 -- Family'), +(18515, 'Preparatory schools -- Fiction'), +(18516, 'Hydroelectric power plants'), +(18517, 'Self-realization -- Fiction'), +(18518, 'Pinnipedia'), +(18519, 'Jackson Hole (Wyo.)'), +(18520, 'Haiti -- Fiction'), +(18521, 'Leibniz, Gottfried Wilhelm, Freiherr von, 1646-1716'), +(18522, 'Cemeteries -- England -- London -- History'), +(18523, 'Igorot (Philippine people)'), +(18524, 'Perth (Scotland) -- Fiction'), +(18525, 'American literature -- History and criticism -- Theory, etc.'), +(18526, 'Electronic mail systems -- Directories'), +(18527, 'Feminists -- England -- Fiction'), +(18528, 'English literature -- First editions -- Bibliography'), +(18529, 'Turkey -- Politics and government -- Caricatures and cartoons'), +(18530, 'Chaucer, Geoffrey, -1400 -- Adaptations'), +(18531, 'Santa Maria de Belem (Church : Lisbon, Portugal)'), +(18532, 'Wordsworth, Dorothy, 1771-1855 -- Diaries'), +(18533, 'Figurines -- Juvenile fiction'), +(18534, 'Latin America -- Politics and government -- Fiction'), +(18535, 'Victoria, Queen of Great Britain, 1819-1901 -- Friends and associates'), +(18536, 'European literature -- Renaissance, 1450-1600 -- History and criticism'), +(18537, 'Denmark -- Politics and government -- 19th century'), +(18538, 'Stone implements'), +(18539, 'Authors, Scandinavian'), +(18540, 'Prohibited books -- England -- Bibliography'), +(18541, 'France -- Social conditions -- Fiction'), +(18542, 'Massachusetts -- Social life and customs -- To 1775'), +(18543, 'Professions -- Juvenile fiction'), +(18544, 'Crusades -- Biography'), +(18545, 'Northern Neck (Va.)'), +(18546, 'Eudeve language'), +(18547, 'Postal service -- Law and legislation -- United States'), +(18548, 'Strand, The (London, England)'), +(18549, 'Wills -- Great Britain -- Miscellanea'), +(18550, 'Muses (Greek deities) -- Poetry'), +(18551, 'Mammals -- Sri Lanka'), +(18552, 'Andes -- Fiction'), +(18553, 'Great Britain -- History -- Restoration, 1660-1688 -- Fiction'), +(18554, 'Painting -- Collectors and collecting -- Fiction'), +(18555, 'Consumption (Economics)'), +(18556, 'Texas -- Juvenile fiction'), +(18557, 'Great Britain -- Foreign relations -- Canada'), +(18558, 'Marquetry'), +(18559, 'Brazil -- History -- Empire, 1822-1889 -- Fiction'), +(18560, 'Biographical poetry'), +(18561, 'Fuel'), +(18562, 'Angola -- Discovery and exploration'), +(18563, 'China -- Politics and government -- 1912-1949'), +(18564, 'Saint Pierre and Miquelon'), +(18565, 'Texas -- History -- Revolution, 1835-1836 -- Fiction'), +(18566, 'Authors, French -- 19th century -- Correspondence'), +(18567, 'Cézanne, Paul, 1839-1906'), +(18568, 'Flowers -- Poetry'), +(18569, 'Colorado -- Politics and government -- 1876-1950'), +(18570, 'Sponge fisheries -- Florida -- Juvenile fiction'), +(18571, 'Mules'), +(18572, 'Cost and standard of living -- Ireland'), +(18573, 'Karen (Southeast Asian people) -- Juvenile fiction'), +(18574, 'Europe -- History -- Ottoman Wars -- 4th Austrian Ottoman War, 1663-1664 -- Fiction'), +(18575, 'Choruses, Sacred (Mixed voices, 4 parts)'), +(18576, 'Printing -- Hungary -- History'), +(18577, 'Hudson River (N.Y. and N.J.) -- Juvenile fiction'), +(18578, 'Godfrey, Charles, 1730- -- Fiction'), +(18579, 'Southern States -- History -- Colonial period, ca. 1600-1775'), +(18580, 'Pirates -- Family relationships -- Fiction'), +(18581, 'Browning, Robert, 1812-1889 -- Marriage'), +(18582, 'Medical fees'), +(18583, 'Salts'), +(18584, 'Davis, Jefferson, 1808-1889'), +(18585, 'Fund raising -- Juvenile fiction'), +(18586, 'Crocodiles -- Juvenile fiction'), +(18587, 'Middle Ages -- Historiography'), +(18588, 'Arabs -- Fiction'), +(18589, 'Middle Eastern literature -- History and criticism'), +(18590, 'Yoga, Jñana'), +(18591, 'Water treatment plants'), +(18592, 'Virgil'), +(18593, 'Humility -- Religious aspects -- Christianity'), +(18594, 'Tales -- Georgia (Republic)'), +(18595, 'Diophantine analysis'), +(18596, 'Self-deception -- Juvenile fiction'), +(18597, 'American Field Service'), +(18598, 'Lexington and Ohio Rail Road Company -- History'), +(18599, 'Bible. Numbers VI-VII -- Commentaries'), +(18600, 'Feng shui'), +(18601, 'Pygmalion (Greek mythology) -- Poetry'), +(18602, 'Tales -- Estonia'), +(18603, 'Roundheads -- Juvenile fiction'), +(18604, 'Kittens -- Juvenile fiction'), +(18605, 'Illegal arms transfers -- Fiction'), +(18606, 'School children -- Food'), +(18607, 'Africa, West -- Description and travel -- Juvenile literature'), +(18608, 'Reality television programs -- Fiction'), +(18609, 'Secret societies -- Juvenile fiction'), +(18610, 'Teutonic Knights -- History -- Fiction'), +(18611, 'Brighton Road (London, England)'), +(18612, 'Dutch drama -- Translations into English'), +(18613, 'Canada -- Politics and government -- 1867-'), +(18614, 'Physical geography -- Peru'), +(18615, 'Mackenzie, Alexander, Sir, 1763-1820'), +(18616, 'Ojibwa Indians -- Fiction'), +(18617, 'Beekeepers'), +(18618, 'Transportation, Military'), +(18619, 'Washington (D.C.) -- Social life and customs -- Fiction'), +(18620, 'Ferdinand I, Czar of Bulgaria, 1861-1948'), +(18621, 'Montcalm de Saint-Véran, Louis-Joseph, marquis de, 1712-1759'), +(18622, 'Railroads -- England -- Knaresborough'), +(18623, 'Candaules, King of Lydia, -approximately 685 B.C. -- Drama'), +(18624, 'Library science -- Early works to 1800'), +(18625, 'Royal Charter (Ship)'), +(18626, 'Hercules (Roman mythology) -- Poetry'), +(18627, 'Editorials'), +(18628, 'Authors, German -- 19th century -- Correspondence'), +(18629, 'Social classes -- Germany -- Fiction'), +(18630, 'Courtesans -- France -- Fiction'), +(18631, 'Moravians -- Georgia'), +(18632, 'Africa, East -- Juvenile fiction'), +(18633, 'Prisoners -- Religious life'), +(18634, 'Clark, John, 1758-1833'); +INSERT INTO `books_subjects` (`id`, `title`) VALUES +(18635, 'Ethelbert, Saint, -794 -- Fiction'), +(18636, 'Lincoln, Abraham, 1809-1865 -- Death and burial'), +(18637, 'Folklore -- Guernsey'), +(18638, 'Saint Lawrence River -- Fiction'), +(18639, 'Infant baptism'), +(18640, 'Storms -- Fiction'), +(18641, 'Beccaria, Cesare, marchese di, 1738-1794. Dei delitti e delle pene'), +(18642, 'Cirripedia'), +(18643, 'Juan, Don (Legendary character)'), +(18644, 'Shasta, Mount (Calif. : Mountain)'), +(18645, 'Rhineland (Germany) -- Description and travel -- Juvenile literature'), +(18646, 'Old Norse language -- Readers'), +(18647, 'Massachusetts artillery -- 1st coast artillery regt. -- 1784-'), +(18648, 'Almanacs, American'), +(18649, 'Big game hunting -- United States'), +(18650, 'Cossacks -- Ukraine -- Fiction'), +(18651, 'Cambrian Railway'), +(18652, 'Suburban life -- Fiction'), +(18653, 'Cardsharping'), +(18654, 'Iran -- Politics and government'), +(18655, 'Atomic bomb -- New Mexico -- Testing'), +(18656, 'Seward, Anna, 1742-1809'), +(18657, 'Jerusalem -- Fiction'), +(18658, 'Fog -- California'), +(18659, 'Knight, Lydia Goldthwaite Bailey, 1812-1884'), +(18660, 'Uncanny, The (Psychoanalysis)'), +(18661, 'Women heroes -- England -- Northumberland -- Biography'), +(18662, 'Paleontology -- Precambrian'), +(18663, 'Natural history -- Germany'), +(18664, 'Mineral waters -- England'), +(18665, 'Soldiers -- United States -- Correspondence'), +(18666, 'Ballads, English -- Adaptations'), +(18667, 'World War, 1914-1918 -- Territorial questions'), +(18668, 'Ceské Stredohorí (Czech Republic) -- Guidebooks'), +(18669, 'London (England) -- Social conditions -- 19th century -- Juvenile fiction'), +(18670, 'Anti-Catholicism'), +(18671, 'Washington (D.C.) -- Description and travel'), +(18672, 'Southall, Eliza Allen, 1823-1851'), +(18673, 'Chesapeake Bay (Md. and Va.) -- Juvenile fiction'), +(18674, 'Names, Personal -- Chinese'), +(18675, 'Turkish literature -- Translations into English'), +(18676, 'Gissing, George, 1857-1903 -- Travel -- Italy, Southern'), +(18677, 'Hermitage (Hermitage, Tenn.)'), +(18678, 'Presbyterian Church in Canada -- Fiction'), +(18679, 'Indians of North America -- Missions -- Fiction'), +(18680, 'Tristan (Legendary character) -- Romances -- Adaptations'), +(18681, 'Northwest Territories -- Juvenile fiction'), +(18682, 'Guernsey (Channel Islands) -- Regimental histories -- 1st (Service) Bn. Royal Guernsey Light Infantry'), +(18683, 'Manual training -- Methods and manuals'), +(18684, 'Massachusetts -- Description and travel'), +(18685, 'Political plays'), +(18686, 'Bryan, Pearl, -1896'), +(18687, 'Horror films'), +(18688, 'Kelmscott Press'), +(18689, 'Money laundering'), +(18690, 'Insanity (Law) -- Great Britain'), +(18691, 'Ireland -- History -- 1910-1921'), +(18692, 'Tagalog poetry -- Translations into Spanish'), +(18693, 'Baku (Azerbaijan)'), +(18694, 'Campobello Island (N.B.)'), +(18695, 'Johnson, Samuel, 1709-1784 -- Humor'), +(18696, 'Conservatories of music -- Fiction'), +(18697, 'Merrimack (Frigate)'), +(18698, 'Great Britain. Army. Royal Munster Fusiliers'), +(18699, 'Tomlinson, H. M. (Henry Major), 1873-1958 -- Travel -- Amazon River Region'), +(18700, 'God (Christianity) -- Worship and love -- Early works to 1800'), +(18701, 'Earthquakes -- United States'), +(18702, 'Dominican Republic -- Economic conditions'), +(18703, 'Divorce -- Law and legislation'), +(18704, 'Novelists, English -- 18th century -- Biography'), +(18705, 'Adams, Mount (Wash.)'), +(18706, 'Finno-Ugrians -- Folklore'), +(18707, 'New England -- Genealogy -- Periodicals'), +(18708, 'West Indies -- Discovery and exploration -- Early works to 1800'), +(18709, 'Copyright -- United States -- History'), +(18710, 'Church, J. (John), approximately 1780-approximately 1825'), +(18711, 'Chile'), +(18712, 'Great Britain. Royal Air Force'), +(18713, 'Fielding, Henry, 1707-1754 -- Correspondence'), +(18714, 'French literature -- Translations into Esperanto'), +(18715, 'Irenaeus, Saint, Bishop of Lyon'), +(18716, 'Hall, Florence Howe, 1845-1922'), +(18717, 'Acadia'), +(18718, 'North Sea'), +(18719, 'Driving instruction -- Handbooks, manuals, etc.'), +(18720, 'Reconstruction (1914-1939) -- Great Britain'), +(18721, 'Polish literature'), +(18722, 'Maya mythology'), +(18723, 'Poor families -- Juvenile fiction'), +(18724, 'Freedmen -- Southern States -- Fiction'), +(18725, 'Wild men -- Fiction'), +(18726, 'Art teachers -- Fiction'), +(18727, 'Comenius, Johann Amos, 1592-1670'), +(18728, 'American literature -- New Jersey -- Morristown -- History and criticism'), +(18729, 'Sahara -- Description and travel -- Fiction'), +(18730, 'Trials (Blasphemy) -- Jerusalem'), +(18731, 'Paganini, Nicolò, 1782-1840'), +(18732, 'Tales -- Finland'), +(18733, 'Mollusks -- Periodicals'), +(18734, 'Mallock, W. H. (William Hurrell), 1849-1923'), +(18735, 'Stonington (Conn.) -- History -- Bombardment, 1814'), +(18736, 'Barker, Joseph, 1806-1875'), +(18737, 'Flowers -- West (U.S.)'), +(18738, 'Theater -- England'), +(18739, 'Verse satire, Latin'), +(18740, 'Berkshire (England)'), +(18741, 'Bourbon, Charles, duc de, 1490-1527 -- Fiction'), +(18742, 'Bahá\'u\'lláh, 1817-1892 -- Correspondence'), +(18743, 'Great Britain -- History -- Anecdotes'), +(18744, 'Children\'s literature, American -- Bibliography'), +(18745, 'Agriculture -- Popular works'), +(18746, 'Taxation -- Great Britain'), +(18747, 'Natural history -- Colorado -- Rocky Mountain National Park'), +(18748, 'Mushrooms -- United States'), +(18749, 'Concord (Mass.) -- Pictorial works'), +(18750, 'Sidney, Philip, Sir, 1554-1586 -- Fiction'), +(18751, 'Proverbs, Catalan'), +(18752, 'Prussia (Germany) -- History -- 1815-1870 -- Fiction'), +(18753, 'Leschetizky, Theodor, 1830-1915'), +(18754, 'Ballads, Scots -- Adaptations'), +(18755, 'Elizabeth of Hungary, Saint, 1207-1231 -- Juvenile fiction'), +(18756, 'Adams, William, 1564-1620'), +(18757, 'Steam-engines -- Early works to 1850'), +(18758, 'Printing -- Juvenile literature'), +(18759, 'Great Britain -- Church history -- 16th century -- Fiction'), +(18760, 'Peterborough, Charles Mordaunt, Earl of, 1658-1735 -- Juvenile fiction'), +(18761, 'Corsica (France) -- History'), +(18762, 'Arithmetic -- Study and teaching'), +(18763, 'Wengeroff, Pauline, 1833-1916'), +(18764, 'Baptism -- Church of England -- History of doctrines -- 19th century'), +(18765, 'Jews -- New York (State) -- New York -- Intellectual life'), +(18766, 'Ballou, Hosea, 1771-1852'), +(18767, 'Dolphins -- Folklore'), +(18768, 'Sermons, English -- 16th century'), +(18769, 'China -- Court and courtiers'), +(18770, 'Shaw, Bernard, 1856-1950 -- Criticism and interpretation'), +(18771, 'Insects -- Nomenclature'), +(18772, 'Cooperstown, N.Y.'), +(18773, 'Chiswick (London, England) -- Fiction'), +(18774, 'Gold mines and mining -- Yukon River Valley (Yukon and Alaska) -- Fiction'), +(18775, 'Geology -- Europe'), +(18776, 'Painting -- Technique'), +(18777, 'American drama -- Women authors'), +(18778, 'Porta, Carlo Antonio Melchiore Filippo, 1775-1821'), +(18779, 'Walpole, Horace, 1717-1797 -- Correspondence'), +(18780, 'Judaism -- Juvenile literature'), +(18781, 'Unpublished works'), +(18782, 'Financial security -- Juvenile fiction'), +(18783, 'Cornwall (England : County) -- Surveys'), +(18784, 'Swedenborg, Emanuel, 1688-1772'), +(18785, 'Civil rights -- United States -- Sources'), +(18786, 'Ships -- History'), +(18787, 'Postal savings banks -- Austria'), +(18788, 'Plants -- Poetry'), +(18789, 'Tournaments (Graph theory)'), +(18790, 'Literature -- Anecdotes'), +(18791, 'Thirty Years\' War, 1618-1648 -- Juvenile fiction'), +(18792, 'Geonic literature'), +(18793, 'Anthropology -- Outlines, syllabi, etc.'), +(18794, 'Men -- Biography -- Juvenile literature'), +(18795, 'Youth -- Drug use -- United States'), +(18796, 'Euthanasia -- Law and legislation -- Germany'), +(18797, 'Philippine literature'), +(18798, 'Milk as food -- Juvenile literature'), +(18799, 'Fingerprints -- Classification'), +(18800, 'Deep diving'), +(18801, 'Castile (Spain)'), +(18802, 'Abydos (Egypt : Extinct city)'), +(18803, 'Tennessee -- History -- Civil War, 1861-1865 -- Personal narratives'), +(18804, 'Kant, Immanuel, 1724-1804. Kritik der reinen Vernunft'), +(18805, 'Pocket gophers, Fossil'), +(18806, 'New Milford (Conn. : Town) -- History'), +(18807, 'Naturalists -- Juvenile fiction'), +(18808, 'Birds -- Indonesia -- Papua'), +(18809, 'Great Britain. Parliament. House of Commons'), +(18810, 'Pencil industry -- Germany -- History'), +(18811, 'Aristocracy (Social class) -- England -- Fiction'), +(18812, 'Canada -- Biography -- Dictionaries'), +(18813, 'Gentry -- Poland -- Social life and customs -- 19th century -- Poetry'), +(18814, 'Women journalists -- England -- Fiction'), +(18815, 'Donnelly, Ignatius, 1831-1901. Great cryptogram'), +(18816, 'Leprosy -- England'), +(18817, 'Printers\' furniture'), +(18818, 'Good and evil -- Poetry'), +(18819, 'Porcelain industry -- Portugal -- History'), +(18820, 'Holy Roman Empire -- History'), +(18821, 'Literature, Modern -- 20th century -- Periodicals'), +(18822, 'Horror tales -- Appreciation -- Fiction'), +(18823, 'Eclipses'), +(18824, 'Entertainers -- United States -- Biography'), +(18825, 'Great Britain. Army. Regiment of Foot, 46th (South Devonshire)'), +(18826, 'Exponential functions'), +(18827, 'Sound'), +(18828, 'United States. Army. Colored Heavy Artillery Regiment, 11th (1864-1865)'), +(18829, 'Russo-Turkish War, 1877-1878 -- Personal narratives'), +(18830, 'Burney, Fanny, 1752-1840 -- Correspondence'), +(18831, 'United States. Forest Service -- Juvenile fiction'), +(18832, 'Tagalog language -- Numerals'), +(18833, 'Girls -- United States'), +(18834, 'Geology, Stratigraphic -- Paleocene'), +(18835, 'Crofters -- Scotland -- Highlands'), +(18836, 'Southampton Insurrection, 1831'), +(18837, 'Ships -- Juvenile fiction'), +(18838, 'Morland, George, 1763-1804'), +(18839, 'Wolsey, Thomas, 1475?-1530'), +(18840, 'Fuller, Margaret, 1810-1850'), +(18841, 'Science -- Great Britain -- History'), +(18842, 'Bicycle touring -- England'), +(18843, 'Abduction -- Juvenile fiction'), +(18844, 'New England -- History -- Colonial period, ca. 1600-1775 -- Anecdotes'), +(18845, 'England -- Church history -- 16th century'), +(18846, 'Ireland -- History -- To 1603'), +(18847, 'Jews -- Charities'), +(18848, 'Caribbean Area -- History, Naval'), +(18849, 'Boyd, Mary Stuart -- Travel -- France'), +(18850, 'Cows'), +(18851, 'United States -- Politics and government -- 1783-1789 -- Sources'), +(18852, 'Ireland -- Literary collections'), +(18853, 'Buildings'), +(18854, 'Leprosy -- Great Britain -- History'), +(18855, 'Earthquakes -- Yellowstone National Park'), +(18856, 'Bible. New Testament -- Dictionaries -- English'), +(18857, 'Spain -- Civilization -- Philosophy'), +(18858, 'Jesus Christ -- Sermons'), +(18859, 'Brazilian literature'), +(18860, 'Botanical gardens -- Italy -- Padua'), +(18861, 'Smallpox'), +(18862, 'Radioactive dating'), +(18863, 'Grävenitz, Christina Wilhelmina von, 1685-1744'), +(18864, 'Hermits'), +(18865, 'Antisemitism -- France -- Fiction'), +(18866, 'Florence (Italy) -- Pictorial works'), +(18867, 'Coal mine accidents -- Drama'), +(18868, 'Genius and mental illness'), +(18869, 'English drama -- Translations into Spanish'), +(18870, 'Fishes -- Germany'), +(18871, 'Great Britain. Army. London Rifle Brigade'), +(18872, 'Lithuanian Americans -- Fiction'), +(18873, 'Maupassant, Guy de, 1850-1893 -- Quotations'), +(18874, 'Polar regions -- Discovery and exploration'), +(18875, 'Sontag, Henriette, 1806-1854 -- Fiction'), +(18876, 'Flowers -- United States'), +(18877, 'Austria -- Intellectual life'), +(18878, 'Irish Americans -- Periodicals'), +(18879, 'Martineau, Harriet, 1802-1876'), +(18880, 'Dawson, William (Fictitious character) -- Fiction'), +(18881, 'Fruit-culture -- Hawaii'), +(18882, 'Gunpowder Plot, 1605 -- Early works to 1800'), +(18883, 'Homosexuality and literature'), +(18884, 'Marriage -- Great Britain -- History -- 19th century'), +(18885, 'Kostka, Stanislas, Saint, 1550-1568'), +(18886, 'Ballarat (Vic.) -- Social conditions -- 19th century'), +(18887, 'Electroplating'), +(18888, 'Mindanao Island (Philippines)'), +(18889, 'Fairy tales -- Iran'), +(18890, 'United States -- Race relations -- Juvenile literature'), +(18891, 'Quests (Expeditions) in literature'), +(18892, 'England'), +(18893, 'Computers -- Miscellanea'), +(18894, 'Romulus, King of Rome'), +(18895, 'Brigands and robbers'), +(18896, 'Victoria, Queen of Great Britain, 1819-1901 -- Fiction'), +(18897, 'Dowsing'), +(18898, 'School buildings -- Juvenile fiction'), +(18899, 'George IV, King of Great Britain, 1762-1830'), +(18900, 'China -- Foreign relations'), +(18901, 'Motivation (Psychology)'), +(18902, 'Pilgrims (New Plymouth Colony) -- Fiction'), +(18903, 'Children -- Books and reading -- United States -- History'), +(18904, 'Evans, Christmas, 1766-1838'), +(18905, 'Benefactors -- Juvenile fiction'), +(18906, 'Howard, John, 1726-1790'), +(18907, 'Slavery -- South Carolina -- History'), +(18908, 'Grettir Ásmundarson, 996-1031 -- Romances'), +(18909, 'Vijayanagar (Empire) -- History'), +(18910, 'Ulrich, von Zatzikhoven, active approximately 1200 -- Characters -- Lancelot'), +(18911, 'Students -- New York (State) -- New York -- Fiction'), +(18912, 'Finland -- History -- Revolution, 1917-1918 -- Personal narratives'), +(18913, 'English language -- Alphabet -- Juvenile literature'), +(18914, 'United States. Declaration of Independence -- Signers'), +(18915, 'France -- History -- Revolution, 1789-1799 -- Poetry'), +(18916, 'Stock exchanges -- France -- Paris -- History -- 19th century'), +(18917, 'Choctaw Indians -- Missions'), +(18918, 'Harbors -- England'), +(18919, 'China -- History -- Warring States, 403-221 B.C.'), +(18920, 'Southern States -- Quotations, maxims, etc.'), +(18921, 'Musée Condé'), +(18922, 'John, of Austria, 1547-1578'), +(18923, 'Wholesale trade -- Great Britain -- Handbooks, manuals, etc. -- Early works to 1800'), +(18924, 'De Amicis, Edmondo, 1846-1908 -- Travel -- Turkey -- Istanbul'), +(18925, 'Orkney (Scotland) -- Antiquities'), +(18926, 'Newspapers -- Fiction'), +(18927, 'Natural disasters -- Galicia (Poland and Ukraine)'), +(18928, 'Printing -- Philippines -- History'), +(18929, 'Slavery -- Maryland'), +(18930, 'Authors, American -- Homes and haunts -- France'), +(18931, 'Students -- Portugal -- Political activity'), +(18932, 'Christian biography -- Palestine'), +(18933, 'Submarines (Ships) -- Models -- Juvenile literature'), +(18934, 'Forests and forestry -- Vocational guidance'), +(18935, 'Indians of North America -- Pennsylvania -- Languages'), +(18936, 'Alfred, King of England, 849-899 -- Juvenile literature'), +(18937, 'Logical atomism'), +(18938, 'Fairy tales -- Slavic countries'), +(18939, 'Princesses -- India -- Koch Bihar (District) -- Biography'), +(18940, 'England -- Intellectual life -- 19th century'), +(18941, 'Harding, Warren G. (Warren Gamaliel), 1865-1923'), +(18942, 'Catalan poetry'), +(18943, 'Red Sea -- Juvenile fiction'), +(18944, 'Savage, Richard, -1743'), +(18945, 'Missions -- Canada, Western -- Fiction'), +(18946, 'Children\'s poetry, Danish'), +(18947, 'Labor (Obstetrics) -- Handbooks, manuals, etc.'), +(18948, 'Mount Rainier National Park (Wash.)'), +(18949, 'Coins -- Channel Islands'), +(18950, 'Boigne, Louise-Eléonore-Charlotte-Adélaide d\'Osmond, comtesse de, 1781-1866'), +(18951, 'Indians of North America -- Anecdotes'), +(18952, 'Seals (Animals)'), +(18953, 'Madame Tussaud and Sons\' Exhibition'), +(18954, 'Bible. Old Testament -- Legends'), +(18955, 'Pediatrics -- Handbooks, manuals, etc.'), +(18956, 'Poisonous snakes -- Venom -- Physiological effect'), +(18957, 'Diseases and history'), +(18958, 'Novelists, English -- 18th century -- Correspondence'), +(18959, 'Animals -- Mythology'), +(18960, 'Spaniards -- England -- Juvenile fiction'), +(18961, 'Wilson, John, 1785-1854'), +(18962, 'American fiction -- Bibliography'), +(18963, 'Statesmen -- Italy -- Biography'), +(18964, 'Working class -- Ireland'), +(18965, 'Germany -- Court and courtiers'), +(18966, 'John the Baptist, Saint'), +(18967, 'Pere Marquette State Park (Ill.) -- Guidebooks'), +(18968, 'Tapestry -- Exhibitions'), +(18969, 'Medals -- Great Britain'), +(18970, 'Broadway (New York, N.Y.) -- Fiction'), +(18971, 'Bavaria (Germany) -- Fiction'), +(18972, 'France. Armée. Légion étrangère -- History -- 19th century'), +(18973, 'Signs and signboards -- England -- Essex'), +(18974, 'Imperialism -- Fiction'), +(18975, 'Newfoundland, Island of (N.L.) -- Politics and government'), +(18976, 'Fraud -- China -- Fiction'), +(18977, 'Rodents -- Control -- United States'), +(18978, 'Naturalism'), +(18979, 'Canada -- Intellectual life'), +(18980, 'Scandinavia -- Poetry'), +(18981, 'Zilliacus, Konni, 1855-1924'), +(18982, 'Indian dance -- North America'), +(18983, 'Witchcraft -- Channel Islands'), +(18984, 'Salish Indians'), +(18985, 'Pyrenomycetes'), +(18986, 'Horses -- India'), +(18987, 'Eaton, Dorman B. (Dorman Bridgman), 1823-1899'), +(18988, 'Jesuits -- Brazil -- History'), +(18989, 'Burke, Edmund, 1729-1797. Reflections on the revolution in France'), +(18990, 'Plantation life -- Jamaica -- History -- 19th century'), +(18991, 'Vianney, Jean-Baptiste-Marie, Saint, 1786-1859'), +(18992, 'Actors -- Great Britain'), +(18993, 'Begging'), +(18994, 'California National Historic Trail'), +(18995, 'Suriname -- History'), +(18996, 'Mississippi -- Fiction'), +(18997, 'Public schools -- France -- History -- 19th century'), +(18998, 'Rainbow Bridge National Monument (Utah)'), +(18999, 'Gifts -- Juvenile fiction'), +(19000, 'Daughters-in-law -- Fiction'), +(19001, 'Seville (Spain) -- Fiction'), +(19002, 'Lamas -- Fiction'), +(19003, 'Great Britain -- History -- Lancaster and York, 1399-1485'), +(19004, 'Essenes'), +(19005, 'Germany -- Commerce -- Great Britain'), +(19006, 'Rosicrucians -- Fiction'), +(19007, 'Burgos, José Apolonio, 1837-1872'), +(19008, 'Iceland -- Drama'), +(19009, 'Spain -- Social conditions -- 1886-1939 -- Fiction'), +(19010, 'Samoan Islands'), +(19011, 'Kubalski, N. A. (Nicolas A.), 1794-1875 -- Travel'), +(19012, 'Doll clothes -- Juvenile literature'), +(19013, 'Rationalism -- History'), +(19014, 'Rome -- History -- Augustus, 30 B.C.-14 A.D. -- Biography'), +(19015, 'Indians -- Languages -- Bibliography'), +(19016, 'Bayeux tapestry'), +(19017, 'Fathers -- England -- Biography'), +(19018, 'Wit and humor, Medieval'), +(19019, 'Kings and rulers -- Succession -- Fiction'), +(19020, 'Minstrels -- Fiction'), +(19021, 'Venus (Planet) -- Juvenile fiction'), +(19022, 'Gilchrist, Anne (Anne Burrows), 1828-1885 -- Correspondence'), +(19023, 'Football stories'), +(19024, 'North Carolina -- Poetry'), +(19025, 'Feudalism'), +(19026, 'Bible. New Testament -- English -- Versions -- Revised -- Criticism, interpretation, etc.'), +(19027, 'Birmingham (England) -- History -- Dictionaries'), +(19028, 'Nation, Carry Amelia, 1846-1911'), +(19029, 'Greenaway, Kate, 1846-1901'), +(19030, 'Darius I, King of Persia, 548-485 B.C.'), +(19031, 'Carpenters\' squares'), +(19032, 'East Asia -- Juvenile fiction'), +(19033, 'Poaching'), +(19034, 'British -- New York (State) -- New York -- Fiction'), +(19035, 'Voyages to the otherworld -- Drama'), +(19036, 'Soldan, August Fredrik, 1817-1885'), +(19037, 'Charlotte Augusta, Princess of Great Britain, 1796-1817'), +(19038, 'Wells, H. G. (Herbert George), 1866-1946 -- Parodies, imitations, etc.'), +(19039, 'Charles I, King of England, 1600-1649 -- Early works to 1800'), +(19040, 'Indian captivities -- Northeastern States'), +(19041, 'Mercoeur, Philippe Emmanuel de Lorraine, duc de, 1558-1602'), +(19042, 'Millais, John Everett, 1829-1896'), +(19043, 'Universities and colleges -- History'), +(19044, 'Ophelia (Fictitious character) -- Poetry'), +(19045, 'Dreiser, Theodore, 1871-1945 -- Criticism and interpretation'), +(19046, 'Spirit'), +(19047, 'Guarini, Battista, 1538-1612. Pastor fido -- Adaptations'), +(19048, 'Kentucky -- Social life and customs -- Juvenile fiction'), +(19049, 'Advertising -- Poetry'), +(19050, 'Dogma'), +(19051, 'Epic poetry, Latin -- Translations into Finnish'), +(19052, 'Moths -- Indiana'), +(19053, 'French literature -- 18th century -- History and criticism'), +(19054, 'Myxomycetes -- Ohio -- Miami River Valley'), +(19055, 'Paper money -- United States'), +(19056, 'Kimberley (South Africa) -- Fiction'), +(19057, 'Williams, Eleazer, 1787-1858 -- Fiction'), +(19058, 'Ostrich farms -- Juvenile fiction'), +(19059, 'Pharisee and the publican (Parable) -- Early works to 1800'), +(19060, 'Transplantation of organs, tissues, etc.'), +(19061, 'Ireland -- History -- 1558-1603 -- Fiction'), +(19062, 'Utopias in literature'), +(19063, 'Pinckney, Charles, 1757-1824'), +(19064, 'Trout'), +(19065, 'Children\'s Crusade, 1212'), +(19066, 'Conway, Hugh, 1847-1885. Dark days -- Parodies, imitations, etc.'), +(19067, 'Cambridge (England) -- Pictorial works'), +(19068, 'Stepmothers -- Juvenile fiction'), +(19069, 'Matriarchy'), +(19070, 'Battersea (London, England)'), +(19071, 'Finnish poetry -- History and criticism'), +(19072, 'Human experimentation in psychology'), +(19073, 'Sheridan, Richard Brinsley, 1751-1816'), +(19074, 'Oberammergau (Germany) -- Fiction'), +(19075, 'Chiricahua National Monument (Ariz.)'), +(19076, 'Holyhead (Wales) -- Guidebooks'), +(19077, 'Epic poetry, Sanskrit -- Translations into French'), +(19078, 'Riots -- England -- Bristol -- Fiction'), +(19079, 'Barry, John, 1745-1803'), +(19080, 'Great Lakes Region (North America) -- Fiction'), +(19081, 'Stravinsky, Igor, 1882-1971'), +(19082, 'Ruwenzori Mountains (Congo and Uganda) -- Description and travel'), +(19083, 'Ballarat (Vic.) -- Fiction'), +(19084, 'United States -- Economic conditions -- 19th century'), +(19085, 'Lincoln, Abraham, 1809-1865 -- Portraits'), +(19086, 'Gems -- Folklore'), +(19087, 'Critics -- Great Britain -- Correspondence'), +(19088, 'Europeans -- Japan -- Fiction'), +(19089, 'Ficalho, Francisco Manuel de Melo, Conde de, 1837-1903'), +(19090, 'Pharmaceutical industry -- Fiction'), +(19091, 'Haymarket Square Riot, Chicago, Ill., 1886'), +(19092, 'Jupiter (Planet) -- Satellites'), +(19093, 'Missions -- New Guinea'), +(19094, 'Council on Foreign Relations'), +(19095, 'Rajput (Indic people) -- History'), +(19096, 'Al Kut (Iraq) -- History -- Siege, 1915-1916'), +(19097, 'Sikhs'), +(19098, 'Harbors -- Australia -- Queensland'), +(19099, 'World War, 1914-1918 -- Aerial operations, American -- Juvenile fiction'), +(19100, 'Shakespeare family'), +(19101, 'Mothers-in-law -- Fiction'), +(19102, 'Rome -- Civilization'), +(19103, 'Marne, 2nd Battle of the, France, 1918'), +(19104, 'Krupp, Alfred, 1812-1887'), +(19105, 'Cunha, Pedro Alexandrino da, 1801-1850 -- Death and burial'), +(19106, 'Plants -- France -- Riviera'), +(19107, 'Mentally ill -- Fiction'), +(19108, 'Peace of Westphalia (1648)'), +(19109, 'Nordström, Ester Blenda, 1891-1948. En piga bland pigor'), +(19110, 'Franking, Mae M.'), +(19111, 'Mountaineering -- Alps'), +(19112, 'Birds -- Idaho'), +(19113, 'Orphanages -- Juvenile fiction'), +(19114, 'London (England) -- History -- 1800-1950 -- Fiction'), +(19115, 'Women, Black -- Jamaica -- Biography'), +(19116, 'Nineteenth century -- Caricatures and cartoons'), +(19117, 'Philosophy -- Periodicals'), +(19118, 'Sweden -- Emigration and immigration -- Economic aspects'), +(19119, 'Rent'), +(19120, 'Scrooge, Ebenezer (Fictitious character) -- Fiction'), +(19121, 'African Americans -- Biography'), +(19122, 'Pike, Zebulon Montgomery, 1779-1813 -- Fiction'), +(19123, 'Germany -- History -- Revolution, 1918 -- Fiction'), +(19124, 'Statesmen\'s spouses -- Great Britain -- Correspondence'), +(19125, 'Storms -- Early works to 1800'), +(19126, 'Lockwood, Abraham, 1792-1871'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `categories` +-- + +CREATE TABLE `categories` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `categories` +-- + +INSERT INTO `categories` (`id`, `title`) VALUES +(1, 'Science Fiction'), +(2, 'Krimis'), +(3, 'Romane'), +(4, 'Horror'), +(5, 'Kinder- und Jugendbücher'), +(6, 'Fachbücher'), +(7, 'Schulbücher'), +(8, 'Ernährung und Diät'), +(9, 'Film, Kunst & Kultur'), +(10, 'Angebote'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `customers` +-- + +CREATE TABLE `customers` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `firstname` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `lastname` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `street` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `city` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `email` varchar(127) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `age` int(10) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `customers` +-- + +INSERT INTO `customers` (`id`, `title`, `firstname`, `lastname`, `street`, `city`, `email`, `age`) VALUES +(1, 'Frau Dr.', 'Dana', 'Mai', 'Roseweg 81', 'Brilon', 'otto77@gmail.com', 58), +(2, 'Herr Dr.', 'Gaby', 'Heinrich', 'Ahmet-Wolf-Platz 12', 'Neumünster', 'konstantin.blum@gmx.de', 74), +(3, 'Herr', 'Simon', 'Behrens', 'Hechtstraße 4', 'Arnstadt', 'heinzjoachim60@aol.de', 68), +(4, 'Frau', 'Meinolf', 'Kolb', 'Benedikt-Wiedemann-Gasse 8c', 'Bernburg (Saale)', 'paul67@t-online.de', 43), +(5, 'Frau Prof.', 'Waldemar', 'Gottschalk', 'Lisbeth-Hagen-Ring 0b', 'Lohne (Oldenburg)', 'gertraude.funke@aol.de', 30), +(6, 'Herr', 'Valeri', 'Stumpf', 'Krebsallee 90a', 'Mainz', 'hvetter@hotmail.de', 67), +(7, 'Frau Prof.', 'Gitta', 'Strauß', 'Fleischmanngasse 766', 'Metzingen', 'rsauer@googlemail.com', 79), +(8, 'Herr Prof.', 'Wolfgang', 'Reimer', 'Neubertplatz 15a', 'Detmold', 'ursula38@freenet.de', 51), +(9, 'Frau', 'Lina', 'Springer', 'Auerstraße 5', 'Duisburg', 'wmarx@gmx.de', 31), +(10, 'Herr', 'Hartmut', 'Fröhlich', 'Wenzel-Beckmann-Gasse 02c', 'Weilheim in Oberbayern', 'yriedel@mail.de', 77), +(11, 'Herr Prof.', 'Reiner', 'Reichel', 'Günter-Kunz-Platz 09a', 'Rostock', 'august.bender@live.de', 24), +(12, 'Frau Prof. Dr.', 'Lilo', 'Niemann', 'Mayallee 9/3', 'Husum', 'christa41@googlemail.com', 31), +(13, 'Herr Dr.', 'Jutta', 'Ebert', 'Simon-Kessler-Platz 4a', 'Marl', 'steinbach.achim@web.de', 53), +(14, 'Frau Prof.', 'Hedwig', 'Grimm', 'Baderstr. 66c', 'Schwabach', 'bohme.kirstin@live.de', 69), +(15, 'Frau Dr.', 'Wiebke', 'Bernhardt', 'Agnes-Wieland-Ring 6a', 'Kirchheim unter Teck', 'lilli.kellner@gmx.de', 57), +(16, 'Frau Prof. Dr.', 'Hanspeter', 'Bader', 'Hoffmannallee 7', 'Heide', 'lmetz@freenet.de', 31), +(17, 'Frau Dr.', 'Emil', 'Reiter', 'Güntherstr. 0/7', 'Gummersbach', 'johanne.kramer@web.de', 64), +(18, 'Herr Dr.', 'Gustav', 'Schreiber', 'Sigrun-Metzger-Ring 3/9', 'Senftenberg', 'brunhilde52@live.de', 65), +(19, 'Frau Prof. Dr.', 'Alwin', 'Brunner', 'Larissa-Bartsch-Gasse 6/3', 'Ditzingen', 'hess.arnd@gmx.de', 23), +(20, 'Frau', 'Josefa', 'Fischer', 'Hansjörg-Erdmann-Ring 983', 'Albstadt', 'lydia39@freenet.de', 24), +(21, 'Frau Prof.', 'Tamara', 'Hentschel', 'Frickeweg 8', 'Remscheid', 'hinz.lorenz@gmx.de', 33), +(22, 'Herr Prof. Dr.', 'Heidi', 'Urban', 'Ines-Seiler-Gasse 9', 'Nagold', 'kurt.martens@mail.de', 30), +(23, 'Herr Dr.', 'Waltraud', 'Beckmann', 'Marina-Neuhaus-Platz 5a', 'Stuttgart', 'xhofmann@web.de', 39), +(24, 'Frau Prof. Dr.', 'Regine', 'Bayer', 'Hagenplatz 215', 'Fulda', 'klara.eichhorn@freenet.de', 39), +(25, 'Frau Prof. Dr.', 'Christopher', 'Bühler', 'Anneliese-Witt-Ring 8/3', 'Gießen', 'aloisia67@gmx.de', 61), +(26, 'Frau Prof. Dr.', 'Hildegard', 'Schramm', 'Vetterstraße 488', 'Reutlingen', 'koch.dorte@gmx.de', 18), +(27, 'Herr Dr.', 'Margrit', 'Geyer', 'Nowakstraße 08a', 'Heidenheim an der Brenz', 'reinhardt.bernd@live.de', 59), +(28, 'Frau', 'Renata', 'Albers', 'Elmar-Seidl-Platz 9', 'Sankt Ingbert', 'constanze.mayer@freenet.de', 62), +(29, 'Herr Prof. Dr.', 'Magnus', 'Kruse', 'Burgerstraße 60c', 'Wallenhorst', 'altmann.florian@web.de', 26), +(30, 'Herr Prof. Dr.', 'Anne', 'Bruns', 'Ulla-Neumann-Platz 286', 'Tübingen', 'irmtraut50@gmx.de', 50), +(31, 'Frau Dr.', 'Konrad', 'Karl', 'Voigtring 7/9', 'Winsen (Luhe)', 'bkoster@gmail.com', 23), +(32, 'Frau Dr.', 'Nico', 'Grimm', 'Bärgasse 91b', 'Seevetal', 'fleischmann.silvio@googlemail.com', 62), +(33, 'Herr Prof. Dr.', 'Nadine', 'Reinhardt', 'Neubertgasse 201', 'Tönisvorst', 'volkmar.philipp@t-online.de', 40), +(34, 'Herr Prof.', 'Jürgen', 'Schramm', 'Benderstraße 7b', 'Troisdorf', 'irina.zimmer@mail.de', 51), +(35, 'Frau', 'Nadine', 'Kessler', 'Ackermannweg 2/9', 'Porta Westfalica', 'tsauter@gmail.com', 48), +(36, 'Herr Prof.', 'Martina', 'Strauß', 'Sturmweg 1a', 'Lengerich', 'diethard.weiss@t-online.de', 51), +(37, 'Frau', 'Mirjam', 'Martens', 'Zieglerstraße 414', 'Husum', 'krause.piotr@hotmail.de', 36), +(38, 'Herr Prof.', 'Paula', 'Will', 'Arndtring 70', 'Maintal', 'axel.meyer@hotmail.de', 64), +(39, 'Frau', 'Albert', 'Fleischer', 'Westphalallee 9/5', 'Staßfurt', 'anneliese07@yahoo.de', 23), +(40, 'Frau', 'Renata', 'Kretschmer', 'Tanja-Böhm-Allee 1/8', 'Delitzsch', 'marina44@mail.de', 53), +(41, 'Frau Prof.', 'Marek', 'Wiesner', 'Mona-Kirsch-Platz 3b', 'Wesel', 'alois.walter@gmx.de', 38), +(42, 'Herr Prof. Dr.', 'Reinhardt', 'Hildebrandt', 'Friedrich-Schulze-Gasse 322', 'Idar-Oberstein', 'franziska80@aol.de', 72), +(43, 'Herr Prof.', 'Larissa', 'Menzel', 'Fischerallee 8b', 'Vreden', 'pkeil@web.de', 52), +(44, 'Frau Prof. Dr.', 'Dietmar', 'Oswald', 'Ilona-Strauß-Straße 955', 'Göttingen', 'weckert@mail.de', 18), +(45, 'Frau Prof. Dr.', 'Mehmet', 'Wenzel', 'Gesa-Greiner-Gasse 92', 'Zittau', 'uschi90@aol.de', 52), +(46, 'Frau Prof.', 'Vanessa', 'Hoffmann', 'Kremerweg 8/5', 'Warendorf', 'nott@live.de', 65), +(47, 'Herr Prof. Dr.', 'Gabriele', 'Stumpf', 'Walterstr. 61', 'Lahr/Schwarzwald', 'marc31@yahoo.de', 58), +(48, 'Herr', 'Anke', 'Hesse', 'Dietmar-Kiefer-Allee 967', 'Meißen', 'margitta.heim@t-online.de', 51), +(49, 'Frau Dr.', 'Olga', 'Brand', 'Betzallee 7', 'Nordhorn', 'walther.isabell@hotmail.de', 80), +(50, 'Frau Dr.', 'Markus', 'Hofmann', 'Siglinde-Eberhardt-Platz 4', 'Verden (Aller)', 'hubner.ingelore@googlemail.com', 19), +(51, 'Herr Prof.', 'Annemarie', 'Seifert', 'Müllerstr. 07', 'Oer-Erkenschwick', 'jschramm@yahoo.de', 32), +(52, 'Herr Prof.', 'Kirsten', 'Jakob', 'Mohrstr. 113', 'Überlingen', 'hermann.hess@aol.de', 60), +(53, 'Frau Dr.', 'Nancy', 'Noack', 'Sophia-Göbel-Gasse 8/1', 'Augsburg', 'cpreuss@yahoo.de', 23), +(54, 'Frau Prof. Dr.', 'Ivonne', 'Heck', 'Natalja-Wirth-Weg 00b', 'Pirmasens', 'natalie87@yahoo.de', 72), +(55, 'Herr Prof. Dr.', 'Henri', 'Haas', 'Karlheinz-Meißner-Weg 5/6', 'Andernach', 'ulrich.ziegler@googlemail.com', 37), +(56, 'Frau Prof.', 'Ahmet', 'Kröger', 'Helge-Kirchner-Gasse 19a', 'Amberg', 'khenke@posteo.de', 42), +(57, 'Frau', 'Peter', 'Klaus', 'Veronika-Peter-Platz 807', 'Herrenberg', 'antonie.zimmermann@mail.de', 43), +(58, 'Herr', 'Edda', 'Krause', 'Heinrichweg 58', 'Bad Homburg vor der Höhe', 'wegener.liesel@mail.de', 49), +(59, 'Herr Prof.', 'Karolina', 'Schuler', 'Kurzweg 27a', 'Löhne', 'msonntag@hotmail.de', 43), +(60, 'Frau Dr.', 'Imke', 'Wolter', 'Sonntagweg 9', 'Suhl', 'wladimir53@live.de', 63), +(61, 'Frau Prof.', 'Wenzel', 'Diehl', 'Schmitzallee 93', 'Senftenberg', 'klemens93@yahoo.de', 43), +(62, 'Frau Prof.', 'Timo', 'Eder', 'René-Holz-Straße 3', 'Glauchau', 'sergej78@live.de', 20), +(63, 'Frau Dr.', 'Loni', 'Wenzel', 'Friedrichring 8/4', 'Monheim am Rhein', 'hansdieter99@googlemail.com', 29), +(64, 'Herr Prof.', 'Lucie', 'Schneider', 'Güntherstr. 54', 'Blieskastel', 'geisler.luzie@aol.de', 18), +(65, 'Frau Dr.', 'Fred', 'Kuhn', 'Noackstraße 18', 'Bad Waldsee', 'horstdieter.burger@freenet.de', 21), +(66, 'Frau Prof.', 'Maritta', 'Heck', 'Reichertstr. 25', 'Kaarst', 'anny.hartwig@gmail.com', 77), +(67, 'Frau', 'Teresa', 'Witt', 'Marianne-Schiller-Platz 28', 'Seelze', 'falk.babette@gmx.de', 58), +(68, 'Herr Prof. Dr.', 'Henriette', 'Wieland', 'Marita-Hermann-Ring 506', 'Gevelsberg', 'frohlich.gerti@web.de', 77), +(69, 'Herr Dr.', 'Klaus Dieter', 'Fischer', 'Margarete-Hauser-Platz 629', 'Rendsburg', 'willibald.hartwig@hotmail.de', 68), +(70, 'Frau Prof. Dr.', 'Reinhold', 'Krauß', 'Jan-Konrad-Allee 3a', 'Wunstorf', 'karsten29@mail.de', 58), +(71, 'Frau Prof. Dr.', 'Bastian', 'Reichel', 'Bogdan-Weigel-Allee 2/8', 'Lutherstadt Eisleben', 'bmerz@web.de', 24), +(72, 'Frau Dr.', 'Mathilde', 'Schulte', 'Hoppestraße 563', 'Soest', 'feichhorn@posteo.de', 41), +(73, 'Herr Dr.', 'Annelies', 'Weiss', 'Jose-Forster-Gasse 851', 'Elmshorn', 'volkmar.nowak@t-online.de', 35), +(74, 'Herr Prof. Dr.', 'Melitta', 'Weis', 'Krausestraße 3c', 'Groß-Gerau', 'rieger.tatjana@hotmail.de', 21), +(75, 'Herr Dr.', 'Anneliese', 'Steffen', 'Max-Wirth-Gasse 34a', 'Meckenheim', 'jlinke@googlemail.com', 64), +(76, 'Frau', 'Günther', 'Knoll', 'Wolfram-Wimmer-Ring 89', 'Torgau', 'schulze.egbert@aol.de', 66), +(77, 'Herr', 'Georg', 'Brückner', 'Mechthild-Ritter-Ring 80a', 'Bad Harzburg', 'heidemarie90@yahoo.de', 52), +(78, 'Herr', 'Natascha', 'Erdmann', 'Simonweg 3', 'Herzogenrath', 'siegmund.konig@mail.de', 55), +(79, 'Herr Prof.', 'Rudolf', 'Eberhardt', 'Yusuf-Herzog-Straße 3a', 'Salzkotten', 'dvogel@mail.de', 64), +(80, 'Herr Dr.', 'Nico', 'Hiller', 'Wilhelmine-Fleischmann-Platz 37a', 'Kaltenkirchen', 'ebert.elfriede@freenet.de', 27), +(81, 'Frau', 'Gerda', 'Bartsch', 'Pieperallee 55', 'Wolfsburg', 'ilona01@live.de', 50), +(82, 'Frau Dr.', 'Wally', 'Kunz', 'Willibald-Fink-Platz 2/9', 'Alsdorf', 'sonke15@web.de', 78), +(83, 'Frau Prof. Dr.', 'Pia', 'Janßen', 'Ludger-Steinbach-Gasse 63a', 'Holzminden', 'marek.gebhardt@posteo.de', 62), +(84, 'Frau Prof. Dr.', 'Hüseyin', 'Janssen', 'Brandlstraße 2b', 'Rheinberg', 'marc.brinkmann@gmail.com', 78), +(85, 'Frau Prof. Dr.', 'Michel', 'Hentschel', 'Nollplatz 63c', 'Erkelenz', 'danny.frank@mail.de', 45), +(86, 'Frau', 'Pamela', 'Hamann', 'Fuchsallee 3/0', 'Borken', 'carla.hildebrandt@googlemail.com', 71), +(87, 'Frau', 'Luigi', 'Fröhlich', 'Baierstraße 15', 'Ditzingen', 'gebhard21@freenet.de', 42), +(88, 'Frau', 'Eckhard', 'Brand', 'John-Schade-Straße 2/7', 'Bad Oeynhausen', 'miroslaw.reich@gmx.de', 73), +(89, 'Frau', 'Hans', 'Böhm', 'Falkgasse 3', 'Gaggenau', 'qsauter@aol.de', 49), +(90, 'Frau Dr.', 'Helmar', 'Vollmer', 'Karl-Heinrich-Lang-Platz 7/8', 'Papenburg', 'lange.hendrik@yahoo.de', 51), +(91, 'Frau Prof.', 'Henri', 'Preuß', 'Hella-Opitz-Ring 5a', 'Ravensburg', 'sfuhrmann@yahoo.de', 26), +(92, 'Herr Dr.', 'Anita', 'Lange', 'Heckgasse 01c', 'Westerstede', 'kunze.kornelia@gmx.de', 57), +(93, 'Herr Prof. Dr.', 'Pierre', 'Kramer', 'Roger-Sommer-Ring 9c', 'Syke', 'christel.dittrich@aol.de', 65), +(94, 'Frau Prof.', 'Danuta', 'Kroll', 'Theo-Wirth-Platz 3', 'Büren', 'stark.henry@yahoo.de', 62), +(95, 'Frau Dr.', 'Nikolai', 'Seidl', 'Miriam-Maier-Platz 28a', 'Warendorf', 'mario17@googlemail.com', 62), +(96, 'Herr Dr.', 'Enno', 'Hanke', 'Niels-Paul-Ring 043', 'Olpe', 'pgabriel@hotmail.de', 55), +(97, 'Herr', 'Gabriele', 'Wilhelm', 'Frankeplatz 6/4', 'Barsinghausen', 'bthiel@t-online.de', 44), +(98, 'Frau Dr.', 'Maik', 'Schuler', 'Nikolai-Brandl-Ring 5', 'Zwickau', 'bender.reimund@mail.de', 63), +(99, 'Herr Prof. Dr.', 'Arno', 'Zander', 'Sylke-Kruse-Allee 00c', 'Flensburg', 'johanna.schade@posteo.de', 47), +(100, 'Herr Prof.', 'Miriam', 'Köhler', 'Arnoldstr. 3', 'Hof', 'traudel70@yahoo.de', 21), +(101, 'Frau', 'Isabelle', 'Klaus', 'Nagelallee 8', 'Eckernförde', 'ingelore65@mail.de', 40), +(102, 'Herr', 'Arno', 'Voß', 'Ria-Graf-Platz 59', 'Puchheim', 'grete39@hotmail.de', 45), +(103, 'Herr', 'Tim', 'Schindler', 'Lothar-Strauß-Ring 08b', 'Geislingen an der Steige', 'vincenzo20@posteo.de', 24), +(104, 'Frau Prof.', 'Nikolai', 'Kluge', 'Theresia-Fuhrmann-Allee 495', 'Euskirchen', 'margitta.voss@freenet.de', 27), +(105, 'Frau', 'Darius', 'Klaus', 'Elisabeth-Reichert-Platz 6', 'Gladbeck', 'heinzdieter81@posteo.de', 48), +(106, 'Herr Prof.', 'Ulf', 'Noack', 'Voigtring 962', 'Petershagen', 'marliese57@web.de', 40), +(107, 'Herr Prof.', 'Lydia', 'Walter', 'Finkplatz 73', 'Grimma', 'hempel.holger@web.de', 74), +(108, 'Frau', 'Regina', 'Henning', 'Silke-Riedel-Straße 8c', 'Weiterstadt', 'bkraus@yahoo.de', 27), +(109, 'Frau', 'Hanspeter', 'Fink', 'Kriegerstraße 160', 'Ludwigsburg', 'sabina.fink@t-online.de', 18), +(110, 'Herr Prof. Dr.', 'Henriette', 'Binder', 'Josefa-Brandt-Platz 3', 'Ahlen', 'jfuhrmann@mail.de', 20), +(111, 'Frau', 'Norbert', 'Kühn', 'Rico-Lange-Ring 790', 'Gummersbach', 'eckhard62@hotmail.de', 49), +(112, 'Frau', 'Fred', 'Beer', 'Nagelweg 4', 'Werne', 'cmoser@yahoo.de', 62), +(113, 'Herr Dr.', 'Hasan', 'Albers', 'Helena-Bühler-Platz 4b', 'Jülich', 'jacqueline67@freenet.de', 62), +(114, 'Herr', 'Giesela', 'Maier', 'Hermann-Josef-Benz-Ring 3', 'Freising', 'nbehrens@gmail.com', 32), +(115, 'Frau', 'Emma', 'Binder', 'Brigitta-Hauser-Straße 371', 'Ingolstadt', 'dschmitz@googlemail.com', 61), +(116, 'Herr Prof. Dr.', 'Malte', 'Dorn', 'Frieda-Beck-Weg 34c', 'Stuhr', 'baum.arnold@t-online.de', 31), +(117, 'Herr', 'Gerhild', 'Ziegler', 'Riegergasse 003', 'Bedburg', 'votto@googlemail.com', 71), +(118, 'Herr Dr.', 'Barbara', 'Köhler', 'Kramergasse 56b', 'Schloß Holte-Stukenbrock', 'rhermann@aol.de', 19), +(119, 'Herr Dr.', 'Felix', 'Weiß', 'Falkweg 01c', 'Geesthacht', 'ivo61@t-online.de', 70), +(120, 'Herr', 'Richard', 'Hecht', 'Moritz-Barthel-Platz 3', 'Büren', 'bettina29@posteo.de', 31), +(121, 'Frau', 'Stanislaw', 'Klein', 'Schüttering 2b', 'Germering', 'buck.hubert@aol.de', 71), +(122, 'Frau Dr.', 'Minna', 'Naumann', 'Mike-Wiegand-Ring 3', 'Neuwied', 'ilona12@gmx.de', 61), +(123, 'Herr Prof. Dr.', 'Toni', 'Kuhn', 'Kösterring 24', 'Greifswald', 'gertrude57@yahoo.de', 49), +(124, 'Herr Dr.', 'Alma', 'Scheffler', 'Rosi-John-Weg 7b', 'Bottrop', 'johanne.kluge@yahoo.de', 57), +(125, 'Herr', 'Hartmut', 'Wieland', 'Helen-Knoll-Platz 86c', 'Oranienburg', 'wagner.ida@aol.de', 68), +(126, 'Herr', 'Christiane', 'Breuer', 'Timo-Bühler-Gasse 688', 'Salzgitter', 'susanne.mohr@gmail.com', 60), +(127, 'Herr Prof. Dr.', 'Anneliese', 'Stark', 'Irmtraut-Michels-Platz 4c', 'Bad Zwischenahn', 'wzander@web.de', 32), +(128, 'Herr', 'Marie', 'Stoll', 'Beckallee 43', 'Garbsen', 'jorg.gruber@mail.de', 49), +(129, 'Frau Prof.', 'Ralf', 'Decker', 'Dietmar-Hiller-Straße 0/4', 'Rietberg', 'becker.annelore@hotmail.de', 21), +(130, 'Herr Dr.', 'Lena', 'Müller', 'Julia-Horn-Gasse 6a', 'Lüneburg', 'nikolai.ehlers@freenet.de', 77), +(131, 'Frau Dr.', 'Mirco', 'Fleischer', 'Ackermannstraße 668', 'Mannheim', 'haas.erwin@t-online.de', 58), +(132, 'Frau', 'Michael', 'Moritz', 'Rosel-Kessler-Straße 6b', 'Barsinghausen', 'doreen36@web.de', 49), +(133, 'Frau', 'Clemens', 'Breuer', 'Papestraße 4', 'Rottweil', 'jacobs.ramazan@posteo.de', 26), +(134, 'Frau Prof. Dr.', 'Denis', 'Kroll', 'Sommerstr. 28', 'Ilmenau', 'christopher36@web.de', 56), +(135, 'Herr Prof. Dr.', 'Natascha', 'Krug', 'Meinhard-Geiger-Gasse 45c', 'Schwedt/Oder', 'sebastian48@yahoo.de', 36), +(136, 'Frau Dr.', 'Robin', 'Jacob', 'Daniela-Krause-Ring 6/0', 'Wipperfürth', 'opitz.adolf@yahoo.de', 45), +(137, 'Herr Prof. Dr.', 'Heinz-Jürgen', 'Heck', 'Simona-Thiele-Allee 2', 'Königs Wusterhausen', 'neuhaus.heiner@live.de', 73), +(138, 'Herr', 'Eleonore', 'Haupt', 'Bodeallee 44b', 'Fröndenberg/Ruhr', 'viktor.busch@live.de', 36), +(139, 'Frau Dr.', 'Hasan', 'Funk', 'Ortrud-Bruns-Ring 9', 'Nettetal', 'jorn.franz@gmx.de', 25), +(140, 'Frau', 'Carola', 'Ziegler', 'Thielallee 67c', 'Rudolstadt', 'thamann@t-online.de', 62), +(141, 'Frau Prof. Dr.', 'Gerald', 'Pfeifer', 'Danuta-Baur-Straße 01', 'Sprockhövel', 'mirco.grimm@web.de', 26), +(142, 'Herr', 'Friedrich', 'Siebert', 'Birgit-Krebs-Straße 8b', 'Wallenhorst', 'gschubert@mail.de', 24), +(143, 'Herr Prof. Dr.', 'Gert', 'Kühn', 'Ahrensstraße 357', 'Blieskastel', 'plechner@aol.de', 24), +(144, 'Herr', 'Sigurd', 'Schreiber', 'Anatoli-Meister-Ring 325', 'Langen', 'joanna.jordan@freenet.de', 60), +(145, 'Herr', 'Ingeburg', 'Sommer', 'Schumacherstr. 8c', 'Landshut', 'theresa.straub@gmx.de', 60), +(146, 'Frau Dr.', 'Eva', 'Eberhardt', 'Rauschstr. 43c', 'Xanten', 'ina01@gmail.com', 43), +(147, 'Herr Prof. Dr.', 'Ingeborg', 'Mertens', 'Fröhlichstraße 0', 'Melle', 'udo.reichert@aol.de', 41), +(148, 'Frau', 'Teresa', 'Haase', 'Eva-Maria-Fricke-Straße 475', 'Panketal', 'erich.renner@googlemail.com', 58), +(149, 'Herr', 'Lore', 'Winkler', 'Heinz-Werner-Wilke-Allee 258', 'Andernach', 'magnus71@hotmail.de', 41), +(150, 'Frau Prof.', 'Elsa', 'Hentschel', 'Mannplatz 0c', 'Meißen', 'boris52@web.de', 23), +(151, 'Frau Prof. Dr.', 'Gundula', 'Döring', 'Marlies-Grimm-Ring 6c', 'Euskirchen', 'xbuhler@live.de', 46), +(152, 'Frau Prof. Dr.', 'Christl', 'Funke', 'Brennerweg 9c', 'Roth', 'aloisia46@gmail.com', 74), +(153, 'Frau Prof. Dr.', 'Martha', 'Baumann', 'Jacobplatz 64', 'Haar', 'natascha.bock@gmail.com', 71), +(154, 'Herr Prof. Dr.', 'Brunhild', 'Schulte', 'Wera-Schuster-Allee 6/4', 'Baesweiler', 'ffleischmann@mail.de', 18), +(155, 'Frau Prof.', 'Walburga', 'Rudolph', 'Torben-Heck-Allee 6', 'Siegburg', 'scholz.martina@googlemail.com', 22), +(156, 'Frau', 'Leonid', 'Auer', 'Sylvia-Harms-Weg 61b', 'Stendal', 'reuter.ella@hotmail.de', 30), +(157, 'Frau', 'Osman', 'Wegner', 'Therese-Straub-Ring 20b', 'Geretsried', 'rosmarie.held@live.de', 32), +(158, 'Herr', 'Barbara', 'Seiler', 'Nickelplatz 5', 'Nordenham', 'erik.strobel@yahoo.de', 60), +(159, 'Frau', 'Irina', 'Gebhardt', 'Merkelring 115', 'Gardelegen', 'balbers@live.de', 80), +(160, 'Frau Dr.', 'Ingolf', 'Fuhrmann', 'Funkeweg 9/9', 'Geseke', 'isabell.eder@yahoo.de', 54), +(161, 'Frau Prof. Dr.', 'Julia', 'Walter', 'Konradstraße 138', 'Lutherstadt Eisleben', 'olaf48@googlemail.com', 31), +(162, 'Frau', 'Änne', 'Witte', 'Kerstin-Wenzel-Gasse 8', 'Berlin', 'decker.nadja@posteo.de', 51), +(163, 'Frau Prof. Dr.', 'Danuta', 'Böttcher', 'Heidi-Ritter-Ring 09c', 'Bad Kreuznach', 'gerald.busch@gmx.de', 27), +(164, 'Frau Prof. Dr.', 'Piotr', 'Jacob', 'Anna-Ackermann-Weg 9a', 'Bad Soden am Taunus', 'franke.albrecht@gmail.com', 46), +(165, 'Herr', 'Ibrahim', 'Behrens', 'Heßallee 60b', 'Winnenden', 'hansdieter.dorn@hotmail.de', 49), +(166, 'Herr Dr.', 'Mona', 'Wittmann', 'Katarina-Ackermann-Weg 113', 'Horb am Neckar', 'wolf91@googlemail.com', 77), +(167, 'Herr Prof. Dr.', 'Sibylle', 'Wegner', 'Hoppegasse 91a', 'Geestland', 'glindemann@gmail.com', 76), +(168, 'Herr', 'Ursel', 'Schrader', 'Reinhold-Bach-Ring 0c', 'Bad Mergentheim', 'kohler.karlheinz@googlemail.com', 50), +(169, 'Herr', 'Rebecca', 'Hartwig', 'Wulfallee 5/0', 'Fürstenfeldbruck', 'erna60@yahoo.de', 72), +(170, 'Herr Prof.', 'Oskar', 'Sauer', 'Vollmerstr. 98', 'Bünde', 'meta82@aol.de', 59), +(171, 'Frau Prof. Dr.', 'Edwin', 'Reinhardt', 'Pfeifergasse 423', 'Traunreut', 'hermann.hennig@mail.de', 20), +(172, 'Frau Prof. Dr.', 'Silvana', 'Zander', 'Seifertallee 92', 'Lohne (Oldenburg)', 'nwild@aol.de', 61), +(173, 'Herr Prof.', 'Karl-Friedrich', 'Wunderlich', 'Gerhild-Wittmann-Straße 46c', 'Berlin', 'roger01@gmx.de', 20), +(174, 'Herr Prof. Dr.', 'Torsten', 'Köster', 'Heinemannweg 75', 'Göppingen', 'hansgerd82@t-online.de', 51), +(175, 'Herr Prof.', 'Elise', 'Hermann', 'Nikolaus-Haupt-Gasse 58c', 'Kulmbach', 'dagmar.bischoff@googlemail.com', 18), +(176, 'Frau Dr.', 'Giesela', 'Barthel', 'Ralph-Jahn-Platz 5/2', 'Kehl', 'danny09@gmx.de', 74), +(177, 'Herr Dr.', 'Alwin', 'Greiner', 'Thomasweg 41', 'Dortmund', 'resi.riedl@gmx.de', 29), +(178, 'Frau Dr.', 'Gunther', 'Born', 'Finkgasse 2', 'Maintal', 'richard.busch@yahoo.de', 59), +(179, 'Frau Dr.', 'Swetlana', 'Schröter', 'Doris-Witt-Ring 308', 'Meppen', 'qlindner@posteo.de', 19), +(180, 'Frau Prof. Dr.', 'Achim', 'Hofmann', 'Hüseyin-Niemann-Allee 95', 'Lahr/Schwarzwald', 'klaudia81@aol.de', 39), +(181, 'Frau Prof. Dr.', 'Britta', 'Fritz', 'Schrammstraße 1a', 'Rietberg', 'ida03@posteo.de', 28), +(182, 'Herr Dr.', 'Patricia', 'Löffler', 'Dorothee-Born-Straße 7', 'Riesa', 'engelbert.langer@freenet.de', 41), +(183, 'Herr Prof.', 'Wendelin', 'Bartels', 'Henrik-Herold-Straße 2', 'Hanau', 'qkolb@yahoo.de', 77), +(184, 'Frau', 'Holger', 'Gabriel', 'Änne-Schrader-Ring 4', 'Norden', 'hahn.hansotto@mail.de', 24), +(185, 'Frau', 'Mike', 'Frank', 'Krögerweg 35c', 'Langen', 'gretel72@yahoo.de', 39), +(186, 'Frau Dr.', 'Christl', 'Lechner', 'Roland-Bertram-Platz 5', 'Lippstadt', 'meister.karlludwig@gmail.com', 54), +(187, 'Frau Prof.', 'Luigi', 'Schultz', 'Karl-Ludwig-Kraus-Ring 8', 'Dietzenbach', 'lechner.sophie@aol.de', 48), +(188, 'Herr Prof. Dr.', 'Walther', 'Eder', 'Burgerweg 2/0', 'Kempen', 'ida.otto@yahoo.de', 54), +(189, 'Herr Prof. Dr.', 'Robert', 'Bader', 'Gebhard-Nowak-Allee 66b', 'Leonberg', 'pauline91@gmail.com', 55), +(190, 'Herr Dr.', 'Hans-Otto', 'Martin', 'Langerweg 1', 'Dillenburg', 'ulf.dietz@gmx.de', 59), +(191, 'Frau Dr.', 'Anke', 'Mayr', 'Ali-Eder-Gasse 067', 'Strausberg', 'sara.scholz@gmail.com', 64), +(192, 'Frau Dr.', 'Arnd', 'Busse', 'Buckallee 6', 'Eschweiler', 'nicole.kuhn@posteo.de', 70), +(193, 'Herr Dr.', 'Steffi', 'Engelhardt', 'Stollgasse 9a', 'Neusäß', 'kruger.gisela@yahoo.de', 25), +(194, 'Herr Prof.', 'Emmy', 'Sturm', 'Jenny-Keßler-Weg 381', 'Homburg', 'sigurd09@hotmail.de', 19), +(195, 'Frau', 'Katharina', 'Greiner', 'Wolterallee 1', 'Königswinter', 'karl.gertraud@freenet.de', 54), +(196, 'Herr Prof. Dr.', 'Sofia', 'Rausch', 'Ilse-Rau-Straße 69', 'Übach-Palenberg', 'falko68@hotmail.de', 27), +(197, 'Frau', 'Marko', 'Marx', 'Margot-Rausch-Weg 25', 'Viersen', 'bertram90@aol.de', 54), +(198, 'Frau Prof. Dr.', 'Burkhard', 'Steinbach', 'Christina-Noack-Platz 5/9', 'Voerde (Niederrhein)', 'siegmund82@gmail.com', 22), +(199, 'Frau Prof.', 'Ahmed', 'Mohr', 'Willstraße 1b', 'Stade', 'katrin95@web.de', 21), +(200, 'Frau Dr.', 'Jan', 'Frey', 'Engelstr. 492', 'Schwetzingen', 'steinbach.helena@web.de', 36); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `customers_interested_in` +-- + +CREATE TABLE `customers_interested_in` ( + `id` bigint(20) UNSIGNED NOT NULL, + `customer_id` bigint(20) UNSIGNED NOT NULL, + `category_id` bigint(20) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `locations` +-- + +CREATE TABLE `locations` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL, + `address` varchar(1023) COLLATE utf8mb4_unicode_ci NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `locations` +-- + +INSERT INTO `locations` (`id`, `title`, `address`) VALUES +(1, 'Buchhandlung Marienplatz', 'Marienplatz 1, 80331 München'), +(2, 'Buchhandlung Alexanderplatz', 'Alexanderplatz, 10178 Berlin'), +(3, 'Buchhandlung Dom', 'Domkloster 1, 50667 Köln'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `migrations` +-- + +CREATE TABLE `migrations` ( + `id` int(10) UNSIGNED NOT NULL, + `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `batch` int(11) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `migrations` +-- + +INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES +(1, '2019_08_26_121148_create_customers_table', 1), +(2, '2019_08_26_181957_create_books_table', 1), +(3, '2019_08_27_152226_create_orders_table', 1), +(4, '2019_09_03_123331_create_categories_table', 1), +(5, '2019_10_17_142102_create_customer_preferences_table', 1), +(6, '2019_11_22_060632_create_shakespeare_table', 1), +(7, '2019_11_26_093045_create_blog_posts_table', 1), +(8, '2019_11_26_093133_create_blog_posts_history_table', 1), +(9, '2019_12_05_075512_create_baby_names_table', 1), +(10, '2019_12_05_081446_add_indexes_to_baby_names_table', 1), +(11, '2019_12_07_095852_create_books_subjects_table', 1), +(12, '2019_12_07_095914_add_subject_id_to_books_table', 1), +(13, '2019_12_10_081149_create_locations_table', 1), +(14, '2019_12_12_103220_add_creator_index_to_books_table', 1); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `orders` +-- + +CREATE TABLE `orders` ( + `id` bigint(20) UNSIGNED NOT NULL, + `timestamp` timestamp NOT NULL, + `amount` decimal(8,2) NOT NULL, + `customer_id` bigint(20) UNSIGNED DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `orders` +-- + +INSERT INTO `orders` (`id`, `timestamp`, `amount`, `customer_id`) VALUES +(1, '2016-01-11 12:13:34', '54.00', 162), +(2, '2010-09-13 01:06:35', '74.00', 194), +(3, '2011-03-30 08:16:48', '15.00', 97), +(4, '2003-05-20 10:02:04', '25.00', 40), +(5, '2003-03-19 18:42:55', '8.00', 131), +(6, '2007-03-03 18:28:12', '73.00', 76), +(7, '2005-09-17 23:59:32', '37.00', 182), +(8, '2004-05-14 13:36:40', '75.00', 35), +(9, '2003-09-14 15:54:28', '96.00', 177), +(10, '2006-06-11 03:29:40', '60.00', 195), +(11, '2013-05-08 19:33:33', '65.00', 126), +(12, '2018-05-06 17:06:04', '10.00', 16), +(13, '2018-07-12 13:46:36', '21.00', 116), +(14, '2004-01-04 19:44:40', '93.00', 120), +(15, '2002-05-06 10:08:11', '28.00', 127), +(16, '2017-02-11 07:45:30', '43.00', 163), +(17, '2003-12-19 09:41:54', '67.00', 148), +(18, '2011-07-12 09:46:25', '67.00', 64), +(19, '2011-05-08 23:26:27', '71.00', 197), +(20, '2002-10-12 23:46:36', '68.00', 113), +(21, '2005-03-04 08:45:37', '70.00', 67), +(22, '2004-12-22 22:02:33', '64.00', 40), +(23, '2011-12-10 05:20:21', '67.00', 159), +(24, '2002-02-12 18:28:42', '12.00', 132), +(25, '2001-05-11 13:00:31', '39.00', 179), +(26, '2004-08-06 09:31:43', '91.00', 142), +(27, '2014-11-09 16:43:16', '85.00', 103), +(28, '2019-07-11 09:49:36', '75.00', 146), +(29, '2004-06-24 07:37:49', '48.00', 163), +(30, '2007-02-06 00:10:15', '99.00', 184), +(31, '2018-09-24 07:51:30', '65.00', 131), +(32, '2006-11-29 18:12:22', '53.00', 197), +(33, '2019-01-05 10:59:28', '25.00', 74), +(34, '2013-01-02 07:19:01', '59.00', 51), +(35, '2004-09-15 12:01:37', '28.00', 131), +(36, '2018-12-19 17:19:06', '73.00', 56), +(37, '2001-10-15 19:36:20', '35.00', 150), +(38, '2015-11-27 01:44:52', '75.00', 71), +(39, '2005-06-28 04:27:20', '40.00', 161), +(40, '2014-01-05 08:30:10', '68.00', 145), +(41, '2016-06-10 19:25:38', '18.00', 17), +(42, '2007-05-26 13:58:36', '8.00', 166), +(43, '2010-05-23 11:02:34', '82.00', 12), +(44, '2004-01-21 12:12:38', '61.00', 104), +(45, '2005-11-23 06:47:04', '11.00', 152), +(46, '2013-08-22 07:33:01', '50.00', 137), +(47, '2016-01-06 00:47:46', '28.00', 184), +(48, '2016-01-05 13:59:17', '87.00', 125), +(49, '2004-07-05 19:20:17', '44.00', 96), +(50, '2004-02-01 14:44:31', '67.00', 193), +(51, '2009-02-13 10:49:00', '90.00', 26), +(52, '2013-07-03 11:02:02', '16.00', 118), +(53, '2001-05-25 00:38:48', '4.00', 196), +(54, '2001-11-19 18:44:48', '32.00', 151), +(55, '2004-04-25 16:30:37', '64.00', 140), +(56, '2004-09-21 11:57:36', '47.00', 144), +(57, '2002-10-30 13:03:48', '59.00', 60), +(58, '2000-10-11 10:30:36', '32.00', 146), +(59, '2012-12-28 17:45:55', '33.00', 103), +(60, '2017-04-25 22:53:23', '27.00', 73), +(61, '2002-06-14 06:56:28', '95.00', 57), +(62, '2019-05-04 18:22:03', '30.00', 162), +(63, '2006-01-02 18:28:58', '66.00', 95), +(64, '2016-07-26 19:00:23', '69.00', 67), +(65, '2002-07-20 16:38:41', '80.00', 67), +(66, '2017-03-20 20:39:21', '36.00', 131), +(67, '2002-09-29 00:58:33', '42.00', 153), +(68, '2007-10-29 08:28:34', '68.00', 27), +(69, '2014-04-08 04:40:33', '5.00', 103), +(70, '2013-12-07 23:31:13', '83.00', 82), +(71, '2007-03-21 21:26:30', '96.00', 99), +(72, '2007-06-16 10:05:30', '26.00', 29), +(73, '2004-10-24 13:11:08', '89.00', 193), +(74, '2015-06-22 05:24:37', '63.00', 196), +(75, '2012-03-18 20:19:17', '20.00', 117), +(76, '2012-10-25 03:41:36', '52.00', 180), +(77, '2006-09-12 16:02:34', '41.00', 82), +(78, '2010-08-13 10:41:57', '47.00', 182), +(79, '2018-03-29 04:13:21', '92.00', 144), +(80, '2009-01-30 05:56:21', '14.00', 104), +(81, '2019-03-05 19:23:10', '11.00', 178), +(82, '2011-12-14 22:48:48', '13.00', 75), +(83, '2010-10-19 18:14:51', '49.00', 94), +(84, '2017-11-01 12:41:56', '52.00', 171), +(85, '2009-04-22 16:46:35', '87.00', 124), +(86, '2003-11-28 21:30:39', '19.00', 109), +(87, '2014-10-01 15:42:52', '53.00', 67), +(88, '2019-03-26 14:19:19', '14.00', 181), +(89, '2019-04-06 02:46:40', '42.00', 81), +(90, '2017-06-21 06:52:10', '30.00', 197), +(91, '2008-01-31 07:03:45', '66.00', 194), +(92, '2007-01-21 03:40:21', '39.00', 183), +(93, '2003-12-01 16:28:04', '35.00', 192), +(94, '2016-07-10 08:50:59', '99.00', 34), +(95, '2000-03-25 20:03:22', '79.00', 134), +(96, '2013-05-02 11:27:51', '56.00', 160), +(97, '2012-06-06 02:03:40', '54.00', 23), +(98, '2019-02-18 10:30:55', '20.00', 170), +(99, '2013-04-23 09:03:42', '4.00', 196), +(100, '2007-09-09 22:24:01', '61.00', 95), +(101, '2018-09-03 11:00:43', '86.00', 161), +(102, '2003-12-10 07:28:25', '0.00', 200), +(103, '2000-12-14 10:12:47', '10.00', 125), +(104, '2014-04-16 03:16:03', '68.00', 133), +(105, '2000-01-29 03:18:16', '69.00', 84), +(106, '2001-09-02 14:02:21', '47.00', 106), +(107, '2006-02-05 06:49:31', '96.00', 41), +(108, '2017-01-16 09:39:34', '35.00', 89), +(109, '2001-07-12 05:25:47', '33.00', 139), +(110, '2006-06-14 11:28:23', '74.00', 50), +(111, '2005-02-15 18:24:52', '89.00', 107), +(112, '2013-11-28 03:09:58', '73.00', 138), +(113, '2016-01-19 21:33:43', '6.00', 51), +(114, '2010-05-12 22:05:00', '88.00', 165), +(115, '2001-08-29 15:08:06', '31.00', 185), +(116, '2000-07-08 10:58:39', '6.00', 192), +(117, '2016-11-18 18:13:41', '47.00', 60), +(118, '2015-05-04 13:13:38', '82.00', 109), +(119, '2008-12-03 17:06:35', '22.00', 152), +(120, '2008-01-06 08:48:38', '45.00', 109), +(121, '2016-10-15 08:20:59', '85.00', 34), +(122, '2014-12-16 14:33:14', '86.00', 124), +(123, '2005-02-05 10:49:41', '25.00', 84), +(124, '2005-06-22 18:44:13', '97.00', 89), +(125, '2005-05-26 16:39:10', '91.00', 194), +(126, '2006-02-04 03:22:59', '10.00', 51), +(127, '2013-12-05 12:17:23', '28.00', 191), +(128, '2008-04-07 11:55:15', '41.00', 98), +(129, '2005-10-15 15:59:01', '53.00', 113), +(130, '2006-03-08 00:48:58', '31.00', 147), +(131, '2004-08-27 04:56:41', '13.00', 166), +(132, '2002-04-14 02:16:52', '84.00', 133), +(133, '2013-07-04 06:15:55', '3.00', 200), +(134, '2001-11-25 19:01:24', '90.00', 66), +(135, '2010-05-13 05:01:15', '32.00', 111), +(136, '2013-01-31 13:27:40', '97.00', 181), +(137, '2008-07-24 15:38:40', '59.00', 143), +(138, '2013-03-02 18:51:18', '51.00', 78), +(139, '2001-10-22 16:22:12', '4.00', 109), +(140, '2016-12-07 19:22:16', '92.00', 99), +(141, '2005-04-18 04:15:39', '45.00', 162), +(142, '2008-08-30 00:20:40', '47.00', 177), +(143, '2007-08-15 06:00:57', '49.00', 142), +(144, '2015-10-19 16:35:00', '77.00', 97), +(145, '2015-06-16 05:37:50', '88.00', 174), +(146, '2019-05-31 23:38:51', '30.00', 77), +(147, '2012-10-21 09:41:01', '95.00', 177), +(148, '2018-11-16 07:30:09', '69.00', 72), +(149, '2018-08-16 14:19:44', '46.00', 95), +(150, '2002-06-11 16:17:33', '83.00', 59), +(151, '2014-04-08 19:21:58', '11.00', 144), +(152, '2009-09-08 10:55:56', '42.00', 138), +(153, '2001-12-07 05:38:40', '88.00', 89), +(154, '2012-05-17 21:45:06', '13.00', 161), +(155, '2017-09-17 14:06:07', '38.00', 134), +(156, '2008-04-25 18:30:19', '47.00', 97), +(157, '2005-07-25 07:36:23', '23.00', 81), +(158, '2017-07-04 16:52:39', '74.00', 149), +(159, '2013-04-15 12:33:06', '88.00', 121), +(160, '2008-12-09 18:23:02', '36.00', 109), +(161, '2008-06-20 17:51:41', '18.00', 100), +(162, '2018-02-08 11:57:44', '26.00', 45), +(163, '2003-12-20 17:26:33', '31.00', 60), +(164, '2018-10-13 06:39:12', '71.00', 114), +(165, '2014-02-04 16:09:58', '5.00', 61), +(166, '2003-12-31 07:09:30', '24.00', 193), +(167, '2004-09-19 00:40:48', '73.00', 147), +(168, '2015-11-11 12:24:37', '75.00', 168), +(169, '2002-10-14 20:49:37', '91.00', 194), +(170, '2009-03-29 03:54:20', '10.00', 147), +(171, '2003-07-02 00:35:20', '22.00', 164), +(172, '2003-08-20 13:56:51', '46.00', 122), +(173, '2013-02-27 08:09:18', '3.00', 93), +(174, '2010-08-30 01:38:13', '71.00', 56), +(175, '2014-03-10 13:09:48', '46.00', 118), +(176, '2010-01-25 23:15:03', '91.00', 127), +(177, '2003-08-11 14:58:08', '93.00', 104), +(178, '2017-07-04 15:50:41', '73.00', 163), +(179, '2016-07-18 03:20:12', '39.00', 169), +(180, '2008-12-14 23:23:38', '62.00', 135), +(181, '2015-01-20 05:03:04', '38.00', 111), +(182, '2015-04-12 03:57:25', '67.00', 132), +(183, '2010-12-26 11:04:53', '62.00', 181), +(184, '2011-02-02 11:52:51', '78.00', 180), +(185, '2008-08-25 22:09:39', '96.00', 190), +(186, '2003-03-21 23:49:14', '97.00', 157), +(187, '2007-08-16 15:44:18', '3.00', 86), +(188, '2009-10-18 05:05:39', '91.00', 87), +(189, '2017-08-16 01:11:09', '82.00', 178), +(190, '2019-06-11 19:55:25', '53.00', 193), +(191, '2001-02-24 20:44:57', '16.00', 35), +(192, '2007-02-12 19:07:12', '31.00', 181), +(193, '2007-12-19 22:09:43', '92.00', 88), +(194, '2019-07-10 19:21:51', '94.00', 152), +(195, '2011-07-22 19:48:32', '20.00', 148), +(196, '2016-11-03 01:46:14', '44.00', 145), +(197, '2001-08-22 23:40:28', '28.00', 193), +(198, '2016-03-04 06:32:53', '8.00', 159), +(199, '2003-06-18 02:11:06', '17.00', 147), +(200, '2014-09-10 20:58:51', '40.00', 79), +(201, '2012-11-29 17:49:06', '43.00', 189), +(202, '2016-05-22 01:42:30', '30.00', 114), +(203, '2010-06-14 06:08:28', '86.00', 148), +(204, '2001-11-18 16:41:18', '39.00', 126), +(205, '2002-12-18 17:45:33', '84.00', 175), +(206, '2014-11-18 01:55:20', '2.00', 174), +(207, '2018-07-18 07:07:08', '22.00', 95), +(208, '2012-10-16 15:12:33', '25.00', 190), +(209, '2005-08-19 04:34:00', '19.00', 110), +(210, '2015-06-22 05:48:28', '16.00', 193), +(211, '2003-10-16 08:28:29', '86.00', 142), +(212, '2017-01-23 16:09:36', '43.00', 190), +(213, '2019-09-16 08:06:10', '24.00', 191), +(214, '2008-08-19 21:53:36', '42.00', 182), +(215, '2001-09-03 03:16:59', '41.00', 136), +(216, '2018-07-21 02:04:27', '85.00', 175), +(217, '2016-04-27 06:51:00', '21.00', 131), +(218, '2019-04-11 21:23:18', '42.00', 165), +(219, '2000-07-01 06:20:56', '36.00', 150), +(220, '2003-03-01 19:34:48', '86.00', 166), +(221, '2006-10-19 21:08:17', '14.00', 187), +(222, '2003-12-03 16:26:47', '92.00', 159), +(223, '2007-10-23 04:34:31', '86.00', 162), +(224, '2000-05-11 00:51:36', '10.00', 197), +(225, '2011-03-31 08:35:41', '25.00', 177), +(226, '2014-01-31 22:34:06', '63.00', 105), +(227, '2018-11-27 05:36:19', '61.00', 134), +(228, '2009-12-05 04:38:03', '75.00', 144), +(229, '2007-08-04 03:53:58', '99.00', 40), +(230, '2010-08-31 05:17:32', '43.00', 193), +(231, '2010-03-25 15:35:23', '93.00', 76), +(232, '2012-06-06 21:39:01', '61.00', 111), +(233, '2016-03-09 19:31:53', '62.00', 192), +(234, '2006-11-18 08:16:27', '93.00', 192), +(235, '2000-06-08 13:03:30', '99.00', 48), +(236, '2019-06-11 10:14:32', '55.00', 148), +(237, '2006-04-03 17:34:03', '73.00', 188), +(238, '2007-12-10 05:41:26', '71.00', 108), +(239, '2004-04-25 16:44:17', '89.00', 132), +(240, '2016-01-26 20:43:22', '12.00', 19), +(241, '2013-11-13 21:43:59', '7.00', 102), +(242, '2009-12-16 06:25:38', '72.00', 52), +(243, '2018-09-17 17:32:43', '39.00', 38), +(244, '2004-04-02 12:21:00', '78.00', 185), +(245, '2017-11-05 11:56:11', '27.00', 187), +(246, '2008-09-18 02:09:25', '13.00', 185), +(247, '2005-04-30 06:34:25', '22.00', 197), +(248, '2011-01-15 06:10:31', '34.00', 139), +(249, '2001-08-10 05:18:53', '31.00', 98), +(250, '2009-08-08 05:45:17', '67.00', 78), +(251, '2015-03-11 09:33:40', '34.00', 145), +(252, '2010-02-12 04:09:41', '42.00', 81), +(253, '2006-11-26 21:56:42', '66.00', 155), +(254, '2007-06-03 23:05:32', '49.00', 196), +(255, '2013-04-14 04:11:23', '30.00', 117), +(256, '2015-04-07 18:17:59', '16.00', 161), +(257, '2014-07-09 11:36:23', '72.00', 150), +(258, '2018-02-05 00:44:10', '85.00', 195), +(259, '2018-10-04 17:25:48', '80.00', 43), +(260, '2011-06-30 11:17:36', '67.00', 23), +(261, '2010-07-24 07:06:46', '89.00', 107), +(262, '2002-06-19 09:22:59', '97.00', 140), +(263, '2009-06-08 19:28:10', '88.00', 94), +(264, '2018-07-21 23:03:52', '95.00', 140), +(265, '2010-04-09 09:46:35', '24.00', 64), +(266, '2011-08-05 13:11:22', '2.00', 137), +(267, '2013-05-22 22:11:40', '12.00', 198), +(268, '2003-09-15 04:01:45', '80.00', 141), +(269, '2013-11-04 00:29:33', '59.00', 169), +(270, '2013-12-26 04:35:51', '12.00', 157), +(271, '2000-07-03 12:56:06', '21.00', 163), +(272, '2000-05-20 07:40:36', '90.00', 92), +(273, '2003-12-10 05:15:20', '55.00', 33), +(274, '2002-07-29 08:54:08', '46.00', 33), +(275, '2000-07-10 16:16:01', '75.00', 190), +(276, '2004-10-20 22:54:17', '9.00', 173), +(277, '2000-11-21 06:51:04', '93.00', 73), +(278, '2007-08-29 23:31:16', '47.00', 135), +(279, '2014-04-14 06:46:42', '68.00', 87), +(280, '2002-10-09 04:36:23', '82.00', 182), +(281, '2001-10-30 13:35:48', '74.00', 111), +(282, '2010-01-04 05:39:53', '82.00', 158), +(283, '2013-11-17 10:07:45', '19.00', 66), +(284, '2007-10-15 05:47:21', '18.00', 168), +(285, '2013-11-15 00:44:37', '38.00', 159), +(286, '2003-12-16 22:42:09', '39.00', 44), +(287, '2000-12-29 06:56:47', '86.00', 53), +(288, '2017-07-28 23:48:11', '51.00', 132), +(289, '2006-11-02 00:15:40', '12.00', 80), +(290, '2012-02-19 16:36:26', '99.00', 159), +(291, '2009-05-22 21:15:02', '34.00', 24), +(292, '2019-04-23 12:48:03', '27.00', 63), +(293, '2010-09-16 21:34:33', '36.00', 169), +(294, '2012-09-22 13:24:59', '5.00', 108), +(295, '2015-12-19 12:18:46', '57.00', 190), +(296, '2014-03-30 00:17:07', '46.00', 95), +(297, '2018-07-21 05:22:27', '16.00', 153), +(298, '2012-01-22 04:58:59', '32.00', 197), +(299, '2009-03-05 18:52:11', '95.00', 14), +(300, '2003-11-07 12:07:41', '6.00', 97), +(301, '2000-12-19 12:24:48', '79.00', 173), +(302, '2008-02-17 06:03:12', '71.00', 146), +(303, '2009-11-29 00:13:51', '0.00', 80), +(304, '2004-07-26 16:33:44', '25.00', 161), +(305, '2006-10-02 14:51:13', '17.00', 93), +(306, '2000-09-02 05:40:08', '9.00', 83), +(307, '2019-04-18 21:30:52', '31.00', 167), +(308, '2004-11-13 19:31:20', '99.00', 194), +(309, '2006-02-13 01:49:20', '91.00', 197), +(310, '2002-09-05 04:06:47', '0.00', 38), +(311, '2000-02-27 06:08:42', '18.00', 37), +(312, '2011-09-10 21:36:23', '20.00', 101), +(313, '2004-05-10 04:26:32', '47.00', 114), +(314, '2019-01-15 09:00:35', '73.00', 49), +(315, '2014-01-06 01:20:45', '32.00', 81), +(316, '2005-06-25 07:57:49', '52.00', 185), +(317, '2012-12-23 10:10:22', '47.00', 195), +(318, '2004-07-01 00:28:41', '88.00', 166), +(319, '2003-10-21 13:13:13', '26.00', 195), +(320, '2003-11-28 17:00:31', '48.00', 117), +(321, '2007-03-13 12:41:12', '30.00', 120), +(322, '2004-05-14 18:44:52', '41.00', 100), +(323, '2000-03-06 08:57:29', '79.00', 93), +(324, '2009-09-27 07:58:58', '22.00', 47), +(325, '2000-03-04 03:47:55', '44.00', 180), +(326, '2005-03-09 15:04:35', '48.00', 164), +(327, '2000-05-12 19:27:49', '65.00', 112), +(328, '2011-09-25 15:54:23', '67.00', 102), +(329, '2016-08-06 10:24:48', '57.00', 171), +(330, '2010-07-05 01:00:42', '95.00', 130), +(331, '2012-05-05 09:48:59', '16.00', 112), +(332, '2014-03-09 14:44:47', '40.00', 94), +(333, '2004-11-10 21:13:50', '57.00', 113), +(334, '2014-09-25 07:13:31', '13.00', 191), +(335, '2002-08-15 16:31:20', '2.00', 83), +(336, '2016-07-23 05:25:14', '37.00', 127), +(337, '2011-12-26 11:19:21', '22.00', 116), +(338, '2013-02-12 06:09:50', '96.00', 142), +(339, '2004-09-05 07:45:54', '45.00', 58), +(340, '2012-12-12 11:33:04', '16.00', 132), +(341, '2005-04-02 04:11:55', '73.00', 166), +(342, '2001-05-11 08:44:52', '65.00', 68), +(343, '2006-08-16 12:49:58', '34.00', 67), +(344, '2002-01-17 05:39:00', '99.00', 146), +(345, '2010-09-24 04:44:21', '58.00', 77), +(346, '2000-11-03 03:10:07', '26.00', 146), +(347, '2012-04-20 15:24:13', '93.00', 182), +(348, '2016-02-21 13:56:19', '73.00', 192), +(349, '2009-01-31 14:05:05', '36.00', 192), +(350, '2019-03-31 20:27:56', '7.00', 134), +(351, '2002-02-20 10:34:46', '93.00', 25), +(352, '2006-06-03 16:58:23', '82.00', 181), +(353, '2001-03-05 10:18:10', '58.00', 95), +(354, '2010-09-22 00:34:06', '49.00', 127), +(355, '2007-09-03 14:22:29', '17.00', 157), +(356, '2014-12-08 17:20:52', '83.00', 173), +(357, '2003-09-02 16:21:14', '89.00', 42), +(358, '2014-06-01 13:51:00', '46.00', 90), +(359, '2012-11-26 00:01:06', '69.00', 174), +(360, '2007-08-17 15:39:24', '76.00', 200), +(361, '2009-12-16 15:51:20', '78.00', 57), +(362, '2015-06-23 07:47:13', '1.00', 129), +(363, '2006-07-26 12:37:46', '1.00', 104), +(364, '2009-03-19 21:35:38', '29.00', 155), +(365, '2004-10-17 10:15:27', '22.00', 100), +(366, '2012-07-27 23:06:42', '18.00', 190), +(367, '2001-01-29 01:17:09', '39.00', 39), +(368, '2003-11-29 01:31:49', '71.00', 80), +(369, '2010-05-05 19:10:43', '91.00', 137), +(370, '2013-05-06 16:40:28', '85.00', 105), +(371, '2017-04-24 22:38:57', '97.00', 79), +(372, '2009-06-21 18:30:48', '77.00', 142), +(373, '2017-12-09 15:05:12', '48.00', 161), +(374, '2012-12-01 01:15:04', '98.00', 22), +(375, '2011-09-04 17:20:38', '23.00', 72), +(376, '2002-03-11 13:09:40', '63.00', 192), +(377, '2004-05-25 00:51:37', '43.00', 173), +(378, '2012-05-02 10:43:55', '35.00', 96), +(379, '2004-08-28 18:34:07', '82.00', 149), +(380, '2009-01-19 03:30:33', '93.00', 115), +(381, '2010-11-22 20:30:50', '91.00', 30), +(382, '2018-11-18 00:34:02', '93.00', 31), +(383, '2003-08-24 01:25:18', '82.00', 188), +(384, '2008-05-31 06:18:20', '67.00', 131), +(385, '2006-04-10 02:27:30', '45.00', 188), +(386, '2013-08-08 14:12:01', '86.00', 15), +(387, '2012-10-11 10:39:52', '89.00', 25), +(388, '2003-06-06 04:28:01', '13.00', 133), +(389, '2012-04-07 23:09:19', '84.00', 194), +(390, '2013-10-22 23:42:50', '41.00', 29), +(391, '2014-12-17 02:56:28', '3.00', 194), +(392, '2006-07-16 10:48:43', '12.00', 97), +(393, '2006-03-09 04:42:44', '0.00', 128), +(394, '2003-04-27 02:03:52', '35.00', 19), +(395, '2014-05-06 03:18:14', '70.00', 139), +(396, '2017-12-26 08:54:18', '51.00', 121), +(397, '2018-06-01 02:16:54', '89.00', 43), +(398, '2015-09-12 15:21:25', '68.00', 192), +(399, '2013-02-15 01:45:29', '84.00', 86), +(400, '2007-12-07 04:48:42', '87.00', 117), +(401, '2002-06-02 06:17:27', '92.00', 30), +(402, '2011-04-10 21:22:19', '85.00', 185), +(403, '2003-03-11 12:51:12', '6.00', 178), +(404, '2016-04-09 03:13:51', '90.00', 168), +(405, '2007-12-03 18:24:57', '81.00', 199), +(406, '2015-05-24 02:03:04', '74.00', 99), +(407, '2018-08-24 15:51:45', '24.00', 153), +(408, '2016-12-26 13:49:03', '93.00', 165), +(409, '2009-10-09 13:19:12', '58.00', 126), +(410, '2003-03-13 06:29:35', '37.00', 164), +(411, '2003-06-20 23:51:03', '34.00', 34), +(412, '2013-01-29 19:39:09', '12.00', 86), +(413, '2007-07-27 13:57:53', '81.00', 69), +(414, '2011-03-03 02:53:21', '7.00', 186), +(415, '2014-06-04 20:12:49', '71.00', 131), +(416, '2019-01-24 19:46:20', '94.00', 150), +(417, '2003-09-09 10:57:33', '5.00', 155), +(418, '2019-05-07 10:17:56', '48.00', 58), +(419, '2000-06-11 05:27:06', '4.00', 42), +(420, '2010-01-17 03:16:29', '20.00', 149), +(421, '2009-11-16 22:50:24', '94.00', 14), +(422, '2004-07-27 02:27:48', '74.00', 163), +(423, '2013-08-13 11:46:56', '79.00', 113), +(424, '2010-08-04 10:32:45', '15.00', 49), +(425, '2012-09-25 12:15:45', '81.00', 153), +(426, '2003-07-12 04:09:13', '1.00', 185), +(427, '2011-05-06 09:40:43', '40.00', 169), +(428, '2010-03-16 13:47:09', '97.00', 24), +(429, '2012-05-20 17:13:02', '30.00', 30), +(430, '2009-10-26 16:10:40', '17.00', 70), +(431, '2001-04-22 12:29:15', '92.00', 152), +(432, '2011-01-04 17:10:49', '69.00', 67), +(433, '2002-11-14 15:52:01', '31.00', 158), +(434, '2018-01-11 01:25:53', '51.00', 149), +(435, '2012-11-24 20:24:01', '5.00', 178), +(436, '2019-10-01 01:42:21', '18.00', 200), +(437, '2001-10-11 20:16:37', '83.00', 165), +(438, '2003-08-06 07:49:25', '71.00', 194), +(439, '2009-06-13 14:26:34', '94.00', 129), +(440, '2012-01-10 10:19:51', '77.00', 37), +(441, '2016-07-20 18:24:31', '53.00', 173), +(442, '2015-10-14 15:48:53', '1.00', 175), +(443, '2015-10-31 11:34:15', '34.00', 140), +(444, '2018-12-04 00:33:43', '18.00', 154), +(445, '2014-02-05 06:44:57', '33.00', 79), +(446, '2007-09-26 22:06:11', '88.00', 120), +(447, '2014-02-03 07:15:14', '37.00', 127), +(448, '2006-03-13 21:51:49', '35.00', 131), +(449, '2016-12-19 06:13:28', '18.00', 162), +(450, '2011-01-25 09:36:43', '69.00', 162), +(451, '2012-12-19 21:50:32', '48.00', 52), +(452, '2014-10-07 23:40:45', '18.00', 90), +(453, '2006-03-31 11:39:30', '21.00', 74), +(454, '2015-07-31 23:30:22', '78.00', 140), +(455, '2008-01-29 13:46:39', '68.00', 70), +(456, '2018-03-29 09:06:08', '13.00', 160), +(457, '2016-08-10 19:14:53', '59.00', 154), +(458, '2000-09-21 05:40:53', '5.00', 188), +(459, '2013-05-30 09:44:28', '48.00', 149), +(460, '2000-08-09 04:57:24', '72.00', 138), +(461, '2004-06-06 06:51:21', '15.00', 51), +(462, '2009-02-23 16:30:29', '85.00', 135), +(463, '2012-09-21 10:00:35', '10.00', 150), +(464, '2004-08-21 14:34:49', '86.00', 122), +(465, '2010-06-12 23:10:40', '43.00', 91), +(466, '2006-08-01 17:45:32', '56.00', 190), +(467, '2004-06-15 16:48:47', '19.00', 128), +(468, '2009-07-08 09:54:30', '7.00', 110), +(469, '2014-12-20 11:27:50', '95.00', 132), +(470, '2011-10-07 22:52:41', '16.00', 116), +(471, '2008-03-29 08:47:58', '82.00', 94), +(472, '2007-06-18 09:07:28', '54.00', 87), +(473, '2009-07-25 21:52:56', '61.00', 145), +(474, '2012-09-28 17:05:00', '99.00', 53), +(475, '2015-09-13 16:06:08', '37.00', 78), +(476, '2013-12-09 23:49:21', '40.00', 148), +(477, '2011-10-08 23:59:26', '89.00', 148), +(478, '2015-01-18 16:48:16', '83.00', 105), +(479, '2002-11-06 07:50:01', '63.00', 194), +(480, '2018-04-23 20:00:22', '51.00', 109), +(481, '2016-10-28 00:35:02', '75.00', 91), +(482, '2019-06-08 04:29:43', '87.00', 63), +(483, '2011-03-08 07:29:48', '20.00', 107), +(484, '2002-01-13 00:54:04', '29.00', 127), +(485, '2000-12-22 10:10:16', '25.00', 196), +(486, '2017-02-10 22:39:26', '73.00', 133), +(487, '2007-06-11 11:58:00', '57.00', 193), +(488, '2009-08-20 19:56:11', '3.00', 128), +(489, '2008-03-30 05:22:01', '59.00', 186), +(490, '2010-07-28 23:26:01', '74.00', 131), +(491, '2015-08-15 01:36:01', '41.00', 36), +(492, '2002-02-16 01:22:30', '59.00', 86), +(493, '2001-10-20 00:08:07', '80.00', 116), +(494, '2001-10-08 20:40:45', '20.00', 91), +(495, '2001-01-08 06:58:37', '86.00', 105), +(496, '2003-06-22 15:27:59', '98.00', 67), +(497, '2013-03-23 05:15:44', '65.00', 122), +(498, '2004-09-06 21:17:21', '32.00', 155), +(499, '2001-04-01 14:15:07', '69.00', 166), +(500, '2003-07-13 00:29:53', '99.00', 112), +(501, '2002-04-13 21:15:37', '15.00', 95), +(502, '2010-09-20 00:17:44', '65.00', 172), +(503, '2012-07-24 10:28:25', '94.00', 147), +(504, '2012-11-24 01:30:36', '78.00', 173), +(505, '2009-04-26 14:05:58', '33.00', 172), +(506, '2010-06-19 20:12:35', '61.00', 126), +(507, '2015-10-31 14:41:11', '87.00', 141), +(508, '2001-05-08 18:15:06', '33.00', 140), +(509, '2006-03-17 05:18:43', '16.00', 128), +(510, '2008-12-04 05:30:37', '12.00', 106), +(511, '2009-08-17 17:17:36', '79.00', 91), +(512, '2013-05-13 17:54:35', '3.00', 195), +(513, '2014-07-24 08:38:20', '54.00', 139), +(514, '2001-03-30 12:13:36', '42.00', 149), +(515, '2009-08-01 14:06:22', '4.00', 119), +(516, '2012-07-15 19:45:15', '37.00', 38), +(517, '2007-02-21 16:05:23', '43.00', 177), +(518, '2011-01-13 22:29:46', '35.00', 166), +(519, '2004-05-10 13:06:36', '92.00', 187), +(520, '2007-09-21 06:29:20', '13.00', 151), +(521, '2014-10-10 00:30:28', '75.00', 186), +(522, '2013-09-04 17:47:53', '44.00', 29), +(523, '2013-10-10 11:09:42', '93.00', 180), +(524, '2006-05-07 02:42:32', '75.00', 199), +(525, '2013-07-06 20:56:38', '85.00', 146), +(526, '2010-02-01 21:33:08', '94.00', 186), +(527, '2018-04-04 14:36:02', '16.00', 170), +(528, '2003-07-02 11:37:39', '44.00', 141), +(529, '2012-03-01 23:00:17', '74.00', 72), +(530, '2012-05-11 16:11:37', '36.00', 166), +(531, '2008-03-23 03:06:25', '53.00', 194), +(532, '2010-04-25 05:16:51', '67.00', 174), +(533, '2000-09-03 05:08:17', '68.00', 65), +(534, '2003-01-24 17:26:40', '47.00', 157), +(535, '2014-08-18 06:39:39', '21.00', 74), +(536, '2000-01-16 20:28:26', '15.00', 150), +(537, '2013-01-03 13:54:16', '40.00', 189), +(538, '2018-03-03 05:45:20', '33.00', 137), +(539, '2011-06-06 01:42:48', '9.00', 133), +(540, '2001-04-08 05:08:45', '28.00', 51), +(541, '2019-08-31 16:16:08', '68.00', 186), +(542, '2007-10-05 01:26:12', '10.00', 144), +(543, '2001-10-27 03:10:23', '91.00', 82), +(544, '2007-11-14 12:53:29', '83.00', 100), +(545, '2015-10-01 20:53:43', '76.00', 108), +(546, '2006-04-06 05:47:24', '22.00', 113), +(547, '2014-07-04 12:44:07', '77.00', 120), +(548, '2015-02-26 23:13:24', '8.00', 162), +(549, '2016-05-13 21:02:15', '32.00', 183), +(550, '2001-12-15 17:25:25', '61.00', 158), +(551, '2009-11-26 01:34:39', '9.00', 155), +(552, '2003-08-15 00:26:31', '35.00', 127), +(553, '2004-09-16 06:12:06', '88.00', 41), +(554, '2015-11-22 12:26:01', '63.00', 181), +(555, '2017-06-17 00:47:07', '76.00', 91), +(556, '2015-03-07 20:15:32', '21.00', 108), +(557, '2010-06-22 04:07:03', '2.00', 147), +(558, '2005-12-02 04:54:24', '4.00', 73), +(559, '2013-06-11 21:16:09', '62.00', 118), +(560, '2013-02-15 15:13:42', '37.00', 140), +(561, '2001-11-14 08:12:06', '25.00', 118), +(562, '2010-06-13 18:52:37', '94.00', 87), +(563, '2010-07-04 19:39:30', '8.00', 129), +(564, '2016-05-29 17:44:16', '95.00', 76), +(565, '2004-04-07 10:29:37', '1.00', 127), +(566, '2000-01-19 21:13:09', '96.00', 132), +(567, '2019-07-01 01:24:54', '26.00', 135), +(568, '2012-11-03 18:27:24', '47.00', 70), +(569, '2000-04-01 20:00:03', '64.00', 158), +(570, '2014-11-22 15:34:04', '56.00', 14), +(571, '2014-01-20 16:21:15', '20.00', 195), +(572, '2004-05-01 02:56:37', '26.00', 144), +(573, '2005-01-12 15:00:04', '51.00', 40), +(574, '2015-12-09 21:55:57', '88.00', 179), +(575, '2002-09-23 17:07:45', '40.00', 130), +(576, '2000-07-05 13:21:32', '32.00', 105), +(577, '2015-01-17 13:51:10', '21.00', 147), +(578, '2007-11-23 07:48:57', '75.00', 45), +(579, '2015-09-15 21:24:43', '44.00', 146), +(580, '2003-11-02 04:04:57', '95.00', 135), +(581, '2001-08-04 08:58:18', '6.00', 60), +(582, '2006-07-26 09:13:33', '14.00', 63), +(583, '2002-05-09 12:32:57', '28.00', 40), +(584, '2017-12-12 22:43:17', '89.00', 171), +(585, '2018-09-06 03:16:07', '98.00', 187), +(586, '2000-01-02 05:34:19', '2.00', 142), +(587, '2015-09-03 09:27:18', '33.00', 193), +(588, '2008-09-08 13:22:28', '31.00', 104), +(589, '2003-01-22 01:53:54', '35.00', 121), +(590, '2014-05-17 17:01:28', '50.00', 130), +(591, '2010-09-10 21:58:41', '50.00', 39), +(592, '2003-03-20 06:43:20', '73.00', 200), +(593, '2019-09-30 22:16:39', '71.00', 170), +(594, '2014-08-03 02:04:17', '40.00', 169), +(595, '2002-09-11 02:00:33', '24.00', 80), +(596, '2007-04-18 13:54:06', '42.00', 73), +(597, '2012-02-06 10:26:27', '38.00', 68), +(598, '2015-12-16 15:04:24', '39.00', 104), +(599, '2018-11-28 07:57:15', '19.00', 161), +(600, '2004-10-13 20:47:44', '75.00', 189), +(601, '2009-01-08 06:31:37', '1.00', 97), +(602, '2016-11-09 14:55:22', '15.00', 117), +(603, '2019-05-09 00:17:42', '68.00', 100), +(604, '2001-07-10 15:53:31', '39.00', 181), +(605, '2001-04-14 19:39:24', '30.00', 118), +(606, '2009-11-11 10:39:49', '79.00', 96), +(607, '2000-11-04 18:15:25', '28.00', 124), +(608, '2019-09-13 23:11:01', '75.00', 52), +(609, '2002-12-02 06:19:03', '99.00', 183), +(610, '2006-08-22 00:35:06', '27.00', 28), +(611, '2019-09-14 17:23:38', '49.00', 190), +(612, '2002-10-22 05:02:21', '83.00', 145), +(613, '2006-11-12 17:43:43', '74.00', 180), +(614, '2014-04-27 18:45:02', '2.00', 125), +(615, '2005-03-01 16:04:42', '34.00', 188), +(616, '2002-05-01 14:21:22', '14.00', 199), +(617, '2009-02-14 01:18:23', '2.00', 152), +(618, '2018-10-19 23:19:47', '91.00', 174), +(619, '2018-12-16 12:26:38', '24.00', 192), +(620, '2006-01-06 00:34:20', '96.00', 181), +(621, '2010-11-08 00:00:05', '55.00', 192), +(622, '2018-02-26 10:25:30', '1.00', 157), +(623, '2018-02-11 18:55:06', '56.00', 95), +(624, '2005-09-28 11:59:00', '86.00', 130), +(625, '2009-07-24 14:24:32', '28.00', 123), +(626, '2011-09-22 02:04:54', '69.00', 133), +(627, '2013-10-09 19:21:19', '75.00', 171), +(628, '2010-07-21 06:15:01', '92.00', 191), +(629, '2005-09-30 07:53:17', '93.00', 186), +(630, '2008-06-08 07:23:24', '47.00', 136), +(631, '2009-11-06 03:04:34', '92.00', 159), +(632, '2003-02-01 06:40:46', '66.00', 86), +(633, '2002-06-27 01:13:49', '32.00', 142), +(634, '2006-12-09 06:00:27', '52.00', 181), +(635, '2005-03-25 17:57:12', '80.00', 86), +(636, '2011-08-28 10:47:04', '37.00', 59), +(637, '2018-02-26 19:35:31', '51.00', 131), +(638, '2008-11-17 09:57:47', '91.00', 157), +(639, '2010-11-08 18:26:28', '3.00', 75), +(640, '2013-07-08 19:41:46', '43.00', 115), +(641, '2015-09-27 21:01:14', '69.00', 74), +(642, '2017-08-21 15:59:58', '4.00', 92), +(643, '2004-09-27 01:14:18', '22.00', 122), +(644, '2012-04-13 11:05:26', '72.00', 178), +(645, '2014-11-26 21:34:00', '64.00', 160), +(646, '2004-12-05 18:34:39', '50.00', 190), +(647, '2001-04-18 03:54:55', '31.00', 158), +(648, '2013-11-01 21:51:37', '92.00', 69), +(649, '2003-05-08 18:27:17', '57.00', 194), +(650, '2014-10-27 00:43:06', '16.00', 24), +(651, '2010-05-13 15:53:30', '2.00', 17), +(652, '2001-05-27 13:35:17', '52.00', 77), +(653, '2001-12-28 18:43:15', '21.00', 50), +(654, '2003-08-31 22:29:47', '48.00', 186), +(655, '2017-05-25 09:25:24', '58.00', 183), +(656, '2009-08-27 22:33:57', '50.00', 161), +(657, '2011-09-23 07:48:43', '71.00', 160), +(658, '2018-11-19 06:11:10', '19.00', 67), +(659, '2018-05-08 05:22:08', '98.00', 103), +(660, '2013-04-29 00:53:37', '16.00', 78), +(661, '2017-02-26 15:08:22', '35.00', 32), +(662, '2015-09-22 06:03:06', '85.00', 58), +(663, '2011-08-22 10:08:25', '45.00', 187), +(664, '2012-04-09 11:45:29', '73.00', 143), +(665, '2014-05-24 19:58:14', '44.00', 102), +(666, '2005-05-07 15:47:10', '34.00', 120), +(667, '2011-01-29 02:17:56', '45.00', 194), +(668, '2003-10-07 17:52:09', '94.00', 68), +(669, '2000-09-26 15:20:26', '16.00', 170), +(670, '2014-01-13 11:17:02', '31.00', 77), +(671, '2003-01-03 06:20:39', '57.00', 74), +(672, '2015-05-10 19:57:00', '57.00', 162), +(673, '2009-01-09 17:13:21', '79.00', 196), +(674, '2013-03-12 02:09:11', '78.00', 105), +(675, '2009-03-18 04:34:11', '45.00', 139), +(676, '2006-01-29 04:55:42', '2.00', 85), +(677, '2006-05-30 15:46:40', '74.00', 110), +(678, '2001-04-24 00:52:56', '67.00', 166), +(679, '2016-05-18 23:26:09', '41.00', 109), +(680, '2013-09-23 10:10:56', '55.00', 156), +(681, '2001-12-16 20:31:49', '58.00', 165), +(682, '2001-12-19 08:52:55', '66.00', 111), +(683, '2000-12-25 01:19:16', '55.00', 194), +(684, '2010-08-09 11:54:26', '13.00', 180), +(685, '2018-01-01 15:21:34', '65.00', 173), +(686, '2012-04-25 15:41:26', '15.00', 85), +(687, '2011-10-17 20:17:22', '1.00', 80), +(688, '2010-02-03 06:30:22', '86.00', 102), +(689, '2014-12-30 10:05:35', '80.00', 195), +(690, '2009-09-24 13:26:22', '23.00', 61), +(691, '2010-09-21 08:45:22', '29.00', 129), +(692, '2006-11-24 10:08:44', '28.00', 148), +(693, '2004-01-21 16:27:31', '17.00', 34), +(694, '2000-05-04 09:03:29', '76.00', 175), +(695, '2001-12-29 07:12:29', '41.00', 51), +(696, '2019-08-30 12:12:32', '50.00', 77), +(697, '2018-09-26 20:51:36', '92.00', 82), +(698, '2014-01-02 23:33:00', '35.00', 147), +(699, '2019-09-01 23:45:26', '19.00', 86), +(700, '2015-07-27 08:29:39', '8.00', 190), +(701, '2006-10-30 15:38:19', '52.00', 80), +(702, '2014-10-21 02:29:17', '36.00', 176), +(703, '2018-06-08 10:15:41', '75.00', 148), +(704, '2001-02-11 05:24:45', '62.00', 190), +(705, '2018-10-13 09:24:02', '41.00', 152), +(706, '2005-12-07 14:46:38', '21.00', 106), +(707, '2002-07-23 20:52:28', '41.00', 19), +(708, '2010-11-23 02:12:15', '66.00', 50), +(709, '2004-01-24 22:13:44', '17.00', 113), +(710, '2013-03-18 19:38:35', '73.00', 62), +(711, '2010-11-19 17:31:58', '23.00', 178), +(712, '2010-05-11 22:30:26', '31.00', 165), +(713, '2001-03-27 17:04:37', '19.00', 104), +(714, '2001-12-26 00:30:41', '55.00', 145), +(715, '2017-03-02 21:16:37', '90.00', 160), +(716, '2016-02-25 09:10:40', '55.00', 106), +(717, '2005-11-05 22:04:22', '76.00', 95), +(718, '2006-12-18 02:30:58', '10.00', 67), +(719, '2011-03-14 16:02:39', '94.00', 127), +(720, '2002-07-28 04:02:49', '49.00', 186), +(721, '2013-09-07 11:17:43', '40.00', 169), +(722, '2008-12-04 04:17:30', '3.00', 75), +(723, '2015-09-13 17:06:35', '26.00', 135), +(724, '2016-03-02 23:42:38', '16.00', 177), +(725, '2012-08-17 23:40:23', '77.00', 137), +(726, '2012-05-04 06:04:06', '26.00', 119), +(727, '2004-01-10 03:03:15', '79.00', 155), +(728, '2018-08-23 11:13:39', '49.00', 118), +(729, '2018-03-29 02:17:21', '9.00', 50), +(730, '2009-11-06 03:54:19', '57.00', 127), +(731, '2007-10-08 04:40:22', '73.00', 68), +(732, '2019-08-10 08:29:33', '21.00', 185), +(733, '2001-03-01 18:50:36', '17.00', 91), +(734, '2002-06-09 14:17:47', '74.00', 57), +(735, '2011-11-21 01:51:23', '17.00', 62), +(736, '2002-01-22 04:33:21', '82.00', 194), +(737, '2018-09-30 08:18:00', '5.00', 196), +(738, '2006-02-09 07:38:00', '97.00', 90), +(739, '2007-10-22 14:11:39', '75.00', 61), +(740, '2016-06-29 20:07:15', '55.00', 90), +(741, '2009-02-13 14:42:28', '87.00', 152), +(742, '2004-09-30 04:33:40', '12.00', 196), +(743, '2006-10-29 22:39:58', '38.00', 63), +(744, '2015-09-16 23:13:31', '12.00', 133), +(745, '2015-09-08 12:58:16', '28.00', 169), +(746, '2006-11-12 04:19:00', '73.00', 123), +(747, '2005-08-11 22:10:43', '1.00', 48), +(748, '2007-12-04 16:28:10', '33.00', 67), +(749, '2009-04-29 18:32:51', '17.00', 83), +(750, '2018-05-01 05:26:42', '16.00', 62), +(751, '2006-10-24 14:50:07', '67.00', 85), +(752, '2002-03-28 02:01:34', '50.00', 26), +(753, '2016-09-08 04:41:04', '53.00', 188), +(754, '2019-07-07 22:33:01', '22.00', 140), +(755, '2000-04-24 08:21:56', '85.00', 158), +(756, '2013-08-24 08:44:39', '47.00', 61), +(757, '2015-10-21 00:58:40', '94.00', 138), +(758, '2008-03-22 22:51:48', '22.00', 80), +(759, '2005-10-27 00:50:00', '69.00', 187), +(760, '2002-07-19 23:14:52', '6.00', 119), +(761, '2010-02-20 13:23:52', '14.00', 183), +(762, '2016-09-18 16:50:06', '15.00', 190), +(763, '2001-01-04 17:19:18', '39.00', 153), +(764, '2013-04-19 18:42:54', '1.00', 148), +(765, '2018-01-20 01:39:08', '73.00', 111), +(766, '2014-07-31 05:38:26', '62.00', 127), +(767, '2009-06-16 07:40:16', '49.00', 138), +(768, '2010-05-07 13:23:08', '74.00', 184), +(769, '2008-08-28 17:00:56', '1.00', 167), +(770, '2004-12-14 12:03:35', '74.00', 132), +(771, '2014-02-15 07:33:07', '45.00', 32), +(772, '2018-11-26 20:56:58', '77.00', 89), +(773, '2005-06-24 01:32:29', '24.00', 184), +(774, '2001-11-23 14:36:09', '41.00', 147), +(775, '2015-02-17 15:28:23', '50.00', 125), +(776, '2004-12-05 06:17:08', '3.00', 67), +(777, '2005-08-13 10:43:02', '18.00', 126), +(778, '2005-06-15 01:57:02', '47.00', 159), +(779, '2008-06-04 11:22:24', '72.00', 79), +(780, '2001-11-28 10:37:16', '51.00', 94), +(781, '2002-06-10 00:45:17', '50.00', 40), +(782, '2010-02-03 14:09:54', '63.00', 179), +(783, '2014-05-25 12:06:50', '52.00', 192), +(784, '2008-03-17 13:17:47', '54.00', 138), +(785, '2002-05-07 13:39:24', '82.00', 151), +(786, '2016-04-12 05:52:30', '22.00', 164), +(787, '2000-09-08 02:09:11', '99.00', 111), +(788, '2004-06-02 20:28:40', '88.00', 146), +(789, '2006-02-07 23:58:12', '55.00', 159), +(790, '2014-10-05 21:53:33', '60.00', 195), +(791, '2009-06-06 02:30:16', '16.00', 111), +(792, '2015-04-04 01:28:17', '33.00', 110), +(793, '2005-08-27 23:02:43', '18.00', 120), +(794, '2005-07-05 05:38:27', '85.00', 135), +(795, '2014-09-18 02:00:03', '14.00', 173), +(796, '2011-12-12 11:49:54', '19.00', 29), +(797, '2004-07-13 03:31:53', '93.00', 53), +(798, '2019-05-27 19:36:55', '93.00', 91), +(799, '2017-11-30 12:29:48', '2.00', 92), +(800, '2007-09-08 01:12:11', '92.00', 97), +(801, '2014-11-16 19:12:43', '52.00', 194), +(802, '2016-12-16 05:58:35', '41.00', 17), +(803, '2000-04-22 22:20:03', '41.00', 128), +(804, '2003-02-24 17:42:18', '73.00', 108), +(805, '2014-07-13 11:29:25', '4.00', 62), +(806, '2004-09-10 00:44:52', '99.00', 198), +(807, '2008-12-15 15:11:01', '89.00', 191), +(808, '2003-01-02 15:11:46', '73.00', 102), +(809, '2012-12-02 15:02:21', '20.00', 150), +(810, '2003-09-05 21:51:51', '32.00', 53), +(811, '2011-06-06 20:14:07', '82.00', 194), +(812, '2013-08-03 00:04:10', '43.00', 142), +(813, '2003-05-29 19:23:27', '57.00', 136), +(814, '2005-04-15 10:30:33', '80.00', 115), +(815, '2016-02-12 07:25:56', '1.00', 183), +(816, '2005-08-16 07:13:49', '17.00', 183), +(817, '2004-07-29 21:15:05', '75.00', 178), +(818, '2007-11-18 01:40:03', '34.00', 178), +(819, '2002-08-12 03:54:41', '1.00', 133), +(820, '2007-02-04 19:16:47', '96.00', 89), +(821, '2005-08-09 16:49:21', '95.00', 122), +(822, '2009-11-05 00:27:08', '14.00', 134), +(823, '2010-08-09 08:52:31', '84.00', 193), +(824, '2011-08-21 03:00:52', '19.00', 58), +(825, '2010-11-23 16:57:52', '75.00', 114), +(826, '2002-06-10 16:48:56', '72.00', 162), +(827, '2006-05-08 23:48:48', '91.00', 110), +(828, '2002-07-24 20:43:26', '38.00', 54), +(829, '2003-10-16 02:36:24', '37.00', 178), +(830, '2017-12-20 11:48:13', '50.00', 86), +(831, '2009-04-23 22:58:29', '35.00', 59), +(832, '2019-03-21 21:02:02', '21.00', 85), +(833, '2017-04-12 16:57:23', '49.00', 137), +(834, '2007-05-29 16:14:39', '48.00', 176), +(835, '2012-10-12 12:07:09', '73.00', 130), +(836, '2009-10-16 17:54:00', '98.00', 132), +(837, '2000-11-19 06:01:28', '92.00', 150), +(838, '2011-04-24 13:15:08', '74.00', 170), +(839, '2015-03-15 07:05:25', '51.00', 145), +(840, '2006-11-21 07:52:26', '62.00', 111), +(841, '2000-05-28 12:43:54', '65.00', 19), +(842, '2001-07-20 13:59:54', '71.00', 131), +(843, '2018-08-08 13:06:16', '29.00', 140), +(844, '2009-10-06 19:40:11', '22.00', 149), +(845, '2012-05-05 02:47:13', '25.00', 155), +(846, '2012-06-15 17:38:02', '38.00', 200), +(847, '2016-08-25 02:45:21', '97.00', 52), +(848, '2007-11-17 00:00:24', '1.00', 81), +(849, '2009-01-26 06:36:00', '14.00', 170), +(850, '2005-05-09 20:00:26', '4.00', 82), +(851, '2015-04-27 04:19:16', '85.00', 167), +(852, '2010-06-28 23:33:11', '36.00', 124), +(853, '2005-12-23 23:55:33', '42.00', 187), +(854, '2014-06-18 18:29:43', '77.00', 109), +(855, '2001-07-21 11:02:36', '28.00', 114), +(856, '2012-03-14 23:09:13', '37.00', 51), +(857, '2017-02-21 21:12:40', '63.00', 168), +(858, '2019-09-05 19:29:31', '40.00', 184), +(859, '2016-02-21 05:54:03', '37.00', 18), +(860, '2008-12-23 00:46:52', '26.00', 106), +(861, '2018-04-18 14:37:00', '22.00', 128), +(862, '2017-02-19 17:46:42', '28.00', 189), +(863, '2001-06-15 08:19:15', '78.00', 79), +(864, '2011-03-26 21:18:09', '95.00', 19), +(865, '2015-03-28 04:54:19', '50.00', 78), +(866, '2009-04-02 15:48:11', '33.00', 164), +(867, '2001-01-29 02:37:09', '45.00', 99), +(868, '2005-03-25 02:29:51', '74.00', 149), +(869, '2001-08-12 04:37:21', '95.00', 122), +(870, '2018-10-16 07:10:30', '8.00', 20), +(871, '2006-07-09 14:58:16', '14.00', 94), +(872, '2000-10-05 14:55:56', '58.00', 101), +(873, '2007-04-21 16:50:46', '88.00', 58), +(874, '2015-10-31 17:40:45', '81.00', 167), +(875, '2006-12-07 23:22:35', '87.00', 39), +(876, '2017-06-16 12:45:04', '77.00', 75), +(877, '2010-12-24 10:14:19', '55.00', 76), +(878, '2016-05-13 06:40:22', '13.00', 129), +(879, '2015-05-24 12:55:59', '22.00', 127), +(880, '2014-01-03 03:33:24', '14.00', 68), +(881, '2011-11-06 01:38:30', '90.00', 37), +(882, '2015-01-02 15:03:40', '36.00', 92), +(883, '2001-04-24 11:47:28', '31.00', 186), +(884, '2012-02-13 22:49:32', '69.00', 50), +(885, '2003-02-17 10:17:25', '12.00', 196), +(886, '2014-07-14 23:40:04', '93.00', 147), +(887, '2014-10-15 01:18:18', '68.00', 112), +(888, '2019-03-23 00:35:40', '10.00', 177), +(889, '2006-01-15 15:25:03', '15.00', 173), +(890, '2014-01-17 14:25:34', '30.00', 124), +(891, '2000-08-02 17:35:36', '26.00', 70), +(892, '2017-05-28 01:25:11', '5.00', 186), +(893, '2003-06-18 03:59:25', '57.00', 33), +(894, '2001-06-07 07:20:40', '46.00', 126), +(895, '2018-04-30 11:06:25', '67.00', 103), +(896, '2016-05-04 16:30:37', '6.00', 38), +(897, '2009-04-01 07:23:37', '80.00', 165), +(898, '2000-01-21 12:54:15', '68.00', 145), +(899, '2015-09-17 15:17:59', '59.00', 123), +(900, '2002-12-25 00:05:06', '27.00', 127), +(901, '2014-04-20 07:31:08', '44.00', 199), +(902, '2014-01-26 03:36:04', '17.00', 136), +(903, '2011-05-12 02:48:17', '43.00', 100), +(904, '2012-04-29 10:05:32', '74.00', 123), +(905, '2003-10-18 08:01:05', '6.00', 43), +(906, '2012-11-09 14:33:58', '9.00', 199), +(907, '2002-09-13 00:04:27', '41.00', 109), +(908, '2002-09-23 05:59:26', '34.00', 59), +(909, '2003-11-01 08:59:47', '74.00', 101), +(910, '2001-02-27 08:32:31', '10.00', 181), +(911, '2011-02-17 19:12:09', '19.00', 146), +(912, '2013-06-04 11:23:24', '48.00', 165), +(913, '2009-02-16 17:47:16', '36.00', 37), +(914, '2012-03-07 22:35:04', '7.00', 120), +(915, '2012-06-06 08:25:17', '13.00', 72), +(916, '2006-10-18 07:30:22', '34.00', 122), +(917, '2000-05-04 14:00:52', '38.00', 59), +(918, '2018-12-05 10:54:42', '8.00', 82), +(919, '2005-11-27 15:22:57', '66.00', 197), +(920, '2000-01-27 23:28:51', '9.00', 154), +(921, '2002-10-24 16:50:23', '29.00', 124), +(922, '2011-11-05 07:54:57', '80.00', 78), +(923, '2003-06-27 18:35:11', '97.00', 161), +(924, '2001-06-09 18:22:45', '11.00', 97), +(925, '2003-10-06 16:01:36', '28.00', 72), +(926, '2010-05-13 09:30:17', '57.00', 149), +(927, '2007-01-09 18:23:31', '56.00', 50), +(928, '2016-12-25 11:12:55', '2.00', 128), +(929, '2012-07-31 01:05:32', '35.00', 94), +(930, '2005-03-05 01:53:56', '59.00', 163), +(931, '2005-09-01 22:27:33', '37.00', 124), +(932, '2007-01-27 05:14:25', '26.00', 179), +(933, '2002-06-11 06:01:22', '82.00', 165), +(934, '2003-09-15 13:19:42', '16.00', 153), +(935, '2005-01-02 04:27:50', '61.00', 68), +(936, '2007-04-01 01:47:53', '56.00', 181), +(937, '2002-12-21 03:15:30', '43.00', 155), +(938, '2008-12-12 07:13:45', '56.00', 11), +(939, '2011-03-06 04:05:34', '26.00', 26), +(940, '2015-09-17 21:43:52', '90.00', 61), +(941, '2016-10-03 22:31:00', '79.00', 127), +(942, '2006-07-06 02:32:36', '13.00', 179), +(943, '2016-12-26 17:02:33', '98.00', 82), +(944, '2015-06-20 19:42:02', '20.00', 190), +(945, '2009-07-03 08:11:45', '93.00', 176), +(946, '2007-06-09 22:03:57', '26.00', 62), +(947, '2012-10-30 17:06:01', '8.00', 39), +(948, '2018-04-09 09:53:33', '51.00', 102), +(949, '2017-09-22 15:03:35', '58.00', 138), +(950, '2000-03-20 23:22:41', '34.00', 56), +(951, '2003-09-10 10:28:49', '7.00', 188), +(952, '2014-01-19 22:00:56', '54.00', 143), +(953, '2007-10-24 20:59:27', '33.00', 135), +(954, '2000-09-03 04:47:04', '66.00', 195), +(955, '2009-10-25 11:19:16', '13.00', 16), +(956, '2003-10-11 09:50:51', '24.00', 167), +(957, '2004-12-07 11:39:44', '69.00', 151), +(958, '2003-05-18 03:01:38', '76.00', 98), +(959, '2012-03-29 03:11:35', '20.00', 47), +(960, '2010-06-05 09:11:06', '15.00', 138), +(961, '2000-06-29 19:24:39', '42.00', 193), +(962, '2016-10-10 08:25:02', '74.00', 101), +(963, '2003-02-15 10:46:32', '22.00', 184), +(964, '2000-11-18 09:43:31', '78.00', 175), +(965, '2007-12-28 16:13:56', '75.00', 147), +(966, '2003-11-23 07:15:34', '7.00', 60), +(967, '2002-03-03 01:39:04', '60.00', 153), +(968, '2008-12-29 14:42:00', '59.00', 30), +(969, '2016-08-02 22:46:38', '8.00', 146), +(970, '2004-10-08 19:58:59', '44.00', 123), +(971, '2014-12-10 10:54:20', '5.00', 100), +(972, '2008-05-27 03:05:14', '73.00', 96), +(973, '2009-06-10 02:58:51', '68.00', 87), +(974, '2002-10-02 23:38:53', '39.00', 199), +(975, '2015-10-03 05:46:46', '81.00', 181), +(976, '2008-09-26 08:49:47', '94.00', 52), +(977, '2005-07-09 19:44:22', '22.00', 98), +(978, '2001-04-04 13:46:22', '87.00', 93), +(979, '2011-06-27 14:18:40', '89.00', 105), +(980, '2005-10-30 12:14:50', '85.00', 105), +(981, '2008-04-22 05:02:33', '83.00', 135), +(982, '2009-05-25 00:43:11', '92.00', 160), +(983, '2015-08-13 07:07:24', '23.00', 107), +(984, '2001-06-27 09:39:14', '17.00', 26), +(985, '2012-08-24 13:00:07', '38.00', 128), +(986, '2014-02-02 13:31:46', '23.00', 105), +(987, '2014-12-26 01:19:02', '97.00', 73), +(988, '2004-07-07 03:54:53', '83.00', 33), +(989, '2018-08-02 07:32:25', '80.00', 192), +(990, '2003-01-26 14:02:33', '10.00', 154), +(991, '2015-07-27 00:32:06', '78.00', 68), +(992, '2001-09-15 09:07:33', '6.00', 113), +(993, '2016-06-20 18:45:30', '44.00', 62), +(994, '2003-11-02 10:21:09', '63.00', 64), +(995, '2002-10-12 20:44:56', '13.00', 37), +(996, '2016-03-28 02:08:16', '22.00', 158), +(997, '2003-03-21 03:08:16', '92.00', 143), +(998, '2011-06-12 18:14:44', '67.00', 36), +(999, '2010-12-23 03:41:28', '13.00', 153), +(1000, '2017-10-12 11:56:26', '0.00', 182), +(1001, '2019-03-10 06:46:04', '74.00', 111), +(1002, '2008-08-26 07:54:34', '62.00', NULL), +(1003, '2003-05-27 21:58:14', '63.00', NULL), +(1004, '2017-05-16 19:36:37', '44.00', NULL), +(1005, '2004-06-14 21:54:30', '10.00', NULL), +(1006, '2011-11-23 17:14:01', '46.00', NULL), +(1007, '2014-12-26 11:48:12', '71.00', NULL), +(1008, '2018-06-30 00:26:02', '84.00', NULL), +(1009, '2015-12-13 04:01:44', '87.00', NULL), +(1010, '2011-07-04 18:36:45', '72.00', NULL), +(1011, '2013-06-06 15:10:38', '73.00', NULL), +(1012, '2000-02-27 19:11:29', '65.00', NULL), +(1013, '2000-04-09 07:08:49', '52.00', NULL), +(1014, '2018-06-19 14:57:56', '0.00', NULL), +(1015, '2018-08-15 17:28:04', '28.00', NULL), +(1016, '2007-07-09 02:49:26', '73.00', NULL), +(1017, '2015-03-21 03:50:03', '95.00', NULL), +(1018, '2014-06-17 22:22:03', '76.00', NULL), +(1019, '2010-09-10 05:57:46', '19.00', NULL), +(1020, '2006-02-23 07:46:01', '17.00', NULL), +(1021, '2009-08-31 14:48:22', '93.00', NULL), +(1022, '2010-07-25 01:36:53', '11.00', NULL), +(1023, '2016-12-14 01:33:32', '87.00', NULL), +(1024, '2012-06-13 08:16:02', '7.00', NULL), +(1025, '2001-02-10 04:45:22', '77.00', NULL), +(1026, '2011-06-29 06:11:42', '52.00', NULL), +(1027, '2010-11-08 21:20:53', '98.00', NULL), +(1028, '2001-04-05 15:42:20', '78.00', NULL), +(1029, '2018-11-28 09:19:00', '97.00', NULL), +(1030, '2019-06-13 19:38:22', '74.00', NULL), +(1031, '2004-10-01 14:29:04', '69.00', NULL), +(1032, '2018-04-03 20:01:05', '85.00', NULL), +(1033, '2010-05-29 23:58:44', '4.00', NULL), +(1034, '2016-08-02 20:58:12', '28.00', NULL), +(1035, '2009-01-23 20:17:00', '14.00', NULL), +(1036, '2004-06-10 23:47:41', '15.00', NULL), +(1037, '2012-04-13 07:29:30', '74.00', NULL), +(1038, '2017-10-02 08:02:00', '41.00', NULL), +(1039, '2002-03-09 10:03:00', '87.00', NULL), +(1040, '2006-06-27 21:37:37', '46.00', NULL), +(1041, '2013-11-15 16:16:32', '72.00', NULL), +(1042, '2002-12-30 13:51:30', '81.00', NULL), +(1043, '2011-12-20 14:56:32', '80.00', NULL), +(1044, '2005-03-29 02:48:45', '94.00', NULL), +(1045, '2009-02-21 20:43:02', '25.00', NULL), +(1046, '2010-08-30 19:53:50', '79.00', NULL), +(1047, '2013-08-02 07:22:25', '20.00', NULL), +(1048, '2003-03-20 17:30:55', '21.00', NULL), +(1049, '2006-08-05 15:14:57', '17.00', NULL), +(1050, '2004-03-22 10:59:36', '18.00', NULL), +(1051, '2019-09-05 15:47:01', '43.00', NULL), +(1052, '2009-07-09 00:36:37', '38.00', NULL); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `shakespeare` +-- + +CREATE TABLE `shakespeare` ( + `id` bigint(20) UNSIGNED NOT NULL, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `contents` longtext COLLATE utf8mb4_unicode_ci NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Dumping data for table `shakespeare` +-- + +INSERT INTO `shakespeare` (`id`, `title`, `contents`) VALUES +(1, 'The Tragedie of Hamlet', '***The Project Gutenberg\'s Etext of Shakespeare\'s First Folio***\r\n*********************The Tragedie of Hamlet*********************\r\n\r\n\r\n*******************************************************************\r\nTHIS EBOOK WAS ONE OF PROJECT GUTENBERG\'S EARLY FILES PRODUCED AT A\r\nTIME WHEN PROOFING METHODS AND TOOLS WERE NOT WELL DEVELOPED. THERE\r\nIS AN IMPROVED EDITION OF THIS TITLE WHICH MAY BE VIEWED AS EBOOK\r\n(#100) at https://www.gutenberg.org/ebooks/100\r\n*******************************************************************\r\n\r\n\r\nThis is our 3rd edition of most of these plays. See the index.\r\n\r\n\r\nCopyright laws are changing all over the world, be sure to check\r\nthe copyright laws for your country before posting these files!!\r\n\r\nPlease take a look at the important information in this header.\r\nWe encourage you to keep this file on your own disk, keeping an\r\nelectronic path open for the next readers. Do not remove this.\r\n\r\n\r\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\r\n\r\n**Etexts Readable By Both Humans and By Computers, Since 1971**\r\n\r\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\r\n\r\nInformation on contacting Project Gutenberg to get Etexts, and\r\nfurther information is included below. We need your donations.\r\n\r\n\r\nThe Tragedie of Hamlet\r\n\r\nby William Shakespeare\r\n\r\nJuly, 2000 [Etext #2265]\r\n\r\n\r\n***The Project Gutenberg\'s Etext of Shakespeare\'s First Folio***\r\n*********************The Tragedie of Hamlet*********************\r\n\r\n*****This file should be named 2265.txt or 2265.zip******\r\n\r\nProject Gutenberg Etexts are usually created from multiple editions,\r\nall of which are in the Public Domain in the United States, unless a\r\ncopyright notice is included. Therefore, we usually do NOT keep any\r\nof these books in compliance with any particular paper edition.\r\n\r\n\r\nWe are now trying to release all our books one month in advance\r\nof the official release dates, leaving time for better editing.\r\n\r\nPlease note: neither this list nor its contents are final till\r\nmidnight of the last day of the month of any such announcement.\r\nThe official release date of all Project Gutenberg Etexts is at\r\nMidnight, Central Time, of the last day of the stated month. A\r\npreliminary version may often be posted for suggestion, comment\r\nand editing by those who wish to do so. To be sure you have an\r\nup to date first edition [xxxxx10x.xxx] please check file sizes\r\nin the first week of the next month. Since our ftp program has\r\na bug in it that scrambles the date [tried to fix and failed] a\r\nlook at the file size will have to do, but we will try to see a\r\nnew copy has at least one byte more or less.\r\n\r\n\r\nInformation about Project Gutenberg (one page)\r\n\r\nWe produce about two million dollars for each hour we work. The\r\ntime it takes us, a rather conservative estimate, is fifty hours\r\nto get any etext selected, entered, proofread, edited, copyright\r\nsearched and analyzed, the copyright letters written, etc. This\r\nprojected audience is one hundred million readers. If our value\r\nper text is nominally estimated at one dollar then we produce $2\r\nmillion dollars per hour this year as we release thirty-six text\r\nfiles per month, or 432 more Etexts in 1999 for a total of 2000+\r\nIf these reach just 10% of the computerized population, then the\r\ntotal should reach over 200 billion Etexts given away this year.\r\n\r\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\r\nFiles by December 31, 2001. [10,000 x 100,000,000 = 1 Trillion]\r\nThis is ten thousand titles each to one hundred million readers,\r\nwhich is only ~5% of the present number of computer users.\r\n\r\nAt our revised rates of production, we will reach only one-third\r\nof that goal by the end of 2001, or about 3,333 Etexts unless we\r\nmanage to get some real funding; currently our funding is mostly\r\nfrom Michael Hart\'s salary at Carnegie-Mellon University, and an\r\nassortment of sporadic gifts; this salary is only good for a few\r\nmore years, so we are looking for something to replace it, as we\r\ndon\'t want Project Gutenberg to be so dependent on one person.\r\n\r\nWe need your donations more than ever!\r\n\r\n\r\nAll donations should be made to \"Project Gutenberg/CMU\": and are\r\ntax deductible to the extent allowable by law. (CMU = Carnegie-\r\nMellon University).\r\n\r\nFor these and other matters, please mail to:\r\n\r\nProject Gutenberg\r\nP. O. Box 2782\r\nChampaign, IL 61825\r\n\r\nWhen all other email fails. . .try our Executive Director:\r\nMichael S. Hart \r\nhart@pobox.com forwards to hart@prairienet.org and archive.org\r\nif your mail bounces from archive.org, I will still see it, if\r\nit bounces from prairienet.org, better resend later on. . . .\r\n\r\nWe would prefer to send you this information by email.\r\n\r\n******\r\n\r\nTo access Project Gutenberg etexts, use any Web browser\r\nto view http://promo.net/pg. This site lists Etexts by\r\nauthor and by title, and includes information about how\r\nto get involved with Project Gutenberg. You could also\r\ndownload our past Newsletters, or subscribe here. This\r\nis one of our major sites, please email hart@pobox.com,\r\nfor a more complete list of our various sites.\r\n\r\nTo go directly to the etext collections, use FTP or any\r\nWeb browser to visit a Project Gutenberg mirror (mirror\r\nsites are available on 7 continents; mirrors are listed\r\nat http://promo.net/pg).\r\n\r\nMac users, do NOT point and click, typing works better.\r\n\r\nExample FTP session:\r\n\r\nftp sunsite.unc.edu\r\nlogin: anonymous\r\npassword: your@login\r\ncd pub/docs/books/gutenberg\r\ncd etext90 through etext99\r\ndir [to see files]\r\nget or mget [to get files. . .set bin for zip files]\r\nGET GUTINDEX.?? [to get a year\'s listing of books, e.g., GUTINDEX.99]\r\nGET GUTINDEX.ALL [to get a listing of ALL books]\r\n\r\n***\r\n\r\n**Information prepared by the Project Gutenberg legal advisor**\r\n\r\n(Three Pages)\r\n\r\n\r\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\r\nWhy is this \"Small Print!\" statement here? You know: lawyers.\r\nThey tell us you might sue us if there is something wrong with\r\nyour copy of this etext, even if you got it for free from\r\nsomeone other than us, and even if what\'s wrong is not our\r\nfault. So, among other things, this \"Small Print!\" statement\r\ndisclaims most of our liability to you. It also tells you how\r\nyou can distribute copies of this etext if you want to.\r\n\r\n*BEFORE!* YOU USE OR READ THIS ETEXT\r\nBy using or reading any part of this PROJECT GUTENBERG-tm\r\netext, you indicate that you understand, agree to and accept\r\nthis \"Small Print!\" statement. If you do not, you can receive\r\na refund of the money (if any) you paid for this etext by\r\nsending a request within 30 days of receiving it to the person\r\nyou got it from. If you received this etext on a physical\r\nmedium (such as a disk), you must return it with your request.\r\n\r\nABOUT PROJECT GUTENBERG-TM ETEXTS\r\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\r\ntm etexts, is a \"public domain\" work distributed by Professor\r\nMichael S. Hart through the Project Gutenberg Association at\r\nCarnegie-Mellon University (the \"Project\"). Among other\r\nthings, this means that no one owns a United States copyright\r\non or for this work, so the Project (and you!) can copy and\r\ndistribute it in the United States without permission and\r\nwithout paying copyright royalties. Special rules, set forth\r\nbelow, apply if you wish to copy and distribute this etext\r\nunder the Project\'s \"PROJECT GUTENBERG\" trademark.\r\n\r\nTo create these etexts, the Project expends considerable\r\nefforts to identify, transcribe and proofread public domain\r\nworks. Despite these efforts, the Project\'s etexts and any\r\nmedium they may be on may contain \"Defects\". Among other\r\nthings, Defects may take the form of incomplete, inaccurate or\r\ncorrupt data, transcription errors, a copyright or other\r\nintellectual property infringement, a defective or damaged\r\ndisk or other etext medium, a computer virus, or computer\r\ncodes that damage or cannot be read by your equipment.\r\n\r\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\r\nBut for the \"Right of Replacement or Refund\" described below,\r\n[1] the Project (and any other party you may receive this\r\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\r\nliability to you for damages, costs and expenses, including\r\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\r\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\r\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\r\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\r\nPOSSIBILITY OF SUCH DAMAGES.\r\n\r\nIf you discover a Defect in this etext within 90 days of\r\nreceiving it, you can receive a refund of the money (if any)\r\nyou paid for it by sending an explanatory note within that\r\ntime to the person you received it from. If you received it\r\non a physical medium, you must return it with your note, and\r\nsuch person may choose to alternatively give you a replacement\r\ncopy. If you received it electronically, such person may\r\nchoose to alternatively give you a second opportunity to\r\nreceive it electronically.\r\n\r\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\". NO OTHER\r\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\r\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\r\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\r\nPARTICULAR PURPOSE.\r\n\r\nSome states do not allow disclaimers of implied warranties or\r\nthe exclusion or limitation of consequential damages, so the\r\nabove disclaimers and exclusions may not apply to you, and you\r\nmay have other legal rights.\r\n\r\nINDEMNITY\r\nYou will indemnify and hold the Project, its directors,\r\nofficers, members and agents harmless from all liability, cost\r\nand expense, including legal fees, that arise directly or\r\nindirectly from any of the following that you do or cause:\r\n[1] distribution of this etext, [2] alteration, modification,\r\nor addition to the etext, or [3] any Defect.\r\n\r\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\r\nYou may distribute copies of this etext electronically, or by\r\ndisk, book or any other medium if you either delete this\r\n\"Small Print!\" and all other references to Project Gutenberg,\r\nor:\r\n\r\n[1] Only give exact copies of it. Among other things, this\r\n requires that you do not remove, alter or modify the\r\n etext or this \"small print!\" statement. You may however,\r\n if you wish, distribute this etext in machine readable\r\n binary, compressed, mark-up, or proprietary form,\r\n including any form resulting from conversion by word pro-\r\n cessing or hypertext software, but only so long as\r\n *EITHER*:\r\n\r\n [*] The etext, when displayed, is clearly readable, and\r\n does *not* contain characters other than those\r\n intended by the author of the work, although tilde\r\n (~), asterisk (*) and underline (_) characters may\r\n be used to convey punctuation intended by the\r\n author, and additional characters may be used to\r\n indicate hypertext links; OR\r\n\r\n [*] The etext may be readily converted by the reader at\r\n no expense into plain ASCII, EBCDIC or equivalent\r\n form by the program that displays the etext (as is\r\n the case, for instance, with most word processors);\r\n OR\r\n\r\n [*] You provide, or agree to also provide on request at\r\n no additional cost, fee or expense, a copy of the\r\n etext in its original plain ASCII form (or in EBCDIC\r\n or other equivalent proprietary form).\r\n\r\n[2] Honor the etext refund and replacement provisions of this\r\n \"Small Print!\" statement.\r\n\r\n[3] Pay a trademark license fee to the Project of 20% of the\r\n net profits you derive calculated using the method you\r\n already use to calculate your applicable taxes. If you\r\n don\'t derive profits, no royalty is due. Royalties are\r\n payable to \"Project Gutenberg Association/Carnegie-Mellon\r\n University\" within the 60 days following each\r\n date you prepare (or were legally required to prepare)\r\n your annual (or equivalent periodic) tax return.\r\n\r\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON\'T HAVE TO?\r\nThe Project gratefully accepts contributions in money, time,\r\nscanning machines, OCR software, public domain etexts, royalty\r\nfree copyright licenses, and every other sort of contribution\r\nyou can think of. Money should be paid to \"Project Gutenberg\r\nAssociation / Carnegie-Mellon University\".\r\n\r\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\r\n\r\n\r\n\r\n\r\n\r\nProject Gutenberg\'s Etext of Shakespeare\'s The Tragedie of Hamlet\r\n\r\n\r\n\r\n\r\nExecutive Director\'s Notes:\r\n\r\nIn addition to the notes below, and so you will *NOT* think all\r\nthe spelling errors introduced by the printers of the time have\r\nbeen corrected, here are the first few lines of Hamlet, as they\r\nare presented herein:\r\n\r\n Barnardo. Who\'s there?\r\n Fran. Nay answer me: Stand & vnfold\r\nyour selfe\r\n\r\n Bar. Long liue the King\r\n\r\n***\r\n\r\nAs I understand it, the printers often ran out of certain words\r\nor letters they had often packed into a \"cliche\". . .this is the\r\noriginal meaning of the term cliche. . .and thus, being unwilling\r\nto unpack the cliches, and thus you will see some substitutions\r\nthat look very odd. . .such as the exchanges of u for v, v for u,\r\nabove. . .and you may wonder why they did it this way, presuming\r\nShakespeare did not actually write the play in this manner. . . .\r\n\r\nThe answer is that they MAY have packed \"liue\" into a cliche at a\r\ntime when they were out of \"v\"\'s. . .possibly having used \"vv\" in\r\nplace of some \"w\"\'s, etc. This was a common practice of the day,\r\nas print was still quite expensive, and they didn\'t want to spend\r\nmore on a wider selection of characters than they had to.\r\n\r\nYou will find a lot of these kinds of \"errors\" in this text, as I\r\nhave mentioned in other times and places, many \"scholars\" have an\r\nextreme attachment to these errors, and many have accorded them a\r\nvery high place in the \"canon\" of Shakespeare. My father read an\r\nassortment of these made available to him by Cambridge University\r\nin England for several months in a glass room constructed for the\r\npurpose. To the best of my knowledge he read ALL those available\r\n. . .in great detail. . .and determined from the various changes,\r\nthat Shakespeare most likely did not write in nearly as many of a\r\nvariety of errors we credit him for, even though he was in/famous\r\nfor signing his name with several different spellings.\r\n\r\nSo, please take this into account when reading the comments below\r\nmade by our volunteer who prepared this file: you may see errors\r\nthat are \"not\" errors. . . .\r\n\r\nSo. . .with this caveat. . .we have NOT changed the canon errors,\r\nhere is the Project Gutenberg Etext of Shakespeare\'s The Tragedie\r\nof Hamlet.\r\n\r\nMichael S. Hart\r\nProject Gutenberg\r\nExecutive Director\r\n\r\n\r\n***\r\n\r\n\r\nScanner\'s Notes: What this is and isn\'t. This was taken from\r\na copy of Shakespeare\'s first folio and it is as close as I can\r\ncome in ASCII to the printed text.\r\n\r\nThe elongated S\'s have been changed to small s\'s and the\r\nconjoined ae have been changed to ae. I have left the spelling,\r\npunctuation, capitalization as close as possible to the\r\nprinted text. I have corrected some spelling mistakes (I have put\r\ntogether a spelling dictionary devised from the spellings of the\r\nGeneva Bible and Shakespeare\'s First Folio and have unified\r\nspellings according to this template), typo\'s and expanded\r\nabbreviations as I have come across them. Everything within\r\nbrackets [] is what I have added. So if you don\'t like that\r\nyou can delete everything within the brackets if you want a\r\npurer Shakespeare.\r\n\r\nAnother thing that you should be aware of is that there are textual\r\ndifferences between various copies of the first folio. So there may\r\nbe differences (other than what I have mentioned above) between\r\nthis and other first folio editions. This is due to the printer\'s\r\nhabit of setting the type and running off a number of copies and\r\nthen proofing the printed copy and correcting the type and then\r\ncontinuing the printing run. The proof run wasn\'t thrown away but\r\nincorporated into the printed copies. This is just the way it is.\r\nThe text I have used was a composite of more than 30 different\r\nFirst Folio editions\' best pages.\r\n\r\nIf you find any scanning errors, out and out typos, punctuation\r\nerrors, or if you disagree with my spelling choices please feel\r\nfree to email me those errors. I wish to make this the best\r\netext possible. My email address for right now are haradda@aol.com\r\nand davidr@inconnect.com. I hope that you enjoy this.\r\n\r\nDavid Reed\r\n\r\nThe Tragedie of Hamlet\r\n\r\nActus Primus. Scoena Prima.\r\n\r\nEnter Barnardo and Francisco two Centinels.\r\n\r\n Barnardo. Who\'s there?\r\n Fran. Nay answer me: Stand & vnfold\r\nyour selfe\r\n\r\n Bar. Long liue the King\r\n\r\n Fran. Barnardo?\r\n Bar. He\r\n\r\n Fran. You come most carefully vpon your houre\r\n\r\n Bar. \'Tis now strook twelue, get thee to bed Francisco\r\n\r\n Fran. For this releefe much thankes: \'Tis bitter cold,\r\nAnd I am sicke at heart\r\n\r\n Barn. Haue you had quiet Guard?\r\n Fran. Not a Mouse stirring\r\n\r\n Barn. Well, goodnight. If you do meet Horatio and\r\nMarcellus, the Riuals of my Watch, bid them make hast.\r\nEnter Horatio and Marcellus.\r\n\r\n Fran. I thinke I heare them. Stand: who\'s there?\r\n Hor. Friends to this ground\r\n\r\n Mar. And Leige-men to the Dane\r\n\r\n Fran. Giue you good night\r\n\r\n Mar. O farwel honest Soldier, who hath relieu\'d you?\r\n Fra. Barnardo ha\'s my place: giue you goodnight.\r\n\r\nExit Fran.\r\n\r\n Mar. Holla Barnardo\r\n\r\n Bar. Say, what is Horatio there?\r\n Hor. A peece of him\r\n\r\n Bar. Welcome Horatio, welcome good Marcellus\r\n\r\n Mar. What, ha\'s this thing appear\'d againe to night\r\n\r\n Bar. I haue seene nothing\r\n\r\n Mar. Horatio saies, \'tis but our Fantasie,\r\nAnd will not let beleefe take hold of him\r\nTouching this dreaded sight, twice seene of vs,\r\nTherefore I haue intreated him along\r\nWith vs, to watch the minutes of this Night,\r\nThat if againe this Apparition come,\r\nHe may approue our eyes, and speake to it\r\n\r\n Hor. Tush, tush, \'twill not appeare\r\n\r\n Bar. Sit downe a-while,\r\nAnd let vs once againe assaile your eares,\r\nThat are so fortified against our Story,\r\nWhat we two Nights haue seene\r\n\r\n Hor. Well, sit we downe,\r\nAnd let vs heare Barnardo speake of this\r\n\r\n Barn. Last night of all,\r\nWhen yond same Starre that\'s Westward from the Pole\r\nHad made his course t\' illume that part of Heauen\r\nWhere now it burnes, Marcellus and my selfe,\r\nThe Bell then beating one\r\n\r\n Mar. Peace, breake thee of:\r\nEnter the Ghost.\r\n\r\nLooke where it comes againe\r\n\r\n Barn. In the same figure, like the King that\'s dead\r\n\r\n Mar. Thou art a Scholler; speake to it Horatio\r\n\r\n Barn. Lookes it not like the King? Marke it Horatio\r\n\r\n Hora. Most like: It harrowes me with fear & wonder\r\n Barn. It would be spoke too\r\n\r\n Mar. Question it Horatio\r\n\r\n Hor. What art thou that vsurp\'st this time of night,\r\nTogether with that Faire and Warlike forme\r\nIn which the Maiesty of buried Denmarke\r\nDid sometimes march: By Heauen I charge thee speake\r\n\r\n Mar. It is offended\r\n\r\n Barn. See, it stalkes away\r\n\r\n Hor. Stay: speake; speake: I Charge thee, speake.\r\n\r\nExit the Ghost.\r\n\r\n Mar. \'Tis gone, and will not answer\r\n\r\n Barn. How now Horatio? You tremble & look pale:\r\nIs not this something more then Fantasie?\r\nWhat thinke you on\'t?\r\n Hor. Before my God, I might not this beleeue\r\nWithout the sensible and true auouch\r\nOf mine owne eyes\r\n\r\n Mar. Is it not like the King?\r\n Hor. As thou art to thy selfe,\r\nSuch was the very Armour he had on,\r\nWhen th\' Ambitious Norwey combatted:\r\nSo frown\'d he once, when in an angry parle\r\nHe smot the sledded Pollax on the Ice.\r\n\'Tis strange\r\n\r\n Mar. Thus twice before, and iust at this dead houre,\r\nWith Martiall stalke, hath he gone by our Watch\r\n\r\n Hor. In what particular thought to work, I know not:\r\nBut in the grosse and scope of my Opinion,\r\nThis boades some strange erruption to our State\r\n\r\n Mar. Good now sit downe, & tell me he that knowes\r\nWhy this same strict and most obseruant Watch,\r\nSo nightly toyles the subiect of the Land,\r\nAnd why such dayly Cast of Brazon Cannon\r\nAnd Forraigne Mart for Implements of warre:\r\nWhy such impresse of Ship-wrights, whose sore Taske\r\nDo\'s not diuide the Sunday from the weeke,\r\nWhat might be toward, that this sweaty hast\r\nDoth make the Night ioynt-Labourer with the day:\r\nWho is\'t that can informe me?\r\n Hor. That can I,\r\nAt least the whisper goes so: Our last King,\r\nWhose Image euen but now appear\'d to vs,\r\nWas (as you know) by Fortinbras of Norway,\r\n(Thereto prick\'d on by a most emulate Pride)\r\nDar\'d to the Combate. In which, our Valiant Hamlet,\r\n(For so this side of our knowne world esteem\'d him)\r\nDid slay this Fortinbras: who by a Seal\'d Compact,\r\nWell ratified by Law, and Heraldrie,\r\nDid forfeite (with his life) all those his Lands\r\nWhich he stood seiz\'d on, to the Conqueror:\r\nAgainst the which, a Moity competent\r\nWas gaged by our King: which had return\'d\r\nTo the Inheritance of Fortinbras,\r\nHad he bin Vanquisher, as by the same Cou\'nant\r\nAnd carriage of the Article designe,\r\nHis fell to Hamlet. Now sir, young Fortinbras,\r\nOf vnimproued Mettle, hot and full,\r\nHath in the skirts of Norway, heere and there,\r\nShark\'d vp a List of Landlesse Resolutes,\r\nFor Foode and Diet, to some Enterprize\r\nThat hath a stomacke in\'t: which is no other\r\n(And it doth well appeare vnto our State)\r\nBut to recouer of vs by strong hand\r\nAnd termes Compulsatiue, those foresaid Lands\r\nSo by his Father lost: and this (I take it)\r\nIs the maine Motiue of our Preparations,\r\nThe Sourse of this our Watch, and the cheefe head\r\nOf this post-hast, and Romage in the Land.\r\nEnter Ghost againe.\r\n\r\nBut soft, behold: Loe, where it comes againe:\r\nIle crosse it, though it blast me. Stay Illusion:\r\nIf thou hast any sound, or vse of Voyce,\r\nSpeake to me. If there be any good thing to be done,\r\nThat may to thee do ease, and grace to me; speak to me.\r\nIf thou art priuy to thy Countries Fate\r\n(Which happily foreknowing may auoyd) Oh speake.\r\nOr, if thou hast vp-hoorded in thy life\r\nExtorted Treasure in the wombe of Earth,\r\n(For which, they say, you Spirits oft walke in death)\r\nSpeake of it. Stay, and speake. Stop it Marcellus\r\n\r\n Mar. Shall I strike at it with my Partizan?\r\n Hor. Do, if it will not stand\r\n\r\n Barn. \'Tis heere\r\n\r\n Hor. \'Tis heere\r\n\r\n Mar. \'Tis gone.\r\n\r\nExit Ghost.\r\n\r\nWe do it wrong, being so Maiesticall\r\nTo offer it the shew of Violence,\r\nFor it is as the Ayre, invulnerable,\r\nAnd our vaine blowes, malicious Mockery\r\n\r\n Barn. It was about to speake, when the Cocke crew\r\n\r\n Hor. And then it started, like a guilty thing\r\nVpon a fearfull Summons. I haue heard,\r\nThe Cocke that is the Trumpet to the day,\r\nDoth with his lofty and shrill-sounding Throate\r\nAwake the God of Day: and at his warning,\r\nWhether in Sea, or Fire, in Earth, or Ayre,\r\nTh\' extrauagant, and erring Spirit, hyes\r\nTo his Confine. And of the truth heerein,\r\nThis present Obiect made probation\r\n\r\n Mar. It faded on the crowing of the Cocke.\r\nSome sayes, that euer \'gainst that Season comes\r\nWherein our Sauiours Birch is celebrated,\r\nThe Bird of Dawning singeth all night long:\r\nAnd then (they say) no Spirit can walke abroad,\r\nThe nights are wholsome, then no Planets strike,\r\nNo Faiery talkes, nor Witch hath power to Charme:\r\nSo hallow\'d, and so gracious is the time\r\n\r\n Hor. So haue I heard, and do in part beleeue it.\r\nBut looke, the Morne in Russet mantle clad,\r\nWalkes o\'re the dew of yon high Easterne Hill,\r\nBreake we our Watch vp, and by my aduice\r\nLet vs impart what we haue seene to night\r\nVnto yong Hamlet. For vpon my life,\r\nThis Spirit dumbe to vs, will speake to him:\r\nDo you consent we shall acquaint him with it,\r\nAs needfull in our Loues, fitting our Duty?\r\n Mar. Let do\'t I pray, and I this morning know\r\nWhere we shall finde him most conueniently.\r\n\r\nExeunt.\r\n\r\nScena Secunda.\r\n\r\nEnter Claudius King of Denmarke, Gertrude the Queene, Hamlet,\r\nPolonius,\r\nLaertes, and his Sister Ophelia, Lords Attendant.\r\n\r\n King. Though yet of Hamlet our deere Brothers death\r\nThe memory be greene: and that it vs befitted\r\nTo beare our hearts in greefe, and our whole Kingdome\r\nTo be contracted in one brow of woe:\r\nYet so farre hath Discretion fought with Nature,\r\nThat we with wisest sorrow thinke on him,\r\nTogether with remembrance of our selues.\r\nTherefore our sometimes Sister, now our Queene,\r\nTh\' imperiall Ioyntresse of this warlike State,\r\nHaue we, as \'twere, with a defeated ioy,\r\nWith one Auspicious, and one Dropping eye,\r\nWith mirth in Funerall, and with Dirge in Marriage,\r\nIn equall Scale weighing Delight and Dole\r\nTaken to Wife; nor haue we heerein barr\'d\r\nYour better Wisedomes, which haue freely gone\r\nWith this affaire along, for all our Thankes.\r\nNow followes, that you know young Fortinbras,\r\nHolding a weake supposall of our worth;\r\nOr thinking by our late deere Brothers death,\r\nOur State to be disioynt, and out of Frame,\r\nColleagued with the dreame of his Aduantage;\r\nHe hath not fayl\'d to pester vs with Message,\r\nImporting the surrender of those Lands\r\nLost by his Father: with all Bonds of Law\r\nTo our most valiant Brother. So much for him.\r\nEnter Voltemand and Cornelius.\r\n\r\nNow for our selfe, and for this time of meeting\r\nThus much the businesse is. We haue heere writ\r\nTo Norway, Vncle of young Fortinbras,\r\nWho Impotent and Bedrid, scarsely heares\r\nOf this his Nephewes purpose, to suppresse\r\nHis further gate heerein. In that the Leuies,\r\nThe Lists, and full proportions are all made\r\nOut of his subiect: and we heere dispatch\r\nYou good Cornelius, and you Voltemand,\r\nFor bearing of this greeting to old Norway,\r\nGiuing to you no further personall power\r\nTo businesse with the King, more then the scope\r\nOf these dilated Articles allow:\r\nFarewell, and let your hast commend your duty\r\n\r\n Volt. In that, and all things, will we shew our duty\r\n\r\n King. We doubt it nothing, heartily farewell.\r\n\r\nExit Voltemand and Cornelius.\r\n\r\nAnd now Laertes, what\'s the newes with you?\r\nYou told vs of some suite. What is\'t Laertes?\r\nYou cannot speake of Reason to the Dane,\r\nAnd loose your voyce. What would\'st thou beg Laertes,\r\nThat shall not be my Offer, not thy Asking?\r\nThe Head is not more Natiue to the Heart,\r\nThe Hand more instrumentall to the Mouth,\r\nThen is the Throne of Denmarke to thy Father.\r\nWhat would\'st thou haue Laertes?\r\n Laer. Dread my Lord,\r\nYour leaue and fauour to returne to France,\r\nFrom whence, though willingly I came to Denmarke\r\nTo shew my duty in your Coronation,\r\nYet now I must confesse, that duty done,\r\nMy thoughts and wishes bend againe towards France,\r\nAnd bow them to your gracious leaue and pardon\r\n\r\n King. Haue you your Fathers leaue?\r\nWhat sayes Pollonius?\r\n Pol. He hath my Lord:\r\nI do beseech you giue him leaue to go\r\n\r\n King. Take thy faire houre Laertes, time be thine,\r\nAnd thy best graces spend it at thy will:\r\nBut now my Cosin Hamlet, and my Sonne?\r\n Ham. A little more then kin, and lesse then kinde\r\n\r\n King. How is it that the Clouds still hang on you?\r\n Ham. Not so my Lord, I am too much i\'th\' Sun\r\n\r\n Queen. Good Hamlet cast thy nightly colour off,\r\nAnd let thine eye looke like a Friend on Denmarke.\r\nDo not for euer with thy veyled lids\r\nSeeke for thy Noble Father in the dust;\r\nThou know\'st \'tis common, all that liues must dye,\r\nPassing through Nature, to Eternity\r\n\r\n Ham. I Madam, it is common\r\n\r\n Queen. If it be;\r\nWhy seemes it so particular with thee\r\n\r\n Ham. Seemes Madam? Nay, it is: I know not Seemes:\r\n\'Tis not alone my Inky Cloake (good Mother)\r\nNor Customary suites of solemne Blacke,\r\nNor windy suspiration of forc\'d breath,\r\nNo, nor the fruitfull Riuer in the Eye,\r\nNor the deiected hauiour of the Visage,\r\nTogether with all Formes, Moods, shewes of Griefe,\r\nThat can denote me truly. These indeed Seeme,\r\nFor they are actions that a man might play:\r\nBut I haue that Within, which passeth show;\r\nThese, but the Trappings, and the Suites of woe\r\n\r\n King. \'Tis sweet and commendable\r\nIn your Nature Hamlet,\r\nTo giue these mourning duties to your Father:\r\nBut you must know, your Father lost a Father,\r\nThat Father lost, lost his, and the Suruiuer bound\r\nIn filiall Obligation, for some terme\r\nTo do obsequious Sorrow. But to perseuer\r\nIn obstinate Condolement, is a course\r\nOf impious stubbornnesse. \'Tis vnmanly greefe,\r\nIt shewes a will most incorrect to Heauen,\r\nA Heart vnfortified, a Minde impatient,\r\nAn Vnderstanding simple, and vnschool\'d:\r\nFor, what we know must be, and is as common\r\nAs any the most vulgar thing to sence,\r\nWhy should we in our peeuish Opposition\r\nTake it to heart? Fye, \'tis a fault to Heauen,\r\nA fault against the Dead, a fault to Nature,\r\nTo Reason most absurd, whose common Theame\r\nIs death of Fathers, and who still hath cried,\r\nFrom the first Coarse, till he that dyed to day,\r\nThis must be so. We pray you throw to earth\r\nThis vnpreuayling woe, and thinke of vs\r\nAs of a Father; For let the world take note,\r\nYou are the most immediate to our Throne,\r\nAnd with no lesse Nobility of Loue,\r\nThen that which deerest Father beares his Sonne,\r\nDo I impart towards you. For your intent\r\nIn going backe to Schoole in Wittenberg,\r\nIt is most retrograde to our desire:\r\nAnd we beseech you, bend you to remaine\r\nHeere in the cheere and comfort of our eye,\r\nOur cheefest Courtier Cosin, and our Sonne\r\n\r\n Qu. Let not thy Mother lose her Prayers Hamlet:\r\nI prythee stay with vs, go not to Wittenberg\r\n\r\n Ham. I shall in all my best\r\nObey you Madam\r\n\r\n King. Why \'tis a louing, and a faire Reply,\r\nBe as our selfe in Denmarke. Madam come,\r\nThis gentle and vnforc\'d accord of Hamlet\r\nSits smiling to my heart; in grace whereof,\r\nNo iocond health that Denmarke drinkes to day,\r\nBut the great Cannon to the Clowds shall tell,\r\nAnd the Kings Rouce, the Heauens shall bruite againe,\r\nRespeaking earthly Thunder. Come away.\r\n\r\nExeunt.\r\n\r\nManet Hamlet.\r\n\r\n Ham. Oh that this too too solid Flesh, would melt,\r\nThaw, and resolue it selfe into a Dew:\r\nOr that the Euerlasting had not fixt\r\nHis Cannon \'gainst Selfe-slaughter. O God, O God!\r\nHow weary, stale, flat, and vnprofitable\r\nSeemes to me all the vses of this world?\r\nFie on\'t? Oh fie, fie, \'tis an vnweeded Garden\r\nThat growes to Seed: Things rank, and grosse in Nature\r\nPossesse it meerely. That it should come to this:\r\nBut two months dead: Nay, not so much; not two,\r\nSo excellent a King, that was to this\r\nHiperion to a Satyre: so louing to my Mother,\r\nThat he might not beteene the windes of heauen\r\nVisit her face too roughly. Heauen and Earth\r\nMust I remember: why she would hang on him,\r\nAs if encrease of Appetite had growne\r\nBy what is fed on; and yet within a month?\r\nLet me not thinke on\'t: Frailty, thy name is woman.\r\nA little Month, or ere those shooes were old,\r\nWith which she followed my poore Fathers body\r\nLike Niobe, all teares. Why she, euen she.\r\n(O Heauen! A beast that wants discourse of Reason\r\nWould haue mourn\'d longer) married with mine Vnkle,\r\nMy Fathers Brother: but no more like my Father,\r\nThen I to Hercules. Within a Moneth?\r\nEre yet the salt of most vnrighteous Teares\r\nHad left the flushing of her gauled eyes,\r\nShe married. O most wicked speed, to post\r\nWith such dexterity to Incestuous sheets:\r\nIt is not, nor it cannot come to good.\r\nBut breake my heart, for I must hold my tongue.\r\nEnter Horatio, Barnardo, and Marcellus.\r\n\r\n Hor. Haile to your Lordship\r\n\r\n Ham. I am glad to see you well:\r\nHoratio, or I do forget my selfe\r\n\r\n Hor. The same my Lord,\r\nAnd your poore Seruant euer\r\n\r\n Ham. Sir my good friend,\r\nIle change that name with you:\r\nAnd what make you from Wittenberg Horatio?\r\nMarcellus\r\n\r\n Mar. My good Lord\r\n\r\n Ham. I am very glad to see you: good euen Sir.\r\nBut what in faith make you from Wittemberge?\r\n Hor. A truant disposition, good my Lord\r\n\r\n Ham. I would not haue your Enemy say so;\r\nNor shall you doe mine eare that violence,\r\nTo make it truster of your owne report\r\nAgainst your selfe. I know you are no Truant:\r\nBut what is your affaire in Elsenour?\r\nWee\'l teach you to drinke deepe, ere you depart\r\n\r\n Hor. My Lord, I came to see your Fathers Funerall\r\n\r\n Ham. I pray thee doe not mock me (fellow Student)\r\nI thinke it was to see my Mothers Wedding\r\n\r\n Hor. Indeed my Lord, it followed hard vpon\r\n\r\n Ham. Thrift thrift Horatio: the Funerall Bakt-meats\r\nDid coldly furnish forth the Marriage Tables;\r\nWould I had met my dearest foe in heauen,\r\nEre I had euer seene that day Horatio.\r\nMy father, me thinkes I see my father\r\n\r\n Hor. Oh where my Lord?\r\n Ham. In my minds eye (Horatio)\r\n Hor. I saw him once; he was a goodly King\r\n\r\n Ham. He was a man, take him for all in all:\r\nI shall not look vpon his like againe\r\n\r\n Hor. My Lord, I thinke I saw him yesternight\r\n\r\n Ham. Saw? Who?\r\n Hor. My Lord, the King your Father\r\n\r\n Ham. The King my Father?\r\n Hor. Season your admiration for a while\r\nWith an attent eare; till I may deliuer\r\nVpon the witnesse of these Gentlemen,\r\nThis maruell to you\r\n\r\n Ham. For Heauens loue let me heare\r\n\r\n Hor. Two nights together, had these Gentlemen\r\n(Marcellus and Barnardo) on their Watch\r\nIn the dead wast and middle of the night\r\nBeene thus encountred. A figure like your Father,\r\nArm\'d at all points exactly, Cap a Pe,\r\nAppeares before them, and with sollemne march\r\nGoes slow and stately: By them thrice he walkt,\r\nBy their opprest and feare-surprized eyes,\r\nWithin his Truncheons length; whilst they bestil\'d\r\nAlmost to Ielly with the Act of feare,\r\nStand dumbe and speake not to him. This to me\r\nIn dreadfull secrecie impart they did,\r\nAnd I with them the third Night kept the Watch,\r\nWhereas they had deliuer\'d both in time,\r\nForme of the thing; each word made true and good,\r\nThe Apparition comes. I knew your Father:\r\nThese hands are not more like\r\n\r\n Ham. But where was this?\r\n Mar. My Lord vpon the platforme where we watcht\r\n\r\n Ham. Did you not speake to it?\r\n Hor. My Lord, I did;\r\nBut answere made it none: yet once me thought\r\nIt lifted vp it head, and did addresse\r\nIt selfe to motion, like as it would speake:\r\nBut euen then, the Morning Cocke crew lowd;\r\nAnd at the sound it shrunke in hast away,\r\nAnd vanisht from our sight\r\n\r\n Ham. Tis very strange\r\n\r\n Hor. As I doe liue my honourd Lord \'tis true;\r\nAnd we did thinke it writ downe in our duty\r\nTo let you know of it\r\n\r\n Ham. Indeed, indeed Sirs; but this troubles me.\r\nHold you the watch to Night?\r\n Both. We doe my Lord\r\n\r\n Ham. Arm\'d, say you?\r\n Both. Arm\'d, my Lord\r\n\r\n Ham. From top to toe?\r\n Both. My Lord, from head to foote\r\n\r\n Ham. Then saw you not his face?\r\n Hor. O yes, my Lord, he wore his Beauer vp\r\n\r\n Ham. What, lookt he frowningly?\r\n Hor. A countenance more in sorrow then in anger\r\n\r\n Ham. Pale, or red?\r\n Hor. Nay very pale\r\n\r\n Ham. And fixt his eyes vpon you?\r\n Hor. Most constantly\r\n\r\n Ham. I would I had beene there\r\n\r\n Hor. It would haue much amaz\'d you\r\n\r\n Ham. Very like, very like: staid it long?\r\n Hor. While one with moderate hast might tell a hundred\r\n\r\n All. Longer, longer\r\n\r\n Hor. Not when I saw\'t\r\n\r\n Ham. His Beard was grisly? no\r\n\r\n Hor. It was, as I haue seene it in his life,\r\nA Sable Siluer\'d\r\n\r\n Ham. Ile watch to Night; perchance \'twill wake againe\r\n\r\n Hor. I warrant you it will\r\n\r\n Ham. If it assume my noble Fathers person,\r\nIle speake to it, though Hell it selfe should gape\r\nAnd bid me hold my peace. I pray you all,\r\nIf you haue hitherto conceald this sight;\r\nLet it bee treble in your silence still:\r\nAnd whatsoeuer els shall hap to night,\r\nGiue it an vnderstanding but no tongue;\r\nI will requite your loues; so fare ye well:\r\nVpon the Platforme twixt eleuen and twelue,\r\nIle visit you\r\n\r\n All. Our duty to your Honour.\r\n\r\nExeunt\r\n\r\n Ham. Your loue, as mine to you: farewell.\r\nMy Fathers Spirit in Armes? All is not well:\r\nI doubt some foule play: would the Night were come;\r\nTill then sit still my soule; foule deeds will rise,\r\nThough all the earth orewhelm them to mens eies.\r\nEnter.\r\n\r\n\r\nScena Tertia\r\n\r\n\r\nEnter Laertes and Ophelia.\r\n\r\n Laer. My necessaries are imbark\'t; Farewell:\r\nAnd Sister, as the Winds giue Benefit,\r\nAnd Conuoy is assistant; doe not sleepe,\r\nBut let me heare from you\r\n\r\n Ophel. Doe you doubt that?\r\n Laer. For Hamlet, and the trifling of his fauours,\r\nHold it a fashion and a toy in Bloude;\r\nA Violet in the youth of Primy Nature;\r\nFroward, not permanent; sweet not lasting\r\nThe suppliance of a minute? No more\r\n\r\n Ophel. No more but so\r\n\r\n Laer. Thinke it no more:\r\nFor nature cressant does not grow alone,\r\nIn thewes and Bulke: but as his Temple waxes,\r\nThe inward seruice of the Minde and Soule\r\nGrowes wide withall. Perhaps he loues you now,\r\nAnd now no soyle nor cautell doth besmerch\r\nThe vertue of his feare: but you must feare\r\nHis greatnesse weigh\'d, his will is not his owne;\r\nFor hee himselfe is subiect to his Birth:\r\nHee may not, as vnuallued persons doe,\r\nCarue for himselfe; for, on his choyce depends\r\nThe sanctity and health of the whole State.\r\nAnd therefore must his choyce be circumscrib\'d\r\nVnto the voyce and yeelding of that Body,\r\nWhereof he is the Head. Then if he sayes he loues you,\r\nIt fits your wisedome so farre to beleeue it;\r\nAs he in his peculiar Sect and force\r\nMay giue his saying deed: which is no further,\r\nThen the maine voyce of Denmarke goes withall.\r\nThen weight what losse your Honour may sustaine,\r\nIf with too credent eare you list his Songs;\r\nOr lose your Heart; or your chast Treasure open\r\nTo his vnmastred importunity.\r\nFeare it Ophelia, feare it my deare Sister,\r\nAnd keepe within the reare of your Affection;\r\nOut of the shot and danger of Desire.\r\nThe chariest Maid is Prodigall enough,\r\nIf she vnmaske her beauty to the Moone:\r\nVertue it selfe scapes not calumnious stroakes,\r\nThe Canker Galls, the Infants of the Spring\r\nToo oft before the buttons be disclos\'d,\r\nAnd in the Morne and liquid dew of Youth,\r\nContagious blastments are most imminent.\r\nBe wary then, best safety lies in feare;\r\nYouth to it selfe rebels, though none else neere\r\n\r\n Ophe. I shall th\' effect of this good Lesson keepe,\r\nAs watchmen to my heart: but good my Brother\r\nDoe not as some vngracious Pastors doe,\r\nShew me the steepe and thorny way to Heauen;\r\nWhilst like a puft and recklesse Libertine\r\nHimselfe, the Primrose path of dalliance treads,\r\nAnd reaks not his owne reade\r\n\r\n Laer. Oh, feare me not.\r\nEnter Polonius.\r\n\r\nI stay too long; but here my Father comes:\r\nA double blessing is a double grace;\r\nOccasion smiles vpon a second leaue\r\n\r\n Polon. Yet heere Laertes? Aboord, aboord for shame,\r\nThe winde sits in the shoulder of your saile,\r\nAnd you are staid for there: my blessing with you;\r\nAnd these few Precepts in thy memory,\r\nSee thou Character. Giue thy thoughts no tongue,\r\nNor any vnproportion\'d thoughts his Act:\r\nBe thou familiar; but by no meanes vulgar:\r\nThe friends thou hast, and their adoption tride,\r\nGrapple them to thy Soule, with hoopes of Steele:\r\nBut doe not dull thy palme, with entertainment\r\nOf each vnhatch\'t, vnfledg\'d Comrade. Beware\r\nOf entrance to a quarrell: but being in\r\nBear\'t that th\' opposed may beware of thee.\r\nGiue euery man thine eare; but few thy voyce:\r\nTake each mans censure; but reserue thy iudgement:\r\nCostly thy habit as thy purse can buy;\r\nBut not exprest in fancie; rich, not gawdie:\r\nFor the Apparell oft proclaimes the man.\r\nAnd they in France of the best ranck and station,\r\nAre of a most select and generous cheff in that.\r\nNeither a borrower, nor a lender be;\r\nFor lone oft loses both it selfe and friend:\r\nAnd borrowing duls the edge of Husbandry.\r\nThis aboue all; to thine owne selfe be true:\r\nAnd it must follow, as the Night the Day,\r\nThou canst not then be false to any man.\r\nFarewell: my Blessing season this in thee\r\n\r\n Laer. Most humbly doe I take my leaue, my Lord\r\n\r\n Polon. The time inuites you, goe, your seruants tend\r\n\r\n Laer. Farewell Ophelia, and remember well\r\nWhat I haue said to you\r\n\r\n Ophe. Tis in my memory lockt,\r\nAnd you your selfe shall keepe the key of it\r\n\r\n Laer. Farewell.\r\n\r\nExit Laer.\r\n\r\n Polon. What ist Ophelia he hath said to you?\r\n Ophe. So please you, somthing touching the L[ord]. Hamlet\r\n\r\n Polon. Marry, well bethought:\r\nTis told me he hath very oft of late\r\nGiuen priuate time to you; and you your selfe\r\nHaue of your audience beene most free and bounteous.\r\nIf it be so, as so tis put on me;\r\nAnd that in way of caution: I must tell you,\r\nYou doe not vnderstand your selfe so cleerely,\r\nAs it behoues my Daughter, and your Honour.\r\nWhat is betweene you, giue me vp the truth?\r\n Ophe. He hath my Lord of late, made many tenders\r\nOf his affection to me\r\n\r\n Polon. Affection, puh. You speake like a greene Girle,\r\nVnsifted in such perillous Circumstance.\r\nDoe you beleeue his tenders, as you call them?\r\n Ophe. I do not know, my Lord, what I should thinke\r\n\r\n Polon. Marry Ile teach you; thinke your selfe a Baby,\r\nThat you haue tane his tenders for true pay,\r\nWhich are not starling. Tender your selfe more dearly;\r\nOr not to crack the winde of the poore Phrase,\r\nRoaming it thus, you\'l tender me a foole\r\n\r\n Ophe. My Lord, he hath importun\'d me with loue,\r\nIn honourable fashion\r\n\r\n Polon. I, fashion you may call it, go too, go too\r\n\r\n Ophe. And hath giuen countenance to his speech,\r\nMy Lord, with all the vowes of Heauen\r\n\r\n Polon. I, Springes to catch Woodcocks. I doe know\r\nWhen the Bloud burnes, how Prodigall the Soule\r\nGiues the tongue vowes: these blazes, Daughter,\r\nGiuing more light then heate; extinct in both,\r\nEuen in their promise, as it is a making;\r\nYou must not take for fire. For this time Daughter,\r\nBe somewhat scanter of your Maiden presence;\r\nSet your entreatments at a higher rate,\r\nThen a command to parley. For Lord Hamlet,\r\nBeleeue so much in him, that he is young,\r\nAnd with a larger tether may he walke,\r\nThen may be giuen you. In few, Ophelia,\r\nDoe not beleeue his vowes; for they are Broakers,\r\nNot of the eye, which their Inuestments show:\r\nBut meere implorators of vnholy Sutes,\r\nBreathing like sanctified and pious bonds,\r\nThe better to beguile. This is for all:\r\nI would not, in plaine tearmes, from this time forth,\r\nHaue you so slander any moment leisure,\r\nAs to giue words or talke with the Lord Hamlet:\r\nLooke too\'t, I charge you; come your wayes\r\n\r\n Ophe. I shall obey my Lord.\r\n\r\nExeunt.\r\n\r\nEnter Hamlet, Horatio, Marcellus.\r\n\r\n Ham. The Ayre bites shrewdly: is it very cold?\r\n Hor. It is a nipping and an eager ayre\r\n\r\n Ham. What hower now?\r\n Hor. I thinke it lacks of twelue\r\n\r\n Mar. No, it is strooke\r\n\r\n Hor. Indeed I heard it not: then it drawes neere the season,\r\nWherein the Spirit held his wont to walke.\r\nWhat does this meane my Lord?\r\n Ham. The King doth wake to night, and takes his rouse,\r\nKeepes wassels and the swaggering vpspring reeles,\r\nAnd as he dreines his draughts of Renish downe,\r\nThe kettle Drum and Trumpet thus bray out\r\nThe triumph of his Pledge\r\n\r\n Horat. Is it a custome?\r\n Ham. I marry ist;\r\nAnd to my mind, though I am natiue heere,\r\nAnd to the manner borne: It is a Custome\r\nMore honour\'d in the breach, then the obseruance.\r\nEnter Ghost.\r\n\r\n Hor. Looke my Lord, it comes\r\n\r\n Ham. Angels and Ministers of Grace defend vs:\r\nBe thou a Spirit of health, or Goblin damn\'d,\r\nBring with thee ayres from Heauen, or blasts from Hell,\r\nBe thy euents wicked or charitable,\r\nThou com\'st in such a questionable shape\r\nThat I will speake to thee. Ile call thee Hamlet,\r\nKing, Father, Royall Dane: Oh, oh, answer me,\r\nLet me not burst in Ignorance; but tell\r\nWhy thy Canoniz\'d bones Hearsed in death,\r\nHaue burst their cerments, why the Sepulcher\r\nWherein we saw thee quietly enurn\'d,\r\nHath op\'d his ponderous and Marble iawes,\r\nTo cast thee vp againe? What may this meane?\r\nThat thou dead Coarse againe in compleat steele,\r\nReuisits thus the glimpses of the Moone,\r\nMaking Night hidious? And we fooles of Nature,\r\nSo horridly to shake our disposition,\r\nWith thoughts beyond thee; reaches of our Soules,\r\nSay, why is this? wherefore? what should we doe?\r\n\r\nGhost beckens Hamlet.\r\n\r\n Hor. It beckons you to goe away with it,\r\nAs if it some impartment did desire\r\nTo you alone\r\n\r\n Mar. Looke with what courteous action\r\nIt wafts you to a more remoued ground:\r\nBut doe not goe with it\r\n\r\n Hor. No, by no meanes\r\n\r\n Ham. It will not speake: then will I follow it\r\n\r\n Hor. Doe not my Lord\r\n\r\n Ham. Why, what should be the feare?\r\nI doe not set my life at a pins fee;\r\nAnd for my Soule, what can it doe to that?\r\nBeing a thing immortall as it selfe:\r\nIt waues me forth againe; Ile follow it\r\n\r\n Hor. What if it tempt you toward the Floud my Lord?\r\nOr to the dreadfull Sonnet of the Cliffe,\r\nThat beetles o\'re his base into the Sea,\r\nAnd there assumes some other horrible forme,\r\nWhich might depriue your Soueraignty of Reason,\r\nAnd draw you into madnesse thinke of it?\r\n Ham. It wafts me still: goe on, Ile follow thee\r\n\r\n Mar. You shall not goe my Lord\r\n\r\n Ham. Hold off your hand\r\n\r\n Hor. Be rul\'d, you shall not goe\r\n\r\n Ham. My fate cries out,\r\nAnd makes each petty Artire in this body,\r\nAs hardy as the Nemian Lions nerue:\r\nStill am I cal\'d? Vnhand me Gentlemen:\r\nBy Heau\'n, Ile make a Ghost of him that lets me:\r\nI say away, goe on, Ile follow thee.\r\n\r\nExeunt. Ghost & Hamlet.\r\n\r\n Hor. He waxes desperate with imagination\r\n\r\n Mar. Let\'s follow; \'tis not fit thus to obey him\r\n\r\n Hor. Haue after, to what issue will this come?\r\n Mar. Something is rotten in the State of Denmarke\r\n\r\n Hor. Heauen will direct it\r\n\r\n Mar. Nay, let\'s follow him.\r\n\r\nExeunt.\r\n\r\nEnter Ghost and Hamlet.\r\n\r\n Ham. Where wilt thou lead me? speak; Ile go no further\r\n\r\n Gho. Marke me\r\n\r\n Ham. I will\r\n\r\n Gho. My hower is almost come,\r\nWhen I to sulphurous and tormenting Flames\r\nMust render vp my selfe\r\n\r\n Ham. Alas poore Ghost\r\n\r\n Gho. Pitty me not, but lend thy serious hearing\r\nTo what I shall vnfold\r\n\r\n Ham. Speake, I am bound to heare\r\n\r\n Gho. So art thou to reuenge, when thou shalt heare\r\n\r\n Ham. What?\r\n Gho. I am thy Fathers Spirit,\r\nDoom\'d for a certaine terme to walke the night;\r\nAnd for the day confin\'d to fast in Fiers,\r\nTill the foule crimes done in my dayes of Nature\r\nAre burnt and purg\'d away? But that I am forbid\r\nTo tell the secrets of my Prison-House;\r\nI could a Tale vnfold, whose lightest word\r\nWould harrow vp thy soule, freeze thy young blood,\r\nMake thy two eyes like Starres, start from their Spheres,\r\nThy knotty and combined lockes to part,\r\nAnd each particular haire to stand an end,\r\nLike Quilles vpon the fretfull Porpentine:\r\nBut this eternall blason must not be\r\nTo eares of flesh and bloud; list Hamlet, oh list,\r\nIf thou didst euer thy deare Father loue\r\n\r\n Ham. Oh Heauen!\r\n Gho. Reuenge his foule and most vnnaturall Murther\r\n\r\n Ham. Murther?\r\n Ghost. Murther most foule, as in the best it is;\r\nBut this most foule, strange, and vnnaturall\r\n\r\n Ham. Hast, hast me to know it,\r\nThat with wings as swift\r\nAs meditation, or the thoughts of Loue,\r\nMay sweepe to my Reuenge\r\n\r\n Ghost. I finde thee apt,\r\nAnd duller should\'st thou be then the fat weede\r\nThat rots it selfe in ease, on Lethe Wharfe,\r\nWould\'st thou not stirre in this. Now Hamlet heare:\r\nIt\'s giuen out, that sleeping in mine Orchard,\r\nA Serpent stung me: so the whole eare of Denmarke,\r\nIs by a forged processe of my death\r\nRankly abus\'d: But know thou Noble youth,\r\nThe Serpent that did sting thy Fathers life,\r\nNow weares his Crowne\r\n\r\n Ham. O my Propheticke soule: mine Vncle?\r\n Ghost. I that incestuous, that adulterate Beast\r\nWith witchcraft of his wits, hath Traitorous guifts.\r\nOh wicked Wit, and Gifts, that haue the power\r\nSo to seduce? Won to this shamefull Lust\r\nThe will of my most seeming vertuous Queene:\r\nOh Hamlet, what a falling off was there,\r\nFrom me, whose loue was of that dignity,\r\nThat it went hand in hand, euen with the Vow\r\nI made to her in Marriage; and to decline\r\nVpon a wretch, whose Naturall gifts were poore\r\nTo those of mine. But Vertue, as it neuer wil be moued,\r\nThough Lewdnesse court it in a shape of Heauen:\r\nSo Lust, though to a radiant Angell link\'d,\r\nWill sate it selfe in a Celestiall bed, & prey on Garbage.\r\nBut soft, me thinkes I sent the Mornings Ayre;\r\nBriefe let me be: Sleeping within mine Orchard,\r\nMy custome alwayes in the afternoone;\r\nVpon my secure hower thy Vncle stole\r\nWith iuyce of cursed Hebenon in a Violl,\r\nAnd in the Porches of mine eares did poure\r\nThe leaperous Distilment; whose effect\r\nHolds such an enmity with bloud of Man,\r\nThat swift as Quick-siluer, it courses through\r\nThe naturall Gates and Allies of the body;\r\nAnd with a sodaine vigour it doth posset\r\nAnd curd, like Aygre droppings into Milke,\r\nThe thin and wholsome blood: so did it mine;\r\nAnd a most instant Tetter bak\'d about,\r\nMost Lazar-like, with vile and loathsome crust,\r\nAll my smooth Body.\r\nThus was I, sleeping, by a Brothers hand,\r\nOf Life, of Crowne, and Queene at once dispatcht;\r\nCut off euen in the Blossomes of my Sinne,\r\nVnhouzzled, disappointed, vnnaneld,\r\nNo reckoning made, but sent to my account\r\nWith all my imperfections on my head;\r\nOh horrible Oh horrible, most horrible:\r\nIf thou hast nature in thee beare it not;\r\nLet not the Royall Bed of Denmarke be\r\nA Couch for Luxury and damned Incest.\r\nBut howsoeuer thou pursuest this Act,\r\nTaint not thy mind; nor let thy Soule contriue\r\nAgainst thy Mother ought; leaue her to heauen,\r\nAnd to those Thornes that in her bosome lodge,\r\nTo pricke and sting her. Fare thee well at once;\r\nThe Glow-worme showes the Matine to be neere,\r\nAnd gins to pale his vneffectuall Fire:\r\nAdue, adue, Hamlet: remember me.\r\nEnter.\r\n\r\n Ham. Oh all you host of Heauen! Oh Earth; what els?\r\nAnd shall I couple Hell? Oh fie: hold my heart;\r\nAnd you my sinnewes, grow not instant Old;\r\nBut beare me stiffely vp: Remember thee?\r\nI, thou poore Ghost, while memory holds a seate\r\nIn this distracted Globe: Remember thee?\r\nYea, from the Table of my Memory,\r\nIle wipe away all triuiall fond Records,\r\nAll sawes of Bookes, all formes, all presures past,\r\nThat youth and obseruation coppied there;\r\nAnd thy Commandment all alone shall liue\r\nWithin the Booke and Volume of my Braine,\r\nVnmixt with baser matter; yes yes, by Heauen:\r\nOh most pernicious woman!\r\nOh Villaine, Villaine, smiling damned Villaine!\r\nMy Tables, my Tables; meet it is I set it downe,\r\nThat one may smile, and smile and be a Villaine;\r\nAt least I\'m sure it may be so in Denmarke;\r\nSo Vnckle there you are: now to my word;\r\nIt is; Adue, Adue, Remember me: I haue sworn\'t\r\n\r\n Hor. & Mar. within. My Lord, my Lord.\r\nEnter Horatio and Marcellus.\r\n\r\n Mar. Lord Hamlet\r\n\r\n Hor. Heauen secure him\r\n\r\n Mar. So be it\r\n\r\n Hor. Illo, ho, ho, my Lord\r\n\r\n Ham. Hillo, ho, ho, boy; come bird, come\r\n\r\n Mar. How ist my Noble Lord?\r\n Hor. What newes, my Lord?\r\n Ham. Oh wonderfull!\r\n Hor. Good my Lord tell it\r\n\r\n Ham. No you\'l reueale it\r\n\r\n Hor. Not I, my Lord, by Heauen\r\n\r\n Mar. Nor I, my Lord\r\n\r\n Ham. How say you then, would heart of man once think it?\r\nBut you\'l be secret?\r\n Both. I, by Heau\'n, my Lord\r\n\r\n Ham. There\'s nere a villaine dwelling in all Denmarke\r\nBut hee\'s an arrant knaue\r\n\r\n Hor. There needs no Ghost my Lord, come from the\r\nGraue, to tell vs this\r\n\r\n Ham. Why right, you are i\'th\' right;\r\nAnd so, without more circumstance at all,\r\nI hold it fit that we shake hands, and part:\r\nYou, as your busines and desires shall point you:\r\nFor euery man ha\'s businesse and desire,\r\nSuch as it is: and for mine owne poore part,\r\nLooke you, Ile goe pray\r\n\r\n Hor. These are but wild and hurling words, my Lord\r\n\r\n Ham. I\'m sorry they offend you heartily:\r\nYes faith, heartily\r\n\r\n Hor. There\'s no offence my Lord\r\n\r\n Ham. Yes, by Saint Patricke, but there is my Lord,\r\nAnd much offence too, touching this Vision heere:\r\nIt is an honest Ghost, that let me tell you:\r\nFor your desire to know what is betweene vs,\r\nO\'remaster\'t as you may. And now good friends,\r\nAs you are Friends, Schollers and Soldiers,\r\nGiue me one poore request\r\n\r\n Hor. What is\'t my Lord? we will\r\n\r\n Ham. Neuer make known what you haue seen to night\r\n\r\n Both. My Lord, we will not\r\n\r\n Ham. Nay, but swear\'t\r\n\r\n Hor. Infaith my Lord, not I\r\n\r\n Mar. Nor I my Lord: in faith\r\n\r\n Ham. Vpon my sword\r\n\r\n Marcell. We haue sworne my Lord already\r\n\r\n Ham. Indeed, vpon my sword, Indeed\r\n\r\n Gho. Sweare.\r\n\r\nGhost cries vnder the Stage.\r\n\r\n Ham. Ah ha boy, sayest thou so. Art thou there truepenny?\r\nCome one you here this fellow in the selleredge\r\nConsent to sweare\r\n\r\n Hor. Propose the Oath my Lord\r\n\r\n Ham. Neuer to speake of this that you haue seene.\r\nSweare by my sword\r\n\r\n Gho. Sweare\r\n\r\n Ham. Hic & vbique? Then wee\'l shift for grownd,\r\nCome hither Gentlemen,\r\nAnd lay your hands againe vpon my sword,\r\nNeuer to speake of this that you haue heard:\r\nSweare by my Sword\r\n\r\n Gho. Sweare\r\n\r\n Ham. Well said old Mole, can\'st worke i\'th\' ground so fast?\r\nA worthy Pioner, once more remoue good friends\r\n\r\n Hor. Oh day and night: but this is wondrous strange\r\n\r\n Ham. And therefore as a stranger giue it welcome.\r\nThere are more things in Heauen and Earth, Horatio,\r\nThen are dream\'t of in our Philosophy. But come,\r\nHere as before, neuer so helpe you mercy,\r\nHow strange or odde so ere I beare my selfe;\r\n(As I perchance heereafter shall thinke meet\r\nTo put an Anticke disposition on:)\r\nThat you at such time seeing me, neuer shall\r\nWith Armes encombred thus, or thus, head shake;\r\nOr by pronouncing of some doubtfull Phrase;\r\nAs well, we know, or we could and if we would,\r\nOr if we list to speake; or there be and if there might,\r\nOr such ambiguous giuing out to note,\r\nThat you know ought of me; this not to doe:\r\nSo grace and mercy at your most neede helpe you:\r\nSweare\r\n\r\n Ghost. Sweare\r\n\r\n Ham. Rest, rest perturbed Spirit: so Gentlemen,\r\nWith all my loue I doe commend me to you;\r\nAnd what so poore a man as Hamlet is,\r\nMay doe t\' expresse his loue and friending to you,\r\nGod willing shall not lacke: let vs goe in together,\r\nAnd still your fingers on your lippes I pray,\r\nThe time is out of ioynt: Oh cursed spight,\r\nThat euer I was borne to set it right.\r\nNay, come let\'s goe together.\r\n\r\nExeunt.\r\n\r\n\r\nActus Secundus.\r\n\r\nEnter Polonius, and Reynoldo.\r\n\r\n Polon. Giue him his money, and these notes Reynoldo\r\n\r\n Reynol. I will my Lord\r\n\r\n Polon. You shall doe maruels wisely: good Reynoldo,\r\nBefore you visite him you make inquiry\r\nOf his behauiour\r\n\r\n Reynol. My Lord, I did intend it\r\n\r\n Polon. Marry, well said;\r\nVery well said. Looke you Sir,\r\nEnquire me first what Danskers are in Paris;\r\nAnd how, and who; what meanes; and where they keepe:\r\nWhat company, at what expence: and finding\r\nBy this encompassement and drift of question,\r\nThat they doe know my sonne: Come you more neerer\r\nThen your particular demands will touch it,\r\nTake you as \'twere some distant knowledge of him,\r\nAnd thus I know his father and his friends,\r\nAnd in part him. Doe you marke this Reynoldo?\r\n Reynol. I, very well my Lord\r\n\r\n Polon. And in part him, but you may say not well;\r\nBut if\'t be hee I meane, hees very wilde;\r\nAddicted so and so; and there put on him\r\nWhat forgeries you please; marry, none so ranke,\r\nAs may dishonour him; take heed of that:\r\nBut Sir, such wanton, wild, and vsuall slips,\r\nAs are Companions noted and most knowne\r\nTo youth and liberty\r\n\r\n Reynol. As gaming my Lord\r\n\r\n Polon. I, or drinking, fencing, swearing,\r\nQuarelling, drabbing. You may goe so farre\r\n\r\n Reynol. My Lord that would dishonour him\r\n\r\n Polon. Faith no, as you may season it in the charge;\r\nYou must not put another scandall on him,\r\nThat hee is open to Incontinencie;\r\nThat\'s not my meaning: but breath his faults so quaintly,\r\nThat they may seeme the taints of liberty;\r\nThe flash and out-breake of a fiery minde,\r\nA sauagenes in vnreclaim\'d bloud of generall assault\r\n\r\n Reynol. But my good Lord\r\n\r\n Polon. Wherefore should you doe this?\r\n Reynol. I my Lord, I would know that\r\n\r\n Polon. Marry Sir, heere\'s my drift,\r\nAnd I belieue it is a fetch of warrant:\r\nYou laying these slight sulleyes on my Sonne,\r\nAs \'twere a thing a little soil\'d i\'th\' working:\r\nMarke you your party in conuerse; him you would sound,\r\nHauing euer seene. In the prenominate crimes,\r\nThe youth you breath of guilty, be assur\'d\r\nHe closes with you in this consequence:\r\nGood sir, or so, or friend, or Gentleman.\r\nAccording to the Phrase and the Addition,\r\nOf man and Country\r\n\r\n Reynol. Very good my Lord\r\n\r\n Polon. And then Sir does he this?\r\nHe does: what was I about to say?\r\nI was about say somthing: where did I leaue?\r\n Reynol. At closes in the consequence:\r\nAt friend, or so, and Gentleman\r\n\r\n Polon. At closes in the consequence, I marry,\r\nHe closes with you thus. I know the Gentleman,\r\nI saw him yesterday, or tother day;\r\nOr then or then, with such and such; and as you say,\r\nThere was he gaming, there o\'retooke in\'s Rouse,\r\nThere falling out at Tennis; or perchance,\r\nI saw him enter such a house of saile;\r\nVidelicet, a Brothell, or so forth. See you now;\r\nYour bait of falshood, takes this Cape of truth;\r\nAnd thus doe we of wisedome and of reach\r\nWith windlesses, and with assaies of Bias,\r\nBy indirections finde directions out:\r\nSo by my former Lecture and aduice\r\nShall you my Sonne; you haue me, haue you not?\r\n Reynol. My Lord I haue\r\n\r\n Polon. God buy you; fare you well\r\n\r\n Reynol. Good my Lord\r\n\r\n Polon. Obserue his inclination in your selfe\r\n\r\n Reynol. I shall my Lord\r\n\r\n Polon. And let him plye his Musicke\r\n\r\n Reynol. Well, my Lord.\r\nEnter.\r\n\r\nEnter Ophelia.\r\n\r\n Polon. Farewell:\r\nHow now Ophelia, what\'s the matter?\r\n Ophe. Alas my Lord, I haue beene so affrighted\r\n\r\n Polon. With what, in the name of Heauen?\r\n Ophe. My Lord, as I was sowing in my Chamber,\r\nLord Hamlet with his doublet all vnbrac\'d,\r\nNo hat vpon his head, his stockings foul\'d,\r\nVngartred, and downe giued to his Anckle,\r\nPale as his shirt, his knees knocking each other,\r\nAnd with a looke so pitious in purport,\r\nAs if he had been loosed out of hell,\r\nTo speake of horrors: he comes before me\r\n\r\n Polon. Mad for thy Loue?\r\n Ophe. My Lord, I doe not know: but truly I do feare it\r\n\r\n Polon. What said he?\r\n Ophe. He tooke me by the wrist, and held me hard;\r\nThen goes he to the length of all his arme;\r\nAnd with his other hand thus o\'re his brow,\r\nHe fals to such perusall of my face,\r\nAs he would draw it. Long staid he so,\r\nAt last, a little shaking of mine Arme:\r\nAnd thrice his head thus wauing vp and downe;\r\nHe rais\'d a sigh, so pittious and profound,\r\nThat it did seeme to shatter all his bulke,\r\nAnd end his being. That done, he lets me goe,\r\nAnd with his head ouer his shoulders turn\'d,\r\nHe seem\'d to finde his way without his eyes,\r\nFor out adores he went without their helpe;\r\nAnd to the last, bended their light on me\r\n\r\n Polon. Goe with me, I will goe seeke the King,\r\nThis is the very extasie of Loue,\r\nWhose violent property foredoes it selfe,\r\nAnd leads the will to desperate Vndertakings,\r\nAs oft as any passion vnder Heauen,\r\nThat does afflict our Natures. I am sorrie,\r\nWhat haue you giuen him any hard words of late?\r\n Ophe. No my good Lord: but as you did command,\r\nI did repell his Letters, and deny\'de\r\nHis accesse to me\r\n\r\n Pol. That hath made him mad.\r\nI am sorrie that with better speed and iudgement\r\nI had not quoted him. I feare he did but trifle,\r\nAnd meant to wracke thee: but beshrew my iealousie:\r\nIt seemes it is as proper to our Age,\r\nTo cast beyond our selues in our Opinions,\r\nAs it is common for the yonger sort\r\nTo lacke discretion. Come, go we to the King,\r\nThis must be knowne, being kept close might moue\r\nMore greefe to hide, then hate to vtter loue.\r\n\r\nExeunt.\r\n\r\n\r\nScena Secunda.\r\n\r\nEnter King, Queene, Rosincrane, and Guildensterne Cum alijs.\r\n\r\n King. Welcome deere Rosincrance and Guildensterne.\r\nMoreouer, that we much did long to see you,\r\nThe neede we haue to vse you, did prouoke\r\nOur hastie sending. Something haue you heard\r\nOf Hamlets transformation: so I call it,\r\nSince not th\' exterior, nor the inward man\r\nResembles that it was. What it should bee\r\nMore then his Fathers death, that thus hath put him\r\nSo much from th\' vnderstanding of himselfe,\r\nI cannot deeme of. I intreat you both,\r\nThat being of so young dayes brought vp with him:\r\nAnd since so Neighbour\'d to his youth, and humour,\r\nThat you vouchsafe your rest heere in our Court\r\nSome little time: so by your Companies\r\nTo draw him on to pleasures, and to gather\r\nSo much as from Occasions you may gleane,\r\nThat open\'d lies within our remedie\r\n\r\n Qu. Good Gentlemen, he hath much talk\'d of you,\r\nAnd sure I am, two men there are not liuing,\r\nTo whom he more adheres. If it will please you\r\nTo shew vs so much Gentrie, and good will,\r\nAs to expend your time with vs a-while,\r\nFor the supply and profit of our Hope,\r\nYour Visitation shall receiue such thankes\r\nAs fits a Kings remembrance\r\n\r\n Rosin. Both your Maiesties\r\nMight by the Soueraigne power you haue of vs,\r\nPut your dread pleasures, more into Command\r\nThen to Entreatie\r\n\r\n Guil. We both obey,\r\nAnd here giue vp our selues, in the full bent,\r\nTo lay our Seruices freely at your feete,\r\nTo be commanded\r\n\r\n King. Thankes Rosincrance, and gentle Guildensterne\r\n\r\n Qu. Thankes Guildensterne and gentle Rosincrance.\r\nAnd I beseech you instantly to visit\r\nMy too much changed Sonne.\r\nGo some of ye,\r\nAnd bring the Gentlemen where Hamlet is\r\n\r\n Guil. Heauens make our presence and our practises\r\nPleasant and helpfull to him.\r\nEnter.\r\n\r\n Queene. Amen.\r\nEnter Polonius.\r\n\r\n Pol. Th\' Ambassadors from Norwey, my good Lord,\r\nAre ioyfully return\'d\r\n\r\n King. Thou still hast bin the father of good Newes\r\n\r\n Pol. Haue I, my Lord? Assure you, my good Liege,\r\nI hold my dutie, as I hold my Soule,\r\nBoth to my God, one to my gracious King:\r\nAnd I do thinke, or else this braine of mine\r\nHunts not the traile of Policie, so sure\r\nAs I haue vs\'d to do: that I haue found\r\nThe very cause of Hamlets Lunacie\r\n\r\n King. Oh speake of that, that I do long to heare\r\n\r\n Pol. Giue first admittance to th\' Ambassadors,\r\nMy Newes shall be the Newes to that great Feast\r\n\r\n King. Thy selfe do grace to them, and bring them in.\r\nHe tels me my sweet Queene, that he hath found\r\nThe head and sourse of all your Sonnes distemper\r\n\r\n Qu. I doubt it is no other, but the maine,\r\nHis Fathers death, and our o\'re-hasty Marriage.\r\nEnter Polonius, Voltumand, and Cornelius.\r\n\r\n King. Well, we shall sift him. Welcome good Frends:\r\nSay Voltumand, what from our Brother Norwey?\r\n Volt. Most faire returne of Greetings, and Desires.\r\nVpon our first, he sent out to suppresse\r\nHis Nephewes Leuies, which to him appear\'d\r\nTo be a preparation \'gainst the Poleak:\r\nBut better look\'d into, he truly found\r\nIt was against your Highnesse, whereat greeued,\r\nThat so his Sicknesse, Age, and Impotence\r\nWas falsely borne in hand, sends out Arrests\r\nOn Fortinbras, which he (in breefe) obeyes,\r\nReceiues rebuke from Norwey: and in fine,\r\nMakes Vow before his Vnkle, neuer more\r\nTo giue th\' assay of Armes against your Maiestie.\r\nWhereon old Norwey, ouercome with ioy,\r\nGiues him three thousand Crownes in Annuall Fee,\r\nAnd his Commission to imploy those Soldiers\r\nSo leuied as before, against the Poleak:\r\nWith an intreaty heerein further shewne,\r\nThat it might please you to giue quiet passe\r\nThrough your Dominions, for his Enterprize,\r\nOn such regards of safety and allowance,\r\nAs therein are set downe\r\n\r\n King. It likes vs well:\r\nAnd at our more consider\'d time wee\'l read,\r\nAnswer, and thinke vpon this Businesse.\r\nMeane time we thanke you, for your well-tooke Labour.\r\nGo to your rest, at night wee\'l Feast together.\r\nMost welcome home.\r\n\r\nExit Ambass.\r\n\r\n Pol. This businesse is very well ended.\r\nMy Liege, and Madam, to expostulate\r\nWhat Maiestie should be, what Dutie is,\r\nWhy day is day; night, night; and time is time,\r\nWere nothing but to waste Night, Day, and Time.\r\nTherefore, since Breuitie is the Soule of Wit,\r\nAnd tediousnesse, the limbes and outward flourishes,\r\nI will be breefe. Your Noble Sonne is mad:\r\nMad call I it; for to define true Madnesse,\r\nWhat is\'t, but to be nothing else but mad.\r\nBut let that go\r\n\r\n Qu. More matter, with lesse Art\r\n\r\n Pol. Madam, I sweare I vse no Art at all:\r\nThat he is mad, \'tis true: \'Tis true \'tis pittie,\r\nAnd pittie it is true: A foolish figure,\r\nBut farewell it: for I will vse no Art.\r\nMad let vs grant him then: and now remaines\r\nThat we finde out the cause of this effect,\r\nOr rather say, the cause of this defect;\r\nFor this effect defectiue, comes by cause,\r\nThus it remaines, and the remainder thus. Perpend,\r\nI haue a daughter: haue, whil\'st she is mine,\r\nWho in her Dutie and Obedience, marke,\r\nHath giuen me this: now gather, and surmise.\r\n\r\nThe Letter.\r\n\r\nTo the Celestiall, and my Soules Idoll, the most beautifed Ophelia.\r\nThat\'s an ill Phrase, a vilde Phrase, beautified is a vilde\r\nPhrase: but you shall heare these in her excellent white\r\nbosome, these\r\n\r\n Qu. Came this from Hamlet to her\r\n\r\n Pol. Good Madam stay awhile, I will be faithfull.\r\nDoubt thou, the Starres are fire,\r\nDoubt, that the Sunne doth moue:\r\nDoubt Truth to be a Lier,\r\nBut neuer Doubt, I loue.\r\nO deere Ophelia, I am ill at these Numbers: I haue not Art to\r\nreckon my grones; but that I loue thee best, oh most Best beleeue\r\nit. Adieu.\r\nThine euermore most deere Lady, whilst this\r\nMachine is to him, Hamlet.\r\nThis in Obedience hath my daughter shew\'d me:\r\nAnd more aboue hath his soliciting,\r\nAs they fell out by Time, by Meanes, and Place,\r\nAll giuen to mine eare\r\n\r\n King. But how hath she receiu\'d his Loue?\r\n Pol. What do you thinke of me?\r\n King. As of a man, faithfull and Honourable\r\n\r\n Pol. I wold faine proue so. But what might you think?\r\nWhen I had seene this hot loue on the wing,\r\nAs I perceiued it, I must tell you that\r\nBefore my Daughter told me what might you\r\nOr my deere Maiestie your Queene heere, think,\r\nIf I had playd the Deske or Table-booke,\r\nOr giuen my heart a winking, mute and dumbe,\r\nOr look\'d vpon this Loue, with idle sight,\r\nWhat might you thinke? No, I went round to worke,\r\nAnd (my yong Mistris) thus I did bespeake\r\nLord Hamlet is a Prince out of thy Starre,\r\nThis must not be: and then, I Precepts gaue her,\r\nThat she should locke her selfe from his Resort,\r\nAdmit no Messengers, receiue no Tokens:\r\nWhich done, she tooke the Fruites of my Aduice,\r\nAnd he repulsed. A short Tale to make,\r\nFell into a Sadnesse, then into a Fast,\r\nThence to a Watch, thence into a Weaknesse,\r\nThence to a Lightnesse, and by this declension\r\nInto the Madnesse whereon now he raues,\r\nAnd all we waile for\r\n\r\n King. Do you thinke \'tis this?\r\n Qu. It may be very likely\r\n\r\n Pol. Hath there bene such a time, I\'de fain know that,\r\nThat I haue possitiuely said, \'tis so,\r\nWhen it prou\'d otherwise?\r\n King. Not that I know\r\n\r\n Pol. Take this from this; if this be otherwise,\r\nIf Circumstances leade me, I will finde\r\nWhere truth is hid, though it were hid indeede\r\nWithin the Center\r\n\r\n King. How may we try it further?\r\n Pol. You know sometimes\r\nHe walkes foure houres together, heere\r\nIn the Lobby\r\n\r\n Qu. So he ha\'s indeed\r\n\r\n Pol. At such a time Ile loose my Daughter to him,\r\nBe you and I behinde an Arras then,\r\nMarke the encounter: If he loue her not,\r\nAnd be not from his reason falne thereon;\r\nLet me be no Assistant for a State,\r\nAnd keepe a Farme and Carters\r\n\r\n King. We will try it.\r\nEnter Hamlet reading on a Booke.\r\n\r\n Qu. But looke where sadly the poore wretch\r\nComes reading\r\n\r\n Pol. Away I do beseech you, both away,\r\nIle boord him presently.\r\n\r\nExit King & Queen.\r\n\r\nOh giue me leaue. How does my good Lord Hamlet?\r\n Ham. Well, God-a-mercy\r\n\r\n Pol. Do you know me, my Lord?\r\n Ham. Excellent, excellent well: y\'are a Fishmonger\r\n\r\n Pol. Not I my Lord\r\n\r\n Ham. Then I would you were so honest a man\r\n\r\n Pol. Honest, my Lord?\r\n Ham. I sir, to be honest as this world goes, is to bee\r\none man pick\'d out of two thousand\r\n\r\n Pol. That\'s very true, my Lord\r\n\r\n Ham. For if the Sun breed Magots in a dead dogge,\r\nbeing a good kissing Carrion-\r\nHaue you a daughter?\r\n Pol. I haue my Lord\r\n\r\n Ham. Let her not walke i\'thSunne: Conception is a\r\nblessing, but not as your daughter may conceiue. Friend\r\nlooke too\'t\r\n\r\n Pol. How say you by that? Still harping on my daughter:\r\nyet he knew me not at first; he said I was a Fishmonger:\r\nhe is farre gone, farre gone: and truly in my youth,\r\nI suffred much extreamity for loue: very neere this. Ile\r\nspeake to him againe. What do you read my Lord?\r\n Ham. Words, words, words\r\n\r\n Pol. What is the matter, my Lord?\r\n Ham. Betweene who?\r\n Pol. I meane the matter you meane, my Lord\r\n\r\n Ham. Slanders Sir: for the Satyricall slaue saies here,\r\nthat old men haue gray Beards; that their faces are wrinkled;\r\ntheir eyes purging thicke Amber, or Plum-Tree\r\nGumme: and that they haue a plentifull locke of Wit,\r\ntogether with weake Hammes. All which Sir, though I\r\nmost powerfully, and potently beleeue; yet I holde it\r\nnot Honestie to haue it thus set downe: For you your\r\nselfe Sir, should be old as I am, if like a Crab you could\r\ngo backward\r\n\r\n Pol. Though this be madnesse,\r\nYet there is Method in\'t: will you walke\r\nOut of the ayre my Lord?\r\n Ham. Into my Graue?\r\n Pol. Indeed that is out o\'th\' Ayre:\r\nHow pregnant (sometimes) his Replies are?\r\nA happinesse,\r\nThat often Madnesse hits on,\r\nWhich Reason and Sanitie could not\r\nSo prosperously be deliuer\'d of.\r\nI will leaue him,\r\nAnd sodainely contriue the meanes of meeting\r\nBetweene him, and my daughter.\r\nMy Honourable Lord, I will most humbly\r\nTake my leaue of you\r\n\r\n Ham. You cannot Sir take from me any thing, that I\r\nwill more willingly part withall, except my life, my\r\nlife\r\n\r\n Polon. Fare you well my Lord\r\n\r\n Ham. These tedious old fooles\r\n\r\n Polon. You goe to seeke my Lord Hamlet; there\r\nhee is.\r\nEnter Rosincran and Guildensterne.\r\n\r\n Rosin. God saue you Sir\r\n\r\n Guild. Mine honour\'d Lord?\r\n Rosin. My most deare Lord?\r\n Ham. My excellent good friends? How do\'st thou\r\nGuildensterne? Oh, Rosincrane; good Lads: How doe ye\r\nboth?\r\n Rosin. As the indifferent Children of the earth\r\n\r\n Guild. Happy, in that we are not ouer-happy: on Fortunes\r\nCap, we are not the very Button\r\n\r\n Ham. Nor the Soales of her Shoo?\r\n Rosin. Neither my Lord\r\n\r\n Ham. Then you liue about her waste, or in the middle\r\nof her fauour?\r\n Guil. Faith, her priuates, we\r\n\r\n Ham. In the secret parts of Fortune? Oh, most true:\r\nshe is a Strumpet. What\'s the newes?\r\n Rosin. None my Lord; but that the World\'s growne\r\nhonest\r\n\r\n Ham. Then is Doomesday neere: But your newes is\r\nnot true. Let me question more in particular: what haue\r\nyou my good friends, deserued at the hands of Fortune,\r\nthat she sends you to Prison hither?\r\n Guil. Prison, my Lord?\r\n Ham. Denmark\'s a Prison\r\n\r\n Rosin. Then is the World one\r\n\r\n Ham. A goodly one, in which there are many Confines,\r\nWards, and Dungeons; Denmarke being one o\'th\'\r\nworst\r\n\r\n Rosin. We thinke not so my Lord\r\n\r\n Ham. Why then \'tis none to you; for there is nothing\r\neither good or bad, but thinking makes it so: to me it is\r\na prison\r\n\r\n Rosin. Why then your Ambition makes it one: \'tis\r\ntoo narrow for your minde\r\n\r\n Ham. O God, I could be bounded in a nutshell, and\r\ncount my selfe a King of infinite space; were it not that\r\nI haue bad dreames\r\n\r\n Guil. Which dreames indeed are Ambition: for the\r\nvery substance of the Ambitious, is meerely the shadow\r\nof a Dreame\r\n\r\n Ham. A dreame it selfe is but a shadow\r\n\r\n Rosin. Truely, and I hold Ambition of so ayry and\r\nlight a quality, that it is but a shadowes shadow\r\n\r\n Ham. Then are our Beggers bodies; and our Monarchs\r\nand out-stretcht Heroes the Beggers Shadowes:\r\nshall wee to th\' Court: for, by my fey I cannot reason?\r\n Both. Wee\'l wait vpon you\r\n\r\n Ham. No such matter. I will not sort you with the\r\nrest of my seruants: for to speake to you like an honest\r\nman: I am most dreadfully attended; but in the beaten\r\nway of friendship, What make you at Elsonower?\r\n Rosin. To visit you my Lord, no other occasion\r\n\r\n Ham. Begger that I am, I am euen poore in thankes;\r\nbut I thanke you: and sure deare friends my thanks\r\nare too deare a halfepeny; were you not sent for? Is it\r\nyour owne inclining? Is it a free visitation? Come,\r\ndeale iustly with me: come, come; nay speake\r\n\r\n Guil. What should we say my Lord?\r\n Ham. Why any thing. But to the purpose; you were\r\nsent for; and there is a kinde confession in your lookes;\r\nwhich your modesties haue not craft enough to color,\r\nI know the good King & Queene haue sent for you\r\n\r\n Rosin. To what end my Lord?\r\n Ham. That you must teach me: but let mee coniure\r\nyou by the rights of our fellowship, by the consonancy of\r\nour youth, by the Obligation of our euer-preserued loue,\r\nand by what more deare, a better proposer could charge\r\nyou withall; be euen and direct with me, whether you\r\nwere sent for or no\r\n\r\n Rosin. What say you?\r\n Ham. Nay then I haue an eye of you: if you loue me\r\nhold not off\r\n\r\n Guil. My Lord, we were sent for\r\n\r\n Ham. I will tell you why; so shall my anticipation\r\npreuent your discouery of your secricie to the King and\r\nQueene: moult no feather, I haue of late, but wherefore\r\nI know not, lost all my mirth, forgone all custome of exercise;\r\nand indeed, it goes so heauenly with my disposition;\r\nthat this goodly frame the Earth, seemes to me a sterrill\r\nPromontory; this most excellent Canopy the Ayre,\r\nlook you, this braue ore-hanging, this Maiesticall Roofe,\r\nfretted with golden fire: why, it appeares no other thing\r\nto mee, then a foule and pestilent congregation of vapours.\r\nWhat a piece of worke is a man! how Noble in\r\nReason? how infinite in faculty? in forme and mouing\r\nhow expresse and admirable? in Action, how like an Angel?\r\nin apprehension, how like a God? the beauty of the\r\nworld, the Parragon of Animals; and yet to me, what is\r\nthis Quintessence of Dust? Man delights not me; no,\r\nnor Woman neither; though by your smiling you seeme\r\nto say so\r\n\r\n Rosin. My Lord, there was no such stuffe in my\r\nthoughts\r\n\r\n Ham. Why did you laugh, when I said, Man delights\r\nnot me?\r\n Rosin. To thinke, my Lord, if you delight not in Man,\r\nwhat Lenton entertainment the Players shall receiue\r\nfrom you: wee coated them on the way, and hither are\r\nthey comming to offer you Seruice\r\n\r\n Ham. He that playes the King shall be welcome; his\r\nMaiesty shall haue Tribute of mee: the aduenturous\r\nKnight shal vse his Foyle and Target: the Louer shall\r\nnot sigh gratis, the humorous man shall end his part in\r\npeace: the Clowne shall make those laugh whose lungs\r\nare tickled a\'th\' sere: and the Lady shall say her minde\r\nfreely; or the blanke Verse shall halt for\'t: what Players\r\nare they?\r\n Rosin. Euen those you were wont to take delight in\r\nthe Tragedians of the City\r\n\r\n Ham. How chances it they trauaile? their residence\r\nboth in reputation and profit was better both\r\nwayes\r\n\r\n Rosin. I thinke their Inhibition comes by the meanes\r\nof the late Innouation?\r\n Ham. Doe they hold the same estimation they did\r\nwhen I was in the City? Are they so follow\'d?\r\n Rosin. No indeed, they are not\r\n\r\n Ham. How comes it? doe they grow rusty?\r\n Rosin. Nay, their indeauour keepes in the wonted\r\npace; But there is Sir an ayrie of Children, little\r\nYases, that crye out on the top of question; and\r\nare most tyrannically clap\'t for\'t: these are now the\r\nfashion, and so be-ratled the common Stages (so they\r\ncall them) that many wearing Rapiers, are affraide of\r\nGoose-quils, and dare scarse come thither\r\n\r\n Ham. What are they Children? Who maintains \'em?\r\nHow are they escorted? Will they pursue the Quality no\r\nlonger then they can sing? Will they not say afterwards\r\nif they should grow themselues to common Players (as\r\nit is most like if their meanes are not better) their Writers\r\ndo them wrong, to make them exclaim against their\r\nowne Succession\r\n\r\n Rosin. Faith there ha\'s bene much to do on both sides:\r\nand the Nation holds it no sinne, to tarre them to Controuersie.\r\nThere was for a while, no mony bid for argument,\r\nvnlesse the Poet and the Player went to Cuffes in\r\nthe Question\r\n\r\n Ham. Is\'t possible?\r\n Guild. Oh there ha\'s beene much throwing about of\r\nBraines\r\n\r\n Ham. Do the Boyes carry it away?\r\n Rosin. I that they do my Lord. Hercules & his load too\r\n\r\n Ham. It is not strange: for mine Vnckle is King of\r\nDenmarke, and those that would make mowes at him\r\nwhile my Father liued; giue twenty, forty, an hundred\r\nDucates a peece, for his picture in Little. There is something\r\nin this more then Naturall, if Philosophie could\r\nfinde it out.\r\n\r\nFlourish for the Players.\r\n\r\n Guil. There are the Players\r\n\r\n Ham. Gentlemen, you are welcom to Elsonower: your\r\nhands, come: The appurtenance of Welcome, is Fashion\r\nand Ceremony. Let me comply with you in the Garbe,\r\nlest my extent to the Players (which I tell you must shew\r\nfairely outward) should more appeare like entertainment\r\nthen yours. You are welcome: but my Vnckle Father,\r\nand Aunt Mother are deceiu\'d\r\n\r\n Guil. In what my deere Lord?\r\n Ham. I am but mad North, North-West: when the\r\nWinde is Southerly, I know a Hawke from a Handsaw.\r\nEnter Polonius.\r\n\r\n Pol. Well be with you Gentlemen\r\n\r\n Ham. Hearke you Guildensterne, and you too: at each\r\neare a hearer: that great Baby you see there, is not yet\r\nout of his swathing clouts\r\n\r\n Rosin. Happily he\'s the second time come to them: for\r\nthey say, an old man is twice a childe\r\n\r\n Ham. I will Prophesie. Hee comes to tell me of the\r\nPlayers. Mark it, you say right Sir: for a Monday morning\r\n\'twas so indeed\r\n\r\n Pol. My Lord, I haue Newes to tell you\r\n\r\n Ham. My Lord, I haue Newes to tell you.\r\nWhen Rossius an Actor in Rome-\r\n Pol. The Actors are come hither my Lord\r\n\r\n Ham. Buzze, buzze\r\n\r\n Pol. Vpon mine Honor\r\n\r\n Ham. Then can each Actor on his Asse-\r\n Polon. The best Actors in the world, either for Tragedie,\r\nComedie, Historie, Pastorall:\r\nPastoricall-Comicall-Historicall-Pastorall:\r\nTragicall-Historicall: Tragicall-Comicall-Historicall-Pastorall:\r\nScene indiuidible: or Poem\r\nvnlimited. Seneca cannot be too heauy, nor Plautus\r\ntoo light, for the law of Writ, and the Liberty. These are\r\nthe onely men\r\n\r\n Ham. O Iephta Iudge of Israel, what a Treasure had\'st\r\nthou?\r\n Pol. What a Treasure had he, my Lord?\r\n Ham. Why one faire Daughter, and no more,\r\nThe which he loued passing well\r\n\r\n Pol. Still on my Daughter\r\n\r\n Ham. Am I not i\'th\' right old Iephta?\r\n Polon. If you call me Iephta my Lord, I haue a daughter\r\nthat I loue passing well\r\n\r\n Ham. Nay that followes not\r\n\r\n Polon. What followes then, my Lord?\r\n Ha. Why, As by lot, God wot: and then you know, It\r\ncame to passe, as most like it was: The first rowe of the\r\nPons Chanson will shew you more. For looke where my\r\nAbridgements come.\r\nEnter foure or fiue Players.\r\n\r\nY\'are welcome Masters, welcome all. I am glad to see\r\nthee well: Welcome good Friends. Oh my olde Friend?\r\nThy face is valiant since I saw thee last: Com\'st thou to\r\nbeard me in Denmarke? What, my yong Lady and Mistris?\r\nByrlady your Ladiship is neerer Heauen then when\r\nI saw you last, by the altitude of a Choppine. Pray God\r\nyour voice like a peece of vncurrant Gold be not crack\'d\r\nwithin the ring. Masters, you are all welcome: wee\'l e\'ne\r\nto\'t like French Faulconers, flie at any thing we see: wee\'l\r\nhaue a Speech straight. Come giue vs a tast of your quality:\r\ncome, a passionate speech\r\n\r\n 1.Play. What speech, my Lord?\r\n Ham. I heard thee speak me a speech once, but it was\r\nneuer Acted: or if it was, not aboue once, for the Play I\r\nremember pleas\'d not the Million, \'twas Cauiarie to the\r\nGenerall: but it was (as I receiu\'d it, and others, whose\r\niudgement in such matters, cried in the top of mine) an\r\nexcellent Play; well digested in the Scoenes, set downe\r\nwith as much modestie, as cunning. I remember one said,\r\nthere was no Sallets in the lines, to make the matter sauory;\r\nnor no matter in the phrase, that might indite the\r\nAuthor of affectation, but cal\'d it an honest method. One\r\ncheefe Speech in it, I cheefely lou\'d, \'twas Aeneas Tale\r\nto Dido, and thereabout of it especially, where he speaks\r\nof Priams slaughter. If it liue in your memory, begin at\r\nthis Line, let me see, let me see: The rugged Pyrrhus like\r\nth\'Hyrcanian Beast. It is not so: it begins with Pyrrhus\r\nThe rugged Pyrrhus, he whose Sable Armes\r\nBlacke as his purpose, did the night resemble\r\nWhen he lay couched in the Ominous Horse,\r\nHath now this dread and blacke Complexion smear\'d\r\nWith Heraldry more dismall: Head to foote\r\nNow is he to take Geulles, horridly Trick\'d\r\nWith blood of Fathers, Mothers, Daughters, Sonnes,\r\nBak\'d and impasted with the parching streets,\r\nThat lend a tyrannous, and damned light\r\nTo their vilde Murthers, roasted in wrath and fire,\r\nAnd thus o\'re-sized with coagulate gore,\r\nWith eyes like Carbuncles, the hellish Pyrrhus\r\nOlde Grandsire Priam seekes\r\n\r\n Pol. Fore God, my Lord, well spoken, with good accent,\r\nand good discretion\r\n\r\n 1.Player. Anon he findes him,\r\nStriking too short at Greekes. His anticke Sword,\r\nRebellious to his Arme, lyes where it falles\r\nRepugnant to command: vnequall match,\r\nPyrrhus at Priam driues, in Rage strikes wide:\r\nBut with the whiffe and winde of his fell Sword,\r\nTh\' vnnerued Father fals. Then senselesse Illium,\r\nSeeming to feele his blow, with flaming top\r\nStoopes to his Bace, and with a hideous crash\r\nTakes Prisoner Pyrrhus eare. For loe, his Sword\r\nWhich was declining on the Milkie head\r\nOf Reuerend Priam, seem\'d i\'th\' Ayre to sticke:\r\nSo as a painted Tyrant Pyrrhus stood,\r\nAnd like a Newtrall to his will and matter, did nothing.\r\nBut as we often see against some storme,\r\nA silence in the Heauens, the Racke stand still,\r\nThe bold windes speechlesse, and the Orbe below\r\nAs hush as death: Anon the dreadfull Thunder\r\nDoth rend the Region. So after Pyrrhus pause,\r\nA rowsed Vengeance sets him new a-worke,\r\nAnd neuer did the Cyclops hammers fall\r\nOn Mars his Armours, forg\'d for proofe Eterne,\r\nWith lesse remorse then Pyrrhus bleeding sword\r\nNow falles on Priam.\r\nOut, out, thou Strumpet-Fortune, all you Gods,\r\nIn generall Synod take away her power:\r\nBreake all the Spokes and Fallies from her wheele,\r\nAnd boule the round Naue downe the hill of Heauen,\r\nAs low as to the Fiends\r\n\r\n Pol. This is too long\r\n\r\n Ham. It shall to\'th Barbars, with your beard. Prythee\r\nsay on: He\'s for a Iigge, or a tale of Baudry, or hee\r\nsleepes. Say on; come to Hecuba\r\n\r\n 1.Play. But who, O who, had seen the inobled Queen\r\n\r\n Ham. The inobled Queene?\r\n Pol. That\'s good: Inobled Queene is good\r\n\r\n 1.Play. Run bare-foot vp and downe,\r\nThreatning the flame\r\nWith Bisson Rheume: A clout about that head,\r\nWhere late the Diadem stood, and for a Robe\r\nAbout her lanke and all ore-teamed Loines,\r\nA blanket in th\' Alarum of feare caught vp.\r\nWho this had seene, with tongue in Venome steep\'d,\r\n\'Gainst Fortunes State, would Treason haue pronounc\'d?\r\nBut if the Gods themselues did see her then,\r\nWhen she saw Pyrrhus make malicious sport\r\nIn mincing with his Sword her Husbands limbes,\r\nThe instant Burst of Clamour that she made\r\n(Vnlesse things mortall moue them not at all)\r\nWould haue made milche the Burning eyes of Heauen,\r\nAnd passion in the Gods\r\n\r\n Pol. Looke where he ha\'s not turn\'d his colour, and\r\nha\'s teares in\'s eyes. Pray you no more\r\n\r\n Ham. \'Tis well, Ile haue thee speake out the rest,\r\nsoone. Good my Lord, will you see the Players wel bestow\'d.\r\nDo ye heare, let them be well vs\'d: for they are\r\nthe Abstracts and breefe Chronicles of the time. After\r\nyour death, you were better haue a bad Epitaph, then\r\ntheir ill report while you liued\r\n\r\n Pol. My Lord, I will vse them according to their desart\r\n\r\n Ham. Gods bodykins man, better. Vse euerie man\r\nafter his desart, and who should scape whipping: vse\r\nthem after your own Honor and Dignity. The lesse they\r\ndeserue, the more merit is in your bountie. Take them\r\nin\r\n\r\n Pol. Come sirs.\r\n\r\nExit Polon.\r\n\r\n Ham. Follow him Friends: wee\'l heare a play to morrow.\r\nDost thou heare me old Friend, can you play the\r\nmurther of Gonzago?\r\n Play. I my Lord\r\n\r\n Ham. Wee\'l ha\'t to morrow night. You could for a\r\nneed study a speech of some dosen or sixteene lines, which\r\nI would set downe, and insert in\'t? Could ye not?\r\n Play. I my Lord\r\n\r\n Ham. Very well. Follow that Lord, and looke you\r\nmock him not. My good Friends, Ile leaue you til night\r\nyou are welcome to Elsonower?\r\n Rosin. Good my Lord.\r\n\r\nExeunt.\r\n\r\nManet Hamlet.\r\n\r\n Ham. I so, God buy\'ye: Now I am alone.\r\nOh what a Rogue and Pesant slaue am I?\r\nIs it not monstrous that this Player heere,\r\nBut in a Fixion, in a dreame of Passion,\r\nCould force his soule so to his whole conceit,\r\nThat from her working, all his visage warm\'d;\r\nTeares in his eyes, distraction in\'s Aspect,\r\nA broken voyce, and his whole Function suiting\r\nWith Formes, to his Conceit? And all for nothing?\r\nFor Hecuba?\r\nWhat\'s Hecuba to him, or he to Hecuba,\r\nThat he should weepe for her? What would he doe,\r\nHad he the Motiue and the Cue for passion\r\nThat I haue? He would drowne the Stage with teares,\r\nAnd cleaue the generall eare with horrid speech:\r\nMake mad the guilty, and apale the free,\r\nConfound the ignorant, and amaze indeed,\r\nThe very faculty of Eyes and Eares. Yet I,\r\nA dull and muddy-metled Rascall, peake\r\nLike Iohn a-dreames, vnpregnant of my cause,\r\nAnd can say nothing: No, not for a King,\r\nVpon whose property, and most deere life,\r\nA damn\'d defeate was made. Am I a Coward?\r\nWho calles me Villaine? breakes my pate a-crosse?\r\nPluckes off my Beard, and blowes it in my face?\r\nTweakes me by\'th\' Nose? giues me the Lye i\'th\' Throate,\r\nAs deepe as to the Lungs? Who does me this?\r\nHa? Why I should take it: for it cannot be,\r\nBut I am Pigeon-Liuer\'d, and lacke Gall\r\nTo make Oppression bitter, or ere this,\r\nI should haue fatted all the Region Kites\r\nWith this Slaues Offall, bloudy: a Bawdy villaine,\r\nRemorselesse, Treacherous, Letcherous, kindles villaine!\r\nOh Vengeance!\r\nWho? What an Asse am I? I sure, this is most braue,\r\nThat I, the Sonne of the Deere murthered,\r\nPrompted to my Reuenge by Heauen, and Hell,\r\nMust (like a Whore) vnpacke my heart with words,\r\nAnd fall a Cursing like a very Drab.\r\nA Scullion? Fye vpon\'t: Foh. About my Braine.\r\nI haue heard, that guilty Creatures sitting at a Play,\r\nHaue by the very cunning of the Scoene,\r\nBene strooke so to the soule, that presently\r\nThey haue proclaim\'d their Malefactions.\r\nFor Murther, though it haue no tongue, will speake\r\nWith most myraculous Organ. Ile haue these Players,\r\nPlay something like the murder of my Father,\r\nBefore mine Vnkle. Ile obserue his lookes,\r\nIle rent him to the quicke: If he but blench\r\nI know my course. The Spirit that I haue seene\r\nMay be the Diuell, and the Diuel hath power\r\nT\' assume a pleasing shape, yea and perhaps\r\nOut of my Weaknesse, and my Melancholly,\r\nAs he is very potent with such Spirits,\r\nAbuses me to damne me. Ile haue grounds\r\nMore Relatiue then this: The Play\'s the thing,\r\nWherein Ile catch the Conscience of the King.\r\n\r\nExit\r\n\r\nEnter King, Queene, Polonius, Ophelia, Rosincrance,\r\nGuildenstern, and\r\nLords.\r\n\r\n King. And can you by no drift of circumstance\r\nGet from him why he puts on this Confusion:\r\nGrating so harshly all his dayes of quiet\r\nWith turbulent and dangerous Lunacy\r\n\r\n Rosin. He does confesse he feeles himselfe distracted,\r\nBut from what cause he will by no meanes speake\r\n\r\n Guil. Nor do we finde him forward to be sounded,\r\nBut with a crafty Madnesse keepes aloofe:\r\nWhen we would bring him on to some Confession\r\nOf his true state\r\n\r\n Qu. Did he receiue you well?\r\n Rosin. Most like a Gentleman\r\n\r\n Guild. But with much forcing of his disposition\r\n\r\n Rosin. Niggard of question, but of our demands\r\nMost free in his reply\r\n\r\n Qu. Did you assay him to any pastime?\r\n Rosin. Madam, it so fell out, that certaine Players\r\nWe ore-wrought on the way: of these we told him,\r\nAnd there did seeme in him a kinde of ioy\r\nTo heare of it: They are about the Court,\r\nAnd (as I thinke) they haue already order\r\nThis night to play before him\r\n\r\n Pol. \'Tis most true:\r\nAnd he beseech\'d me to intreate your Maiesties\r\nTo heare, and see the matter\r\n\r\n King. With all my heart, and it doth much content me\r\nTo heare him so inclin\'d. Good Gentlemen,\r\nGiue him a further edge, and driue his purpose on\r\nTo these delights\r\n\r\n Rosin. We shall my Lord.\r\n\r\nExeunt.\r\n\r\n King. Sweet Gertrude leaue vs too,\r\nFor we haue closely sent for Hamlet hither,\r\nThat he, as \'twere by accident, may there\r\nAffront Ophelia. Her Father, and my selfe (lawful espials)\r\nWill so bestow our selues, that seeing vnseene\r\nWe may of their encounter frankely iudge,\r\nAnd gather by him, as he is behaued,\r\nIf\'t be th\' affliction of his loue, or no.\r\nThat thus he suffers for\r\n\r\n Qu. I shall obey you,\r\nAnd for your part Ophelia, I do wish\r\nThat your good Beauties be the happy cause\r\nOf Hamlets wildenesse: so shall I hope your Vertues\r\nWill bring him to his wonted way againe,\r\nTo both your Honors\r\n\r\n Ophe. Madam, I wish it may\r\n\r\n Pol. Ophelia, walke you heere. Gracious so please ye\r\nWe will bestow our selues: Reade on this booke,\r\nThat shew of such an exercise may colour\r\nYour lonelinesse. We are oft too blame in this,\r\n\'Tis too much prou\'d, that with Deuotions visage,\r\nAnd pious Action, we do surge o\'re\r\nThe diuell himselfe\r\n\r\n King. Oh \'tis true:\r\nHow smart a lash that speech doth giue my Conscience?\r\nThe Harlots Cheeke beautied with plaist\'ring Art\r\nIs not more vgly to the thing that helpes it,\r\nThen is my deede, to my most painted word.\r\nOh heauie burthen!\r\n Pol. I heare him comming, let\'s withdraw my Lord.\r\n\r\nExeunt.\r\n\r\nEnter Hamlet.\r\n\r\n Ham. To be, or not to be, that is the Question:\r\nWhether \'tis Nobler in the minde to suffer\r\nThe Slings and Arrowes of outragious Fortune,\r\nOr to take Armes against a Sea of troubles,\r\nAnd by opposing end them: to dye, to sleepe\r\nNo more; and by a sleepe, to say we end\r\nThe Heart-ake, and the thousand Naturall shockes\r\nThat Flesh is heyre too? \'Tis a consummation\r\nDeuoutly to be wish\'d. To dye to sleepe,\r\nTo sleepe, perchance to Dreame; I, there\'s the rub,\r\nFor in that sleepe of death, what dreames may come,\r\nWhen we haue shuffel\'d off this mortall coile,\r\nMust giue vs pawse. There\'s the respect\r\nThat makes Calamity of so long life:\r\nFor who would beare the Whips and Scornes of time,\r\nThe Oppressors wrong, the poore mans Contumely,\r\nThe pangs of dispriz\'d Loue, the Lawes delay,\r\nThe insolence of Office, and the Spurnes\r\nThat patient merit of the vnworthy takes,\r\nWhen he himselfe might his Quietus make\r\nWith a bare Bodkin? Who would these Fardles beare\r\nTo grunt and sweat vnder a weary life,\r\nBut that the dread of something after death,\r\nThe vndiscouered Countrey, from whose Borne\r\nNo Traueller returnes, Puzels the will,\r\nAnd makes vs rather beare those illes we haue,\r\nThen flye to others that we know not of.\r\nThus Conscience does make Cowards of vs all,\r\nAnd thus the Natiue hew of Resolution\r\nIs sicklied o\'re, with the pale cast of Thought,\r\nAnd enterprizes of great pith and moment,\r\nWith this regard their Currants turne away,\r\nAnd loose the name of Action. Soft you now,\r\nThe faire Ophelia? Nimph, in thy Orizons\r\nBe all my sinnes remembred\r\n\r\n Ophe. Good my Lord,\r\nHow does your Honor for this many a day?\r\n Ham. I humbly thanke you: well, well, well\r\n\r\n Ophe. My Lord, I haue Remembrances of yours,\r\nThat I haue longed long to re-deliuer.\r\nI pray you now, receiue them\r\n\r\n Ham. No, no, I neuer gaue you ought\r\n\r\n Ophe. My honor\'d Lord, I know right well you did,\r\nAnd with them words of so sweet breath compos\'d,\r\nAs made the things more rich, then perfume left:\r\nTake these againe, for to the Noble minde\r\nRich gifts wax poore, when giuers proue vnkinde.\r\nThere my Lord\r\n\r\n Ham. Ha, ha: Are you honest?\r\n Ophe. My Lord\r\n\r\n Ham. Are you faire?\r\n Ophe. What meanes your Lordship?\r\n Ham. That if you be honest and faire, your Honesty\r\nshould admit no discourse to your Beautie\r\n\r\n Ophe. Could Beautie my Lord, haue better Comerce\r\nthen your Honestie?\r\n Ham. I trulie: for the power of Beautie, will sooner\r\ntransforme Honestie from what is, to a Bawd, then the\r\nforce of Honestie can translate Beautie into his likenesse.\r\nThis was sometime a Paradox, but now the time giues it\r\nproofe. I did loue you once\r\n\r\n Ophe. Indeed my Lord, you made me beleeue so\r\n\r\n Ham. You should not haue beleeued me. For vertue\r\ncannot so innocculate our old stocke, but we shall rellish\r\nof it. I loued you not\r\n\r\n Ophe. I was the more deceiued\r\n\r\n Ham. Get thee to a Nunnerie. Why would\'st thou\r\nbe a breeder of Sinners? I am my selfe indifferent honest,\r\nbut yet I could accuse me of such things, that it were better\r\nmy Mother had not borne me. I am very prowd, reuengefull,\r\nAmbitious, with more offences at my becke,\r\nthen I haue thoughts to put them in imagination, to giue\r\nthem shape, or time to acte them in. What should such\r\nFellowes as I do, crawling betweene Heauen and Earth.\r\nWe are arrant Knaues all, beleeue none of vs. Goe thy\r\nwayes to a Nunnery. Where\'s your Father?\r\n Ophe. At home, my Lord\r\n\r\n Ham. Let the doores be shut vpon him, that he may\r\nplay the Foole no way, but in\'s owne house. Farewell\r\n\r\n Ophe. O helpe him, you sweet Heauens\r\n\r\n Ham. If thou doest Marry, Ile giue thee this Plague\r\nfor thy Dowrie. Be thou as chast as Ice, as pure as Snow,\r\nthou shalt not escape Calumny. Get thee to a Nunnery.\r\nGo, Farewell. Or if thou wilt needs Marry, marry a fool:\r\nfor Wise men know well enough, what monsters you\r\nmake of them. To a Nunnery go, and quickly too. Farwell\r\n\r\n Ophe. O heauenly Powers, restore him\r\n\r\n Ham. I haue heard of your pratlings too wel enough.\r\nGod has giuen you one pace, and you make your selfe another:\r\nyou gidge, you amble, and you lispe, and nickname\r\nGods creatures, and make your Wantonnesse, your Ignorance.\r\nGo too, Ile no more on\'t, it hath made me mad.\r\nI say, we will haue no more Marriages. Those that are\r\nmarried already, all but one shall liue, the rest shall keep\r\nas they are. To a Nunnery, go.\r\n\r\nExit Hamlet.\r\n\r\n Ophe. O what a Noble minde is heere o\'re-throwne?\r\nThe Courtiers, Soldiers, Schollers: Eye, tongue, sword,\r\nTh\' expectansie and Rose of the faire State,\r\nThe glasse of Fashion, and the mould of Forme,\r\nTh\' obseru\'d of all Obseruers, quite, quite downe.\r\nHaue I of Ladies most deiect and wretched,\r\nThat suck\'d the Honie of his Musicke Vowes:\r\nNow see that Noble, and most Soueraigne Reason,\r\nLike sweet Bels iangled out of tune, and harsh,\r\nThat vnmatch\'d Forme and Feature of blowne youth,\r\nBlasted with extasie. Oh woe is me,\r\nT\'haue seene what I haue seene: see what I see.\r\nEnter King, and Polonius.\r\n\r\n King. Loue? His affections do not that way tend,\r\nNor what he spake, though it lack\'d Forme a little,\r\nWas not like Madnesse. There\'s something in his soule?\r\nO\'re which his Melancholly sits on brood,\r\nAnd I do doubt the hatch, and the disclose\r\nWill be some danger, which to preuent\r\nI haue in quicke determination\r\nThus set it downe. He shall with speed to England\r\nFor the demand of our neglected Tribute:\r\nHaply the Seas and Countries different\r\nWith variable Obiects, shall expell\r\nThis something setled matter in his heart:\r\nWhereon his Braines still beating, puts him thus\r\nFrom fashion of himselfe. What thinke you on\'t?\r\n Pol. It shall do well. But yet do I beleeue\r\nThe Origin and Commencement of this greefe\r\nSprung from neglected loue. How now Ophelia?\r\nYou neede not tell vs, what Lord Hamlet saide,\r\nWe heard it all. My Lord, do as you please,\r\nBut if you hold it fit after the Play,\r\nLet his Queene Mother all alone intreat him\r\nTo shew his Greefes: let her be round with him,\r\nAnd Ile be plac\'d so, please you in the eare\r\nOf all their Conference. If she finde him not,\r\nTo England send him: Or confine him where\r\nYour wisedome best shall thinke\r\n\r\n King. It shall be so:\r\nMadnesse in great Ones, must not vnwatch\'d go.\r\n\r\nExeunt.\r\n\r\nEnter Hamlet, and two or three of the Players.\r\n\r\n Ham. Speake the Speech I pray you, as I pronounc\'d\r\nit to you trippingly on the Tongue: But if you mouth it,\r\nas many of your Players do, I had as liue the Town-Cryer\r\nhad spoke my Lines: Nor do not saw the Ayre too much\r\nyour hand thus, but vse all gently; for in the verie Torrent,\r\nTempest, and (as I say) the Whirle-winde of\r\nPassion, you must acquire and beget a Temperance that\r\nmay giue it Smoothnesse. O it offends mee to the Soule,\r\nto see a robustious Pery-wig-pated Fellow, teare a Passion\r\nto tatters, to verie ragges, to split the eares of the\r\nGroundlings: who (for the most part) are capeable of\r\nnothing, but inexplicable dumbe shewes, & noise: I could\r\nhaue such a Fellow whipt for o\'re-doing Termagant: it\r\noutHerod\'s Herod. Pray you auoid it\r\n\r\n Player. I warrant your Honor\r\n\r\n Ham. Be not too tame neyther: but let your owne\r\nDiscretion be your Tutor. Sute the Action to the Word,\r\nthe Word to the Action, with this speciall obseruance:\r\nThat you ore-stop not the modestie of Nature; for any\r\nthing so ouer-done, is fro[m] the purpose of Playing, whose\r\nend both at the first and now, was and is, to hold as \'twer\r\nthe Mirrour vp to Nature; to shew Vertue her owne\r\nFeature, Scorne her owne Image, and the verie Age and\r\nBodie of the Time, his forme and pressure. Now, this\r\nouer-done, or come tardie off, though it make the vnskilfull\r\nlaugh, cannot but make the Iudicious greeue; The\r\ncensure of the which One, must in your allowance o\'reway\r\na whole Theater of Others. Oh, there bee Players\r\nthat I haue seene Play, and heard others praise, and that\r\nhighly (not to speake it prophanely) that neyther hauing\r\nthe accent of Christians, nor the gate of Christian, Pagan,\r\nor Norman, haue so strutted and bellowed, that I haue\r\nthought some of Natures Iouerney-men had made men,\r\nand not made them well, they imitated Humanity so abhominably\r\n\r\n Play. I hope we haue reform\'d that indifferently with\r\nvs, Sir\r\n\r\n Ham. O reforme it altogether. And let those that\r\nplay your Clownes, speake no more then is set downe for\r\nthem. For there be of them, that will themselues laugh,\r\nto set on some quantitie of barren Spectators to laugh\r\ntoo, though in the meane time, some necessary Question\r\nof the Play be then to be considered: that\'s Villanous, &\r\nshewes a most pittifull Ambition in the Foole that vses\r\nit. Go make you readie.\r\n\r\nExit Players.\r\n\r\nEnter Polonius, Rosincrance, and Guildensterne.\r\n\r\nHow now my Lord,\r\nWill the King heare this peece of Worke?\r\n Pol. And the Queene too, and that presently\r\n\r\n Ham. Bid the Players make hast.\r\n\r\nExit Polonius.\r\n\r\nWill you two helpe to hasten them?\r\n Both. We will my Lord.\r\n\r\nExeunt.\r\n\r\nEnter Horatio.\r\n\r\n Ham. What hoa, Horatio?\r\n Hora. Heere sweet Lord, at your Seruice\r\n\r\n Ham. Horatio, thou art eene as iust a man\r\nAs ere my Conuersation coap\'d withall\r\n\r\n Hora. O my deere Lord\r\n\r\n Ham. Nay, do not thinke I flatter:\r\nFor what aduancement may I hope from thee,\r\nThat no Reuennew hast, but thy good spirits\r\nTo feed & cloath thee. Why shold the poor be flatter\'d?\r\nNo, let the Candied tongue, like absurd pompe,\r\nAnd crooke the pregnant Hindges of the knee,\r\nWhere thrift may follow faining? Dost thou heare,\r\nSince my deere Soule was Mistris of my choyse,\r\nAnd could of men distinguish, her election\r\nHath seal\'d thee for her selfe. For thou hast bene\r\nAs one in suffering all, that suffers nothing.\r\nA man that Fortunes buffets, and Rewards\r\nHath \'tane with equall Thankes. And blest are those,\r\nWhose Blood and Iudgement are so well co-mingled,\r\nThat they are not a Pipe for Fortunes finger.\r\nTo sound what stop she please. Giue me that man,\r\nThat is not Passions Slaue, and I will weare him\r\nIn my hearts Core. I, in my Heart of heart,\r\nAs I do thee. Something too much of this.\r\nThere is a Play to night to before the King.\r\nOne Scoene of it comes neere the Circumstance\r\nWhich I haue told thee, of my Fathers death.\r\nI prythee, when thou see\'st that Acte a-foot,\r\nEuen with the verie Comment of my Soule\r\nObserue mine Vnkle: If his occulted guilt,\r\nDo not it selfe vnkennell in one speech,\r\nIt is a damned Ghost that we haue seene:\r\nAnd my Imaginations are as foule\r\nAs Vulcans Stythe. Giue him needfull note,\r\nFor I mine eyes will riuet to his Face:\r\nAnd after we will both our iudgements ioyne,\r\nTo censure of his seeming\r\n\r\n Hora. Well my Lord.\r\nIf he steale ought the whil\'st this Play is Playing,\r\nAnd scape detecting, I will pay the Theft.\r\nEnter King, Queene, Polonius, Ophelia, Rosincrance,\r\nGuildensterne, and\r\nother Lords attendant with his Guard carrying Torches. Danish\r\nMarch. Sound\r\na Flourish.\r\n\r\n Ham. They are comming to the Play: I must be idle.\r\nGet you a place\r\n\r\n King. How fares our Cosin Hamlet?\r\n Ham. Excellent Ifaith, of the Camelions dish: I eate\r\nthe Ayre promise-cramm\'d, you cannot feed Capons so\r\n\r\n King. I haue nothing with this answer Hamlet, these\r\nwords are not mine\r\n\r\n Ham. No, nor mine. Now my Lord, you plaid once\r\ni\'th\' Vniuersity, you say?\r\n Polon. That I did my Lord, and was accounted a good\r\nActor\r\n\r\n Ham. And what did you enact?\r\n Pol. I did enact Iulius Caesar, I was kill\'d i\'th\' Capitol:\r\nBrutus kill\'d me\r\n\r\n Ham. It was a bruite part of him, to kill so Capitall a\r\nCalfe there. Be the Players ready?\r\n Rosin. I my Lord, they stay vpon your patience\r\n\r\n Qu. Come hither my good Hamlet, sit by me\r\n\r\n Ha. No good Mother, here\'s Mettle more attractiue\r\n\r\n Pol. Oh ho, do you marke that?\r\n Ham. Ladie, shall I lye in your Lap?\r\n Ophe. No my Lord\r\n\r\n Ham. I meane, my Head vpon your Lap?\r\n Ophe. I my Lord\r\n\r\n Ham. Do you thinke I meant Country matters?\r\n Ophe. I thinke nothing, my Lord\r\n\r\n Ham. That\'s a faire thought to ly betweene Maids legs\r\n Ophe. What is my Lord?\r\n Ham. Nothing\r\n\r\n Ophe. You are merrie, my Lord?\r\n Ham. Who I?\r\n Ophe. I my Lord\r\n\r\n Ham. Oh God, your onely Iigge-maker: what should\r\na man do, but be merrie. For looke you how cheerefully\r\nmy Mother lookes, and my Father dyed within\'s two\r\nHoures\r\n\r\n Ophe. Nay, \'tis twice two moneths, my Lord\r\n\r\n Ham. So long? Nay then let the Diuel weare blacke,\r\nfor Ile haue a suite of Sables. Oh Heauens! dye two moneths\r\nago, and not forgotten yet? Then there\'s hope, a\r\ngreat mans Memorie, may out-liue his life halfe a yeare:\r\nBut byrlady he must builde Churches then: or else shall\r\nhe suffer not thinking on, with the Hoby-horsse, whose\r\nEpitaph is, For o, For o, the Hoby-horse is forgot.\r\n\r\nHoboyes play. The dumbe shew enters.\r\n\r\nEnter a King and Queene, very louingly; the Queene embracing\r\nhim. She\r\nkneeles, and makes shew of Protestation vnto him. He takes her\r\nvp, and\r\ndeclines his head vpon her neck. Layes him downe vpon a Banke\r\nof Flowers.\r\nShe seeing him a-sleepe, leaues him. Anon comes in a Fellow,\r\ntakes off his\r\nCrowne, kisses it, and powres poyson in the Kings eares, and\r\nExits. The\r\nQueene returnes, findes the King dead, and makes passionate\r\nAction. The\r\nPoysoner, with some two or three Mutes comes in againe, seeming\r\nto lament\r\nwith her. The dead body is carried away: The Poysoner Wooes the\r\nQueene with\r\nGifts, she seemes loath and vnwilling awhile, but in the end,\r\naccepts his\r\nloue.\r\n\r\nExeunt.\r\n\r\n Ophe. What meanes this, my Lord?\r\n Ham. Marry this is Miching Malicho, that meanes\r\nMischeefe\r\n\r\n Ophe. Belike this shew imports the Argument of the\r\nPlay?\r\n Ham. We shall know by these Fellowes: the Players\r\ncannot keepe counsell, they\'l tell all\r\n\r\n Ophe. Will they tell vs what this shew meant?\r\n Ham. I, or any shew that you\'l shew him. Bee not\r\nyou asham\'d to shew, hee\'l not shame to tell you what it\r\nmeanes\r\n\r\n Ophe. You are naught, you are naught, Ile marke the\r\nPlay.\r\nEnter Prologue.\r\n\r\nFor vs, and for our Tragedie,\r\nHeere stooping to your Clemencie:\r\nWe begge your hearing Patientlie\r\n\r\n Ham. Is this a Prologue, or the Poesie of a Ring?\r\n Ophe. \'Tis briefe my Lord\r\n\r\n Ham. As Womans loue.\r\nEnter King and his Queene.\r\n\r\n King. Full thirtie times hath Phoebus Cart gon round,\r\nNeptunes salt Wash, and Tellus Orbed ground:\r\nAnd thirtie dozen Moones with borrowed sheene,\r\nAbout the World haue times twelue thirties beene,\r\nSince loue our hearts, and Hymen did our hands\r\nVnite comutuall, in most sacred Bands\r\n\r\n Bap. So many iournies may the Sunne and Moone\r\nMake vs againe count o\'re, ere loue be done.\r\nBut woe is me, you are so sicke of late,\r\nSo farre from cheere, and from your former state,\r\nThat I distrust you: yet though I distrust,\r\nDiscomfort you (my Lord) it nothing must:\r\nFor womens Feare and Loue, holds quantitie,\r\nIn neither ought, or in extremity:\r\nNow what my loue is, proofe hath made you know,\r\nAnd as my Loue is siz\'d, my Feare is so\r\n\r\n King. Faith I must leaue thee Loue, and shortly too:\r\nMy operant Powers my Functions leaue to do:\r\nAnd thou shalt liue in this faire world behinde,\r\nHonour\'d, belou\'d, and haply, one as kinde.\r\nFor Husband shalt thou-\r\n Bap. Oh confound the rest:\r\nSuch Loue, must needs be Treason in my brest:\r\nIn second Husband, let me be accurst,\r\nNone wed the second, but who kill\'d the first\r\n\r\n Ham. Wormwood, Wormwood\r\n\r\n Bapt. The instances that second Marriage moue,\r\nAre base respects of Thrift, but none of Loue.\r\nA second time, I kill my Husband dead,\r\nWhen second Husband kisses me in Bed\r\n\r\n King. I do beleeue you. Think what now you speak:\r\nBut what we do determine, oft we breake:\r\nPurpose is but the slaue to Memorie,\r\nOf violent Birth, but poore validitie:\r\nWhich now like Fruite vnripe stickes on the Tree,\r\nBut fall vnshaken, when they mellow bee.\r\nMost necessary \'tis, that we forget\r\nTo pay our selues, what to our selues is debt:\r\nWhat to our selues in passion we propose,\r\nThe passion ending, doth the purpose lose.\r\nThe violence of other Greefe or Ioy,\r\nTheir owne ennactors with themselues destroy:\r\nWhere Ioy most Reuels, Greefe doth most lament;\r\nGreefe ioyes, Ioy greeues on slender accident.\r\nThis world is not for aye, nor \'tis not strange\r\nThat euen our Loues should with our Fortunes change.\r\nFor \'tis a question left vs yet to proue,\r\nWhether Loue lead Fortune, or else Fortune Loue.\r\nThe great man downe, you marke his fauourites flies,\r\nThe poore aduanc\'d, makes Friends of Enemies:\r\nAnd hitherto doth Loue on Fortune tend,\r\nFor who not needs, shall neuer lacke a Frend:\r\nAnd who in want a hollow Friend doth try,\r\nDirectly seasons him his Enemie.\r\nBut orderly to end, where I begun,\r\nOur Willes and Fates do so contrary run,\r\nThat our Deuices still are ouerthrowne,\r\nOur thoughts are ours, their ends none of our owne.\r\nSo thinke thou wilt no second Husband wed.\r\nBut die thy thoughts, when thy first Lord is dead\r\n\r\n Bap. Nor Earth to giue me food, nor Heauen light,\r\nSport and repose locke from me day and night:\r\nEach opposite that blankes the face of ioy,\r\nMeet what I would haue well, and it destroy:\r\nBoth heere, and hence, pursue me lasting strife,\r\nIf once a Widdow, euer I be Wife\r\n\r\n Ham. If she should breake it now\r\n\r\n King. \'Tis deepely sworne:\r\nSweet, leaue me heere a while,\r\nMy spirits grow dull, and faine I would beguile\r\nThe tedious day with sleepe\r\n\r\n Qu. Sleepe rocke thy Braine,\r\n\r\nSleepes\r\n\r\nAnd neuer come mischance betweene vs twaine.\r\n\r\nExit\r\n\r\n Ham. Madam, how like you this Play?\r\n Qu. The Lady protests to much me thinkes\r\n\r\n Ham. Oh but shee\'l keepe her word\r\n\r\n King. Haue you heard the Argument, is there no Offence\r\nin\'t?\r\n Ham. No, no, they do but iest, poyson in iest, no Offence\r\ni\'th\' world\r\n\r\n King. What do you call the Play?\r\n Ham. The Mouse-trap: Marry how? Tropically:\r\nThis Play is the Image of a murder done in Vienna: Gonzago\r\nis the Dukes name, his wife Baptista: you shall see\r\nanon: \'tis a knauish peece of worke: But what o\'that?\r\nYour Maiestie, and wee that haue free soules, it touches\r\nvs not: let the gall\'d iade winch: our withers are vnrung.\r\nEnter Lucianus.\r\n\r\nThis is one Lucianus nephew to the King\r\n\r\n Ophe. You are a good Chorus, my Lord\r\n\r\n Ham. I could interpret betweene you and your loue:\r\nif I could see the Puppets dallying\r\n\r\n Ophe. You are keene my Lord, you are keene\r\n\r\n Ham. It would cost you a groaning, to take off my\r\nedge\r\n\r\n Ophe. Still better and worse\r\n\r\n Ham. So you mistake Husbands.\r\nBegin Murderer. Pox, leaue thy damnable Faces, and\r\nbegin. Come, the croaking Rauen doth bellow for Reuenge\r\n\r\n Lucian. Thoughts blacke, hands apt,\r\nDrugges fit, and Time agreeing:\r\nConfederate season, else, no Creature seeing:\r\nThou mixture ranke, of Midnight Weeds collected,\r\nWith Hecats Ban, thrice blasted, thrice infected,\r\nThy naturall Magicke, and dire propertie,\r\nOn wholsome life, vsurpe immediately.\r\n\r\nPowres the poyson in his eares.\r\n\r\n Ham. He poysons him i\'th\' Garden for\'s estate: His\r\nname\'s Gonzago: the Story is extant and writ in choyce\r\nItalian. You shall see anon how the Murtherer gets the\r\nloue of Gonzago\'s wife\r\n\r\n Ophe. The King rises\r\n\r\n Ham. What, frighted with false fire\r\n\r\n Qu. How fares my Lord?\r\n Pol. Giue o\'re the Play\r\n\r\n King. Giue me some Light. Away\r\n\r\n All. Lights, Lights, Lights.\r\n\r\nExeunt.\r\n\r\nManet Hamlet & Horatio.\r\n\r\n Ham. Why let the strucken Deere go weepe,\r\nThe Hart vngalled play:\r\nFor some must watch, while some must sleepe;\r\nSo runnes the world away.\r\nWould not this Sir, and a Forrest of Feathers, if the rest of\r\nmy Fortunes turne Turke with me; with two Prouinciall\r\nRoses on my rac\'d Shooes, get me a Fellowship in a crie\r\nof Players sir\r\n\r\n Hor. Halfe a share\r\n\r\n Ham. A whole one I,\r\nFor thou dost know: Oh Damon deere,\r\nThis Realme dismantled was of Ioue himselfe,\r\nAnd now reignes heere.\r\nA verie verie Paiocke\r\n\r\n Hora. You might haue Rim\'d\r\n\r\n Ham. Oh good Horatio, Ile take the Ghosts word for\r\na thousand pound. Did\'st perceiue?\r\n Hora. Verie well my Lord\r\n\r\n Ham. Vpon the talke of the poysoning?\r\n Hora. I did verie well note him.\r\nEnter Rosincrance and Guildensterne.\r\n\r\n Ham. Oh, ha? Come some Musick. Come y Recorders:\r\nFor if the King like not the Comedie,\r\nWhy then belike he likes it not perdie.\r\nCome some Musicke\r\n\r\n Guild. Good my Lord, vouchsafe me a word with you\r\n\r\n Ham. Sir, a whole History\r\n\r\n Guild. The King, sir\r\n\r\n Ham. I sir, what of him?\r\n Guild. Is in his retyrement, maruellous distemper\'d\r\n\r\n Ham. With drinke Sir?\r\n Guild. No my Lord, rather with choller\r\n\r\n Ham. Your wisedome should shew it selfe more richer,\r\nto signifie this to his Doctor: for for me to put him\r\nto his Purgation, would perhaps plundge him into farre\r\nmore Choller\r\n\r\n Guild. Good my Lord put your discourse into some\r\nframe, and start not so wildely from my affayre\r\n\r\n Ham. I am tame Sir, pronounce\r\n\r\n Guild. The Queene your Mother, in most great affliction\r\nof spirit, hath sent me to you\r\n\r\n Ham. You are welcome\r\n\r\n Guild. Nay, good my Lord, this courtesie is not of\r\nthe right breed. If it shall please you to make me a wholsome\r\nanswer, I will doe your Mothers command\'ment:\r\nif not, your pardon, and my returne shall bee the end of\r\nmy Businesse\r\n\r\n Ham. Sir, I cannot\r\n\r\n Guild. What, my Lord?\r\n Ham. Make you a wholsome answere: my wits diseas\'d.\r\nBut sir, such answers as I can make, you shal command:\r\nor rather you say, my Mother: therfore no more\r\nbut to the matter. My Mother you say\r\n\r\n Rosin. Then thus she sayes: your behauior hath stroke\r\nher into amazement, and admiration\r\n\r\n Ham. Oh wonderfull Sonne, that can so astonish a\r\nMother. But is there no sequell at the heeles of this Mothers\r\nadmiration?\r\n Rosin. She desires to speake with you in her Closset,\r\nere you go to bed\r\n\r\n Ham. We shall obey, were she ten times our Mother.\r\nHaue you any further Trade with vs?\r\n Rosin. My Lord, you once did loue me\r\n\r\n Ham. So I do still, by these pickers and stealers\r\n\r\n Rosin. Good my Lord, what is your cause of distemper?\r\nYou do freely barre the doore of your owne Libertie,\r\nif you deny your greefes to your Friend\r\n\r\n Ham. Sir I lacke Aduancement\r\n\r\n Rosin. How can that be, when you haue the voyce of\r\nthe King himselfe, for your Succession in Denmarke?\r\n Ham. I, but while the grasse growes, the Prouerbe is\r\nsomething musty.\r\nEnter one with a Recorder.\r\n\r\nO the Recorder. Let me see, to withdraw with you, why\r\ndo you go about to recouer the winde of mee, as if you\r\nwould driue me into a toyle?\r\n Guild. O my Lord, if my Dutie be too bold, my loue\r\nis too vnmannerly\r\n\r\n Ham. I do not well vnderstand that. Will you play\r\nvpon this Pipe?\r\n Guild. My Lord, I cannot\r\n\r\n Ham. I pray you\r\n\r\n Guild. Beleeue me, I cannot\r\n\r\n Ham. I do beseech you\r\n\r\n Guild. I know no touch of it, my Lord\r\n\r\n Ham. \'Tis as easie as lying: gouerne these Ventiges\r\nwith your finger and thumbe, giue it breath with your\r\nmouth, and it will discourse most excellent Musicke.\r\nLooke you, these are the stoppes\r\n\r\n Guild. But these cannot I command to any vtterance\r\nof hermony, I haue not the skill\r\n\r\n Ham. Why looke you now, how vnworthy a thing\r\nyou make of me: you would play vpon mee; you would\r\nseeme to know my stops: you would pluck out the heart\r\nof my Mysterie; you would sound mee from my lowest\r\nNote, to the top of my Compasse: and there is much Musicke,\r\nexcellent Voice, in this little Organe, yet cannot\r\nyou make it. Why do you thinke, that I am easier to bee\r\nplaid on, then a Pipe? Call me what Instrument you will,\r\nthough you can fret me, you cannot play vpon me. God\r\nblesse you Sir.\r\nEnter Polonius.\r\n\r\n Polon. My Lord; the Queene would speak with you,\r\nand presently\r\n\r\n Ham. Do you see that Clowd? that\'s almost in shape\r\nlike a Camell\r\n\r\n Polon. By\'th\' Masse, and it\'s like a Camell indeed\r\n\r\n Ham. Me thinkes it is like a Weazell\r\n\r\n Polon. It is back\'d like a Weazell\r\n\r\n Ham. Or like a Whale?\r\n Polon. Verie like a Whale\r\n\r\n Ham. Then will I come to my Mother, by and by:\r\nThey foole me to the top of my bent.\r\nI will come by and by\r\n\r\n Polon. I will say so.\r\nEnter.\r\n\r\n Ham. By and by, is easily said. Leaue me Friends:\r\n\'Tis now the verie witching time of night,\r\nWhen Churchyards yawne, and Hell it selfe breaths out\r\nContagion to this world. Now could I drink hot blood,\r\nAnd do such bitter businesse as the day\r\nWould quake to looke on. Soft now, to my Mother:\r\nOh Heart, loose not thy Nature; let not euer\r\nThe Soule of Nero, enter this firme bosome:\r\nLet me be cruell, not vnnaturall,\r\nI will speake Daggers to her, but vse none:\r\nMy Tongue and Soule in this be Hypocrites.\r\nHow in my words someuer she be shent,\r\nTo giue them Seales, neuer my Soule consent.\r\nEnter King, Rosincrance, and Guildensterne.\r\n\r\n King. I like him not, nor stands it safe with vs,\r\nTo let his madnesse range. Therefore prepare you,\r\nI your Commission will forthwith dispatch,\r\nAnd he to England shall along with you:\r\nThe termes of our estate, may not endure\r\nHazard so dangerous as doth hourely grow\r\nOut of his Lunacies\r\n\r\n Guild. We will our selues prouide:\r\nMost holie and Religious feare it is\r\nTo keepe those many many bodies safe\r\nThat liue and feede vpon your Maiestie\r\n\r\n Rosin. The single\r\nAnd peculiar life is bound\r\nWith all the strength and Armour of the minde,\r\nTo keepe it selfe from noyance: but much more,\r\nThat Spirit, vpon whose spirit depends and rests\r\nThe liues of many, the cease of Maiestie\r\nDies not alone; but like a Gulfe doth draw\r\nWhat\'s neere it, with it. It is a massie wheele\r\nFixt on the Somnet of the highest Mount.\r\nTo whose huge Spoakes, ten thousand lesser things\r\nAre mortiz\'d and adioyn\'d: which when it falles,\r\nEach small annexment, pettie consequence\r\nAttends the boystrous Ruine. Neuer alone\r\nDid the King sighe, but with a generall grone\r\n\r\n King. Arme you, I pray you to this speedie Voyage;\r\nFor we will Fetters put vpon this feare,\r\nWhich now goes too free-footed\r\n\r\n Both. We will haste vs.\r\n\r\nExeunt. Gent.\r\n\r\nEnter Polonius.\r\n\r\n Pol. My Lord, he\'s going to his Mothers Closset:\r\nBehinde the Arras Ile conuey my selfe\r\nTo heare the Processe. Ile warrant shee\'l tax him home,\r\nAnd as you said, and wisely was it said,\r\n\'Tis meete that some more audience then a Mother,\r\nSince Nature makes them partiall, should o\'re-heare\r\nThe speech of vantage. Fare you well my Liege,\r\nIle call vpon you ere you go to bed,\r\nAnd tell you what I know\r\n\r\n King. Thankes deere my Lord.\r\nOh my offence is ranke, it smels to heauen,\r\nIt hath the primall eldest curse vpon\'t,\r\nA Brothers murther. Pray can I not,\r\nThough inclination be as sharpe as will:\r\nMy stronger guilt, defeats my strong intent,\r\nAnd like a man to double businesse bound,\r\nI stand in pause where I shall first begin,\r\nAnd both neglect; what if this cursed hand\r\nWere thicker then it selfe with Brothers blood,\r\nIs there not Raine enough in the sweet Heauens\r\nTo wash it white as Snow? Whereto serues mercy,\r\nBut to confront the visage of Offence?\r\nAnd what\'s in Prayer, but this two-fold force,\r\nTo be fore-stalled ere we come to fall,\r\nOr pardon\'d being downe? Then Ile looke vp,\r\nMy fault is past. But oh, what forme of Prayer\r\nCan serue my turne? Forgiue me my foule Murther:\r\nThat cannot be, since I am still possest\r\nOf those effects for which I did the Murther.\r\nMy Crowne, mine owne Ambition, and my Queene:\r\nMay one be pardon\'d, and retaine th\' offence?\r\nIn the corrupted currants of this world,\r\nOffences gilded hand may shoue by Iustice,\r\nAnd oft \'tis seene, the wicked prize it selfe\r\nBuyes out the Law; but \'tis not so aboue,\r\nThere is no shuffling, there the Action lyes\r\nIn his true Nature, and we our selues compell\'d\r\nEuen to the teeth and forehead of our faults,\r\nTo giue in euidence. What then? What rests?\r\nTry what Repentance can. What can it not?\r\nYet what can it, when one cannot repent?\r\nOh wretched state! Oh bosome, blacke as death!\r\nOh limed soule, that strugling to be free,\r\nArt more ingag\'d: Helpe Angels, make assay:\r\nBow stubborne knees, and heart with strings of Steele,\r\nBe soft as sinewes of the new-borne Babe,\r\nAll may be well.\r\nEnter Hamlet.\r\n\r\n Ham. Now might I do it pat, now he is praying,\r\nAnd now Ile doo\'t, and so he goes to Heauen,\r\nAnd so am I reueng\'d: that would be scann\'d,\r\nA Villaine killes my Father, and for that\r\nI his foule Sonne, do this same Villaine send\r\nTo heauen. Oh this is hyre and Sallery, not Reuenge.\r\nHe tooke my Father grossely, full of bread,\r\nWith all his Crimes broad blowne, as fresh as May,\r\nAnd how his Audit stands, who knowes, saue Heauen:\r\nBut in our circumstance and course of thought\r\n\'Tis heauie with him: and am I then reueng\'d,\r\nTo take him in the purging of his Soule,\r\nWhen he is fit and season\'d for his passage? No.\r\nVp Sword, and know thou a more horrid hent\r\nWhen he is drunke asleepe: or in his Rage,\r\nOr in th\' incestuous pleasure of his bed,\r\nAt gaming, swearing, or about some acte\r\nThat ha\'s no rellish of Saluation in\'t,\r\nThen trip him, that his heeles may kicke at Heauen,\r\nAnd that his Soule may be as damn\'d and blacke\r\nAs Hell, whereto it goes. My Mother stayes,\r\nThis Physicke but prolongs thy sickly dayes.\r\nEnter.\r\n\r\n King. My words flye vp, my thoughts remain below,\r\nWords without thoughts, neuer to Heauen go.\r\nEnter.\r\n\r\nEnter Queene and Polonius.\r\n\r\n Pol. He will come straight:\r\nLooke you lay home to him,\r\nTell him his prankes haue been too broad to beare with,\r\nAnd that your Grace hath screen\'d, and stoode betweene\r\nMuch heate, and him. Ile silence me e\'ene heere:\r\nPray you be round with him\r\n\r\n Ham. within. Mother, mother, mother\r\n\r\n Qu. Ile warrant you, feare me not.\r\nWithdraw, I heare him coming.\r\nEnter Hamlet.\r\n\r\n Ham. Now Mother, what\'s the matter?\r\n Qu. Hamlet, thou hast thy Father much offended\r\n\r\n\r\n Ham. Mother, you haue my Father much offended\r\n\r\n Qu. Come, come, you answer with an idle tongue\r\n\r\n Ham. Go, go, you question with an idle tongue\r\n\r\n Qu. Why how now Hamlet?\r\n Ham. Whats the matter now?\r\n Qu. Haue you forgot me?\r\n Ham. No by the Rood, not so:\r\nYou are the Queene, your Husbands Brothers wife,\r\nBut would you were not so. You are my Mother\r\n\r\n Qu. Nay, then Ile set those to you that can speake\r\n\r\n Ham. Come, come, and sit you downe, you shall not\r\nboudge:\r\nYou go not till I set you vp a glasse,\r\nWhere you may see the inmost part of you?\r\n Qu. What wilt thou do? thou wilt not murther me?\r\nHelpe, helpe, hoa\r\n\r\n Pol. What hoa, helpe, helpe, helpe\r\n\r\n Ham. How now, a Rat? dead for a Ducate, dead\r\n\r\n Pol. Oh I am slaine.\r\n\r\nKilles Polonius\r\n\r\n Qu. Oh me, what hast thou done?\r\n Ham. Nay I know not, is it the King?\r\n Qu. Oh what a rash, and bloody deed is this?\r\n Ham. A bloody deed, almost as bad good Mother,\r\nAs kill a King, and marrie with his Brother\r\n\r\n Qu. As kill a King?\r\n Ham. I Lady, \'twas my word.\r\nThou wretched, rash, intruding foole farewell,\r\nI tooke thee for thy Betters, take thy Fortune,\r\nThou find\'st to be too busie, is some danger.\r\nLeaue wringing of your hands, peace, sit you downe,\r\nAnd let me wring your heart, for so I shall\r\nIf it be made of penetrable stuffe;\r\nIf damned Custome haue not braz\'d it so,\r\nThat it is proofe and bulwarke against Sense\r\n\r\n Qu. What haue I done, that thou dar\'st wag thy tong,\r\nIn noise so rude against me?\r\n Ham. Such an Act\r\nThat blurres the grace and blush of Modestie,\r\nCals Vertue Hypocrite, takes off the Rose\r\nFrom the faire forehead of an innocent loue,\r\nAnd makes a blister there. Makes marriage vowes\r\nAs false as Dicers Oathes. Oh such a deed,\r\nAs from the body of Contraction pluckes\r\nThe very soule, and sweete Religion makes\r\nA rapsidie of words. Heauens face doth glow,\r\nYea this solidity and compound masse,\r\nWith tristfull visage as against the doome,\r\nIs thought-sicke at the act\r\n\r\n Qu. Aye me; what act, that roares so lowd, & thunders\r\nin the Index\r\n\r\n Ham. Looke heere vpon this Picture, and on this,\r\nThe counterfet presentment of two Brothers:\r\nSee what a grace was seated on his Brow,\r\nHyperions curles, the front of Ioue himselfe,\r\nAn eye like Mars, to threaten or command\r\nA Station, like the Herald Mercurie\r\nNew lighted on a heauen-kissing hill:\r\nA Combination, and a forme indeed,\r\nWhere euery God did seeme to set his Seale,\r\nTo giue the world assurance of a man.\r\nThis was your Husband. Looke you now what followes.\r\nHeere is your Husband, like a Mildew\'d eare\r\nBlasting his wholsom breath. Haue you eyes?\r\nCould you on this faire Mountaine leaue to feed,\r\nAnd batten on this Moore? Ha? Haue you eyes?\r\nYou cannot call it Loue: For at your age,\r\nThe hey-day in the blood is tame, it\'s humble,\r\nAnd waites vpon the Iudgement: and what Iudgement\r\nWould step from this, to this? What diuell was\'t,\r\nThat thus hath cousend you at hoodman-blinde?\r\nO Shame! where is thy Blush? Rebellious Hell,\r\nIf thou canst mutine in a Matrons bones,\r\nTo flaming youth, let Vertue be as waxe.\r\nAnd melt in her owne fire. Proclaime no shame,\r\nWhen the compulsiue Ardure giues the charge,\r\nSince Frost it selfe, as actiuely doth burne,\r\nAs Reason panders Will\r\n\r\n Qu. O Hamlet, speake no more.\r\nThou turn\'st mine eyes into my very soule,\r\nAnd there I see such blacke and grained spots,\r\nAs will not leaue their Tinct\r\n\r\n Ham. Nay, but to liue\r\nIn the ranke sweat of an enseamed bed,\r\nStew\'d in Corruption; honying and making loue\r\nOuer the nasty Stye\r\n\r\n Qu. Oh speake to me, no more,\r\nThese words like Daggers enter in mine eares.\r\nNo more sweet Hamlet\r\n\r\n Ham. A Murderer, and a Villaine:\r\nA Slaue, that is not twentieth part the tythe\r\nOf your precedent Lord. A vice of Kings,\r\nA Cutpurse of the Empire and the Rule.\r\nThat from a shelfe, the precious Diadem stole,\r\nAnd put it in his Pocket\r\n\r\n Qu. No more.\r\nEnter Ghost.\r\n\r\n Ham. A King of shreds and patches.\r\nSaue me; and houer o\'re me with your wings\r\nYou heauenly Guards. What would your gracious figure?\r\n Qu. Alas he\'s mad\r\n\r\n Ham. Do you not come your tardy Sonne to chide,\r\nThat laps\'t in Time and Passion, lets go by\r\nTh\' important acting of your dread command? Oh say\r\n\r\n Ghost. Do not forget: this Visitation\r\nIs but to whet thy almost blunted purpose.\r\nBut looke, Amazement on thy Mother sits;\r\nO step betweene her, and her fighting Soule,\r\nConceit in weakest bodies, strongest workes.\r\nSpeake to her Hamlet\r\n\r\n Ham. How is it with you Lady?\r\n Qu. Alas, how is\'t with you?\r\nThat you bend your eye on vacancie,\r\nAnd with their corporall ayre do hold discourse.\r\nForth at your eyes, your spirits wildely peepe,\r\nAnd as the sleeping Soldiours in th\' Alarme,\r\nYour bedded haire, like life in excrements,\r\nStart vp, and stand an end. Oh gentle Sonne,\r\nVpon the heate and flame of thy distemper\r\nSprinkle coole patience. Whereon do you looke?\r\n Ham. On him, on him: look you how pale he glares,\r\nHis forme and cause conioyn\'d, preaching to stones,\r\nWould make them capeable. Do not looke vpon me,\r\nLeast with this pitteous action you conuert\r\nMy sterne effects: then what I haue to do,\r\nWill want true colour; teares perchance for blood\r\n\r\n Qu. To who do you speake this?\r\n Ham. Do you see nothing there?\r\n Qu. Nothing at all, yet all that is I see\r\n\r\n Ham. Nor did you nothing heare?\r\n Qu. No, nothing but our selues\r\n\r\n Ham. Why look you there: looke how it steals away:\r\nMy Father in his habite, as he liued,\r\nLooke where he goes euen now out at the Portall.\r\nEnter.\r\n\r\n Qu. This is the very coynage of your Braine,\r\nThis bodilesse Creation extasie is very cunning in\r\n\r\n Ham. Extasie?\r\nMy Pulse as yours doth temperately keepe time,\r\nAnd makes as healthfull Musicke. It is not madnesse\r\nThat I haue vttered; bring me to the Test\r\nAnd I the matter will re-word: which madnesse\r\nWould gamboll from. Mother, for loue of Grace,\r\nLay not a flattering Vnction to your soule,\r\nThat not your trespasse, but my madnesse speakes:\r\nIt will but skin and filme the Vlcerous place,\r\nWhil\'st ranke Corruption mining all within,\r\nInfects vnseene. Confesse your selfe to Heauen,\r\nRepent what\'s past, auoyd what is to come,\r\nAnd do not spred the Compost on the Weedes,\r\nTo make them ranke. Forgiue me this my Vertue,\r\nFor in the fatnesse of this pursie times,\r\nVertue it selfe, of Vice must pardon begge,\r\nYea courb, and woe, for leaue to do him good\r\n\r\n Qu. Oh Hamlet,\r\nThou hast cleft my heart in twaine\r\n\r\n Ham. O throw away the worser part of it,\r\nAnd liue the purer with the other halfe.\r\nGood night, but go not to mine Vnkles bed,\r\nAssume a Vertue, if you haue it not, refraine to night,\r\nAnd that shall lend a kinde of easinesse\r\nTo the next abstinence. Once more goodnight,\r\nAnd when you are desirous to be blest,\r\nIle blessing begge of you. For this same Lord,\r\nI do repent: but heauen hath pleas\'d it so,\r\nTo punish me with this, and this with me,\r\nThat I must be their Scourge and Minister.\r\nI will bestow him, and will answer well\r\nThe death I gaue him: so againe, good night.\r\nI must be cruell, onely to be kinde;\r\nThus bad begins and worse remaines behinde\r\n\r\n Qu. What shall I do?\r\n Ham. Not this by no meanes that I bid you do:\r\nLet the blunt King tempt you againe to bed,\r\nPinch Wanton on your cheeke, call you his Mouse,\r\nAnd let him for a paire of reechie kisses,\r\nOr padling in your necke with his damn\'d Fingers,\r\nMake you to rauell all this matter out,\r\nThat I essentially am not in madnesse,\r\nBut made in craft. \'Twere good you let him know,\r\nFor who that\'s but a Queene, faire, sober, wise,\r\nWould from a Paddocke, from a Bat, a Gibbe,\r\nSuch deere concernings hide, Who would do so,\r\nNo in despight of Sense and Secrecie,\r\nVnpegge the Basket on the houses top:\r\nLet the Birds flye, and like the famous Ape\r\nTo try Conclusions in the Basket, creepe\r\nAnd breake your owne necke downe\r\n\r\n Qu. Be thou assur\'d, if words be made of breath,\r\nAnd breath of life: I haue no life to breath\r\nWhat thou hast saide to me\r\n\r\n Ham. I must to England, you know that?\r\n Qu. Alacke I had forgot: \'Tis so concluded on\r\n\r\n Ham. This man shall set me packing:\r\nIle lugge the Guts into the Neighbor roome,\r\nMother goodnight. Indeede this Counsellor\r\nIs now most still, most secret, and most graue,\r\nWho was in life, a foolish prating Knaue.\r\nCome sir, to draw toward an end with you.\r\nGood night Mother.\r\nExit Hamlet tugging in Polonius.\r\n\r\nEnter King.\r\n\r\n King. There\'s matters in these sighes.\r\nThese profound heaues\r\nYou must translate; Tis fit we vnderstand them.\r\nWhere is your Sonne?\r\n Qu. Ah my good Lord, what haue I seene to night?\r\n King. What Gertrude? How do\'s Hamlet?\r\n Qu. Mad as the Seas, and winde, when both contend\r\nWhich is the Mightier, in his lawlesse fit\r\nBehinde the Arras, hearing something stirre,\r\nHe whips his Rapier out, and cries a Rat, a Rat,\r\nAnd in his brainish apprehension killes\r\nThe vnseene good old man\r\n\r\n King. Oh heauy deed:\r\nIt had bin so with vs had we beene there:\r\nHis Liberty is full of threats to all,\r\nTo you your selfe, to vs, to euery one.\r\nAlas, how shall this bloody deede be answered?\r\nIt will be laide to vs, whose prouidence\r\nShould haue kept short, restrain\'d, and out of haunt,\r\nThis mad yong man. But so much was our loue,\r\nWe would not vnderstand what was most fit,\r\nBut like the Owner of a foule disease,\r\nTo keepe it from divulging, let\'s it feede\r\nEuen on the pith of life. Where is he gone?\r\n Qu. To draw apart the body he hath kild,\r\nO\'re whom his very madnesse like some Oare\r\nAmong a Minerall of Mettels base\r\nShewes it selfe pure. He weepes for what is done\r\n\r\n King. Oh Gertrude, come away:\r\nThe Sun no sooner shall the Mountaines touch,\r\nBut we will ship him hence, and this vilde deed,\r\nWe must with all our Maiesty and Skill\r\nBoth countenance, and excuse.\r\nEnter Ros. & Guild.\r\n\r\nHo Guildenstern:\r\nFriends both go ioyne you with some further ayde:\r\nHamlet in madnesse hath Polonius slaine,\r\nAnd from his Mother Clossets hath he drag\'d him.\r\nGo seeke him out, speake faire, and bring the body\r\nInto the Chappell. I pray you hast in this.\r\nExit Gent.\r\n\r\nCome Gertrude, wee\'l call vp our wisest friends,\r\nTo let them know both what we meane to do,\r\nAnd what\'s vntimely done. Oh come away,\r\nMy soule is full of discord and dismay.\r\n\r\nExeunt.\r\n\r\nEnter Hamlet.\r\n\r\n Ham. Safely stowed\r\n\r\n Gentlemen within. Hamlet, Lord Hamlet\r\n\r\n Ham. What noise? Who cals on Hamlet?\r\nOh heere they come.\r\nEnter Ros. and Guildensterne.\r\n\r\n Ro. What haue you done my Lord with the dead body?\r\n Ham. Compounded it with dust, whereto \'tis Kinne\r\n\r\n Rosin. Tell vs where \'tis, that we may take it thence,\r\nAnd beare it to the Chappell\r\n\r\n Ham. Do not beleeue it\r\n\r\n Rosin. Beleeue what?\r\n Ham. That I can keepe your counsell, and not mine\r\nowne. Besides, to be demanded of a Spundge, what replication\r\nshould be made by the Sonne of a King\r\n\r\n Rosin. Take you me for a Spundge, my Lord?\r\n Ham. I sir, that sokes vp the Kings Countenance, his\r\nRewards, his Authorities (but such Officers do the King\r\nbest seruice in the end. He keepes them like an Ape in\r\nthe corner of his iaw, first mouth\'d to be last swallowed,\r\nwhen he needes what you haue glean\'d, it is but squeezing\r\nyou, and Spundge you shall be dry againe\r\n\r\n Rosin. I vnderstand you not my Lord\r\n\r\n Ham. I am glad of it: a knauish speech sleepes in a\r\nfoolish eare\r\n\r\n Rosin. My Lord, you must tell vs where the body is,\r\nand go with vs to the King\r\n\r\n Ham. The body is with the King, but the King is not\r\nwith the body. The King, is a thing-\r\n Guild. A thing my Lord?\r\n Ham. Of nothing: bring me to him, hide Fox, and all\r\nafter.\r\n\r\nExeunt.\r\n\r\nEnter King.\r\n\r\n King. I haue sent to seeke him, and to find the bodie:\r\nHow dangerous is it that this man goes loose:\r\nYet must not we put the strong Law on him:\r\nHee\'s loued of the distracted multitude,\r\nWho like not in their iudgement, but their eyes:\r\nAnd where \'tis so, th\' Offenders scourge is weigh\'d\r\nBut neerer the offence: to beare all smooth, and euen,\r\nThis sodaine sending him away, must seeme\r\nDeliberate pause, diseases desperate growne,\r\nBy desperate appliance are releeued,\r\nOr not at all.\r\nEnter Rosincrane.\r\n\r\nHow now? What hath befalne?\r\n Rosin. Where the dead body is bestow\'d my Lord,\r\nWe cannot get from him\r\n\r\n King. But where is he?\r\n Rosin. Without my Lord, guarded to know your\r\npleasure\r\n\r\n King. Bring him before vs\r\n\r\n Rosin. Hoa, Guildensterne? Bring in my Lord.\r\nEnter Hamlet and Guildensterne.\r\n\r\n King. Now Hamlet, where\'s Polonius?\r\n Ham. At Supper\r\n\r\n King. At Supper? Where?\r\n Ham. Not where he eats, but where he is eaten, a certaine\r\nconuocation of wormes are e\'ne at him. Your worm\r\nis your onely Emperor for diet. We fat all creatures else\r\nto fat vs, and we fat our selfe for Magots. Your fat King,\r\nand your leane Begger is but variable seruice to dishes,\r\nbut to one Table that\'s the end\r\n\r\n King. What dost thou meane by this?\r\n Ham. Nothing but to shew you how a King may go\r\na Progresse through the guts of a Begger\r\n\r\n King. Where is Polonius\r\n\r\n Ham. In heauen, send thither to see. If your Messenger\r\nfinde him not there, seeke him i\'th other place your\r\nselfe: but indeed, if you finde him not this moneth, you\r\nshall nose him as you go vp the staires into the Lobby\r\n\r\n King. Go seeke him there\r\n\r\n Ham. He will stay till ye come\r\n\r\n K. Hamlet, this deed of thine, for thine especial safety\r\nWhich we do tender, as we deerely greeue\r\nFor that which thou hast done, must send thee hence\r\nWith fierie Quicknesse. Therefore prepare thy selfe,\r\nThe Barke is readie, and the winde at helpe,\r\nTh\' Associates tend, and euery thing at bent\r\nFor England\r\n\r\n Ham. For England?\r\n King. I Hamlet\r\n\r\n Ham. Good\r\n\r\n King. So is it, if thou knew\'st our purposes\r\n\r\n Ham. I see a Cherube that see\'s him: but come, for\r\nEngland. Farewell deere Mother\r\n\r\n King. Thy louing Father Hamlet\r\n\r\n Hamlet. My Mother: Father and Mother is man and\r\nwife: man & wife is one flesh, and so my mother. Come,\r\nfor England.\r\n\r\nExit\r\n\r\n King. Follow him at foote,\r\nTempt him with speed aboord:\r\nDelay it not, Ile haue him hence to night.\r\nAway, for euery thing is Seal\'d and done\r\nThat else leanes on th\' Affaire, pray you make hast.\r\nAnd England, if my loue thou holdst at ought,\r\nAs my great power thereof may giue thee sense,\r\nSince yet thy Cicatrice lookes raw and red\r\nAfter the Danish Sword, and thy free awe\r\nPayes homage to vs; thou maist not coldly set\r\nOur Soueraigne Processe, which imports at full\r\nBy Letters coniuring to that effect\r\nThe present death of Hamlet. Do it England,\r\nFor like the Hecticke in my blood he rages,\r\nAnd thou must cure me: Till I know \'tis done,\r\nHow ere my happes, my ioyes were ne\'re begun.\r\n\r\nExit\r\n\r\nEnter Fortinbras with an Armie.\r\n\r\n For. Go Captaine, from me greet the Danish King,\r\nTell him that by his license, Fortinbras\r\nClaimes the conueyance of a promis\'d March\r\nOuer his Kingdome. You know the Rendeuous:\r\nIf that his Maiesty would ought with vs,\r\nWe shall expresse our dutie in his eye,\r\nAnd let him know so\r\n\r\n Cap. I will doo\'t, my Lord\r\n\r\n For. Go safely on.\r\nEnter.\r\n\r\nEnter Queene and Horatio.\r\n\r\n Qu. I will not speake with her\r\n\r\n Hor. She is importunate, indeed distract, her moode\r\nwill needs be pittied\r\n\r\n Qu. What would she haue?\r\n Hor. She speakes much of her Father; saies she heares\r\nThere\'s trickes i\'th\' world, and hems, and beats her heart,\r\nSpurnes enuiously at Strawes, speakes things in doubt,\r\nThat carry but halfe sense: Her speech is nothing,\r\nYet the vnshaped vse of it doth moue\r\nThe hearers to Collection; they ayme at it,\r\nAnd botch the words vp fit to their owne thoughts,\r\nWhich as her winkes, and nods, and gestures yeeld them,\r\nIndeed would make one thinke there would be thought,\r\nThough nothing sure, yet much vnhappily\r\n\r\n Qu. \'Twere good she were spoken with,\r\nFor she may strew dangerous coniectures\r\nIn ill breeding minds. Let her come in.\r\nTo my sicke soule (as sinnes true Nature is)\r\nEach toy seemes Prologue, to some great amisse,\r\nSo full of Artlesse iealousie is guilt,\r\nIt spill\'s it selfe, in fearing to be spilt.\r\nEnter Ophelia distracted.\r\n\r\n Ophe. Where is the beauteous Maiesty of Denmark\r\n\r\n Qu. How now Ophelia?\r\n Ophe. How should I your true loue know from another one?\r\nBy his Cockle hat and staffe, and his Sandal shoone\r\n\r\n Qu. Alas sweet Lady: what imports this Song?\r\n Ophe. Say you? Nay pray you marke.\r\nHe is dead and gone Lady, he is dead and gone,\r\nAt his head a grasse-greene Turfe, at his heeles a stone.\r\nEnter King.\r\n\r\n Qu. Nay but Ophelia\r\n\r\n Ophe. Pray you marke.\r\nWhite his Shrow\'d as the Mountaine Snow\r\n\r\n Qu. Alas, looke heere my Lord\r\n\r\n Ophe. Larded with sweet Flowers:\r\nWhich bewept to the graue did not go,\r\nWith true-loue showres\r\n\r\n King. How do ye, pretty Lady?\r\n Ophe. Well, God dil\'d you. They say the Owle was\r\na Bakers daughter. Lord, wee know what we are, but\r\nknow not what we may be. God be at your Table\r\n\r\n King. Conceit vpon her Father\r\n\r\n Ophe. Pray you let\'s haue no words of this: but when\r\nthey aske you what it meanes, say you this:\r\nTo morrow is S[aint]. Valentines day, all in the morning betime,\r\nAnd I a Maid at your Window, to be your Valentine.\r\nThen vp he rose, & don\'d his clothes, & dupt the chamber dore,\r\nLet in the Maid, that out a Maid, neuer departed more\r\n\r\n King. Pretty Ophelia\r\n\r\n Ophe. Indeed la? without an oath Ile make an end ont.\r\nBy gis, and by S[aint]. Charity,\r\nAlacke, and fie for shame:\r\nYong men wil doo\'t, if they come too\'t,\r\nBy Cocke they are too blame.\r\nQuoth she before you tumbled me,\r\nYou promis\'d me to Wed:\r\nSo would I ha done by yonder Sunne,\r\nAnd thou hadst not come to my bed\r\n\r\n King. How long hath she bin thus?\r\n Ophe. I hope all will be well. We must bee patient,\r\nbut I cannot choose but weepe, to thinke they should\r\nlay him i\'th\' cold ground: My brother shall knowe of it,\r\nand so I thanke you for your good counsell. Come, my\r\nCoach: Goodnight Ladies: Goodnight sweet Ladies:\r\nGoodnight, goodnight.\r\nEnter.\r\n\r\n King. Follow her close,\r\nGiue her good watch I pray you:\r\nOh this is the poyson of deepe greefe, it springs\r\nAll from her Fathers death. Oh Gertrude, Gertrude,\r\nWhen sorrowes comes, they come not single spies,\r\nBut in Battalians. First, her Father slaine,\r\nNext your Sonne gone, and he most violent Author\r\nOf his owne iust remoue: the people muddied,\r\nThicke and vnwholsome in their thoughts, and whispers\r\nFor good Polonius death; and we haue done but greenly\r\nIn hugger mugger to interre him. Poore Ophelia\r\nDiuided from her selfe, and her faire Iudgement,\r\nWithout the which we are Pictures, or meere Beasts.\r\nLast, and as much containing as all these,\r\nHer Brother is in secret come from France,\r\nKeepes on his wonder, keepes himselfe in clouds,\r\nAnd wants not Buzzers to infect his eare\r\nWith pestilent Speeches of his Fathers death,\r\nWhere in necessitie of matter Beggard,\r\nWill nothing sticke our persons to Arraigne\r\nIn eare and eare. O my deere Gertrude, this,\r\nLike to a murdering Peece in many places,\r\nGiues me superfluous death.\r\n\r\nA Noise within.\r\n\r\nEnter a Messenger.\r\n\r\n Qu. Alacke, what noyse is this?\r\n King. Where are my Switzers?\r\nLet them guard the doore. What is the matter?\r\n Mes. Saue your selfe, my Lord.\r\nThe Ocean (ouer-peering of his List)\r\nEates not the Flats with more impittious haste\r\nThen young Laertes, in a Riotous head,\r\nOre-beares your Officers, the rabble call him Lord,\r\nAnd as the world were now but to begin,\r\nAntiquity forgot, Custome not knowne,\r\nThe Ratifiers and props of euery word,\r\nThey cry choose we? Laertes shall be King,\r\nCaps, hands, and tongues, applaud it to the clouds,\r\nLaertes shall be King, Laertes King\r\n\r\n Qu. How cheerefully on the false Traile they cry,\r\nOh this is Counter you false Danish Dogges.\r\n\r\nNoise within. Enter Laertes.\r\n\r\n King. The doores are broke\r\n\r\n Laer. Where is the King, sirs? Stand you all without\r\n\r\n All. No, let\'s come in\r\n\r\n Laer. I pray you giue me leaue\r\n\r\n Al. We will, we will\r\n\r\n Laer. I thanke you: Keepe the doore.\r\nOh thou vilde King, giue me my Father\r\n\r\n Qu. Calmely good Laertes\r\n\r\n Laer. That drop of blood, that calmes\r\nProclaimes me Bastard:\r\nCries Cuckold to my Father, brands the Harlot\r\nEuen heere betweene the chaste vnsmirched brow\r\nOf my true Mother\r\n\r\n King. What is the cause Laertes,\r\nThat thy Rebellion lookes so Gyant-like?\r\nLet him go Gertrude: Do not feare our person:\r\nThere\'s such Diuinity doth hedge a King,\r\nThat Treason can but peepe to what it would,\r\nActs little of his will. Tell me Laertes,\r\nWhy thou art thus Incenst? Let him go Gertrude.\r\nSpeake man\r\n\r\n Laer. Where\'s my Father?\r\n King. Dead\r\n\r\n Qu. But not by him\r\n\r\n King. Let him demand his fill\r\n\r\n Laer. How came he dead? Ile not be Iuggel\'d with.\r\nTo hell Allegeance: Vowes, to the blackest diuell.\r\nConscience and Grace, to the profoundest Pit.\r\nI dare Damnation: to this point I stand,\r\nThat both the worlds I giue to negligence,\r\nLet come what comes: onely Ile be reueng\'d\r\nMost throughly for my Father\r\n\r\n King. Who shall stay you?\r\n Laer. My Will, not all the world,\r\nAnd for my meanes, Ile husband them so well,\r\nThey shall go farre with little\r\n\r\n King. Good Laertes:\r\nIf you desire to know the certaintie\r\nOf your deere Fathers death, if writ in your reuenge,\r\nThat Soop-stake you will draw both Friend and Foe,\r\nWinner and Looser\r\n\r\n Laer. None but his Enemies\r\n\r\n King. Will you know them then\r\n\r\n La. To his good Friends, thus wide Ile ope my Armes:\r\nAnd like the kinde Life-rend\'ring Politician,\r\nRepast them with my blood\r\n\r\n King. Why now you speake\r\nLike a good Childe, and a true Gentleman.\r\nThat I am guiltlesse of your Fathers death,\r\nAnd am most sensible in greefe for it,\r\nIt shall as leuell to your Iudgement pierce\r\nAs day do\'s to your eye.\r\n\r\nA noise within. Let her come in.\r\n\r\nEnter Ophelia.\r\n\r\n Laer. How now? what noise is that?\r\nOh heate drie vp my Braines, teares seuen times salt,\r\nBurne out the Sence and Vertue of mine eye.\r\nBy Heauen, thy madnesse shall be payed by waight,\r\nTill our Scale turnes the beame. Oh Rose of May,\r\nDeere Maid, kinde Sister, sweet Ophelia:\r\nOh Heauens, is\'t possible, a yong Maids wits,\r\nShould be as mortall as an old mans life?\r\nNature is fine in Loue, and where \'tis fine,\r\nIt sends some precious instance of it selfe\r\nAfter the thing it loues\r\n\r\n Ophe. They bore him bare fac\'d on the Beer,\r\nHey non nony, nony, hey nony:\r\nAnd on his graue raines many a teare,\r\nFare you well my Doue\r\n\r\n Laer. Had\'st thou thy wits, and did\'st perswade Reuenge,\r\nit could not moue thus\r\n\r\n Ophe. You must sing downe a-downe, and you call\r\nhim a-downe-a. Oh, how the wheele becomes it? It is\r\nthe false Steward that stole his masters daughter\r\n\r\n Laer. This nothings more then matter\r\n\r\n Ophe. There\'s Rosemary, that\'s for Remembraunce.\r\nPray loue remember: and there is Paconcies, that\'s for\r\nThoughts\r\n\r\n Laer. A document in madnesse, thoughts & remembrance\r\nfitted\r\n\r\n Ophe. There\'s Fennell for you, and Columbines: ther\'s\r\nRew for you, and heere\'s some for me. Wee may call it\r\nHerbe-Grace a Sundaies: Oh you must weare your Rew\r\nwith a difference. There\'s a Daysie, I would giue you\r\nsome Violets, but they wither\'d all when my Father dyed:\r\nThey say, he made a good end;\r\nFor bonny sweet Robin is all my ioy\r\n\r\n Laer. Thought, and Affliction, Passion, Hell it selfe:\r\nShe turnes to Fauour, and to prettinesse\r\n\r\n Ophe. And will he not come againe,\r\nAnd will he not come againe:\r\nNo, no, he is dead, go to thy Death-bed,\r\nHe neuer wil come againe.\r\nHis Beard as white as Snow,\r\nAll Flaxen was his Pole:\r\nHe is gone, he is gone, and we cast away mone,\r\nGramercy on his Soule.\r\nAnd of all Christian Soules, I pray God.\r\nGod buy ye.\r\n\r\nExeunt. Ophelia\r\n\r\n Laer. Do you see this, you Gods?\r\n King. Laertes, I must common with your greefe,\r\nOr you deny me right: go but apart,\r\nMake choice of whom your wisest Friends you will,\r\nAnd they shall heare and iudge \'twixt you and me;\r\nIf by direct or by Colaterall hand\r\nThey finde vs touch\'d, we will our Kingdome giue,\r\nOur Crowne, our Life, and all that we call Ours\r\nTo you in satisfaction. But if not,\r\nBe you content to lend your patience to vs,\r\nAnd we shall ioyntly labour with your soule\r\nTo giue it due content\r\n\r\n Laer. Let this be so:\r\nHis meanes of death, his obscure buriall;\r\nNo Trophee, Sword, nor Hatchment o\'re his bones,\r\nNo Noble rite, nor formall ostentation,\r\nCry to be heard, as \'twere from Heauen to Earth,\r\nThat I must call in question\r\n\r\n King. So you shall:\r\nAnd where th\' offence is, let the great Axe fall.\r\nI pray you go with me.\r\n\r\nExeunt.\r\n\r\nEnter Horatio, with an Attendant.\r\n\r\n Hora. What are they that would speake with me?\r\n Ser. Saylors sir, they say they haue Letters for you\r\n\r\n Hor. Let them come in,\r\nI do not know from what part of the world\r\nI should be greeted, if not from Lord Hamlet.\r\nEnter Saylor.\r\n\r\n Say. God blesse you Sir\r\n\r\n Hor. Let him blesse thee too\r\n\r\n Say. Hee shall Sir, and\'t please him. There\'s a Letter\r\nfor you Sir: It comes from th\' Ambassadours that was\r\nbound for England, if your name be Horatio, as I am let\r\nto know it is.\r\n\r\nReads the Letter.\r\n\r\nHoratio, When thou shalt haue ouerlook\'d this, giue these\r\nFellowes some meanes to the King: They haue Letters\r\nfor him. Ere we were two dayes old at Sea, a Pyrate of very\r\nWarlicke appointment gaue vs Chace. Finding our selues too\r\nslow of Saile, we put on a compelled Valour. In the Grapple, I\r\nboorded them: On the instant they got cleare of our Shippe, so\r\nI alone became their Prisoner. They haue dealt with mee, like\r\nTheeues of Mercy, but they knew what they did. I am to doe\r\na good turne for them. Let the King haue the Letters I haue\r\nsent, and repaire thou to me with as much hast as thou wouldest\r\nflye death. I haue words to speake in your eare, will make thee\r\ndumbe, yet are they much too light for the bore of the Matter.\r\nThese good Fellowes will bring thee where I am. Rosincrance\r\nand Guildensterne, hold their course for England. Of them\r\nI haue much to tell thee, Farewell.\r\nHe that thou knowest thine,\r\nHamlet.\r\nCome, I will giue you way for these your Letters,\r\nAnd do\'t the speedier, that you may direct me\r\nTo him from whom you brought them.\r\nEnter.\r\n\r\nEnter King and Laertes.\r\n\r\n King. Now must your conscience my acquittance seal,\r\nAnd you must put me in your heart for Friend,\r\nSith you haue heard, and with a knowing eare,\r\nThat he which hath your Noble Father slaine,\r\nPursued my life\r\n\r\n Laer. It well appeares. But tell me,\r\nWhy you proceeded not against these feates,\r\nSo crimefull, and so Capitall in Nature,\r\nAs by your Safety, Wisedome, all things else,\r\nYou mainly were stirr\'d vp?\r\n King. O for two speciall Reasons,\r\nWhich may to you (perhaps) seeme much vnsinnowed,\r\nAnd yet to me they are strong. The Queen his Mother,\r\nLiues almost by his lookes: and for my selfe,\r\nMy Vertue or my Plague, be it either which,\r\nShe\'s so coniunctiue to my life, and soule;\r\nThat as the Starre moues not but in his Sphere,\r\nI could not but by her. The other Motiue,\r\nWhy to a publike count I might not go,\r\nIs the great loue the generall gender beare him,\r\nWho dipping all his Faults in their affection,\r\nWould like the Spring that turneth Wood to Stone,\r\nConuert his Gyues to Graces. So that my Arrowes\r\nToo slightly timbred for so loud a Winde,\r\nWould haue reuerted to my Bow againe,\r\nAnd not where I had arm\'d them\r\n\r\n Laer. And so haue I a Noble Father lost,\r\nA Sister driuen into desperate tearmes,\r\nWho was (if praises may go backe againe)\r\nStood Challenger on mount of all the Age\r\nFor her perfections. But my reuenge will come\r\n\r\n King. Breake not your sleepes for that,\r\nYou must not thinke\r\nThat we are made of stuffe, so flat, and dull,\r\nThat we can let our Beard be shooke with danger,\r\nAnd thinke it pastime. You shortly shall heare more,\r\nI lou\'d your Father, and we loue our Selfe,\r\nAnd that I hope will teach you to imagine-\r\nEnter a Messenger.\r\n\r\nHow now? What Newes?\r\n Mes. Letters my Lord from Hamlet, This to your\r\nMaiesty: this to the Queene\r\n\r\n King. From Hamlet? Who brought them?\r\n Mes. Saylors my Lord they say, I saw them not:\r\nThey were giuen me by Claudio, he receiu\'d them\r\n\r\n King. Laertes you shall heare them:\r\nLeaue vs.\r\n\r\nExit Messenger\r\n\r\nHigh and Mighty, you shall know I am set naked on your\r\nKingdome. To morrow shall I begge leaue to see your Kingly\r\nEyes. When I shall (first asking your Pardon thereunto) recount\r\nth\' Occasions of my sodaine, and more strange returne.\r\nHamlet.\r\nWhat should this meane? Are all the rest come backe?\r\nOr is it some abuse? Or no such thing?\r\n Laer. Know you the hand?\r\n Kin. \'Tis Hamlets Character, naked and in a Postscript\r\nhere he sayes alone: Can you aduise me?\r\n Laer. I\'m lost in it my Lord; but let him come,\r\nIt warmes the very sicknesse in my heart,\r\nThat I shall liue and tell him to his teeth;\r\nThus diddest thou\r\n\r\n Kin. If it be so Laertes, as how should it be so:\r\nHow otherwise will you be rul\'d by me?\r\n Laer. If so you\'l not o\'rerule me to a peace\r\n\r\n Kin. To thine owne peace: if he be now return\'d,\r\nAs checking at his Voyage, and that he meanes\r\nNo more to vndertake it; I will worke him\r\nTo an exployt now ripe in my Deuice,\r\nVnder the which he shall not choose but fall;\r\nAnd for his death no winde of blame shall breath,\r\nBut euen his Mother shall vncharge the practice,\r\nAnd call it accident: Some two Monthes hence\r\nHere was a Gentleman of Normandy,\r\nI\'ue seene my selfe, and seru\'d against the French,\r\nAnd they ran well on Horsebacke; but this Gallant\r\nHad witchcraft in\'t; he grew into his Seat,\r\nAnd to such wondrous doing brought his Horse,\r\nAs had he beene encorps\'t and demy-Natur\'d\r\nWith the braue Beast, so farre he past my thought,\r\nThat I in forgery of shapes and trickes,\r\nCome short of what he did\r\n\r\n Laer. A Norman was\'t?\r\n Kin. A Norman\r\n\r\n Laer. Vpon my life Lamound\r\n\r\n Kin. The very same\r\n\r\n Laer. I know him well, he is the Brooch indeed,\r\nAnd Iemme of all our Nation\r\n\r\n Kin. Hee mad confession of you,\r\nAnd gaue you such a Masterly report,\r\nFor Art and exercise in your defence;\r\nAnd for your Rapier most especiall,\r\nThat he cryed out, t\'would be a sight indeed,\r\nIf one could match you Sir. This report of his\r\nDid Hamlet so envenom with his Enuy,\r\nThat he could nothing doe but wish and begge,\r\nYour sodaine comming ore to play with him;\r\nNow out of this\r\n\r\n Laer. Why out of this, my Lord?\r\n Kin. Laertes was your Father deare to you?\r\nOr are you like the painting of a sorrow,\r\nA face without a heart?\r\n Laer. Why aske you this?\r\n Kin. Not that I thinke you did not loue your Father,\r\nBut that I know Loue is begun by Time:\r\nAnd that I see in passages of proofe,\r\nTime qualifies the sparke and fire of it:\r\nHamlet comes backe: what would you vndertake,\r\nTo show your selfe your Fathers sonne indeed,\r\nMore then in words?\r\n Laer. To cut his throat i\'th\' Church\r\n\r\n Kin. No place indeed should murder Sancturize;\r\nReuenge should haue no bounds: but good Laertes\r\nWill you doe this, keepe close within your Chamber,\r\nHamlet return\'d, shall know you are come home:\r\nWee\'l put on those shall praise your excellence,\r\nAnd set a double varnish on the fame\r\nThe Frenchman gaue you, bring you in fine together,\r\nAnd wager on your heads, he being remisse,\r\nMost generous, and free from all contriuing,\r\nWill not peruse the Foiles? So that with ease,\r\nOr with a little shuffling, you may choose\r\nA Sword vnbaited, and in a passe of practice,\r\nRequit him for your Father\r\n\r\n Laer. I will doo\'t.\r\nAnd for that purpose Ile annoint my Sword:\r\nI bought an Vnction of a Mountebanke\r\nSo mortall, I but dipt a knife in it,\r\nWhere it drawes blood, no Cataplasme so rare,\r\nCollected from all Simples that haue Vertue\r\nVnder the Moone, can saue the thing from death,\r\nThat is but scratcht withall: Ile touch my point,\r\nWith this contagion, that if I gall him slightly,\r\nIt may be death\r\n\r\n Kin. Let\'s further thinke of this,\r\nWeigh what conuenience both of time and meanes\r\nMay fit vs to our shape, if this should faile;\r\nAnd that our drift looke through our bad performance,\r\n\'Twere better not assaid; therefore this Proiect\r\nShould haue a backe or second, that might hold,\r\nIf this should blast in proofe: Soft, let me see\r\nWee\'l make a solemne wager on your commings,\r\nI ha\'t: when in your motion you are hot and dry,\r\nAs make your bowts more violent to the end,\r\nAnd that he cals for drinke; Ile haue prepar\'d him\r\nA Challice for the nonce; whereon but sipping,\r\nIf he by chance escape your venom\'d stuck,\r\nOur purpose may hold there; how sweet Queene.\r\nEnter Queene.\r\n\r\n Queen. One woe doth tread vpon anothers heele,\r\nSo fast they\'l follow: your Sister\'s drown\'d Laertes\r\n\r\n Laer. Drown\'d! O where?\r\n Queen. There is a Willow growes aslant a Brooke,\r\nThat shewes his hore leaues in the glassie streame:\r\nThere with fantasticke Garlands did she come,\r\nOf Crow-flowers, Nettles, Daysies, and long Purples,\r\nThat liberall Shepheards giue a grosser name;\r\nBut our cold Maids doe Dead Mens Fingers call them:\r\nThere on the pendant boughes, her Coronet weeds\r\nClambring to hang; an enuious sliuer broke,\r\nWhen downe the weedy Trophies, and her selfe,\r\nFell in the weeping Brooke, her cloathes spred wide,\r\nAnd Mermaid-like, a while they bore her vp,\r\nWhich time she chaunted snatches of old tunes,\r\nAs one incapable of her owne distresse,\r\nOr like a creature Natiue, and indued\r\nVnto that Element: but long it could not be,\r\nTill that her garments, heauy with her drinke,\r\nPul\'d the poore wretch from her melodious buy,\r\nTo muddy death\r\n\r\n Laer. Alas then, is she drown\'d?\r\n Queen. Drown\'d, drown\'d\r\n\r\n Laer. Too much of water hast thou poore Ophelia,\r\nAnd therefore I forbid my teares: but yet\r\nIt is our tricke, Nature her custome holds,\r\nLet shame say what it will; when these are gone\r\nThe woman will be out: Adue my Lord,\r\nI haue a speech of fire, that faine would blaze,\r\nBut that this folly doubts it.\r\nEnter.\r\n\r\n Kin. Let\'s follow, Gertrude:\r\nHow much I had to doe to calme his rage?\r\nNow feare I this will giue it start againe;\r\nTherefore let\'s follow.\r\n\r\nExeunt.\r\n\r\nEnter two Clownes.\r\n\r\n Clown. Is she to bee buried in Christian buriall, that\r\nwilfully seekes her owne saluation?\r\n Other. I tell thee she is, and therefore make her Graue\r\nstraight, the Crowner hath sate on her, and finds it Christian\r\nburiall\r\n\r\n Clo. How can that be, vnlesse she drowned her selfe in\r\nher owne defence?\r\n Other. Why \'tis found so\r\n\r\n Clo. It must be Se offendendo, it cannot bee else: for\r\nheere lies the point; If I drowne my selfe wittingly, it argues\r\nan Act: and an Act hath three branches. It is an\r\nAct to doe and to performe; argall she drown\'d her selfe\r\nwittingly\r\n\r\n Other. Nay but heare you Goodman Deluer\r\n\r\n Clown. Giue me leaue; heere lies the water; good:\r\nheere stands the man; good: If the man goe to this water\r\nand drowne himselfe; it is will he nill he, he goes;\r\nmarke you that? But if the water come to him & drowne\r\nhim; hee drownes not himselfe. Argall, hee that is not\r\nguilty of his owne death, shortens not his owne life\r\n\r\n Other. But is this law?\r\n Clo. I marry is\'t, Crowners Quest Law\r\n\r\n Other. Will you ha the truth on\'t: if this had not\r\nbeene a Gentlewoman, shee should haue beene buried\r\nout of Christian Buriall\r\n\r\n Clo. Why there thou say\'st. And the more pitty that\r\ngreat folke should haue countenance in this world to\r\ndrowne or hang themselues, more then their euen Christian.\r\nCome, my Spade; there is no ancient Gentlemen,\r\nbut Gardiners, Ditchers and Graue-makers; they hold vp\r\nAdams Profession\r\n\r\n Other. Was he a Gentleman?\r\n Clo. He was the first that euer bore Armes\r\n\r\n Other. Why he had none\r\n\r\n Clo. What, ar\'t a Heathen? how doth thou vnderstand\r\nthe Scripture? the Scripture sayes Adam dig\'d;\r\ncould hee digge without Armes? Ile put another question\r\nto thee; if thou answerest me not to the purpose, confesse\r\nthy selfe-\r\n Other. Go too\r\n\r\n Clo. What is he that builds stronger then either the\r\nMason, the Shipwright, or the Carpenter?\r\n Other. The Gallowes maker; for that Frame outliues a\r\nthousand Tenants\r\n\r\n Clo. I like thy wit well in good faith, the Gallowes\r\ndoes well; but how does it well? it does well to those\r\nthat doe ill: now, thou dost ill to say the Gallowes is\r\nbuilt stronger then the Church: Argall, the Gallowes\r\nmay doe well to thee. Too\'t againe, Come\r\n\r\n Other. Who builds stronger then a Mason, a Shipwright,\r\nor a Carpenter?\r\n Clo. I, tell me that, and vnyoake\r\n\r\n Other. Marry, now I can tell\r\n\r\n Clo. Too\'t\r\n\r\n Other. Masse, I cannot tell.\r\nEnter Hamlet and Horatio a farre off.\r\n\r\n Clo. Cudgell thy braines no more about it; for your\r\ndull Asse will not mend his pace with beating; and when\r\nyou are ask\'t this question next, say a Graue-maker: the\r\nHouses that he makes, lasts till Doomesday: go, get thee\r\nto Yaughan, fetch me a stoupe of Liquor.\r\n\r\nSings.\r\n\r\nIn youth when I did loue, did loue,\r\nme thought it was very sweete:\r\nTo contract O the time for a my behoue,\r\nO me thought there was nothing meete\r\n\r\n Ham. Ha\'s this fellow no feeling of his businesse, that\r\nhe sings at Graue-making?\r\n Hor. Custome hath made it in him a property of easinesse\r\n\r\n Ham. \'Tis ee\'n so; the hand of little Imployment hath\r\nthe daintier sense\r\n\r\n Clowne sings. But Age with his stealing steps\r\nhath caught me in his clutch:\r\nAnd hath shipped me intill the Land,\r\nas if I had neuer beene such\r\n\r\n Ham. That Scull had a tongue in it, and could sing\r\nonce: how the knaue iowles it to th\' grownd, as if it\r\nwere Caines Iaw-bone, that did the first murther: It\r\nmight be the Pate of a Polititian which this Asse o\'re Offices:\r\none that could circumuent God, might it not?\r\n Hor. It might, my Lord\r\n\r\n Ham. Or of a Courtier, which could say, Good Morrow\r\nsweet Lord: how dost thou, good Lord? this\r\nmight be my Lord such a one, that prais\'d my Lord such\r\na ones Horse, when he meant to begge it; might it not?\r\n Hor. I, my Lord\r\n\r\n Ham. Why ee\'n so: and now my Lady Wormes,\r\nChaplesse, and knockt about the Mazard with a Sextons\r\nSpade; heere\'s fine Reuolution, if wee had the tricke to\r\nsee\'t. Did these bones cost no more the breeding, but\r\nto play at Loggets with \'em? mine ake to thinke\r\non\'t\r\n\r\n Clowne sings. A Pickhaxe and a Spade, a Spade,\r\nfor and a shrowding-Sheete:\r\nO a Pit of Clay for to be made,\r\nfor such a Guest is meete\r\n\r\n Ham. There\'s another: why might not that bee the\r\nScull of a Lawyer? where be his Quiddits now? his\r\nQuillets? his Cases? his Tenures, and his Tricks? why\r\ndoe\'s he suffer this rude knaue now to knocke him about\r\nthe Sconce with a dirty Shouell, and will not tell him of\r\nhis Action of Battery? hum. This fellow might be in\'s\r\ntime a great buyer of Land, with his Statutes, his Recognizances,\r\nhis Fines, his double Vouchers, his Recoueries:\r\nIs this the fine of his Fines, and the recouery of his Recoueries,\r\nto haue his fine Pate full of fine Dirt? will his\r\nVouchers vouch him no more of his Purchases, and double\r\nones too, then the length and breadth of a paire of\r\nIndentures? the very Conueyances of his Lands will\r\nhardly lye in this Boxe; and must the Inheritor himselfe\r\nhaue no more? ha?\r\n Hor. Not a iot more, my Lord\r\n\r\n Ham. Is not Parchment made of Sheep-skinnes?\r\n Hor. I my Lord, and of Calue-skinnes too\r\n\r\n Ham. They are Sheepe and Calues that seek out assurance\r\nin that. I will speake to this fellow: whose Graue\'s\r\nthis Sir?\r\n Clo. Mine Sir:\r\nO a Pit of Clay for to be made,\r\nfor such a Guest is meete\r\n\r\n Ham. I thinke it be thine indeed: for thou liest in\'t\r\n\r\n Clo. You lye out on\'t Sir, and therefore it is not yours:\r\nfor my part, I doe not lye in\'t; and yet it is mine\r\n\r\n Ham. Thou dost lye in\'t, to be in\'t and say \'tis thine:\r\n\'tis for the dead, not for the quicke, therefore thou\r\nlyest\r\n\r\n Clo. \'Tis a quicke lye Sir, \'twill away againe from me\r\nto you\r\n\r\n Ham. What man dost thou digge it for?\r\n Clo. For no man Sir\r\n\r\n Ham. What woman then?\r\n Clo. For none neither\r\n\r\n Ham. Who is to be buried in\'t?\r\n Clo. One that was a woman Sir; but rest her Soule,\r\nshee\'s dead\r\n\r\n Ham. How absolute the knaue is? wee must speake\r\nby the Carde, or equiuocation will vndoe vs: by the\r\nLord Horatio, these three yeares I haue taken note of it,\r\nthe Age is growne so picked, that the toe of the Pesant\r\ncomes so neere the heeles of our Courtier, hee galls his\r\nKibe. How long hast thou been a Graue-maker?\r\n Clo. Of all the dayes i\'th\' yeare, I came too\'t that day\r\nthat our last King Hamlet o\'recame Fortinbras\r\n\r\n Ham. How long is that since?\r\n Clo. Cannot you tell that? euery foole can tell that:\r\nIt was the very day, that young Hamlet was borne, hee\r\nthat was mad, and sent into England\r\n\r\n Ham. I marry, why was he sent into England?\r\n Clo. Why, because he was mad; hee shall recouer his\r\nwits there; or if he do not, it\'s no great matter there\r\n\r\n Ham. Why?\r\n Clo. \'Twill not be seene in him, there the men are as\r\nmad as he\r\n\r\n Ham. How came he mad?\r\n Clo. Very strangely they say\r\n\r\n Ham. How strangely?\r\n Clo. Faith e\'ene with loosing his wits\r\n\r\n Ham. Vpon what ground?\r\n Clo. Why heere in Denmarke: I haue bin sixeteene\r\nheere, man and Boy thirty yeares\r\n\r\n Ham. How long will a man lie i\'th\' earth ere he rot?\r\n Clo. Ifaith, if he be not rotten before he die (as we haue\r\nmany pocky Coarses now adaies, that will scarce hold\r\nthe laying in) he will last you some eight yeare, or nine\r\nyeare. A Tanner will last you nine yeare\r\n\r\n Ham. Why he, more then another?\r\n Clo. Why sir, his hide is so tan\'d with his Trade, that\r\nhe will keepe out water a great while. And your water,\r\nis a sore Decayer of your horson dead body. Heres a Scull\r\nnow: this Scul, has laine in the earth three & twenty years\r\n\r\n Ham. Whose was it?\r\n Clo. A whoreson mad Fellowes it was;\r\nWhose doe you thinke it was?\r\n Ham. Nay, I know not\r\n\r\n Clo. A pestilence on him for a mad Rogue, a pour\'d a\r\nFlaggon of Renish on my head once. This same Scull\r\nSir, this same Scull sir, was Yoricks Scull, the Kings Iester\r\n\r\n Ham. This?\r\n Clo. E\'ene that\r\n\r\n Ham. Let me see. Alas poore Yorick, I knew him Horatio,\r\na fellow of infinite Iest; of most excellent fancy, he\r\nhath borne me on his backe a thousand times: And how\r\nabhorred my Imagination is, my gorge rises at it. Heere\r\nhung those lipps, that I haue kist I know not how oft.\r\nWhere be your Iibes now? Your Gambals? Your\r\nSongs? Your flashes of Merriment that were wont to\r\nset the Table on a Rore? No one now to mock your own\r\nIeering? Quite chopfalne? Now get you to my Ladies\r\nChamber, and tell her, let her paint an inch thicke, to this\r\nfauour she must come. Make her laugh at that: prythee\r\nHoratio tell me one thing\r\n\r\n Hor. What\'s that my Lord?\r\n Ham. Dost thou thinke Alexander lookt o\'this fashion\r\ni\'th\' earth?\r\n Hor. E\'ene so\r\n\r\n Ham. And smelt so? Puh\r\n\r\n Hor. E\'ene so, my Lord\r\n\r\n Ham. To what base vses we may returne Horatio.\r\nWhy may not Imagination trace the Noble dust of Alexander,\r\ntill he find it stopping a bunghole\r\n\r\n Hor. \'Twere to consider: to curiously to consider so\r\n\r\n Ham. No faith, not a iot. But to follow him thether\r\nwith modestie enough, & likeliehood to lead it; as thus.\r\nAlexander died: Alexander was buried: Alexander returneth\r\ninto dust; the dust is earth; of earth we make\r\nLome, and why of that Lome (whereto he was conuerted)\r\nmight they not stopp a Beere-barrell?\r\nImperiall Caesar, dead and turn\'d to clay,\r\nMight stop a hole to keepe the winde away.\r\nOh, that that earth, which kept the world in awe,\r\nShould patch a Wall, t\' expell the winters flaw.\r\nBut soft, but soft, aside; heere comes the King.\r\nEnter King, Queene, Laertes, and a Coffin, with Lords attendant.\r\n\r\nThe Queene, the Courtiers. Who is that they follow,\r\nAnd with such maimed rites? This doth betoken,\r\nThe Coarse they follow, did with disperate hand,\r\nFore do it owne life; \'twas some Estate.\r\nCouch we a while, and mark\r\n\r\n Laer. What Cerimony else?\r\n Ham. That is Laertes, a very Noble youth: Marke\r\n\r\n Laer. What Cerimony else?\r\n Priest. Her Obsequies haue bin as farre inlarg\'d.\r\nAs we haue warrantie, her death was doubtfull,\r\nAnd but that great Command, o\'re-swaies the order,\r\nShe should in ground vnsanctified haue lodg\'d,\r\nTill the last Trumpet. For charitable praier,\r\nShardes, Flints, and Peebles, should be throwne on her:\r\nYet heere she is allowed her Virgin Rites,\r\nHer Maiden strewments, and the bringing home\r\nOf Bell and Buriall\r\n\r\n Laer. Must there no more be done ?\r\n Priest. No more be done:\r\nWe should prophane the seruice of the dead,\r\nTo sing sage Requiem, and such rest to her\r\nAs to peace-parted Soules\r\n\r\n Laer. Lay her i\'th\' earth,\r\nAnd from her faire and vnpolluted flesh,\r\nMay Violets spring. I tell thee (churlish Priest)\r\nA Ministring Angell shall my Sister be,\r\nWhen thou liest howling?\r\n Ham. What, the faire Ophelia?\r\n Queene. Sweets, to the sweet farewell.\r\nI hop\'d thou should\'st haue bin my Hamlets wife:\r\nI thought thy Bride-bed to haue deckt (sweet Maid)\r\nAnd not t\'haue strew\'d thy Graue\r\n\r\n Laer. Oh terrible woer,\r\nFall ten times trebble, on that cursed head\r\nWhose wicked deed, thy most Ingenious sence\r\nDepriu\'d thee of. Hold off the earth a while,\r\nTill I haue caught her once more in mine armes:\r\n\r\nLeaps in the graue.\r\n\r\nNow pile your dust, vpon the quicke, and dead,\r\nTill of this flat a Mountaine you haue made,\r\nTo o\'re top old Pelion, or the skyish head\r\nOf blew Olympus\r\n\r\n Ham. What is he, whose griefes\r\nBeares such an Emphasis? whose phrase of Sorrow\r\nConiure the wandring Starres, and makes them stand\r\nLike wonder-wounded hearers? This is I,\r\nHamlet the Dane\r\n\r\n Laer. The deuill take thy soule\r\n\r\n Ham. Thou prai\'st not well,\r\nI prythee take thy fingers from my throat;\r\nSir though I am not Spleenatiue, and rash,\r\nYet haue I something in me dangerous,\r\nWhich let thy wisenesse feare. Away thy hand\r\n\r\n King. Pluck them asunder\r\n\r\n Qu. Hamlet, Hamlet\r\n\r\n Gen. Good my Lord be quiet\r\n\r\n Ham. Why I will fight with him vppon this Theme.\r\nVntill my eielids will no longer wag\r\n\r\n Qu. Oh my Sonne, what Theame?\r\n Ham. I lou\'d Ophelia; fortie thousand Brothers\r\nCould not (with all there quantitie of Loue)\r\nMake vp my summe. What wilt thou do for her?\r\n King. Oh he is mad Laertes,\r\n Qu. For loue of God forbeare him\r\n\r\n Ham. Come show me what thou\'lt doe.\r\nWoo\'t weepe? Woo\'t fight? Woo\'t teare thy selfe?\r\nWoo\'t drinke vp Esile, eate a Crocodile?\r\nIle doo\'t. Dost thou come heere to whine;\r\nTo outface me with leaping in her Graue?\r\nBe buried quicke with her, and so will I.\r\nAnd if thou prate of Mountaines; let them throw\r\nMillions of Akers on vs; till our ground\r\nSindging his pate against the burning Zone,\r\nMake Ossa like a wart. Nay, and thou\'lt mouth,\r\nIle rant as well as thou\r\n\r\n Kin. This is meere Madnesse:\r\nAnd thus awhile the fit will worke on him:\r\nAnon as patient as the female Doue,\r\nWhen that her Golden Cuplet are disclos\'d;\r\nHis silence will sit drooping\r\n\r\n Ham. Heare you Sir:\r\nWhat is the reason that you vse me thus?\r\nI lou\'d you euer; but it is no matter:\r\nLet Hercules himselfe doe what he may,\r\nThe Cat will Mew, and Dogge will haue his day.\r\nEnter.\r\n\r\n Kin. I pray you good Horatio wait vpon him,\r\nStrengthen your patience in our last nights speech,\r\nWee\'l put the matter to the present push:\r\nGood Gertrude set some watch ouer your Sonne,\r\nThis Graue shall haue a liuing Monument:\r\nAn houre of quiet shortly shall we see;\r\nTill then, in patience our proceeding be.\r\n\r\nExeunt.\r\n\r\nEnter Hamlet and Horatio\r\n\r\n Ham. So much for this Sir; now let me see the other,\r\nYou doe remember all the Circumstance\r\n\r\n Hor. Remember it my Lord?\r\n Ham. Sir, in my heart there was a kinde of fighting,\r\nThat would not let me sleepe; me thought I lay\r\nWorse then the mutines in the Bilboes, rashly,\r\n(And praise be rashnesse for it) let vs know,\r\nOur indiscretion sometimes serues vs well,\r\nWhen our deare plots do paule, and that should teach vs,\r\nThere\'s a Diuinity that shapes our ends,\r\nRough-hew them how we will\r\n\r\n Hor. That is most certaine\r\n\r\n Ham. Vp from my Cabin\r\nMy sea-gowne scarft about me in the darke,\r\nGrop\'d I to finde out them; had my desire,\r\nFinger\'d their Packet, and in fine, withdrew\r\nTo mine owne roome againe, making so bold,\r\n(My feares forgetting manners) to vnseale\r\nTheir grand Commission, where I found Horatio,\r\nOh royall knauery: An exact command,\r\nLarded with many seuerall sorts of reason;\r\nImporting Denmarks health, and Englands too,\r\nWith hoo, such Bugges and Goblins in my life,\r\nThat on the superuize no leasure bated,\r\nNo not to stay the grinding of the Axe,\r\nMy head should be struck off\r\n\r\n Hor. Ist possible?\r\n Ham. Here\'s the Commission, read it at more leysure:\r\nBut wilt thou heare me how I did proceed?\r\n Hor. I beseech you\r\n\r\n Ham. Being thus benetted round with Villaines,\r\nEre I could make a Prologue to my braines,\r\nThey had begun the Play. I sate me downe,\r\nDeuis\'d a new Commission, wrote it faire,\r\nI once did hold it as our Statists doe,\r\nA basenesse to write faire; and laboured much\r\nHow to forget that learning: but Sir now,\r\nIt did me Yeomans seriuce: wilt thou know\r\nThe effects of what I wrote?\r\n Hor. I, good my Lord\r\n\r\n Ham. An earnest Coniuration from the King,\r\nAs England was his faithfull Tributary,\r\nAs loue betweene them, as the Palme should flourish,\r\nAs Peace should still her wheaten Garland weare,\r\nAnd stand a Comma \'tweene their amities,\r\nAnd many such like Assis of great charge,\r\nThat on the view and know of these Contents,\r\nWithout debatement further, more or lesse,\r\nHe should the bearers put to sodaine death,\r\nNot shriuing time allowed\r\n\r\n Hor. How was this seal\'d?\r\n Ham. Why, euen in that was Heauen ordinate;\r\nI had my fathers Signet in my Purse,\r\nWhich was the Modell of that Danish Seale:\r\nFolded the Writ vp in forme of the other,\r\nSubscrib\'d it, gau\'t th\' impression, plac\'t it safely,\r\nThe changeling neuer knowne: Now, the next day\r\nWas our Sea Fight, and what to this was sement,\r\nThou know\'st already\r\n\r\n Hor. So Guildensterne and Rosincrance, go too\'t\r\n\r\n Ham. Why man, they did make loue to this imployment\r\nThey are not neere my Conscience; their debate\r\nDoth by their owne insinuation grow:\r\n\'Tis dangerous, when the baser nature comes\r\nBetweene the passe, and fell incensed points\r\nOf mighty opposites\r\n\r\n Hor. Why, what a King is this?\r\n Ham. Does it not, thinkst thee, stand me now vpon\r\nHe that hath kil\'d my King, and whor\'d my Mother,\r\nPopt in betweene th\' election and my hopes,\r\nThrowne out his Angle for my proper life,\r\nAnd with such coozenage; is\'t not perfect conscience,\r\nTo quit him with this arme? And is\'t not to be damn\'d\r\nTo let this Canker of our nature come\r\nIn further euill\r\n\r\n Hor. It must be shortly knowne to him from England\r\nWhat is the issue of the businesse there\r\n\r\n Ham. It will be short,\r\nThe interim\'s mine, and a mans life\'s no more\r\nThen to say one: but I am very sorry good Horatio,\r\nThat to Laertes I forgot my selfe;\r\nFor by the image of my Cause, I see\r\nThe Portraiture of his; Ile count his fauours:\r\nBut sure the brauery of his griefe did put me\r\nInto a Towring passion\r\n\r\n Hor. Peace, who comes heere?\r\nEnter young Osricke.\r\n\r\n Osr. Your Lordship is right welcome back to Denmarke\r\n\r\n Ham. I humbly thank you Sir, dost know this waterflie?\r\n Hor. No my good Lord\r\n\r\n Ham. Thy state is the more gracious; for \'tis a vice to\r\nknow him: he hath much Land, and fertile; let a Beast\r\nbe Lord of Beasts, and his Crib shall stand at the Kings\r\nMesse; \'tis a Chowgh; but as I saw spacious in the possession\r\nof dirt\r\n\r\n Osr. Sweet Lord, if your friendship were at leysure,\r\nI should impart a thing to you from his Maiesty\r\n\r\n Ham. I will receiue it with all diligence of spirit; put\r\nyour Bonet to his right vse, \'tis for the head\r\n\r\n Osr. I thanke your Lordship, \'tis very hot\r\n\r\n Ham. No, beleeue mee \'tis very cold, the winde is\r\nNortherly\r\n\r\n Osr. It is indifferent cold my Lord indeed\r\n\r\n Ham. Mee thinkes it is very soultry, and hot for my\r\nComplexion\r\n\r\n Osr. Exceedingly, my Lord, it is very soultry, as \'twere\r\nI cannot tell how: but my Lord, his Maiesty bad me signifie\r\nto you, that he ha\'s laid a great wager on your head:\r\nSir, this is the matter\r\n\r\n Ham. I beseech you remember\r\n\r\n Osr. Nay, in good faith, for mine ease in good faith:\r\nSir, you are not ignorant of what excellence Laertes is at\r\nhis weapon\r\n\r\n Ham. What\'s his weapon?\r\n Osr. Rapier and dagger\r\n\r\n Ham. That\'s two of his weapons; but well\r\n\r\n Osr. The sir King ha\'s wag\'d with him six Barbary horses,\r\nagainst the which he impon\'d as I take it, sixe French\r\nRapiers and Poniards, with their assignes, as Girdle,\r\nHangers or so: three of the Carriages infaith are very\r\ndeare to fancy, very responsiue to the hilts, most delicate\r\ncarriages, and of very liberall conceit\r\n\r\n Ham. What call you the Carriages?\r\n Osr. The Carriages Sir, are the hangers\r\n\r\n Ham. The phrase would bee more Germaine to the\r\nmatter: If we could carry Cannon by our sides; I would\r\nit might be Hangers till then; but on sixe Barbary Horses\r\nagainst sixe French Swords: their Assignes, and three\r\nliberall conceited Carriages, that\'s the French but against\r\nthe Danish; why is this impon\'d as you call it?\r\n Osr. The King Sir, hath laid that in a dozen passes betweene\r\nyou and him, hee shall not exceed you three hits;\r\nHe hath one twelue for mine, and that would come to\r\nimediate tryall, if your Lordship would vouchsafe the\r\nAnswere\r\n\r\n Ham. How if I answere no?\r\n Osr. I meane my Lord, the opposition of your person\r\nin tryall\r\n\r\n Ham. Sir, I will walke heere in the Hall; if it please\r\nhis Maiestie, \'tis the breathing time of day with me; let\r\nthe Foyles bee brought, the Gentleman willing, and the\r\nKing hold his purpose; I will win for him if I can: if\r\nnot, Ile gaine nothing but my shame, and the odde hits\r\n\r\n Osr. Shall I redeliuer you ee\'n so?\r\n Ham. To this effect Sir, after what flourish your nature\r\nwill\r\n\r\n Osr. I commend my duty to your Lordship\r\n\r\n Ham. Yours, yours; hee does well to commend it\r\nhimselfe, there are no tongues else for\'s tongue\r\n\r\n Hor. This Lapwing runs away with the shell on his\r\nhead\r\n\r\n Ham. He did Complie with his Dugge before hee\r\nsuck\'t it: thus had he and mine more of the same Beauty\r\nthat I know the drossie age dotes on; only got the tune of\r\nthe time, and outward habite of encounter, a kinde of\r\nyesty collection, which carries them through & through\r\nthe most fond and winnowed opinions; and doe but blow\r\nthem to their tryalls: the Bubbles are out\r\n\r\n Hor. You will lose this wager, my Lord\r\n\r\n Ham. I doe not thinke so, since he went into France,\r\nI haue beene in continuall practice; I shall winne at the\r\noddes: but thou wouldest not thinke how all heere about\r\nmy heart: but it is no matter\r\n\r\n Hor. Nay, good my Lord\r\n\r\n Ham. It is but foolery; but it is such a kinde of\r\ngain-giuing as would perhaps trouble a woman\r\n\r\n Hor. If your minde dislike any thing, obey. I will forestall\r\ntheir repaire hither, and say you are not fit\r\n\r\n Ham. Not a whit, we defie Augury; there\'s a speciall\r\nProuidence in the fall of a sparrow. If it be now, \'tis not\r\nto come: if it bee not to come, it will bee now: if it\r\nbe not now; yet it will come; the readinesse is all, since no\r\nman ha\'s ought of what he leaues. What is\'t to leaue betimes?\r\nEnter King, Queene, Laertes and Lords, with other Attendants with\r\nFoyles,\r\nand Gauntlets, a Table and Flagons of Wine on it.\r\n\r\n Kin. Come Hamlet, come, and take this hand from me\r\n\r\n Ham. Giue me your pardon Sir, I\'ue done you wrong,\r\nBut pardon\'t as you are a Gentleman.\r\nThis presence knowes,\r\nAnd you must needs haue heard how I am punisht\r\nWith sore distraction? What I haue done\r\nThat might your nature honour, and exception\r\nRoughly awake, I heere proclaime was madnesse:\r\nWas\'t Hamlet wrong\'d Laertes? Neuer Hamlet.\r\nIf Hamlet from himselfe be tane away:\r\nAnd when he\'s not himselfe, do\'s wrong Laertes,\r\nThen Hamlet does it not, Hamlet denies it:\r\nWho does it then? His Madnesse? If\'t be so,\r\nHamlet is of the Faction that is wrong\'d,\r\nHis madnesse is poore Hamlets Enemy.\r\nSir, in this Audience,\r\nLet my disclaiming from a purpos\'d euill,\r\nFree me so farre in your most generous thoughts,\r\nThat I haue shot mine Arrow o\'re the house,\r\nAnd hurt my Mother\r\n\r\n Laer. I am satisfied in Nature,\r\nWhose motiue in this case should stirre me most\r\nTo my Reuenge. But in my termes of Honor\r\nI stand aloofe, and will no reconcilement,\r\nTill by some elder Masters of knowne Honor,\r\nI haue a voyce, and president of peace\r\nTo keepe my name vngorg\'d. But till that time,\r\nI do receiue your offer\'d loue like loue,\r\nAnd wil not wrong it\r\n\r\n Ham. I do embrace it freely,\r\nAnd will this Brothers wager frankely play.\r\nGiue vs the Foyles: Come on\r\n\r\n Laer. Come one for me\r\n\r\n Ham. Ile be your foile Laertes, in mine ignorance,\r\nYour Skill shall like a Starre i\'th\' darkest night,\r\nSticke fiery off indeede\r\n\r\n Laer. You mocke me Sir\r\n\r\n Ham. No by this hand\r\n\r\n King. Giue them the Foyles yong Osricke,\r\nCousen Hamlet, you know the wager\r\n\r\n Ham. Verie well my Lord,\r\nYour Grace hath laide the oddes a\'th\' weaker side\r\n\r\n King. I do not feare it,\r\nI haue seene you both:\r\nBut since he is better\'d, we haue therefore oddes\r\n\r\n Laer. This is too heauy,\r\nLet me see another\r\n\r\n Ham. This likes me well,\r\nThese Foyles haue all a length.\r\n\r\nPrepare to play.\r\n\r\n Osricke. I my good Lord\r\n\r\n King. Set me the Stopes of wine vpon that Table:\r\nIf Hamlet giue the first, or second hit,\r\nOr quit in answer of the third exchange,\r\nLet all the Battlements their Ordinance fire,\r\nThe King shal drinke to Hamlets better breath,\r\nAnd in the Cup an vnion shal he throw\r\nRicher then that, which foure successiue Kings\r\nIn Denmarkes Crowne haue worne.\r\nGiue me the Cups,\r\nAnd let the Kettle to the Trumpets speake,\r\nThe Trumpet to the Cannoneer without,\r\nThe Cannons to the Heauens, the Heauen to Earth,\r\nNow the King drinkes to Hamlet. Come, begin,\r\nAnd you the Iudges beare a wary eye\r\n\r\n Ham. Come on sir\r\n\r\n Laer. Come on sir.\r\n\r\nThey play.\r\n\r\n Ham. One\r\n\r\n Laer. No\r\n\r\n Ham. Iudgement\r\n\r\n Osr. A hit, a very palpable hit\r\n\r\n Laer. Well: againe\r\n\r\n King. Stay, giue me drinke.\r\nHamlet, this Pearle is thine,\r\nHere\'s to thy health. Giue him the cup,\r\n\r\nTrumpets sound, and shot goes off.\r\n\r\n Ham. Ile play this bout first, set by a-while.\r\nCome: Another hit; what say you?\r\n Laer. A touch, a touch, I do confesse\r\n\r\n King. Our Sonne shall win\r\n\r\n Qu. He\'s fat, and scant of breath.\r\nHeere\'s a Napkin, rub thy browes,\r\nThe Queene Carowses to thy fortune, Hamlet\r\n\r\n Ham. Good Madam\r\n\r\n King. Gertrude, do not drinke\r\n\r\n Qu. I will my Lord;\r\nI pray you pardon me\r\n\r\n King. It is the poyson\'d Cup, it is too late\r\n\r\n Ham. I dare not drinke yet Madam,\r\nBy and by\r\n\r\n Qu. Come, let me wipe thy face\r\n\r\n Laer. My Lord, Ile hit him now\r\n\r\n King. I do not thinke\'t\r\n\r\n Laer. And yet \'tis almost \'gainst my conscience\r\n\r\n Ham. Come for the third.\r\nLaertes, you but dally,\r\nI pray you passe with your best violence,\r\nI am affear\'d you make a wanton of me\r\n\r\n Laer. Say you so? Come on.\r\n\r\nPlay.\r\n\r\n Osr. Nothing neither way\r\n\r\n Laer. Haue at you now.\r\n\r\nIn scuffling they change Rapiers.\r\n\r\n King. Part them, they are incens\'d\r\n\r\n Ham. Nay come, againe\r\n\r\n Osr. Looke to the Queene there hoa\r\n\r\n Hor. They bleed on both sides. How is\'t my Lord?\r\n Osr. How is\'t Laertes?\r\n Laer. Why as a Woodcocke\r\nTo mine Sprindge, Osricke,\r\nI am iustly kill\'d with mine owne Treacherie\r\n\r\n Ham. How does the Queene?\r\n King. She sounds to see them bleede\r\n\r\n Qu. No, no, the drinke, the drinke.\r\nOh my deere Hamlet, the drinke, the drinke,\r\nI am poyson\'d\r\n\r\n Ham. Oh Villany! How? Let the doore be lock\'d.\r\nTreacherie, seeke it out\r\n\r\n Laer. It is heere Hamlet.\r\nHamlet, thou art slaine,\r\nNo Medicine in the world can do thee good.\r\nIn thee, there is not halfe an houre of life;\r\nThe Treacherous Instrument is in thy hand,\r\nVnbated and envenom\'d: the foule practise\r\nHath turn\'d it selfe on me. Loe, heere I lye,\r\nNeuer to rise againe: Thy Mothers poyson\'d:\r\nI can no more, the King, the King\'s too blame\r\n\r\n Ham. The point envenom\'d too,\r\nThen venome to thy worke.\r\n\r\nHurts the King.\r\n\r\n All. Treason, Treason\r\n\r\n King. O yet defend me Friends, I am but hurt\r\n\r\n Ham. Heere thou incestuous, murdrous,\r\nDamned Dane,\r\nDrinke off this Potion: Is thy Vnion heere?\r\nFollow my Mother.\r\n\r\nKing Dyes.\r\n\r\n Laer. He is iustly seru\'d.\r\nIt is a poyson temp\'red by himselfe:\r\nExchange forgiuenesse with me, Noble Hamlet;\r\nMine and my Fathers death come not vpon thee,\r\nNor thine on me.\r\n\r\nDyes.\r\n\r\n Ham. Heauen make thee free of it, I follow thee.\r\nI am dead Horatio, wretched Queene adiew,\r\nYou that looke pale, and tremble at this chance,\r\nThat are but Mutes or audience to this acte:\r\nHad I but time (as this fell Sergeant death\r\nIs strick\'d in his Arrest) oh I could tell you.\r\nBut let it be: Horatio, I am dead,\r\nThou liu\'st, report me and my causes right\r\nTo the vnsatisfied\r\n\r\n Hor. Neuer beleeue it.\r\nI am more an Antike Roman then a Dane:\r\nHeere\'s yet some Liquor left\r\n\r\n Ham. As th\'art a man, giue me the Cup.\r\nLet go, by Heauen Ile haue\'t.\r\nOh good Horatio, what a wounded name,\r\n(Things standing thus vnknowne) shall liue behind me.\r\nIf thou did\'st euer hold me in thy heart,\r\nAbsent thee from felicitie awhile,\r\nAnd in this harsh world draw thy breath in paine,\r\nTo tell my Storie.\r\n\r\nMarch afarre off, and shout within.\r\n\r\nWhat warlike noyse is this?\r\nEnter Osricke.\r\n\r\n Osr. Yong Fortinbras, with conquest come fro[m] Poland\r\nTo th\' Ambassadors of England giues this warlike volly\r\n\r\n Ham. O I dye Horatio:\r\nThe potent poyson quite ore-crowes my spirit,\r\nI cannot liue to heare the Newes from England,\r\nBut I do prophesie th\' election lights\r\nOn Fortinbras, he ha\'s my dying voyce,\r\nSo tell him with the occurrents more and lesse,\r\nWhich haue solicited. The rest is silence. O, o, o, o.\r\n\r\nDyes\r\n\r\n Hora. Now cracke a Noble heart:\r\nGoodnight sweet Prince,\r\nAnd flights of Angels sing thee to thy rest,\r\nWhy do\'s the Drumme come hither?\r\nEnter Fortinbras and English Ambassador, with Drumme, Colours,\r\nand\r\nAttendants.\r\n\r\n Fortin. Where is this sight?\r\n Hor. What is it ye would see;\r\nIf ought of woe, or wonder, cease your search\r\n\r\n For. His quarry cries on hauocke. Oh proud death,\r\nWhat feast is toward in thine eternall Cell.\r\nThat thou so many Princes, at a shoote,\r\nSo bloodily hast strooke\r\n\r\n Amb. The sight is dismall,\r\nAnd our affaires from England come too late,\r\nThe eares are senselesse that should giue vs hearing,\r\nTo tell him his command\'ment is fulfill\'d,\r\nThat Rosincrance and Guildensterne are dead:\r\nWhere should we haue our thankes?\r\n Hor. Not from his mouth,\r\nHad it th\' abilitie of life to thanke you:\r\nHe neuer gaue command\'ment for their death.\r\nBut since so iumpe vpon this bloodie question,\r\nYou from the Polake warres, and you from England\r\nAre heere arriued. Giue order that these bodies\r\nHigh on a stage be placed to the view,\r\nAnd let me speake to th\' yet vnknowing world,\r\nHow these things came about. So shall you heare\r\nOf carnall, bloudie, and vnnaturall acts,\r\nOf accidentall iudgements, casuall slaughters\r\nOf death\'s put on by cunning, and forc\'d cause,\r\nAnd in this vpshot, purposes mistooke,\r\nFalne on the Inuentors head. All this can I\r\nTruly deliuer\r\n\r\n For. Let vs hast to heare it,\r\nAnd call the Noblest to the Audience.\r\nFor me, with sorrow, I embrace my Fortune,\r\nI haue some Rites of memory in this Kingdome,\r\nWhich are to claime, my vantage doth\r\nInuite me,\r\n Hor. Of that I shall haue alwayes cause to speake,\r\nAnd from his mouth\r\nWhose voyce will draw on more:\r\nBut let this same be presently perform\'d,\r\nEuen whiles mens mindes are wilde,\r\nLest more mischance\r\nOn plots, and errors happen\r\n\r\n For. Let foure Captaines\r\nBeare Hamlet like a Soldier to the Stage,\r\nFor he was likely, had he beene put on\r\nTo haue prou\'d most royally:\r\nAnd for his passage,\r\nThe Souldiours Musicke, and the rites of Warre\r\nSpeake lowdly for him.\r\nTake vp the body; Such a sight as this\r\nBecomes the Field, but heere shewes much amis.\r\nGo, bid the Souldiers shoote.\r\n\r\nExeunt. Marching: after the which, a Peale of Ordenance are shot\r\noff.\r\n\r\n\r\nFINIS. The tragedie of HAMLET, Prince of Denmarke.\r\n'); +INSERT INTO `shakespeare` (`id`, `title`, `contents`) VALUES +(2, 'The Tragedie of Macbeth', '\r\n\r\n***The Project Gutenberg\'s Etext of Shakespeare\'s First Folio***\r\n********************The Tragedie of Macbeth*********************\r\n\r\n\r\n\r\n*******************************************************************\r\nTHIS EBOOK WAS ONE OF PROJECT GUTENBERG\'S EARLY FILES PRODUCED AT A\r\nTIME WHEN PROOFING METHODS AND TOOLS WERE NOT WELL DEVELOPED. THERE\r\nIS AN IMPROVED EDITION OF THIS TITLE WHICH MAY BE VIEWED AS EBOOK\r\n(#1533) at https://www.gutenberg.org/ebooks/1533\r\n*******************************************************************\r\n\r\n\r\n\r\nThis is our 3rd edition of most of these plays. See the index.\r\n\r\n\r\nCopyright laws are changing all over the world, be sure to check\r\nthe copyright laws for your country before posting these files!!\r\n\r\nPlease take a look at the important information in this header.\r\nWe encourage you to keep this file on your own disk, keeping an\r\nelectronic path open for the next readers. Do not remove this.\r\n\r\n\r\n**Welcome To The World of Free Plain Vanilla Electronic Texts**\r\n\r\n**Etexts Readable By Both Humans and By Computers, Since 1971**\r\n\r\n*These Etexts Prepared By Hundreds of Volunteers and Donations*\r\n\r\nInformation on contacting Project Gutenberg to get Etexts, and\r\nfurther information is included below. We need your donations.\r\n\r\n\r\nThe Tragedie of Macbeth\r\n\r\nby William Shakespeare\r\n\r\nJuly, 2000 [Etext #2264]\r\n\r\n\r\n***The Project Gutenberg\'s Etext of Shakespeare\'s First Folio***\r\n********************The Tragedie of Macbeth*********************\r\n\r\n*****This file should be named 2264.txt or 2264.zip******\r\n\r\nProject Gutenberg Etexts are usually created from multiple editions,\r\nall of which are in the Public Domain in the United States, unless a\r\ncopyright notice is included. Therefore, we usually do NOT keep any\r\nof these books in compliance with any particular paper edition.\r\n\r\n\r\nWe are now trying to release all our books one month in advance\r\nof the official release dates, leaving time for better editing.\r\n\r\nPlease note: neither this list nor its contents are final till\r\nmidnight of the last day of the month of any such announcement.\r\nThe official release date of all Project Gutenberg Etexts is at\r\nMidnight, Central Time, of the last day of the stated month. A\r\npreliminary version may often be posted for suggestion, comment\r\nand editing by those who wish to do so. To be sure you have an\r\nup to date first edition [xxxxx10x.xxx] please check file sizes\r\nin the first week of the next month. Since our ftp program has\r\na bug in it that scrambles the date [tried to fix and failed] a\r\nlook at the file size will have to do, but we will try to see a\r\nnew copy has at least one byte more or less.\r\n\r\n\r\nInformation about Project Gutenberg (one page)\r\n\r\nWe produce about two million dollars for each hour we work. The\r\ntime it takes us, a rather conservative estimate, is fifty hours\r\nto get any etext selected, entered, proofread, edited, copyright\r\nsearched and analyzed, the copyright letters written, etc. This\r\nprojected audience is one hundred million readers. If our value\r\nper text is nominally estimated at one dollar then we produce $2\r\nmillion dollars per hour this year as we release thirty-six text\r\nfiles per month, or 432 more Etexts in 1999 for a total of 2000+\r\nIf these reach just 10% of the computerized population, then the\r\ntotal should reach over 200 billion Etexts given away this year.\r\n\r\nThe Goal of Project Gutenberg is to Give Away One Trillion Etext\r\nFiles by December 31, 2001. [10,000 x 100,000,000 = 1 Trillion]\r\nThis is ten thousand titles each to one hundred million readers,\r\nwhich is only ~5% of the present number of computer users.\r\n\r\nAt our revised rates of production, we will reach only one-third\r\nof that goal by the end of 2001, or about 3,333 Etexts unless we\r\nmanage to get some real funding; currently our funding is mostly\r\nfrom Michael Hart\'s salary at Carnegie-Mellon University, and an\r\nassortment of sporadic gifts; this salary is only good for a few\r\nmore years, so we are looking for something to replace it, as we\r\ndon\'t want Project Gutenberg to be so dependent on one person.\r\n\r\nWe need your donations more than ever!\r\n\r\n\r\nAll donations should be made to \"Project Gutenberg/CMU\": and are\r\ntax deductible to the extent allowable by law. (CMU = Carnegie-\r\nMellon University).\r\n\r\nFor these and other matters, please mail to:\r\n\r\nProject Gutenberg\r\nP. O. Box 2782\r\nChampaign, IL 61825\r\n\r\nWhen all other email fails. . .try our Executive Director:\r\nMichael S. Hart \r\nhart@pobox.com forwards to hart@prairienet.org and archive.org\r\nif your mail bounces from archive.org, I will still see it, if\r\nit bounces from prairienet.org, better resend later on. . . .\r\n\r\nWe would prefer to send you this information by email.\r\n\r\n******\r\n\r\nTo access Project Gutenberg etexts, use any Web browser\r\nto view http://promo.net/pg. This site lists Etexts by\r\nauthor and by title, and includes information about how\r\nto get involved with Project Gutenberg. You could also\r\ndownload our past Newsletters, or subscribe here. This\r\nis one of our major sites, please email hart@pobox.com,\r\nfor a more complete list of our various sites.\r\n\r\nTo go directly to the etext collections, use FTP or any\r\nWeb browser to visit a Project Gutenberg mirror (mirror\r\nsites are available on 7 continents; mirrors are listed\r\nat http://promo.net/pg).\r\n\r\nMac users, do NOT point and click, typing works better.\r\n\r\nExample FTP session:\r\n\r\nftp sunsite.unc.edu\r\nlogin: anonymous\r\npassword: your@login\r\ncd pub/docs/books/gutenberg\r\ncd etext90 through etext99\r\ndir [to see files]\r\nget or mget [to get files. . .set bin for zip files]\r\nGET GUTINDEX.?? [to get a year\'s listing of books, e.g., GUTINDEX.99]\r\nGET GUTINDEX.ALL [to get a listing of ALL books]\r\n\r\n***\r\n\r\n**Information prepared by the Project Gutenberg legal advisor**\r\n\r\n(Three Pages)\r\n\r\n\r\n***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN ETEXTS**START***\r\nWhy is this \"Small Print!\" statement here? You know: lawyers.\r\nThey tell us you might sue us if there is something wrong with\r\nyour copy of this etext, even if you got it for free from\r\nsomeone other than us, and even if what\'s wrong is not our\r\nfault. So, among other things, this \"Small Print!\" statement\r\ndisclaims most of our liability to you. It also tells you how\r\nyou can distribute copies of this etext if you want to.\r\n\r\n*BEFORE!* YOU USE OR READ THIS ETEXT\r\nBy using or reading any part of this PROJECT GUTENBERG-tm\r\netext, you indicate that you understand, agree to and accept\r\nthis \"Small Print!\" statement. If you do not, you can receive\r\na refund of the money (if any) you paid for this etext by\r\nsending a request within 30 days of receiving it to the person\r\nyou got it from. If you received this etext on a physical\r\nmedium (such as a disk), you must return it with your request.\r\n\r\nABOUT PROJECT GUTENBERG-TM ETEXTS\r\nThis PROJECT GUTENBERG-tm etext, like most PROJECT GUTENBERG-\r\ntm etexts, is a \"public domain\" work distributed by Professor\r\nMichael S. Hart through the Project Gutenberg Association at\r\nCarnegie-Mellon University (the \"Project\"). Among other\r\nthings, this means that no one owns a United States copyright\r\non or for this work, so the Project (and you!) can copy and\r\ndistribute it in the United States without permission and\r\nwithout paying copyright royalties. Special rules, set forth\r\nbelow, apply if you wish to copy and distribute this etext\r\nunder the Project\'s \"PROJECT GUTENBERG\" trademark.\r\n\r\nTo create these etexts, the Project expends considerable\r\nefforts to identify, transcribe and proofread public domain\r\nworks. Despite these efforts, the Project\'s etexts and any\r\nmedium they may be on may contain \"Defects\". Among other\r\nthings, Defects may take the form of incomplete, inaccurate or\r\ncorrupt data, transcription errors, a copyright or other\r\nintellectual property infringement, a defective or damaged\r\ndisk or other etext medium, a computer virus, or computer\r\ncodes that damage or cannot be read by your equipment.\r\n\r\nLIMITED WARRANTY; DISCLAIMER OF DAMAGES\r\nBut for the \"Right of Replacement or Refund\" described below,\r\n[1] the Project (and any other party you may receive this\r\netext from as a PROJECT GUTENBERG-tm etext) disclaims all\r\nliability to you for damages, costs and expenses, including\r\nlegal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR\r\nUNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT,\r\nINCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE\r\nOR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE\r\nPOSSIBILITY OF SUCH DAMAGES.\r\n\r\nIf you discover a Defect in this etext within 90 days of\r\nreceiving it, you can receive a refund of the money (if any)\r\nyou paid for it by sending an explanatory note within that\r\ntime to the person you received it from. If you received it\r\non a physical medium, you must return it with your note, and\r\nsuch person may choose to alternatively give you a replacement\r\ncopy. If you received it electronically, such person may\r\nchoose to alternatively give you a second opportunity to\r\nreceive it electronically.\r\n\r\nTHIS ETEXT IS OTHERWISE PROVIDED TO YOU \"AS-IS\". NO OTHER\r\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS\r\nTO THE ETEXT OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT\r\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\r\nPARTICULAR PURPOSE.\r\n\r\nSome states do not allow disclaimers of implied warranties or\r\nthe exclusion or limitation of consequential damages, so the\r\nabove disclaimers and exclusions may not apply to you, and you\r\nmay have other legal rights.\r\n\r\nINDEMNITY\r\nYou will indemnify and hold the Project, its directors,\r\nofficers, members and agents harmless from all liability, cost\r\nand expense, including legal fees, that arise directly or\r\nindirectly from any of the following that you do or cause:\r\n[1] distribution of this etext, [2] alteration, modification,\r\nor addition to the etext, or [3] any Defect.\r\n\r\nDISTRIBUTION UNDER \"PROJECT GUTENBERG-tm\"\r\nYou may distribute copies of this etext electronically, or by\r\ndisk, book or any other medium if you either delete this\r\n\"Small Print!\" and all other references to Project Gutenberg,\r\nor:\r\n\r\n[1] Only give exact copies of it. Among other things, this\r\n requires that you do not remove, alter or modify the\r\n etext or this \"small print!\" statement. You may however,\r\n if you wish, distribute this etext in machine readable\r\n binary, compressed, mark-up, or proprietary form,\r\n including any form resulting from conversion by word pro-\r\n cessing or hypertext software, but only so long as\r\n *EITHER*:\r\n\r\n [*] The etext, when displayed, is clearly readable, and\r\n does *not* contain characters other than those\r\n intended by the author of the work, although tilde\r\n (~), asterisk (*) and underline (_) characters may\r\n be used to convey punctuation intended by the\r\n author, and additional characters may be used to\r\n indicate hypertext links; OR\r\n\r\n [*] The etext may be readily converted by the reader at\r\n no expense into plain ASCII, EBCDIC or equivalent\r\n form by the program that displays the etext (as is\r\n the case, for instance, with most word processors);\r\n OR\r\n\r\n [*] You provide, or agree to also provide on request at\r\n no additional cost, fee or expense, a copy of the\r\n etext in its original plain ASCII form (or in EBCDIC\r\n or other equivalent proprietary form).\r\n\r\n[2] Honor the etext refund and replacement provisions of this\r\n \"Small Print!\" statement.\r\n\r\n[3] Pay a trademark license fee to the Project of 20% of the\r\n net profits you derive calculated using the method you\r\n already use to calculate your applicable taxes. If you\r\n don\'t derive profits, no royalty is due. Royalties are\r\n payable to \"Project Gutenberg Association/Carnegie-Mellon\r\n University\" within the 60 days following each\r\n date you prepare (or were legally required to prepare)\r\n your annual (or equivalent periodic) tax return.\r\n\r\nWHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON\'T HAVE TO?\r\nThe Project gratefully accepts contributions in money, time,\r\nscanning machines, OCR software, public domain etexts, royalty\r\nfree copyright licenses, and every other sort of contribution\r\nyou can think of. Money should be paid to \"Project Gutenberg\r\nAssociation / Carnegie-Mellon University\".\r\n\r\n*END*THE SMALL PRINT! FOR PUBLIC DOMAIN ETEXTS*Ver.04.29.93*END*\r\n\r\n\r\n\r\n\r\n\r\nProject Gutenberg\'s Etext of Shakespeare\'s The Tragedie of Macbeth\r\n\r\n\r\n\r\n\r\n\r\nExecutive Director\'s Notes:\r\n\r\nIn addition to the notes below, and so you will *NOT* think all\r\nthe spelling errors introduced by the printers of the time have\r\nbeen corrected, here are the first few lines of Hamlet, as they\r\nare presented herein:\r\n\r\n Barnardo. Who\'s there?\r\n Fran. Nay answer me: Stand & vnfold\r\nyour selfe\r\n\r\n Bar. Long liue the King\r\n\r\n***\r\n\r\nAs I understand it, the printers often ran out of certain words\r\nor letters they had often packed into a \"cliche\". . .this is the\r\noriginal meaning of the term cliche. . .and thus, being unwilling\r\nto unpack the cliches, and thus you will see some substitutions\r\nthat look very odd. . .such as the exchanges of u for v, v for u,\r\nabove. . .and you may wonder why they did it this way, presuming\r\nShakespeare did not actually write the play in this manner. . . .\r\n\r\nThe answer is that they MAY have packed \"liue\" into a cliche at a\r\ntime when they were out of \"v\"\'s. . .possibly having used \"vv\" in\r\nplace of some \"w\"\'s, etc. This was a common practice of the day,\r\nas print was still quite expensive, and they didn\'t want to spend\r\nmore on a wider selection of characters than they had to.\r\n\r\nYou will find a lot of these kinds of \"errors\" in this text, as I\r\nhave mentioned in other times and places, many \"scholars\" have an\r\nextreme attachment to these errors, and many have accorded them a\r\nvery high place in the \"canon\" of Shakespeare. My father read an\r\nassortment of these made available to him by Cambridge University\r\nin England for several months in a glass room constructed for the\r\npurpose. To the best of my knowledge he read ALL those available\r\n. . .in great detail. . .and determined from the various changes,\r\nthat Shakespeare most likely did not write in nearly as many of a\r\nvariety of errors we credit him for, even though he was in/famous\r\nfor signing his name with several different spellings.\r\n\r\nSo, please take this into account when reading the comments below\r\nmade by our volunteer who prepared this file: you may see errors\r\nthat are \"not\" errors. . . .\r\n\r\nSo. . .with this caveat. . .we have NOT changed the canon errors,\r\nhere is the Project Gutenberg Etext of Shakespeare\'s The Tragedie\r\nof Macbeth.\r\n\r\nMichael S. Hart\r\nProject Gutenberg\r\nExecutive Director\r\n\r\n\r\n***\r\n\r\n\r\nScanner\'s Notes: What this is and isn\'t. This was taken from\r\na copy of Shakespeare\'s first folio and it is as close as I can\r\ncome in ASCII to the printed text.\r\n\r\nThe elongated S\'s have been changed to small s\'s and the\r\nconjoined ae have been changed to ae. I have left the spelling,\r\npunctuation, capitalization as close as possible to the\r\nprinted text. I have corrected some spelling mistakes (I have put\r\ntogether a spelling dictionary devised from the spellings of the\r\nGeneva Bible and Shakespeare\'s First Folio and have unified\r\nspellings according to this template), typo\'s and expanded\r\nabbreviations as I have come across them. Everything within\r\nbrackets [] is what I have added. So if you don\'t like that\r\nyou can delete everything within the brackets if you want a\r\npurer Shakespeare.\r\n\r\nAnother thing that you should be aware of is that there are textual\r\ndifferences between various copies of the first folio. So there may\r\nbe differences (other than what I have mentioned above) between\r\nthis and other first folio editions. This is due to the printer\'s\r\nhabit of setting the type and running off a number of copies and\r\nthen proofing the printed copy and correcting the type and then\r\ncontinuing the printing run. The proof run wasn\'t thrown away but\r\nincorporated into the printed copies. This is just the way it is.\r\nThe text I have used was a composite of more than 30 different\r\nFirst Folio editions\' best pages.\r\n\r\nIf you find any scanning errors, out and out typos, punctuation\r\nerrors, or if you disagree with my spelling choices please feel\r\nfree to email me those errors. I wish to make this the best\r\netext possible. My email address for right now are haradda@aol.com\r\nand davidr@inconnect.com. I hope that you enjoy this.\r\n\r\nDavid Reed\r\n\r\nThe Tragedie of Macbeth\r\n\r\nActus Primus. Scoena Prima.\r\n\r\nThunder and Lightning. Enter three Witches.\r\n\r\n 1. When shall we three meet againe?\r\nIn Thunder, Lightning, or in Raine?\r\n 2. When the Hurley-burley\'s done,\r\nWhen the Battaile\'s lost, and wonne\r\n\r\n 3. That will be ere the set of Sunne\r\n\r\n 1. Where the place?\r\n 2. Vpon the Heath\r\n\r\n 3. There to meet with Macbeth\r\n\r\n 1. I come, Gray-Malkin\r\n\r\n All. Padock calls anon: faire is foule, and foule is faire,\r\nHouer through the fogge and filthie ayre.\r\n\r\nExeunt.\r\n\r\n\r\nScena Secunda.\r\n\r\nAlarum within. Enter King, Malcome, Donalbaine, Lenox, with\r\nattendants, meeting a bleeding Captaine.\r\n\r\n King. What bloody man is that? he can report,\r\nAs seemeth by his plight, of the Reuolt\r\nThe newest state\r\n\r\n Mal. This is the Serieant,\r\nWho like a good and hardie Souldier fought\r\n\'Gainst my Captiuitie: Haile braue friend;\r\nSay to the King, the knowledge of the Broyle,\r\nAs thou didst leaue it\r\n\r\n Cap. Doubtfull it stood,\r\nAs two spent Swimmers, that doe cling together,\r\nAnd choake their Art: The mercilesse Macdonwald\r\n(Worthie to be a Rebell, for to that\r\nThe multiplying Villanies of Nature\r\nDoe swarme vpon him) from the Westerne Isles\r\nOf Kernes and Gallowgrosses is supply\'d,\r\nAnd Fortune on his damned Quarry smiling,\r\nShew\'d like a Rebells Whore: but all\'s too weake:\r\nFor braue Macbeth (well hee deserues that Name)\r\nDisdayning Fortune, with his brandisht Steele,\r\nWhich smoak\'d with bloody execution\r\n(Like Valours Minion) caru\'d out his passage,\r\nTill hee fac\'d the Slaue:\r\nWhich neu\'r shooke hands, nor bad farwell to him,\r\nTill he vnseam\'d him from the Naue toth\' Chops,\r\nAnd fix\'d his Head vpon our Battlements\r\n\r\n King. O valiant Cousin, worthy Gentleman\r\n\r\n Cap. As whence the Sunne \'gins his reflection,\r\nShipwracking Stormes, and direfull Thunders:\r\nSo from that Spring, whence comfort seem\'d to come,\r\nDiscomfort swells: Marke King of Scotland, marke,\r\nNo sooner Iustice had, with Valour arm\'d,\r\nCompell\'d these skipping Kernes to trust their heeles,\r\nBut the Norweyan Lord, surueying vantage,\r\nWith furbusht Armes, and new supplyes of men,\r\nBegan a fresh assault\r\n\r\n King. Dismay\'d not this our Captaines, Macbeth and\r\nBanquoh?\r\n Cap. Yes, as Sparrowes, Eagles;\r\nOr the Hare, the Lyon:\r\nIf I say sooth, I must report they were\r\nAs Cannons ouer-charg\'d with double Cracks,\r\nSo they doubly redoubled stroakes vpon the Foe:\r\nExcept they meant to bathe in reeking Wounds,\r\nOr memorize another Golgotha,\r\nI cannot tell: but I am faint,\r\nMy Gashes cry for helpe\r\n\r\n King. So well thy words become thee, as thy wounds,\r\nThey smack of Honor both: Goe get him Surgeons.\r\nEnter Rosse and Angus.\r\n\r\nWho comes here?\r\n Mal. The worthy Thane of Rosse\r\n\r\n Lenox. What a haste lookes through his eyes?\r\nSo should he looke, that seemes to speake things strange\r\n\r\n Rosse. God saue the King\r\n\r\n King. Whence cam\'st thou, worthy Thane?\r\n Rosse. From Fiffe, great King,\r\nWhere the Norweyan Banners flowt the Skie,\r\nAnd fanne our people cold.\r\nNorway himselfe, with terrible numbers,\r\nAssisted by that most disloyall Traytor,\r\nThe Thane of Cawdor, began a dismall Conflict,\r\nTill that Bellona\'s Bridegroome, lapt in proofe,\r\nConfronted him with selfe-comparisons,\r\nPoint against Point, rebellious Arme \'gainst Arme,\r\nCurbing his lauish spirit: and to conclude,\r\nThe Victorie fell on vs\r\n\r\n King. Great happinesse\r\n\r\n Rosse. That now Sweno, the Norwayes King,\r\nCraues composition:\r\nNor would we deigne him buriall of his men,\r\nTill he disbursed, at Saint Colmes ynch,\r\nTen thousand Dollars, to our generall vse\r\n\r\n King. No more that Thane of Cawdor shall deceiue\r\nOur Bosome interest: Goe pronounce his present death,\r\nAnd with his former Title greet Macbeth\r\n\r\n Rosse. Ile see it done\r\n\r\n King. What he hath lost, Noble Macbeth hath wonne.\r\n\r\nExeunt.\r\n\r\n\r\nScena Tertia.\r\n\r\nThunder. Enter the three Witches.\r\n\r\n 1. Where hast thou beene, Sister?\r\n 2. Killing Swine\r\n\r\n 3. Sister, where thou?\r\n 1. A Saylors Wife had Chestnuts in her Lappe,\r\nAnd mouncht, & mouncht, and mouncht:\r\nGiue me, quoth I.\r\nAroynt thee, Witch, the rumpe-fed Ronyon cryes.\r\nHer Husband\'s to Aleppo gone, Master o\'th\' Tiger:\r\nBut in a Syue Ile thither sayle,\r\nAnd like a Rat without a tayle,\r\nIle doe, Ile doe, and Ile doe\r\n\r\n 2. Ile giue thee a Winde\r\n\r\n 1. Th\'art kinde\r\n\r\n 3. And I another\r\n\r\n 1. I my selfe haue all the other,\r\nAnd the very Ports they blow,\r\nAll the Quarters that they know,\r\nI\'th\' Ship-mans Card.\r\nIle dreyne him drie as Hay:\r\nSleepe shall neyther Night nor Day\r\nHang vpon his Pent-house Lid:\r\nHe shall liue a man forbid:\r\nWearie Seu\'nights, nine times nine,\r\nShall he dwindle, peake, and pine:\r\nThough his Barke cannot be lost,\r\nYet it shall be Tempest-tost.\r\nLooke what I haue\r\n\r\n 2. Shew me, shew me\r\n\r\n 1. Here I haue a Pilots Thumbe,\r\nWrackt, as homeward he did come.\r\n\r\nDrum within.\r\n\r\n 3. A Drumme, a Drumme:\r\nMacbeth doth come\r\n\r\n All. The weyward Sisters, hand in hand,\r\nPosters of the Sea and Land,\r\nThus doe goe, about, about,\r\nThrice to thine, and thrice to mine,\r\nAnd thrice againe, to make vp nine.\r\nPeace, the Charme\'s wound vp.\r\nEnter Macbeth and Banquo.\r\n\r\n Macb. So foule and faire a day I haue not seene\r\n\r\n Banquo. How farre is\'t call\'d to Soris? What are these,\r\nSo wither\'d, and so wilde in their attyre,\r\nThat looke not like th\' Inhabitants o\'th\' Earth,\r\nAnd yet are on\'t? Liue you, or are you aught\r\nThat man may question? you seeme to vnderstand me,\r\nBy each at once her choppie finger laying\r\nVpon her skinnie Lips: you should be Women,\r\nAnd yet your Beards forbid me to interprete\r\nThat you are so\r\n\r\n Mac. Speake if you can: what are you?\r\n 1. All haile Macbeth, haile to thee Thane of Glamis\r\n\r\n 2. All haile Macbeth, haile to thee Thane of Cawdor\r\n\r\n 3. All haile Macbeth, that shalt be King hereafter\r\n\r\n Banq. Good Sir, why doe you start, and seeme to feare\r\nThings that doe sound so faire? i\'th\' name of truth\r\nAre ye fantasticall, or that indeed\r\nWhich outwardly ye shew? My Noble Partner\r\nYou greet with present Grace, and great prediction\r\nOf Noble hauing, and of Royall hope,\r\nThat he seemes wrapt withall: to me you speake not.\r\nIf you can looke into the Seedes of Time,\r\nAnd say, which Graine will grow, and which will not,\r\nSpeake then to me, who neyther begge, nor feare\r\nYour fauors, nor your hate\r\n\r\n 1. Hayle\r\n\r\n 2. Hayle\r\n\r\n 3. Hayle\r\n\r\n 1. Lesser than Macbeth, and greater\r\n\r\n 2. Not so happy, yet much happyer\r\n\r\n 3. Thou shalt get Kings, though thou be none:\r\nSo all haile Macbeth, and Banquo\r\n\r\n 1. Banquo, and Macbeth, all haile\r\n\r\n Macb. Stay you imperfect Speakers, tell me more:\r\nBy Sinells death, I know I am Thane of Glamis,\r\nBut how, of Cawdor? the Thane of Cawdor liues\r\nA prosperous Gentleman: And to be King,\r\nStands not within the prospect of beleefe,\r\nNo more then to be Cawdor. Say from whence\r\nYou owe this strange Intelligence, or why\r\nVpon this blasted Heath you stop our way\r\nWith such Prophetique greeting?\r\nSpeake, I charge you.\r\n\r\nWitches vanish.\r\n\r\n Banq. The Earth hath bubbles, as the Water ha\'s,\r\nAnd these are of them: whither are they vanish\'d?\r\n Macb. Into the Ayre: and what seem\'d corporall,\r\nMelted, as breath into the Winde.\r\nWould they had stay\'d\r\n\r\n Banq. Were such things here, as we doe speake about?\r\nOr haue we eaten on the insane Root,\r\nThat takes the Reason Prisoner?\r\n Macb. Your Children shall be Kings\r\n\r\n Banq. You shall be King\r\n\r\n Macb. And Thane of Cawdor too: went it not so?\r\n Banq. Toth\' selfe-same tune and words: who\'s here?\r\nEnter Rosse and Angus.\r\n\r\n Rosse. The King hath happily receiu\'d, Macbeth,\r\nThe newes of thy successe: and when he reades\r\nThy personall Venture in the Rebels sight,\r\nHis Wonders and his Prayses doe contend,\r\nWhich should be thine, or his: silenc\'d with that,\r\nIn viewing o\'re the rest o\'th\' selfe-same day,\r\nHe findes thee in the stout Norweyan Rankes,\r\nNothing afeard of what thy selfe didst make\r\nStrange Images of death, as thick as Tale\r\nCan post with post, and euery one did beare\r\nThy prayses in his Kingdomes great defence,\r\nAnd powr\'d them downe before him\r\n\r\n Ang. Wee are sent,\r\nTo giue thee from our Royall Master thanks,\r\nOnely to harrold thee into his sight,\r\nNot pay thee\r\n\r\n Rosse. And for an earnest of a greater Honor,\r\nHe bad me, from him, call thee Thane of Cawdor:\r\nIn which addition, haile most worthy Thane,\r\nFor it is thine\r\n\r\n Banq. What, can the Deuill speake true?\r\n Macb. The Thane of Cawdor liues:\r\nWhy doe you dresse me in borrowed Robes?\r\n Ang. Who was the Thane, liues yet,\r\nBut vnder heauie Iudgement beares that Life,\r\nWhich he deserues to loose.\r\nWhether he was combin\'d with those of Norway,\r\nOr did lyne the Rebell with hidden helpe,\r\nAnd vantage; or that with both he labour\'d\r\nIn his Countreyes wracke, I know not:\r\nBut Treasons Capitall, confess\'d, and prou\'d,\r\nHaue ouerthrowne him\r\n\r\n Macb. Glamys, and Thane of Cawdor:\r\nThe greatest is behinde. Thankes for your paines.\r\nDoe you not hope your Children shall be Kings,\r\nWhen those that gaue the Thane of Cawdor to me,\r\nPromis\'d no lesse to them\r\n\r\n Banq. That trusted home,\r\nMight yet enkindle you vnto the Crowne,\r\nBesides the Thane of Cawdor. But \'tis strange:\r\nAnd oftentimes, to winne vs to our harme,\r\nThe Instruments of Darknesse tell vs Truths,\r\nWinne vs with honest Trifles, to betray\'s\r\nIn deepest consequence.\r\nCousins, a word, I pray you\r\n\r\n Macb. Two Truths are told,\r\nAs happy Prologues to the swelling Act\r\nOf the Imperiall Theame. I thanke you Gentlemen:\r\nThis supernaturall solliciting\r\nCannot be ill; cannot be good.\r\nIf ill? why hath it giuen me earnest of successe,\r\nCommencing in a Truth? I am Thane of Cawdor.\r\nIf good? why doe I yeeld to that suggestion,\r\nWhose horrid Image doth vnfixe my Heire,\r\nAnd make my seated Heart knock at my Ribbes,\r\nAgainst the vse of Nature? Present Feares\r\nAre lesse then horrible Imaginings:\r\nMy Thought, whose Murther yet is but fantasticall,\r\nShakes so my single state of Man,\r\nThat Function is smother\'d in surmise,\r\nAnd nothing is, but what is not\r\n\r\n Banq. Looke how our Partner\'s rapt\r\n\r\n Macb. If Chance will haue me King,\r\nWhy Chance may Crowne me,\r\nWithout my stirre\r\n\r\n Banq. New Honors come vpon him\r\nLike our strange Garments, cleaue not to their mould,\r\nBut with the aid of vse\r\n\r\n Macb. Come what come may,\r\nTime, and the Houre, runs through the roughest Day\r\n\r\n Banq. Worthy Macbeth, wee stay vpon your leysure\r\n\r\n Macb. Giue me your fauour:\r\nMy dull Braine was wrought with things forgotten.\r\nKinde Gentlemen, your paines are registred,\r\nWhere euery day I turne the Leafe,\r\nTo reade them.\r\nLet vs toward the King: thinke vpon\r\nWhat hath chanc\'d: and at more time,\r\nThe Interim hauing weigh\'d it, let vs speake\r\nOur free Hearts each to other\r\n\r\n Banq. Very gladly\r\n\r\n Macb. Till then enough:\r\nCome friends.\r\n\r\nExeunt.\r\n\r\n\r\nScena Quarta.\r\n\r\nFlourish. Enter King, Lenox, Malcolme, Donalbaine, and\r\nAttendants.\r\n\r\n King. Is execution done on Cawdor?\r\nOr not those in Commission yet return\'d?\r\n Mal. My Liege, they are not yet come back.\r\nBut I haue spoke with one that saw him die:\r\nWho did report, that very frankly hee\r\nConfess\'d his Treasons, implor\'d your Highnesse Pardon,\r\nAnd set forth a deepe Repentance:\r\nNothing in his Life became him,\r\nLike the leauing it. Hee dy\'de,\r\nAs one that had beene studied in his death,\r\nTo throw away the dearest thing he ow\'d,\r\nAs \'twere a carelesse Trifle\r\n\r\n King. There\'s no Art,\r\nTo finde the Mindes construction in the Face.\r\nHe was a Gentleman, on whom I built\r\nAn absolute Trust.\r\nEnter Macbeth, Banquo, Rosse, and Angus.\r\n\r\nO worthyest Cousin,\r\nThe sinne of my Ingratitude euen now\r\nWas heauie on me. Thou art so farre before,\r\nThat swiftest Wing of Recompence is slow,\r\nTo ouertake thee. Would thou hadst lesse deseru\'d,\r\nThat the proportion both of thanks, and payment,\r\nMight haue beene mine: onely I haue left to say,\r\nMore is thy due, then more then all can pay\r\n\r\n Macb. The seruice, and the loyaltie I owe,\r\nIn doing it, payes it selfe.\r\nYour Highnesse part, is to receiue our Duties:\r\nAnd our Duties are to your Throne, and State,\r\nChildren, and Seruants; which doe but what they should,\r\nBy doing euery thing safe toward your Loue\r\nAnd Honor\r\n\r\n King. Welcome hither:\r\nI haue begun to plant thee, and will labour\r\nTo make thee full of growing. Noble Banquo,\r\nThat hast no lesse deseru\'d, nor must be knowne\r\nNo lesse to haue done so: Let me enfold thee,\r\nAnd hold thee to my Heart\r\n\r\n Banq. There if I grow,\r\nThe Haruest is your owne\r\n\r\n King. My plenteous Ioyes,\r\nWanton in fulnesse, seeke to hide themselues\r\nIn drops of sorrow. Sonnes, Kinsmen, Thanes,\r\nAnd you whose places are the nearest, know,\r\nWe will establish our Estate vpon\r\nOur eldest, Malcolme, whom we name hereafter,\r\nThe Prince of Cumberland: which Honor must\r\nNot vnaccompanied, inuest him onely,\r\nBut signes of Noblenesse, like Starres, shall shine\r\nOn all deseruers. From hence to Envernes,\r\nAnd binde vs further to you\r\n\r\n Macb. The Rest is Labor, which is not vs\'d for you:\r\nIle be my selfe the Herbenger, and make ioyfull\r\nThe hearing of my Wife, with your approach:\r\nSo humbly take my leaue\r\n\r\n King. My worthy Cawdor\r\n\r\n Macb. The Prince of Cumberland: that is a step,\r\nOn which I must fall downe, or else o\'re-leape,\r\nFor in my way it lyes. Starres hide your fires,\r\nLet not Light see my black and deepe desires:\r\nThe Eye winke at the Hand: yet let that bee,\r\nWhich the Eye feares, when it is done to see.\r\nEnter.\r\n\r\n King. True worthy Banquo: he is full so valiant,\r\nAnd in his commendations, I am fed:\r\nIt is a Banquet to me. Let\'s after him,\r\nWhose care is gone before, to bid vs welcome:\r\nIt is a peerelesse Kinsman.\r\n\r\nFlourish. Exeunt.\r\n\r\n\r\nScena Quinta.\r\n\r\nEnter Macbeths Wife alone with a Letter.\r\n\r\n Lady. They met me in the day of successe: and I haue\r\nlearn\'d by the perfect\'st report, they haue more in them, then\r\nmortall knowledge. When I burnt in desire to question them\r\nfurther, they made themselues Ayre, into which they vanish\'d.\r\nWhiles I stood rapt in the wonder of it, came Missiues from\r\nthe King, who all-hail\'d me Thane of Cawdor, by which Title\r\nbefore, these weyward Sisters saluted me, and referr\'d me to\r\nthe comming on of time, with haile King that shalt be. This\r\nhaue I thought good to deliuer thee (my dearest Partner of\r\nGreatnesse) that thou might\'st not loose the dues of reioycing\r\nby being ignorant of what Greatnesse is promis\'d thee. Lay\r\nit to thy heart and farewell.\r\nGlamys thou art, and Cawdor, and shalt be\r\nWhat thou art promis\'d: yet doe I feare thy Nature,\r\nIt is too full o\'th\' Milke of humane kindnesse,\r\nTo catch the neerest way. Thou would\'st be great,\r\nArt not without Ambition, but without\r\nThe illnesse should attend it. What thou would\'st highly,\r\nThat would\'st thou holily: would\'st not play false,\r\nAnd yet would\'st wrongly winne.\r\nThould\'st haue, great Glamys, that which cryes,\r\nThus thou must doe, if thou haue it;\r\nAnd that which rather thou do\'st feare to doe,\r\nThen wishest should be vndone. High thee hither,\r\nThat I may powre my Spirits in thine Eare,\r\nAnd chastise with the valour of my Tongue\r\nAll that impeides thee from the Golden Round,\r\nWhich Fate and Metaphysicall ayde doth seeme\r\nTo haue thee crown\'d withall.\r\nEnter Messenger.\r\n\r\nWhat is your tidings?\r\n Mess. The King comes here to Night\r\n\r\n Lady. Thou\'rt mad to say it.\r\nIs not thy Master with him? who, wer\'t so,\r\nWould haue inform\'d for preparation\r\n\r\n Mess. So please you, it is true: our Thane is comming:\r\nOne of my fellowes had the speed of him;\r\nWho almost dead for breath, had scarcely more\r\nThen would make vp his Message\r\n\r\n Lady. Giue him tending,\r\nHe brings great newes,\r\n\r\nExit Messenger.\r\n\r\nThe Rauen himselfe is hoarse,\r\nThat croakes the fatall entrance of Duncan\r\nVnder my Battlements. Come you Spirits,\r\nThat tend on mortall thoughts, vnsex me here,\r\nAnd fill me from the Crowne to the Toe, top-full\r\nOf direst Crueltie: make thick my blood,\r\nStop vp th\' accesse, and passage to Remorse,\r\nThat no compunctious visitings of Nature\r\nShake my fell purpose, nor keepe peace betweene\r\nTh\' effect, and hit. Come to my Womans Brests,\r\nAnd take my Milke for Gall, you murth\'ring Ministers,\r\nWhere-euer, in your sightlesse substances,\r\nYou wait on Natures Mischiefe. Come thick Night,\r\nAnd pall thee in the dunnest smoake of Hell,\r\n\r\nThat my keene Knife see not the Wound it makes,\r\nNor Heauen peepe through the Blanket of the darke,\r\nTo cry, hold, hold.\r\nEnter Macbeth.\r\n\r\nGreat Glamys, worthy Cawdor,\r\nGreater then both, by the all-haile hereafter,\r\nThy Letters haue transported me beyond\r\nThis ignorant present, and I feele now\r\nThe future in the instant\r\n\r\n Macb. My dearest Loue,\r\nDuncan comes here to Night\r\n\r\n Lady. And when goes hence?\r\n Macb. To morrow, as he purposes\r\n\r\n Lady. O neuer,\r\nShall Sunne that Morrow see.\r\nYour Face, my Thane, is as a Booke, where men\r\nMay reade strange matters, to beguile the time.\r\nLooke like the time, beare welcome in your Eye,\r\nYour Hand, your Tongue: looke like th\' innocent flower,\r\nBut be the Serpent vnder\'t. He that\'s comming,\r\nMust be prouided for: and you shall put\r\nThis Nights great Businesse into my dispatch,\r\nWhich shall to all our Nights, and Dayes to come,\r\nGiue solely soueraigne sway, and Masterdome\r\n\r\n Macb. We will speake further,\r\n Lady. Onely looke vp cleare:\r\nTo alter fauor, euer is to feare:\r\nLeaue all the rest to me.\r\n\r\nExeunt.\r\n\r\n\r\nScena Sexta.\r\n\r\nHoboyes, and Torches. Enter King, Malcolme, Donalbaine,\r\nBanquo, Lenox,\r\nMacduff, Rosse, Angus, and Attendants.\r\n\r\n King. This Castle hath a pleasant seat,\r\nThe ayre nimbly and sweetly recommends it selfe\r\nVnto our gentle sences\r\n\r\n Banq. This Guest of Summer,\r\nThe Temple-haunting Barlet does approue,\r\nBy his loued Mansonry, that the Heauens breath\r\nSmells wooingly here: no Iutty frieze,\r\nButtrice, nor Coigne of Vantage, but this Bird\r\nHath made his pendant Bed, and procreant Cradle,\r\nWhere they must breed, and haunt: I haue obseru\'d\r\nThe ayre is delicate.\r\nEnter Lady.\r\n\r\n King. See, see our honor\'d Hostesse:\r\nThe Loue that followes vs, sometime is our trouble,\r\nWhich still we thanke as Loue. Herein I teach you,\r\nHow you shall bid God-eyld vs for your paines,\r\nAnd thanke vs for your trouble\r\n\r\n Lady. All our seruice,\r\nIn euery point twice done, and then done double,\r\nWere poore, and single Businesse, to contend\r\nAgainst those Honors deepe, and broad,\r\nWherewith your Maiestie loades our House:\r\nFor those of old, and the late Dignities,\r\nHeap\'d vp to them, we rest your Ermites\r\n\r\n King. Where\'s the Thane of Cawdor?\r\nWe courst him at the heeles, and had a purpose\r\nTo be his Purueyor: But he rides well,\r\nAnd his great Loue (sharpe as his Spurre) hath holp him\r\nTo his home before vs: Faire and Noble Hostesse\r\nWe are your guest to night\r\n\r\n La. Your Seruants euer,\r\nHaue theirs, themselues, and what is theirs in compt,\r\nTo make their Audit at your Highnesse pleasure,\r\nStill to returne your owne\r\n\r\n King. Giue me your hand:\r\nConduct me to mine Host we loue him highly,\r\nAnd shall continue, our Graces towards him.\r\nBy your leaue Hostesse.\r\n\r\nExeunt.\r\n\r\nScena Septima.\r\n\r\nHoboyes. Torches. Enter a Sewer, and diuers Seruants with Dishes\r\nand\r\nSeruice ouer the Stage. Then enter Macbeth\r\n\r\n Macb. If it were done, when \'tis done, then \'twer well,\r\nIt were done quickly: If th\' Assassination\r\nCould trammell vp the Consequence, and catch\r\nWith his surcease, Successe: that but this blow\r\nMight be the be all, and the end all. Heere,\r\nBut heere, vpon this Banke and Schoole of time,\r\nWee\'ld iumpe the life to come. But in these Cases,\r\nWe still haue iudgement heere, that we but teach\r\nBloody Instructions, which being taught, returne\r\nTo plague th\' Inuenter, this euen-handed Iustice\r\nCommends th\' Ingredience of our poyson\'d Challice\r\nTo our owne lips. Hee\'s heere in double trust;\r\nFirst, as I am his Kinsman, and his Subiect,\r\nStrong both against the Deed: Then, as his Host,\r\nWho should against his Murtherer shut the doore,\r\nNot beare the knife my selfe. Besides, this Duncane\r\nHath borne his Faculties so meeke; hath bin\r\nSo cleere in his great Office, that his Vertues\r\nWill pleade like Angels, Trumpet-tongu\'d against\r\nThe deepe damnation of his taking off:\r\nAnd Pitty, like a naked New-borne-Babe,\r\nStriding the blast, or Heauens Cherubin, hors\'d\r\nVpon the sightlesse Curriors of the Ayre,\r\nShall blow the horrid deed in euery eye,\r\nThat teares shall drowne the winde. I haue no Spurre\r\nTo pricke the sides of my intent, but onely\r\nVaulting Ambition, which ore-leapes it selfe,\r\nAnd falles on th\' other.\r\nEnter Lady.\r\n\r\nHow now? What Newes?\r\n La. He has almost supt: why haue you left the chamber?\r\n Mac. Hath he ask\'d for me?\r\n La. Know you not, he ha\'s?\r\n Mac. We will proceed no further in this Businesse:\r\nHe hath Honour\'d me of late, and I haue bought\r\nGolden Opinions from all sorts of people,\r\nWhich would be worne now in their newest glosse,\r\nNot cast aside so soone\r\n\r\n La. Was the hope drunke,\r\nWherein you drest your selfe? Hath it slept since?\r\nAnd wakes it now to looke so greene, and pale,\r\nAt what it did so freely? From this time,\r\nSuch I account thy loue. Art thou affear\'d\r\nTo be the same in thine owne Act, and Valour,\r\nAs thou art in desire? Would\'st thou haue that\r\nWhich thou esteem\'st the Ornament of Life,\r\nAnd liue a Coward in thine owne Esteeme?\r\nLetting I dare not, wait vpon I would,\r\nLike the poore Cat i\'th\' Addage\r\n\r\n Macb. Prythee peace:\r\nI dare do all that may become a man,\r\nWho dares do more, is none\r\n\r\n La. What Beast was\'t then\r\nThat made you breake this enterprize to me?\r\nWhen you durst do it, then you were a man:\r\nAnd to be more then what you were, you would\r\nBe so much more the man. Nor time, nor place\r\nDid then adhere, and yet you would make both:\r\nThey haue made themselues, and that their fitnesse now\r\nDo\'s vnmake you. I haue giuen Sucke, and know\r\nHow tender \'tis to loue the Babe that milkes me,\r\nI would, while it was smyling in my Face,\r\nHaue pluckt my Nipple from his Bonelesse Gummes,\r\nAnd dasht the Braines out, had I so sworne\r\nAs you haue done to this\r\n\r\n Macb. If we should faile?\r\n Lady. We faile?\r\nBut screw your courage to the sticking place,\r\nAnd wee\'le not fayle: when Duncan is asleepe,\r\n(Whereto the rather shall his dayes hard Iourney\r\nSoundly inuite him) his two Chamberlaines\r\nWill I with Wine, and Wassell, so conuince,\r\nThat Memorie, the Warder of the Braine,\r\nShall be a Fume, and the Receit of Reason\r\nA Lymbeck onely: when in Swinish sleepe,\r\nTheir drenched Natures lyes as in a Death,\r\nWhat cannot you and I performe vpon\r\nTh\' vnguarded Duncan? What not put vpon\r\nHis spungie Officers? who shall beare the guilt\r\nOf our great quell\r\n\r\n Macb. Bring forth Men-Children onely:\r\nFor thy vndaunted Mettle should compose\r\nNothing but Males. Will it not be receiu\'d,\r\nWhen we haue mark\'d with blood those sleepie two\r\nOf his owne Chamber, and vs\'d their very Daggers,\r\nThat they haue don\'t?\r\n Lady. Who dares receiue it other,\r\nAs we shall make our Griefes and Clamor rore,\r\nVpon his Death?\r\n Macb. I am settled, and bend vp\r\nEach corporall Agent to this terrible Feat.\r\nAway, and mock the time with fairest show,\r\nFalse Face must hide what the false Heart doth know.\r\n\r\nExeunt.\r\n\r\n\r\nActus Secundus. Scena Prima.\r\n\r\nEnter Banquo, and Fleance, with a Torch before him.\r\n\r\n Banq. How goes the Night, Boy?\r\n Fleance. The Moone is downe: I haue not heard the\r\nClock\r\n\r\n Banq. And she goes downe at Twelue\r\n\r\n Fleance. I take\'t, \'tis later, Sir\r\n\r\n Banq. Hold, take my Sword:\r\nThere\'s Husbandry in Heauen,\r\nTheir Candles are all out: take thee that too.\r\nA heauie Summons lyes like Lead vpon me,\r\nAnd yet I would not sleepe:\r\nMercifull Powers, restraine in me the cursed thoughts\r\nThat Nature giues way to in repose.\r\nEnter Macbeth, and a Seruant with a Torch.\r\n\r\nGiue me my Sword: who\'s there?\r\n Macb. A Friend\r\n\r\n Banq. What Sir, not yet at rest? the King\'s a bed.\r\nHe hath beene in vnusuall Pleasure,\r\nAnd sent forth great Largesse to your Offices.\r\nThis Diamond he greetes your Wife withall,\r\nBy the name of most kind Hostesse,\r\nAnd shut vp in measurelesse content\r\n\r\n Mac. Being vnprepar\'d,\r\nOur will became the seruant to defect,\r\nWhich else should free haue wrought\r\n\r\n Banq. All\'s well.\r\nI dreamt last Night of the three weyward Sisters:\r\nTo you they haue shew\'d some truth\r\n\r\n Macb. I thinke not of them:\r\nYet when we can entreat an houre to serue,\r\nWe would spend it in some words vpon that Businesse,\r\nIf you would graunt the time\r\n\r\n Banq. At your kind\'st leysure\r\n\r\n Macb. If you shall cleaue to my consent,\r\nWhen \'tis, it shall make Honor for you\r\n\r\n Banq. So I lose none,\r\nIn seeking to augment it, but still keepe\r\nMy Bosome franchis\'d, and Allegeance cleare,\r\nI shall be counsail\'d\r\n\r\n Macb. Good repose the while\r\n\r\n Banq. Thankes Sir: the like to you.\r\n\r\nExit Banquo.\r\n\r\n Macb. Goe bid thy Mistresse, when my drinke is ready,\r\nShe strike vpon the Bell. Get thee to bed.\r\nEnter.\r\n\r\nIs this a Dagger, which I see before me,\r\nThe Handle toward my Hand? Come, let me clutch thee:\r\nI haue thee not, and yet I see thee still.\r\nArt thou not fatall Vision, sensible\r\nTo feeling, as to sight? or art thou but\r\nA Dagger of the Minde, a false Creation,\r\nProceeding from the heat-oppressed Braine?\r\nI see thee yet, in forme as palpable,\r\nAs this which now I draw.\r\nThou marshall\'st me the way that I was going,\r\nAnd such an Instrument I was to vse.\r\nMine Eyes are made the fooles o\'th\' other Sences,\r\nOr else worth all the rest: I see thee still;\r\nAnd on thy Blade, and Dudgeon, Gouts of Blood,\r\nWhich was not so before. There\'s no such thing:\r\nIt is the bloody Businesse, which informes\r\nThus to mine Eyes. Now o\'re the one halfe World\r\nNature seemes dead, and wicked Dreames abuse\r\nThe Curtain\'d sleepe: Witchcraft celebrates\r\nPale Heccats Offrings: and wither\'d Murther,\r\nAlarum\'d by his Centinell, the Wolfe,\r\nWhose howle\'s his Watch, thus with his stealthy pace,\r\nWith Tarquins rauishing sides, towards his designe\r\nMoues like a Ghost. Thou sowre and firme-set Earth\r\nHeare not my steps, which they may walke, for feare\r\nThy very stones prate of my where-about,\r\nAnd take the present horror from the time,\r\nWhich now sutes with it. Whiles I threat, he liues:\r\nWords to the heat of deedes too cold breath giues.\r\n\r\nA Bell rings.\r\n\r\nI goe, and it is done: the Bell inuites me.\r\nHeare it not, Duncan, for it is a Knell,\r\nThat summons thee to Heauen, or to Hell.\r\nEnter.\r\n\r\n\r\nScena Secunda.\r\n\r\nEnter Lady.\r\n\r\n La. That which hath made the[m] drunk, hath made me bold:\r\nWhat hath quench\'d them, hath giuen me fire.\r\nHearke, peace: it was the Owle that shriek\'d,\r\nThe fatall Bell-man, which giues the stern\'st good-night.\r\nHe is about it, the Doores are open:\r\nAnd the surfeted Groomes doe mock their charge\r\nWith Snores. I haue drugg\'d their Possets,\r\nThat Death and Nature doe contend about them,\r\nWhether they liue, or dye.\r\nEnter Macbeth.\r\n\r\n Macb. Who\'s there? what hoa?\r\n Lady. Alack, I am afraid they haue awak\'d,\r\nAnd \'tis not done: th\' attempt, and not the deed,\r\nConfounds vs: hearke: I lay\'d their Daggers ready,\r\nHe could not misse \'em. Had he not resembled\r\nMy Father as he slept, I had don\'t.\r\nMy Husband?\r\n Macb. I haue done the deed:\r\nDidst thou not heare a noyse?\r\n Lady. I heard the Owle schreame, and the Crickets cry.\r\nDid not you speake?\r\n Macb. When?\r\n Lady. Now\r\n\r\n Macb. As I descended?\r\n Lady. I\r\n\r\n Macb. Hearke, who lyes i\'th\' second Chamber?\r\n Lady. Donalbaine\r\n\r\n Mac. This is a sorry sight\r\n\r\n Lady. A foolish thought, to say a sorry sight\r\n\r\n Macb. There\'s one did laugh in\'s sleepe,\r\nAnd one cry\'d Murther, that they did wake each other:\r\nI stood, and heard them: But they did say their Prayers,\r\nAnd addrest them againe to sleepe\r\n\r\n Lady. There are two lodg\'d together\r\n\r\n Macb. One cry\'d God blesse vs, and Amen the other,\r\nAs they had seene me with these Hangmans hands:\r\nListning their feare, I could not say Amen,\r\nWhen they did say God blesse vs\r\n\r\n Lady. Consider it not so deepely\r\n\r\n Mac. But wherefore could not I pronounce Amen?\r\nI had most need of Blessing, and Amen stuck in my throat\r\n\r\n Lady. These deeds must not be thought\r\nAfter these wayes: so, it will make vs mad\r\n\r\n Macb. Me thought I heard a voyce cry, Sleep no more:\r\nMacbeth does murther Sleepe, the innocent Sleepe,\r\nSleepe that knits vp the rauel\'d Sleeue of Care,\r\nThe death of each dayes Life, sore Labors Bath,\r\nBalme of hurt Mindes, great Natures second Course,\r\nChiefe nourisher in Life\'s Feast\r\n\r\n Lady. What doe you meane?\r\n Macb. Still it cry\'d, Sleepe no more to all the House:\r\nGlamis hath murther\'d Sleepe, and therefore Cawdor\r\nShall sleepe no more: Macbeth shall sleepe no more\r\n\r\n Lady. Who was it, that thus cry\'d? why worthy Thane,\r\nYou doe vnbend your Noble strength, to thinke\r\nSo braine-sickly of things: Goe get some Water,\r\nAnd wash this filthie Witnesse from your Hand.\r\nWhy did you bring these Daggers from the place?\r\nThey must lye there: goe carry them, and smeare\r\nThe sleepie Groomes with blood\r\n\r\n Macb. Ile goe no more:\r\nI am afraid, to thinke what I haue done:\r\nLooke on\'t againe, I dare not\r\n\r\n Lady. Infirme of purpose:\r\nGiue me the Daggers: the sleeping, and the dead,\r\nAre but as Pictures: \'tis the Eye of Childhood,\r\nThat feares a painted Deuill. If he doe bleed,\r\nIle guild the Faces of the Groomes withall,\r\nFor it must seeme their Guilt.\r\nEnter.\r\n\r\nKnocke within.\r\n\r\n Macb. Whence is that knocking?\r\nHow is\'t with me, when euery noyse appalls me?\r\nWhat Hands are here? hah: they pluck out mine Eyes.\r\nWill all great Neptunes Ocean wash this blood\r\nCleane from my Hand? no: this my Hand will rather\r\nThe multitudinous Seas incarnardine,\r\nMaking the Greene one, Red.\r\nEnter Lady.\r\n\r\n Lady. My Hands are of your colour: but I shame\r\nTo weare a Heart so white.\r\n\r\nKnocke.\r\n\r\nI heare a knocking at the South entry:\r\nRetyre we to our Chamber:\r\nA little Water cleares vs of this deed.\r\nHow easie is it then? your Constancie\r\nHath left you vnattended.\r\n\r\nKnocke.\r\n\r\nHearke, more knocking.\r\nGet on your Night-Gowne, least occasion call vs,\r\nAnd shew vs to be Watchers: be not lost\r\nSo poorely in your thoughts\r\n\r\n Macb. To know my deed,\r\n\r\nKnocke.\r\n\r\n\'Twere best not know my selfe.\r\nWake Duncan with thy knocking:\r\nI would thou could\'st.\r\n\r\nExeunt.\r\n\r\n\r\nScena Tertia.\r\n\r\nEnter a Porter. Knocking within.\r\n\r\n Porter. Here\'s a knocking indeede: if a man were\r\nPorter of Hell Gate, hee should haue old turning the\r\nKey.\r\n\r\nKnock.\r\n\r\nKnock, Knock, Knock. Who\'s there\r\ni\'th\' name of Belzebub? Here\'s a Farmer, that hang\'d\r\nhimselfe on th\' expectation of Plentie: Come in time, haue\r\nNapkins enow about you, here you\'le sweat for\'t.\r\n\r\nKnock.\r\n\r\nKnock, knock. Who\'s there in th\' other Deuils Name?\r\nFaith here\'s an Equiuocator, that could sweare in both\r\nthe Scales against eyther Scale, who committed Treason\r\nenough for Gods sake, yet could not equiuocate to Heauen:\r\noh come in, Equiuocator.\r\n\r\nKnock.\r\n\r\nKnock, Knock, Knock. Who\'s there? \'Faith here\'s an English\r\nTaylor come hither, for stealing out of a French Hose:\r\nCome in Taylor, here you may rost your Goose.\r\nKnock.\r\n\r\nKnock, Knock. Neuer at quiet: What are you? but this\r\nplace is too cold for Hell. Ile Deuill-Porter it no further:\r\nI had thought to haue let in some of all Professions, that\r\ngoe the Primrose way to th\' euerlasting Bonfire.\r\n\r\nKnock.\r\n\r\nAnon, anon, I pray you remember the Porter.\r\nEnter Macduff, and Lenox.\r\n\r\n Macd. Was it so late, friend, ere you went to Bed,\r\nThat you doe lye so late?\r\n Port. Faith Sir, we were carowsing till the second Cock:\r\nAnd Drinke, Sir, is a great prouoker of three things\r\n\r\n Macd. What three things does Drinke especially\r\nprouoke?\r\n Port. Marry, Sir, Nose-painting, Sleepe, and Vrine.\r\nLecherie, Sir, it prouokes, and vnprouokes: it prouokes\r\nthe desire, but it takes away the performance. Therefore\r\nmuch Drinke may be said to be an Equiuocator with Lecherie:\r\nit makes him, and it marres him; it sets him on,\r\nand it takes him off; it perswades him, and dis-heartens\r\nhim; makes him stand too, and not stand too: in conclusion,\r\nequiuocates him in a sleepe, and giuing him the Lye,\r\nleaues him\r\n\r\n Macd. I beleeue, Drinke gaue thee the Lye last Night\r\n\r\n Port. That it did, Sir, i\'the very Throat on me: but I\r\nrequited him for his Lye, and (I thinke) being too strong\r\nfor him, though he tooke vp my Legges sometime, yet I\r\nmade a Shift to cast him.\r\nEnter Macbeth.\r\n\r\n Macd. Is thy Master stirring?\r\nOur knocking ha\'s awak\'d him: here he comes\r\n\r\n Lenox. Good morrow, Noble Sir\r\n\r\n Macb. Good morrow both\r\n\r\n Macd. Is the King stirring, worthy Thane?\r\n Macb. Not yet\r\n\r\n Macd. He did command me to call timely on him,\r\nI haue almost slipt the houre\r\n\r\n Macb. Ile bring you to him\r\n\r\n Macd. I know this is a ioyfull trouble to you:\r\nBut yet \'tis one\r\n\r\n Macb. The labour we delight in, Physicks paine:\r\nThis is the Doore\r\n\r\n Macd. Ile make so bold to call, for \'tis my limitted\r\nseruice.\r\n\r\nExit Macduffe.\r\n\r\n Lenox. Goes the King hence to day?\r\n Macb. He does: he did appoint so\r\n\r\n Lenox. The Night ha\'s been vnruly:\r\nWhere we lay, our Chimneys were blowne downe,\r\nAnd (as they say) lamentings heard i\'th\' Ayre;\r\nStrange Schreemes of Death,\r\nAnd Prophecying, with Accents terrible,\r\nOf dyre Combustion, and confus\'d Euents,\r\nNew hatch\'d toth\' wofull time.\r\nThe obscure Bird clamor\'d the liue-long Night.\r\nSome say, the Earth was Feuorous,\r\nAnd did shake\r\n\r\n Macb. \'Twas a rough Night\r\n\r\n Lenox. My young remembrance cannot paralell\r\nA fellow to it.\r\nEnter Macduff.\r\n\r\n Macd. O horror, horror, horror,\r\nTongue nor Heart cannot conceiue, nor name thee\r\n\r\n Macb. and Lenox. What\'s the matter?\r\n Macd. Confusion now hath made his Master-peece:\r\nMost sacrilegious Murther hath broke ope\r\nThe Lords anoynted Temple, and stole thence\r\nThe Life o\'th\' Building\r\n\r\n Macb. What is\'t you say, the Life?\r\n Lenox. Meane you his Maiestie?\r\n Macd. Approch the Chamber, and destroy your sight\r\nWith a new Gorgon. Doe not bid me speake:\r\nSee, and then speake your selues: awake, awake,\r\n\r\nExeunt. Macbeth and Lenox.\r\n\r\nRing the Alarum Bell: Murther, and Treason,\r\nBanquo, and Donalbaine: Malcolme awake,\r\nShake off this Downey sleepe, Deaths counterfeit,\r\nAnd looke on Death it selfe: vp, vp, and see\r\nThe great Doomes Image: Malcolme, Banquo,\r\nAs from your Graues rise vp, and walke like Sprights,\r\nTo countenance this horror. Ring the Bell.\r\n\r\nBell rings. Enter Lady.\r\n\r\n Lady. What\'s the Businesse?\r\nThat such a hideous Trumpet calls to parley\r\nThe sleepers of the House? speake, speake\r\n\r\n Macd. O gentle Lady,\r\n\'Tis not for you to heare what I can speake:\r\nThe repetition in a Womans eare,\r\nWould murther as it fell.\r\nEnter Banquo.\r\n\r\nO Banquo, Banquo, Our Royall Master\'s murther\'d\r\n\r\n Lady. Woe, alas:\r\nWhat, in our House?\r\n Ban. Too cruell, any where.\r\nDeare Duff, I prythee contradict thy selfe,\r\nAnd say, it is not so.\r\nEnter Macbeth, Lenox, and Rosse.\r\n\r\n Macb. Had I but dy\'d an houre before this chance,\r\nI had liu\'d a blessed time: for from this instant,\r\nThere\'s nothing serious in Mortalitie:\r\nAll is but Toyes: Renowne and Grace is dead,\r\nThe Wine of Life is drawne, and the meere Lees\r\nIs left this Vault, to brag of.\r\nEnter Malcolme and Donalbaine.\r\n\r\n Donal. What is amisse?\r\n Macb. You are, and doe not know\'t:\r\nThe Spring, the Head, the Fountaine of your Blood\r\nIs stopt, the very Source of it is stopt\r\n\r\n Macd. Your Royall Father\'s murther\'d\r\n\r\n Mal. Oh, by whom?\r\n Lenox. Those of his Chamber, as it seem\'d, had don\'t:\r\nTheir Hands and Faces were all badg\'d with blood,\r\nSo were their Daggers, which vnwip\'d, we found\r\nVpon their Pillowes: they star\'d, and were distracted,\r\nNo mans Life was to be trusted with them\r\n\r\n Macb. O, yet I doe repent me of my furie,\r\nThat I did kill them\r\n\r\n Macd. Wherefore did you so?\r\n Macb. Who can be wise, amaz\'d, temp\'rate, & furious,\r\nLoyall, and Neutrall, in a moment? No man:\r\nTh\' expedition of my violent Loue\r\nOut-run the pawser, Reason. Here lay Duncan,\r\nHis Siluer skinne, lac\'d with His Golden Blood,\r\nAnd his gash\'d Stabs, look\'d like a Breach in Nature,\r\nFor Ruines wastfull entrance: there the Murtherers,\r\nSteep\'d in the Colours of their Trade; their Daggers\r\nVnmannerly breech\'d with gore: who could refraine,\r\nThat had a heart to loue; and in that heart,\r\nCourage, to make\'s loue knowne?\r\n Lady. Helpe me hence, hoa\r\n\r\n Macd. Looke to the Lady\r\n\r\n Mal. Why doe we hold our tongues,\r\nThat most may clayme this argument for ours?\r\n Donal. What should be spoken here,\r\nWhere our Fate hid in an augure hole,\r\nMay rush, and seize vs? Let\'s away,\r\nOur Teares are not yet brew\'d\r\n\r\n Mal. Nor our strong Sorrow\r\nVpon the foot of Motion\r\n\r\n Banq. Looke to the Lady:\r\nAnd when we haue our naked Frailties hid,\r\nThat suffer in exposure; let vs meet,\r\nAnd question this most bloody piece of worke,\r\nTo know it further. Feares and scruples shake vs:\r\nIn the great Hand of God I stand, and thence,\r\nAgainst the vndivulg\'d pretence, I fight\r\nOf Treasonous Mallice\r\n\r\n Macd. And so doe I\r\n\r\n All. So all\r\n\r\n Macb. Let\'s briefely put on manly readinesse,\r\nAnd meet i\'th\' Hall together\r\n\r\n All. Well contented.\r\n\r\nExeunt.\r\n\r\n Malc. What will you doe?\r\nLet\'s not consort with them:\r\nTo shew an vnfelt Sorrow, is an Office\r\nWhich the false man do\'s easie.\r\nIle to England\r\n\r\n Don. To Ireland, I:\r\nOur seperated fortune shall keepe vs both the safer:\r\nWhere we are, there\'s Daggers in mens smiles;\r\nThe neere in blood, the neerer bloody\r\n\r\n Malc. This murtherous Shaft that\'s shot,\r\nHath not yet lighted: and our safest way,\r\nIs to auoid the ayme. Therefore to Horse,\r\nAnd let vs not be daintie of leaue-taking,\r\nBut shift away: there\'s warrant in that Theft,\r\nWhich steales it selfe, when there\'s no mercie left.\r\n\r\nExeunt.\r\n\r\n\r\n\r\nScena Quarta.\r\n\r\nEnter Rosse, with an Old man.\r\n\r\n Old man. Threescore and ten I can remember well,\r\nWithin the Volume of which Time, I haue seene\r\nHoures dreadfull, and things strange: but this sore Night\r\nHath trifled former knowings\r\n\r\n Rosse. Ha, good Father,\r\nThou seest the Heauens, as troubled with mans Act,\r\nThreatens his bloody Stage: byth\' Clock \'tis Day,\r\nAnd yet darke Night strangles the trauailing Lampe:\r\nIs\'t Nights predominance, or the Dayes shame,\r\nThat Darknesse does the face of Earth intombe,\r\nWhen liuing Light should kisse it?\r\n Old man. \'Tis vnnaturall,\r\nEuen like the deed that\'s done: On Tuesday last,\r\nA Faulcon towring in her pride of place,\r\nWas by a Mowsing Owle hawkt at, and kill\'d\r\n\r\n Rosse. And Duncans Horses,\r\n(A thing most strange, and certaine)\r\nBeauteous, and swift, the Minions of their Race,\r\nTurn\'d wilde in nature, broke their stalls, flong out,\r\nContending \'gainst Obedience, as they would\r\nMake Warre with Mankinde\r\n\r\n Old man. \'Tis said, they eate each other\r\n\r\n Rosse. They did so:\r\nTo th\' amazement of mine eyes that look\'d vpon\'t.\r\nEnter Macduffe.\r\n\r\nHeere comes the good Macduffe.\r\nHow goes the world Sir, now?\r\n Macd. Why see you not?\r\n Ross. Is\'t known who did this more then bloody deed?\r\n Macd. Those that Macbeth hath slaine\r\n\r\n Ross. Alas the day,\r\nWhat good could they pretend?\r\n Macd. They were subborned,\r\nMalcolme, and Donalbaine the Kings two Sonnes\r\nAre stolne away and fled, which puts vpon them\r\nSuspition of the deed\r\n\r\n Rosse. \'Gainst Nature still,\r\nThriftlesse Ambition, that will rauen vp\r\nThine owne liues meanes: Then \'tis most like,\r\nThe Soueraignty will fall vpon Macbeth\r\n\r\n Macd. He is already nam\'d, and gone to Scone\r\nTo be inuested\r\n\r\n Rosse. Where is Duncans body?\r\n Macd. Carried to Colmekill,\r\nThe Sacred Store-house of his Predecessors,\r\nAnd Guardian of their Bones\r\n\r\n Rosse. Will you to Scone?\r\n Macd. No Cosin, Ile to Fife\r\n\r\n Rosse. Well, I will thither\r\n\r\n Macd. Well may you see things wel done there: Adieu\r\nLeast our old Robes sit easier then our new\r\n\r\n Rosse. Farewell, Father\r\n\r\n Old M. Gods benyson go with you, and with those\r\nThat would make good of bad, and Friends of Foes.\r\n\r\nExeunt. omnes\r\n\r\nActus Tertius. Scena Prima.\r\n\r\nEnter Banquo.\r\n\r\n Banq. Thou hast it now, King, Cawdor, Glamis, all,\r\nAs the weyard Women promis\'d, and I feare\r\nThou playd\'st most fowly for\'t: yet it was saide\r\nIt should not stand in thy Posterity,\r\nBut that my selfe should be the Roote, and Father\r\nOf many Kings. If there come truth from them,\r\nAs vpon thee Macbeth, their Speeches shine,\r\nWhy by the verities on thee made good,\r\nMay they not be my Oracles as well,\r\nAnd set me vp in hope. But hush, no more.\r\n\r\nSenit sounded. Enter Macbeth as King, Lady Lenox, Rosse, Lords,\r\nand\r\nAttendants.\r\n\r\n Macb. Heere\'s our chiefe Guest\r\n\r\n La. If he had beene forgotten,\r\nIt had bene as a gap in our great Feast,\r\nAnd all-thing vnbecomming\r\n\r\n Macb. To night we hold a solemne Supper sir,\r\nAnd Ile request your presence\r\n\r\n Banq. Let your Highnesse\r\nCommand vpon me, to the which my duties\r\nAre with a most indissoluble tye\r\nFor euer knit\r\n\r\n Macb. Ride you this afternoone?\r\n Ban. I, my good Lord\r\n\r\n Macb. We should haue else desir\'d your good aduice\r\n(Which still hath been both graue, and prosperous)\r\nIn this dayes Councell: but wee\'le take to morrow.\r\nIs\'t farre you ride?\r\n Ban. As farre, my Lord, as will fill vp the time\r\n\'Twixt this, and Supper. Goe not my Horse the better,\r\nI must become a borrower of the Night,\r\nFor a darke houre, or twaine\r\n\r\n Macb. Faile not our Feast\r\n\r\n Ban. My Lord, I will not\r\n\r\n Macb. We heare our bloody Cozens are bestow\'d\r\nIn England, and in Ireland, not confessing\r\nTheir cruell Parricide, filling their hearers\r\nWith strange inuention. But of that to morrow,\r\nWhen therewithall, we shall haue cause of State,\r\nCrauing vs ioyntly. Hye you to Horse:\r\nAdieu, till you returne at Night.\r\nGoes Fleance with you?\r\n Ban. I, my good Lord: our time does call vpon\'s\r\n\r\n Macb. I wish your Horses swift, and sure of foot:\r\nAnd so I doe commend you to their backs.\r\nFarwell.\r\n\r\nExit Banquo.\r\n\r\nLet euery man be master of his time,\r\nTill seuen at Night, to make societie\r\nThe sweeter welcome:\r\nWe will keepe our selfe till Supper time alone:\r\nWhile then, God be with you.\r\n\r\nExeunt. Lords.\r\n\r\nSirrha, a word with you: Attend those men\r\nOur pleasure?\r\n Seruant. They are, my Lord, without the Pallace\r\nGate\r\n\r\n Macb. Bring them before vs.\r\n\r\nExit Seruant.\r\n\r\nTo be thus, is nothing, but to be safely thus\r\nOur feares in Banquo sticke deepe,\r\nAnd in his Royaltie of Nature reignes that\r\nWhich would be fear\'d. \'Tis much he dares,\r\nAnd to that dauntlesse temper of his Minde,\r\nHe hath a Wisdome, that doth guide his Valour,\r\nTo act in safetie. There is none but he,\r\nWhose being I doe feare: and vnder him,\r\nMy Genius is rebuk\'d, as it is said\r\nMark Anthonies was by Caesar. He chid the Sisters,\r\nWhen first they put the Name of King vpon me,\r\nAnd bad them speake to him. Then Prophet-like,\r\nThey hayl\'d him Father to a Line of Kings.\r\nVpon my Head they plac\'d a fruitlesse Crowne,\r\nAnd put a barren Scepter in my Gripe,\r\nThence to be wrencht with an vnlineall Hand,\r\nNo Sonne of mine succeeding: if\'t be so,\r\nFor Banquo\'s Issue haue I fil\'d my Minde,\r\nFor them, the gracious Duncan haue I murther\'d,\r\nPut Rancours in the Vessell of my Peace\r\nOnely for them, and mine eternall Iewell\r\nGiuen to the common Enemie of Man,\r\nTo make them Kings, the Seedes of Banquo Kings.\r\nRather then so, come Fate into the Lyst,\r\nAnd champion me to th\' vtterance.\r\nWho\'s there?\r\nEnter Seruant, and two Murtherers.\r\n\r\nNow goe to the Doore, and stay there till we call.\r\n\r\nExit Seruant.\r\n\r\nWas it not yesterday we spoke together?\r\n Murth. It was, so please your Highnesse\r\n\r\n Macb. Well then,\r\nNow haue you consider\'d of my speeches:\r\nKnow, that it was he, in the times past,\r\nWhich held you so vnder fortune,\r\nWhich you thought had been our innocent selfe.\r\nThis I made good to you, in our last conference,\r\nPast in probation with you:\r\nHow you were borne in hand, how crost:\r\nThe Instruments: who wrought with them:\r\nAnd all things else, that might\r\nTo halfe a Soule, and to a Notion craz\'d,\r\nSay, Thus did Banquo\r\n\r\n 1.Murth. You made it knowne to vs\r\n\r\n Macb. I did so:\r\nAnd went further, which is now\r\nOur point of second meeting.\r\nDoe you finde your patience so predominant,\r\nIn your nature, that you can let this goe?\r\nAre you so Gospell\'d, to pray for this good man,\r\nAnd for his Issue, whose heauie hand\r\nHath bow\'d you to the Graue, and begger\'d\r\nYours for euer?\r\n 1.Murth. We are men, my Liege\r\n\r\n Macb. I, in the Catalogue ye goe for men,\r\nAs Hounds, and Greyhounds, Mungrels, Spaniels, Curres,\r\nShowghes, Water-Rugs, and Demy-Wolues are clipt\r\nAll by the Name of Dogges: the valued file\r\nDistinguishes the swift, the slow, the subtle,\r\nThe House-keeper, the Hunter, euery one\r\nAccording to the gift, which bounteous Nature\r\nHath in him clos\'d: whereby he does receiue\r\nParticular addition, from the Bill,\r\nThat writes them all alike: and so of men.\r\nNow, if you haue a station in the file,\r\nNot i\'th\' worst ranke of Manhood, say\'t,\r\nAnd I will put that Businesse in your Bosomes,\r\nWhose execution takes your Enemie off,\r\nGrapples you to the heart; and loue of vs,\r\nWho weare our Health but sickly in his Life,\r\nWhich in his Death were perfect\r\n\r\n 2.Murth. I am one, my Liege,\r\nWhom the vile Blowes and Buffets of the World\r\nHath so incens\'d, that I am recklesse what I doe,\r\nTo spight the World\r\n\r\n 1.Murth. And I another,\r\nSo wearie with Disasters, tugg\'d with Fortune,\r\nThat I would set my Life on any Chance,\r\nTo mend it, or be rid on\'t\r\n\r\n Macb. Both of you know Banquo was your Enemie\r\n\r\n Murth. True, my Lord\r\n\r\n Macb. So is he mine: and in such bloody distance,\r\nThat euery minute of his being, thrusts\r\nAgainst my neer\'st of Life: and though I could\r\nWith bare-fac\'d power sweepe him from my sight,\r\nAnd bid my will auouch it; yet I must not,\r\nFor certaine friends that are both his, and mine,\r\nWhose loues I may not drop, but wayle his fall,\r\nWho I my selfe struck downe: and thence it is,\r\nThat I to your assistance doe make loue,\r\nMasking the Businesse from the common Eye,\r\nFor sundry weightie Reasons\r\n\r\n 2.Murth. We shall, my Lord,\r\nPerforme what you command vs\r\n\r\n 1.Murth. Though our Liues-\r\n Macb. Your Spirits shine through you.\r\nWithin this houre, at most,\r\nI will aduise you where to plant your selues,\r\nAcquaint you with the perfect Spy o\'th\' time,\r\nThe moment on\'t, for\'t must be done to Night,\r\nAnd something from the Pallace: alwayes thought,\r\nThat I require a clearenesse; and with him,\r\nTo leaue no Rubs nor Botches in the Worke:\r\n Fleans , his Sonne, that keepes him companie,\r\nWhose absence is no lesse materiall to me,\r\nThen is his Fathers, must embrace the fate\r\nOf that darke houre: resolue your selues apart,\r\nIle come to you anon\r\n\r\n Murth. We are resolu\'d, my Lord\r\n\r\n Macb. Ile call vpon you straight: abide within,\r\nIt is concluded: Banquo, thy Soules flight,\r\nIf it finde Heauen, must finde it out to Night.\r\n\r\nExeunt.\r\n\r\n\r\nScena Secunda.\r\n\r\nEnter Macbeths Lady, and a Seruant.\r\n\r\n Lady. Is Banquo gone from Court?\r\n Seruant. I, Madame, but returnes againe to Night\r\n\r\n Lady. Say to the King, I would attend his leysure,\r\nFor a few words\r\n\r\n Seruant. Madame, I will.\r\nEnter.\r\n\r\n Lady. Nought\'s had, all\'s spent.\r\nWhere our desire is got without content:\r\n\'Tis safer, to be that which we destroy,\r\nThen by destruction dwell in doubtfull ioy.\r\nEnter Macbeth.\r\n\r\nHow now, my Lord, why doe you keepe alone?\r\nOf sorryest Fancies your Companions making,\r\nVsing those Thoughts, which should indeed haue dy\'d\r\nWith them they thinke on: things without all remedie\r\nShould be without regard: what\'s done, is done\r\n\r\n Macb. We haue scorch\'d the Snake, not kill\'d it:\r\nShee\'le close, and be her selfe, whilest our poore Mallice\r\nRemaines in danger of her former Tooth.\r\nBut let the frame of things dis-ioynt,\r\nBoth the Worlds suffer,\r\nEre we will eate our Meale in feare, and sleepe\r\nIn the affliction of these terrible Dreames,\r\nThat shake vs Nightly: Better be with the dead,\r\nWhom we, to gayne our peace, haue sent to peace,\r\nThen on the torture of the Minde to lye\r\nIn restlesse extasie.\r\nDuncane is in his Graue:\r\nAfter Lifes fitfull Feuer, he sleepes well,\r\nTreason ha\'s done his worst: nor Steele, nor Poyson,\r\nMallice domestique, forraine Leuie, nothing,\r\nCan touch him further\r\n\r\n Lady. Come on:\r\nGentle my Lord, sleeke o\'re your rugged Lookes,\r\nBe bright and Iouiall among your Guests to Night\r\n\r\n Macb. So shall I Loue, and so I pray be you:\r\nLet your remembrance apply to Banquo,\r\nPresent him Eminence, both with Eye and Tongue:\r\nVnsafe the while, that wee must laue\r\nOur Honors in these flattering streames,\r\nAnd make our Faces Vizards to our Hearts,\r\nDisguising what they are\r\n\r\n Lady. You must leaue this\r\n\r\n Macb. O, full of Scorpions is my Minde, deare Wife:\r\nThou know\'st, that Banquo and his Fleans liues\r\n\r\n Lady. But in them, Natures Coppie\'s not eterne\r\n\r\n Macb. There\'s comfort yet, they are assaileable,\r\nThen be thou iocund: ere the Bat hath flowne\r\nHis Cloyster\'d flight, ere to black Heccats summons\r\nThe shard-borne Beetle, with his drowsie hums,\r\nHath rung Nights yawning Peale,\r\nThere shall be done a deed of dreadfull note\r\n\r\n Lady. What\'s to be done?\r\n Macb. Be innocent of the knowledge, dearest Chuck,\r\nTill thou applaud the deed: Come, seeling Night,\r\nSkarfe vp the tender Eye of pittifull Day,\r\nAnd with thy bloodie and inuisible Hand\r\nCancell and teare to pieces that great Bond,\r\nWhich keepes me pale. Light thickens,\r\nAnd the Crow makes Wing toth\' Rookie Wood:\r\nGood things of Day begin to droope, and drowse,\r\nWhiles Nights black Agents to their Prey\'s doe rowse.\r\nThou maruell\'st at my words: but hold thee still,\r\nThings bad begun, make strong themselues by ill:\r\nSo prythee goe with me.\r\n\r\nExeunt.\r\n\r\n\r\nScena Tertia.\r\n\r\nEnter three Murtherers.\r\n\r\n 1. But who did bid thee ioyne with vs?\r\n 3. Macbeth\r\n\r\n 2. He needes not our mistrust, since he deliuers\r\nOur Offices, and what we haue to doe,\r\nTo the direction iust\r\n\r\n 1. Then stand with vs:\r\nThe West yet glimmers with some streakes of Day.\r\nNow spurres the lated Traueller apace,\r\nTo gayne the timely Inne, and neere approches\r\nThe subiect of our Watch\r\n\r\n 3. Hearke, I heare Horses\r\n\r\n Banquo within. Giue vs a Light there, hoa\r\n\r\n 2. Then \'tis hee:\r\nThe rest, that are within the note of expectation,\r\nAlreadie are i\'th\' Court\r\n\r\n 1. His Horses goe about\r\n\r\n 3. Almost a mile: but he does vsually,\r\nSo all men doe, from hence toth\' Pallace Gate\r\nMake it their Walke.\r\nEnter Banquo and Fleans, with a Torch.\r\n\r\n 2. A Light, a Light\r\n\r\n 3. \'Tis hee\r\n\r\n 1. Stand too\'t\r\n\r\n Ban. It will be Rayne to Night\r\n\r\n 1. Let it come downe\r\n\r\n Ban. O, Trecherie!\r\nFlye good Fleans, flye, flye, flye,\r\nThou may\'st reuenge. O Slaue!\r\n 3. Who did strike out the Light?\r\n 1. Was\'t not the way?\r\n 3. There\'s but one downe: the Sonne is fled\r\n\r\n 2. We haue lost\r\nBest halfe of our Affaire\r\n\r\n 1. Well, let\'s away, and say how much is done.\r\n\r\nExeunt.\r\n\r\n\r\nScaena Quarta.\r\n\r\nBanquet prepar\'d. Enter Macbeth, Lady, Rosse, Lenox, Lords, and\r\nAttendants.\r\n\r\n Macb. You know your owne degrees, sit downe:\r\nAt first and last, the hearty welcome\r\n\r\n Lords. Thankes to your Maiesty\r\n\r\n Macb. Our selfe will mingle with Society,\r\nAnd play the humble Host:\r\nOur Hostesse keepes her State, but in best time\r\nWe will require her welcome\r\n\r\n La. Pronounce it for me Sir, to all our Friends,\r\nFor my heart speakes, they are welcome.\r\nEnter first Murtherer.\r\n\r\n Macb. See they encounter thee with their harts thanks\r\nBoth sides are euen: heere Ile sit i\'th\' mid\'st,\r\nBe large in mirth, anon wee\'l drinke a Measure\r\nThe Table round. There\'s blood vpon thy face\r\n\r\n Mur. \'Tis Banquo\'s then\r\n\r\n Macb. \'Tis better thee without, then he within.\r\nIs he dispatch\'d?\r\n Mur. My Lord his throat is cut, that I did for him\r\n\r\n Mac. Thou art the best o\'th\' Cut-throats,\r\nYet hee\'s good that did the like for Fleans:\r\nIf thou did\'st it, thou art the Non-pareill\r\n\r\n Mur. Most Royall Sir\r\nFleans is scap\'d\r\n\r\n Macb. Then comes my Fit againe:\r\nI had else beene perfect;\r\nWhole as the Marble, founded as the Rocke,\r\nAs broad, and generall, as the casing Ayre:\r\nBut now I am cabin\'d, crib\'d, confin\'d, bound in\r\nTo sawcy doubts, and feares. But Banquo\'s safe?\r\n Mur. I, my good Lord: safe in a ditch he bides,\r\nWith twenty trenched gashes on his head;\r\nThe least a Death to Nature\r\n\r\n Macb. Thankes for that:\r\nThere the growne Serpent lyes, the worme that\'s fled\r\nHath Nature that in time will Venom breed,\r\nNo teeth for th\' present. Get thee gone, to morrow\r\nWee\'l heare our selues againe.\r\n\r\nExit Murderer.\r\n\r\n Lady. My Royall Lord,\r\nYou do not giue the Cheere, the Feast is sold\r\nThat is not often vouch\'d, while \'tis a making:\r\n\'Tis giuen, with welcome: to feede were best at home:\r\nFrom thence, the sawce to meate is Ceremony,\r\nMeeting were bare without it.\r\nEnter the Ghost of Banquo, and sits in Macbeths place.\r\n\r\n Macb. Sweet Remembrancer:\r\nNow good digestion waite on Appetite,\r\nAnd health on both\r\n\r\n Lenox. May\'t please your Highnesse sit\r\n\r\n Macb. Here had we now our Countries Honor, roof\'d,\r\nWere the grac\'d person of our Banquo present:\r\nWho, may I rather challenge for vnkindnesse,\r\nThen pitty for Mischance\r\n\r\n Rosse. His absence (Sir)\r\nLayes blame vpon his promise. Pleas\'t your Highnesse\r\nTo grace vs with your Royall Company?\r\n Macb. The Table\'s full\r\n\r\n Lenox. Heere is a place reseru\'d Sir\r\n\r\n Macb. Where?\r\n Lenox. Heere my good Lord.\r\nWhat is\'t that moues your Highnesse?\r\n Macb. Which of you haue done this?\r\n Lords. What, my good Lord?\r\n Macb. Thou canst not say I did it: neuer shake\r\nThy goary lockes at me\r\n\r\n Rosse. Gentlemen rise, his Highnesse is not well\r\n\r\n Lady. Sit worthy Friends: my Lord is often thus,\r\nAnd hath beene from his youth. Pray you keepe Seat,\r\nThe fit is momentary, vpon a thought\r\nHe will againe be well. If much you note him\r\nYou shall offend him, and extend his Passion,\r\nFeed, and regard him not. Are you a man?\r\n Macb. I, and a bold one, that dare looke on that\r\nWhich might appall the Diuell\r\n\r\n La. O proper stuffe:\r\nThis is the very painting of your feare:\r\nThis is the Ayre-drawne-Dagger which you said\r\nLed you to Duncan. O, these flawes and starts\r\n(Impostors to true feare) would well become\r\nA womans story, at a Winters fire\r\nAuthoriz\'d by her Grandam: shame it selfe,\r\nWhy do you make such faces? When all\'s done\r\nYou looke but on a stoole\r\n\r\n Macb. Prythee see there:\r\nBehold, looke, loe, how say you:\r\nWhy what care I, if thou canst nod, speake too.\r\nIf Charnell houses, and our Graues must send\r\nThose that we bury, backe; our Monuments\r\nShall be the Mawes of Kytes\r\n\r\n La. What? quite vnmann\'d in folly\r\n\r\n Macb. If I stand heere, I saw him\r\n\r\n La. Fie for shame\r\n\r\n Macb. Blood hath bene shed ere now, i\'th\' olden time\r\nEre humane Statute purg\'d the gentle Weale:\r\nI, and since too, Murthers haue bene perform\'d\r\nToo terrible for the eare. The times has bene,\r\nThat when the Braines were out, the man would dye,\r\nAnd there an end: But now they rise againe\r\nWith twenty mortall murthers on their crownes,\r\nAnd push vs from our stooles. This is more strange\r\nThen such a murther is\r\n\r\n La. My worthy Lord\r\nYour Noble Friends do lacke you\r\n\r\n Macb. I do forget:\r\nDo not muse at me my most worthy Friends,\r\nI haue a strange infirmity, which is nothing\r\nTo those that know me. Come, loue and health to all,\r\nThen Ile sit downe: Giue me some Wine, fill full:\r\nEnter Ghost.\r\n\r\nI drinke to th\' generall ioy o\'th\' whole Table,\r\nAnd to our deere Friend Banquo, whom we misse:\r\nWould he were heere: to all, and him we thirst,\r\nAnd all to all\r\n\r\n Lords. Our duties, and the pledge\r\n\r\n Mac. Auant, & quit my sight, let the earth hide thee:\r\nThy bones are marrowlesse, thy blood is cold:\r\nThou hast no speculation in those eyes\r\nWhich thou dost glare with\r\n\r\n La. Thinke of this good Peeres\r\nBut as a thing of Custome: \'Tis no other,\r\nOnely it spoyles the pleasure of the time\r\n\r\n Macb. What man dare, I dare:\r\nApproach thou like the rugged Russian Beare,\r\nThe arm\'d Rhinoceros, or th\' Hircan Tiger,\r\nTake any shape but that, and my firme Nerues\r\nShall neuer tremble. Or be aliue againe,\r\nAnd dare me to the Desart with thy Sword:\r\nIf trembling I inhabit then, protest mee\r\nThe Baby of a Girle. Hence horrible shadow,\r\nVnreall mock\'ry hence. Why so, being gone\r\nI am a man againe: pray you sit still\r\n\r\n La. You haue displac\'d the mirth,\r\nBroke the good meeting, with most admir\'d disorder\r\n\r\n Macb. Can such things be,\r\nAnd ouercome vs like a Summers Clowd,\r\nWithout our speciall wonder? You make me strange\r\nEuen to the disposition that I owe,\r\nWhen now I thinke you can behold such sights,\r\nAnd keepe the naturall Rubie of your Cheekes,\r\nWhen mine is blanch\'d with feare\r\n\r\n Rosse. What sights, my Lord?\r\n La. I pray you speake not: he growes worse & worse\r\nQuestion enrages him: at once, goodnight.\r\nStand not vpon the order of your going,\r\nBut go at once\r\n\r\n Len. Good night, and better health\r\nAttend his Maiesty\r\n\r\n La. A kinde goodnight to all.\r\n\r\nExit Lords.\r\n\r\n Macb. It will haue blood they say:\r\nBlood will haue Blood:\r\nStones haue beene knowne to moue, & Trees to speake:\r\nAugures, and vnderstood Relations, haue\r\nBy Maggot Pyes, & Choughes, & Rookes brought forth\r\nThe secret\'st man of Blood. What is the night?\r\n La. Almost at oddes with morning, which is which\r\n\r\n Macb. How say\'st thou that Macduff denies his person\r\nAt our great bidding\r\n\r\n La. Did you send to him Sir?\r\n Macb. I heare it by the way: But I will send:\r\nThere\'s not a one of them but in his house\r\nI keepe a Seruant Feed. I will to morrow\r\n(And betimes I will) to the weyard Sisters.\r\nMore shall they speake: for now I am bent to know\r\nBy the worst meanes, the worst, for mine owne good,\r\nAll causes shall giue way. I am in blood\r\nStept in so farre, that should I wade no more,\r\nReturning were as tedious as go ore:\r\nStrange things I haue in head, that will to hand,\r\nWhich must be acted, ere they may be scand\r\n\r\n La. You lacke the season of all Natures, sleepe\r\n\r\n Macb. Come, wee\'l to sleepe: My strange & self-abuse\r\nIs the initiate feare, that wants hard vse:\r\nWe are yet but yong indeed.\r\n\r\nExeunt.\r\n\r\n\r\nScena Quinta.\r\n\r\nThunder. Enter the three Witches, meeting Hecat.\r\n\r\n 1. Why how now Hecat, you looke angerly?\r\n Hec. Haue I not reason (Beldams) as you are?\r\nSawcy, and ouer-bold, how did you dare\r\nTo Trade, and Trafficke with Macbeth,\r\nIn Riddles, and Affaires of death;\r\nAnd I the Mistris of your Charmes,\r\nThe close contriuer of all harmes,\r\nWas neuer call\'d to beare my part,\r\nOr shew the glory of our Art?\r\nAnd which is worse, all you haue done\r\nHath bene but for a wayward Sonne,\r\nSpightfull, and wrathfull, who (as others do)\r\nLoues for his owne ends, not for you.\r\nBut make amends now: Get you gon,\r\nAnd at the pit of Acheron\r\nMeete me i\'th\' Morning: thither he\r\nWill come, to know his Destinie.\r\nYour Vessels, and your Spels prouide,\r\nYour Charmes, and euery thing beside;\r\nI am for th\' Ayre: This night Ile spend\r\nVnto a dismall, and a Fatall end.\r\nGreat businesse must be wrought ere Noone.\r\nVpon the Corner of the Moone\r\nThere hangs a vap\'rous drop, profound,\r\nIle catch it ere it come to ground;\r\nAnd that distill\'d by Magicke slights,\r\nShall raise such Artificiall Sprights,\r\nAs by the strength of their illusion,\r\nShall draw him on to his Confusion.\r\nHe shall spurne Fate, scorne Death, and beare\r\nHis hopes \'boue Wisedome, Grace, and Feare:\r\nAnd you all know, Security\r\nIs Mortals cheefest Enemie.\r\n\r\nMusicke, and a Song.\r\n\r\nHearke, I am call\'d: my little Spirit see\r\nSits in Foggy cloud, and stayes for me.\r\n\r\nSing within. Come away, come away, &c.\r\n\r\n 1 Come, let\'s make hast, shee\'l soone be\r\nBacke againe.\r\n\r\nExeunt.\r\n\r\n\r\nScaena Sexta.\r\n\r\nEnter Lenox, and another Lord.\r\n\r\n Lenox. My former Speeches,\r\nHaue but hit your Thoughts\r\nWhich can interpret farther: Onely I say\r\nThings haue bin strangely borne. The gracious Duncan\r\nWas pittied of Macbeth: marry he was dead:\r\nAnd the right valiant Banquo walk\'d too late,\r\nWhom you may say (if\'t please you) Fleans kill\'d,\r\nFor Fleans fled: Men must not walke too late.\r\nWho cannot want the thought, how monstrous\r\nIt was for Malcolme, and for Donalbane\r\nTo kill their gracious Father? Damned Fact,\r\nHow it did greeue Macbeth? Did he not straight\r\nIn pious rage, the two delinquents teare,\r\nThat were the Slaues of drinke, and thralles of sleepe?\r\nWas not that Nobly done? I, and wisely too:\r\nFor \'twould haue anger\'d any heart aliue\r\nTo heare the men deny\'t. So that I say,\r\nHe ha\'s borne all things well, and I do thinke,\r\nThat had he Duncans Sonnes vnder his Key,\r\n(As, and\'t please Heauen he shall not) they should finde\r\nWhat \'twere to kill a Father: So should Fleans.\r\nBut peace; for from broad words, and cause he fayl\'d\r\nHis presence at the Tyrants Feast, I heare\r\nMacduffe liues in disgrace. Sir, can you tell\r\nWhere he bestowes himselfe?\r\n Lord. The Sonnes of Duncane\r\n(From whom this Tyrant holds the due of Birth)\r\nLiues in the English Court, and is receyu\'d\r\nOf the most Pious Edward, with such grace,\r\nThat the maleuolence of Fortune, nothing\r\nTakes from his high respect. Thither Macduffe\r\nIs gone, to pray the Holy King, vpon his ayd\r\nTo wake Northumberland, and warlike Seyward,\r\nThat by the helpe of these (with him aboue)\r\nTo ratifie the Worke) we may againe\r\nGiue to our Tables meate, sleepe to our Nights:\r\nFree from our Feasts, and Banquets bloody kniues;\r\nDo faithfull Homage, and receiue free Honors,\r\nAll which we pine for now. And this report\r\nHath so exasperate their King, that hee\r\nPrepares for some attempt of Warre\r\n\r\n Len. Sent he to Macduffe?\r\n Lord. He did: and with an absolute Sir, not I\r\nThe clowdy Messenger turnes me his backe,\r\nAnd hums; as who should say, you\'l rue the time\r\nThat clogges me with this Answer\r\n\r\n Lenox. And that well might\r\nAduise him to a Caution, t\' hold what distance\r\nHis wisedome can prouide. Some holy Angell\r\nFlye to the Court of England, and vnfold\r\nHis Message ere he come, that a swift blessing\r\nMay soone returne to this our suffering Country,\r\nVnder a hand accurs\'d\r\n\r\n Lord. Ile send my Prayers with him.\r\n\r\nExeunt.\r\n\r\nActus Quartus. Scena Prima.\r\n\r\nThunder. Enter the three Witches.\r\n\r\n 1 Thrice the brinded Cat hath mew\'d\r\n\r\n 2 Thrice, and once the Hedge-Pigge whin\'d\r\n\r\n 3 Harpier cries, \'tis time, \'tis time\r\n\r\n 1 Round about the Caldron go:\r\nIn the poysond Entrailes throw\r\nToad, that vnder cold stone,\r\nDayes and Nights, ha\'s thirty one:\r\nSweltred Venom sleeping got,\r\nBoyle thou first i\'th\' charmed pot\r\n\r\n All. Double, double, toile and trouble;\r\nFire burne, and Cauldron bubble\r\n\r\n 2 Fillet of a Fenny Snake,\r\nIn the Cauldron boyle and bake:\r\nEye of Newt, and Toe of Frogge,\r\nWooll of Bat, and Tongue of Dogge:\r\nAdders Forke, and Blinde-wormes Sting,\r\nLizards legge, and Howlets wing:\r\nFor a Charme of powrefull trouble,\r\nLike a Hell-broth, boyle and bubble\r\n\r\n All. Double, double, toyle and trouble,\r\nFire burne, and Cauldron bubble\r\n\r\n 3 Scale of Dragon, Tooth of Wolfe,\r\nWitches Mummey, Maw, and Gulfe\r\nOf the rauin\'d salt Sea sharke:\r\nRoote of Hemlocke, digg\'d i\'th\' darke:\r\nLiuer of Blaspheming Iew,\r\nGall of Goate, and Slippes of Yew,\r\nSliuer\'d in the Moones Ecclipse:\r\nNose of Turke, and Tartars lips:\r\nFinger of Birth-strangled Babe,\r\nDitch-deliuer\'d by a Drab,\r\nMake the Grewell thicke, and slab.\r\nAdde thereto a Tigers Chawdron,\r\nFor th\' Ingredience of our Cawdron\r\n\r\n All. Double, double, toyle and trouble,\r\nFire burne, and Cauldron bubble\r\n\r\n 2 Coole it with a Baboones blood,\r\nThen the Charme is firme and good.\r\nEnter Hecat, and the other three Witches.\r\n\r\n Hec. O well done: I commend your paines,\r\nAnd euery one shall share i\'th\' gaines:\r\nAnd now about the Cauldron sing\r\nLike Elues and Fairies in a Ring,\r\nInchanting all that you put in.\r\n\r\nMusicke and a Song. Blacke Spirits, &c.\r\n\r\n 2 By the pricking of my Thumbes,\r\nSomething wicked this way comes:\r\nOpen Lockes, who euer knockes.\r\nEnter Macbeth.\r\n\r\n Macb. How now you secret, black, & midnight Hags?\r\nWhat is\'t you do?\r\n All. A deed without a name\r\n\r\n Macb. I coniure you, by that which you Professe,\r\n(How ere you come to know it) answer me:\r\nThough you vntye the Windes, and let them fight\r\nAgainst the Churches: Though the yesty Waues\r\nConfound and swallow Nauigation vp:\r\nThough bladed Corne be lodg\'d, & Trees blown downe,\r\nThough Castles topple on their Warders heads:\r\nThough Pallaces, and Pyramids do slope\r\nTheir heads to their Foundations: Though the treasure\r\nOf Natures Germaine, tumble altogether,\r\nEuen till destruction sicken: Answer me\r\nTo what I aske you\r\n\r\n 1 Speake\r\n\r\n 2 Demand\r\n\r\n 3 Wee\'l answer\r\n\r\n 1 Say, if th\'hadst rather heare it from our mouthes,\r\nOr from our Masters\r\n\r\n Macb. Call \'em: let me see \'em\r\n\r\n 1 Powre in Sowes blood, that hath eaten\r\nHer nine Farrow: Greaze that\'s sweaten\r\nFrom the Murderers Gibbet, throw\r\nInto the Flame\r\n\r\n All. Come high or low:\r\nThy Selfe and Office deaftly show.\r\nThunder. 1. Apparation, an Armed Head.\r\n\r\n Macb. Tell me, thou vnknowne power\r\n\r\n 1 He knowes thy thought:\r\nHeare his speech, but say thou nought\r\n\r\n 1 Appar. Macbeth, Macbeth, Macbeth:\r\nBeware Macduffe,\r\nBeware the Thane of Fife: dismisse me. Enough.\r\n\r\nHe Descends.\r\n\r\n Macb. What ere thou art, for thy good caution, thanks\r\nThou hast harp\'d my feare aright. But one word more\r\n\r\n 1 He will not be commanded: heere\'s another\r\nMore potent then the first.\r\n\r\nThunder. 2 Apparition, a Bloody Childe.\r\n\r\n 2 Appar. Macbeth, Macbeth, Macbeth\r\n\r\n Macb. Had I three eares, Il\'d heare thee\r\n\r\n Appar. Be bloody, bold, & resolute:\r\nLaugh to scorne\r\nThe powre of man: For none of woman borne\r\nShall harme Macbeth.\r\n\r\nDescends.\r\n\r\n Mac. Then liue Macduffe: what need I feare of thee?\r\nBut yet Ile make assurance: double sure,\r\nAnd take a Bond of Fate: thou shalt not liue,\r\nThat I may tell pale-hearted Feare, it lies;\r\nAnd sleepe in spight of Thunder.\r\n\r\nThunder 3 Apparation, a Childe Crowned, with a Tree in his hand.\r\n\r\nWhat is this, that rises like the issue of a King,\r\nAnd weares vpon his Baby-brow, the round\r\nAnd top of Soueraignty?\r\n All. Listen, but speake not too\'t\r\n\r\n 3 Appar. Be Lyon metled, proud, and take no care:\r\nWho chafes, who frets, or where Conspirers are:\r\nMacbeth shall neuer vanquish\'d be, vntill\r\nGreat Byrnam Wood, to high Dunsmane Hill\r\nShall come against him.\r\n\r\nDescend.\r\n\r\n Macb. That will neuer bee:\r\nWho can impresse the Forrest, bid the Tree\r\nVnfixe his earth-bound Root? Sweet boadments, good:\r\nRebellious dead, rise neuer till the Wood\r\nOf Byrnan rise, and our high plac\'d Macbeth\r\nShall liue the Lease of Nature, pay his breath\r\nTo time, and mortall Custome. Yet my Hart\r\nThrobs to know one thing: Tell me, if your Art\r\nCan tell so much: Shall Banquo\'s issue euer\r\nReigne in this Kingdome?\r\n All. Seeke to know no more\r\n\r\n Macb. I will be satisfied. Deny me this,\r\nAnd an eternall Curse fall on you: Let me know.\r\nWhy sinkes that Caldron? & what noise is this?\r\n\r\nHoboyes\r\n\r\n 1 Shew\r\n\r\n 2 Shew\r\n\r\n 3 Shew\r\n\r\n All. Shew his Eyes, and greeue his Hart,\r\nCome like shadowes, so depart.\r\n\r\nA shew of eight Kings, and Banquo last, with a glasse in his hand.\r\n\r\n Macb. Thou art too like the Spirit of Banquo: Down:\r\nThy Crowne do\'s seare mine Eye-bals. And thy haire\r\nThou other Gold-bound-brow, is like the first:\r\nA third, is like the former. Filthy Hagges,\r\nWhy do you shew me this? - A fourth? Start eyes!\r\nWhat will the Line stretch out to\'th\' cracke of Doome?\r\nAnother yet? A seauenth? Ile see no more:\r\nAnd yet the eighth appeares, who beares a glasse,\r\nWhich shewes me many more: and some I see,\r\nThat two-fold Balles, and trebble Scepters carry.\r\nHorrible sight: Now I see \'tis true,\r\nFor the Blood-bolter\'d Banquo smiles vpon me,\r\nAnd points at them for his. What? is this so?\r\n 1 I Sir, all this is so. But why\r\nStands Macbeth thus amazedly?\r\nCome Sisters, cheere we vp his sprights,\r\nAnd shew the best of our delights.\r\nIle Charme the Ayre to giue a sound,\r\nWhile you performe your Antique round:\r\nThat this great King may kindly say,\r\nOur duties, did his welcome pay.\r\n\r\nMusicke. The Witches Dance, and vanish.\r\n\r\n Macb. Where are they? Gone?\r\nLet this pernitious houre,\r\nStand aye accursed in the Kalender.\r\nCome in, without there.\r\nEnter Lenox.\r\n\r\n Lenox. What\'s your Graces will\r\n\r\n Macb. Saw you the Weyard Sisters?\r\n Lenox. No my Lord\r\n\r\n Macb. Came they not by you?\r\n Lenox. No indeed my Lord\r\n\r\n Macb. Infected be the Ayre whereon they ride,\r\nAnd damn\'d all those that trust them. I did heare\r\nThe gallopping of Horse. Who was\'t came by?\r\n Len. \'Tis two or three my Lord, that bring you word:\r\nMacduff is fled to England\r\n\r\n Macb. Fled to England?\r\n Len. I, my good Lord\r\n\r\n Macb. Time, thou anticipat\'st my dread exploits:\r\nThe flighty purpose neuer is o\'re-tooke\r\nVnlesse the deed go with it. From this moment,\r\nThe very firstlings of my heart shall be\r\nThe firstlings of my hand. And euen now\r\nTo Crown my thoughts with Acts: be it thoght & done:\r\nThe Castle of Macduff, I will surprize.\r\nSeize vpon Fife; giue to th\' edge o\'th\' Sword\r\nHis Wife, his Babes, and all vnfortunate Soules\r\nThat trace him in his Line. No boasting like a Foole,\r\nThis deed Ile do, before this purpose coole,\r\nBut no more sights. Where are these Gentlemen?\r\nCome bring me where they are.\r\n\r\nExeunt.\r\n\r\nScena Secunda.\r\n\r\nEnter Macduffes Wife, her Son, and Rosse.\r\n\r\n Wife. What had he done, to make him fly the Land?\r\n Rosse. You must haue patience Madam\r\n\r\n Wife. He had none:\r\nHis flight was madnesse: when our Actions do not,\r\nOur feares do make vs Traitors\r\n\r\n Rosse. You know not\r\nWhether it was his wisedome, or his feare\r\n\r\n Wife. Wisedom? to leaue his wife, to leaue his Babes,\r\nHis Mansion, and his Titles, in a place\r\nFrom whence himselfe do\'s flye? He loues vs not,\r\nHe wants the naturall touch. For the poore Wren\r\n(The most diminitiue of Birds) will fight,\r\nHer yong ones in her Nest, against the Owle:\r\nAll is the Feare, and nothing is the Loue;\r\nAs little is the Wisedome, where the flight\r\nSo runnes against all reason\r\n\r\n Rosse. My deerest Cooz,\r\nI pray you schoole your selfe. But for your Husband,\r\nHe is Noble, Wise, Iudicious, and best knowes\r\nThe fits o\'th\' Season. I dare not speake much further,\r\nBut cruell are the times, when we are Traitors\r\nAnd do not know our selues: when we hold Rumor\r\nFrom what we feare, yet know not what we feare,\r\nBut floate vpon a wilde and violent Sea\r\nEach way, and moue. I take my leaue of you:\r\nShall not be long but Ile be heere againe:\r\nThings at the worst will cease, or else climbe vpward,\r\nTo what they were before. My pretty Cosine,\r\nBlessing vpon you\r\n\r\n Wife. Father\'d he is,\r\nAnd yet hee\'s Father-lesse\r\n\r\n Rosse. I am so much a Foole, should I stay longer\r\nIt would be my disgrace, and your discomfort.\r\nI take my leaue at once.\r\n\r\nExit Rosse.\r\n\r\n Wife. Sirra, your Fathers dead,\r\nAnd what will you do now? How will you liue?\r\n Son. As Birds do Mother\r\n\r\n Wife. What with Wormes, and Flyes?\r\n Son. With what I get I meane, and so do they\r\n\r\n Wife. Poore Bird,\r\nThou\'dst neuer Feare the Net, nor Lime,\r\nThe Pitfall, nor the Gin\r\n\r\n Son. Why should I Mother?\r\nPoore Birds they are not set for:\r\nMy Father is not dead for all your saying\r\n\r\n Wife. Yes, he is dead:\r\nHow wilt thou do for a Father?\r\n Son. Nay how will you do for a Husband?\r\n Wife. Why I can buy me twenty at any Market\r\n\r\n Son. Then you\'l by \'em to sell againe\r\n\r\n Wife. Thou speak\'st withall thy wit,\r\nAnd yet I\'faith with wit enough for thee\r\n\r\n Son. Was my Father a Traitor, Mother?\r\n Wife. I, that he was\r\n\r\n Son. What is a Traitor?\r\n Wife. Why one that sweares, and lyes\r\n\r\n Son. And be all Traitors, that do so\r\n\r\n Wife. Euery one that do\'s so, is a Traitor,\r\nAnd must be hang\'d\r\n\r\n Son. And must they all be hang\'d, that swear and lye?\r\n Wife. Euery one\r\n\r\n Son. Who must hang them?\r\n Wife. Why, the honest men\r\n\r\n Son. Then the Liars and Swearers are Fools: for there\r\nare Lyars and Swearers enow, to beate the honest men,\r\nand hang vp them\r\n\r\n Wife. Now God helpe thee, poore Monkie:\r\nBut how wilt thou do for a Father?\r\n Son. If he were dead, youl\'d weepe for him: if you\r\nwould not, it were a good signe, that I should quickely\r\nhaue a new Father\r\n\r\n Wife. Poore pratler, how thou talk\'st?\r\nEnter a Messenger.\r\n\r\n Mes. Blesse you faire Dame: I am not to you known,\r\nThough in your state of Honor I am perfect;\r\nI doubt some danger do\'s approach you neerely.\r\nIf you will take a homely mans aduice,\r\nBe not found heere: Hence with your little ones\r\nTo fright you thus. Me thinkes I am too sauage:\r\nTo do worse to you, were fell Cruelty,\r\nWhich is too nie your person. Heauen preserue you,\r\nI dare abide no longer.\r\n\r\nExit Messenger\r\n\r\n Wife. Whether should I flye?\r\nI haue done no harme. But I remember now\r\nI am in this earthly world: where to do harme\r\nIs often laudable, to do good sometime\r\nAccounted dangerous folly. Why then (alas)\r\nDo I put vp that womanly defence,\r\nTo say I haue done no harme?\r\nWhat are these faces?\r\nEnter Murtherers.\r\n\r\n Mur. Where is your Husband?\r\n Wife. I hope in no place so vnsanctified,\r\nWhere such as thou may\'st finde him\r\n\r\n Mur. He\'s a Traitor\r\n\r\n Son. Thou ly\'st thou shagge-ear\'d Villaine\r\n\r\n Mur. What you Egge?\r\nYong fry of Treachery?\r\n Son. He ha\'s kill\'d me Mother,\r\nRun away I pray you.\r\n\r\nExit crying Murther.\r\n\r\n\r\nScaena Tertia.\r\n\r\nEnter Malcolme and Macduffe.\r\n\r\n Mal. Let vs seeke out some desolate shade, & there\r\nWeepe our sad bosomes empty\r\n\r\n Macd. Let vs rather\r\nHold fast the mortall Sword: and like good men,\r\nBestride our downfall Birthdome: each new Morne,\r\nNew Widdowes howle, new Orphans cry, new sorowes\r\nStrike heauen on the face, that it resounds\r\nAs if it felt with Scotland, and yell\'d out\r\nLike Syllable of Dolour\r\n\r\n Mal. What I beleeue, Ile waile;\r\nWhat know, beleeue; and what I can redresse,\r\nAs I shall finde the time to friend: I wil.\r\nWhat you haue spoke, it may be so perchance.\r\nThis Tyrant, whose sole name blisters our tongues,\r\nWas once thought honest: you haue lou\'d him well,\r\nHe hath not touch\'d you yet. I am yong, but something\r\nYou may discerne of him through me, and wisedome\r\nTo offer vp a weake, poore innocent Lambe\r\nT\' appease an angry God\r\n\r\n Macd. I am not treacherous\r\n\r\n Malc. But Macbeth is.\r\nA good and vertuous Nature may recoyle\r\nIn an Imperiall charge. But I shall craue your pardon:\r\nThat which you are, my thoughts cannot transpose;\r\nAngels are bright still, though the brightest fell.\r\nThough all things foule, would wear the brows of grace\r\nYet Grace must still looke so\r\n\r\n Macd. I haue lost my Hopes\r\n\r\n Malc. Perchance euen there\r\nWhere I did finde my doubts.\r\nWhy in that rawnesse left you Wife, and Childe?\r\nThose precious Motiues, those strong knots of Loue,\r\nWithout leaue-taking. I pray you,\r\nLet not my Iealousies, be your Dishonors,\r\nBut mine owne Safeties: you may be rightly iust,\r\nWhat euer I shall thinke\r\n\r\n Macd. Bleed, bleed poore Country,\r\nGreat Tyrrany, lay thou thy basis sure,\r\nFor goodnesse dare not check thee: wear y thy wrongs,\r\nThe Title, is affear\'d. Far thee well Lord,\r\nI would not be the Villaine that thou think\'st,\r\nFor the whole Space that\'s in the Tyrants Graspe,\r\nAnd the rich East to boot\r\n\r\n Mal. Be not offended:\r\nI speake not as in absolute feare of you:\r\nI thinke our Country sinkes beneath the yoake,\r\nIt weepes, it bleeds, and each new day a gash\r\nIs added to her wounds. I thinke withall,\r\nThere would be hands vplifted in my right:\r\nAnd heere from gracious England haue I offer\r\nOf goodly thousands. But for all this,\r\nWhen I shall treade vpon the Tyrants head,\r\nOr weare it on my Sword; yet my poore Country\r\nShall haue more vices then it had before,\r\nMore suffer, and more sundry wayes then euer,\r\nBy him that shall succeede\r\n\r\n Macd. What should he be?\r\n Mal. It is my selfe I meane: in whom I know\r\nAll the particulars of Vice so grafted,\r\nThat when they shall be open\'d, blacke Macbeth\r\nWill seeme as pure as Snow, and the poore State\r\nEsteeme him as a Lambe, being compar\'d\r\nWith my confinelesse harmes\r\n\r\n Macd. Not in the Legions\r\nOf horrid Hell, can come a Diuell more damn\'d\r\nIn euils, to top Macbeth\r\n\r\n Mal. I grant him Bloody,\r\nLuxurious, Auaricious, False, Deceitfull,\r\nSodaine, Malicious, smacking of euery sinne\r\nThat ha\'s a name. But there\'s no bottome, none\r\nIn my Voluptuousnesse: Your Wiues, your Daughters,\r\nYour Matrons, and your Maides, could not fill vp\r\nThe Cesterne of my Lust, and my Desire\r\nAll continent Impediments would ore-beare\r\nThat did oppose my will. Better Macbeth,\r\nThen such an one to reigne\r\n\r\n Macd. Boundlesse intemperance\r\nIn Nature is a Tyranny: It hath beene\r\nTh\' vntimely emptying of the happy Throne,\r\nAnd fall of many Kings. But feare not yet\r\nTo take vpon you what is yours: you may\r\nConuey your pleasures in a spacious plenty,\r\nAnd yet seeme cold. The time you may so hoodwinke:\r\nWe haue willing Dames enough: there cannot be\r\nThat Vulture in you, to deuoure so many\r\nAs will to Greatnesse dedicate themselues,\r\nFinding it so inclinde\r\n\r\n Mal. With this, there growes\r\nIn my most ill-composd Affection, such\r\nA stanchlesse Auarice, that were I King,\r\nI should cut off the Nobles for their Lands,\r\nDesire his Iewels, and this others House,\r\nAnd my more-hauing, would be as a Sawce\r\nTo make me hunger more, that I should forge\r\nQuarrels vniust against the Good and Loyall,\r\nDestroying them for wealth\r\n\r\n Macd. This Auarice\r\nstickes deeper: growes with more pernicious roote\r\nThen Summer-seeming Lust: and it hath bin\r\nThe Sword of our slaine Kings: yet do not feare,\r\nScotland hath Foysons, to fill vp your will\r\nOf your meere Owne. All these are portable,\r\nWith other Graces weigh\'d\r\n\r\n Mal. But I haue none. The King-becoming Graces,\r\nAs Iustice, Verity, Temp\'rance, Stablenesse,\r\nBounty, Perseuerance, Mercy, Lowlinesse,\r\nDeuotion, Patience, Courage, Fortitude,\r\nI haue no rellish of them, but abound\r\nIn the diuision of each seuerall Crime,\r\nActing it many wayes. Nay, had I powre, I should\r\nPoure the sweet Milke of Concord, into Hell,\r\nVprore the vniuersall peace, confound\r\nAll vnity on earth\r\n\r\n Macd. O Scotland, Scotland\r\n\r\n Mal. If such a one be fit to gouerne, speake:\r\nI am as I haue spoken\r\n\r\n Mac. Fit to gouern? No not to liue. O Natio[n] miserable!\r\nWith an vntitled Tyrant, bloody Sceptred,\r\nWhen shalt thou see thy wholsome dayes againe?\r\nSince that the truest Issue of thy Throne\r\nBy his owne Interdiction stands accust,\r\nAnd do\'s blaspheme his breed? Thy Royall Father\r\nWas a most Sainted-King: the Queene that bore thee,\r\nOftner vpon her knees, then on her feet,\r\nDy\'de euery day she liu\'d. Fare thee well,\r\nThese Euils thou repeat\'st vpon thy selfe,\r\nHath banish\'d me from Scotland. O my Brest,\r\nThy hope ends heere\r\n\r\n Mal. Macduff, this Noble passion\r\nChilde of integrity, hath from my soule\r\nWip\'d the blacke Scruples, reconcil\'d my thoughts\r\nTo thy good Truth, and Honor. Diuellish Macbeth,\r\nBy many of these traines, hath sought to win me\r\nInto his power: and modest Wisedome pluckes me\r\nFrom ouer-credulous hast: but God aboue\r\nDeale betweene thee and me; For euen now\r\nI put my selfe to thy Direction, and\r\nVnspeake mine owne detraction. Heere abiure\r\nThe taints, and blames I laide vpon my selfe,\r\nFor strangers to my Nature. I am yet\r\nVnknowne to Woman, neuer was forsworne,\r\nScarsely haue coueted what was mine owne.\r\nAt no time broke my Faith, would not betray\r\nThe Deuill to his Fellow, and delight\r\nNo lesse in truth then life. My first false speaking\r\nWas this vpon my selfe. What I am truly\r\nIs thine, and my poore Countries to command:\r\nWhither indeed, before they heere approach\r\nOld Seyward with ten thousand warlike men\r\nAlready at a point, was setting foorth:\r\nNow wee\'l together, and the chance of goodnesse\r\nBe like our warranted Quarrell. Why are you silent?\r\n Macd. Such welcome, and vnwelcom things at once\r\n\'Tis hard to reconcile.\r\nEnter a Doctor.\r\n\r\n Mal. Well, more anon. Comes the King forth\r\nI pray you?\r\n Doct. I Sir: there are a crew of wretched Soules\r\nThat stay his Cure: their malady conuinces\r\nThe great assay of Art. But at his touch,\r\nSuch sanctity hath Heauen giuen his hand,\r\nThey presently amend.\r\nEnter.\r\n\r\n Mal. I thanke you Doctor\r\n\r\n Macd. What\'s the Disease he meanes?\r\n Mal. Tis call\'d the Euill.\r\nA most myraculous worke in this good King,\r\nWhich often since my heere remaine in England,\r\nI haue seene him do: How he solicites heauen\r\nHimselfe best knowes: but strangely visited people\r\nAll swolne and Vlcerous, pittifull to the eye,\r\nThe meere dispaire of Surgery, he cures,\r\nHanging a golden stampe about their neckes,\r\nPut on with holy Prayers, and \'tis spoken\r\nTo the succeeding Royalty he leaues\r\nThe healing Benediction. With this strange vertue,\r\nHe hath a heauenly guift of Prophesie,\r\nAnd sundry Blessings hang about his Throne,\r\nThat speake him full of Grace.\r\nEnter Rosse.\r\n\r\n Macd. See who comes heere\r\n\r\n Malc. My Countryman: but yet I know him not\r\n\r\n Macd. My euer gentle Cozen, welcome hither\r\n\r\n Malc. I know him now. Good God betimes remoue\r\nThe meanes that makes vs Strangers\r\n\r\n Rosse. Sir, Amen\r\n\r\n Macd. Stands Scotland where it did?\r\n Rosse. Alas poore Countrey,\r\nAlmost affraid to know it selfe. It cannot\r\nBe call\'d our Mother, but our Graue; where nothing\r\nBut who knowes nothing, is once seene to smile:\r\nWhere sighes, and groanes, and shrieks that rent the ayre\r\nAre made, not mark\'d: Where violent sorrow seemes\r\nA Moderne extasie: The Deadmans knell,\r\nIs there scarse ask\'d for who, and good mens liues\r\nExpire before the Flowers in their Caps,\r\nDying, or ere they sicken\r\n\r\n Macd. Oh Relation; too nice, and yet too true\r\n\r\n Malc. What\'s the newest griefe?\r\n Rosse. That of an houres age, doth hisse the speaker,\r\nEach minute teemes a new one\r\n\r\n Macd. How do\'s my Wife?\r\n Rosse. Why well\r\n\r\n Macd. And all my Children?\r\n Rosse. Well too\r\n\r\n Macd. The Tyrant ha\'s not batter\'d at their peace?\r\n Rosse. No, they were wel at peace, when I did leaue \'em\r\n Macd. Be not a niggard of your speech: How gos\'t?\r\n Rosse. When I came hither to transport the Tydings\r\nWhich I haue heauily borne, there ran a Rumour\r\nOf many worthy Fellowes, that were out,\r\nWhich was to my beleefe witnest the rather,\r\nFor that I saw the Tyrants Power a-foot.\r\nNow is the time of helpe: your eye in Scotland\r\nWould create Soldiours, make our women fight,\r\nTo doffe their dire distresses\r\n\r\n Malc. Bee\'t their comfort\r\nWe are comming thither: Gracious England hath\r\nLent vs good Seyward, and ten thousand men,\r\nAn older, and a better Souldier, none\r\nThat Christendome giues out\r\n\r\n Rosse. Would I could answer\r\nThis comfort with the like. But I haue words\r\nThat would be howl\'d out in the desert ayre,\r\nWhere hearing should not latch them\r\n\r\n Macd. What concerne they,\r\nThe generall cause, or is it a Fee-griefe\r\nDue to some single brest?\r\n Rosse. No minde that\'s honest\r\nBut in it shares some woe, though the maine part\r\nPertaines to you alone\r\n\r\n Macd. If it be mine\r\nKeepe it not from me, quickly let me haue it\r\n\r\n Rosse. Let not your eares dispise my tongue for euer,\r\nWhich shall possesse them with the heauiest sound\r\nthat euer yet they heard\r\n\r\n Macd. Humh: I guesse at it\r\n\r\n Rosse. Your Castle is surpriz\'d: your Wife, and Babes\r\nSauagely slaughter\'d: To relate the manner\r\nWere on the Quarry of these murther\'d Deere\r\nTo adde the death of you\r\n\r\n Malc. Mercifull Heauen:\r\nWhat man, ne\'re pull your hat vpon your browes:\r\nGiue sorrow words; the griefe that do\'s not speake,\r\nWhispers the o\'re-fraught heart, and bids it breake\r\n\r\n Macd. My Children too?\r\n Ro. Wife, Children, Seruants, all that could be found\r\n\r\n Macd. And I must be from thence? My wife kil\'d too?\r\n Rosse. I haue said\r\n\r\n Malc. Be comforted.\r\nLet\'s make vs Med\'cines of our great Reuenge,\r\nTo cure this deadly greefe\r\n\r\n Macd. He ha\'s no Children. All my pretty ones?\r\nDid you say All? Oh Hell-Kite! All?\r\nWhat, All my pretty Chickens, and their Damme\r\nAt one fell swoope?\r\n Malc. Dispute it like a man\r\n\r\n Macd. I shall do so:\r\nBut I must also feele it as a man;\r\nI cannot but remember such things were\r\nThat were most precious to me: Did heauen looke on,\r\nAnd would not take their part? Sinfull Macduff,\r\nThey were all strooke for thee: Naught that I am,\r\nNot for their owne demerits, but for mine\r\nFell slaughter on their soules: Heauen rest them now\r\n\r\n Mal. Be this the Whetstone of your sword, let griefe\r\nConuert to anger: blunt not the heart, enrage it\r\n\r\n Macd. O I could play the woman with mine eyes,\r\nAnd Braggart with my tongue. But gentle Heauens,\r\nCut short all intermission: Front to Front,\r\nBring thou this Fiend of Scotland, and my selfe\r\nWithin my Swords length set him, if he scape\r\nHeauen forgiue him too\r\n\r\n Mal. This time goes manly:\r\nCome go we to the King, our Power is ready,\r\nOur lacke is nothing but our leaue. Macbeth\r\nIs ripe for shaking, and the Powres aboue\r\nPut on their Instruments: Receiue what cheere you may,\r\nThe Night is long, that neuer findes the Day.\r\n\r\nExeunt.\r\n\r\nActus Quintus. Scena Prima.\r\n\r\nEnter a Doctor of Physicke, and a Wayting Gentlewoman.\r\n\r\n Doct. I haue too Nights watch\'d with you, but can\r\nperceiue no truth in your report. When was it shee last\r\nwalk\'d?\r\n Gent. Since his Maiesty went into the Field, I haue\r\nseene her rise from her bed, throw her Night-Gown vppon\r\nher, vnlocke her Closset, take foorth paper, folde it,\r\nwrite vpon\'t, read it, afterwards Seale it, and againe returne\r\nto bed; yet all this while in a most fast sleepe\r\n\r\n Doct. A great perturbation in Nature, to receyue at\r\nonce the benefit of sleep, and do the effects of watching.\r\nIn this slumbry agitation, besides her walking, and other\r\nactuall performances, what (at any time) haue you heard\r\nher say?\r\n Gent. That Sir, which I will not report after her\r\n\r\n Doct. You may to me, and \'tis most meet you should\r\n\r\n Gent. Neither to you, nor any one, hauing no witnesse\r\nto confirme my speech.\r\nEnter Lady, with a Taper.\r\n\r\nLo you, heere she comes: This is her very guise, and vpon\r\nmy life fast asleepe: obserue her, stand close\r\n\r\n Doct. How came she by that light?\r\n Gent. Why it stood by her: she ha\'s light by her continually,\r\n\'tis her command\r\n\r\n Doct. You see her eyes are open\r\n\r\n Gent. I, but their sense are shut\r\n\r\n Doct. What is it she do\'s now?\r\nLooke how she rubbes her hands\r\n\r\n Gent. It is an accustom\'d action with her, to seeme\r\nthus washing her hands: I haue knowne her continue in\r\nthis a quarter of an houre\r\n\r\n Lad. Yet heere\'s a spot\r\n\r\n Doct. Heark, she speaks, I will set downe what comes\r\nfrom her, to satisfie my remembrance the more strongly\r\n\r\n La. Out damned spot: out I say. One: Two: Why\r\nthen \'tis time to doo\'t: Hell is murky. Fye, my Lord, fie,\r\na Souldier, and affear\'d? what need we feare? who knowes\r\nit, when none can call our powre to accompt: yet who\r\nwould haue thought the olde man to haue had so much\r\nblood in him\r\n\r\n Doct. Do you marke that?\r\n Lad. The Thane of Fife, had a wife: where is she now?\r\nWhat will these hands ne\'re be cleane? No more o\'that\r\nmy Lord, no more o\'that: you marre all with this starting\r\n\r\n Doct. Go too, go too:\r\nYou haue knowne what you should not\r\n\r\n Gent. She ha\'s spoke what shee should not, I am sure\r\nof that: Heauen knowes what she ha\'s knowne\r\n\r\n La. Heere\'s the smell of the blood still: all the perfumes\r\nof Arabia will not sweeten this little hand.\r\nOh, oh, oh\r\n\r\n Doct. What a sigh is there? The hart is sorely charg\'d\r\n\r\n Gent. I would not haue such a heart in my bosome,\r\nfor the dignity of the whole body\r\n\r\n Doct. Well, well, well\r\n\r\n Gent. Pray God it be sir\r\n\r\n Doct. This disease is beyond my practise: yet I haue\r\nknowne those which haue walkt in their sleep, who haue\r\ndyed holily in their beds\r\n\r\n Lad. Wash your hands, put on your Night-Gowne,\r\nlooke not so pale: I tell you yet againe Banquo\'s buried;\r\nhe cannot come out on\'s graue\r\n\r\n Doct. Euen so?\r\n Lady. To bed, to bed: there\'s knocking at the gate:\r\nCome, come, come, come, giue me your hand: What\'s\r\ndone, cannot be vndone. To bed, to bed, to bed.\r\n\r\nExit Lady.\r\n\r\n Doct. Will she go now to bed?\r\n Gent. Directly\r\n\r\n Doct. Foule whisp\'rings are abroad: vnnaturall deeds\r\nDo breed vnnaturall troubles: infected mindes\r\nTo their deafe pillowes will discharge their Secrets:\r\nMore needs she the Diuine, then the Physitian:\r\nGod, God forgiue vs all. Looke after her,\r\nRemoue from her the meanes of all annoyance,\r\nAnd still keepe eyes vpon her: So goodnight,\r\nMy minde she ha\'s mated, and amaz\'d my sight.\r\nI thinke, but dare not speake\r\n\r\n Gent. Good night good Doctor.\r\n\r\nExeunt.\r\n\r\n\r\nScena Secunda.\r\n\r\nDrum and Colours. Enter Menteth, Cathnes, Angus, Lenox,\r\nSoldiers.\r\n\r\n Ment. The English powre is neere, led on by Malcolm,\r\nHis Vnkle Seyward, and the good Macduff.\r\nReuenges burne in them: for their deere causes\r\nWould to the bleeding, and the grim Alarme\r\nExcite the mortified man\r\n\r\n Ang. Neere Byrnan wood\r\nShall we well meet them, that way are they comming\r\n\r\n Cath. Who knowes if Donalbane be with his brother?\r\n Len. For certaine Sir, he is not: I haue a File\r\nOf all the Gentry; there is Seywards Sonne,\r\nAnd many vnruffe youths, that euen now\r\nProtest their first of Manhood\r\n\r\n Ment. What do\'s the Tyrant\r\n\r\n Cath. Great Dunsinane he strongly Fortifies:\r\nSome say hee\'s mad: Others, that lesser hate him,\r\nDo call it valiant Fury, but for certaine\r\nHe cannot buckle his distemper\'d cause\r\nWithin the belt of Rule\r\n\r\n Ang. Now do\'s he feele\r\nHis secret Murthers sticking on his hands,\r\nNow minutely Reuolts vpbraid his Faith-breach:\r\nThose he commands, moue onely in command,\r\nNothing in loue: Now do\'s he feele his Title\r\nHang loose about him, like a Giants Robe\r\nVpon a dwarfish Theefe\r\n\r\n Ment. Who then shall blame\r\nHis pester\'d Senses to recoyle, and start,\r\nWhen all that is within him, do\'s condemne\r\nIt selfe, for being there\r\n\r\n Cath. Well, march we on,\r\nTo giue Obedience, where \'tis truly ow\'d:\r\nMeet we the Med\'cine of the sickly Weale,\r\nAnd with him poure we in our Countries purge,\r\nEach drop of vs\r\n\r\n Lenox. Or so much as it needes,\r\nTo dew the Soueraigne Flower, and drowne the Weeds:\r\nMake we our March towards Birnan.\r\n\r\nExeunt. marching.\r\n\r\n\r\nScaena Tertia.\r\n\r\nEnter Macbeth, Doctor, and Attendants.\r\n\r\n Macb. Bring me no more Reports, let them flye all:\r\nTill Byrnane wood remoue to Dunsinane,\r\nI cannot taint with Feare. What\'s the Boy Malcolme?\r\nWas he not borne of woman? The Spirits that know\r\nAll mortall Consequences, haue pronounc\'d me thus:\r\nFeare not Macbeth, no man that\'s borne of woman\r\nShall ere haue power vpon thee. Then fly false Thanes,\r\nAnd mingle with the English Epicures,\r\nThe minde I sway by, and the heart I beare,\r\nShall neuer sagge with doubt, nor shake with feare.\r\nEnter Seruant.\r\n\r\nThe diuell damne thee blacke, thou cream-fac\'d Loone:\r\nWhere got\'st thou that Goose-looke\r\n\r\n Ser. There is ten thousand\r\n\r\n Macb. Geese Villaine?\r\n Ser. Souldiers Sir\r\n\r\n Macb. Go pricke thy face, and ouer-red thy feare\r\nThou Lilly-liuer\'d Boy. What Soldiers, Patch?\r\nDeath of thy Soule, those Linnen cheekes of thine\r\nAre Counsailers to feare. What Soldiers Whay-face?\r\n Ser. The English Force, so please you\r\n\r\n Macb. Take thy face hence. Seyton, I am sick at hart,\r\nWhen I behold: Seyton, I say, this push\r\nWill cheere me euer, or dis-eate me now.\r\nI haue liu\'d long enough: my way of life\r\nIs falne into the Seare, the yellow Leafe,\r\nAnd that which should accompany Old-Age,\r\nAs Honor, Loue, Obedience, Troopes of Friends,\r\nI must not looke to haue: but in their steed,\r\nCurses, not lowd but deepe, Mouth-honor, breath\r\nWhich the poore heart would faine deny, and dare not.\r\nSeyton?\r\nEnter Seyton.\r\n\r\n Sey. What\'s your gracious pleasure?\r\n Macb. What Newes more?\r\n Sey. All is confirm\'d my Lord, which was reported\r\n\r\n Macb. Ile fight, till from my bones, my flesh be hackt.\r\nGiue me my Armor\r\n\r\n Seyt. \'Tis not needed yet\r\n\r\n Macb. Ile put it on:\r\nSend out moe Horses, skirre the Country round,\r\nHang those that talke of Feare. Giue me mine Armor:\r\nHow do\'s your Patient, Doctor?\r\n Doct. Not so sicke my Lord,\r\nAs she is troubled with thicke-comming Fancies\r\nThat keepe her from her rest\r\n\r\n Macb. Cure of that:\r\nCan\'st thou not Minister to a minde diseas\'d,\r\nPlucke from the Memory a rooted Sorrow,\r\nRaze out the written troubles of the Braine,\r\nAnd with some sweet Obliuious Antidote\r\nCleanse the stufft bosome, of that perillous stuffe\r\nWhich weighes vpon the heart?\r\n Doct. Therein the Patient\r\nMust minister to himselfe\r\n\r\n Macb. Throw Physicke to the Dogs, Ile none of it.\r\nCome, put mine Armour on: giue me my Staffe:\r\nSeyton, send out: Doctor, the Thanes flye from me:\r\nCome sir, dispatch. If thou could\'st Doctor, cast\r\nThe Water of my Land, finde her Disease,\r\nAnd purge it to a sound and pristine Health,\r\nI would applaud thee to the very Eccho,\r\nThat should applaud againe. Pull\'t off I say,\r\nWhat Rubarb, Cyme, or what Purgatiue drugge\r\nWould scowre these English hence: hear\'st y of them?\r\n Doct. I my good Lord: your Royall Preparation\r\nMakes vs heare something\r\n\r\n Macb. Bring it after me:\r\nI will not be affraid of Death and Bane,\r\nTill Birnane Forrest come to Dunsinane\r\n\r\n Doct. Were I from Dunsinane away, and cleere,\r\nProfit againe should hardly draw me heere.\r\n\r\nExeunt.\r\n\r\nScena Quarta.\r\n\r\nDrum and Colours. Enter Malcolme, Seyward, Macduffe,\r\nSeywards Sonne,\r\nMenteth, Cathnes, Angus, and Soldiers Marching.\r\n\r\n Malc. Cosins, I hope the dayes are neere at hand\r\nThat Chambers will be safe\r\n\r\n Ment. We doubt it nothing\r\n\r\n Seyw. What wood is this before vs?\r\n Ment. The wood of Birnane\r\n\r\n Malc. Let euery Souldier hew him downe a Bough,\r\nAnd bear\'t before him, thereby shall we shadow\r\nThe numbers of our Hoast, and make discouery\r\nErre in report of vs\r\n\r\n Sold. It shall be done\r\n\r\n Syw. We learne no other, but the confident Tyrant\r\nKeepes still in Dunsinane, and will indure\r\nOur setting downe befor\'t\r\n\r\n Malc. \'Tis his maine hope:\r\nFor where there is aduantage to be giuen,\r\nBoth more and lesse haue giuen him the Reuolt,\r\nAnd none serue with him, but constrained things,\r\nWhose hearts are absent too\r\n\r\n Macd. Let our iust Censures\r\nAttend the true euent, and put we on\r\nIndustrious Souldiership\r\n\r\n Sey. The time approaches,\r\nThat will with due decision make vs know\r\nWhat we shall say we haue, and what we owe:\r\nThoughts speculatiue, their vnsure hopes relate,\r\nBut certaine issue, stroakes must arbitrate,\r\nTowards which, aduance the warre.\r\n\r\nExeunt. marching\r\n\r\nScena Quinta.\r\n\r\nEnter Macbeth, Seyton, & Souldiers, with Drum and Colours.\r\n\r\n Macb. Hang out our Banners on the outward walls,\r\nThe Cry is still, they come: our Castles strength\r\nWill laugh a Siedge to scorne: Heere let them lye,\r\nTill Famine and the Ague eate them vp:\r\nWere they not forc\'d with those that should be ours,\r\nWe might haue met them darefull, beard to beard,\r\nAnd beate them backward home. What is that noyse?\r\n\r\nA Cry within of Women.\r\n\r\n Sey. It is the cry of women, my good Lord\r\n\r\n Macb. I haue almost forgot the taste of Feares:\r\nThe time ha\'s beene, my sences would haue cool\'d\r\nTo heare a Night-shrieke, and my Fell of haire\r\nWould at a dismall Treatise rowze, and stirre\r\nAs life were in\'t. I haue supt full with horrors,\r\nDirenesse familiar to my slaughterous thoughts\r\nCannot once start me. Wherefore was that cry?\r\n Sey. The Queene (my Lord) is dead\r\n\r\n Macb. She should haue dy\'de heereafter;\r\nThere would haue beene a time for such a word:\r\nTo morrow, and to morrow, and to morrow,\r\nCreepes in this petty pace from day to day,\r\nTo the last Syllable of Recorded time:\r\nAnd all our yesterdayes, haue lighted Fooles\r\nThe way to dusty death. Out, out, breefe Candle,\r\nLife\'s but a walking Shadow, a poore Player,\r\nThat struts and frets his houre vpon the Stage,\r\nAnd then is heard no more. It is a Tale\r\nTold by an Ideot, full of sound and fury\r\nSignifying nothing.\r\nEnter a Messenger.\r\n\r\nThou com\'st to vse thy Tongue: thy Story quickly\r\n\r\n Mes. Gracious my Lord,\r\nI should report that which I say I saw,\r\nBut know not how to doo\'t\r\n\r\n Macb. Well, say sir\r\n\r\n Mes. As I did stand my watch vpon the Hill\r\nI look\'d toward Byrnane, and anon me thought\r\nThe Wood began to moue\r\n\r\n Macb. Lyar, and Slaue\r\n\r\n Mes. Let me endure your wrath, if\'t be not so:\r\nWithin this three Mile may you see it comming.\r\nI say, a mouing Groue\r\n\r\n Macb. If thou speak\'st false,\r\nVpon the next Tree shall thou hang aliue\r\nTill Famine cling thee: If thy speech be sooth,\r\nI care not if thou dost for me as much.\r\nI pull in Resolution, and begin\r\nTo doubt th\' Equiuocation of the Fiend,\r\nThat lies like truth. Feare not, till Byrnane Wood\r\nDo come to Dunsinane, and now a Wood\r\nComes toward Dunsinane. Arme, Arme, and out,\r\nIf this which he auouches, do\'s appeare,\r\nThere is nor flying hence, nor tarrying here.\r\nI \'ginne to be a-weary of the Sun,\r\nAnd wish th\' estate o\'th\' world were now vndon.\r\nRing the Alarum Bell, blow Winde, come wracke,\r\nAt least wee\'l dye with Harnesse on our backe.\r\n\r\nExeunt.\r\n\r\nScena Sexta.\r\n\r\nDrumme and Colours. Enter Malcolme, Seyward, Macduffe, and\r\ntheir Army,\r\nwith Boughes.\r\n\r\n Mal. Now neere enough:\r\nYour leauy Skreenes throw downe,\r\nAnd shew like those you are: You (worthy Vnkle)\r\nShall with my Cosin your right Noble Sonne\r\nLeade our first Battell. Worthy Macduffe, and wee\r\nShall take vpon\'s what else remaines to do,\r\nAccording to our order\r\n\r\n Sey. Fare you well:\r\nDo we but finde the Tyrants power to night,\r\nLet vs be beaten, if we cannot fight\r\n\r\n Macd. Make all our Trumpets speak, giue the[m] all breath\r\nThose clamorous Harbingers of Blood, & Death.\r\n\r\nExeunt.\r\n\r\nAlarums continued.\r\n\r\n\r\nScena Septima.\r\n\r\nEnter Macbeth.\r\n\r\n Macb. They haue tied me to a stake, I cannot flye,\r\nBut Beare-like I must fight the course. What\'s he\r\nThat was not borne of Woman? Such a one\r\nAm I to feare, or none.\r\nEnter young Seyward.\r\n\r\n Y.Sey. What is thy name?\r\n Macb. Thou\'lt be affraid to heare it\r\n\r\n Y.Sey. No: though thou call\'st thy selfe a hoter name\r\nThen any is in hell\r\n\r\n Macb. My name\'s Macbeth\r\n\r\n Y.Sey. The diuell himselfe could not pronounce a Title\r\nMore hatefull to mine eare\r\n\r\n Macb. No: nor more fearefull\r\n\r\n Y.Sey. Thou lyest abhorred Tyrant, with my Sword\r\nIle proue the lye thou speak\'st.\r\n\r\nFight, and young Seyward slaine.\r\n\r\n Macb. Thou was\'t borne of woman;\r\nBut Swords I smile at, Weapons laugh to scorne,\r\nBrandish\'d by man that\'s of a Woman borne.\r\nEnter.\r\n\r\nAlarums. Enter Macduffe.\r\n\r\n Macd. That way the noise is: Tyrant shew thy face,\r\nIf thou beest slaine, and with no stroake of mine,\r\nMy Wife and Childrens Ghosts will haunt me still:\r\nI cannot strike at wretched Kernes, whose armes\r\nAre hyr\'d to beare their Staues; either thou Macbeth,\r\nOr else my Sword with an vnbattered edge\r\nI sheath againe vndeeded. There thou should\'st be,\r\nBy this great clatter, one of greatest note\r\nSeemes bruited. Let me finde him Fortune,\r\nAnd more I begge not.\r\n\r\nExit. Alarums.\r\n\r\nEnter Malcolme and Seyward.\r\n\r\n Sey. This way my Lord, the Castles gently rendred:\r\nThe Tyrants people, on both sides do fight,\r\nThe Noble Thanes do brauely in the Warre,\r\nThe day almost it selfe professes yours,\r\nAnd little is to do\r\n\r\n Malc. We haue met with Foes\r\nThat strike beside vs\r\n\r\n Sey. Enter Sir, the Castle.\r\n\r\nExeunt. Alarum\r\n\r\nEnter Macbeth.\r\n\r\n Macb. Why should I play the Roman Foole, and dye\r\nOn mine owne sword? whiles I see liues, the gashes\r\nDo better vpon them.\r\nEnter Macduffe.\r\n\r\n Macd. Turne Hell-hound, turne\r\n\r\n Macb. Of all men else I haue auoyded thee:\r\nBut get thee backe, my soule is too much charg\'d\r\nWith blood of thine already\r\n\r\n Macd. I haue no words,\r\nMy voice is in my Sword, thou bloodier Villaine\r\nThen tearmes can giue thee out.\r\n\r\nFight: Alarum\r\n\r\n Macb. Thou loosest labour\r\nAs easie may\'st thou the intrenchant Ayre\r\nWith thy keene Sword impresse, as make me bleed:\r\nLet fall thy blade on vulnerable Crests,\r\nI beare a charmed Life, which must not yeeld\r\nTo one of woman borne\r\n\r\n Macd. Dispaire thy Charme,\r\nAnd let the Angell whom thou still hast seru\'d\r\nTell thee, Macduffe was from his Mothers womb\r\nVntimely ript\r\n\r\n Macb. Accursed be that tongue that tels mee so;\r\nFor it hath Cow\'d my better part of man:\r\nAnd be these Iugling Fiends no more beleeu\'d,\r\nThat palter with vs in a double sence,\r\nThat keepe the word of promise to our eare,\r\nAnd breake it to our hope. Ile not fight with thee\r\n\r\n Macd. Then yeeld thee Coward,\r\nAnd liue to be the shew, and gaze o\'th\' time.\r\nWee\'l haue thee, as our rarer Monsters are\r\nPainted vpon a pole, and vnder-writ,\r\nHeere may you see the Tyrant\r\n\r\n Macb. I will not yeeld\r\nTo kisse the ground before young Malcolmes feet,\r\nAnd to be baited with the Rabbles curse.\r\nThough Byrnane wood be come to Dunsinane,\r\nAnd thou oppos\'d, being of no woman borne,\r\nYet I will try the last. Before my body,\r\nI throw my warlike Shield: Lay on Macduffe,\r\nAnd damn\'d be him, that first cries hold, enough.\r\n\r\nExeunt. fighting. Alarums.\r\n\r\nEnter Fighting, and Macbeth slaine.\r\n\r\nRetreat, and Flourish. Enter with Drumme and Colours, Malcolm,\r\nSeyward,\r\nRosse, Thanes, & Soldiers.\r\n\r\n Mal. I would the Friends we misse, were safe arriu\'d\r\n\r\n Sey. Some must go off: and yet by these I see,\r\nSo great a day as this is cheapely bought\r\n\r\n Mal. Macduffe is missing, and your Noble Sonne\r\n\r\n Rosse. Your son my Lord, ha\'s paid a souldiers debt,\r\nHe onely liu\'d but till he was a man,\r\nThe which no sooner had his Prowesse confirm\'d\r\nIn the vnshrinking station where he fought,\r\nBut like a man he dy\'de\r\n\r\n Sey. Then he is dead?\r\n Rosse. I, and brought off the field: your cause of sorrow\r\nMust not be measur\'d by his worth, for then\r\nIt hath no end\r\n\r\n Sey. Had he his hurts before?\r\n Rosse. I, on the Front\r\n\r\n Sey. Why then, Gods Soldier be he:\r\nHad I as many Sonnes, as I haue haires,\r\nI would not wish them to a fairer death:\r\nAnd so his Knell is knoll\'d\r\n\r\n Mal. Hee\'s worth more sorrow,\r\nand that Ile spend for him\r\n\r\n Sey. He\'s worth no more,\r\nThey say he parted well, and paid his score,\r\nAnd so God be with him. Here comes newer comfort.\r\nEnter Macduffe, with Macbeths head.\r\n\r\n Macd. Haile King, for so thou art.\r\nBehold where stands\r\nTh\' Vsurpers cursed head: the time is free:\r\nI see thee compast with thy Kingdomes Pearle,\r\nThat speake my salutation in their minds:\r\nWhose voyces I desire alowd with mine.\r\nHaile King of Scotland\r\n\r\n All. Haile King of Scotland.\r\n\r\nFlourish.\r\n\r\n Mal. We shall not spend a large expence of time,\r\nBefore we reckon with your seuerall loues,\r\nAnd make vs euen with you. My Thanes and Kinsmen\r\nHenceforth be Earles, the first that euer Scotland\r\nIn such an Honor nam\'d: What\'s more to do,\r\nWhich would be planted newly with the time,\r\nAs calling home our exil\'d Friends abroad,\r\nThat fled the Snares of watchfull Tyranny,\r\nProducing forth the cruell Ministers\r\nOf this dead Butcher, and his Fiend-like Queene;\r\nWho (as \'tis thought) by selfe and violent hands,\r\nTooke off her life. This, and what need full else\r\nThat call\'s vpon vs, by the Grace of Grace,\r\nWe will performe in measure, time, and place:\r\nSo thankes to all at once, and to each one,\r\nWhom we inuite, to see vs Crown\'d at Scone.\r\n\r\nFlourish. Exeunt Omnes.\r\n\r\n\r\nFINIS. THE TRAGEDIE OF MACBETH.\r\n'); +INSERT INTO `shakespeare` (`id`, `title`, `contents`) VALUES +(3, 'The Tragedy of Romeo and Juliet', '\r\nProject Gutenberg’s Romeo and Juliet, by William Shakespeare\r\n\r\nThis eBook is for the use of anyone anywhere in the United States and\r\nmost other parts of the world at no cost and with almost no restrictions\r\nwhatsoever. You may copy it, give it away or re-use it under the terms\r\nof the Project Gutenberg License included with this eBook or online at\r\nwww.gutenberg.org. If you are not located in the United States, you’ll\r\nhave to check the laws of the country where you are located before using\r\nthis ebook.\r\n\r\n\r\n\r\nTitle: Romeo and Juliet\r\n\r\nAuthor: William Shakespeare\r\n\r\nRelease Date: November, 1998 [Etext #1513]\r\nLast Updated: January 30, 2019\r\n\r\nLanguage: English\r\n\r\nCharacter set encoding: UTF-8\r\n\r\n*** START OF THIS PROJECT GUTENBERG EBOOK ROMEO AND JULIET ***\r\n\r\n\r\n\r\nThis etext was produced by the PG Shakespeare Team,\r\na team of about twenty Project Gutenberg volunteers.\r\n\r\n\r\nTHE TRAGEDY OF ROMEO AND JULIET\r\n\r\n\r\n\r\nby William Shakespeare\r\n\r\n\r\n\r\n\r\n\r\n\r\nContents\r\n\r\nTHE PROLOGUE.\r\n\r\nACT I\r\nScene I. A public place.\r\nScene II. A Street.\r\nScene III. Room in Capulet’s House.\r\nScene IV. A Street.\r\nScene V. A Hall in Capulet’s House.\r\n\r\n\r\nACT II\r\nCHORUS.\r\nScene I. An open place adjoining Capulet’s Garden.\r\nScene II. Capulet’s Garden.\r\nScene III. Friar Lawrence’s Cell.\r\nScene IV. A Street.\r\nScene V. Capulet’s Garden.\r\nScene VI. Friar Lawrence’s Cell.\r\n\r\n\r\nACT III\r\nScene I. A public Place.\r\nScene II. A Room in Capulet’s House.\r\nScene III. Friar Lawrence’s cell.\r\nScene IV. A Room in Capulet’s House.\r\nScene V. An open Gallery to Juliet’s Chamber, overlooking the Garden.\r\n\r\n\r\nACT IV\r\nScene I. Friar Lawrence’s Cell.\r\nScene II. Hall in Capulet’s House.\r\nScene III. Juliet’s Chamber.\r\nScene IV. Hall in Capulet’s House.\r\nScene V. Juliet’s Chamber; Juliet on the bed.\r\n\r\n\r\nACT V\r\nScene I. Mantua. A Street.\r\nScene II. Friar Lawrence’s Cell.\r\nScene III. A churchyard; in it a Monument belonging to the Capulets.\r\n\r\n\r\n\r\n\r\n Dramatis Personæ\r\n\r\nESCALUS, Prince of Verona.\r\nMERCUTIO, kinsman to the Prince, and friend to Romeo.\r\nPARIS, a young Nobleman, kinsman to the Prince.\r\nPage to Paris.\r\n\r\nMONTAGUE, head of a Veronese family at feud with the Capulets.\r\nLADY MONTAGUE, wife to Montague.\r\nROMEO, son to Montague.\r\nBENVOLIO, nephew to Montague, and friend to Romeo.\r\nABRAM, servant to Montague.\r\nBALTHASAR, servant to Romeo.\r\n\r\nCAPULET, head of a Veronese family at feud with the Montagues.\r\nLADY CAPULET, wife to Capulet.\r\nJULIET, daughter to Capulet.\r\nTYBALT, nephew to Lady Capulet.\r\nCAPULET’S COUSIN, an old man.\r\nNURSE to Juliet.\r\nPETER, servant to Juliet’s Nurse.\r\nSAMPSON, servant to Capulet.\r\nGREGORY, servant to Capulet.\r\nServants.\r\n\r\nFRIAR LAWRENCE, a Franciscan.\r\nFRIAR JOHN, of the same Order.\r\nAn Apothecary.\r\nCHORUS.\r\nThree Musicians.\r\nAn Officer.\r\nCitizens of Verona; several Men and Women, relations to both houses;\r\nMaskers, Guards, Watchmen and Attendants.\r\n\r\nSCENE. During the greater part of the Play in Verona; once, in the\r\nFifth Act, at Mantua.\r\n\r\n\r\nTHE PROLOGUE\r\n\r\n Enter Chorus.\r\n\r\nCHORUS.\r\nTwo households, both alike in dignity,\r\nIn fair Verona, where we lay our scene,\r\nFrom ancient grudge break to new mutiny,\r\nWhere civil blood makes civil hands unclean.\r\nFrom forth the fatal loins of these two foes\r\nA pair of star-cross’d lovers take their life;\r\nWhose misadventur’d piteous overthrows\r\nDoth with their death bury their parents’ strife.\r\nThe fearful passage of their death-mark’d love,\r\nAnd the continuance of their parents’ rage,\r\nWhich, but their children’s end, nought could remove,\r\nIs now the two hours’ traffic of our stage;\r\nThe which, if you with patient ears attend,\r\nWhat here shall miss, our toil shall strive to mend.\r\n\r\n [_Exit._]\r\n\r\n\r\n\r\nACT I\r\n\r\nSCENE I. A public place.\r\n\r\n Enter Sampson and Gregory armed with swords and bucklers.\r\n\r\nSAMPSON.\r\nGregory, on my word, we’ll not carry coals.\r\n\r\nGREGORY.\r\nNo, for then we should be colliers.\r\n\r\nSAMPSON.\r\nI mean, if we be in choler, we’ll draw.\r\n\r\nGREGORY.\r\nAy, while you live, draw your neck out o’ the collar.\r\n\r\nSAMPSON.\r\nI strike quickly, being moved.\r\n\r\nGREGORY.\r\nBut thou art not quickly moved to strike.\r\n\r\nSAMPSON.\r\nA dog of the house of Montague moves me.\r\n\r\nGREGORY.\r\nTo move is to stir; and to be valiant is to stand: therefore, if thou\r\nart moved, thou runn’st away.\r\n\r\nSAMPSON.\r\nA dog of that house shall move me to stand.\r\nI will take the wall of any man or maid of Montague’s.\r\n\r\nGREGORY.\r\nThat shows thee a weak slave, for the weakest goes to the wall.\r\n\r\nSAMPSON.\r\nTrue, and therefore women, being the weaker vessels, are ever thrust to\r\nthe wall: therefore I will push Montague’s men from the wall, and\r\nthrust his maids to the wall.\r\n\r\nGREGORY.\r\nThe quarrel is between our masters and us their men.\r\n\r\nSAMPSON.\r\n’Tis all one, I will show myself a tyrant: when I have fought with the\r\nmen I will be civil with the maids, I will cut off their heads.\r\n\r\nGREGORY.\r\nThe heads of the maids?\r\n\r\nSAMPSON.\r\nAy, the heads of the maids, or their maidenheads; take it in what sense\r\nthou wilt.\r\n\r\nGREGORY.\r\nThey must take it in sense that feel it.\r\n\r\nSAMPSON.\r\nMe they shall feel while I am able to stand: and ’tis known I am a\r\npretty piece of flesh.\r\n\r\nGREGORY.\r\n’Tis well thou art not fish; if thou hadst, thou hadst been poor John.\r\nDraw thy tool; here comes of the house of Montagues.\r\n\r\n Enter Abram and Balthasar.\r\n\r\nSAMPSON.\r\nMy naked weapon is out: quarrel, I will back thee.\r\n\r\nGREGORY.\r\nHow? Turn thy back and run?\r\n\r\nSAMPSON.\r\nFear me not.\r\n\r\nGREGORY.\r\nNo, marry; I fear thee!\r\n\r\nSAMPSON.\r\nLet us take the law of our sides; let them begin.\r\n\r\nGREGORY.\r\nI will frown as I pass by, and let them take it as they list.\r\n\r\nSAMPSON.\r\nNay, as they dare. I will bite my thumb at them, which is disgrace to\r\nthem if they bear it.\r\n\r\nABRAM.\r\nDo you bite your thumb at us, sir?\r\n\r\nSAMPSON.\r\nI do bite my thumb, sir.\r\n\r\nABRAM.\r\nDo you bite your thumb at us, sir?\r\n\r\nSAMPSON.\r\nIs the law of our side if I say ay?\r\n\r\nGREGORY.\r\nNo.\r\n\r\nSAMPSON.\r\nNo sir, I do not bite my thumb at you, sir; but I bite my thumb, sir.\r\n\r\nGREGORY.\r\nDo you quarrel, sir?\r\n\r\nABRAM.\r\nQuarrel, sir? No, sir.\r\n\r\nSAMPSON.\r\nBut if you do, sir, am for you. I serve as good a man as you.\r\n\r\nABRAM.\r\nNo better.\r\n\r\nSAMPSON.\r\nWell, sir.\r\n\r\n Enter Benvolio.\r\n\r\nGREGORY.\r\nSay better; here comes one of my master’s kinsmen.\r\n\r\nSAMPSON.\r\nYes, better, sir.\r\n\r\nABRAM.\r\nYou lie.\r\n\r\nSAMPSON.\r\nDraw, if you be men. Gregory, remember thy washing blow.\r\n\r\n [_They fight._]\r\n\r\nBENVOLIO.\r\nPart, fools! put up your swords, you know not what you do.\r\n\r\n [_Beats down their swords._]\r\n\r\n Enter Tybalt.\r\n\r\nTYBALT.\r\nWhat, art thou drawn among these heartless hinds?\r\nTurn thee Benvolio, look upon thy death.\r\n\r\nBENVOLIO.\r\nI do but keep the peace, put up thy sword,\r\nOr manage it to part these men with me.\r\n\r\nTYBALT.\r\nWhat, drawn, and talk of peace? I hate the word\r\nAs I hate hell, all Montagues, and thee:\r\nHave at thee, coward.\r\n\r\n [_They fight._]\r\n\r\n Enter three or four Citizens with clubs.\r\n\r\nFIRST CITIZEN.\r\nClubs, bills and partisans! Strike! Beat them down!\r\nDown with the Capulets! Down with the Montagues!\r\n\r\n Enter Capulet in his gown, and Lady Capulet.\r\n\r\nCAPULET.\r\nWhat noise is this? Give me my long sword, ho!\r\n\r\nLADY CAPULET.\r\nA crutch, a crutch! Why call you for a sword?\r\n\r\nCAPULET.\r\nMy sword, I say! Old Montague is come,\r\nAnd flourishes his blade in spite of me.\r\n\r\n Enter Montague and his Lady Montague.\r\n\r\nMONTAGUE.\r\nThou villain Capulet! Hold me not, let me go.\r\n\r\nLADY MONTAGUE.\r\nThou shalt not stir one foot to seek a foe.\r\n\r\n Enter Prince Escalus, with Attendants.\r\n\r\nPRINCE.\r\nRebellious subjects, enemies to peace,\r\nProfaners of this neighbour-stained steel,—\r\nWill they not hear? What, ho! You men, you beasts,\r\nThat quench the fire of your pernicious rage\r\nWith purple fountains issuing from your veins,\r\nOn pain of torture, from those bloody hands\r\nThrow your mistemper’d weapons to the ground\r\nAnd hear the sentence of your moved prince.\r\nThree civil brawls, bred of an airy word,\r\nBy thee, old Capulet, and Montague,\r\nHave thrice disturb’d the quiet of our streets,\r\nAnd made Verona’s ancient citizens\r\nCast by their grave beseeming ornaments,\r\nTo wield old partisans, in hands as old,\r\nCanker’d with peace, to part your canker’d hate.\r\nIf ever you disturb our streets again,\r\nYour lives shall pay the forfeit of the peace.\r\nFor this time all the rest depart away:\r\nYou, Capulet, shall go along with me,\r\nAnd Montague, come you this afternoon,\r\nTo know our farther pleasure in this case,\r\nTo old Free-town, our common judgement-place.\r\nOnce more, on pain of death, all men depart.\r\n\r\n [_Exeunt Prince and Attendants; Capulet, Lady Capulet, Tybalt,\r\n Citizens and Servants._]\r\n\r\nMONTAGUE.\r\nWho set this ancient quarrel new abroach?\r\nSpeak, nephew, were you by when it began?\r\n\r\nBENVOLIO.\r\nHere were the servants of your adversary\r\nAnd yours, close fighting ere I did approach.\r\nI drew to part them, in the instant came\r\nThe fiery Tybalt, with his sword prepar’d,\r\nWhich, as he breath’d defiance to my ears,\r\nHe swung about his head, and cut the winds,\r\nWho nothing hurt withal, hiss’d him in scorn.\r\nWhile we were interchanging thrusts and blows\r\nCame more and more, and fought on part and part,\r\nTill the Prince came, who parted either part.\r\n\r\nLADY MONTAGUE.\r\nO where is Romeo, saw you him today?\r\nRight glad I am he was not at this fray.\r\n\r\nBENVOLIO.\r\nMadam, an hour before the worshipp’d sun\r\nPeer’d forth the golden window of the east,\r\nA troubled mind drave me to walk abroad,\r\nWhere underneath the grove of sycamore\r\nThat westward rooteth from this city side,\r\nSo early walking did I see your son.\r\nTowards him I made, but he was ware of me,\r\nAnd stole into the covert of the wood.\r\nI, measuring his affections by my own,\r\nWhich then most sought where most might not be found,\r\nBeing one too many by my weary self,\r\nPursu’d my humour, not pursuing his,\r\nAnd gladly shunn’d who gladly fled from me.\r\n\r\nMONTAGUE.\r\nMany a morning hath he there been seen,\r\nWith tears augmenting the fresh morning’s dew,\r\nAdding to clouds more clouds with his deep sighs;\r\nBut all so soon as the all-cheering sun\r\nShould in the farthest east begin to draw\r\nThe shady curtains from Aurora’s bed,\r\nAway from light steals home my heavy son,\r\nAnd private in his chamber pens himself,\r\nShuts up his windows, locks fair daylight out\r\nAnd makes himself an artificial night.\r\nBlack and portentous must this humour prove,\r\nUnless good counsel may the cause remove.\r\n\r\nBENVOLIO.\r\nMy noble uncle, do you know the cause?\r\n\r\nMONTAGUE.\r\nI neither know it nor can learn of him.\r\n\r\nBENVOLIO.\r\nHave you importun’d him by any means?\r\n\r\nMONTAGUE.\r\nBoth by myself and many other friends;\r\nBut he, his own affections’ counsellor,\r\nIs to himself—I will not say how true—\r\nBut to himself so secret and so close,\r\nSo far from sounding and discovery,\r\nAs is the bud bit with an envious worm\r\nEre he can spread his sweet leaves to the air,\r\nOr dedicate his beauty to the sun.\r\nCould we but learn from whence his sorrows grow,\r\nWe would as willingly give cure as know.\r\n\r\n Enter Romeo.\r\n\r\nBENVOLIO.\r\nSee, where he comes. So please you step aside;\r\nI’ll know his grievance or be much denied.\r\n\r\nMONTAGUE.\r\nI would thou wert so happy by thy stay\r\nTo hear true shrift. Come, madam, let’s away,\r\n\r\n [_Exeunt Montague and Lady Montague._]\r\n\r\nBENVOLIO.\r\nGood morrow, cousin.\r\n\r\nROMEO.\r\nIs the day so young?\r\n\r\nBENVOLIO.\r\nBut new struck nine.\r\n\r\nROMEO.\r\nAy me, sad hours seem long.\r\nWas that my father that went hence so fast?\r\n\r\nBENVOLIO.\r\nIt was. What sadness lengthens Romeo’s hours?\r\n\r\nROMEO.\r\nNot having that which, having, makes them short.\r\n\r\nBENVOLIO.\r\nIn love?\r\n\r\nROMEO.\r\nOut.\r\n\r\nBENVOLIO.\r\nOf love?\r\n\r\nROMEO.\r\nOut of her favour where I am in love.\r\n\r\nBENVOLIO.\r\nAlas that love so gentle in his view,\r\nShould be so tyrannous and rough in proof.\r\n\r\nROMEO.\r\nAlas that love, whose view is muffled still,\r\nShould, without eyes, see pathways to his will!\r\nWhere shall we dine? O me! What fray was here?\r\nYet tell me not, for I have heard it all.\r\nHere’s much to do with hate, but more with love:\r\nWhy, then, O brawling love! O loving hate!\r\nO anything, of nothing first create!\r\nO heavy lightness! serious vanity!\r\nMisshapen chaos of well-seeming forms!\r\nFeather of lead, bright smoke, cold fire, sick health!\r\nStill-waking sleep, that is not what it is!\r\nThis love feel I, that feel no love in this.\r\nDost thou not laugh?\r\n\r\nBENVOLIO.\r\nNo coz, I rather weep.\r\n\r\nROMEO.\r\nGood heart, at what?\r\n\r\nBENVOLIO.\r\nAt thy good heart’s oppression.\r\n\r\nROMEO.\r\nWhy such is love’s transgression.\r\nGriefs of mine own lie heavy in my breast,\r\nWhich thou wilt propagate to have it prest\r\nWith more of thine. This love that thou hast shown\r\nDoth add more grief to too much of mine own.\r\nLove is a smoke made with the fume of sighs;\r\nBeing purg’d, a fire sparkling in lovers’ eyes;\r\nBeing vex’d, a sea nourish’d with lovers’ tears:\r\nWhat is it else? A madness most discreet,\r\nA choking gall, and a preserving sweet.\r\nFarewell, my coz.\r\n\r\n [_Going._]\r\n\r\nBENVOLIO.\r\nSoft! I will go along:\r\nAnd if you leave me so, you do me wrong.\r\n\r\nROMEO.\r\nTut! I have lost myself; I am not here.\r\nThis is not Romeo, he’s some other where.\r\n\r\nBENVOLIO.\r\nTell me in sadness who is that you love?\r\n\r\nROMEO.\r\nWhat, shall I groan and tell thee?\r\n\r\nBENVOLIO.\r\nGroan! Why, no; but sadly tell me who.\r\n\r\nROMEO.\r\nBid a sick man in sadness make his will,\r\nA word ill urg’d to one that is so ill.\r\nIn sadness, cousin, I do love a woman.\r\n\r\nBENVOLIO.\r\nI aim’d so near when I suppos’d you lov’d.\r\n\r\nROMEO.\r\nA right good markman, and she’s fair I love.\r\n\r\nBENVOLIO.\r\nA right fair mark, fair coz, is soonest hit.\r\n\r\nROMEO.\r\nWell, in that hit you miss: she’ll not be hit\r\nWith Cupid’s arrow, she hath Dian’s wit;\r\nAnd in strong proof of chastity well arm’d,\r\nFrom love’s weak childish bow she lives uncharm’d.\r\nShe will not stay the siege of loving terms\r\nNor bide th’encounter of assailing eyes,\r\nNor ope her lap to saint-seducing gold:\r\nO she’s rich in beauty, only poor\r\nThat when she dies, with beauty dies her store.\r\n\r\nBENVOLIO.\r\nThen she hath sworn that she will still live chaste?\r\n\r\nROMEO.\r\nShe hath, and in that sparing makes huge waste;\r\nFor beauty starv’d with her severity,\r\nCuts beauty off from all posterity.\r\nShe is too fair, too wise; wisely too fair,\r\nTo merit bliss by making me despair.\r\nShe hath forsworn to love, and in that vow\r\nDo I live dead, that live to tell it now.\r\n\r\nBENVOLIO.\r\nBe rul’d by me, forget to think of her.\r\n\r\nROMEO.\r\nO teach me how I should forget to think.\r\n\r\nBENVOLIO.\r\nBy giving liberty unto thine eyes;\r\nExamine other beauties.\r\n\r\nROMEO.\r\n’Tis the way\r\nTo call hers, exquisite, in question more.\r\nThese happy masks that kiss fair ladies’ brows,\r\nBeing black, puts us in mind they hide the fair;\r\nHe that is strucken blind cannot forget\r\nThe precious treasure of his eyesight lost.\r\nShow me a mistress that is passing fair,\r\nWhat doth her beauty serve but as a note\r\nWhere I may read who pass’d that passing fair?\r\nFarewell, thou canst not teach me to forget.\r\n\r\nBENVOLIO.\r\nI’ll pay that doctrine, or else die in debt.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. A Street.\r\n\r\n Enter Capulet, Paris and Servant.\r\n\r\nCAPULET.\r\nBut Montague is bound as well as I,\r\nIn penalty alike; and ’tis not hard, I think,\r\nFor men so old as we to keep the peace.\r\n\r\nPARIS.\r\nOf honourable reckoning are you both,\r\nAnd pity ’tis you liv’d at odds so long.\r\nBut now my lord, what say you to my suit?\r\n\r\nCAPULET.\r\nBut saying o’er what I have said before.\r\nMy child is yet a stranger in the world,\r\nShe hath not seen the change of fourteen years;\r\nLet two more summers wither in their pride\r\nEre we may think her ripe to be a bride.\r\n\r\nPARIS.\r\nYounger than she are happy mothers made.\r\n\r\nCAPULET.\r\nAnd too soon marr’d are those so early made.\r\nThe earth hath swallowed all my hopes but she,\r\nShe is the hopeful lady of my earth:\r\nBut woo her, gentle Paris, get her heart,\r\nMy will to her consent is but a part;\r\nAnd she agree, within her scope of choice\r\nLies my consent and fair according voice.\r\nThis night I hold an old accustom’d feast,\r\nWhereto I have invited many a guest,\r\nSuch as I love, and you among the store,\r\nOne more, most welcome, makes my number more.\r\nAt my poor house look to behold this night\r\nEarth-treading stars that make dark heaven light:\r\nSuch comfort as do lusty young men feel\r\nWhen well apparell’d April on the heel\r\nOf limping winter treads, even such delight\r\nAmong fresh female buds shall you this night\r\nInherit at my house. Hear all, all see,\r\nAnd like her most whose merit most shall be:\r\nWhich, on more view of many, mine, being one,\r\nMay stand in number, though in reckoning none.\r\nCome, go with me. Go, sirrah, trudge about\r\nThrough fair Verona; find those persons out\r\nWhose names are written there, [_gives a paper_] and to them say,\r\nMy house and welcome on their pleasure stay.\r\n\r\n [_Exeunt Capulet and Paris._]\r\n\r\nSERVANT.\r\nFind them out whose names are written here! It is written that the\r\nshoemaker should meddle with his yard and the tailor with his last, the\r\nfisher with his pencil, and the painter with his nets; but I am sent to\r\nfind those persons whose names are here writ, and can never find what\r\nnames the writing person hath here writ. I must to the learned. In good\r\ntime!\r\n\r\n Enter Benvolio and Romeo.\r\n\r\nBENVOLIO.\r\nTut, man, one fire burns out another’s burning,\r\nOne pain is lessen’d by another’s anguish;\r\nTurn giddy, and be holp by backward turning;\r\nOne desperate grief cures with another’s languish:\r\nTake thou some new infection to thy eye,\r\nAnd the rank poison of the old will die.\r\n\r\nROMEO.\r\nYour plantain leaf is excellent for that.\r\n\r\nBENVOLIO.\r\nFor what, I pray thee?\r\n\r\nROMEO.\r\nFor your broken shin.\r\n\r\nBENVOLIO.\r\nWhy, Romeo, art thou mad?\r\n\r\nROMEO.\r\nNot mad, but bound more than a madman is:\r\nShut up in prison, kept without my food,\r\nWhipp’d and tormented and—God-den, good fellow.\r\n\r\nSERVANT.\r\nGod gi’ go-den. I pray, sir, can you read?\r\n\r\nROMEO.\r\nAy, mine own fortune in my misery.\r\n\r\nSERVANT.\r\nPerhaps you have learned it without book.\r\nBut I pray, can you read anything you see?\r\n\r\nROMEO.\r\nAy, If I know the letters and the language.\r\n\r\nSERVANT.\r\nYe say honestly, rest you merry!\r\n\r\nROMEO.\r\nStay, fellow; I can read.\r\n\r\n [_He reads the letter._]\r\n\r\n_Signior Martino and his wife and daughters;\r\nCounty Anselmo and his beauteous sisters;\r\nThe lady widow of Utruvio;\r\nSignior Placentio and his lovely nieces;\r\nMercutio and his brother Valentine;\r\nMine uncle Capulet, his wife, and daughters;\r\nMy fair niece Rosaline and Livia;\r\nSignior Valentio and his cousin Tybalt;\r\nLucio and the lively Helena. _\r\n\r\n\r\nA fair assembly. [_Gives back the paper_] Whither should they come?\r\n\r\nSERVANT.\r\nUp.\r\n\r\nROMEO.\r\nWhither to supper?\r\n\r\nSERVANT.\r\nTo our house.\r\n\r\nROMEO.\r\nWhose house?\r\n\r\nSERVANT.\r\nMy master’s.\r\n\r\nROMEO.\r\nIndeed I should have ask’d you that before.\r\n\r\nSERVANT.\r\nNow I’ll tell you without asking. My master is the great rich Capulet,\r\nand if you be not of the house of Montagues, I pray come and crush a\r\ncup of wine. Rest you merry.\r\n\r\n [_Exit._]\r\n\r\nBENVOLIO.\r\nAt this same ancient feast of Capulet’s\r\nSups the fair Rosaline whom thou so lov’st;\r\nWith all the admired beauties of Verona.\r\nGo thither and with unattainted eye,\r\nCompare her face with some that I shall show,\r\nAnd I will make thee think thy swan a crow.\r\n\r\nROMEO.\r\nWhen the devout religion of mine eye\r\nMaintains such falsehood, then turn tears to fire;\r\nAnd these who, often drown’d, could never die,\r\nTransparent heretics, be burnt for liars.\r\nOne fairer than my love? The all-seeing sun\r\nNe’er saw her match since first the world begun.\r\n\r\nBENVOLIO.\r\nTut, you saw her fair, none else being by,\r\nHerself pois’d with herself in either eye:\r\nBut in that crystal scales let there be weigh’d\r\nYour lady’s love against some other maid\r\nThat I will show you shining at this feast,\r\nAnd she shall scant show well that now shows best.\r\n\r\nROMEO.\r\nI’ll go along, no such sight to be shown,\r\nBut to rejoice in splendour of my own.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE III. Room in Capulet’s House.\r\n\r\n Enter Lady Capulet and Nurse.\r\n\r\nLADY CAPULET.\r\nNurse, where’s my daughter? Call her forth to me.\r\n\r\nNURSE.\r\nNow, by my maidenhead, at twelve year old,\r\nI bade her come. What, lamb! What ladybird!\r\nGod forbid! Where’s this girl? What, Juliet!\r\n\r\n Enter Juliet.\r\n\r\nJULIET.\r\nHow now, who calls?\r\n\r\nNURSE.\r\nYour mother.\r\n\r\nJULIET.\r\nMadam, I am here. What is your will?\r\n\r\nLADY CAPULET.\r\nThis is the matter. Nurse, give leave awhile,\r\nWe must talk in secret. Nurse, come back again,\r\nI have remember’d me, thou’s hear our counsel.\r\nThou knowest my daughter’s of a pretty age.\r\n\r\nNURSE.\r\nFaith, I can tell her age unto an hour.\r\n\r\nLADY CAPULET.\r\nShe’s not fourteen.\r\n\r\nNURSE.\r\nI’ll lay fourteen of my teeth,\r\nAnd yet, to my teen be it spoken, I have but four,\r\nShe is not fourteen. How long is it now\r\nTo Lammas-tide?\r\n\r\nLADY CAPULET.\r\nA fortnight and odd days.\r\n\r\nNURSE.\r\nEven or odd, of all days in the year,\r\nCome Lammas Eve at night shall she be fourteen.\r\nSusan and she,—God rest all Christian souls!—\r\nWere of an age. Well, Susan is with God;\r\nShe was too good for me. But as I said,\r\nOn Lammas Eve at night shall she be fourteen;\r\nThat shall she, marry; I remember it well.\r\n’Tis since the earthquake now eleven years;\r\nAnd she was wean’d,—I never shall forget it—,\r\nOf all the days of the year, upon that day:\r\nFor I had then laid wormwood to my dug,\r\nSitting in the sun under the dovehouse wall;\r\nMy lord and you were then at Mantua:\r\nNay, I do bear a brain. But as I said,\r\nWhen it did taste the wormwood on the nipple\r\nOf my dug and felt it bitter, pretty fool,\r\nTo see it tetchy, and fall out with the dug!\r\nShake, quoth the dovehouse: ’twas no need, I trow,\r\nTo bid me trudge.\r\nAnd since that time it is eleven years;\r\nFor then she could stand alone; nay, by th’rood\r\nShe could have run and waddled all about;\r\nFor even the day before she broke her brow,\r\nAnd then my husband,—God be with his soul!\r\nA was a merry man,—took up the child:\r\n‘Yea,’ quoth he, ‘dost thou fall upon thy face?\r\nThou wilt fall backward when thou hast more wit;\r\nWilt thou not, Jule?’ and, by my holidame,\r\nThe pretty wretch left crying, and said ‘Ay’.\r\nTo see now how a jest shall come about.\r\nI warrant, and I should live a thousand years,\r\nI never should forget it. ‘Wilt thou not, Jule?’ quoth he;\r\nAnd, pretty fool, it stinted, and said ‘Ay.’\r\n\r\nLADY CAPULET.\r\nEnough of this; I pray thee hold thy peace.\r\n\r\nNURSE.\r\nYes, madam, yet I cannot choose but laugh,\r\nTo think it should leave crying, and say ‘Ay’;\r\nAnd yet I warrant it had upon it brow\r\nA bump as big as a young cockerel’s stone;\r\nA perilous knock, and it cried bitterly.\r\n‘Yea,’ quoth my husband, ‘fall’st upon thy face?\r\nThou wilt fall backward when thou comest to age;\r\nWilt thou not, Jule?’ it stinted, and said ‘Ay’.\r\n\r\nJULIET.\r\nAnd stint thou too, I pray thee, Nurse, say I.\r\n\r\nNURSE.\r\nPeace, I have done. God mark thee to his grace\r\nThou wast the prettiest babe that e’er I nurs’d:\r\nAnd I might live to see thee married once, I have my wish.\r\n\r\nLADY CAPULET.\r\nMarry, that marry is the very theme\r\nI came to talk of. Tell me, daughter Juliet,\r\nHow stands your disposition to be married?\r\n\r\nJULIET.\r\nIt is an honour that I dream not of.\r\n\r\nNURSE.\r\nAn honour! Were not I thine only nurse,\r\nI would say thou hadst suck’d wisdom from thy teat.\r\n\r\nLADY CAPULET.\r\nWell, think of marriage now: younger than you,\r\nHere in Verona, ladies of esteem,\r\nAre made already mothers. By my count\r\nI was your mother much upon these years\r\nThat you are now a maid. Thus, then, in brief;\r\nThe valiant Paris seeks you for his love.\r\n\r\nNURSE.\r\nA man, young lady! Lady, such a man\r\nAs all the world—why he’s a man of wax.\r\n\r\nLADY CAPULET.\r\nVerona’s summer hath not such a flower.\r\n\r\nNURSE.\r\nNay, he’s a flower, in faith a very flower.\r\n\r\nLADY CAPULET.\r\nWhat say you, can you love the gentleman?\r\nThis night you shall behold him at our feast;\r\nRead o’er the volume of young Paris’ face,\r\nAnd find delight writ there with beauty’s pen.\r\nExamine every married lineament,\r\nAnd see how one another lends content;\r\nAnd what obscur’d in this fair volume lies,\r\nFind written in the margent of his eyes.\r\nThis precious book of love, this unbound lover,\r\nTo beautify him, only lacks a cover:\r\nThe fish lives in the sea; and ’tis much pride\r\nFor fair without the fair within to hide.\r\nThat book in many’s eyes doth share the glory,\r\nThat in gold clasps locks in the golden story;\r\nSo shall you share all that he doth possess,\r\nBy having him, making yourself no less.\r\n\r\nNURSE.\r\nNo less, nay bigger. Women grow by men.\r\n\r\nLADY CAPULET.\r\nSpeak briefly, can you like of Paris’ love?\r\n\r\nJULIET.\r\nI’ll look to like, if looking liking move:\r\nBut no more deep will I endart mine eye\r\nThan your consent gives strength to make it fly.\r\n\r\n Enter a Servant.\r\n\r\nSERVANT.\r\nMadam, the guests are come, supper served up, you called, my young lady\r\nasked for, the Nurse cursed in the pantry, and everything in extremity.\r\nI must hence to wait, I beseech you follow straight.\r\n\r\nLADY CAPULET.\r\nWe follow thee.\r\n\r\n [_Exit Servant._]\r\n\r\nJuliet, the County stays.\r\n\r\nNURSE.\r\nGo, girl, seek happy nights to happy days.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE IV. A Street.\r\n\r\n Enter Romeo, Mercutio, Benvolio, with five or six Maskers;\r\n Torch-bearers and others.\r\n\r\nROMEO.\r\nWhat, shall this speech be spoke for our excuse?\r\nOr shall we on without apology?\r\n\r\nBENVOLIO.\r\nThe date is out of such prolixity:\r\nWe’ll have no Cupid hoodwink’d with a scarf,\r\nBearing a Tartar’s painted bow of lath,\r\nScaring the ladies like a crow-keeper;\r\nNor no without-book prologue, faintly spoke\r\nAfter the prompter, for our entrance:\r\nBut let them measure us by what they will,\r\nWe’ll measure them a measure, and be gone.\r\n\r\nROMEO.\r\nGive me a torch, I am not for this ambling;\r\nBeing but heavy I will bear the light.\r\n\r\nMERCUTIO.\r\nNay, gentle Romeo, we must have you dance.\r\n\r\nROMEO.\r\nNot I, believe me, you have dancing shoes,\r\nWith nimble soles, I have a soul of lead\r\nSo stakes me to the ground I cannot move.\r\n\r\nMERCUTIO.\r\nYou are a lover, borrow Cupid’s wings,\r\nAnd soar with them above a common bound.\r\n\r\nROMEO.\r\nI am too sore enpierced with his shaft\r\nTo soar with his light feathers, and so bound,\r\nI cannot bound a pitch above dull woe.\r\nUnder love’s heavy burden do I sink.\r\n\r\nMERCUTIO.\r\nAnd, to sink in it, should you burden love;\r\nToo great oppression for a tender thing.\r\n\r\nROMEO.\r\nIs love a tender thing? It is too rough,\r\nToo rude, too boisterous; and it pricks like thorn.\r\n\r\nMERCUTIO.\r\nIf love be rough with you, be rough with love;\r\nPrick love for pricking, and you beat love down.\r\nGive me a case to put my visage in: [_Putting on a mask._]\r\nA visor for a visor. What care I\r\nWhat curious eye doth quote deformities?\r\nHere are the beetle-brows shall blush for me.\r\n\r\nBENVOLIO.\r\nCome, knock and enter; and no sooner in\r\nBut every man betake him to his legs.\r\n\r\nROMEO.\r\nA torch for me: let wantons, light of heart,\r\nTickle the senseless rushes with their heels;\r\nFor I am proverb’d with a grandsire phrase,\r\nI’ll be a candle-holder and look on,\r\nThe game was ne’er so fair, and I am done.\r\n\r\nMERCUTIO.\r\nTut, dun’s the mouse, the constable’s own word:\r\nIf thou art dun, we’ll draw thee from the mire\r\nOr save your reverence love, wherein thou stickest\r\nUp to the ears. Come, we burn daylight, ho.\r\n\r\nROMEO.\r\nNay, that’s not so.\r\n\r\nMERCUTIO.\r\nI mean sir, in delay\r\nWe waste our lights in vain, light lights by day.\r\nTake our good meaning, for our judgment sits\r\nFive times in that ere once in our five wits.\r\n\r\nROMEO.\r\nAnd we mean well in going to this mask;\r\nBut ’tis no wit to go.\r\n\r\nMERCUTIO.\r\nWhy, may one ask?\r\n\r\nROMEO.\r\nI dreamt a dream tonight.\r\n\r\nMERCUTIO.\r\nAnd so did I.\r\n\r\nROMEO.\r\nWell what was yours?\r\n\r\nMERCUTIO.\r\nThat dreamers often lie.\r\n\r\nROMEO.\r\nIn bed asleep, while they do dream things true.\r\n\r\nMERCUTIO.\r\nO, then, I see Queen Mab hath been with you.\r\nShe is the fairies’ midwife, and she comes\r\nIn shape no bigger than an agate-stone\r\nOn the fore-finger of an alderman,\r\nDrawn with a team of little atomies\r\nOver men’s noses as they lie asleep:\r\nHer waggon-spokes made of long spinners’ legs;\r\nThe cover, of the wings of grasshoppers;\r\nHer traces, of the smallest spider’s web;\r\nThe collars, of the moonshine’s watery beams;\r\nHer whip of cricket’s bone; the lash, of film;\r\nHer waggoner, a small grey-coated gnat,\r\nNot half so big as a round little worm\r\nPrick’d from the lazy finger of a maid:\r\nHer chariot is an empty hazelnut,\r\nMade by the joiner squirrel or old grub,\r\nTime out o’ mind the fairies’ coachmakers.\r\nAnd in this state she gallops night by night\r\nThrough lovers’ brains, and then they dream of love;\r\nO’er courtiers’ knees, that dream on curtsies straight;\r\nO’er lawyers’ fingers, who straight dream on fees;\r\nO’er ladies’ lips, who straight on kisses dream,\r\nWhich oft the angry Mab with blisters plagues,\r\nBecause their breaths with sweetmeats tainted are:\r\nSometime she gallops o’er a courtier’s nose,\r\nAnd then dreams he of smelling out a suit;\r\nAnd sometime comes she with a tithe-pig’s tail,\r\nTickling a parson’s nose as a lies asleep,\r\nThen dreams he of another benefice:\r\nSometime she driveth o’er a soldier’s neck,\r\nAnd then dreams he of cutting foreign throats,\r\nOf breaches, ambuscados, Spanish blades,\r\nOf healths five fathom deep; and then anon\r\nDrums in his ear, at which he starts and wakes;\r\nAnd, being thus frighted, swears a prayer or two,\r\nAnd sleeps again. This is that very Mab\r\nThat plats the manes of horses in the night;\r\nAnd bakes the elf-locks in foul sluttish hairs,\r\nWhich, once untangled, much misfortune bodes:\r\nThis is the hag, when maids lie on their backs,\r\nThat presses them, and learns them first to bear,\r\nMaking them women of good carriage:\r\nThis is she,—\r\n\r\nROMEO.\r\nPeace, peace, Mercutio, peace,\r\nThou talk’st of nothing.\r\n\r\nMERCUTIO.\r\nTrue, I talk of dreams,\r\nWhich are the children of an idle brain,\r\nBegot of nothing but vain fantasy,\r\nWhich is as thin of substance as the air,\r\nAnd more inconstant than the wind, who wooes\r\nEven now the frozen bosom of the north,\r\nAnd, being anger’d, puffs away from thence,\r\nTurning his side to the dew-dropping south.\r\n\r\nBENVOLIO.\r\nThis wind you talk of blows us from ourselves:\r\nSupper is done, and we shall come too late.\r\n\r\nROMEO.\r\nI fear too early: for my mind misgives\r\nSome consequence yet hanging in the stars,\r\nShall bitterly begin his fearful date\r\nWith this night’s revels; and expire the term\r\nOf a despised life, clos’d in my breast\r\nBy some vile forfeit of untimely death.\r\nBut he that hath the steerage of my course\r\nDirect my suit. On, lusty gentlemen!\r\n\r\nBENVOLIO.\r\nStrike, drum.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE V. A Hall in Capulet’s House.\r\n\r\n Musicians waiting. Enter Servants.\r\n\r\nFIRST SERVANT.\r\nWhere’s Potpan, that he helps not to take away?\r\nHe shift a trencher! He scrape a trencher!\r\n\r\nSECOND SERVANT.\r\nWhen good manners shall lie all in one or two men’s hands, and they\r\nunwash’d too, ’tis a foul thing.\r\n\r\nFIRST SERVANT.\r\nAway with the join-stools, remove the court-cupboard, look to the\r\nplate. Good thou, save me a piece of marchpane; and as thou loves me,\r\nlet the porter let in Susan Grindstone and Nell. Antony and Potpan!\r\n\r\nSECOND SERVANT.\r\nAy, boy, ready.\r\n\r\nFIRST SERVANT.\r\nYou are looked for and called for, asked for and sought for, in the\r\ngreat chamber.\r\n\r\nSECOND SERVANT.\r\nWe cannot be here and there too. Cheerly, boys. Be brisk awhile, and\r\nthe longer liver take all.\r\n\r\n [_Exeunt._]\r\n\r\n Enter Capulet, &c. with the Guests and Gentlewomen to the Maskers.\r\n\r\nCAPULET.\r\nWelcome, gentlemen, ladies that have their toes\r\nUnplagu’d with corns will have a bout with you.\r\nAh my mistresses, which of you all\r\nWill now deny to dance? She that makes dainty,\r\nShe I’ll swear hath corns. Am I come near ye now?\r\nWelcome, gentlemen! I have seen the day\r\nThat I have worn a visor, and could tell\r\nA whispering tale in a fair lady’s ear,\r\nSuch as would please; ’tis gone, ’tis gone, ’tis gone,\r\nYou are welcome, gentlemen! Come, musicians, play.\r\nA hall, a hall, give room! And foot it, girls.\r\n\r\n [_Music plays, and they dance._]\r\n\r\nMore light, you knaves; and turn the tables up,\r\nAnd quench the fire, the room is grown too hot.\r\nAh sirrah, this unlook’d-for sport comes well.\r\nNay sit, nay sit, good cousin Capulet,\r\nFor you and I are past our dancing days;\r\nHow long is’t now since last yourself and I\r\nWere in a mask?\r\n\r\nCAPULET’S COUSIN.\r\nBy’r Lady, thirty years.\r\n\r\nCAPULET.\r\nWhat, man, ’tis not so much, ’tis not so much:\r\n’Tis since the nuptial of Lucentio,\r\nCome Pentecost as quickly as it will,\r\nSome five and twenty years; and then we mask’d.\r\n\r\nCAPULET’S COUSIN.\r\n’Tis more, ’tis more, his son is elder, sir;\r\nHis son is thirty.\r\n\r\nCAPULET.\r\nWill you tell me that?\r\nHis son was but a ward two years ago.\r\n\r\nROMEO.\r\nWhat lady is that, which doth enrich the hand\r\nOf yonder knight?\r\n\r\nSERVANT.\r\nI know not, sir.\r\n\r\nROMEO.\r\nO, she doth teach the torches to burn bright!\r\nIt seems she hangs upon the cheek of night\r\nAs a rich jewel in an Ethiop’s ear;\r\nBeauty too rich for use, for earth too dear!\r\nSo shows a snowy dove trooping with crows\r\nAs yonder lady o’er her fellows shows.\r\nThe measure done, I’ll watch her place of stand,\r\nAnd touching hers, make blessed my rude hand.\r\nDid my heart love till now? Forswear it, sight!\r\nFor I ne’er saw true beauty till this night.\r\n\r\nTYBALT.\r\nThis by his voice, should be a Montague.\r\nFetch me my rapier, boy. What, dares the slave\r\nCome hither, cover’d with an antic face,\r\nTo fleer and scorn at our solemnity?\r\nNow by the stock and honour of my kin,\r\nTo strike him dead I hold it not a sin.\r\n\r\nCAPULET.\r\nWhy how now, kinsman!\r\nWherefore storm you so?\r\n\r\nTYBALT.\r\nUncle, this is a Montague, our foe;\r\nA villain that is hither come in spite,\r\nTo scorn at our solemnity this night.\r\n\r\nCAPULET.\r\nYoung Romeo, is it?\r\n\r\nTYBALT.\r\n’Tis he, that villain Romeo.\r\n\r\nCAPULET.\r\nContent thee, gentle coz, let him alone,\r\nA bears him like a portly gentleman;\r\nAnd, to say truth, Verona brags of him\r\nTo be a virtuous and well-govern’d youth.\r\nI would not for the wealth of all the town\r\nHere in my house do him disparagement.\r\nTherefore be patient, take no note of him,\r\nIt is my will; the which if thou respect,\r\nShow a fair presence and put off these frowns,\r\nAn ill-beseeming semblance for a feast.\r\n\r\nTYBALT.\r\nIt fits when such a villain is a guest:\r\nI’ll not endure him.\r\n\r\nCAPULET.\r\nHe shall be endur’d.\r\nWhat, goodman boy! I say he shall, go to;\r\nAm I the master here, or you? Go to.\r\nYou’ll not endure him! God shall mend my soul,\r\nYou’ll make a mutiny among my guests!\r\nYou will set cock-a-hoop, you’ll be the man!\r\n\r\nTYBALT.\r\nWhy, uncle, ’tis a shame.\r\n\r\nCAPULET.\r\nGo to, go to!\r\nYou are a saucy boy. Is’t so, indeed?\r\nThis trick may chance to scathe you, I know what.\r\nYou must contrary me! Marry, ’tis time.\r\nWell said, my hearts!—You are a princox; go:\r\nBe quiet, or—More light, more light!—For shame!\r\nI’ll make you quiet. What, cheerly, my hearts.\r\n\r\nTYBALT.\r\nPatience perforce with wilful choler meeting\r\nMakes my flesh tremble in their different greeting.\r\nI will withdraw: but this intrusion shall,\r\nNow seeming sweet, convert to bitter gall.\r\n\r\n [_Exit._]\r\n\r\nROMEO.\r\n[_To Juliet._] If I profane with my unworthiest hand\r\nThis holy shrine, the gentle sin is this,\r\nMy lips, two blushing pilgrims, ready stand\r\nTo smooth that rough touch with a tender kiss.\r\n\r\nJULIET.\r\nGood pilgrim, you do wrong your hand too much,\r\nWhich mannerly devotion shows in this;\r\nFor saints have hands that pilgrims’ hands do touch,\r\nAnd palm to palm is holy palmers’ kiss.\r\n\r\nROMEO.\r\nHave not saints lips, and holy palmers too?\r\n\r\nJULIET.\r\nAy, pilgrim, lips that they must use in prayer.\r\n\r\nROMEO.\r\nO, then, dear saint, let lips do what hands do:\r\nThey pray, grant thou, lest faith turn to despair.\r\n\r\nJULIET.\r\nSaints do not move, though grant for prayers’ sake.\r\n\r\nROMEO.\r\nThen move not while my prayer’s effect I take.\r\nThus from my lips, by thine my sin is purg’d.\r\n[_Kissing her._]\r\n\r\nJULIET.\r\nThen have my lips the sin that they have took.\r\n\r\nROMEO.\r\nSin from my lips? O trespass sweetly urg’d!\r\nGive me my sin again.\r\n\r\nJULIET.\r\nYou kiss by the book.\r\n\r\nNURSE.\r\nMadam, your mother craves a word with you.\r\n\r\nROMEO.\r\nWhat is her mother?\r\n\r\nNURSE.\r\nMarry, bachelor,\r\nHer mother is the lady of the house,\r\nAnd a good lady, and a wise and virtuous.\r\nI nurs’d her daughter that you talk’d withal.\r\nI tell you, he that can lay hold of her\r\nShall have the chinks.\r\n\r\nROMEO.\r\nIs she a Capulet?\r\nO dear account! My life is my foe’s debt.\r\n\r\nBENVOLIO.\r\nAway, be gone; the sport is at the best.\r\n\r\nROMEO.\r\nAy, so I fear; the more is my unrest.\r\n\r\nCAPULET.\r\nNay, gentlemen, prepare not to be gone,\r\nWe have a trifling foolish banquet towards.\r\nIs it e’en so? Why then, I thank you all;\r\nI thank you, honest gentlemen; good night.\r\nMore torches here! Come on then, let’s to bed.\r\nAh, sirrah, by my fay, it waxes late,\r\nI’ll to my rest.\r\n\r\n [_Exeunt all but Juliet and Nurse._]\r\n\r\nJULIET.\r\nCome hither, Nurse. What is yond gentleman?\r\n\r\nNURSE.\r\nThe son and heir of old Tiberio.\r\n\r\nJULIET.\r\nWhat’s he that now is going out of door?\r\n\r\nNURSE.\r\nMarry, that I think be young Petruchio.\r\n\r\nJULIET.\r\nWhat’s he that follows here, that would not dance?\r\n\r\nNURSE.\r\nI know not.\r\n\r\nJULIET.\r\nGo ask his name. If he be married,\r\nMy grave is like to be my wedding bed.\r\n\r\nNURSE.\r\nHis name is Romeo, and a Montague,\r\nThe only son of your great enemy.\r\n\r\nJULIET.\r\nMy only love sprung from my only hate!\r\nToo early seen unknown, and known too late!\r\nProdigious birth of love it is to me,\r\nThat I must love a loathed enemy.\r\n\r\nNURSE.\r\nWhat’s this? What’s this?\r\n\r\nJULIET.\r\nA rhyme I learn’d even now\r\nOf one I danc’d withal.\r\n\r\n [_One calls within, ‘Juliet’._]\r\n\r\nNURSE.\r\nAnon, anon!\r\nCome let’s away, the strangers all are gone.\r\n\r\n [_Exeunt._]\r\n\r\n\r\n\r\nACT II\r\n\r\n Enter Chorus.\r\n\r\nCHORUS.\r\nNow old desire doth in his deathbed lie,\r\nAnd young affection gapes to be his heir;\r\nThat fair for which love groan’d for and would die,\r\nWith tender Juliet match’d, is now not fair.\r\nNow Romeo is belov’d, and loves again,\r\nAlike bewitched by the charm of looks;\r\nBut to his foe suppos’d he must complain,\r\nAnd she steal love’s sweet bait from fearful hooks:\r\nBeing held a foe, he may not have access\r\nTo breathe such vows as lovers use to swear;\r\nAnd she as much in love, her means much less\r\nTo meet her new beloved anywhere.\r\nBut passion lends them power, time means, to meet,\r\nTempering extremities with extreme sweet.\r\n\r\n [_Exit._]\r\n\r\nSCENE I. An open place adjoining Capulet’s Garden.\r\n\r\n Enter Romeo.\r\n\r\nROMEO.\r\nCan I go forward when my heart is here?\r\nTurn back, dull earth, and find thy centre out.\r\n\r\n [_He climbs the wall and leaps down within it._]\r\n\r\n Enter Benvolio and Mercutio.\r\n\r\nBENVOLIO.\r\nRomeo! My cousin Romeo! Romeo!\r\n\r\nMERCUTIO.\r\nHe is wise,\r\nAnd on my life hath stol’n him home to bed.\r\n\r\nBENVOLIO.\r\nHe ran this way, and leap’d this orchard wall:\r\nCall, good Mercutio.\r\n\r\nMERCUTIO.\r\nNay, I’ll conjure too.\r\nRomeo! Humours! Madman! Passion! Lover!\r\nAppear thou in the likeness of a sigh,\r\nSpeak but one rhyme, and I am satisfied;\r\nCry but ‘Ah me!’ Pronounce but Love and dove;\r\nSpeak to my gossip Venus one fair word,\r\nOne nickname for her purblind son and heir,\r\nYoung Abraham Cupid, he that shot so trim\r\nWhen King Cophetua lov’d the beggar-maid.\r\nHe heareth not, he stirreth not, he moveth not;\r\nThe ape is dead, and I must conjure him.\r\nI conjure thee by Rosaline’s bright eyes,\r\nBy her high forehead and her scarlet lip,\r\nBy her fine foot, straight leg, and quivering thigh,\r\nAnd the demesnes that there adjacent lie,\r\nThat in thy likeness thou appear to us.\r\n\r\nBENVOLIO.\r\nAn if he hear thee, thou wilt anger him.\r\n\r\nMERCUTIO.\r\nThis cannot anger him. ’Twould anger him\r\nTo raise a spirit in his mistress’ circle,\r\nOf some strange nature, letting it there stand\r\nTill she had laid it, and conjur’d it down;\r\nThat were some spite. My invocation\r\nIs fair and honest, and, in his mistress’ name,\r\nI conjure only but to raise up him.\r\n\r\nBENVOLIO.\r\nCome, he hath hid himself among these trees\r\nTo be consorted with the humorous night.\r\nBlind is his love, and best befits the dark.\r\n\r\nMERCUTIO.\r\nIf love be blind, love cannot hit the mark.\r\nNow will he sit under a medlar tree,\r\nAnd wish his mistress were that kind of fruit\r\nAs maids call medlars when they laugh alone.\r\nO Romeo, that she were, O that she were\r\nAn open-arse and thou a poperin pear!\r\nRomeo, good night. I’ll to my truckle-bed.\r\nThis field-bed is too cold for me to sleep.\r\nCome, shall we go?\r\n\r\nBENVOLIO.\r\nGo then; for ’tis in vain\r\nTo seek him here that means not to be found.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. Capulet’s Garden.\r\n\r\n Enter Romeo.\r\n\r\nROMEO.\r\nHe jests at scars that never felt a wound.\r\n\r\n Juliet appears above at a window.\r\n\r\nBut soft, what light through yonder window breaks?\r\nIt is the east, and Juliet is the sun!\r\nArise fair sun and kill the envious moon,\r\nWho is already sick and pale with grief,\r\nThat thou her maid art far more fair than she.\r\nBe not her maid since she is envious;\r\nHer vestal livery is but sick and green,\r\nAnd none but fools do wear it; cast it off.\r\nIt is my lady, O it is my love!\r\nO, that she knew she were!\r\nShe speaks, yet she says nothing. What of that?\r\nHer eye discourses, I will answer it.\r\nI am too bold, ’tis not to me she speaks.\r\nTwo of the fairest stars in all the heaven,\r\nHaving some business, do entreat her eyes\r\nTo twinkle in their spheres till they return.\r\nWhat if her eyes were there, they in her head?\r\nThe brightness of her cheek would shame those stars,\r\nAs daylight doth a lamp; her eyes in heaven\r\nWould through the airy region stream so bright\r\nThat birds would sing and think it were not night.\r\nSee how she leans her cheek upon her hand.\r\nO that I were a glove upon that hand,\r\nThat I might touch that cheek.\r\n\r\nJULIET.\r\nAy me.\r\n\r\nROMEO.\r\nShe speaks.\r\nO speak again bright angel, for thou art\r\nAs glorious to this night, being o’er my head,\r\nAs is a winged messenger of heaven\r\nUnto the white-upturned wondering eyes\r\nOf mortals that fall back to gaze on him\r\nWhen he bestrides the lazy-puffing clouds\r\nAnd sails upon the bosom of the air.\r\n\r\nJULIET.\r\nO Romeo, Romeo, wherefore art thou Romeo?\r\nDeny thy father and refuse thy name.\r\nOr if thou wilt not, be but sworn my love,\r\nAnd I’ll no longer be a Capulet.\r\n\r\nROMEO.\r\n[_Aside._] Shall I hear more, or shall I speak at this?\r\n\r\nJULIET.\r\n’Tis but thy name that is my enemy;\r\nThou art thyself, though not a Montague.\r\nWhat’s Montague? It is nor hand nor foot,\r\nNor arm, nor face, nor any other part\r\nBelonging to a man. O be some other name.\r\nWhat’s in a name? That which we call a rose\r\nBy any other name would smell as sweet;\r\nSo Romeo would, were he not Romeo call’d,\r\nRetain that dear perfection which he owes\r\nWithout that title. Romeo, doff thy name,\r\nAnd for thy name, which is no part of thee,\r\nTake all myself.\r\n\r\nROMEO.\r\nI take thee at thy word.\r\nCall me but love, and I’ll be new baptis’d;\r\nHenceforth I never will be Romeo.\r\n\r\nJULIET.\r\nWhat man art thou that, thus bescreen’d in night\r\nSo stumblest on my counsel?\r\n\r\nROMEO.\r\nBy a name\r\nI know not how to tell thee who I am:\r\nMy name, dear saint, is hateful to myself,\r\nBecause it is an enemy to thee.\r\nHad I it written, I would tear the word.\r\n\r\nJULIET.\r\nMy ears have yet not drunk a hundred words\r\nOf thy tongue’s utterance, yet I know the sound.\r\nArt thou not Romeo, and a Montague?\r\n\r\nROMEO.\r\nNeither, fair maid, if either thee dislike.\r\n\r\nJULIET.\r\nHow cam’st thou hither, tell me, and wherefore?\r\nThe orchard walls are high and hard to climb,\r\nAnd the place death, considering who thou art,\r\nIf any of my kinsmen find thee here.\r\n\r\nROMEO.\r\nWith love’s light wings did I o’erperch these walls,\r\nFor stony limits cannot hold love out,\r\nAnd what love can do, that dares love attempt:\r\nTherefore thy kinsmen are no stop to me.\r\n\r\nJULIET.\r\nIf they do see thee, they will murder thee.\r\n\r\nROMEO.\r\nAlack, there lies more peril in thine eye\r\nThan twenty of their swords. Look thou but sweet,\r\nAnd I am proof against their enmity.\r\n\r\nJULIET.\r\nI would not for the world they saw thee here.\r\n\r\nROMEO.\r\nI have night’s cloak to hide me from their eyes,\r\nAnd but thou love me, let them find me here.\r\nMy life were better ended by their hate\r\nThan death prorogued, wanting of thy love.\r\n\r\nJULIET.\r\nBy whose direction found’st thou out this place?\r\n\r\nROMEO.\r\nBy love, that first did prompt me to enquire;\r\nHe lent me counsel, and I lent him eyes.\r\nI am no pilot; yet wert thou as far\r\nAs that vast shore wash’d with the farthest sea,\r\nI should adventure for such merchandise.\r\n\r\nJULIET.\r\nThou knowest the mask of night is on my face,\r\nElse would a maiden blush bepaint my cheek\r\nFor that which thou hast heard me speak tonight.\r\nFain would I dwell on form, fain, fain deny\r\nWhat I have spoke; but farewell compliment.\r\nDost thou love me? I know thou wilt say Ay,\r\nAnd I will take thy word. Yet, if thou swear’st,\r\nThou mayst prove false. At lovers’ perjuries,\r\nThey say Jove laughs. O gentle Romeo,\r\nIf thou dost love, pronounce it faithfully.\r\nOr if thou thinkest I am too quickly won,\r\nI’ll frown and be perverse, and say thee nay,\r\nSo thou wilt woo. But else, not for the world.\r\nIn truth, fair Montague, I am too fond;\r\nAnd therefore thou mayst think my ’haviour light:\r\nBut trust me, gentleman, I’ll prove more true\r\nThan those that have more cunning to be strange.\r\nI should have been more strange, I must confess,\r\nBut that thou overheard’st, ere I was ’ware,\r\nMy true-love passion; therefore pardon me,\r\nAnd not impute this yielding to light love,\r\nWhich the dark night hath so discovered.\r\n\r\nROMEO.\r\nLady, by yonder blessed moon I vow,\r\nThat tips with silver all these fruit-tree tops,—\r\n\r\nJULIET.\r\nO swear not by the moon, th’inconstant moon,\r\nThat monthly changes in her circled orb,\r\nLest that thy love prove likewise variable.\r\n\r\nROMEO.\r\nWhat shall I swear by?\r\n\r\nJULIET.\r\nDo not swear at all.\r\nOr if thou wilt, swear by thy gracious self,\r\nWhich is the god of my idolatry,\r\nAnd I’ll believe thee.\r\n\r\nROMEO.\r\nIf my heart’s dear love,—\r\n\r\nJULIET.\r\nWell, do not swear. Although I joy in thee,\r\nI have no joy of this contract tonight;\r\nIt is too rash, too unadvis’d, too sudden,\r\nToo like the lightning, which doth cease to be\r\nEre one can say It lightens. Sweet, good night.\r\nThis bud of love, by summer’s ripening breath,\r\nMay prove a beauteous flower when next we meet.\r\nGood night, good night. As sweet repose and rest\r\nCome to thy heart as that within my breast.\r\n\r\nROMEO.\r\nO wilt thou leave me so unsatisfied?\r\n\r\nJULIET.\r\nWhat satisfaction canst thou have tonight?\r\n\r\nROMEO.\r\nTh’exchange of thy love’s faithful vow for mine.\r\n\r\nJULIET.\r\nI gave thee mine before thou didst request it;\r\nAnd yet I would it were to give again.\r\n\r\nROMEO.\r\nWould’st thou withdraw it? For what purpose, love?\r\n\r\nJULIET.\r\nBut to be frank and give it thee again.\r\nAnd yet I wish but for the thing I have;\r\nMy bounty is as boundless as the sea,\r\nMy love as deep; the more I give to thee,\r\nThe more I have, for both are infinite.\r\nI hear some noise within. Dear love, adieu.\r\n[_Nurse calls within._]\r\nAnon, good Nurse!—Sweet Montague be true.\r\nStay but a little, I will come again.\r\n\r\n [_Exit._]\r\n\r\nROMEO.\r\nO blessed, blessed night. I am afeard,\r\nBeing in night, all this is but a dream,\r\nToo flattering sweet to be substantial.\r\n\r\n Enter Juliet above.\r\n\r\nJULIET.\r\nThree words, dear Romeo, and good night indeed.\r\nIf that thy bent of love be honourable,\r\nThy purpose marriage, send me word tomorrow,\r\nBy one that I’ll procure to come to thee,\r\nWhere and what time thou wilt perform the rite,\r\nAnd all my fortunes at thy foot I’ll lay\r\nAnd follow thee my lord throughout the world.\r\n\r\nNURSE.\r\n[_Within._] Madam.\r\n\r\nJULIET.\r\nI come, anon.— But if thou meanest not well,\r\nI do beseech thee,—\r\n\r\nNURSE.\r\n[_Within._] Madam.\r\n\r\nJULIET.\r\nBy and by I come—\r\nTo cease thy strife and leave me to my grief.\r\nTomorrow will I send.\r\n\r\nROMEO.\r\nSo thrive my soul,—\r\n\r\nJULIET.\r\nA thousand times good night.\r\n\r\n [_Exit._]\r\n\r\nROMEO.\r\nA thousand times the worse, to want thy light.\r\nLove goes toward love as schoolboys from their books,\r\nBut love from love, towards school with heavy looks.\r\n\r\n [_Retiring slowly._]\r\n\r\n Re-enter Juliet, above.\r\n\r\nJULIET.\r\nHist! Romeo, hist! O for a falconer’s voice\r\nTo lure this tassel-gentle back again.\r\nBondage is hoarse and may not speak aloud,\r\nElse would I tear the cave where Echo lies,\r\nAnd make her airy tongue more hoarse than mine\r\nWith repetition of my Romeo’s name.\r\n\r\nROMEO.\r\nIt is my soul that calls upon my name.\r\nHow silver-sweet sound lovers’ tongues by night,\r\nLike softest music to attending ears.\r\n\r\nJULIET.\r\nRomeo.\r\n\r\nROMEO.\r\nMy nyas?\r\n\r\nJULIET.\r\nWhat o’clock tomorrow\r\nShall I send to thee?\r\n\r\nROMEO.\r\nBy the hour of nine.\r\n\r\nJULIET.\r\nI will not fail. ’Tis twenty years till then.\r\nI have forgot why I did call thee back.\r\n\r\nROMEO.\r\nLet me stand here till thou remember it.\r\n\r\nJULIET.\r\nI shall forget, to have thee still stand there,\r\nRemembering how I love thy company.\r\n\r\nROMEO.\r\nAnd I’ll still stay, to have thee still forget,\r\nForgetting any other home but this.\r\n\r\nJULIET.\r\n’Tis almost morning; I would have thee gone,\r\nAnd yet no farther than a wanton’s bird,\r\nThat lets it hop a little from her hand,\r\nLike a poor prisoner in his twisted gyves,\r\nAnd with a silk thread plucks it back again,\r\nSo loving-jealous of his liberty.\r\n\r\nROMEO.\r\nI would I were thy bird.\r\n\r\nJULIET.\r\nSweet, so would I:\r\nYet I should kill thee with much cherishing.\r\nGood night, good night. Parting is such sweet sorrow\r\nThat I shall say good night till it be morrow.\r\n\r\n [_Exit._]\r\n\r\nROMEO.\r\nSleep dwell upon thine eyes, peace in thy breast.\r\nWould I were sleep and peace, so sweet to rest.\r\nThe grey-ey’d morn smiles on the frowning night,\r\nChequering the eastern clouds with streaks of light;\r\nAnd darkness fleckled like a drunkard reels\r\nFrom forth day’s pathway, made by Titan’s wheels\r\nHence will I to my ghostly Sire’s cell,\r\nHis help to crave and my dear hap to tell.\r\n\r\n [_Exit._]\r\n\r\nSCENE III. Friar Lawrence’s Cell.\r\n\r\n Enter Friar Lawrence with a basket.\r\n\r\nFRIAR LAWRENCE.\r\nNow, ere the sun advance his burning eye,\r\nThe day to cheer, and night’s dank dew to dry,\r\nI must upfill this osier cage of ours\r\nWith baleful weeds and precious-juiced flowers.\r\nThe earth that’s nature’s mother, is her tomb;\r\nWhat is her burying grave, that is her womb:\r\nAnd from her womb children of divers kind\r\nWe sucking on her natural bosom find.\r\nMany for many virtues excellent,\r\nNone but for some, and yet all different.\r\nO, mickle is the powerful grace that lies\r\nIn plants, herbs, stones, and their true qualities.\r\nFor naught so vile that on the earth doth live\r\nBut to the earth some special good doth give;\r\nNor aught so good but, strain’d from that fair use,\r\nRevolts from true birth, stumbling on abuse.\r\nVirtue itself turns vice being misapplied,\r\nAnd vice sometime’s by action dignified.\r\n\r\n Enter Romeo.\r\n\r\nWithin the infant rind of this weak flower\r\nPoison hath residence, and medicine power:\r\nFor this, being smelt, with that part cheers each part;\r\nBeing tasted, slays all senses with the heart.\r\nTwo such opposed kings encamp them still\r\nIn man as well as herbs,—grace and rude will;\r\nAnd where the worser is predominant,\r\nFull soon the canker death eats up that plant.\r\n\r\nROMEO.\r\nGood morrow, father.\r\n\r\nFRIAR LAWRENCE.\r\nBenedicite!\r\nWhat early tongue so sweet saluteth me?\r\nYoung son, it argues a distemper’d head\r\nSo soon to bid good morrow to thy bed.\r\nCare keeps his watch in every old man’s eye,\r\nAnd where care lodges sleep will never lie;\r\nBut where unbruised youth with unstuff’d brain\r\nDoth couch his limbs, there golden sleep doth reign.\r\nTherefore thy earliness doth me assure\r\nThou art uprous’d with some distemperature;\r\nOr if not so, then here I hit it right,\r\nOur Romeo hath not been in bed tonight.\r\n\r\nROMEO.\r\nThat last is true; the sweeter rest was mine.\r\n\r\nFRIAR LAWRENCE.\r\nGod pardon sin. Wast thou with Rosaline?\r\n\r\nROMEO.\r\nWith Rosaline, my ghostly father? No.\r\nI have forgot that name, and that name’s woe.\r\n\r\nFRIAR LAWRENCE.\r\nThat’s my good son. But where hast thou been then?\r\n\r\nROMEO.\r\nI’ll tell thee ere thou ask it me again.\r\nI have been feasting with mine enemy,\r\nWhere on a sudden one hath wounded me\r\nThat’s by me wounded. Both our remedies\r\nWithin thy help and holy physic lies.\r\nI bear no hatred, blessed man; for lo,\r\nMy intercession likewise steads my foe.\r\n\r\nFRIAR LAWRENCE.\r\nBe plain, good son, and homely in thy drift;\r\nRiddling confession finds but riddling shrift.\r\n\r\nROMEO.\r\nThen plainly know my heart’s dear love is set\r\nOn the fair daughter of rich Capulet.\r\nAs mine on hers, so hers is set on mine;\r\nAnd all combin’d, save what thou must combine\r\nBy holy marriage. When, and where, and how\r\nWe met, we woo’d, and made exchange of vow,\r\nI’ll tell thee as we pass; but this I pray,\r\nThat thou consent to marry us today.\r\n\r\nFRIAR LAWRENCE.\r\nHoly Saint Francis! What a change is here!\r\nIs Rosaline, that thou didst love so dear,\r\nSo soon forsaken? Young men’s love then lies\r\nNot truly in their hearts, but in their eyes.\r\nJesu Maria, what a deal of brine\r\nHath wash’d thy sallow cheeks for Rosaline!\r\nHow much salt water thrown away in waste,\r\nTo season love, that of it doth not taste.\r\nThe sun not yet thy sighs from heaven clears,\r\nThy old groans yet ring in mine ancient ears.\r\nLo here upon thy cheek the stain doth sit\r\nOf an old tear that is not wash’d off yet.\r\nIf ere thou wast thyself, and these woes thine,\r\nThou and these woes were all for Rosaline,\r\nAnd art thou chang’d? Pronounce this sentence then,\r\nWomen may fall, when there’s no strength in men.\r\n\r\nROMEO.\r\nThou chidd’st me oft for loving Rosaline.\r\n\r\nFRIAR LAWRENCE.\r\nFor doting, not for loving, pupil mine.\r\n\r\nROMEO.\r\nAnd bad’st me bury love.\r\n\r\nFRIAR LAWRENCE.\r\nNot in a grave\r\nTo lay one in, another out to have.\r\n\r\nROMEO.\r\nI pray thee chide me not, her I love now\r\nDoth grace for grace and love for love allow.\r\nThe other did not so.\r\n\r\nFRIAR LAWRENCE.\r\nO, she knew well\r\nThy love did read by rote, that could not spell.\r\nBut come young waverer, come go with me,\r\nIn one respect I’ll thy assistant be;\r\nFor this alliance may so happy prove,\r\nTo turn your households’ rancour to pure love.\r\n\r\nROMEO.\r\nO let us hence; I stand on sudden haste.\r\n\r\nFRIAR LAWRENCE.\r\nWisely and slow; they stumble that run fast.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE IV. A Street.\r\n\r\n Enter Benvolio and Mercutio.\r\n\r\nMERCUTIO.\r\nWhere the devil should this Romeo be? Came he not home tonight?\r\n\r\nBENVOLIO.\r\nNot to his father’s; I spoke with his man.\r\n\r\nMERCUTIO.\r\nWhy, that same pale hard-hearted wench, that Rosaline, torments him so\r\nthat he will sure run mad.\r\n\r\nBENVOLIO.\r\nTybalt, the kinsman to old Capulet, hath sent a letter to his father’s\r\nhouse.\r\n\r\nMERCUTIO.\r\nA challenge, on my life.\r\n\r\nBENVOLIO.\r\nRomeo will answer it.\r\n\r\nMERCUTIO.\r\nAny man that can write may answer a letter.\r\n\r\nBENVOLIO.\r\nNay, he will answer the letter’s master, how he dares, being dared.\r\n\r\nMERCUTIO.\r\nAlas poor Romeo, he is already dead, stabbed with a white wench’s black\r\neye; run through the ear with a love song, the very pin of his heart\r\ncleft with the blind bow-boy’s butt-shaft. And is he a man to encounter\r\nTybalt?\r\n\r\nBENVOLIO.\r\nWhy, what is Tybalt?\r\n\r\nMERCUTIO.\r\nMore than Prince of cats. O, he’s the courageous captain of\r\ncompliments. He fights as you sing prick-song, keeps time, distance,\r\nand proportion. He rests his minim rest, one, two, and the third in\r\nyour bosom: the very butcher of a silk button, a duellist, a duellist;\r\na gentleman of the very first house, of the first and second cause. Ah,\r\nthe immortal passado, the punto reverso, the hay.\r\n\r\nBENVOLIO.\r\nThe what?\r\n\r\nMERCUTIO.\r\nThe pox of such antic lisping, affecting phantasies; these new tuners\r\nof accent. By Jesu, a very good blade, a very tall man, a very good\r\nwhore. Why, is not this a lamentable thing, grandsire, that we should\r\nbe thus afflicted with these strange flies, these fashion-mongers,\r\nthese pardon-me’s, who stand so much on the new form that they cannot\r\nsit at ease on the old bench? O their bones, their bones!\r\n\r\n Enter Romeo.\r\n\r\nBENVOLIO.\r\nHere comes Romeo, here comes Romeo!\r\n\r\nMERCUTIO.\r\nWithout his roe, like a dried herring. O flesh, flesh, how art thou\r\nfishified! Now is he for the numbers that Petrarch flowed in. Laura, to\r\nhis lady, was but a kitchen wench,—marry, she had a better love to\r\nberhyme her: Dido a dowdy; Cleopatra a gypsy; Helen and Hero hildings\r\nand harlots; Thisbe a grey eye or so, but not to the purpose. Signior\r\nRomeo, bonjour! There’s a French salutation to your French slop. You\r\ngave us the counterfeit fairly last night.\r\n\r\nROMEO.\r\nGood morrow to you both. What counterfeit did I give you?\r\n\r\nMERCUTIO.\r\nThe slip sir, the slip; can you not conceive?\r\n\r\nROMEO.\r\nPardon, good Mercutio, my business was great, and in such a case as\r\nmine a man may strain courtesy.\r\n\r\nMERCUTIO.\r\nThat’s as much as to say, such a case as yours constrains a man to bow\r\nin the hams.\r\n\r\nROMEO.\r\nMeaning, to curtsy.\r\n\r\nMERCUTIO.\r\nThou hast most kindly hit it.\r\n\r\nROMEO.\r\nA most courteous exposition.\r\n\r\nMERCUTIO.\r\nNay, I am the very pink of courtesy.\r\n\r\nROMEO.\r\nPink for flower.\r\n\r\nMERCUTIO.\r\nRight.\r\n\r\nROMEO.\r\nWhy, then is my pump well flowered.\r\n\r\nMERCUTIO.\r\nSure wit, follow me this jest now, till thou hast worn out thy pump,\r\nthat when the single sole of it is worn, the jest may remain after the\r\nwearing, solely singular.\r\n\r\nROMEO.\r\nO single-soled jest, solely singular for the singleness!\r\n\r\nMERCUTIO.\r\nCome between us, good Benvolio; my wits faint.\r\n\r\nROMEO.\r\nSwits and spurs, swits and spurs; or I’ll cry a match.\r\n\r\nMERCUTIO.\r\nNay, if thy wits run the wild-goose chase, I am done. For thou hast\r\nmore of the wild-goose in one of thy wits, than I am sure, I have in my\r\nwhole five. Was I with you there for the goose?\r\n\r\nROMEO.\r\nThou wast never with me for anything, when thou wast not there for the\r\ngoose.\r\n\r\nMERCUTIO.\r\nI will bite thee by the ear for that jest.\r\n\r\nROMEO.\r\nNay, good goose, bite not.\r\n\r\nMERCUTIO.\r\nThy wit is a very bitter sweeting, it is a most sharp sauce.\r\n\r\nROMEO.\r\nAnd is it not then well served in to a sweet goose?\r\n\r\nMERCUTIO.\r\nO here’s a wit of cheveril, that stretches from an inch narrow to an\r\nell broad.\r\n\r\nROMEO.\r\nI stretch it out for that word broad, which added to the goose, proves\r\nthee far and wide a broad goose.\r\n\r\nMERCUTIO.\r\nWhy, is not this better now than groaning for love? Now art thou\r\nsociable, now art thou Romeo; not art thou what thou art, by art as\r\nwell as by nature. For this drivelling love is like a great natural,\r\nthat runs lolling up and down to hide his bauble in a hole.\r\n\r\nBENVOLIO.\r\nStop there, stop there.\r\n\r\nMERCUTIO.\r\nThou desirest me to stop in my tale against the hair.\r\n\r\nBENVOLIO.\r\nThou wouldst else have made thy tale large.\r\n\r\nMERCUTIO.\r\nO, thou art deceived; I would have made it short, for I was come to the\r\nwhole depth of my tale, and meant indeed to occupy the argument no\r\nlonger.\r\n\r\n Enter Nurse and Peter.\r\n\r\nROMEO.\r\nHere’s goodly gear!\r\nA sail, a sail!\r\n\r\nMERCUTIO.\r\nTwo, two; a shirt and a smock.\r\n\r\nNURSE.\r\nPeter!\r\n\r\nPETER.\r\nAnon.\r\n\r\nNURSE.\r\nMy fan, Peter.\r\n\r\nMERCUTIO.\r\nGood Peter, to hide her face; for her fan’s the fairer face.\r\n\r\nNURSE.\r\nGod ye good morrow, gentlemen.\r\n\r\nMERCUTIO.\r\nGod ye good-den, fair gentlewoman.\r\n\r\nNURSE.\r\nIs it good-den?\r\n\r\nMERCUTIO.\r\n’Tis no less, I tell ye; for the bawdy hand of the dial is now upon the\r\nprick of noon.\r\n\r\nNURSE.\r\nOut upon you! What a man are you?\r\n\r\nROMEO.\r\nOne, gentlewoman, that God hath made for himself to mar.\r\n\r\nNURSE.\r\nBy my troth, it is well said; for himself to mar, quoth a? Gentlemen,\r\ncan any of you tell me where I may find the young Romeo?\r\n\r\nROMEO.\r\nI can tell you: but young Romeo will be older when you have found him\r\nthan he was when you sought him. I am the youngest of that name, for\r\nfault of a worse.\r\n\r\nNURSE.\r\nYou say well.\r\n\r\nMERCUTIO.\r\nYea, is the worst well? Very well took, i’faith; wisely, wisely.\r\n\r\nNURSE.\r\nIf you be he, sir, I desire some confidence with you.\r\n\r\nBENVOLIO.\r\nShe will endite him to some supper.\r\n\r\nMERCUTIO.\r\nA bawd, a bawd, a bawd! So ho!\r\n\r\nROMEO.\r\nWhat hast thou found?\r\n\r\nMERCUTIO.\r\nNo hare, sir; unless a hare, sir, in a lenten pie, that is something\r\nstale and hoar ere it be spent.\r\n[_Sings._]\r\n An old hare hoar,\r\n And an old hare hoar,\r\n Is very good meat in Lent;\r\n But a hare that is hoar\r\n Is too much for a score\r\n When it hoars ere it be spent.\r\nRomeo, will you come to your father’s? We’ll to dinner thither.\r\n\r\nROMEO.\r\nI will follow you.\r\n\r\nMERCUTIO.\r\nFarewell, ancient lady; farewell, lady, lady, lady.\r\n\r\n [_Exeunt Mercutio and Benvolio._]\r\n\r\nNURSE.\r\nI pray you, sir, what saucy merchant was this that was so full of his\r\nropery?\r\n\r\nROMEO.\r\nA gentleman, Nurse, that loves to hear himself talk, and will speak\r\nmore in a minute than he will stand to in a month.\r\n\r\nNURSE.\r\nAnd a speak anything against me, I’ll take him down, and a were lustier\r\nthan he is, and twenty such Jacks. And if I cannot, I’ll find those\r\nthat shall. Scurvy knave! I am none of his flirt-gills; I am none of\r\nhis skains-mates.—And thou must stand by too and suffer every knave to\r\nuse me at his pleasure!\r\n\r\nPETER.\r\nI saw no man use you at his pleasure; if I had, my weapon should\r\nquickly have been out. I warrant you, I dare draw as soon as another\r\nman, if I see occasion in a good quarrel, and the law on my side.\r\n\r\nNURSE.\r\nNow, afore God, I am so vexed that every part about me quivers. Scurvy\r\nknave. Pray you, sir, a word: and as I told you, my young lady bid me\r\nenquire you out; what she bade me say, I will keep to myself. But first\r\nlet me tell ye, if ye should lead her in a fool’s paradise, as they\r\nsay, it were a very gross kind of behaviour, as they say; for the\r\ngentlewoman is young. And therefore, if you should deal double with\r\nher, truly it were an ill thing to be offered to any gentlewoman, and\r\nvery weak dealing.\r\n\r\nROMEO. Nurse, commend me to thy lady and mistress. I protest unto\r\nthee,—\r\n\r\nNURSE.\r\nGood heart, and i’faith I will tell her as much. Lord, Lord, she will\r\nbe a joyful woman.\r\n\r\nROMEO.\r\nWhat wilt thou tell her, Nurse? Thou dost not mark me.\r\n\r\nNURSE.\r\nI will tell her, sir, that you do protest, which, as I take it, is a\r\ngentlemanlike offer.\r\n\r\nROMEO.\r\nBid her devise\r\nSome means to come to shrift this afternoon,\r\nAnd there she shall at Friar Lawrence’ cell\r\nBe shriv’d and married. Here is for thy pains.\r\n\r\nNURSE.\r\nNo truly, sir; not a penny.\r\n\r\nROMEO.\r\nGo to; I say you shall.\r\n\r\nNURSE.\r\nThis afternoon, sir? Well, she shall be there.\r\n\r\nROMEO.\r\nAnd stay, good Nurse, behind the abbey wall.\r\nWithin this hour my man shall be with thee,\r\nAnd bring thee cords made like a tackled stair,\r\nWhich to the high topgallant of my joy\r\nMust be my convoy in the secret night.\r\nFarewell, be trusty, and I’ll quit thy pains;\r\nFarewell; commend me to thy mistress.\r\n\r\nNURSE.\r\nNow God in heaven bless thee. Hark you, sir.\r\n\r\nROMEO.\r\nWhat say’st thou, my dear Nurse?\r\n\r\nNURSE.\r\nIs your man secret? Did you ne’er hear say,\r\nTwo may keep counsel, putting one away?\r\n\r\nROMEO.\r\nI warrant thee my man’s as true as steel.\r\n\r\nNURSE.\r\nWell, sir, my mistress is the sweetest lady. Lord, Lord! When ’twas a\r\nlittle prating thing,—O, there is a nobleman in town, one Paris, that\r\nwould fain lay knife aboard; but she, good soul, had as lief see a\r\ntoad, a very toad, as see him. I anger her sometimes, and tell her that\r\nParis is the properer man, but I’ll warrant you, when I say so, she\r\nlooks as pale as any clout in the versal world. Doth not rosemary and\r\nRomeo begin both with a letter?\r\n\r\nROMEO.\r\nAy, Nurse; what of that? Both with an R.\r\n\r\nNURSE.\r\nAh, mocker! That’s the dog’s name. R is for the—no, I know it begins\r\nwith some other letter, and she hath the prettiest sententious of it,\r\nof you and rosemary, that it would do you good to hear it.\r\n\r\nROMEO.\r\nCommend me to thy lady.\r\n\r\nNURSE.\r\nAy, a thousand times. Peter!\r\n\r\n [_Exit Romeo._]\r\n\r\nPETER.\r\nAnon.\r\n\r\nNURSE.\r\nBefore and apace.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE V. Capulet’s Garden.\r\n\r\n Enter Juliet.\r\n\r\nJULIET.\r\nThe clock struck nine when I did send the Nurse,\r\nIn half an hour she promised to return.\r\nPerchance she cannot meet him. That’s not so.\r\nO, she is lame. Love’s heralds should be thoughts,\r\nWhich ten times faster glides than the sun’s beams,\r\nDriving back shadows over lowering hills:\r\nTherefore do nimble-pinion’d doves draw love,\r\nAnd therefore hath the wind-swift Cupid wings.\r\nNow is the sun upon the highmost hill\r\nOf this day’s journey, and from nine till twelve\r\nIs three long hours, yet she is not come.\r\nHad she affections and warm youthful blood,\r\nShe’d be as swift in motion as a ball;\r\nMy words would bandy her to my sweet love,\r\nAnd his to me.\r\nBut old folks, many feign as they were dead;\r\nUnwieldy, slow, heavy and pale as lead.\r\n\r\n Enter Nurse and Peter.\r\n\r\nO God, she comes. O honey Nurse, what news?\r\nHast thou met with him? Send thy man away.\r\n\r\nNURSE.\r\nPeter, stay at the gate.\r\n\r\n [_Exit Peter._]\r\n\r\nJULIET.\r\nNow, good sweet Nurse,—O Lord, why look’st thou sad?\r\nThough news be sad, yet tell them merrily;\r\nIf good, thou sham’st the music of sweet news\r\nBy playing it to me with so sour a face.\r\n\r\nNURSE.\r\nI am aweary, give me leave awhile;\r\nFie, how my bones ache! What a jaunt have I had!\r\n\r\nJULIET.\r\nI would thou hadst my bones, and I thy news:\r\nNay come, I pray thee speak; good, good Nurse, speak.\r\n\r\nNURSE.\r\nJesu, what haste? Can you not stay a while? Do you not see that I am\r\nout of breath?\r\n\r\nJULIET.\r\nHow art thou out of breath, when thou hast breath\r\nTo say to me that thou art out of breath?\r\nThe excuse that thou dost make in this delay\r\nIs longer than the tale thou dost excuse.\r\nIs thy news good or bad? Answer to that;\r\nSay either, and I’ll stay the circumstance.\r\nLet me be satisfied, is’t good or bad?\r\n\r\nNURSE.\r\nWell, you have made a simple choice; you know not how to choose a man.\r\nRomeo? No, not he. Though his face be better than any man’s, yet his\r\nleg excels all men’s, and for a hand and a foot, and a body, though\r\nthey be not to be talked on, yet they are past compare. He is not the\r\nflower of courtesy, but I’ll warrant him as gentle as a lamb. Go thy\r\nways, wench, serve God. What, have you dined at home?\r\n\r\nJULIET.\r\nNo, no. But all this did I know before.\r\nWhat says he of our marriage? What of that?\r\n\r\nNURSE.\r\nLord, how my head aches! What a head have I!\r\nIt beats as it would fall in twenty pieces.\r\nMy back o’ t’other side,—O my back, my back!\r\nBeshrew your heart for sending me about\r\nTo catch my death with jauncing up and down.\r\n\r\nJULIET.\r\nI’faith, I am sorry that thou art not well.\r\nSweet, sweet, sweet Nurse, tell me, what says my love?\r\n\r\nNURSE.\r\nYour love says like an honest gentleman,\r\nAnd a courteous, and a kind, and a handsome,\r\nAnd I warrant a virtuous,—Where is your mother?\r\n\r\nJULIET.\r\nWhere is my mother? Why, she is within.\r\nWhere should she be? How oddly thou repliest.\r\n‘Your love says, like an honest gentleman,\r\n‘Where is your mother?’\r\n\r\nNURSE.\r\nO God’s lady dear,\r\nAre you so hot? Marry, come up, I trow.\r\nIs this the poultice for my aching bones?\r\nHenceforward do your messages yourself.\r\n\r\nJULIET.\r\nHere’s such a coil. Come, what says Romeo?\r\n\r\nNURSE.\r\nHave you got leave to go to shrift today?\r\n\r\nJULIET.\r\nI have.\r\n\r\nNURSE.\r\nThen hie you hence to Friar Lawrence’ cell;\r\nThere stays a husband to make you a wife.\r\nNow comes the wanton blood up in your cheeks,\r\nThey’ll be in scarlet straight at any news.\r\nHie you to church. I must another way,\r\nTo fetch a ladder by the which your love\r\nMust climb a bird’s nest soon when it is dark.\r\nI am the drudge, and toil in your delight;\r\nBut you shall bear the burden soon at night.\r\nGo. I’ll to dinner; hie you to the cell.\r\n\r\nJULIET.\r\nHie to high fortune! Honest Nurse, farewell.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE VI. Friar Lawrence’s Cell.\r\n\r\n Enter Friar Lawrence and Romeo.\r\n\r\nFRIAR LAWRENCE.\r\nSo smile the heavens upon this holy act\r\nThat after-hours with sorrow chide us not.\r\n\r\nROMEO.\r\nAmen, amen, but come what sorrow can,\r\nIt cannot countervail the exchange of joy\r\nThat one short minute gives me in her sight.\r\nDo thou but close our hands with holy words,\r\nThen love-devouring death do what he dare,\r\nIt is enough I may but call her mine.\r\n\r\nFRIAR LAWRENCE.\r\nThese violent delights have violent ends,\r\nAnd in their triumph die; like fire and powder,\r\nWhich as they kiss consume. The sweetest honey\r\nIs loathsome in his own deliciousness,\r\nAnd in the taste confounds the appetite.\r\nTherefore love moderately: long love doth so;\r\nToo swift arrives as tardy as too slow.\r\n\r\n Enter Juliet.\r\n\r\nHere comes the lady. O, so light a foot\r\nWill ne’er wear out the everlasting flint.\r\nA lover may bestride the gossamers\r\nThat idles in the wanton summer air\r\nAnd yet not fall; so light is vanity.\r\n\r\nJULIET.\r\nGood even to my ghostly confessor.\r\n\r\nFRIAR LAWRENCE.\r\nRomeo shall thank thee, daughter, for us both.\r\n\r\nJULIET.\r\nAs much to him, else is his thanks too much.\r\n\r\nROMEO.\r\nAh, Juliet, if the measure of thy joy\r\nBe heap’d like mine, and that thy skill be more\r\nTo blazon it, then sweeten with thy breath\r\nThis neighbour air, and let rich music’s tongue\r\nUnfold the imagin’d happiness that both\r\nReceive in either by this dear encounter.\r\n\r\nJULIET.\r\nConceit more rich in matter than in words,\r\nBrags of his substance, not of ornament.\r\nThey are but beggars that can count their worth;\r\nBut my true love is grown to such excess,\r\nI cannot sum up sum of half my wealth.\r\n\r\nFRIAR LAWRENCE.\r\nCome, come with me, and we will make short work,\r\nFor, by your leaves, you shall not stay alone\r\nTill holy church incorporate two in one.\r\n\r\n [_Exeunt._]\r\n\r\n\r\n\r\nACT III\r\n\r\nSCENE I. A public Place.\r\n\r\n Enter Mercutio, Benvolio, Page and Servants.\r\n\r\nBENVOLIO.\r\nI pray thee, good Mercutio, let’s retire:\r\nThe day is hot, the Capulets abroad,\r\nAnd if we meet, we shall not scape a brawl,\r\nFor now these hot days, is the mad blood stirring.\r\n\r\nMERCUTIO.\r\nThou art like one of these fellows that, when he enters the confines of\r\na tavern, claps me his sword upon the table, and says ‘God send me no\r\nneed of thee!’ and by the operation of the second cup draws him on the\r\ndrawer, when indeed there is no need.\r\n\r\nBENVOLIO.\r\nAm I like such a fellow?\r\n\r\nMERCUTIO.\r\nCome, come, thou art as hot a Jack in thy mood as any in Italy; and as\r\nsoon moved to be moody, and as soon moody to be moved.\r\n\r\nBENVOLIO.\r\nAnd what to?\r\n\r\nMERCUTIO.\r\nNay, an there were two such, we should have none shortly, for one would\r\nkill the other. Thou? Why, thou wilt quarrel with a man that hath a\r\nhair more or a hair less in his beard than thou hast. Thou wilt quarrel\r\nwith a man for cracking nuts, having no other reason but because thou\r\nhast hazel eyes. What eye but such an eye would spy out such a quarrel?\r\nThy head is as full of quarrels as an egg is full of meat, and yet thy\r\nhead hath been beaten as addle as an egg for quarrelling. Thou hast\r\nquarrelled with a man for coughing in the street, because he hath\r\nwakened thy dog that hath lain asleep in the sun. Didst thou not fall\r\nout with a tailor for wearing his new doublet before Easter? with\r\nanother for tying his new shoes with an old riband? And yet thou wilt\r\ntutor me from quarrelling!\r\n\r\nBENVOLIO.\r\nAnd I were so apt to quarrel as thou art, any man should buy the fee\r\nsimple of my life for an hour and a quarter.\r\n\r\nMERCUTIO.\r\nThe fee simple! O simple!\r\n\r\n Enter Tybalt and others.\r\n\r\nBENVOLIO.\r\nBy my head, here comes the Capulets.\r\n\r\nMERCUTIO.\r\nBy my heel, I care not.\r\n\r\nTYBALT.\r\nFollow me close, for I will speak to them.\r\nGentlemen, good-den: a word with one of you.\r\n\r\nMERCUTIO.\r\nAnd but one word with one of us? Couple it with something; make it a\r\nword and a blow.\r\n\r\nTYBALT.\r\nYou shall find me apt enough to that, sir, and you will give me\r\noccasion.\r\n\r\nMERCUTIO.\r\nCould you not take some occasion without giving?\r\n\r\nTYBALT.\r\nMercutio, thou consortest with Romeo.\r\n\r\nMERCUTIO.\r\nConsort? What, dost thou make us minstrels? And thou make minstrels of\r\nus, look to hear nothing but discords. Here’s my fiddlestick, here’s\r\nthat shall make you dance. Zounds, consort!\r\n\r\nBENVOLIO.\r\nWe talk here in the public haunt of men.\r\nEither withdraw unto some private place,\r\nAnd reason coldly of your grievances,\r\nOr else depart; here all eyes gaze on us.\r\n\r\nMERCUTIO.\r\nMen’s eyes were made to look, and let them gaze.\r\nI will not budge for no man’s pleasure, I.\r\n\r\n Enter Romeo.\r\n\r\nTYBALT.\r\nWell, peace be with you, sir, here comes my man.\r\n\r\nMERCUTIO.\r\nBut I’ll be hanged, sir, if he wear your livery.\r\nMarry, go before to field, he’ll be your follower;\r\nYour worship in that sense may call him man.\r\n\r\nTYBALT.\r\nRomeo, the love I bear thee can afford\r\nNo better term than this: Thou art a villain.\r\n\r\nROMEO.\r\nTybalt, the reason that I have to love thee\r\nDoth much excuse the appertaining rage\r\nTo such a greeting. Villain am I none;\r\nTherefore farewell; I see thou know’st me not.\r\n\r\nTYBALT.\r\nBoy, this shall not excuse the injuries\r\nThat thou hast done me, therefore turn and draw.\r\n\r\nROMEO.\r\nI do protest I never injur’d thee,\r\nBut love thee better than thou canst devise\r\nTill thou shalt know the reason of my love.\r\nAnd so good Capulet, which name I tender\r\nAs dearly as mine own, be satisfied.\r\n\r\nMERCUTIO.\r\nO calm, dishonourable, vile submission!\r\n[_Draws._] Alla stoccata carries it away.\r\nTybalt, you rat-catcher, will you walk?\r\n\r\nTYBALT.\r\nWhat wouldst thou have with me?\r\n\r\nMERCUTIO.\r\nGood King of Cats, nothing but one of your nine lives; that I mean to\r\nmake bold withal, and, as you shall use me hereafter, dry-beat the rest\r\nof the eight. Will you pluck your sword out of his pilcher by the ears?\r\nMake haste, lest mine be about your ears ere it be out.\r\n\r\nTYBALT.\r\n[_Drawing._] I am for you.\r\n\r\nROMEO.\r\nGentle Mercutio, put thy rapier up.\r\n\r\nMERCUTIO.\r\nCome, sir, your passado.\r\n\r\n [_They fight._]\r\n\r\nROMEO.\r\nDraw, Benvolio; beat down their weapons.\r\nGentlemen, for shame, forbear this outrage,\r\nTybalt, Mercutio, the Prince expressly hath\r\nForbid this bandying in Verona streets.\r\nHold, Tybalt! Good Mercutio!\r\n\r\n [_Exeunt Tybalt with his Partizans._]\r\n\r\nMERCUTIO.\r\nI am hurt.\r\nA plague o’ both your houses. I am sped.\r\nIs he gone, and hath nothing?\r\n\r\nBENVOLIO.\r\nWhat, art thou hurt?\r\n\r\nMERCUTIO.\r\nAy, ay, a scratch, a scratch. Marry, ’tis enough.\r\nWhere is my page? Go villain, fetch a surgeon.\r\n\r\n [_Exit Page._]\r\n\r\nROMEO.\r\nCourage, man; the hurt cannot be much.\r\n\r\nMERCUTIO.\r\nNo, ’tis not so deep as a well, nor so wide as a church door, but ’tis\r\nenough, ’twill serve. Ask for me tomorrow, and you shall find me a\r\ngrave man. I am peppered, I warrant, for this world. A plague o’ both\r\nyour houses. Zounds, a dog, a rat, a mouse, a cat, to scratch a man to\r\ndeath. A braggart, a rogue, a villain, that fights by the book of\r\narithmetic!—Why the devil came you between us? I was hurt under your\r\narm.\r\n\r\nROMEO.\r\nI thought all for the best.\r\n\r\nMERCUTIO.\r\nHelp me into some house, Benvolio,\r\nOr I shall faint. A plague o’ both your houses.\r\nThey have made worms’ meat of me.\r\nI have it, and soundly too. Your houses!\r\n\r\n [_Exeunt Mercutio and Benvolio._]\r\n\r\nROMEO.\r\nThis gentleman, the Prince’s near ally,\r\nMy very friend, hath got his mortal hurt\r\nIn my behalf; my reputation stain’d\r\nWith Tybalt’s slander,—Tybalt, that an hour\r\nHath been my cousin. O sweet Juliet,\r\nThy beauty hath made me effeminate\r\nAnd in my temper soften’d valour’s steel.\r\n\r\n Re-enter Benvolio.\r\n\r\nBENVOLIO.\r\nO Romeo, Romeo, brave Mercutio’s dead,\r\nThat gallant spirit hath aspir’d the clouds,\r\nWhich too untimely here did scorn the earth.\r\n\r\nROMEO.\r\nThis day’s black fate on mo days doth depend;\r\nThis but begins the woe others must end.\r\n\r\n Re-enter Tybalt.\r\n\r\nBENVOLIO.\r\nHere comes the furious Tybalt back again.\r\n\r\nROMEO.\r\nAgain in triumph, and Mercutio slain?\r\nAway to heaven respective lenity,\r\nAnd fire-ey’d fury be my conduct now!\r\nNow, Tybalt, take the ‘villain’ back again\r\nThat late thou gav’st me, for Mercutio’s soul\r\nIs but a little way above our heads,\r\nStaying for thine to keep him company.\r\nEither thou or I, or both, must go with him.\r\n\r\nTYBALT.\r\nThou wretched boy, that didst consort him here,\r\nShalt with him hence.\r\n\r\nROMEO.\r\nThis shall determine that.\r\n\r\n [_They fight; Tybalt falls._]\r\n\r\nBENVOLIO.\r\nRomeo, away, be gone!\r\nThe citizens are up, and Tybalt slain.\r\nStand not amaz’d. The Prince will doom thee death\r\nIf thou art taken. Hence, be gone, away!\r\n\r\nROMEO.\r\nO, I am fortune’s fool!\r\n\r\nBENVOLIO.\r\nWhy dost thou stay?\r\n\r\n [_Exit Romeo._]\r\n\r\n Enter Citizens.\r\n\r\nFIRST CITIZEN.\r\nWhich way ran he that kill’d Mercutio?\r\nTybalt, that murderer, which way ran he?\r\n\r\nBENVOLIO.\r\nThere lies that Tybalt.\r\n\r\nFIRST CITIZEN.\r\nUp, sir, go with me.\r\nI charge thee in the Prince’s name obey.\r\n\r\n Enter Prince, attended; Montague, Capulet, their Wives and others.\r\n\r\nPRINCE.\r\nWhere are the vile beginners of this fray?\r\n\r\nBENVOLIO.\r\nO noble Prince, I can discover all\r\nThe unlucky manage of this fatal brawl.\r\nThere lies the man, slain by young Romeo,\r\nThat slew thy kinsman, brave Mercutio.\r\n\r\nLADY CAPULET.\r\nTybalt, my cousin! O my brother’s child!\r\nO Prince! O husband! O, the blood is spill’d\r\nOf my dear kinsman! Prince, as thou art true,\r\nFor blood of ours shed blood of Montague.\r\nO cousin, cousin.\r\n\r\nPRINCE.\r\nBenvolio, who began this bloody fray?\r\n\r\nBENVOLIO.\r\nTybalt, here slain, whom Romeo’s hand did slay;\r\nRomeo, that spoke him fair, bid him bethink\r\nHow nice the quarrel was, and urg’d withal\r\nYour high displeasure. All this uttered\r\nWith gentle breath, calm look, knees humbly bow’d\r\nCould not take truce with the unruly spleen\r\nOf Tybalt, deaf to peace, but that he tilts\r\nWith piercing steel at bold Mercutio’s breast,\r\nWho, all as hot, turns deadly point to point,\r\nAnd, with a martial scorn, with one hand beats\r\nCold death aside, and with the other sends\r\nIt back to Tybalt, whose dexterity\r\nRetorts it. Romeo he cries aloud,\r\n‘Hold, friends! Friends, part!’ and swifter than his tongue,\r\nHis agile arm beats down their fatal points,\r\nAnd ’twixt them rushes; underneath whose arm\r\nAn envious thrust from Tybalt hit the life\r\nOf stout Mercutio, and then Tybalt fled.\r\nBut by and by comes back to Romeo,\r\nWho had but newly entertain’d revenge,\r\nAnd to’t they go like lightning; for, ere I\r\nCould draw to part them was stout Tybalt slain;\r\nAnd as he fell did Romeo turn and fly.\r\nThis is the truth, or let Benvolio die.\r\n\r\nLADY CAPULET.\r\nHe is a kinsman to the Montague.\r\nAffection makes him false, he speaks not true.\r\nSome twenty of them fought in this black strife,\r\nAnd all those twenty could but kill one life.\r\nI beg for justice, which thou, Prince, must give;\r\nRomeo slew Tybalt, Romeo must not live.\r\n\r\nPRINCE.\r\nRomeo slew him, he slew Mercutio.\r\nWho now the price of his dear blood doth owe?\r\n\r\nMONTAGUE.\r\nNot Romeo, Prince, he was Mercutio’s friend;\r\nHis fault concludes but what the law should end,\r\nThe life of Tybalt.\r\n\r\nPRINCE.\r\nAnd for that offence\r\nImmediately we do exile him hence.\r\nI have an interest in your hate’s proceeding,\r\nMy blood for your rude brawls doth lie a-bleeding.\r\nBut I’ll amerce you with so strong a fine\r\nThat you shall all repent the loss of mine.\r\nI will be deaf to pleading and excuses;\r\nNor tears nor prayers shall purchase out abuses.\r\nTherefore use none. Let Romeo hence in haste,\r\nElse, when he is found, that hour is his last.\r\nBear hence this body, and attend our will.\r\nMercy but murders, pardoning those that kill.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. A Room in Capulet’s House.\r\n\r\n Enter Juliet.\r\n\r\nJULIET.\r\nGallop apace, you fiery-footed steeds,\r\nTowards Phoebus’ lodging. Such a waggoner\r\nAs Phaeton would whip you to the west\r\nAnd bring in cloudy night immediately.\r\nSpread thy close curtain, love-performing night,\r\nThat runaway’s eyes may wink, and Romeo\r\nLeap to these arms, untalk’d of and unseen.\r\nLovers can see to do their amorous rites\r\nBy their own beauties: or, if love be blind,\r\nIt best agrees with night. Come, civil night,\r\nThou sober-suited matron, all in black,\r\nAnd learn me how to lose a winning match,\r\nPlay’d for a pair of stainless maidenhoods.\r\nHood my unmann’d blood, bating in my cheeks,\r\nWith thy black mantle, till strange love, grow bold,\r\nThink true love acted simple modesty.\r\nCome, night, come Romeo; come, thou day in night;\r\nFor thou wilt lie upon the wings of night\r\nWhiter than new snow upon a raven’s back.\r\nCome gentle night, come loving black-brow’d night,\r\nGive me my Romeo, and when I shall die,\r\nTake him and cut him out in little stars,\r\nAnd he will make the face of heaven so fine\r\nThat all the world will be in love with night,\r\nAnd pay no worship to the garish sun.\r\nO, I have bought the mansion of a love,\r\nBut not possess’d it; and though I am sold,\r\nNot yet enjoy’d. So tedious is this day\r\nAs is the night before some festival\r\nTo an impatient child that hath new robes\r\nAnd may not wear them. O, here comes my Nurse,\r\nAnd she brings news, and every tongue that speaks\r\nBut Romeo’s name speaks heavenly eloquence.\r\n\r\n Enter Nurse, with cords.\r\n\r\nNow, Nurse, what news? What hast thou there?\r\nThe cords that Romeo bid thee fetch?\r\n\r\nNURSE.\r\nAy, ay, the cords.\r\n\r\n [_Throws them down._]\r\n\r\nJULIET.\r\nAy me, what news? Why dost thou wring thy hands?\r\n\r\nNURSE.\r\nAh, well-a-day, he’s dead, he’s dead, he’s dead!\r\nWe are undone, lady, we are undone.\r\nAlack the day, he’s gone, he’s kill’d, he’s dead.\r\n\r\nJULIET.\r\nCan heaven be so envious?\r\n\r\nNURSE.\r\nRomeo can,\r\nThough heaven cannot. O Romeo, Romeo.\r\nWho ever would have thought it? Romeo!\r\n\r\nJULIET.\r\nWhat devil art thou, that dost torment me thus?\r\nThis torture should be roar’d in dismal hell.\r\nHath Romeo slain himself? Say thou but Ay,\r\nAnd that bare vowel I shall poison more\r\nThan the death-darting eye of cockatrice.\r\nI am not I if there be such an I;\r\nOr those eyes shut that make thee answer Ay.\r\nIf he be slain, say Ay; or if not, No.\r\nBrief sounds determine of my weal or woe.\r\n\r\nNURSE.\r\nI saw the wound, I saw it with mine eyes,\r\nGod save the mark!—here on his manly breast.\r\nA piteous corse, a bloody piteous corse;\r\nPale, pale as ashes, all bedaub’d in blood,\r\nAll in gore-blood. I swounded at the sight.\r\n\r\nJULIET.\r\nO, break, my heart. Poor bankrout, break at once.\r\nTo prison, eyes; ne’er look on liberty.\r\nVile earth to earth resign; end motion here,\r\nAnd thou and Romeo press one heavy bier.\r\n\r\nNURSE.\r\nO Tybalt, Tybalt, the best friend I had.\r\nO courteous Tybalt, honest gentleman!\r\nThat ever I should live to see thee dead.\r\n\r\nJULIET.\r\nWhat storm is this that blows so contrary?\r\nIs Romeo slaughter’d and is Tybalt dead?\r\nMy dearest cousin, and my dearer lord?\r\nThen dreadful trumpet sound the general doom,\r\nFor who is living, if those two are gone?\r\n\r\nNURSE.\r\nTybalt is gone, and Romeo banished,\r\nRomeo that kill’d him, he is banished.\r\n\r\nJULIET.\r\nO God! Did Romeo’s hand shed Tybalt’s blood?\r\n\r\nNURSE.\r\nIt did, it did; alas the day, it did.\r\n\r\nJULIET.\r\nO serpent heart, hid with a flowering face!\r\nDid ever dragon keep so fair a cave?\r\nBeautiful tyrant, fiend angelical,\r\nDove-feather’d raven, wolvish-ravening lamb!\r\nDespised substance of divinest show!\r\nJust opposite to what thou justly seem’st,\r\nA damned saint, an honourable villain!\r\nO nature, what hadst thou to do in hell\r\nWhen thou didst bower the spirit of a fiend\r\nIn mortal paradise of such sweet flesh?\r\nWas ever book containing such vile matter\r\nSo fairly bound? O, that deceit should dwell\r\nIn such a gorgeous palace.\r\n\r\nNURSE.\r\nThere’s no trust,\r\nNo faith, no honesty in men. All perjur’d,\r\nAll forsworn, all naught, all dissemblers.\r\nAh, where’s my man? Give me some aqua vitae.\r\nThese griefs, these woes, these sorrows make me old.\r\nShame come to Romeo.\r\n\r\nJULIET.\r\nBlister’d be thy tongue\r\nFor such a wish! He was not born to shame.\r\nUpon his brow shame is asham’d to sit;\r\nFor ’tis a throne where honour may be crown’d\r\nSole monarch of the universal earth.\r\nO, what a beast was I to chide at him!\r\n\r\nNURSE.\r\nWill you speak well of him that kill’d your cousin?\r\n\r\nJULIET.\r\nShall I speak ill of him that is my husband?\r\nAh, poor my lord, what tongue shall smooth thy name,\r\nWhen I thy three-hours’ wife have mangled it?\r\nBut wherefore, villain, didst thou kill my cousin?\r\nThat villain cousin would have kill’d my husband.\r\nBack, foolish tears, back to your native spring,\r\nYour tributary drops belong to woe,\r\nWhich you mistaking offer up to joy.\r\nMy husband lives, that Tybalt would have slain,\r\nAnd Tybalt’s dead, that would have slain my husband.\r\nAll this is comfort; wherefore weep I then?\r\nSome word there was, worser than Tybalt’s death,\r\nThat murder’d me. I would forget it fain,\r\nBut O, it presses to my memory\r\nLike damned guilty deeds to sinners’ minds.\r\nTybalt is dead, and Romeo banished.\r\nThat ‘banished,’ that one word ‘banished,’\r\nHath slain ten thousand Tybalts. Tybalt’s death\r\nWas woe enough, if it had ended there.\r\nOr if sour woe delights in fellowship,\r\nAnd needly will be rank’d with other griefs,\r\nWhy follow’d not, when she said Tybalt’s dead,\r\nThy father or thy mother, nay or both,\r\nWhich modern lamentation might have mov’d?\r\nBut with a rear-ward following Tybalt’s death,\r\n‘Romeo is banished’—to speak that word\r\nIs father, mother, Tybalt, Romeo, Juliet,\r\nAll slain, all dead. Romeo is banished,\r\nThere is no end, no limit, measure, bound,\r\nIn that word’s death, no words can that woe sound.\r\nWhere is my father and my mother, Nurse?\r\n\r\nNURSE.\r\nWeeping and wailing over Tybalt’s corse.\r\nWill you go to them? I will bring you thither.\r\n\r\nJULIET.\r\nWash they his wounds with tears. Mine shall be spent,\r\nWhen theirs are dry, for Romeo’s banishment.\r\nTake up those cords. Poor ropes, you are beguil’d,\r\nBoth you and I; for Romeo is exil’d.\r\nHe made you for a highway to my bed,\r\nBut I, a maid, die maiden-widowed.\r\nCome cords, come Nurse, I’ll to my wedding bed,\r\nAnd death, not Romeo, take my maidenhead.\r\n\r\nNURSE.\r\nHie to your chamber. I’ll find Romeo\r\nTo comfort you. I wot well where he is.\r\nHark ye, your Romeo will be here at night.\r\nI’ll to him, he is hid at Lawrence’ cell.\r\n\r\nJULIET.\r\nO find him, give this ring to my true knight,\r\nAnd bid him come to take his last farewell.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE III. Friar Lawrence’s cell.\r\n\r\n Enter Friar Lawrence.\r\n\r\nFRIAR LAWRENCE.\r\nRomeo, come forth; come forth, thou fearful man.\r\nAffliction is enanmour’d of thy parts\r\nAnd thou art wedded to calamity.\r\n\r\n Enter Romeo.\r\n\r\nROMEO.\r\nFather, what news? What is the Prince’s doom?\r\nWhat sorrow craves acquaintance at my hand,\r\nThat I yet know not?\r\n\r\nFRIAR LAWRENCE.\r\nToo familiar\r\nIs my dear son with such sour company.\r\nI bring thee tidings of the Prince’s doom.\r\n\r\nROMEO.\r\nWhat less than doomsday is the Prince’s doom?\r\n\r\nFRIAR LAWRENCE.\r\nA gentler judgment vanish’d from his lips,\r\nNot body’s death, but body’s banishment.\r\n\r\nROMEO.\r\nHa, banishment? Be merciful, say death;\r\nFor exile hath more terror in his look,\r\nMuch more than death. Do not say banishment.\r\n\r\nFRIAR LAWRENCE.\r\nHence from Verona art thou banished.\r\nBe patient, for the world is broad and wide.\r\n\r\nROMEO.\r\nThere is no world without Verona walls,\r\nBut purgatory, torture, hell itself.\r\nHence banished is banish’d from the world,\r\nAnd world’s exile is death. Then banished\r\nIs death misterm’d. Calling death banished,\r\nThou cutt’st my head off with a golden axe,\r\nAnd smilest upon the stroke that murders me.\r\n\r\nFRIAR LAWRENCE.\r\nO deadly sin, O rude unthankfulness!\r\nThy fault our law calls death, but the kind Prince,\r\nTaking thy part, hath brush’d aside the law,\r\nAnd turn’d that black word death to banishment.\r\nThis is dear mercy, and thou see’st it not.\r\n\r\nROMEO.\r\n’Tis torture, and not mercy. Heaven is here\r\nWhere Juliet lives, and every cat and dog,\r\nAnd little mouse, every unworthy thing,\r\nLive here in heaven and may look on her,\r\nBut Romeo may not. More validity,\r\nMore honourable state, more courtship lives\r\nIn carrion flies than Romeo. They may seize\r\nOn the white wonder of dear Juliet’s hand,\r\nAnd steal immortal blessing from her lips,\r\nWho, even in pure and vestal modesty\r\nStill blush, as thinking their own kisses sin.\r\nBut Romeo may not, he is banished.\r\nThis may flies do, when I from this must fly.\r\nThey are free men but I am banished.\r\nAnd say’st thou yet that exile is not death?\r\nHadst thou no poison mix’d, no sharp-ground knife,\r\nNo sudden mean of death, though ne’er so mean,\r\nBut banished to kill me? Banished?\r\nO Friar, the damned use that word in hell.\r\nHowlings attends it. How hast thou the heart,\r\nBeing a divine, a ghostly confessor,\r\nA sin-absolver, and my friend profess’d,\r\nTo mangle me with that word banished?\r\n\r\nFRIAR LAWRENCE.\r\nThou fond mad man, hear me speak a little,\r\n\r\nROMEO.\r\nO, thou wilt speak again of banishment.\r\n\r\nFRIAR LAWRENCE.\r\nI’ll give thee armour to keep off that word,\r\nAdversity’s sweet milk, philosophy,\r\nTo comfort thee, though thou art banished.\r\n\r\nROMEO.\r\nYet banished? Hang up philosophy.\r\nUnless philosophy can make a Juliet,\r\nDisplant a town, reverse a Prince’s doom,\r\nIt helps not, it prevails not, talk no more.\r\n\r\nFRIAR LAWRENCE.\r\nO, then I see that mad men have no ears.\r\n\r\nROMEO.\r\nHow should they, when that wise men have no eyes?\r\n\r\nFRIAR LAWRENCE.\r\nLet me dispute with thee of thy estate.\r\n\r\nROMEO.\r\nThou canst not speak of that thou dost not feel.\r\nWert thou as young as I, Juliet thy love,\r\nAn hour but married, Tybalt murdered,\r\nDoting like me, and like me banished,\r\nThen mightst thou speak, then mightst thou tear thy hair,\r\nAnd fall upon the ground as I do now,\r\nTaking the measure of an unmade grave.\r\n\r\n [_Knocking within._]\r\n\r\nFRIAR LAWRENCE.\r\nArise; one knocks. Good Romeo, hide thyself.\r\n\r\nROMEO.\r\nNot I, unless the breath of heartsick groans\r\nMist-like infold me from the search of eyes.\r\n\r\n [_Knocking._]\r\n\r\nFRIAR LAWRENCE.\r\nHark, how they knock!—Who’s there?—Romeo, arise,\r\nThou wilt be taken.—Stay awhile.—Stand up.\r\n\r\n [_Knocking._]\r\n\r\nRun to my study.—By-and-by.—God’s will,\r\nWhat simpleness is this.—I come, I come.\r\n\r\n [_Knocking._]\r\n\r\nWho knocks so hard? Whence come you, what’s your will?\r\n\r\nNURSE.\r\n[_Within._] Let me come in, and you shall know my errand.\r\nI come from Lady Juliet.\r\n\r\nFRIAR LAWRENCE.\r\nWelcome then.\r\n\r\n Enter Nurse.\r\n\r\nNURSE.\r\nO holy Friar, O, tell me, holy Friar,\r\nWhere is my lady’s lord, where’s Romeo?\r\n\r\nFRIAR LAWRENCE.\r\nThere on the ground, with his own tears made drunk.\r\n\r\nNURSE.\r\nO, he is even in my mistress’ case.\r\nJust in her case! O woeful sympathy!\r\nPiteous predicament. Even so lies she,\r\nBlubbering and weeping, weeping and blubbering.\r\nStand up, stand up; stand, and you be a man.\r\nFor Juliet’s sake, for her sake, rise and stand.\r\nWhy should you fall into so deep an O?\r\n\r\nROMEO.\r\nNurse.\r\n\r\nNURSE.\r\nAh sir, ah sir, death’s the end of all.\r\n\r\nROMEO.\r\nSpakest thou of Juliet? How is it with her?\r\nDoth not she think me an old murderer,\r\nNow I have stain’d the childhood of our joy\r\nWith blood remov’d but little from her own?\r\nWhere is she? And how doth she? And what says\r\nMy conceal’d lady to our cancell’d love?\r\n\r\nNURSE.\r\nO, she says nothing, sir, but weeps and weeps;\r\nAnd now falls on her bed, and then starts up,\r\nAnd Tybalt calls, and then on Romeo cries,\r\nAnd then down falls again.\r\n\r\nROMEO.\r\nAs if that name,\r\nShot from the deadly level of a gun,\r\nDid murder her, as that name’s cursed hand\r\nMurder’d her kinsman. O, tell me, Friar, tell me,\r\nIn what vile part of this anatomy\r\nDoth my name lodge? Tell me, that I may sack\r\nThe hateful mansion.\r\n\r\n [_Drawing his sword._]\r\n\r\nFRIAR LAWRENCE.\r\nHold thy desperate hand.\r\nArt thou a man? Thy form cries out thou art.\r\nThy tears are womanish, thy wild acts denote\r\nThe unreasonable fury of a beast.\r\nUnseemly woman in a seeming man,\r\nAnd ill-beseeming beast in seeming both!\r\nThou hast amaz’d me. By my holy order,\r\nI thought thy disposition better temper’d.\r\nHast thou slain Tybalt? Wilt thou slay thyself?\r\nAnd slay thy lady, that in thy life lives,\r\nBy doing damned hate upon thyself?\r\nWhy rail’st thou on thy birth, the heaven and earth?\r\nSince birth, and heaven and earth, all three do meet\r\nIn thee at once; which thou at once wouldst lose.\r\nFie, fie, thou sham’st thy shape, thy love, thy wit,\r\nWhich, like a usurer, abound’st in all,\r\nAnd usest none in that true use indeed\r\nWhich should bedeck thy shape, thy love, thy wit.\r\nThy noble shape is but a form of wax,\r\nDigressing from the valour of a man;\r\nThy dear love sworn but hollow perjury,\r\nKilling that love which thou hast vow’d to cherish;\r\nThy wit, that ornament to shape and love,\r\nMisshapen in the conduct of them both,\r\nLike powder in a skilless soldier’s flask,\r\nIs set afire by thine own ignorance,\r\nAnd thou dismember’d with thine own defence.\r\nWhat, rouse thee, man. Thy Juliet is alive,\r\nFor whose dear sake thou wast but lately dead.\r\nThere art thou happy. Tybalt would kill thee,\r\nBut thou slew’st Tybalt; there art thou happy.\r\nThe law that threaten’d death becomes thy friend,\r\nAnd turns it to exile; there art thou happy.\r\nA pack of blessings light upon thy back;\r\nHappiness courts thee in her best array;\r\nBut like a misshaped and sullen wench,\r\nThou putt’st up thy Fortune and thy love.\r\nTake heed, take heed, for such die miserable.\r\nGo, get thee to thy love as was decreed,\r\nAscend her chamber, hence and comfort her.\r\nBut look thou stay not till the watch be set,\r\nFor then thou canst not pass to Mantua;\r\nWhere thou shalt live till we can find a time\r\nTo blaze your marriage, reconcile your friends,\r\nBeg pardon of the Prince, and call thee back\r\nWith twenty hundred thousand times more joy\r\nThan thou went’st forth in lamentation.\r\nGo before, Nurse. Commend me to thy lady,\r\nAnd bid her hasten all the house to bed,\r\nWhich heavy sorrow makes them apt unto.\r\nRomeo is coming.\r\n\r\nNURSE.\r\nO Lord, I could have stay’d here all the night\r\nTo hear good counsel. O, what learning is!\r\nMy lord, I’ll tell my lady you will come.\r\n\r\nROMEO.\r\nDo so, and bid my sweet prepare to chide.\r\n\r\nNURSE.\r\nHere sir, a ring she bid me give you, sir.\r\nHie you, make haste, for it grows very late.\r\n\r\n [_Exit._]\r\n\r\nROMEO.\r\nHow well my comfort is reviv’d by this.\r\n\r\nFRIAR LAWRENCE.\r\nGo hence, good night, and here stands all your state:\r\nEither be gone before the watch be set,\r\nOr by the break of day disguis’d from hence.\r\nSojourn in Mantua. I’ll find out your man,\r\nAnd he shall signify from time to time\r\nEvery good hap to you that chances here.\r\nGive me thy hand; ’tis late; farewell; good night.\r\n\r\nROMEO.\r\nBut that a joy past joy calls out on me,\r\nIt were a grief so brief to part with thee.\r\nFarewell.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE IV. A Room in Capulet’s House.\r\n\r\n Enter Capulet, Lady Capulet and Paris.\r\n\r\nCAPULET.\r\nThings have fallen out, sir, so unluckily\r\nThat we have had no time to move our daughter.\r\nLook you, she lov’d her kinsman Tybalt dearly,\r\nAnd so did I. Well, we were born to die.\r\n’Tis very late; she’ll not come down tonight.\r\nI promise you, but for your company,\r\nI would have been abed an hour ago.\r\n\r\nPARIS.\r\nThese times of woe afford no tune to woo.\r\nMadam, good night. Commend me to your daughter.\r\n\r\nLADY CAPULET.\r\nI will, and know her mind early tomorrow;\r\nTonight she’s mew’d up to her heaviness.\r\n\r\nCAPULET.\r\nSir Paris, I will make a desperate tender\r\nOf my child’s love. I think she will be rul’d\r\nIn all respects by me; nay more, I doubt it not.\r\nWife, go you to her ere you go to bed,\r\nAcquaint her here of my son Paris’ love,\r\nAnd bid her, mark you me, on Wednesday next,\r\nBut, soft, what day is this?\r\n\r\nPARIS.\r\nMonday, my lord.\r\n\r\nCAPULET.\r\nMonday! Ha, ha! Well, Wednesday is too soon,\r\nA Thursday let it be; a Thursday, tell her,\r\nShe shall be married to this noble earl.\r\nWill you be ready? Do you like this haste?\r\nWe’ll keep no great ado,—a friend or two,\r\nFor, hark you, Tybalt being slain so late,\r\nIt may be thought we held him carelessly,\r\nBeing our kinsman, if we revel much.\r\nTherefore we’ll have some half a dozen friends,\r\nAnd there an end. But what say you to Thursday?\r\n\r\nPARIS.\r\nMy lord, I would that Thursday were tomorrow.\r\n\r\nCAPULET.\r\nWell, get you gone. A Thursday be it then.\r\nGo you to Juliet ere you go to bed,\r\nPrepare her, wife, against this wedding day.\r\nFarewell, my lord.—Light to my chamber, ho!\r\nAfore me, it is so very very late that we\r\nMay call it early by and by. Good night.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE V. An open Gallery to Juliet’s Chamber, overlooking the Garden.\r\n\r\n Enter Romeo and Juliet.\r\n\r\nJULIET.\r\nWilt thou be gone? It is not yet near day.\r\nIt was the nightingale, and not the lark,\r\nThat pierc’d the fearful hollow of thine ear;\r\nNightly she sings on yond pomegranate tree.\r\nBelieve me, love, it was the nightingale.\r\n\r\nROMEO.\r\nIt was the lark, the herald of the morn,\r\nNo nightingale. Look, love, what envious streaks\r\nDo lace the severing clouds in yonder east.\r\nNight’s candles are burnt out, and jocund day\r\nStands tiptoe on the misty mountain tops.\r\nI must be gone and live, or stay and die.\r\n\r\nJULIET.\r\nYond light is not daylight, I know it, I.\r\nIt is some meteor that the sun exhales\r\nTo be to thee this night a torchbearer\r\nAnd light thee on thy way to Mantua.\r\nTherefore stay yet, thou need’st not to be gone.\r\n\r\nROMEO.\r\nLet me be ta’en, let me be put to death,\r\nI am content, so thou wilt have it so.\r\nI’ll say yon grey is not the morning’s eye,\r\n’Tis but the pale reflex of Cynthia’s brow.\r\nNor that is not the lark whose notes do beat\r\nThe vaulty heaven so high above our heads.\r\nI have more care to stay than will to go.\r\nCome, death, and welcome. Juliet wills it so.\r\nHow is’t, my soul? Let’s talk. It is not day.\r\n\r\nJULIET.\r\nIt is, it is! Hie hence, be gone, away.\r\nIt is the lark that sings so out of tune,\r\nStraining harsh discords and unpleasing sharps.\r\nSome say the lark makes sweet division;\r\nThis doth not so, for she divideth us.\r\nSome say the lark and loathed toad change eyes.\r\nO, now I would they had chang’d voices too,\r\nSince arm from arm that voice doth us affray,\r\nHunting thee hence with hunt’s-up to the day.\r\nO now be gone, more light and light it grows.\r\n\r\nROMEO.\r\nMore light and light, more dark and dark our woes.\r\n\r\n Enter Nurse.\r\n\r\nNURSE.\r\nMadam.\r\n\r\nJULIET.\r\nNurse?\r\n\r\nNURSE.\r\nYour lady mother is coming to your chamber.\r\nThe day is broke, be wary, look about.\r\n\r\n [_Exit._]\r\n\r\nJULIET.\r\nThen, window, let day in, and let life out.\r\n\r\nROMEO.\r\nFarewell, farewell, one kiss, and I’ll descend.\r\n\r\n [_Descends._]\r\n\r\nJULIET.\r\nArt thou gone so? Love, lord, ay husband, friend,\r\nI must hear from thee every day in the hour,\r\nFor in a minute there are many days.\r\nO, by this count I shall be much in years\r\nEre I again behold my Romeo.\r\n\r\nROMEO.\r\nFarewell!\r\nI will omit no opportunity\r\nThat may convey my greetings, love, to thee.\r\n\r\nJULIET.\r\nO thinkest thou we shall ever meet again?\r\n\r\nROMEO.\r\nI doubt it not, and all these woes shall serve\r\nFor sweet discourses in our time to come.\r\n\r\nJULIET.\r\nO God! I have an ill-divining soul!\r\nMethinks I see thee, now thou art so low,\r\nAs one dead in the bottom of a tomb.\r\nEither my eyesight fails, or thou look’st pale.\r\n\r\nROMEO.\r\nAnd trust me, love, in my eye so do you.\r\nDry sorrow drinks our blood. Adieu, adieu.\r\n\r\n [_Exit below._]\r\n\r\nJULIET.\r\nO Fortune, Fortune! All men call thee fickle,\r\nIf thou art fickle, what dost thou with him\r\nThat is renown’d for faith? Be fickle, Fortune;\r\nFor then, I hope thou wilt not keep him long\r\nBut send him back.\r\n\r\nLADY CAPULET.\r\n[_Within._] Ho, daughter, are you up?\r\n\r\nJULIET.\r\nWho is’t that calls? Is it my lady mother?\r\nIs she not down so late, or up so early?\r\nWhat unaccustom’d cause procures her hither?\r\n\r\n Enter Lady Capulet.\r\n\r\nLADY CAPULET.\r\nWhy, how now, Juliet?\r\n\r\nJULIET.\r\nMadam, I am not well.\r\n\r\nLADY CAPULET.\r\nEvermore weeping for your cousin’s death?\r\nWhat, wilt thou wash him from his grave with tears?\r\nAnd if thou couldst, thou couldst not make him live.\r\nTherefore have done: some grief shows much of love,\r\nBut much of grief shows still some want of wit.\r\n\r\nJULIET.\r\nYet let me weep for such a feeling loss.\r\n\r\nLADY CAPULET.\r\nSo shall you feel the loss, but not the friend\r\nWhich you weep for.\r\n\r\nJULIET.\r\nFeeling so the loss,\r\nI cannot choose but ever weep the friend.\r\n\r\nLADY CAPULET.\r\nWell, girl, thou weep’st not so much for his death\r\nAs that the villain lives which slaughter’d him.\r\n\r\nJULIET.\r\nWhat villain, madam?\r\n\r\nLADY CAPULET.\r\nThat same villain Romeo.\r\n\r\nJULIET.\r\nVillain and he be many miles asunder.\r\nGod pardon him. I do, with all my heart.\r\nAnd yet no man like he doth grieve my heart.\r\n\r\nLADY CAPULET.\r\nThat is because the traitor murderer lives.\r\n\r\nJULIET.\r\nAy madam, from the reach of these my hands.\r\nWould none but I might venge my cousin’s death.\r\n\r\nLADY CAPULET.\r\nWe will have vengeance for it, fear thou not.\r\nThen weep no more. I’ll send to one in Mantua,\r\nWhere that same banish’d runagate doth live,\r\nShall give him such an unaccustom’d dram\r\nThat he shall soon keep Tybalt company:\r\nAnd then I hope thou wilt be satisfied.\r\n\r\nJULIET.\r\nIndeed I never shall be satisfied\r\nWith Romeo till I behold him—dead—\r\nIs my poor heart so for a kinsman vex’d.\r\nMadam, if you could find out but a man\r\nTo bear a poison, I would temper it,\r\nThat Romeo should upon receipt thereof,\r\nSoon sleep in quiet. O, how my heart abhors\r\nTo hear him nam’d, and cannot come to him,\r\nTo wreak the love I bore my cousin\r\nUpon his body that hath slaughter’d him.\r\n\r\nLADY CAPULET.\r\nFind thou the means, and I’ll find such a man.\r\nBut now I’ll tell thee joyful tidings, girl.\r\n\r\nJULIET.\r\nAnd joy comes well in such a needy time.\r\nWhat are they, I beseech your ladyship?\r\n\r\nLADY CAPULET.\r\nWell, well, thou hast a careful father, child;\r\nOne who to put thee from thy heaviness,\r\nHath sorted out a sudden day of joy,\r\nThat thou expects not, nor I look’d not for.\r\n\r\nJULIET.\r\nMadam, in happy time, what day is that?\r\n\r\nLADY CAPULET.\r\nMarry, my child, early next Thursday morn\r\nThe gallant, young, and noble gentleman,\r\nThe County Paris, at Saint Peter’s Church,\r\nShall happily make thee there a joyful bride.\r\n\r\nJULIET.\r\nNow by Saint Peter’s Church, and Peter too,\r\nHe shall not make me there a joyful bride.\r\nI wonder at this haste, that I must wed\r\nEre he that should be husband comes to woo.\r\nI pray you tell my lord and father, madam,\r\nI will not marry yet; and when I do, I swear\r\nIt shall be Romeo, whom you know I hate,\r\nRather than Paris. These are news indeed.\r\n\r\nLADY CAPULET.\r\nHere comes your father, tell him so yourself,\r\nAnd see how he will take it at your hands.\r\n\r\n Enter Capulet and Nurse.\r\n\r\nCAPULET.\r\nWhen the sun sets, the air doth drizzle dew;\r\nBut for the sunset of my brother’s son\r\nIt rains downright.\r\nHow now? A conduit, girl? What, still in tears?\r\nEvermore showering? In one little body\r\nThou counterfeits a bark, a sea, a wind.\r\nFor still thy eyes, which I may call the sea,\r\nDo ebb and flow with tears; the bark thy body is,\r\nSailing in this salt flood, the winds, thy sighs,\r\nWho raging with thy tears and they with them,\r\nWithout a sudden calm will overset\r\nThy tempest-tossed body. How now, wife?\r\nHave you deliver’d to her our decree?\r\n\r\nLADY CAPULET.\r\nAy, sir; but she will none, she gives you thanks.\r\nI would the fool were married to her grave.\r\n\r\nCAPULET.\r\nSoft. Take me with you, take me with you, wife.\r\nHow, will she none? Doth she not give us thanks?\r\nIs she not proud? Doth she not count her blest,\r\nUnworthy as she is, that we have wrought\r\nSo worthy a gentleman to be her bridegroom?\r\n\r\nJULIET.\r\nNot proud you have, but thankful that you have.\r\nProud can I never be of what I hate;\r\nBut thankful even for hate that is meant love.\r\n\r\nCAPULET.\r\nHow now, how now, chopp’d logic? What is this?\r\nProud, and, I thank you, and I thank you not;\r\nAnd yet not proud. Mistress minion you,\r\nThank me no thankings, nor proud me no prouds,\r\nBut fettle your fine joints ’gainst Thursday next\r\nTo go with Paris to Saint Peter’s Church,\r\nOr I will drag thee on a hurdle thither.\r\nOut, you green-sickness carrion! Out, you baggage!\r\nYou tallow-face!\r\n\r\nLADY CAPULET.\r\nFie, fie! What, are you mad?\r\n\r\nJULIET.\r\nGood father, I beseech you on my knees,\r\nHear me with patience but to speak a word.\r\n\r\nCAPULET.\r\nHang thee young baggage, disobedient wretch!\r\nI tell thee what,—get thee to church a Thursday,\r\nOr never after look me in the face.\r\nSpeak not, reply not, do not answer me.\r\nMy fingers itch. Wife, we scarce thought us blest\r\nThat God had lent us but this only child;\r\nBut now I see this one is one too much,\r\nAnd that we have a curse in having her.\r\nOut on her, hilding.\r\n\r\nNURSE.\r\nGod in heaven bless her.\r\nYou are to blame, my lord, to rate her so.\r\n\r\nCAPULET.\r\nAnd why, my lady wisdom? Hold your tongue,\r\nGood prudence; smatter with your gossips, go.\r\n\r\nNURSE.\r\nI speak no treason.\r\n\r\nCAPULET.\r\nO God ye good-en!\r\n\r\nNURSE.\r\nMay not one speak?\r\n\r\nCAPULET.\r\nPeace, you mumbling fool!\r\nUtter your gravity o’er a gossip’s bowl,\r\nFor here we need it not.\r\n\r\nLADY CAPULET.\r\nYou are too hot.\r\n\r\nCAPULET.\r\nGod’s bread, it makes me mad!\r\nDay, night, hour, ride, time, work, play,\r\nAlone, in company, still my care hath been\r\nTo have her match’d, and having now provided\r\nA gentleman of noble parentage,\r\nOf fair demesnes, youthful, and nobly allied,\r\nStuff’d, as they say, with honourable parts,\r\nProportion’d as one’s thought would wish a man,\r\nAnd then to have a wretched puling fool,\r\nA whining mammet, in her fortune’s tender,\r\nTo answer, ‘I’ll not wed, I cannot love,\r\nI am too young, I pray you pardon me.’\r\nBut, and you will not wed, I’ll pardon you.\r\nGraze where you will, you shall not house with me.\r\nLook to’t, think on’t, I do not use to jest.\r\nThursday is near; lay hand on heart, advise.\r\nAnd you be mine, I’ll give you to my friend;\r\nAnd you be not, hang, beg, starve, die in the streets,\r\nFor by my soul, I’ll ne’er acknowledge thee,\r\nNor what is mine shall never do thee good.\r\nTrust to’t, bethink you, I’ll not be forsworn.\r\n\r\n [_Exit._]\r\n\r\nJULIET.\r\nIs there no pity sitting in the clouds,\r\nThat sees into the bottom of my grief?\r\nO sweet my mother, cast me not away,\r\nDelay this marriage for a month, a week,\r\nOr, if you do not, make the bridal bed\r\nIn that dim monument where Tybalt lies.\r\n\r\nLADY CAPULET.\r\nTalk not to me, for I’ll not speak a word.\r\nDo as thou wilt, for I have done with thee.\r\n\r\n [_Exit._]\r\n\r\nJULIET.\r\nO God! O Nurse, how shall this be prevented?\r\nMy husband is on earth, my faith in heaven.\r\nHow shall that faith return again to earth,\r\nUnless that husband send it me from heaven\r\nBy leaving earth? Comfort me, counsel me.\r\nAlack, alack, that heaven should practise stratagems\r\nUpon so soft a subject as myself.\r\nWhat say’st thou? Hast thou not a word of joy?\r\nSome comfort, Nurse.\r\n\r\nNURSE.\r\nFaith, here it is.\r\nRomeo is banished; and all the world to nothing\r\nThat he dares ne’er come back to challenge you.\r\nOr if he do, it needs must be by stealth.\r\nThen, since the case so stands as now it doth,\r\nI think it best you married with the County.\r\nO, he’s a lovely gentleman.\r\nRomeo’s a dishclout to him. An eagle, madam,\r\nHath not so green, so quick, so fair an eye\r\nAs Paris hath. Beshrew my very heart,\r\nI think you are happy in this second match,\r\nFor it excels your first: or if it did not,\r\nYour first is dead, or ’twere as good he were,\r\nAs living here and you no use of him.\r\n\r\nJULIET.\r\nSpeakest thou from thy heart?\r\n\r\nNURSE.\r\nAnd from my soul too,\r\nOr else beshrew them both.\r\n\r\nJULIET.\r\nAmen.\r\n\r\nNURSE.\r\nWhat?\r\n\r\nJULIET.\r\nWell, thou hast comforted me marvellous much.\r\nGo in, and tell my lady I am gone,\r\nHaving displeas’d my father, to Lawrence’ cell,\r\nTo make confession and to be absolv’d.\r\n\r\nNURSE.\r\nMarry, I will; and this is wisely done.\r\n\r\n [_Exit._]\r\n\r\nJULIET.\r\nAncient damnation! O most wicked fiend!\r\nIs it more sin to wish me thus forsworn,\r\nOr to dispraise my lord with that same tongue\r\nWhich she hath prais’d him with above compare\r\nSo many thousand times? Go, counsellor.\r\nThou and my bosom henceforth shall be twain.\r\nI’ll to the Friar to know his remedy.\r\nIf all else fail, myself have power to die.\r\n\r\n [_Exit._]\r\n\r\n\r\n\r\nACT IV\r\n\r\nSCENE I. Friar Lawrence’s Cell.\r\n\r\n Enter Friar Lawrence and Paris.\r\n\r\nFRIAR LAWRENCE.\r\nOn Thursday, sir? The time is very short.\r\n\r\nPARIS.\r\nMy father Capulet will have it so;\r\nAnd I am nothing slow to slack his haste.\r\n\r\nFRIAR LAWRENCE.\r\nYou say you do not know the lady’s mind.\r\nUneven is the course; I like it not.\r\n\r\nPARIS.\r\nImmoderately she weeps for Tybalt’s death,\r\nAnd therefore have I little talk’d of love;\r\nFor Venus smiles not in a house of tears.\r\nNow, sir, her father counts it dangerous\r\nThat she do give her sorrow so much sway;\r\nAnd in his wisdom, hastes our marriage,\r\nTo stop the inundation of her tears,\r\nWhich, too much minded by herself alone,\r\nMay be put from her by society.\r\nNow do you know the reason of this haste.\r\n\r\nFRIAR LAWRENCE.\r\n[_Aside._] I would I knew not why it should be slow’d.—\r\nLook, sir, here comes the lady toward my cell.\r\n\r\n Enter Juliet.\r\n\r\nPARIS.\r\nHappily met, my lady and my wife!\r\n\r\nJULIET.\r\nThat may be, sir, when I may be a wife.\r\n\r\nPARIS.\r\nThat may be, must be, love, on Thursday next.\r\n\r\nJULIET.\r\nWhat must be shall be.\r\n\r\nFRIAR LAWRENCE.\r\nThat’s a certain text.\r\n\r\nPARIS.\r\nCome you to make confession to this father?\r\n\r\nJULIET.\r\nTo answer that, I should confess to you.\r\n\r\nPARIS.\r\nDo not deny to him that you love me.\r\n\r\nJULIET.\r\nI will confess to you that I love him.\r\n\r\nPARIS.\r\nSo will ye, I am sure, that you love me.\r\n\r\nJULIET.\r\nIf I do so, it will be of more price,\r\nBeing spoke behind your back than to your face.\r\n\r\nPARIS.\r\nPoor soul, thy face is much abus’d with tears.\r\n\r\nJULIET.\r\nThe tears have got small victory by that;\r\nFor it was bad enough before their spite.\r\n\r\nPARIS.\r\nThou wrong’st it more than tears with that report.\r\n\r\nJULIET.\r\nThat is no slander, sir, which is a truth,\r\nAnd what I spake, I spake it to my face.\r\n\r\nPARIS.\r\nThy face is mine, and thou hast slander’d it.\r\n\r\nJULIET.\r\nIt may be so, for it is not mine own.\r\nAre you at leisure, holy father, now,\r\nOr shall I come to you at evening mass?\r\n\r\nFRIAR LAWRENCE.\r\nMy leisure serves me, pensive daughter, now.—\r\nMy lord, we must entreat the time alone.\r\n\r\nPARIS.\r\nGod shield I should disturb devotion!—\r\nJuliet, on Thursday early will I rouse ye,\r\nTill then, adieu; and keep this holy kiss.\r\n\r\n [_Exit._]\r\n\r\nJULIET.\r\nO shut the door, and when thou hast done so,\r\nCome weep with me, past hope, past cure, past help!\r\n\r\nFRIAR LAWRENCE.\r\nO Juliet, I already know thy grief;\r\nIt strains me past the compass of my wits.\r\nI hear thou must, and nothing may prorogue it,\r\nOn Thursday next be married to this County.\r\n\r\nJULIET.\r\nTell me not, Friar, that thou hear’st of this,\r\nUnless thou tell me how I may prevent it.\r\nIf in thy wisdom, thou canst give no help,\r\nDo thou but call my resolution wise,\r\nAnd with this knife I’ll help it presently.\r\nGod join’d my heart and Romeo’s, thou our hands;\r\nAnd ere this hand, by thee to Romeo’s seal’d,\r\nShall be the label to another deed,\r\nOr my true heart with treacherous revolt\r\nTurn to another, this shall slay them both.\r\nTherefore, out of thy long-experienc’d time,\r\nGive me some present counsel, or behold\r\n’Twixt my extremes and me this bloody knife\r\nShall play the empire, arbitrating that\r\nWhich the commission of thy years and art\r\nCould to no issue of true honour bring.\r\nBe not so long to speak. I long to die,\r\nIf what thou speak’st speak not of remedy.\r\n\r\nFRIAR LAWRENCE.\r\nHold, daughter. I do spy a kind of hope,\r\nWhich craves as desperate an execution\r\nAs that is desperate which we would prevent.\r\nIf, rather than to marry County Paris\r\nThou hast the strength of will to slay thyself,\r\nThen is it likely thou wilt undertake\r\nA thing like death to chide away this shame,\r\nThat cop’st with death himself to scape from it.\r\nAnd if thou dar’st, I’ll give thee remedy.\r\n\r\nJULIET.\r\nO, bid me leap, rather than marry Paris,\r\nFrom off the battlements of yonder tower,\r\nOr walk in thievish ways, or bid me lurk\r\nWhere serpents are. Chain me with roaring bears;\r\nOr hide me nightly in a charnel-house,\r\nO’er-cover’d quite with dead men’s rattling bones,\r\nWith reeky shanks and yellow chapless skulls.\r\nOr bid me go into a new-made grave,\r\nAnd hide me with a dead man in his shroud;\r\nThings that, to hear them told, have made me tremble,\r\nAnd I will do it without fear or doubt,\r\nTo live an unstain’d wife to my sweet love.\r\n\r\nFRIAR LAWRENCE.\r\nHold then. Go home, be merry, give consent\r\nTo marry Paris. Wednesday is tomorrow;\r\nTomorrow night look that thou lie alone,\r\nLet not thy Nurse lie with thee in thy chamber.\r\nTake thou this vial, being then in bed,\r\nAnd this distilled liquor drink thou off,\r\nWhen presently through all thy veins shall run\r\nA cold and drowsy humour; for no pulse\r\nShall keep his native progress, but surcease.\r\nNo warmth, no breath shall testify thou livest,\r\nThe roses in thy lips and cheeks shall fade\r\nTo paly ashes; thy eyes’ windows fall,\r\nLike death when he shuts up the day of life.\r\nEach part depriv’d of supple government,\r\nShall stiff and stark and cold appear like death.\r\nAnd in this borrow’d likeness of shrunk death\r\nThou shalt continue two and forty hours,\r\nAnd then awake as from a pleasant sleep.\r\nNow when the bridegroom in the morning comes\r\nTo rouse thee from thy bed, there art thou dead.\r\nThen as the manner of our country is,\r\nIn thy best robes, uncover’d, on the bier,\r\nThou shalt be borne to that same ancient vault\r\nWhere all the kindred of the Capulets lie.\r\nIn the meantime, against thou shalt awake,\r\nShall Romeo by my letters know our drift,\r\nAnd hither shall he come, and he and I\r\nWill watch thy waking, and that very night\r\nShall Romeo bear thee hence to Mantua.\r\nAnd this shall free thee from this present shame,\r\nIf no inconstant toy nor womanish fear\r\nAbate thy valour in the acting it.\r\n\r\nJULIET.\r\nGive me, give me! O tell not me of fear!\r\n\r\nFRIAR LAWRENCE.\r\nHold; get you gone, be strong and prosperous\r\nIn this resolve. I’ll send a friar with speed\r\nTo Mantua, with my letters to thy lord.\r\n\r\nJULIET.\r\nLove give me strength, and strength shall help afford.\r\nFarewell, dear father.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. Hall in Capulet’s House.\r\n\r\n Enter Capulet, Lady Capulet, Nurse and Servants.\r\n\r\nCAPULET.\r\nSo many guests invite as here are writ.\r\n\r\n [_Exit first Servant._]\r\n\r\nSirrah, go hire me twenty cunning cooks.\r\n\r\nSECOND SERVANT.\r\nYou shall have none ill, sir; for I’ll try if they can lick their\r\nfingers.\r\n\r\nCAPULET.\r\nHow canst thou try them so?\r\n\r\nSECOND SERVANT.\r\nMarry, sir, ’tis an ill cook that cannot lick his own fingers;\r\ntherefore he that cannot lick his fingers goes not with me.\r\n\r\nCAPULET.\r\nGo, begone.\r\n\r\n [_Exit second Servant._]\r\n\r\nWe shall be much unfurnish’d for this time.\r\nWhat, is my daughter gone to Friar Lawrence?\r\n\r\nNURSE.\r\nAy, forsooth.\r\n\r\nCAPULET.\r\nWell, he may chance to do some good on her.\r\nA peevish self-will’d harlotry it is.\r\n\r\n Enter Juliet.\r\n\r\nNURSE.\r\nSee where she comes from shrift with merry look.\r\n\r\nCAPULET.\r\nHow now, my headstrong. Where have you been gadding?\r\n\r\nJULIET.\r\nWhere I have learnt me to repent the sin\r\nOf disobedient opposition\r\nTo you and your behests; and am enjoin’d\r\nBy holy Lawrence to fall prostrate here,\r\nTo beg your pardon. Pardon, I beseech you.\r\nHenceforward I am ever rul’d by you.\r\n\r\nCAPULET.\r\nSend for the County, go tell him of this.\r\nI’ll have this knot knit up tomorrow morning.\r\n\r\nJULIET.\r\nI met the youthful lord at Lawrence’ cell,\r\nAnd gave him what becomed love I might,\r\nNot stepping o’er the bounds of modesty.\r\n\r\nCAPULET.\r\nWhy, I am glad on’t. This is well. Stand up.\r\nThis is as’t should be. Let me see the County.\r\nAy, marry. Go, I say, and fetch him hither.\r\nNow afore God, this reverend holy Friar,\r\nAll our whole city is much bound to him.\r\n\r\nJULIET.\r\nNurse, will you go with me into my closet,\r\nTo help me sort such needful ornaments\r\nAs you think fit to furnish me tomorrow?\r\n\r\nLADY CAPULET.\r\nNo, not till Thursday. There is time enough.\r\n\r\nCAPULET.\r\nGo, Nurse, go with her. We’ll to church tomorrow.\r\n\r\n [_Exeunt Juliet and Nurse._]\r\n\r\nLADY CAPULET.\r\nWe shall be short in our provision,\r\n’Tis now near night.\r\n\r\nCAPULET.\r\nTush, I will stir about,\r\nAnd all things shall be well, I warrant thee, wife.\r\nGo thou to Juliet, help to deck up her.\r\nI’ll not to bed tonight, let me alone.\r\nI’ll play the housewife for this once.—What, ho!—\r\nThey are all forth: well, I will walk myself\r\nTo County Paris, to prepare him up\r\nAgainst tomorrow. My heart is wondrous light\r\nSince this same wayward girl is so reclaim’d.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE III. Juliet’s Chamber.\r\n\r\n Enter Juliet and Nurse.\r\n\r\nJULIET.\r\nAy, those attires are best. But, gentle Nurse,\r\nI pray thee leave me to myself tonight;\r\nFor I have need of many orisons\r\nTo move the heavens to smile upon my state,\r\nWhich, well thou know’st, is cross and full of sin.\r\n\r\n Enter Lady Capulet.\r\n\r\nLADY CAPULET.\r\nWhat, are you busy, ho? Need you my help?\r\n\r\nJULIET.\r\nNo, madam; we have cull’d such necessaries\r\nAs are behoveful for our state tomorrow.\r\nSo please you, let me now be left alone,\r\nAnd let the nurse this night sit up with you,\r\nFor I am sure you have your hands full all\r\nIn this so sudden business.\r\n\r\nLADY CAPULET.\r\nGood night.\r\nGet thee to bed and rest, for thou hast need.\r\n\r\n [_Exeunt Lady Capulet and Nurse._]\r\n\r\nJULIET.\r\nFarewell. God knows when we shall meet again.\r\nI have a faint cold fear thrills through my veins\r\nThat almost freezes up the heat of life.\r\nI’ll call them back again to comfort me.\r\nNurse!—What should she do here?\r\nMy dismal scene I needs must act alone.\r\nCome, vial.\r\nWhat if this mixture do not work at all?\r\nShall I be married then tomorrow morning?\r\nNo, No! This shall forbid it. Lie thou there.\r\n\r\n [_Laying down her dagger._]\r\n\r\nWhat if it be a poison, which the Friar\r\nSubtly hath minister’d to have me dead,\r\nLest in this marriage he should be dishonour’d,\r\nBecause he married me before to Romeo?\r\nI fear it is. And yet methinks it should not,\r\nFor he hath still been tried a holy man.\r\nHow if, when I am laid into the tomb,\r\nI wake before the time that Romeo\r\nCome to redeem me? There’s a fearful point!\r\nShall I not then be stifled in the vault,\r\nTo whose foul mouth no healthsome air breathes in,\r\nAnd there die strangled ere my Romeo comes?\r\nOr, if I live, is it not very like,\r\nThe horrible conceit of death and night,\r\nTogether with the terror of the place,\r\nAs in a vault, an ancient receptacle,\r\nWhere for this many hundred years the bones\r\nOf all my buried ancestors are pack’d,\r\nWhere bloody Tybalt, yet but green in earth,\r\nLies festering in his shroud; where, as they say,\r\nAt some hours in the night spirits resort—\r\nAlack, alack, is it not like that I,\r\nSo early waking, what with loathsome smells,\r\nAnd shrieks like mandrakes torn out of the earth,\r\nThat living mortals, hearing them, run mad.\r\nO, if I wake, shall I not be distraught,\r\nEnvironed with all these hideous fears,\r\nAnd madly play with my forefathers’ joints?\r\nAnd pluck the mangled Tybalt from his shroud?\r\nAnd, in this rage, with some great kinsman’s bone,\r\nAs with a club, dash out my desperate brains?\r\nO look, methinks I see my cousin’s ghost\r\nSeeking out Romeo that did spit his body\r\nUpon a rapier’s point. Stay, Tybalt, stay!\r\nRomeo, Romeo, Romeo, here’s drink! I drink to thee.\r\n\r\n [_Throws herself on the bed._]\r\n\r\nSCENE IV. Hall in Capulet’s House.\r\n\r\n Enter Lady Capulet and Nurse.\r\n\r\nLADY CAPULET.\r\nHold, take these keys and fetch more spices, Nurse.\r\n\r\nNURSE.\r\nThey call for dates and quinces in the pastry.\r\n\r\n Enter Capulet.\r\n\r\nCAPULET.\r\nCome, stir, stir, stir! The second cock hath crow’d,\r\nThe curfew bell hath rung, ’tis three o’clock.\r\nLook to the bak’d meats, good Angelica;\r\nSpare not for cost.\r\n\r\nNURSE.\r\nGo, you cot-quean, go,\r\nGet you to bed; faith, you’ll be sick tomorrow\r\nFor this night’s watching.\r\n\r\nCAPULET.\r\nNo, not a whit. What! I have watch’d ere now\r\nAll night for lesser cause, and ne’er been sick.\r\n\r\nLADY CAPULET.\r\nAy, you have been a mouse-hunt in your time;\r\nBut I will watch you from such watching now.\r\n\r\n [_Exeunt Lady Capulet and Nurse._]\r\n\r\nCAPULET.\r\nA jealous-hood, a jealous-hood!\r\n\r\n Enter Servants, with spits, logs and baskets.\r\n\r\nNow, fellow, what’s there?\r\n\r\nFIRST SERVANT.\r\nThings for the cook, sir; but I know not what.\r\n\r\nCAPULET.\r\nMake haste, make haste.\r\n\r\n [_Exit First Servant._]\r\n\r\n—Sirrah, fetch drier logs.\r\nCall Peter, he will show thee where they are.\r\n\r\nSECOND SERVANT.\r\nI have a head, sir, that will find out logs\r\nAnd never trouble Peter for the matter.\r\n\r\n [_Exit._]\r\n\r\nCAPULET.\r\nMass and well said; a merry whoreson, ha.\r\nThou shalt be loggerhead.—Good faith, ’tis day.\r\nThe County will be here with music straight,\r\nFor so he said he would. I hear him near.\r\n\r\n [_Play music._]\r\n\r\nNurse! Wife! What, ho! What, Nurse, I say!\r\n\r\n Re-enter Nurse.\r\n\r\nGo waken Juliet, go and trim her up.\r\nI’ll go and chat with Paris. Hie, make haste,\r\nMake haste; the bridegroom he is come already.\r\nMake haste I say.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE V. Juliet’s Chamber; Juliet on the bed.\r\n\r\n Enter Nurse.\r\n\r\nNURSE.\r\nMistress! What, mistress! Juliet! Fast, I warrant her, she.\r\nWhy, lamb, why, lady, fie, you slug-abed!\r\nWhy, love, I say! Madam! Sweetheart! Why, bride!\r\nWhat, not a word? You take your pennyworths now.\r\nSleep for a week; for the next night, I warrant,\r\nThe County Paris hath set up his rest\r\nThat you shall rest but little. God forgive me!\r\nMarry and amen. How sound is she asleep!\r\nI needs must wake her. Madam, madam, madam!\r\nAy, let the County take you in your bed,\r\nHe’ll fright you up, i’faith. Will it not be?\r\nWhat, dress’d, and in your clothes, and down again?\r\nI must needs wake you. Lady! Lady! Lady!\r\nAlas, alas! Help, help! My lady’s dead!\r\nO, well-a-day that ever I was born.\r\nSome aqua vitae, ho! My lord! My lady!\r\n\r\n Enter Lady Capulet.\r\n\r\nLADY CAPULET.\r\nWhat noise is here?\r\n\r\nNURSE.\r\nO lamentable day!\r\n\r\nLADY CAPULET.\r\nWhat is the matter?\r\n\r\nNURSE.\r\nLook, look! O heavy day!\r\n\r\nLADY CAPULET.\r\nO me, O me! My child, my only life.\r\nRevive, look up, or I will die with thee.\r\nHelp, help! Call help.\r\n\r\n Enter Capulet.\r\n\r\nCAPULET.\r\nFor shame, bring Juliet forth, her lord is come.\r\n\r\nNURSE.\r\nShe’s dead, deceas’d, she’s dead; alack the day!\r\n\r\nLADY CAPULET.\r\nAlack the day, she’s dead, she’s dead, she’s dead!\r\n\r\nCAPULET.\r\nHa! Let me see her. Out alas! She’s cold,\r\nHer blood is settled and her joints are stiff.\r\nLife and these lips have long been separated.\r\nDeath lies on her like an untimely frost\r\nUpon the sweetest flower of all the field.\r\n\r\nNURSE.\r\nO lamentable day!\r\n\r\nLADY CAPULET.\r\nO woful time!\r\n\r\nCAPULET.\r\nDeath, that hath ta’en her hence to make me wail,\r\nTies up my tongue and will not let me speak.\r\n\r\n Enter Friar Lawrence and Paris with Musicians.\r\n\r\nFRIAR LAWRENCE.\r\nCome, is the bride ready to go to church?\r\n\r\nCAPULET.\r\nReady to go, but never to return.\r\nO son, the night before thy wedding day\r\nHath death lain with thy bride. There she lies,\r\nFlower as she was, deflowered by him.\r\nDeath is my son-in-law, death is my heir;\r\nMy daughter he hath wedded. I will die.\r\nAnd leave him all; life, living, all is death’s.\r\n\r\nPARIS.\r\nHave I thought long to see this morning’s face,\r\nAnd doth it give me such a sight as this?\r\n\r\nLADY CAPULET.\r\nAccurs’d, unhappy, wretched, hateful day.\r\nMost miserable hour that e’er time saw\r\nIn lasting labour of his pilgrimage.\r\nBut one, poor one, one poor and loving child,\r\nBut one thing to rejoice and solace in,\r\nAnd cruel death hath catch’d it from my sight.\r\n\r\nNURSE.\r\nO woe! O woeful, woeful, woeful day.\r\nMost lamentable day, most woeful day\r\nThat ever, ever, I did yet behold!\r\nO day, O day, O day, O hateful day.\r\nNever was seen so black a day as this.\r\nO woeful day, O woeful day.\r\n\r\nPARIS.\r\nBeguil’d, divorced, wronged, spited, slain.\r\nMost detestable death, by thee beguil’d,\r\nBy cruel, cruel thee quite overthrown.\r\nO love! O life! Not life, but love in death!\r\n\r\nCAPULET.\r\nDespis’d, distressed, hated, martyr’d, kill’d.\r\nUncomfortable time, why cam’st thou now\r\nTo murder, murder our solemnity?\r\nO child! O child! My soul, and not my child,\r\nDead art thou. Alack, my child is dead,\r\nAnd with my child my joys are buried.\r\n\r\nFRIAR LAWRENCE.\r\nPeace, ho, for shame. Confusion’s cure lives not\r\nIn these confusions. Heaven and yourself\r\nHad part in this fair maid, now heaven hath all,\r\nAnd all the better is it for the maid.\r\nYour part in her you could not keep from death,\r\nBut heaven keeps his part in eternal life.\r\nThe most you sought was her promotion,\r\nFor ’twas your heaven she should be advanc’d,\r\nAnd weep ye now, seeing she is advanc’d\r\nAbove the clouds, as high as heaven itself?\r\nO, in this love, you love your child so ill\r\nThat you run mad, seeing that she is well.\r\nShe’s not well married that lives married long,\r\nBut she’s best married that dies married young.\r\nDry up your tears, and stick your rosemary\r\nOn this fair corse, and, as the custom is,\r\nAnd in her best array bear her to church;\r\nFor though fond nature bids us all lament,\r\nYet nature’s tears are reason’s merriment.\r\n\r\nCAPULET.\r\nAll things that we ordained festival\r\nTurn from their office to black funeral:\r\nOur instruments to melancholy bells,\r\nOur wedding cheer to a sad burial feast;\r\nOur solemn hymns to sullen dirges change;\r\nOur bridal flowers serve for a buried corse,\r\nAnd all things change them to the contrary.\r\n\r\nFRIAR LAWRENCE.\r\nSir, go you in, and, madam, go with him,\r\nAnd go, Sir Paris, everyone prepare\r\nTo follow this fair corse unto her grave.\r\nThe heavens do lower upon you for some ill;\r\nMove them no more by crossing their high will.\r\n\r\n [_Exeunt Capulet, Lady Capulet, Paris and Friar._]\r\n\r\nFIRST MUSICIAN.\r\nFaith, we may put up our pipes and be gone.\r\n\r\nNURSE.\r\nHonest good fellows, ah, put up, put up,\r\nFor well you know this is a pitiful case.\r\n\r\nFIRST MUSICIAN.\r\nAy, by my troth, the case may be amended.\r\n\r\n [_Exit Nurse._]\r\n\r\n Enter Peter.\r\n\r\nPETER.\r\nMusicians, O, musicians, ‘Heart’s ease,’ ‘Heart’s ease’, O, and you\r\nwill have me live, play ‘Heart’s ease.’\r\n\r\nFIRST MUSICIAN.\r\nWhy ‘Heart’s ease’?\r\n\r\nPETER.\r\nO musicians, because my heart itself plays ‘My heart is full’. O play\r\nme some merry dump to comfort me.\r\n\r\nFIRST MUSICIAN.\r\nNot a dump we, ’tis no time to play now.\r\n\r\nPETER.\r\nYou will not then?\r\n\r\nFIRST MUSICIAN.\r\nNo.\r\n\r\nPETER.\r\nI will then give it you soundly.\r\n\r\nFIRST MUSICIAN.\r\nWhat will you give us?\r\n\r\nPETER.\r\nNo money, on my faith, but the gleek! I will give you the minstrel.\r\n\r\nFIRST MUSICIAN.\r\nThen will I give you the serving-creature.\r\n\r\nPETER.\r\nThen will I lay the serving-creature’s dagger on your pate. I will\r\ncarry no crotchets. I’ll re you, I’ll fa you. Do you note me?\r\n\r\nFIRST MUSICIAN.\r\nAnd you re us and fa us, you note us.\r\n\r\nSECOND MUSICIAN.\r\nPray you put up your dagger, and put out your wit.\r\n\r\nPETER.\r\nThen have at you with my wit. I will dry-beat you with an iron wit, and\r\nput up my iron dagger. Answer me like men.\r\n ‘When griping griefs the heart doth wound,\r\n And doleful dumps the mind oppress,\r\n Then music with her silver sound’—\r\nWhy ‘silver sound’? Why ‘music with her silver sound’? What say you,\r\nSimon Catling?\r\n\r\nFIRST MUSICIAN.\r\nMarry, sir, because silver hath a sweet sound.\r\n\r\nPETER.\r\nPrates. What say you, Hugh Rebeck?\r\n\r\nSECOND MUSICIAN.\r\nI say ‘silver sound’ because musicians sound for silver.\r\n\r\nPETER.\r\nPrates too! What say you, James Soundpost?\r\n\r\nTHIRD MUSICIAN.\r\nFaith, I know not what to say.\r\n\r\nPETER.\r\nO, I cry you mercy, you are the singer. I will say for you. It is\r\n‘music with her silver sound’ because musicians have no gold for\r\nsounding.\r\n ‘Then music with her silver sound\r\n With speedy help doth lend redress.’\r\n\r\n [_Exit._]\r\n\r\nFIRST MUSICIAN.\r\nWhat a pestilent knave is this same!\r\n\r\nSECOND MUSICIAN.\r\nHang him, Jack. Come, we’ll in here, tarry for the mourners, and stay\r\ndinner.\r\n\r\n [_Exeunt._]\r\n\r\n\r\n\r\nACT V\r\n\r\nSCENE I. Mantua. A Street.\r\n\r\n Enter Romeo.\r\n\r\nROMEO.\r\nIf I may trust the flattering eye of sleep,\r\nMy dreams presage some joyful news at hand.\r\nMy bosom’s lord sits lightly in his throne;\r\nAnd all this day an unaccustom’d spirit\r\nLifts me above the ground with cheerful thoughts.\r\nI dreamt my lady came and found me dead,—\r\nStrange dream, that gives a dead man leave to think!—\r\nAnd breath’d such life with kisses in my lips,\r\nThat I reviv’d, and was an emperor.\r\nAh me, how sweet is love itself possess’d,\r\nWhen but love’s shadows are so rich in joy.\r\n\r\n Enter Balthasar.\r\n\r\nNews from Verona! How now, Balthasar?\r\nDost thou not bring me letters from the Friar?\r\nHow doth my lady? Is my father well?\r\nHow fares my Juliet? That I ask again;\r\nFor nothing can be ill if she be well.\r\n\r\nBALTHASAR.\r\nThen she is well, and nothing can be ill.\r\nHer body sleeps in Capel’s monument,\r\nAnd her immortal part with angels lives.\r\nI saw her laid low in her kindred’s vault,\r\nAnd presently took post to tell it you.\r\nO pardon me for bringing these ill news,\r\nSince you did leave it for my office, sir.\r\n\r\nROMEO.\r\nIs it even so? Then I defy you, stars!\r\nThou know’st my lodging. Get me ink and paper,\r\nAnd hire post-horses. I will hence tonight.\r\n\r\nBALTHASAR.\r\nI do beseech you sir, have patience.\r\nYour looks are pale and wild, and do import\r\nSome misadventure.\r\n\r\nROMEO.\r\nTush, thou art deceiv’d.\r\nLeave me, and do the thing I bid thee do.\r\nHast thou no letters to me from the Friar?\r\n\r\nBALTHASAR.\r\nNo, my good lord.\r\n\r\nROMEO.\r\nNo matter. Get thee gone,\r\nAnd hire those horses. I’ll be with thee straight.\r\n\r\n [_Exit Balthasar._]\r\n\r\nWell, Juliet, I will lie with thee tonight.\r\nLet’s see for means. O mischief thou art swift\r\nTo enter in the thoughts of desperate men.\r\nI do remember an apothecary,—\r\nAnd hereabouts he dwells,—which late I noted\r\nIn tatter’d weeds, with overwhelming brows,\r\nCulling of simples, meagre were his looks,\r\nSharp misery had worn him to the bones;\r\nAnd in his needy shop a tortoise hung,\r\nAn alligator stuff’d, and other skins\r\nOf ill-shaped fishes; and about his shelves\r\nA beggarly account of empty boxes,\r\nGreen earthen pots, bladders, and musty seeds,\r\nRemnants of packthread, and old cakes of roses\r\nWere thinly scatter’d, to make up a show.\r\nNoting this penury, to myself I said,\r\nAnd if a man did need a poison now,\r\nWhose sale is present death in Mantua,\r\nHere lives a caitiff wretch would sell it him.\r\nO, this same thought did but forerun my need,\r\nAnd this same needy man must sell it me.\r\nAs I remember, this should be the house.\r\nBeing holiday, the beggar’s shop is shut.\r\nWhat, ho! Apothecary!\r\n\r\n Enter Apothecary.\r\n\r\nAPOTHECARY.\r\nWho calls so loud?\r\n\r\nROMEO.\r\nCome hither, man. I see that thou art poor.\r\nHold, there is forty ducats. Let me have\r\nA dram of poison, such soon-speeding gear\r\nAs will disperse itself through all the veins,\r\nThat the life-weary taker may fall dead,\r\nAnd that the trunk may be discharg’d of breath\r\nAs violently as hasty powder fir’d\r\nDoth hurry from the fatal cannon’s womb.\r\n\r\nAPOTHECARY.\r\nSuch mortal drugs I have, but Mantua’s law\r\nIs death to any he that utters them.\r\n\r\nROMEO.\r\nArt thou so bare and full of wretchedness,\r\nAnd fear’st to die? Famine is in thy cheeks,\r\nNeed and oppression starveth in thine eyes,\r\nContempt and beggary hangs upon thy back.\r\nThe world is not thy friend, nor the world’s law;\r\nThe world affords no law to make thee rich;\r\nThen be not poor, but break it and take this.\r\n\r\nAPOTHECARY.\r\nMy poverty, but not my will consents.\r\n\r\nROMEO.\r\nI pay thy poverty, and not thy will.\r\n\r\nAPOTHECARY.\r\nPut this in any liquid thing you will\r\nAnd drink it off; and, if you had the strength\r\nOf twenty men, it would despatch you straight.\r\n\r\nROMEO.\r\nThere is thy gold, worse poison to men’s souls,\r\nDoing more murder in this loathsome world\r\nThan these poor compounds that thou mayst not sell.\r\nI sell thee poison, thou hast sold me none.\r\nFarewell, buy food, and get thyself in flesh.\r\nCome, cordial and not poison, go with me\r\nTo Juliet’s grave, for there must I use thee.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. Friar Lawrence’s Cell.\r\n\r\n Enter Friar John.\r\n\r\nFRIAR JOHN.\r\nHoly Franciscan Friar! Brother, ho!\r\n\r\n Enter Friar Lawrence.\r\n\r\nFRIAR LAWRENCE.\r\nThis same should be the voice of Friar John.\r\nWelcome from Mantua. What says Romeo?\r\nOr, if his mind be writ, give me his letter.\r\n\r\nFRIAR JOHN.\r\nGoing to find a barefoot brother out,\r\nOne of our order, to associate me,\r\nHere in this city visiting the sick,\r\nAnd finding him, the searchers of the town,\r\nSuspecting that we both were in a house\r\nWhere the infectious pestilence did reign,\r\nSeal’d up the doors, and would not let us forth,\r\nSo that my speed to Mantua there was stay’d.\r\n\r\nFRIAR LAWRENCE.\r\nWho bare my letter then to Romeo?\r\n\r\nFRIAR JOHN.\r\nI could not send it,—here it is again,—\r\nNor get a messenger to bring it thee,\r\nSo fearful were they of infection.\r\n\r\nFRIAR LAWRENCE.\r\nUnhappy fortune! By my brotherhood,\r\nThe letter was not nice, but full of charge,\r\nOf dear import, and the neglecting it\r\nMay do much danger. Friar John, go hence,\r\nGet me an iron crow and bring it straight\r\nUnto my cell.\r\n\r\nFRIAR JOHN.\r\nBrother, I’ll go and bring it thee.\r\n\r\n [_Exit._]\r\n\r\nFRIAR LAWRENCE.\r\nNow must I to the monument alone.\r\nWithin this three hours will fair Juliet wake.\r\nShe will beshrew me much that Romeo\r\nHath had no notice of these accidents;\r\nBut I will write again to Mantua,\r\nAnd keep her at my cell till Romeo come.\r\nPoor living corse, clos’d in a dead man’s tomb.\r\n\r\n [_Exit._]\r\n\r\nSCENE III. A churchyard; in it a Monument belonging to the Capulets.\r\n\r\n Enter Paris, and his Page bearing flowers and a torch.\r\n\r\nPARIS.\r\nGive me thy torch, boy. Hence and stand aloof.\r\nYet put it out, for I would not be seen.\r\nUnder yond yew tree lay thee all along,\r\nHolding thy ear close to the hollow ground;\r\nSo shall no foot upon the churchyard tread,\r\nBeing loose, unfirm, with digging up of graves,\r\nBut thou shalt hear it. Whistle then to me,\r\nAs signal that thou hear’st something approach.\r\nGive me those flowers. Do as I bid thee, go.\r\n\r\nPAGE.\r\n[_Aside._] I am almost afraid to stand alone\r\nHere in the churchyard; yet I will adventure.\r\n\r\n [_Retires._]\r\n\r\nPARIS.\r\nSweet flower, with flowers thy bridal bed I strew.\r\nO woe, thy canopy is dust and stones,\r\nWhich with sweet water nightly I will dew,\r\nOr wanting that, with tears distill’d by moans.\r\nThe obsequies that I for thee will keep,\r\nNightly shall be to strew thy grave and weep.\r\n\r\n [_The Page whistles._]\r\n\r\nThe boy gives warning something doth approach.\r\nWhat cursed foot wanders this way tonight,\r\nTo cross my obsequies and true love’s rite?\r\nWhat, with a torch! Muffle me, night, awhile.\r\n\r\n [_Retires._]\r\n\r\n Enter Romeo and Balthasar with a torch, mattock, &c.\r\n\r\nROMEO.\r\nGive me that mattock and the wrenching iron.\r\nHold, take this letter; early in the morning\r\nSee thou deliver it to my lord and father.\r\nGive me the light; upon thy life I charge thee,\r\nWhate’er thou hear’st or seest, stand all aloof\r\nAnd do not interrupt me in my course.\r\nWhy I descend into this bed of death\r\nIs partly to behold my lady’s face,\r\nBut chiefly to take thence from her dead finger\r\nA precious ring, a ring that I must use\r\nIn dear employment. Therefore hence, be gone.\r\nBut if thou jealous dost return to pry\r\nIn what I further shall intend to do,\r\nBy heaven I will tear thee joint by joint,\r\nAnd strew this hungry churchyard with thy limbs.\r\nThe time and my intents are savage-wild;\r\nMore fierce and more inexorable far\r\nThan empty tigers or the roaring sea.\r\n\r\nBALTHASAR.\r\nI will be gone, sir, and not trouble you.\r\n\r\nROMEO.\r\nSo shalt thou show me friendship. Take thou that.\r\nLive, and be prosperous, and farewell, good fellow.\r\n\r\nBALTHASAR.\r\nFor all this same, I’ll hide me hereabout.\r\nHis looks I fear, and his intents I doubt.\r\n\r\n [_Retires_]\r\n\r\nROMEO.\r\nThou detestable maw, thou womb of death,\r\nGorg’d with the dearest morsel of the earth,\r\nThus I enforce thy rotten jaws to open,\r\n\r\n [_Breaking open the door of the monument._]\r\n\r\nAnd in despite, I’ll cram thee with more food.\r\n\r\nPARIS.\r\nThis is that banish’d haughty Montague\r\nThat murder’d my love’s cousin,—with which grief,\r\nIt is supposed, the fair creature died,—\r\nAnd here is come to do some villanous shame\r\nTo the dead bodies. I will apprehend him.\r\n\r\n [_Advances._]\r\n\r\nStop thy unhallow’d toil, vile Montague.\r\nCan vengeance be pursu’d further than death?\r\nCondemned villain, I do apprehend thee.\r\nObey, and go with me, for thou must die.\r\n\r\nROMEO.\r\nI must indeed; and therefore came I hither.\r\nGood gentle youth, tempt not a desperate man.\r\nFly hence and leave me. Think upon these gone;\r\nLet them affright thee. I beseech thee, youth,\r\nPut not another sin upon my head\r\nBy urging me to fury. O be gone.\r\nBy heaven I love thee better than myself;\r\nFor I come hither arm’d against myself.\r\nStay not, be gone, live, and hereafter say,\r\nA madman’s mercy bid thee run away.\r\n\r\nPARIS.\r\nI do defy thy conjuration,\r\nAnd apprehend thee for a felon here.\r\n\r\nROMEO.\r\nWilt thou provoke me? Then have at thee, boy!\r\n\r\n [_They fight._]\r\n\r\nPAGE.\r\nO lord, they fight! I will go call the watch.\r\n\r\n [_Exit._]\r\n\r\nPARIS.\r\nO, I am slain! [_Falls._] If thou be merciful,\r\nOpen the tomb, lay me with Juliet.\r\n\r\n [_Dies._]\r\n\r\nROMEO.\r\nIn faith, I will. Let me peruse this face.\r\nMercutio’s kinsman, noble County Paris!\r\nWhat said my man, when my betossed soul\r\nDid not attend him as we rode? I think\r\nHe told me Paris should have married Juliet.\r\nSaid he not so? Or did I dream it so?\r\nOr am I mad, hearing him talk of Juliet,\r\nTo think it was so? O, give me thy hand,\r\nOne writ with me in sour misfortune’s book.\r\nI’ll bury thee in a triumphant grave.\r\nA grave? O no, a lantern, slaught’red youth,\r\nFor here lies Juliet, and her beauty makes\r\nThis vault a feasting presence full of light.\r\nDeath, lie thou there, by a dead man interr’d.\r\n\r\n [_Laying Paris in the monument._]\r\n\r\nHow oft when men are at the point of death\r\nHave they been merry! Which their keepers call\r\nA lightning before death. O, how may I\r\nCall this a lightning? O my love, my wife,\r\nDeath that hath suck’d the honey of thy breath,\r\nHath had no power yet upon thy beauty.\r\nThou art not conquer’d. Beauty’s ensign yet\r\nIs crimson in thy lips and in thy cheeks,\r\nAnd death’s pale flag is not advanced there.\r\nTybalt, liest thou there in thy bloody sheet?\r\nO, what more favour can I do to thee\r\nThan with that hand that cut thy youth in twain\r\nTo sunder his that was thine enemy?\r\nForgive me, cousin. Ah, dear Juliet,\r\nWhy art thou yet so fair? Shall I believe\r\nThat unsubstantial death is amorous;\r\nAnd that the lean abhorred monster keeps\r\nThee here in dark to be his paramour?\r\nFor fear of that I still will stay with thee,\r\nAnd never from this palace of dim night\r\nDepart again. Here, here will I remain\r\nWith worms that are thy chambermaids. O, here\r\nWill I set up my everlasting rest;\r\nAnd shake the yoke of inauspicious stars\r\nFrom this world-wearied flesh. Eyes, look your last.\r\nArms, take your last embrace! And, lips, O you\r\nThe doors of breath, seal with a righteous kiss\r\nA dateless bargain to engrossing death.\r\nCome, bitter conduct, come, unsavoury guide.\r\nThou desperate pilot, now at once run on\r\nThe dashing rocks thy sea-sick weary bark.\r\nHere’s to my love! [_Drinks._] O true apothecary!\r\nThy drugs are quick. Thus with a kiss I die.\r\n\r\n [_Dies._]\r\n\r\n Enter, at the other end of the Churchyard, Friar Lawrence, with a\r\n lantern, crow, and spade.\r\n\r\nFRIAR LAWRENCE.\r\nSaint Francis be my speed. How oft tonight\r\nHave my old feet stumbled at graves? Who’s there?\r\nWho is it that consorts, so late, the dead?\r\n\r\nBALTHASAR.\r\nHere’s one, a friend, and one that knows you well.\r\n\r\nFRIAR LAWRENCE.\r\nBliss be upon you. Tell me, good my friend,\r\nWhat torch is yond that vainly lends his light\r\nTo grubs and eyeless skulls? As I discern,\r\nIt burneth in the Capels’ monument.\r\n\r\nBALTHASAR.\r\nIt doth so, holy sir, and there’s my master,\r\nOne that you love.\r\n\r\nFRIAR LAWRENCE.\r\nWho is it?\r\n\r\nBALTHASAR.\r\nRomeo.\r\n\r\nFRIAR LAWRENCE.\r\nHow long hath he been there?\r\n\r\nBALTHASAR.\r\nFull half an hour.\r\n\r\nFRIAR LAWRENCE.\r\nGo with me to the vault.\r\n\r\nBALTHASAR.\r\nI dare not, sir;\r\nMy master knows not but I am gone hence,\r\nAnd fearfully did menace me with death\r\nIf I did stay to look on his intents.\r\n\r\nFRIAR LAWRENCE.\r\nStay then, I’ll go alone. Fear comes upon me.\r\nO, much I fear some ill unlucky thing.\r\n\r\nBALTHASAR.\r\nAs I did sleep under this yew tree here,\r\nI dreamt my master and another fought,\r\nAnd that my master slew him.\r\n\r\nFRIAR LAWRENCE.\r\nRomeo! [_Advances._]\r\nAlack, alack, what blood is this which stains\r\nThe stony entrance of this sepulchre?\r\nWhat mean these masterless and gory swords\r\nTo lie discolour’d by this place of peace?\r\n\r\n [_Enters the monument._]\r\n\r\nRomeo! O, pale! Who else? What, Paris too?\r\nAnd steep’d in blood? Ah what an unkind hour\r\nIs guilty of this lamentable chance?\r\nThe lady stirs.\r\n\r\n [_Juliet wakes and stirs._]\r\n\r\nJULIET.\r\nO comfortable Friar, where is my lord?\r\nI do remember well where I should be,\r\nAnd there I am. Where is my Romeo?\r\n\r\n [_Noise within._]\r\n\r\nFRIAR LAWRENCE.\r\nI hear some noise. Lady, come from that nest\r\nOf death, contagion, and unnatural sleep.\r\nA greater power than we can contradict\r\nHath thwarted our intents. Come, come away.\r\nThy husband in thy bosom there lies dead;\r\nAnd Paris too. Come, I’ll dispose of thee\r\nAmong a sisterhood of holy nuns.\r\nStay not to question, for the watch is coming.\r\nCome, go, good Juliet. I dare no longer stay.\r\n\r\nJULIET.\r\nGo, get thee hence, for I will not away.\r\n\r\n [_Exit Friar Lawrence._]\r\n\r\nWhat’s here? A cup clos’d in my true love’s hand?\r\nPoison, I see, hath been his timeless end.\r\nO churl. Drink all, and left no friendly drop\r\nTo help me after? I will kiss thy lips.\r\nHaply some poison yet doth hang on them,\r\nTo make me die with a restorative.\r\n\r\n [_Kisses him._]\r\n\r\nThy lips are warm!\r\n\r\nFIRST WATCH.\r\n[_Within._] Lead, boy. Which way?\r\n\r\nJULIET.\r\nYea, noise? Then I’ll be brief. O happy dagger.\r\n\r\n [_Snatching Romeo’s dagger._]\r\n\r\nThis is thy sheath. [_stabs herself_] There rest, and let me die.\r\n\r\n [_Falls on Romeo’s body and dies._]\r\n\r\n Enter Watch with the Page of Paris.\r\n\r\nPAGE.\r\nThis is the place. There, where the torch doth burn.\r\n\r\nFIRST WATCH.\r\nThe ground is bloody. Search about the churchyard.\r\nGo, some of you, whoe’er you find attach.\r\n\r\n [_Exeunt some of the Watch._]\r\n\r\nPitiful sight! Here lies the County slain,\r\nAnd Juliet bleeding, warm, and newly dead,\r\nWho here hath lain this two days buried.\r\nGo tell the Prince; run to the Capulets.\r\nRaise up the Montagues, some others search.\r\n\r\n [_Exeunt others of the Watch._]\r\n\r\nWe see the ground whereon these woes do lie,\r\nBut the true ground of all these piteous woes\r\nWe cannot without circumstance descry.\r\n\r\n Re-enter some of the Watch with Balthasar.\r\n\r\nSECOND WATCH.\r\nHere’s Romeo’s man. We found him in the churchyard.\r\n\r\nFIRST WATCH.\r\nHold him in safety till the Prince come hither.\r\n\r\n Re-enter others of the Watch with Friar Lawrence.\r\n\r\nTHIRD WATCH. Here is a Friar that trembles, sighs, and weeps.\r\nWe took this mattock and this spade from him\r\nAs he was coming from this churchyard side.\r\n\r\nFIRST WATCH.\r\nA great suspicion. Stay the Friar too.\r\n\r\n Enter the Prince and Attendants.\r\n\r\nPRINCE.\r\nWhat misadventure is so early up,\r\nThat calls our person from our morning’s rest?\r\n\r\n Enter Capulet, Lady Capulet and others.\r\n\r\nCAPULET.\r\nWhat should it be that they so shriek abroad?\r\n\r\nLADY CAPULET.\r\nO the people in the street cry Romeo,\r\nSome Juliet, and some Paris, and all run\r\nWith open outcry toward our monument.\r\n\r\nPRINCE.\r\nWhat fear is this which startles in our ears?\r\n\r\nFIRST WATCH.\r\nSovereign, here lies the County Paris slain,\r\nAnd Romeo dead, and Juliet, dead before,\r\nWarm and new kill’d.\r\n\r\nPRINCE.\r\nSearch, seek, and know how this foul murder comes.\r\n\r\nFIRST WATCH.\r\nHere is a Friar, and slaughter’d Romeo’s man,\r\nWith instruments upon them fit to open\r\nThese dead men’s tombs.\r\n\r\nCAPULET.\r\nO heaven! O wife, look how our daughter bleeds!\r\nThis dagger hath mista’en, for lo, his house\r\nIs empty on the back of Montague,\r\nAnd it mis-sheathed in my daughter’s bosom.\r\n\r\nLADY CAPULET.\r\nO me! This sight of death is as a bell\r\nThat warns my old age to a sepulchre.\r\n\r\n Enter Montague and others.\r\n\r\nPRINCE.\r\nCome, Montague, for thou art early up,\r\nTo see thy son and heir more early down.\r\n\r\nMONTAGUE.\r\nAlas, my liege, my wife is dead tonight.\r\nGrief of my son’s exile hath stopp’d her breath.\r\nWhat further woe conspires against mine age?\r\n\r\nPRINCE.\r\nLook, and thou shalt see.\r\n\r\nMONTAGUE.\r\nO thou untaught! What manners is in this,\r\nTo press before thy father to a grave?\r\n\r\nPRINCE.\r\nSeal up the mouth of outrage for a while,\r\nTill we can clear these ambiguities,\r\nAnd know their spring, their head, their true descent,\r\nAnd then will I be general of your woes,\r\nAnd lead you even to death. Meantime forbear,\r\nAnd let mischance be slave to patience.\r\nBring forth the parties of suspicion.\r\n\r\nFRIAR LAWRENCE.\r\nI am the greatest, able to do least,\r\nYet most suspected, as the time and place\r\nDoth make against me, of this direful murder.\r\nAnd here I stand, both to impeach and purge\r\nMyself condemned and myself excus’d.\r\n\r\nPRINCE.\r\nThen say at once what thou dost know in this.\r\n\r\nFRIAR LAWRENCE.\r\nI will be brief, for my short date of breath\r\nIs not so long as is a tedious tale.\r\nRomeo, there dead, was husband to that Juliet,\r\nAnd she, there dead, that Romeo’s faithful wife.\r\nI married them; and their stol’n marriage day\r\nWas Tybalt’s doomsday, whose untimely death\r\nBanish’d the new-made bridegroom from this city;\r\nFor whom, and not for Tybalt, Juliet pin’d.\r\nYou, to remove that siege of grief from her,\r\nBetroth’d, and would have married her perforce\r\nTo County Paris. Then comes she to me,\r\nAnd with wild looks, bid me devise some means\r\nTo rid her from this second marriage,\r\nOr in my cell there would she kill herself.\r\nThen gave I her, so tutored by my art,\r\nA sleeping potion, which so took effect\r\nAs I intended, for it wrought on her\r\nThe form of death. Meantime I writ to Romeo\r\nThat he should hither come as this dire night\r\nTo help to take her from her borrow’d grave,\r\nBeing the time the potion’s force should cease.\r\nBut he which bore my letter, Friar John,\r\nWas stay’d by accident; and yesternight\r\nReturn’d my letter back. Then all alone\r\nAt the prefixed hour of her waking\r\nCame I to take her from her kindred’s vault,\r\nMeaning to keep her closely at my cell\r\nTill I conveniently could send to Romeo.\r\nBut when I came, some minute ere the time\r\nOf her awaking, here untimely lay\r\nThe noble Paris and true Romeo dead.\r\nShe wakes; and I entreated her come forth\r\nAnd bear this work of heaven with patience.\r\nBut then a noise did scare me from the tomb;\r\nAnd she, too desperate, would not go with me,\r\nBut, as it seems, did violence on herself.\r\nAll this I know; and to the marriage\r\nHer Nurse is privy. And if ought in this\r\nMiscarried by my fault, let my old life\r\nBe sacrific’d, some hour before his time,\r\nUnto the rigour of severest law.\r\n\r\nPRINCE.\r\nWe still have known thee for a holy man.\r\nWhere’s Romeo’s man? What can he say to this?\r\n\r\nBALTHASAR.\r\nI brought my master news of Juliet’s death,\r\nAnd then in post he came from Mantua\r\nTo this same place, to this same monument.\r\nThis letter he early bid me give his father,\r\nAnd threaten’d me with death, going in the vault,\r\nIf I departed not, and left him there.\r\n\r\nPRINCE.\r\nGive me the letter, I will look on it.\r\nWhere is the County’s Page that rais’d the watch?\r\nSirrah, what made your master in this place?\r\n\r\nPAGE.\r\nHe came with flowers to strew his lady’s grave,\r\nAnd bid me stand aloof, and so I did.\r\nAnon comes one with light to ope the tomb,\r\nAnd by and by my master drew on him,\r\nAnd then I ran away to call the watch.\r\n\r\nPRINCE.\r\nThis letter doth make good the Friar’s words,\r\nTheir course of love, the tidings of her death.\r\nAnd here he writes that he did buy a poison\r\nOf a poor ’pothecary, and therewithal\r\nCame to this vault to die, and lie with Juliet.\r\nWhere be these enemies? Capulet, Montague,\r\nSee what a scourge is laid upon your hate,\r\nThat heaven finds means to kill your joys with love!\r\nAnd I, for winking at your discords too,\r\nHave lost a brace of kinsmen. All are punish’d.\r\n\r\nCAPULET.\r\nO brother Montague, give me thy hand.\r\nThis is my daughter’s jointure, for no more\r\nCan I demand.\r\n\r\nMONTAGUE.\r\nBut I can give thee more,\r\nFor I will raise her statue in pure gold,\r\nThat whiles Verona by that name is known,\r\nThere shall no figure at such rate be set\r\nAs that of true and faithful Juliet.\r\n\r\nCAPULET.\r\nAs rich shall Romeo’s by his lady’s lie,\r\nPoor sacrifices of our enmity.\r\n\r\nPRINCE.\r\nA glooming peace this morning with it brings;\r\nThe sun for sorrow will not show his head.\r\nGo hence, to have more talk of these sad things.\r\nSome shall be pardon’d, and some punished,\r\nFor never was a story of more woe\r\nThan this of Juliet and her Romeo.\r\n\r\n [_Exeunt._]\r\n\r\n\r\nEnd of the Project Gutenberg EBook of Romeo and Juliet,\r\nby William Shakespeare\r\n\r\n*** END OF THIS PROJECT GUTENBERG EBOOK ROMEO AND JULIET ***\r\n\r\n***** This file should be named 1513-0.txt or 1513-0.zip *****\r\nThis and all associated files of various formats will be found in:\r\n http://www.gutenberg.org/1/5/1/1513/\r\n\r\nThis etext was prepared by the PG Shakespeare Team,\r\na team of about twenty Project Gutenberg volunteers.\r\n\r\nUpdated editions will replace the previous one--the old editions will\r\nbe renamed.\r\n\r\nCreating the works from print editions not protected by U.S. copyright\r\nlaw means that no one owns a United States copyright in these works,\r\nso the Foundation (and you!) can copy and distribute it in the United\r\nStates without permission and without paying copyright\r\nroyalties. Special rules, set forth in the General Terms of Use part\r\nof this license, apply to copying and distributing Project\r\nGutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm\r\nconcept and trademark. Project Gutenberg is a registered trademark,\r\nand may not be used if you charge for the eBooks, unless you receive\r\nspecific permission. If you do not charge anything for copies of this\r\neBook, complying with the rules is very easy. You may use this eBook\r\nfor nearly any purpose such as creation of derivative works, reports,\r\nperformances and research. They may be modified and printed and given\r\naway--you may do practically ANYTHING in the United States with eBooks\r\nnot protected by U.S. copyright law. Redistribution is subject to the\r\ntrademark license, especially commercial redistribution.\r\n\r\nSTART: FULL LICENSE\r\n\r\nTHE FULL PROJECT GUTENBERG LICENSE\r\nPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\r\n\r\nTo protect the Project Gutenberg-tm mission of promoting the free\r\ndistribution of electronic works, by using or distributing this work\r\n(or any other work associated in any way with the phrase \"Project\r\nGutenberg\"), you agree to comply with all the terms of the Full\r\nProject Gutenberg-tm License available with this file or online at\r\nwww.gutenberg.org/license.\r\n\r\nSection 1. General Terms of Use and Redistributing Project\r\nGutenberg-tm electronic works\r\n\r\n1.A. By reading or using any part of this Project Gutenberg-tm\r\nelectronic work, you indicate that you have read, understand, agree to\r\nand accept all the terms of this license and intellectual property\r\n(trademark/copyright) agreement. If you do not agree to abide by all\r\nthe terms of this agreement, you must cease using and return or\r\ndestroy all copies of Project Gutenberg-tm electronic works in your\r\npossession. If you paid a fee for obtaining a copy of or access to a\r\nProject Gutenberg-tm electronic work and you do not agree to be bound\r\nby the terms of this agreement, you may obtain a refund from the\r\nperson or entity to whom you paid the fee as set forth in paragraph\r\n1.E.8.\r\n\r\n1.B. \"Project Gutenberg\" is a registered trademark. It may only be\r\nused on or associated in any way with an electronic work by people who\r\nagree to be bound by the terms of this agreement. There are a few\r\nthings that you can do with most Project Gutenberg-tm electronic works\r\neven without complying with the full terms of this agreement. See\r\nparagraph 1.C below. There are a lot of things you can do with Project\r\nGutenberg-tm electronic works if you follow the terms of this\r\nagreement and help preserve free future access to Project Gutenberg-tm\r\nelectronic works. See paragraph 1.E below.\r\n\r\n1.C. The Project Gutenberg Literary Archive Foundation (\"the\r\nFoundation\" or PGLAF), owns a compilation copyright in the collection\r\nof Project Gutenberg-tm electronic works. Nearly all the individual\r\nworks in the collection are in the public domain in the United\r\nStates. If an individual work is unprotected by copyright law in the\r\nUnited States and you are located in the United States, we do not\r\nclaim a right to prevent you from copying, distributing, performing,\r\ndisplaying or creating derivative works based on the work as long as\r\nall references to Project Gutenberg are removed. Of course, we hope\r\nthat you will support the Project Gutenberg-tm mission of promoting\r\nfree access to electronic works by freely sharing Project Gutenberg-tm\r\nworks in compliance with the terms of this agreement for keeping the\r\nProject Gutenberg-tm name associated with the work. You can easily\r\ncomply with the terms of this agreement by keeping this work in the\r\nsame format with its attached full Project Gutenberg-tm License when\r\nyou share it without charge with others.\r\n\r\n1.D. The copyright laws of the place where you are located also govern\r\nwhat you can do with this work. Copyright laws in most countries are\r\nin a constant state of change. If you are outside the United States,\r\ncheck the laws of your country in addition to the terms of this\r\nagreement before downloading, copying, displaying, performing,\r\ndistributing or creating derivative works based on this work or any\r\nother Project Gutenberg-tm work. The Foundation makes no\r\nrepresentations concerning the copyright status of any work in any\r\ncountry outside the United States.\r\n\r\n1.E. Unless you have removed all references to Project Gutenberg:\r\n\r\n1.E.1. The following sentence, with active links to, or other\r\nimmediate access to, the full Project Gutenberg-tm License must appear\r\nprominently whenever any copy of a Project Gutenberg-tm work (any work\r\non which the phrase \"Project Gutenberg\" appears, or with which the\r\nphrase \"Project Gutenberg\" is associated) is accessed, displayed,\r\nperformed, viewed, copied or distributed:\r\n\r\n This eBook is for the use of anyone anywhere in the United States and\r\n most other parts of the world at no cost and with almost no\r\n restrictions whatsoever. You may copy it, give it away or re-use it\r\n under the terms of the Project Gutenberg License included with this\r\n eBook or online at www.gutenberg.org. If you are not located in the\r\n United States, you\'ll have to check the laws of the country where you\r\n are located before using this ebook.\r\n\r\n1.E.2. If an individual Project Gutenberg-tm electronic work is\r\nderived from texts not protected by U.S. copyright law (does not\r\ncontain a notice indicating that it is posted with permission of the\r\ncopyright holder), the work can be copied and distributed to anyone in\r\nthe United States without paying any fees or charges. If you are\r\nredistributing or providing access to a work with the phrase \"Project\r\nGutenberg\" associated with or appearing on the work, you must comply\r\neither with the requirements of paragraphs 1.E.1 through 1.E.7 or\r\nobtain permission for the use of the work and the Project Gutenberg-tm\r\ntrademark as set forth in paragraphs 1.E.8 or 1.E.9.\r\n\r\n1.E.3. If an individual Project Gutenberg-tm electronic work is posted\r\nwith the permission of the copyright holder, your use and distribution\r\nmust comply with both paragraphs 1.E.1 through 1.E.7 and any\r\nadditional terms imposed by the copyright holder. Additional terms\r\nwill be linked to the Project Gutenberg-tm License for all works\r\nposted with the permission of the copyright holder found at the\r\nbeginning of this work.\r\n\r\n1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\r\nLicense terms from this work, or any files containing a part of this\r\nwork or any other work associated with Project Gutenberg-tm.\r\n\r\n1.E.5. Do not copy, display, perform, distribute or redistribute this\r\nelectronic work, or any part of this electronic work, without\r\nprominently displaying the sentence set forth in paragraph 1.E.1 with\r\nactive links or immediate access to the full terms of the Project\r\nGutenberg-tm License.\r\n\r\n1.E.6. You may convert to and distribute this work in any binary,\r\ncompressed, marked up, nonproprietary or proprietary form, including\r\nany word processing or hypertext form. However, if you provide access\r\nto or distribute copies of a Project Gutenberg-tm work in a format\r\nother than \"Plain Vanilla ASCII\" or other format used in the official\r\nversion posted on the official Project Gutenberg-tm web site\r\n(www.gutenberg.org), you must, at no additional cost, fee or expense\r\nto the user, provide a copy, a means of exporting a copy, or a means\r\nof obtaining a copy upon request, of the work in its original \"Plain\r\nVanilla ASCII\" or other form. Any alternate format must include the\r\nfull Project Gutenberg-tm License as specified in paragraph 1.E.1.\r\n\r\n1.E.7. Do not charge a fee for access to, viewing, displaying,\r\nperforming, copying or distributing any Project Gutenberg-tm works\r\nunless you comply with paragraph 1.E.8 or 1.E.9.\r\n\r\n1.E.8. You may charge a reasonable fee for copies of or providing\r\naccess to or distributing Project Gutenberg-tm electronic works\r\nprovided that\r\n\r\n* You pay a royalty fee of 20% of the gross profits you derive from\r\n the use of Project Gutenberg-tm works calculated using the method\r\n you already use to calculate your applicable taxes. The fee is owed\r\n to the owner of the Project Gutenberg-tm trademark, but he has\r\n agreed to donate royalties under this paragraph to the Project\r\n Gutenberg Literary Archive Foundation. Royalty payments must be paid\r\n within 60 days following each date on which you prepare (or are\r\n legally required to prepare) your periodic tax returns. Royalty\r\n payments should be clearly marked as such and sent to the Project\r\n Gutenberg Literary Archive Foundation at the address specified in\r\n Section 4, \"Information about donations to the Project Gutenberg\r\n Literary Archive Foundation.\"\r\n\r\n* You provide a full refund of any money paid by a user who notifies\r\n you in writing (or by e-mail) within 30 days of receipt that s/he\r\n does not agree to the terms of the full Project Gutenberg-tm\r\n License. You must require such a user to return or destroy all\r\n copies of the works possessed in a physical medium and discontinue\r\n all use of and all access to other copies of Project Gutenberg-tm\r\n works.\r\n\r\n* You provide, in accordance with paragraph 1.F.3, a full refund of\r\n any money paid for a work or a replacement copy, if a defect in the\r\n electronic work is discovered and reported to you within 90 days of\r\n receipt of the work.\r\n\r\n* You comply with all other terms of this agreement for free\r\n distribution of Project Gutenberg-tm works.\r\n\r\n1.E.9. If you wish to charge a fee or distribute a Project\r\nGutenberg-tm electronic work or group of works on different terms than\r\nare set forth in this agreement, you must obtain permission in writing\r\nfrom both the Project Gutenberg Literary Archive Foundation and The\r\nProject Gutenberg Trademark LLC, the owner of the Project Gutenberg-tm\r\ntrademark. Contact the Foundation as set forth in Section 3 below.\r\n\r\n1.F.\r\n\r\n1.F.1. Project Gutenberg volunteers and employees expend considerable\r\neffort to identify, do copyright research on, transcribe and proofread\r\nworks not protected by U.S. copyright law in creating the Project\r\nGutenberg-tm collection. Despite these efforts, Project Gutenberg-tm\r\nelectronic works, and the medium on which they may be stored, may\r\ncontain \"Defects,\" such as, but not limited to, incomplete, inaccurate\r\nor corrupt data, transcription errors, a copyright or other\r\nintellectual property infringement, a defective or damaged disk or\r\nother medium, a computer virus, or computer codes that damage or\r\ncannot be read by your equipment.\r\n\r\n1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the \"Right\r\nof Replacement or Refund\" described in paragraph 1.F.3, the Project\r\nGutenberg Literary Archive Foundation, the owner of the Project\r\nGutenberg-tm trademark, and any other party distributing a Project\r\nGutenberg-tm electronic work under this agreement, disclaim all\r\nliability to you for damages, costs and expenses, including legal\r\nfees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\r\nLIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\r\nPROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE\r\nTRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\r\nLIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\r\nINCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\r\nDAMAGE.\r\n\r\n1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\r\ndefect in this electronic work within 90 days of receiving it, you can\r\nreceive a refund of the money (if any) you paid for it by sending a\r\nwritten explanation to the person you received the work from. If you\r\nreceived the work on a physical medium, you must return the medium\r\nwith your written explanation. The person or entity that provided you\r\nwith the defective work may elect to provide a replacement copy in\r\nlieu of a refund. If you received the work electronically, the person\r\nor entity providing it to you may choose to give you a second\r\nopportunity to receive the work electronically in lieu of a refund. If\r\nthe second copy is also defective, you may demand a refund in writing\r\nwithout further opportunities to fix the problem.\r\n\r\n1.F.4. Except for the limited right of replacement or refund set forth\r\nin paragraph 1.F.3, this work is provided to you \'AS-IS\', WITH NO\r\nOTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\r\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.\r\n\r\n1.F.5. Some states do not allow disclaimers of certain implied\r\nwarranties or the exclusion or limitation of certain types of\r\ndamages. If any disclaimer or limitation set forth in this agreement\r\nviolates the law of the state applicable to this agreement, the\r\nagreement shall be interpreted to make the maximum disclaimer or\r\nlimitation permitted by the applicable state law. The invalidity or\r\nunenforceability of any provision of this agreement shall not void the\r\nremaining provisions.\r\n\r\n1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\r\ntrademark owner, any agent or employee of the Foundation, anyone\r\nproviding copies of Project Gutenberg-tm electronic works in\r\naccordance with this agreement, and any volunteers associated with the\r\nproduction, promotion and distribution of Project Gutenberg-tm\r\nelectronic works, harmless from all liability, costs and expenses,\r\nincluding legal fees, that arise directly or indirectly from any of\r\nthe following which you do or cause to occur: (a) distribution of this\r\nor any Project Gutenberg-tm work, (b) alteration, modification, or\r\nadditions or deletions to any Project Gutenberg-tm work, and (c) any\r\nDefect you cause.\r\n\r\nSection 2. Information about the Mission of Project Gutenberg-tm\r\n\r\nProject Gutenberg-tm is synonymous with the free distribution of\r\nelectronic works in formats readable by the widest variety of\r\ncomputers including obsolete, old, middle-aged and new computers. It\r\nexists because of the efforts of hundreds of volunteers and donations\r\nfrom people in all walks of life.\r\n\r\nVolunteers and financial support to provide volunteers with the\r\nassistance they need are critical to reaching Project Gutenberg-tm\'s\r\ngoals and ensuring that the Project Gutenberg-tm collection will\r\nremain freely available for generations to come. In 2001, the Project\r\nGutenberg Literary Archive Foundation was created to provide a secure\r\nand permanent future for Project Gutenberg-tm and future\r\ngenerations. To learn more about the Project Gutenberg Literary\r\nArchive Foundation and how your efforts and donations can help, see\r\nSections 3 and 4 and the Foundation information page at\r\nwww.gutenberg.org\r\n\r\n\r\n\r\nSection 3. Information about the Project Gutenberg Literary Archive Foundation\r\n\r\nThe Project Gutenberg Literary Archive Foundation is a non profit\r\n501(c)(3) educational corporation organized under the laws of the\r\nstate of Mississippi and granted tax exempt status by the Internal\r\nRevenue Service. The Foundation\'s EIN or federal tax identification\r\nnumber is 64-6221541. Contributions to the Project Gutenberg Literary\r\nArchive Foundation are tax deductible to the full extent permitted by\r\nU.S. federal laws and your state\'s laws.\r\n\r\nThe Foundation\'s principal office is in Fairbanks, Alaska, with the\r\nmailing address: PO Box 750175, Fairbanks, AK 99775, but its\r\nvolunteers and employees are scattered throughout numerous\r\nlocations. Its business office is located at 809 North 1500 West, Salt\r\nLake City, UT 84116, (801) 596-1887. Email contact links and up to\r\ndate contact information can be found at the Foundation\'s web site and\r\nofficial page at www.gutenberg.org/contact\r\n\r\nFor additional contact information:\r\n\r\n Dr. Gregory B. Newby\r\n Chief Executive and Director\r\n gbnewby@pglaf.org\r\n\r\nSection 4. Information about Donations to the Project Gutenberg\r\nLiterary Archive Foundation\r\n\r\nProject Gutenberg-tm depends upon and cannot survive without wide\r\nspread public support and donations to carry out its mission of\r\nincreasing the number of public domain and licensed works that can be\r\nfreely distributed in machine readable form accessible by the widest\r\narray of equipment including outdated equipment. Many small donations\r\n($1 to $5,000) are particularly important to maintaining tax exempt\r\nstatus with the IRS.\r\n\r\nThe Foundation is committed to complying with the laws regulating\r\ncharities and charitable donations in all 50 states of the United\r\nStates. Compliance requirements are not uniform and it takes a\r\nconsiderable effort, much paperwork and many fees to meet and keep up\r\nwith these requirements. We do not solicit donations in locations\r\nwhere we have not received written confirmation of compliance. To SEND\r\nDONATIONS or determine the status of compliance for any particular\r\nstate visit www.gutenberg.org/donate\r\n\r\nWhile we cannot and do not solicit contributions from states where we\r\nhave not met the solicitation requirements, we know of no prohibition\r\nagainst accepting unsolicited donations from donors in such states who\r\napproach us with offers to donate.\r\n\r\nInternational donations are gratefully accepted, but we cannot make\r\nany statements concerning tax treatment of donations received from\r\noutside the United States. U.S. laws alone swamp our small staff.\r\n\r\nPlease check the Project Gutenberg Web pages for current donation\r\nmethods and addresses. Donations are accepted in a number of other\r\nways including checks, online payments and credit card donations. To\r\ndonate, please visit: www.gutenberg.org/donate\r\n\r\nSection 5. General Information About Project Gutenberg-tm electronic works.\r\n\r\nProfessor Michael S. Hart was the originator of the Project\r\nGutenberg-tm concept of a library of electronic works that could be\r\nfreely shared with anyone. For forty years, he produced and\r\ndistributed Project Gutenberg-tm eBooks with only a loose network of\r\nvolunteer support.\r\n\r\nProject Gutenberg-tm eBooks are often created from several printed\r\neditions, all of which are confirmed as not protected by copyright in\r\nthe U.S. unless a copyright notice is included. Thus, we do not\r\nnecessarily keep eBooks in compliance with any particular paper\r\nedition.\r\n\r\nMost people start at our Web site which has the main PG search\r\nfacility: www.gutenberg.org\r\n\r\nThis Web site includes information about Project Gutenberg-tm,\r\nincluding how to make donations to the Project Gutenberg Literary\r\nArchive Foundation, how to help produce our new eBooks, and how to\r\nsubscribe to our email newsletter to hear about new eBooks.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'); +INSERT INTO `shakespeare` (`id`, `title`, `contents`) VALUES +(4, 'The Tempest', 'The Project Gutenberg EBook of The Tempest, by William Shakespeare\r\n\r\nThis eBook is for the use of anyone anywhere at no cost and with\r\nalmost no restrictions whatsoever. You may copy it, give it away or\r\nre-use it under the terms of the Project Gutenberg License included\r\nwith this eBook or online at www.gutenberg.org\r\n\r\n\r\nTitle: The Tempest\r\n The Works of William Shakespeare [Cambridge Edition] [9 vols.]\r\n\r\nAuthor: William Shakespeare\r\n\r\nEditor: William George Clark\r\n John Glover\r\n\r\nRelease Date: October 26, 2007 [EBook #23042]\r\n\r\nLanguage: English\r\n\r\nCharacter set encoding: UTF-8\r\n\r\n*** START OF THIS PROJECT GUTENBERG EBOOK THE TEMPEST ***\r\n\r\n\r\n\r\n\r\nProduced by Louise Hope, Jonathan Ingram and the Online\r\nDistributed Proofreading Team at http://www.pgdp.net (This\r\nfile was produced from images generously made available\r\nby The Internet Archive/Canadian Libraries)\r\n\r\n\r\n\r\n\r\n\r\n\r\n[Transcriber’s Note:\r\n\r\nThis text uses utf-8 (unicode) file encoding. If the apostrophes and\r\nquotation marks in this paragraph appear as garbage, make sure your\r\ntext reader’s “character set” or “file encoding” is set to Unicode\r\n(UTF-8). You may also need to change the default font. As a last\r\nresort, use the ascii-7 version of the file instead.\r\n\r\nThe text of _The Tempest_ is from Volume I of the nine-volume 1863\r\nCambridge edition of Shakespeare. The Preface (e-text 23041) and the\r\nother plays from this volume are each available as separate e-texts.\r\n\r\nGeneral Notes are in their original location at the end of the play.\r\nText-critical notes are grouped at the end of each Scene. All line\r\nnumbers are from the original text; line breaks in dialogue--including\r\nprose passages--are unchanged. Brackets are also unchanged; to avoid\r\nambiguity, footnotes and linenotes are given without added brackets.\r\nIn the notes, numerals printed as subscripts are shown inline as\r\nF1, F2, Q1....\r\n\r\nTexts cited in the Notes are listed at the end of the e-text.]\r\n\r\n\r\n\r\n\r\n THE WORKS\r\n\r\n of\r\n\r\n WILLIAM SHAKESPEARE\r\n\r\n\r\n Edited by\r\n\r\n WILLIAM GEORGE CLARK, M.A.\r\n Fellow and Tutor of Trinity College, and Public Orator\r\n in the University of Cambridge;\r\n\r\n and JOHN GLOVER, M.A.\r\n Librarian Of Trinity College, Cambridge.\r\n\r\n\r\n _VOLUME I._\r\n\r\n\r\n Cambridge and London:\r\n MACMILLAN AND CO.\r\n 1863.\r\n\r\n\r\n\r\n\r\nTHE TEMPEST.\r\n\r\n\r\n\r\n\r\nDRAMATIS PERSONÆ[1].\r\n\r\n\r\n ALONSO, King of Naples.\r\n SEBASTIAN, his brother.\r\n PROSPERO, the right Duke of Milan.\r\n ANTONIO, his brother, the usurping Duke of Milan.\r\n FERDINAND, son to the King of Naples.\r\n GONZALO, an honest old Counsellor.\r\n ADRIAN, Lord\r\n FRANCISCO, „\r\n CALIBAN, a savage and deformed Slave.\r\n TRINCULO, a Jester.\r\n STEPHANO, a drunken Butler.\r\n Master of a Ship.\r\n Boatswain.\r\n Mariners.\r\n\r\n MIRANDA, daughter to Prospero.\r\n\r\n ARIEL, an airy Spirit.\r\n IRIS, presented by[2] Spirits.\r\n CERES, „ „\r\n JUNO, „ „\r\n Nymphs, „ „\r\n Reapers, „ „\r\n\r\n Other Spirits attending on Prospero[3].\r\n\r\nSCENE--_A ship at sea[4]: an uninhabited island._\r\n\r\n\r\n Footnotes:\r\n\r\n 1: DRAMATIS PERSONÆ] NAMES OF THE ACTORS F1 at the end of the Play.\r\n 2: _presented by_] Edd.\r\n 3: _Other ... Prospero_] Theobald.\r\n 4: A ship at sea:] At sea: Capell.]\r\n\r\n\r\n\r\n\r\nTHE TEMPEST.\r\n\r\n\r\n\r\n\r\nACT I.\r\n\r\n\r\nSCENE I. _On a ship at sea: a tempestuous noise of thunder\r\nand lightning heard._\r\n\r\n _Enter _a Ship-Master_ and _a Boatswain_._\r\n\r\n_Mast._ Boatswain!\r\n\r\n_Boats._ Here, master: what cheer?\r\n\r\n_Mast._ Good, speak to the mariners: fall to’t, yarely, or\r\nwe run ourselves aground: bestir, bestir. [_Exit._\r\n\r\n _Enter _Mariners_._\r\n\r\n_Boats._ Heigh, my hearts! cheerly, cheerly, my hearts! 5\r\nyare, yare! Take in the topsail. Tend to the master’s\r\nwhistle. Blow, till thou burst thy wind, if room enough!\r\n\r\n _Enter ALONSO, SEBASTIAN, ANTONIO, FERDINAND, GONZALO,\r\n and others._\r\n\r\n_Alon._ Good boatswain, have care. Where’s the master?\r\nPlay the men.\r\n\r\n_Boats._ I pray now, keep below. 10\r\n\r\n_Ant._ Where is the master, boatswain?\r\n\r\n_Boats._ Do you not hear him? You mar our labour:\r\nkeep your cabins: you do assist the storm.\r\n\r\n_Gon._ Nay, good, be patient.\r\n\r\n_Boats._ When the sea is. Hence! What cares these 15\r\nroarers for the name of king? To cabin: silence! trouble\r\nus not.\r\n\r\n_Gon._ Good, yet remember whom thou hast aboard.\r\n\r\n_Boats._ None that I more love than myself. You are a\r\nCounsellor; if you can command these elements to silence, 20\r\nand work the peace of the present, we will not hand a rope\r\nmore; use your authority: if you cannot, give thanks you\r\nhave lived so long, and make yourself ready in your cabin\r\nfor the mischance of the hour, if it so hap. Cheerly, good\r\nhearts! Out of our way, I say. [_Exit._ 25\r\n\r\n_Gon._ I have great comfort from this fellow: methinks\r\nhe hath no drowning mark upon him; his complexion is\r\nperfect gallows. Stand fast, good Fate, to his hanging:\r\nmake the rope of his destiny our cable, for our own doth\r\nlittle advantage. If he be not born to be hanged, our case 30\r\nis miserable. [_Exeunt._\r\n\r\n _Re-enter Boatswain._\r\n\r\n_Boats._ Down with the topmast! yare! lower, lower!\r\nBring her to try with main-course. [_A cry within._] A\r\nplague upon this howling! they are louder than the weather\r\nor our office. 35\r\n\r\n _Re-enter SEBASTIAN, ANTONIO, and GONZALO._\r\n\r\nYet again! what do you here? Shall we give o’er, and\r\ndrown? Have you a mind to sink?\r\n\r\n_Seb._ A pox o’ your throat, you bawling, blasphemous,\r\nincharitable dog!\r\n\r\n_Boats._ Work you, then. 40\r\n\r\n_Ant._ Hang, cur! hang, you whoreson, insolent noise-maker.\r\nWe are less afraid to be drowned than thou art.\r\n\r\n_Gon._ I’ll warrant him for drowning; though the ship\r\nwere no stronger than a nutshell, and as leaky as an unstanched\r\nwench. 45\r\n\r\n_Boats._ Lay her a-hold, a-hold! set her two courses off\r\nto sea again; lay her off.\r\n\r\n _Enter _Mariners_ wet._\r\n\r\n_Mariners._ All lost! to prayers, to prayers! all lost!\r\n\r\n_Boats._ What, must our mouths be cold?\r\n\r\n_Gon._ The king and prince at prayers! let’s assist them, 50\r\nFor our case is as theirs.\r\n\r\n_Seb._ I’m out of patience.\r\n\r\n_Ant._ We are merely cheated of our lives by drunkards:\r\nThis wide-chapp’d rascal,--would thou mightst lie drowning\r\nThe washing of ten tides!\r\n\r\n_Gon._ He’ll be hang’d yet,\r\nThough every drop of water swear against it, 55\r\nAnd gape at widest to glut him.\r\n\r\n [_A confused noise within:_ “Mercy on us!”--\r\n “We split, we split!”-- “Farewell my wife and children!”--\r\n “Farewell, brother!”-- “We split, we split, we split!”]\r\n\r\n_Ant._ Let’s all sink with the king. 60\r\n\r\n_Seb._ Let’s take leave of him. [_Exeunt Ant. and Seb._\r\n\r\n_Gon._ Now would I give a thousand furlongs of sea for\r\nan acre of barren ground, long heath, brown furze, any\r\nthing. The wills above be done! but I would fain die a\r\ndry death. [_Exeunt._ 65\r\n\r\n\r\n Notes: I, 1.\r\n\r\n SC. I. On a ship at sea] Pope.\r\n Enter ... Boatswain] Collier MS. adds ‘shaking off wet.’\r\n 3: _Good,_] Rowe. _Good:_ Ff. _Good._ Collier.\r\n 7: _till thou burst thy wind_] _till thou burst, wind_ Johnson conj.\r\n _till thou burst thee, wind_ Steevens conj.\r\n 8: Capell adds stage direction [Exeunt Mariners aloft.\r\n 11: _boatswain_] Pope. _boson_ Ff.\r\n 11-18: Verse. S. Walker conj.\r\n 15: _cares_] _care_ Rowe. See note (I).\r\n 31: [Exeunt] Theobald. [Exit. Ff.\r\n 33: _Bring her to try_] F4. _Bring her to Try_ F1 F2 F3.\r\n _Bring her to. Try_ Story conj.\r\n 33-35: Text as in Capell. _A plague_--A cry within. Enter Sebastian,\r\n Anthonio, and Gonzalo. _upon this howling._ Ff.\r\n 34-37: Verse. S. Walker conj.\r\n 43: _for_] _from_ Theobald.\r\n 46: _two courses off to sea_] _two courses; off to sea_ Steevens\r\n (Holt conj.).\r\n 46: [Enter...] [Re-enter... Dyce.\r\n 47: [Exeunt. Theobald.\r\n 50: _at_] _are at_ Rowe.\r\n 50-54: Printed as prose in Ff.\r\n 56: _to glut_] _t’ englut_ Johnson conj.\r\n 57: See note (II).\r\n 59: _Farewell, brother!_] _Brother, farewell!_ Theobald.\r\n 60: _with the_] Rowe. _with’_ F1 F2. _with_ F3 F4.\r\n 61: [Exeunt A. and S.] [Exit. Ff.\r\n 63: _furze_ Rowe. _firrs_ F1 F2 F3. _firs_ F4.\r\n _long heath, brown furze_] _ling, heath, broom, furze_ Hanmer.]\r\n 65: [Exeunt] [Exit F1, om. F2 F3 F4.]\r\n\r\n\r\nSCENE II. _The island. Before PROSPERO’S cell._\r\n\r\n _Enter PROSPERO and MIRANDA._\r\n\r\n_Mir._ If by your art, my dearest father, you have\r\nPut the wild waters in this roar, allay them.\r\nThe sky, it seems, would pour down stinking pitch,\r\nBut that the sea, mounting to the welkin’s cheek,\r\nDashes the fire out. O, I have suffer’d 5\r\nWith those that I saw suffer! a brave vessel,\r\nWho had, no doubt, some noble creature in her,\r\nDash’d all to pieces. O, the cry did knock\r\nAgainst my very heart! Poor souls, they perish’d!\r\nHad I been any god of power, I would 10\r\nHave sunk the sea within the earth, or ere\r\nIt should the good ship so have swallow’d and\r\nThe fraughting souls within her.\r\n\r\n_Pros._ Be collected:\r\nNo more amazement: tell your piteous heart\r\nThere’s no harm done.\r\n\r\n_Mir._ O, woe the day!\r\n\r\n_Pros._ No harm. 15\r\nI have done nothing but in care of thee,\r\nOf thee, my dear one, thee, my daughter, who\r\nArt ignorant of what thou art, nought knowing\r\nOf whence I am, nor that I am more better\r\nThan Prospero, master of a full poor cell, 20\r\nAnd thy no greater father.\r\n\r\n_Mir._ More to know\r\nDid never meddle with my thoughts.\r\n\r\n_Pros._ ’Tis time\r\nI should inform thee farther. Lend thy hand,\r\nAnd pluck my magic garment from me. --So:\r\n [_Lays down his mantle._\r\nLie there, my art. Wipe thou thine eyes; have comfort. 25\r\nThe direful spectacle of the wreck, which touch’d\r\nThe very virtue of compassion in thee,\r\nI have with such provision in mine art\r\nSo safely order’d, that there is no soul,\r\nNo, not so much perdition as an hair 30\r\nBetid to any creature in the vessel\r\nWhich thou heard’st cry, which thou saw’st sink. Sit down;\r\nFor thou must now know farther.\r\n\r\n_Mir._ You have often\r\nBegun to tell me what I am; but stopp’d,\r\nAnd left me to a bootless inquisition, 35\r\nConcluding “Stay: not yet.”\r\n\r\n_Pros._ The hour’s now come;\r\nThe very minute bids thee ope thine ear;\r\nObey, and be attentive. Canst thou remember\r\nA time before we came unto this cell?\r\nI do not think thou canst, for then thou wast not 40\r\nOut three years old.\r\n\r\n_Mir._ Certainly, sir, I can.\r\n\r\n_Pros._ By what? by any other house or person?\r\nOf any thing the image tell me that\r\nHath kept with thy remembrance.\r\n\r\n_Mir._ ’Tis far off,\r\nAnd rather like a dream than an assurance 45\r\nThat my remembrance warrants. Had I not\r\nFour or five women once that tended me?\r\n\r\n_Pros._ Thou hadst, and more, Miranda. But how is it\r\nThat this lives in thy mind? What seest thou else\r\nIn the dark backward and abysm of time? 50\r\nIf thou remember’st ought ere thou camest here,\r\nHow thou camest here thou mayst.\r\n\r\n_Mir._ But that I do not.\r\n\r\n_Pros._ Twelve year since, Miranda, twelve year since,\r\nThy father was the Duke of Milan, and\r\nA prince of power.\r\n\r\n_Mir._ Sir, are not you my father? 55\r\n\r\n_Pros._ Thy mother was a piece of virtue, and\r\nShe said thou wast my daughter; and thy father\r\nWas Duke of Milan; and his only heir\r\nAnd princess, no worse issued.\r\n\r\n_Mir._ O the heavens!\r\nWhat foul play had we, that we came from thence? 60\r\nOr blessed was’t we did?\r\n\r\n_Pros._ Both, both, my girl:\r\nBy foul play, as thou say’st, were we heaved thence;\r\nBut blessedly holp hither.\r\n\r\n_Mir._ O, my heart bleeds\r\nTo think o’ the teen that I have turn’d you to.\r\nWhich is from my remembrance! Please you, farther. 65\r\n\r\n_Pros._ My brother, and thy uncle, call’d Antonio,--\r\nI pray thee, mark me,--that a brother should\r\nBe so perfidious!--he whom, next thyself,\r\nOf all the world I loved, and to him put\r\nThe manage of my state; as, at that time, 70\r\nThrough all the signories it was the first,\r\nAnd Prospero the prime duke, being so reputed\r\nIn dignity, and for the liberal arts\r\nWithout a parallel; those being all my study,\r\nThe government I cast upon my brother, 75\r\nAnd to my state grew stranger, being transported\r\nAnd rapt in secret studies. Thy false uncle--\r\nDost thou attend me?\r\n\r\n_Mir._ Sir, most heedfully.\r\n\r\n_Pros._ Being once perfected how to grant suits,\r\nHow to deny them, whom to advance, and whom 80\r\nTo trash for over-topping, new created\r\nThe creatures that were mine, I say, or changed ’em,\r\nOr else new form’d ’em; having both the key\r\nOf officer and office, set all hearts i’ the state\r\nTo what tune pleased his ear; that now he was 85\r\nThe ivy which had hid my princely trunk,\r\nAnd suck’d my verdure out on’t. Thou attend’st not.\r\n\r\n_Mir._ O, good sir, I do.\r\n\r\n_Pros._ I pray thee, mark me.\r\nI, thus neglecting worldly ends, all dedicated\r\nTo closeness and the bettering of my mind 90\r\nWith that which, but by being so retired,\r\nO’er-prized all popular rate, in my false brother\r\nAwaked an evil nature; and my trust,\r\nLike a good parent, did beget of him\r\nA falsehood in its contrary, as great 95\r\nAs my trust was; which had indeed no limit,\r\nA confidence sans bound. He being thus lorded,\r\nNot only with what my revenue yielded,\r\nBut what my power might else exact, like one\r\nWho having into truth, by telling of it, 100\r\nMade such a sinner of his memory,\r\nTo credit his own lie, he did believe\r\nHe was indeed the duke; out o’ the substitution,\r\nAnd executing the outward face of royalty,\r\nWith all prerogative:--hence his ambition growing,-- 105\r\nDost thou hear?\r\n\r\n_Mir._ Your tale, sir, would cure deafness.\r\n\r\n_Pros._ To have no screen between this part he play’d\r\nAnd him he play’d it for, he needs will be\r\nAbsolute Milan. Me, poor man, my library\r\nWas dukedom large enough: of temporal royalties 110\r\nHe thinks me now incapable; confederates,\r\nSo dry he was for sway, wi’ the King of Naples\r\nTo give him annual tribute, do him homage,\r\nSubject his coronet to his crown, and bend\r\nThe dukedom, yet unbow’d,--alas, poor Milan!-- 115\r\nTo most ignoble stooping.\r\n\r\n_Mir._ O the heavens!\r\n\r\n_Pros._ Mark his condition, and th’ event; then tell me\r\nIf this might be a brother.\r\n\r\n_Mir._ I should sin\r\nTo think but nobly of my grandmother:\r\nGood wombs have borne bad sons.\r\n\r\n_Pros._ Now the condition. 120\r\nThis King of Naples, being an enemy\r\nTo me inveterate, hearkens my brother’s suit;\r\nWhich was, that he, in lieu o’ the premises,\r\nOf homage and I know not how much tribute,\r\nShould presently extirpate me and mine 125\r\nOut of the dukedom, and confer fair Milan,\r\nWith all the honours, on my brother: whereon,\r\nA treacherous army levied, one midnight\r\nFated to the purpose, did Antonio open\r\nThe gates of Milan; and, i’ the dead of darkness, 130\r\nThe ministers for the purpose hurried thence\r\nMe and thy crying self.\r\n\r\n_Mir._ Alack, for pity!\r\nI, not remembering how I cried out then,\r\nWill cry it o’er again: it is a hint\r\nThat wrings mine eyes to’t.\r\n\r\n_Pros._ Hear a little further, 135\r\nAnd then I’ll bring thee to the present business\r\nWhich now’s upon ’s; without the which, this story\r\nWere most impertinent.\r\n\r\n_Mir._ Wherefore did they not\r\nThat hour destroy us?\r\n\r\n_Pros._ Well demanded, wench:\r\nMy tale provokes that question. Dear, they durst not, 140\r\nSo dear the love my people bore me; nor set\r\nA mark so bloody on the business; but\r\nWith colours fairer painted their foul ends.\r\nIn few, they hurried us aboard a bark,\r\nBore us some leagues to sea; where they prepared 145\r\nA rotten carcass of a boat, not rigg’d,\r\nNor tackle, sail, nor mast; the very rats\r\nInstinctively have quit it: there they hoist us,\r\nTo cry to the sea that roar’d to us; to sigh\r\nTo the winds, whose pity, sighing back again, 150\r\nDid us but loving wrong.\r\n\r\n_Mir._ Alack, what trouble\r\nWas I then to you!\r\n\r\n_Pros._ O, a cherubin\r\nThou wast that did preserve me. Thou didst smile,\r\nInfused with a fortitude from heaven,\r\nWhen I have deck’d the sea with drops full salt, 155\r\nUnder my burthen groan’d; which raised in me\r\nAn undergoing stomach, to bear up\r\nAgainst what should ensue.\r\n\r\n_Mir._ How came we ashore?\r\n\r\n_Pros._ By Providence divine.\r\nSome food we had, and some fresh water, that 160\r\nA noble Neapolitan, Gonzalo,\r\nOut of his charity, who being then appointed\r\nMaster of this design, did give us, with\r\nRich garments, linens, stuffs and necessaries,\r\nWhich since have steaded much; so, of his gentleness, 165\r\nKnowing I loved my books, he furnish’d me\r\nFrom mine own library with volumes that\r\nI prize above my dukedom.\r\n\r\n_Mir._ Would I might\r\nBut ever see that man!\r\n\r\n_Pros._ Now I arise: [_Resumes his mantle._\r\nSit still, and hear the last of our sea-sorrow. 170\r\nHere in this island we arrived; and here\r\nHave I, thy schoolmaster, made thee more profit\r\nThan other princesses can, that have more time\r\nFor vainer hours, and tutors not so careful.\r\n\r\n_Mir._ Heavens thank you for’t! And now, I pray you, sir, 175\r\nFor still ’tis beating in my mind, your reason\r\nFor raising this sea-storm?\r\n\r\n_Pros._ Know thus far forth.\r\nBy accident most strange, bountiful Fortune,\r\nNow my dear lady, hath mine enemies\r\nBrought to this shore; and by my prescience 180\r\nI find my zenith doth depend upon\r\nA most auspicious star, whose influence\r\nIf now I court not, but omit, my fortunes\r\nWill ever after droop. Here cease more questions:\r\nThou art inclined to sleep; ’tis a good dulness, 185\r\nAnd give it way: I know thou canst not choose.\r\n [_Miranda sleeps._\r\nCome away, servant, come. I am ready now.\r\nApproach, my Ariel, come.\r\n\r\n _Enter _ARIEL_._\r\n\r\n_Ari._ All hail, great master! grave sir, hail! I come\r\nTo answer thy best pleasure; be’t to fly, 190\r\nTo swim, to dive into the fire, to ride\r\nOn the curl’d clouds, to thy strong bidding task\r\nAriel and all his quality.\r\n\r\n_Pros._ Hast thou, spirit,\r\nPerform’d to point the tempest that I bade thee?\r\n\r\n_Ari._ To every article. 195\r\nI boarded the king’s ship; now on the beak,\r\nNow in the waist, the deck, in every cabin,\r\nI flamed amazement: sometime I’ld divide,\r\nAnd burn in many places; on the topmast,\r\nThe yards and bowsprit, would I flame distinctly, 200\r\nThen meet and join. Jove’s lightnings, the precursors\r\nO’ the dreadful thunder-claps, more momentary\r\nAnd sight-outrunning were not: the fire and cracks\r\nOf sulphurous roaring the most mighty Neptune\r\nSeem to besiege, and make his bold waves tremble, 205\r\nYea, his dread trident shake.\r\n\r\n_Pros._ My brave spirit!\r\nWho was so firm, so constant, that this coil\r\nWould not infect his reason?\r\n\r\n_Ari._ Not a soul\r\nBut felt a fever of the mad, and play’d\r\nSome tricks of desperation. All but mariners 210\r\nPlunged in the foaming brine, and quit the vessel,\r\nThen all afire with me: the king’s son, Ferdinand,\r\nWith hair up-staring,--then like reeds, not hair,--\r\nWas the first man that leap’d; cried, “Hell is empty,\r\nAnd all the devils are here.”\r\n\r\n_Pros._ Why, that’s my spirit! 215\r\nBut was not this nigh shore?\r\n\r\n_Ari._ Close by, my master.\r\n\r\n_Pros._ But are they, Ariel, safe?\r\n\r\n_Ari._ Not a hair perish’d;\r\nOn their sustaining garments not a blemish,\r\nBut fresher than before: and, as thou badest me,\r\nIn troops I have dispersed them ’bout the isle. 220\r\nThe king’s son have I landed by himself;\r\nWhom I left cooling of the air with sighs\r\nIn an odd angle of the isle, and sitting,\r\nHis arms in this sad knot.\r\n\r\n_Pros._ Of the king’s ship\r\nThe mariners, say how thou hast disposed, 225\r\nAnd all the rest o’ the fleet.\r\n\r\n_Ari._ Safely in harbour\r\nIs the king’s ship; in the deep nook, where once\r\nThou call’dst me up at midnight to fetch dew\r\nFrom the still-vex’d Bermoothes, there she’s hid:\r\nThe mariners all under hatches stow’d; 230\r\nWho, with a charm join’d to their suffer’d labour,\r\nI have left asleep: and for the rest o’ the fleet,\r\nWhich I dispersed, they all have met again,\r\nAnd are upon the Mediterranean flote,\r\nBound sadly home for Naples; 235\r\nSupposing that they saw the king’s ship wreck’d,\r\nAnd his great person perish.\r\n\r\n_Pros._ Ariel, thy charge\r\nExactly is perform’d: but there’s more work.\r\nWhat is the time o’ the day?\r\n\r\n_Ari._ Past the mid season.\r\n\r\n_Pros._ At least two glasses. The time ’twixt six and now 240\r\nMust by us both be spent most preciously.\r\n\r\n_Ari._ Is there more toil? Since thou dost give me pains,\r\nLet me remember thee what thou hast promised,\r\nWhich is not yet perform’d me.\r\n\r\n_Pros._ How now? moody?\r\nWhat is’t thou canst demand?\r\n\r\n_Ari._ My liberty. 245\r\n\r\n_Pros._ Before the time be out? no more!\r\n\r\n_Ari._ I prithee,\r\nRemember I have done thee worthy service;\r\nTold thee no lies, made thee no mistakings, served\r\nWithout or grudge or grumblings: thou didst promise\r\nTo bate me a full year.\r\n\r\n_Pros._ Dost thou forget 250\r\nFrom what a torment I did free thee?\r\n\r\n_Ari._ No.\r\n\r\n_Pros._ Thou dost; and think’st it much to tread the ooze\r\nOf the salt deep,\r\nTo run upon the sharp wind of the north,\r\nTo do me business in the veins o’ the earth 255\r\nWhen it is baked with frost.\r\n\r\n_Ari._ I do not, sir.\r\n\r\n_Pros._ Thou liest, malignant thing! Hast thou forgot\r\nThe foul witch Sycorax, who with age and envy\r\nWas grown into a hoop? hast thou forgot her?\r\n\r\n_Ari._ No, sir.\r\n\r\n_Pros._ Thou hast. Where was she born? speak; tell me. 260\r\n\r\n_Ari._ Sir, in Argier.\r\n\r\n_Pros._ O, was she so? I must\r\nOnce in a month recount what thou hast been,\r\nWhich thou forget’st. This damn’d witch Sycorax,\r\nFor mischiefs manifold, and sorceries terrible\r\nTo enter human hearing, from Argier, 265\r\nThou know’st, was banish’d: for one thing she did\r\nThey would not take her life. Is not this true?\r\n\r\n_Ari._ Ay, sir.\r\n\r\n_Pros._ This blue-eyed hag was hither brought with child,\r\nAnd here was left by the sailors. Thou, my slave, 270\r\nAs thou report’st thyself, wast then her servant;\r\nAnd, for thou wast a spirit too delicate\r\nTo act her earthy and abhorr’d commands,\r\nRefusing her grand hests, she did confine thee,\r\nBy help of her more potent ministers, 275\r\nAnd in her most unmitigable rage,\r\nInto a cloven pine; within which rift\r\nImprison’d thou didst painfully remain\r\nA dozen years; within which space she died,\r\nAnd left thee there; where thou didst vent thy groans 280\r\nAs fast as mill-wheels strike. Then was this island--\r\nSave for the son that she did litter here,\r\nA freckled whelp hag-born--not honour’d with\r\nA human shape.\r\n\r\n_Ari._ Yes, Caliban her son.\r\n\r\n_Pros._ Dull thing, I say so; he, that Caliban, 285\r\nWhom now I keep in service. Thou best know’st\r\nWhat torment I did find thee in; thy groans\r\nDid make wolves howl, and penetrate the breasts\r\nOf ever-angry bears: it was a torment\r\nTo lay upon the damn’d, which Sycorax 290\r\nCould not again undo: it was mine art,\r\nWhen I arrived and heard thee, that made gape\r\nThe pine, and let thee out.\r\n\r\n_Ari._ I thank thee, master.\r\n\r\n_Pros._ If thou more murmur’st, I will rend an oak,\r\nAnd peg thee in his knotty entrails, till 295\r\nThou hast howl’d away twelve winters.\r\n\r\n_Ari._ Pardon, master:\r\nI will be correspondent to command,\r\nAnd do my spiriting gently.\r\n\r\n_Pros._ Do so; and after two days\r\nI will discharge thee.\r\n\r\n_Ari._ That’s my noble master!\r\nWhat shall I do? say what; what shall I do? 300\r\n\r\n_Pros._ Go make thyself like a nymph o’ the sea:\r\nBe subject to no sight but thine and mine; invisible\r\nTo every eyeball else. Go take this shape,\r\nAnd hither come in’t: go, hence with diligence!\r\n\r\n [_Exit Ariel._\r\n\r\nAwake, dear heart, awake! thou hast slept well; 305\r\nAwake!\r\n\r\n_Mir._ The strangeness of your story put\r\nHeaviness in me.\r\n\r\n_Pros._ Shake it off. Come on;\r\nWe’ll visit Caliban my slave, who never\r\nYields us kind answer.\r\n\r\n_Mir._ ’Tis a villain, sir,\r\nI do not love to look on.\r\n\r\n_Pros._ But, as ’tis, 310\r\nWe cannot miss him: he does make our fire,\r\nFetch in our wood, and serves in offices\r\nThat profit us. What, ho! slave! Caliban!\r\nThou earth, thou! speak.\r\n\r\n_Cal._ [_within_] There’s wood enough within.\r\n\r\n_Pros._ Come forth, I say! there’s other business for thee: 315\r\nCome, thou tortoise! when?\r\n\r\n _Re-enter ARIEL like a water-nymph._\r\n\r\nFine apparition! My quaint Ariel,\r\nHark in thine ear.\r\n\r\n_Ari._ My lord, it shall be done. [_Exit._\r\n\r\n_Pros._ Thou poisonous slave, got by the devil himself\r\nUpon thy wicked dam, come forth! 320\r\n\r\n _Enter CALIBAN._\r\n\r\n_Cal._ As wicked dew as e’er my mother brush’d\r\nWith raven’s feather from unwholesome fen\r\nDrop on you both! a south-west blow on ye\r\nAnd blister you all o’er!\r\n\r\n_Pros._ For this, be sure, to-night thou shalt have cramps, 325\r\nSide-stitches that shall pen thy breath up; urchins\r\nShall, for that vast of night that they may work,\r\nAll exercise on thee; thou shalt be pinch’d\r\nAs thick as honeycomb, each pinch more stinging\r\nThan bees that made ’em.\r\n\r\n_Cal._ I must eat my dinner. 330\r\nThis island’s mine, by Sycorax my mother,\r\nWhich thou takest from me. When thou camest first,\r\nThou strokedst me, and madest much of me; wouldst give me\r\nWater with berries in’t; and teach me how\r\nTo name the bigger light, and how the less, 335\r\nThat burn by day and night: and then I loved thee,\r\nAnd show’d thee all the qualities o’ th’ isle,\r\nThe fresh springs, brine-pits, barren place and fertile:\r\nCurs’d be I that did so! All the charms\r\nOf Sycorax, toads, beetles, bats, light on you! 340\r\nFor I am all the subjects that you have,\r\nWhich first was mine own king: and here you sty me\r\nIn this hard rock, whiles you do keep from me\r\nThe rest o’ th’ island.\r\n\r\n_Pros._ Thou most lying slave,\r\nWhom stripes may move, not kindness! I have used thee, 345\r\nFilth as thou art, with human care; and lodged thee\r\nIn mine own cell, till thou didst seek to violate\r\nThe honour of my child.\r\n\r\n_Cal._ O ho, O ho! would ’t had been done!\r\nThou didst prevent me; I had peopled else 350\r\nThis isle with Calibans.\r\n\r\n_Pros._ Abhorred slave,\r\nWhich any print of goodness wilt not take,\r\nBeing capable of all ill! I pitied thee,\r\nTook pains to make thee speak, taught thee each hour\r\nOne thing or other: when thou didst not, savage, 355\r\nKnow thine own meaning, but wouldst gabble like\r\nA thing most brutish, I endow’d thy purposes\r\nWith words that made them known. But thy vile race,\r\nThough thou didst learn, had that in’t which good natures\r\nCould not abide to be with; therefore wast thou 360\r\nDeservedly confined into this rock,\r\nWho hadst deserved more than a prison.\r\n\r\n_Cal._ You taught me language; and my profit on’t\r\nIs, I know how to curse. The red plague rid you\r\nFor learning me your language!\r\n\r\n_Pros._ Hag-seed, hence! 365\r\nFetch us in fuel; and be quick, thou’rt best,\r\nTo answer other business. Shrug’st thou, malice?\r\nIf thou neglect’st, or dost unwillingly\r\nWhat I command, I’ll rack thee with old cramps,\r\nFill all thy bones with aches, make thee roar, 370\r\nThat beasts shall tremble at thy din.\r\n\r\n_Cal._ No, pray thee.\r\n[_Aside_] I must obey: his art is of such power,\r\nIt would control my dam’s god, Setebos,\r\nAnd make a vassal of him.\r\n\r\n_Pros._ So, slave; hence! [_Exit Caliban._\r\n\r\n _Re-enter ARIEL, invisible, playing and singing; FERDINAND\r\n following._\r\n\r\n_ARIEL’S song._\r\n\r\n Come unto these yellow sands, 375\r\n And then take hands:\r\n Courtsied when you have and kiss’d\r\n The wild waves whist:\r\n Foot it featly here and there;\r\n And, sweet sprites, the burthen bear. 380\r\n\r\n _Burthen_ [_dispersedly_]. Hark, hark!\r\n Bow-wow.\r\n The watch-dogs bark:\r\n Bow-wow.\r\n\r\n_Ari._ Hark, hark! I hear\r\n The strain of strutting chanticleer 385\r\n Cry, Cock-a-diddle-dow.\r\n\r\n_Fer._ Where should this music be? i’ th’ air or th’ earth?\r\nIt sounds no more: and, sure, it waits upon\r\nSome god o’ th’ island. Sitting on a bank,\r\nWeeping again the king my father’s wreck, 390\r\nThis music crept by me upon the waters,\r\nAllaying both their fury and my passion\r\nWith its sweet air: thence I have follow’d it.\r\nOr it hath drawn me rather. But ’tis gone.\r\nNo, it begins again. 395\r\n\r\n_ARIEL sings._\r\n\r\n Full fathom five thy father lies;\r\n Of his bones are coral made;\r\n Those are pearls that were his eyes:\r\n Nothing of him that doth fade,\r\n But doth suffer a sea-change 400\r\n Into something rich and strange.\r\n Sea-nymphs hourly ring his knell:\r\n\r\n _Burthen:_ Ding-dong.\r\n\r\n_Ari._ Hark! now I hear them,--Ding-dong, bell.\r\n\r\n_Fer._ The ditty does remember my drown’d father. 405\r\nThis is no mortal business, nor no sound\r\nThat the earth owes:--I hear it now above me.\r\n\r\n_Pros._ The fringed curtains of thine eye advance,\r\nAnd say what thou seest yond.\r\n\r\n_Mir._ What is’t? a spirit?\r\nLord, how it looks about! Believe me, sir, 410\r\nIt carries a brave form. But ’tis a spirit.\r\n\r\n_Pros._ No, wench; it eats and sleeps and hath such senses\r\nAs we have, such. This gallant which thou seest\r\nWas in the wreck; and, but he’s something stain’d\r\nWith grief, that’s beauty’s canker, thou mightst call him 415\r\nA goodly person: he hath lost his fellows,\r\nAnd strays about to find ’em.\r\n\r\n_Mir._ I might call him\r\nA thing divine; for nothing natural\r\nI ever saw so noble.\r\n\r\n_Pros._ [_Aside_] It goes on, I see,\r\nAs my soul prompts it. Spirit, fine spirit! I’ll free thee 420\r\nWithin two days for this.\r\n\r\n_Fer._ Most sure, the goddess\r\nOn whom these airs attend! Vouchsafe my prayer\r\nMay know if you remain upon this island;\r\nAnd that you will some good instruction give\r\nHow I may bear me here: my prime request, 425\r\nWhich I do last pronounce, is, O you wonder!\r\nIf you be maid or no?\r\n\r\n_Mir._ No wonder, sir;\r\nBut certainly a maid.\r\n\r\n_Fer._ My language! heavens!\r\nI am the best of them that speak this speech,\r\nWere I but where ’tis spoken.\r\n\r\n_Pros._ How? the best? 430\r\nWhat wert thou, if the King of Naples heard thee?\r\n\r\n_Fer._ A single thing, as I am now, that wonders\r\nTo hear thee speak of Naples. He does hear me;\r\nAnd that he does I weep: myself am Naples,\r\nWho with mine eyes, never since at ebb, beheld 435\r\nThe king my father wreck’d.\r\n\r\n_Mir._ Alack, for mercy!\r\n\r\n_Fer._ Yes, faith, and all his lords; the Duke of Milan\r\nAnd his brave son being twain.\r\n\r\n_Pros._ [_Aside_] The Duke of Milan\r\nAnd his more braver daughter could control thee,\r\nIf now ’twere fit to do’t. At the first sight 440\r\nThey have changed eyes. Delicate Ariel,\r\nI’ll set thee free for this. [_To Fer._] A word, good sir;\r\nI fear you have done yourself some wrong: a word.\r\n\r\n_Mir._ Why speaks my father so ungently? This\r\nIs the third man that e’er I saw; the first 445\r\nThat e’er I sigh’d for: pity move my father\r\nTo be inclined my way!\r\n\r\n_Fer._ O, if a virgin,\r\nAnd your affection not gone forth, I’ll make you\r\nThe queen of Naples.\r\n\r\n_Pros._ Soft, sir! one word more.\r\n[_Aside_] They are both in either’s powers:\r\n but this swift business 450\r\nI must uneasy make, lest too light winning\r\nMake the prize light. [_To Fer._] One word more; I charge thee\r\nThat thou attend me: thou dost here usurp\r\nThe name thou owest not; and hast put thyself\r\nUpon this island as a spy, to win it 455\r\nFrom me, the lord on’t.\r\n\r\n_Fer._ No, as I am a man.\r\n\r\n_Mir._ There’s nothing ill can dwell in such a temple:\r\nIf the ill spirit have so fair a house,\r\nGood things will strive to dwell with’t.\r\n\r\n_Pros._ Follow me.\r\nSpeak not you for him; he’s a traitor. Come; 460\r\nI’ll manacle thy neck and feet together:\r\nSea-water shalt thou drink; thy food shall be\r\nThe fresh-brook muscles, wither’d roots, and husks\r\nWherein the acorn cradled. Follow.\r\n\r\n_Fer._ No;\r\nI will resist such entertainment till 465\r\nMine enemy has more power.\r\n [_Draws, and is charmed from moving._\r\n\r\n_Mir._ O dear father,\r\nMake not too rash a trial of him, for\r\nHe’s gentle, and not fearful.\r\n\r\n_Pros._ What! I say,\r\nMy foot my tutor? Put thy sword up, traitor;\r\nWho makest a show, but darest not strike, thy conscience 470\r\nIs so possess’d with guilt: come from thy ward;\r\nFor I can here disarm thee with this stick\r\nAnd make thy weapon drop.\r\n\r\n_Mir._ Beseech you, father.\r\n\r\n_Pros._ Hence! hang not on my garments.\r\n\r\n_Mir._ Sir, have pity;\r\nI’ll be his surety.\r\n\r\n_Pros._ Silence! one word more 475\r\nShall make me chide thee, if not hate thee. What!\r\nAn advocate for an impostor! hush!\r\nThou think’st there is no more such shapes as he,\r\nHaving seen but him and Caliban: foolish wench!\r\nTo the most of men this is a Caliban, 480\r\nAnd they to him are angels.\r\n\r\n_Mir._ My affections\r\nAre, then, most humble; I have no ambition\r\nTo see a goodlier man.\r\n\r\n_Pros._ Come on; obey:\r\nThy nerves are in their infancy again,\r\nAnd have no vigour in them.\r\n\r\n_Fer._ So they are: 485\r\nMy spirits, as in a dream, are all bound up.\r\nMy father’s loss, the weakness which I feel,\r\nThe wreck of all my friends, nor this man’s threats,\r\nTo whom I am subdued, are but light to me,\r\nMight I but through my prison once a day 490\r\nBehold this maid: all corners else o’ th’ earth\r\nLet liberty make use of; space enough\r\nHave I in such a prison.\r\n\r\n_Pros._ [_Aside_] It works. [_To Fer._] Come on.\r\nThou hast done well, fine Ariel! [_To Fer._] Follow me.\r\n[_To Ari._] Hark what thou else shalt do me.\r\n\r\n_Mir._ Be of comfort; 495\r\nMy father’s of a better nature, sir,\r\nThan he appears by speech: this is unwonted\r\nWhich now came from him.\r\n\r\n_Pros._ Thou shalt be as free\r\nAs mountain winds: but then exactly do\r\nAll points of my command.\r\n\r\n_Ari._ To the syllable. 500\r\n\r\n_Pros._ Come, follow. Speak not for him. [_Exeunt._\r\n\r\n\r\n Notes: I, 2.\r\n\r\n 3: _stinking_] _flaming_ Singer conj. _kindling_ S. Verges conj.\r\n 4: _cheek_] _heat_ Collier MS. _crack_ Staunton conj.\r\n 7: _creature_] _creatures_ Theobald.\r\n 13: _fraughting_] Ff. _fraighted_ Pope. _fraighting_ Theobald.\r\n _freighting_ Steevens.\r\n 15: Mir. _O, woe the day!_ Pros. _No harm._] Mir. _O woe the day!\r\n no harm?_ Johnson conj.\r\n 19: _I am more better_] _I’m more or better_ Pope.\r\n 24: [Lays ... mantle] Pope.\r\n 28: _provision_] F1. _compassion_ F2 F3 F4. _prevision_ Hunter conj.\r\n 29: _soul_] _soul lost_ Rowe. _foyle_ Theobald. _soil_ Johnson conj.\r\n _loss_ Capell. _foul_ Wright conj.\r\n 31: _betid_] F1. _betide_ F2 F3 F4.\r\n 35: _a_] F1. _the_ F2 F3 F4.\r\n 38: _thou_] om. Pope.\r\n 41: _Out_] _Full_ Pope (after Dryden). _Quite_ Collier MS.\r\n 44: _with_] _in_ Pope (after Dryden).\r\n 53: _Twelve year ... year_] _Tis twelve years ... years_ Pope.\r\n 58, 59: _and his only heir And princess_] _and his only heir\r\n A princess_ Pope. _thou his only heir And princess_ Steevens.\r\n _and though his only heir A princess_] Johnson conj.\r\n 63: _holp_] _help’d_ Pope.\r\n _O, my heart_] _My heart_ Pope.\r\n 78: _me_] om. F3 F4.\r\n 80: _whom ... whom_] F2 F3 F4. _who ... who_ F1.\r\n 81: _trash_] _plash_ Hanmer.\r\n 82, 83: _’em ... ’em_] _them ... them_ Capell.\r\n 84: _i’ the state_] _i’th state_ F1. _e’th state_ F2.\r\n _o’th state_ F3 F4. om. Pope.\r\n 88: _O, good sir ... mark me._] _Good sir ... mark me then._ Pope.\r\n _O yes, good sir ... mark me._ Capell.\r\n Mir. _O, ... do._ Pros. _I ... me_] _I ... me._ Mir. _O ... do._\r\n Steevens.\r\n 89: _dedicated_] _dedicate_ Steevens (Ritson conj.).\r\n 91: _so_] F1. om. F2 F3 F4.\r\n 97: _lorded_] _loaded_ Collier MS.\r\n 99: _exact, like_] _exact. Like_ Ff.\r\n 100: _having into truth ... of it_] _loving an untruth, and telling\r\n ’t oft_ Hanmer. _having unto truth ... oft_ Warburton. _having to\r\n untruth ... of it_ Collier MS. _having sinn’d to truth ... oft_\r\n Musgrave conj.\r\n _telling_] _quelling_ S. Verges conj.\r\n 101: _Made ... memory_] _Makes ... memory_ Hanmer. _Makes ...\r\n memory too_ Musgrave conj.\r\n 103: _indeed the duke_] _the duke_ Steevens. _indeed duke_ S. Walker\r\n conj.\r\n _out o’ the_] _from_ Pope.\r\n 105: _his_] _is_ F2.\r\n 105, 106: _ambition growing_] _ambition Growing_ Steevens.\r\n 106: _hear?_] _hear, child?_ Hanmer.\r\n 109: _Milan_] _Millanie_ F1 (Capell’s copy).\r\n 112: _wi’ the_] Capell. _with_ Ff. _wi’ th’_ Rowe. _with the_\r\n Steevens.\r\n 116: _most_] F1. _much_ F2 F3 F4.\r\n 119: _but_] _not_ Pope.\r\n 120: _Good ... sons_] Theobald suggested that these words should be\r\n given to Prospero. Hanmer prints them so.\r\n 122: _hearkens_] _hears_ Pope. _hearks_ Theobald.\r\n 129: _Fated_] _Mated_ Dryden’s version.\r\n _purpose_] _practise_ Collier MS.\r\n 131: _ministers_] _minister_ Rowe.\r\n 133: _out_] _on’t_ Steevens conj.\r\n 135: _to ’t_] om. Steevens (Farmer conj.).\r\n 138: _Wherefore_] _Why_ Pope.\r\n 141: _me_] om. Pope.\r\n 146: _boat_] Rowe (after Dryden). _butt_ F1 F2 F3. _but_ F4.\r\n _busse_ Black conj.\r\n 147: _sail_] F1. _nor sail_ F2 F3 F4.\r\n 148: _have_] _had_ Rowe (after Dryden).\r\n 150: _the winds_] _winds_ Pope.\r\n 155: _deck’d_] _brack’d_ Hanmer. _mock’d_ Warburton. _fleck’d_\r\n Johnson conj. _degg’d_ anon. ap. Reed conj.\r\n 162: _who_] om. Pope. _he_ Steevens conj.\r\n 169: _Now I arise_] Continued to Miranda. Blackstone conj.\r\n [Resumes his mantle] om. Ff. [Put on robe again. Collier MS.\r\n 173: _princesses_] _princesse_ F1 F2 F3. _princess_ F4.\r\n _princes_ Rowe. _princess’_ Dyce (S. Walker conj.). See note (III).\r\n 186: [M. sleeps] Theobald.\r\n 189: SCENE III. Pope.\r\n 190: _be’t_] F1. _be it_ F2 F3 F4.\r\n 193: _quality_] _qualities_ Pope (after Dryden).\r\n 198: _sometime_] F1. _sometimes_ F2 F3 F4.\r\n 200: _bowsprit_] _bore-sprit_ Ff. _bolt-sprit_ Rowe.\r\n 201: _lightnings_] Theobald. _lightning_ Ff.\r\n 202: _o’ the_] _of_ Pope.\r\n _thunder-claps_] _thunder-clap_ Johnson.\r\n 205: _Seem_] _Seem’d_ Theobald.\r\n 206: _dread_] F1. _dead_ F2 F3 F4.\r\n _My brave_] _My brave, brave_ Theobald. _That’s my brave_ Hanmer.\r\n 209: _mad_] _mind_ Pope (after Dryden).\r\n 211, 212: _vessel, ... son_] _vessell; Then all a fire with me\r\n the King’s sonne_ Ff.\r\n 218: _sustaining_] _sea-stained_ Edwards conj. _unstaining_ or\r\n _sea-staining_ Spedding conj.\r\n 229: _Bermoothes_] _Bermudas_ Theobald.\r\n 231: _Who_] _Whom_ Hanmer.\r\n 234: _are_] _all_ Collier MS.\r\n _upon_] _on_ Pope.\r\n 239-240: Ari. _Past the mid season._ Pros. _At least two glasses_]\r\n Ari. _Past the mid season at least two glasses._ Warburton.\r\n Pros. _... Past the mid season?_ Ari. _At least two glasses_\r\n Johnson conj.\r\n 244: _How now? moody?_] _How now, moody!_ Dyce (so Dryden, ed. 1808).\r\n 245: _What_] F1. _Which_ F2 F3 F4.\r\n 248: _made thee_] Ff. _made_ Pope.\r\n 249: _didst_] F3 F4. _did_ F1 F2.\r\n 264: _and sorceries_] _sorceries too_ Hanmer.\r\n 267: _Is not this true?_] _Is this not true?_ Pope.\r\n 271: _wast then_] Rowe (after Dryden). _was then_ Ff.\r\n 273: _earthy_] _earthly_ Pope.\r\n 282: _son_] F1. _sunne_ F2. _sun_ F3 F4.\r\n _she_] Rowe (after Dryden). _he_ Ff.\r\n 298: See note (IV).\r\n 301: _like_] F1. _like to_ F2 F3 F4.\r\n 302: _Be subject to_] _be subject To_ Malone.\r\n _but thine and mine_] _but mine_ Pope.\r\n 304: _in’t_] _in it_ Pope.\r\n _go, hence_] _goe: hence_ Ff. _go hence_ Pope. _hence_ Hanmer.\r\n 307: _Heaviness_] _Strange heaviness_ Edd. conj.\r\n 312: _serves in offices_] F1. _serves offices_ F2 F3 F4.\r\n _serveth offices_ Collier MS.\r\n 316: _Come, thou tortoise! when?_] om. Pope.\r\n _Come_] _Come forth_ Steevens.]\r\n 320: _come forth!_] _come forth, thou tortoise!_ Pope.\r\n 321: SCENE IV. Pope.\r\n 332: _camest_] Rowe. _cam’st_ Ff. _cam’st here_ Ritson conj.\r\n 333: _madest_] Rowe (after Dryden). _made_ Ff.\r\n 339: _Curs’d be I that_] F1. _Curs’d be I that I_ F2 F3 F4.\r\n _cursed be I that_ Steevens.\r\n 342: _Which_] _Who_ Pope, and at line 351.\r\n 346: _thee_] om. F4.\r\n 349: _would ’t_] Ff. _I wou’d it_ Pope.\r\n 351: Pros.] Theobald (after Dryden). Mira. Ff.\r\n 352: _wilt_] F1. _will_ F2 F3 F4.\r\n 355, 356: _didst not ... Know_] _couldst not ... Shew_ Hanmer.\r\n 356: _wouldst_] _didst_ Hanmer.\r\n 361, 362: _Deservedly ... deserved_] _Justly ... who hadst Deserv’d_\r\n S. Walker conj. _Confin’d ... deserv’d_ id. conj.\r\n 362: _Who ... prison_] om. Pope (after Dryden).\r\n 366: _thou’rt_] F1 F2 F3. _thou art_ F4. _thou wer’t_ Rowe.\r\n 375: SCENE V. Pope.\r\n following.] Malone.\r\n 378: _The wild waves whist_] Printed as a parenthesis by Steevens.\r\n See note (V).\r\n 380: _the burthen bear_] Pope. _bear the burthen_ Ff.\r\n 381-383: Steevens gives _Hark, hark! The watch-dogs bark_ to Ariel.\r\n 387: _i’ th’ air or th’ earth?_] _in air or earth?_ Pope.\r\n 390: _again_] _against_ Rowe (after Dryden).\r\n 407: _owes_] _owns_ Pope (after Dryden), but leaves _ow’st_ 454.\r\n 408: SCENE VI. Pope.\r\n 419: _It goes on, I see,_] _It goes, I see_ Capell. _It goes on_\r\n Steevens.\r\n 420: _fine spirit!_] om. Hanmer.\r\n 427: _maid_] F3. _mayd_ F1 F2. _made_ F4.\r\n 443: See note (VI).\r\n 444: _ungently_] F1. _urgently_ F2 F3 F4.\r\n 451: _lest_] F4. _least_ F1 F2 F3.\r\n 452: _One_] _Sir, one_ Pope.\r\n _I charge thee_] _I charge thee_ [to Ariel. Pope.\r\n 460: Pros. prefixed again to this line in Ff.\r\n 468: _and_] _tho’_ Hanmer.\r\n 469: _foot_] _fool_ S. Walker conj. _child_ Dryden’s version.\r\n 470: _makest_] _mak’st_ F1. _makes_ F2 F3 F4.\r\n 471: _so_] F1. om. F2 F3 F4. _all_ Pope.\r\n 478: _is_] _are_ Rowe.\r\n 488: _nor_] _and_ Rowe (after Dryden). _or_ Capell.\r\n 489: _are_] _were_ Malone conj.\r\n\r\n\r\n\r\n\r\nACT II.\r\n\r\n\r\nSCENE I. _Another part of the island._\r\n\r\n _Enter ALONSO, SEBASTIAN, ANTONIO, GONZALO, ADRIAN, FRANCISCO,\r\n and others._\r\n\r\n_Gon._ Beseech you, sir, be merry; you have cause,\r\nSo have we all, of joy; for our escape\r\nIs much beyond our loss. Our hint of woe\r\nIs common; every day, some sailor’s wife,\r\nThe masters of some merchant, and the merchant, 5\r\nHave just our theme of woe; but for the miracle,\r\nI mean our preservation, few in millions\r\nCan speak like us: then wisely, good sir, weigh\r\nOur sorrow with our comfort.\r\n\r\n_Alon._ Prithee, peace.\r\n\r\n_Seb._ He receives comfort like cold porridge. 10\r\n\r\n_Ant._ The visitor will not give him o’er so.\r\n\r\n_Seb._ Look, he’s winding up the watch of his wit; by\r\nand by it will strike.\r\n\r\n_Gon._ Sir,--\r\n\r\n_Seb._ One: tell. 15\r\n\r\n_Gon._ When every grief is entertain’d that’s offer’d,\r\nComes to the entertainer--\r\n\r\n_Seb._ A dollar.\r\n\r\n_Gon._ Dolour comes to him, indeed: you have spoken\r\ntruer than you purposed. 20\r\n\r\n_Seb._ You have taken it wiselier than I meant you should.\r\n\r\n_Gon._ Therefore, my lord,--\r\n\r\n_Ant._ Fie, what a spendthrift is he of his tongue!\r\n\r\n_Alon._ I prithee, spare.\r\n\r\n_Gon._ Well, I have done: but yet,-- 25\r\n\r\n_Seb._ He will be talking.\r\n\r\n_Ant._ Which, of he or Adrian, for a good wager, first\r\nbegins to crow?\r\n\r\n_Seb._ The old cock.\r\n\r\n_Ant._ The cockerel. 30\r\n\r\n_Seb._ Done. The wager?\r\n\r\n_Ant._ A laughter.\r\n\r\n_Seb._ A match!\r\n\r\n_Adr._ Though this island seem to be desert,--\r\n\r\n_Seb._ Ha, ha, ha!--So, you’re paid. 35\r\n\r\n_Adr._ Uninhabitable, and almost inaccessible,--\r\n\r\n_Seb._ Yet,--\r\n\r\n_Adr._ Yet,--\r\n\r\n_Ant._ He could not miss’t.\r\n\r\n_Adr._ It must needs be of subtle, tender and delicate 40\r\ntemperance.\r\n\r\n_Ant._ Temperance was a delicate wench.\r\n\r\n_Seb._ Ay, and a subtle; as he most learnedly delivered.\r\n\r\n_Adr._ The air breathes upon us here most sweetly.\r\n\r\n_Seb._ As if it had lungs, and rotten ones. 45\r\n\r\n_Ant._ Or as ’twere perfumed by a fen.\r\n\r\n_Gon._ Here is every thing advantageous to life.\r\n\r\n_Ant._ True; save means to live.\r\n\r\n_Seb._ Of that there’s none, or little.\r\n\r\n_Gon._ How lush and lusty the grass looks! how green! 50\r\n\r\n_Ant._ The ground, indeed, is tawny.\r\n\r\n_Seb._ With an eye of green in’t.\r\n\r\n_Ant._ He misses not much.\r\n\r\n_Seb._ No; he doth but mistake the truth totally.\r\n\r\n_Gon._ But the rarity of it is,--which is indeed almost 55\r\nbeyond credit,--\r\n\r\n_Seb._ As many vouched rarities are.\r\n\r\n_Gon._ That our garments, being, as they were, drenched\r\nin the sea, hold, notwithstanding, their freshness and glosses,\r\nbeing rather new-dyed than stained with salt water. 60\r\n\r\n_Ant._ If but one of his pockets could speak, would it\r\nnot say he lies?\r\n\r\n_Seb._ Ay, or very falsely pocket up his report.\r\n\r\n_Gon._ Methinks our garments are now as fresh as when\r\nwe put them on first in Afric, at the marriage of the king’s 65\r\nfair daughter Claribel to the King of Tunis.\r\n\r\n_Seb._ ’Twas a sweet marriage, and we prosper well in\r\nour return.\r\n\r\n_Adr._ Tunis was never graced before with such a paragon\r\nto their queen. 70\r\n\r\n_Gon._ Not since widow Dido’s time.\r\n\r\n_Ant._ Widow! a pox o’ that! How came that widow\r\nin? widow Dido!\r\n\r\n_Seb._ What if he had said ‘widower Æneas’ too? Good\r\nLord, how you take it! 75\r\n\r\n_Adr._ ‘Widow Dido’ said you? you make me study of\r\nthat: she was of Carthage, not of Tunis.\r\n\r\n_Gon._ This Tunis, sir, was Carthage.\r\n\r\n_Adr._ Carthage?\r\n\r\n_Gon._ I assure you, Carthage. 80\r\n\r\n_Seb._ His word is more than the miraculous harp; he\r\nhath raised the wall, and houses too.\r\n\r\n_Ant._ What impossible matter will he make easy next?\r\n\r\n_Seb._ I think he will carry this island home in his\r\npocket, and give it his son for an apple. 85\r\n\r\n_Ant._ And, sowing the kernels of it in the sea, bring\r\nforth more islands.\r\n\r\n_Gon._ Ay.\r\n\r\n_Ant._ Why, in good time.\r\n\r\n_Gon._ Sir, we were talking that our garments seem now 90\r\nas fresh as when we were at Tunis at the marriage of your\r\ndaughter, who is now queen.\r\n\r\n_Ant._ And the rarest that e’er came there.\r\n\r\n_Seb._ Bate, I beseech you, widow Dido.\r\n\r\n_Ant._ O, widow Dido! ay, widow Dido. 95\r\n\r\n_Gon._ Is not, sir, my doublet as fresh as the first day I\r\nwore it? I mean, in a sort.\r\n\r\n_Ant._ That sort was well fished for.\r\n\r\n_Gon._ When I wore it at your daughter’s marriage?\r\n\r\n_Alon._ You cram these words into mine ears against 100\r\nThe stomach of my sense. Would I had never\r\nMarried my daughter there! for, coming thence,\r\nMy son is lost, and, in my rate, she too.\r\nWho is so far from Italy removed\r\nI ne’er again shall see her. O thou mine heir 105\r\nOf Naples and of Milan, what strange fish\r\nHath made his meal on thee?\r\n\r\n_Fran._ Sir, he may live:\r\nI saw him beat the surges under him,\r\nAnd ride upon their backs; he trod the water.\r\nWhose enmity he flung aside, and breasted 110\r\nThe surge most swoln that met him; his bold head\r\n’Bove the contentious waves he kept, and oar’d\r\nHimself with his good arms in lusty stroke\r\nTo the shore, that o’er his wave-worn basis bow’d,\r\nAs stooping to relieve him: I not doubt 115\r\nHe came alive to land.\r\n\r\n_Alon._ No, no, he’s gone.\r\n\r\n_Seb._ Sir, you may thank yourself for this great loss,\r\nThat would not bless our Europe with your daughter,\r\nBut rather lose her to an African;\r\nWhere she, at least, is banish’d from your eye, 120\r\nWho hath cause to wet the grief on’t.\r\n\r\n_Alon._ Prithee, peace.\r\n\r\n_Seb._ You were kneel’d to, and importuned otherwise,\r\nBy all of us; and the fair soul herself\r\nWeigh’d between loathness and obedience, at\r\nWhich end o’ the beam should bow. We have lost your son, 125\r\nI fear, for ever: Milan and Naples have\r\nMore widows in them of this business’ making\r\nThan we bring men to comfort them:\r\nThe fault’s your own.\r\n\r\n_Alon._ So is the dear’st o’ the loss.\r\n\r\n_Gon._ My lord Sebastian, 130\r\nThe truth you speak doth lack some gentleness,\r\nAnd time to speak it in: you rub the sore,\r\nWhen you should bring the plaster.\r\n\r\n_Seb._ Very well.\r\n\r\n_Ant._ And most chirurgeonly.\r\n\r\n_Gon._ It is foul weather in us all, good sir, 135\r\nWhen you are cloudy.\r\n\r\n_Seb._ Foul weather?\r\n\r\n_Ant._ Very foul.\r\n\r\n_Gon._ Had I plantation of this isle, my lord,--\r\n\r\n_Ant._ He’ld sow’t with nettle-seed.\r\n\r\n_Seb._ Or docks, or mallows.\r\n\r\n_Gon._ And were the king on’t, what would I do?\r\n\r\n_Seb._ ’Scape being drunk for want of wine. 140\r\n\r\n_Gon._ I’ the commonwealth I would by contraries\r\nExecute all things; for no kind of traffic\r\nWould I admit; no name of magistrate;\r\nLetters should not be known; riches, poverty,\r\nAnd use of service, none; contract, succession, 145\r\nBourn, bound of land, tilth, vineyard, none;\r\nNo use of metal, corn, or wine, or oil;\r\nNo occupation; all men idle, all;\r\nAnd women too, but innocent and pure;\r\nNo sovereignty;-- 150\r\n\r\n_Seb._ Yet he would be king on’t.\r\n\r\n_Ant._ The latter end of his commonwealth forgets the\r\nbeginning.\r\n\r\n_Gon._ All things in common nature should produce\r\nWithout sweat or endeavour: treason, felony,\r\nSword, pike, knife, gun, or need of any engine, 155\r\nWould I not have; but nature should bring forth,\r\nOf its own kind, all foison, all abundance,\r\nTo feed my innocent people.\r\n\r\n_Seb._ No marrying ’mong his subjects?\r\n\r\n_Ant._ None, man; all idle; whores and knaves. 160\r\n\r\n_Gon._ I would with such perfection govern, sir,\r\nTo excel the golden age.\r\n\r\n_Seb._ ’Save his majesty!\r\n\r\n_Ant._ Long live Gonzalo!\r\n\r\n_Gon._ And,--do you mark me, sir?\r\n\r\n_Alon._ Prithee, no more: thou dost talk nothing to me.\r\n\r\n_Gon._ I do well believe your highness; and did it to minister 165\r\noccasion to these gentlemen, who are of such sensible\r\nand nimble lungs that they always use to laugh at nothing.\r\n\r\n_Ant._ ’Twas you we laughed at.\r\n\r\n_Gon._ Who in this kind of merry fooling am nothing to\r\nyou: so you may continue, and laugh at nothing still. 170\r\n\r\n_Ant._ What a blow was there given!\r\n\r\n_Seb._ An it had not fallen flat-long.\r\n\r\n_Gon._ You are gentlemen of brave mettle; you would\r\nlift the moon out of her sphere, if she would continue in it\r\nfive weeks without changing. 175\r\n\r\n\r\n _Enter ARIEL (invisible) playing solemn music._\r\n\r\n_Seb._ We would so, and then go a bat-fowling.\r\n\r\n_Ant._ Nay, good my lord, be not angry.\r\n\r\n_Gon._ No, I warrant you; I will not adventure my discretion\r\nso weakly. Will you laugh me asleep, for I am very\r\nheavy? 180\r\n\r\n_Ant._ Go sleep, and hear us.\r\n [_All sleep except Alon., Seb., and Ant._\r\n\r\n_Alon._ What, all so soon asleep! I wish mine eyes\r\nWould, with themselves, shut up my thoughts: I find\r\nThey are inclined to do so.\r\n\r\n_Seb._ Please you, sir,\r\nDo not omit the heavy offer of it: 185\r\nIt seldom visits sorrow; when it doth,\r\nIt is a comforter.\r\n\r\n_Ant._ We two, my lord,\r\nWill guard your person while you take your rest,\r\nAnd watch your safety.\r\n\r\n_Alon._ Thank you.--Wondrous heavy.\r\n [_Alonso sleeps. Exit Ariel._\r\n\r\n_Seb._ What a strange drowsiness possesses them! 190\r\n\r\n_Ant._ It is the quality o’ the climate.\r\n\r\n_Seb._ Why\r\nDoth it not then our eyelids sink? I find not\r\nMyself disposed to sleep.\r\n\r\n_Ant._ Nor I; my spirits are nimble.\r\nThey fell together all, as by consent;\r\nThey dropp’d, as by a thunder-stroke. What might, 195\r\nWorthy Sebastian?--O, what might?--No more:--\r\nAnd yet methinks I see it in thy face,\r\nWhat thou shouldst be: the occasion speaks thee; and\r\nMy strong imagination sees a crown\r\nDropping upon thy head.\r\n\r\n_Seb._ What, art thou waking? 200\r\n\r\n_Ant._ Do you not hear me speak?\r\n\r\n_Seb._ I do; and surely\r\nIt is a sleepy language, and thou speak’st\r\nOut of thy sleep. What is it thou didst say?\r\nThis is a strange repose, to be asleep\r\nWith eyes wide open; standing, speaking, moving, 205\r\nAnd yet so fast asleep.\r\n\r\n_Ant._ Noble Sebastian,\r\nThou let’st thy fortune sleep--die, rather; wink’st\r\nWhiles thou art waking.\r\n\r\n_Seb._ Thou dost snore distinctly;\r\nThere’s meaning in thy snores.\r\n\r\n_Ant._ I am more serious than my custom: you 210\r\nMust be so too, if heed me; which to do\r\nTrebles thee o’er.\r\n\r\n_Seb._ Well, I am standing water.\r\n\r\n_Ant._ I’ll teach you how to flow.\r\n\r\n_Seb._ Do so: to ebb\r\nHereditary sloth instructs me.\r\n\r\n_Ant._ O,\r\nIf you but knew how you the purpose cherish 215\r\nWhiles thus you mock it! how, in stripping it,\r\nYou more invest it! Ebbing men, indeed,\r\nMost often do so near the bottom run\r\nBy their own fear or sloth.\r\n\r\n_Seb._ Prithee, say on:\r\nThe setting of thine eye and cheek proclaim 220\r\nA matter from thee; and a birth, indeed,\r\nWhich throes thee much to yield.\r\n\r\n_Ant._ Thus, sir:\r\nAlthough this lord of weak remembrance, this,\r\nWho shall be of as little memory\r\nWhen he is earth’d, hath here almost persuaded,-- 225\r\nFor he’s a spirit of persuasion, only\r\nProfesses to persuade,--the king his son’s alive,\r\n’Tis as impossible that he’s undrown’d\r\nAs he that sleeps here swims.\r\n\r\n_Seb._ I have no hope\r\nThat he’s undrown’d.\r\n\r\n_Ant._ O, out of that ‘no hope’ 230\r\nWhat great hope have you! no hope that way is\r\nAnother way so high a hope that even\r\nAmbition cannot pierce a wink beyond,\r\nBut doubt discovery there. Will you grant with me\r\nThat Ferdinand is drown’d?\r\n\r\n_Seb._ He’s gone.\r\n\r\n_Ant._ Then, tell me, 235\r\nWho’s the next heir of Naples?\r\n\r\n_Seb._ Claribel.\r\n\r\n_Ant._ She that is queen of Tunis; she that dwells\r\nTen leagues beyond man’s life; she that from Naples\r\nCan have no note, unless the sun were post,--\r\nThe man i’ the moon’s too slow,--till new-born chins 240\r\nBe rough and razorable; she that from whom\r\nWe all were sea-swallow’d, though some cast again,\r\nAnd by that destiny, to perform an act\r\nWhereof what’s past is prologue; what to come,\r\nIn yours and my discharge.\r\n\r\n_Seb._ What stuff is this! How say you? 245\r\n’Tis true, my brother’s daughter’s queen of Tunis;\r\nSo is she heir of Naples; ’twixt which regions\r\nThere is some space.\r\n\r\n_Ant._ A space whose every cubit\r\nSeems to cry out, “How shall that Claribel\r\nMeasure us back to Naples? Keep in Tunis, 250\r\nAnd let Sebastian wake.” Say, this were death\r\nThat now hath seized them; why, they were no worse\r\nThan now they are. There be that can rule Naples\r\nAs well as he that sleeps; lords that can prate\r\nAs amply and unnecessarily 255\r\nAs this Gonzalo; I myself could make\r\nA chough of as deep chat. O, that you bore\r\nThe mind that I do! what a sleep were this\r\nFor your advancement! Do you understand me?\r\n\r\n_Seb._ Methinks I do.\r\n\r\n_Ant._ And how does your content 260\r\nTender your own good fortune?\r\n\r\n_Seb._ I remember\r\nYou did supplant your brother Prospero.\r\n\r\n_Ant._ True:\r\nAnd look how well my garments sit upon me;\r\nMuch feater than before: my brother’s servants\r\nWere then my fellows; now they are my men. 265\r\n\r\n_Seb._ But for your conscience.\r\n\r\n_Ant._ Ay, sir; where lies that? if ’twere a kibe,\r\n’Twould put me to my slipper: but I feel not\r\nThis deity in my bosom: twenty consciences,\r\nThat stand ’twixt me and Milan, candied be they, 270\r\nAnd melt, ere they molest! Here lies your brother,\r\nNo better than the earth he lies upon,\r\nIf he were that which now he’s like, that’s dead;\r\nWhom I, with this obedient steel, three inches of it,\r\nCan lay to bed for ever; whiles you, doing thus, 275\r\nTo the perpetual wink for aye might put\r\nThis ancient morsel, this Sir Prudence, who\r\nShould not upbraid our course. For all the rest,\r\nThey’ll take suggestion as a cat laps milk;\r\nThey’ll tell the clock to any business that 280\r\nWe say befits the hour.\r\n\r\n_Seb._ Thy case, dear friend,\r\nShall be my precedent; as thou got’st Milan,\r\nI’ll come by Naples. Draw thy sword: one stroke\r\nShall free thee from the tribute which thou payest;\r\nAnd I the king shall love thee.\r\n\r\n_Ant._ Draw together; 285\r\nAnd when I rear my hand, do you the like,\r\nTo fall it on Gonzalo.\r\n\r\n_Seb._ O, but one word. [_They talk apart._\r\n\r\n _Re-enter ARIEL invisible._\r\n\r\n_Ari._ My master through his art foresees the danger\r\nThat you, his friend, are in; and sends me forth,--\r\nFor else his project dies,--to keep them living. 290\r\n [_Sings in Gonzalo’s ear._\r\n\r\nWhile you here do snoring lie,\r\nOpen-eyed conspiracy\r\n His time doth take.\r\nIf of life you keep a care,\r\nShake off slumber, and beware: 295\r\n Awake, awake!\r\n\r\n_Ant._ Then let us both be sudden.\r\n\r\n_Gon._ Now, good angels\r\nPreserve the king! [_They wake._\r\n\r\n_Alon._ Why, how now? ho, awake!--Why are you drawn?\r\nWherefore this ghastly looking?\r\n\r\n_Gon._ What’s the matter? 300\r\n\r\n_Seb._ Whiles we stood here securing your repose,\r\nEven now, we heard a hollow burst of bellowing\r\nLike bulls, or rather lions: did’t not wake you?\r\nIt struck mine ear most terribly.\r\n\r\n_Alon._ I heard nothing.\r\n\r\n_Ant._ O, ’twas a din to fright a monster’s ear, 305\r\nTo make an earthquake! sure, it was the roar\r\nOf a whole herd of lions.\r\n\r\n_Alon._ Heard you this, Gonzalo?\r\n\r\n_Gon._ Upon mine honour, sir, I heard a humming,\r\nAnd that a strange one too, which did awake me:\r\nI shaked you, sir, and cried: as mine eyes open’d, 310\r\nI saw their weapons drawn:--there was a noise,\r\nThat’s verily. ’Tis best we stand upon our guard,\r\nOr that we quit this place: let’s draw our weapons.\r\n\r\n_Alon._ Lead off this ground; and let’s make further search\r\nFor my poor son.\r\n\r\n_Gon._ Heavens keep him from these beasts! 315\r\nFor he is, sure, i’ th’ island.\r\n\r\n_Alon._ Lead away.\r\n\r\n_Ari._ Prospero my lord shall know what I have done:\r\nSo, king, go safely on to seek thy son. [_Exeunt._\r\n\r\n\r\n Notes: II, 1.\r\n\r\n 3: _hint_] _stint_ Warburton.\r\n 5: _masters_] _master_ Johnson. _mistress_ Steevens conj.\r\n _master’s_ Edd. conj.\r\n 6: _of woe_] om. Steevens conj.\r\n 11-99: Marked as interpolated by Pope.\r\n 11: _visitor_] _’viser_ Warburton.\r\n _him_] om. Rowe.\r\n 15: _one_] F1. _on_ F2 F3 F4.\r\n 16: _entertain’d ... Comes_] Capell. _entertain’d, That’s offer’d\r\n comes_] Ff. Printed as prose by Pope.\r\n 27: _of he_] Ff. _of them, he_ Pope. _or he_ Collier MS.\r\n See note (VII).\r\n 35: Seb. _Ha, ha, ha!--So you’re paid_] Theobald. Seb. _Ha, ha, ha!_\r\n Ant. _So you’r paid_ Ff. Ant. _So you’ve paid_ Capell.\r\n 81, 82: Seb. _His ... too_] Edd. Ant. _His ... harp._\r\n Seb. _He ... too_ Ff.\r\n 88: _Ay._] I. Ff. _Ay?_ Pope.\r\n 96: _sir, my doublet_] F1. _my doublet, sir_ F2 F3 F4.\r\n 113: _stroke_] F1 F2 F3. _strokes_ F4.\r\n 124: _Weigh’d_] _Sway’d_ S. Verges conj.\r\n _at_] _as_ Collier MS.]\r\n 125: _o’ the_] _the_ Pope.\r\n _should_] _she’d_ Malone.\r\n 129: _The fault’s your own_] _the fault’s your own_ (at the end\r\n of 128) Capell. _the fault’s Your own_ Malone.\r\n 137: _plantation_] _the plantation_ Rowe. _the planting_ Hanmer.\r\n 139: _on’t_] _of it_ Hanmer.\r\n 144: _riches, poverty_] _wealth, poverty_ Pope. _poverty, riches_\r\n Capell.\r\n 145: _contract, succession_] _succession, Contract_ Malone conj.\r\n _succession, None_ id. conj.\r\n 146: _none_] _olives, none_ Hanmer.\r\n 157: _its_] F3 F4. _it_ F1 F2. See note (VIII).\r\n 162: _’Save_] F1 F2 F3. _Save_ F4. _God save_ Edd. conj.\r\n 175: Enter ... invisible ... music.] Malone. Enter Ariel, playing\r\n solemn music. Ff. om. Pope. [Solemn music. Capell.\r\n 181: [All sleep ... Ant.] Stage direction to the same effect,\r\n first inserted by Capell.\r\n 182-189: Text as in Pope. In Ff. the lines begin _Would ... I find\r\n ... Do not ... It seldom ... We two ... While ... Thank._\r\n 189: [Exit Ariel] Malone.\r\n 192: _find not_ Pope. _find Not_ Ff.\r\n 211: _so too, if heed_] _so too, if you heed_ Rowe.\r\n _so, if you heed_ Pope.\r\n 212: _Trebles thee o’er_] _Troubles thee o’er_ Pope.\r\n _Troubles thee not_ Hanmer.\r\n 222: _throes_] Pope. _throwes_ F1 F2 F3. _throws_ F4.\r\n _Thus, sir_] _Why then thus Sir_ Hanmer.\r\n 226: _he’s_] _he’as_ Hanmer. _he_ Johnson conj.\r\n 227: _Professes to persuade_] om. Steevens.\r\n 234: _doubt_] _drops_ Hanmer. _doubts_ Capell.\r\n 241: _she that from whom_] Ff. _she from whom_ Rowe.\r\n _she for whom_ Pope. _she from whom coming_ Singer.\r\n _she that--from whom?_ Spedding conj. See note (IX).\r\n 242: _all_] om. Pope.\r\n 243: _And ... to perform_] _May ... perform_ Pope. _And by that\r\n destin’d to perform_ Musgrave conj. _(And that by destiny)\r\n to perform_ Staunton conj.\r\n 244: _is_] F1. _in_ F2 F3 F4.\r\n 245: _In_] _Is_ Pope.\r\n 250: _to_] F1. _by_ F2 F3 F4.\r\n _Keep_] _Sleep_ Johnson conj.\r\n 251: See note (X).\r\n 267: _’twere_] _it were_ Singer.\r\n 267-271: Pope ends the lines with _that? ... slipper ... bosom ...\r\n Milan ... molest ... brother._\r\n 267: See note (XI).\r\n 269: _twenty_] _Ten_ Pope.\r\n 270: _stand_] _stood_ Hanmer.\r\n _candied_] _Discandy’d_ Upton conj.\r\n 271: _And melt_] _Would melt_ Johnson conj. _Or melt_ id. conj.\r\n 273, 274: _like, that’s dead; Whom I, with_] _like, whom I With_\r\n Steevens (Farmer conj.).\r\n 275: _whiles_] om. Pope.\r\n 277: _morsel_] _Moral_ Warburton.\r\n 280, 281: _business ... hour._] _hour ... business._ Farmer conj.\r\n 282: _precedent_] Pope. _president_ Ff.\r\n _O_] om. Pope.\r\n [They talk apart] Capell.\r\n Re-enter Ariel invisible.] Capell. Enter Ariel with music and\r\n song. Ff.\r\n 289: _you, his friend,_] _these, his friends_ Steevens\r\n (Johnson conj.).\r\n 289, 290: _friend ... project dies ... them_] _friend ... projects\r\n dies ... you_ Hanmer. _friend ... projects die ... them_\r\n Malone conj. _friend ... project dies ... thee_ Dyce.\r\n 298: [They wake.] Rowe.\r\n 300: _this_] _thus_ Collier MS.\r\n 307: _Gonzalo_] om. Pope.\r\n 312: _verily_] _verity_ Pope.\r\n _upon our guard_] _on guard_ Pope.\r\n\r\n\r\nSCENE II. _Another part of the island._\r\n\r\n _Enter CALIBAN with a burden of wood. A noise of thunder heard._\r\n\r\n_Cal._ All the infections that the sun sucks up\r\nFrom bogs, fens, flats, on Prosper fall, and make him\r\nBy inch-meal a disease! His spirits hear me,\r\nAnd yet I needs must curse. But they’ll nor pinch,\r\nFright me with urchin-shows, pitch me i’ the mire, 5\r\nNor lead me, like a firebrand, in the dark\r\nOut of my way, unless he bid ’em: but\r\nFor every trifle are they set upon me;\r\nSometime like apes, that mow and chatter at me,\r\nAnd after bite me; then like hedgehogs, which 10\r\nLie tumbling in my barefoot way, and mount\r\nTheir pricks at my footfall; sometime am I\r\nAll wound with adders, who with cloven tongues\r\nDo hiss me into madness.\r\n\r\n _Enter TRINCULO._\r\n\r\n Lo, now, lo!\r\nHere comes a spirit of his, and to torment me 15\r\nFor bringing wood in slowly. I’ll fall flat;\r\nPerchance he will not mind me.\r\n\r\n_Trin._ Here’s neither bush nor shrub, to bear off any\r\nweather at all, and another storm brewing; I hear it sing i’\r\nthe wind: yond same black cloud, yond huge one, looks 20\r\nlike a foul bombard that would shed his liquor. If it should\r\nthunder as it did before, I know not where to hide my head:\r\nyond same cloud cannot choose but fall by pailfuls. What\r\nhave we here? a man or a fish? dead or alive? A fish: he\r\nsmells like a fish; a very ancient and fish-like smell; a kind 25\r\nof not of the newest Poor-John. A strange fish! Were I\r\nin England now, as once I was, and had but this fish\r\npainted, not a holiday fool there but would give a piece of\r\nsilver: there would this monster make a man; any strange\r\nbeast there makes a man: when they will not give a doit to 30\r\nrelieve a lame beggar, they will lay out ten to see a dead\r\nIndian. Legged like a man! and his fins like arms! Warm\r\no’ my troth! I do now let loose my opinion; hold it no\r\nlonger: this is no fish, but an islander, that hath lately\r\nsuffered by a thunderbolt. [_Thunder._] Alas, the storm is come 35\r\nagain! my best way is to creep under his gaberdine; there\r\nis no other shelter hereabout: misery acquaints a man with\r\nstrange bed-fellows. I will here shroud till the dregs of the\r\nstorm be past.\r\n\r\n _Enter STEPHANO, singing: a bottle in his hand._\r\n\r\n_Ste._ I shall no more to sea, to sea, 40\r\n Here shall I die a-shore,--\r\n\r\nThis is a very scurvy tune to sing at a man’s funeral: well,\r\nhere’s my comfort. [_Drinks._\r\n\r\n\r\n[_Sings._ The master, the swabber, the boatswain, and I,\r\n The gunner, and his mate, 45\r\n Loved Mall, Meg, and Marian, and Margery,\r\n But none of us cared for Kate;\r\n For she had a tongue with a tang,\r\n Would cry to a sailor, Go hang!\r\n She loved not the savour of tar nor of pitch; 50\r\n Yet a tailor might scratch her where’er she did itch.\r\n Then, to sea, boys, and let her go hang!\r\n\r\nThis is a scurvy tune too: but here’s my comfort. [_Drinks._\r\n\r\n_Cal._ Do not torment me:--O!\r\n\r\n_Ste._ What’s the matter? Have we devils here? Do 55\r\nyou put tricks upon ’s with savages and men of Ind, ha? I\r\nhave not scaped drowning, to be afeard now of your four\r\nlegs; for it hath been said, As proper a man as ever went\r\non four legs cannot make him give ground; and it shall be\r\nsaid so again, while Stephano breathes at’s nostrils. 60\r\n\r\n_Cal._ The spirit torments me:--O!\r\n\r\n_Ste._ This is some monster of the isle with four legs, who\r\nhath got, as I take it, an ague. Where the devil should he\r\nlearn our language? I will give him some relief, if it be\r\nbut for that. If I can recover him, and keep him tame, and 65\r\nget to Naples with him, he’s a present for any emperor that\r\never trod on neat’s-leather.\r\n\r\n_Cal._ Do not torment me, prithee; I’ll bring my wood\r\nhome faster.\r\n\r\n_Ste._ He’s in his fit now, and does not talk after the 70\r\nwisest. He shall taste of my bottle: if he have never drunk\r\nwine afore, it will go near to remove his fit. If I can recover\r\nhim, and keep him tame, I will not take too much for\r\nhim; he shall pay for him that hath him, and that soundly.\r\n\r\n_Cal._ Thou dost me yet but little hurt; thou wilt anon, I 75\r\nknow it by thy trembling: now Prosper works upon thee.\r\n\r\n_Ste._ Come on your ways; open your mouth; here is that\r\nwhich will give language to you, cat: open your mouth; this\r\nwill shake your shaking, I can tell you, and that soundly:\r\nyou cannot tell who’s your friend: open your chaps again. 80\r\n\r\n_Trin._ I should know that voice: it should be--but he\r\nis drowned; and these are devils:--O defend me!\r\n\r\n_Ste._ Four legs and two voices,--a most delicate monster!\r\nHis forward voice, now, is to speak well of his friend;\r\nhis backward voice is to utter foul speeches and to detract. 85\r\nIf all the wine in my bottle will recover him, I will help\r\nhis ague. Come:--Amen! I will pour some in thy other\r\nmouth.\r\n\r\n_Trin._ Stephano!\r\n\r\n_Ste._ Doth thy other mouth call me? Mercy, mercy! 90\r\nThis is a devil, and no monster: I will leave him; I have\r\nno long spoon.\r\n\r\n_Trin._ Stephano! If thou beest Stephano, touch me,\r\nand speak to me; for I am Trinculo,--be not afeard,--thy\r\ngood friend Trinculo. 95\r\n\r\n_Ste._ If thou beest Trinculo, come forth: I’ll pull thee\r\nby the lesser legs: if any be Trinculo’s legs, these are they.\r\nThou art very Trinculo indeed! How earnest thou to be\r\nthe siege of this moon-calf? can he vent Trinculos?\r\n\r\n_Trin._ I took him to be killed with a thunder-stroke. 100\r\nBut art thou not drowned, Stephano? I hope, now, thou\r\nart not drowned. Is the storm overblown? I hid me\r\nunder the dead moon-calf’s gaberdine for fear of the storm.\r\nAnd art thou living, Stephano? O Stephano, two Neapolitans\r\nscaped! 105\r\n\r\n_Ste._ Prithee, do not turn me about; my stomach is not\r\nconstant.\r\n\r\n_Cal._ [_aside_] These be fine things, an if they be not sprites.\r\nThat’s a brave god, and bears celestial liquor:\r\nI will kneel to him. 110\r\n\r\n_Ste._ How didst thou ’scape? How camest thou hither?\r\nswear, by this bottle, how thou camest hither. I escaped\r\nupon a butt of sack, which the sailors heaved o’erboard, by\r\nthis bottle! which I made of the bark of a tree with mine\r\nown hands, since I was cast ashore. 115\r\n\r\n_Cal._ I’ll swear, upon that bottle, to be thy true subject;\r\nfor the liquor is not earthly.\r\n\r\n_Ste._ Here; swear, then, how thou escapedst.\r\n\r\n_Trin._ Swum ashore, man, like a duck: I can swim\r\nlike a duck, I’ll be sworn. 120\r\n\r\n_Ste._ Here, kiss the book. Though thou canst swim\r\nlike a duck, thou art made like a goose.\r\n\r\n_Trin._ O Stephano, hast any more of this?\r\n\r\n_Ste._ The whole butt, man: my cellar is in a rock by\r\nthe sea-side, where my wine is hid. How now, moon-calf! 125\r\nhow does thine ague?\r\n\r\n_Cal._ Hast thou not dropp’d from heaven?\r\n\r\n_Ste._ Out o’ the moon, I do assure thee: I was the man\r\ni’ the moon when time was.\r\n\r\n_Cal._ I have seen thee in her, and I do adore thee: 130\r\nMy mistress show’d me thee, and thy dog, and thy bush.\r\n\r\n_Ste._ Come, swear to that; kiss the book: I will furnish\r\nit anon with new contents: swear.\r\n\r\n_Trin._ By this good light, this is a very shallow monster!\r\nI afeard of him! A very weak monster! The 135\r\nman i’ the moon! A most poor credulous monster! Well\r\ndrawn, monster, in good sooth!\r\n\r\n_Cal._ I’ll show thee every fertile inch o’ th’ island;\r\nAnd I will kiss thy foot: I prithee, be my god.\r\n\r\n_Trin._ By this light, a most perfidious and drunken 140\r\nmonster! when’s god’s asleep, he’ll rob his bottle.\r\n\r\n_Cal._ I’ll kiss thy foot; I’ll swear myself thy subject.\r\n\r\n_Ste._ Come on, then; down, and swear.\r\n\r\n_Trin._ I shall laugh myself to death at this puppy-headed\r\nmonster. A most scurvy monster! I could find in 145\r\nmy heart to beat him,--\r\n\r\n_Ste._ Come, kiss.\r\n\r\n_Trin._ But that the poor monster’s in drink: an abominable\r\nmonster!\r\n\r\n_Cal._ I’ll show thee the best springs; I’ll pluck thee berries; 150\r\nI’ll fish for thee, and get thee wood enough.\r\nA plague upon the tyrant that I serve!\r\nI’ll bear him no more sticks, but follow thee,\r\nThou wondrous man.\r\n\r\n_Trin._ A most ridiculous monster, to make a wonder 155\r\nof a poor drunkard!\r\n\r\n_Cal._ I prithee, let me bring thee where crabs grow;\r\nAnd I with my long nails will dig thee pig-nuts;\r\nShow thee a jay’s nest, and instruct thee how\r\nTo snare the nimble marmoset; I’ll bring thee 160\r\nTo clustering filberts, and sometimes I’ll get thee\r\nYoung scamels from the rock. Wilt thou go with me?\r\n\r\n_Ste._ I prithee now, lead the way, without any more\r\ntalking. Trinculo, the king and all our company else being\r\ndrowned, we will inherit here: here; bear my bottle: fellow 165\r\nTrinculo, we’ll fill him by and by again.\r\n\r\n_Cal. sings drunkenly._] Farewell, master; farewell, farewell!\r\n\r\n_Trin._ A howling monster; a drunken monster!\r\n\r\n_Cal._ No more dams I’ll make for fish;\r\n Nor fetch in firing 170\r\n At requiring;\r\n Nor scrape trencher, nor wash dish:\r\n ’Ban, ’Ban, Cacaliban\r\n Has a new master:--get a new man.\r\n\r\nFreedom, hey-day! hey-day, freedom! freedom, hey-day, 175\r\nfreedom!\r\n\r\n_Ste._ O brave monster! Lead the way. [_Exeunt._\r\n\r\n\r\n Notes: II, 2.\r\n\r\n 4: _nor_] F1 F2. _not_ F3 F4.\r\n 15: _and_] _now_ Pope. _sent_ Edd. conj. (so Dryden).\r\n 21: _foul_] _full_ Upton conj.\r\n 35: [Thunder] Capell.\r\n 38: _dregs_] _drench_ Collier MS.\r\n 40: SCENE III. Pope.\r\n [a bottle in his hand] Capell.]\r\n 46: _and Marian_] _Mirian_ Pope.\r\n 56: _savages_] _salvages_ Ff.\r\n 60: _at’s nostrils_] Edd. _at ’nostrils_ F1. _at nostrils_ F2 F3 F4.\r\n _at his nostrils_ Pope.\r\n 78: _you, cat_] _you Cat_ Ff. _a cat_ Hanmer. _your cat_ Edd. conj.\r\n 84: _well_] F1 om. F2 F3 F4.\r\n 115, 116: Steevens prints as verse, _I’ll ... thy True ... earthly._\r\n 118: _swear, then, how thou escapedst_] _swear then: how escapedst\r\n thou?_ Pope.\r\n 119: _Swum_] _Swom_ Ff.\r\n 131: _and thy dog, and thy bush_] _thy dog and bush_ Steevens.\r\n 133: _new_] F1. _the new_ F2 F3 F4.\r\n 135: _weak_] F1. _shallow_ F2 F3 F4.\r\n 138: _island_] F1. _isle_ F2 F3 F4.\r\n 150-154, 157-162, printed as verse by Pope (after Dryden).\r\n 162: _scamels_] _shamois_ Theobald. _seamalls, stannels_ id. conj.\r\n 163: Ste.] F1. Cal. F2 F3 F4.\r\n 165: Before _here; bear my bottle_ Capell inserts [To Cal.].\r\n See note (XII).\r\n 172: _trencher_] Pope (after Dryden). _trenchering_ Ff.\r\n 175: _hey-day_] Rowe. _high-day_ Ff.\r\n\r\n\r\n\r\n\r\nACT III.\r\n\r\n\r\nSCENE I. _Before PROSPERO’S cell._\r\n\r\n _Enter FERDINAND, bearing a log._\r\n\r\n_Fer._ There be some sports are painful, and their labour\r\nDelight in them sets off: some kinds of baseness\r\nAre nobly undergone, and most poor matters\r\nPoint to rich ends. This my mean task\r\nWould be as heavy to me as odious, but 5\r\nThe mistress which I serve quickens what’s dead,\r\nAnd makes my labours pleasures: O, she is\r\nTen times more gentle than her father’s crabbed.\r\nAnd he’s composed of harshness. I must remove\r\nSome thousands of these logs, and pile them up, 10\r\nUpon a sore injunction: my sweet mistress\r\nWeeps when she sees me work, and says, such baseness\r\nHad never like executor. I forget:\r\nBut these sweet thoughts do even refresh my labours,\r\nMost busy lest, when I do it.\r\n\r\n _Enter MIRANDA; and PROSPERO at a distance, unseen._\r\n\r\n_Mir._ Alas, now, pray you, 15\r\nWork not so hard: I would the lightning had\r\nBurnt up those logs that you are enjoin’d to pile!\r\nPray, set it down, and rest you: when this burns,\r\n’Twill weep for having wearied you. My father\r\nIs hard at study; pray, now, rest yourself; 20\r\nHe’s safe for these three hours.\r\n\r\n_Fer._ O most dear mistress,\r\nThe sun will set before I shall discharge\r\nWhat I must strive to do.\r\n\r\n_Mir._ If you’ll sit down,\r\nI’ll bear your logs the while: pray, give me that;\r\nI’ll carry it to the pile.\r\n\r\n_Fer._ No, precious creature; 25\r\nI had rather crack my sinews, break my back,\r\nThan you should such dishonour undergo,\r\nWhile I sit lazy by.\r\n\r\n_Mir._ It would become me\r\nAs well as it does you: and I should do it\r\nWith much more ease; for my good will is to it, 30\r\nAnd yours it is against.\r\n\r\n_Pros._ Poor worm, thou art infected!\r\nThis visitation shows it.\r\n\r\n_Mir._ You look wearily.\r\n\r\n_Fer._ No, noble mistress; ’tis fresh morning with me\r\nWhen you are by at night. I do beseech you,--\r\nChiefly that I might set it in my prayers,-- 35\r\nWhat is your name?\r\n\r\n_Mir._ Miranda. --O my father,\r\nI have broke your hest to say so!\r\n\r\n_Fer._ Admired Miranda!\r\nIndeed the top of admiration! worth\r\nWhat’s dearest to the world! Full many a lady\r\nI have eyed with best regard, and many a time 40\r\nThe harmony of their tongues hath into bondage\r\nBrought my too diligent ear: for several virtues\r\nHave I liked several women; never any\r\nWith so full soul, but some defect in her\r\nDid quarrel with the noblest grace she owed, 45\r\nAnd put it to the foil: but you, O you,\r\nSo perfect and so peerless, are created\r\nOf every creature’s best!\r\n\r\n_Mir._ I do not know\r\nOne of my sex; no woman’s face remember,\r\nSave, from my glass, mine own; nor have I seen 50\r\nMore that I may call men than you, good friend,\r\nAnd my dear father: how features are abroad,\r\nI am skilless of; but, by my modesty,\r\nThe jewel in my dower, I would not wish\r\nAny companion in the world but you; 55\r\nNor can imagination form a shape,\r\nBesides yourself, to like of. But I prattle\r\nSomething too wildly, and my father’s precepts\r\nI therein do forget.\r\n\r\n_Fer._ I am, in my condition,\r\nA prince, Miranda; I do think, a king; 60\r\nI would, not so!--and would no more endure\r\nThis wooden slavery than to suffer\r\nThe flesh-fly blow my mouth. Hear my soul speak:\r\nThe very instant that I saw you, did\r\nMy heart fly to your service; there resides, 65\r\nTo make me slave to it; and for your sake\r\nAm I this patient log-man.\r\n\r\n_Mir._ Do you love me?\r\n\r\n_Fer._ O heaven, O earth, bear witness to this sound,\r\nAnd crown what I profess with kind event,\r\nIf I speak true! if hollowly, invert 70\r\nWhat best is boded me to mischief! I,\r\nBeyond all limit of what else i’ the world,\r\nDo love, prize, honour you.\r\n\r\n_Mir._ I am a fool\r\nTo weep at what I am glad of.\r\n\r\n_Pros._ Fair encounter\r\nOf two most rare affections! Heavens rain grace 75\r\nOn that which breeds between ’em!\r\n\r\n_Fer._ Wherefore weep you?\r\n\r\n_Mir._ At mine unworthiness, that dare not offer\r\nWhat I desire to give; and much less take\r\nWhat I shall die to want. But this is trifling;\r\nAnd all the more it seeks to hide itself, 80\r\nThe bigger bulk it shows. Hence, bashful cunning!\r\nAnd prompt me, plain and holy innocence!\r\nI am your wife, if you will marry me;\r\nIf not, I’ll die your maid: to be your fellow\r\nYou may deny me; but I’ll be your servant, 85\r\nWhether you will or no.\r\n\r\n_Fer._ My mistress, dearest;\r\nAnd I thus humble ever.\r\n\r\n_Mir._ My husband, then?\r\n\r\n_Fer._ Ay, with a heart as willing\r\nAs bondage e’er of freedom: here’s my hand.\r\n\r\n_Mir._ And mine, with my heart in’t: and now farewell 90\r\nTill half an hour hence.\r\n\r\n_Fer._ A thousand thousand!\r\n\r\n [_Exeunt Fer. and Mir. severally._\r\n\r\n_Pros._ So glad of this as they I cannot be,\r\nWho are surprised withal; but my rejoicing\r\nAt nothing can be more. I’ll to my book;\r\nFor yet, ere supper-time, must I perform 95\r\nMuch business appertaining. [_Exit._\r\n\r\n\r\n Notes: III, 1.\r\n\r\n 1: _and_] _but_ Pope.\r\n 2: _sets_] Rowe. _set_ Ff.\r\n 4, 5: _my ... odious_] _my mean task would be As heavy to me as\r\n ’tis odious_ Pope.\r\n 9: _remove_] _move_ Pope.\r\n 14: _labours_] _labour_ Hanmer.\r\n 15: _Most busy lest_] F1. _Most busy least_ F2 F3 F4. _Least busy_\r\n Pope. _Most busie-less_ Theobald._ Most busiest_ Holt White conj.\r\n _Most busy felt_ Staunton. _Most busy still_ Staunton conj.\r\n _Most busy-blest_ Collier MS. _Most busiliest_ Bullock conj.\r\n _Most busy lest, when I do_ (_doe_ F1 F2 F3) _it_] _Most busy when\r\n least I do it_ Brae conj. _Most busiest when idlest_ Spedding\r\n conj. _Most busy left when idlest_ Edd. conj. See note (XIII).\r\n at a distance, unseen] Rowe.\r\n 17: _you are_] F1. _thou art_ F2 F3 F4.\r\n 31: _it is_] _is it_ Steevens conj. (ed. 1, 2, and 3). om. Steevens\r\n (ed. 4) (Farmer conj.).\r\n 34, 35: _I do beseech you,--Chiefly_] _I do beseech you Chiefly_ Ff.\r\n 59: _I therein do_] _I do_ Pope. _Therein_ Steevens.\r\n 62: _wooden_] _wodden_ F1.\r\n _than to_] _than I would_ Pope.\r\n 72: _what else_] _aught else_ Malone conj. (withdrawn).\r\n 80: _seeks_] _seekd_ F3 F4.\r\n 88: _as_] F1. _so_ F2 F3 F4.\r\n 91: _severally_] Capell.\r\n 93: _withal_] Theobald. _with all_ Ff.\r\n\r\n\r\nSCENE II. _Another part of the island._\r\n\r\n _Enter CALIBAN, STEPHANO, and TRINCULO._\r\n\r\n_Ste._ Tell not me;--when the butt is out, we will drink\r\nwater; not a drop before: therefore bear up, and board ’em.\r\nServant-monster, drink to me.\r\n\r\n_Trin._ Servant-monster! the folly of this island! They\r\nsay there’s but five upon this isle: we are three of them; if 5\r\nth’ other two be brained like us, the state totters.\r\n\r\n_Ste._ Drink, servant-monster, when I bid thee: thy eyes\r\nare almost set in thy head.\r\n\r\n_Trin._ Where should they be set else? he were a brave\r\nmonster indeed, if they were set in his tail. 10\r\n\r\n_Ste._ My man-monster hath drowned his tongue in sack:\r\nfor my part, the sea cannot drown me; I swam, ere I could\r\nrecover the shore, five-and-thirty leagues off and on. By\r\nthis light, thou shalt be my lieutenant, monster, or my\r\nstandard. 15\r\n\r\n_Trin._ Your lieutenant, if you list; he’s no standard.\r\n\r\n_Ste._ We’ll not run, Monsieur Monster.\r\n\r\n_Trin._ Nor go neither; but you’ll lie, like dogs, and\r\nyet say nothing neither.\r\n\r\n_Ste._ Moon-calf, speak once in thy life, if thou beest a 20\r\ngood moon-calf.\r\n\r\n_Cal._ How does thy honour? Let me lick thy shoe.\r\nI’ll not serve him, he is not valiant.\r\n\r\n_Trin._ Thou liest, most ignorant monster: I am in case\r\nto justle a constable. Why, thou debauched fish, thou, was 25\r\nthere ever man a coward that hath drunk so much sack as\r\nI to-day? Wilt thou tell a monstrous lie, being but half a\r\nfish and half a monster?\r\n\r\n_Cal._ Lo, how he mocks me! wilt thou let him, my lord?\r\n\r\n_Trin._ ‘Lord,’ quoth he! That a monster should be 30\r\nsuch a natural!\r\n\r\n_Cal._ Lo, lo, again! bite him to death, I prithee.\r\n\r\n_Ste._ Trinculo, keep a good tongue in your head: if you\r\nprove a mutineer,--the next tree! The poor monster’s my\r\nsubject, and he shall not suffer indignity. 35\r\n\r\n_Cal._ I thank my noble lord. Wilt thou be pleased to\r\nhearken once again to the suit I made to thee?\r\n\r\n_Ste._ Marry, will I: kneel and repeat it; I will stand,\r\nand so shall Trinculo.\r\n\r\n _Enter ARIEL, invisible._\r\n\r\n_Cal._ As I told thee before, I am subject to a tyrant, a 40\r\nsorcerer, that by his cunning hath cheated me of the island.\r\n\r\n_Ari._ Thou liest.\r\n\r\n_Cal._ Thou liest, thou jesting monkey, thou:\r\nI would my valiant master would destroy thee!\r\nI do not lie.\r\n\r\n_Ste._ Trinculo, if you trouble him any more in’s tale, by 45\r\nthis hand, I will supplant some of your teeth.\r\n\r\n_Trin._ Why, I said nothing.\r\n\r\n_Ste._ Mum, then, and no more. Proceed.\r\n\r\n_Cal._ I say, by sorcery he got this isle;\r\nFrom me he got it. If thy greatness will 50\r\nRevenge it on him,--for I know thou darest,\r\nBut this thing dare not,--\r\n\r\n_Ste._ That’s most certain.\r\n\r\n_Cal._ Thou shalt be lord of it, and I’ll serve thee.\r\n\r\n_Ste._ How now shall this be compassed? Canst thou 55\r\nbring me to the party?\r\n\r\n_Cal._ Yea, yea, my lord: I’ll yield him thee asleep,\r\nWhere thou mayst knock a nail into his head.\r\n\r\n_Ari._ Thou liest; thou canst not.\r\n\r\n_Cal._ What a pied ninny’s this! Thou scurvy patch! 60\r\nI do beseech thy Greatness, give him blows,\r\nAnd take his bottle from him: when that’s gone,\r\nHe shall drink nought but brine; for I’ll not show him\r\nWhere the quick freshes are.\r\n\r\n_Ste._ Trinculo, run into no further danger: interrupt the 65\r\nmonster one word further, and, by this hand, I’ll turn my\r\nmercy out o’ doors, and make a stock-fish of thee.\r\n\r\n_Trin._ Why, what did I? I did nothing. I’ll go farther\r\noff.\r\n\r\n_Ste._ Didst thou not say he lied? 70\r\n\r\n_Ari._ Thou liest.\r\n\r\n_Ste._ Do I so? take thou that. [_Beats him._] As you\r\nlike this, give me the lie another time.\r\n\r\n_Trin._ I did not give the lie. Out o’ your wits, and\r\nhearing too? A pox o’ your bottle! this can sack and 75\r\ndrinking do. A murrain on your monster, and the devil\r\ntake your fingers!\r\n\r\n_Cal._ Ha, ha, ha!\r\n\r\n_Ste._ Now, forward with your tale. --Prithee, stand farther\r\noff. 80\r\n\r\n_Cal._ Beat him enough: after a little time,\r\nI’ll beat him too.\r\n\r\n_Ste._ Stand farther. Come, proceed.\r\n\r\n_Cal._ Why, as I told thee, ’tis a custom with him\r\nI’ th’ afternoon to sleep: there thou mayst brain him,\r\nHaving first seized his books; or with a log 85\r\nBatter his skull, or paunch him with a stake,\r\nOr cut his wezand with thy knife. Remember\r\nFirst to possess his books; for without them\r\nHe’s but a sot, as I am, nor hath not\r\nOne spirit to command: they all do hate him 90\r\nAs rootedly as I. Burn but his books.\r\nHe has brave utensils,--for so he calls them,--\r\nWhich, when he has a house, he’ll deck withal.\r\nAnd that most deeply to consider is\r\nThe beauty of his daughter; he himself 95\r\nCalls her a nonpareil: I never saw a woman,\r\nBut only Sycorax my dam and she;\r\nBut she as far surpasseth Sycorax\r\nAs great’st does least.\r\n\r\n_Ste._ Is it so brave a lass?\r\n\r\n_Cal._ Ay, lord; she will become thy bed, I warrant, 100\r\nAnd bring thee forth brave brood.\r\n\r\n_Ste._ Monster, I will kill this man: his daughter and I\r\nwill be king and queen,--save our Graces!--and Trinculo\r\nand thyself shall be viceroys. Dost thou like the plot,\r\nTrinculo? 105\r\n\r\n_Trin._ Excellent.\r\n\r\n_Ste._ Give me thy hand: I am sorry I beat thee; but,\r\nwhile thou livest, keep a good tongue in thy head.\r\n\r\n_Cal._ Within this half hour will he be asleep:\r\nWilt thou destroy him then?\r\n\r\n_Ste._ Ay, on mine honour. 110\r\n\r\n_Ari._ This will I tell my master.\r\n\r\n_Cal._ Thou makest me merry; I am full of pleasure:\r\nLet us be jocund: will you troll the catch\r\nYou taught me but while-ere?\r\n\r\n_Ste._ At thy request, monster, I will do reason, any 115\r\nreason. --Come on. Trinculo, let us sing. [_Sings._\r\n\r\n Flout ’em and scout ’em, and scout ’em and flout ’em;\r\n Thought is free.\r\n\r\n_Cal._ That’s not the tune.\r\n\r\n [_Ariel plays the tune on a tabor and pipe._\r\n\r\n_Ste._ What is this same? 120\r\n\r\n_Trin._ This is the tune of our catch, played by the picture\r\nof Nobody.\r\n\r\n_Ste._ If thou beest a man, show thyself in thy likeness:\r\nif thou beest a devil, take’t as thou list.\r\n\r\n_Trin._ O, forgive me my sins! 125\r\n\r\n_Ste._ He that dies pays all debts: I defy thee. Mercy\r\nupon us!\r\n\r\n_Cal._ Art thou afeard?\r\n\r\n_Ste._ No, monster, not I.\r\n\r\n_Cal._ Be not afeard; the isle is full of noises, 130\r\nSounds and sweet airs, that give delight, and hurt not.\r\nSometimes a thousand twangling instruments\r\nWill hum about mine ears; and sometime voices,\r\nThat, if I then had waked after long sleep,\r\nWill make me sleep again: and then, in dreaming, 135\r\nThe clouds methought would open, and show riches\r\nReady to drop upon me; that, when I waked,\r\nI cried to dream again.\r\n\r\n_Ste._ This will prove a brave kingdom to me, where I\r\nshall have my music for nothing. 140\r\n\r\n_Cal._ When Prospero is destroyed.\r\n\r\n_Ste._ That shall be by and by: I remember the story.\r\n\r\n_Trin._ The sound is going away; let’s follow it, and\r\nafter do our work.\r\n\r\n_Ste._ Lead, monster; we’ll follow. I would I could see 145\r\nthis taborer; he lays it on.\r\n\r\n_Trin._ Wilt come? I’ll follow, Stephano. [_Exeunt._\r\n\r\n\r\n Notes: III, 2.\r\n\r\n SCENE II. Another...] Theobald. The other... Pope.\r\n Enter ...] Enter S. and T. reeling, Caliban following with a bottle.\r\n Capell. Enter C. S. and T. with a bottle. Johnson.]\r\n 8: _head_] F1. _heart_ F2 F3 F4.\r\n 13, 14: _on. By this light, thou_] _on, by this light thou_ Ff.\r\n _on, by this light. --Thou_ Capell.\r\n 25: _debauched_] _debosh’d_ Ff.\r\n 37: _to the suit I made to thee_] _the suit I made thee_ Steevens,\r\n who prints all Caliban’s speeches as verse.\r\n 60: Johnson conjectured that this line was spoken by Stephano.\r\n 68: _farther_] F1 _no further_ F2 F3 F4.\r\n 72: [Beats him.] Rowe.\r\n 84: _there_] _then_ Collier MS.\r\n 89: _nor_] _and_ Pope.\r\n 93: _deck_] _deck’t_ Hanmer.\r\n 96: _I never saw a woman_] _I ne’er saw woman_ Pope.\r\n 99: _great’st does least_] _greatest does the least_ Rowe.\r\n 115, 116:] Printed as verse in Ff.\r\n 115: _any_] F1. _and_ F2 F3 F4.\r\n 117: _scout ’em, and scout ’em_] Pope. _cout ’em and skowt ’em_ Ff.\r\n 125: _sins_] _sin_ F4.\r\n 132: _twangling_] _twanging_ Pope.\r\n 133: _sometime_] F1. _sometimes_ F2 F3 F4.\r\n 137: _that_] om. Pope.\r\n 147: Trin. _Will come? I’ll follow, Stephano_] Trin. _Wilt come?_\r\n Ste. _I’ll follow._ Capell. Ste. _... Wilt come?_\r\n Trin. _I’ll follow, Stephano._ Ritson conj.\r\n\r\n\r\nSCENE III. _Another part of the island._\r\n\r\n _Enter ALONSO, SEBASTIAN, ANTONIO, GONZALO, ADRIAN, FRANCISCO,\r\n and others._\r\n\r\n_Gon._ By’r lakin, I can go no further, sir;\r\nMy old bones ache: here’s a maze trod, indeed,\r\nThrough forth-rights and meanders! By your patience,\r\nI needs must rest me.\r\n\r\n_Alon._ Old lord, I cannot blame thee,\r\nWho am myself attach’d with weariness, 5\r\nTo the dulling of my spirits: sit down, and rest.\r\nEven here I will put off my hope, and keep it\r\nNo longer for my flatterer: he is drown’d\r\nWhom thus we stray to find; and the sea mocks\r\nOur frustrate search on land. Well, let him go. 10\r\n\r\n_Ant._ [_Aside to Seb._] I am right glad that he’s so out of hope.\r\nDo not, for one repulse, forego the purpose\r\nThat you resolved to effect.\r\n\r\n_Seb._ [_Aside to Ant._] The next advantage\r\nWill we take throughly.\r\n\r\n_Ant._ [_Aside to Seb._] Let it be to-night;\r\nFor, now they are oppress’d with travel, they 15\r\nWill not, nor cannot, use such vigilance\r\nAs when they are fresh.\r\n\r\n_Seb._ [_Aside to Ant._] I say, to-night: no more.\r\n\r\n [_Solemn and strange music._\r\n\r\n_Alon._ What harmony is this?--My good friends, hark!\r\n\r\n_Gon._ Marvellous sweet music!\r\n\r\n _Enter PROSPERO above, invisible. Enter several strange Shapes,\r\n bringing in a banquet: they dance about it with gentle actions of\r\n salutation; and, inviting the King, &c. to eat, they depart._\r\n\r\n_Alon._ Give us kind keepers, heavens!--What were these? 20\r\n\r\n_Seb._ A living drollery. Now I will believe\r\nThat there are unicorns; that in Arabia\r\nThere is one tree, the phœnix’ throne; one phœnix\r\nAt this hour reigning there.\r\n\r\n_Ant._ I’ll believe both;\r\nAnd what does else want credit, come to me, 25\r\nAnd I’ll be sworn ’tis true: travellers ne’er did lie,\r\nThough fools at home condemn ’em.\r\n\r\n_Gon._ If in Naples\r\nI should report this now, would they believe me?\r\nIf I should say, I saw such islanders,--\r\nFor, certes, these are people of the island,-- 30\r\nWho, though they are of monstrous shape, yet, note,\r\nTheir manners are more gentle-kind than of\r\nOur human generation you shall find\r\nMany, nay, almost any.\r\n\r\n_Pros._ [_Aside_] Honest lord,\r\nThou hast said well; for some of you there present 35\r\nAre worse than devils.\r\n\r\n_Alon._ I cannot too much muse\r\nSuch shapes, such gesture, and such sound, expressing--\r\nAlthough they want the use of tongue--a kind\r\nOf excellent dumb discourse.\r\n\r\n_Pros._ [_Aside_] Praise in departing.\r\n\r\n_Fran._ They vanish’d strangely.\r\n\r\n_Seb._ No matter, since 40\r\nThey have left their viands behind; for we have stomachs.--\r\nWill’t please you taste of what is here?\r\n\r\n_Alon._ Not I.\r\n\r\n_Gon._ Faith, sir, you need not fear. When we were boys,\r\nWho would believe that there were mountaineers\r\nDew-lapp’d like bulls, whose throats had hanging at ’em 45\r\nWallets of flesh? or that there were such men\r\nWhose heads stood in their breasts? which now we find\r\nEach putter-out of five for one will bring us\r\nGood warrant of.\r\n\r\n_Alon._ I will stand to, and feed,\r\nAlthough my last: no matter, since I feel 50\r\nThe best is past. Brother, my lord the duke,\r\nStand to, and do as we.\r\n\r\n _Thunder and lightning. Enter ARIEL, like a harpy; claps his\r\n wings upon the table; and, with a quaint device, the banquet\r\n vanishes._\r\n\r\n_Ari._ You are three men of sin, whom Destiny,--\r\nThat hath to instrument this lower world\r\nAnd what is in’t,--the never-surfeited sea 55\r\nHath caused to belch up you; and on this island,\r\nWhere man doth not inhabit,--you ’mongst men\r\nBeing most unfit to live. I have made you mad;\r\nAnd even with such-like valour men hang and drown\r\nTheir proper selves. [_Alon., Seb. &c. draw their swords._\r\n You fools! I and my fellows 60\r\nAre ministers of Fate: the elements,\r\nOf whom your swords are temper’d, may as well\r\nWound the loud winds, or with bemock’d-at stabs\r\nKill the still-closing waters, as diminish\r\nOne dowle that’s in my plume: my fellow-ministers 65\r\nAre like invulnerable. If you could hurt,\r\nYour swords are now too massy for your strengths,\r\nAnd will not be uplifted. But remember,--\r\nFor that’s my business to you,--that you three\r\nFrom Milan did supplant good Prospero; 70\r\nExposed unto the sea, which hath requit it,\r\nHim and his innocent child: for which foul deed\r\nThe powers, delaying, not forgetting, have\r\nIncensed the seas and shores, yea, all the creatures,\r\nAgainst your peace. Thee of thy son, Alonso, 75\r\nThey have bereft; and do pronounce by me:\r\nLingering perdition--worse than any death\r\nCan be at once--shall step by step attend\r\nYou and your ways; whose wraths to guard you from,--\r\nWhich here, in this most desolate isle, else falls 80\r\nUpon your heads,--is nothing but heart-sorrow\r\nAnd a clear life ensuing.\r\n\r\n _He vanishes in thunder; then, to soft music, enter the Shapes\r\n again, and dance, with mocks and mows, and carrying out the\r\n table._\r\n\r\n_Pros._ Bravely the figure of this harpy hast thou\r\nPerform’d, my Ariel; a grace it had, devouring:\r\nOf my instruction hast thou nothing bated 85\r\nIn what thou hadst to say: so, with good life\r\nAnd observation strange, my meaner ministers\r\nTheir several kinds have done. My high charms work,\r\nAnd these mine enemies are all knit up\r\nIn their distractions: they now are in my power; 90\r\nAnd in these fits I leave them, while I visit\r\nYoung Ferdinand,--whom they suppose is drown’d,--\r\nAnd his and mine loved darling. [_Exit above._\r\n\r\n_Gon._ I’ the name of something holy, sir, why stand you\r\nIn this strange stare?\r\n\r\n_Alon._ O, it is monstrous, monstrous! 95\r\nMethought the billows spoke, and told me of it;\r\nThe winds did sing it to me; and the thunder,\r\nThat deep and dreadful organ-pipe, pronounced\r\nThe name of Prosper: it did bass my trespass.\r\nTherefore my son i’ th’ ooze is bedded; and 100\r\nI’ll seek him deeper than e’er plummet sounded,\r\nAnd with him there lie mudded. [_Exit._\r\n\r\n_Seb._ But one fiend at a time,\r\nI’ll fight their legions o’er.\r\n\r\n_Ant._ I’ll be thy second.\r\n\r\n [_Exeunt Seb. and Ant._\r\n\r\n_Gon._ All three of them are desperate: their great guilt,\r\nLike poison given to work a great time after, 105\r\nNow ’gins to bite the spirits. I do beseech you,\r\nThat are of suppler joints, follow them swiftly,\r\nAnd hinder them from what this ecstasy\r\nMay now provoke them to.\r\n\r\n_Adr._ Follow, I pray you. [_Exeunt._\r\n\r\n\r\n Notes: III, 3.\r\n\r\n 2: _ache_] _ake_ F2 F3 F4. _akes_ F1.\r\n 3: _forth-rights_] F2 F3 F4. _fourth rights_ F1.\r\n 8: _flatterer_] F1. _flatterers_ F2 F3 F4.\r\n 17: Prospero above] Malone. Prosper on the top Ff. See note (XIV).\r\n 20: _were_] F1 F2 F3. _are_ F4.\r\n 26: _’tis true_] _to ’t_ Steevens conj.\r\n _did lie_] _lied_ Hanmer.\r\n 29: _islanders_] F2 F3 F4. _islands_ F1.\r\n 32: _gentle-kind_] Theobald. _gentle, kind_ Ff. _gentle kind_ Rowe.\r\n 36: _muse_] F1 F2 F3. _muse_, F4. _muse_; Capell.\r\n 48: _of five for one_] Ff. _on five for one_ Theobald.\r\n _of one for five_ Malone, (Thirlby conj.) See note (XV).\r\n 49-51: _I will ... past_] Mason conjectured that these lines formed\r\n a rhyming couplet.\r\n 53: SCENE IV. Pope.\r\n 54: _instrument_] _instruments_ F4.\r\n 56: _belch up you_] F1 F2 F3. _belch you up_ F4. _belch up_ Theobald.\r\n 60: [... draw their swords] Hanmer.\r\n 65: _dowle_] _down_ Pope.]\r\n _plume_] Rowe. _plumbe_ F1 F2 F3. _plumb_ F4.\r\n 67: _strengths_] _strength_ F4.\r\n 79: _wraths_] _wrath_ Theobald.\r\n 81: _heart-sorrow_] Edd. _hearts-sorrow_ Ff. _heart’s-sorrow_ Rowe.\r\n _heart’s sorrow_ Pope.\r\n 82: mocks] mopps Theobald.\r\n 86: _life_] _list_ Johnson conj.\r\n 90: _now_] om. Pope.\r\n 92: _whom_] _who_ Hanmer.\r\n 93: _mine_] _my_ Rowe.\r\n [Exit above] Theobald.]\r\n 94: _something holy, sir_,] _something, holy Sir_, F4.\r\n 99: _bass_] Johnson. _base_ Ff.\r\n 106: _do_] om. Pope.\r\n\r\n\r\n\r\n\r\nACT IV.\r\n\r\n\r\nSCENE I. _Before PROSPERO’S cell._\r\n\r\n _Enter PROSPERO, FERDINAND, and MIRANDA._\r\n\r\n_Pros._ If I have too austerely punish’d you,\r\nYour compensation makes amends; for I\r\nHave given you here a third of mine own life,\r\nOr that for which I live; who once again\r\nI tender to thy hand: all thy vexations 5\r\nWere but my trials of thy love, and thou\r\nHast strangely stood the test: here, afore Heaven,\r\nI ratify this my rich gift. O Ferdinand,\r\nDo not smile at me that I boast her off,\r\nFor thou shalt find she will outstrip all praise, 10\r\nAnd make it halt behind her.\r\n\r\n_Fer._ I do believe it\r\nAgainst an oracle.\r\n\r\n_Pros._ Then, as my gift, and thine own acquisition\r\nWorthily purchased, take my daughter: but\r\nIf thou dost break her virgin-knot before 15\r\nAll sanctimonious ceremonies may\r\nWith full and holy rite be minister’d,\r\nNo sweet aspersion shall the heavens let fall\r\nTo make this contract grow; but barren hate,\r\nSour-eyed disdain and discord shall bestrew 20\r\nThe union of your bed with weeds so loathly\r\nThat you shall hate it both: therefore take heed,\r\nAs Hymen’s lamps shall light you.\r\n\r\n_Fer._ As I hope\r\nFor quiet days, fair issue and long life,\r\nWith such love as ’tis now, the murkiest den, 25\r\nThe most opportune place, the strong’st suggestion\r\nOur worser Genius can, shall never melt\r\nMine honour into lust, to take away\r\nThe edge of that day’s celebration\r\nWhen I shall think, or Phœbus’ steeds are founder’d, 30\r\nOr Night kept chain’d below.\r\n\r\n_Pros._ Fairly spoke.\r\nSit, then, and talk with her; she is thine own.\r\nWhat, Ariel! my industrious servant, Ariel!\r\n\r\n _Enter ARIEL._\r\n\r\n_Ari._ What would my potent master? here I am.\r\n\r\n_Pros._ Thou and thy meaner fellows your last service 35\r\nDid worthily perform; and I must use you\r\nIn such another trick. Go bring the rabble,\r\nO’er whom I give thee power, here to this place:\r\nIncite them to quick motion; for I must\r\nBestow upon the eyes of this young couple 40\r\nSome vanity of mine art: it is my promise,\r\nAnd they expect it from me.\r\n\r\n_Ari._ Presently?\r\n\r\n_Pros._ Ay, with a twink.\r\n\r\n_Ari._ Before you can say, ‘come,’ and ‘go,’\r\n And breathe twice, and cry, ‘so, so,’ 45\r\n Each one, tripping on his toe,\r\n Will be here with mop and mow.\r\n Do you love me, master? no?\r\n\r\n_Pros._ Dearly, my delicate Ariel. Do not approach\r\nTill thou dost hear me call.\r\n\r\n_Ari._ Well, I conceive. [_Exit._ 50\r\n\r\n_Pros._ Look thou be true; do not give dalliance\r\nToo much the rein: the strongest oaths are straw\r\nTo the fire i’ the blood: be more abstemious,\r\nOr else, good night your vow!\r\n\r\n_Fer._ I warrant you, sir;\r\nThe white cold virgin snow upon my heart 55\r\nAbates the ardour of my liver.\r\n\r\n_Pros._ Well.\r\nNow come, my Ariel! bring a corollary,\r\nRather than want a spirit: appear, and pertly!\r\nNo tongue! all eyes! be silent. [_Soft music._\r\n\r\n _Enter IRIS._\r\n\r\n _Iris._ Ceres, most bounteous lady, thy rich leas 60\r\n Of wheat, rye, barley, vetches, oats, and pease;\r\n Thy turfy mountains, where live nibbling sheep,\r\n And flat meads thatch’d with stover, them to keep;\r\n Thy banks with pioned and twilled brims,\r\n Which spongy April at thy best betrims, 65\r\n To make cold nymphs chaste crowns; and thy broom-groves,\r\n Whose shadow the dismissed bachelor loves,\r\n Being lass-lorn; thy pole-clipt vineyard;\r\n And thy sea-marge, sterile and rocky-hard,\r\n Where thou thyself dost air;--the queen o’ the sky, 70\r\n Whose watery arch and messenger am I,\r\n Bids thee leave these; and with her sovereign grace,\r\n Here on this grass-plot, in this very place,\r\n To come and sport:--her peacocks fly amain:\r\n Approach, rich Ceres, her to entertain. 75\r\n\r\n _Enter CERES._\r\n\r\n _Cer._ Hail, many-colour’d messenger, that ne’er\r\n Dost disobey the wife of Jupiter;\r\n Who, with thy saffron wings, upon my flowers\r\n Diffusest honey-drops, refreshing showers;\r\n And with each end of thy blue bow dost crown 80\r\n My bosky acres and my unshrubb’d down,\r\n Rich scarf to my proud earth;--why hath thy queen\r\n Summon’d me hither, to this short-grass’d green?\r\n\r\n _Iris._ A contract of true love to celebrate;\r\n And some donation freely to estate 85\r\n On the blest lovers.\r\n\r\n _Cer._ Tell me, heavenly bow,\r\n If Venus or her son, as thou dost know,\r\n Do now attend the queen? Since they did plot\r\n The means that dusky Dis my daughter got,\r\n Her and her blind boy’s scandal’d company 90\r\n I have forsworn.\r\n\r\n _Iris._ Of her society\r\n Be not afraid: I met her Deity\r\n Cutting the clouds towards Paphos, and her son\r\n Dove-drawn with her. Here thought they to have done\r\n Some wanton charm upon this man and maid, 95\r\n Whose vows are, that no bed-right shall be paid\r\n Till Hymen’s torch be lighted: but in vain;\r\n Mars’s hot minion is returned again;\r\n Her waspish-headed son has broke his arrows,\r\n Swears he will shoot no more, but play with sparrows, 100\r\n And be a boy right out.\r\n\r\n _Cer._ High’st queen of state,\r\n Great Juno, comes; I know her by her gait.\r\n\r\n _Enter JUNO._\r\n\r\n _Juno._ How does my bounteous sister? Go with me\r\n To bless this twain, that they may prosperous be,\r\n And honour’d in their issue. [_They sing:_ 105\r\n\r\n _Juno._ Honour, riches, marriage-blessing,\r\n Long continuance, and increasing,\r\n Hourly joys be still upon you!\r\n Juno sings her blessings on you.\r\n\r\n _Cer._ Earth’s increase, foison plenty, 110\r\n Barns and garners never empty;\r\n Vines with clustering bunches growing;\r\n Plants with goodly burthen bowing;\r\n Spring come to you at the farthest\r\n In the very end of harvest! 115\r\n Scarcity and want shall shun you;\r\n Ceres’ blessing so is on you.\r\n\r\n_Fer._ This is a most majestic vision, and\r\nHarmonious charmingly. May I be bold\r\nTo think these spirits?\r\n\r\n_Pros._ Spirits, which by mine art 120\r\nI have from their confines call’d to enact\r\nMy present fancies.\r\n\r\n_Fer._ Let me live here ever;\r\nSo rare a wonder’d father and a wife\r\nMakes this place Paradise.\r\n\r\n [_Juno and Ceres whisper, and send Iris on employment._\r\n\r\n_Pros._ Sweet, now, silence!\r\nJuno and Ceres whisper seriously; 125\r\nThere’s something else to do: hush, and be mute,\r\nOr else our spell is marr’d.\r\n\r\n _Iris._ You nymphs, call’d Naiads, of the windring brooks,\r\n With your sedged crowns and ever-harmless looks,\r\n Leave your crisp channels, and on this green land 130\r\n Answer your summons; Juno does command:\r\n Come, temperate nymphs, and help to celebrate\r\n A contract of true love; be not too late.\r\n\r\n _Enter certain Nymphs._\r\n\r\n You sunburnt sicklemen, of August weary,\r\n Come hither from the furrow, and be merry: 135\r\n Make holiday; your rye-straw hats put on,\r\n And these fresh nymphs encounter every one\r\n In country footing.\r\n\r\n _Enter certain Reapers, properly habited: they join with the\r\n Nymphs in a graceful dance; towards the end whereof PROSPERO\r\n starts suddenly, and speaks; after which, to a strange, hollow,\r\n and confused noise, they heavily vanish._\r\n\r\n_Pros._ [_Aside_] I had forgot that foul conspiracy\r\nOf the beast Caliban and his confederates 140\r\nAgainst my life: the minute of their plot\r\nIs almost come. [_To the Spirits._] Well done! avoid; no more!\r\n\r\n_Fer._ This is strange: your father’s in some passion\r\nThat works him strongly.\r\n\r\n_Mir._ Never till this day\r\nSaw I him touch’d with anger so distemper’d. 145\r\n\r\n_Pros._ You do look, my son, in a moved sort,\r\nAs if you were dismay’d: be cheerful, sir.\r\nOur revels now are ended. These our actors,\r\nAs I foretold you, were all spirits, and\r\nAre melted into air, into thin air: 150\r\nAnd, like the baseless fabric of this vision,\r\nThe cloud-capp’d towers, the gorgeous palaces,\r\nThe solemn temples, the great globe itself,\r\nYea, all which it inherit, shall dissolve,\r\nAnd, like this insubstantial pageant faded, 155\r\nLeave not a rack behind. We are such stuff\r\nAs dreams are made on; and our little life\r\nIs rounded with a sleep. Sir, I am vex’d;\r\nBear with my weakness; my old brain is troubled:\r\nBe not disturb’d with my infirmity: 160\r\nIf you be pleased, retire into my cell,\r\nAnd there repose: a turn or two I’ll walk,\r\nTo still my beating mind.\r\n\r\n_Fer._ _Mir._ We wish your peace. [_Exeunt._\r\n\r\n_Pros._ Come with a thought. I thank thee, Ariel: come.\r\n\r\n _Enter ARIEL._\r\n\r\n_Ari._ Thy thoughts I cleave to. What’s thy pleasure? 165\r\n\r\n_Pros._ Spirit,\r\nWe must prepare to meet with Caliban.\r\n\r\n_Ari._ Ay, my commander: when I presented Ceres,\r\nI thought to have told thee of it; but I fear’d\r\nLest I might anger thee.\r\n\r\n_Pros._ Say again, where didst thou leave these varlets? 170\r\n\r\n_Ari._ I told you, sir, they were red-hot with drinking;\r\nSo full of valour that they smote the air\r\nFor breathing in their faces; beat the ground\r\nFor kissing of their feet; yet always bending\r\nTowards their project. Then I beat my tabor; 175\r\nAt which, like unback’d colts, they prick’d their ears,\r\nAdvanced their eyelids, lifted up their noses\r\nAs they smelt music: so I charm’d their ears,\r\nThat, calf-like, they my lowing follow’d through\r\nTooth’d briers, sharp furzes, pricking goss, and thorns, 180\r\nWhich enter’d their frail shins: at last I left them\r\nI’ the filthy-mantled pool beyond your cell,\r\nThere dancing up to the chins, that the foul lake\r\nO’erstunk their feet.\r\n\r\n_Pros._ This was well done, my bird.\r\nThy shape invisible retain thou still: 185\r\nThe trumpery in my house, go bring it hither,\r\nFor stale to catch these thieves.\r\n\r\n_Ari._ I go, I go. [_Exit._\r\n\r\n_Pros._ A devil, a born devil, on whose nature\r\nNurture can never stick; on whom my pains,\r\nHumanely taken, all, all lost, quite lost; 190\r\nAnd as with age his body uglier grows,\r\nSo his mind cankers. I will plague them all,\r\nEven to roaring.\r\n\r\n _Re-enter ARIEL, loaden with glistering apparel, &c._\r\n\r\nCome, hang them on this line.\r\n\r\n _PROSPERO and ARIEL remain, invisible. Enter CALIBAN, STEPHANO,\r\n and TRINCULO, all wet._\r\n\r\n_Cal._ Pray you, tread softly, that the blind mole may not\r\nHear a foot fall: we now are near his cell. 195\r\n\r\n_Ste._ Monster, your fairy, which you say is a harmless\r\nfairy, has done little better than played the Jack with us.\r\n\r\n_Trin._ Monster, I do smell all horse-piss; at which my\r\nnose is in great indignation.\r\n\r\n_Ste._ So is mine. Do you hear, monster? If I should 200\r\ntake a displeasure against you, look you,--\r\n\r\n_Trin._ Thou wert but a lost monster.\r\n\r\n_Cal._ Good my lord, give me thy favour still.\r\nBe patient, for the prize I’ll bring thee to\r\nShall hoodwink this mischance: therefore speak softly. 205\r\nAll’s hush’d as midnight yet.\r\n\r\n_Trin._ Ay, but to lose our bottles in the pool,--\r\n\r\n_Ste._ There is not only disgrace and dishonour in that,\r\nmonster, but an infinite loss.\r\n\r\n_Trin._ That’s more to me than my wetting: yet this is 210\r\nyour harmless fairy, monster.\r\n\r\n_Ste._ I will fetch off my bottle, though I be o’er ears for\r\nmy labour.\r\n\r\n_Cal._ Prithee, my king, be quiet. See’st thou here,\r\nThis is the mouth o’ the cell: no noise, and enter. 215\r\nDo that good mischief which may make this island\r\nThine own for ever, and I, thy Caliban,\r\nFor aye thy foot-licker.\r\n\r\n_Ste._ Give me thy hand. I do begin to have bloody\r\nthoughts. 220\r\n\r\n_Trin._ O King Stephano! O peer! O worthy Stephano!\r\nlook what a wardrobe here is for thee!\r\n\r\n_Cal._ Let it alone, thou fool; it is but trash.\r\n\r\n_Trin._ O, ho, monster! we know what belongs to a frippery.\r\nO King Stephano! 225\r\n\r\n_Ste._ Put off that gown, Trinculo; by this hand, I’ll\r\nhave that gown.\r\n\r\n_Trin._ Thy Grace shall have it.\r\n\r\n_Cal._ The dropsy drown this fool! what do you mean\r\nTo dote thus on such luggage? Let’s alone, 230\r\nAnd do the murder first: if he awake,\r\nFrom toe to crown he’ll fill our skins with pinches,\r\nMake us strange stuff.\r\n\r\n_Ste._ Be you quiet, monster. Mistress line, is not this\r\nmy jerkin? Now is the jerkin under the line: now, jerkin, 235\r\nyou are like to lose your hair, and prove a bald jerkin.\r\n\r\n_Trin._ Do, do: we steal by line and level, an’t like your\r\nGrace.\r\n\r\n_Ste._ I thank thee for that jest; here’s a garment for’t:\r\nwit shall not go unrewarded while I am king of this country. 240\r\n‘Steal by line and level’ is an excellent pass of pate;\r\nthere’s another garment for’t.\r\n\r\n_Trin._ Monster, come, put some lime upon your fingers,\r\nand away with the rest.\r\n\r\n_Cal._ I will have none on’t: we shall lose our time, 245\r\nAnd all be turn’d to barnacles, or to apes\r\nWith foreheads villanous low.\r\n\r\n_Ste._ Monster, lay-to your fingers: help to bear this\r\naway where my hogshead of wine is, or I’ll turn you out\r\nof my kingdom: go to, carry this. 250\r\n\r\n_Trin._ And this.\r\n\r\n_Ste._ Ay, and this.\r\n\r\n _A noise of hunters heard. Enter divers Spirits, in shape of\r\n dogs and hounds, and hunt them about, PROSPERO and ARIEL setting\r\n them on._\r\n\r\n_Pros._ Hey, Mountain, hey!\r\n\r\n_Ari._ Silver! there it goes, Silver!\r\n\r\n_Pros._ Fury, fury! there, Tyrant, there! hark, hark! 255\r\n [_Cal., Ste., and Trin. are driven out._\r\n\r\nGo charge my goblins that they grind their joints\r\nWith dry convulsions; shorten up their sinews\r\nWith aged cramps; and more pinch-spotted make them\r\nThen pard or cat o’ mountain.\r\n\r\n_Ari._ Hark, they roar!\r\n\r\n_Pros._ Let them be hunted soundly. At this hour 260\r\nLie at my mercy all mine enemies:\r\nShortly shall all my labours end, and thou\r\nShalt have the air at freedom: for a little\r\nFollow, and do me service. [_Exeunt._\r\n\r\n\r\n Notes: IV, 1.\r\n\r\n 3: _a third_] _a thread_ Theobald. _the thread_ Williams conj.\r\n 4: _who_] _whom_ Pope.\r\n 7: _test_] F1. _rest_ F2 F3 F4.\r\n 9: _off_] F2 F3 F4. _of_ F1.\r\n 11: _do_] om. Pope.\r\n 13: _gift_] Rowe. _guest_ Ff.\r\n 14: _but_] F1. om. F2 F3 F4.\r\n 25: _’tis_] _is_ Capell.\r\n 30: _Phœbus’_] _Phœbus_ F1. _Phœdus_ F2 F3. _Phœduus_ F4.\r\n 34: SCENE II. Pope.\r\n 41: _vanity_] _rarity_ S. Walker conj.\r\n 48: _no_?] _no_. Rowe.\r\n 53: _abstemious_] _abstenious_ F1.\r\n 60: SCENE III. A MASQUE. Pope.]\r\n _thy_] F1. _the_ F2 F3 F4.\r\n 64: _pioned_] _pionied_ Warburton. _peonied_ Steevens.\r\n _twilled_] _tulip’d_ Rowe. _tilled_ Capell (Holt conj.). _lilied_\r\n Steevens.]\r\n 66: _broom-groves_] _brown groves_ Hanmer.\r\n 68: _pole-clipt_] _pale-clipt_ Hanmer.\r\n 72: After this line Ff. have the stage direction, ’_Juno descends._’\r\n 74: _her_] Rowe. _here_ Ff.\r\n 83: _short-grass’d_] F3 F4. _short gras’d_ F1 F2. _short-grass_ Pope.\r\n 96: _bed-right_] _bed-rite_ Singer.\r\n 101: _High’st_] _High_ Pope.\r\n 102: Enter JUNO] om. Ff.\r\n 110: Cer.] Theobald. om. Ff.\r\n _foison_] F1 _and foison_ F2 F3 F4.\r\n 114: _Spring_] _Rain_ Collier MS.\r\n 119: _charmingly_] _charming lay_ Hanmer. _charming lays_ Warburton.\r\n _Harmoniously charming_ Steevens conj.\r\n 121: _from their_] F1. _from all their_ F2 F3 F4.\r\n 123: _wife_] F1 (var.). Rowe. _wise_ F1 (var.) F2 F3 F4.\r\n 124: _Makes_] _make_ Pope.\r\n _sweet, now, silence_] _now, silence, sweet_ Hanmer.\r\n 124: In Ff. the stage direction [Juno, &c. follows line 127.\r\n Capell made the change.\r\n 128: _windring_] _winding_ Rowe. _wand’ring_ Steevens.\r\n 129: _sedged_] _sedge_ Collier MS.\r\n 136: _holiday_] _holly day_ F1 F2 F3. _holy-day_ F4.\r\n 139: SCENE IV. Pope.\r\n 143: _This is_] _This’_ (for This ’s) S. Walker conj.]\r\n _strange_] _most strange_ Hanmer.\r\n 145: Ff put a comma after _anger_. Warburton omitted it.\r\n 146: _do_] om. Pope. See note (XVI).\r\n 151: _this_] F1. _their_ F2 F3 F4. _th’ air visions_ Warburton.\r\n 156: _rack_] F3 F4. _racke_ F1 F2. _track_ Hanmer. _wreck_ Dyce\r\n (Malone conj.).\r\n 163: _your_] F1 F2 F3. _you_ F4.\r\n 164: _I thank thee, Ariel: come._] _I thank you:--Ariel, come._\r\n Theobald.\r\n 169: _Lest_] F4. _Least_ F1 F2 F3.\r\n 170: _Say again_] _Well, say again_ Capell.\r\n 180: _furzes_] Rowe. _firzes_ Ff.\r\n 181: _shins_] _skins_ Warburton conj. (note, V. 1. p. 87).\r\n 182: _filthy-mantled_] _filthy mantled_ Ff. _filth-ymantled_\r\n Steevens conj.\r\n 184: _feet_] _fear_ Spedding conj.\r\n 190: _all, all_] _are all_ Malone conj.\r\n 193: _them on_ Rowe. _on them_ Ff.\r\n Prospero ... invisible. Theobald, Capell. om. Ff.\r\n 194: SCENE V. Pope.\r\n 230: _Let’s alone_] _Let’s along_ Theobald. _Let it alone_ Hanmer.\r\n _Let ’t alone_ Collier. See note (XVII).\r\n 246: _to apes_] om. _to_ Pope.\r\n 255: Stage direction added by Theobald.\r\n 256: _they_] F1 F3 F4. _thou_ F2.\r\n 261: _Lie_] Rowe. _lies_ Ff.\r\n\r\n\r\n\r\n\r\nACT V.\r\n\r\n\r\nSCENE I. _Before the cell of Prospero._\r\n\r\n _Enter PROSPERO in his magic robes, and ARIEL._\r\n\r\n_Pros._ Now does my project gather to a head:\r\nMy charms crack not; my spirits obey; and time\r\nGoes upright with his carriage. How’s the day?\r\n\r\n_Ari._ On the sixth hour; at which time, my lord,\r\nYou said our work should cease.\r\n\r\n_Pros._ I did say so, 5\r\nWhen first I raised the tempest. Say, my spirit,\r\nHow fares the king and’s followers?\r\n\r\n_Ari._ Confined together\r\nIn the same fashion as you gave in charge,\r\nJust as you left them; all prisoners, sir,\r\nIn the line-grove which weather-fends your cell; 10\r\nThey cannot budge till your release. The king,\r\nHis brother, and yours, abide all three distracted,\r\nAnd the remainder mourning over them,\r\nBrimful of sorrow and dismay; but chiefly\r\nHim that you term’d, sir, “The good old lord, Gonzalo;” 15\r\nHis tears run down his beard, like winter’s drops\r\nFrom eaves of reeds. Your charm so strongly works ’em,\r\nThat if you now beheld them, your affections\r\nWould become tender.\r\n\r\n_Pros._ Dost thou think so, spirit?\r\n\r\n_Ari._ Mine would, sir, were I human.\r\n\r\n_Pros._ And mine shall. 20\r\nHast thou, which art but air, a touch, a feeling\r\nOf their afflictions, and shall not myself,\r\nOne of their kind, that relish all as sharply,\r\nPassion as they, be kindlier moved than thou art?\r\nThough with their high wrongs I am struck to the quick, 25\r\nYet with my nobler reason ’gainst my fury\r\nDo I take part: the rarer action is\r\nIn virtue than in vengeance: they being penitent,\r\nThe sole drift of my purpose doth extend\r\nNot a frown further. Go release them, Ariel: 30\r\nMy charms I’ll break, their senses I’ll restore,\r\nAnd they shall be themselves.\r\n\r\n_Ari._ I’ll fetch them, sir. [_Exit._\r\n\r\n_Pros._ Ye elves of hills, brooks, standing lakes, and groves;\r\nAnd ye that on the sands with printless foot\r\nDo chase the ebbing Neptune, and do fly him 35\r\nWhen he comes back; you demi-puppets that\r\nBy moonshine do the green sour ringlets make,\r\nWhereof the ewe not bites; and you whose pastime\r\nIs to make midnight mushrooms, that rejoice\r\nTo hear the solemn curfew; by whose aid-- 40\r\nWeak masters though ye be--I have bedimm’d\r\nThe noontide sun, call’d forth the mutinous winds.\r\nAnd ’twixt the green sea and the azured vault\r\nSet roaring war: to the dread rattling thunder\r\nHave I given fire, and rifted Jove’s stout oak 45\r\nWith his own bolt; the strong-based promontory\r\nHave I made shake, and by the spurs pluck’d up\r\nThe pine and cedar: graves at my command\r\nHave waked their sleepers, oped, and let ’em forth\r\nBy my so potent art. But this rough magic 50\r\nI here abjure; and, when I have required\r\nSome heavenly music,--which even now I do,--\r\nTo work mine end upon their senses, that\r\nThis airy charm is for, I’ll break my staff,\r\nBury it certain fathoms in the earth, 55\r\nAnd deeper than did ever plummet sound\r\nI’ll drown my book. [_Solemn music._\r\n\r\n _Re-enter ARIEL before: then ALONSO, with a frantic gesture,\r\n attended by GONZALO; SEBASTIAN and ANTONIO in like manner,\r\n attended by ADRIAN and FRANCISCO: they all enter the circle\r\n which PROSPERO had made, and there stand charmed; which PROSPERO\r\n observing, speaks:_\r\n\r\nA solemn air, and the best comforter\r\nTo an unsettled fancy, cure thy brains,\r\nNow useless, boil’d within thy skull! There stand, 60\r\nFor you are spell-stopp’d.\r\nHoly Gonzalo, honourable man,\r\nMine eyes, even sociable to the show of thine,\r\nFall fellowly drops. The charm dissolves apace;\r\nAnd as the morning steals upon the night, 65\r\nMelting the darkness, so their rising senses\r\nBegin to chase the ignorant fumes that mantle\r\nTheir clearer reason. O good Gonzalo,\r\nMy true preserver, and a loyal sir\r\nTo him thou follow’st! I will pay thy graces 70\r\nHome both in word and deed. Most cruelly\r\nDidst thou, Alonso, use me and my daughter:\r\nThy brother was a furtherer in the act.\r\nThou art pinch’d for’t now, Sebastian. Flesh and blood,\r\nYou, brother mine, that entertain’d ambition, 75\r\nExpell’d remorse and nature; who, with Sebastian,--\r\nWhose inward pinches therefore are most strong,--\r\nWould here have kill’d your king; I do forgive thee,\r\nUnnatural though thou art. Their understanding\r\nBegins to swell; and the approaching tide 80\r\nWill shortly fill the reasonable shore,\r\nThat now lies foul and muddy. Not one of them\r\nThat yet looks on me, or would know me: Ariel,\r\nFetch me the hat and rapier in my cell:\r\nI will discase me, and myself present 85\r\nAs I was sometime Milan: quickly, spirit;\r\nThou shalt ere long be free.\r\n\r\n_ARIEL sings and helps to attire him._\r\n\r\n Where the bee sucks, there suck I:\r\n In a cowslip’s bell I lie;\r\n There I couch when owls do cry. 90\r\n On the bat’s back I do fly\r\n After summer merrily.\r\nMerrily, merrily shall I live now\r\nUnder the blossom that hangs on the bough.\r\n\r\n_Pros._ Why, that’s my dainty Ariel! I shall miss thee; 95\r\nBut yet thou shalt have freedom: so, so, so.\r\nTo the king’s ship, invisible as thou art:\r\nThere shalt thou find the mariners asleep\r\nUnder the hatches; the master and the boatswain\r\nBeing awake, enforce them to this place, 100\r\nAnd presently, I prithee.\r\n\r\n_Ari._ I drink the air before me, and return\r\nOr ere your pulse twice beat. [_Exit._\r\n\r\n_Gon._ All torment, trouble, wonder and amazement\r\nInhabits here: some heavenly power guide us 105\r\nOut of this fearful country!\r\n\r\n_Pros._ Behold, sir king,\r\nThe wronged Duke of Milan, Prospero:\r\nFor more assurance that a living prince\r\nDoes now speak to thee, I embrace thy body;\r\nAnd to thee and thy company I bid 110\r\nA hearty welcome.\r\n\r\n_Alon._ Whether thou be’st he or no,\r\nOr some enchanted trifle to abuse me,\r\nAs late I have been, I not know: thy pulse\r\nBeats, as of flesh and blood; and, since I saw thee,\r\nThe affliction of my mind amends, with which, 115\r\nI fear, a madness held me: this must crave--\r\nAn if this be at all--a most strange story.\r\nThy dukedom I resign, and do entreat\r\nThou pardon me my wrongs. --But how should Prospero\r\nBe living and be here?\r\n\r\n_Pros._ First, noble friend, 120\r\nLet me embrace thine age, whose honour cannot\r\nBe measured or confined.\r\n\r\n_Gon._ Whether this be\r\nOr be not, I’ll not swear.\r\n\r\n_Pros._ You do yet taste\r\nSome subtilties o’ the isle, that will not let you\r\nBelieve things certain. Welcome, my friends all! 125\r\n[_Aside to Seb. and Ant._]\r\n But you, my brace of lords, were I so minded,\r\nI here could pluck his Highness’ frown upon you,\r\nAnd justify you traitors: at this time\r\nI will tell no tales.\r\n\r\n_Seb._ [_Aside_] The devil speaks in him.\r\n\r\n_Pros._ No.\r\nFor you, most wicked sir, whom to call brother 130\r\nWould even infect my mouth, I do forgive\r\nThy rankest fault,--all of them; and require\r\nMy dukedom of thee, which perforce, I know,\r\nThou must restore.\r\n\r\n_Alon._ If thou be’st Prospero,\r\nGive us particulars of thy preservation; 135\r\nHow thou hast met us here, who three hours since\r\nWere wreck’d upon this shore; where I have lost--\r\nHow sharp the point of this remembrance is!--\r\nMy dear son Ferdinand.\r\n\r\n_Pros._ I am woe for’t, sir.\r\n\r\n_Alon._ Irreparable is the loss; and patience 140\r\nSays it is past her cure.\r\n\r\n_Pros._ I rather think\r\nYou have not sought her help, of whose soft grace\r\nFor the like loss I have her sovereign aid,\r\nAnd rest myself content.\r\n\r\n_Alon._ You the like loss!\r\n\r\n_Pros._ As great to me as late; and, supportable 145\r\nTo make the dear loss, have I means much weaker\r\nThan you may call to comfort you, for I\r\nHave lost my daughter.\r\n\r\n_Alon._ A daughter?\r\nO heavens, that they were living both in Naples,\r\nThe king and queen there! that they were, I wish 150\r\nMyself were mudded in that oozy bed\r\nWhere my son lies. When did you lose you daughter?\r\n\r\n_Pros._ In this last tempest. I perceive, these lords\r\nAt this encounter do so much admire,\r\nThat they devour their reason, and scarce think 155\r\nTheir eyes do offices of truth, their words\r\nAre natural breath: but, howsoe’er you have\r\nBeen justled from your senses, know for certain\r\nThat I am Prospero, and that very duke\r\nWhich was thrust forth of Milan; who most strangely 160\r\nUpon this shore, where you were wreck’d, was landed,\r\nTo be the Lord on’t. No more yet of this;\r\nFor ’tis a chronicle of day by day,\r\nNot a relation for a breakfast, nor\r\nBefitting this first meeting. Welcome, sir; 165\r\nThis cell’s my court: here have I few attendants,\r\nAnd subjects none abroad: pray you, look in.\r\nMy dukedom since you have given me again,\r\nI will requite you with as good a thing;\r\nAt least bring forth a wonder, to content ye 170\r\nAs much as me my dukedom.\r\n\r\n _Here Prospero discovers FERDINAND and MIRANDA playing at chess._\r\n\r\n_Mir._ Sweet lord, you play me false.\r\n\r\n_Fer._ No, my dear’st love,\r\nI would not for the world.\r\n\r\n_Mir._ Yes, for a score of kingdoms you should wrangle,\r\nAnd I would call it fair play.\r\n\r\n_Alon._ If this prove 175\r\nA vision of the island, one dear son\r\nShall I twice lose.\r\n\r\n_Seb._ A most high miracle!\r\n\r\n_Fer._ Though the seas threaten, they are merciful;\r\nI have cursed them without cause. [_Kneels._\r\n\r\n_Alon._ Now all the blessings\r\nOf a glad father compass thee about! 180\r\nArise, and say how thou camest here.\r\n\r\n_Mir._ O, wonder!\r\nHow many goodly creatures are there here!\r\nHow beauteous mankind is! O brave new world,\r\nThat has such people in’t!\r\n\r\n_Pros._ ’Tis new to thee.\r\n\r\n_Alon._ What is this maid with whom thou wast at play? 185\r\nYour eld’st acquaintance cannot be three hours:\r\nIs she the goddess that hath sever’d us,\r\nAnd brought us thus together?\r\n\r\n_Fer._ Sir, she is mortal;\r\nBut by immortal Providence she’s mine:\r\nI chose her when I could not ask my father 190\r\nFor his advice, nor thought I had one. She\r\nIs daughter to this famous Duke of Milan,\r\nOf whom so often I have heard renown,\r\nBut never saw before; of whom I have\r\nReceived a second life; and second father 195\r\nThis lady makes him to me.\r\n\r\n_Alon._ I am hers:\r\nBut, O, how oddly will it sound that I\r\nMust ask my child forgiveness!\r\n\r\n_Pros._ There, sir, stop:\r\nLet us not burthen our remembrances with\r\nA heaviness that’s gone.\r\n\r\n_Gon._ I have inly wept, 200\r\nOr should have spoke ere this. Look down, you gods,\r\nAnd on this couple drop a blessed crown!\r\nFor it is you that have chalk’d forth the way\r\nWhich brought us hither.\r\n\r\n_Alon._ I say, Amen, Gonzalo!\r\n\r\n_Gon._ Was Milan thrust from Milan, that his issue 205\r\nShould become kings of Naples? O, rejoice\r\nBeyond a common joy! and set it down\r\nWith gold on lasting pillars: In one voyage\r\nDid Claribel her husband find at Tunis,\r\nAnd Ferdinand, her brother, found a wife 210\r\nWhere he himself was lost, Prospero his dukedom\r\nIn a poor isle, and all of us ourselves\r\nWhen no man was his own.\r\n\r\n_Alon._ [_to Fer. and Mir._] Give me your hands:\r\nLet grief and sorrow still embrace his heart\r\nThat doth not wish you joy!\r\n\r\n_Gon._ Be it so! Amen! 215\r\n\r\n _Re-enter ARIEL, with the _Master_ and _Boatswain_ amazedly\r\n following._\r\n\r\nO, look, sir, look, sir! here is more of us:\r\nI prophesied, if a gallows were on land,\r\nThis fellow could not drown. Now, blasphemy,\r\nThat swear’st grace o’erboard, not an oath on shore?\r\nHast thou no mouth by land? What is the news? 220\r\n\r\n_Boats._ The best news is, that we have safely found\r\nOur king and company; the next, our ship--\r\nWhich, but three glasses since, we gave out split--\r\nIs tight and yare and bravely rigg’d, as when\r\nWe first put out to sea.\r\n\r\n_Ari._ [_Aside to Pros._] Sir, all this service 225\r\nHave I done since I went.\r\n\r\n_Pros._ [_Aside to Ari._] My tricksy spirit!\r\n\r\n_Alon._ These are not natural events; they strengthen\r\nFrom strange to stranger. Say, how came you hither?\r\n\r\n_Boats._ If I did think, sir, I were well awake,\r\nI’ld strive to tell you. We were dead of sleep, 230\r\nAnd--how we know not--all clapp’d under hatches;\r\nWhere, but even now, with strange and several noises\r\nOf roaring, shrieking, howling, jingling chains,\r\nAnd more diversity of sounds, all horrible,\r\nWe were awaked; straightway, at liberty; 235\r\nWhere we, in all her trim, freshly beheld\r\nOur royal, good, and gallant ship; our master\r\nCapering to eye her:--on a trice, so please you,\r\nEven in a dream, were we divided from them,\r\nAnd were brought moping hither.\r\n\r\n_Ari._ [_Aside to Pros._] Was’t well done? 240\r\n\r\n_Pros._ [_Aside to Ari._] Bravely, my diligence. Thou shalt be free.\r\n\r\n_Alon._ This is as strange a maze as e’er men trod;\r\nAnd there is in this business more than nature\r\nWas ever conduct of: some oracle\r\nMust rectify our knowledge.\r\n\r\n_Pros._ Sir, my liege, 245\r\nDo not infest your mind with beating on\r\nThe strangeness of this business; at pick’d leisure\r\nWhich shall be shortly, single I’ll resolve you,\r\nWhich to you shall seem probable, of every\r\nThese happen’d accidents; till when, be cheerful, 250\r\nAnd think of each thing well.\r\n [_Aside to Ari._] Come hither, spirit:\r\nSet Caliban and his companions free;\r\nUntie the spell. [_Exit Ariel._] How fares my gracious sir?\r\nThere are yet missing of your company\r\nSome few odd lads that you remember not. 255\r\n\r\n _Re-enter ARIEL, driving in CALIBAN, STEPHANO, and TRINCULO,\r\n in their stolen apparel._\r\n\r\n_Ste._ Every man shift for all the rest, and let no man\r\ntake care for himself; for all is but fortune. --Coragio,\r\nbully-monster, coragio!\r\n\r\n_Trin._ If these be true spies which I wear in my head,\r\nhere’s a goodly sight. 260\r\n\r\n_Cal._ O Setebos, these be brave spirits indeed!\r\nHow fine my master is! I am afraid\r\nHe will chastise me.\r\n\r\n_Seb._ Ha, ha!\r\nWhat things are these, my lord Antonio?\r\nWill money buy ’em?\r\n\r\n_Ant._ Very like; one of them 265\r\nIs a plain fish, and, no doubt, marketable.\r\n\r\n_Pros._ Mark but the badges of these men, my lords,\r\nThen say if they be true. This mis-shapen knave,\r\nHis mother was a witch; and one so strong\r\nThat could control the moon, make flows and ebbs, 270\r\nAnd deal in her command, without her power.\r\nThese three have robb’d me; and this demi-devil--\r\nFor he’s a bastard one--had plotted with them\r\nTo take my life. Two of these fellows you\r\nMust know and own; this thing of darkness I 275\r\nAcknowledge mine.\r\n\r\n_Cal._ I shall be pinch’d to death.\r\n\r\n_Alon._ Is not this Stephano, my drunken butler?\r\n\r\n_Seb._ He is drunk now: where had he wine?\r\n\r\n_Alon._ And Trinculo is reeling ripe: where should they\r\nFind this grand liquor that hath gilded ’em?-- 280\r\nHow camest thou in this pickle?\r\n\r\n_Trin._ I have been in such a pickle, since I saw you\r\nlast, that, I fear me, will never out of my bones: I shall not\r\nfear fly-blowing.\r\n\r\n_Seb._ Why, how now, Stephano! 285\r\n\r\n_Ste._ O, touch me not;--I am not Stephano, but a cramp.\r\n\r\n_Pros._ You’ld be king o’ the isle, sirrah?\r\n\r\n_Ste._ I should have been a sore one, then.\r\n\r\n_Alon._ This is a strange thing as e’er I look’d on.\r\n [_Pointing to Caliban._\r\n\r\n_Pros._ He is as disproportion’d in his manners 290\r\nAs in his shape. Go, sirrah, to my cell;\r\nTake with you your companions; as you look\r\nTo have my pardon, trim it handsomely.\r\n\r\n_Cal._ Ay, that I will; and I’ll be wise hereafter,\r\nAnd seek for grace. What a thrice-double ass 295\r\nWas I, to take this drunkard for a god,\r\nAnd worship this dull fool!\r\n\r\n_Pros._ Go to; away!\r\n\r\n_Alon._ Hence, and bestow your luggage where you found it.\r\n\r\n_Seb._ Or stole it, rather. [_Exeunt Cal., Ste., and Trin._\r\n\r\n_Pros._ Sir, I invite your Highness and your train 300\r\nTo my poor cell, where you shall take your rest\r\nFor this one night; which, part of it, I’ll waste\r\nWith such discourse as, I not doubt, shall make it\r\nGo quick away: the story of my life,\r\nAnd the particular accidents gone by 305\r\nSince I came to this isle: and in the morn\r\nI’ll bring you to your ship, and so to Naples,\r\nWhere I have hope to see the nuptial\r\nOf these our dear-beloved solemnized;\r\nAnd thence retire me to my Milan, where 310\r\nEvery third thought shall be my grave.\r\n\r\n_Alon._ I long\r\nTo hear the story of your life, which must\r\nTake the ear strangely.\r\n\r\n_Pros._ I’ll deliver all;\r\nAnd promise you calm seas, auspicious gales,\r\nAnd sail so expeditious, that shall catch\r\nYour royal fleet far off. [_Aside to Ari._] My Ariel, chick, 315\r\nThat is thy charge: then to the elements\r\nBe free, and fare thou well! Please you, draw near.\r\n [_Exeunt._\r\n\r\n\r\n Notes: V, 1.\r\n\r\n 7: _together_] om. Pope.\r\n 9: _all_] _all your_ Pope.\r\n 10: _line-grove_] _lime-grove_ Rowe.\r\n 11: _your_] F1 F2. _you_ F3 F4.\r\n 15: _sir_] om. Pope.\r\n 16: _run_] _runs_ F1.\r\n _winter’s_] _winter_ F4.]\r\n 23: F1 F2 put a comma after _sharply_. F3 F4 omit it.\r\n 24: _Passion_] _Passion’d_ Pope.\r\n 26: _’gainst_] Pope. _gainst_ F1 F2. _against_ F3 F4.\r\n 33: SCENE II. Pope.\r\n 37: _green sour_] _green-sward_ Douce conj.\r\n 46: _strong-based_] Rowe. _strong-bass’d_ Ff.\r\n 58: SCENE III. Pope.\r\n 60: _boil’d_] Pope. _boile_ F1 F2. _boil_ F3 F4.\r\n 62: _Holy_] _Noble_ Collier MS.\r\n 63: _show_] _shew_ Ff. _flow_ Collier MS.\r\n 64: _fellowly_] _fellow_ Pope.\r\n 68: _O_] _O my_ Pope. _O thou_ S. Walker conj.\r\n 69: _sir_] _servant_ Collier MS.\r\n 72: _Didst_] F3 F4. _Did_ F1 F2.\r\n 74: _Sebastian. Flesh and blood,_] _Sebastian, flesh and blood._\r\n Theobald.\r\n 75: _entertain’d_] _entertaine_ F1.\r\n 76: _who_] Rowe. _whom_ Ff.\r\n 82: _lies_] F3 F4. _ly_ F1 F2.\r\n 83: _or_] _e’er_ Collier MS.\r\n 84: Theobald gives as stage direction “Exit Ariel and returns\r\n immediately.”\r\n 88: _suck_] _lurk_ Theobald.\r\n 90: _couch_] _crowch_ F3 F4.\r\n [Capell punctuates _There I couch: when owls do cry,_]\r\n 92: _summer_] _sun-set_ Theobald.\r\n 106: _Behold,_] _lo!_ Pope.\r\n 111: _Whether thou be’st_] _Where thou beest_ Ff. _Be’st thou_ Pope.\r\n _Whe’r thou be’st_ Capell.\r\n 112: _trifle_] _devil_ Collier MS.\r\n 119: _my_] _thy_ Collier MS.\r\n 124: _not_] F3 F4. _nor_ F1 F2.\r\n 132: _fault_] _faults_ F4.\r\n 136: _who_] F2 F3 F4. _whom_ F1.\r\n 145: _and,_] _sir, and_ Capell.\r\n _supportable_] F1 F2. _insupportable_ F3 F4. _portable_ Steevens.\r\n 148: _my_] _my only_ Hanmer.\r\n _A daughter_] _Only daughter_ Hanmer. _Daughter_ Capell.\r\n 156: _eyes_] F1. _eye_ F2 F3 F4.\r\n _their_] _these_ Capell.]\r\n 172: SCENE IV. Pope.\r\n Here Prospero discovers...] Ff. SCENE opens to the entrance of\r\n the cell. Here Prospero discovers... Theobald. Cell opens and\r\n discovers... Capell.]\r\n 172: _dear’st_] _dearest_ Ff.\r\n 179: [Kneels] Theobald.\r\n 191: _advice_] F4. _advise_ F1 F2 F3.\r\n 199, 200: _remembrances with_] _remembrance with_ Pope.\r\n _remembrances With_ Malone.\r\n 213: _When_] _Where_ Johnson conj.]\r\n _and_] om. Capell.\r\n 216: SCENE V. Pope.\r\n _sir, look, sir_] _sir, look_ F3 F4.]\r\n _is_] _are_ Pope.]\r\n 221: _safely_] _safe_ F3 F4.\r\n 230: _of sleep_] _a-sleep_ Pope.\r\n 234: _more_] Rowe. _mo_ F1 F2. _moe_ F3 F4.\r\n 236: _her_] Theobald (Thirlby conj.). _our_ Ff.\r\n 242-245: Given to Ariel in F2 F3 F4.\r\n 247: _leisure_] F1. _seisure_ F2. _seizure_ F3 F4.\r\n 248: _Which shall be shortly, single_] Pope. _(which shall be\r\n shortly single)_ Ff.\r\n 253: [Exit Ariel] Capell.\r\n 256: SCENE VI. Pope.\r\n 258: _Coragio_] _corasio_ F1.\r\n 268: _mis-shapen_] _mis-shap’d_ Pope.\r\n 271: _command, without her power._] _command. Without her power,_\r\n anon. conj.\r\n _without_] _with all_ Collier MS.\r\n 280: _liquor_] _’lixir_ Theobald.\r\n 282-284: Printed as verse in Ff.\r\n 289: _This is_] F1 F2. _’Tis_ F3 F4.]\r\n _e’er I_] _I ever_ Hanmer.\r\n [Pointing to Caliban.] Steevens.]\r\n 299: [Exeunt... Trin.] Capell.\r\n 308: _nuptial_] _nuptiall_ F1. _nuptials_ F2 F3 F4.\r\n 309: See note (XVIII).\r\n\r\n\r\n\r\n\r\nEPILOGUE.\r\n\r\nSPOKEN BY PROSPERO.\r\n\r\nNow my charms are all o’erthrown,\r\nAnd what strength I have’s mine own,\r\nWhich is most faint: now, ’tis true,\r\nI must be here confined by you,\r\nOr sent to Naples. Let me not, 5\r\nSince I have my dukedom got,\r\nAnd pardon’d the deceiver, dwell\r\nIn this bare island by your spell;\r\nBut release me from my bands\r\nWith the help of your good hands: 10\r\nGentle breath of yours my sails\r\nMust fill, or else my project fails,\r\nWhich was to please. Now I want\r\nSpirits to enforce, art to enchant;\r\nAnd my ending is despair, 15\r\nUnless I be relieved by prayer,\r\nWhich pierces so, that it assaults\r\nMercy itself, and frees all faults.\r\nAs you from crimes would pardon’d be,\r\nLet your indulgence set me free. 20\r\n\r\n\r\n Notes: Epilogue.\r\n\r\n EPILOGUE ... PROSPERO.] advancing, Capell.]\r\n 1: _Now_] _Now, now_ F3 F4.\r\n 3: _now_] _and now_ Pope.\r\n 13: _Now_] _For now_ Pope.\r\n\r\n\r\n\r\n\r\nNOTES.\r\n\r\n\r\nNOTE I.\r\n\r\nI. 1. 15. _What cares these roarers._ This grammatical inaccuracy, which\r\nescaped correction in the later folios, probably came from Shakespeare’s\r\npen. Similar cases occur frequently, especially when the verb precedes\r\nits nominative. For example, _Tempest_, IV. 1. 262, ‘Lies at my mercy\r\nall mine enemies,’ and _Measure for Measure_, II. 1. 22, ‘What knows the\r\nlaws, &c.’ We correct it in those passages where the occurrence of a\r\nvulgarism would be likely to annoy the reader. In the mouth of a\r\nBoatswain it can offend no one. We therefore leave it.\r\n\r\n\r\nNOTE II.\r\n\r\nI. 1. 57-59. _Mercy on us!--we split, &c._ It may be doubtful whether\r\nthe printer of the first folio intended these broken speeches to express\r\n‘a confused noise within.’ Without question such was the author’s\r\nmeaning. Rowe, however, and subsequent editors, printed them as part of\r\nGonzalo’s speech. Capell was the first editor who gave the true\r\narrangement.\r\n\r\n\r\nNOTE III.\r\n\r\nI. 2. 173. _princesses._ See Mr Sidney Walker’s _Shakespeare’s\r\nVersification_, p. 243 sqq. ’The plurals of substantives ending in _s_,\r\nin certain instances, in _se_, _ss_, _ce_, and sometimes _ge_, ... are\r\nfound without the usual addition of _s_ or _es_, in pronunciation at\r\nleast, although in many instances the plural affix is added in printing,\r\nwhere the metre shows that it is not to be pronounced.’\r\n\r\nIn this and other instances, we have thought it better to trust to the\r\near of the reader for the rhythm than to introduce an innovation in\r\northography which might perplex him as to the sense. The form\r\n‘princesses,’ the use of which in Shakespeare’s time was doubted by one\r\nof our correspondents, is found in the _History of King Leir_.\r\n\r\nRowe’s reading ‘princes’ might be defended on the ground that the\r\nsentiment is general, and applicable to royal children of both sexes; or\r\nthat Sir Philip Sidney, in the first book of the _Arcadia_, calls Pamela\r\nand Philoclea ‘princes.’\r\n\r\n\r\nNOTE IV.\r\n\r\nI. 2. 298. The metre of this line, as well as of lines 301, 302, is\r\ndefective, but as no mode of correction can be regarded as completely\r\nsatisfactory we have in accordance with our custom left the lines as\r\nthey are printed in the Folio. The defect, indeed, in the metre of line\r\n298 has not been noticed except by Hanmer, who makes a line thus:\r\n\r\n ‘Do so, and after two days I’ll discharge thee.’\r\n\r\nPossibly it ought to be printed thus:\r\n\r\n ‘Do so; and\r\n After two days\r\n I will discharge thee.’\r\n\r\nThere is a broken line, also of four syllables, 253 of the same scene,\r\nanother of seven, 235.\r\n\r\nThere is no reason to doubt that the _words_ are as Shakespeare wrote\r\nthem, for, although the action of the play terminates in less than four\r\nhours (I. 2. 240 and V. 1. 186), yet Ariel’s ministry is not to end till\r\nthe voyage to Naples shall be over. Prospero, too, repeats his promise,\r\nand marks his contentment by further shortening the time of servitude,\r\n‘within two days,’ I. 2. 420. Possibly ‘Invisible’ (301) should have a\r\nline to itself. Words thus occupying a broken line acquire a marked\r\nemphasis.\r\n\r\nBut the truth is that in dialogue Shakespeare’s language passes so\r\nrapidly from verse to prose and from prose to verse, sometimes even\r\nhovering, as it were, over the confines, being rhythmical rather than\r\nmetrical, that all attempts to give regularity to the metre must be made\r\nwith diffidence and received with doubt.\r\n\r\n\r\nNOTE V.\r\n\r\nI. 2. 377, 378:\r\n\r\n _Courtsied when you have and kiss’d_\r\n _The wild waves whist._\r\n\r\nThis punctuation seems to be supported by what Ferdinand says (391,\r\n392):\r\n\r\n ‘The music crept by me upon the waters,\r\n Allaying both their fury and my passion, &c.’\r\n\r\nAt the end of the stanza we have printed _Hark, hark! ... The watch-dogs\r\nbark_ as that part of the burthen which ‘sweet sprites bear.’ The other\r\npart is borne by distant watch-dogs.\r\n\r\n\r\nNOTE VI.\r\n\r\nI. 2. 443. _I fear you have done yourself some wrong._ See this phrase\r\nused in a similar sense, _Measure for Measure_, I. 11. 39.\r\n\r\n\r\nNOTE VII.\r\n\r\nII. 1. 27. _Which, of he or Adrian._ ‘Of’ is found in the same\r\nconstruction, _Midsummer Night’s Dream_, III. 2. 336,\r\n\r\n ‘Now follow if thou darest to try whose right,\r\n Of thine or mine, is most in Helena.’\r\n\r\n\r\nNOTE VIII.\r\n\r\nII. 1. 157. _Of its own kind._ There is no doubt, as Dr Guest has shewn,\r\nthat ‘it,’ which is the reading of the 1st and 2nd folios, was commonly\r\nused as a genitive in Shakespeare’s time, as it is still in some\r\nprovincial dialects. ‘Its,’ however, was coming into use. One instance\r\noccurs in this play, I. 11. 95, ‘in its contrary.’\r\n\r\n\r\nNOTE IX.\r\n\r\nII. 1. 241. _she that from whom._ Mr Spedding writes: ‘The received\r\nemendation is not satisfactory to me. I would rather read, “She\r\nthat--From whom? All were sea-swallow’d &c., i.e. from whom should she\r\nhave note? The report from Naples will be that all were drowned. We\r\nshall be the only survivors.” The break in the construction seems to me\r\ncharacteristic of the speaker. But you must read the whole speech to\r\nfeel the effect.’\r\n\r\n\r\nNOTE X.\r\n\r\nII. 1. 249-251. All editors except Mr Staunton have printed in italics\r\n(or between inverted commas) only as far as ‘_Naples?_’, but as ‘_keep_’\r\nis printed with a small k in the folios, they seem to sanction the\r\narrangement given in our text.\r\n\r\n\r\nNOTE XI.\r\n\r\nII. 1. 267. _Ay, sir; where lies that? if ’twere a kibe._ Mr Singer and\r\nMr Dyce have changed ‘’twere’ to ‘it were’ for the sake of the metre.\r\nBut then the first part of the line must be read with a wrong emphasis.\r\nThe proper emphasis clearly falls on the first, third, and fifth\r\nsyllables, ‘Aý, sir; whére lies thát?’ See Preface.\r\n\r\n\r\nNOTE XII.\r\n\r\nII. 2. 165. Before ‘here; bear my bottle’ Capell inserts a stage\r\ndirection [_To Cal._], but it appears from III. 2. 62, that Trinculo was\r\nentrusted with the office of bottle-bearer.\r\n\r\n\r\nNOTE XIII.\r\n\r\nIII. 1. 15. _Most busy lest, when I do it._ As none of the proposed\r\nemendations can be regarded as certain, we have left the reading of F1,\r\nthough it is manifestly corrupt. The spelling ‘doe’ makes Mr Spedding’s\r\nconjecture ‘idlest’ for ‘I doe it’ more probable.\r\n\r\n\r\nNOTE XIV.\r\n\r\nIII. 3. 17. The stage direction, which we have divided into two parts,\r\nis placed all at once in the folios after ‘as when they are fresh’\r\n[Solemne and strange Musicke; and Prosper on the top (invisible:) Enter\r\n... depart].\r\n\r\nPope transferred it to follow Sebastian’s words, ‘I say, to night: no\r\nmore.’\r\n\r\n\r\nNOTE XV.\r\n\r\nIII. 3. 48. _Each putter out of five for one._ See Beaumont and\r\nFletcher, _The Noble Gentleman_, I. 1. (Vol. II. p. 261, ed. Moxon):\r\n‘The return will give you five for one.’ MARINE is about to travel.\r\n\r\n\r\nNOTE XVI.\r\n\r\nIV. 1. 146. _You do look, my son, in a moved sort._ Seymour suggests a\r\ntransposition: ‘you do, my son, look in a moved sort.’ This line however\r\ncan scarcely have come from Shakespeare’s pen. Perhaps the writer who\r\ncomposed the Masque was allowed to join it, as best he might, to\r\nShakespeare’s words, which re-commence at ‘Our revels now are ended,’\r\n&c.\r\n\r\n\r\nNOTE XVII.\r\n\r\nIV. 1. 230. _Let’s alone._ See Staunton’s “Shakespeare,” Vol. I. p. 81,\r\nnote (b).\r\n\r\n\r\nNOTE XVIII.\r\n\r\nV. 1. 309. _Of these our dear-beloved solemnized._ The Folios have\r\n‘belov’d’; a mode of spelling, which in this case is convenient as\r\nindicating the probable rhythm of the verse. We have written ‘beloved,’\r\nin accordance with the general rule mentioned in the Preface.\r\n\r\n‘Solemnized’ occurs in four other verse passages of Shakespeare. It is\r\nthree times to be accented ‘sólemnized’ and once (_Love’s Labour’s\r\nLost_, II. 1. 41) ‘solémnized.’\r\n\r\n * * * * *\r\n * * * *\r\n * * * * *\r\n\r\nSources:\r\n\r\nThe editors’ Preface (e-text 23041) discusses the 17th- and\r\n18th-century editions in detail; the newer (19th-century) editions\r\nare simply listed by name. The following editions may appear in the\r\nNotes. All inset text is quoted from the Preface.\r\n\r\n Folios:\r\n F1 1623; F2 (no date given); F3 1663; F4 1685.\r\n “The five plays contained in this volume occur in the first Folio\r\n in the same order, and ... were there printed for the first time.”\r\n\r\n Early editions:\r\n Rowe 1709\r\n Pope 1715\r\n “Pope was the first to indicate the _place_ of each new scene;\r\n as, for instance, _Tempest_, I. 1. ‘On a ship at sea.’ He also\r\n subdivided the scenes as given by the Folios and Rowe, making\r\n a fresh scene whenever a new character entered--an arrangement\r\n followed by Hanmer, Warburton, and Johnson. For convenience of\r\n reference to these editions, we have always recorded the\r\n commencement of Pope’s scenes.”\r\n Theobald 1733\r\n Hanmer (“Oxford edition”) 1744\r\n Warburton 1747\r\n Johnson 1765\r\n Capell 1768; _also Capell’s annotated copy of F2_\r\n Steevens 1773\r\n Malone 1790\r\n Reed 1803\r\n\r\n Later editions:\r\n Singer, Knight, Cornwall, Collier, Phelps, Halliwell, Dyce, Staunton\r\n\r\n Dryden:\r\n “_The Tempest_ was altered by Dryden and D’Avenant, and published\r\n as _The Tempest; or the Enchanted Island_, in 1669. We mark the\r\n emendations derived from it: ‘Dryden’s version.’”\r\n\r\n\r\nErrors and inconsistencies:\r\n\r\n _Re-enter Boatswain._\r\n [printed BOATSWAIN in small capitals]\r\n _Enter _Ariel_._\r\n [printed “Ariel” in lower case]\r\n Where my son lies. When did you lose you daughter?\r\n [Text unchanged: error for “your”?]\r\n\r\n [Text-critical notes]\r\n\r\n I. 2. 135: _to ’t_] om. Steevens (Farmer conj.).\r\n [Here and elsewhere in the volume, body text has unspaced “to’t”\r\n while line notes have spaced “to ’t”.]\r\n I. 2. 202: _o’ the_] _of_ Pope.\r\n [Text unchanged: body text is capitalized “O’ the”]\r\n II. 1. 88: _Ay._] I. Ff. _Ay?_ Pope.\r\n [Text unchanged: apparent error for italic _I._]\r\n III. 3. 17: Prospero above]\r\n [Text unchanged: stage direction is after l. 19]\r\n\r\n [Endnotes]\r\n\r\n I: I. 1. 15. [I. 1. 16]\r\n V: 377, 378. [376-377]\r\n XVI: IV. 1. 146 [IV. 1. 147]\r\n\r\n\r\n\r\n\r\n\r\nEnd of the Project Gutenberg EBook of The Tempest, by William Shakespeare\r\n\r\n*** END OF THIS PROJECT GUTENBERG EBOOK THE TEMPEST ***\r\n\r\n***** This file should be named 23042-0.txt or 23042-0.zip *****\r\nThis and all associated files of various formats will be found in:\r\n http://www.gutenberg.org/2/3/0/4/23042/\r\n\r\nProduced by Louise Hope, Jonathan Ingram and the Online\r\nDistributed Proofreading Team at http://www.pgdp.net (This\r\nfile was produced from images generously made available\r\nby The Internet Archive/Canadian Libraries)\r\n\r\n\r\nUpdated editions will replace the previous one--the old editions\r\nwill be renamed.\r\n\r\nCreating the works from public domain print editions means that no\r\none owns a United States copyright in these works, so the Foundation\r\n(and you!) can copy and distribute it in the United States without\r\npermission and without paying copyright royalties. Special rules,\r\nset forth in the General Terms of Use part of this license, apply to\r\ncopying and distributing Project Gutenberg-tm electronic works to\r\nprotect the PROJECT GUTENBERG-tm concept and trademark. Project\r\nGutenberg is a registered trademark, and may not be used if you\r\ncharge for the eBooks, unless you receive specific permission. If you\r\ndo not charge anything for copies of this eBook, complying with the\r\nrules is very easy. You may use this eBook for nearly any purpose\r\nsuch as creation of derivative works, reports, performances and\r\nresearch. They may be modified and printed and given away--you may do\r\npractically ANYTHING with public domain eBooks. Redistribution is\r\nsubject to the trademark license, especially commercial\r\nredistribution.\r\n\r\n\r\n\r\n*** START: FULL LICENSE ***\r\n\r\nTHE FULL PROJECT GUTENBERG LICENSE\r\nPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\r\n\r\nTo protect the Project Gutenberg-tm mission of promoting the free\r\ndistribution of electronic works, by using or distributing this work\r\n(or any other work associated in any way with the phrase \"Project\r\nGutenberg\"), you agree to comply with all the terms of the Full Project\r\nGutenberg-tm License (available with this file or online at\r\nhttp://gutenberg.org/license).\r\n\r\n\r\nSection 1. General Terms of Use and Redistributing Project Gutenberg-tm\r\nelectronic works\r\n\r\n1.A. By reading or using any part of this Project Gutenberg-tm\r\nelectronic work, you indicate that you have read, understand, agree to\r\nand accept all the terms of this license and intellectual property\r\n(trademark/copyright) agreement. If you do not agree to abide by all\r\nthe terms of this agreement, you must cease using and return or destroy\r\nall copies of Project Gutenberg-tm electronic works in your possession.\r\nIf you paid a fee for obtaining a copy of or access to a Project\r\nGutenberg-tm electronic work and you do not agree to be bound by the\r\nterms of this agreement, you may obtain a refund from the person or\r\nentity to whom you paid the fee as set forth in paragraph 1.E.8.\r\n\r\n1.B. \"Project Gutenberg\" is a registered trademark. It may only be\r\nused on or associated in any way with an electronic work by people who\r\nagree to be bound by the terms of this agreement. There are a few\r\nthings that you can do with most Project Gutenberg-tm electronic works\r\neven without complying with the full terms of this agreement. See\r\nparagraph 1.C below. There are a lot of things you can do with Project\r\nGutenberg-tm electronic works if you follow the terms of this agreement\r\nand help preserve free future access to Project Gutenberg-tm electronic\r\nworks. See paragraph 1.E below.\r\n\r\n1.C. The Project Gutenberg Literary Archive Foundation (\"the Foundation\"\r\nor PGLAF), owns a compilation copyright in the collection of Project\r\nGutenberg-tm electronic works. Nearly all the individual works in the\r\ncollection are in the public domain in the United States. If an\r\nindividual work is in the public domain in the United States and you are\r\nlocated in the United States, we do not claim a right to prevent you from\r\ncopying, distributing, performing, displaying or creating derivative\r\nworks based on the work as long as all references to Project Gutenberg\r\nare removed. Of course, we hope that you will support the Project\r\nGutenberg-tm mission of promoting free access to electronic works by\r\nfreely sharing Project Gutenberg-tm works in compliance with the terms of\r\nthis agreement for keeping the Project Gutenberg-tm name associated with\r\nthe work. You can easily comply with the terms of this agreement by\r\nkeeping this work in the same format with its attached full Project\r\nGutenberg-tm License when you share it without charge with others.\r\n\r\n1.D. The copyright laws of the place where you are located also govern\r\nwhat you can do with this work. Copyright laws in most countries are in\r\na constant state of change. If you are outside the United States, check\r\nthe laws of your country in addition to the terms of this agreement\r\nbefore downloading, copying, displaying, performing, distributing or\r\ncreating derivative works based on this work or any other Project\r\nGutenberg-tm work. The Foundation makes no representations concerning\r\nthe copyright status of any work in any country outside the United\r\nStates.\r\n\r\n1.E. Unless you have removed all references to Project Gutenberg:\r\n\r\n1.E.1. The following sentence, with active links to, or other immediate\r\naccess to, the full Project Gutenberg-tm License must appear prominently\r\nwhenever any copy of a Project Gutenberg-tm work (any work on which the\r\nphrase \"Project Gutenberg\" appears, or with which the phrase \"Project\r\nGutenberg\" is associated) is accessed, displayed, performed, viewed,\r\ncopied or distributed:\r\n\r\nThis eBook is for the use of anyone anywhere at no cost and with\r\nalmost no restrictions whatsoever. You may copy it, give it away or\r\nre-use it under the terms of the Project Gutenberg License included\r\nwith this eBook or online at www.gutenberg.org\r\n\r\n1.E.2. If an individual Project Gutenberg-tm electronic work is derived\r\nfrom the public domain (does not contain a notice indicating that it is\r\nposted with permission of the copyright holder), the work can be copied\r\nand distributed to anyone in the United States without paying any fees\r\nor charges. If you are redistributing or providing access to a work\r\nwith the phrase \"Project Gutenberg\" associated with or appearing on the\r\nwork, you must comply either with the requirements of paragraphs 1.E.1\r\nthrough 1.E.7 or obtain permission for the use of the work and the\r\nProject Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or\r\n1.E.9.\r\n\r\n1.E.3. If an individual Project Gutenberg-tm electronic work is posted\r\nwith the permission of the copyright holder, your use and distribution\r\nmust comply with both paragraphs 1.E.1 through 1.E.7 and any additional\r\nterms imposed by the copyright holder. Additional terms will be linked\r\nto the Project Gutenberg-tm License for all works posted with the\r\npermission of the copyright holder found at the beginning of this work.\r\n\r\n1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\r\nLicense terms from this work, or any files containing a part of this\r\nwork or any other work associated with Project Gutenberg-tm.\r\n\r\n1.E.5. Do not copy, display, perform, distribute or redistribute this\r\nelectronic work, or any part of this electronic work, without\r\nprominently displaying the sentence set forth in paragraph 1.E.1 with\r\nactive links or immediate access to the full terms of the Project\r\nGutenberg-tm License.\r\n\r\n1.E.6. You may convert to and distribute this work in any binary,\r\ncompressed, marked up, nonproprietary or proprietary form, including any\r\nword processing or hypertext form. However, if you provide access to or\r\ndistribute copies of a Project Gutenberg-tm work in a format other than\r\n\"Plain Vanilla ASCII\" or other format used in the official version\r\nposted on the official Project Gutenberg-tm web site (www.gutenberg.org),\r\nyou must, at no additional cost, fee or expense to the user, provide a\r\ncopy, a means of exporting a copy, or a means of obtaining a copy upon\r\nrequest, of the work in its original \"Plain Vanilla ASCII\" or other\r\nform. Any alternate format must include the full Project Gutenberg-tm\r\nLicense as specified in paragraph 1.E.1.\r\n\r\n1.E.7. Do not charge a fee for access to, viewing, displaying,\r\nperforming, copying or distributing any Project Gutenberg-tm works\r\nunless you comply with paragraph 1.E.8 or 1.E.9.\r\n\r\n1.E.8. You may charge a reasonable fee for copies of or providing\r\naccess to or distributing Project Gutenberg-tm electronic works provided\r\nthat\r\n\r\n- You pay a royalty fee of 20% of the gross profits you derive from\r\n the use of Project Gutenberg-tm works calculated using the method\r\n you already use to calculate your applicable taxes. The fee is\r\n owed to the owner of the Project Gutenberg-tm trademark, but he\r\n has agreed to donate royalties under this paragraph to the\r\n Project Gutenberg Literary Archive Foundation. Royalty payments\r\n must be paid within 60 days following each date on which you\r\n prepare (or are legally required to prepare) your periodic tax\r\n returns. Royalty payments should be clearly marked as such and\r\n sent to the Project Gutenberg Literary Archive Foundation at the\r\n address specified in Section 4, \"Information about donations to\r\n the Project Gutenberg Literary Archive Foundation.\"\r\n\r\n- You provide a full refund of any money paid by a user who notifies\r\n you in writing (or by e-mail) within 30 days of receipt that s/he\r\n does not agree to the terms of the full Project Gutenberg-tm\r\n License. You must require such a user to return or\r\n destroy all copies of the works possessed in a physical medium\r\n and discontinue all use of and all access to other copies of\r\n Project Gutenberg-tm works.\r\n\r\n- You provide, in accordance with paragraph 1.F.3, a full refund of any\r\n money paid for a work or a replacement copy, if a defect in the\r\n electronic work is discovered and reported to you within 90 days\r\n of receipt of the work.\r\n\r\n- You comply with all other terms of this agreement for free\r\n distribution of Project Gutenberg-tm works.\r\n\r\n1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm\r\nelectronic work or group of works on different terms than are set\r\nforth in this agreement, you must obtain permission in writing from\r\nboth the Project Gutenberg Literary Archive Foundation and Michael\r\nHart, the owner of the Project Gutenberg-tm trademark. Contact the\r\nFoundation as set forth in Section 3 below.\r\n\r\n1.F.\r\n\r\n1.F.1. Project Gutenberg volunteers and employees expend considerable\r\neffort to identify, do copyright research on, transcribe and proofread\r\npublic domain works in creating the Project Gutenberg-tm\r\ncollection. Despite these efforts, Project Gutenberg-tm electronic\r\nworks, and the medium on which they may be stored, may contain\r\n\"Defects,\" such as, but not limited to, incomplete, inaccurate or\r\ncorrupt data, transcription errors, a copyright or other intellectual\r\nproperty infringement, a defective or damaged disk or other medium, a\r\ncomputer virus, or computer codes that damage or cannot be read by\r\nyour equipment.\r\n\r\n1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the \"Right\r\nof Replacement or Refund\" described in paragraph 1.F.3, the Project\r\nGutenberg Literary Archive Foundation, the owner of the Project\r\nGutenberg-tm trademark, and any other party distributing a Project\r\nGutenberg-tm electronic work under this agreement, disclaim all\r\nliability to you for damages, costs and expenses, including legal\r\nfees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\r\nLIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\r\nPROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE\r\nTRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\r\nLIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\r\nINCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\r\nDAMAGE.\r\n\r\n1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\r\ndefect in this electronic work within 90 days of receiving it, you can\r\nreceive a refund of the money (if any) you paid for it by sending a\r\nwritten explanation to the person you received the work from. If you\r\nreceived the work on a physical medium, you must return the medium with\r\nyour written explanation. The person or entity that provided you with\r\nthe defective work may elect to provide a replacement copy in lieu of a\r\nrefund. If you received the work electronically, the person or entity\r\nproviding it to you may choose to give you a second opportunity to\r\nreceive the work electronically in lieu of a refund. If the second copy\r\nis also defective, you may demand a refund in writing without further\r\nopportunities to fix the problem.\r\n\r\n1.F.4. Except for the limited right of replacement or refund set forth\r\nin paragraph 1.F.3, this work is provided to you \'AS-IS\' WITH NO OTHER\r\nWARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\r\nWARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.\r\n\r\n1.F.5. Some states do not allow disclaimers of certain implied\r\nwarranties or the exclusion or limitation of certain types of damages.\r\nIf any disclaimer or limitation set forth in this agreement violates the\r\nlaw of the state applicable to this agreement, the agreement shall be\r\ninterpreted to make the maximum disclaimer or limitation permitted by\r\nthe applicable state law. The invalidity or unenforceability of any\r\nprovision of this agreement shall not void the remaining provisions.\r\n\r\n1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\r\ntrademark owner, any agent or employee of the Foundation, anyone\r\nproviding copies of Project Gutenberg-tm electronic works in accordance\r\nwith this agreement, and any volunteers associated with the production,\r\npromotion and distribution of Project Gutenberg-tm electronic works,\r\nharmless from all liability, costs and expenses, including legal fees,\r\nthat arise directly or indirectly from any of the following which you do\r\nor cause to occur: (a) distribution of this or any Project Gutenberg-tm\r\nwork, (b) alteration, modification, or additions or deletions to any\r\nProject Gutenberg-tm work, and (c) any Defect you cause.\r\n\r\n\r\nSection 2. Information about the Mission of Project Gutenberg-tm\r\n\r\nProject Gutenberg-tm is synonymous with the free distribution of\r\nelectronic works in formats readable by the widest variety of computers\r\nincluding obsolete, old, middle-aged and new computers. It exists\r\nbecause of the efforts of hundreds of volunteers and donations from\r\npeople in all walks of life.\r\n\r\nVolunteers and financial support to provide volunteers with the\r\nassistance they need, is critical to reaching Project Gutenberg-tm\'s\r\ngoals and ensuring that the Project Gutenberg-tm collection will\r\nremain freely available for generations to come. In 2001, the Project\r\nGutenberg Literary Archive Foundation was created to provide a secure\r\nand permanent future for Project Gutenberg-tm and future generations.\r\nTo learn more about the Project Gutenberg Literary Archive Foundation\r\nand how your efforts and donations can help, see Sections 3 and 4\r\nand the Foundation web page at http://www.pglaf.org.\r\n\r\n\r\nSection 3. Information about the Project Gutenberg Literary Archive\r\nFoundation\r\n\r\nThe Project Gutenberg Literary Archive Foundation is a non profit\r\n501(c)(3) educational corporation organized under the laws of the\r\nstate of Mississippi and granted tax exempt status by the Internal\r\nRevenue Service. The Foundation\'s EIN or federal tax identification\r\nnumber is 64-6221541. Its 501(c)(3) letter is posted at\r\nhttp://pglaf.org/fundraising. Contributions to the Project Gutenberg\r\nLiterary Archive Foundation are tax deductible to the full extent\r\npermitted by U.S. federal laws and your state\'s laws.\r\n\r\nThe Foundation\'s principal office is located at 4557 Melan Dr. S.\r\nFairbanks, AK, 99712., but its volunteers and employees are scattered\r\nthroughout numerous locations. Its business office is located at\r\n809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email\r\nbusiness@pglaf.org. Email contact links and up to date contact\r\ninformation can be found at the Foundation\'s web site and official\r\npage at http://pglaf.org\r\n\r\nFor additional contact information:\r\n Dr. Gregory B. Newby\r\n Chief Executive and Director\r\n gbnewby@pglaf.org\r\n\r\n\r\nSection 4. Information about Donations to the Project Gutenberg\r\nLiterary Archive Foundation\r\n\r\nProject Gutenberg-tm depends upon and cannot survive without wide\r\nspread public support and donations to carry out its mission of\r\nincreasing the number of public domain and licensed works that can be\r\nfreely distributed in machine readable form accessible by the widest\r\narray of equipment including outdated equipment. Many small donations\r\n($1 to $5,000) are particularly important to maintaining tax exempt\r\nstatus with the IRS.\r\n\r\nThe Foundation is committed to complying with the laws regulating\r\ncharities and charitable donations in all 50 states of the United\r\nStates. Compliance requirements are not uniform and it takes a\r\nconsiderable effort, much paperwork and many fees to meet and keep up\r\nwith these requirements. We do not solicit donations in locations\r\nwhere we have not received written confirmation of compliance. To\r\nSEND DONATIONS or determine the status of compliance for any\r\nparticular state visit http://pglaf.org\r\n\r\nWhile we cannot and do not solicit contributions from states where we\r\nhave not met the solicitation requirements, we know of no prohibition\r\nagainst accepting unsolicited donations from donors in such states who\r\napproach us with offers to donate.\r\n\r\nInternational donations are gratefully accepted, but we cannot make\r\nany statements concerning tax treatment of donations received from\r\noutside the United States. U.S. laws alone swamp our small staff.\r\n\r\nPlease check the Project Gutenberg Web pages for current donation\r\nmethods and addresses. Donations are accepted in a number of other\r\nways including checks, online payments and credit card donations.\r\nTo donate, please visit: http://pglaf.org/donate\r\n\r\n\r\nSection 5. General Information About Project Gutenberg-tm electronic\r\nworks.\r\n\r\nProfessor Michael S. Hart is the originator of the Project Gutenberg-tm\r\nconcept of a library of electronic works that could be freely shared\r\nwith anyone. For thirty years, he produced and distributed Project\r\nGutenberg-tm eBooks with only a loose network of volunteer support.\r\n\r\n\r\nProject Gutenberg-tm eBooks are often created from several printed\r\neditions, all of which are confirmed as Public Domain in the U.S.\r\nunless a copyright notice is included. Thus, we do not necessarily\r\nkeep eBooks in compliance with any particular paper edition.\r\n\r\n\r\nMost people start at our Web site which has the main PG search facility:\r\n\r\n http://www.gutenberg.org\r\n\r\nThis Web site includes information about Project Gutenberg-tm,\r\nincluding how to make donations to the Project Gutenberg Literary\r\nArchive Foundation, how to help produce our new eBooks, and how to\r\nsubscribe to our email newsletter to hear about new eBooks.\r\n'); +INSERT INTO `shakespeare` (`id`, `title`, `contents`) VALUES +(5, 'Twelth night: Or, what you will', ' \r\nProject Gutenberg’s Twelfth Night, by William Shakespeare\r\n\r\nThis eBook is for the use of anyone anywhere in the United States and\r\nmost other parts of the world at no cost and with almost no restrictions\r\nwhatsoever. You may copy it, give it away or re-use it under the terms\r\nof the Project Gutenberg License included with this eBook or online at\r\nwww.gutenberg.org. If you are not located in the United States, you’ll\r\nhave to check the laws of the country where you are located before using\r\nthis ebook.\r\n\r\n\r\nTitle: Twelfth Night\r\n\r\nAuthor: William Shakespeare\r\n\r\nRelease Date: November 1998 [EBook #1526]\r\nLast Updated: January 19, 2019\r\n\r\nLanguage: English\r\n\r\nCharacter set encoding: UTF-8\r\n\r\n*** START OF THIS PROJECT GUTENBERG EBOOK TWELFTH NIGHT ***\r\n\r\n\r\nThis etext was produced by the PG Shakespeare Team,\r\na team of about twenty Project Gutenberg volunteers.\r\n\r\n\r\ncover\r\n\r\n\r\nTWELFTH NIGHT: OR, WHAT YOU WILL\r\n\r\n\r\nby William Shakespeare\r\n\r\n\r\nContents\r\n\r\nACT I\r\nScene I. An Apartment in the Duke’s Palace.\r\nScene II. The sea-coast.\r\nScene III. A Room in Olivia’s House.\r\nScene IV. A Room in the Duke’s Palace.\r\nScene V. A Room in Olivia’s House.\r\n\r\n\r\nACT II\r\nScene I. The sea-coast.\r\nScene II. A street.\r\nScene III. A Room in Olivia’s House.\r\nScene IV. A Room in the Duke’s Palace.\r\nScene V. Olivia’s garden.\r\n\r\n\r\nACT III\r\nScene I. Olivia’s garden.\r\nScene II. A Room in Olivia’s House.\r\nScene III. A street.\r\nScene IV. Olivia’s garden.\r\n\r\n\r\nACT IV\r\nScene I. The Street before Olivia’s House.\r\nScene II. A Room in Olivia’s House.\r\nScene III. Olivia’s Garden.\r\n\r\n\r\nACT V\r\nScene I. The Street before Olivia’s House.\r\n\r\n\r\n Dramatis Personæ\r\n\r\nORSINO, Duke of Illyria.\r\nVALENTINE, Gentleman attending on the Duke\r\nCURIO, Gentleman attending on the Duke\r\nVIOLA, in love with the Duke.\r\nSEBASTIAN, a young Gentleman, twin brother to Viola.\r\nA SEA CAPTAIN, friend to Viola\r\nANTONIO, a Sea Captain, friend to Sebastian.\r\nOLIVIA, a rich Countess.\r\nMARIA, Olivia’s Woman.\r\nSIR TOBY BELCH, Uncle of Olivia.\r\nSIR ANDREW AGUECHEEK.\r\nMALVOLIO, Steward to Olivia.\r\nFABIAN, Servant to Olivia.\r\nCLOWN, Servant to Olivia.\r\nPRIEST\r\nLords, Sailors, Officers, Musicians, and other Attendants.\r\n\r\nSCENE: A City in Illyria; and the Sea-coast near it.\r\n\r\n\r\n\r\nACT I.\r\n\r\nSCENE I. An Apartment in the Duke’s Palace.\r\n\r\n Enter Orsino, Duke of Illyria, Curio, and other Lords; Musicians\r\n attending.\r\n\r\nDUKE.\r\nIf music be the food of love, play on,\r\nGive me excess of it; that, surfeiting,\r\nThe appetite may sicken and so die.\r\nThat strain again, it had a dying fall;\r\nO, it came o’er my ear like the sweet sound\r\nThat breathes upon a bank of violets,\r\nStealing and giving odour. Enough; no more;\r\n’Tis not so sweet now as it was before.\r\nO spirit of love, how quick and fresh art thou,\r\nThat notwithstanding thy capacity\r\nReceiveth as the sea, nought enters there,\r\nOf what validity and pitch soever,\r\nBut falls into abatement and low price\r\nEven in a minute! So full of shapes is fancy,\r\nThat it alone is high fantastical.\r\n\r\nCURIO.\r\nWill you go hunt, my lord?\r\n\r\nDUKE.\r\nWhat, Curio?\r\n\r\nCURIO.\r\nThe hart.\r\n\r\nDUKE.\r\nWhy so I do, the noblest that I have.\r\nO, when mine eyes did see Olivia first,\r\nMethought she purg’d the air of pestilence;\r\nThat instant was I turn’d into a hart,\r\nAnd my desires, like fell and cruel hounds,\r\nE’er since pursue me. How now? what news from her?\r\n\r\n Enter Valentine.\r\n\r\nVALENTINE.\r\nSo please my lord, I might not be admitted,\r\nBut from her handmaid do return this answer:\r\nThe element itself, till seven years’ heat,\r\nShall not behold her face at ample view;\r\nBut like a cloistress she will veiled walk,\r\nAnd water once a day her chamber round\r\nWith eye-offending brine: all this to season\r\nA brother’s dead love, which she would keep fresh\r\nAnd lasting in her sad remembrance.\r\n\r\nDUKE.\r\nO, she that hath a heart of that fine frame\r\nTo pay this debt of love but to a brother,\r\nHow will she love, when the rich golden shaft\r\nHath kill’d the flock of all affections else\r\nThat live in her; when liver, brain, and heart,\r\nThese sovereign thrones, are all supplied and fill’d\r\nHer sweet perfections with one self king!\r\nAway before me to sweet beds of flowers,\r\nLove-thoughts lie rich when canopied with bowers.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. The sea-coast.\r\n\r\n Enter Viola, a Captain and Sailors.\r\n\r\nVIOLA.\r\nWhat country, friends, is this?\r\n\r\nCAPTAIN.\r\nThis is Illyria, lady.\r\n\r\nVIOLA.\r\nAnd what should I do in Illyria?\r\nMy brother he is in Elysium.\r\nPerchance he is not drown’d. What think you, sailors?\r\n\r\nCAPTAIN.\r\nIt is perchance that you yourself were sav’d.\r\n\r\nVIOLA.\r\nO my poor brother! and so perchance may he be.\r\n\r\nCAPTAIN.\r\nTrue, madam; and to comfort you with chance,\r\nAssure yourself, after our ship did split,\r\nWhen you, and those poor number sav’d with you,\r\nHung on our driving boat, I saw your brother,\r\nMost provident in peril, bind himself,\r\n(Courage and hope both teaching him the practice)\r\nTo a strong mast that liv’d upon the sea;\r\nWhere, like Arion on the dolphin’s back,\r\nI saw him hold acquaintance with the waves\r\nSo long as I could see.\r\n\r\nVIOLA.\r\nFor saying so, there’s gold!\r\nMine own escape unfoldeth to my hope,\r\nWhereto thy speech serves for authority,\r\nThe like of him. Know’st thou this country?\r\n\r\nCAPTAIN.\r\nAy, madam, well, for I was bred and born\r\nNot three hours’ travel from this very place.\r\n\r\nVIOLA.\r\nWho governs here?\r\n\r\nCAPTAIN.\r\nA noble duke, in nature as in name.\r\n\r\nVIOLA.\r\nWhat is his name?\r\n\r\nCAPTAIN.\r\nOrsino.\r\n\r\nVIOLA.\r\nOrsino! I have heard my father name him.\r\nHe was a bachelor then.\r\n\r\nCAPTAIN.\r\nAnd so is now, or was so very late;\r\nFor but a month ago I went from hence,\r\nAnd then ’twas fresh in murmur, (as, you know,\r\nWhat great ones do, the less will prattle of)\r\nThat he did seek the love of fair Olivia.\r\n\r\nVIOLA.\r\nWhat’s she?\r\n\r\nCAPTAIN.\r\nA virtuous maid, the daughter of a count\r\nThat died some twelvemonth since; then leaving her\r\nIn the protection of his son, her brother,\r\nWho shortly also died; for whose dear love\r\nThey say, she hath abjur’d the company\r\nAnd sight of men.\r\n\r\nVIOLA.\r\nO that I served that lady,\r\nAnd might not be delivered to the world,\r\nTill I had made mine own occasion mellow,\r\nWhat my estate is.\r\n\r\nCAPTAIN.\r\nThat were hard to compass,\r\nBecause she will admit no kind of suit,\r\nNo, not the Duke’s.\r\n\r\nVIOLA.\r\nThere is a fair behaviour in thee, Captain;\r\nAnd though that nature with a beauteous wall\r\nDoth oft close in pollution, yet of thee\r\nI will believe thou hast a mind that suits\r\nWith this thy fair and outward character.\r\nI pray thee, and I’ll pay thee bounteously,\r\nConceal me what I am, and be my aid\r\nFor such disguise as haply shall become\r\nThe form of my intent. I’ll serve this duke;\r\nThou shalt present me as an eunuch to him.\r\nIt may be worth thy pains; for I can sing,\r\nAnd speak to him in many sorts of music,\r\nThat will allow me very worth his service.\r\nWhat else may hap, to time I will commit;\r\nOnly shape thou thy silence to my wit.\r\n\r\nCAPTAIN.\r\nBe you his eunuch and your mute I’ll be;\r\nWhen my tongue blabs, then let mine eyes not see.\r\n\r\nVIOLA.\r\nI thank thee. Lead me on.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE III. A Room in Olivia’s House.\r\n\r\n Enter Sir Toby and Maria.\r\n\r\nSIR TOBY.\r\nWhat a plague means my niece to take the death of her brother thus? I\r\nam sure care’s an enemy to life.\r\n\r\nMARIA.\r\nBy my troth, Sir Toby, you must come in earlier o’ nights; your cousin,\r\nmy lady, takes great exceptions to your ill hours.\r\n\r\nSIR TOBY.\r\nWhy, let her except, before excepted.\r\n\r\nMARIA.\r\nAy, but you must confine yourself within the modest limits of order.\r\n\r\nSIR TOBY.\r\nConfine? I’ll confine myself no finer than I am. These clothes are good\r\nenough to drink in, and so be these boots too; and they be not, let\r\nthem hang themselves in their own straps.\r\n\r\nMARIA.\r\nThat quaffing and drinking will undo you: I heard my lady talk of it\r\nyesterday; and of a foolish knight that you brought in one night here\r\nto be her wooer.\r\n\r\nSIR TOBY.\r\nWho? Sir Andrew Aguecheek?\r\n\r\nMARIA.\r\nAy, he.\r\n\r\nSIR TOBY.\r\nHe’s as tall a man as any’s in Illyria.\r\n\r\nMARIA.\r\nWhat’s that to th’ purpose?\r\n\r\nSIR TOBY.\r\nWhy, he has three thousand ducats a year.\r\n\r\nMARIA.\r\nAy, but he’ll have but a year in all these ducats. He’s a very fool,\r\nand a prodigal.\r\n\r\nSIR TOBY.\r\nFie, that you’ll say so! he plays o’ the viol-de-gamboys, and speaks\r\nthree or four languages word for word without book, and hath all the\r\ngood gifts of nature.\r\n\r\nMARIA.\r\nHe hath indeed, almost natural: for, besides that he’s a fool, he’s a\r\ngreat quarreller; and, but that he hath the gift of a coward to allay\r\nthe gust he hath in quarrelling, ’tis thought among the prudent he\r\nwould quickly have the gift of a grave.\r\n\r\nSIR TOBY.\r\nBy this hand, they are scoundrels and substractors that say so of him.\r\nWho are they?\r\n\r\nMARIA.\r\nThey that add, moreover, he’s drunk nightly in your company.\r\n\r\nSIR TOBY.\r\nWith drinking healths to my niece; I’ll drink to her as long as there\r\nis a passage in my throat, and drink in Illyria. He’s a coward and a\r\ncoystril that will not drink to my niece till his brains turn o’ the\r\ntoe like a parish top. What, wench! _Castiliano vulgo:_ for here comes\r\nSir Andrew Agueface.\r\n\r\n Enter Sir Andrew.\r\n\r\nAGUECHEEK.\r\nSir Toby Belch! How now, Sir Toby Belch?\r\n\r\nSIR TOBY.\r\nSweet Sir Andrew!\r\n\r\nSIR ANDREW.\r\nBless you, fair shrew.\r\n\r\nMARIA.\r\nAnd you too, sir.\r\n\r\nSIR TOBY.\r\nAccost, Sir Andrew, accost.\r\n\r\nSIR ANDREW.\r\nWhat’s that?\r\n\r\nSIR TOBY.\r\nMy niece’s chamber-maid.\r\n\r\nSIR ANDREW.\r\nGood Mistress Accost, I desire better acquaintance.\r\n\r\nMARIA.\r\nMy name is Mary, sir.\r\n\r\nSIR ANDREW.\r\nGood Mistress Mary Accost,—\r\n\r\nSIR TOBY.\r\nYou mistake, knight: accost is front her, board her, woo her, assail\r\nher.\r\n\r\nSIR ANDREW.\r\nBy my troth, I would not undertake her in this company. Is that the\r\nmeaning of accost?\r\n\r\nMARIA.\r\nFare you well, gentlemen.\r\n\r\nSIR TOBY.\r\nAnd thou let part so, Sir Andrew, would thou mightst never draw sword\r\nagain.\r\n\r\nSIR ANDREW.\r\nAnd you part so, mistress, I would I might never draw sword again. Fair\r\nlady, do you think you have fools in hand?\r\n\r\nMARIA.\r\nSir, I have not you by the hand.\r\n\r\nSIR ANDREW.\r\nMarry, but you shall have, and here’s my hand.\r\n\r\nMARIA.\r\nNow, sir, thought is free. I pray you, bring your hand to th’ buttery\r\nbar and let it drink.\r\n\r\nSIR ANDREW.\r\nWherefore, sweetheart? What’s your metaphor?\r\n\r\nMARIA.\r\nIt’s dry, sir.\r\n\r\nSIR ANDREW.\r\nWhy, I think so; I am not such an ass but I can keep my hand dry. But\r\nwhat’s your jest?\r\n\r\nMARIA.\r\nA dry jest, sir.\r\n\r\nSIR ANDREW.\r\nAre you full of them?\r\n\r\nMARIA.\r\nAy, sir, I have them at my fingers’ ends: marry, now I let go your\r\nhand, I am barren.\r\n\r\n [_Exit Maria._]\r\n\r\nSIR TOBY.\r\nO knight, thou lack’st a cup of canary: When did I see thee so put\r\ndown?\r\n\r\nSIR ANDREW.\r\nNever in your life, I think, unless you see canary put me down.\r\nMethinks sometimes I have no more wit than a Christian or an ordinary\r\nman has; but I am a great eater of beef, and I believe that does harm\r\nto my wit.\r\n\r\nSIR TOBY.\r\nNo question.\r\n\r\nSIR ANDREW.\r\nAnd I thought that, I’d forswear it. I’ll ride home tomorrow, Sir Toby.\r\n\r\nSIR TOBY.\r\n_Pourquoy_, my dear knight?\r\n\r\nSIR ANDREW.\r\nWhat is _pourquoy?_ Do, or not do? I would I had bestowed that time in\r\nthe tongues that I have in fencing, dancing, and bear-baiting. O, had I\r\nbut followed the arts!\r\n\r\nSIR TOBY.\r\nThen hadst thou had an excellent head of hair.\r\n\r\nSIR ANDREW.\r\nWhy, would that have mended my hair?\r\n\r\nSIR TOBY.\r\nPast question; for thou seest it will not curl by nature.\r\n\r\nSIR ANDREW.\r\nBut it becomes me well enough, does’t not?\r\n\r\nSIR TOBY.\r\nExcellent, it hangs like flax on a distaff; and I hope to see a\r\nhouswife take thee between her legs, and spin it off.\r\n\r\nSIR ANDREW.\r\nFaith, I’ll home tomorrow, Sir Toby; your niece will not be seen, or if\r\nshe be, it’s four to one she’ll none of me; the Count himself here hard\r\nby woos her.\r\n\r\nSIR TOBY.\r\nShe’ll none o’ the Count; she’ll not match above her degree, neither in\r\nestate, years, nor wit; I have heard her swear’t. Tut, there’s life\r\nin’t, man.\r\n\r\nSIR ANDREW.\r\nI’ll stay a month longer. I am a fellow o’ the strangest mind i’ the\r\nworld; I delight in masques and revels sometimes altogether.\r\n\r\nSIR TOBY.\r\nArt thou good at these kick-shawses, knight?\r\n\r\nSIR ANDREW.\r\nAs any man in Illyria, whatsoever he be, under the degree of my\r\nbetters; and yet I will not compare with an old man.\r\n\r\nSIR TOBY.\r\nWhat is thy excellence in a galliard, knight?\r\n\r\nSIR ANDREW.\r\nFaith, I can cut a caper.\r\n\r\nSIR TOBY.\r\nAnd I can cut the mutton to’t.\r\n\r\nSIR ANDREW.\r\nAnd I think I have the back-trick simply as strong as any man in\r\nIllyria.\r\n\r\nSIR TOBY.\r\nWherefore are these things hid? Wherefore have these gifts a curtain\r\nbefore ’em? Are they like to take dust, like Mistress Mall’s picture?\r\nWhy dost thou not go to church in a galliard, and come home in a\r\ncoranto? My very walk should be a jig; I would not so much as make\r\nwater but in a sink-a-pace. What dost thou mean? Is it a world to hide\r\nvirtues in? I did think, by the excellent constitution of thy leg, it\r\nwas formed under the star of a galliard.\r\n\r\nSIR ANDREW.\r\nAy, ’tis strong, and it does indifferent well in a dam’d-colour’d\r\nstock. Shall we set about some revels?\r\n\r\nSIR TOBY.\r\nWhat shall we do else? Were we not born under Taurus?\r\n\r\nSIR ANDREW.\r\nTaurus? That’s sides and heart.\r\n\r\nSIR TOBY.\r\nNo, sir, it is legs and thighs. Let me see thee caper. Ha, higher: ha,\r\nha, excellent!\r\n\r\n [_Exeunt._]\r\n\r\nSCENE IV. A Room in the Duke’s Palace.\r\n\r\n Enter Valentine and Viola in man’s attire.\r\n\r\nVALENTINE.\r\nIf the duke continue these favours towards you, Cesario, you are like\r\nto be much advanced; he hath known you but three days, and already you\r\nare no stranger.\r\n\r\nVIOLA.\r\nYou either fear his humour or my negligence, that you call in question\r\nthe continuance of his love. Is he inconstant, sir, in his favours?\r\n\r\nVALENTINE.\r\nNo, believe me.\r\n\r\n Enter Duke, Curio and Attendants.\r\n\r\nVIOLA.\r\nI thank you. Here comes the Count.\r\n\r\nDUKE.\r\nWho saw Cesario, ho?\r\n\r\nVIOLA.\r\nOn your attendance, my lord, here.\r\n\r\nDUKE.\r\nStand you awhile aloof.—Cesario,\r\nThou know’st no less but all; I have unclasp’d\r\nTo thee the book even of my secret soul.\r\nTherefore, good youth, address thy gait unto her,\r\nBe not denied access, stand at her doors,\r\nAnd tell them, there thy fixed foot shall grow\r\nTill thou have audience.\r\n\r\nVIOLA.\r\nSure, my noble lord,\r\nIf she be so abandon’d to her sorrow\r\nAs it is spoke, she never will admit me.\r\n\r\nDUKE.\r\nBe clamorous and leap all civil bounds,\r\nRather than make unprofited return.\r\n\r\nVIOLA.\r\nSay I do speak with her, my lord, what then?\r\n\r\nDUKE.\r\nO then unfold the passion of my love,\r\nSurprise her with discourse of my dear faith;\r\nIt shall become thee well to act my woes;\r\nShe will attend it better in thy youth,\r\nThan in a nuncio’s of more grave aspect.\r\n\r\nVIOLA.\r\nI think not so, my lord.\r\n\r\nDUKE.\r\nDear lad, believe it;\r\nFor they shall yet belie thy happy years,\r\nThat say thou art a man: Diana’s lip\r\nIs not more smooth and rubious; thy small pipe\r\nIs as the maiden’s organ, shrill and sound,\r\nAnd all is semblative a woman’s part.\r\nI know thy constellation is right apt\r\nFor this affair. Some four or five attend him:\r\nAll, if you will; for I myself am best\r\nWhen least in company. Prosper well in this,\r\nAnd thou shalt live as freely as thy lord,\r\nTo call his fortunes thine.\r\n\r\nVIOLA.\r\nI’ll do my best\r\nTo woo your lady. [_Aside._] Yet, a barful strife!\r\nWhoe’er I woo, myself would be his wife.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE V. A Room in Olivia’s House.\r\n\r\n Enter Maria and Clown.\r\n\r\nMARIA.\r\nNay; either tell me where thou hast been, or I will not open my lips so\r\nwide as a bristle may enter, in way of thy excuse: my lady will hang\r\nthee for thy absence.\r\n\r\nCLOWN.\r\nLet her hang me: he that is well hanged in this world needs to fear no\r\ncolours.\r\n\r\nMARIA.\r\nMake that good.\r\n\r\nCLOWN.\r\nHe shall see none to fear.\r\n\r\nMARIA.\r\nA good lenten answer. I can tell thee where that saying was born, of I\r\nfear no colours.\r\n\r\nCLOWN.\r\nWhere, good Mistress Mary?\r\n\r\nMARIA.\r\nIn the wars, and that may you be bold to say in your foolery.\r\n\r\nCLOWN.\r\nWell, God give them wisdom that have it; and those that are fools, let\r\nthem use their talents.\r\n\r\nMARIA.\r\nYet you will be hanged for being so long absent; or to be turned away;\r\nis not that as good as a hanging to you?\r\n\r\nCLOWN.\r\nMany a good hanging prevents a bad marriage; and for turning away, let\r\nsummer bear it out.\r\n\r\nMARIA.\r\nYou are resolute then?\r\n\r\nCLOWN.\r\nNot so, neither, but I am resolved on two points.\r\n\r\nMARIA.\r\nThat if one break, the other will hold; or if both break, your gaskins\r\nfall.\r\n\r\nCLOWN.\r\nApt, in good faith, very apt! Well, go thy way; if Sir Toby would leave\r\ndrinking, thou wert as witty a piece of Eve’s flesh as any in Illyria.\r\n\r\nMARIA.\r\nPeace, you rogue, no more o’ that. Here comes my lady: make your excuse\r\nwisely, you were best.\r\n\r\n [_Exit._]\r\n\r\n Enter Olivia with Malvolio.\r\n\r\nCLOWN.\r\nWit, and’t be thy will, put me into good fooling! Those wits that think\r\nthey have thee, do very oft prove fools; and I that am sure I lack\r\nthee, may pass for a wise man. For what says Quinapalus? Better a witty\r\nfool than a foolish wit. God bless thee, lady!\r\n\r\nOLIVIA.\r\nTake the fool away.\r\n\r\nCLOWN.\r\nDo you not hear, fellows? Take away the lady.\r\n\r\nOLIVIA.\r\nGo to, y’are a dry fool; I’ll no more of you. Besides, you grow\r\ndishonest.\r\n\r\nCLOWN.\r\nTwo faults, madonna, that drink and good counsel will amend: for give\r\nthe dry fool drink, then is the fool not dry; bid the dishonest man\r\nmend himself, if he mend, he is no longer dishonest; if he cannot, let\r\nthe botcher mend him. Anything that’s mended is but patched; virtue\r\nthat transgresses is but patched with sin, and sin that amends is but\r\npatched with virtue. If that this simple syllogism will serve, so; if\r\nit will not, what remedy? As there is no true cuckold but calamity, so\r\nbeauty’s a flower. The lady bade take away the fool, therefore, I say\r\nagain, take her away.\r\n\r\nOLIVIA.\r\nSir, I bade them take away you.\r\n\r\nCLOWN.\r\nMisprision in the highest degree! Lady, _cucullus non facit monachum:_\r\nthat’s as much to say, I wear not motley in my brain. Good madonna,\r\ngive me leave to prove you a fool.\r\n\r\nOLIVIA.\r\nCan you do it?\r\n\r\nCLOWN.\r\nDexteriously, good madonna.\r\n\r\nOLIVIA.\r\nMake your proof.\r\n\r\nCLOWN.\r\nI must catechize you for it, madonna. Good my mouse of virtue, answer\r\nme.\r\n\r\nOLIVIA.\r\nWell sir, for want of other idleness, I’ll ’bide your proof.\r\n\r\nCLOWN.\r\nGood madonna, why mourn’st thou?\r\n\r\nOLIVIA.\r\nGood fool, for my brother’s death.\r\n\r\nCLOWN.\r\nI think his soul is in hell, madonna.\r\n\r\nOLIVIA.\r\nI know his soul is in heaven, fool.\r\n\r\nCLOWN.\r\nThe more fool you, madonna, to mourn for your brother’s soul being in\r\nheaven. Take away the fool, gentlemen.\r\n\r\nOLIVIA.\r\nWhat think you of this fool, Malvolio? doth he not mend?\r\n\r\nMALVOLIO.\r\nYes; and shall do, till the pangs of death shake him. Infirmity, that\r\ndecays the wise, doth ever make the better fool.\r\n\r\nCLOWN.\r\nGod send you, sir, a speedy infirmity, for the better increasing your\r\nfolly! Sir Toby will be sworn that I am no fox; but he will not pass\r\nhis word for twopence that you are no fool.\r\n\r\nOLIVIA.\r\nHow say you to that, Malvolio?\r\n\r\nMALVOLIO.\r\nI marvel your ladyship takes delight in such a barren rascal; I saw him\r\nput down the other day with an ordinary fool, that has no more brain\r\nthan a stone. Look you now, he’s out of his guard already; unless you\r\nlaugh and minister occasion to him, he is gagged. I protest I take\r\nthese wise men, that crow so at these set kind of fools, no better than\r\nthe fools’ zanies.\r\n\r\nOLIVIA.\r\nO, you are sick of self-love, Malvolio, and taste with a distempered\r\nappetite. To be generous, guiltless, and of free disposition, is to\r\ntake those things for bird-bolts that you deem cannon bullets. There is\r\nno slander in an allowed fool, though he do nothing but rail; nor no\r\nrailing in a known discreet man, though he do nothing but reprove.\r\n\r\nCLOWN.\r\nNow Mercury endue thee with leasing, for thou speak’st well of fools!\r\n\r\n Enter Maria.\r\n\r\nMARIA.\r\nMadam, there is at the gate a young gentleman much desires to speak\r\nwith you.\r\n\r\nOLIVIA.\r\nFrom the Count Orsino, is it?\r\n\r\nMARIA.\r\nI know not, madam; ’tis a fair young man, and well attended.\r\n\r\nOLIVIA.\r\nWho of my people hold him in delay?\r\n\r\nMARIA.\r\nSir Toby, madam, your kinsman.\r\n\r\nOLIVIA.\r\nFetch him off, I pray you; he speaks nothing but madman. Fie on him!\r\n\r\n [_Exit Maria._]\r\n\r\nGo you, Malvolio. If it be a suit from the Count, I am sick, or not at\r\nhome. What you will, to dismiss it.\r\n\r\n [_Exit Malvolio._]\r\n\r\nNow you see, sir, how your fooling grows old, and people dislike it.\r\n\r\nCLOWN.\r\nThou hast spoke for us, madonna, as if thy eldest son should be a fool:\r\nwhose skull Jove cram with brains, for here he comes, one of thy kin\r\nhas a most weak _pia mater_.\r\n\r\n Enter Sir Toby.\r\n\r\nOLIVIA.\r\nBy mine honour, half drunk. What is he at the gate, cousin?\r\n\r\nSIR TOBY.\r\nA gentleman.\r\n\r\nOLIVIA.\r\nA gentleman? What gentleman?\r\n\r\nSIR TOBY.\r\n’Tis a gentleman here. A plague o’ these pickle-herrings! How now, sot?\r\n\r\nCLOWN.\r\nGood Sir Toby.\r\n\r\nOLIVIA.\r\nCousin, cousin, how have you come so early by this lethargy?\r\n\r\nSIR TOBY.\r\nLechery! I defy lechery. There’s one at the gate.\r\n\r\nOLIVIA.\r\nAy, marry, what is he?\r\n\r\nSIR TOBY.\r\nLet him be the devil an he will, I care not: give me faith, say I.\r\nWell, it’s all one.\r\n\r\n [_Exit._]\r\n\r\nOLIVIA.\r\nWhat’s a drunken man like, fool?\r\n\r\nCLOWN.\r\nLike a drowned man, a fool, and a madman: one draught above heat makes\r\nhim a fool, the second mads him, and a third drowns him.\r\n\r\nOLIVIA.\r\nGo thou and seek the coroner, and let him sit o’ my coz; for he’s in\r\nthe third degree of drink; he’s drowned. Go, look after him.\r\n\r\nCLOWN.\r\nHe is but mad yet, madonna; and the fool shall look to the madman.\r\n\r\n [_Exit Clown._]\r\n\r\n Enter Malvolio.\r\n\r\nMALVOLIO.\r\nMadam, yond young fellow swears he will speak with you. I told him you\r\nwere sick; he takes on him to understand so much, and therefore comes\r\nto speak with you. I told him you were asleep; he seems to have a\r\nforeknowledge of that too, and therefore comes to speak with you. What\r\nis to be said to him, lady? He’s fortified against any denial.\r\n\r\nOLIVIA.\r\nTell him, he shall not speak with me.\r\n\r\nMALVOLIO.\r\nHas been told so; and he says he’ll stand at your door like a sheriff’s\r\npost, and be the supporter of a bench, but he’ll speak with you.\r\n\r\nOLIVIA.\r\nWhat kind o’ man is he?\r\n\r\nMALVOLIO.\r\nWhy, of mankind.\r\n\r\nOLIVIA.\r\nWhat manner of man?\r\n\r\nMALVOLIO.\r\nOf very ill manner; he’ll speak with you, will you or no.\r\n\r\nOLIVIA.\r\nOf what personage and years is he?\r\n\r\nMALVOLIO.\r\nNot yet old enough for a man, nor young enough for a boy; as a squash\r\nis before ’tis a peascod, or a codling, when ’tis almost an apple. ’Tis\r\nwith him in standing water, between boy and man. He is very\r\nwell-favoured, and he speaks very shrewishly. One would think his\r\nmother’s milk were scarce out of him.\r\n\r\nOLIVIA.\r\nLet him approach. Call in my gentlewoman.\r\n\r\nMALVOLIO.\r\nGentlewoman, my lady calls.\r\n\r\n [_Exit._]\r\n\r\n Enter Maria.\r\n\r\nOLIVIA.\r\nGive me my veil; come, throw it o’er my face.\r\nWe’ll once more hear Orsino’s embassy.\r\n\r\n Enter Viola.\r\n\r\nVIOLA.\r\nThe honourable lady of the house, which is she?\r\n\r\nOLIVIA.\r\nSpeak to me; I shall answer for her. Your will?\r\n\r\nVIOLA.\r\nMost radiant, exquisite, and unmatchable beauty,—I pray you, tell me if\r\nthis be the lady of the house, for I never saw her. I would be loath to\r\ncast away my speech; for besides that it is excellently well penned, I\r\nhave taken great pains to con it. Good beauties, let me sustain no\r\nscorn; I am very comptible, even to the least sinister usage.\r\n\r\nOLIVIA.\r\nWhence came you, sir?\r\n\r\nVIOLA.\r\nI can say little more than I have studied, and that question’s out of\r\nmy part. Good gentle one, give me modest assurance, if you be the lady\r\nof the house, that I may proceed in my speech.\r\n\r\nOLIVIA.\r\nAre you a comedian?\r\n\r\nVIOLA.\r\nNo, my profound heart: and yet, by the very fangs of malice I swear, I\r\nam not that I play. Are you the lady of the house?\r\n\r\nOLIVIA.\r\nIf I do not usurp myself, I am.\r\n\r\nVIOLA.\r\nMost certain, if you are she, you do usurp yourself; for what is yours\r\nto bestow is not yours to reserve. But this is from my commission. I\r\nwill on with my speech in your praise, and then show you the heart of\r\nmy message.\r\n\r\nOLIVIA.\r\nCome to what is important in’t: I forgive you the praise.\r\n\r\nVIOLA.\r\nAlas, I took great pains to study it, and ’tis poetical.\r\n\r\nOLIVIA.\r\nIt is the more like to be feigned; I pray you keep it in. I heard you\r\nwere saucy at my gates; and allowed your approach, rather to wonder at\r\nyou than to hear you. If you be mad, be gone; if you have reason, be\r\nbrief: ’tis not that time of moon with me to make one in so skipping a\r\ndialogue.\r\n\r\nMARIA.\r\nWill you hoist sail, sir? Here lies your way.\r\n\r\nVIOLA.\r\nNo, good swabber, I am to hull here a little longer. Some mollification\r\nfor your giant, sweet lady. Tell me your mind. I am a messenger.\r\n\r\nOLIVIA.\r\nSure, you have some hideous matter to deliver, when the courtesy of it\r\nis so fearful. Speak your office.\r\n\r\nVIOLA.\r\nIt alone concerns your ear. I bring no overture of war, no taxation of\r\nhomage; I hold the olive in my hand: my words are as full of peace as\r\nmatter.\r\n\r\nOLIVIA.\r\nYet you began rudely. What are you? What would you?\r\n\r\nVIOLA.\r\nThe rudeness that hath appeared in me have I learned from my\r\nentertainment. What I am and what I would are as secret as maidenhead:\r\nto your ears, divinity; to any other’s, profanation.\r\n\r\nOLIVIA.\r\nGive us the place alone: we will hear this divinity.\r\n\r\n [_Exit Maria._]\r\n\r\nNow, sir, what is your text?\r\n\r\nVIOLA.\r\nMost sweet lady—\r\n\r\nOLIVIA.\r\nA comfortable doctrine, and much may be said of it. Where lies your\r\ntext?\r\n\r\nVIOLA.\r\nIn Orsino’s bosom.\r\n\r\nOLIVIA.\r\nIn his bosom? In what chapter of his bosom?\r\n\r\nVIOLA.\r\nTo answer by the method, in the first of his heart.\r\n\r\nOLIVIA.\r\nO, I have read it; it is heresy. Have you no more to say?\r\n\r\nVIOLA.\r\nGood madam, let me see your face.\r\n\r\nOLIVIA.\r\nHave you any commission from your lord to negotiate with my face? You\r\nare now out of your text: but we will draw the curtain and show you the\r\npicture. [_Unveiling._] Look you, sir, such a one I was this present.\r\nIs’t not well done?\r\n\r\nVIOLA.\r\nExcellently done, if God did all.\r\n\r\nOLIVIA.\r\n’Tis in grain, sir; ’twill endure wind and weather.\r\n\r\nVIOLA.\r\n’Tis beauty truly blent, whose red and white\r\nNature’s own sweet and cunning hand laid on.\r\nLady, you are the cruel’st she alive\r\nIf you will lead these graces to the grave,\r\nAnd leave the world no copy.\r\n\r\nOLIVIA.\r\nO, sir, I will not be so hard-hearted; I will give out divers schedules\r\nof my beauty. It shall be inventoried and every particle and utensil\r\nlabelled to my will: as, item, two lips indifferent red; item, two grey\r\neyes with lids to them; item, one neck, one chin, and so forth. Were\r\nyou sent hither to praise me?\r\n\r\nVIOLA.\r\nI see you what you are, you are too proud;\r\nBut, if you were the devil, you are fair.\r\nMy lord and master loves you. O, such love\r\nCould be but recompens’d though you were crown’d\r\nThe nonpareil of beauty!\r\n\r\nOLIVIA.\r\nHow does he love me?\r\n\r\nVIOLA.\r\nWith adorations, fertile tears,\r\nWith groans that thunder love, with sighs of fire.\r\n\r\nOLIVIA.\r\nYour lord does know my mind, I cannot love him:\r\nYet I suppose him virtuous, know him noble,\r\nOf great estate, of fresh and stainless youth;\r\nIn voices well divulg’d, free, learn’d, and valiant,\r\nAnd in dimension and the shape of nature,\r\nA gracious person. But yet I cannot love him.\r\nHe might have took his answer long ago.\r\n\r\nVIOLA.\r\nIf I did love you in my master’s flame,\r\nWith such a suff’ring, such a deadly life,\r\nIn your denial I would find no sense,\r\nI would not understand it.\r\n\r\nOLIVIA.\r\nWhy, what would you?\r\n\r\nVIOLA.\r\nMake me a willow cabin at your gate,\r\nAnd call upon my soul within the house;\r\nWrite loyal cantons of contemned love,\r\nAnd sing them loud even in the dead of night;\r\nHallow your name to the reverberate hills,\r\nAnd make the babbling gossip of the air\r\nCry out Olivia! O, you should not rest\r\nBetween the elements of air and earth,\r\nBut you should pity me.\r\n\r\nOLIVIA.\r\nYou might do much.\r\nWhat is your parentage?\r\n\r\nVIOLA.\r\nAbove my fortunes, yet my state is well:\r\nI am a gentleman.\r\n\r\nOLIVIA.\r\nGet you to your lord;\r\nI cannot love him: let him send no more,\r\nUnless, perchance, you come to me again,\r\nTo tell me how he takes it. Fare you well:\r\nI thank you for your pains: spend this for me.\r\n\r\nVIOLA.\r\nI am no fee’d post, lady; keep your purse;\r\nMy master, not myself, lacks recompense.\r\nLove make his heart of flint that you shall love,\r\nAnd let your fervour like my master’s be\r\nPlac’d in contempt. Farewell, fair cruelty.\r\n\r\n [_Exit._]\r\n\r\nOLIVIA.\r\nWhat is your parentage?\r\n‘Above my fortunes, yet my state is well:\r\nI am a gentleman.’ I’ll be sworn thou art;\r\nThy tongue, thy face, thy limbs, actions, and spirit,\r\nDo give thee five-fold blazon. Not too fast: soft, soft!\r\nUnless the master were the man. How now?\r\nEven so quickly may one catch the plague?\r\nMethinks I feel this youth’s perfections\r\nWith an invisible and subtle stealth\r\nTo creep in at mine eyes. Well, let it be.\r\nWhat ho, Malvolio!\r\n\r\n Enter Malvolio.\r\n\r\nMALVOLIO.\r\nHere, madam, at your service.\r\n\r\nOLIVIA.\r\nRun after that same peevish messenger\r\nThe County’s man: he left this ring behind him,\r\nWould I or not; tell him, I’ll none of it.\r\nDesire him not to flatter with his lord,\r\nNor hold him up with hopes; I am not for him.\r\nIf that the youth will come this way tomorrow,\r\nI’ll give him reasons for’t. Hie thee, Malvolio.\r\n\r\nMALVOLIO.\r\nMadam, I will.\r\n\r\n [_Exit._]\r\n\r\nOLIVIA.\r\nI do I know not what, and fear to find\r\nMine eye too great a flatterer for my mind.\r\nFate, show thy force, ourselves we do not owe.\r\nWhat is decreed must be; and be this so!\r\n\r\n [_Exit._]\r\n\r\n\r\n\r\nACT II.\r\n\r\nSCENE I. The sea-coast.\r\n\r\n Enter Antonio and Sebastian.\r\n\r\nANTONIO.\r\nWill you stay no longer? Nor will you not that I go with you?\r\n\r\nSEBASTIAN.\r\nBy your patience, no; my stars shine darkly over me; the malignancy of\r\nmy fate might perhaps distemper yours; therefore I shall crave of you\r\nyour leave that I may bear my evils alone. It were a bad recompense for\r\nyour love, to lay any of them on you.\r\n\r\nANTONIO.\r\nLet me know of you whither you are bound.\r\n\r\nSEBASTIAN.\r\nNo, sooth, sir; my determinate voyage is mere extravagancy. But I\r\nperceive in you so excellent a touch of modesty, that you will not\r\nextort from me what I am willing to keep in. Therefore it charges me in\r\nmanners the rather to express myself. You must know of me then,\r\nAntonio, my name is Sebastian, which I called Roderigo; my father was\r\nthat Sebastian of Messaline whom I know you have heard of. He left\r\nbehind him myself and a sister, both born in an hour. If the heavens\r\nhad been pleased, would we had so ended! But you, sir, altered that,\r\nfor some hour before you took me from the breach of the sea was my\r\nsister drowned.\r\n\r\nANTONIO.\r\nAlas the day!\r\n\r\nSEBASTIAN.\r\nA lady, sir, though it was said she much resembled me, was yet of many\r\naccounted beautiful. But though I could not with such estimable wonder\r\noverfar believe that, yet thus far I will boldly publish her, she bore\r\na mind that envy could not but call fair. She is drowned already, sir,\r\nwith salt water, though I seem to drown her remembrance again with\r\nmore.\r\n\r\nANTONIO.\r\nPardon me, sir, your bad entertainment.\r\n\r\nSEBASTIAN.\r\nO good Antonio, forgive me your trouble.\r\n\r\nANTONIO.\r\nIf you will not murder me for my love, let me be your servant.\r\n\r\nSEBASTIAN.\r\nIf you will not undo what you have done, that is, kill him whom you\r\nhave recovered, desire it not. Fare ye well at once; my bosom is full\r\nof kindness, and I am yet so near the manners of my mother, that upon\r\nthe least occasion more, mine eyes will tell tales of me. I am bound to\r\nthe Count Orsino’s court: farewell.\r\n\r\n [_Exit._]\r\n\r\nANTONIO.\r\nThe gentleness of all the gods go with thee!\r\nI have many enemies in Orsino’s court,\r\nElse would I very shortly see thee there:\r\nBut come what may, I do adore thee so,\r\nThat danger shall seem sport, and I will go.\r\n\r\n [_Exit._]\r\n\r\nSCENE II. A street.\r\n\r\n Enter Viola; Malvolio at several doors.\r\n\r\nMALVOLIO.\r\nWere you not even now with the Countess Olivia?\r\n\r\nVIOLA.\r\nEven now, sir; on a moderate pace I have since arrived but hither.\r\n\r\nMALVOLIO.\r\nShe returns this ring to you, sir; you might have saved me my pains, to\r\nhave taken it away yourself. She adds, moreover, that you should put\r\nyour lord into a desperate assurance she will none of him. And one\r\nthing more, that you be never so hardy to come again in his affairs,\r\nunless it be to report your lord’s taking of this. Receive it so.\r\n\r\nVIOLA.\r\nShe took the ring of me: I’ll none of it.\r\n\r\nMALVOLIO.\r\nCome sir, you peevishly threw it to her; and her will is it should be\r\nso returned. If it be worth stooping for, there it lies in your eye; if\r\nnot, be it his that finds it.\r\n\r\n [_Exit._]\r\n\r\nVIOLA.\r\nI left no ring with her; what means this lady?\r\nFortune forbid my outside have not charm’d her!\r\nShe made good view of me, indeed, so much,\r\nThat methought her eyes had lost her tongue,\r\nFor she did speak in starts distractedly.\r\nShe loves me, sure, the cunning of her passion\r\nInvites me in this churlish messenger.\r\nNone of my lord’s ring? Why, he sent her none.\r\nI am the man; if it be so, as ’tis,\r\nPoor lady, she were better love a dream.\r\nDisguise, I see thou art a wickedness\r\nWherein the pregnant enemy does much.\r\nHow easy is it for the proper false\r\nIn women’s waxen hearts to set their forms!\r\nAlas, our frailty is the cause, not we,\r\nFor such as we are made of, such we be.\r\nHow will this fadge? My master loves her dearly,\r\nAnd I, poor monster, fond as much on him,\r\nAnd she, mistaken, seems to dote on me.\r\nWhat will become of this? As I am man,\r\nMy state is desperate for my master’s love;\r\nAs I am woman (now alas the day!)\r\nWhat thriftless sighs shall poor Olivia breathe!\r\nO time, thou must untangle this, not I,\r\nIt is too hard a knot for me t’untie!\r\n\r\n [_Exit._]\r\n\r\nSCENE III. A Room in Olivia’s House.\r\n\r\n Enter Sir Toby and Sir Andrew.\r\n\r\nSIR TOBY.\r\nApproach, Sir Andrew; not to be abed after midnight, is to be up\r\nbetimes; and _diluculo surgere_, thou know’st.\r\n\r\nSIR ANDREW.\r\nNay, by my troth, I know not; but I know to be up late is to be up\r\nlate.\r\n\r\nSIR TOBY.\r\nA false conclusion; I hate it as an unfilled can. To be up after\r\nmidnight, and to go to bed then is early: so that to go to bed after\r\nmidnight is to go to bed betimes. Does not our lives consist of the\r\nfour elements?\r\n\r\nSIR ANDREW.\r\nFaith, so they say, but I think it rather consists of eating and\r\ndrinking.\r\n\r\nSIR TOBY.\r\nTh’art a scholar; let us therefore eat and drink.\r\nMarian, I say! a stoup of wine.\r\n\r\n Enter Clown.\r\n\r\nSIR ANDREW.\r\nHere comes the fool, i’ faith.\r\n\r\nCLOWN.\r\nHow now, my hearts? Did you never see the picture of “we three”?\r\n\r\nSIR TOBY.\r\nWelcome, ass. Now let’s have a catch.\r\n\r\nSIR ANDREW.\r\nBy my troth, the fool has an excellent breast. I had rather than forty\r\nshillings I had such a leg, and so sweet a breath to sing, as the fool\r\nhas. In sooth, thou wast in very gracious fooling last night when thou\r\nspok’st of Pigrogromitus, of the Vapians passing the equinoctial of\r\nQueubus; ’twas very good, i’ faith. I sent thee sixpence for thy leman.\r\nHadst it?\r\n\r\nCLOWN.\r\nI did impeticos thy gratillity; for Malvolio’s nose is no whipstock. My\r\nlady has a white hand, and the Myrmidons are no bottle-ale houses.\r\n\r\nSIR ANDREW.\r\nExcellent! Why, this is the best fooling, when all is done. Now, a\r\nsong.\r\n\r\nSIR TOBY.\r\nCome on, there is sixpence for you. Let’s have a song.\r\n\r\nSIR ANDREW.\r\nThere’s a testril of me too: if one knight give a—\r\n\r\nCLOWN.\r\nWould you have a love-song, or a song of good life?\r\n\r\nSIR TOBY.\r\nA love-song, a love-song.\r\n\r\nSIR ANDREW.\r\nAy, ay. I care not for good life.\r\n\r\nCLOWN. [_sings._]\r\n _O mistress mine, where are you roaming?\r\n O stay and hear, your true love’s coming,\r\n That can sing both high and low.\r\n Trip no further, pretty sweeting.\r\n Journeys end in lovers meeting,\r\n Every wise man’s son doth know._\r\n\r\nSIR ANDREW.\r\nExcellent good, i’ faith.\r\n\r\nSIR TOBY.\r\nGood, good.\r\n\r\nCLOWN.\r\n _What is love? ’Tis not hereafter,\r\n Present mirth hath present laughter.\r\n What’s to come is still unsure.\r\n In delay there lies no plenty,\r\n Then come kiss me, sweet and twenty.\r\n Youth’s a stuff will not endure._\r\n\r\nSIR ANDREW.\r\nA mellifluous voice, as I am true knight.\r\n\r\nSIR TOBY.\r\nA contagious breath.\r\n\r\nSIR ANDREW.\r\nVery sweet and contagious, i’ faith.\r\n\r\nSIR TOBY.\r\nTo hear by the nose, it is dulcet in contagion. But shall we make the\r\nwelkin dance indeed? Shall we rouse the night-owl in a catch that will\r\ndraw three souls out of one weaver? Shall we do that?\r\n\r\nSIR ANDREW.\r\nAnd you love me, let’s do’t: I am dog at a catch.\r\n\r\nCLOWN.\r\nBy’r lady, sir, and some dogs will catch well.\r\n\r\nSIR ANDREW.\r\nMost certain. Let our catch be, “Thou knave.”\r\n\r\nCLOWN.\r\n“Hold thy peace, thou knave” knight? I shall be constrain’d in’t to\r\ncall thee knave, knight.\r\n\r\nSIR ANDREW.\r\n’Tis not the first time I have constrained one to call me knave. Begin,\r\nfool; it begins “Hold thy peace.”\r\n\r\nCLOWN.\r\nI shall never begin if I hold my peace.\r\n\r\nSIR ANDREW.\r\nGood, i’ faith! Come, begin.\r\n\r\n [_Catch sung._]\r\n\r\n Enter Maria.\r\n\r\nMARIA.\r\nWhat a caterwauling do you keep here! If my lady have not called up her\r\nsteward Malvolio, and bid him turn you out of doors, never trust me.\r\n\r\nSIR TOBY.\r\nMy lady’s a Cataian, we are politicians, Malvolio’s a Peg-a-Ramsey, and\r\n[_Sings._] _Three merry men be we._ Am not I consanguineous? Am I not\r\nof her blood? Tilly-vally! “Lady”! _There dwelt a man in Babylon, Lady,\r\nLady._\r\n\r\nCLOWN.\r\nBeshrew me, the knight’s in admirable fooling.\r\n\r\nSIR ANDREW.\r\nAy, he does well enough if he be disposed, and so do I too; he does it\r\nwith a better grace, but I do it more natural.\r\n\r\nSIR TOBY.\r\n[_Sings._] _O’ the twelfth day of December—_\r\n\r\nMARIA.\r\nFor the love o’ God, peace!\r\n\r\n Enter Malvolio.\r\n\r\nMALVOLIO.\r\nMy masters, are you mad? Or what are you? Have you no wit, manners, nor\r\nhonesty, but to gabble like tinkers at this time of night? Do ye make\r\nan ale-house of my lady’s house, that ye squeak out your coziers’\r\ncatches without any mitigation or remorse of voice? Is there no respect\r\nof place, persons, nor time, in you?\r\n\r\nSIR TOBY.\r\nWe did keep time, sir, in our catches. Sneck up!\r\n\r\nMALVOLIO.\r\nSir Toby, I must be round with you. My lady bade me tell you that,\r\nthough she harbours you as her kinsman she’s nothing allied to your\r\ndisorders. If you can separate yourself and your misdemeanours, you are\r\nwelcome to the house; if not, and it would please you to take leave of\r\nher, she is very willing to bid you farewell.\r\n\r\nSIR TOBY.\r\n[_Sings._] _Farewell, dear heart, since I must needs be gone._\r\n\r\nMARIA.\r\nNay, good Sir Toby.\r\n\r\nCLOWN.\r\n[_Sings._] _His eyes do show his days are almost done._\r\n\r\nMALVOLIO.\r\nIs’t even so?\r\n\r\nSIR TOBY.\r\n[_Sings._] _But I will never die._\r\n\r\nCLOWN.\r\n[_Sings._] _Sir Toby, there you lie._\r\n\r\nMALVOLIO.\r\nThis is much credit to you.\r\n\r\nSIR TOBY.\r\n[_Sings._] _Shall I bid him go?_\r\n\r\nCLOWN.\r\n[_Sings._] _What and if you do?_\r\n\r\nSIR TOBY.\r\n[_Sings._] _Shall I bid him go, and spare not?_\r\n\r\nCLOWN.\r\n[_Sings._] _O, no, no, no, no, you dare not._\r\n\r\nSIR TOBY.\r\nOut o’ tune? sir, ye lie. Art any more than a steward? Dost thou think,\r\nbecause thou art virtuous, there shall be no more cakes and ale?\r\n\r\nCLOWN.\r\nYes, by Saint Anne, and ginger shall be hot i’ the mouth too.\r\n\r\nSIR TOBY.\r\nTh’art i’ the right. Go, sir, rub your chain with crumbs. A stoup of\r\nwine, Maria!\r\n\r\nMALVOLIO.\r\nMistress Mary, if you prized my lady’s favour at anything more than\r\ncontempt, you would not give means for this uncivil rule; she shall\r\nknow of it, by this hand.\r\n\r\n [_Exit._]\r\n\r\nMARIA.\r\nGo shake your ears.\r\n\r\nSIR ANDREW.\r\n’Twere as good a deed as to drink when a man’s a-hungry, to challenge\r\nhim the field, and then to break promise with him and make a fool of\r\nhim.\r\n\r\nSIR TOBY.\r\nDo’t, knight. I’ll write thee a challenge; or I’ll deliver thy\r\nindignation to him by word of mouth.\r\n\r\nMARIA.\r\nSweet Sir Toby, be patient for tonight. Since the youth of the Count’s\r\nwas today with my lady, she is much out of quiet. For Monsieur\r\nMalvolio, let me alone with him. If I do not gull him into a nayword,\r\nand make him a common recreation, do not think I have wit enough to lie\r\nstraight in my bed. I know I can do it.\r\n\r\nSIR TOBY.\r\nPossess us, possess us, tell us something of him.\r\n\r\nMARIA.\r\nMarry, sir, sometimes he is a kind of Puritan.\r\n\r\nSIR ANDREW.\r\nO, if I thought that, I’d beat him like a dog.\r\n\r\nSIR TOBY.\r\nWhat, for being a Puritan? Thy exquisite reason, dear knight?\r\n\r\nSIR ANDREW.\r\nI have no exquisite reason for’t, but I have reason good enough.\r\n\r\nMARIA.\r\nThe devil a Puritan that he is, or anything constantly but a\r\ntime-pleaser, an affectioned ass that cons state without book and\r\nutters it by great swarths; the best persuaded of himself, so crammed\r\n(as he thinks) with excellencies, that it is his grounds of faith that\r\nall that look on him love him. And on that vice in him will my revenge\r\nfind notable cause to work.\r\n\r\nSIR TOBY.\r\nWhat wilt thou do?\r\n\r\nMARIA.\r\nI will drop in his way some obscure epistles of love, wherein by the\r\ncolour of his beard, the shape of his leg, the manner of his gait, the\r\nexpressure of his eye, forehead, and complexion, he shall find himself\r\nmost feelingly personated. I can write very like my lady your niece; on\r\na forgotten matter we can hardly make distinction of our hands.\r\n\r\nSIR TOBY.\r\nExcellent! I smell a device.\r\n\r\nSIR ANDREW.\r\nI have’t in my nose too.\r\n\r\nSIR TOBY.\r\nHe shall think, by the letters that thou wilt drop, that they come from\r\nmy niece, and that she is in love with him.\r\n\r\nMARIA.\r\nMy purpose is indeed a horse of that colour.\r\n\r\nSIR ANDREW.\r\nAnd your horse now would make him an ass.\r\n\r\nMARIA.\r\nAss, I doubt not.\r\n\r\nSIR ANDREW.\r\nO ’twill be admirable!\r\n\r\nMARIA.\r\nSport royal, I warrant you. I know my physic will work with him. I will\r\nplant you two, and let the fool make a third, where he shall find the\r\nletter. Observe his construction of it. For this night, to bed, and\r\ndream on the event. Farewell.\r\n\r\n [_Exit._]\r\n\r\nSIR TOBY.\r\nGood night, Penthesilea.\r\n\r\nSIR ANDREW.\r\nBefore me, she’s a good wench.\r\n\r\nSIR TOBY.\r\nShe’s a beagle true bred, and one that adores me. What o’ that?\r\n\r\nSIR ANDREW.\r\nI was adored once too.\r\n\r\nSIR TOBY.\r\nLet’s to bed, knight. Thou hadst need send for more money.\r\n\r\nSIR ANDREW.\r\nIf I cannot recover your niece, I am a foul way out.\r\n\r\nSIR TOBY.\r\nSend for money, knight; if thou hast her not i’ th’ end, call me cut.\r\n\r\nSIR ANDREW.\r\nIf I do not, never trust me, take it how you will.\r\n\r\nSIR TOBY.\r\nCome, come, I’ll go burn some sack, ’tis too late to go to bed now.\r\nCome, knight, come, knight.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE IV. A Room in the Duke’s Palace.\r\n\r\n Enter Duke, Viola, Curio and others.\r\n\r\nDUKE.\r\nGive me some music. Now, good morrow, friends.\r\nNow, good Cesario, but that piece of song,\r\nThat old and antique song we heard last night;\r\nMethought it did relieve my passion much,\r\nMore than light airs and recollected terms\r\nOf these most brisk and giddy-paced times.\r\nCome, but one verse.\r\n\r\nCURIO.\r\nHe is not here, so please your lordship, that should sing it.\r\n\r\nDUKE.\r\nWho was it?\r\n\r\nCURIO.\r\nFeste, the jester, my lord, a fool that the Lady Olivia’s father took\r\nmuch delight in. He is about the house.\r\n\r\nDUKE.\r\nSeek him out, and play the tune the while.\r\n\r\n [_Exit Curio. Music plays._]\r\n\r\nCome hither, boy. If ever thou shalt love,\r\nIn the sweet pangs of it remember me:\r\nFor such as I am, all true lovers are,\r\nUnstaid and skittish in all motions else,\r\nSave in the constant image of the creature\r\nThat is belov’d. How dost thou like this tune?\r\n\r\nVIOLA.\r\nIt gives a very echo to the seat\r\nWhere love is throned.\r\n\r\nDUKE.\r\nThou dost speak masterly.\r\nMy life upon’t, young though thou art, thine eye\r\nHath stayed upon some favour that it loves.\r\nHath it not, boy?\r\n\r\nVIOLA.\r\nA little, by your favour.\r\n\r\nDUKE.\r\nWhat kind of woman is’t?\r\n\r\nVIOLA.\r\nOf your complexion.\r\n\r\nDUKE.\r\nShe is not worth thee, then. What years, i’ faith?\r\n\r\nVIOLA.\r\nAbout your years, my lord.\r\n\r\nDUKE.\r\nToo old, by heaven! Let still the woman take\r\nAn elder than herself; so wears she to him,\r\nSo sways she level in her husband’s heart.\r\nFor, boy, however we do praise ourselves,\r\nOur fancies are more giddy and unfirm,\r\nMore longing, wavering, sooner lost and worn,\r\nThan women’s are.\r\n\r\nVIOLA.\r\nI think it well, my lord.\r\n\r\nDUKE.\r\nThen let thy love be younger than thyself,\r\nOr thy affection cannot hold the bent:\r\nFor women are as roses, whose fair flower\r\nBeing once display’d, doth fall that very hour.\r\n\r\nVIOLA.\r\nAnd so they are: alas, that they are so;\r\nTo die, even when they to perfection grow!\r\n\r\n Enter Curio and Clown.\r\n\r\nDUKE.\r\nO, fellow, come, the song we had last night.\r\nMark it, Cesario, it is old and plain;\r\nThe spinsters and the knitters in the sun,\r\nAnd the free maids, that weave their thread with bones\r\nDo use to chant it: it is silly sooth,\r\nAnd dallies with the innocence of love\r\nLike the old age.\r\n\r\nCLOWN.\r\nAre you ready, sir?\r\n\r\nDUKE.\r\nAy; prithee, sing.\r\n\r\n [_Music._]\r\n\r\n The Clown’s song.\r\n\r\n_ Come away, come away, death.\r\n And in sad cypress let me be laid.\r\n Fly away, fly away, breath;\r\n I am slain by a fair cruel maid.\r\n My shroud of white, stuck all with yew,\r\n O, prepare it!\r\n My part of death no one so true\r\n Did share it._\r\n\r\n_ Not a flower, not a flower sweet,\r\n On my black coffin let there be strown:\r\n Not a friend, not a friend greet\r\n My poor corpse where my bones shall be thrown:\r\n A thousand thousand sighs to save,\r\n Lay me, O, where\r\n Sad true lover never find my grave,\r\n To weep there._\r\n\r\nDUKE.\r\nThere’s for thy pains.\r\n\r\nCLOWN.\r\nNo pains, sir; I take pleasure in singing, sir.\r\n\r\nDUKE.\r\nI’ll pay thy pleasure, then.\r\n\r\nCLOWN.\r\nTruly sir, and pleasure will be paid one time or another.\r\n\r\nDUKE.\r\nGive me now leave to leave thee.\r\n\r\nCLOWN.\r\nNow the melancholy god protect thee, and the tailor make thy doublet of\r\nchangeable taffeta, for thy mind is a very opal. I would have men of\r\nsuch constancy put to sea, that their business might be everything, and\r\ntheir intent everywhere, for that’s it that always makes a good voyage\r\nof nothing. Farewell.\r\n\r\n [_Exit Clown._]\r\n\r\nDUKE.\r\nLet all the rest give place.\r\n\r\n [_Exeunt Curio and Attendants._]\r\n\r\nOnce more, Cesario,\r\nGet thee to yond same sovereign cruelty.\r\nTell her my love, more noble than the world,\r\nPrizes not quantity of dirty lands;\r\nThe parts that fortune hath bestow’d upon her,\r\nTell her I hold as giddily as fortune;\r\nBut ’tis that miracle and queen of gems\r\nThat nature pranks her in attracts my soul.\r\n\r\nVIOLA.\r\nBut if she cannot love you, sir?\r\n\r\nDUKE.\r\nI cannot be so answer’d.\r\n\r\nVIOLA.\r\nSooth, but you must.\r\nSay that some lady, as perhaps there is,\r\nHath for your love as great a pang of heart\r\nAs you have for Olivia: you cannot love her;\r\nYou tell her so. Must she not then be answer’d?\r\n\r\nDUKE.\r\nThere is no woman’s sides\r\nCan bide the beating of so strong a passion\r\nAs love doth give my heart: no woman’s heart\r\nSo big, to hold so much; they lack retention.\r\nAlas, their love may be called appetite,\r\nNo motion of the liver, but the palate,\r\nThat suffer surfeit, cloyment, and revolt;\r\nBut mine is all as hungry as the sea,\r\nAnd can digest as much. Make no compare\r\nBetween that love a woman can bear me\r\nAnd that I owe Olivia.\r\n\r\nVIOLA.\r\nAy, but I know—\r\n\r\nDUKE.\r\nWhat dost thou know?\r\n\r\nVIOLA.\r\nToo well what love women to men may owe.\r\nIn faith, they are as true of heart as we.\r\nMy father had a daughter loved a man,\r\nAs it might be perhaps, were I a woman,\r\nI should your lordship.\r\n\r\nDUKE.\r\nAnd what’s her history?\r\n\r\nVIOLA.\r\nA blank, my lord. She never told her love,\r\nBut let concealment, like a worm i’ th’ bud,\r\nFeed on her damask cheek: she pined in thought,\r\nAnd with a green and yellow melancholy\r\nShe sat like patience on a monument,\r\nSmiling at grief. Was not this love, indeed?\r\nWe men may say more, swear more, but indeed,\r\nOur shows are more than will; for still we prove\r\nMuch in our vows, but little in our love.\r\n\r\nDUKE.\r\nBut died thy sister of her love, my boy?\r\n\r\nVIOLA.\r\nI am all the daughters of my father’s house,\r\nAnd all the brothers too: and yet I know not.\r\nSir, shall I to this lady?\r\n\r\nDUKE.\r\nAy, that’s the theme.\r\nTo her in haste. Give her this jewel; say\r\nMy love can give no place, bide no denay.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE V. Olivia’s garden.\r\n\r\n Enter Sir Toby, Sir Andrew and Fabian.\r\n\r\nSIR TOBY.\r\nCome thy ways, Signior Fabian.\r\n\r\nFABIAN.\r\nNay, I’ll come. If I lose a scruple of this sport, let me be boiled to\r\ndeath with melancholy.\r\n\r\nSIR TOBY.\r\nWouldst thou not be glad to have the niggardly rascally sheep-biter\r\ncome by some notable shame?\r\n\r\nFABIAN.\r\nI would exult, man. You know he brought me out o’ favour with my lady\r\nabout a bear-baiting here.\r\n\r\nSIR TOBY.\r\nTo anger him we’ll have the bear again, and we will fool him black and\r\nblue, shall we not, Sir Andrew?\r\n\r\nSIR ANDREW.\r\nAnd we do not, it is pity of our lives.\r\n\r\n Enter Maria.\r\n\r\nSIR TOBY.\r\nHere comes the little villain. How now, my metal of India?\r\n\r\nMARIA.\r\nGet ye all three into the box-tree. Malvolio’s coming down this walk;\r\nhe has been yonder i’ the sun practising behaviour to his own shadow\r\nthis half hour: observe him, for the love of mockery; for I know this\r\nletter will make a contemplative idiot of him. Close, in the name of\r\njesting! [_The men hide themselves._] Lie thou there; [_Throws down a\r\nletter_] for here comes the trout that must be caught with tickling.\r\n\r\n [_Exit Maria._]\r\n\r\n Enter Malvolio.\r\n\r\nMALVOLIO.\r\n’Tis but fortune, all is fortune. Maria once told me she did affect me,\r\nand I have heard herself come thus near, that should she fancy, it\r\nshould be one of my complexion. Besides, she uses me with a more\r\nexalted respect than anyone else that follows her. What should I think\r\non’t?\r\n\r\nSIR TOBY.\r\nHere’s an overweening rogue!\r\n\r\nFABIAN.\r\nO, peace! Contemplation makes a rare turkey-cock of him; how he jets\r\nunder his advanced plumes!\r\n\r\nSIR ANDREW.\r\n’Slight, I could so beat the rogue!\r\n\r\nSIR TOBY.\r\nPeace, I say.\r\n\r\nMALVOLIO.\r\nTo be Count Malvolio.\r\n\r\nSIR TOBY.\r\nAh, rogue!\r\n\r\nSIR ANDREW.\r\nPistol him, pistol him.\r\n\r\nSIR TOBY.\r\nPeace, peace.\r\n\r\nMALVOLIO.\r\nThere is example for’t. The lady of the Strachy married the yeoman of\r\nthe wardrobe.\r\n\r\nSIR ANDREW.\r\nFie on him, Jezebel!\r\n\r\nFABIAN.\r\nO, peace! now he’s deeply in; look how imagination blows him.\r\n\r\nMALVOLIO.\r\nHaving been three months married to her, sitting in my state—\r\n\r\nSIR TOBY.\r\nO for a stone-bow to hit him in the eye!\r\n\r\nMALVOLIO.\r\nCalling my officers about me, in my branched velvet gown; having come\r\nfrom a day-bed, where I have left Olivia sleeping.\r\n\r\nSIR TOBY.\r\nFire and brimstone!\r\n\r\nFABIAN.\r\nO, peace, peace.\r\n\r\nMALVOLIO.\r\nAnd then to have the humour of state; and after a demure travel of\r\nregard, telling them I know my place as I would they should do theirs,\r\nto ask for my kinsman Toby.\r\n\r\nSIR TOBY.\r\nBolts and shackles!\r\n\r\nFABIAN.\r\nO, peace, peace, peace! Now, now.\r\n\r\nMALVOLIO.\r\nSeven of my people, with an obedient start, make out for him. I frown\r\nthe while, and perchance wind up my watch, or play with some rich\r\njewel. Toby approaches; curtsies there to me—\r\n\r\nSIR TOBY.\r\nShall this fellow live?\r\n\r\nFABIAN.\r\nThough our silence be drawn from us with cars, yet peace!\r\n\r\nMALVOLIO.\r\nI extend my hand to him thus, quenching my familiar smile with an\r\naustere regard of control—\r\n\r\nSIR TOBY.\r\nAnd does not Toby take you a blow o’ the lips then?\r\n\r\nMALVOLIO.\r\nSaying ‘Cousin Toby, my fortunes having cast me on your niece, give me\r\nthis prerogative of speech—’\r\n\r\nSIR TOBY.\r\nWhat, what?\r\n\r\nMALVOLIO.\r\n‘You must amend your drunkenness.’\r\n\r\nSIR TOBY.\r\nOut, scab!\r\n\r\nFABIAN.\r\nNay, patience, or we break the sinews of our plot.\r\n\r\nMALVOLIO.\r\n‘Besides, you waste the treasure of your time with a foolish knight—’\r\n\r\nSIR ANDREW.\r\nThat’s me, I warrant you.\r\n\r\nMALVOLIO.\r\n‘One Sir Andrew.’\r\n\r\nSIR ANDREW.\r\nI knew ’twas I, for many do call me fool.\r\n\r\nMALVOLIO.\r\n[_Taking up the letter._] What employment have we here?\r\n\r\nFABIAN.\r\nNow is the woodcock near the gin.\r\n\r\nSIR TOBY.\r\nO, peace! And the spirit of humours intimate reading aloud to him!\r\n\r\nMALVOLIO.\r\nBy my life, this is my lady’s hand: these be her very C’s, her U’s, and\r\nher T’s, and thus makes she her great P’s. It is in contempt of\r\nquestion, her hand.\r\n\r\nSIR ANDREW.\r\nHer C’s, her U’s, and her T’s. Why that?\r\n\r\nMALVOLIO.\r\n[_Reads._] _To the unknown beloved, this, and my good wishes._ Her very\r\nphrases! By your leave, wax. Soft! and the impressure her Lucrece, with\r\nwhich she uses to seal: ’tis my lady. To whom should this be?\r\n\r\nFABIAN.\r\nThis wins him, liver and all.\r\n\r\nMALVOLIO.\r\n[_Reads._]\r\n_ Jove knows I love,\r\n But who?\r\n Lips, do not move,\r\n No man must know._\r\n\r\n‘No man must know.’ What follows? The numbers alter’d! ‘No man must\r\nknow.’—If this should be thee, Malvolio?\r\n\r\nSIR TOBY.\r\nMarry, hang thee, brock!\r\n\r\nMALVOLIO.\r\n_ I may command where I adore,\r\n But silence, like a Lucrece knife,\r\n With bloodless stroke my heart doth gore;\r\n M.O.A.I. doth sway my life._\r\n\r\nFABIAN.\r\nA fustian riddle!\r\n\r\nSIR TOBY.\r\nExcellent wench, say I.\r\n\r\nMALVOLIO.\r\n‘M.O.A.I. doth sway my life.’—Nay, but first let me see, let me see,\r\nlet me see.\r\n\r\nFABIAN.\r\nWhat dish o’ poison has she dressed him!\r\n\r\nSIR TOBY.\r\nAnd with what wing the staniel checks at it!\r\n\r\nMALVOLIO.\r\n‘I may command where I adore.’ Why, she may command me: I serve her,\r\nshe is my lady. Why, this is evident to any formal capacity. There is\r\nno obstruction in this. And the end—what should that alphabetical\r\nposition portend? If I could make that resemble something in me!\r\nSoftly! ‘M.O.A.I.’—\r\n\r\nSIR TOBY.\r\nO, ay, make up that:—he is now at a cold scent.\r\n\r\nFABIAN.\r\nSowter will cry upon’t for all this, though it be as rank as a fox.\r\n\r\nMALVOLIO.\r\n‘M’—Malvolio; ‘M!’ Why, that begins my name!\r\n\r\nFABIAN.\r\nDid not I say he would work it out? The cur is excellent at faults.\r\n\r\nMALVOLIO.\r\n‘M’—But then there is no consonancy in the sequel; that suffers under\r\nprobation: ‘A’ should follow, but ‘O’ does.\r\n\r\nFABIAN.\r\nAnd ‘O’ shall end, I hope.\r\n\r\nSIR TOBY.\r\nAy, or I’ll cudgel him, and make him cry ‘O!’\r\n\r\nMALVOLIO.\r\nAnd then ‘I’ comes behind.\r\n\r\nFABIAN.\r\nAy, and you had any eye behind you, you might see more detraction at\r\nyour heels than fortunes before you.\r\n\r\nMALVOLIO.\r\n‘M.O.A.I.’ This simulation is not as the former: and yet, to crush this\r\na little, it would bow to me, for every one of these letters are in my\r\nname. Soft, here follows prose.\r\n[_Reads._] _If this fall into thy hand, revolve. In my stars I am above\r\nthee, but be not afraid of greatness. Some are born great, some achieve\r\ngreatness, and some have greatness thrust upon ’em. Thy fates open\r\ntheir hands, let thy blood and spirit embrace them. And, to inure\r\nthyself to what thou art like to be, cast thy humble slough and appear\r\nfresh. Be opposite with a kinsman, surly with servants. Let thy tongue\r\ntang arguments of state; put thyself into the trick of singularity. She\r\nthus advises thee that sighs for thee. Remember who commended thy\r\nyellow stockings, and wished to see thee ever cross-gartered. I say,\r\nremember. Go to, thou art made, if thou desir’st to be so. If not, let\r\nme see thee a steward still, the fellow of servants, and not worthy to\r\ntouch Fortune’s fingers. Farewell. She that would alter services with\r\nthee,\r\n The Fortunate Unhappy._\r\n\r\nDaylight and champian discovers not more! This is open. I will be\r\nproud, I will read politic authors, I will baffle Sir Toby, I will wash\r\noff gross acquaintance, I will be point-device, the very man. I do not\r\nnow fool myself, to let imagination jade me; for every reason excites\r\nto this, that my lady loves me. She did commend my yellow stockings of\r\nlate, she did praise my leg being cross-gartered, and in this she\r\nmanifests herself to my love, and with a kind of injunction, drives me\r\nto these habits of her liking. I thank my stars, I am happy. I will be\r\nstrange, stout, in yellow stockings, and cross-gartered, even with the\r\nswiftness of putting on. Jove and my stars be praised!—Here is yet a\r\npostscript. [_Reads._] _Thou canst not choose but know who I am. If\r\nthou entertain’st my love, let it appear in thy smiling; thy smiles\r\nbecome thee well. Therefore in my presence still smile, dear my sweet,\r\nI prithee._ Jove, I thank thee. I will smile, I will do everything that\r\nthou wilt have me.\r\n\r\n [_Exit._]\r\n\r\nFABIAN.\r\nI will not give my part of this sport for a pension of thousands to be\r\npaid from the Sophy.\r\n\r\nSIR TOBY.\r\nI could marry this wench for this device.\r\n\r\nSIR ANDREW.\r\nSo could I too.\r\n\r\nSIR TOBY.\r\nAnd ask no other dowry with her but such another jest.\r\n\r\n Enter Maria.\r\n\r\nSIR ANDREW.\r\nNor I neither.\r\n\r\nFABIAN.\r\nHere comes my noble gull-catcher.\r\n\r\nSIR TOBY.\r\nWilt thou set thy foot o’ my neck?\r\n\r\nSIR ANDREW.\r\nOr o’ mine either?\r\n\r\nSIR TOBY.\r\nShall I play my freedom at tray-trip, and become thy bond-slave?\r\n\r\nSIR ANDREW.\r\nI’ faith, or I either?\r\n\r\nSIR TOBY.\r\nWhy, thou hast put him in such a dream, that when the image of it\r\nleaves him he must run mad.\r\n\r\nMARIA.\r\nNay, but say true, does it work upon him?\r\n\r\nSIR TOBY.\r\nLike aqua-vitae with a midwife.\r\n\r\nMARIA.\r\nIf you will then see the fruits of the sport, mark his first approach\r\nbefore my lady: he will come to her in yellow stockings, and ’tis a\r\ncolour she abhors, and cross-gartered, a fashion she detests; and he\r\nwill smile upon her, which will now be so unsuitable to her\r\ndisposition, being addicted to a melancholy as she is, that it cannot\r\nbut turn him into a notable contempt. If you will see it, follow me.\r\n\r\nSIR TOBY.\r\nTo the gates of Tartar, thou most excellent devil of wit!\r\n\r\nSIR ANDREW.\r\nI’ll make one too.\r\n\r\n [_Exeunt._]\r\n\r\n\r\n\r\nACT III.\r\n\r\nSCENE I. Olivia’s garden.\r\n\r\n Enter Viola and Clown with a tabor.\r\n\r\nVIOLA.\r\nSave thee, friend, and thy music. Dost thou live by thy tabor?\r\n\r\nCLOWN.\r\nNo, sir, I live by the church.\r\n\r\nVIOLA.\r\nArt thou a churchman?\r\n\r\nCLOWN.\r\nNo such matter, sir. I do live by the church, for I do live at my\r\nhouse, and my house doth stand by the church.\r\n\r\nVIOLA.\r\nSo thou mayst say the king lies by a beggar, if a beggar dwell near\r\nhim; or the church stands by thy tabor, if thy tabor stand by the\r\nchurch.\r\n\r\nCLOWN.\r\nYou have said, sir. To see this age! A sentence is but a chev’ril glove\r\nto a good wit. How quickly the wrong side may be turned outward!\r\n\r\nVIOLA.\r\nNay, that’s certain; they that dally nicely with words may quickly make\r\nthem wanton.\r\n\r\nCLOWN.\r\nI would, therefore, my sister had had no name, sir.\r\n\r\nVIOLA.\r\nWhy, man?\r\n\r\nCLOWN.\r\nWhy, sir, her name’s a word; and to dally with that word might make my\r\nsister wanton. But indeed, words are very rascals, since bonds\r\ndisgraced them.\r\n\r\nVIOLA.\r\nThy reason, man?\r\n\r\nCLOWN.\r\nTroth, sir, I can yield you none without words, and words are grown so\r\nfalse, I am loath to prove reason with them.\r\n\r\nVIOLA.\r\nI warrant thou art a merry fellow, and car’st for nothing.\r\n\r\nCLOWN.\r\nNot so, sir, I do care for something. But in my conscience, sir, I do\r\nnot care for you. If that be to care for nothing, sir, I would it would\r\nmake you invisible.\r\n\r\nVIOLA.\r\nArt not thou the Lady Olivia’s fool?\r\n\r\nCLOWN.\r\nNo, indeed, sir; the Lady Olivia has no folly. She will keep no fool,\r\nsir, till she be married, and fools are as like husbands as pilchards\r\nare to herrings, the husband’s the bigger. I am indeed not her fool,\r\nbut her corrupter of words.\r\n\r\nVIOLA.\r\nI saw thee late at the Count Orsino’s.\r\n\r\nCLOWN.\r\nFoolery, sir, does walk about the orb like the sun; it shines\r\neverywhere. I would be sorry, sir, but the fool should be as oft with\r\nyour master as with my mistress. I think I saw your wisdom there.\r\n\r\nVIOLA.\r\nNay, and thou pass upon me, I’ll no more with thee. Hold, there’s\r\nexpenses for thee.\r\n\r\nCLOWN.\r\nNow Jove, in his next commodity of hair, send thee a beard!\r\n\r\nVIOLA.\r\nBy my troth, I’ll tell thee, I am almost sick for one, though I would\r\nnot have it grow on my chin. Is thy lady within?\r\n\r\nCLOWN.\r\nWould not a pair of these have bred, sir?\r\n\r\nVIOLA.\r\nYes, being kept together, and put to use.\r\n\r\nCLOWN.\r\nI would play Lord Pandarus of Phrygia, sir, to bring a Cressida to this\r\nTroilus.\r\n\r\nVIOLA.\r\nI understand you, sir; ’tis well begged.\r\n\r\nCLOWN.\r\nThe matter, I hope, is not great, sir, begging but a beggar: Cressida\r\nwas a beggar. My lady is within, sir. I will conster to them whence you\r\ncome; who you are and what you would are out of my welkin. I might say\r\n“element”, but the word is overworn.\r\n\r\n [_Exit._]\r\n\r\nVIOLA.\r\nThis fellow is wise enough to play the fool,\r\nAnd to do that well, craves a kind of wit:\r\nHe must observe their mood on whom he jests,\r\nThe quality of persons, and the time,\r\nAnd like the haggard, check at every feather\r\nThat comes before his eye. This is a practice\r\nAs full of labour as a wise man’s art:\r\nFor folly, that he wisely shows, is fit;\r\nBut wise men, folly-fall’n, quite taint their wit.\r\n\r\n Enter Sir Toby and Sir Andrew.\r\n\r\nSIR TOBY.\r\nSave you, gentleman.\r\n\r\nVIOLA.\r\nAnd you, sir.\r\n\r\nSIR ANDREW.\r\n_Dieu vous garde, monsieur._\r\n\r\nVIOLA.\r\n_Et vous aussi; votre serviteur._\r\n\r\nSIR ANDREW.\r\nI hope, sir, you are, and I am yours.\r\n\r\nSIR TOBY.\r\nWill you encounter the house? My niece is desirous you should enter, if\r\nyour trade be to her.\r\n\r\nVIOLA.\r\nI am bound to your niece, sir, I mean, she is the list of my voyage.\r\n\r\nSIR TOBY.\r\nTaste your legs, sir, put them to motion.\r\n\r\nVIOLA.\r\nMy legs do better understand me, sir, than I understand what you mean\r\nby bidding me taste my legs.\r\n\r\nSIR TOBY.\r\nI mean, to go, sir, to enter.\r\n\r\nVIOLA.\r\nI will answer you with gait and entrance: but we are prevented.\r\n\r\n Enter Olivia and Maria.\r\n\r\nMost excellent accomplished lady, the heavens rain odours on you!\r\n\r\nSIR ANDREW.\r\nThat youth’s a rare courtier. ‘Rain odours,’ well.\r\n\r\nVIOLA.\r\nMy matter hath no voice, lady, but to your own most pregnant and\r\nvouchsafed car.\r\n\r\nSIR ANDREW.\r\n‘Odours,’ ‘pregnant,’ and ‘vouchsafed.’—I’ll get ’em all three ready.\r\n\r\nOLIVIA.\r\nLet the garden door be shut, and leave me to my hearing.\r\n\r\n [_Exeunt Sir Toby, Sir Andrew and Maria._]\r\n\r\nGive me your hand, sir.\r\n\r\nVIOLA.\r\nMy duty, madam, and most humble service.\r\n\r\nOLIVIA.\r\nWhat is your name?\r\n\r\nVIOLA.\r\nCesario is your servant’s name, fair princess.\r\n\r\nOLIVIA.\r\nMy servant, sir! ’Twas never merry world,\r\nSince lowly feigning was call’d compliment:\r\nY’are servant to the Count Orsino, youth.\r\n\r\nVIOLA.\r\nAnd he is yours, and his must needs be yours.\r\nYour servant’s servant is your servant, madam.\r\n\r\nOLIVIA.\r\nFor him, I think not on him: for his thoughts,\r\nWould they were blanks rather than fill’d with me!\r\n\r\nVIOLA.\r\nMadam, I come to whet your gentle thoughts\r\nOn his behalf.\r\n\r\nOLIVIA.\r\nO, by your leave, I pray you.\r\nI bade you never speak again of him.\r\nBut would you undertake another suit,\r\nI had rather hear you to solicit that\r\nThan music from the spheres.\r\n\r\nVIOLA.\r\nDear lady—\r\n\r\nOLIVIA.\r\nGive me leave, beseech you. I did send,\r\nAfter the last enchantment you did here,\r\nA ring in chase of you. So did I abuse\r\nMyself, my servant, and, I fear me, you.\r\nUnder your hard construction must I sit;\r\nTo force that on you in a shameful cunning,\r\nWhich you knew none of yours. What might you think?\r\nHave you not set mine honour at the stake,\r\nAnd baited it with all th’ unmuzzled thoughts\r\nThat tyrannous heart can think? To one of your receiving\r\nEnough is shown. A cypress, not a bosom,\r\nHides my heart: so let me hear you speak.\r\n\r\nVIOLA.\r\nI pity you.\r\n\r\nOLIVIA.\r\nThat’s a degree to love.\r\n\r\nVIOLA.\r\nNo, not a grize; for ’tis a vulgar proof\r\nThat very oft we pity enemies.\r\n\r\nOLIVIA.\r\nWhy then methinks ’tis time to smile again.\r\nO world, how apt the poor are to be proud!\r\nIf one should be a prey, how much the better\r\nTo fall before the lion than the wolf! [_Clock strikes._]\r\nThe clock upbraids me with the waste of time.\r\nBe not afraid, good youth, I will not have you.\r\nAnd yet, when wit and youth is come to harvest,\r\nYour wife is like to reap a proper man.\r\nThere lies your way, due west.\r\n\r\nVIOLA.\r\nThen westward ho!\r\nGrace and good disposition attend your ladyship!\r\nYou’ll nothing, madam, to my lord by me?\r\n\r\nOLIVIA.\r\nStay:\r\nI prithee tell me what thou think’st of me.\r\n\r\nVIOLA.\r\nThat you do think you are not what you are.\r\n\r\nOLIVIA.\r\nIf I think so, I think the same of you.\r\n\r\nVIOLA.\r\nThen think you right; I am not what I am.\r\n\r\nOLIVIA.\r\nI would you were as I would have you be.\r\n\r\nVIOLA.\r\nWould it be better, madam, than I am?\r\nI wish it might, for now I am your fool.\r\n\r\nOLIVIA.\r\nO what a deal of scorn looks beautiful\r\nIn the contempt and anger of his lip!\r\nA murd’rous guilt shows not itself more soon\r\nThan love that would seem hid. Love’s night is noon.\r\nCesario, by the roses of the spring,\r\nBy maidhood, honour, truth, and everything,\r\nI love thee so, that maugre all thy pride,\r\nNor wit nor reason can my passion hide.\r\nDo not extort thy reasons from this clause,\r\nFor that I woo, thou therefore hast no cause;\r\nBut rather reason thus with reason fetter:\r\nLove sought is good, but given unsought is better.\r\n\r\nVIOLA.\r\nBy innocence I swear, and by my youth,\r\nI have one heart, one bosom, and one truth,\r\nAnd that no woman has; nor never none\r\nShall mistress be of it, save I alone.\r\nAnd so adieu, good madam; never more\r\nWill I my master’s tears to you deplore.\r\n\r\nOLIVIA.\r\nYet come again: for thou perhaps mayst move\r\nThat heart, which now abhors, to like his love.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. A Room in Olivia’s House.\r\n\r\n Enter Sir Toby, Sir Andrew and Fabian.\r\n\r\nSIR ANDREW.\r\nNo, faith, I’ll not stay a jot longer.\r\n\r\nSIR TOBY.\r\nThy reason, dear venom, give thy reason.\r\n\r\nFABIAN.\r\nYou must needs yield your reason, Sir Andrew.\r\n\r\nSIR ANDREW.\r\nMarry, I saw your niece do more favours to the Count’s servingman than\r\never she bestowed upon me; I saw’t i’ th’ orchard.\r\n\r\nSIR TOBY.\r\nDid she see thee the while, old boy? Tell me that.\r\n\r\nSIR ANDREW.\r\nAs plain as I see you now.\r\n\r\nFABIAN.\r\nThis was a great argument of love in her toward you.\r\n\r\nSIR ANDREW.\r\n’Slight! will you make an ass o’ me?\r\n\r\nFABIAN.\r\nI will prove it legitimate, sir, upon the oaths of judgment and reason.\r\n\r\nSIR TOBY.\r\nAnd they have been grand-jurymen since before Noah was a sailor.\r\n\r\nFABIAN.\r\nShe did show favour to the youth in your sight only to exasperate you,\r\nto awake your dormouse valour, to put fire in your heart and brimstone\r\nin your liver. You should then have accosted her, and with some\r\nexcellent jests, fire-new from the mint, you should have banged the\r\nyouth into dumbness. This was looked for at your hand, and this was\r\nbalked: the double gilt of this opportunity you let time wash off, and\r\nyou are now sailed into the north of my lady’s opinion; where you will\r\nhang like an icicle on Dutchman’s beard, unless you do redeem it by\r\nsome laudable attempt, either of valour or policy.\r\n\r\nSIR ANDREW.\r\nAnd’t be any way, it must be with valour, for policy I hate; I had as\r\nlief be a Brownist as a politician.\r\n\r\nSIR TOBY.\r\nWhy, then, build me thy fortunes upon the basis of valour. Challenge me\r\nthe Count’s youth to fight with him. Hurt him in eleven places; my\r\nniece shall take note of it, and assure thyself there is no love-broker\r\nin the world can more prevail in man’s commendation with woman than\r\nreport of valour.\r\n\r\nFABIAN.\r\nThere is no way but this, Sir Andrew.\r\n\r\nSIR ANDREW.\r\nWill either of you bear me a challenge to him?\r\n\r\nSIR TOBY.\r\nGo, write it in a martial hand, be curst and brief; it is no matter how\r\nwitty, so it be eloquent and full of invention. Taunt him with the\r\nlicence of ink. If thou ‘thou’st’ him some thrice, it shall not be\r\namiss, and as many lies as will lie in thy sheet of paper, although the\r\nsheet were big enough for the bed of Ware in England, set ’em down. Go\r\nabout it. Let there be gall enough in thy ink, though thou write with a\r\ngoose-pen, no matter. About it.\r\n\r\nSIR ANDREW.\r\nWhere shall I find you?\r\n\r\nSIR TOBY.\r\nWe’ll call thee at the cubiculo. Go.\r\n\r\n [_Exit Sir Andrew._]\r\n\r\nFABIAN.\r\nThis is a dear manikin to you, Sir Toby.\r\n\r\nSIR TOBY.\r\nI have been dear to him, lad, some two thousand strong, or so.\r\n\r\nFABIAN.\r\nWe shall have a rare letter from him; but you’ll not deliver it.\r\n\r\nSIR TOBY.\r\nNever trust me then. And by all means stir on the youth to an answer. I\r\nthink oxen and wainropes cannot hale them together. For Andrew, if he\r\nwere opened and you find so much blood in his liver as will clog the\r\nfoot of a flea, I’ll eat the rest of th’ anatomy.\r\n\r\nFABIAN.\r\nAnd his opposite, the youth, bears in his visage no great presage of\r\ncruelty.\r\n\r\n Enter Maria.\r\n\r\nSIR TOBY.\r\nLook where the youngest wren of nine comes.\r\n\r\nMARIA.\r\nIf you desire the spleen, and will laugh yourselves into stitches,\r\nfollow me. Yond gull Malvolio is turned heathen, a very renegado; for\r\nthere is no Christian that means to be saved by believing rightly can\r\never believe such impossible passages of grossness. He’s in yellow\r\nstockings.\r\n\r\nSIR TOBY.\r\nAnd cross-gartered?\r\n\r\nMARIA.\r\nMost villainously; like a pedant that keeps a school i’ th’ church. I\r\nhave dogged him like his murderer. He does obey every point of the\r\nletter that I dropped to betray him. He does smile his face into more\r\nlines than is in the new map with the augmentation of the Indies. You\r\nhave not seen such a thing as ’tis. I can hardly forbear hurling\r\nthings at him. I know my lady will strike him. If she do, he’ll smile\r\nand take’t for a great favour.\r\n\r\nSIR TOBY.\r\nCome, bring us, bring us where he is.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE III. A street.\r\n\r\n Enter Sebastian and Antonio.\r\n\r\nSEBASTIAN.\r\nI would not by my will have troubled you,\r\nBut since you make your pleasure of your pains,\r\nI will no further chide you.\r\n\r\nANTONIO.\r\nI could not stay behind you: my desire,\r\nMore sharp than filed steel, did spur me forth;\r\nAnd not all love to see you, though so much,\r\nAs might have drawn one to a longer voyage,\r\nBut jealousy what might befall your travel,\r\nBeing skilless in these parts; which to a stranger,\r\nUnguided and unfriended, often prove\r\nRough and unhospitable. My willing love,\r\nThe rather by these arguments of fear,\r\nSet forth in your pursuit.\r\n\r\nSEBASTIAN.\r\nMy kind Antonio,\r\nI can no other answer make but thanks,\r\nAnd thanks, and ever thanks; and oft good turns\r\nAre shuffled off with such uncurrent pay.\r\nBut were my worth, as is my conscience, firm,\r\nYou should find better dealing. What’s to do?\r\nShall we go see the relics of this town?\r\n\r\nANTONIO.\r\nTomorrow, sir; best first go see your lodging.\r\n\r\nSEBASTIAN.\r\nI am not weary, and ’tis long to night;\r\nI pray you, let us satisfy our eyes\r\nWith the memorials and the things of fame\r\nThat do renown this city.\r\n\r\nANTONIO.\r\nWould you’d pardon me.\r\nI do not without danger walk these streets.\r\nOnce in a sea-fight, ’gainst the Count his galleys,\r\nI did some service, of such note indeed,\r\nThat were I ta’en here, it would scarce be answer’d.\r\n\r\nSEBASTIAN.\r\nBelike you slew great number of his people.\r\n\r\nANTONIO.\r\nTh’ offence is not of such a bloody nature,\r\nAlbeit the quality of the time and quarrel\r\nMight well have given us bloody argument.\r\nIt might have since been answered in repaying\r\nWhat we took from them, which for traffic’s sake,\r\nMost of our city did. Only myself stood out,\r\nFor which, if I be lapsed in this place,\r\nI shall pay dear.\r\n\r\nSEBASTIAN.\r\nDo not then walk too open.\r\n\r\nANTONIO.\r\nIt doth not fit me. Hold, sir, here’s my purse.\r\nIn the south suburbs, at the Elephant,\r\nIs best to lodge. I will bespeak our diet\r\nWhiles you beguile the time and feed your knowledge\r\nWith viewing of the town. There shall you have me.\r\n\r\nSEBASTIAN.\r\nWhy I your purse?\r\n\r\nANTONIO.\r\nHaply your eye shall light upon some toy\r\nYou have desire to purchase; and your store,\r\nI think, is not for idle markets, sir.\r\n\r\nSEBASTIAN.\r\nI’ll be your purse-bearer, and leave you for an hour.\r\n\r\nANTONIO.\r\nTo th’ Elephant.\r\n\r\nSEBASTIAN.\r\nI do remember.\r\n\r\n [_Exeunt._]\r\n\r\nSCENE IV. Olivia’s garden.\r\n\r\n Enter Olivia and Maria.\r\n\r\nOLIVIA.\r\nI have sent after him. He says he’ll come;\r\nHow shall I feast him? What bestow of him?\r\nFor youth is bought more oft than begg’d or borrow’d.\r\nI speak too loud.—\r\nWhere’s Malvolio?—He is sad and civil,\r\nAnd suits well for a servant with my fortunes;\r\nWhere is Malvolio?\r\n\r\nMARIA.\r\nHe’s coming, madam:\r\nBut in very strange manner. He is sure possessed, madam.\r\n\r\nOLIVIA.\r\nWhy, what’s the matter? Does he rave?\r\n\r\nMARIA.\r\nNo, madam, he does nothing but smile: your ladyship were best to have\r\nsome guard about you if he come, for sure the man is tainted in ’s\r\nwits.\r\n\r\nOLIVIA.\r\nGo call him hither. I’m as mad as he,\r\nIf sad and merry madness equal be.\r\n\r\n Enter Malvolio.\r\n\r\nHow now, Malvolio?\r\n\r\nMALVOLIO.\r\nSweet lady, ho, ho!\r\n\r\nOLIVIA.\r\nSmil’st thou? I sent for thee upon a sad occasion.\r\n\r\nMALVOLIO.\r\nSad, lady? I could be sad: this does make some obstruction in the\r\nblood, this cross-gartering. But what of that? If it please the eye of\r\none, it is with me as the very true sonnet is: ‘Please one and please\r\nall.’\r\n\r\nOLIVIA.\r\nWhy, how dost thou, man? What is the matter with thee?\r\n\r\nMALVOLIO.\r\nNot black in my mind, though yellow in my legs. It did come to his\r\nhands, and commands shall be executed. I think we do know the sweet\r\nRoman hand.\r\n\r\nOLIVIA.\r\nWilt thou go to bed, Malvolio?\r\n\r\nMALVOLIO.\r\nTo bed? Ay, sweetheart, and I’ll come to thee.\r\n\r\nOLIVIA.\r\nGod comfort thee! Why dost thou smile so, and kiss thy hand so oft?\r\n\r\nMARIA.\r\nHow do you, Malvolio?\r\n\r\nMALVOLIO.\r\nAt your request? Yes, nightingales answer daws!\r\n\r\nMARIA.\r\nWhy appear you with this ridiculous boldness before my lady?\r\n\r\nMALVOLIO.\r\n‘Be not afraid of greatness.’ ’Twas well writ.\r\n\r\nOLIVIA.\r\nWhat mean’st thou by that, Malvolio?\r\n\r\nMALVOLIO.\r\n‘Some are born great’—\r\n\r\nOLIVIA.\r\nHa?\r\n\r\nMALVOLIO.\r\n‘Some achieve greatness’—\r\n\r\nOLIVIA.\r\nWhat say’st thou?\r\n\r\nMALVOLIO.\r\n‘And some have greatness thrust upon them.’\r\n\r\nOLIVIA.\r\nHeaven restore thee!\r\n\r\nMALVOLIO.\r\n‘Remember who commended thy yellow stockings’—\r\n\r\nOLIVIA.\r\nThy yellow stockings?\r\n\r\nMALVOLIO.\r\n‘And wished to see thee cross-gartered.’\r\n\r\nOLIVIA.\r\nCross-gartered?\r\n\r\nMALVOLIO.\r\n‘Go to: thou art made, if thou desir’st to be so:’—\r\n\r\nOLIVIA.\r\nAm I made?\r\n\r\nMALVOLIO.\r\n‘If not, let me see thee a servant still.’\r\n\r\nOLIVIA.\r\nWhy, this is very midsummer madness.\r\n\r\n Enter Servant.\r\n\r\nSERVANT.\r\nMadam, the young gentleman of the Count Orsino’s is returned; I could\r\nhardly entreat him back. He attends your ladyship’s pleasure.\r\n\r\nOLIVIA.\r\nI’ll come to him.\r\n\r\n [_Exit Servant._]\r\n\r\nGood Maria, let this fellow be looked to. Where’s my cousin Toby? Let\r\nsome of my people have a special care of him; I would not have him\r\nmiscarry for the half of my dowry.\r\n\r\n [_Exeunt Olivia and Maria._]\r\n\r\nMALVOLIO.\r\nO ho, do you come near me now? No worse man than Sir Toby to look to\r\nme. This concurs directly with the letter: she sends him on purpose,\r\nthat I may appear stubborn to him; for she incites me to that in the\r\nletter. ‘Cast thy humble slough,’ says she; ‘be opposite with a\r\nkinsman, surly with servants, let thy tongue tang with arguments of\r\nstate, put thyself into the trick of singularity,’ and consequently,\r\nsets down the manner how: as, a sad face, a reverend carriage, a slow\r\ntongue, in the habit of some sir of note, and so forth. I have limed\r\nher, but it is Jove’s doing, and Jove make me thankful! And when she\r\nwent away now, ‘Let this fellow be looked to;’ ‘Fellow!’ not\r\n‘Malvolio’, nor after my degree, but ‘fellow’. Why, everything adheres\r\ntogether, that no dram of a scruple, no scruple of a scruple, no\r\nobstacle, no incredulous or unsafe circumstance. What can be said?\r\nNothing that can be can come between me and the full prospect of my\r\nhopes. Well, Jove, not I, is the doer of this, and he is to be thanked.\r\n\r\n Enter Sir Toby, Fabian and Maria.\r\n\r\nSIR TOBY.\r\nWhich way is he, in the name of sanctity? If all the devils of hell be\r\ndrawn in little, and Legion himself possessed him, yet I’ll speak to\r\nhim.\r\n\r\nFABIAN.\r\nHere he is, here he is. How is’t with you, sir? How is’t with you, man?\r\n\r\nMALVOLIO.\r\nGo off, I discard you. Let me enjoy my private. Go off.\r\n\r\nMARIA.\r\nLo, how hollow the fiend speaks within him! Did not I tell you? Sir\r\nToby, my lady prays you to have a care of him.\r\n\r\nMALVOLIO.\r\nAh, ha! does she so?\r\n\r\nSIR TOBY.\r\nGo to, go to; peace, peace, we must deal gently with him. Let me alone.\r\nHow do you, Malvolio? How is’t with you? What, man! defy the devil!\r\nConsider, he’s an enemy to mankind.\r\n\r\nMALVOLIO.\r\nDo you know what you say?\r\n\r\nMARIA.\r\nLa you, an you speak ill of the devil, how he takes it at heart! Pray\r\nGod he be not bewitched.\r\n\r\nFABIAN.\r\nCarry his water to th’ wise woman.\r\n\r\nMARIA.\r\nMarry, and it shall be done tomorrow morning, if I live. My lady would\r\nnot lose him for more than I’ll say.\r\n\r\nMALVOLIO.\r\nHow now, mistress!\r\n\r\nMARIA.\r\nO Lord!\r\n\r\nSIR TOBY.\r\nPrithee hold thy peace, this is not the way. Do you not see you move\r\nhim? Let me alone with him.\r\n\r\nFABIAN.\r\nNo way but gentleness, gently, gently. The fiend is rough, and will not\r\nbe roughly used.\r\n\r\nSIR TOBY.\r\nWhy, how now, my bawcock? How dost thou, chuck?\r\n\r\nMALVOLIO.\r\nSir!\r\n\r\nSIR TOBY.\r\nAy, biddy, come with me. What, man, ’tis not for gravity to play at\r\ncherry-pit with Satan. Hang him, foul collier!\r\n\r\nMARIA.\r\nGet him to say his prayers, good Sir Toby, get him to pray.\r\n\r\nMALVOLIO.\r\nMy prayers, minx?\r\n\r\nMARIA.\r\nNo, I warrant you, he will not hear of godliness.\r\n\r\nMALVOLIO.\r\nGo, hang yourselves all! You are idle, shallow things. I am not of your\r\nelement. You shall know more hereafter.\r\n\r\n [_Exit._]\r\n\r\nSIR TOBY.\r\nIs’t possible?\r\n\r\nFABIAN.\r\nIf this were played upon a stage now, I could condemn it as an\r\nimprobable fiction.\r\n\r\nSIR TOBY.\r\nHis very genius hath taken the infection of the device, man.\r\n\r\nMARIA.\r\nNay, pursue him now, lest the device take air and taint.\r\n\r\nFABIAN.\r\nWhy, we shall make him mad indeed.\r\n\r\nMARIA.\r\nThe house will be the quieter.\r\n\r\nSIR TOBY.\r\nCome, we’ll have him in a dark room and bound. My niece is already in\r\nthe belief that he’s mad. We may carry it thus for our pleasure, and\r\nhis penance, till our very pastime, tired out of breath, prompt us to\r\nhave mercy on him, at which time we will bring the device to the bar,\r\nand crown thee for a finder of madmen. But see, but see!\r\n\r\n Enter Sir Andrew.\r\n\r\nFABIAN.\r\nMore matter for a May morning.\r\n\r\nSIR ANDREW.\r\nHere’s the challenge, read it. I warrant there’s vinegar and pepper\r\nin’t.\r\n\r\nFABIAN.\r\nIs’t so saucy?\r\n\r\nSIR ANDREW.\r\nAy, is’t, I warrant him. Do but read.\r\n\r\nSIR TOBY.\r\nGive me. [_Reads._] _Youth, whatsoever thou art, thou art but a scurvy\r\nfellow._\r\n\r\nFABIAN.\r\nGood, and valiant.\r\n\r\nSIR TOBY.\r\n_Wonder not, nor admire not in thy mind, why I do call thee so, for I\r\nwill show thee no reason for’t._\r\n\r\nFABIAN.\r\nA good note, that keeps you from the blow of the law.\r\n\r\nSIR TOBY.\r\n_Thou comest to the Lady Olivia, and in my sight she uses thee kindly:\r\nbut thou liest in thy throat; that is not the matter I challenge thee\r\nfor._\r\n\r\nFABIAN.\r\nVery brief, and to exceeding good sense—less.\r\n\r\nSIR TOBY.\r\n_I will waylay thee going home; where if it be thy chance to kill me—_\r\n\r\nFABIAN.\r\nGood.\r\n\r\nSIR TOBY.\r\n_Thou kill’st me like a rogue and a villain._\r\n\r\nFABIAN.\r\nStill you keep o’ th’ windy side of the law. Good.\r\n\r\nSIR TOBY.\r\n_Fare thee well, and God have mercy upon one of our souls! He may have\r\nmercy upon mine, but my hope is better, and so look to thyself. Thy\r\nfriend, as thou usest him, and thy sworn enemy,\r\n Andrew Aguecheek._\r\nIf this letter move him not, his legs cannot. I’ll give’t him.\r\n\r\nMARIA.\r\nYou may have very fit occasion for’t. He is now in some commerce with\r\nmy lady, and will by and by depart.\r\n\r\nSIR TOBY.\r\nGo, Sir Andrew. Scout me for him at the corner of the orchard, like a\r\nbum-baily. So soon as ever thou seest him, draw, and as thou draw’st,\r\nswear horrible, for it comes to pass oft that a terrible oath, with a\r\nswaggering accent sharply twanged off, gives manhood more approbation\r\nthan ever proof itself would have earned him. Away.\r\n\r\nSIR ANDREW.\r\nNay, let me alone for swearing.\r\n\r\n [_Exit._]\r\n\r\nSIR TOBY.\r\nNow will not I deliver his letter, for the behaviour of the young\r\ngentleman gives him out to be of good capacity and breeding; his\r\nemployment between his lord and my niece confirms no less. Therefore\r\nthis letter, being so excellently ignorant, will breed no terror in the\r\nyouth. He will find it comes from a clodpole. But, sir, I will deliver\r\nhis challenge by word of mouth, set upon Aguecheek notable report of\r\nvalour, and drive the gentleman (as I know his youth will aptly receive\r\nit) into a most hideous opinion of his rage, skill, fury, and\r\nimpetuosity. This will so fright them both that they will kill one\r\nanother by the look, like cockatrices.\r\n\r\n Enter Olivia and Viola.\r\n\r\nFABIAN.\r\nHere he comes with your niece; give them way till he take leave, and\r\npresently after him.\r\n\r\nSIR TOBY.\r\nI will meditate the while upon some horrid message for a challenge.\r\n\r\n [_Exeunt Sir Toby, Fabian and Maria._]\r\n\r\nOLIVIA.\r\nI have said too much unto a heart of stone,\r\nAnd laid mine honour too unchary on’t:\r\nThere’s something in me that reproves my fault:\r\nBut such a headstrong potent fault it is,\r\nThat it but mocks reproof.\r\n\r\nVIOLA.\r\nWith the same ’haviour that your passion bears\r\nGoes on my master’s griefs.\r\n\r\nOLIVIA.\r\nHere, wear this jewel for me, ’tis my picture.\r\nRefuse it not, it hath no tongue to vex you.\r\nAnd I beseech you come again tomorrow.\r\nWhat shall you ask of me that I’ll deny,\r\nThat honour sav’d, may upon asking give?\r\n\r\nVIOLA.\r\nNothing but this, your true love for my master.\r\n\r\nOLIVIA.\r\nHow with mine honour may I give him that\r\nWhich I have given to you?\r\n\r\nVIOLA.\r\nI will acquit you.\r\n\r\nOLIVIA.\r\nWell, come again tomorrow. Fare thee well;\r\nA fiend like thee might bear my soul to hell.\r\n\r\n [_Exit._]\r\n\r\n Enter Sir Toby and Fabian.\r\n\r\nSIR TOBY.\r\nGentleman, God save thee.\r\n\r\nVIOLA.\r\nAnd you, sir.\r\n\r\nSIR TOBY.\r\nThat defence thou hast, betake thee to’t. Of what nature the wrongs are\r\nthou hast done him, I know not, but thy intercepter, full of despite,\r\nbloody as the hunter, attends thee at the orchard end. Dismount thy\r\ntuck, be yare in thy preparation, for thy assailant is quick, skilful,\r\nand deadly.\r\n\r\nVIOLA.\r\nYou mistake, sir; I am sure no man hath any quarrel to me. My\r\nremembrance is very free and clear from any image of offence done to\r\nany man.\r\n\r\nSIR TOBY.\r\nYou’ll find it otherwise, I assure you. Therefore, if you hold your\r\nlife at any price, betake you to your guard, for your opposite hath in\r\nhim what youth, strength, skill, and wrath, can furnish man withal.\r\n\r\nVIOLA.\r\nI pray you, sir, what is he?\r\n\r\nSIR TOBY.\r\nHe is knight, dubbed with unhatched rapier, and on carpet\r\nconsideration, but he is a devil in private brawl. Souls and bodies\r\nhath he divorced three, and his incensement at this moment is so\r\nimplacable that satisfaction can be none but by pangs of death and\r\nsepulchre. Hob, nob is his word; give’t or take’t.\r\n\r\nVIOLA.\r\nI will return again into the house and desire some conduct of the lady.\r\nI am no fighter. I have heard of some kind of men that put quarrels\r\npurposely on others to taste their valour: belike this is a man of that\r\nquirk.\r\n\r\nSIR TOBY.\r\nSir, no. His indignation derives itself out of a very competent injury;\r\ntherefore, get you on and give him his desire. Back you shall not to\r\nthe house, unless you undertake that with me which with as much safety\r\nyou might answer him. Therefore on, or strip your sword stark naked,\r\nfor meddle you must, that’s certain, or forswear to wear iron about\r\nyou.\r\n\r\nVIOLA.\r\nThis is as uncivil as strange. I beseech you, do me this courteous\r\noffice, as to know of the knight what my offence to him is. It is\r\nsomething of my negligence, nothing of my purpose.\r\n\r\nSIR TOBY.\r\nI will do so. Signior Fabian, stay you by this gentleman till my\r\nreturn.\r\n\r\n [_Exit Sir Toby._]\r\n\r\nVIOLA.\r\nPray you, sir, do you know of this matter?\r\n\r\nFABIAN.\r\nI know the knight is incensed against you, even to a mortal\r\narbitrement, but nothing of the circumstance more.\r\n\r\nVIOLA.\r\nI beseech you, what manner of man is he?\r\n\r\nFABIAN.\r\nNothing of that wonderful promise, to read him by his form, as you are\r\nlike to find him in the proof of his valour. He is indeed, sir, the\r\nmost skilful, bloody, and fatal opposite that you could possibly have\r\nfound in any part of Illyria. Will you walk towards him? I will make\r\nyour peace with him if I can.\r\n\r\nVIOLA.\r\nI shall be much bound to you for’t. I am one that had rather go with\r\nsir priest than sir knight: I care not who knows so much of my mettle.\r\n\r\n [_Exeunt._]\r\n\r\n Enter Sir Toby and Sir Andrew.\r\n\r\nSIR TOBY.\r\nWhy, man, he’s a very devil. I have not seen such a firago. I had a\r\npass with him, rapier, scabbard, and all, and he gives me the stuck-in\r\nwith such a mortal motion that it is inevitable; and on the answer, he\r\npays you as surely as your feet hits the ground they step on. They say\r\nhe has been fencer to the Sophy.\r\n\r\nSIR ANDREW.\r\nPox on’t, I’ll not meddle with him.\r\n\r\nSIR TOBY.\r\nAy, but he will not now be pacified: Fabian can scarce hold him yonder.\r\n\r\nSIR ANDREW.\r\nPlague on’t, an I thought he had been valiant, and so cunning in fence,\r\nI’d have seen him damned ere I’d have challenged him. Let him let the\r\nmatter slip, and I’ll give him my horse, grey Capilet.\r\n\r\nSIR TOBY.\r\nI’ll make the motion. Stand here, make a good show on’t. This shall end\r\nwithout the perdition of souls. [_Aside._] Marry, I’ll ride your horse\r\nas well as I ride you.\r\n\r\n Enter Fabian and Viola.\r\n\r\n[_To Fabian._] I have his horse to take up the quarrel. I have\r\npersuaded him the youth’s a devil.\r\n\r\nFABIAN.\r\nHe is as horribly conceited of him, and pants and looks pale, as if a\r\nbear were at his heels.\r\n\r\nSIR TOBY.\r\nThere’s no remedy, sir, he will fight with you for’s oath sake. Marry,\r\nhe hath better bethought him of his quarrel, and he finds that now\r\nscarce to be worth talking of. Therefore, draw for the supportance of\r\nhis vow; he protests he will not hurt you.\r\n\r\nVIOLA.\r\n[_Aside._] Pray God defend me! A little thing would make me tell them\r\nhow much I lack of a man.\r\n\r\nFABIAN.\r\nGive ground if you see him furious.\r\n\r\nSIR TOBY.\r\nCome, Sir Andrew, there’s no remedy, the gentleman will for his\r\nhonour’s sake have one bout with you. He cannot by the duello avoid it;\r\nbut he has promised me, as he is a gentleman and a soldier, he will not\r\nhurt you. Come on: to’t.\r\n\r\nSIR ANDREW.\r\n[_Draws._] Pray God he keep his oath!\r\n\r\n Enter Antonio.\r\n\r\nVIOLA.\r\n[_Draws._] I do assure you ’tis against my will.\r\n\r\nANTONIO.\r\nPut up your sword. If this young gentleman\r\nHave done offence, I take the fault on me.\r\nIf you offend him, I for him defy you.\r\n\r\nSIR TOBY.\r\nYou, sir? Why, what are you?\r\n\r\nANTONIO.\r\n[_Draws._] One, sir, that for his love dares yet do more\r\nThan you have heard him brag to you he will.\r\n\r\nSIR TOBY.\r\n[_Draws._] Nay, if you be an undertaker, I am for you.\r\n\r\n Enter Officers.\r\n\r\nFABIAN.\r\nO good Sir Toby, hold! Here come the officers.\r\n\r\nSIR TOBY.\r\n[_To Antonio._] I’ll be with you anon.\r\n\r\nVIOLA.\r\n[_To Sir Andrew._] Pray, sir, put your sword up, if you please.\r\n\r\nSIR ANDREW.\r\nMarry, will I, sir; and for that I promised you, I’ll be as good as my\r\nword. He will bear you easily, and reins well.\r\n\r\nFIRST OFFICER.\r\nThis is the man; do thy office.\r\n\r\nSECOND OFFICER.\r\nAntonio, I arrest thee at the suit\r\nOf Count Orsino.\r\n\r\nANTONIO.\r\nYou do mistake me, sir.\r\n\r\nFIRST OFFICER.\r\nNo, sir, no jot. I know your favour well,\r\nThough now you have no sea-cap on your head.—\r\nTake him away, he knows I know him well.\r\n\r\nANTONIO.\r\nI must obey. This comes with seeking you;\r\nBut there’s no remedy, I shall answer it.\r\nWhat will you do? Now my necessity\r\nMakes me to ask you for my purse. It grieves me\r\nMuch more for what I cannot do for you,\r\nThan what befalls myself. You stand amaz’d,\r\nBut be of comfort.\r\n\r\nSECOND OFFICER.\r\nCome, sir, away.\r\n\r\nANTONIO.\r\nI must entreat of you some of that money.\r\n\r\nVIOLA.\r\nWhat money, sir?\r\nFor the fair kindness you have show’d me here,\r\nAnd part being prompted by your present trouble,\r\nOut of my lean and low ability\r\nI’ll lend you something. My having is not much;\r\nI’ll make division of my present with you.\r\nHold, there’s half my coffer.\r\n\r\nANTONIO.\r\nWill you deny me now?\r\nIs’t possible that my deserts to you\r\nCan lack persuasion? Do not tempt my misery,\r\nLest that it make me so unsound a man\r\nAs to upbraid you with those kindnesses\r\nThat I have done for you.\r\n\r\nVIOLA.\r\nI know of none,\r\nNor know I you by voice or any feature.\r\nI hate ingratitude more in a man\r\nThan lying, vainness, babbling, drunkenness,\r\nOr any taint of vice whose strong corruption\r\nInhabits our frail blood.\r\n\r\nANTONIO.\r\nO heavens themselves!\r\n\r\nSECOND OFFICER.\r\nCome, sir, I pray you go.\r\n\r\nANTONIO.\r\nLet me speak a little. This youth that you see here\r\nI snatch’d one half out of the jaws of death,\r\nReliev’d him with such sanctity of love;\r\nAnd to his image, which methought did promise\r\nMost venerable worth, did I devotion.\r\n\r\nFIRST OFFICER.\r\nWhat’s that to us? The time goes by. Away!\r\n\r\nANTONIO.\r\nBut O how vile an idol proves this god!\r\nThou hast, Sebastian, done good feature shame.\r\nIn nature there’s no blemish but the mind;\r\nNone can be call’d deform’d but the unkind.\r\nVirtue is beauty, but the beauteous evil\r\nAre empty trunks, o’erflourished by the devil.\r\n\r\nFIRST OFFICER.\r\nThe man grows mad, away with him. Come, come, sir.\r\n\r\nANTONIO.\r\nLead me on.\r\n\r\n [_Exeunt Officers with Antonio._]\r\n\r\nVIOLA.\r\nMethinks his words do from such passion fly\r\nThat he believes himself; so do not I.\r\nProve true, imagination, O prove true,\r\nThat I, dear brother, be now ta’en for you!\r\n\r\nSIR TOBY.\r\nCome hither, knight; come hither, Fabian. We’ll whisper o’er a couplet\r\nor two of most sage saws.\r\n\r\nVIOLA.\r\nHe nam’d Sebastian. I my brother know\r\nYet living in my glass; even such and so\r\nIn favour was my brother, and he went\r\nStill in this fashion, colour, ornament,\r\nFor him I imitate. O if it prove,\r\nTempests are kind, and salt waves fresh in love!\r\n\r\n [_Exit._]\r\n\r\nSIR TOBY.\r\nA very dishonest paltry boy, and more a coward than a hare. His\r\ndishonesty appears in leaving his friend here in necessity, and denying\r\nhim; and for his cowardship, ask Fabian.\r\n\r\nFABIAN.\r\nA coward, a most devout coward, religious in it.\r\n\r\nSIR ANDREW.\r\n’Slid, I’ll after him again and beat him.\r\n\r\nSIR TOBY.\r\nDo, cuff him soundly, but never draw thy sword.\r\n\r\nSIR ANDREW.\r\nAnd I do not—\r\n\r\n [_Exit._]\r\n\r\nFABIAN.\r\nCome, let’s see the event.\r\n\r\nSIR TOBY.\r\nI dare lay any money ’twill be nothing yet.\r\n\r\n [_Exeunt._]\r\n\r\n\r\n\r\nACT IV.\r\n\r\nSCENE I. The Street before Olivia’s House.\r\n\r\n Enter Sebastian and Clown.\r\n\r\nCLOWN.\r\nWill you make me believe that I am not sent for you?\r\n\r\nSEBASTIAN.\r\nGo to, go to, thou art a foolish fellow.\r\nLet me be clear of thee.\r\n\r\nCLOWN.\r\nWell held out, i’ faith! No, I do not know you, nor I am not sent to\r\nyou by my lady, to bid you come speak with her; nor your name is not\r\nMaster Cesario; nor this is not my nose neither. Nothing that is so, is\r\nso.\r\n\r\nSEBASTIAN.\r\nI prithee vent thy folly somewhere else,\r\nThou know’st not me.\r\n\r\nCLOWN.\r\nVent my folly! He has heard that word of some great man, and now\r\napplies it to a fool. Vent my folly! I am afraid this great lubber, the\r\nworld, will prove a cockney. I prithee now, ungird thy strangeness, and\r\ntell me what I shall vent to my lady. Shall I vent to her that thou art\r\ncoming?\r\n\r\nSEBASTIAN.\r\nI prithee, foolish Greek, depart from me.\r\nThere’s money for thee; if you tarry longer\r\nI shall give worse payment.\r\n\r\nCLOWN.\r\nBy my troth, thou hast an open hand. These wise men that give fools\r\nmoney get themselves a good report—after fourteen years’ purchase.\r\n\r\n Enter Sir Andrew, Sir Toby and Fabian.\r\n\r\nSIR ANDREW.\r\nNow sir, have I met you again? There’s for you.\r\n\r\n [_Striking Sebastian._]\r\n\r\nSEBASTIAN.\r\nWhy, there’s for thee, and there, and there.\r\nAre all the people mad?\r\n\r\n [_Beating Sir Andrew._]\r\n\r\nSIR TOBY.\r\nHold, sir, or I’ll throw your dagger o’er the house.\r\n\r\nCLOWN.\r\nThis will I tell my lady straight. I would not be in some of your coats\r\nfor twopence.\r\n\r\n [_Exit Clown._]\r\n\r\nSIR TOBY.\r\nCome on, sir, hold!\r\n\r\nSIR ANDREW.\r\nNay, let him alone, I’ll go another way to work with him. I’ll have an\r\naction of battery against him, if there be any law in Illyria. Though I\r\nstruck him first, yet it’s no matter for that.\r\n\r\nSEBASTIAN.\r\nLet go thy hand!\r\n\r\nSIR TOBY.\r\nCome, sir, I will not let you go. Come, my young soldier, put up your\r\niron: you are well fleshed. Come on.\r\n\r\nSEBASTIAN.\r\nI will be free from thee. What wouldst thou now?\r\nIf thou dar’st tempt me further, draw thy sword.\r\n\r\n [_Draws._]\r\n\r\nSIR TOBY.\r\nWhat, what? Nay, then, I must have an ounce or two of this malapert\r\nblood from you.\r\n\r\n [_Draws._]\r\n\r\n Enter Olivia.\r\n\r\nOLIVIA.\r\nHold, Toby! On thy life I charge thee hold!\r\n\r\nSIR TOBY.\r\nMadam.\r\n\r\nOLIVIA.\r\nWill it be ever thus? Ungracious wretch,\r\nFit for the mountains and the barbarous caves,\r\nWhere manners ne’er were preach’d! Out of my sight!\r\nBe not offended, dear Cesario.\r\nRudesby, be gone!\r\n\r\n [_Exeunt Sir Toby, Sir Andrew and Fabian._]\r\n\r\nI prithee, gentle friend,\r\nLet thy fair wisdom, not thy passion, sway\r\nIn this uncivil and unjust extent\r\nAgainst thy peace. Go with me to my house,\r\nAnd hear thou there how many fruitless pranks\r\nThis ruffian hath botch’d up, that thou thereby\r\nMayst smile at this. Thou shalt not choose but go.\r\nDo not deny. Beshrew his soul for me,\r\nHe started one poor heart of mine, in thee.\r\n\r\nSEBASTIAN.\r\nWhat relish is in this? How runs the stream?\r\nOr I am mad, or else this is a dream.\r\nLet fancy still my sense in Lethe steep;\r\nIf it be thus to dream, still let me sleep!\r\n\r\nOLIVIA.\r\nNay, come, I prithee. Would thou’dst be ruled by me!\r\n\r\nSEBASTIAN.\r\nMadam, I will.\r\n\r\nOLIVIA.\r\nO, say so, and so be!\r\n\r\n [_Exeunt._]\r\n\r\nSCENE II. A Room in Olivia’s House.\r\n\r\n Enter Maria and Clown.\r\n\r\nMARIA.\r\nNay, I prithee, put on this gown and this beard; make him believe thou\r\nart Sir Topas the curate. Do it quickly. I’ll call Sir Toby the whilst.\r\n\r\n [_Exit Maria._]\r\n\r\nCLOWN.\r\nWell, I’ll put it on, and I will dissemble myself in’t, and I would I\r\nwere the first that ever dissembled in such a gown. I am not tall\r\nenough to become the function well, nor lean enough to be thought a\r\ngood student, but to be said, an honest man and a good housekeeper goes\r\nas fairly as to say, a careful man and a great scholar. The competitors\r\nenter.\r\n\r\n Enter Sir Toby and Maria.\r\n\r\nSIR TOBY.\r\nJove bless thee, Master Parson.\r\n\r\nCLOWN.\r\n_Bonos dies_, Sir Toby: for as the old hermit of Prague, that never saw\r\npen and ink, very wittily said to a niece of King Gorboduc, ‘That that\r\nis, is’: so I, being Master Parson, am Master Parson; for what is\r\n‘that’ but ‘that’? and ‘is’ but ‘is’?\r\n\r\nSIR TOBY.\r\nTo him, Sir Topas.\r\n\r\nCLOWN.\r\nWhat ho, I say! Peace in this prison!\r\n\r\nSIR TOBY.\r\nThe knave counterfeits well. A good knave.\r\n\r\nMalvolio within.\r\n\r\nMALVOLIO.\r\nWho calls there?\r\n\r\nCLOWN.\r\nSir Topas the curate, who comes to visit Malvolio the lunatic.\r\n\r\nMALVOLIO.\r\nSir Topas, Sir Topas, good Sir Topas, go to my lady.\r\n\r\nCLOWN.\r\nOut, hyperbolical fiend! how vexest thou this man? Talkest thou nothing\r\nbut of ladies?\r\n\r\nSIR TOBY.\r\nWell said, Master Parson.\r\n\r\nMALVOLIO.\r\nSir Topas, never was man thus wronged. Good Sir Topas, do not think I\r\nam mad. They have laid me here in hideous darkness.\r\n\r\nCLOWN.\r\nFie, thou dishonest Satan! I call thee by the most modest terms, for I\r\nam one of those gentle ones that will use the devil himself with\r\ncourtesy. Say’st thou that house is dark?\r\n\r\nMALVOLIO.\r\nAs hell, Sir Topas.\r\n\r\nCLOWN.\r\nWhy, it hath bay windows transparent as barricadoes, and the\r\nclerestories toward the south-north are as lustrous as ebony; and yet\r\ncomplainest thou of obstruction?\r\n\r\nMALVOLIO.\r\nI am not mad, Sir Topas. I say to you this house is dark.\r\n\r\nCLOWN.\r\nMadman, thou errest. I say there is no darkness but ignorance, in which\r\nthou art more puzzled than the Egyptians in their fog.\r\n\r\nMALVOLIO.\r\nI say this house is as dark as ignorance, though ignorance were as dark\r\nas hell; and I say there was never man thus abused. I am no more mad\r\nthan you are. Make the trial of it in any constant question.\r\n\r\nCLOWN.\r\nWhat is the opinion of Pythagoras concerning wildfowl?\r\n\r\nMALVOLIO.\r\nThat the soul of our grandam might haply inhabit a bird.\r\n\r\nCLOWN.\r\nWhat think’st thou of his opinion?\r\n\r\nMALVOLIO.\r\nI think nobly of the soul, and no way approve his opinion.\r\n\r\nCLOWN.\r\nFare thee well. Remain thou still in darkness. Thou shalt hold the\r\nopinion of Pythagoras ere I will allow of thy wits, and fear to kill a\r\nwoodcock, lest thou dispossess the soul of thy grandam. Fare thee well.\r\n\r\nMALVOLIO.\r\nSir Topas, Sir Topas!\r\n\r\nSIR TOBY.\r\nMy most exquisite Sir Topas!\r\n\r\nCLOWN.\r\nNay, I am for all waters.\r\n\r\nMARIA.\r\nThou mightst have done this without thy beard and gown. He sees thee\r\nnot.\r\n\r\nSIR TOBY.\r\nTo him in thine own voice, and bring me word how thou find’st him. I\r\nwould we were well rid of this knavery. If he may be conveniently\r\ndelivered, I would he were, for I am now so far in offence with my\r\nniece that I cannot pursue with any safety this sport to the upshot.\r\nCome by and by to my chamber.\r\n\r\n [_Exeunt Sir Toby and Maria._]\r\n\r\nCLOWN.\r\n[_Singing._]\r\n _Hey, Robin, jolly Robin,\r\n Tell me how thy lady does._\r\n\r\nMALVOLIO.\r\nFool!\r\n\r\nCLOWN.\r\n _My lady is unkind, perdy._\r\n\r\nMALVOLIO.\r\nFool!\r\n\r\nCLOWN.\r\n _Alas, why is she so?_\r\n\r\nMALVOLIO.\r\nFool, I say!\r\n\r\nCLOWN.\r\n _She loves another_—\r\nWho calls, ha?\r\n\r\nMALVOLIO.\r\nGood fool, as ever thou wilt deserve well at my hand, help me to a\r\ncandle, and pen, ink, and paper. As I am a gentleman, I will live to be\r\nthankful to thee for’t.\r\n\r\nCLOWN.\r\nMaster Malvolio?\r\n\r\nMALVOLIO.\r\nAy, good fool.\r\n\r\nCLOWN.\r\nAlas, sir, how fell you besides your five wits?\r\n\r\nMALVOLIO.\r\nFool, there was never man so notoriously abused. I am as well in my\r\nwits, fool, as thou art.\r\n\r\nCLOWN.\r\nBut as well? Then you are mad indeed, if you be no better in your wits\r\nthan a fool.\r\n\r\nMALVOLIO.\r\nThey have here propertied me; keep me in darkness, send ministers to\r\nme, asses, and do all they can to face me out of my wits.\r\n\r\nCLOWN.\r\nAdvise you what you say: the minister is here. [_As Sir Topas_]\r\nMalvolio, Malvolio, thy wits the heavens restore. Endeavour thyself to\r\nsleep, and leave thy vain bibble-babble.\r\n\r\nMALVOLIO.\r\nSir Topas!\r\n\r\nCLOWN.\r\n[_As Sir Topas_] Maintain no words with him, good fellow. [_As\r\nhimself_] Who, I, sir? not I, sir. God buy you, good Sir Topas. [_As\r\nSir Topas_] Marry, amen. [_As himself_] I will sir, I will.\r\n\r\nMALVOLIO.\r\nFool, fool, fool, I say!\r\n\r\nCLOWN.\r\nAlas, sir, be patient. What say you, sir? I am shent for speaking to\r\nyou.\r\n\r\nMALVOLIO.\r\nGood fool, help me to some light and some paper. I tell thee I am as\r\nwell in my wits as any man in Illyria.\r\n\r\nCLOWN.\r\nWell-a-day that you were, sir!\r\n\r\nMALVOLIO.\r\nBy this hand, I am. Good fool, some ink, paper, and light, and convey\r\nwhat I will set down to my lady. It shall advantage thee more than ever\r\nthe bearing of letter did.\r\n\r\nCLOWN.\r\nI will help you to’t. But tell me true, are you not mad indeed? or do\r\nyou but counterfeit?\r\n\r\nMALVOLIO.\r\nBelieve me, I am not. I tell thee true.\r\n\r\nCLOWN.\r\nNay, I’ll ne’er believe a madman till I see his brains. I will fetch\r\nyou light, and paper, and ink.\r\n\r\nMALVOLIO.\r\nFool, I’ll requite it in the highest degree: I prithee be gone.\r\n\r\nCLOWN.\r\n[_Singing._]\r\n _I am gone, sir, and anon, sir,\r\n I’ll be with you again,\r\n In a trice, like to the old Vice,\r\n Your need to sustain;\r\n Who with dagger of lath, in his rage and his wrath,\r\n Cries ‘ah, ha!’ to the devil:\r\n Like a mad lad, ‘Pare thy nails, dad.\r\n Adieu, goodman devil.’_\r\n\r\n [_Exit._]\r\n\r\nSCENE III. Olivia’s Garden.\r\n\r\n Enter Sebastian.\r\n\r\nSEBASTIAN.\r\nThis is the air; that is the glorious sun,\r\nThis pearl she gave me, I do feel’t and see’t,\r\nAnd though ’tis wonder that enwraps me thus,\r\nYet ’tis not madness. Where’s Antonio, then?\r\nI could not find him at the Elephant,\r\nYet there he was, and there I found this credit,\r\nThat he did range the town to seek me out.\r\nHis counsel now might do me golden service.\r\nFor though my soul disputes well with my sense\r\nThat this may be some error, but no madness,\r\nYet doth this accident and flood of fortune\r\nSo far exceed all instance, all discourse,\r\nThat I am ready to distrust mine eyes\r\nAnd wrangle with my reason that persuades me\r\nTo any other trust but that I am mad,\r\nOr else the lady’s mad; yet if ’twere so,\r\nShe could not sway her house, command her followers,\r\nTake and give back affairs and their dispatch,\r\nWith such a smooth, discreet, and stable bearing\r\nAs I perceive she does. There’s something in’t\r\nThat is deceivable. But here the lady comes.\r\n\r\n Enter Olivia and a Priest.\r\n\r\nOLIVIA.\r\nBlame not this haste of mine. If you mean well,\r\nNow go with me and with this holy man\r\nInto the chantry by: there, before him\r\nAnd underneath that consecrated roof,\r\nPlight me the full assurance of your faith,\r\nThat my most jealous and too doubtful soul\r\nMay live at peace. He shall conceal it\r\nWhiles you are willing it shall come to note,\r\nWhat time we will our celebration keep\r\nAccording to my birth. What do you say?\r\n\r\nSEBASTIAN.\r\nI’ll follow this good man, and go with you,\r\nAnd having sworn truth, ever will be true.\r\n\r\nOLIVIA.\r\nThen lead the way, good father, and heavens so shine,\r\nThat they may fairly note this act of mine!\r\n\r\n [_Exeunt._]\r\n\r\n\r\n\r\nACT V.\r\n\r\nSCENE I. The Street before Olivia’s House.\r\n\r\n Enter Clown and Fabian.\r\n\r\nFABIAN.\r\nNow, as thou lov’st me, let me see his letter.\r\n\r\nCLOWN.\r\nGood Master Fabian, grant me another request.\r\n\r\nFABIAN.\r\nAnything.\r\n\r\nCLOWN.\r\nDo not desire to see this letter.\r\n\r\nFABIAN.\r\nThis is to give a dog, and in recompense desire my dog again.\r\n\r\n Enter Duke, Viola, Curio and Lords.\r\n\r\nDUKE.\r\nBelong you to the Lady Olivia, friends?\r\n\r\nCLOWN.\r\nAy, sir, we are some of her trappings.\r\n\r\nDUKE.\r\nI know thee well. How dost thou, my good fellow?\r\n\r\nCLOWN.\r\nTruly, sir, the better for my foes, and the worse for my friends.\r\n\r\nDUKE.\r\nJust the contrary; the better for thy friends.\r\n\r\nCLOWN.\r\nNo, sir, the worse.\r\n\r\nDUKE.\r\nHow can that be?\r\n\r\nCLOWN.\r\nMarry, sir, they praise me, and make an ass of me. Now my foes tell me\r\nplainly I am an ass: so that by my foes, sir, I profit in the knowledge\r\nof myself, and by my friends I am abused. So that, conclusions to be as\r\nkisses, if your four negatives make your two affirmatives, why then,\r\nthe worse for my friends, and the better for my foes.\r\n\r\nDUKE.\r\nWhy, this is excellent.\r\n\r\nCLOWN.\r\nBy my troth, sir, no; though it please you to be one of my friends.\r\n\r\nDUKE.\r\nThou shalt not be the worse for me; there’s gold.\r\n\r\nCLOWN.\r\nBut that it would be double-dealing, sir, I would you could make it\r\nanother.\r\n\r\nDUKE.\r\nO, you give me ill counsel.\r\n\r\nCLOWN.\r\nPut your grace in your pocket, sir, for this once, and let your flesh\r\nand blood obey it.\r\n\r\nDUKE.\r\nWell, I will be so much a sinner to be a double-dealer: there’s\r\nanother.\r\n\r\nCLOWN.\r\n_Primo, secundo, tertio_, is a good play, and the old saying is, the\r\nthird pays for all; the triplex, sir, is a good tripping measure; or\r\nthe bells of Saint Bennet, sir, may put you in mind—one, two, three.\r\n\r\nDUKE.\r\nYou can fool no more money out of me at this throw. If you will let\r\nyour lady know I am here to speak with her, and bring her along with\r\nyou, it may awake my bounty further.\r\n\r\nCLOWN.\r\nMarry, sir, lullaby to your bounty till I come again. I go, sir, but I\r\nwould not have you to think that my desire of having is the sin of\r\ncovetousness: but as you say, sir, let your bounty take a nap, I will\r\nawake it anon.\r\n\r\n [_Exit Clown._]\r\n\r\n Enter Antonio and Officers.\r\n\r\nVIOLA.\r\nHere comes the man, sir, that did rescue me.\r\n\r\nDUKE.\r\nThat face of his I do remember well.\r\nYet when I saw it last it was besmear’d\r\nAs black as Vulcan, in the smoke of war.\r\nA baubling vessel was he captain of,\r\nFor shallow draught and bulk unprizable,\r\nWith which such scathful grapple did he make\r\nWith the most noble bottom of our fleet,\r\nThat very envy and the tongue of loss\r\nCried fame and honour on him. What’s the matter?\r\n\r\nFIRST OFFICER.\r\nOrsino, this is that Antonio\r\nThat took the _Phoenix_ and her fraught from Candy,\r\nAnd this is he that did the _Tiger_ board\r\nWhen your young nephew Titus lost his leg.\r\nHere in the streets, desperate of shame and state,\r\nIn private brabble did we apprehend him.\r\n\r\nVIOLA.\r\nHe did me kindness, sir; drew on my side,\r\nBut in conclusion, put strange speech upon me.\r\nI know not what ’twas, but distraction.\r\n\r\nDUKE.\r\nNotable pirate, thou salt-water thief,\r\nWhat foolish boldness brought thee to their mercies,\r\nWhom thou, in terms so bloody and so dear,\r\nHast made thine enemies?\r\n\r\nANTONIO.\r\nOrsino, noble sir,\r\nBe pleased that I shake off these names you give me:\r\nAntonio never yet was thief or pirate,\r\nThough, I confess, on base and ground enough,\r\nOrsino’s enemy. A witchcraft drew me hither:\r\nThat most ingrateful boy there by your side\r\nFrom the rude sea’s enraged and foamy mouth\r\nDid I redeem; a wreck past hope he was.\r\nHis life I gave him, and did thereto add\r\nMy love, without retention or restraint,\r\nAll his in dedication. For his sake\r\nDid I expose myself, pure for his love,\r\nInto the danger of this adverse town;\r\nDrew to defend him when he was beset;\r\nWhere being apprehended, his false cunning\r\n(Not meaning to partake with me in danger)\r\nTaught him to face me out of his acquaintance,\r\nAnd grew a twenty years’ removed thing\r\nWhile one would wink; denied me mine own purse,\r\nWhich I had recommended to his use\r\nNot half an hour before.\r\n\r\nVIOLA.\r\nHow can this be?\r\n\r\nDUKE.\r\nWhen came he to this town?\r\n\r\nANTONIO.\r\nToday, my lord; and for three months before,\r\nNo int’rim, not a minute’s vacancy,\r\nBoth day and night did we keep company.\r\n\r\n Enter Olivia and Attendants.\r\n\r\nDUKE.\r\nHere comes the Countess, now heaven walks on earth.\r\nBut for thee, fellow, fellow, thy words are madness.\r\nThree months this youth hath tended upon me;\r\nBut more of that anon. Take him aside.\r\n\r\nOLIVIA.\r\nWhat would my lord, but that he may not have,\r\nWherein Olivia may seem serviceable?\r\nCesario, you do not keep promise with me.\r\n\r\nVIOLA.\r\nMadam?\r\n\r\nDUKE.\r\nGracious Olivia—\r\n\r\nOLIVIA.\r\nWhat do you say, Cesario? Good my lord—\r\n\r\nVIOLA.\r\nMy lord would speak, my duty hushes me.\r\n\r\nOLIVIA.\r\nIf it be aught to the old tune, my lord,\r\nIt is as fat and fulsome to mine ear\r\nAs howling after music.\r\n\r\nDUKE.\r\nStill so cruel?\r\n\r\nOLIVIA.\r\nStill so constant, lord.\r\n\r\nDUKE.\r\nWhat, to perverseness? You uncivil lady,\r\nTo whose ingrate and unauspicious altars\r\nMy soul the faithfull’st off’rings hath breathed out\r\nThat e’er devotion tender’d! What shall I do?\r\n\r\nOLIVIA.\r\nEven what it please my lord that shall become him.\r\n\r\nDUKE.\r\nWhy should I not, had I the heart to do it,\r\nLike to the Egyptian thief at point of death,\r\nKill what I love?—a savage jealousy\r\nThat sometime savours nobly. But hear me this:\r\nSince you to non-regardance cast my faith,\r\nAnd that I partly know the instrument\r\nThat screws me from my true place in your favour,\r\nLive you the marble-breasted tyrant still.\r\nBut this your minion, whom I know you love,\r\nAnd whom, by heaven I swear, I tender dearly,\r\nHim will I tear out of that cruel eye\r\nWhere he sits crowned in his master’s spite.—\r\nCome, boy, with me; my thoughts are ripe in mischief:\r\nI’ll sacrifice the lamb that I do love,\r\nTo spite a raven’s heart within a dove.\r\n\r\nVIOLA.\r\nAnd I, most jocund, apt, and willingly,\r\nTo do you rest, a thousand deaths would die.\r\n\r\nOLIVIA.\r\nWhere goes Cesario?\r\n\r\nVIOLA.\r\nAfter him I love\r\nMore than I love these eyes, more than my life,\r\nMore, by all mores, than e’er I shall love wife.\r\nIf I do feign, you witnesses above\r\nPunish my life for tainting of my love.\r\n\r\nOLIVIA.\r\nAh me, detested! how am I beguil’d!\r\n\r\nVIOLA.\r\nWho does beguile you? Who does do you wrong?\r\n\r\nOLIVIA.\r\nHast thou forgot thyself? Is it so long?\r\nCall forth the holy father.\r\n\r\n [_Exit an Attendant._]\r\n\r\nDUKE.\r\n[_To Viola._] Come, away!\r\n\r\nOLIVIA.\r\nWhither, my lord? Cesario, husband, stay.\r\n\r\nDUKE.\r\nHusband?\r\n\r\nOLIVIA.\r\nAy, husband. Can he that deny?\r\n\r\nDUKE.\r\nHer husband, sirrah?\r\n\r\nVIOLA.\r\nNo, my lord, not I.\r\n\r\nOLIVIA.\r\nAlas, it is the baseness of thy fear\r\nThat makes thee strangle thy propriety.\r\nFear not, Cesario, take thy fortunes up.\r\nBe that thou know’st thou art, and then thou art\r\nAs great as that thou fear’st.\r\n\r\n Enter Priest.\r\n\r\nO, welcome, father!\r\nFather, I charge thee, by thy reverence\r\nHere to unfold—though lately we intended\r\nTo keep in darkness what occasion now\r\nReveals before ’tis ripe—what thou dost know\r\nHath newly passed between this youth and me.\r\n\r\nPRIEST.\r\nA contract of eternal bond of love,\r\nConfirmed by mutual joinder of your hands,\r\nAttested by the holy close of lips,\r\nStrengthen’d by interchangement of your rings,\r\nAnd all the ceremony of this compact\r\nSealed in my function, by my testimony;\r\nSince when, my watch hath told me, toward my grave,\r\nI have travelled but two hours.\r\n\r\nDUKE.\r\nO thou dissembling cub! What wilt thou be\r\nWhen time hath sowed a grizzle on thy case?\r\nOr will not else thy craft so quickly grow\r\nThat thine own trip shall be thine overthrow?\r\nFarewell, and take her; but direct thy feet\r\nWhere thou and I henceforth may never meet.\r\n\r\nVIOLA.\r\nMy lord, I do protest—\r\n\r\nOLIVIA.\r\nO, do not swear.\r\nHold little faith, though thou has too much fear.\r\n\r\n Enter Sir Andrew.\r\n\r\nSIR ANDREW.\r\nFor the love of God, a surgeon! Send one presently to Sir Toby.\r\n\r\nOLIVIA.\r\nWhat’s the matter?\r\n\r\nSIR ANDREW.\r\n’Has broke my head across, and has given Sir Toby a bloody coxcomb too.\r\nFor the love of God, your help! I had rather than forty pound I were at\r\nhome.\r\n\r\nOLIVIA.\r\nWho has done this, Sir Andrew?\r\n\r\nSIR ANDREW.\r\nThe Count’s gentleman, one Cesario. We took him for a coward, but he’s\r\nthe very devil incardinate.\r\n\r\nDUKE.\r\nMy gentleman, Cesario?\r\n\r\nSIR ANDREW.\r\n’Od’s lifelings, here he is!—You broke my head for nothing; and that\r\nthat I did, I was set on to do’t by Sir Toby.\r\n\r\nVIOLA.\r\nWhy do you speak to me? I never hurt you:\r\nYou drew your sword upon me without cause,\r\nBut I bespake you fair and hurt you not.\r\n\r\n Enter Sir Toby, drunk, led by the Clown.\r\n\r\nSIR ANDREW.\r\nIf a bloody coxcomb be a hurt, you have hurt me. I think you set\r\nnothing by a bloody coxcomb. Here comes Sir Toby halting, you shall\r\nhear more: but if he had not been in drink, he would have tickled you\r\nothergates than he did.\r\n\r\nDUKE.\r\nHow now, gentleman? How is’t with you?\r\n\r\nSIR TOBY.\r\nThat’s all one; ’has hurt me, and there’s th’ end on’t. Sot, didst see\r\nDick Surgeon, sot?\r\n\r\nCLOWN.\r\nO, he’s drunk, Sir Toby, an hour agone; his eyes were set at eight i’\r\nth’ morning.\r\n\r\nSIR TOBY.\r\nThen he’s a rogue, and a passy measures pavin. I hate a drunken rogue.\r\n\r\nOLIVIA.\r\nAway with him. Who hath made this havoc with them?\r\n\r\nSIR ANDREW.\r\nI’ll help you, Sir Toby, because we’ll be dressed together.\r\n\r\nSIR TOBY.\r\nWill you help? An ass-head, and a coxcomb, and a knave, a thin-faced\r\nknave, a gull?\r\n\r\nOLIVIA.\r\nGet him to bed, and let his hurt be looked to.\r\n\r\n [_Exeunt Clown, Fabian, Sir Toby and Sir Andrew._]\r\n\r\n Enter Sebastian.\r\n\r\nSEBASTIAN.\r\nI am sorry, madam, I have hurt your kinsman;\r\nBut had it been the brother of my blood,\r\nI must have done no less with wit and safety.\r\nYou throw a strange regard upon me, and by that\r\nI do perceive it hath offended you.\r\nPardon me, sweet one, even for the vows\r\nWe made each other but so late ago.\r\n\r\nDUKE.\r\nOne face, one voice, one habit, and two persons!\r\nA natural perspective, that is, and is not!\r\n\r\nSEBASTIAN.\r\nAntonio, O my dear Antonio!\r\nHow have the hours rack’d and tortur’d me\r\nSince I have lost thee.\r\n\r\nANTONIO.\r\nSebastian are you?\r\n\r\nSEBASTIAN.\r\nFear’st thou that, Antonio?\r\n\r\nANTONIO.\r\nHow have you made division of yourself?\r\nAn apple cleft in two is not more twin\r\nThan these two creatures. Which is Sebastian?\r\n\r\nOLIVIA.\r\nMost wonderful!\r\n\r\nSEBASTIAN.\r\nDo I stand there? I never had a brother:\r\nNor can there be that deity in my nature\r\nOf here and everywhere. I had a sister,\r\nWhom the blind waves and surges have devoured.\r\nOf charity, what kin are you to me?\r\nWhat countryman? What name? What parentage?\r\n\r\nVIOLA.\r\nOf Messaline: Sebastian was my father;\r\nSuch a Sebastian was my brother too:\r\nSo went he suited to his watery tomb.\r\nIf spirits can assume both form and suit,\r\nYou come to fright us.\r\n\r\nSEBASTIAN.\r\nA spirit I am indeed,\r\nBut am in that dimension grossly clad,\r\nWhich from the womb I did participate.\r\nWere you a woman, as the rest goes even,\r\nI should my tears let fall upon your cheek,\r\nAnd say, ‘Thrice welcome, drowned Viola.’\r\n\r\nVIOLA.\r\nMy father had a mole upon his brow.\r\n\r\nSEBASTIAN.\r\nAnd so had mine.\r\n\r\nVIOLA.\r\nAnd died that day when Viola from her birth\r\nHad numbered thirteen years.\r\n\r\nSEBASTIAN.\r\nO, that record is lively in my soul!\r\nHe finished indeed his mortal act\r\nThat day that made my sister thirteen years.\r\n\r\nVIOLA.\r\nIf nothing lets to make us happy both\r\nBut this my masculine usurp’d attire,\r\nDo not embrace me till each circumstance\r\nOf place, time, fortune, do cohere and jump\r\nThat I am Viola; which to confirm,\r\nI’ll bring you to a captain in this town,\r\nWhere lie my maiden weeds; by whose gentle help\r\nI was preserv’d to serve this noble count.\r\nAll the occurrence of my fortune since\r\nHath been between this lady and this lord.\r\n\r\nSEBASTIAN.\r\n[_To Olivia._] So comes it, lady, you have been mistook.\r\nBut nature to her bias drew in that.\r\nYou would have been contracted to a maid;\r\nNor are you therein, by my life, deceived:\r\nYou are betroth’d both to a maid and man.\r\n\r\nDUKE.\r\nBe not amazed; right noble is his blood.\r\nIf this be so, as yet the glass seems true,\r\nI shall have share in this most happy wreck.\r\n[_To Viola._] Boy, thou hast said to me a thousand times\r\nThou never shouldst love woman like to me.\r\n\r\nVIOLA.\r\nAnd all those sayings will I over-swear,\r\nAnd all those swearings keep as true in soul\r\nAs doth that orbed continent the fire\r\nThat severs day from night.\r\n\r\nDUKE.\r\nGive me thy hand,\r\nAnd let me see thee in thy woman’s weeds.\r\n\r\nVIOLA.\r\nThe captain that did bring me first on shore\r\nHath my maid’s garments. He, upon some action,\r\nIs now in durance, at Malvolio’s suit,\r\nA gentleman and follower of my lady’s.\r\n\r\nOLIVIA.\r\nHe shall enlarge him. Fetch Malvolio hither.\r\nAnd yet, alas, now I remember me,\r\nThey say, poor gentleman, he’s much distract.\r\n\r\n Enter Clown, with a letter and Fabian.\r\n\r\nA most extracting frenzy of mine own\r\nFrom my remembrance clearly banished his.\r\nHow does he, sirrah?\r\n\r\nCLOWN.\r\nTruly, madam, he holds Belzebub at the stave’s end as well as a man in\r\nhis case may do. Has here writ a letter to you. I should have given it\r\nyou today morning, but as a madman’s epistles are no gospels, so it\r\nskills not much when they are delivered.\r\n\r\nOLIVIA.\r\nOpen ’t, and read it.\r\n\r\nCLOWN.\r\nLook then to be well edified, when the fool delivers the madman. _By\r\nthe Lord, madam,—_\r\n\r\nOLIVIA.\r\nHow now, art thou mad?\r\n\r\nCLOWN.\r\nNo, madam, I do but read madness: an your ladyship will have it as it\r\nought to be, you must allow _vox_.\r\n\r\nOLIVIA.\r\nPrithee, read i’ thy right wits.\r\n\r\nCLOWN.\r\nSo I do, madonna. But to read his right wits is to read thus; therefore\r\nperpend, my princess, and give ear.\r\n\r\nOLIVIA.\r\n[_To Fabian._] Read it you, sirrah.\r\n\r\nFABIAN.\r\n[_Reads._] _By the Lord, madam, you wrong me, and the world shall know\r\nit. Though you have put me into darkness and given your drunken cousin\r\nrule over me, yet have I the benefit of my senses as well as your\r\nladyship. I have your own letter that induced me to the semblance I put\r\non; with the which I doubt not but to do myself much right or you much\r\nshame. Think of me as you please. I leave my duty a little unthought\r\nof, and speak out of my injury.\r\n The madly-used Malvolio._\r\n\r\nOLIVIA.\r\nDid he write this?\r\n\r\nCLOWN.\r\nAy, madam.\r\n\r\nDUKE.\r\nThis savours not much of distraction.\r\n\r\nOLIVIA.\r\nSee him delivered, Fabian, bring him hither.\r\n\r\n [_Exit Fabian._]\r\n\r\nMy lord, so please you, these things further thought on,\r\nTo think me as well a sister, as a wife,\r\nOne day shall crown th’ alliance on’t, so please you,\r\nHere at my house, and at my proper cost.\r\n\r\nDUKE.\r\nMadam, I am most apt t’ embrace your offer.\r\n[_To Viola._] Your master quits you; and for your service done him,\r\nSo much against the mettle of your sex,\r\nSo far beneath your soft and tender breeding,\r\nAnd since you call’d me master for so long,\r\nHere is my hand; you shall from this time be\r\nYou master’s mistress.\r\n\r\nOLIVIA.\r\nA sister? You are she.\r\n\r\n Enter Fabian and Malvolio.\r\n\r\nDUKE.\r\nIs this the madman?\r\n\r\nOLIVIA.\r\nAy, my lord, this same.\r\nHow now, Malvolio?\r\n\r\nMALVOLIO.\r\nMadam, you have done me wrong,\r\nNotorious wrong.\r\n\r\nOLIVIA.\r\nHave I, Malvolio? No.\r\n\r\nMALVOLIO.\r\nLady, you have. Pray you peruse that letter.\r\nYou must not now deny it is your hand,\r\nWrite from it, if you can, in hand, or phrase,\r\nOr say ’tis not your seal, not your invention:\r\nYou can say none of this. Well, grant it then,\r\nAnd tell me, in the modesty of honour,\r\nWhy you have given me such clear lights of favour,\r\nBade me come smiling and cross-garter’d to you,\r\nTo put on yellow stockings, and to frown\r\nUpon Sir Toby, and the lighter people;\r\nAnd acting this in an obedient hope,\r\nWhy have you suffer’d me to be imprison’d,\r\nKept in a dark house, visited by the priest,\r\nAnd made the most notorious geck and gull\r\nThat e’er invention played on? Tell me why?\r\n\r\nOLIVIA.\r\nAlas, Malvolio, this is not my writing,\r\nThough I confess, much like the character:\r\nBut out of question, ’tis Maria’s hand.\r\nAnd now I do bethink me, it was she\r\nFirst told me thou wast mad; then cam’st in smiling,\r\nAnd in such forms which here were presuppos’d\r\nUpon thee in the letter. Prithee, be content.\r\nThis practice hath most shrewdly pass’d upon thee.\r\nBut when we know the grounds and authors of it,\r\nThou shalt be both the plaintiff and the judge\r\nOf thine own cause.\r\n\r\nFABIAN.\r\nGood madam, hear me speak,\r\nAnd let no quarrel, nor no brawl to come,\r\nTaint the condition of this present hour,\r\nWhich I have wonder’d at. In hope it shall not,\r\nMost freely I confess, myself and Toby\r\nSet this device against Malvolio here,\r\nUpon some stubborn and uncourteous parts\r\nWe had conceiv’d against him. Maria writ\r\nThe letter, at Sir Toby’s great importance,\r\nIn recompense whereof he hath married her.\r\nHow with a sportful malice it was follow’d\r\nMay rather pluck on laughter than revenge,\r\nIf that the injuries be justly weigh’d\r\nThat have on both sides passed.\r\n\r\nOLIVIA.\r\nAlas, poor fool, how have they baffled thee!\r\n\r\nCLOWN.\r\nWhy, ‘some are born great, some achieve greatness, and some have\r\ngreatness thrown upon them.’ I was one, sir, in this interlude, one Sir\r\nTopas, sir, but that’s all one. ‘By the Lord, fool, I am not mad.’ But\r\ndo you remember? ‘Madam, why laugh you at such a barren rascal? And you\r\nsmile not, he’s gagged’? And thus the whirligig of time brings in his\r\nrevenges.\r\n\r\nMALVOLIO.\r\nI’ll be revenged on the whole pack of you.\r\n\r\n [_Exit._]\r\n\r\nOLIVIA.\r\nHe hath been most notoriously abus’d.\r\n\r\nDUKE.\r\nPursue him, and entreat him to a peace:\r\nHe hath not told us of the captain yet.\r\nWhen that is known, and golden time convents,\r\nA solemn combination shall be made\r\nOf our dear souls.—Meantime, sweet sister,\r\nWe will not part from hence.—Cesario, come:\r\nFor so you shall be while you are a man;\r\nBut when in other habits you are seen,\r\nOrsino’s mistress, and his fancy’s queen.\r\n\r\n [_Exeunt._]\r\n\r\n Clown sings.\r\n\r\n_ When that I was and a little tiny boy,\r\n With hey, ho, the wind and the rain,\r\n A foolish thing was but a toy,\r\n For the rain it raineth every day._\r\n\r\n_ But when I came to man’s estate,\r\n With hey, ho, the wind and the rain,\r\n ’Gainst knaves and thieves men shut their gate,\r\n For the rain it raineth every day._\r\n\r\n_ But when I came, alas, to wive,\r\n With hey, ho, the wind and the rain,\r\n By swaggering could I never thrive,\r\n For the rain it raineth every day._\r\n\r\n_ But when I came unto my beds,\r\n With hey, ho, the wind and the rain,\r\n With toss-pots still had drunken heads,\r\n For the rain it raineth every day._\r\n\r\n_ A great while ago the world begun,\r\n With hey, ho, the wind and the rain,\r\n But that’s all one, our play is done,\r\n And we’ll strive to please you every day._\r\n\r\n [_Exit._]\r\n\r\n\r\n\r\n\r\n\r\nEnd of the Project Gutenberg EBook of Twelfth Night, by William Shakespeare\r\n\r\n*** END OF THIS PROJECT GUTENBERG EBOOK TWELFTH NIGHT ***\r\n\r\n***** This file should be named 1526-0.txt or 1526-0.zip *****\r\nThis and all associated files of various formats will be found in:\r\n http://www.gutenberg.org/1/5/2/1526/\r\n\r\nThis etext was produced by the PG Shakespeare Team,\r\na team of about twenty Project Gutenberg volunteers.\r\n\r\nUpdated editions will replace the previous one--the old editions will\r\nbe renamed.\r\n\r\nCreating the works from print editions not protected by U.S. copyright\r\nlaw means that no one owns a United States copyright in these works,\r\nso the Foundation (and you!) can copy and distribute it in the United\r\nStates without permission and without paying copyright\r\nroyalties. Special rules, set forth in the General Terms of Use part\r\nof this license, apply to copying and distributing Project\r\nGutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm\r\nconcept and trademark. Project Gutenberg is a registered trademark,\r\nand may not be used if you charge for the eBooks, unless you receive\r\nspecific permission. If you do not charge anything for copies of this\r\neBook, complying with the rules is very easy. You may use this eBook\r\nfor nearly any purpose such as creation of derivative works, reports,\r\nperformances and research. They may be modified and printed and given\r\naway--you may do practically ANYTHING in the United States with eBooks\r\nnot protected by U.S. copyright law. Redistribution is subject to the\r\ntrademark license, especially commercial redistribution.\r\n\r\nSTART: FULL LICENSE\r\n\r\nTHE FULL PROJECT GUTENBERG LICENSE\r\nPLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\r\n\r\nTo protect the Project Gutenberg-tm mission of promoting the free\r\ndistribution of electronic works, by using or distributing this work\r\n(or any other work associated in any way with the phrase \"Project\r\nGutenberg\"), you agree to comply with all the terms of the Full\r\nProject Gutenberg-tm License available with this file or online at\r\nwww.gutenberg.org/license.\r\n\r\nSection 1. General Terms of Use and Redistributing Project\r\nGutenberg-tm electronic works\r\n\r\n1.A. By reading or using any part of this Project Gutenberg-tm\r\nelectronic work, you indicate that you have read, understand, agree to\r\nand accept all the terms of this license and intellectual property\r\n(trademark/copyright) agreement. If you do not agree to abide by all\r\nthe terms of this agreement, you must cease using and return or\r\ndestroy all copies of Project Gutenberg-tm electronic works in your\r\npossession. If you paid a fee for obtaining a copy of or access to a\r\nProject Gutenberg-tm electronic work and you do not agree to be bound\r\nby the terms of this agreement, you may obtain a refund from the\r\nperson or entity to whom you paid the fee as set forth in paragraph\r\n1.E.8.\r\n\r\n1.B. \"Project Gutenberg\" is a registered trademark. It may only be\r\nused on or associated in any way with an electronic work by people who\r\nagree to be bound by the terms of this agreement. There are a few\r\nthings that you can do with most Project Gutenberg-tm electronic works\r\neven without complying with the full terms of this agreement. See\r\nparagraph 1.C below. There are a lot of things you can do with Project\r\nGutenberg-tm electronic works if you follow the terms of this\r\nagreement and help preserve free future access to Project Gutenberg-tm\r\nelectronic works. See paragraph 1.E below.\r\n\r\n1.C. The Project Gutenberg Literary Archive Foundation (\"the\r\nFoundation\" or PGLAF), owns a compilation copyright in the collection\r\nof Project Gutenberg-tm electronic works. Nearly all the individual\r\nworks in the collection are in the public domain in the United\r\nStates. If an individual work is unprotected by copyright law in the\r\nUnited States and you are located in the United States, we do not\r\nclaim a right to prevent you from copying, distributing, performing,\r\ndisplaying or creating derivative works based on the work as long as\r\nall references to Project Gutenberg are removed. Of course, we hope\r\nthat you will support the Project Gutenberg-tm mission of promoting\r\nfree access to electronic works by freely sharing Project Gutenberg-tm\r\nworks in compliance with the terms of this agreement for keeping the\r\nProject Gutenberg-tm name associated with the work. You can easily\r\ncomply with the terms of this agreement by keeping this work in the\r\nsame format with its attached full Project Gutenberg-tm License when\r\nyou share it without charge with others.\r\n\r\n1.D. The copyright laws of the place where you are located also govern\r\nwhat you can do with this work. Copyright laws in most countries are\r\nin a constant state of change. If you are outside the United States,\r\ncheck the laws of your country in addition to the terms of this\r\nagreement before downloading, copying, displaying, performing,\r\ndistributing or creating derivative works based on this work or any\r\nother Project Gutenberg-tm work. The Foundation makes no\r\nrepresentations concerning the copyright status of any work in any\r\ncountry outside the United States.\r\n\r\n1.E. Unless you have removed all references to Project Gutenberg:\r\n\r\n1.E.1. The following sentence, with active links to, or other\r\nimmediate access to, the full Project Gutenberg-tm License must appear\r\nprominently whenever any copy of a Project Gutenberg-tm work (any work\r\non which the phrase \"Project Gutenberg\" appears, or with which the\r\nphrase \"Project Gutenberg\" is associated) is accessed, displayed,\r\nperformed, viewed, copied or distributed:\r\n\r\n This eBook is for the use of anyone anywhere in the United States and\r\n most other parts of the world at no cost and with almost no\r\n restrictions whatsoever. You may copy it, give it away or re-use it\r\n under the terms of the Project Gutenberg License included with this\r\n eBook or online at www.gutenberg.org. If you are not located in the\r\n United States, you\'ll have to check the laws of the country where you\r\n are located before using this ebook.\r\n\r\n1.E.2. If an individual Project Gutenberg-tm electronic work is\r\nderived from texts not protected by U.S. copyright law (does not\r\ncontain a notice indicating that it is posted with permission of the\r\ncopyright holder), the work can be copied and distributed to anyone in\r\nthe United States without paying any fees or charges. If you are\r\nredistributing or providing access to a work with the phrase \"Project\r\nGutenberg\" associated with or appearing on the work, you must comply\r\neither with the requirements of paragraphs 1.E.1 through 1.E.7 or\r\nobtain permission for the use of the work and the Project Gutenberg-tm\r\ntrademark as set forth in paragraphs 1.E.8 or 1.E.9.\r\n\r\n1.E.3. If an individual Project Gutenberg-tm electronic work is posted\r\nwith the permission of the copyright holder, your use and distribution\r\nmust comply with both paragraphs 1.E.1 through 1.E.7 and any\r\nadditional terms imposed by the copyright holder. Additional terms\r\nwill be linked to the Project Gutenberg-tm License for all works\r\nposted with the permission of the copyright holder found at the\r\nbeginning of this work.\r\n\r\n1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\r\nLicense terms from this work, or any files containing a part of this\r\nwork or any other work associated with Project Gutenberg-tm.\r\n\r\n1.E.5. Do not copy, display, perform, distribute or redistribute this\r\nelectronic work, or any part of this electronic work, without\r\nprominently displaying the sentence set forth in paragraph 1.E.1 with\r\nactive links or immediate access to the full terms of the Project\r\nGutenberg-tm License.\r\n\r\n1.E.6. You may convert to and distribute this work in any binary,\r\ncompressed, marked up, nonproprietary or proprietary form, including\r\nany word processing or hypertext form. However, if you provide access\r\nto or distribute copies of a Project Gutenberg-tm work in a format\r\nother than \"Plain Vanilla ASCII\" or other format used in the official\r\nversion posted on the official Project Gutenberg-tm web site\r\n(www.gutenberg.org), you must, at no additional cost, fee or expense\r\nto the user, provide a copy, a means of exporting a copy, or a means\r\nof obtaining a copy upon request, of the work in its original \"Plain\r\nVanilla ASCII\" or other form. Any alternate format must include the\r\nfull Project Gutenberg-tm License as specified in paragraph 1.E.1.\r\n\r\n1.E.7. Do not charge a fee for access to, viewing, displaying,\r\nperforming, copying or distributing any Project Gutenberg-tm works\r\nunless you comply with paragraph 1.E.8 or 1.E.9.\r\n\r\n1.E.8. You may charge a reasonable fee for copies of or providing\r\naccess to or distributing Project Gutenberg-tm electronic works\r\nprovided that\r\n\r\n* You pay a royalty fee of 20% of the gross profits you derive from\r\n the use of Project Gutenberg-tm works calculated using the method\r\n you already use to calculate your applicable taxes. The fee is owed\r\n to the owner of the Project Gutenberg-tm trademark, but he has\r\n agreed to donate royalties under this paragraph to the Project\r\n Gutenberg Literary Archive Foundation. Royalty payments must be paid\r\n within 60 days following each date on which you prepare (or are\r\n legally required to prepare) your periodic tax returns. Royalty\r\n payments should be clearly marked as such and sent to the Project\r\n Gutenberg Literary Archive Foundation at the address specified in\r\n Section 4, \"Information about donations to the Project Gutenberg\r\n Literary Archive Foundation.\"\r\n\r\n* You provide a full refund of any money paid by a user who notifies\r\n you in writing (or by e-mail) within 30 days of receipt that s/he\r\n does not agree to the terms of the full Project Gutenberg-tm\r\n License. You must require such a user to return or destroy all\r\n copies of the works possessed in a physical medium and discontinue\r\n all use of and all access to other copies of Project Gutenberg-tm\r\n works.\r\n\r\n* You provide, in accordance with paragraph 1.F.3, a full refund of\r\n any money paid for a work or a replacement copy, if a defect in the\r\n electronic work is discovered and reported to you within 90 days of\r\n receipt of the work.\r\n\r\n* You comply with all other terms of this agreement for free\r\n distribution of Project Gutenberg-tm works.\r\n\r\n1.E.9. If you wish to charge a fee or distribute a Project\r\nGutenberg-tm electronic work or group of works on different terms than\r\nare set forth in this agreement, you must obtain permission in writing\r\nfrom both the Project Gutenberg Literary Archive Foundation and The\r\nProject Gutenberg Trademark LLC, the owner of the Project Gutenberg-tm\r\ntrademark. Contact the Foundation as set forth in Section 3 below.\r\n\r\n1.F.\r\n\r\n1.F.1. Project Gutenberg volunteers and employees expend considerable\r\neffort to identify, do copyright research on, transcribe and proofread\r\nworks not protected by U.S. copyright law in creating the Project\r\nGutenberg-tm collection. Despite these efforts, Project Gutenberg-tm\r\nelectronic works, and the medium on which they may be stored, may\r\ncontain \"Defects,\" such as, but not limited to, incomplete, inaccurate\r\nor corrupt data, transcription errors, a copyright or other\r\nintellectual property infringement, a defective or damaged disk or\r\nother medium, a computer virus, or computer codes that damage or\r\ncannot be read by your equipment.\r\n\r\n1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the \"Right\r\nof Replacement or Refund\" described in paragraph 1.F.3, the Project\r\nGutenberg Literary Archive Foundation, the owner of the Project\r\nGutenberg-tm trademark, and any other party distributing a Project\r\nGutenberg-tm electronic work under this agreement, disclaim all\r\nliability to you for damages, costs and expenses, including legal\r\nfees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\r\nLIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\r\nPROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE\r\nTRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\r\nLIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\r\nINCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\r\nDAMAGE.\r\n\r\n1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\r\ndefect in this electronic work within 90 days of receiving it, you can\r\nreceive a refund of the money (if any) you paid for it by sending a\r\nwritten explanation to the person you received the work from. If you\r\nreceived the work on a physical medium, you must return the medium\r\nwith your written explanation. The person or entity that provided you\r\nwith the defective work may elect to provide a replacement copy in\r\nlieu of a refund. If you received the work electronically, the person\r\nor entity providing it to you may choose to give you a second\r\nopportunity to receive the work electronically in lieu of a refund. If\r\nthe second copy is also defective, you may demand a refund in writing\r\nwithout further opportunities to fix the problem.\r\n\r\n1.F.4. Except for the limited right of replacement or refund set forth\r\nin paragraph 1.F.3, this work is provided to you \'AS-IS\', WITH NO\r\nOTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\r\nLIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.\r\n\r\n1.F.5. Some states do not allow disclaimers of certain implied\r\nwarranties or the exclusion or limitation of certain types of\r\ndamages. If any disclaimer or limitation set forth in this agreement\r\nviolates the law of the state applicable to this agreement, the\r\nagreement shall be interpreted to make the maximum disclaimer or\r\nlimitation permitted by the applicable state law. The invalidity or\r\nunenforceability of any provision of this agreement shall not void the\r\nremaining provisions.\r\n\r\n1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\r\ntrademark owner, any agent or employee of the Foundation, anyone\r\nproviding copies of Project Gutenberg-tm electronic works in\r\naccordance with this agreement, and any volunteers associated with the\r\nproduction, promotion and distribution of Project Gutenberg-tm\r\nelectronic works, harmless from all liability, costs and expenses,\r\nincluding legal fees, that arise directly or indirectly from any of\r\nthe following which you do or cause to occur: (a) distribution of this\r\nor any Project Gutenberg-tm work, (b) alteration, modification, or\r\nadditions or deletions to any Project Gutenberg-tm work, and (c) any\r\nDefect you cause.\r\n\r\nSection 2. Information about the Mission of Project Gutenberg-tm\r\n\r\nProject Gutenberg-tm is synonymous with the free distribution of\r\nelectronic works in formats readable by the widest variety of\r\ncomputers including obsolete, old, middle-aged and new computers. It\r\nexists because of the efforts of hundreds of volunteers and donations\r\nfrom people in all walks of life.\r\n\r\nVolunteers and financial support to provide volunteers with the\r\nassistance they need are critical to reaching Project Gutenberg-tm\'s\r\ngoals and ensuring that the Project Gutenberg-tm collection will\r\nremain freely available for generations to come. In 2001, the Project\r\nGutenberg Literary Archive Foundation was created to provide a secure\r\nand permanent future for Project Gutenberg-tm and future\r\ngenerations. To learn more about the Project Gutenberg Literary\r\nArchive Foundation and how your efforts and donations can help, see\r\nSections 3 and 4 and the Foundation information page at\r\nwww.gutenberg.org\r\n\r\n\r\n\r\nSection 3. Information about the Project Gutenberg Literary Archive Foundation\r\n\r\nThe Project Gutenberg Literary Archive Foundation is a non profit\r\n501(c)(3) educational corporation organized under the laws of the\r\nstate of Mississippi and granted tax exempt status by the Internal\r\nRevenue Service. The Foundation\'s EIN or federal tax identification\r\nnumber is 64-6221541. Contributions to the Project Gutenberg Literary\r\nArchive Foundation are tax deductible to the full extent permitted by\r\nU.S. federal laws and your state\'s laws.\r\n\r\nThe Foundation\'s principal office is in Fairbanks, Alaska, with the\r\nmailing address: PO Box 750175, Fairbanks, AK 99775, but its\r\nvolunteers and employees are scattered throughout numerous\r\nlocations. Its business office is located at 809 North 1500 West, Salt\r\nLake City, UT 84116, (801) 596-1887. Email contact links and up to\r\ndate contact information can be found at the Foundation\'s web site and\r\nofficial page at www.gutenberg.org/contact\r\n\r\nFor additional contact information:\r\n\r\n Dr. Gregory B. Newby\r\n Chief Executive and Director\r\n gbnewby@pglaf.org\r\n\r\nSection 4. Information about Donations to the Project Gutenberg\r\nLiterary Archive Foundation\r\n\r\nProject Gutenberg-tm depends upon and cannot survive without wide\r\nspread public support and donations to carry out its mission of\r\nincreasing the number of public domain and licensed works that can be\r\nfreely distributed in machine readable form accessible by the widest\r\narray of equipment including outdated equipment. Many small donations\r\n($1 to $5,000) are particularly important to maintaining tax exempt\r\nstatus with the IRS.\r\n\r\nThe Foundation is committed to complying with the laws regulating\r\ncharities and charitable donations in all 50 states of the United\r\nStates. Compliance requirements are not uniform and it takes a\r\nconsiderable effort, much paperwork and many fees to meet and keep up\r\nwith these requirements. We do not solicit donations in locations\r\nwhere we have not received written confirmation of compliance. To SEND\r\nDONATIONS or determine the status of compliance for any particular\r\nstate visit www.gutenberg.org/donate\r\n\r\nWhile we cannot and do not solicit contributions from states where we\r\nhave not met the solicitation requirements, we know of no prohibition\r\nagainst accepting unsolicited donations from donors in such states who\r\napproach us with offers to donate.\r\n\r\nInternational donations are gratefully accepted, but we cannot make\r\nany statements concerning tax treatment of donations received from\r\noutside the United States. U.S. laws alone swamp our small staff.\r\n\r\nPlease check the Project Gutenberg Web pages for current donation\r\nmethods and addresses. Donations are accepted in a number of other\r\nways including checks, online payments and credit card donations. To\r\ndonate, please visit: www.gutenberg.org/donate\r\n\r\nSection 5. General Information About Project Gutenberg-tm electronic works.\r\n\r\nProfessor Michael S. Hart was the originator of the Project\r\nGutenberg-tm concept of a library of electronic works that could be\r\nfreely shared with anyone. For forty years, he produced and\r\ndistributed Project Gutenberg-tm eBooks with only a loose network of\r\nvolunteer support.\r\n\r\nProject Gutenberg-tm eBooks are often created from several printed\r\neditions, all of which are confirmed as not protected by copyright in\r\nthe U.S. unless a copyright notice is included. Thus, we do not\r\nnecessarily keep eBooks in compliance with any particular paper\r\nedition.\r\n\r\nMost people start at our Web site which has the main PG search\r\nfacility: www.gutenberg.org\r\n\r\nThis Web site includes information about Project Gutenberg-tm,\r\nincluding how to make donations to the Project Gutenberg Literary\r\nArchive Foundation, how to help produce our new eBooks, and how to\r\nsubscribe to our email newsletter to hear about new eBooks.\r\n\r\n\r\n\r\n'); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `baby_names` +-- +ALTER TABLE `baby_names` + ADD PRIMARY KEY (`id`), + ADD KEY `baby_names_year` (`year`), + ADD KEY `baby_names_gender` (`gender`); + +-- +-- Indexes for table `blog_posts` +-- +ALTER TABLE `blog_posts` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `blog_posts_history` +-- +ALTER TABLE `blog_posts_history` + ADD PRIMARY KEY (`id`), + ADD KEY `blog_posts_history_blog_post_id_foreign` (`blog_post_id`); + +-- +-- Indexes for table `books` +-- +ALTER TABLE `books` + ADD PRIMARY KEY (`id`), + ADD KEY `books_subject_id_idx` (`subject_id`), + ADD KEY `books_creator_idx` (`creator`); + +-- +-- Indexes for table `books_subjects` +-- +ALTER TABLE `books_subjects` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `categories` +-- +ALTER TABLE `categories` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `customers` +-- +ALTER TABLE `customers` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `customers_interested_in` +-- +ALTER TABLE `customers_interested_in` + ADD PRIMARY KEY (`id`), + ADD KEY `customers_interested_in_customer_id_foreign` (`customer_id`), + ADD KEY `customers_interested_in_category_id_foreign` (`category_id`); + +-- +-- Indexes for table `locations` +-- +ALTER TABLE `locations` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `migrations` +-- +ALTER TABLE `migrations` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `orders` +-- +ALTER TABLE `orders` + ADD PRIMARY KEY (`id`), + ADD KEY `orders_customer_id_foreign` (`customer_id`); + +-- +-- Indexes for table `shakespeare` +-- +ALTER TABLE `shakespeare` + ADD PRIMARY KEY (`id`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `baby_names` +-- +ALTER TABLE `baby_names` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=220637; + +-- +-- AUTO_INCREMENT for table `blog_posts` +-- +ALTER TABLE `blog_posts` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `blog_posts_history` +-- +ALTER TABLE `blog_posts_history` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `books` +-- +ALTER TABLE `books` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60105; + +-- +-- AUTO_INCREMENT for table `books_subjects` +-- +ALTER TABLE `books_subjects` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19127; + +-- +-- AUTO_INCREMENT for table `categories` +-- +ALTER TABLE `categories` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; + +-- +-- AUTO_INCREMENT for table `customers` +-- +ALTER TABLE `customers` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=201; + +-- +-- AUTO_INCREMENT for table `customers_interested_in` +-- +ALTER TABLE `customers_interested_in` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; + +-- +-- AUTO_INCREMENT for table `locations` +-- +ALTER TABLE `locations` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `migrations` +-- +ALTER TABLE `migrations` + MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; + +-- +-- AUTO_INCREMENT for table `orders` +-- +ALTER TABLE `orders` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1053; + +-- +-- AUTO_INCREMENT for table `shakespeare` +-- +ALTER TABLE `shakespeare` + MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; + +-- +-- Constraints for dumped tables +-- + +-- +-- Constraints for table `blog_posts_history` +-- +ALTER TABLE `blog_posts_history` + ADD CONSTRAINT `blog_posts_history_blog_post_id_foreign` FOREIGN KEY (`blog_post_id`) REFERENCES `blog_posts` (`id`); + +-- +-- Constraints for table `books` +-- +ALTER TABLE `books` + ADD CONSTRAINT `books_subject_id` FOREIGN KEY (`subject_id`) REFERENCES `books_subjects` (`id`); + +-- +-- Constraints for table `customers_interested_in` +-- +ALTER TABLE `customers_interested_in` + ADD CONSTRAINT `customers_interested_in_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`), + ADD CONSTRAINT `customers_interested_in_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`); + +-- +-- Constraints for table `orders` +-- +ALTER TABLE `orders` + ADD CONSTRAINT `orders_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON UPDATE CASCADE; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;